diff --git a/.output/1.txt b/.output/1.txt deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/.output/1.txt +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index fa21a3c442ca872c1c030975e07ec7f170b3be0b..0000000000000000000000000000000000000000 --- a/Dockerfile +++ /dev/null @@ -1,98 +0,0 @@ -<<<<<<< HEAD -# Step 1: Use an official Python slim base image -FROM python:3.10-slim - -# Step 2: Install system dependencies -RUN apt-get update && apt-get install -y \ - wget \ - tar \ - && apt-get clean - -# Step 3: Add a non-root user (required by Hugging Face Spaces) -RUN useradd -m -u 1000 user - -# Step 4: Switch to the "user" user -USER user - -# Step 5: Set home and working directory -ENV HOME=/home/user \ - PATH=/home/user/.local/bin:$PATH -WORKDIR $HOME/app - -# Step 6: Copy requirements into the container -COPY --chown=user requirements.txt ./requirements.txt - -# Step 7: Install Python dependencies -RUN pip install --no-cache-dir --upgrade pip && \ - pip install --no-cache-dir -r requirements.txt - -# Step 8: Copy all necessary files and folders into the container -COPY --chown=user .output ./.output -COPY --chown=user cache ./cache -COPY --chown=user input ./input -COPY --chown=user output ./output -COPY --chown=user prompts ./prompts -COPY --chown=user reports ./reports -COPY --chown=user auth.py ./auth.py -COPY --chown=user knowledge_graph.html ./knowledge_graph.html -COPY --chown=user query_config.yaml ./query_config.yaml -COPY --chown=user app.py ./app.py -COPY --chown=user search_handlers.py ./search_handlers.py -COPY --chown=user settings.yaml ./settings.yaml -COPY --chown=user styles.css ./styles.css -COPY --chown=user wiki.py ./wiki.py - -# Step 10: Expose the Streamlit default port -EXPOSE 7860 - -# Step 11: Define the entrypoint command -======= -# Step 1: Use an official Python slim base image -FROM python:3.10-slim - -# Step 2: Install system dependencies -RUN apt-get update && apt-get install -y \ - wget \ - tar \ - && apt-get clean - -# Step 3: Add a non-root user (required by Hugging Face Spaces) -RUN useradd -m -u 1000 user - -# Step 4: Switch to the "user" user -USER user - -# Step 5: Set home and working directory -ENV HOME=/home/user \ - PATH=/home/user/.local/bin:$PATH -WORKDIR $HOME/app - -# Step 6: Copy requirements into the container -COPY --chown=user requirements.txt ./requirements.txt - -# Step 7: Install Python dependencies -RUN pip install --no-cache-dir --upgrade pip && \ - pip install --no-cache-dir -r requirements.txt - -# Step 8: Copy all necessary files and folders into the container -COPY --chown=user .output ./.output -COPY --chown=user cache ./cache -COPY --chown=user input ./input -COPY --chown=user output ./output -COPY --chown=user prompts ./prompts -COPY --chown=user reports ./reports -COPY --chown=user auth.py ./auth.py -COPY --chown=user knowledge_graph.html ./knowledge_graph.html -COPY --chown=user query_config.yaml ./query_config.yaml -COPY --chown=user app.py ./app.py -COPY --chown=user search_handlers.py ./search_handlers.py -COPY --chown=user settings.yaml ./settings.yaml -COPY --chown=user styles.css ./styles.css -COPY --chown=user wiki.py ./wiki.py - -# Step 10: Expose the Streamlit default port -EXPOSE 7860 - -# Step 11: Define the entrypoint command ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff -CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"] \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index d2978015280a14c42976023ca830e0112e5e9caf..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: PwcGraphRAG -emoji: ⚡ -colorFrom: purple -colorTo: yellow -sdk: docker -pinned: false ---- - -Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference diff --git a/__pycache__/auth.cpython-311.pyc b/__pycache__/auth.cpython-311.pyc deleted file mode 100644 index 41f41dcf41ec40ae71710ee4b261bf84ff79f54c..0000000000000000000000000000000000000000 Binary files a/__pycache__/auth.cpython-311.pyc and /dev/null differ diff --git a/__pycache__/search_handlers.cpython-311.pyc b/__pycache__/search_handlers.cpython-311.pyc deleted file mode 100644 index 81192312e1187c065c141dc26aa9a0ae1c27cbb4..0000000000000000000000000000000000000000 Binary files a/__pycache__/search_handlers.cpython-311.pyc and /dev/null differ diff --git a/__pycache__/wiki.cpython-311.pyc b/__pycache__/wiki.cpython-311.pyc deleted file mode 100644 index 3273d5e0a939dbdddfc86f507cc9e84b4022ce45..0000000000000000000000000000000000000000 Binary files a/__pycache__/wiki.cpython-311.pyc and /dev/null differ diff --git a/app.py b/app.py deleted file mode 100644 index 01fdc2587c75a784bb5afd86b5d2246c80f34717..0000000000000000000000000000000000000000 --- a/app.py +++ /dev/null @@ -1,613 +0,0 @@ -<<<<<<< HEAD -import streamlit as st -import asyncio -import sys -from pathlib import Path -import base64 -import pandas as pd -from typing import Literal, Tuple, Optional -from wiki import render_wiki_tab -from search_handlers import run_global_search, run_local_search, run_drift_search -import auth - - -import graphrag.api as api -from graphrag.config import GraphRagConfig, load_config, resolve_paths -from graphrag.index.create_pipeline_config import create_pipeline_config -from graphrag.logging import PrintProgressReporter -from graphrag.utils.storage import _create_storage, _load_table_from_storage - - -st.set_page_config(page_title="GraphRAG Chat Interface", page_icon="🔍", layout="wide") - -# Define default avatars at the module level -DEFAULT_USER_AVATAR = "👤" -DEFAULT_BOT_AVATAR = "🤖" - -# Initialize session state for avatars -if "user_avatar" not in st.session_state: - st.session_state.user_avatar = DEFAULT_USER_AVATAR -if "bot_avatar" not in st.session_state: - st.session_state.bot_avatar = DEFAULT_BOT_AVATAR - -# Define avatar images -USER_AVATAR = "👤" # Default user emoji -BOT_AVATAR = "🤖" # Default bot emoji - - -class StreamlitProgressReporter(PrintProgressReporter): - def __init__(self, placeholder): - super().__init__("") - self.placeholder = placeholder - - def success(self, message: str): - self.placeholder.success(message) - - -def render_chat_tab(): - """Render the Chat tab content.""" - format_message_history() - - # Chat input - if prompt := st.chat_input("Enter your query..."): - # Add user message to history with timestamp - st.session_state.messages.append( - { - "role": "user", - "content": prompt, - "timestamp": pd.Timestamp.now().strftime("%H:%M"), - } - ) - - # Process query - with st.spinner("Processing your query..."): - response_placeholder = st.empty() - try: - if st.session_state.search_type == "global": - response, context = run_global_search( - config_filepath=st.session_state.config_filepath, - data_dir=st.session_state.data_dir, - root_dir=st.session_state.root_dir, - community_level=st.session_state.community_level, - response_type=st.session_state.response_type, - streaming=st.session_state.streaming, - query=prompt, - progress_placeholder=response_placeholder, - ) - elif st.session_state.search_type == "drift": - response, context = run_drift_search( - config_filepath=st.session_state.config_filepath, - data_dir=st.session_state.data_dir, - root_dir=st.session_state.root_dir, - community_level=st.session_state.community_level, - response_type=st.session_state.response_type, - streaming=st.session_state.streaming, - query=prompt, - progress_placeholder=response_placeholder, - ) - else: - response, context = run_local_search( - config_filepath=st.session_state.config_filepath, - data_dir=st.session_state.data_dir, - root_dir=st.session_state.root_dir, - community_level=st.session_state.community_level, - response_type=st.session_state.response_type, - streaming=st.session_state.streaming, - query=prompt, - progress_placeholder=response_placeholder, - ) - - # Clear the placeholder before adding the final response - response_placeholder.empty() - - # Add assistant response to history with timestamp - st.session_state.messages.append( - { - "role": "assistant", - "content": response, - "timestamp": pd.Timestamp.now().strftime("%H:%M"), - } - ) - - # Show context in expander - with st.expander("View Search Context"): - st.json(context) - - except Exception as e: - error_message = f"Error processing query: {str(e)}" - st.session_state.messages.append( - { - "role": "assistant", - "content": error_message, - "timestamp": pd.Timestamp.now().strftime("%H:%M"), - } - ) - - - st.rerun() - - -def display_message(msg: str, is_user: bool = False, timestamp: str = "") -> None: - """Display a chat message with avatar and consistent formatting.""" - role = "user" if is_user else "assistant" - message_class = "user-message" if is_user else "assistant-message" - avatar = st.session_state.user_avatar if is_user else st.session_state.bot_avatar - - message_container = f""" -
-
-
{avatar}
-
-
-
-
- {msg} -
-
-
{timestamp}
-
-
- """ - st.markdown(message_container, unsafe_allow_html=True) - - -def format_message_history() -> None: - """Display all messages in the chat history with consistent formatting.""" - st.markdown('
', unsafe_allow_html=True) - for message in st.session_state.messages: - timestamp = message.get("timestamp", "") - display_message( - msg=message["content"], - is_user=(message["role"] == "user"), - timestamp=timestamp, - ) - st.markdown("
", unsafe_allow_html=True) - - -@st.cache_resource -def load_css(): - with open("styles.css", "r") as f: - return f.read() - - -def initialize_session_state(): - """Initialize session state variables if they don't exist.""" - if "messages" not in st.session_state: - st.session_state.messages = [] - if "response_placeholder" not in st.session_state: - st.session_state.response_placeholder = None - if "config_filepath" not in st.session_state: - st.session_state.config_filepath = None - if "data_dir" not in st.session_state: - st.session_state.data_dir = None - if "root_dir" not in st.session_state: - st.session_state.root_dir = "." - if "community_level" not in st.session_state: - st.session_state.community_level = 2 - if "response_type" not in st.session_state: - st.session_state.response_type = "concise" - if "search_type" not in st.session_state: - st.session_state.search_type = "global" - if "streaming" not in st.session_state: - st.session_state.streaming = True - if "authenticated" not in st.session_state: - st.session_state.authenticated = False - - -def main(): - initialize_session_state() - - # Authentication check - if not st.session_state.authenticated: - if auth.check_credentials(): - st.session_state.authenticated = True - st.rerun() # Rerun to reflect the authentication state - else: - st.stop() # Stop further execution if authentication fails - - # If authenticated, proceed with the main app - if st.session_state.authenticated: - # Main application content - st.title("PWC Home Assigment #1, Graphrag") - - css = load_css() - st.markdown(f"", unsafe_allow_html=True) - - # Sidebar configuration - with st.sidebar: - # Display logos side by side at the top of the sidebar - col1, col2 = st.columns(2) - with col1: - st.markdown( - '
', - unsafe_allow_html=True, - ) - with col2: - st.markdown( - '
', - unsafe_allow_html=True, - ) - - st.header("Configuration") - st.session_state.community_level = st.number_input( - "Community Level", - min_value=0, - max_value=10, - value=st.session_state.community_level, - help="Controls the granularity of the search...", - ) - - # Only show response type for global and local search - if st.session_state.search_type != "drift": - st.session_state.response_type = st.selectbox( - "Response Type", - options=["concise", "detailed"], - index=0 if st.session_state.response_type == "concise" else 1, - help="Style of response generation", - ) - - st.session_state.search_type = st.selectbox( - "Search Type", - options=["global", "local", "drift"], - index=( - 0 - if st.session_state.search_type == "global" - else 1 if st.session_state.search_type == "local" else 2 - ), - help="""Search Types: - - Local Search: "Focuses on finding specific information by searching through direct connections in the knowledge graph. Best for precise, fact-based queries." - - Global Search: "Analyzes the entire document collection at a high level using community summaries. Best for understanding broad themes and general policies." - - DRIFT Search: "Combines local and global search capabilities, dynamically exploring connections while gathering detailed information. Best for complex queries requiring both specific details and broader context." - """, - ) - - # Show streaming option only for supported search types - if st.session_state.search_type != "drift": - st.session_state.streaming = st.checkbox( - "Enable Streaming", - value=st.session_state.streaming, - help="Stream response tokens as they're generated", - ) - else: - st.session_state.streaming = False - st.info("Streaming is not available for DRIFT search") - - # logout button - if st.button("Logout"): - st.session_state.clear() # Clear all session state data - initialize_session_state() # Reinitialize the session state - st.query_params = {"restart": "true"} # Refresh the UI - st.rerun() - - # Create tabs - tab1, tab2 = st.tabs(["Assignment Documentation", "Chat"]) - - # readme tab content - with tab1: - render_wiki_tab() - - # Chat tab content - with tab2: - render_chat_tab() - - st.sidebar.markdown( - """ -
- Liran Baba | - LinkedIn | - HuggingFace -
- """, - unsafe_allow_html=True, - ) - - -if __name__ == "__main__": - main() -======= -import streamlit as st -import asyncio -import sys -from pathlib import Path -import base64 -import pandas as pd -from typing import Literal, Tuple, Optional -from wiki import render_wiki_tab -from search_handlers import run_global_search, run_local_search, run_drift_search -import auth - - -import graphrag.api as api -from graphrag.config import GraphRagConfig, load_config, resolve_paths -from graphrag.index.create_pipeline_config import create_pipeline_config -from graphrag.logging import PrintProgressReporter -from graphrag.utils.storage import _create_storage, _load_table_from_storage - - -st.set_page_config(page_title="GraphRAG Chat Interface", page_icon="🔍", layout="wide") - -# Define default avatars at the module level -DEFAULT_USER_AVATAR = "👤" -DEFAULT_BOT_AVATAR = "🤖" - -# Initialize session state for avatars -if "user_avatar" not in st.session_state: - st.session_state.user_avatar = DEFAULT_USER_AVATAR -if "bot_avatar" not in st.session_state: - st.session_state.bot_avatar = DEFAULT_BOT_AVATAR - -# Define avatar images -USER_AVATAR = "👤" # Default user emoji -BOT_AVATAR = "🤖" # Default bot emoji - - -class StreamlitProgressReporter(PrintProgressReporter): - def __init__(self, placeholder): - super().__init__("") - self.placeholder = placeholder - - def success(self, message: str): - self.placeholder.success(message) - - -def render_chat_tab(): - """Render the Chat tab content.""" - format_message_history() - - # Chat input - if prompt := st.chat_input("Enter your query..."): - # Add user message to history with timestamp - st.session_state.messages.append( - { - "role": "user", - "content": prompt, - "timestamp": pd.Timestamp.now().strftime("%H:%M"), - } - ) - - # Process query - with st.spinner("Processing your query..."): - response_placeholder = st.empty() - try: - if st.session_state.search_type == "global": - response, context = run_global_search( - config_filepath=st.session_state.config_filepath, - data_dir=st.session_state.data_dir, - root_dir=st.session_state.root_dir, - community_level=st.session_state.community_level, - response_type=st.session_state.response_type, - streaming=st.session_state.streaming, - query=prompt, - progress_placeholder=response_placeholder, - ) - elif st.session_state.search_type == "drift": - response, context = run_drift_search( - config_filepath=st.session_state.config_filepath, - data_dir=st.session_state.data_dir, - root_dir=st.session_state.root_dir, - community_level=st.session_state.community_level, - response_type=st.session_state.response_type, - streaming=st.session_state.streaming, - query=prompt, - progress_placeholder=response_placeholder, - ) - else: - response, context = run_local_search( - config_filepath=st.session_state.config_filepath, - data_dir=st.session_state.data_dir, - root_dir=st.session_state.root_dir, - community_level=st.session_state.community_level, - response_type=st.session_state.response_type, - streaming=st.session_state.streaming, - query=prompt, - progress_placeholder=response_placeholder, - ) - - # Clear the placeholder before adding the final response - response_placeholder.empty() - - # Add assistant response to history with timestamp - st.session_state.messages.append( - { - "role": "assistant", - "content": response, - "timestamp": pd.Timestamp.now().strftime("%H:%M"), - } - ) - - # Show context in expander - with st.expander("View Search Context"): - st.json(context) - - except Exception as e: - error_message = f"Error processing query: {str(e)}" - st.session_state.messages.append( - { - "role": "assistant", - "content": error_message, - "timestamp": pd.Timestamp.now().strftime("%H:%M"), - } - ) - - - st.rerun() - - -def display_message(msg: str, is_user: bool = False, timestamp: str = "") -> None: - """Display a chat message with avatar and consistent formatting.""" - role = "user" if is_user else "assistant" - message_class = "user-message" if is_user else "assistant-message" - avatar = st.session_state.user_avatar if is_user else st.session_state.bot_avatar - - message_container = f""" -
-
-
{avatar}
-
-
-
-
- {msg} -
-
-
{timestamp}
-
-
- """ - st.markdown(message_container, unsafe_allow_html=True) - - -def format_message_history() -> None: - """Display all messages in the chat history with consistent formatting.""" - st.markdown('
', unsafe_allow_html=True) - for message in st.session_state.messages: - timestamp = message.get("timestamp", "") - display_message( - msg=message["content"], - is_user=(message["role"] == "user"), - timestamp=timestamp, - ) - st.markdown("
", unsafe_allow_html=True) - - -@st.cache_resource -def load_css(): - with open("styles.css", "r") as f: - return f.read() - - -def initialize_session_state(): - """Initialize session state variables if they don't exist.""" - if "messages" not in st.session_state: - st.session_state.messages = [] - if "response_placeholder" not in st.session_state: - st.session_state.response_placeholder = None - if "config_filepath" not in st.session_state: - st.session_state.config_filepath = None - if "data_dir" not in st.session_state: - st.session_state.data_dir = None - if "root_dir" not in st.session_state: - st.session_state.root_dir = "." - if "community_level" not in st.session_state: - st.session_state.community_level = 2 - if "response_type" not in st.session_state: - st.session_state.response_type = "concise" - if "search_type" not in st.session_state: - st.session_state.search_type = "global" - if "streaming" not in st.session_state: - st.session_state.streaming = True - if "authenticated" not in st.session_state: - st.session_state.authenticated = False - - -def main(): - initialize_session_state() - - # Authentication check - if not st.session_state.authenticated: - if auth.check_credentials(): - st.session_state.authenticated = True - st.rerun() # Rerun to reflect the authentication state - else: - st.stop() # Stop further execution if authentication fails - - # If authenticated, proceed with the main app - if st.session_state.authenticated: - # Main application content - st.title("PWC Home Assigment #1, Graphrag") - - css = load_css() - st.markdown(f"", unsafe_allow_html=True) - - # Sidebar configuration - with st.sidebar: - # Display logos side by side at the top of the sidebar - col1, col2 = st.columns(2) - with col1: - st.markdown( - '
', - unsafe_allow_html=True, - ) - with col2: - st.markdown( - '
', - unsafe_allow_html=True, - ) - - st.header("Configuration") - st.session_state.community_level = st.number_input( - "Community Level", - min_value=0, - max_value=10, - value=st.session_state.community_level, - help="Controls the granularity of the search...", - ) - - # Only show response type for global and local search - if st.session_state.search_type != "drift": - st.session_state.response_type = st.selectbox( - "Response Type", - options=["concise", "detailed"], - index=0 if st.session_state.response_type == "concise" else 1, - help="Style of response generation", - ) - - st.session_state.search_type = st.selectbox( - "Search Type", - options=["global", "local", "drift"], - index=( - 0 - if st.session_state.search_type == "global" - else 1 if st.session_state.search_type == "local" else 2 - ), - help="""Search Types: - - Local Search: "Focuses on finding specific information by searching through direct connections in the knowledge graph. Best for precise, fact-based queries." - - Global Search: "Analyzes the entire document collection at a high level using community summaries. Best for understanding broad themes and general policies." - - DRIFT Search: "Combines local and global search capabilities, dynamically exploring connections while gathering detailed information. Best for complex queries requiring both specific details and broader context." - """, - ) - - # Show streaming option only for supported search types - if st.session_state.search_type != "drift": - st.session_state.streaming = st.checkbox( - "Enable Streaming", - value=st.session_state.streaming, - help="Stream response tokens as they're generated", - ) - else: - st.session_state.streaming = False - st.info("Streaming is not available for DRIFT search") - - # logout button - if st.button("Logout"): - st.session_state.clear() # Clear all session state data - initialize_session_state() # Reinitialize the session state - st.query_params = {"restart": "true"} # Refresh the UI - st.rerun() - - # Create tabs - tab1, tab2 = st.tabs(["Assignment Documentation", "Chat"]) - - # readme tab content - with tab1: - render_wiki_tab() - - # Chat tab content - with tab2: - render_chat_tab() - - st.sidebar.markdown( - """ -
- Liran Baba | - LinkedIn | - HuggingFace -
- """, - unsafe_allow_html=True, - ) - - -if __name__ == "__main__": - main() ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff diff --git a/auth.py b/auth.py deleted file mode 100644 index 25b154148b386660388bc6e0ce3fef4d8e1e3fd9..0000000000000000000000000000000000000000 --- a/auth.py +++ /dev/null @@ -1,81 +0,0 @@ -<<<<<<< HEAD -import os -import streamlit as st - - -def check_credentials(): - """Handles login form and returns True if authenticated successfully.""" - - # Check if already authenticated - if st.session_state.get("authenticated", False): - return True # User is already authenticated - - # Retrieve credentials from environment variables (set via Hugging Face Secrets) - expected_username = os.environ.get("APP_USERNAME") - expected_password = os.environ.get("APP_PASSWORD") - - if not expected_username or not expected_password: - st.error("Server is misconfigured: missing credentials.") - return False - - # Show the login form only if not authenticated - with st.form("login_form", clear_on_submit=True): - st.text_input("Username", key="username") - st.text_input("Password", type="password", key="password") - submit_button = st.form_submit_button("Login") - - if submit_button: - # Validate credentials - if ( - st.session_state["username"] == expected_username - and st.session_state["password"] == expected_password - ): - st.session_state["authenticated"] = True # Mark user as authenticated - return True - else: - st.error("😕 Incorrect username or password") - return False # Indicate failed authentication - - # Return False if login not attempted or failed - return False -======= -import os -import streamlit as st - - -def check_credentials(): - """Handles login form and returns True if authenticated successfully.""" - - # Check if already authenticated - if st.session_state.get("authenticated", False): - return True # User is already authenticated - - # Retrieve credentials from environment variables (set via Hugging Face Secrets) - expected_username = os.environ.get("APP_USERNAME") - expected_password = os.environ.get("APP_PASSWORD") - - if not expected_username or not expected_password: - st.error("Server is misconfigured: missing credentials.") - return False - - # Show the login form only if not authenticated - with st.form("login_form", clear_on_submit=True): - st.text_input("Username", key="username") - st.text_input("Password", type="password", key="password") - submit_button = st.form_submit_button("Login") - - if submit_button: - # Validate credentials - if ( - st.session_state["username"] == expected_username - and st.session_state["password"] == expected_password - ): - st.session_state["authenticated"] = True # Mark user as authenticated - return True - else: - st.error("😕 Incorrect username or password") - return False # Indicate failed authentication - - # Return False if login not attempted or failed - return False ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff diff --git a/cache/claim_extraction/chat-08673b5b83e6ac7f6ba4829e90c03327 b/cache/claim_extraction/chat-08673b5b83e6ac7f6ba4829e90c03327 deleted file mode 100644 index acc645f63b2fd38fbcfa56f462128eaa527f5805..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-08673b5b83e6ac7f6ba4829e90c03327 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-1381d6c5b2f248a032076ea11b774073 b/cache/claim_extraction/chat-1381d6c5b2f248a032076ea11b774073 deleted file mode 100644 index 044358cc3c6e1e66d8fe67d2902cc931dad8c7a1..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-1381d6c5b2f248a032076ea11b774073 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-142cd9efad381302bc564df05160728b b/cache/claim_extraction/chat-142cd9efad381302bc564df05160728b deleted file mode 100644 index 261f87e01ca8b568a4e0ea1e755edaf480cde1e4..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-142cd9efad381302bc564df05160728b +++ /dev/null @@ -1 +0,0 @@ -{"result": "(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket. The maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.<|>Passengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The maximum size permitted for an infant’s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.<|>The maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to change the excess baggage rates from time to time.<|>EL AL reserves the right to change the excess baggage rates from time to time.)\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-156ece2906e90a6f91c08007dd5e899e b/cache/claim_extraction/chat-156ece2906e90a6f91c08007dd5e899e deleted file mode 100644 index 5637aeca72539e960e765e72a5b9f55f3dfb4f37..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-156ece2906e90a6f91c08007dd5e899e +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. \nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-1941936183c20b799ff5009333cef448 b/cache/claim_extraction/chat-1941936183c20b799ff5009333cef448 deleted file mode 100644 index c3e49374dce05e96cc05089d6e44c7ce5562693a..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-1941936183c20b799ff5009333cef448 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-1bf64ec638ce971c0042fcb59c6197d7 b/cache/claim_extraction/chat-1bf64ec638ce971c0042fcb59c6197d7 deleted file mode 100644 index 722622d68bc0e202f41933e44a8e45a04c5b65d4..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-1bf64ec638ce971c0042fcb59c6197d7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The provided text does not contain any specific named entities that match the entity specification of 'organization', 'person', 'geo', or 'event'. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions that can be extracted from the text. \n\nTherefore, the output will be empty.\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-22d85dd89c0a47594a9788ad6718524b b/cache/claim_extraction/chat-22d85dd89c0a47594a9788ad6718524b deleted file mode 100644 index d6b97754958cb520fc7ac66825b0b11a9b7cf4c3..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-22d85dd89c0a47594a9788ad6718524b +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-2fe4040f02a3590f8660d1fa6dba6a9d b/cache/claim_extraction/chat-2fe4040f02a3590f8660d1fa6dba6a9d deleted file mode 100644 index 1f71fc58e800941d19c25a7b5196dd5e35e3f45c..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-2fe4040f02a3590f8660d1fa6dba6a9d +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-345f8e9ba01d72bb119f170108b3a010 b/cache/claim_extraction/chat-345f8e9ba01d72bb119f170108b3a010 deleted file mode 100644 index ee1339546cc175035e82cb186fe72cd049bbe97d..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-345f8e9ba01d72bb119f170108b3a010 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-35a8144ac0548c336670f7655b57ffa8 b/cache/claim_extraction/chat-35a8144ac0548c336670f7655b57ffa8 deleted file mode 100644 index 310b6b5f4e089d46580dd5689b868fee7cb6a7d8..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-35a8144ac0548c336670f7655b57ffa8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t​Europe and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-44979de7f1a825ae1b20a96afbbba767 b/cache/claim_extraction/chat-44979de7f1a825ae1b20a96afbbba767 deleted file mode 100644 index f8d3c7fb3d32b436b9c99aa5805266e06aa20c25..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-44979de7f1a825ae1b20a96afbbba767 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-4d06725e2c887ea258a9e0ee6d0b5157 b/cache/claim_extraction/chat-4d06725e2c887ea258a9e0ee6d0b5157 deleted file mode 100644 index fdd2fd4e6072f818d8e46096037d8e8b1a6d3d6c..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-4d06725e2c887ea258a9e0ee6d0b5157 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-5a72713b5837690b186c07adadb8e733 b/cache/claim_extraction/chat-5a72713b5837690b186c07adadb8e733 deleted file mode 100644 index 4ddc1919001a10e1eccf055dae7c81ab9babdc4b..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-5a72713b5837690b186c07adadb8e733 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-62fd36848d52dcc1ed434c906d244cbd b/cache/claim_extraction/chat-62fd36848d52dcc1ed434c906d244cbd deleted file mode 100644 index 145c069e6c4ec06af9ad77a2ac4380a003435d5a..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-62fd36848d52dcc1ed434c906d244cbd +++ /dev/null @@ -1 +0,0 @@ -{"result": "## \n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.<|>As personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In certain instances (e.g. large animals), animals must be transported as checked baggage.<|>As checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).<|>As registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).)\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-6766e1761cdf81b5e0e3a2bc92c8a787 b/cache/claim_extraction/chat-6766e1761cdf81b5e0e3a2bc92c8a787 deleted file mode 100644 index 2caa5cf3a9cebe98a20b281105e2ac436fbf5c40..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-6766e1761cdf81b5e0e3a2bc92c8a787 +++ /dev/null @@ -1 +0,0 @@ -{"result": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-691bb55bff9159afc00136c9e313e7f4 b/cache/claim_extraction/chat-691bb55bff9159afc00136c9e313e7f4 deleted file mode 100644 index 8ae6e22540c57b39dc58e502365e7741bf72dab9..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-691bb55bff9159afc00136c9e313e7f4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Based on the provided text, entity specification, and claim description, the analysis yields the following claims:\n\n1. No specific organizations, persons, geographical entities, or events were identified in the text that match the entity specification.\n2. The text primarily discusses regulations regarding lithium batteries and does not provide any claims related to organizations, persons, or events.\n\nAs a result, there are no claims to extract from the provided text.\n\nOutput: \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-6b44c9cbabca5ed59493c8b4efe689e1 b/cache/claim_extraction/chat-6b44c9cbabca5ed59493c8b4efe689e1 deleted file mode 100644 index dd05142b40a53bfe573f3c97940bdd3dab0cb5af..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-6b44c9cbabca5ed59493c8b4efe689e1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-6c010518e325d3cc30cafb4464c6df4e b/cache/claim_extraction/chat-6c010518e325d3cc30cafb4464c6df4e deleted file mode 100644 index 982c76ac25ef5abede49d76f4012bc605781a5a4..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-6c010518e325d3cc30cafb4464c6df4e +++ /dev/null @@ -1 +0,0 @@ -{"result": "## \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-6c3cb54eb649f13a3a79c2f069908c1b b/cache/claim_extraction/chat-6c3cb54eb649f13a3a79c2f069908c1b deleted file mode 100644 index 0dc5e80a99281b5505f8bb6fb10e0172231dd8a1..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-6c3cb54eb649f13a3a79c2f069908c1b +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-7b7ea98d33a52840fed33448d8fd3dc0 b/cache/claim_extraction/chat-7b7ea98d33a52840fed33448d8fd3dc0 deleted file mode 100644 index e66eefd609b82917e1e043941185220276ba3859..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-7b7ea98d33a52840fed33448d8fd3dc0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions that can be extracted from the text. \n\nTherefore, the output is empty.\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-7f7c97af3289d13f5fb37ac849d58b26 b/cache/claim_extraction/chat-7f7c97af3289d13f5fb37ac849d58b26 deleted file mode 100644 index 891381acaaec26e49019fee54680dd16e26ebd4e..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-7f7c97af3289d13f5fb37ac849d58b26 +++ /dev/null @@ -1 +0,0 @@ -{"result": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-82ee06454e7f372dce5f103d0095b803 b/cache/claim_extraction/chat-82ee06454e7f372dce5f103d0095b803 deleted file mode 100644 index a91a5243705fffc8aee83203fcfa2dd0be8108f3..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-82ee06454e7f372dce5f103d0095b803 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-97d88658ea30a33aff72f7ee37309af8 b/cache/claim_extraction/chat-97d88658ea30a33aff72f7ee37309af8 deleted file mode 100644 index 0afbf50ab31f45ed4a2dc8ccdf81d36be676a3da..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-97d88658ea30a33aff72f7ee37309af8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Based on the provided text, there are no specific claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted. The text primarily discusses guidelines for transporting pets, but does not provide explicit claims or measurements related to baggage or weight limits.\n\nTherefore, the output will be empty.\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-9a8788d74d8a358e3233fc012b0b0e86 b/cache/claim_extraction/chat-9a8788d74d8a358e3233fc012b0b0e86 deleted file mode 100644 index 8decb7201f17e056aee294e8542a9a0a9f9fa9f7..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-9a8788d74d8a358e3233fc012b0b0e86 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n​​Do not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-9c8443ae39d09775b32c5162c8cb708f b/cache/claim_extraction/chat-9c8443ae39d09775b32c5162c8cb708f deleted file mode 100644 index 1208d457b6d0b19004f9e578b3566976b93b13d0..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-9c8443ae39d09775b32c5162c8cb708f +++ /dev/null @@ -1 +0,0 @@ -{"result": "There are no named entities that match the specified entity types (organization, person, geo, event) in the provided text. Therefore, there are no claims to extract based on the given claim description.\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-a3886efba812892c6d75583a62fe871a b/cache/claim_extraction/chat-a3886efba812892c6d75583a62fe871a deleted file mode 100644 index e0552c65c29ee80d359636049f37e6fc4e7d0c7f..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-a3886efba812892c6d75583a62fe871a +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country’s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-c34a2e9173d8e3e37f45c44fefd3d474 b/cache/claim_extraction/chat-c34a2e9173d8e3e37f45c44fefd3d474 deleted file mode 100644 index c66c6fcf3f41efefa0ebf07a4b83660227f06f70..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-c34a2e9173d8e3e37f45c44fefd3d474 +++ /dev/null @@ -1 +0,0 @@ -{"result": "<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-c8035a54e48fb4c27e710fc7ef024393 b/cache/claim_extraction/chat-c8035a54e48fb4c27e710fc7ef024393 deleted file mode 100644 index f2be6c7b76117b5e24f8b06668d6d43a8e24679d..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-c8035a54e48fb4c27e710fc7ef024393 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing \"shell shock\" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-d14c0500ff6d2ba3a707f20cd23d78cb b/cache/claim_extraction/chat-d14c0500ff6d2ba3a707f20cd23d78cb deleted file mode 100644 index ab4295ba73187235378ab504b52240eae470c12d..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-d14c0500ff6d2ba3a707f20cd23d78cb +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-e9490149446090912b1c021e47b4b17d b/cache/claim_extraction/chat-e9490149446090912b1c021e47b4b17d deleted file mode 100644 index 6b99ae0357815fc12a6f3db8db0d9435218175ec..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-e9490149446090912b1c021e47b4b17d +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-ea986d57d64a70d233cadfbb9a7417b8 b/cache/claim_extraction/chat-ea986d57d64a70d233cadfbb9a7417b8 deleted file mode 100644 index 855ff835bf2c3369c6f42deb3547f9390f606182..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-ea986d57d64a70d233cadfbb9a7417b8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.)\n##\n(ISRAEL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>It is important to know what you can take with you aboard the aircraft when departing from Israel.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.)\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​\n​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-ee1fd8bc4f48b4c5c174e6b9f8e243b9 b/cache/claim_extraction/chat-ee1fd8bc4f48b4c5c174e6b9f8e243b9 deleted file mode 100644 index 06ac0bc472ff51c281284503de9b1ab6c575b5ea..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-ee1fd8bc4f48b4c5c174e6b9f8e243b9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-ef603496e9744729c924faed5dc8aa74 b/cache/claim_extraction/chat-ef603496e9744729c924faed5dc8aa74 deleted file mode 100644 index 4f944aecba495daccdc3e98954df668ede0baf2e..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-ef603496e9744729c924faed5dc8aa74 +++ /dev/null @@ -1 +0,0 @@ -{"result": "There are no entities or claims that match the specified criteria in the provided text. The text primarily contains information about baggage claims and contact details for various stores, but it does not include any specific claims related to baggage measurements, weight limits, or restrictions from airline documentation.\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon – Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-f26a2610de101a66faf3dd8e52250edc b/cache/claim_extraction/chat-f26a2610de101a66faf3dd8e52250edc deleted file mode 100644 index dcdfe0b324d5c147189e26206d8b837be3b97e2c..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-f26a2610de101a66faf3dd8e52250edc +++ /dev/null @@ -1 +0,0 @@ -{"result": "There are no specific named entities or claims related to baggage measurements, weight limits, and restrictions from airline documentation in the provided text. The text primarily discusses general information about transporting sporting equipment without mentioning specific organizations, persons, geographical locations, or events that would fit the entity specification.\n\nTherefore, the output is:\n\n<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/chat-fa74bb89bcdadf8b720c8e189fc535f8 b/cache/claim_extraction/chat-fa74bb89bcdadf8b720c8e189fc535f8 deleted file mode 100644 index e5cc29620bd370201c1623f2541fdebdadb29714..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/chat-fa74bb89bcdadf8b720c8e189fc535f8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "<|COMPLETE|>", "input": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-05fae2bc1f31834b8358124848cd185f b/cache/claim_extraction/extract-continuation-0-chat-v2-05fae2bc1f31834b8358124848cd185f deleted file mode 100644 index f472a336e7b40855fbb586512f8a15bbb7e0734e..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-05fae2bc1f31834b8358124848cd185f +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.<|>Important information: The maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Each carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.<|>Each carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.<|>Passengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Duty-free products purchased at the airport count towards the baggage allowance.<|>Duty-free products purchased at the airport count towards the baggage allowance.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Enforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.<|>Enforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If no free space is available, carry-on bags will be checked to the plane's belly at no charge.<|>If no free space is available, carry-on bags will be checked to the plane's belly at no charge.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers may bring one personal bag on board, regardless of card type or travel class.<|>Passengers may bring one personal bag on board, regardless of card type or travel class.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Personal bag dimensions should not exceed 18x38x30 cm.<|>Personal bag dimensions should not exceed 18x38x30 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Unusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.<|>Unusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Exceeding eligibility may incur fees.<|>Exceeding eligibility may incur fees.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-12b5f37b49e630f04cfdf3b7df8f879c b/cache/claim_extraction/extract-continuation-0-chat-v2-12b5f37b49e630f04cfdf3b7df8f879c deleted file mode 100644 index 59d02239834f959f326338739b632902ff4d6141..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-12b5f37b49e630f04cfdf3b7df8f879c +++ /dev/null @@ -1 +0,0 @@ -{"result": "I apologize for the oversight. Let's extract the relevant entities and claims again based on the provided text.\n\nEntity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Carry-on baggage Whether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft. First and foremost In addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website. Carry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival. This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies. Eligibility, Dimensions, and Weight What are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding? Carry-on Bags – Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg). *On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024). Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg. Please note: If no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only.<|>This information applies to flights operated by EL AL and Sun Dor only.) \n(SUN DOR<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only.<|>This information applies to flights operated by EL AL and Sun Dor only.) \n(LITE<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Lite - entitled to one carry-on bag, maximum 8 kg.<|>Carry-on Bags – Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg.) \n(CLASSIC<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Classic - entitled to one carry-on bag, maximum 8 kg.<|>Carry-on Bags – Economy Class: Classic - entitled to one carry-on bag, maximum 8 kg.) \n(FLEX<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).<|>Carry-on Bags – Economy Class: Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).) \n(PREMIUM<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.<|>Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.) \n(BUSINESS<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.<|>Carry-on Bags - Premium and Business Classes Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.) \n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\nOutput:"}, {"role": "assistant", "content": "**##**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-16ef034d670fa5d77c6968e90369eb5d b/cache/claim_extraction/extract-continuation-0-chat-v2-16ef034d670fa5d77c6968e90369eb5d deleted file mode 100644 index 07b82ad8a95a633def58eebafa65972affe55535..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-16ef034d670fa5d77c6968e90369eb5d +++ /dev/null @@ -1 +0,0 @@ -{"result": "Entity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.\n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which.\n\nOutput:\n\n(MINISTRY OF HEALTH<|>ISRAEL<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel and determine how the animal will be transported.<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.)\n##\n(EL AL SERVICE CENTER<|>NONE<|>TRANSPORTATION APPROVAL<|>TRUE<|>NONE<|>NONE<|>Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin.<|>Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin.)\n##\n(BEN GURION AIRPORT<|>NONE<|>VETERINARY SERVICES<|>TRUE<|>NONE<|>NONE<|>Email Veterinary Services at Ben Gurion Airport to obtain the required documents for transporting an animal to Israel.<|>After receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below).)\n##\n(BANGKOK<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Bangkok.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(AMSTERDAM<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Amsterdam.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BOSTON<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Boston.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MUMBAI<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Mumbai.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BRUSSELS<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Brussels.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(LARNACA<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Larnaca.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(FRANKFURT<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Frankfurt.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MOSCOW<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Moscow.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MUNICH<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Munich.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MADRID<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Madrid.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BERLIN<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Berlin.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(PRAGUE<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Prague.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(WARSAW<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Warsaw.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(TORONTO<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Toronto.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(VIENNA<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Vienna.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BUDAPEST<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Budapest.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(KYIV<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Kyiv.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(ROME<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Rome.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\nOutput:"}, {"role": "assistant", "content": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-1d681b1b25c63b9031e12053ce8e1caf b/cache/claim_extraction/extract-continuation-0-chat-v2-1d681b1b25c63b9031e12053ce8e1caf deleted file mode 100644 index 20085b9b26c0367d443e0e390eeea50a7cee5ee3..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-1d681b1b25c63b9031e12053ce8e1caf +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-260e1c44aea17a05d6eb4e9be4e05ec6 b/cache/claim_extraction/extract-continuation-0-chat-v2-260e1c44aea17a05d6eb4e9be4e05ec6 deleted file mode 100644 index 835f081f1dabe69edf4bf629c9a2a87b32f91b4f..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-260e1c44aea17a05d6eb4e9be4e05ec6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Information on batteries and dangerous substances \nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all. \n\nSubstances and articles forbidden on the aircraft: \nCompressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. \nCorrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. \nExplosives other than light ammunition. \nFlammable liquids and solids. \nRadioactive materials. \nBriefcases with installed alarm devices. \nOxidizing materials (hydrogen peroxide, bleaching powders, etc.). \nPoisons and infectious substances, such as insecticides, herbicides, and live virus materials. \nItems such as high-strength magnetic materials, materials that can harm people or the environment. \n\nOutput: \n\n(NONE<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Certain articles and substances are classified as dangerous and may require advance preparation or may not be allowed on flights.<|>Whether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.) \n(NONE<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Substances and articles forbidden on the aircraft include compressed gases, corrosives, explosives, flammable liquids and solids, radioactive materials, briefcases with installed alarm devices, oxidizing materials, poisons, and infectious substances.<|>Substances and articles forbidden on the aircraft: Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. Explosives other than light ammunition. Flammable liquids and solids. Radioactive materials. Briefcases with installed alarm devices. Oxidizing materials (hydrogen peroxide, bleaching powders, etc.). Poisons and infectious substances, such as insecticides, herbicides, and live virus materials. Items such as high-strength magnetic materials, materials that can harm people or the environment.) \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-2b57a933f1bd3add919186f06c4461f2 b/cache/claim_extraction/extract-continuation-0-chat-v2-2b57a933f1bd3add919186f06c4461f2 deleted file mode 100644 index f3b9c570e00e71a2fb3dab0a3dd98c179adee7dd..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-2b57a933f1bd3add919186f06c4461f2 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Thank you for your patience. Let's identify the entities and claims based on the provided text.\n\n### Entities Identified:\n1. **EL AL Cargo Division** (organization)\n2. **Europe** (geo)\n3. **Middle East** (geo)\n4. **Morocco** (geo)\n5. **Far East** (geo)\n6. **North America** (geo)\n\n### Claims Extracted:\n1. **Claim about baggage measurements and weight limits for sporting equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: BAGGAGE MEASUREMENTS\n - Claim Status: TRUE\n - Claim Description: The EL AL Cargo Division allows sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg to be transported as additional baggage.\n - Claim Date: **NONE**\n - Claim Source Text: \"Allowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\"\n\n2. **Claim about fees for transporting sports equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: TRANSPORT FEES\n - Claim Status: TRUE\n - Claim Description: The EL AL Cargo Division charges $70 one way for transporting sports equipment to Europe, the Middle East, and Morocco, and $150 one way for the Far East and North America.\n - Claim Date: **NONE**\n - Claim Source Text: \"Fees: - Europe, the Middle East, and Morocco: $70 one way. - Far East and North America: $150 one way.\"\n\n3. **Claim about payment for transport of sporting equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: PAYMENT POLICY\n - Claim Status: TRUE\n - Claim Description: Payment for the transport of sporting equipment must be made at the airport only and cannot be made in advance.\n - Claim Date: **NONE**\n - Claim Source Text: \"Payment for the transport of sporting equipment will be made at the airport only and cannot be made in advance.\"\n\n### Final Output:\n(EL AL CARGO DIVISION<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>The EL AL Cargo Division allows sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg to be transported as additional baggage.<|>Allowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.)\n##\n(EL AL CARGO DIVISION<|>NONE<|>TRANSPORT FEES<|>TRUE<|>NONE<|>NONE<|>The EL AL Cargo Division charges $70 one way for transporting sports equipment to Europe, the Middle East, and Morocco, and $150 one way for the Far East and North America.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way. - Far East and North America: $150 one way.)\n##\n(EL AL CARGO DIVISION<|>NONE<|>PAYMENT POLICY<|>TRUE<|>NONE<|>NONE<|>Payment for the transport of sporting equipment must be made at the airport only and cannot be made in advance.<|>Payment for the transport of sporting equipment will be made at the airport only and cannot be made in advance.)\n##\n(EUROPE<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>Europe is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(MIDDLE EAST<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>The Middle East is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(MOROCCO<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>Morocco is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(FAR EAST<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>The Far East is mentioned as a destination for transporting sports equipment.<|>Fees: - Far East and North America: $150 one way.)\n##\n(NORTH AMERICA<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>North America is mentioned as a destination for transporting sports equipment.<|>Fees: - Far East and North America: $150 one way.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\nOutput:"}, {"role": "assistant", "content": "There are no specific named entities or claims related to baggage measurements, weight limits, and restrictions from airline documentation in the provided text. The text primarily discusses general information about transporting sporting equipment without mentioning specific organizations, persons, geographical locations, or events that would fit the entity specification.\n\nTherefore, the output is:\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-2e47caa7d83c3e78067cb498c87987ea b/cache/claim_extraction/extract-continuation-0-chat-v2-2e47caa7d83c3e78067cb498c87987ea deleted file mode 100644 index a05ca3b462be83adbef1931cf9ce77a2e68b5412..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-2e47caa7d83c3e78067cb498c87987ea +++ /dev/null @@ -1 +0,0 @@ -{"result": "I apologize for the oversight. Let's extract the relevant entities and claims again.\n\nEntity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page. Prices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment. Transporting snowboards and ski equipment? In addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width). If your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177). What does Ski and snowboards equipment include? Ski equipment includes one pair of skis, one pair of poles and one pair of ski boots. Snowboard equipment includes one snowboard and one pair of ski boots. Transporting bicycles? You can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in). Please note Motorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold. Transport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations: Remove the pedals. Dismantle the handlebar. Let out some air from the wheels and separate one wheel from the rest of the bicycle. Make sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid. Please note The information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines. It is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment. Please note that in accordance with transport conditions, EL AL does not bear responsibility for fragile.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers are allowed to bring ski and snowboard equipment at no extra charge, provided it is packed into one checked bag that weighs up to 50 kg and does not exceed total measurements of 277 cm.<|>In addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).) \n## \n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Bicycles can be transported at no extra charge instead of regular checked baggage, provided they are packed into a checked bag and meet the weight and/or size dimensions of the permitted baggage allowance.<|>You can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).) \n## \n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>The maximum weight for checked baggage is 50 kg.<|>as long as it's packed into one checked bag that weighs up to 50 kg) \n## \n(EL AL<|>NONE<|>BAGGAGE DIMENSIONS<|>TRUE<|>NONE<|>NONE<|>The total measurements for checked baggage must not exceed 277 cm (length + height + width).<|>its total measurements do not exceed 277 cm (length + height + width).) \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-3a18e2a1eb1640871dc25c0538615f91 b/cache/claim_extraction/extract-continuation-0-chat-v2-3a18e2a1eb1640871dc25c0538615f91 deleted file mode 100644 index 483cb97c1bba75c7f990acb6ae65c576e93c9860..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-3a18e2a1eb1640871dc25c0538615f91 +++ /dev/null @@ -1 +0,0 @@ -{"result": "I apologize for the oversight. Let's analyze the text again for potential entities and claims.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\n\nText: How many checked bags can you bring? Flying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost The checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website. You can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page. The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage What is oversized and overweight baggage? Any baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage? After going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\nEurope and Middle East Far East North America Economy class EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information The pre-order option is available up to three hours prior to departure. ​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight. When reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price. You can pay to check baggage on.\n\nNow, let's extract the entities and claims:\n\n1. **Entities Identified:**\n - EL AL (organization)\n - Sundor (organization)\n - Europe (geo)\n - Middle East (geo)\n - North America (geo)\n - Far East (geo)\n - Economy class (event)\n - Lite (event)\n - Classic (event)\n - Flex (event)\n\n2. **Claims Extracted:**\n - (EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.)\n - (EL AL<|>NONE<|>BAGGAGE ALLOWANCE<|>TRUE<|>NONE<|>NONE<|>The baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex.<|>EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.)\n - (EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.)\n - (EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.)\n - (EL AL<|>NONE<|>ADDITIONAL BAGGAGE<|>TRUE<|>NONE<|>NONE<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.)\n\nCombining these into the required format:\n\nOutput:\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.)##\n(EL AL<|>NONE<|>BAGGAGE ALLOWANCE<|>TRUE<|>NONE<|>NONE<|>The baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex.<|>EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.)##\n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.)##\n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.)##\n(EL AL<|>NONE<|>ADDITIONAL BAGGAGE<|>TRUE<|>NONE<|>NONE<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.)\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\nOutput:"}, {"role": "assistant", "content": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions that can be extracted from the text. \n\nTherefore, the output is empty.\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-44a2a1cbc248baf452b6d367182fc710 b/cache/claim_extraction/extract-continuation-0-chat-v2-44a2a1cbc248baf452b6d367182fc710 deleted file mode 100644 index 78e39d886570119f464017d8164d8a5e01367208..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-44a2a1cbc248baf452b6d367182fc710 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing \"shell shock\" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-4faaf73b799cf6040dc6128a237cb8a2 b/cache/claim_extraction/extract-continuation-0-chat-v2-4faaf73b799cf6040dc6128a237cb8a2 deleted file mode 100644 index c2ddc46c44a4b1f49fa40ca3647889e1a37efb46..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-4faaf73b799cf6040dc6128a237cb8a2 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations for EL AL flights, and specific procedures must be followed to transport them.<|>For your convenience, you can view the Summary of Regulations.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Traveling with hazardous materials on EL AL flights requires prior contact with the service center and filling out a Declaration Form.<|>Are you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight.)\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-554f3bc35889e4954d6a84bc97806c93 b/cache/claim_extraction/extract-continuation-0-chat-v2-554f3bc35889e4954d6a84bc97806c93 deleted file mode 100644 index 2dde51c1e79d576e8e13b221f1b329eaab3c3e12..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-554f3bc35889e4954d6a84bc97806c93 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Liquids in Carry-On Bags \nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check. \n\nLiquids in Carry-On Bags \nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines. \n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time. \n\nOutput: \n\n(ISRAEL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Flights departing from Israel have specific conditions regarding carrying liquids in carry-on bags.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.) \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-55b2cac0a444b03df189e9337df86ebf b/cache/claim_extraction/extract-continuation-0-chat-v2-55b2cac0a444b03df189e9337df86ebf deleted file mode 100644 index 5dd603503c1ca4ea907d0abb41799bf76af50102..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-55b2cac0a444b03df189e9337df86ebf +++ /dev/null @@ -1 +0,0 @@ -{"result": "(LIQUIDS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(AEROSOLS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(GELS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(MEDICATIONS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.)\n##\n(BABY FOOD<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.)\n##\n(SECURITY CHECKPOINT<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>These items must be presented at the security checkpoint, along with the corresponding doctor’s note.<|>These items must be presented at the security checkpoint, along with the corresponding doctor’s note.)\n##\n(UNITED STATES<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>General information about carrying liquids in handbags to U.S.<|>General information about carrying liquids in handbags to U.S.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​\n​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\nOutput:"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.)\n##\n(ISRAEL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>It is important to know what you can take with you aboard the aircraft when departing from Israel.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-6703941da8f0805aa32a1d8588a13a20 b/cache/claim_extraction/extract-continuation-0-chat-v2-6703941da8f0805aa32a1d8588a13a20 deleted file mode 100644 index ae39b7ef4d8c651939560a4f45f045817e3e4bef..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-6703941da8f0805aa32a1d8588a13a20 +++ /dev/null @@ -1 +0,0 @@ -{"result": "I apologize for the oversight. Let's analyze the text again for potential entities and claims.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\n\nText: \n\"may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view.\"\n\nBased on the analysis, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL (organization)\n - IATA (organization)\n\n2. **Claims**:\n - (EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids on EL AL flights must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights Battery-powered mobility aids must comply with the relevant IATA regulations.)\n - (IATA<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)\n\n3. **Weight Limits and Restrictions**:\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.<|>Yes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger.<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids on EL AL flights must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)##\n(IATA<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.<|>Yes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger.<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\nOutput:"}, {"role": "assistant", "content": "There are no named entities that match the specified entity types (organization, person, geo, event) in the provided text. Therefore, there are no claims to extract based on the given claim description.\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-67bc9f1f5f2115f4cd515c2a28cd4e87 b/cache/claim_extraction/extract-continuation-0-chat-v2-67bc9f1f5f2115f4cd515c2a28cd4e87 deleted file mode 100644 index cc77f34b4c7283cf92a4bf969f7c8eab62636bcd..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-67bc9f1f5f2115f4cd515c2a28cd4e87 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL\n - State of Israel\n - CDC\n - Ministry of Health\n\n2. **Claims**:\n - (EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific guidelines for transporting pets as cargo, and without proper authorization, pets will not be accepted on flights.<|>If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.)\n - (STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY STATUS<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n - (CDC<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.<|>For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website.)\n - (MINISTRY OF HEALTH<|>NONE<|>AUTHORIZATION REQUIREMENTS<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel.<|>If you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance.)\n\nCombining these claims, the output is:\n\n(EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific guidelines for transporting pets as cargo, and without proper authorization, pets will not be accepted on flights.<|>If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.)##\n(STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY STATUS<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)##\n(CDC<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.<|>For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website.)##\n(MINISTRY OF HEALTH<|>NONE<|>AUTHORIZATION REQUIREMENTS<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel.<|>If you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\nOutput:"}, {"role": "assistant", "content": "Based on the provided text, there are no specific claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted. The text primarily discusses guidelines for transporting pets, but does not provide explicit claims or measurements related to baggage or weight limits.\n\nTherefore, the output will be empty.\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-69af6407e331eb5eb961a792d825d3ee b/cache/claim_extraction/extract-continuation-0-chat-v2-69af6407e331eb5eb961a792d825d3ee deleted file mode 100644 index 7d57109967af05c3b21351aa000972b56c5c63f2..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-69af6407e331eb5eb961a792d825d3ee +++ /dev/null @@ -1 +0,0 @@ -{"result": "Thank you for your patience. Upon reevaluating the text, I will identify the relevant entities and claims accordingly.\n\n### Identified Entities:\n1. **Lithium-ion batteries**\n2. **Lithium metal batteries**\n3. **Consumer-grade batteries**\n4. **Non-spillable wet batteries**\n5. **Portable electronic devices**\n6. **Electronic devices**\n7. **Spare lithium batteries**\n\n### Claims:\n1. (LITHIUM-ION BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.)\n2. (LITHIUM METAL BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.)\n3. (CONSUMER-GRADE BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.)\n4. (NON-SPILLABLE WET BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.)\n5. (PORTABLE ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”)\n6. (ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.)<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.).)\n7. (SPARE LITHIUM BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.)\n\n### Final Output:\n(LITHIUM-ION BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.)##\n(LITHIUM METAL BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.)##\n(CONSUMER-GRADE BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.)##\n(NON-SPILLABLE WET BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.)##\n(PORTABLE ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”)##\n(ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.)<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.).)##\n(SPARE LITHIUM BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\nOutput:"}, {"role": "assistant", "content": "Based on the provided text, entity specification, and claim description, the analysis yields the following claims:\n\n1. No specific organizations, persons, geographical entities, or events were identified in the text that match the entity specification.\n2. The text primarily discusses regulations regarding lithium batteries and does not provide any claims related to organizations, persons, or events.\n\nAs a result, there are no claims to extract from the provided text.\n\nOutput: \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-70379e99c486d7638291ec1ebf4f815c b/cache/claim_extraction/extract-continuation-0-chat-v2-70379e99c486d7638291ec1ebf4f815c deleted file mode 100644 index 866dc037b14f5873dba1dee6f0baea3bb210581e..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-70379e99c486d7638291ec1ebf4f815c +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n​​Do not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-7997453022aa023f80caa82a1d831e0a b/cache/claim_extraction/extract-continuation-0-chat-v2-7997453022aa023f80caa82a1d831e0a deleted file mode 100644 index 4df6f355a6ff6905ba5f41c09e7f4e5c0ed670fa..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-7997453022aa023f80caa82a1d831e0a +++ /dev/null @@ -1 +0,0 @@ -{"result": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL (organization)\n - Heathrow Airport (geo)\n - United States (geo)\n - State of Israel (geo)\n\n2. **Claims**:\n - (EL AL<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>EL AL requires the passenger to update the Service Center regarding a flight with a service dog, and may require the dog to be tied to a leash and/or harness throughout the flight.<|>The passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date. EL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.)\n - (HEATHROW AIRPORT<|>NONE<|>SERVICE DOG REGISTRATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.<|>In addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.)\n - (UNITED STATES<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to or from the United States with a service dog must fill out, print, and bring special additional forms for the United States and present them at the check-in counters.<|>Flying to or from the United States with a service dog? In addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.)\n - (STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n\nOutput:\n\n(EL AL<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>EL AL requires the passenger to update the Service Center regarding a flight with a service dog, and may require the dog to be tied to a leash and/or harness throughout the flight.<|>The passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date. EL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.)##\n(HEATHROW AIRPORT<|>NONE<|>SERVICE DOG REGISTRATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.<|>In addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.)##\n(UNITED STATES<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to or from the United States with a service dog must fill out, print, and bring special additional forms for the United States and present them at the check-in counters.<|>Flying to or from the United States with a service dog? In addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.)##\n(STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n\nOutput:"}, {"role": "assistant", "content": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-870d1d19654f858dc883b114ea32c2c0 b/cache/claim_extraction/extract-continuation-0-chat-v2-870d1d19654f858dc883b114ea32c2c0 deleted file mode 100644 index aa31d632116817eb4d5478cf6a5d0944624b4bb3..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-870d1d19654f858dc883b114ea32c2c0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-8c8da7ee8b91afac041fefb65c273006 b/cache/claim_extraction/extract-continuation-0-chat-v2-8c8da7ee8b91afac041fefb65c273006 deleted file mode 100644 index 6c261632416f9eb16bc596dbf70f0257d2bd26c0..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-8c8da7ee8b91afac041fefb65c273006 +++ /dev/null @@ -1 +0,0 @@ -{"result": "## \n(MINISTRY OF AGRICULTURE<|>NONE<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(MINISTRY OF AGRICULTURE<|>NONE<|>AUTHORIZATION PROCESS<|>TRUE<|>NONE<|>NONE<|>If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services.<|>If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services.)\n##\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.<|>* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n##\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.<|>* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {"role": "assistant", "content": "## \n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.<|>As personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In certain instances (e.g. large animals), animals must be transported as checked baggage.<|>As checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).<|>As registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-8ecc2cc174e27aa550ab2676f0e4c6c4 b/cache/claim_extraction/extract-continuation-0-chat-v2-8ecc2cc174e27aa550ab2676f0e4c6c4 deleted file mode 100644 index e32fa209b443777982f32e6671ea6b5b79067ae9..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-8ecc2cc174e27aa550ab2676f0e4c6c4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers. EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat. The dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public. Transporting the dog violates safety and security regulations. The passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above. To the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage. \n\nOutput: \n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat, causes a disturbance, or violates safety and security regulations.<|>EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat. The dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public. Transporting the dog violates safety and security regulations.) \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-98d4f9866cbf9110bd16b98384cb6474 b/cache/claim_extraction/extract-continuation-0-chat-v2-98d4f9866cbf9110bd16b98384cb6474 deleted file mode 100644 index a1cfecb913410644ae604918544771cac892552f..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-98d4f9866cbf9110bd16b98384cb6474 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL ISRAEL AIRLINES LTD.\n - Baggage Claims Department\n - Makor Haziud Baggage and Outdoor Equipment\n - WeShoes\n - Memsi Touring\n - Log In Log Out\n - ARTY RIMON\n - Shin Tik\n - Trek Market\n - Cargo\n\n2. **Claims**:\n - (EL AL ISRAEL AIRLINES LTD.<|>BAGGAGE CLAIMS DEPARTMENT<|>BAGGAGE CLAIMS<|>NONE<|>NONE<|>NONE<|>You must report damage to the Baggage Claims Department within 7 days in writing via the Digital Contact Form<|>You must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form)\n - (MAKOR HAZIUD BAGGAGE AND OUTDOOR EQUIPMENT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment provides baggage and outdoor equipment services<|>Makor Haziud Baggage and Outdoor Equipment Address: Haaliya Street 24 Tel: 03-6822330)\n - (WESHOES<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>WeShoes provides baggage services<|>WeShoes Memsi Touring Bialik 3 Tel: 076-8100205)\n - (MEMSI TOURING<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Memsi Touring provides baggage services<|>Memsi Touring Bialik 3 Tel: 076-8100205)\n - (LOG IN LOG OUT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Log In Log Out provides baggage services<|>Log In Log Out - Importer of Luggage and Bags Steinman 20 (Bavli Neighborhood) Tel: 052-2310738)\n - (ARTY RIMON<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery service for baggage<|>ARTY Rimon Service Pickup and delivery service Tel: 1700504544 WhatsApp: 0532310738)\n - (SHIN TIK<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Shin Tik provides baggage services<|>Shin Tik Memsi Touring Sokolov 59 Tel: 03-5040752)\n - (TREK MARKET<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Trek Market provides baggage services<|>Trek Market Memsi Touring Izthak Rabin 2 03-5069443)\n - (CARGO<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Cargo provides baggage services<|>Cargo)\n\nOutput:\n\n(EL AL ISRAEL AIRLINES LTD.<|>BAGGAGE CLAIMS DEPARTMENT<|>BAGGAGE CLAIMS<|>NONE<|>NONE<|>NONE<|>You must report damage to the Baggage Claims Department within 7 days in writing via the Digital Contact Form<|>You must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form)##\n(MAKOR HAZIUD BAGGAGE AND OUTDOOR EQUIPMENT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment provides baggage and outdoor equipment services<|>Makor Haziud Baggage and Outdoor Equipment Address: Haaliya Street 24 Tel: 03-6822330)##\n(WESHOES<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>WeShoes provides baggage services<|>WeShoes Memsi Touring Bialik 3 Tel: 076-8100205)##\n(MEMSI TOURING<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Memsi Touring provides baggage services<|>Memsi Touring Bialik 3 Tel: 076-8100205)##\n(LOG IN LOG OUT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Log In Log Out provides baggage services<|>Log In Log Out - Importer of Luggage and Bags Steinman 20 (Bavli Neighborhood) Tel: 052-2310738)##\n(ARTY RIMON<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery service for baggage<|>ARTY Rimon Service Pickup and delivery service Tel: 1700504544 WhatsApp: 0532310738)##\n(SHIN TIK<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Shin Tik provides baggage services<|>Shin Tik Memsi Touring Sokolov 59 Tel: 03-5040752)##\n(TREK MARKET<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Trek Market provides baggage services<|>Trek Market Memsi Touring Izthak Rabin 2 03-5069443)##\n(CARGO<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Cargo provides baggage services<|>Cargo)\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon – Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\nOutput:"}, {"role": "assistant", "content": "There are no entities or claims that match the specified criteria in the provided text. The text primarily contains information about baggage claims and contact details for various stores, but it does not include any specific claims related to baggage measurements, weight limits, or restrictions from airline documentation.\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-a142de4490c889f4008f14d35a2d9994 b/cache/claim_extraction/extract-continuation-0-chat-v2-a142de4490c889f4008f14d35a2d9994 deleted file mode 100644 index 13fd5b971303a5a5a469275a2a4e056cedb7b15a..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-a142de4490c889f4008f14d35a2d9994 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-a655bdc3ec5cf12001882225136f5ab6 b/cache/claim_extraction/extract-continuation-0-chat-v2-a655bdc3ec5cf12001882225136f5ab6 deleted file mode 100644 index d915fff18324cce47c935ba1325a8af479a310cc..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-a655bdc3ec5cf12001882225136f5ab6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {"role": "assistant", "content": "<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-af34506ce76839529e6042ffeab274e1 b/cache/claim_extraction/extract-continuation-0-chat-v2-af34506ce76839529e6042ffeab274e1 deleted file mode 100644 index 73651ec2fe74e01a49944cec1a099adf98976633..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-af34506ce76839529e6042ffeab274e1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - Organization: EL AL\n - Event: Baggage Claim\n - Geo: Airport\n\n2. **Claims**:\n - Claim regarding delayed baggage reporting.\n - Claim regarding damaged baggage reporting.\n\nHere is the output based on the identified entities and claims:\n\n(EL AL<|>NONE<|>BAGGAGE HANDLING<|>TRUE<|>NONE<|>NONE<|>Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.<|>Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.)\n##\n(EL AL<|>NONE<|>BAGGAGE HANDLING<|>TRUE<|>NONE<|>NONE<|>If you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.<|>If you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\nOutput:"}, {"role": "assistant", "content": "The provided text does not contain any specific named entities that match the entity specification of 'organization', 'person', 'geo', or 'event'. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions that can be extracted from the text. \n\nTherefore, the output will be empty.\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-c00729338ff5a9fe070558df6612f6c5 b/cache/claim_extraction/extract-continuation-0-chat-v2-c00729338ff5a9fe070558df6612f6c5 deleted file mode 100644 index 53a2076965913681f026c4289091761c261137e2..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-c00729338ff5a9fe070558df6612f6c5 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-c0aef5ea49146380f80e521367d2d169 b/cache/claim_extraction/extract-continuation-0-chat-v2-c0aef5ea49146380f80e521367d2d169 deleted file mode 100644 index f8876362d34e6f9228ecb060c181bc718384537a..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-c0aef5ea49146380f80e521367d2d169 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n(MINISTRY OF AGRICULTURE<|>NONE<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n\n(EL AL<|>NONE<|>TRANSPORTATION POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.<|>Please note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.<|>* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.<|>* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n\n(EL AL<|>NONE<|>TRANSPORTATION POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.)\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-c4aec7e1fd0020cf17e9538179e0ddc6 b/cache/claim_extraction/extract-continuation-0-chat-v2-c4aec7e1fd0020cf17e9538179e0ddc6 deleted file mode 100644 index a11cb6394920dd58fcd81445b33199c16b67d2a6..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-c4aec7e1fd0020cf17e9538179e0ddc6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Entity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment? Are you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: - Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. - Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg. Note: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website). Additional Sports Equipment If you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>El Al offers complimentary transport of sports equipment in place of your standard checked baggage under specific conditions regarding dimensions and weight limits.<|>We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: - Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. - Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.<|>If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division.<|>If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\nOutput:"}, {"role": "assistant", "content": "**##**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-d190e450beefd0cc2095aaced1e7f806 b/cache/claim_extraction/extract-continuation-0-chat-v2-d190e450beefd0cc2095aaced1e7f806 deleted file mode 100644 index dc42c6a175b7bcfd8782c21fb20bd45f12316784..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-d190e450beefd0cc2095aaced1e7f806 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**##** \n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. \nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-dc0d3337e9fe2cb17e69be6c7fd2c6f6 b/cache/claim_extraction/extract-continuation-0-chat-v2-dc0d3337e9fe2cb17e69be6c7fd2c6f6 deleted file mode 100644 index 9fa5aa7b76a343b9090d99096485cc6978ac37c9..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-dc0d3337e9fe2cb17e69be6c7fd2c6f6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-e42881b34f7a5b23463bd9d5ce781585 b/cache/claim_extraction/extract-continuation-0-chat-v2-e42881b34f7a5b23463bd9d5ce781585 deleted file mode 100644 index b2f7cf01e31ca8db7156003e9aa44086a4117611..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-e42881b34f7a5b23463bd9d5ce781585 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n(EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific regulations regarding the transportation of animals, including weight limits and restrictions based on the animal's weight and the mode of transport.<|>Transporting a pet from Israel abroad If you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance.)\n\n(ANIMAL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin, while those weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>The main factor that influences the mode of transport is the animal’s weight: Animals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.)\n\n(ANIMAL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Animals weighing more than 100 kg must be transported as registered cargo in the aircraft hold.<|>Animals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.)\n\n(DESTINATION COUNTRY<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines for transporting animals.<|>Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines.)\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country’s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-e8c8c5cc2f33a93adab68e9f3a996385 b/cache/claim_extraction/extract-continuation-0-chat-v2-e8c8c5cc2f33a93adab68e9f3a996385 deleted file mode 100644 index 62b2dcd4272fe9d6f6b7630f9f0bd6b2380397a9..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-e8c8c5cc2f33a93adab68e9f3a996385 +++ /dev/null @@ -1 +0,0 @@ -{"result": "**Output:**\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-eeb106b38c0a523cb87f996e1f883321 b/cache/claim_extraction/extract-continuation-0-chat-v2-eeb106b38c0a523cb87f996e1f883321 deleted file mode 100644 index cdb97840749f0a5250ba94c9867afdf052085f80..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-eeb106b38c0a523cb87f996e1f883321 +++ /dev/null @@ -1 +0,0 @@ -{"result": "<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {"role": "assistant", "content": "<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-f48d03c7ad49fc9d7b325ee2e7befacc b/cache/claim_extraction/extract-continuation-0-chat-v2-f48d03c7ad49fc9d7b325ee2e7befacc deleted file mode 100644 index b8fc06e4e430ffaf0f522b00a006c62cd4327355..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-f48d03c7ad49fc9d7b325ee2e7befacc +++ /dev/null @@ -1 +0,0 @@ -{"result": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n##\n(BEN GURION AIRPORT<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>When the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall. When the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.<|>When the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.)\n##\n(VETERINARY SERVICES DEPARTMENT<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division.<|>In cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division.)\n##\n(CARGO DIVISION<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>To clarify costs, please contact the Cargo Division at: +972-3-9716679.<|>Transport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at: +972-3-9716679.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t​Europe and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost\nOutput:"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-f5dfeba6083a703a0a5ff31df93f2966 b/cache/claim_extraction/extract-continuation-0-chat-v2-f5dfeba6083a703a0a5ff31df93f2966 deleted file mode 100644 index bdfc60dfc2ee98fab190021cad5578c75f99a350..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-f5dfeba6083a703a0a5ff31df93f2966 +++ /dev/null @@ -1 +0,0 @@ -{"result": "I apologize for the oversight. Let's extract the entities and claims again, ensuring we capture all relevant information.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\nRothschild 4\nTel: 03-6822330\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nRamle and Lod:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters, electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days.\n\nOutput:\n\n(ARTY RIMON<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery services, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>ARTY Rimon Service Pickup and delivery service)\n\n(CARGO TIKIM VE MIZVADOT<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Importer of Luggage and Bags)\n\n(RIMON MIZVADOT VE TIKIM<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Rimon Mizvadot ve Tikim provides services, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Rimon Mizvadot ve Tikim)\n\n(MOKA<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Moka is a pickup and delivery point, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Moka – Pickup and delivery point)\n\n(MAKOR HAZIUD<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment is mentioned, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Makor Haziud Baggage and Outdoor Equipment)\n\n(GALGAL YAZIV<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Galgal Yaziv deals with damage to powered mobility scooters and wheelchairs, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Damage to powered mobility scooters, electric power wheelchairs and more)\n\n(ORTHOPEDICA STEINER<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Orthopedica Steiner is mentioned in relation to equipment for passengers who require assistance, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Orthopedica Steiner)\n\n(HAGALGAL<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Hagalgal is the Israeli Center for Baby and children equipment and goods, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Hagalgal – The Israeli Center for Baby and children equipment and goods)\n\n(BUGABOO<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Bugaboo baby carriages and strollers are mentioned, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Bugaboo baby carriages and strollers)\n\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\nOutput:"}, {"role": "assistant", "content": "## \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-continuation-0-chat-v2-ffe51ee40615ad1284e240dac7243a9f b/cache/claim_extraction/extract-continuation-0-chat-v2-ffe51ee40615ad1284e240dac7243a9f deleted file mode 100644 index d3b23f8a6fd13d67a30710089294385249e275be..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-continuation-0-chat-v2-ffe51ee40615ad1284e240dac7243a9f +++ /dev/null @@ -1 +0,0 @@ -{"result": "(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The luggage policy of a flight may vary when the scheduled aircraft has changed and/or on flights operated by other airlines.<|>The luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>For those flying from India, a government service tax will be collected for air travel for flights with the first point of departure originated in India.<|>For those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Prices are displayed in US dollars, and at some airports, payment is only allowed in local currency according to the conversion rate on the date of payment.<|>Prices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.)\n<|COMPLETE|>", "input": "MANY entities were missed in the last extraction. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket. The maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.<|>Passengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The maximum size permitted for an infant’s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.<|>The maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to change the excess baggage rates from time to time.<|>EL AL reserves the right to change the excess baggage rates from time to time.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-0d10815b42bb30f9c9bfab347c7d6a4a b/cache/claim_extraction/extract-loopcheck-0-chat-v2-0d10815b42bb30f9c9bfab347c7d6a4a deleted file mode 100644 index c66e7c78bca0875df03813f3dd26bfb3397113ee..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-0d10815b42bb30f9c9bfab347c7d6a4a +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n(MINISTRY OF AGRICULTURE<|>NONE<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n\n(EL AL<|>NONE<|>TRANSPORTATION POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.<|>Please note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.<|>* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.<|>* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n\n(EL AL<|>NONE<|>TRANSPORTATION POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-1528529446ed2030d4c5dcaeb49549ad b/cache/claim_extraction/extract-loopcheck-0-chat-v2-1528529446ed2030d4c5dcaeb49549ad deleted file mode 100644 index a7d0a8d3179677fa4d02c7c915f9bbf36c7bbf58..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-1528529446ed2030d4c5dcaeb49549ad +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. \nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-25d0d4c426191d1dda96af5e7779e7c8 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-25d0d4c426191d1dda96af5e7779e7c8 deleted file mode 100644 index 6837a16779a822c0e92983e8a1db33f0a9dcb819..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-25d0d4c426191d1dda96af5e7779e7c8 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n\nOutput:"}, {"role": "assistant", "content": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL (organization)\n - Heathrow Airport (geo)\n - United States (geo)\n - State of Israel (geo)\n\n2. **Claims**:\n - (EL AL<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>EL AL requires the passenger to update the Service Center regarding a flight with a service dog, and may require the dog to be tied to a leash and/or harness throughout the flight.<|>The passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date. EL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.)\n - (HEATHROW AIRPORT<|>NONE<|>SERVICE DOG REGISTRATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.<|>In addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.)\n - (UNITED STATES<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to or from the United States with a service dog must fill out, print, and bring special additional forms for the United States and present them at the check-in counters.<|>Flying to or from the United States with a service dog? In addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.)\n - (STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n\nOutput:\n\n(EL AL<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>EL AL requires the passenger to update the Service Center regarding a flight with a service dog, and may require the dog to be tied to a leash and/or harness throughout the flight.<|>The passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date. EL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.)##\n(HEATHROW AIRPORT<|>NONE<|>SERVICE DOG REGISTRATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.<|>In addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.)##\n(UNITED STATES<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to or from the United States with a service dog must fill out, print, and bring special additional forms for the United States and present them at the check-in counters.<|>Flying to or from the United States with a service dog? In addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.)##\n(STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-2852d941838c262206e712856c2c6814 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-2852d941838c262206e712856c2c6814 deleted file mode 100644 index 33fe25bd7d76ac7dae072e3ccce2058a1c9b030f..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-2852d941838c262206e712856c2c6814 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-2e5d5b8d073619189a142139a2974ce1 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-2e5d5b8d073619189a142139a2974ce1 deleted file mode 100644 index 7b376189e248f53ca98a939b3f48087c13a7bf4b..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-2e5d5b8d073619189a142139a2974ce1 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.<|>Important information: The maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Each carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.<|>Each carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.<|>Passengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Duty-free products purchased at the airport count towards the baggage allowance.<|>Duty-free products purchased at the airport count towards the baggage allowance.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Enforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.<|>Enforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If no free space is available, carry-on bags will be checked to the plane's belly at no charge.<|>If no free space is available, carry-on bags will be checked to the plane's belly at no charge.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers may bring one personal bag on board, regardless of card type or travel class.<|>Passengers may bring one personal bag on board, regardless of card type or travel class.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Personal bag dimensions should not exceed 18x38x30 cm.<|>Personal bag dimensions should not exceed 18x38x30 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Unusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.<|>Unusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Exceeding eligibility may incur fees.<|>Exceeding eligibility may incur fees.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-30bc83a3bf9ece6d667889566ff830d9 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-30bc83a3bf9ece6d667889566ff830d9 deleted file mode 100644 index 2f465285e0166e0d60e2737f3f5c993f386d8dd5..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-30bc83a3bf9ece6d667889566ff830d9 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Information on batteries and dangerous substances \nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all. \n\nSubstances and articles forbidden on the aircraft: \nCompressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. \nCorrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. \nExplosives other than light ammunition. \nFlammable liquids and solids. \nRadioactive materials. \nBriefcases with installed alarm devices. \nOxidizing materials (hydrogen peroxide, bleaching powders, etc.). \nPoisons and infectious substances, such as insecticides, herbicides, and live virus materials. \nItems such as high-strength magnetic materials, materials that can harm people or the environment. \n\nOutput: \n\n(NONE<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Certain articles and substances are classified as dangerous and may require advance preparation or may not be allowed on flights.<|>Whether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.) \n(NONE<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Substances and articles forbidden on the aircraft include compressed gases, corrosives, explosives, flammable liquids and solids, radioactive materials, briefcases with installed alarm devices, oxidizing materials, poisons, and infectious substances.<|>Substances and articles forbidden on the aircraft: Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. Explosives other than light ammunition. Flammable liquids and solids. Radioactive materials. Briefcases with installed alarm devices. Oxidizing materials (hydrogen peroxide, bleaching powders, etc.). Poisons and infectious substances, such as insecticides, herbicides, and live virus materials. Items such as high-strength magnetic materials, materials that can harm people or the environment.) \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-36bf0cc68eb5908190e22c0fb6c4d8d4 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-36bf0cc68eb5908190e22c0fb6c4d8d4 deleted file mode 100644 index f5b94d8fc7fea5ff96a41e0b0faf5c7f27651e04..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-36bf0cc68eb5908190e22c0fb6c4d8d4 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-3d3b76668b85d7acd4a7a30c8333ca45 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-3d3b76668b85d7acd4a7a30c8333ca45 deleted file mode 100644 index 938814daf7ff005fead36d105991f9911e0f0fd6..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-3d3b76668b85d7acd4a7a30c8333ca45 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "I apologize for the oversight. Let's extract the relevant entities and claims again.\n\nEntity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page. Prices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment. Transporting snowboards and ski equipment? In addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width). If your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177). What does Ski and snowboards equipment include? Ski equipment includes one pair of skis, one pair of poles and one pair of ski boots. Snowboard equipment includes one snowboard and one pair of ski boots. Transporting bicycles? You can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in). Please note Motorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold. Transport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations: Remove the pedals. Dismantle the handlebar. Let out some air from the wheels and separate one wheel from the rest of the bicycle. Make sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid. Please note The information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines. It is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment. Please note that in accordance with transport conditions, EL AL does not bear responsibility for fragile.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers are allowed to bring ski and snowboard equipment at no extra charge, provided it is packed into one checked bag that weighs up to 50 kg and does not exceed total measurements of 277 cm.<|>In addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).) \n## \n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Bicycles can be transported at no extra charge instead of regular checked baggage, provided they are packed into a checked bag and meet the weight and/or size dimensions of the permitted baggage allowance.<|>You can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).) \n## \n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>The maximum weight for checked baggage is 50 kg.<|>as long as it's packed into one checked bag that weighs up to 50 kg) \n## \n(EL AL<|>NONE<|>BAGGAGE DIMENSIONS<|>TRUE<|>NONE<|>NONE<|>The total measurements for checked baggage must not exceed 277 cm (length + height + width).<|>its total measurements do not exceed 277 cm (length + height + width).) \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-3dd9928eb2653684b12bce2b82d741d0 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-3dd9928eb2653684b12bce2b82d741d0 deleted file mode 100644 index d25f7b92bd6a3b2c38197348fec263f60844ee88..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-3dd9928eb2653684b12bce2b82d741d0 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n​​Do not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-3ebaf5dfa22b9edc89bcce80169030bf b/cache/claim_extraction/extract-loopcheck-0-chat-v2-3ebaf5dfa22b9edc89bcce80169030bf deleted file mode 100644 index a33fad05361bf6e0a0136996af1c4b48c5f681b3..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-3ebaf5dfa22b9edc89bcce80169030bf +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\nOutput:"}, {"role": "assistant", "content": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions that can be extracted from the text. \n\nTherefore, the output is empty.\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "I apologize for the oversight. Let's analyze the text again for potential entities and claims.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\n\nText: How many checked bags can you bring? Flying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost The checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website. You can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page. The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage What is oversized and overweight baggage? Any baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage? After going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\nEurope and Middle East Far East North America Economy class EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information The pre-order option is available up to three hours prior to departure. ​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight. When reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price. You can pay to check baggage on.\n\nNow, let's extract the entities and claims:\n\n1. **Entities Identified:**\n - EL AL (organization)\n - Sundor (organization)\n - Europe (geo)\n - Middle East (geo)\n - North America (geo)\n - Far East (geo)\n - Economy class (event)\n - Lite (event)\n - Classic (event)\n - Flex (event)\n\n2. **Claims Extracted:**\n - (EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.)\n - (EL AL<|>NONE<|>BAGGAGE ALLOWANCE<|>TRUE<|>NONE<|>NONE<|>The baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex.<|>EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.)\n - (EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.)\n - (EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.)\n - (EL AL<|>NONE<|>ADDITIONAL BAGGAGE<|>TRUE<|>NONE<|>NONE<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.)\n\nCombining these into the required format:\n\nOutput:\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.)##\n(EL AL<|>NONE<|>BAGGAGE ALLOWANCE<|>TRUE<|>NONE<|>NONE<|>The baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex.<|>EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.)##\n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.)##\n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.)##\n(EL AL<|>NONE<|>ADDITIONAL BAGGAGE<|>TRUE<|>NONE<|>NONE<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-5eb1cef46805fb2bb96dd4a7e79bb158 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-5eb1cef46805fb2bb96dd4a7e79bb158 deleted file mode 100644 index 760ddd9848f6c641c3c2036a468fbb914b2143aa..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-5eb1cef46805fb2bb96dd4a7e79bb158 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​\n​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\nOutput:"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.)\n##\n(ISRAEL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>It is important to know what you can take with you aboard the aircraft when departing from Israel.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "(LIQUIDS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(AEROSOLS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(GELS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(MEDICATIONS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.)\n##\n(BABY FOOD<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.)\n##\n(SECURITY CHECKPOINT<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>These items must be presented at the security checkpoint, along with the corresponding doctor’s note.<|>These items must be presented at the security checkpoint, along with the corresponding doctor’s note.)\n##\n(UNITED STATES<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>General information about carrying liquids in handbags to U.S.<|>General information about carrying liquids in handbags to U.S.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-6748678ecc582440e0439ddaca818eec b/cache/claim_extraction/extract-loopcheck-0-chat-v2-6748678ecc582440e0439ddaca818eec deleted file mode 100644 index 72b9fb7cea0d20b0aab7f08fb2993812f45c4e3a..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-6748678ecc582440e0439ddaca818eec +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing \"shell shock\" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-683ec5e9f78548fa9f56ff97e535ee05 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-683ec5e9f78548fa9f56ff97e535ee05 deleted file mode 100644 index f12c8d08d17677ae0a8b391d3070c7e0c41f13b1..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-683ec5e9f78548fa9f56ff97e535ee05 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {"role": "assistant", "content": "<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-79d9f654e5c7eba825a523a1f0b70fba b/cache/claim_extraction/extract-loopcheck-0-chat-v2-79d9f654e5c7eba825a523a1f0b70fba deleted file mode 100644 index b0d82f11f038b14801eb47bf8fa563777f03de4e..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-79d9f654e5c7eba825a523a1f0b70fba +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Liquids in Carry-On Bags \nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check. \n\nLiquids in Carry-On Bags \nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines. \n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time. \n\nOutput: \n\n(ISRAEL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Flights departing from Israel have specific conditions regarding carrying liquids in carry-on bags.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.) \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-7e615148acaae8cfbf7e505700c5bacd b/cache/claim_extraction/extract-loopcheck-0-chat-v2-7e615148acaae8cfbf7e505700c5bacd deleted file mode 100644 index b9f2043546ae978fa6c5e4eca76af85246bb2265..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-7e615148acaae8cfbf7e505700c5bacd +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\nOutput:"}, {"role": "assistant", "content": "**##**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "I apologize for the oversight. Let's extract the relevant entities and claims again based on the provided text.\n\nEntity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Carry-on baggage Whether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft. First and foremost In addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website. Carry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival. This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies. Eligibility, Dimensions, and Weight What are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding? Carry-on Bags – Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg). *On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024). Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg. Please note: If no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only.<|>This information applies to flights operated by EL AL and Sun Dor only.) \n(SUN DOR<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only.<|>This information applies to flights operated by EL AL and Sun Dor only.) \n(LITE<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Lite - entitled to one carry-on bag, maximum 8 kg.<|>Carry-on Bags – Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg.) \n(CLASSIC<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Classic - entitled to one carry-on bag, maximum 8 kg.<|>Carry-on Bags – Economy Class: Classic - entitled to one carry-on bag, maximum 8 kg.) \n(FLEX<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).<|>Carry-on Bags – Economy Class: Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).) \n(PREMIUM<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.<|>Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.) \n(BUSINESS<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.<|>Carry-on Bags - Premium and Business Classes Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.) \n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-81b4e9a2c48888c01bd7ed459207baa7 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-81b4e9a2c48888c01bd7ed459207baa7 deleted file mode 100644 index 56cb13911a8f6a3e8c7925321b7a8a900c9bdc26..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-81b4e9a2c48888c01bd7ed459207baa7 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-8d49e68ac8b5fab1570449f75b6d033f b/cache/claim_extraction/extract-loopcheck-0-chat-v2-8d49e68ac8b5fab1570449f75b6d033f deleted file mode 100644 index 7cacbe989ec5039122eaa16b2380052f9437bcaf..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-8d49e68ac8b5fab1570449f75b6d033f +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t​Europe and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost\nOutput:"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n##\n(BEN GURION AIRPORT<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>When the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall. When the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.<|>When the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.)\n##\n(VETERINARY SERVICES DEPARTMENT<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division.<|>In cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division.)\n##\n(CARGO DIVISION<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>To clarify costs, please contact the Cargo Division at: +972-3-9716679.<|>Transport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at: +972-3-9716679.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-91f1025c72d94143fa7bf72cc5ced7de b/cache/claim_extraction/extract-loopcheck-0-chat-v2-91f1025c72d94143fa7bf72cc5ced7de deleted file mode 100644 index 84c83bf171cd1b1f1098cfad28f48ecc4d34c982..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-91f1025c72d94143fa7bf72cc5ced7de +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\nOutput:"}, {"role": "assistant", "content": "Based on the provided text, entity specification, and claim description, the analysis yields the following claims:\n\n1. No specific organizations, persons, geographical entities, or events were identified in the text that match the entity specification.\n2. The text primarily discusses regulations regarding lithium batteries and does not provide any claims related to organizations, persons, or events.\n\nAs a result, there are no claims to extract from the provided text.\n\nOutput: \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Thank you for your patience. Upon reevaluating the text, I will identify the relevant entities and claims accordingly.\n\n### Identified Entities:\n1. **Lithium-ion batteries**\n2. **Lithium metal batteries**\n3. **Consumer-grade batteries**\n4. **Non-spillable wet batteries**\n5. **Portable electronic devices**\n6. **Electronic devices**\n7. **Spare lithium batteries**\n\n### Claims:\n1. (LITHIUM-ION BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.)\n2. (LITHIUM METAL BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.)\n3. (CONSUMER-GRADE BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.)\n4. (NON-SPILLABLE WET BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.)\n5. (PORTABLE ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”)\n6. (ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.)<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.).)\n7. (SPARE LITHIUM BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.)\n\n### Final Output:\n(LITHIUM-ION BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.)##\n(LITHIUM METAL BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.)##\n(CONSUMER-GRADE BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.)##\n(NON-SPILLABLE WET BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.)##\n(PORTABLE ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”<|>Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.”)##\n(ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.)<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.).)##\n(SPARE LITHIUM BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-94fdc8b13d5dd0185799a9309b48ff41 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-94fdc8b13d5dd0185799a9309b48ff41 deleted file mode 100644 index 93dd168ab5a681c8a51ed0364782bf018d4e4dfe..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-94fdc8b13d5dd0185799a9309b48ff41 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {"role": "assistant", "content": "<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-97293569be139e5ebf64604b2fbef09e b/cache/claim_extraction/extract-loopcheck-0-chat-v2-97293569be139e5ebf64604b2fbef09e deleted file mode 100644 index 1060f185b653aca00048875b0aa01d66762ff771..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-97293569be139e5ebf64604b2fbef09e +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\nOutput:"}, {"role": "assistant", "content": "**##**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "I apologize for the oversight. Let's extract the relevant entities and claims again based on the provided text.\n\nEntity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Carry-on baggage Whether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft. First and foremost In addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website. Carry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival. This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies. Eligibility, Dimensions, and Weight What are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding? Carry-on Bags – Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg). *On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024). Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg. Please note: If no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only regarding baggage policies.<|>This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.)\n##\n(SUN DOR<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only regarding baggage policies.<|>This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.)\n##\n(MATMID FREQUENT FLYER CLUB<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status.<|>It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures.)\n##\n(CARRY-ON BAGS - ECONOMY CLASS<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).<|>Carry-on Bags – Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).)\n##\n(CARRY-ON BAGS - PREMIUM AND BUSINESS CLASSES<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.<|>Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-98b156a8756721dd71ca0d2b84e8e104 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-98b156a8756721dd71ca0d2b84e8e104 deleted file mode 100644 index 5b39654032cfc606299c26017f2158ee2d5bcd0d..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-98b156a8756721dd71ca0d2b84e8e104 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-9c041cfe4698af7117cd162edd0b81e7 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-9c041cfe4698af7117cd162edd0b81e7 deleted file mode 100644 index dd394a315f3d2f34731b40719ae704cbb08304c9..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-9c041cfe4698af7117cd162edd0b81e7 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\nOutput:"}, {"role": "assistant", "content": "There are no specific named entities or claims related to baggage measurements, weight limits, and restrictions from airline documentation in the provided text. The text primarily discusses general information about transporting sporting equipment without mentioning specific organizations, persons, geographical locations, or events that would fit the entity specification.\n\nTherefore, the output is:\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Thank you for your patience. Let's identify the entities and claims based on the provided text.\n\n### Entities Identified:\n1. **EL AL Cargo Division** (organization)\n2. **Europe** (geo)\n3. **Middle East** (geo)\n4. **Morocco** (geo)\n5. **Far East** (geo)\n6. **North America** (geo)\n\n### Claims Extracted:\n1. **Claim about baggage measurements and weight limits for sporting equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: BAGGAGE MEASUREMENTS\n - Claim Status: TRUE\n - Claim Description: The EL AL Cargo Division allows sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg to be transported as additional baggage.\n - Claim Date: **NONE**\n - Claim Source Text: \"Allowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\"\n\n2. **Claim about fees for transporting sports equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: TRANSPORT FEES\n - Claim Status: TRUE\n - Claim Description: The EL AL Cargo Division charges $70 one way for transporting sports equipment to Europe, the Middle East, and Morocco, and $150 one way for the Far East and North America.\n - Claim Date: **NONE**\n - Claim Source Text: \"Fees: - Europe, the Middle East, and Morocco: $70 one way. - Far East and North America: $150 one way.\"\n\n3. **Claim about payment for transport of sporting equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: PAYMENT POLICY\n - Claim Status: TRUE\n - Claim Description: Payment for the transport of sporting equipment must be made at the airport only and cannot be made in advance.\n - Claim Date: **NONE**\n - Claim Source Text: \"Payment for the transport of sporting equipment will be made at the airport only and cannot be made in advance.\"\n\n### Final Output:\n(EL AL CARGO DIVISION<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>The EL AL Cargo Division allows sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg to be transported as additional baggage.<|>Allowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.)\n##\n(EL AL CARGO DIVISION<|>NONE<|>TRANSPORT FEES<|>TRUE<|>NONE<|>NONE<|>The EL AL Cargo Division charges $70 one way for transporting sports equipment to Europe, the Middle East, and Morocco, and $150 one way for the Far East and North America.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way. - Far East and North America: $150 one way.)\n##\n(EL AL CARGO DIVISION<|>NONE<|>PAYMENT POLICY<|>TRUE<|>NONE<|>NONE<|>Payment for the transport of sporting equipment must be made at the airport only and cannot be made in advance.<|>Payment for the transport of sporting equipment will be made at the airport only and cannot be made in advance.)\n##\n(EUROPE<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>Europe is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(MIDDLE EAST<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>The Middle East is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(MOROCCO<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>Morocco is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(FAR EAST<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>The Far East is mentioned as a destination for transporting sports equipment.<|>Fees: - Far East and North America: $150 one way.)\n##\n(NORTH AMERICA<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>North America is mentioned as a destination for transporting sports equipment.<|>Fees: - Far East and North America: $150 one way.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-9f6570c75a4c1e8f0e56f4db8e430b1e b/cache/claim_extraction/extract-loopcheck-0-chat-v2-9f6570c75a4c1e8f0e56f4db8e430b1e deleted file mode 100644 index 4169ef81d64974ddf041847ad6dfc9790da3e8bd..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-9f6570c75a4c1e8f0e56f4db8e430b1e +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\nOutput:"}, {"role": "assistant", "content": "There are no named entities that match the specified entity types (organization, person, geo, event) in the provided text. Therefore, there are no claims to extract based on the given claim description.\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "I apologize for the oversight. Let's analyze the text again for potential entities and claims.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\n\nText: \n\"may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view.\"\n\nBased on the analysis, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL (organization)\n - IATA (organization)\n\n2. **Claims**:\n - (EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids on EL AL flights must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights Battery-powered mobility aids must comply with the relevant IATA regulations.)\n - (IATA<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)\n\n3. **Weight Limits and Restrictions**:\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.<|>Yes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger.<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids on EL AL flights must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)##\n(IATA<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.<|>Yes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger.<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-a1eeccfcb623a328d7e7bba13481564c b/cache/claim_extraction/extract-loopcheck-0-chat-v2-a1eeccfcb623a328d7e7bba13481564c deleted file mode 100644 index 52e3a402e74ad9af5cdd177b8d23525f11d3f6a9..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-a1eeccfcb623a328d7e7bba13481564c +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-a2c74bf6da9d77103bbd02eb3088b49a b/cache/claim_extraction/extract-loopcheck-0-chat-v2-a2c74bf6da9d77103bbd02eb3088b49a deleted file mode 100644 index c76356b73984d256614c87b11e74641f1daaea50..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-a2c74bf6da9d77103bbd02eb3088b49a +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon – Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\nOutput:"}, {"role": "assistant", "content": "There are no entities or claims that match the specified criteria in the provided text. The text primarily contains information about baggage claims and contact details for various stores, but it does not include any specific claims related to baggage measurements, weight limits, or restrictions from airline documentation.\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL ISRAEL AIRLINES LTD.\n - Baggage Claims Department\n - Makor Haziud Baggage and Outdoor Equipment\n - WeShoes\n - Memsi Touring\n - Log In Log Out\n - ARTY RIMON\n - Shin Tik\n - Trek Market\n - Cargo\n\n2. **Claims**:\n - (EL AL ISRAEL AIRLINES LTD.<|>BAGGAGE CLAIMS DEPARTMENT<|>BAGGAGE CLAIMS<|>NONE<|>NONE<|>NONE<|>You must report damage to the Baggage Claims Department within 7 days in writing via the Digital Contact Form<|>You must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form)\n - (MAKOR HAZIUD BAGGAGE AND OUTDOOR EQUIPMENT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment provides baggage and outdoor equipment services<|>Makor Haziud Baggage and Outdoor Equipment Address: Haaliya Street 24 Tel: 03-6822330)\n - (WESHOES<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>WeShoes provides baggage services<|>WeShoes Memsi Touring Bialik 3 Tel: 076-8100205)\n - (MEMSI TOURING<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Memsi Touring provides baggage services<|>Memsi Touring Bialik 3 Tel: 076-8100205)\n - (LOG IN LOG OUT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Log In Log Out provides baggage services<|>Log In Log Out - Importer of Luggage and Bags Steinman 20 (Bavli Neighborhood) Tel: 052-2310738)\n - (ARTY RIMON<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery service for baggage<|>ARTY Rimon Service Pickup and delivery service Tel: 1700504544 WhatsApp: 0532310738)\n - (SHIN TIK<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Shin Tik provides baggage services<|>Shin Tik Memsi Touring Sokolov 59 Tel: 03-5040752)\n - (TREK MARKET<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Trek Market provides baggage services<|>Trek Market Memsi Touring Izthak Rabin 2 03-5069443)\n - (CARGO<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Cargo provides baggage services<|>Cargo)\n\nOutput:\n\n(EL AL ISRAEL AIRLINES LTD.<|>BAGGAGE CLAIMS DEPARTMENT<|>BAGGAGE CLAIMS<|>NONE<|>NONE<|>NONE<|>You must report damage to the Baggage Claims Department within 7 days in writing via the Digital Contact Form<|>You must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form)##\n(MAKOR HAZIUD BAGGAGE AND OUTDOOR EQUIPMENT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment provides baggage and outdoor equipment services<|>Makor Haziud Baggage and Outdoor Equipment Address: Haaliya Street 24 Tel: 03-6822330)##\n(WESHOES<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>WeShoes provides baggage services<|>WeShoes Memsi Touring Bialik 3 Tel: 076-8100205)##\n(MEMSI TOURING<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Memsi Touring provides baggage services<|>Memsi Touring Bialik 3 Tel: 076-8100205)##\n(LOG IN LOG OUT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Log In Log Out provides baggage services<|>Log In Log Out - Importer of Luggage and Bags Steinman 20 (Bavli Neighborhood) Tel: 052-2310738)##\n(ARTY RIMON<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery service for baggage<|>ARTY Rimon Service Pickup and delivery service Tel: 1700504544 WhatsApp: 0532310738)##\n(SHIN TIK<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Shin Tik provides baggage services<|>Shin Tik Memsi Touring Sokolov 59 Tel: 03-5040752)##\n(TREK MARKET<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Trek Market provides baggage services<|>Trek Market Memsi Touring Izthak Rabin 2 03-5069443)##\n(CARGO<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Cargo provides baggage services<|>Cargo)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b00b78ab04a74e4e02500ec25b68eb29 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-b00b78ab04a74e4e02500ec25b68eb29 deleted file mode 100644 index 12f668b180e93eae9fa15f1d75c3db6a5d5d8233..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b00b78ab04a74e4e02500ec25b68eb29 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\nOutput:"}, {"role": "assistant", "content": "There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Entity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.\n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which.\n\nOutput:\n\n(MINISTRY OF HEALTH<|>ISRAEL<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel and determine how the animal will be transported.<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.)\n##\n(EL AL SERVICE CENTER<|>NONE<|>TRANSPORTATION APPROVAL<|>TRUE<|>NONE<|>NONE<|>Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin.<|>Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin.)\n##\n(BEN GURION AIRPORT<|>NONE<|>VETERINARY SERVICES<|>TRUE<|>NONE<|>NONE<|>Email Veterinary Services at Ben Gurion Airport to obtain the required documents for transporting an animal to Israel.<|>After receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below).)\n##\n(BANGKOK<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Bangkok.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(AMSTERDAM<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Amsterdam.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BOSTON<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Boston.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MUMBAI<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Mumbai.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BRUSSELS<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Brussels.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(LARNACA<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Larnaca.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(FRANKFURT<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Frankfurt.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MOSCOW<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Moscow.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MUNICH<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Munich.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MADRID<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Madrid.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BERLIN<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Berlin.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(PRAGUE<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Prague.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(WARSAW<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Warsaw.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(TORONTO<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Toronto.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(VIENNA<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Vienna.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BUDAPEST<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Budapest.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(KYIV<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Kyiv.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(ROME<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Rome.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b1004b412b1869afc2ec275fcec723a9 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-b1004b412b1869afc2ec275fcec723a9 deleted file mode 100644 index f9aed9b915900bd0f960c21680f12446717efcff..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b1004b412b1869afc2ec275fcec723a9 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\nOutput:"}, {"role": "assistant", "content": "**##**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Entity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment? Are you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: - Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. - Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg. Note: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website). Additional Sports Equipment If you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>El Al offers complimentary transport of sports equipment in place of your standard checked baggage under specific conditions regarding dimensions and weight limits.<|>We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: - Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. - Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.<|>If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division.<|>If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b5ad733807a8425d22e03903a60f16e0 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-b5ad733807a8425d22e03903a60f16e0 deleted file mode 100644 index 91a3c6c5ca0ede5fe6472997ef3b922b3391cd85..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b5ad733807a8425d22e03903a60f16e0 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers. EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat. The dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public. Transporting the dog violates safety and security regulations. The passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above. To the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage. \n\nOutput: \n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat, causes a disturbance, or violates safety and security regulations.<|>EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat. The dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public. Transporting the dog violates safety and security regulations.) \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b5d6c57ecf1aaa34a5cf77b5dd26ea04 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-b5d6c57ecf1aaa34a5cf77b5dd26ea04 deleted file mode 100644 index 35134ca5e23b38bda278cb44e96eb7de1d55ec06..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b5d6c57ecf1aaa34a5cf77b5dd26ea04 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\nOutput:"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**##** \n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b92fb68f834bf00d5ae203efcf473beb b/cache/claim_extraction/extract-loopcheck-0-chat-v2-b92fb68f834bf00d5ae203efcf473beb deleted file mode 100644 index e37ec99fc0ba4590420776f9c808f6d126d48a62..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-b92fb68f834bf00d5ae203efcf473beb +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\nOutput:"}, {"role": "assistant", "content": "Based on the provided text, there are no specific claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted. The text primarily discusses guidelines for transporting pets, but does not provide explicit claims or measurements related to baggage or weight limits.\n\nTherefore, the output will be empty.\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL\n - State of Israel\n - CDC\n - Ministry of Health\n\n2. **Claims**:\n - (EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific guidelines for transporting pets as cargo, and without proper authorization, pets will not be accepted on flights.<|>If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.)\n - (STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY STATUS<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n - (CDC<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.<|>For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website.)\n - (MINISTRY OF HEALTH<|>NONE<|>AUTHORIZATION REQUIREMENTS<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel.<|>If you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance.)\n\nCombining these claims, the output is:\n\n(EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific guidelines for transporting pets as cargo, and without proper authorization, pets will not be accepted on flights.<|>If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.)##\n(STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY STATUS<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)##\n(CDC<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.<|>For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website.)##\n(MINISTRY OF HEALTH<|>NONE<|>AUTHORIZATION REQUIREMENTS<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel.<|>If you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-c69e1dad626c46f0f765e9cb739256d6 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-c69e1dad626c46f0f765e9cb739256d6 deleted file mode 100644 index 2b8231b8e36aac941ff7d6ffd233f97f02ba77dd..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-c69e1dad626c46f0f765e9cb739256d6 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {"role": "assistant", "content": "## \n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.<|>As personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In certain instances (e.g. large animals), animals must be transported as checked baggage.<|>As checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).<|>As registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "## \n(MINISTRY OF AGRICULTURE<|>NONE<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(MINISTRY OF AGRICULTURE<|>NONE<|>AUTHORIZATION PROCESS<|>TRUE<|>NONE<|>NONE<|>If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services.<|>If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services.)\n##\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.<|>* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n##\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.<|>* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-c9196f00ee3a73716ce418baf947791b b/cache/claim_extraction/extract-loopcheck-0-chat-v2-c9196f00ee3a73716ce418baf947791b deleted file mode 100644 index 1318260c209eaf12929c271100dc18a205bf5d81..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-c9196f00ee3a73716ce418baf947791b +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\nOutput:"}, {"role": "assistant", "content": "## \n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "I apologize for the oversight. Let's extract the entities and claims again, ensuring we capture all relevant information.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\nRothschild 4\nTel: 03-6822330\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nRamle and Lod:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters, electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days.\n\nOutput:\n\n(ARTY RIMON<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery services, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>ARTY Rimon Service Pickup and delivery service)\n\n(CARGO TIKIM VE MIZVADOT<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Importer of Luggage and Bags)\n\n(RIMON MIZVADOT VE TIKIM<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Rimon Mizvadot ve Tikim provides services, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Rimon Mizvadot ve Tikim)\n\n(MOKA<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Moka is a pickup and delivery point, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Moka – Pickup and delivery point)\n\n(MAKOR HAZIUD<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment is mentioned, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Makor Haziud Baggage and Outdoor Equipment)\n\n(GALGAL YAZIV<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Galgal Yaziv deals with damage to powered mobility scooters and wheelchairs, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Damage to powered mobility scooters, electric power wheelchairs and more)\n\n(ORTHOPEDICA STEINER<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Orthopedica Steiner is mentioned in relation to equipment for passengers who require assistance, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Orthopedica Steiner)\n\n(HAGALGAL<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Hagalgal is the Israeli Center for Baby and children equipment and goods, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Hagalgal – The Israeli Center for Baby and children equipment and goods)\n\n(BUGABOO<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Bugaboo baby carriages and strollers are mentioned, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Bugaboo baby carriages and strollers)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-ca92faa241ac235099ca0b2a72c08f1c b/cache/claim_extraction/extract-loopcheck-0-chat-v2-ca92faa241ac235099ca0b2a72c08f1c deleted file mode 100644 index 20172693dfb49242c5af5b45276ccfe94d827d57..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-ca92faa241ac235099ca0b2a72c08f1c +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations for EL AL flights, and specific procedures must be followed to transport them.<|>For your convenience, you can view the Summary of Regulations.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Traveling with hazardous materials on EL AL flights requires prior contact with the service center and filling out a Declaration Form.<|>Are you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight.)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-d9cae44afbe86354711f45f3f4321a4d b/cache/claim_extraction/extract-loopcheck-0-chat-v2-d9cae44afbe86354711f45f3f4321a4d deleted file mode 100644 index c65ed0b3bd2311a219d5658d4c4b815eb18dfa5c..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-d9cae44afbe86354711f45f3f4321a4d +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\nOutput:"}, {"role": "assistant", "content": "The provided text does not contain any specific named entities that match the entity specification of 'organization', 'person', 'geo', or 'event'. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions that can be extracted from the text. \n\nTherefore, the output will be empty.\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - Organization: EL AL\n - Event: Baggage Claim\n - Geo: Airport\n\n2. **Claims**:\n - Claim regarding delayed baggage reporting.\n - Claim regarding damaged baggage reporting.\n\nHere is the output based on the identified entities and claims:\n\n(EL AL<|>NONE<|>BAGGAGE HANDLING<|>TRUE<|>NONE<|>NONE<|>Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.<|>Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.)\n##\n(EL AL<|>NONE<|>BAGGAGE HANDLING<|>TRUE<|>NONE<|>NONE<|>If you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.<|>If you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-dbc7460eb4cc5e2c50a142a7dc0d677c b/cache/claim_extraction/extract-loopcheck-0-chat-v2-dbc7460eb4cc5e2c50a142a7dc0d677c deleted file mode 100644 index 760f803fdbb85e074115412584eec49d4c8c4da2..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-dbc7460eb4cc5e2c50a142a7dc0d677c +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country’s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\nOutput:"}, {"role": "assistant", "content": "**Output:**\n\n**NONE**\n\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "**Output:**\n\n(EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific regulations regarding the transportation of animals, including weight limits and restrictions based on the animal's weight and the mode of transport.<|>Transporting a pet from Israel abroad If you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance.)\n\n(ANIMAL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin, while those weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>The main factor that influences the mode of transport is the animal’s weight: Animals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.)\n\n(ANIMAL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Animals weighing more than 100 kg must be transported as registered cargo in the aircraft hold.<|>Animals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.)\n\n(DESTINATION COUNTRY<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines for transporting animals.<|>Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines.)\n\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/claim_extraction/extract-loopcheck-0-chat-v2-ed5e604f32d9568ccc2d4ee74b0b2972 b/cache/claim_extraction/extract-loopcheck-0-chat-v2-ed5e604f32d9568ccc2d4ee74b0b2972 deleted file mode 100644 index aaaaab590db4432a11212f3fe73a6b89387b54d4..0000000000000000000000000000000000000000 --- a/cache/claim_extraction/extract-loopcheck-0-chat-v2-ed5e604f32d9568ccc2d4ee74b0b2972 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket. The maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.<|>Passengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The maximum size permitted for an infant’s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.<|>The maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to change the excess baggage rates from time to time.<|>EL AL reserves the right to change the excess baggage rates from time to time.)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities were missed in the last extraction. Add them below using the same format:\n"}, {"role": "assistant", "content": "(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The luggage policy of a flight may vary when the scheduled aircraft has changed and/or on flights operated by other airlines.<|>The luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>For those flying from India, a government service tax will be collected for air travel for flights with the first point of departure originated in India.<|>For those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Prices are displayed in US dollars, and at some airports, payment is only allowed in local currency according to the conversion rate on the date of payment.<|>Prices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-052b97bea16359bff9ba4d7146bfbf13 b/cache/community_reporting/create_community_report-chat-v2-052b97bea16359bff9ba4d7146bfbf13 deleted file mode 100644 index 4864332e7525a85dbccba6f8ab12a51bbd54f44e..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-052b97bea16359bff9ba4d7146bfbf13 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Makor Haziud and Nes Ziona Community\",\n \"summary\": \"The community centers around Makor Haziud, a store in Nes Ziona specializing in baggage and outdoor equipment. The relationships between Makor Haziud, the city of Nes Ziona, and other entities highlight its role in providing relevant services for baggage handling.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the specialized services provided by Makor Haziud, which may influence local operations related to baggage handling.\",\n \"findings\": [\n {\n \"summary\": \"Makor Haziud's specialization in baggage and outdoor equipment\",\n \"explanation\": \"Makor Haziud is a key entity in this community, specializing in baggage and outdoor equipment. This specialization indicates that the store plays a significant role in the local economy, particularly for individuals and businesses that require such equipment. The store's focus on baggage handling suggests that it may cater to travelers and logistics companies, which could have implications for local tourism and transport services. [Data: Entities (207)]\"\n },\n {\n \"summary\": \"Nes Ziona as the operational base for Makor Haziud\",\n \"explanation\": \"Nes Ziona serves as the operational base for Makor Haziud, indicating a strong service location relationship. The city's infrastructure and demographics may influence the store's customer base and operational strategies. As a city, Nes Ziona may benefit from the presence of specialized stores like Makor Haziud, which can enhance local commerce and attract visitors. [Data: Entities (245), Relationships (341)]\"\n },\n {\n \"summary\": \"Relationship with Baggage Claims Department\",\n \"explanation\": \"Makor Haziud has a relationship with the Baggage Claims Department, suggesting that it may provide equipment relevant for baggage handling and claims. This connection indicates that the store could play a role in supporting local airports or transport services, enhancing its importance in the community. The collaboration with the Baggage Claims Department may also position Makor Haziud as a key player in addressing baggage-related issues, which can be critical for customer satisfaction in travel services. [Data: Relationships (237)]\"\n },\n {\n \"summary\": \"Connection with ARTY Rimon\",\n \"explanation\": \"Makor Haziud's specialization in baggage is relevant to the services provided by ARTY Rimon, indicating a collaborative relationship. This connection may enhance the service offerings available to customers, particularly those involved in travel or outdoor activities. The synergy between these entities could lead to joint promotions or bundled services, benefiting both businesses and their customers. [Data: Relationships (340)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n207,MAKOR HAZIUD,Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment.,3\r\n245,NES ZIONA,Nes Ziona is a city where Makor Haziud operates.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n340,MAKOR HAZIUD,ARTY RIMON,\"Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon\",15\r\n341,MAKOR HAZIUD,NES ZIONA,\"Makor Haziud operates in Nes Ziona, indicating a service location relationship\",4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-078f7358c194632752c67ecd54d40561 b/cache/community_reporting/create_community_report-chat-v2-078f7358c194632752c67ecd54d40561 deleted file mode 100644 index 39bb416f22d8df31d61c63db1a20937a57242ffe..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-078f7358c194632752c67ecd54d40561 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Veterinary Services and Animal Transport Compliance\",\n \"summary\": \"The community focuses on the regulatory framework surrounding the transport of animals, primarily involving the Veterinary Services Department, which issues necessary health certificates and permits. Key entities include the International Certificate of Good Health, Export License, and various permits required for compliance with international transport regulations.\",\n \"rating\": 8.0,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of compliance in animal transport, which affects public health and international trade.\",\n \"findings\": [\n {\n \"summary\": \"Role of the Veterinary Services Department\",\n \"explanation\": \"The Veterinary Services Department is the central authority in this community, responsible for regulating the transport of animals. It issues health certificates, export licenses, and permits, ensuring that all transport complies with health standards and regulations. The department's role is crucial in maintaining the safety and health of animals during transport, which is vital for preventing the spread of diseases. The relationships it holds with other entities highlight its importance in the regulatory framework for animal transport [Data: Entities (37); Relationships (113, 151, 150, 149, 152, +more)].\"\n },\n {\n \"summary\": \"Importance of the International Certificate of Good Health\",\n \"explanation\": \"The International Certificate of Good Health is a key document required for transporting animals abroad. This certificate ensures that animals are healthy and free from diseases before they are exported, which is essential for public health and safety. The relationship between this certificate and the Veterinary Services Department underscores the importance of regulatory compliance in international animal transport. Failure to obtain this certificate can lead to significant legal and health implications [Data: Entities (29); Relationships (77, 138)].\"\n },\n {\n \"summary\": \"Export License as a critical requirement\",\n \"explanation\": \"An Export License is necessary for transporting animals internationally, serving as a legal requirement that ensures compliance with both the exporting and importing countries' regulations. The Cargo Division's requirement for this license indicates its importance in the logistics of animal transport. The relationship between the Export License and the Veterinary Services Department further emphasizes the need for proper documentation to facilitate safe and legal animal transport [Data: Entities (45); Relationships (117, 150)].\"\n },\n {\n \"summary\": \"Permits required for animal transport\",\n \"explanation\": \"Permits are essential for transporting animals from Israel, ensuring compliance with both Israeli and destination country regulations. The Veterinary Services Department issues these permits, which are critical for legal transport. The relationship between permits and the department highlights the regulatory framework that governs animal transport, ensuring that all necessary conditions are met for safe movement [Data: Entities (36); Relationships (149)].\"\n },\n {\n \"summary\": \"Laboratory results for rabies antibodies\",\n \"explanation\": \"Laboratory results for rabies antibodies are a necessary requirement for transporting pets, ensuring that animals are vaccinated and safe for travel. This requirement is part of the broader regulatory framework established by the Veterinary Services Department, which aims to prevent the spread of rabies and other diseases during animal transport. The relationship between these laboratory results and the department illustrates the importance of health checks in the transport process [Data: Entities (80); Relationships (152)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n29,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.,2\r\n45,EXPORT LICENSE,\"An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.\",2\r\n37,VETERINARY SERVICES DEPARTMENT,\"The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.\",7\r\n36,PERMIT,A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.,2\r\n80,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are necessary for transporting pets.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n77,PET,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting pets abroad.,21\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n113,AUTHORIZATION,VETERINARY SERVICES DEPARTMENT,Authorization from the Veterinary Services Department is required for transporting pets as cargo,10\r\n139,BILL OF LADING,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department determines if a bill of lading is needed for transporting animals,10\r\n150,VETERINARY SERVICES DEPARTMENT,EXPORT LICENSE,An export license is required by the Veterinary Services Department for transporting animals,9\r\n138,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues the international certificate of good health required for animal transport.,9\r\n149,PERMIT,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues permits required for transporting animals abroad.,9\r\n152,VETERINARY SERVICES DEPARTMENT,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals,8\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-09043ea217929b6863f9519c863f79de b/cache/community_reporting/create_community_report-chat-v2-09043ea217929b6863f9519c863f79de deleted file mode 100644 index 7391f1492ec9e773756e1c34dd3e1bcf2b8006dd..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-09043ea217929b6863f9519c863f79de +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Pet Transportation Regulations and Entities\",\n \"summary\": \"The community focuses on the transportation of pets, particularly dogs and exotic birds, highlighting the regulations and requirements set by various entities, including airlines and the United States government. Key relationships among these entities illustrate the complexities involved in pet travel.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the regulatory complexities and potential consequences of non-compliance in pet transportation.\",\n \"findings\": [\n {\n \"summary\": \"Regulatory framework for pet transportation\",\n \"explanation\": \"The transportation of pets, especially dogs, is governed by specific regulations established by the United States and various airlines. These regulations are crucial for ensuring the safe and compliant travel of pets. For instance, the CDC outlines specific requirements for transporting dogs to the US, which must be adhered to by pet owners and airlines alike. Non-compliance with these regulations can lead to significant issues, including fines or the denial of entry for pets. [Data: Entities (52), Relationships (181)]\"\n },\n {\n \"summary\": \"Role of EL AL in pet transportation\",\n \"explanation\": \"EL AL has established specific policies for transporting pets, which include weight limits and documentation requirements. The airline's policies are designed to ensure that pets are transported safely and in compliance with regulations. This includes offering services for transporting pets as cargo and requiring specific documentation at check-in. The relationship between EL AL and the broader pet transportation community highlights the importance of airline policies in facilitating pet travel. [Data: Entities (24), Relationships (14)]\"\n },\n {\n \"summary\": \"Special regulations for dogs\",\n \"explanation\": \"Dogs are classified as pets that require special regulations for transportation, which are more stringent compared to other types of pets. The relationship between dogs and the regulations set forth by the US government indicates the heightened scrutiny and requirements for their travel. This includes specific documentation and adherence to weight limits, which are critical for ensuring compliance and the safety of the animals during transit. [Data: Entities (47), Relationships (134, 181)]\"\n },\n {\n \"summary\": \"Importance of documents and authorizations\",\n \"explanation\": \"Documents and authorizations are essential for transporting pets, as they must be presented at check-in to ensure compliance with regulations. This requirement underscores the administrative burden placed on pet owners and the importance of proper documentation in facilitating smooth travel. The relationship between documents and the broader pet transportation framework highlights the critical role of paperwork in ensuring that pets can travel without issues. [Data: Entities (50), Relationships (135)]\"\n },\n {\n \"summary\": \"Exotic birds as a unique category\",\n \"explanation\": \"Exotic birds are classified as pets that can be transported under specific conditions, which differ from those for dogs. This distinction is important as it reflects the varying regulations that apply to different types of pets. The relationship between exotic birds and the general category of pets indicates the need for tailored regulations that address the unique needs and risks associated with transporting these animals. [Data: Entities (17), Relationships (129)]\"\n },\n {\n \"summary\": \"Airport facilities and additional charges\",\n \"explanation\": \"Airport facilities may impose additional charges for inspecting and releasing pets, particularly dogs. This aspect of pet transportation adds another layer of complexity and potential cost for pet owners. Understanding the financial implications of these charges is crucial for pet owners planning to travel with their animals, as it can significantly affect the overall cost of travel. [Data: Entities (49), Relationships (182)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n24,PETS,,6\r\n47,DOGS,\"Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.\",3\r\n50,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are necessary for transporting pets and must be presented at check-in.,1\r\n17,EXOTIC BIRDS,Exotic birds are among the pets that can be transported in the cabin with their owners.,1\r\n49,AIRPORT FACILITIES,Airport facilities in the United States may incur additional charges for inspecting and releasing pets.,1\r\n52,US,\"The United States has specific regulations regarding the transportation of pets, particularly dogs.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n14,EL AL,PETS,\"EL AL has established specific policies for transporting pets, which include weight limits and certain conditions that must be met. The airline offers services for transporting pets as cargo, and it requires specific documentation to ensure the safe and compliant travel of these animals.\",55\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n134,PETS,DOGS,Dogs are classified as pets that require special regulations for transportation,9\r\n135,PETS,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are required for transporting pets,7\r\n129,EXOTIC BIRDS,PETS,Exotic birds are classified as pets that can be transported under certain conditions,7\r\n182,DOGS,AIRPORT FACILITIES,Airport facilities may charge additional fees for inspecting and releasing dogs,4\r\n181,DOGS,US,The US has specific regulations regarding the transportation of dogs,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-0a6af86aae87ca1528827fb025a21fca b/cache/community_reporting/create_community_report-chat-v2-0a6af86aae87ca1528827fb025a21fca deleted file mode 100644 index 4592ea852ac9b1d4d2e4b838be46d7a633e46140..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-0a6af86aae87ca1528827fb025a21fca +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Hazardous Materials and EL AL Travel Regulations\",\n \"summary\": \"This community focuses on the regulations surrounding the transportation of hazardous materials, particularly dry ice, on EL AL flights. The key entities include hazardous materials, the Declaration Form required for travel, and dry ice, which is classified as a hazardous material.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential risks associated with the mishandling of hazardous materials during air travel.\",\n \"findings\": [\n {\n \"summary\": \"Regulatory requirements for hazardous materials\",\n \"explanation\": \"EL AL has specific regulations regarding the transportation of hazardous materials, which necessitate advance notice and the completion of a Declaration Form. This requirement is crucial for ensuring safety during air travel, as hazardous materials can pose significant risks if not handled properly. The relationship between EL AL and hazardous materials highlights the airline's commitment to safety and compliance with aviation regulations. [Data: Entities (421), Relationships (49)]\"\n },\n {\n \"summary\": \"Importance of the Declaration Form\",\n \"explanation\": \"The Declaration Form is a critical document required for traveling with hazardous materials on EL AL flights. This form serves as a formal declaration of the materials being transported, ensuring that the airline is aware of any potential hazards. The relationship between hazardous materials and the Declaration Form underscores the importance of proper documentation in mitigating risks associated with air travel. [Data: Entities (422), Relationships (450)]\"\n },\n {\n \"summary\": \"Classification of dry ice as a hazardous material\",\n \"explanation\": \"Dry ice is classified as a hazardous material that requires special handling during air travel. This classification is significant because it necessitates adherence to specific regulations to prevent accidents or incidents related to its transportation. The relationship between dry ice and hazardous materials emphasizes the need for awareness and compliance when transporting such items. [Data: Entities (423), Relationships (451)]\"\n },\n {\n \"summary\": \"Potential risks of mishandling hazardous materials\",\n \"explanation\": \"The mishandling of hazardous materials, including dry ice, can lead to serious safety concerns during air travel. These risks include potential leaks, chemical reactions, or other hazardous situations that could endanger passengers and crew. The community's focus on regulations and documentation is essential for minimizing these risks and ensuring safe travel practices. [Data: Entities (421, 423), Relationships (49, 451)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n421,HAZARDOUS MATERIALS,Hazardous materials include items like dry ice that require special handling and declaration when traveling.,3\r\n422,DECLARATION FORM,A Declaration Form is required for traveling with hazardous materials on EL AL flights.,1\r\n423,DRY ICE,Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n49,EL AL,HAZARDOUS MATERIALS,EL AL requires advance notice and a Declaration Form for traveling with hazardous materials,52\r\n450,HAZARDOUS MATERIALS,DECLARATION FORM,A Declaration Form is necessary for traveling with hazardous materials on EL AL flights,4\r\n451,HAZARDOUS MATERIALS,DRY ICE,Dry ice is classified as a hazardous material that requires special handling during air travel,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-0b3999c6b59ef8a575634bf3c585de27 b/cache/community_reporting/create_community_report-chat-v2-0b3999c6b59ef8a575634bf3c585de27 deleted file mode 100644 index 3e57f81a465e48eb45b6f98c9a03eb3200f8d446..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-0b3999c6b59ef8a575634bf3c585de27 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Airport Check-In Community\",\n \"summary\": \"The Airport Check-In Community consists of key entities such as check-in counters, passengers, and security check areas, all of which are interconnected through the processes required for air travel. The relationships highlight the importance of documentation and procedures that passengers must follow when checking in for flights, particularly when traveling with service dogs or returning to Israel.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the critical nature of compliance with travel regulations and the potential for disruptions in air travel.\",\n \"findings\": [\n {\n \"summary\": \"Check-in Counters as Central Entities\",\n \"explanation\": \"Check-in counters are the central entities in this community, serving as the official points where passengers must present their documentation for flights. These counters are crucial for ensuring that all necessary paperwork is completed before boarding, which is essential for maintaining security and compliance with airline regulations. The relationship between check-in counters and passengers is vital, as it dictates the flow of travelers through the airport and their ability to board flights. [Data: Entities (105); Relationships (32, 215)]\"\n },\n {\n \"summary\": \"Passenger Requirements\",\n \"explanation\": \"Passengers are required to check in at the counters regardless of whether they have luggage. This requirement emphasizes the importance of the check-in process in air travel, as it ensures that all travelers are accounted for and that necessary documentation is verified. The relationship between passengers and check-in counters highlights the procedural nature of air travel, where compliance is mandatory for all individuals traveling by flight. [Data: Entities (317); Relationships (215)]\"\n },\n {\n \"summary\": \"Documentation for Service Dogs\",\n \"explanation\": \"Passengers traveling with service dogs must present specific documentation at the check-in counters. This requirement underscores the importance of adhering to regulations that govern the travel of service animals, ensuring that all necessary paperwork is in order to facilitate a smooth travel experience. The relationship between service dogs and check-in counters indicates a specialized process that must be followed, which can impact the overall efficiency of the check-in process. [Data: Relationships (65)]\"\n },\n {\n \"summary\": \"Security Check Areas\",\n \"explanation\": \"After checking in at the counters, passengers must proceed to security check areas. This relationship is critical for maintaining airport security and ensuring that all travelers are screened before boarding their flights. The flow from check-in counters to security check areas is a key aspect of the travel process, highlighting the interconnectedness of these entities in ensuring safe and compliant air travel. [Data: Entities (318); Relationships (216)]\"\n },\n {\n \"summary\": \"Return to Israel\",\n \"explanation\": \"Passengers checking in at the counters are often returning to Israel, which may involve specific regulations and documentation requirements. This relationship indicates that the check-in process is not only about boarding a flight but also about complying with the legal and regulatory frameworks associated with international travel. Understanding this dynamic is essential for ensuring that all passengers are adequately prepared for their journey. [Data: Relationships (128)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n105,CHECK-IN COUNTERS,\"Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.\",5\r\n317,PASSENGERS,Individuals traveling on flights who must check in at the counters regardless of luggage.,2\r\n318,SECURITY CHECK AREAS,,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n65,SERVICE DOG,CHECK-IN COUNTERS,Passengers must present their documentation for traveling with a service dog at the check-in counters.,21\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n215,CHECK-IN COUNTERS,PASSENGERS,Passengers must check in at the counters regardless of luggage,7\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n216,CHECK-IN COUNTERS,SECURITY CHECK AREAS,Passengers must proceed to security check areas after checking in at the counters,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-0bad155fe9c1a12696915158dd25765a b/cache/community_reporting/create_community_report-chat-v2-0bad155fe9c1a12696915158dd25765a deleted file mode 100644 index 9bd25d13628c1f165900166994d0cbcc77dc1656..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-0bad155fe9c1a12696915158dd25765a +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Service Dog Transportation Community\",\n \"summary\": \"The community focuses on the transportation of service dogs, highlighting the relationships between service dogs, airline policies, and regulations in various countries. Key entities include airlines, specific regulations, and requirements for passengers traveling with service dogs, ensuring compliance and safety during air travel.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of compliance with regulations for the safe transport of service dogs, which affects passengers with disabilities.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's policies on service dog transportation\",\n \"explanation\": \"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets. This highlights the importance of airline policies in facilitating the travel of passengers with disabilities and ensuring their service dogs can accompany them without additional burdens. [Data: Relationships (5)]\"\n },\n {\n \"summary\": \"Regulatory requirements in Israel\",\n \"explanation\": \"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers. This includes documentation and compliance with local regulations, emphasizing the need for passengers to be aware of the legal framework governing service dog transport in different countries. Such regulations are crucial for ensuring that service dogs can travel safely and legally, which directly impacts the ability of passengers with disabilities to travel. [Data: Relationships (59)]\"\n },\n {\n \"summary\": \"Passenger cabin access for service dogs\",\n \"explanation\": \"Service dogs are allowed in the passenger cabin at no additional cost under certain conditions. This access is vital for passengers who rely on these animals for assistance, as it ensures they can travel comfortably and safely. The conditions under which service dogs can accompany their handlers in the cabin are essential for maintaining the rights of passengers with disabilities and ensuring their needs are met during air travel. [Data: Relationships (53)]\"\n },\n {\n \"summary\": \"Documentation requirements at check-in\",\n \"explanation\": \"Passengers must present their documentation for traveling with a service dog at the check-in counters. This requirement is critical for compliance with airline policies and regulations, ensuring that all necessary information is verified before boarding. The documentation process is a key aspect of the travel experience for passengers with service dogs, as it helps to prevent misunderstandings and ensures that all parties are aware of the regulations governing service dog transport. [Data: Relationships (65)]\"\n },\n {\n \"summary\": \"Importance of veterinary certificates\",\n \"explanation\": \"A veterinary certificate is essential for transporting service dogs, certifying that the dog is vaccinated and capable of maintaining sanitary conditions during transport. This requirement is crucial for the health and safety of both the service dog and other passengers. Ensuring that service dogs meet health standards is a significant aspect of airline policies, as it helps to mitigate risks associated with animal transport and ensures compliance with regulations. [Data: Relationships (54)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n2,SERVICE DOG,\"A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.\",16\r\n34,CAGE,\"CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.\",2\r\n104,ADDITIONAL CHARGES,Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.,1\r\n103,FLIGHT DATE,\"The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.\",1\r\n102,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,1\r\n98,HEATHROW AIRPORT,Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.,1\r\n93,I.D.F SOLDIER,I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.,1\r\n101,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,1\r\n106,SANITARY CONDITIONS,\"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.\",1\r\n87,VETERINARY CERTIFICATE,A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.,1\r\n94,SHELL SHOCK,Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n5,EL AL,SERVICE DOG,\"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.\",65\r\n59,SERVICE DOG,ISRAEL,\"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.\",25\r\n53,SERVICE DOG,PASSENGER CABIN,Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.,21\r\n65,SERVICE DOG,CHECK-IN COUNTERS,Passengers must present their documentation for traveling with a service dog at the check-in counters.,21\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n60,SERVICE DOG,CAGE,A cage is required for the transport of a service dog to ensure its safety and comfort during the flight.,18\r\n58,SERVICE DOG,UNITED STATES,\"The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.\",18\r\n64,SERVICE DOG,ADDITIONAL CHARGES,Additional charges may apply for the inspection and release of a service dog at airport facilities in the United States.,17\r\n63,SERVICE DOG,FLIGHT DATE,The flight date is crucial for passengers traveling with a service dog to ensure compliance with registration and documentation requirements.,17\r\n62,SERVICE DOG,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,17\r\n57,SERVICE DOG,HEATHROW AIRPORT,Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.,17\r\n55,SERVICE DOG,I.D.F SOLDIER,I.D.F soldiers may transport service dogs at no additional cost under specific conditions.,17\r\n61,SERVICE DOG,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,17\r\n67,SERVICE DOG,SANITARY CONDITIONS,\"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.\",17\r\n54,SERVICE DOG,VETERINARY CERTIFICATE,\"A service dog must possess a veterinary certificate, which is essential to confirm that the dog is vaccinated and fit for travel. This certificate is a requirement for the transport of service dogs, ensuring their health and safety during travel.\",17\r\n56,SERVICE DOG,SHELL SHOCK,Passengers experiencing shell shock may qualify to transport service dogs at no additional cost.,17\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-105f8a146b6356227cece96122decc85 b/cache/community_reporting/create_community_report-chat-v2-105f8a146b6356227cece96122decc85 deleted file mode 100644 index e2445c5593035bc4a1f0b6b906a156b2914a34b1..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-105f8a146b6356227cece96122decc85 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Airline Baggage Policies and Sporting Equipment Transport\",\n \"summary\": \"This community encompasses various entities related to airline baggage policies, specifically focusing on carry-on and checked baggage allowances, as well as the transport of sporting equipment. Key entities include EL AL, Sundor, and different travel classes, which are interconnected through their baggage regulations and services.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the complexities and potential issues surrounding baggage transport, particularly for sporting equipment, which can lead to additional fees and logistical challenges.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's comprehensive baggage policies\",\n \"explanation\": \"EL AL has established specific policies regarding carry-on and checked baggage, which are crucial for passengers to understand their allowances. For instance, business class passengers are allowed to check up to two pieces of baggage weighing up to 32 kg each, while premium class passengers can check two pieces weighing up to 23 kg each. These policies are essential for ensuring compliance and avoiding additional fees during travel [Data: Relationships (37, 36)].\"\n },\n {\n \"summary\": \"Sundor's alignment with baggage regulations\",\n \"explanation\": \"Sundor shares similar baggage policies with EL AL, particularly concerning checked baggage allowances and fees. This alignment indicates a broader industry standard that passengers can expect when traveling with these airlines. Understanding these policies is vital for travelers, especially those transporting sporting equipment, as they may face different weight and size restrictions [Data: Relationships (35, 109)].\"\n },\n {\n \"summary\": \"Importance of weight and dimensions in baggage transport\",\n \"explanation\": \"Weight and dimensions are critical factors in determining baggage eligibility for transport. For example, sporting equipment must adhere to specific weight limits, such as 30 kg for Economy Class and 32 kg for Business Class. Additionally, the maximum dimension limit for sporting equipment is set at 190 cm for Economy and Premium Class, which is essential for ensuring that items can be transported without incurring extra fees [Data: Relationships (306, 313, 301)].\"\n },\n {\n \"summary\": \"Overweight and oversized baggage considerations\",\n \"explanation\": \"Passengers must be aware of the implications of overweight and oversized baggage, which require special handling and may incur additional fees. For instance, sporting equipment exceeding the standard weight limits can be classified as overweight baggage, leading to extra charges. Understanding these classifications is crucial for travelers to avoid unexpected costs [Data: Relationships (304, 321)].\"\n },\n {\n \"summary\": \"Cargo services for sporting equipment\",\n \"explanation\": \"The EL AL Cargo Division provides specialized services for transporting sporting equipment that exceeds standard baggage limits. This service is particularly beneficial for athletes and sports enthusiasts who need to transport larger or heavier gear. By utilizing cargo services, passengers can ensure their equipment is handled appropriately and transported safely [Data: Relationships (299, 155)].\"\n },\n {\n \"summary\": \"Impact of frequent flyer status on baggage allowances\",\n \"explanation\": \"Membership in the Matmid Frequent Flyer Club can influence carry-on baggage allowances, potentially providing enhanced privileges for members. This aspect of airline travel highlights the importance of loyalty programs in shaping the travel experience, particularly regarding baggage policies [Data: Relationships (369)].\"\n },\n {\n \"summary\": \"Role of booking management in baggage policies\",\n \"explanation\": \"Booking management systems play a crucial role in informing passengers about their carry-on baggage allowances and policies. By providing access to this information, airlines can facilitate a smoother travel experience and help passengers avoid issues related to baggage compliance [Data: Relationships (373)].\"\n },\n {\n \"summary\": \"Differentiation of Economy Class fare types\",\n \"explanation\": \"Economy Class includes various fare types, such as Lite Fares, which impose restrictions on the transport of sporting equipment. Understanding these distinctions is essential for travelers to ensure they select the appropriate fare that meets their baggage needs [Data: Relationships (309, 307)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n267,CARRY-ON BAGGAGE,Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.,17\r\n165,BUSINESS CLASS,\"Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.\",5\r\n329,SUNDOR,Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.,5\r\n164,PREMIUM CLASS,\"Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.\",4\r\n162,SPORTING EQUIPMENT,\"Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.\",14\r\n35,WEIGHT,\"Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.\",6\r\n38,CARGO,\"CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.\",4\r\n173,277 CM,\"The entity \"\"277 CM\"\" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.\",3\r\n167,EL AL CARGO DIVISION,\"The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.\",2\r\n163,ECONOMY CLASS,\"Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.\",7\r\n169,OVERWEIGHT BAGGAGE,\"Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline's specified weight restrictions.\",8\r\n166,DIMENSIONS,\"Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.\",4\r\n277,CHECKED LUGGAGE,,2\r\n273,BOOKING MANAGEMENT,Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.,1\r\n268,PERSONAL BAGS,\"Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.\",1\r\n269,SUN DOR,Sun Dor is an airline that operates flights with specific carry-on baggage policies.,1\r\n270,MATMID FREQUENT FLYER CLUB,\"The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.\",1\r\n271,TROLLEY,\"A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.\",1\r\n272,FLIGHT TICKET TERMS,Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.,1\r\n274,OVERHEAD COMPARTMENTS,\"Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.\",1\r\n276,NORTH AMERICA,\"North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.\",1\r\n290,MAXIMUM DIMENSIONS,Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.,1\r\n181,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America.,2\r\n174,190 CM,190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.,1\r\n170,ADDITIONAL SPORTS EQUIPMENT,Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.,1\r\n328,OVERSIZED BAGGAGE,Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.,4\r\n172,30 KG,\"The entity \"\"30 KG\"\" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.\",2\r\n168,CALL CENTER,The call center is a service location where passengers can contact for approval regarding overweight baggage.,1\r\n178,CALL CENTER APPROVAL,\"Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.\",1\r\n171,32 KG,\"The entity \"\"32 KG\"\" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.\",2\r\n175,LITE FARES,\"LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.\",1\r\n275,BAGGAGE CONVEYOR BELT,The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline's size and weight requirements,39\r\n142,WEIGHT,ANIMAL,\"The weight of the animal determines the mode of transport, affecting whether it travels in the cabin or as cargo.\",35\r\n153,CARGO,ANIMAL,\"Animals can be transported as cargo, which is a specific route type for shipping them in the aircraft hold.\",33\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,\"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.\",27\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,\"The entity \"\"WEIGHT\"\" is a crucial factor in determining the eligibility of \"\"CARRY-ON BAGGAGE.\"\" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.\",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n304,SPORTING EQUIPMENT,OVERWEIGHT BAGGAGE,\"Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees\",22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n316,DIMENSIONS,CARRY-ON BAGGAGE,DIMENSIONS play a critical role in determining the eligibility of CARRY-ON BAGGAGE for boarding. They are a key factor that airlines consider when assessing whether a piece of baggage meets the requirements for carry-on status.,21\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,\"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.\",21\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n143,WEIGHT,SPORTING EQUIPMENT,\"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.\",20\r\n297,SPORTING EQUIPMENT,BUSINESS CLASS,\"Business Class provides the option for transporting sporting equipment, adhering to specific size and weight conditions that differ from those in Economy and Premium Class. This class has distinct weight limits for sporting equipment, allowing for a more accommodating experience for travelers with such items.\",19\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,\"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.\",19\r\n373,CARRY-ON BAGGAGE,BOOKING MANAGEMENT,\"Booking management provides passengers with the ability to check their carry-on baggage allowances and policies, as well as manage their bookings. This functionality ensures that travelers are informed about the specific regulations regarding their carry-on items, facilitating a smoother travel experience.\",18\r\n155,CARGO,SPORTING EQUIPMENT,\"CARGO provides services for transporting sporting equipment that exceeds standard baggage limits. Specifically, sporting equipment can be transported as cargo when it surpasses the standard baggage allowance, ensuring that athletes and sports enthusiasts can travel with their necessary gear without restrictions.\",18\r\n367,CARRY-ON BAGGAGE,PERSONAL BAGS,\"CARRY-ON BAGGAGE and PERSONAL BAGS are closely related concepts in air travel. Personal bags are classified as a type of carry-on baggage, specifically designed to be stored under the seat in front of the passenger. This allows for easy access during the flight while adhering to airline regulations regarding carry-on items.\",18\r\n368,CARRY-ON BAGGAGE,SUN DOR,Sun Dor has specific policies regarding carry-on baggage for its flights.,18\r\n369,CARRY-ON BAGGAGE,MATMID FREQUENT FLYER CLUB,\"The Matmid Frequent Flyer Club status has a significant impact on the eligibility for carry-on baggage for passengers. Membership in the Matmid Frequent Flyer Club influences the rules and allowances regarding carry-on baggage, suggesting that those who are members may have different or enhanced privileges compared to non-members.\",18\r\n371,CARRY-ON BAGGAGE,TROLLEY,A trolley is a specific type of carry-on baggage that passengers can bring into the cabin and can be stored in overhead compartments.,18\r\n372,CARRY-ON BAGGAGE,FLIGHT TICKET TERMS,The flight ticket terms outline the policies and rules regarding carry-on baggage allowances applicable to passengers. These terms provide essential information that helps travelers understand the specific regulations governing the amount and type of carry-on baggage they are permitted to bring on board.,18\r\n374,CARRY-ON BAGGAGE,OVERHEAD COMPARTMENTS,Overhead compartments are designated storage areas for carry-on baggage during the flight.,18\r\n375,CARRY-ON BAGGAGE,NORTH AMERICA,\"CARRY-ON BAGGAGE policies are specifically applicable to flights from and to NORTH AMERICA. These policies outline the regulations and restrictions regarding the size, weight, and number of carry-on items that passengers are allowed to bring on board.\",18\r\n376,CARRY-ON BAGGAGE,MAXIMUM DIMENSIONS,Maximum dimensions are critical for determining what carry-on baggage is allowed,18\r\n298,SPORTING EQUIPMENT,DIMENSIONS,Sporting equipment is subject to specific dimensions that are critical for determining whether it can be transported as checked baggage. These dimensions play a vital role in ensuring that the equipment meets airline regulations and can be safely accommodated during travel.,18\r\n296,SPORTING EQUIPMENT,PREMIUM CLASS,\"Premium Class provides the option for transporting sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that customers can carry their sporting gear while complying with the established size and weight restrictions.\",18\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n303,SPORTING EQUIPMENT,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America,16\r\n299,SPORTING EQUIPMENT,EL AL CARGO DIVISION,\"The EL AL Cargo Division offers a specialized service for transporting sporting equipment that exceeds standard baggage limits and allowances. This division provides an alternative solution for individuals and organizations needing to transport larger or heavier sporting gear, ensuring that such items can be shipped efficiently and effectively.\",16\r\n302,SPORTING EQUIPMENT,70 USD,\"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco\",16\r\n301,SPORTING EQUIPMENT,190 CM,\"190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.\",15\r\n300,SPORTING EQUIPMENT,ADDITIONAL SPORTS EQUIPMENT,\"Sporting equipment encompasses a variety of gear used for various sports activities. Within this category, additional sports equipment specifically refers to any extra gear that necessitates special handling or can be transported beyond the standard baggage allowance. This includes items that exceed the typical limits set for standard baggage, ensuring that athletes and sports enthusiasts can carry the necessary equipment for their activities without restrictions.\",15\r\n147,WEIGHT,OVERWEIGHT BAGGAGE,Overweight baggage is defined by exceeding the weight limit set by the airline,14\r\n322,OVERWEIGHT BAGGAGE,SUNDOR,Sundor has specific guidelines for handling overweight baggage,13\r\n321,OVERWEIGHT BAGGAGE,OVERSIZED BAGGAGE,\"OVERWEIGHT BAGGAGE and OVERSIZED BAGGAGE both necessitate special handling due to their size and weight. Additionally, travelers should be aware that both types of baggage may incur additional fees.\",12\r\n319,OVERWEIGHT BAGGAGE,277 CM,\"277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.\",11\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n306,ECONOMY CLASS,30 KG,\"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.\",9\r\n318,CALL CENTER,OVERWEIGHT BAGGAGE,\"The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.\",9\r\n320,OVERWEIGHT BAGGAGE,CALL CENTER APPROVAL,\"Call center approval is necessary for transporting overweight baggage, ensuring compliance with airline policies.\",9\r\n154,CARGO,BEN GURION AIRPORT,\"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport\",9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n402,OVERSIZED BAGGAGE,SUNDOR,Sundor has specific guidelines for handling oversized baggage,9\r\n144,WEIGHT,30 KG,30 kg is the maximum weight limit for sports equipment in Economy Class,8\r\n145,WEIGHT,32 KG,32 kg is the maximum weight limit for sports equipment in Business Class,8\r\n317,DIMENSIONS,OVERSIZED BAGGAGE,Oversized baggage is defined by exceeding authorized dimensions,8\r\n307,ECONOMY CLASS,LITE FARES,\"The Economy Class includes a category known as Lite Fares, which are characterized by certain restrictions and limited services. Specifically, Lite Fares impose limitations on the transport of sporting equipment, differentiating them from standard Economy Class offerings. These fares are designed to provide a more economical option for travelers while offering fewer amenities compared to regular Economy Class fares.\",8\r\n315,DIMENSIONS,277 CM,277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage,7\r\n313,BUSINESS CLASS,32 KG,\"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.\",7\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n328,150 USD,US DOLLARS,\"150 USD is expressed in US Dollars, which is the currency for baggage fees\",6\r\n378,BAGGAGE CONVEYOR BELT,CHECKED LUGGAGE,The baggage conveyor belt is where checked luggage is retrieved after a flight.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-127f9dd3959a72050502377f6642c727 b/cache/community_reporting/create_community_report-chat-v2-127f9dd3959a72050502377f6642c727 deleted file mode 100644 index 09ad3216bb61182350422a81d7790af20e916277..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-127f9dd3959a72050502377f6642c727 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Ben Gurion Airport and Animal Transport Community\",\n \"summary\": \"The community centers around Ben Gurion Airport, which serves as the primary hub for animal transport in Israel, particularly through EL AL Israel Airlines and the Veterinary Services that manage the authorization process for transporting pets. The interconnections among these entities highlight the regulatory and operational framework governing animal transport.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical role of these entities in ensuring safe and compliant animal transport, which can have significant implications for public health and safety.\",\n \"findings\": [\n {\n \"summary\": \"Ben Gurion Airport as a central hub for animal transport\",\n \"explanation\": \"Ben Gurion Airport is the main international airport in Israel and plays a crucial role in the transport of animals, particularly pets. It serves as the primary location where animals are released after transport, making it a key entity in the community. The airport's operations are closely linked with EL AL Israel Airlines and the Veterinary Services, which oversee the necessary regulations for animal transport. This centrality means that any issues at the airport could have widespread implications for animal welfare and compliance with transport regulations. [Data: Entities (54), Relationships (19, 131, 184)]\"\n },\n {\n \"summary\": \"Role of EL AL Israel Airlines in animal transport\",\n \"explanation\": \"EL AL Israel Airlines Ltd. is a significant player in this community, operating flights that include the transport of animals. The airline is responsible for managing baggage claims, which includes pets, and ensuring that animals are released at Ben Gurion Airport. The relationship between EL AL and the airport is vital for understanding how animal transport is facilitated, and any operational disruptions could impact the safe transport of animals. [Data: Entities (205), Relationships (19, 184)]\"\n },\n {\n \"summary\": \"Veterinary Services' regulatory oversight\",\n \"explanation\": \"The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes issuing flight permits and ensuring compliance with health regulations. Their role is critical in maintaining the safety and welfare of animals during transport, and any lapses in this process could lead to significant public health concerns. The Veterinary Services' relationship with Ben Gurion Airport underscores their importance in the community. [Data: Entities (18), Relationships (131, 4)]\"\n },\n {\n \"summary\": \"Authorization process for animal transport\",\n \"explanation\": \"The authorization process is a key component of the community, involving obtaining necessary permits and performing animal tests before transport. This process is managed by the Veterinary Services to ensure compliance with regulations. The effectiveness of this process directly impacts the safety and legality of animal transport, making it a critical area of focus for stakeholders involved in this community. [Data: Entities (20), Relationships (130)]\"\n },\n {\n \"summary\": \"Interconnectedness of entities\",\n \"explanation\": \"The relationships among Ben Gurion Airport, EL AL Israel Airlines, and Veterinary Services illustrate a complex network of interdependencies that are essential for the smooth operation of animal transport. Each entity plays a specific role that contributes to the overall functionality of the community, and disruptions in one area can have cascading effects on the others. Understanding these relationships is crucial for stakeholders to navigate potential challenges in animal transport. [Data: Relationships (19, 131, 184)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n54,BEN GURION AIRPORT,\"Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.\",5\r\n205,EL AL ISRAEL AIRLINES LTD.,EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.,2\r\n18,VETERINARY SERVICES,\"The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.\",4\r\n20,AUTHORIZATION PROCESS,The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n183,BEN GURION AIRPORT,BAGGAGE,\"Baggage, including pets, is released at Ben Gurion Airport's arrivals hall\",26\r\n235,BAGGAGE CLAIMS DEPARTMENT,EL AL ISRAEL AIRLINES LTD.,The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.,18\r\n131,VETERINARY SERVICES,BEN GURION AIRPORT,Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport,9\r\n154,CARGO,BEN GURION AIRPORT,\"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport\",9\r\n132,VETERINARY SERVICES,DOCUMENTS,Veterinary Services requires specific documents for animal transport authorization,9\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n184,BEN GURION AIRPORT,EL AL ISRAEL AIRLINES LTD.,\"EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.\",7\r\n130,VETERINARY SERVICES,AUTHORIZATION PROCESS,The authorization process is managed by the Veterinary Services to ensure compliance with regulations,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-13d7baaedde4c611b35c514c75eacb3c b/cache/community_reporting/create_community_report-chat-v2-13d7baaedde4c611b35c514c75eacb3c deleted file mode 100644 index 8be0ed2478829a222ac2b46ff5311ceb98ae8911..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-13d7baaedde4c611b35c514c75eacb3c +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Airline Passenger Community\",\n \"summary\": \"The community centers around passengers traveling with EL AL, an airline that has specific policies regarding baggage, additional services, and the transport of pets. The relationships among passengers, the airline, and destination countries highlight the regulatory framework governing air travel.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the complexities of compliance with airline policies and destination regulations, which can significantly affect passenger experience.\",\n \"findings\": [\n {\n \"summary\": \"Passengers' responsibilities and regulations\",\n \"explanation\": \"Passengers traveling with EL AL must adhere to specific regulations regarding baggage and the transport of pets, particularly dogs. These regulations ensure a standardized travel experience and compliance with airline policies. For instance, passengers are responsible for their dog's behavior and must meet certain conditions for its transport, which includes providing necessary documentation [Data: Entities (107, 109); Relationships (22, 212, 218)].\"\n },\n {\n \"summary\": \"Airline policies on baggage and additional services\",\n \"explanation\": \"The airline has established specific policies regarding checked baggage, including size and weight limits, which passengers must comply with. Additionally, passengers have the option to order additional services, which may incur extra charges. This creates a structured environment for air travel but also places the onus on passengers to understand and follow these policies [Data: Entities (184, 381); Relationships (89, 221, 220)].\"\n },\n {\n \"summary\": \"Destination country regulations\",\n \"explanation\": \"Passengers must also comply with the regulations of their destination country, which may include restrictions on certain types of equipment and guidelines for admitting passenger equipment. This adds another layer of complexity to the travel process, as failure to comply can result in denied entry or additional charges [Data: Entities (195); Relationships (219, 337)].\"\n },\n {\n \"summary\": \"Financial implications of additional services\",\n \"explanation\": \"Ordering additional services incurs a full charge to the passenger, which can impact the overall cost of travel. This fee structure is important for passengers to consider when planning their travel, as it can significantly affect their budget [Data: Entities (384); Relationships (423)].\"\n },\n {\n \"summary\": \"The role of forms in pet transport\",\n \"explanation\": \"Passengers wishing to transport a dog on EL AL flights must provide specific forms, which are necessary for compliance with airline policies. This requirement emphasizes the importance of documentation in ensuring a smooth travel experience for pet owners [Data: Entities (109); Relationships (218)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n107,PASSENGER,\"The term \"\"PASSENGER\"\" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline's baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline's policies regarding baggage and services, ensuring a standardized travel experience.\",7\r\n184,AIRLINE,\"An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.\",2\r\n381,ADDITIONAL SERVICES,\"Refers to extra services that can be ordered by passengers, which may incur additional charges.\",2\r\n195,DESTINATION COUNTRY,\"The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.\",2\r\n109,FORMS,Necessary documentation that passengers must provide to transport a dog on EL AL flights.,1\r\n112,HOLD,,1\r\n384,FULL CHARGE,Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n89,CHECKED BAGGAGE,AIRLINE,\"Airlines have specific policies regarding checked baggage, including size and weight limits\",27\r\n212,DOG,PASSENGER,The passenger is responsible for the dog's behavior and must meet conditions for its transport,12\r\n221,PASSENGER,ADDITIONAL SERVICES,\"Passengers can order additional services, which may incur charges\",9\r\n220,PASSENGER,AIRLINE,Passengers are subject to the policies of the airline regarding baggage and additional services,9\r\n219,PASSENGER,DESTINATION COUNTRY,Passengers must comply with the regulations of the destination country regarding baggage,9\r\n218,PASSENGER,FORMS,Passengers must provide the required forms to transport a dog on EL AL flights,8\r\n217,PASSENGER,HOLD,\"If the dog cannot be transported in the passenger cabin, it may be placed in the hold\",8\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n423,ADDITIONAL SERVICES,FULL CHARGE,Ordering additional services will result in a full charge to the passenger,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-158753ed43d6733fc22808fcba82925e b/cache/community_reporting/create_community_report-chat-v2-158753ed43d6733fc22808fcba82925e deleted file mode 100644 index eb332e296ab2e2ecbbf5338e5c98c1030182a2da..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-158753ed43d6733fc22808fcba82925e +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"CDC and Dog Transportation Regulations\",\n \"summary\": \"The community focuses on the regulations established by the CDC regarding the transportation of dogs to the United States, highlighting the relationships between the CDC, the United States, and various entities involved in dog transport, including EL AL and Israel.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential health risks associated with transporting dogs, especially from high-risk countries.\",\n \"findings\": [\n {\n \"summary\": \"CDC's role in dog transportation regulations\",\n \"explanation\": \"The CDC establishes critical regulations and guidelines for the transportation of dogs to the United States, ensuring public health and safety. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's regulations are designed to mitigate risks associated with the introduction of diseases through animal transport, which is particularly important in the context of global travel and trade. [Data: Entities (42); Relationships (179)]\"\n },\n {\n \"summary\": \"United States regulations for service dogs\",\n \"explanation\": \"The United States has specific regulations regarding the transportation of service dogs, which may vary by destination. These regulations include additional forms and requirements that must be followed to ensure the safe and legal transport of service animals. This highlights the complexity of dog transportation laws and the need for compliance by travelers and transporters alike. [Data: Entities (99); Relationships (58)]\"\n },\n {\n \"summary\": \"EL AL's compliance with CDC regulations\",\n \"explanation\": \"EL AL, an airline, is required to comply with CDC regulations for transporting dogs to the United States. This relationship underscores the importance of airline adherence to health guidelines, as non-compliance could lead to public health risks and legal repercussions. The airline's role is crucial in ensuring that all transported animals meet the necessary health standards set forth by the CDC. [Data: Relationships (16)]\"\n },\n {\n \"summary\": \"Israel's classification as a high-risk country\",\n \"explanation\": \"Israel is classified as a high-risk country by the CDC for transporting dogs, which necessitates stricter compliance with health regulations. This classification impacts how dogs are transported from Israel to the United States, requiring additional scrutiny and documentation to prevent the spread of diseases. The implications of this classification are significant for travelers and transporters, as it may affect their ability to bring dogs into the U.S. [Data: Relationships (124)]\"\n },\n {\n \"summary\": \"Interconnectedness of entities in dog transportation\",\n \"explanation\": \"The relationships between the CDC, the United States, EL AL, and Israel illustrate a complex network of regulations and compliance requirements in dog transportation. Each entity plays a vital role in ensuring that health standards are met, and their interconnectedness highlights the importance of collaboration in public health efforts. This network is essential for maintaining the safety of both animals and the public during the transportation process. [Data: Relationships (16, 58, 124, 179)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n42,CDC,The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.,3\r\n99,UNITED STATES,\"The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.\",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n58,SERVICE DOG,UNITED STATES,\"The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.\",18\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n179,CDC,UNITED STATES,\"The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.\",5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-1a50f7572e4aef3b64206442fcf146dd b/cache/community_reporting/create_community_report-chat-v2-1a50f7572e4aef3b64206442fcf146dd deleted file mode 100644 index 3573bc59e27a4ad490b58d350fd4b98aeffef770..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-1a50f7572e4aef3b64206442fcf146dd +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Service Community\",\n \"summary\": \"The Baggage Service Community is centered around the Baggage Service Center, which manages various aspects of baggage handling, including delayed and damaged baggage, forgotten items, and the claims process. The community's entities are interconnected, with the Baggage Service Center serving as the primary hub for assistance and coordination among various processes and departments.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of baggage handling in travel, which directly affects passenger satisfaction and operational efficiency.\",\n \"findings\": [\n {\n \"summary\": \"Central role of the Baggage Service Center\",\n \"explanation\": \"The Baggage Service Center is the focal point of the community, responsible for managing issues related to baggage, including delays, damages, and forgotten items. This center plays a crucial role in ensuring that travelers receive timely assistance and support for their baggage-related concerns. The effectiveness of the Baggage Service Center directly impacts passenger experiences and the overall reputation of the airline or travel service involved. [Data: Entities (113), Relationships (223, 228, 227, 225, 226, +more)]\"\n },\n {\n \"summary\": \"Importance of contact details for assistance\",\n \"explanation\": \"The contact details associated with the Baggage Service Center are essential for travelers seeking help with baggage issues. These details provide necessary information, such as phone numbers and chat options, enabling passengers to report problems efficiently. The availability and clarity of these contact details can significantly influence the speed and effectiveness of the response to baggage-related concerns. [Data: Entities (118), Relationships (233)]\"\n },\n {\n \"summary\": \"Baggage claims process as a critical function\",\n \"explanation\": \"The baggage claims process is a vital function within the community, allowing passengers to report and seek compensation for lost or damaged baggage. The Baggage Service Center facilitates this process, ensuring that travelers can navigate the claims efficiently. A well-structured claims process is essential for maintaining customer trust and satisfaction, especially in the travel industry where baggage issues are common. [Data: Entities (123, 127), Relationships (228, 231)]\"\n },\n {\n \"summary\": \"Handling of delayed baggage\",\n \"explanation\": \"Delayed baggage is a frequent issue faced by travelers, and the Baggage Service Center is responsible for managing reports related to this problem. The center's ability to address delayed baggage effectively can mitigate passenger frustration and enhance their travel experience. This aspect of baggage handling is critical, as it directly affects the perception of the airline's reliability and customer service. [Data: Entities (122), Relationships (223, 227)]\"\n },\n {\n \"summary\": \"Support for damaged baggage claims\",\n \"explanation\": \"The Baggage Service Center also plays a significant role in assisting travelers with claims related to damaged baggage. By effectively managing these claims, the center ensures that passengers receive the necessary support and compensation for their losses. This function is crucial for maintaining a positive relationship with customers and upholding the airline's reputation in the face of baggage mishaps. [Data: Entities (128), Relationships (225)]\"\n },\n {\n \"summary\": \"Recovery of forgotten items\",\n \"explanation\": \"The Baggage Service Center is dedicated to helping passengers recover items that have been forgotten on board aircraft. This service is essential for enhancing customer satisfaction, as forgotten items can often hold significant personal value. The center's efficiency in managing these cases reflects its commitment to passenger care and can influence travelers' future choices regarding airlines. [Data: Entities (121), Relationships (226)]\"\n },\n {\n \"summary\": \"Coordination with the Claims Department\",\n \"explanation\": \"The Baggage Service Center coordinates closely with the Claims Department to process claims related to baggage issues. This collaboration is vital for ensuring that claims are handled promptly and accurately, which is essential for maintaining passenger trust. The effectiveness of this coordination can significantly impact the overall efficiency of the baggage claims process. [Data: Entities (202), Relationships (232)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n113,BAGGAGE SERVICE CENTER,\"The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.\",13\r\n118,CONTACT DETAILS,\"The \"\"CONTACT DETAILS\"\" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.\",2\r\n123,BAGGAGE CLAIM,Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.,1\r\n127,BAGGAGE CLAIMS PROCESS,The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.,1\r\n122,BAGGAGE DELAY,Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.,1\r\n124,BAGGAGE HANDLING,Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.,1\r\n125,BAGGAGE REPORTING,\"Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.\",1\r\n128,DAMAGED BAGGAGE,,1\r\n121,FORGOTTEN ITEM,\"The \"\"FORGOTTEN ITEM\"\" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.\",1\r\n202,CLAIMS DEPARTMENT,The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n233,BAGGAGE SERVICE CENTER,CONTACT DETAILS,Contact details provide necessary information for reaching the Baggage Service Center for assistance,15\r\n228,BAGGAGE SERVICE CENTER,BAGGAGE CLAIM,The Baggage Service Center facilitates the baggage claim process for passengers,14\r\n231,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS PROCESS,The Baggage Service Center follows the baggage claims process to assist passengers,14\r\n227,BAGGAGE SERVICE CENTER,BAGGAGE DELAY,The Baggage Service Center is responsible for managing reports of baggage delays,14\r\n229,BAGGAGE SERVICE CENTER,BAGGAGE HANDLING,Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage,14\r\n230,BAGGAGE SERVICE CENTER,BAGGAGE REPORTING,Passengers report baggage issues to the Baggage Service Center for resolution,14\r\n225,BAGGAGE SERVICE CENTER,DAMAGED BAGGAGE,\"The Baggage Service Center is dedicated to assisting travelers with claims related to damaged baggage. It effectively handles cases of damaged baggage reported by passengers, ensuring that their concerns are addressed and resolved in a timely manner.\",14\r\n226,BAGGAGE SERVICE CENTER,FORGOTTEN ITEM,\"The Baggage Service Center is dedicated to assisting passengers with items that have been forgotten on board. It plays a crucial role in helping recover these forgotten items, ensuring that travelers can retrieve their belongings efficiently.\",14\r\n232,BAGGAGE SERVICE CENTER,CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Claims Department to process claims related to baggage,14\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-1e6f91fda4733a2ca86520ff9e34254e b/cache/community_reporting/create_community_report-chat-v2-1e6f91fda4733a2ca86520ff9e34254e deleted file mode 100644 index 15f9262bca9267a7766d2772004d546c392360fb..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-1e6f91fda4733a2ca86520ff9e34254e +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Airline and Pet Transportation\",\n \"summary\": \"The community centers around EL AL, an airline with specific policies regarding baggage, pet transportation, and passenger services. Key entities include the Arrivals Hall, which facilitates pet retrieval, and various claims related to baggage policies and pet transport regulations. The relationships among these entities highlight the operational framework of EL AL in managing both passenger and pet travel.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the complexities and potential issues surrounding pet transportation and baggage handling, which can significantly affect customer satisfaction and operational efficiency.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's comprehensive baggage and pet transport policies\",\n \"explanation\": \"EL AL has established detailed regulations concerning baggage and the transportation of pets, which are crucial for ensuring compliance and customer satisfaction. The airline's policies cover various aspects, including weight limits for pets, specific guidelines for transporting service animals, and the handling of valuable items. For instance, pets can be transported in the cabin if they meet weight restrictions, while larger animals must be checked as baggage or handled by the Cargo Division. This structured approach helps mitigate risks associated with baggage issues and ensures that passengers are well-informed about their responsibilities [Data: Entities (1), Claims (2, 3, 4, 5, 11); Relationships (10, 15, 20)]\"\n },\n {\n \"summary\": \"The role of the Arrivals Hall in pet transportation\",\n \"explanation\": \"The Arrivals Hall at Ben Gurion Airport serves as a critical point for pet owners to retrieve their animals after travel. This designated area ensures that the process of reuniting with pets is organized and efficient, reflecting EL AL's commitment to customer service. The existence of a specific location for pet retrieval highlights the airline's focus on accommodating pet owners and managing the logistics of animal transport effectively [Data: Entities (11); Relationships (9)]\"\n },\n {\n \"summary\": \"Claims regarding baggage measurements and weight limits\",\n \"explanation\": \"EL AL has several claims related to baggage measurements and weight limits, emphasizing the airline's policies on transporting animals and the associated costs. For example, animals weighing up to 9 kg can be transported in the cabin for a fee, while larger animals incur higher costs and may require special handling. These claims are essential for passengers to understand the financial implications of traveling with pets and the airline's liability regarding baggage issues [Data: Claims (2, 3, 11); Relationships (8, 15)]\"\n },\n {\n \"summary\": \"Additional fees and discounts for baggage handling\",\n \"explanation\": \"EL AL implements additional handling fees and offers discounts for baggage checked through their service center. Passengers can benefit from a 50% discount on baggage fees if purchased online before their flight, which encourages early planning and can enhance customer satisfaction. These financial policies are crucial for managing passenger expectations and ensuring transparency in the airline's pricing structure [Data: Entities (353, 354); Relationships (41, 42, 38)]\"\n },\n {\n \"summary\": \"The importance of safety and security regulations\",\n \"explanation\": \"Safety and security regulations play a vital role in the transportation of animals on EL AL flights. The airline must adhere to these regulations to ensure the safety of all passengers and crew, particularly when transporting pets. Compliance with these regulations not only protects the animals but also enhances the overall travel experience for pet owners, reinforcing EL AL's reputation as a responsible airline [Data: Entities (108); Relationships (23)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n1,EL AL,\"EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline's liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.\",49\r\n11,ARRIVALS HALL,\"The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.\",2\r\n197,VALUABLE ITEM,\"Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.\",2\r\n199,EQUIPMENT,,2\r\n353,$5,An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.,1\r\n354,50% DISCOUNT,Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.,1\r\n348,ADDITIONAL HANDLING FEE,An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.,1\r\n100,ANIMAL AIR TRANSPORT COMPANIES,\"Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.\",1\r\n204,BAGGAGE ISSUES,\"Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.\",1\r\n10,CHECK-IN COUNTER,\"The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.\",1\r\n310,CHECK-IN PROCESS,\"The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight.\",1\r\n356,CHECKED BAGGAGE RULES,Checked baggage rules may vary when several airlines are involved in a flight route.,1\r\n364,CODESHARE FLIGHTS,Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.,1\r\n19,TRANSPORTATION,\"Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.\",1\r\n108,SAFETY AND SECURITY REGULATIONS,\"Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.\",1\r\n305,FLIGHT DESTINATION,\"The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.\",1\r\n351,MANAGE MY BOOKING,\"Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.\",1\r\n363,GOVERNMENT SERVICE TAX,A government service tax will be collected for air travel for flights originating in India.,1\r\n425,EMAIL NOTIFICATION,An email notification to the airline is required to inform them about the intention to travel with a mobility aid.,1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n2,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\r\n3,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.\"\r\n4,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"In certain instances (e.g. large animals), animals must be transported as checked baggage.\"\r\n5,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).\"\r\n11,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\r\n43,EL AL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\r\n47,EL AL,BAGGAGE POLICY,TRUE,\"The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.\"\r\n48,EL AL,BAGGAGE POLICY,TRUE,\"Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.\"\r\n49,EL AL,BAGGAGE POLICY,TRUE,\"The maximum size permitted for an infant’s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.\"\r\n50,EL AL,BAGGAGE POLICY,TRUE,EL AL reserves the right to change the excess baggage rates from time to time.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n10,EL AL,CARGO DIVISION,\"EL AL's Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.\",57\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n9,EL AL,ARRIVALS HALL,Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL,51\r\n26,EL AL,VALUABLE ITEM,EL AL does not bear responsibility for valuable items transported by the airline,51\r\n27,EL AL,EQUIPMENT,EL AL has guidelines regarding the transport of passenger equipment,51\r\n41,EL AL,$5,The additional handling fee of $5 is charged by EL AL for baggage checked through their service center,50\r\n42,EL AL,50% DISCOUNT,EL AL offers a 50% discount on baggage fees if purchased online before the flight,50\r\n38,EL AL,ADDITIONAL HANDLING FEE,EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center,50\r\n20,EL AL,ANIMAL AIR TRANSPORT COMPANIES,\"EL AL may recommend using specialized companies for the air transport of animals, including service dogs.\",50\r\n28,EL AL,BAGGAGE ISSUES,EL AL has policies in place to address various baggage issues encountered by travelers,50\r\n8,EL AL,CHECK-IN COUNTER,\"EL AL requires passengers to check in at their designated check-in counters for their flights. Additionally, pet owners must arrive at the check-in counter with their pets to make the necessary transportation arrangements for their travel on EL AL.\",50\r\n40,EL AL,CHECK-IN PROCESS,Passengers can add baggage during the check-in process for their EL AL flight,50\r\n43,EL AL,CHECKED BAGGAGE RULES,\"Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL's policies\",50\r\n46,EL AL,CODESHARE FLIGHTS,\"The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.\",50\r\n15,EL AL,TRANSPORTATION,\"EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo\",50\r\n23,EL AL,SAFETY AND SECURITY REGULATIONS,EL AL must adhere to safety and security regulations when transporting dogs,50\r\n33,EL AL,FLIGHT DESTINATION,Passengers must have necessary documents according to their flight destination when checking in with El Al,50\r\n39,EL AL,MANAGE MY BOOKING,Passengers can add baggage via the Manage my booking service provided by EL AL,50\r\n45,EL AL,GOVERNMENT SERVICE TAX,\"The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.\",50\r\n51,EL AL,EMAIL NOTIFICATION,An email notification is required to inform EL AL about traveling with a mobility aid,50\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-20db16812142a3c00a4d0950390d2a45 b/cache/community_reporting/create_community_report-chat-v2-20db16812142a3c00a4d0950390d2a45 deleted file mode 100644 index fc4f9d655d2a6b4e348e4deaa93b2e01c4cb5b84..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-20db16812142a3c00a4d0950390d2a45 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Policy and Standard Baggage Regulations\",\n \"summary\": \"The community focuses on the baggage policies of airlines, specifically highlighting the rules and regulations governing checked and carry-on baggage. Key entities include El Al and Sundor, which have specific baggage policies, and the definitions of standard baggage that comply with these regulations.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential implications of baggage policies on passenger experience and airline operations.\",\n \"findings\": [\n {\n \"summary\": \"El Al's specific baggage policy\",\n \"explanation\": \"El Al has established a specific baggage policy that outlines the rules for checked baggage. This policy is crucial for ensuring compliance with safety standards and managing passenger expectations. The relationship between El Al and the baggage policy indicates that the airline is actively involved in defining the parameters for what is permissible, which can significantly affect customer satisfaction and operational efficiency. [Data: Relationships (52)]\"\n },\n {\n \"summary\": \"Sundor's baggage policy\",\n \"explanation\": \"Similar to El Al, Sundor also has a specific baggage policy that dictates the rules for checked baggage. This indicates that different airlines may have varying regulations, which can lead to confusion among passengers if not clearly communicated. The relationship between Sundor and the baggage policy highlights the importance of these regulations in maintaining a smooth travel experience. [Data: Relationships (404)]\"\n },\n {\n \"summary\": \"Definition and importance of standard baggage\",\n \"explanation\": \"Standard baggage refers to luggage that meets the airline's specified size and weight requirements. This definition is critical as it helps passengers understand what they can carry without incurring additional fees. The relationship between standard baggage and the baggage policy emphasizes the need for clear guidelines to avoid misunderstandings and ensure compliance. [Data: Relationships (201, 418)]\"\n },\n {\n \"summary\": \"Baggage allowance determined by policy\",\n \"explanation\": \"The baggage allowance for passengers is determined by the baggage policy of the airline. This relationship is significant as it directly impacts the travel experience, influencing how much luggage a passenger can bring without incurring extra charges. Understanding this relationship is essential for both airlines and passengers to facilitate a smooth travel process. [Data: Relationships (413)]\"\n },\n {\n \"summary\": \"Interconnectedness of baggage policies\",\n \"explanation\": \"The relationships between various entities and the baggage policy illustrate the interconnectedness of airline regulations. Each airline's baggage policy not only affects its operations but also influences passenger behavior and expectations. This interconnectedness highlights the importance of consistent communication and enforcement of baggage regulations across the industry. [Data: Relationships (52, 404, 200)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n341,BAGGAGE POLICY,\"The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.\",5\r\n345,STANDARD BAGGAGE,\"Standard baggage refers to luggage that complies with the airline's specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.\",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline's size and weight requirements,23\r\n413,BAGGAGE ALLOWANCE,BAGGAGE POLICY,Baggage allowance is determined by the baggage policy of the airline,17\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n418,BAGGAGE POLICY,STANDARD BAGGAGE,Standard baggage must comply with the airline's baggage policy,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-262c299be59f441fbe378b5c8f7301fa b/cache/community_reporting/create_community_report-chat-v2-262c299be59f441fbe378b5c8f7301fa deleted file mode 100644 index e57ce91732872fed1ed3d43bd3a7d20f2a396c68..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-262c299be59f441fbe378b5c8f7301fa +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Mobility Aid and Flight Aid Services\",\n \"summary\": \"The community focuses on the provision of mobility aid services, particularly in the context of air travel. Key entities include EL AL, which provides services for passengers with mobility aids, and the broader category of flight aid that encompasses assistance for passengers with mobility challenges.\",\n \"rating\": 6.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the essential nature of mobility aid services for passengers with disabilities, which can significantly affect their travel experience.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's commitment to mobility aid services\",\n \"explanation\": \"EL AL plays a crucial role in this community by providing specialized services for passengers traveling with mobility aids. This commitment is vital for ensuring that individuals with mobility challenges can travel safely and comfortably. The relationship between EL AL and mobility aid services highlights the airline's dedication to inclusivity and accessibility in air travel. [Data: Entities (426); Relationships (50)]\"\n },\n {\n \"summary\": \"Integration of mobility aids in flight aid services\",\n \"explanation\": \"The concept of flight aid encompasses various forms of assistance provided to passengers with mobility challenges, including the transport of mobility aids. This integration is essential for ensuring that passengers can travel without facing barriers related to their mobility needs. The relationship between flight aid and mobility aid services underscores the importance of comprehensive support for travelers with disabilities. [Data: Entities (424, 426); Relationships (452)]\"\n },\n {\n \"summary\": \"Importance of accessibility in air travel\",\n \"explanation\": \"Accessibility in air travel is a significant concern for many passengers, particularly those with mobility challenges. The services provided by EL AL and the broader flight aid category are critical in addressing these concerns, ensuring that all passengers have equal access to air travel. This focus on accessibility can enhance the reputation of airlines and improve customer satisfaction among travelers with disabilities. [Data: Entities (424, 426); Relationships (50, 452)]\"\n },\n {\n \"summary\": \"Potential challenges in mobility aid services\",\n \"explanation\": \"While the provision of mobility aid services is essential, there can be challenges in ensuring that these services are consistently available and effective. Issues such as staff training, equipment availability, and communication with passengers can impact the quality of service provided. Addressing these challenges is crucial for maintaining high standards of care for passengers with mobility needs. [Data: Entities (426); Relationships (50)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n426,MOBILITY AID,,2\r\n424,FLIGHT AID,\"Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n50,EL AL,MOBILITY AID,EL AL provides services for passengers traveling with mobility aids,51\r\n452,FLIGHT AID,MOBILITY AID,Mobility aids are part of the flight aid services provided to assist passengers,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-28d1e4e2adf19ad5e8a5f44403e3b2bc b/cache/community_reporting/create_community_report-chat-v2-28d1e4e2adf19ad5e8a5f44403e3b2bc deleted file mode 100644 index a8a48978bc865e98552e0d1fecf978d28904666c..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-28d1e4e2adf19ad5e8a5f44403e3b2bc +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Lithium Battery Transport Regulations\",\n \"summary\": \"The community focuses on the regulations surrounding the transport of various types of batteries, including lithium metal and non-spillable wet batteries, particularly in the context of air travel. The entities are interconnected through specific guidelines that dictate how these batteries can be carried in carry-on baggage, ensuring safety and compliance with aviation standards.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential safety risks associated with improper handling and transport of lithium batteries.\",\n \"findings\": [\n {\n \"summary\": \"Carry-on baggage regulations for lithium batteries\",\n \"explanation\": \"Carry-on baggage regulations allow for the transport of lithium-ion batteries under specific watt-hour limits, which is crucial for ensuring passenger safety during air travel. These regulations are designed to mitigate the risks associated with lithium batteries, which can pose fire hazards if damaged or improperly handled. The guidelines specify that lithium-ion batteries must not exceed certain watt-hour ratings to be permitted in carry-on luggage, thus balancing convenience for travelers with safety measures. [Data: Entities (396); Relationships (430)]\"\n },\n {\n \"summary\": \"Non-spillable wet batteries and their transport\",\n \"explanation\": \"Non-spillable wet batteries are allowed in carry-on baggage if they meet specified voltage and watt-hour limits, making them a safer option for air travel. These batteries are designed to prevent leakage, which is a significant safety concern when transporting batteries on aircraft. The regulations stipulate that these batteries must not exceed 12 volts, ensuring compliance with safety standards while providing flexibility for users. This careful regulation helps to minimize the risk of battery-related incidents during flights. [Data: Entities (394); Relationships (438, 439)]\"\n },\n {\n \"summary\": \"Restrictions on lithium metal batteries\",\n \"explanation\": \"Lithium metal batteries can be brought aboard aircraft in carry-on baggage if they meet specific weight restrictions, which is essential for maintaining safety in air travel. These batteries are commonly used in smaller electronic devices, and their transport is regulated to prevent potential hazards. The regulations specify that consumer-grade lithium metal batteries must contain no more than 2 grams of lithium, which is a critical factor in reducing the risk of fire or explosion during transport. [Data: Entities (393); Relationships (436, 437)]\"\n },\n {\n \"summary\": \"Importance of strong outer packaging\",\n \"explanation\": \"Batteries must be packaged in strong outer packaging to prevent damage and leakage during transport, which is a key safety requirement. This regulation is particularly important for non-spillable wet batteries, as proper packaging can significantly reduce the risk of incidents during air travel. The requirement for strong outer packaging ensures that batteries are protected from physical damage, which could lead to dangerous situations if the batteries were to leak or short-circuit. [Data: Entities (403); Relationships (440)]\"\n },\n {\n \"summary\": \"Handling requirements for electronic devices\",\n \"explanation\": \"Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement that enhances safety. This regulation is in place to mitigate risks associated with lithium batteries that cannot be removed from the device, ensuring that any potential hazards are managed effectively. By requiring these devices to be stored in the hold, airlines can better control the environment and reduce the likelihood of incidents related to battery overheating or fire. [Data: Entities (385); Relationships (385)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n396,CARRY-ON,Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.,4\r\n394,NON-SPILLABLE WET BATTERIES,\"Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.\",3\r\n393,LITHIUM METAL BATTERIES,\"Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.\",2\r\n401,12 VOLTS,12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.,1\r\n403,STRONG OUTER PACKAGING,Batteries must be in strong outer packaging to prevent damage and leakage during transport.,1\r\n400,2 GRAMS,2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n430,LITHIUM-ION BATTERIES,CARRY-ON,Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits,11\r\n385,ELECTRONIC DEVICES,CARRY-ON,\"Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement\",8\r\n438,NON-SPILLABLE WET BATTERIES,CARRY-ON,Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits,7\r\n436,LITHIUM METAL BATTERIES,CARRY-ON,Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions,6\r\n439,NON-SPILLABLE WET BATTERIES,12 VOLTS,Non-spillable wet batteries must not exceed 12 volts for air travel,4\r\n440,NON-SPILLABLE WET BATTERIES,STRONG OUTER PACKAGING,Non-spillable wet batteries must be packaged in strong outer packaging to prevent leakage,4\r\n437,LITHIUM METAL BATTERIES,2 GRAMS,Consumer-grade lithium metal batteries must contain no more than 2 grams of lithium,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-2a748fa811d3fa60742e9f3d7b719fd0 b/cache/community_reporting/create_community_report-chat-v2-2a748fa811d3fa60742e9f3d7b719fd0 deleted file mode 100644 index 52de90eacf0b3c0cc83bb14da6101c64fb3183f2..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-2a748fa811d3fa60742e9f3d7b719fd0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Moka and Arty Rimon in Yehud\",\n \"summary\": \"The community centers around Moka, a pickup and delivery point for Arty Rimon, located in the city of Yehud. The relationship between these entities highlights a direct service connection that is significant for local logistics and delivery services.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the logistical importance of Moka as a service point for Arty Rimon in the city of Yehud.\",\n \"findings\": [\n {\n \"summary\": \"Moka as a key service point\",\n \"explanation\": \"Moka serves as a crucial pickup and delivery point for Arty Rimon, indicating its importance in the logistics and delivery network. This relationship suggests that Moka plays a vital role in facilitating the distribution of goods for Arty Rimon, which could impact service efficiency and customer satisfaction. The operational dynamics at Moka can directly influence the performance of Arty Rimon, making it a significant entity in this community. [Data: Entities (234), Relationships (343)]\"\n },\n {\n \"summary\": \"Yehud's role as the location for Moka\",\n \"explanation\": \"Yehud is the city where Moka is located, which adds a geographical context to the community. The location of Moka in Yehud is essential for understanding the local market dynamics and the accessibility of Arty Rimon's services. The city's infrastructure and demographics can affect the operational capabilities of Moka, thereby influencing the overall effectiveness of Arty Rimon's delivery services. [Data: Entities (243), Relationships (352)]\"\n },\n {\n \"summary\": \"Direct service relationship between Arty Rimon and Moka\",\n \"explanation\": \"The direct service relationship between Arty Rimon and Moka indicates a structured logistics operation that is essential for the delivery of goods. This relationship is characterized by Moka's function as a designated point for pickups and deliveries, which is critical for maintaining the flow of services provided by Arty Rimon. The efficiency of this relationship can significantly impact customer experiences and operational success. [Data: Relationships (343)]\"\n },\n {\n \"summary\": \"Potential impact on local logistics\",\n \"explanation\": \"The presence of Moka as a delivery point for Arty Rimon in Yehud suggests potential implications for local logistics and service delivery. As a hub for pickups and deliveries, Moka's operational efficiency can affect the speed and reliability of services offered by Arty Rimon. Any disruptions at Moka could lead to delays in service, impacting customer satisfaction and the overall reputation of Arty Rimon in the region. [Data: Relationships (343, 352)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n234,MOKA,\"Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.\",2\r\n243,YEHUD,\"Yehud is a city where Moka, a pickup and delivery point, is located.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n343,ARTY RIMON,MOKA,\"Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship\",14\r\n352,MOKA,YEHUD,\"Moka is located in Yehud, indicating a service location relationship\",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-33bd24c0ea93a7228ede7afe466bc539 b/cache/community_reporting/create_community_report-chat-v2-33bd24c0ea93a7228ede7afe466bc539 deleted file mode 100644 index 2fa02c2e85e5a4749ca4381aedeead23dc730f11..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-33bd24c0ea93a7228ede7afe466bc539 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Travel Essentials: Carry-On Bags and Related Items\",\n \"summary\": \"This community focuses on the essential items that passengers should keep accessible during flights, particularly emphasizing the importance of carry-on bags. The relationships among carry-on bags, medications, passports, valuables, and recommendations highlight the critical nature of these items for passenger safety and compliance with airline regulations.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of the items involved in ensuring passenger safety and compliance during air travel.\",\n \"findings\": [\n {\n \"summary\": \"Carry-On Bags as a central entity\",\n \"explanation\": \"Carry-on bags are the primary focus of this community, serving as the essential item that passengers must manage during flights. These bags are subject to specific restrictions, particularly regarding the items they can contain, such as liquids, medications, and valuables. The importance of carry-on bags is underscored by their role in ensuring that passengers have immediate access to necessary items during their journey. The relationships with other entities, such as medications and passports, further emphasize the need for careful management of these bags to comply with airline regulations and ensure passenger safety [Data: Entities (160); Relationships (288, 289, 290, 291, 294, +more)].\"\n },\n {\n \"summary\": \"Importance of Medications in Carry-On Bags\",\n \"explanation\": \"Medications are highlighted as essential items that passengers should keep accessible during flights. The recommendation to store medications in carry-on bags is crucial for health reasons, ensuring that travelers can manage their health needs while in transit. This relationship indicates that the presence of medications in carry-on bags is not just a matter of convenience but a necessity for passenger well-being. The implications of not having medications readily available could lead to serious health risks, making this a significant aspect of travel safety [Data: Entities (281); Relationships (289, +more)].\"\n },\n {\n \"summary\": \"Passports as critical travel documents\",\n \"explanation\": \"Passports are required documents for international travel and should be easily accessible during flights. The relationship between passports and carry-on bags emphasizes the need for travelers to keep these documents within reach to avoid complications during boarding and customs checks. The accessibility of passports is vital for ensuring a smooth travel experience, and any delays in retrieving these documents could lead to significant travel disruptions. This highlights the importance of proper organization within carry-on bags [Data: Entities (282); Relationships (290, +more)].\"\n },\n {\n \"summary\": \"Valuables and their security during travel\",\n \"explanation\": \"Valuables are items of significant worth that passengers are advised to keep with them during flights. The recommendation to store valuables in carry-on bags is crucial for their safety and security throughout the journey. This relationship underscores the importance of protecting personal belongings from theft or loss, which can be a significant concern for travelers. The emphasis on keeping valuables accessible also reflects the broader need for passengers to be vigilant about their possessions while traveling [Data: Entities (283); Relationships (291, +more)].\"\n },\n {\n \"summary\": \"Recommendations for managing carry-on items\",\n \"explanation\": \"The recommendations provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel are essential for ensuring compliance with airline regulations. These guidelines help passengers navigate the complexities of air travel, particularly concerning what items should be kept accessible and how to manage them effectively. The relationship between recommendations and carry-on bags highlights the proactive measures that travelers can take to enhance their travel experience and minimize potential issues [Data: Entities (288); Relationships (294, +more)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n160,CARRY-ON BAGS,\"CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.\",8\r\n281,MEDICATIONS,Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.,1\r\n282,PASSPORTS,Passports are required documents for international travel and should be easily accessible during flights.,1\r\n283,VALUABLES,Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.,1\r\n288,RECOMMENDATION,\"A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n283,LIQUIDS IN CARRY-ON BAGS,CARRY-ON BAGS,Restrictions on liquids apply specifically to items carried in carry-on bags.,22\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n293,CARRY-ON BAGS,CHECKED BAGS,\"If no free space is available, carry-on bags will be checked to the plane's belly\",11\r\n289,CARRY-ON BAGS,MEDICATIONS,Medications should be kept in carry-on bags for easy access during the flight,9\r\n290,CARRY-ON BAGS,PASSPORTS,Passports should be kept in carry-on bags for easy access during the flight,9\r\n291,CARRY-ON BAGS,VALUABLES,Valuables should be kept in carry-on bags for easy access during the flight,9\r\n294,CARRY-ON BAGS,RECOMMENDATION,The recommendation advises passengers to remove certain items from carry-on bags for easy access,9\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-3a5f8a09331bc5242aca51740aabc516 b/cache/community_reporting/create_community_report-chat-v2-3a5f8a09331bc5242aca51740aabc516 deleted file mode 100644 index e8c3aa75bd4a376f79fe8b6629123fb007321c2f..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-3a5f8a09331bc5242aca51740aabc516 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Pet Transportation in EL AL Cabin\",\n \"summary\": \"The community focuses on the transportation of pets in the cabin of EL AL flights, governed by specific weight restrictions. The key entities include the cabin itself and the weight limit of 9 kilograms for pets, which are interrelated through the airline's policies.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential implications for pet owners traveling with their animals under specific weight restrictions.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's pet transportation policy\",\n \"explanation\": \"EL AL allows pets to be transported in the cabin under specific conditions, which is crucial for pet owners planning to travel. This policy indicates that the airline recognizes the importance of accommodating pets, which can enhance customer satisfaction and loyalty. However, the specific conditions that must be met, such as the weight limit, can also create challenges for pet owners who may not be aware of these restrictions. [Data: Relationships (13)]\"\n },\n {\n \"summary\": \"Weight limit for pets in the cabin\",\n \"explanation\": \"The weight limit of 9 kilograms for pets transported in the cabin is a significant factor that affects how pets can be transported. This limit includes both the pet and its cage, which means that owners must carefully consider the total weight when preparing for travel. The restriction does not apply to service dogs, which highlights the airline's commitment to accommodating individuals with disabilities. This distinction is important for understanding the broader implications of the weight policy. [Data: Entities (7), Relationships (71, 111)]\"\n },\n {\n \"summary\": \"Impact on pet owners\",\n \"explanation\": \"The policies regarding pet transportation in the cabin can significantly impact pet owners' travel plans. Owners must ensure that their pets meet the weight requirements, which may limit their choices of pets or necessitate additional arrangements for travel. This can lead to frustration or confusion among travelers who may not be fully informed about the airline's policies. [Data: Relationships (71)]\"\n },\n {\n \"summary\": \"Exemptions for service dogs\",\n \"explanation\": \"The exemption of service dogs from the 9-kilogram weight limit is a critical aspect of EL AL's pet transportation policy. This provision ensures that individuals who rely on service animals can travel without the same restrictions as other pet owners. It reflects a broader commitment to accessibility and support for individuals with disabilities, which can enhance the airline's reputation among these travelers. [Data: Entities (7)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n16,CABIN,\"The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.\",2\r\n7,9KG,\"The entity \"\"9KG\"\" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.\",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n13,EL AL,CABIN,EL AL allows pets to be transported in the cabin under specific conditions,51\r\n71,PET,9KG,\"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported\",21\r\n111,9KG,CABIN,The weight limit of 9kg applies to pets transported in the cabin,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-479bed207e736816232f0f7a6fea6c8f b/cache/community_reporting/create_community_report-chat-v2-479bed207e736816232f0f7a6fea6c8f deleted file mode 100644 index ca2a53366fa6d819c039fbf72788dd5c7c69dbf1..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-479bed207e736816232f0f7a6fea6c8f +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Sundor Airline Baggage Policies\",\n \"summary\": \"The community centers around Sundor, an airline with specific baggage policies, including guidelines for overweight and oversized baggage. Key entities include dimensions for baggage, call center operations for approvals, and the classification of sports equipment as overweight baggage, all of which are interconnected in managing passenger baggage effectively.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential for customer dissatisfaction and operational challenges related to baggage handling policies.\",\n \"findings\": [\n {\n \"summary\": \"Sundor's specific baggage policies\",\n \"explanation\": \"Sundor has established specific policies regarding checked baggage allowances, which are crucial for managing passenger expectations and operational efficiency. These policies dictate the maximum dimensions and weight limits for baggage, ensuring compliance with airline regulations. The clarity and enforcement of these policies are essential to prevent disputes at check-in and during travel. Sundor's guidelines for overweight baggage, which require special handling and may incur additional fees, are particularly important for passengers traveling with sports equipment. [Data: Entities (329), Relationships (109, 322, 404)]\"\n },\n {\n \"summary\": \"The role of dimensions in baggage classification\",\n \"explanation\": \"Dimensions play a critical role in determining whether baggage is classified as standard, oversized, or overweight. For instance, the maximum dimension limit for transporting sports equipment is set at 277 cm, which is essential for compliance with airline policies. This relationship between dimensions and baggage classification helps streamline the check-in process and ensures that passengers are aware of the requirements before arriving at the airport. Misunderstandings regarding these dimensions can lead to delays and additional charges, impacting customer satisfaction. [Data: Entities (277 CM, DIMENSIONS), Relationships (96, 319, 315)]\"\n },\n {\n \"summary\": \"Overweight baggage and its implications\",\n \"explanation\": \"Overweight baggage is defined as luggage that exceeds the weight limits established by airlines, necessitating special approval for transport. Sundor's specific guidelines for handling overweight baggage are crucial for maintaining operational efficiency and customer satisfaction. Passengers must be informed about the potential for additional fees and the need for call center approval to transport such baggage. This process is vital for ensuring compliance with airline policies and preventing disputes at check-in. [Data: Entities (OVERWEIGHT BAGGAGE), Relationships (304, 320, 322)]\"\n },\n {\n \"summary\": \"The importance of call center operations\",\n \"explanation\": \"The call center serves as a critical point of contact for passengers seeking approval for transporting overweight baggage. This operational aspect is essential for ensuring compliance with Sundor's baggage policies and providing timely assistance to travelers. The effectiveness of the call center can significantly impact customer experience, especially for those with special baggage needs. Ensuring that the call center is well-staffed and knowledgeable about baggage policies is crucial for minimizing delays and enhancing passenger satisfaction. [Data: Entities (CALL CENTER), Relationships (318, 320)]\"\n },\n {\n \"summary\": \"Interrelationship between overweight and oversized baggage\",\n \"explanation\": \"Overweight baggage and oversized baggage are closely related categories that require special handling due to their size and weight. Both types of baggage may incur additional fees, and understanding the distinctions between them is vital for passengers. Sundor's policies must clearly communicate these differences to avoid confusion and ensure that travelers are prepared for potential charges. This relationship highlights the importance of effective baggage management systems in maintaining operational efficiency and customer satisfaction. [Data: Entities (OVERSIZED BAGGAGE), Relationships (321, 402)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n329,SUNDOR,Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.,5\r\n173,277 CM,\"The entity \"\"277 CM\"\" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.\",3\r\n169,OVERWEIGHT BAGGAGE,\"Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline's specified weight restrictions.\",8\r\n166,DIMENSIONS,\"Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.\",4\r\n328,OVERSIZED BAGGAGE,Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.,4\r\n168,CALL CENTER,The call center is a service location where passengers can contact for approval regarding overweight baggage.,1\r\n178,CALL CENTER APPROVAL,\"Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n304,SPORTING EQUIPMENT,OVERWEIGHT BAGGAGE,\"Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees\",22\r\n316,DIMENSIONS,CARRY-ON BAGGAGE,DIMENSIONS play a critical role in determining the eligibility of CARRY-ON BAGGAGE for boarding. They are a key factor that airlines consider when assessing whether a piece of baggage meets the requirements for carry-on status.,21\r\n298,SPORTING EQUIPMENT,DIMENSIONS,Sporting equipment is subject to specific dimensions that are critical for determining whether it can be transported as checked baggage. These dimensions play a vital role in ensuring that the equipment meets airline regulations and can be safely accommodated during travel.,18\r\n147,WEIGHT,OVERWEIGHT BAGGAGE,Overweight baggage is defined by exceeding the weight limit set by the airline,14\r\n322,OVERWEIGHT BAGGAGE,SUNDOR,Sundor has specific guidelines for handling overweight baggage,13\r\n321,OVERWEIGHT BAGGAGE,OVERSIZED BAGGAGE,\"OVERWEIGHT BAGGAGE and OVERSIZED BAGGAGE both necessitate special handling due to their size and weight. Additionally, travelers should be aware that both types of baggage may incur additional fees.\",12\r\n319,OVERWEIGHT BAGGAGE,277 CM,\"277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.\",11\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n318,CALL CENTER,OVERWEIGHT BAGGAGE,\"The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.\",9\r\n320,OVERWEIGHT BAGGAGE,CALL CENTER APPROVAL,\"Call center approval is necessary for transporting overweight baggage, ensuring compliance with airline policies.\",9\r\n402,OVERSIZED BAGGAGE,SUNDOR,Sundor has specific guidelines for handling oversized baggage,9\r\n317,DIMENSIONS,OVERSIZED BAGGAGE,Oversized baggage is defined by exceeding authorized dimensions,8\r\n315,DIMENSIONS,277 CM,277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage,7\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-48887b3bf2c8ea7b56d32e6ccd8e5c61 b/cache/community_reporting/create_community_report-chat-v2-48887b3bf2c8ea7b56d32e6ccd8e5c61 deleted file mode 100644 index ea4353a35d569032289d38481d1bb1fe43579efe..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-48887b3bf2c8ea7b56d32e6ccd8e5c61 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Checked Luggage and Baggage Conveyor Belt\",\n \"summary\": \"The community centers around the concepts of checked luggage and the baggage conveyor belt, which are integral to the air travel experience. The relationship between these entities highlights the process of luggage handling at airports, emphasizing their distinct roles in passenger travel.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the essential nature of these entities in facilitating air travel, though they do not pose significant risks.\",\n \"findings\": [\n {\n \"summary\": \"Distinct roles of checked luggage and carry-on baggage\",\n \"explanation\": \"Checked luggage and carry-on baggage serve different purposes for air travelers, with checked luggage designed for larger items that cannot fit in the cabin. This distinction is crucial for understanding passenger needs and the logistics of air travel. The relationship between these two types of luggage indicates that while they both cater to the same demographic, they fulfill different requirements and restrictions regarding size and accessibility. This differentiation is essential for airlines and airports in managing passenger expectations and operational efficiency. [Data: Relationships (370)]\"\n },\n {\n \"summary\": \"Baggage conveyor belt as a retrieval point\",\n \"explanation\": \"The baggage conveyor belt is a critical component of the luggage retrieval process at airports, where checked luggage is collected after a flight. This entity plays a vital role in the passenger experience, as it directly impacts the efficiency and satisfaction of travelers upon arrival. Delays or issues with the baggage conveyor belt can lead to significant frustration among passengers, highlighting the importance of this system in airport operations. Understanding the relationship between the baggage conveyor belt and checked luggage is essential for improving service delivery in air travel. [Data: Entities (275), Relationships (378)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n277,CHECKED LUGGAGE,,2\r\n275,BAGGAGE CONVEYOR BELT,The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,\"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.\",19\r\n378,BAGGAGE CONVEYOR BELT,CHECKED LUGGAGE,The baggage conveyor belt is where checked luggage is retrieved after a flight.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-4c2ec6eb35f8dce57103efa53f1006a0 b/cache/community_reporting/create_community_report-chat-v2-4c2ec6eb35f8dce57103efa53f1006a0 deleted file mode 100644 index 1361ba5823b91c6e31116c12f71976165129e588..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-4c2ec6eb35f8dce57103efa53f1006a0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Airline and Dangerous Dog Regulations\",\n \"summary\": \"This community focuses on the regulations surrounding the transportation of dangerous dogs by EL AL airline, highlighting the legal framework and the airline's compliance with these regulations. The relationship between dangerous dogs and luggage compartments is also significant in understanding the transportation policies.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential safety risks associated with transporting dangerous dogs and the airline's strict compliance measures.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's strict policy on dangerous dogs\",\n \"explanation\": \"EL AL has implemented a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy reflects the airline's commitment to safety and compliance with legal regulations. By ensuring that dangerous dogs are not allowed on their flights, EL AL mitigates potential risks associated with these animals, which could pose a threat to passengers and crew. The airline's adherence to the Israeli Law for the Regulation of Dog Supervision is crucial in maintaining safety standards and avoiding legal repercussions. [Data: Entities (3); Relationships (6)]\"\n },\n {\n \"summary\": \"Legal framework governing dangerous dogs\",\n \"explanation\": \"The classification of dangerous dogs is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported. This legal framework is essential for understanding the restrictions placed on the transportation of certain dog breeds, particularly in the context of air travel. The law aims to protect public safety by preventing potentially aggressive dogs from being transported in environments where they could cause harm. This legal backing reinforces the policies adopted by airlines like EL AL, ensuring that they operate within the bounds of the law. [Data: Entities (3)]\"\n },\n {\n \"summary\": \"Restrictions on luggage compartments\",\n \"explanation\": \"Dangerous dogs are explicitly prohibited from being transported in the luggage compartment during flights. This restriction is significant as it highlights the airline's efforts to ensure that these animals are not placed in confined spaces where they could become agitated or pose a risk to other animals and personnel. The policy reflects a broader commitment to animal welfare and safety, ensuring that dangerous dogs are not subjected to stressful conditions that could lead to incidents during transport. [Data: Entities (21); Relationships (68)]\"\n },\n {\n \"summary\": \"Impact of dangerous dog regulations on air travel\",\n \"explanation\": \"The regulations surrounding dangerous dogs have a considerable impact on air travel, particularly for pet owners and airlines. These regulations necessitate clear communication between airlines and passengers regarding what constitutes a dangerous dog and the associated transportation policies. Failure to comply with these regulations could result in legal issues for airlines and safety risks for passengers. Therefore, understanding these regulations is crucial for both airlines and travelers to ensure compliance and safety during air travel. [Data: Entities (3, 21); Relationships (6, 68)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n3,DANGEROUS DOG,\"Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.\",2\r\n21,LUGGAGE COMPARTMENT,\"The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n6,EL AL,DANGEROUS DOG,\"EL AL has a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy ensures that dangerous dogs are not allowed on their flights, reflecting the airline's commitment to safety and compliance with legal regulations.\",51\r\n68,DANGEROUS DOG,LUGGAGE COMPARTMENT,Dangerous dogs are not allowed in the luggage compartment during transportation,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-502486b47c86260a9bde7612ef1a453b b/cache/community_reporting/create_community_report-chat-v2-502486b47c86260a9bde7612ef1a453b deleted file mode 100644 index 3477f6a45ac38c36e50e200c31f5a4c9ba7fdb59..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-502486b47c86260a9bde7612ef1a453b +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Delayed Baggage and Baggage Reporting\",\n \"summary\": \"The community focuses on the processes and entities involved in managing delayed baggage at airports, specifically highlighting the roles of the Delayed Baggage and Baggage Report. The Baggage Service Center is crucial in facilitating the reporting and retrieval of delayed items.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential inconvenience and dissatisfaction experienced by passengers due to delayed baggage.\",\n \"findings\": [\n {\n \"summary\": \"Role of Delayed Baggage in passenger experience\",\n \"explanation\": \"Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing, which can significantly affect the travel experience. Passengers must report delayed baggage immediately to ensure that the airline can assist in locating and returning the items. The timely reporting of delayed baggage is essential for minimizing inconvenience and ensuring customer satisfaction. [Data: Entities (115)]\"\n },\n {\n \"summary\": \"Baggage Report issuance process\",\n \"explanation\": \"A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area. This report serves as an official document that initiates the process of locating and returning the delayed items to the passenger. The issuance of a baggage report is a critical step in the management of delayed baggage, as it formalizes the claim and allows the airline to track the status of the missing items. [Data: Entities (120)]\"\n },\n {\n \"summary\": \"Baggage Service Center's responsibilities\",\n \"explanation\": \"The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance. This center plays a vital role in coordinating the efforts to locate and return delayed items, making it a key entity in the community. [Data: Relationships (223)]\"\n },\n {\n \"summary\": \"Connection between Delayed Baggage and Baggage Report\",\n \"explanation\": \"There is a direct relationship between Delayed Baggage and Baggage Report, as a baggage report is issued specifically for delayed baggage at the airport. This connection highlights the procedural aspect of handling delayed items, where the report serves as a formal mechanism for addressing the issue. Understanding this relationship is crucial for improving the efficiency of baggage handling processes. [Data: Relationships (249)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n115,DELAYED BAGGAGE,\"Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.\",2\r\n120,BAGGAGE REPORT,A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n249,DELAYED BAGGAGE,BAGGAGE REPORT,A baggage report is issued for delayed baggage at the airport,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-520c076124e59c8da869d3ee9cb45c87 b/cache/community_reporting/create_community_report-chat-v2-520c076124e59c8da869d3ee9cb45c87 deleted file mode 100644 index 63e34360ceb34282b7518346042830e950d11126..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-520c076124e59c8da869d3ee9cb45c87 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Airline Baggage Weight Regulations\",\n \"summary\": \"This community focuses on the regulations surrounding the maximum allowable weights for carry-on bags and personal items as defined by airline policies. The entities are interconnected through their definitions and relationships regarding weight limits for baggage.\",\n \"rating\": 4.5,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for passenger inconvenience and compliance issues related to baggage weight regulations.\",\n \"findings\": [\n {\n \"summary\": \"Maximum Weight as a central concept\",\n \"explanation\": \"The term 'Maximum Weight' is a critical entity in this community, representing the heaviest allowable weight for carry-on bags and personal items when boarding. This concept is foundational for understanding airline baggage policies and is referenced in multiple relationships that define specific weight limits for different types of bags. The implications of this entity are significant, as exceeding the maximum weight can lead to additional fees or denied boarding, impacting passenger experience and airline operations. [Data: Entities (289); Relationships (377, 381, 383)]\"\n },\n {\n \"summary\": \"Specific weight limits for carry-on bags\",\n \"explanation\": \"The entities '16 KG' and '20 KG' specify the maximum weight limits for individual carry-on bags and the total weight for all bags, respectively. The '16 KG' limit is particularly important as it is the standard for a single carry-on bag, while '20 KG' encompasses the total weight allowed for all carry-on items. These weight limits are crucial for passengers to understand to avoid penalties and ensure compliance with airline policies. The relationships between these entities and the 'Maximum Weight' highlight their importance in the overall baggage regulation framework. [Data: Entities (279, 280); Relationships (382, 384)]\"\n },\n {\n \"summary\": \"Bags as a category of items\",\n \"explanation\": \"The entity 'BAGS' encompasses all items used to carry personal belongings during travel, which are subject to specific weight limits imposed by airlines. This entity serves as a broader category that includes both personal items and carry-on bags, linking it to the weight regulations. Understanding this category is essential for passengers as it informs them about what constitutes carry-on baggage and the associated weight restrictions. The relationships connecting 'BAGS' to both '16 KG' and '20 KG' further emphasize the importance of these weight limits in the context of airline travel. [Data: Entities (278); Relationships (288, 379, 380)]\"\n },\n {\n \"summary\": \"Interconnectedness of weight regulations\",\n \"explanation\": \"The relationships among the entities illustrate a complex web of interconnected weight regulations that govern airline baggage policies. Each entity contributes to a comprehensive understanding of what is permissible when traveling, and how these regulations are enforced. The overlapping relationships indicate that changes in one area, such as the maximum weight for a single bag, can have cascading effects on overall baggage policies and passenger compliance. This interconnectedness is vital for airlines to manage effectively to ensure smooth operations and customer satisfaction. [Data: Relationships (377, 382, 384, 288, 381)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n289,MAXIMUM WEIGHT,\"The term \"\"Maximum Weight\"\" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.\",3\r\n279,16 KG,\"The entity \"\"16 KG\"\" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.\",3\r\n280,20 KG,\"The entity \"\"20 KG\"\" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.\",3\r\n278,BAGS,\"Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.\",3\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n382,16 KG,CARRY-ON BAG,The maximum weight limit for one carry-on bag is 16 kg,13\r\n384,20 KG,CARRY-ON BAG,The combined weight limit for carry-on bags is 20 kg,13\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n381,16 KG,MAXIMUM WEIGHT,The maximum weight for one bag is defined as 16 kg,6\r\n379,BAGS,16 KG,The weight limit for one bag is set at 16 kg as per airline policy,6\r\n383,20 KG,MAXIMUM WEIGHT,The maximum combined weight for all bags is defined as 20 kg,6\r\n380,BAGS,20 KG,The combined weight limit for all bags is set at 20 kg as per airline policy,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-53a51a471fe85cf4ec8b350e6dd7d25b b/cache/community_reporting/create_community_report-chat-v2-53a51a471fe85cf4ec8b350e6dd7d25b deleted file mode 100644 index 290e7561d914ff4483a22f95a5cbfb0f29b1b255..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-53a51a471fe85cf4ec8b350e6dd7d25b +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Management Community\",\n \"summary\": \"The Baggage Management Community encompasses various entities involved in the handling, reporting, and claims processes related to passenger baggage, particularly focusing on EL AL Israel Airlines and its associated services. The community includes the Baggage Service Center, courier services, and various documentation necessary for managing baggage issues, highlighting the interconnectedness of these entities in ensuring a smooth travel experience for passengers.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of baggage management in air travel, where issues can significantly affect passenger satisfaction and operational efficiency.\",\n \"findings\": [\n {\n \"summary\": \"EL AL Israel Airlines as the central entity\",\n \"explanation\": \"EL AL Israel Airlines plays a pivotal role in the baggage management community, being responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability. The airline's policies and procedures directly influence how baggage issues are managed, impacting passenger experiences. The airline's relationship with various entities, such as the Baggage Service Center and the Claims Department, is crucial for effective baggage handling and resolution of issues. [Data: Entities (250); Relationships (24, 193, 361)]\"\n },\n {\n \"summary\": \"Baggage Service Center's essential role\",\n \"explanation\": \"The Baggage Service Center is dedicated to assisting travelers with baggage-related issues, including delays and damages. This center serves as a crucial resource for passengers, providing support and facilitating the claims process. Its coordination with the Claims Department ensures that claims are processed efficiently, which is vital for maintaining passenger trust and satisfaction. The center's ability to manage reports of delayed baggage and coordinate with courier services for delivery further emphasizes its importance in the community. [Data: Entities (113, 202); Relationships (186, 222, 228)]\"\n },\n {\n \"summary\": \"Importance of documentation in baggage claims\",\n \"explanation\": \"Documentation such as flight tickets, boarding passes, and baggage tags is essential for passengers filing claims for lost or damaged baggage. These documents serve as proof of travel and ownership, facilitating the claims process. The requirement for specific documents underscores the structured nature of baggage claims and the importance of proper documentation in ensuring that passengers receive compensation for their issues. The Baggage Service Center provides guidance on the necessary documentation, which is critical for a smooth claims process. [Data: Entities (251, 252, 253); Relationships (194, 195, 196)]\"\n },\n {\n \"summary\": \"Courier service enhances passenger experience\",\n \"explanation\": \"The courier service is responsible for delivering retrieved delayed baggage to passengers' specified addresses, significantly enhancing the travel experience by alleviating the inconvenience caused by baggage delays. This service is crucial for maintaining customer satisfaction, as it ensures that passengers receive their belongings promptly after they have been located. The relationship between the Baggage Service Center and the courier service is vital for effective communication and coordination in managing delayed baggage. [Data: Entities (117); Relationships (187, 251)]\"\n },\n {\n \"summary\": \"Challenges associated with oversized and overweight baggage\",\n \"explanation\": \"Oversized and overweight baggage presents unique challenges in baggage management, requiring special handling and potentially incurring additional fees. The designated locations for checking in such baggage are critical for ensuring that these items are processed appropriately. The community's ability to manage these types of baggage effectively is essential for operational efficiency and passenger satisfaction, as mishandling can lead to delays and increased costs. [Data: Entities (340); Relationships (323, 403)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n56,BAGGAGE,\"Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.\",21\r\n113,BAGGAGE SERVICE CENTER,\"The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.\",13\r\n250,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,6\r\n117,COURIER SERVICE,\"The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.\",2\r\n118,CONTACT DETAILS,\"The \"\"CONTACT DETAILS\"\" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.\",2\r\n119,LOST BAGGAGE REPORT NUMBER,\"The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.\",2\r\n203,BAGGAGE TAG,\"A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.\",2\r\n340,OVERSIZED AND OVERWEIGHT BAGGAGE,\"Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees.\",2\r\n200,BAGGAGE CLAIM AREA,\"The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.\",1\r\n201,DAMAGE REPORT,\"A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.\",1\r\n251,FLIGHT TICKETS,Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.,1\r\n252,BOARDING PASSES,Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.,1\r\n253,BAGGAGE TAGS,\"Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.\",1\r\n254,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.,1\r\n255,RECEIPTS,Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.,1\r\n115,DELAYED BAGGAGE,\"Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.\",2\r\n116,CLAIM STATUS,\"The term \"\"Claim Status\"\" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.\",2\r\n123,BAGGAGE CLAIM,Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.,1\r\n127,BAGGAGE CLAIMS PROCESS,The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.,1\r\n122,BAGGAGE DELAY,Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.,1\r\n124,BAGGAGE HANDLING,Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.,1\r\n125,BAGGAGE REPORTING,\"Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.\",1\r\n128,DAMAGED BAGGAGE,,1\r\n121,FORGOTTEN ITEM,\"The \"\"FORGOTTEN ITEM\"\" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.\",1\r\n202,CLAIMS DEPARTMENT,The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.,1\r\n342,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,\"The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.\",3\r\n260,CONTRACT OF CARRIAGE,\"The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.\",1\r\n256,FRAGILE ITEMS,Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n257,PERISHABLE ITEMS,Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n258,VALUABLE ITEMS,\"Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.\",1\r\n259,INTERNATIONAL CONVENTIONS,International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.,1\r\n126,BAGGAGE DELIVERY,Baggage delivery is the service that ensures retrieved baggage is sent to the passenger's specified address.,1\r\n120,BAGGAGE REPORT,A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n24,EL AL,BAGGAGE,\"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.\",70\r\n157,ANIMAL,BAGGAGE,Animals can be transported as baggage in the aircraft cabin or hold,50\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n186,BAGGAGE,BAGGAGE SERVICE CENTER,The Baggage Service Center is dedicated to assisting travelers with various issues related to their baggage. This includes managing problems such as delays and damages that may occur during travel. The center serves as a crucial resource for passengers seeking support and resolution for their baggage-related concerns.,34\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n193,BAGGAGE,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,27\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n183,BEN GURION AIRPORT,BAGGAGE,\"Baggage, including pets, is released at Ben Gurion Airport's arrivals hall\",26\r\n187,BAGGAGE,COURIER SERVICE,The BAGGAGE is delivered to the passenger's address by the COURIER SERVICE after it has been retrieved following a delay. The COURIER SERVICE is responsible for ensuring that the delayed baggage reaches the travelers promptly after it has been located.,23\r\n188,BAGGAGE,CONTACT DETAILS,Contact details are provided for passengers to report baggage issues,23\r\n191,BAGGAGE,LOST BAGGAGE REPORT NUMBER,The lost baggage report number is used to track claims related to lost baggage,23\r\n192,BAGGAGE,BAGGAGE TAG,The baggage tag is essential for identifying and tracking baggage,23\r\n199,BAGGAGE,OVERSIZED AND OVERWEIGHT BAGGAGE,Oversized and overweight baggage are categories of baggage that exceed standard limits,23\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline's size and weight requirements,23\r\n189,BAGGAGE,BAGGAGE CLAIM AREA,\"Travelers report baggage issues in the baggage claim area, where they can receive assistance\",22\r\n190,BAGGAGE,DAMAGE REPORT,\"A damage report is issued when baggage is reported damaged, which is necessary for processing claims\",22\r\n194,BAGGAGE,FLIGHT TICKETS,Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n195,BAGGAGE,BOARDING PASSES,Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n196,BAGGAGE,BAGGAGE TAGS,Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n197,BAGGAGE,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.,22\r\n198,BAGGAGE,RECEIPTS,Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.,22\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n224,BAGGAGE SERVICE CENTER,CLAIM STATUS,The status of a claim can be checked through the Baggage Service Center's worldwide system,15\r\n233,BAGGAGE SERVICE CENTER,CONTACT DETAILS,Contact details provide necessary information for reaching the Baggage Service Center for assistance,15\r\n228,BAGGAGE SERVICE CENTER,BAGGAGE CLAIM,The Baggage Service Center facilitates the baggage claim process for passengers,14\r\n231,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS PROCESS,The Baggage Service Center follows the baggage claims process to assist passengers,14\r\n227,BAGGAGE SERVICE CENTER,BAGGAGE DELAY,The Baggage Service Center is responsible for managing reports of baggage delays,14\r\n229,BAGGAGE SERVICE CENTER,BAGGAGE HANDLING,Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage,14\r\n230,BAGGAGE SERVICE CENTER,BAGGAGE REPORTING,Passengers report baggage issues to the Baggage Service Center for resolution,14\r\n225,BAGGAGE SERVICE CENTER,DAMAGED BAGGAGE,\"The Baggage Service Center is dedicated to assisting travelers with claims related to damaged baggage. It effectively handles cases of damaged baggage reported by passengers, ensuring that their concerns are addressed and resolved in a timely manner.\",14\r\n226,BAGGAGE SERVICE CENTER,FORGOTTEN ITEM,\"The Baggage Service Center is dedicated to assisting passengers with items that have been forgotten on board. It plays a crucial role in helping recover these forgotten items, ensuring that travelers can retrieve their belongings efficiently.\",14\r\n232,BAGGAGE SERVICE CENTER,CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Claims Department to process claims related to baggage,14\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n361,EL AL ISRAEL AIRLINES,CONTRACT OF CARRIAGE,\"The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.\",7\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n357,EL AL ISRAEL AIRLINES,FRAGILE ITEMS,EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.,7\r\n358,EL AL ISRAEL AIRLINES,PERISHABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.,7\r\n359,EL AL ISRAEL AIRLINES,VALUABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.,7\r\n360,EL AL ISRAEL AIRLINES,INTERNATIONAL CONVENTIONS,International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.,7\r\n417,OVERSIZED AND OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized and overweight baggage must take their luggage to the designated location,5\r\n250,CLAIM STATUS,LOST BAGGAGE REPORT NUMBER,The claim status can be checked using the lost baggage report number provided by the airline. This report number is essential for verifying the status of a claim related to lost baggage.,4\r\n251,COURIER SERVICE,BAGGAGE DELIVERY,The courier service is responsible for the delivery of baggage to the passenger's address after retrieval,3\r\n249,DELAYED BAGGAGE,BAGGAGE REPORT,A baggage report is issued for delayed baggage at the airport,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-544f34f9d77099f397a68da680dd5c54 b/cache/community_reporting/create_community_report-chat-v2-544f34f9d77099f397a68da680dd5c54 deleted file mode 100644 index 9505dddce77fe4d4c46eadb176367260298a6f84..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-544f34f9d77099f397a68da680dd5c54 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"El Al Carry-On Bag Regulations\",\n \"summary\": \"The community focuses on the regulations and specifications surrounding carry-on bags for El Al flights, detailing the dimensions, weight limits, and special considerations for oversized items. The entities are interconnected through specific policies and guidelines that govern the transport of luggage on El Al flights.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for passenger inconvenience and operational challenges related to carry-on baggage policies.\",\n \"findings\": [\n {\n \"summary\": \"El Al's carry-on bag policies\",\n \"explanation\": \"El Al has established specific policies regarding the dimensions and weight limits for carry-on bags, which are crucial for ensuring compliance and passenger satisfaction. The maximum dimensions for a carry-on bag are set at 115 cm in total, with specific limits for length (56 cm), width (45 cm), and depth (25 cm). Additionally, the weight limit for a single carry-on bag is 16 kg, while the combined weight for multiple bags is capped at 20 kg. These regulations are designed to optimize cabin space and ensure safety during flights [Data: Relationships (31, 382, 384, 390, 397, +more)].\"\n },\n {\n \"summary\": \"Oversized items require special arrangements\",\n \"explanation\": \"Oversized items, such as musical instruments, necessitate prior coordination with El Al and may require an extra seat for transport. Passengers are advised to contact the service center to obtain approval for carrying oversized items, which highlights the importance of communication between the airline and its customers. This process is essential to avoid last-minute complications at the airport and ensure a smooth travel experience [Data: Entities (300, 302); Relationships (398, 400)].\"\n },\n {\n \"summary\": \"Emergency exit row storage policies\",\n \"explanation\": \"Passengers seated in the emergency exit row have specific privileges regarding the storage of carry-on bags in overhead compartments. This policy allows for more efficient use of cabin space, but it also requires passengers to be aware of their responsibilities in case of an emergency. The relationship between the carry-on bag regulations and the emergency exit row underscores the need for passengers to understand the implications of their seating choices [Data: Relationships (399)].\"\n },\n {\n \"summary\": \"Weight and dimension limits impact passenger experience\",\n \"explanation\": \"The strict weight and dimension limits for carry-on bags can significantly impact the passenger experience, particularly for those traveling with multiple items or larger luggage. Passengers must plan their packing carefully to avoid additional fees or the inconvenience of having to check bags at the last minute. This aspect of the regulations can lead to frustration and dissatisfaction among travelers if not adequately communicated [Data: Relationships (31, 382, 384)].\"\n },\n {\n \"summary\": \"Coordination with the service center is essential\",\n \"explanation\": \"El Al's service center plays a critical role in managing the transport of unusual or oversized items. Passengers are required to coordinate with this center to ensure that their items can be accommodated on their flights. This requirement emphasizes the importance of proactive communication and planning for travelers who may have special luggage needs [Data: Entities (302); Relationships (400)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n293,CARRY-ON BAG,\"A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.\",10\r\n300,OVERSIZED ITEMS,\"Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.\",2\r\n298,115 CM,The total maximum dimension for a carry-on bag on El Al flights is 115 cm.,1\r\n296,25 CM,The maximum depth for a carry-on bag on El Al flights is 25 cm.,1\r\n295,45 CM,The maximum width for a carry-on bag on El Al flights is 45 cm.,1\r\n294,56 CM,The maximum length for a carry-on bag on El Al flights is 56 cm.,1\r\n301,EMERGENCY EXIT ROW,The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.,1\r\n302,SERVICE CENTER,El Al's service center is where passengers can coordinate the transport of unusual items.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n382,16 KG,CARRY-ON BAG,The maximum weight limit for one carry-on bag is 16 kg,13\r\n384,20 KG,CARRY-ON BAG,The combined weight limit for carry-on bags is 20 kg,13\r\n390,BAG,CARRY-ON BAG,A carry-on bag is a type of bag that must meet specific weight and dimension limits,13\r\n398,CARRY-ON BAG,OVERSIZED ITEMS,Oversized items may require special arrangements for transport in the cabin,12\r\n397,CARRY-ON BAG,115 CM,The total maximum dimension for a carry-on bag is 115 cm,11\r\n396,CARRY-ON BAG,25 CM,The maximum depth for a carry-on bag is 25 cm,11\r\n395,CARRY-ON BAG,45 CM,The maximum width for a carry-on bag is 45 cm,11\r\n394,CARRY-ON BAG,56 CM,The maximum length for a carry-on bag is 56 cm,11\r\n399,CARRY-ON BAG,EMERGENCY EXIT ROW,Passengers in the emergency exit row may store bags in overhead compartments,11\r\n400,OVERSIZED ITEMS,SERVICE CENTER,Passengers must contact the service center for approval to carry oversized items,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-57ff06bf2970ea943afc26ecd122b007 b/cache/community_reporting/create_community_report-chat-v2-57ff06bf2970ea943afc26ecd122b007 deleted file mode 100644 index da19fa1a6c144e8afe00a50794f92ed002565add..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-57ff06bf2970ea943afc26ecd122b007 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Pet Transportation Regulations and Practices\",\n \"summary\": \"The community focuses on the transportation of pets, detailing the various methods, regulations, and requirements associated with their travel by air. Key entities include airlines, cargo services, and necessary documentation, all of which are interconnected in ensuring safe and compliant transport of animals.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the complexities and potential risks involved in transporting pets, which can affect animal welfare and compliance with regulations.\",\n \"findings\": [\n {\n \"summary\": \"Diverse methods of pet transportation\",\n \"explanation\": \"The community encompasses various methods for transporting pets, including cabin transport, registered cargo, and checked baggage. Each method has specific regulations and requirements that must be adhered to, depending on the size and weight of the pet. For instance, pets weighing up to 9 kg can be transported in the passenger aircraft cabin, while those exceeding this weight must be transported as registered cargo or in the aircraft hold. This diversity in transportation methods highlights the need for clear guidelines to ensure the safety and well-being of the animals during travel [Data: Entities (4, 6, 30, 32, 90); Relationships (69, 70, 80, 81)]\"\n },\n {\n \"summary\": \"Importance of documentation\",\n \"explanation\": \"Documentation plays a crucial role in the transportation of pets, particularly the bill of lading and health certificates. A bill of lading is required for transporting animals as cargo, especially those over 9 kg, ensuring that all parties are aware of the transport conditions. Additionally, an international certificate of good health is necessary for pets being transported abroad, which involves veterinarians issuing the required health documents. This emphasis on documentation underscores the regulatory framework governing pet transportation and the importance of compliance to avoid legal issues [Data: Entities (30, 28); Relationships (76, 77, 114, 139)]\"\n },\n {\n \"summary\": \"Airline-specific policies\",\n \"explanation\": \"Different airlines have specific policies regarding pet transportation, which can significantly impact how pets are transported. For example, EL AL has established weight limits and conditions for cabin transport, as well as providing registered cargo services for larger animals. Understanding these airline-specific regulations is essential for pet owners to ensure compliance and safe travel for their pets. The variability in policies among airlines can lead to confusion, making it crucial for pet owners to research and prepare accordingly [Data: Entities (4, 6); Relationships (7, 12)]\"\n },\n {\n \"summary\": \"Weight limits and their implications\",\n \"explanation\": \"Weight limits are a critical factor in determining how pets can be transported. Pets weighing up to 9 kg can travel in the passenger cabin, while those between 9 kg and 100 kg must be transported in the aircraft hold. This distinction affects not only the comfort of the pet but also the costs associated with their transport, as the weight of the pet is not included in the permitted baggage allowance. Understanding these weight limits is vital for pet owners to avoid unexpected fees and ensure their pets' safety during travel [Data: Entities (90); Relationships (71, 83)]\"\n },\n {\n \"summary\": \"Regulations for specific destinations\",\n \"explanation\": \"Certain destinations have specific regulations regarding pet transportation, particularly concerning cabin transport. For instance, transporting pets in the aircraft cabin is not allowed for flights to Hong Kong, Johannesburg, and London. These restrictions necessitate that pet owners be aware of destination-specific regulations to ensure compliance and avoid complications during travel. This highlights the importance of thorough research and preparation when planning to transport pets internationally [Data: Entities (27, 25, 26); Relationships (75, 73, 74)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n4,PET,\"Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.\",19\r\n6,REGISTERED CARGO,\"Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.\",3\r\n30,BILL OF LADING,A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.,3\r\n32,AIRCRAFT HOLD,The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.,1\r\n90,ALLOWANCE,The permitted baggage allowance does not include the weight of pets being transported.,1\r\n95,CARRYING CASE,\"The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.\",1\r\n27,HONG KONG,Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n25,JOHANNESBURG,Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n26,LONDON,London is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n33,PASSENGER AIRCRAFT CABIN,\"The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.\",1\r\n28,VETERINARIAN,Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.,1\r\n88,TRANSPORT CAGE GUIDELINES,Guidelines that outline the requirements for transport cages used for pets during flights.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n7,EL AL,PET,\"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport\",68\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n69,PET,CHECKED BAGGAGE,\"Pets can be transported as checked baggage under certain conditions, such as size and weight\",44\r\n72,PET,ISRAEL,\"Pets are transported from Israel to other countries, requiring specific permits and conditions.\",28\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n76,PET,BILL OF LADING,\"Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.\",22\r\n70,PET,REGISTERED CARGO,\"Pets may also be transported as registered cargo, especially if they are large or unaccompanied\",22\r\n79,PET,BUSINESS CABIN,Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.,22\r\n86,PET,FLIGHT TICKET,\"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.\",22\r\n71,PET,9KG,\"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported\",21\r\n77,PET,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting pets abroad.,21\r\n80,PET,AIRCRAFT HOLD,Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.,20\r\n83,PET,ALLOWANCE,\"The weight of pets is not included in the permitted baggage allowance, affecting transport costs.\",20\r\n85,PET,CARRYING CASE,\"The carrying case is required for transporting pets, and its weight is included in the transport cost.\",20\r\n75,PET,HONG KONG,Transporting pets in the aircraft cabin is not allowed to Hong Kong.,20\r\n73,PET,JOHANNESBURG,Transporting pets in the aircraft cabin is not allowed to Johannesburg.,20\r\n74,PET,LONDON,Transporting pets in the aircraft cabin is not allowed to London.,20\r\n81,PET,PASSENGER AIRCRAFT CABIN,Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.,20\r\n78,PET,VETERINARIAN,Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.,20\r\n84,PET,TRANSPORT CAGE GUIDELINES,Transport cage guidelines provide the necessary requirements for transporting pets safely.,20\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n139,BILL OF LADING,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department determines if a bill of lading is needed for transporting animals,10\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-598e4f383a670abfc6bb519110836697 b/cache/community_reporting/create_community_report-chat-v2-598e4f383a670abfc6bb519110836697 deleted file mode 100644 index 90ad21695ae2a3ee5f091e457a32762e16fd7924..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-598e4f383a670abfc6bb519110836697 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Liquid Carry-On Regulations Community\",\n \"summary\": \"The community focuses on the regulations surrounding the carrying of liquids in carry-on bags, particularly in relation to air travel. Key entities include various types of liquids, the security checkpoint, and specific guidelines from countries like the U.S. and Israel, which collectively shape the rules and restrictions that travelers must adhere to.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential for significant disruptions and safety concerns related to liquid restrictions in air travel.\",\n \"findings\": [\n {\n \"summary\": \"Comprehensive restrictions on liquids in carry-on bags\",\n \"explanation\": \"The community is primarily defined by the restrictions on liquids that passengers can carry in their carry-on bags. These regulations are crucial for maintaining safety in air travel, as they aim to prevent the transport of hazardous materials. The restrictions apply to various types of liquids, including aerosols, creams, gels, and baby food, which must adhere to specific guidelines to ensure compliance at security checkpoints. [Data: Entities (152, 161, 156, 158, 154, 159); Relationships (283, 281, 279, 286, 278, 282)]\"\n },\n {\n \"summary\": \"Role of the security checkpoint\",\n \"explanation\": \"The security checkpoint is a critical entity in this community, where passengers must present their carry-on items for inspection. At this location, any liquids exceeding the permitted amount will be discarded, which underscores the importance of compliance with the established regulations. The checkpoint serves as the enforcement point for the liquid restrictions, making it a focal area for potential conflicts or issues during the boarding process. [Data: Entities (159); Relationships (284)]\"\n },\n {\n \"summary\": \"Specific guidelines from Israel\",\n \"explanation\": \"Israel has established specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These regulations are designed to ensure that all passengers adhere to safety protocols, reflecting the country's commitment to aviation security. The relationship between Israel and the liquid restrictions highlights the international nature of air travel regulations and the need for travelers to be aware of varying rules depending on their departure location. [Data: Relationships (127)]\"\n },\n {\n \"summary\": \"U.S. regulations impacting liquid transport\",\n \"explanation\": \"The U.S. has specific guidelines that affect the carrying of liquids in handbags on flights to and from the country. These regulations are part of a broader effort to enhance security in air travel and prevent potential threats. The relationship between the U.S. and the liquid restrictions emphasizes the importance of understanding local regulations, as they can vary significantly from one country to another. [Data: Relationships (285)]\"\n },\n {\n \"summary\": \"Diverse types of liquids subject to restrictions\",\n \"explanation\": \"Various types of liquids, including cosmetics, creams, gels, and prescription medications, are subject to the same restrictions as other liquids in carry-on bags. This diversity highlights the complexity of the regulations, as travelers must be aware of the specific rules that apply to different categories of liquids. The inclusion of baby food as a special item further complicates the landscape, as it is exempt from certain packing requirements but still subject to inspection. [Data: Entities (155, 158, 154, 157); Relationships (278, 282, 280, 279)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n152,LIQUIDS IN CARRY-ON BAGS,Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.,14\r\n161,AEROSOLS,,1\r\n156,BABY FOOD,\"Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.\",1\r\n322,CLEAR RESEALABLE PLASTIC BAG,\"Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.\",1\r\n155,COSMETICS,\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\",1\r\n158,CREAMS,\"CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.\",1\r\n323,DOCTOR'S NOTE,Document required for carrying medications and special food products at the security checkpoint.,1\r\n154,GELS,\"GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.\",1\r\n153,WHISKEY,\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\",1\r\n157,PRESCRIPTION MEDICATIONS,\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\",1\r\n159,SECURITY CHECKPOINT,\"The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations.\",1\r\n319,U.S,Country with specific guidelines regarding the carrying of liquids in handbags.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,\"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.\",63\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,\"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.\",23\r\n283,LIQUIDS IN CARRY-ON BAGS,CARRY-ON BAGS,Restrictions on liquids apply specifically to items carried in carry-on bags.,22\r\n281,LIQUIDS IN CARRY-ON BAGS,AEROSOLS,Aerosols are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n279,LIQUIDS IN CARRY-ON BAGS,BABY FOOD,Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n286,LIQUIDS IN CARRY-ON BAGS,CLEAR RESEALABLE PLASTIC BAG,\"A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.\",15\r\n278,LIQUIDS IN CARRY-ON BAGS,COSMETICS,Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n282,LIQUIDS IN CARRY-ON BAGS,CREAMS,Creams are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n287,LIQUIDS IN CARRY-ON BAGS,DOCTOR'S NOTE,A doctor's note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.,15\r\n277,LIQUIDS IN CARRY-ON BAGS,GELS,Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n276,LIQUIDS IN CARRY-ON BAGS,WHISKEY,Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n280,LIQUIDS IN CARRY-ON BAGS,PRESCRIPTION MEDICATIONS,Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n284,LIQUIDS IN CARRY-ON BAGS,SECURITY CHECKPOINT,\"At the security checkpoint, liquids that exceed the permitted amount will be discarded.\",15\r\n285,LIQUIDS IN CARRY-ON BAGS,U.S,The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.,15\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-5bc334cf886bfa4137dcdeba2236e1c4 b/cache/community_reporting/create_community_report-chat-v2-5bc334cf886bfa4137dcdeba2236e1c4 deleted file mode 100644 index 1c166c64c931dec473c2ba2fc5ba77a305b685c2..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-5bc334cf886bfa4137dcdeba2236e1c4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Pet Transportation Regulations in Israel\",\n \"summary\": \"The community focuses on the regulatory framework governing the transportation of pets in Israel, primarily involving the Ministry of Agriculture, Veterinary Services Department, and the authorization process required for compliance. The relationships among these entities highlight the structured approach to ensuring the health and safety of animals during transport.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of animal welfare regulations and the potential consequences of non-compliance in pet transportation.\",\n \"findings\": [\n {\n \"summary\": \"Role of the Ministry of Agriculture\",\n \"explanation\": \"The Ministry of Agriculture serves as the primary regulatory authority overseeing pet transportation in Israel. It establishes the necessary regulations and guidelines that must be adhered to by all entities involved in the transportation process. This includes ensuring that all procedures align with health and safety standards for animals. The Ministry's involvement is crucial as it directly impacts the legal framework within which pet transportation operates, making compliance essential for all stakeholders. [Data: Relationships (0, 1, 3, 4, 2)]\"\n },\n {\n \"summary\": \"Importance of Authorization\",\n \"explanation\": \"Authorization from the Ministry of Agriculture is a mandatory requirement for transporting animals, including pets. This authorization ensures that all transport activities comply with established regulations, thereby safeguarding animal welfare. Without this authorization, individuals or entities are prohibited from legally transporting animals, highlighting the significance of this process in maintaining standards within the community. [Data: Entities (8), Relationships (1)]\"\n },\n {\n \"summary\": \"Veterinary Services Department's role\",\n \"explanation\": \"The Veterinary Services Department operates under the Ministry of Agriculture and is responsible for managing the regulations related to pet transportation. This department plays a critical role in the authorization process, ensuring that all health and safety protocols are followed. Their oversight is vital for the welfare of animals during transport, as they conduct necessary inspections and assessments. [Data: Relationships (4, 113)]\"\n },\n {\n \"summary\": \"Animal Tests as a compliance measure\",\n \"explanation\": \"Animal tests are a key component of the authorization process for transporting pets. These tests are conducted to ensure the health and safety of animals during their journey, reflecting the community's commitment to animal welfare. The requirement for these tests underscores the rigorous standards that must be met before any transport can occur, thereby enhancing the overall safety of the process. [Data: Entities (9), Relationships (2, 112)]\"\n },\n {\n \"summary\": \"Interconnectedness of entities\",\n \"explanation\": \"The relationships among the Ministry of Agriculture, Veterinary Services Department, and the authorization process illustrate a well-structured regulatory framework. Each entity plays a specific role that contributes to the overall effectiveness of pet transportation regulations. This interconnectedness ensures that all aspects of animal transport are covered, from initial authorization to compliance with health standards, thereby reinforcing the community's integrity. [Data: Relationships (0, 1, 4)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n8,AUTHORIZATION,\"Authorization from the Ministry of Agriculture’s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.\",3\r\n9,ANIMAL TESTS,The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.,2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n0,MINISTRY OF AGRICULTURE,EL AL,\"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.\",54\r\n3,MINISTRY OF AGRICULTURE,ISRAEL,The Ministry of Agriculture is the regulatory authority in Israel for pet transportation,14\r\n113,AUTHORIZATION,VETERINARY SERVICES DEPARTMENT,Authorization from the Veterinary Services Department is required for transporting pets as cargo,10\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n1,MINISTRY OF AGRICULTURE,AUTHORIZATION,\"The Ministry of Agriculture requires authorization for the transportation of animals. This authorization is a necessary document for compliance with regulations governing animal transport. Without this authorization, individuals or entities are not permitted to transport animals legally.\",8\r\n2,MINISTRY OF AGRICULTURE,ANIMAL TESTS,The Ministry of Agriculture's authorization process may involve performing several animal tests,7\r\n112,AUTHORIZATION,ANIMAL TESTS,Animal tests are part of the authorization process for transporting pets,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-604e652c376644ebf2d51f1ff85d600e b/cache/community_reporting/create_community_report-chat-v2-604e652c376644ebf2d51f1ff85d600e deleted file mode 100644 index f2381ff3c796a6f30249ed6a6c3ad35651507972..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-604e652c376644ebf2d51f1ff85d600e +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Service Community\",\n \"summary\": \"The Baggage Service Community is centered around the Baggage Service Center, which manages various issues related to baggage, including delays, damages, and forgotten items. The community includes essential entities such as the Claims Department and contact details for travelers, highlighting the interconnectedness of services aimed at assisting passengers with baggage-related concerns.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of baggage management in ensuring traveler satisfaction and operational efficiency.\",\n \"findings\": [\n {\n \"summary\": \"Central role of the Baggage Service Center\",\n \"explanation\": \"The Baggage Service Center is the primary entity in this community, responsible for managing a wide range of baggage-related issues. It serves as a crucial resource for travelers facing challenges such as delayed or damaged baggage. The center's operations are vital for maintaining passenger satisfaction and ensuring that issues are resolved efficiently. The relationships it holds with other entities, such as the Claims Department and various baggage processes, underscore its importance in the overall baggage management system. [Data: Entities (113), Relationships (186, 222, 223, 228, 230, +more)]\"\n },\n {\n \"summary\": \"Importance of contact details for travelers\",\n \"explanation\": \"The contact details provided for the Baggage Service Center are essential for travelers seeking assistance. These details include phone numbers and WhatsApp chat options, which facilitate immediate communication for reporting baggage issues. The availability of such contact methods is crucial for ensuring that passengers can quickly address their concerns, thereby enhancing the overall travel experience. The relationship between the contact details and the Baggage Service Center highlights the importance of accessibility in service delivery. [Data: Entities (118), Relationships (188, 233)]\"\n },\n {\n \"summary\": \"Claims Department's role in baggage management\",\n \"explanation\": \"The Claims Department is integral to the baggage management process, coordinating with the Baggage Service Center to process claims related to lost or damaged baggage. This collaboration ensures that passengers receive timely updates and resolutions regarding their claims, which is essential for maintaining trust and satisfaction among travelers. The relationship between the Claims Department and the Baggage Service Center emphasizes the importance of effective communication and coordination in handling baggage issues. [Data: Entities (202), Relationships (222, 232)]\"\n },\n {\n \"summary\": \"Processes for handling delayed baggage\",\n \"explanation\": \"Delayed baggage is a common issue faced by travelers, and the Baggage Service Center plays a critical role in managing reports and claims associated with this problem. Passengers are advised to report delayed baggage immediately to facilitate its recovery. The structured process for handling delayed baggage, including the issuance of baggage reports, is vital for ensuring that travelers can retrieve their belongings efficiently. This highlights the importance of prompt action in baggage management. [Data: Entities (115, 122), Relationships (223, 249)]\"\n },\n {\n \"summary\": \"Assistance with forgotten items\",\n \"explanation\": \"The Baggage Service Center also assists travelers with forgotten items left on board aircraft. This service is crucial for helping passengers recover personal belongings that may have been inadvertently left behind. The center's role in managing forgotten items underscores its comprehensive approach to baggage services, ensuring that all aspects of baggage management are addressed. This service can significantly impact traveler satisfaction and the overall perception of the airline's customer service. [Data: Entities (121), Relationships (226)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n113,BAGGAGE SERVICE CENTER,\"The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.\",13\r\n118,CONTACT DETAILS,\"The \"\"CONTACT DETAILS\"\" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.\",2\r\n115,DELAYED BAGGAGE,\"Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.\",2\r\n123,BAGGAGE CLAIM,Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.,1\r\n127,BAGGAGE CLAIMS PROCESS,The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.,1\r\n122,BAGGAGE DELAY,Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.,1\r\n124,BAGGAGE HANDLING,Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.,1\r\n125,BAGGAGE REPORTING,\"Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.\",1\r\n128,DAMAGED BAGGAGE,,1\r\n121,FORGOTTEN ITEM,\"The \"\"FORGOTTEN ITEM\"\" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.\",1\r\n202,CLAIMS DEPARTMENT,The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.,1\r\n120,BAGGAGE REPORT,A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n186,BAGGAGE,BAGGAGE SERVICE CENTER,The Baggage Service Center is dedicated to assisting travelers with various issues related to their baggage. This includes managing problems such as delays and damages that may occur during travel. The center serves as a crucial resource for passengers seeking support and resolution for their baggage-related concerns.,34\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n188,BAGGAGE,CONTACT DETAILS,Contact details are provided for passengers to report baggage issues,23\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n224,BAGGAGE SERVICE CENTER,CLAIM STATUS,The status of a claim can be checked through the Baggage Service Center's worldwide system,15\r\n233,BAGGAGE SERVICE CENTER,CONTACT DETAILS,Contact details provide necessary information for reaching the Baggage Service Center for assistance,15\r\n228,BAGGAGE SERVICE CENTER,BAGGAGE CLAIM,The Baggage Service Center facilitates the baggage claim process for passengers,14\r\n231,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS PROCESS,The Baggage Service Center follows the baggage claims process to assist passengers,14\r\n227,BAGGAGE SERVICE CENTER,BAGGAGE DELAY,The Baggage Service Center is responsible for managing reports of baggage delays,14\r\n229,BAGGAGE SERVICE CENTER,BAGGAGE HANDLING,Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage,14\r\n230,BAGGAGE SERVICE CENTER,BAGGAGE REPORTING,Passengers report baggage issues to the Baggage Service Center for resolution,14\r\n225,BAGGAGE SERVICE CENTER,DAMAGED BAGGAGE,\"The Baggage Service Center is dedicated to assisting travelers with claims related to damaged baggage. It effectively handles cases of damaged baggage reported by passengers, ensuring that their concerns are addressed and resolved in a timely manner.\",14\r\n226,BAGGAGE SERVICE CENTER,FORGOTTEN ITEM,\"The Baggage Service Center is dedicated to assisting passengers with items that have been forgotten on board. It plays a crucial role in helping recover these forgotten items, ensuring that travelers can retrieve their belongings efficiently.\",14\r\n232,BAGGAGE SERVICE CENTER,CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Claims Department to process claims related to baggage,14\r\n249,DELAYED BAGGAGE,BAGGAGE REPORT,A baggage report is issued for delayed baggage at the airport,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-60e79206f5cd46a829b708b240aeb343 b/cache/community_reporting/create_community_report-chat-v2-60e79206f5cd46a829b708b240aeb343 deleted file mode 100644 index 2fa18d3455ca58ca891ccb519f7b26f178a66857..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-60e79206f5cd46a829b708b240aeb343 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"El Al Baggage Policies\",\n \"summary\": \"The community focuses on the baggage policies of El Al, detailing the specifications for carry-on and personal bags, including weight and dimension limits. The relationships among the entities highlight the importance of compliance with these regulations for passengers traveling with El Al.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential for passenger inconvenience and operational challenges if baggage policies are not adhered to.\",\n \"findings\": [\n {\n \"summary\": \"El Al's specific baggage policies\",\n \"explanation\": \"El Al has established specific policies regarding the dimensions and weight limits for carry-on bags and personal bags. These policies are crucial for ensuring that passengers comply with airline regulations, which helps maintain safety and efficiency during boarding. The relationships between the entities indicate that understanding these policies is essential for passengers to avoid issues at the airport. [Data: Relationships (31, 30)]\"\n },\n {\n \"summary\": \"Weight limits for carry-on bags\",\n \"explanation\": \"The maximum weight limit for a carry-on bag is set at 16 kg, while the combined weight limit for all bags is 20 kg. These limits are critical for passengers to know, as exceeding them can lead to additional fees or the need to check bags. The relationship between the '16 KG' and '20 KG' entities with the 'CARRY-ON BAG' entity emphasizes the importance of these weight restrictions in the context of air travel. [Data: Relationships (382, 384)]\"\n },\n {\n \"summary\": \"Dimension restrictions for personal bags\",\n \"explanation\": \"The maximum dimensions for a personal bag are specified as 18 cm in height, 38 cm in width, and 30 cm in depth. These restrictions are important for passengers to ensure their personal items can be accommodated in the cabin. The relationship between the 'PERSONAL BAG' and its dimension specifications highlights the need for compliance to avoid inconvenience during boarding. [Data: Relationships (393)]\"\n },\n {\n \"summary\": \"Oversized items require special arrangements\",\n \"explanation\": \"Oversized items, such as musical instruments, may require prior coordination with the airline and could necessitate an extra seat for transport. This policy is significant for passengers traveling with such items, as failure to arrange for their transport could result in last-minute complications. The relationship between 'OVERSIZED ITEMS' and 'SERVICE CENTER' indicates that passengers must engage with the service center for approval, underscoring the need for proactive communication with the airline. [Data: Relationships (400)]\"\n },\n {\n \"summary\": \"Duty-free items and baggage allowance\",\n \"explanation\": \"Duty-free items purchased at the airport can be carried on board without counting towards the baggage allowance. This is an important consideration for travelers, as it allows them to bring additional items without impacting their baggage limits. The relationship between 'DUTY-FREE ITEMS' and 'BAG' illustrates how these items fit into the overall baggage policy framework. [Data: Relationships (392)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n293,CARRY-ON BAG,\"A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.\",10\r\n292,PERSONAL BAG,\"A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.\",3\r\n289,MAXIMUM WEIGHT,\"The term \"\"Maximum Weight\"\" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.\",3\r\n279,16 KG,\"The entity \"\"16 KG\"\" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.\",3\r\n280,20 KG,\"The entity \"\"20 KG\"\" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.\",3\r\n291,BAG,\"A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.\",3\r\n300,OVERSIZED ITEMS,\"Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.\",2\r\n298,115 CM,The total maximum dimension for a carry-on bag on El Al flights is 115 cm.,1\r\n296,25 CM,The maximum depth for a carry-on bag on El Al flights is 25 cm.,1\r\n295,45 CM,The maximum width for a carry-on bag on El Al flights is 45 cm.,1\r\n294,56 CM,The maximum length for a carry-on bag on El Al flights is 56 cm.,1\r\n278,BAGS,\"Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.\",3\r\n301,EMERGENCY EXIT ROW,The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.,1\r\n297,18X38X30 CM,\"The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.\",1\r\n299,DUTY-FREE ITEMS,Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.,1\r\n302,SERVICE CENTER,El Al's service center is where passengers can coordinate the transport of unusual items.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n30,EL AL,PERSONAL BAG,\"El Al allows passengers to bring a personal bag on board, subject to size restrictions\",52\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n382,16 KG,CARRY-ON BAG,The maximum weight limit for one carry-on bag is 16 kg,13\r\n384,20 KG,CARRY-ON BAG,The combined weight limit for carry-on bags is 20 kg,13\r\n390,BAG,CARRY-ON BAG,A carry-on bag is a type of bag that must meet specific weight and dimension limits,13\r\n398,CARRY-ON BAG,OVERSIZED ITEMS,Oversized items may require special arrangements for transport in the cabin,12\r\n397,CARRY-ON BAG,115 CM,The total maximum dimension for a carry-on bag is 115 cm,11\r\n396,CARRY-ON BAG,25 CM,The maximum depth for a carry-on bag is 25 cm,11\r\n395,CARRY-ON BAG,45 CM,The maximum width for a carry-on bag is 45 cm,11\r\n394,CARRY-ON BAG,56 CM,The maximum length for a carry-on bag is 56 cm,11\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n399,CARRY-ON BAG,EMERGENCY EXIT ROW,Passengers in the emergency exit row may store bags in overhead compartments,11\r\n381,16 KG,MAXIMUM WEIGHT,The maximum weight for one bag is defined as 16 kg,6\r\n379,BAGS,16 KG,The weight limit for one bag is set at 16 kg as per airline policy,6\r\n383,20 KG,MAXIMUM WEIGHT,The maximum combined weight for all bags is defined as 20 kg,6\r\n380,BAGS,20 KG,The combined weight limit for all bags is set at 20 kg as per airline policy,6\r\n391,BAG,PERSONAL BAG,A personal bag is a specific type of bag that passengers can bring on board,6\r\n393,PERSONAL BAG,18X38X30 CM,The maximum dimensions for a personal bag are 18x38x30 cm,4\r\n392,BAG,DUTY-FREE ITEMS,Duty-free items are included in the baggage allowance but do not count towards the limit,4\r\n400,OVERSIZED ITEMS,SERVICE CENTER,Passengers must contact the service center for approval to carry oversized items,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-63221e692c11b2badfa76a83120dcda1 b/cache/community_reporting/create_community_report-chat-v2-63221e692c11b2badfa76a83120dcda1 deleted file mode 100644 index a3c6b1507a6640a774285d05a0b81822a8d5c481..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-63221e692c11b2badfa76a83120dcda1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Air Travel Classes and Sporting Equipment Transport\",\n \"summary\": \"This community encompasses various travel classes offered by airlines, specifically focusing on the transport of sporting equipment. The entities are interconnected through their baggage policies and weight restrictions, which are crucial for passengers traveling with sports gear. The relationships highlight the specific allowances and fees associated with each travel class, impacting travelers' experiences.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the complexities and potential issues surrounding baggage transport, especially for sporting equipment.\",\n \"findings\": [\n {\n \"summary\": \"Business Class offers the most accommodating baggage policies\",\n \"explanation\": \"Business Class provides significant advantages for passengers transporting sporting equipment, allowing for two checked bags each weighing up to 32 kg. This generous allowance is particularly beneficial for athletes and sports enthusiasts who often travel with heavy or oversized gear. The relationship between Business Class and sporting equipment is crucial, as it ensures that travelers can manage their luggage needs effectively without incurring excessive fees. This is supported by the relationship indicating that EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each [Data: Relationships (37)].\"\n },\n {\n \"summary\": \"Premium Class has enhanced but limited baggage allowances\",\n \"explanation\": \"Premium Class offers a balance between cost and service, allowing passengers to check two pieces of baggage weighing up to 23 kg each. This class also permits the transport of sporting equipment under specific conditions, making it a viable option for travelers who need to bring sports gear without the higher costs associated with Business Class. The relationship between Premium Class and sporting equipment highlights the importance of understanding the specific weight and size restrictions that apply, which can affect the overall travel experience [Data: Relationships (36, 295)].\"\n },\n {\n \"summary\": \"Economy Class provides basic options for sporting equipment transport\",\n \"explanation\": \"Economy Class is designed for budget-conscious travelers, allowing for the transport of sporting equipment under certain conditions. Passengers can check up to two pieces of baggage weighing a maximum of 30 kg each, but they must adhere to specific size and weight restrictions. This class is particularly relevant for travelers who may not require extensive baggage allowances but still wish to bring their sports gear. The relationship between Economy Class and sporting equipment emphasizes the need for travelers to be aware of the limitations imposed by this class [Data: Relationships (306, 295)].\"\n },\n {\n \"summary\": \"Weight restrictions are critical for all travel classes\",\n \"explanation\": \"Weight is a significant factor in the transportation of sporting equipment across all travel classes. Each class has specific weight limits that determine whether items can be transported as checked baggage or if they incur additional fees. For instance, sporting equipment exceeding the weight limits can be classified as overweight baggage, leading to extra charges. Understanding these weight restrictions is essential for travelers to avoid unexpected costs and ensure compliance with airline policies [Data: Relationships (143, 304)].\"\n },\n {\n \"summary\": \"The EL AL Cargo Division offers specialized services for excess baggage\",\n \"explanation\": \"The EL AL Cargo Division caters to passengers needing to transport excess baggage, particularly those traveling with more than five pieces of checked baggage. This division is crucial for athletes and sports enthusiasts who may require additional services for oversized or special equipment. The relationship between the Cargo Division and sporting equipment indicates that it provides tailored solutions for transporting gear that exceeds standard baggage allowances, ensuring that passengers can manage their luggage needs effectively [Data: Relationships (108, 299)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n165,BUSINESS CLASS,\"Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.\",5\r\n164,PREMIUM CLASS,\"Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.\",4\r\n162,SPORTING EQUIPMENT,\"Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.\",14\r\n167,EL AL CARGO DIVISION,\"The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.\",2\r\n163,ECONOMY CLASS,\"Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.\",7\r\n35,WEIGHT,\"Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.\",6\r\n38,CARGO,\"CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.\",4\r\n181,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America.,2\r\n174,190 CM,190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.,1\r\n170,ADDITIONAL SPORTS EQUIPMENT,Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.,1\r\n172,30 KG,\"The entity \"\"30 KG\"\" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.\",2\r\n171,32 KG,\"The entity \"\"32 KG\"\" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.\",2\r\n175,LITE FARES,\"LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline's size and weight requirements,39\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,\"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.\",27\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,\"The entity \"\"WEIGHT\"\" is a crucial factor in determining the eligibility of \"\"CARRY-ON BAGGAGE.\"\" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.\",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n304,SPORTING EQUIPMENT,OVERWEIGHT BAGGAGE,\"Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees\",22\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,\"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.\",21\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n143,WEIGHT,SPORTING EQUIPMENT,\"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.\",20\r\n297,SPORTING EQUIPMENT,BUSINESS CLASS,\"Business Class provides the option for transporting sporting equipment, adhering to specific size and weight conditions that differ from those in Economy and Premium Class. This class has distinct weight limits for sporting equipment, allowing for a more accommodating experience for travelers with such items.\",19\r\n155,CARGO,SPORTING EQUIPMENT,\"CARGO provides services for transporting sporting equipment that exceeds standard baggage limits. Specifically, sporting equipment can be transported as cargo when it surpasses the standard baggage allowance, ensuring that athletes and sports enthusiasts can travel with their necessary gear without restrictions.\",18\r\n296,SPORTING EQUIPMENT,PREMIUM CLASS,\"Premium Class provides the option for transporting sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that customers can carry their sporting gear while complying with the established size and weight restrictions.\",18\r\n298,SPORTING EQUIPMENT,DIMENSIONS,Sporting equipment is subject to specific dimensions that are critical for determining whether it can be transported as checked baggage. These dimensions play a vital role in ensuring that the equipment meets airline regulations and can be safely accommodated during travel.,18\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n303,SPORTING EQUIPMENT,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America,16\r\n299,SPORTING EQUIPMENT,EL AL CARGO DIVISION,\"The EL AL Cargo Division offers a specialized service for transporting sporting equipment that exceeds standard baggage limits and allowances. This division provides an alternative solution for individuals and organizations needing to transport larger or heavier sporting gear, ensuring that such items can be shipped efficiently and effectively.\",16\r\n302,SPORTING EQUIPMENT,70 USD,\"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco\",16\r\n301,SPORTING EQUIPMENT,190 CM,\"190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.\",15\r\n300,SPORTING EQUIPMENT,ADDITIONAL SPORTS EQUIPMENT,\"Sporting equipment encompasses a variety of gear used for various sports activities. Within this category, additional sports equipment specifically refers to any extra gear that necessitates special handling or can be transported beyond the standard baggage allowance. This includes items that exceed the typical limits set for standard baggage, ensuring that athletes and sports enthusiasts can carry the necessary equipment for their activities without restrictions.\",15\r\n147,WEIGHT,OVERWEIGHT BAGGAGE,Overweight baggage is defined by exceeding the weight limit set by the airline,14\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n306,ECONOMY CLASS,30 KG,\"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.\",9\r\n154,CARGO,BEN GURION AIRPORT,\"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport\",9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n144,WEIGHT,30 KG,30 kg is the maximum weight limit for sports equipment in Economy Class,8\r\n145,WEIGHT,32 KG,32 kg is the maximum weight limit for sports equipment in Business Class,8\r\n307,ECONOMY CLASS,LITE FARES,\"The Economy Class includes a category known as Lite Fares, which are characterized by certain restrictions and limited services. Specifically, Lite Fares impose limitations on the transport of sporting equipment, differentiating them from standard Economy Class offerings. These fares are designed to provide a more economical option for travelers while offering fewer amenities compared to regular Economy Class fares.\",8\r\n313,BUSINESS CLASS,32 KG,\"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.\",7\r\n328,150 USD,US DOLLARS,\"150 USD is expressed in US Dollars, which is the currency for baggage fees\",6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-63abb6babc442c07d4a4b08b33de5aee b/cache/community_reporting/create_community_report-chat-v2-63abb6babc442c07d4a4b08b33de5aee deleted file mode 100644 index e1509afdf21bf5e059ca5ff71cde9c04f651ebe1..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-63abb6babc442c07d4a4b08b33de5aee +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Travel Classes and Sporting Equipment Transport\",\n \"summary\": \"This community focuses on the relationships between various travel classes, specifically Business Class and Premium Class, and their provisions for transporting sporting equipment. The entities are interconnected through specific baggage allowances and fees associated with transporting sports gear, highlighting the importance of these travel classes for athletes and sports enthusiasts.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the specialized services provided for transporting sporting equipment, which is crucial for athletes and can affect travel logistics significantly.\",\n \"findings\": [\n {\n \"summary\": \"Business Class offers superior baggage allowances\",\n \"explanation\": \"Business Class provides enhanced baggage allowances compared to other travel classes, allowing passengers to check up to two pieces of baggage weighing up to 32 kg each. This is particularly beneficial for travelers with sporting equipment, as it accommodates larger and heavier items that are essential for athletes. The relationship between Business Class and sporting equipment transport is significant, as it enables a more accommodating experience for those needing to travel with sports gear. [Data: Entities (165); Relationships (37, 313)]\"\n },\n {\n \"summary\": \"Premium Class provides additional services for sports equipment\",\n \"explanation\": \"Premium Class also offers specific provisions for transporting sporting equipment, allowing passengers to check up to two pieces of baggage weighing up to 23 kg each. This class is designed for travelers who require enhanced services compared to Economy Class, making it a viable option for those carrying sports gear. The relationship between Premium Class and sporting equipment is crucial for understanding how different travel classes cater to the needs of sports enthusiasts. [Data: Entities (164); Relationships (36, 296)]\"\n },\n {\n \"summary\": \"Sporting equipment transport regulations\",\n \"explanation\": \"Sporting equipment encompasses a variety of items that can be transported under specific conditions. The regulations for transporting these items vary by travel class, with Economy Class, Premium Class, and Business Class each having distinct size and weight restrictions. Understanding these regulations is essential for travelers to ensure compliance and avoid additional fees. The relationship between sporting equipment and the various travel classes highlights the importance of adhering to these guidelines. [Data: Entities (162); Relationships (295, 297, 296)]\"\n },\n {\n \"summary\": \"Cargo services for oversized sporting equipment\",\n \"explanation\": \"CARGO services provide specialized transport for sporting equipment that exceeds standard baggage limits. This is particularly important for athletes who may need to transport larger items, such as bicycles or skis, which cannot be accommodated within the regular baggage allowances. The relationship between CARGO and sporting equipment ensures that travelers have options for transporting their gear efficiently, especially when it surpasses the typical limits set by airlines. [Data: Entities (38); Relationships (155, 299)]\"\n },\n {\n \"summary\": \"Fees associated with transporting sporting equipment\",\n \"explanation\": \"There are specific fees associated with transporting sporting equipment, such as the 150 USD fee for one-way transport to the Far East and North America. This fee structure is important for travelers to consider when planning their trips, as it can significantly impact the overall cost of travel. The relationship between sporting equipment and these fees underscores the financial considerations that athletes and sports enthusiasts must account for when traveling. [Data: Entities (181); Relationships (303)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n165,BUSINESS CLASS,\"Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.\",5\r\n164,PREMIUM CLASS,\"Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.\",4\r\n162,SPORTING EQUIPMENT,\"Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.\",14\r\n38,CARGO,\"CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.\",4\r\n181,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America.,2\r\n167,EL AL CARGO DIVISION,\"The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.\",2\r\n174,190 CM,190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.,1\r\n170,ADDITIONAL SPORTS EQUIPMENT,Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,\"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.\",21\r\n143,WEIGHT,SPORTING EQUIPMENT,\"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.\",20\r\n297,SPORTING EQUIPMENT,BUSINESS CLASS,\"Business Class provides the option for transporting sporting equipment, adhering to specific size and weight conditions that differ from those in Economy and Premium Class. This class has distinct weight limits for sporting equipment, allowing for a more accommodating experience for travelers with such items.\",19\r\n155,CARGO,SPORTING EQUIPMENT,\"CARGO provides services for transporting sporting equipment that exceeds standard baggage limits. Specifically, sporting equipment can be transported as cargo when it surpasses the standard baggage allowance, ensuring that athletes and sports enthusiasts can travel with their necessary gear without restrictions.\",18\r\n296,SPORTING EQUIPMENT,PREMIUM CLASS,\"Premium Class provides the option for transporting sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that customers can carry their sporting gear while complying with the established size and weight restrictions.\",18\r\n303,SPORTING EQUIPMENT,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America,16\r\n299,SPORTING EQUIPMENT,EL AL CARGO DIVISION,\"The EL AL Cargo Division offers a specialized service for transporting sporting equipment that exceeds standard baggage limits and allowances. This division provides an alternative solution for individuals and organizations needing to transport larger or heavier sporting gear, ensuring that such items can be shipped efficiently and effectively.\",16\r\n301,SPORTING EQUIPMENT,190 CM,\"190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.\",15\r\n300,SPORTING EQUIPMENT,ADDITIONAL SPORTS EQUIPMENT,\"Sporting equipment encompasses a variety of gear used for various sports activities. Within this category, additional sports equipment specifically refers to any extra gear that necessitates special handling or can be transported beyond the standard baggage allowance. This includes items that exceed the typical limits set for standard baggage, ensuring that athletes and sports enthusiasts can carry the necessary equipment for their activities without restrictions.\",15\r\n313,BUSINESS CLASS,32 KG,\"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.\",7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-63d459c01322075114f709ff7ce4b81c b/cache/community_reporting/create_community_report-chat-v2-63d459c01322075114f709ff7ce4b81c deleted file mode 100644 index 079507538adc8f7f2548ad6b026177a36cbbf921..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-63d459c01322075114f709ff7ce4b81c +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Pet Transport Regulations in Passenger Cabins\",\n \"summary\": \"This community focuses on the regulations and conditions surrounding the transport of pets, particularly dogs, cats, and exotic birds, in passenger cabins of aircraft. The entities are interconnected through various relationships that outline the responsibilities and conditions for transporting these animals.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for disturbances and safety concerns related to pet transport in aircraft.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's policies on dog transport\",\n \"explanation\": \"EL AL has established specific policies governing the transport of dogs, which include conditions under which they may be refused transport. These policies are crucial for ensuring the safety and comfort of all passengers and crew on board. The regulations highlight the importance of assessing a dog's behavior and health before allowing it on the aircraft. If a dog is deemed a direct threat or causes a disturbance, it may be refused transport, which underscores the airline's commitment to maintaining a safe environment for all travelers. [Data: Relationships (21, 214, 213)]\"\n },\n {\n \"summary\": \"Passenger responsibilities for pet behavior\",\n \"explanation\": \"Passengers are responsible for their pets' behavior during transport, which is a significant aspect of the community's dynamics. This responsibility includes ensuring that the pet meets size and weight restrictions and does not pose a threat to other passengers or crew members. The relationship between the passenger and the dog is critical, as any disturbances caused by the pet can lead to refusal of transport. This highlights the need for passengers to be well-informed about the regulations and to prepare adequately for traveling with their pets. [Data: Relationships (212, 207)]\"\n },\n {\n \"summary\": \"Transport conditions for various pets\",\n \"explanation\": \"Different types of pets, including cats and exotic birds, have specific conditions for transport in the passenger cabin. These conditions are primarily related to size and weight restrictions, which are essential for ensuring that all animals can be accommodated safely. The inclusion of various pet types in the transport regulations indicates a broader understanding of passenger needs and preferences, as well as the airline's commitment to providing a pet-friendly travel experience. [Data: Relationships (208, 209)]\"\n },\n {\n \"summary\": \"Direct threats and disturbances from dogs\",\n \"explanation\": \"The community recognizes that dogs can pose direct threats or cause disturbances during transport, which can lead to their refusal for boarding. This aspect is critical for maintaining safety and comfort in the passenger cabin. The airline's policies are designed to mitigate these risks by assessing the dog's behavior prior to boarding. This proactive approach is essential for preventing incidents that could disrupt the travel experience for other passengers. [Data: Relationships (214, 213)]\"\n },\n {\n \"summary\": \"Service dogs and their transport privileges\",\n \"explanation\": \"Service dogs are allowed in the passenger cabin at no additional cost under certain conditions, which reflects the community's commitment to accommodating individuals with disabilities. This provision is vital for ensuring that passengers who rely on service animals can travel without additional barriers. The relationship between service dogs and the passenger cabin highlights the importance of inclusivity in air travel policies. [Data: Relationships (53)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n97,DOG,A dog is an animal that may be transported by passengers under certain conditions and regulations.,5\r\n89,PASSENGER CABIN,\"The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.\",5\r\n91,CAT,\"Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.\",1\r\n111,DIRECT THREAT,A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.,1\r\n110,DISTURBANCE,\"A situation where the dog's behavior causes disruption on the aircraft, leading to potential refusal of transport.\",1\r\n92,EXOTIC BIRD,\"Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n21,EL AL,DOG,\"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused\",54\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n53,SERVICE DOG,PASSENGER CABIN,Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.,21\r\n212,DOG,PASSENGER,The passenger is responsible for the dog's behavior and must meet conditions for its transport,12\r\n207,PASSENGER CABIN,DOG,Dogs can be transported in the passenger cabin under specific conditions related to size and weight.,10\r\n208,PASSENGER CABIN,CAT,Cats can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n214,DOG,DIRECT THREAT,\"If a dog is deemed a direct threat, it may be refused transport by EL AL\",6\r\n213,DOG,DISTURBANCE,\"A dog's behavior may lead to a disturbance, affecting its ability to be transported\",6\r\n209,PASSENGER CABIN,EXOTIC BIRD,Exotic birds can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-65d1d775c0f05da69b2f00ea65e527d7 b/cache/community_reporting/create_community_report-chat-v2-65d1d775c0f05da69b2f00ea65e527d7 deleted file mode 100644 index 6c5e43c1c156fd4c9f29da4b5da9ce67ad811f73..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-65d1d775c0f05da69b2f00ea65e527d7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Ben Gurion Airport and Animal Transport Community\",\n \"summary\": \"The community centers around Ben Gurion Airport, which serves as the primary hub for animal transport in Israel. Key entities include EL AL Israel Airlines, the Baggage Claims Department, and Veterinary Services, all of which play critical roles in ensuring compliance and facilitating the transport of animals.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the complexities and regulatory requirements associated with animal transport, which can affect public health and safety.\",\n \"findings\": [\n {\n \"summary\": \"Ben Gurion Airport as a central hub for animal transport\",\n \"explanation\": \"Ben Gurion Airport is the main international airport in Israel and serves as a critical hub for the transport of animals. It is where animals are released after transport, and it requires compliance with various regulations regarding their movement. The airport's role is pivotal in ensuring that all necessary documentation and health checks are completed before animals are allowed to travel. This centrality in the transport process makes it a key player in the community's dynamics. [Data: Entities (54); Relationships (19, 183, 131)]\"\n },\n {\n \"summary\": \"Role of EL AL Israel Airlines in animal transport\",\n \"explanation\": \"EL AL Israel Airlines is a significant entity in this community, operating flights that include the transport of animals. The airline is responsible for ensuring that all baggage, including pets, is handled according to regulations. Their operations at Ben Gurion Airport are crucial for the safe and compliant transport of animals, making them a key stakeholder in this community. [Data: Entities (205); Relationships (19, 184)]\"\n },\n {\n \"summary\": \"Importance of the Baggage Claims Department\",\n \"explanation\": \"The Baggage Claims Department plays a vital role in managing reports of lost or damaged baggage, which includes animals transported by air. This department coordinates with various service providers to ensure that claims are processed efficiently, enhancing the overall travel experience for passengers. Their operations are essential for maintaining trust and satisfaction among travelers, particularly those transporting pets. [Data: Entities (114); Relationships (222, 235)]\"\n },\n {\n \"summary\": \"Veterinary Services and regulatory compliance\",\n \"explanation\": \"Veterinary Services, operating under the Ministry of Agriculture, is responsible for overseeing the authorization process for transporting pets. This includes issuing flight permits and ensuring that all health regulations are met. Their involvement is crucial for public health and safety, as they ensure that only healthy animals are transported, thereby preventing potential health risks. [Data: Entities (18); Relationships (4, 131)]\"\n },\n {\n \"summary\": \"Documentation requirements for animal transport\",\n \"explanation\": \"The transport of animals requires specific documentation, including a Certificate of Good Health and other essential papers. Passengers must ensure that all necessary documents are completed to comply with regulations. This requirement underscores the importance of proper documentation in facilitating safe and legal transport of animals, which is a critical aspect of the community's operations. [Data: Entities (60, 43); Relationships (180, 115)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n54,BEN GURION AIRPORT,\"Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.\",5\r\n114,BAGGAGE CLAIMS DEPARTMENT,\"The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.\",16\r\n60,DOCUMENTS,\"The entity \"\"DOCUMENTS\"\" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.\",5\r\n205,EL AL ISRAEL AIRLINES LTD.,EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.,2\r\n206,DIGITAL CONTACT FORM,The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.,1\r\n208,WE SHOES,WeShoes is a store that sells shoes and may also provide related services.,1\r\n209,MEMSI TOURING,\"Memsi Touring is a service provider that may offer travel-related services, including baggage handling.\",1\r\n211,SHIN TIK,\"Shin Tik is a service provider that may offer travel-related services, including baggage handling.\",1\r\n212,TREK MARKET,\"Trek Market is a service provider that may offer travel-related services, including baggage handling.\",1\r\n213,KIRYAT ONO,Kiryat Ono is a city in Israel where various stores and services related to baggage are located.,1\r\n214,RAMAT GAN,Ramat Gan is a city in Israel where various stores and services related to baggage are located.,1\r\n215,GEVATAIM,Gevataim is a city in Israel where various stores and services related to baggage are located.,1\r\n216,BAT YAM,Bat Yam is a city in Israel where various stores and services related to baggage are located.,1\r\n217,HOLON,Holon is a city in Israel where various stores and services related to baggage are located.,1\r\n218,PETACH TIKVA,Petach Tikva is a city in Israel where various stores and services related to baggage are located.,1\r\n43,CERTIFICATE OF GOOD HEALTH,\"A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey.\",3\r\n18,VETERINARY SERVICES,\"The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.\",4\r\n55,RABIES ANTIBODY TEST,A test required to confirm that the animal has been vaccinated against rabies.,1\r\n20,AUTHORIZATION PROCESS,The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n183,BEN GURION AIRPORT,BAGGAGE,\"Baggage, including pets, is released at Ben Gurion Airport's arrivals hall\",26\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n235,BAGGAGE CLAIMS DEPARTMENT,EL AL ISRAEL AIRLINES LTD.,The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.,18\r\n236,BAGGAGE CLAIMS DEPARTMENT,DIGITAL CONTACT FORM,The Digital Contact Form is used to submit claims to the Baggage Claims Department.,17\r\n238,BAGGAGE CLAIMS DEPARTMENT,WE SHOES,WeShoes may provide services related to baggage handling and claims.,17\r\n239,BAGGAGE CLAIMS DEPARTMENT,MEMSI TOURING,Memsi Touring may offer services that assist with baggage handling and claims.,17\r\n241,BAGGAGE CLAIMS DEPARTMENT,SHIN TIK,Shin Tik may provide services that assist with baggage handling and claims.,17\r\n242,BAGGAGE CLAIMS DEPARTMENT,TREK MARKET,Trek Market may offer services that assist with baggage handling and claims.,17\r\n243,BAGGAGE CLAIMS DEPARTMENT,KIRYAT ONO,Kiryat Ono has stores that may assist with baggage claims and services.,17\r\n244,BAGGAGE CLAIMS DEPARTMENT,RAMAT GAN,Ramat Gan has stores that may assist with baggage claims and services.,17\r\n245,BAGGAGE CLAIMS DEPARTMENT,GEVATAIM,Gevataim has stores that may assist with baggage claims and services.,17\r\n246,BAGGAGE CLAIMS DEPARTMENT,BAT YAM,Bat Yam has stores that may assist with baggage claims and services.,17\r\n247,BAGGAGE CLAIMS DEPARTMENT,HOLON,Holon has stores that may assist with baggage claims and services.,17\r\n248,BAGGAGE CLAIMS DEPARTMENT,PETACH TIKVA,Petach Tikva has stores that may assist with baggage claims and services.,17\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n131,VETERINARY SERVICES,BEN GURION AIRPORT,Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport,9\r\n154,CARGO,BEN GURION AIRPORT,\"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport\",9\r\n132,VETERINARY SERVICES,DOCUMENTS,Veterinary Services requires specific documents for animal transport authorization,9\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n180,CERTIFICATE OF GOOD HEALTH,DOCUMENTS,A certificate of good health is one of the required documents for transport,8\r\n184,BEN GURION AIRPORT,EL AL ISRAEL AIRLINES LTD.,\"EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.\",7\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n185,RABIES ANTIBODY TEST,DOCUMENTS,A rabies antibody test is another required document for transport,6\r\n130,VETERINARY SERVICES,AUTHORIZATION PROCESS,The authorization process is managed by the Veterinary Services to ensure compliance with regulations,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-67140ef2cceebfa98b6bf3e2062ddd5b b/cache/community_reporting/create_community_report-chat-v2-67140ef2cceebfa98b6bf3e2062ddd5b deleted file mode 100644 index a076d38328ea955b4db20cc35ba29826e7c3c573..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-67140ef2cceebfa98b6bf3e2062ddd5b +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Animal Transportation Regulations\",\n \"summary\": \"The community focuses on the regulations and guidelines surrounding the transportation of animals, including specific weight limits and restrictions at various airports. Key entities include weight classifications for animals, transport methods, and guidelines set by authorities.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential legal and welfare implications associated with the transportation of animals.\",\n \"findings\": [\n {\n \"summary\": \"Weight classifications are critical for transport\",\n \"explanation\": \"The weight of an animal is a crucial factor in determining how it can be transported. Animals weighing up to 9 kg can travel in the cabin, while those over 100 kg must be transported as registered cargo. This classification affects not only the comfort of the animals but also compliance with airline regulations. The distinction between cabin and cargo transport is essential for ensuring the safety and well-being of the animals during travel [Data: Entities (58, 59, 41); Relationships (159, 160)].\"\n },\n {\n \"summary\": \"Airports impose restrictions on animal transport\",\n \"explanation\": \"Several airports, including Amsterdam, Boston, and Mumbai, have specific regulations that prohibit the transport of animals as registered cargo. This restriction can significantly impact travel plans for pet owners and may require them to seek alternative routes or methods for transporting their animals. Understanding these restrictions is vital for compliance and planning [Data: Entities (62, 63, 64); Relationships (162, 161, 163)].\"\n },\n {\n \"summary\": \"Guidelines ensure compliance with transport regulations\",\n \"explanation\": \"The guidelines established by destination authorities dictate the necessary requirements for transporting animals. These guidelines are essential for ensuring that all transport activities comply with safety and welfare standards, which can vary significantly from one country to another. Adhering to these guidelines is crucial for avoiding legal issues and ensuring the well-being of the animals [Data: Entities (40); Relationships (156)].\"\n },\n {\n \"summary\": \"Permits and cages are mandatory for safe transport\",\n \"explanation\": \"Transporting animals requires specific permits and the use of cages to ensure their safety during travel. The necessity of these items highlights the importance of compliance with regulations and the welfare of the animals. Failure to secure the appropriate permits or use proper cages can lead to legal repercussions and jeopardize the animals' safety [Data: Entities (41); Relationships (148, 141)].\"\n },\n {\n \"summary\": \"EL AL's role in animal transport\",\n \"explanation\": \"EL AL provides transport services for animals across various classes, indicating a structured approach to animal transportation. This service is significant as it reflects the airline's commitment to adhering to regulations while providing options for pet owners. The relationship between EL AL and animal transport underscores the importance of choosing compliant carriers for safe travel [Data: Relationships (17)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n41,ANIMAL,\"Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations. These regulations are designed to ensure the safety and well-being of the animals during transportation.\",29\r\n59,100 KG,\"The entity \"\"100 KG\"\" refers to the maximum weight limit for transporting pets as baggage. According to the provided descriptions, pets that weigh 100 kg or less can be transported in the cabin as baggage, while those exceeding this weight must be transported as registered cargo. Therefore, any animal weighing more than 100 kg is required to be transported as cargo rather than as baggage.\",1\r\n58,9 KG,\"The entity \"\"9 KG\"\" refers to the weight limit for pets that can be transported as baggage on an aircraft. Specifically, animals weighing up to 9 kg can typically be transported in the aircraft cabin without any additional requirements.\",1\r\n62,AMSTERDAM,Amsterdam is an airport from which animals cannot be transported as registered cargo.,1\r\n57,ANIMAL WEIGHT,The weight of the animal is a critical factor in determining the mode of transport.,1\r\n79,BANGKOK,,1\r\n63,BOSTON,Boston is an airport from which animals cannot be transported as registered cargo.,1\r\n64,MUMBAI,Mumbai is an airport from which animals cannot be transported as registered cargo.,1\r\n65,BRUSSELS,Brussels is an airport from which animals cannot be transported as registered cargo.,1\r\n66,LARNACA,Larnaca is an airport from which animals cannot be transported as registered cargo.,1\r\n67,FRANKFURT,Frankfurt is an airport from which animals cannot be transported as registered cargo.,1\r\n68,MOSCOW,Moscow is an airport from which animals cannot be transported as registered cargo.,1\r\n69,MUNICH,Munich is an airport from which animals cannot be transported as registered cargo.,1\r\n70,MADRID,Madrid is an airport from which animals cannot be transported as registered cargo.,1\r\n71,BERLIN,Berlin is an airport from which animals cannot be transported as registered cargo.,1\r\n72,PRAGUE,Prague is an airport from which animals cannot be transported as registered cargo.,1\r\n73,WARSAW,Warsaw is an airport from which animals cannot be transported as registered cargo.,1\r\n74,TORONTO,Toronto is an airport from which animals cannot be transported as registered cargo.,1\r\n75,VIENNA,Vienna is an airport from which animals cannot be transported as registered cargo.,1\r\n76,BUDAPEST,Budapest is an airport from which animals cannot be transported as registered cargo.,1\r\n77,KYIV,Kyiv is an airport from which animals cannot be transported as registered cargo.,1\r\n78,ROME,Rome is an airport from which animals cannot be transported as registered cargo.,1\r\n40,GUIDELINES,\"The term \"\"GUIDELINES\"\" refers to the regulations established by the authorities of a destination country regarding the transportation of animals, as well as updated rules concerning the carrying of liquids in carry-on bags. These guidelines are essential for ensuring compliance with safety and welfare standards during travel.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n17,EL AL,ANIMAL,EL AL provides transport services for animals in various classes,78\r\n157,ANIMAL,BAGGAGE,Animals can be transported as baggage in the aircraft cabin or hold,50\r\n142,WEIGHT,ANIMAL,\"The weight of the animal determines the mode of transport, affecting whether it travels in the cabin or as cargo.\",35\r\n153,CARGO,ANIMAL,\"Animals can be transported as cargo, which is a specific route type for shipping them in the aircraft hold.\",33\r\n110,REGISTERED CARGO,ANIMAL,Animals exceeding weight limits must be transported as registered cargo,32\r\n141,CAGE,ANIMAL,\"A cage is required for the safe transport of animals, ensuring they are secure during travel.\",31\r\n148,PERMIT,ANIMAL,\"A permit is necessary for the transport of animals, ensuring compliance with regulations.\",31\r\n160,ANIMAL,100 KG,Animals weighing more than 100 kg must be transported as registered cargo,30\r\n159,ANIMAL,9 KG,Animals weighing up to 9 kg can be transported in the aircraft cabin,30\r\n162,ANIMAL,AMSTERDAM,Animals cannot be transported as registered cargo from Amsterdam,30\r\n158,ANIMAL,ANIMAL WEIGHT,The weight of the animal determines the mode of transport,30\r\n161,ANIMAL,BANGKOK,Animals cannot be transported as registered cargo from Bangkok,30\r\n163,ANIMAL,BOSTON,Animals cannot be transported as registered cargo from Boston,30\r\n164,ANIMAL,MUMBAI,Animals cannot be transported as registered cargo from Mumbai,30\r\n165,ANIMAL,BRUSSELS,Animals cannot be transported as registered cargo from Brussels,30\r\n166,ANIMAL,LARNACA,Animals cannot be transported as registered cargo from Larnaca,30\r\n167,ANIMAL,FRANKFURT,Animals cannot be transported as registered cargo from Frankfurt,30\r\n168,ANIMAL,MOSCOW,Animals cannot be transported as registered cargo from Moscow,30\r\n169,ANIMAL,MUNICH,Animals cannot be transported as registered cargo from Munich,30\r\n170,ANIMAL,MADRID,Animals cannot be transported as registered cargo from Madrid,30\r\n171,ANIMAL,BERLIN,Animals cannot be transported as registered cargo from Berlin,30\r\n172,ANIMAL,PRAGUE,Animals cannot be transported as registered cargo from Prague,30\r\n173,ANIMAL,WARSAW,Animals cannot be transported as registered cargo from Warsaw,30\r\n174,ANIMAL,TORONTO,Animals cannot be transported as registered cargo from Toronto,30\r\n175,ANIMAL,VIENNA,Animals cannot be transported as registered cargo from Vienna,30\r\n176,ANIMAL,BUDAPEST,Animals cannot be transported as registered cargo from Budapest,30\r\n177,ANIMAL,KYIV,Animals cannot be transported as registered cargo from Kyiv,30\r\n178,ANIMAL,ROME,Animals cannot be transported as registered cargo from Rome,30\r\n156,GUIDELINES,ANIMAL,Guidelines from destination authorities dictate the transport requirements for animals.,30\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-687bf169b1a4d45cb294d0b972c00505 b/cache/community_reporting/create_community_report-chat-v2-687bf169b1a4d45cb294d0b972c00505 deleted file mode 100644 index 7379ac0af7034ea1fa1b965b7897559e5985e4b7..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-687bf169b1a4d45cb294d0b972c00505 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Hagalgal and Bugaboo: Baby Equipment Community\",\n \"summary\": \"The community centers around Hagalgal, an Israeli center for baby and children equipment, and Bugaboo, a provider of baby carriages and strollers. Hagalgal's services are complemented by Bugaboo's offerings, creating a network focused on baby-related products and services.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the community's focus on essential baby equipment, which is critical for families but does not pose significant risks or controversies.\",\n \"findings\": [\n {\n \"summary\": \"Hagalgal as a central entity in baby equipment\",\n \"explanation\": \"Hagalgal serves as a key player in the baby equipment market, providing a wide range of goods and services, including pickup and delivery. This makes it a vital resource for parents seeking convenience and quality in baby products. The center's focus on baby and children equipment positions it as a trusted entity in the community, catering to the needs of families. Hagalgal's services are essential for new parents, ensuring they have access to necessary items for their children. [Data: Entities (237)]\"\n },\n {\n \"summary\": \"Bugaboo's role in the community\",\n \"explanation\": \"Bugaboo specializes in baby carriages and strollers, which are integral to the baby equipment category that Hagalgal focuses on. The relationship between Hagalgal and Bugaboo highlights a collaborative effort to provide comprehensive solutions for parents. Bugaboo's reputation for quality and innovation in stroller design complements Hagalgal's offerings, making them a significant part of the community. This partnership enhances the overall value proposition for customers seeking reliable baby products. [Data: Entities (238), Relationships (355)]\"\n },\n {\n \"summary\": \"Interconnected services between Hagalgal and Bugaboo\",\n \"explanation\": \"The relationship between Hagalgal and Bugaboo indicates a synergy in their services, where Hagalgal's broad range of baby equipment includes Bugaboo's specialized products. This interconnectedness allows for a more comprehensive shopping experience for parents, who can find various baby-related items in one place. The collaboration between these entities enhances customer satisfaction and loyalty, as families can rely on a single source for their baby equipment needs. [Data: Relationships (355)]\"\n },\n {\n \"summary\": \"Potential for community growth\",\n \"explanation\": \"The community surrounding Hagalgal and Bugaboo has significant potential for growth, especially as the demand for baby products continues to rise. With an increasing number of families seeking quality baby equipment, both entities are well-positioned to expand their offerings and reach. This growth could lead to new partnerships and collaborations within the baby product sector, further enhancing the community's impact and relevance. [Data: Entities (237, 238)]\"\n },\n {\n \"summary\": \"Importance of delivery services\",\n \"explanation\": \"Hagalgal's provision of pickup and delivery services is a crucial aspect of its business model, catering to the convenience needs of modern parents. This service not only enhances customer experience but also positions Hagalgal as a forward-thinking entity in the baby equipment market. The ability to deliver essential items directly to customers' homes is particularly valuable for busy families, making Hagalgal a preferred choice for baby equipment. [Data: Entities (237)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n237,HAGALGAL,\"Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.\",2\r\n238,BUGABOO,\"Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n345,ARTY RIMON,HAGALGAL,\"Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon\",14\r\n355,HAGALGAL,BUGABOO,\"Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in\",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-694517f588d69e29593d96a6c0b51e06 b/cache/community_reporting/create_community_report-chat-v2-694517f588d69e29593d96a6c0b51e06 deleted file mode 100644 index da04d1d5c9b20281c6824952cf31908664384940..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-694517f588d69e29593d96a6c0b51e06 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Animal Transport Documentation in Israel\",\n \"summary\": \"The community focuses on the essential documentation required for the transportation of animals to and from Israel, including the Certificate of Good Health and the Rabies Antibody Test. These entities are interconnected through various relationships that outline the requirements for compliance with regulations governing animal transport.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of compliance with animal transport regulations, which can affect public health and safety.\",\n \"findings\": [\n {\n \"summary\": \"Importance of Documentation for Animal Transport\",\n \"explanation\": \"The entity 'DOCUMENTS' encompasses all essential paperwork required for transporting animals to and from Israel. This includes specific documents necessary for obtaining authorization to transport an animal into the country. The requirement for passengers to have all necessary documentation readily available is crucial for compliance with regulations regarding animal transport. Failure to complete these documents can lead to significant delays or denial of transport, impacting both the animals and their owners. [Data: Entities (60), Relationships (66, 132, 202, 180, 185)]\"\n },\n {\n \"summary\": \"Role of the Certificate of Good Health\",\n \"explanation\": \"The 'CERTIFICATE OF GOOD HEALTH' is a vital document required for transporting pets, ensuring that they are fit for travel. This certificate confirms the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey. The relationships with the Cargo Division and Veterinary Services Department highlight its necessity, as these entities require this certificate for compliance with transport regulations. [Data: Entities (43), Relationships (115, 151, 180)]\"\n },\n {\n \"summary\": \"Rabies Antibody Test Requirement\",\n \"explanation\": \"The 'RABIES ANTIBODY TEST' is a specific requirement to confirm that the animal has been vaccinated against rabies. This test is crucial for ensuring public health and safety, as rabies is a serious disease that can be transmitted to humans. The relationship between the rabies test and the documentation required for transport emphasizes the importance of this test in the overall compliance process. [Data: Entities (55), Relationships (185)]\"\n },\n {\n \"summary\": \"Interconnectedness of Documentation Entities\",\n \"explanation\": \"The relationships among the entities highlight the interconnectedness of the documentation required for animal transport. For instance, the Certificate of Good Health is linked to both the DOCUMENTS entity and the Rabies Antibody Test, indicating that these documents must be completed in conjunction to ensure compliance. This interconnectedness underscores the complexity of the requirements for transporting animals and the need for thorough preparation by passengers. [Data: Relationships (66, 115, 151, 180, 185)]\"\n },\n {\n \"summary\": \"Passenger Responsibilities\",\n \"explanation\": \"Passengers are required to have all necessary documents available for their flight, which includes the completion of the DOCUMENTS entity. This responsibility places a significant burden on pet owners, as they must ensure that all paperwork is in order before travel. The potential for oversight in documentation can lead to complications during travel, emphasizing the importance of awareness and preparation among passengers. [Data: Relationships (202)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n60,DOCUMENTS,\"The entity \"\"DOCUMENTS\"\" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.\",5\r\n43,CERTIFICATE OF GOOD HEALTH,\"A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey.\",3\r\n55,RABIES ANTIBODY TEST,A test required to confirm that the animal has been vaccinated against rabies.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n132,VETERINARY SERVICES,DOCUMENTS,Veterinary Services requires specific documents for animal transport authorization,9\r\n180,CERTIFICATE OF GOOD HEALTH,DOCUMENTS,A certificate of good health is one of the required documents for transport,8\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n185,RABIES ANTIBODY TEST,DOCUMENTS,A rabies antibody test is another required document for transport,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-6952e4aad4c4de46f5da294c6801a4f7 b/cache/community_reporting/create_community_report-chat-v2-6952e4aad4c4de46f5da294c6801a4f7 deleted file mode 100644 index cc58ec4b4ffe4d6fee89741fbe34feb490ac5439..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-6952e4aad4c4de46f5da294c6801a4f7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Claims Community\",\n \"summary\": \"The Baggage Claims Community is centered around the Baggage Claims Department, which coordinates with various service providers and cities to manage baggage issues. Key entities include service providers like WeShoes, Memsi Touring, and Shin Tik, as well as cities such as Kiryat Ono and Ramat Gan, which host stores related to baggage services.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the essential role of the Baggage Claims Department in enhancing passenger experience and the potential for operational disruptions.\",\n \"findings\": [\n {\n \"summary\": \"Central role of the Baggage Claims Department\",\n \"explanation\": \"The Baggage Claims Department is the core entity in this community, responsible for managing reports of damaged baggage and processing claims. This department plays a crucial role in ensuring that passengers receive assistance and compensation for baggage issues, which is vital for maintaining customer satisfaction in the travel industry. The department's relationships with various service providers and cities enhance its operational capabilities, making it a pivotal player in the baggage handling ecosystem. [Data: Entities (114); Relationships (222, 235, 240, 236, 238, +more)]\"\n },\n {\n \"summary\": \"Diverse service providers supporting baggage claims\",\n \"explanation\": \"Multiple service providers, including WeShoes, Memsi Touring, and Shin Tik, are linked to the Baggage Claims Department, offering various services that assist with baggage handling and claims. These providers contribute to the efficiency of the claims process by offering specialized services that can expedite the resolution of baggage issues. Their involvement is crucial for the department's ability to manage claims effectively, thereby enhancing the overall travel experience for passengers. [Data: Entities (208, 209, 211); Relationships (238, 239, 241, 242, +more)]\"\n },\n {\n \"summary\": \"Importance of the Digital Contact Form\",\n \"explanation\": \"The Digital Contact Form is a key tool used by passengers to report baggage issues to the Baggage Claims Department. This form streamlines the claims process, allowing for quicker reporting and resolution of baggage problems. Its integration into the claims management system is essential for improving passenger experience, as it provides a user-friendly method for submitting claims. [Data: Entities (206); Relationships (236)]\"\n },\n {\n \"summary\": \"Geographical distribution of baggage-related services\",\n \"explanation\": \"Cities such as Kiryat Ono, Ramat Gan, Gevataim, and others host various stores and services related to baggage handling. This geographical distribution indicates a well-established network of support for the Baggage Claims Department, allowing passengers to access assistance and services conveniently. The presence of these cities in the community highlights the importance of local partnerships in enhancing the efficiency of baggage claims processing. [Data: Entities (213, 214, 215, 216, 217, 218); Relationships (243, 244, 245, 246, 247, 248)]\"\n },\n {\n \"summary\": \"Collaboration with airlines\",\n \"explanation\": \"The Baggage Claims Department operates under EL AL Israel Airlines Ltd., which emphasizes the department's role in the airline's customer service strategy. This collaboration ensures that baggage issues are addressed promptly, reflecting the airline's commitment to passenger satisfaction. The relationship with the airline is critical for the department's operational success, as it aligns the baggage claims process with the airline's overall service standards. [Data: Relationships (235)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n114,BAGGAGE CLAIMS DEPARTMENT,\"The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.\",16\r\n206,DIGITAL CONTACT FORM,The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.,1\r\n208,WE SHOES,WeShoes is a store that sells shoes and may also provide related services.,1\r\n209,MEMSI TOURING,\"Memsi Touring is a service provider that may offer travel-related services, including baggage handling.\",1\r\n211,SHIN TIK,\"Shin Tik is a service provider that may offer travel-related services, including baggage handling.\",1\r\n212,TREK MARKET,\"Trek Market is a service provider that may offer travel-related services, including baggage handling.\",1\r\n213,KIRYAT ONO,Kiryat Ono is a city in Israel where various stores and services related to baggage are located.,1\r\n214,RAMAT GAN,Ramat Gan is a city in Israel where various stores and services related to baggage are located.,1\r\n215,GEVATAIM,Gevataim is a city in Israel where various stores and services related to baggage are located.,1\r\n216,BAT YAM,Bat Yam is a city in Israel where various stores and services related to baggage are located.,1\r\n217,HOLON,Holon is a city in Israel where various stores and services related to baggage are located.,1\r\n218,PETACH TIKVA,Petach Tikva is a city in Israel where various stores and services related to baggage are located.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n235,BAGGAGE CLAIMS DEPARTMENT,EL AL ISRAEL AIRLINES LTD.,The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.,18\r\n236,BAGGAGE CLAIMS DEPARTMENT,DIGITAL CONTACT FORM,The Digital Contact Form is used to submit claims to the Baggage Claims Department.,17\r\n238,BAGGAGE CLAIMS DEPARTMENT,WE SHOES,WeShoes may provide services related to baggage handling and claims.,17\r\n239,BAGGAGE CLAIMS DEPARTMENT,MEMSI TOURING,Memsi Touring may offer services that assist with baggage handling and claims.,17\r\n241,BAGGAGE CLAIMS DEPARTMENT,SHIN TIK,Shin Tik may provide services that assist with baggage handling and claims.,17\r\n242,BAGGAGE CLAIMS DEPARTMENT,TREK MARKET,Trek Market may offer services that assist with baggage handling and claims.,17\r\n243,BAGGAGE CLAIMS DEPARTMENT,KIRYAT ONO,Kiryat Ono has stores that may assist with baggage claims and services.,17\r\n244,BAGGAGE CLAIMS DEPARTMENT,RAMAT GAN,Ramat Gan has stores that may assist with baggage claims and services.,17\r\n245,BAGGAGE CLAIMS DEPARTMENT,GEVATAIM,Gevataim has stores that may assist with baggage claims and services.,17\r\n246,BAGGAGE CLAIMS DEPARTMENT,BAT YAM,Bat Yam has stores that may assist with baggage claims and services.,17\r\n247,BAGGAGE CLAIMS DEPARTMENT,HOLON,Holon has stores that may assist with baggage claims and services.,17\r\n248,BAGGAGE CLAIMS DEPARTMENT,PETACH TIKVA,Petach Tikva has stores that may assist with baggage claims and services.,17\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-6975423f686951b359a9e01306566282 b/cache/community_reporting/create_community_report-chat-v2-6975423f686951b359a9e01306566282 deleted file mode 100644 index be1c403f56b1211233c30807f36ca1cf9b179b38..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-6975423f686951b359a9e01306566282 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Oversized and Overweight Baggage Management\",\n \"summary\": \"The community focuses on the management of oversized and overweight baggage within the airline industry. It includes key entities such as oversized and overweight baggage and the designated location for handling such baggage, highlighting their interrelated roles in ensuring proper processing and compliance with airline regulations.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for operational delays and customer dissatisfaction associated with oversized and overweight baggage handling.\",\n \"findings\": [\n {\n \"summary\": \"Definition and implications of oversized and overweight baggage\",\n \"explanation\": \"Oversized and overweight baggage refers to luggage that exceeds standard airline size and weight limits, necessitating special handling procedures. This category of baggage can lead to additional fees and operational challenges for airlines, impacting customer experience and efficiency. The need for special handling can create bottlenecks in the check-in process, leading to longer wait times for passengers and potential flight delays. [Data: Entities (340); Relationships (199)]\"\n },\n {\n \"summary\": \"Role of the designated baggage location\",\n \"explanation\": \"The designated oversized/overweight baggage location is critical for managing the check-in process for passengers with such baggage. This location serves as a specific point for handling oversized and overweight items, ensuring that they are processed appropriately. By centralizing the handling of these items, airlines can streamline operations and reduce confusion among passengers, thereby enhancing overall travel experience. [Data: Entities (342); Relationships (323, 403, 417)]\"\n },\n {\n \"summary\": \"Interconnectedness of baggage categories\",\n \"explanation\": \"The relationships between oversized baggage, overweight baggage, and the designated baggage location illustrate the interconnected nature of baggage management. Passengers with either type of baggage must utilize the designated location for check-in, which emphasizes the importance of clear signage and communication from airlines to avoid misunderstandings. This interconnectedness can also lead to operational challenges if not managed effectively, as multiple passengers may arrive simultaneously with oversized or overweight items. [Data: Relationships (323, 403, 417)]\"\n },\n {\n \"summary\": \"Potential for additional fees\",\n \"explanation\": \"Passengers with oversized and overweight baggage often incur additional fees, which can lead to dissatisfaction and complaints. Airlines must balance the need to enforce baggage policies with the importance of customer service. Clear communication regarding fees and policies at the time of booking and check-in can mitigate negative experiences and enhance customer satisfaction. [Data: Entities (340); Relationships (199)]\"\n },\n {\n \"summary\": \"Operational challenges in baggage handling\",\n \"explanation\": \"The handling of oversized and overweight baggage presents unique operational challenges for airlines. These items require special equipment and procedures, which can strain resources, especially during peak travel times. Airlines must ensure that staff are adequately trained to manage these items efficiently to minimize delays and maintain a positive customer experience. [Data: Relationships (323, 403, 417)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n340,OVERSIZED AND OVERWEIGHT BAGGAGE,\"Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees.\",2\r\n342,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,\"The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.\",3\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n199,BAGGAGE,OVERSIZED AND OVERWEIGHT BAGGAGE,Oversized and overweight baggage are categories of baggage that exceed standard limits,23\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n417,OVERSIZED AND OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized and overweight baggage must take their luggage to the designated location,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-6d977874a16323f365318cc94c17df1b b/cache/community_reporting/create_community_report-chat-v2-6d977874a16323f365318cc94c17df1b deleted file mode 100644 index ff29b2bb9771a5043194b731427cc84cdaf95a4c..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-6d977874a16323f365318cc94c17df1b +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Israel Airlines and Baggage Liability\",\n \"summary\": \"The community centers around EL AL Israel Airlines, which is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability. The relationships with various items such as fragile, perishable, and valuable items highlight the airline's liability limitations and contractual obligations.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential legal implications and customer dissatisfaction arising from baggage claims and liability issues.\",\n \"findings\": [\n {\n \"summary\": \"EL AL Israel Airlines' responsibility for baggage claims\",\n \"explanation\": \"EL AL Israel Airlines plays a crucial role in managing baggage claims, which is a significant aspect of its operations. The airline is tasked with ensuring compliance with international conventions regarding baggage liability, which adds a layer of legal responsibility. This responsibility is critical as it directly affects customer satisfaction and the airline's reputation. Failure to manage baggage claims effectively can lead to legal disputes and financial repercussions for the airline. [Data: Entities (250), Relationships (193)]\"\n },\n {\n \"summary\": \"Contract of carriage outlines liability terms\",\n \"explanation\": \"The contract of carriage is a fundamental document that outlines the terms and conditions under which EL AL Israel Airlines operates, particularly concerning baggage liability. This contract serves as a legal framework that defines the airline's obligations and the limitations of its liability. Understanding this contract is essential for both the airline and its customers, as it sets expectations regarding what can be claimed in the event of lost or damaged baggage. [Data: Entities (260), Relationships (361)]\"\n },\n {\n \"summary\": \"Liability limitations for fragile items\",\n \"explanation\": \"EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged. This limitation is significant as it informs customers about the risks associated with traveling with fragile items. The airline's policy on fragile items can impact customer decisions and may lead to dissatisfaction if expectations are not clearly communicated. This aspect of liability is crucial for maintaining trust and transparency with customers. [Data: Entities (256), Relationships (357)]\"\n },\n {\n \"summary\": \"Liability limitations for perishable items\",\n \"explanation\": \"Similar to fragile items, EL AL Israel Airlines may also refuse to accept liability for perishable items if they are lost or damaged. This policy is important for customers who may be traveling with food or other perishable goods. The airline's stance on perishable items can affect customer choices and their overall experience, especially if they are not adequately informed about these limitations prior to travel. [Data: Entities (257), Relationships (358)]\"\n },\n {\n \"summary\": \"Liability limitations for valuable items\",\n \"explanation\": \"The airline's policy regarding valuable items, which include cash, jewelry, and electronics, indicates that EL AL Israel Airlines may refuse to accept liability for these items if they are lost or damaged. This limitation is particularly relevant for travelers carrying high-value goods, and it underscores the importance of understanding the airline's liability policies. Customers need to be aware of these limitations to avoid potential losses and dissatisfaction. [Data: Entities (258), Relationships (359)]\"\n },\n {\n \"summary\": \"International conventions governing liability\",\n \"explanation\": \"International conventions play a vital role in governing the liability of carriers like EL AL Israel Airlines regarding baggage claims. These legal frameworks establish the baseline for liability and ensure that airlines adhere to certain standards. Understanding these conventions is essential for both the airline and its customers, as they provide a legal context for baggage claims and the airline's responsibilities. [Data: Entities (259), Relationships (360)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n250,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,6\r\n260,CONTRACT OF CARRIAGE,\"The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.\",1\r\n256,FRAGILE ITEMS,Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n257,PERISHABLE ITEMS,Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n258,VALUABLE ITEMS,\"Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.\",1\r\n259,INTERNATIONAL CONVENTIONS,International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n193,BAGGAGE,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,27\r\n361,EL AL ISRAEL AIRLINES,CONTRACT OF CARRIAGE,\"The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.\",7\r\n357,EL AL ISRAEL AIRLINES,FRAGILE ITEMS,EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.,7\r\n358,EL AL ISRAEL AIRLINES,PERISHABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.,7\r\n359,EL AL ISRAEL AIRLINES,VALUABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.,7\r\n360,EL AL ISRAEL AIRLINES,INTERNATIONAL CONVENTIONS,International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-772f59eddbdf1ac9f84ee5b453c886d5 b/cache/community_reporting/create_community_report-chat-v2-772f59eddbdf1ac9f84ee5b453c886d5 deleted file mode 100644 index b3c9d43a358d153753bc644005fbdd6803641033..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-772f59eddbdf1ac9f84ee5b453c886d5 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Lost Baggage Claims Community\",\n \"summary\": \"The community focuses on the processes and systems related to lost baggage claims, primarily involving the Lost Baggage Report Number and Claim Status. These entities are interconnected, providing travelers with essential tools to track and manage their baggage claims effectively.\",\n \"rating\": 6.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential inconvenience and financial implications for travelers dealing with lost baggage.\",\n \"findings\": [\n {\n \"summary\": \"Importance of the Lost Baggage Report Number\",\n \"explanation\": \"The Lost Baggage Report Number is a critical identifier for travelers seeking updates on their lost baggage claims. This unique 10-character identifier allows individuals to check the status of their claims, ensuring they can track the progress of their lost items. The existence of this system is vital for maintaining customer satisfaction and trust in airline services. Without it, travelers would face significant challenges in retrieving their belongings, leading to frustration and potential financial loss. [Data: Entities (119); Relationships (191, 250)]\"\n },\n {\n \"summary\": \"Role of Claim Status in the baggage claim process\",\n \"explanation\": \"Claim Status refers to the current state of a baggage claim, which can be checked using the Lost Baggage Report Number. This process is facilitated through a worldwide system managed by the Baggage Service Center, allowing travelers to stay informed about their claims. The ability to check claim status is essential for travelers, as it provides peace of mind and helps them plan accordingly while dealing with the inconvenience of lost baggage. [Data: Entities (116); Relationships (224, 250)]\"\n },\n {\n \"summary\": \"Interconnection between Lost Baggage Report Number and Claim Status\",\n \"explanation\": \"The relationship between the Lost Baggage Report Number and Claim Status is crucial for the effective management of lost baggage claims. Travelers must use the report number to verify the status of their claims, highlighting the importance of accurate and timely information. This interconnection ensures that travelers can efficiently navigate the claims process, reducing the time and effort required to resolve issues related to lost baggage. [Data: Relationships (191, 250)]\"\n },\n {\n \"summary\": \"Baggage Service Center's role in managing claims\",\n \"explanation\": \"The Baggage Service Center plays a pivotal role in the lost baggage claims process by providing a worldwide system for checking claim status. This centralized service allows travelers to access information about their claims from anywhere, enhancing the overall customer experience. The effectiveness of the Baggage Service Center directly impacts how quickly and efficiently travelers can resolve issues related to lost baggage, making it a key player in this community. [Data: Relationships (224)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n119,LOST BAGGAGE REPORT NUMBER,\"The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.\",2\r\n116,CLAIM STATUS,\"The term \"\"Claim Status\"\" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.\",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n191,BAGGAGE,LOST BAGGAGE REPORT NUMBER,The lost baggage report number is used to track claims related to lost baggage,23\r\n224,BAGGAGE SERVICE CENTER,CLAIM STATUS,The status of a claim can be checked through the Baggage Service Center's worldwide system,15\r\n250,CLAIM STATUS,LOST BAGGAGE REPORT NUMBER,The claim status can be checked using the lost baggage report number provided by the airline. This report number is essential for verifying the status of a claim related to lost baggage.,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-786136b8fe55f8a486c7889a603c7c5d b/cache/community_reporting/create_community_report-chat-v2-786136b8fe55f8a486c7889a603c7c5d deleted file mode 100644 index a7024d9587306f89452f9658e97dde31afab8fbe..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-786136b8fe55f8a486c7889a603c7c5d +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Liquid Carry-On Regulations Community\",\n \"summary\": \"This community revolves around the regulations and guidelines concerning the carrying of liquids in carry-on bags during air travel. Key entities include various types of liquids, carry-on bags, and associated regulations, all interconnected through specific restrictions and requirements.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential implications for passenger safety and compliance with international travel regulations.\",\n \"findings\": [\n {\n \"summary\": \"Regulations on Liquids in Carry-On Bags\",\n \"explanation\": \"The primary focus of this community is the restrictions on liquids that passengers can carry in their carry-on bags. These regulations are crucial for ensuring safety during flights and are enforced at security checkpoints. Passengers must adhere to specific guidelines regarding the amount and type of liquids they can bring, which can significantly affect their travel experience. Non-compliance can lead to confiscation of items at security checkpoints, impacting passenger satisfaction and operational efficiency at airports [Data: Entities (152, 160); Relationships (34, 127, 283, 284, 285)].\"\n },\n {\n \"summary\": \"Role of Carry-On Bags\",\n \"explanation\": \"Carry-on bags are essential for passengers as they allow for easy access to personal items during flights. These bags must comply with specific size and weight limitations, and they are subject to the same restrictions regarding liquids. The relationship between carry-on bags and the regulations on liquids highlights the importance of understanding what can be packed to avoid issues at security checkpoints. Passengers are advised to keep medications, passports, and valuables in their carry-on bags for easy access, which further emphasizes the significance of these items in travel [Data: Entities (160); Relationships (292, 288, 289, 290, 291)].\"\n },\n {\n \"summary\": \"Specific Types of Liquids\",\n \"explanation\": \"Various types of liquids, including aerosols, creams, gels, and baby food, are subject to the same restrictions as other liquids in carry-on bags. Understanding these classifications is vital for passengers to ensure compliance with regulations. For instance, baby food is treated as a special item and does not need to be packed in a resealable plastic bag, but it must be presented for inspection at security checkpoints. This nuanced understanding of liquid types can help passengers navigate the complexities of carry-on regulations more effectively [Data: Entities (161, 156, 158, 154, 155); Relationships (281, 279, 278, 286, 287)].\"\n },\n {\n \"summary\": \"Security Checkpoint Procedures\",\n \"explanation\": \"The security checkpoint is a critical area where passengers must present their carry-on items, including liquids, for inspection. Items that exceed the permitted amount will be discarded, which can lead to frustration and delays for travelers. The procedures at these checkpoints are designed to enhance safety but can also create challenges for passengers who may not be fully aware of the regulations. This highlights the need for clear communication and guidance regarding what can and cannot be brought on board [Data: Entities (159); Relationships (284)].\"\n },\n {\n \"summary\": \"International Guidelines and Compliance\",\n \"explanation\": \"Countries like Israel and the U.S. have specific guidelines regarding the carrying of liquids in carry-on bags, which can vary from one jurisdiction to another. These international regulations necessitate that passengers remain informed about the rules applicable to their flights, especially when traveling across borders. Compliance with these guidelines is essential for ensuring a smooth travel experience and avoiding potential legal issues or delays at airports [Data: Entities (319); Relationships (127, 285)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n152,LIQUIDS IN CARRY-ON BAGS,Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.,14\r\n160,CARRY-ON BAGS,\"CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.\",8\r\n161,AEROSOLS,,1\r\n156,BABY FOOD,\"Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.\",1\r\n322,CLEAR RESEALABLE PLASTIC BAG,\"Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.\",1\r\n155,COSMETICS,\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\",1\r\n158,CREAMS,\"CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.\",1\r\n323,DOCTOR'S NOTE,Document required for carrying medications and special food products at the security checkpoint.,1\r\n154,GELS,\"GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.\",1\r\n153,WHISKEY,\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\",1\r\n157,PRESCRIPTION MEDICATIONS,\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\",1\r\n159,SECURITY CHECKPOINT,\"The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations.\",1\r\n319,U.S,Country with specific guidelines regarding the carrying of liquids in handbags.,1\r\n285,CHECKED BAGS,\"Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane's cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.\",3\r\n281,MEDICATIONS,Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.,1\r\n282,PASSPORTS,Passports are required documents for international travel and should be easily accessible during flights.,1\r\n283,VALUABLES,Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.,1\r\n288,RECOMMENDATION,\"A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.\",1\r\n286,PLANE'S BELLY,The plane's belly refers to the cargo hold of the aircraft where checked bags are stored.,1\r\n287,NO CHARGE,No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,\"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.\",63\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,\"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.\",23\r\n283,LIQUIDS IN CARRY-ON BAGS,CARRY-ON BAGS,Restrictions on liquids apply specifically to items carried in carry-on bags.,22\r\n281,LIQUIDS IN CARRY-ON BAGS,AEROSOLS,Aerosols are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n279,LIQUIDS IN CARRY-ON BAGS,BABY FOOD,Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n286,LIQUIDS IN CARRY-ON BAGS,CLEAR RESEALABLE PLASTIC BAG,\"A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.\",15\r\n278,LIQUIDS IN CARRY-ON BAGS,COSMETICS,Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n282,LIQUIDS IN CARRY-ON BAGS,CREAMS,Creams are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n287,LIQUIDS IN CARRY-ON BAGS,DOCTOR'S NOTE,A doctor's note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.,15\r\n277,LIQUIDS IN CARRY-ON BAGS,GELS,Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n276,LIQUIDS IN CARRY-ON BAGS,WHISKEY,Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n280,LIQUIDS IN CARRY-ON BAGS,PRESCRIPTION MEDICATIONS,Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n284,LIQUIDS IN CARRY-ON BAGS,SECURITY CHECKPOINT,\"At the security checkpoint, liquids that exceed the permitted amount will be discarded.\",15\r\n285,LIQUIDS IN CARRY-ON BAGS,U.S,The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.,15\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n293,CARRY-ON BAGS,CHECKED BAGS,\"If no free space is available, carry-on bags will be checked to the plane's belly\",11\r\n289,CARRY-ON BAGS,MEDICATIONS,Medications should be kept in carry-on bags for easy access during the flight,9\r\n290,CARRY-ON BAGS,PASSPORTS,Passports should be kept in carry-on bags for easy access during the flight,9\r\n291,CARRY-ON BAGS,VALUABLES,Valuables should be kept in carry-on bags for easy access during the flight,9\r\n294,CARRY-ON BAGS,RECOMMENDATION,The recommendation advises passengers to remove certain items from carry-on bags for easy access,9\r\n388,CHECKED BAGS,PLANE'S BELLY,Checked bags are stored in the plane's belly during the flight,4\r\n389,CHECKED BAGS,NO CHARGE,Checked bags will incur no charge if carry-on bags are checked due to lack of space,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-7a0390b4493795f5952257b24e19b9f9 b/cache/community_reporting/create_community_report-chat-v2-7a0390b4493795f5952257b24e19b9f9 deleted file mode 100644 index 551d997b4d3f6262f979463b7b4840bceb24263c..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-7a0390b4493795f5952257b24e19b9f9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Flight Ticket and Baggage Management\",\n \"summary\": \"The community centers around the processes and services related to flight tickets, baggage allowances, and the management of travel bookings. Key entities include flight tickets, additional baggage options, and online booking management services, all of which are interconnected to facilitate passenger travel.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential complications and customer dissatisfaction that can arise from baggage management and ticketing issues.\",\n \"findings\": [\n {\n \"summary\": \"Importance of Flight Tickets\",\n \"explanation\": \"Flight tickets are essential documents for passengers, confirming their reservations and detailing important travel information. They serve as the foundation for all other services in this community, including baggage allowances and booking management. The relationship between flight tickets and baggage allowances is critical, as the ticket specifies what is included in the passenger's travel package. Issues with flight tickets can lead to significant disruptions in travel plans, affecting customer satisfaction and airline operations. [Data: Entities (96); Relationships (210)]\"\n },\n {\n \"summary\": \"Role of Additional Baggage Options\",\n \"explanation\": \"Additional pieces of baggage are a significant aspect of air travel, allowing passengers to check in extra luggage for a fee. This service is directly linked to the flight ticket, which outlines the standard baggage allowance. The ability to manage additional baggage through the Manage Your Booking service enhances passenger convenience but also introduces potential complications if not handled properly. Miscommunication regarding baggage fees or allowances can lead to customer complaints and operational challenges for airlines. [Data: Entities (335); Relationships (408, 210)]\"\n },\n {\n \"summary\": \"Manage Your Booking Service\",\n \"explanation\": \"The Manage Your Booking service is a crucial online tool that allows passengers to view and modify their flight details, including baggage allowances. This service empowers travelers to make adjustments to their bookings, which can enhance their travel experience. However, if the service is not user-friendly or if there are technical issues, it can lead to frustration and confusion among passengers, impacting their overall perception of the airline. [Data: Entities (334); Relationships (414, 211)]\"\n },\n {\n \"summary\": \"Pre-ordering Additional Baggage\",\n \"explanation\": \"Pre-ordering additional baggage is a process that allows passengers to reserve extra luggage before their flight. This is particularly important for certain service types, as it ensures that passengers can manage their baggage needs in advance. The requirement to pre-order additional baggage adds a layer of complexity to the travel planning process, and failure to comply with this requirement can result in additional fees or denied boarding. [Data: Entities (343); Relationships (416)]\"\n },\n {\n \"summary\": \"Time Constraints for Baggage Pre-ordering\",\n \"explanation\": \"Passengers have a limited time frame of three hours before departure to pre-order additional baggage through the Manage Your Booking service. This time constraint can create pressure for travelers, especially those who may be unaware of the need to pre-order. If passengers miss this window, they may face unexpected fees or restrictions, which can lead to dissatisfaction and negative experiences with the airline. [Data: Entities (338); Relationships (415)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n96,FLIGHT TICKET,\"A flight ticket is a document that confirms a passenger's reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.\",3\r\n335,ADDITIONAL PIECES OF BAGGAGE,\"Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.\",3\r\n334,MANAGE YOUR BOOKING,\"\"\"Manage Your Booking\"\" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.\",3\r\n343,PRE-ORDERING,\"Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.\",1\r\n338,THREE HOURS,Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n86,PET,FLIGHT TICKET,\"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.\",22\r\n408,BAGGAGE ALLOWANCE,ADDITIONAL PIECES OF BAGGAGE,\"Additional pieces of baggage can be checked in for a fee, which varies depending on the service type\",15\r\n210,FLIGHT TICKET,BAGGAGE ALLOWANCE,The flight ticket includes information about the baggage allowance for the passenger,15\r\n414,MANAGE YOUR BOOKING,ADDITIONAL PIECES OF BAGGAGE,Passengers can add additional pieces of baggage through the Manage Your Booking page,6\r\n211,FLIGHT TICKET,MANAGE YOUR BOOKING,\"The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances\",6\r\n416,ADDITIONAL PIECES OF BAGGAGE,PRE-ORDERING,Pre-ordering is required for checking additional pieces of baggage beyond the standard allowance,4\r\n415,MANAGE YOUR BOOKING,THREE HOURS,The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-7f9c5cd47ea1fb031e5a345fef8033fb b/cache/community_reporting/create_community_report-chat-v2-7f9c5cd47ea1fb031e5a345fef8033fb deleted file mode 100644 index 9f6c65843a46bdad97f9a6885bae6b9931f7020b..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-7f9c5cd47ea1fb031e5a345fef8033fb +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Courier Service and Baggage Delivery\",\n \"summary\": \"The community is centered around the Courier Service and Baggage Delivery, which work together to ensure that delayed baggage is delivered to passengers' specified addresses. The relationship between these entities highlights their collaborative role in enhancing the travel experience by addressing baggage delays.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the essential service provided by these entities in improving customer satisfaction during travel disruptions.\",\n \"findings\": [\n {\n \"summary\": \"Role of the Courier Service\",\n \"explanation\": \"The Courier Service is a critical entity in this community, responsible for delivering retrieved delayed baggage to passengers. This service plays a vital role in alleviating the inconvenience caused by baggage delays, ensuring that travelers receive their belongings promptly. The efficiency and reliability of the Courier Service directly impact customer satisfaction and the overall travel experience. [Data: Entities (117); Relationships (187, 251)]\"\n },\n {\n \"summary\": \"Importance of Baggage Delivery\",\n \"explanation\": \"Baggage Delivery is an essential service that ensures retrieved baggage is sent to the passenger's specified address. This service is crucial for maintaining the flow of travel logistics, especially in cases of delays. The relationship between Baggage Delivery and the Courier Service underscores the importance of timely and efficient baggage handling in the travel industry. [Data: Entities (126); Relationships (187)]\"\n },\n {\n \"summary\": \"Collaboration between entities\",\n \"explanation\": \"The relationship between the Courier Service and Baggage Delivery illustrates a collaborative effort to enhance the travel experience. The Courier Service is tasked with the delivery of baggage after it has been retrieved, which highlights the interdependence of these entities. This collaboration is vital for ensuring that passengers do not face prolonged inconveniences due to baggage delays. [Data: Relationships (187, 251)]\"\n },\n {\n \"summary\": \"Impact on customer satisfaction\",\n \"explanation\": \"The services provided by the Courier Service and Baggage Delivery significantly impact customer satisfaction. By ensuring that delayed baggage is delivered promptly, these entities help mitigate the stress and frustration that can arise from travel disruptions. Their effectiveness in handling such situations can enhance the reputation of the airlines and travel companies involved. [Data: Relationships (187, 251)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n117,COURIER SERVICE,\"The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.\",2\r\n126,BAGGAGE DELIVERY,Baggage delivery is the service that ensures retrieved baggage is sent to the passenger's specified address.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n187,BAGGAGE,COURIER SERVICE,The BAGGAGE is delivered to the passenger's address by the COURIER SERVICE after it has been retrieved following a delay. The COURIER SERVICE is responsible for ensuring that the delayed baggage reaches the travelers promptly after it has been located.,23\r\n251,COURIER SERVICE,BAGGAGE DELIVERY,The courier service is responsible for the delivery of baggage to the passenger's address after retrieval,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-84659f5528e3f692fce9648441265d72 b/cache/community_reporting/create_community_report-chat-v2-84659f5528e3f692fce9648441265d72 deleted file mode 100644 index 2ee9937ad3573bd9c769acb6b86dcec568f84dbd..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-84659f5528e3f692fce9648441265d72 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Electronic Devices and Lithium Battery Regulations\",\n \"summary\": \"This community focuses on the regulations surrounding electronic devices and spare lithium batteries during air travel. The entities are interconnected through strict guidelines that dictate how these items should be stored and transported to ensure passenger safety.\",\n \"rating\": 8.0,\n \"rating_explanation\": \"The impact severity rating is high due to the potential safety hazards associated with improper handling of electronic devices and lithium batteries on aircraft.\",\n \"findings\": [\n {\n \"summary\": \"Regulations on electronic devices during flights\",\n \"explanation\": \"Electronic devices, such as laptops and phones, must be kept accessible during flights, with specific regulations regarding their storage based on battery type. Devices with non-removable lithium batteries must be stored in the aircraft hold, while those with removable batteries require the battery to be taken aboard the cabin. This distinction is crucial for ensuring safety during air travel, as improper storage can lead to fire hazards. [Data: Entities (284); Relationships (385, 387)]\"\n },\n {\n \"summary\": \"Prohibition of spare lithium batteries in checked baggage\",\n \"explanation\": \"Spare lithium batteries are prohibited in checked baggage and must be taken aboard the aircraft cabin. This regulation is in place to mitigate the risk of fire, as lithium batteries can pose significant hazards if damaged or short-circuited. The relationship between spare lithium batteries and electronic devices highlights the importance of proper handling and storage to prevent incidents during flights. [Data: Entities (407); Relationships (434, 387)]\"\n },\n {\n \"summary\": \"Flammable materials and electronic devices\",\n \"explanation\": \"Flammable materials, such as hairspray, are subject to strict regulations and must not be stored alongside electronic devices containing lithium batteries. This regulation is designed to prevent potential hazards that could arise from the combination of flammable substances and electronic devices, emphasizing the need for careful consideration of what items are packed together in baggage. [Data: Entities (405); Relationships (386)]\"\n },\n {\n \"summary\": \"Interconnected regulations for portable chargers\",\n \"explanation\": \"Portable chargers, like spare lithium batteries, are also prohibited in checked baggage and must be taken aboard the aircraft cabin. This regulation underscores the importance of ensuring that all battery-powered devices are handled according to safety guidelines to prevent incidents during air travel. The relationship between portable chargers and spare lithium batteries indicates a broader concern for battery safety in aviation. [Data: Relationships (435)]\"\n },\n {\n \"summary\": \"Safety implications of improper storage\",\n \"explanation\": \"The community's regulations highlight the significant safety implications of improper storage of electronic devices and batteries. The potential for fire hazards necessitates strict adherence to guidelines, as violations could lead to dangerous situations on board. Understanding these regulations is essential for passengers to ensure their safety and the safety of others during flights. [Data: Relationships (292, 386)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n284,ELECTRONIC DEVICES,\"Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.\",4\r\n407,SPARE LITHIUM BATTERIES,\"Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.\",3\r\n405,FLAMMABLE MATERIAL,\"Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n434,LITHIUM-ION BATTERIES,SPARE LITHIUM BATTERIES,Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.,10\r\n385,ELECTRONIC DEVICES,CARRY-ON,\"Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement\",8\r\n387,ELECTRONIC DEVICES,SPARE LITHIUM BATTERIES,\"Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.\",7\r\n386,ELECTRONIC DEVICES,FLAMMABLE MATERIAL,\"Flammable materials are prohibited from being stored with electronic devices containing lithium batteries, indicating a safety restriction\",5\r\n435,PORTABLE CHARGERS,SPARE LITHIUM BATTERIES,Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-8ddb03e3ff72efb65139a2815145a6fa b/cache/community_reporting/create_community_report-chat-v2-8ddb03e3ff72efb65139a2815145a6fa deleted file mode 100644 index df74c56c5c9d8c0924a656ac099284fba662d68d..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-8ddb03e3ff72efb65139a2815145a6fa +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"ARTY Rimon and Baggage Services Community\",\n \"summary\": \"The community is centered around ARTY Rimon, a service provider specializing in baggage pickup and delivery. It includes various entities related to baggage handling, policies, and service locations, highlighting the interconnectedness of service provision and customer support in the baggage industry.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for customer dissatisfaction and operational challenges related to baggage services.\",\n \"findings\": [\n {\n \"summary\": \"ARTY Rimon as a central service provider\",\n \"explanation\": \"ARTY Rimon is the primary entity in this community, specializing in pickup and delivery services for baggage, luggage, and bags. The company operates in multiple locations, which enhances its service reach and customer convenience. However, the nature of its services also means that it is subject to various operational challenges, such as delays or damage to baggage, which can significantly impact customer satisfaction and the company's reputation. The relationships ARTY Rimon has with other entities, such as baggage claims departments and similar service providers, further emphasize its role in the baggage handling ecosystem. [Data: Entities (210); Relationships (240, 340, 342)]\"\n },\n {\n \"summary\": \"Importance of baggage policies\",\n \"explanation\": \"The community includes critical policies regarding baggage handling, such as the requirement to report damage or missing items within specific timeframes. These policies are essential for maintaining customer trust and ensuring compliance with industry standards. For instance, the policy stating that customers must contact the service provider within 7 days of receipt for baggage issues is crucial for effective claims processing. Such policies not only protect the service provider but also inform customers of their rights and responsibilities, thereby shaping the overall customer experience. [Data: Entities (240, 241); Relationships (240, 356)]\"\n },\n {\n \"summary\": \"Service locations enhance operational reach\",\n \"explanation\": \"ARTY Rimon provides services in several cities, including Rehovot, Shoham, Ramle, and Lod. This geographical diversity allows the company to cater to a broader customer base and respond to varying demands for baggage services. Each location represents a potential market for ARTY Rimon, but it also introduces logistical challenges, such as ensuring timely pickups and deliveries across different areas. The effectiveness of operations in these locations is critical for maintaining service quality and customer satisfaction. [Data: Entities (244, 246, 247, 248); Relationships (348, 349, 350, 351)]\"\n },\n {\n \"summary\": \"Competitive landscape with similar service providers\",\n \"explanation\": \"The community includes other entities like Cargo Tikim ve Mizvadot and Rimon Mizvadot ve Tikim, which provide similar services. This competitive landscape can drive innovation and improve service quality but also poses risks for ARTY Rimon in terms of market share and customer loyalty. Understanding the competitive dynamics is essential for ARTY Rimon to position itself effectively and address customer needs better than its competitors. [Data: Entities (233); Relationships (344, 342)]\"\n },\n {\n \"summary\": \"Direct associations with key contacts\",\n \"explanation\": \"Shlomo Ha-Melekh is identified as a contact person for ARTY Rimon, indicating a direct association that could facilitate communication and operational efficiency. Having key contacts within the organization can enhance customer service and streamline processes related to baggage handling. This relationship underscores the importance of personal connections in service-oriented businesses, where customer interactions can significantly influence satisfaction and loyalty. [Data: Entities (249); Relationships (347)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n210,ARTY RIMON,\"ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.\",12\r\n240,IMPORTANT TO KNOW,Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.,2\r\n233,CARGO TIKIM VE MIZVADOT,\"Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.\",1\r\n249,SHLOMO HA-MELEKH,,1\r\n244,REHOVOT,Rehovot is a city where ARTY Rimon provides pickup and delivery services.,1\r\n246,SHOHAM,Shoham is a city where ARTY Rimon provides pickup and delivery services.,1\r\n247,RAMLE,Ramle is a city where ARTY Rimon provides pickup and delivery services.,1\r\n248,LOD,Lod is a city where ARTY Rimon provides pickup and delivery services.,1\r\n241,DELAY IN RECEIVING BAGGAGE,\"Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n340,MAKOR HAZIUD,ARTY RIMON,\"Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon\",15\r\n343,ARTY RIMON,MOKA,\"Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship\",14\r\n344,ARTY RIMON,RIMON MIZVADOT VE TIKIM,\"Both provide similar services in different locations, indicating a competitive relationship\",14\r\n345,ARTY RIMON,HAGALGAL,\"Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon\",14\r\n346,ARTY RIMON,IMPORTANT TO KNOW,The policy regarding baggage damage is relevant to the services provided by ARTY Rimon,14\r\n342,ARTY RIMON,CARGO TIKIM VE MIZVADOT,\"Both provide services related to luggage and bags, indicating a potential partnership or competition\",13\r\n347,ARTY RIMON,SHLOMO HA-MELEKH,\"Shlomo Ha-Melekh is a contact person for ARTY Rimon, indicating a direct association\",13\r\n348,ARTY RIMON,REHOVOT,\"ARTY Rimon provides services in Rehovot, indicating a service location relationship\",13\r\n349,ARTY RIMON,SHOHAM,\"ARTY Rimon provides services in Shoham, indicating a service location relationship\",13\r\n350,ARTY RIMON,RAMLE,\"ARTY Rimon provides services in Ramle, indicating a service location relationship\",13\r\n351,ARTY RIMON,LOD,\"ARTY Rimon provides services in Lod, indicating a service location relationship\",13\r\n356,IMPORTANT TO KNOW,DELAY IN RECEIVING BAGGAGE,The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-8e78e654e4b7d1e3343e1273dc80e376 b/cache/community_reporting/create_community_report-chat-v2-8e78e654e4b7d1e3343e1273dc80e376 deleted file mode 100644 index 8c827d5ba2081d386ecd4ebe44a62ceb9c399258..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-8e78e654e4b7d1e3343e1273dc80e376 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Lithium-Ion Battery Regulations and Transport\",\n \"summary\": \"The community focuses on the regulations and classifications surrounding lithium-ion batteries and their transport, particularly in the context of air travel. Key entities include various types of batteries, regulatory frameworks, and their relationships that dictate how these batteries can be carried on aircraft.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential safety risks associated with the transport of lithium-ion batteries and the strict regulations governing their use.\",\n \"findings\": [\n {\n \"summary\": \"Lithium-ion batteries are subject to strict transport regulations\",\n \"explanation\": \"Lithium-ion batteries are widely used in portable electronic devices but come with specific regulations for air travel. These regulations are crucial for ensuring safety during flights, as lithium-ion batteries can pose fire hazards if not properly managed. The regulations specify watt-hour limits, with larger batteries restricted to two per passenger, highlighting the importance of compliance for travelers. [Data: Entities (388, 406); Relationships (430, 431, 432, 433)]\"\n },\n {\n \"summary\": \"Classification of lithium batteries\",\n \"explanation\": \"Lithium batteries are classified into lithium-ion and lithium metal types, which affects their transport regulations. Understanding this classification is essential for compliance with air travel regulations, as different types of lithium batteries may have varying restrictions. This classification relationship is significant for manufacturers and consumers alike, as it impacts the types of batteries that can be safely transported. [Data: Entities (406); Relationships (431)]\"\n },\n {\n \"summary\": \"Watt-hour limits for battery transport\",\n \"explanation\": \"The watt-hour capacity of batteries is a critical factor in determining their eligibility for air travel. Batteries with a capacity of 100 watt-hours are allowed in carry-on luggage, while those with a capacity of 160 watt-hours are subject to specific regulations. This distinction is vital for travelers to understand, as exceeding these limits can lead to confiscation or penalties. [Data: Entities (398, 399); Relationships (432, 433)]\"\n },\n {\n \"summary\": \"Dry cell alkaline batteries and their transport\",\n \"explanation\": \"Dry cell alkaline batteries, such as AA and 9-volt batteries, are also permitted in carry-on baggage, which provides travelers with more options for powering their devices. The inclusion of these batteries alongside lithium-ion batteries in transport regulations indicates a broader understanding of battery safety and management during air travel. This relationship is important for consumers who may not be aware of the differences in battery types and their respective regulations. [Data: Entities (387); Relationships (429)]\"\n },\n {\n \"summary\": \"Regulatory framework under 49 CFR\",\n \"explanation\": \"The 49 CFR outlines the requirements for the transport of hazardous materials, including batteries. This regulatory framework is essential for ensuring that all parties involved in the transport of lithium batteries are aware of the legal requirements and safety measures necessary to prevent incidents. Compliance with these regulations is critical for airlines, manufacturers, and consumers to mitigate risks associated with battery transport. [Data: Entities (402); Relationships (442)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n388,LITHIUM-ION BATTERIES,\"Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.\",7\r\n406,LITHIUM BATTERIES,,2\r\n398,100 WATT-HOURS,\"100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.\",1\r\n399,160 WATT-HOURS,160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.,1\r\n387,DRY CELL ALKALINE BATTERIES,\"Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.\",1\r\n402,49 CFR,\"49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n430,LITHIUM-ION BATTERIES,CARRY-ON,Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits,11\r\n426,SPARE BATTERIES,LITHIUM-ION BATTERIES,Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions,11\r\n434,LITHIUM-ION BATTERIES,SPARE LITHIUM BATTERIES,Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.,10\r\n431,LITHIUM-ION BATTERIES,LITHIUM BATTERIES,\"Lithium batteries include both lithium-ion and lithium metal types, indicating a classification relationship\",9\r\n432,LITHIUM-ION BATTERIES,100 WATT-HOURS,Lithium-ion batteries with a capacity of 100 watt-hours are allowed in carry-on luggage,8\r\n433,LITHIUM-ION BATTERIES,160 WATT-HOURS,Lithium-ion batteries with a capacity of 160 watt-hours are subject to specific regulations for air travel,8\r\n429,DRY CELL ALKALINE BATTERIES,LITHIUM-ION BATTERIES,Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage,8\r\n442,49 CFR,LITHIUM BATTERIES,\"49 CFR outlines the regulations for the transport of lithium batteries, indicating a regulatory relationship\",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-90d9e145e7e56450c9a851e3b57c2bea b/cache/community_reporting/create_community_report-chat-v2-90d9e145e7e56450c9a851e3b57c2bea deleted file mode 100644 index 509306905ed8b85aa89b8fcf9d2edaa14d096759..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-90d9e145e7e56450c9a851e3b57c2bea +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Checked Baggage and EL AL Airlines\",\n \"summary\": \"The community focuses on the policies and regulations surrounding checked baggage, particularly in relation to EL AL Airlines. Key entities include various types of checked baggage, associated fees, and specific guidelines for transporting items such as pets and sporting equipment. The relationships highlight how these entities interact within the context of air travel.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for customer dissatisfaction and operational challenges related to baggage handling.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's comprehensive baggage policies\",\n \"explanation\": \"EL AL Airlines has established detailed guidelines for checked baggage, which include specific provisions for transporting animals and sporting equipment. These policies are crucial for ensuring compliance with safety regulations and customer satisfaction. The airline's baggage policy is comparable to that of Sundor, indicating a competitive landscape in terms of baggage handling and customer service. This relationship emphasizes the importance of clear communication regarding baggage allowances and restrictions to avoid misunderstandings and potential disputes. [Data: Entities (5, 194); Relationships (11, 109)]\"\n },\n {\n \"summary\": \"Checked baggage fees and allowances\",\n \"explanation\": \"The fees associated with checked baggage, such as the $90 charge for additional pieces, play a significant role in the overall travel experience. Passengers must be aware of these fees to avoid unexpected costs at the airport. The relationship between checked baggage and baggage allowance is critical, as it defines the limits and requirements for travelers. Understanding these fees and allowances can help passengers plan their travel more effectively and avoid excess baggage charges. [Data: Entities (336, 358); Relationships (104, 90)]\"\n },\n {\n \"summary\": \"Transporting pets as checked baggage\",\n \"explanation\": \"Pets can be transported as checked baggage under specific conditions, which is an important consideration for travelers with animals. The guidelines for pet transportation include size and weight restrictions, ensuring the safety and comfort of the animals during travel. This aspect of checked baggage policy is vital for maintaining customer trust and satisfaction, as pet owners often seek airlines that provide clear and humane transportation options for their pets. [Data: Entities (5, 69); Relationships (69)]\"\n },\n {\n \"summary\": \"Special provisions for sporting equipment\",\n \"explanation\": \"Sporting equipment, such as snowboard and ski gear, can be included in checked baggage under certain conditions. This flexibility is essential for travelers who engage in sports and outdoor activities, as it allows them to bring necessary equipment without incurring excessive fees. The relationship between checked baggage and sporting equipment highlights the need for airlines to accommodate diverse passenger needs while maintaining operational efficiency. [Data: Entities (186, 91); Relationships (88, 92)]\"\n },\n {\n \"summary\": \"Excess baggage and its implications\",\n \"explanation\": \"Excess baggage refers to any checked baggage that exceeds the allowed limits, which incurs additional fees. This aspect of baggage policy can significantly impact the travel experience, as passengers may face unexpected costs if they are not aware of the limitations. The relationship between checked baggage and excess baggage charges underscores the importance of clear communication and adherence to regulations to minimize customer dissatisfaction. [Data: Entities (349); Relationships (101)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n5,CHECKED BAGGAGE,\"Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.\",25\r\n336,$90,The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.,1\r\n86,50 KG,\"The entity \"\"50 KG\"\" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.\",1\r\n358,ADDITIONAL PIECES OF CHECKED BAGGAGE,There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.,1\r\n186,SNOWBOARD EQUIPMENT,\"Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.\",1\r\n190,PERMITTED DIMENSIONS,The maximum size and weight limits that checked baggage and special items must adhere to for transport.,1\r\n194,EL AL AIRCRAFT,The information provided applies specifically to EL AL flights on EL AL aircraft.,1\r\n349,EXCESS BAGGAGE,\"Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.\",1\r\n350,CODE-SHARE FLIGHTS,\"Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.\",1\r\n361,MAXIMUM SIZE,\"The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.\",1\r\n359,INFANT'S CHECKED BAGGAGE,Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n11,EL AL,CHECKED BAGGAGE,\"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline's baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.\",74\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n69,PET,CHECKED BAGGAGE,\"Pets can be transported as checked baggage under certain conditions, such as size and weight\",44\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline's size and weight requirements,39\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,\"The terms \"\"CHECKED BAGGAGE\"\" and \"\"BAGGAGE ALLOWANCE\"\" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.\",37\r\n93,CHECKED BAGGAGE,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions,31\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n90,CHECKED BAGGAGE,EXCESS BAGGAGE CHARGES,Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions,29\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n91,CHECKED BAGGAGE,SKI EQUIPMENT,Ski equipment can be included in checked baggage under specific conditions,28\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n89,CHECKED BAGGAGE,AIRLINE,\"Airlines have specific policies regarding checked baggage, including size and weight limits\",27\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,\"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.\",27\r\n104,CHECKED BAGGAGE,$90,The fee of $90 is specifically for checking a piece of baggage not included in the ticket price,26\r\n95,CHECKED BAGGAGE,50 KG,The maximum weight limit for checked baggage is 50 kg,26\r\n105,CHECKED BAGGAGE,ADDITIONAL PIECES OF CHECKED BAGGAGE,Additional pieces of checked baggage incur fees beyond the standard allowance,26\r\n92,CHECKED BAGGAGE,SNOWBOARD EQUIPMENT,Snowboard equipment can be included in checked baggage under specific conditions,26\r\n94,CHECKED BAGGAGE,PERMITTED DIMENSIONS,Checked baggage must meet the permitted dimensions for transport,26\r\n97,CHECKED BAGGAGE,EL AL AIRCRAFT,The baggage regulations apply specifically to EL AL aircraft,26\r\n101,CHECKED BAGGAGE,EXCESS BAGGAGE,\"Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees\",26\r\n103,CHECKED BAGGAGE,CODE-SHARE FLIGHTS,Baggage procedures may vary on code-share flights depending on the marketing carrier,26\r\n106,CHECKED BAGGAGE,MAXIMUM SIZE,\"The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.\",26\r\n107,CHECKED BAGGAGE,INFANT'S CHECKED BAGGAGE,Infant's checked baggage is a specific category of checked baggage that includes items for infants.,26\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-9f8b7387e86b19bff21fb6046dcaaf7c b/cache/community_reporting/create_community_report-chat-v2-9f8b7387e86b19bff21fb6046dcaaf7c deleted file mode 100644 index ac4f8ebf095008cf0a9fd53300510529b20e9dd1..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-9f8b7387e86b19bff21fb6046dcaaf7c +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Airline and Pet Transportation Community\",\n \"summary\": \"The community centers around EL AL, an airline with specific policies and regulations regarding the transportation of pets and baggage. Key entities include the Cargo Division, Arrivals Hall, and various baggage policies that govern how pets and valuable items are handled during air travel. The relationships among these entities highlight the airline's commitment to compliance and customer service in pet transportation.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the complexities and potential liabilities associated with transporting pets and valuable items, which can affect customer satisfaction and regulatory compliance.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's comprehensive pet transportation policies\",\n \"explanation\": \"EL AL has established detailed policies for transporting pets, including specific weight limits and conditions for cabin transport. Only certain pets, such as dogs, cats, and exotic birds, can be transported in the cabin, provided their combined weight with the cage does not exceed 9 kg. For larger animals, EL AL requires them to be transported as checked baggage or through the Cargo Division, which manages special requests and documentation for oversized or unaccompanied animals. This structured approach ensures that pet owners are well-informed about the requirements and limitations of traveling with their pets [Data: Entities (1, 12); Claims (3, 4, 5); Relationships (7, 10, 14)].\"\n },\n {\n \"summary\": \"Role of the Cargo Division in pet transportation\",\n \"explanation\": \"The Cargo Division of EL AL plays a crucial role in managing the transport of pets, particularly those that are extra-large or flying unaccompanied. This division is responsible for ensuring that all necessary documentation is provided, including health certificates and transport authorizations. The Cargo Division's expertise in handling special requests for oversized items further emphasizes its importance in the safe and compliant transport of animals. This division's operations are vital for maintaining the airline's reputation and ensuring customer satisfaction [Data: Entities (12); Relationships (10, 114, 115, 116)].\"\n },\n {\n \"summary\": \"Arrivals Hall as a key location for pet owners\",\n \"explanation\": \"The Arrivals Hall at Ben Gurion Airport serves as the designated area where pet owners can retrieve their animals after transportation as checked baggage. This facility is essential for ensuring a smooth transition for pet owners reuniting with their pets, highlighting the importance of customer service in the airline's operations. The effective management of this area can significantly impact customer satisfaction and the overall perception of EL AL's pet transportation services [Data: Entities (11); Relationships (19, 9)].\"\n },\n {\n \"summary\": \"Baggage policies and their implications\",\n \"explanation\": \"EL AL has specific baggage policies that dictate the rules for checked baggage, including weight limits and fees. Passengers are allowed a maximum of five pieces of checked baggage, with additional pieces requiring prior arrangements with the Cargo Division. The airline's policies also state that it is not responsible for valuable items or liquids confiscated at the airport, which can lead to customer dissatisfaction if not properly communicated. These policies are crucial for managing expectations and ensuring compliance with regulations [Data: Entities (1, 197); Claims (47, 43); Relationships (24, 44)].\"\n },\n {\n \"summary\": \"Legal compliance and regulatory oversight\",\n \"explanation\": \"EL AL must comply with various regulations regarding the transport of pets, including those set by the Ministry of Agriculture and the CDC for transporting dogs to the US. This compliance is essential for maintaining the airline's operational integrity and avoiding legal issues. The relationship with regulatory bodies ensures that EL AL adheres to safety and security regulations, which is critical for the safe transport of animals and the protection of passengers [Data: Entities (1); Relationships (0, 16)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n1,EL AL,\"EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline's liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.\",49\r\n12,CARGO DIVISION,\"The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.\",8\r\n11,ARRIVALS HALL,\"The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.\",2\r\n197,VALUABLE ITEM,\"Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.\",2\r\n199,EQUIPMENT,,2\r\n353,$5,An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.,1\r\n354,50% DISCOUNT,Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.,1\r\n348,ADDITIONAL HANDLING FEE,An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.,1\r\n100,ANIMAL AIR TRANSPORT COMPANIES,\"Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.\",1\r\n204,BAGGAGE ISSUES,\"Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.\",1\r\n10,CHECK-IN COUNTER,\"The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.\",1\r\n310,CHECK-IN PROCESS,\"The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight.\",1\r\n356,CHECKED BAGGAGE RULES,Checked baggage rules may vary when several airlines are involved in a flight route.,1\r\n364,CODESHARE FLIGHTS,Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.,1\r\n19,TRANSPORTATION,\"Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.\",1\r\n108,SAFETY AND SECURITY REGULATIONS,\"Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.\",1\r\n305,FLIGHT DESTINATION,\"The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.\",1\r\n351,MANAGE MY BOOKING,\"Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.\",1\r\n363,GOVERNMENT SERVICE TAX,A government service tax will be collected for air travel for flights originating in India.,1\r\n425,EMAIL NOTIFICATION,An email notification to the airline is required to inform them about the intention to travel with a mobility aid.,1\r\n44,TRANSPORT AUTHORIZATION,Transport authorization from the destination country authorities is required for transporting pets.,1\r\n46,MEASUREMENTS OF TRANSPORT CAGE,The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.,1\r\n51,TRANSPORTING ANIMALS,\"The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.\",1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n2,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\r\n3,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.\"\r\n4,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"In certain instances (e.g. large animals), animals must be transported as checked baggage.\"\r\n5,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).\"\r\n11,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\r\n43,EL AL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\r\n47,EL AL,BAGGAGE POLICY,TRUE,\"The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.\"\r\n48,EL AL,BAGGAGE POLICY,TRUE,\"Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.\"\r\n49,EL AL,BAGGAGE POLICY,TRUE,\"The maximum size permitted for an infant’s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.\"\r\n50,EL AL,BAGGAGE POLICY,TRUE,EL AL reserves the right to change the excess baggage rates from time to time.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n11,EL AL,CHECKED BAGGAGE,\"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline's baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.\",74\r\n24,EL AL,BAGGAGE,\"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.\",70\r\n7,EL AL,PET,\"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport\",68\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n5,EL AL,SERVICE DOG,\"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.\",65\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,\"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.\",63\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n10,EL AL,CARGO DIVISION,\"EL AL's Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.\",57\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n14,EL AL,PETS,\"EL AL has established specific policies for transporting pets, which include weight limits and certain conditions that must be met. The airline offers services for transporting pets as cargo, and it requires specific documentation to ensure the safe and compliant travel of these animals.\",55\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n21,EL AL,DOG,\"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused\",54\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n0,MINISTRY OF AGRICULTURE,EL AL,\"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.\",54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n30,EL AL,PERSONAL BAG,\"El Al allows passengers to bring a personal bag on board, subject to size restrictions\",52\r\n48,EL AL,BATTERY-POWERED MOBILITY AIDS,EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights,52\r\n49,EL AL,HAZARDOUS MATERIALS,EL AL requires advance notice and a Declaration Form for traveling with hazardous materials,52\r\n9,EL AL,ARRIVALS HALL,Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL,51\r\n6,EL AL,DANGEROUS DOG,\"EL AL has a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy ensures that dangerous dogs are not allowed on their flights, reflecting the airline's commitment to safety and compliance with legal regulations.\",51\r\n13,EL AL,CABIN,EL AL allows pets to be transported in the cabin under specific conditions,51\r\n25,EL AL,FRAGILE ITEM,EL AL does not bear responsibility for fragile items transported by the airline,51\r\n26,EL AL,VALUABLE ITEM,EL AL does not bear responsibility for valuable items transported by the airline,51\r\n27,EL AL,EQUIPMENT,EL AL has guidelines regarding the transport of passenger equipment,51\r\n47,EL AL,BATTERY-POWERED DEVICES,\"EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.\",51\r\n50,EL AL,MOBILITY AID,EL AL provides services for passengers traveling with mobility aids,51\r\n41,EL AL,$5,The additional handling fee of $5 is charged by EL AL for baggage checked through their service center,50\r\n42,EL AL,50% DISCOUNT,EL AL offers a 50% discount on baggage fees if purchased online before the flight,50\r\n38,EL AL,ADDITIONAL HANDLING FEE,EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center,50\r\n20,EL AL,ANIMAL AIR TRANSPORT COMPANIES,\"EL AL may recommend using specialized companies for the air transport of animals, including service dogs.\",50\r\n28,EL AL,BAGGAGE ISSUES,EL AL has policies in place to address various baggage issues encountered by travelers,50\r\n8,EL AL,CHECK-IN COUNTER,\"EL AL requires passengers to check in at their designated check-in counters for their flights. Additionally, pet owners must arrive at the check-in counter with their pets to make the necessary transportation arrangements for their travel on EL AL.\",50\r\n40,EL AL,CHECK-IN PROCESS,Passengers can add baggage during the check-in process for their EL AL flight,50\r\n43,EL AL,CHECKED BAGGAGE RULES,\"Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL's policies\",50\r\n46,EL AL,CODESHARE FLIGHTS,\"The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.\",50\r\n15,EL AL,TRANSPORTATION,\"EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo\",50\r\n23,EL AL,SAFETY AND SECURITY REGULATIONS,EL AL must adhere to safety and security regulations when transporting dogs,50\r\n33,EL AL,FLIGHT DESTINATION,Passengers must have necessary documents according to their flight destination when checking in with El Al,50\r\n39,EL AL,MANAGE MY BOOKING,Passengers can add baggage via the Manage my booking service provided by EL AL,50\r\n45,EL AL,GOVERNMENT SERVICE TAX,\"The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.\",50\r\n51,EL AL,EMAIL NOTIFICATION,An email notification is required to inform EL AL about traveling with a mobility aid,50\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n116,CARGO DIVISION,TRANSPORT AUTHORIZATION,The Cargo Division requires transport authorization from destination authorities for pet transport,9\r\n118,CARGO DIVISION,MEASUREMENTS OF TRANSPORT CAGE,The Cargo Division requires the measurements of the transport cage for compliance,9\r\n119,CARGO DIVISION,TRANSPORTING ANIMALS,\"The Cargo Division specializes in transporting animals, including pets\",9\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n339,VALUABLE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting valuable items,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-a5940d050c5cd8d8f831f5101c204015 b/cache/community_reporting/create_community_report-chat-v2-a5940d050c5cd8d8f831f5101c204015 deleted file mode 100644 index ad86bf776efa45df17d2d1022a0c2f2f521524c6..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-a5940d050c5cd8d8f831f5101c204015 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"ARTY Rimon and Baggage Services Community\",\n \"summary\": \"The community is centered around ARTY Rimon, a service provider specializing in baggage pickup and delivery, along with various related entities such as Makor Haziud and Moka. These entities are interconnected through service relationships and shared operational locations, highlighting their collective role in the baggage handling and delivery sector.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the community's involvement in baggage services, which can significantly affect customer satisfaction and operational efficiency.\",\n \"findings\": [\n {\n \"summary\": \"ARTY Rimon as the central service provider\",\n \"explanation\": \"ARTY Rimon is the primary entity in this community, specializing in pickup and delivery services for baggage, luggage, and bags. Its extensive network of service locations, including cities like Rehovot, Shoham, Ramle, and Lod, indicates a broad operational reach. The relationships with other entities, such as Moka and Rimon Mizvadot ve Tikim, further emphasize its role as a key player in the baggage handling sector. The effectiveness of ARTY Rimon's services directly impacts customer experiences and satisfaction levels, making it a critical component of this community. [Data: Entities (210); Relationships (240, 343, 344, 348, 349, 350, 351)]\"\n },\n {\n \"summary\": \"Makor Haziud's relevance to baggage services\",\n \"explanation\": \"Makor Haziud operates as a specialized store for baggage and outdoor equipment, which complements the services provided by ARTY Rimon. The relationship between these two entities indicates a collaborative dynamic where Makor Haziud may supply essential equipment for baggage handling. This partnership enhances the overall service quality and efficiency of baggage management within the community. Additionally, the store's location in Nes Ziona further integrates it into the local service network, making it a valuable asset for customers seeking baggage solutions. [Data: Entities (207); Relationships (237, 340)]\"\n },\n {\n \"summary\": \"Moka's role as a pickup and delivery point\",\n \"explanation\": \"Moka serves as a designated pickup and delivery point for ARTY Rimon, facilitating convenient access for customers in Yehud. This relationship underscores the importance of Moka in the logistics chain, as it provides a physical location for customers to drop off or collect their baggage. The operational synergy between Moka and ARTY Rimon enhances service efficiency and customer satisfaction, making Moka a vital part of the community's infrastructure. [Data: Entities (234); Relationships (352)]\"\n },\n {\n \"summary\": \"Competitive dynamics with Rimon Mizvadot ve Tikim\",\n \"explanation\": \"Rimon Mizvadot ve Tikim operates in Rishon Le Zion and provides similar pickup and delivery services as ARTY Rimon. This competitive relationship highlights the need for both entities to maintain high service standards to attract and retain customers. The presence of multiple service providers in the same sector can lead to improved service offerings and pricing strategies, ultimately benefiting consumers. However, it also necessitates vigilance regarding service quality to avoid customer dissatisfaction. [Data: Entities (235); Relationships (344, 353)]\"\n },\n {\n \"summary\": \"Hagalgal's contribution to the community\",\n \"explanation\": \"Hagalgal specializes in baby and children's equipment, providing relevant services that intersect with ARTY Rimon's offerings. This relationship indicates a potential for cross-service opportunities, where customers seeking baby equipment may also require baggage handling services. The collaboration between Hagalgal and ARTY Rimon can enhance customer experiences by offering comprehensive solutions for families traveling with children. [Data: Entities (237); Relationships (345, 355)]\"\n },\n {\n \"summary\": \"Policies affecting customer service\",\n \"explanation\": \"The community is governed by specific policies regarding baggage claims and delays, which are critical for customer service. For instance, the policy requiring contact within 7 days for baggage damage claims and 21 days for delays is essential for maintaining customer trust and satisfaction. These policies not only guide operational procedures but also shape customer expectations, making them a significant aspect of the community's service framework. [Data: Entities (240, 241); Relationships (346, 356)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n210,ARTY RIMON,\"ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.\",12\r\n207,MAKOR HAZIUD,Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment.,3\r\n234,MOKA,\"Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.\",2\r\n235,RIMON MIZVADOT VE TIKIM,Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.,2\r\n237,HAGALGAL,\"Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.\",2\r\n240,IMPORTANT TO KNOW,Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.,2\r\n233,CARGO TIKIM VE MIZVADOT,\"Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.\",1\r\n249,SHLOMO HA-MELEKH,,1\r\n244,REHOVOT,Rehovot is a city where ARTY Rimon provides pickup and delivery services.,1\r\n246,SHOHAM,Shoham is a city where ARTY Rimon provides pickup and delivery services.,1\r\n247,RAMLE,Ramle is a city where ARTY Rimon provides pickup and delivery services.,1\r\n248,LOD,Lod is a city where ARTY Rimon provides pickup and delivery services.,1\r\n245,NES ZIONA,Nes Ziona is a city where Makor Haziud operates.,1\r\n238,BUGABOO,\"Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.\",1\r\n241,DELAY IN RECEIVING BAGGAGE,\"Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.\",1\r\n243,YEHUD,\"Yehud is a city where Moka, a pickup and delivery point, is located.\",1\r\n242,RISHON LE ZION,Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n340,MAKOR HAZIUD,ARTY RIMON,\"Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon\",15\r\n343,ARTY RIMON,MOKA,\"Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship\",14\r\n344,ARTY RIMON,RIMON MIZVADOT VE TIKIM,\"Both provide similar services in different locations, indicating a competitive relationship\",14\r\n345,ARTY RIMON,HAGALGAL,\"Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon\",14\r\n346,ARTY RIMON,IMPORTANT TO KNOW,The policy regarding baggage damage is relevant to the services provided by ARTY Rimon,14\r\n342,ARTY RIMON,CARGO TIKIM VE MIZVADOT,\"Both provide services related to luggage and bags, indicating a potential partnership or competition\",13\r\n347,ARTY RIMON,SHLOMO HA-MELEKH,\"Shlomo Ha-Melekh is a contact person for ARTY Rimon, indicating a direct association\",13\r\n348,ARTY RIMON,REHOVOT,\"ARTY Rimon provides services in Rehovot, indicating a service location relationship\",13\r\n349,ARTY RIMON,SHOHAM,\"ARTY Rimon provides services in Shoham, indicating a service location relationship\",13\r\n350,ARTY RIMON,RAMLE,\"ARTY Rimon provides services in Ramle, indicating a service location relationship\",13\r\n351,ARTY RIMON,LOD,\"ARTY Rimon provides services in Lod, indicating a service location relationship\",13\r\n341,MAKOR HAZIUD,NES ZIONA,\"Makor Haziud operates in Nes Ziona, indicating a service location relationship\",4\r\n355,HAGALGAL,BUGABOO,\"Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in\",3\r\n356,IMPORTANT TO KNOW,DELAY IN RECEIVING BAGGAGE,The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers,3\r\n352,MOKA,YEHUD,\"Moka is located in Yehud, indicating a service location relationship\",3\r\n353,RIMON MIZVADOT VE TIKIM,RISHON LE ZION,\"Rimon Mizvadot ve Tikim operates in Rishon Le Zion, indicating a service location relationship\",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-a6c944cd17d9319248ea1b1f0af2d9db b/cache/community_reporting/create_community_report-chat-v2-a6c944cd17d9319248ea1b1f0af2d9db deleted file mode 100644 index 2e1affcac0e0af74db3bf0ecf20f09b6cde9f21c..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-a6c944cd17d9319248ea1b1f0af2d9db +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Policies and Allowances in Air Travel\",\n \"summary\": \"This community focuses on the various baggage policies and allowances associated with air travel, particularly those of EL AL and related entities. The relationships among these entities highlight the complexities of baggage regulations, ticket types, and additional fees that passengers may encounter.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential for confusion and additional costs for passengers regarding baggage policies and allowances.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's baggage allowance policies\",\n \"explanation\": \"EL AL has specific baggage allowance policies that vary based on the ticket type purchased by the passenger. This means that passengers must be aware of their ticket type to understand their baggage rights fully. The relationship between baggage allowance and ticket type is crucial, as it directly affects how much luggage a passenger can check in without incurring extra fees. [Data: Relationships (44, 410)]\"\n },\n {\n \"summary\": \"Importance of baggage policy\",\n \"explanation\": \"The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers can check in or carry on. This policy is essential for ensuring compliance with safety standards and facilitating a smooth travel experience. The baggage policy is interconnected with various entities, including baggage allowance and standard baggage definitions, which further complicates the travel experience for passengers. [Data: Entities (341); Relationships (200, 413)]\"\n },\n {\n \"summary\": \"Standard baggage and its implications\",\n \"explanation\": \"Standard baggage refers to luggage that complies with the airline's specified size and weight requirements. Understanding what constitutes standard baggage is vital for passengers to avoid additional fees. The relationship between standard baggage and the baggage policy indicates that passengers must adhere to specific guidelines to ensure their luggage is accepted without extra charges. [Data: Entities (345); Relationships (201, 418)]\"\n },\n {\n \"summary\": \"Excess baggage rates and their impact\",\n \"explanation\": \"Excess baggage rates are the fees charged for baggage that exceeds the allowed limit. These rates can vary significantly, and passengers need to be aware of them to avoid unexpected costs. The relationship between excess baggage rates and baggage allowance highlights the financial implications of not adhering to the specified limits, which can lead to increased travel expenses. [Data: Entities (362); Relationships (412, 330)]\"\n },\n {\n \"summary\": \"Role of ticket types in baggage allowances\",\n \"explanation\": \"The ticket type plays a crucial role in determining the baggage allowance for passengers. Different ticket types, such as Lite, Classic, and Flex services, come with varying baggage allowances, which can lead to confusion if not clearly understood. This relationship emphasizes the need for passengers to be informed about their ticket type to manage their baggage effectively. [Data: Entities (355); Relationships (405, 406, 407)]\"\n },\n {\n \"summary\": \"Manage Your Booking service\",\n \"explanation\": \"The 'Manage Your Booking' service allows passengers to view and modify their flight details, including baggage allowances. This online service is essential for travelers who need to adjust their baggage arrangements, providing them with the flexibility to manage their travel plans conveniently. The relationship between this service and additional pieces of baggage indicates that passengers can add luggage through this platform, which is crucial for those needing to check in more than the standard allowance. [Data: Entities (334); Relationships (414, 211)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n333,BAGGAGE ALLOWANCE,\"Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.\",12\r\n341,BAGGAGE POLICY,\"The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.\",5\r\n345,STANDARD BAGGAGE,\"Standard baggage refers to luggage that complies with the airline's specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.\",2\r\n96,FLIGHT TICKET,\"A flight ticket is a document that confirms a passenger's reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.\",3\r\n335,ADDITIONAL PIECES OF BAGGAGE,\"Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.\",3\r\n362,EXCESS BAGGAGE RATES,\"Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.\",3\r\n355,TICKET TYPE,The ticket type determines the baggage allowance and rules applicable to each passenger's reservation.,2\r\n330,LITE SERVICE,Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.,2\r\n331,CLASSIC SERVICE,Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.,2\r\n332,FLEX SERVICE,\"Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.\",2\r\n352,FLIGHT SEGMENT,\"A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.\",1\r\n360,LITE TICKETS,Lite tickets are a type of ticket that does not include any baggage allowance.,1\r\n334,MANAGE YOUR BOOKING,\"\"\"Manage Your Booking\"\" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.\",3\r\n343,PRE-ORDERING,\"Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.\",1\r\n338,THREE HOURS,Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.,1\r\n357,FREE BAGGAGE ALLOWANCE,\"The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,\"The terms \"\"CHECKED BAGGAGE\"\" and \"\"BAGGAGE ALLOWANCE\"\" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.\",37\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline's size and weight requirements,23\r\n86,PET,FLIGHT TICKET,\"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.\",22\r\n413,BAGGAGE ALLOWANCE,BAGGAGE POLICY,Baggage allowance is determined by the baggage policy of the airline,17\r\n408,BAGGAGE ALLOWANCE,ADDITIONAL PIECES OF BAGGAGE,\"Additional pieces of baggage can be checked in for a fee, which varies depending on the service type\",15\r\n412,BAGGAGE ALLOWANCE,EXCESS BAGGAGE RATES,\"Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.\",15\r\n210,FLIGHT TICKET,BAGGAGE ALLOWANCE,The flight ticket includes information about the baggage allowance for the passenger,15\r\n410,BAGGAGE ALLOWANCE,TICKET TYPE,The baggage allowance is determined by the ticket type specified on the reservation,14\r\n405,LITE SERVICE,BAGGAGE ALLOWANCE,Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering,14\r\n406,CLASSIC SERVICE,BAGGAGE ALLOWANCE,Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n407,FLEX SERVICE,BAGGAGE ALLOWANCE,Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n409,BAGGAGE ALLOWANCE,FLIGHT SEGMENT,Baggage allowance is specified for each flight segment on the ticket,13\r\n411,BAGGAGE ALLOWANCE,LITE TICKETS,\"Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.\",13\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n418,BAGGAGE POLICY,STANDARD BAGGAGE,Standard baggage must comply with the airline's baggage policy,7\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,\"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.\",7\r\n414,MANAGE YOUR BOOKING,ADDITIONAL PIECES OF BAGGAGE,Passengers can add additional pieces of baggage through the Manage Your Booking page,6\r\n211,FLIGHT TICKET,MANAGE YOUR BOOKING,\"The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances\",6\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,\"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.\",5\r\n416,ADDITIONAL PIECES OF BAGGAGE,PRE-ORDERING,Pre-ordering is required for checking additional pieces of baggage beyond the standard allowance,4\r\n415,MANAGE YOUR BOOKING,THREE HOURS,The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking,4\r\n420,TICKET TYPE,FREE BAGGAGE ALLOWANCE,The free baggage allowance is based on the ticket type and is specified for each flight segment,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-a8b731e49a7ecdaeecb9c18cc26a72e4 b/cache/community_reporting/create_community_report-chat-v2-a8b731e49a7ecdaeecb9c18cc26a72e4 deleted file mode 100644 index 2b2b98c1243ab5a3f70b82dc4833d7d8706685dd..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-a8b731e49a7ecdaeecb9c18cc26a72e4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Economy Class and Lite Fares\",\n \"summary\": \"The community focuses on Economy Class travel options, including Lite Fares, which offer basic services at lower costs. The entities are interconnected through baggage allowances and restrictions, particularly regarding sporting equipment.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential implications of baggage policies on travelers' experiences.\",\n \"findings\": [\n {\n \"summary\": \"Economy Class as a primary travel option\",\n \"explanation\": \"Economy Class is a widely utilized travel class that provides essential services at lower fares, making it accessible to a broad range of travelers. This class allows passengers to bring one carry-on bag weighing up to 8 kg, which is a significant consideration for budget-conscious travelers. The structure of Economy Class is designed to cater to those seeking affordable travel options while still offering standard services, thus playing a crucial role in the airline industry. [Data: Entities (163)]\"\n },\n {\n \"summary\": \"Lite Fares and their limitations\",\n \"explanation\": \"Lite Fares represent a specific subset of Economy Class fares that come with notable restrictions, particularly regarding the transport of sporting equipment. These fares do not allow for the complimentary transport of sports gear, which can be a disadvantage for travelers who wish to bring such items. The limitations associated with Lite Fares make them a more basic option, appealing primarily to those prioritizing cost over additional services. [Data: Entities (175), Relationships (307)]\"\n },\n {\n \"summary\": \"Baggage allowances in Economy Class\",\n \"explanation\": \"Economy Class passengers are entitled to specific carry-on baggage allowances, which are essential for travelers to understand when planning their trips. The allowance of one carry-on bag weighing up to 8 kg is a standard feature that helps manage passenger expectations and compliance with airline policies. This baggage policy is crucial for ensuring a smooth travel experience and minimizing potential disputes at check-in. [Data: Relationships (308)]\"\n },\n {\n \"summary\": \"Transport of sporting equipment in Economy Class\",\n \"explanation\": \"Economy Class permits the transport of sporting equipment under specific conditions, which is an important aspect for travelers who engage in sports. The allowance is subject to size and weight restrictions, ensuring that passengers can bring their gear while adhering to airline regulations. This policy enhances the appeal of Economy Class for active travelers, although it is important to note that Lite Fares do not include this benefit. [Data: Relationships (295)]\"\n },\n {\n \"summary\": \"Weight limits for sports equipment\",\n \"explanation\": \"The maximum weight limit for sports equipment in Economy Class is set at 30 kg, which is a critical factor for travelers planning to bring such items. This weight category indicates the relationship between the travel class and the specific allowances for sporting gear, ensuring that passengers are aware of the limitations they must adhere to. Understanding these limits is essential for avoiding additional fees or complications during travel. [Data: Relationships (306)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n163,ECONOMY CLASS,\"Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.\",7\r\n175,LITE FARES,\"LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,\"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.\",21\r\n306,ECONOMY CLASS,30 KG,\"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.\",9\r\n307,ECONOMY CLASS,LITE FARES,\"The Economy Class includes a category known as Lite Fares, which are characterized by certain restrictions and limited services. Specifically, Lite Fares impose limitations on the transport of sporting equipment, differentiating them from standard Economy Class offerings. These fares are designed to provide a more economical option for travelers while offering fewer amenities compared to regular Economy Class fares.\",8\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-aa299b40890b98e7124054f75acc1c20 b/cache/community_reporting/create_community_report-chat-v2-aa299b40890b98e7124054f75acc1c20 deleted file mode 100644 index 6b50164428945147ed787a94ffee4e4f2bed6ee9..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-aa299b40890b98e7124054f75acc1c20 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Management Community\",\n \"summary\": \"The Baggage Management Community encompasses various entities involved in the handling, tracking, and claims process related to passenger baggage. Key entities include airlines, baggage service centers, and documentation necessary for managing baggage issues, all of which are interconnected to ensure a smooth travel experience for passengers.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential for significant passenger dissatisfaction and operational disruptions stemming from baggage-related issues.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's role in baggage management\",\n \"explanation\": \"EL AL is a central entity in the baggage management community, responsible for managing baggage and addressing various issues such as delays, damages, and claims. As the airline, EL AL's policies and efficiency directly affect passenger experiences. The airline's commitment to handling baggage issues is crucial for maintaining customer satisfaction and operational integrity. Any shortcomings in their baggage management can lead to significant passenger complaints and operational challenges, impacting the airline's reputation and financial performance. [Data: Relationships (24, 193)]\"\n },\n {\n \"summary\": \"Importance of the Baggage Service Center\",\n \"explanation\": \"The Baggage Service Center plays a vital role in assisting travelers with baggage-related issues, including delays and damages. This center serves as a crucial resource for passengers seeking support and resolution for their baggage concerns. The effectiveness of the Baggage Service Center can significantly influence passenger satisfaction, as it is often the first point of contact for travelers facing baggage problems. A well-functioning service center can mitigate negative experiences, while inefficiencies can exacerbate issues, leading to increased frustration among passengers. [Data: Relationships (186)]\"\n },\n {\n \"summary\": \"Documentation requirements for baggage claims\",\n \"explanation\": \"Passengers must provide specific documentation when filing claims for lost or damaged baggage, including flight tickets, boarding passes, baggage tags, and damage reports. These documents are essential for validating claims and ensuring that the process is handled efficiently. The requirement for thorough documentation underscores the importance of proper record-keeping by both passengers and airlines. Failure to provide the necessary documents can result in claim denials, further complicating the resolution process and potentially leading to legal disputes. [Data: Relationships (194, 195, 196, 197, 198)]\"\n },\n {\n \"summary\": \"Baggage claim area as a critical touchpoint\",\n \"explanation\": \"The baggage claim area is where travelers report issues related to their baggage and receive assistance from airline representatives. This area is a critical touchpoint for passenger interaction with airline staff and can significantly influence overall travel experience. Efficient handling of baggage issues in this area can enhance customer satisfaction, while delays or poor service can lead to negative perceptions of the airline. The baggage claim area serves as a reflection of the airline's commitment to customer service and operational efficiency. [Data: Relationships (189)]\"\n },\n {\n \"summary\": \"Impact of baggage policies on passenger experience\",\n \"explanation\": \"Baggage policies govern the rules regarding what types of baggage are allowed and the associated fees. These policies can greatly affect passenger experience, as unclear or overly restrictive baggage rules can lead to confusion and dissatisfaction. Airlines must balance the need for operational efficiency with customer service, ensuring that policies are communicated clearly and enforced fairly. Poorly designed baggage policies can result in increased complaints and a negative impact on the airline's reputation. [Data: Relationships (200)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n56,BAGGAGE,\"Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.\",21\r\n203,BAGGAGE TAG,\"A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.\",2\r\n200,BAGGAGE CLAIM AREA,\"The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.\",1\r\n201,DAMAGE REPORT,\"A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.\",1\r\n251,FLIGHT TICKETS,Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.,1\r\n252,BOARDING PASSES,Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.,1\r\n253,BAGGAGE TAGS,\"Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.\",1\r\n254,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.,1\r\n255,RECEIPTS,Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n24,EL AL,BAGGAGE,\"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.\",70\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n186,BAGGAGE,BAGGAGE SERVICE CENTER,The Baggage Service Center is dedicated to assisting travelers with various issues related to their baggage. This includes managing problems such as delays and damages that may occur during travel. The center serves as a crucial resource for passengers seeking support and resolution for their baggage-related concerns.,34\r\n193,BAGGAGE,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,27\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n183,BEN GURION AIRPORT,BAGGAGE,\"Baggage, including pets, is released at Ben Gurion Airport's arrivals hall\",26\r\n187,BAGGAGE,COURIER SERVICE,The BAGGAGE is delivered to the passenger's address by the COURIER SERVICE after it has been retrieved following a delay. The COURIER SERVICE is responsible for ensuring that the delayed baggage reaches the travelers promptly after it has been located.,23\r\n188,BAGGAGE,CONTACT DETAILS,Contact details are provided for passengers to report baggage issues,23\r\n191,BAGGAGE,LOST BAGGAGE REPORT NUMBER,The lost baggage report number is used to track claims related to lost baggage,23\r\n192,BAGGAGE,BAGGAGE TAG,The baggage tag is essential for identifying and tracking baggage,23\r\n199,BAGGAGE,OVERSIZED AND OVERWEIGHT BAGGAGE,Oversized and overweight baggage are categories of baggage that exceed standard limits,23\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline's size and weight requirements,23\r\n189,BAGGAGE,BAGGAGE CLAIM AREA,\"Travelers report baggage issues in the baggage claim area, where they can receive assistance\",22\r\n190,BAGGAGE,DAMAGE REPORT,\"A damage report is issued when baggage is reported damaged, which is necessary for processing claims\",22\r\n194,BAGGAGE,FLIGHT TICKETS,Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n195,BAGGAGE,BOARDING PASSES,Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n196,BAGGAGE,BAGGAGE TAGS,Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n197,BAGGAGE,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.,22\r\n198,BAGGAGE,RECEIPTS,Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.,22\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-b2d702b28788f84da7ddaf6783bc842d b/cache/community_reporting/create_community_report-chat-v2-b2d702b28788f84da7ddaf6783bc842d deleted file mode 100644 index 305fe689f76c8de8c2f6240298bf6ce2ace16992..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-b2d702b28788f84da7ddaf6783bc842d +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Rimon Mizvadot ve Tikim in Rishon Le Zion\",\n \"summary\": \"The community centers around Rimon Mizvadot ve Tikim, a delivery service operating in Rishon Le Zion. The relationship with the city indicates a service provision context, while a competitive relationship with Arty Rimon highlights the competitive landscape of delivery services in the area.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the competitive dynamics in the delivery service market and the operational significance of Rimon Mizvadot ve Tikim in Rishon Le Zion.\",\n \"findings\": [\n {\n \"summary\": \"Rimon Mizvadot ve Tikim's operational significance\",\n \"explanation\": \"Rimon Mizvadot ve Tikim is a key player in the delivery service sector within Rishon Le Zion. The company provides essential pickup and delivery services, which are vital for local commerce and community connectivity. Its operations in this city suggest a strong local presence and potential influence on the local economy. The degree of service provided by Rimon Mizvadot ve Tikim is crucial for residents and businesses alike, indicating its importance in the community. [Data: Entities (235), Relationships (353)]\"\n },\n {\n \"summary\": \"Rishon Le Zion as a service location\",\n \"explanation\": \"Rishon Le Zion serves as the operational base for Rimon Mizvadot ve Tikim, highlighting the city's role in the company's service delivery framework. The relationship indicates that the city is not just a geographical location but a critical component of the service ecosystem. The presence of Rimon Mizvadot ve Tikim in Rishon Le Zion enhances the city's logistics capabilities, making it a significant hub for delivery services. [Data: Entities (242), Relationships (353)]\"\n },\n {\n \"summary\": \"Competitive dynamics with Arty Rimon\",\n \"explanation\": \"Rimon Mizvadot ve Tikim has a competitive relationship with Arty Rimon, which provides similar services in different locations. This competition can influence market dynamics, pricing strategies, and service quality in the area. The competitive landscape suggests that Rimon Mizvadot ve Tikim must continuously innovate and improve its offerings to maintain its market position against rivals like Arty Rimon. [Data: Relationships (344)]\"\n },\n {\n \"summary\": \"Impact of delivery services on local economy\",\n \"explanation\": \"The delivery services provided by Rimon Mizvadot ve Tikim are likely to have a positive impact on the local economy of Rishon Le Zion. By facilitating the movement of goods and services, the company supports local businesses and enhances consumer access to products. This operational role is essential for economic vitality, especially in urban settings where convenience and speed are increasingly valued by consumers. [Data: Entities (235), Relationships (353)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n235,RIMON MIZVADOT VE TIKIM,Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.,2\r\n242,RISHON LE ZION,Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n344,ARTY RIMON,RIMON MIZVADOT VE TIKIM,\"Both provide similar services in different locations, indicating a competitive relationship\",14\r\n353,RIMON MIZVADOT VE TIKIM,RISHON LE ZION,\"Rimon Mizvadot ve Tikim operates in Rishon Le Zion, indicating a service location relationship\",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-b8b8ed36927e02abd94f9391f51da856 b/cache/community_reporting/create_community_report-chat-v2-b8b8ed36927e02abd94f9391f51da856 deleted file mode 100644 index 52a9469e2a3aaafdd2d7e29b95fe5f673ede32a4..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-b8b8ed36927e02abd94f9391f51da856 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Airline and Animal Transport Community\",\n \"summary\": \"The community centers around EL AL, an airline with specific policies and regulations regarding the transportation of animals, including pets and service dogs. The entities within this community are interconnected through various relationships that govern baggage handling, cargo transport, and compliance with international regulations.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the complexities and potential risks associated with transporting animals and hazardous materials, as well as the airline's compliance with various regulations.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's comprehensive animal transport policies\",\n \"explanation\": \"EL AL has established detailed policies for the transportation of animals, including pets and service dogs. These policies outline specific weight limits, conditions for cabin transport, and requirements for documentation. For instance, pets transported in the cabin must not exceed 9 kg, including their cage, while larger animals may need to be transported as checked baggage or through the Cargo Division. This structured approach ensures that all animals are transported safely and in compliance with regulations [Data: Entities (1, 12, 7); Relationships (17, 10, 14)].\"\n },\n {\n \"summary\": \"Role of the Cargo Division in animal transport\",\n \"explanation\": \"The Cargo Division of EL AL plays a crucial role in managing the transport of animals, particularly those that are oversized or unaccompanied. This division is responsible for ensuring that all necessary documentation is provided for transporting animals as cargo, including health certificates and transport authorizations. The Cargo Division's expertise in handling special requests and approvals is vital for the safe transport of various types of cargo, especially animals [Data: Entities (12); Relationships (10, 19)].\"\n },\n {\n \"summary\": \"Compliance with international regulations\",\n \"explanation\": \"EL AL must adhere to various international regulations when transporting animals, including compliance with the CDC regulations for dogs being transported to the US. This compliance is essential to ensure the safety and legality of animal transport across borders. The airline's policies reflect a commitment to meeting these regulatory requirements, which helps mitigate potential legal issues and enhances the safety of animal transport [Data: Relationships (16)].\"\n },\n {\n \"summary\": \"Baggage handling and associated claims\",\n \"explanation\": \"EL AL is responsible for managing baggage, including issues related to delays, damages, and claims. The airline has specific policies regarding baggage measurements and weight limits, which are crucial for ensuring that all items, including animals, are transported according to regulations. Claims related to baggage issues are addressed through established procedures, highlighting the airline's commitment to customer service and compliance [Data: Entities (24); Relationships (28)].\"\n },\n {\n \"summary\": \"Potential risks associated with transporting hazardous materials\",\n \"explanation\": \"Transporting hazardous materials, such as dry ice, requires special handling and declaration when traveling with EL AL. The airline mandates advance notice and the completion of a Declaration Form for such materials, ensuring compliance with safety regulations. This aspect of the airline's operations underscores the importance of adhering to safety protocols to prevent incidents during transport [Data: Entities (421, 423); Relationships (49)].\"\n },\n {\n \"summary\": \"Impact of baggage policies on passenger experience\",\n \"explanation\": \"EL AL's baggage policies significantly impact the passenger experience, particularly regarding the transportation of pets and other items. The airline offers a 50% discount on baggage fees if purchased online before the flight, which can encourage passengers to plan ahead. Additionally, the maximum size and weight limits for checked baggage are clearly defined, helping passengers avoid unexpected fees and ensuring a smoother travel experience [Data: Entities (354, 354); Relationships (42, 44)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n1,EL AL,\"EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline's liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.\",49\r\n12,CARGO DIVISION,\"The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.\",8\r\n24,PETS,,6\r\n419,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.,3\r\n421,HAZARDOUS MATERIALS,Hazardous materials include items like dry ice that require special handling and declaration when traveling.,3\r\n11,ARRIVALS HALL,\"The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.\",2\r\n409,BATTERY-POWERED DEVICES,\"Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.\",2\r\n16,CABIN,\"The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.\",2\r\n3,DANGEROUS DOG,\"Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.\",2\r\n196,FRAGILE ITEM,\"The term \"\"FRAGILE ITEM\"\" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.\",2\r\n197,VALUABLE ITEM,\"Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.\",2\r\n199,EQUIPMENT,,2\r\n426,MOBILITY AID,,2\r\n353,$5,An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.,1\r\n354,50% DISCOUNT,Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.,1\r\n348,ADDITIONAL HANDLING FEE,An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.,1\r\n100,ANIMAL AIR TRANSPORT COMPANIES,\"Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.\",1\r\n204,BAGGAGE ISSUES,\"Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.\",1\r\n10,CHECK-IN COUNTER,\"The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.\",1\r\n310,CHECK-IN PROCESS,\"The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight.\",1\r\n356,CHECKED BAGGAGE RULES,Checked baggage rules may vary when several airlines are involved in a flight route.,1\r\n364,CODESHARE FLIGHTS,Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.,1\r\n19,TRANSPORTATION,\"Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.\",1\r\n108,SAFETY AND SECURITY REGULATIONS,\"Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.\",1\r\n305,FLIGHT DESTINATION,\"The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.\",1\r\n351,MANAGE MY BOOKING,\"Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.\",1\r\n363,GOVERNMENT SERVICE TAX,A government service tax will be collected for air travel for flights originating in India.,1\r\n425,EMAIL NOTIFICATION,An email notification to the airline is required to inform them about the intention to travel with a mobility aid.,1\r\n7,9KG,\"The entity \"\"9KG\"\" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.\",2\r\n44,TRANSPORT AUTHORIZATION,Transport authorization from the destination country authorities is required for transporting pets.,1\r\n46,MEASUREMENTS OF TRANSPORT CAGE,The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.,1\r\n51,TRANSPORTING ANIMALS,\"The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.\",1\r\n47,DOGS,\"Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.\",3\r\n50,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are necessary for transporting pets and must be presented at check-in.,1\r\n17,EXOTIC BIRDS,Exotic birds are among the pets that can be transported in the cabin with their owners.,1\r\n410,IATA REGULATIONS,\"IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.\",2\r\n49,AIRPORT FACILITIES,Airport facilities in the United States may incur additional charges for inspecting and releasing pets.,1\r\n420,FLIGHT-APPROVED BATTERIES,Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.,1\r\n422,DECLARATION FORM,A Declaration Form is required for traveling with hazardous materials on EL AL flights.,1\r\n52,US,\"The United States has specific regulations regarding the transportation of pets, particularly dogs.\",1\r\n423,DRY ICE,Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.,1\r\n198,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.,2\r\n21,LUGGAGE COMPARTMENT,\"The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.\",1\r\n424,FLIGHT AID,\"Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.\",1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n2,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\r\n3,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.\"\r\n4,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"In certain instances (e.g. large animals), animals must be transported as checked baggage.\"\r\n5,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,\"There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).\"\r\n11,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\r\n43,EL AL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\r\n47,EL AL,BAGGAGE POLICY,TRUE,\"The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.\"\r\n48,EL AL,BAGGAGE POLICY,TRUE,\"Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.\"\r\n49,EL AL,BAGGAGE POLICY,TRUE,\"The maximum size permitted for an infant’s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.\"\r\n50,EL AL,BAGGAGE POLICY,TRUE,EL AL reserves the right to change the excess baggage rates from time to time.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n17,EL AL,ANIMAL,EL AL provides transport services for animals in various classes,78\r\n11,EL AL,CHECKED BAGGAGE,\"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline's baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.\",74\r\n24,EL AL,BAGGAGE,\"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.\",70\r\n7,EL AL,PET,\"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport\",68\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n5,EL AL,SERVICE DOG,\"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.\",65\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,\"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.\",63\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n10,EL AL,CARGO DIVISION,\"EL AL's Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.\",57\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n14,EL AL,PETS,\"EL AL has established specific policies for transporting pets, which include weight limits and certain conditions that must be met. The airline offers services for transporting pets as cargo, and it requires specific documentation to ensure the safe and compliant travel of these animals.\",55\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n21,EL AL,DOG,\"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused\",54\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n0,MINISTRY OF AGRICULTURE,EL AL,\"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.\",54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n48,EL AL,BATTERY-POWERED MOBILITY AIDS,EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights,52\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n30,EL AL,PERSONAL BAG,\"El Al allows passengers to bring a personal bag on board, subject to size restrictions\",52\r\n49,EL AL,HAZARDOUS MATERIALS,EL AL requires advance notice and a Declaration Form for traveling with hazardous materials,52\r\n9,EL AL,ARRIVALS HALL,Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL,51\r\n47,EL AL,BATTERY-POWERED DEVICES,\"EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.\",51\r\n13,EL AL,CABIN,EL AL allows pets to be transported in the cabin under specific conditions,51\r\n6,EL AL,DANGEROUS DOG,\"EL AL has a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy ensures that dangerous dogs are not allowed on their flights, reflecting the airline's commitment to safety and compliance with legal regulations.\",51\r\n25,EL AL,FRAGILE ITEM,EL AL does not bear responsibility for fragile items transported by the airline,51\r\n26,EL AL,VALUABLE ITEM,EL AL does not bear responsibility for valuable items transported by the airline,51\r\n27,EL AL,EQUIPMENT,EL AL has guidelines regarding the transport of passenger equipment,51\r\n50,EL AL,MOBILITY AID,EL AL provides services for passengers traveling with mobility aids,51\r\n41,EL AL,$5,The additional handling fee of $5 is charged by EL AL for baggage checked through their service center,50\r\n42,EL AL,50% DISCOUNT,EL AL offers a 50% discount on baggage fees if purchased online before the flight,50\r\n38,EL AL,ADDITIONAL HANDLING FEE,EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center,50\r\n20,EL AL,ANIMAL AIR TRANSPORT COMPANIES,\"EL AL may recommend using specialized companies for the air transport of animals, including service dogs.\",50\r\n28,EL AL,BAGGAGE ISSUES,EL AL has policies in place to address various baggage issues encountered by travelers,50\r\n8,EL AL,CHECK-IN COUNTER,\"EL AL requires passengers to check in at their designated check-in counters for their flights. Additionally, pet owners must arrive at the check-in counter with their pets to make the necessary transportation arrangements for their travel on EL AL.\",50\r\n40,EL AL,CHECK-IN PROCESS,Passengers can add baggage during the check-in process for their EL AL flight,50\r\n43,EL AL,CHECKED BAGGAGE RULES,\"Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL's policies\",50\r\n46,EL AL,CODESHARE FLIGHTS,\"The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.\",50\r\n15,EL AL,TRANSPORTATION,\"EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo\",50\r\n23,EL AL,SAFETY AND SECURITY REGULATIONS,EL AL must adhere to safety and security regulations when transporting dogs,50\r\n33,EL AL,FLIGHT DESTINATION,Passengers must have necessary documents according to their flight destination when checking in with El Al,50\r\n39,EL AL,MANAGE MY BOOKING,Passengers can add baggage via the Manage my booking service provided by EL AL,50\r\n45,EL AL,GOVERNMENT SERVICE TAX,\"The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.\",50\r\n51,EL AL,EMAIL NOTIFICATION,An email notification is required to inform EL AL about traveling with a mobility aid,50\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n71,PET,9KG,\"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported\",21\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n116,CARGO DIVISION,TRANSPORT AUTHORIZATION,The Cargo Division requires transport authorization from destination authorities for pet transport,9\r\n118,CARGO DIVISION,MEASUREMENTS OF TRANSPORT CAGE,The Cargo Division requires the measurements of the transport cage for compliance,9\r\n119,CARGO DIVISION,TRANSPORTING ANIMALS,\"The Cargo Division specializes in transporting animals, including pets\",9\r\n134,PETS,DOGS,Dogs are classified as pets that require special regulations for transportation,9\r\n135,PETS,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are required for transporting pets,7\r\n129,EXOTIC BIRDS,PETS,Exotic birds are classified as pets that can be transported under certain conditions,7\r\n444,IATA REGULATIONS,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids must comply with IATA regulations for air travel,5\r\n111,9KG,CABIN,The weight limit of 9kg applies to pets transported in the cabin,4\r\n182,DOGS,AIRPORT FACILITIES,Airport facilities may charge additional fees for inspecting and releasing dogs,4\r\n443,BATTERY-POWERED DEVICES,IATA REGULATIONS,Battery-powered devices must comply with IATA regulations for safe transport on flights.,4\r\n449,BATTERY-POWERED MOBILITY AIDS,FLIGHT-APPROVED BATTERIES,Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights,4\r\n450,HAZARDOUS MATERIALS,DECLARATION FORM,A Declaration Form is necessary for traveling with hazardous materials on EL AL flights,4\r\n181,DOGS,US,The US has specific regulations regarding the transportation of dogs,4\r\n451,HAZARDOUS MATERIALS,DRY ICE,Dry ice is classified as a hazardous material that requires special handling during air travel,4\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n338,FRAGILE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile items,4\r\n339,VALUABLE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting valuable items,4\r\n68,DANGEROUS DOG,LUGGAGE COMPARTMENT,Dangerous dogs are not allowed in the luggage compartment during transportation,3\r\n452,FLIGHT AID,MOBILITY AID,Mobility aids are part of the flight aid services provided to assist passengers,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-bcbec6d3a3ecd1da9674749f7ef293c3 b/cache/community_reporting/create_community_report-chat-v2-bcbec6d3a3ecd1da9674749f7ef293c3 deleted file mode 100644 index f5351c3ac9b47c0cf49d9d6401e50713534a38cb..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-bcbec6d3a3ecd1da9674749f7ef293c3 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Excess Baggage Charges and Currency Implications\",\n \"summary\": \"This community focuses on the dynamics surrounding excess baggage charges, particularly how these charges are influenced by the type of baggage, the applicable fees, and the currencies used for payment. The entities are interconnected through relationships that define the conditions under which excess baggage fees apply and the currencies accepted for these payments.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the financial implications for travelers and the potential for confusion regarding payment methods.\",\n \"findings\": [\n {\n \"summary\": \"Excess baggage charges are a significant financial consideration for travelers\",\n \"explanation\": \"Excess baggage charges are fees imposed on passengers when their luggage exceeds the permitted size and weight dimensions. This can lead to unexpected costs for travelers, especially if they are unaware of the limits. The financial burden can vary significantly based on the type of baggage and the specific airline policies. Understanding these charges is crucial for travelers to avoid surprises at the airport. [Data: Entities (183); Relationships (90, 305)]\"\n },\n {\n \"summary\": \"Specific fees for transporting sporting equipment\",\n \"explanation\": \"The fee of 70 USD for transporting sports equipment one way to Europe, the Middle East, and Morocco highlights the additional costs associated with specific types of baggage. This fee is particularly relevant for travelers who engage in sports and may not be aware of the extra charges that apply to their equipment. The relationship between sporting equipment and excess baggage charges indicates that travelers should plan accordingly to avoid incurring these fees. [Data: Entities (180); Relationships (302)]\"\n },\n {\n \"summary\": \"US Dollars as the standard currency for baggage fees\",\n \"explanation\": \"US Dollars are the primary currency used for displaying prices related to excess baggage fees. This standardization simplifies the pricing structure for international travelers, but it also means that travelers must be aware of potential currency conversion issues when paying at different airports. The reliance on US Dollars can create confusion for travelers who may need to pay in local currency at certain locations. [Data: Entities (182); Relationships (329, 330)]\"\n },\n {\n \"summary\": \"Local currency requirements at specific airports\",\n \"explanation\": \"At some airports, payment for excess baggage charges is only accepted in local currency, which can complicate the payment process for travelers. This requirement emphasizes the importance of being informed about the payment methods accepted at the airport of departure or arrival. Travelers may need to exchange currency or use local payment methods, which can lead to additional costs or delays. [Data: Entities (185); Relationships (331, 332)]\"\n },\n {\n \"summary\": \"Interconnectedness of baggage fees and payment methods\",\n \"explanation\": \"The relationships between excess baggage charges, specific fees, and the currencies used for payment illustrate a complex web of financial implications for travelers. Understanding how these elements interact is essential for effective travel planning. Travelers must be aware of the potential for additional charges based on baggage type and the currency requirements at their destination. [Data: Relationships (90, 305, 331)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n183,EXCESS BAGGAGE CHARGES,\"Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger's luggage exceeds the allowed limits, resulting in additional costs for the traveler.\",4\r\n180,70 USD,\"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.\",2\r\n182,US DOLLARS,\"US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.\",4\r\n185,LOCAL CURRENCY,\"Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.\",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n90,CHECKED BAGGAGE,EXCESS BAGGAGE CHARGES,Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions,29\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n302,SPORTING EQUIPMENT,70 USD,\"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco\",16\r\n329,US DOLLARS,EXCESS BAGGAGE CHARGES,Excess baggage charges are displayed in US dollars,8\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,\"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.\",7\r\n327,70 USD,US DOLLARS,\"70 USD is expressed in US Dollars, which is the currency for baggage fees\",6\r\n331,EXCESS BAGGAGE CHARGES,LOCAL CURRENCY,\"At some airports, payment for excess baggage charges is allowed only in local currency\",6\r\n328,150 USD,US DOLLARS,\"150 USD is expressed in US Dollars, which is the currency for baggage fees\",6\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,\"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.\",5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-bdbfeeb9cb254f073f7219ccd9a3c707 b/cache/community_reporting/create_community_report-chat-v2-bdbfeeb9cb254f073f7219ccd9a3c707 deleted file mode 100644 index 270b4dd99c76360f58379505f17f05963ecece02..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-bdbfeeb9cb254f073f7219ccd9a3c707 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Checked Baggage and Airline Policies\",\n \"summary\": \"The community focuses on the policies and regulations surrounding checked baggage, particularly in relation to EL AL and its associated entities. Key entities include checked baggage, excess baggage charges, and specific items like bicycles and ski equipment, all of which are interconnected through various airline policies and fees.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential financial implications and regulatory compliance issues associated with baggage transport.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's comprehensive baggage policies\",\n \"explanation\": \"EL AL has established detailed guidelines for transporting checked baggage, which includes specific provisions for animals and sporting equipment. These policies are crucial for ensuring compliance with safety and regulatory standards in air travel. The airline's baggage policy is comparable to that of Sundor, indicating a broader industry standard that influences checked baggage regulations. This interconnectedness highlights the importance of understanding these policies for both passengers and the airline. [Data: Entities (5), Relationships (11, 88, 90, 102, 109)]\"\n },\n {\n \"summary\": \"Excess baggage charges and their implications\",\n \"explanation\": \"Excess baggage charges are a significant aspect of air travel, impacting passengers financially when their luggage exceeds the allowed limits. These charges apply to various types of baggage, including sporting equipment and special items like bicycles. Understanding these fees is essential for travelers to avoid unexpected costs and ensure compliance with airline policies. The relationship between checked baggage and excess baggage charges is critical in managing travel expenses effectively. [Data: Entities (183, 349), Relationships (90, 101, 305)]\"\n },\n {\n \"summary\": \"Transporting bicycles under specific conditions\",\n \"explanation\": \"Bicycles can be transported as checked baggage if they meet specific size and weight dimensions, which is a crucial consideration for travelers who wish to bring their bikes. The EL AL call center plays a vital role in pre-approving the transport of bicycles, ensuring that all regulations are adhered to. This process highlights the importance of communication between passengers and the airline to facilitate smooth travel experiences. [Data: Entities (187), Relationships (93, 120, 333)]\"\n },\n {\n \"summary\": \"Ski and snowboard equipment transport regulations\",\n \"explanation\": \"Ski and snowboard equipment can be included in checked baggage under specific conditions, which is essential for winter sports enthusiasts. The airline's policies regarding these items often include provisions for complimentary transport under certain circumstances. Understanding these regulations is vital for travelers to ensure their equipment is transported safely and without incurring additional fees. [Data: Entities (179, 186), Relationships (91, 325, 326)]\"\n },\n {\n \"summary\": \"The role of local currency in baggage fees\",\n \"explanation\": \"At some airports, payment for excess baggage charges may only be accepted in local currency, which can complicate the travel experience for international passengers. This aspect emphasizes the need for travelers to be aware of the payment methods accepted at their departure and arrival airports to avoid issues during their journey. The relationship between local currency and excess baggage rates is crucial for effective financial planning while traveling. [Data: Entities (185, 182), Relationships (331, 332)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n5,CHECKED BAGGAGE,\"Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.\",25\r\n187,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.,6\r\n183,EXCESS BAGGAGE CHARGES,\"Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger's luggage exceeds the allowed limits, resulting in additional costs for the traveler.\",4\r\n179,SKI EQUIPMENT,\"Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.\",3\r\n336,$90,The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.,1\r\n86,50 KG,\"The entity \"\"50 KG\"\" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.\",1\r\n358,ADDITIONAL PIECES OF CHECKED BAGGAGE,There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.,1\r\n186,SNOWBOARD EQUIPMENT,\"Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.\",1\r\n190,PERMITTED DIMENSIONS,The maximum size and weight limits that checked baggage and special items must adhere to for transport.,1\r\n194,EL AL AIRCRAFT,The information provided applies specifically to EL AL flights on EL AL aircraft.,1\r\n349,EXCESS BAGGAGE,\"Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.\",1\r\n350,CODE-SHARE FLIGHTS,\"Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.\",1\r\n361,MAXIMUM SIZE,\"The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.\",1\r\n359,INFANT'S CHECKED BAGGAGE,Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.,1\r\n180,70 USD,\"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.\",2\r\n182,US DOLLARS,\"US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.\",4\r\n189,EL AL CALL CENTER,The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.,1\r\n191,PACKING REGULATIONS,Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.,1\r\n192,MOTORIZED BICYCLES,Motorized bicycles are not allowed to be transported as checked baggage.,1\r\n193,EXCEPTIONAL CASES,\"Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.\",1\r\n185,LOCAL CURRENCY,\"Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.\",2\r\n177,COMPLIMENTARY TRANSPORT,Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.,2\r\n188,LITE FARE TICKET,A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.,1\r\n176,SNOWBOARDING EQUIPMENT,\"Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n11,EL AL,CHECKED BAGGAGE,\"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline's baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.\",74\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n69,PET,CHECKED BAGGAGE,\"Pets can be transported as checked baggage under certain conditions, such as size and weight\",44\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline's size and weight requirements,39\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,\"The terms \"\"CHECKED BAGGAGE\"\" and \"\"BAGGAGE ALLOWANCE\"\" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.\",37\r\n93,CHECKED BAGGAGE,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions,31\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n90,CHECKED BAGGAGE,EXCESS BAGGAGE CHARGES,Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions,29\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n91,CHECKED BAGGAGE,SKI EQUIPMENT,Ski equipment can be included in checked baggage under specific conditions,28\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n89,CHECKED BAGGAGE,AIRLINE,\"Airlines have specific policies regarding checked baggage, including size and weight limits\",27\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,\"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.\",27\r\n104,CHECKED BAGGAGE,$90,The fee of $90 is specifically for checking a piece of baggage not included in the ticket price,26\r\n95,CHECKED BAGGAGE,50 KG,The maximum weight limit for checked baggage is 50 kg,26\r\n105,CHECKED BAGGAGE,ADDITIONAL PIECES OF CHECKED BAGGAGE,Additional pieces of checked baggage incur fees beyond the standard allowance,26\r\n92,CHECKED BAGGAGE,SNOWBOARD EQUIPMENT,Snowboard equipment can be included in checked baggage under specific conditions,26\r\n94,CHECKED BAGGAGE,PERMITTED DIMENSIONS,Checked baggage must meet the permitted dimensions for transport,26\r\n97,CHECKED BAGGAGE,EL AL AIRCRAFT,The baggage regulations apply specifically to EL AL aircraft,26\r\n101,CHECKED BAGGAGE,EXCESS BAGGAGE,\"Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees\",26\r\n103,CHECKED BAGGAGE,CODE-SHARE FLIGHTS,Baggage procedures may vary on code-share flights depending on the marketing carrier,26\r\n106,CHECKED BAGGAGE,MAXIMUM SIZE,\"The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.\",26\r\n107,CHECKED BAGGAGE,INFANT'S CHECKED BAGGAGE,Infant's checked baggage is a specific category of checked baggage that includes items for infants.,26\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n302,SPORTING EQUIPMENT,70 USD,\"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco\",16\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n329,US DOLLARS,EXCESS BAGGAGE CHARGES,Excess baggage charges are displayed in US dollars,8\r\n333,BICYCLE,EL AL CALL CENTER,Pre-approval for transporting bicycles must be obtained from the EL AL call center,7\r\n334,BICYCLE,PACKING REGULATIONS,Bicycles must be packed according to specific packing regulations to be transported,7\r\n335,BICYCLE,MOTORIZED BICYCLES,Motorized bicycles are prohibited from being transported as checked baggage,7\r\n336,BICYCLE,EXCEPTIONAL CASES,Transport of bicycles may be allowed in exceptional cases with prior approval,7\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,\"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.\",7\r\n327,70 USD,US DOLLARS,\"70 USD is expressed in US Dollars, which is the currency for baggage fees\",6\r\n331,EXCESS BAGGAGE CHARGES,LOCAL CURRENCY,\"At some airports, payment for excess baggage charges is allowed only in local currency\",6\r\n328,150 USD,US DOLLARS,\"150 USD is expressed in US Dollars, which is the currency for baggage fees\",6\r\n325,COMPLIMENTARY TRANSPORT,SKI EQUIPMENT,Ski equipment may qualify for complimentary transport under specific conditions set by the airline.,5\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,\"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.\",5\r\n326,SKI EQUIPMENT,LITE FARE TICKET,Ski equipment transport does not apply on LITE fare tickets,4\r\n324,SNOWBOARDING EQUIPMENT,COMPLIMENTARY TRANSPORT,Snowboarding equipment may also qualify for complimentary transport under specific conditions set by the airline.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-c01f39c05702d229cc049b36c271e6d6 b/cache/community_reporting/create_community_report-chat-v2-c01f39c05702d229cc049b36c271e6d6 deleted file mode 100644 index 260d60e906a265244f37f46864a875d1d585b203..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-c01f39c05702d229cc049b36c271e6d6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Checked Bags and Plane's Belly\",\n \"summary\": \"This community revolves around the concepts of checked bags, the plane's belly, and the no charge policy associated with luggage handling. The relationships among these entities highlight the process of managing luggage during air travel, particularly when carry-on space is limited.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the implications of luggage handling policies on passenger experience and airline operations.\",\n \"findings\": [\n {\n \"summary\": \"Checked bags as a key entity\",\n \"explanation\": \"Checked bags are a crucial aspect of air travel, representing luggage that is stored in the cargo hold of an aircraft. This entity is central to the community as it directly relates to passenger convenience and airline logistics. The management of checked bags can significantly affect the overall travel experience, especially in scenarios where carry-on luggage is restricted. The relationship between checked bags and the plane's belly emphasizes the importance of efficient luggage handling systems in the aviation industry. [Data: Entities (285), Relationships (388)]\"\n },\n {\n \"summary\": \"The role of the plane's belly\",\n \"explanation\": \"The plane's belly refers to the cargo hold where checked bags are stored during flights. This entity is essential for understanding how luggage is managed in the aviation context. The relationship between checked bags and the plane's belly illustrates the operational aspects of air travel, particularly how airlines utilize space within the aircraft. Efficient use of the plane's belly can lead to improved operational efficiency and customer satisfaction. [Data: Entities (286), Relationships (388)]\"\n },\n {\n \"summary\": \"No charge policy for checked bags\",\n \"explanation\": \"The no charge policy indicates that passengers will not incur fees for checking carry-on bags if there is no available space on the aircraft. This policy is significant as it directly impacts passenger decisions regarding luggage. Understanding this relationship helps clarify the airline's approach to customer service and operational flexibility, particularly during peak travel times when space may be limited. [Data: Entities (287), Relationships (389)]\"\n },\n {\n \"summary\": \"Interconnection of luggage types\",\n \"explanation\": \"The relationship between carry-on bags and checked bags highlights the interconnectedness of different luggage types in air travel. If no free space is available for carry-on bags, they will be checked into the plane's belly, demonstrating the dynamic nature of luggage management. This relationship is crucial for airlines to understand as it affects both operational logistics and customer satisfaction. [Data: Relationships (293)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n285,CHECKED BAGS,\"Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane's cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.\",3\r\n286,PLANE'S BELLY,The plane's belly refers to the cargo hold of the aircraft where checked bags are stored.,1\r\n287,NO CHARGE,No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n293,CARRY-ON BAGS,CHECKED BAGS,\"If no free space is available, carry-on bags will be checked to the plane's belly\",11\r\n388,CHECKED BAGS,PLANE'S BELLY,Checked bags are stored in the plane's belly during the flight,4\r\n389,CHECKED BAGS,NO CHARGE,Checked bags will incur no charge if carry-on bags are checked due to lack of space,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-c58fb3b58b645bc2e93a9c44011df545 b/cache/community_reporting/create_community_report-chat-v2-c58fb3b58b645bc2e93a9c44011df545 deleted file mode 100644 index f18c23ac8747e67e823295741abd3303191392fb..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-c58fb3b58b645bc2e93a9c44011df545 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Carry-On Baggage and Airline Policies\",\n \"summary\": \"The community focuses on the regulations and policies surrounding carry-on baggage in air travel, particularly as they relate to various airlines and passenger classes. Key entities include airlines like Sun Dor and EL AL, as well as concepts like personal bags and booking management, which are interconnected through specific baggage policies.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of baggage policies in ensuring passenger compliance and safety during air travel.\",\n \"findings\": [\n {\n \"summary\": \"Importance of Carry-On Baggage Policies\",\n \"explanation\": \"Carry-on baggage policies are essential for regulating what passengers can bring into the cabin of an aircraft. These policies help maintain safety and order during flights, as they dictate the size, weight, and number of items allowed. Airlines like EL AL and Sun Dor have specific guidelines that passengers must adhere to, which can vary significantly between carriers. This variability can lead to confusion among travelers, making it crucial for airlines to communicate their policies clearly. [Data: Relationships (29, 368, 375)]\"\n },\n {\n \"summary\": \"Role of Passenger Classes in Baggage Allowances\",\n \"explanation\": \"Different passenger classes, such as Economy, Business, and Premium, have distinct carry-on baggage allowances. For instance, Economy Class passengers are entitled to specific allowances that differ from those in Business or Premium classes. This tiered approach to baggage policies can affect passenger satisfaction and operational efficiency, as airlines must manage varying expectations and compliance levels among different classes. [Data: Relationships (308, 314, 312)]\"\n },\n {\n \"summary\": \"Impact of Frequent Flyer Programs\",\n \"explanation\": \"Membership in frequent flyer programs, such as the Matmid Frequent Flyer Club, can significantly influence a passenger's carry-on baggage privileges. Members may enjoy enhanced allowances or exemptions from certain restrictions, which can incentivize loyalty to an airline. This dynamic creates a competitive landscape where airlines must balance the benefits offered to frequent flyers with the need to maintain standard policies for all passengers. [Data: Relationships (369)]\"\n },\n {\n \"summary\": \"Connection Between Carry-On and Checked Luggage\",\n \"explanation\": \"Carry-on baggage and checked luggage serve different purposes for air travelers. While carry-on items are intended for easy access during the flight, checked luggage is designed for larger items that cannot fit in the cabin. Understanding the distinctions between these two types of luggage is vital for passengers to ensure compliance with airline policies and to optimize their travel experience. [Data: Relationships (370)]\"\n },\n {\n \"summary\": \"Significance of Booking Management Systems\",\n \"explanation\": \"Booking management systems play a crucial role in informing passengers about their carry-on baggage allowances and policies. These systems enable travelers to manage their bookings effectively while ensuring they are aware of the specific regulations governing their carry-on items. This functionality is essential for a smooth travel experience, as it helps prevent misunderstandings and potential conflicts at the airport. [Data: Relationships (373)]\"\n },\n {\n \"summary\": \"Regulatory Framework for North America\",\n \"explanation\": \"Carry-on baggage policies are particularly relevant for flights to and from North America, where specific regulations dictate the size, weight, and number of carry-on items allowed. Airlines operating in this region must ensure that their policies align with these regulations to avoid compliance issues and enhance passenger safety. This regional focus highlights the importance of understanding local regulations in the global airline industry. [Data: Relationships (375)]\"\n },\n {\n \"summary\": \"Maximum Dimensions for Carry-On Items\",\n \"explanation\": \"Maximum dimensions for carry-on bags are critical for determining what items passengers can bring on board. These specifications help airlines manage cabin space effectively and ensure that all passengers can store their belongings safely. Clear communication of these dimensions is essential for compliance and to minimize delays during boarding. [Data: Relationships (376)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n267,CARRY-ON BAGGAGE,Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.,17\r\n273,BOOKING MANAGEMENT,Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.,1\r\n268,PERSONAL BAGS,\"Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.\",1\r\n269,SUN DOR,Sun Dor is an airline that operates flights with specific carry-on baggage policies.,1\r\n270,MATMID FREQUENT FLYER CLUB,\"The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.\",1\r\n271,TROLLEY,\"A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.\",1\r\n272,FLIGHT TICKET TERMS,Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.,1\r\n274,OVERHEAD COMPARTMENTS,\"Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.\",1\r\n276,NORTH AMERICA,\"North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.\",1\r\n290,MAXIMUM DIMENSIONS,Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,\"The entity \"\"WEIGHT\"\" is a crucial factor in determining the eligibility of \"\"CARRY-ON BAGGAGE.\"\" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.\",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,\"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.\",19\r\n373,CARRY-ON BAGGAGE,BOOKING MANAGEMENT,\"Booking management provides passengers with the ability to check their carry-on baggage allowances and policies, as well as manage their bookings. This functionality ensures that travelers are informed about the specific regulations regarding their carry-on items, facilitating a smoother travel experience.\",18\r\n367,CARRY-ON BAGGAGE,PERSONAL BAGS,\"CARRY-ON BAGGAGE and PERSONAL BAGS are closely related concepts in air travel. Personal bags are classified as a type of carry-on baggage, specifically designed to be stored under the seat in front of the passenger. This allows for easy access during the flight while adhering to airline regulations regarding carry-on items.\",18\r\n368,CARRY-ON BAGGAGE,SUN DOR,Sun Dor has specific policies regarding carry-on baggage for its flights.,18\r\n369,CARRY-ON BAGGAGE,MATMID FREQUENT FLYER CLUB,\"The Matmid Frequent Flyer Club status has a significant impact on the eligibility for carry-on baggage for passengers. Membership in the Matmid Frequent Flyer Club influences the rules and allowances regarding carry-on baggage, suggesting that those who are members may have different or enhanced privileges compared to non-members.\",18\r\n371,CARRY-ON BAGGAGE,TROLLEY,A trolley is a specific type of carry-on baggage that passengers can bring into the cabin and can be stored in overhead compartments.,18\r\n372,CARRY-ON BAGGAGE,FLIGHT TICKET TERMS,The flight ticket terms outline the policies and rules regarding carry-on baggage allowances applicable to passengers. These terms provide essential information that helps travelers understand the specific regulations governing the amount and type of carry-on baggage they are permitted to bring on board.,18\r\n374,CARRY-ON BAGGAGE,OVERHEAD COMPARTMENTS,Overhead compartments are designated storage areas for carry-on baggage during the flight.,18\r\n375,CARRY-ON BAGGAGE,NORTH AMERICA,\"CARRY-ON BAGGAGE policies are specifically applicable to flights from and to NORTH AMERICA. These policies outline the regulations and restrictions regarding the size, weight, and number of carry-on items that passengers are allowed to bring on board.\",18\r\n376,CARRY-ON BAGGAGE,MAXIMUM DIMENSIONS,Maximum dimensions are critical for determining what carry-on baggage is allowed,18\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-c7715d068021c726d65c2c55b81de24c b/cache/community_reporting/create_community_report-chat-v2-c7715d068021c726d65c2c55b81de24c deleted file mode 100644 index d8e4cfd73e4bd80a1d5143b60bf11cb78435fec2..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-c7715d068021c726d65c2c55b81de24c +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Ski Equipment and Transport Policies\",\n \"summary\": \"The community focuses on the relationship between ski equipment, transport policies, and fare classes. Key entities include ski and snowboarding equipment, complimentary transport policies, and fare classes that affect the transport of these items.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential implications for travelers and airlines regarding equipment transport policies.\",\n \"findings\": [\n {\n \"summary\": \"Ski Equipment's Transport Conditions\",\n \"explanation\": \"Ski equipment is subject to specific transport conditions, which can affect travelers' experiences. The relationship between ski equipment and checked baggage indicates that while it can be included in checked baggage, there are conditions that must be met. This can lead to confusion among travelers who may not be aware of these requirements, potentially resulting in additional fees or denied boarding if conditions are not met. [Data: Entities (179), Relationships (91)]\"\n },\n {\n \"summary\": \"Complimentary Transport Policy\",\n \"explanation\": \"The complimentary transport policy allows for certain sports equipment, including ski equipment, to be transported without additional fees under specified conditions. This policy is crucial for travelers who wish to avoid extra charges, making it an important aspect of the community. However, the effectiveness of this policy relies on clear communication from airlines to ensure that travelers understand the conditions under which complimentary transport applies. [Data: Entities (177), Relationships (325)]\"\n },\n {\n \"summary\": \"Impact of Lite Fare Ticket on Equipment Transport\",\n \"explanation\": \"The Lite Fare Ticket class does not allow for additional baggage such as ski and snowboard equipment without extra charges. This limitation can significantly impact travelers who are skiing or snowboarding, as they may need to pay additional fees or choose a different fare class. Understanding this relationship is essential for travelers to make informed decisions about their travel plans and budget accordingly. [Data: Entities (188), Relationships (326)]\"\n },\n {\n \"summary\": \"Snowboarding Equipment and Transport Policies\",\n \"explanation\": \"Similar to ski equipment, snowboarding equipment may also qualify for complimentary transport under specific conditions. This relationship highlights the importance of understanding transport policies for both skiing and snowboarding enthusiasts. Travelers should be aware of the conditions that apply to both types of equipment to avoid unexpected fees and ensure a smooth travel experience. [Data: Entities (176), Relationships (324)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n179,SKI EQUIPMENT,\"Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.\",3\r\n177,COMPLIMENTARY TRANSPORT,Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.,2\r\n188,LITE FARE TICKET,A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.,1\r\n176,SNOWBOARDING EQUIPMENT,\"Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n91,CHECKED BAGGAGE,SKI EQUIPMENT,Ski equipment can be included in checked baggage under specific conditions,28\r\n325,COMPLIMENTARY TRANSPORT,SKI EQUIPMENT,Ski equipment may qualify for complimentary transport under specific conditions set by the airline.,5\r\n326,SKI EQUIPMENT,LITE FARE TICKET,Ski equipment transport does not apply on LITE fare tickets,4\r\n324,SNOWBOARDING EQUIPMENT,COMPLIMENTARY TRANSPORT,Snowboarding equipment may also qualify for complimentary transport under specific conditions set by the airline.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-c83ea35b42afedc17c23c3690c0feda4 b/cache/community_reporting/create_community_report-chat-v2-c83ea35b42afedc17c23c3690c0feda4 deleted file mode 100644 index d12711b309f9d5b6499e7ef36b2c768377409458..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-c83ea35b42afedc17c23c3690c0feda4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Cargo Division and Animal Transport\",\n \"summary\": \"The community centers around EL AL's Cargo Division, which specializes in the transportation of animals, particularly pets. The division is responsible for ensuring compliance with transport regulations, including obtaining necessary authorizations and adhering to specific guidelines for animal transport.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of animal transport regulations and the potential consequences of non-compliance.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's Cargo Division as a key player\",\n \"explanation\": \"The Cargo Division of EL AL is a crucial entity in this community, tasked with managing the transport of various types of cargo, including animals. This division ensures that all necessary documentation is provided for transporting animals, particularly pets, which requires adherence to strict regulations. The division's expertise in handling special requests for oversized or unaccompanied animals highlights its capability to manage complex transport needs effectively. [Data: Entities (12); Relationships (10)]\"\n },\n {\n \"summary\": \"Importance of transport authorization\",\n \"explanation\": \"Transport authorization from destination country authorities is a critical requirement for transporting pets. The Cargo Division mandates this authorization to ensure compliance with international transport regulations, which is essential for the safe and legal movement of animals across borders. Failure to obtain the necessary authorization could result in significant legal repercussions and impact the reputation of EL AL's Cargo Division. [Data: Entities (44); Relationships (116)]\"\n },\n {\n \"summary\": \"Compliance with transport cage measurements\",\n \"explanation\": \"The Cargo Division requires specific measurements of transport cages to ensure the safety and compliance of animals during transport. This requirement is vital for preventing injuries and ensuring that animals are housed in appropriate conditions throughout their journey. The emphasis on cage measurements reflects the division's commitment to animal welfare and regulatory compliance, which is crucial for maintaining trust with customers. [Data: Entities (46); Relationships (118)]\"\n },\n {\n \"summary\": \"Specialization in transporting animals\",\n \"explanation\": \"The Cargo Division specializes in transporting animals, including pets, which involves a detailed understanding of the unique requirements associated with animal transport. This specialization allows the division to provide tailored services that meet the needs of pet owners and ensure the safe transit of animals. The division's focus on animal transport underscores its role as a leader in this niche market, enhancing its reputation among customers seeking reliable transport solutions. [Data: Entities (51); Relationships (119)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n12,CARGO DIVISION,\"The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.\",8\r\n44,TRANSPORT AUTHORIZATION,Transport authorization from the destination country authorities is required for transporting pets.,1\r\n46,MEASUREMENTS OF TRANSPORT CAGE,The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.,1\r\n51,TRANSPORTING ANIMALS,\"The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n10,EL AL,CARGO DIVISION,\"EL AL's Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.\",57\r\n116,CARGO DIVISION,TRANSPORT AUTHORIZATION,The Cargo Division requires transport authorization from destination authorities for pet transport,9\r\n118,CARGO DIVISION,MEASUREMENTS OF TRANSPORT CAGE,The Cargo Division requires the measurements of the transport cage for compliance,9\r\n119,CARGO DIVISION,TRANSPORTING ANIMALS,\"The Cargo Division specializes in transporting animals, including pets\",9\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-c8c16b297b28ab544874ec28b4743a17 b/cache/community_reporting/create_community_report-chat-v2-c8c16b297b28ab544874ec28b4743a17 deleted file mode 100644 index 7561d5bb5cb41ebd591d352793dfd939c7beb66b..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-c8c16b297b28ab544874ec28b4743a17 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Pet Transportation Regulations in Israel\",\n \"summary\": \"The community focuses on the regulations and processes involved in transporting pets from Israel, including the roles of various entities such as airlines, government ministries, and veterinary services. Key relationships highlight the compliance requirements and specific conditions for transporting animals, particularly in relation to different destinations and methods of transport.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the complex regulations and potential health risks associated with transporting animals, especially from a high-risk country like Israel.\",\n \"findings\": [\n {\n \"summary\": \"Regulatory oversight by the Ministry of Agriculture\",\n \"explanation\": \"The Ministry of Agriculture in Israel plays a crucial role in overseeing the transportation of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. This includes ensuring compliance with health standards and issuing necessary permits. The Ministry's involvement is essential for maintaining the safety and welfare of animals during transport, as it sets the guidelines that airlines and other transport services must follow. [Data: Entities (15), Relationships (0, 3, 1)]\"\n },\n {\n \"summary\": \"EL AL's specific policies for pet transport\",\n \"explanation\": \"EL AL Airlines has established specific policies for transporting pets, including weight limits and conditions for cabin transport. These policies are designed to ensure the safety and comfort of both the animals and passengers. The airline's relationship with the Ministry of Agriculture ensures that its practices align with national regulations, which is critical for compliance and operational integrity. [Data: Entities (4), Relationships (7, 18, 12)]\"\n },\n {\n \"summary\": \"High-risk designation for Israel\",\n \"explanation\": \"Israel is classified as a high-risk country for transporting certain animals, particularly dogs, which affects the regulations that must be followed. This classification necessitates additional scrutiny and compliance measures to prevent the spread of diseases. The Centers for Disease Control and Prevention (CDC) has specific guidelines that must be adhered to when transporting animals from Israel, impacting both the process and the documentation required. [Data: Entities (48, 15), Relationships (124, 126)]\"\n },\n {\n \"summary\": \"Importance of health documentation\",\n \"explanation\": \"Transporting pets internationally requires various health documents, including an international certificate of good health and laboratory results for rabies antibodies. These documents are essential for ensuring that animals are healthy and meet the entry requirements of destination countries. The Veterinary Services Department is responsible for issuing these certificates, highlighting the importance of veterinary oversight in the transport process. [Data: Entities (29, 80), Relationships (77, 151, 138)]\"\n },\n {\n \"summary\": \"Diverse transport methods for pets\",\n \"explanation\": \"Pets can be transported using various methods, including as checked baggage, in the passenger cabin, or as registered cargo, depending on their size and weight. Each method has specific requirements and conditions that must be met, which are outlined by the airline and regulatory bodies. Understanding these options is crucial for pet owners to ensure compliance and the safety of their animals during travel. [Data: Entities (4, 6, 31), Relationships (69, 70, 82)]\"\n },\n {\n \"summary\": \"Role of veterinarians in the transport process\",\n \"explanation\": \"Veterinarians are integral to the pet transportation process, as they perform necessary health tests and issue required authorizations. Their involvement ensures that all health standards are met before animals are transported, which is vital for preventing the spread of diseases and ensuring the welfare of the animals. This relationship underscores the importance of veterinary services in the broader context of animal transport regulations. [Data: Entities (28), Relationships (78)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n4,PET,\"Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.\",19\r\n31,BUSINESS CABIN,\"The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions.\",3\r\n6,REGISTERED CARGO,\"Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.\",3\r\n36,PERMIT,A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.,2\r\n15,ISRAEL,\"Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad.\",9\r\n30,BILL OF LADING,A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.,3\r\n29,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.,2\r\n32,AIRCRAFT HOLD,The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.,1\r\n90,ALLOWANCE,The permitted baggage allowance does not include the weight of pets being transported.,1\r\n95,CARRYING CASE,\"The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.\",1\r\n27,HONG KONG,Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n25,JOHANNESBURG,Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n26,LONDON,London is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n33,PASSENGER AIRCRAFT CABIN,\"The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.\",1\r\n28,VETERINARIAN,Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.,1\r\n88,TRANSPORT CAGE GUIDELINES,Guidelines that outline the requirements for transport cages used for pets during flights.,1\r\n13,EL AL CARGO STORE,\"The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.\",4\r\n8,AUTHORIZATION,\"Authorization from the Ministry of Agriculture’s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.\",3\r\n37,VETERINARY SERVICES DEPARTMENT,\"The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.\",7\r\n45,EXPORT LICENSE,\"An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.\",2\r\n48,HIGH-RISK COUNTRY,\"A \"\"HIGH-RISK COUNTRY\"\" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.\",1\r\n53,MINISTRY OF HEALTH,The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.,1\r\n80,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are necessary for transporting pets.,1\r\n9,ANIMAL TESTS,The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.,2\r\n14,CARGO TERMINAL,\"The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.\",1\r\n39,APPROVAL,Approval from the EL AL service center is necessary for transporting pets in the Business cabin.,1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n44,ISRAEL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,It is important to know what you can take with you aboard the aircraft when departing from Israel.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n7,EL AL,PET,\"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport\",68\r\n0,MINISTRY OF AGRICULTURE,EL AL,\"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.\",54\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n69,PET,CHECKED BAGGAGE,\"Pets can be transported as checked baggage under certain conditions, such as size and weight\",44\r\n110,REGISTERED CARGO,ANIMAL,Animals exceeding weight limits must be transported as registered cargo,32\r\n148,PERMIT,ANIMAL,\"A permit is necessary for the transport of animals, ensuring compliance with regulations.\",31\r\n72,PET,ISRAEL,\"Pets are transported from Israel to other countries, requiring specific permits and conditions.\",28\r\n59,SERVICE DOG,ISRAEL,\"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.\",25\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,\"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.\",23\r\n76,PET,BILL OF LADING,\"Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.\",22\r\n79,PET,BUSINESS CABIN,Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.,22\r\n70,PET,REGISTERED CARGO,\"Pets may also be transported as registered cargo, especially if they are large or unaccompanied\",22\r\n86,PET,FLIGHT TICKET,\"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.\",22\r\n77,PET,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting pets abroad.,21\r\n71,PET,9KG,\"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported\",21\r\n80,PET,AIRCRAFT HOLD,Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.,20\r\n83,PET,ALLOWANCE,\"The weight of pets is not included in the permitted baggage allowance, affecting transport costs.\",20\r\n85,PET,CARRYING CASE,\"The carrying case is required for transporting pets, and its weight is included in the transport cost.\",20\r\n75,PET,HONG KONG,Transporting pets in the aircraft cabin is not allowed to Hong Kong.,20\r\n73,PET,JOHANNESBURG,Transporting pets in the aircraft cabin is not allowed to Johannesburg.,20\r\n74,PET,LONDON,Transporting pets in the aircraft cabin is not allowed to London.,20\r\n81,PET,PASSENGER AIRCRAFT CABIN,Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.,20\r\n78,PET,VETERINARIAN,Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.,20\r\n84,PET,TRANSPORT CAGE GUIDELINES,Transport cage guidelines provide the necessary requirements for transporting pets safely.,20\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n3,MINISTRY OF AGRICULTURE,ISRAEL,The Ministry of Agriculture is the regulatory authority in Israel for pet transportation,14\r\n123,EL AL CARGO STORE,ISRAEL,The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.,13\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n113,AUTHORIZATION,VETERINARY SERVICES DEPARTMENT,Authorization from the Veterinary Services Department is required for transporting pets as cargo,10\r\n139,BILL OF LADING,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department determines if a bill of lading is needed for transporting animals,10\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n126,ISRAEL,HIGH-RISK COUNTRY,\"Israel is classified as a high-risk country, affecting the regulations for transporting service dogs.\",10\r\n125,ISRAEL,MINISTRY OF HEALTH,\"The Ministry of Health in Israel is responsible for regulating the entry of animals into the country. This includes overseeing the necessary protocols and guidelines to ensure that animals are imported in a safe and controlled manner, thereby safeguarding public health and animal welfare.\",10\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n150,VETERINARY SERVICES DEPARTMENT,EXPORT LICENSE,An export license is required by the Veterinary Services Department for transporting animals,9\r\n138,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues the international certificate of good health required for animal transport.,9\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n149,PERMIT,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues permits required for transporting animals abroad.,9\r\n1,MINISTRY OF AGRICULTURE,AUTHORIZATION,\"The Ministry of Agriculture requires authorization for the transportation of animals. This authorization is a necessary document for compliance with regulations governing animal transport. Without this authorization, individuals or entities are not permitted to transport animals legally.\",8\r\n121,EL AL CARGO STORE,EL AL CARGO STORE,The EL AL Cargo Store is a part of EL AL Airlines' cargo services,8\r\n152,VETERINARY SERVICES DEPARTMENT,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals,8\r\n2,MINISTRY OF AGRICULTURE,ANIMAL TESTS,The Ministry of Agriculture's authorization process may involve performing several animal tests,7\r\n112,AUTHORIZATION,ANIMAL TESTS,Animal tests are part of the authorization process for transporting pets,5\r\n122,EL AL CARGO STORE,CARGO TERMINAL,The EL AL Cargo Store operates within the cargo terminal for handling cargo services,5\r\n140,BUSINESS CABIN,APPROVAL,\"Approval is required for transporting pets in the Business cabin, indicating a policy that must be followed.\",4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-d41862af1eaf2861ff72a6f6ec752197 b/cache/community_reporting/create_community_report-chat-v2-d41862af1eaf2861ff72a6f6ec752197 deleted file mode 100644 index dcaadcf3524a647f17d17ed60a91936beea50f8e..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-d41862af1eaf2861ff72a6f6ec752197 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Regulations on Electronic Devices and Lithium Batteries\",\n \"summary\": \"This community focuses on the regulations surrounding electronic devices and lithium batteries during air travel. The entities are interconnected through specific guidelines that dictate how these items should be handled, stored, and transported to ensure safety and compliance with aviation regulations.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential safety risks associated with improper handling of electronic devices and lithium batteries on aircraft.\",\n \"findings\": [\n {\n \"summary\": \"Importance of Carry-On Baggage for Electronic Devices\",\n \"explanation\": \"Electronic devices must be kept in carry-on baggage for easy access during flights, highlighting their significance in passenger travel. This requirement ensures that passengers can use their devices during the flight while adhering to safety regulations. The relationship between electronic devices and carry-on baggage is crucial, as it dictates how these items are managed in the cabin. Improper storage could lead to safety hazards, particularly with devices containing lithium batteries, which have specific handling requirements [Data: Entities (284), Relationships (292, 385)].\"\n },\n {\n \"summary\": \"Regulations on Lithium-Ion Batteries\",\n \"explanation\": \"Lithium-ion batteries are subject to strict regulations regarding their transport on aircraft, particularly concerning watt-hour limits. Passengers are allowed to carry lithium-ion batteries in their carry-on baggage, but those exceeding 100 watt-hours face restrictions. This regulation is essential for preventing potential hazards associated with battery malfunctions during flights. The classification of lithium-ion batteries and their relationship with carry-on baggage underscores the importance of compliance with these regulations [Data: Entities (388), Relationships (430, 432, 433)].\"\n },\n {\n \"summary\": \"Handling of Spare Batteries\",\n \"explanation\": \"Spare batteries, particularly lithium-ion types, are allowed on aircraft under specific conditions. Passengers must ensure that these batteries are insulated and protected from short circuits to prevent safety incidents. The relationship between spare batteries and their handling requirements is critical, as improper management could lead to dangerous situations during air travel. Regulations dictate that spare lithium batteries cannot be placed in checked baggage, emphasizing the need for awareness among travelers [Data: Entities (386, 407), Relationships (426, 428, 421)].\"\n },\n {\n \"summary\": \"Prohibitions on Certain Items\",\n \"explanation\": \"Certain items, including flammable materials and spare lithium batteries, are prohibited in checked baggage due to safety concerns. This regulation is in place to prevent potential hazards that could arise from the combination of these items with electronic devices. The relationship between prohibited items and the handling of electronic devices highlights the importance of adhering to safety regulations to ensure a secure travel environment [Data: Entities (371, 405), Relationships (421, 386)].\"\n },\n {\n \"summary\": \"Regulatory Framework Under 49 CFR\",\n \"explanation\": \"The transport of lithium batteries is governed by the 49 CFR, which outlines the requirements for hazardous materials in aviation. This regulatory framework is crucial for ensuring the safe transport of electronic devices and batteries, as it provides guidelines that must be followed by passengers and airlines alike. The relationship between lithium batteries and the 49 CFR emphasizes the importance of compliance with federal regulations to mitigate risks associated with air travel [Data: Entities (402), Relationships (442)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n284,ELECTRONIC DEVICES,\"Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.\",4\r\n388,LITHIUM-ION BATTERIES,\"Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.\",7\r\n396,CARRY-ON,Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.,4\r\n386,SPARE BATTERIES,\"Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.\",4\r\n407,SPARE LITHIUM BATTERIES,\"Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.\",3\r\n406,LITHIUM BATTERIES,,2\r\n398,100 WATT-HOURS,\"100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.\",1\r\n399,160 WATT-HOURS,160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.,1\r\n387,DRY CELL ALKALINE BATTERIES,\"Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.\",1\r\n394,NON-SPILLABLE WET BATTERIES,\"Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.\",3\r\n393,LITHIUM METAL BATTERIES,\"Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.\",2\r\n371,PROHIBITED ITEM,Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.,2\r\n405,FLAMMABLE MATERIAL,\"Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.\",1\r\n416,INSULATED,Batteries must be insulated to prevent short circuits when taken aboard the aircraft.,1\r\n404,NON-CONDUCTIVE CAPS,Non-conductive caps are required to protect the terminals of spare batteries during transport.,1\r\n389,PORTABLE CHARGERS,\"Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.\",2\r\n401,12 VOLTS,12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.,1\r\n403,STRONG OUTER PACKAGING,Batteries must be in strong outer packaging to prevent damage and leakage during transport.,1\r\n400,2 GRAMS,2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.,1\r\n402,49 CFR,\"49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n430,LITHIUM-ION BATTERIES,CARRY-ON,Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits,11\r\n426,SPARE BATTERIES,LITHIUM-ION BATTERIES,Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions,11\r\n434,LITHIUM-ION BATTERIES,SPARE LITHIUM BATTERIES,Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.,10\r\n431,LITHIUM-ION BATTERIES,LITHIUM BATTERIES,\"Lithium batteries include both lithium-ion and lithium metal types, indicating a classification relationship\",9\r\n432,LITHIUM-ION BATTERIES,100 WATT-HOURS,Lithium-ion batteries with a capacity of 100 watt-hours are allowed in carry-on luggage,8\r\n433,LITHIUM-ION BATTERIES,160 WATT-HOURS,Lithium-ion batteries with a capacity of 160 watt-hours are subject to specific regulations for air travel,8\r\n385,ELECTRONIC DEVICES,CARRY-ON,\"Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement\",8\r\n429,DRY CELL ALKALINE BATTERIES,LITHIUM-ION BATTERIES,Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage,8\r\n438,NON-SPILLABLE WET BATTERIES,CARRY-ON,Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits,7\r\n387,ELECTRONIC DEVICES,SPARE LITHIUM BATTERIES,\"Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.\",7\r\n436,LITHIUM METAL BATTERIES,CARRY-ON,Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions,6\r\n421,PROHIBITED ITEM,SPARE BATTERIES,\"Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction\",6\r\n386,ELECTRONIC DEVICES,FLAMMABLE MATERIAL,\"Flammable materials are prohibited from being stored with electronic devices containing lithium batteries, indicating a safety restriction\",5\r\n428,SPARE BATTERIES,INSULATED,Spare batteries must be insulated to prevent short circuits when taken aboard the aircraft.,5\r\n427,SPARE BATTERIES,NON-CONDUCTIVE CAPS,Spare batteries must have non-conductive caps to protect their terminals during transport,5\r\n435,PORTABLE CHARGERS,SPARE LITHIUM BATTERIES,Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.,5\r\n439,NON-SPILLABLE WET BATTERIES,12 VOLTS,Non-spillable wet batteries must not exceed 12 volts for air travel,4\r\n440,NON-SPILLABLE WET BATTERIES,STRONG OUTER PACKAGING,Non-spillable wet batteries must be packaged in strong outer packaging to prevent leakage,4\r\n422,PROHIBITED ITEM,PORTABLE CHARGERS,Portable chargers are classified as lithium batteries and are prohibited in checked baggage,4\r\n437,LITHIUM METAL BATTERIES,2 GRAMS,Consumer-grade lithium metal batteries must contain no more than 2 grams of lithium,3\r\n442,49 CFR,LITHIUM BATTERIES,\"49 CFR outlines the regulations for the transport of lithium batteries, indicating a regulatory relationship\",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-d4671f58114c894b4801fbd6fd54e3bf b/cache/community_reporting/create_community_report-chat-v2-d4671f58114c894b4801fbd6fd54e3bf deleted file mode 100644 index a96305b9f7a0738765b2cfa29b9eb4723962d49e..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-d4671f58114c894b4801fbd6fd54e3bf +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Weight Regulations in Air Travel\",\n \"summary\": \"This community focuses on the regulations surrounding weight limits for baggage and sporting equipment in air travel. The entities are interconnected through their implications on transportation logistics, particularly concerning the maximum allowable weights for different travel classes.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for additional fees and logistical challenges arising from weight regulations in air travel.\",\n \"findings\": [\n {\n \"summary\": \"Weight as a critical factor in transportation logistics\",\n \"explanation\": \"Weight is a significant consideration in the logistics of transporting both animals and personal belongings. It influences whether pets can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation. Additionally, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. This multifaceted role of weight in transportation logistics underscores its importance in the community. [Data: Entities (35); Relationships (143, 144, 145)]\"\n },\n {\n \"summary\": \"30 KG limit for Economy Class\",\n \"explanation\": \"The entity '30 KG' refers to the maximum weight limit for sports equipment allowed in Economy Class. This limit is crucial for passengers as it directly impacts their ability to transport sporting equipment without incurring additional fees. The relationship between this weight limit and the Economy Class indicates a structured approach to managing baggage allowances, which is essential for both airlines and travelers. [Data: Entities (172); Relationships (306, 144)]\"\n },\n {\n \"summary\": \"32 KG limit for Business Class\",\n \"explanation\": \"The entity '32 KG' refers to the maximum weight limit applicable in Business Class for checked baggage and sports equipment. This higher limit compared to Economy Class reflects the different service levels and expectations associated with Business Class travel. Understanding this distinction is vital for passengers who may need to transport heavier items, as it can influence their choice of travel class. [Data: Entities (171); Relationships (313, 145)]\"\n },\n {\n \"summary\": \"Impact of weight on carry-on baggage eligibility\",\n \"explanation\": \"Weight is a crucial factor in determining the eligibility of carry-on baggage. The weight limits set by airlines play an essential role in assessing whether carry-on items meet the requirements for boarding. This relationship highlights the importance of weight regulations in ensuring compliance with airline policies, which can affect the travel experience of passengers. [Data: Relationships (146)]\"\n },\n {\n \"summary\": \"Weight restrictions on sporting equipment\",\n \"explanation\": \"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. The established weight limits for sporting equipment in different travel classes serve as key restrictions that determine whether items can be transported without incurring additional costs. This aspect is particularly relevant for athletes and travelers who engage in sports activities. [Data: Relationships (143)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n35,WEIGHT,\"Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.\",6\r\n172,30 KG,\"The entity \"\"30 KG\"\" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.\",2\r\n171,32 KG,\"The entity \"\"32 KG\"\" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.\",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n146,WEIGHT,CARRY-ON BAGGAGE,\"The entity \"\"WEIGHT\"\" is a crucial factor in determining the eligibility of \"\"CARRY-ON BAGGAGE.\"\" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.\",23\r\n143,WEIGHT,SPORTING EQUIPMENT,\"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.\",20\r\n306,ECONOMY CLASS,30 KG,\"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.\",9\r\n144,WEIGHT,30 KG,30 kg is the maximum weight limit for sports equipment in Economy Class,8\r\n145,WEIGHT,32 KG,32 kg is the maximum weight limit for sports equipment in Business Class,8\r\n313,BUSINESS CLASS,32 KG,\"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.\",7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-d48baae7f9cbaabe221a6d63cfbf74c3 b/cache/community_reporting/create_community_report-chat-v2-d48baae7f9cbaabe221a6d63cfbf74c3 deleted file mode 100644 index 81b4453872240a686a5a7039401655cbe72de403..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-d48baae7f9cbaabe221a6d63cfbf74c3 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL and Fragile Item Transport\",\n \"summary\": \"The community focuses on the transport of fragile items, highlighting the relationship between EL AL, fragile items, and special travel insurance. EL AL does not assume responsibility for fragile items, which necessitates the recommendation of special travel insurance for passengers.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential financial implications and risks associated with transporting fragile items without adequate insurance.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's liability regarding fragile items\",\n \"explanation\": \"EL AL explicitly states that it does not bear responsibility for fragile items transported by the airline. This lack of liability places the onus on passengers to ensure that their fragile items are adequately protected during transit. The airline's policy could lead to significant financial losses for passengers if their fragile items are damaged, emphasizing the importance of understanding this liability when shipping delicate goods. [Data: Entities (196); Relationships (25)]\"\n },\n {\n \"summary\": \"Importance of special travel insurance\",\n \"explanation\": \"Special travel insurance is recommended for passengers transporting fragile or valuable items. This insurance serves as a safeguard against potential damages that could occur during transport, providing financial protection for the insured items. The relationship between fragile items and special travel insurance highlights the necessity for passengers to consider additional coverage when traveling with delicate goods, as the standard airline policies may not offer sufficient protection. [Data: Entities (198); Relationships (338)]\"\n },\n {\n \"summary\": \"Connection between fragile and valuable items\",\n \"explanation\": \"There is a notable connection between fragile items and valuable items in the context of special travel insurance. Both categories of items are susceptible to damage during transport, and the recommendation for special insurance applies to both. This relationship underscores the broader implications for passengers who may be transporting items that are not only fragile but also hold significant monetary value, necessitating careful consideration of their insurance options. [Data: Relationships (338, 339)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n196,FRAGILE ITEM,\"The term \"\"FRAGILE ITEM\"\" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.\",2\r\n198,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.,2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n25,EL AL,FRAGILE ITEM,EL AL does not bear responsibility for fragile items transported by the airline,51\r\n338,FRAGILE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile items,4\r\n339,VALUABLE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting valuable items,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-d725fc64c660d79fe1d758bb8d8918cb b/cache/community_reporting/create_community_report-chat-v2-d725fc64c660d79fe1d758bb8d8918cb deleted file mode 100644 index 691f7629e1c2a8d4753e3c9735f7ff3d86cb308a..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-d725fc64c660d79fe1d758bb8d8918cb +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Air Travel Baggage Policies Community\",\n \"summary\": \"This community encompasses various entities related to air travel baggage policies, including carry-on baggage, checked luggage, and associated airline regulations. The relationships among these entities highlight the complexities of baggage management for passengers, particularly in relation to different classes of service and specific airline policies.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for confusion and disputes regarding baggage policies among travelers.\",\n \"findings\": [\n {\n \"summary\": \"Carry-on baggage as a central concept\",\n \"explanation\": \"Carry-on baggage is a crucial aspect of air travel, representing the personal items passengers can bring into the cabin. This concept is central to the community, as it connects various entities, including airlines, baggage types, and passenger classes. The regulations surrounding carry-on baggage can significantly affect the travel experience, as they dictate what items can be brought on board and the associated limitations. For instance, different airlines like EL AL and Sun Dor have specific policies regarding carry-on baggage, which can lead to confusion among passengers if not clearly communicated [Data: Entities (267, 269); Relationships (29, 368)].\"\n },\n {\n \"summary\": \"Diverse baggage policies across classes\",\n \"explanation\": \"The community illustrates how baggage policies vary across different classes of service, such as Economy, Business, and Premium Class. Each class has specific allowances for carry-on baggage, which can lead to disparities in passenger experiences. For example, Economy Class passengers have defined carry-on allowances that differ from those in Business or Premium Class, potentially causing dissatisfaction among travelers who may not be aware of these distinctions. This complexity necessitates clear communication from airlines to ensure passengers understand their rights and limitations regarding baggage [Data: Relationships (308, 314, 312)].\"\n },\n {\n \"summary\": \"Importance of weight and dimensions\",\n \"explanation\": \"Weight and dimensions are critical factors in determining the eligibility of carry-on baggage. Airlines enforce strict regulations regarding the maximum weight and size of carry-on items to ensure safety and compliance with cabin space limitations. Passengers must be aware of these restrictions to avoid issues at boarding, which can lead to delays or additional fees. The relationship between carry-on baggage and its maximum weight and dimensions highlights the need for travelers to be informed about these policies before their flights [Data: Relationships (146, 316, 377, 376)].\"\n },\n {\n \"summary\": \"Role of booking management in baggage policies\",\n \"explanation\": \"Booking management systems play a vital role in informing passengers about their carry-on baggage allowances and policies. These systems allow travelers to manage their bookings and check specific baggage regulations, which is essential for a smooth travel experience. By providing clear information on baggage policies during the booking process, airlines can help reduce confusion and enhance customer satisfaction. This relationship emphasizes the importance of integrating baggage policy information into booking management tools [Data: Relationships (373, 272)].\"\n },\n {\n \"summary\": \"Checked luggage as an alternative\",\n \"explanation\": \"Checked luggage serves as an alternative to carry-on baggage, catering to passengers who need to transport larger items. Understanding the differences between carry-on and checked luggage is essential for travelers, as each type has its own set of regulations and limitations. The relationship between carry-on baggage and checked luggage highlights the need for passengers to make informed decisions about their luggage options based on their travel needs and the specific policies of the airline they are flying with [Data: Relationships (370, 378)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n267,CARRY-ON BAGGAGE,Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.,17\r\n277,CHECKED LUGGAGE,,2\r\n273,BOOKING MANAGEMENT,Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.,1\r\n268,PERSONAL BAGS,\"Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.\",1\r\n269,SUN DOR,Sun Dor is an airline that operates flights with specific carry-on baggage policies.,1\r\n270,MATMID FREQUENT FLYER CLUB,\"The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.\",1\r\n271,TROLLEY,\"A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.\",1\r\n272,FLIGHT TICKET TERMS,Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.,1\r\n274,OVERHEAD COMPARTMENTS,\"Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.\",1\r\n276,NORTH AMERICA,\"North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.\",1\r\n290,MAXIMUM DIMENSIONS,Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.,1\r\n275,BAGGAGE CONVEYOR BELT,The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,\"The entity \"\"WEIGHT\"\" is a crucial factor in determining the eligibility of \"\"CARRY-ON BAGGAGE.\"\" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.\",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n316,DIMENSIONS,CARRY-ON BAGGAGE,DIMENSIONS play a critical role in determining the eligibility of CARRY-ON BAGGAGE for boarding. They are a key factor that airlines consider when assessing whether a piece of baggage meets the requirements for carry-on status.,21\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,\"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.\",19\r\n373,CARRY-ON BAGGAGE,BOOKING MANAGEMENT,\"Booking management provides passengers with the ability to check their carry-on baggage allowances and policies, as well as manage their bookings. This functionality ensures that travelers are informed about the specific regulations regarding their carry-on items, facilitating a smoother travel experience.\",18\r\n367,CARRY-ON BAGGAGE,PERSONAL BAGS,\"CARRY-ON BAGGAGE and PERSONAL BAGS are closely related concepts in air travel. Personal bags are classified as a type of carry-on baggage, specifically designed to be stored under the seat in front of the passenger. This allows for easy access during the flight while adhering to airline regulations regarding carry-on items.\",18\r\n368,CARRY-ON BAGGAGE,SUN DOR,Sun Dor has specific policies regarding carry-on baggage for its flights.,18\r\n369,CARRY-ON BAGGAGE,MATMID FREQUENT FLYER CLUB,\"The Matmid Frequent Flyer Club status has a significant impact on the eligibility for carry-on baggage for passengers. Membership in the Matmid Frequent Flyer Club influences the rules and allowances regarding carry-on baggage, suggesting that those who are members may have different or enhanced privileges compared to non-members.\",18\r\n371,CARRY-ON BAGGAGE,TROLLEY,A trolley is a specific type of carry-on baggage that passengers can bring into the cabin and can be stored in overhead compartments.,18\r\n372,CARRY-ON BAGGAGE,FLIGHT TICKET TERMS,The flight ticket terms outline the policies and rules regarding carry-on baggage allowances applicable to passengers. These terms provide essential information that helps travelers understand the specific regulations governing the amount and type of carry-on baggage they are permitted to bring on board.,18\r\n374,CARRY-ON BAGGAGE,OVERHEAD COMPARTMENTS,Overhead compartments are designated storage areas for carry-on baggage during the flight.,18\r\n375,CARRY-ON BAGGAGE,NORTH AMERICA,\"CARRY-ON BAGGAGE policies are specifically applicable to flights from and to NORTH AMERICA. These policies outline the regulations and restrictions regarding the size, weight, and number of carry-on items that passengers are allowed to bring on board.\",18\r\n376,CARRY-ON BAGGAGE,MAXIMUM DIMENSIONS,Maximum dimensions are critical for determining what carry-on baggage is allowed,18\r\n378,BAGGAGE CONVEYOR BELT,CHECKED LUGGAGE,The baggage conveyor belt is where checked luggage is retrieved after a flight.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-d729860a28344f4c8b47668e59247835 b/cache/community_reporting/create_community_report-chat-v2-d729860a28344f4c8b47668e59247835 deleted file mode 100644 index 3fe26ed88d74db27fbdbb2188e3a1ac85f89947f..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-d729860a28344f4c8b47668e59247835 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Ticket Type and Baggage Allowance Community\",\n \"summary\": \"This community focuses on the relationship between ticket types and their associated baggage allowances. The entities involved are the ticket type, which determines the baggage rules, and the free baggage allowance, which specifies the amount of baggage that can be checked without extra fees.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for customer dissatisfaction related to baggage policies.\",\n \"findings\": [\n {\n \"summary\": \"Ticket Type as a determining factor\",\n \"explanation\": \"The ticket type is a crucial entity in this community, as it dictates the baggage allowance and rules applicable to each passenger's reservation. Understanding the ticket type is essential for passengers to know their rights and limitations regarding baggage. This relationship is significant because it can directly affect customer satisfaction and operational efficiency. If passengers are not aware of their ticket type's implications, it could lead to disputes at check-in or boarding, impacting the overall travel experience. [Data: Entities (355); Relationships (410)]\"\n },\n {\n \"summary\": \"Free Baggage Allowance specifics\",\n \"explanation\": \"The free baggage allowance is defined for each flight segment based on the ticket type. This allowance is critical for passengers as it specifies how much baggage can be checked without incurring additional fees. Clarity in this area is vital for customer satisfaction, as unexpected fees can lead to frustration and negative perceptions of the airline. The relationship between the free baggage allowance and ticket type highlights the importance of transparent communication regarding baggage policies to avoid misunderstandings. [Data: Entities (357); Relationships (420)]\"\n },\n {\n \"summary\": \"Interdependence of ticket type and baggage allowance\",\n \"explanation\": \"The relationship between ticket type and baggage allowance is interdependent, meaning that changes in one can significantly affect the other. For instance, if an airline decides to modify the baggage rules associated with a specific ticket type, it could lead to widespread implications for passengers who have already purchased tickets. This interdependence underscores the need for airlines to carefully consider customer feedback and market trends when making policy changes. [Data: Relationships (410, 420)]\"\n },\n {\n \"summary\": \"Potential for customer dissatisfaction\",\n \"explanation\": \"The complexity of baggage policies based on ticket types can lead to customer dissatisfaction if not communicated effectively. Passengers may feel frustrated if they are unaware of the baggage rules associated with their ticket type, leading to unexpected fees or complications during travel. Airlines must ensure that this information is readily available and clearly communicated to mitigate potential issues and enhance the customer experience. [Data: Relationships (410, 420)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n355,TICKET TYPE,The ticket type determines the baggage allowance and rules applicable to each passenger's reservation.,2\r\n357,FREE BAGGAGE ALLOWANCE,\"The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n410,BAGGAGE ALLOWANCE,TICKET TYPE,The baggage allowance is determined by the ticket type specified on the reservation,14\r\n420,TICKET TYPE,FREE BAGGAGE ALLOWANCE,The free baggage allowance is based on the ticket type and is specified for each flight segment,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-df43343c7e249af1b493f1a5bd053ecb b/cache/community_reporting/create_community_report-chat-v2-df43343c7e249af1b493f1a5bd053ecb deleted file mode 100644 index d03427ae57b3746a7fdb631daa5b47f4e3b3e6da..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-df43343c7e249af1b493f1a5bd053ecb +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Baggage Policies and Services of EL AL\",\n \"summary\": \"The community focuses on the baggage policies and services offered by EL AL, including various ticket types and their associated baggage allowances and excess baggage rates. The relationships among these entities highlight the complexity of baggage management in air travel.\",\n \"rating\": 6.5,\n \"rating_explanation\": \"The impact severity rating is moderate to high due to the potential for customer dissatisfaction and financial implications related to baggage policies.\",\n \"findings\": [\n {\n \"summary\": \"Baggage Allowance as a central concept\",\n \"explanation\": \"Baggage allowance is a key concept in air travel, determining how many bags a passenger can check in without incurring additional fees. This allowance is influenced by the ticket type purchased, which is crucial for passengers to understand their rights and responsibilities when traveling. The relationship between baggage allowance and ticket types is significant, as it directly affects customer experience and satisfaction. [Data: Entities (333), Relationships (44, 413, 410)]\"\n },\n {\n \"summary\": \"Diverse ticket options with varying baggage policies\",\n \"explanation\": \"EL AL offers various ticket types, including Lite Service, Classic Service, and Flex Service, each with different baggage allowances. Lite Service requires an additional fee for checked baggage, while Classic and Flex Services include one piece of checked baggage in the ticket price. This diversity allows passengers to choose options that best fit their travel needs but can also lead to confusion regarding baggage policies. [Data: Entities (330, 331, 332), Relationships (405, 406, 407)]\"\n },\n {\n \"summary\": \"Excess baggage rates and their implications\",\n \"explanation\": \"Excess baggage rates apply when passengers exceed their baggage allowance, creating a direct financial impact on travelers. These rates can vary and are often displayed in US dollars or local currency, which adds another layer of complexity for international travelers. Understanding these rates is essential for passengers to avoid unexpected fees at the airport. [Data: Entities (362), Relationships (412, 330, 332)]\"\n },\n {\n \"summary\": \"The role of flight segments in baggage policies\",\n \"explanation\": \"Baggage allowance is specified for each flight segment, which means that passengers must be aware of the rules for each leg of their journey. This can lead to complications if passengers are not informed about the specific baggage policies for connecting flights, potentially resulting in additional fees or denied boarding. [Data: Entities (352), Relationships (409)]\"\n },\n {\n \"summary\": \"Interconnectedness of baggage policies and ticket types\",\n \"explanation\": \"The relationships between baggage allowance, ticket types, and excess baggage rates illustrate a complex web of policies that can significantly affect passenger experience. For instance, passengers purchasing Lite Tickets must be aware that they do not include any baggage allowance, which can lead to confusion and dissatisfaction if not clearly communicated. [Data: Relationships (411, 210)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n333,BAGGAGE ALLOWANCE,\"Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.\",12\r\n362,EXCESS BAGGAGE RATES,\"Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.\",3\r\n330,LITE SERVICE,Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.,2\r\n331,CLASSIC SERVICE,Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.,2\r\n332,FLEX SERVICE,\"Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.\",2\r\n352,FLIGHT SEGMENT,\"A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.\",1\r\n360,LITE TICKETS,Lite tickets are a type of ticket that does not include any baggage allowance.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,\"The terms \"\"CHECKED BAGGAGE\"\" and \"\"BAGGAGE ALLOWANCE\"\" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.\",37\r\n413,BAGGAGE ALLOWANCE,BAGGAGE POLICY,Baggage allowance is determined by the baggage policy of the airline,17\r\n408,BAGGAGE ALLOWANCE,ADDITIONAL PIECES OF BAGGAGE,\"Additional pieces of baggage can be checked in for a fee, which varies depending on the service type\",15\r\n412,BAGGAGE ALLOWANCE,EXCESS BAGGAGE RATES,\"Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.\",15\r\n210,FLIGHT TICKET,BAGGAGE ALLOWANCE,The flight ticket includes information about the baggage allowance for the passenger,15\r\n410,BAGGAGE ALLOWANCE,TICKET TYPE,The baggage allowance is determined by the ticket type specified on the reservation,14\r\n405,LITE SERVICE,BAGGAGE ALLOWANCE,Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering,14\r\n406,CLASSIC SERVICE,BAGGAGE ALLOWANCE,Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n407,FLEX SERVICE,BAGGAGE ALLOWANCE,Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n409,BAGGAGE ALLOWANCE,FLIGHT SEGMENT,Baggage allowance is specified for each flight segment on the ticket,13\r\n411,BAGGAGE ALLOWANCE,LITE TICKETS,\"Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.\",13\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,\"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.\",7\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,\"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.\",5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-e0ca9361bb89eaf12c3fac6240a3785e b/cache/community_reporting/create_community_report-chat-v2-e0ca9361bb89eaf12c3fac6240a3785e deleted file mode 100644 index 80d5a8a1bea97338b3ad50e5f3bd94c38b4355ae..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-e0ca9361bb89eaf12c3fac6240a3785e +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"EL AL Business Cabin Pet Transport\",\n \"summary\": \"The community focuses on the EL AL Business Cabin, which allows for the transportation of pets under specific conditions. The relationships highlight the necessity of prior approval for transporting animals, particularly pets, emphasizing the regulatory framework governing this service.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the regulatory requirements and potential implications for pet owners traveling with EL AL.\",\n \"findings\": [\n {\n \"summary\": \"Business Cabin as a designated transport area\",\n \"explanation\": \"The Business Cabin is specifically designed for the transportation of animals, including pets, under certain conditions. This indicates a specialized service that caters to pet owners, enhancing the travel experience for those who wish to bring their pets along. However, the requirement for prior approval suggests that there are limitations and regulations that must be adhered to, which could impact customer satisfaction and operational efficiency. [Data: Entities (31), Relationships (18)]\"\n },\n {\n \"summary\": \"Approval requirement for pet transport\",\n \"explanation\": \"Approval from the EL AL service center is a critical requirement for transporting pets in the Business Cabin. This policy ensures that all necessary protocols are followed, which is essential for the safety and well-being of the animals during travel. The need for approval may also serve as a barrier for some pet owners, potentially affecting their decision to travel with EL AL. [Data: Entities (39), Relationships (140)]\"\n },\n {\n \"summary\": \"Specific conditions for pet transport\",\n \"explanation\": \"Pets weighing up to 9 kg can be transported in the Business Cabin with prior approval. This weight limit indicates a targeted service for smaller pets, which may appeal to a specific segment of travelers. However, it also restricts larger animals from being transported, which could limit the customer base for this service. Understanding these conditions is crucial for both the airline and pet owners when planning travel. [Data: Relationships (79)]\"\n },\n {\n \"summary\": \"Regulatory framework governing pet transport\",\n \"explanation\": \"The relationships between the entities highlight a regulatory framework that governs the transport of pets in the Business Cabin. This framework includes the necessity of prior approval and specific conditions for pet transport, which are essential for compliance and operational integrity. The existence of such regulations underscores the importance of maintaining safety standards and customer trust in the airline's services. [Data: Relationships (18, 140)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n31,BUSINESS CABIN,\"The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions.\",3\r\n39,APPROVAL,Approval from the EL AL service center is necessary for transporting pets in the Business cabin.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n79,PET,BUSINESS CABIN,Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.,22\r\n140,BUSINESS CABIN,APPROVAL,\"Approval is required for transporting pets in the Business cabin, indicating a policy that must be followed.\",4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-e6e1b0b37682bc7e44a079b325f0badd b/cache/community_reporting/create_community_report-chat-v2-e6e1b0b37682bc7e44a079b325f0badd deleted file mode 100644 index 7cd03a8ce5234c389651cca3bd1b7f0455dbb6d4..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-e6e1b0b37682bc7e44a079b325f0badd +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Air Travel Baggage Regulations\",\n \"summary\": \"The community focuses on the regulations surrounding personal bags and carry-on items for air travel, detailing the relationships between different types of bags and their specifications, particularly in the context of El Al airline policies.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the importance of baggage regulations in ensuring compliance and passenger convenience during air travel.\",\n \"findings\": [\n {\n \"summary\": \"El Al's personal bag policy\",\n \"explanation\": \"El Al allows passengers to bring a personal bag on board, subject to specific size restrictions. This policy is crucial for passengers to understand as it directly affects their travel experience. The relationship between El Al and the personal bag highlights the airline's commitment to maintaining order and compliance with baggage regulations. Passengers must adhere to these guidelines to avoid complications during boarding. [Data: Relationships (30)]\"\n },\n {\n \"summary\": \"Definition and importance of personal bags\",\n \"explanation\": \"A personal bag is defined as a type of bag that passengers can bring on board, including backpacks and laptop bags. Understanding what constitutes a personal bag is essential for travelers, as it helps them pack appropriately and avoid excess baggage fees. The classification of personal bags is significant in the context of air travel, as it allows for a more organized boarding process and ensures that passengers are aware of their allowances. [Data: Entities (292, 291); Relationships (391)]\"\n },\n {\n \"summary\": \"Size restrictions for personal bags\",\n \"explanation\": \"The maximum dimensions for a personal bag are specified as 18 cm in height, 38 cm in width, and 30 cm in depth. These restrictions are critical for passengers to know, as exceeding these dimensions could result in the bag being denied at the gate. The relationship between the personal bag and its size specifications emphasizes the importance of compliance with airline policies to ensure a smooth travel experience. [Data: Entities (297); Relationships (393)]\"\n },\n {\n \"summary\": \"Relationship between bags and duty-free items\",\n \"explanation\": \"Duty-free items are products that can be purchased at the airport and carried on board without counting towards the baggage allowance. This relationship is important for travelers who wish to take advantage of duty-free shopping while ensuring they remain within their baggage limits. Understanding how duty-free items fit into the overall baggage policy can help passengers make informed decisions about their purchases and packing. [Data: Entities (299); Relationships (392)]\"\n },\n {\n \"summary\": \"Classification of carry-on bags\",\n \"explanation\": \"A carry-on bag is a type of bag that must meet specific weight and dimension limits. This classification is essential for passengers to understand, as it differentiates between various types of bags they can bring on board. The relationship between carry-on bags and other types of bags, such as personal bags, helps clarify the rules and ensures that passengers are aware of their allowances. [Data: Relationships (390)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n292,PERSONAL BAG,\"A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.\",3\r\n291,BAG,\"A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.\",3\r\n297,18X38X30 CM,\"The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.\",1\r\n299,DUTY-FREE ITEMS,Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n30,EL AL,PERSONAL BAG,\"El Al allows passengers to bring a personal bag on board, subject to size restrictions\",52\r\n390,BAG,CARRY-ON BAG,A carry-on bag is a type of bag that must meet specific weight and dimension limits,13\r\n391,BAG,PERSONAL BAG,A personal bag is a specific type of bag that passengers can bring on board,6\r\n393,PERSONAL BAG,18X38X30 CM,The maximum dimensions for a personal bag are 18x38x30 cm,4\r\n392,BAG,DUTY-FREE ITEMS,Duty-free items are included in the baggage allowance but do not count towards the limit,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-eada110430fcf21204f37c2c9081e475 b/cache/community_reporting/create_community_report-chat-v2-eada110430fcf21204f37c2c9081e475 deleted file mode 100644 index 1c585f6af35666ac3f1c60d1f2418b5cf9742d9b..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-eada110430fcf21204f37c2c9081e475 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Israel's Animal Transport Regulations and EL AL Cargo\",\n \"summary\": \"The community focuses on Israel's regulations regarding the transport of animals, particularly through the EL AL Cargo Store, which plays a crucial role in facilitating these operations. The entities are interconnected through various regulations and services that ensure compliance with health and safety standards for animal transport.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the stringent regulations and potential public health implications associated with animal transport in a high-risk country.\",\n \"findings\": [\n {\n \"summary\": \"Israel's role as a high-risk country for animal transport\",\n \"explanation\": \"Israel is classified as a high-risk country for the transport of animals, particularly dogs, which imposes specific regulations that must be adhered to by travelers. This classification affects how animals are transported and the necessary permits required for their movement. The Centers for Disease Control and Prevention (CDC) has designated Israel as a high-risk country, which influences the protocols that must be followed to ensure public health and safety during animal transport [Data: Entities (48); Relationships (124, 126)].\"\n },\n {\n \"summary\": \"EL AL Cargo Store's significance in animal transport\",\n \"explanation\": \"The EL AL Cargo Store is a dedicated facility that provides essential services for transporting animals from Israel to various international destinations. This facility is crucial for ensuring that animals are handled properly during transit, adhering to the regulations set forth by the Ministry of Agriculture and the Ministry of Health. The store's operations are vital for maintaining the integrity of animal transport and ensuring compliance with international standards [Data: Entities (13); Relationships (123)].\"\n },\n {\n \"summary\": \"Ministries' oversight in animal transport regulations\",\n \"explanation\": \"The Ministry of Agriculture and the Ministry of Health in Israel play pivotal roles in regulating the transport of animals. The Ministry of Agriculture oversees the necessary permits and conditions for pet transportation, while the Ministry of Health is responsible for ensuring that animals entering the country meet health standards. This dual oversight is essential for safeguarding public health and animal welfare during transport [Data: Entities (53); Relationships (3, 125)].\"\n },\n {\n \"summary\": \"Specific guidelines for transporting service dogs\",\n \"explanation\": \"Israel has established specific requirements for the transport of service dogs, which must be strictly followed by passengers. These guidelines are crucial for ensuring that service dogs are transported safely and in compliance with health regulations. The relationship between service dogs and the regulations set by the Ministry of Agriculture highlights the importance of adhering to these protocols to avoid potential health risks [Data: Relationships (59)].\"\n },\n {\n \"summary\": \"Guidelines for carrying liquids in carry-on bags\",\n \"explanation\": \"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions are part of broader security measures that ensure passenger safety and compliance with international aviation standards. Understanding these guidelines is essential for travelers to avoid complications during check-in and boarding [Data: Relationships (127)].\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n15,ISRAEL,\"Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad.\",9\r\n13,EL AL CARGO STORE,\"The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.\",4\r\n48,HIGH-RISK COUNTRY,\"A \"\"HIGH-RISK COUNTRY\"\" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.\",1\r\n53,MINISTRY OF HEALTH,The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.,1\r\n14,CARGO TERMINAL,\"The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.\",1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n44,ISRAEL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,It is important to know what you can take with you aboard the aircraft when departing from Israel.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n72,PET,ISRAEL,\"Pets are transported from Israel to other countries, requiring specific permits and conditions.\",28\r\n59,SERVICE DOG,ISRAEL,\"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.\",25\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,\"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.\",23\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n3,MINISTRY OF AGRICULTURE,ISRAEL,The Ministry of Agriculture is the regulatory authority in Israel for pet transportation,14\r\n123,EL AL CARGO STORE,ISRAEL,The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.,13\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n126,ISRAEL,HIGH-RISK COUNTRY,\"Israel is classified as a high-risk country, affecting the regulations for transporting service dogs.\",10\r\n125,ISRAEL,MINISTRY OF HEALTH,\"The Ministry of Health in Israel is responsible for regulating the entry of animals into the country. This includes overseeing the necessary protocols and guidelines to ensure that animals are imported in a safe and controlled manner, thereby safeguarding public health and animal welfare.\",10\r\n121,EL AL CARGO STORE,EL AL CARGO STORE,The EL AL Cargo Store is a part of EL AL Airlines' cargo services,8\r\n122,EL AL CARGO STORE,CARGO TERMINAL,The EL AL Cargo Store operates within the cargo terminal for handling cargo services,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-ed3beb70eb87fb28dd838d191eaa2e0f b/cache/community_reporting/create_community_report-chat-v2-ed3beb70eb87fb28dd838d191eaa2e0f deleted file mode 100644 index b696ff4f3cdc908ae6dd50807bfef5cb389aa8c4..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-ed3beb70eb87fb28dd838d191eaa2e0f +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Battery-Powered Mobility Aids and IATA Regulations\",\n \"summary\": \"This community focuses on battery-powered mobility aids and their compliance with IATA regulations for air travel. Key entities include battery-powered mobility aids, battery-powered devices, IATA regulations, and flight-approved batteries, all interconnected through specific safety and compliance requirements for air travel.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical safety regulations governing the transport of battery-powered mobility aids, which can affect a significant number of travelers.\",\n \"findings\": [\n {\n \"summary\": \"Compliance with IATA regulations is essential\",\n \"explanation\": \"Battery-powered mobility aids must comply with IATA regulations to ensure safe transport on flights. These regulations provide guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel. Non-compliance could lead to safety hazards and travel disruptions, affecting many individuals who rely on these aids for mobility. [Data: Entities (410); Relationships (444)]\"\n },\n {\n \"summary\": \"EL AL's specific regulations for battery-powered devices\",\n \"explanation\": \"EL AL has established specific regulations for traveling with battery-powered devices, ensuring they are safe for transport on their flights. This highlights the airline's commitment to safety and compliance, which is crucial for passengers who depend on these devices. The relationship between EL AL and battery-powered devices emphasizes the importance of adhering to airline-specific guidelines to avoid potential issues during travel. [Data: Entities (409); Relationships (47)]\"\n },\n {\n \"summary\": \"Battery-powered mobility aids require flight-approved batteries\",\n \"explanation\": \"Battery-powered mobility aids must utilize flight-approved batteries to be transported on EL AL flights. This requirement underscores the importance of using compliant equipment to ensure safety during air travel. The relationship between battery-powered mobility aids and flight-approved batteries illustrates the critical nature of adhering to safety standards, which can significantly impact the travel experience for users of these aids. [Data: Entities (419, 420); Relationships (449)]\"\n },\n {\n \"summary\": \"Interconnectedness of battery-powered devices and IATA regulations\",\n \"explanation\": \"Battery-powered devices are required to comply with IATA regulations for safe transport on flights. This interconnectedness highlights the broader implications of safety regulations that govern various types of battery-powered equipment, ensuring that all devices meet the necessary safety standards to prevent accidents or malfunctions during air travel. [Data: Entities (409); Relationships (443)]\"\n },\n {\n \"summary\": \"Potential impact on travelers with mobility needs\",\n \"explanation\": \"The regulations surrounding battery-powered mobility aids and devices have a significant impact on travelers with mobility needs. Ensuring compliance with IATA regulations and airline-specific guidelines is crucial for these individuals to travel safely and without disruption. The community's focus on these regulations reflects the importance of accessibility and safety in air travel for those who rely on mobility aids. [Data: Entities (419, 410); Relationships (444, 443)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n419,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.,3\r\n409,BATTERY-POWERED DEVICES,\"Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.\",2\r\n410,IATA REGULATIONS,\"IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.\",2\r\n420,FLIGHT-APPROVED BATTERIES,Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n48,EL AL,BATTERY-POWERED MOBILITY AIDS,EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights,52\r\n47,EL AL,BATTERY-POWERED DEVICES,\"EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.\",51\r\n444,IATA REGULATIONS,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids must comply with IATA regulations for air travel,5\r\n443,BATTERY-POWERED DEVICES,IATA REGULATIONS,Battery-powered devices must comply with IATA regulations for safe transport on flights.,4\r\n449,BATTERY-POWERED MOBILITY AIDS,FLIGHT-APPROVED BATTERIES,Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-eebdbe10547b17f6990778aafbc96e24 b/cache/community_reporting/create_community_report-chat-v2-eebdbe10547b17f6990778aafbc96e24 deleted file mode 100644 index febcf2046802aef99ff328cddccbd4fff3141ed5..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-eebdbe10547b17f6990778aafbc96e24 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Service Dog Transportation Community\",\n \"summary\": \"The community focuses on the transportation of service dogs, particularly in relation to airline policies, passenger requirements, and regulatory compliance. Key entities include EL AL, service dogs, passengers, and regulatory bodies like the CDC, all interconnected through specific guidelines and requirements for safe travel.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the critical nature of compliance with regulations for the safe transport of service dogs, which affects both passengers and public health.\",\n \"findings\": [\n {\n \"summary\": \"EL AL's policies on service dogs\",\n \"explanation\": \"EL AL has established specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets. This is crucial for passengers with disabilities who rely on service dogs for assistance during travel. [Data: Relationships (5, 21, 16)]\"\n },\n {\n \"summary\": \"Passenger requirements for traveling with service dogs\",\n \"explanation\": \"Passengers traveling with service dogs must meet specific requirements set by EL AL, including providing necessary documentation and adhering to airline policies. This ensures a standardized travel experience and compliance with regulations, which is essential for the safety and comfort of both the passengers and their service dogs. [Data: Relationships (22, 65, 66)]\"\n },\n {\n \"summary\": \"Regulatory compliance with the CDC\",\n \"explanation\": \"The CDC establishes regulations and guidelines for the transportation of dogs to the United States, which EL AL must comply with. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. This compliance is vital for public health and safety during the transportation process. [Data: Entities (42), Relationships (16, 58)]\"\n },\n {\n \"summary\": \"Importance of veterinary certificates\",\n \"explanation\": \"A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger, ensuring the health and safety of the dog and other passengers during the flight. [Data: Entities (87), Relationships (54)]\"\n },\n {\n \"summary\": \"Role of check-in counters\",\n \"explanation\": \"Check-in counters are designated areas at the airport where passengers must check in for their flights, including those traveling with service dogs. Passengers must present their documentation for traveling with a service dog at these counters, which serves as an official point for compliance with airline policies. [Data: Entities (105), Relationships (32, 65)]\"\n },\n {\n \"summary\": \"Sanitary conditions for service dogs\",\n \"explanation\": \"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies. This includes ensuring that the dog is clean and does not pose a health risk to other passengers. Compliance with these sanitary conditions is essential for the overall safety and comfort of all travelers on board. [Data: Entities (106), Relationships (67)]\"\n },\n {\n \"summary\": \"Transporting service dogs in the passenger cabin\",\n \"explanation\": \"Service dogs are allowed in the passenger cabin at no additional cost under certain conditions, which is a significant benefit for passengers with disabilities. This policy ensures that these passengers can travel comfortably and safely with their service animals, highlighting the importance of accommodating special needs in air travel. [Data: Relationships (53, 82)]\"\n },\n {\n \"summary\": \"Potential additional charges\",\n \"explanation\": \"Passengers may incur additional charges for inspecting and releasing a service dog from airport facilities in the United States. This aspect of the policy can impact the overall cost of travel for passengers with service dogs, making it essential for them to be aware of potential fees associated with their travel plans. [Data: Entities (104), Relationships (64)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n2,SERVICE DOG,\"A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.\",16\r\n107,PASSENGER,\"The term \"\"PASSENGER\"\" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline's baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline's policies regarding baggage and services, ensuring a standardized travel experience.\",7\r\n105,CHECK-IN COUNTERS,\"Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.\",5\r\n97,DOG,A dog is an animal that may be transported by passengers under certain conditions and regulations.,5\r\n42,CDC,The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.,3\r\n34,CAGE,\"CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.\",2\r\n184,AIRLINE,\"An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.\",2\r\n89,PASSENGER CABIN,\"The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.\",5\r\n99,UNITED STATES,\"The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.\",2\r\n104,ADDITIONAL CHARGES,Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.,1\r\n103,FLIGHT DATE,\"The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.\",1\r\n102,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,1\r\n98,HEATHROW AIRPORT,Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.,1\r\n93,I.D.F SOLDIER,I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.,1\r\n101,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,1\r\n106,SANITARY CONDITIONS,\"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.\",1\r\n87,VETERINARY CERTIFICATE,A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.,1\r\n94,SHELL SHOCK,Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.,1\r\n381,ADDITIONAL SERVICES,\"Refers to extra services that can be ordered by passengers, which may incur additional charges.\",2\r\n195,DESTINATION COUNTRY,\"The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.\",2\r\n109,FORMS,Necessary documentation that passengers must provide to transport a dog on EL AL flights.,1\r\n112,HOLD,,1\r\n317,PASSENGERS,Individuals traveling on flights who must check in at the counters regardless of luggage.,2\r\n91,CAT,\"Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.\",1\r\n318,SECURITY CHECK AREAS,,1\r\n111,DIRECT THREAT,A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.,1\r\n110,DISTURBANCE,\"A situation where the dog's behavior causes disruption on the aircraft, leading to potential refusal of transport.\",1\r\n92,EXOTIC BIRD,\"Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.\",1\r\n384,FULL CHARGE,Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n5,EL AL,SERVICE DOG,\"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.\",65\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n21,EL AL,DOG,\"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused\",54\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n141,CAGE,ANIMAL,\"A cage is required for the safe transport of animals, ensuring they are secure during travel.\",31\r\n89,CHECKED BAGGAGE,AIRLINE,\"Airlines have specific policies regarding checked baggage, including size and weight limits\",27\r\n59,SERVICE DOG,ISRAEL,\"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.\",25\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n65,SERVICE DOG,CHECK-IN COUNTERS,Passengers must present their documentation for traveling with a service dog at the check-in counters.,21\r\n53,SERVICE DOG,PASSENGER CABIN,Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.,21\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n60,SERVICE DOG,CAGE,A cage is required for the transport of a service dog to ensure its safety and comfort during the flight.,18\r\n58,SERVICE DOG,UNITED STATES,\"The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.\",18\r\n64,SERVICE DOG,ADDITIONAL CHARGES,Additional charges may apply for the inspection and release of a service dog at airport facilities in the United States.,17\r\n63,SERVICE DOG,FLIGHT DATE,The flight date is crucial for passengers traveling with a service dog to ensure compliance with registration and documentation requirements.,17\r\n62,SERVICE DOG,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,17\r\n57,SERVICE DOG,HEATHROW AIRPORT,Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.,17\r\n55,SERVICE DOG,I.D.F SOLDIER,I.D.F soldiers may transport service dogs at no additional cost under specific conditions.,17\r\n61,SERVICE DOG,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,17\r\n67,SERVICE DOG,SANITARY CONDITIONS,\"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.\",17\r\n54,SERVICE DOG,VETERINARY CERTIFICATE,\"A service dog must possess a veterinary certificate, which is essential to confirm that the dog is vaccinated and fit for travel. This certificate is a requirement for the transport of service dogs, ensuring their health and safety during travel.\",17\r\n56,SERVICE DOG,SHELL SHOCK,Passengers experiencing shell shock may qualify to transport service dogs at no additional cost.,17\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n212,DOG,PASSENGER,The passenger is responsible for the dog's behavior and must meet conditions for its transport,12\r\n207,PASSENGER CABIN,DOG,Dogs can be transported in the passenger cabin under specific conditions related to size and weight.,10\r\n221,PASSENGER,ADDITIONAL SERVICES,\"Passengers can order additional services, which may incur charges\",9\r\n220,PASSENGER,AIRLINE,Passengers are subject to the policies of the airline regarding baggage and additional services,9\r\n219,PASSENGER,DESTINATION COUNTRY,Passengers must comply with the regulations of the destination country regarding baggage,9\r\n218,PASSENGER,FORMS,Passengers must provide the required forms to transport a dog on EL AL flights,8\r\n217,PASSENGER,HOLD,\"If the dog cannot be transported in the passenger cabin, it may be placed in the hold\",8\r\n215,CHECK-IN COUNTERS,PASSENGERS,Passengers must check in at the counters regardless of luggage,7\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n208,PASSENGER CABIN,CAT,Cats can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n216,CHECK-IN COUNTERS,SECURITY CHECK AREAS,Passengers must proceed to security check areas after checking in at the counters,6\r\n214,DOG,DIRECT THREAT,\"If a dog is deemed a direct threat, it may be refused transport by EL AL\",6\r\n213,DOG,DISTURBANCE,\"A dog's behavior may lead to a disturbance, affecting its ability to be transported\",6\r\n209,PASSENGER CABIN,EXOTIC BIRD,Exotic birds can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n179,CDC,UNITED STATES,\"The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.\",5\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n423,ADDITIONAL SERVICES,FULL CHARGE,Ordering additional services will result in a full charge to the passenger,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-efb27c0f380249380ef00ee9a1c3f0aa b/cache/community_reporting/create_community_report-chat-v2-efb27c0f380249380ef00ee9a1c3f0aa deleted file mode 100644 index 9e9b2d4244a411b2abab6caf5a218bb5f6b3ecdb..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-efb27c0f380249380ef00ee9a1c3f0aa +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Regulations on Spare Batteries and Portable Chargers\",\n \"summary\": \"This community focuses on the regulations surrounding spare batteries and portable chargers, particularly in the context of air travel. The entities are interconnected through safety regulations that dictate how these items must be handled to prevent hazards during flights.\",\n \"rating\": 7.5,\n \"rating_explanation\": \"The impact severity rating is high due to the potential safety risks associated with improper handling of lithium batteries and the strict regulations governing their transport.\",\n \"findings\": [\n {\n \"summary\": \"Spare Batteries and Their Regulations\",\n \"explanation\": \"Spare batteries are critical components in various devices, but they come with stringent regulations when it comes to air travel. Specifically, spare lithium batteries are prohibited from being placed in checked baggage, which highlights the importance of understanding these regulations to ensure safety during flights. The requirement for spare batteries to be insulated and protected from short circuits is crucial to prevent incidents that could jeopardize aircraft safety. [Data: Entities (386, 371); Relationships (421, 428)]\"\n },\n {\n \"summary\": \"Prohibited Items in Air Travel\",\n \"explanation\": \"The classification of spare batteries and portable chargers as prohibited items in checked baggage underscores the heightened safety concerns associated with these entities. The regulations are designed to mitigate risks, particularly with lithium batteries, which can pose fire hazards if not handled correctly. Understanding what constitutes a prohibited item is essential for travelers to avoid penalties and ensure compliance with aviation safety standards. [Data: Entities (371, 389); Relationships (421, 422)]\"\n },\n {\n \"summary\": \"Insulation and Protection Requirements\",\n \"explanation\": \"Insulation and the use of non-conductive caps are mandatory for spare batteries to prevent short circuits during transport. These requirements are critical in ensuring that batteries do not inadvertently discharge or cause fires while aboard an aircraft. The relationships between spare batteries, insulation, and non-conductive caps highlight the interconnected nature of safety regulations in air travel. [Data: Entities (416, 404); Relationships (428, 427)]\"\n },\n {\n \"summary\": \"Portable Chargers as Lithium Batteries\",\n \"explanation\": \"Portable chargers are classified as lithium batteries and are subject to the same regulations as spare lithium batteries. This classification means they are also prohibited in checked baggage and must be carried in the cabin. The implications of this classification are significant for travelers, as they must be aware of the restrictions to avoid complications during security checks. [Data: Entities (389); Relationships (435, 422)]\"\n },\n {\n \"summary\": \"Interconnectedness of Battery Regulations\",\n \"explanation\": \"The relationships among spare batteries, portable chargers, and their respective regulations illustrate a complex web of safety measures designed to protect air travel. Each entity plays a role in the broader context of aviation safety, and understanding these connections is vital for compliance and risk management. The regulations are not standalone; they are part of a comprehensive approach to ensuring the safety of passengers and crew. [Data: Relationships (426, 435)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n386,SPARE BATTERIES,\"Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.\",4\r\n371,PROHIBITED ITEM,Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.,2\r\n416,INSULATED,Batteries must be insulated to prevent short circuits when taken aboard the aircraft.,1\r\n404,NON-CONDUCTIVE CAPS,Non-conductive caps are required to protect the terminals of spare batteries during transport.,1\r\n389,PORTABLE CHARGERS,\"Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.\",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n426,SPARE BATTERIES,LITHIUM-ION BATTERIES,Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions,11\r\n421,PROHIBITED ITEM,SPARE BATTERIES,\"Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction\",6\r\n428,SPARE BATTERIES,INSULATED,Spare batteries must be insulated to prevent short circuits when taken aboard the aircraft.,5\r\n427,SPARE BATTERIES,NON-CONDUCTIVE CAPS,Spare batteries must have non-conductive caps to protect their terminals during transport,5\r\n435,PORTABLE CHARGERS,SPARE LITHIUM BATTERIES,Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.,5\r\n422,PROHIBITED ITEM,PORTABLE CHARGERS,Portable chargers are classified as lithium batteries and are prohibited in checked baggage,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/community_reporting/create_community_report-chat-v2-f910936c7a3f401e608886cf4a12d845 b/cache/community_reporting/create_community_report-chat-v2-f910936c7a3f401e608886cf4a12d845 deleted file mode 100644 index 2a4ea9a38809c9f09abe3cb8cccf1d1ee176897b..0000000000000000000000000000000000000000 --- a/cache/community_reporting/create_community_report-chat-v2-f910936c7a3f401e608886cf4a12d845 +++ /dev/null @@ -1 +0,0 @@ -{"result": "{\n \"title\": \"Bicycle Transport Regulations and Approval Process\",\n \"summary\": \"This community focuses on the regulations and processes surrounding the transport of bicycles as checked baggage, highlighting the roles of the EL AL call center, packing regulations, and exceptional cases for transport approval.\",\n \"rating\": 4.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential complications and safety concerns associated with transporting bicycles.\",\n \"findings\": [\n {\n \"summary\": \"Bicycle transport as checked baggage\",\n \"explanation\": \"Bicycles can be transported instead of regular checked baggage if they meet specific size and weight dimensions. This regulation is crucial for travelers who wish to bring their bicycles along, ensuring that they comply with airline policies. The ability to transport bicycles can enhance travel experiences for cycling enthusiasts, but it also requires adherence to strict guidelines to prevent issues during travel. [Data: Entities (187); Relationships (93)]\"\n },\n {\n \"summary\": \"Role of the EL AL call center\",\n \"explanation\": \"The EL AL call center is responsible for pre-approving the transport of bicycles and other special items. This entity plays a critical role in the approval process, ensuring that all necessary guidelines are followed before a bicycle can be transported. The call center's involvement is essential for managing requests and providing travelers with the information they need to comply with transport regulations. [Data: Entities (189); Relationships (333)]\"\n },\n {\n \"summary\": \"Importance of packing regulations\",\n \"explanation\": \"Specific guidelines must be followed when packing bicycles for transport to prevent damage and ensure safety. These packing regulations are vital for protecting bicycles during transit, as improper packing can lead to damage and potential liability issues for the airline. Travelers must be aware of these regulations to ensure their bicycles arrive safely at their destination. [Data: Entities (191); Relationships (334)]\"\n },\n {\n \"summary\": \"Prohibition of motorized bicycles\",\n \"explanation\": \"Motorized bicycles are not allowed to be transported as checked baggage. This regulation is significant as it helps maintain safety and compliance with airline policies. Travelers need to be informed about this prohibition to avoid complications during their travel plans. Understanding this rule is essential for those who may consider bringing a motorized bicycle along on their journey. [Data: Entities (192); Relationships (335)]\"\n },\n {\n \"summary\": \"Exceptional cases for transport approval\",\n \"explanation\": \"Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division. This provision offers flexibility for unique situations where standard regulations may not apply. However, it also requires travelers to navigate additional approval processes, which can complicate travel plans. Awareness of these exceptional cases is important for travelers who may have specific needs regarding bicycle transport. [Data: Entities (193); Relationships (336)]\"\n }\n ]\n}", "input": "\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n \"title\": \"Verdant Oasis Plaza and Unity March\",\n \"summary\": \"The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.\",\n \"rating\": 5.0,\n \"rating_explanation\": \"The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.\",\n \"findings\": [\n {{\n \"summary\": \"Verdant Oasis Plaza as the central location\",\n \"explanation\": \"Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]\"\n }},\n {{\n \"summary\": \"Harmony Assembly's role in the community\",\n \"explanation\": \"Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]\"\n }},\n {{\n \"summary\": \"Unity March as a significant event\",\n \"explanation\": \"The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]\"\n }},\n {{\n \"summary\": \"Role of Tribune Spotlight\",\n \"explanation\": \"Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]\"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n187,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.,6\r\n189,EL AL CALL CENTER,The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.,1\r\n191,PACKING REGULATIONS,Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.,1\r\n192,MOTORIZED BICYCLES,Motorized bicycles are not allowed to be transported as checked baggage.,1\r\n193,EXCEPTIONAL CASES,\"Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.\",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n93,CHECKED BAGGAGE,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions,31\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n333,BICYCLE,EL AL CALL CENTER,Pre-approval for transporting bicycles must be obtained from the EL AL call center,7\r\n334,BICYCLE,PACKING REGULATIONS,Bicycles must be packed according to specific packing regulations to be transported,7\r\n335,BICYCLE,MOTORIZED BICYCLES,Motorized bicycles are prohibited from being transported as checked baggage,7\r\n336,BICYCLE,EXCEPTIONAL CASES,Transport of bicycles may be allowed in exceptional cases with prior approval,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n \"title\": ,\n \"summary\": ,\n \"rating\": ,\n \"rating_explanation\": ,\n \"findings\": [\n {{\n \"summary\":,\n \"explanation\": \n }},\n {{\n \"summary\":,\n \"explanation\": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n\"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)].\"\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add \"+more\" to indicate that there are more.\n\nFor example:\n\"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)].\"\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 2000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-0c306a8b6254b7a0049ec867152bda08 b/cache/entity_extraction/chat-0c306a8b6254b7a0049ec867152bda08 deleted file mode 100644 index 0fcc6102dc630fdadf1bccfd46093c2772871cd8..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-0c306a8b6254b7a0049ec867152bda08 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides transport services and has specific guidelines regarding passenger equipment and liability for fragile or valuable items.)\n##\n(\"entity\"<|>FRAGILE ITEM<|>PROHIBITED ITEM<|>Fragile items are those that can easily break or be damaged during transport, and EL AL does not take responsibility for them.)\n##\n(\"entity\"<|>VALUABLE ITEM<|>PROHIBITED ITEM<|>Valuable items are those that have significant monetary or sentimental value, and EL AL does not take responsibility for them.)\n##\n(\"entity\"<|>SPECIAL TRAVEL INSURANCE<|>POLICY<|>Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.)\n##\n(\"relationship\"<|>EL AL<|>FRAGILE ITEM<|>EL AL does not bear responsibility for fragile items transported by the airline<|>8)\n##\n(\"relationship\"<|>EL AL<|>VALUABLE ITEM<|>EL AL does not bear responsibility for valuable items transported by the airline<|>8)\n##\n(\"relationship\"<|>SPECIAL TRAVEL INSURANCE<|>FRAGILE ITEM<|>Special travel insurance is recommended for passengers transporting fragile items<|>7)\n##\n(\"relationship\"<|>SPECIAL TRAVEL INSURANCE<|>VALUABLE ITEM<|>Special travel insurance is recommended for passengers transporting valuable items<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-107eae98e2745381705da7452a3f8f57 b/cache/entity_extraction/chat-107eae98e2745381705da7452a3f8f57 deleted file mode 100644 index c2f4f494114ccc3bfb0454086706d1a314539ba4..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-107eae98e2745381705da7452a3f8f57 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of dogs on its flights.)\n##\n(\"entity\"<|>DOG<|>SPECIAL ITEM<|>A dog that may be transported by passengers under certain conditions and regulations.)\n##\n(\"entity\"<|>PASSENGER<|>PASSENGER TYPE<|>A person traveling on the airline who may bring a dog on board under specific conditions.)\n##\n(\"relationship\"<|>PASSENGER<|>DOG<|>The passenger is responsible for the dog's behavior and must meet conditions for its transport<|>7)\n##\n(\"relationship\"<|>EL AL<|>DOG<|>EL AL has policies that govern the transport of dogs, including conditions under which they may be refused<|>8)\n##\n(\"relationship\"<|>EL AL<|>PASSENGER<|>EL AL has specific requirements that passengers must meet to transport a dog<|>8)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-19cd463edce0e6f8a054446fcb83d7d3 b/cache/entity_extraction/chat-19cd463edce0e6f8a054446fcb83d7d3 deleted file mode 100644 index 7ba9bbd7cd7b147a5c04ea3e9bef06c6da0a4fcd..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-19cd463edce0e6f8a054446fcb83d7d3 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>El Al is an airline that requires passengers to check in at their counters regardless of luggage when returning to Israel from abroad.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the destination for passengers returning from abroad.)\n##\n(\"entity\"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are designated areas where passengers must check in for their flights.)\n##\n(\"entity\"<|>FLIGHT DESTINATION<|>REQUIRED DOCUMENT<|>Flight destination refers to the location where passengers are traveling and requires necessary documents for check-in.)\n##\n(\"relationship\"<|>EL AL<|>CHECK-IN COUNTERS<|>El Al requires passengers to use check-in counters for their flights<|>8)\n##\n(\"relationship\"<|>CHECK-IN COUNTERS<|>ISRAEL<|>Passengers checking in at the counters are returning to Israel<|>5)\n##\n(\"relationship\"<|>FLIGHT DESTINATION<|>EL AL<|>Passengers must have necessary documents according to their flight destination when checking in with El Al<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-1a839b69f72bd11c8c7321d85d01aad0 b/cache/entity_extraction/chat-1a839b69f72bd11c8c7321d85d01aad0 deleted file mode 100644 index 7e8bd5fc43302e6f407004174d9827af26a78a82..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-1a839b69f72bd11c8c7321d85d01aad0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides baggage check-in services and has specific baggage policies for different travel classes.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>TRAVEL CLASS<|>Premium class tickets allow passengers to check up to two pieces of baggage weighing up to 23 kg each.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>TRAVEL CLASS<|>Business class tickets allow passengers to check up to two pieces of baggage weighing up to 32 kg each.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is checked in at the airport and transported in the cargo hold of the aircraft.)\n##\n(\"entity\"<|>CARRY-ON ALLOWANCE<|>ALLOWANCE<|>Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.)\n##\n(\"entity\"<|>23 KG<|>WEIGHT<|>23 kg is the maximum weight allowed for each piece of checked baggage in premium class.)\n##\n(\"entity\"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight allowed for each piece of checked baggage in business class.)\n##\n(\"entity\"<|>ADDITIONAL HANDLING FEE<|>FEE STRUCTURE<|>An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.)\n##\n(\"entity\"<|>EXCESS BAGGAGE<|>RESTRICTION<|>Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance is determined by the ticket type and specifies how much baggage a passenger can check without incurring extra fees.)\n##\n(\"entity\"<|>CODE-SHARE FLIGHTS<|>ROUTE TYPE<|>Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.)\n##\n(\"entity\"<|>MANAGE MY BOOKING<|>SERVICE TYPE<|>Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.)\n##\n(\"entity\"<|>CHECK-IN PROCESS<|>SERVICE TYPE<|>The check-in process is the procedure passengers go through to confirm their presence on a flight and check in their baggage.)\n##\n(\"entity\"<|>FLIGHT SEGMENT<|>TIME PERIOD<|>A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.)\n##\n(\"relationship\"<|>EL AL<|>PREMIUM CLASS<|>EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each<|>8)\n##\n(\"relationship\"<|>EL AL<|>BUSINESS CLASS<|>EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each<|>8)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>PREMIUM CLASS<|>Premium class includes checked baggage allowances<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>BUSINESS CLASS<|>Business class includes checked baggage allowances<|>7)\n##\n(\"relationship\"<|>ADDITIONAL HANDLING FEE<|>EL AL<|>EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center<|>6)\n##\n(\"relationship\"<|>EXCESS BAGGAGE<|>CHECKED BAGGAGE<|>Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees<|>7)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance determines how much checked baggage a passenger can bring<|>8)\n##\n(\"relationship\"<|>CODE-SHARE FLIGHTS<|>CHECKED BAGGAGE<|>Baggage procedures may vary on code-share flights depending on the marketing carrier<|>5)\n##\n(\"relationship\"<|>MANAGE MY BOOKING<|>EL AL<|>Passengers can add baggage via the Manage my booking service provided by EL AL<|>7)\n##\n(\"relationship\"<|>CHECK-IN PROCESS<|>EL AL<|>Passengers can add baggage during the check-in process for their EL AL flight<|>7)\n##\n(\"relationship\"<|>FLIGHT SEGMENT<|>BAGGAGE ALLOWANCE<|>Baggage allowance is specified for each flight segment on the ticket<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n​​Do not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-1fcd2419561367ab1bd07d5adbecd563 b/cache/entity_extraction/chat-1fcd2419561367ab1bd07d5adbecd563 deleted file mode 100644 index 33cc0aaf20ec3ea63c4bd562b243dd112093a870..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-1fcd2419561367ab1bd07d5adbecd563 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service location for cargo operations associated with EL AL Airlines.)\n##\n(\"relationship\"<|>EL AL CARGO STORE<|>EL AL CARGO STORE<|>The EL AL Cargo Store is a part of EL AL Airlines' cargo services<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-21459c12da68fccfe5dcbb5873c82ba0 b/cache/entity_extraction/chat-21459c12da68fccfe5dcbb5873c82ba0 deleted file mode 100644 index a5eef7b9aa4252364418c1a4e11b5c3b86556892..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-21459c12da68fccfe5dcbb5873c82ba0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment includes items like skis, snowboards, and bicycles that can be transported on flights under specific conditions.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows complimentary transport of sports equipment under certain conditions, excluding Lite fares.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a travel class that allows complimentary transport of sports equipment under specific conditions.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the total measurements (length + width + height) of the sports equipment that must not exceed specified limits for transport.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum allowable weight of sports equipment for transport, which varies by travel class.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division provides services for transporting oversized or separately sent sports equipment as cargo.)\n##\n(\"entity\"<|>CALL CENTER<|>Service Location<|>The call center is a service location where passengers can contact for approval regarding overweight baggage.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>Restriction<|>Overweight baggage refers to items that exceed the standard weight limits and require special approval for transport.)\n##\n(\"entity\"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports items brought beyond the standard baggage allowance.)\n##\n(\"entity\"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n(\"entity\"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy and Premium Class.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum total measurement limit for sports equipment to be sent as overweight baggage.)\n##\n(\"entity\"<|>190 CM<|>Linear Dimension<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.)\n##\n(\"entity\"<|>LITE FARES<|>Restriction<|>Lite fares are a type of Economy Class fare that does not allow for complimentary transport of sports equipment.)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment with different weight limits compared to Economy and Premium Class.<|>8)\n##\n(\"relationship\"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are a critical factor in determining whether sporting equipment can be transported as checked baggage.<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key restriction that determines if sporting equipment can be transported in the specified travel classes.<|>9)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an alternative for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n##\n(\"relationship\"<|>CALL CENTER<|>OVERWEIGHT BAGGAGE<|>The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.<|>6)\n##\n(\"relationship\"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to items that can be transported beyond the standard baggage allowance.<|>5)\n##\n(\"relationship\"<|>32 KG<|>BUSINESS CLASS<|>32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n(\"relationship\"<|>30 KG<|>ECONOMY CLASS<|>30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n(\"relationship\"<|>277 CM<|>OVERWEIGHT BAGGAGE<|>277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.<|>8)\n##\n(\"relationship\"<|>190 CM<|>SPORTING EQUIPMENT<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.<|>8)\n##\n(\"relationship\"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a restriction within Economy Class that affects the transport of sporting equipment.<|>4)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-277ef23ee1f874111090e3635d4c640c b/cache/entity_extraction/chat-277ef23ee1f874111090e3635d4c640c deleted file mode 100644 index 4c6de838836b054d6d20a42c443c7b2ebc14d497..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-277ef23ee1f874111090e3635d4c640c +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of service dogs on flights.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>A service dog is a trained animal that assists passengers with disabilities and must meet specific requirements for air travel.)\n##\n(\"entity\"<|>HEATHROW AIRPORT<|>AIRPORT<|>Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.)\n##\n(\"entity\"<|>UNITED STATES<|>GEO<|>The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is a country with specific requirements for transporting animals, including service dogs.)\n##\n(\"entity\"<|>CDC<|>ORGANIZATION<|>The CDC provides guidelines and requirements for transporting dogs to the United States, including health and vaccination documentation.)\n##\n(\"entity\"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is a document that certifies a service dog is vaccinated and can maintain sanitary conditions during transport.)\n##\n(\"entity\"<|>ANIMAL AIR TRANSPORT COMPANIES<|>SERVICE TYPE<|>Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.)\n##\n(\"relationship\"<|>EL AL<|>SERVICE DOG<|>EL AL has specific policies regarding the transportation of service dogs, including requirements for documentation and behavior during the flight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>VETERINARY CERTIFICATE<|>A veterinary certificate is required for a service dog to ensure it is vaccinated and fit for travel.<|>9)\n##\n(\"relationship\"<|>SERVICE DOG<|>HEATHROW AIRPORT<|>Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.<|>7)\n##\n(\"relationship\"<|>SERVICE DOG<|>UNITED STATES<|>The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.<|>8)\n##\n(\"relationship\"<|>ISRAEL<|>SERVICE DOG<|>Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.<|>6)\n##\n(\"relationship\"<|>CDC<|>UNITED STATES<|>The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.<|>8)\n##\n(\"relationship\"<|>EL AL<|>ANIMAL AIR TRANSPORT COMPANIES<|>EL AL may recommend using specialized companies for the air transport of animals, including service dogs.<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-290824447cf35d213c62f6e9dc9d49a8 b/cache/entity_extraction/chat-290824447cf35d213c62f6e9dc9d49a8 deleted file mode 100644 index 7b224a9a0a15a16355cf65316170f88efb75e88c..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-290824447cf35d213c62f6e9dc9d49a8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CARGO DIVISION<|>ORGANIZATION<|>The Cargo Division is responsible for managing transport costs and guidelines for cargo, including pets.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the passenger cabin based on size, weight, and permits.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for transporting pets and service dogs on flights.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs can accompany passengers with special needs or military personnel and must meet specific requirements for transport.)\n##\n(\"entity\"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is required for transporting service dogs and must be provided by the passenger.)\n##\n(\"entity\"<|>TRANSPORT CAGE GUIDELINES<|>POLICY<|>Guidelines that outline the requirements for transport cages used for pets during flights.)\n##\n(\"entity\"<|>PASSENGER CABIN<|>CABIN SECTION<|>The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.)\n##\n(\"entity\"<|>WEIGHT<|>DIMENSION<|>Weight is a factor in determining the cost of transporting pets, including the animal, carrying case, and food.)\n##\n(\"entity\"<|>ALLOWANCE<|>ALLOWANCE<|>The permitted baggage allowance does not include the weight of pets being transported.)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division provides transport cost guidelines and policies for EL AL regarding cargo, including pets.<|>7)\n##\n(\"relationship\"<|>PET<|>PASSENGER CABIN<|>Pets can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>PASSENGER CABIN<|>Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.<|>9)\n##\n(\"relationship\"<|>VETERINARY CERTIFICATE<|>SERVICE DOG<|>A veterinary certificate is required for the transport of service dogs.<|>8)\n##\n(\"relationship\"<|>PET<|>ALLOWANCE<|>The weight of pets is not included in the permitted baggage allowance, affecting transport costs.<|>6)\n##\n(\"relationship\"<|>TRANSPORT CAGE GUIDELINES<|>PET<|>Transport cage guidelines provide the necessary requirements for transporting pets safely.<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing \"shell shock\" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-33bfda11af54c891587eeaf281cd1f87 b/cache/entity_extraction/chat-33bfda11af54c891587eeaf281cd1f87 deleted file mode 100644 index 49569348c65493b2b9ee1d2fe55ad3521dea11d4..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-33bfda11af54c891587eeaf281cd1f87 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n(\"entity\"<|>ISRAEL<|>COUNTRY<|>Country from which flights are departing and has specific guidelines for carrying liquids in carry-on bags.)\n##\n(\"entity\"<|>U.S<|>COUNTRY<|>Country with specific guidelines regarding the carrying of liquids in handbags.)\n##\n(\"entity\"<|>100 ML<|>MEASUREMENT UNIT<|>Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.)\n##\n(\"entity\"<|>3.4 OZ<|>MEASUREMENT UNIT<|>Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.)\n##\n(\"entity\"<|>CLEAR RESEALABLE PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.)\n##\n(\"entity\"<|>DOCTOR'S NOTE<|>REQUIRED DOCUMENT<|>Document required for carrying medications and special food products at the security checkpoint.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>Airline that states it is not responsible for any liquids confiscated from passengers at the airport.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>U.S<|>The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.<|>8)\n##\n(\"relationship\"<|>100 ML<|>3.4 OZ<|>100 ml is equivalent to 3.4 oz, which is the maximum volume allowed for liquids in carry-on bags.<|>9)\n##\n(\"relationship\"<|>CLEAR RESEALABLE PLASTIC BAG<|>LIQUIDS IN CARRY-ON BAGS<|>A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.<|>9)\n##\n(\"relationship\"<|>DOCTOR'S NOTE<|>LIQUIDS IN CARRY-ON BAGS<|>A doctor's note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.<|>8)\n##\n(\"relationship\"<|>EL AL<|>LIQUIDS IN CARRY-ON BAGS<|>EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​\n​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-3f1658fc95a55253c117da35f7917b29 b/cache/entity_extraction/chat-3f1658fc95a55253c117da35f7917b29 deleted file mode 100644 index b33dd3cac15f06edc6b97162350e6758fa473d54..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-3f1658fc95a55253c117da35f7917b29 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGS<|>Baggage Type<|>Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.)\n##\n(\"entity\"<|>16 KG<|>Weight<|>16 kg is the maximum weight allowed for one bag as per airline policy.)\n##\n(\"entity\"<|>20 KG<|>Weight<|>20 kg is the combined maximum weight limit for all bags as per airline policy.)\n##\n(\"entity\"<|>CARRY-ON BAGS<|>Baggage Type<|>Carry-on bags are personal items that passengers can take on board the aircraft, subject to weight and size restrictions.)\n##\n(\"entity\"<|>MEDICATIONS<|>Valuable Item<|>Medications are essential items that passengers are advised to keep accessible during flights.)\n##\n(\"entity\"<|>PASSPORTS<|>Valuable Item<|>Passports are required documents for international travel and should be easily accessible during flights.)\n##\n(\"entity\"<|>VALUABLES<|>Valuable Item<|>Valuables refer to personal items of significant worth that should be kept accessible during flights.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as phones and laptops that passengers are advised to keep accessible during flights.)\n##\n(\"relationship\"<|>BAGS<|>16 KG<|>The weight limit for one bag is set at 16 kg as per airline policy<|>8)\n##\n(\"relationship\"<|>BAGS<|>20 KG<|>The combined weight limit for all bags is set at 20 kg as per airline policy<|>8)\n##\n(\"relationship\"<|>CARRY-ON BAGS<|>BAGS<|>Carry-on bags are a type of baggage that passengers can take on board<|>9)\n##\n(\"relationship\"<|>MEDICATIONS<|>CARRY-ON BAGS<|>Medications should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>PASSPORTS<|>CARRY-ON BAGS<|>Passports should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>VALUABLES<|>CARRY-ON BAGS<|>Valuables should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>ELECTRONIC DEVICES<|>CARRY-ON BAGS<|>Electronic devices should be kept in carry-on bags for easy access during the flight<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-5acaff799535093d5d7de7a7c12810f4 b/cache/entity_extraction/chat-5acaff799535093d5d7de7a7c12810f4 deleted file mode 100644 index beca93c4442e9d6d4a94f70efc3297ff10807a4f..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-5acaff799535093d5d7de7a7c12810f4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Agriculture regulates the transport of pets.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from certain weight limits when transported in the cabin.)\n##\n(\"entity\"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined by Israeli law, are not approved for transportation.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage is a method of transporting animals in certain instances, such as large animals.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is used for transporting animals that are extra-large or flying unaccompanied.)\n##\n(\"entity\"<|>CABIN<|>CABIN SECTION<|>The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.)\n##\n(\"entity\"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture’s Veterinary Services is required to transport an animal.)\n##\n(\"entity\"<|>ANIMAL TESTS<|>RESTRICTION<|>Several animal tests must be performed as part of the authorization process for transporting pets.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>ISRAEL<|>The Ministry of Agriculture is the regulatory authority in Israel for pet transportation<|>8)\n##\n(\"relationship\"<|>EL AL<|>MINISTRY OF AGRICULTURE<|>EL AL must comply with the regulations set by the Ministry of Agriculture regarding pet transportation<|>7)\n##\n(\"relationship\"<|>SERVICE DOG<|>EL AL<|>Service dogs are allowed to be transported under different conditions than other pets on EL AL<|>6)\n##\n(\"relationship\"<|>DANGEROUS DOG<|>EL AL<|>EL AL does not allow dangerous dogs to be transported<|>6)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EL AL<|>EL AL allows certain animals to be transported as checked baggage<|>5)\n##\n(\"relationship\"<|>REGISTERED CARGO<|>EL AL<|>EL AL provides registered cargo services for transporting animals<|>5)\n##\n(\"relationship\"<|>CABIN<|>EL AL<|>EL AL allows pets to be transported in the cabin under specific conditions<|>5)\n##\n(\"relationship\"<|>9KG<|>CABIN<|>The weight limit of 9kg applies to pets transported in the cabin<|>4)\n##\n(\"relationship\"<|>AUTHORIZATION<|>MINISTRY OF AGRICULTURE<|>Authorization is required from the Ministry of Agriculture to transport an animal<|>8)\n##\n(\"relationship\"<|>ANIMAL TESTS<|>AUTHORIZATION<|>Animal tests are part of the authorization process for transporting pets<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-5b1e31a2e0f0af8bffb3bd5032956bc7 b/cache/entity_extraction/chat-5b1e31a2e0f0af8bffb3bd5032956bc7 deleted file mode 100644 index 7ed72a2a18043b11ec832a0b379707bb9fe05c64..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-5b1e31a2e0f0af8bffb3bd5032956bc7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Health regulates the entry of animals.)\n##\n(\"entity\"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health is the authority responsible for approving the entry of animals into Israel.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is the airline that provides services for transporting animals in various classes of the aircraft.)\n##\n(\"entity\"<|>ANIMAL<|>SPECIAL ITEM<|>Animals such as dogs, cats, or exotic birds that are subject to specific transport regulations.)\n##\n(\"entity\"<|>VETERINARY SERVICES<|>ORGANIZATION<|>Veterinary Services at Ben Gurion Airport is responsible for issuing flight permits for transporting animals.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main airport in Israel where animals must be authorized for transport.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A document required to ensure the animal is healthy before transport.)\n##\n(\"entity\"<|>RABIES ANTIBODY TEST<|>REQUIRED DOCUMENT<|>A test required to confirm that the animal has been vaccinated against rabies.)\n##\n(\"entity\"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the category under which animals can be transported in the aircraft cabin or hold.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is the method of transporting animals that exceed certain weight limits.)\n##\n(\"entity\"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where animals may be transported with prior approval.)\n##\n(\"entity\"<|>ANIMAL WEIGHT<|>DIMENSION<|>The weight of the animal is a critical factor in determining the mode of transport.)\n##\n(\"entity\"<|>9 KG<|>WEIGHT<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin.)\n##\n(\"entity\"<|>100 KG<|>WEIGHT<|>Animals weighing more than 100 kg must be transported as registered cargo.)\n##\n(\"entity\"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Documents required for obtaining authorization to transport an animal to Israel.)\n##\n(\"entity\"<|>FLIGHT PERMIT<|>REQUIRED DOCUMENT<|>A permit issued by Veterinary Services allowing the transport of an animal.)\n##\n(\"relationship\"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health regulates the entry of animals into Israel<|>8)\n##\n(\"relationship\"<|>EL AL<|>ANIMAL<|>EL AL provides transport services for animals in various classes<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>BEN GURION AIRPORT<|>Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport<|>9)\n##\n(\"relationship\"<|>ANIMAL<|>BAGGAGE<|>Animals can be transported as baggage in the aircraft cabin or hold<|>6)\n##\n(\"relationship\"<|>ANIMAL<|>REGISTERED CARGO<|>Animals exceeding weight limits must be transported as registered cargo<|>6)\n##\n(\"relationship\"<|>ANIMAL<|>ANIMAL WEIGHT<|>The weight of the animal determines the mode of transport<|>8)\n##\n(\"relationship\"<|>9 KG<|>ANIMAL<|>Animals weighing up to 9 kg can be transported in the aircraft cabin<|>7)\n##\n(\"relationship\"<|>100 KG<|>ANIMAL<|>Animals weighing more than 100 kg must be transported as registered cargo<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>DOCUMENTS<|>Veterinary Services requires specific documents for animal transport authorization<|>8)\n##\n(\"relationship\"<|>DOCUMENTS<|>CERTIFICATE OF GOOD HEALTH<|>A certificate of good health is one of the required documents for transport<|>9)\n##\n(\"relationship\"<|>DOCUMENTS<|>RABIES ANTIBODY TEST<|>A rabies antibody test is another required document for transport<|>9)\n##\n(\"relationship\"<|>EL AL<|>BUSINESS CABIN<|>Animals can be transported in the Business cabin with prior approval from EL AL<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-6a6a0376629a3e6b6404c7545b8aaa7a b/cache/entity_extraction/chat-6a6a0376629a3e6b6404c7545b8aaa7a deleted file mode 100644 index 300d1e0d36c6e68f104c72200f5d9cf884d5b510..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-6a6a0376629a3e6b6404c7545b8aaa7a +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials such as hairspray are not allowed to be stored together with other items in baggage.)\n##\n(\"entity\"<|>SPARE LITHIUM BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>PROHIBITED ITEM<|>Electronic devices with removable lithium batteries must have the battery taken aboard the aircraft cabin, while the device can be checked.)\n##\n(\"entity\"<|>BATTERIES<|>RESTRICTED ITEM<|>Batteries must be protected from damage and short circuits and can be transported in the aircraft hold if they are not lithium-based.)\n##\n(\"entity\"<|>WATT-HOURS<|>MEASUREMENT UNIT<|>Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).)\n##\n(\"entity\"<|>LITHIUM-ION BATTERIES<|>RESTRICTED ITEM<|>Larger lithium-ion batteries (100-160 watt-hours) are limited to two batteries per passenger and must comply with specific regulations.)\n##\n(\"entity\"<|>BATTERY-POWERED DEVICES<|>SPECIAL ITEM<|>Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.)\n##\n(\"entity\"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids on flights.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific regulations regarding battery-powered mobility aids.)\n##\n(\"relationship\"<|>SPARE LITHIUM BATTERIES<|>ELECTRONIC DEVICES<|>Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>WATT-HOURS<|>The watt-hours rating of a battery is determined by its voltage and ampere hours, which is essential for understanding battery capacity.<|>7)\n##\n(\"relationship\"<|>LITHIUM-ION BATTERIES<|>SPARE LITHIUM BATTERIES<|>Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.<|>6)\n##\n(\"relationship\"<|>BATTERY-POWERED DEVICES<|>IATA REGULATIONS<|>Battery-powered devices must comply with IATA regulations for safe transport on flights.<|>5)\n##\n(\"relationship\"<|>BATTERY-POWERED DEVICES<|>EL AL<|>EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-6b8a1f9b951419cbf0111641a4789721 b/cache/entity_extraction/chat-6b8a1f9b951419cbf0111641a4789721 deleted file mode 100644 index 049f7b8ed08b19754c32535dc9145ddf2a24e262..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-6b8a1f9b951419cbf0111641a4789721 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment refers to items such as skis, bikes, and other sports gear that can be transported as checked baggage or cargo by airlines.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that offers standard services and amenities for passengers, excluding Lite fares.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a higher travel class that provides enhanced services and amenities compared to Economy Class.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class is a premium travel class that offers superior services and amenities for passengers.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division is a service that allows passengers to transport oversized or additional baggage separately from their standard allowance.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the measurements of baggage, typically expressed in length, width, and height.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the mass of baggage, which is a critical factor in determining baggage allowances and fees.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage.)\n##\n(\"entity\"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy Class.)\n##\n(\"entity\"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n(\"entity\"<|>70 USD<|>Fee Structure<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.)\n##\n(\"entity\"<|>150 USD<|>Fee Structure<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>US Dollars are the currency used for pricing and payment of baggage fees.)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an option for transporting sporting equipment that exceeds standard baggage allowances<|>7)\n##\n(\"relationship\"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are critical for determining whether sporting equipment can be transported as checked baggage<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key factor in determining the allowance and fees for transporting sporting equipment<|>9)\n##\n(\"relationship\"<|>277 CM<|>DIMENSIONS<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage<|>10)\n##\n(\"relationship\"<|>30 KG<|>WEIGHT<|>30 kg is the maximum weight limit for sports equipment in Economy Class<|>10)\n##\n(\"relationship\"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight limit for sports equipment in Business Class<|>10)\n##\n(\"relationship\"<|>70 USD<|>SPORTING EQUIPMENT<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco<|>8)\n##\n(\"relationship\"<|>150 USD<|>SPORTING EQUIPMENT<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America<|>8)\n##\n(\"relationship\"<|>US DOLLARS<|>70 USD<|>70 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n##\n(\"relationship\"<|>US DOLLARS<|>150 USD<|>150 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-7863cfcbd1b5ba616148edb345441e7c b/cache/entity_extraction/chat-7863cfcbd1b5ba616148edb345441e7c deleted file mode 100644 index d3e632032ad1d586a527faf3bb76a7e421d39432..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-7863cfcbd1b5ba616148edb345441e7c +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the items that passengers check in for their flight, which can be delayed, damaged, or lost.)\n##\n(\"entity\"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS DEPARTMENT<|>Service Location<|>The Baggage Claims Department processes claims related to lost or damaged baggage.)\n##\n(\"entity\"<|>DELAYED BAGGAGE<|>Restriction<|>Delayed baggage refers to baggage that has not arrived with the passenger and must be reported immediately after landing.)\n##\n(\"entity\"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status can be checked using a worldwide system by entering the lost baggage report number and last name.)\n##\n(\"entity\"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the passenger's address.)\n##\n(\"entity\"<|>CONTACT DETAILS<|>Required Document<|>Contact details include phone numbers and WhatsApp chat options for reporting baggage issues.)\n##\n(\"entity\"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a 10-character identifier used to check the status of a claim.)\n##\n(\"entity\"<|>BAGGAGE REPORT<|>Required Document<|>A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center manages issues related to baggage, including delays and damages<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and related claims<|>9)\n##\n(\"relationship\"<|>BAGGAGE SERVICE CENTER<|>BAGGAGE CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Baggage Claims Department for processing claims<|>7)\n##\n(\"relationship\"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>Delayed baggage must be reported to the Baggage Service Center for assistance<|>8)\n##\n(\"relationship\"<|>CLAIM STATUS<|>BAGGAGE SERVICE CENTER<|>The status of a claim can be checked through the Baggage Service Center's worldwide system<|>6)\n##\n(\"relationship\"<|>BAGGAGE<|>COURIER SERVICE<|>Retrieved delayed baggage is delivered to the passenger's address by the courier service<|>7)\n##\n(\"relationship\"<|>BAGGAGE<|>CONTACT DETAILS<|>Contact details are provided for passengers to report baggage issues<|>5)\n##\n(\"relationship\"<|>LOST BAGGAGE REPORT NUMBER<|>CLAIM STATUS<|>The lost baggage report number is required to check the status of a claim<|>8)\n##\n(\"relationship\"<|>BAGGAGE REPORT<|>DELAYED BAGGAGE<|>A baggage report is issued for delayed baggage at the airport<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-881e43c04708c146635b859e223dbd74 b/cache/entity_extraction/chat-881e43c04708c146635b859e223dbd74 deleted file mode 100644 index 52d78451db273122e0a098466f8f70ceb3b3d270..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-881e43c04708c146635b859e223dbd74 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the personal belongings that travelers take with them on a journey, which can be delayed, damaged, or lost during transit.)\n##\n(\"entity\"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board, providing assistance to travelers.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims for delayed or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE CLAIM AREA<|>Service Location<|>The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.)\n##\n(\"entity\"<|>DAMAGE REPORT<|>Required Document<|>A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.)\n##\n(\"entity\"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a unique identifier used to check the status of a claim regarding lost baggage.)\n##\n(\"entity\"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler.)\n##\n(\"entity\"<|>CLAIMS DEPARTMENT<|>Service Type<|>The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with issues related to their baggage, including delays and damages<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and addressing issues such as delays and damages<|>9)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE CLAIM AREA<|>Travelers report baggage issues in the baggage claim area, where they can receive assistance<|>7)\n##\n(\"relationship\"<|>BAGGAGE SERVICE CENTER<|>CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Claims Department to process claims related to baggage<|>6)\n##\n(\"relationship\"<|>BAGGAGE<|>DAMAGE REPORT<|>A damage report is issued when baggage is reported damaged, which is necessary for processing claims<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>LOST BAGGAGE REPORT NUMBER<|>The lost baggage report number is used to track claims related to lost baggage<|>7)\n##\n(\"relationship\"<|>BAGGAGE<|>COURIER SERVICE<|>The courier service delivers retrieved baggage to travelers after it has been delayed<|>8)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-9255f4fb8aa56fb7731e76ea72532d00 b/cache/entity_extraction/chat-9255f4fb8aa56fb7731e76ea72532d00 deleted file mode 100644 index 1fce2498800b27e8d41ba38886adbe459cad4a32..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-9255f4fb8aa56fb7731e76ea72532d00 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service provided by EL AL for transporting cargo, including pets, from Israel abroad.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country from which animals are transported abroad.)\n##\n(\"entity\"<|>JOHANNESBURG<|>AIRPORT<|>Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>LONDON<|>AIRPORT<|>London is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>HONG KONG<|>AIRPORT<|>Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions and weight limits.)\n##\n(\"entity\"<|>VETERINARIAN<|>SERVICE TYPE<|>Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.)\n##\n(\"entity\"<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.)\n##\n(\"entity\"<|>BILL OF LADING<|>RESTRICTION<|>A bill of lading is required for transporting animals as cargo, indicating the terms of transport.)\n##\n(\"entity\"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where pets may be transported under certain conditions.)\n##\n(\"entity\"<|>AIRCRAFT HOLD<|>CARGO<|>The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.)\n##\n(\"entity\"<|>PASSENGER AIRCRAFT CABIN<|>CARGO<|>The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.)\n##\n(\"relationship\"<|>EL AL CARGO STORE<|>ISRAEL<|>The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.<|>7)\n##\n(\"relationship\"<|>PET<|>ISRAEL<|>Pets are transported from Israel to other countries, requiring specific permits and conditions.<|>8)\n##\n(\"relationship\"<|>PET<|>BILL OF LADING<|>Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.<|>9)\n##\n(\"relationship\"<|>PET<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>An international certificate of good health is required for transporting pets abroad.<|>8)\n##\n(\"relationship\"<|>PET<|>VETERINARIAN<|>Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.<|>7)\n##\n(\"relationship\"<|>PET<|>BUSINESS CABIN<|>Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.<|>6)\n##\n(\"relationship\"<|>PET<|>AIRCRAFT HOLD<|>Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>8)\n##\n(\"relationship\"<|>PET<|>PASSENGER AIRCRAFT CABIN<|>Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.<|>8)\n##\n(\"relationship\"<|>JOHANNESBURG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Johannesburg.<|>5)\n##\n(\"relationship\"<|>LONDON<|>PET<|>Transporting pets in the aircraft cabin is not allowed to London.<|>5)\n##\n(\"relationship\"<|>HONG KONG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Hong Kong.<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country’s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-93cea499913cc5caf5771d906a7ec393 b/cache/entity_extraction/chat-93cea499913cc5caf5771d906a7ec393 deleted file mode 100644 index d5f334fe1263ea2850034eb81c6d98438fbfceb3..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-93cea499913cc5caf5771d906a7ec393 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo and requires specific documentation for pet travel.)\n##\n(\"entity\"<|>CDC<|>ORGANIZATION<|>The CDC sets regulations regarding the transportation of dogs to the US and provides guidelines that must be followed by passengers.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is defined as a high-risk country for transporting dogs according to the CDC.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of pets as cargo and requires specific documentation for this service.)\n##\n(\"entity\"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals, especially when they weigh more than 9 kg.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is necessary for transporting pets to ensure they are fit for travel.)\n##\n(\"entity\"<|>TRANSPORT AUTHORIZATION<|>REQUIRED DOCUMENT<|>Transport authorization from the destination country authorities is required for transporting pets.)\n##\n(\"entity\"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed to transport animals out of the country.)\n##\n(\"entity\"<|>MEASUREMENTS OF TRANSPORT CAGE<|>DIMENSION<|>The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.)\n##\n(\"relationship\"<|>EL AL<|>CDC<|>EL AL must comply with CDC regulations for transporting dogs to the US<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL is responsible for handling pet transportation services<|>7)\n##\n(\"relationship\"<|>CARGO DIVISION<|>BILL OF LADING<|>The Cargo Division requires a bill of lading for transporting animals over 9 kg<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>CERTIFICATE OF GOOD HEALTH<|>The Cargo Division requires a certificate of good health for pets being transported<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>TRANSPORT AUTHORIZATION<|>The Cargo Division requires transport authorization from destination authorities for pet transport<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EXPORT LICENSE<|>The Cargo Division requires an export license for transporting animals<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>MEASUREMENTS OF TRANSPORT CAGE<|>The Cargo Division requires the measurements of the transport cage for compliance<|>6)\n##\n(\"relationship\"<|>ISRAEL<|>CDC<|>Israel is classified as a high-risk country by the CDC for transporting dogs<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-a474e811290b5cd6e8cd010201a4d8a5 b/cache/entity_extraction/chat-a474e811290b5cd6e8cd010201a4d8a5 deleted file mode 100644 index d1847f395b7b0fa447982b8d59266e85f4de3fac..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-a474e811290b5cd6e8cd010201a4d8a5 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n(\"entity\"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat in front of the passenger to maximize cabin space.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n(\"entity\"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n(\"entity\"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status may affect the eligibility of passengers to bring carry-on baggage aboard the aircraft.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n(\"relationship\"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat in front of the passenger.<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n(\"relationship\"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Matmid Frequent Flyer Club status may influence the carry-on baggage eligibility for passengers.<|>5)\n##\n(\"relationship\"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a critical factor in determining the eligibility of carry-on baggage for boarding.<|>8)\n##\n(\"relationship\"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are essential for determining the eligibility of carry-on baggage for boarding.<|>8)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-a9cd81d095821e59ab677b0135e91547 b/cache/entity_extraction/chat-a9cd81d095821e59ab677b0135e91547 deleted file mode 100644 index cc5599d82aa6ef7712af16a940837371518c1104..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-a9cd81d095821e59ab677b0135e91547 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, subject to size and weight restrictions.)\n##\n(\"entity\"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Charges applied when baggage exceeds the permitted size and weight dimensions for checked baggage.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>US dollars are the currency used for displaying prices related to baggage fees and charges.)\n##\n(\"entity\"<|>LOCAL CURRENCY<|>Currency<|>Local currency refers to the currency accepted at specific airports for payment of fees, which may vary by location.)\n##\n(\"entity\"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment includes one pair of skis, one pair of poles, and one pair of ski boots, which can be transported under specific conditions.)\n##\n(\"entity\"<|>SNOWBOARD EQUIPMENT<|>Special Item<|>Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.)\n##\n(\"entity\"<|>BICYCLE<|>Special Item<|>A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.)\n##\n(\"entity\"<|>LITE FARE TICKET<|>Travel Class<|>A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that has specific regulations regarding the transport of baggage, including special items like ski equipment and bicycles.)\n##\n(\"entity\"<|>CARGO DIVISION<|>Service Location<|>The Cargo Division of EL AL handles special requests and approvals for transporting oversized or special items.)\n##\n(\"entity\"<|>EL AL CALL CENTER<|>Service Location<|>The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.)\n##\n(\"entity\"<|>PERMITTED DIMENSIONS<|>Restriction<|>The maximum size and weight limits that checked baggage and special items must adhere to for transport.)\n##\n(\"entity\"<|>PACKING REGULATIONS<|>Policy<|>Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions<|>9)\n##\n(\"relationship\"<|>US DOLLARS<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges are displayed in US dollars<|>7)\n##\n(\"relationship\"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE CHARGES<|>At some airports, payment for excess baggage charges is allowed only in local currency<|>5)\n##\n(\"relationship\"<|>SKI EQUIPMENT<|>CHECKED BAGGAGE<|>Ski equipment can be included in checked baggage under specific conditions<|>8)\n##\n(\"relationship\"<|>SNOWBOARD EQUIPMENT<|>CHECKED BAGGAGE<|>Snowboard equipment can be included in checked baggage under specific conditions<|>8)\n##\n(\"relationship\"<|>BICYCLE<|>CHECKED BAGGAGE<|>A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions<|>8)\n##\n(\"relationship\"<|>LITE FARE TICKET<|>SKI EQUIPMENT<|>Ski equipment transport does not apply on LITE fare tickets<|>6)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL manages special requests for transporting oversized items<|>7)\n##\n(\"relationship\"<|>BICYCLE<|>CARGO DIVISION<|>Transport of bicycles requires pre-approval from the Cargo Division<|>6)\n##\n(\"relationship\"<|>BICYCLE<|>EL AL CALL CENTER<|>Pre-approval for transporting bicycles must be obtained from the EL AL call center<|>6)\n##\n(\"relationship\"<|>PERMITTED DIMENSIONS<|>CHECKED BAGGAGE<|>Checked baggage must meet the permitted dimensions for transport<|>9)\n##\n(\"relationship\"<|>PACKING REGULATIONS<|>BICYCLE<|>Bicycles must be packed according to specific packing regulations to be transported<|>8)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-ad9b8dd2ab2ed3cbb822c3536b19cdb4 b/cache/entity_extraction/chat-ad9b8dd2ab2ed3cbb822c3536b19cdb4 deleted file mode 100644 index 3434e06e015200f01f87ba98e39e119411396e0d..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-ad9b8dd2ab2ed3cbb822c3536b19cdb4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo or baggage.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the airport in Israel where animals are released after transport.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of animals as cargo.)\n##\n(\"entity\"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department determines the conditions under which animals can be transported.)\n##\n(\"entity\"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals as cargo.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Veterinary Services Department is required to transport a pet as cargo.)\n##\n(\"entity\"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed for transporting animals internationally.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is required for pets being transported.)\n##\n(\"entity\"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>REQUIRED DOCUMENT<|>Laboratory results for rabies antibodies are necessary for transporting pets.)\n##\n(\"entity\"<|>COSTS OF TRANSPORTING ANIMALS<|>POLICY<|>The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.)\n##\n(\"entity\"<|>ANIMALS WEIGHING UP TO 9 KG<|>WEIGHT CATEGORY<|>Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>WEIGHT CATEGORY<|>Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>WEIGHT CATEGORY<|>Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING MORE THAN 100 KG<|>WEIGHT CATEGORY<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>EL AL's Cargo Division is responsible for handling the transportation of animals as cargo<|>8)\n##\n(\"relationship\"<|>BEN GURION AIRPORT<|>EL AL<|>Animals transported by EL AL are released at Ben Gurion Airport<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>AUTHORIZATION<|>Authorization from the Veterinary Services Department is required for transporting pets as cargo<|>9)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>BILL OF LADING<|>The Veterinary Services Department determines if a bill of lading is needed for transporting animals<|>6)\n##\n(\"relationship\"<|>EXPORT LICENSE<|>VETERINARY SERVICES DEPARTMENT<|>An export license is required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>CERTIFICATE OF GOOD HEALTH<|>VETERINARY SERVICES DEPARTMENT<|>A certificate of good health is required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>VETERINARY SERVICES DEPARTMENT<|>Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING UP TO 9 KG<|>The cost of transporting animals weighing up to 9 kg is $100 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>The cost of transporting animals weighing between 9 and 50 kg is $200 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>The cost of transporting animals weighing between 50 and 100 kg is $400 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING MORE THAN 100 KG<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division<|>9)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t​Europe and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-b6d86ff9b8bc9498c354cd57de87b38a b/cache/entity_extraction/chat-b6d86ff9b8bc9498c354cd57de87b38a deleted file mode 100644 index e059c7f70bdd76cb9bc57a3344da9988347959bc..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-b6d86ff9b8bc9498c354cd57de87b38a +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n(\"entity\"<|>WHISKEY<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>GELS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>COSMETICS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>BABY FOOD<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>PRESCRIPTION MEDICATIONS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Country from which flights may have specific conditions regarding carrying liquids in carry-on bags.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>WHISKEY<|>Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>GELS<|>Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>COSMETICS<|>Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>BABY FOOD<|>Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>PRESCRIPTION MEDICATIONS<|>Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>The restrictions on liquids in carry-on bags apply to flights departing from Israel.<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-c20cd81bbe3d597534b6ed123c68db4e b/cache/entity_extraction/chat-c20cd81bbe3d597534b6ed123c68db4e deleted file mode 100644 index 149162de44c4bd84c45330b4d219602fbd6c0d80..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-c20cd81bbe3d597534b6ed123c68db4e +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft.)\n##\n(\"entity\"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may contain batteries that are classified as dangerous goods and must be handled according to airline regulations.)\n##\n(\"entity\"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may include batteries and other components that are classified as dangerous goods.)\n##\n(\"entity\"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their dangerous nature.)\n##\n(\"entity\"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosive substances like acids and wet cell batteries are prohibited on aircraft.)\n##\n(\"entity\"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are prohibited on aircraft.)\n##\n(\"entity\"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to safety concerns.)\n##\n(\"entity\"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are prohibited on aircraft for safety reasons.)\n##\n(\"entity\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can harm people or the environment.)\n##\n(\"entity\"<|>SPARE BATTERIES<|>ALLOWANCE<|>Spare batteries must be protected from damage and short circuit when taken aboard an aircraft.)\n##\n(\"entity\"<|>DRY CELL ALKALINE BATTERIES<|>ALLOWANCE<|>Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.)\n##\n(\"entity\"<|>LITHIUM-ION BATTERIES<|>ALLOWANCE<|>Lithium-ion batteries, including consumer-grade types, are allowed aboard aircraft with specific watt-hour limits.)\n##\n(\"entity\"<|>PORTABLE CHARGERS<|>ALLOWANCE<|>Portable chargers are considered batteries and may be taken aboard aircraft under certain conditions.)\n##\n(\"relationship\"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries that are classified as dangerous goods and must be handled accordingly<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may include batteries that are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Both corrosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Both explosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Both radioactive materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>Both high-strength magnetic materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>SPARE BATTERIES<|>LITHIUM-ION BATTERIES<|>Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions<|>6)\n##\n(\"relationship\"<|>DRY CELL ALKALINE BATTERIES<|>LITHIUM-ION BATTERIES<|>Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-c3e782473097430d8d0b180f3b2bc034 b/cache/entity_extraction/chat-c3e782473097430d8d0b180f3b2bc034 deleted file mode 100644 index 7e2bc005b3c6be7a60978b9584a90c7a51f2298b..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-c3e782473097430d8d0b180f3b2bc034 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGGAGE TAG<|>LABEL TYPE<|>A baggage tag is a label attached to luggage that provides information about the owner and destination of the baggage.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS DEPARTMENT<|>SERVICE LOCATION<|>The Baggage Claims Department is responsible for handling reports of damaged baggage and processing claims.)\n##\n(\"entity\"<|>EL AL ISRAEL AIRLINES LTD.<|>AIRLINE<|>EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines.)\n##\n(\"entity\"<|>DIGITAL CONTACT FORM<|>REQUIRED DOCUMENT<|>The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.)\n##\n(\"entity\"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud is a store that specializes in baggage and outdoor equipment.)\n##\n(\"entity\"<|>WE SHOES<|>SERVICE TYPE<|>WeShoes is a store that sells shoes and may also provide related services.)\n##\n(\"entity\"<|>MEMSI TOURING<|>SERVICE TYPE<|>Memsi Touring is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon is a service provider that offers pickup and delivery services for baggage.)\n##\n(\"entity\"<|>SHIN TIK<|>SERVICE TYPE<|>Shin Tik is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>TREK MARKET<|>SERVICE TYPE<|>Trek Market is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>KIRYAT ONO<|>GEO<|>Kiryat Ono is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>RAMAT GAN<|>GEO<|>Ramat Gan is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>GEVATAIM<|>GEO<|>Gevataim is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>BAT YAM<|>GEO<|>Bat Yam is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>HOLON<|>GEO<|>Holon is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>PETACH TIKVA<|>GEO<|>Petach Tikva is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"relationship\"<|>BAGGAGE TAG<|>BAGGAGE CLAIMS DEPARTMENT<|>The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.<|>8)\n##\n(\"relationship\"<|>BAGGAGE CLAIMS DEPARTMENT<|>EL AL ISRAEL AIRLINES LTD.<|>The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.<|>9)\n##\n(\"relationship\"<|>EL AL ISRAEL AIRLINES LTD.<|>BEN GURION AIRPORT<|>EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.<|>9)\n##\n(\"relationship\"<|>DIGITAL CONTACT FORM<|>BAGGAGE CLAIMS DEPARTMENT<|>The Digital Contact Form is used to submit claims to the Baggage Claims Department.<|>7)\n##\n(\"relationship\"<|>MAKOR HAZIUD<|>BAGGAGE CLAIMS DEPARTMENT<|>Makor Haziud may provide equipment that is relevant for baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>WE SHOES<|>BAGGAGE CLAIMS DEPARTMENT<|>WeShoes may provide services related to baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>MEMSI TOURING<|>BAGGAGE CLAIMS DEPARTMENT<|>Memsi Touring may offer services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>ARTY RIMON<|>BAGGAGE CLAIMS DEPARTMENT<|>ARTY Rimon provides pickup and delivery services that may relate to baggage claims.<|>5)\n##\n(\"relationship\"<|>SHIN TIK<|>BAGGAGE CLAIMS DEPARTMENT<|>Shin Tik may provide services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>TREK MARKET<|>BAGGAGE CLAIMS DEPARTMENT<|>Trek Market may offer services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>KIRYAT ONO<|>BAGGAGE CLAIMS DEPARTMENT<|>Kiryat Ono has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>RAMAT GAN<|>BAGGAGE CLAIMS DEPARTMENT<|>Ramat Gan has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>GEVATAIM<|>BAGGAGE CLAIMS DEPARTMENT<|>Gevataim has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>BAT YAM<|>BAGGAGE CLAIMS DEPARTMENT<|>Bat Yam has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>HOLON<|>BAGGAGE CLAIMS DEPARTMENT<|>Holon has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>PETACH TIKVA<|>BAGGAGE CLAIMS DEPARTMENT<|>Petach Tikva has stores that may assist with baggage claims and services.<|>3)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon – Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-cb17105dee632c32fad222850eb85eb0 b/cache/entity_extraction/chat-cb17105dee632c32fad222850eb85eb0 deleted file mode 100644 index d4466664da97f0afe531028db51fb179301e4276..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-cb17105dee632c32fad222850eb85eb0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAG<|>Baggage Type<|>A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.)\n##\n(\"entity\"<|>PERSONAL BAG<|>Baggage Type<|>A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.)\n##\n(\"entity\"<|>CARRY-ON BAG<|>Baggage Type<|>A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>El Al is an airline that has specific baggage policies regarding carry-on and personal bags.)\n##\n(\"entity\"<|>56 CM<|>Linear Dimension<|>The maximum length for a carry-on bag on El Al flights is 56 cm.)\n##\n(\"entity\"<|>45 CM<|>Linear Dimension<|>The maximum width for a carry-on bag on El Al flights is 45 cm.)\n##\n(\"entity\"<|>25 CM<|>Linear Dimension<|>The maximum depth for a carry-on bag on El Al flights is 25 cm.)\n##\n(\"entity\"<|>18X38X30 CM<|>Linear Dimension<|>The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.)\n##\n(\"entity\"<|>115 CM<|>Linear Dimension<|>The total maximum dimension for a carry-on bag on El Al flights is 115 cm.)\n##\n(\"entity\"<|>20 KG<|>Weight Category<|>The combined weight limit for bags is not to exceed 20 kg.)\n##\n(\"entity\"<|>16 KG<|>Weight Category<|>The maximum weight limit for one bag is 16 kg.)\n##\n(\"entity\"<|>DUTY-FREE ITEMS<|>Special Item<|>Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.)\n##\n(\"entity\"<|>OVERSIZED ITEMS<|>Special Item<|>Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.)\n##\n(\"entity\"<|>CHECK-IN COUNTER<|>Service Location<|>The check-in counter is where passengers can check in their luggage and obtain boarding passes.)\n##\n(\"entity\"<|>EMERGENCY EXIT ROW<|>Cabin Section<|>The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.)\n##\n(\"entity\"<|>SERVICE CENTER<|>Service Location<|>El Al's service center is where passengers can coordinate the transport of unusual items.)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>EL AL<|>El Al has specific policies regarding the dimensions and weight limits for carry-on bags<|>9)\n##\n(\"relationship\"<|>PERSONAL BAG<|>EL AL<|>El Al allows passengers to bring a personal bag on board, subject to size restrictions<|>9)\n##\n(\"relationship\"<|>BAG<|>CARRY-ON BAG<|>A carry-on bag is a type of bag that must meet specific weight and dimension limits<|>8)\n##\n(\"relationship\"<|>BAG<|>PERSONAL BAG<|>A personal bag is a specific type of bag that passengers can bring on board<|>8)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>20 KG<|>The combined weight limit for carry-on bags is 20 kg<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>16 KG<|>The maximum weight limit for one carry-on bag is 16 kg<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>56 CM<|>The maximum length for a carry-on bag is 56 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>45 CM<|>The maximum width for a carry-on bag is 45 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>25 CM<|>The maximum depth for a carry-on bag is 25 cm<|>7)\n##\n(\"relationship\"<|>PERSONAL BAG<|>18X38X30 CM<|>The maximum dimensions for a personal bag are 18x38x30 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>115 CM<|>The total maximum dimension for a carry-on bag is 115 cm<|>7)\n##\n(\"relationship\"<|>DUTY-FREE ITEMS<|>BAG<|>Duty-free items are included in the baggage allowance but do not count towards the limit<|>6)\n##\n(\"relationship\"<|>OVERSIZED ITEMS<|>CARRY-ON BAG<|>Oversized items may require special arrangements for transport in the cabin<|>5)\n##\n(\"relationship\"<|>CHECK-IN COUNTER<|>EL AL<|>Passengers must check in at El Al's check-in counters for their flights<|>8)\n##\n(\"relationship\"<|>EMERGENCY EXIT ROW<|>CARRY-ON BAG<|>Passengers in the emergency exit row may store bags in overhead compartments<|>6)\n##\n(\"relationship\"<|>SERVICE CENTER<|>OVERSIZED ITEMS<|>Passengers must contact the service center for approval to carry oversized items<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-d2d927ed31d04247f35090c484d22fb6 b/cache/entity_extraction/chat-d2d927ed31d04247f35090c484d22fb6 deleted file mode 100644 index 69c05ece5d303e749b70fffbb3a57f137dc7fc5b..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-d2d927ed31d04247f35090c484d22fb6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when boarding a flight.)\n##\n(\"entity\"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may be considered dangerous goods due to their lithium batteries and require special handling.)\n##\n(\"entity\"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may contain batteries or other components classified as dangerous goods.)\n##\n(\"entity\"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their flammability and potential hazards.)\n##\n(\"entity\"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosives like acids and wet cell batteries are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are forbidden on aircraft for safety reasons.)\n##\n(\"entity\"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to their potential to ignite.)\n##\n(\"entity\"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are forbidden on aircraft due to safety and health risks.)\n##\n(\"entity\"<|>BRIEFCASES WITH ALARM DEVICES<|>PROHIBITED ITEM<|>Briefcases with installed alarm devices are prohibited on aircraft for security reasons.)\n##\n(\"entity\"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials like hydrogen peroxide are prohibited on aircraft due to their reactive nature.)\n##\n(\"entity\"<|>POISONS<|>PROHIBITED ITEM<|>Poisons and infectious substances are forbidden on aircraft due to their hazardous effects on health.)\n##\n(\"entity\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can interfere with navigation and safety equipment.)\n##\n(\"relationship\"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries, which are classified as dangerous goods and require special handling<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may contain batteries, which are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Corrosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Explosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Radioactive materials and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>BRIEFCASES WITH ALARM DEVICES<|>FLAMMABLE LIQUIDS<|>Both briefcases with alarm devices and flammable liquids are prohibited on aircraft<|>6)\n##\n(\"relationship\"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Oxidizing materials and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n(\"relationship\"<|>POISONS<|>FLAMMABLE LIQUIDS<|>Poisons and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n(\"relationship\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>High-strength magnetic materials and flammable liquids are both prohibited on aircraft<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-d34f67c11ce4ea566ce98e209a7c7cd0 b/cache/entity_extraction/chat-d34f67c11ce4ea566ce98e209a7c7cd0 deleted file mode 100644 index e15735c1351a4617dc786f11b9fbcd7ae1a757a8..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-d34f67c11ce4ea566ce98e209a7c7cd0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the suitcases and items that passengers check in for their flights, which can be lost, damaged, or delayed.)\n##\n(\"entity\"<|>EL AL ISRAEL AIRLINES<|>Airline<|>EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.)\n##\n(\"entity\"<|>FLIGHT TICKETS<|>Required Document<|>Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.)\n##\n(\"entity\"<|>BOARDING PASSES<|>Required Document<|>Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE TAGS<|>Required Document<|>Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.)\n##\n(\"entity\"<|>LOST OR DAMAGED BAGGAGE REPORT<|>Required Document<|>A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.)\n##\n(\"entity\"<|>RECEIPTS<|>Required Document<|>Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.)\n##\n(\"entity\"<|>FRAGILE ITEMS<|>Prohibited Item<|>Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>PERISHABLE ITEMS<|>Prohibited Item<|>Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>VALUABLE ITEMS<|>Valuable Item<|>Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>INTERNATIONAL CONVENTIONS<|>Policy<|>International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.)\n##\n(\"entity\"<|>CONTRACT OF CARRIAGE<|>Policy<|>The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.<|>9)\n##\n(\"relationship\"<|>FLIGHT TICKETS<|>BAGGAGE<|>Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>BOARDING PASSES<|>BAGGAGE<|>Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>BAGGAGE TAGS<|>BAGGAGE<|>Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>LOST OR DAMAGED BAGGAGE REPORT<|>BAGGAGE<|>A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>RECEIPTS<|>BAGGAGE<|>Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>FRAGILE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>PERISHABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>VALUABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>INTERNATIONAL CONVENTIONS<|>EL AL ISRAEL AIRLINES<|>International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.<|>6)\n##\n(\"relationship\"<|>CONTRACT OF CARRIAGE<|>EL AL ISRAEL AIRLINES<|>The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-d4b93fe33023cfd7eb42e1b3e95d3c4e b/cache/entity_extraction/chat-d4b93fe33023cfd7eb42e1b3e95d3c4e deleted file mode 100644 index df0ac94ad2e5f4e8a0898f55be5b0014b729d72e..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-d4b93fe33023cfd7eb42e1b3e95d3c4e +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for traveling with battery-powered mobility aids and hazardous materials.)\n##\n(\"entity\"<|>BATTERY-POWERED MOBILITY AIDS<|>SPECIAL ITEM<|>Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.)\n##\n(\"entity\"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights.)\n##\n(\"entity\"<|>FLIGHT-APPROVED BATTERIES<|>RESTRICTED ITEM<|>Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.)\n##\n(\"entity\"<|>HAZARDOUS MATERIALS<|>PROHIBITED ITEM<|>Hazardous materials include items like dry ice that require special handling and declaration when traveling.)\n##\n(\"entity\"<|>DECLARATION FORM<|>REQUIRED DOCUMENT<|>A Declaration Form is required for traveling with hazardous materials on EL AL flights.)\n##\n(\"relationship\"<|>EL AL<|>BATTERY-POWERED MOBILITY AIDS<|>EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights<|>8)\n##\n(\"relationship\"<|>BATTERY-POWERED MOBILITY AIDS<|>IATA REGULATIONS<|>Battery-powered mobility aids must comply with IATA regulations for air travel<|>7)\n##\n(\"relationship\"<|>EL AL<|>HAZARDOUS MATERIALS<|>EL AL requires advance notice and a Declaration Form for traveling with hazardous materials<|>8)\n##\n(\"relationship\"<|>HAZARDOUS MATERIALS<|>DECLARATION FORM<|>A Declaration Form is necessary for traveling with hazardous materials on EL AL flights<|>9)\n##\n(\"relationship\"<|>FLIGHT-APPROVED BATTERIES<|>BATTERY-POWERED MOBILITY AIDS<|>Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-e4b41cb90e8b89c87ac02b48c9e3a84b b/cache/entity_extraction/chat-e4b41cb90e8b89c87ac02b48c9e3a84b deleted file mode 100644 index 31ab817814ce93fe6b582cbcd60aaae0fb5dd1de..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-e4b41cb90e8b89c87ac02b48c9e3a84b +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>LITHIUM-ION BATTERIES<|>DANGEROUS GOOD<|>Lithium-ion batteries are rechargeable batteries commonly used in portable electronic devices, with specific size and watt-hour limitations for air travel.)\n##\n(\"entity\"<|>LITHIUM METAL BATTERIES<|>DANGEROUS GOOD<|>Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.)\n##\n(\"entity\"<|>NON-SPILLABLE WET BATTERIES<|>DANGEROUS GOOD<|>Non-spillable wet batteries are limited to 12 volts and 100 watt-hours, designed to prevent leakage of electrolyte.)\n##\n(\"entity\"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage and must be protected when carried in the cabin.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>SPECIAL ITEM<|>Electronic devices with lithium batteries that cannot be removed must be stored in the aircraft hold under specific conditions.)\n##\n(\"entity\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are considered lithium batteries and are prohibited in checked baggage.)\n##\n(\"entity\"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have separate exceptions regarding the transport of batteries.)\n##\n(\"entity\"<|>CARRY-ON<|>ALLOWANCE<|>Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.)\n##\n(\"relationship\"<|>LITHIUM-ION BATTERIES<|>CARRY-ON<|>Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits<|>8)\n##\n(\"relationship\"<|>LITHIUM METAL BATTERIES<|>CARRY-ON<|>Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions<|>8)\n##\n(\"relationship\"<|>NON-SPILLABLE WET BATTERIES<|>CARRY-ON<|>Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits<|>8)\n##\n(\"relationship\"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction<|>9)\n##\n(\"relationship\"<|>ELECTRONIC DEVICES<|>CARRY-ON<|>Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement<|>7)\n##\n(\"relationship\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are classified as lithium batteries and are prohibited in checked baggage<|>9)\n##\n(\"relationship\"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have specific exemptions regarding battery transport, differentiating them from other items<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-e583849b35e0974c034840beefe5e6d7 b/cache/entity_extraction/chat-e583849b35e0974c034840beefe5e6d7 deleted file mode 100644 index 19f559de2987df7c0614ed72f8e64eb63ed4f9f6..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-e583849b35e0974c034840beefe5e6d7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to the luggage that passengers check in at the airport, which is transported in the cargo hold of the aircraft.)\n##\n(\"entity\"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the standard dimensions set by airlines, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit established by airlines, often resulting in extra charges.)\n##\n(\"entity\"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>El Al is an airline known for its baggage policies, which are similar to those of Sundor.)\n##\n(\"entity\"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service where passengers can view and modify their flight details, including baggage allowances.)\n##\n(\"entity\"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger's reservation and includes details about baggage allowances.)\n##\n(\"entity\"<|>DIMENSIONS<|>DIMENSION<|>Dimensions refer to the measurements of baggage, which determine whether it is classified as standard, oversized, or overweight.)\n##\n(\"entity\"<|>WEIGHT<|>WEIGHT<|>Weight refers to the heaviness of baggage, which is a critical factor in determining if it is overweight.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>SUNDOR<|>Sundor has specific policies regarding checked baggage allowances for passengers<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EL AL<|>El Al's baggage policy is similar to that of Sundor, affecting checked baggage allowances<|>7)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling oversized baggage<|>6)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling overweight baggage<|>6)\n##\n(\"relationship\"<|>MANAGE YOUR BOOKING<|>FLIGHT TICKET<|>The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances<|>8)\n##\n(\"relationship\"<|>DIMENSIONS<|>OVERSIZED BAGGAGE<|>Oversized baggage is defined by exceeding authorized dimensions<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>OVERWEIGHT BAGGAGE<|>Overweight baggage is defined by exceeding the weight limit set by the airline<|>9)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>OVERWEIGHT BAGGAGE<|>Both oversized and overweight baggage require special handling and may incur additional fees<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-ed274a0415d425754de090bc2a188aaf b/cache/entity_extraction/chat-ed274a0415d425754de090bc2a188aaf deleted file mode 100644 index ea1598be403f0cee5a7f1fbae06ed5eacf4ee20a..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-ed274a0415d425754de090bc2a188aaf +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets, including restrictions on certain breeds and weight limits.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from the weight limit for transporting pets in the cabin of the aircraft.)\n##\n(\"entity\"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the cabin or as checked baggage under specific conditions.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to animals that must be transported in the luggage compartment of the aircraft in certain instances, such as large animals.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo refers to animals that may be transported by the Cargo Division, especially for extra-large animals or those flying unaccompanied.)\n##\n(\"entity\"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg, except for service dogs.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>EL AL<|>The Ministry of Agriculture oversees the transport of pets, which includes regulations that EL AL must follow for pet transportation<|>7)\n##\n(\"relationship\"<|>EL AL<|>SERVICE DOG<|>EL AL allows service dogs to be transported without the weight limit that applies to other pets<|>8)\n##\n(\"relationship\"<|>EL AL<|>DANGEROUS DOG<|>EL AL has a policy that prohibits the transportation of dangerous dogs as defined by Israeli law<|>9)\n##\n(\"relationship\"<|>EL AL<|>PET<|>EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport<|>8)\n##\n(\"relationship\"<|>PET<|>CHECKED BAGGAGE<|>Pets can be transported as checked baggage under certain conditions, such as size and weight<|>6)\n##\n(\"relationship\"<|>PET<|>REGISTERED CARGO<|>Pets may also be transported as registered cargo, especially if they are large or unaccompanied<|>6)\n##\n(\"relationship\"<|>9KG<|>PET<|>The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-efce0abc4745f243ae88f6e38b847700 b/cache/entity_extraction/chat-efce0abc4745f243ae88f6e38b847700 deleted file mode 100644 index 221ff431910a29bde27ea6a528c251cc8960fb07..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-efce0abc4745f243ae88f6e38b847700 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon provides pickup and delivery services for luggage and bags in various locations.)\n##\n(\"entity\"<|>CARGO TIKIM VE MIZVADOT<|>SERVICE TYPE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.)\n##\n(\"entity\"<|>MOKA<|>SERVICE LOCATION<|>Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.)\n##\n(\"entity\"<|>RIMON MIZVADOT VE TIKIM<|>SERVICE TYPE<|>Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.)\n##\n(\"entity\"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud specializes in baggage and outdoor equipment located in Nes Ziona.)\n##\n(\"entity\"<|>GALGAL YAZIV<|>SERVICE TYPE<|>Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.)\n##\n(\"entity\"<|>HAGALGAL<|>SERVICE TYPE<|>Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.)\n##\n(\"entity\"<|>BUGABOO<|>MATERIAL TYPE<|>Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.)\n##\n(\"entity\"<|>DAMAGE TO WHEELCHAIRS<|>RESTRICTION<|>Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers.)\n##\n(\"entity\"<|>IMPORTANT TO KNOW<|>POLICY<|>Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.)\n##\n(\"entity\"<|>DELAY IN RECEIVING BAGGAGE<|>POLICY<|>Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.)\n##\n(\"relationship\"<|>ARTY RIMON<|>CARGO TIKIM VE MIZVADOT<|>Both provide services related to luggage and bags, indicating a potential partnership or competition<|>5)\n##\n(\"relationship\"<|>ARTY RIMON<|>MOKA<|>Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship<|>8)\n##\n(\"relationship\"<|>RIMON MIZVADOT VE TIKIM<|>ARTY RIMON<|>Both provide similar services in different locations, indicating a competitive relationship<|>5)\n##\n(\"relationship\"<|>MAKOR HAZIUD<|>ARTY RIMON<|>Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon<|>4)\n##\n(\"relationship\"<|>GALGAL YAZIV<|>DAMAGE TO WHEELCHAIRS<|>Galgal Yaziv addresses damage to powered mobility scooters, which relates to the restriction on damaged wheelchairs<|>6)\n##\n(\"relationship\"<|>HAGALGAL<|>ARTY RIMON<|>Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon<|>4)\n##\n(\"relationship\"<|>BUGABOO<|>HAGALGAL<|>Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in<|>5)\n##\n(\"relationship\"<|>IMPORTANT TO KNOW<|>ARTY RIMON<|>The policy regarding baggage damage is relevant to the services provided by ARTY Rimon<|>7)\n##\n(\"relationship\"<|>DELAY IN RECEIVING BAGGAGE<|>IMPORTANT TO KNOW<|>The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers<|>7)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Shlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-f42e8fe189caf8e2b8f5beff4b8a6410 b/cache/entity_extraction/chat-f42e8fe189caf8e2b8f5beff4b8a6410 deleted file mode 100644 index d748edc57d28d1062f63e008b4312ebb42a44448..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-f42e8fe189caf8e2b8f5beff4b8a6410 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin by the passenger.)\n##\n(\"entity\"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the airline's standard size limits, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which may result in extra charges.)\n##\n(\"entity\"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that shares similar baggage policies with Sundor, particularly regarding checked baggage allowances.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>TRAVEL CLASS<|>Economy class is a travel class offered by airlines, typically providing basic services and lower fares compared to higher classes.)\n##\n(\"entity\"<|>LITE SERVICE<|>SERVICE TYPE<|>Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.)\n##\n(\"entity\"<|>CLASSIC SERVICE<|>SERVICE TYPE<|>Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.)\n##\n(\"entity\"<|>FLEX SERVICE<|>SERVICE TYPE<|>Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n(\"entity\"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service provided by airlines that allows passengers to view and modify their flight details, including baggage options.)\n##\n(\"entity\"<|>ADDITIONAL PIECES OF BAGGAGE<|>ALLOWANCE<|>Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.)\n##\n(\"entity\"<|>$90<|>FEE STRUCTURE<|>The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.)\n##\n(\"entity\"<|>23 KG<|>WEIGHT<|>23 kg is the weight limit for each piece of checked baggage included in the ticket price for certain service types offered by EL AL.)\n##\n(\"entity\"<|>THREE HOURS<|>TIME PERIOD<|>Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.)\n##\n(\"entity\"<|>EUROPE AND MIDDLE EAST<|>ROUTE TYPE<|>Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.)\n##\n(\"entity\"<|>NORTH AMERICA<|>ROUTE TYPE<|>North America is another destination served by EL AL, with its own baggage policies.)\n##\n(\"relationship\"<|>SUNDOR<|>EL AL<|>Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees<|>7)\n##\n(\"relationship\"<|>LITE SERVICE<|>BAGGAGE ALLOWANCE<|>Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering<|>8)\n##\n(\"relationship\"<|>CLASSIC SERVICE<|>BAGGAGE ALLOWANCE<|>Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n(\"relationship\"<|>FLEX SERVICE<|>BAGGAGE ALLOWANCE<|>Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n(\"relationship\"<|>ADDITIONAL PIECES OF BAGGAGE<|>BAGGAGE ALLOWANCE<|>Additional pieces of baggage can be checked in for a fee, which varies depending on the service type<|>6)\n##\n(\"relationship\"<|>MANAGE YOUR BOOKING<|>ADDITIONAL PIECES OF BAGGAGE<|>Passengers can add additional pieces of baggage through the Manage Your Booking page<|>7)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>OVERSIZED BAGGAGE<|>Both overweight and oversized baggage require special handling and may incur additional fees<|>5)\n##\n(\"relationship\"<|>THREE HOURS<|>MANAGE YOUR BOOKING<|>The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking<|>8)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>LITE SERVICE<|>Lite service is one of the ticket types available in economy class<|>6)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CLASSIC SERVICE<|>Classic service is one of the ticket types available in economy class<|>6)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>FLEX SERVICE<|>Flex service is one of the ticket types available in economy class<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-f87e1f9ed5c60b0705ef1893a5a10721 b/cache/entity_extraction/chat-f87e1f9ed5c60b0705ef1893a5a10721 deleted file mode 100644 index 48b1fbb85e823f30434665274488335fc457b876..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-f87e1f9ed5c60b0705ef1893a5a10721 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>AIRLINE<|>Baggage Type<|>Refers to the various airlines that operate flights and their associated baggage policies.)\n##\n(\"entity\"<|>PASSENGER<|>Passenger Type<|>Refers to individuals who travel on flights and are subject to airline policies regarding baggage and services.)\n##\n(\"entity\"<|>ADDITIONAL SERVICES<|>Service Type<|>Refers to extra services that can be ordered by passengers, which may incur additional charges.)\n##\n(\"relationship\"<|>PASSENGER<|>AIRLINE<|>Passengers are subject to the policies of the airline regarding baggage and additional services<|>7)\n##\n(\"relationship\"<|>PASSENGER<|>ADDITIONAL SERVICES<|>Passengers can order additional services, which may incur charges<|>6)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/chat-ff1d4b389251a99db7b1c2785797536e b/cache/entity_extraction/chat-ff1d4b389251a99db7b1c2785797536e deleted file mode 100644 index 37189c9f46a07418440368d1e5ecce1e8af3bf69..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/chat-ff1d4b389251a99db7b1c2785797536e +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific baggage policies and allowances for passengers.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>POLICY<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to the luggage that passengers check in before boarding the flight.)\n##\n(\"entity\"<|>INFANT'S CHECKED BAGGAGE<|>Baggage Type<|>Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.)\n##\n(\"entity\"<|>LITE TICKETS<|>Travel Class<|>Lite tickets are a type of ticket that does not include any baggage allowance.)\n##\n(\"entity\"<|>MAXIMUM SIZE<|>Restriction<|>The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.)\n##\n(\"entity\"<|>EXCESS BAGGAGE RATES<|>Fee Structure<|>Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>Prices for baggage fees are displayed in US dollars, although local currency may be required at some airports.)\n##\n(\"entity\"<|>GOVERNMENT SERVICE TAX<|>Policy<|>A government service tax will be collected for air travel for flights originating in India.)\n##\n(\"entity\"<|>CODESHARE FLIGHTS<|>Route Type<|>Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division handles excess baggage and special requests for passengers traveling with more than five pieces of checked baggage.)\n##\n(\"entity\"<|>LOCAL CURRENCY<|>Currency<|>At some airports, payment for baggage fees is only allowed in local currency according to the conversion rate on the date of payment.)\n##\n(\"relationship\"<|>EL AL<|>BAGGAGE ALLOWANCE<|>EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.<|>8)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance includes provisions for checked baggage that passengers can take on flights.<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>MAXIMUM SIZE<|>The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.<|>9)\n##\n(\"relationship\"<|>INFANT'S CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Infant's checked baggage is a specific category of checked baggage that includes items for infants.<|>8)\n##\n(\"relationship\"<|>LITE TICKETS<|>BAGGAGE ALLOWANCE<|>Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.<|>6)\n##\n(\"relationship\"<|>EXCESS BAGGAGE RATES<|>BAGGAGE ALLOWANCE<|>Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.<|>7)\n##\n(\"relationship\"<|>US DOLLARS<|>EXCESS BAGGAGE RATES<|>Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.<|>5)\n##\n(\"relationship\"<|>GOVERNMENT SERVICE TAX<|>EL AL<|>The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.<|>4)\n##\n(\"relationship\"<|>CODESHARE FLIGHTS<|>EL AL<|>The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.<|>5)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>CHECKED BAGGAGE<|>The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.<|>6)\n##\n(\"relationship\"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE RATES<|>Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.<|>5)\n<|COMPLETE|>", "input": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-00a955b310803eb4a7a0b92e38fac8b9 b/cache/entity_extraction/extract-continuation-0-chat-v2-00a955b310803eb4a7a0b92e38fac8b9 deleted file mode 100644 index 26b2557c2c3026291c027300a40cccaafd293288..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-00a955b310803eb4a7a0b92e38fac8b9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>LITHIUM BATTERIES<|>DANGEROUS GOOD<|>Lithium batteries, including both lithium-ion and lithium metal types, are subject to specific regulations for air travel due to their potential hazards.)\n##\n(\"entity\"<|>100 WATT-HOURS<|>MEASUREMENT UNIT<|>100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.)\n##\n(\"entity\"<|>160 WATT-HOURS<|>MEASUREMENT UNIT<|>160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.)\n##\n(\"entity\"<|>2 GRAMS<|>MEASUREMENT UNIT<|>2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.)\n##\n(\"entity\"<|>12 VOLTS<|>MEASUREMENT UNIT<|>12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.)\n##\n(\"entity\"<|>49 CFR<|>POLICY<|>49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.)\n##\n(\"entity\"<|>STRONG OUTER PACKAGING<|>RESTRICTION<|>Batteries must be in strong outer packaging to prevent damage and leakage during transport.)\n##\n(\"entity\"<|>NON-CONDUCTIVE CAPS<|>RESTRICTION<|>Non-conductive caps are required to protect the terminals of spare batteries during transport.)\n##\n(\"entity\"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials, such as hairspray, are prohibited from being stored with electronic devices containing lithium batteries.)\n##\n(\"relationship\"<|>LITHIUM BATTERIES<|>LITHIUM-ION BATTERIES<|>Lithium batteries include both lithium-ion and lithium metal types, indicating a classification relationship<|>8)\n##\n(\"relationship\"<|>100 WATT-HOURS<|>LITHIUM-ION BATTERIES<|>Lithium-ion batteries with a capacity of 100 watt-hours are allowed in carry-on luggage<|>8)\n##\n(\"relationship\"<|>160 WATT-HOURS<|>LITHIUM-ION BATTERIES<|>Lithium-ion batteries with a capacity of 160 watt-hours are subject to specific regulations for air travel<|>8)\n##\n(\"relationship\"<|>2 GRAMS<|>LITHIUM METAL BATTERIES<|>Consumer-grade lithium metal batteries must contain no more than 2 grams of lithium<|>8)\n##\n(\"relationship\"<|>12 VOLTS<|>NON-SPILLABLE WET BATTERIES<|>Non-spillable wet batteries must not exceed 12 volts for air travel<|>8)\n##\n(\"relationship\"<|>49 CFR<|>LITHIUM BATTERIES<|>49 CFR outlines the regulations for the transport of lithium batteries, indicating a regulatory relationship<|>9)\n##\n(\"relationship\"<|>STRONG OUTER PACKAGING<|>NON-SPILLABLE WET BATTERIES<|>Non-spillable wet batteries must be packaged in strong outer packaging to prevent leakage<|>8)\n##\n(\"relationship\"<|>NON-CONDUCTIVE CAPS<|>SPARE BATTERIES<|>Spare batteries must have non-conductive caps to protect their terminals during transport<|>8)\n##\n(\"relationship\"<|>FLAMMABLE MATERIAL<|>ELECTRONIC DEVICES<|>Flammable materials are prohibited from being stored with electronic devices containing lithium batteries, indicating a safety restriction<|>9)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>LITHIUM-ION BATTERIES<|>DANGEROUS GOOD<|>Lithium-ion batteries are rechargeable batteries commonly used in portable electronic devices, with specific size and watt-hour limitations for air travel.)\n##\n(\"entity\"<|>LITHIUM METAL BATTERIES<|>DANGEROUS GOOD<|>Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.)\n##\n(\"entity\"<|>NON-SPILLABLE WET BATTERIES<|>DANGEROUS GOOD<|>Non-spillable wet batteries are limited to 12 volts and 100 watt-hours, designed to prevent leakage of electrolyte.)\n##\n(\"entity\"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage and must be protected when carried in the cabin.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>SPECIAL ITEM<|>Electronic devices with lithium batteries that cannot be removed must be stored in the aircraft hold under specific conditions.)\n##\n(\"entity\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are considered lithium batteries and are prohibited in checked baggage.)\n##\n(\"entity\"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have separate exceptions regarding the transport of batteries.)\n##\n(\"entity\"<|>CARRY-ON<|>ALLOWANCE<|>Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.)\n##\n(\"relationship\"<|>LITHIUM-ION BATTERIES<|>CARRY-ON<|>Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits<|>8)\n##\n(\"relationship\"<|>LITHIUM METAL BATTERIES<|>CARRY-ON<|>Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions<|>8)\n##\n(\"relationship\"<|>NON-SPILLABLE WET BATTERIES<|>CARRY-ON<|>Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits<|>8)\n##\n(\"relationship\"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction<|>9)\n##\n(\"relationship\"<|>ELECTRONIC DEVICES<|>CARRY-ON<|>Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement<|>7)\n##\n(\"relationship\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are classified as lithium batteries and are prohibited in checked baggage<|>9)\n##\n(\"relationship\"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have specific exemptions regarding battery transport, differentiating them from other items<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-030491221bdaa5e8dd495bc384a59e2a b/cache/entity_extraction/extract-continuation-0-chat-v2-030491221bdaa5e8dd495bc384a59e2a deleted file mode 100644 index b2882dc8ff7a88a9922807ce3be8dad71d2fd035..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-030491221bdaa5e8dd495bc384a59e2a +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the luggage or personal items that passengers take with them when traveling, which can include checked bags and carry-ons.)\n##\n(\"entity\"<|>CHECKED BAGS<|>BAGGAGE TYPE<|>Checked bags are pieces of luggage that are transported in the cargo hold of an aircraft, as opposed to being carried into the cabin.)\n##\n(\"entity\"<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>BAGGAGE POLICY<|>POLICY<|>Baggage policy outlines the rules and regulations regarding the number, size, and weight of baggage that passengers can check in or carry on.)\n##\n(\"entity\"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger's reservation on a flight and includes details about baggage allowance.)\n##\n(\"entity\"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>SERVICE LOCATION<|>The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage after check-in.)\n##\n(\"entity\"<|>PRE-ORDERING<|>POLICY<|>Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.)\n##\n(\"entity\"<|>BAGGAGE CHECK-IN PROCESS<|>SERVICE TYPE<|>The baggage check-in process involves the procedures passengers must follow to check their luggage before boarding a flight.)\n##\n(\"entity\"<|>STANDARD BAGGAGE<|>BAGGAGE TYPE<|>Standard baggage refers to luggage that meets the airline's size and weight requirements without incurring additional fees.)\n##\n(\"entity\"<|>BAGGAGE CHECK-IN<|>SERVICE TYPE<|>Baggage check-in is the process by which passengers hand over their luggage to the airline for transport in the cargo hold.)\n##\n(\"relationship\"<|>BAGGAGE<|>CHECKED BAGGAGE<|>Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>Oversized and overweight baggage are categories of baggage that exceed standard limits<|>7)\n##\n(\"relationship\"<|>BAGGAGE POLICY<|>BAGGAGE<|>Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees<|>9)\n##\n(\"relationship\"<|>FLIGHT TICKET<|>BAGGAGE ALLOWANCE<|>The flight ticket includes information about the baggage allowance for the passenger<|>8)\n##\n(\"relationship\"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>Passengers with oversized and overweight baggage must take their luggage to the designated location<|>7)\n##\n(\"relationship\"<|>PRE-ORDERING<|>ADDITIONAL PIECES OF BAGGAGE<|>Pre-ordering is required for checking additional pieces of baggage beyond the standard allowance<|>8)\n##\n(\"relationship\"<|>BAGGAGE CHECK-IN PROCESS<|>BAGGAGE CHECK-IN<|>The baggage check-in process is the procedure for checking in luggage before a flight<|>8)\n##\n(\"relationship\"<|>STANDARD BAGGAGE<|>BAGGAGE<|>Standard baggage refers to luggage that meets the airline's size and weight requirements<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin by the passenger.)\n##\n(\"entity\"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the airline's standard size limits, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which may result in extra charges.)\n##\n(\"entity\"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that shares similar baggage policies with Sundor, particularly regarding checked baggage allowances.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>TRAVEL CLASS<|>Economy class is a travel class offered by airlines, typically providing basic services and lower fares compared to higher classes.)\n##\n(\"entity\"<|>LITE SERVICE<|>SERVICE TYPE<|>Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.)\n##\n(\"entity\"<|>CLASSIC SERVICE<|>SERVICE TYPE<|>Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.)\n##\n(\"entity\"<|>FLEX SERVICE<|>SERVICE TYPE<|>Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n(\"entity\"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service provided by airlines that allows passengers to view and modify their flight details, including baggage options.)\n##\n(\"entity\"<|>ADDITIONAL PIECES OF BAGGAGE<|>ALLOWANCE<|>Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.)\n##\n(\"entity\"<|>$90<|>FEE STRUCTURE<|>The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.)\n##\n(\"entity\"<|>23 KG<|>WEIGHT<|>23 kg is the weight limit for each piece of checked baggage included in the ticket price for certain service types offered by EL AL.)\n##\n(\"entity\"<|>THREE HOURS<|>TIME PERIOD<|>Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.)\n##\n(\"entity\"<|>EUROPE AND MIDDLE EAST<|>ROUTE TYPE<|>Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.)\n##\n(\"entity\"<|>NORTH AMERICA<|>ROUTE TYPE<|>North America is another destination served by EL AL, with its own baggage policies.)\n##\n(\"relationship\"<|>SUNDOR<|>EL AL<|>Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees<|>7)\n##\n(\"relationship\"<|>LITE SERVICE<|>BAGGAGE ALLOWANCE<|>Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering<|>8)\n##\n(\"relationship\"<|>CLASSIC SERVICE<|>BAGGAGE ALLOWANCE<|>Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n(\"relationship\"<|>FLEX SERVICE<|>BAGGAGE ALLOWANCE<|>Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n(\"relationship\"<|>ADDITIONAL PIECES OF BAGGAGE<|>BAGGAGE ALLOWANCE<|>Additional pieces of baggage can be checked in for a fee, which varies depending on the service type<|>6)\n##\n(\"relationship\"<|>MANAGE YOUR BOOKING<|>ADDITIONAL PIECES OF BAGGAGE<|>Passengers can add additional pieces of baggage through the Manage Your Booking page<|>7)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>OVERSIZED BAGGAGE<|>Both overweight and oversized baggage require special handling and may incur additional fees<|>5)\n##\n(\"relationship\"<|>THREE HOURS<|>MANAGE YOUR BOOKING<|>The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking<|>8)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>LITE SERVICE<|>Lite service is one of the ticket types available in economy class<|>6)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CLASSIC SERVICE<|>Classic service is one of the ticket types available in economy class<|>6)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>FLEX SERVICE<|>Flex service is one of the ticket types available in economy class<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-0362763a000efeb932bc07bbf17c728d b/cache/entity_extraction/extract-continuation-0-chat-v2-0362763a000efeb932bc07bbf17c728d deleted file mode 100644 index c033bf1aaea6f84ce6b5fcd80cce105367101a83..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-0362763a000efeb932bc07bbf17c728d +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>SECURITY CHECK AREAS<|>SERVICE LOCATION<|>Designated areas where passengers must proceed for security checks before boarding their flights.)\n##\n(\"entity\"<|>PASSENGERS<|>PASSENGER TYPE<|>Individuals traveling on flights who must check in at the counters regardless of luggage.)\n##\n(\"entity\"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Necessary paperwork that passengers must have available according to their flight destination.)\n##\n(\"relationship\"<|>PASSENGERS<|>CHECK-IN COUNTERS<|>Passengers must check in at the counters regardless of luggage<|>9)\n##\n(\"relationship\"<|>SECURITY CHECK AREAS<|>CHECK-IN COUNTERS<|>Passengers must proceed to security check areas after checking in at the counters<|>6)\n##\n(\"relationship\"<|>DOCUMENTS<|>PASSENGERS<|>Passengers must have necessary documents available for their flight<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>El Al is an airline that requires passengers to check in at their counters regardless of luggage when returning to Israel from abroad.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the destination for passengers returning from abroad.)\n##\n(\"entity\"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are designated areas where passengers must check in for their flights.)\n##\n(\"entity\"<|>FLIGHT DESTINATION<|>REQUIRED DOCUMENT<|>Flight destination refers to the location where passengers are traveling and requires necessary documents for check-in.)\n##\n(\"relationship\"<|>EL AL<|>CHECK-IN COUNTERS<|>El Al requires passengers to use check-in counters for their flights<|>8)\n##\n(\"relationship\"<|>CHECK-IN COUNTERS<|>ISRAEL<|>Passengers checking in at the counters are returning to Israel<|>5)\n##\n(\"relationship\"<|>FLIGHT DESTINATION<|>EL AL<|>Passengers must have necessary documents according to their flight destination when checking in with El Al<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-097e0d6507852cbda14764255866fbe5 b/cache/entity_extraction/extract-continuation-0-chat-v2-097e0d6507852cbda14764255866fbe5 deleted file mode 100644 index 501decad18e2cbdef700e2e5bd019021b7a5f68f..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-097e0d6507852cbda14764255866fbe5 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>DAMAGE<|>Restriction<|>Damage refers to the condition of baggage that has been harmed or impaired, which may affect the liability of the airline regarding claims.)\n##\n(\"entity\"<|>MISSING ITEMS<|>Restriction<|>Missing items refer to belongings that are not present in the baggage upon receipt, which may lead to a claim against the airline.)\n##\n(\"entity\"<|>CLAIM<|>Policy<|>A claim is a formal request made by a passenger to the airline for compensation due to lost, damaged, or delayed baggage.)\n##\n(\"entity\"<|>21 DAYS<|>Time Period<|>21 days is the time frame within which passengers must contact the airline regarding delayed baggage outside their country of residence.)\n##\n(\"entity\"<|>7 DAYS<|>Time Period<|>7 days is the time frame within which passengers must contact the airline regarding damaged or missing items from their baggage.)\n##\n(\"entity\"<|>AFTER 21 DAYS<|>Time Period<|>After 21 days refers to the period after which passengers must contact the airline regarding lost baggage.)\n##\n(\"relationship\"<|>DAMAGE<|>CLAIM<|>Damage to baggage can lead to a claim being filed by the passenger against the airline.<|>8)\n##\n(\"relationship\"<|>MISSING ITEMS<|>CLAIM<|>Missing items from baggage can lead to a claim being filed by the passenger against the airline.<|>8)\n##\n(\"relationship\"<|>7 DAYS<|>CLAIM<|>Passengers must file a claim within 7 days for damaged or missing items from their baggage.<|>9)\n##\n(\"relationship\"<|>21 DAYS<|>CLAIM<|>Passengers must file a claim within 21 days for delayed baggage outside their country of residence.<|>9)\n##\n(\"relationship\"<|>AFTER 21 DAYS<|>CLAIM<|>Passengers must contact the airline after 21 days regarding lost baggage.<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the suitcases and items that passengers check in for their flights, which can be lost, damaged, or delayed.)\n##\n(\"entity\"<|>EL AL ISRAEL AIRLINES<|>Airline<|>EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.)\n##\n(\"entity\"<|>FLIGHT TICKETS<|>Required Document<|>Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.)\n##\n(\"entity\"<|>BOARDING PASSES<|>Required Document<|>Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE TAGS<|>Required Document<|>Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.)\n##\n(\"entity\"<|>LOST OR DAMAGED BAGGAGE REPORT<|>Required Document<|>A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.)\n##\n(\"entity\"<|>RECEIPTS<|>Required Document<|>Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.)\n##\n(\"entity\"<|>FRAGILE ITEMS<|>Prohibited Item<|>Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>PERISHABLE ITEMS<|>Prohibited Item<|>Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>VALUABLE ITEMS<|>Valuable Item<|>Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>INTERNATIONAL CONVENTIONS<|>Policy<|>International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.)\n##\n(\"entity\"<|>CONTRACT OF CARRIAGE<|>Policy<|>The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.<|>9)\n##\n(\"relationship\"<|>FLIGHT TICKETS<|>BAGGAGE<|>Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>BOARDING PASSES<|>BAGGAGE<|>Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>BAGGAGE TAGS<|>BAGGAGE<|>Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>LOST OR DAMAGED BAGGAGE REPORT<|>BAGGAGE<|>A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>RECEIPTS<|>BAGGAGE<|>Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>FRAGILE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>PERISHABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>VALUABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>INTERNATIONAL CONVENTIONS<|>EL AL ISRAEL AIRLINES<|>International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.<|>6)\n##\n(\"relationship\"<|>CONTRACT OF CARRIAGE<|>EL AL ISRAEL AIRLINES<|>The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-11f9acec5b3c6337637b8019108e51aa b/cache/entity_extraction/extract-continuation-0-chat-v2-11f9acec5b3c6337637b8019108e51aa deleted file mode 100644 index 10cf7fba6375a09c14bf55bb3f194eec8e6322e5..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-11f9acec5b3c6337637b8019108e51aa +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>DIMENSION<|>Dimension<|>Dimension refers to the measurements of baggage, including length, width, and depth, which are used to determine size restrictions.)\n##\n(\"entity\"<|>LINEAR DIMENSION<|>Linear Dimension<|>Linear dimension refers to the measurement of length, which is one of the components used to calculate the size of baggage.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the mass of the baggage, which is a critical factor in determining baggage allowance and fees.)\n##\n(\"entity\"<|>MEASUREMENT UNIT<|>Measurement Unit<|>Measurement units such as kilograms and pounds are used to quantify the weight of baggage.)\n##\n(\"entity\"<|>SIZE CATEGORY<|>Size Category<|>Size category refers to the classification of baggage based on its dimensions, which affects the allowance and fees.)\n##\n(\"entity\"<|>WEIGHT CATEGORY<|>Weight Category<|>Weight category refers to the classification of baggage based on its weight, which influences the fees charged for excess baggage.)\n##\n(\"entity\"<|>WHEEL CONFIGURATION<|>Wheel Configuration<|>Wheel configuration refers to the design and arrangement of wheels on baggage, which can affect handling and transport.)\n##\n(\"entity\"<|>SPECIAL ITEM<|>Special Item<|>Special items refer to specific types of baggage that may have unique handling requirements, such as sports equipment or musical instruments.)\n##\n(\"entity\"<|>PROHIBITED ITEM<|>Prohibited Item<|>Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.)\n##\n(\"entity\"<|>RESTRICTED ITEM<|>Restricted Item<|>Restricted items are those that may be allowed under certain conditions or with special permissions, often requiring prior approval.)\n##\n(\"entity\"<|>DANGEROUS GOOD<|>Dangerous Good<|>Dangerous goods are items that pose a risk to health, safety, property, or the environment and are subject to strict regulations.)\n##\n(\"entity\"<|>FRAGILE ITEM<|>Fragile Item<|>Fragile items are those that require special handling due to their delicate nature, often needing additional protection during transport.)\n##\n(\"entity\"<|>VALUABLE ITEM<|>Valuable Item<|>Valuable items are high-value belongings that may require special consideration or insurance when traveling.)\n##\n(\"entity\"<|>REQUIRED DOCUMENT<|>Required Document<|>Required documents are necessary paperwork that passengers must present for travel, such as identification or boarding passes.)\n##\n(\"entity\"<|>LABEL TYPE<|>Label Type<|>Label type refers to the categorization of baggage labels that indicate handling instructions or ownership.)\n##\n(\"entity\"<|>TAG CATEGORY<|>Tag Category<|>Tag category refers to the classification of tags used for baggage identification and tracking.)\n##\n(\"entity\"<|>SERVICE LOCATION<|>Service Location<|>Service location refers to the specific places where baggage services, such as check-in or pickup, are provided.)\n##\n(\"entity\"<|>TIME PERIOD<|>Time Period<|>Time period refers to the duration during which specific baggage policies or fees are applicable.)\n##\n(\"entity\"<|>PASSENGER TYPE<|>Passenger Type<|>Passenger type refers to the classification of travelers, such as adults, children, or infants, which can affect baggage allowances.)\n##\n(\"entity\"<|>MEMBERSHIP LEVEL<|>Membership Level<|>Membership level refers to the tier of loyalty programs that may offer different baggage allowances or benefits.)\n##\n(\"entity\"<|>GROUP CATEGORY<|>Group Category<|>Group category refers to classifications of passengers traveling together, which may influence baggage policies and allowances.)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific baggage policies and allowances for passengers.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>POLICY<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to the luggage that passengers check in before boarding the flight.)\n##\n(\"entity\"<|>INFANT'S CHECKED BAGGAGE<|>Baggage Type<|>Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.)\n##\n(\"entity\"<|>LITE TICKETS<|>Travel Class<|>Lite tickets are a type of ticket that does not include any baggage allowance.)\n##\n(\"entity\"<|>MAXIMUM SIZE<|>Restriction<|>The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.)\n##\n(\"entity\"<|>EXCESS BAGGAGE RATES<|>Fee Structure<|>Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>Prices for baggage fees are displayed in US dollars, although local currency may be required at some airports.)\n##\n(\"entity\"<|>GOVERNMENT SERVICE TAX<|>Policy<|>A government service tax will be collected for air travel for flights originating in India.)\n##\n(\"entity\"<|>CODESHARE FLIGHTS<|>Route Type<|>Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division handles excess baggage and special requests for passengers traveling with more than five pieces of checked baggage.)\n##\n(\"entity\"<|>LOCAL CURRENCY<|>Currency<|>At some airports, payment for baggage fees is only allowed in local currency according to the conversion rate on the date of payment.)\n##\n(\"relationship\"<|>EL AL<|>BAGGAGE ALLOWANCE<|>EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.<|>8)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance includes provisions for checked baggage that passengers can take on flights.<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>MAXIMUM SIZE<|>The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.<|>9)\n##\n(\"relationship\"<|>INFANT'S CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Infant's checked baggage is a specific category of checked baggage that includes items for infants.<|>8)\n##\n(\"relationship\"<|>LITE TICKETS<|>BAGGAGE ALLOWANCE<|>Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.<|>6)\n##\n(\"relationship\"<|>EXCESS BAGGAGE RATES<|>BAGGAGE ALLOWANCE<|>Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.<|>7)\n##\n(\"relationship\"<|>US DOLLARS<|>EXCESS BAGGAGE RATES<|>Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.<|>5)\n##\n(\"relationship\"<|>GOVERNMENT SERVICE TAX<|>EL AL<|>The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.<|>4)\n##\n(\"relationship\"<|>CODESHARE FLIGHTS<|>EL AL<|>The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.<|>5)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>CHECKED BAGGAGE<|>The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.<|>6)\n##\n(\"relationship\"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE RATES<|>Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-182c6dee8677f9fbd2ced1e6a0de0837 b/cache/entity_extraction/extract-continuation-0-chat-v2-182c6dee8677f9fbd2ced1e6a0de0837 deleted file mode 100644 index 6b7b5698b85812c3af7ac9d835a67a39405fab92..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-182c6dee8677f9fbd2ced1e6a0de0837 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CAGE<|>SPECIAL ITEM<|>A cage adapted for a service dog is required for transport, ensuring the dog's safety and comfort during the flight.)\n##\n(\"entity\"<|>LEASH<|>SPECIAL ITEM<|>A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.)\n##\n(\"entity\"<|>HARNESSES<|>SPECIAL ITEM<|>Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.)\n##\n(\"entity\"<|>FLIGHT DATE<|>TIME PERIOD<|>The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.)\n##\n(\"entity\"<|>ADDITIONAL CHARGES<|>FEE STRUCTURE<|>Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.)\n##\n(\"entity\"<|>HIGH-RISK COUNTRY<|>RESTRICTION<|>As of the current date, Israel is classified as a high-risk country for transporting animals, affecting travel regulations.)\n##\n(\"entity\"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are the designated areas at the airport where passengers must present their documentation for traveling with a service dog.)\n##\n(\"entity\"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Passengers must complete all necessary documents required for transporting animals to and from Israel.)\n##\n(\"entity\"<|>SANITARY CONDITIONS<|>RESTRICTION<|>Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.)\n##\n(\"relationship\"<|>SERVICE DOG<|>CAGE<|>A cage is required for the transport of a service dog to ensure its safety and comfort during the flight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>LEASH<|>A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.<|>9)\n##\n(\"relationship\"<|>SERVICE DOG<|>HARNESSES<|>Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.<|>9)\n##\n(\"relationship\"<|>FLIGHT DATE<|>SERVICE DOG<|>The flight date is crucial for passengers traveling with a service dog to ensure compliance with registration and documentation requirements.<|>7)\n##\n(\"relationship\"<|>ADDITIONAL CHARGES<|>SERVICE DOG<|>Additional charges may apply for the inspection and release of a service dog at airport facilities in the United States.<|>6)\n##\n(\"relationship\"<|>ISRAEL<|>HIGH-RISK COUNTRY<|>Israel is classified as a high-risk country, affecting the regulations for transporting service dogs.<|>5)\n##\n(\"relationship\"<|>CHECK-IN COUNTERS<|>SERVICE DOG<|>Passengers must present their documentation for traveling with a service dog at the check-in counters.<|>8)\n##\n(\"relationship\"<|>DOCUMENTS<|>SERVICE DOG<|>Passengers must complete all necessary documents required for transporting service dogs to and from Israel.<|>7)\n##\n(\"relationship\"<|>SANITARY CONDITIONS<|>SERVICE DOG<|>Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of service dogs on flights.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>A service dog is a trained animal that assists passengers with disabilities and must meet specific requirements for air travel.)\n##\n(\"entity\"<|>HEATHROW AIRPORT<|>AIRPORT<|>Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.)\n##\n(\"entity\"<|>UNITED STATES<|>GEO<|>The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is a country with specific requirements for transporting animals, including service dogs.)\n##\n(\"entity\"<|>CDC<|>ORGANIZATION<|>The CDC provides guidelines and requirements for transporting dogs to the United States, including health and vaccination documentation.)\n##\n(\"entity\"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is a document that certifies a service dog is vaccinated and can maintain sanitary conditions during transport.)\n##\n(\"entity\"<|>ANIMAL AIR TRANSPORT COMPANIES<|>SERVICE TYPE<|>Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.)\n##\n(\"relationship\"<|>EL AL<|>SERVICE DOG<|>EL AL has specific policies regarding the transportation of service dogs, including requirements for documentation and behavior during the flight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>VETERINARY CERTIFICATE<|>A veterinary certificate is required for a service dog to ensure it is vaccinated and fit for travel.<|>9)\n##\n(\"relationship\"<|>SERVICE DOG<|>HEATHROW AIRPORT<|>Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.<|>7)\n##\n(\"relationship\"<|>SERVICE DOG<|>UNITED STATES<|>The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.<|>8)\n##\n(\"relationship\"<|>ISRAEL<|>SERVICE DOG<|>Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.<|>6)\n##\n(\"relationship\"<|>CDC<|>UNITED STATES<|>The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.<|>8)\n##\n(\"relationship\"<|>EL AL<|>ANIMAL AIR TRANSPORT COMPANIES<|>EL AL may recommend using specialized companies for the air transport of animals, including service dogs.<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-1e66aef4e8fa32c8bd7751e79556d371 b/cache/entity_extraction/extract-continuation-0-chat-v2-1e66aef4e8fa32c8bd7751e79556d371 deleted file mode 100644 index 44ad4ff71853424ea25b09c3a04a2d9edf27be89..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-1e66aef4e8fa32c8bd7751e79556d371 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>HOLD<|>CARGO<|>The hold is the area of the aircraft where animals, including dogs, may be transported if they cannot be accommodated in the passenger cabin.)\n##\n(\"entity\"<|>SAFETY AND SECURITY REGULATIONS<|>POLICY<|>Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.)\n##\n(\"entity\"<|>FORMS<|>REQUIRED DOCUMENT<|>Necessary documentation that passengers must provide to transport a dog on EL AL flights.)\n##\n(\"entity\"<|>DISTURBANCE<|>RESTRICTION<|>A situation where the dog's behavior causes disruption on the aircraft, leading to potential refusal of transport.)\n##\n(\"entity\"<|>DIRECT THREAT<|>RESTRICTION<|>A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.)\n##\n(\"relationship\"<|>PASSENGER<|>HOLD<|>If the dog cannot be transported in the passenger cabin, it may be placed in the hold<|>6)\n##\n(\"relationship\"<|>EL AL<|>SAFETY AND SECURITY REGULATIONS<|>EL AL must adhere to safety and security regulations when transporting dogs<|>9)\n##\n(\"relationship\"<|>PASSENGER<|>FORMS<|>Passengers must provide the required forms to transport a dog on EL AL flights<|>8)\n##\n(\"relationship\"<|>DOG<|>DISTURBANCE<|>A dog's behavior may lead to a disturbance, affecting its ability to be transported<|>7)\n##\n(\"relationship\"<|>DOG<|>DIRECT THREAT<|>If a dog is deemed a direct threat, it may be refused transport by EL AL<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of dogs on its flights.)\n##\n(\"entity\"<|>DOG<|>SPECIAL ITEM<|>A dog that may be transported by passengers under certain conditions and regulations.)\n##\n(\"entity\"<|>PASSENGER<|>PASSENGER TYPE<|>A person traveling on the airline who may bring a dog on board under specific conditions.)\n##\n(\"relationship\"<|>PASSENGER<|>DOG<|>The passenger is responsible for the dog's behavior and must meet conditions for its transport<|>7)\n##\n(\"relationship\"<|>EL AL<|>DOG<|>EL AL has policies that govern the transport of dogs, including conditions under which they may be refused<|>8)\n##\n(\"relationship\"<|>EL AL<|>PASSENGER<|>EL AL has specific requirements that passengers must meet to transport a dog<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-23fa0aab09a13a4848e059f5ebe9fcbb b/cache/entity_extraction/extract-continuation-0-chat-v2-23fa0aab09a13a4848e059f5ebe9fcbb deleted file mode 100644 index a0529b62917bd95465965fd48490f6f464e0e545..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-23fa0aab09a13a4848e059f5ebe9fcbb +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>EQUIPMENT<|>SPECIAL ITEM<|>Equipment refers to the items that passengers may bring with them, which can include sporting equipment and other personal belongings.)\n##\n(\"entity\"<|>DESTINATION COUNTRY<|>GEO<|>The destination country is the country to which a passenger is traveling, and it has specific guidelines and conditions for admitting passenger equipment.)\n##\n(\"relationship\"<|>EL AL<|>EQUIPMENT<|>EL AL has guidelines regarding the transport of passenger equipment<|>6)\n##\n(\"relationship\"<|>EQUIPMENT<|>DESTINATION COUNTRY<|>The destination country may refuse to admit certain types of passenger equipment<|>5)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides transport services and has specific guidelines regarding passenger equipment and liability for fragile or valuable items.)\n##\n(\"entity\"<|>FRAGILE ITEM<|>PROHIBITED ITEM<|>Fragile items are those that can easily break or be damaged during transport, and EL AL does not take responsibility for them.)\n##\n(\"entity\"<|>VALUABLE ITEM<|>PROHIBITED ITEM<|>Valuable items are those that have significant monetary or sentimental value, and EL AL does not take responsibility for them.)\n##\n(\"entity\"<|>SPECIAL TRAVEL INSURANCE<|>POLICY<|>Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.)\n##\n(\"relationship\"<|>EL AL<|>FRAGILE ITEM<|>EL AL does not bear responsibility for fragile items transported by the airline<|>8)\n##\n(\"relationship\"<|>EL AL<|>VALUABLE ITEM<|>EL AL does not bear responsibility for valuable items transported by the airline<|>8)\n##\n(\"relationship\"<|>SPECIAL TRAVEL INSURANCE<|>FRAGILE ITEM<|>Special travel insurance is recommended for passengers transporting fragile items<|>7)\n##\n(\"relationship\"<|>SPECIAL TRAVEL INSURANCE<|>VALUABLE ITEM<|>Special travel insurance is recommended for passengers transporting valuable items<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-24826caa0f73a2bc8eb36d347a9bf31e b/cache/entity_extraction/extract-continuation-0-chat-v2-24826caa0f73a2bc8eb36d347a9bf31e deleted file mode 100644 index 6f47cbd37f4253b93025bb21951a77470bd3bcf9..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-24826caa0f73a2bc8eb36d347a9bf31e +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n(\"entity\"<|>BAGGAGE POLICY<|>POLICY<|>Baggage policy outlines the rules and regulations regarding the types, sizes, and weights of baggage that passengers can bring on flights.)\n##\n(\"entity\"<|>STANDARD BAGGAGE<|>BAGGAGE TYPE<|>Standard baggage refers to luggage that meets the airline's specified dimensions and weight limits without incurring extra charges.)\n##\n(\"entity\"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>SERVICE LOCATION<|>The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage for check-in.)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>BAGGAGE POLICY<|>Baggage allowance is determined by the baggage policy of the airline<|>8)\n##\n(\"relationship\"<|>BAGGAGE POLICY<|>SUNDOR<|>Sundor has a specific baggage policy that dictates the rules for checked baggage<|>7)\n##\n(\"relationship\"<|>BAGGAGE POLICY<|>EL AL<|>El Al has a specific baggage policy that dictates the rules for checked baggage<|>7)\n##\n(\"relationship\"<|>STANDARD BAGGAGE<|>BAGGAGE POLICY<|>Standard baggage must comply with the airline's baggage policy<|>8)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>Passengers with oversized baggage must take their bags to the designated location for check-in<|>7)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>Passengers with overweight baggage must take their bags to the designated location for check-in<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to the luggage that passengers check in at the airport, which is transported in the cargo hold of the aircraft.)\n##\n(\"entity\"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the standard dimensions set by airlines, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit established by airlines, often resulting in extra charges.)\n##\n(\"entity\"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>El Al is an airline known for its baggage policies, which are similar to those of Sundor.)\n##\n(\"entity\"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service where passengers can view and modify their flight details, including baggage allowances.)\n##\n(\"entity\"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger's reservation and includes details about baggage allowances.)\n##\n(\"entity\"<|>DIMENSIONS<|>DIMENSION<|>Dimensions refer to the measurements of baggage, which determine whether it is classified as standard, oversized, or overweight.)\n##\n(\"entity\"<|>WEIGHT<|>WEIGHT<|>Weight refers to the heaviness of baggage, which is a critical factor in determining if it is overweight.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>SUNDOR<|>Sundor has specific policies regarding checked baggage allowances for passengers<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EL AL<|>El Al's baggage policy is similar to that of Sundor, affecting checked baggage allowances<|>7)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling oversized baggage<|>6)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling overweight baggage<|>6)\n##\n(\"relationship\"<|>MANAGE YOUR BOOKING<|>FLIGHT TICKET<|>The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances<|>8)\n##\n(\"relationship\"<|>DIMENSIONS<|>OVERSIZED BAGGAGE<|>Oversized baggage is defined by exceeding authorized dimensions<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>OVERWEIGHT BAGGAGE<|>Overweight baggage is defined by exceeding the weight limit set by the airline<|>9)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>OVERWEIGHT BAGGAGE<|>Both oversized and overweight baggage require special handling and may incur additional fees<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-2e46327c568e2e2cbdf8217f28215a9b b/cache/entity_extraction/extract-continuation-0-chat-v2-2e46327c568e2e2cbdf8217f28215a9b deleted file mode 100644 index 969f86665ce8723b396dd0e559655fcb38e4953e..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-2e46327c568e2e2cbdf8217f28215a9b +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CARGO<|>SERVICE TYPE<|>Cargo refers to the goods or merchandise transported, which may include baggage and other items handled at the airport.)\n##\n(\"entity\"<|>ZIP CODE 7015001<|>REQUIRED DOCUMENT<|>Zip Code 7015001 is the postal code for the mailing address of the Baggage Claims Department at Ben Gurion Airport.)\n##\n(\"entity\"<|>TEL AVIV<|>GEO<|>Tel Aviv is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>ADDRESS<|>REQUIRED DOCUMENT<|>Address refers to the specific location details required for sending claims or correspondence related to baggage.)\n##\n(\"entity\"<|>SERVICE PICKUP AND DELIVERY<|>SERVICE TYPE<|>Service Pickup and Delivery refers to the service provided by various stores to collect and deliver baggage for customers.)\n##\n(\"entity\"<|>BAVLI NEIGHBORHOOD<|>GEO<|>Bavli Neighborhood is a specific area in Tel Aviv where baggage-related services are offered.)\n##\n(\"entity\"<|>HAAILIYA STREET 24<|>REQUIRED DOCUMENT<|>Haaliya Street 24 is the address of Makor Haziud, a store that sells baggage and outdoor equipment.)\n##\n(\"entity\"<|>BIALIK 3<|>REQUIRED DOCUMENT<|>Bialik 3 is the address of WeShoes, a store that may provide services related to baggage.)\n##\n(\"entity\"<|>STEINMAN 20<|>REQUIRED DOCUMENT<|>Steinman 20 is the address of Log In Log Out, an importer of luggage and bags.)\n##\n(\"entity\"<|>SOKOLOV 59<|>REQUIRED DOCUMENT<|>Sokolov 59 is the address of Shin Tik, a service provider related to baggage handling.)\n##\n(\"entity\"<|>IZTHAK RABIN 2<|>REQUIRED DOCUMENT<|>Izthak Rabin 2 is the address of Trek Market, a service provider related to baggage handling.)\n##\n(\"entity\"<|>SHLOMO HA-MELEKH 37<|>REQUIRED DOCUMENT<|>Shlomo Ha-Melekh 37 is the address of WeShoes in Kiryat Ono.)\n##\n(\"entity\"<|>HAMERETZ 6<|>REQUIRED DOCUMENT<|>Hameretz 6 is the address of ARTY Rimon in Petach Tikva.)\n##\n(\"entity\"<|>SERVICE<|>SERVICE TYPE<|>Service refers to the various types of assistance provided to customers regarding baggage handling and claims.)\n##\n(\"entity\"<|>WHATSAPP<|>REQUIRED DOCUMENT<|>WhatsApp is a communication tool used by various stores for customer service related to baggage.)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon – Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE TAG<|>LABEL TYPE<|>A baggage tag is a label attached to luggage that provides information about the owner and destination of the baggage.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS DEPARTMENT<|>SERVICE LOCATION<|>The Baggage Claims Department is responsible for handling reports of damaged baggage and processing claims.)\n##\n(\"entity\"<|>EL AL ISRAEL AIRLINES LTD.<|>AIRLINE<|>EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines.)\n##\n(\"entity\"<|>DIGITAL CONTACT FORM<|>REQUIRED DOCUMENT<|>The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.)\n##\n(\"entity\"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud is a store that specializes in baggage and outdoor equipment.)\n##\n(\"entity\"<|>WE SHOES<|>SERVICE TYPE<|>WeShoes is a store that sells shoes and may also provide related services.)\n##\n(\"entity\"<|>MEMSI TOURING<|>SERVICE TYPE<|>Memsi Touring is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon is a service provider that offers pickup and delivery services for baggage.)\n##\n(\"entity\"<|>SHIN TIK<|>SERVICE TYPE<|>Shin Tik is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>TREK MARKET<|>SERVICE TYPE<|>Trek Market is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>KIRYAT ONO<|>GEO<|>Kiryat Ono is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>RAMAT GAN<|>GEO<|>Ramat Gan is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>GEVATAIM<|>GEO<|>Gevataim is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>BAT YAM<|>GEO<|>Bat Yam is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>HOLON<|>GEO<|>Holon is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>PETACH TIKVA<|>GEO<|>Petach Tikva is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"relationship\"<|>BAGGAGE TAG<|>BAGGAGE CLAIMS DEPARTMENT<|>The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.<|>8)\n##\n(\"relationship\"<|>BAGGAGE CLAIMS DEPARTMENT<|>EL AL ISRAEL AIRLINES LTD.<|>The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.<|>9)\n##\n(\"relationship\"<|>EL AL ISRAEL AIRLINES LTD.<|>BEN GURION AIRPORT<|>EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.<|>9)\n##\n(\"relationship\"<|>DIGITAL CONTACT FORM<|>BAGGAGE CLAIMS DEPARTMENT<|>The Digital Contact Form is used to submit claims to the Baggage Claims Department.<|>7)\n##\n(\"relationship\"<|>MAKOR HAZIUD<|>BAGGAGE CLAIMS DEPARTMENT<|>Makor Haziud may provide equipment that is relevant for baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>WE SHOES<|>BAGGAGE CLAIMS DEPARTMENT<|>WeShoes may provide services related to baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>MEMSI TOURING<|>BAGGAGE CLAIMS DEPARTMENT<|>Memsi Touring may offer services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>ARTY RIMON<|>BAGGAGE CLAIMS DEPARTMENT<|>ARTY Rimon provides pickup and delivery services that may relate to baggage claims.<|>5)\n##\n(\"relationship\"<|>SHIN TIK<|>BAGGAGE CLAIMS DEPARTMENT<|>Shin Tik may provide services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>TREK MARKET<|>BAGGAGE CLAIMS DEPARTMENT<|>Trek Market may offer services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>KIRYAT ONO<|>BAGGAGE CLAIMS DEPARTMENT<|>Kiryat Ono has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>RAMAT GAN<|>BAGGAGE CLAIMS DEPARTMENT<|>Ramat Gan has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>GEVATAIM<|>BAGGAGE CLAIMS DEPARTMENT<|>Gevataim has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>BAT YAM<|>BAGGAGE CLAIMS DEPARTMENT<|>Bat Yam has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>HOLON<|>BAGGAGE CLAIMS DEPARTMENT<|>Holon has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>PETACH TIKVA<|>BAGGAGE CLAIMS DEPARTMENT<|>Petach Tikva has stores that may assist with baggage claims and services.<|>3)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-34b13a49a2744d1b30da86eaee252e4f b/cache/entity_extraction/extract-continuation-0-chat-v2-34b13a49a2744d1b30da86eaee252e4f deleted file mode 100644 index 8e0c76c01049943f985ac8279393503923a2efb7..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-34b13a49a2744d1b30da86eaee252e4f +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>$90<|>FEE STRUCTURE<|>The cost to check a piece of baggage not included in the ticket price is $90 when reserved at the airport.)\n##\n(\"entity\"<|>$5<|>FEE STRUCTURE<|>An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.)\n##\n(\"entity\"<|>50% DISCOUNT<|>POLICY<|>Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.)\n##\n(\"entity\"<|>TICKET TYPE<|>DIMENSION<|>The ticket type determines the baggage allowance and rules applicable to each passenger's reservation.)\n##\n(\"entity\"<|>CHECKED BAGGAGE RULES<|>POLICY<|>Checked baggage rules may vary when several airlines are involved in a flight route.)\n##\n(\"entity\"<|>FREE BAGGAGE ALLOWANCE<|>ALLOWANCE<|>The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.)\n##\n(\"entity\"<|>ADDITIONAL PIECES OF CHECKED BAGGAGE<|>RESTRICTION<|>There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.)\n##\n(\"relationship\"<|>$90<|>CHECKED BAGGAGE<|>The fee of $90 is specifically for checking a piece of baggage not included in the ticket price<|>8)\n##\n(\"relationship\"<|>$5<|>EL AL<|>The additional handling fee of $5 is charged by EL AL for baggage checked through their service center<|>6)\n##\n(\"relationship\"<|>50% DISCOUNT<|>EL AL<|>EL AL offers a 50% discount on baggage fees if purchased online before the flight<|>7)\n##\n(\"relationship\"<|>TICKET TYPE<|>BAGGAGE ALLOWANCE<|>The baggage allowance is determined by the ticket type specified on the reservation<|>8)\n##\n(\"relationship\"<|>CHECKED BAGGAGE RULES<|>EL AL<|>Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL's policies<|>5)\n##\n(\"relationship\"<|>FREE BAGGAGE ALLOWANCE<|>TICKET TYPE<|>The free baggage allowance is based on the ticket type and is specified for each flight segment<|>7)\n##\n(\"relationship\"<|>ADDITIONAL PIECES OF CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Additional pieces of checked baggage incur fees beyond the standard allowance<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n​​Do not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides baggage check-in services and has specific baggage policies for different travel classes.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>TRAVEL CLASS<|>Premium class tickets allow passengers to check up to two pieces of baggage weighing up to 23 kg each.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>TRAVEL CLASS<|>Business class tickets allow passengers to check up to two pieces of baggage weighing up to 32 kg each.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is checked in at the airport and transported in the cargo hold of the aircraft.)\n##\n(\"entity\"<|>CARRY-ON ALLOWANCE<|>ALLOWANCE<|>Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.)\n##\n(\"entity\"<|>23 KG<|>WEIGHT<|>23 kg is the maximum weight allowed for each piece of checked baggage in premium class.)\n##\n(\"entity\"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight allowed for each piece of checked baggage in business class.)\n##\n(\"entity\"<|>ADDITIONAL HANDLING FEE<|>FEE STRUCTURE<|>An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.)\n##\n(\"entity\"<|>EXCESS BAGGAGE<|>RESTRICTION<|>Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance is determined by the ticket type and specifies how much baggage a passenger can check without incurring extra fees.)\n##\n(\"entity\"<|>CODE-SHARE FLIGHTS<|>ROUTE TYPE<|>Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.)\n##\n(\"entity\"<|>MANAGE MY BOOKING<|>SERVICE TYPE<|>Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.)\n##\n(\"entity\"<|>CHECK-IN PROCESS<|>SERVICE TYPE<|>The check-in process is the procedure passengers go through to confirm their presence on a flight and check in their baggage.)\n##\n(\"entity\"<|>FLIGHT SEGMENT<|>TIME PERIOD<|>A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.)\n##\n(\"relationship\"<|>EL AL<|>PREMIUM CLASS<|>EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each<|>8)\n##\n(\"relationship\"<|>EL AL<|>BUSINESS CLASS<|>EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each<|>8)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>PREMIUM CLASS<|>Premium class includes checked baggage allowances<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>BUSINESS CLASS<|>Business class includes checked baggage allowances<|>7)\n##\n(\"relationship\"<|>ADDITIONAL HANDLING FEE<|>EL AL<|>EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center<|>6)\n##\n(\"relationship\"<|>EXCESS BAGGAGE<|>CHECKED BAGGAGE<|>Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees<|>7)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance determines how much checked baggage a passenger can bring<|>8)\n##\n(\"relationship\"<|>CODE-SHARE FLIGHTS<|>CHECKED BAGGAGE<|>Baggage procedures may vary on code-share flights depending on the marketing carrier<|>5)\n##\n(\"relationship\"<|>MANAGE MY BOOKING<|>EL AL<|>Passengers can add baggage via the Manage my booking service provided by EL AL<|>7)\n##\n(\"relationship\"<|>CHECK-IN PROCESS<|>EL AL<|>Passengers can add baggage during the check-in process for their EL AL flight<|>7)\n##\n(\"relationship\"<|>FLIGHT SEGMENT<|>BAGGAGE ALLOWANCE<|>Baggage allowance is specified for each flight segment on the ticket<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-35766684ac86230b2b4b53f6ef38b00f b/cache/entity_extraction/extract-continuation-0-chat-v2-35766684ac86230b2b4b53f6ef38b00f deleted file mode 100644 index 9e3176f7717900b98082cf23820f0be8674f81f8..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-35766684ac86230b2b4b53f6ef38b00f +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>SHLOMO HA-MELEKH<|>PERSON<|>Shlomo Ha-Melekh is a contact person associated with the services mentioned in the document.)\n##\n(\"entity\"<|>RISHON LE ZION<|>CITY<|>Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.)\n##\n(\"entity\"<|>YEHUD<|>CITY<|>Yehud is a city where Moka, a pickup and delivery point, is located.)\n##\n(\"entity\"<|>REHOVOT<|>CITY<|>Rehovot is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"entity\"<|>NES ZIONA<|>CITY<|>Nes Ziona is a city where Makor Haziud operates.)\n##\n(\"entity\"<|>SHOHAM<|>CITY<|>Shoham is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"entity\"<|>RAMLE<|>CITY<|>Ramle is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"entity\"<|>LOD<|>CITY<|>Lod is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"relationship\"<|>SHLOMO HA-MELEKH<|>ARTY RIMON<|>Shlomo Ha-Melekh is a contact person for ARTY Rimon, indicating a direct association<|>8)\n##\n(\"relationship\"<|>RISHON LE ZION<|>RIMON MIZVADOT VE TIKIM<|>Rimon Mizvadot ve Tikim operates in Rishon Le Zion, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>YEHUD<|>MOKA<|>Moka is located in Yehud, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>REHOVOT<|>ARTY RIMON<|>ARTY Rimon provides services in Rehovot, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>NES ZIONA<|>MAKOR HAZIUD<|>Makor Haziud operates in Nes Ziona, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>SHOHAM<|>ARTY RIMON<|>ARTY Rimon provides services in Shoham, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>RAMLE<|>ARTY RIMON<|>ARTY Rimon provides services in Ramle, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>LOD<|>ARTY RIMON<|>ARTY Rimon provides services in Lod, indicating a service location relationship<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Shlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon provides pickup and delivery services for luggage and bags in various locations.)\n##\n(\"entity\"<|>CARGO TIKIM VE MIZVADOT<|>SERVICE TYPE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.)\n##\n(\"entity\"<|>MOKA<|>SERVICE LOCATION<|>Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.)\n##\n(\"entity\"<|>RIMON MIZVADOT VE TIKIM<|>SERVICE TYPE<|>Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.)\n##\n(\"entity\"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud specializes in baggage and outdoor equipment located in Nes Ziona.)\n##\n(\"entity\"<|>GALGAL YAZIV<|>SERVICE TYPE<|>Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.)\n##\n(\"entity\"<|>HAGALGAL<|>SERVICE TYPE<|>Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.)\n##\n(\"entity\"<|>BUGABOO<|>MATERIAL TYPE<|>Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.)\n##\n(\"entity\"<|>DAMAGE TO WHEELCHAIRS<|>RESTRICTION<|>Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers.)\n##\n(\"entity\"<|>IMPORTANT TO KNOW<|>POLICY<|>Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.)\n##\n(\"entity\"<|>DELAY IN RECEIVING BAGGAGE<|>POLICY<|>Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.)\n##\n(\"relationship\"<|>ARTY RIMON<|>CARGO TIKIM VE MIZVADOT<|>Both provide services related to luggage and bags, indicating a potential partnership or competition<|>5)\n##\n(\"relationship\"<|>ARTY RIMON<|>MOKA<|>Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship<|>8)\n##\n(\"relationship\"<|>RIMON MIZVADOT VE TIKIM<|>ARTY RIMON<|>Both provide similar services in different locations, indicating a competitive relationship<|>5)\n##\n(\"relationship\"<|>MAKOR HAZIUD<|>ARTY RIMON<|>Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon<|>4)\n##\n(\"relationship\"<|>GALGAL YAZIV<|>DAMAGE TO WHEELCHAIRS<|>Galgal Yaziv addresses damage to powered mobility scooters, which relates to the restriction on damaged wheelchairs<|>6)\n##\n(\"relationship\"<|>HAGALGAL<|>ARTY RIMON<|>Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon<|>4)\n##\n(\"relationship\"<|>BUGABOO<|>HAGALGAL<|>Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in<|>5)\n##\n(\"relationship\"<|>IMPORTANT TO KNOW<|>ARTY RIMON<|>The policy regarding baggage damage is relevant to the services provided by ARTY Rimon<|>7)\n##\n(\"relationship\"<|>DELAY IN RECEIVING BAGGAGE<|>IMPORTANT TO KNOW<|>The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-38fadd3842cd72148499d8912d24fa68 b/cache/entity_extraction/extract-continuation-0-chat-v2-38fadd3842cd72148499d8912d24fa68 deleted file mode 100644 index 9eefbbf3af4f055d216c89bed138d1b61c69f74c..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-38fadd3842cd72148499d8912d24fa68 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CARGO TERMINAL<|>AIRPORT<|>A cargo terminal is a facility where cargo is handled, stored, and transferred, typically associated with an airport's operations.)\n##\n(\"relationship\"<|>CARGO TERMINAL<|>EL AL CARGO STORE<|>The EL AL Cargo Store operates within the cargo terminal for handling cargo services<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service location for cargo operations associated with EL AL Airlines.)\n##\n(\"relationship\"<|>EL AL CARGO STORE<|>EL AL CARGO STORE<|>The EL AL Cargo Store is a part of EL AL Airlines' cargo services<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-3eb150bb0cb2fe9a71e02de62422d122 b/cache/entity_extraction/extract-continuation-0-chat-v2-3eb150bb0cb2fe9a71e02de62422d122 deleted file mode 100644 index 56580aa80274c5f3a47fdff17c03d8397d853fcc..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-3eb150bb0cb2fe9a71e02de62422d122 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>PETS<|>SPECIAL ITEM<|>Pets are animals that can be transported as either cargo or baggage under specific guidelines.)\n##\n(\"entity\"<|>CARGO<|>ROUTE TYPE<|>Cargo refers to the transportation of goods, including animals, typically handled by the Cargo Division.)\n##\n(\"entity\"<|>BAGGAGE<|>ROUTE TYPE<|>Baggage refers to personal items, including pets, that passengers can take on board the aircraft.)\n##\n(\"entity\"<|>9 KG<|>WEIGHT<|>9 kg is the weight limit for pets to be transported as baggage without additional requirements.)\n##\n(\"entity\"<|>50 KG<|>WEIGHT<|>50 kg is the upper weight limit for pets to be transported as baggage with specific fees.)\n##\n(\"entity\"<|>100 KG<|>WEIGHT<|>100 kg is the maximum weight for pets to be transported as baggage; heavier pets must be transported as cargo.)\n##\n(\"entity\"<|>CARGO TERMINAL<|>SERVICE LOCATION<|>The cargo terminal at Ben Gurion Airport is where animals transported as cargo are released.)\n##\n(\"entity\"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The arrivals hall at Ben Gurion Airport is where animals transported as baggage are released.)\n##\n(\"relationship\"<|>PETS<|>BAGGAGE<|>Pets can be transported as baggage under specific guidelines<|>8)\n##\n(\"relationship\"<|>PETS<|>CARGO<|>Pets can also be transported as cargo depending on their weight and requirements<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>BEN GURION AIRPORT<|>Baggage, including pets, is released at Ben Gurion Airport's arrivals hall<|>7)\n##\n(\"relationship\"<|>CARGO<|>BEN GURION AIRPORT<|>Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t​Europe and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo or baggage.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the airport in Israel where animals are released after transport.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of animals as cargo.)\n##\n(\"entity\"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department determines the conditions under which animals can be transported.)\n##\n(\"entity\"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals as cargo.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Veterinary Services Department is required to transport a pet as cargo.)\n##\n(\"entity\"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed for transporting animals internationally.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is required for pets being transported.)\n##\n(\"entity\"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>REQUIRED DOCUMENT<|>Laboratory results for rabies antibodies are necessary for transporting pets.)\n##\n(\"entity\"<|>COSTS OF TRANSPORTING ANIMALS<|>POLICY<|>The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.)\n##\n(\"entity\"<|>ANIMALS WEIGHING UP TO 9 KG<|>WEIGHT CATEGORY<|>Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>WEIGHT CATEGORY<|>Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>WEIGHT CATEGORY<|>Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING MORE THAN 100 KG<|>WEIGHT CATEGORY<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>EL AL's Cargo Division is responsible for handling the transportation of animals as cargo<|>8)\n##\n(\"relationship\"<|>BEN GURION AIRPORT<|>EL AL<|>Animals transported by EL AL are released at Ben Gurion Airport<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>AUTHORIZATION<|>Authorization from the Veterinary Services Department is required for transporting pets as cargo<|>9)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>BILL OF LADING<|>The Veterinary Services Department determines if a bill of lading is needed for transporting animals<|>6)\n##\n(\"relationship\"<|>EXPORT LICENSE<|>VETERINARY SERVICES DEPARTMENT<|>An export license is required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>CERTIFICATE OF GOOD HEALTH<|>VETERINARY SERVICES DEPARTMENT<|>A certificate of good health is required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>VETERINARY SERVICES DEPARTMENT<|>Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING UP TO 9 KG<|>The cost of transporting animals weighing up to 9 kg is $100 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>The cost of transporting animals weighing between 9 and 50 kg is $200 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>The cost of transporting animals weighing between 50 and 100 kg is $400 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING MORE THAN 100 KG<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division<|>9)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-40cce9bb9b40a333efb22c2eee57f542 b/cache/entity_extraction/extract-continuation-0-chat-v2-40cce9bb9b40a333efb22c2eee57f542 deleted file mode 100644 index 3efd3ffab6b452eecdc64f3f887738d932200a8f..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-40cce9bb9b40a333efb22c2eee57f542 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CANCELLATION<|>Policy<|>Refers to the policy regarding the cancellation of additional services purchased by passengers.)\n##\n(\"entity\"<|>CHANGE<|>Policy<|>Refers to the policy regarding changes made to additional services purchased by passengers.)\n##\n(\"entity\"<|>REFUND<|>Policy<|>Refers to the policy stating that no refund will be given for cancellation or change of additional services.)\n##\n(\"entity\"<|>FULL CHARGE<|>Fee Structure<|>Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.)\n##\n(\"relationship\"<|>CANCELLATION<|>REFUND<|>The cancellation policy states that no refund will be given<|>8)\n##\n(\"relationship\"<|>CHANGE<|>REFUND<|>The change policy states that no refund will be given<|>8)\n##\n(\"relationship\"<|>ADDITIONAL SERVICES<|>FULL CHARGE<|>Ordering additional services will result in a full charge to the passenger<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>AIRLINE<|>Baggage Type<|>Refers to the various airlines that operate flights and their associated baggage policies.)\n##\n(\"entity\"<|>PASSENGER<|>Passenger Type<|>Refers to individuals who travel on flights and are subject to airline policies regarding baggage and services.)\n##\n(\"entity\"<|>ADDITIONAL SERVICES<|>Service Type<|>Refers to extra services that can be ordered by passengers, which may incur additional charges.)\n##\n(\"relationship\"<|>PASSENGER<|>AIRLINE<|>Passengers are subject to the policies of the airline regarding baggage and additional services<|>7)\n##\n(\"relationship\"<|>PASSENGER<|>ADDITIONAL SERVICES<|>Passengers can order additional services, which may incur charges<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-45adbb0dd2272c3eff96e8cb35d01736 b/cache/entity_extraction/extract-continuation-0-chat-v2-45adbb0dd2272c3eff96e8cb35d01736 deleted file mode 100644 index ace8069ede863c02ea899379949c52c2f0ea0e65..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-45adbb0dd2272c3eff96e8cb35d01736 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>PETS<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions set by airlines.)\n##\n(\"entity\"<|>EXOTIC BIRDS<|>SPECIAL ITEM<|>Exotic birds are among the pets that can be transported in the cabin with their owners.)\n##\n(\"entity\"<|>VETERINARY SERVICES<|>ORGANIZATION<|>The Veterinary Services under the Ministry of Agriculture handle the authorization process for transporting pets.)\n##\n(\"entity\"<|>TRANSPORTATION<|>SERVICE TYPE<|>Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.)\n##\n(\"entity\"<|>AUTHORIZATION PROCESS<|>POLICY<|>The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.)\n##\n(\"entity\"<|>LUGGAGE COMPARTMENT<|>CABIN SECTION<|>The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.)\n##\n(\"entity\"<|>SENSITIVITY<|>RESTRICTION<|>Some pets may develop sensitivity and breathing problems during flights, which is a concern for their health.)\n##\n(\"entity\"<|>FLIGHT<|>TIME PERIOD<|>The flight refers to the duration during which pets are transported in the cabin or cargo.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE LOCATION<|>The Cargo Division of EL AL is responsible for handling the transportation of animals as registered cargo.)\n##\n(\"entity\"<|>CHECK-IN COUNTER<|>SERVICE LOCATION<|>The check-in counter is where owners must arrive with their pets for transportation arrangements.)\n##\n(\"entity\"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The Arrivals Hall is where owners can retrieve their pets after they have been transported as checked baggage.)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>MINISTRY OF AGRICULTURE<|>Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations<|>8)\n##\n(\"relationship\"<|>PETS<|>EL AL<|>EL AL has specific policies for transporting pets, including weight limits and conditions<|>7)\n##\n(\"relationship\"<|>EXOTIC BIRDS<|>PETS<|>Exotic birds are classified as pets that can be transported under certain conditions<|>6)\n##\n(\"relationship\"<|>TRANSPORTATION<|>EL AL<|>EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo<|>7)\n##\n(\"relationship\"<|>AUTHORIZATION PROCESS<|>VETERINARY SERVICES<|>The authorization process is managed by the Veterinary Services to ensure compliance with regulations<|>8)\n##\n(\"relationship\"<|>LUGGAGE COMPARTMENT<|>DANGEROUS DOG<|>Dangerous dogs are not allowed in the luggage compartment during transportation<|>6)\n##\n(\"relationship\"<|>SENSITIVITY<|>FLIGHT<|>Sensitivity issues may arise for pets during the flight, affecting their health<|>5)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division of EL AL is responsible for handling registered cargo for pet transportation<|>6)\n##\n(\"relationship\"<|>CHECK-IN COUNTER<|>EL AL<|>Owners must arrive at the check-in counter with their pets for transportation arrangements<|>5)\n##\n(\"relationship\"<|>ARRIVALS HALL<|>CHECKED BAGGAGE<|>Pets transported as checked baggage can be retrieved in the Arrivals Hall<|>5)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Agriculture regulates the transport of pets.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from certain weight limits when transported in the cabin.)\n##\n(\"entity\"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined by Israeli law, are not approved for transportation.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage is a method of transporting animals in certain instances, such as large animals.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is used for transporting animals that are extra-large or flying unaccompanied.)\n##\n(\"entity\"<|>CABIN<|>CABIN SECTION<|>The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.)\n##\n(\"entity\"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture’s Veterinary Services is required to transport an animal.)\n##\n(\"entity\"<|>ANIMAL TESTS<|>RESTRICTION<|>Several animal tests must be performed as part of the authorization process for transporting pets.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>ISRAEL<|>The Ministry of Agriculture is the regulatory authority in Israel for pet transportation<|>8)\n##\n(\"relationship\"<|>EL AL<|>MINISTRY OF AGRICULTURE<|>EL AL must comply with the regulations set by the Ministry of Agriculture regarding pet transportation<|>7)\n##\n(\"relationship\"<|>SERVICE DOG<|>EL AL<|>Service dogs are allowed to be transported under different conditions than other pets on EL AL<|>6)\n##\n(\"relationship\"<|>DANGEROUS DOG<|>EL AL<|>EL AL does not allow dangerous dogs to be transported<|>6)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EL AL<|>EL AL allows certain animals to be transported as checked baggage<|>5)\n##\n(\"relationship\"<|>REGISTERED CARGO<|>EL AL<|>EL AL provides registered cargo services for transporting animals<|>5)\n##\n(\"relationship\"<|>CABIN<|>EL AL<|>EL AL allows pets to be transported in the cabin under specific conditions<|>5)\n##\n(\"relationship\"<|>9KG<|>CABIN<|>The weight limit of 9kg applies to pets transported in the cabin<|>4)\n##\n(\"relationship\"<|>AUTHORIZATION<|>MINISTRY OF AGRICULTURE<|>Authorization is required from the Ministry of Agriculture to transport an animal<|>8)\n##\n(\"relationship\"<|>ANIMAL TESTS<|>AUTHORIZATION<|>Animal tests are part of the authorization process for transporting pets<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-4e13e6c02d295e21e4547eb5956f3388 b/cache/entity_extraction/extract-continuation-0-chat-v2-4e13e6c02d295e21e4547eb5956f3388 deleted file mode 100644 index 80d562fe3902bde5d841bedeb19f5e5117662ba1..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-4e13e6c02d295e21e4547eb5956f3388 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>MAXIMUM WEIGHT<|>Weight<|>Maximum weight refers to the highest allowable weight for baggage as specified by the airline, which is 16 kg for one bag and 20 kg combined.)\n##\n(\"entity\"<|>CHECKED BAGS<|>Baggage Type<|>Checked bags are items that are not taken on board the aircraft but are stored in the plane's cargo hold.)\n##\n(\"entity\"<|>PLANE'S BELLY<|>Service Location<|>The plane's belly refers to the cargo hold of the aircraft where checked bags are stored.)\n##\n(\"entity\"<|>NO CHARGE<|>Fee Structure<|>No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.)\n##\n(\"entity\"<|>RECOMMENDATION<|>Policy<|>A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.)\n##\n(\"relationship\"<|>CARRY-ON BAGS<|>CHECKED BAGS<|>If no free space is available, carry-on bags will be checked to the plane's belly<|>6)\n##\n(\"relationship\"<|>MAXIMUM WEIGHT<|>16 KG<|>The maximum weight for one bag is defined as 16 kg<|>8)\n##\n(\"relationship\"<|>MAXIMUM WEIGHT<|>20 KG<|>The maximum combined weight for all bags is defined as 20 kg<|>8)\n##\n(\"relationship\"<|>CHECKED BAGS<|>PLANE'S BELLY<|>Checked bags are stored in the plane's belly during the flight<|>9)\n##\n(\"relationship\"<|>NO CHARGE<|>CHECKED BAGS<|>Checked bags will incur no charge if carry-on bags are checked due to lack of space<|>7)\n##\n(\"relationship\"<|>RECOMMENDATION<|>CARRY-ON BAGS<|>The recommendation advises passengers to remove certain items from carry-on bags for easy access<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGS<|>Baggage Type<|>Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.)\n##\n(\"entity\"<|>16 KG<|>Weight<|>16 kg is the maximum weight allowed for one bag as per airline policy.)\n##\n(\"entity\"<|>20 KG<|>Weight<|>20 kg is the combined maximum weight limit for all bags as per airline policy.)\n##\n(\"entity\"<|>CARRY-ON BAGS<|>Baggage Type<|>Carry-on bags are personal items that passengers can take on board the aircraft, subject to weight and size restrictions.)\n##\n(\"entity\"<|>MEDICATIONS<|>Valuable Item<|>Medications are essential items that passengers are advised to keep accessible during flights.)\n##\n(\"entity\"<|>PASSPORTS<|>Valuable Item<|>Passports are required documents for international travel and should be easily accessible during flights.)\n##\n(\"entity\"<|>VALUABLES<|>Valuable Item<|>Valuables refer to personal items of significant worth that should be kept accessible during flights.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as phones and laptops that passengers are advised to keep accessible during flights.)\n##\n(\"relationship\"<|>BAGS<|>16 KG<|>The weight limit for one bag is set at 16 kg as per airline policy<|>8)\n##\n(\"relationship\"<|>BAGS<|>20 KG<|>The combined weight limit for all bags is set at 20 kg as per airline policy<|>8)\n##\n(\"relationship\"<|>CARRY-ON BAGS<|>BAGS<|>Carry-on bags are a type of baggage that passengers can take on board<|>9)\n##\n(\"relationship\"<|>MEDICATIONS<|>CARRY-ON BAGS<|>Medications should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>PASSPORTS<|>CARRY-ON BAGS<|>Passports should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>VALUABLES<|>CARRY-ON BAGS<|>Valuables should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>ELECTRONIC DEVICES<|>CARRY-ON BAGS<|>Electronic devices should be kept in carry-on bags for easy access during the flight<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-4f0f95648344d53ae84a70da51c68746 b/cache/entity_extraction/extract-continuation-0-chat-v2-4f0f95648344d53ae84a70da51c68746 deleted file mode 100644 index 3be18c3e010071e6826a2ed53468b3ba4c7c6a23..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-4f0f95648344d53ae84a70da51c68746 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>PETS<|>SPECIAL ITEM<|>Pets are animals that can be transported as cargo or baggage, requiring specific documentation and guidelines for travel.)\n##\n(\"entity\"<|>DOGS<|>SPECIAL ITEM<|>Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.)\n##\n(\"entity\"<|>HIGH-RISK COUNTRY<|>RESTRICTION<|>A designation given to countries, such as Israel, where additional regulations apply for transporting certain animals.)\n##\n(\"entity\"<|>AIRPORT FACILITIES<|>SERVICE LOCATION<|>Airport facilities in the United States may incur additional charges for inspecting and releasing pets.)\n##\n(\"entity\"<|>DOCUMENTS AND AUTHORIZATIONS<|>REQUIRED DOCUMENT<|>Documents and authorizations are necessary for transporting pets and must be presented at check-in.)\n##\n(\"entity\"<|>TRANSPORTING ANIMALS<|>SERVICE TYPE<|>The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.)\n##\n(\"entity\"<|>US<|>GEO<|>The United States has specific regulations regarding the transportation of pets, particularly dogs.)\n##\n(\"entity\"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health in Israel is responsible for approving the entry of animals into the country.)\n##\n(\"relationship\"<|>EL AL<|>PETS<|>EL AL provides services for transporting pets as cargo and requires specific documentation for their travel<|>8)\n##\n(\"relationship\"<|>DOGS<|>PETS<|>Dogs are classified as pets that require special regulations for transportation<|>7)\n##\n(\"relationship\"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health in Israel regulates the entry of animals into the country<|>8)\n##\n(\"relationship\"<|>US<|>DOGS<|>The US has specific regulations regarding the transportation of dogs<|>7)\n##\n(\"relationship\"<|>AIRPORT FACILITIES<|>DOGS<|>Airport facilities may charge additional fees for inspecting and releasing dogs<|>6)\n##\n(\"relationship\"<|>DOCUMENTS AND AUTHORIZATIONS<|>PETS<|>Documents and authorizations are required for transporting pets<|>8)\n##\n(\"relationship\"<|>TRANSPORTING ANIMALS<|>CARGO DIVISION<|>The Cargo Division specializes in transporting animals, including pets<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo and requires specific documentation for pet travel.)\n##\n(\"entity\"<|>CDC<|>ORGANIZATION<|>The CDC sets regulations regarding the transportation of dogs to the US and provides guidelines that must be followed by passengers.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is defined as a high-risk country for transporting dogs according to the CDC.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of pets as cargo and requires specific documentation for this service.)\n##\n(\"entity\"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals, especially when they weigh more than 9 kg.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is necessary for transporting pets to ensure they are fit for travel.)\n##\n(\"entity\"<|>TRANSPORT AUTHORIZATION<|>REQUIRED DOCUMENT<|>Transport authorization from the destination country authorities is required for transporting pets.)\n##\n(\"entity\"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed to transport animals out of the country.)\n##\n(\"entity\"<|>MEASUREMENTS OF TRANSPORT CAGE<|>DIMENSION<|>The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.)\n##\n(\"relationship\"<|>EL AL<|>CDC<|>EL AL must comply with CDC regulations for transporting dogs to the US<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL is responsible for handling pet transportation services<|>7)\n##\n(\"relationship\"<|>CARGO DIVISION<|>BILL OF LADING<|>The Cargo Division requires a bill of lading for transporting animals over 9 kg<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>CERTIFICATE OF GOOD HEALTH<|>The Cargo Division requires a certificate of good health for pets being transported<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>TRANSPORT AUTHORIZATION<|>The Cargo Division requires transport authorization from destination authorities for pet transport<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EXPORT LICENSE<|>The Cargo Division requires an export license for transporting animals<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>MEASUREMENTS OF TRANSPORT CAGE<|>The Cargo Division requires the measurements of the transport cage for compliance<|>6)\n##\n(\"relationship\"<|>ISRAEL<|>CDC<|>Israel is classified as a high-risk country by the CDC for transporting dogs<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-4f5473e614ec744d98363e544e7486f8 b/cache/entity_extraction/extract-continuation-0-chat-v2-4f5473e614ec744d98363e544e7486f8 deleted file mode 100644 index 5aa9c6316e593450052070320041fabb2240c716..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-4f5473e614ec744d98363e544e7486f8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CHECKED LUGGAGE<|>Baggage Type<|>Checked luggage refers to bags that are transported in the aircraft's cargo hold rather than in the passenger cabin.)\n##\n(\"entity\"<|>TROLLEY<|>Baggage Type<|>A trolley is a type of carry-on bag that can be stored in the overhead compartments of an aircraft.)\n##\n(\"entity\"<|>FLIGHT TICKET TERMS<|>Policy<|>Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.)\n##\n(\"entity\"<|>BOOKING MANAGEMENT<|>Service Location<|>Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.)\n##\n(\"entity\"<|>NORTH AMERICA<|>GEO<|>North America is a region where specific carry-on baggage policies apply for flights operated by the airline.)\n##\n(\"entity\"<|>MAXIMUM DIMENSIONS<|>Dimension<|>Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.)\n##\n(\"entity\"<|>MAXIMUM WEIGHT<|>Weight<|>Maximum weight refers to the heaviest allowable weight for carry-on bags and personal bags for boarding.)\n##\n(\"relationship\"<|>CHECKED LUGGAGE<|>CARRY-ON BAGGAGE<|>Checked luggage is different from carry-on baggage, which is allowed in the passenger cabin<|>7)\n##\n(\"relationship\"<|>TROLLEY<|>CARRY-ON BAGGAGE<|>A trolley is a specific type of carry-on baggage that can be stored in overhead compartments<|>8)\n##\n(\"relationship\"<|>FLIGHT TICKET TERMS<|>CARRY-ON BAGGAGE<|>Flight ticket terms provide details on the carry-on baggage policies applicable to passengers<|>6)\n##\n(\"relationship\"<|>BOOKING MANAGEMENT<|>CARRY-ON BAGGAGE<|>Booking management allows passengers to check their carry-on baggage allowances and policies<|>6)\n##\n(\"relationship\"<|>NORTH AMERICA<|>CARRY-ON BAGGAGE<|>Specific carry-on baggage policies apply to flights from/to North America<|>5)\n##\n(\"relationship\"<|>MAXIMUM DIMENSIONS<|>CARRY-ON BAGGAGE<|>Maximum dimensions are critical for determining what carry-on baggage is allowed<|>8)\n##\n(\"relationship\"<|>MAXIMUM WEIGHT<|>CARRY-ON BAGGAGE<|>Maximum weight is critical for determining what carry-on baggage is allowed<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n(\"entity\"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat to maximize cabin space.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights with specific carry-on baggage policies.)\n##\n(\"entity\"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights with specific carry-on baggage policies.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n(\"entity\"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status affects eligibility for carry-on baggage allowances.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n(\"relationship\"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights<|>7)\n##\n(\"relationship\"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights<|>7)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n(\"relationship\"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Membership in the Matmid Frequent Flyer Club affects carry-on baggage eligibility<|>5)\n##\n(\"relationship\"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a key factor in determining the eligibility of carry-on baggage<|>8)\n##\n(\"relationship\"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are a key factor in determining the eligibility of carry-on baggage<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-4f76f2c003cb7c9d41c77c0a4366a8fc b/cache/entity_extraction/extract-continuation-0-chat-v2-4f76f2c003cb7c9d41c77c0a4366a8fc deleted file mode 100644 index 73332b8e39f0f0b5749c6b3b2a2c1cb8cdeef9a4..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-4f76f2c003cb7c9d41c77c0a4366a8fc +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>50 KG<|>Weight<|>The maximum weight limit for checked baggage, including special items like ski equipment, is 50 kg.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>The total maximum dimensions (length + height + width) for checked baggage, including ski equipment, must not exceed 277 cm.)\n##\n(\"entity\"<|>MOTORIZED BICYCLES<|>Prohibited Item<|>Motorized bicycles are not allowed to be transported as checked baggage.)\n##\n(\"entity\"<|>EXCEPTIONAL CASES<|>Exemption<|>Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.)\n##\n(\"entity\"<|>EL AL AIRCRAFT<|>Aircraft Type<|>The information provided applies specifically to EL AL flights on EL AL aircraft.)\n##\n(\"entity\"<|>DESTINATION COUNTRY<|>GEO<|>The country to which the passenger is traveling, which may have specific regulations regarding the transport of equipment.)\n##\n(\"entity\"<|>PASSENGER<|>Passenger Type<|>Individuals traveling on EL AL flights who must comply with baggage regulations.)\n##\n(\"relationship\"<|>50 KG<|>CHECKED BAGGAGE<|>The maximum weight limit for checked baggage is 50 kg<|>9)\n##\n(\"relationship\"<|>277 CM<|>CHECKED BAGGAGE<|>The total dimensions for checked baggage must not exceed 277 cm<|>9)\n##\n(\"relationship\"<|>MOTORIZED BICYCLES<|>BICYCLE<|>Motorized bicycles are prohibited from being transported as checked baggage<|>10)\n##\n(\"relationship\"<|>EXCEPTIONAL CASES<|>BICYCLE<|>Transport of bicycles may be allowed in exceptional cases with prior approval<|>6)\n##\n(\"relationship\"<|>EL AL AIRCRAFT<|>CHECKED BAGGAGE<|>The baggage regulations apply specifically to EL AL aircraft<|>7)\n##\n(\"relationship\"<|>DESTINATION COUNTRY<|>PASSENGER<|>Passengers must comply with the regulations of the destination country regarding baggage<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, subject to size and weight restrictions.)\n##\n(\"entity\"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Charges applied when baggage exceeds the permitted size and weight dimensions for checked baggage.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>US dollars are the currency used for displaying prices related to baggage fees and charges.)\n##\n(\"entity\"<|>LOCAL CURRENCY<|>Currency<|>Local currency refers to the currency accepted at specific airports for payment of fees, which may vary by location.)\n##\n(\"entity\"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment includes one pair of skis, one pair of poles, and one pair of ski boots, which can be transported under specific conditions.)\n##\n(\"entity\"<|>SNOWBOARD EQUIPMENT<|>Special Item<|>Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.)\n##\n(\"entity\"<|>BICYCLE<|>Special Item<|>A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.)\n##\n(\"entity\"<|>LITE FARE TICKET<|>Travel Class<|>A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that has specific regulations regarding the transport of baggage, including special items like ski equipment and bicycles.)\n##\n(\"entity\"<|>CARGO DIVISION<|>Service Location<|>The Cargo Division of EL AL handles special requests and approvals for transporting oversized or special items.)\n##\n(\"entity\"<|>EL AL CALL CENTER<|>Service Location<|>The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.)\n##\n(\"entity\"<|>PERMITTED DIMENSIONS<|>Restriction<|>The maximum size and weight limits that checked baggage and special items must adhere to for transport.)\n##\n(\"entity\"<|>PACKING REGULATIONS<|>Policy<|>Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions<|>9)\n##\n(\"relationship\"<|>US DOLLARS<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges are displayed in US dollars<|>7)\n##\n(\"relationship\"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE CHARGES<|>At some airports, payment for excess baggage charges is allowed only in local currency<|>5)\n##\n(\"relationship\"<|>SKI EQUIPMENT<|>CHECKED BAGGAGE<|>Ski equipment can be included in checked baggage under specific conditions<|>8)\n##\n(\"relationship\"<|>SNOWBOARD EQUIPMENT<|>CHECKED BAGGAGE<|>Snowboard equipment can be included in checked baggage under specific conditions<|>8)\n##\n(\"relationship\"<|>BICYCLE<|>CHECKED BAGGAGE<|>A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions<|>8)\n##\n(\"relationship\"<|>LITE FARE TICKET<|>SKI EQUIPMENT<|>Ski equipment transport does not apply on LITE fare tickets<|>6)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL manages special requests for transporting oversized items<|>7)\n##\n(\"relationship\"<|>BICYCLE<|>CARGO DIVISION<|>Transport of bicycles requires pre-approval from the Cargo Division<|>6)\n##\n(\"relationship\"<|>BICYCLE<|>EL AL CALL CENTER<|>Pre-approval for transporting bicycles must be obtained from the EL AL call center<|>6)\n##\n(\"relationship\"<|>PERMITTED DIMENSIONS<|>CHECKED BAGGAGE<|>Checked baggage must meet the permitted dimensions for transport<|>9)\n##\n(\"relationship\"<|>PACKING REGULATIONS<|>BICYCLE<|>Bicycles must be packed according to specific packing regulations to be transported<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-5a1363e6517cb956ae51b23bb812ee79 b/cache/entity_extraction/extract-continuation-0-chat-v2-5a1363e6517cb956ae51b23bb812ee79 deleted file mode 100644 index 5b74034c4297b1e5fedbc84ca38a4f09eb06b58d..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-5a1363e6517cb956ae51b23bb812ee79 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>AEROSOLS<|>PROHIBITED ITEM<|>Aerosols are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n(\"entity\"<|>GELS<|>PROHIBITED ITEM<|>Gels are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n(\"entity\"<|>CREAMS<|>PROHIBITED ITEM<|>Creams are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n(\"entity\"<|>BABY FOOD<|>SPECIAL ITEM<|>Baby food is a special item that does not have to be packed in the resealable plastic bag but must be presented at the security checkpoint.)\n##\n(\"entity\"<|>DUTY FREE<|>RESTRICTION<|>Duty-free products cannot be purchased if they are prohibited aboard the aircraft, even for connecting flights.)\n##\n(\"entity\"<|>SECURITY CHECKPOINT<|>SERVICE LOCATION<|>Location where passengers must present their carry-on items, including liquids, for inspection before boarding.)\n##\n(\"entity\"<|>CONNECTING FLIGHT<|>ROUTE TYPE<|>Type of flight that may have additional restrictions regarding the carrying of liquids.)\n##\n(\"entity\"<|>PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for carrying liquids in carry-on luggage.)\n##\n(\"entity\"<|>PERMITTED AMOUNT<|>RESTRICTION<|>The maximum amount of liquids allowed in carry-on bags, which is subject to specific guidelines.)\n##\n(\"entity\"<|>GUIDELINES<|>POLICY<|>Updated guidelines that dictate the rules for carrying liquids in carry-on bags.)\n##\n(\"entity\"<|>FLIGHT<|>ROUTE TYPE<|>Traveling by air, which is subject to regulations regarding the carrying of liquids.)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​\n​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n(\"entity\"<|>ISRAEL<|>COUNTRY<|>Country from which flights are departing and has specific guidelines for carrying liquids in carry-on bags.)\n##\n(\"entity\"<|>U.S<|>COUNTRY<|>Country with specific guidelines regarding the carrying of liquids in handbags.)\n##\n(\"entity\"<|>100 ML<|>MEASUREMENT UNIT<|>Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.)\n##\n(\"entity\"<|>3.4 OZ<|>MEASUREMENT UNIT<|>Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.)\n##\n(\"entity\"<|>CLEAR RESEALABLE PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.)\n##\n(\"entity\"<|>DOCTOR'S NOTE<|>REQUIRED DOCUMENT<|>Document required for carrying medications and special food products at the security checkpoint.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>Airline that states it is not responsible for any liquids confiscated from passengers at the airport.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>U.S<|>The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.<|>8)\n##\n(\"relationship\"<|>100 ML<|>3.4 OZ<|>100 ml is equivalent to 3.4 oz, which is the maximum volume allowed for liquids in carry-on bags.<|>9)\n##\n(\"relationship\"<|>CLEAR RESEALABLE PLASTIC BAG<|>LIQUIDS IN CARRY-ON BAGS<|>A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.<|>9)\n##\n(\"relationship\"<|>DOCTOR'S NOTE<|>LIQUIDS IN CARRY-ON BAGS<|>A doctor's note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.<|>8)\n##\n(\"relationship\"<|>EL AL<|>LIQUIDS IN CARRY-ON BAGS<|>EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-60a8ad3d22d788304784ab761aa46707 b/cache/entity_extraction/extract-continuation-0-chat-v2-60a8ad3d22d788304784ab761aa46707 deleted file mode 100644 index c4bb49d5b690c5f185555c3b255db62a7c9d96aa..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-60a8ad3d22d788304784ab761aa46707 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment refers to items specifically designed for skiing, which may have additional transport benefits when flying.)\n##\n(\"entity\"<|>SNOWBOARDING EQUIPMENT<|>Special Item<|>Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.)\n##\n(\"entity\"<|>COMPLIMENTARY TRANSPORT<|>Policy<|>Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.)\n##\n(\"entity\"<|>CALL CENTER APPROVAL<|>Required Document<|>Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is the airline providing specific guidelines for transporting sporting equipment and other baggage types.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of the aircraft, including sporting equipment under certain conditions.)\n##\n(\"entity\"<|>CARGO<|>Service Type<|>Cargo refers to the service provided for transporting items that exceed standard baggage limits, including sporting equipment.)\n##\n(\"relationship\"<|>SKI EQUIPMENT<|>COMPLIMENTARY TRANSPORT<|>Ski equipment may qualify for complimentary transport under specific conditions set by the airline.<|>7)\n##\n(\"relationship\"<|>SNOWBOARDING EQUIPMENT<|>COMPLIMENTARY TRANSPORT<|>Snowboarding equipment may also qualify for complimentary transport under specific conditions set by the airline.<|>7)\n##\n(\"relationship\"<|>EL AL<|>CHECKED BAGGAGE<|>EL AL provides guidelines for transporting checked baggage, including sporting equipment.<|>8)\n##\n(\"relationship\"<|>CALL CENTER APPROVAL<|>OVERWEIGHT BAGGAGE<|>Call center approval is necessary for transporting overweight baggage, ensuring compliance with airline policies.<|>6)\n##\n(\"relationship\"<|>CARGO<|>SPORTING EQUIPMENT<|>Cargo services are available for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment includes items like skis, snowboards, and bicycles that can be transported on flights under specific conditions.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows complimentary transport of sports equipment under certain conditions, excluding Lite fares.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a travel class that allows complimentary transport of sports equipment under specific conditions.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the total measurements (length + width + height) of the sports equipment that must not exceed specified limits for transport.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum allowable weight of sports equipment for transport, which varies by travel class.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division provides services for transporting oversized or separately sent sports equipment as cargo.)\n##\n(\"entity\"<|>CALL CENTER<|>Service Location<|>The call center is a service location where passengers can contact for approval regarding overweight baggage.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>Restriction<|>Overweight baggage refers to items that exceed the standard weight limits and require special approval for transport.)\n##\n(\"entity\"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports items brought beyond the standard baggage allowance.)\n##\n(\"entity\"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n(\"entity\"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy and Premium Class.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum total measurement limit for sports equipment to be sent as overweight baggage.)\n##\n(\"entity\"<|>190 CM<|>Linear Dimension<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.)\n##\n(\"entity\"<|>LITE FARES<|>Restriction<|>Lite fares are a type of Economy Class fare that does not allow for complimentary transport of sports equipment.)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment with different weight limits compared to Economy and Premium Class.<|>8)\n##\n(\"relationship\"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are a critical factor in determining whether sporting equipment can be transported as checked baggage.<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key restriction that determines if sporting equipment can be transported in the specified travel classes.<|>9)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an alternative for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n##\n(\"relationship\"<|>CALL CENTER<|>OVERWEIGHT BAGGAGE<|>The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.<|>6)\n##\n(\"relationship\"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to items that can be transported beyond the standard baggage allowance.<|>5)\n##\n(\"relationship\"<|>32 KG<|>BUSINESS CLASS<|>32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n(\"relationship\"<|>30 KG<|>ECONOMY CLASS<|>30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n(\"relationship\"<|>277 CM<|>OVERWEIGHT BAGGAGE<|>277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.<|>8)\n##\n(\"relationship\"<|>190 CM<|>SPORTING EQUIPMENT<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.<|>8)\n##\n(\"relationship\"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a restriction within Economy Class that affects the transport of sporting equipment.<|>4)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-65eedc9d1870ac5e0b0b4e3de171632d b/cache/entity_extraction/extract-continuation-0-chat-v2-65eedc9d1870ac5e0b0b4e3de171632d deleted file mode 100644 index 5dcd139212ac5596d380234cbb1c4e3265a111c5..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-65eedc9d1870ac5e0b0b4e3de171632d +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>DOG<|>SPECIAL ITEM<|>Dogs are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n(\"entity\"<|>CAT<|>SPECIAL ITEM<|>Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n(\"entity\"<|>EXOTIC BIRD<|>SPECIAL ITEM<|>Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n(\"entity\"<|>I.D.F SOLDIER<|>PASSENGER TYPE<|>I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.)\n##\n(\"entity\"<|>SHELL SHOCK<|>RESTRICTION<|>Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.)\n##\n(\"entity\"<|>CARRYING CASE<|>MATERIAL TYPE<|>The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.)\n##\n(\"entity\"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.)\n##\n(\"relationship\"<|>DOG<|>PASSENGER CABIN<|>Dogs can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>CAT<|>PASSENGER CABIN<|>Cats can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>EXOTIC BIRD<|>PASSENGER CABIN<|>Exotic birds can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>I.D.F SOLDIER<|>SERVICE DOG<|>I.D.F soldiers may transport service dogs at no additional cost under specific conditions.<|>9)\n##\n(\"relationship\"<|>SHELL SHOCK<|>SERVICE DOG<|>Passengers experiencing shell shock may qualify to transport service dogs at no additional cost.<|>8)\n##\n(\"relationship\"<|>CARRYING CASE<|>PET<|>The carrying case is required for transporting pets, and its weight is included in the transport cost.<|>7)\n##\n(\"relationship\"<|>FLIGHT TICKET<|>PET<|>A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.<|>6)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing \"shell shock\" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CARGO DIVISION<|>ORGANIZATION<|>The Cargo Division is responsible for managing transport costs and guidelines for cargo, including pets.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the passenger cabin based on size, weight, and permits.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for transporting pets and service dogs on flights.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs can accompany passengers with special needs or military personnel and must meet specific requirements for transport.)\n##\n(\"entity\"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is required for transporting service dogs and must be provided by the passenger.)\n##\n(\"entity\"<|>TRANSPORT CAGE GUIDELINES<|>POLICY<|>Guidelines that outline the requirements for transport cages used for pets during flights.)\n##\n(\"entity\"<|>PASSENGER CABIN<|>CABIN SECTION<|>The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.)\n##\n(\"entity\"<|>WEIGHT<|>DIMENSION<|>Weight is a factor in determining the cost of transporting pets, including the animal, carrying case, and food.)\n##\n(\"entity\"<|>ALLOWANCE<|>ALLOWANCE<|>The permitted baggage allowance does not include the weight of pets being transported.)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division provides transport cost guidelines and policies for EL AL regarding cargo, including pets.<|>7)\n##\n(\"relationship\"<|>PET<|>PASSENGER CABIN<|>Pets can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>PASSENGER CABIN<|>Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.<|>9)\n##\n(\"relationship\"<|>VETERINARY CERTIFICATE<|>SERVICE DOG<|>A veterinary certificate is required for the transport of service dogs.<|>8)\n##\n(\"relationship\"<|>PET<|>ALLOWANCE<|>The weight of pets is not included in the permitted baggage allowance, affecting transport costs.<|>6)\n##\n(\"relationship\"<|>TRANSPORT CAGE GUIDELINES<|>PET<|>Transport cage guidelines provide the necessary requirements for transporting pets safely.<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-781690fa41dc371ae594717c1e00fb8b b/cache/entity_extraction/extract-continuation-0-chat-v2-781690fa41dc371ae594717c1e00fb8b deleted file mode 100644 index 3f58dd7251760cf255b719b721bc2055ff990046..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-781690fa41dc371ae594717c1e00fb8b +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>ACIDS<|>PROHIBITED ITEM<|>Acids are classified as corrosive substances and are prohibited on aircraft due to safety concerns.)\n##\n(\"entity\"<|>ALKALIS<|>PROHIBITED ITEM<|>Alkalis are classified as corrosive substances and are prohibited on aircraft due to safety concerns.)\n##\n(\"entity\"<|>WET CELL BATTERIES<|>PROHIBITED ITEM<|>Wet cell batteries are classified as corrosive substances and are prohibited on aircraft.)\n##\n(\"entity\"<|>ITEMS CONTAINING MERCURY<|>PROHIBITED ITEM<|>Items containing mercury are classified as dangerous goods and are prohibited on aircraft.)\n##\n(\"entity\"<|>LIGHT AMMUNITION<|>RESTRICTED ITEM<|>Light ammunition is restricted on aircraft and may be subject to specific regulations.)\n##\n(\"entity\"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials such as hydrogen peroxide and bleaching powders are prohibited on aircraft.)\n##\n(\"entity\"<|>POISONS<|>PROHIBITED ITEM<|>Poisons, including insecticides and herbicides, are classified as dangerous goods and are prohibited on aircraft.)\n##\n(\"entity\"<|>INFECTIOUS SUBSTANCES<|>PROHIBITED ITEM<|>Infectious substances, including live virus materials, are classified as dangerous goods and are prohibited on aircraft.)\n##\n(\"entity\"<|>MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>Magnetic materials that can harm people or the environment are prohibited on aircraft.)\n##\n(\"relationship\"<|>ACIDS<|>CORROSIVES<|>Acids are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>ALKALIS<|>CORROSIVES<|>Alkalis are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>WET CELL BATTERIES<|>CORROSIVES<|>Wet cell batteries are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>ITEMS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Items containing mercury are classified as dangerous goods and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Both oxidizing materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>POISONS<|>INFECTIOUS SUBSTANCES<|>Both poisons and infectious substances are classified as prohibited items on aircraft<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft.)\n##\n(\"entity\"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may contain batteries that are classified as dangerous goods and must be handled according to airline regulations.)\n##\n(\"entity\"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may include batteries and other components that are classified as dangerous goods.)\n##\n(\"entity\"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their dangerous nature.)\n##\n(\"entity\"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosive substances like acids and wet cell batteries are prohibited on aircraft.)\n##\n(\"entity\"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are prohibited on aircraft.)\n##\n(\"entity\"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to safety concerns.)\n##\n(\"entity\"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are prohibited on aircraft for safety reasons.)\n##\n(\"entity\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can harm people or the environment.)\n##\n(\"entity\"<|>SPARE BATTERIES<|>ALLOWANCE<|>Spare batteries must be protected from damage and short circuit when taken aboard an aircraft.)\n##\n(\"entity\"<|>DRY CELL ALKALINE BATTERIES<|>ALLOWANCE<|>Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.)\n##\n(\"entity\"<|>LITHIUM-ION BATTERIES<|>ALLOWANCE<|>Lithium-ion batteries, including consumer-grade types, are allowed aboard aircraft with specific watt-hour limits.)\n##\n(\"entity\"<|>PORTABLE CHARGERS<|>ALLOWANCE<|>Portable chargers are considered batteries and may be taken aboard aircraft under certain conditions.)\n##\n(\"relationship\"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries that are classified as dangerous goods and must be handled accordingly<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may include batteries that are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Both corrosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Both explosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Both radioactive materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>Both high-strength magnetic materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>SPARE BATTERIES<|>LITHIUM-ION BATTERIES<|>Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions<|>6)\n##\n(\"relationship\"<|>DRY CELL ALKALINE BATTERIES<|>LITHIUM-ION BATTERIES<|>Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-84b378de004aac4ff7a1c3ee3f803ef7 b/cache/entity_extraction/extract-continuation-0-chat-v2-84b378de004aac4ff7a1c3ee3f803ef7 deleted file mode 100644 index f512ce342e767ad144d63232a0b13d87177c926a..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-84b378de004aac4ff7a1c3ee3f803ef7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BUTANE<|>DANGEROUS GOOD<|>Butane is a type of compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its flammability.)\n##\n(\"entity\"<|>OXYGEN<|>DANGEROUS GOOD<|>Oxygen is a compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its potential hazards.)\n##\n(\"entity\"<|>AQUALUNG CYLINDERS<|>DANGEROUS GOOD<|>Aqualung cylinders are classified as dangerous goods and are prohibited on aircraft due to their compressed gas content.)\n##\n(\"entity\"<|>COMPRESSED GAS CYLINDERS<|>DANGEROUS GOOD<|>Compressed gas cylinders are classified as dangerous goods and are prohibited on aircraft due to their potential hazards.)\n##\n(\"entity\"<|>ACIDS<|>DANGEROUS GOOD<|>Acids are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>ALKALIS<|>DANGEROUS GOOD<|>Alkalis are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>WET CELL BATTERIES<|>DANGEROUS GOOD<|>Wet cell batteries are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>MATERIALS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Materials containing mercury are classified as dangerous goods and are prohibited on aircraft due to their toxicity.)\n##\n(\"entity\"<|>LIGHT AMMUNITION<|>RESTRICTED ITEM<|>Light ammunition is restricted on aircraft and may be subject to specific regulations.)\n##\n(\"entity\"<|>FLAMMABLE SOLIDS<|>DANGEROUS GOOD<|>Flammable solids are classified as dangerous goods and are prohibited on aircraft due to their potential to ignite.)\n##\n(\"relationship\"<|>BUTANE<|>COMPRESSED GASES<|>Butane is a type of compressed gas that is classified as a dangerous good<|>8)\n##\n(\"relationship\"<|>OXYGEN<|>COMPRESSED GASES<|>Oxygen is a type of compressed gas that is classified as a dangerous good<|>8)\n##\n(\"relationship\"<|>AQUALUNG CYLINDERS<|>COMPRESSED GASES<|>Aqualung cylinders are classified as dangerous goods due to their compressed gas content<|>8)\n##\n(\"relationship\"<|>COMPRESSED GAS CYLINDERS<|>COMPRESSED GASES<|>Compressed gas cylinders are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>ACIDS<|>CORROSIVES<|>Acids are classified as corrosives and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>ALKALIS<|>CORROSIVES<|>Alkalis are classified as corrosives and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>WET CELL BATTERIES<|>CORROSIVES<|>Wet cell batteries are classified as corrosives and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>MATERIALS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Materials containing mercury are classified as dangerous goods and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>LIGHT AMMUNITION<|>EXPLOSIVES<|>Light ammunition is restricted on aircraft and may be subject to specific regulations<|>5)\n##\n(\"relationship\"<|>FLAMMABLE SOLIDS<|>FLAMMABLE LIQUIDS<|>Flammable solids are classified as dangerous goods and are prohibited on aircraft<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when boarding a flight.)\n##\n(\"entity\"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may be considered dangerous goods due to their lithium batteries and require special handling.)\n##\n(\"entity\"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may contain batteries or other components classified as dangerous goods.)\n##\n(\"entity\"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their flammability and potential hazards.)\n##\n(\"entity\"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosives like acids and wet cell batteries are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are forbidden on aircraft for safety reasons.)\n##\n(\"entity\"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to their potential to ignite.)\n##\n(\"entity\"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are forbidden on aircraft due to safety and health risks.)\n##\n(\"entity\"<|>BRIEFCASES WITH ALARM DEVICES<|>PROHIBITED ITEM<|>Briefcases with installed alarm devices are prohibited on aircraft for security reasons.)\n##\n(\"entity\"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials like hydrogen peroxide are prohibited on aircraft due to their reactive nature.)\n##\n(\"entity\"<|>POISONS<|>PROHIBITED ITEM<|>Poisons and infectious substances are forbidden on aircraft due to their hazardous effects on health.)\n##\n(\"entity\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can interfere with navigation and safety equipment.)\n##\n(\"relationship\"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries, which are classified as dangerous goods and require special handling<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may contain batteries, which are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Corrosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Explosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Radioactive materials and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>BRIEFCASES WITH ALARM DEVICES<|>FLAMMABLE LIQUIDS<|>Both briefcases with alarm devices and flammable liquids are prohibited on aircraft<|>6)\n##\n(\"relationship\"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Oxidizing materials and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n(\"relationship\"<|>POISONS<|>FLAMMABLE LIQUIDS<|>Poisons and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n(\"relationship\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>High-strength magnetic materials and flammable liquids are both prohibited on aircraft<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-8ae981f1f8bb53a1d78f488774ec56de b/cache/entity_extraction/extract-continuation-0-chat-v2-8ae981f1f8bb53a1d78f488774ec56de deleted file mode 100644 index ce8a39d6839fd626ea85b04f26b22e9d48d79fb0..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-8ae981f1f8bb53a1d78f488774ec56de +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BRAchycephalic DOG AND CAT BREEDS<|>PROHIBITED ITEM<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture’s Veterinary Services is required to transport an animal to and from Israel.)\n##\n(\"entity\"<|>ANIMAL TESTS<|>RESTRICTION<|>The authorization process for transporting pets may involve performing several animal tests.)\n##\n(\"entity\"<|>CHECK-IN COUNTER<|>SERVICE LOCATION<|>The check-in counter is where pet owners must arrive with their pets for transport arrangements.)\n##\n(\"entity\"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The Arrivals Hall is where pet owners will retrieve their animals after they have been transported as checked baggage.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL is responsible for transporting animals that are extra-large or flying unaccompanied.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>AUTHORIZATION<|>The Ministry of Agriculture requires authorization for transporting animals, which is a necessary document for compliance<|>8)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>ANIMAL TESTS<|>The Ministry of Agriculture's authorization process may involve performing several animal tests<|>6)\n##\n(\"relationship\"<|>EL AL<|>CHECK-IN COUNTER<|>Pet owners must arrive at the check-in counter with their pets for transport on EL AL<|>7)\n##\n(\"relationship\"<|>EL AL<|>ARRIVALS HALL<|>Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL<|>7)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL handles the transport of animals that are extra-large or unaccompanied<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets, including restrictions on certain breeds and weight limits.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from the weight limit for transporting pets in the cabin of the aircraft.)\n##\n(\"entity\"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the cabin or as checked baggage under specific conditions.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to animals that must be transported in the luggage compartment of the aircraft in certain instances, such as large animals.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo refers to animals that may be transported by the Cargo Division, especially for extra-large animals or those flying unaccompanied.)\n##\n(\"entity\"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg, except for service dogs.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>EL AL<|>The Ministry of Agriculture oversees the transport of pets, which includes regulations that EL AL must follow for pet transportation<|>7)\n##\n(\"relationship\"<|>EL AL<|>SERVICE DOG<|>EL AL allows service dogs to be transported without the weight limit that applies to other pets<|>8)\n##\n(\"relationship\"<|>EL AL<|>DANGEROUS DOG<|>EL AL has a policy that prohibits the transportation of dangerous dogs as defined by Israeli law<|>9)\n##\n(\"relationship\"<|>EL AL<|>PET<|>EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport<|>8)\n##\n(\"relationship\"<|>PET<|>CHECKED BAGGAGE<|>Pets can be transported as checked baggage under certain conditions, such as size and weight<|>6)\n##\n(\"relationship\"<|>PET<|>REGISTERED CARGO<|>Pets may also be transported as registered cargo, especially if they are large or unaccompanied<|>6)\n##\n(\"relationship\"<|>9KG<|>PET<|>The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-95712701c9b360612f23f702a1ddd41c b/cache/entity_extraction/extract-continuation-0-chat-v2-95712701c9b360612f23f702a1ddd41c deleted file mode 100644 index 6adb1d1ea7063dcbf75aa83203df4cf778935ca0..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-95712701c9b360612f23f702a1ddd41c +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers containing lithium batteries are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n(\"entity\"<|>NON-SPILLABLE WET BATTERIES<|>RESTRICTED ITEM<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n##\n(\"entity\"<|>100 WH<|>WEIGHT<|>Batteries with a capacity of less than 100 watt-hours may be taken aboard the aircraft when insulated or in their original packaging.)\n##\n(\"entity\"<|>15 ELECTRONIC DEVICES<|>ALLOWANCE<|>Passengers are allowed to take up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 watt-hours aboard the aircraft.)\n##\n(\"entity\"<|>20 SPARE BATTERIES<|>ALLOWANCE<|>Passengers may take up to 20 spare batteries with a capacity of less than 100 watt-hours aboard the aircraft.)\n##\n(\"entity\"<|>BATTERY CASE<|>SPECIAL ITEM<|>A battery case is used to protect batteries from damage and short circuits during transport.)\n##\n(\"entity\"<|>ORIGINAL PACKAGING<|>SPECIAL ITEM<|>Keeping batteries in their original packaging helps prevent short circuits and damage during transport.)\n##\n(\"entity\"<|>INSULATED<|>RESTRICTION<|>Batteries must be insulated to prevent short circuits when taken aboard the aircraft.)\n##\n(\"entity\"<|>ACCEPTABLE BATTERY TYPES<|>RESTRICTION<|>Only certain types of batteries are acceptable for transport in the aircraft hold, excluding lithium-based batteries.)\n##\n(\"entity\"<|>BATTERY TERMINALS<|>RESTRICTION<|>Battery terminals must be protected to prevent short circuits during transport.)\n##\n(\"relationship\"<|>SPARE LITHIUM BATTERIES<|>PORTABLE CHARGERS<|>Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.<|>8)\n##\n(\"relationship\"<|>20 SPARE BATTERIES<|>100 WH<|>The allowance for taking 20 spare batteries is specifically for those with a capacity of less than 100 watt-hours.<|>7)\n##\n(\"relationship\"<|>15 ELECTRONIC DEVICES<|>100 WH<|>The allowance for taking 15 electronic devices is limited to those containing lithium-ion batteries with a capacity of less than 100 watt-hours.<|>7)\n##\n(\"relationship\"<|>BATTERY CASE<|>BATTERY TERMINALS<|>A battery case is used to protect battery terminals from damage and short circuits during transport.<|>6)\n##\n(\"relationship\"<|>ORIGINAL PACKAGING<|>BATTERY TERMINALS<|>Keeping batteries in their original packaging helps protect the terminals from short circuits during transport.<|>6)\n##\n(\"relationship\"<|>INSULATED<|>SPARE BATTERIES<|>Spare batteries must be insulated to prevent short circuits when taken aboard the aircraft.<|>5)\n##\n(\"relationship\"<|>ACCEPTABLE BATTERY TYPES<|>BATTERIES<|>Only acceptable battery types can be transported in the aircraft hold, excluding lithium-based batteries.<|>5)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials such as hairspray are not allowed to be stored together with other items in baggage.)\n##\n(\"entity\"<|>SPARE LITHIUM BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>PROHIBITED ITEM<|>Electronic devices with removable lithium batteries must have the battery taken aboard the aircraft cabin, while the device can be checked.)\n##\n(\"entity\"<|>BATTERIES<|>RESTRICTED ITEM<|>Batteries must be protected from damage and short circuits and can be transported in the aircraft hold if they are not lithium-based.)\n##\n(\"entity\"<|>WATT-HOURS<|>MEASUREMENT UNIT<|>Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).)\n##\n(\"entity\"<|>LITHIUM-ION BATTERIES<|>RESTRICTED ITEM<|>Larger lithium-ion batteries (100-160 watt-hours) are limited to two batteries per passenger and must comply with specific regulations.)\n##\n(\"entity\"<|>BATTERY-POWERED DEVICES<|>SPECIAL ITEM<|>Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.)\n##\n(\"entity\"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids on flights.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific regulations regarding battery-powered mobility aids.)\n##\n(\"relationship\"<|>SPARE LITHIUM BATTERIES<|>ELECTRONIC DEVICES<|>Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>WATT-HOURS<|>The watt-hours rating of a battery is determined by its voltage and ampere hours, which is essential for understanding battery capacity.<|>7)\n##\n(\"relationship\"<|>LITHIUM-ION BATTERIES<|>SPARE LITHIUM BATTERIES<|>Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.<|>6)\n##\n(\"relationship\"<|>BATTERY-POWERED DEVICES<|>IATA REGULATIONS<|>Battery-powered devices must comply with IATA regulations for safe transport on flights.<|>5)\n##\n(\"relationship\"<|>BATTERY-POWERED DEVICES<|>EL AL<|>EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-959b3085c4f963765ef7ce9dd4b3d4a4 b/cache/entity_extraction/extract-continuation-0-chat-v2-959b3085c4f963765ef7ce9dd4b3d4a4 deleted file mode 100644 index 83693837c16b7fcb81e195d0c2408cae0b2bb67e..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-959b3085c4f963765ef7ce9dd4b3d4a4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>DAMAGED BAGGAGE<|>Baggage Type<|>Damaged baggage refers to personal belongings that have been harmed during transit and require reporting to the airline for claims processing.)\n##\n(\"entity\"<|>DELAYED BAGGAGE<|>Baggage Type<|>Delayed baggage refers to personal belongings that have not arrived with the traveler and must be reported to the airline for retrieval.)\n##\n(\"entity\"<|>FORGOTTEN ITEM<|>Prohibited Item<|>A forgotten item is a personal belonging left on board an aircraft that may need to be reported to the airline for recovery.)\n##\n(\"entity\"<|>BAGGAGE TAG<|>Label Type<|>A baggage tag is a label attached to luggage that contains information about the owner and flight details, essential for tracking baggage.)\n##\n(\"entity\"<|>BAGGAGE ISSUES<|>Policy<|>Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.)\n##\n(\"entity\"<|>CONTACT DETAILS<|>Required Document<|>Contact details provide information on how travelers can reach the Baggage Service Center for assistance with baggage issues.)\n##\n(\"entity\"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status refers to the current state of a baggage claim, which can be checked using the lost baggage report number.)\n##\n(\"relationship\"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center handles reports and claims related to delayed baggage<|>8)\n##\n(\"relationship\"<|>DAMAGED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with claims for damaged baggage<|>8)\n##\n(\"relationship\"<|>FORGOTTEN ITEM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center helps recover forgotten items left on board<|>7)\n##\n(\"relationship\"<|>BAGGAGE TAG<|>BAGGAGE<|>The baggage tag is essential for identifying and tracking baggage<|>9)\n##\n(\"relationship\"<|>BAGGAGE ISSUES<|>EL AL<|>EL AL has policies in place to address various baggage issues encountered by travelers<|>8)\n##\n(\"relationship\"<|>CONTACT DETAILS<|>BAGGAGE SERVICE CENTER<|>Contact details provide necessary information for reaching the Baggage Service Center for assistance<|>7)\n##\n(\"relationship\"<|>CLAIM STATUS<|>LOST BAGGAGE REPORT NUMBER<|>The claim status can be checked using the lost baggage report number provided by the airline<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the personal belongings that travelers take with them on a journey, which can be delayed, damaged, or lost during transit.)\n##\n(\"entity\"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board, providing assistance to travelers.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims for delayed or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE CLAIM AREA<|>Service Location<|>The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.)\n##\n(\"entity\"<|>DAMAGE REPORT<|>Required Document<|>A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.)\n##\n(\"entity\"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a unique identifier used to check the status of a claim regarding lost baggage.)\n##\n(\"entity\"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler.)\n##\n(\"entity\"<|>CLAIMS DEPARTMENT<|>Service Type<|>The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with issues related to their baggage, including delays and damages<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and addressing issues such as delays and damages<|>9)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE CLAIM AREA<|>Travelers report baggage issues in the baggage claim area, where they can receive assistance<|>7)\n##\n(\"relationship\"<|>BAGGAGE SERVICE CENTER<|>CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Claims Department to process claims related to baggage<|>6)\n##\n(\"relationship\"<|>BAGGAGE<|>DAMAGE REPORT<|>A damage report is issued when baggage is reported damaged, which is necessary for processing claims<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>LOST BAGGAGE REPORT NUMBER<|>The lost baggage report number is used to track claims related to lost baggage<|>7)\n##\n(\"relationship\"<|>BAGGAGE<|>COURIER SERVICE<|>The courier service delivers retrieved baggage to travelers after it has been delayed<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-96baa25d7e7e60f4f7b0bca9a1d583c6 b/cache/entity_extraction/extract-continuation-0-chat-v2-96baa25d7e7e60f4f7b0bca9a1d583c6 deleted file mode 100644 index c000cfeb81130e4e8ed7f8a69a665310eb9708c4..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-96baa25d7e7e60f4f7b0bca9a1d583c6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BANGKOK<|>AIRPORT<|>Bangkok is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>AMSTERDAM<|>AIRPORT<|>Amsterdam is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BOSTON<|>AIRPORT<|>Boston is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MUMBAI<|>AIRPORT<|>Mumbai is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BRUSSELS<|>AIRPORT<|>Brussels is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>LARNACA<|>AIRPORT<|>Larnaca is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>FRANKFURT<|>AIRPORT<|>Frankfurt is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MOSCOW<|>AIRPORT<|>Moscow is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MUNICH<|>AIRPORT<|>Munich is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MADRID<|>AIRPORT<|>Madrid is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BERLIN<|>AIRPORT<|>Berlin is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>PRAGUE<|>AIRPORT<|>Prague is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>WARSAW<|>AIRPORT<|>Warsaw is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>TORONTO<|>AIRPORT<|>Toronto is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>VIENNA<|>AIRPORT<|>Vienna is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BUDAPEST<|>AIRPORT<|>Budapest is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>KYIV<|>AIRPORT<|>Kyiv is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>ROME<|>AIRPORT<|>Rome is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"relationship\"<|>BANGKOK<|>ANIMAL<|>Animals cannot be transported as registered cargo from Bangkok<|>5)\n##\n(\"relationship\"<|>AMSTERDAM<|>ANIMAL<|>Animals cannot be transported as registered cargo from Amsterdam<|>5)\n##\n(\"relationship\"<|>BOSTON<|>ANIMAL<|>Animals cannot be transported as registered cargo from Boston<|>5)\n##\n(\"relationship\"<|>MUMBAI<|>ANIMAL<|>Animals cannot be transported as registered cargo from Mumbai<|>5)\n##\n(\"relationship\"<|>BRUSSELS<|>ANIMAL<|>Animals cannot be transported as registered cargo from Brussels<|>5)\n##\n(\"relationship\"<|>LARNACA<|>ANIMAL<|>Animals cannot be transported as registered cargo from Larnaca<|>5)\n##\n(\"relationship\"<|>FRANKFURT<|>ANIMAL<|>Animals cannot be transported as registered cargo from Frankfurt<|>5)\n##\n(\"relationship\"<|>MOSCOW<|>ANIMAL<|>Animals cannot be transported as registered cargo from Moscow<|>5)\n##\n(\"relationship\"<|>MUNICH<|>ANIMAL<|>Animals cannot be transported as registered cargo from Munich<|>5)\n##\n(\"relationship\"<|>MADRID<|>ANIMAL<|>Animals cannot be transported as registered cargo from Madrid<|>5)\n##\n(\"relationship\"<|>BERLIN<|>ANIMAL<|>Animals cannot be transported as registered cargo from Berlin<|>5)\n##\n(\"relationship\"<|>PRAGUE<|>ANIMAL<|>Animals cannot be transported as registered cargo from Prague<|>5)\n##\n(\"relationship\"<|>WARSAW<|>ANIMAL<|>Animals cannot be transported as registered cargo from Warsaw<|>5)\n##\n(\"relationship\"<|>TORONTO<|>ANIMAL<|>Animals cannot be transported as registered cargo from Toronto<|>5)\n##\n(\"relationship\"<|>VIENNA<|>ANIMAL<|>Animals cannot be transported as registered cargo from Vienna<|>5)\n##\n(\"relationship\"<|>BUDAPEST<|>ANIMAL<|>Animals cannot be transported as registered cargo from Budapest<|>5)\n##\n(\"relationship\"<|>KYIV<|>ANIMAL<|>Animals cannot be transported as registered cargo from Kyiv<|>5)\n##\n(\"relationship\"<|>ROME<|>ANIMAL<|>Animals cannot be transported as registered cargo from Rome<|>5)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Health regulates the entry of animals.)\n##\n(\"entity\"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health is the authority responsible for approving the entry of animals into Israel.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is the airline that provides services for transporting animals in various classes of the aircraft.)\n##\n(\"entity\"<|>ANIMAL<|>SPECIAL ITEM<|>Animals such as dogs, cats, or exotic birds that are subject to specific transport regulations.)\n##\n(\"entity\"<|>VETERINARY SERVICES<|>ORGANIZATION<|>Veterinary Services at Ben Gurion Airport is responsible for issuing flight permits for transporting animals.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main airport in Israel where animals must be authorized for transport.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A document required to ensure the animal is healthy before transport.)\n##\n(\"entity\"<|>RABIES ANTIBODY TEST<|>REQUIRED DOCUMENT<|>A test required to confirm that the animal has been vaccinated against rabies.)\n##\n(\"entity\"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the category under which animals can be transported in the aircraft cabin or hold.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is the method of transporting animals that exceed certain weight limits.)\n##\n(\"entity\"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where animals may be transported with prior approval.)\n##\n(\"entity\"<|>ANIMAL WEIGHT<|>DIMENSION<|>The weight of the animal is a critical factor in determining the mode of transport.)\n##\n(\"entity\"<|>9 KG<|>WEIGHT<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin.)\n##\n(\"entity\"<|>100 KG<|>WEIGHT<|>Animals weighing more than 100 kg must be transported as registered cargo.)\n##\n(\"entity\"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Documents required for obtaining authorization to transport an animal to Israel.)\n##\n(\"entity\"<|>FLIGHT PERMIT<|>REQUIRED DOCUMENT<|>A permit issued by Veterinary Services allowing the transport of an animal.)\n##\n(\"relationship\"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health regulates the entry of animals into Israel<|>8)\n##\n(\"relationship\"<|>EL AL<|>ANIMAL<|>EL AL provides transport services for animals in various classes<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>BEN GURION AIRPORT<|>Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport<|>9)\n##\n(\"relationship\"<|>ANIMAL<|>BAGGAGE<|>Animals can be transported as baggage in the aircraft cabin or hold<|>6)\n##\n(\"relationship\"<|>ANIMAL<|>REGISTERED CARGO<|>Animals exceeding weight limits must be transported as registered cargo<|>6)\n##\n(\"relationship\"<|>ANIMAL<|>ANIMAL WEIGHT<|>The weight of the animal determines the mode of transport<|>8)\n##\n(\"relationship\"<|>9 KG<|>ANIMAL<|>Animals weighing up to 9 kg can be transported in the aircraft cabin<|>7)\n##\n(\"relationship\"<|>100 KG<|>ANIMAL<|>Animals weighing more than 100 kg must be transported as registered cargo<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>DOCUMENTS<|>Veterinary Services requires specific documents for animal transport authorization<|>8)\n##\n(\"relationship\"<|>DOCUMENTS<|>CERTIFICATE OF GOOD HEALTH<|>A certificate of good health is one of the required documents for transport<|>9)\n##\n(\"relationship\"<|>DOCUMENTS<|>RABIES ANTIBODY TEST<|>A rabies antibody test is another required document for transport<|>9)\n##\n(\"relationship\"<|>EL AL<|>BUSINESS CABIN<|>Animals can be transported in the Business cabin with prior approval from EL AL<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-9a3e6c5d41630b5322f479182c92b8b9 b/cache/entity_extraction/extract-continuation-0-chat-v2-9a3e6c5d41630b5322f479182c92b8b9 deleted file mode 100644 index 7ce84a3389ee95c3b4d6841fc9ab4fafb29beb36..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-9a3e6c5d41630b5322f479182c92b8b9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>DAMAGED BAGGAGE<|>Baggage Type<|>Damaged baggage refers to baggage that has been harmed or compromised during transit and requires reporting for claims.)\n##\n(\"entity\"<|>FORGOTTEN ITEM<|>Prohibited Item<|>An item forgotten on board refers to personal belongings left behind by passengers on the aircraft.)\n##\n(\"entity\"<|>BAGGAGE DELAY<|>Restriction<|>Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.)\n##\n(\"entity\"<|>BAGGAGE CLAIM<|>Service Type<|>Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE HANDLING<|>Service Type<|>Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.)\n##\n(\"entity\"<|>BAGGAGE REPORTING<|>Service Type<|>Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.)\n##\n(\"entity\"<|>BAGGAGE DELIVERY<|>Service Type<|>Baggage delivery is the service that ensures retrieved baggage is sent to the passenger's specified address.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS PROCESS<|>Policy<|>The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.)\n##\n(\"relationship\"<|>DAMAGED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center handles cases of damaged baggage reported by passengers<|>8)\n##\n(\"relationship\"<|>FORGOTTEN ITEM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists passengers with items forgotten on board<|>7)\n##\n(\"relationship\"<|>BAGGAGE DELAY<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center is responsible for managing reports of baggage delays<|>8)\n##\n(\"relationship\"<|>BAGGAGE CLAIM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center facilitates the baggage claim process for passengers<|>9)\n##\n(\"relationship\"<|>BAGGAGE HANDLING<|>BAGGAGE SERVICE CENTER<|>Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage<|>8)\n##\n(\"relationship\"<|>BAGGAGE REPORTING<|>BAGGAGE SERVICE CENTER<|>Passengers report baggage issues to the Baggage Service Center for resolution<|>9)\n##\n(\"relationship\"<|>BAGGAGE DELIVERY<|>COURIER SERVICE<|>The courier service is responsible for the delivery of baggage to the passenger's address after retrieval<|>8)\n##\n(\"relationship\"<|>BAGGAGE CLAIMS PROCESS<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center follows the baggage claims process to assist passengers<|>7)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the items that passengers check in for their flight, which can be delayed, damaged, or lost.)\n##\n(\"entity\"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS DEPARTMENT<|>Service Location<|>The Baggage Claims Department processes claims related to lost or damaged baggage.)\n##\n(\"entity\"<|>DELAYED BAGGAGE<|>Restriction<|>Delayed baggage refers to baggage that has not arrived with the passenger and must be reported immediately after landing.)\n##\n(\"entity\"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status can be checked using a worldwide system by entering the lost baggage report number and last name.)\n##\n(\"entity\"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the passenger's address.)\n##\n(\"entity\"<|>CONTACT DETAILS<|>Required Document<|>Contact details include phone numbers and WhatsApp chat options for reporting baggage issues.)\n##\n(\"entity\"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a 10-character identifier used to check the status of a claim.)\n##\n(\"entity\"<|>BAGGAGE REPORT<|>Required Document<|>A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center manages issues related to baggage, including delays and damages<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and related claims<|>9)\n##\n(\"relationship\"<|>BAGGAGE SERVICE CENTER<|>BAGGAGE CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Baggage Claims Department for processing claims<|>7)\n##\n(\"relationship\"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>Delayed baggage must be reported to the Baggage Service Center for assistance<|>8)\n##\n(\"relationship\"<|>CLAIM STATUS<|>BAGGAGE SERVICE CENTER<|>The status of a claim can be checked through the Baggage Service Center's worldwide system<|>6)\n##\n(\"relationship\"<|>BAGGAGE<|>COURIER SERVICE<|>Retrieved delayed baggage is delivered to the passenger's address by the courier service<|>7)\n##\n(\"relationship\"<|>BAGGAGE<|>CONTACT DETAILS<|>Contact details are provided for passengers to report baggage issues<|>5)\n##\n(\"relationship\"<|>LOST BAGGAGE REPORT NUMBER<|>CLAIM STATUS<|>The lost baggage report number is required to check the status of a claim<|>8)\n##\n(\"relationship\"<|>BAGGAGE REPORT<|>DELAYED BAGGAGE<|>A baggage report is issued for delayed baggage at the airport<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-ad1e1e031896679212a0444fe7bf8ef1 b/cache/entity_extraction/extract-continuation-0-chat-v2-ad1e1e031896679212a0444fe7bf8ef1 deleted file mode 100644 index b41f5b60f100bb805fcecc2751d3402ddf7a4383..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-ad1e1e031896679212a0444fe7bf8ef1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>AEROSOLS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>CREAMS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>SECURITY CHECKPOINT<|>SERVICE LOCATION<|>Location where liquids that exceed the permitted amount will be discarded.)\n##\n(\"entity\"<|>CARRY-ON BAGS<|>BAGGAGE TYPE<|>Bags that passengers are allowed to take on board the aircraft, subject to restrictions on liquids.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>AEROSOLS<|>Aerosols are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>CREAMS<|>Creams are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>CARRY-ON BAGS<|>Restrictions on liquids apply specifically to items carried in carry-on bags.<|>9)\n##\n(\"relationship\"<|>SECURITY CHECKPOINT<|>LIQUIDS IN CARRY-ON BAGS<|>At the security checkpoint, liquids that exceed the permitted amount will be discarded.<|>9)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n(\"entity\"<|>WHISKEY<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>GELS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>COSMETICS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>BABY FOOD<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>PRESCRIPTION MEDICATIONS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Country from which flights may have specific conditions regarding carrying liquids in carry-on bags.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>WHISKEY<|>Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>GELS<|>Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>COSMETICS<|>Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>BABY FOOD<|>Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>PRESCRIPTION MEDICATIONS<|>Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>The restrictions on liquids in carry-on bags apply to flights departing from Israel.<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-c04d30915468c29ca1f9a6d3a2407a1c b/cache/entity_extraction/extract-continuation-0-chat-v2-c04d30915468c29ca1f9a6d3a2407a1c deleted file mode 100644 index d6adb1ab500fd2178bdbd72fee2f16a8e756929d..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-c04d30915468c29ca1f9a6d3a2407a1c +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>Baggage Type<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which incurs additional fees.)\n##\n(\"entity\"<|>LITE FARES<|>Travel Class<|>Lite fares are a type of Economy Class fare that typically offers fewer services and amenities.)\n##\n(\"entity\"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports gear that exceeds the standard baggage allowance and requires special handling or fees.)\n##\n(\"entity\"<|>CARGO<|>Service Type<|>Cargo refers to goods or items transported in bulk, separate from passenger baggage, often requiring special arrangements.)\n##\n(\"entity\"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Excess baggage charges are fees applied when a passenger's luggage exceeds the allowed size or weight limits.)\n##\n(\"entity\"<|>AIRLINE<|>Airline<|>An airline is a company that provides air transport services for passengers and cargo.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>SPORTING EQUIPMENT<|>Checked baggage can include sporting equipment as long as it meets the airline's size and weight requirements<|>8)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>SPORTING EQUIPMENT<|>Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees<|>8)\n##\n(\"relationship\"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a subset of Economy Class fares that offer limited services<|>6)\n##\n(\"relationship\"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to any extra gear that requires special handling beyond the standard allowance<|>7)\n##\n(\"relationship\"<|>CARGO<|>SPORTING EQUIPMENT<|>Sporting equipment can be transported as cargo if it exceeds the standard baggage allowance<|>7)\n##\n(\"relationship\"<|>EXCESS BAGGAGE CHARGES<|>SPORTING EQUIPMENT<|>Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight<|>9)\n##\n(\"relationship\"<|>AIRLINE<|>CHECKED BAGGAGE<|>Airlines have specific policies regarding checked baggage, including size and weight limits<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment refers to items such as skis, bikes, and other sports gear that can be transported as checked baggage or cargo by airlines.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that offers standard services and amenities for passengers, excluding Lite fares.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a higher travel class that provides enhanced services and amenities compared to Economy Class.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class is a premium travel class that offers superior services and amenities for passengers.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division is a service that allows passengers to transport oversized or additional baggage separately from their standard allowance.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the measurements of baggage, typically expressed in length, width, and height.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the mass of baggage, which is a critical factor in determining baggage allowances and fees.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage.)\n##\n(\"entity\"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy Class.)\n##\n(\"entity\"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n(\"entity\"<|>70 USD<|>Fee Structure<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.)\n##\n(\"entity\"<|>150 USD<|>Fee Structure<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>US Dollars are the currency used for pricing and payment of baggage fees.)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an option for transporting sporting equipment that exceeds standard baggage allowances<|>7)\n##\n(\"relationship\"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are critical for determining whether sporting equipment can be transported as checked baggage<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key factor in determining the allowance and fees for transporting sporting equipment<|>9)\n##\n(\"relationship\"<|>277 CM<|>DIMENSIONS<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage<|>10)\n##\n(\"relationship\"<|>30 KG<|>WEIGHT<|>30 kg is the maximum weight limit for sports equipment in Economy Class<|>10)\n##\n(\"relationship\"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight limit for sports equipment in Business Class<|>10)\n##\n(\"relationship\"<|>70 USD<|>SPORTING EQUIPMENT<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco<|>8)\n##\n(\"relationship\"<|>150 USD<|>SPORTING EQUIPMENT<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America<|>8)\n##\n(\"relationship\"<|>US DOLLARS<|>70 USD<|>70 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n##\n(\"relationship\"<|>US DOLLARS<|>150 USD<|>150 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-c60117ceeee27b96af5378499528dab6 b/cache/entity_extraction/extract-continuation-0-chat-v2-c60117ceeee27b96af5378499528dab6 deleted file mode 100644 index a5d58e1a5d5a436368d7fa2fc36bc58eb9f82ae6..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-c60117ceeee27b96af5378499528dab6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>BAGGAGE ALLOWANCE<|>Allowance<|>The baggage allowance refers to the total weight and number of bags a passenger is permitted to carry on a flight without incurring additional fees.)\n##\n(\"entity\"<|>CHECKED BAG<|>Baggage Type<|>A checked bag is a type of luggage that is stored in the aircraft's cargo hold during the flight.)\n##\n(\"entity\"<|>WEIGHT RESTRICTION<|>Restriction<|>Weight restrictions are limits imposed on the weight of bags that passengers can carry on board or check in.)\n##\n(\"entity\"<|>FLIGHT DESTINATION<|>Service Location<|>The flight destination is the final location where passengers are traveling to, which may affect baggage policies.)\n##\n(\"entity\"<|>PRE-CHECKED CARRY-ON<|>Baggage Type<|>A pre-checked carry-on is a bag that has been checked in online prior to arriving at the airport, allowing for expedited security checks.)\n##\n(\"entity\"<|>SECURITY CHECK<|>Service Type<|>The security check is a procedure that passengers must go through to ensure safety before boarding the aircraft.)\n##\n(\"entity\"<|>EXTRA SEAT<|>Allowance<|>An extra seat may be purchased for oversized items that cannot fit in the cabin or under the seat.)\n##\n(\"entity\"<|>MEDICATIONS<|>Prohibited Item<|>Medications are items that passengers are advised to keep accessible during the flight for health reasons.)\n##\n(\"entity\"<|>VALUABLES<|>Valuable Item<|>Valuables are items of significant worth that passengers are recommended to keep with them during the flight.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as laptops and tablets that passengers should keep accessible during the flight.)\n##\n(\"entity\"<|>OVERHEAD COMPARTMENTS<|>Cabin Section<|>Overhead compartments are storage areas above passenger seats where carry-on bags must be placed during the flight.)\n##\n(\"entity\"<|>UNDER-SEAT STORAGE<|>Cabin Section<|>Under-seat storage refers to the space under the seat in front of a passenger where personal bags must be placed.)\n##\n(\"entity\"<|>CHECK-IN PROCESS<|>Policy<|>The check-in process is the procedure passengers must follow to confirm their presence on a flight and check their luggage.)\n##\n(\"entity\"<|>FLIGHT<|>Route Type<|>A flight is a journey made by an aircraft from one airport to another, subject to specific baggage policies.)\n##\n(\"entity\"<|>AIRPLANE STORAGE<|>Service Type<|>Airplane storage refers to the designated areas on an aircraft where passengers can store their carry-on and personal bags.)\n##\n(\"entity\"<|>BAG DIMENSIONS<|>Measurement Unit<|>Bag dimensions refer to the measurements of a bag that must comply with airline policies for carry-on and checked luggage.)\n##\n(\"entity\"<|>BAG WEIGHT<|>Measurement Unit<|>Bag weight refers to the total weight of a bag, which must adhere to airline restrictions for carry-on and checked luggage.)\n##\n(\"entity\"<|>CARGO HOLD<|>Cabin Section<|>The cargo hold is the area of the aircraft where checked bags are stored during the flight.)\n##\n(\"entity\"<|>FLIGHT CHECK-IN<|>Policy<|>Flight check-in is the policy that requires passengers to confirm their attendance and check their baggage before boarding.)\n##\n(\"entity\"<|>BAGGAGE ENFORCEMENT<|>Policy<|>Baggage enforcement refers to the policies and procedures that airline representatives follow to ensure compliance with baggage limits.)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAG<|>Baggage Type<|>A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.)\n##\n(\"entity\"<|>PERSONAL BAG<|>Baggage Type<|>A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.)\n##\n(\"entity\"<|>CARRY-ON BAG<|>Baggage Type<|>A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>El Al is an airline that has specific baggage policies regarding carry-on and personal bags.)\n##\n(\"entity\"<|>56 CM<|>Linear Dimension<|>The maximum length for a carry-on bag on El Al flights is 56 cm.)\n##\n(\"entity\"<|>45 CM<|>Linear Dimension<|>The maximum width for a carry-on bag on El Al flights is 45 cm.)\n##\n(\"entity\"<|>25 CM<|>Linear Dimension<|>The maximum depth for a carry-on bag on El Al flights is 25 cm.)\n##\n(\"entity\"<|>18X38X30 CM<|>Linear Dimension<|>The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.)\n##\n(\"entity\"<|>115 CM<|>Linear Dimension<|>The total maximum dimension for a carry-on bag on El Al flights is 115 cm.)\n##\n(\"entity\"<|>20 KG<|>Weight Category<|>The combined weight limit for bags is not to exceed 20 kg.)\n##\n(\"entity\"<|>16 KG<|>Weight Category<|>The maximum weight limit for one bag is 16 kg.)\n##\n(\"entity\"<|>DUTY-FREE ITEMS<|>Special Item<|>Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.)\n##\n(\"entity\"<|>OVERSIZED ITEMS<|>Special Item<|>Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.)\n##\n(\"entity\"<|>CHECK-IN COUNTER<|>Service Location<|>The check-in counter is where passengers can check in their luggage and obtain boarding passes.)\n##\n(\"entity\"<|>EMERGENCY EXIT ROW<|>Cabin Section<|>The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.)\n##\n(\"entity\"<|>SERVICE CENTER<|>Service Location<|>El Al's service center is where passengers can coordinate the transport of unusual items.)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>EL AL<|>El Al has specific policies regarding the dimensions and weight limits for carry-on bags<|>9)\n##\n(\"relationship\"<|>PERSONAL BAG<|>EL AL<|>El Al allows passengers to bring a personal bag on board, subject to size restrictions<|>9)\n##\n(\"relationship\"<|>BAG<|>CARRY-ON BAG<|>A carry-on bag is a type of bag that must meet specific weight and dimension limits<|>8)\n##\n(\"relationship\"<|>BAG<|>PERSONAL BAG<|>A personal bag is a specific type of bag that passengers can bring on board<|>8)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>20 KG<|>The combined weight limit for carry-on bags is 20 kg<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>16 KG<|>The maximum weight limit for one carry-on bag is 16 kg<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>56 CM<|>The maximum length for a carry-on bag is 56 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>45 CM<|>The maximum width for a carry-on bag is 45 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>25 CM<|>The maximum depth for a carry-on bag is 25 cm<|>7)\n##\n(\"relationship\"<|>PERSONAL BAG<|>18X38X30 CM<|>The maximum dimensions for a personal bag are 18x38x30 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>115 CM<|>The total maximum dimension for a carry-on bag is 115 cm<|>7)\n##\n(\"relationship\"<|>DUTY-FREE ITEMS<|>BAG<|>Duty-free items are included in the baggage allowance but do not count towards the limit<|>6)\n##\n(\"relationship\"<|>OVERSIZED ITEMS<|>CARRY-ON BAG<|>Oversized items may require special arrangements for transport in the cabin<|>5)\n##\n(\"relationship\"<|>CHECK-IN COUNTER<|>EL AL<|>Passengers must check in at El Al's check-in counters for their flights<|>8)\n##\n(\"relationship\"<|>EMERGENCY EXIT ROW<|>CARRY-ON BAG<|>Passengers in the emergency exit row may store bags in overhead compartments<|>6)\n##\n(\"relationship\"<|>SERVICE CENTER<|>OVERSIZED ITEMS<|>Passengers must contact the service center for approval to carry oversized items<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-d1a4b40fea4811e4f070b02a834bb358 b/cache/entity_extraction/extract-continuation-0-chat-v2-d1a4b40fea4811e4f070b02a834bb358 deleted file mode 100644 index bebcd35719a7816fef208d7e70e2c24e22273623..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-d1a4b40fea4811e4f070b02a834bb358 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>CHECKED LUGGAGE<|>Baggage Type<|>Checked luggage refers to bags that are transported in the aircraft's cargo hold rather than in the passenger cabin.)\n##\n(\"entity\"<|>TROLLEY<|>Baggage Type<|>Trolleys are a type of carry-on bag that passengers can bring into the passenger cabin.)\n##\n(\"entity\"<|>FLIGHT TICKET TERMS<|>Policy<|>Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.)\n##\n(\"entity\"<|>BOOKING MANAGEMENT<|>Service Location<|>Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.)\n##\n(\"entity\"<|>OVERHEAD COMPARTMENTS<|>Cabin Section<|>Overhead compartments are storage areas in the passenger cabin where carry-on bags are placed during the flight.)\n##\n(\"entity\"<|>BAGGAGE CONVEYOR BELT<|>Service Location<|>The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.)\n##\n(\"entity\"<|>NORTH AMERICA<|>Region<|>North America is a region where specific flight policies apply, particularly regarding carry-on baggage.)\n##\n(\"relationship\"<|>CHECKED LUGGAGE<|>CARRY-ON BAGGAGE<|>Checked luggage is an alternative to carry-on baggage for passengers who need to transport larger items.<|>6)\n##\n(\"relationship\"<|>TROLLEY<|>CARRY-ON BAGGAGE<|>Trolleys are a specific type of carry-on baggage that passengers can bring into the cabin.<|>8)\n##\n(\"relationship\"<|>FLIGHT TICKET TERMS<|>CARRY-ON BAGGAGE<|>Flight ticket terms provide details on the rules regarding carry-on baggage allowances.<|>7)\n##\n(\"relationship\"<|>BOOKING MANAGEMENT<|>CARRY-ON BAGGAGE<|>Booking management allows passengers to check their carry-on baggage policies and manage their bookings.<|>6)\n##\n(\"relationship\"<|>OVERHEAD COMPARTMENTS<|>CARRY-ON BAGGAGE<|>Overhead compartments are designated storage areas for carry-on baggage during the flight.<|>8)\n##\n(\"relationship\"<|>BAGGAGE CONVEYOR BELT<|>CHECKED LUGGAGE<|>The baggage conveyor belt is where checked luggage is retrieved after a flight.<|>9)\n##\n(\"relationship\"<|>NORTH AMERICA<|>CARRY-ON BAGGAGE<|>Specific carry-on baggage policies apply to flights from/to North America.<|>5)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n(\"entity\"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat in front of the passenger to maximize cabin space.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n(\"entity\"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n(\"entity\"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status may affect the eligibility of passengers to bring carry-on baggage aboard the aircraft.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n(\"relationship\"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat in front of the passenger.<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n(\"relationship\"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Matmid Frequent Flyer Club status may influence the carry-on baggage eligibility for passengers.<|>5)\n##\n(\"relationship\"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a critical factor in determining the eligibility of carry-on baggage for boarding.<|>8)\n##\n(\"relationship\"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are essential for determining the eligibility of carry-on baggage for boarding.<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-e1ecd839f577aeb6e22ab742e5f54319 b/cache/entity_extraction/extract-continuation-0-chat-v2-e1ecd839f577aeb6e22ab742e5f54319 deleted file mode 100644 index 2ae80c31ecd88d59c936e27789c3660aef8dbb37..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-e1ecd839f577aeb6e22ab742e5f54319 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>MOBILITY AID<|>SPECIAL ITEM<|>Mobility aids include devices like wheelchairs and scooters that assist individuals with mobility challenges.)\n##\n(\"entity\"<|>DRY ICE<|>DANGEROUS GOOD<|>Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.)\n##\n(\"entity\"<|>FLIGHT AID<|>SERVICE TYPE<|>Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.)\n##\n(\"entity\"<|>EMAIL NOTIFICATION<|>REQUIRED DOCUMENT<|>An email notification to the airline is required to inform them about the intention to travel with a mobility aid.)\n##\n(\"relationship\"<|>EL AL<|>MOBILITY AID<|>EL AL provides services for passengers traveling with mobility aids<|>7)\n##\n(\"relationship\"<|>MOBILITY AID<|>FLIGHT AID<|>Mobility aids are part of the flight aid services provided to assist passengers<|>6)\n##\n(\"relationship\"<|>DRY ICE<|>HAZARDOUS MATERIALS<|>Dry ice is classified as a hazardous material that requires special handling during air travel<|>8)\n##\n(\"relationship\"<|>EMAIL NOTIFICATION<|>EL AL<|>An email notification is required to inform EL AL about traveling with a mobility aid<|>9)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for traveling with battery-powered mobility aids and hazardous materials.)\n##\n(\"entity\"<|>BATTERY-POWERED MOBILITY AIDS<|>SPECIAL ITEM<|>Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.)\n##\n(\"entity\"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights.)\n##\n(\"entity\"<|>FLIGHT-APPROVED BATTERIES<|>RESTRICTED ITEM<|>Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.)\n##\n(\"entity\"<|>HAZARDOUS MATERIALS<|>PROHIBITED ITEM<|>Hazardous materials include items like dry ice that require special handling and declaration when traveling.)\n##\n(\"entity\"<|>DECLARATION FORM<|>REQUIRED DOCUMENT<|>A Declaration Form is required for traveling with hazardous materials on EL AL flights.)\n##\n(\"relationship\"<|>EL AL<|>BATTERY-POWERED MOBILITY AIDS<|>EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights<|>8)\n##\n(\"relationship\"<|>BATTERY-POWERED MOBILITY AIDS<|>IATA REGULATIONS<|>Battery-powered mobility aids must comply with IATA regulations for air travel<|>7)\n##\n(\"relationship\"<|>EL AL<|>HAZARDOUS MATERIALS<|>EL AL requires advance notice and a Declaration Form for traveling with hazardous materials<|>8)\n##\n(\"relationship\"<|>HAZARDOUS MATERIALS<|>DECLARATION FORM<|>A Declaration Form is necessary for traveling with hazardous materials on EL AL flights<|>9)\n##\n(\"relationship\"<|>FLIGHT-APPROVED BATTERIES<|>BATTERY-POWERED MOBILITY AIDS<|>Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-continuation-0-chat-v2-e5018fd8d71b9ba2023b8ea60c215cf6 b/cache/entity_extraction/extract-continuation-0-chat-v2-e5018fd8d71b9ba2023b8ea60c215cf6 deleted file mode 100644 index 0ff827413f32dc50e7625693343c2ce5d54805ab..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-continuation-0-chat-v2-e5018fd8d71b9ba2023b8ea60c215cf6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "(\"entity\"<|>ANIMAL<|>SPECIAL ITEM<|>Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations when traveling from Israel abroad.)\n##\n(\"entity\"<|>CAGE<|>SPECIAL ITEM<|>A cage is required for transporting animals, ensuring their safety and compliance with airline regulations.)\n##\n(\"entity\"<|>WEIGHT<|>DIMENSION<|>Weight is a critical factor in determining how animals can be transported, influencing whether they travel in the cabin or as cargo.)\n##\n(\"entity\"<|>PERMIT<|>REQUIRED DOCUMENT<|>A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.)\n##\n(\"entity\"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department is responsible for issuing health certificates and permits for animal transport.)\n##\n(\"entity\"<|>CARGO<|>ROUTE TYPE<|>Cargo transport refers to the method of shipping animals as registered cargo in the aircraft hold.)\n##\n(\"entity\"<|>APPROVAL<|>POLICY<|>Approval from the EL AL service center is necessary for transporting pets in the Business cabin.)\n##\n(\"entity\"<|>GUIDELINES<|>POLICY<|>Guidelines set by the destination country's authorities dictate how animals must be transported.)\n##\n(\"relationship\"<|>ANIMAL<|>CAGE<|>A cage is required for the safe transport of animals, ensuring they are secure during travel.<|>8)\n##\n(\"relationship\"<|>ANIMAL<|>WEIGHT<|>The weight of the animal determines the mode of transport, affecting whether it travels in the cabin or as cargo.<|>9)\n##\n(\"relationship\"<|>ANIMAL<|>PERMIT<|>A permit is necessary for the transport of animals, ensuring compliance with regulations.<|>8)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>PERMIT<|>The Veterinary Services Department issues permits required for transporting animals abroad.<|>9)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>The Veterinary Services Department issues the international certificate of good health required for animal transport.<|>9)\n##\n(\"relationship\"<|>GUIDELINES<|>ANIMAL<|>Guidelines from destination authorities dictate the transport requirements for animals.<|>7)\n##\n(\"relationship\"<|>APPROVAL<|>BUSINESS CABIN<|>Approval is required for transporting pets in the Business cabin, indicating a policy that must be followed.<|>6)\n##\n(\"relationship\"<|>CARGO<|>ANIMAL<|>Animals can be transported as cargo, which is a specific route type for shipping them in the aircraft hold.<|>8)\n<|COMPLETE|>", "input": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country’s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service provided by EL AL for transporting cargo, including pets, from Israel abroad.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country from which animals are transported abroad.)\n##\n(\"entity\"<|>JOHANNESBURG<|>AIRPORT<|>Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>LONDON<|>AIRPORT<|>London is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>HONG KONG<|>AIRPORT<|>Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions and weight limits.)\n##\n(\"entity\"<|>VETERINARIAN<|>SERVICE TYPE<|>Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.)\n##\n(\"entity\"<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.)\n##\n(\"entity\"<|>BILL OF LADING<|>RESTRICTION<|>A bill of lading is required for transporting animals as cargo, indicating the terms of transport.)\n##\n(\"entity\"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where pets may be transported under certain conditions.)\n##\n(\"entity\"<|>AIRCRAFT HOLD<|>CARGO<|>The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.)\n##\n(\"entity\"<|>PASSENGER AIRCRAFT CABIN<|>CARGO<|>The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.)\n##\n(\"relationship\"<|>EL AL CARGO STORE<|>ISRAEL<|>The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.<|>7)\n##\n(\"relationship\"<|>PET<|>ISRAEL<|>Pets are transported from Israel to other countries, requiring specific permits and conditions.<|>8)\n##\n(\"relationship\"<|>PET<|>BILL OF LADING<|>Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.<|>9)\n##\n(\"relationship\"<|>PET<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>An international certificate of good health is required for transporting pets abroad.<|>8)\n##\n(\"relationship\"<|>PET<|>VETERINARIAN<|>Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.<|>7)\n##\n(\"relationship\"<|>PET<|>BUSINESS CABIN<|>Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.<|>6)\n##\n(\"relationship\"<|>PET<|>AIRCRAFT HOLD<|>Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>8)\n##\n(\"relationship\"<|>PET<|>PASSENGER AIRCRAFT CABIN<|>Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.<|>8)\n##\n(\"relationship\"<|>JOHANNESBURG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Johannesburg.<|>5)\n##\n(\"relationship\"<|>LONDON<|>PET<|>Transporting pets in the aircraft cabin is not allowed to London.<|>5)\n##\n(\"relationship\"<|>HONG KONG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Hong Kong.<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-009c2ebd60248f45f4d6f88b3057aa7c b/cache/entity_extraction/extract-loopcheck-0-chat-v2-009c2ebd60248f45f4d6f88b3057aa7c deleted file mode 100644 index 685f22736d9d8e7b8c675fe9c5c56f3aeb23b0c4..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-009c2ebd60248f45f4d6f88b3057aa7c +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment refers to items such as skis, bikes, and other sports gear that can be transported as checked baggage or cargo by airlines.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that offers standard services and amenities for passengers, excluding Lite fares.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a higher travel class that provides enhanced services and amenities compared to Economy Class.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class is a premium travel class that offers superior services and amenities for passengers.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division is a service that allows passengers to transport oversized or additional baggage separately from their standard allowance.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the measurements of baggage, typically expressed in length, width, and height.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the mass of baggage, which is a critical factor in determining baggage allowances and fees.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage.)\n##\n(\"entity\"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy Class.)\n##\n(\"entity\"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n(\"entity\"<|>70 USD<|>Fee Structure<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.)\n##\n(\"entity\"<|>150 USD<|>Fee Structure<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>US Dollars are the currency used for pricing and payment of baggage fees.)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an option for transporting sporting equipment that exceeds standard baggage allowances<|>7)\n##\n(\"relationship\"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are critical for determining whether sporting equipment can be transported as checked baggage<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key factor in determining the allowance and fees for transporting sporting equipment<|>9)\n##\n(\"relationship\"<|>277 CM<|>DIMENSIONS<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage<|>10)\n##\n(\"relationship\"<|>30 KG<|>WEIGHT<|>30 kg is the maximum weight limit for sports equipment in Economy Class<|>10)\n##\n(\"relationship\"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight limit for sports equipment in Business Class<|>10)\n##\n(\"relationship\"<|>70 USD<|>SPORTING EQUIPMENT<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco<|>8)\n##\n(\"relationship\"<|>150 USD<|>SPORTING EQUIPMENT<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America<|>8)\n##\n(\"relationship\"<|>US DOLLARS<|>70 USD<|>70 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n##\n(\"relationship\"<|>US DOLLARS<|>150 USD<|>150 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>Baggage Type<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which incurs additional fees.)\n##\n(\"entity\"<|>LITE FARES<|>Travel Class<|>Lite fares are a type of Economy Class fare that typically offers fewer services and amenities.)\n##\n(\"entity\"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports gear that exceeds the standard baggage allowance and requires special handling or fees.)\n##\n(\"entity\"<|>CARGO<|>Service Type<|>Cargo refers to goods or items transported in bulk, separate from passenger baggage, often requiring special arrangements.)\n##\n(\"entity\"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Excess baggage charges are fees applied when a passenger's luggage exceeds the allowed size or weight limits.)\n##\n(\"entity\"<|>AIRLINE<|>Airline<|>An airline is a company that provides air transport services for passengers and cargo.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>SPORTING EQUIPMENT<|>Checked baggage can include sporting equipment as long as it meets the airline's size and weight requirements<|>8)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>SPORTING EQUIPMENT<|>Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees<|>8)\n##\n(\"relationship\"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a subset of Economy Class fares that offer limited services<|>6)\n##\n(\"relationship\"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to any extra gear that requires special handling beyond the standard allowance<|>7)\n##\n(\"relationship\"<|>CARGO<|>SPORTING EQUIPMENT<|>Sporting equipment can be transported as cargo if it exceeds the standard baggage allowance<|>7)\n##\n(\"relationship\"<|>EXCESS BAGGAGE CHARGES<|>SPORTING EQUIPMENT<|>Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight<|>9)\n##\n(\"relationship\"<|>AIRLINE<|>CHECKED BAGGAGE<|>Airlines have specific policies regarding checked baggage, including size and weight limits<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-0861783b1045c1fc3322cf6f392af535 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-0861783b1045c1fc3322cf6f392af535 deleted file mode 100644 index a7188181abe5e73c4d8b8494ea3f5f3a50462e6f..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-0861783b1045c1fc3322cf6f392af535 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft.)\n##\n(\"entity\"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may contain batteries that are classified as dangerous goods and must be handled according to airline regulations.)\n##\n(\"entity\"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may include batteries and other components that are classified as dangerous goods.)\n##\n(\"entity\"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their dangerous nature.)\n##\n(\"entity\"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosive substances like acids and wet cell batteries are prohibited on aircraft.)\n##\n(\"entity\"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are prohibited on aircraft.)\n##\n(\"entity\"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to safety concerns.)\n##\n(\"entity\"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are prohibited on aircraft for safety reasons.)\n##\n(\"entity\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can harm people or the environment.)\n##\n(\"entity\"<|>SPARE BATTERIES<|>ALLOWANCE<|>Spare batteries must be protected from damage and short circuit when taken aboard an aircraft.)\n##\n(\"entity\"<|>DRY CELL ALKALINE BATTERIES<|>ALLOWANCE<|>Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.)\n##\n(\"entity\"<|>LITHIUM-ION BATTERIES<|>ALLOWANCE<|>Lithium-ion batteries, including consumer-grade types, are allowed aboard aircraft with specific watt-hour limits.)\n##\n(\"entity\"<|>PORTABLE CHARGERS<|>ALLOWANCE<|>Portable chargers are considered batteries and may be taken aboard aircraft under certain conditions.)\n##\n(\"relationship\"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries that are classified as dangerous goods and must be handled accordingly<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may include batteries that are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Both corrosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Both explosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Both radioactive materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>Both high-strength magnetic materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>SPARE BATTERIES<|>LITHIUM-ION BATTERIES<|>Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions<|>6)\n##\n(\"relationship\"<|>DRY CELL ALKALINE BATTERIES<|>LITHIUM-ION BATTERIES<|>Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>ACIDS<|>PROHIBITED ITEM<|>Acids are classified as corrosive substances and are prohibited on aircraft due to safety concerns.)\n##\n(\"entity\"<|>ALKALIS<|>PROHIBITED ITEM<|>Alkalis are classified as corrosive substances and are prohibited on aircraft due to safety concerns.)\n##\n(\"entity\"<|>WET CELL BATTERIES<|>PROHIBITED ITEM<|>Wet cell batteries are classified as corrosive substances and are prohibited on aircraft.)\n##\n(\"entity\"<|>ITEMS CONTAINING MERCURY<|>PROHIBITED ITEM<|>Items containing mercury are classified as dangerous goods and are prohibited on aircraft.)\n##\n(\"entity\"<|>LIGHT AMMUNITION<|>RESTRICTED ITEM<|>Light ammunition is restricted on aircraft and may be subject to specific regulations.)\n##\n(\"entity\"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials such as hydrogen peroxide and bleaching powders are prohibited on aircraft.)\n##\n(\"entity\"<|>POISONS<|>PROHIBITED ITEM<|>Poisons, including insecticides and herbicides, are classified as dangerous goods and are prohibited on aircraft.)\n##\n(\"entity\"<|>INFECTIOUS SUBSTANCES<|>PROHIBITED ITEM<|>Infectious substances, including live virus materials, are classified as dangerous goods and are prohibited on aircraft.)\n##\n(\"entity\"<|>MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>Magnetic materials that can harm people or the environment are prohibited on aircraft.)\n##\n(\"relationship\"<|>ACIDS<|>CORROSIVES<|>Acids are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>ALKALIS<|>CORROSIVES<|>Alkalis are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>WET CELL BATTERIES<|>CORROSIVES<|>Wet cell batteries are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>ITEMS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Items containing mercury are classified as dangerous goods and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Both oxidizing materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>POISONS<|>INFECTIOUS SUBSTANCES<|>Both poisons and infectious substances are classified as prohibited items on aircraft<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-1b290a6a22c1f6d3172b17f0fd89810c b/cache/entity_extraction/extract-loopcheck-0-chat-v2-1b290a6a22c1f6d3172b17f0fd89810c deleted file mode 100644 index 77b3ba95c73efb6e913153859734229b5ef306bc..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-1b290a6a22c1f6d3172b17f0fd89810c +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to the luggage that passengers check in at the airport, which is transported in the cargo hold of the aircraft.)\n##\n(\"entity\"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the standard dimensions set by airlines, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit established by airlines, often resulting in extra charges.)\n##\n(\"entity\"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>El Al is an airline known for its baggage policies, which are similar to those of Sundor.)\n##\n(\"entity\"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service where passengers can view and modify their flight details, including baggage allowances.)\n##\n(\"entity\"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger's reservation and includes details about baggage allowances.)\n##\n(\"entity\"<|>DIMENSIONS<|>DIMENSION<|>Dimensions refer to the measurements of baggage, which determine whether it is classified as standard, oversized, or overweight.)\n##\n(\"entity\"<|>WEIGHT<|>WEIGHT<|>Weight refers to the heaviness of baggage, which is a critical factor in determining if it is overweight.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>SUNDOR<|>Sundor has specific policies regarding checked baggage allowances for passengers<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EL AL<|>El Al's baggage policy is similar to that of Sundor, affecting checked baggage allowances<|>7)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling oversized baggage<|>6)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling overweight baggage<|>6)\n##\n(\"relationship\"<|>MANAGE YOUR BOOKING<|>FLIGHT TICKET<|>The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances<|>8)\n##\n(\"relationship\"<|>DIMENSIONS<|>OVERSIZED BAGGAGE<|>Oversized baggage is defined by exceeding authorized dimensions<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>OVERWEIGHT BAGGAGE<|>Overweight baggage is defined by exceeding the weight limit set by the airline<|>9)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>OVERWEIGHT BAGGAGE<|>Both oversized and overweight baggage require special handling and may incur additional fees<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n(\"entity\"<|>BAGGAGE POLICY<|>POLICY<|>Baggage policy outlines the rules and regulations regarding the types, sizes, and weights of baggage that passengers can bring on flights.)\n##\n(\"entity\"<|>STANDARD BAGGAGE<|>BAGGAGE TYPE<|>Standard baggage refers to luggage that meets the airline's specified dimensions and weight limits without incurring extra charges.)\n##\n(\"entity\"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>SERVICE LOCATION<|>The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage for check-in.)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>BAGGAGE POLICY<|>Baggage allowance is determined by the baggage policy of the airline<|>8)\n##\n(\"relationship\"<|>BAGGAGE POLICY<|>SUNDOR<|>Sundor has a specific baggage policy that dictates the rules for checked baggage<|>7)\n##\n(\"relationship\"<|>BAGGAGE POLICY<|>EL AL<|>El Al has a specific baggage policy that dictates the rules for checked baggage<|>7)\n##\n(\"relationship\"<|>STANDARD BAGGAGE<|>BAGGAGE POLICY<|>Standard baggage must comply with the airline's baggage policy<|>8)\n##\n(\"relationship\"<|>OVERSIZED BAGGAGE<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>Passengers with oversized baggage must take their bags to the designated location for check-in<|>7)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>Passengers with overweight baggage must take their bags to the designated location for check-in<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-24a5497e33cf34a56cb09b59662100f0 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-24a5497e33cf34a56cb09b59662100f0 deleted file mode 100644 index c11a923f440abf23b2ee7277d1717e0f2ba2c95c..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-24a5497e33cf34a56cb09b59662100f0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of dogs on its flights.)\n##\n(\"entity\"<|>DOG<|>SPECIAL ITEM<|>A dog that may be transported by passengers under certain conditions and regulations.)\n##\n(\"entity\"<|>PASSENGER<|>PASSENGER TYPE<|>A person traveling on the airline who may bring a dog on board under specific conditions.)\n##\n(\"relationship\"<|>PASSENGER<|>DOG<|>The passenger is responsible for the dog's behavior and must meet conditions for its transport<|>7)\n##\n(\"relationship\"<|>EL AL<|>DOG<|>EL AL has policies that govern the transport of dogs, including conditions under which they may be refused<|>8)\n##\n(\"relationship\"<|>EL AL<|>PASSENGER<|>EL AL has specific requirements that passengers must meet to transport a dog<|>8)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>HOLD<|>CARGO<|>The hold is the area of the aircraft where animals, including dogs, may be transported if they cannot be accommodated in the passenger cabin.)\n##\n(\"entity\"<|>SAFETY AND SECURITY REGULATIONS<|>POLICY<|>Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.)\n##\n(\"entity\"<|>FORMS<|>REQUIRED DOCUMENT<|>Necessary documentation that passengers must provide to transport a dog on EL AL flights.)\n##\n(\"entity\"<|>DISTURBANCE<|>RESTRICTION<|>A situation where the dog's behavior causes disruption on the aircraft, leading to potential refusal of transport.)\n##\n(\"entity\"<|>DIRECT THREAT<|>RESTRICTION<|>A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.)\n##\n(\"relationship\"<|>PASSENGER<|>HOLD<|>If the dog cannot be transported in the passenger cabin, it may be placed in the hold<|>6)\n##\n(\"relationship\"<|>EL AL<|>SAFETY AND SECURITY REGULATIONS<|>EL AL must adhere to safety and security regulations when transporting dogs<|>9)\n##\n(\"relationship\"<|>PASSENGER<|>FORMS<|>Passengers must provide the required forms to transport a dog on EL AL flights<|>8)\n##\n(\"relationship\"<|>DOG<|>DISTURBANCE<|>A dog's behavior may lead to a disturbance, affecting its ability to be transported<|>7)\n##\n(\"relationship\"<|>DOG<|>DIRECT THREAT<|>If a dog is deemed a direct threat, it may be refused transport by EL AL<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-2c21579d0bd12c8267df9b8082fe7e96 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-2c21579d0bd12c8267df9b8082fe7e96 deleted file mode 100644 index f4ebcc6fa7d754efa2cae33881ca4371fdada4bd..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-2c21579d0bd12c8267df9b8082fe7e96 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing \"shell shock\" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CARGO DIVISION<|>ORGANIZATION<|>The Cargo Division is responsible for managing transport costs and guidelines for cargo, including pets.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the passenger cabin based on size, weight, and permits.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for transporting pets and service dogs on flights.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs can accompany passengers with special needs or military personnel and must meet specific requirements for transport.)\n##\n(\"entity\"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is required for transporting service dogs and must be provided by the passenger.)\n##\n(\"entity\"<|>TRANSPORT CAGE GUIDELINES<|>POLICY<|>Guidelines that outline the requirements for transport cages used for pets during flights.)\n##\n(\"entity\"<|>PASSENGER CABIN<|>CABIN SECTION<|>The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.)\n##\n(\"entity\"<|>WEIGHT<|>DIMENSION<|>Weight is a factor in determining the cost of transporting pets, including the animal, carrying case, and food.)\n##\n(\"entity\"<|>ALLOWANCE<|>ALLOWANCE<|>The permitted baggage allowance does not include the weight of pets being transported.)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division provides transport cost guidelines and policies for EL AL regarding cargo, including pets.<|>7)\n##\n(\"relationship\"<|>PET<|>PASSENGER CABIN<|>Pets can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>PASSENGER CABIN<|>Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.<|>9)\n##\n(\"relationship\"<|>VETERINARY CERTIFICATE<|>SERVICE DOG<|>A veterinary certificate is required for the transport of service dogs.<|>8)\n##\n(\"relationship\"<|>PET<|>ALLOWANCE<|>The weight of pets is not included in the permitted baggage allowance, affecting transport costs.<|>6)\n##\n(\"relationship\"<|>TRANSPORT CAGE GUIDELINES<|>PET<|>Transport cage guidelines provide the necessary requirements for transporting pets safely.<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>DOG<|>SPECIAL ITEM<|>Dogs are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n(\"entity\"<|>CAT<|>SPECIAL ITEM<|>Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n(\"entity\"<|>EXOTIC BIRD<|>SPECIAL ITEM<|>Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n(\"entity\"<|>I.D.F SOLDIER<|>PASSENGER TYPE<|>I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.)\n##\n(\"entity\"<|>SHELL SHOCK<|>RESTRICTION<|>Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.)\n##\n(\"entity\"<|>CARRYING CASE<|>MATERIAL TYPE<|>The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.)\n##\n(\"entity\"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.)\n##\n(\"relationship\"<|>DOG<|>PASSENGER CABIN<|>Dogs can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>CAT<|>PASSENGER CABIN<|>Cats can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>EXOTIC BIRD<|>PASSENGER CABIN<|>Exotic birds can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n(\"relationship\"<|>I.D.F SOLDIER<|>SERVICE DOG<|>I.D.F soldiers may transport service dogs at no additional cost under specific conditions.<|>9)\n##\n(\"relationship\"<|>SHELL SHOCK<|>SERVICE DOG<|>Passengers experiencing shell shock may qualify to transport service dogs at no additional cost.<|>8)\n##\n(\"relationship\"<|>CARRYING CASE<|>PET<|>The carrying case is required for transporting pets, and its weight is included in the transport cost.<|>7)\n##\n(\"relationship\"<|>FLIGHT TICKET<|>PET<|>A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.<|>6)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-3184f569d8f43be802a5bef615cf2e91 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-3184f569d8f43be802a5bef615cf2e91 deleted file mode 100644 index bbbb8c225f74a007bc21469591f8ea87e21c864b..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-3184f569d8f43be802a5bef615cf2e91 +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n​​Do not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides baggage check-in services and has specific baggage policies for different travel classes.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>TRAVEL CLASS<|>Premium class tickets allow passengers to check up to two pieces of baggage weighing up to 23 kg each.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>TRAVEL CLASS<|>Business class tickets allow passengers to check up to two pieces of baggage weighing up to 32 kg each.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is checked in at the airport and transported in the cargo hold of the aircraft.)\n##\n(\"entity\"<|>CARRY-ON ALLOWANCE<|>ALLOWANCE<|>Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.)\n##\n(\"entity\"<|>23 KG<|>WEIGHT<|>23 kg is the maximum weight allowed for each piece of checked baggage in premium class.)\n##\n(\"entity\"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight allowed for each piece of checked baggage in business class.)\n##\n(\"entity\"<|>ADDITIONAL HANDLING FEE<|>FEE STRUCTURE<|>An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.)\n##\n(\"entity\"<|>EXCESS BAGGAGE<|>RESTRICTION<|>Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance is determined by the ticket type and specifies how much baggage a passenger can check without incurring extra fees.)\n##\n(\"entity\"<|>CODE-SHARE FLIGHTS<|>ROUTE TYPE<|>Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.)\n##\n(\"entity\"<|>MANAGE MY BOOKING<|>SERVICE TYPE<|>Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.)\n##\n(\"entity\"<|>CHECK-IN PROCESS<|>SERVICE TYPE<|>The check-in process is the procedure passengers go through to confirm their presence on a flight and check in their baggage.)\n##\n(\"entity\"<|>FLIGHT SEGMENT<|>TIME PERIOD<|>A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.)\n##\n(\"relationship\"<|>EL AL<|>PREMIUM CLASS<|>EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each<|>8)\n##\n(\"relationship\"<|>EL AL<|>BUSINESS CLASS<|>EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each<|>8)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>PREMIUM CLASS<|>Premium class includes checked baggage allowances<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>BUSINESS CLASS<|>Business class includes checked baggage allowances<|>7)\n##\n(\"relationship\"<|>ADDITIONAL HANDLING FEE<|>EL AL<|>EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center<|>6)\n##\n(\"relationship\"<|>EXCESS BAGGAGE<|>CHECKED BAGGAGE<|>Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees<|>7)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance determines how much checked baggage a passenger can bring<|>8)\n##\n(\"relationship\"<|>CODE-SHARE FLIGHTS<|>CHECKED BAGGAGE<|>Baggage procedures may vary on code-share flights depending on the marketing carrier<|>5)\n##\n(\"relationship\"<|>MANAGE MY BOOKING<|>EL AL<|>Passengers can add baggage via the Manage my booking service provided by EL AL<|>7)\n##\n(\"relationship\"<|>CHECK-IN PROCESS<|>EL AL<|>Passengers can add baggage during the check-in process for their EL AL flight<|>7)\n##\n(\"relationship\"<|>FLIGHT SEGMENT<|>BAGGAGE ALLOWANCE<|>Baggage allowance is specified for each flight segment on the ticket<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>$90<|>FEE STRUCTURE<|>The cost to check a piece of baggage not included in the ticket price is $90 when reserved at the airport.)\n##\n(\"entity\"<|>$5<|>FEE STRUCTURE<|>An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.)\n##\n(\"entity\"<|>50% DISCOUNT<|>POLICY<|>Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.)\n##\n(\"entity\"<|>TICKET TYPE<|>DIMENSION<|>The ticket type determines the baggage allowance and rules applicable to each passenger's reservation.)\n##\n(\"entity\"<|>CHECKED BAGGAGE RULES<|>POLICY<|>Checked baggage rules may vary when several airlines are involved in a flight route.)\n##\n(\"entity\"<|>FREE BAGGAGE ALLOWANCE<|>ALLOWANCE<|>The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.)\n##\n(\"entity\"<|>ADDITIONAL PIECES OF CHECKED BAGGAGE<|>RESTRICTION<|>There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.)\n##\n(\"relationship\"<|>$90<|>CHECKED BAGGAGE<|>The fee of $90 is specifically for checking a piece of baggage not included in the ticket price<|>8)\n##\n(\"relationship\"<|>$5<|>EL AL<|>The additional handling fee of $5 is charged by EL AL for baggage checked through their service center<|>6)\n##\n(\"relationship\"<|>50% DISCOUNT<|>EL AL<|>EL AL offers a 50% discount on baggage fees if purchased online before the flight<|>7)\n##\n(\"relationship\"<|>TICKET TYPE<|>BAGGAGE ALLOWANCE<|>The baggage allowance is determined by the ticket type specified on the reservation<|>8)\n##\n(\"relationship\"<|>CHECKED BAGGAGE RULES<|>EL AL<|>Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL's policies<|>5)\n##\n(\"relationship\"<|>FREE BAGGAGE ALLOWANCE<|>TICKET TYPE<|>The free baggage allowance is based on the ticket type and is specified for each flight segment<|>7)\n##\n(\"relationship\"<|>ADDITIONAL PIECES OF CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Additional pieces of checked baggage incur fees beyond the standard allowance<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-36cd5a64d4dbcc5199bb42fa5eb90752 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-36cd5a64d4dbcc5199bb42fa5eb90752 deleted file mode 100644 index 2fcf226445c090929a4bef072a9c82fee2e2ce06..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-36cd5a64d4dbcc5199bb42fa5eb90752 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon – Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE TAG<|>LABEL TYPE<|>A baggage tag is a label attached to luggage that provides information about the owner and destination of the baggage.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS DEPARTMENT<|>SERVICE LOCATION<|>The Baggage Claims Department is responsible for handling reports of damaged baggage and processing claims.)\n##\n(\"entity\"<|>EL AL ISRAEL AIRLINES LTD.<|>AIRLINE<|>EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines.)\n##\n(\"entity\"<|>DIGITAL CONTACT FORM<|>REQUIRED DOCUMENT<|>The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.)\n##\n(\"entity\"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud is a store that specializes in baggage and outdoor equipment.)\n##\n(\"entity\"<|>WE SHOES<|>SERVICE TYPE<|>WeShoes is a store that sells shoes and may also provide related services.)\n##\n(\"entity\"<|>MEMSI TOURING<|>SERVICE TYPE<|>Memsi Touring is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon is a service provider that offers pickup and delivery services for baggage.)\n##\n(\"entity\"<|>SHIN TIK<|>SERVICE TYPE<|>Shin Tik is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>TREK MARKET<|>SERVICE TYPE<|>Trek Market is a service provider that may offer travel-related services, including baggage handling.)\n##\n(\"entity\"<|>KIRYAT ONO<|>GEO<|>Kiryat Ono is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>RAMAT GAN<|>GEO<|>Ramat Gan is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>GEVATAIM<|>GEO<|>Gevataim is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>BAT YAM<|>GEO<|>Bat Yam is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>HOLON<|>GEO<|>Holon is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>PETACH TIKVA<|>GEO<|>Petach Tikva is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"relationship\"<|>BAGGAGE TAG<|>BAGGAGE CLAIMS DEPARTMENT<|>The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.<|>8)\n##\n(\"relationship\"<|>BAGGAGE CLAIMS DEPARTMENT<|>EL AL ISRAEL AIRLINES LTD.<|>The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.<|>9)\n##\n(\"relationship\"<|>EL AL ISRAEL AIRLINES LTD.<|>BEN GURION AIRPORT<|>EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.<|>9)\n##\n(\"relationship\"<|>DIGITAL CONTACT FORM<|>BAGGAGE CLAIMS DEPARTMENT<|>The Digital Contact Form is used to submit claims to the Baggage Claims Department.<|>7)\n##\n(\"relationship\"<|>MAKOR HAZIUD<|>BAGGAGE CLAIMS DEPARTMENT<|>Makor Haziud may provide equipment that is relevant for baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>WE SHOES<|>BAGGAGE CLAIMS DEPARTMENT<|>WeShoes may provide services related to baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>MEMSI TOURING<|>BAGGAGE CLAIMS DEPARTMENT<|>Memsi Touring may offer services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>ARTY RIMON<|>BAGGAGE CLAIMS DEPARTMENT<|>ARTY Rimon provides pickup and delivery services that may relate to baggage claims.<|>5)\n##\n(\"relationship\"<|>SHIN TIK<|>BAGGAGE CLAIMS DEPARTMENT<|>Shin Tik may provide services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>TREK MARKET<|>BAGGAGE CLAIMS DEPARTMENT<|>Trek Market may offer services that assist with baggage handling and claims.<|>4)\n##\n(\"relationship\"<|>KIRYAT ONO<|>BAGGAGE CLAIMS DEPARTMENT<|>Kiryat Ono has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>RAMAT GAN<|>BAGGAGE CLAIMS DEPARTMENT<|>Ramat Gan has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>GEVATAIM<|>BAGGAGE CLAIMS DEPARTMENT<|>Gevataim has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>BAT YAM<|>BAGGAGE CLAIMS DEPARTMENT<|>Bat Yam has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>HOLON<|>BAGGAGE CLAIMS DEPARTMENT<|>Holon has stores that may assist with baggage claims and services.<|>3)\n##\n(\"relationship\"<|>PETACH TIKVA<|>BAGGAGE CLAIMS DEPARTMENT<|>Petach Tikva has stores that may assist with baggage claims and services.<|>3)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>CARGO<|>SERVICE TYPE<|>Cargo refers to the goods or merchandise transported, which may include baggage and other items handled at the airport.)\n##\n(\"entity\"<|>ZIP CODE 7015001<|>REQUIRED DOCUMENT<|>Zip Code 7015001 is the postal code for the mailing address of the Baggage Claims Department at Ben Gurion Airport.)\n##\n(\"entity\"<|>TEL AVIV<|>GEO<|>Tel Aviv is a city in Israel where various stores and services related to baggage are located.)\n##\n(\"entity\"<|>ADDRESS<|>REQUIRED DOCUMENT<|>Address refers to the specific location details required for sending claims or correspondence related to baggage.)\n##\n(\"entity\"<|>SERVICE PICKUP AND DELIVERY<|>SERVICE TYPE<|>Service Pickup and Delivery refers to the service provided by various stores to collect and deliver baggage for customers.)\n##\n(\"entity\"<|>BAVLI NEIGHBORHOOD<|>GEO<|>Bavli Neighborhood is a specific area in Tel Aviv where baggage-related services are offered.)\n##\n(\"entity\"<|>HAAILIYA STREET 24<|>REQUIRED DOCUMENT<|>Haaliya Street 24 is the address of Makor Haziud, a store that sells baggage and outdoor equipment.)\n##\n(\"entity\"<|>BIALIK 3<|>REQUIRED DOCUMENT<|>Bialik 3 is the address of WeShoes, a store that may provide services related to baggage.)\n##\n(\"entity\"<|>STEINMAN 20<|>REQUIRED DOCUMENT<|>Steinman 20 is the address of Log In Log Out, an importer of luggage and bags.)\n##\n(\"entity\"<|>SOKOLOV 59<|>REQUIRED DOCUMENT<|>Sokolov 59 is the address of Shin Tik, a service provider related to baggage handling.)\n##\n(\"entity\"<|>IZTHAK RABIN 2<|>REQUIRED DOCUMENT<|>Izthak Rabin 2 is the address of Trek Market, a service provider related to baggage handling.)\n##\n(\"entity\"<|>SHLOMO HA-MELEKH 37<|>REQUIRED DOCUMENT<|>Shlomo Ha-Melekh 37 is the address of WeShoes in Kiryat Ono.)\n##\n(\"entity\"<|>HAMERETZ 6<|>REQUIRED DOCUMENT<|>Hameretz 6 is the address of ARTY Rimon in Petach Tikva.)\n##\n(\"entity\"<|>SERVICE<|>SERVICE TYPE<|>Service refers to the various types of assistance provided to customers regarding baggage handling and claims.)\n##\n(\"entity\"<|>WHATSAPP<|>REQUIRED DOCUMENT<|>WhatsApp is a communication tool used by various stores for customer service related to baggage.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-374e6b181ef3bb27aeeb897d7594b56e b/cache/entity_extraction/extract-loopcheck-0-chat-v2-374e6b181ef3bb27aeeb897d7594b56e deleted file mode 100644 index f5ab69c47ed2e19f12cb8551f7b1f50e0fddd7ed..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-374e6b181ef3bb27aeeb897d7594b56e +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>El Al is an airline that requires passengers to check in at their counters regardless of luggage when returning to Israel from abroad.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the destination for passengers returning from abroad.)\n##\n(\"entity\"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are designated areas where passengers must check in for their flights.)\n##\n(\"entity\"<|>FLIGHT DESTINATION<|>REQUIRED DOCUMENT<|>Flight destination refers to the location where passengers are traveling and requires necessary documents for check-in.)\n##\n(\"relationship\"<|>EL AL<|>CHECK-IN COUNTERS<|>El Al requires passengers to use check-in counters for their flights<|>8)\n##\n(\"relationship\"<|>CHECK-IN COUNTERS<|>ISRAEL<|>Passengers checking in at the counters are returning to Israel<|>5)\n##\n(\"relationship\"<|>FLIGHT DESTINATION<|>EL AL<|>Passengers must have necessary documents according to their flight destination when checking in with El Al<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>SECURITY CHECK AREAS<|>SERVICE LOCATION<|>Designated areas where passengers must proceed for security checks before boarding their flights.)\n##\n(\"entity\"<|>PASSENGERS<|>PASSENGER TYPE<|>Individuals traveling on flights who must check in at the counters regardless of luggage.)\n##\n(\"entity\"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Necessary paperwork that passengers must have available according to their flight destination.)\n##\n(\"relationship\"<|>PASSENGERS<|>CHECK-IN COUNTERS<|>Passengers must check in at the counters regardless of luggage<|>9)\n##\n(\"relationship\"<|>SECURITY CHECK AREAS<|>CHECK-IN COUNTERS<|>Passengers must proceed to security check areas after checking in at the counters<|>6)\n##\n(\"relationship\"<|>DOCUMENTS<|>PASSENGERS<|>Passengers must have necessary documents available for their flight<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-3a7f102ab51d28ec6c534397972a7110 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-3a7f102ab51d28ec6c534397972a7110 deleted file mode 100644 index 10d280d080a5c15ebfa5f515cb06dac5ca16fcd6..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-3a7f102ab51d28ec6c534397972a7110 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, subject to size and weight restrictions.)\n##\n(\"entity\"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Charges applied when baggage exceeds the permitted size and weight dimensions for checked baggage.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>US dollars are the currency used for displaying prices related to baggage fees and charges.)\n##\n(\"entity\"<|>LOCAL CURRENCY<|>Currency<|>Local currency refers to the currency accepted at specific airports for payment of fees, which may vary by location.)\n##\n(\"entity\"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment includes one pair of skis, one pair of poles, and one pair of ski boots, which can be transported under specific conditions.)\n##\n(\"entity\"<|>SNOWBOARD EQUIPMENT<|>Special Item<|>Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.)\n##\n(\"entity\"<|>BICYCLE<|>Special Item<|>A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.)\n##\n(\"entity\"<|>LITE FARE TICKET<|>Travel Class<|>A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that has specific regulations regarding the transport of baggage, including special items like ski equipment and bicycles.)\n##\n(\"entity\"<|>CARGO DIVISION<|>Service Location<|>The Cargo Division of EL AL handles special requests and approvals for transporting oversized or special items.)\n##\n(\"entity\"<|>EL AL CALL CENTER<|>Service Location<|>The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.)\n##\n(\"entity\"<|>PERMITTED DIMENSIONS<|>Restriction<|>The maximum size and weight limits that checked baggage and special items must adhere to for transport.)\n##\n(\"entity\"<|>PACKING REGULATIONS<|>Policy<|>Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions<|>9)\n##\n(\"relationship\"<|>US DOLLARS<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges are displayed in US dollars<|>7)\n##\n(\"relationship\"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE CHARGES<|>At some airports, payment for excess baggage charges is allowed only in local currency<|>5)\n##\n(\"relationship\"<|>SKI EQUIPMENT<|>CHECKED BAGGAGE<|>Ski equipment can be included in checked baggage under specific conditions<|>8)\n##\n(\"relationship\"<|>SNOWBOARD EQUIPMENT<|>CHECKED BAGGAGE<|>Snowboard equipment can be included in checked baggage under specific conditions<|>8)\n##\n(\"relationship\"<|>BICYCLE<|>CHECKED BAGGAGE<|>A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions<|>8)\n##\n(\"relationship\"<|>LITE FARE TICKET<|>SKI EQUIPMENT<|>Ski equipment transport does not apply on LITE fare tickets<|>6)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL manages special requests for transporting oversized items<|>7)\n##\n(\"relationship\"<|>BICYCLE<|>CARGO DIVISION<|>Transport of bicycles requires pre-approval from the Cargo Division<|>6)\n##\n(\"relationship\"<|>BICYCLE<|>EL AL CALL CENTER<|>Pre-approval for transporting bicycles must be obtained from the EL AL call center<|>6)\n##\n(\"relationship\"<|>PERMITTED DIMENSIONS<|>CHECKED BAGGAGE<|>Checked baggage must meet the permitted dimensions for transport<|>9)\n##\n(\"relationship\"<|>PACKING REGULATIONS<|>BICYCLE<|>Bicycles must be packed according to specific packing regulations to be transported<|>8)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>50 KG<|>Weight<|>The maximum weight limit for checked baggage, including special items like ski equipment, is 50 kg.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>The total maximum dimensions (length + height + width) for checked baggage, including ski equipment, must not exceed 277 cm.)\n##\n(\"entity\"<|>MOTORIZED BICYCLES<|>Prohibited Item<|>Motorized bicycles are not allowed to be transported as checked baggage.)\n##\n(\"entity\"<|>EXCEPTIONAL CASES<|>Exemption<|>Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.)\n##\n(\"entity\"<|>EL AL AIRCRAFT<|>Aircraft Type<|>The information provided applies specifically to EL AL flights on EL AL aircraft.)\n##\n(\"entity\"<|>DESTINATION COUNTRY<|>GEO<|>The country to which the passenger is traveling, which may have specific regulations regarding the transport of equipment.)\n##\n(\"entity\"<|>PASSENGER<|>Passenger Type<|>Individuals traveling on EL AL flights who must comply with baggage regulations.)\n##\n(\"relationship\"<|>50 KG<|>CHECKED BAGGAGE<|>The maximum weight limit for checked baggage is 50 kg<|>9)\n##\n(\"relationship\"<|>277 CM<|>CHECKED BAGGAGE<|>The total dimensions for checked baggage must not exceed 277 cm<|>9)\n##\n(\"relationship\"<|>MOTORIZED BICYCLES<|>BICYCLE<|>Motorized bicycles are prohibited from being transported as checked baggage<|>10)\n##\n(\"relationship\"<|>EXCEPTIONAL CASES<|>BICYCLE<|>Transport of bicycles may be allowed in exceptional cases with prior approval<|>6)\n##\n(\"relationship\"<|>EL AL AIRCRAFT<|>CHECKED BAGGAGE<|>The baggage regulations apply specifically to EL AL aircraft<|>7)\n##\n(\"relationship\"<|>DESTINATION COUNTRY<|>PASSENGER<|>Passengers must comply with the regulations of the destination country regarding baggage<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-3b8a8f01b5921cad237c9475f3aae977 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-3b8a8f01b5921cad237c9475f3aae977 deleted file mode 100644 index 1b6cc544bd4a98c36b8e635f12c321e26f287ff1..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-3b8a8f01b5921cad237c9475f3aae977 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t​Europe and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo or baggage.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the airport in Israel where animals are released after transport.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of animals as cargo.)\n##\n(\"entity\"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department determines the conditions under which animals can be transported.)\n##\n(\"entity\"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals as cargo.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Veterinary Services Department is required to transport a pet as cargo.)\n##\n(\"entity\"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed for transporting animals internationally.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is required for pets being transported.)\n##\n(\"entity\"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>REQUIRED DOCUMENT<|>Laboratory results for rabies antibodies are necessary for transporting pets.)\n##\n(\"entity\"<|>COSTS OF TRANSPORTING ANIMALS<|>POLICY<|>The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.)\n##\n(\"entity\"<|>ANIMALS WEIGHING UP TO 9 KG<|>WEIGHT CATEGORY<|>Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>WEIGHT CATEGORY<|>Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>WEIGHT CATEGORY<|>Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.)\n##\n(\"entity\"<|>ANIMALS WEIGHING MORE THAN 100 KG<|>WEIGHT CATEGORY<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>EL AL's Cargo Division is responsible for handling the transportation of animals as cargo<|>8)\n##\n(\"relationship\"<|>BEN GURION AIRPORT<|>EL AL<|>Animals transported by EL AL are released at Ben Gurion Airport<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>AUTHORIZATION<|>Authorization from the Veterinary Services Department is required for transporting pets as cargo<|>9)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>BILL OF LADING<|>The Veterinary Services Department determines if a bill of lading is needed for transporting animals<|>6)\n##\n(\"relationship\"<|>EXPORT LICENSE<|>VETERINARY SERVICES DEPARTMENT<|>An export license is required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>CERTIFICATE OF GOOD HEALTH<|>VETERINARY SERVICES DEPARTMENT<|>A certificate of good health is required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>VETERINARY SERVICES DEPARTMENT<|>Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals<|>7)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING UP TO 9 KG<|>The cost of transporting animals weighing up to 9 kg is $100 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>The cost of transporting animals weighing between 9 and 50 kg is $200 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>The cost of transporting animals weighing between 50 and 100 kg is $400 when transported as baggage<|>8)\n##\n(\"relationship\"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING MORE THAN 100 KG<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division<|>9)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>PETS<|>SPECIAL ITEM<|>Pets are animals that can be transported as either cargo or baggage under specific guidelines.)\n##\n(\"entity\"<|>CARGO<|>ROUTE TYPE<|>Cargo refers to the transportation of goods, including animals, typically handled by the Cargo Division.)\n##\n(\"entity\"<|>BAGGAGE<|>ROUTE TYPE<|>Baggage refers to personal items, including pets, that passengers can take on board the aircraft.)\n##\n(\"entity\"<|>9 KG<|>WEIGHT<|>9 kg is the weight limit for pets to be transported as baggage without additional requirements.)\n##\n(\"entity\"<|>50 KG<|>WEIGHT<|>50 kg is the upper weight limit for pets to be transported as baggage with specific fees.)\n##\n(\"entity\"<|>100 KG<|>WEIGHT<|>100 kg is the maximum weight for pets to be transported as baggage; heavier pets must be transported as cargo.)\n##\n(\"entity\"<|>CARGO TERMINAL<|>SERVICE LOCATION<|>The cargo terminal at Ben Gurion Airport is where animals transported as cargo are released.)\n##\n(\"entity\"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The arrivals hall at Ben Gurion Airport is where animals transported as baggage are released.)\n##\n(\"relationship\"<|>PETS<|>BAGGAGE<|>Pets can be transported as baggage under specific guidelines<|>8)\n##\n(\"relationship\"<|>PETS<|>CARGO<|>Pets can also be transported as cargo depending on their weight and requirements<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>BEN GURION AIRPORT<|>Baggage, including pets, is released at Ben Gurion Airport's arrivals hall<|>7)\n##\n(\"relationship\"<|>CARGO<|>BEN GURION AIRPORT<|>Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-5309fd2badf39913dc83bc3739ed30bf b/cache/entity_extraction/extract-loopcheck-0-chat-v2-5309fd2badf39913dc83bc3739ed30bf deleted file mode 100644 index 511bd0926a0dc11457fbf26a8325cd596582c2b0..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-5309fd2badf39913dc83bc3739ed30bf +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo and requires specific documentation for pet travel.)\n##\n(\"entity\"<|>CDC<|>ORGANIZATION<|>The CDC sets regulations regarding the transportation of dogs to the US and provides guidelines that must be followed by passengers.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is defined as a high-risk country for transporting dogs according to the CDC.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of pets as cargo and requires specific documentation for this service.)\n##\n(\"entity\"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals, especially when they weigh more than 9 kg.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is necessary for transporting pets to ensure they are fit for travel.)\n##\n(\"entity\"<|>TRANSPORT AUTHORIZATION<|>REQUIRED DOCUMENT<|>Transport authorization from the destination country authorities is required for transporting pets.)\n##\n(\"entity\"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed to transport animals out of the country.)\n##\n(\"entity\"<|>MEASUREMENTS OF TRANSPORT CAGE<|>DIMENSION<|>The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.)\n##\n(\"relationship\"<|>EL AL<|>CDC<|>EL AL must comply with CDC regulations for transporting dogs to the US<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL is responsible for handling pet transportation services<|>7)\n##\n(\"relationship\"<|>CARGO DIVISION<|>BILL OF LADING<|>The Cargo Division requires a bill of lading for transporting animals over 9 kg<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>CERTIFICATE OF GOOD HEALTH<|>The Cargo Division requires a certificate of good health for pets being transported<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>TRANSPORT AUTHORIZATION<|>The Cargo Division requires transport authorization from destination authorities for pet transport<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EXPORT LICENSE<|>The Cargo Division requires an export license for transporting animals<|>6)\n##\n(\"relationship\"<|>CARGO DIVISION<|>MEASUREMENTS OF TRANSPORT CAGE<|>The Cargo Division requires the measurements of the transport cage for compliance<|>6)\n##\n(\"relationship\"<|>ISRAEL<|>CDC<|>Israel is classified as a high-risk country by the CDC for transporting dogs<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>PETS<|>SPECIAL ITEM<|>Pets are animals that can be transported as cargo or baggage, requiring specific documentation and guidelines for travel.)\n##\n(\"entity\"<|>DOGS<|>SPECIAL ITEM<|>Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.)\n##\n(\"entity\"<|>HIGH-RISK COUNTRY<|>RESTRICTION<|>A designation given to countries, such as Israel, where additional regulations apply for transporting certain animals.)\n##\n(\"entity\"<|>AIRPORT FACILITIES<|>SERVICE LOCATION<|>Airport facilities in the United States may incur additional charges for inspecting and releasing pets.)\n##\n(\"entity\"<|>DOCUMENTS AND AUTHORIZATIONS<|>REQUIRED DOCUMENT<|>Documents and authorizations are necessary for transporting pets and must be presented at check-in.)\n##\n(\"entity\"<|>TRANSPORTING ANIMALS<|>SERVICE TYPE<|>The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.)\n##\n(\"entity\"<|>US<|>GEO<|>The United States has specific regulations regarding the transportation of pets, particularly dogs.)\n##\n(\"entity\"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health in Israel is responsible for approving the entry of animals into the country.)\n##\n(\"relationship\"<|>EL AL<|>PETS<|>EL AL provides services for transporting pets as cargo and requires specific documentation for their travel<|>8)\n##\n(\"relationship\"<|>DOGS<|>PETS<|>Dogs are classified as pets that require special regulations for transportation<|>7)\n##\n(\"relationship\"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health in Israel regulates the entry of animals into the country<|>8)\n##\n(\"relationship\"<|>US<|>DOGS<|>The US has specific regulations regarding the transportation of dogs<|>7)\n##\n(\"relationship\"<|>AIRPORT FACILITIES<|>DOGS<|>Airport facilities may charge additional fees for inspecting and releasing dogs<|>6)\n##\n(\"relationship\"<|>DOCUMENTS AND AUTHORIZATIONS<|>PETS<|>Documents and authorizations are required for transporting pets<|>8)\n##\n(\"relationship\"<|>TRANSPORTING ANIMALS<|>CARGO DIVISION<|>The Cargo Division specializes in transporting animals, including pets<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-557a80b2ded2e8aff147e254b55f4e2e b/cache/entity_extraction/extract-loopcheck-0-chat-v2-557a80b2ded2e8aff147e254b55f4e2e deleted file mode 100644 index add2ceb1c0d9a3dcab10aacfd7779add7f68c9df..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-557a80b2ded2e8aff147e254b55f4e2e +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country’s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service provided by EL AL for transporting cargo, including pets, from Israel abroad.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country from which animals are transported abroad.)\n##\n(\"entity\"<|>JOHANNESBURG<|>AIRPORT<|>Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>LONDON<|>AIRPORT<|>London is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>HONG KONG<|>AIRPORT<|>Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions and weight limits.)\n##\n(\"entity\"<|>VETERINARIAN<|>SERVICE TYPE<|>Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.)\n##\n(\"entity\"<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.)\n##\n(\"entity\"<|>BILL OF LADING<|>RESTRICTION<|>A bill of lading is required for transporting animals as cargo, indicating the terms of transport.)\n##\n(\"entity\"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where pets may be transported under certain conditions.)\n##\n(\"entity\"<|>AIRCRAFT HOLD<|>CARGO<|>The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.)\n##\n(\"entity\"<|>PASSENGER AIRCRAFT CABIN<|>CARGO<|>The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.)\n##\n(\"relationship\"<|>EL AL CARGO STORE<|>ISRAEL<|>The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.<|>7)\n##\n(\"relationship\"<|>PET<|>ISRAEL<|>Pets are transported from Israel to other countries, requiring specific permits and conditions.<|>8)\n##\n(\"relationship\"<|>PET<|>BILL OF LADING<|>Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.<|>9)\n##\n(\"relationship\"<|>PET<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>An international certificate of good health is required for transporting pets abroad.<|>8)\n##\n(\"relationship\"<|>PET<|>VETERINARIAN<|>Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.<|>7)\n##\n(\"relationship\"<|>PET<|>BUSINESS CABIN<|>Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.<|>6)\n##\n(\"relationship\"<|>PET<|>AIRCRAFT HOLD<|>Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>8)\n##\n(\"relationship\"<|>PET<|>PASSENGER AIRCRAFT CABIN<|>Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.<|>8)\n##\n(\"relationship\"<|>JOHANNESBURG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Johannesburg.<|>5)\n##\n(\"relationship\"<|>LONDON<|>PET<|>Transporting pets in the aircraft cabin is not allowed to London.<|>5)\n##\n(\"relationship\"<|>HONG KONG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Hong Kong.<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>ANIMAL<|>SPECIAL ITEM<|>Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations when traveling from Israel abroad.)\n##\n(\"entity\"<|>CAGE<|>SPECIAL ITEM<|>A cage is required for transporting animals, ensuring their safety and compliance with airline regulations.)\n##\n(\"entity\"<|>WEIGHT<|>DIMENSION<|>Weight is a critical factor in determining how animals can be transported, influencing whether they travel in the cabin or as cargo.)\n##\n(\"entity\"<|>PERMIT<|>REQUIRED DOCUMENT<|>A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.)\n##\n(\"entity\"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department is responsible for issuing health certificates and permits for animal transport.)\n##\n(\"entity\"<|>CARGO<|>ROUTE TYPE<|>Cargo transport refers to the method of shipping animals as registered cargo in the aircraft hold.)\n##\n(\"entity\"<|>APPROVAL<|>POLICY<|>Approval from the EL AL service center is necessary for transporting pets in the Business cabin.)\n##\n(\"entity\"<|>GUIDELINES<|>POLICY<|>Guidelines set by the destination country's authorities dictate how animals must be transported.)\n##\n(\"relationship\"<|>ANIMAL<|>CAGE<|>A cage is required for the safe transport of animals, ensuring they are secure during travel.<|>8)\n##\n(\"relationship\"<|>ANIMAL<|>WEIGHT<|>The weight of the animal determines the mode of transport, affecting whether it travels in the cabin or as cargo.<|>9)\n##\n(\"relationship\"<|>ANIMAL<|>PERMIT<|>A permit is necessary for the transport of animals, ensuring compliance with regulations.<|>8)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>PERMIT<|>The Veterinary Services Department issues permits required for transporting animals abroad.<|>9)\n##\n(\"relationship\"<|>VETERINARY SERVICES DEPARTMENT<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>The Veterinary Services Department issues the international certificate of good health required for animal transport.<|>9)\n##\n(\"relationship\"<|>GUIDELINES<|>ANIMAL<|>Guidelines from destination authorities dictate the transport requirements for animals.<|>7)\n##\n(\"relationship\"<|>APPROVAL<|>BUSINESS CABIN<|>Approval is required for transporting pets in the Business cabin, indicating a policy that must be followed.<|>6)\n##\n(\"relationship\"<|>CARGO<|>ANIMAL<|>Animals can be transported as cargo, which is a specific route type for shipping them in the aircraft hold.<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-5cf791138b41ff9974e542e28f348ed7 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-5cf791138b41ff9974e542e28f348ed7 deleted file mode 100644 index 1e6df2f97fb6e1f3ecdfa61f9117155c3dbcc639..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-5cf791138b41ff9974e542e28f348ed7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Agriculture regulates the transport of pets.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from certain weight limits when transported in the cabin.)\n##\n(\"entity\"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined by Israeli law, are not approved for transportation.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage is a method of transporting animals in certain instances, such as large animals.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is used for transporting animals that are extra-large or flying unaccompanied.)\n##\n(\"entity\"<|>CABIN<|>CABIN SECTION<|>The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.)\n##\n(\"entity\"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture’s Veterinary Services is required to transport an animal.)\n##\n(\"entity\"<|>ANIMAL TESTS<|>RESTRICTION<|>Several animal tests must be performed as part of the authorization process for transporting pets.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>ISRAEL<|>The Ministry of Agriculture is the regulatory authority in Israel for pet transportation<|>8)\n##\n(\"relationship\"<|>EL AL<|>MINISTRY OF AGRICULTURE<|>EL AL must comply with the regulations set by the Ministry of Agriculture regarding pet transportation<|>7)\n##\n(\"relationship\"<|>SERVICE DOG<|>EL AL<|>Service dogs are allowed to be transported under different conditions than other pets on EL AL<|>6)\n##\n(\"relationship\"<|>DANGEROUS DOG<|>EL AL<|>EL AL does not allow dangerous dogs to be transported<|>6)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>EL AL<|>EL AL allows certain animals to be transported as checked baggage<|>5)\n##\n(\"relationship\"<|>REGISTERED CARGO<|>EL AL<|>EL AL provides registered cargo services for transporting animals<|>5)\n##\n(\"relationship\"<|>CABIN<|>EL AL<|>EL AL allows pets to be transported in the cabin under specific conditions<|>5)\n##\n(\"relationship\"<|>9KG<|>CABIN<|>The weight limit of 9kg applies to pets transported in the cabin<|>4)\n##\n(\"relationship\"<|>AUTHORIZATION<|>MINISTRY OF AGRICULTURE<|>Authorization is required from the Ministry of Agriculture to transport an animal<|>8)\n##\n(\"relationship\"<|>ANIMAL TESTS<|>AUTHORIZATION<|>Animal tests are part of the authorization process for transporting pets<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>PETS<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions set by airlines.)\n##\n(\"entity\"<|>EXOTIC BIRDS<|>SPECIAL ITEM<|>Exotic birds are among the pets that can be transported in the cabin with their owners.)\n##\n(\"entity\"<|>VETERINARY SERVICES<|>ORGANIZATION<|>The Veterinary Services under the Ministry of Agriculture handle the authorization process for transporting pets.)\n##\n(\"entity\"<|>TRANSPORTATION<|>SERVICE TYPE<|>Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.)\n##\n(\"entity\"<|>AUTHORIZATION PROCESS<|>POLICY<|>The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.)\n##\n(\"entity\"<|>LUGGAGE COMPARTMENT<|>CABIN SECTION<|>The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.)\n##\n(\"entity\"<|>SENSITIVITY<|>RESTRICTION<|>Some pets may develop sensitivity and breathing problems during flights, which is a concern for their health.)\n##\n(\"entity\"<|>FLIGHT<|>TIME PERIOD<|>The flight refers to the duration during which pets are transported in the cabin or cargo.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE LOCATION<|>The Cargo Division of EL AL is responsible for handling the transportation of animals as registered cargo.)\n##\n(\"entity\"<|>CHECK-IN COUNTER<|>SERVICE LOCATION<|>The check-in counter is where owners must arrive with their pets for transportation arrangements.)\n##\n(\"entity\"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The Arrivals Hall is where owners can retrieve their pets after they have been transported as checked baggage.)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>MINISTRY OF AGRICULTURE<|>Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations<|>8)\n##\n(\"relationship\"<|>PETS<|>EL AL<|>EL AL has specific policies for transporting pets, including weight limits and conditions<|>7)\n##\n(\"relationship\"<|>EXOTIC BIRDS<|>PETS<|>Exotic birds are classified as pets that can be transported under certain conditions<|>6)\n##\n(\"relationship\"<|>TRANSPORTATION<|>EL AL<|>EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo<|>7)\n##\n(\"relationship\"<|>AUTHORIZATION PROCESS<|>VETERINARY SERVICES<|>The authorization process is managed by the Veterinary Services to ensure compliance with regulations<|>8)\n##\n(\"relationship\"<|>LUGGAGE COMPARTMENT<|>DANGEROUS DOG<|>Dangerous dogs are not allowed in the luggage compartment during transportation<|>6)\n##\n(\"relationship\"<|>SENSITIVITY<|>FLIGHT<|>Sensitivity issues may arise for pets during the flight, affecting their health<|>5)\n##\n(\"relationship\"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division of EL AL is responsible for handling registered cargo for pet transportation<|>6)\n##\n(\"relationship\"<|>CHECK-IN COUNTER<|>EL AL<|>Owners must arrive at the check-in counter with their pets for transportation arrangements<|>5)\n##\n(\"relationship\"<|>ARRIVALS HALL<|>CHECKED BAGGAGE<|>Pets transported as checked baggage can be retrieved in the Arrivals Hall<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-652394e16e6c81e9e728aa981fb74908 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-652394e16e6c81e9e728aa981fb74908 deleted file mode 100644 index 075763da0ec880ff7e1473b6046bdc00b8e862cc..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-652394e16e6c81e9e728aa981fb74908 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the personal belongings that travelers take with them on a journey, which can be delayed, damaged, or lost during transit.)\n##\n(\"entity\"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board, providing assistance to travelers.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims for delayed or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE CLAIM AREA<|>Service Location<|>The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.)\n##\n(\"entity\"<|>DAMAGE REPORT<|>Required Document<|>A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.)\n##\n(\"entity\"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a unique identifier used to check the status of a claim regarding lost baggage.)\n##\n(\"entity\"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler.)\n##\n(\"entity\"<|>CLAIMS DEPARTMENT<|>Service Type<|>The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with issues related to their baggage, including delays and damages<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and addressing issues such as delays and damages<|>9)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE CLAIM AREA<|>Travelers report baggage issues in the baggage claim area, where they can receive assistance<|>7)\n##\n(\"relationship\"<|>BAGGAGE SERVICE CENTER<|>CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Claims Department to process claims related to baggage<|>6)\n##\n(\"relationship\"<|>BAGGAGE<|>DAMAGE REPORT<|>A damage report is issued when baggage is reported damaged, which is necessary for processing claims<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>LOST BAGGAGE REPORT NUMBER<|>The lost baggage report number is used to track claims related to lost baggage<|>7)\n##\n(\"relationship\"<|>BAGGAGE<|>COURIER SERVICE<|>The courier service delivers retrieved baggage to travelers after it has been delayed<|>8)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>DAMAGED BAGGAGE<|>Baggage Type<|>Damaged baggage refers to personal belongings that have been harmed during transit and require reporting to the airline for claims processing.)\n##\n(\"entity\"<|>DELAYED BAGGAGE<|>Baggage Type<|>Delayed baggage refers to personal belongings that have not arrived with the traveler and must be reported to the airline for retrieval.)\n##\n(\"entity\"<|>FORGOTTEN ITEM<|>Prohibited Item<|>A forgotten item is a personal belonging left on board an aircraft that may need to be reported to the airline for recovery.)\n##\n(\"entity\"<|>BAGGAGE TAG<|>Label Type<|>A baggage tag is a label attached to luggage that contains information about the owner and flight details, essential for tracking baggage.)\n##\n(\"entity\"<|>BAGGAGE ISSUES<|>Policy<|>Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.)\n##\n(\"entity\"<|>CONTACT DETAILS<|>Required Document<|>Contact details provide information on how travelers can reach the Baggage Service Center for assistance with baggage issues.)\n##\n(\"entity\"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status refers to the current state of a baggage claim, which can be checked using the lost baggage report number.)\n##\n(\"relationship\"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center handles reports and claims related to delayed baggage<|>8)\n##\n(\"relationship\"<|>DAMAGED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with claims for damaged baggage<|>8)\n##\n(\"relationship\"<|>FORGOTTEN ITEM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center helps recover forgotten items left on board<|>7)\n##\n(\"relationship\"<|>BAGGAGE TAG<|>BAGGAGE<|>The baggage tag is essential for identifying and tracking baggage<|>9)\n##\n(\"relationship\"<|>BAGGAGE ISSUES<|>EL AL<|>EL AL has policies in place to address various baggage issues encountered by travelers<|>8)\n##\n(\"relationship\"<|>CONTACT DETAILS<|>BAGGAGE SERVICE CENTER<|>Contact details provide necessary information for reaching the Baggage Service Center for assistance<|>7)\n##\n(\"relationship\"<|>CLAIM STATUS<|>LOST BAGGAGE REPORT NUMBER<|>The claim status can be checked using the lost baggage report number provided by the airline<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-673b77f5f5a8b9e51b17fc876189fa8f b/cache/entity_extraction/extract-loopcheck-0-chat-v2-673b77f5f5a8b9e51b17fc876189fa8f deleted file mode 100644 index ffd920f7d39b4b583e44c656fec2baca2ca9d53f..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-673b77f5f5a8b9e51b17fc876189fa8f +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials such as hairspray are not allowed to be stored together with other items in baggage.)\n##\n(\"entity\"<|>SPARE LITHIUM BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>PROHIBITED ITEM<|>Electronic devices with removable lithium batteries must have the battery taken aboard the aircraft cabin, while the device can be checked.)\n##\n(\"entity\"<|>BATTERIES<|>RESTRICTED ITEM<|>Batteries must be protected from damage and short circuits and can be transported in the aircraft hold if they are not lithium-based.)\n##\n(\"entity\"<|>WATT-HOURS<|>MEASUREMENT UNIT<|>Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).)\n##\n(\"entity\"<|>LITHIUM-ION BATTERIES<|>RESTRICTED ITEM<|>Larger lithium-ion batteries (100-160 watt-hours) are limited to two batteries per passenger and must comply with specific regulations.)\n##\n(\"entity\"<|>BATTERY-POWERED DEVICES<|>SPECIAL ITEM<|>Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.)\n##\n(\"entity\"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids on flights.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific regulations regarding battery-powered mobility aids.)\n##\n(\"relationship\"<|>SPARE LITHIUM BATTERIES<|>ELECTRONIC DEVICES<|>Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>WATT-HOURS<|>The watt-hours rating of a battery is determined by its voltage and ampere hours, which is essential for understanding battery capacity.<|>7)\n##\n(\"relationship\"<|>LITHIUM-ION BATTERIES<|>SPARE LITHIUM BATTERIES<|>Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.<|>6)\n##\n(\"relationship\"<|>BATTERY-POWERED DEVICES<|>IATA REGULATIONS<|>Battery-powered devices must comply with IATA regulations for safe transport on flights.<|>5)\n##\n(\"relationship\"<|>BATTERY-POWERED DEVICES<|>EL AL<|>EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers containing lithium batteries are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n(\"entity\"<|>NON-SPILLABLE WET BATTERIES<|>RESTRICTED ITEM<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n##\n(\"entity\"<|>100 WH<|>WEIGHT<|>Batteries with a capacity of less than 100 watt-hours may be taken aboard the aircraft when insulated or in their original packaging.)\n##\n(\"entity\"<|>15 ELECTRONIC DEVICES<|>ALLOWANCE<|>Passengers are allowed to take up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 watt-hours aboard the aircraft.)\n##\n(\"entity\"<|>20 SPARE BATTERIES<|>ALLOWANCE<|>Passengers may take up to 20 spare batteries with a capacity of less than 100 watt-hours aboard the aircraft.)\n##\n(\"entity\"<|>BATTERY CASE<|>SPECIAL ITEM<|>A battery case is used to protect batteries from damage and short circuits during transport.)\n##\n(\"entity\"<|>ORIGINAL PACKAGING<|>SPECIAL ITEM<|>Keeping batteries in their original packaging helps prevent short circuits and damage during transport.)\n##\n(\"entity\"<|>INSULATED<|>RESTRICTION<|>Batteries must be insulated to prevent short circuits when taken aboard the aircraft.)\n##\n(\"entity\"<|>ACCEPTABLE BATTERY TYPES<|>RESTRICTION<|>Only certain types of batteries are acceptable for transport in the aircraft hold, excluding lithium-based batteries.)\n##\n(\"entity\"<|>BATTERY TERMINALS<|>RESTRICTION<|>Battery terminals must be protected to prevent short circuits during transport.)\n##\n(\"relationship\"<|>SPARE LITHIUM BATTERIES<|>PORTABLE CHARGERS<|>Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.<|>8)\n##\n(\"relationship\"<|>20 SPARE BATTERIES<|>100 WH<|>The allowance for taking 20 spare batteries is specifically for those with a capacity of less than 100 watt-hours.<|>7)\n##\n(\"relationship\"<|>15 ELECTRONIC DEVICES<|>100 WH<|>The allowance for taking 15 electronic devices is limited to those containing lithium-ion batteries with a capacity of less than 100 watt-hours.<|>7)\n##\n(\"relationship\"<|>BATTERY CASE<|>BATTERY TERMINALS<|>A battery case is used to protect battery terminals from damage and short circuits during transport.<|>6)\n##\n(\"relationship\"<|>ORIGINAL PACKAGING<|>BATTERY TERMINALS<|>Keeping batteries in their original packaging helps protect the terminals from short circuits during transport.<|>6)\n##\n(\"relationship\"<|>INSULATED<|>SPARE BATTERIES<|>Spare batteries must be insulated to prevent short circuits when taken aboard the aircraft.<|>5)\n##\n(\"relationship\"<|>ACCEPTABLE BATTERY TYPES<|>BATTERIES<|>Only acceptable battery types can be transported in the aircraft hold, excluding lithium-based batteries.<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-698f7c849d6f153a689f6b4b081f8289 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-698f7c849d6f153a689f6b4b081f8289 deleted file mode 100644 index 41a6868466f31ab49fed820ec0aca102d2c6a838..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-698f7c849d6f153a689f6b4b081f8289 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin by the passenger.)\n##\n(\"entity\"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the airline's standard size limits, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which may result in extra charges.)\n##\n(\"entity\"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that shares similar baggage policies with Sundor, particularly regarding checked baggage allowances.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>TRAVEL CLASS<|>Economy class is a travel class offered by airlines, typically providing basic services and lower fares compared to higher classes.)\n##\n(\"entity\"<|>LITE SERVICE<|>SERVICE TYPE<|>Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.)\n##\n(\"entity\"<|>CLASSIC SERVICE<|>SERVICE TYPE<|>Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.)\n##\n(\"entity\"<|>FLEX SERVICE<|>SERVICE TYPE<|>Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n(\"entity\"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service provided by airlines that allows passengers to view and modify their flight details, including baggage options.)\n##\n(\"entity\"<|>ADDITIONAL PIECES OF BAGGAGE<|>ALLOWANCE<|>Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.)\n##\n(\"entity\"<|>$90<|>FEE STRUCTURE<|>The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.)\n##\n(\"entity\"<|>23 KG<|>WEIGHT<|>23 kg is the weight limit for each piece of checked baggage included in the ticket price for certain service types offered by EL AL.)\n##\n(\"entity\"<|>THREE HOURS<|>TIME PERIOD<|>Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.)\n##\n(\"entity\"<|>EUROPE AND MIDDLE EAST<|>ROUTE TYPE<|>Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.)\n##\n(\"entity\"<|>NORTH AMERICA<|>ROUTE TYPE<|>North America is another destination served by EL AL, with its own baggage policies.)\n##\n(\"relationship\"<|>SUNDOR<|>EL AL<|>Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees<|>7)\n##\n(\"relationship\"<|>LITE SERVICE<|>BAGGAGE ALLOWANCE<|>Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering<|>8)\n##\n(\"relationship\"<|>CLASSIC SERVICE<|>BAGGAGE ALLOWANCE<|>Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n(\"relationship\"<|>FLEX SERVICE<|>BAGGAGE ALLOWANCE<|>Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n(\"relationship\"<|>ADDITIONAL PIECES OF BAGGAGE<|>BAGGAGE ALLOWANCE<|>Additional pieces of baggage can be checked in for a fee, which varies depending on the service type<|>6)\n##\n(\"relationship\"<|>MANAGE YOUR BOOKING<|>ADDITIONAL PIECES OF BAGGAGE<|>Passengers can add additional pieces of baggage through the Manage Your Booking page<|>7)\n##\n(\"relationship\"<|>OVERWEIGHT BAGGAGE<|>OVERSIZED BAGGAGE<|>Both overweight and oversized baggage require special handling and may incur additional fees<|>5)\n##\n(\"relationship\"<|>THREE HOURS<|>MANAGE YOUR BOOKING<|>The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking<|>8)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>LITE SERVICE<|>Lite service is one of the ticket types available in economy class<|>6)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CLASSIC SERVICE<|>Classic service is one of the ticket types available in economy class<|>6)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>FLEX SERVICE<|>Flex service is one of the ticket types available in economy class<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the luggage or personal items that passengers take with them when traveling, which can include checked bags and carry-ons.)\n##\n(\"entity\"<|>CHECKED BAGS<|>BAGGAGE TYPE<|>Checked bags are pieces of luggage that are transported in the cargo hold of an aircraft, as opposed to being carried into the cabin.)\n##\n(\"entity\"<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees.)\n##\n(\"entity\"<|>BAGGAGE POLICY<|>POLICY<|>Baggage policy outlines the rules and regulations regarding the number, size, and weight of baggage that passengers can check in or carry on.)\n##\n(\"entity\"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger's reservation on a flight and includes details about baggage allowance.)\n##\n(\"entity\"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>SERVICE LOCATION<|>The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage after check-in.)\n##\n(\"entity\"<|>PRE-ORDERING<|>POLICY<|>Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.)\n##\n(\"entity\"<|>BAGGAGE CHECK-IN PROCESS<|>SERVICE TYPE<|>The baggage check-in process involves the procedures passengers must follow to check their luggage before boarding a flight.)\n##\n(\"entity\"<|>STANDARD BAGGAGE<|>BAGGAGE TYPE<|>Standard baggage refers to luggage that meets the airline's size and weight requirements without incurring additional fees.)\n##\n(\"entity\"<|>BAGGAGE CHECK-IN<|>SERVICE TYPE<|>Baggage check-in is the process by which passengers hand over their luggage to the airline for transport in the cargo hold.)\n##\n(\"relationship\"<|>BAGGAGE<|>CHECKED BAGGAGE<|>Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>Oversized and overweight baggage are categories of baggage that exceed standard limits<|>7)\n##\n(\"relationship\"<|>BAGGAGE POLICY<|>BAGGAGE<|>Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees<|>9)\n##\n(\"relationship\"<|>FLIGHT TICKET<|>BAGGAGE ALLOWANCE<|>The flight ticket includes information about the baggage allowance for the passenger<|>8)\n##\n(\"relationship\"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>Passengers with oversized and overweight baggage must take their luggage to the designated location<|>7)\n##\n(\"relationship\"<|>PRE-ORDERING<|>ADDITIONAL PIECES OF BAGGAGE<|>Pre-ordering is required for checking additional pieces of baggage beyond the standard allowance<|>8)\n##\n(\"relationship\"<|>BAGGAGE CHECK-IN PROCESS<|>BAGGAGE CHECK-IN<|>The baggage check-in process is the procedure for checking in luggage before a flight<|>8)\n##\n(\"relationship\"<|>STANDARD BAGGAGE<|>BAGGAGE<|>Standard baggage refers to luggage that meets the airline's size and weight requirements<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-6b8ad972dce8318ce79e430ea61ebff9 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-6b8ad972dce8318ce79e430ea61ebff9 deleted file mode 100644 index 5d578393896acc49cda71444343c9945eb1c3ad9..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-6b8ad972dce8318ce79e430ea61ebff9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for traveling with battery-powered mobility aids and hazardous materials.)\n##\n(\"entity\"<|>BATTERY-POWERED MOBILITY AIDS<|>SPECIAL ITEM<|>Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.)\n##\n(\"entity\"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights.)\n##\n(\"entity\"<|>FLIGHT-APPROVED BATTERIES<|>RESTRICTED ITEM<|>Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.)\n##\n(\"entity\"<|>HAZARDOUS MATERIALS<|>PROHIBITED ITEM<|>Hazardous materials include items like dry ice that require special handling and declaration when traveling.)\n##\n(\"entity\"<|>DECLARATION FORM<|>REQUIRED DOCUMENT<|>A Declaration Form is required for traveling with hazardous materials on EL AL flights.)\n##\n(\"relationship\"<|>EL AL<|>BATTERY-POWERED MOBILITY AIDS<|>EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights<|>8)\n##\n(\"relationship\"<|>BATTERY-POWERED MOBILITY AIDS<|>IATA REGULATIONS<|>Battery-powered mobility aids must comply with IATA regulations for air travel<|>7)\n##\n(\"relationship\"<|>EL AL<|>HAZARDOUS MATERIALS<|>EL AL requires advance notice and a Declaration Form for traveling with hazardous materials<|>8)\n##\n(\"relationship\"<|>HAZARDOUS MATERIALS<|>DECLARATION FORM<|>A Declaration Form is necessary for traveling with hazardous materials on EL AL flights<|>9)\n##\n(\"relationship\"<|>FLIGHT-APPROVED BATTERIES<|>BATTERY-POWERED MOBILITY AIDS<|>Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>MOBILITY AID<|>SPECIAL ITEM<|>Mobility aids include devices like wheelchairs and scooters that assist individuals with mobility challenges.)\n##\n(\"entity\"<|>DRY ICE<|>DANGEROUS GOOD<|>Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.)\n##\n(\"entity\"<|>FLIGHT AID<|>SERVICE TYPE<|>Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.)\n##\n(\"entity\"<|>EMAIL NOTIFICATION<|>REQUIRED DOCUMENT<|>An email notification to the airline is required to inform them about the intention to travel with a mobility aid.)\n##\n(\"relationship\"<|>EL AL<|>MOBILITY AID<|>EL AL provides services for passengers traveling with mobility aids<|>7)\n##\n(\"relationship\"<|>MOBILITY AID<|>FLIGHT AID<|>Mobility aids are part of the flight aid services provided to assist passengers<|>6)\n##\n(\"relationship\"<|>DRY ICE<|>HAZARDOUS MATERIALS<|>Dry ice is classified as a hazardous material that requires special handling during air travel<|>8)\n##\n(\"relationship\"<|>EMAIL NOTIFICATION<|>EL AL<|>An email notification is required to inform EL AL about traveling with a mobility aid<|>9)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-6fafa491844f1709441a218027bc6eab b/cache/entity_extraction/extract-loopcheck-0-chat-v2-6fafa491844f1709441a218027bc6eab deleted file mode 100644 index 6530ff2e9584e40e89b34dbb5b11cc56bb7a452a..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-6fafa491844f1709441a218027bc6eab +++ /dev/null @@ -1 +0,0 @@ -{"result": " με", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Health regulates the entry of animals.)\n##\n(\"entity\"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health is the authority responsible for approving the entry of animals into Israel.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is the airline that provides services for transporting animals in various classes of the aircraft.)\n##\n(\"entity\"<|>ANIMAL<|>SPECIAL ITEM<|>Animals such as dogs, cats, or exotic birds that are subject to specific transport regulations.)\n##\n(\"entity\"<|>VETERINARY SERVICES<|>ORGANIZATION<|>Veterinary Services at Ben Gurion Airport is responsible for issuing flight permits for transporting animals.)\n##\n(\"entity\"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main airport in Israel where animals must be authorized for transport.)\n##\n(\"entity\"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A document required to ensure the animal is healthy before transport.)\n##\n(\"entity\"<|>RABIES ANTIBODY TEST<|>REQUIRED DOCUMENT<|>A test required to confirm that the animal has been vaccinated against rabies.)\n##\n(\"entity\"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the category under which animals can be transported in the aircraft cabin or hold.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is the method of transporting animals that exceed certain weight limits.)\n##\n(\"entity\"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where animals may be transported with prior approval.)\n##\n(\"entity\"<|>ANIMAL WEIGHT<|>DIMENSION<|>The weight of the animal is a critical factor in determining the mode of transport.)\n##\n(\"entity\"<|>9 KG<|>WEIGHT<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin.)\n##\n(\"entity\"<|>100 KG<|>WEIGHT<|>Animals weighing more than 100 kg must be transported as registered cargo.)\n##\n(\"entity\"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Documents required for obtaining authorization to transport an animal to Israel.)\n##\n(\"entity\"<|>FLIGHT PERMIT<|>REQUIRED DOCUMENT<|>A permit issued by Veterinary Services allowing the transport of an animal.)\n##\n(\"relationship\"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health regulates the entry of animals into Israel<|>8)\n##\n(\"relationship\"<|>EL AL<|>ANIMAL<|>EL AL provides transport services for animals in various classes<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>BEN GURION AIRPORT<|>Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport<|>9)\n##\n(\"relationship\"<|>ANIMAL<|>BAGGAGE<|>Animals can be transported as baggage in the aircraft cabin or hold<|>6)\n##\n(\"relationship\"<|>ANIMAL<|>REGISTERED CARGO<|>Animals exceeding weight limits must be transported as registered cargo<|>6)\n##\n(\"relationship\"<|>ANIMAL<|>ANIMAL WEIGHT<|>The weight of the animal determines the mode of transport<|>8)\n##\n(\"relationship\"<|>9 KG<|>ANIMAL<|>Animals weighing up to 9 kg can be transported in the aircraft cabin<|>7)\n##\n(\"relationship\"<|>100 KG<|>ANIMAL<|>Animals weighing more than 100 kg must be transported as registered cargo<|>7)\n##\n(\"relationship\"<|>VETERINARY SERVICES<|>DOCUMENTS<|>Veterinary Services requires specific documents for animal transport authorization<|>8)\n##\n(\"relationship\"<|>DOCUMENTS<|>CERTIFICATE OF GOOD HEALTH<|>A certificate of good health is one of the required documents for transport<|>9)\n##\n(\"relationship\"<|>DOCUMENTS<|>RABIES ANTIBODY TEST<|>A rabies antibody test is another required document for transport<|>9)\n##\n(\"relationship\"<|>EL AL<|>BUSINESS CABIN<|>Animals can be transported in the Business cabin with prior approval from EL AL<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>BANGKOK<|>AIRPORT<|>Bangkok is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>AMSTERDAM<|>AIRPORT<|>Amsterdam is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BOSTON<|>AIRPORT<|>Boston is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MUMBAI<|>AIRPORT<|>Mumbai is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BRUSSELS<|>AIRPORT<|>Brussels is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>LARNACA<|>AIRPORT<|>Larnaca is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>FRANKFURT<|>AIRPORT<|>Frankfurt is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MOSCOW<|>AIRPORT<|>Moscow is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MUNICH<|>AIRPORT<|>Munich is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>MADRID<|>AIRPORT<|>Madrid is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BERLIN<|>AIRPORT<|>Berlin is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>PRAGUE<|>AIRPORT<|>Prague is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>WARSAW<|>AIRPORT<|>Warsaw is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>TORONTO<|>AIRPORT<|>Toronto is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>VIENNA<|>AIRPORT<|>Vienna is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>BUDAPEST<|>AIRPORT<|>Budapest is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>KYIV<|>AIRPORT<|>Kyiv is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"entity\"<|>ROME<|>AIRPORT<|>Rome is an airport from which animals cannot be transported as registered cargo.)\n##\n(\"relationship\"<|>BANGKOK<|>ANIMAL<|>Animals cannot be transported as registered cargo from Bangkok<|>5)\n##\n(\"relationship\"<|>AMSTERDAM<|>ANIMAL<|>Animals cannot be transported as registered cargo from Amsterdam<|>5)\n##\n(\"relationship\"<|>BOSTON<|>ANIMAL<|>Animals cannot be transported as registered cargo from Boston<|>5)\n##\n(\"relationship\"<|>MUMBAI<|>ANIMAL<|>Animals cannot be transported as registered cargo from Mumbai<|>5)\n##\n(\"relationship\"<|>BRUSSELS<|>ANIMAL<|>Animals cannot be transported as registered cargo from Brussels<|>5)\n##\n(\"relationship\"<|>LARNACA<|>ANIMAL<|>Animals cannot be transported as registered cargo from Larnaca<|>5)\n##\n(\"relationship\"<|>FRANKFURT<|>ANIMAL<|>Animals cannot be transported as registered cargo from Frankfurt<|>5)\n##\n(\"relationship\"<|>MOSCOW<|>ANIMAL<|>Animals cannot be transported as registered cargo from Moscow<|>5)\n##\n(\"relationship\"<|>MUNICH<|>ANIMAL<|>Animals cannot be transported as registered cargo from Munich<|>5)\n##\n(\"relationship\"<|>MADRID<|>ANIMAL<|>Animals cannot be transported as registered cargo from Madrid<|>5)\n##\n(\"relationship\"<|>BERLIN<|>ANIMAL<|>Animals cannot be transported as registered cargo from Berlin<|>5)\n##\n(\"relationship\"<|>PRAGUE<|>ANIMAL<|>Animals cannot be transported as registered cargo from Prague<|>5)\n##\n(\"relationship\"<|>WARSAW<|>ANIMAL<|>Animals cannot be transported as registered cargo from Warsaw<|>5)\n##\n(\"relationship\"<|>TORONTO<|>ANIMAL<|>Animals cannot be transported as registered cargo from Toronto<|>5)\n##\n(\"relationship\"<|>VIENNA<|>ANIMAL<|>Animals cannot be transported as registered cargo from Vienna<|>5)\n##\n(\"relationship\"<|>BUDAPEST<|>ANIMAL<|>Animals cannot be transported as registered cargo from Budapest<|>5)\n##\n(\"relationship\"<|>KYIV<|>ANIMAL<|>Animals cannot be transported as registered cargo from Kyiv<|>5)\n##\n(\"relationship\"<|>ROME<|>ANIMAL<|>Animals cannot be transported as registered cargo from Rome<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-80e87416754be3700b89a214c70267dc b/cache/entity_extraction/extract-loopcheck-0-chat-v2-80e87416754be3700b89a214c70267dc deleted file mode 100644 index 415327185bb30754d30ce45b07854b905fb90884..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-80e87416754be3700b89a214c70267dc +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAG<|>Baggage Type<|>A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.)\n##\n(\"entity\"<|>PERSONAL BAG<|>Baggage Type<|>A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.)\n##\n(\"entity\"<|>CARRY-ON BAG<|>Baggage Type<|>A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>El Al is an airline that has specific baggage policies regarding carry-on and personal bags.)\n##\n(\"entity\"<|>56 CM<|>Linear Dimension<|>The maximum length for a carry-on bag on El Al flights is 56 cm.)\n##\n(\"entity\"<|>45 CM<|>Linear Dimension<|>The maximum width for a carry-on bag on El Al flights is 45 cm.)\n##\n(\"entity\"<|>25 CM<|>Linear Dimension<|>The maximum depth for a carry-on bag on El Al flights is 25 cm.)\n##\n(\"entity\"<|>18X38X30 CM<|>Linear Dimension<|>The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.)\n##\n(\"entity\"<|>115 CM<|>Linear Dimension<|>The total maximum dimension for a carry-on bag on El Al flights is 115 cm.)\n##\n(\"entity\"<|>20 KG<|>Weight Category<|>The combined weight limit for bags is not to exceed 20 kg.)\n##\n(\"entity\"<|>16 KG<|>Weight Category<|>The maximum weight limit for one bag is 16 kg.)\n##\n(\"entity\"<|>DUTY-FREE ITEMS<|>Special Item<|>Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.)\n##\n(\"entity\"<|>OVERSIZED ITEMS<|>Special Item<|>Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.)\n##\n(\"entity\"<|>CHECK-IN COUNTER<|>Service Location<|>The check-in counter is where passengers can check in their luggage and obtain boarding passes.)\n##\n(\"entity\"<|>EMERGENCY EXIT ROW<|>Cabin Section<|>The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.)\n##\n(\"entity\"<|>SERVICE CENTER<|>Service Location<|>El Al's service center is where passengers can coordinate the transport of unusual items.)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>EL AL<|>El Al has specific policies regarding the dimensions and weight limits for carry-on bags<|>9)\n##\n(\"relationship\"<|>PERSONAL BAG<|>EL AL<|>El Al allows passengers to bring a personal bag on board, subject to size restrictions<|>9)\n##\n(\"relationship\"<|>BAG<|>CARRY-ON BAG<|>A carry-on bag is a type of bag that must meet specific weight and dimension limits<|>8)\n##\n(\"relationship\"<|>BAG<|>PERSONAL BAG<|>A personal bag is a specific type of bag that passengers can bring on board<|>8)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>20 KG<|>The combined weight limit for carry-on bags is 20 kg<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>16 KG<|>The maximum weight limit for one carry-on bag is 16 kg<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>56 CM<|>The maximum length for a carry-on bag is 56 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>45 CM<|>The maximum width for a carry-on bag is 45 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>25 CM<|>The maximum depth for a carry-on bag is 25 cm<|>7)\n##\n(\"relationship\"<|>PERSONAL BAG<|>18X38X30 CM<|>The maximum dimensions for a personal bag are 18x38x30 cm<|>7)\n##\n(\"relationship\"<|>CARRY-ON BAG<|>115 CM<|>The total maximum dimension for a carry-on bag is 115 cm<|>7)\n##\n(\"relationship\"<|>DUTY-FREE ITEMS<|>BAG<|>Duty-free items are included in the baggage allowance but do not count towards the limit<|>6)\n##\n(\"relationship\"<|>OVERSIZED ITEMS<|>CARRY-ON BAG<|>Oversized items may require special arrangements for transport in the cabin<|>5)\n##\n(\"relationship\"<|>CHECK-IN COUNTER<|>EL AL<|>Passengers must check in at El Al's check-in counters for their flights<|>8)\n##\n(\"relationship\"<|>EMERGENCY EXIT ROW<|>CARRY-ON BAG<|>Passengers in the emergency exit row may store bags in overhead compartments<|>6)\n##\n(\"relationship\"<|>SERVICE CENTER<|>OVERSIZED ITEMS<|>Passengers must contact the service center for approval to carry oversized items<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE ALLOWANCE<|>Allowance<|>The baggage allowance refers to the total weight and number of bags a passenger is permitted to carry on a flight without incurring additional fees.)\n##\n(\"entity\"<|>CHECKED BAG<|>Baggage Type<|>A checked bag is a type of luggage that is stored in the aircraft's cargo hold during the flight.)\n##\n(\"entity\"<|>WEIGHT RESTRICTION<|>Restriction<|>Weight restrictions are limits imposed on the weight of bags that passengers can carry on board or check in.)\n##\n(\"entity\"<|>FLIGHT DESTINATION<|>Service Location<|>The flight destination is the final location where passengers are traveling to, which may affect baggage policies.)\n##\n(\"entity\"<|>PRE-CHECKED CARRY-ON<|>Baggage Type<|>A pre-checked carry-on is a bag that has been checked in online prior to arriving at the airport, allowing for expedited security checks.)\n##\n(\"entity\"<|>SECURITY CHECK<|>Service Type<|>The security check is a procedure that passengers must go through to ensure safety before boarding the aircraft.)\n##\n(\"entity\"<|>EXTRA SEAT<|>Allowance<|>An extra seat may be purchased for oversized items that cannot fit in the cabin or under the seat.)\n##\n(\"entity\"<|>MEDICATIONS<|>Prohibited Item<|>Medications are items that passengers are advised to keep accessible during the flight for health reasons.)\n##\n(\"entity\"<|>VALUABLES<|>Valuable Item<|>Valuables are items of significant worth that passengers are recommended to keep with them during the flight.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as laptops and tablets that passengers should keep accessible during the flight.)\n##\n(\"entity\"<|>OVERHEAD COMPARTMENTS<|>Cabin Section<|>Overhead compartments are storage areas above passenger seats where carry-on bags must be placed during the flight.)\n##\n(\"entity\"<|>UNDER-SEAT STORAGE<|>Cabin Section<|>Under-seat storage refers to the space under the seat in front of a passenger where personal bags must be placed.)\n##\n(\"entity\"<|>CHECK-IN PROCESS<|>Policy<|>The check-in process is the procedure passengers must follow to confirm their presence on a flight and check their luggage.)\n##\n(\"entity\"<|>FLIGHT<|>Route Type<|>A flight is a journey made by an aircraft from one airport to another, subject to specific baggage policies.)\n##\n(\"entity\"<|>AIRPLANE STORAGE<|>Service Type<|>Airplane storage refers to the designated areas on an aircraft where passengers can store their carry-on and personal bags.)\n##\n(\"entity\"<|>BAG DIMENSIONS<|>Measurement Unit<|>Bag dimensions refer to the measurements of a bag that must comply with airline policies for carry-on and checked luggage.)\n##\n(\"entity\"<|>BAG WEIGHT<|>Measurement Unit<|>Bag weight refers to the total weight of a bag, which must adhere to airline restrictions for carry-on and checked luggage.)\n##\n(\"entity\"<|>CARGO HOLD<|>Cabin Section<|>The cargo hold is the area of the aircraft where checked bags are stored during the flight.)\n##\n(\"entity\"<|>FLIGHT CHECK-IN<|>Policy<|>Flight check-in is the policy that requires passengers to confirm their attendance and check their baggage before boarding.)\n##\n(\"entity\"<|>BAGGAGE ENFORCEMENT<|>Policy<|>Baggage enforcement refers to the policies and procedures that airline representatives follow to ensure compliance with baggage limits.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-9ed7b3f309df44d5b36895da33a15596 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-9ed7b3f309df44d5b36895da33a15596 deleted file mode 100644 index e15fbd6351613befd7204f17e9da17bd9088d1c2..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-9ed7b3f309df44d5b36895da33a15596 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific baggage policies and allowances for passengers.)\n##\n(\"entity\"<|>BAGGAGE ALLOWANCE<|>POLICY<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to the luggage that passengers check in before boarding the flight.)\n##\n(\"entity\"<|>INFANT'S CHECKED BAGGAGE<|>Baggage Type<|>Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.)\n##\n(\"entity\"<|>LITE TICKETS<|>Travel Class<|>Lite tickets are a type of ticket that does not include any baggage allowance.)\n##\n(\"entity\"<|>MAXIMUM SIZE<|>Restriction<|>The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.)\n##\n(\"entity\"<|>EXCESS BAGGAGE RATES<|>Fee Structure<|>Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.)\n##\n(\"entity\"<|>US DOLLARS<|>Currency<|>Prices for baggage fees are displayed in US dollars, although local currency may be required at some airports.)\n##\n(\"entity\"<|>GOVERNMENT SERVICE TAX<|>Policy<|>A government service tax will be collected for air travel for flights originating in India.)\n##\n(\"entity\"<|>CODESHARE FLIGHTS<|>Route Type<|>Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division handles excess baggage and special requests for passengers traveling with more than five pieces of checked baggage.)\n##\n(\"entity\"<|>LOCAL CURRENCY<|>Currency<|>At some airports, payment for baggage fees is only allowed in local currency according to the conversion rate on the date of payment.)\n##\n(\"relationship\"<|>EL AL<|>BAGGAGE ALLOWANCE<|>EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.<|>8)\n##\n(\"relationship\"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance includes provisions for checked baggage that passengers can take on flights.<|>7)\n##\n(\"relationship\"<|>CHECKED BAGGAGE<|>MAXIMUM SIZE<|>The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.<|>9)\n##\n(\"relationship\"<|>INFANT'S CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Infant's checked baggage is a specific category of checked baggage that includes items for infants.<|>8)\n##\n(\"relationship\"<|>LITE TICKETS<|>BAGGAGE ALLOWANCE<|>Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.<|>6)\n##\n(\"relationship\"<|>EXCESS BAGGAGE RATES<|>BAGGAGE ALLOWANCE<|>Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.<|>7)\n##\n(\"relationship\"<|>US DOLLARS<|>EXCESS BAGGAGE RATES<|>Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.<|>5)\n##\n(\"relationship\"<|>GOVERNMENT SERVICE TAX<|>EL AL<|>The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.<|>4)\n##\n(\"relationship\"<|>CODESHARE FLIGHTS<|>EL AL<|>The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.<|>5)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>CHECKED BAGGAGE<|>The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.<|>6)\n##\n(\"relationship\"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE RATES<|>Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>DIMENSION<|>Dimension<|>Dimension refers to the measurements of baggage, including length, width, and depth, which are used to determine size restrictions.)\n##\n(\"entity\"<|>LINEAR DIMENSION<|>Linear Dimension<|>Linear dimension refers to the measurement of length, which is one of the components used to calculate the size of baggage.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the mass of the baggage, which is a critical factor in determining baggage allowance and fees.)\n##\n(\"entity\"<|>MEASUREMENT UNIT<|>Measurement Unit<|>Measurement units such as kilograms and pounds are used to quantify the weight of baggage.)\n##\n(\"entity\"<|>SIZE CATEGORY<|>Size Category<|>Size category refers to the classification of baggage based on its dimensions, which affects the allowance and fees.)\n##\n(\"entity\"<|>WEIGHT CATEGORY<|>Weight Category<|>Weight category refers to the classification of baggage based on its weight, which influences the fees charged for excess baggage.)\n##\n(\"entity\"<|>WHEEL CONFIGURATION<|>Wheel Configuration<|>Wheel configuration refers to the design and arrangement of wheels on baggage, which can affect handling and transport.)\n##\n(\"entity\"<|>SPECIAL ITEM<|>Special Item<|>Special items refer to specific types of baggage that may have unique handling requirements, such as sports equipment or musical instruments.)\n##\n(\"entity\"<|>PROHIBITED ITEM<|>Prohibited Item<|>Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.)\n##\n(\"entity\"<|>RESTRICTED ITEM<|>Restricted Item<|>Restricted items are those that may be allowed under certain conditions or with special permissions, often requiring prior approval.)\n##\n(\"entity\"<|>DANGEROUS GOOD<|>Dangerous Good<|>Dangerous goods are items that pose a risk to health, safety, property, or the environment and are subject to strict regulations.)\n##\n(\"entity\"<|>FRAGILE ITEM<|>Fragile Item<|>Fragile items are those that require special handling due to their delicate nature, often needing additional protection during transport.)\n##\n(\"entity\"<|>VALUABLE ITEM<|>Valuable Item<|>Valuable items are high-value belongings that may require special consideration or insurance when traveling.)\n##\n(\"entity\"<|>REQUIRED DOCUMENT<|>Required Document<|>Required documents are necessary paperwork that passengers must present for travel, such as identification or boarding passes.)\n##\n(\"entity\"<|>LABEL TYPE<|>Label Type<|>Label type refers to the categorization of baggage labels that indicate handling instructions or ownership.)\n##\n(\"entity\"<|>TAG CATEGORY<|>Tag Category<|>Tag category refers to the classification of tags used for baggage identification and tracking.)\n##\n(\"entity\"<|>SERVICE LOCATION<|>Service Location<|>Service location refers to the specific places where baggage services, such as check-in or pickup, are provided.)\n##\n(\"entity\"<|>TIME PERIOD<|>Time Period<|>Time period refers to the duration during which specific baggage policies or fees are applicable.)\n##\n(\"entity\"<|>PASSENGER TYPE<|>Passenger Type<|>Passenger type refers to the classification of travelers, such as adults, children, or infants, which can affect baggage allowances.)\n##\n(\"entity\"<|>MEMBERSHIP LEVEL<|>Membership Level<|>Membership level refers to the tier of loyalty programs that may offer different baggage allowances or benefits.)\n##\n(\"entity\"<|>GROUP CATEGORY<|>Group Category<|>Group category refers to classifications of passengers traveling together, which may influence baggage policies and allowances.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-a5a2ac15d5c2d53dc1415d80628f81a4 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-a5a2ac15d5c2d53dc1415d80628f81a4 deleted file mode 100644 index f93400d9a4ebc215942d415f18f98216db504ae9..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-a5a2ac15d5c2d53dc1415d80628f81a4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides transport services and has specific guidelines regarding passenger equipment and liability for fragile or valuable items.)\n##\n(\"entity\"<|>FRAGILE ITEM<|>PROHIBITED ITEM<|>Fragile items are those that can easily break or be damaged during transport, and EL AL does not take responsibility for them.)\n##\n(\"entity\"<|>VALUABLE ITEM<|>PROHIBITED ITEM<|>Valuable items are those that have significant monetary or sentimental value, and EL AL does not take responsibility for them.)\n##\n(\"entity\"<|>SPECIAL TRAVEL INSURANCE<|>POLICY<|>Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.)\n##\n(\"relationship\"<|>EL AL<|>FRAGILE ITEM<|>EL AL does not bear responsibility for fragile items transported by the airline<|>8)\n##\n(\"relationship\"<|>EL AL<|>VALUABLE ITEM<|>EL AL does not bear responsibility for valuable items transported by the airline<|>8)\n##\n(\"relationship\"<|>SPECIAL TRAVEL INSURANCE<|>FRAGILE ITEM<|>Special travel insurance is recommended for passengers transporting fragile items<|>7)\n##\n(\"relationship\"<|>SPECIAL TRAVEL INSURANCE<|>VALUABLE ITEM<|>Special travel insurance is recommended for passengers transporting valuable items<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>EQUIPMENT<|>SPECIAL ITEM<|>Equipment refers to the items that passengers may bring with them, which can include sporting equipment and other personal belongings.)\n##\n(\"entity\"<|>DESTINATION COUNTRY<|>GEO<|>The destination country is the country to which a passenger is traveling, and it has specific guidelines and conditions for admitting passenger equipment.)\n##\n(\"relationship\"<|>EL AL<|>EQUIPMENT<|>EL AL has guidelines regarding the transport of passenger equipment<|>6)\n##\n(\"relationship\"<|>EQUIPMENT<|>DESTINATION COUNTRY<|>The destination country may refuse to admit certain types of passenger equipment<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-a73025aa01a7a570acd5fb7dae1a010e b/cache/entity_extraction/extract-loopcheck-0-chat-v2-a73025aa01a7a570acd5fb7dae1a010e deleted file mode 100644 index c3457d1d3dedefe965e08bbfc770cdce77f80d4d..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-a73025aa01a7a570acd5fb7dae1a010e +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment includes items like skis, snowboards, and bicycles that can be transported on flights under specific conditions.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows complimentary transport of sports equipment under certain conditions, excluding Lite fares.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a travel class that allows complimentary transport of sports equipment under specific conditions.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the total measurements (length + width + height) of the sports equipment that must not exceed specified limits for transport.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum allowable weight of sports equipment for transport, which varies by travel class.)\n##\n(\"entity\"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division provides services for transporting oversized or separately sent sports equipment as cargo.)\n##\n(\"entity\"<|>CALL CENTER<|>Service Location<|>The call center is a service location where passengers can contact for approval regarding overweight baggage.)\n##\n(\"entity\"<|>OVERWEIGHT BAGGAGE<|>Restriction<|>Overweight baggage refers to items that exceed the standard weight limits and require special approval for transport.)\n##\n(\"entity\"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports items brought beyond the standard baggage allowance.)\n##\n(\"entity\"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n(\"entity\"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy and Premium Class.)\n##\n(\"entity\"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum total measurement limit for sports equipment to be sent as overweight baggage.)\n##\n(\"entity\"<|>190 CM<|>Linear Dimension<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.)\n##\n(\"entity\"<|>LITE FARES<|>Restriction<|>Lite fares are a type of Economy Class fare that does not allow for complimentary transport of sports equipment.)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment with different weight limits compared to Economy and Premium Class.<|>8)\n##\n(\"relationship\"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are a critical factor in determining whether sporting equipment can be transported as checked baggage.<|>9)\n##\n(\"relationship\"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key restriction that determines if sporting equipment can be transported in the specified travel classes.<|>9)\n##\n(\"relationship\"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an alternative for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n##\n(\"relationship\"<|>CALL CENTER<|>OVERWEIGHT BAGGAGE<|>The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.<|>6)\n##\n(\"relationship\"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to items that can be transported beyond the standard baggage allowance.<|>5)\n##\n(\"relationship\"<|>32 KG<|>BUSINESS CLASS<|>32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n(\"relationship\"<|>30 KG<|>ECONOMY CLASS<|>30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n(\"relationship\"<|>277 CM<|>OVERWEIGHT BAGGAGE<|>277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.<|>8)\n##\n(\"relationship\"<|>190 CM<|>SPORTING EQUIPMENT<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.<|>8)\n##\n(\"relationship\"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a restriction within Economy Class that affects the transport of sporting equipment.<|>4)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment refers to items specifically designed for skiing, which may have additional transport benefits when flying.)\n##\n(\"entity\"<|>SNOWBOARDING EQUIPMENT<|>Special Item<|>Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.)\n##\n(\"entity\"<|>COMPLIMENTARY TRANSPORT<|>Policy<|>Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.)\n##\n(\"entity\"<|>CALL CENTER APPROVAL<|>Required Document<|>Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is the airline providing specific guidelines for transporting sporting equipment and other baggage types.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of the aircraft, including sporting equipment under certain conditions.)\n##\n(\"entity\"<|>CARGO<|>Service Type<|>Cargo refers to the service provided for transporting items that exceed standard baggage limits, including sporting equipment.)\n##\n(\"relationship\"<|>SKI EQUIPMENT<|>COMPLIMENTARY TRANSPORT<|>Ski equipment may qualify for complimentary transport under specific conditions set by the airline.<|>7)\n##\n(\"relationship\"<|>SNOWBOARDING EQUIPMENT<|>COMPLIMENTARY TRANSPORT<|>Snowboarding equipment may also qualify for complimentary transport under specific conditions set by the airline.<|>7)\n##\n(\"relationship\"<|>EL AL<|>CHECKED BAGGAGE<|>EL AL provides guidelines for transporting checked baggage, including sporting equipment.<|>8)\n##\n(\"relationship\"<|>CALL CENTER APPROVAL<|>OVERWEIGHT BAGGAGE<|>Call center approval is necessary for transporting overweight baggage, ensuring compliance with airline policies.<|>6)\n##\n(\"relationship\"<|>CARGO<|>SPORTING EQUIPMENT<|>Cargo services are available for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b4a6bcf692d2e2d2c587d54a41e8257c b/cache/entity_extraction/extract-loopcheck-0-chat-v2-b4a6bcf692d2e2d2c587d54a41e8257c deleted file mode 100644 index e76569ee97622bfb2a05cecb47e067c3da8e96a2..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b4a6bcf692d2e2d2c587d54a41e8257c +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n(\"entity\"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat to maximize cabin space.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights with specific carry-on baggage policies.)\n##\n(\"entity\"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights with specific carry-on baggage policies.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n(\"entity\"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status affects eligibility for carry-on baggage allowances.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n(\"relationship\"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights<|>7)\n##\n(\"relationship\"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights<|>7)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n(\"relationship\"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Membership in the Matmid Frequent Flyer Club affects carry-on baggage eligibility<|>5)\n##\n(\"relationship\"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a key factor in determining the eligibility of carry-on baggage<|>8)\n##\n(\"relationship\"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are a key factor in determining the eligibility of carry-on baggage<|>8)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED LUGGAGE<|>Baggage Type<|>Checked luggage refers to bags that are transported in the aircraft's cargo hold rather than in the passenger cabin.)\n##\n(\"entity\"<|>TROLLEY<|>Baggage Type<|>A trolley is a type of carry-on bag that can be stored in the overhead compartments of an aircraft.)\n##\n(\"entity\"<|>FLIGHT TICKET TERMS<|>Policy<|>Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.)\n##\n(\"entity\"<|>BOOKING MANAGEMENT<|>Service Location<|>Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.)\n##\n(\"entity\"<|>NORTH AMERICA<|>GEO<|>North America is a region where specific carry-on baggage policies apply for flights operated by the airline.)\n##\n(\"entity\"<|>MAXIMUM DIMENSIONS<|>Dimension<|>Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.)\n##\n(\"entity\"<|>MAXIMUM WEIGHT<|>Weight<|>Maximum weight refers to the heaviest allowable weight for carry-on bags and personal bags for boarding.)\n##\n(\"relationship\"<|>CHECKED LUGGAGE<|>CARRY-ON BAGGAGE<|>Checked luggage is different from carry-on baggage, which is allowed in the passenger cabin<|>7)\n##\n(\"relationship\"<|>TROLLEY<|>CARRY-ON BAGGAGE<|>A trolley is a specific type of carry-on baggage that can be stored in overhead compartments<|>8)\n##\n(\"relationship\"<|>FLIGHT TICKET TERMS<|>CARRY-ON BAGGAGE<|>Flight ticket terms provide details on the carry-on baggage policies applicable to passengers<|>6)\n##\n(\"relationship\"<|>BOOKING MANAGEMENT<|>CARRY-ON BAGGAGE<|>Booking management allows passengers to check their carry-on baggage allowances and policies<|>6)\n##\n(\"relationship\"<|>NORTH AMERICA<|>CARRY-ON BAGGAGE<|>Specific carry-on baggage policies apply to flights from/to North America<|>5)\n##\n(\"relationship\"<|>MAXIMUM DIMENSIONS<|>CARRY-ON BAGGAGE<|>Maximum dimensions are critical for determining what carry-on baggage is allowed<|>8)\n##\n(\"relationship\"<|>MAXIMUM WEIGHT<|>CARRY-ON BAGGAGE<|>Maximum weight is critical for determining what carry-on baggage is allowed<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b711a95a33fb9d983da7ddda5f2ce2d4 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-b711a95a33fb9d983da7ddda5f2ce2d4 deleted file mode 100644 index 5cf103c68d33417cef138117e9d2cc8cb6e6ac73..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b711a95a33fb9d983da7ddda5f2ce2d4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>LITHIUM-ION BATTERIES<|>DANGEROUS GOOD<|>Lithium-ion batteries are rechargeable batteries commonly used in portable electronic devices, with specific size and watt-hour limitations for air travel.)\n##\n(\"entity\"<|>LITHIUM METAL BATTERIES<|>DANGEROUS GOOD<|>Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.)\n##\n(\"entity\"<|>NON-SPILLABLE WET BATTERIES<|>DANGEROUS GOOD<|>Non-spillable wet batteries are limited to 12 volts and 100 watt-hours, designed to prevent leakage of electrolyte.)\n##\n(\"entity\"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage and must be protected when carried in the cabin.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>SPECIAL ITEM<|>Electronic devices with lithium batteries that cannot be removed must be stored in the aircraft hold under specific conditions.)\n##\n(\"entity\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are considered lithium batteries and are prohibited in checked baggage.)\n##\n(\"entity\"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have separate exceptions regarding the transport of batteries.)\n##\n(\"entity\"<|>CARRY-ON<|>ALLOWANCE<|>Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.)\n##\n(\"relationship\"<|>LITHIUM-ION BATTERIES<|>CARRY-ON<|>Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits<|>8)\n##\n(\"relationship\"<|>LITHIUM METAL BATTERIES<|>CARRY-ON<|>Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions<|>8)\n##\n(\"relationship\"<|>NON-SPILLABLE WET BATTERIES<|>CARRY-ON<|>Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits<|>8)\n##\n(\"relationship\"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction<|>9)\n##\n(\"relationship\"<|>ELECTRONIC DEVICES<|>CARRY-ON<|>Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement<|>7)\n##\n(\"relationship\"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are classified as lithium batteries and are prohibited in checked baggage<|>9)\n##\n(\"relationship\"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have specific exemptions regarding battery transport, differentiating them from other items<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>LITHIUM BATTERIES<|>DANGEROUS GOOD<|>Lithium batteries, including both lithium-ion and lithium metal types, are subject to specific regulations for air travel due to their potential hazards.)\n##\n(\"entity\"<|>100 WATT-HOURS<|>MEASUREMENT UNIT<|>100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.)\n##\n(\"entity\"<|>160 WATT-HOURS<|>MEASUREMENT UNIT<|>160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.)\n##\n(\"entity\"<|>2 GRAMS<|>MEASUREMENT UNIT<|>2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.)\n##\n(\"entity\"<|>12 VOLTS<|>MEASUREMENT UNIT<|>12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.)\n##\n(\"entity\"<|>49 CFR<|>POLICY<|>49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.)\n##\n(\"entity\"<|>STRONG OUTER PACKAGING<|>RESTRICTION<|>Batteries must be in strong outer packaging to prevent damage and leakage during transport.)\n##\n(\"entity\"<|>NON-CONDUCTIVE CAPS<|>RESTRICTION<|>Non-conductive caps are required to protect the terminals of spare batteries during transport.)\n##\n(\"entity\"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials, such as hairspray, are prohibited from being stored with electronic devices containing lithium batteries.)\n##\n(\"relationship\"<|>LITHIUM BATTERIES<|>LITHIUM-ION BATTERIES<|>Lithium batteries include both lithium-ion and lithium metal types, indicating a classification relationship<|>8)\n##\n(\"relationship\"<|>100 WATT-HOURS<|>LITHIUM-ION BATTERIES<|>Lithium-ion batteries with a capacity of 100 watt-hours are allowed in carry-on luggage<|>8)\n##\n(\"relationship\"<|>160 WATT-HOURS<|>LITHIUM-ION BATTERIES<|>Lithium-ion batteries with a capacity of 160 watt-hours are subject to specific regulations for air travel<|>8)\n##\n(\"relationship\"<|>2 GRAMS<|>LITHIUM METAL BATTERIES<|>Consumer-grade lithium metal batteries must contain no more than 2 grams of lithium<|>8)\n##\n(\"relationship\"<|>12 VOLTS<|>NON-SPILLABLE WET BATTERIES<|>Non-spillable wet batteries must not exceed 12 volts for air travel<|>8)\n##\n(\"relationship\"<|>49 CFR<|>LITHIUM BATTERIES<|>49 CFR outlines the regulations for the transport of lithium batteries, indicating a regulatory relationship<|>9)\n##\n(\"relationship\"<|>STRONG OUTER PACKAGING<|>NON-SPILLABLE WET BATTERIES<|>Non-spillable wet batteries must be packaged in strong outer packaging to prevent leakage<|>8)\n##\n(\"relationship\"<|>NON-CONDUCTIVE CAPS<|>SPARE BATTERIES<|>Spare batteries must have non-conductive caps to protect their terminals during transport<|>8)\n##\n(\"relationship\"<|>FLAMMABLE MATERIAL<|>ELECTRONIC DEVICES<|>Flammable materials are prohibited from being stored with electronic devices containing lithium batteries, indicating a safety restriction<|>9)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b75245fc88d598a31a74761a292c26ac b/cache/entity_extraction/extract-loopcheck-0-chat-v2-b75245fc88d598a31a74761a292c26ac deleted file mode 100644 index 27d1d32c3e425588360b7ec575347a6e59618074..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b75245fc88d598a31a74761a292c26ac +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the suitcases and items that passengers check in for their flights, which can be lost, damaged, or delayed.)\n##\n(\"entity\"<|>EL AL ISRAEL AIRLINES<|>Airline<|>EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.)\n##\n(\"entity\"<|>FLIGHT TICKETS<|>Required Document<|>Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.)\n##\n(\"entity\"<|>BOARDING PASSES<|>Required Document<|>Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE TAGS<|>Required Document<|>Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.)\n##\n(\"entity\"<|>LOST OR DAMAGED BAGGAGE REPORT<|>Required Document<|>A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.)\n##\n(\"entity\"<|>RECEIPTS<|>Required Document<|>Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.)\n##\n(\"entity\"<|>FRAGILE ITEMS<|>Prohibited Item<|>Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>PERISHABLE ITEMS<|>Prohibited Item<|>Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>VALUABLE ITEMS<|>Valuable Item<|>Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n(\"entity\"<|>INTERNATIONAL CONVENTIONS<|>Policy<|>International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.)\n##\n(\"entity\"<|>CONTRACT OF CARRIAGE<|>Policy<|>The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.<|>9)\n##\n(\"relationship\"<|>FLIGHT TICKETS<|>BAGGAGE<|>Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>BOARDING PASSES<|>BAGGAGE<|>Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>BAGGAGE TAGS<|>BAGGAGE<|>Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>LOST OR DAMAGED BAGGAGE REPORT<|>BAGGAGE<|>A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>RECEIPTS<|>BAGGAGE<|>Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.<|>8)\n##\n(\"relationship\"<|>FRAGILE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>PERISHABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>VALUABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.<|>7)\n##\n(\"relationship\"<|>INTERNATIONAL CONVENTIONS<|>EL AL ISRAEL AIRLINES<|>International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.<|>6)\n##\n(\"relationship\"<|>CONTRACT OF CARRIAGE<|>EL AL ISRAEL AIRLINES<|>The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>DAMAGE<|>Restriction<|>Damage refers to the condition of baggage that has been harmed or impaired, which may affect the liability of the airline regarding claims.)\n##\n(\"entity\"<|>MISSING ITEMS<|>Restriction<|>Missing items refer to belongings that are not present in the baggage upon receipt, which may lead to a claim against the airline.)\n##\n(\"entity\"<|>CLAIM<|>Policy<|>A claim is a formal request made by a passenger to the airline for compensation due to lost, damaged, or delayed baggage.)\n##\n(\"entity\"<|>21 DAYS<|>Time Period<|>21 days is the time frame within which passengers must contact the airline regarding delayed baggage outside their country of residence.)\n##\n(\"entity\"<|>7 DAYS<|>Time Period<|>7 days is the time frame within which passengers must contact the airline regarding damaged or missing items from their baggage.)\n##\n(\"entity\"<|>AFTER 21 DAYS<|>Time Period<|>After 21 days refers to the period after which passengers must contact the airline regarding lost baggage.)\n##\n(\"relationship\"<|>DAMAGE<|>CLAIM<|>Damage to baggage can lead to a claim being filed by the passenger against the airline.<|>8)\n##\n(\"relationship\"<|>MISSING ITEMS<|>CLAIM<|>Missing items from baggage can lead to a claim being filed by the passenger against the airline.<|>8)\n##\n(\"relationship\"<|>7 DAYS<|>CLAIM<|>Passengers must file a claim within 7 days for damaged or missing items from their baggage.<|>9)\n##\n(\"relationship\"<|>21 DAYS<|>CLAIM<|>Passengers must file a claim within 21 days for delayed baggage outside their country of residence.<|>9)\n##\n(\"relationship\"<|>AFTER 21 DAYS<|>CLAIM<|>Passengers must contact the airline after 21 days regarding lost baggage.<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b9f5b312ab10f9642f949c53b0022ea2 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-b9f5b312ab10f9642f949c53b0022ea2 deleted file mode 100644 index 8a8dc451f529838e0119160a7b2e8b08e09567cc..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-b9f5b312ab10f9642f949c53b0022ea2 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Shlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon provides pickup and delivery services for luggage and bags in various locations.)\n##\n(\"entity\"<|>CARGO TIKIM VE MIZVADOT<|>SERVICE TYPE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.)\n##\n(\"entity\"<|>MOKA<|>SERVICE LOCATION<|>Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.)\n##\n(\"entity\"<|>RIMON MIZVADOT VE TIKIM<|>SERVICE TYPE<|>Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.)\n##\n(\"entity\"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud specializes in baggage and outdoor equipment located in Nes Ziona.)\n##\n(\"entity\"<|>GALGAL YAZIV<|>SERVICE TYPE<|>Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.)\n##\n(\"entity\"<|>HAGALGAL<|>SERVICE TYPE<|>Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.)\n##\n(\"entity\"<|>BUGABOO<|>MATERIAL TYPE<|>Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.)\n##\n(\"entity\"<|>DAMAGE TO WHEELCHAIRS<|>RESTRICTION<|>Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers.)\n##\n(\"entity\"<|>IMPORTANT TO KNOW<|>POLICY<|>Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.)\n##\n(\"entity\"<|>DELAY IN RECEIVING BAGGAGE<|>POLICY<|>Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.)\n##\n(\"relationship\"<|>ARTY RIMON<|>CARGO TIKIM VE MIZVADOT<|>Both provide services related to luggage and bags, indicating a potential partnership or competition<|>5)\n##\n(\"relationship\"<|>ARTY RIMON<|>MOKA<|>Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship<|>8)\n##\n(\"relationship\"<|>RIMON MIZVADOT VE TIKIM<|>ARTY RIMON<|>Both provide similar services in different locations, indicating a competitive relationship<|>5)\n##\n(\"relationship\"<|>MAKOR HAZIUD<|>ARTY RIMON<|>Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon<|>4)\n##\n(\"relationship\"<|>GALGAL YAZIV<|>DAMAGE TO WHEELCHAIRS<|>Galgal Yaziv addresses damage to powered mobility scooters, which relates to the restriction on damaged wheelchairs<|>6)\n##\n(\"relationship\"<|>HAGALGAL<|>ARTY RIMON<|>Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon<|>4)\n##\n(\"relationship\"<|>BUGABOO<|>HAGALGAL<|>Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in<|>5)\n##\n(\"relationship\"<|>IMPORTANT TO KNOW<|>ARTY RIMON<|>The policy regarding baggage damage is relevant to the services provided by ARTY Rimon<|>7)\n##\n(\"relationship\"<|>DELAY IN RECEIVING BAGGAGE<|>IMPORTANT TO KNOW<|>The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>SHLOMO HA-MELEKH<|>PERSON<|>Shlomo Ha-Melekh is a contact person associated with the services mentioned in the document.)\n##\n(\"entity\"<|>RISHON LE ZION<|>CITY<|>Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.)\n##\n(\"entity\"<|>YEHUD<|>CITY<|>Yehud is a city where Moka, a pickup and delivery point, is located.)\n##\n(\"entity\"<|>REHOVOT<|>CITY<|>Rehovot is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"entity\"<|>NES ZIONA<|>CITY<|>Nes Ziona is a city where Makor Haziud operates.)\n##\n(\"entity\"<|>SHOHAM<|>CITY<|>Shoham is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"entity\"<|>RAMLE<|>CITY<|>Ramle is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"entity\"<|>LOD<|>CITY<|>Lod is a city where ARTY Rimon provides pickup and delivery services.)\n##\n(\"relationship\"<|>SHLOMO HA-MELEKH<|>ARTY RIMON<|>Shlomo Ha-Melekh is a contact person for ARTY Rimon, indicating a direct association<|>8)\n##\n(\"relationship\"<|>RISHON LE ZION<|>RIMON MIZVADOT VE TIKIM<|>Rimon Mizvadot ve Tikim operates in Rishon Le Zion, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>YEHUD<|>MOKA<|>Moka is located in Yehud, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>REHOVOT<|>ARTY RIMON<|>ARTY Rimon provides services in Rehovot, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>NES ZIONA<|>MAKOR HAZIUD<|>Makor Haziud operates in Nes Ziona, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>SHOHAM<|>ARTY RIMON<|>ARTY Rimon provides services in Shoham, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>RAMLE<|>ARTY RIMON<|>ARTY Rimon provides services in Ramle, indicating a service location relationship<|>8)\n##\n(\"relationship\"<|>LOD<|>ARTY RIMON<|>ARTY Rimon provides services in Lod, indicating a service location relationship<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-bc2f22505f4370d4956b17d42cc51bcc b/cache/entity_extraction/extract-loopcheck-0-chat-v2-bc2f22505f4370d4956b17d42cc51bcc deleted file mode 100644 index ad4c67df8bfd88e6056cca03386f0c080004baa2..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-bc2f22505f4370d4956b17d42cc51bcc +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n(\"entity\"<|>WHISKEY<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>GELS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>COSMETICS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>BABY FOOD<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>PRESCRIPTION MEDICATIONS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Country from which flights may have specific conditions regarding carrying liquids in carry-on bags.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>WHISKEY<|>Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>GELS<|>Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>COSMETICS<|>Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>BABY FOOD<|>Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>PRESCRIPTION MEDICATIONS<|>Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>The restrictions on liquids in carry-on bags apply to flights departing from Israel.<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>AEROSOLS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>CREAMS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n(\"entity\"<|>SECURITY CHECKPOINT<|>SERVICE LOCATION<|>Location where liquids that exceed the permitted amount will be discarded.)\n##\n(\"entity\"<|>CARRY-ON BAGS<|>BAGGAGE TYPE<|>Bags that passengers are allowed to take on board the aircraft, subject to restrictions on liquids.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>AEROSOLS<|>Aerosols are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>CREAMS<|>Creams are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>CARRY-ON BAGS<|>Restrictions on liquids apply specifically to items carried in carry-on bags.<|>9)\n##\n(\"relationship\"<|>SECURITY CHECKPOINT<|>LIQUIDS IN CARRY-ON BAGS<|>At the security checkpoint, liquids that exceed the permitted amount will be discarded.<|>9)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-c08dceeccc28da859aef37867cbd6567 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-c08dceeccc28da859aef37867cbd6567 deleted file mode 100644 index 2fa09f196b54a9109bdbc5adcb1df87a05170621..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-c08dceeccc28da859aef37867cbd6567 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​\n​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n(\"entity\"<|>ISRAEL<|>COUNTRY<|>Country from which flights are departing and has specific guidelines for carrying liquids in carry-on bags.)\n##\n(\"entity\"<|>U.S<|>COUNTRY<|>Country with specific guidelines regarding the carrying of liquids in handbags.)\n##\n(\"entity\"<|>100 ML<|>MEASUREMENT UNIT<|>Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.)\n##\n(\"entity\"<|>3.4 OZ<|>MEASUREMENT UNIT<|>Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.)\n##\n(\"entity\"<|>CLEAR RESEALABLE PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.)\n##\n(\"entity\"<|>DOCTOR'S NOTE<|>REQUIRED DOCUMENT<|>Document required for carrying medications and special food products at the security checkpoint.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>Airline that states it is not responsible for any liquids confiscated from passengers at the airport.)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports.<|>8)\n##\n(\"relationship\"<|>LIQUIDS IN CARRY-ON BAGS<|>U.S<|>The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.<|>8)\n##\n(\"relationship\"<|>100 ML<|>3.4 OZ<|>100 ml is equivalent to 3.4 oz, which is the maximum volume allowed for liquids in carry-on bags.<|>9)\n##\n(\"relationship\"<|>CLEAR RESEALABLE PLASTIC BAG<|>LIQUIDS IN CARRY-ON BAGS<|>A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.<|>9)\n##\n(\"relationship\"<|>DOCTOR'S NOTE<|>LIQUIDS IN CARRY-ON BAGS<|>A doctor's note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.<|>8)\n##\n(\"relationship\"<|>EL AL<|>LIQUIDS IN CARRY-ON BAGS<|>EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>AEROSOLS<|>PROHIBITED ITEM<|>Aerosols are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n(\"entity\"<|>GELS<|>PROHIBITED ITEM<|>Gels are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n(\"entity\"<|>CREAMS<|>PROHIBITED ITEM<|>Creams are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n(\"entity\"<|>BABY FOOD<|>SPECIAL ITEM<|>Baby food is a special item that does not have to be packed in the resealable plastic bag but must be presented at the security checkpoint.)\n##\n(\"entity\"<|>DUTY FREE<|>RESTRICTION<|>Duty-free products cannot be purchased if they are prohibited aboard the aircraft, even for connecting flights.)\n##\n(\"entity\"<|>SECURITY CHECKPOINT<|>SERVICE LOCATION<|>Location where passengers must present their carry-on items, including liquids, for inspection before boarding.)\n##\n(\"entity\"<|>CONNECTING FLIGHT<|>ROUTE TYPE<|>Type of flight that may have additional restrictions regarding the carrying of liquids.)\n##\n(\"entity\"<|>PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for carrying liquids in carry-on luggage.)\n##\n(\"entity\"<|>PERMITTED AMOUNT<|>RESTRICTION<|>The maximum amount of liquids allowed in carry-on bags, which is subject to specific guidelines.)\n##\n(\"entity\"<|>GUIDELINES<|>POLICY<|>Updated guidelines that dictate the rules for carrying liquids in carry-on bags.)\n##\n(\"entity\"<|>FLIGHT<|>ROUTE TYPE<|>Traveling by air, which is subject to regulations regarding the carrying of liquids.)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-c1c6b76558297f02560ce88d3ccf2f45 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-c1c6b76558297f02560ce88d3ccf2f45 deleted file mode 100644 index 2b5232ee839f9d427ad4e94b13fc5489e0441a68..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-c1c6b76558297f02560ce88d3ccf2f45 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGS<|>Baggage Type<|>Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.)\n##\n(\"entity\"<|>16 KG<|>Weight<|>16 kg is the maximum weight allowed for one bag as per airline policy.)\n##\n(\"entity\"<|>20 KG<|>Weight<|>20 kg is the combined maximum weight limit for all bags as per airline policy.)\n##\n(\"entity\"<|>CARRY-ON BAGS<|>Baggage Type<|>Carry-on bags are personal items that passengers can take on board the aircraft, subject to weight and size restrictions.)\n##\n(\"entity\"<|>MEDICATIONS<|>Valuable Item<|>Medications are essential items that passengers are advised to keep accessible during flights.)\n##\n(\"entity\"<|>PASSPORTS<|>Valuable Item<|>Passports are required documents for international travel and should be easily accessible during flights.)\n##\n(\"entity\"<|>VALUABLES<|>Valuable Item<|>Valuables refer to personal items of significant worth that should be kept accessible during flights.)\n##\n(\"entity\"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as phones and laptops that passengers are advised to keep accessible during flights.)\n##\n(\"relationship\"<|>BAGS<|>16 KG<|>The weight limit for one bag is set at 16 kg as per airline policy<|>8)\n##\n(\"relationship\"<|>BAGS<|>20 KG<|>The combined weight limit for all bags is set at 20 kg as per airline policy<|>8)\n##\n(\"relationship\"<|>CARRY-ON BAGS<|>BAGS<|>Carry-on bags are a type of baggage that passengers can take on board<|>9)\n##\n(\"relationship\"<|>MEDICATIONS<|>CARRY-ON BAGS<|>Medications should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>PASSPORTS<|>CARRY-ON BAGS<|>Passports should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>VALUABLES<|>CARRY-ON BAGS<|>Valuables should be kept in carry-on bags for easy access during the flight<|>7)\n##\n(\"relationship\"<|>ELECTRONIC DEVICES<|>CARRY-ON BAGS<|>Electronic devices should be kept in carry-on bags for easy access during the flight<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>MAXIMUM WEIGHT<|>Weight<|>Maximum weight refers to the highest allowable weight for baggage as specified by the airline, which is 16 kg for one bag and 20 kg combined.)\n##\n(\"entity\"<|>CHECKED BAGS<|>Baggage Type<|>Checked bags are items that are not taken on board the aircraft but are stored in the plane's cargo hold.)\n##\n(\"entity\"<|>PLANE'S BELLY<|>Service Location<|>The plane's belly refers to the cargo hold of the aircraft where checked bags are stored.)\n##\n(\"entity\"<|>NO CHARGE<|>Fee Structure<|>No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.)\n##\n(\"entity\"<|>RECOMMENDATION<|>Policy<|>A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.)\n##\n(\"relationship\"<|>CARRY-ON BAGS<|>CHECKED BAGS<|>If no free space is available, carry-on bags will be checked to the plane's belly<|>6)\n##\n(\"relationship\"<|>MAXIMUM WEIGHT<|>16 KG<|>The maximum weight for one bag is defined as 16 kg<|>8)\n##\n(\"relationship\"<|>MAXIMUM WEIGHT<|>20 KG<|>The maximum combined weight for all bags is defined as 20 kg<|>8)\n##\n(\"relationship\"<|>CHECKED BAGS<|>PLANE'S BELLY<|>Checked bags are stored in the plane's belly during the flight<|>9)\n##\n(\"relationship\"<|>NO CHARGE<|>CHECKED BAGS<|>Checked bags will incur no charge if carry-on bags are checked due to lack of space<|>7)\n##\n(\"relationship\"<|>RECOMMENDATION<|>CARRY-ON BAGS<|>The recommendation advises passengers to remove certain items from carry-on bags for easy access<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-d466ff258136a6f5be5f12c3f4305c0d b/cache/entity_extraction/extract-loopcheck-0-chat-v2-d466ff258136a6f5be5f12c3f4305c0d deleted file mode 100644 index d7804c68d08bf34498d72c23ef4a724e0a79cec8..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-d466ff258136a6f5be5f12c3f4305c0d +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n(\"entity\"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat in front of the passenger to maximize cabin space.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n(\"entity\"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n(\"entity\"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n(\"entity\"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n(\"entity\"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n(\"entity\"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status may affect the eligibility of passengers to bring carry-on baggage aboard the aircraft.)\n##\n(\"entity\"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n(\"entity\"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n(\"relationship\"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat in front of the passenger.<|>8)\n##\n(\"relationship\"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n(\"relationship\"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n(\"relationship\"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n(\"relationship\"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Matmid Frequent Flyer Club status may influence the carry-on baggage eligibility for passengers.<|>5)\n##\n(\"relationship\"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a critical factor in determining the eligibility of carry-on baggage for boarding.<|>8)\n##\n(\"relationship\"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are essential for determining the eligibility of carry-on baggage for boarding.<|>8)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>CHECKED LUGGAGE<|>Baggage Type<|>Checked luggage refers to bags that are transported in the aircraft's cargo hold rather than in the passenger cabin.)\n##\n(\"entity\"<|>TROLLEY<|>Baggage Type<|>Trolleys are a type of carry-on bag that passengers can bring into the passenger cabin.)\n##\n(\"entity\"<|>FLIGHT TICKET TERMS<|>Policy<|>Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.)\n##\n(\"entity\"<|>BOOKING MANAGEMENT<|>Service Location<|>Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.)\n##\n(\"entity\"<|>OVERHEAD COMPARTMENTS<|>Cabin Section<|>Overhead compartments are storage areas in the passenger cabin where carry-on bags are placed during the flight.)\n##\n(\"entity\"<|>BAGGAGE CONVEYOR BELT<|>Service Location<|>The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.)\n##\n(\"entity\"<|>NORTH AMERICA<|>Region<|>North America is a region where specific flight policies apply, particularly regarding carry-on baggage.)\n##\n(\"relationship\"<|>CHECKED LUGGAGE<|>CARRY-ON BAGGAGE<|>Checked luggage is an alternative to carry-on baggage for passengers who need to transport larger items.<|>6)\n##\n(\"relationship\"<|>TROLLEY<|>CARRY-ON BAGGAGE<|>Trolleys are a specific type of carry-on baggage that passengers can bring into the cabin.<|>8)\n##\n(\"relationship\"<|>FLIGHT TICKET TERMS<|>CARRY-ON BAGGAGE<|>Flight ticket terms provide details on the rules regarding carry-on baggage allowances.<|>7)\n##\n(\"relationship\"<|>BOOKING MANAGEMENT<|>CARRY-ON BAGGAGE<|>Booking management allows passengers to check their carry-on baggage policies and manage their bookings.<|>6)\n##\n(\"relationship\"<|>OVERHEAD COMPARTMENTS<|>CARRY-ON BAGGAGE<|>Overhead compartments are designated storage areas for carry-on baggage during the flight.<|>8)\n##\n(\"relationship\"<|>BAGGAGE CONVEYOR BELT<|>CHECKED LUGGAGE<|>The baggage conveyor belt is where checked luggage is retrieved after a flight.<|>9)\n##\n(\"relationship\"<|>NORTH AMERICA<|>CARRY-ON BAGGAGE<|>Specific carry-on baggage policies apply to flights from/to North America.<|>5)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-e692fe732e5f0e8e57bb08ea9db9bd06 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-e692fe732e5f0e8e57bb08ea9db9bd06 deleted file mode 100644 index 718ee8aea1e62a79614266b58363404db17f41c7..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-e692fe732e5f0e8e57bb08ea9db9bd06 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the items that passengers check in for their flight, which can be delayed, damaged, or lost.)\n##\n(\"entity\"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board.)\n##\n(\"entity\"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS DEPARTMENT<|>Service Location<|>The Baggage Claims Department processes claims related to lost or damaged baggage.)\n##\n(\"entity\"<|>DELAYED BAGGAGE<|>Restriction<|>Delayed baggage refers to baggage that has not arrived with the passenger and must be reported immediately after landing.)\n##\n(\"entity\"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status can be checked using a worldwide system by entering the lost baggage report number and last name.)\n##\n(\"entity\"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the passenger's address.)\n##\n(\"entity\"<|>CONTACT DETAILS<|>Required Document<|>Contact details include phone numbers and WhatsApp chat options for reporting baggage issues.)\n##\n(\"entity\"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a 10-character identifier used to check the status of a claim.)\n##\n(\"entity\"<|>BAGGAGE REPORT<|>Required Document<|>A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.)\n##\n(\"relationship\"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center manages issues related to baggage, including delays and damages<|>8)\n##\n(\"relationship\"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and related claims<|>9)\n##\n(\"relationship\"<|>BAGGAGE SERVICE CENTER<|>BAGGAGE CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Baggage Claims Department for processing claims<|>7)\n##\n(\"relationship\"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>Delayed baggage must be reported to the Baggage Service Center for assistance<|>8)\n##\n(\"relationship\"<|>CLAIM STATUS<|>BAGGAGE SERVICE CENTER<|>The status of a claim can be checked through the Baggage Service Center's worldwide system<|>6)\n##\n(\"relationship\"<|>BAGGAGE<|>COURIER SERVICE<|>Retrieved delayed baggage is delivered to the passenger's address by the courier service<|>7)\n##\n(\"relationship\"<|>BAGGAGE<|>CONTACT DETAILS<|>Contact details are provided for passengers to report baggage issues<|>5)\n##\n(\"relationship\"<|>LOST BAGGAGE REPORT NUMBER<|>CLAIM STATUS<|>The lost baggage report number is required to check the status of a claim<|>8)\n##\n(\"relationship\"<|>BAGGAGE REPORT<|>DELAYED BAGGAGE<|>A baggage report is issued for delayed baggage at the airport<|>7)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>DAMAGED BAGGAGE<|>Baggage Type<|>Damaged baggage refers to baggage that has been harmed or compromised during transit and requires reporting for claims.)\n##\n(\"entity\"<|>FORGOTTEN ITEM<|>Prohibited Item<|>An item forgotten on board refers to personal belongings left behind by passengers on the aircraft.)\n##\n(\"entity\"<|>BAGGAGE DELAY<|>Restriction<|>Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.)\n##\n(\"entity\"<|>BAGGAGE CLAIM<|>Service Type<|>Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.)\n##\n(\"entity\"<|>BAGGAGE HANDLING<|>Service Type<|>Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.)\n##\n(\"entity\"<|>BAGGAGE REPORTING<|>Service Type<|>Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.)\n##\n(\"entity\"<|>BAGGAGE DELIVERY<|>Service Type<|>Baggage delivery is the service that ensures retrieved baggage is sent to the passenger's specified address.)\n##\n(\"entity\"<|>BAGGAGE CLAIMS PROCESS<|>Policy<|>The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.)\n##\n(\"relationship\"<|>DAMAGED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center handles cases of damaged baggage reported by passengers<|>8)\n##\n(\"relationship\"<|>FORGOTTEN ITEM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists passengers with items forgotten on board<|>7)\n##\n(\"relationship\"<|>BAGGAGE DELAY<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center is responsible for managing reports of baggage delays<|>8)\n##\n(\"relationship\"<|>BAGGAGE CLAIM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center facilitates the baggage claim process for passengers<|>9)\n##\n(\"relationship\"<|>BAGGAGE HANDLING<|>BAGGAGE SERVICE CENTER<|>Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage<|>8)\n##\n(\"relationship\"<|>BAGGAGE REPORTING<|>BAGGAGE SERVICE CENTER<|>Passengers report baggage issues to the Baggage Service Center for resolution<|>9)\n##\n(\"relationship\"<|>BAGGAGE DELIVERY<|>COURIER SERVICE<|>The courier service is responsible for the delivery of baggage to the passenger's address after retrieval<|>8)\n##\n(\"relationship\"<|>BAGGAGE CLAIMS PROCESS<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center follows the baggage claims process to assist passengers<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-ec197f8c30fd476bad69be610e5948b4 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-ec197f8c30fd476bad69be610e5948b4 deleted file mode 100644 index b118bd78123d4ce5f186659e526b170def2275fb..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-ec197f8c30fd476bad69be610e5948b4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of service dogs on flights.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>A service dog is a trained animal that assists passengers with disabilities and must meet specific requirements for air travel.)\n##\n(\"entity\"<|>HEATHROW AIRPORT<|>AIRPORT<|>Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.)\n##\n(\"entity\"<|>UNITED STATES<|>GEO<|>The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.)\n##\n(\"entity\"<|>ISRAEL<|>GEO<|>Israel is a country with specific requirements for transporting animals, including service dogs.)\n##\n(\"entity\"<|>CDC<|>ORGANIZATION<|>The CDC provides guidelines and requirements for transporting dogs to the United States, including health and vaccination documentation.)\n##\n(\"entity\"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is a document that certifies a service dog is vaccinated and can maintain sanitary conditions during transport.)\n##\n(\"entity\"<|>ANIMAL AIR TRANSPORT COMPANIES<|>SERVICE TYPE<|>Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.)\n##\n(\"relationship\"<|>EL AL<|>SERVICE DOG<|>EL AL has specific policies regarding the transportation of service dogs, including requirements for documentation and behavior during the flight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>VETERINARY CERTIFICATE<|>A veterinary certificate is required for a service dog to ensure it is vaccinated and fit for travel.<|>9)\n##\n(\"relationship\"<|>SERVICE DOG<|>HEATHROW AIRPORT<|>Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.<|>7)\n##\n(\"relationship\"<|>SERVICE DOG<|>UNITED STATES<|>The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.<|>8)\n##\n(\"relationship\"<|>ISRAEL<|>SERVICE DOG<|>Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.<|>6)\n##\n(\"relationship\"<|>CDC<|>UNITED STATES<|>The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.<|>8)\n##\n(\"relationship\"<|>EL AL<|>ANIMAL AIR TRANSPORT COMPANIES<|>EL AL may recommend using specialized companies for the air transport of animals, including service dogs.<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>CAGE<|>SPECIAL ITEM<|>A cage adapted for a service dog is required for transport, ensuring the dog's safety and comfort during the flight.)\n##\n(\"entity\"<|>LEASH<|>SPECIAL ITEM<|>A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.)\n##\n(\"entity\"<|>HARNESSES<|>SPECIAL ITEM<|>Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.)\n##\n(\"entity\"<|>FLIGHT DATE<|>TIME PERIOD<|>The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.)\n##\n(\"entity\"<|>ADDITIONAL CHARGES<|>FEE STRUCTURE<|>Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.)\n##\n(\"entity\"<|>HIGH-RISK COUNTRY<|>RESTRICTION<|>As of the current date, Israel is classified as a high-risk country for transporting animals, affecting travel regulations.)\n##\n(\"entity\"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are the designated areas at the airport where passengers must present their documentation for traveling with a service dog.)\n##\n(\"entity\"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Passengers must complete all necessary documents required for transporting animals to and from Israel.)\n##\n(\"entity\"<|>SANITARY CONDITIONS<|>RESTRICTION<|>Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.)\n##\n(\"relationship\"<|>SERVICE DOG<|>CAGE<|>A cage is required for the transport of a service dog to ensure its safety and comfort during the flight.<|>8)\n##\n(\"relationship\"<|>SERVICE DOG<|>LEASH<|>A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.<|>9)\n##\n(\"relationship\"<|>SERVICE DOG<|>HARNESSES<|>Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.<|>9)\n##\n(\"relationship\"<|>FLIGHT DATE<|>SERVICE DOG<|>The flight date is crucial for passengers traveling with a service dog to ensure compliance with registration and documentation requirements.<|>7)\n##\n(\"relationship\"<|>ADDITIONAL CHARGES<|>SERVICE DOG<|>Additional charges may apply for the inspection and release of a service dog at airport facilities in the United States.<|>6)\n##\n(\"relationship\"<|>ISRAEL<|>HIGH-RISK COUNTRY<|>Israel is classified as a high-risk country, affecting the regulations for transporting service dogs.<|>5)\n##\n(\"relationship\"<|>CHECK-IN COUNTERS<|>SERVICE DOG<|>Passengers must present their documentation for traveling with a service dog at the check-in counters.<|>8)\n##\n(\"relationship\"<|>DOCUMENTS<|>SERVICE DOG<|>Passengers must complete all necessary documents required for transporting service dogs to and from Israel.<|>7)\n##\n(\"relationship\"<|>SANITARY CONDITIONS<|>SERVICE DOG<|>Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-f0f65f7ae8c93b734bdaa337b1478484 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-f0f65f7ae8c93b734bdaa337b1478484 deleted file mode 100644 index 9c8a63be81d0c4ecc0d8c2495d85519ba7ddbd01..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-f0f65f7ae8c93b734bdaa337b1478484 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when boarding a flight.)\n##\n(\"entity\"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may be considered dangerous goods due to their lithium batteries and require special handling.)\n##\n(\"entity\"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may contain batteries or other components classified as dangerous goods.)\n##\n(\"entity\"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their flammability and potential hazards.)\n##\n(\"entity\"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosives like acids and wet cell batteries are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are forbidden on aircraft for safety reasons.)\n##\n(\"entity\"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to their potential to ignite.)\n##\n(\"entity\"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are forbidden on aircraft due to safety and health risks.)\n##\n(\"entity\"<|>BRIEFCASES WITH ALARM DEVICES<|>PROHIBITED ITEM<|>Briefcases with installed alarm devices are prohibited on aircraft for security reasons.)\n##\n(\"entity\"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials like hydrogen peroxide are prohibited on aircraft due to their reactive nature.)\n##\n(\"entity\"<|>POISONS<|>PROHIBITED ITEM<|>Poisons and infectious substances are forbidden on aircraft due to their hazardous effects on health.)\n##\n(\"entity\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can interfere with navigation and safety equipment.)\n##\n(\"relationship\"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries, which are classified as dangerous goods and require special handling<|>8)\n##\n(\"relationship\"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may contain batteries, which are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Corrosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Explosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Radioactive materials and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n(\"relationship\"<|>BRIEFCASES WITH ALARM DEVICES<|>FLAMMABLE LIQUIDS<|>Both briefcases with alarm devices and flammable liquids are prohibited on aircraft<|>6)\n##\n(\"relationship\"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Oxidizing materials and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n(\"relationship\"<|>POISONS<|>FLAMMABLE LIQUIDS<|>Poisons and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n(\"relationship\"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>High-strength magnetic materials and flammable liquids are both prohibited on aircraft<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>BUTANE<|>DANGEROUS GOOD<|>Butane is a type of compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its flammability.)\n##\n(\"entity\"<|>OXYGEN<|>DANGEROUS GOOD<|>Oxygen is a compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its potential hazards.)\n##\n(\"entity\"<|>AQUALUNG CYLINDERS<|>DANGEROUS GOOD<|>Aqualung cylinders are classified as dangerous goods and are prohibited on aircraft due to their compressed gas content.)\n##\n(\"entity\"<|>COMPRESSED GAS CYLINDERS<|>DANGEROUS GOOD<|>Compressed gas cylinders are classified as dangerous goods and are prohibited on aircraft due to their potential hazards.)\n##\n(\"entity\"<|>ACIDS<|>DANGEROUS GOOD<|>Acids are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>ALKALIS<|>DANGEROUS GOOD<|>Alkalis are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>WET CELL BATTERIES<|>DANGEROUS GOOD<|>Wet cell batteries are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n(\"entity\"<|>MATERIALS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Materials containing mercury are classified as dangerous goods and are prohibited on aircraft due to their toxicity.)\n##\n(\"entity\"<|>LIGHT AMMUNITION<|>RESTRICTED ITEM<|>Light ammunition is restricted on aircraft and may be subject to specific regulations.)\n##\n(\"entity\"<|>FLAMMABLE SOLIDS<|>DANGEROUS GOOD<|>Flammable solids are classified as dangerous goods and are prohibited on aircraft due to their potential to ignite.)\n##\n(\"relationship\"<|>BUTANE<|>COMPRESSED GASES<|>Butane is a type of compressed gas that is classified as a dangerous good<|>8)\n##\n(\"relationship\"<|>OXYGEN<|>COMPRESSED GASES<|>Oxygen is a type of compressed gas that is classified as a dangerous good<|>8)\n##\n(\"relationship\"<|>AQUALUNG CYLINDERS<|>COMPRESSED GASES<|>Aqualung cylinders are classified as dangerous goods due to their compressed gas content<|>8)\n##\n(\"relationship\"<|>COMPRESSED GAS CYLINDERS<|>COMPRESSED GASES<|>Compressed gas cylinders are classified as dangerous goods<|>8)\n##\n(\"relationship\"<|>ACIDS<|>CORROSIVES<|>Acids are classified as corrosives and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>ALKALIS<|>CORROSIVES<|>Alkalis are classified as corrosives and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>WET CELL BATTERIES<|>CORROSIVES<|>Wet cell batteries are classified as corrosives and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>MATERIALS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Materials containing mercury are classified as dangerous goods and are prohibited on aircraft<|>8)\n##\n(\"relationship\"<|>LIGHT AMMUNITION<|>EXPLOSIVES<|>Light ammunition is restricted on aircraft and may be subject to specific regulations<|>5)\n##\n(\"relationship\"<|>FLAMMABLE SOLIDS<|>FLAMMABLE LIQUIDS<|>Flammable solids are classified as dangerous goods and are prohibited on aircraft<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-f773fb44aad35cfcb2f303add3f4b2c8 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-f773fb44aad35cfcb2f303add3f4b2c8 deleted file mode 100644 index f32c79298d5c4dfbe66301706eb416f1a1f38d91..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-f773fb44aad35cfcb2f303add3f4b2c8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(\"entity\"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets, including restrictions on certain breeds and weight limits.)\n##\n(\"entity\"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from the weight limit for transporting pets in the cabin of the aircraft.)\n##\n(\"entity\"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n##\n(\"entity\"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the cabin or as checked baggage under specific conditions.)\n##\n(\"entity\"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to animals that must be transported in the luggage compartment of the aircraft in certain instances, such as large animals.)\n##\n(\"entity\"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo refers to animals that may be transported by the Cargo Division, especially for extra-large animals or those flying unaccompanied.)\n##\n(\"entity\"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg, except for service dogs.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>EL AL<|>The Ministry of Agriculture oversees the transport of pets, which includes regulations that EL AL must follow for pet transportation<|>7)\n##\n(\"relationship\"<|>EL AL<|>SERVICE DOG<|>EL AL allows service dogs to be transported without the weight limit that applies to other pets<|>8)\n##\n(\"relationship\"<|>EL AL<|>DANGEROUS DOG<|>EL AL has a policy that prohibits the transportation of dangerous dogs as defined by Israeli law<|>9)\n##\n(\"relationship\"<|>EL AL<|>PET<|>EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport<|>8)\n##\n(\"relationship\"<|>PET<|>CHECKED BAGGAGE<|>Pets can be transported as checked baggage under certain conditions, such as size and weight<|>6)\n##\n(\"relationship\"<|>PET<|>REGISTERED CARGO<|>Pets may also be transported as registered cargo, especially if they are large or unaccompanied<|>6)\n##\n(\"relationship\"<|>9KG<|>PET<|>The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>BRAchycephalic DOG AND CAT BREEDS<|>PROHIBITED ITEM<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n##\n(\"entity\"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture’s Veterinary Services is required to transport an animal to and from Israel.)\n##\n(\"entity\"<|>ANIMAL TESTS<|>RESTRICTION<|>The authorization process for transporting pets may involve performing several animal tests.)\n##\n(\"entity\"<|>CHECK-IN COUNTER<|>SERVICE LOCATION<|>The check-in counter is where pet owners must arrive with their pets for transport arrangements.)\n##\n(\"entity\"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The Arrivals Hall is where pet owners will retrieve their animals after they have been transported as checked baggage.)\n##\n(\"entity\"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL is responsible for transporting animals that are extra-large or flying unaccompanied.)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>AUTHORIZATION<|>The Ministry of Agriculture requires authorization for transporting animals, which is a necessary document for compliance<|>8)\n##\n(\"relationship\"<|>MINISTRY OF AGRICULTURE<|>ANIMAL TESTS<|>The Ministry of Agriculture's authorization process may involve performing several animal tests<|>6)\n##\n(\"relationship\"<|>EL AL<|>CHECK-IN COUNTER<|>Pet owners must arrive at the check-in counter with their pets for transport on EL AL<|>7)\n##\n(\"relationship\"<|>EL AL<|>ARRIVALS HALL<|>Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL<|>7)\n##\n(\"relationship\"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL handles the transport of animals that are extra-large or unaccompanied<|>8)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-f95ac54612cc805eb108adb1c5977d6c b/cache/entity_extraction/extract-loopcheck-0-chat-v2-f95ac54612cc805eb108adb1c5977d6c deleted file mode 100644 index b37cad02b22b651a8258c4a51e242e4fbfb7795d..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-f95ac54612cc805eb108adb1c5977d6c +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>AIRLINE<|>Baggage Type<|>Refers to the various airlines that operate flights and their associated baggage policies.)\n##\n(\"entity\"<|>PASSENGER<|>Passenger Type<|>Refers to individuals who travel on flights and are subject to airline policies regarding baggage and services.)\n##\n(\"entity\"<|>ADDITIONAL SERVICES<|>Service Type<|>Refers to extra services that can be ordered by passengers, which may incur additional charges.)\n##\n(\"relationship\"<|>PASSENGER<|>AIRLINE<|>Passengers are subject to the policies of the airline regarding baggage and additional services<|>7)\n##\n(\"relationship\"<|>PASSENGER<|>ADDITIONAL SERVICES<|>Passengers can order additional services, which may incur charges<|>6)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>CANCELLATION<|>Policy<|>Refers to the policy regarding the cancellation of additional services purchased by passengers.)\n##\n(\"entity\"<|>CHANGE<|>Policy<|>Refers to the policy regarding changes made to additional services purchased by passengers.)\n##\n(\"entity\"<|>REFUND<|>Policy<|>Refers to the policy stating that no refund will be given for cancellation or change of additional services.)\n##\n(\"entity\"<|>FULL CHARGE<|>Fee Structure<|>Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.)\n##\n(\"relationship\"<|>CANCELLATION<|>REFUND<|>The cancellation policy states that no refund will be given<|>8)\n##\n(\"relationship\"<|>CHANGE<|>REFUND<|>The change policy states that no refund will be given<|>8)\n##\n(\"relationship\"<|>ADDITIONAL SERVICES<|>FULL CHARGE<|>Ordering additional services will result in a full charge to the passenger<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/entity_extraction/extract-loopcheck-0-chat-v2-fb4ec91223f705944a9dd244ce808330 b/cache/entity_extraction/extract-loopcheck-0-chat-v2-fb4ec91223f705944a9dd244ce808330 deleted file mode 100644 index db3e5fdc69b115392d2936098b7bfccb1102d81c..0000000000000000000000000000000000000000 --- a/cache/entity_extraction/extract-loopcheck-0-chat-v2-fb4ec91223f705944a9dd244ce808330 +++ /dev/null @@ -1 +0,0 @@ -{"result": "iat", "input": "It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 1, "n": 1, "logit_bias": {"14331": 100, "9173": 100}}, "history": [{"role": "user", "content": "\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity's attributes and activities\nFormat each entity as (\"entity\"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as (\"relationship\"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n(\"entity\"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n(\"entity\"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n(\"entity\"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply)\n##\n(\"relationship\"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n(\"entity\"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n(\"entity\"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n(\"relationship\"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n(\"entity\"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n(\"entity\"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n(\"entity\"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n(\"entity\"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n(\"entity\"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n(\"entity\"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n(\"entity\"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia's Alhamia Prison)\n##\n(\"entity\"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n(\"entity\"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n(\"entity\"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n(\"relationship\"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n(\"relationship\"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n(\"relationship\"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:"}, {"role": "assistant", "content": "(\"entity\"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service location for cargo operations associated with EL AL Airlines.)\n##\n(\"relationship\"<|>EL AL CARGO STORE<|>EL AL CARGO STORE<|>The EL AL Cargo Store is a part of EL AL Airlines' cargo services<|>5)\n<|COMPLETE|>"}, {"role": "user", "content": "MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n"}, {"role": "assistant", "content": "(\"entity\"<|>CARGO TERMINAL<|>AIRPORT<|>A cargo terminal is a facility where cargo is handled, stored, and transferred, typically associated with an airport's operations.)\n##\n(\"relationship\"<|>CARGO TERMINAL<|>EL AL CARGO STORE<|>The EL AL Cargo Store operates within the cargo terminal for handling cargo services<|>7)\n<|COMPLETE|>"}]} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-010933c3aff8172820c52f69c2615420 b/cache/summarize_descriptions/summarize-chat-v2-010933c3aff8172820c52f69c2615420 deleted file mode 100644 index 40cfa772fde3744f484d5f9c9f84d51930bcd784..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-010933c3aff8172820c52f69c2615420 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Poisons, which encompass a range of harmful substances including insecticides and herbicides, are classified as dangerous goods and are strictly prohibited on aircraft. This prohibition is in place due to the hazardous effects these substances can have on health, posing significant risks to passengers and crew during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"POISONS\"\nDescription List: [\"Poisons and infectious substances are forbidden on aircraft due to their hazardous effects on health.\", \"Poisons, including insecticides and herbicides, are classified as dangerous goods and are prohibited on aircraft.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-01e1322b1f338893ddacda4b7e595fbd b/cache/summarize_descriptions/summarize-chat-v2-01e1322b1f338893ddacda4b7e595fbd deleted file mode 100644 index 2adf9368ee87c7b0113528ee5e4e43b02c9b9e74..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-01e1322b1f338893ddacda4b7e595fbd +++ /dev/null @@ -1 +0,0 @@ -{"result": "Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"PROHIBITED ITEM\"\nDescription List: [\"\", \"Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-04bc7b33bae5316074667e4a9f1d4aa9 b/cache/summarize_descriptions/summarize-chat-v2-04bc7b33bae5316074667e4a9f1d4aa9 deleted file mode 100644 index ec3b41b562a205ef47621d1957d6de27d3407e56..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-04bc7b33bae5316074667e4a9f1d4aa9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ANIMAL TESTS\"\nDescription List: [\"Several animal tests must be performed as part of the authorization process for transporting pets.\", \"The authorization process for transporting pets may involve performing several animal tests.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-056295fba67f63d16c75acdb3c695807 b/cache/summarize_descriptions/summarize-chat-v2-056295fba67f63d16c75acdb3c695807 deleted file mode 100644 index 25cc1d903a247dd2efdffe3257dc53a3bfef53b0..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-056295fba67f63d16c75acdb3c695807 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"LITHIUM-ION BATTERIES\"\nDescription List: [\"Larger lithium-ion batteries (100-160 watt-hours) are limited to two batteries per passenger and must comply with specific regulations.\", \"Lithium-ion batteries are rechargeable batteries commonly used in portable electronic devices, with specific size and watt-hour limitations for air travel.\", \"Lithium-ion batteries, including consumer-grade types, are allowed aboard aircraft with specific watt-hour limits.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-05c3e949a94562d29f68938bd861c646 b/cache/summarize_descriptions/summarize-chat-v2-05c3e949a94562d29f68938bd861c646 deleted file mode 100644 index e2f3b9d1d2d846d9dee61f821b18fc6971fd36c8..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-05c3e949a94562d29f68938bd861c646 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"WEIGHT\" is a crucial factor in determining the eligibility of \"CARRY-ON BAGGAGE.\" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"WEIGHT\", \"CARRY-ON BAGGAGE\"]\nDescription List: [\"Weight limits are a key factor in determining the eligibility of carry-on baggage\", \"Weight limits are essential for determining the eligibility of carry-on baggage for boarding.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-076106ea9fe5548757f77465c20ee509 b/cache/summarize_descriptions/summarize-chat-v2-076106ea9fe5548757f77465c20ee509 deleted file mode 100644 index 9fa019ced384fd30d56ab15641562ae1c23dd237..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-076106ea9fe5548757f77465c20ee509 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"MATMID FREQUENT FLYER CLUB\"\nDescription List: [\"Matmid Frequent Flyer Club status affects eligibility for carry-on baggage allowances.\", \"Matmid Frequent Flyer Club status may affect the eligibility of passengers to bring carry-on baggage aboard the aircraft.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-07963874c8c1df206eb3374aae0c1fa9 b/cache/summarize_descriptions/summarize-chat-v2-07963874c8c1df206eb3374aae0c1fa9 deleted file mode 100644 index 03ef4df17cea1f4caa4b53fc4d9aa0dad9a6a7c2..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-07963874c8c1df206eb3374aae0c1fa9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "\"Manage Your Booking\" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"MANAGE YOUR BOOKING\"\nDescription List: [\"Manage Your Booking is an online service provided by airlines that allows passengers to view and modify their flight details, including baggage options.\", \"Manage Your Booking is an online service where passengers can view and modify their flight details, including baggage allowances.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-0840e4aeaea93d76cc0d42c6bcd6cd76 b/cache/summarize_descriptions/summarize-chat-v2-0840e4aeaea93d76cc0d42c6bcd6cd76 deleted file mode 100644 index 9839466245bb990f4557b3c279cc78002d56d336..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-0840e4aeaea93d76cc0d42c6bcd6cd76 +++ /dev/null @@ -1 +0,0 @@ -{"result": "CARGO provides services for transporting sporting equipment that exceeds standard baggage limits. Specifically, sporting equipment can be transported as cargo when it surpasses the standard baggage allowance, ensuring that athletes and sports enthusiasts can travel with their necessary gear without restrictions.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARGO\", \"SPORTING EQUIPMENT\"]\nDescription List: [\"Cargo services are available for transporting sporting equipment that exceeds standard baggage limits.\", \"Sporting equipment can be transported as cargo if it exceeds the standard baggage allowance\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-0b2b1a53ada26a87cc98f9475de36207 b/cache/summarize_descriptions/summarize-chat-v2-0b2b1a53ada26a87cc98f9475de36207 deleted file mode 100644 index 33f63f65911398635e422941b937ab867d06e590..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-0b2b1a53ada26a87cc98f9475de36207 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CDC\"\nDescription List: [\"The CDC provides guidelines and requirements for transporting dogs to the United States, including health and vaccination documentation.\", \"The CDC sets regulations regarding the transportation of dogs to the US and provides guidelines that must be followed by passengers.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-0ed4efb7ceac16205deb3ff9105c4e6c b/cache/summarize_descriptions/summarize-chat-v2-0ed4efb7ceac16205deb3ff9105c4e6c deleted file mode 100644 index 59ec6bf49f8f77e8df0cb751a4d331c0f1c46121..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-0ed4efb7ceac16205deb3ff9105c4e6c +++ /dev/null @@ -1 +0,0 @@ -{"result": "Both flammable liquids and high-strength magnetic materials are classified as prohibited items on aircraft. This classification indicates that neither of these substances is allowed to be transported on commercial flights due to safety concerns.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"FLAMMABLE LIQUIDS\", \"HIGH-STRENGTH MAGNETIC MATERIALS\"]\nDescription List: [\"Both high-strength magnetic materials and flammable liquids are classified as prohibited items on aircraft\", \"High-strength magnetic materials and flammable liquids are both prohibited on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-0f1a2fe43b04e4f444e8ff2775b7ed03 b/cache/summarize_descriptions/summarize-chat-v2-0f1a2fe43b04e4f444e8ff2775b7ed03 deleted file mode 100644 index df848afcd3131c1a3a2d00e904cb80a3867c58e3..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-0f1a2fe43b04e4f444e8ff2775b7ed03 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Flammable liquids and oxidizing materials are both classified as prohibited items on aircraft. This classification indicates that the presence of these substances is not allowed due to safety concerns associated with their potential to cause fires or explosions during flight.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"FLAMMABLE LIQUIDS\", \"OXIDIZING MATERIALS\"]\nDescription List: [\"Both oxidizing materials and flammable liquids are classified as prohibited items on aircraft\", \"Oxidizing materials and flammable liquids are both classified as prohibited items on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-0f86a848db895470d557ee4cd2fa0e4d b/cache/summarize_descriptions/summarize-chat-v2-0f86a848db895470d557ee4cd2fa0e4d deleted file mode 100644 index 2d7db00806895efa25d1d95789509c89af860611..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-0f86a848db895470d557ee4cd2fa0e4d +++ /dev/null @@ -1 +0,0 @@ -{"result": "The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"COURIER SERVICE\"\nDescription List: [\"The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler.\", \"The courier service is responsible for delivering retrieved delayed baggage to the passenger's address.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-10311915319e89d6220a4cc5dcb1cea4 b/cache/summarize_descriptions/summarize-chat-v2-10311915319e89d6220a4cc5dcb1cea4 deleted file mode 100644 index a4cda9e503796ed6ba0d2b086b80ea329f7376c1..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-10311915319e89d6220a4cc5dcb1cea4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BAGGAGE CLAIMS DEPARTMENT\"\nDescription List: [\"The Baggage Claims Department is responsible for handling reports of damaged baggage and processing claims.\", \"The Baggage Claims Department processes claims related to lost or damaged baggage.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-10e71cafa3448022a511a697a85dd540 b/cache/summarize_descriptions/summarize-chat-v2-10e71cafa3448022a511a697a85dd540 deleted file mode 100644 index adccf95a028bc571fd803677e8c258466ecd909e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-10e71cafa3448022a511a697a85dd540 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Both flammable liquids and radioactive materials are classified as prohibited items on aircraft. This classification applies to both types of substances, indicating that their presence on an aircraft is not allowed due to safety concerns.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"FLAMMABLE LIQUIDS\", \"RADIOACTIVE MATERIALS\"]\nDescription List: [\"Both radioactive materials and flammable liquids are classified as prohibited items on aircraft\", \"Radioactive materials and flammable liquids are both classified as prohibited items on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-119b23f10ea2927e07ca1d18f979a2df b/cache/summarize_descriptions/summarize-chat-v2-119b23f10ea2927e07ca1d18f979a2df deleted file mode 100644 index 92bcc05ac142938dacf137d9b1a69b36724d32fa..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-119b23f10ea2927e07ca1d18f979a2df +++ /dev/null @@ -1 +0,0 @@ -{"result": "Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"WEIGHT\"\nDescription List: [\"Weight is a critical factor in determining how animals can be transported, influencing whether they travel in the cabin or as cargo.\", \"Weight is a factor in determining the cost of transporting pets, including the animal, carrying case, and food.\", \"Weight refers to the heaviness of baggage, which is a critical factor in determining if it is overweight.\", \"Weight refers to the mass of baggage, which is a critical factor in determining baggage allowances and fees.\", \"Weight refers to the mass of the baggage, which is a critical factor in determining baggage allowance and fees.\", \"Weight refers to the maximum allowable weight of sports equipment for transport, which varies by travel class.\", \"Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-15403d6d0e486ba6b6cc736f5ebb4714 b/cache/summarize_descriptions/summarize-chat-v2-15403d6d0e486ba6b6cc736f5ebb4714 deleted file mode 100644 index cee17953167a926557e7d0609bcd29b5c8e5c417..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-15403d6d0e486ba6b6cc736f5ebb4714 +++ /dev/null @@ -1 +0,0 @@ -{"result": "GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"GELS\"\nDescription List: [\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\", \"Gels are considered liquids and are subject to restrictions when carried in carry-on bags.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-18a03624b50a5847a049e6eee1891831 b/cache/summarize_descriptions/summarize-chat-v2-18a03624b50a5847a049e6eee1891831 deleted file mode 100644 index 6244b2aa346d8cfac3f3ab2b40ece47571287625..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-18a03624b50a5847a049e6eee1891831 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"MINISTRY OF HEALTH\"\nDescription List: [\"The Ministry of Health in Israel is responsible for approving the entry of animals into the country.\", \"The Ministry of Health is the authority responsible for approving the entry of animals into Israel.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-18d8f9761f7f6268fe5b796aac9ce4de b/cache/summarize_descriptions/summarize-chat-v2-18d8f9761f7f6268fe5b796aac9ce4de deleted file mode 100644 index cf28cbdf07a0665b30884f53f0c1daef495f591a..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-18d8f9761f7f6268fe5b796aac9ce4de +++ /dev/null @@ -1 +0,0 @@ -{"result": "The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CARGO TERMINAL\"\nDescription List: [\"\", \"The cargo terminal at Ben Gurion Airport is where animals transported as cargo are released.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-19241cd554a42763ff0a6a178f452c41 b/cache/summarize_descriptions/summarize-chat-v2-19241cd554a42763ff0a6a178f452c41 deleted file mode 100644 index dab0c972414274338d87570899c461fd02d521a1..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-19241cd554a42763ff0a6a178f452c41 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"9 KG\" refers to the weight limit for pets that can be transported as baggage on an aircraft. Specifically, animals weighing up to 9 kg can typically be transported in the aircraft cabin without any additional requirements.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"9 KG\"\nDescription List: [\"9 kg is the weight limit for pets to be transported as baggage without additional requirements.\", \"Animals weighing up to 9 kg can usually be transported in the aircraft cabin.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-1ad235d90d8c64ae871e1f2c4f7fee4a b/cache/summarize_descriptions/summarize-chat-v2-1ad235d90d8c64ae871e1f2c4f7fee4a deleted file mode 100644 index 18b7918867e00fc32df3b1013c62d6912ca80704..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-1ad235d90d8c64ae871e1f2c4f7fee4a +++ /dev/null @@ -1 +0,0 @@ -{"result": "The BAGGAGE is delivered to the passenger's address by the COURIER SERVICE after it has been retrieved following a delay. The COURIER SERVICE is responsible for ensuring that the delayed baggage reaches the travelers promptly after it has been located.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BAGGAGE\", \"COURIER SERVICE\"]\nDescription List: [\"Retrieved delayed baggage is delivered to the passenger's address by the courier service\", \"The courier service delivers retrieved baggage to travelers after it has been delayed\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-1e52eba46de9733e90d438191e8678df b/cache/summarize_descriptions/summarize-chat-v2-1e52eba46de9733e90d438191e8678df deleted file mode 100644 index 45aefdbe729f159a33a1827aae552337f70067ba..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-1e52eba46de9733e90d438191e8678df +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"16 KG\" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"16 KG\"\nDescription List: [\"16 kg is the maximum weight allowed for one bag as per airline policy.\", \"The maximum weight limit for one bag is 16 kg.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-1ebd6de0b1a66fcaec70be87634a8b0f b/cache/summarize_descriptions/summarize-chat-v2-1ebd6de0b1a66fcaec70be87634a8b0f deleted file mode 100644 index 0d507d3f4afb0a053ee406e5b495582501859b9e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-1ebd6de0b1a66fcaec70be87634a8b0f +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Baggage Service Center is dedicated to assisting travelers with claims related to damaged baggage. It effectively handles cases of damaged baggage reported by passengers, ensuring that their concerns are addressed and resolved in a timely manner.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BAGGAGE SERVICE CENTER\", \"DAMAGED BAGGAGE\"]\nDescription List: [\"The Baggage Service Center assists travelers with claims for damaged baggage\", \"The Baggage Service Center handles cases of damaged baggage reported by passengers\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-1f7502ca364d68965f098dfa393439a2 b/cache/summarize_descriptions/summarize-chat-v2-1f7502ca364d68965f098dfa393439a2 deleted file mode 100644 index 16b856137217149f094b708065945e5dda111d80..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-1f7502ca364d68965f098dfa393439a2 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Premium Class provides the option for transporting sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that customers can carry their sporting gear while complying with the established size and weight restrictions.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"SPORTING EQUIPMENT\", \"PREMIUM CLASS\"]\nDescription List: [\"Premium Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.\", \"Premium Class allows for the transport of sporting equipment under specific size and weight conditions\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-204b08c9bd74216357d46526cbbc497e b/cache/summarize_descriptions/summarize-chat-v2-204b08c9bd74216357d46526cbbc497e deleted file mode 100644 index 4b96f290d561a6b83d9fddfdf13e7bef84c6fd97..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-204b08c9bd74216357d46526cbbc497e +++ /dev/null @@ -1 +0,0 @@ -{"result": "The term \"Claim Status\" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CLAIM STATUS\"\nDescription List: [\"Claim status can be checked using a worldwide system by entering the lost baggage report number and last name.\", \"Claim status refers to the current state of a baggage claim, which can be checked using the lost baggage report number.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-2066f72284f6c77b6666bbbaf0c5346e b/cache/summarize_descriptions/summarize-chat-v2-2066f72284f6c77b6666bbbaf0c5346e deleted file mode 100644 index 1cea7c77898bd3d2faf384a88ac893013750da32..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-2066f72284f6c77b6666bbbaf0c5346e +++ /dev/null @@ -1 +0,0 @@ -{"result": "CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CAGE\"\nDescription List: [\"\", \"A cage is required for transporting animals, ensuring their safety and compliance with airline regulations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-207dc6ae6b90f0aabe7ec2574a2d2c36 b/cache/summarize_descriptions/summarize-chat-v2-207dc6ae6b90f0aabe7ec2574a2d2c36 deleted file mode 100644 index c27e46a6629543512c7795493aafd43218c0a373..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-207dc6ae6b90f0aabe7ec2574a2d2c36 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"277 CM\" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"277 CM\"\nDescription List: [\"277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage.\", \"277 cm is the maximum total measurement limit for sports equipment to be sent as overweight baggage.\", \"The total maximum dimensions (length + height + width) for checked baggage, including ski equipment, must not exceed 277 cm.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-209e696a28bc4da07e43dee7a407f8f3 b/cache/summarize_descriptions/summarize-chat-v2-209e696a28bc4da07e43dee7a407f8f3 deleted file mode 100644 index 9c2d979829dc4f367c382af959b961ebb69db852..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-209e696a28bc4da07e43dee7a407f8f3 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL's Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"CARGO DIVISION\"]\nDescription List: [\"EL AL's Cargo Division is responsible for handling the transportation of animals as cargo\", \"The Cargo Division of EL AL handles the transport of animals that are extra-large or unaccompanied\", \"The Cargo Division of EL AL is responsible for handling pet transportation services\", \"The Cargo Division of EL AL is responsible for handling registered cargo for pet transportation\", \"The Cargo Division of EL AL manages special requests for transporting oversized items\", \"The Cargo Division provides transport cost guidelines and policies for EL AL regarding cargo, including pets.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-21e370d5bea05863fbdb887d0a6567a6 b/cache/summarize_descriptions/summarize-chat-v2-21e370d5bea05863fbdb887d0a6567a6 deleted file mode 100644 index b5a17bb164f7b5105bd2a1af3f8776ca28524de5..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-21e370d5bea05863fbdb887d0a6567a6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft. It is essential to protect batteries from damage and short circuits during transport. Non-lithium-based batteries can be transported in the aircraft hold, but precautions must be taken to ensure their safety.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BATTERIES\"\nDescription List: [\"Batteries are classified as dangerous goods and may require special handling when boarding a flight.\", \"Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft.\", \"Batteries must be protected from damage and short circuits and can be transported in the aircraft hold if they are not lithium-based.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-2290c356add04db9f98100a4b3a95bcb b/cache/summarize_descriptions/summarize-chat-v2-2290c356add04db9f98100a4b3a95bcb deleted file mode 100644 index a2d5998e0627185acff87847ec9831f9d47c7858..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-2290c356add04db9f98100a4b3a95bcb +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"50 KG\" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"50 KG\"\nDescription List: [\"\", \"50 kg is the upper weight limit for pets to be transported as baggage with specific fees.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-25f583a999ae263e2c4c1a7e573b3e33 b/cache/summarize_descriptions/summarize-chat-v2-25f583a999ae263e2c4c1a7e573b3e33 deleted file mode 100644 index 9b045ba55a8a1d4fffd70a2ef5e8ba0b6bcbaf5c..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-25f583a999ae263e2c4c1a7e573b3e33 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"100 KG\" refers to the maximum weight limit for transporting pets as baggage. According to the provided descriptions, pets that weigh 100 kg or less can be transported in the cabin as baggage, while those exceeding this weight must be transported as registered cargo. Therefore, any animal weighing more than 100 kg is required to be transported as cargo rather than as baggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"100 KG\"\nDescription List: [\"100 kg is the maximum weight for pets to be transported as baggage; heavier pets must be transported as cargo.\", \"Animals weighing more than 100 kg must be transported as registered cargo.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-2c785a91ea5e30ec337d36b5d9099332 b/cache/summarize_descriptions/summarize-chat-v2-2c785a91ea5e30ec337d36b5d9099332 deleted file mode 100644 index 2b4be7c638a3436b9e44020c0864150390620c3c..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-2c785a91ea5e30ec337d36b5d9099332 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"FLAMMABLE MATERIAL\"\nDescription List: [\"Flammable materials such as hairspray are not allowed to be stored together with other items in baggage.\", \"Flammable materials, such as hairspray, are prohibited from being stored with electronic devices containing lithium batteries.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-2dc17624239e339e64ed7c252dce980e b/cache/summarize_descriptions/summarize-chat-v2-2dc17624239e339e64ed7c252dce980e deleted file mode 100644 index 6726dbb21095aac3edd8d1754c6c6f8f3be22eac..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-2dc17624239e339e64ed7c252dce980e +++ /dev/null @@ -1 +0,0 @@ -{"result": "Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ADDITIONAL SPORTS EQUIPMENT\"\nDescription List: [\"Additional sports equipment refers to any sports gear that exceeds the standard baggage allowance and requires special handling or fees.\", \"Additional sports equipment refers to any sports items brought beyond the standard baggage allowance.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-2e17b3268096ba39156de7b755a4d6de b/cache/summarize_descriptions/summarize-chat-v2-2e17b3268096ba39156de7b755a4d6de deleted file mode 100644 index 812d4aaf63cc93fee2768098bfb35fdeb75dc9a4..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-2e17b3268096ba39156de7b755a4d6de +++ /dev/null @@ -1 +0,0 @@ -{"result": "US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"US DOLLARS\"\nDescription List: [\"Prices for baggage fees are displayed in US dollars, although local currency may be required at some airports.\", \"US Dollars are the currency used for pricing and payment of baggage fees.\", \"US dollars are the currency used for displaying prices related to baggage fees and charges.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-2e86072a83309de6d6eed7cf8354d20f b/cache/summarize_descriptions/summarize-chat-v2-2e86072a83309de6d6eed7cf8354d20f deleted file mode 100644 index bb8546496f7d8777f6fac09cc8590f7a6a7e7450..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-2e86072a83309de6d6eed7cf8354d20f +++ /dev/null @@ -1 +0,0 @@ -{"result": "Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline's specified weight restrictions.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"OVERWEIGHT BAGGAGE\"\nDescription List: [\"Overweight baggage refers to items that exceed the standard weight limits and require special approval for transport.\", \"Overweight baggage refers to luggage that exceeds the weight limit established by airlines, often resulting in extra charges.\", \"Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which incurs additional fees.\", \"Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which may result in extra charges.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-2f9f8102018b45387aec2a920248082a b/cache/summarize_descriptions/summarize-chat-v2-2f9f8102018b45387aec2a920248082a deleted file mode 100644 index e13a5750875dfb3ae35c42d090b8b312cce83d01..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-2f9f8102018b45387aec2a920248082a +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BUSINESS CABIN\"\nDescription List: [\"The Business cabin is a section of the aircraft where animals may be transported with prior approval.\", \"The Business cabin is a section of the aircraft where pets may be transported under certain conditions.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-302db74ace855081ce2ebc2eb07a216a b/cache/summarize_descriptions/summarize-chat-v2-302db74ace855081ce2ebc2eb07a216a deleted file mode 100644 index d7fbee0a0c5a1f3b71f05cf9d32e9f9bb69c2a2f..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-302db74ace855081ce2ebc2eb07a216a +++ /dev/null @@ -1 +0,0 @@ -{"result": "LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"LITE FARES\"\nDescription List: [\"Lite fares are a type of Economy Class fare that does not allow for complimentary transport of sports equipment.\", \"Lite fares are a type of Economy Class fare that typically offers fewer services and amenities.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-3478a0299233e67c2dc971c8f48a8a47 b/cache/summarize_descriptions/summarize-chat-v2-3478a0299233e67c2dc971c8f48a8a47 deleted file mode 100644 index 58c0ba1858b8a8dcdbf6b31f289c2ba81d384270..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-3478a0299233e67c2dc971c8f48a8a47 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Ministry of Health in Israel is responsible for regulating the entry of animals into the country. This includes overseeing the necessary protocols and guidelines to ensure that animals are imported in a safe and controlled manner, thereby safeguarding public health and animal welfare.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"ISRAEL\", \"MINISTRY OF HEALTH\"]\nDescription List: [\"The Ministry of Health in Israel regulates the entry of animals into the country\", \"The Ministry of Health regulates the entry of animals into Israel\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-347b6df8adbb085e3aa89a6cb3412bd4 b/cache/summarize_descriptions/summarize-chat-v2-347b6df8adbb085e3aa89a6cb3412bd4 deleted file mode 100644 index a0816f198540cf0e80a15f614b30fa6b4f65f660..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-347b6df8adbb085e3aa89a6cb3412bd4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CHECK-IN PROCESS\"\nDescription List: [\"The check-in process is the procedure passengers go through to confirm their presence on a flight and check in their baggage.\", \"The check-in process is the procedure passengers must follow to confirm their presence on a flight and check their luggage.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-36dbcb09360d909eb39f014ef0c6d26f b/cache/summarize_descriptions/summarize-chat-v2-36dbcb09360d909eb39f014ef0c6d26f deleted file mode 100644 index 11b241d6cf0969773bc1d2457646319baea201d5..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-36dbcb09360d909eb39f014ef0c6d26f +++ /dev/null @@ -1 +0,0 @@ -{"result": "A service dog must possess a veterinary certificate, which is essential to confirm that the dog is vaccinated and fit for travel. This certificate is a requirement for the transport of service dogs, ensuring their health and safety during travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"SERVICE DOG\", \"VETERINARY CERTIFICATE\"]\nDescription List: [\"A veterinary certificate is required for a service dog to ensure it is vaccinated and fit for travel.\", \"A veterinary certificate is required for the transport of service dogs.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-37ec0bc0123fc260dfd205cb24583ed1 b/cache/summarize_descriptions/summarize-chat-v2-37ec0bc0123fc260dfd205cb24583ed1 deleted file mode 100644 index d2e7437a9619839e41ef0e87386eebf4a54bd237..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-37ec0bc0123fc260dfd205cb24583ed1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BAGGAGE SERVICE CENTER\", \"DELAYED BAGGAGE\"]\nDescription List: [\"Delayed baggage must be reported to the Baggage Service Center for assistance\", \"The Baggage Service Center handles reports and claims related to delayed baggage\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-3936050039783c0866159e5906773092 b/cache/summarize_descriptions/summarize-chat-v2-3936050039783c0866159e5906773092 deleted file mode 100644 index 3d21a9b6814c4a5a8bf9b4b592c3613bca675b85..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-3936050039783c0866159e5906773092 +++ /dev/null @@ -1 +0,0 @@ -{"result": "CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CREAMS\"\nDescription List: [\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\", \"Creams are considered liquids and are subject to restrictions when carried in carry-on bags.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-3946b029148430af780872c7dcfce442 b/cache/summarize_descriptions/summarize-chat-v2-3946b029148430af780872c7dcfce442 deleted file mode 100644 index 6167594887d40244f1d9fc200112cef0a217a3ac..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-3946b029148430af780872c7dcfce442 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A dog is an animal that may be transported by passengers under certain conditions and regulations.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DOG\"\nDescription List: [\"\", \"A dog that may be transported by passengers under certain conditions and regulations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-3cd33dd6b87162dd7cda81a8ace2ac18 b/cache/summarize_descriptions/summarize-chat-v2-3cd33dd6b87162dd7cda81a8ace2ac18 deleted file mode 100644 index 09c111d9bfddebc0f490dd80ad17dcd55e2e1921..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-3cd33dd6b87162dd7cda81a8ace2ac18 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"EL AL CARGO DIVISION\"\nDescription List: [\"The EL AL Cargo Division handles excess baggage and special requests for passengers traveling with more than five pieces of checked baggage.\", \"The EL AL Cargo Division is a service that allows passengers to transport oversized or additional baggage separately from their standard allowance.\", \"The EL AL Cargo Division provides services for transporting oversized or separately sent sports equipment as cargo.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-3ce77e72ab9da28b7c4601f89f4dfccb b/cache/summarize_descriptions/summarize-chat-v2-3ce77e72ab9da28b7c4601f89f4dfccb deleted file mode 100644 index aff2d5fee7973e1a0ab22cedd7cc1c70cf9c5bb4..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-3ce77e72ab9da28b7c4601f89f4dfccb +++ /dev/null @@ -1 +0,0 @@ -{"result": "Standard baggage refers to luggage that complies with the airline's specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"STANDARD BAGGAGE\"\nDescription List: [\"Standard baggage refers to luggage that meets the airline's size and weight requirements without incurring additional fees.\", \"Standard baggage refers to luggage that meets the airline's specified dimensions and weight limits without incurring extra charges.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-3f0f1376c11218c3aaeb6b33cd995e72 b/cache/summarize_descriptions/summarize-chat-v2-3f0f1376c11218c3aaeb6b33cd995e72 deleted file mode 100644 index 5413150049c29679bd2df9470cb825a31f28430f..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-3f0f1376c11218c3aaeb6b33cd995e72 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"SPORTING EQUIPMENT\", \"ECONOMY CLASS\"]\nDescription List: [\"Economy Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.\", \"Economy Class allows for the transport of sporting equipment under specific size and weight conditions\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-3f1378680151acf741315c2c43445c98 b/cache/summarize_descriptions/summarize-chat-v2-3f1378680151acf741315c2c43445c98 deleted file mode 100644 index d5127f0563ff4ada87e5e3f67b07ea8f35287e5a..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-3f1378680151acf741315c2c43445c98 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Sun Dor has specific policies regarding carry-on baggage for its flights.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"SUN DOR\"]\nDescription List: [\"Sun Dor has specific policies regarding carry-on baggage for its flights\", \"Sun Dor has specific policies regarding carry-on baggage for its flights.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-417bae07702bd0f49657558f8cf270e7 b/cache/summarize_descriptions/summarize-chat-v2-417bae07702bd0f49657558f8cf270e7 deleted file mode 100644 index c2c28b472c53ed208b8e968e9ddf95ba8fac5627..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-417bae07702bd0f49657558f8cf270e7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Sporting equipment is subject to specific dimensions that are critical for determining whether it can be transported as checked baggage. These dimensions play a vital role in ensuring that the equipment meets airline regulations and can be safely accommodated during travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"SPORTING EQUIPMENT\", \"DIMENSIONS\"]\nDescription List: [\"Dimensions are a critical factor in determining whether sporting equipment can be transported as checked baggage.\", \"Dimensions are critical for determining whether sporting equipment can be transported as checked baggage\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-422e79b4406bdc5c41c202be9d671816 b/cache/summarize_descriptions/summarize-chat-v2-422e79b4406bdc5c41c202be9d671816 deleted file mode 100644 index 46f3348a7a697650a833936be99040a2b56f624c..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-422e79b4406bdc5c41c202be9d671816 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Wet cell batteries are classified as a type of corrosive substance, and as such, they are prohibited on aircraft. This classification highlights the potential hazards associated with wet cell batteries, emphasizing the need for strict regulations regarding their transport in aviation settings.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CORROSIVES\", \"WET CELL BATTERIES\"]\nDescription List: [\"Wet cell batteries are a type of corrosive substance that is prohibited on aircraft\", \"Wet cell batteries are classified as corrosives and are prohibited on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-431a2e5b4910aa2f25910104c08f8384 b/cache/summarize_descriptions/summarize-chat-v2-431a2e5b4910aa2f25910104c08f8384 deleted file mode 100644 index 57f760857c28f8ad8f6a4b0e3db31640608a8ce7..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-431a2e5b4910aa2f25910104c08f8384 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"REGISTERED CARGO\"\nDescription List: [\"Registered cargo is the method of transporting animals that exceed certain weight limits.\", \"Registered cargo is used for transporting animals that are extra-large or flying unaccompanied.\", \"Registered cargo refers to animals that may be transported by the Cargo Division, especially for extra-large animals or those flying unaccompanied.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-43318ed69297f8102ce41c842e0ab262 b/cache/summarize_descriptions/summarize-chat-v2-43318ed69297f8102ce41c842e0ab262 deleted file mode 100644 index b7bc3303bd1f9feb561f1bdd7525ebdcc6481e07..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-43318ed69297f8102ce41c842e0ab262 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger's luggage exceeds the allowed limits, resulting in additional costs for the traveler.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"EXCESS BAGGAGE CHARGES\"\nDescription List: [\"Charges applied when baggage exceeds the permitted size and weight dimensions for checked baggage.\", \"Excess baggage charges are fees applied when a passenger's luggage exceeds the allowed size or weight limits.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-4371affca101de344b19f2fe0fff0516 b/cache/summarize_descriptions/summarize-chat-v2-4371affca101de344b19f2fe0fff0516 deleted file mode 100644 index 294e3300a8e8d14946a1cb79fc8f2e7a73ca9aca..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-4371affca101de344b19f2fe0fff0516 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"VETERINARY SERVICES DEPARTMENT\"\nDescription List: [\"The Veterinary Services Department determines the conditions under which animals can be transported.\", \"The Veterinary Services Department is responsible for issuing health certificates and permits for animal transport.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-44471bbb858a43b34845c0baa3458e8e b/cache/summarize_descriptions/summarize-chat-v2-44471bbb858a43b34845c0baa3458e8e deleted file mode 100644 index c053c52801c6b9d45598031405fe92b05e074bc5..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-44471bbb858a43b34845c0baa3458e8e +++ /dev/null @@ -1 +0,0 @@ -{"result": "The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"LOST BAGGAGE REPORT NUMBER\"\nDescription List: [\"The lost baggage report number is a 10-character identifier used to check the status of a claim.\", \"The lost baggage report number is a unique identifier used to check the status of a claim regarding lost baggage.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-46325292c3d91ef0339adfdbbecc7055 b/cache/summarize_descriptions/summarize-chat-v2-46325292c3d91ef0339adfdbbecc7055 deleted file mode 100644 index b9cadc6ebde7d72c4d013c80789ef8cf522ecc63..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-46325292c3d91ef0339adfdbbecc7055 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BAGGAGE POLICY\"\nDescription List: [\"Baggage policy outlines the rules and regulations regarding the number, size, and weight of baggage that passengers can check in or carry on.\", \"Baggage policy outlines the rules and regulations regarding the types, sizes, and weights of baggage that passengers can bring on flights.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-4911d14eb27281d876f064873f806a93 b/cache/summarize_descriptions/summarize-chat-v2-4911d14eb27281d876f064873f806a93 deleted file mode 100644 index 4a02498bb6fc3e7c39f8f6d1b6f73d9581dbae74..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-4911d14eb27281d876f064873f806a93 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"30 KG\" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"30 KG\"\nDescription List: [\"30 kg is the maximum weight limit for sports equipment in Economy Class.\", \"30 kg is the maximum weight limit for sports equipment in Economy and Premium Class.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-49c1b276ccf023198305bca7fb0a7434 b/cache/summarize_descriptions/summarize-chat-v2-49c1b276ccf023198305bca7fb0a7434 deleted file mode 100644 index b58d201f5fa055b164bd31201c6a9872cf38467f..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-49c1b276ccf023198305bca7fb0a7434 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"PERSONAL BAGS\"\nDescription List: [\"Personal bags are smaller bags that are stored under the seat in front of the passenger to maximize cabin space.\", \"Personal bags are smaller bags that are stored under the seat to maximize cabin space.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-4c173199ed6255ce342d2903fa6c1c67 b/cache/summarize_descriptions/summarize-chat-v2-4c173199ed6255ce342d2903fa6c1c67 deleted file mode 100644 index 49c79c393412a885c9eed42997598824d7c96247..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-4c173199ed6255ce342d2903fa6c1c67 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BAGGAGE TAG\"\nDescription List: [\"A baggage tag is a label attached to luggage that contains information about the owner and flight details, essential for tracking baggage.\", \"A baggage tag is a label attached to luggage that provides information about the owner and destination of the baggage.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-4c45e6e9b0486c9a571fbbab0a2a59f1 b/cache/summarize_descriptions/summarize-chat-v2-4c45e6e9b0486c9a571fbbab0a2a59f1 deleted file mode 100644 index 3f8739567dc79d473ef855da91f055dd7c60c17d..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-4c45e6e9b0486c9a571fbbab0a2a59f1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"VETERINARY SERVICES\"\nDescription List: [\"The Veterinary Services under the Ministry of Agriculture handle the authorization process for transporting pets.\", \"Veterinary Services at Ben Gurion Airport is responsible for issuing flight permits for transporting animals.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-4c93c47bf7739cdbbbdeca3e23516a77 b/cache/summarize_descriptions/summarize-chat-v2-4c93c47bf7739cdbbbdeca3e23516a77 deleted file mode 100644 index e09d61e8f29c891d29d9403ccc41083535c1fed0..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-4c93c47bf7739cdbbbdeca3e23516a77 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL has a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy ensures that dangerous dogs are not allowed on their flights, reflecting the airline's commitment to safety and compliance with legal regulations.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"DANGEROUS DOG\"]\nDescription List: [\"EL AL does not allow dangerous dogs to be transported\", \"EL AL has a policy that prohibits the transportation of dangerous dogs as defined by Israeli law\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-4ca72c8e19ea4052a977d116d29dad68 b/cache/summarize_descriptions/summarize-chat-v2-4ca72c8e19ea4052a977d116d29dad68 deleted file mode 100644 index 92d145e95dd99cb5e1fe393f7e67b0e5c50d75cc..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-4ca72c8e19ea4052a977d116d29dad68 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"NON-SPILLABLE WET BATTERIES\"\nDescription List: [\"Non-spillable wet batteries are limited to 12 volts and 100 watt-hours, designed to prevent leakage of electrolyte.\", \"Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-4e406ddab18e2ea0e5fb0904bdde5be1 b/cache/summarize_descriptions/summarize-chat-v2-4e406ddab18e2ea0e5fb0904bdde5be1 deleted file mode 100644 index ebc3b4ddc3ab662a4524e87db667663bdd117401..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-4e406ddab18e2ea0e5fb0904bdde5be1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"VALUABLES\"\nDescription List: [\"Valuables are items of significant worth that passengers are recommended to keep with them during the flight.\", \"Valuables refer to personal items of significant worth that should be kept accessible during flights.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5153bd059dca824abf55429194b57717 b/cache/summarize_descriptions/summarize-chat-v2-5153bd059dca824abf55429194b57717 deleted file mode 100644 index 4f20df163ce6d0d5f58a0b978f6c5d5106223727..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5153bd059dca824abf55429194b57717 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CHECK-IN COUNTERS\"\nDescription List: [\"Check-in counters are designated areas where passengers must check in for their flights.\", \"Check-in counters are the designated areas at the airport where passengers must present their documentation for traveling with a service dog.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-565a13efe565760db06572a51b4b7958 b/cache/summarize_descriptions/summarize-chat-v2-565a13efe565760db06572a51b4b7958 deleted file mode 100644 index ca703f3c49b817e58b7111c0cd360cc1ec7f3922..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-565a13efe565760db06572a51b4b7958 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL has established specific policies for transporting pets, which include weight limits and certain conditions that must be met. The airline offers services for transporting pets as cargo, and it requires specific documentation to ensure the safe and compliant travel of these animals.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"PETS\"]\nDescription List: [\"EL AL has specific policies for transporting pets, including weight limits and conditions\", \"EL AL provides services for transporting pets as cargo and requires specific documentation for their travel\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5820b8256d030bb3bba1e82864e8ebed b/cache/summarize_descriptions/summarize-chat-v2-5820b8256d030bb3bba1e82864e8ebed deleted file mode 100644 index 11fe12a7dbc7d01ea6e6759feb7f282f5f621b19..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5820b8256d030bb3bba1e82864e8ebed +++ /dev/null @@ -1 +0,0 @@ -{"result": "The claim status can be checked using the lost baggage report number provided by the airline. This report number is essential for verifying the status of a claim related to lost baggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CLAIM STATUS\", \"LOST BAGGAGE REPORT NUMBER\"]\nDescription List: [\"The claim status can be checked using the lost baggage report number provided by the airline\", \"The lost baggage report number is required to check the status of a claim\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-595dbd33c15c655125e35654aa0b892b b/cache/summarize_descriptions/summarize-chat-v2-595dbd33c15c655125e35654aa0b892b deleted file mode 100644 index 7ddcbc7196b51c023243e99b1031020c7f7d2ab5..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-595dbd33c15c655125e35654aa0b892b +++ /dev/null @@ -1 +0,0 @@ -{"result": "Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"OVERSIZED BAGGAGE\"\nDescription List: [\"Oversized baggage is luggage that exceeds the airline's standard size limits, requiring special handling and potentially incurring additional fees.\", \"Oversized baggage is luggage that exceeds the standard dimensions set by airlines, requiring special handling and potentially incurring additional fees.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-59dcf44e2174526f938b277879b54615 b/cache/summarize_descriptions/summarize-chat-v2-59dcf44e2174526f938b277879b54615 deleted file mode 100644 index ca07a598c3892966f7646ccb5a26454114ea70cf..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-59dcf44e2174526f938b277879b54615 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The term \"GUIDELINES\" refers to the regulations established by the authorities of a destination country regarding the transportation of animals, as well as updated rules concerning the carrying of liquids in carry-on bags. These guidelines are essential for ensuring compliance with safety and welfare standards during travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"GUIDELINES\"\nDescription List: [\"Guidelines set by the destination country's authorities dictate how animals must be transported.\", \"Updated guidelines that dictate the rules for carrying liquids in carry-on bags.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5b002b3ab864b0f551af93b317191039 b/cache/summarize_descriptions/summarize-chat-v2-5b002b3ab864b0f551af93b317191039 deleted file mode 100644 index 673b2896106359e41ff4f411478b472ca608a4fd..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5b002b3ab864b0f551af93b317191039 +++ /dev/null @@ -1 +0,0 @@ -{"result": "North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"NORTH AMERICA\"\nDescription List: [\"North America is a region where specific carry-on baggage policies apply for flights operated by the airline.\", \"North America is a region where specific flight policies apply, particularly regarding carry-on baggage.\", \"North America is another destination served by EL AL, with its own baggage policies.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5b057a2dcd83ab7dbd0c3a391f9b8605 b/cache/summarize_descriptions/summarize-chat-v2-5b057a2dcd83ab7dbd0c3a391f9b8605 deleted file mode 100644 index 25eb985f3b8627ecee16890819b51deef30f9ed5..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5b057a2dcd83ab7dbd0c3a391f9b8605 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION\"\nDescription List: [\"The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage after check-in.\", \"The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage for check-in.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5be960052e3242ecb0f879a40c8422a1 b/cache/summarize_descriptions/summarize-chat-v2-5be960052e3242ecb0f879a40c8422a1 deleted file mode 100644 index 74bd829287f6659ae67c1c4f3a4f95185e116219..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5be960052e3242ecb0f879a40c8422a1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Laptops are equipped with batteries that are classified as dangerous goods. As a result, these batteries must be handled with special care to ensure safety during transportation and usage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BATTERIES\", \"LAPTOP\"]\nDescription List: [\"Laptops contain batteries that are classified as dangerous goods and must be handled accordingly\", \"Laptops contain batteries, which are classified as dangerous goods and require special handling\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5d1c51d09729aef70dbca2cb88333ada b/cache/summarize_descriptions/summarize-chat-v2-5d1c51d09729aef70dbca2cb88333ada deleted file mode 100644 index 9c8fdb7631936180935c2e4f7a95fccfe4e195a4..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5d1c51d09729aef70dbca2cb88333ada +++ /dev/null @@ -1 +0,0 @@ -{"result": "OVERWEIGHT BAGGAGE and OVERSIZED BAGGAGE both necessitate special handling due to their size and weight. Additionally, travelers should be aware that both types of baggage may incur additional fees.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"OVERWEIGHT BAGGAGE\", \"OVERSIZED BAGGAGE\"]\nDescription List: [\"Both oversized and overweight baggage require special handling and may incur additional fees\", \"Both overweight and oversized baggage require special handling and may incur additional fees\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5e6087c6bfef32e636e8be18b3745d45 b/cache/summarize_descriptions/summarize-chat-v2-5e6087c6bfef32e636e8be18b3745d45 deleted file mode 100644 index e6cae39c00b303722e2aed95068d6b877482120c..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5e6087c6bfef32e636e8be18b3745d45 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Batteries are often found in medical equipment, and these batteries are classified as dangerous goods. This classification highlights the potential hazards associated with their use and disposal within the context of medical devices.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BATTERIES\", \"MEDICAL EQUIPMENT\"]\nDescription List: [\"Medical equipment may contain batteries, which are classified as dangerous goods\", \"Medical equipment may include batteries that are classified as dangerous goods\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5ea6afe21a0e3543e8ead672e5334362 b/cache/summarize_descriptions/summarize-chat-v2-5ea6afe21a0e3543e8ead672e5334362 deleted file mode 100644 index aa3a66e274e0510c5c89d23c8aa136d29ebe1fff..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5ea6afe21a0e3543e8ead672e5334362 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Alkalis are classified as corrosive substances and are prohibited on aircraft due to their hazardous nature and safety concerns.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ALKALIS\"\nDescription List: [\"Alkalis are classified as corrosive substances and are prohibited on aircraft due to safety concerns.\", \"Alkalis are classified as corrosives and are prohibited on aircraft due to their hazardous nature.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-5f5ee7442fd6c3521f03fd2c8792c655 b/cache/summarize_descriptions/summarize-chat-v2-5f5ee7442fd6c3521f03fd2c8792c655 deleted file mode 100644 index 7913b673acdafa7a0e5ec69a55b43c13454374e9..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-5f5ee7442fd6c3521f03fd2c8792c655 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"DOCUMENTS\" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DOCUMENTS\"\nDescription List: [\"Documents required for obtaining authorization to transport an animal to Israel.\", \"Necessary paperwork that passengers must have available according to their flight destination.\", \"Passengers must complete all necessary documents required for transporting animals to and from Israel.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-60242e6ad84ac2367b755f00c86d7283 b/cache/summarize_descriptions/summarize-chat-v2-60242e6ad84ac2367b755f00c86d7283 deleted file mode 100644 index ee526b3d2ec94ef03400e7221e7c94a3c4b7a2b5..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-60242e6ad84ac2367b755f00c86d7283 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL requires passengers to check in at their designated check-in counters for their flights. Additionally, pet owners must arrive at the check-in counter with their pets to make the necessary transportation arrangements for their travel on EL AL.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"CHECK-IN COUNTER\"]\nDescription List: [\"Owners must arrive at the check-in counter with their pets for transportation arrangements\", \"Passengers must check in at El Al's check-in counters for their flights\", \"Pet owners must arrive at the check-in counter with their pets for transport on EL AL\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-61c13902b0787fe9a8c25a1585de104f b/cache/summarize_descriptions/summarize-chat-v2-61c13902b0787fe9a8c25a1585de104f deleted file mode 100644 index 7c18800a2076ba4d326f8ffec0b5af5b51ff46e6..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-61c13902b0787fe9a8c25a1585de104f +++ /dev/null @@ -1 +0,0 @@ -{"result": "Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BAGGAGE\"\nDescription List: [\"\", \"Baggage refers to personal items, including pets, that passengers can take on board the aircraft.\", \"Baggage refers to the category under which animals can be transported in the aircraft cabin or hold.\", \"Baggage refers to the items that passengers check in for their flight, which can be delayed, damaged, or lost.\", \"Baggage refers to the personal belongings that travelers take with them on a journey, which can be delayed, damaged, or lost during transit.\", \"Baggage refers to the suitcases and items that passengers check in for their flights, which can be lost, damaged, or delayed.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-638d51afe9cccba3a474814ebf7562d4 b/cache/summarize_descriptions/summarize-chat-v2-638d51afe9cccba3a474814ebf7562d4 deleted file mode 100644 index 28229857ee981f2633edd8a3e25faecf8ee7d450..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-638d51afe9cccba3a474814ebf7562d4 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Business Class passengers are entitled to specific carry-on baggage allowances.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BUSINESS CLASS\", \"CARRY-ON BAGGAGE\"]\nDescription List: [\"Business Class passengers are entitled to specific carry-on baggage allowances\", \"Business Class passengers are entitled to specific carry-on baggage allowances.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-64820d7e55492df0e80f37be7804f5c9 b/cache/summarize_descriptions/summarize-chat-v2-64820d7e55492df0e80f37be7804f5c9 deleted file mode 100644 index c47729e1624bba17c76eab72c227a00badfb1136..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-64820d7e55492df0e80f37be7804f5c9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"MINISTRY OF AGRICULTURE\", \"EL AL\"]\nDescription List: [\"EL AL must comply with the regulations set by the Ministry of Agriculture regarding pet transportation\", \"The Ministry of Agriculture oversees the transport of pets, which includes regulations that EL AL must follow for pet transportation\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-64a3c6f283ed4389b591679c0f1c1f2c b/cache/summarize_descriptions/summarize-chat-v2-64a3c6f283ed4389b591679c0f1c1f2c deleted file mode 100644 index 1c48bc2b5fd3cecd9cb59b33a5fe7c3649a1634f..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-64a3c6f283ed4389b591679c0f1c1f2c +++ /dev/null @@ -1 +0,0 @@ -{"result": "Sun Dor is an airline that operates flights with specific carry-on baggage policies.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"SUN DOR\"\nDescription List: [\"Sun Dor is an airline that operates flights allowing specific carry-on baggage policies.\", \"Sun Dor is an airline that operates flights with specific carry-on baggage policies.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-6570a243f05b81a5abf18a13419c0d5d b/cache/summarize_descriptions/summarize-chat-v2-6570a243f05b81a5abf18a13419c0d5d deleted file mode 100644 index 2437a49dd6703cccfbedb01701d9ecfc707a4c07..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-6570a243f05b81a5abf18a13419c0d5d +++ /dev/null @@ -1 +0,0 @@ -{"result": "Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"OVERHEAD COMPARTMENTS\"\nDescription List: [\"Overhead compartments are storage areas above passenger seats where carry-on bags must be placed during the flight.\", \"Overhead compartments are storage areas in the passenger cabin where carry-on bags are placed during the flight.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-6751f817483ce22c45b293c90ca2fc0c b/cache/summarize_descriptions/summarize-chat-v2-6751f817483ce22c45b293c90ca2fc0c deleted file mode 100644 index 55476fb6271f50dcdc73ce29ce37ddd78278f872..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-6751f817483ce22c45b293c90ca2fc0c +++ /dev/null @@ -1 +0,0 @@ -{"result": "Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DANGEROUS DOG\"\nDescription List: [\"Dangerous dogs, as defined by Israeli law, are not approved for transportation.\", \"Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-6b5e911342b281461efe0f2c52fb91c6 b/cache/summarize_descriptions/summarize-chat-v2-6b5e911342b281461efe0f2c52fb91c6 deleted file mode 100644 index 6e08a28d98f0173dd27f99842f59167ff8aa32df..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-6b5e911342b281461efe0f2c52fb91c6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"SERVICE DOG\"\nDescription List: [\"A service dog is a trained animal that assists passengers with disabilities and must meet specific requirements for air travel.\", \"Service dogs are exempt from certain weight limits when transported in the cabin.\", \"Service dogs are exempt from the weight limit for transporting pets in the cabin of the aircraft.\", \"Service dogs can accompany passengers with special needs or military personnel and must meet specific requirements for transport.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-6b7e5ecf013c3a17763463af1e943509 b/cache/summarize_descriptions/summarize-chat-v2-6b7e5ecf013c3a17763463af1e943509 deleted file mode 100644 index cb7e3d4cd0e37ee5065b02abddbaafdf217d8f42..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-6b7e5ecf013c3a17763463af1e943509 +++ /dev/null @@ -1 +0,0 @@ -{"result": "CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"CHECKED LUGGAGE\"]\nDescription List: [\"Checked luggage is an alternative to carry-on baggage for passengers who need to transport larger items.\", \"Checked luggage is different from carry-on baggage, which is allowed in the passenger cabin\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-6d91dc0af2eab8b859f7d934bac74f1c b/cache/summarize_descriptions/summarize-chat-v2-6d91dc0af2eab8b859f7d934bac74f1c deleted file mode 100644 index 72be0f56485b7de39baedcd1809de3a0438820cd..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-6d91dc0af2eab8b859f7d934bac74f1c +++ /dev/null @@ -1 +0,0 @@ -{"result": "A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"TROLLEY\"\nDescription List: [\"A trolley is a type of carry-on bag that can be stored in the overhead compartments of an aircraft.\", \"Trolleys are a type of carry-on bag that passengers can bring into the passenger cabin.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-6e27cbbbd4871c4ebd1effae7d53f70c b/cache/summarize_descriptions/summarize-chat-v2-6e27cbbbd4871c4ebd1effae7d53f70c deleted file mode 100644 index 8dc7e99b3fd9d0a8b040218f682dbac51e97c36e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-6e27cbbbd4871c4ebd1effae7d53f70c +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"SERVICE DOG\"]\nDescription List: [\"EL AL allows service dogs to be transported without the weight limit that applies to other pets\", \"EL AL has specific policies regarding the transportation of service dogs, including requirements for documentation and behavior during the flight.\", \"Service dogs are allowed to be transported under different conditions than other pets on EL AL\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-72f33753590de42c4069a6bf552aac0d b/cache/summarize_descriptions/summarize-chat-v2-72f33753590de42c4069a6bf552aac0d deleted file mode 100644 index 8064e2534782a7e270640c85243acb1a1e4a50cc..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-72f33753590de42c4069a6bf552aac0d +++ /dev/null @@ -1 +0,0 @@ -{"result": "Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane's cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CHECKED BAGS\"\nDescription List: [\"Checked bags are items that are not taken on board the aircraft but are stored in the plane's cargo hold.\", \"Checked bags are pieces of luggage that are transported in the cargo hold of an aircraft, as opposed to being carried into the cabin.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-748169c38f6249ff2c238b226e07828b b/cache/summarize_descriptions/summarize-chat-v2-748169c38f6249ff2c238b226e07828b deleted file mode 100644 index f2e5480fa8a432513fed4e42638441e29f92bdca..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-748169c38f6249ff2c238b226e07828b +++ /dev/null @@ -1 +0,0 @@ -{"result": "Wet cell batteries are classified as corrosive substances, which makes them hazardous in nature. Due to this classification, they are prohibited on aircraft to ensure safety during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"WET CELL BATTERIES\"\nDescription List: [\"Wet cell batteries are classified as corrosive substances and are prohibited on aircraft.\", \"Wet cell batteries are classified as corrosives and are prohibited on aircraft due to their hazardous nature.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-750427605239d70216461924d1a84f57 b/cache/summarize_descriptions/summarize-chat-v2-750427605239d70216461924d1a84f57 deleted file mode 100644 index 95277c31d78bad222df5caebd0dfa9d77a1fd9dd..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-750427605239d70216461924d1a84f57 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"PET\"\nDescription List: [\"Pets such as dogs, cats, and exotic birds can be transported in the cabin or as checked baggage under specific conditions.\", \"Pets such as dogs, cats, and exotic birds can be transported in the passenger cabin based on size, weight, and permits.\", \"Pets, including dogs, cats, and exotic birds, can be transported under specific conditions and weight limits.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-77f75bd9db2b217fbfe3f22ac2179ffb b/cache/summarize_descriptions/summarize-chat-v2-77f75bd9db2b217fbfe3f22ac2179ffb deleted file mode 100644 index f6828470f790cc7a49f383a4dfdd3ba021c3dbd6..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-77f75bd9db2b217fbfe3f22ac2179ffb +++ /dev/null @@ -1 +0,0 @@ -{"result": "The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"$90\"\nDescription List: [\"\", \"The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-7932b17c282bb3047ee0dcae55e0ef99 b/cache/summarize_descriptions/summarize-chat-v2-7932b17c282bb3047ee0dcae55e0ef99 deleted file mode 100644 index 79e232bb9357f66981890055300d1c5b1fe40f6f..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-7932b17c282bb3047ee0dcae55e0ef99 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The \"CONTACT DETAILS\" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CONTACT DETAILS\"\nDescription List: [\"Contact details include phone numbers and WhatsApp chat options for reporting baggage issues.\", \"Contact details provide information on how travelers can reach the Baggage Service Center for assistance with baggage issues.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-79e1e8833eb12c06c991e7fd92734506 b/cache/summarize_descriptions/summarize-chat-v2-79e1e8833eb12c06c991e7fd92734506 deleted file mode 100644 index 1c7f2fb41552a33f88a91687e43ed002b2e46867..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-79e1e8833eb12c06c991e7fd92734506 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The term \"PASSENGER\" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline's baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline's policies regarding baggage and services, ensuring a standardized travel experience.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"PASSENGER\"\nDescription List: [\"A person traveling on the airline who may bring a dog on board under specific conditions.\", \"Individuals traveling on EL AL flights who must comply with baggage regulations.\", \"Refers to individuals who travel on flights and are subject to airline policies regarding baggage and services.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-7a6facc356af92dcb1fca5eafc7d23bc b/cache/summarize_descriptions/summarize-chat-v2-7a6facc356af92dcb1fca5eafc7d23bc deleted file mode 100644 index d47b5ac1edee66c8968719c72837bdfd72ec34e6..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-7a6facc356af92dcb1fca5eafc7d23bc +++ /dev/null @@ -1 +0,0 @@ -{"result": "CARRY-ON BAGGAGE and PERSONAL BAGS are closely related concepts in air travel. Personal bags are classified as a type of carry-on baggage, specifically designed to be stored under the seat in front of the passenger. This allows for easy access during the flight while adhering to airline regulations regarding carry-on items.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"PERSONAL BAGS\"]\nDescription List: [\"Personal bags are a type of carry-on baggage that can be stored under the seat\", \"Personal bags are a type of carry-on baggage that can be stored under the seat in front of the passenger.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-802f4af812385e1fa35428dfb1392802 b/cache/summarize_descriptions/summarize-chat-v2-802f4af812385e1fa35428dfb1392802 deleted file mode 100644 index 30df75016e6ebc3576dc7452a300874d4d3d1800..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-802f4af812385e1fa35428dfb1392802 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Economy Class passengers are entitled to specific carry-on baggage allowances.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"ECONOMY CLASS\", \"CARRY-ON BAGGAGE\"]\nDescription List: [\"Economy Class passengers are entitled to specific carry-on baggage allowances\", \"Economy Class passengers are entitled to specific carry-on baggage allowances.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-8048078f699c5d79a24dab6f9fda5ff7 b/cache/summarize_descriptions/summarize-chat-v2-8048078f699c5d79a24dab6f9fda5ff7 deleted file mode 100644 index a8153540c9a381f25cf6495f3ae99d4e2940266b..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-8048078f699c5d79a24dab6f9fda5ff7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"VALUABLE ITEM\"\nDescription List: [\"Valuable items are high-value belongings that may require special consideration or insurance when traveling.\", \"Valuable items are those that have significant monetary or sentimental value, and EL AL does not take responsibility for them.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-8099228bba7679c85ef75354bc93e026 b/cache/summarize_descriptions/summarize-chat-v2-8099228bba7679c85ef75354bc93e026 deleted file mode 100644 index 1f9053dc56f3d132409feec15942bd6ef375e311..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-8099228bba7679c85ef75354bc93e026 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Business Class provides the option for transporting sporting equipment, adhering to specific size and weight conditions that differ from those in Economy and Premium Class. This class has distinct weight limits for sporting equipment, allowing for a more accommodating experience for travelers with such items.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"SPORTING EQUIPMENT\", \"BUSINESS CLASS\"]\nDescription List: [\"Business Class allows for the transport of sporting equipment under specific size and weight conditions\", \"Business Class allows for the transport of sporting equipment with different weight limits compared to Economy and Premium Class.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-81da52397f31e6eb963ff56c65d6d88d b/cache/summarize_descriptions/summarize-chat-v2-81da52397f31e6eb963ff56c65d6d88d deleted file mode 100644 index 531827f70d69fa62436796abcafad1538a300ddb..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-81da52397f31e6eb963ff56c65d6d88d +++ /dev/null @@ -1 +0,0 @@ -{"result": "ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ARTY RIMON\"\nDescription List: [\"ARTY Rimon is a service provider that offers pickup and delivery services for baggage.\", \"ARTY Rimon provides pickup and delivery services for luggage and bags in various locations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-827f501fe84a8834f9370bfb908d4300 b/cache/summarize_descriptions/summarize-chat-v2-827f501fe84a8834f9370bfb908d4300 deleted file mode 100644 index d3e8d8498e979039055d35d28f2c8ee4f90d1be8..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-827f501fe84a8834f9370bfb908d4300 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CERTIFICATE OF GOOD HEALTH\"\nDescription List: [\"A certificate of good health is necessary for transporting pets to ensure they are fit for travel.\", \"A certificate of good health is required for pets being transported.\", \"A document required to ensure the animal is healthy before transport.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-835602b2ea40d8e58790c78bfb5259bb b/cache/summarize_descriptions/summarize-chat-v2-835602b2ea40d8e58790c78bfb5259bb deleted file mode 100644 index e50ebb6f3627d2b0747a6733f4f9b6ca44308b11..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-835602b2ea40d8e58790c78bfb5259bb +++ /dev/null @@ -1 +0,0 @@ -{"result": "Explosives, other than light ammunition, are strictly prohibited on aircraft for safety reasons. This regulation is in place to ensure the safety of passengers and crew during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"EXPLOSIVES\"\nDescription List: [\"Explosives, other than light ammunition, are forbidden on aircraft for safety reasons.\", \"Explosives, other than light ammunition, are prohibited on aircraft.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-84a41d2c27d7b66c91987766a82f1ac1 b/cache/summarize_descriptions/summarize-chat-v2-84a41d2c27d7b66c91987766a82f1ac1 deleted file mode 100644 index 0073f27f932dfad3e005c423c7d145bb32b9055a..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-84a41d2c27d7b66c91987766a82f1ac1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The terms \"CHECKED BAGGAGE\" and \"BAGGAGE ALLOWANCE\" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CHECKED BAGGAGE\", \"BAGGAGE ALLOWANCE\"]\nDescription List: [\"Baggage allowance determines how much checked baggage a passenger can bring\", \"Baggage allowance includes provisions for checked baggage that passengers can take on flights.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-84dff412d94764a17a1f964f202ab4a0 b/cache/summarize_descriptions/summarize-chat-v2-84dff412d94764a17a1f964f202ab4a0 deleted file mode 100644 index 25660b67058b7ae258fa15cbb611909689f9067c..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-84dff412d94764a17a1f964f202ab4a0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Laptops are portable computing devices that may be considered dangerous goods due to the presence of lithium batteries. These batteries require special handling and must be managed in accordance with airline regulations to ensure safety during transport.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"LAPTOP\"\nDescription List: [\"Laptops may be considered dangerous goods due to their lithium batteries and require special handling.\", \"Laptops may contain batteries that are classified as dangerous goods and must be handled according to airline regulations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-85c479a98fb67136aa1261e589174c8a b/cache/summarize_descriptions/summarize-chat-v2-85c479a98fb67136aa1261e589174c8a deleted file mode 100644 index 99e17e6a43f87819da57507ef71974ad08bcffca..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-85c479a98fb67136aa1261e589174c8a +++ /dev/null @@ -1 +0,0 @@ -{"result": "Radioactive materials are strictly forbidden on aircraft due to significant safety and health risks. This prohibition is enforced to ensure the safety of passengers and crew, as the presence of radioactive materials poses potential hazards during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"RADIOACTIVE MATERIALS\"\nDescription List: [\"Radioactive materials are forbidden on aircraft due to safety and health risks.\", \"Radioactive materials are prohibited on aircraft for safety reasons.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-88dc65f420bd4e8c29b2cfb86c1b4424 b/cache/summarize_descriptions/summarize-chat-v2-88dc65f420bd4e8c29b2cfb86c1b4424 deleted file mode 100644 index c2d78afb8587269ac0d578a32429aa54953d4771..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-88dc65f420bd4e8c29b2cfb86c1b4424 +++ /dev/null @@ -1 +0,0 @@ -{"result": "\"DANGEROUS GOOD\" refers to items that pose a risk to health, safety, property, or the environment. These goods are subject to strict regulations to ensure safe handling, transportation, and disposal, reflecting their potential hazards.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DANGEROUS GOOD\"\nDescription List: [\"\", \"Dangerous goods are items that pose a risk to health, safety, property, or the environment and are subject to strict regulations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-891829713fd9c9d8ce553d4d74399694 b/cache/summarize_descriptions/summarize-chat-v2-891829713fd9c9d8ce553d4d74399694 deleted file mode 100644 index e8843e2a4de8d823715ceb58287569f93ebcda68..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-891829713fd9c9d8ce553d4d74399694 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"SPARE BATTERIES\"\nDescription List: [\"\", \"Spare batteries must be protected from damage and short circuit when taken aboard an aircraft.\", \"Spare lithium batteries are prohibited in checked baggage and must be protected when carried in the cabin.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-8b79d7c44efe90ea32987abf2eb2934a b/cache/summarize_descriptions/summarize-chat-v2-8b79d7c44efe90ea32987abf2eb2934a deleted file mode 100644 index 8d6eaa9728ab34a662f2e441eed674a203fc55da..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-8b79d7c44efe90ea32987abf2eb2934a +++ /dev/null @@ -1 +0,0 @@ -{"result": "A flight is a journey made by an aircraft from one airport to another, encompassing various aspects of air travel. It involves specific baggage policies that passengers must adhere to, as well as regulations regarding the transportation of liquids. Additionally, the term \"flight\" also refers to the duration during which pets are transported, either in the cabin or in the cargo hold of the aircraft. Overall, a flight represents a comprehensive travel experience that includes considerations for luggage, pet transport, and compliance with aviation regulations.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"FLIGHT\"\nDescription List: [\"A flight is a journey made by an aircraft from one airport to another, subject to specific baggage policies.\", \"The flight refers to the duration during which pets are transported in the cabin or cargo.\", \"Traveling by air, which is subject to regulations regarding the carrying of liquids.)<|COMPLETE|>\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-8c42b2f69ffd940839f98c04165948a9 b/cache/summarize_descriptions/summarize-chat-v2-8c42b2f69ffd940839f98c04165948a9 deleted file mode 100644 index 22fc4ddcddc5acaac25a60eee28687c9236df73e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-8c42b2f69ffd940839f98c04165948a9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Ministry of Agriculture requires authorization for the transportation of animals. This authorization is a necessary document for compliance with regulations governing animal transport. Without this authorization, individuals or entities are not permitted to transport animals legally.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"MINISTRY OF AGRICULTURE\", \"AUTHORIZATION\"]\nDescription List: [\"Authorization is required from the Ministry of Agriculture to transport an animal\", \"The Ministry of Agriculture requires authorization for transporting animals, which is a necessary document for compliance\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-8cd0e28244005e0628dd63a93c6b1ab1 b/cache/summarize_descriptions/summarize-chat-v2-8cd0e28244005e0628dd63a93c6b1ab1 deleted file mode 100644 index 89d7050028e1b42ebbc6a6c536e517463ebded95..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-8cd0e28244005e0628dd63a93c6b1ab1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CARGO DIVISION\"\nDescription List: [\"The Cargo Division is responsible for managing transport costs and guidelines for cargo, including pets.\", \"The Cargo Division of EL AL handles special requests and approvals for transporting oversized or special items.\", \"The Cargo Division of EL AL handles the transportation of animals as cargo.\", \"The Cargo Division of EL AL handles the transportation of pets as cargo and requires specific documentation for this service.\", \"The Cargo Division of EL AL is responsible for handling the transportation of animals as registered cargo.\", \"The Cargo Division of EL AL is responsible for transporting animals that are extra-large or flying unaccompanied.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-902b43143ad71b4d2417e5b85c54c6a3 b/cache/summarize_descriptions/summarize-chat-v2-902b43143ad71b4d2417e5b85c54c6a3 deleted file mode 100644 index 4113248c9440c17a4224475483843ce1cd67f44e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-902b43143ad71b4d2417e5b85c54c6a3 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BAGGAGE SERVICE CENTER\"\nDescription List: [\"The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board, providing assistance to travelers.\", \"The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-91144232336b6c4242dd5a8eb7fafe1d b/cache/summarize_descriptions/summarize-chat-v2-91144232336b6c4242dd5a8eb7fafe1d deleted file mode 100644 index 8e35bcbbf3900abfc45934ca8d6b310d161177d0..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-91144232336b6c4242dd5a8eb7fafe1d +++ /dev/null @@ -1 +0,0 @@ -{"result": "Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CHECKED BAGGAGE\"\nDescription List: [\"\", \"Checked baggage is a method of transporting animals in certain instances, such as large animals.\", \"Checked baggage refers to animals that must be transported in the luggage compartment of the aircraft in certain instances, such as large animals.\", \"Checked baggage refers to luggage that is checked in at the airport and transported in the cargo hold of the aircraft.\", \"Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin by the passenger.\", \"Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, subject to size and weight restrictions.\", \"Checked baggage refers to luggage that is transported in the cargo hold of the aircraft, including sporting equipment under certain conditions.\", \"Checked baggage refers to the luggage that passengers check in at the airport, which is transported in the cargo hold of the aircraft.\", \"Checked baggage refers to the luggage that passengers check in before boarding the flight.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-91952cdf2d2710a8be89da1732bed556 b/cache/summarize_descriptions/summarize-chat-v2-91952cdf2d2710a8be89da1732bed556 deleted file mode 100644 index 64bda0caabcbc29b13528a5b71bbdb7200270bf4..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-91952cdf2d2710a8be89da1732bed556 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The \"FORGOTTEN ITEM\" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"FORGOTTEN ITEM\"\nDescription List: [\"A forgotten item is a personal belonging left on board an aircraft that may need to be reported to the airline for recovery.\", \"An item forgotten on board refers to personal belongings left behind by passengers on the aircraft.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-91b5cc5511a2ab35475fe2e4bbee57ae b/cache/summarize_descriptions/summarize-chat-v2-91b5cc5511a2ab35475fe2e4bbee57ae deleted file mode 100644 index fe08cd921232f97ed95eb91279cfbcd16bad0742..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-91b5cc5511a2ab35475fe2e4bbee57ae +++ /dev/null @@ -1 +0,0 @@ -{"result": "Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BEN GURION AIRPORT\"\nDescription List: [\"Ben Gurion Airport is the airport in Israel where animals are released after transport.\", \"Ben Gurion Airport is the main airport in Israel where animals must be authorized for transport.\", \"Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-91deec95ea7fb3174f2ab44474a2f440 b/cache/summarize_descriptions/summarize-chat-v2-91deec95ea7fb3174f2ab44474a2f440 deleted file mode 100644 index c37887efb962a1b46552746b2641d0164408dbe3..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-91deec95ea7fb3174f2ab44474a2f440 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Oxidizing materials, including substances like hydrogen peroxide and bleaching powders, are prohibited on aircraft due to their reactive nature. This restriction is in place to ensure safety during air travel, as these materials can pose significant risks.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"OXIDIZING MATERIALS\"\nDescription List: [\"Oxidizing materials like hydrogen peroxide are prohibited on aircraft due to their reactive nature.\", \"Oxidizing materials such as hydrogen peroxide and bleaching powders are prohibited on aircraft.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-91f678301b0dfd1e568435da0a49b8ce b/cache/summarize_descriptions/summarize-chat-v2-91f678301b0dfd1e568435da0a49b8ce deleted file mode 100644 index 716383ab9787cc35f3d55c8736b08b84ecf6c519..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-91f678301b0dfd1e568435da0a49b8ce +++ /dev/null @@ -1 +0,0 @@ -{"result": "Medical equipment may contain batteries or other components that are classified as dangerous goods. This includes various types of medical devices and instruments that, due to their components, require careful handling and adherence to safety regulations.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"MEDICAL EQUIPMENT\"\nDescription List: [\"Medical equipment may contain batteries or other components classified as dangerous goods.\", \"Medical equipment may include batteries and other components that are classified as dangerous goods.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-91f8109f81e3b8e872db399d9aaf1b22 b/cache/summarize_descriptions/summarize-chat-v2-91f8109f81e3b8e872db399d9aaf1b22 deleted file mode 100644 index 1c82e419a9a92409582249581507435778d83353..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-91f8109f81e3b8e872db399d9aaf1b22 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A trolley is a specific type of carry-on baggage that passengers can bring into the cabin and can be stored in overhead compartments.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"TROLLEY\"]\nDescription List: [\"A trolley is a specific type of carry-on baggage that can be stored in overhead compartments\", \"Trolleys are a specific type of carry-on baggage that passengers can bring into the cabin.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-9206f5460cab795b4bc68ec350ca7e75 b/cache/summarize_descriptions/summarize-chat-v2-9206f5460cab795b4bc68ec350ca7e75 deleted file mode 100644 index a37b6db5f42131eeb83ed3646572ebb6507200db..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-9206f5460cab795b4bc68ec350ca7e75 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The term \"FRAGILE ITEM\" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"FRAGILE ITEM\"\nDescription List: [\"Fragile items are those that can easily break or be damaged during transport, and EL AL does not take responsibility for them.\", \"Fragile items are those that require special handling due to their delicate nature, often needing additional protection during transport.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-99cdd7be2b8e311a494b6c9d2c60f498 b/cache/summarize_descriptions/summarize-chat-v2-99cdd7be2b8e311a494b6c9d2c60f498 deleted file mode 100644 index 40ec3bf38548d3ff8c2f029ea66bf8dce1336c72..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-99cdd7be2b8e311a494b6c9d2c60f498 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"LOCAL CURRENCY\"\nDescription List: [\"At some airports, payment for baggage fees is only allowed in local currency according to the conversion rate on the date of payment.\", \"Local currency refers to the currency accepted at specific airports for payment of fees, which may vary by location.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-9ad84ffc918e67373ee21a9b9339c0d8 b/cache/summarize_descriptions/summarize-chat-v2-9ad84ffc918e67373ee21a9b9339c0d8 deleted file mode 100644 index b728690dbe6748ab22c5324027196f95676571ad..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-9ad84ffc918e67373ee21a9b9339c0d8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"MEDICATIONS\"\nDescription List: [\"Medications are essential items that passengers are advised to keep accessible during flights.\", \"Medications are items that passengers are advised to keep accessible during the flight for health reasons.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-9cae3d7c0991b975d0f0279601131a23 b/cache/summarize_descriptions/summarize-chat-v2-9cae3d7c0991b975d0f0279601131a23 deleted file mode 100644 index 1d56bcbdc94b51c75c222229be99caacc88d1e37..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-9cae3d7c0991b975d0f0279601131a23 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BABY FOOD\"\nDescription List: [\"A type of liquid that may be carried in carry-on bags, subject to restrictions.\", \"Baby food is a special item that does not have to be packed in the resealable plastic bag but must be presented at the security checkpoint.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-9feefbc89266029a5edb3a98f94f0eea b/cache/summarize_descriptions/summarize-chat-v2-9feefbc89266029a5edb3a98f94f0eea deleted file mode 100644 index b7f7c86472b656348788ef83a901ec5c318885cb..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-9feefbc89266029a5edb3a98f94f0eea +++ /dev/null @@ -1 +0,0 @@ -{"result": "Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ECONOMY CLASS\"\nDescription List: [\"Economy Class is a travel class that allows complimentary transport of sports equipment under certain conditions, excluding Lite fares.\", \"Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.\", \"Economy Class is a travel class that offers standard services and amenities for passengers, excluding Lite fares.\", \"Economy class is a travel class offered by airlines, typically providing basic services and lower fares compared to higher classes.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a009faaa9902ccc781ab3c9951429a9e b/cache/summarize_descriptions/summarize-chat-v2-a009faaa9902ccc781ab3c9951429a9e deleted file mode 100644 index 7e295fe50a9062f8d9c343c5f8904f0314858d2f..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a009faaa9902ccc781ab3c9951429a9e +++ /dev/null @@ -1 +0,0 @@ -{"result": "The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"SECURITY CHECKPOINT\"\nDescription List: [\"Location where liquids that exceed the permitted amount will be discarded.\", \"Location where passengers must present their carry-on items, including liquids, for inspection before boarding.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a11dff30ee0e94d25a3076ceeac7d0f6 b/cache/summarize_descriptions/summarize-chat-v2-a11dff30ee0e94d25a3076ceeac7d0f6 deleted file mode 100644 index e9fe95ba4c3f1bdca1710c145d2e1115ff544450..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a11dff30ee0e94d25a3076ceeac7d0f6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"AIRLINE\"\nDescription List: [\"An airline is a company that provides air transport services for passengers and cargo.\", \"Refers to the various airlines that operate flights and their associated baggage policies.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a1d99221c469c2dc0f7d7a0f43b19741 b/cache/summarize_descriptions/summarize-chat-v2-a1d99221c469c2dc0f7d7a0f43b19741 deleted file mode 100644 index 830515acf8a8b5d5988d31df93819f1497327c39..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a1d99221c469c2dc0f7d7a0f43b19741 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline's liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"EL AL\"\nDescription List: [\"Airline that states it is not responsible for any liquids confiscated from passengers at the airport.\", \"EL AL is an airline that has specific policies regarding the transportation of dogs on its flights.\", \"EL AL is an airline that has specific policies regarding the transportation of pets, including restrictions on certain breeds and weight limits.\", \"EL AL is an airline that has specific policies regarding the transportation of pets.\", \"EL AL is an airline that has specific policies regarding the transportation of service dogs on flights.\", \"EL AL is an airline that has specific regulations regarding the transport of baggage, including special items like ski equipment and bicycles.\", \"EL AL is an airline that operates flights allowing specific carry-on baggage policies.\", \"EL AL is an airline that operates flights and has specific baggage policies and allowances for passengers.\", \"EL AL is an airline that operates flights and has specific regulations regarding battery-powered mobility aids.\", \"EL AL is an airline that operates flights with specific carry-on baggage policies.\", \"EL AL is an airline that provides baggage check-in services and has specific baggage policies for different travel classes.\", \"EL AL is an airline that provides guidelines for transporting pets and service dogs on flights.\", \"EL AL is an airline that provides guidelines for traveling with battery-powered mobility aids and hazardous materials.\", \"EL AL is an airline that provides services for transporting pets as cargo and requires specific documentation for pet travel.\", \"EL AL is an airline that provides services for transporting pets as cargo or baggage.\", \"EL AL is an airline that provides services related to baggage handling and claims for delayed or damaged baggage.\", \"EL AL is an airline that provides services related to baggage handling and claims.\", \"EL AL is an airline that provides transport services and has specific guidelines regarding passenger equipment and liability for fragile or valuable items.\", \"EL AL is an airline that shares similar baggage policies with Sundor, particularly regarding checked baggage allowances.\", \"EL AL is the airline providing specific guidelines for transporting sporting equipment and other baggage types.\", \"EL AL is the airline that provides services for transporting animals in various classes of the aircraft.\", \"El Al is an airline known for its baggage policies, which are similar to those of Sundor.\", \"El Al is an airline that has specific baggage policies regarding carry-on and personal bags.\", \"El Al is an airline that requires passengers to check in at their counters regardless of luggage when returning to Israel from abroad.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a5755bd801cc9bbf075461dc66edffa9 b/cache/summarize_descriptions/summarize-chat-v2-a5755bd801cc9bbf075461dc66edffa9 deleted file mode 100644 index 49558011a40327079fde015b5092de0b319c5daa..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a5755bd801cc9bbf075461dc66edffa9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Sporting equipment encompasses a variety of gear used for various sports activities. Within this category, additional sports equipment specifically refers to any extra gear that necessitates special handling or can be transported beyond the standard baggage allowance. This includes items that exceed the typical limits set for standard baggage, ensuring that athletes and sports enthusiasts can carry the necessary equipment for their activities without restrictions.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"SPORTING EQUIPMENT\", \"ADDITIONAL SPORTS EQUIPMENT\"]\nDescription List: [\"Additional sports equipment refers to any extra gear that requires special handling beyond the standard allowance\", \"Additional sports equipment refers to items that can be transported beyond the standard baggage allowance.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a64e1481108a089bb1b35622f016fdf5 b/cache/summarize_descriptions/summarize-chat-v2-a64e1481108a089bb1b35622f016fdf5 deleted file mode 100644 index 8009aa616680e5253429b48d882cb82265ef681f..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a64e1481108a089bb1b35622f016fdf5 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"9KG\" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"9KG\"\nDescription List: [\"The weight limit for pets transported in the cabin, including the cage, is 9kg, except for service dogs.\", \"The weight limit for pets transported in the cabin, including the cage, is 9kg.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a70274ae165c1ead6033028f3070076d b/cache/summarize_descriptions/summarize-chat-v2-a70274ae165c1ead6033028f3070076d deleted file mode 100644 index 944118584a0012ce49b24d048784e22bafac970d..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a70274ae165c1ead6033028f3070076d +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Economy Class includes a category known as Lite Fares, which are characterized by certain restrictions and limited services. Specifically, Lite Fares impose limitations on the transport of sporting equipment, differentiating them from standard Economy Class offerings. These fares are designed to provide a more economical option for travelers while offering fewer amenities compared to regular Economy Class fares.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"ECONOMY CLASS\", \"LITE FARES\"]\nDescription List: [\"Lite fares are a restriction within Economy Class that affects the transport of sporting equipment.\", \"Lite fares are a subset of Economy Class fares that offer limited services\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a71a2389713e85621612b8ff10b910fb b/cache/summarize_descriptions/summarize-chat-v2-a71a2389713e85621612b8ff10b910fb deleted file mode 100644 index 47c914e19c947dc02ea13d2056d6f705db224fdf..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a71a2389713e85621612b8ff10b910fb +++ /dev/null @@ -1 +0,0 @@ -{"result": "Corrosives, which include substances such as acids and wet cell batteries, are prohibited on aircraft due to their hazardous nature. This prohibition is in place to ensure the safety of passengers and crew, as these materials can pose significant risks during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CORROSIVES\"\nDescription List: [\"Corrosive substances like acids and wet cell batteries are prohibited on aircraft.\", \"Corrosives like acids and wet cell batteries are prohibited on aircraft due to their hazardous nature.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a7ae76bc8660ea6c9feec40df12f1bc1 b/cache/summarize_descriptions/summarize-chat-v2-a7ae76bc8660ea6c9feec40df12f1bc1 deleted file mode 100644 index da48d6e771ee7cc56b3d8d0783466c1e3ea4a6f5..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a7ae76bc8660ea6c9feec40df12f1bc1 +++ /dev/null @@ -1 +0,0 @@ -{"result": "DIMENSIONS play a critical role in determining the eligibility of CARRY-ON BAGGAGE for boarding. They are a key factor that airlines consider when assessing whether a piece of baggage meets the requirements for carry-on status.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"DIMENSIONS\", \"CARRY-ON BAGGAGE\"]\nDescription List: [\"Dimensions are a critical factor in determining the eligibility of carry-on baggage for boarding.\", \"Dimensions are a key factor in determining the eligibility of carry-on baggage\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a7b01a323030934b32eb18e7e7c4c729 b/cache/summarize_descriptions/summarize-chat-v2-a7b01a323030934b32eb18e7e7c4c729 deleted file mode 100644 index 7ac9d4c542a9dd659f906d2667f4e70c8b8434ea..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a7b01a323030934b32eb18e7e7c4c729 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Flammable liquids and solids are prohibited on aircraft due to safety concerns and their potential to ignite. This regulation is in place to ensure the safety of passengers and crew, as the presence of such materials poses significant risks during flight.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"FLAMMABLE LIQUIDS\"\nDescription List: [\"Flammable liquids and solids are prohibited on aircraft due to safety concerns.\", \"Flammable liquids and solids are prohibited on aircraft due to their potential to ignite.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a821d4fca1714f915efc9a5e5f896c4c b/cache/summarize_descriptions/summarize-chat-v2-a821d4fca1714f915efc9a5e5f896c4c deleted file mode 100644 index 1171744a201bf86eea9376dc9935f7968a75412e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a821d4fca1714f915efc9a5e5f896c4c +++ /dev/null @@ -1 +0,0 @@ -{"result": "Premium Class passengers are entitled to specific carry-on baggage allowances.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"PREMIUM CLASS\", \"CARRY-ON BAGGAGE\"]\nDescription List: [\"Premium Class passengers are entitled to specific carry-on baggage allowances\", \"Premium Class passengers are entitled to specific carry-on baggage allowances.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a84af360dd2e41c41373594c83fc9d2d b/cache/summarize_descriptions/summarize-chat-v2-a84af360dd2e41c41373594c83fc9d2d deleted file mode 100644 index 3b999afafa8b51a704f68117bdb9d2379e087c72..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a84af360dd2e41c41373594c83fc9d2d +++ /dev/null @@ -1 +0,0 @@ -{"result": "Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ELECTRONIC DEVICES\"\nDescription List: [\"Electronic devices are items such as laptops and tablets that passengers should keep accessible during the flight.\", \"Electronic devices are items such as phones and laptops that passengers are advised to keep accessible during flights.\", \"Electronic devices with lithium batteries that cannot be removed must be stored in the aircraft hold under specific conditions.\", \"Electronic devices with removable lithium batteries must have the battery taken aboard the aircraft cabin, while the device can be checked.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-a915d7bd58ea927529a929cbb0cc3a41 b/cache/summarize_descriptions/summarize-chat-v2-a915d7bd58ea927529a929cbb0cc3a41 deleted file mode 100644 index 93911dad10d3b8b00fc85c9ffed261da4c0e6659..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-a915d7bd58ea927529a929cbb0cc3a41 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"WEIGHT\", \"SPORTING EQUIPMENT\"]\nDescription List: [\"Weight is a key factor in determining the allowance and fees for transporting sporting equipment\", \"Weight is a key restriction that determines if sporting equipment can be transported in the specified travel classes.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-aa80ace1a6a6392d596678cf8c4d177f b/cache/summarize_descriptions/summarize-chat-v2-aa80ace1a6a6392d596678cf8c4d177f deleted file mode 100644 index 6e5c3273f3012f698792ab51139acc9f20ba7f8c..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-aa80ace1a6a6392d596678cf8c4d177f +++ /dev/null @@ -1 +0,0 @@ -{"result": "Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BAGGAGE ALLOWANCE\"\nDescription List: [\"\", \"Baggage allowance is determined by the ticket type and specifies how much baggage a passenger can check without incurring extra fees.\", \"Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\", \"Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-ae478478b8e8f52120bdea64a18ea5fc b/cache/summarize_descriptions/summarize-chat-v2-ae478478b8e8f52120bdea64a18ea5fc deleted file mode 100644 index c0b1989de396df570362c777ba655d36fedcf503..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-ae478478b8e8f52120bdea64a18ea5fc +++ /dev/null @@ -1 +0,0 @@ -{"result": "ACIDS are classified as corrosives and are prohibited on aircraft due to their hazardous nature.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ACIDS\"\nDescription List: [\"\", \"Acids are classified as corrosives and are prohibited on aircraft due to their hazardous nature.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b10fac4c9103d80878158a064cc2d9f0 b/cache/summarize_descriptions/summarize-chat-v2-b10fac4c9103d80878158a064cc2d9f0 deleted file mode 100644 index a392413646513d2257ea7e1655be7dd8903f220d..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b10fac4c9103d80878158a064cc2d9f0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ARRIVALS HALL\"\nDescription List: [\"The Arrivals Hall is where owners can retrieve their pets after they have been transported as checked baggage.\", \"The Arrivals Hall is where pet owners will retrieve their animals after they have been transported as checked baggage.\", \"The arrivals hall at Ben Gurion Airport is where animals transported as baggage are released.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b1ee9b7def9452ad1d7da45f1089a524 b/cache/summarize_descriptions/summarize-chat-v2-b1ee9b7def9452ad1d7da45f1089a524 deleted file mode 100644 index 0e9c38fcca7e4ff8ee69580136c84e805b4be516..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b1ee9b7def9452ad1d7da45f1089a524 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ISRAEL\"\nDescription List: [\"Country from which flights are departing and has specific guidelines for carrying liquids in carry-on bags.\", \"Country from which flights may have specific conditions regarding carrying liquids in carry-on bags.\", \"Israel is a country with specific requirements for transporting animals, including service dogs.\", \"Israel is defined as a high-risk country for transporting dogs according to the CDC.\", \"Israel is the country from which animals are transported abroad.\", \"Israel is the country where the Ministry of Agriculture regulates the transport of pets.\", \"Israel is the country where the Ministry of Health regulates the entry of animals.\", \"Israel is the destination for passengers returning from abroad.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b4ffdbc7a77ea84489e46e03824fa736 b/cache/summarize_descriptions/summarize-chat-v2-b4ffdbc7a77ea84489e46e03824fa736 deleted file mode 100644 index 5968388918cf9c21f9c859a9ec70b813cad983e0..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b4ffdbc7a77ea84489e46e03824fa736 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BILL OF LADING\"\nDescription List: [\"A bill of lading is a document required for transporting animals as cargo.\", \"A bill of lading is a document required for transporting animals, especially when they weigh more than 9 kg.\", \"A bill of lading is required for transporting animals as cargo, indicating the terms of transport.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b5966ebfa1763009641c6f72ef67a2a0 b/cache/summarize_descriptions/summarize-chat-v2-b5966ebfa1763009641c6f72ef67a2a0 deleted file mode 100644 index d2ce3c072454657c008f8013f7d2aa4030a722b9..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b5966ebfa1763009641c6f72ef67a2a0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "CORROSIVES, specifically ACIDS, are a category of substances that are known for their ability to corrode materials. These substances are prohibited on aircraft due to their hazardous nature. Acids are classified as corrosives, reinforcing the understanding that they pose significant risks when transported in aviation environments.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CORROSIVES\", \"ACIDS\"]\nDescription List: [\"Acids are a type of corrosive substance that is prohibited on aircraft\", \"Acids are classified as corrosives and are prohibited on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b6388726f9051e8cd5c798f647353bc7 b/cache/summarize_descriptions/summarize-chat-v2-b6388726f9051e8cd5c798f647353bc7 deleted file mode 100644 index 5c051c61831174af83244b40e2fb7525abe50d2c..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b6388726f9051e8cd5c798f647353bc7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DELAYED BAGGAGE\"\nDescription List: [\"Delayed baggage refers to baggage that has not arrived with the passenger and must be reported immediately after landing.\", \"Delayed baggage refers to personal belongings that have not arrived with the traveler and must be reported to the airline for retrieval.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b6da660abed1c1a6d8a376d5d0261ac8 b/cache/summarize_descriptions/summarize-chat-v2-b6da660abed1c1a6d8a376d5d0261ac8 deleted file mode 100644 index 167fae89c771cedb26de9cd6933a1c53678a74b4..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b6da660abed1c1a6d8a376d5d0261ac8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations. These regulations are designed to ensure the safety and well-being of the animals during transportation.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"ANIMAL\"\nDescription List: [\"\", \"Animals such as dogs, cats, or exotic birds that are subject to specific transport regulations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b71ee340841a6ac31c4faf17fd6402b0 b/cache/summarize_descriptions/summarize-chat-v2-b71ee340841a6ac31c4faf17fd6402b0 deleted file mode 100644 index 67f10e2e5fa95d374af3cc01df4afa831283347d..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b71ee340841a6ac31c4faf17fd6402b0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"EL AL CARGO STORE\"\nDescription List: [\"The EL AL Cargo Store is a service location for cargo operations associated with EL AL Airlines.\", \"The EL AL Cargo Store is a service provided by EL AL for transporting cargo, including pets, from Israel abroad.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b7254d6e1bd86f8b81d123357251db30 b/cache/summarize_descriptions/summarize-chat-v2-b7254d6e1bd86f8b81d123357251db30 deleted file mode 100644 index cb70a536189b525b20e1dcb234e9d3a644dccbfb..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b7254d6e1bd86f8b81d123357251db30 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Baggage Service Center is dedicated to assisting travelers with various issues related to their baggage. This includes managing problems such as delays and damages that may occur during travel. The center serves as a crucial resource for passengers seeking support and resolution for their baggage-related concerns.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BAGGAGE\", \"BAGGAGE SERVICE CENTER\"]\nDescription List: [\"The Baggage Service Center assists travelers with issues related to their baggage, including delays and damages\", \"The Baggage Service Center manages issues related to baggage, including delays and damages\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b77d76fb258d791d60cd2a68fd8ab91d b/cache/summarize_descriptions/summarize-chat-v2-b77d76fb258d791d60cd2a68fd8ab91d deleted file mode 100644 index 467f0959216d8b8af9acdff13d6fb78bcbb20686..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b77d76fb258d791d60cd2a68fd8ab91d +++ /dev/null @@ -1 +0,0 @@ -{"result": "The flight ticket terms outline the policies and rules regarding carry-on baggage allowances applicable to passengers. These terms provide essential information that helps travelers understand the specific regulations governing the amount and type of carry-on baggage they are permitted to bring on board.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"FLIGHT TICKET TERMS\"]\nDescription List: [\"Flight ticket terms provide details on the carry-on baggage policies applicable to passengers\", \"Flight ticket terms provide details on the rules regarding carry-on baggage allowances.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-b93ae23023ea9c04839e14bf5134d904 b/cache/summarize_descriptions/summarize-chat-v2-b93ae23023ea9c04839e14bf5134d904 deleted file mode 100644 index d7f1a9ed31599fa61aabef12b169f61f646cd886..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-b93ae23023ea9c04839e14bf5134d904 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"CARRY-ON BAGGAGE\"]\nDescription List: [\"EL AL has specific policies regarding carry-on baggage for its flights\", \"EL AL has specific policies regarding carry-on baggage for its flights.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-bcd0be05b0783af31431d708dc371b88 b/cache/summarize_descriptions/summarize-chat-v2-bcd0be05b0783af31431d708dc371b88 deleted file mode 100644 index c01d9c1d5c3008f4588ca0ccf9c75639b9cf2b81..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-bcd0be05b0783af31431d708dc371b88 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"PORTABLE CHARGERS\"\nDescription List: [\"\", \"Portable chargers are considered batteries and may be taken aboard aircraft under certain conditions.\", \"Portable chargers are considered lithium batteries and are prohibited in checked baggage.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-bd48323c561643edb32f9ce1d230d48c b/cache/summarize_descriptions/summarize-chat-v2-bd48323c561643edb32f9ce1d230d48c deleted file mode 100644 index 196ca4fa6f8638a063e9000284ec138e92d38748..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-bd48323c561643edb32f9ce1d230d48c +++ /dev/null @@ -1 +0,0 @@ -{"result": "The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"FLIGHT DESTINATION\"\nDescription List: [\"Flight destination refers to the location where passengers are traveling and requires necessary documents for check-in.\", \"The flight destination is the final location where passengers are traveling to, which may affect baggage policies.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-bf690d0fb8a076479fe69e3677b58486 b/cache/summarize_descriptions/summarize-chat-v2-bf690d0fb8a076479fe69e3677b58486 deleted file mode 100644 index 70cae55e5e560529537d0b4eb79a0c7ebd968a8a..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-bf690d0fb8a076479fe69e3677b58486 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"PREMIUM CLASS\"\nDescription List: [\"Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.\", \"Premium Class is a higher travel class that provides enhanced services and amenities compared to Economy Class.\", \"Premium Class is a travel class that allows complimentary transport of sports equipment under specific conditions.\", \"Premium class tickets allow passengers to check up to two pieces of baggage weighing up to 23 kg each.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-bfe0506f182ee1b2034e7213fb52e609 b/cache/summarize_descriptions/summarize-chat-v2-bfe0506f182ee1b2034e7213fb52e609 deleted file mode 100644 index 844774f7a5a106633f1073c9ddd9a2c2784327b2..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-bfe0506f182ee1b2034e7213fb52e609 +++ /dev/null @@ -1 +0,0 @@ -{"result": "High-strength magnetic materials are prohibited on aircraft due to their potential to harm people and the environment, as well as their ability to interfere with navigation and safety equipment. This prohibition is in place to ensure the safety and well-being of passengers and crew, as well as to maintain the integrity of aircraft operations.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"HIGH-STRENGTH MAGNETIC MATERIALS\"\nDescription List: [\"High-strength magnetic materials are prohibited on aircraft as they can harm people or the environment.\", \"High-strength magnetic materials are prohibited on aircraft as they can interfere with navigation and safety equipment.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-c028a7b33f7e780f26785891a1e1c718 b/cache/summarize_descriptions/summarize-chat-v2-c028a7b33f7e780f26785891a1e1c718 deleted file mode 100644 index 60658a24d89e792b0b83534b4b62a83bfffda924..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-c028a7b33f7e780f26785891a1e1c718 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"SKI EQUIPMENT\"\nDescription List: [\"\", \"Ski equipment includes one pair of skis, one pair of poles, and one pair of ski boots, which can be transported under specific conditions.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-ca4b6fe4ebb4313fed62098c97b66c4e b/cache/summarize_descriptions/summarize-chat-v2-ca4b6fe4ebb4313fed62098c97b66c4e deleted file mode 100644 index e3a5b75411dc174a7c64a9711f3d04abaccedb9e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-ca4b6fe4ebb4313fed62098c97b66c4e +++ /dev/null @@ -1 +0,0 @@ -{"result": "Authorization from the Ministry of Agriculture’s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"AUTHORIZATION\"\nDescription List: [\"Authorization from the Ministry of Agriculture’s Veterinary Services is required to transport an animal to and from Israel.\", \"Authorization from the Ministry of Agriculture’s Veterinary Services is required to transport an animal.\", \"Authorization from the Veterinary Services Department is required to transport a pet as cargo.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-cb493899a7b6b361af00ff3952a04c72 b/cache/summarize_descriptions/summarize-chat-v2-cb493899a7b6b361af00ff3952a04c72 deleted file mode 100644 index ad25df64307a588512de9c0f5ba3562e92fbc9be..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-cb493899a7b6b361af00ff3952a04c72 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CHECK-IN COUNTER\"\nDescription List: [\"The check-in counter is where owners must arrive with their pets for transportation arrangements.\", \"The check-in counter is where passengers can check in their luggage and obtain boarding passes.\", \"The check-in counter is where pet owners must arrive with their pets for transport arrangements.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-ce0dc4d6876690611b1cabf6a9773ce0 b/cache/summarize_descriptions/summarize-chat-v2-ce0dc4d6876690611b1cabf6a9773ce0 deleted file mode 100644 index 2e9369472160d3b692bfe82b41817ea01d30b6f2..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-ce0dc4d6876690611b1cabf6a9773ce0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline's baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"CHECKED BAGGAGE\"]\nDescription List: [\"EL AL allows certain animals to be transported as checked baggage\", \"EL AL provides guidelines for transporting checked baggage, including sporting equipment.\", \"El Al's baggage policy is similar to that of Sundor, affecting checked baggage allowances\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-ce5c641615227dc9e621c837fae10662 b/cache/summarize_descriptions/summarize-chat-v2-ce5c641615227dc9e621c837fae10662 deleted file mode 100644 index 90765e55a90685ff45748f83a9cfd561f8d3a62e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-ce5c641615227dc9e621c837fae10662 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A \"HIGH-RISK COUNTRY\" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"HIGH-RISK COUNTRY\"\nDescription List: [\"A designation given to countries, such as Israel, where additional regulations apply for transporting certain animals.\", \"As of the current date, Israel is classified as a high-risk country for transporting animals, affecting travel regulations.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-d717309b6a2052ed5550f3471e55914d b/cache/summarize_descriptions/summarize-chat-v2-d717309b6a2052ed5550f3471e55914d deleted file mode 100644 index a6fc010db3c01974c127a244e53a11e40f0322da..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-d717309b6a2052ed5550f3471e55914d +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Baggage Service Center is dedicated to assisting passengers with items that have been forgotten on board. It plays a crucial role in helping recover these forgotten items, ensuring that travelers can retrieve their belongings efficiently.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"BAGGAGE SERVICE CENTER\", \"FORGOTTEN ITEM\"]\nDescription List: [\"The Baggage Service Center assists passengers with items forgotten on board\", \"The Baggage Service Center helps recover forgotten items left on board\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-d8ae3ac4815980d9a4394df691ba030d b/cache/summarize_descriptions/summarize-chat-v2-d8ae3ac4815980d9a4394df691ba030d deleted file mode 100644 index b023297db2f2f22b2df4355b61684d0c68df0fcc..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-d8ae3ac4815980d9a4394df691ba030d +++ /dev/null @@ -1 +0,0 @@ -{"result": "CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CARRY-ON BAGS\"\nDescription List: [\"Bags that passengers are allowed to take on board the aircraft, subject to restrictions on liquids.\", \"Carry-on bags are personal items that passengers can take on board the aircraft, subject to weight and size restrictions.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-d93cb498fff480242350992dbdce30a7 b/cache/summarize_descriptions/summarize-chat-v2-d93cb498fff480242350992dbdce30a7 deleted file mode 100644 index 56303bafe9dfa722bde730adc14c29b55739539b..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-d93cb498fff480242350992dbdce30a7 +++ /dev/null @@ -1 +0,0 @@ -{"result": "CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"CARGO\"\nDescription List: [\"Cargo refers to goods or items transported in bulk, separate from passenger baggage, often requiring special arrangements.\", \"Cargo refers to the service provided for transporting items that exceed standard baggage limits, including sporting equipment.\", \"Cargo refers to the transportation of goods, including animals, typically handled by the Cargo Division.\", \"Cargo transport refers to the method of shipping animals as registered cargo in the aircraft hold.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-d9d8d151da753172062379253031dfbf b/cache/summarize_descriptions/summarize-chat-v2-d9d8d151da753172062379253031dfbf deleted file mode 100644 index 0a746fdd5760911396a390e2f3267e645d7ceb29..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-d9d8d151da753172062379253031dfbf +++ /dev/null @@ -1 +0,0 @@ -{"result": "The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DESTINATION COUNTRY\"\nDescription List: [\"The country to which the passenger is traveling, which may have specific regulations regarding the transport of equipment.\", \"The destination country is the country to which a passenger is traveling, and it has specific guidelines and conditions for admitting passenger equipment.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-da85da65784a4ac5981509962b55470f b/cache/summarize_descriptions/summarize-chat-v2-da85da65784a4ac5981509962b55470f deleted file mode 100644 index deea43fd2703e2cb8189f5e93ded5af9d61bbe54..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-da85da65784a4ac5981509962b55470f +++ /dev/null @@ -1 +0,0 @@ -{"result": "The Matmid Frequent Flyer Club status has a significant impact on the eligibility for carry-on baggage for passengers. Membership in the Matmid Frequent Flyer Club influences the rules and allowances regarding carry-on baggage, suggesting that those who are members may have different or enhanced privileges compared to non-members.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"MATMID FREQUENT FLYER CLUB\"]\nDescription List: [\"Matmid Frequent Flyer Club status may influence the carry-on baggage eligibility for passengers.\", \"Membership in the Matmid Frequent Flyer Club affects carry-on baggage eligibility\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-dcc527a00e027ede45951597a49e34c0 b/cache/summarize_descriptions/summarize-chat-v2-dcc527a00e027ede45951597a49e34c0 deleted file mode 100644 index 1bd03059ffb888bf935a68299c48b977bd7cfbce..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-dcc527a00e027ede45951597a49e34c0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"ISRAEL\", \"LIQUIDS IN CARRY-ON BAGS\"]\nDescription List: [\"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports.\", \"The restrictions on liquids in carry-on bags apply to flights departing from Israel.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-de0a5be09379f563a4e2ba57e3da91f5 b/cache/summarize_descriptions/summarize-chat-v2-de0a5be09379f563a4e2ba57e3da91f5 deleted file mode 100644 index 9215abf125a940c709fd79313f13bf17ab784d27..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-de0a5be09379f563a4e2ba57e3da91f5 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The term \"Maximum Weight\" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"MAXIMUM WEIGHT\"\nDescription List: [\"\", \"Maximum weight refers to the heaviest allowable weight for carry-on bags and personal bags for boarding.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-dfa1a0bd79c38e062f77a907645567b8 b/cache/summarize_descriptions/summarize-chat-v2-dfa1a0bd79c38e062f77a907645567b8 deleted file mode 100644 index 134f8ccbed4ae1f37b87d83bea9f242db2bf3745..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-dfa1a0bd79c38e062f77a907645567b8 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Booking management provides passengers with the ability to check their carry-on baggage allowances and policies, as well as manage their bookings. This functionality ensures that travelers are informed about the specific regulations regarding their carry-on items, facilitating a smoother travel experience.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"BOOKING MANAGEMENT\"]\nDescription List: [\"Booking management allows passengers to check their carry-on baggage allowances and policies\", \"Booking management allows passengers to check their carry-on baggage policies and manage their bookings.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-e05320561b54e134e75bed46d84ff192 b/cache/summarize_descriptions/summarize-chat-v2-e05320561b54e134e75bed46d84ff192 deleted file mode 100644 index 711a6375838f3083d90d73da51f6562514125f72..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-e05320561b54e134e75bed46d84ff192 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"DIMENSIONS\"\nDescription List: [\"Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.\", \"Dimensions refer to the measurements of baggage, typically expressed in length, width, and height.\", \"Dimensions refer to the measurements of baggage, which determine whether it is classified as standard, oversized, or overweight.\", \"Dimensions refer to the total measurements (length + width + height) of the sports equipment that must not exceed specified limits for transport.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-e0b4210bbac641e603c4298ff1fa81bb b/cache/summarize_descriptions/summarize-chat-v2-e0b4210bbac641e603c4298ff1fa81bb deleted file mode 100644 index 695291c2d0a0e12163622a48e3b4d273851399f7..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-e0b4210bbac641e603c4298ff1fa81bb +++ /dev/null @@ -1 +0,0 @@ -{"result": "IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"IATA REGULATIONS\"\nDescription List: [\"IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights.\", \"IATA regulations govern the transport of battery-powered mobility aids on flights.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-e17508a15ba05b8e70448a3132d42b07 b/cache/summarize_descriptions/summarize-chat-v2-e17508a15ba05b8e70448a3132d42b07 deleted file mode 100644 index de4f47277031d3131d6792f342d1ac6febba3027..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-e17508a15ba05b8e70448a3132d42b07 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"SPORTING EQUIPMENT\"\nDescription List: [\"Sporting equipment includes items like skis, snowboards, and bicycles that can be transported on flights under specific conditions.\", \"Sporting equipment refers to items such as skis, bikes, and other sports gear that can be transported as checked baggage or cargo by airlines.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-e7270d3b09473d3fe0cbb8336ecbd017 b/cache/summarize_descriptions/summarize-chat-v2-e7270d3b09473d3fe0cbb8336ecbd017 deleted file mode 100644 index 941edde3d7cdfc4b772d003f11b2306d3a8663bb..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-e7270d3b09473d3fe0cbb8336ecbd017 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"23 KG\" refers to the maximum weight limit for checked baggage in premium class and for certain service types offered by EL AL. Specifically, 23 kg is the maximum weight allowed for each piece of checked baggage included in the ticket price for these services.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"23 KG\"\nDescription List: [\"23 kg is the maximum weight allowed for each piece of checked baggage in premium class.\", \"23 kg is the weight limit for each piece of checked baggage included in the ticket price for certain service types offered by EL AL.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-e9ce574831fbcc42359320c8197a8bdc b/cache/summarize_descriptions/summarize-chat-v2-e9ce574831fbcc42359320c8197a8bdc deleted file mode 100644 index d2da01b5c3f2975fceaf647cd8c638024785c970..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-e9ce574831fbcc42359320c8197a8bdc +++ /dev/null @@ -1 +0,0 @@ -{"result": "Compressed gases, including butane and oxygen, are prohibited on aircraft due to their dangerous nature and inherent flammability, which pose significant potential hazards during air travel.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"COMPRESSED GASES\"\nDescription List: [\"Compressed gases such as butane and oxygen are forbidden on aircraft due to their dangerous nature.\", \"Compressed gases such as butane and oxygen are forbidden on aircraft due to their flammability and potential hazards.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-eb63a3a7f83a182be2d9fb7b2a2d9883 b/cache/summarize_descriptions/summarize-chat-v2-eb63a3a7f83a182be2d9fb7b2a2d9883 deleted file mode 100644 index 560e441e163fa5469d74114bd715b094835760b9..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-eb63a3a7f83a182be2d9fb7b2a2d9883 +++ /dev/null @@ -1 +0,0 @@ -{"result": "A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"VETERINARY CERTIFICATE\"\nDescription List: [\"A veterinary certificate is a document that certifies a service dog is vaccinated and can maintain sanitary conditions during transport.\", \"A veterinary certificate is required for transporting service dogs and must be provided by the passenger.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-eb9f7f8e30ec7d12224691c5992f7d4b b/cache/summarize_descriptions/summarize-chat-v2-eb9f7f8e30ec7d12224691c5992f7d4b deleted file mode 100644 index d9bb4d6db82554120b5770ccf424592fe992b25e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-eb9f7f8e30ec7d12224691c5992f7d4b +++ /dev/null @@ -1 +0,0 @@ -{"result": "CARRY-ON BAGGAGE policies are specifically applicable to flights from and to NORTH AMERICA. These policies outline the regulations and restrictions regarding the size, weight, and number of carry-on items that passengers are allowed to bring on board.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CARRY-ON BAGGAGE\", \"NORTH AMERICA\"]\nDescription List: [\"Specific carry-on baggage policies apply to flights from/to North America\", \"Specific carry-on baggage policies apply to flights from/to North America.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-ed88113b5c5c1459b778c9640f4fbdf0 b/cache/summarize_descriptions/summarize-chat-v2-ed88113b5c5c1459b778c9640f4fbdf0 deleted file mode 100644 index e31569390cb0011db355814e0db81ef379ca8ba6..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-ed88113b5c5c1459b778c9640f4fbdf0 +++ /dev/null @@ -1 +0,0 @@ -{"result": "An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"EXPORT LICENSE\"\nDescription List: [\"An export license is needed for transporting animals internationally.\", \"An export license is needed to transport animals out of the country.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-ef1f53a2af94ba2cf40238d4236a2ad9 b/cache/summarize_descriptions/summarize-chat-v2-ef1f53a2af94ba2cf40238d4236a2ad9 deleted file mode 100644 index a095c7f20717555c8dd2b609273105504c9eda70..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-ef1f53a2af94ba2cf40238d4236a2ad9 +++ /dev/null @@ -1 +0,0 @@ -{"result": "CORROSIVES and FLAMMABLE LIQUIDS are both classified as prohibited items on aircraft. This classification indicates that neither of these substances is allowed to be transported on commercial flights due to safety concerns associated with their hazardous properties.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CORROSIVES\", \"FLAMMABLE LIQUIDS\"]\nDescription List: [\"Both corrosives and flammable liquids are classified as prohibited items on aircraft\", \"Corrosives and flammable liquids are both classified as prohibited items on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-f04c7e77e0f14ae406913515313b4e4e b/cache/summarize_descriptions/summarize-chat-v2-f04c7e77e0f14ae406913515313b4e4e deleted file mode 100644 index 729b5548adf7a57d1774228d3b8376e333db7ccd..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-f04c7e77e0f14ae406913515313b4e4e +++ /dev/null @@ -1 +0,0 @@ -{"result": "The EL AL Cargo Division offers a specialized service for transporting sporting equipment that exceeds standard baggage limits and allowances. This division provides an alternative solution for individuals and organizations needing to transport larger or heavier sporting gear, ensuring that such items can be shipped efficiently and effectively.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"SPORTING EQUIPMENT\", \"EL AL CARGO DIVISION\"]\nDescription List: [\"The EL AL Cargo Division provides an alternative for transporting sporting equipment that exceeds standard baggage limits.\", \"The EL AL Cargo Division provides an option for transporting sporting equipment that exceeds standard baggage allowances\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-f602aaa73da26b011e59f15cd78f4bea b/cache/summarize_descriptions/summarize-chat-v2-f602aaa73da26b011e59f15cd78f4bea deleted file mode 100644 index 4998a5e0664faf70e0b3a8c4cb8766930576acd1..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-f602aaa73da26b011e59f15cd78f4bea +++ /dev/null @@ -1 +0,0 @@ -{"result": "Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"BUSINESS CLASS\"\nDescription List: [\"Business Class allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class.\", \"Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.\", \"Business Class is a premium travel class that offers superior services and amenities for passengers.\", \"Business class tickets allow passengers to check up to two pieces of baggage weighing up to 32 kg each.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-f685ee7b8764e3701eb03f1fbe03ca21 b/cache/summarize_descriptions/summarize-chat-v2-f685ee7b8764e3701eb03f1fbe03ca21 deleted file mode 100644 index 6680c656627fa63a4310df8bd14f7fd3d3214002..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-f685ee7b8764e3701eb03f1fbe03ca21 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EXPLOSIVES and FLAMMABLE LIQUIDS are both classified as prohibited items on aircraft. This classification highlights the significant safety risks associated with transporting these materials by air, as they can pose serious threats to the safety of passengers and crew.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EXPLOSIVES\", \"FLAMMABLE LIQUIDS\"]\nDescription List: [\"Both explosives and flammable liquids are classified as prohibited items on aircraft\", \"Explosives and flammable liquids are both classified as prohibited items on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-f804062108618ad2881c37c373c992ce b/cache/summarize_descriptions/summarize-chat-v2-f804062108618ad2881c37c373c992ce deleted file mode 100644 index f84012e5514bbeb969e5ccdf997e597830eaf47e..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-f804062108618ad2881c37c373c992ce +++ /dev/null @@ -1 +0,0 @@ -{"result": "A flight ticket is a document that confirms a passenger's reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"FLIGHT TICKET\"\nDescription List: [\"A flight ticket is a document that confirms a passenger's reservation and includes details about baggage allowances.\", \"A flight ticket is a document that confirms a passenger's reservation on a flight and includes details about baggage allowance.\", \"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-f80b84c98da9a36a83b14242ff9397b2 b/cache/summarize_descriptions/summarize-chat-v2-f80b84c98da9a36a83b14242ff9397b2 deleted file mode 100644 index 0b4ae7e2ea69e79adce9d92b6d620451d6d6e7bd..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-f80b84c98da9a36a83b14242ff9397b2 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"32 KG\" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"32 KG\"\nDescription List: [\"32 kg is the maximum weight allowed for each piece of checked baggage in business class.\", \"32 kg is the maximum weight limit for sports equipment in Business Class.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-fbe7dd224730a30b99d42f0b303ac4c3 b/cache/summarize_descriptions/summarize-chat-v2-fbe7dd224730a30b99d42f0b303ac4c3 deleted file mode 100644 index c8c0b54177960cdea5c38d36671e586c488a27fc..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-fbe7dd224730a30b99d42f0b303ac4c3 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Alkalis are a specific category of corrosive substances that are prohibited on aircraft. They are classified as corrosives due to their potential to cause damage to materials and living tissues. As such, the transport of alkalis on aircraft is restricted to ensure safety.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"CORROSIVES\", \"ALKALIS\"]\nDescription List: [\"Alkalis are a type of corrosive substance that is prohibited on aircraft\", \"Alkalis are classified as corrosives and are prohibited on aircraft\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-fecb4299a54035e6126c00fe52000cb3 b/cache/summarize_descriptions/summarize-chat-v2-fecb4299a54035e6126c00fe52000cb3 deleted file mode 100644 index 78a0ad3a602f95de1000bf8834a7ebcc110b223a..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-fecb4299a54035e6126c00fe52000cb3 +++ /dev/null @@ -1 +0,0 @@ -{"result": "The entity \"20 KG\" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"20 KG\"\nDescription List: [\"20 kg is the combined maximum weight limit for all bags as per airline policy.\", \"The combined weight limit for bags is not to exceed 20 kg.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-fefab65409917d09c4ffb866f65ef2c6 b/cache/summarize_descriptions/summarize-chat-v2-fefab65409917d09c4ffb866f65ef2c6 deleted file mode 100644 index b8c45c48fe78fe1d47a6ef1f3ff88014a3a80f5a..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-fefab65409917d09c4ffb866f65ef2c6 +++ /dev/null @@ -1 +0,0 @@ -{"result": "EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: [\"EL AL\", \"BAGGAGE\"]\nDescription List: [\"EL AL is the airline responsible for handling baggage and addressing issues such as delays and damages\", \"EL AL is the airline responsible for handling baggage and related claims\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/summarize_descriptions/summarize-chat-v2-ffe039605392d5debcfdbf1bf2c13616 b/cache/summarize_descriptions/summarize-chat-v2-ffe039605392d5debcfdbf1bf2c13616 deleted file mode 100644 index 4615d17c5273fcd249d02a2fb1c37a51f5d41840..0000000000000000000000000000000000000000 --- a/cache/summarize_descriptions/summarize-chat-v2-ffe039605392d5debcfdbf1bf2c13616 +++ /dev/null @@ -1 +0,0 @@ -{"result": "Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment.", "input": "\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: \"MAKOR HAZIUD\"\nDescription List: [\"Makor Haziud is a store that specializes in baggage and outdoor equipment.\", \"Makor Haziud specializes in baggage and outdoor equipment located in Nes Ziona.\"]\n#######\nOutput:\n", "parameters": {"model": "gpt-4o-mini", "temperature": 0.0, "frequency_penalty": 0.0, "presence_penalty": 0.0, "top_p": 1.0, "max_tokens": 500, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-01e9e4b2676d8b6a0198db1577f41488 b/cache/text_embedding/embedding-01e9e4b2676d8b6a0198db1577f41488 deleted file mode 100644 index 683f7d3ef1cf38c3ef119b3c62a15498d8d4ffcb..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-01e9e4b2676d8b6a0198db1577f41488 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.023554086685180664, 0.010695097967982292, -0.00019664678256958723, 0.010017327032983303, -0.03693539649248123, 0.01377926580607891, -0.0083384457975626, 0.0010827231453731656, -0.03322942182421684, 0.04156164824962616, 0.00391739048063755, -0.010154125280678272, 0.0032924734987318516, 0.014090169221162796, -0.0682496502995491, 0.036711543798446655, -0.012560522183775902, 0.011497230269014835, -0.03211016580462456, 0.008127030916512012, 0.0207559522241354, 0.052978042513132095, -0.04501890018582344, -0.01310771331191063, -0.03696026653051376, -0.038900308310985565, 0.03061782568693161, -0.010819459334015846, 0.051684681326150894, -0.030145252123475075, 0.055763743817806244, -0.03211016580462456, 0.03494561091065407, -0.002669110894203186, 0.027434170246124268, 0.001001110882498324, 0.011907623149454594, 0.011702426709234715, 0.00766067486256361, -0.0008363318047486246, 0.044173240661621094, 0.008058631792664528, 0.014600052498281002, 0.017124593257904053, -0.0170002318918705, 0.0382038839161396, 0.025071298703551292, -0.06282748281955719, -0.007921834476292133, 0.013033095747232437, 0.06546394526958466, 0.05352523550391197, -0.0017534985672682524, 0.008786147460341454, -0.002589830430224538, 0.006398404482752085, -0.0014635806437581778, 0.032035548239946365, 0.03283146396279335, -0.01721164584159851, -0.029921401292085648, -0.014139913953840733, -0.04213371127843857, 0.03850235044956207, -0.0041505685076117516, -0.024710649624466896, 0.00986187532544136, 0.04404887929558754, -0.016938049346208572, -0.018094612285494804, -0.011167671531438828, 0.012063075788319111, 0.06785169243812561, -0.08013861626386642, -0.06839887797832489, -0.005726851988583803, -0.022248290479183197, -0.036064863204956055, 0.03807952255010605, 0.00462003331631422, -0.036089736968278885, 0.01815679483115673, -0.002816790249198675, 0.03571665287017822, 0.017870761454105377, -0.015657125040888786, -0.09058499336242676, -0.03002089075744152, 0.015706870704889297, 0.012734628282487392, -0.04245705157518387, 0.0012933607213199139, -0.027260063216090202, 0.05456987023353577, 0.029175231233239174, 0.029324466362595558, 0.06252901256084442, 0.002375306561589241, -0.02778238244354725, 0.03929826617240906, -0.036388203501701355, -0.0512867234647274, -0.028553424403071404, -0.004427272826433182, 0.042034219950437546, -0.022260727360844612, -0.054271403700113297, 0.021004674956202507, -0.0025649580638855696, 0.02591695822775364, 0.02020876109600067, -0.0014659124426543713, 0.0010283150477334857, 0.06317569315433502, -0.037010014057159424, 0.028180338442325592, -0.010166561231017113, -0.03377661108970642, 0.047655366361141205, -0.003441707231104374, -0.037333354353904724, 0.010838113725185394, 0.05091363936662674, -0.059842802584171295, -0.011347996070981026, -0.022845227271318436, 0.0016990903532132506, 0.0036655582953244448, -0.09605690091848373, -0.04939642921090126, 0.044496580958366394, -0.030120380222797394, 0.0218876414000988, -0.050465937703847885, 0.03176195174455643, 0.02291984297335148, -0.005394184496253729, -0.007691765204071999, -0.0063206786289811134, -0.024524107575416565, 0.005624253302812576, 0.024586288258433342, 0.004825230222195387, -0.010545863769948483, -0.04790408909320831, 0.009171668440103531, 0.013841446489095688, 0.004669778048992157, 0.027981361374258995, 0.005509219132363796, 0.005916503258049488, 0.017472805455327034, 0.0011285815853625536, 0.022733300924301147, 0.0067963614128530025, 0.015619817189872265, 0.015284040942788124, -0.0015327567234635353, -0.0006357986712828279, 0.015122370794415474, -0.037656694650650024, -0.01361759565770626, -0.025469256564974785, -0.02872752957046032, 0.03847748041152954, -0.02529514953494072, -0.020718643441796303, 0.003382635535672307, -0.04350169003009796, -0.01578148640692234, -0.0405418835580349, -0.024872319772839546, -0.04850102588534355, -0.00936442892998457, 0.01607995480298996, -0.029274720698595047, 0.051684681326150894, -0.019549643620848656, 0.0008340000058524311, 0.02140263095498085, -0.030070634558796883, 0.00852498784661293, -0.05979305878281593, -0.018791038542985916, -0.04283013567328453, 0.012697319500148296, -0.00936442892998457, 0.005642907693982124, -0.027707764878869057, -0.0210792925208807, -0.00799645110964775, -0.027334680780768394, -0.0011721081100404263, -0.0041692228987813, -0.04718279093503952, -0.015905849635601044, -0.022385088726878166, 0.014065297320485115, 0.016664454713463783, 0.011509666219353676, 0.013791701756417751, -0.06088744103908539, 0.04690919816493988, 0.017199208959937096, -0.046710219234228134, 0.02396448142826557, 0.013592722825706005, 0.04569045454263687, 0.03380148485302925, -0.018666677176952362, 0.027732636779546738, -0.0020333121065050364, -0.029324466362595558, 0.006709308363497257, 0.001371086691506207, 0.060141269117593765, 0.01937553845345974, -0.03539331257343292, -0.020718643441796303, 0.04939642921090126, -0.04912283271551132, -0.028553424403071404, 0.014711977913975716, -0.00158250133972615, -0.02808084897696972, -0.00986187532544136, 0.01452543493360281, 0.0005837222561240196, -0.00039037884562276304, -0.0875505656003952, -0.001591828535310924, 0.026961594820022583, -0.02504642680287361, -0.02594183012843132, 0.009121923707425594, -0.0178085807710886, -0.008773711510002613, -0.07387079298496246, -0.0005071621853858232, 0.013567850925028324, 0.03877594694495201, -0.02810572274029255, -0.016875868663191795, 0.02902599796652794, 0.018032431602478027, -0.020954929292201996, 0.00374950235709548, -0.016030211001634598, 0.05810173973441124, 0.029896529391407967, 0.006348659750074148, -0.0359405018389225, 0.09575843065977097, -0.07760164141654968, 0.013082840479910374, 0.027260063216090202, 0.0025618490763008595, -0.06213105469942093, 0.013033095747232437, -0.05596272274851799, -0.030742188915610313, 0.013468361459672451, -0.026339787989854813, -0.03215990960597992, -0.05163493752479553, 0.02783212624490261, 0.004274929873645306, -0.010085726156830788, 0.016316242516040802, 0.018467698246240616, -0.033254291862249374, 0.009588279761373997, -0.02391473576426506, -0.020308250561356544, -0.02259650267660618, 0.05616169795393944, 0.029622932896018028, -0.024188332259655, -0.013692212291061878, 0.0290757417678833, -0.055763743817806244, -0.02380281127989292, -0.04994361847639084, -0.06730449944734573, 0.014015552587807178, 0.0035847232211381197, 0.0043682013638317585, -0.01056451816111803, -0.03245837986469269, 0.015122370794415474, 0.0757610872387886, -0.045118387788534164, 0.014438382349908352, 0.014786594547331333, 0.03176195174455643, 0.006015992723405361, -0.025717979297041893, -0.018306028097867966, -0.06720501184463501, -0.02342972531914711, 0.013095276430249214, 0.054868340492248535, 0.021415067836642265, -0.009625587612390518, -0.04974463954567909, 0.03807952255010605, 0.008929163217544556, 0.054818592965602875, -0.00040223204996436834, 0.02110416442155838, -0.0025509672705084085, 0.04469555988907814, -0.020581845194101334, -0.0447453036904335, -0.030120380222797394, -0.020382866263389587, -0.0624295249581337, -0.004560961853712797, 0.019785931333899498, -0.016801252961158752, 0.0218876414000988, 0.021141473203897476, 0.0006206420948728919, -0.009681550785899162, -0.013878755271434784, -0.02275817282497883, 0.04260628670454025, 0.05596272274851799, -0.051435958594083786, -0.042009349912405014, -0.04874974861741066, -0.013008223846554756, 0.04556608945131302, 0.005036645103245974, 0.00257117603905499, 0.014886084012687206, 0.007797472644597292, 0.028006233274936676, 0.0011464585550129414, -0.013928499072790146, 0.024300256744027138, -0.023342672735452652, -0.0027623821515589952, 0.04131292551755905, 2.8248543458175845e-05, -0.012678665108978748, 0.006759053096175194, 0.025083735585212708, -0.03584101423621178, 0.013368871994316578, 0.01704997569322586, -0.002527649514377117, -0.051038000732660294, 0.0011930940672755241, -0.055713996291160583, -0.03524407744407654, 0.051933404058218, 0.012747064232826233, -0.023044204339385033, -0.011204980313777924, 0.04367579519748688, -0.007038866635411978, 0.05541552975773811, 0.020357994362711906, 0.024822575971484184, 0.003239619778469205, -0.03429893031716347, 0.02140263095498085, -0.0040075527504086494, -0.051038000732660294, -0.023666013032197952, -0.015383530408143997, 0.01467466913163662, -0.003677994478493929, -0.020544536411762238, -0.016328677535057068, 0.044173240661621094, 0.011491011828184128, -0.003578505013138056, 0.008842109702527523, -0.028031105175614357, 0.006227407138794661, 0.025892086327075958, -0.017124593257904053, 0.018766166642308235, 0.05849969759583473, -0.0768057256937027, -0.029598060995340347, 0.015246732160449028, -0.015246732160449028, 0.0024063969030976295, 0.006945595610886812, -0.04820255562663078, 0.021029546856880188, 0.007430605590343475, 0.012622702866792679, 0.025382202118635178, 0.049869000911712646, 0.015109934844076633, -0.026737743988633156, -0.005655343644320965, -0.03161272034049034, 0.025469256564974785, -0.003681103466078639, -0.02545681968331337, 0.005984901916235685, -0.03623897209763527, -0.0029007343109697104, -0.011671336367726326, 0.008723966777324677, 0.011609155684709549, 0.005443929228931665, 0.07158254086971283, 0.005636689718812704, 0.04623764380812645, -0.010297141037881374, -0.006945595610886812, -0.004850102588534355, -0.013057968579232693, -0.04663560166954994, 0.04598892107605934, 0.007853435352444649, 0.01108061894774437, -0.00959449727088213, -0.029896529391407967, -0.007990232668817043, -0.02004709094762802, -0.0262900423258543, 0.006180771626532078, -0.07183126360177994, 0.009569625370204449, -0.013431052677333355, -0.0009288256987929344, -0.021763280034065247, -0.02559361793100834, -0.011180108413100243, 0.012678665108978748, -0.018144357949495316, -0.004952700808644295, -0.020992238074541092, 0.030841676518321037, 0.0014752395218238235, -0.019114378839731216, 0.011074400506913662, -0.01956208050251007, 0.028578296303749084, -0.027856998145580292, 0.055763743817806244, -0.052032895386219025, 0.023491906002163887, -0.029224976897239685, -0.01640329509973526, -0.02497180923819542, -0.025394639000296593, -0.006926941219717264, 0.0030686224345117807, -0.012156346812844276, -0.047680240124464035, 0.022546758875250816, 0.012373979203402996, 0.003824119223281741, 0.018044868484139442, 0.06591165065765381, 0.012871425598859787, 0.018542315810918808, 0.029224976897239685, -0.031985804438591, 0.018306028097867966, -0.0027654911391437054, -0.05432114750146866, 1.2964453617314575e-06, 0.0014604715397581458, -0.04026828706264496, 0.0034199440851807594, 0.06974198669195175, 0.014662233181297779, -0.020221196115016937, -0.060439739376306534, -0.023181002587080002, -0.030070634558796883, -0.0011099273106083274, 0.002369088586419821, -0.05093851312994957, -0.06247926875948906, 0.03631358966231346, 0.02464846894145012, 0.03745771571993828, 0.019089505076408386, -0.04113881662487984, -0.043924517929553986, -0.006106154527515173, -0.011546975001692772, 0.032334014773368835, -0.012349107302725315, 0.017261389642953873, 0.020283376798033714, -0.04996849223971367, 0.043899644166231155, 0.03524407744407654, 0.03835311904549599, 0.019773494452238083, -0.026986468583345413, -0.018990017473697662, 0.011609155684709549, 0.017659347504377365, -0.026364659890532494, 0.014139913953840733, -0.07023943215608597, -0.005882303696125746, -0.016652017831802368, -0.003811683040112257, -0.012056857347488403, 0.01626649685204029, -0.018069740384817123, -0.02967267856001854, -0.028827019035816193, 0.011515884660184383, 0.001270820153877139, -0.02324318327009678, 0.03131425008177757, -0.0023348890244960785, -0.02145237661898136, -0.0035722870379686356, 0.014401073567569256, -0.004318456631153822, 0.004486344754695892, 0.0026986468583345413, -0.029871657490730286, -0.01078215055167675, 0.016577402129769325, -0.020221196115016937, -0.04091496765613556, -0.04777972772717476, 0.021875206381082535, 0.00530402222648263, -0.006721744779497385, -0.0036655582953244448, 0.009271157905459404, 0.03218478336930275, -0.02527027763426304, 0.036736417561769485, 0.017099719494581223, 0.008437934331595898, -0.024611162021756172, -0.006099936552345753, -0.006740398705005646, -0.0026504567358642817, 0.04352656006813049, 0.01729869842529297, 0.005151679273694754, -0.0004076728655491024, 0.024772830307483673, -0.0032800373155623674, -0.020855439826846123, 0.023666013032197952, 0.01848013326525688, 0.0007749282522127032, -0.026339787989854813, 0.0050179907120764256, -0.006367314141243696, 0.011658900417387486, 0.01345592550933361, 0.0024623596109449863, -0.004862538538873196, 0.013020659796893597, 0.035443056374788284, 0.011292033828794956, -0.006131026893854141, -0.033254291862249374, -0.011260943487286568, -0.03718411922454834, 0.015458147041499615, 0.009047306142747402, -0.022633811458945274, 0.048923853784799576, 0.0477299839258194, 0.02723519131541252, -0.032010678201913834, 0.03750745952129364, -0.005338221788406372, 0.009097050875425339, 0.04123830795288086, -0.02191251516342163, 0.020818132907152176, 0.0015265386318787932, 0.017423059791326523, 0.00873018428683281, -0.012858989648520947, -0.03196093067526817, 0.0006633914308622479, 0.011926277540624142, 0.0046293605118989944, -0.01967400498688221, 0.003951590042561293, 0.022173672914505005, 0.051435958594083786, 0.0012809245381504297, 0.020494792610406876, 0.0059289392083883286, 0.020494792610406876, 0.03467201441526413, -0.010085726156830788, 0.03504509851336479, 0.00010182106052525342, -0.02410127781331539, 0.00011552026990102604, 0.04365092143416405, 0.011640246026217937, -0.017771273851394653, 0.01859205961227417, 0.027757510542869568, 0.015296476893126965, 0.0013703093864023685, -0.012405069544911385, -0.033254291862249374, 0.019798366352915764, -0.009090833365917206, -0.009208976291120052, -0.007716637570410967, 0.037706438452005386, -0.03061782568693161, 0.006504111923277378, 0.010844332166016102, 0.03034423105418682, -0.006982903927564621, -0.0012762609403580427, -0.012548085302114487, -0.023666013032197952, 0.03584101423621178, -0.01435132883489132, -0.03320454806089401, 0.01870398409664631, -0.016278933733701706, -0.007884525693953037, -0.011864096857607365, 0.006121699698269367, 0.02656363882124424, -0.022957151755690575, -0.003101267386227846, -0.02002221718430519, 0.022273162379860878, 0.01596803031861782, 0.025966702029109, -0.023417290300130844, 0.02515835128724575, 0.01683856174349785, -0.005204533226788044, 0.008294918574392796, 0.019126813858747482, 0.007809908594936132, -0.0027623821515589952, -0.01605508290231228, -0.019624261185526848, -0.023367544636130333, 0.016440603882074356, 0.025817468762397766, -0.00600044708698988, 0.04101445525884628, 0.0434519425034523, -0.02656363882124424, -0.029846783727407455, -0.00578903267160058, -0.022397523745894432, 0.029249848797917366, -0.002073729643598199, -0.011534539051353931, 0.02902599796652794, 0.004128805361688137, -0.011745953001081944, -0.013418616726994514, -0.034249186515808105, -0.02402666211128235, -0.017522549256682396, -0.04402400553226471, 0.014015552587807178, -0.031090401113033295, -0.015570072457194328, -0.007188100833445787, -0.053873445838689804, 0.002456141635775566, -0.021278269588947296, 0.0003130414697807282, -0.014600052498281002, -0.01737331598997116, -0.042357560247182846, -0.0037837016861885786, 0.02027094177901745, -0.02566823549568653, -0.0026893196627497673, -0.012342888861894608, -0.029448827728629112, 0.023815246298909187, 0.017286263406276703, 0.004436600022017956, 0.031737081706523895, 0.05228161811828613, -0.0036562310997396708, -0.028628040105104446, -0.010987347923219204, -0.04554121941328049, 0.016067519783973694, 0.025071298703551292, 0.029523445293307304, -0.027682892978191376, -0.02691185101866722, 0.004909174051135778, -0.013082840479910374, 0.003510106122121215, 0.06839887797832489, 0.011907623149454594, 0.0061465720646083355, -0.0028198992367833853, -0.03837798908352852, -0.00531024020165205, -0.007455477956682444, -0.008823455311357975, 0.027359552681446075, 0.020357994362711906, 0.00449878117069602, -0.012175001204013824, -0.0061123729683458805, 0.03034423105418682, -0.04678483307361603, 0.0005114370724186301, 0.0009171668207272887, -0.0030111053492873907, -0.004281148314476013, 0.0040883878245949745, -0.0010974911274388433, -0.0010399739257991314, 0.041113946586847305, -0.049869000911712646, 0.019462591037154198, 0.002435932867228985, -0.018368208780884743, -0.013916063122451305, -0.0015024435706436634, -0.026613382622599602, -0.03355276212096214, -0.025792596861720085, 0.038900308310985565, -0.02340485341846943, 0.008618258871138096, -0.01040284801274538, 0.014177222736179829, -0.038925182074308395, 0.00014845666009932756, 0.0049558100290596485, 0.008680439554154873, 0.036985140293836594, -0.03365224972367287, 0.009606934152543545, -0.010632917284965515, -0.027931615710258484, -0.013642467558383942, -0.0008254501153714955, -0.009103269316256046, 0.04024341329932213, -0.030692443251609802, -0.013816573657095432, 0.042307816445827484, 0.009016215801239014, 0.0044832355342805386, 0.05118723586201668, 0.011509666219353676, -0.017423059791326523, -0.04770511016249657, 0.001949368161149323, 0.02559361793100834, -0.007150792051106691, 0.013654903508722782, 0.023330235853791237, 0.04879949241876602, 0.025817468762397766, 0.013530542142689228, -0.003308018669486046, -0.02331780083477497, -0.019251175224781036, -0.017311135306954384, -0.042656030505895615, 0.016030211001634598, -0.011347996070981026, -0.013431052677333355, 0.015594945289194584, 0.0013835228746756911, -0.004144350532442331, 0.00450499914586544, -0.010533427819609642, 0.01040284801274538, 0.013480797410011292, -0.005353766959160566, -0.034572526812553406, 0.0018871873617172241, -0.011708645150065422, -0.014177222736179829, 0.011024655774235725, 0.009165449999272823, -0.019313357770442963, -0.014562743715941906, 0.014226967468857765, 0.006497893948107958, -0.041710879653692245, -0.031413741409778595, 0.016714198514819145, 0.048923853784799576, 0.016925614327192307, -0.031413741409778595, -0.0043775285594165325, -0.010701315477490425, -0.011173889972269535, -0.039870329201221466, 0.05844995379447937, -0.02619055286049843, 0.016341114416718483, 0.007971578277647495, 0.012262053787708282, -0.011279596947133541, 0.022148801013827324, 0.016577402129769325, -0.0018840782577171922, 0.02783212624490261, -0.0457153245806694, 0.0041412413120269775, 0.010129252448678017, 0.01297091506421566, -0.026115937158465385, 0.02294471487402916, -0.008624477311968803, 0.005748615134507418, -0.013169893994927406, 0.0041319141164422035, -0.003876972943544388, 0.0015576290898025036, -0.0036344677209854126, 0.012305581010878086, -0.0050273179076612, -0.024548979476094246, -0.001549079199321568, 0.013269382528960705, -0.005136134102940559, 0.026314914226531982, -0.0359405018389225, -0.029324466362595558, -0.03136399760842323, -0.0060315378941595554, -0.008021323010325432, 0.009942710399627686, -0.016278933733701706, -0.053326256573200226, 0.009924056008458138, 0.0010920503409579396, -0.03773130849003792, -0.015694433823227882, -0.03248324990272522, 0.033005569130182266, -0.03136399760842323, 0.03181169927120209, -0.011627810075879097, -0.0019711314234882593, -0.012747064232826233, -0.03026961348950863, 0.02591695822775364, 0.03434867411851883, -0.034199438989162445, 0.01818166673183441, -0.02718544565141201, 0.06999070942401886, -0.016390860080718994, 0.0159929022192955, -0.013704648241400719, 0.011895187199115753, -0.022957151755690575, -0.0021157017908990383, -0.001056296401657164, -0.022521886974573135, -0.01583123207092285, -0.00818921159952879, 0.03385122865438461, 0.033005569130182266, -0.028951380401849747, 0.017883198335766792, 0.03320454806089401, 0.003995116334408522, 0.012373979203402996, 0.015109934844076633, -0.008755057118833065, -0.028827019035816193, 0.0487000048160553, 0.02755853161215782, 0.014003116637468338, 0.018144357949495316, 0.003301800461485982, -0.002294471487402916, 0.008618258871138096, -0.017385752871632576, -0.011907623149454594, 0.003553632879629731, -0.01122985314577818, 0.0018467698246240616, 0.051137492060661316, -0.021551866084337234, -0.00289451633580029, 0.020308250561356544, 0.010060853324830532, -0.011441267095506191, -0.014799030497670174, 0.019736185669898987, -0.005185878835618496, 0.02513347938656807, 0.002802799688652158, 0.03927339240908623, -0.0036189225502312183, 0.013319127261638641, -0.06645884364843369, 0.014301584102213383, 0.04904821515083313, -0.029896529391407967, 0.010135470889508724, 0.02377793751657009, -0.01501044537872076, 0.0009078396833501756, 0.014301584102213383, 0.015072626061737537, 0.01645304076373577, -0.02202443964779377, -0.01211903803050518, -0.014711977913975716, 0.03897492587566376, 0.007300026249140501, -0.037706438452005386, -0.005714415572583675, 0.047033559530973434, -0.002533867722377181, 0.06247926875948906, 0.008226520381867886, 0.0066720000468194485, -0.009625587612390518, 0.002381524769589305, -0.0031525667291134596, -0.01916412264108658, 0.008748838678002357, 0.001941595459356904, 0.010452592745423317, -0.035766396671533585, 0.021203653886914253, -0.01769665628671646, 0.011248506605625153, 0.023031769320368767, -0.011963586322963238, 0.0040075527504086494, -0.0031867660582065582, 0.003095049411058426, 0.0009218303603120148, -0.004190986044704914, -0.018828347325325012, -0.00647923955693841, 0.025792596861720085, 0.019611824303865433, 0.005854322575032711, -0.044247858226299286, 0.06213105469942093, 0.021738408133387566, 0.012554303742945194, -0.0013780819717794657, 0.03504509851336479, 0.05531604215502739, -0.031090401113033295, 0.00031537323957309127, 0.0067155263386666775, 0.011689990758895874, -0.02056940831243992, -0.029125487431883812, 0.029125487431883812, 0.02718544565141201, -0.0262900423258543, -0.005661562085151672, 0.03526895120739937, 0.014575179666280746, 0.038576968014240265, 0.01808217726647854, -0.0038521005772054195, 0.032358888536691666, 0.039198778569698334, 0.00023531547049060464, -0.0019276047823950648, 0.017709091305732727, 0.013555414974689484, 0.0036251407582312822, -0.006895850878208876, 0.003960917238146067, 0.015856103971600533, 0.007026430685073137, -0.0019307138863950968, 0.010098162107169628, -0.020096834748983383, 0.0385272242128849, -0.03661205619573593, -0.019611824303865433, 0.038626715540885925, -0.007212972734123468, 0.03832824528217316, -0.034522779285907745, 0.012747064232826233, -0.01053964626044035, -0.005425274837762117, 0.007959142327308655, 0.012504559010267258, 0.022285599261522293, -0.0014052861370146275, 0.00952609907835722, 0.007486568298190832, 0.020843004807829857, -0.03283146396279335, -0.02691185101866722, 0.02037043124437332, -0.026339787989854813, 0.0015692879678681493, -0.026041319593787193, 0.01044637430459261, 0.01824384741485119, -0.012523213401436806, 0.023442162200808525, 0.01918899454176426, 0.0030546318739652634, -0.004539198707789183, 0.007212972734123468, 0.008593386970460415, 0.027981361374258995, 0.04524274915456772, 0.01242994237691164, 0.000397179857827723, -0.0015514109982177615, -0.00460137939080596, 0.038626715540885925, 0.011938713490962982, -0.012771936133503914, 0.02345459908246994, -0.026712872087955475, -0.04434734582901001, 0.019611824303865433, -0.006771489046514034, -0.006709308363497257, -0.02472308650612831, 0.036089736968278885, 0.005490564741194248, -0.003908063285052776, 0.03534356877207756, 0.019872983917593956, 0.000672718568239361, 0.013642467558383942, 0.018927836790680885, 0.000905507942661643, -0.029498571529984474, -0.018803473562002182, 0.015433275140821934, -0.05056542903184891, -0.034796375781297684, -0.016477912664413452, -0.00899756234139204, -0.017597166821360588, -0.005692652426660061, -0.019611824303865433, 0.004822121001780033, -0.007685547228902578, 0.02845393493771553, 0.006678218021988869, -0.06486701220273972, -0.000140781223308295, 0.012510777451097965, 0.004915392491966486, -0.01515967957675457, -0.01028470415621996, 0.025792596861720085, 0.010116816498339176, 0.0012770382454618812, 0.034547653049230576, -0.045441728085279465, -0.01969887688755989, -0.020283376798033714, -0.004361983388662338, -0.0013843000633642077, 0.029324466362595558, 0.028304699808359146, -0.0032707101199775934, -0.027359552681446075, -0.019736185669898987, 0.0024950045626610518, 0.01583123207092285, -0.011801916174590588, -0.017112156376242638, -0.009638024494051933, 0.021502120420336723, 0.023852555081248283, 0.015657125040888786, 0.020382866263389587, 0.04651124030351639, 0.02112903632223606, 0.011994676664471626, -0.016092391684651375, -0.026638254523277283, 0.03681103512644768, -0.02050722762942314, -0.0023193438537418842, -0.013219638727605343, 0.003519433317705989, 0.011596719734370708, 0.0013221192639321089, -0.0008029096061363816, 0.016440603882074356, -0.003926717676222324, -0.01969887688755989, 0.00904108863323927, -0.005540309473872185, 0.0062087532132864, 0.04469555988907814, 0.01716190204024315, -0.006295806262642145, -0.006746617145836353, 0.014376201666891575, 0.005932048428803682, -0.008723966777324677, -0.01125472504645586, -0.03365224972367287, -0.010396629571914673, 0.023118821904063225, -0.004887410905212164, -0.014873648062348366, 0.04116369038820267, 0.013518106192350388, 0.017758836969733238, 0.013804137706756592, -0.013965807855129242, 0.0009824566077440977, -0.032607611268758774, -0.007449259981513023, -0.01517211552709341, -0.006628473289310932, -0.04121343418955803, -0.0029955601785331964, 0.015818795189261436, 0.02691185101866722, -0.009345774538815022, 0.002302244072780013, 0.008071067743003368, -0.02151455730199814, 0.0008363318047486246, -0.002809017663821578, 0.06476752460002899, 0.0044397092424333096, -0.02207418531179428, -0.008207865990698338, 0.04253166913986206, 0.00766689283773303, 0.012858989648520947, 0.008083503693342209, 0.026464149355888367, 0.051435958594083786, -0.013331564143300056, 0.04758074879646301, 0.012492123059928417, -0.007928051985800266, 0.003982680384069681, 0.004539198707789183, 0.04352656006813049, 0.008195430040359497, 0.006342441774904728, 0.03034423105418682, -0.008624477311968803, -0.017870761454105377, 0.009837002493441105, -0.005649125669151545, 0.008717748336493969, -0.026489021256566048, -0.004075951408594847, 0.012025767005980015, -0.03352788835763931, 0.026787489652633667, -0.004278039094060659, -0.0089042903855443, -0.011366650462150574, -0.0069704679772257805, -0.012883861549198627, -0.012330452911555767, -0.0037028666120022535, 0.0038614277727901936, 0.009277375414967537, 0.018330899998545647, -0.02783212624490261, 0.0005161006702110171, -0.009401736781001091, 0.0015832786448299885, 0.005089498590677977, 0.013431052677333355, -0.04089009389281273, -0.021340450271964073, 0.014226967468857765, -0.022285599261522293, 0.02423807606101036, -0.021526994183659554, -0.026339787989854813, -0.022223418578505516, -0.023280492052435875, -0.01482390332967043, -0.003438598243519664, -0.017932942137122154, -0.03559229150414467, -0.019586952403187752, 0.029001126065850258, -0.017982687801122665, -0.04156164824962616, 0.012168782763183117, -0.02280791848897934, 0.02094249427318573, -0.003761938540264964, -0.01843038946390152, -0.0034106168895959854, 0.024847447872161865, -0.026439277455210686, -0.014214531518518925, -0.001992894569411874, -0.011546975001692772, -0.02037043124437332, 0.007007776293903589, -0.0012809245381504297, 0.01815679483115673, -0.027036212384700775, -0.01248590461909771, 0.0067528351210057735, -0.01578148640692234, 0.027583403512835503, 0.027334680780768394, -0.0035816142335534096, 0.0016975358594208956, -0.03370199352502823, 0.003531869500875473, 0.004778594709932804, 0.037631820887327194, -0.01361759565770626, -0.018057305365800858, 0.01404042448848486, -0.02723519131541252, 0.015383530408143997, 0.021029546856880188, -0.008649349212646484, -0.04807819426059723, 0.04372553899884224, -0.00460759736597538, 0.01053964626044035, -0.03126450628042221, -0.020768387243151665, 0.03429893031716347, -0.014388637617230415, 0.002536976709961891, 0.014264276251196861, -0.013916063122451305, 0.018741292878985405, -0.004138132091611624, 0.018629368394613266, -0.00938930083066225, 0.003830337431281805, -0.032657355070114136, -0.023952044546604156, -0.03280659019947052, -0.009146795608103275, -0.003314236644655466, 0.020121706649661064, 0.012946043163537979, -0.009837002493441105, -0.01921386830508709, 0.0055247643031179905, -0.021153908222913742, 0.01683856174349785, 0.0346471406519413, -0.024934500455856323, 0.040143925696611404, 0.025394639000296593, -0.008574732579290867, 0.012666229158639908, -0.007990232668817043, 0.020656462758779526, -0.02245970629155636, 0.013754392974078655, -0.020631588995456696, 0.008910508826375008, -0.008139466866850853, 0.0029240520671010017, -0.009271157905459404, -0.011074400506913662, 0.004302911460399628, -0.022795481607317924, -0.00019305195019114763, -0.02202443964779377, 0.004694650415331125, -0.017659347504377365, -0.025568746030330658, 0.011347996070981026, 0.014463254250586033, -0.028553424403071404, 0.0174852404743433, -0.02847880683839321, 0.004604488145560026, 0.0477299839258194, 0.019126813858747482, 0.00803997740149498, -0.002669110894203186, 0.01517211552709341, 0.010346885770559311, -0.04195960611104965, 0.003998225554823875, 0.002014657948166132, 0.0002003387635340914, -0.0037557203322649, 0.009146795608103275, 0.010744842700660229, 0.03693539649248123, 0.01404042448848486, -0.015793923288583755, -0.0030561864841729403, -0.03034423105418682, 0.01216256432235241, 0.0170002318918705, -0.01916412264108658, -0.021626481786370277, -0.01295847911387682, 0.03385122865438461, -0.045814815908670425, 0.017572294920682907, 0.027309807017445564, 0.0021530103404074907, 0.0027219646144658327, -0.01607995480298996, -0.01697535812854767, -0.0015607380773872137, 0.022273162379860878, -0.008755057118833065, 0.016254061833024025, 0.005562072619795799, 0.023989353328943253, 0.00798401515930891, 0.033304035663604736, -0.02559361793100834, -0.01313258521258831, -0.06198182329535484, 0.001720853615552187, -0.008773711510002613, 0.01091894879937172, -0.0005611817468889058, 0.03942262753844261, -0.007965360768139362, -0.014935828745365143, -0.0016322460724040866, -0.002320898463949561, -0.046063538640737534, -0.0061745536513626575, -0.028652913868427277, -0.01482390332967043, 0.02342972531914711, 0.02037043124437332, 0.03564203530550003, -0.009370646439492702, 0.03996982052922249, 0.018505007028579712, -0.026638254523277283, 0.03459739685058594, 0.0017068629385903478, 0.005487455520778894, -0.04375041276216507, -0.005571399815380573, -0.008798583410680294, 0.04148703068494797, -0.026464149355888367, 0.0017472804756835103, 0.003510106122121215, -0.024188332259655, 0.010533427819609642, 0.018057305365800858, -0.019960036501288414, 0.025257840752601624, -0.0316624641418457, -0.0043060206808149815, -0.028553424403071404, -0.004887410905212164, -0.005611817352473736, -0.03243350610136986, -0.015507891774177551, -0.01964913308620453, -0.004934046417474747, 0.00024367102014366537, 0.017124593257904053, -0.01629137061536312, -0.028652913868427277, -0.010371757671236992, 0.026464149355888367, -0.03397559002041817, -0.031090401113033295, -0.011658900417387486, -0.027284935116767883, 0.010259832255542278, -0.03417456895112991, -0.0004539198416750878, -0.022123929113149643, 0.0031385759357362986, 0.005540309473872185, 0.009507444687187672, -0.004094605799764395, 0.0009536980651319027, -0.013866318389773369, 0.030841676518321037, -0.06327518075704575, 0.02813059464097023, 0.03283146396279335, 0.002002221764996648, 0.022223418578505516, 0.01889052800834179, 0.007691765204071999, -0.008898072876036167, -0.02594183012843132, -0.014923391863703728, 0.012125256471335888, -0.02591695822775364, -0.034821249544620514, -0.029548317193984985, -0.001801688689738512, -0.030070634558796883, 0.011453703977167606, 0.0222109816968441, -0.015532763674855232, -0.023952044546604156, 0.03693539649248123, 0.003942262846976519, -0.004197204019874334, 0.01612970046699047, -0.0010555190965533257, -0.0290757417678833, 0.00019761835574172437, 0.0026504567358642817, -0.007486568298190832, 0.011770825833082199, 0.0033453272189944983, 0.037656694650650024, 0.03250812366604805, -0.0024001789279282093, 0.036736417561769485, 0.0055869449861347675, 0.03121476247906685, 0.010707533918321133, -0.032035548239946365, -0.04646149277687073, -0.020034654065966606, 0.015047754161059856, -0.006833670195192099, -0.013555414974689484, 0.02056940831243992, -0.002313125878572464, 0.0003983457572758198, 0.008556078188121319, -0.004623142536729574, 0.02172597125172615, 0.011665117926895618, 0.020308250561356544, -0.015122370794415474, 0.013232074677944183, 0.02121608890593052, -0.02347947098314762, -0.030219869688153267, 0.025966702029109, 0.02626517042517662, -0.008251392282545567, 0.013990680687129498, -0.009575843811035156, -0.04847615212202072, 0.021029546856880188, -0.027085956186056137, -0.003447925439104438, 0.0024779050145298243, 0.021303143352270126, 0.003684212453663349, -0.011018438264727592, 0.028553424403071404, -0.005956920795142651, -0.04663560166954994, -0.02599157579243183, -0.01732357032597065, -0.010154125280678272, 0.011466139927506447, -0.014139913953840733, -0.005580727010965347, 0.016739072278141975, 0.004371310118585825, -0.019947601482272148, -0.014152349904179573, 0.022820353507995605, 0.013406180776655674, 0.003379526548087597, -0.018853219226002693, -0.011951150372624397, 0.016005339100956917, 0.04081547632813454, 0.0005790587165392935, -0.02029581367969513, -0.0011860987870022655, -0.0014938937965780497, -0.018902963027358055, -0.0013438825262710452, 0.03153810277581215, 0.018679112195968628, -0.009165449999272823, 0.0013788592768833041, 0.04322809353470802, -0.02388986386358738, 0.01723651774227619, -0.014973136596381664, 0.015706870704889297, -0.023976916447281837, 0.023678449913859367, -0.014649796299636364, 0.0047195227816700935, 0.0009575843578204513, -0.010651571676135063, 0.011553192511200905, 0.034870993345975876, 0.03096603974699974, -0.07068713754415512, -0.021638918668031693, 0.024474363774061203, -0.04588942974805832, 0.009370646439492702, 0.006448149215430021, -0.023927172645926476, 0.016316242516040802, -0.033328909426927567, 0.03034423105418682, -0.03785567358136177, 0.016739072278141975, -0.0040977150201797485, 0.03337865322828293], [0.006036297418177128, 0.030148794874548912, 0.05012118071317673, 0.0024549392983317375, -0.06191440299153328, 0.016917087137699127, -0.004065807443112135, 0.010782711207866669, -0.009671153500676155, 0.03231247141957283, -0.017297513782978058, -0.013742905110120773, 0.030267678201198578, -0.03944546356797218, -0.0494554340839386, 0.0389937087893486, -0.013992559164762497, 0.054543640464544296, -0.027414480224251747, -0.00806028489023447, 0.021089890971779823, 0.04165669530630112, -0.04548473656177521, 0.0058431122452020645, -0.008928133174777031, 0.03276422619819641, 0.030101241543889046, -0.03656848892569542, 0.03678248077630997, -0.014515645802021027, 0.08473999053239822, -0.014313544146716595, 0.008208888582885265, 0.004065807443112135, -0.004140109289437532, 0.025393463671207428, -0.007471812888979912, 0.011264189146459103, 0.02076890505850315, 0.005629122257232666, -0.00025206967256963253, 0.04122871533036232, -0.021850742399692535, -0.019746508449316025, -0.019152093678712845, 0.04189446195960045, 0.05682619661092758, 0.014907960779964924, 0.0173807330429554, 0.03495167940855026, 0.04750575125217438, 0.04027764871716499, -0.03171805292367935, 0.06186684966087341, 0.013326813466846943, -0.012090427801012993, -0.00031968450639396906, 0.0034743633586913347, 0.03642582893371582, -0.026867616921663284, -0.03642582893371582, -0.00386965018697083, -0.0690949484705925, 0.0028769748751074076, -0.00599766056984663, -0.014028224162757397, -0.007697691209614277, 0.051452673971652985, -0.024335402995347977, -0.02369343303143978, -0.012506518512964249, 0.03540343418717384, 0.050929587334394455, -0.05958428978919983, -0.04289307817816734, 0.0032336246222257614, 0.02622564695775509, -0.02781868167221546, 0.024989260360598564, 0.006401863414794207, -0.011822939850389957, 0.01037850882858038, -0.08464488387107849, 0.059394076466560364, 0.015787696465849876, -0.01371912844479084, -0.08207700401544571, 0.00010838809976121411, -0.014242214150726795, -0.014860407449305058, -0.005435937084257603, -0.006006576586514711, -0.0002929357870016247, 0.046816226094961166, 0.028199108317494392, -0.011394960805773735, 0.03740067407488823, -0.001144994399510324, -0.03492790088057518, 0.03326353430747986, 0.010741102509200573, -0.025512346997857094, 0.015870915725827217, 0.002064110478386283, 0.002120580058544874, -0.03281177952885628, -0.016584213823080063, 0.03633072227239609, 0.012001264840364456, -0.015645036473870277, 0.023051463067531586, -0.02270670235157013, -0.06215216964483261, 0.020887788385152817, 0.004874213598668575, 0.01724996045231819, -0.004889074247330427, -0.06999846547842026, 0.05597023665904999, -0.027034053578972816, -0.08055529743432999, 0.053117040544748306, 0.03540343418717384, -0.09215830266475677, 0.01375479344278574, -0.018629007041454315, 0.021410875022411346, -0.031147412955760956, -0.05734928324818611, 0.019615737721323967, -0.0031414900440722704, -0.04113360866904259, 0.026273200288414955, -0.011585173197090626, 0.023871758952736855, -0.005504294764250517, 0.030838318169116974, -0.006006576586514711, -0.04348749667406082, -0.03614050894975662, -0.0015425102319568396, -0.0029052095487713814, -0.013041493482887745, 0.003406005445867777, -0.0491701140999794, 0.012013153173029423, 0.04032520204782486, 0.028959961608052254, 0.011460346169769764, -0.028912408277392387, -0.01867656037211418, 0.029578154906630516, -0.009730595164000988, -0.00021176080917939544, 0.03492790088057518, 0.04084828868508339, 0.010348787531256676, 0.051072247326374054, -0.0339055061340332, -0.008339660242199898, -0.04798128455877304, -0.0021621892228722572, -0.02068568766117096, -0.038042642176151276, 0.020067494362592697, 0.007578807882964611, -0.0038310131058096886, 0.011906158179044724, -0.05801502987742424, -0.04743441939353943, -0.021529758349061012, -0.04781484603881836, -0.03709157556295395, -0.014598864130675793, 0.013956894166767597, -0.04146648198366165, 0.022742368280887604, -0.005905525758862495, 0.004547284450381994, 0.0037151018623262644, -0.008743863552808762, 0.018498234450817108, -0.051833100616931915, -0.00427385326474905, -0.06766834855079651, 0.0003003659949172288, 0.03302576765418053, 0.010360675863921642, -0.036901362240314484, 0.0035130002070218325, -0.009683041833341122, -0.011668391525745392, -0.01664365641772747, -0.030624328181147575, -0.08654700964689255, 0.009249117225408554, -0.02098289504647255, 0.014741524122655392, -0.01116908248513937, 0.022694814950227737, 0.029958581551909447, -0.02406197227537632, 0.038327962160110474, 0.02113744430243969, -0.03656848892569542, -0.012351970188319683, -0.01533594075590372, 0.0039023428689688444, 0.021018560975790024, -0.014028224162757397, 0.0316467247903347, -0.05487651377916336, -0.018985657021403313, 0.006496970076113939, -0.017951373010873795, 0.03338241949677467, -0.009683041833341122, 0.02758091688156128, -0.017559057101607323, 0.0029185840394347906, -0.032336246222257614, -0.020174488425254822, -0.005114952102303505, -0.004342210944741964, -0.015133839100599289, 0.02960193157196045, 0.008523929864168167, 0.02263537235558033, 0.016810093075037003, -0.053021933883428574, -0.0052695004269480705, 0.024466175585985184, 0.014729635789990425, -0.0028205052949488163, 0.01747583970427513, -0.013243595138192177, 0.0197108443826437, -0.00895785354077816, 0.035641200840473175, 0.004713721107691526, 0.03680625557899475, -0.005691536236554384, 0.016298895701766014, 0.019140204414725304, 0.04864703118801117, -0.01333870179951191, -0.030077464878559113, -0.026178093627095222, 0.058585669845342636, -0.001017194939777255, 0.02257593162357807, -0.04496164992451668, 0.08022242039442062, -0.08935265988111496, 0.03628316894173622, 0.027176713570952415, -0.004386792425066233, -0.035427212715148926, 0.007905736565589905, -0.04025387018918991, 0.012268751859664917, -0.002508436795324087, -0.0033406196162104607, 0.024168966338038445, -0.04184690862894058, -0.012565960176289082, 0.04374903813004494, -0.03545098751783371, -0.03545098751783371, 0.031076084822416306, -0.09444086253643036, -0.0037240181118249893, -0.008559594862163067, 0.018474457785487175, -0.012589736841619015, 0.03635450080037117, -0.0045116194523870945, -0.032645344734191895, 0.024228408932685852, -0.009171843528747559, -0.02166052907705307, -0.00021268958516884595, -0.021161220967769623, -0.044343456625938416, 0.001458548940718174, 0.04893235117197037, -0.010764879174530506, -0.005213031079620123, -0.03614050894975662, 0.048242826014757156, 0.038113974034786224, -0.06505291908979416, -0.02503681369125843, -0.009629543870687485, 0.03216981142759323, 0.012506518512964249, -0.014729635789990425, -0.014717747457325459, -0.016084905713796616, -0.009118345566093922, 0.0032098479568958282, 0.01867656037211418, -0.01859334111213684, -0.011287965811789036, -0.05606534332036972, 0.020507361739873886, 0.025013037025928497, 0.02848442830145359, 0.012577848508954048, -0.008488264866173267, -0.035498540848493576, 0.005427020601928234, -0.00038897115155123174, -0.06728792190551758, -0.008726031519472599, -0.04003988206386566, -0.0019630598835647106, -0.006271091755479574, -0.006170040927827358, -0.009302615188062191, 0.05682619661092758, 0.009058903902769089, 0.029197728261351585, -0.027319373562932014, -0.022825585678219795, -0.03342997282743454, 0.07014112174510956, 0.02257593162357807, -0.056398216634988785, -0.02322978898882866, -0.043130844831466675, -0.0029869419522583485, 0.03469013422727585, -0.00539432791993022, -0.00978409219533205, 0.025845220312476158, -0.001970489975064993, 0.014289767481386662, 0.005177366081625223, 0.0017223212635144591, 0.01195965614169836, -0.02629697695374489, -0.009688985534012318, -0.01747583970427513, 0.02157731167972088, 0.011014534160494804, 0.04548473656177521, 0.07846295088529587, -0.0041817184537649155, 0.025464793667197227, -0.001774332602508366, 0.008910300210118294, -0.03875594213604927, 0.01157328486442566, -0.03951679542660713, 0.022100398316979408, 0.015359717421233654, 0.01941363699734211, -0.008666589856147766, 0.011103696189820766, 0.017368843778967857, 0.022005291655659676, 0.04332105815410614, 0.044343456625938416, 0.009950528852641582, 0.02075701765716076, -0.01679820381104946, -0.013635910116136074, 0.015264610759913921, -0.017178630456328392, -0.010699492879211903, -0.00766797037795186, 0.009320447221398354, 0.000824009592179209, -0.07047399878501892, -0.04080073535442352, 0.034523699432611465, 0.03813774883747101, -0.024264072999358177, 0.02293257974088192, 0.03861328214406967, -0.03606918081641197, 0.003608106868341565, -0.014693970791995525, 0.06353121250867844, 0.0020522221457213163, -0.08683232963085175, 0.008702254854142666, 0.0246563870459795, 0.011793219484388828, -0.004083639942109585, 0.021042337641119957, -0.028817301616072655, 0.026796286925673485, -0.013600245118141174, -0.028270438313484192, 0.02317034639418125, 0.042156003415584564, -0.003649716032668948, -0.03625939413905144, 0.009201563894748688, -0.04115738347172737, -0.0020388478878885508, -0.02855575829744339, -0.012078539468348026, 0.003120685461908579, -0.02082834765315056, -0.03635450080037117, 0.0022275750525295734, -0.030600551515817642, 0.026796286925673485, -0.037139128893613815, 0.05230863392353058, -0.008731975220143795, 0.02376476302742958, -0.006324589252471924, -0.03576008602976799, 0.059108756482601166, -0.017416397109627724, -0.05240374058485031, 0.05121490731835365, 0.04653090611100197, 0.001254961360245943, -0.002527755219489336, -0.06633685529232025, -0.034880347549915314, -0.02264726161956787, -0.036544714123010635, 0.05554226040840149, -0.06077312305569649, 0.0019363111350685358, 0.0006237655761651695, 0.021303879097104073, 0.005911469925194979, -0.016726873815059662, -0.045627396553754807, 0.013612133450806141, -0.017654163762927055, -0.018498234450817108, -0.03568875417113304, -0.015133839100599289, 0.01120474748313427, -0.021529758349061012, 0.034285932779312134, -0.012167701497673988, 0.04346371814608574, -0.00035051986924372613, -0.0035873022861778736, -0.014372985810041428, 0.0016836841823533177, -0.006170040927827358, -0.02824666164815426, -0.046958886086940765, -0.0004759045550599694, -0.04783862456679344, 0.026701180264353752, -0.04510430991649628, -0.07242368161678314, 0.025607453659176826, -0.03392928093671799, -0.02698650024831295, 0.03756710886955261, 0.05967939645051956, 0.06277035921812057, 0.011109640821814537, -1.9399796656216495e-05, -0.04798128455877304, -0.016001686453819275, 0.000615592347458005, 0.018997544422745705, -0.018177250400185585, 0.04907500743865967, -0.00137755973264575, -0.0169527530670166, 0.004110388457775116, 0.01203098613768816, -0.024014418944716454, -0.05316459387540817, -0.013350590132176876, -0.02712916024029255, 0.004208467435091734, 0.00992675218731165, 0.0006334248464554548, -0.03029145486652851, 0.05539960041642189, -0.039683230221271515, 0.016726873815059662, 0.0043659876100718975, -0.03880349546670914, -0.016453443095088005, -0.022920692339539528, 0.012863168492913246, 0.021101778373122215, -0.01064599584788084, -0.0170240830630064, -0.018319910392165184, -0.04557984322309494, 0.0463406927883625, 0.06476759910583496, 0.010794599540531635, -0.017059747129678726, 0.008416934870183468, 0.03604540228843689, 0.0071805487386882305, 0.03109985962510109, -0.004339239094406366, -0.00772146787494421, -0.015133839100599289, -0.027699800208210945, 0.0023613187950104475, -0.021708082407712936, -0.007697691209614277, 0.0011264188215136528, 0.004746414255350828, -0.0055577922612428665, -0.013635910116136074, 0.027271820232272148, 0.0015543985646218061, -0.027937564998865128, 0.02810400165617466, 0.024822823703289032, -0.04106227681040764, 0.011710001155734062, -0.006401863414794207, -0.029102621600031853, -0.0033257592003792524, -0.002046277979388833, 0.025369687005877495, 0.0006077906582504511, 0.013897453434765339, 0.01210231613367796, -0.036996468901634216, -0.03247890621423721, 0.050168734043836594, 0.00847043190151453, -0.005334886256605387, 0.01012290921062231, -0.0056558712385594845, 0.01113341748714447, -0.031670499593019485, 0.05687374994158745, 0.01565692573785782, 0.00971276219934225, -0.008315883576869965, 0.01739262044429779, -0.007103274576365948, 0.020352814346551895, 0.02594032697379589, 0.010812432505190372, 0.03247890621423721, 0.015312164090573788, 0.0223262757062912, -0.009463107213377953, -0.00947499554604292, -0.006639630068093538, -0.0019883224740624428, 0.025607453659176826, -0.011442514136433601, 0.023943088948726654, -0.02098289504647255, 0.02359832637012005, 0.03036278486251831, 0.01229252852499485, -0.0006668607820756733, 0.012340081855654716, 0.01495551411062479, -0.0007006681989878416, 0.016370223835110664, -0.01030123420059681, -0.01368346344679594, -0.003355480032041669, 0.024002529680728912, -0.0009220882784575224, -0.03787620738148689, 0.06291302293539047, 0.03457125276327133, -0.0009168871329165995, -0.030267678201198578, 0.01610868237912655, -0.013172265142202377, -0.010521168820559978, 0.02375287562608719, -0.018545787781476974, 0.006990335416048765, 0.010871874168515205, 0.012839391827583313, 0.009457163512706757, -0.016144346445798874, 0.03457125276327133, 0.05525694042444229, 0.01337436679750681, -0.012696731835603714, -0.0009740996756590903, -0.011109640821814537, 0.022659149020910263, 0.018700337037444115, -0.03839929401874542, 0.004169830121099949, 0.03314465284347534, -0.004196579102426767, 0.004565116949379444, 0.01030717883259058, -0.0057004522532224655, -0.03430970758199692, -0.00955227017402649, -0.0003923147451132536, 0.035950299352407455, -0.006853620056062937, 0.0026065155398100615, 0.019068874418735504, 0.024775270372629166, 0.0247277170419693, 0.023883646354079247, -0.01544293574988842, -0.029102621600031853, 0.021684305742383003, -0.035569872707128525, -0.02534591034054756, -0.018712224438786507, 0.029173951596021652, -0.019473077729344368, 0.010794599540531635, 0.02045980840921402, 0.0029379024636000395, 0.005718284752219915, -0.015585594810545444, -0.003584330203011632, -0.04983586072921753, 0.0246563870459795, -0.004354099277406931, -0.015324052423238754, 0.024751493707299232, -0.019282864406704903, 0.008232665248215199, 0.018759777769446373, 0.008844914846122265, 0.02421651966869831, -0.008815193548798561, 0.01722618378698826, -0.005813391413539648, 0.02113744430243969, 0.007662026211619377, -0.005828251596540213, -0.018474457785487175, 0.0397070087492466, 0.0341908261179924, 0.006401863414794207, 0.006829843390733004, -0.011840772815048695, -0.0023895534686744213, 0.0054121604189276695, -0.029554378241300583, 0.006770401727408171, -0.03022012487053871, 0.023372448980808258, -0.006907117553055286, -0.03255023807287216, 0.043130844831466675, 0.039754562079906464, -0.005611289758235216, -0.010842152871191502, 0.006009548902511597, -0.0247990470379591, 0.03478524088859558, -0.00023237962159328163, 0.009653320536017418, 0.010806487873196602, -0.02277803234755993, 0.00728754373267293, -0.009677097201347351, -0.03255023807287216, -0.034880347549915314, 0.019211534410715103, -0.022314388304948807, 0.0003531204420141876, 0.0015231918077915907, -0.022040955722332, -0.016762539744377136, -0.051595333963632584, 0.006609909236431122, -0.032050926238298416, -0.01544293574988842, -0.009225340560078621, 0.005174393765628338, -0.010176407173275948, 0.013528915122151375, 0.04170424863696098, 0.0003856275579892099, 0.006282980088144541, 0.00321282004006207, -0.021719971671700478, 0.045389629900455475, -0.001233413815498352, 0.00046475924318656325, 0.0197821743786335, 0.06376898288726807, 0.022504601627588272, -0.02144653908908367, -0.019437413662672043, -0.09277649223804474, 0.045603618025779724, -0.011929934844374657, 0.019473077729344368, -0.018629007041454315, -0.022445159032940865, 0.004279797431081533, -0.008940021507441998, 0.016084905713796616, 0.051833100616931915, -0.003120685461908579, 0.0009458649437874556, 0.006247315090149641, -0.022433271631598473, -0.007132995408028364, -0.04158536344766617, 0.01934230700135231, -0.015870915725827217, -0.04557984322309494, 0.017559057101607323, -0.023420002311468124, -0.00040234552579931915, 0.04969320073723793, -0.031076084822416306, -0.039469242095947266, 0.02594032697379589, -0.014848519116640091, 0.022992022335529327, 0.002980997785925865, 0.028270438313484192, 0.009831645525991917, 0.0072815995663404465, -0.006532635074108839, 0.029697038233280182, -0.008660645224153996, 0.017059747129678726, -0.006348365917801857, -0.005334886256605387, -0.019901057705283165, -0.019163981080055237, -0.002908181631937623, 0.01375479344278574, -0.04795750603079796, -0.016679320484399796, -0.007994899526238441, -0.030339008197188377, -0.02195773832499981, 0.02953060157597065, 0.00951660517603159, -0.03304954618215561, 0.048005059361457825, -0.014598864130675793, 0.0075669195502996445, -0.01686953380703926, -0.03740067407488823, -0.0057420614175498486, -0.0039915055967867374, -0.012970163486897945, 0.03858950734138489, -0.013112823478877544, -0.0006051901145838201, 0.010669772513210773, 0.013897453434765339, 0.0036467439495027065, 0.0542583204805851, 0.005088203586637974, -0.0012415869859978557, -0.0317893847823143, 0.026962723582983017, 0.002958707045763731, 0.010330955497920513, 0.007881959900259972, -0.0195681843906641, 0.03133762627840042, 0.028460651636123657, 0.04738686606287956, -0.005973883904516697, -0.004906906746327877, -0.009047015570104122, -0.03573630750179291, -0.0491701140999794, -0.01640588976442814, -0.029863474890589714, 0.01499117910861969, -0.0019660319667309523, 0.021755635738372803, 0.009278838522732258, 0.005016873590648174, -0.018985657021403313, 0.004137137439101934, 0.005174393765628338, 0.0005342316580936313, -0.03216981142759323, 0.01030123420059681, -0.025964103639125824, 0.007840351201593876, -0.016025463119149208, 0.0017624442698433995, -0.0416804701089859, -0.02532213367521763, 0.004279797431081533, -0.026938946917653084, -0.02796134166419506, -0.02135143242776394, 0.0073648178949952126, 0.06462494283914566, -0.00682389922440052, 0.008315883576869965, 0.027485810220241547, 0.02047169767320156, -0.015240834094583988, -0.03770976886153221, 0.04094339534640312, 0.009326391853392124, 0.022682925686240196, -0.0015930356457829475, -0.007769021205604076, 0.003085020463913679, 0.005994688253849745, 0.006071962416172028, 0.005195198580622673, 0.01012290921062231, -0.020804570987820625, -0.0008723058854229748, 0.007043832913041115, -0.007299432065337896, -0.019770285114645958, 0.016619879752397537, -0.011050199158489704, -0.007311320398002863, -0.022100398316979408, -0.003792376024648547, 0.0047523584216833115, 0.0073648178949952126, -0.022754255682229996, -0.005403243936598301, -0.018272357061505318, -0.011008589528501034, -0.004089584108442068, 0.012720508500933647, 0.014325432479381561, 0.03499923273921013, -0.02991102822124958, -0.019366083666682243, -0.004574033431708813, -0.031979598104953766, 0.0076085287146270275, -0.0006910089286975563, -0.027628470212221146, -0.007786853238940239, 0.02330111898481846, 0.0052665285766124725, -0.01386178843677044, -0.012221199460327625, -0.008250498212873936, -0.007620417047291994, -0.014337320812046528, 0.005673703737556934, 0.0056588430888950825, 0.003917203284800053, -0.054163213819265366, -0.03492790088057518, 0.021779412403702736, 0.015716366469860077, -0.03502300754189491, -0.007275655400007963, 0.0111631378531456, 0.02915017493069172, -0.008220776915550232, 0.02069757506251335, -0.011020477861166, 0.023217899724841118, -0.023503219708800316, 0.023479443043470383, 0.003456530859693885, -0.012304416857659817, -0.0005048823659308255, -0.014313544146716595, -0.00644347257912159, 0.05135756731033325, -0.03067188151180744, 0.00492473877966404, 0.0034803072921931744, -0.009189675562083721, 0.025750113651156425, 0.01715485379099846, -0.013849900104105473, 0.006508858408778906, 0.05787236988544464, 0.0470539927482605, 0.01740450970828533, 0.021791301667690277, 0.016310783103108406, 0.01692897640168667, -0.00016532203881070018, 0.008601203560829163, -0.0003815409727394581, 0.02886485494673252, -0.02317034639418125, 0.011014534160494804, 0.02098289504647255, 0.001985350390896201, 0.01390934083610773, 0.004642391111701727, 0.030101241543889046, 0.01812969706952572, 0.004832604434341192, -0.002087887143716216, -0.017654163762927055, 0.041870683431625366, -0.004306545946747065, 0.03364396095275879, -0.013635910116136074, -0.02308712899684906, -0.03304954618215561, 0.006710960064083338, 0.0368775874376297, -0.03043411485850811, 0.003923147451132536, 0.012149869464337826, 0.006152208428829908, 0.019437413662672043, 0.0006427126354537904, 0.016465330496430397, 0.005730173084884882, -0.0170954130589962, -0.004577005282044411, -0.012506518512964249, 0.037281788885593414, -0.008981630206108093, -0.021648641675710678, 0.006024409085512161, 0.01919964700937271, 0.026582296937704086, 0.04094339534640312, 0.019520631060004234, -0.000758252281229943, 0.001161340856924653, 0.006716904230415821, 0.022278722375631332, -0.011293909512460232, 0.02886485494673252, -0.02548857033252716, 0.008809249848127365, -0.017642276361584663, 0.007870071567595005, -0.015181392431259155, -0.030909648165106773, -0.021375209093093872, 0.009177787229418755, 0.00018937731510959566, 0.00638997508212924, 0.016465330496430397, -0.006919005885720253, -0.016738763079047203, -0.025512346997857094, 0.0016866562655195594, 0.01379045844078064, -0.013505138456821442, -0.007477757055312395, -0.010259625501930714, 0.042393770068883896, 0.024632610380649567, -0.00286657246761024, -0.035641200840473175, 0.04679245129227638, 0.03987344354391098, -0.01495551411062479, -0.008494208566844463, 0.012768061831593513, 0.010741102509200573, -0.03597407415509224, -0.03697269409894943, 0.04282175004482269, 0.03685380890965462, 0.007584752049297094, -0.0007957748020999134, 0.03200337290763855, 0.00015101888857316226, 0.030766988173127174, 0.006901173386722803, 0.0047939675860106945, 0.02278992161154747, 0.053640127182006836, 0.015704479068517685, -0.0020329037215560675, -0.00026247193454764783, 0.006187873426824808, -0.004487843252718449, 0.013517026789486408, 0.01540727075189352, 0.021529758349061012, 0.012209311127662659, 0.018415017053484917, 0.022147951647639275, -0.009813813492655754, 0.004300601780414581, -0.00447892677038908, 0.014265990816056728, 0.02314656972885132, -0.006247315090149641, 0.041870683431625366, -0.007780909072607756, 0.0010640051914379, -0.03892238065600395, 0.028508204966783524, 0.014682082459330559, 0.013314925134181976, 0.025797666981816292, -0.027485810220241547, -0.045532289892435074, 0.028508204966783524, 0.027794906869530678, -0.006609909236431122, -0.01708352379500866, -0.01037850882858038, -0.04669734463095665, -0.003397089196369052, -0.04398680478334427, -0.00599766056984663, 0.029887251555919647, 0.006294868420809507, 0.02284936234354973, 0.009427442215383053, -0.016691209748387337, -0.01368346344679594, -0.01316037680953741, 0.02848442830145359, 0.01285128016024828, 0.0027149964589625597, 0.01912831701338291, -0.01364779844880104, -0.003970700781792402, 0.004312490113079548, 0.011632726527750492, -0.006800122559070587, 0.02743825688958168, -0.00537649542093277, -0.014943625777959824, -0.04189446195960045, 0.013707240112125874, -0.012720508500933647, -0.0029007515404373407, -0.0437965914607048, 0.03649716079235077, -0.004098500125110149, -0.01657232642173767, 0.030006134882569313, 0.025274580344557762, 0.017523393034934998, 0.020887788385152817, -0.0003703956608660519, 0.010877817869186401, -0.02428784966468811, -0.04094339534640312, 0.010978869162499905, -0.043297283351421356, -0.02233816497027874, -0.023253565654158592, -0.025203250348567963, -0.023206012323498726, 0.02862708829343319, -0.03989722207188606, 0.00040346005698665977, -0.009278838522732258, 0.01896188035607338, -0.025227027013897896, -0.049122560769319534, -0.03449992090463638, 0.009457163512706757, 0.00892218854278326, -0.01537160575389862, 0.01620378904044628, -0.011353351175785065, 0.030148794874548912, 0.03761466220021248, 0.015680702403187752, -0.04750575125217438, -0.03022012487053871, -0.00471966527402401, 0.004731553606688976, -0.006485081743448973, 0.046435799449682236, -0.0017446117708459496, -0.010580610483884811, -0.009433386847376823, -0.004639419261366129, 0.01181105151772499, 0.027271820232272148, 0.006401863414794207, -0.029102621600031853, -0.014693970791995525, 0.010182350873947144, 0.02660607360303402, 0.02629697695374489, -0.0033733125310391188, 0.02158919908106327, 0.028080224990844727, 0.00813161488622427, 0.008951909840106964, -0.009754371829330921, -0.008078117854893208, 0.011258244514465332, -0.0010773795656859875, -0.0044046249240636826, 0.03949301689863205, 0.0072815995663404465, 0.023265453055500984, -0.022278722375631332, 0.04997852072119713, -0.01412333082407713, 0.02608298696577549, 0.022623484954237938, 0.003878566436469555, 0.005302193574607372, 0.034666359424591064, 0.0013693865621462464, -0.008535818196833134, 0.003700241446495056, -0.00929667055606842, 0.024252185598015785, -0.024026306346058846, -0.0044046249240636826, -0.033548854291439056, -0.011727833189070225, 0.019603850319981575, -0.019580073654651642, -0.010966980829834938, 0.030386561527848244, -0.012922610156238079, 0.0042619649320840836, 0.003946924116462469, -0.037733547389507294, 0.02122066169977188, -0.025155697017908096, 0.031955819576978683, -0.008042452856898308, -0.014741524122655392, -0.020745128393173218, 0.0006326818256638944, -0.005908498074859381, 0.01657232642173767, -0.003905314952135086, -0.014408650808036327, 0.023859869688749313, -0.03837551549077034, 0.01147223450243473, -0.01783248968422413, 0.0874505266547203, -0.00027138818404637277, 0.013457585126161575, -0.014040112495422363, 0.027105383574962616, -0.007816574536263943, 0.002899265382438898, -4.0471390093443915e-05, -0.007067609578371048, 0.0340481661260128, -0.016536660492420197, 0.03036278486251831, 0.023515108972787857, 0.005501322913914919, 0.021494092419743538, -0.0011695140274241567, 0.009920807555317879, 0.02307523973286152, 0.020578691735863686, 0.010996701195836067, -0.002010613214224577, 0.003878566436469555, 0.03787620738148689, -0.007638249546289444, -0.02315845899283886, -0.02322978898882866, -0.0010996701894327998, 0.014872295781970024, -0.02383609302341938, 0.03036278486251831, 0.011424681171774864, 0.010081300511956215, -0.005572652909904718, 0.004131193272769451, -0.009106457233428955, -0.021862631663680077, 0.00159749377053231, 0.010824320837855339, 0.022742368280887604, 0.008856803178787231, -0.007436147890985012, -0.0015135324792936444, 0.01722618378698826, 0.016988417133688927, 0.009189675562083721, 0.019627626985311508, -0.04836171120405197, -0.019817838445305824, 0.031813159584999084, -0.019163981080055237, 0.02824666164815426, -0.02135143242776394, -0.04550851136445999, -0.041490256786346436, -0.03492790088057518, 0.006158152595162392, -0.002787812380120158, -0.02338433638215065, -0.051690440624952316, -0.00492473877966404, 0.006794178392738104, -8.841942326398566e-05, -0.034000612795352936, -0.01078865583986044, 0.012875056825578213, 0.0036289114505052567, -0.00902918353676796, -0.0042560207657516, -0.00597982807084918, 0.014765300787985325, -0.018272357061505318, -0.036092955619096756, 0.017975149676203728, -0.01791570708155632, -0.0169527530670166, 0.031194966286420822, -0.019021321088075638, 0.03483279421925545, -0.011983432807028294, -0.012577848508954048, 0.006550467573106289, -0.026201870292425156, 0.03652093559503555, 0.020709464326500893, -0.011597061529755592, -0.010598442517220974, 0.018117807805538177, 0.031432732939720154, 0.0001956001069629565, 0.01640588976442814, -0.009421498514711857, 0.009302615188062191, 0.01116908248513937, -0.01739262044429779, 0.01551426574587822, 0.004716693423688412, -0.026487190276384354, -0.009469051845371723, 0.019877281039953232, -0.045770056545734406, 0.004591865930706263, -0.038874827325344086, -0.025227027013897896, 0.016322672367095947, 0.009980249218642712, -0.02338433638215065, -0.012863168492913246, -0.028722194954752922, -0.02375287562608719, -0.02548857033252716, 0.003186071291565895, -0.007840351201593876, 0.019449301064014435, -0.0042203557677567005, -0.0247990470379591, -0.04593649134039879, 0.01281561516225338, -0.044700104743242264, 0.03652093559503555, 0.010432005859911442, -0.0009555242140777409, 0.021696195006370544, 0.006098711397498846, 0.006716904230415821, 0.006817955058068037, 0.009706818498671055, -0.022468935698270798, 0.016013575717806816, 0.026178093627095222, 0.016905199736356735, -0.002926014130935073, 0.018605230376124382, 0.04289307817816734, -0.006241370923817158, 0.0018441765569150448, -0.017035970464348793, -0.030006134882569313, -0.0030969087965786457, -0.012922610156238079, -0.029554378241300583, -0.014301655814051628, 0.023063352331519127, -0.0022766143083572388, -0.025393463671207428, -0.029411718249320984, 0.01746395044028759, -0.009962417185306549, -0.03259779140353203, 0.05953673645853996, 0.03148028627038002, -0.0341908261179924, 0.014729635789990425, -0.01565692573785782, -0.008072173222899437, 0.04011121019721031, 0.016453443095088005, 0.015205169096589088, 0.010247737169265747, 0.019591961055994034, -0.001942255301401019, -0.04091961681842804, -0.012577848508954048, -0.04878969117999077, -0.013731016777455807, -0.021850742399692535, 0.017166743054986, 0.013505138456821442, 0.026510966941714287, -0.023348672315478325, -0.024347292259335518, -0.020352814346551895, -0.040895842015743256, 0.004383820109069347, 0.006687183398753405, -0.03005368821322918, 0.005632094573229551, -0.011632726527750492, 0.03949301689863205, -0.030410338193178177, 0.00012826388410758227, 0.002897779457271099, -0.002966137370094657, 0.007513422053307295, -0.007899792864918709, -0.026653626933693886, 0.005866888910531998, -0.015597483143210411, -0.011739721521735191, 0.0008143503218889236, -0.026130540296435356, 0.02226683497428894, 0.0010053066071122885, 0.016667433083057404, -0.01540727075189352, -0.015205169096589088, -0.04893235117197037, 0.004395708441734314, 0.010830264538526535, 0.006449416745454073, 0.030481668189167976, 0.01993672177195549, 0.0029646512120962143, -0.027937564998865128, -0.01281561516225338, 0.0009206022368744016, -0.033239759504795074, 0.0061284322291612625, -0.021018560975790024, 0.01394500583410263, -0.02660607360303402, 0.03397683426737785, -0.009564158506691456, -0.02136332169175148, 0.0370202474296093, 0.009225340560078621, -0.024026306346058846, 0.024228408932685852, -0.010533057153224945, 0.003135545877739787, -0.040895842015743256, -0.013255483470857143, 0.012001264840364456, 0.01656043715775013, -0.030481668189167976, 0.014063889160752296, -0.008743863552808762, -0.011258244514465332, 0.010616275481879711, 0.0021443567238748074, -0.029506824910640717, 0.030529221519827843, -0.022599708288908005, 0.0022855305578559637, 0.000711442029569298, -0.022468935698270798, 0.003471391275525093, -0.020638134330511093, -0.005908498074859381, -0.007774964906275272, 0.025678783655166626, 0.010128853842616081, 0.016382113099098206, -0.020519251003861427, -0.019092651084065437, -0.01243518851697445, 0.023372448980808258, -0.021791301667690277, -0.00011767585237976164, -0.03873216733336449, -0.02489415369927883, 0.003938008099794388, -0.01814158447086811, 0.014765300787985325, -0.0017030027229338884, 0.0029973441269248724, -0.007852239534258842, 0.039017487317323685, -0.01835557445883751, -0.022457048296928406, -0.025013037025928497, -0.013219818472862244, -0.043963029980659485, 0.013124711811542511, -0.0016197843942791224, 0.0029601932037621737, 0.038637060672044754, 0.028199108317494392, -0.016893310472369194, -0.032574012875556946, 0.009011350572109222, -0.015121950767934322, 0.026558520272374153, -0.0010038205655291677, -0.022290611639618874, -0.020055605098605156, -0.02967326156795025, -0.004146053455770016, 0.0011279048630967736, 0.024347292259335518, -0.010634107515215874, -0.012696731835603714, 0.04850437119603157, 0.0109491478651762, -0.007489645387977362, -0.0025708505418151617, 0.02346755564212799, -0.021458428353071213, -0.026820063591003418, -0.001750555937178433, 0.012577848508954048, 0.03281177952885628, 0.011929934844374657, 0.017891930416226387, 0.028080224990844727, 0.01633455976843834, 0.026035433635115623, -0.014147107489407063, 0.05335480719804764, 0.014242214150726795, -0.0371629074215889, -0.01075299084186554, -0.027699800208210945, 0.031979598104953766, 0.027462033554911613, -0.01648910716176033, 0.03958812355995178, 0.003801292274147272, 0.011222579516470432, 0.005872833076864481, -0.011311742477118969, -0.0040776957757771015, -0.009897030889987946, 0.010134797543287277, 0.0051238685846328735, 0.025964103639125824, 0.02869841828942299, -0.03568875417113304, -0.020816458389163017, -0.0033317033667117357, 0.0025990852154791355, 0.005899581592530012, 0.004202523268759251, 0.001942255301401019, -0.050263840705156326, 0.0012735369382426143, -0.007953289896249771, -0.010390397161245346, -0.005991716403514147, -0.023372448980808258, -0.01154356449842453, -0.014789077453315258, -0.027010276913642883, 0.009237228892743587, -0.04750575125217438, -0.017440173774957657, 0.026178093627095222, -0.013600245118141174, -0.023943088948726654, 0.006306756753474474, -0.021244438365101814, -0.012060706503689289, 0.008084061555564404, -0.00766797037795186, 0.017749270424246788, -0.013279260136187077, 0.010764879174530506, -0.00947499554604292, 0.026820063591003418, 0.014729635789990425, -0.0024638555478304625, 0.05815768986940384, 0.02998235821723938, -0.020804570987820625, 0.0008544734446331859, 0.012132036499679089, -0.011710001155734062, -0.0017030027229338884, 0.04165669530630112, -0.004116332624107599, 0.007525310385972261, -0.020650021731853485, 0.011068031191825867, 0.003269289620220661, 0.039302803575992584, 0.0014704372733831406, 0.019972387701272964, -0.02698650024831295, 0.01663176715373993, -0.023705322295427322, 0.0365922674536705, -0.010491447523236275, -0.00633647758513689, 0.02240949496626854, 0.019247200340032578, 0.01037850882858038, -0.048837244510650635, -0.004434345755726099, -0.005114952102303505, -0.02271859161555767, -0.031456511467695236, 0.03740067407488823, -0.01109775248914957, 0.010206127539277077, -0.021612975746393204, 0.05240374058485031, -0.016893310472369194, 0.0004759045550599694, 0.017951373010873795, 0.010794599540531635], [0.0016383767360821366, 0.0236051082611084, 0.01891154795885086, -0.0018724305555224419, -0.05432545021176338, -0.0026526099536567926, -0.016752012073993683, 0.035501282662153244, -0.014155575074255466, -0.004088140092790127, -0.017775606364011765, -0.010186022147536278, 0.042791277170181274, -0.03545135259628296, -0.04858333244919777, 0.04653614014387131, 0.017176428809762, 0.028560806065797806, -0.029659299179911613, 0.0004626463633030653, 0.018449682742357254, 0.06630900502204895, -0.022169576957821846, -0.023143241181969643, 0.0005445652059279382, 0.006088519934564829, 0.008532041683793068, -0.02681320533156395, 0.05567359924316406, -0.04039456695318222, 0.04501323029398918, -0.02195736952126026, 0.0510549396276474, -0.00416615791618824, -0.012957219034433365, 0.018487131223082542, -0.001310701365582645, -0.0026011180598288774, 0.020284663885831833, 0.008563249371945858, 0.013331705704331398, 0.06266400963068008, -0.003114476101472974, -0.015104273334145546, -0.006959199905395508, 0.030433237552642822, 0.053676340728998184, -0.008207486942410469, 0.006859336979687214, -0.0023904696572571993, 0.048982784152030945, 0.04184257984161377, -0.03480224311351776, -0.0008457144722342491, -0.015316481702029705, -0.030133647844195366, -0.015229101292788982, 0.028011560440063477, 0.05512435361742973, -0.003059863578528166, -0.019248586148023605, -0.02193240262567997, -0.06216469407081604, 0.008488351479172707, 0.015903176739811897, 0.008369764313101768, -0.005442531313747168, 0.03140690177679062, -0.02738741785287857, -0.023592624813318253, 0.013668742962181568, 0.0089127691462636, 0.06531037390232086, -0.07824262976646423, -0.04980665072798729, -0.0033734957687556744, -0.006072916556149721, -0.0012576491571962833, 0.023143241181969643, 0.01746353507041931, -0.02758714370429516, 0.018000299111008644, -0.058519694954156876, 0.036874398589134216, -0.007676965091377497, -0.043590184301137924, -0.0956687182188034, -0.010104883462190628, -0.0116402767598629, 0.019673002883791924, -0.017351189628243446, -0.015229101292788982, 0.022294405847787857, 0.033154502511024475, 0.008931493386626244, -0.013930883258581161, 0.010516817681491375, -0.011646517552435398, -0.024703599512577057, 0.015878211706876755, -0.00894397683441639, -0.024266699329018593, 0.032705120742321014, 0.04361514747142792, 0.010061193257570267, -0.028885360807180405, -0.00035595684312283993, 0.04064422473311424, 0.012857356108725071, -0.0013239644467830658, -0.030782757326960564, -0.02077149599790573, -0.042466726154088974, 0.02189495414495468, -0.008263659663498402, 0.03997015208005905, -0.015303999185562134, -0.03218083828687668, 0.01801278255879879, -0.05517428740859032, -0.05702175199985504, 0.03924614563584328, 0.05502449348568916, -0.05926866829395294, 0.00602922635152936, -0.0010844493517652154, 0.019510725513100624, -0.026987966150045395, -0.05931859835982323, -0.017126498743891716, 0.0113219628110528, -0.07070297747850418, 0.05117976665496826, 0.002457565162330866, 0.034153133630752563, 0.001013453002087772, 0.003676205174997449, -0.006903027184307575, -0.012782459147274494, -0.01907382532954216, 0.0006299948436208069, -0.006331935990601778, -0.007951588369905949, -0.006740749813616276, -0.05517428740859032, 0.00919987540692091, 0.00982401892542839, 0.02225695736706257, 0.04009497910737991, -0.007801793981343508, -0.0017522829584777355, 0.039545733481645584, 0.017675744369626045, 0.0037667059805244207, 0.022906066849827766, 0.020659150555729866, 0.030158614739775658, 0.03625025600194931, -0.023105792701244354, -0.013955849222838879, -0.025390157476067543, -0.011621552519500256, -0.004290986806154251, -0.0029990095645189285, 0.03230566903948784, 0.03792295977473259, -0.019772866740822792, 0.009505705907940865, -0.05767086148262024, -0.03342912718653679, -0.021470537409186363, -0.040669191628694534, -0.0465611070394516, 0.005782689433544874, -0.018886582925915718, -0.018062712624669075, 0.019123757258057594, 0.011590344831347466, -0.030333373695611954, 0.015516207553446293, -0.0398203544318676, -0.013369154185056686, -0.02636382170021534, -0.010367023758590221, -0.043715011328458786, -0.00916866771876812, 0.04131830111145973, 0.01839975081384182, -0.030258476734161377, 0.023355450481176376, -0.010735268704593182, -0.03250539302825928, -0.023455312475562096, 0.022781237959861755, -0.047409940510988235, 0.0050056311301887035, -0.018212508410215378, 0.008326074108481407, 0.009842743165791035, 0.018200024962425232, 0.001881792675703764, -0.026788240298628807, 0.04980665072798729, 0.045712269842624664, -0.09831508249044418, -0.005913759581744671, -0.038871657103300095, 0.005339547526091337, 0.022144611924886703, 0.004955699667334557, 0.028985224664211273, -0.048758089542388916, -0.019573140889406204, -0.004649869166314602, -0.02205723151564598, 0.02671334147453308, -0.017613328993320465, 0.041243404150009155, -0.01105982344597578, 0.04478853940963745, -0.04466370865702629, -0.012857356108725071, -0.0099550886079669, 0.006247676443308592, 0.003038018476217985, 0.0252029150724411, 0.03312953561544418, 0.009443291462957859, 0.007733138278126717, -0.05822010710835457, 0.008987666107714176, 0.036849431693553925, -0.009056322276592255, -0.016265179961919785, 0.016614699736237526, -0.001060263835825026, 0.021695228293538094, -0.02058425359427929, 0.03410319983959198, -0.00953691266477108, 0.02578960917890072, -0.014455163851380348, 0.0016649027820676565, 0.004475108813494444, 0.02119591273367405, -0.011296997778117657, -0.023817315697669983, 0.004921371582895517, 0.03442775458097458, -0.025964369997382164, -0.014966960996389389, -0.013781088404357433, 0.05517428740859032, -0.09257296472787857, 0.014854615554213524, 0.04486343637108803, -0.02540264092385769, -0.021907437592744827, -0.004568730480968952, -0.03522665798664093, 0.039670560508966446, -0.04344038665294647, -0.00545189343392849, 0.03335423022508621, -0.025889473035931587, -0.01866189017891884, 0.007321203593164682, -0.017176428809762, -0.018137609586119652, 0.044364120811223984, -0.09646762162446976, 0.0016976703191176057, 0.015004410408437252, 0.010916270315647125, -0.010604198090732098, 0.022581512108445168, -0.011215859092772007, -0.018599476665258408, -0.0016914289444684982, 0.014317852444946766, -0.03537645563483238, 0.008095141500234604, -0.03420306369662285, -0.060766611248254776, 0.013718673959374428, 0.03233063220977783, -0.03732378035783768, 0.0097928112372756, -0.020759012550115585, 0.06556003540754318, 0.05527414754033089, -0.055374011397361755, -0.03240552917122841, -0.03487714007496834, 0.04114354029297829, 0.00807641725987196, -0.014330334961414337, -0.04780939221382141, -0.03367878496646881, -0.015191652812063694, 0.0008878441294655204, 0.028136389330029488, 0.01962307281792164, -0.04131830111145973, -0.06690818071365356, 0.010310851037502289, -0.0011499844258651137, 0.048882920295000076, 0.009418325498700142, -0.02177012525498867, -0.03362885117530823, 0.010722785256803036, -0.02109605073928833, -0.0693548247218132, -0.00969919003546238, -0.04823381081223488, -0.009867709130048752, 0.004515678156167269, 0.0022952877916395664, -0.035750940442085266, 0.05417565628886223, 0.00468731764703989, 0.06416195631027222, -0.00503371749073267, -0.030008820816874504, -0.004163037054240704, 0.04114354029297829, 0.006909268442541361, -0.03969552740454674, 0.016689596697688103, -0.02113349922001362, -0.021183431148529053, 0.04653614014387131, -0.006628403905779123, 0.002832051133736968, -0.0010524620302021503, 0.025028154253959656, -0.014168057590723038, 0.00990515761077404, 0.0009494783007539809, 0.04416439309716225, -0.036849431693553925, 0.030233511701226234, -0.018874099478125572, -0.01135317049920559, 0.01878671906888485, 0.0597180500626564, 0.06985414028167725, -0.04536275193095207, -0.010560507886111736, -0.0077581037767231464, -0.01936093159019947, -0.03672460466623306, -0.010005020536482334, -0.049981411546468735, 0.0008371325093321502, 0.019273551180958748, 0.02385476417839527, -0.012701320461928844, 0.029010189697146416, 0.007227581925690174, 0.027287553995847702, 0.05732133984565735, 0.003832241054624319, 0.053127095103263855, 0.041443128138780594, -0.003673084545880556, 0.01077271718531847, 0.033853545784950256, -0.02209467999637127, -0.008975183591246605, 0.028635704889893532, -0.022306889295578003, -0.006934234406799078, -0.055923257023096085, -0.05127963051199913, 0.05467497184872627, 0.022581512108445168, -0.012002279981970787, -0.010928752832114697, 0.017476018518209457, -0.019947625696659088, -0.012638906016945839, -0.0050399587489664555, 0.05352654680609703, -0.020334595814347267, -0.07110242545604706, 0.02995888888835907, -0.017738157883286476, 0.0038291204255074263, 0.007021614350378513, 0.007639516610652208, -0.04354025050997734, 0.02671334147453308, -0.02896025963127613, -0.021944886073470116, 0.028435979038476944, -0.000717374961823225, -0.017163947224617004, -0.013880951330065727, -0.018087679520249367, -0.02636382170021534, 0.017476018518209457, -0.01705159991979599, -0.03173145651817322, 0.03143186867237091, -0.000822309055365622, 0.0010906907264143229, -0.013831020332872868, -0.002324934583157301, 0.023979593068361282, -0.0417427197098732, 0.05881928279995918, 0.006325694266706705, 0.0197478998452425, 0.0016227731248363853, -0.037423644214868546, 0.05956825613975525, -0.0252029150724411, -0.08088900148868561, 0.016302628442645073, 0.046286482363939285, -0.013269291259348392, -0.027786869555711746, -0.063562773168087, -0.02456628903746605, -0.009193633683025837, -0.03622528910636902, 0.023193173110485077, -0.05607305467128754, -0.0031581660732626915, -0.011777588166296482, 0.023817315697669983, 0.004637386184185743, -0.06521051377058029, -0.05417565628886223, 0.023680005222558975, -0.00615717563778162, -0.02591443806886673, -0.045262888073921204, 0.000931534159462899, -0.016876840963959694, 0.009031356312334538, 0.0385221391916275, -0.015229101292788982, 0.015940625220537186, 0.0005472958437167108, 0.015391378663480282, -0.03410319983959198, -0.0058763111010193825, -0.013531431555747986, -0.03273008391261101, -0.06610927730798721, 0.009524430148303509, -0.025714712217450142, 0.03879676014184952, -0.04351528361439705, -0.036874398589134216, 0.03987028822302818, -0.03220580518245697, -0.0018474648240953684, 0.06281380355358124, 0.058969080448150635, 0.04928237199783325, 0.005395720712840557, -0.0004591355682350695, -0.04918250814080238, -0.019248586148023605, 0.028985224664211273, -0.0149295125156641, -0.026288924738764763, -0.005988657008856535, -0.0231182761490345, -0.013294256292283535, 0.05075535178184509, -0.014505094848573208, -0.04478853940963745, -0.05018113926053047, -0.02158288285136223, -0.059068940579891205, 0.02009742148220539, -0.013156944885849953, -0.02603926695883274, -0.04411446303129196, 0.015154204331338406, -0.025252847000956535, 0.029883991926908493, 0.01375612337142229, -0.046236552298069, -0.017126498743891716, -0.01901141181588173, 0.006169658619910479, 0.036524876952171326, -0.012276902794837952, -0.010005020536482334, -0.00010590934834908694, -0.029334744438529015, 0.0014956039376556873, 0.04451391473412514, -0.005929363425821066, 0.01014857366681099, -0.01676449552178383, 0.026838170364499092, 0.037423644214868546, -0.008051451295614243, -0.007402341812849045, -1.7663749531493522e-05, -0.023592624813318253, -0.004325314424932003, 0.014879581518471241, -0.026613479480147362, 0.0020347079262137413, -0.004053812008351088, -0.007733138278126717, -0.014405231922864914, -0.018324853852391243, 0.007221340201795101, 0.025277812033891678, -0.02379235066473484, 0.04768456518650055, 0.0012436059769243002, -0.027861766517162323, -0.003463996574282646, -0.024029524996876717, 0.008706801570951939, -0.0006124408100731671, -0.007552136667072773, -0.01768822781741619, -0.00036980502773076296, 0.012295627035200596, 0.013643776997923851, -0.04361514747142792, -0.052677713334560394, 0.029110053554177284, -2.747694270510692e-05, 0.005707792472094297, 0.0128448735922575, 0.010635405778884888, 0.015016892924904823, -0.013831020332872868, 0.05252791941165924, -0.011796312406659126, -0.009043839760124683, -0.0015915659023448825, -0.006175899878144264, -0.026888102293014526, -0.00011449132580310106, 0.02838604710996151, 0.01727629266679287, 0.0407690554857254, 0.02462870255112648, 0.015079307369887829, -0.0055923257023096085, -0.0324304960668087, 0.00911873672157526, -0.002649489091709256, 0.012819907627999783, -0.014979444444179535, 0.028635704889893532, -0.008519559167325497, 0.0060011399909853935, 0.03208097815513611, 0.02716272510588169, 0.013419085182249546, 0.04049443081021309, 0.009574361145496368, 0.018037747591733932, 0.0038790518883615732, -0.016901805996894836, 0.010454404167830944, 0.012270661070942879, -0.005742120090872049, 0.00723382318392396, -0.012245696038007736, 0.0334041602909565, 0.018324853852391243, -0.027637073770165443, -0.01753843203186989, -0.001973853912204504, -0.01762581244111061, -0.014155575074255466, 0.03602556511759758, -0.0015517767751589417, 0.012002279981970787, -0.0006147813401184976, 0.000918271136470139, 0.008301109075546265, -0.0042192102409899235, 0.03130703791975975, 0.027637073770165443, 0.029110053554177284, -0.028885360807180405, 0.01301963347941637, -0.016290144994854927, 0.01595310866832733, 0.018699338659644127, -0.0035108071751892567, -0.0021408123429864645, 0.008138831704854965, -0.005071165971457958, 0.019635554403066635, 0.0197478998452425, 0.024104421958327293, -0.015978073701262474, -0.01102861575782299, 0.0046561104245483875, 0.02391717955470085, 0.01643994078040123, 0.02180757373571396, 0.044613778591156006, 0.02180757373571396, 0.01997259259223938, 0.031806353479623795, -0.014667372219264507, -0.027637073770165443, 0.02973419614136219, -0.02803652733564377, -0.017588363960385323, -0.029908956959843636, 0.0330796055495739, -0.03273008391261101, 0.017138980329036713, 0.03744861111044884, 0.01625269651412964, -0.008257418870925903, -0.000785640615504235, 0.003339167684316635, -0.03912131488323212, 0.006547265220433474, -0.027437347918748856, -0.005470617674291134, 0.05060555413365364, 0.001855266629718244, 0.020022524520754814, 0.016003038734197617, -0.01609041914343834, 0.03882172703742981, -0.0195856224745512, 0.0016477388562634587, 0.004718524869531393, 0.04119347035884857, 0.0011016132775694132, 0.012688837945461273, -0.014193023554980755, 0.005071165971457958, 0.02495325729250908, -0.0016024884534999728, 0.016552286222577095, -0.03582583740353584, -0.013331705704331398, 0.009050080552697182, -0.012832390144467354, 0.014093160629272461, -0.04456384479999542, 0.003554497379809618, 0.006166537757962942, -0.0018802323611453176, 0.041118573397397995, 0.02177012525498867, 0.0016024884534999728, 0.003023975295946002, 0.002672894624993205, -0.02578960917890072, 0.039445869624614716, 0.004933854565024376, -0.009499464184045792, 0.011278273537755013, -0.028336115181446075, -0.008482110686600208, 0.005679706111550331, -0.02029714733362198, -0.010654130019247532, 0.04119347035884857, -0.04204230755567551, -0.009474498219788074, -0.004734128713607788, -0.026313889771699905, 0.0056079295463860035, -0.048533398658037186, 0.0004306590126361698, -0.008756733499467373, -0.03759840503334999, -0.017288776114583015, -0.012670112773776054, -0.025714712217450142, 0.008856596425175667, 0.041667819023132324, -0.0075833434239029884, 0.00039984192699193954, -0.005642257165163755, -0.027861766517162323, 0.016652148216962814, 0.01605297066271305, -0.003978915046900511, 0.0028336115647107363, 0.03352899104356766, -0.001155445701442659, -0.027437347918748856, -0.018674373626708984, -0.11064816266298294, 0.027087828144431114, 0.011415584944188595, 0.01829988695681095, -0.010816407389938831, -0.00010903007205342874, 0.021795092150568962, 0.023130757734179497, 0.027087828144431114, 0.060317229479551315, -0.023879731073975563, -0.020621702075004578, -0.024141870439052582, -0.029334744438529015, -0.006859336979687214, -0.06511065363883972, 0.00537075474858284, 0.004334676545113325, -0.053476616740226746, 0.006459885276854038, -0.03095751814544201, -0.035526249557733536, 0.05881928279995918, -0.024653669446706772, -0.035750940442085266, 0.03475230932235718, -0.00936215277761221, 0.01862444169819355, -0.03667467087507248, 0.0065035754814744, 0.0010555826593190432, 0.014892064034938812, -0.0022141491062939167, 0.02199481800198555, 0.0030083716847002506, 0.017101531848311424, 0.014530060812830925, -0.03872186318039894, -0.042017340660095215, -0.017138980329036713, -0.004369004629552364, -0.015815796330571175, -0.05432545021176338, 0.003019294235855341, 0.001237364485859871, -0.02299344725906849, -0.015016892924904823, 0.002872620476409793, -0.024940773844718933, -0.039795391261577606, 0.037523508071899414, -0.014155575074255466, 0.00916866771876812, -0.00788293220102787, -0.029983853921294212, -0.00307858781889081, -0.003467117203399539, 0.016077937558293343, 0.0356510765850544, -0.017026634886860847, 0.017451051622629166, 0.023417863994836807, -0.006300728768110275, 0.0015650398563593626, 0.028860395774245262, 0.027861766517162323, -0.022132128477096558, -0.031232140958309174, 0.008588214404881, 0.00681564724072814, 0.02783679962158203, 0.012320592999458313, -0.007346169091761112, 0.03310457244515419, 0.009012632071971893, 0.03452761843800545, 0.014854615554213524, -0.021433088928461075, -0.0130071509629488, -0.028435979038476944, -0.054475244134664536, 0.021308260038495064, -0.029809093102812767, 0.013993297703564167, 0.008138831704854965, 0.021845022216439247, -0.0019239223329350352, 0.019860247150063515, -0.006069795694202185, 0.03140690177679062, 0.022082196548581123, -0.022943515330553055, -0.039445869624614716, 0.009524430148303509, -0.03547631576657295, 0.011871209368109703, 0.0069467173889279366, -0.01852457970380783, -0.01480468362569809, -0.012757493183016777, 0.014792201109230518, -0.03882172703742981, -0.021245844662189484, -0.008344798348844051, 0.017026634886860847, 0.08268652856349945, -0.037523508071899414, 0.00841345451772213, 0.021720193326473236, 0.028860395774245262, -0.01520413625985384, -0.050655487924814224, 0.045837100595235825, -0.0011164366733282804, 0.030258476734161377, 0.005298978183418512, -0.00292255193926394, 0.008794181980192661, -0.008001519367098808, 0.006179020740091801, 0.035950664430856705, 0.0034421514719724655, -0.04254162311553955, -0.00232025352306664, 0.014505094848573208, 0.008382247760891914, -0.011078547686338425, 0.019722934812307358, -0.01939838007092476, -0.00849459320306778, -0.018836650997400284, -0.022019783034920692, 0.0009198315092362463, -0.015279033221304417, 0.000840253196656704, 0.023193173110485077, -0.02883543074131012, -0.015940625220537186, 0.001763205393217504, -8.33816739032045e-05, -0.007851725444197655, 0.013306739740073681, -0.016752012073993683, -0.03195614740252495, -0.014168057590723038, -0.02524036355316639, 0.007339927833527327, 0.0022313131485134363, -0.010803923942148685, -0.030882621183991432, 0.027187692001461983, 0.010273402556777, 3.357209425303154e-05, 0.006703301332890987, 0.022182060405611992, 0.010186022147536278, -0.018649408593773842, 0.008357281796634197, -0.010186022147536278, 0.007701931055635214, -0.023779867216944695, -0.015241584740579128, 0.01746353507041931, 0.01881168596446514, -0.05901901051402092, 0.0022515978198498487, 0.025989335030317307, 0.022881101816892624, -0.0077581037767231464, 0.040569327771663666, 0.015903176739811897, 0.00427226210013032, -0.028585772961378098, 0.013431568630039692, 0.009212357923388481, -0.0005890354514122009, 0.0022484769579023123, -0.0030068112537264824, -0.00403820862993598, 0.042017340660095215, 0.0012950977543368936, 0.0282612182199955, 0.014080677181482315, -0.02074653096497059, 0.011677725240588188, 0.001288856379687786, -0.012364283204078674, -0.018936514854431152, 0.023480279371142387, 0.04196741059422493, 0.02395462803542614, 0.021021153777837753, -0.01257024984806776, 0.019635554403066635, 0.0027977232821285725, -0.016876840963959694, 0.009437049739062786, 0.027437347918748856, -0.0019395259441807866, 0.03198111429810524, 0.0010821088217198849, 0.02154543437063694, 0.004624903202056885, 0.017862986773252487, 0.012582733295857906, -0.000744681223295629, 0.002931914059445262, 0.0013364473124966025, -0.006163417361676693, 0.030682895332574844, -0.03205601125955582, 0.010385747998952866, -0.00337973702698946, -0.022069714963436127, -0.05991777777671814, -0.0022437958978116512, 0.02578960917890072, -0.0378979928791523, 0.02135819010436535, 0.014055712148547173, 0.008675594814121723, 0.020084938034415245, 0.02270634099841118, 0.01441771537065506, -0.011958589777350426, -0.028685634955763817, -0.02459125407040119, 0.011615310795605183, 0.03300470858812332, -0.014430197887122631, -0.012033486738801003, 0.006266400683671236, 0.013930883258581161, 0.05152928829193115, 0.03345409035682678, 0.014954478479921818, -0.014380266889929771, 0.00307858781889081, 0.0006358462269417942, 0.022781237959861755, -0.03155669569969177, 0.007084028795361519, -0.028985224664211273, 0.016140351071953773, -0.03779813274741173, 0.019186170771718025, -0.04311583191156387, -0.04341542348265648, -0.02613913081586361, 0.004643627908080816, 0.015104273334145546, 0.00201910431496799, 0.008532041683793068, 0.00796407088637352, -0.023580141365528107, 0.017451051622629166, 0.013743639923632145, 0.012258178554475307, -0.023967111483216286, 0.01223321259021759, 0.005604808684438467, 0.017675744369626045, 0.006372505333274603, -0.023717453703284264, -0.03153172880411148, 0.03792295977473259, 0.03749854117631912, -0.0035701007582247257, 0.003229942638427019, 0.02648865059018135, 0.027861766517162323, -0.008026485331356525, -0.029709231108427048, 0.005333306267857552, 0.040794018656015396, -0.021283293142914772, -0.02324310503900051, 0.025128018110990524, -0.007427307777106762, 0.015578621998429298, -0.009605568833649158, -0.014392749406397343, 0.010872580111026764, 0.06536030769348145, -0.0033547712955623865, -0.017650779336690903, -0.00712771899998188, 0.028435979038476944, -0.009549396112561226, 0.0013715553795918822, -0.005586084444075823, 0.0253651924431324, 0.017875470221042633, 0.03952076658606529, 0.011159686371684074, 0.0008558568079024553, 0.01094747707247734, 0.020059973001480103, 0.044588811695575714, 0.025639815255999565, 0.020534321665763855, 0.023318002000451088, -1.4274844943429343e-05, 0.015328964218497276, -0.020609218627214432, 0.01939838007092476, 0.01640249229967594, 0.00720885768532753, 0.034153133630752563, -0.0114779993891716, -0.03300470858812332, 0.0356510765850544, 0.006113485898822546, 0.01987272873520851, -0.03522665798664093, 0.008282383903861046, -0.06411202251911163, 0.006684577092528343, -0.014867098070681095, -0.011140961199998856, 0.0610162690281868, 0.02591443806886673, 0.0022032265551388264, 0.0042628999799489975, -0.024441460147500038, 0.0009604008519090712, -0.00684061273932457, 0.02115846425294876, 0.0031503643840551376, 0.021145982667803764, 0.0009354350622743368, -0.011521689593791962, 0.005885673221200705, -0.0008620982407592237, 0.014455163851380348, 0.013269291259348392, 0.01643994078040123, 0.002960000652819872, -0.03814765065908432, -0.02366752177476883, 0.011084788478910923, 0.001502625527791679, 0.005364513490349054, -0.01978534832596779, 0.032031044363975525, -0.02276875451207161, -0.025053121149539948, 0.04139319807291031, 0.0260143019258976, 0.020546805113554, 0.018474647775292397, 0.0009845864260569215, 0.010391989722847939, -0.031706489622592926, -0.0298590250313282, -0.008269901387393475, -0.025377675890922546, -0.0070465803146362305, -0.007620792370289564, -0.04311583191156387, -0.030657928436994553, 0.024928292259573936, -0.026214027777314186, 0.0008067055023275316, -0.013169428333640099, 0.031032415106892586, -0.026114163920283318, -0.022781237959861755, -0.0016742650186643004, 0.026064233854413033, -0.00924980640411377, -0.0253651924431324, 0.0031893732957541943, -0.012283144518733025, 0.035975631326436996, 0.03792295977473259, 0.001443331828340888, -0.04199237376451492, -0.036075495183467865, 0.007121477276086807, 0.016527319326996803, -0.005249046720564365, 0.029983853921294212, -0.0028117664624005556, -0.02346779592335224, -0.025190431624650955, -0.011496723629534245, 0.010647888295352459, 0.010186022147536278, -0.023492760956287384, -0.005792051553726196, -0.006878061685711145, 0.011290756054222584, 0.02154543437063694, 0.02783679962158203, 0.0039445869624614716, 0.028361080214381218, 0.014530060812830925, 0.0033454091753810644, 0.01948576048016548, 0.003507686546072364, -0.02035956084728241, 0.017001669853925705, 0.0077581037767231464, 0.0011975753586739302, 0.02035956084728241, 0.010835131630301476, 0.02299344725906849, -0.020858876407146454, 0.036300186067819595, -0.0012162997154518962, 0.0005558778066188097, 0.012464146129786968, 0.005401961971074343, 0.016015522181987762, 0.02873556688427925, -0.007945346646010876, -0.013656260445713997, 0.012857356108725071, -0.016652148216962814, 0.027437347918748856, -0.017101531848311424, -0.008650628849864006, -0.020434457808732986, -0.015790831297636032, 0.0027555935084819794, -0.011540413834154606, -0.03278001770377159, 0.02581457607448101, 0.009031356312334538, 0.031032415106892586, 0.004128709435462952, -0.029259847477078438, 0.0087504917755723, -0.026338856667280197, 0.030383305624127388, -0.018961479887366295, -0.025103051215410233, -0.02816135436296463, 0.007308720611035824, -0.014230472035706043, 0.004746611230075359, 0.010223470628261566, -0.00033820775570347905, 0.0023140120320022106, -0.04241679236292839, -0.0007208857568912208, -0.026164095848798752, 0.08658118546009064, -0.004369004629552364, -0.004631144925951958, -0.014604957774281502, 0.03657481074333191, -0.0008605378679931164, -0.017001669853925705, 0.030558066442608833, -0.005030596628785133, 0.048308707773685455, -0.012089659459888935, 0.034352857619524, 0.019673002883791924, 0.007059063296765089, 0.019161205738782883, -0.017862986773252487, 0.018412234261631966, 0.039795391261577606, 0.011247065849602222, 0.030932553112506866, 0.009867709130048752, -0.0006986506632529199, 0.022918550297617912, -0.01752595044672489, -0.01210838370025158, -0.008376006036996841, 0.011571620590984821, 0.01602800562977791, -0.021882470697164536, 0.029709231108427048, 0.019548173993825912, 0.0029303538613021374, 0.01335667073726654, -0.00712771899998188, -0.03150676563382149, -0.00563601590692997, -0.016202764585614204, -0.020184801891446114, 0.04765959829092026, 0.008301109075546265, -0.012158315628767014, 0.00723382318392396, 0.0009260729420930147, 0.009312220849096775, 0.03118220902979374, 0.014729786664247513, -0.02385476417839527, -0.0014004219556227326, 0.030433237552642822, -0.02309330925345421, 0.011708931997418404, 0.0016009281389415264, -0.05487469583749771, -0.037972889840602875, -0.013581362552940845, 0.027312520891427994, 0.0033547712955623865, -0.02511553466320038, -0.045961927622556686, -0.013294256292283535, 0.03220580518245697, -0.00990515761077404, -0.03974545747041702, 0.010491852648556232, 0.00022274121874943376, -7.92369683040306e-05, -0.02783679962158203, -0.008794181980192661, 0.00948698166757822, -0.002969362773001194, -0.019186170771718025, -0.025839541107416153, 0.011602828279137611, -0.0025823938194662333, -0.029759163036942482, 0.02501567266881466, -0.002211028477177024, 0.034053269773721695, -0.009717914275825024, -0.014517578296363354, 0.008276143111288548, -0.009998778812587261, 0.03322939947247505, 0.036175359040498734, -0.022394269704818726, -0.010279643349349499, 0.017313741147518158, 0.011134720407426357, 0.009923881851136684, 0.009043839760124683, -0.013481499627232552, -0.0035482558887451887, 0.02816135436296463, -0.03654984384775162, 0.01247662864625454, 0.011215859092772007, -0.013431568630039692, -0.009343428537249565, 0.006203986704349518, -0.026962999254465103, -0.0024107543285936117, -0.0052740126848220825, -0.015291515737771988, -0.004646748304367065, 0.0036387566942721605, -0.01760084740817547, -0.00681564724072814, -0.018924031406641006, -0.002348339883610606, -0.01631511189043522, 0.026788240298628807, -0.012882322072982788, 0.03784806281328201, -0.004019484389573336, -0.03969552740454674, -0.03502693399786949, 0.017163947224617004, -0.030333373695611954, 0.02195736952126026, 0.00427226210013032, -0.006665852852165699, 0.0033859785180538893, 0.01375612337142229, 0.00398203544318676, 0.029135018587112427, 0.004746611230075359, -0.010005020536482334, 0.008038968779146671, 0.03497700393199921, 0.01866189017891884, -0.0018973962869495153, 0.017862986773252487, 0.024741047993302345, -0.02122087962925434, -0.0011359411291778088, -0.028186321258544922, -0.017650779336690903, 0.013531431555747986, 0.001575962407514453, -0.0301835797727108, 0.0037011709064245224, 0.03994518518447876, -0.008513317443430424, -0.033154502511024475, -0.04049443081021309, 0.02706286311149597, -0.012720044702291489, -0.013918399810791016, 0.027637073770165443, 0.011671483516693115, -0.029883991926908493, 0.005564239341765642, -0.013032116927206516, -0.002640126971527934, 0.048183880746364594, 0.004331556148827076, 0.03063296340405941, -0.012295627035200596, 0.005414444953203201, -0.005021234508603811, -0.04159292206168175, -0.0036918087862432003, -0.030707860365509987, -0.004599937703460455, 0.0202347319573164, -0.006565989926457405, -0.005361392628401518, 0.04061925783753395, 0.009493222460150719, -0.0443141907453537, -0.016065454110503197, -0.014043228700757027, 0.01035454124212265, 0.004493833053857088, -0.026288924738764763, -0.00684061273932457, -0.004088140092790127, 0.035276591777801514, -0.027212657034397125, 0.008500834926962852, 0.02170771174132824, 0.0061010029166936874, 0.007240064907819033, 0.0017476017819717526, -0.001891154795885086, -0.01919865421950817, 0.0022359942086040974, -0.013394120149314404, 0.013568880036473274, -0.026763273403048515, 0.029759163036942482, 0.014230472035706043, 0.015578621998429298, -0.001758524333126843, -0.013768605887889862, -0.03537645563483238, 0.01504185888916254, -0.016976702958345413, 0.0282612182199955, 0.018824167549610138, 0.026962999254465103, -0.0005968372570350766, -0.037548474967479706, -0.015004410408437252, 0.035526249557733536, -0.03962063044309616, -0.008875320665538311, -0.01155913807451725, 0.03278001770377159, -0.02758714370429516, 0.029809093102812767, -0.012782459147274494, -0.000817627995274961, 0.023293035104870796, 0.01318191085010767, -0.004933854565024376, 0.01363129448145628, 0.021233363077044487, -0.002270322060212493, -0.04099374637007713, -0.04376494139432907, 0.006222710944712162, 0.025639815255999565, -0.013556396588683128, 0.015154204331338406, -0.004334676545113325, -0.005043079610913992, 0.024416493251919746, 0.016851874068379402, -0.01637752540409565, 0.03130703791975975, -0.020496873185038567, 0.013768605887889862, -0.03085765428841114, -0.022556547075510025, -0.005380116868764162, -0.020446941256523132, -0.010997409000992775, 0.0054987045004963875, 0.008051451295614243, -0.0037074123974889517, 0.0064286780543625355, -0.006453644018620253, -0.010491852648556232, -0.0208713598549366, 0.02427918277680874, -0.0378979928791523, -0.008825389668345451, -0.008107624016702175, -0.029259847477078438, -0.013419085182249546, -0.015516207553446293, 0.002393590286374092, -0.00937463529407978, 0.013069565407931805, -0.035950664430856705, 0.03602556511759758, 0.007339927833527327, -0.008301109075546265, -0.011765104718506336, -0.00628512492403388, -0.03952076658606529, 0.00605419185012579, -0.009549396112561226, 0.010548025369644165, 0.03702419251203537, 0.01788795366883278, -0.0029678023420274258, -0.019348448142409325, -0.021695228293538094, -0.011683966033160686, 0.013818536885082722, -0.005564239341765642, -0.016752012073993683, -0.020958738401532173, -0.016290144994854927, -0.02115846425294876, 0.017875470221042633, 0.020059973001480103, -0.014217989519238472, 0.0016258938703686, 0.028860395774245262, 0.01968548633158207, 0.00908752903342247, 0.01984776370227337, 0.01155913807451725, -0.03904641792178154, -0.021395638585090637, 0.006091640796512365, 0.017288776114583015, 0.02497822232544422, -0.005586084444075823, 0.033154502511024475, 0.0282612182199955, -0.017001669853925705, 0.03200607746839523, -0.0034452721010893583, 0.01984776370227337, -0.014954478479921818, -0.050905145704746246, -0.012333075515925884, -0.040694158524274826, 0.02658851258456707, 0.01688932254910469, -0.0016040487680584192, 0.038871657103300095, 0.003513928037136793, -0.0002773537707980722, 0.003754223231226206, -0.01375612337142229, -0.011790070682764053, -0.003307960694655776, -0.018212508410215378, 0.006135330535471439, 0.03375368192791939, 0.01772567629814148, -0.03297974169254303, -0.021982334554195404, 0.015066823922097683, 0.005074286833405495, -0.00241231475956738, 0.006188382860273123, 0.018162576481699944, -0.028211286291480064, -0.03290484473109245, -0.023417863994836807, -0.021820057183504105, -0.02372993715107441, 0.018574511632323265, 0.006310090888291597, -0.00437524588778615, -0.01785050518810749, 0.012595215812325478, -0.04421432688832283, -0.00628512492403388, 0.029135018587112427, -0.02411690540611744, -0.011715173721313477, 0.004047570750117302, -0.024616219103336334, -0.008581973612308502, 0.008968941867351532, -0.004790301434695721, 0.010179780423641205, -0.008819147944450378, 0.025964369997382164, -0.012539043091237545, 0.02691306732594967, 0.017126498743891716, 0.00021415924129541963, 0.045387715101242065, 0.0301835797727108, -0.022806202992796898, -0.0008925251895561814, 0.025215398520231247, 0.005879431962966919, -0.002535582985728979, 0.04441405087709427, 0.006690818350762129, 0.020284663885831833, -0.013306739740073681, 0.007695689331740141, 0.0149295125156641, 0.017163947224617004, 0.01981031522154808, 0.014979444444179535, -0.036874398589134216, 0.0365997739136219, -0.021208396181464195, 0.025989335030317307, 0.005792051553726196, -0.00883163046091795, 0.021682744845747948, 0.01559110451489687, -0.0020128628239035606, -0.052577849477529526, -0.019548173993825912, -0.026638444513082504, -0.05050569400191307, -0.01363129448145628, 0.04488839954137802, 0.00667833536863327, -0.013618811033666134, -0.02693803422152996, 0.03827248141169548, -0.02340538240969181, 0.014055712148547173, 0.007246306166052818, -0.00675947405397892], [0.002155240857973695, 0.009265019558370113, 0.004508394747972488, 0.02890203148126602, -0.04486926272511482, -0.025775674730539322, 0.0026231880765408278, 0.0411122664809227, -0.02231387048959732, -0.031209900975227356, -0.01194858830422163, -0.03850920498371124, 0.04621104896068573, -0.02537313848733902, -0.035825636237859726, 0.024246040731668472, 0.00884235743433237, -0.00335781485773623, -0.035691458731889725, 0.04339330270886421, 0.026527073234319687, 0.046774595975875854, 0.011465545743703842, -0.028284810483455658, -0.0006864065071567893, -0.013055560179054737, 0.013941138051450253, -0.032766371965408325, 0.07379812747240067, -0.053483519703149796, 0.030861036852002144, -0.03209547698497772, 0.048814110457897186, -0.027667589485645294, -0.03510107472538948, -0.021844247356057167, -0.005705937277525663, 0.003243763232603669, -0.010546423494815826, 0.043634820729494095, -0.0010717500699684024, 0.04081707447767258, -0.00889602955430746, 0.005142387934029102, -0.009030207991600037, -0.01191504392772913, 0.03606715798377991, -0.028231140226125717, 0.021629560738801956, 0.01269327849149704, 0.04320545122027397, 0.05919951945543289, -0.040870748460292816, -0.02095866948366165, -0.01123744249343872, -0.018261682242155075, -0.010606803931295872, 0.040763404220342636, 0.04304443672299385, -0.00784272886812687, 0.016799138858914375, -0.06349322944879532, -0.035530444234609604, -0.004370862152427435, 0.0012050899676978588, 0.01572571136057377, 0.0013384297490119934, 0.0068330359645187855, -0.03177344799041748, -0.02074398286640644, 0.007681714370846748, 0.025815928354859352, 0.07551561295986176, -0.0743885189294815, -0.0385897122323513, -0.01899966411292553, 0.013914301991462708, 0.01569887436926365, -0.0007572694448754191, 0.011264278553426266, -0.02089158073067665, -0.0032253137324005365, -0.04867992922663689, 0.001640331232920289, -0.06445931643247604, -0.03491322323679924, -0.10004343092441559, -0.021106265485286713, -0.001486025983467698, 0.046962447464466095, -0.031048886477947235, -0.04299076646566391, 0.01606115698814392, 0.042239367961883545, 0.007225507870316505, -0.04586218297481537, 0.005880369339138269, -0.01718825474381447, -0.0015011210925877094, 0.0409780889749527, 0.021669814363121986, -0.03638918697834015, 0.00750728277489543, 0.03008280135691166, 0.032498013228178024, -0.013008598238229752, 0.0206232238560915, -0.01518899668008089, -0.007145000621676445, -0.015269503928720951, -0.048706766217947006, -0.02884835936129093, -0.04889461770653725, 0.029304567724466324, -0.002755689201876521, 0.05147084221243858, 0.014987729489803314, -0.040414538234472275, -0.03598665073513985, -0.030780529603362083, -0.03531575947999954, 0.006997404620051384, 0.05898483470082283, -0.025842763483524323, 0.023293374106287956, -0.04476192221045494, 0.015256086364388466, -0.012210235930979252, -0.04733814671635628, -0.02721138298511505, 0.028284810483455658, -0.0658547654747963, 0.02849949710071087, -0.00048346162657253444, 0.03968997672200203, 0.025883017107844353, 0.007849437184631824, -0.02887519635260105, -0.032632190734148026, -0.019643720239400864, 0.026661252602934837, -0.0024454016238451004, -0.0003738126833923161, -0.03032432310283184, -0.05903850495815277, 0.04019985347986221, -0.002034480217844248, -0.014115570113062859, -0.02070372924208641, -0.004401052370667458, -0.01025793980807066, -0.018784979358315468, 0.035825636237859726, -0.020260941237211227, 4.3634194298647344e-05, 0.023414134979248047, 0.029465580359101295, 0.0381871797144413, -0.010942250490188599, -0.014035062864422798, -0.04288342222571373, -0.002923412248492241, 0.0007786541245877743, -0.011660104617476463, 0.037435777485370636, 0.006521071307361126, -0.02709062211215496, 0.019965749233961105, -0.051631856709718704, -0.04626471921801567, 0.0015170547412708402, -0.031209900975227356, -0.045083947479724884, 0.03853604197502136, -0.00786956399679184, -0.012820747680962086, 0.040414538234472275, 0.023159194737672806, -0.02852633222937584, 0.03171977773308754, 0.0038173759821802378, -0.024715665727853775, -0.02539997547864914, -0.0028378735296428204, -0.0409780889749527, -0.02240779623389244, 0.021347787231206894, 0.006816263776272535, -0.022555392235517502, 0.03617450222373009, -0.03048533760011196, -0.04473508521914482, -0.029036210849881172, 0.036120831966400146, -0.0073127239011228085, -0.021938171237707138, -0.019938914105296135, -0.014571776613593102, 0.012277325615286827, -0.019643720239400864, -0.006511007901281118, -0.029599759727716446, 0.04092441871762276, 0.03767729923129082, -0.08957751095294952, -0.008480075746774673, -0.04092441871762276, 0.02529263123869896, 0.021414875984191895, 0.0019153968896716833, 0.0318002849817276, -0.030968379229307175, 0.0077890572138130665, 0.0011589661007747054, -0.014732790179550648, 0.03362511098384857, -0.04454723373055458, 0.056623294949531555, -0.01029819343239069, 0.05369820445775986, -0.05887749046087265, -0.00220388057641685, -0.019536377862095833, 0.0074871559627354145, 0.04146113246679306, 0.02992178685963154, 0.0508267842233181, 0.012606062926352024, 0.005870305933058262, -0.05302731320261955, 0.013659362681210041, 0.023373881354928017, -0.012961635366082191, -0.03147825598716736, 0.013364170677959919, -0.017818894237279892, 0.014088734053075314, -0.03968997672200203, 0.02722480148077011, -0.0033091753721237183, 0.03016330860555172, -0.013652654364705086, -0.0031548701226711273, -0.001928814803250134, 0.023360462859272957, 0.0008247779915109277, -0.0048572588711977005, 0.0189594104886055, 0.026057448238134384, -0.04653307422995567, -0.018342189490795135, -0.026339223608374596, 0.07578396797180176, -0.083029605448246, -0.02409844473004341, 0.05383238196372986, -0.0352620892226696, -0.03182712197303772, 0.025856181979179382, -0.0032924029510468245, 0.023065270856022835, -0.022864002734422684, 0.010834907181560993, 0.018181174993515015, -0.012793912552297115, -0.006158789619803429, -0.011760738678276539, 0.03990466147661209, -0.018127504736185074, 0.04618421196937561, -0.07288571447134018, -0.022890837863087654, 0.016866227611899376, 0.004065606277436018, -0.019831569865345955, 0.04030719771981239, -0.022729825228452682, -0.038858070969581604, 0.0013535248581320047, 0.016423437744379044, -0.029626594856381416, 0.003545664716511965, -0.04304443672299385, -0.03644285723567009, 0.018449531868100166, 0.023440970107913017, 0.010096926242113113, 0.023467805236577988, -0.006433855276554823, 0.06064864620566368, 0.032793205231428146, -0.06435196846723557, -0.028231140226125717, -0.05088045820593834, 0.048384737223386765, 0.00022076543245930225, -0.00783601962029934, -0.033920302987098694, -0.021066011860966682, -0.027855439111590385, 0.0029066400602459908, 0.045325469225645065, 0.024554651230573654, -0.03507423773407936, -0.07782348245382309, -0.005450998432934284, -0.02688935585319996, 0.03024381585419178, 0.003981744404882193, -0.03824084997177124, -0.03947529196739197, 0.016799138858914375, -0.01741635799407959, -0.083029605448246, -0.028257975354790688, -0.030726857483386993, 0.008547165431082249, -0.013900884427130222, 0.009493122808635235, -0.032417505979537964, 0.045003440231084824, 0.0020680248271673918, 0.0508267842233181, -0.0079500712454319, -0.05903850495815277, -0.006400310434401035, 0.027667589485645294, 0.006470754276961088, -0.04591585695743561, -0.0014197754207998514, -0.007513991557061672, -0.03719425946474075, 0.06043396145105362, 0.01418265886604786, -0.0033209158573299646, 0.012592644430696964, 0.014115570113062859, -0.031075721606612206, 0.03381296247243881, -0.01045920792967081, 0.030941544100642204, -0.03019014373421669, 0.004796878434717655, -0.012116311118006706, 0.007225507870316505, -0.007520700339227915, 0.04441305622458458, 0.0600045882165432, -0.054664287716150284, 0.0023833441082388163, -0.02256881073117256, -0.028257975354790688, -0.02519870735704899, 0.016383185982704163, -0.019522959366440773, -0.008916156366467476, 0.042051516473293304, 0.01581963524222374, -0.02231387048959732, 0.035664625465869904, -0.004001871217042208, 0.032659027725458145, 0.019496124237775803, -0.004263519309461117, 0.05232958495616913, 0.056247591972351074, -0.01930827461183071, 0.03960946947336197, 0.0238166693598032, -0.010600095614790916, -0.0128073301166296, 0.0251450352370739, 0.002772461622953415, -0.026352642104029655, -0.05517416447401047, -0.0383213572204113, 0.05079995095729828, 0.021119683980941772, 0.008137920871376991, 0.014209494926035404, 0.025856181979179382, -0.021522218361496925, -0.020099926739931107, -0.01934852823615074, 0.05533517897129059, 0.0003891174274031073, -0.0574820339679718, 0.00597093952819705, -0.023521477356553078, -0.009057043120265007, -0.005887078121304512, -0.0119083346799016, -0.03212231397628784, 0.008043996058404446, -0.01587330736219883, -0.02538655698299408, -0.002401793608441949, -0.004505040589720011, -0.02538655698299408, -0.010982504114508629, -0.018784979358315468, -0.04170265421271324, -0.0074871559627354145, 0.004847195465117693, -0.03641602396965027, 0.02836531773209572, -0.003948200028389692, -0.007453611120581627, -0.014746208675205708, -0.012082766741514206, 0.01920093223452568, -0.04414470121264458, 0.03853604197502136, -0.004555357154458761, 0.027748096734285355, -0.006474108900874853, 0.0013308821944519877, 0.035959817469120026, -0.009587048552930355, -0.0769110694527626, 0.011036175303161144, 0.03354460373520851, -0.030646350234746933, -0.01765787973999977, -0.05399339646100998, -0.004273582715541124, 0.0030089509673416615, -0.04894828796386719, 0.016517363488674164, -0.027412651106715202, -0.0006578935426659882, -0.012438339181244373, 0.02884835936129093, 0.013967973180115223, -0.041944172233343124, -0.04586218297481537, 0.014276583679020405, 0.045218128710985184, -0.016316095367074013, -0.04465457797050476, 0.01437050849199295, 0.008828939869999886, -0.0007878789328970015, 0.027613919228315353, -0.029465580359101295, -0.00631309486925602, 0.01343796867877245, 0.02364223822951317, -0.03217598423361778, 0.007352977525442839, 0.006544552277773619, -0.010942250490188599, -0.048626258969306946, 0.015027983114123344, -0.03547677397727966, 0.03209547698497772, -0.05385921895503998, -0.038992248475551605, 0.04889461770653725, -0.03308839723467827, 0.002618156373500824, 0.05291996896266937, 0.06478133797645569, 0.021790575236082077, 0.03284687548875809, -0.004068960435688496, -0.04304443672299385, -0.02715771272778511, 0.008607545867562294, 0.0022743241861462593, -0.02399110235273838, -0.0032924029510468245, -0.045244961977005005, -0.015095071867108345, 0.027587082237005234, -0.015564696863293648, -0.042400382459163666, -0.04167581722140312, -0.013679489493370056, -0.025775674730539322, 0.015497607178986073, 3.8078367651905864e-05, -0.04419837146997452, -0.021079430356621742, 0.007319432683289051, -0.021468546241521835, 0.02705037035048008, 0.03035115823149681, -0.042212530970573425, -0.004572129808366299, -0.02091841585934162, 0.030941544100642204, 0.02721138298511505, -0.014491269364953041, -0.0009635688038542867, 0.029009373858571053, -0.010432371869683266, 0.0028043289203196764, 0.04631838947534561, 0.0224883034825325, -0.004806941840797663, -0.05597923696041107, 0.0007564308471046388, 0.045325469225645065, -0.026298969984054565, -0.017215091735124588, -0.004011934623122215, -0.043769001960754395, -0.0224883034825325, 0.018140923231840134, -0.01903991773724556, 0.023132359609007835, -0.006853162776678801, 0.0014726081863045692, -0.02688935585319996, -0.0015623399522155523, -0.005759608466178179, -0.019670557230710983, -0.012988471426069736, 0.05522783845663071, -0.0010491075227037072, -0.012901254929602146, -0.0026869229041039944, -0.011076428927481174, 0.02569516748189926, -0.014759626239538193, 0.00806412287056446, -0.01355202030390501, -0.0064405640587210655, 0.01779205910861492, 0.02074398286640644, -0.04261506721377373, -0.04591585695743561, 0.012324287556111813, -0.0027104041073471308, 0.002133436966687441, 0.01592697761952877, -0.00018386635929346085, 0.0176981333643198, -0.027560247108340263, 0.028955703601241112, -0.0002876450016628951, -0.0128408744931221, 0.010734273120760918, -7.88822362665087e-05, 0.009754771366715431, 0.023266537114977837, 0.012357832863926888, 0.006390247028321028, 0.025815928354859352, 0.008580709807574749, 0.009714517742395401, -0.00019372008682694286, -0.04752599447965622, 0.016571035608649254, -0.003874401794746518, -0.004035416059195995, -0.00967426411807537, 0.0352620892226696, 0.0036127539351582527, 0.016611289232969284, 0.04647940397262573, 0.037462614476680756, 0.008332479745149612, 0.03024381585419178, 0.025118200108408928, 0.019415616989135742, -0.0006620866479352117, -0.03939478471875191, -0.00511219771578908, 0.017027242109179497, -0.007111456245183945, -0.0012159919133409858, -0.0021384686697274446, 0.020059673115611076, 0.012237071990966797, -0.02564149536192417, -0.04782119020819664, 0.0077890572138130665, -0.011076428927481174, -0.021602725610136986, 0.030861036852002144, -0.0018684344831854105, 0.0018717889906838536, -0.018087251111865044, 0.01022439543157816, 0.005608657840639353, 0.0066787307150661945, 0.03464486822485924, 0.03201496973633766, 0.02713087573647499, -0.025212125852704048, 0.03330308198928833, 0.010801362805068493, 0.014746208675205708, 0.013183029368519783, -0.012364541180431843, -0.027452904731035233, -0.016879646107554436, 0.0018114086706191301, 0.016571035608649254, 0.01438392698764801, 0.032390668988227844, -0.02866050973534584, -0.013967973180115223, -0.006752529181540012, 0.007601207587867975, -0.00276407552883029, 0.013927719555795193, 0.04401051998138428, 0.02046220935881138, 0.04277608171105385, 0.04317861422896385, -0.01737610623240471, -0.03335675597190857, 0.02226020023226738, -0.018543457612395287, -0.03834819421172142, -0.02085132710635662, 0.05458378046751022, -0.01755053736269474, 0.011465545743703842, 0.011036175303161144, 0.02527921460568905, -0.007654878776520491, 0.015578114427626133, 0.005793153308331966, -0.04441305622458458, -0.004642573185265064, -0.01899966411292553, 0.0007606238941662014, 0.024930350482463837, -0.00197913171723485, 0.021911336109042168, 0.004431242123246193, -0.0037804769817739725, 0.05286629870533943, -0.006413728464394808, -0.0013837149599567056, 0.03029748797416687, 0.046694088727235794, 0.03671121597290039, -0.0036731341388076544, -0.02839215286076069, 0.011975424364209175, 0.022837167605757713, -0.01879839599132538, 0.02702353335916996, -0.01894599199295044, -0.007379813119769096, 0.010029836557805538, 0.006111827213317156, 0.005518087651580572, -0.04578167572617531, -0.011398456990718842, 0.019576631486415863, 0.02200525999069214, 0.0540202334523201, 0.013008598238229752, 0.027613919228315353, -0.020287776365876198, 0.010499461553990841, -0.018516622483730316, 0.04452040046453476, 0.018046997487545013, -0.005266502965241671, 0.019536377862095833, -0.01611482910811901, 0.0172285083681345, 0.04017302021384239, 0.010559841990470886, 0.006001129746437073, 0.035959817469120026, -0.019710808992385864, -0.03520841896533966, -0.01422291249036789, -0.018046997487545013, -0.0003008531639352441, -0.027587082237005234, 0.005118906497955322, 0.014920640736818314, -0.021159937605261803, -0.029438745230436325, 0.006004484370350838, 1.3195084648032207e-05, -0.017859147861599922, 0.06580109894275665, -0.016155080869793892, 0.007520700339227915, -0.00379054038785398, -0.024272875860333443, -0.008198301307857037, 0.035825636237859726, -0.026379477232694626, 0.004964601714164019, 0.038938578218221664, -0.0038542752154171467, -0.026553908362984657, -0.015282922424376011, -0.1177549809217453, 0.02527921460568905, 0.004253455903381109, 0.03515474498271942, -0.017094330862164497, -0.014893804676830769, 0.016517363488674164, -0.007889690808951855, 0.0018935929983854294, 0.04795536771416664, -0.012941508553922176, -0.02725163660943508, -0.02879468910396099, -0.04953867197036743, -0.00709132943302393, -0.038992248475551605, 0.006450627464801073, 0.021294115111231804, -0.04905562847852707, 0.017094330862164497, -0.03676488623023033, -0.038911741226911545, 0.05434225872159004, -0.021830828860402107, -0.026513656601309776, 0.04266873747110367, -0.02095866948366165, 0.005145742557942867, -0.02522554248571396, 0.0224212147295475, 0.023212866857647896, 0.00862096343189478, -0.002368248999118805, -0.005997775588184595, 0.007111456245183945, -0.0077890572138130665, 0.031290408223867416, -0.026728341355919838, -0.04100492596626282, -0.018127504736185074, -0.006930315401405096, 0.0035423103254288435, -0.04476192221045494, 0.005816634278744459, 0.03641602396965027, -0.012532263994216919, -0.01906675286591053, -0.0010264648590236902, -0.01265973411500454, -0.032524850219488144, 0.040441375225782394, -0.0150011470541358, 0.011935170739889145, -0.020234106108546257, 0.0007505605462938547, -0.009291855618357658, -0.03222965821623802, 0.024581486359238625, 0.018503203988075256, 0.0005362943629734218, 0.018181174993515015, 0.01742977648973465, -0.0033343336544930935, -0.017040658742189407, 0.030539007857441902, 0.02403135411441326, -0.02256881073117256, -0.030861036852002144, -0.006504299119114876, -0.007044367026537657, 0.0383213572204113, -0.007232216652482748, 0.0033175614662468433, 0.02389717660844326, 0.012317579239606857, 0.029009373858571053, -0.0002924670116044581, -0.02707720547914505, -0.009030207991600037, -0.013129358179867268, -0.035557281225919724, 0.03314207121729851, -0.020328029990196228, 0.031048886477947235, 0.029358237981796265, 0.012746949680149555, -0.02239437773823738, -0.0026399604976177216, -0.007849437184631824, 0.022555392235517502, 0.007077911868691444, -0.009707808494567871, -0.035932980477809906, 0.010137179866433144, -0.03692590072751045, 0.0007019208860583603, -0.005068589933216572, -0.016155080869793892, -0.017845729365944862, 0.01027135830372572, 0.0002096537791658193, -0.014665701426565647, -0.003391359467059374, 0.012760368175804615, 0.018127504736185074, 0.051846541464328766, -0.04766017571091652, 0.002542681060731411, 0.009922494180500507, 0.016302678734064102, 0.0022810332011431456, -0.049941208213567734, 0.026620998978614807, -0.0043809255585074425, 0.019576631486415863, -0.0039649722166359425, -0.013223282992839813, 0.0016327836783602834, -0.03142458572983742, -0.009090587496757507, 0.028311647474765778, -0.00037087753298692405, -0.06451298296451569, -0.012780494056642056, 0.025212125852704048, -0.004199784714728594, -0.00959375686943531, 0.039019085466861725, 0.00593739515170455, -0.029760774224996567, 0.007366395089775324, -0.021320950239896774, 0.002658409997820854, -0.04172948747873306, 0.016262425109744072, 0.0061990427784621716, -0.03287371248006821, -0.02531946823000908, -0.008144630119204521, 0.009587048552930355, -0.01577938161790371, -0.0016352995298802853, -0.011499090120196342, -0.034134991466999054, -0.008580709807574749, -0.020274359732866287, 0.0015958845615386963, -0.018087251111865044, -0.00554492324590683, -0.026231881231069565, -0.0001543051766930148, 0.01732243411242962, 0.0052698575891554356, 0.01261948049068451, 0.017255345359444618, -0.0035959817469120026, 0.004481559153646231, -0.010351864621043205, 0.001920428592711687, 0.016772301867604256, -0.012317579239606857, -0.046720925718545914, -0.0031330659985542297, 0.005259794183075428, -0.061185359954833984, -0.0028798042330890894, 0.03332991898059845, 0.06451298296451569, -0.0042031388729810715, 0.06526438146829605, 0.012230362743139267, 0.023400716483592987, -0.039099592715501785, 0.005759608466178179, 0.013605691492557526, -0.008352606557309628, 0.011593015864491463, -0.02890203148126602, -0.0015044754836708307, 0.035637788474559784, -0.016906481236219406, 0.040521882474422455, 0.00042769371066242456, -0.008607545867562294, -0.006232587620615959, 0.01568545773625374, 0.01728218048810959, -0.00033104332396760583, 0.024326547980308533, 0.04894828796386719, 0.0193619467318058, -0.007218799088150263, -0.001928814803250134, 0.022676153108477592, -0.03456436097621918, -0.02539997547864914, 0.0385897122323513, 0.046613581478595734, 0.03453752398490906, 0.010982504114508629, 0.025936689227819443, 0.0008671280229464173, 0.035745132714509964, 0.045379143208265305, 0.0028110379353165627, 0.03467170521616936, -0.0077219679951667786, -0.017939655110239983, -0.020153598859906197, 0.0273455623537302, -0.026258716359734535, 0.007560953963547945, -0.0040521882474422455, -0.02040853723883629, -0.04586218297481537, -0.005024981684982777, 0.02405819110572338, -0.02566833235323429, 0.014316837303340435, 0.00638689287006855, 0.024635158479213715, 0.03343726322054863, 0.02558782510459423, 0.027587082237005234, -0.004303772933781147, -0.009405907243490219, -0.03236383572220802, 0.00865450780838728, 0.022837167605757713, -0.006229232996702194, 0.004837132059037685, 0.02239437773823738, 0.00393478199839592, 0.048599421977996826, 0.03547677397727966, 0.026097701862454414, -0.03029748797416687, 0.010834907181560993, -0.01747003011405468, 0.02085132710635662, -0.03158560022711754, -0.02876785397529602, 0.0032118959352374077, 0.004914284683763981, -0.023320209234952927, 0.03507423773407936, -0.02217969298362732, -0.0319344624876976, -0.021213607862591743, 0.0060279653407633305, 0.008439823053777218, 0.02705037035048008, 0.016450274735689163, 0.0008071670308709145, -0.01732243411242962, -0.0025124908424913883, 0.017818894237279892, 0.0018550166860222816, -0.01029819343239069, 0.03491322323679924, 0.0033846506848931313, -0.02048904448747635, -0.010922123678028584, -0.009090587496757507, -0.030861036852002144, 0.03370561823248863, 0.03534259647130966, -0.0005807409761473536, 0.021884500980377197, 0.005863597150892019, 0.01618191786110401, -0.0026785368099808693, -0.01568545773625374, 0.010244522243738174, 0.03797249123454094, -0.017067495733499527, 0.002450433326885104, 0.03150509297847748, -0.0019891951233148575, 0.011478964239358902, -0.013686198741197586, 0.008627672679722309, 0.029841281473636627, 0.06499602645635605, -0.032310161739587784, -0.018234847113490105, 0.003653007559478283, 0.055066823959350586, -0.03504740446805954, -0.004169594496488571, -0.022823749110102654, 0.020207269117236137, 0.004018643870949745, 0.012498719617724419, 0.005125615745782852, -0.014048480428755283, 0.005531505215913057, 0.004625800997018814, 0.030619515106081963, 0.02224678173661232, 0.03142458572983742, -0.0020478982478380203, -0.02871418185532093, 0.029009373858571053, -0.01760420948266983, 0.006121890619397163, 0.018610546365380287, 0.02086474373936653, 0.040414538234472275, -0.008989954367280006, -0.03330308198928833, 0.04092441871762276, -0.0050987801514565945, 0.01585988886654377, -0.051819704473018646, -0.01128440536558628, -0.05045108497142792, -0.0042903549037873745, 0.007044367026537657, -0.010955668054521084, 0.033920302987098694, 0.018315354362130165, 0.011807700619101524, -0.002029448514804244, -0.022917674854397774, -0.007460320368409157, -0.017966490238904953, 0.021240442991256714, -0.0011933493660762906, 0.04019985347986221, 0.013317207805812359, 0.00099795195274055, 0.0078829824924469, -0.016839392483234406, 0.021736903116106987, 0.008580709807574749, 0.01752370223402977, -0.0025108137633651495, -0.034161824733018875, -0.018194593489170074, -0.0037268055602908134, -0.003961618058383465, 0.007849437184631824, -0.02040853723883629, 0.03295421972870827, -0.019831569865345955, -0.006423791870474815, 0.024742500856518745, 0.017121165990829468, 0.025010857731103897, 0.037784643471241, 0.0062929680570960045, -0.014880387112498283, -0.02056955173611641, -0.019630303606390953, -0.0006411212380044162, -0.01912042498588562, -0.007802475243806839, 0.016691794618964195, -0.032685864716768265, -0.009962747804820538, 0.018489785492420197, -0.012485302053391933, 0.0017510283505544066, -0.01269998773932457, 0.0273455623537302, -0.005447643809020519, -0.017845729365944862, -0.0036966155748814344, 0.012954926118254662, 0.0035624371375888586, -0.017201673239469528, -0.0023397360928356647, 0.003981744404882193, 0.03464486822485924, 0.056515950709581375, -0.013927719555795193, -0.01572571136057377, -0.036013487726449966, -0.009607174433767796, 0.03373245522379875, 0.007265761494636536, 0.026352642104029655, -0.015604950487613678, 0.00873501505702734, -0.009493122808635235, -0.0029821153730154037, 0.026298969984054565, 0.016396602615714073, -0.018543457612395287, -0.0033880050759762526, -0.0159001424908638, 0.02055613324046135, 0.023011598736047745, 0.01765787973999977, 0.0045285215601325035, 0.01581963524222374, 0.022957928478717804, -0.007446902338415384, 0.012277325615286827, 0.03689906373620033, -0.004374216310679913, 0.01347151305526495, 0.007903109304606915, 0.021965008229017258, -0.010828198865056038, -0.009721226058900356, -0.005001500714570284, -0.021146519109606743, 0.05216857045888901, 0.021347787231206894, 0.003874401794746518, 0.018731307238340378, 0.010995921678841114, 0.0062023974023759365, 0.01201567705720663, -0.001177415600977838, -0.023601984605193138, 0.02243463136255741, -0.0029334756545722485, 0.01618191786110401, -0.04610370472073555, -0.007352977525442839, -0.002909994451329112, -0.035959817469120026, 0.01897282898426056, -0.02408502623438835, -0.03029748797416687, 0.009654137305915356, -0.004307127092033625, 0.024903515353798866, -0.010217687115073204, -0.008164756931364536, 0.0009115746361203492, -0.01908017136156559, 0.012867710553109646, -0.011720485053956509, -0.022890837863087654, -0.02047562599182129, 0.030780529603362083, -0.016410021111369133, 0.008379442617297173, 0.003971680998802185, 0.004072315059602261, -0.016450274735689163, -0.02565491385757923, -0.0037301601842045784, -0.015430518426001072, 0.08571317791938782, 0.0037402233574539423, -0.018717888742685318, 0.013874048367142677, 0.03032432310283184, 0.014437598176300526, -0.03013647347688675, 0.025091364979743958, -0.01908017136156559, 0.024286294355988503, -0.008969827555119991, 0.01764446310698986, -0.0037335145752876997, -0.021723486483097076, -0.003948200028389692, -0.0136727811768651, 0.006058155559003353, 0.026312388479709625, -0.018449531868100166, 0.01903991773724556, -0.00014833004388492554, 0.027452904731035233, 0.02544022910296917, -0.008721597492694855, -0.007057785056531429, -0.01922776736319065, 0.012592644430696964, 0.006970569025725126, -0.001875143381766975, 0.041380625218153, -0.0002605996560305357, -0.0019472643034532666, 0.022716406732797623, -0.013652654364705086, -0.010472625494003296, 0.00403206143528223, -0.003857629606500268, -0.03287371248006821, 0.043930016458034515, 0.008258681744337082, -0.009587048552930355, -0.01285429298877716, -0.005548277869820595, -0.006571388337761164, 0.00960046611726284, -0.0001647878671064973, -0.012545682489871979, -0.014249748550355434, 0.025024274364113808, 0.0017225154442712665, 0.011385038495063782, 0.015604950487613678, -0.049833863973617554, -0.033947139978408813, -0.018771560862660408, 0.007346268277615309, -0.0046190922148525715, -0.0013468158431351185, -0.03469853848218918, -0.008942991495132446, 0.00750728277489543, -0.016919897869229317, -0.01115693524479866, 0.024568067863583565, 0.011264278553426266, -0.009090587496757507, -0.03657703846693039, -0.001816440373659134, -0.013994809240102768, -0.01501456554979086, -0.027506576851010323, -0.007145000621676445, -0.0020529297180473804, 0.020073091611266136, -0.021669814363121986, 0.019469289109110832, 0.0031900920439511538, 0.024594904854893684, -0.009197930805385113, -0.019697392359375954, 0.030914707109332085, -0.002582934685051441, 0.040709733963012695, 0.026728341355919838, -0.010049963369965553, -0.020193852484226227, 0.01429000124335289, 0.01027135830372572, 0.006511007901281118, 0.006121890619397163, -0.008345897309482098, -0.0034416764974594116, 0.02401793748140335, -0.041944172233343124, 0.0013828763039782643, 0.024219205603003502, -0.009379071183502674, 0.007098038215190172, 0.014021645300090313, -0.013102523051202297, -0.0008222621399909258, -0.0028177467174828053, -0.024675412103533745, 0.0031582245137542486, -0.014035062864422798, -0.030941544100642204, -0.032820042222738266, -0.0012361187255010009, -0.014934058301150799, 0.0023732807021588087, 0.007104747463017702, -0.0033511060755699873, 0.042319875210523605, -0.0021233735606074333, -0.01568545773625374, -0.0251450352370739, -0.020099926739931107, -0.026688087731599808, 0.03158560022711754, 0.02087816223502159, 0.008480075746774673, -0.005165869370102882, 0.0044413055293262005, -0.0012595999287441373, 0.021025758236646652, -0.023051852360367775, -0.01026464905589819, 0.006061510182917118, 0.03802616521716118, 0.034000810235738754, 0.0020026129204779863, 0.03027065098285675, 0.020381702110171318, -0.0349937304854393, -0.017107749357819557, -0.00762133440002799, -0.010727564804255962, 0.009701100178062916, 0.00014172596274875104, -0.021052593365311623, -0.0033125297632068396, 0.04333962872624397, -0.012042513117194176, -0.005816634278744459, -0.025789091363549232, 0.03035115823149681, -0.031129393726587296, -0.004209848120808601, 0.021495383232831955, 0.016664959490299225, -0.04014618322253227, -0.024366801604628563, -5.215137935010716e-05, 0.006883352994918823, 0.03985099121928215, 0.015108490362763405, 0.036040324717760086, -0.01587330736219883, -0.009956038556993008, -0.0010080153588205576, -0.05372503772377968, -0.01261277124285698, -0.011485672555863857, -0.0048539042472839355, 0.0273455623537302, -0.023360462859272957, 0.0008696438744664192, 0.032685864716768265, 0.006437209900468588, -0.027962783351540565, -0.00019141389930155128, 0.0009769866010174155, -0.013753288425505161, -0.021911336109042168, -0.01579280011355877, 0.0006612480501644313, -0.029304567724466324, 0.011177062056958675, -0.008319062180817127, 0.011814409866929054, 0.0018332126783207059, 0.01909358985722065, -0.00011656750575639307, -0.004159531090408564, -0.0002440370008116588, -0.019442452117800713, 0.021803993731737137, -0.004947829060256481, 0.002200526185333729, -0.021441711112856865, 0.020099926739931107, 0.019898660480976105, 0.018489785492420197, 0.01351847592741251, -0.004964601714164019, -0.0445740707218647, 0.007004113402217627, -0.012793912552297115, 0.030458500608801842, 0.018355607986450195, 0.025131618604063988, -0.025896435603499413, -0.03606715798377991, -0.01775180548429489, 0.030834201723337173, -0.01728218048810959, -0.0036462985444813967, -0.011707067489624023, 0.013035433366894722, -0.027694426476955414, 0.02055613324046135, 0.0057260640896856785, 0.013162902556359768, -0.008366024121642113, 0.024782754480838776, -0.0004245488962624222, 0.0003077717556152493, 0.03370561823248863, 0.005491252057254314, -0.04610370472073555, -0.05235641822218895, -0.005266502965241671, 0.008956409059464931, -0.025802509859204292, 0.018315354362130165, -0.016302678734064102, -0.008017160929739475, 0.01033844705671072, 1.4492317859549075e-05, -0.018140923231840134, 0.030968379229307175, -0.016866227611899376, -0.0033846506848931313, -0.02876785397529602, -0.006192333996295929, -0.016597870737314224, -0.011881498619914055, -0.00782931037247181, -0.013357461430132389, 0.01120389811694622, -0.012076057493686676, 0.006635122932493687, -0.00806412287056446, -0.005125615745782852, -0.024997439235448837, 0.04156847298145294, -0.00020745240908581764, -0.00139042385853827, -0.00866121705621481, -0.013337334617972374, -0.04081707447767258, 0.0009291855385527015, -0.002099892357364297, -0.017067495733499527, 0.009922494180500507, -0.024541232734918594, 0.032498013228178024, -0.015618368051946163, 0.007554245181381702, 0.02046220935881138, -0.016356348991394043, -0.04245405271649361, 0.015095071867108345, -0.004323899745941162, 0.009499832056462765, 0.029680266976356506, 0.01568545773625374, 0.0004939443315379322, 0.0003392198123037815, -0.003273953450843692, -0.00962730124592781, 0.02839215286076069, 0.016732048243284225, -0.025158453732728958, 0.003111262107267976, -0.003314207075163722, -0.0256817489862442, -0.0011329690460115671, 0.021173354238271713, -0.022729825228452682, -0.02696986310184002, 0.04325912147760391, 0.018422696739435196, 0.013022015802562237, 0.021803993731737137, 0.008184883743524551, -0.04019985347986221, 0.0006851485813967884, -0.006041383370757103, 0.012753658927977085, 0.0255475714802742, 0.011445418931543827, 0.006504299119114876, 0.04132695496082306, -0.03214915096759796, 0.04937765747308731, -0.0172285083681345, 0.0010189174208790064, -0.0025527444668114185, -0.011512508615851402, 0.0009199607884511352, -0.037543121725320816, 0.0036664253566414118, 0.017885982990264893, -0.008802104741334915, 0.048384737223386765, 0.008386150933802128, 0.013136067427694798, -0.0024906869512051344, 0.0016914866864681244, -0.01894599199295044, 0.01198213268071413, -0.0062929680570960045, 0.018583711236715317, 0.0062057520262897015, 0.009459578432142735, -0.018811814486980438, -0.007661587558686733, 0.040790241211652756, 0.011378330178558826, 0.0033745872788131237, -0.016544198617339134, 0.02682226523756981, -0.009587048552930355, -0.05699899420142174, -0.008339188992977142, -0.016396602615714073, -0.057911407202482224, 0.008305644616484642, -0.016208752989768982, -0.009392489679157734, -0.02522554248571396, 0.005598594434559345, -0.016396602615714073, 0.000964407401625067, 0.011109973303973675, -0.005440935026854277, 0.0019003018969669938, 0.005645556841045618, -0.026111120358109474, 0.007728676777333021, -0.0018281809752807021, -0.007708550430834293, 0.0159672312438488, 0.00952666811645031, 0.01272682286798954, -0.014249748550355434, 0.017859147861599922, 0.017805475741624832, 0.008131212554872036, 0.035637788474559784, 0.027962783351540565, -0.013652654364705086, -0.016262425109744072, 0.039045918732881546, 0.017013823613524437, 0.005910559557378292, 0.0322028212249279, 0.016611289232969284, 0.03292738273739815, -0.024165533483028412, 0.0037637045606970787, 0.024407055228948593, 0.004213202279061079, 0.03332991898059845, 0.013015306554734707, -0.03341042622923851, 0.0286068394780159, -0.015417100861668587, 0.027882276102900505, 0.008835649117827415, -0.0017963135614991188, 0.018382443115115166, -0.0012151532573625445, -0.009774898178875446, -0.051792871206998825, 0.001920428592711687, -0.014397344551980495, -0.05614025145769119, -0.021535636857151985, 0.027426069602370262, 0.002435338217765093, -0.011385038495063782, -0.00435073534026742, 0.02404477261006832, -0.018623964861035347, 0.019965749233961105, -0.006957150995731354, -0.011458837427198887], [0.008105405606329441, 0.035458993166685104, 0.02915414795279503, 0.011562714353203773, -0.05145120248198509, -0.0013719937996938825, -0.031938403844833374, -0.00018983561312779784, 0.0065291947685182095, 0.0306728333234787, -0.00790406484156847, -0.011792818084359169, 0.03656348958611488, -0.04942629113793373, -0.03828926756978035, 0.0560532808303833, 0.009854193776845932, 0.039048612117767334, -0.05195743218064308, -0.01403633039444685, 0.005571387708187103, 0.03628736361861229, -0.0511750802397728, -0.007075691130012274, -0.018972055986523628, -0.005959687754511833, 0.011976901441812515, -0.020099565386772156, 0.06332455575466156, -0.034377504140138626, 0.0765785351395607, -0.015359426848590374, 0.03235258907079697, -0.012126469053328037, 0.0029223179444670677, 0.03973892331123352, -0.012045932933688164, 0.027313318103551865, 0.016947142779827118, -0.004092970862984657, -0.011326858773827553, 0.03626435622572899, -0.002669203793630004, -0.04227006435394287, -0.03421643003821373, 0.03663252294063568, 0.06180587410926819, 0.00789831206202507, -0.009307697415351868, 0.030718853697180748, 0.03430847451090813, 0.028716951608657837, -0.01932871714234352, 0.053752243518829346, 0.0356200635433197, 0.004599199164658785, 0.000704333302564919, 0.050208643078804016, 0.005827378015965223, -0.009744894690811634, -0.06709825992584229, -0.01075735129415989, -0.07059583812952042, 0.003186937188729644, 0.003345133736729622, -0.007346062920987606, -0.011585725471377373, 0.054764699190855026, -0.027244286611676216, -0.010251123458147049, -0.017085205763578415, 0.01991548202931881, 0.04790760576725006, -0.07059583812952042, -0.030741864815354347, -0.006954886484891176, 0.02802664041519165, -0.013219461776316166, 0.05296988785266876, 0.02752041071653366, -0.04019913077354431, -0.007179237902164459, -0.030304666608572006, 0.061989955604076385, -0.020030533894896507, 0.010302896611392498, -0.07768303155899048, -0.0012928956421092153, -0.013622143305838108, 0.005154324695467949, -0.03670155256986618, -0.00033113372046500444, -0.009773657657206059, 0.03111002966761589, 0.013426555320620537, -0.0026490697637200356, 0.037000685930252075, 0.013932784087955952, -0.0460667759180069, 0.013104409910738468, 0.0006450096261687577, -0.0033767728600651026, 0.011677766218781471, 0.018500342965126038, 0.02862490899860859, -0.0053269024938344955, -0.03874947503209114, 0.009848441928625107, 0.023228976875543594, -0.014381485991179943, 0.03170830011367798, 0.005847512278705835, -0.04629687964916229, 0.015152333304286003, -0.03150120750069618, 0.03255968540906906, -0.03980795294046402, -0.05655950680375099, 0.05425846949219704, -0.02607075870037079, -0.05163528770208359, 0.0029769674874842167, 0.03007456287741661, -0.04537646472454071, 0.017625948414206505, -0.021802332252264023, 0.02303338795900345, -0.025357436388731003, -0.059458814561367035, 0.008577118627727032, -0.005551253445446491, -0.03937075659632683, 0.04339757189154625, -0.0022190632298588753, 0.005473593715578318, 0.02602473646402359, 0.04344359412789345, -0.01174679771065712, -0.00914662517607212, -0.03515985608100891, -0.011211806908249855, -0.0025081310886889696, -0.014416001737117767, 0.02244662307202816, -0.06332455575466156, 0.04130362719297409, 0.024229926988482475, 0.03874947503209114, 0.026876121759414673, -0.01585415005683899, -0.01356461737304926, 0.030718853697180748, 0.008554107509553432, 0.035896189510822296, 0.028256744146347046, 0.021675774827599525, 0.010366175323724747, 0.03787508234381676, -0.03842733055353165, 9.86030645435676e-05, -0.030833905562758446, 0.011303847655653954, -0.008070889860391617, -0.020824391394853592, 0.03474567085504532, -0.015198354609310627, 0.013219461776316166, 0.03009757399559021, -0.029844459146261215, -0.039531826972961426, -0.029798438772559166, -0.04496227949857712, -0.05319999158382416, -0.0059942035004496574, 0.0013971613952890038, -0.046250857412815094, 0.04477819427847862, 0.009025820530951023, 0.03610328212380409, 0.0024132132530212402, -0.040590304881334305, -0.007415093947201967, -0.05007058009505272, -0.02390778250992298, -0.06797265261411667, -0.008439055643975735, 0.01625683158636093, -0.009434254840016365, -0.04169480502605438, -0.012091953307390213, 0.009388234466314316, -0.04348961263895035, -0.019248180091381073, -0.03525189682841301, -0.059965044260025024, 0.006097750272601843, -0.03159324824810028, 0.01637188345193863, -0.009911719709634781, 0.004455384332686663, 0.004380600526928902, -0.044179923832416534, 0.00561165576800704, 0.022757263854146004, -0.05724981799721718, -0.0053297788836061954, -0.02561054937541485, 0.02099696919322014, 0.020111069083213806, -0.0019745780155062675, 0.013161935843527317, -0.03483771160244942, -0.010832135565578938, -0.00495873624458909, -0.0052521186880767345, 0.0011289466638118029, 0.024183906614780426, 0.013691174797713757, 0.0028949931729584932, 0.039025600999593735, -0.020743856206536293, -0.004622209817171097, -0.0037219286896288395, -0.0069951550103724, -0.03014359436929226, 0.006592473015189171, 0.012943337671458721, 0.02393079176545143, -0.009388234466314316, -0.07455362379550934, -0.01896055042743683, 0.04730933532118797, -0.008991304785013199, -0.027773525565862656, 0.007558909244835377, -0.0037161759100854397, -0.025219373404979706, -0.04330553114414215, 0.025656571611762047, -0.0013748700730502605, 0.03016660548746586, 0.0005141381407156587, -0.03476868197321892, 0.009169635362923145, 0.025794632732868195, -0.014013320207595825, -0.023631658405065536, 0.014864703640341759, 0.048735979944467545, -0.020594287663698196, -0.007167732808738947, -0.03258269652724266, 0.10078545659780502, -0.0863809585571289, 0.026623006910085678, 0.026623006910085678, -0.006966392043977976, -0.01680908165872097, 0.006592473015189171, -0.03920968249440193, 0.011453415267169476, -0.019271191209554672, -0.01831626147031784, 0.022630706429481506, -0.050806913524866104, 0.00016484777734149247, 0.015485984273254871, -0.04399584233760834, 0.008525344543159008, 0.014623095281422138, -0.09333009272813797, 0.024252938106656075, -0.007829280570149422, -0.004133238922804594, -0.02194039523601532, 0.022055447101593018, 0.01199991162866354, -0.047171272337436676, 0.03154722601175308, 0.017453370615839958, -0.01940925419330597, 0.017717991024255753, -0.02501228079199791, -0.05904462933540344, 0.009848441928625107, 0.03354912996292114, -0.004415116272866726, -0.0022205014247447252, -0.010486979968845844, 0.04286833480000496, 0.04799964651465416, -0.04905812442302704, -0.015992213040590286, -0.007006660103797913, -0.003278978867456317, 0.008203200064599514, -0.03780604898929596, -0.021710291504859924, -0.039462797343730927, -0.02137664146721363, -0.03994601592421532, 0.05209549516439438, 0.005850388668477535, 0.0051802112720906734, -0.07469168305397034, 0.042615219950675964, -0.011729540303349495, 0.034952763468027115, 0.004656725097447634, 0.00267351814545691, -0.002255016937851906, -0.007627940271049738, -0.009169635362923145, -0.05545501038432121, -0.013530101627111435, -0.05522490665316582, -0.029315220192074776, -0.0077257342636585236, 0.016429409384727478, -0.020720845088362694, 0.04947231337428093, 0.022699737921357155, 0.03934774547815323, -0.010136071592569351, -0.04038321226835251, -0.017971104010939598, 0.0459747351706028, 0.02561054937541485, -0.04519238322973251, -0.01831626147031784, -0.043052416294813156, -0.023090913891792297, 0.02455207332968712, -0.01170077733695507, -0.02441401034593582, -0.002529703313484788, -0.00035773945273831487, -0.006811071652919054, 0.00940549187362194, -0.0004271301440894604, 0.030419718474149704, -0.022135984152555466, 0.00613801833242178, -0.0016265460290014744, 0.014162887819111347, 0.037483904510736465, 0.040705356746912, 0.04447906091809273, -0.010343165136873722, 0.009549306705594063, -6.51661102892831e-05, 0.01981193572282791, -0.06189791485667229, 0.01840830221772194, -0.04832179471850395, -0.00495873624458909, 0.037483904510736465, 0.00034335796954110265, -0.013886762782931328, 0.013311503455042839, 0.00022255349904298782, 0.023746710270643234, 0.061115562915802, 0.029798438772559166, 0.006385379936546087, 0.009255924262106419, -0.022147487848997116, -0.009169635362923145, 0.020651813596487045, -0.01585415005683899, -0.016199305653572083, -0.0023628780618309975, -0.03216850757598877, -0.015451468527317047, -0.045215390622615814, -0.05319999158382416, 0.015601036138832569, 0.023125428706407547, -0.009117862209677696, -0.0101878447458148, 0.02340155467391014, -0.00971613172441721, -0.0024865588638931513, -0.0066557517275214195, 0.05651348829269409, 0.0065291947685182095, -0.09001659601926804, -0.004046950023621321, 0.03175432235002518, -0.01558953057974577, -7.734543032711372e-05, 0.04270726069808006, -0.03980795294046402, 0.025909684598445892, 0.009284687228500843, -0.031225081533193588, 0.03870345652103424, 0.04645795375108719, 0.0101820919662714, -0.05881452560424805, -0.005824501626193523, -0.019305706024169922, 0.013334513641893864, -0.05007058009505272, -0.018224218860268593, 0.018143681809306145, -0.006241565104573965, -0.019765913486480713, 0.014427506364881992, 0.0017617320409044623, 0.004406487103551626, -0.015485984273254871, 0.03499878570437431, -0.013829236850142479, 0.02087041176855564, -0.00945726502686739, -0.026761069893836975, 0.05011660233139992, -0.02141115628182888, -0.06332455575466156, 0.05563909187912941, 0.01841980777680874, 0.02240060269832611, -0.01272473856806755, -0.04323649778962135, -0.017694979906082153, 0.009882956743240356, -0.010659557767212391, 0.03635639697313309, -0.0819629654288292, -0.01576210930943489, 0.010049782693386078, 0.026853110641241074, -0.006471668835729361, -0.02250414900481701, -0.015497488901019096, 0.017706485465168953, -0.03377923369407654, -0.03621833398938179, -0.03209947794675827, 0.01683209091424942, 0.004049826413393021, 0.006224307231605053, 0.005338407587260008, -0.0018178197788074613, 0.04758546128869057, 0.017211763188242912, 0.027957608923316002, 0.011039229109883308, -0.0008103967411443591, -0.01174679771065712, -0.004596322774887085, -0.04289134219288826, -0.006626988761126995, -0.03681660443544388, -0.00114404724445194, -0.05140518397092819, -0.06723632663488388, 0.012253026477992535, -0.028187712654471397, -0.02194039523601532, 0.039485808461904526, 0.04901210591197014, 0.041096534579992294, 0.022757263854146004, 0.004768900573253632, -0.045123349875211716, -0.008905015885829926, -0.002555590122938156, 0.010573268868029118, -0.011562714353203773, -0.015416952781379223, -0.020180100575089455, -0.007823528721928596, 0.06544151157140732, 0.03465363010764122, -0.04291435331106186, -0.02915414795279503, -0.003129411255940795, -0.042569197714328766, 0.011672014370560646, 0.02655397541821003, -0.01832776516675949, -0.03481470048427582, 0.0305807925760746, -0.014692125841975212, 0.02455207332968712, -0.013645153492689133, -0.060517292469739914, -0.02142266184091568, -0.03509082645177841, -0.026761069893836975, 0.028970064595341682, -0.009687368758022785, -0.019202159717679024, -0.00794433243572712, -0.04229307547211647, 0.040084078907966614, 0.050760891288518906, 0.009474523365497589, 0.0022478261962532997, 0.0003757163358386606, 0.028901034966111183, 0.00794433243572712, 0.015693077817559242, -0.015992213040590286, -0.009819678962230682, -0.013955794274806976, -0.011067992076277733, 0.011464920826256275, -0.03212248533964157, -0.009509038180112839, 0.03354912996292114, -0.00815717875957489, -0.04132663831114769, -0.006310596130788326, 0.018465828150510788, 0.014358475804328918, -0.034952763468027115, 0.04436400905251503, 0.026139788329601288, -0.026231830939650536, -0.004455384332686663, -0.04546850547194481, -0.0036701553035527468, -0.020099565386772156, 0.005930924788117409, -0.014116866514086723, 0.00972188450396061, 0.03414740040898323, 0.010625042021274567, -0.04491625726222992, -0.038450341671705246, 0.016038233414292336, 0.02237759158015251, -0.002811580430716276, 0.013069894164800644, 0.017752505838871002, 0.02496626041829586, -0.0017660465091466904, 0.0508989542722702, 0.01792508363723755, 0.013714184984564781, -0.0032243290916085243, 0.00971613172441721, 0.001546009792946279, 0.02250414900481701, 0.0356200635433197, -0.0009031573426909745, 0.035482000559568405, 0.0009786600712686777, 0.014151382260024548, -0.00626457529142499, -0.01481868326663971, -0.016049738973379135, 0.012183994986116886, 0.02747439034283161, -0.00444675562903285, -0.004950107540935278, 0.002476491965353489, 0.019225170835852623, 0.016107264906167984, 0.0032272054813802242, 0.0023657544516026974, 0.0012943337205797434, 0.02097395993769169, 0.0009642786462791264, -0.010665309615433216, 0.000496520777232945, 0.002817333210259676, -0.03515985608100891, 0.011637498624622822, 0.018109166994690895, -0.04836781322956085, 0.060471273958683014, 0.015382437035441399, 0.014887714758515358, -0.010389185510575771, -0.00972763728350401, 0.0039031351916491985, -0.0076509504579007626, 0.03817421570420265, -0.027175255119800568, 0.005859017372131348, -0.005151448305696249, 0.006891608238220215, -0.005208974238485098, -0.027175255119800568, 0.021825343370437622, 0.03808217495679855, 0.01736132986843586, -0.004285682924091816, 0.006253070197999477, -0.037023697048425674, 0.03226054832339287, 0.03989999368786812, -0.03354912996292114, 0.020306657999753952, 0.018684426322579384, 0.0017775517189875245, 0.03272075578570366, -0.004018187057226896, 0.010728588327765465, -0.02712923474609852, 0.002207558136433363, -0.001528751919977367, 0.03874947503209114, 0.035965219140052795, -0.0057123261503875256, 0.007754497230052948, 0.012149479240179062, 0.013576122932136059, 0.016222316771745682, -0.028693940490484238, -0.0017833042657002807, 0.02045622654259205, -0.03387127444148064, -0.006241565104573965, -0.018638405948877335, 0.026922142133116722, -0.005370046943426132, 0.026231830939650536, 0.0458136610686779, 0.021618248894810677, -0.008916521444916725, 0.002062305109575391, -0.023113925009965897, -0.05218753591179848, 0.0038398567121475935, 0.0003575597074814141, -0.022757263854146004, 0.02657698653638363, -0.03318096324801445, 0.007984600961208344, -0.002339867874979973, 0.017533907666802406, 0.02593269571661949, -0.011407394893467426, 0.01049273181706667, -0.008105405606329441, 0.03354912996292114, 0.015716087073087692, 0.011907869949936867, -0.040613315999507904, 0.01993849128484726, 0.029729407280683517, -0.00037715447251684964, -0.018511848524212837, -0.005493727512657642, 0.01629134826362133, -0.01456556934863329, -0.004820674192160368, 0.002066619461402297, -0.033365048468112946, 0.02503529004752636, 0.009043077938258648, -0.03536694869399071, 0.04114255681633949, 0.04339757189154625, -0.02041020430624485, -0.008490829728543758, -0.008404540829360485, -0.03106400929391384, 0.010602031834423542, -0.006149523425847292, -0.007823528721928596, 0.006437153089791536, -0.0255645290017128, 0.003132287645712495, -0.015693077817559242, -0.06705223768949509, -0.027773525565862656, 0.011965395882725716, -0.03226054832339287, -0.009043077938258648, -0.014369980432093143, -0.013196451589465141, 0.0027785031124949455, -0.04638892039656639, 0.0023168574552983046, -0.029775429517030716, -0.03725380077958107, -0.018028629943728447, -0.0014223289908841252, -0.022849304601550102, 0.012322057038545609, 0.021664271131157875, 0.004915591794997454, 0.0101993503049016, 0.01195389125496149, -0.02443702146410942, 0.03435449302196503, -0.0033192469272762537, -0.0031840610317885876, 0.0280726607888937, 0.0559612400829792, 0.019788924604654312, -0.02763546258211136, -0.03874947503209114, -0.06926123797893524, 0.010987455025315285, 0.014703631401062012, 0.005269376561045647, -0.016199305653572083, -0.010780361481010914, 0.024091865867376328, 0.0012871429789811373, 0.0012296170461922884, 0.04641193151473999, -0.007369073573499918, 0.016153285279870033, 0.007685466203838587, -0.03198442608118057, -0.021664271131157875, -0.04951833188533783, 0.0007823528139851987, -0.008657654747366905, -0.015923181548714638, -0.0005238456069491804, -0.027244286611676216, -0.0027296061161905527, 0.027911588549613953, -0.03658650070428848, -0.003411288373172283, 0.033365048468112946, 0.005128438118845224, 0.009497533552348614, -0.006172533612698317, 0.026922142133116722, 0.021664271131157875, 0.011269332841038704, 0.005680686794221401, 0.033365048468112946, -0.0053815520368516445, 0.009808173403143883, -0.01558953057974577, -0.026876121759414673, -0.02650795504450798, -0.02143416740000248, 0.016705533489584923, 0.0059711928479373455, -0.0660858079791069, -0.009186893701553345, -0.012402593158185482, -0.0203871950507164, -0.017971104010939598, 0.010987455025315285, -0.012022922746837139, -0.007455362472683191, 0.04450207203626633, -0.014669115655124187, 0.007087196223437786, -0.0014345531817525625, -0.02496626041829586, -0.013748700730502605, -0.0056605529971420765, -0.01455406378954649, 0.0816408172249794, -0.01304688397794962, -0.009526296518743038, 0.02237759158015251, 0.009998008608818054, -0.0036413923371583223, 0.053292036056518555, 0.00997499842196703, -0.006207049358636141, -0.052233558148145676, 0.013748700730502605, 0.024690134450793266, 0.004302940797060728, 0.015209859237074852, -0.02752041071653366, 0.016233820468187332, 0.028187712654471397, 0.03412438929080963, 0.0005752594443038106, -0.002889240626245737, -0.015474478714168072, -0.012448614463210106, -0.05766400694847107, 0.0068053193390369415, -0.036425426602363586, -0.00664999894797802, 0.018465828150510788, 0.008697922341525555, -0.009106356650590897, -0.0049558598548173904, -0.010981702245771885, 0.006477421149611473, 0.026945151388645172, 0.002009093528613448, -0.015704583376646042, -0.0015963449841365218, -0.02549549750983715, 0.003684536786749959, -0.002798637142404914, 0.008559860289096832, -0.0139903100207448, -0.011459168046712875, 0.006828329525887966, -0.0011656194692477584, -0.024183906614780426, -0.023194460198283195, 0.018534859642386436, 0.05421245098114014, -0.006316348444670439, 0.004334579687565565, 0.026254840195178986, 0.01828174479305744, 0.008249220438301563, -0.023815739899873734, 0.03603425249457359, 0.028141692280769348, 0.014185898005962372, 0.03147819638252258, 6.548070086864755e-05, -0.0019314335659146309, 0.01581963524222374, 0.0008434741757810116, -0.001996150240302086, -0.01095869205892086, -0.011942385695874691, -0.002480806317180395, 0.012299046851694584, -0.0010146137792617083, -0.00763369258493185, 0.03106400929391384, 0.013035379350185394, -0.014899219386279583, -0.030419718474149704, -0.013622143305838108, 0.043558645993471146, -0.00031783085432834923, -0.0035148351453244686, -0.0034429277293384075, -0.008778459392488003, -0.023677678778767586, 0.004012434743344784, 0.0039060115814208984, 0.008611633442342281, 0.04323649778962135, -0.025104321539402008, -0.0063911322504282, -0.013115915469825268, -0.03377923369407654, -0.0026548223104327917, 0.011160032823681831, -0.026945151388645172, -0.02749740146100521, 0.034009337425231934, 0.008185941725969315, -0.005309644620865583, -0.013863752596080303, -0.003287607803940773, 0.0009671549196355045, -0.029959511011838913, 0.026876121759414673, 0.008812974207103252, 0.0031898135785013437, -0.04841383546590805, 0.005335531197488308, 0.02712923474609852, 0.018638405948877335, -0.03520587831735611, -0.006966392043977976, 0.023367037996649742, 0.022089961916208267, 0.007317299954593182, -0.007714229170233011, -0.020283648744225502, 0.03472265973687172, -0.005513861775398254, 0.029177159070968628, -0.016601987183094025, -0.030971968546509743, -4.970601003151387e-05, -0.020536761730909348, 0.0018408301984891295, 0.05711175873875618, -0.031248092651367188, 0.0036528974305838346, 0.019489789381623268, 0.0003731995529960841, 0.027911588549613953, 0.015255880542099476, -0.024874217808246613, 0.005450583063066006, 0.05504082143306732, 0.046573005616664886, 0.010348916985094547, 0.032858818769454956, -0.015451468527317047, 0.013461071066558361, 0.0021298981737345457, 0.002601610729470849, 0.011091002263128757, 0.020755359902977943, -0.019788924604654312, 0.013081399723887444, 0.033434078097343445, 0.017039185389876366, 0.02339004911482334, 0.0011160032590851188, 0.01586565561592579, -0.008254973217844963, -0.013184946030378342, 0.006218554452061653, -0.02245812863111496, 0.011292343027889729, -0.0016970153665170074, 0.0046624778769910336, 0.02439100109040737, -0.013599133118987083, -0.027681484818458557, -0.002223377814516425, 0.05191141366958618, -0.03621833398938179, 0.002351372968405485, -0.002278027357533574, 0.005013385787606239, 0.020214617252349854, 0.0011066553415730596, 0.005312521010637283, 0.021641260012984276, -0.04194791987538338, -0.014669115655124187, -9.653572487877682e-05, 0.02800362929701805, 0.0013540169456973672, -0.03987698256969452, 0.015175344422459602, 0.03670155256986618, 0.016130274161696434, 0.03327300772070885, 0.01221851073205471, 0.0008377215708605945, -0.00892802607268095, 0.00997499842196703, 0.005942429881542921, -0.025909684598445892, 0.02251565456390381, -0.010015266947448254, -0.002813018625602126, -0.033848267048597336, 0.02143416740000248, -0.030442729592323303, -0.02864792011678219, -0.013840742409229279, 0.007731487043201923, -0.005925172008574009, -0.014795673079788685, 0.019984513521194458, -0.0016179172089323401, -0.015555014833807945, 0.008444808423519135, 0.006811071652919054, 0.02595570683479309, -0.0073748258873820305, 0.017602939158678055, -0.03009757399559021, 0.071654312312603, 0.030557781457901, -0.0002881690161302686, -0.023274997249245644, 0.03978494182229042, 0.03766798973083496, -0.010579020716249943, -0.01879947818815708, 0.008220457471907139, 0.012460119090974331, -0.019179150462150574, -0.0560532808303833, 0.038450341671705246, 0.03299688175320625, 0.007098701316863298, 0.005703697446733713, -0.008525344543159008, -0.003083390649408102, 0.021215567365288734, 0.02752041071653366, -0.010061287321150303, 0.005004757083952427, 0.061115562915802, 0.0017876187339425087, -0.007104454096406698, -0.003813970135524869, 0.03166227787733078, 0.01049273181706667, 0.007495630532503128, 0.007012412417680025, 0.02089342288672924, 0.02752041071653366, 0.004584817681461573, 0.02197491005063057, -0.00012233250890858471, 0.017453370615839958, 0.008116910234093666, 0.01227603666484356, 0.01403633039444685, -0.008496581576764584, 0.03665553033351898, -0.018097661435604095, 0.0018250105204060674, -0.016671018674969673, 0.03792110085487366, 0.015704583376646042, -0.011165785603225231, 0.0179020743817091, -0.015612540766596794, -0.022331571206450462, 0.040958471596241, 0.02043321542441845, -0.001067825360223651, -0.01075159851461649, 0.0064314003102481365, -0.048275772482156754, 0.001127508468925953, -0.024160897359251976, -0.007869549095630646, 0.026231830939650536, 0.014726641587913036, 0.01831626147031784, 0.02241210825741291, -0.016049738973379135, -0.007426599506288767, -0.0021730426233261824, 0.020295152440667152, 0.026761069893836975, 0.002489435253664851, -0.0016509946435689926, -0.019248180091381073, -0.013415049761533737, 0.006696019787341356, 0.0255875401198864, 0.02093944326043129, 0.02593269571661949, -0.0023628780618309975, -0.0229873675853014, -0.042108990252017975, 0.00028367480263113976, 0.0008039250387810171, -0.02091643400490284, -0.04284532368183136, 0.0280726607888937, -0.021641260012984276, -0.015060292556881905, 0.036954667419195175, 0.020686330273747444, 0.032329581677913666, 0.02443702146410942, -0.0031150297727435827, 0.020720845088362694, -0.04238511621952057, -0.013530101627111435, 0.0254724882543087, -0.042684249579906464, -0.027911588549613953, -0.01736132986843586, -0.01476115733385086, -0.02906210720539093, 0.01675155572593212, -0.032421622425317764, 0.006299091037362814, -0.008065137080848217, 0.03764497861266136, -0.0510830394923687, -0.04634290188550949, -0.023286502808332443, -0.007587672211229801, 0.010210854932665825, -0.02961435541510582, -0.004783282056450844, 0.007305794861167669, 0.03235258907079697, 0.046734075993299484, 0.012632696889340878, -0.04892006143927574, -0.03382525593042374, -0.0062703280709683895, 0.009796667844057083, -0.023113925009965897, 0.03458459675312042, -0.004682611674070358, -0.0025656570214778185, -0.03833528980612755, -0.006350864190608263, -0.006632741540670395, 0.02646193467080593, -0.013875257223844528, -0.007346062920987606, -0.017188752070069313, 0.01929420232772827, 0.021721797063946724, 0.021042989566922188, 0.001199415884912014, 0.023700688034296036, 0.029752418398857117, -0.01829325035214424, 0.026415914297103882, -0.01685510203242302, -0.0025196364149451256, 0.006557957734912634, -0.006972144357860088, -0.0203641839325428, 0.02505830116569996, 0.0013712747022509575, 0.013230967335402966, -0.004173507448285818, 0.015393942594528198, -0.009813926182687283, -0.011528199538588524, 0.010412195697426796, -0.005539748352020979, 0.012667212635278702, 0.04123459756374359, 0.00599995581433177, -0.016728544607758522, 0.013184946030378342, -0.016648007556796074, 0.038059163838624954, -0.039048612117767334, -0.006569462828338146, -0.04176383465528488, -0.002790008205920458, 0.025357436388731003, -0.02084740251302719, -0.01170077733695507, 0.017246278002858162, 0.008358519524335861, 0.01634887419641018, 0.011073743924498558, -0.014669115655124187, 0.037483904510736465, -0.016728544607758522, 0.025817643851041794, -0.010728588327765465, -0.013633648864924908, -0.019823439419269562, -0.02496626041829586, 0.01784454844892025, 0.022527160122990608, -0.008111158385872841, -0.006793813779950142, 0.01404783595353365, -0.03879549726843834, 0.019075602293014526, -0.026669027283787727, 0.06083943694829941, -0.006212802138179541, -0.03410137817263603, -0.0029079364612698555, 0.05034670606255531, -0.003074761712923646, 0.005194592755287886, 0.019650861620903015, 0.015428458340466022, 0.05964289978146553, -0.012839790433645248, 0.04763147979974747, 0.009474523365497589, 0.010636546649038792, -0.0037219286896288395, -0.021790826693177223, 0.02043321542441845, 0.02956833504140377, 0.016406400129199028, 0.032306570559740067, -0.00280438968911767, -0.019179150462150574, 0.03660951182246208, -0.021618248894810677, 0.002544084796682, -0.015992213040590286, 0.007150474935770035, 0.00444675562903285, -0.03428546339273453, 0.016636503860354424, 0.038979578763246536, 0.00837002508342266, -0.024759165942668915, -0.009779410436749458, -0.013875257223844528, -0.01625683158636093, 0.006661504507064819, 0.002759807277470827, 0.029246190562844276, 0.026254840195178986, -0.01733831875026226, -0.011528199538588524, 0.0005673496052622795, 0.010481227189302444, 0.013599133118987083, 0.017568422481417656, -0.043650686740875244, -0.021204063668847084, 0.04498528689146042, -0.018972055986523628, 0.0033738967031240463, -0.005804367829114199, -0.06070137768983841, -0.021250084042549133, -0.00868641771376133, 0.0255875401198864, 0.005370046943426132, -0.02706020325422287, -0.03787508234381676, -0.021652765572071075, 0.02505830116569996, -0.008030621334910393, -0.0459747351706028, -0.021215567365288734, -0.0003363470023032278, 0.01885700412094593, -0.027428369969129562, -0.01404783595353365, -0.012506140395998955, 0.0003527059452608228, -0.015370932407677174, -0.031386155635118484, 0.010872403159737587, 0.010210854932665825, -0.020295152440667152, 0.026761069893836975, -0.010665309615433216, 0.03483771160244942, -0.020249132066965103, -0.01023961789906025, 0.0017631702357903123, -0.016440914943814278, 0.031363144516944885, 0.0406363271176815, -0.0008420359808951616, -0.0229643564671278, -0.004858065862208605, 0.007144722156226635, 0.011988407000899315, 0.014715136028826237, 0.005692192353308201, -0.004242538474500179, 0.0065809679217636585, -0.033434078097343445, 0.0075991773046553135, 0.001669690478593111, -0.011246321722865105, -0.04535345360636711, 0.02853286825120449, -0.017211763188242912, -0.018465828150510788, -0.009353718720376492, -0.020582782104611397, 0.017764011397957802, 0.005781357176601887, -0.019075602293014526, -0.009100604802370071, -0.0025829148944467306, -0.02754342183470726, -0.015704583376646042, 0.022285550832748413, 0.0028532869182527065, 0.018051641061902046, -0.009324955753982067, -0.02441401034593582, -0.03258269652724266, 0.01877646893262863, -0.026231830939650536, 0.01174104493111372, 0.016498440876603127, -0.010389185510575771, -0.00172721641138196, 0.025173353031277657, -0.0004494214372243732, -0.012356572784483433, 0.025104321539402008, -0.015980707481503487, 0.0306498222053051, 0.02249264344573021, 0.026715047657489777, -0.007144722156226635, 0.01845432259142399, 0.039048612117767334, 0.003143792739138007, 0.01994999684393406, -0.017108215019106865, -0.022550169378519058, -0.0019918358884751797, -0.0070411753840744495, -0.03350311145186424, -0.008093900047242641, 0.013806226663291454, -0.012425604276359081, -0.030879925936460495, -0.02607075870037079, 0.013357523828744888, -0.011792818084359169, -0.033848267048597336, 0.04328252002596855, 0.0033048654440790415, -0.023079408332705498, 0.006632741540670395, -0.008830232545733452, 0.002201805589720607, 0.027428369969129562, 0.030350688844919205, 0.005672058090567589, -0.017165740951895714, 0.02602473646402359, 0.00625882251188159, -0.051727328449487686, -0.009175388142466545, -0.03663252294063568, 0.008663407526910305, -0.006540699861943722, 0.007006660103797913, -0.012114963494241238, 0.018143681809306145, -0.0041620018891990185, -0.026116779074072838, -0.018201209604740143, -0.035435982048511505, 0.0031121536158025265, 0.006281833164393902, -0.03725380077958107, 0.007737239357084036, -0.008657654747366905, 0.036448437720537186, -0.037575945258140564, -0.024667125195264816, 0.012414098717272282, -0.018212713301181793, -0.0019242428243160248, 0.0018983561312779784, -0.021802332252264023, -0.03978494182229042, -0.006880102679133415, -0.014208908192813396, 0.007415093947201967, -0.027934597805142403, 0.034929752349853516, 0.0025110074784606695, 0.028210723772644997, -0.015612540766596794, -0.0024218421895056963, -0.03716176003217697, 0.020191606134176254, 0.011148528195917606, 0.019558820873498917, 0.027934597805142403, 0.016095759347081184, 0.00816868431866169, -0.02646193467080593, 0.007409341633319855, 0.022055447101593018, -0.0357811376452446, -0.0006406952161341906, -0.0204792357981205, -0.0179020743817091, -0.036425426602363586, 0.0034342987928539515, 0.009014314971864223, 6.453692185459659e-05, 0.0460207536816597, 0.00241896603256464, -0.021250084042549133, 0.03614930436015129, -0.0032358344178646803, 0.0016366131603717804, -0.03518286719918251, -0.016475429758429527, 0.007179237902164459, 0.03274376690387726, -0.02494324930012226, 0.005393057130277157, -0.01585415005683899, -0.025127332657575607, 0.032881829887628555, 0.00093839195324108, -0.019075602293014526, 0.024920238181948662, -0.0408204086124897, 0.003014359390363097, -0.010941434651613235, -0.013576122932136059, -0.002726729726418853, -0.04489324614405632, 0.004676859360188246, -0.0011692148400470614, 0.026254840195178986, -0.0012893002713099122, 0.016072748228907585, -0.01227603666484356, -0.023355532437562943, 0.011718034744262695, 0.029292210936546326, -0.022722747176885605, -0.02043321542441845, -0.027957608923316002, -0.05149722471833229, -0.017430361360311508, -0.020755359902977943, 0.013714184984564781, -0.027290306985378265, 0.03658650070428848, -0.01637188345193863, 0.012816780246794224, -0.005433325190097094, 0.0001780607708496973, -0.0358271561563015, 0.012563666328787804, -0.046711064875125885, 0.015106312930583954, 0.015681572258472443, 0.009083346463739872, 0.014968250878155231, 0.016440914943814278, 0.0020162842702120543, -0.03115605190396309, -0.017959600314497948, -0.009497533552348614, 0.006834082305431366, 0.004602075554430485, -0.01070557814091444, -0.02448304183781147, -0.02710622549057007, 0.005301015917211771, 0.01481868326663971, 0.03311193361878395, 0.006540699861943722, -0.023286502808332443, 0.044640131294727325, 0.01734982430934906, 0.0012181118363514543, 0.008364272303879261, 0.010320154018700123, -0.009946235455572605, -0.027244286611676216, -0.0038456092588603497, 0.013081399723887444, 0.018787972629070282, -0.0037363101728260517, 0.04696417972445488, 0.02397681400179863, -0.0025901056360453367, 0.03518286719918251, -0.027198266237974167, 0.05573113635182381, 0.01996150240302086, -0.02745138108730316, -0.0031955661252141, -0.01942075788974762, 0.026669027283787727, 0.014392991550266743, -0.01636037789285183, 0.05458061397075653, 0.0017516650259494781, 0.01877646893262863, -0.008824479766190052, -0.021066000685095787, -0.01430094987154007, 0.004855189472436905, 0.0010448149405419827, 0.006477421149611473, 0.02595570683479309, 0.030373698100447655, -0.029177159070968628, -0.02906210720539093, 0.012253026477992535, -0.002758369082584977, -0.00915237795561552, -0.006609730888158083, -0.011579972691833973, -0.057802069932222366, 0.003350886283442378, 0.005447706673294306, -0.014715136028826237, 0.007392083760350943, -0.03617231175303459, -0.0029079364612698555, -0.018500342965126038, -0.021342124789953232, 0.0016567471902817488, -0.06369272619485855, -0.011873355135321617, 0.00375356781296432, -0.012828285805881023, -0.03150120750069618, -0.007466867566108704, -0.01579662412405014, 0.00841604545712471, 0.002479368122294545, -0.016452420502901077, 0.007731487043201923, 0.005234860815107822, -0.0053269024938344955, -0.004300064407289028, 0.016233820468187332, 0.009221408516168594, 0.013334513641893864, 0.053338054567575455, 0.012068943120539188, -0.009422749280929565, -0.0034918247256428003, 0.027704494073987007, -0.00998075120151043, 0.007731487043201923, 0.03709273040294647, -0.0010218046372756362, 0.018787972629070282, -0.019696883857250214, 0.017476381734013557, -0.005039272829890251, 0.03660951182246208, -0.005286634434014559, 0.014692125841975212, -0.020789876580238342, 0.020076554268598557, -0.008024869486689568, 0.03221452981233597, -0.005976945627480745, -0.030971968546509743, 0.009025820530951023, 0.022089961916208267, 0.014841693453490734, -0.0356660857796669, -0.010389185510575771, -0.0178675577044487, -0.035435982048511505, -0.014358475804328918, 0.03198442608118057, -0.012160984799265862, 0.002945328364148736, -0.03308892250061035, 0.03874947503209114, -0.028417816385626793, -0.00868641771376133, 0.017441866919398308, 0.009359471499919891], [0.02982800453901291, 0.0026177300605922937, 0.050158992409706116, -0.012689580209553242, -0.0020299293100833893, 0.0377345010638237, -0.015294344164431095, 0.03605177626013756, 0.038103315979242325, 0.05735090747475624, -0.03167208656668663, -0.016250960528850555, 0.02842189371585846, 0.017737749963998795, -0.050481706857681274, 0.01500620599836111, -0.009715999476611614, 0.016516046598553658, 0.003397142281755805, 0.00026760780019685626, 0.02593238465487957, 0.036858562380075455, -0.013173650950193405, -0.03483007475733757, 0.0020573025103658438, -0.021967610344290733, 0.03674330562353134, -0.006321738939732313, 0.05550682544708252, -0.04831491410732269, 0.08330634236335754, -0.021414386108517647, -0.013703824020922184, 0.005575462710112333, 0.005618683062493801, -0.016516046598553658, 0.006292925216257572, 0.011243129149079323, 0.04905254393815994, 0.010626514442265034, -0.024249659851193428, 0.045848455280065536, 0.013945859856903553, -0.03538329899311066, -0.002936122240498662, 0.031464625149965286, 0.032040901482105255, -0.051081035286188126, -0.020330989733338356, 0.052556298673152924, 0.012562799267470837, 0.012113304808735847, -0.022140493616461754, 0.007428187411278486, -0.014522135257720947, 0.018751995638012886, -0.028398841619491577, 0.020342513918876648, 0.020503871142864227, -0.01862521469593048, -0.015052308328449726, -0.03234056383371353, -0.0295744426548481, 0.04863762855529785, 0.01088583841919899, 0.0322483591735363, 0.010188545100390911, 0.038679592311382294, -0.011836692690849304, 0.00931260734796524, -0.009583456441760063, 0.026646966114640236, 0.022082865238189697, -0.07556120306253433, -0.02874460630118847, 0.019155386835336685, 0.006759708281606436, -0.02876765839755535, 0.03466871753334999, 0.03141852468252182, -0.010436343960464, 0.037019919604063034, -0.03999349847435951, 0.05421597138047218, 0.01134685892611742, -0.00567054795101285, -0.0715964287519455, -0.026693066582083702, -0.006753945257514715, -0.011652284301817417, -0.056567173451185226, -0.0330551452934742, -0.016596725210547447, 0.03367752209305763, 0.027200190350413322, -0.0011143721640110016, 0.04596370831131935, 0.02086116187274456, -0.07772799581289291, 0.048729829490184784, 0.025240853428840637, -0.03247886896133423, 0.006367840804159641, 0.03381582722067833, 0.010943465866148472, -0.027522902935743332, -0.025886282324790955, 0.06809267401695251, 0.018970979377627373, 6.109417881816626e-05, 0.0035988385789096355, -0.03443820774555206, -0.01524824183434248, 0.06546486169099808, -0.02309711091220379, -0.010096341371536255, -0.03598262369632721, -0.0213452335447073, 0.016008924692869186, -0.009854305535554886, -0.036789409816265106, -0.050066787749528885, 0.05002068728208542, -0.08722501248121262, -0.01928216777741909, 0.0012353899655863643, -0.008880401030182838, 0.03888705000281334, -0.07164253294467926, 0.00788920745253563, 0.039762988686561584, -0.03480702266097069, 0.0644967183470726, -0.0126780541613698, -0.011496690101921558, 0.029113423079252243, 0.014556711539626122, -0.008050564676523209, -0.013323483057320118, -0.03240971639752388, 0.023742537945508957, -0.01746113784611225, 0.0003745788708329201, -0.015755364671349525, -0.06380519270896912, 0.050573911517858505, 0.017818428575992584, 0.06126957759261131, -0.02966664731502533, 0.006131567992269993, -0.03128021955490112, 0.006102754268795252, 0.02959749475121498, -0.013150599785149097, 0.023327620700001717, -0.004699524026364088, 0.023373723030090332, 0.05126544088125229, -0.011467876844108105, -0.010574650019407272, -0.008603788912296295, -0.03280158340930939, -0.027315445244312286, -0.02600153721868992, 0.043750811368227005, -0.0005697921151295304, 0.00044589294702745974, -0.005682073533535004, -0.05154205486178398, -0.007912258617579937, -0.014775696210563183, -0.013496365398168564, -0.02807612717151642, -0.014476032927632332, 0.00794107187539339, -0.020573025569319725, 0.011150925420224667, -0.015121460892260075, -0.0154557004570961, 0.002158150542527437, -0.005627327132970095, -0.008217683993279934, -0.05310952290892601, -0.007019031792879105, -0.06634080410003662, 0.045087773352861404, 0.0033452776260674, 0.0008139887358993292, -0.00029408044065348804, -0.020803535357117653, 0.0032357852905988693, -0.010246173478662968, -0.013323483057320118, 0.02320083975791931, -0.051910869777202606, 0.011312282644212246, -0.018060464411973953, -0.005803091451525688, 0.011271943338215351, 0.01785300485789776, 0.028629351407289505, -0.02242862991988659, 0.05343223735690117, 0.01275873277336359, -0.010845499113202095, -0.006926828064024448, 0.0329168401658535, 0.030219871550798416, 0.01993912272155285, -0.01163499616086483, 0.027200190350413322, -0.001983827445656061, -0.04739287123084068, 0.047162361443042755, -0.05117323622107506, 0.051726460456848145, 0.010274986736476421, -0.0063390270806849, -0.01854453608393669, 0.08759383112192154, -0.01561705768108368, -0.029044270515441895, 0.0010005577933043242, -0.012193983420729637, -0.015490277670323849, -0.01894792914390564, -0.004126130603253841, 0.002707052743062377, 0.013185176998376846, -0.04677049443125725, 0.0018152669072151184, 0.025217803195118904, -0.02726934291422367, -0.010926177725195885, 0.02344287559390068, 0.03266327828168869, 0.017299780622124672, -0.0714581236243248, 0.022878125309944153, -0.029735799878835678, -0.0167926587164402, -0.018071990460157394, -0.029874106869101524, 0.04596370831131935, 0.0247567817568779, -0.008972604759037495, -0.024964241310954094, -0.018994031473994255, 0.05292511358857155, -0.014902476221323013, 0.03264022618532181, -0.04082333669066429, 0.05495360493659973, -0.04312843456864357, 0.024572374299168587, 0.030726993456482887, 0.012136355973780155, -0.01918996497988701, 0.033792778849601746, -0.030703943222761154, -0.0024304406251758337, -0.0019564542453736067, 0.01292008999735117, 0.009560405276715755, -0.042667414993047714, -0.0109722800552845, 0.03715822473168373, -0.001525688567198813, -0.00977362785488367, 0.02261303924024105, -0.04868372902274132, 0.01969708688557148, -0.011623471044003963, 0.00019017081649508327, -0.023074058815836906, 0.013173650950193405, 0.012931615114212036, -0.012343814596533775, -0.008678704500198364, 0.009623795747756958, -0.0453643836081028, 0.008684467524290085, -0.014072640798985958, -0.0202733613550663, -0.0007160219247452915, 0.003555617993697524, 0.02044624462723732, 0.0210109930485487, -0.03058868832886219, 0.013553992845118046, 0.06265264004468918, -0.0005960846319794655, 0.0066732666455209255, -0.036028724163770676, 0.03259412571787834, 0.01247059553861618, -0.03847213089466095, -0.020676754415035248, -0.0147180687636137, -0.006022075656801462, -0.015524853952229023, 0.04299012944102287, 0.03496837988495827, -0.03605177626013756, -0.02376559004187584, 0.03891010209918022, 0.02941308543086052, 0.04988238215446472, 0.002202811883762479, -0.00802175048738718, -0.05094272643327713, 0.07837342470884323, 0.0021235740277916193, -0.03197174891829491, -0.03192564472556114, -0.0027243411168456078, -0.028030024841427803, 0.01413026824593544, 0.02004285156726837, -0.00923192873597145, 0.04561794549226761, -0.0007419543107971549, 0.056474968791007996, 0.0010675498051568866, 0.017391985282301903, -0.007209202740341425, 0.03434600308537483, 0.04513387382030487, -0.04603286460042, -0.05476919561624527, -0.03234056383371353, -0.030773095786571503, 0.038011111319065094, 0.012666529044508934, -0.005575462710112333, -0.015179088339209557, 0.008494296111166477, -0.003789009526371956, 0.015375022776424885, 0.02020420879125595, 0.06740114837884903, -0.038034163415431976, -0.016147231683135033, 0.007128524128347635, -0.0042298599146306515, 0.0034490071702748537, 0.026554761454463005, 0.05928719416260719, 0.0019161150557920337, 0.029781902208924294, 0.026716118678450584, 0.0007974207983352244, -0.02918257564306259, 0.011836692690849304, -0.05735090747475624, -0.036789409816265106, 0.02468762919306755, 0.009364471770823002, -0.029851054772734642, 0.005981736350804567, 0.015974348410964012, 0.009508540853857994, 0.02998936176300049, 0.0426904670894146, 0.015570956282317638, -0.010309563018381596, -0.009589219465851784, 0.013922808691859245, 0.001712978002615273, -0.02434186451137066, 0.0465630367398262, 0.006292925216257572, 0.023051008582115173, -0.024042202159762383, -0.025863230228424072, -0.02344287559390068, -0.014983154833316803, 0.029021218419075012, -0.006921065039932728, -0.02261303924024105, -0.015029257163405418, 0.022566936910152435, -0.003771721152588725, 0.05251019448041916, 0.02842189371585846, 0.02683137357234955, -0.026393404230475426, -0.026485608890652657, -0.0014514931244775653, 0.010753295384347439, -0.030058514326810837, 0.03489922732114792, -0.014326201751828194, 0.02360423281788826, 0.0008773789741098881, -0.005849193315953016, 0.05960990488529205, 0.05984041839838028, -0.005549530033022165, -0.06283704936504364, 0.009439387358725071, -0.03798806294798851, 0.012827886268496513, -0.032294463366270065, -0.005788684356957674, -0.02111472375690937, 0.014026538468897343, -0.023004906252026558, 0.005866481456905603, 0.007099710404872894, 0.012493646703660488, 0.01719605177640915, 0.023569656535983086, 0.0075203911401331425, 0.046009812504053116, 0.02835273928940296, 0.009024469181895256, 0.0521874837577343, 0.010004137642681599, -0.035360246896743774, 0.026992730796337128, 0.0093010812997818, -0.01961640827357769, -0.021898457780480385, -0.031026657670736313, -0.012044151313602924, 0.002554339822381735, -0.019236065447330475, -0.00529596908017993, -0.07307169586420059, 0.0017245035851374269, 0.02443406917154789, 0.019017081707715988, 0.0026234928518533707, -0.04822270944714546, -0.009629558771848679, -0.0020371328573673964, -0.025886282324790955, -0.011064483784139156, -0.0418836809694767, 0.0049041020683944225, 0.0036449406761676073, 0.032110054045915604, 0.03284768760204315, -0.019259117543697357, 0.02717713825404644, 0.003420193213969469, 0.027292393147945404, -0.008073615841567516, 0.007226490881294012, -0.03024292178452015, 0.006356315687298775, -0.05246409401297569, -0.0027906126342713833, -0.04573319852352142, 0.02876765839755535, -0.02685442380607128, -0.0604858435690403, 0.058226846158504486, -0.008252261206507683, -0.007860394194722176, 0.04163011908531189, 0.037941958755254745, 0.023396773263812065, 0.022958803921937943, 0.04031621292233467, 0.0030600212048739195, -0.012897038832306862, 0.025286955758929253, -0.05642886832356453, 0.014095691032707691, -0.003647821955382824, -0.02724629081785679, -0.01516756322234869, 0.07662154734134674, 0.005817498080432415, -0.02103404514491558, -0.025033393874764442, 0.01059193816035986, -0.010620752349495888, 0.044073525816202164, 0.03512973710894585, -0.039348069578409195, -0.01580146513879299, 0.031464625149965286, -0.017910633236169815, 0.06260653585195541, 0.0023123042192310095, 0.009162775240838528, -0.03863348811864853, -0.04859152436256409, -0.005241223145276308, 0.007877682335674763, -0.009410574100911617, 0.0019247591262683272, -0.023973047733306885, -0.046493884176015854, 0.019178438931703568, 0.04031621292233467, -0.015570956282317638, 0.05748921260237694, -0.03001241199672222, 0.017576392740011215, 0.0006659580394625664, 0.014072640798985958, -0.020469294860959053, 0.005174951162189245, -0.05463089048862457, -0.022244222462177277, -0.013553992845118046, -0.05882617086172104, -0.01142753753811121, 0.03247886896133423, 0.00930684432387352, -0.017345882952213287, -0.009191589429974556, 0.006575299892574549, -0.011191264726221561, -0.02876765839755535, -0.007070896681398153, 0.006200721021741629, -0.02609374187886715, -0.050389502197504044, 0.0031435813289135695, -0.016181807965040207, 0.008338701911270618, 0.011836692690849304, -0.007629883475601673, -0.012309238314628601, 0.010280749760568142, -0.009779389947652817, -0.03483007475733757, -0.07076659798622131, -0.0009681423543952405, 0.009433625265955925, 0.028237484395503998, 0.0040973168797791, 0.021160826086997986, 0.02018115669488907, -0.05642886832356453, 0.027545955032110214, -0.0007801325409673154, 0.0031061233021318913, -0.0025586618576198816, -0.003454769728705287, 0.006390891969203949, 0.025471363216638565, 0.02501034364104271, 0.022555410861968994, -0.001989590236917138, -0.00802175048738718, 0.03584431856870651, -0.010551598854362965, -0.014015012420713902, 0.00047146514407359064, 0.0005640293238684535, 0.028398841619491577, -0.017334358766674995, 0.01059193816035986, -0.007474289275705814, 0.005203764885663986, 0.012193983420729637, 0.016746558248996735, 0.0027387479785829782, 0.018659790977835655, -0.003117648884654045, -0.006661741528660059, -0.0108051598072052, -0.021541167050600052, -0.007422424387186766, 0.005906820762902498, 0.02867545373737812, 0.019385898485779762, -0.04955966770648956, 0.042436905205249786, -0.001011362997815013, -0.008580737747251987, -0.008574974723160267, 0.005633090157061815, -0.0014025097480043769, 0.0038812134880572557, 0.050066787749528885, -0.009497015736997128, -0.00877090822905302, -0.014429930597543716, 0.020722856745123863, -0.00843090657144785, -0.04983627796173096, -0.03443820774555206, 0.026047639548778534, -7.00084319760208e-06, -0.01006176508963108, 0.018337076529860497, 0.010649565607309341, -0.005221053492277861, 0.058226846158504486, -0.007307169493287802, 0.009329895488917828, -0.03648974746465683, 0.030104616656899452, 0.0023310331162065268, -0.018994031473994255, -0.020227259024977684, 0.0002636458957567811, -0.06200721114873886, -0.03616703301668167, 0.020169632509350777, 0.004353759344667196, -0.042413853108882904, 0.028721556067466736, 0.0025572211015969515, 0.006552249193191528, 0.022970329970121384, -0.02998936176300049, -0.06159229204058647, 0.018717419356107712, -0.029620544984936714, -0.025240853428840637, -0.017472663894295692, 0.006782758980989456, -0.01417636964470148, -0.008834298700094223, 0.001068990444764495, -0.012781783938407898, -0.0030917164403945208, -0.03648974746465683, -0.019408948719501495, -0.06200721114873886, 0.05393935739994049, -0.02178320288658142, -0.0020962010603398085, 0.033861931413412094, 0.012528222985565662, 0.013438737951219082, -0.013173650950193405, -0.016746558248996735, 0.026693066582083702, -0.007370559964329004, -0.003915790002793074, 0.013404160737991333, 0.05836515128612518, -0.011220077984035015, 0.004215453285723925, -0.02102251909673214, -0.00513461185619235, 0.01621638424694538, 0.007099710404872894, 0.018175719305872917, -0.016481470316648483, -0.013865181244909763, 4.81730057799723e-05, -0.009433625265955925, 0.010701430030167103, -0.04564099758863449, 0.027776464819908142, -0.01695401594042778, -0.009808204136788845, 0.03185649216175079, 0.0253561083227396, 0.015294344164431095, -0.04232165217399597, 0.012747207656502724, -0.023811690509319305, 0.015098410658538342, 0.012747207656502724, -0.008165819570422173, 0.02235947735607624, 0.009116673842072487, -0.03941722214221954, -0.001263483427464962, -0.012608901597559452, 1.3450173355522566e-05, -0.00938752293586731, -0.03658194839954376, -0.024457119405269623, -0.03496837988495827, -0.0390714593231678, 0.03600567579269409, -0.041422661393880844, 0.05301731824874878, -0.05841125547885895, -0.0294361375272274, 0.005558174103498459, -0.01050549652427435, -0.004322064109146595, -0.012943141162395477, 0.024733731523156166, -0.025955434888601303, 0.008211921900510788, 0.011813641525804996, -0.01312754862010479, 0.04743897542357445, 0.007929546758532524, -0.0005787964328192174, 0.01217093225568533, 0.02501034364104271, 0.011917371302843094, -0.013542466796934605, -0.019800815731287003, -0.06560316681861877, 0.023834742605686188, 0.021840829402208328, -0.02959749475121498, -0.04031621292233467, -0.015109935775399208, 0.008886163122951984, -0.02477983385324478, 0.013726875185966492, 0.029689697548747063, -0.008113955147564411, -0.013899757526814938, -0.012436019256711006, -0.03512973710894585, -0.02710798569023609, -0.00788920745253563, 0.0010264902375638485, 0.010257698595523834, -0.00992922205477953, -0.020423192530870438, -0.013162125833332539, -0.038011111319065094, 0.0446959063410759, -0.020319463685154915, -0.0020256072748452425, 0.029228677973151207, -0.03333175927400589, -0.0035095158964395523, 0.003005275269970298, -0.028214434161782265, 0.008125480264425278, 0.0536627471446991, -0.024987293407320976, 0.0034807021729648113, 0.01703469455242157, -0.04448844492435455, 0.020238785073161125, -0.018832674250006676, -0.023973047733306885, -0.01005023904144764, -0.021564217284321785, 0.01695401594042778, -0.059471599757671356, -0.010465157218277454, -0.023004906252026558, 0.006362078245729208, 2.336615762033034e-05, 0.04273656755685806, 0.0037573142908513546, -0.019996749237179756, 0.040846385061740875, -0.04743897542357445, 0.0074051362462341785, -0.01561705768108368, -0.015156038105487823, -0.0035757876466959715, 0.011300756596028805, -0.0029562918934971094, 0.036259233951568604, -0.02775341272354126, 0.008344464935362339, 0.005661903880536556, 0.0030744282994419336, -0.004927152767777443, 0.03323955461382866, -0.010776346549391747, -0.004664947744458914, -0.03658194839954376, 0.004512234590947628, 0.03243276849389076, -0.03275548294186592, -0.012343814596533775, 0.003238666569814086, 0.04421183466911316, 8.770188287599012e-05, 0.021956084296107292, 0.008010225370526314, -0.03501448035240173, -0.01769164949655533, -0.01479874737560749, -0.04211419075727463, 0.01968556083738804, -0.01487942598760128, -0.009399048052728176, 0.005437156651169062, 0.007572256028652191, -0.03512973710894585, 0.02003132551908493, 0.0018253517337143421, 0.01769164949655533, 0.02242862991988659, -0.024964241310954094, -0.043750811368227005, 0.006523435469716787, -0.03116496279835701, -0.01255127415060997, -0.0020011155866086483, 0.00502511952072382, -0.026577811688184738, -0.026808321475982666, 0.008425143547356129, -0.019224541261792183, -0.02759205736219883, -0.01005600206553936, 0.017737749963998795, 0.08183107525110245, -0.03197174891829491, -0.011127874255180359, -0.014937053434550762, -0.018878774717450142, -0.006938353180885315, -0.052740707993507385, 0.028191382065415382, -0.018048938363790512, 0.044834211468696594, -0.00641970569267869, 0.000467863428639248, -0.008822773583233356, 0.009381759911775589, 0.0010718718403950334, -0.0001305623445659876, 0.033032093197107315, -0.024802884086966515, 0.0021826422307640314, 0.025655772536993027, 0.020918790251016617, -0.0028612064197659492, -0.015847567468881607, -0.010851262137293816, 0.019570305943489075, -0.020884213969111443, 0.011392960324883461, -0.004788846708834171, 0.03879484534263611, 0.006805810146033764, -0.009756338782608509, -0.0019031488336622715, -0.027868669480085373, -0.016942491754889488, 0.018982505425810814, -0.0074051362462341785, 0.027453750371932983, -0.024295762181282043, -0.020815059542655945, -0.012205508537590504, -0.01943199895322323, 0.0066905552521348, 0.020642178133130074, 0.016181807965040207, -0.01629706285893917, 0.028652403503656387, -0.00835022795945406, -0.03600567579269409, -0.01702316850423813, -0.04008570313453674, 0.011289231479167938, 0.003794772084802389, 0.014406880363821983, -0.016308588907122612, 0.01945505104959011, -0.013530941680073738, -0.0309114009141922, -0.022705242037773132, 0.005595632363110781, -0.03296294063329697, 0.018129616975784302, -0.014741119928658009, 0.028122229501605034, -0.0003378413384780288, 0.01043058093637228, 0.012136355973780155, 0.019259117543697357, -0.012966192327439785, -0.002802138216793537, 0.0037457887083292007, -0.008079377934336662, -0.02418050728738308, -0.02667001634836197, 0.028790708631277084, 0.014867899939417839, -0.006776996422559023, -0.014522135257720947, 0.026877475902438164, 0.01109906006604433, -0.005442919209599495, -0.004771558567881584, -0.010522785596549511, -0.032455820590257645, 0.058042436838150024, 0.0711815133690834, 0.017887583002448082, 0.028444943949580193, 0.00976210180670023, 0.000520808738656342, 0.010257698595523834, 0.022128967568278313, -0.015755364671349525, -0.0009458116837777197, -0.03895620256662369, -0.019904544577002525, 0.034945327788591385, -0.030104616656899452, -0.0102692237123847, -0.0005017195944674313, 0.0023526435252279043, -0.0054486822336912155, -0.007722087670117617, -0.020907264202833176, -0.006759708281606436, 0.018970979377627373, -0.0025658654049038887, 0.04248300939798355, -0.019339796155691147, -0.016020450741052628, -0.028444943949580193, 0.014360778033733368, 0.018579112365841866, -0.03393108397722244, 0.01785300485789776, 0.05075832083821297, -0.016723506152629852, 0.035867366939783096, 0.014683492481708527, 0.0017158593982458115, -0.003829348599538207, -0.028882913291454315, 0.0007383525953628123, -0.025978485122323036, 0.008015988394618034, -0.00826378632336855, -0.015570956282317638, -0.006730894558131695, 0.050573911517858505, 0.017507240176200867, 0.051818665117025375, 0.024203557521104813, 0.014625865034759045, -0.019466577097773552, 0.00013920647324994206, 0.0010250494815409184, -0.017426561564207077, 0.01570926234126091, 0.04061587527394295, -0.0058088540099561214, -0.032040901482105255, 0.002923155901953578, 0.01387670636177063, -0.012251610867679119, 0.013369584456086159, 0.0077624269761145115, 0.020918790251016617, 0.026992730796337128, -0.0028554436285048723, 0.00446901423856616, 0.0055639371275901794, -0.023166263476014137, 0.01777232624590397, 0.02178320288658142, -0.014937053434550762, 0.019005555659532547, 0.007163100875914097, 0.053570542484521866, 0.026047639548778534, 0.016977068036794662, -0.01696554198861122, 0.04610201716423035, 0.05269460380077362, -0.020884213969111443, 0.012977717444300652, 0.024802884086966515, 0.02004285156726837, -0.025724925100803375, -0.016481470316648483, 0.06638690084218979, 0.024872038513422012, -0.0037256190553307533, -0.0066732666455209255, 0.012666529044508934, -0.018579112365841866, 0.01366924773901701, 0.0070305573754012585, 0.010557361878454685, 0.019397422671318054, 0.017299780622124672, 0.021875405684113503, 0.02103404514491558, 0.026208996772766113, -0.0035152786877006292, -0.00027715234318748116, -0.009191589429974556, 0.020872687920928, 0.02210591733455658, 0.018129616975784302, 0.0157899409532547, 0.009733288548886776, -0.042252495884895325, 0.02501034364104271, 0.03365446999669075, 0.012585850432515144, 0.03761924430727959, -0.01678113453090191, 0.041607070714235306, -0.028214434161782265, -0.004296131432056427, 0.008961079642176628, 0.005278680939227343, 0.01895945332944393, 0.03250192105770111, 0.03542939946055412, -0.014729593880474567, 0.010436343960464, 0.009514303877949715, -0.016089603304862976, -0.003777483943849802, -0.02667001634836197, -0.009606507606804371, -0.04245995730161667, 0.006771233398467302, -0.04197588562965393, 0.019627932459115982, 0.016573674976825714, -0.030680891126394272, 0.018302500247955322, 0.02011200413107872, 0.03381582722067833, 0.04252910986542702, 0.020492346957325935, 0.02162184566259384, 0.012297713197767735, 0.016008924692869186, 0.02335067093372345, 0.013646196573972702, -0.009358709678053856, -0.010914652608335018, 0.026946628466248512, 0.007410899270325899, 0.004725456703454256, 0.012493646703660488, -0.026577811688184738, -0.013738401234149933, 0.023880844935774803, -0.029943259432911873, -0.02934393286705017, -0.03964773193001747, 0.01217093225568533, -0.02584017999470234, -0.01396891102194786, 0.016008924692869186, 0.02593238465487957, 0.00708818482235074, 0.007756664417684078, -0.010344140231609344, 0.03637449070811272, -0.050666116178035736, -0.03040427900850773, -0.00492427172139287, -0.021840829402208328, -0.027545955032110214, -0.0026854423340409994, -0.021091671660542488, -0.01421094685792923, -0.012493646703660488, -0.013358059339225292, -0.007635646499693394, -0.002673916984349489, 0.01710384711623192, -0.02551746554672718, -0.03533719480037689, 0.0030427330639213324, 0.024618476629257202, -0.005987499374896288, -0.0013614501804113388, 0.010914652608335018, 0.022163543850183487, 0.03141852468252182, 0.03448430821299553, -0.003771721152588725, -0.02427271194756031, -0.04303623363375664, -0.007750901393592358, 0.02701578103005886, 0.01995064690709114, 0.02593238465487957, 0.03148767724633217, 0.009790915995836258, -0.025079496204853058, -0.021794728934764862, -0.012747207656502724, 0.0031896831933408976, -0.003434600308537483, -0.0063390270806849, -0.008972604759037495, 0.021806253120303154, 0.02724629081785679, 0.013450263068079948, 0.009883119724690914, 0.019835392013192177, 0.005517835263162851, 0.029528342187404633, -0.003829348599538207, -0.003817823249846697, -0.003754433011636138, 0.0036996868439018726, 0.0054227495566010475, -0.0027387479785829782, 0.029021218419075012, 0.0006011270452290773, 0.01736893504858017, -0.014061114750802517, 0.028859861195087433, 0.023569656535983086, -0.007906495593488216, 0.013369584456086159, 0.003993587102741003, -0.02660086378455162, 0.0370660200715065, 0.005174951162189245, -0.0027012899518013, 0.003619008231908083, 0.007560730446130037, -0.02018115669488907, -0.013012293726205826, -0.013991962186992168, -0.03983214125037193, 0.0032559549435973167, 0.011583131738007069, -0.00021268156706355512, -0.03699686750769615, 0.01596282236278057, -0.011398723348975182, 0.011940422467887402, 0.00044949466246180236, -0.03330870717763901, -0.0038207045290619135, -0.01577841490507126, 0.010004137642681599, -0.001923318486660719, 0.003846636973321438, -0.03648974746465683, 0.028444943949580193, 0.007831580005586147, 0.013611620292067528, -0.011790590360760689, -0.009450913406908512, 0.00914548709988594, -0.04688575118780136, -0.012159407138824463, -0.006857675034552813, 0.06348247826099396, 0.006292925216257572, -0.026139842346310616, 0.0008600907167419791, 0.047669485211372375, -0.0014687813818454742, 0.0065407236106693745, -0.016250960528850555, 0.02692357823252678, 0.04324369132518768, -0.036028724163770676, 0.053063418716192245, 0.011577368713915348, 0.013796028681099415, -0.0018844199366867542, 0.02494119107723236, 0.003051377134397626, 0.004396979697048664, 0.03457651287317276, 0.01005023904144764, 0.024802884086966515, -0.0154557004570961, 0.010638040490448475, -0.0024722206871956587, -0.01209025364369154, -0.027384597808122635, -0.023304568603634834, 0.005840549245476723, -0.01496010459959507, 0.015040782280266285, -0.012366865761578083, 0.01433772686868906, -0.015524853952229023, 0.003872569417580962, 0.005160544533282518, -0.03024292178452015, -0.018878774717450142, 0.0077336132526397705, 0.044926416128873825, -0.002116370713338256, -0.0309114009141922, -0.021149300038814545, 0.005419868044555187, -0.004696642979979515, -0.02320083975791931, 0.015928246080875397, -0.01711537316441536, 0.007981411181390285, 0.002642221748828888, -0.03764229640364647, -0.004670710302889347, -0.005316138733178377, -0.0337236262857914, -0.021402860060334206, -0.012735681608319283, 0.023788640275597572, 0.0096353217959404, -0.01738045923411846, -0.05712039768695831, -0.020423192530870438, 0.033377859741449356, 0.010620752349495888, -0.04423488304018974, 0.022313375025987625, -0.03139547258615494, -0.020307937636971474, -0.014061114750802517, -0.005975973792374134, -0.005137493368238211, 0.02078048326075077, 0.01030380092561245, -0.0330551452934742, 0.009906170889735222, -0.0061834328807890415, -0.0005402580136433244, 0.020665228366851807, -0.018717419356107712, 0.01577841490507126, -0.032202258706092834, -0.04520302638411522, -0.01603197678923607, -0.014810272492468357, -0.005733938422054052, 0.02128760516643524, 0.004016638267785311, -0.0007866156520321965, -0.0126780541613698, 0.036351438611745834, -0.013703824020922184, 0.04047757014632225, -0.043428100645542145, -0.0002465377328917384, 0.04573319852352142, -0.02602458745241165, 0.006736657116562128, -0.007606832776218653, -0.006436993833631277, -0.029459187760949135, -0.016066553071141243, 0.0045007094740867615, 0.014648915268480778, -0.0074339499697089195, -0.0066732666455209255, -0.005313257221132517, 0.00622953474521637, 0.016838761046528816, -0.0023598468396812677, -0.0006576740997843444, 0.012366865761578083, -0.007076659239828587, -0.016585201025009155, 0.0018167075468227267, 0.024457119405269623, 0.015524853952229023, -0.01943199895322323, -0.03713517263531685, 0.0015472988598048687, -0.02170252427458763, 0.015893669798970222, -0.019593356177210808, 0.0013989080907776952, -0.01636621542274952, 0.025079496204853058, 0.0019189964514225721, -0.0039849430322647095, 0.013680772855877876, -0.021644895896315575, 0.03330870717763901, 0.013646196573972702, 0.009756338782608509, 0.022405579686164856, -0.00022618801449425519, 0.028537148609757423, -0.019881494343280792, 0.003846636973321438, -0.022036762908101082, -0.008217683993279934, 0.00010643082350725308, 0.017564868554472923, -0.023051008582115173, 0.011905845254659653, 0.028813760727643967, -0.03215615451335907, -0.021748626604676247, -0.02443406917154789, 0.008615314029157162, -0.0028482400812208652, -0.03725042939186096, 0.00315798819065094, 0.020653702318668365, -0.020238785073161125, 0.025563567876815796, 0.022543886676430702, 0.02526390552520752, 0.02084963582456112, 0.013069921173155308, 0.01977776549756527, -0.020573025569319725, 0.03888705000281334, 0.009076334536075592, -0.009865831583738327, 0.012850936502218246, 0.010954991914331913, -0.03280158340930939, 0.00855768658220768, 0.017265204340219498, 0.029551392421126366, 0.013726875185966492, -0.021552693098783493, -0.012585850432515144, -0.0072437794879078865, -0.030381228774785995, 0.019662510603666306, 0.0026595101226121187, -0.02593238465487957, 0.02807612717151642, -0.001415475970134139, 0.03699686750769615, -0.04370471090078354, -9.572696399118286e-06, 0.0076471720822155476, 0.013058396056294441, -0.009664135053753853, -0.006696317810565233, 0.00855192355811596, -0.007802766282111406, -0.00022672826889902353, -0.005172070115804672, 0.015179088339209557, 0.010753295384347439, 0.007670222781598568, 0.016158755868673325, 0.012182457372546196, -0.04564099758863449, -0.003549855202436447, -0.0493752583861351, 0.020492346957325935, 0.0037054496351629496, 0.04379691556096077, 0.011571605689823627, -0.0006771233747713268, 0.004883932415395975, -0.0181987714022398, -0.02992020919919014, -0.012343814596533775, -0.04015485569834709, 0.016930965706706047, 0.002959173172712326, 0.004022400826215744, 0.013530941680073738, 0.017000118270516396, 0.01587061956524849, 0.006396654527634382, 0.004129011649638414, 0.03522194176912308, -0.024480169638991356, 0.027061883360147476, 0.03540634736418724, 0.01275873277336359, -0.03107275813817978, -0.026462556794285774, -0.016181807965040207, 0.05186476930975914, -0.014856374822556973, 0.005172070115804672, 0.014522135257720947, -0.007076659239828587, 0.009906170889735222, 0.05343223735690117, -0.023880844935774803, -0.0035469739232212305, -0.03939417377114296, 0.0017389104468747973, 0.013922808691859245, -0.0157899409532547, -0.02667001634836197, -0.02317778766155243, -0.0072437794879078865, -0.001542976824566722, -0.002273405669257045, -0.02733849547803402, 0.005076984409242868, -0.010574650019407272, -0.003708330914378166, 0.005010712891817093, 0.03911755979061127, -0.013761451467871666, -0.042598262429237366, -0.004552573896944523, -0.011508216150105, -0.00939328595995903, -0.01870589330792427, -0.0038898575585335493, 0.00558986933901906, 0.010113629512488842, -0.018314026296138763, 0.0006385849555954337, -0.00032775651197880507, -0.012643477879464626, 0.013311957009136677, 0.004814779385924339, -0.045341331511735916, 0.03688161447644234, -0.010638040490448475, 0.006385129410773516, 0.04338199645280838, -0.005829023662954569, -0.030358176678419113, -0.03953247889876366, -0.009450913406908512, -0.015109935775399208, 0.006949878763407469, 0.03443820774555206, -0.007289881352335215, -0.011577368713915348, -0.02376559004187584, -0.03252497315406799, 0.0017461138777434826, 0.006817335728555918, 0.01457976270467043, 0.005624446086585522, 0.039947398006916046, 0.02759205736219883, -0.018475383520126343, 0.018164195120334625, 0.01777232624590397, -0.02209439128637314, 0.008523110300302505, -0.002999512478709221, -0.03351616486907005, 0.04423488304018974, -0.003999349661171436, 0.05334003269672394, 0.04490336403250694, 0.011087534949183464, 0.013980436138808727, 0.0015501802554354072, 0.047001004219055176, 0.002987986896187067, -0.032294463366270065, -0.010649565607309341, 0.01811809279024601, 0.005837667733430862, 0.017403511330485344, -0.00805632770061493, 0.022670665755867958, 0.01088007539510727, 0.031948696821928024, 0.016492996364831924, -0.002676798263564706, -0.002901545725762844, 0.00586071889847517, -0.038264673203229904, -0.029320882633328438, 0.01704622060060501, 0.027522902935743332, -0.03941722214221954, -0.0072437794879078865, 0.017242154106497765, 0.04946746304631233, -0.00938752293586731, -0.021714050322771072, 0.00537952920421958, -0.035452451556921005, 0.016573674976825714, -0.01627401076257229, -0.0038927390705794096, 0.0168618131428957, -0.016919439658522606, -0.011450587771832943, 0.0028856981080025434, -0.01761097088456154, 0.05449258163571358, -0.06325196474790573, -0.000543859729077667, 0.049744077026844025, 0.0033135823905467987, -0.010897364467382431, 0.009053283371031284, -0.026992730796337128, -0.02491813898086548, -0.003748670220375061, -0.009162775240838528, 0.03466871753334999, 0.009715999476611614, 0.001052422565408051, 0.0009710236918181181, 0.013139074668288231, 0.00055862677982077, 0.01532892044633627, 0.034876175224781036, 0.044350139796733856, -0.019478101283311844, 0.006748182699084282, 0.03964773193001747, -0.009940747171640396, 0.0005795167526230216, 0.002830951940268278, 0.024226609617471695, -0.017818428575992584, 0.012747207656502724, 0.0384029783308506, -0.002028488786891103, 0.029205627739429474, 0.020238785073161125, -0.02219812013208866, 0.0109722800552845, 0.021840829402208328, 0.027292393147945404, 4.830806938116439e-05, 0.017726225778460503, -0.008177344687283039, 0.026716118678450584, -0.006160381715744734, 0.008586500771343708, -0.0363975428044796, 0.005200883839279413, -0.013173650950193405, -0.028030024841427803, 0.004610201809555292, -0.005889532621949911, -0.04222944751381874, 0.0013182294787839055, -0.02625509724020958, 0.036535847932100296, -0.03955553099513054, 0.011122111231088638, 0.018060464411973953, 0.0012843733420595527], [0.04437253624200821, 0.036805495619773865, 0.04621640220284462, -0.016822291538119316, -0.05167616158723831, -0.015636948868632317, 0.0033045923337340355, 0.02398224174976349, 0.024137891829013824, 0.021623529493808746, -0.07193475216627121, -0.005774057004600763, -0.01423608884215355, 0.04480356723070145, -0.03829016909003258, 0.03421929478645325, 0.017624493688344955, 0.011488247662782669, -0.04561774432659149, 0.00502872746437788, 0.0010229569161310792, 0.028615854680538177, 0.002038430655375123, -0.0037416128907352686, -0.007267708890140057, -0.01768435910344124, 0.05052673816680908, -0.03730836883187294, 0.04506697878241539, -0.0361349992454052, 0.03441086411476135, -0.007860380224883556, 0.03338117152452469, 0.004292378202080727, 8.506322956236545e-06, -0.014523444697260857, -0.02000715211033821, 0.011218851432204247, 0.02978922426700592, -0.003879304276779294, -0.0600573755800724, 0.03644630312919617, 0.03283040598034859, -0.06364932656288147, -0.012871148064732552, 0.06925276666879654, 0.03975089639425278, -0.06604395806789398, -0.04415701702237129, 0.013613483868539333, 0.023826589807868004, 0.016510989516973495, 0.004801237490028143, 0.008429105393588543, 0.01704978197813034, 0.02547888644039631, -0.01362545695155859, 0.028759533539414406, -0.002089316491037607, -0.008704488165676594, 0.011027281172573566, -0.04528249427676201, -0.003750592702999711, 0.05526811257004738, -0.0150143438950181, -0.0016493028961122036, 0.01924086920917034, 0.011230825446546078, -0.004187613260000944, 0.029118727892637253, -0.021443931385874748, 0.018366828560829163, -0.010488488711416721, -0.03563212603330612, -0.012368275783956051, 0.009728193283081055, -0.0008156715775839984, -0.035440556704998016, 0.03694917634129524, 0.03951143100857735, -0.05680067464709282, -0.005208325106650591, 0.021767206490039825, 0.05957844853401184, -0.04221736639738083, 0.017277270555496216, -0.056609105318784714, -0.018809836357831955, -0.02049805223941803, -0.009823978878557682, -0.021946804597973824, -0.04966467246413231, -0.018091445788741112, 0.028065089136362076, 0.018570372834801674, 0.004705452360212803, 0.03287830203771591, 0.004804230760782957, -0.047413717955350876, 0.06824702024459839, 0.05656121298670769, 0.005615412723273039, -0.010141267441213131, 0.003116015112027526, -9.662715456215665e-05, -0.03314170986413956, -0.009333078749477863, 0.03682944178581238, 0.05890795215964317, 0.015301699750125408, 0.03338117152452469, -0.012727470137178898, -0.024928120896220207, 0.08357266336679459, -0.019468359649181366, -0.005486701149493456, -0.018115391954779625, -0.008668568916618824, 0.011721724644303322, -0.02394632250070572, 0.017253324389457703, -0.041570816189050674, -0.004406123422086239, -0.07418570667505264, -0.008674555458128452, 0.013110611587762833, -0.03041182830929756, 0.030914701521396637, -0.04839551821351051, 0.03146546706557274, 0.027538269758224487, -0.002113262889906764, 0.0841473788022995, 0.013206396251916885, -0.0018513500690460205, 0.01617574132978916, 0.014726988039910793, 0.0075849974527955055, 0.012523926794528961, 0.012559846043586731, 0.038338061422109604, -0.009871871210634708, 0.0007434584549628198, 0.017337137833237648, -0.033668529242277145, 0.031154165044426918, 0.0071779098361730576, 0.08136960119009018, -0.018630238249897957, 0.016942022368311882, -0.03211201727390289, 0.002512867096811533, 0.0020533970091491938, -0.015229861252009869, 0.015098156407475471, -0.005211318377405405, 0.019264815375208855, 0.050718311220407486, -0.0004706948820967227, 0.007782554719597101, -0.02137209288775921, -0.035201095044612885, -0.0042893849313259125, -0.04214552789926529, 0.024856282398104668, 0.02436538226902485, 0.006645104382187128, -0.011805537156760693, -0.037954919040203094, -0.035823699086904526, -0.030675237998366356, -0.017828036099672318, -0.015493270009756088, -0.041810277849435806, -0.013050745241343975, -0.013290208764374256, 0.006609184667468071, -0.034123510122299194, -0.0019306722097098827, 0.007776568178087473, 0.027681948617100716, -0.006441560573875904, -0.02022266946732998, -0.014966451562941074, -0.050239384174346924, 0.031130218878388405, -0.00564534543082118, -0.023587128147482872, -0.050239384174346924, 0.0150143438950181, 0.03529687970876694, -0.028041142970323563, 0.004151693545281887, 0.026317007839679718, -0.015469323843717575, -0.019719796255230904, -0.022317972034215927, 0.025694403797388077, 0.03800281137228012, -0.017792116850614548, -0.023898430168628693, -0.028687693178653717, 0.03793097287416458, -0.01739700324833393, -0.02146787755191326, -0.05306505039334297, 0.0313936285674572, 0.04137924313545227, 0.0598658062517643, -0.0014420176157727838, 0.009027763269841671, 0.03093864768743515, -0.05541178956627846, 0.008010044693946838, -0.01617574132978916, 0.002894511679187417, 0.07059375941753387, 0.023407530039548874, 0.010721965692937374, 0.02318003959953785, -0.016439151018857956, -0.034051671624183655, 0.028376391157507896, -0.014415686018764973, -0.04561774432659149, -0.049856241792440414, -0.0012758899247273803, 0.010560328140854836, 0.03908039629459381, -0.03132179006934166, -0.0036338544450700283, 0.04667138308286667, -0.0050915866158902645, -0.02015082910656929, 0.04336678981781006, 0.031968340277671814, -0.0006783544085919857, -0.06853437423706055, -0.02923845872282982, -0.02241375669836998, 0.003774539101868868, 0.015098156407475471, -0.012308409437537193, 0.01810341887176037, 0.008081884123384953, -0.014834746718406677, -0.025454940274357796, -0.01872602477669716, 0.027203021571040154, -0.013840974308550358, 0.004301358014345169, -0.024197759106755257, 0.04772501811385155, -0.041259512305259705, 0.04269629344344139, -0.014786853455007076, 0.017947768792510033, -0.008147736079990864, 0.0246407650411129, 0.004157680086791515, 0.009069669060409069, 0.04990413412451744, 0.006615171674638987, -0.005792016629129648, -0.024485114961862564, -0.02387448400259018, 0.05359186977148056, -0.0002534942759666592, -0.012811282649636269, 0.03709285333752632, -0.03591948375105858, 0.008381213061511517, 0.019336655735969543, -0.029214512556791306, -0.049018122255802155, 0.030986540019512177, 0.008878098800778389, -0.023120174184441566, -0.01493053138256073, -0.01105122733861208, -0.03524898737668991, 0.01374518871307373, 0.0271072369068861, -0.08783511072397232, 0.020366346463561058, 0.005366969387978315, 0.030459722504019737, 0.014595283195376396, -0.00824950821697712, 0.021288279443979263, 0.08601518720388412, 0.015337618999183178, 0.012488006614148617, -0.012056972831487656, 0.01005745492875576, 0.005310096777975559, -0.07734662294387817, 0.01681031845510006, -0.013924785889685154, -0.030771024525165558, -0.024233678355813026, 0.06178151071071625, 0.03287830203771591, -0.06024894490838051, -0.06101522967219353, 0.05268190801143646, 0.012715497054159641, 0.035272933542728424, -0.02276097983121872, 0.016259552910923958, -0.021767206490039825, 0.05004781484603882, -0.022772952914237976, -0.0050915866158902645, -0.04427674785256386, -0.006267949938774109, -0.036661818623542786, 0.02794535830616951, 0.006339788902550936, 0.012152758426964283, 0.07102479040622711, -0.007998071610927582, 0.06331407278776169, -0.006962392944842577, 0.02446116879582405, 0.009051709435880184, 0.02801719680428505, -0.0022285045124590397, -0.025838080793619156, -0.034434810280799866, -0.06048841029405594, 0.01247603353112936, 0.02401816099882126, 0.01220065075904131, -0.010530395433306694, -0.036661818623542786, 0.022365864366292953, 0.0012639168417081237, -0.015277753584086895, 0.020629756152629852, 0.04899417608976364, -0.01635533757507801, -0.01374518871307373, 0.01952822506427765, -0.007668809499591589, 0.022114427760243416, 0.028998995199799538, 0.02314412035048008, -0.005543573759496212, 0.0015834505902603269, 0.033596690744161606, 0.030818916857242584, -0.04260050877928734, 0.021036844700574875, -0.07351520657539368, -0.04913785308599472, 0.026604363694787025, -0.013002852909266949, -0.033596690744161606, 0.010195146314799786, -0.006944433320313692, -0.004061894956976175, 0.043103378266096115, 0.04145108535885811, -0.011865402571856976, 0.0006465506739914417, 0.001788490917533636, -0.0009645877871662378, 0.004058901686221361, 0.004412109963595867, 0.04255261272192001, -0.004687492735683918, -0.004430069588124752, -0.033213548362255096, -0.004507895093411207, -0.02179115265607834, -0.048179998993873596, 0.03709285333752632, 0.02878347970545292, -0.05483707785606384, 0.02338358387351036, 0.0004822938935831189, 0.030531561002135277, 0.06120679900050163, 0.03017236664891243, 0.04643191769719124, -0.01827104389667511, -0.0020563905127346516, 0.007459279149770737, -0.019683877006173134, -0.04834762588143349, 0.027538269758224487, 0.01768435910344124, 0.011458314955234528, 0.03855357691645622, 0.021707341074943542, 0.05033516883850098, 0.04389360919594765, -0.03141757473349571, -0.10622588545084, -0.0008426111890003085, -0.03326144069433212, 0.011895335279405117, -0.03177677094936371, 0.010249026119709015, 0.008979870937764645, 0.005387922283262014, -0.030723130330443382, 0.04542617127299309, -0.013529672287404537, 0.01235630176961422, 0.010368757881224155, 0.012332355603575706, 0.021419985219836235, 0.023886457085609436, 0.039200130850076675, 0.0167025588452816, 0.048419464379549026, -0.00840515922755003, -0.030339989811182022, 0.01021310593932867, 0.014116357080638409, -0.026293061673641205, -0.014128330163657665, -0.018283016979694366, -0.0033764312975108624, 0.010063441470265388, -0.01931270956993103, -0.0024874242953956127, -0.03912828862667084, -0.030196312814950943, 0.008692515082657337, 0.029214512556791306, -0.018330909311771393, -0.05689646303653717, 0.018055526539683342, -0.032974086701869965, -0.02617333084344864, 0.004639599937945604, -0.014942505396902561, -0.01976768858730793, -0.0607757642865181, 0.008045963943004608, 0.043031539767980576, 0.0113625293597579, 0.008554823696613312, -0.011955201625823975, 0.0607757642865181, 0.03493768349289894, 0.017768170684576035, -0.03594342991709709, -0.010201132856309414, -0.025191530585289, -0.003340511815622449, -0.024592872709035873, -0.05229876562952995, -0.007998071610927582, -0.056225962936878204, 0.05584282428026199, 0.03093864768743515, 0.047030575573444366, 0.06139836832880974, 0.04384571686387062, -0.025311263278126717, 0.010937483049929142, 0.062068868428468704, 0.003774539101868868, -0.0030067600309848785, -0.007620917167514563, -0.040876369923353195, 0.014319900423288345, -0.05498075485229492, -0.02192285843193531, 0.02334766462445259, 0.06685812771320343, -0.04394150152802467, 0.002340753097087145, -0.005768070463091135, 0.00039773344178684056, -0.0011793563608080149, 0.00859672948718071, 0.031034434214234352, -0.04169054701924324, -0.02787351980805397, 0.030747078359127045, 0.018354855477809906, 0.06513399630784988, 0.01339796744287014, 0.021252360194921494, -0.016642693430185318, -0.08567994087934494, 0.01722937822341919, 0.012464060448110104, -0.01120687834918499, -0.027921412140130997, -0.049089960753917694, 0.004265438765287399, -0.005022740922868252, 0.016678612679243088, -0.01736108399927616, 0.04415701702237129, -0.03199228644371033, 0.007429346442222595, -0.026915665715932846, 0.031226003542542458, -0.024521034210920334, -0.011182932183146477, 0.01092550903558731, -0.042792078107595444, 0.008985857479274273, -0.024317489936947823, -0.05909952148795128, 0.05699224770069122, -0.009566555730998516, -0.02373080514371395, -0.007429346442222595, 0.02241375669836998, 0.015361565165221691, -0.01181751023977995, -0.011344569735229015, -0.014140303246676922, 0.010997348465025425, -0.05440604314208031, 0.018773917108774185, -0.023814616724848747, -0.02540704794228077, 0.019576117396354675, -0.033668529242277145, 0.011895335279405117, -0.010973402298986912, -0.032447267323732376, -0.042720239609479904, -0.06384089589118958, -0.001521339756436646, -0.01358953770250082, 0.010225079953670502, 0.01014725398272276, 0.010536381974816322, 0.02237783744931221, 0.0009264233522117138, -0.01600811630487442, -0.02801719680428505, 0.021659448742866516, -0.030459722504019737, -0.0009645877871662378, 0.009967656806111336, 0.08117803186178207, -0.002837639069184661, 0.003981076180934906, -0.03738020732998848, 0.0006495440029539168, 0.03946353867650032, 0.02112065628170967, 0.001166634843684733, -0.0209889505058527, 0.022928602993488312, 0.01952822506427765, 0.003148941323161125, 0.025933867320418358, -0.0005466496222652495, 0.02182707190513611, 0.010596247389912605, 0.03591948375105858, -0.0193486288189888, -0.02237783744931221, 0.02268913947045803, -0.013074691407382488, -0.004504901822656393, -0.00035732402466237545, -0.01770830526947975, -0.017792116850614548, 0.029262404888868332, 0.012859174981713295, -0.06786387413740158, 0.03211201727390289, 0.004510888364166021, 0.0021312227472662926, -0.03685338795185089, 0.002273404039442539, -0.0209889505058527, 0.0005915489746257663, 0.054549720138311386, 0.017983688041567802, -0.024389328435063362, -0.0028271626215428114, 0.01785198226571083, -0.012056972831487656, -0.040421392768621445, -0.049018122255802155, 0.017373057082295418, -0.0017675379058346152, -0.018498534336686134, 0.04461199790239334, -0.019444413483142853, -0.0018797862576320767, 0.055316004902124405, -0.017145566642284393, 0.009692274034023285, -0.0416187085211277, 0.022976495325565338, -0.0015265779802575707, -0.0205339714884758, -3.49840811395552e-05, 0.0007142738904803991, -0.056609105318784714, -0.0512930229306221, 0.004639599937945604, 0.0005818207864649594, -0.0034632368478924036, 0.010698019526898861, 0.020174777135252953, -0.005540580488741398, -0.015744706615805626, -0.02101289853453636, -0.02286873757839203, -0.004133733920753002, -0.03000474162399769, -0.0037416128907352686, 0.019097192212939262, 0.009764112532138824, -0.009488729760050774, -0.004570754244923592, 0.00012085409252904356, -0.016259552910923958, -0.009913777001202106, -0.021204467862844467, 0.0023272831458598375, -0.05847691744565964, 0.05349608510732651, -0.032902248203754425, -0.012086906470358372, -0.0062260436825454235, -0.006501426454633474, 0.008051950484514236, -0.02579018846154213, -0.0002740731288213283, 0.014918558299541473, 0.01148226112127304, -0.015098156407475471, -0.006585238501429558, 0.05565125122666359, -0.01778014376759529, 0.019504278898239136, -0.04976045712828636, 0.03242332115769386, 0.03168098255991936, -0.003969103097915649, -0.03898461163043976, 0.021934831514954567, -0.011961188167333603, 0.009704247117042542, -0.010560328140854836, -1.3329495232028421e-05, -0.003822431666776538, 3.1032002880237997e-05, -0.028232714161276817, 0.004708445630967617, 0.00287056528031826, 0.020378319546580315, 0.03955932334065437, -0.023575153201818466, -0.0013050745474174619, 0.009602474980056286, -0.0030322030652314425, 0.03117811121046543, 0.007686769589781761, 0.00824950821697712, 0.006387681234627962, 0.004855116829276085, 0.011302663944661617, -0.02373080514371395, 0.00812378991395235, -0.0036099080462008715, -0.002020471030846238, -0.013266262598335743, 0.010320864617824554, -0.043031539767980576, 0.03594342991709709, -0.021276306360960007, 0.04899417608976364, -0.027298806235194206, -0.010308891534805298, 0.003576981835067272, -4.8962510845740326e-06, 0.022258106619119644, -0.015553136356174946, 0.016139820218086243, -0.027083290740847588, -0.0004460002528503537, 0.013110611587762833, 0.020366346463561058, 0.019264815375208855, 0.00018287132843397558, 0.02662830986082554, -0.005738137289881706, 0.006417614407837391, -0.008081884123384953, -0.009171441197395325, -0.0008568293415009975, 0.0018737997161224484, 0.005878821946680546, 0.02349134162068367, -0.017863955348730087, -0.045114871114492416, -0.040349554270505905, -0.022497570142149925, -0.010596247389912605, 0.010189159773290157, 0.03000474162399769, -0.007453292608261108, -0.0007947185658849776, -0.002842129208147526, -0.025814134627580643, -0.019432440400123596, -0.010237053036689758, -0.012895094230771065, -0.01350572519004345, 0.008057937026023865, 0.0030097533017396927, -0.0034782032016664743, -0.017804089933633804, 0.031034434214234352, -0.011907308362424374, 0.010009562596678734, 0.035751860588788986, -0.03682944178581238, 0.013062718324363232, 0.0035919484216719866, -0.009303146041929722, 0.020833300426602364, 0.0313936285674572, -0.008099843747913837, -0.016415202990174294, 0.0026340954937040806, -0.03829016909003258, 0.00906368251889944, -0.04937731474637985, -0.011422395706176758, -0.006806741934269667, -0.03187255561351776, 0.020976977422833443, -0.03168098255991936, -0.006127265281975269, -0.01423608884215355, -0.0203543733805418, 0.0012384738074615598, 0.01331415493041277, -0.002848115749657154, -0.007088111247867346, -0.002541303401812911, -0.049856241792440414, 0.008482984267175198, -0.02112065628170967, 0.017169512808322906, 0.011230825446546078, 0.00033094565151259303, -0.015002370811998844, 0.04109188914299011, 0.01958809234201908, -0.017133593559265137, -0.015349592082202435, -0.002948391018435359, 0.006585238501429558, 0.005705211311578751, -0.006399654783308506, 0.00116813147906214, -0.05167616158723831, 0.007986098527908325, -0.01708570122718811, -0.004675519187003374, -0.020138856023550034, 0.005636365618556738, 0.03441086411476135, 0.022042589262127876, 0.006549319252371788, -0.02140801213681698, -0.05282558500766754, -0.03536871820688248, -0.019121138378977776, -0.02818482182919979, 0.016654666513204575, -0.002167142229154706, -0.02394632250070572, 0.03168098255991936, -0.020270561799407005, -0.03761967271566391, 0.005908755119889975, 0.034817952662706375, 0.019671903923153877, 0.0008336313185282052, -0.01247603353112936, -0.02175523340702057, -0.02067764848470688, -0.027394592761993408, -0.03764361888170242, 0.008381213061511517, 0.0070402189157903194, -0.008117803372442722, 0.011673832312226295, -0.01621166057884693, 0.0005754600279033184, -0.013074691407382488, 0.003014243207871914, 0.004172646440565586, 0.06800755113363266, 0.006309855729341507, -0.01781606301665306, 0.00695041986182332, 1.2019931091344915e-05, -0.018079472705721855, -0.010225079953670502, 0.013721242547035217, 0.014319900423288345, 0.04439648240804672, 0.006920487154275179, 0.0014816786861047149, -0.03383615240454674, 0.0004665791057050228, -0.003298605792224407, 0.007207843009382486, 0.03546450287103653, -0.03721258416771889, -0.0014854202745482326, 0.011967174708843231, 0.023898430168628693, 0.017097674310207367, -0.04707846790552139, 0.006417614407837391, -0.017804089933633804, -0.028424283489584923, 0.015912331640720367, 0.00548969442024827, 0.022737033665180206, 0.011500220745801926, 0.0019755715038627386, 0.033955883234739304, -0.02456892654299736, 0.00038950188900344074, 0.010811764746904373, 0.002168638864532113, 0.009943710640072823, -0.017911849543452263, 0.0018962493631988764, 0.004328297916799784, -0.029693439602851868, 0.02993290312588215, -0.002719404175877571, -0.006423600949347019, -0.017289243638515472, 0.0056692915968596935, -0.007309614680707455, -0.04590509831905365, -0.04976045712828636, -0.015385512262582779, 0.0016403230838477612, -0.025383101776242256, 0.004630620125681162, -0.0023811624851077795, -0.004786271136254072, -0.031441520899534225, 0.0012152758426964283, -0.0038044718094170094, 0.004097814206033945, -0.01837880164384842, 0.004154686816036701, -0.022078508511185646, 0.005546567030251026, 0.0016537929186597466, -0.01663072034716606, 0.030196312814950943, 0.05158037692308426, -0.003912230487912893, 0.029310299083590508, -0.020929085090756416, 0.005854875780642033, -0.0004935187171213329, -0.006776809226721525, 0.03536871820688248, -0.008973884396255016, 0.002438034862279892, -0.003523102728649974, 0.011769616976380348, 0.04085242375731468, 6.870536890346557e-05, -0.00578603008762002, -0.004040942061692476, -0.025622565299272537, 0.04377387836575508, 0.04659954458475113, -0.0045887138694524765, 0.04446832090616226, 0.014559363946318626, -0.01921692304313183, 0.030052633956074715, 0.026700148358941078, -0.0016567861894145608, -0.016894130036234856, -0.030603399500250816, -0.010344810783863068, 0.010129294358193874, -0.02391040325164795, 0.021874966099858284, -0.024736551567912102, -0.013457832857966423, -0.02801719680428505, 0.030962593853473663, -0.02073751576244831, 0.005178391933441162, -0.014595283195376396, 0.0013200410176068544, 0.03862541913986206, -0.018989432603120804, 0.023742778226733208, -0.04765317961573601, 0.04401334002614021, 0.0198036078363657, -0.009776085615158081, 0.009458797052502632, 0.028879264369606972, 0.007124030962586403, 0.0107698580250144, 0.019851500168442726, 0.020797381177544594, -0.011865402571856976, -0.03644630312919617, -0.021096710115671158, -0.0003872569359373301, 0.0006342033739201725, -0.001424057874828577, -0.004406123422086239, 0.01082373782992363, 0.050861988216638565, 0.00010074292367789894, 0.04798842966556549, 0.010865643620491028, 0.0008605709299445152, -0.026891719549894333, 0.016546908766031265, -0.0009481246815994382, -0.027562215924263, 0.013026799075305462, -0.002420075237751007, -0.009315119124948978, -0.022006670013070107, -0.015181967988610268, 0.025838080793619156, 0.0017211418598890305, 0.010949456132948399, 0.005115533247590065, 0.006740889512002468, 0.040181927382946014, -0.018678130581974983, 0.014631202444434166, 0.007303628139197826, -0.02146787755191326, 0.024999959394335747, 0.016091927886009216, 0.0042205392383039, -0.012835228815674782, 0.011410422623157501, 0.03539266437292099, 0.007866366766393185, 0.0324951596558094, -0.021132629364728928, 0.015098156407475471, 0.035584233701229095, 0.018534453585743904, -0.02283281832933426, 0.015948250889778137, 0.013685323297977448, -0.011356542818248272, -0.004582727327942848, 0.04384571686387062, 0.026700148358941078, -0.048419464379549026, -0.0018274036701768637, 0.0023706858046352863, 0.015888385474681854, 0.020833300426602364, 0.005396902561187744, -0.009626421146094799, 0.023958295583724976, 0.03500952199101448, 0.01987544819712639, 0.004016995429992676, 0.012871148064732552, -0.006267949938774109, 0.0058309296146035194, 0.02325187809765339, -0.00979404617100954, 0.002924444619566202, 0.03977484256029129, 0.009201373904943466, 0.01799566112458706, 0.004630620125681162, 0.03999035805463791, 0.025311263278126717, 0.04506697878241539, 0.038816988468170166, -0.011440355330705643, -0.006591225042939186, -0.037116799503564835, -0.008794287219643593, 0.03038788214325905, -0.0015894371317699552, -0.011123066768050194, 0.025622565299272537, -0.00168971240054816, -0.00032626863685436547, 0.013769134879112244, 0.0013125577243044972, -0.018294990062713623, -0.0031639079097658396, -0.019372574985027313, -0.022150347009301186, -0.053400296717882156, 0.0020743501372635365, -0.03764361888170242, 0.019540198147296906, -0.0036697739269584417, -0.026604363694787025, 0.010099361650645733, -0.00287056528031826, 0.023024389520287514, 0.01045855600386858, 0.008937965147197247, 0.0478208065032959, 0.024006187915802002, 0.0290229432284832, 0.019683877006173134, 0.026460686698555946, -0.0203543733805418, -0.013984652236104012, 0.03086680918931961, 0.033740367740392685, 0.021216440945863724, 0.005004781298339367, -0.0489223375916481, 0.015636948868632317, 0.01732516475021839, -0.013481779024004936, -0.01872602477669716, -0.05651332065463066, -0.012739443220198154, -0.014188195578753948, -0.0037595725152641535, 0.002036934019997716, 0.010063441470265388, -0.010039495304226875, -0.03999035805463791, -0.012823255732655525, 0.025909921154379845, -0.037739403545856476, 0.010763871483504772, 0.022042589262127876, -0.021767206490039825, -0.004726405255496502, -0.0012309906305745244, -0.055699143558740616, -0.0174329224973917, 0.018055526539683342, -0.031728874891996384, 0.01312258467078209, -0.0013155511114746332, 0.021479850634932518, -0.012775362469255924, -0.0072317891754209995, -0.0018513500690460205, 0.007674796041101217, -0.01750476099550724, -0.015912331640720367, 0.021982723847031593, 0.049856241792440414, 0.036111053079366684, 0.016067981719970703, -0.0057980031706392765, 0.008453051559627056, -0.017552653327584267, -0.015924304723739624, 0.020941058173775673, 0.002972337184473872, 0.014942505396902561, 0.018043553456664085, -0.0008964904118329287, -0.030363935977220535, -0.02254546247422695, 0.010045481845736504, -0.006208084058016539, 0.013637430034577847, 0.010249026119709015, 0.016487043350934982, -0.0023078268859535456, 0.010380730964243412, 0.03455454111099243, 0.008231548592448235, 0.004271425306797028, 0.026771988719701767, -0.006531359162181616, 0.02555072493851185, 0.0016777392011135817, 0.00695041986182332, -0.005217304918915033, -0.017169512808322906, -0.029621601104736328, 0.02011490985751152, 0.007758608553558588, -0.00431632436811924, 0.004247478675097227, -0.0064295874908566475, -0.0016777392011135817, -0.016546908766031265, 0.00962043460458517, 0.01362545695155859, -0.03594342991709709, 0.03110627271234989, 0.0070821247063577175, 0.002262927358970046, 0.009584515355527401, 0.025694403797388077, -0.015469323843717575, -0.022713085636496544, 0.0034931697882711887, -0.040038250386714935, 0.015038290061056614, -0.017528707161545753, 0.0011179939610883594, -0.01002153567969799, 0.03455454111099243, 0.004699465818703175, -0.01882180944085121, -0.020402265712618828, -0.026748042553663254, -0.011679818853735924, 0.0024724577087908983, -0.004382176790386438, -0.010225079953670502, -0.01200908049941063, -0.022665193304419518, 0.008231548592448235, -0.0049209692515432835, 0.02986106276512146, 0.004639599937945604, 0.008824219927191734, -6.730225868523121e-05, -0.051628269255161285, -0.019755715504288673, 0.009470770135521889, 0.04887444153428078, 0.012978906743228436, -0.026676202192902565, 0.012499979697167873, 0.04554590582847595, 0.018737997859716415, 0.01615179516375065, -0.004172646440565586, 0.014020571485161781, 0.0419779010117054, -0.022329945117235184, 0.03560817986726761, 0.014188195578753948, 0.01958809234201908, -0.012272490188479424, -0.003523102728649974, 0.02777773328125477, 0.001349225640296936, 0.01931270956993103, -0.003678753739222884, 0.008776326663792133, -0.022533489391207695, -0.011464301496744156, -0.04322311282157898, -0.009231307543814182, -0.029286351054906845, -0.010871630162000656, 0.004651573020964861, -0.017145566642284393, 0.010817751288414001, 0.019552171230316162, 0.01607995480298996, -0.010871630162000656, 0.004448029212653637, 0.01799566112458706, -0.03400377556681633, -0.02456892654299736, 0.0031249949242919683, 0.022844791412353516, -0.00138739007525146, -0.0032417334150522947, 0.004442042671144009, 0.02856796234846115, 0.0017929808236658573, 0.007914259098470211, 0.012679577805101871, -0.030818916857242584, -0.0011673831613734365, 0.027586163952946663, -0.028615854680538177, -0.0057770502753555775, 0.0025757262483239174, -0.012236570939421654, -0.017145566642284393, 0.007644863333553076, 0.013840974308550358, 0.025838080793619156, -0.017373057082295418, -0.03709285333752632, -0.005839909426867962, -0.009883844293653965, -0.026221223175525665, -0.03515319898724556, 0.00259667937643826, -0.01843866892158985, -0.011757643893361092, -0.01635533757507801, 0.0022030617110431194, -0.0028570955619215965, 0.010518422350287437, 0.013362047262489796, -0.011673832312226295, -0.0007819971069693565, -0.00815970916301012, 0.024664711207151413, -0.0021252359729260206, -0.03132179006934166, 0.016271525993943214, -0.010332837700843811, -0.007573024369776249, -0.00457674078643322, -0.017205432057380676, 0.01726529747247696, 0.022737033665180206, -0.0027792700566351414, -0.02777773328125477, -0.022210214287042618, 0.030196312814950943, 0.009303146041929722, 0.0007790037780068815, -0.007812487427145243, -0.005118526518344879, 0.010075414553284645, -0.017097674310207367, 0.014140303246676922, 0.0032626863103359938, -0.01635533757507801, -0.037116799503564835, -0.012086906470358372, 0.004298364743590355, -0.01176363043487072, 0.0271072369068861, -0.014978424645960331, -0.008848166093230247, -0.00623801676556468, 0.03364458307623863, -0.01649901643395424, 0.019791634753346443, 0.01931270956993103, -0.0029049881268292665, -0.03086680918931961, 0.012499979697167873, 0.02818482182919979, 0.011111093685030937, -0.025119692087173462, -0.03041182830929756, 0.03069918416440487, -0.0229046568274498, 0.01952822506427765, 0.005983587354421616, 0.025622565299272537, -0.00246647116728127, 0.033213548362255096, 0.011901321820914745, -0.03999035805463791, 0.009201373904943466, -0.015062236227095127, 0.022114427760243416, 0.0034871832467615604, -0.015397485345602036, 0.028448231518268585, 0.005399895831942558, 0.022150347009301186, 0.01153614092618227, 0.019097192212939262, -0.01232038252055645, -0.00669898372143507, 0.012452087365090847, 0.0337643139064312, 0.004193599801510572, 0.030124472454190254, 0.013182450085878372, -0.026005705818533897, -0.020198723301291466, -0.018869701772928238, 0.02432946301996708, -0.03491373732686043, -0.00809385720640421, 0.05536389723420143, 0.012134798802435398, 0.0003036318812519312, 0.014451605267822742, 0.005636365618556738, 0.004855116829276085, 0.0033913978841155767, -0.0065792519599199295, -0.0010244535515084863, -0.023706858977675438, 0.03417140245437622, -0.0019216923974454403, -0.004917975980788469, 0.006067399401217699, -0.013876893557608128, 0.008063923567533493, 0.034889791160821915, 0.013565591536462307, 0.02933424524962902, 0.013290208764374256, 0.013457832857966423, -0.021587610244750977, -0.013649403117597103, -0.035129252821207047, 0.0017391016008332372, 0.005971614271402359, -0.03275856748223305, 0.02161155641078949, 0.01757659949362278, 0.04899417608976364, -0.022892683744430542, -0.019432440400123596, 0.03268672898411751, 0.018594319000840187, -0.0040858411230146885, -0.020138856023550034, 0.011218851432204247, -0.008279440924525261, -0.016271525993943214, -0.017456868663430214, 0.02175523340702057, 0.005657318513840437, -0.01390083972364664, 0.01390083972364664, 0.026508579030632973, -0.04013403505086899, 0.017145566642284393, -0.01604403555393219, -0.021144602447748184, 0.013876893557608128, 0.031752824783325195, 0.0008066917071118951, -0.00396012281998992, 0.0013888867106288671, -0.01061420701444149, -0.014080437831580639, 0.01089557632803917, -0.052634015679359436, 0.0065792519599199295, -0.0049628750421106815, -0.002159658819437027, 0.0047713047824800014, 0.036589980125427246, -0.012242557480931282, 0.0015108633087947965, 0.027753787115216255, 0.020306481048464775, -0.007046205457299948, 0.037499941885471344, 0.021096710115671158, 0.01164389867335558, -0.037188638001680374, -0.01830696314573288, -0.0011082657147198915, 0.03637446463108063, -0.008542850613594055, 0.011266744695603848, 0.027921412140130997, 0.0011756147723644972, 0.003747599432244897, 0.03829016909003258, 0.0037895054556429386, 0.0064834668301045895, -0.01673847995698452, 0.01882180944085121, -0.01903732679784298, -0.030914701521396637, -0.017720278352499008, -0.032519105821847916, 0.018737997859716415, 0.012044999748468399, -0.03378826007246971, -0.04396544769406319, -0.014978424645960331, -0.03338117152452469, -0.01094346959143877, 0.005360982846468687, -0.009267226792871952, -0.021096710115671158, -0.025311263278126717, -0.00859672948718071, -0.027226967737078667, -0.021455904468894005, -0.0027553236577659845, 0.0026505584828555584, -0.03752388805150986, 0.016977941617369652, 0.009482743218541145, -0.02164747565984726, -0.017313191667199135, -0.019647957757115364, -0.03984668105840683, -0.00995568372309208, -0.019408494234085083, 0.041570816189050674, 0.028759533539414406, 0.016056008636951447, 0.02341950312256813, -0.013876893557608128, -0.02429354377090931, -0.02502390742301941, 0.010662100277841091, -0.004974848590791225, -0.0162475798279047, 0.011554100550711155, -0.01882180944085121, -0.001296843052841723, -0.00911756232380867, -0.0003932435065507889, -0.03215990960597992, 0.0035051428712904453, -0.0033375185448676348, 0.02825666032731533, 0.025311263278126717, 0.0019231890328228474, -0.013757161796092987, -0.022018643096089363, 0.019228896126151085, 0.019743742421269417, -0.008536864072084427, 0.005208325106650591, -0.02252151630818844, 0.020055044442415237, -0.0186182651668787, 0.04228920489549637, 0.02039029262959957, 0.03124994970858097, -0.001144185196608305, 0.011560087092220783, 0.013362047262489796, -0.004891036078333855, -0.042648401111364365, 0.0034811964724212885, 0.03141757473349571, 0.015672868117690086, 0.0036278679035604, 0.008902044966816902, 0.011164972558617592, 0.020821327343583107, 0.04346257448196411, 0.024377355352044106, 0.025143638253211975, -0.0396072156727314, 0.016894130036234856, -0.02662830986082554, -0.05282558500766754, -0.003780525643378496, 0.026197277009487152, 0.003349491860717535, -0.012206637300550938, 0.010105348192155361, 0.055076539516448975, 0.026221223175525665, -0.010841697454452515, -0.004861103370785713, -0.008782313205301762, 0.012086906470358372, -0.018989432603120804, -0.018666157498955727, -0.008650609292089939, -0.02516758441925049, -0.020438184961676598, 0.02933424524962902, -0.0009975139982998371, 0.04066085442900658, -0.06767230480909348, -0.02588597498834133, 0.023814616724848747, -0.01663072034716606, -0.008033990859985352, 0.0270114503800869, -0.0392480231821537, -0.023467395454645157, 0.0011980644194409251, -0.00675884960219264, 0.010907549411058426, 0.003780525643378496, 0.0001969959121197462, 0.02031845413148403, -0.0014779370976611972, -0.023012416437268257, 0.010464542545378208, 0.028304552659392357, 0.03656603395938873, -0.010913535952568054, -0.015217887237668037, 0.04628824070096016, 0.017301218584179878, -0.004780284594744444, -0.018642211332917213, 0.0560343936085701, -0.0033015990629792213, -0.0014644672628492117, 0.009494716301560402, 0.004005022346973419, 0.01207493245601654, 0.01997123286128044, -0.03378826007246971, 0.027610110118985176, -0.0029124715365469456, 0.03124994970858097, -0.010171200148761272, -0.007668809499591589, -0.012499979697167873, -0.008117803372442722, -0.023479368537664413, 0.04044533893465996, 0.005157439038157463, -0.0023811624851077795, -0.005983587354421616, -0.02480839006602764, 0.04274418577551842, -0.003927196841686964, -0.03292619436979294, 0.015110129490494728, -0.03929591551423073, 0.023275824263691902, -0.022389810532331467, -0.003175880992785096, 0.00228837039321661, 0.021695367991924286], [0.02982800453901291, 0.0026177300605922937, 0.050158992409706116, -0.012689580209553242, -0.0020299293100833893, 0.0377345010638237, -0.015294344164431095, 0.03605177626013756, 0.038103315979242325, 0.05735090747475624, -0.03167208656668663, -0.016250960528850555, 0.02842189371585846, 0.017737749963998795, -0.050481706857681274, 0.01500620599836111, -0.009715999476611614, 0.016516046598553658, 0.003397142281755805, 0.00026760780019685626, 0.02593238465487957, 0.036858562380075455, -0.013173650950193405, -0.03483007475733757, 0.0020573025103658438, -0.021967610344290733, 0.03674330562353134, -0.006321738939732313, 0.05550682544708252, -0.04831491410732269, 0.08330634236335754, -0.021414386108517647, -0.013703824020922184, 0.005575462710112333, 0.005618683062493801, -0.016516046598553658, 0.006292925216257572, 0.011243129149079323, 0.04905254393815994, 0.010626514442265034, -0.024249659851193428, 0.045848455280065536, 0.013945859856903553, -0.03538329899311066, -0.002936122240498662, 0.031464625149965286, 0.032040901482105255, -0.051081035286188126, -0.020330989733338356, 0.052556298673152924, 0.012562799267470837, 0.012113304808735847, -0.022140493616461754, 0.007428187411278486, -0.014522135257720947, 0.018751995638012886, -0.028398841619491577, 0.020342513918876648, 0.020503871142864227, -0.01862521469593048, -0.015052308328449726, -0.03234056383371353, -0.0295744426548481, 0.04863762855529785, 0.01088583841919899, 0.0322483591735363, 0.010188545100390911, 0.038679592311382294, -0.011836692690849304, 0.00931260734796524, -0.009583456441760063, 0.026646966114640236, 0.022082865238189697, -0.07556120306253433, -0.02874460630118847, 0.019155386835336685, 0.006759708281606436, -0.02876765839755535, 0.03466871753334999, 0.03141852468252182, -0.010436343960464, 0.037019919604063034, -0.03999349847435951, 0.05421597138047218, 0.01134685892611742, -0.00567054795101285, -0.0715964287519455, -0.026693066582083702, -0.006753945257514715, -0.011652284301817417, -0.056567173451185226, -0.0330551452934742, -0.016596725210547447, 0.03367752209305763, 0.027200190350413322, -0.0011143721640110016, 0.04596370831131935, 0.02086116187274456, -0.07772799581289291, 0.048729829490184784, 0.025240853428840637, -0.03247886896133423, 0.006367840804159641, 0.03381582722067833, 0.010943465866148472, -0.027522902935743332, -0.025886282324790955, 0.06809267401695251, 0.018970979377627373, 6.109417881816626e-05, 0.0035988385789096355, -0.03443820774555206, -0.01524824183434248, 0.06546486169099808, -0.02309711091220379, -0.010096341371536255, -0.03598262369632721, -0.0213452335447073, 0.016008924692869186, -0.009854305535554886, -0.036789409816265106, -0.050066787749528885, 0.05002068728208542, -0.08722501248121262, -0.01928216777741909, 0.0012353899655863643, -0.008880401030182838, 0.03888705000281334, -0.07164253294467926, 0.00788920745253563, 0.039762988686561584, -0.03480702266097069, 0.0644967183470726, -0.0126780541613698, -0.011496690101921558, 0.029113423079252243, 0.014556711539626122, -0.008050564676523209, -0.013323483057320118, -0.03240971639752388, 0.023742537945508957, -0.01746113784611225, 0.0003745788708329201, -0.015755364671349525, -0.06380519270896912, 0.050573911517858505, 0.017818428575992584, 0.06126957759261131, -0.02966664731502533, 0.006131567992269993, -0.03128021955490112, 0.006102754268795252, 0.02959749475121498, -0.013150599785149097, 0.023327620700001717, -0.004699524026364088, 0.023373723030090332, 0.05126544088125229, -0.011467876844108105, -0.010574650019407272, -0.008603788912296295, -0.03280158340930939, -0.027315445244312286, -0.02600153721868992, 0.043750811368227005, -0.0005697921151295304, 0.00044589294702745974, -0.005682073533535004, -0.05154205486178398, -0.007912258617579937, -0.014775696210563183, -0.013496365398168564, -0.02807612717151642, -0.014476032927632332, 0.00794107187539339, -0.020573025569319725, 0.011150925420224667, -0.015121460892260075, -0.0154557004570961, 0.002158150542527437, -0.005627327132970095, -0.008217683993279934, -0.05310952290892601, -0.007019031792879105, -0.06634080410003662, 0.045087773352861404, 0.0033452776260674, 0.0008139887358993292, -0.00029408044065348804, -0.020803535357117653, 0.0032357852905988693, -0.010246173478662968, -0.013323483057320118, 0.02320083975791931, -0.051910869777202606, 0.011312282644212246, -0.018060464411973953, -0.005803091451525688, 0.011271943338215351, 0.01785300485789776, 0.028629351407289505, -0.02242862991988659, 0.05343223735690117, 0.01275873277336359, -0.010845499113202095, -0.006926828064024448, 0.0329168401658535, 0.030219871550798416, 0.01993912272155285, -0.01163499616086483, 0.027200190350413322, -0.001983827445656061, -0.04739287123084068, 0.047162361443042755, -0.05117323622107506, 0.051726460456848145, 0.010274986736476421, -0.0063390270806849, -0.01854453608393669, 0.08759383112192154, -0.01561705768108368, -0.029044270515441895, 0.0010005577933043242, -0.012193983420729637, -0.015490277670323849, -0.01894792914390564, -0.004126130603253841, 0.002707052743062377, 0.013185176998376846, -0.04677049443125725, 0.0018152669072151184, 0.025217803195118904, -0.02726934291422367, -0.010926177725195885, 0.02344287559390068, 0.03266327828168869, 0.017299780622124672, -0.0714581236243248, 0.022878125309944153, -0.029735799878835678, -0.0167926587164402, -0.018071990460157394, -0.029874106869101524, 0.04596370831131935, 0.0247567817568779, -0.008972604759037495, -0.024964241310954094, -0.018994031473994255, 0.05292511358857155, -0.014902476221323013, 0.03264022618532181, -0.04082333669066429, 0.05495360493659973, -0.04312843456864357, 0.024572374299168587, 0.030726993456482887, 0.012136355973780155, -0.01918996497988701, 0.033792778849601746, -0.030703943222761154, -0.0024304406251758337, -0.0019564542453736067, 0.01292008999735117, 0.009560405276715755, -0.042667414993047714, -0.0109722800552845, 0.03715822473168373, -0.001525688567198813, -0.00977362785488367, 0.02261303924024105, -0.04868372902274132, 0.01969708688557148, -0.011623471044003963, 0.00019017081649508327, -0.023074058815836906, 0.013173650950193405, 0.012931615114212036, -0.012343814596533775, -0.008678704500198364, 0.009623795747756958, -0.0453643836081028, 0.008684467524290085, -0.014072640798985958, -0.0202733613550663, -0.0007160219247452915, 0.003555617993697524, 0.02044624462723732, 0.0210109930485487, -0.03058868832886219, 0.013553992845118046, 0.06265264004468918, -0.0005960846319794655, 0.0066732666455209255, -0.036028724163770676, 0.03259412571787834, 0.01247059553861618, -0.03847213089466095, -0.020676754415035248, -0.0147180687636137, -0.006022075656801462, -0.015524853952229023, 0.04299012944102287, 0.03496837988495827, -0.03605177626013756, -0.02376559004187584, 0.03891010209918022, 0.02941308543086052, 0.04988238215446472, 0.002202811883762479, -0.00802175048738718, -0.05094272643327713, 0.07837342470884323, 0.0021235740277916193, -0.03197174891829491, -0.03192564472556114, -0.0027243411168456078, -0.028030024841427803, 0.01413026824593544, 0.02004285156726837, -0.00923192873597145, 0.04561794549226761, -0.0007419543107971549, 0.056474968791007996, 0.0010675498051568866, 0.017391985282301903, -0.007209202740341425, 0.03434600308537483, 0.04513387382030487, -0.04603286460042, -0.05476919561624527, -0.03234056383371353, -0.030773095786571503, 0.038011111319065094, 0.012666529044508934, -0.005575462710112333, -0.015179088339209557, 0.008494296111166477, -0.003789009526371956, 0.015375022776424885, 0.02020420879125595, 0.06740114837884903, -0.038034163415431976, -0.016147231683135033, 0.007128524128347635, -0.0042298599146306515, 0.0034490071702748537, 0.026554761454463005, 0.05928719416260719, 0.0019161150557920337, 0.029781902208924294, 0.026716118678450584, 0.0007974207983352244, -0.02918257564306259, 0.011836692690849304, -0.05735090747475624, -0.036789409816265106, 0.02468762919306755, 0.009364471770823002, -0.029851054772734642, 0.005981736350804567, 0.015974348410964012, 0.009508540853857994, 0.02998936176300049, 0.0426904670894146, 0.015570956282317638, -0.010309563018381596, -0.009589219465851784, 0.013922808691859245, 0.001712978002615273, -0.02434186451137066, 0.0465630367398262, 0.006292925216257572, 0.023051008582115173, -0.024042202159762383, -0.025863230228424072, -0.02344287559390068, -0.014983154833316803, 0.029021218419075012, -0.006921065039932728, -0.02261303924024105, -0.015029257163405418, 0.022566936910152435, -0.003771721152588725, 0.05251019448041916, 0.02842189371585846, 0.02683137357234955, -0.026393404230475426, -0.026485608890652657, -0.0014514931244775653, 0.010753295384347439, -0.030058514326810837, 0.03489922732114792, -0.014326201751828194, 0.02360423281788826, 0.0008773789741098881, -0.005849193315953016, 0.05960990488529205, 0.05984041839838028, -0.005549530033022165, -0.06283704936504364, 0.009439387358725071, -0.03798806294798851, 0.012827886268496513, -0.032294463366270065, -0.005788684356957674, -0.02111472375690937, 0.014026538468897343, -0.023004906252026558, 0.005866481456905603, 0.007099710404872894, 0.012493646703660488, 0.01719605177640915, 0.023569656535983086, 0.0075203911401331425, 0.046009812504053116, 0.02835273928940296, 0.009024469181895256, 0.0521874837577343, 0.010004137642681599, -0.035360246896743774, 0.026992730796337128, 0.0093010812997818, -0.01961640827357769, -0.021898457780480385, -0.031026657670736313, -0.012044151313602924, 0.002554339822381735, -0.019236065447330475, -0.00529596908017993, -0.07307169586420059, 0.0017245035851374269, 0.02443406917154789, 0.019017081707715988, 0.0026234928518533707, -0.04822270944714546, -0.009629558771848679, -0.0020371328573673964, -0.025886282324790955, -0.011064483784139156, -0.0418836809694767, 0.0049041020683944225, 0.0036449406761676073, 0.032110054045915604, 0.03284768760204315, -0.019259117543697357, 0.02717713825404644, 0.003420193213969469, 0.027292393147945404, -0.008073615841567516, 0.007226490881294012, -0.03024292178452015, 0.006356315687298775, -0.05246409401297569, -0.0027906126342713833, -0.04573319852352142, 0.02876765839755535, -0.02685442380607128, -0.0604858435690403, 0.058226846158504486, -0.008252261206507683, -0.007860394194722176, 0.04163011908531189, 0.037941958755254745, 0.023396773263812065, 0.022958803921937943, 0.04031621292233467, 0.0030600212048739195, -0.012897038832306862, 0.025286955758929253, -0.05642886832356453, 0.014095691032707691, -0.003647821955382824, -0.02724629081785679, -0.01516756322234869, 0.07662154734134674, 0.005817498080432415, -0.02103404514491558, -0.025033393874764442, 0.01059193816035986, -0.010620752349495888, 0.044073525816202164, 0.03512973710894585, -0.039348069578409195, -0.01580146513879299, 0.031464625149965286, -0.017910633236169815, 0.06260653585195541, 0.0023123042192310095, 0.009162775240838528, -0.03863348811864853, -0.04859152436256409, -0.005241223145276308, 0.007877682335674763, -0.009410574100911617, 0.0019247591262683272, -0.023973047733306885, -0.046493884176015854, 0.019178438931703568, 0.04031621292233467, -0.015570956282317638, 0.05748921260237694, -0.03001241199672222, 0.017576392740011215, 0.0006659580394625664, 0.014072640798985958, -0.020469294860959053, 0.005174951162189245, -0.05463089048862457, -0.022244222462177277, -0.013553992845118046, -0.05882617086172104, -0.01142753753811121, 0.03247886896133423, 0.00930684432387352, -0.017345882952213287, -0.009191589429974556, 0.006575299892574549, -0.011191264726221561, -0.02876765839755535, -0.007070896681398153, 0.006200721021741629, -0.02609374187886715, -0.050389502197504044, 0.0031435813289135695, -0.016181807965040207, 0.008338701911270618, 0.011836692690849304, -0.007629883475601673, -0.012309238314628601, 0.010280749760568142, -0.009779389947652817, -0.03483007475733757, -0.07076659798622131, -0.0009681423543952405, 0.009433625265955925, 0.028237484395503998, 0.0040973168797791, 0.021160826086997986, 0.02018115669488907, -0.05642886832356453, 0.027545955032110214, -0.0007801325409673154, 0.0031061233021318913, -0.0025586618576198816, -0.003454769728705287, 0.006390891969203949, 0.025471363216638565, 0.02501034364104271, 0.022555410861968994, -0.001989590236917138, -0.00802175048738718, 0.03584431856870651, -0.010551598854362965, -0.014015012420713902, 0.00047146514407359064, 0.0005640293238684535, 0.028398841619491577, -0.017334358766674995, 0.01059193816035986, -0.007474289275705814, 0.005203764885663986, 0.012193983420729637, 0.016746558248996735, 0.0027387479785829782, 0.018659790977835655, -0.003117648884654045, -0.006661741528660059, -0.0108051598072052, -0.021541167050600052, -0.007422424387186766, 0.005906820762902498, 0.02867545373737812, 0.019385898485779762, -0.04955966770648956, 0.042436905205249786, -0.001011362997815013, -0.008580737747251987, -0.008574974723160267, 0.005633090157061815, -0.0014025097480043769, 0.0038812134880572557, 0.050066787749528885, -0.009497015736997128, -0.00877090822905302, -0.014429930597543716, 0.020722856745123863, -0.00843090657144785, -0.04983627796173096, -0.03443820774555206, 0.026047639548778534, -7.00084319760208e-06, -0.01006176508963108, 0.018337076529860497, 0.010649565607309341, -0.005221053492277861, 0.058226846158504486, -0.007307169493287802, 0.009329895488917828, -0.03648974746465683, 0.030104616656899452, 0.0023310331162065268, -0.018994031473994255, -0.020227259024977684, 0.0002636458957567811, -0.06200721114873886, -0.03616703301668167, 0.020169632509350777, 0.004353759344667196, -0.042413853108882904, 0.028721556067466736, 0.0025572211015969515, 0.006552249193191528, 0.022970329970121384, -0.02998936176300049, -0.06159229204058647, 0.018717419356107712, -0.029620544984936714, -0.025240853428840637, -0.017472663894295692, 0.006782758980989456, -0.01417636964470148, -0.008834298700094223, 0.001068990444764495, -0.012781783938407898, -0.0030917164403945208, -0.03648974746465683, -0.019408948719501495, -0.06200721114873886, 0.05393935739994049, -0.02178320288658142, -0.0020962010603398085, 0.033861931413412094, 0.012528222985565662, 0.013438737951219082, -0.013173650950193405, -0.016746558248996735, 0.026693066582083702, -0.007370559964329004, -0.003915790002793074, 0.013404160737991333, 0.05836515128612518, -0.011220077984035015, 0.004215453285723925, -0.02102251909673214, -0.00513461185619235, 0.01621638424694538, 0.007099710404872894, 0.018175719305872917, -0.016481470316648483, -0.013865181244909763, 4.81730057799723e-05, -0.009433625265955925, 0.010701430030167103, -0.04564099758863449, 0.027776464819908142, -0.01695401594042778, -0.009808204136788845, 0.03185649216175079, 0.0253561083227396, 0.015294344164431095, -0.04232165217399597, 0.012747207656502724, -0.023811690509319305, 0.015098410658538342, 0.012747207656502724, -0.008165819570422173, 0.02235947735607624, 0.009116673842072487, -0.03941722214221954, -0.001263483427464962, -0.012608901597559452, 1.3450173355522566e-05, -0.00938752293586731, -0.03658194839954376, -0.024457119405269623, -0.03496837988495827, -0.0390714593231678, 0.03600567579269409, -0.041422661393880844, 0.05301731824874878, -0.05841125547885895, -0.0294361375272274, 0.005558174103498459, -0.01050549652427435, -0.004322064109146595, -0.012943141162395477, 0.024733731523156166, -0.025955434888601303, 0.008211921900510788, 0.011813641525804996, -0.01312754862010479, 0.04743897542357445, 0.007929546758532524, -0.0005787964328192174, 0.01217093225568533, 0.02501034364104271, 0.011917371302843094, -0.013542466796934605, -0.019800815731287003, -0.06560316681861877, 0.023834742605686188, 0.021840829402208328, -0.02959749475121498, -0.04031621292233467, -0.015109935775399208, 0.008886163122951984, -0.02477983385324478, 0.013726875185966492, 0.029689697548747063, -0.008113955147564411, -0.013899757526814938, -0.012436019256711006, -0.03512973710894585, -0.02710798569023609, -0.00788920745253563, 0.0010264902375638485, 0.010257698595523834, -0.00992922205477953, -0.020423192530870438, -0.013162125833332539, -0.038011111319065094, 0.0446959063410759, -0.020319463685154915, -0.0020256072748452425, 0.029228677973151207, -0.03333175927400589, -0.0035095158964395523, 0.003005275269970298, -0.028214434161782265, 0.008125480264425278, 0.0536627471446991, -0.024987293407320976, 0.0034807021729648113, 0.01703469455242157, -0.04448844492435455, 0.020238785073161125, -0.018832674250006676, -0.023973047733306885, -0.01005023904144764, -0.021564217284321785, 0.01695401594042778, -0.059471599757671356, -0.010465157218277454, -0.023004906252026558, 0.006362078245729208, 2.336615762033034e-05, 0.04273656755685806, 0.0037573142908513546, -0.019996749237179756, 0.040846385061740875, -0.04743897542357445, 0.0074051362462341785, -0.01561705768108368, -0.015156038105487823, -0.0035757876466959715, 0.011300756596028805, -0.0029562918934971094, 0.036259233951568604, -0.02775341272354126, 0.008344464935362339, 0.005661903880536556, 0.0030744282994419336, -0.004927152767777443, 0.03323955461382866, -0.010776346549391747, -0.004664947744458914, -0.03658194839954376, 0.004512234590947628, 0.03243276849389076, -0.03275548294186592, -0.012343814596533775, 0.003238666569814086, 0.04421183466911316, 8.770188287599012e-05, 0.021956084296107292, 0.008010225370526314, -0.03501448035240173, -0.01769164949655533, -0.01479874737560749, -0.04211419075727463, 0.01968556083738804, -0.01487942598760128, -0.009399048052728176, 0.005437156651169062, 0.007572256028652191, -0.03512973710894585, 0.02003132551908493, 0.0018253517337143421, 0.01769164949655533, 0.02242862991988659, -0.024964241310954094, -0.043750811368227005, 0.006523435469716787, -0.03116496279835701, -0.01255127415060997, -0.0020011155866086483, 0.00502511952072382, -0.026577811688184738, -0.026808321475982666, 0.008425143547356129, -0.019224541261792183, -0.02759205736219883, -0.01005600206553936, 0.017737749963998795, 0.08183107525110245, -0.03197174891829491, -0.011127874255180359, -0.014937053434550762, -0.018878774717450142, -0.006938353180885315, -0.052740707993507385, 0.028191382065415382, -0.018048938363790512, 0.044834211468696594, -0.00641970569267869, 0.000467863428639248, -0.008822773583233356, 0.009381759911775589, 0.0010718718403950334, -0.0001305623445659876, 0.033032093197107315, -0.024802884086966515, 0.0021826422307640314, 0.025655772536993027, 0.020918790251016617, -0.0028612064197659492, -0.015847567468881607, -0.010851262137293816, 0.019570305943489075, -0.020884213969111443, 0.011392960324883461, -0.004788846708834171, 0.03879484534263611, 0.006805810146033764, -0.009756338782608509, -0.0019031488336622715, -0.027868669480085373, -0.016942491754889488, 0.018982505425810814, -0.0074051362462341785, 0.027453750371932983, -0.024295762181282043, -0.020815059542655945, -0.012205508537590504, -0.01943199895322323, 0.0066905552521348, 0.020642178133130074, 0.016181807965040207, -0.01629706285893917, 0.028652403503656387, -0.00835022795945406, -0.03600567579269409, -0.01702316850423813, -0.04008570313453674, 0.011289231479167938, 0.003794772084802389, 0.014406880363821983, -0.016308588907122612, 0.01945505104959011, -0.013530941680073738, -0.0309114009141922, -0.022705242037773132, 0.005595632363110781, -0.03296294063329697, 0.018129616975784302, -0.014741119928658009, 0.028122229501605034, -0.0003378413384780288, 0.01043058093637228, 0.012136355973780155, 0.019259117543697357, -0.012966192327439785, -0.002802138216793537, 0.0037457887083292007, -0.008079377934336662, -0.02418050728738308, -0.02667001634836197, 0.028790708631277084, 0.014867899939417839, -0.006776996422559023, -0.014522135257720947, 0.026877475902438164, 0.01109906006604433, -0.005442919209599495, -0.004771558567881584, -0.010522785596549511, -0.032455820590257645, 0.058042436838150024, 0.0711815133690834, 0.017887583002448082, 0.028444943949580193, 0.00976210180670023, 0.000520808738656342, 0.010257698595523834, 0.022128967568278313, -0.015755364671349525, -0.0009458116837777197, -0.03895620256662369, -0.019904544577002525, 0.034945327788591385, -0.030104616656899452, -0.0102692237123847, -0.0005017195944674313, 0.0023526435252279043, -0.0054486822336912155, -0.007722087670117617, -0.020907264202833176, -0.006759708281606436, 0.018970979377627373, -0.0025658654049038887, 0.04248300939798355, -0.019339796155691147, -0.016020450741052628, -0.028444943949580193, 0.014360778033733368, 0.018579112365841866, -0.03393108397722244, 0.01785300485789776, 0.05075832083821297, -0.016723506152629852, 0.035867366939783096, 0.014683492481708527, 0.0017158593982458115, -0.003829348599538207, -0.028882913291454315, 0.0007383525953628123, -0.025978485122323036, 0.008015988394618034, -0.00826378632336855, -0.015570956282317638, -0.006730894558131695, 0.050573911517858505, 0.017507240176200867, 0.051818665117025375, 0.024203557521104813, 0.014625865034759045, -0.019466577097773552, 0.00013920647324994206, 0.0010250494815409184, -0.017426561564207077, 0.01570926234126091, 0.04061587527394295, -0.0058088540099561214, -0.032040901482105255, 0.002923155901953578, 0.01387670636177063, -0.012251610867679119, 0.013369584456086159, 0.0077624269761145115, 0.020918790251016617, 0.026992730796337128, -0.0028554436285048723, 0.00446901423856616, 0.0055639371275901794, -0.023166263476014137, 0.01777232624590397, 0.02178320288658142, -0.014937053434550762, 0.019005555659532547, 0.007163100875914097, 0.053570542484521866, 0.026047639548778534, 0.016977068036794662, -0.01696554198861122, 0.04610201716423035, 0.05269460380077362, -0.020884213969111443, 0.012977717444300652, 0.024802884086966515, 0.02004285156726837, -0.025724925100803375, -0.016481470316648483, 0.06638690084218979, 0.024872038513422012, -0.0037256190553307533, -0.0066732666455209255, 0.012666529044508934, -0.018579112365841866, 0.01366924773901701, 0.0070305573754012585, 0.010557361878454685, 0.019397422671318054, 0.017299780622124672, 0.021875405684113503, 0.02103404514491558, 0.026208996772766113, -0.0035152786877006292, -0.00027715234318748116, -0.009191589429974556, 0.020872687920928, 0.02210591733455658, 0.018129616975784302, 0.0157899409532547, 0.009733288548886776, -0.042252495884895325, 0.02501034364104271, 0.03365446999669075, 0.012585850432515144, 0.03761924430727959, -0.01678113453090191, 0.041607070714235306, -0.028214434161782265, -0.004296131432056427, 0.008961079642176628, 0.005278680939227343, 0.01895945332944393, 0.03250192105770111, 0.03542939946055412, -0.014729593880474567, 0.010436343960464, 0.009514303877949715, -0.016089603304862976, -0.003777483943849802, -0.02667001634836197, -0.009606507606804371, -0.04245995730161667, 0.006771233398467302, -0.04197588562965393, 0.019627932459115982, 0.016573674976825714, -0.030680891126394272, 0.018302500247955322, 0.02011200413107872, 0.03381582722067833, 0.04252910986542702, 0.020492346957325935, 0.02162184566259384, 0.012297713197767735, 0.016008924692869186, 0.02335067093372345, 0.013646196573972702, -0.009358709678053856, -0.010914652608335018, 0.026946628466248512, 0.007410899270325899, 0.004725456703454256, 0.012493646703660488, -0.026577811688184738, -0.013738401234149933, 0.023880844935774803, -0.029943259432911873, -0.02934393286705017, -0.03964773193001747, 0.01217093225568533, -0.02584017999470234, -0.01396891102194786, 0.016008924692869186, 0.02593238465487957, 0.00708818482235074, 0.007756664417684078, -0.010344140231609344, 0.03637449070811272, -0.050666116178035736, -0.03040427900850773, -0.00492427172139287, -0.021840829402208328, -0.027545955032110214, -0.0026854423340409994, -0.021091671660542488, -0.01421094685792923, -0.012493646703660488, -0.013358059339225292, -0.007635646499693394, -0.002673916984349489, 0.01710384711623192, -0.02551746554672718, -0.03533719480037689, 0.0030427330639213324, 0.024618476629257202, -0.005987499374896288, -0.0013614501804113388, 0.010914652608335018, 0.022163543850183487, 0.03141852468252182, 0.03448430821299553, -0.003771721152588725, -0.02427271194756031, -0.04303623363375664, -0.007750901393592358, 0.02701578103005886, 0.01995064690709114, 0.02593238465487957, 0.03148767724633217, 0.009790915995836258, -0.025079496204853058, -0.021794728934764862, -0.012747207656502724, 0.0031896831933408976, -0.003434600308537483, -0.0063390270806849, -0.008972604759037495, 0.021806253120303154, 0.02724629081785679, 0.013450263068079948, 0.009883119724690914, 0.019835392013192177, 0.005517835263162851, 0.029528342187404633, -0.003829348599538207, -0.003817823249846697, -0.003754433011636138, 0.0036996868439018726, 0.0054227495566010475, -0.0027387479785829782, 0.029021218419075012, 0.0006011270452290773, 0.01736893504858017, -0.014061114750802517, 0.028859861195087433, 0.023569656535983086, -0.007906495593488216, 0.013369584456086159, 0.003993587102741003, -0.02660086378455162, 0.0370660200715065, 0.005174951162189245, -0.0027012899518013, 0.003619008231908083, 0.007560730446130037, -0.02018115669488907, -0.013012293726205826, -0.013991962186992168, -0.03983214125037193, 0.0032559549435973167, 0.011583131738007069, -0.00021268156706355512, -0.03699686750769615, 0.01596282236278057, -0.011398723348975182, 0.011940422467887402, 0.00044949466246180236, -0.03330870717763901, -0.0038207045290619135, -0.01577841490507126, 0.010004137642681599, -0.001923318486660719, 0.003846636973321438, -0.03648974746465683, 0.028444943949580193, 0.007831580005586147, 0.013611620292067528, -0.011790590360760689, -0.009450913406908512, 0.00914548709988594, -0.04688575118780136, -0.012159407138824463, -0.006857675034552813, 0.06348247826099396, 0.006292925216257572, -0.026139842346310616, 0.0008600907167419791, 0.047669485211372375, -0.0014687813818454742, 0.0065407236106693745, -0.016250960528850555, 0.02692357823252678, 0.04324369132518768, -0.036028724163770676, 0.053063418716192245, 0.011577368713915348, 0.013796028681099415, -0.0018844199366867542, 0.02494119107723236, 0.003051377134397626, 0.004396979697048664, 0.03457651287317276, 0.01005023904144764, 0.024802884086966515, -0.0154557004570961, 0.010638040490448475, -0.0024722206871956587, -0.01209025364369154, -0.027384597808122635, -0.023304568603634834, 0.005840549245476723, -0.01496010459959507, 0.015040782280266285, -0.012366865761578083, 0.01433772686868906, -0.015524853952229023, 0.003872569417580962, 0.005160544533282518, -0.03024292178452015, -0.018878774717450142, 0.0077336132526397705, 0.044926416128873825, -0.002116370713338256, -0.0309114009141922, -0.021149300038814545, 0.005419868044555187, -0.004696642979979515, -0.02320083975791931, 0.015928246080875397, -0.01711537316441536, 0.007981411181390285, 0.002642221748828888, -0.03764229640364647, -0.004670710302889347, -0.005316138733178377, -0.0337236262857914, -0.021402860060334206, -0.012735681608319283, 0.023788640275597572, 0.0096353217959404, -0.01738045923411846, -0.05712039768695831, -0.020423192530870438, 0.033377859741449356, 0.010620752349495888, -0.04423488304018974, 0.022313375025987625, -0.03139547258615494, -0.020307937636971474, -0.014061114750802517, -0.005975973792374134, -0.005137493368238211, 0.02078048326075077, 0.01030380092561245, -0.0330551452934742, 0.009906170889735222, -0.0061834328807890415, -0.0005402580136433244, 0.020665228366851807, -0.018717419356107712, 0.01577841490507126, -0.032202258706092834, -0.04520302638411522, -0.01603197678923607, -0.014810272492468357, -0.005733938422054052, 0.02128760516643524, 0.004016638267785311, -0.0007866156520321965, -0.0126780541613698, 0.036351438611745834, -0.013703824020922184, 0.04047757014632225, -0.043428100645542145, -0.0002465377328917384, 0.04573319852352142, -0.02602458745241165, 0.006736657116562128, -0.007606832776218653, -0.006436993833631277, -0.029459187760949135, -0.016066553071141243, 0.0045007094740867615, 0.014648915268480778, -0.0074339499697089195, -0.0066732666455209255, -0.005313257221132517, 0.00622953474521637, 0.016838761046528816, -0.0023598468396812677, -0.0006576740997843444, 0.012366865761578083, -0.007076659239828587, -0.016585201025009155, 0.0018167075468227267, 0.024457119405269623, 0.015524853952229023, -0.01943199895322323, -0.03713517263531685, 0.0015472988598048687, -0.02170252427458763, 0.015893669798970222, -0.019593356177210808, 0.0013989080907776952, -0.01636621542274952, 0.025079496204853058, 0.0019189964514225721, -0.0039849430322647095, 0.013680772855877876, -0.021644895896315575, 0.03330870717763901, 0.013646196573972702, 0.009756338782608509, 0.022405579686164856, -0.00022618801449425519, 0.028537148609757423, -0.019881494343280792, 0.003846636973321438, -0.022036762908101082, -0.008217683993279934, 0.00010643082350725308, 0.017564868554472923, -0.023051008582115173, 0.011905845254659653, 0.028813760727643967, -0.03215615451335907, -0.021748626604676247, -0.02443406917154789, 0.008615314029157162, -0.0028482400812208652, -0.03725042939186096, 0.00315798819065094, 0.020653702318668365, -0.020238785073161125, 0.025563567876815796, 0.022543886676430702, 0.02526390552520752, 0.02084963582456112, 0.013069921173155308, 0.01977776549756527, -0.020573025569319725, 0.03888705000281334, 0.009076334536075592, -0.009865831583738327, 0.012850936502218246, 0.010954991914331913, -0.03280158340930939, 0.00855768658220768, 0.017265204340219498, 0.029551392421126366, 0.013726875185966492, -0.021552693098783493, -0.012585850432515144, -0.0072437794879078865, -0.030381228774785995, 0.019662510603666306, 0.0026595101226121187, -0.02593238465487957, 0.02807612717151642, -0.001415475970134139, 0.03699686750769615, -0.04370471090078354, -9.572696399118286e-06, 0.0076471720822155476, 0.013058396056294441, -0.009664135053753853, -0.006696317810565233, 0.00855192355811596, -0.007802766282111406, -0.00022672826889902353, -0.005172070115804672, 0.015179088339209557, 0.010753295384347439, 0.007670222781598568, 0.016158755868673325, 0.012182457372546196, -0.04564099758863449, -0.003549855202436447, -0.0493752583861351, 0.020492346957325935, 0.0037054496351629496, 0.04379691556096077, 0.011571605689823627, -0.0006771233747713268, 0.004883932415395975, -0.0181987714022398, -0.02992020919919014, -0.012343814596533775, -0.04015485569834709, 0.016930965706706047, 0.002959173172712326, 0.004022400826215744, 0.013530941680073738, 0.017000118270516396, 0.01587061956524849, 0.006396654527634382, 0.004129011649638414, 0.03522194176912308, -0.024480169638991356, 0.027061883360147476, 0.03540634736418724, 0.01275873277336359, -0.03107275813817978, -0.026462556794285774, -0.016181807965040207, 0.05186476930975914, -0.014856374822556973, 0.005172070115804672, 0.014522135257720947, -0.007076659239828587, 0.009906170889735222, 0.05343223735690117, -0.023880844935774803, -0.0035469739232212305, -0.03939417377114296, 0.0017389104468747973, 0.013922808691859245, -0.0157899409532547, -0.02667001634836197, -0.02317778766155243, -0.0072437794879078865, -0.001542976824566722, -0.002273405669257045, -0.02733849547803402, 0.005076984409242868, -0.010574650019407272, -0.003708330914378166, 0.005010712891817093, 0.03911755979061127, -0.013761451467871666, -0.042598262429237366, -0.004552573896944523, -0.011508216150105, -0.00939328595995903, -0.01870589330792427, -0.0038898575585335493, 0.00558986933901906, 0.010113629512488842, -0.018314026296138763, 0.0006385849555954337, -0.00032775651197880507, -0.012643477879464626, 0.013311957009136677, 0.004814779385924339, -0.045341331511735916, 0.03688161447644234, -0.010638040490448475, 0.006385129410773516, 0.04338199645280838, -0.005829023662954569, -0.030358176678419113, -0.03953247889876366, -0.009450913406908512, -0.015109935775399208, 0.006949878763407469, 0.03443820774555206, -0.007289881352335215, -0.011577368713915348, -0.02376559004187584, -0.03252497315406799, 0.0017461138777434826, 0.006817335728555918, 0.01457976270467043, 0.005624446086585522, 0.039947398006916046, 0.02759205736219883, -0.018475383520126343, 0.018164195120334625, 0.01777232624590397, -0.02209439128637314, 0.008523110300302505, -0.002999512478709221, -0.03351616486907005, 0.04423488304018974, -0.003999349661171436, 0.05334003269672394, 0.04490336403250694, 0.011087534949183464, 0.013980436138808727, 0.0015501802554354072, 0.047001004219055176, 0.002987986896187067, -0.032294463366270065, -0.010649565607309341, 0.01811809279024601, 0.005837667733430862, 0.017403511330485344, -0.00805632770061493, 0.022670665755867958, 0.01088007539510727, 0.031948696821928024, 0.016492996364831924, -0.002676798263564706, -0.002901545725762844, 0.00586071889847517, -0.038264673203229904, -0.029320882633328438, 0.01704622060060501, 0.027522902935743332, -0.03941722214221954, -0.0072437794879078865, 0.017242154106497765, 0.04946746304631233, -0.00938752293586731, -0.021714050322771072, 0.00537952920421958, -0.035452451556921005, 0.016573674976825714, -0.01627401076257229, -0.0038927390705794096, 0.0168618131428957, -0.016919439658522606, -0.011450587771832943, 0.0028856981080025434, -0.01761097088456154, 0.05449258163571358, -0.06325196474790573, -0.000543859729077667, 0.049744077026844025, 0.0033135823905467987, -0.010897364467382431, 0.009053283371031284, -0.026992730796337128, -0.02491813898086548, -0.003748670220375061, -0.009162775240838528, 0.03466871753334999, 0.009715999476611614, 0.001052422565408051, 0.0009710236918181181, 0.013139074668288231, 0.00055862677982077, 0.01532892044633627, 0.034876175224781036, 0.044350139796733856, -0.019478101283311844, 0.006748182699084282, 0.03964773193001747, -0.009940747171640396, 0.0005795167526230216, 0.002830951940268278, 0.024226609617471695, -0.017818428575992584, 0.012747207656502724, 0.0384029783308506, -0.002028488786891103, 0.029205627739429474, 0.020238785073161125, -0.02219812013208866, 0.0109722800552845, 0.021840829402208328, 0.027292393147945404, 4.830806938116439e-05, 0.017726225778460503, -0.008177344687283039, 0.026716118678450584, -0.006160381715744734, 0.008586500771343708, -0.0363975428044796, 0.005200883839279413, -0.013173650950193405, -0.028030024841427803, 0.004610201809555292, -0.005889532621949911, -0.04222944751381874, 0.0013182294787839055, -0.02625509724020958, 0.036535847932100296, -0.03955553099513054, 0.011122111231088638, 0.018060464411973953, 0.0012843733420595527], [0.03802359104156494, 0.014356815256178379, 0.049257297068834305, -0.02439114823937416, -0.04358106851577759, 0.0059463814832270145, -0.007356531918048859, 0.026457389816641808, 0.007148720324039459, 0.04785605147480965, -0.042892321944236755, -0.01610243320465088, 0.027454886585474014, 0.007861217483878136, -0.033487360924482346, 0.007219970226287842, -0.013276195153594017, 0.03961483761668205, -0.0033368612639606, -0.022740531712770462, 0.04168107733130455, 0.03970983624458313, -0.021161163225769997, -0.019926168024539948, 0.005889975465834141, -0.01154245249927044, 0.033154863864183426, -0.024046774953603745, 0.06421973556280136, -0.04094482958316803, 0.0640772357583046, -0.023096779361367226, 0.02731238678097725, 8.892297046259046e-05, -0.009458398446440697, -0.01996179297566414, -0.002474442822858691, -0.0036218599416315556, 0.035054855048656464, 0.01394119206815958, -0.006976533681154251, 0.044079817831516266, 0.011625576764345169, -0.03144486993551254, -0.011376203037798405, 0.03975733369588852, 0.04586106166243553, -0.044697314500808716, -0.0164230577647686, 0.035672351717948914, 0.03904483839869499, 0.058377258479595184, -0.009019025601446629, 0.012207449413836002, 0.00437295064330101, 0.007962154224514961, -0.011607764288783073, 0.01178588904440403, 0.01856054738163948, -0.008924025110900402, 0.0236192774027586, -0.0373585969209671, -0.027977384626865387, 0.047618553042411804, 0.008365903049707413, 0.01601930893957615, 0.0357198528945446, 0.027169886976480484, -0.013121820986270905, -0.025151146575808525, 0.00561685161665082, 0.03415235877037048, 0.019284920766949654, -0.06008725240826607, -0.006353098899126053, 0.011014017276465893, 0.01248057372868061, -0.027953634038567543, 0.011180265806615353, 0.029996125027537346, -0.021541161462664604, 0.0038415465969592333, -0.004696542862802744, 0.029711127281188965, -0.0004237873072270304, -0.003883108962327242, -0.08402714878320694, -0.02250303141772747, -0.012611198239028454, -0.015924308449029922, -0.046882305294275284, -0.04360482096672058, -0.03177736699581146, 0.028238633647561073, 0.013442444615066051, 0.008021528832614422, 0.041657328605651855, -0.0029271754901856184, -0.04372356832027435, 0.054102275520563126, 0.0168386809527874, -0.03486485406756401, -0.001455423654988408, 0.015520560555160046, 0.010295582003891468, -0.03172986954450607, -0.018655547872185707, 0.06792471557855606, 0.018061799928545952, 0.0010746830375865102, 0.022740531712770462, -0.028737381100654602, -0.018857421353459358, 0.06269974261522293, -0.02345302700996399, 0.005011229310184717, -0.013086196035146713, -0.014713063836097717, 0.012729947455227375, -0.010829955339431763, -0.022360531613230705, -0.006293723825365305, 0.0373823456466198, -0.06987220793962479, 0.001711477292701602, -0.017871800810098648, -0.0003996663144789636, 0.02393990010023117, -0.07295969873666763, 0.014356815256178379, 0.03519735485315323, -0.02731238678097725, 0.05761726200580597, -0.00026050672749988735, -9.300498641096056e-05, 0.014558689668774605, 0.02849988266825676, -0.011364327743649483, -0.006430285982787609, -0.028119884431362152, 0.029924876987934113, -0.013929317705333233, 0.0006935713463462889, 0.0027698322664946318, -0.03503110632300377, 0.06578722596168518, 0.024699898436665535, 0.06189224496483803, 0.00014305605145636946, 0.0035832663998007774, -0.008199653588235378, 0.013299944810569286, 0.015033687464892864, -0.01484368834644556, 0.036479849368333817, 0.012397448532283306, 0.01039058156311512, 0.04529106244444847, 0.011370265856385231, -0.001692180521786213, -0.03391486033797264, -0.0361473485827446, -0.015948059037327766, -0.04861604794859886, 0.021422410383820534, 0.01946304365992546, -0.0013322210870683193, -4.2466865124879405e-05, -0.03474610671401024, -0.032252367585897446, -0.025103645399212837, -0.02151741087436676, -0.03006737492978573, -0.023417403921484947, 0.016779305413365364, -0.01720680296421051, 0.014819938689470291, 0.0017960863187909126, -0.016565555706620216, 0.018572423607110977, -0.028879880905151367, -0.00934558641165495, -0.08098716288805008, -0.020888037979602814, -0.04296357184648514, 0.027906134724617004, 0.025602394714951515, -0.01597180962562561, -0.023310529068112373, -0.012813071720302105, -0.00835402775555849, -0.006115599535405636, -0.016434932127594948, 0.02250303141772747, -0.03678859770298004, 0.0003009557840414345, -0.012106512673199177, 0.008300590328872204, 0.0027074888348579407, -0.0029360814951360226, 0.023108653724193573, -0.030209874734282494, 0.04719105362892151, 0.01051526889204979, -0.0328461155295372, -0.02427239902317524, 0.032299865037202835, 0.04920979589223862, 0.030732372775673866, -0.009606835432350636, -0.00023787010286469012, -0.015781810507178307, -0.058092258870601654, 0.008834963664412498, -0.025673644617199898, 0.05842475965619087, 0.016660556197166443, -0.0016268682666122913, -0.00381482788361609, 0.0702047124505043, -0.0320148691534996, -0.015924308449029922, 0.003918733913451433, -0.011156516149640083, -0.020424915477633476, -0.03372485935688019, 0.02821488305926323, 0.015829309821128845, 0.021291786804795265, -0.0628422424197197, -0.006768722087144852, 0.03766734525561333, -0.01617368310689926, -0.01720680296421051, 0.033036112785339355, 0.015378061681985855, 0.016601180657744408, -0.07671218365430832, 0.006495598237961531, -0.021256161853671074, 0.0072318450547754765, -0.0019222577102482319, -0.021529285237193108, 0.02866613119840622, 0.018904922530055046, -0.018014300614595413, -0.02069803886115551, -0.006649972405284643, 0.04103982821106911, -0.02377365157008171, 0.004981542006134987, -0.0402323342859745, 0.07875467091798782, -0.08616464585065842, 0.025198645889759064, 0.024462398141622543, -0.012041199952363968, -0.015758059918880463, 0.014689314179122448, -0.0402560830116272, -0.010645893402397633, -0.007285282481461763, -0.009375273250043392, 0.02697988785803318, -0.031848616898059845, 0.021256161853671074, 0.02838113158941269, 0.009761209599673748, -0.023833027109503746, 0.016434932127594948, -0.054719772189855576, 0.015199936926364899, -0.003663422306999564, 0.013050571084022522, -0.025768643245100975, 0.03001987561583519, -0.0012572604464367032, -0.009767146781086922, -0.01737305335700512, 0.017052428796887398, -0.05357977747917175, 0.02303740382194519, -0.012801197357475758, -0.04685855656862259, 0.019474919885396957, 0.013834318146109581, 0.01309807039797306, -0.00601466279476881, -0.029497377574443817, 0.02562614344060421, 0.08687713742256165, 0.00017246510833501816, 0.0032092055771499872, -0.00648966059088707, 0.024771148338913918, -0.003556547686457634, -0.06127474457025528, -0.003802953055128455, -0.020555539056658745, -0.022883029654622078, -0.01728992909193039, 0.055669769644737244, 0.06630972772836685, -0.03462735563516617, -0.06782972067594528, 0.046383559703826904, 0.01252807304263115, 0.060752250254154205, 0.0018495236290618777, 0.006477785762399435, -0.03712109476327896, 0.0677347183227539, -0.005011229310184717, -0.03638485074043274, -0.033202361315488815, -0.02110178768634796, -0.04194232448935509, 0.03457985818386078, 0.030328623950481415, -0.007795905228704214, 0.029046129435300827, 0.009909646585583687, 0.06288973987102509, -0.0015763997798785567, 0.01028370764106512, 0.002631786046549678, 0.055622268468141556, 0.056809764355421066, -0.059564754366874695, -0.061702243983745575, -0.035743601620197296, -0.025531144812703133, 0.04901979863643646, 0.010919017717242241, -0.02484239637851715, -0.03187236934900284, 0.019938042387366295, 0.02550739422440529, 0.022146783769130707, 0.018869297578930855, 0.055622268468141556, -0.024343648925423622, -0.014618064276874065, 0.005118103697896004, 0.0025412393733859062, 0.0072259074077010155, 0.02213490754365921, 0.04493481293320656, -0.017349302768707275, 0.015389936044812202, 0.02550739422440529, 0.02816738374531269, -0.05072978883981705, 0.008490589447319508, -0.029212379828095436, -0.035054855048656464, 0.04443606734275818, -0.014677438884973526, -0.013371194712817669, 0.0004605254507623613, 0.023559901863336563, -0.0007303094607777894, 0.04315357282757759, 0.01877429708838463, 0.036646097898483276, -0.002098897472023964, -0.0042631071992218494, 0.003957327455282211, -0.003422954585403204, -0.022514907643198967, 0.029259879142045975, -0.0013299945276230574, 0.017064305022358894, -0.026956139132380486, -0.008520277217030525, -0.022776154801249504, 0.004877636209130287, 0.06184474378824234, -0.004622324835509062, -0.002780222799628973, -0.0004078303463757038, 0.011797763407230377, 0.004364044405519962, 0.022894905880093575, 0.04384231939911842, 0.042298574000597, -0.04168107733130455, -0.0014799156924709678, -0.013478069566190243, 0.0005083963042125106, -0.030233625322580338, 0.027502385899424553, -0.027122387662529945, 0.0431060716509819, -0.0045807622373104095, 0.003966233693063259, 0.042441073805093765, 0.0213511623442173, -0.022645531222224236, -0.07172470539808273, -0.008757776580750942, -0.03716859593987465, 0.024129899218678474, -0.03721609711647034, -0.0033338924404233694, 0.005584195721894503, -0.01055089384317398, -0.03353486210107803, 0.008567777462303638, 0.005560445599257946, 0.011494952253997326, 0.01905929669737816, 0.02738363668322563, 0.003859359072521329, 0.03935358673334122, 0.017349302768707275, -0.01244494877755642, 0.04949479550123215, 0.007588093634694815, -0.050492290407419205, 0.044079817831516266, 0.04077858105301857, -0.021754909306764603, -0.027454886585474014, -0.05600226670503616, 0.011174328625202179, 0.009167461656033993, -0.02968737669289112, 0.005848413333296776, -0.06892221421003342, 0.006430285982787609, -0.01480806339532137, 0.03880733996629715, -0.02332240343093872, -0.0546247735619545, -0.030114876106381416, 0.014475565403699875, -0.01055089384317398, 0.007534656208008528, -0.014665564522147179, 0.02602989226579666, -0.027739884331822395, 0.02041304111480713, 0.027241136878728867, -0.028404882177710533, 0.016114307567477226, -0.011839325539767742, 0.012171824462711811, -0.00347045436501503, 0.0002738660550676286, -0.04664480686187744, -0.022443657740950584, -0.05676226317882538, 0.005922631826251745, -0.022574281319975853, -0.005207166075706482, -0.030114876106381416, -0.054672274738550186, 0.03353486210107803, -0.00474404264241457, 0.013561193831264973, 0.07129720598459244, 0.06426723301410675, 0.03317861258983612, 0.025246145203709602, 0.05153728649020195, -0.014380565844476223, 0.003188424278050661, 0.012266824021935463, -0.04056483134627342, 0.01658930629491806, -0.04586106166243553, -0.029188629239797592, -0.004729199223220348, 0.061084747314453125, -0.020021166652441025, -0.021137412637472153, -0.05144228786230087, -0.004910292103886604, -0.03814234212040901, 0.03486485406756401, 0.010093708522617817, -0.0010561284143477678, -0.043011073023080826, 0.04583730921149254, -0.022360531613230705, 0.056524764746427536, 0.011821513995528221, 0.01671992987394333, -0.03600485250353813, -0.0640297383069992, 0.005382321309298277, 0.045029815286397934, -0.010723080486059189, 0.013442444615066051, -0.00940496101975441, -0.03885483741760254, 0.032133616507053375, 0.024533648043870926, 0.01745617762207985, 0.06493223458528519, -0.04697730392217636, 0.041253577917814255, 0.015164311975240707, 0.018655547872185707, -0.02123241126537323, 0.0004304669564589858, -0.03379610925912857, -0.03329736366868019, 4.5644341298611835e-05, -0.05277227982878685, -0.021743034943938255, 0.055004771798849106, 0.0064184111542999744, -0.02624364197254181, -0.0048538860864937305, 0.029639877378940582, -0.004358106758445501, -0.017420552670955658, 0.020686164498329163, 0.003859359072521329, -0.014879313297569752, -0.02094741351902485, 0.01115057896822691, -0.009577147662639618, -0.002852956997230649, 0.0042215450666844845, -0.005584195721894503, -0.005792007315903902, 0.01301494613289833, -0.010723080486059189, -0.04495856538414955, -0.07158220559358597, 0.026219891384243965, 0.003978108521550894, 0.008680589497089386, 0.007332782261073589, 0.018216174095869064, 0.019118670374155045, -0.03716859593987465, 0.0320386178791523, 0.01712367869913578, 0.0010546441189944744, -0.0040404521860182285, 0.0015704622492194176, 0.0066380975767970085, 0.04191857576370239, 0.027454886585474014, 0.025151146575808525, -0.01051526889204979, -0.006029506213963032, 0.04780855029821396, -0.009494023397564888, -0.025151146575808525, -0.011803701519966125, 0.013418694026768208, 0.008187778294086456, -0.012456823140382767, 0.016850555315613747, -0.011459327302873135, 0.007273407187312841, 0.011465265415608883, 0.02541239559650421, -0.0037376407999545336, 0.02390427514910698, -0.003054831176996231, 0.0023957714438438416, -0.0236192774027586, -0.010521206073462963, -0.018061799928545952, -0.0022369439247995615, 0.009814647026360035, 0.01958179473876953, -0.07794717699289322, 0.04405606910586357, 2.1697298507206142e-05, 0.017396802082657814, -0.00784340500831604, 0.02270490676164627, -0.01264682225883007, 0.009838396683335304, 0.06925471127033234, 0.0010761674493551254, -0.004114670678973198, -0.0133474450558424, 0.0036426412407308817, -0.019771793857216835, -0.03564860299229622, -0.02270490676164627, 0.022906780242919922, 0.004818261135369539, -0.016411181539297104, 0.015710560604929924, -0.0005384547985158861, 0.0003226646804250777, 0.07101220637559891, -0.012456823140382767, -0.003998889587819576, -0.0221705324947834, 0.014356815256178379, 0.0017901487881317735, -0.004592637065798044, 0.00625216169282794, -0.00036997892311774194, -0.04410356655716896, -0.04011358320713043, 0.022491157054901123, -0.0008950743940658867, -0.015247437171638012, 0.023524276912212372, 0.011364327743649483, 0.025554893538355827, 0.020187417045235634, -0.03370111063122749, -0.04374731704592705, 0.022063659504055977, -0.028072383254766464, -0.03396235778927803, -0.017111804336309433, 0.0332498624920845, -0.027288636192679405, -0.003446704475209117, -0.004830136429518461, -0.005156697239726782, -0.009767146781086922, -0.028262382373213768, -0.022194283083081245, -0.06721222400665283, 0.032133616507053375, -0.023666776716709137, -0.01658930629491806, 0.02143428660929203, -0.012824947014451027, 0.021303661167621613, -0.013632443733513355, -0.010212457738816738, 0.025364894419908524, 0.00145765021443367, -0.002603583037853241, 0.004785605240613222, 0.05267728120088577, -0.018049925565719604, 0.02550739422440529, -0.01396494172513485, 0.00697059603407979, 0.030851121991872787, 0.0049013858661055565, 0.0023512402549386024, -0.017681801691651344, -0.000620095117483288, 0.0003291587927378714, -0.00694090873003006, 0.03227611631155014, -0.033938609063625336, 0.026172392070293427, -0.008894338272511959, 8.544397860532627e-05, 0.015413686633110046, 0.02139866165816784, 0.010206520557403564, -0.023476777598261833, 0.017432427033782005, -0.024343648925423622, 0.021980533376336098, 0.017064305022358894, -0.011465265415608883, 0.019534293562173843, -0.0006260325899347663, -0.00291530042886734, -0.00016949637210927904, -0.045813560485839844, -0.025887392461299896, -0.0029271754901856184, -0.02754988521337509, -0.029164878651499748, -0.020258666947484016, -0.04101607948541641, 0.026718638837337494, -0.05699976533651352, 0.041538577526807785, -0.04068358242511749, -0.025649894028902054, -0.007243719883263111, -0.008122466504573822, -0.003927640151232481, -0.003740609623491764, 0.023951776325702667, -0.03087487258017063, 0.0064124735072255135, 0.0032329554669559, -0.007214032579213381, 0.030114876106381416, -0.0001720012369332835, 0.0028262382838875055, 0.011702763848006725, 0.03875983878970146, 0.006762784440070391, -0.012599322944879532, -0.011097141541540623, -0.04602731019258499, 0.02056741528213024, 0.017016803845763206, -0.02074553817510605, -0.041871078312397, -0.034057360142469406, 0.006572785321623087, -0.038546089082956314, 0.008781526237726212, 0.04882979765534401, -0.009743397124111652, -0.024984896183013916, -0.009654334746301174, -0.03966233506798744, -0.016613056883215904, -0.02512739598751068, -0.013893692754209042, 0.025032395496964455, -0.019451169297099113, -0.014891188591718674, -0.0040404521860182285, -0.04495856538414955, 0.023714276030659676, -0.03260861337184906, -0.0007332782261073589, 0.021992409601807594, -0.037881094962358475, -0.0005763061926700175, -0.005358571652323008, 0.00919714942574501, -0.011251515708863735, 0.055289771407842636, -0.013976817019283772, 0.01379869319498539, -0.0036990472581237555, -0.017028680071234703, 0.019807418808341026, -0.043628569692373276, -0.029806125909090042, -0.010592455975711346, -0.010354957543313503, -0.0030088156927376986, -0.03638485074043274, -0.013383070006966591, -0.005135916173458099, -0.013359319418668747, -0.006768722087144852, 0.01295557152479887, 0.0023467871360480785, -0.02209928259253502, 0.026148641481995583, -0.05400727689266205, 0.008039341308176517, -0.011156516149640083, -0.021814284846186638, -0.003158736974000931, 0.021374911069869995, -0.008544026874005795, 0.03638485074043274, -0.010824017226696014, -0.009060587733983994, 0.02049616537988186, 0.01835867390036583, -0.0069112214259803295, 0.055954769253730774, 0.001907413941808045, -0.0026822544168680906, -0.04730980470776558, 0.015389936044812202, 0.0242248997092247, -0.005836538504809141, -0.022811779752373695, 0.023868652060627937, 0.038213592022657394, 0.00823527853935957, 0.020555539056658745, 0.003509047906845808, -0.031136121600866318, -0.016280557960271835, -0.02472364716231823, -0.042726073414087296, 0.03666984662413597, -0.025982392951846123, -0.004788573831319809, 0.03289361298084259, 0.010729017667472363, -0.046003557741642, -0.006163099315017462, 0.0047143553383648396, 0.03524485230445862, -0.007641531061381102, -0.029544876888394356, -0.027217388153076172, 0.0009062071912921965, -0.03030487522482872, -0.015912434086203575, -0.01295557152479887, 0.012207449413836002, -0.018798047676682472, -0.00455701258033514, -0.00023248927027452737, -0.007119033019989729, -0.023381778970360756, -0.00967214722186327, -0.007475281599909067, 0.07756718248128891, -0.018299298360943794, -0.017361178994178772, -0.014772438444197178, -0.01581743359565735, 0.0007518328493461013, -0.051964785903692245, 0.04405606910586357, -0.026101142168045044, 0.04118232801556587, -0.005504039581865072, 0.005768257193267345, -0.0074159069918096066, 0.009969021193683147, 0.007617780938744545, 0.003351704915985465, 0.02168365940451622, -0.038094840943813324, -0.0007755827391520143, 0.019403669983148575, 0.011512764729559422, 0.006323411129415035, -0.012373698875308037, -0.007297157309949398, 0.0260773915797472, -0.015009937807917595, 0.00757621880620718, 0.0018035081448033452, 0.006822159048169851, 0.0044531067833304405, 0.01774117723107338, -0.01186901330947876, -0.023334277793765068, -0.002536786487326026, 0.0285473819822073, -0.0023616307880729437, 0.029806125909090042, -0.017646176740527153, -0.028143633157014847, -0.022823655977845192, -0.02061491459608078, 0.016351807862520218, 0.026908637955784798, 0.004099826794117689, -0.0394248366355896, 0.033606112003326416, 0.021006787195801735, -0.042559824883937836, -0.007071533240377903, -0.036978598684072495, 0.007273407187312841, -0.024581147357821465, 0.027359886094927788, -0.006744971964508295, 0.019688667729496956, -0.009743397124111652, -0.02131553739309311, -0.00304889352992177, 0.029307378455996513, -0.02484239637851715, -0.0004479082999750972, -0.005088416393846273, 0.031064871698617935, -0.016043057665228844, 0.023749900981783867, 0.02139866165816784, 0.01762242615222931, -0.014534940011799335, 0.022811779752373695, -0.0007039619376882911, -0.007712780497968197, -0.0034763917792588472, -0.012171824462711811, 0.03799984231591225, 0.025768643245100975, 0.0003221080405637622, -0.016696181148290634, 0.03237111493945122, 0.015805559232831, -0.011655264534056187, 0.0013633928028866649, -0.002625848399475217, -0.0332498624920845, 0.048521049320697784, 0.04191857576370239, 0.022111158818006516, 0.028286132961511612, -0.00450654374435544, 0.006715284660458565, 0.016375556588172913, 0.015199936926364899, -0.00013414982822723687, 0.0006538644665852189, -0.035791102796792984, 0.0009759725071489811, 0.018940547481179237, -0.009814647026360035, -0.006174974609166384, 0.03446110710501671, 0.011667138896882534, -0.0032952988985925913, 0.004194826353341341, -0.002646629698574543, -0.008359964936971664, 0.02315615490078926, -0.014914938248693943, 0.040137335658073425, -0.027644885703921318, -0.0066915350034832954, -0.05699976533651352, 0.0015571028925478458, 0.022348657250404358, -0.029829876497387886, 0.004248263780027628, 0.03339236229658127, 0.010479643940925598, 0.03108862042427063, 0.021422410383820534, 0.02529364451766014, 0.001296596135944128, -0.013727443292737007, -0.027241136878728867, -0.031967367976903915, 0.017064305022358894, 0.008074966259300709, -0.010420269332826138, 0.0072377827018499374, 0.048354800790548325, 0.030898621305823326, 0.06683222204446793, 0.026908637955784798, 0.004996385425329208, -0.02328677847981453, 0.0021167099475860596, 0.00450654374435544, -0.01096651703119278, 0.016399307176470757, -0.005192322190850973, -0.0012186667881906033, -0.02472364716231823, 0.02377365157008171, -0.0012453855015337467, -0.013454318977892399, -0.0010628080926835537, 0.004880604799836874, 0.008751838468015194, 0.02579239383339882, -0.011987762525677681, -0.011738388799130917, -0.012385574169456959, -0.026908637955784798, 0.021754909306764603, 0.0074990312568843365, -0.004331388510763645, 0.015283062122762203, 0.007564343512058258, 0.045433562248945236, 0.01687430590391159, 0.024296149611473083, -0.03978108614683151, 0.0488772988319397, 0.05324728041887283, -0.013905567117035389, 0.004049358423799276, 0.018323048949241638, 0.02652863971889019, -0.03374861180782318, -0.014012441970407963, 0.04816479980945587, 0.04303482174873352, -0.017717426642775536, -0.021659910678863525, 0.02631489187479019, -0.0011518702376633883, 0.015841184183955193, 0.0066796597093343735, -0.007089345715939999, 0.015354311093688011, 0.03232361748814583, 0.010776517912745476, -0.002606551628559828, 0.021790534257888794, -0.010521206073462963, 0.0027505354955792427, 0.00823527853935957, 0.004432325251400471, 0.013846192508935928, 0.004182951524853706, 0.028761131688952446, 0.0043492005206644535, -0.03621859848499298, 0.03234736621379852, 0.01810929924249649, 0.02595864236354828, 0.04400856792926788, -0.003850452834740281, 0.020876163616776466, -0.030376125127077103, 0.018916796892881393, -0.010170895606279373, 0.011892762966454029, -0.0027445980813354254, 0.036361098289489746, 0.02255053073167801, -0.018904922530055046, 0.01525931153446436, 0.01433306559920311, -0.014143066480755806, -0.0029063941910862923, -0.021612411364912987, -0.017420552670955658, -0.06132224574685097, -0.00402560830116272, -0.023358028382062912, 0.009309961460530758, 0.004367012996226549, -0.013846192508935928, 0.01213619951158762, 0.013810567557811737, 0.01388181746006012, 0.010693393647670746, 0.02460489794611931, 0.03740609437227249, 0.010628080926835537, 0.033202361315488815, 0.007873092778027058, -0.0016788211651146412, -0.00042044746805913746, -0.020104290917515755, 0.02944987826049328, 0.030946122482419014, 0.007706843316555023, 0.009209024719893932, -0.03474610671401024, -0.029188629239797592, 0.029141129925847054, -0.015781810507178307, -0.019451169297099113, -0.03189611807465553, 0.016446806490421295, -0.028428632766008377, -0.011904638260602951, 0.00977308489382267, 0.033986110240221024, 0.0010694877710193396, 0.001406439463607967, 0.002416552510112524, 0.031017372384667397, -0.03961483761668205, -0.034223608672618866, 0.0010086286347359419, -0.03462735563516617, -0.03384361043572426, 0.00648966059088707, -0.02602989226579666, -0.026219891384243965, 0.006602472625672817, -0.01601930893957615, 0.012302448973059654, -0.015033687464892864, 0.03431860730051994, -0.004352169577032328, -0.039567336440086365, 0.00461044954136014, 0.03175361827015877, -0.0026837389450520277, -0.015793684870004654, 0.01913054659962654, 0.03267986327409744, 0.03721609711647034, 0.030447373166680336, 0.00967214722186327, -0.02028241567313671, -0.046953555196523666, -0.01679117977619171, 0.014297440648078918, 0.004880604799836874, 0.035126104950904846, 0.014095566235482693, -0.004114670678973198, -0.020686164498329163, -0.030566124245524406, -0.0022206157445907593, -0.002468505408614874, -0.007427781820297241, -0.001687727402895689, -0.00868652667850256, -0.0014977281680330634, 0.019771793857216835, 0.02262178063392639, 0.025697393342852592, 0.025768643245100975, -0.001311439904384315, 0.007623718585819006, -0.011435577645897865, -0.012314324267208576, 0.00739215686917305, 0.002689676359295845, -0.017135554924607277, -0.01049151923507452, 0.00816996581852436, 0.006382786203175783, 0.014428065158426762, -0.006875596474856138, 0.027739884331822395, 0.024129899218678474, -0.005937475245445967, 0.01717117801308632, 0.0023170998319983482, -0.02402302622795105, 0.0451723113656044, 0.0017367115942761302, -0.007344657089561224, -0.006578722968697548, 0.01983116753399372, -0.003538735443726182, -0.01244494877755642, -0.02171928435564041, -0.03873609006404877, 0.003351704915985465, 0.0020113198552280664, -0.000581501517444849, -0.024699898436665535, 0.03042362444102764, -0.006029506213963032, 0.01610243320465088, -0.014439940452575684, -0.045576062053442, -0.008395589888095856, -0.006311536300927401, 0.0015214780578389764, -0.010930892080068588, -0.016066808253526688, -0.03930608555674553, 0.025531144812703133, 0.010740892961621284, 0.016577431932091713, -0.010105582885444164, -0.003797015640884638, 0.0048538860864937305, -0.039852336049079895, -0.010438081808388233, 0.003289361484348774, 0.07010971009731293, 0.02066241391003132, -0.031231120228767395, 0.005462477449327707, 0.05818725749850273, 0.00392170250415802, 0.013929317705333233, -0.015508686192333698, 0.018821796402335167, 0.04735730215907097, -0.029782377183437347, 0.034841105341911316, 0.0009893318638205528, 0.01205307524651289, 0.008449027314782143, -0.005325915291905403, 0.026124892756342888, 0.03389110788702965, 0.01815680041909218, 0.03386735916137695, 0.019320545718073845, -0.01720680296421051, 0.0034793606027960777, -0.013121820986270905, -0.0010680033592507243, -0.02866613119840622, 0.007243719883263111, 0.010746830143034458, -0.021244287490844727, 0.011287140659987926, -0.014831813983619213, 0.01762242615222931, -0.009203086607158184, 0.009422773495316505, -0.003327955026179552, -0.031017372384667397, 0.006103724706918001, 0.008840900845825672, 0.03063737228512764, 0.007024033460766077, -0.03239486739039421, 0.011714639142155647, 0.020709915086627007, 0.012349949218332767, 0.011512764729559422, 0.012397448532283306, -0.012492448091506958, 0.005777163431048393, 0.027502385899424553, -0.029663627967238426, -0.0074574691243469715, -0.00524575961753726, -0.03676484897732735, -0.030091125518083572, -0.011180265806615353, 0.004411544185131788, 0.020603040233254433, -0.017230553552508354, -0.052249785512685776, -0.012551822699606419, 0.0012609713012352586, 0.019474919885396957, -0.04892479628324509, 0.011673077009618282, -0.04160982742905617, -0.008763713762164116, -0.020009292289614677, 0.0018465548055246472, -0.012718072161078453, 0.025483643636107445, -0.0031824868638068438, -0.029212379828095436, 0.001782726962119341, -0.009298086166381836, -0.0010761674493551254, 0.015401811338961124, -0.020021166652441025, 0.021363036707043648, -0.017812427133321762, -0.01529493648558855, -0.007671218365430832, -0.02591114304959774, 0.02467614784836769, 0.014166816137731075, 0.008039341308176517, -0.005423883907496929, 0.007825592532753944, 0.03206236660480499, -0.007119033019989729, 0.03631360083818436, -0.037192344665527344, 0.0014895641943439841, 0.011079329065978527, -0.019332420080900192, 0.013573069125413895, -0.011287140659987926, -0.021541161462664604, -0.022146783769130707, 0.0033368612639606, -0.01597180962562561, -0.00015446713950950652, 0.007166532799601555, 0.0004241584101691842, -0.0034496732987463474, 0.0023081935942173004, 0.019771793857216835, -0.018750546500086784, -0.003351704915985465, 0.0066380975767970085, -0.00901308748871088, -0.019368045032024384, 0.004182951524853706, 0.040802329778671265, 0.00715465797111392, -0.027241136878728867, -0.0541972741484642, -0.0018717891070991755, -0.02089991420507431, 0.03144486993551254, -0.015520560555160046, -0.0020202260930091143, -0.0033962358720600605, 0.026386139914393425, -0.00381482788361609, -0.007148720324039459, 0.00913777481764555, -0.014891188591718674, 0.020424915477633476, 0.008460902608931065, -0.00018257736519444734, 0.02287115529179573, 0.0113940155133605, 0.028143633157014847, -0.012813071720302105, -0.005809819791465998, -0.01917804591357708, 0.004705449100583792, 0.01427369099110365, -0.00813434086740017, -0.01617368310689926, 0.006329348776489496, 0.02011616714298725, -0.03334486111998558, -0.032703615725040436, -0.020270541310310364, 0.003936546389013529, -0.017764925956726074, -0.026718638837337494, 0.017717426642775536, 0.0217667855322361, -0.027502385899424553, 0.011459327302873135, 0.003975139930844307, 0.006881534121930599, 0.028309883549809456, 0.01708805374801159, 0.015746185556054115, 0.01484368834644556, 0.04011358320713043, 0.0014294472057372332, -0.011975888162851334, -0.011257453821599483, -0.0050320103764534, -0.028072383254766464, 0.004975604359060526, 0.0008290199912153184, 0.0201280415058136, 0.00628184899687767, -0.005863256752490997, -0.03462735563516617, -0.006394661031663418, -0.036028601229190826, 0.021671785041689873, -0.013145570643246174, -0.029046129435300827, 0.02303740382194519, 0.008787463419139385, 0.03524485230445862, -0.04949479550123215, 0.0018910858780145645, 0.013121820986270905, 0.019356170669198036, 0.002578348619863391, -0.014439940452575684, 0.006311536300927401, -0.018346799537539482, -0.0015912434319034219, -0.004114670678973198, 0.0024581148754805326, -0.0066380975767970085, 0.01012339536100626, 0.023013655096292496, 0.02816738374531269, -0.022740531712770462, -0.0021849910262972116, -0.048972297459840775, -0.004099826794117689, -0.008692463859915733, 0.05315227806568146, 0.001816867501474917, 0.0031824868638068438, -0.0005737085593864322, -0.026101142168045044, -0.03887858986854553, -0.005014197900891304, -0.04690605401992798, 0.0021612411364912987, -0.011405889876186848, 0.018501173704862595, 0.007196220103651285, 0.03251361474394798, 0.005792007315903902, -0.006103724706918001, 0.03127862140536308, 0.020389290526509285, -0.023524276912212372, 0.015484935604035854, 0.00874590128660202, -0.008324340917170048, -0.04217982664704323, -0.027454886585474014, 0.0021775690838694572, 0.029473628848791122, -0.018346799537539482, -0.0001270063075935468, 0.009072462096810341, -0.027573635801672935, 0.011779950931668282, 0.03576735034584999, -0.03999483585357666, 0.010800267569720745, -0.019783668220043182, -0.0018584297504276037, -0.011168391443789005, -0.02148178592324257, -0.021244287490844727, -0.0048093548975884914, 0.0021805379074066877, -0.011382140219211578, -0.014154941774904728, -0.010212457738816738, 0.01088339276611805, 0.0030028782784938812, -0.009779022075235844, -0.0013470647390931845, 0.02838113158941269, -0.014677438884973526, -0.025079896673560143, 0.006715284660458565, -0.019391795620322227, -0.007855280302464962, -0.023844901472330093, -0.011180265806615353, -0.003556547686457634, 0.023583652451634407, -0.01958179473876953, 0.0014294472057372332, -0.016696181148290634, -0.01084182970225811, -0.011079329065978527, -0.0015778840752318501, -0.05823475867509842, 0.03434235602617264, 0.012836822308599949, 0.0011451905593276024, 0.028856130316853523, -0.004708418156951666, -0.03842734172940254, -0.03906858712434769, -0.012005575001239777, 0.0014910484896972775, 0.011037766933441162, 1.127772429754259e-05, -0.008846838027238846, -0.0004920682986266911, -0.02923612855374813, -0.015876809135079384, -0.019273044541478157, 0.01585305854678154, -0.0024046774487942457, 0.016066808253526688, 0.03248986601829529, 0.03130237013101578, -0.00829465314745903, 0.007350594736635685, 0.020401164889335632, -0.023761777207255363, -0.02664738893508911, 0.014499315060675144, -0.02036553993821144, 0.05025479197502136, 0.005394196603447199, 0.05034979060292244, 0.02866613119840622, 0.02574489265680313, 0.017669927328824997, 0.017361178994178772, 0.03339236229658127, 0.004325450863689184, -0.04365231841802597, -0.02550739422440529, 0.0065193478949368, 0.012682447209954262, 0.032751113176345825, -0.0006568332319147885, 0.03690734878182411, 0.0019103827653452754, 0.03507860377430916, 0.0006534933927468956, -0.017646176740527153, -0.014511190354824066, 0.005423883907496929, -0.02081678807735443, -0.012623072601854801, 0.013632443733513355, 0.022598031908273697, -0.04251232370734215, -0.01601930893957615, 0.032917365431785583, 0.05942225456237793, 0.008187778294086456, -0.014629939571022987, 0.01400056667625904, -0.030613623559474945, 0.004197794944047928, -0.02800113335251808, -0.004833105020225048, 0.006079975049942732, -0.014974312856793404, 0.002392802620306611, 0.022716781124472618, -0.007760280277580023, 0.036123599857091904, -0.07799467444419861, -0.006454035639762878, 0.016399307176470757, 0.00230522477068007, 0.012290573678910732, 0.0034645169507712126, -0.029141129925847054, -0.01309807039797306, -0.007380282040685415, -0.02382115088403225, 0.019296795129776, 0.005928569007664919, 0.01385806780308485, 0.003289361484348774, 0.0077780927531421185, -0.014499315060675144, 0.0008973009535111487, 0.04068358242511749, 0.040351081639528275, -0.019783668220043182, -0.004948885645717382, 0.04101607948541641, -0.005789038725197315, 0.002747566672042012, 0.002637723460793495, 0.03170611709356308, 0.0006145287188701332, -0.008912150748074055, 0.026006141677498817, -0.017147429287433624, 0.022182408720254898, 0.006994346156716347, -0.010052145458757877, 0.009155587293207645, 0.021624285727739334, 0.0004605254507623613, 0.0005365993129089475, 0.006157162133604288, -0.011037766933441162, 0.01934429444372654, -0.012991196475923061, 0.0034021735191345215, -0.044982314109802246, -0.012254949659109116, -0.0016506181564182043, -0.030233625322580338, 0.022847404703497887, 0.010069957934319973, -0.04355731979012489, 0.008401528000831604, -0.02702738717198372, 0.0414673276245594, -0.02003304287791252, -0.0030993621330708265, -0.008508401922881603, 0.00946433562785387], [-0.00642622634768486, 0.026669399812817574, 0.02031046338379383, -0.008175775408744812, -0.029091851785779, 0.038220908492803574, 0.015106678940355778, 0.02803763747215271, 0.01117019448429346, 0.05019858479499817, -0.03519284352660179, 0.007082307245582342, 0.06361179053783417, 0.019446905702352524, -0.04611630365252495, 0.009039334021508694, -0.02832922898232937, 0.030684389173984528, 0.011405711062252522, 0.001453751465305686, 0.040733080357313156, 0.05042288824915886, -0.00991971604526043, 0.006499124225229025, -0.01675529219210148, 0.00028318012482486665, -0.024381529539823532, -0.03346572443842888, 0.05293506011366844, -0.03678537905216217, 0.04351441189646721, -0.03369002416729927, 0.027701186016201973, 0.029181573539972305, -0.013704797253012657, -0.00417200056836009, -0.03698725253343582, 0.011910388246178627, 0.000550589116755873, -0.024852560833096504, 0.00250936858355999, 0.06410524994134903, -0.025861917063593864, -0.04607144370675087, -0.005742107983678579, 0.026131078600883484, 0.03494611009955406, -0.07558947056531906, 0.012403850443661213, 0.032075054943561554, 0.004413124173879623, 0.04014989733695984, -0.0022065620869398117, 0.02190300263464451, -0.029383443295955658, 0.0014236110728234053, -0.014321625232696533, 0.016306689009070396, 0.031290002167224884, -0.013816947117447853, 0.02083757147192955, 0.012661796994507313, -0.020893646404147148, 0.021555336192250252, 0.02806006744503975, -0.007076699752360582, 0.031245142221450806, 0.010592618957161903, -0.010278597474098206, -0.051050931215286255, 0.010878602974116802, 0.037458281964063644, 0.03992559388279915, -0.03644892945885658, -0.029473163187503815, 0.028418948873877525, 0.01727118529379368, -0.0355965830385685, -0.001692071440629661, 0.025144152343273163, -0.024314239621162415, 0.005467339418828487, -0.02440395951271057, -0.0044383578933775425, 0.008641200140118599, -0.022385248914361, -0.06536133587360382, -0.01468050666153431, -0.0019275875529274344, -0.00810848455876112, -0.03344329446554184, 0.03400404751300812, -0.036919958889484406, 0.05728650093078613, -0.0029888120479881763, 0.01823567971587181, 0.027835765853524208, -0.011164586991071701, -0.034587230533361435, 0.021925432607531548, 0.011355242691934109, -0.05114065110683441, 0.02391049638390541, -0.016867442056536674, 0.023461895063519478, -0.042325615882873535, -0.0032916185446083546, 0.06388095021247864, 0.009852425195276737, -0.04082280024886131, 0.030235787853598595, -0.019996441900730133, -0.020949723199009895, 0.05419114604592323, -0.00021886880858801305, 0.030706819146871567, -0.01641884073615074, -0.047462113201618195, 0.0034934894647449255, -0.015342194586992264, 0.02003008872270584, 0.024246947839856148, 0.025099292397499084, -0.048538755625486374, -0.00118949671741575, -0.03824333846569061, -0.03550686314702034, 0.0014663684414699674, -0.05306963995099068, -0.011809452436864376, 0.03983587399125099, -0.06589966267347336, 0.05069204792380333, 0.018112313002347946, 0.009431861340999603, 0.048538755625486374, -0.000769633159507066, -0.011944033205509186, 0.006129027344286442, -0.015308549627661705, -0.013301054947078228, 0.0068187532015144825, 0.007424366194754839, -0.008001941256225109, -0.04710322991013527, 0.04212374612689018, -0.0034037691075354815, 0.016833797097206116, 0.03521527349948883, -0.04629574716091156, 0.012560861185193062, 0.00642622634768486, 0.039207831025123596, 0.003019653493538499, 0.018134742975234985, 0.06630340218544006, 0.027387164533138275, -0.007441188674420118, 0.019659990444779396, 0.058004263788461685, -0.04894249886274338, -0.024112368002533913, -0.003434610553085804, -0.023461895063519478, 0.030437659472227097, -0.016934731975197792, 0.00950475875288248, -0.0004664761945605278, -0.03734613209962845, 0.018942227587103844, -0.02983204647898674, -0.005287898238748312, -0.005977624095976353, -0.013469280675053596, 0.016116034239530563, -0.0221273023635149, 0.01978335715830326, 0.023708626627922058, -0.012930958531796932, 0.039454564452171326, -0.020736636593937874, -0.024583399295806885, -0.04764155298471451, -0.031245142221450806, -0.022261884063482285, 0.007486049085855484, 0.05603041499853134, -0.027073143050074577, -0.014164614491164684, -0.010228130035102367, -0.016598280519247055, -0.00833839364349842, -0.020366540178656578, -0.007015016861259937, -0.021947862580418587, 0.010155231691896915, -0.016901087015867233, -0.022295529022812843, 0.01750670000910759, -0.002555630635470152, 0.01672164723277092, -0.06446413695812225, 0.017674926668405533, 0.03911811113357544, -0.03685266897082329, 0.009011296555399895, 0.017136603593826294, 0.007373898755759001, 0.03189561516046524, -0.010800098069012165, 0.009846817702054977, -0.02774604596197605, -0.05997811257839203, 0.006650527473539114, -0.007514086551964283, 0.046699486672878265, 0.029405873268842697, 0.007059876807034016, -0.008915968239307404, 0.028104927390813828, -0.0385797880589962, 0.009454291313886642, 0.03261337801814079, -0.0012595908483490348, 0.014030033722519875, 0.007301000878214836, 0.05042288824915886, 0.015173968859016895, -0.02471798099577427, -0.06132391840219498, -0.008063624612987041, 0.026893701404333115, 0.005057989619672298, -0.01778707653284073, 0.023260023444890976, 0.0024560969322919846, 0.022261884063482285, -0.05526778846979141, 0.02577219530940056, -0.001298843533731997, -0.017125388607382774, -0.0075365169905126095, -0.008770172484219074, 0.02186935767531395, -0.0010829537641257048, -0.02518901228904724, -0.008472973480820656, -0.010278597474098206, 0.03155916556715965, -0.029764754697680473, -0.017282400280237198, -0.0067626782692968845, 0.08864379674196243, -0.1033579483628273, -0.007547731976956129, 0.052576176822185516, -0.008775779977440834, -0.011607581749558449, 0.0254806037992239, -0.02911428175866604, -0.014332840219140053, -0.015858087688684464, -0.0301236379891634, 0.023731056600809097, -0.04526396095752716, 0.0036084437742829323, 0.001739735365845263, 0.012661796994507313, -0.04571256414055824, 0.023080583661794662, -0.05840800702571869, 0.006381366401910782, 0.03492368012666702, -0.003274796064943075, -0.03501340001821518, -0.0033140487503260374, 0.003897231537848711, -0.011899173259735107, 0.00656080711632967, 0.03804146498441696, -0.0468340702354908, 0.03292740136384964, -0.02987690642476082, -0.007205672562122345, 0.010312242433428764, -0.0006539778551086783, -0.018471194431185722, -0.014287980273365974, -0.03712183237075806, 0.055222928524017334, 0.0885092094540596, -0.02105065807700157, -0.005220607854425907, 0.007026231847703457, 0.0054000490345060825, 0.004029008559882641, 0.0019093630835413933, -0.020680561661720276, -0.039207831025123596, -0.019200174137949944, -0.0031822717282921076, 0.027476884424686432, 0.03810875490307808, 0.0100318668410182, -0.06688658893108368, 0.05616499483585358, -0.014086108654737473, 0.06177252158522606, 0.016261829063296318, 0.004533685743808746, -0.043828435242176056, 0.012370205484330654, -0.016138464212417603, -0.024291807785630226, 0.007166420109570026, -0.05481918901205063, -0.044142454862594604, 0.04678921028971672, 0.027858195826411247, -0.015353409573435783, 0.020781496539711952, 0.021555336192250252, 0.03671808913350105, 0.006981371436268091, -0.022699270397424698, 0.006583237089216709, 0.024067508056759834, 0.05477432906627655, -0.03443021699786186, -0.044164884835481644, -0.02723015286028385, -0.012179549783468246, 0.08518955856561661, 0.00978513527661562, -0.00952158123254776, 0.013637506403028965, -0.0001627935271244496, 0.04030690714716911, 0.007121559698134661, 0.011775807477533817, 0.05629957467317581, -0.009314103052020073, 0.008893538266420364, 0.0007009409018792212, -0.01339077576994896, -0.006050521973520517, -0.01143935602158308, 0.031043272465467453, -0.013615076430141926, -0.02134224958717823, -0.010430000722408295, 0.015645001083612442, -0.048000436276197433, -0.018448764458298683, -0.012415065430104733, -0.00976831279695034, 0.030549809336662292, -0.011158979497849941, 0.010744022205471992, 0.005529021844267845, 0.027835765853524208, -0.01271787192672491, 0.04369385167956352, 0.02749931439757347, 0.05253131687641144, 0.018459979444742203, -0.045667704194784164, -0.026400238275527954, -0.003521527163684368, -0.03182832524180412, -0.01771978661417961, -0.011383281089365482, 0.03864707797765732, -0.01326740998774767, -0.01852727122604847, -0.015162753872573376, 0.05226215720176697, 0.04266206920146942, -0.0016528187552466989, 0.05172383412718773, -0.009476721286773682, -0.0022822637110948563, 0.018729140982031822, -0.03137972205877304, 0.018740355968475342, 0.0493013821542263, -0.05683789774775505, -0.05010886490345001, -0.020916076377034187, 0.02343946509063244, -0.028508668765425682, 0.028194647282361984, -0.014164614491164684, 0.03317413106560707, 0.006123419851064682, -0.03440778702497482, -0.016340333968400955, 0.0334208644926548, -0.010839350521564484, -0.05320421978831291, -0.007648667320609093, -0.027454454451799393, 0.019659990444779396, -0.03526013344526291, 0.002957970602437854, -0.014041248708963394, -0.013906667940318584, -0.03577602654695511, 0.015745937824249268, 0.022317958995699883, -0.00573369674384594, 0.02956288494169712, 0.03528256341814995, -0.006314076017588377, 0.031245142221450806, 0.0018308577127754688, 0.022082442417740822, 0.05481918901205063, 0.013312269933521748, -0.07101372629404068, 0.06720060855150223, 0.04997428506612778, -0.009936538524925709, 0.0081253070384264, -0.05836314707994461, -0.021532904356718063, -0.008977651596069336, -0.019895507022738457, 0.025278734043240547, -0.05455002561211586, 3.476228812360205e-05, -0.03902839124202728, 0.02828436903655529, 0.009095409885048866, -0.04809015616774559, -0.006224355194717646, 0.03402647748589516, -0.01797773316502571, 0.006628097500652075, -0.008456151001155376, 0.005237430799752474, 0.01144496351480484, -0.00990289356559515, -0.016800152137875557, -0.019245034083724022, 0.006628097500652075, -0.04452376812696457, 0.000946971180383116, -0.026153508573770523, -0.016329118981957436, -0.04176486283540726, -0.04840417578816414, -0.018157172948122025, 0.004614994861185551, -0.022766562178730965, -0.004264524672180414, -0.02469555102288723, -0.023551614955067635, 0.034833960235118866, 0.01822446472942829, 0.004351441282778978, 0.06020241603255272, 0.04665462672710419, 0.06092017889022827, 0.042325615882873535, 0.05706219747662544, -0.03918540105223656, 0.03573116287589073, 0.0344526469707489, 0.010805705562233925, 0.004488825798034668, -0.035888176411390305, -0.04625088721513748, -0.013772087171673775, 0.03956671431660652, -0.024089938029646873, -0.029181573539972305, -0.04656490683555603, -0.03155916556715965, -0.015420700423419476, 0.01145617850124836, -0.014287980273365974, -0.004920605104416609, -0.04607144370675087, 0.058004263788461685, -0.023820776492357254, 0.021286174654960632, 0.03380217403173447, -0.019962796941399574, -0.03362273424863815, 0.002649556612595916, 0.023618904873728752, 0.031738605350255966, -0.008815033361315727, 0.017573991790413857, -0.031065702438354492, -0.015790797770023346, 0.04306580871343613, 0.04710322991013527, 0.017147818580269814, 0.010721592232584953, -0.03828819841146469, -0.004432750400155783, 0.041518133133649826, 0.03337600454688072, 0.011035613715648651, -0.018145957961678505, -0.04041905701160431, 0.018471194431185722, -0.031177852302789688, -0.05172383412718773, 0.011775807477533817, 0.03902839124202728, -0.009975790977478027, -0.013424420729279518, 0.011400103569030762, 0.052127573639154434, -0.01286366768181324, -0.03447507694363594, 0.038983531296253204, 0.025547895580530167, -0.05226215720176697, -0.01616089418530464, 0.008932790718972683, -0.00585986627265811, 0.03032550774514675, 0.00848979689180851, -0.01568986102938652, -0.0032888147979974747, 0.03503582999110222, -0.014041248708963394, -0.045151811093091965, -0.0344526469707489, 0.022744130343198776, 0.027364734560251236, 0.005408460274338722, -0.005786968395113945, 0.03398161754012108, -0.010003828443586826, -0.03469938039779663, 0.04862847924232483, 0.01491602323949337, -0.020198313519358635, -0.023506755009293556, -0.00726735545322299, -0.01958148553967476, 0.022037582471966743, 0.0020088967867195606, 0.012650582008063793, 0.011730947531759739, -0.03824333846569061, 0.014512280933558941, -0.011097297072410583, -0.03642649948596954, -0.022037582471966743, 0.03317413106560707, 0.018987087532877922, -0.020276818424463272, 0.01311039924621582, 0.014299195259809494, -0.002090205904096365, 0.0028822689782828093, 0.01620575413107872, -0.013301054947078228, 0.024493679404258728, 0.0005796781624667346, 0.009358962997794151, -0.010401963256299496, 0.020691776648163795, -0.02009737864136696, -0.00938139297068119, 0.0077552106231451035, 0.010934678837656975, -0.046430326998233795, 0.04214617609977722, 0.0005172943929210305, -0.01778707653284073, 0.009454291313886642, 0.02061326988041401, 0.014097323641180992, 0.02417965792119503, 0.045174241065979004, -0.00016805058112367988, 0.019155314192175865, 0.0041944305412471294, -0.0024813308846205473, -0.008803818374872208, -0.013289839960634708, -0.003067317418754101, 0.02004130370914936, 0.012302915565669537, 0.006656134966760874, 0.014501065947115421, -0.01747305504977703, 0.04297608882188797, 0.05629957467317581, -0.007250532973557711, 0.010272989980876446, 0.0033336749766021967, 0.021779635921120644, -0.002203758340328932, 0.013301054947078228, 0.011820667423307896, -0.014882377348840237, -0.0027420809492468834, -0.014859947375953197, 0.025256304070353508, -0.01721510849893093, -0.0008768771076574922, 0.019458120688796043, -0.015308549627661705, 0.026826411485671997, 0.03882652148604393, -0.01131038274616003, -0.034071337431669235, 0.029428303241729736, -0.0226431954652071, -0.0022331976797431707, -0.03828819841146469, 0.039432134479284286, -0.007766425609588623, 0.009123447351157665, -0.0010247756727039814, -2.7468122425489128e-05, 0.0011642628815025091, -0.011231877841055393, -0.00045876583317294717, -0.062714584171772, -0.004090691450983286, -0.01313282921910286, -0.016003882512450218, 0.017910443246364594, -0.004326207563281059, 0.016654357314109802, -0.022990861907601357, -0.024583399295806885, 0.02956288494169712, 0.024560969322919846, -0.01120944693684578, 0.012493571266531944, 0.05472946912050247, -0.013917882926762104, 0.016048744320869446, -0.005318739917129278, 0.03209748864173889, 0.042078886181116104, 0.024089938029646873, 0.01646370068192482, 0.006302861031144857, 0.004634621553122997, -0.00417200056836009, -0.014882377348840237, 0.030303077772259712, -0.051050931215286255, 0.039275120943784714, -0.0011074866633862257, -0.002129458589479327, 0.02543574385344982, 0.026938561350107193, -0.025054432451725006, -0.028643250465393066, 0.02265441045165062, -0.016329118981957436, 0.030415229499340057, -0.01804502308368683, 0.003019653493538499, 0.0028934841975569725, -0.027611464262008667, -0.00321311317384243, -0.003762651002034545, -0.060112692415714264, -0.01004308182746172, 0.008641200140118599, -0.054684605449438095, -0.02491985261440277, -0.02054597996175289, -0.04445647820830345, 0.011663656681776047, -0.05226215720176697, -0.007172027602791786, -0.025547895580530167, -0.01955905556678772, -0.0027336697094142437, 0.012179549783468246, -0.02185814268887043, -0.012179549783468246, 0.03725641220808029, -0.04172000288963318, -0.002578060608357191, -0.01906559243798256, -0.01854970119893551, 0.010906640440225601, 0.026624539867043495, 0.010710377246141434, -0.012930958531796932, 0.008130914531648159, -0.0319853350520134, -0.010289812460541725, -0.00836082361638546, -0.038961101323366165, 0.028104927390813828, 0.005910333711653948, 0.018325399607419968, -0.032007765024900436, -0.00977952778339386, 0.01932353898882866, -0.006751462817192078, 0.03326385095715523, 0.05634443461894989, -0.019435690715909004, -0.0231030136346817, -0.0049935029819607735, -0.03191804513335228, -0.017562774941325188, -0.025099292397499084, -0.009409431368112564, -0.017293615266680717, -0.02832922898232937, 0.013839378021657467, -0.012628152035176754, -0.04243776574730873, 0.037974175065755844, -0.01672164723277092, -0.015151538886129856, 0.027835765853524208, -0.0117085175588727, -0.009358962997794151, -0.026310518383979797, 0.0035579761024564505, -0.008658022619783878, 0.02518901228904724, -0.03373488411307335, -0.0010801500175148249, -0.007665489800274372, 0.026669399812817574, 0.02088243141770363, -0.034385357052087784, -0.033600304275751114, -0.019402043893933296, -0.0007563152466900647, -0.022710485383868217, -0.04225832596421242, 0.0004773407708853483, -0.003171056741848588, -0.025592755526304245, -0.014164614491164684, 0.0007149597513489425, 0.007491656579077244, -0.028104927390813828, 0.034856390208005905, -0.016295474022626877, 0.0057084630243480206, -0.006863613612949848, -0.02312544360756874, -0.008590731769800186, -0.004110317677259445, -0.0008691667462699115, 0.015454345382750034, -0.013200119137763977, 0.020400185137987137, 0.02911428175866604, 0.028351658955216408, 0.010934678837656975, 0.037435851991176605, 0.017854366451501846, 0.021544121205806732, -0.04295365884900093, 0.015622571110725403, 0.021263744682073593, 0.019917936995625496, -0.028889982029795647, 0.013648721389472485, 0.03478910028934479, 0.00042336832848377526, 0.03530499339103699, 0.011730947531759739, -0.04737239331007004, 0.002074785064905882, -0.023798346519470215, -0.00500471843406558, 0.008843070827424526, -0.021936647593975067, -0.012572076171636581, 0.00238460092805326, 0.03519284352660179, -0.010435608215630054, -0.001278516254387796, 0.018112313002347946, 0.05127523094415665, -0.012572076171636581, -0.009975790977478027, -0.014456206001341343, -0.00965055450797081, -0.05248645693063736, 0.017394550144672394, -0.0004962661769241095, -0.015869302675127983, -0.02268805541098118, -0.007575769443064928, -0.015353409573435783, 0.01798894815146923, -0.03292740136384964, 0.027903055772185326, 0.02417965792119503, 0.06886043399572372, -0.022172164171934128, -0.03108813241124153, -0.004945839289575815, 0.005876688752323389, -0.010093549266457558, -0.04575742408633232, 0.02936101332306862, -0.04791071265935898, 0.043873295187950134, -0.0013051519636064768, -0.011607581749558449, -0.0032944222912192345, -0.0007794463308528066, -0.007211280055344105, -0.010805705562233925, 0.0002085299202008173, -0.042034026235342026, -0.04452376812696457, 0.017304830253124237, -0.0060841673985123634, -0.015846872702240944, 0.00976831279695034, -0.01598145253956318, -0.0026257247664034367, 0.03575359657406807, -0.004721538163721561, 0.0055542560294270515, -0.017551559954881668, 4.6919234591769055e-05, 0.010957108810544014, -0.03162645548582077, -0.01323376502841711, -0.013301054947078228, 0.02105065807700157, -0.018650636076927185, 0.002684603678062558, -0.006398188881576061, -0.018594561144709587, -0.011355242691934109, -0.01300946343690157, 0.025346023961901665, 0.03674051910638809, -0.0008348206174559891, -0.03530499339103699, 0.01777586154639721, 0.03400404751300812, -0.04499480128288269, 0.020142238587141037, -0.03160402551293373, 0.046968650072813034, 0.01001504436135292, 0.014310410246253014, -0.002821988193318248, -0.008545871824026108, 0.014063678681850433, -0.04526396095752716, 0.00786175299435854, 0.015308549627661705, -0.0050271484069526196, 0.010867387987673283, -0.010609441436827183, 0.03499097004532814, -0.003016849746927619, 0.05553695186972618, 0.014456206001341343, 0.017360905185341835, -0.009201952256262302, 0.027364734560251236, 0.00047628936590626836, -0.021802065894007683, -0.0065103392116725445, 0.01722632348537445, 0.01927867904305458, 0.029630174860358238, -0.010772060602903366, -0.016587065532803535, 0.01118701696395874, -0.03440778702497482, 0.028665680438280106, -0.013536571525037289, -0.014478635974228382, -0.0036084437742829323, 0.01746184006333351, 0.014972098171710968, 0.029248863458633423, 0.03988073393702507, 0.023574044927954674, -0.0014467420987784863, -0.03131243214011192, -0.004253309685736895, 0.010121586732566357, -0.0006760575342923403, -0.008988866582512856, -0.01721510849893093, 0.02731987275183201, -0.03543957322835922, 0.013547786511480808, 0.028508668765425682, 0.010744022205471992, -0.006370150949805975, -0.014736581593751907, 0.00965055450797081, 0.005543041042983532, 0.047237809747457504, -0.014030033722519875, 0.010323458351194859, -0.019200174137949944, -0.007682312745600939, -0.05706219747662544, -0.006342113483697176, 0.03521527349948883, -0.0008747742976993322, 0.012101043947041035, 0.015073033981025219, 0.02241889387369156, 0.04216860607266426, 0.04288636893033981, 0.0030504949390888214, 0.0018042218871414661, -0.010671124793589115, -0.048538755625486374, -0.05688275769352913, 0.013413205742835999, -0.041562993079423904, -0.027880625799298286, -0.016889872029423714, 0.04611630365252495, 0.008327178657054901, 0.05091634765267372, 0.029405873268842697, 0.0011530477786436677, -0.0010808509541675448, 0.00810287706553936, 0.0075925919227302074, -0.032815251499414444, 0.007211280055344105, -0.05625471472740173, -0.015039388090372086, -0.024538539350032806, -0.00476079061627388, -0.012560861185193062, -0.004337422549724579, 0.029989056289196014, -0.008074839599430561, 0.020366540178656578, -0.01427676435559988, -0.004662659019231796, 0.008198205381631851, -0.019245034083724022, -0.03236664831638336, 0.027835765853524208, 0.036919958889484406, 0.017383335158228874, 0.0234170351177454, 0.007020624354481697, 0.03090869076550007, 0.006370150949805975, 0.025637615472078323, -0.016620710492134094, 0.06522675603628159, 0.040217187255620956, -0.04210131615400314, 0.009280458092689514, 0.0001230151392519474, 0.02622079849243164, -0.011265522800385952, -0.012493571266531944, 0.03420591726899147, 0.04728266969323158, -0.0075365169905126095, -0.0157347209751606, 0.03736856207251549, -0.009863641113042831, 0.057465940713882446, -0.011887958273291588, 0.009201952256262302, 0.019357183948159218, 0.02393292635679245, -0.011540291830897331, 0.0008425309788435698, 0.04118167981505394, -0.012044969014823437, 0.03398161754012108, -0.028508668765425682, 0.020714206621050835, 0.0009357561357319355, -0.03185075521469116, 0.014949668198823929, 0.014108538627624512, -0.03790688514709473, 0.012459926307201385, 0.01776464655995369, -0.04349198192358017, 0.04037419706583023, -0.005921549163758755, 0.054370585829019547, 0.012269269675016403, 0.005786968395113945, -0.0017439409857615829, 0.003981344401836395, -0.015016958117485046, 0.002795352367684245, 0.016620710492134094, -0.016104819253087044, 0.02700585126876831, 0.02364133484661579, 0.018953442573547363, 0.005430890247225761, -0.03505825996398926, -0.01955905556678772, -0.04006017744541168, 0.01878521591424942, 0.00083692348562181, -0.00795708131045103, 0.008585124276578426, 0.034901250153779984, 0.007872968912124634, 0.015846872702240944, -0.011355242691934109, -0.018605776131153107, 0.0013380962191149592, 0.03211991861462593, 0.016564635559916496, 0.03472181037068367, 0.021667486056685448, -0.015824442729353905, -0.0005348179256543517, -0.009611302055418491, 0.02312544360756874, 0.016340333968400955, 0.013805732131004333, 0.014254334382712841, -0.015151538886129856, -0.024269377812743187, 0.015835657715797424, 0.004202841781079769, 0.04091252014040947, -0.023529184982180595, 0.006258000619709492, -0.04678921028971672, -0.0035075084306299686, 0.02799277752637863, 0.014635646715760231, 0.005820613354444504, 0.028508668765425682, -0.001143935602158308, 0.029002131894230843, -0.015835657715797424, -0.04326768219470978, -0.016071174293756485, -0.052621036767959595, -0.022172164171934128, -0.010446823202073574, -0.0037065756041556597, -0.018886152654886246, 0.028620820492506027, -0.015521636232733727, 0.005643976386636496, -0.010704769752919674, 0.048000436276197433, -0.001253282418474555, -0.062131404876708984, 0.015028173103928566, 0.018347829580307007, 0.025615185499191284, -0.03317413106560707, 0.009437468834221363, -0.003283207304775715, 0.02267684042453766, 0.026871271431446075, 0.026803981512784958, -0.03086383081972599, -0.022003937512636185, 0.005475750658661127, 0.009829995222389698, 0.0033056375104933977, 0.0323890782892704, 0.011809452436864376, -0.02135346457362175, -0.027454454451799393, -0.036628369241952896, 0.00321591692045331, 0.016643140465021133, -0.014759012497961521, -0.004514059517532587, 0.017585206776857376, 0.005815005861222744, 0.0016416036523878574, 0.008450543507933617, 0.018415119498968124, 0.027095573022961617, -0.01142814103513956, 0.02474041096866131, -0.004135551396757364, -0.0021631037816405296, 0.0008467366569675505, -0.01616089418530464, -0.007805678062140942, 0.01490480825304985, 0.00027844877331517637, 0.008848678320646286, -0.019379613921046257, -0.009364570491015911, 0.014635646715760231, 0.004870137665420771, -0.0034009653609246016, -0.004968269262462854, 0.0027855392545461655, 0.017046883702278137, 0.0421910360455513, 0.00019521205103956163, -0.028889982029795647, -0.02574976533651352, 0.017562774941325188, 0.004612191114574671, -0.013323484919965267, -0.0231030136346817, -0.020411400124430656, -0.0018196426099166274, -0.0008915968355722725, -0.0017944087740033865, -0.01592537760734558, 0.014815087430179119, -0.006319683510810137, 0.029450733214616776, -0.019424475729465485, -0.036897528916597366, -0.005411264020949602, -0.015476775355637074, -0.0015743132680654526, 0.0004573639598675072, 0.023237593472003937, -0.06361179053783417, 0.010547759011387825, 0.0033000297844409943, -0.009678591974079609, 0.010671124793589115, -0.008063624612987041, 0.020276818424463272, -0.023775916546583176, 0.0004706818435806781, -0.008416898548603058, 0.0726286917924881, 0.0020831965375691652, -0.011798237450420856, -0.006717817857861519, 0.056972477585077286, -0.0037121830973774195, 0.023035721853375435, 0.004491629544645548, 0.03034793771803379, 0.04057606682181358, -0.024336669594049454, 0.026153508573770523, -0.018673066049814224, 0.019626345485448837, 0.013996388763189316, -0.0064823017455637455, 0.013659936375916004, 0.03039279766380787, 0.028104927390813828, 0.046923790127038956, 0.013144044205546379, -0.0190880224108696, 0.0067290328443050385, 0.015218829736113548, 0.012482356280088425, -0.03579845651984215, -0.0010205699363723397, 0.014826302416622639, -0.017932873219251633, 0.03319656103849411, -0.03402647748589516, -0.006241178140044212, -0.02417965792119503, -0.02673669159412384, -0.009970183484256268, -0.02749931439757347, -0.009869248606264591, 0.01900951750576496, 0.04320039227604866, -0.004522470757365227, -0.021431969478726387, 0.00949915125966072, 0.0016444073989987373, -0.002817782573401928, 0.013502925634384155, 0.008949614129960537, -0.014725366607308388, 0.009330925531685352, 0.013514140620827675, -0.003630873980000615, -0.00015052706294227391, -0.000594397890381515, -0.01617210917174816, -0.014130968600511551, -0.02911428175866604, -0.00975709781050682, 0.020635701715946198, -0.018908582627773285, 0.005265468265861273, 0.012314130552113056, -0.026579679921269417, -0.00119089859072119, -0.016777722164988518, 0.02001887373626232, -0.04062092676758766, 0.013794517144560814, -0.01931232400238514, 0.006628097500652075, 0.004326207563281059, 0.007884183898568153, -0.002043943852186203, -0.04288636893033981, -0.02186935767531395, 0.014444991014897823, -0.015487990342080593, -0.005899118725210428, 0.013357129879295826, 0.0198057871311903, -0.01620575413107872, 0.006016877014189959, 0.0031402152962982655, -0.016059959307312965, 0.06845669448375702, 0.01979457214474678, 0.006499124225229025, 0.01118701696395874, -0.0017747824313119054, 0.01976092718541622, 0.0028738577384501696, 0.036134906113147736, -0.027364734560251236, -0.012044969014823437, 0.0068187532015144825, -0.03283768147230148, 0.02236281894147396, -0.025256304070353508, -0.034833960235118866, -0.021544121205806732, 0.002112635876983404, -0.006667349953204393, 0.019345968961715698, 0.003412180347368121, 0.005551452282816172, 0.008792603388428688, 0.017428195104002953, -0.008854285813868046, 0.008753350004553795, -0.008304747752845287, -0.018392689526081085, -0.01721510849893093, 0.008203812874853611, -0.010615048930048943, 0.012628152035176754, 0.0025458175223320723, -0.04551069065928459, -0.05297992005944252, -0.0100318668410182, -0.025861917063593864, 0.03786202520132065, 0.022497400641441345, 0.009426253847777843, -0.007800070568919182, -0.01300946343690157, -0.015196398831903934, 0.024291807785630226, -0.010828135535120964, -0.015241259709000587, 0.020108593627810478, 0.03660593926906586, -0.020119808614253998, 0.015207614749670029, 0.01427676435559988, 0.00834960862994194, -0.01856091618537903, 0.00417480431497097, -0.016127249225974083, 0.011080474592745304, 0.008041194640100002, -0.022822637110948563, -0.020770281553268433, -0.02135346457362175, 0.017843151465058327, -0.010295419953763485, -0.02985447645187378, -0.023731056600809097, 0.016093604266643524, -0.012258054688572884, -0.015768367797136307, 0.006314076017588377, 0.006958941463381052, -0.03629191592335701, -0.0033533014357089996, -0.022441323846578598, 0.01798894815146923, 0.027476884424686432, -7.701588765485212e-05, 0.027835765853524208, -0.0018883348675444722, 0.006773893255740404, 0.00020327286620158702, -0.013637506403028965, 0.002913110423833132, -0.008282317779958248, -0.0014039847301319242, -0.01326740998774767, -0.006661742459982634, 0.0011972071370109916, 0.023304883390665054, 0.009157092310488224, -0.030729250982403755, 0.031514305621385574, -0.011226269416511059, 0.02725258283317089, 0.007693527732044458, -0.01427676435559988, 0.002220580819994211, -0.012325345538556576, 0.012549646198749542, -0.0703408271074295, 0.026355378329753876, 0.03907325118780136, -0.002135066082701087, 0.0111926244571805, -0.005324347410351038, -0.005904726218432188, 0.0011369262356311083, -0.01907680742442608, 0.001476181554608047, -0.011153372004628181, 0.0046206023544073105, 0.039275120943784714, 0.021488044410943985, 0.02395535632967949, -0.01880764774978161, -0.007822500541806221, -0.03781716525554657, 0.002198150847107172, -0.014287980273365974, 0.04880791902542114, -0.0005653088446706533, 0.01297581847757101, -0.02417965792119503, -0.04831445589661598, -0.015487990342080593, -0.01171973254531622, -0.01171973254531622, 0.0013605263084173203, -0.023282453417778015, 0.027925485745072365, 0.008607554249465466, 0.05266589671373367, 0.0003564284706953913, 0.020433830097317696, 0.04174243286252022, 0.03034793771803379, -0.0023425444960594177, 0.024134797975420952, 0.022217024117708206, 0.023865636438131332, -0.035865746438503265, -0.03088626079261303, 0.009403823874890804, 0.008921575732529163, -0.046475186944007874, 0.022239454090595245, 0.003647696692496538, -0.03687509894371033, 0.012706656940281391, -0.022732915356755257, -0.04241533577442169, 0.025301164016127586, -0.0064206188544631, 0.0009946351638063788, -0.017293615266680717, -0.015420700423419476, -0.0016233791830018163, -0.012101043947041035, -0.0013836573343724012, -0.000814493338111788, 0.020119808614253998, 0.0032047019340097904, -1.2529319064924493e-05, -0.005383226089179516, -0.019951581954956055, -0.006241178140044212, 0.039432134479284286, -0.022721700370311737, -0.010351495817303658, 0.0301236379891634, -0.01274030189961195, -0.011254307813942432, -0.02911428175866604, -0.03189561516046524, 0.007575769443064928, -0.001169870374724269, -0.021734775975346565, 0.020680561661720276, -0.016373980790376663, -0.012044969014823437, -0.02054597996175289, 0.03061709925532341, -0.061099618673324585, 0.010811313055455685, 0.02646753005683422, 0.020983368158340454, 0.006678564939647913, -0.001255385228432715, -0.001276413444429636, -0.039207831025123596, -0.00010996010678354651, 0.00322152441367507, -0.008428113535046577, 0.006358935963362455, 0.0070710922591388226, -0.01274030189961195, -0.015319764614105225, -0.02465069107711315, 0.0231030136346817, 0.014063678681850433, -0.026175938546657562, -0.0018897367408499122, 0.03084140084683895, 0.04302094876766205, 0.005887903738766909, 0.015173968859016895, 0.023551614955067635, -0.027633894234895706, -0.020658131688833237, 0.013704797253012657, -0.0038691938389092684, 0.038938671350479126, 0.01571229100227356, 0.052576176822185516, 0.01323376502841711, -0.024830130860209465, 0.0032719923183321953, 0.012269269675016403, -0.0015476775588467717, 0.0008053811034187675, 0.0040374197997152805, -0.03595546633005142, -0.009353355504572392, 0.00713277468457818, 0.021992722526192665, -0.0038271374069154263, 0.02577219530940056, -0.01695716194808483, -0.0006361039122566581, 0.0002907152520492673, -0.036919958889484406, -0.01145617850124836, -0.0013955733738839626, -0.0015560887986794114, -0.012403850443661213, 0.02776847593486309, -0.0017074920469895005, -0.042034026235342026, -0.014130968600511551, 0.04113681986927986, 0.047192949801683426, -0.007586984429508448, 0.01725996844470501, -0.0059271566569805145, -0.029697464779019356, 0.009370177984237671, -0.03501340001821518, -0.0044748070649802685, 0.0001749723742250353, -0.0002952713693957776, -0.0014663684414699674, 0.011097297072410583, 0.013323484919965267, -0.003897231537848711, -0.05383226275444031, 0.01722632348537445, 0.011944033205509186, 0.0001992424513446167, 0.006936511490494013, 0.004844903480261564, 0.0019247838063165545, -0.0042561134323477745, -0.007609414868056774, -0.030303077772259712, 0.02080392651259899, -0.008972044102847576, 0.03155916556715965, -0.013772087171673775, 0.006224355194717646, -0.02189178764820099, 0.001319871749728918, 0.03499097004532814, 0.024628261104226112, -0.023372173309326172, 0.021151592954993248, 0.019458120688796043, -0.001985064707696438, 0.015364625491201878, 0.004225271753966808, 0.044164884835481644, 0.0034261993132531643, -0.0062636081129312515, 0.008686060085892677, -0.01004308182746172, 0.005683228839188814, 0.0038916240446269512, 0.016340333968400955, -0.006140242330729961, 0.011495430953800678, -0.00031349583878181875, 0.029989056289196014, 0.014815087430179119, -0.030415229499340057, 0.005537433084100485, 0.01565621607005596, 0.006381366401910782, -0.027701186016201973, 0.006459871772676706, 0.01592537760734558, -0.03315170109272003, 0.007093522232025862, 0.04187701642513275, -0.024359099566936493, 0.025390883907675743, -0.02107308804988861, 0.01823567971587181, -0.024134797975420952, 0.021039443090558052, -0.019626345485448837, -0.0025794627144932747], [0.022946137934923172, 0.02120603807270527, 0.007668047212064266, 0.025614295154809952, -0.06101955845952034, -0.009512554854154587, -0.011971898376941681, 0.004866484086960554, 0.014303634874522686, 0.06482458114624023, -0.01592773012816906, -0.02160046063363552, -0.005130399484187365, 0.005083996802568436, -0.04951168969273567, 0.003320693736895919, 0.0007152542239055037, 0.029256906360387802, -0.01046381052583456, 0.00695460569113493, 0.028932087123394012, 0.040370356291532516, -0.026310335844755173, 0.002840715693309903, -0.015394098125398159, -0.03050977922976017, 0.036658138036727905, -0.05470879003405571, 0.028676873072981834, -0.04637950658798218, 0.07851338386535645, -0.020417191088199615, 0.020370788872241974, -0.021298842504620552, 0.01425723172724247, 0.008509096689522266, 0.01145566813647747, -0.007128615863621235, 0.03287631645798683, -0.009721366688609123, -0.03624051436781883, 0.04751637205481529, -0.014674856327474117, -0.055590443313121796, -0.005507421214133501, 0.04415217414498329, 0.04020794481039047, -0.03886226564645767, -0.008132074028253555, 0.02619432844221592, 0.008503296412527561, 0.05972028523683548, -0.02951212227344513, -0.010098389349877834, 0.010545015335083008, -0.012795546092092991, -0.01596253179013729, 0.03617091104388237, 0.021704865619540215, -0.012656338512897491, -0.005936646368354559, -0.05577605217695236, -0.01696018874645233, 0.006844399496912956, 0.00863090343773365, 0.015614510513842106, 0.03577648848295212, 0.02092762105166912, -0.005417515989392996, 0.013549590483307838, 0.004277749452739954, 0.01954714022576809, 0.018166659399867058, -0.032017868012189865, -0.0682583823800087, 0.0028639170341193676, 0.017076196148991585, -0.023746585473418236, 0.0020895719062536955, -0.006496379151940346, -0.016159743070602417, -0.0212408397346735, -0.0245470330119133, 0.014721258543431759, -0.011159851215779781, 0.012505529448390007, -0.06626306474208832, -0.024987857788801193, -0.005301509518176317, -0.02323615550994873, -0.06320048868656158, -0.006502179428935051, -0.04334012791514397, 0.025405481457710266, -0.001631345134228468, 0.002144675236195326, 0.06519580632448196, 0.003007475519552827, -0.046634722501039505, 0.04322412237524986, 0.019454335793852806, -0.020127173513174057, -0.029976148158311844, 0.03521965444087982, 0.029929745942354202, -0.012644737958908081, -0.027029577642679214, 0.06802637130022049, 0.0026435041800141335, -0.032644305378198624, 0.07582202553749084, -0.024709440767765045, -0.0205680001527071, 0.05707532912492752, -0.017493819817900658, -0.006409374065697193, -0.002804463729262352, -0.017969448119401932, -0.0006307868170551956, -0.005466818809509277, -0.045938681811094284, -0.03614770993590355, 0.0384446419775486, -0.0844065248966217, 0.036982957273721695, -0.02382778935134411, -0.006826998200267553, 0.021681664511561394, -0.0325050950050354, -0.006461577024310827, 0.05299189314246178, -0.04675072804093361, 0.0498829111456871, -0.03322433680295944, 0.0330619290471077, 0.004933187738060951, 0.04610108956694603, -0.008845516480505466, 0.009129732847213745, -0.014361637644469738, 0.04375775158405304, -0.0016081437934190035, 0.050254132598638535, -0.013723600655794144, -0.04076477885246277, 0.05020773038268089, 0.004756277427077293, 0.01926872506737709, -0.02053319849073887, 0.011902294121682644, -0.016101740300655365, 0.008166876621544361, 0.028282450512051582, -0.025405481457710266, 0.013897610828280449, 0.005362412892282009, 0.00729102548211813, 0.046588316559791565, 0.023375364020466805, 0.013224771246314049, -0.03758619353175163, 0.006867600604891777, -0.03115941770374775, -0.054569583386182785, 0.01851467974483967, -0.016496162861585617, -0.01820146106183529, 0.009239939041435719, -0.03682054951786995, -0.031043410301208496, -0.051182184368371964, -0.01896710693836212, -0.006148358806967735, -0.048258814960718155, 0.00447786133736372, -0.05531202629208565, 0.052899084985256195, -0.0046112691052258015, -0.006333969533443451, 0.04475541040301323, -0.009077529422938824, 0.0034512013662606478, -0.09118132293224335, -0.04322412237524986, -0.01392081193625927, 0.031693048775196075, 0.0027943130116909742, -0.014686456881463528, -0.030927404761314392, -0.04410577192902565, 0.0014464594423770905, -0.02786482498049736, -0.0077956547029316425, 0.014361637644469738, -0.015475302934646606, -0.006119356956332922, -0.018711891025304794, 0.009553157724440098, 0.06491738557815552, -0.018062254413962364, 0.024732643738389015, -0.03621731325984001, -0.00014056757208891213, -0.01918751932680607, -0.059534672647714615, -0.0001561559911351651, 0.03482523187994957, 0.010991641320288181, 0.02953532338142395, -0.00946035236120224, 0.012482328340411186, 0.016797779127955437, -0.04187844321131706, 0.0330619290471077, -0.024152608588337898, 0.041298408061265945, 0.011235255748033524, 0.01278394553810358, 0.019419532269239426, 0.033989984542131424, -0.034059587866067886, -0.026426341384649277, 0.015034477226436138, -0.017470618709921837, -0.01312036532908678, -0.04668112471699715, 0.015614510513842106, -0.006188961211591959, 0.008364087902009487, -0.04974370077252388, -0.001402231864631176, 0.03419879451394081, -0.030068954452872276, -0.03770219907164574, 0.04252808168530464, 0.0028334653470665216, -0.0053450120612978935, -0.04807320609688759, 0.02026638202369213, -0.00980257149785757, 0.015115682035684586, 0.014790862798690796, -0.00310608115978539, 0.0010404357453808188, 0.04139121621847153, -0.008485894650220871, -0.02686716802418232, -0.009872175753116608, 0.046588316559791565, -0.04006873816251755, -0.02721518836915493, -0.049975715577602386, 0.07739971578121185, -0.08505616337060928, 0.010910436511039734, 0.026611952111124992, 0.0054204161278903484, -0.04603148624300957, 0.01526649110019207, -0.011583276093006134, -0.006078754551708698, -0.014628453180193901, -0.0053885141387581825, -0.005669830832630396, -0.05470879003405571, -0.003744118381291628, 0.018340669572353363, 0.022076087072491646, -0.027632812038064003, 0.03257470205426216, -0.035196453332901, 0.011705082841217518, -0.0024825448635965586, -0.0013159518130123615, -0.039627913385629654, 0.0195587407797575, 0.02754000760614872, -0.04276009649038315, -0.021414849907159805, 0.03053298220038414, -0.049604494124650955, -0.027957631275057793, -0.02647274360060692, -0.046217095106840134, 0.021658463403582573, 0.005678531248122454, 0.0010375354904681444, -0.017122598364949226, -0.014350037090480328, 0.02257491648197174, 0.07187779247760773, -0.004292250610888004, -0.001453709788620472, 0.00023436991614289582, 0.031716249883174896, 0.019709549844264984, -0.07002168148756027, 0.00126592384185642, -0.04983650892972946, -0.026379939168691635, -0.03825903311371803, 0.03904787823557854, 0.046217095106840134, -0.02923370525240898, -0.06046272814273834, 0.02392059564590454, 0.038003817200660706, 0.055219221860170364, 0.019036710262298584, 0.01859588548541069, -0.0077666533179581165, 0.02823604643344879, 0.021774470806121826, -0.0450570285320282, 0.00538561400026083, -0.01886270008981228, -0.05934906378388405, 0.04215686023235321, 0.010945238173007965, 0.005980148911476135, 0.05466238781809807, 0.0068501997739076614, 0.030672188848257065, -0.006403573788702488, 0.0165889672935009, -0.010266599245369434, 0.041321609169244766, 0.04050956293940544, -0.050903771072626114, -0.05006852000951767, -0.026124723255634308, -0.01011579018086195, 0.04839802533388138, -0.017366213724017143, -0.04252808168530464, -0.024755844846367836, 0.03914068266749382, 0.006310767959803343, 0.03273710981011391, -0.00930374301970005, 0.03686695173382759, 0.02491825446486473, -0.009257339872419834, -0.010748026892542839, -0.0006916903657838702, 0.01824786514043808, 0.012737543322145939, 0.04784119129180908, -0.012482328340411186, 0.013828006573021412, -0.00406893715262413, 0.018108656629920006, -0.08756190538406372, 0.004544564988464117, -0.0338507741689682, -0.03294592350721359, 0.03716856986284256, -0.022818531841039658, -0.0022360305301845074, 0.0010534864850342274, 0.010376805439591408, -0.011391864158213139, 0.05846741050481796, 0.03491803631186485, 0.01660056784749031, 0.011745685711503029, -0.008091472089290619, -0.006438375450670719, 0.009141333401203156, -0.027122382074594498, 0.04798039793968201, -0.018653888255357742, 0.0228649340569973, -0.035382065922021866, -0.02292293682694435, -0.01926872506737709, -0.02818964421749115, 0.027656013146042824, -0.023108547553420067, 0.018456676974892616, -0.037678997963666916, -0.004158842843025923, 0.014489245600998402, 0.04306171089410782, 0.015196886844933033, 0.028932087123394012, -0.06830478459596634, -0.033711567521095276, 0.01426883228123188, 0.00795806385576725, -0.01986035890877247, 0.03482523187994957, 0.010690024122595787, 0.04900125786662102, -0.018445076420903206, 0.01495327241718769, 0.029674531891942024, 0.05767856538295746, -0.010846632532775402, -0.06069473922252655, 0.011983498930931091, -0.046936336904764175, 0.0010491361608728766, -0.009901178069412708, 0.019744351506233215, 0.03340994939208031, 0.011496271006762981, -0.005930846091359854, 0.004869384225457907, 0.003332294523715973, -0.0016182943945750594, 0.0037151167634874582, 0.024709440767765045, -0.0192803256213665, 0.030741794034838676, 0.03781820461153984, 0.007720250636339188, 0.021124832332134247, -0.0070010083727538586, -0.04614749178290367, 0.06737673282623291, 0.012934754602611065, -0.014674856327474117, -0.03651893138885498, -0.02054479904472828, 0.009860575199127197, 0.02417580969631672, -0.06013790890574455, -0.01028400007635355, -0.07665727287530899, -0.014663255773484707, 0.004886785056442022, 0.009506754577159882, -0.021646862849593163, -0.050578951835632324, -0.052203044295310974, -0.0008976023527793586, -0.017841840162873268, -0.012493928894400597, -0.05201743543148041, -0.030741794034838676, -0.031275425106287, 0.027447201311588287, -0.0208464153110981, -0.05294548720121384, 0.005846741143614054, 0.0019416633294895291, -0.0026029017753899097, -0.010388405993580818, -0.02020837925374508, -0.025127066299319267, -0.031994666904211044, -0.0423656702041626, 0.03322433680295944, -0.02584630809724331, 0.01758662611246109, -0.007563641294836998, -0.06468537449836731, 0.029604926705360413, -0.012865150347352028, -0.018793096765875816, 0.06347890198230743, 0.051971033215522766, 0.029999349266290665, 0.0035556075163185596, 0.041623227298259735, 0.0013645295985043049, -0.010492811910808086, 0.003262690268456936, -0.05642569065093994, -0.0034860032610595226, -0.04635630548000336, -0.01957034133374691, -0.021971682086586952, 0.05452318117022514, -0.03447721153497696, -0.0007576692150905728, -0.04619389399886131, 0.003918128553777933, 0.00018370759789831936, 0.023143351078033447, 0.048630036413669586, -0.04568346589803696, -0.010962639935314655, 0.04424498230218887, -0.04020794481039047, 0.03758619353175163, 0.050625354051589966, -0.023990198969841003, -0.02424541488289833, -0.047887593507766724, -0.009373347274959087, 0.01994156278669834, -0.00964016281068325, -0.013387180864810944, 0.000988232670351863, -0.054940804839134216, 0.02158886007964611, 0.04139121621847153, -0.005675631109625101, 0.05271347612142563, -0.05364152789115906, 0.016368554905056953, 0.03296912461519241, 0.019465936347842216, -0.04271369054913521, 0.0225285142660141, -0.01925712265074253, -0.013317576609551907, -0.003079979680478573, -0.06459257006645203, -0.023502971976995468, 0.041298408061265945, -0.010730626061558723, -0.03090420365333557, -0.03549807146191597, 0.005095597356557846, 0.004385055974125862, -0.019326727837324142, 0.02825924940407276, 0.019117916002869606, -0.006101956125348806, -0.0038572249468415976, 0.013735201209783554, -0.014326835982501507, -0.01393241249024868, 0.01921072043478489, -0.034662820398807526, 0.025289475917816162, 0.005452318117022514, -0.0008744010119698942, -0.03173945099115372, -0.08273603022098541, 0.015173684805631638, -0.0030770795419812202, -0.0042139459401369095, -0.024291817098855972, 0.005263807252049446, 0.02318975329399109, -0.04368814826011658, 0.03526605665683746, -0.00846269354224205, -0.020138774067163467, 0.0008628003415651619, 0.01276074443012476, -0.012888351455330849, 0.04352574050426483, -0.0032336886506527662, 0.011020642705261707, 0.0032249882351607084, -0.017818639054894447, 0.01589292660355568, -0.014141225256025791, 0.004474961198866367, -0.0059250458143651485, 0.009912778623402119, 0.0027189087122678757, -0.012029902078211308, 0.012018301524221897, -0.021066829562187195, 0.006461577024310827, 0.01986035890877247, 0.01954714022576809, -0.022342903539538383, 0.0029320709872990847, 0.017818639054894447, 0.0029364214278757572, -0.01323637180030346, 0.001402231864631176, -0.010109989903867245, -0.0054059154354035854, -0.006687790155410767, 0.03589249402284622, -0.042272865772247314, 0.03702935948967934, -0.009344344958662987, 0.011038043536245823, -0.011832689866423607, 0.004086338449269533, 0.03090420365333557, 0.0020997223909944296, 0.06385012716054916, 0.0028624669648706913, -0.011461468413472176, -0.021426450461149216, 0.009732968173921108, -0.01661216840147972, -0.01760982722043991, 0.015602909959852695, -0.006664589047431946, -0.004103739280253649, -0.009721366688609123, 0.0016182943945750594, 0.014210829511284828, 0.011281657963991165, 0.05173901841044426, 0.01992996223270893, 0.014512446708977222, -0.03324753791093826, 0.001998216612264514, -0.017134198918938637, -0.0025086463429033756, 0.014570450410246849, -0.012203912250697613, -0.04876924678683281, -0.011310660280287266, 0.030718592926859856, -0.016345353797078133, -0.020765211433172226, 0.017076196148991585, 0.013062361627817154, 0.01727340742945671, -0.009674964472651482, -0.0364261269569397, -0.05113578215241432, 0.02392059564590454, -0.03874626010656357, -0.020695608109235764, 0.004872284363955259, 0.020475193858146667, -0.015800122171640396, -0.010556615889072418, -0.013004358857870102, -0.006571783218532801, -0.009187735617160797, -0.02194848097860813, -0.02121763862669468, -0.0490940660238266, 0.030741794034838676, -0.036356519907712936, 0.002695707371458411, -0.00027896001120097935, -0.016832582652568817, 0.013375580310821533, -0.005913444794714451, -0.0070474110543727875, 0.006165759637951851, 0.005156500730663538, -0.015788521617650986, 0.005695932079106569, 0.06575263291597366, -0.013735201209783554, 0.04983650892972946, -0.016472961753606796, 0.019802356138825417, 0.019976366311311722, -0.02849126234650612, 0.021658463403582573, 0.0051071979105472565, -0.011995099484920502, 0.0016603468684479594, 0.014152825810015202, 0.0013304526219144464, -0.01919911988079548, 0.024755844846367836, 0.000147818005643785, -0.013294375501573086, 0.01358439214527607, 0.007262023631483316, -0.0023085346911102533, -0.015753719955682755, 0.013503187336027622, -0.01128745824098587, 0.027029577642679214, 0.0011317910393700004, -0.012006700038909912, 0.04577627032995224, -0.023700183257460594, -0.03619411215186119, 0.019071511924266815, -0.038955073803663254, -0.02285333350300789, -0.009709766134619713, -0.0325050950050354, -0.013387180864810944, -0.018352270126342773, -0.03702935948967934, 0.02921050414443016, -0.05150700360536575, 0.018097056075930595, -0.025382280349731445, -0.014698057435452938, 0.013851207681000233, 0.005214504431933165, -0.012377922423183918, -0.009100730530917645, 0.017737435176968575, -0.025103865191340446, 0.0003791971248574555, 0.01358439214527607, -0.004170443397015333, 0.044616203755140305, 0.012099506333470345, -0.004414057359099388, 0.0021316243801265955, 0.03582289069890976, 0.01508087944239378, -0.00912393257021904, -0.010597217828035355, -0.046263497322797775, 0.004501062445342541, -0.013050761073827744, -0.008050870150327682, -0.04765557870268822, -0.04535864666104317, 0.034987639635801315, -0.014651655219495296, 0.020463593304157257, 0.047562774270772934, -0.012157509103417397, -0.02517346851527691, -0.0001107502102968283, -0.052295852452516556, -0.0029204704333096743, -0.014431241899728775, -0.030718592926859856, 0.02128724195063114, -0.031321827322244644, 0.0005173176759853959, -0.008961522951722145, -0.054569583386182785, 0.014292033389210701, -0.04122880473732948, 0.0015211387071758509, 0.027609610930085182, -0.017656229436397552, 0.011304859071969986, -0.024755844846367836, 0.015475302934646606, -0.013886010274291039, 0.026936771348118782, -0.029999349266290665, -0.007227221503853798, -0.012911553494632244, -0.026124723255634308, 0.014060020446777344, -0.030973806977272034, -0.0404631607234478, 0.011020642705261707, -0.01527809165418148, -0.015138883143663406, -0.038305435329675674, -0.018120257183909416, -0.010893035680055618, -0.013213170692324638, 0.013491586782038212, 0.01960514299571514, 0.01953553967177868, -0.034732427448034286, 0.011879093013703823, -0.04740036651492119, 0.00793486274778843, -0.017447417601943016, -0.0013877309393137693, -0.010550815612077713, 0.01590452715754509, -0.00672839256003499, 0.01111924834549427, -0.02128724195063114, -0.01656576618552208, 0.016832582652568817, 0.017702633515000343, -0.023468168452382088, 0.05215664207935333, 0.017667829990386963, 0.01093943789601326, -0.029952947050333023, -0.003364196280017495, 0.012830348685383797, -0.038282234221696854, -0.02190207690000534, 0.01241272408515215, 0.017331410199403763, 0.009384947828948498, 0.006357171107083559, -0.011647079139947891, -0.046936336904764175, -0.014547248370945454, -0.022366104647517204, -0.03839823976159096, 0.03222668170928955, -0.02356097474694252, -0.02682076394557953, 0.021658463403582573, 0.011983498930931091, -0.039651114493608475, 0.010150591842830181, 0.017319809645414352, -0.0022998342756181955, -0.008433692157268524, -0.01379320491105318, -0.01196029782295227, -0.024315018206834793, -0.02821284532546997, -0.013526389375329018, 0.008300283923745155, 0.03779500350356102, -0.025057461112737656, 0.003488903632387519, 0.008688907139003277, -0.012586734257638454, -0.01629895158112049, 0.010655221529304981, -0.004367654677480459, 0.06965046375989914, -0.00912393257021904, -0.018352270126342773, 0.0012195211602374911, -0.030068954452872276, -0.005968548357486725, -0.031321827322244644, 0.03412919119000435, -0.03672774136066437, 0.04347933828830719, -0.010069387033581734, 0.01312036532908678, -0.005171001888811588, -0.004689573775976896, 0.009663363918662071, -0.016008934006094933, 0.010382605716586113, -0.028723275288939476, 0.018642287701368332, 0.018990308046340942, 0.03909428045153618, 0.0013362530153244734, -0.011043844744563103, 0.006542781833559275, 0.008868717588484287, -0.0169833917170763, 0.003921028692275286, 0.016484562307596207, -0.018317468464374542, 0.003776020370423794, -0.0013746801996603608, -0.034964438527822495, -0.037284575402736664, 0.003892027074471116, 0.011693482287228107, -0.005258006975054741, 0.030115356668829918, -0.041321609169244766, -0.0485372319817543, -0.028328852728009224, -0.015022876672446728, 0.013317576609551907, 0.008433692157268524, 0.010806030593812466, -0.02055639959871769, 0.03941909968852997, -0.0031669847667217255, -0.019013509154319763, -0.0014290583785623312, -0.01424563117325306, 0.030045753344893456, -0.025985516607761383, 0.018769895657896996, 0.001631345134228468, 0.008793313056230545, -0.004350253846496344, -0.011710883118212223, 0.008201678283512592, 0.015046077780425549, -0.03419879451394081, -0.012551932595670223, -0.02190207690000534, 0.03081139735877514, -0.00472727557644248, 0.00020174302335362881, 0.024732643738389015, 0.028468061238527298, -0.0017531522316858172, 0.0032133874483406544, -0.0034976040478795767, -0.02426861599087715, 0.018711891025304794, 0.011983498930931091, 0.02990654483437538, 0.04881564900279045, 0.009054328314960003, 0.0015892927767708898, 0.041019994765520096, 0.005611827597022057, 0.010806030593812466, 0.005780037026852369, -0.029256906360387802, -0.025823106989264488, 0.04208725690841675, 0.04670432582497597, 0.0165889672935009, 0.028792880475521088, -0.010777028277516365, 0.00879911333322525, 0.0014624103205278516, 0.03160024434328079, -0.01821306347846985, 0.006873400881886482, -0.028352053835988045, -0.00041037393384613097, 0.03257470205426216, -0.02624073065817356, 0.009558958001434803, 0.015823323279619217, 0.009553157724440098, -0.001930062659084797, -0.011339661665260792, -0.022795330733060837, 0.01661216840147972, 0.010231796652078629, -0.005263807252049446, 0.040625568479299545, -0.011200453154742718, -0.01596253179013729, -0.040695175528526306, 0.014802463352680206, 0.015718916431069374, -0.03756299242377281, 0.013027559965848923, 0.01960514299571514, 0.0021664262749254704, 0.02823604643344879, 0.012679539620876312, 0.013955614529550076, -0.006496379151940346, -0.00302197621203959, -0.01144406758248806, -0.001946013537235558, -0.015370897017419338, -0.01092783734202385, -0.02726159058511257, 0.0018111557001248002, 0.024779045954346657, 0.01390921138226986, 0.048908453434705734, 0.060230713337659836, 0.006339769810438156, -0.006774795241653919, -0.001647296128794551, 0.01722700521349907, -0.007354828994721174, 0.01852628029882908, -0.01044060941785574, -0.020150376483798027, -0.022992542013525963, 0.027307992801070213, -0.0006804522126913071, -0.0022882334887981415, 0.0011325160739943385, 0.0031292825005948544, 0.03972071781754494, 0.010289800353348255, 0.012563533149659634, -0.020347587764263153, -0.009228338487446308, -0.043641746044158936, 0.009553157724440098, 0.012354720383882523, 0.034314803779125214, 0.018503079190850258, 0.017459018155932426, 0.02556789107620716, 0.01657736673951149, 0.0007540439837612212, -0.0411360003054142, 0.03510364890098572, 0.05136779695749283, 0.0003576271119527519, 0.002624653046950698, -0.019001908600330353, 0.036356519907712936, -0.02589271031320095, -0.027795221656560898, 0.06630946695804596, 0.034987639635801315, -0.015138883143663406, 0.00781885627657175, 0.008938321843743324, 0.004518463741987944, 0.007267823908478022, -0.019999567419290543, -0.016426557675004005, 0.032041069120168686, 0.01919911988079548, 0.0035440067294985056, 0.023375364020466805, 0.020649204030632973, -0.01111924834549427, -0.004448859486728907, 0.007552040740847588, -0.00482588168233633, 0.027331193909049034, 0.01494167186319828, 0.01754022389650345, -0.002876967890188098, -0.023363763466477394, 0.02150765433907509, 0.03162344545125961, 0.030277766287326813, 0.04473220929503441, 0.022969340905547142, 0.0219136793166399, -0.0015936429845169187, 0.0003155746671836823, -0.002646404318511486, -0.009773570112884045, 0.020707208663225174, 0.027748819440603256, 0.0038630254566669464, -0.006455776747316122, 0.017667829990386963, 0.03327074274420738, 0.011403465643525124, 0.0014399340143427253, -0.01954714022576809, -0.0071170153096318245, -0.05248146131634712, -0.016844183206558228, 0.014964872971177101, -0.010684222914278507, -0.0022824332118034363, 0.028653671965003014, -0.005930846091359854, -0.0003436700499150902, 0.0008954272489063442, 0.006241164170205593, 0.007412832695990801, 0.022690923884510994, 0.033665165305137634, 0.02491825446486473, 0.020185178145766258, 0.008990524336695671, -0.0009389297920279205, -0.014164426364004612, 0.027470402419567108, 0.013862809166312218, 0.022331302985548973, 0.0036658139433711767, -0.01653096452355385, -0.0225285142660141, 0.025591092184185982, -0.013607594184577465, 0.00980257149785757, -0.009396548382937908, 0.015498504042625427, -0.03883906453847885, -0.025475086644291878, 0.00828288309276104, 0.04148402065038681, 0.01244752574712038, 0.016658572480082512, -0.008091472089290619, 0.045289043337106705, -0.035289257764816284, 0.012691140174865723, 0.0016066937241703272, -0.02986014261841774, -0.02190207690000534, 0.0026507547590881586, -0.025080664083361626, -0.03737737983465195, -0.012018301524221897, -0.013166768476366997, 0.01243592519313097, -0.012551932595670223, 0.042272865772247314, -0.008456893265247345, -0.027307992801070213, 0.020509997382760048, 0.00028983564698137343, 0.02222689613699913, -0.014048419892787933, 0.005252206232398748, 0.016507763415575027, 0.02981373853981495, 0.030602585524320602, -0.002108423039317131, -0.01788824424147606, -0.04510343074798584, -0.007325827609747648, -0.011502071283757687, 0.015811722725629807, 0.01727340742945671, 0.009529955685138702, 0.0020692707039415836, -0.028630470857024193, -0.019141117110848427, -0.0038427242543548346, 0.009367546066641808, 0.027470402419567108, 0.003828223329037428, -0.0019054111326113343, -0.008224879391491413, -0.003979031927883625, 0.04322412237524986, 0.006705190986394882, 0.0019634144846349955, 0.0021910779178142548, -0.004756277427077293, 0.005127499345690012, -0.020660804584622383, 0.010098389349877834, -0.008190077729523182, -0.01620614528656006, -0.01047541107982397, 0.018120257183909416, -0.0004926662659272552, 0.0016501962672919035, 0.004483661614358425, 1.0643394489306957e-05, 0.026310335844755173, -0.0009208036935888231, 0.009796771220862865, -0.004095038864761591, -0.032992325723171234, 0.056564901024103165, 0.012261915020644665, -0.02814324200153351, -0.008961522951722145, 0.029744135215878487, 0.0012318468652665615, -0.02357257530093193, -0.03375796973705292, -0.024709440767765045, 0.03644932806491852, 0.02049839496612549, -0.0006717516807839274, -0.032389089465141296, 0.03549807146191597, -0.0017821539659053087, -0.024384623393416405, -0.013804805465042591, -0.032319486141204834, 0.009645963087677956, 0.01595093123614788, 0.0013420532923191786, 0.0028276650700718164, -0.006183160934597254, -0.036681339144706726, 0.008613502606749535, 0.010904636234045029, 0.03480203077197075, -0.0015240389620885253, 0.008195878006517887, 0.017992649227380753, -0.035962097346782684, -0.012192311696708202, -0.0022055786103010178, 0.06788715720176697, 0.011101847514510155, -0.04334012791514397, 0.0049621895886957645, 0.04146081954240799, 0.008567099459469318, 0.016832582652568817, -0.018665488809347153, 0.012203912250697613, 0.009361745789647102, -0.02289973571896553, 0.04185524210333824, 0.029419315978884697, 0.02457023411989212, 0.007407031953334808, -0.007731851190328598, 0.03772540017962456, 0.027006374672055244, 0.012157509103417397, 0.02719198726117611, 0.008671506308019161, -0.021971682086586952, 0.012795546092092991, -0.023990198969841003, 0.010278199799358845, -0.03185546025633812, 0.007749252021312714, 0.0058728428557515144, -0.0029726733919233084, 0.009570558555424213, -0.007923262193799019, -0.018642287701368332, 0.001621194533072412, -0.013247973285615444, 0.019802356138825417, -0.022435709834098816, 0.001825656509026885, 0.026008717715740204, 0.015510104596614838, 0.01377000380307436, -0.020463593304157257, -0.034361205995082855, 0.009239939041435719, 0.008938321843743324, 0.0004923037486150861, 0.01825946569442749, -0.01345678512006998, -0.003346795216202736, 0.006751593668013811, -0.02849126234650612, -0.0261711273342371, -0.002479644725099206, -0.014709657989442348, -0.012343119829893112, -0.00672839256003499, 0.013990416191518307, 0.03241229057312012, -0.02526627480983734, -0.01952393911778927, -0.041623227298259735, 0.0023244856856763363, 0.017493819817900658, -0.01788824424147606, 0.025962315499782562, -0.03988312557339668, 0.0017763536889106035, -0.0018126057693734765, 0.004100839141756296, -0.01758662611246109, 0.008555498905479908, 0.023305758833885193, -0.052574265748262405, 0.014292033389210701, 0.019465936347842216, 0.008845516480505466, 0.04011514037847519, -0.02981373853981495, 0.0016284449957311153, -0.000303430191706866, -0.018445076420903206, -0.019953163340687752, -0.02354937419295311, 0.031716249883174896, -0.010005583986639977, 0.015556507743895054, -0.002243280876427889, -0.019813956692814827, 0.010649421252310276, 0.006809597369283438, 0.01788824424147606, -0.023294158279895782, -0.006797996815294027, 0.026310335844755173, -0.050950173288583755, 0.01924552209675312, -0.01080023031681776, -0.014999674633145332, -0.01308556366711855, -0.011728283949196339, -0.002375238575041294, 0.01030720118433237, 0.007830456830561161, 0.0010056336177513003, 0.00604395242407918, -0.0027232589200139046, 0.002907419577240944, -0.044616203755140305, -0.001721250475384295, 0.00614255852997303, 0.006148358806967735, -0.0002659092715475708, -0.009326944127678871, -0.002062020357698202, 0.016751376911997795, -0.011478869244456291, -0.04201764985918999, -0.01046381052583456, -0.022145692259073257, 0.018178259953856468, -0.004953489173203707, -0.01392081193625927, 0.02153085544705391, 0.017737435176968575, 0.0006108481320552528, -0.01957034133374691, 0.02519666962325573, 0.00017826978000812232, -0.0007460685446858406, -0.004080538172274828, -0.013143566437065601, 0.0014761860948055983, -0.002118573524057865, 0.01192549616098404, -0.00814367551356554, -0.0012992757838219404, -0.03357235714793205, 0.001370329991914332, -0.001323202159255743, -0.001406582072377205, -0.026658356189727783, 0.021148033440113068, 0.013665596954524517, -0.0026029017753899097, -0.02686716802418232, 0.008074071258306503, 0.02656554989516735, -0.021635262295603752, -0.02756320871412754, -0.0014428341528400779, 0.013062361627817154, -0.027099180966615677, 0.020069170743227005, 0.014338436536490917, 0.02517346851527691, 0.04380415380001068, 0.017459018155932426, 0.006606585346162319, 0.0028479660395532846, 0.03125222399830818, 0.004132741130888462, -0.016113340854644775, 0.002273732563480735, 0.011217854917049408, -0.004648971371352673, 0.008027668111026287, -0.008132074028253555, 0.01010418962687254, -0.004840382374823093, -0.0076274448074400425, -0.00141238234937191, -0.021066829562187195, -0.006722592283040285, 0.016716575250029564, 0.00696620624512434, -0.013166768476366997, 0.021762870252132416, 0.01162387803196907, 0.04055596515536308, -0.06621666252613068, 0.004231346771121025, 0.026774361729621887, -0.0001955801562871784, 0.011803688481450081, -0.00219687819480896, -0.006136758252978325, -0.03914068266749382, 0.002275182632729411, -0.014048419892787933, 0.022458910942077637, -0.00348310312256217, 0.009002124890685081, 0.0017285008216276765, 0.03542846813797951, -0.006374571938067675, 0.008833914995193481, -0.025289475917816162, 0.025103865191340446, 0.0031843858305364847, 0.024616636335849762, 0.008039268665015697, -0.022122491151094437, -0.014814063906669617, -0.03122902102768421, -0.034036386758089066, 0.005495820660144091, -0.047887593507766724, 0.006281766574829817, -0.018677089363336563, 0.020335987210273743, -0.010498612187802792, 0.013607594184577465, 0.015684114769101143, -0.00015216825704555959, 0.024384623393416405, 0.00010839382593985647, -0.016171343624591827, 0.020974023267626762, 0.02024318091571331, -3.935620406991802e-05, -0.025614295154809952, -0.019755952060222626, 0.011531072668731213, 0.03909428045153618, -0.004019634332507849, 0.012923154048621655, 0.030115356668829918, -0.034268397837877274, 0.02382778935134411, 0.0254982877522707, -0.01473285909742117, 0.030022552236914635, -0.007209820672869682, 0.0023781387135386467, -0.02591591142117977, 0.006049753166735172, -0.013688798993825912, -0.00043430033838376403, -0.025428684428334236, -0.01725020632147789, -0.0022244297433644533, -0.004472061060369015, 0.0057423352263867855, -0.011177252046763897, 0.004599668551236391, 0.00927474070340395, 0.025614295154809952, -0.033340346068143845, -0.02119443565607071, 0.009048528037965298, -0.03211067244410515, -0.02716878429055214, -0.029651330783963203, 0.013305976055562496, 0.0005158676067367196, 0.023317361250519753, -0.012157509103417397, -0.0068327984772622585, -0.004544564988464117, -0.0010150591842830181, -0.0013268274487927556, 0.0063223689794540405, -0.033317144960165024, 0.014964872971177101, 0.014640053734183311, -0.0046402704901993275, 0.029581725597381592, -0.023653779178857803, -0.014025217853486538, -0.029117697849869728, -0.007308426313102245, 0.006925603840500116, 0.014883668161928654, 0.02484864927828312, -0.037655796855688095, -0.0014950372278690338, -0.02955852448940277, -0.01690218597650528, 0.006333969533443451, 0.01852628029882908, -0.008613502606749535, -0.01506927888840437, 0.030950605869293213, 0.03050977922976017, 0.0038833266589790583, 0.00011510046169860289, 0.015684114769101143, -0.024106206372380257, -0.021403249353170395, -0.0015979931922629476, -0.02125244028866291, 0.032389089465141296, -0.0009846074972301722, 0.038305435329675674, 0.013537989929318428, -0.0017850541044026613, 0.03324753791093826, 0.012099506333470345, 0.00010069024574477226, 0.00026808440452441573, -0.01661216840147972, -0.02689036913216114, -0.00014555224333889782, 0.015336094424128532, 0.03686695173382759, -0.004387956112623215, 0.05280628055334091, 0.007859458215534687, 0.031716249883174896, -0.011594876646995544, -0.01727340742945671, -0.005835140589624643, 0.012575133703649044, -0.0017241506138816476, -0.018155058845877647, -0.011101847514510155, 0.016008934006094933, -0.03380437195301056, -0.022435709834098816, 0.01308556366711855, 0.03579968959093094, -0.006409374065697193, -0.009866375476121902, 0.028468061238527298, -0.05461598560214043, 0.001344228396192193, -0.02849126234650612, 0.004208145663142204, -0.013503187336027622, -0.01762142777442932, -0.00488388491794467, -0.01075962744653225, -0.0370989628136158, 0.05484800040721893, -0.0437113493680954, -0.0019474636064842343, 0.02981373853981495, 0.005623428151011467, 0.006861800327897072, -0.010864033363759518, -0.03953510522842407, -0.03215707466006279, -0.01859588548541069, -0.015811722725629807, 0.012702740728855133, -0.009593759663403034, -0.008097272366285324, 0.0159161277115345, -0.008033468388020992, -0.025475086644291878, 0.020335987210273743, 0.04255128279328346, 0.04178563877940178, -0.029117697849869728, 0.0009498054278083146, 0.053548723459243774, -0.009297942742705345, 0.03053298220038414, -0.027284791693091393, 0.02220369502902031, 0.0009034026879817247, -0.001307251281104982, 0.03115941770374775, 0.006797996815294027, 0.028955290094017982, 0.005318910349160433, -0.01825946569442749, 0.03579968959093094, 0.0002918295213021338, 0.003169884905219078, 0.017830239608883858, 0.0023259357549250126, -0.018503079190850258, 0.015231688506901264, -0.0068037970922887325, 0.013050761073827744, -0.04886205121874809, -0.015684114769101143, 0.0018923603929579258, -0.031832255423069, 0.01858428493142128, 0.018050653859972954, -0.03296912461519241, -0.009715566411614418, -0.025475086644291878, 0.0682583823800087, -0.019373130053281784, -0.01046381052583456, -0.012621535919606686, 0.01046381052583456], [0.0005606990889646113, -0.017718510702252388, 0.03301933407783508, -0.02639308199286461, -0.035772811621427536, 0.04436903074383736, -0.013487558811903, 0.036198146641254425, 0.021557707339525223, 0.050189390778541565, -0.009989747777581215, -0.02350528910756111, 0.026258766651153564, 0.014483734965324402, -0.06451642513275146, 0.04307064414024353, -0.010387099348008633, 0.040585801005363464, 0.0004050465067848563, -0.007835096679627895, 0.026258766651153564, 0.05301002413034439, -0.025072308257222176, -0.0223300252109766, -0.02352767437696457, -0.010672520846128464, 0.01586047373712063, -0.024490272626280785, 0.0365787073969841, -0.050771426409482956, 0.07217243313789368, -0.034004319459199905, 0.013879314064979553, -0.005753199569880962, 0.003682495327666402, -0.016890229657292366, -0.01963251270353794, 0.04230951890349388, 0.03953365609049797, 0.009251010604202747, -0.011685486882925034, 0.04772692918777466, 0.0005645466735586524, -0.014271068386733532, -0.01087959110736847, 0.02688557282090187, 0.015580648556351662, -0.030131543055176735, -0.028810769319534302, 0.04087681695818901, 0.02959427796304226, 0.030646419152617455, -0.008327588438987732, 0.03942172974348068, 0.03118368424475193, 0.010342326946556568, -0.020606303587555885, 0.03751891851425171, 0.045645032078027725, -0.022822516039013863, -0.024736518040299416, -0.02377392165362835, -0.014819525182247162, 0.03608621656894684, 0.020382443442940712, 0.004796198103576899, 0.017214825376868248, 0.022732973098754883, -0.017091702669858932, 0.008680167607963085, -0.014819525182247162, 0.02301279827952385, 0.06026308611035347, -0.0737842246890068, -0.02377392165362835, 0.024087324738502502, 0.006312849000096321, -0.01854679174721241, 0.02984052337706089, 0.016464894637465477, -0.01743868552148342, 0.002789854072034359, -0.0463389977812767, 0.04307064414024353, 0.03118368424475193, -0.02460220269858837, -0.07127699255943298, -0.009905800223350525, -0.014573279768228531, -0.010431870818138123, -0.05918855592608452, -0.04376460984349251, -0.014181524515151978, 0.059725821018218994, 0.03812333941459656, -0.0018496423726901412, 0.024154482409358025, 0.028542136773467064, -0.051890723407268524, 0.037295058369636536, 0.00978267751634121, -0.03960081562399864, 0.005590900778770447, 0.018479634076356888, -0.008450711145997047, -0.0262139942497015, 0.0033551002852618694, 0.07875391095876694, 0.04924917593598366, 0.0013634467031806707, 0.0035509776789695024, -0.023057568818330765, -0.040160465985536575, 0.053726375102996826, -0.01239064522087574, 0.003872776171192527, -0.008075745776295662, -0.021692024543881416, 0.0199683029204607, 0.007907850667834282, -0.05793493986129761, -0.03498930111527443, 0.05636792257428169, -0.060486942529678345, -0.029459962621331215, -0.014741173945367336, -0.021893497556447983, 0.004188978113234043, -0.03969036042690277, 0.010739678516983986, 0.03411624953150749, -0.04233190789818764, 0.03581758216023445, -0.03187764808535576, 0.01315176859498024, 0.006609463598579168, 0.020606303587555885, -0.00345583725720644, 0.0015404359437525272, -0.008663377724587917, 0.027713855728507042, 0.0127264354377985, 0.001411016914062202, -0.0044967858120799065, -0.046921033412218094, 0.05063710734248161, 0.018602756783366203, 0.041951343417167664, -0.01634177193045616, 0.004382057581096888, -0.013252506032586098, -0.015983596444129944, 0.02825111895799637, 0.021277884021401405, 0.025251396000385284, 0.03765323385596275, 0.0027576740831136703, 0.026281151920557022, -0.0038391973357647657, 0.003058485919609666, -0.03651154786348343, -0.021546514704823494, -0.008036570623517036, -0.034765440970659256, 0.013722611591219902, 0.004051864147186279, -0.0028556128963828087, -2.3741391487419605e-05, -0.04996553063392639, -0.025766273960471153, -0.027534767985343933, -0.02648262493312359, 0.002904582070186734, -0.03803379833698273, 0.03221343830227852, -0.05784539878368378, 0.008081342093646526, 0.00041484038229100406, 0.009491659700870514, 0.023572446778416634, -0.019319109618663788, -0.013767383992671967, -0.07853005081415176, 0.0019447829108685255, -0.04275723919272423, 0.0440332405269146, 0.04660763218998909, -0.015580648556351662, -0.00558250630274415, 0.0044044433161616325, 0.016823071986436844, -0.014640437439084053, -0.04065295681357384, 0.016498474404215813, -0.03913071006536484, -0.005235523451119661, 0.0035929514560848475, -0.005269102286547422, 0.0010675318771973252, -0.007952623069286346, 0.03760846331715584, -0.014304647222161293, 0.031071754172444344, -0.011053082533180714, -0.011495205573737621, -0.027422837913036346, 0.013991243205964565, 0.006721393205225468, 0.036287687718868256, -0.0008520667324773967, -0.0002469454484526068, -0.03420579060912132, -0.05215935781598091, 0.022632235661149025, -0.042779628187417984, 0.06563571840524673, 0.006385603453963995, 0.005173962097615004, -0.03812333941459656, 0.055069535970687866, 0.011192995123565197, -0.03601905703544617, -0.012088434770703316, 0.0007751148659735918, -0.007907850667834282, -0.0106277484446764, 0.0367354080080986, 0.012312293983995914, -0.012256328947842121, -0.08193272352218628, 0.0027520775329321623, 0.04119022190570831, -0.017069317400455475, 0.0030025208834558725, -0.010644538328051567, 0.03720551356673241, 0.019677285104990005, -0.039578430354595184, -0.0003242470556870103, -0.013330857269465923, -0.010056905448436737, -0.013532331213355064, 0.0016999361105263233, 0.05986013635993004, 0.023953009396791458, 0.003934337757527828, -0.022990411147475243, -0.010549397207796574, 0.05301002413034439, 0.005392225459218025, 0.019162407144904137, -0.04490629583597183, 0.07364990562200546, -0.06944134086370468, 0.024579817429184914, 0.04452573508024216, -0.009295782074332237, -0.01390169933438301, 0.01929672248661518, -0.038906849920749664, -0.02462458796799183, -0.012883136980235577, -0.026773644611239433, 0.036713022738695145, -0.05780062451958656, 0.021199531853199005, 0.049428265541791916, 0.03691449761390686, -0.03149708732962608, 0.007471323944628239, -0.035280320793390274, 0.014472542330622673, -0.01315176859498024, -0.0020693049300462008, -0.0018986117793247104, -0.01023599412292242, -0.002384107792750001, -0.006016234867274761, -0.027758628129959106, 0.0007090062717907131, -0.0478612445294857, 0.0014096178347244859, -0.034272950142621994, -0.025139465928077698, -0.001014365116134286, -0.007717569824308157, 0.02639308199286461, 0.005022856406867504, -0.029482347890734673, 0.0277362409979105, 0.061830103397369385, -0.0038699780125170946, 0.026706485077738762, -0.006855709478259087, 0.028721224516630173, 0.017852826043963432, -0.0448167510330677, -0.009374133311212063, -0.008859255351126194, -0.0022819717414677143, 0.029303260147571564, 0.033511824905872345, 0.05462181568145752, -0.005674848333001137, -0.038974009454250336, 0.027019890025258064, -0.0017125281738117337, 0.07459011673927307, -0.006055410020053387, 0.012401837855577469, -0.03456396982073784, 0.059367645531892776, -0.02569911628961563, -0.04515254124999046, -0.00860181637108326, -0.04705534875392914, -0.02316949889063835, 0.011786223389208317, -0.0009542027837596834, -0.015401560813188553, 0.04629422724246979, 0.012871944345533848, 0.03698165342211723, 0.01593882404267788, -0.005999445449560881, -0.011316117830574512, 0.023885851725935936, 0.037115972489118576, -0.03395954519510269, -0.032907404005527496, -0.04087681695818901, -0.026616942137479782, 0.037809938192367554, -0.013353242538869381, -0.012905523180961609, -0.005501356907188892, 0.0023435333278030157, 0.0440332405269146, 0.014741173945367336, 0.02984052337706089, 0.06594912707805634, -0.031116526573896408, -0.005965866148471832, -0.006150550674647093, -0.016979772597551346, -0.013957664370536804, 0.0035509776789695024, 0.045219700783491135, 0.007577657699584961, 0.0262139942497015, 0.017841633409261703, 0.007163516711443663, -0.0191288273781538, 0.028363049030303955, 0.00028437201399356127, -0.03230298310518265, 0.0059043047949671745, 0.001526444684714079, -0.004278522450476885, 0.00433728564530611, 0.04224236309528351, 0.03288501873612404, 0.0037132760044187307, 0.043786995112895966, 0.018233388662338257, -0.01744987815618515, -0.005711225792765617, -0.007157920394092798, -0.02276655100286007, -0.017405107617378235, 0.020930901169776917, 0.043451204895973206, 0.02822873368859291, -0.032750703394412994, -0.04047387093305588, -0.03785470873117447, 0.02898985706269741, 0.047503069043159485, -0.02748999558389187, 0.00021791362087242305, -0.02663932740688324, 0.02529616840183735, 0.010678117163479328, 0.012883136980235577, 0.03163140267133713, 0.02200542762875557, -0.0478612445294857, 0.0012620101915672421, -0.015233665704727173, -0.004261732567101717, -0.031138911843299866, 0.029952453449368477, -0.03951127082109451, 0.03221343830227852, 0.00036727014230564237, -0.021456971764564514, 0.047323983162641525, 0.058696065098047256, -0.017405107617378235, -0.05108482763171196, 0.01534559577703476, -0.03378045931458473, 0.012379452586174011, -0.04065295681357384, -0.007952623069286346, -0.01575973629951477, -0.009290185756981373, -0.028094416484236717, 0.00990020390599966, 0.0017880809027701616, 0.014349419623613358, 0.011103451251983643, 0.03243729844689369, -0.002633152063935995, 0.027758628129959106, 0.03149708732962608, -0.016039561480283737, 0.04000376537442207, 0.020360058173537254, -0.04611513763666153, 0.027198977768421173, 0.021345041692256927, -0.019509389996528625, -0.010353520512580872, -0.03583997115492821, -0.0010108673013746738, -0.018737073987722397, -0.0016719535924494267, -0.0030808718875050545, -0.08009707182645798, 0.024982765316963196, 0.02359483391046524, 0.03639961779117584, -0.008668974973261356, -0.025318553671240807, -0.0033495037350803614, 0.02266581542789936, -0.03501168638467789, -0.015088156796991825, -0.0199683029204607, 0.017830440774559975, 0.026415467262268066, 0.004936110693961382, 0.018949739634990692, -0.02250911295413971, 0.022039007395505905, 0.0001106182680814527, 0.019084056839346886, -0.023035183548927307, 0.002663932740688324, -0.05283093452453613, -0.030646419152617455, -0.052383214235305786, 0.008377956226468086, -0.016117911785840988, 0.006441568490117788, -0.00035537758958525956, -0.03317603841423988, 0.0478612445294857, -0.03149708732962608, -0.01819980889558792, 0.05815880000591278, 0.042354293167591095, 0.03243729844689369, 0.037899479269981384, 0.044973451644182205, -0.015826893970370293, -0.026863187551498413, 0.024132097139954567, -0.02605729177594185, 0.018692301586270332, -0.00985543243587017, -0.04127976670861244, 0.00026111159240826964, 0.060397401452064514, -0.025430483743548393, -0.022061392664909363, -0.05224889889359474, 0.007549675181508064, -0.011663100682199001, 0.01914002187550068, 0.008428324945271015, -0.00539782177656889, -0.02184872515499592, 0.007913446985185146, -0.040764886885881424, 0.06447164714336395, -0.010689309798181057, 0.006133761256933212, -0.04072011634707451, -0.0731574147939682, -0.004348478280007839, 0.04127976670861244, -0.008668974973261356, 0.0013599488884210587, -0.006273673847317696, -0.050278931856155396, 0.01618507131934166, 0.05493522062897682, 0.005039645824581385, 0.0347430557012558, -0.03125084191560745, -0.004675873555243015, 0.014606858603656292, 0.03496691584587097, -0.03438488021492958, 0.008002991788089275, -0.03836958482861519, -0.015088156796991825, -0.02569911628961563, -0.042779628187417984, -0.0021364628337323666, 0.05072665214538574, 0.025945361703634262, -0.024848448112607002, -0.03599667176604271, 0.032907404005527496, -0.007169113028794527, -0.0441899448633194, 0.003967916592955589, -0.000508931465446949, -0.02226286754012108, -0.043943699449300766, -0.017897598445415497, 0.002479248447343707, 0.027601925656199455, 0.010129660367965698, 0.00495010195299983, -0.017427492886781693, 0.00627927016466856, 0.003923144657164812, -0.03516839072108269, -0.039309799671173096, 0.011394469067454338, -0.004356873221695423, -0.011875767260789871, 0.023057568818330765, -0.0030360999517142773, 0.013330857269465923, -0.04763738438487053, 0.03899639472365379, -0.019274337217211723, 0.019755635410547256, -0.020382443442940712, -0.00283322692848742, -0.002356125507503748, 0.024311184883117676, 0.029549505561590195, 0.034429650753736496, -0.007975009270012379, -0.001450891955755651, 0.03875014930963516, -0.02791532874107361, 0.011041889898478985, -0.026236379519104958, 0.009385325945913792, 0.02865406684577465, -0.009844238869845867, 0.026572169736027718, -0.0031144507229328156, 0.009010360576212406, 0.0022945639211684465, -0.001536238589324057, 0.02722136303782463, 0.006469551008194685, 0.008070149458944798, -0.02292325347661972, -0.006671024952083826, -0.006754972506314516, 0.002357524586841464, 0.012670470401644707, 0.005711225792765617, 0.0031564245000481606, -0.05927810072898865, 0.04085443168878555, 0.017852826043963432, -0.01109225768595934, -0.02142339199781418, -0.0050788214430212975, -0.003853188594803214, 0.0114280479028821, 0.04795078933238983, -0.017729703336954117, 0.0017614975804463029, -0.0197332501411438, 0.00792464055120945, 0.006005041766911745, -0.042622923851013184, -0.013912892900407314, 0.038638219237327576, 0.012547347694635391, 0.013521137647330761, 0.02217332273721695, -0.008142903447151184, 0.007650412153452635, 0.0527413934469223, -0.014573279768228531, -0.007314621936529875, -0.0042225574143230915, 0.0019293924560770392, 0.004843768663704395, -0.005548927001655102, -0.005837146658450365, -0.002705906517803669, -0.021042831242084503, -0.016823071986436844, 0.02402016706764698, -0.024557430297136307, -0.018513213843107224, 0.02334858663380146, 0.0053138742223382, 0.008098131977021694, 0.02563195861876011, -0.010381503030657768, -0.04714489355683327, 0.0215689018368721, -0.021289076656103134, -0.04217520356178284, -0.028676452115178108, 0.040585801005363464, -0.010778853669762611, 0.001491466537117958, 0.042869169265031815, 0.002857011975720525, -0.0022623841650784016, -0.048756685107946396, 0.0037076794542372227, -0.04763738438487053, 0.048756685107946396, -0.01071169599890709, -0.03606383129954338, 0.038727764040231705, 0.0024498668499290943, 0.0003655212349258363, -0.031206069514155388, -0.012636891566216946, 0.03483260050415993, 0.007941429503262043, 0.0050704265013337135, -0.00030780734959989786, 0.059546731412410736, -0.022632235661149025, 0.018524406477808952, -0.010896380059421062, -0.0022497919853776693, 0.02192707732319832, 0.012916715815663338, 0.017382720485329628, -0.009877817705273628, -0.004908128175884485, 0.004964093212038279, -0.026997502893209457, 0.024244027212262154, -0.04781647399067879, 0.041928958147764206, -0.004863356240093708, 0.00720828864723444, 0.03310887888073921, 0.02587820403277874, -0.014002436771988869, -0.04727920889854431, 0.01583808846771717, -0.027713855728507042, 0.009625975973904133, 0.03183287754654884, 0.006934060249477625, -0.002718498697504401, 0.010180029086768627, -0.00902155414223671, -0.025184238329529762, -0.01327489223331213, -0.0008170886430889368, -0.0063464283011853695, -0.017998335883021355, -0.045555487275123596, -0.0262139942497015, -0.04237667843699455, 0.02554241381585598, -0.058024484664201736, 0.05471136048436165, -0.06630729883909225, -0.019184792414307594, -0.005123593378812075, 0.0003963019698858261, -0.003721670713275671, -0.00737618375569582, 0.0090663256123662, -0.03069119155406952, 0.016901422291994095, -0.019845180213451385, -0.024848448112607002, 0.03725028783082962, 0.007387376390397549, 0.007001218385994434, 0.022296445444226265, 0.03861583396792412, 1.1072757843066938e-05, -0.028698839247226715, -0.04056341201066971, -0.09146915376186371, 0.0330641083419323, 0.024087324738502502, -0.017628967761993408, -0.0396232008934021, -0.018479634076356888, 0.011640714481472969, -0.020583918318152428, 0.03284024819731712, 0.018815424293279648, 0.012200364843010902, -0.012446610257029533, -0.02216213010251522, -0.0368921123445034, -0.022206902503967285, -0.028676452115178108, 0.006810937542468309, -0.03263877332210541, -0.02462458796799183, 0.008987975306808949, -0.021367426961660385, -0.030624033883213997, 0.04233190789818764, 4.142719626543112e-05, -0.004323294386267662, 0.018322933465242386, -0.03277308866381645, -0.015401560813188553, -0.0031872051768004894, -0.004600320942699909, 0.01930791698396206, 0.03315364941954613, -0.023124726489186287, 0.004757022950798273, 0.014170331880450249, -0.02090851403772831, 0.011299327947199345, -0.03651154786348343, -0.01239064522087574, -0.015591842122375965, -0.015737351030111313, 0.022553885355591774, -0.0350564606487751, -0.007952623069286346, -0.02679602988064289, -0.009206238202750683, -0.003676898777484894, 0.04139169678092003, -0.007700780406594276, -0.02782578580081463, 0.03836958482861519, -0.03736221790313721, 0.006100182421505451, -0.0026541389524936676, -0.018591564148664474, -0.018311738967895508, 0.0019489802652969956, -0.012401837855577469, 0.032929789274930954, -0.0027352881152182817, 0.010549397207796574, 0.00867457129061222, -0.018065493553876877, 0.01710289530456066, 0.03588474169373512, -0.0022483929060399532, 0.012715241871774197, -0.040742501616477966, 0.005101207178086042, 0.024803675711154938, -0.014886682853102684, -0.020080232992768288, 0.016308194026350975, 0.039757516235113144, 0.022475533187389374, 0.0158492811024189, -0.006419182755053043, -0.02807203121483326, -0.01205485500395298, -0.034922145307064056, -0.03901877999305725, 0.013118189759552479, -0.018658721819519997, 0.00787427183240652, 0.0070347972214221954, 0.01445015612989664, -0.008848062716424465, 0.021277884021401405, -0.004905330017209053, 0.02310234121978283, 0.009620378725230694, -0.021300269290804863, -0.02159128710627556, -0.00508161960169673, -0.032235823571681976, -0.013095803558826447, -0.011400065384805202, -0.007488113362342119, -0.0457121916115284, -0.024893220514059067, 0.02165844477713108, -0.027713855728507042, -0.02116595394909382, -0.013633067719638348, 0.009127886965870857, 0.0883798897266388, -0.0188937745988369, -0.027601925656199455, 0.0016733527882024646, -0.009681941010057926, -0.01734914258122444, -0.0336909145116806, 0.02250911295413971, -0.020035460591316223, 0.043540749698877335, 0.0106277484446764, -0.02563195861876011, -0.01803191564977169, 0.02316949889063835, 0.012289908714592457, 0.014696402475237846, 0.0021042830776423216, -0.0426676981151104, 0.01828935369849205, 0.01037590578198433, 0.018647529184818268, -0.009793870151042938, -0.03592951223254204, -0.026684099808335304, -0.007387376390397549, -0.012256328947842121, 0.023460516706109047, -0.010510222055017948, 0.02184872515499592, 0.013789769262075424, 0.02031528577208519, -0.02502753585577011, -0.012211557477712631, -0.006609463598579168, 0.03590712696313858, 0.012760014273226261, 0.029280874878168106, -0.011153819039463997, -0.025945361703634262, -0.0021784366108477116, -0.029101787135004997, -0.007325815036892891, 0.023460516706109047, 0.02825111895799637, -0.01550229825079441, 0.02048318088054657, 0.002854213584214449, -0.03187764808535576, -0.009133484214544296, -0.02386346459388733, -0.00015643959341105074, -0.018815424293279648, 0.030735963955521584, -0.029101787135004997, -0.0005152275552973151, -0.013957664370536804, -0.01710289530456066, -0.008668974973261356, 0.019195986911654472, -0.0008562640869058669, 0.009032746776938438, -0.019028091803193092, 0.0033215212170034647, 0.005090014543384314, 0.016565632075071335, 0.010689309798181057, 0.011456030420958996, -0.0050788214430212975, -0.008999167941510677, 0.004077048506587744, -0.002549204509705305, -0.02789294347167015, -0.002858411055058241, 0.03284024819731712, -0.0049305143766105175, -0.026348309591412544, -0.011444836854934692, 0.006391200236976147, 0.0015404359437525272, 0.027781013399362564, 0.008959992788732052, -0.00834997370839119, -0.018524406477808952, 0.05842743441462517, 0.048174649477005005, 0.02426641248166561, 0.026437854394316673, 0.022565077990293503, 0.008321992121636868, -0.019867565482854843, 0.013756190426647663, -0.0026093670167028904, -0.002578586107119918, -0.038906849920749664, -0.0183677040040493, 0.025609571486711502, -0.014931455254554749, 0.008932010270655155, 0.010683713480830193, -0.00267512584105134, 0.0006862704758532345, -0.019184792414307594, -0.02527378313243389, -0.03219105303287506, 0.03722790256142616, -0.005243917927145958, 0.03498930111527443, -0.01744987815618515, 0.01837889663875103, -0.03971274569630623, 0.003058485919609666, 0.0018636336317285895, -0.032750703394412994, 0.02030409313738346, 0.04866714030504227, 0.0009577005985192955, 0.0588303804397583, 0.014763560146093369, 0.021177146583795547, -0.030400173738598824, -0.03727267310023308, -0.014897876419126987, -0.01591643877327442, 0.02089732140302658, -0.00140751909930259, 0.006693411152809858, -0.013006259687244892, 0.03281785920262337, 0.03516839072108269, 0.058382660150527954, 0.0070124114863574505, 0.009239817038178444, -0.0027660687919706106, -0.011103451251983643, 0.0038615833036601543, -0.0003419110144022852, 0.02856452204287052, 0.03501168638467789, 0.0038643814623355865, -0.012883136980235577, -0.01819980889558792, 0.004687066655606031, -0.004544355906546116, 0.018143843859434128, -0.005837146658450365, 0.018143843859434128, 0.028945084661245346, 0.0057028308510780334, -0.0027884547598659992, -0.011808609589934349, -0.020113810896873474, 0.0127264354377985, 0.032079122960567474, 0.003013713750988245, 0.008025377057492733, 0.02748999558389187, 0.06653115898370743, 0.04477198049426079, 0.04199611768126488, -0.04284678399562836, 0.04812987893819809, 0.044122785329818726, -0.00714113051071763, 0.018860196694731712, -0.02417686954140663, 0.02341574616730213, -0.021983042359352112, -0.009334958158433437, 0.03933218494057655, 0.027937715873122215, -0.005381032358855009, 0.007107551675289869, 0.03422817960381508, 0.004597522784024477, -0.0015600236365571618, 0.020516758784651756, 0.004057460464537144, 0.013353242538869381, 0.022542690858244896, -0.0005246716318652034, 0.015558263286948204, 0.034765440970659256, 0.003136836923658848, -0.013812155462801456, -0.01569257862865925, 0.018244581297039986, -0.01167429331690073, 0.006973235867917538, 0.002750678453594446, 0.007975009270012379, -0.047592613846063614, 0.02569911628961563, 0.027042275294661522, 0.015188894234597683, 0.0076783946715295315, -0.00470105791464448, 0.04065295681357384, -0.017091702669858932, 0.0011906548170372844, -0.009418904781341553, -0.00657588429749012, -0.0006054710829630494, 0.03178810700774193, 0.00795821938663721, -0.02840782143175602, 0.014875490218400955, 0.013375628739595413, 0.012043662369251251, -0.012267522513866425, -0.008545851334929466, -0.02663932740688324, -0.040496256202459335, -0.0012808983447030187, -0.04031716659665108, -0.018434861674904823, -0.015076964162290096, -0.024758905172348022, 0.012547347694635391, -0.00034365992178209126, 0.021692024543881416, 0.022968025878071785, 0.008663377724587917, 0.037295058369636536, 0.017752090469002724, 0.019431039690971375, 0.007650412153452635, -0.02460220269858837, -0.009805063717067242, -0.011064275167882442, 0.002938161138445139, -0.004121820442378521, 0.024915605783462524, -0.001567019266076386, -0.02831827662885189, -0.04221997782588005, 0.003981907851994038, -0.015435139648616314, -0.020203355699777603, -0.032750703394412994, 0.01534559577703476, -0.01310699712485075, -0.012032469734549522, 0.0199683029204607, 0.02757953852415085, 0.00046066168579272926, 0.009558817371726036, -0.01627461425960064, 0.014573279768228531, -0.029191330075263977, -0.06935179978609085, 0.005909901112318039, -0.025005150586366653, -0.03648916259407997, 0.006133761256933212, -0.023303816094994545, -0.03142992779612541, 0.029795752838253975, -0.028497364372015, 0.006866902578622103, -0.007471323944628239, 0.03832481428980827, -0.011204187758266926, -0.05032370612025261, -0.0030081174336373806, 0.015961211174726486, -0.005431400611996651, -0.016308194026350975, 0.001922396826557815, 0.024087324738502502, 0.048174649477005005, 0.026594555005431175, 0.016162684187293053, -0.025900589302182198, -0.043540749698877335, 0.0026849196292459965, 0.009637168608605862, -0.01830054633319378, 0.009978555142879486, 0.027848171070218086, -0.0072866398841142654, -0.017505843192338943, -0.020953286439180374, -0.00948606338351965, 0.014573279768228531, -0.0168454572558403, 0.0025799854192882776, -0.011360890232026577, 0.018177423626184464, 0.017427492886781693, -0.0024932397063821554, 0.010409485548734665, 0.019520582631230354, 0.0222516730427742, 0.013722611591219902, 0.002796849701553583, 0.01023599412292242, 0.013286084868013859, -0.0006782255368307233, -0.001922396826557815, -0.007269850000739098, 0.036444392055273056, 0.03172094747424126, 0.017405107617378235, 0.007420955691486597, 0.03389238938689232, 0.01718124747276306, -0.008713746443390846, 0.01668875478208065, 0.009071921929717064, -0.016666369512677193, 0.03295217826962471, 0.010482239536941051, -0.028519751504063606, 0.006559094879776239, 0.0072866398841142654, -0.003945530857890844, -0.014976226724684238, -0.020024267956614494, -0.03348943963646889, -0.0037300654221326113, 0.015703771263360977, -0.011696679517626762, 0.018927354365587234, 0.008534658700227737, -0.002230204176157713, 0.02856452204287052, 0.010941152460873127, -0.04965212568640709, -0.011741451919078827, -0.011114643886685371, -0.006749375723302364, -0.0034362494479864836, 0.009508449584245682, -0.04318257421255112, 0.01117620524019003, -0.0032823458313941956, 0.017561808228492737, -0.0007233473006635904, 0.00864099245518446, 0.006934060249477625, -0.04515254124999046, 0.002834626007825136, -0.007986201904714108, 0.06017354130744934, 0.02218451537191868, -0.019487004727125168, -0.00977148488163948, 0.06084512174129486, -0.004365268163383007, 0.010403888300061226, -0.010689309798181057, 0.04436903074383736, 0.044727206230163574, -0.020874936133623123, 0.051129601895809174, 0.019666092470288277, 0.003881170880049467, 0.01087959110736847, 0.02462458796799183, 0.012468996457755566, 0.019677285104990005, 0.024669360369443893, 0.012256328947842121, 0.008859255351126194, -0.011075468733906746, 0.012972680851817131, 0.02493799291551113, -0.010549397207796574, -0.030131543055176735, -0.022061392664909363, 0.00909990444779396, -0.005635672714561224, 0.024736518040299416, -0.04112306237220764, 0.013230119831860065, -0.0024876431562006474, 0.010185625404119492, -0.01921837218105793, -0.03870537504553795, -0.020382443442940712, 0.026169221848249435, 0.033847615122795105, 0.006116971839219332, -0.03904116526246071, 0.003727267263457179, 0.00360414432361722, 0.005129189696162939, -0.009239817038178444, 0.03682495281100273, -0.011159416288137436, 0.01736033521592617, 0.014841911382973194, -0.01495384145528078, 0.001685944851487875, -0.000624709005933255, -0.02923610247671604, -0.011069871485233307, -0.037138357758522034, 0.013767383992671967, 0.0016327780904248357, -0.03118368424475193, -0.03765323385596275, 0.00029504034318961203, 0.010762064717710018, 0.033601369708776474, -0.031049367040395737, 0.04181702807545662, -0.006950849667191505, -0.014349419623613358, -0.0018734275363385677, -0.011192995123565197, -0.00383639894425869, 0.01057737972587347, -0.01787521317601204, -0.030556876212358475, 0.00023977493401616812, 0.008691360242664814, 0.007219481747597456, 0.01854679174721241, -0.011321714147925377, 0.016218649223446846, -0.028810769319534302, -0.020505566149950027, -0.015714963898062706, -0.029482347890734673, 0.017315562814474106, 0.02048318088054657, 0.004365268163383007, 0.013498751446604729, 0.01167429331690073, 0.04148123785853386, -0.025945361703634262, 0.050905741751194, -0.03622053191065788, 0.006934060249477625, 0.025475256145000458, -0.008070149458944798, 0.015009806491434574, -0.017416300252079964, -0.021524129435420036, -0.022654620930552483, 0.013711418956518173, -0.012502575293183327, 0.0011290933471173048, -0.021871112287044525, 0.011506399139761925, 0.01499861292541027, 0.019363882020115852, 0.013946471735835075, 0.01205485500395298, -0.004743031691759825, 0.009799467399716377, 0.003634925000369549, -0.01475236751139164, -0.014472542330622673, 0.015905246138572693, 0.009127886965870857, -0.041346922516822815, -0.04213043302297592, -0.007695184089243412, -0.013263698667287827, 0.024042552337050438, -0.0018622345523908734, -0.016711141914129257, 0.016061946749687195, -0.004225355572998524, 0.005436997395008802, 0.016901422291994095, 0.012760014273226261, -0.03581758216023445, 0.042018502950668335, -0.006603866815567017, 1.614458415133413e-05, 0.038235269486904144, 0.010224800556898117, 0.03832481428980827, -0.022318832576274872, 0.018166230991482735, -0.021009251475334167, -0.009340554475784302, 0.01126015279442072, -0.014147945679724216, 0.003324319375678897, -0.009032746776938438, 0.027758628129959106, -0.01677829958498478, -0.04027239605784416, -0.029952453449368477, 0.015782123431563377, -0.006553498562425375, -0.03172094747424126, 0.022039007395505905, 0.025005150586366653, -0.030803121626377106, 0.0160843338817358, 0.010392695665359497, 0.005842743441462517, 0.024982765316963196, 0.018020721152424812, 0.018927354365587234, -0.006251287646591663, 0.0176849327981472, -0.012536154128611088, -0.006049813702702522, 0.013991243205964565, -0.0023015595506876707, -0.01720363274216652, -0.010140853002667427, 0.012435417622327805, -0.0009542027837596834, 0.0070459903217852116, -0.012256328947842121, -0.014886682853102684, 0.009693133644759655, -0.02208377979695797, 0.014696402475237846, 0.006564691662788391, -0.02681841515004635, 0.008629798889160156, 0.01658801920711994, 0.022788938134908676, -0.04983121156692505, 0.013890506699681282, 0.02941519021987915, 0.003774837590754032, 0.0036265302915126085, -0.009357343427836895, 0.0022819717414677143, 0.01626342162489891, -0.014047208242118359, 0.004773812368512154, 0.02755715325474739, 0.012648084200918674, 0.04163794219493866, 0.008159693330526352, 0.029773365706205368, -0.05421886593103409, -0.01903928443789482, -0.05287570878863335, 0.014718788675963879, -0.012457802891731262, 0.040250010788440704, 0.009631572291254997, -0.001487269182689488, -0.011719065718352795, -0.005109602119773626, -0.02350528910756111, -0.01752823032438755, -0.04526447132229805, -0.020024267956614494, -0.0038391973357647657, 0.008417132310569286, 0.008394746109843254, 0.046921033412218094, -0.0026191608048975468, 0.008400342427194118, 0.0184460561722517, 0.04584650695323944, -0.03601905703544617, 0.016811877489089966, 0.007980605587363243, -0.00729223620146513, -0.024378342553973198, -0.005201944150030613, -0.0056384713388979435, 0.04714489355683327, -0.018143843859434128, -0.006564691662788391, 0.013946471735835075, -0.004368066322058439, 0.006682218052446842, 0.04714489355683327, -0.0426676981151104, 0.026012519374489784, -0.034608740359544754, -0.003886767430230975, -0.024244027212262154, -0.02267700806260109, -0.025139465928077698, -0.008081342093646526, -0.004771014209836721, 0.0025268185418099165, 0.0025436081923544407, -0.007577657699584961, 0.014741173945367336, -0.00985543243587017, -0.0025771870277822018, 0.007213884964585304, 0.04374222457408905, 0.003483819542452693, -0.010471046902239323, 0.005977059248834848, -0.011696679517626762, -0.004857759922742844, -0.02190469019114971, -0.01079564355313778, 0.005509751848876476, 0.011321714147925377, -0.02191588468849659, 0.006598270498216152, 0.0023743140045553446, -0.0037832322996109724, -0.00015984995116014034, 0.008596220053732395, -0.06321803480386734, 0.014808332547545433, 0.016408929601311684, 0.016789492219686508, 0.013778576627373695, 0.002384107792750001, -0.021960655227303505, -0.04457050561904907, -0.00446880329400301, -0.03413863480091095, 0.018166230991482735, 0.014651630073785782, -0.004924917593598366, -0.031564246863126755, -0.03355659916996956, -0.014819525182247162, 0.0075440783984959126, 0.002114076865836978, 0.032996948808431625, 0.01872587949037552, 0.031138911843299866, 0.03922025486826897, -0.015804508700966835, -0.0046982597559690475, 0.0350564606487751, -0.04047387093305588, 0.010750871151685715, 0.017752090469002724, -0.01728198491036892, 0.045645032078027725, -0.003377486253157258, 0.029034629464149475, 0.021792760118842125, 0.011573556810617447, 0.011584749445319176, 0.008411535993218422, 0.03192242234945297, -0.002406493993476033, -0.017226019874215126, -0.04358552023768425, 0.00985543243587017, 0.003766442881897092, 0.028810769319534302, -0.006631849333643913, 0.028295891359448433, -0.005624480079859495, -0.008909624069929123, 0.01382334902882576, -0.020774198696017265, -0.006581481080502272, 0.004130214918404818, -0.026952732354402542, -0.02587820403277874, 0.022968025878071785, 0.024132097139954567, -0.039735130965709686, 0.0066766212694346905, 0.002698910888284445, 0.06160624325275421, -0.03387000411748886, -0.011920539662241936, 0.0053642429411411285, -0.04347359389066696, -0.012670470401644707, -0.021356234326958656, -0.0046562859788537025, 0.001095514395274222, 0.00042008707532659173, 0.011830995790660381, 0.007616832852363586, -0.0005743405199609697, 0.0445033460855484, -0.05296524986624718, -0.013218927197158337, 0.043451204895973206, 0.015054577961564064, 0.007527288980782032, -0.009155869483947754, -0.033601369708776474, -0.007197095546871424, -0.0011528785107657313, -0.0074601308442652225, 0.035101231187582016, -0.015412754379212856, 0.007930236868560314, -0.013095803558826447, 0.014662823639810085, 0.0012864948948845267, 0.00968753732740879, 0.027848171070218086, 0.025564800947904587, -0.011148222722113132, -0.013633067719638348, 0.011998890899121761, -0.01778566837310791, -0.005207540933042765, 0.014472542330622673, 0.03731744363903999, -0.020863741636276245, 0.006547901779413223, 0.014315840788185596, -0.0017475063214078546, 0.03404908999800682, 0.021143566817045212, 0.008579430170357227, 0.0045303646475076675, 0.018423669040203094, 0.0032655561808496714, 0.014438963495194912, 0.014853104017674923, 0.0028444197960197926, 0.022318832576274872, -0.020863741636276245, 0.00805335957556963, -0.027713855728507042, 0.007555271498858929, 0.00410503102466464, -0.029191330075263977, 0.005859532859176397, 0.028183961287140846, -0.0478612445294857, 0.01903928443789482, -0.02858690917491913, 0.05654700845479965, -0.036287687718868256, 0.001610392122529447, 0.0004032975994050503, -0.0067437794059515], [-0.013564207591116428, -0.012728972360491753, 0.01867584139108658, -0.02726205252110958, -0.03770805150270462, 0.04169490188360214, -0.007817794568836689, 0.04109353572130203, 0.0026616137474775314, 0.04427856206893921, -0.020435402169823647, 0.005946869030594826, 0.031115267425775528, -0.004262479953467846, -0.05523683875799179, 0.015635589137673378, -0.021281773224473, 0.03423347696661949, -0.00772870285436511, -0.009905880317091942, 0.023074742406606674, 0.030602989718317986, -0.025235217064619064, 0.0005773557932116091, -0.029890256002545357, -0.014321486465632915, 0.010134178213775158, -0.026638410985469818, 0.044701747596263885, -0.0304025337100029, 0.06512600928544998, -0.02864297293126583, 0.036572132259607315, -0.014254667796194553, -0.013285796158015728, -0.016938554123044014, -0.018319474533200264, 0.017985381186008453, 0.026259770616889, -0.0010294264648109674, 0.003285255515947938, 0.051762260496616364, -0.008135183714330196, -0.01746196858584881, -0.01238374225795269, 0.03528030216693878, 0.04158353805541992, -0.03367665410041809, -0.015769226476550102, 0.03499075397849083, 0.019978808239102364, 0.02708386816084385, -0.017874017357826233, 0.020825179293751717, 0.013998528942465782, 0.008842348121106625, -0.025079306215047836, 0.02232860028743744, 0.01917698234319687, -0.009443717077374458, -0.027284324169158936, -0.031649816781282425, -0.028821155428886414, 0.05091588944196701, -0.017662424594163895, 0.016938554123044014, 0.0012744285631924868, 0.032607551664114, -0.026838866993784904, -0.01952221244573593, -0.017929699271917343, 0.021849732846021652, 0.0481095016002655, -0.0746588185429573, -0.03661667928099632, 0.01152623537927866, 0.009048373438417912, -0.026437953114509583, 0.04837678000330925, 0.018375158309936523, -0.019589031115174294, 0.013118748553097248, -0.036906223744153976, 0.037730325013399124, 0.03643849492073059, -0.03603758290410042, -0.07105060666799545, -0.0014547000173479319, -0.0009591275593265891, -0.002917752368375659, -0.04815404862165451, -0.048955872654914856, -0.01730605773627758, 0.04345446452498436, 0.040826257318258286, 0.018642432987689972, 0.030781172215938568, 0.03178345412015915, -0.05755322054028511, 0.03456756845116615, -0.007116197608411312, -0.03719577193260193, 0.01846424862742424, 0.014911718666553497, 0.008068365044891834, -0.05247499421238899, -0.02277405932545662, 0.06383418291807175, 0.028442516922950745, -0.014221258461475372, 0.013809209689497948, 0.010707705281674862, -0.03777486830949783, 0.06762058287858963, -0.01564672589302063, 0.002596186939626932, -0.011793510057032108, -0.020981088280677795, 0.01078009232878685, 0.017829470336437225, -0.057196855545043945, -0.020869724452495575, 0.03136026859283447, -0.07577246427536011, -0.013564207591116428, -0.01736173965036869, -0.03465666249394417, 0.015891727060079575, -0.053544096648693085, 0.0204465389251709, 0.0326298251748085, -0.022640421986579895, 0.037507593631744385, -0.012561925686895847, 0.01697196438908577, 0.010323497466742992, 0.034857116639614105, -0.01130350586026907, 0.006765399128198624, -0.020936543121933937, 0.048287685960531235, -0.008614051155745983, -0.01641514152288437, -0.028821155428886414, -0.05643957480788231, 0.05577138811349869, 0.020468812435865402, 0.03855442255735397, -0.022306326776742935, -0.013809209689497948, -0.014833763241767883, 0.0089871222153306, 0.002353969030082226, 0.007572792004793882, 0.005919028073549271, 0.04592675715684891, -0.0036666791420429945, 0.044144924730062485, -0.01918811909854412, 0.004451799672096968, -0.01946653053164482, -0.019878579303622246, 0.0036694633308798075, -0.023030197247862816, 0.044256288558244705, 0.026081588119268417, -0.005178453400731087, 0.010228837840259075, -0.05599411576986313, -0.031649816781282425, -0.04051443934440613, -0.024589302018284798, -0.01210533082485199, -0.02510157972574234, 0.03752986714243889, -0.06454692035913467, 0.024299753829836845, -0.0087087107822299, 0.01337488740682602, 0.03534712269902229, -0.03543621301651001, -0.017829470336437225, -0.04846587032079697, -0.0033966200426220894, -0.054702285677194595, 0.04376628249883652, 0.02935570664703846, -0.01473353523761034, -0.0007955607725307345, 0.0011011173482984304, 0.022261781617999077, -0.017606742680072784, -0.027351142838597298, 0.008797802962362766, -0.008831212297081947, 0.02980116382241249, 0.0005989326746203005, 0.0054067508317530155, -0.007038242183625698, 0.0008637715945951641, 0.052207719534635544, -0.02637113444507122, 0.05764231085777283, 0.024745212867856026, -0.004861064255237579, -0.009104055352509022, 0.025391126051545143, -0.011604190804064274, 0.04269718378782272, -0.0050448160618543625, 0.0031237767543643713, -0.024722939357161522, -0.05670684948563576, -0.0013739606365561485, -0.03891078755259514, 0.06383418291807175, -0.008764393627643585, -0.014366032555699348, -0.0314939059317112, 0.05733049288392067, -0.015023083426058292, -0.04018034413456917, -0.019911989569664, -0.0065426696091890335, -0.007583928760141134, -0.013018520548939705, 0.027507053688168526, 0.020112445577979088, 0.0002959861885756254, -0.07105060666799545, -0.001138702966272831, 0.04247445613145828, -0.02105904370546341, -0.0007231738418340683, 3.369214027770795e-05, 0.022261781617999077, -0.010841342620551586, -0.053588639944791794, 0.020936543121933937, 0.008168593049049377, -0.008803371340036392, -0.026660682633519173, 0.01044599898159504, 0.04294218495488167, 0.007606201805174351, -0.009822356514632702, -0.016994236037135124, -0.023074742406606674, 0.08093978464603424, 0.006648465991020203, 0.013853754848241806, -0.03735168278217316, 0.07603974640369415, -0.07363426685333252, 0.00493623549118638, 0.024232935160398483, -0.011960556730628014, 0.00021924903558101505, 0.03024662286043167, -0.05167317017912865, 0.0019293915247544646, -0.007266539614647627, -0.0375966876745224, 0.017261510714888573, -0.056083209812641144, 0.0009695679764263332, 0.059023234993219376, 0.027707509696483612, -0.0179742444306612, 0.011938284151256084, -0.05483592301607132, 0.011927147395908833, -0.006436873227357864, 0.001758168451488018, 0.004900041967630386, 0.003716793144121766, -0.02194996178150177, -0.015435132198035717, -0.015245812945067883, 0.01791856251657009, -0.0514058955013752, 0.004994702059775591, -0.030870264396071434, -0.039333973079919815, 0.023342018947005272, -0.004524186719208956, 0.013296931982040405, 0.010050654411315918, -0.027841147035360336, 0.029533889144659042, 0.0425858199596405, -0.0038392941933125257, 0.014889446087181568, -0.007634042762219906, 0.048243142664432526, 0.015101038850843906, -0.032585278153419495, -0.03799759969115257, 0.00513947568833828, -0.00030729666468687356, 0.014688989147543907, 0.04953496903181076, 0.030424807220697403, -0.032652098685503006, -0.02621522545814514, 0.03434484079480171, -0.0033242329955101013, 0.06508146971464157, -0.01102509442716837, 0.02599249593913555, -0.009878039360046387, 0.04006898030638695, -0.021047906950116158, -0.053276821970939636, -0.02188314124941826, -0.051450442522764206, -0.02278519608080387, 0.009349057450890541, 0.004025829955935478, -0.019778352230787277, 0.0629878118634224, 0.011838056147098541, 0.015947408974170685, -0.004390548914670944, -0.02775205671787262, -0.00750597333535552, 0.042652636766433716, 0.043543554842472076, -0.0251461248844862, -0.03737395629286766, -0.028776610270142555, -0.016905145719647408, 0.05390046164393425, -0.0179742444306612, 0.0024430607445538044, 0.008396890014410019, 0.0004405861545819789, 0.03521348536014557, 0.02221723645925522, 0.030781172215938568, 0.05412319302558899, -0.020602449774742126, -0.022762922570109367, -0.016905145719647408, -0.018943116068840027, -0.012740109115839005, 0.0030625262297689915, 0.06588329374790192, 0.012316923588514328, 0.01790742576122284, 0.024945668876171112, 0.027172960340976715, -0.032763462513685226, 0.015657860785722733, -0.005339932162314653, -0.0342557467520237, 0.025302035734057426, -0.002037971979007125, -0.009165305644273758, 0.006414600647985935, 0.017784925177693367, 0.029489343985915184, 0.0331643745303154, 0.02697250433266163, 0.025079306215047836, -0.007595065049827099, -0.009850198403000832, 0.016882872208952904, -0.010351338423788548, -0.028019331395626068, 0.024589302018284798, 0.04320945963263512, 0.032473914325237274, -0.014867172576487064, -0.041048988699913025, -0.03752986714243889, 0.0353693924844265, 0.055593203753232956, -0.008040523156523705, -0.015591043047606945, -0.004507482051849365, 0.012005102820694447, 0.027729783207178116, 0.02438884600996971, 0.038999881595373154, -0.009048373438417912, -0.065259650349617, -0.006999264471232891, -0.0087087107822299, 0.02973434515297413, -0.021961096674203873, 0.039333973079919815, -0.037017591297626495, 0.00576311768963933, -0.0013113180175423622, 0.018041063100099564, 0.05911232531070709, 0.04681767523288727, -0.013753526844084263, -0.04401128739118576, -0.0012138740858063102, -0.04327628016471863, 0.00748926866799593, -0.06846695393323898, -0.009321216493844986, -0.029266614466905594, -0.02968979999423027, -0.014343759045004845, 0.006576078943908215, 0.006726421415805817, 0.016236957162618637, 0.008073932491242886, 0.04122717306017876, 0.007132902275770903, 0.0364830419421196, 0.028709791600704193, -0.007622906472533941, 0.07448063790798187, 0.01614786498248577, -0.05795413255691528, 0.02365383878350258, 0.027930239215493202, -0.01307420339435339, -0.018475385382771492, -0.05314318463206291, -0.013196703977882862, 0.007561655715107918, -0.0046355510130524635, -0.007054946850985289, -0.07256516814231873, 0.01779606193304062, 0.0026073234621435404, 0.018419703468680382, -0.012717836536467075, -0.035681214183568954, -0.01736173965036869, 0.02576976642012596, -0.01152623537927866, -0.006314372178167105, -0.02748478204011917, 0.014989674091339111, 0.015780363231897354, 0.004983565304428339, 0.018998799845576286, -0.028442516922950745, 0.030758900567889214, -0.011671009473502636, 0.01962244138121605, -0.01659332402050495, 0.0005665673525072634, -0.03848760202527046, -0.03434484079480171, -0.06900150328874588, 0.01186032872647047, -0.026905685663223267, -0.0006706236745230854, -0.00536220520734787, -0.044813111424446106, 0.030892537906765938, -0.02217268943786621, -0.013697844929993153, 0.06539329141378403, 0.049891337752342224, 0.03873260319232941, 0.008909167721867561, 0.026616137474775314, -0.03017980419099331, -0.010089632123708725, 0.02277405932545662, -0.020435402169823647, -0.017896289005875587, -0.022807467728853226, -0.04606039449572563, -0.014577625319361687, 0.050559524446725845, -0.023587020114064217, -0.04681767523288727, -0.07804430276155472, -0.0014366032555699348, -0.023364290595054626, 0.028709791600704193, -0.0025794822722673416, 0.014054211787879467, -0.04107126221060753, 0.007099492475390434, -0.026504771783947945, 0.05612775310873985, -0.00435435539111495, -0.003683383809402585, -0.038064416497945786, -0.03991306945681572, 0.013218976557254791, 0.030447078868746758, -0.009087350219488144, -0.004763620439916849, -0.0045631639659404755, -0.05710776150226593, 0.040670350193977356, 0.03848760202527046, -0.004810950253158808, 0.026682956144213676, -0.03853214904665947, 0.011626463383436203, -0.0034634387120604515, 0.028397969901561737, -0.024700665846467018, 0.01818583719432354, -0.059023234993219376, -0.028620699420571327, -0.012695563025772572, -0.0514058955013752, -0.013040794059634209, 0.04592675715684891, 0.013920573517680168, -0.02228405512869358, -0.03118208609521389, 0.03242936730384827, -0.021471092477440834, -0.03294164687395096, 0.0036917361430823803, 0.006130620837211609, -0.023186108097434044, -0.03467893227934837, -0.027997057884931564, -0.010518386028707027, 0.010234406217932701, 0.004852712154388428, -0.01868697814643383, -0.0020087389275431633, 0.0168605986982584, -0.01647082343697548, -0.0420067235827446, -0.04908950999379158, 0.013118748553097248, -0.007589496672153473, -0.003482927568256855, 0.01116430014371872, 0.015268085524439812, 0.0041984450072050095, -0.05710776150226593, 0.050782252103090286, -0.011125322431325912, 0.006537101697176695, -0.00710506085306406, 0.01133691519498825, -0.003410540521144867, 0.030001621693372726, 0.018152428790926933, 0.02272951230406761, 0.011392598040401936, -0.0054067508317530155, 0.03964579477906227, -0.010317929089069366, 0.00250848731957376, -0.014265804551541805, 0.01288488321006298, 0.033698923885822296, -0.010195428505539894, 0.027106141671538353, -0.022595874965190887, -0.01984517090022564, 0.008252115920186043, -0.014377168379724026, 0.007004832848906517, 0.019009936600923538, -0.009571786969900131, -0.004460151772946119, -0.006336645223200321, -0.026103859767317772, 0.00942144449800253, 0.009527240879833698, 0.019321756437420845, 0.013263522647321224, -0.054034098982810974, 0.06378963589668274, 0.012261241674423218, 0.0005777038168162107, -0.018419703468680382, -0.0035024164244532585, -0.013675571419298649, 0.0018013222143054008, 0.040826257318258286, -0.011938284151256084, 0.006754262372851372, -0.015680134296417236, 0.003950658719986677, 0.004952940158545971, -0.017395149916410446, 0.0053733414970338345, 0.04637221619486809, 0.02266269363462925, 0.006392327602952719, 0.0011735043954104185, -0.00722756190225482, 0.0038031009025871754, 0.06539329141378403, -0.022796330973505974, 0.014711262658238411, 0.012205558829009533, 0.009794515557587147, 0.004732995294034481, 0.0029929233714938164, -0.012238968163728714, 0.013007383793592453, -0.024522483348846436, 0.003716793144121766, 0.03122663125395775, -0.007221993524581194, -0.011342483572661877, 0.02465612068772316, 0.013441706076264381, 0.017072191461920738, 0.012172149494290352, -0.028954794630408287, -0.05269772559404373, 0.02160472981631756, -0.03300846368074417, -0.04721858724951744, -0.00981678906828165, 0.021214954555034637, -0.02394338697195053, 0.018174700438976288, 0.01343056932091713, -0.01906561851501465, -0.007010401226580143, -0.03227346017956734, -0.002817524131387472, -0.05937959998846054, 0.03777486830949783, -0.020357446745038033, -0.01315215788781643, 0.04303127899765968, -0.0034021881874650717, 0.004031398333609104, -0.007667452096939087, -0.012751245871186256, 0.03732940927147865, -0.012896019965410233, -0.004794245585799217, 0.02648250013589859, 0.044857658445835114, -0.0016050421399995685, 0.00505873654037714, -0.008942577056586742, 0.0027799385134130716, 0.026259770616889, 0.024812031537294388, 0.026415681466460228, -0.0036388379521667957, -0.0028230922762304544, 0.00559885473921895, -0.007221993524581194, 0.019600167870521545, -0.04868859797716141, 0.031048448756337166, -0.022918833419680595, 0.00044406630331650376, 0.024633847177028656, 0.027128415182232857, -0.011737828142940998, -0.03528030216693878, 0.014254667796194553, -0.04550357162952423, 0.013831482268869877, 0.030647534877061844, 0.008591778576374054, 0.008786666207015514, 0.01310761272907257, -0.02775205671787262, -0.003009628038853407, -0.03715122863650322, 0.004557596053928137, -0.009933721274137497, -0.023453382775187492, -0.043098095804452896, -0.014310349710285664, -0.060448698699474335, 0.004490776918828487, -0.0657941997051239, 0.03942306712269783, -0.05211862921714783, -0.017439695075154305, -0.008669733069837093, -0.0073110852390527725, -0.003315880661830306, -0.016003090888261795, 0.017450831830501556, -0.033854834735393524, 0.02073608711361885, -0.024232935160398483, -0.02282974123954773, 0.039111245423555374, 0.015947408974170685, -0.0033019601833075285, 0.021203817799687386, 0.0381535105407238, -0.008886894211173058, -0.020535631105303764, -0.03775259479880333, -0.08726529031991959, 0.04523629695177078, 0.03013525903224945, 0.0026337725576013327, -0.0486440546810627, -0.012806927785277367, -0.010379180312156677, -0.029778892174363136, 0.021471092477440834, 0.03793077915906906, 0.012561925686895847, 0.0010997253702953458, -0.009137464687228203, -0.02161586657166481, -0.029756618663668633, -0.02797478623688221, 0.007288812659680843, -0.021404273808002472, -0.026460226625204086, 0.016994236037135124, -0.03227346017956734, -0.040937624871730804, 0.05501410737633705, -0.005423455499112606, -0.018341748043894768, 0.027462508529424667, -0.01395398285239935, -0.02305247075855732, -0.004833223298192024, 0.00021820499387104064, 0.011392598040401936, 0.040603529661893845, -0.030580716207623482, 0.01102509442716837, 0.006537101697176695, -0.00832450296729803, 0.03367665410041809, -0.02289655990898609, -0.009588491171598434, -0.01022326946258545, -0.009889176115393639, 0.020413128659129143, -0.031761180609464645, -0.022406555712223053, -0.028019331395626068, -0.010039517655968666, -0.029489343985915184, 0.03572576120495796, -0.0196335781365633, -0.016894008964300156, 0.04227399826049805, -0.02427748031914234, 0.005568229593336582, 0.0011512314667925239, -0.027217505499720573, -0.032808009535074234, 0.01288488321006298, -0.007377904374152422, 0.013308068737387657, -0.0022272919304668903, -0.002772978274151683, 0.005785390734672546, 0.013820345513522625, 0.008747688494622707, 0.03548076003789902, -0.0037947483360767365, -0.003045821562409401, -0.0381535105407238, -0.0022064109798520803, 0.027507053688168526, -9.422488801646978e-05, -0.01631491258740425, 0.03225118666887283, 0.06365600228309631, 0.010373611934483051, 0.015167857520282269, -0.01027895137667656, -0.002639340702444315, -0.020368583500385284, -0.018152428790926933, -0.043365370482206345, 0.03608212620019913, -0.008680869825184345, -1.4138083315629046e-05, -0.0024180037435144186, 0.005607207305729389, -0.023119289427995682, 0.006375622935593128, -0.002177177695557475, 0.02189427800476551, 0.021047906950116158, -0.010056222788989544, -0.030647534877061844, 0.005309307016432285, -0.044634927064180374, -0.017395149916410446, -0.015824908390641212, -0.0002657089498825371, -0.004852712154388428, -0.008346776477992535, -0.00012989636161364615, -0.019856305792927742, -0.010729978792369366, -0.01279579196125269, 0.003421677043661475, 0.09648628532886505, -0.03686168044805527, -0.015223539434373379, -0.008664165623486042, -0.011682145297527313, -0.014555351808667183, -0.028732065111398697, 0.010423725470900536, -0.02476748451590538, 0.03245164081454277, 0.019210392609238625, 0.0057408446446061134, -0.014778081327676773, 0.031538452953100204, 0.022027915343642235, 0.020201537758111954, -0.004799813963472843, -0.03334255889058113, 0.009855766780674458, 0.017896289005875587, 0.016604460775852203, -0.00133428699336946, -0.01764015108346939, -0.011375892907381058, -0.013764663599431515, -0.001472796662710607, 0.006113916169852018, -0.011019526049494743, 0.006370054557919502, -0.010947139002382755, 0.007973704487085342, -0.008018250577151775, -0.014288077130913734, -0.0033353695180267096, 0.020602449774742126, 0.022629285231232643, 0.06695239245891571, -0.041383083909749985, -0.022740649059414864, -0.008140751160681248, -0.03741850331425667, 0.0031460497993975878, 0.010078495368361473, 0.01791856251657009, -0.030112985521554947, 0.04100444167852402, 0.00473856320604682, -0.02846479043364525, -0.026660682633519173, -0.024834303185343742, 0.028175242245197296, -0.016726961359381676, 0.02830887958407402, -0.014755808748304844, 0.002973434515297413, -0.01230578776448965, -0.03904442489147186, -0.006459146272391081, 0.020914269611239433, -0.0017386797117069364, 0.002140984172001481, -0.0011616719420999289, 0.01785174384713173, -0.0018570045940577984, 0.03659440577030182, 0.016882872208952904, 0.015123311430215836, -0.015023083426058292, -0.02083631418645382, -0.0005996287218295038, -0.010434862226247787, -0.02670522965490818, -0.018709251657128334, 0.016292639076709747, 0.006358918268233538, -0.01210533082485199, 0.0027214721776545048, -0.00029633421218022704, 0.006860058754682541, 0.0030959355644881725, -0.00048025979776866734, -0.006125052459537983, -0.01346397865563631, 0.07394608855247498, 0.04211808741092682, 0.01840856671333313, 0.025903403759002686, 0.026170678436756134, 0.017105601727962494, -0.018475385382771492, 0.007979272864758968, -0.010785660706460476, -0.004181740339845419, -0.03140481561422348, -0.020023353397846222, 0.033364832401275635, -0.021582458168268204, 0.02256246656179428, 0.010958275757730007, -0.0058132316917181015, -0.007879044860601425, -0.017951972782611847, -0.021526776254177094, -0.030313441529870033, 0.030157530680298805, -0.015557633712887764, 0.05710776150226593, -0.01105850376188755, 0.017395149916410446, -0.05064861476421356, 0.0014853252796456218, 0.00969985593110323, -0.03886624053120613, 0.009298942983150482, 0.033364832401275635, 0.015490815043449402, 0.029778892174363136, 0.0015799851389601827, 0.006342213600873947, -0.0084302993491292, -0.022462237626314163, -0.013798072934150696, -0.016938554123044014, 0.015323767438530922, -0.01885402575135231, -0.0014714046847075224, 0.0007419665926136076, 0.04855496063828468, 0.02752932719886303, 0.055637750774621964, 0.009248829446732998, 0.015279222279787064, 0.0029261047020554543, -0.0029316728468984365, 0.00630323588848114, -0.009254397824406624, 0.024789758026599884, 0.019822897389531136, -0.01027895137667656, -0.019711533561348915, -0.01439944189041853, 0.01370898075401783, 0.003354858374223113, -0.005072657018899918, 0.0007210857002064586, 0.01279579196125269, 0.015067629516124725, 0.0003128648968413472, -0.007461427710950375, -0.009744402021169662, -0.026504771783947945, 0.001172112300992012, 0.026326589286327362, -0.01609218306839466, 0.016003090888261795, 0.02278519608080387, 0.0514058955013752, 0.012127604335546494, 0.036349400877952576, -0.05822140723466873, 0.03819805383682251, 0.04229627177119255, -0.005186805967241526, 0.02083631418645382, -0.02995707467198372, 0.019043345004320145, -0.03394392877817154, 0.0023734578862786293, 0.03824260085821152, 0.018252655863761902, -0.013998528942465782, 0.0026309883687645197, 0.03245164081454277, -0.016225820407271385, 0.0054067508317530155, 0.02117040939629078, 0.01417671237140894, 0.011882602237164974, 0.026081588119268417, 0.01889857091009617, 0.009042805060744286, 0.028887974098324776, 0.007210857234895229, -0.015190130099654198, -0.01642627641558647, 0.027462508529424667, -0.005713003687560558, 0.000333571748342365, 0.022194962948560715, 0.015156720764935017, -0.03857669606804848, 0.010952707380056381, 0.011882602237164974, 0.004131626337766647, 0.018219247460365295, 0.010156450793147087, 0.05225226655602455, -0.017784925177693367, 0.003480143379420042, -0.011537371203303337, 0.0031571860890835524, 0.00224678055383265, 0.03957897424697876, 0.004034182522445917, -0.051494985818862915, -0.0015465758042410016, 0.009716560132801533, -0.003315880661830306, -0.013530798256397247, -0.025168398395180702, -0.019889716058969498, -0.03169436380267143, -0.021716095507144928, -0.04300900548696518, -0.010468271560966969, 0.0070215375162661076, -0.010473839938640594, 0.028108423575758934, 0.00879223458468914, 0.022707240656018257, 0.007845635525882244, 0.005562661215662956, 0.02232860028743744, 0.008669733069837093, 0.016660142689943314, 0.006147325504571199, -0.02134859189391136, -0.003093151608482003, -0.01044599898159504, 0.008124046958982944, 0.029155250638723373, 0.004443447105586529, -0.018397429957985878, -0.0257029477506876, -0.023564746603369713, -0.00043188579729758203, -0.014744671992957592, -0.012595335021615028, -0.03287482634186745, 0.011381461285054684, -0.01890970766544342, -0.0171390101313591, 0.01674923487007618, 0.025168398395180702, 0.015657860785722733, 0.024700665846467018, 0.007233130279928446, 0.016103319823741913, -0.0387103334069252, -0.051004983484745026, -0.012751245871186256, -0.01973380520939827, -0.03902215138077736, 0.004691233392804861, -0.029444798827171326, -0.024812031537294388, 0.024010205641388893, -0.030870264396071434, 0.00923212431371212, -0.000815049628727138, 0.028041604906320572, -0.001542399637401104, -0.046015847474336624, -0.007255403324961662, 0.015390586107969284, -0.003218436613678932, -0.019555622711777687, 0.005328795872628689, 0.02868751809000969, 0.055415019392967224, 0.016793780028820038, 0.02621522545814514, -0.013753526844084263, -0.04550357162952423, -0.004546459298580885, 0.005802095402032137, 0.001861180760897696, 0.004187308717519045, 0.01130350586026907, -0.010039517655968666, -0.020168127492070198, -0.0057352762669324875, 0.0017024861881509423, 0.009276670403778553, -0.004390548914670944, 0.005868914071470499, 0.00011945592268602923, 0.007199720945209265, 0.010819070041179657, 0.007188584189862013, -0.0003490583912935108, 0.017595605924725533, 0.011275664903223515, 0.014844899997115135, 0.007333358284085989, -0.0026254202239215374, 0.013920573517680168, -0.00837461743503809, 0.0018361236434429884, -0.003507984569296241, 0.03730713948607445, 0.008942577056586742, 0.012127604335546494, -0.0017637367127463222, 0.029712073504924774, -0.00724426656961441, -0.01663786917924881, 0.012639881111681461, 0.010468271560966969, -0.02250678464770317, 0.038287147879600525, 0.014811490662395954, -0.020268356427550316, 0.018564477562904358, 0.0030736627522855997, -0.0022607012651860714, -0.013163294643163681, -0.018508795648813248, -0.03677258640527725, -0.007773248478770256, 0.014700125902891159, 0.000945903011597693, -0.002984571037814021, 0.019989944994449615, -0.01116430014371872, 0.012740109115839005, 0.015991955995559692, -0.04775313660502434, 0.014054211787879467, -0.015290358103811741, -0.004332082811743021, -0.0042318543419241905, 0.0041956608183681965, -0.02089199796319008, 0.019199255853891373, 0.004045318812131882, -0.010835775174200535, -0.002450020983815193, 0.0024124353658407927, 0.022039052098989487, -0.029556162655353546, -0.009471558034420013, -0.013319205492734909, 0.06240871548652649, 0.038888514041900635, -0.014499669894576073, -0.017718106508255005, 0.06904604285955429, 0.009388035163283348, 0.0019711533095687628, 0.0005143652088008821, 0.010952707380056381, 0.046238578855991364, -0.038999881595373154, 0.023921113461256027, 0.01011747308075428, 0.007043810561299324, 0.004905610345304012, 0.009861334227025509, 0.01819697394967079, 0.032473914325237274, 0.02249564789235592, 0.01867584139108658, -0.011258959770202637, -0.021627003327012062, 0.009471558034420013, 0.0024736858904361725, -0.022517919540405273, -0.03617122024297714, -0.008146319538354874, 0.029400251805782318, -0.022016780450940132, 0.023364290595054626, -0.016270367428660393, 0.01867584139108658, 0.008842348121106625, 0.019054481759667397, -0.02443339116871357, -0.04677312821149826, -0.02289655990898609, 0.012027375400066376, 0.030825719237327576, -0.01124782394617796, -0.017228102311491966, 0.014900581911206245, -0.0031933796126395464, 0.014744671992957592, 0.0005408143042586744, 0.025792039930820465, -0.026103859767317772, 0.01691628061234951, 0.0028843428008258343, -0.029222069308161736, 0.004685665015131235, 0.0002792815212160349, -0.029177522286772728, -0.01923266425728798, -0.0103624751791358, 0.011069640517234802, -0.0036778156645596027, -0.03942306712269783, -0.03917806223034859, -0.014031938277184963, 0.015836045145988464, 0.005790958646684885, -0.04236309230327606, 0.030937083065509796, -0.02045767568051815, -0.019421985372900963, 0.001349599682725966, 0.0022370361257344484, 0.004897257778793573, 0.02902161329984665, -0.017205828800797462, -0.03445620462298393, -0.0023191676009446383, 0.0003039905277546495, -0.01501194667071104, -0.00043397388071753085, -0.012673290446400642, 0.016014227643609047, -0.00917644239962101, -0.03107072040438652, -0.007606201805174351, -0.022239508107304573, 0.024722939357161522, 0.036015309393405914, 0.001298093469813466, -0.003084799274802208, 0.011258959770202637, 0.045525845140218735, -0.00973326526582241, 0.04819859564304352, -0.032919373363256454, -0.016125593334436417, 0.014165575616061687, -0.01041815709322691, 0.01501194667071104, -0.006459146272391081, -0.02022380940616131, -0.012027375400066376, 0.022428829222917557, -0.016069911420345306, 0.006370054557919502, -0.009053940884768963, 0.009738833643496037, 0.016392868012189865, 0.022373147308826447, 0.006592783611267805, 0.013196703977882862, -0.0073166536167263985, -0.0072776759043335915, 0.0037000884767621756, -0.003446734044700861, 0.006035960745066404, 0.018453111872076988, -0.0036082128062844276, -0.051717717200517654, -0.04196217656135559, 0.002234252169728279, -0.014744671992957592, 0.016348322853446007, -0.002806387608870864, -0.004836007487028837, -0.001028034370392561, 0.012283514253795147, 0.018174700438976288, 0.00931564811617136, 0.02068040519952774, -0.025413399562239647, 0.05047043412923813, 0.016103319823741913, 0.004167819861322641, 0.018597885966300964, 0.017049919813871384, 0.018776070326566696, -0.006481419317424297, 0.014811490662395954, -0.017718106508255005, -0.006264258176088333, -0.014377168379724026, 0.011448279954493046, -0.007372335996478796, 0.00022916744637768716, 0.024589302018284798, -0.02023494616150856, -0.03844305872917175, -0.029155250638723373, 0.014933991245925426, 0.0012194422306492925, -0.03503530099987984, 0.04505811259150505, 0.003984068054705858, -0.03323119506239891, 0.023252926766872406, -0.0021479446440935135, 0.012751245871186256, 0.03376574441790581, 0.011960556730628014, 0.016003090888261795, -0.018453111872076988, 0.023631567135453224, -0.0005690034595318139, -0.0021757856011390686, -0.0034996322356164455, -0.000745446712244302, -0.030937083065509796, 0.014243531040847301, -0.0021423762664198875, 0.004142762627452612, 0.014254667796194553, -0.013519661501049995, -0.035859398543834686, 0.006776535417884588, -0.019655849784612656, 0.0168605986982584, -0.005437375977635384, -0.04167262837290764, -0.00042248942190781236, 0.013976256363093853, 0.03479029983282089, -0.03873260319232941, 0.02205018885433674, 0.023898841813206673, 0.00684335408732295, -0.005131123587489128, -0.00925996620208025, -0.009861334227025509, 0.009165305644273758, 0.0017999302363023162, -0.0023233438841998577, 0.03412210941314697, 0.00961633212864399, 0.04320945963263512, 0.018107881769537926, 0.01813015528023243, -0.043877650052309036, 0.0035135529469698668, -0.04819859564304352, 0.00487776892259717, -0.0025530331768095493, 0.033476196229457855, 0.008463708683848381, -0.003989636432379484, 0.0010760603472590446, -0.012840337119996548, -0.014076484367251396, -0.011815783567726612, -0.025947948917746544, -0.02160472981631756, -0.02383202314376831, 0.02040199376642704, 0.02056903950870037, 0.03906669840216637, 0.005757549311965704, 0.02576976642012596, 0.008285525254905224, 0.03951215744018555, -0.04570402950048447, 0.016014227643609047, 0.0024402765557169914, 0.01443285122513771, -0.028553880751132965, 0.009994972497224808, -0.004298673011362553, 0.03329801186919212, -0.015557633712887764, 0.0031599702779203653, 0.01974494196474552, 0.004955724347382784, 0.01735060289502144, 0.02924434095621109, -0.02621522545814514, 0.01421012170612812, -0.024567028507590294, 0.011593054048717022, -0.013308068737387657, -0.0036388379521667957, -0.03621576353907585, -0.012394879013299942, -0.00917644239962101, 0.005660105496644974, 0.01725037582218647, -0.017718106508255005, 0.017606742680072784, -0.011242255568504333, -0.014143303036689758, -0.004933451302349567, 0.02117040939629078, -0.017929699271917343, -0.017818335443735123, -0.010624182410538197, -0.027707509696483612, -0.013530798256397247, -0.019099026918411255, -0.004922315012663603, 0.0013482075883075595, 0.007533814758062363, -0.029155250638723373, 0.0036360539961606264, -0.0029567298479378223, 0.001621746807359159, -0.012216695584356785, 0.01990085281431675, -0.042541272938251495, 0.032540734857320786, 0.011982830241322517, 0.021471092477440834, 0.041160352528095245, 0.010462703183293343, -0.02897706627845764, -0.041383083909749985, 0.0072776759043335915, -0.02343110926449299, 0.0021966665517538786, -0.0006779319373890758, -0.022239508107304573, -0.027217505499720573, -0.032362550497055054, -0.02886570245027542, -0.004543675109744072, 0.009265533648431301, 0.009827924892306328, 0.020312901586294174, 0.03610439971089363, 0.03605985641479492, -0.008619619533419609, -0.005147828254848719, 0.01596968248486519, -0.04374401271343231, 0.012216695584356785, 0.01415443979203701, -0.0020421482622623444, 0.028041604906320572, 0.007155174855142832, 0.028019331395626068, 0.008313367143273354, 0.013998528942465782, 0.010178723372519016, -0.022852014750242233, 0.008018250577151775, 0.005473569501191378, -0.0342557467520237, -0.02630431577563286, -0.004863848444074392, 0.01128123328089714, 0.020001079887151718, -0.004557596053928137, 0.045414481312036514, -0.005303738638758659, -0.0022871503606438637, 0.01641514152288437, -0.029556162655353546, -0.012272377498447895, 0.01395398285239935, -0.02023494616150856, -0.014989674091339111, 0.02864297293126583, 0.020969953387975693, -0.044634927064180374, -0.014087621122598648, 0.004426742438226938, 0.055860478430986404, -0.014844899997115135, 0.001912686857394874, -0.0006807160680182278, -0.042541272938251495, 0.0009291982860304415, -0.03238482400774956, 0.003257414326071739, -0.002987355226650834, -0.01957789435982704, 0.008786666207015514, 0.014588761143386364, -0.00997826736420393, 0.03997988998889923, -0.0746588185429573, -0.015713544562458992, 0.037841688841581345, 0.0025920108892023563, 0.004925099201500416, 0.008302230387926102, -0.025636129081249237, -0.000367503147572279, 0.013241250067949295, -0.018274929374456406, 0.023252926766872406, -7.508409908041358e-05, 0.015657860785722733, -0.009950426407158375, 0.037284865975379944, -0.0016774291871115565, 0.0050058383494615555, 0.027729783207178116, 0.02879888378083706, -0.022362010553479195, -0.00447685644030571, 0.0359484888613224, -0.006069370079785585, 0.002619852079078555, 0.021983370184898376, 0.045191749930381775, -0.012962838634848595, -0.018609022721648216, 0.0204465389251709, -0.004758052062243223, 0.03717350214719772, 0.024411117658019066, -0.016738098114728928, 0.0047524841502308846, 0.01050168089568615, 0.005142259877175093, 0.01808561012148857, 0.009889176115393639, -0.0026880628429353237, 0.020769495517015457, -0.012372606433928013, 0.008892462588846684, -0.036193493753671646, -0.002456981223076582, 0.017506513744592667, -0.036126673221588135, 0.0030374692287296057, 0.015334904193878174, -0.050559524446725845, 0.029444798827171326, -0.017049919813871384, 0.048955872654914856, -0.014043075032532215, 0.016660142689943314, -0.006386759225279093, 0.008619619533419609], [-0.0008817224879749119, -0.004299907013773918, 0.05184366926550865, -0.008071585558354855, -0.04099566489458084, 0.03963000327348709, 0.005607593804597855, 0.030276497825980186, 0.006267879158258438, 0.0448865182697773, -0.023113207891583443, -0.031075282022356987, 0.006103612948209047, 0.007427404634654522, -0.032234806567430496, 0.035352643579244614, -0.022713815793395042, 0.004934425000101328, -0.030637238174676895, -0.016478145495057106, 0.06008918583393097, 0.026256809011101723, -0.03148755803704262, 0.014700205996632576, -0.018771428614854813, -0.03344586864113808, 0.024298500269651413, -0.02860162779688835, 0.05570875480771065, -0.04331471771001816, 0.08188826590776443, -0.03012189455330372, 0.024375801905989647, -0.024298500269651413, -0.025303421542048454, -0.01594991609454155, -0.02976115234196186, 0.0034560300409793854, 0.04053185507655144, 0.011389116756618023, -0.00516632990911603, 0.030611472204327583, -0.002818291075527668, -0.009321296587586403, -0.01575666293501854, 0.052539385855197906, 0.027261732146143913, -0.03777476027607918, 0.0006260632071644068, 0.0350949689745903, 0.03409004956483841, 0.020330345258116722, -0.009682036936283112, 0.006602853070944548, 0.02087145857512951, -0.0030195973813533783, 0.013811236247420311, 0.02483961172401905, 0.05472959950566292, -0.02898813597857952, -0.020175741985440254, -0.03393544256687164, -0.018475105985999107, 0.03787783160805702, -0.01676158420741558, 0.01928677223622799, 0.002282010391354561, 0.055244944989681244, -0.024350034072995186, -0.006283983588218689, -0.026282576844096184, 0.019067751243710518, 0.03666676953434944, -0.07843545079231262, -0.039320796728134155, 0.01231673639267683, 0.0049440874718129635, -0.04638101905584335, 0.018256083130836487, -0.0030663006473332644, -0.009044297970831394, 0.016272006556391716, -0.011968879029154778, 0.026900989934802055, 0.045221492648124695, -0.0056559075601398945, -0.06761321425437927, -0.013102637603878975, 0.0011474470375105739, 0.0010097534395754337, -0.038522012531757355, -0.04004227742552757, -0.015395920723676682, 0.03272438421845436, 0.06513956189155579, 0.02267516404390335, 0.04395889863371849, 0.013025335967540741, -0.0492154136300087, 0.040506087243556976, -0.0065513188019394875, -0.04870006814599037, 0.03548147901892662, 0.010525913909077644, 0.01113144401460886, -0.03187406435608864, -0.02523900382220745, 0.0346311591565609, 0.013617982156574726, -0.021528521552681923, 0.009817315265536308, -0.010281125083565712, -0.017689203843474388, 0.060192253440618515, -0.009682036936283112, 0.014159093610942364, -0.03014766052365303, -0.03290475532412529, 0.016877537593245506, 0.022172702476382256, -0.05184366926550865, -0.016207588836550713, 0.03174522891640663, -0.07482804358005524, 0.0023093882482498884, -0.0418202169239521, -0.019557328894734383, 0.017392881214618683, -0.06044992431998253, 0.008335699327290058, 0.036537934094667435, -0.02893660217523575, 0.04460307955741882, -0.023345112800598145, 0.017431532964110374, 0.022198470309376717, 0.02228865586221218, -0.010306892916560173, -0.014210628345608711, -0.018049946054816246, 0.030199196189641953, 0.012091273441910744, -0.012619501911103725, 0.0024253407027572393, -0.05068414658308029, 0.02151563949882984, 0.004438405856490135, 0.04612334445118904, -0.02601202018558979, -0.0073307775892317295, -0.015718011185526848, 0.0023963525891304016, 0.006032753270119429, 0.011067026294767857, 0.017843808978796005, 0.02208251692354679, -0.005034273024648428, 0.03174522891640663, -3.877666313201189e-05, 0.002077483106404543, -0.046999432146549225, -0.014816158451139927, -0.005085807293653488, -0.025470908731222153, 0.024156779050827026, -0.0032305666245520115, -0.02109047956764698, -0.0023850793950259686, -0.0633358582854271, -0.018616825342178345, -0.04506688937544823, -0.03867661580443382, -0.03290475532412529, -0.04550493136048317, 0.004499603062868118, -0.07323047518730164, 0.012464898638427258, -0.029683850705623627, 0.017869574949145317, 0.016993489116430283, -0.012232993729412556, 0.005778301972895861, -0.08322815597057343, -0.0037491321563720703, -0.045247260481119156, 0.03352316841483116, 0.01888738013803959, -0.01053235586732626, -0.011640346609055996, 0.0017441195668652654, 0.008754417300224304, -0.017856691032648087, 0.008838160894811153, -0.003251502523198724, -0.024916913360357285, 0.013579331338405609, 0.004460952244699001, 0.004873227793723345, -0.01655544713139534, 0.0022111504804342985, 0.0500141978263855, -0.030663006007671356, 0.08312509208917618, 0.024285616353154182, -0.023499716073274612, -0.012368271127343178, 0.018204549327492714, 0.01026180014014244, 0.02697829157114029, -0.03620295971632004, 0.0072212666273117065, -0.023989293724298477, -0.055296480655670166, 0.009797990322113037, -0.014236395247280598, 0.05977997928857803, -0.05643023923039436, -0.03661523759365082, -0.01754748448729515, 0.05828547850251198, -0.006879850756376982, -0.02599913626909256, -0.030405333265662193, -0.01832050271332264, -0.016310658305883408, -0.013347426429390907, 0.02106471173465252, 0.01735423132777214, 0.002873046323657036, -0.07286973297595978, 0.004969854839146137, 0.034373488277196884, -0.012941592372953892, -0.0043031275272369385, -0.0028649941086769104, -0.0038876309990882874, -0.035378407686948776, -0.06184135749936104, 0.0022014877758920193, -0.005491641350090504, -0.011859368532896042, -0.021386802196502686, 0.01222655177116394, 0.02795744687318802, 0.020149976015090942, -0.0009074896806851029, -0.016903303563594818, -0.031796764582395554, 0.06318125128746033, -0.0030373125337064266, 0.016439493745565414, -0.02321627549827099, 0.07312740385532379, -0.08106371015310287, 0.0018149793613702059, 0.0354299433529377, -0.006834758445620537, -0.007614217232912779, 0.043855827301740646, -0.05679097771644592, -0.02366720326244831, -0.0016128676943480968, -0.019982488825917244, 0.003961712121963501, -0.03947540000081062, 0.01193022821098566, 0.033394332975149155, 0.0019277110695838928, -0.006486900616437197, 0.022314423695206642, -0.05730632320046425, 0.015808196738362312, 0.004702519625425339, 0.015524757094681263, -0.012336062267422676, 0.009179576300084591, 0.0008462925325147808, -0.038934286683797836, -0.005462653003633022, 0.004602671600878239, -0.058646220713853836, -0.0020710413809865713, -0.01692907139658928, -0.03728518635034561, 0.004541474394500256, 0.003510785289108753, 0.015524757094681263, 0.02109047956764698, -0.025535326451063156, 0.015640709549188614, 0.06524263322353363, -0.011981762945652008, 0.04001650959253311, -0.017650553956627846, 0.05766706541180611, 0.002771587809547782, -0.020600901916623116, -0.022932836785912514, -0.002695896662771702, 0.00011897214426426217, 0.00806514360010624, 0.029606549069285393, 0.031229885295033455, -0.05109642073512077, -0.04377852752804756, 0.055863358080387115, 0.012123482301831245, 0.0772501602768898, 0.0007653672946617007, 0.034940365701913834, -0.01546033937484026, 0.064727284014225, -0.03434772044420242, -0.04983382672071457, -0.04349508881568909, -0.05109642073512077, -0.03277591988444328, 0.0027007278986275196, 0.007498264312744141, -0.0037587948609143496, 0.06694326549768448, -0.00483135599642992, 0.0017135209636762738, -0.008374350145459175, -0.005510966759175062, -0.015370153822004795, 0.049138110131025314, 0.043443553149700165, -0.01932542398571968, -0.03285321965813637, -0.03370353952050209, -0.006531993392854929, 0.05086451396346092, -0.024556171149015427, -0.02230153977870941, 0.007234150543808937, -0.0012263591634109616, 0.0469478964805603, 0.0006409598863683641, 0.03246671333909035, 0.04084106162190437, -0.03256978094577789, -0.0315648578107357, 0.0008825276745483279, -0.012851406820118427, -0.012806314043700695, -0.007427404634654522, 0.0528743602335453, 0.04844239726662636, 0.03981037437915802, -0.00458334619179368, 0.02460770681500435, -0.03710481524467468, 0.041485242545604706, -0.01694195531308651, -0.03664100542664528, 0.04653562232851982, 0.004109873436391354, -0.026643317192792892, 0.00994615163654089, 0.032440945506095886, 0.01637507602572441, 0.018372036516666412, 0.02125796675682068, 0.010461496189236641, 0.0015275137266144156, -0.029606549069285393, 0.03628026321530342, 0.02462059073150158, -0.033961210399866104, 0.019029101356863976, 0.011311815120279789, 0.029503481462597847, -0.005626919213682413, -0.031229885295033455, -0.034167349338531494, 0.005849161650985479, 0.030894910916686058, -0.015872614458203316, -0.016632748767733574, 0.013540680520236492, 0.02186349593102932, 0.006918501574546099, 0.019170820713043213, 0.043263182044029236, 0.010860888287425041, -0.07554952055215836, -0.01181427575647831, 0.022778233513236046, 0.006387052591890097, -0.015821080654859543, 0.025303421542048454, -0.03764592483639717, 0.030972212553024292, -0.009656270034611225, 0.012187900952994823, 0.08425884693861008, 0.06122294440865517, 0.00503105204552412, -0.014841925352811813, 0.0003804692823905498, -0.06184135749936104, 0.013218590058386326, -0.06854083389043808, -0.02973538637161255, -0.010918864980340004, -0.026875222101807594, -0.0010645088041201234, -0.004287023097276688, -0.004747612401843071, 0.015911266207695007, 0.027622472494840622, 0.04707673192024231, -0.01368239987641573, 0.025728581473231316, -0.0023738062009215355, -0.025470908731222153, 0.06467575579881668, 0.0029777258168905973, -0.019583096727728844, 0.026720618829131126, 0.014854809269309044, -0.03053417056798935, -0.010210265405476093, -0.04962768778204918, 0.006667271256446838, -0.005182434339076281, 0.0034044955391436815, -0.012986685149371624, -0.06483035534620285, 0.025573978200554848, 0.007672193460166454, 0.001510603935457766, 0.01062898337841034, -0.03460539132356644, -0.027622472494840622, 0.009379272349178791, 0.01555052399635315, -0.02579299919307232, -0.023602783679962158, 0.037156347185373306, 0.018423570320010185, 0.025715697556734085, -0.019389841705560684, -0.04849392920732498, 0.028653161600232124, -0.020588018000125885, 0.039501167833805084, 0.0005097080720588565, 0.00738231185823679, -0.04663868993520737, -0.011582370847463608, -0.0649334266781807, 0.008129561319947243, -0.034579623490571976, 0.0007951606530696154, 0.00787833146750927, -0.06642792373895645, 0.03409004956483841, -0.021824846044182777, -0.009965476579964161, 0.03883121907711029, 0.06297511607408524, 0.029683850705623627, 0.02914273925125599, -0.005143783520907164, -0.04929271340370178, -0.0018713452154770494, 0.007672193460166454, -0.041459474712610245, -0.011653230525553226, -0.03996497765183449, -0.016671398654580116, -0.0006461938610300422, 0.06735554337501526, 0.001673259655945003, -0.03177099674940109, -0.10286279022693634, -0.0006969231180846691, -0.03282745182514191, 0.03561031445860863, 0.006802549120038748, -0.015215550549328327, -0.030663006007671356, 0.018565289676189423, 0.01815301552414894, 0.04978229105472565, -0.006963594350963831, -0.0073372190818190575, -0.02268804796040058, -0.028910834342241287, -0.005942567717283964, 0.04516995698213577, -0.013347426429390907, 0.007491822820156813, -0.00936638843268156, -0.036331795156002045, 0.0318998321890831, 0.022159818559885025, -0.006155147682875395, 0.005926463287323713, -0.06519109755754471, 0.023190509527921677, -0.0076850769110023975, 0.04220672696828842, -0.01556340791285038, 0.01113144401460886, -0.0772501602768898, -0.05058107525110245, -0.02105182781815529, -0.03372930735349655, -0.005527071189135313, 0.024697892367839813, -0.007974958047270775, -0.020845690742135048, -0.019003333523869514, 0.010094312950968742, -0.017225394025444984, -0.027880145236849785, 0.026952523738145828, 0.009140925481915474, -0.026669085025787354, -0.02736479975283146, -0.0034141582436859608, -0.010790028609335423, -0.01035842765122652, 0.001876176567748189, -0.021245082840323448, 0.007111756131052971, 0.016297774389386177, 0.0043353368528187275, -0.040660690516233444, -0.050323404371738434, 0.025496676564216614, -0.0065191094763576984, -0.012883615680038929, -0.007440288085490465, 0.016413725912570953, 0.02246902696788311, -0.052127111703157425, 0.053286634385585785, -0.007936307229101658, 0.027261732146143913, 0.007008687127381563, 0.022327305749058723, 0.0005886201979592443, 0.02424696460366249, 0.028498558327555656, 0.019209470599889755, 0.0033271939028054476, 0.006602853070944548, 0.04200058802962303, -0.02759670466184616, -0.011376232840120792, -0.02499421499669552, 0.021232198923826218, 0.033806607127189636, -0.02107759565114975, 0.03352316841483116, -0.003974595572799444, -0.00739519577473402, 0.017225394025444984, -0.0017698867013677955, -0.0014808105770498514, 0.005469094961881638, 0.006477238144725561, -0.0029374645091593266, 0.005552838556468487, -0.026875222101807594, -0.0029503479599952698, -0.01754748448729515, 0.02129661664366722, 0.014429650269448757, -0.04099566489458084, 0.03821280598640442, -0.008541837334632874, -0.006142263766378164, -0.027467869222164154, 0.023808922618627548, -0.014339464716613293, -0.0012666204711422324, 0.042258258908987045, -0.01850087195634842, 0.0011087962193414569, -0.017766505479812622, 0.020922992378473282, -0.0011023543775081635, -0.00956608448177576, -0.011936670169234276, 0.028137817978858948, 0.014326580800116062, -0.0028392269741743803, 0.012271644547581673, 0.011408441700041294, -0.012142808176577091, 0.061995960772037506, -0.007672193460166454, 0.015434571541845798, -0.0001713118253974244, 0.01870701089501381, 0.02721019648015499, -0.013772585429251194, -0.023564133793115616, 0.027339033782482147, -0.0394238643348217, -0.0049762967973947525, 0.02483961172401905, -0.018384920433163643, -0.001737677725031972, 0.023757386952638626, 0.02520035207271576, 0.016272006556391716, 0.005816952791064978, -0.033986978232860565, -0.03705327957868576, 0.028034748509526253, -0.015086714178323746, -0.054317325353622437, -0.003826434025540948, 0.029116971418261528, -0.033600471913814545, -0.01908063516020775, 0.006071404088288546, 0.005047156475484371, -0.003133939579129219, -0.0338323749601841, -0.025586862117052078, -0.04359815642237663, 0.04390736296772957, -0.009012089110910892, -0.016194704920053482, 0.04924118146300316, 0.0034044955391436815, 0.0067896656692028046, -4.421194171300158e-05, -0.011872252449393272, 0.02225000411272049, -0.014622904360294342, -0.006718805525451899, -0.0034946808591485023, 0.0405576229095459, 0.014983645640313625, 0.021348152309656143, -0.011891577392816544, -0.00744673004373908, 0.007279242854565382, 0.019351191818714142, 0.024195430800318718, 0.0012674257159233093, 0.0015154352877289057, 0.01953156106173992, -0.005807289853692055, 0.028885066509246826, -0.04831355810165405, 0.01814013160765171, -0.01241336390376091, -0.012484223581850529, 0.024878261610865593, 0.02679792046546936, -0.008522512391209602, -0.02167024277150631, -0.0032933743204921484, -0.029477713629603386, 0.005317712668329477, 0.03228634223341942, -0.002869825344532728, 0.021180665120482445, 0.005362804979085922, -0.0017827703850343823, -0.003913398366421461, -0.025380723178386688, 0.008335699327290058, -0.003111393190920353, -0.023486832156777382, -0.02638564631342888, -0.024543289095163345, -0.049395784735679626, 0.01035842765122652, -0.05957384034991264, 0.02089722454547882, -0.05380197986960411, -0.005163108929991722, 0.0029487377032637596, -0.0023077777586877346, -0.013914304785430431, -0.00974645558744669, 0.021708892658352852, -0.0354299433529377, -0.0035333316773176193, -0.00896699633449316, -0.012239434756338596, 0.045607998967170715, -0.003874747548252344, -0.007614217232912779, 0.022507676854729652, 0.03146179020404816, -0.008593372069299221, -0.00649978406727314, -0.01929965615272522, -0.0722513198852539, 0.03187406435608864, 0.018230317160487175, 0.011266722343862057, -0.041459474712610245, -0.025187470018863678, 0.011324698105454445, -0.031049514189362526, 0.012078389525413513, 0.03707904741168022, 0.013952956534922123, 0.004039013758301735, 0.0027893029619008303, -0.022945720702409744, -0.020974526181817055, -0.00994615163654089, 0.022803999483585358, 0.015305736102163792, -0.019583096727728844, -0.009469457902014256, -0.0016523237572982907, -0.01636219210922718, 0.0508129820227623, -0.01477750763297081, -0.009901058860123158, 0.02190214768052101, -0.017470182850956917, -0.02127085067331791, 0.008799510076642036, 0.0021193549036979675, -0.005668791010975838, 0.02978692017495632, -0.024478869512677193, 0.0038876309990882874, 0.013218590058386326, -0.006361285224556923, 0.004464172758162022, -0.03305935859680176, -0.01848798803985119, -0.016594097018241882, -0.008696440607309341, 0.018810078501701355, -0.031229885295033455, -0.029606549069285393, -0.02147698774933815, -0.01104770042002201, -0.020987410098314285, 0.008709324523806572, -0.007910540327429771, -0.001700637280009687, 0.04256746545433998, -0.012232993729412556, 0.010802911594510078, 0.0026975071523338556, -0.03365200385451317, -0.027725541964173317, 0.0378262959420681, -0.017818041145801544, 0.01289649959653616, -0.01735423132777214, 0.00214029080234468, 0.022713815793395042, 0.035172272473573685, -0.005749313626438379, 0.039295028895139694, -0.00028786828625015914, 0.006074625067412853, -0.03460539132356644, 0.00196636188775301, 0.027828609570860863, -0.01692907139658928, -0.01855240762233734, 0.029323110356926918, 0.056069497019052505, 0.011936670169234276, 0.021361034363508224, 0.003462471766397357, 0.007633542641997337, -0.026926757767796516, -0.03957846760749817, -0.050349172204732895, 0.03228634223341942, 0.00045092657092027366, 0.009102274663746357, -0.0005982829025015235, 0.007672193460166454, -0.018977565690875053, 0.009997686371207237, -0.00467997370287776, 0.02565127983689308, 0.0048055886290967464, -0.012883615680038929, -0.02973538637161255, 0.003926281817257404, -0.03939809650182724, -0.009720688685774803, 0.00905073992908001, 0.009810873307287693, -0.03246671333909035, -0.016503911465406418, 0.028421256691217422, -0.009495224803686142, 8.847420394886285e-05, -0.00527906185016036, 0.015473222360014915, 0.07591026276350021, 0.0024366138968616724, -0.011041258461773396, 0.005543175619095564, -0.010706285014748573, -0.01654256321489811, -0.037362486124038696, 0.03287898749113083, -0.032209038734436035, 0.024672124534845352, 0.01892603188753128, 0.005472315941005945, -0.0063645062036812305, 0.028240885585546494, 0.02343529835343361, 0.005591489374637604, -0.003829654771834612, -0.03584222123026848, 0.014236395247280598, 0.007504706270992756, 0.018049946054816246, 0.005527071189135313, -0.018964681774377823, -0.01114432793110609, -0.011382674798369408, 0.00047387549420818686, 0.021773310378193855, 0.01379835233092308, -0.0008366298279725015, -0.011994646862149239, 0.00896055530756712, -0.016503911465406418, 0.002051715739071369, -0.016194704920053482, 0.0029374645091593266, 0.011659672483801842, 0.06776782125234604, -0.029451945796608925, -0.044216569513082504, -0.016606980934739113, -0.02424696460366249, 0.006142263766378164, 0.01933830790221691, -0.001951867830939591, -0.03460539132356644, 0.02362855151295662, -0.012323178350925446, -0.04784974828362465, -0.026346994563937187, -0.04751477390527725, 0.01676158420741558, -0.0072921267710626125, 0.025342073291540146, -0.018964681774377823, 0.015718011185526848, -0.01850087195634842, -0.049163877964019775, 0.00023693774710409343, 0.006419261451810598, -0.02282976731657982, -0.0004710571956820786, -0.007633542641997337, 0.02504574880003929, -0.006097171455621719, 0.04218095913529396, 0.001496915123425424, 0.0009614398586563766, -0.0015097986906766891, -0.014133326709270477, -0.0008575656684115529, -0.003071131883189082, -0.017109442502260208, -0.009269761852920055, 0.01654256321489811, 0.013373193331062794, -0.014262163080275059, -0.009392156265676022, 0.006077846046537161, 0.012806314043700695, 0.010609657503664494, -0.011885135434567928, -0.0029261913150548935, -0.008902578614652157, 0.05967690795660019, 0.03254401311278343, 0.024878261610865593, 0.029323110356926918, 0.006522330455482006, 0.013321658596396446, 0.010242474265396595, 0.010139405727386475, 0.0017972644418478012, -0.006522330455482006, -0.027622472494840622, -0.015408804640173912, 0.039346564561128616, -0.034193117171525955, 0.0036170752719044685, 0.014700205996632576, -0.00816821213811636, -0.009572526440024376, 0.008258397690951824, -0.006808991078287363, -0.0023721957113593817, 0.03053417056798935, -0.007466055452823639, 0.07848698645830154, -0.006622178480029106, 0.021953681483864784, -0.04450000822544098, -0.000389729393646121, -0.0033529610373079777, -0.01848798803985119, -0.010719168931245804, 0.020588018000125885, 0.006432145368307829, 0.04297974333167076, -0.02049783244729042, 0.010126521810889244, -0.009095832705497742, -0.011105677112936974, -0.01578242890536785, -0.01654256321489811, 0.015872614458203316, 0.0017570031341165304, -0.01911928690969944, 0.02347394824028015, 0.04766937717795372, 0.04864853248000145, 0.07127216458320618, 0.0005016557988710701, 0.0055077457800507545, -0.017470182850956917, -0.003726586000993848, 0.010983282700181007, -0.004834576975554228, 0.03540417551994324, 0.018217433243989944, 0.002001791726797819, -0.015614942647516727, 0.016710050404071808, 0.0011877083452418447, 0.006554539781063795, -0.008355025202035904, 0.0015548913506790996, 0.010210265405476093, 0.013965839520096779, -0.005907137878239155, -0.01969904825091362, -0.017379997298121452, -0.04710249975323677, -0.0006731689209118485, 0.009495224803686142, -0.010094312950968742, 0.012220109812915325, 0.00349790183827281, 0.04926694557070732, 0.011601695790886879, 0.020240161567926407, -0.0708598867058754, 0.03313666209578514, 0.04586567357182503, -0.001536371186375618, 0.010023453272879124, -0.010068546049296856, 0.02893660217523575, -0.027287498116493225, -0.004535032901912928, 0.03661523759365082, 0.020046906545758247, -0.004460952244699001, 0.011369790881872177, 0.024298500269651413, -0.008786626160144806, 0.02619239129126072, 0.030972212553024292, 0.002982557052746415, 0.018204549327492714, 0.030688773840665817, 0.014146210625767708, 0.00914736744016409, 0.0326986163854599, 0.008696440607309341, -0.01893891580402851, 0.0017215731786563993, 0.01933830790221691, 0.01408179197460413, -0.001611257204785943, 0.018204549327492714, 0.018784312531352043, -0.025934718549251556, 0.014854809269309044, 0.012278085574507713, 0.00719549972563982, 0.03630603104829788, 0.0028279537800699472, 0.059213098138570786, -0.020755505189299583, 0.015434571541845798, -0.021773310378193855, 0.0001723183668218553, 0.014043141156435013, 0.044989585876464844, 0.007124639581888914, -0.043237414211034775, -0.005237190052866936, -0.003826434025540948, 0.014468301087617874, -0.018462222069501877, 0.005253294482827187, -0.021940797567367554, -0.029632316902279854, -0.035584546625614166, -0.06307818740606308, -0.01094463188201189, 0.005891033448278904, -0.016065869480371475, 0.03821280598640442, 0.028627393767237663, 0.0015951526584103703, 0.0038167713209986687, 0.008934787474572659, 0.02109047956764698, 0.023486832156777382, 0.03491459786891937, 0.012097715400159359, -0.023692969232797623, -0.005208201706409454, 0.0024994215928018093, 0.007453172001987696, 0.01399160735309124, 0.016864653676748276, -0.010925306007266045, -0.0038071086164563894, -0.044834982603788376, 0.009231111034750938, -0.005733209196478128, -0.007343661040067673, -0.017276929691433907, 0.03254401311278343, 0.012664594687521458, -0.003008324420079589, 0.020459182560443878, 0.014442533254623413, 0.007891214452683926, 0.013244356960058212, 0.008657789789140224, 0.021708892658352852, -0.036769840866327286, -0.026321226730942726, 0.0014171977527439594, -0.02087145857512951, -0.023306461051106453, -0.013038218952715397, -0.005926463287323713, -0.02128373272716999, 0.007987841963768005, -0.019376957789063454, -0.003035702044144273, -0.008747975341975689, 0.01732846349477768, 0.0034302626736462116, -0.04151101037859917, 0.014816158451139927, 0.028885066509246826, 0.013141288422048092, -0.002480096183717251, 0.01555052399635315, 0.025329189375042915, 0.04053185507655144, 0.023345112800598145, 0.0326986163854599, -0.027081361040472984, -0.04076376184821129, -0.017624786123633385, 0.0048764487728476524, -0.010777144692838192, 0.010796470567584038, 0.016065869480371475, -0.02008555643260479, -0.02523900382220745, 0.0034689134918153286, -0.03195136785507202, 0.007904098369181156, -0.007826796732842922, -0.0004001973138656467, 0.006235670298337936, 0.005974777042865753, 0.018165897578001022, 0.014584253542125225, -0.0005632555694319308, 0.016323542222380638, 0.029426177963614464, 0.005285503342747688, -0.004741170443594456, -0.005208201706409454, 0.014661555178463459, -0.0013374803820624948, -0.0059715560637414455, -0.009070065803825855, 0.02027881145477295, -0.004663868807256222, 0.017392881214618683, 0.000979960081167519, 0.03926926106214523, -0.0030807945877313614, -0.009540317580103874, 0.02225000411272049, -0.002905255416408181, -0.00896055530756712, 0.068592369556427, 0.015898382291197777, -0.007305010221898556, 0.022365957498550415, 0.01439099945127964, 0.016710050404071808, -0.018410686403512955, -0.004844239447265863, -0.03955269977450371, -0.00029088789597153664, 0.013901421800255775, -3.0447608878603205e-05, -0.00927620381116867, 0.03133295476436615, -0.007111756131052971, 0.004328894894570112, 0.014171977527439594, -0.03226057440042496, 0.015718011185526848, -0.02047206647694111, -0.0056172567419707775, -0.016400843858718872, -0.012774105183780193, -0.03682137280702591, 0.0076464260928332806, -0.005942567717283964, 0.0013278176775202155, 0.01249710749834776, 0.006544876843690872, 0.01359221525490284, -0.027287498116493225, 0.004692857153713703, 0.009089390747249126, 0.06395427137613297, 0.02151563949882984, -0.005243631545454264, -0.003109782701358199, 0.0676647499203682, 0.009224669076502323, 0.003762015840038657, -0.013102637603878975, 0.0012360218679532409, 0.03743978962302208, -0.03617719188332558, 0.032621316611766815, -0.0003444354224484414, 0.016478145495057106, 0.001558917574584484, 0.018462222069501877, 0.017830925062298775, 0.04354662075638771, 0.007498264312744141, 0.008432326838374138, 0.002494590124115348, -0.029271574690937996, 0.017895342782139778, -0.005562501028180122, -0.011633905582129955, -0.017083674669265747, 0.00418395409360528, 0.02321627549827099, -0.030405333265662193, 0.02525188773870468, -0.024685008451342583, 0.010854446329176426, 0.006686596665531397, 0.017818041145801544, -0.00724703399464488, -0.03939809650182724, 0.00359774986281991, 0.011975320987403393, 0.02721019648015499, 0.005440106615424156, -0.03718211501836777, 0.01676158420741558, 0.0009630502900108695, 0.026746386662125587, 0.0039005146827548742, 0.018191665410995483, -0.023113207891583443, -0.002125796629115939, 0.0017215731786563993, -0.025187470018863678, 0.001575022004544735, -0.01712232641875744, -0.034218885004520416, -0.02285553514957428, -0.023345112800598145, 0.013051102869212627, -0.0077945878729224205, -0.012181458994746208, -0.0418202169239521, -0.0013270124327391386, 0.006738130934536457, 0.02286841906607151, -0.02205675095319748, 0.014043141156435013, -0.007285684812813997, -0.00744673004373908, -0.006641503889113665, 0.012432689778506756, 0.008586930111050606, 0.044242337346076965, -0.01969904825091362, -0.011968879029154778, 0.0056623490527272224, 0.012555084191262722, -0.02008555643260479, 0.01211059931665659, -0.02875623106956482, 0.012786989100277424, -0.012207225896418095, -0.00664794584736228, -0.017238277941942215, -0.015318619087338448, 0.03568761795759201, 0.015086714178323746, 0.0034560300409793854, 0.0021113024558871984, 0.014068908989429474, 0.012703245505690575, -0.024143896996974945, 0.03839317709207535, -0.011569486930966377, -0.015524757094681263, 0.01953156106173992, -0.017779389396309853, 0.012761221267282963, -0.00019093921582680196, -0.022327305749058723, -0.019750583916902542, 0.027081361040472984, -0.02066531963646412, 0.02026592753827572, -0.011492185294628143, 0.015640709549188614, 0.025174586102366447, 0.02027881145477295, 0.00329820578917861, 0.0011402000673115253, -0.011112119071185589, -0.0038811892736703157, 0.0024639915209263563, -0.013006010092794895, 0.003072742372751236, 0.026050671935081482, -0.0063645062036812305, -0.012735454365611076, -0.03630603104829788, 0.012535758316516876, -0.0006478042923845351, 0.01870701089501381, -0.012806314043700695, -0.021000294014811516, -0.0032047994900494814, 0.01212992426007986, 0.02346106432378292, 0.011698323301970959, 0.02955501526594162, -0.023757386952638626, 0.055451083928346634, 0.016065869480371475, 0.010403519496321678, 0.0072534759528934956, 0.007073105312883854, 0.03682137280702591, -0.0007532889139838517, 0.01614317111670971, -0.007285684812813997, -0.010680517181754112, -0.015666477382183075, -0.001536371186375618, 0.0031516544986516237, -0.005072923842817545, 0.01913216896355152, -0.02739056758582592, -0.029013903811573982, -0.030611472204327583, 0.02263651415705681, -0.007478938903659582, -0.03857354447245598, 0.020626669749617577, 0.0024736542254686356, -0.030302265658974648, 0.02976115234196186, 0.014236395247280598, 0.008490302599966526, 0.04555646702647209, 0.003233787603676319, 0.014004490338265896, -0.019982488825917244, 0.016632748767733574, 0.012258760631084442, -0.018281850963830948, 0.009289086796343327, -0.0023222716990858316, -0.034759994596242905, 0.00354943610727787, -0.006341959815472364, 0.007272801361978054, 0.01774073950946331, -0.03630603104829788, -0.04143371060490608, -0.0017408985877409577, -0.020588018000125885, 0.01753460057079792, -0.002428561681881547, -0.05359584093093872, 0.0015073830727487803, 0.007356544490903616, 0.03468269482254982, -0.04805588722229004, 0.008335699327290058, 0.017869574949145317, 0.006705922074615955, 0.0021064712200313807, -0.019402725622057915, -0.008148887194693089, -0.004316011443734169, 0.013450494967401028, 0.0057944064028561115, 0.019995372742414474, -0.000355708587449044, 0.02145121991634369, 0.005810510832816362, 0.015138248912990093, -0.03803243488073349, 0.011472860351204872, -0.05792473629117012, 0.006731689441949129, 0.0022449700627475977, 0.026875222101807594, -0.01133114006370306, 0.023396646603941917, -0.002816680585965514, -0.016400843858718872, -0.010229591280221939, -0.028266653418540955, -0.0402226485311985, -0.0012303852709010243, -0.007575566414743662, -0.010339101776480675, 0.025329189375042915, 0.03455385938286781, 0.01181427575647831, 0.004354662261903286, 0.022623630240559578, 0.023937758058309555, -0.034012746065855026, 0.015357269905507565, -0.001021026517264545, 0.01479039154946804, -0.02227577194571495, 0.013514912687242031, 0.00513090007007122, 0.038728147745132446, -0.017676321789622307, 0.008554721251130104, 0.020046906545758247, 0.005530292168259621, 0.009533875621855259, 0.04844239726662636, -0.023899108171463013, 0.02541937492787838, -0.025741465389728546, -0.017032140865921974, 0.0013874043943360448, 0.004992401227355003, -0.020046906545758247, -0.009830199182033539, -0.008090910501778126, -0.0019550886936485767, 0.019789233803749084, 0.010551681742072105, 0.025767231360077858, -0.01232962030917406, -0.013218590058386326, 0.006184135563671589, 0.03452809154987335, -0.019943837076425552, -0.029091205447912216, -0.022417491301894188, -0.04045455530285835, 0.005259736441075802, -0.028885066509246826, 0.00856760423630476, -0.0016434662975370884, 0.027931679040193558, -0.011292489245533943, -0.00024941875017248094, -0.015653593465685844, 0.027854377403855324, -0.011112119071185589, -0.004544695373624563, -0.03919196128845215, 0.02602490410208702, 0.004528590943664312, 0.00927620381116867, 0.04372699186205864, 0.007852563634514809, -0.031616393476724625, -0.035533010959625244, 0.00934706348925829, -0.027493637055158615, 0.009636945091187954, 0.002517136512324214, -0.032028667628765106, -0.027699774131178856, -0.02816358394920826, -0.011015491560101509, 0.0006578696193173528, 0.004138861782848835, 0.011646788567304611, 0.014236395247280598, 0.0610683411359787, 0.02282976731657982, -0.016452377662062645, 0.0038232130464166403, 0.011189420707523823, -0.031023746356368065, -0.0015597227029502392, 0.01035842765122652, -0.0011901240795850754, 0.039707303047180176, -0.006892734672874212, 0.018178781494498253, 0.00576541805639863, 0.01319282315671444, 0.01990518718957901, -0.011994646862149239, 0.0017537822714075446, 0.018848730251193047, -0.03566185012459755, -0.030843377113342285, -0.009301970712840557, 0.01750883460044861, 0.01753460057079792, -0.00408410606905818, 0.015524757094681263, 0.0059006959199905396, 0.008805951103568077, -0.011182978749275208, -0.029838453978300095, -0.012458456680178642, 0.011904461309313774, -0.014352348633110523, 0.0025879964232444763, 0.015383037738502026, 0.019016217440366745, -0.030199196189641953, -0.007350102998316288, 0.02973538637161255, 0.06276897341012955, -0.010951073840260506, -0.009334179572761059, -0.013952956534922123, -0.02523900382220745, 0.009630503132939339, -0.030894910916686058, 0.0029165286105126143, 0.001798874931409955, -0.02955501526594162, 0.00886392779648304, 0.013914304785430431, -0.01082867942750454, 0.021425453945994377, -0.06024378910660744, -0.03192560002207756, 0.023177625611424446, -0.0024108465295284986, -0.000869644049089402, -0.0010008958633989096, -0.023731620982289314, 0.004654206335544586, 0.01408179197460413, -0.033213961869478226, 0.014030258171260357, 0.012464898638427258, 0.01282563991844654, 0.00024358087102882564, 0.011447092518210411, 0.011743416078388691, 0.0006904812762513757, 0.03725941851735115, 0.023164741694927216, -0.02682368829846382, 0.00836790818721056, 0.026900989934802055, -0.005375688895583153, -0.005182434339076281, 0.022713815793395042, 0.04308281093835831, 0.0007134302286431193, -0.0008189148502424359, 0.032183270901441574, -0.009578968398272991, 0.02795744687318802, 0.013128404505550861, -0.0005773470620624721, -0.0017167418263852596, 0.01953156106173992, -0.011563044972717762, 0.014932110905647278, 0.0032176831737160683, 0.009198902174830437, 0.03311089426279068, -0.0028488896787166595, 0.022211354225873947, -0.04470614716410637, -0.013502029702067375, 0.029271574690937996, -0.024311384186148643, 0.011666114442050457, 0.02267516404390335, -0.046406783163547516, 0.018848730251193047, -0.02228865586221218, 0.03491459786891937, -0.021425453945994377, 0.024955563247203827, 0.0021451220382004976, 0.022971486672759056], [-0.017511039972305298, -0.022572247311472893, 0.03295326605439186, -0.00854001846164465, -0.05940454080700874, -0.000339222518960014, -0.019407453015446663, 0.042065903544425964, 0.03433247655630112, 0.004562475718557835, -0.010965949855744839, -0.027904370799660683, 0.021833384409546852, 0.03600722923874855, -0.03945525363087654, 0.042583104223012924, -0.006458889227360487, -0.006668233312666416, 0.01428467407822609, 0.008663162589073181, 0.0056276689283549786, 0.03531762585043907, 0.0069637782871723175, 0.01439550332725048, -0.07368921488523483, -0.01329952385276556, -0.00021511672821361572, -0.04191812872886658, 0.0337660126388073, 0.025416867807507515, 0.057976074516773224, -0.019308937713503838, 0.007290109526365995, -0.018028244376182556, -0.03940599784255028, -0.01579934172332287, -0.027214767411351204, 0.0049934787675738335, 0.0291358083486557, 0.009506696835160255, 0.00872473418712616, -0.028692491352558136, 0.0025213679764419794, 0.0037220194935798645, -0.025244466960430145, 0.09393404424190521, 0.026106473058462143, -0.03812530264258385, -0.058173101395368576, 0.018434617668390274, -0.004737955518066883, -0.015750084072351456, 0.0036727620754390955, -0.050784479826688766, -0.014961964450776577, 0.02805214375257492, -0.020996008068323135, 0.04558781161904335, 0.01031944528222084, -0.01821295917034149, -0.004990400280803442, -0.014149216003715992, -0.02486272156238556, 0.022338274866342545, -0.039923202246427536, 4.810302198166028e-05, 0.02089749276638031, 0.02204272896051407, -0.045489296317100525, 0.026106473058462143, -0.0412285253405571, 0.027042364701628685, -0.00585240637883544, -0.0391104519367218, -0.02787974290549755, 0.05176962912082672, 0.06974861770868301, -0.011464682407677174, 0.05610428750514984, -0.003608111524954438, 0.02659904770553112, -0.014309302903711796, -0.005110465455800295, 0.05699092149734497, 0.00836761761456728, 0.013508868403732777, -0.05674463510513306, 0.005950921215116978, 0.003648133249953389, 0.01992465741932392, 0.02078666351735592, 0.023114079609513283, -0.036795347929000854, 0.00359887583181262, 0.04644981771707535, 0.053641412407159805, 0.0366722047328949, -0.008041285909712315, -0.017227809876203537, 0.02822454459965229, -0.018409989774227142, -0.04356825351715088, -0.02534298226237297, 0.06226147338747978, 0.04898658022284508, -0.055808741599321365, -0.03381527215242386, 0.03750958293676376, 0.009161894209682941, -0.0035834829322993755, 0.02571241371333599, 0.031771086156368256, -0.018459247425198555, -0.02206735871732235, -0.036253515630960464, 0.010264030657708645, -0.04718868061900139, -0.029406724497675896, -0.04760736972093582, 0.012917778454720974, -0.012979350052773952, -0.022535303607583046, 0.016254974529147148, -0.04987321421504021, 0.00813980121165514, 0.004685619380325079, -0.06433028727769852, 0.004266930744051933, -0.030391875654459, -0.0038020629435777664, 0.043494369834661484, -0.04245996102690697, 0.0291358083486557, -0.05649834871292114, -0.006717490963637829, 0.003869791980832815, -0.02896340750157833, 0.028101401403546333, -0.044578034430742264, -0.05068596452474594, 0.0022242837585508823, 0.006809848826378584, 0.008410717360675335, -0.02551538310945034, -0.04447951912879944, 0.017227809876203537, 0.009272723458707333, -0.009900757111608982, -0.04632667452096939, -0.008971021510660648, -0.04521838203072548, 0.022030415013432503, -0.0014530961634591222, 0.02235058881342411, -0.02571241371333599, 0.017461782321333885, 0.02837231755256653, 0.027608826756477356, -0.03430784493684769, 0.04147481173276901, -0.026500532403588295, 0.005966314114630222, 0.019567539915442467, -0.07423104345798492, 0.01764649711549282, -0.05103076621890068, 0.005233609117567539, 0.012154286727309227, -0.05994637310504913, -0.04780440032482147, -0.052212946116924286, -0.03765735402703285, -0.04255847632884979, -0.007290109526365995, -0.050538189709186554, -0.039011936634778976, 0.030884450301527977, -0.018582390621304512, 0.033199552446603775, 0.0012152747949585319, 0.027066994458436966, 0.04809994623064995, -0.051818884909152985, -0.03209125995635986, -0.008379931561648846, 0.03817455843091011, -0.05152334272861481, 0.0038451633881777525, -0.012339002452790737, 0.04344511032104492, 0.049996357411146164, -0.06501989811658859, 0.024468660354614258, 0.00737630994990468, -0.015787027776241302, 0.02783048525452614, -0.03019484505057335, 0.01493733562529087, 0.008657004684209824, 0.014272359199821949, 0.03800215944647789, -0.030613534152507782, 0.03169719874858856, 0.013151751831173897, -0.0011367707047611475, -0.03837158903479576, 0.0008058218518272042, -0.018459247425198555, 0.0786149650812149, -0.0050919936038553715, 0.024985864758491516, -0.009709883481264114, -0.0673842579126358, 0.0019271995406597853, -0.046031128615140915, -0.021660983562469482, -0.010264030657708645, -0.03342121094465256, 0.004054507706314325, 0.01671060547232628, -0.016316546127200127, -0.04484894871711731, -0.00985149946063757, 0.017511039972305298, 0.007185437250882387, -0.0034603390377014875, -0.008330673910677433, 0.0009251173469237983, -0.022387532517313957, -0.03778050094842911, -0.007616440299898386, 0.0453907810151577, -0.028446204960346222, -0.010023900307714939, -0.023311110213398933, -0.012265116907656193, -0.023224908858537674, -0.026475904509425163, -0.0017748092068359256, -0.013632011599838734, 0.004451646003872156, -0.0069637782871723175, 0.008441503159701824, 0.03709089383482933, 0.02026945911347866, 0.009703726507723331, -0.017634183168411255, -0.015984058380126953, 0.03906119614839554, -0.017683440819382668, 0.04706553742289543, 0.07093079388141632, 0.010288659483194351, -0.0011814102763310075, 0.01294240728020668, 0.00013074402522761375, 0.07940308749675751, -0.02178412675857544, 0.02137775346636772, -0.04346974194049835, 0.021734870970249176, 0.02217818796634674, -0.008773991838097572, 0.031771086156368256, -0.04085909202694893, -0.01619340106844902, 0.038100674748420715, 0.006526618264615536, 0.026155730709433556, 0.007690326776355505, -0.0305889043956995, 0.009254252538084984, -0.032288290560245514, 0.00012160444020992145, -0.026180358603596687, 0.006378845777362585, 0.009691412560641766, 0.016636719927191734, 0.04196738824248314, -0.012105030007660389, -0.004211516119539738, -0.04997172951698303, -0.006301880814135075, -0.05649834871292114, -0.009014122188091278, -0.019739940762519836, 0.04637593403458595, -0.011267651803791523, -0.007634911686182022, 0.008102858439087868, 0.06782757490873337, -0.037017010152339935, 0.027387168258428574, -0.03287937864661217, 0.05137556791305542, 0.0072346949018538, 0.026697563007473946, 0.009328138083219528, 0.01838536001741886, 0.024591805413365364, 0.003928285092115402, 0.06442880630493164, -0.0545773059129715, 0.009882285259664059, -0.059798602014780045, 0.04361751303076744, 0.023791370913386345, 0.03322418034076691, 0.026722190901637077, -0.013139436952769756, -0.0038420846685767174, 0.05901047959923744, -0.03514522314071655, -0.047484226524829865, 0.014617161825299263, -0.039332110434770584, 0.001982614165171981, 0.036844607442617416, 0.006908363662660122, -0.010251716710627079, 0.06881272047758102, -0.014912706799805164, 0.017178552225232124, -0.02770734205842018, -0.011403110809624195, 0.0006199517520144582, 0.00682832021266222, 0.013459610752761364, 0.003928285092115402, 0.03834696114063263, -0.04125315323472023, -0.02191958576440811, 0.0036111902445554733, -0.04012022912502289, -0.020121688023209572, 0.005335202440619469, 0.003879027906805277, -0.010251716710627079, 0.010793549008667469, -0.06861568987369537, 0.022744648158550262, 0.0006399626145139337, -0.02046648971736431, 0.00045948007027618587, -0.0274856835603714, 0.0224614180624485, 0.003263309132307768, 0.018040558323264122, 0.02135312370955944, 0.043691400438547134, -0.020688148215413094, 0.0007296266849152744, -0.05462656170129776, -0.013040921650826931, -0.011710969731211662, 0.018582390621304512, 0.06428103148937225, -0.011126036755740643, 0.011914157308638096, 0.011415424756705761, -0.041179265826940536, 0.026500532403588295, 0.0013930635759606957, 0.00519666587933898, -0.004002171568572521, 0.06339439749717712, -0.037386439740657806, 0.027559569105505943, -0.013767470605671406, -0.015663884580135345, 0.018804049119353294, 0.0009736052015796304, -0.004525532480329275, 0.03470190614461899, -0.026475904509425163, -0.024160802364349365, -0.022966306656599045, 0.015442225150763988, -0.0055691758170723915, -0.03654906153678894, -0.009654468856751919, -0.022165874019265175, 0.01475261989980936, 0.005550703965127468, 0.03268234804272652, 0.03617963194847107, -0.0648721233010292, -0.046942394226789474, 0.03854399174451828, -0.0050858366303145885, 0.006104851141571999, 0.011821798980236053, -0.0004744882171507925, 0.011667869053781033, -0.013274895027279854, -0.013287209905683994, 0.06969935446977615, 0.10176599025726318, 0.006064829416573048, -0.025244466960430145, -0.02471494860947132, -0.014617161825299263, 0.024136172607541084, -0.027608826756477356, -0.002336652483791113, 0.005378302652388811, -0.023754427209496498, -0.019912343472242355, 0.002558311214670539, -0.0070191933773458, 0.0035804042126983404, -0.0064219459891319275, 0.04140092432498932, 0.004811841528862715, 0.005319809541106224, -0.014001443050801754, 0.014764934778213501, 0.026278873905539513, 0.023138709366321564, -0.003284859238192439, 0.01107677910476923, 0.0005549165070988238, -0.002655286807566881, -0.015947114676237106, -0.0252075232565403, -0.04546466842293739, -0.012609918601810932, 0.02150089666247368, 0.008718577213585377, -0.03278086334466934, -0.0036850764881819487, 0.00527363084256649, 0.0034726534504443407, -0.015787027776241302, 0.010091629810631275, -0.004934985190629959, 0.008219844661653042, -0.03920896723866463, 0.0032971736509352922, -0.025638526305556297, 0.010584204457700253, 0.0017116980161517859, -0.0017809662967920303, -0.021931899711489677, -0.03450487554073334, 0.010768920183181763, -0.007862728089094162, 0.0520651750266552, -0.006046357564628124, -0.006258780602365732, -0.03893804922699928, 0.005285945255309343, -0.03677072003483772, 0.04113001003861427, -0.0305889043956995, -0.028840264305472374, -0.04157332703471184, -0.0370662659406662, 0.023643597960472107, -0.021476268768310547, -0.009580583311617374, 0.03186960145831108, 0.0014238494914025068, -0.02126692421734333, 0.0014931178884580731, -0.04329733923077583, -0.007671854924410582, 0.04504597932100296, -0.012634547427296638, -0.05393695831298828, -0.03093370795249939, 0.01909959502518177, 0.05048893392086029, -0.013533497229218483, 0.005796991754323244, 0.007850413210690022, 0.004978085868060589, -0.07694020867347717, 0.007493296638131142, -0.01475261989980936, 0.042065903544425964, 0.0615718699991703, 0.004645597655326128, 0.01701846532523632, 0.0299978144466877, 0.060143403708934784, 0.06132558360695839, -0.036278147250413895, -0.03866713494062424, -0.043124936521053314, -0.03768198564648628, -0.008059757761657238, 0.0014977357350289822, -0.012505247257649899, -0.04342048242688179, -0.021106837317347527, -0.0018302238313481212, -0.004731798078864813, 0.04167184233665466, 0.015836285427212715, -0.01829916052520275, -0.051671113818883896, 0.013164065778255463, -0.06802460551261902, 0.03371675685048103, -0.011323067359626293, -0.016242658719420433, -0.01086127758026123, -0.033593613654375076, 0.003922128118574619, -0.027190137654542923, -0.005760048516094685, 0.01616877317428589, -0.03504670783877373, -0.0358101986348629, -0.03876565024256706, -0.020601946860551834, 0.014543275348842144, -0.007918142713606358, 0.007444038987159729, 0.014358560554683208, 0.01181564200669527, 0.015787027776241302, 0.0013930635759606957, 0.003626583144068718, 0.00010092014417750761, 0.013927556574344635, -0.0403665192425251, -0.00287232780829072, -0.03595797345042229, 0.010091629810631275, -0.020047800615429878, -0.027387168258428574, 0.008737048134207726, 0.03709089383482933, -0.024160802364349365, 0.024899663403630257, 0.007708798162639141, 0.009716041386127472, -0.027091622352600098, 0.02505975030362606, 0.002867709845304489, 0.018373046070337296, -0.003275623545050621, 0.027559569105505943, -0.005741576664149761, 0.04319882392883301, 0.014592532999813557, -0.014764934778213501, -0.00117987091653049, -0.010651933960616589, 0.009217308834195137, -0.00890944991260767, -0.012406731955707073, -0.026549790054559708, 0.021845700219273567, 0.05782829970121384, -0.044947464019060135, 0.006027886178344488, 0.00010852042032638565, 0.002030332339927554, 0.015663884580135345, -0.04339585453271866, -0.05152334272861481, 0.007511768024414778, 0.054922107607126236, -0.030662791803479195, 0.01693226397037506, -0.017092350870370865, 0.00325407343916595, -0.02694385126233101, 0.0181021299213171, 0.022079672664403915, -0.012055772356688976, 0.048223089426755905, 0.018422303721308708, 0.03307640925049782, -0.0358101986348629, -0.023815998807549477, -0.017067722976207733, 0.00323560182005167, 0.01582397148013115, 0.023163337260484695, 0.01978919841349125, 0.0013545810943469405, 0.039923202246427536, -0.02024483121931553, -0.022855477407574654, -0.03268234804272652, 0.013607383705675602, 0.014235416427254677, -0.0008596972329542041, -0.014986593276262283, -0.022830849513411522, 0.038470104336738586, 0.049134351313114166, 0.012222016230225563, 0.012468303553760052, 0.018582390621304512, 0.01402607187628746, 0.026377389207482338, -0.0034326317254453897, -0.0009405103046447039, 0.019973915070295334, -0.03110610879957676, -0.0029600677080452442, -0.0038913420867174864, -0.0014269280945882201, 0.02026945911347866, 0.013976814225316048, 0.031943485140800476, 0.022621504962444305, 0.017806584015488625, -0.011347695253789425, 0.008755519986152649, 0.002749183913692832, -0.03512059524655342, -0.04157332703471184, 0.012609918601810932, 0.010245558805763721, -0.014296988025307655, -0.001139849191531539, -0.0017224730690941215, -0.03928285464644432, -0.00021954219846520573, 0.0012514482950791717, -0.010264030657708645, -0.046203531324863434, 0.09506696462631226, -0.020589632913470268, 0.017658812925219536, 0.015442225150763988, 0.00429155956953764, -0.018607018515467644, 0.005892428103834391, -0.019124222919344902, 0.02124229446053505, -0.00919268000870943, 0.0021303866524249315, -0.012289745733141899, 0.030441133305430412, -0.006729805376380682, 0.009691412560641766, -0.03551465645432472, 0.008921763859689236, -0.021217666566371918, 0.0391104519367218, 0.017978986725211143, 0.019407453015446663, -0.003959071356803179, 0.05359215661883354, 0.005553782917559147, -0.011101407930254936, -0.03093370795249939, 0.0026044901460409164, 0.005812384653836489, -0.01604562997817993, 0.03287937864661217, 0.014801877550780773, -0.033913787454366684, -0.032509949058294296, -0.01770807057619095, -0.039923202246427536, 0.007905827835202217, 0.002978539327159524, 0.01827453076839447, 0.02982541359961033, -0.006735962815582752, 0.0035619325935840607, 0.013595068827271461, -0.04800143092870712, 0.017375580966472626, -0.016895320266485214, -0.006181815639138222, 0.00030689730192534626, 0.00719159422442317, -0.020367974415421486, 0.005550703965127468, -0.002265844726935029, 0.018040558323264122, -0.019690684974193573, -0.005332123953849077, 0.005033500492572784, 0.022559933364391327, -0.003931364044547081, -0.012733062729239464, 0.014925021678209305, -0.002176565583795309, -0.03452950343489647, 0.02753494121134281, -0.01238826010376215, 0.01884099282324314, 0.02716550976037979, -0.02432088926434517, -0.0037004693876951933, 0.007838099263608456, -0.024111544713377953, 0.005950921215116978, -0.02340962551534176, -0.007333209738135338, 0.019604483619332314, 0.015614625997841358, 0.010498004034161568, -0.04529226943850517, -0.03876565024256706, -0.0024136172141879797, 0.03310103714466095, 0.018373046070337296, 0.01127380970865488, -0.004393152892589569, 0.013176380656659603, -0.023311110213398933, 1.3913799193687737e-05, 0.023569712415337563, -0.024616433307528496, 0.02326185256242752, 0.004386995919048786, -0.015639254823327065, 0.018483875319361687, -0.031056851148605347, 0.008884821087121964, 0.030096329748630524, 0.031155366450548172, -0.043494369834661484, 0.00682832021266222, 0.013989129103720188, -0.01579934172332287, 0.01861933432519436, 0.023852942511439323, -0.002558311214670539, -0.02087286487221718, -0.03371675685048103, 0.00759796891361475, 0.015503796748816967, -0.01591017097234726, 0.022030415013432503, -0.00014575215755030513, -0.003635818837210536, -0.007345524150878191, -0.025958700105547905, 0.035539284348487854, -0.05974934250116348, 0.020429546013474464, 0.0017147766193374991, 0.007838099263608456, 0.021488582715392113, -0.0181021299213171, 0.009161894209682941, -0.036105744540691376, 0.012449831701815128, -0.017683440819382668, 0.008632375858724117, -0.0014292370760813355, -0.04073594883084297, -0.011526254005730152, 0.00032344472128897905, -0.023274166509509087, 0.012326688505709171, 0.008958707563579082, 0.021734870970249176, 0.024333203211426735, 0.012831578031182289, -0.0012737680226564407, 0.016328860074281693, 0.002011860953643918, -0.0035619325935840607, -0.04775514081120491, -0.025195209309458733, 0.017314009368419647, 0.043124936521053314, -0.001999546540901065, 0.01057804748415947, 0.03795289993286133, 0.02696847915649414, 0.0002580246073193848, 0.014925021678209305, -0.008854035288095474, -0.013705898076295853, -0.008958707563579082, -0.055808741599321365, 0.03509596735239029, 5.79641418880783e-05, -0.020577318966388702, -0.0013307220069691539, -0.03492356464266777, 0.000700380012858659, -0.013545811176300049, -0.023557398468255997, 0.010307131335139275, 0.010030057281255722, 0.00836761761456728, -0.02343425340950489, 0.021710241213440895, -0.04438100382685661, -0.012037300504744053, -0.015577683225274086, -0.013102494180202484, -0.028717121109366417, -0.006600504275411367, 0.02731328085064888, 0.021648669615387917, 0.008946392685174942, 0.0006568948738276958, 0.024185430258512497, 0.04610501602292061, 0.030810564756393433, -0.02514595165848732, 0.04874029383063316, 0.03090907819569111, -0.04324808344244957, -0.008546175435185432, 0.03780512884259224, -0.012536033056676388, 0.0022535305470228195, 0.029529869556427002, -0.008219844661653042, -0.039553768932819366, 0.02874174900352955, -0.019124222919344902, -0.052360717207193375, 0.008028971962630749, -0.0023705170024186373, 0.00871241930872202, -0.004076057579368353, -0.02300325036048889, -0.011975728906691074, -0.003475732170045376, 0.01873016357421875, -0.03113073669373989, 0.01712929457426071, 0.007296266499906778, 0.024074601009488106, 0.014863449148833752, -0.0002591790980659425, -0.024444032460451126, -0.019579853862524033, -0.023286480456590652, 0.003746648319065571, -0.016094887629151344, 0.014777248725295067, 0.050242647528648376, -0.024025343358516693, -0.01536833867430687, 0.0016008686507120728, -0.03728792443871498, 0.03201737254858017, -0.023471197113394737, -0.02642664685845375, -0.01257297582924366, 0.01512205135077238, -0.025244466960430145, -0.016612090170383453, -0.013570440001785755, -0.00849691778421402, 0.050784479826688766, -0.027091622352600098, -0.016870692372322083, 0.02343425340950489, 0.005950921215116978, -0.00368815497495234, -0.028470832854509354, 0.0049134353175759315, -0.012462146580219269, -0.024924293160438538, -0.0009066457860171795, -0.0233234241604805, 0.008927920833230019, 0.012111186981201172, 0.032460689544677734, -0.01312712300568819, 0.020971378311514854, 0.001591632841154933, -0.008318359963595867, 0.0064958324655890465, 0.011883370578289032, 0.02824917435646057, -0.011532410979270935, 0.028273802250623703, 0.036992378532886505, -0.0049596140161156654, 0.014715677127242088, 0.023791370913386345, 0.008016657084226608, -0.027017736807465553, -0.0027845879085361958, -0.023508140817284584, -0.008490760810673237, 0.04484894871711731, -0.015885543078184128, 0.019505968317389488, -0.02155015431344509, 0.007240851875394583, 0.027387168258428574, -0.05896122381091118, 0.011957257054746151, 0.019062651321291924, -0.005476817954331636, -0.0010798167204484344, -0.006742119789123535, 0.007985871285200119, -0.03113073669373989, 0.009494381956756115, -0.04012022912502289, -0.032657720148563385, -0.035908713936805725, 0.006067907903343439, 0.0008573883096687496, -0.017153922468423843, -0.027091622352600098, 0.005873956251889467, 0.015343709848821163, 0.0041068438440561295, 0.012893149629235268, -0.017437154427170753, -0.010448746383190155, -0.016612090170383453, 0.005692319478839636, -0.020823607221245766, -0.01198804285377264, -0.01571314036846161, 0.04832160472869873, -0.013779784552752972, -0.04662222042679787, -0.041154637932777405, -0.01366895530372858, 0.0011406189296394587, 0.012622233480215073, -0.01166171208024025, -0.03837158903479576, -0.047484226524829865, 0.017745012417435646, 0.07245777547359467, 0.028101401403546333, 0.023298796266317368, -0.003971385769546032, 0.00664976192638278, 0.019124222919344902, -0.005855484865605831, -0.022683076560497284, -0.031377024948596954, 0.013989129103720188, 0.01458021905273199, -0.022990936413407326, 0.002650669077411294, 0.013040921650826931, -0.003755884012207389, 0.008250630460679531, -0.009722198359668255, 0.032312918454408646, 0.019801514223217964, 0.007794998586177826, -0.0020765112712979317, 0.022559933364391327, -0.02486272156238556, 0.01567619852721691, 0.013976814225316048, 0.0031278510577976704, -0.03263309225440025, -0.007505611050873995, -0.013176380656659603, 0.011249180883169174, 0.013410353101789951, 0.02965301275253296, -0.0266236774623394, 0.014075329527258873, 0.018964136019349098, -0.016267288476228714, -0.04942989721894264, -0.0057077123783528805, -0.008472288958728313, -0.014543275348842144, 0.010276345536112785, 0.028643233701586723, 0.01093516405671835, 0.005236687604337931, 0.022018101066350937, -0.03167257085442543, 0.005030422005802393, 0.0071115512400865555, 0.020762033760547638, -0.004827234428375959, 0.02209198661148548, 0.026845335960388184, 0.028446204960346222, 0.017178552225232124, 0.05428176000714302, 0.0008165969047695398, -0.006446574814617634, 0.007290109526365995, -0.014149216003715992, -0.014333931729197502, 0.01475261989980936, 0.022990936413407326, 0.04213978722691536, -0.032312918454408646, -0.010836648754775524, -0.007345524150878191, -0.017350953072309494, -0.012609918601810932, 0.016353487968444824, 0.022929364815354347, -0.032657720148563385, -0.036302775144577026, -0.0387163907289505, 0.015466853976249695, 0.0036512119695544243, 0.016747549176216125, 0.010270187631249428, 0.020688148215413094, -0.007524082437157631, 0.03512059524655342, 0.003919049631804228, -0.0030832113698124886, 0.005812384653836489, 0.004750269930809736, -0.03110610879957676, 0.012129658833146095, -0.0461789034307003, 0.010430274531245232, -0.016488946974277496, 0.04760736972093582, -0.0007527160923928022, -0.010701190680265427, -0.025589268654584885, -0.019826142117381096, -0.025835556909441948, -0.007659540511667728, 0.003120154608041048, 0.02948061190545559, 0.0005152795929461718, 0.01653820462524891, -0.0013668955070897937, 0.01391524262726307, -0.013102494180202484, 0.0018764027627184987, 0.004571711178869009, -0.023249538615345955, -0.031007593497633934, -0.008232158608734608, 0.024444032460451126, -0.009919228032231331, 0.04310030862689018, -0.004020642954856157, 0.021587098017334938, 0.007450196426361799, 0.028126031160354614, 0.029579127207398415, 0.014691048301756382, 0.049996357411146164, 0.028667863458395004, 0.012609918601810932, 0.0058801136910915375, -0.021513210609555244, -0.0009112636907957494, -0.017437154427170753, -0.02449329011142254, 0.012302059680223465, 0.006049436051398516, -0.0170800369232893, -0.021193036809563637, 0.005750812590122223, -0.033568982034921646, 0.03758347034454346, -0.02466569095849991, 0.018225273117423058, -0.011366167105734348, -0.060143403708934784, -0.021143781021237373, -0.00189795286860317, 0.022855477407574654, -0.008601590059697628, 0.014136901125311852, 0.05467582121491432, 0.01916116662323475, 0.003968306817114353, 0.007948928512632847, -0.005162801127880812, -0.03470190614461899, -0.015257509425282478, -0.050932250916957855, -0.02486272156238556, 0.0345541350543499, -0.008657004684209824, 0.01240057498216629, 0.020688148215413094, -0.024296259507536888, 0.007086922414600849, 0.04723794013261795, 0.006840634625405073, 0.030859820544719696, 0.04319882392883301, -0.011347695253789425, -0.015417596325278282, 0.016328860074281693, -0.0035526969004422426, 0.005889349617063999, 0.03940599784255028, 0.03433247655630112, 0.021587098017334938, -0.02408691495656967, 0.032263658940792084, -0.01409995835274458, 0.008737048134207726, -0.01593480072915554, -0.0038913420867174864, -0.009574425406754017, 0.010522632859647274, 0.009069536812603474, -0.03132776916027069, -0.025195209309458733, -0.02007243037223816, 0.0276827123016119, 0.03640129044651985, 0.0144693898037076, 0.03778050094842911, 0.005877035204321146, 0.007905827835202217, 0.025909442454576492, 0.02822454459965229, 0.012166601605713367, -0.0017640340374782681, -0.007788841612637043, -0.062162961810827255, 0.033913787454366684, 0.022079672664403915, 0.006668233312666416, -1.9193106709280983e-05, 0.008515389636158943, 0.01712929457426071, -0.01499890722334385, -0.00900796428322792, -0.006261859089136124, 0.011095250956714153, -0.019887713715434074, -0.004500903654843569, -0.010522632859647274, 0.015097422525286674, -0.002753801876679063, 0.0077518983744084835, 0.010122415609657764, -0.011224552057683468, 0.008564647287130356, 0.009555954486131668, 0.03260846063494682, 0.011501625180244446, -0.018914878368377686, 0.018323788419365883, 0.06763054430484772, 0.0045501613058149815, -1.8134840502170846e-05, 0.03159868344664574, 0.05566097050905228, 0.04085909202694893, 0.01630423031747341, 0.048223089426755905, 0.010251716710627079, -0.03275623545050621, -0.02753494121134281, 0.018373046070337296, -0.02837231755256653, 0.002415156690403819, -0.021931899711489677, 0.00865084771066904, 0.046400561928749084, 0.021796442568302155, -0.019198108464479446, -0.02711625210940838, 0.0024798070080578327, -0.025219837203621864, 0.017043093219399452, 0.00919268000870943, 0.0007196212536655366, -0.018348418176174164, 0.0042638517916202545, 0.024333203211426735, 0.00719159422442317, 0.014333931729197502, 0.02315102331340313, -0.00829373113811016, -0.028273802250623703, 0.013003978878259659, 0.0005703094648197293, -0.012770005501806736, 0.01365664042532444, -0.0017886628629639745, 0.024456346407532692, 0.006126401014626026, -0.04654833301901817, -0.019001079723238945, 0.013188694603741169, -0.010812020860612392, -0.03366749733686447, -0.017092350870370865, -0.02837231755256653, -0.008238316513597965, -0.006877577863633633, -0.03760809823870659, -0.003537304000928998, 0.002621422288939357, -0.024579491466283798, -0.022769277915358543, -0.0031494011636823416, 0.023274166509509087, -0.008915606886148453, -0.01036254595965147, -0.025441497564315796, 0.022843163460493088, -0.0015854756347835064, -0.02312639355659485, 0.010479532182216644, 0.004888806492090225, -0.01475261989980936, -0.003001628676429391, -0.03154942765831947, 0.0007411713595502079, 0.03078593499958515, 0.004156101029366255, -0.016636719927191734, -0.00429155956953764, -0.02007243037223816, 0.007277795113623142, 0.0004290789656806737, 0.02150089666247368, -0.05117853730916977, -0.01039333175867796, -0.01438318844884634, 0.0021026793401688337, 0.016661347821354866, 0.01166171208024025, 0.02072509191930294, 0.014272359199821949, -0.0027645770460367203, -0.002345888176932931, -0.034972820430994034, 0.0156269408762455, 0.01571314036846161, -0.016144145280122757, 0.031771086156368256, -0.011366167105734348, -0.006335745565593243, -0.037361811846494675, 0.042583104223012924, 0.029973186552524567, -0.01067656185477972, -0.00683447765186429, -0.036253515630960464, 0.030120959505438805, 0.005236687604337931, -0.01738789677619934, -0.033741384744644165, 0.044922836124897, 0.000691529072355479, 0.025392239913344383, 0.007302423939108849, 0.01716623827815056, -0.011710969731211662, 0.017769642174243927, -0.0022981700021773577, -0.031204624101519585, -0.012794634327292442, -0.012523718178272247, -0.035563912242650986, 0.0020287930965423584, 0.03943062573671341, 0.019198108464479446, 0.013927556574344635, 0.020601946860551834, -0.0002847698924597353, -0.011791013181209564, 0.002233519684523344, -0.005252080503851175, -0.012819263152778149, 0.020170943811535835, -0.027904370799660683, 0.04270624741911888, 0.052409976720809937, 0.008706262335181236, 0.008786305785179138, 0.008053600788116455, -0.0009712962782941759, 0.014444760978221893, -0.004374681506305933, 0.004119158256798983, 0.0010467218235135078, 0.033002521842718124, 0.034652650356292725, -0.010498004034161568, -0.012228173203766346, 0.044430263340473175, -0.0026829943526536226, -0.011156822554767132, -0.019690684974193573, 0.025737041607499123, -0.0144693898037076, -0.021734870970249176, 0.016131829470396042, -0.0010982882231473923, 0.02605721540749073, 0.04526763781905174, -0.020601946860551834, 0.039529141038656235, 0.0013353399699553847, -0.00883556343615055, -0.004174572881311178, -0.04012022912502289, 0.011698655784130096, -0.0063234311528503895, -0.0260325875133276, 0.018951822072267532, -0.013521182350814342, -0.020429546013474464, 0.004922671243548393, 0.04445489123463631, 0.0043038735166192055, 0.023286480456590652, -0.008435346186161041, -0.03401230275630951, -0.02215355820953846, -0.04753348231315613, -0.00982071366161108, 0.02945598214864731, -0.033741384744644165, 0.014161529950797558, 0.00945128221064806, 0.0503411628305912, -0.021057579666376114, 0.00010553803440416232, -0.022756963968276978, -0.02856934815645218, -0.009469754062592983, -0.022843163460493088, -0.0006645913817919791, -0.009654468856751919, -0.018890250474214554, 0.0057077123783528805, 0.03741106763482094, 0.009075693786144257, 0.029603755101561546, -0.01337341032922268, 0.06127632409334183, 0.017116980627179146, 0.020195573568344116, -0.00017923186533153057, 0.02400071546435356, 0.016661347821354866, -0.013939871452748775, -0.034825049340724945, -0.0007546402630396187, -0.002984696300700307, -0.024074601009488106, 0.038445476442575455, -0.028470832854509354, -0.028101401403546333, -0.0040668221190571785, -0.02568778395652771, -0.009999271482229233, 0.030662791803479195, -0.0010782773606479168, -0.0031617155764251947, 0.05403547361493111, -0.02126692421734333, 0.0034818891435861588, -0.016550518572330475, 0.011144508607685566, 0.03982468694448471, 0.027017736807465553, -0.020922120660543442, 0.023668227717280388, 0.014961964450776577, -0.0009428192861378193, 0.018865620717406273, -0.0012653019512072206, 0.0337660126388073, 0.013829042203724384, 0.014346245676279068, 0.029751528054475784, 0.01610720157623291, 0.024111544713377953, -0.0561535470187664, 0.003037032438442111, -0.012443674728274345, 0.01799130067229271, -0.01501122210174799, -0.017055407166481018, -0.009974642656743526, -0.0030970650259405375, -0.004045271780341864, 0.014420132152736187, 0.024308573454618454, -0.019998542964458466, 0.008392245508730412, 0.0055938041768968105, -0.004858020693063736, 0.022215131670236588, -0.0003528837696649134, -0.02879100665450096, -0.028298432007431984, 0.005698476452380419, 0.006489675026386976, 0.017978986725211143, 0.00810901541262865, 0.024554861709475517, 0.0031447832006961107, -0.010073157958686352, -0.028126031160354614, 0.009365081787109375, -0.052163686603307724, 0.036819979548454285, -0.03509596735239029, 0.012646862305700779, 0.003906735219061375, -0.004251537844538689, 0.026451274752616882, 0.006852949038147926, -0.01094747893512249, 0.00036346644628793, 0.03199274465441704, 0.0057662054896354675, -0.0062834094278514385, 0.018459247425198555, -0.048592519015073776, -0.006896049249917269, -0.014949650503695011, 0.010836648754775524, 0.032312918454408646, 0.009469754062592983, 0.009716041386127472, -0.019739940762519836, 0.05043967440724373, 0.006024807691574097, -0.0020272538531571627, -0.0024305495899170637, 9.13476396817714e-05, 0.009679097682237625, 0.0053567527793347836, 0.003204815788194537, -0.005787755828350782, -0.011938785202801228, -0.007807312998920679, -0.0055353110656142235, -0.009149580262601376, -0.0037097050808370113, 0.012991664931178093, -0.04861714690923691, -0.017203180119395256, 0.013447296805679798, 0.01180332712829113, 0.03433247655630112, -0.02824917435646057, 0.04504597932100296, 0.026648305356502533, -0.017942043021321297, 0.019826142117381096, 0.005837013479322195, 0.019001079723238945, -0.017400210723280907, -0.012240488082170486, -0.0058462489396333694, 0.0016147223068401217, -0.01073197741061449, 0.04598187282681465, 0.0005218216101638973, 0.02235058881342411, -0.002155015477910638, 0.00943896733224392, 0.01158782560378313, 0.004944221116602421, -0.02235058881342411, 0.009555954486131668, -0.012782320380210876, -0.009691412560641766, 0.024764206260442734, -0.017350953072309494, 0.011944943107664585, -0.008275259286165237, -0.07058598846197128, 0.009789926931262016, -0.0030785934068262577, 0.007333209738135338, -0.018409989774227142, -0.019678369164466858, -0.01538065355271101, 0.014814192429184914, -0.005621511954814196, -0.01630423031747341, -0.0003284474369138479, -0.009260409511625767, 0.014851135201752186, -0.004346974194049835, 0.007671854924410582, 0.022793905809521675, -0.01701846532523632, 0.01616877317428589, -0.03332269564270973, 0.002975460607558489, -0.01243136078119278, 0.023421939462423325, -0.00846613198518753, 0.007979714311659336, -0.03270697593688965, 0.012917778454720974, 0.015220566652715206, 0.012468303553760052, -0.024788834154605865, 0.016378117725253105, 0.0008027432486414909, 0.017030779272317886, -0.006969935726374388, 0.027042364701628685, -0.017264751717448235, 0.018176015466451645, -0.022030415013432503, -0.021045265719294548, 0.00038559382664971054, -0.015528425574302673, -0.0012645323295146227, 0.028864892199635506, 0.009315824136137962, -0.031746454536914825, 0.03132776916027069, -0.005329045467078686, 0.03874102234840393, -0.017006151378154755, 0.01384135615080595, 0.05772978439927101, -0.0243455171585083, -0.00872473418712616, 0.012289745733141899, -0.006600504275411367, 0.0064219459891319275, 0.002101140096783638, 0.030170217156410217, -0.020823607221245766, 0.018126757815480232, -0.01493733562529087, 0.012197387404739857], [0.04631459712982178, 0.005541130900382996, 0.04029102250933647, -0.004085433669388294, -0.023871202021837234, 0.0016439339378848672, -0.04805473983287811, -0.014411959797143936, 0.02619139477610588, 0.03011787310242653, -0.011902136728167534, -0.011193809099495411, 0.020368605852127075, 0.01927543804049492, -0.0165982935577631, 0.0016369621735066175, 0.008845730684697628, 0.014902769587934017, -0.003363162511959672, 0.0003785649314522743, 0.017992639914155006, 0.019721629098057747, 0.015683602541685104, -0.019487379118800163, -0.018695389851927757, -0.0329958014190197, 0.01291722059249878, -0.025031298398971558, 0.05831712484359741, -0.028154633939266205, 0.0671963170170784, -0.008315878920257092, -0.04894712194800377, 0.0032767129596322775, 0.009481552988290787, 0.008477623574435711, 0.003081504488363862, -0.026503728702664375, 0.031612612307071686, -0.0036754959728568792, -0.030430207028985023, -0.008739760145545006, -0.011433636769652367, -0.05657698214054108, -0.04854555055499077, 0.02621370367705822, -0.011634422466158867, -0.04464137926697731, -0.020312832668423653, 0.03803775832056999, 0.05738012492656708, 0.03544985130429268, 0.008343766443431377, 0.010156416334211826, -0.005228797439485788, 0.00529014877974987, -0.005471413489431143, 0.04301278293132782, -0.008410695008933544, -0.027909228578209877, -0.012972994707524776, -0.020346296951174736, -0.02126098796725273, 0.024674346670508385, -0.007769295480102301, 0.005923181772232056, 0.013039923273026943, 0.029158562421798706, -0.020145511254668236, -0.004001772962510586, 0.031813398003578186, 0.021417153999209404, 0.008728605695068836, -0.031612612307071686, -0.014400805346667767, -0.004629228729754686, 0.040201783180236816, -0.022766880691051483, -0.012114077806472778, 0.052293550223112106, -0.030787158757448196, 0.016720997169613838, -0.022599559277296066, 0.02766382321715355, -0.03868473321199417, 0.058629460632801056, -0.057826314121484756, -0.02806539461016655, -0.02098211832344532, -0.0494825504720211, -0.08464238047599792, -0.016866009682416916, 0.0041802492924034595, 0.02138368971645832, 0.010139684192836285, 0.023826584219932556, 0.01482468657195568, 0.012549113482236862, -0.008974011056125164, 0.054792217910289764, 0.013028768822550774, -0.007769295480102301, -0.025901369750499725, 0.010072755627334118, 0.023871202021837234, -0.03112180158495903, -0.02331346459686756, 0.05563998222351074, -0.018171116709709167, 0.015616674907505512, 0.04542221501469612, -0.007590819615870714, 0.006218783091753721, 0.06603622436523438, -0.050464168190956116, -0.003602989949285984, -0.002363416366279125, 0.011489410884678364, 0.003251614747568965, 0.005588538479059935, -0.026949917897582054, -0.011400172486901283, 0.031456444412469864, -0.046359214931726456, 0.014266948215663433, -0.015226257964968681, 0.02098211832344532, -0.003575103124603629, 0.010619338601827621, -0.010663958266377449, 0.023068059235811234, -0.06648241728544235, 0.053765978664159775, -0.06728556007146835, -0.03669918701052666, 0.030452515929937363, 0.0024847243912518024, -0.01933121308684349, -0.006430723704397678, -0.0058674076572060585, 0.06420684605836868, -0.014032697305083275, 0.06483151018619537, 0.029805539175868034, -0.060503460466861725, 0.023402702063322067, 0.023023441433906555, 0.009046516381204128, -0.048188596963882446, -0.00935327261686325, 0.000337780307745561, 0.0006448850035667419, 0.006949420087039471, 0.008734183385968208, 0.0327950157225132, -0.006341485306620598, 0.024250464513897896, 0.07036427408456802, -0.006542271468788385, -0.01987779513001442, 0.0056471009738743305, 0.006782098673284054, -0.0223318450152874, -0.036766115576028824, -0.014311566948890686, 0.008828998543322086, -0.017992639914155006, -0.02889084815979004, -0.019465070217847824, -0.051490407437086105, -0.04091568663716316, -0.02106020227074623, 0.00894054677337408, -0.04756392911076546, -0.018818093463778496, -0.0227334164083004, 0.0478762611746788, -0.009180373512208462, -0.03993406891822815, 0.023023441433906555, -0.003926478326320648, -0.008142980746924877, -0.08959509432315826, -0.03370970860123634, -0.023469630628824234, 0.030207110568881035, -0.01414424553513527, 0.008695141412317753, -0.05367674306035042, -0.02245454676449299, 0.032214969396591187, -0.016955247148871422, -0.032237280160188675, 0.03310735151171684, -0.039599426090717316, -0.008248950354754925, -0.02037976123392582, -0.001851691398769617, 0.034602090716362, -0.027396108955144882, 0.031255658715963364, -0.030474824830889702, 0.018483450636267662, 0.03281732648611069, -0.027953848242759705, 0.006927110720425844, 0.030407896265387535, 0.04294585436582565, 0.04419519007205963, -0.025499798357486725, 0.021472927182912827, -0.0012827982427552342, 0.003845606232061982, 0.006274556741118431, -0.004743564873933792, 0.021339070051908493, 0.03009556233882904, -0.012459875084459782, 0.0009955629939213395, -0.024718964472413063, -0.037814661860466, -0.028935467824339867, -0.014969698153436184, 0.004004561807960272, -0.03810468688607216, -0.050642646849155426, -0.03765849396586418, 0.0020482942927628756, 0.03752463683485985, -0.021740641444921494, -0.018037259578704834, -0.006765366531908512, -0.014690829440951347, -0.05836174637079239, 0.02518746629357338, -0.007914307527244091, 0.03562832623720169, -0.03948787599802017, -0.012181006371974945, -0.011935601010918617, 0.016687532886862755, 0.04361514002084732, -0.019911259412765503, 0.010507791303098202, 0.026749132201075554, -0.0007989602163434029, -0.007111164275556803, -0.012381792068481445, 0.04662692919373512, -0.0035053857136517763, 0.0021556587889790535, -0.05144578963518143, 0.060101889073848724, -0.023848893120884895, 0.008728605695068836, -0.026927608996629715, -0.003734058467671275, -0.04006792604923248, 0.07580780237913132, -0.009375582449138165, -0.07076584547758102, 0.0323934443295002, -0.0023132199421525, -0.04357052221894264, -0.05488145723938942, -0.03350892290472984, 0.00895170122385025, -0.004263909999281168, -0.02944858744740486, -0.0016062865033745766, -0.04876864328980446, 0.031434133648872375, -0.016787925735116005, -0.053944457322359085, -0.0581386499106884, 0.017033331096172333, 0.010178725235164165, -0.02764151431620121, -0.009409046731889248, 0.0233357734978199, -0.012616042047739029, 0.011489410884678364, 0.015728222206234932, -0.06572388857603073, -0.013285328634083271, 0.004955505486577749, 0.013988078571856022, 0.016118640080094337, -0.013965768739581108, 0.0013016219018027186, 0.0605480782687664, -0.013876531273126602, 0.0067988308146595955, -0.03130027651786804, 0.03835009038448334, -0.03806006908416748, -0.059075649827718735, 0.04053642600774765, -0.042455047369003296, -0.02474127523601055, -0.018193425610661507, 0.029359348118305206, 0.03317428007721901, -0.03727923333644867, -0.01762453280389309, 0.0292701106518507, -0.02398275025188923, 0.04140649735927582, -0.01697755604982376, 0.008700719103217125, 0.025276703760027885, 0.012437566183507442, 0.010708576999604702, -0.06246669963002205, -0.03457977995276451, 0.02126098796725273, -0.030630992725491524, -0.02220914326608181, 0.013274173252284527, -0.024027369916439056, 0.08482085168361664, -0.016720997169613838, 0.06924879550933838, -0.04278969019651413, 0.023469630628824234, -0.014356185682117939, 0.029225490987300873, 0.07629860937595367, -0.041272640228271484, -0.05349826440215111, -0.05876331776380539, 0.033263515681028366, 0.04243273660540581, 0.010424130596220493, -0.051936596632003784, -0.026369871571660042, 0.02558903768658638, 0.010178725235164165, -0.0444629043340683, 0.00926403421908617, 0.0023675994016230106, -0.0025753569789230824, 0.009654451161623001, 0.018985414877533913, -0.04321356862783432, -0.0028974509332329035, -0.0024345279671251774, 0.01127746980637312, 0.000475471984827891, 0.049661025404930115, 0.002663200721144676, 0.015371269546449184, -0.025031298398971558, -0.03768080472946167, -0.011299779638648033, -0.04890250042080879, 0.038193926215171814, -0.027150705456733704, 0.017892247065901756, -0.0072394441813230515, 0.028310799971222878, -0.030050944536924362, 0.03765849396586418, 0.07000732421875, 0.060726556926965714, 0.010976291261613369, -0.01737912744283676, 0.003722903784364462, 0.019944725558161736, 0.004224868491292, 0.07437998801469803, -0.016709841787815094, 0.027976157143712044, -0.025923680514097214, -0.011400172486901283, 0.0074625397101044655, -0.017245270311832428, -0.002995055168867111, 0.005002913530915976, -0.009955629706382751, 0.016787925735116005, -0.021249832585453987, 0.017669152468442917, 0.024495869874954224, 0.021640248596668243, 0.02828849107027054, -0.03752463683485985, -0.05568460002541542, 0.015081246383488178, 0.026369871571660042, -0.004802127368748188, 0.020123200491070747, 0.005094940308481455, 0.0019423238700255752, -0.03375432640314102, 0.04399440437555313, 0.01727873459458351, 0.06273441016674042, 0.011745970696210861, -0.05755859985947609, 0.017992639914155006, -0.025856751948595047, -0.00011764794180635363, 0.005318035371601582, 0.06915955990552902, 0.009286344051361084, 0.034289754927158356, -0.036208376288414, 0.015382424928247929, -0.028578514233231544, 0.01772492565214634, -0.021774105727672577, 0.02295651100575924, 0.02158447541296482, 0.021227523684501648, -0.008856885135173798, 0.027195323258638382, 0.006787676364183426, 0.0006905498448759317, -0.03498135134577751, 0.023179607465863228, -0.054390646517276764, -0.06202050670981407, -0.02474127523601055, -0.029582444578409195, -0.020848261192440987, -0.013675745576620102, -0.06367141753435135, 0.029515516012907028, -0.07879728078842163, -0.004916463978588581, 0.03953249752521515, 0.0076187062077224255, -0.002659017685800791, -0.03029634989798069, -0.017780698835849762, -0.025901369750499725, -0.030564064159989357, -0.033888183534145355, 0.005900871939957142, 0.022688796743750572, -0.037591565400362015, 0.05363212153315544, 0.042878925800323486, 0.004077067598700523, -0.02130560576915741, -0.02263302356004715, 0.006023574620485306, 0.020212439820170403, -0.031211040914058685, -0.00011616644769674167, 0.005652678664773703, 0.024272775277495384, -0.015270876698195934, -0.03250499442219734, 0.0016244130674749613, 0.0298724677413702, -0.07098893821239471, 0.005209276452660561, -0.004141207318753004, 0.013764983043074608, 0.03647609055042267, 0.044752929359674454, -0.003881859127432108, -0.012147542089223862, 0.010524523444473743, 0.019810866564512253, -0.017289889976382256, -0.0008212697575800121, -0.07375532388687134, 0.012560268864035606, -0.02623601444065571, -0.019342366605997086, -0.02251032181084156, 0.0329958014190197, -0.03518213704228401, 0.053542885929346085, 0.019096963107585907, 0.006012419704347849, -0.007931039668619633, 0.0034077814780175686, 0.031211040914058685, -0.04934869334101677, -0.02764151431620121, 0.039420947432518005, 0.01350842323154211, 0.028712371364235878, 0.002702242461964488, -0.03424513712525368, -0.041071854531764984, -0.08450852334499359, -0.014757758006453514, 0.006731902249157429, -0.00886246282607317, 0.024295084178447723, 0.001075737876817584, -0.04073721170425415, -0.004793761298060417, 0.028556205332279205, -0.004980603698641062, 0.051088836044073105, 0.002299276413396001, -0.016732150688767433, -0.012716434895992279, 0.0037480019964277744, -0.03375432640314102, 0.05461374297738075, 0.015203948132693768, -0.03665456548333168, -0.02764151431620121, -0.02023474872112274, -0.05796017125248909, 0.015516282059252262, -0.0011559127597138286, -0.02311267890036106, -0.040045615285634995, 0.04214271157979965, 0.012415256351232529, -0.018193425610661507, -0.012861447408795357, 0.042098093777894974, -0.01850575953722, 0.024696655571460724, 0.005895294714719057, -0.01985548622906208, -0.012738744728267193, 0.007802760228514671, -0.00789757538586855, -0.01742374710738659, -0.02643680013716221, -0.03261654078960419, 0.010106219910085201, -0.06260055303573608, -0.007139051333069801, -0.005114460829645395, -0.004305740352720022, -0.002438711002469063, 0.04510987922549248, -0.011361130513250828, -0.023848893120884895, 0.03433437645435333, 0.015371269546449184, -0.004637594800442457, -0.007384456228464842, 0.0026408913545310497, -0.023068059235811234, 0.02726225182414055, -0.020747868344187737, -0.006782098673284054, -0.008578016422688961, 0.03049713559448719, -0.011411326937377453, 0.0048885769210755825, -0.030675610527396202, -0.009470397606492043, 0.05358750373125076, 0.026280632242560387, -0.03254961222410202, -0.00018074209219776094, -0.01030142791569233, -0.011182654649019241, -0.012415256351232529, 0.006988462060689926, 0.0023243746254593134, 0.0014584858436137438, 0.03652070835232735, -0.005939913913607597, 0.0034579779021441936, 0.0071278964169323444, -0.0027859031688421965, -0.005655467044562101, -0.03884090110659599, 0.04544452205300331, -0.05630926787853241, 0.029984015971422195, -0.008572438731789589, -0.0014445424312725663, -0.04591302201151848, -0.01625249721109867, 0.03803775832056999, 0.00014457624638453126, 0.038015447556972504, 0.009141332469880581, -0.00817644502967596, -0.017066795378923416, 0.0013295088429003954, 0.0015797939850017428, -0.030363278463482857, -0.005223219748586416, -0.04671616852283478, -0.008433004841208458, -0.013363411650061607, 0.0018628461984917521, -0.005521609913557768, -0.004640383180230856, 0.05755859985947609, 0.006676128599792719, 0.004498159978538752, -0.045779164880514145, 0.03772542253136635, -0.014177709817886353, -0.027976157143712044, -0.019822021946310997, 0.05256126448512077, -0.055773839354515076, -0.04263352230191231, 0.022867273539304733, -0.0057084523141384125, -0.029515516012907028, 0.012861447408795357, -0.023893512785434723, -0.008226641453802586, -0.014389649964869022, -0.018695389851927757, -0.026882989332079887, 0.014523507095873356, -0.006268979515880346, -0.0068601821549236774, -0.02599060907959938, -0.01165673229843378, -0.021272141486406326, -0.012415256351232529, -0.007328682579100132, -0.034691326320171356, -0.01669868640601635, -0.011857517994940281, -0.011600958183407784, -0.05920950695872307, 0.03362046927213669, -0.036788422614336014, -0.031054873019456863, 0.0011824053945019841, -0.011433636769652367, -0.024875132367014885, -0.0296716820448637, 0.038216233253479004, -0.0036197220906615257, -0.0030564062763005495, 0.010909362696111202, 0.0012172639835625887, 0.03130027651786804, -0.024272775277495384, 0.031211040914058685, -0.03069792129099369, -0.01504778116941452, 0.0007606157450936735, -0.028511585667729378, -0.002409429755061865, 0.020524771884083748, -0.020714404061436653, 0.007607551757246256, 0.06023574620485306, -0.00228115008212626, -0.008254528045654297, -0.0017917345976457, 0.017089104279875755, -0.0031149687711149454, -0.025722894817590714, -0.010407398454844952, 0.02802077680826187, -0.02128329686820507, -0.047206975519657135, -0.018862711265683174, -0.01814880780875683, -0.004846746567636728, 0.0008923814166337252, 0.06326983869075775, -0.015438198111951351, 0.008338188752532005, -0.003720114938914776, -0.04725159704685211, -0.011957910843193531, -0.022097595036029816, -0.029738610610365868, -0.014043852686882019, 0.0005664530326612294, 0.001125934417359531, 0.038573186844587326, -0.009358850307762623, 0.04319126158952713, 0.004824437201023102, -0.031456444412469864, -0.013965768739581108, 0.021495237946510315, 0.007830646820366383, 0.010725309140980244, 0.012381792068481445, -0.007072122767567635, -0.012091767974197865, 0.0462699756026268, 0.01712256856262684, 0.03196956589818001, -0.020446689799427986, 0.007261753547936678, -0.015203948132693768, 0.022064130753278732, 0.008081628940999508, -0.0016997077036648989, -0.006731902249157429, -0.03502596914768219, -0.03315196931362152, 0.002869563875719905, -0.016263650730252266, -0.04890250042080879, -0.022376464679837227, -0.025321323424577713, 0.002470781095325947, 0.005672199185937643, 0.032058801501989365, -0.003575103124603629, 0.00104994245339185, -0.005962223280221224, -0.009520594030618668, 0.0020092525519430637, -0.01955430768430233, -0.02520977519452572, 0.03214804083108902, 0.006659396458417177, -0.016285961493849754, -0.026949917897582054, -0.039599426090717316, 0.014913924038410187, -0.03933171182870865, -0.0016829755622893572, 0.01943160593509674, -0.020547082647681236, -0.016364043578505516, 0.0039543649181723595, 0.0033798946533352137, 0.031166421249508858, 0.023045750334858894, -0.0038288740906864405, 0.02764151431620121, 0.0005486751324497163, -0.04805473983287811, -0.006268979515880346, -0.025455180555582047, -0.025856751948595047, 0.019442759454250336, 0.0010841039475053549, -0.0033269093837589025, -0.02904701419174671, -0.0117682795971632, -0.04169652238488197, -0.009303076192736626, -0.015371269546449184, -0.030452515929937363, 0.033486612141132355, -0.05358750373125076, 0.013229554519057274, -0.046002261340618134, 0.006190896034240723, -0.030452515929937363, -0.013619971461594105, 0.03897475823760033, -0.013363411650061607, -0.00035050371661782265, 0.03482518345117569, 0.005521609913557768, -0.005789324641227722, 0.003502597101032734, -0.006882491521537304, -0.020547082647681236, -0.0043503595516085625, 0.012861447408795357, -0.0069717299193143845, -0.02418353594839573, 0.026905300095677376, -0.0032404600642621517, -0.011182654649019241, -0.04488678649067879, -0.005613636691123247, 0.016732150688767433, 0.015114710666239262, 0.0074011883698403835, 0.004835591651499271, -0.0294708963483572, -0.02150639146566391, 0.018673080950975418, -0.04499833285808563, -0.008126248605549335, -0.0032906564883887768, -0.010875898413360119, 0.056844696402549744, 0.014590436592698097, -0.006436300929635763, 0.024228155612945557, 0.03669918701052666, -0.01913042739033699, 0.0029671681113541126, 0.0013797053834423423, -0.00926403421908617, 0.015081246383488178, -0.0151370195671916, -0.032661158591508865, -0.024518178775906563, 0.017568759620189667, -0.055372267961502075, 0.01147825550287962, 0.010379510931670666, -0.03826085478067398, -0.00983850471675396, -0.0020455054473131895, 0.005451892502605915, 0.0641622245311737, 0.016464436426758766, -0.04348128288984299, -0.002151475753635168, -0.00024122184549923986, -0.010072755627334118, 0.020223593339323997, -0.008382807485759258, 0.04323587939143181, 0.055193789303302765, -0.03072023019194603, 0.026503728702664375, -0.017814163118600845, 0.006207628175616264, 0.011305357329547405, -0.037569258362054825, 0.022577250376343727, 0.03453516215085983, -0.002440105425193906, 0.0014201413141563535, 0.035137519240379333, -0.019364677369594574, -0.017713770270347595, 0.028712371364235878, 0.001680186833254993, -0.055193789303302765, 0.013530733063817024, 0.017133723944425583, 0.036743804812431335, 0.008137403056025505, -0.006776521448045969, 0.024205846711993217, -0.03772542253136635, 0.0229342021048069, 0.01137786265462637, 0.0290693249553442, 0.01824920065701008, -0.019320057705044746, -0.032438065856695175, -0.010730886831879616, 0.01740143820643425, 0.025477489456534386, -0.008605903014540672, 0.01865077205002308, -0.024116607382893562, 0.027150705456733704, -0.014969698153436184, 0.01760222390294075, -0.008784379810094833, -0.007484849076718092, 0.011126880533993244, -0.019386986270546913, 0.05778169631958008, 0.012660661712288857, 0.015237412415444851, -0.019610080868005753, 0.0044451747089624405, 0.017468366771936417, -0.0071334741078317165, -0.019688164815306664, -0.0018489027861505747, -0.03913092613220215, 0.029180873185396194, 0.0006985673098824918, -0.013820757158100605, 0.019063498824834824, 0.016665222123265266, -0.015259722247719765, 0.037189994007349014, -0.012314863502979279, -0.03868473321199417, 0.004208135884255171, 0.00040122304926626384, 0.02295651100575924, 0.012013684958219528, -0.008360498584806919, -0.008890349417924881, 0.03330813720822334, 0.05260588601231575, 0.010351624339818954, 0.03330813720822334, -0.028935467824339867, -0.032438065856695175, 0.030363278463482857, 0.04292354732751846, 0.008031432516872883, 0.018740009516477585, -0.0038288740906864405, 0.03823854401707649, -0.0007731648511253297, 0.023001130670309067, -0.0021974891424179077, 0.008505510166287422, 0.008327034302055836, 0.0064697652123868465, 0.010122952051460743, -0.040224093943834305, -0.007735831197351217, -0.038015447556972504, -0.009682338684797287, -0.02991708740592003, -0.016085175797343254, -0.017936866730451584, 0.037546947598457336, 0.0333973728120327, -0.0014459367375820875, 0.017490675672888756, 0.010736463591456413, 0.029180873185396194, -0.04845631122589111, 0.054167553782463074, -0.004169094376266003, -0.03094332478940487, 0.0028360995929688215, -0.005189755465835333, -0.029515516012907028, 0.018818093463778496, -0.000503707502502948, 0.012459875084459782, -0.004183037672191858, 0.013820757158100605, -0.014925079420208931, -0.02438432164490223, 0.02558903768658638, 0.04383823648095131, -0.02335808426141739, -0.019041188061237335, 0.03136720508337021, 0.022766880691051483, 0.017970331013202667, 0.019308902323246002, 0.019386986270546913, -0.012627197429537773, -0.023001130670309067, 0.018104188144207, -0.004261121153831482, 0.00906324852257967, -0.0007121621747501194, -0.020145511254668236, -0.021093666553497314, 0.003996195737272501, 0.00041446933755651116, -0.0026673837564885616, 0.0030591951217502356, 0.004782606847584248, -0.0012577000306919217, 0.003881859127432108, -0.018862711265683174, 0.023915821686387062, 0.00012348676682449877, -0.016386354342103004, 0.007205979898571968, 0.021740641444921494, 0.009899856522679329, -0.008165289647877216, 0.009397891350090504, 0.017736081033945084, -0.006268979515880346, 0.015839770436286926, -0.01865077205002308, -0.007601974066346884, 0.004236022941768169, 0.004394978284835815, -0.00024435913655906916, -0.019141580909490585, 0.015415889210999012, -0.007490426301956177, -0.02869006246328354, 0.05126731097698212, 0.016185568645596504, -0.03685535117983818, -0.007769295480102301, -0.0010485481470823288, 0.00856128428131342, 0.004118897952139378, -0.0017526928568258882, -0.008433004841208458, 0.02991708740592003, 0.0296716820448637, -0.0083995396271348, 0.009682338684797287, 0.05327517166733742, -0.016486747190356255, -0.006726325023919344, 0.006659396458417177, -0.021394845098257065, 0.03208111226558685, 0.0292701106518507, 0.002360627753660083, 0.02924780175089836, 0.009620986878871918, 0.02766382321715355, -0.0005960828857496381, 0.014690829440951347, 0.019320057705044746, 0.00432526133954525, 0.029760919511318207, -0.010184302926063538, -0.00016522999794688076, 0.0054825684055686, -0.011338821612298489, 0.017334509640932083, 0.03770311549305916, 0.010346046648919582, 0.020413225516676903, -0.017211806029081345, 0.026949917897582054, -0.015929007902741432, -0.003594623878598213, 0.022978821769356728, 0.01764684170484543, -0.054792217910289764, -0.009503861889243126, -0.04299047589302063, -0.02458510734140873, -0.014378495514392853, 0.021037891507148743, 0.01897425949573517, 0.027775371447205544, 0.04952716827392578, 0.008193177171051502, 0.0072896406054496765, 9.594843140803277e-05, 0.00896285567432642, 0.0031010254751890898, 0.03453516215085983, 0.016631757840514183, -0.002483330201357603, -0.00452604703605175, 0.012002529576420784, 0.02030167728662491, 0.011372285895049572, 0.0029197605326771736, -0.02068093977868557, 0.0011831026058644056, 0.019141580909490585, -0.02703915722668171, -0.025276703760027885, 0.00269527081400156, 0.016620604321360588, -0.038573186844587326, 0.03384356573224068, -0.008193177171051502, 0.026704514399170876, -0.007557355333119631, -0.0009837110992521048, -0.02518746629357338, 0.044105950742959976, -0.06309136748313904, 0.06813332438468933, 0.019866641610860825, 0.005811634007841349, 0.007613128982484341, -0.003282290417701006, -0.010145260952413082, -0.026526037603616714, 0.018316129222512245, -0.010273541323840618, 0.0041300528682768345, -0.01455697137862444, 0.027106085792183876, 0.01597362756729126, -0.05037493258714676, -0.03009556233882904, 0.02315729856491089, -0.0151370195671916, -0.028756991028785706, -0.03109949268400669, 0.025945989415049553, 0.009191528894007206, -0.01782531850039959, -0.018293818458914757, -0.011087839491665363, -0.04693926125764847, -0.020647475495934486, -0.0163975078612566, 0.0029699569568037987, -0.0054853567853569984, -0.0041997698135674, -0.01070299930870533, -0.015360115095973015, -0.004606918897479773, -0.010914940387010574, 0.03156799077987671, 0.0022225873544812202, 0.0029169716872274876, -0.007200402673333883, -0.011946756392717361, 0.00807605218142271, 0.007875265553593636, 0.012526804581284523, 0.0143338767811656, 0.02500898949801922, -0.0072394441813230515, 0.029314730316400528, 0.0015156540321186185, 0.029203182086348534, 0.007769295480102301, -0.006960575003176928, 0.007601974066346884, 0.001590948784723878, -0.025321323424577713, 0.03930940106511116, -0.020937498658895493, -0.010898208245635033, -0.0007822280749678612, 0.013742674142122269, 0.023380393162369728, -0.029403967782855034, -0.019219664856791496, 0.02208643965423107, 0.0028667752631008625, -0.00973811186850071, 0.024473560974001884, 0.01329648308455944, -0.009007475338876247, -0.016430972144007683, 0.01166788674890995, -0.010083910077810287, 0.011801743879914284, -0.008823420852422714, -0.008081628940999508, -0.021495237946510315, 0.02358117885887623, -0.01155633945018053, -0.05746936425566673, 0.0015951318200677633, -0.04729621484875679, -0.03167954087257385, 0.004319683648645878, 0.010920517146587372, -0.0013685505837202072, 0.03208111226558685, -0.011260737664997578, -0.03089870698750019, 0.0018433253280818462, 0.007585241924971342, 0.004255543928593397, 0.004604130517691374, -0.012537959031760693, -0.0462699756026268, -0.0033157547004520893, -0.01289491169154644, 0.05099959671497345, 0.022789189592003822, -0.021841034293174744, 0.011545184999704361, 0.027730751782655716, 0.0032376712188124657, 0.018907330930233, -0.017814163118600845, 0.0029113944619894028, 0.018740009516477585, -0.03768080472946167, 0.02168486826121807, 0.0364091619849205, -0.007953349500894547, -0.006575735751539469, -0.008723028004169464, 0.017791854217648506, -0.008990743197500706, 0.0039013801142573357, 0.019085807725787163, 0.01665406860411167, -0.023380393162369728, -0.004657115321606398, -0.014768912456929684, 0.02746303752064705, -0.0007926856633275747, 0.012861447408795357, 0.023715035989880562, -0.01732335425913334, 0.004305740352720022, -0.013173780404031277, -0.003363162511959672, -0.007685634773224592, 0.004230445716530085, 0.022220296785235405, -0.0079979682341218, 0.0024791471660137177, 0.03433437645435333, 0.00742349773645401, 0.0549260750412941, -0.008215486072003841, 0.0034886535722762346, -0.011545184999704361, -0.0012326018186286092, 0.00020096011576242745, 0.014612745493650436, 0.0036364542320370674, -0.01697755604982376, 0.021450618281960487, -0.009029784239828587, 0.010223344899713993, 0.011216118931770325, -0.0143338767811656, -0.009459243156015873, -0.0009481552406214178, 0.005189755465835333, 0.011824053712189198, 0.0025865116622298956, -0.01665406860411167, -0.0005169537616893649, -0.018115343526005745, 0.00953732617199421, 0.0060905031859874725, -0.001260488759726286, -0.006954997777938843, 0.004626439884305, 0.02065862901508808, -0.02828849107027054, 0.001610469538718462, -0.013575352728366852, -0.013218400068581104, -0.026682203635573387, 0.01625249721109867, 0.002491696272045374, 0.001244453713297844, 0.008226641453802586, -0.027730751782655716, -0.020714404061436653, 0.0063080210238695145, 0.0013859799364581704, -0.01290606614202261, -0.03785928338766098, 0.0019144370453432202, 0.020524771884083748, -0.010368356481194496, -0.03297349438071251, 0.0025739625561982393, -0.005318035371601582, 0.023447321727871895, 0.010234499350190163, 0.022677643224596977, 0.029337039217352867, 0.017680305987596512, 0.006441878154873848, -0.00031773658702149987, -0.008617058396339417, -0.013129161670804024, -0.03132258728146553, -0.004567877389490604, -0.018784629181027412, 0.021941427141427994, -0.0115674939006567, -0.047787025570869446, 0.01973278447985649, 0.0074625397101044655, 0.016118640080094337, -0.01002813596278429, -0.04169652238488197, -0.002851437544450164, 0.021796416491270065, -0.009018629789352417, 0.008338188752532005, 0.03270578011870384, 0.006553425919264555, 0.0020036750938743353, -0.05082112178206444, -0.0043977671302855015, -0.008248950354754925, 0.009386736899614334, 0.017568759620189667, -0.007758141029626131, -0.005923181772232056, 0.019141580909490585, 0.026659894734621048, -0.023648107424378395, 0.004774240776896477, -0.02090403437614441, 0.0013873742427676916, -0.014891615137457848, -0.017055639997124672, 0.025254394859075546, 0.014423114247620106, -0.0034663439728319645, 0.03230420872569084, 0.019041188061237335, -0.03415589779615402, -0.0029476473573595285, 0.0298724677413702, 0.039242472499608994, -0.01685485430061817, -0.007088854908943176, -0.001312079606577754, -0.014512352645397186, -0.02621370367705822, 0.0117682795971632, -0.0011370891006663442, -0.041428808122873306, 0.010546833276748657, 0.013876531273126602, 0.013118007220327854, -0.029582444578409195, 0.00876206997781992, -0.0331965871155262, 0.017568759620189667, -0.016843698918819427, 0.02563365548849106, -0.019944725558161736, 0.013162625953555107, 0.017657997086644173, -0.011779434978961945, -0.019610080868005753, 0.007284063380211592, 0.018137652426958084, -0.031858015805482864, 0.01665406860411167, 0.02020128443837166, 0.01080339215695858, -0.015616674907505512, -0.024495869874954224, -0.009397891350090504, -0.0315903015434742, -0.026749132201075554, 0.011589803732931614, 0.0007996574277058244, 0.012270244769752026, 0.006190896034240723, 0.02781999111175537, 0.04662692919373512, -0.03502596914768219, -4.174868081463501e-06, -0.01627480611205101, 0.039242472499608994, 0.0004158636729698628, -0.02884622849524021, -0.019498534500598907, -0.020569391548633575, 0.013051078654825687, 0.0005856252973899245, 0.03475825488567352, -0.019822021946310997, -0.019788557663559914, -0.03544985130429268, 0.015839770436286926, -0.018093032762408257, 0.04200885444879532, -0.0036866506561636925, -0.02456279844045639, 0.026146775111556053, 0.02416122704744339, -0.008327034302055836, -0.03968866169452667, 0.010831279680132866, -0.010652802884578705, -0.017289889976382256, -0.018896175548434258, -0.015527436509728432, 0.015103555284440517, 0.005404484923928976, 0.02017897553741932, 0.006185318809002638, -0.002805424155667424, -0.0042416006326675415, 0.0007891998393461108, 0.002872352721169591, 0.0005410062149167061, -0.0039069573394954205, 0.031456444412469864, 0.011138035915791988, -0.00043817321420647204, -0.018996570259332657, -0.02746303752064705, 0.029426276683807373, 0.04613611847162247, 0.012259089387953281, -0.009096712805330753, 0.007200402673333883, 0.004871844779700041, -0.006146276835352182, 0.021718332543969154, 0.012270244769752026, 0.023804273456335068, -0.009771576151251793, -0.008064896799623966, 0.025745203718543053, 0.0027580163441598415, -0.010095064528286457, 0.017736081033945084, -0.014467733912169933, -0.014367341063916683, -0.006430723704397678, 0.0006152551504783332, 0.0023968806490302086, -0.02661527507007122, -0.007774873171001673, 0.0010541256051510572, -0.013831911608576775, 0.01567244902253151, -0.029515516012907028, 0.00573912775143981, -0.024718964472413063, -0.021227523684501648, -0.015940163284540176, -0.008115093223750591, -0.0005960828857496381, 0.044105950742959976, -0.03315196931362152, -0.0017554815858602524, -0.022599559277296066, -0.000500570225995034, -0.004743564873933792, -0.021640248596668243, -0.03498135134577751, 0.04160728305578232, 0.001900493516586721, -0.007852956652641296, 0.017970331013202667, -0.0012451509246602654, 0.007434652652591467, -0.04218733310699463, 0.009297498501837254, 0.01595131866633892, -0.006352640222758055, -0.003982251975685358, -0.013698054477572441, -0.025075918063521385, 0.0030145759228616953, 0.023023441433906555, -0.03109949268400669, 0.013608817011117935, 0.026258323341608047, -0.011444791220128536, 0.010825701989233494, 0.0021347436122596264, -0.0006051461677998304, 0.02188565395772457, 0.0023383181542158127, -0.008516665548086166, 0.0010290272766724229, 0.0035500049125403166, -0.01772492565214634, -0.005016856826841831, -0.0020036750938743353, 0.005995687562972307, 0.006865759380161762, 0.018907330930233, 0.02198604680597782, 0.01109341625124216, 0.03772542253136635, 0.007250599097460508, -0.022465702146291733, 0.000980225158855319, -0.009849660098552704, -0.003025730838999152, 0.01882924698293209, -0.016720997169613838, -0.002473569707944989, -0.0012033205712214112, 0.027329180389642715, 0.01155633945018053, 0.006570158060640097, -0.0015979204326868057, 0.020970962941646576, -0.01463505532592535, -0.02971630170941353, 0.006229937542229891, 0.01973278447985649, 0.01310685183852911, -0.0008610086515545845, 0.019989343360066414, 0.027529966086149216, 0.01587323471903801, -0.0025460757315158844, 0.016832543537020683, -0.045332975685596466, 0.0360075905919075, -0.03341968357563019, -0.0010387877700850368, 0.010485481470823288, -0.028176942840218544, 0.02583444118499756, 0.0317910872399807, 0.0018475083634257317, 0.05082112178206444, -0.06063731759786606, 0.0013999233487993479, 0.007356569170951843, -0.01762453280389309, 0.016263650730252266, -0.0023383181542158127, -0.02563365548849106, -0.004029660020023584, 0.009620986878871918, 0.005429583135992289, 0.000756432709749788, -0.017769545316696167, 0.0050001246854662895, 0.036766115576028824, 0.0026157929096370935, -0.05215969309210777, 0.008416271768510342, 0.03908630460500717, 0.02864544279873371, 0.016542520374059677, 0.025254394859075546, 0.04312433302402496, 0.0008868040167726576, 0.004553934093564749, -0.013140316121280193, 0.04528835788369179, -0.02583444118499756, 0.021673712879419327, 0.01300645899027586, -0.015203948132693768, 0.029381658881902695, 0.01444542407989502, -0.030452515929937363, 0.023090369999408722, -0.029158562421798706, 0.004604130517691374, -0.004258332774043083, 0.0007620100514031947, -0.007139051333069801, 0.0052706277929246426, -0.02538825199007988, 0.03710075840353966, -0.036989208310842514, -0.022175678983330727, 0.007010771427303553, -0.02055823616683483, 0.02418353594839573, 0.003385472111403942, -0.03968866169452667, 0.011015333235263824, -0.03946556895971298, 0.0462699756026268, -0.028511585667729378, -0.00868956372141838, -0.020223593339323997, 0.04151804372668266]], "input": [" stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. ", "Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not", " with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon – Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo", "\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out – Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka – Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 – Industrial park Kannot – close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal – The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21", " was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.", "Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,", " bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.", "Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags – Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only \"Classic\" and \"Flex\" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications,", " bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,", " proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.", "Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​\n​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.", "How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on", " – The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n​​Do not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next", " AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.", " and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.", "Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-030aef4754e302d9f812764b592dcab6 b/cache/text_embedding/embedding-030aef4754e302d9f812764b592dcab6 deleted file mode 100644 index 3301d8ae68deebf981a9106d776eb62536175a5c..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-030aef4754e302d9f812764b592dcab6 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.0047876485623419285, -0.01267184317111969, 0.013837332837283611, 0.01662536710500717, -0.03151392564177513, 0.024338165298104286, -0.01563127338886261, 0.01745949126780033, -0.011369236744940281, 0.015848373994231224, 0.004939048085361719, 0.014168697409331799, 0.0017525192815810442, -0.02131017856299877, -0.003747849026694894, -0.05694902315735817, -0.0019524807576090097, 0.021675821393728256, -0.06069687008857727, 0.01311747170984745, 0.02534368634223938, 0.0036335852928459644, 0.005316118244081736, -0.02993708662688732, -0.013277440331876278, -0.05269841104745865, 0.04250609129667282, -0.027149051427841187, 0.016533955931663513, -0.08309255540370941, -0.029251504689455032, -0.028565922752022743, 0.02131017856299877, -0.029868528246879578, -0.013688789680600166, 0.047259461134672165, -0.02593785710632801, -0.0416148342192173, -0.027331873774528503, -0.022509947419166565, -0.010963601060211658, -0.02095596119761467, 0.032268065959215164, 0.02406393177807331, -0.028611628338694572, 0.030828343704342842, -0.006158812902867794, -0.05822877585887909, 0.02406393177807331, -0.016636792570352554, -0.005964564625173807, 0.030508404597640038, -0.00635877437889576, -0.004202046897262335, 0.015688404440879822, 0.03144536539912224, 0.00029030119185335934, 0.0063930535688996315, 0.026737703010439873, -0.02993708662688732, 0.003036557463929057, 0.027034789323806763, 0.025617917999625206, -0.08967414498329163, -0.02342405542731285, -0.016476823017001152, -0.06819257140159607, 0.0026337779127061367, -0.008238411508500576, -0.041683394461870193, 0.08016740530729294, 0.009461033158004284, 0.030942605808377266, 0.04335164278745651, -0.029571441933512688, 0.052881233394145966, 0.0006805830635130405, 0.05114442855119705, -0.00748427165672183, 0.011386376805603504, -0.07143765687942505, -0.0048790592700243, 0.03421054780483246, -0.04390010982751846, -0.007992745377123356, -0.02086455002427101, -0.015745535492897034, -0.017242390662431717, 0.00489334249868989, -0.017425213009119034, 0.02618923783302307, -0.01096931379288435, -0.027743224054574966, 0.025023747235536575, -0.036221589893102646, -0.03523892164230347, 0.011357810348272324, -0.02431531250476837, -0.03615302965044975, -0.0003938526497222483, -0.018522143363952637, -0.02461239881813526, -0.04220900684595108, -0.02242996171116829, -0.006735844537615776, -0.00631306879222393, -0.04399152100086212, 0.018076514825224876, -0.015562714077532291, -0.02495518885552883, 0.049773260951042175, -0.03763845935463905, -0.005750319920480251, -0.025366539135575294, -0.020967386662960052, -0.0006009555654600263, -0.07833918184041977, -0.04831068590283394, -0.025206569582223892, -0.011472074314951897, 0.04476851224899292, 0.02870303764939308, -0.003984946291893721, -0.04831068590283394, 0.030005645006895065, -0.013540247455239296, 0.029457177966833115, -0.016705350950360298, 0.008055590093135834, -0.04748798906803131, 0.03046269901096821, -0.05562356486916542, 0.06531312316656113, -0.004819070920348167, -0.04472280666232109, 0.030531257390975952, 0.03194812685251236, -0.03318217396736145, -0.014031580649316311, 0.015414171852171421, 0.03830118849873543, 0.05315546691417694, 0.005776029545813799, 0.015002822503447533, -0.06663858145475388, -0.02075028605759144, -0.016591086983680725, 0.00012408322072587907, 0.06654717028141022, -0.035718828439712524, 0.006615867372602224, 0.05141865834593773, -0.02900012396275997, -0.01789369434118271, 0.000991237466223538, 0.006604440975934267, 0.02815457247197628, 0.007918473333120346, -0.03027987666428089, -0.0048019313253462315, -0.025366539135575294, 0.02189292199909687, -0.0024181052576750517, -0.01765373907983303, 0.0006320210522972047, 0.02297842688858509, 0.009363909251987934, 0.02529798075556755, -0.04280317574739456, -0.0072557441890239716, -0.02164154313504696, 0.011963408440351486, -0.021858643740415573, -0.027743224054574966, -0.05429810285568237, -0.009461033158004284, 0.03430195897817612, 0.027423284947872162, 0.04209474101662636, 0.0024452428333461285, 0.016099752858281136, -0.008067016489803791, -0.004676241427659988, 0.002765181241557002, -0.03197098150849342, -0.0023538318928331137, 0.03964950144290924, 0.01731094904243946, -0.050961606204509735, 0.012431888841092587, 0.05502939224243164, -0.01222621463239193, 0.026851966977119446, 0.012146229855716228, -0.0033107902854681015, -0.02810886688530445, -0.007518550846725702, 0.009461033158004284, -0.01299178134649992, 0.0010797918075695634, -0.0031165420077741146, -0.04422004893422127, -0.02312697097659111, -0.0033707788679748774, -0.036564379930496216, 0.0004420576442498714, -0.006067401729524136, -0.024635251611471176, 0.02696623094379902, -0.03446192666888237, 0.05242418125271797, -0.03756989911198616, -0.023046985268592834, 0.012203361839056015, 0.007055782712996006, -0.0052218507044017315, -0.06686711311340332, 0.060376930981874466, 0.0382554829120636, -0.006867247633635998, -0.030645521357655525, -0.009272498078644276, 0.03421054780483246, 0.003619302297011018, -0.01696815714240074, 0.007729938719421625, 0.009083962999284267, -0.0502760224044323, 0.0012690410949289799, -0.060971103608608246, -0.018362173810601234, 0.0024181052576750517, 0.026851966977119446, -0.014454356394708157, 0.006530169863253832, 0.040106553584337234, 0.042826030403375626, -0.016099752858281136, 0.0016054047737270594, -0.017390932887792587, 0.02790319174528122, -0.002223856979981065, 0.0034878989681601524, 0.001649681944400072, -0.005179001484066248, -0.016739631071686745, -0.001256186398677528, -0.008672613650560379, 0.03766131028532982, -0.03149107098579407, -0.035718828439712524, -0.034941837191581726, 0.08556064963340759, -0.050458844751119614, -0.01937912218272686, 0.06659287959337234, -0.05562356486916542, -0.022567078471183777, -0.02342405542731285, -0.024132490158081055, 0.008049876429140568, 0.00521328067407012, -0.018327895551919937, -0.046276792883872986, -0.025572214275598526, -0.033844903111457825, -0.023629730567336082, 0.05077878385782242, -0.015517008490860462, 0.037798427045345306, -0.01656823419034481, 0.04767081141471863, -0.014808573760092258, -0.02214430272579193, -0.07513979822397232, 0.04339734837412834, -0.011037872172892094, 0.02233855053782463, 0.006907240021973848, 0.04364872723817825, -0.05443521961569786, -0.015756962820887566, -0.02657773345708847, -0.03423340246081352, 0.030805490911006927, 0.015002822503447533, 0.0004534840118139982, -0.041089221835136414, 0.008609768934547901, 0.029571441933512688, 0.047853633761405945, -0.004344876855611801, 0.031239692121744156, 0.010557964444160461, -0.0026894814800471067, -0.0022124305833131075, 0.03391346335411072, 0.0006202376098372042, -0.004961900878697634, 0.017128126695752144, -0.04328308627009392, -0.02751469612121582, 0.05132724717259407, -0.008661187253892422, -0.017379507422447205, 0.021755807101726532, 0.0020181823056191206, -0.040609315037727356, -0.02228141948580742, 0.021515851840376854, -0.023298365995287895, -0.010757925920188427, -0.051053017377853394, -0.04211759567260742, 0.02115020900964737, -0.010260879062116146, -0.002333835931494832, -0.04335164278745651, 0.021824363619089127, -0.017779430374503136, -0.010015211999416351, 0.0003263656690251082, 0.025183716788887978, 0.014454356394708157, -0.049864672124385834, -0.003545030951499939, 0.013791627250611782, -0.013403130695223808, -0.012763254344463348, 0.018602129071950912, 0.008398381061851978, 0.03258800506591797, 0.038529716432094574, 0.041089221835136414, 0.0036850038450211287, -0.06138245388865471, -0.034096285700798035, 0.009826676920056343, 0.0048047881573438644, 0.016922451555728912, -0.013894464820623398, 0.007655667141079903, 0.009043971076607704, 0.036952875554561615, 0.01814507320523262, 0.026006415486335754, 0.02342405542731285, 0.008838295936584473, 0.024383870884776115, 0.034439075738191605, 0.013208881951868534, 0.048493508249521255, 0.016431117430329323, 0.011529206298291683, -0.04625394195318222, -0.04620823636651039, -0.011792012490332127, -0.006930092815309763, 0.016156885772943497, 0.016351133584976196, -0.016533955931663513, -0.018613554537296295, 0.008461225777864456, 0.05256129801273346, 0.03836974501609802, -0.015117085538804531, -0.01091789547353983, -0.04353446513414383, -0.025320833548903465, 0.0009398188558407128, 0.022989854216575623, -0.04383154958486557, 0.006661572959274054, 0.012683269567787647, 0.021138781681656837, 0.011089290492236614, 0.022555651143193245, 0.008786877617239952, 0.026303501799702644, 0.01082648430019617, 0.030142761766910553, 0.010215173475444317, 0.037844132632017136, -0.01588265225291252, 0.025206569582223892, 0.013323145918548107, -0.0866575837135315, -0.0025366537738591433, -0.03679290786385536, -0.008169854059815407, -0.03274797275662422, -0.01868211291730404, 0.008918280713260174, -0.0030565536580979824, -0.05507509782910347, 0.004873346071690321, 0.004170624539256096, 0.056629084050655365, -0.011826291680335999, 0.015197070315480232, -0.045934002846479416, -0.032130949199199677, -0.0163168553262949, 0.02214430272579193, 0.03519321605563164, 0.02415534295141697, -0.030005645006895065, 0.003959236666560173, 0.03581023961305618, -0.004427717998623848, 0.012569005601108074, -0.014785720966756344, -0.0011426368728280067, 0.006655859760940075, 0.008238411508500576, -0.009918088093400002, -0.007627101149410009, 0.031719598919153214, -0.02696623094379902, -0.035033248364925385, 0.01859070174396038, -0.00561891682446003, -0.013917317613959312, 0.0397409088909626, -0.02449813485145569, -0.054160989820957184, 0.040312230587005615, -0.00035564572317525744, -0.01572268269956112, 0.0032679415307939053, -0.06019411236047745, -0.015185643918812275, -0.026943378150463104, 0.041591983288526535, -0.04451713338494301, 0.006107394117861986, -0.023789700120687485, -0.019641928374767303, -0.02696623094379902, 0.019447680562734604, 0.03466760367155075, 0.018556423485279083, 0.021744379773736, 0.014111565425992012, -0.07248888164758682, -0.006198805291205645, -0.07285452634096146, 0.0032422321382910013, 0.008781163953244686, -0.01469431072473526, 0.0007230748888105154, 0.0019667637534439564, -0.05822877585887909, 0.007929899729788303, -0.014408650808036327, -0.028040308505296707, 0.03329643979668617, -0.004724803380668163, 0.007084348704665899, -0.02332121878862381, 0.030005645006895065, -0.0030994026456028223, 0.010643662884831429, 0.02879444882273674, 0.00577031634747982, -0.014899984933435917, 0.01937912218272686, 0.008764024823904037, -0.002128161257132888, -0.03740993142127991, 0.02321838214993477, -0.007678519934415817, -0.017368080094456673, 0.026760555803775787, -0.054115284234285355, 0.017390932887792587, 0.010100910440087318, -0.029365768656134605, -0.0023295509163290262, -0.003976376261562109, -0.04216330125927925, 0.000803416536655277, -0.05365822836756706, -0.06257079541683197, 0.012317625805735588, 0.04378584399819374, 0.03190242126584053, 0.01779085583984852, 0.0191277414560318, -0.07641955465078354, 0.023789700120687485, 0.007689946331083775, 0.027674665674567223, -0.01000949926674366, 0.023446908220648766, 0.011871997267007828, 0.00991237536072731, 0.01750519685447216, 0.05055025592446327, 0.012009114027023315, -0.007227178197354078, -0.025320833548903465, 0.01178058609366417, 0.04394581541419029, 0.03037128783762455, 0.02884015440940857, -0.014374371618032455, 0.03199383243918419, -0.03032558225095272, 0.062342267483472824, 0.05073307827115059, 0.030348435044288635, -0.002346690511330962, -0.003156534396111965, -0.054800864309072495, -0.0326337106525898, -0.01972191222012043, -0.007324302569031715, -0.04808216169476509, -0.002570932963863015, 0.004824784118682146, -0.005438951775431633, 0.00996379368007183, -0.03729566931724548, 0.028954418376088142, 0.021481573581695557, 0.02431531250476837, -0.029502883553504944, 0.002692338079214096, 0.00855835061520338, -0.018476437777280807, -0.002679483499377966, -0.0012983211781829596, -0.0011876282515004277, 0.006473037879914045, -0.02461239881813526, 0.012980354949831963, 0.02964000031352043, -0.04145486652851105, -0.0363815575838089, 0.007969892583787441, 0.006318781990557909, -0.010735073126852512, -0.06549594551324844, 0.031125428155064583, -0.019356269389390945, 0.004227756522595882, 0.024086784571409225, 0.0004699094279203564, -0.0213558841496706, 0.004199190530925989, -0.002205289201810956, 0.0341191366314888, 0.007501411251723766, 0.015265628695487976, 0.004390581976622343, 0.02840595319867134, -0.0322452113032341, -0.02278417907655239, -0.0242010485380888, -0.018510717898607254, 0.019002052024006844, 0.0222928449511528, -0.02070458047091961, 0.01695673167705536, 0.04609397053718567, -0.00921536609530449, -0.029845675453543663, -0.024178195744752884, 0.008986839093267918, 0.013220308348536491, 0.01917344704270363, 0.014043007045984268, -0.0017896549543365836, 0.030142761766910553, 0.018510717898607254, -3.282849138486199e-05, -0.021173061802983284, 0.02223571389913559, 0.0032793679274618626, 0.02356117218732834, -0.015665551647543907, -0.03624444082379341, 0.0036507248878479004, -0.013083192519843578, 0.014740015380084515, -0.02257850393652916, -0.005079020746052265, 0.01262613758444786, 0.01587122678756714, -0.036952875554561615, 0.018110794946551323, -0.008358389139175415, 0.0014347233809530735, -0.004761939402669668, 0.029502883553504944, 0.020784564316272736, 0.01701386272907257, -0.0006598727777600288, -0.02495518885552883, -2.3633836462977342e-05, 0.006690138950943947, 0.010397995822131634, 0.019859028980135918, -0.009809537790715694, -0.005316118244081736, -0.023012707009911537, -0.013505968265235424, -0.0060845413245260715, -0.016054047271609306, 0.047259461134672165, -0.005935998633503914, -0.010592243634164333, 0.002122448058798909, 0.03704428672790527, 0.02840595319867134, -0.06302785128355026, 0.01420297659933567, -0.017870841547846794, -0.012877517379820347, -0.042437534779310226, 0.041889067739248276, -0.02465810440480709, -0.034393370151519775, -0.004450570791959763, 0.024978041648864746, -0.006867247633635998, 0.013414557091891766, -0.04072357714176178, -0.021230192855000496, -0.02208717167377472, -0.02687481977045536, -0.02824598364531994, -0.07047784328460693, 0.03331929072737694, -0.008821156807243824, -0.02016754075884819, -0.0023981090635061264, -0.019104888662695885, 0.010895042680203915, 0.005121869966387749, 0.028291689231991768, -0.024338165298104286, -0.05891435593366623, 0.005207567475736141, -0.008809730410575867, -0.006295929197221994, -0.00397066306322813, 0.032907940447330475, -0.018750671297311783, -0.010163755156099796, 0.03565027192234993, -0.03087404929101467, -0.00273090205155313, -0.008278404362499714, -0.012191935442388058, -0.02248709462583065, -0.017002437263727188, 0.040357936173677444, -0.00229955674149096, -0.0068215420469641685, 0.037592753767967224, 0.00347075960598886, 0.034004874527454376, 0.03683861345052719, 0.02095596119761467, 0.013277440331876278, -0.0019867599476128817, 0.013391704298555851, 0.018807802349328995, -0.006301642395555973, 0.016751056537032127, 0.04968184977769852, -0.07404287159442902, 0.010243739932775497, 0.000869832350872457, 0.004593400284647942, 0.04639105871319771, -0.01923057809472084, 0.013734495267271996, 0.03274797275662422, -0.019847603514790535, -0.028863007202744484, 0.0016268292674794793, -0.006627293769270182, -0.015391319058835506, 0.028931565582752228, 0.011449221521615982, -0.001886779093183577, 0.040655020624399185, -0.010860763490200043, 0.01464860513806343, 0.01903633028268814, -0.004490562714636326, -0.005544645246118307, 0.0641704872250557, 0.0083355363458395, -0.01082077156752348, 0.004647675435990095, -0.01092360820621252, 0.03756989911198616, 0.015699829906225204, 0.0445856899023056, -0.058457303792238235, 0.008318396285176277, -0.03416484221816063, -0.031925275921821594, -0.021173061802983284, 0.024543840438127518, 0.017710871994495392, -0.034484781324863434, 0.009552444331347942, -0.010866477154195309, -0.007330015767365694, -0.021024517714977264, -0.023206954821944237, 0.0028922995552420616, 0.024635251611471176, -0.023743994534015656, -0.02554936148226261, -0.006450185086578131, 0.015517008490860462, -0.022395683452486992, -0.020144687965512276, 0.013871612027287483, 0.007958466187119484, 0.013357425108551979, -0.006181665696203709, -0.008644048124551773, -0.009638141840696335, 0.0013147465651854873, 0.01819077879190445, -0.008049876429140568, 0.012900370173156261, -0.010369429364800453, 0.008055590093135834, -0.020498905330896378, 0.017962250858545303, -0.024178195744752884, -0.04588829725980759, 0.014054433442652225, -0.04565976932644844, -0.007021503522992134, 0.0194819588214159, -0.02618923783302307, 0.009952367283403873, -0.025412244722247124, -0.0005452520563267171, -0.0142486821860075, -0.007044356316328049, 0.010792205110192299, 0.006290215998888016, -0.03894106298685074, -0.03640441223978996, 0.04595685377717018, -0.07431710511445999, -0.019344842061400414, -0.02025895193219185, -0.015117085538804531, 0.007907046936452389, -0.0013875896111130714, -0.0111464224755764, -0.008369815535843372, -0.027994602918624878, 0.027788929641246796, -0.020967386662960052, 0.014214402996003628, -0.012751827947795391, -0.022315697744488716, -0.010489406995475292, -0.03283938392996788, -0.0315367765724659, -0.011574911884963512, 0.006798689253628254, 0.026851966977119446, 0.027720371261239052, -0.03176530450582504, -0.007489984855055809, 0.02543509751558304, 0.014545767568051815, 0.02134445682168007, -0.03539888933300972, 0.0006177380564622581, 0.021127356216311455, -0.019059183076024055, 0.0290458295494318, -0.008912567980587482, 0.00595313822850585, 0.013277440331876278, 0.05310976132750511, -0.003019417868927121, -0.012968928553164005, -0.0097581185400486, -0.022269992157816887, 0.01496854331344366, 0.021515851840376854, -0.0119062764570117, -0.03910103440284729, -0.04156912863254547, -0.020247524604201317, -0.028817301616072655, -0.004833354149013758, 0.0029794257134199142, -0.050367433577775955, 0.05758889764547348, -0.01646539755165577, -0.022715620696544647, -0.008564063347876072, -0.04124918952584267, -0.007318589370697737, -0.0008298400207422674, 0.006398766301572323, 0.023584024980664253, 0.004676241427659988, -0.04024367034435272, 0.003850686363875866, -0.012111950665712357, -0.04038078710436821, 0.01392874401062727, -0.024978041648864746, 0.034781865775585175, 0.0053818197920918465, 0.025023747235536575, -0.00996379368007183, 0.04131774976849556, -0.006078828126192093, 0.0026466327253729105, 0.017413785681128502, 0.019710486754775047, -0.01501424890011549, -0.014420077204704285, -0.037112846970558167, -0.06060545891523361, 0.0015254202298820019, 0.004727660212665796, 0.005318974610418081, -0.0038306901697069407, 0.01814507320523262, -0.023344071581959724, -0.0144429299980402, 0.029114387929439545, 0.013563099317252636, -0.020636022090911865, -0.028588775545358658, 0.023092690855264664, 0.0005548930494114757, -0.04492848366498947, 0.026349205523729324, -0.027240462601184845, 0.03016561269760132, 0.012169082649052143, -0.01375734806060791, -0.03990088030695915, 0.03608447313308716, -0.01392874401062727, 0.001581123797222972, -0.00978668499737978, -0.04408293217420578, -0.01077506598085165, -0.027331873774528503, -0.022864164784550667, 0.02964000031352043, -0.007335728965699673, -0.03151392564177513, 0.006804402451962233, -0.01598549075424671, 0.030805490911006927, -0.019790470600128174, 0.0026423477102071047, -0.032222360372543335, -0.007587108761072159, 0.010358002968132496, 0.004724803380668163, 0.022841311991214752, -0.01695673167705536, -0.03071407973766327, -0.003182243788614869, -0.0034050578251481056, -0.006598727777600288, 0.014180123805999756, -0.00996379368007183, 0.013871612027287483, 0.00595313822850585, 0.06956373155117035, -0.025846445932984352, -0.01671677827835083, -0.01146064791828394, 0.014260108582675457, 0.00048383529065176845, 0.001014804351143539, 0.03011990897357464, -0.02213287726044655, 0.020304657518863678, 0.006455898284912109, -0.03245088830590248, 0.027194757014513016, -0.013380277901887894, 0.05800024792551994, -0.008569777011871338, 0.032222360372543335, -0.0009526734938845038, 0.02223571389913559, -0.03996943682432175, -0.01168346218764782, 0.017379507422447205, 0.0014754298608750105, -0.01665964536368847, 0.015642698854207993, 0.04545409604907036, 0.015848373994231224, -0.042780324816703796, -0.014602899551391602, -0.010409422218799591, 0.044745661318302155, 0.023743994534015656, 0.005558928474783897, -0.0014504346763715148, 0.029228651896119118, 0.019699059426784515, 0.006038835737854242, 0.01637398637831211, 0.020533185452222824, -0.006850108038634062, 0.03377634659409523, 0.026760555803775787, 0.004302027635276318, 0.021184487268328667, 0.013677363283932209, -0.01343740988522768, -0.044791366904973984, -0.028771596029400826, -0.002576646162196994, -0.02075028605759144, 0.03215380012989044, -0.01755090244114399, 0.00780420983210206, 0.015654124319553375, -0.011940555647015572, 0.03850686177611351, -0.022944148629903793, 0.010095196776092052, -0.031034016981720924, -0.014454356394708157, -0.07376863807439804, 0.031102575361728668, -0.01545987743884325, -0.004561977926641703, -0.024589546024799347, 0.027628960087895393, -0.0041620549745857716, 0.04451713338494301, -0.005264699459075928, 0.028474511578679085, 0.02431531250476837, -0.03862112760543823, -0.0083355363458395, 0.02080741710960865, 0.011803438887000084, 0.03485042601823807, -0.022007185965776443, 0.016202591359615326, 0.017927972599864006, 0.006964372005313635, -0.016671072691679, 0.006690138950943947, 0.017230963334441185, 0.02367543615400791, 0.024635251611471176, -0.05566927045583725, 0.012454741634428501, -0.02461239881813526, -0.015231349505484104, 0.010083770379424095, -0.012374757789075375, 0.003939240705221891, -0.0030565536580979824, -0.01045512780547142, 0.0025223710108548403, 0.03569597750902176, -0.013540247455239296, -0.020601743832230568, 0.0015239919302985072, -0.024680957198143005, 0.03297650068998337, 0.002838024403899908, 0.04643676429986954, 0.010209460742771626, -0.02311554364860058, -0.019401974976062775, -0.03686146438121796, 0.05315546691417694, 0.016671072691679, -0.00758139556273818, 0.00036671501584351063, 0.02730902098119259, -0.0012997494777664542, -0.017379507422447205, 0.02479522116482258, 0.005010462831705809, 0.018522143363952637, 0.000393138499930501, 0.06846680492162704, 0.033456407487392426, 0.023492613807320595, -0.01286609098315239, 0.015654124319553375, 0.005467517301440239, 0.021093076094985008, -0.022258566692471504, 0.004907625261694193, -0.007981318980455399, -0.004187764134258032, 0.02948003076016903, 0.049041975289583206, -0.019093461334705353, -0.02529798075556755, 0.013494541868567467, -0.028954418376088142, -0.032725121825933456, -0.013905891217291355, -1.827772575779818e-05, -0.002123876241967082, 0.0121805090457201, 0.018133647739887238, -0.026554880663752556, -0.015139938332140446, -0.002933720126748085, 0.008918280713260174, 0.05617202818393707, -0.0010676513193175197, 0.01691102609038353, -0.0027409002650529146, 0.029799969866871834, 0.028497364372015, -0.0077242255210876465, -0.0031393948011100292, -0.03121683932840824, 0.013871612027287483, -0.0196762066334486, -0.019996145740151405, 0.02484092488884926, -0.04767081141471863, -0.0064216190949082375, 0.06357631832361221, -0.000869832350872457, -0.006113107316195965, 0.004953330848366022, 0.0018539283191785216, 0.005807451903820038, 0.008141287602484226, 0.02998279221355915, 0.021424440667033195, -0.035970207303762436, 0.043168820440769196, -0.008604055270552635, 0.017025290057063103, 0.014157271012663841, -0.0017110987100750208, 0.008998265489935875, 0.001662536640651524, 0.010609383694827557, 0.020636022090911865, -0.00889542791992426, -0.025663623586297035, 0.014728588983416557, -0.008215558715164661, -0.0033022204879671335, 0.06677570194005966, -0.013208881951868534, 0.03581023961305618, -0.0012061960296705365, -0.014465782791376114, 0.043603021651506424, 0.02870303764939308, -0.0168653205037117, 0.0682382732629776, -0.0077070859260857105, -0.018659260123968124, -0.01435151882469654, 0.0030508404597640038, -0.054846569895744324, 0.0030222744680941105, -0.026760555803775787, -0.0243610180914402, -0.00663300696760416, 0.009666708298027515, 0.024726662784814835, -0.006181665696203709, -0.015585566870868206, 0.03734137490391731, -0.05004749447107315, -0.008358389139175415, 0.023698288947343826, -0.03455333784222603, -0.001322602154687047, 0.041043516248464584, 0.03329643979668617, 0.031833864748477936, 0.009586723521351814, 0.009415327571332455, 0.01070079393684864, 0.009638141840696335, -0.003939240705221891, -0.01109500415623188, 0.005284695420414209, 0.007912760600447655, -0.0029879955109208822, 0.007410000078380108, 0.008775451220571995, 0.027011936530470848, -0.004987610038369894, -0.009695273824036121, 0.006604440975934267, -0.030782638117671013, -0.015094232745468616, -0.018156500533223152, -0.03233662247657776, -0.014362945221364498, -0.027994602918624878, 0.004553407896310091, -0.044699955731630325, -0.01456862036138773, -0.0036421550903469324, 0.010449414141476154, 0.015494155697524548, -0.007929899729788303, -0.01878494955599308, 0.02884015440940857, -0.011963408440351486, -0.027583254501223564, -0.013528821058571339, -0.029891381040215492, 0.01799653097987175, -0.03208524361252785, -0.025275127962231636, 0.016739631071686745, -0.007792783435434103, -0.020601743832230568, -0.01573411002755165, -0.03299935162067413, 0.007775643840432167, 0.03551315516233444, -0.018773524090647697, 0.026783408597111702, 0.026417763903737068, 0.0023309793323278427, 0.01407728623598814, 0.06087969243526459, 0.01790511980652809, 0.030599815770983696, 0.023606877774000168, 0.019390547648072243, -0.014957116916775703, -0.01784798875451088, 0.020533185452222824, 0.015139938332140446, -0.014922837726771832, -0.005530362483114004, 0.000143722296343185, 0.012237641029059887, -0.013208881951868534, -0.02006470412015915, -0.010226599872112274, 0.01230619940906763, 0.01853357069194317, -0.0026037837378680706, -0.0040306514129042625, 0.012340478599071503, -0.008901141583919525, -0.00786134134978056, 0.02376684732735157, -0.016453970223665237, 0.01343740988522768, -0.004504845943301916, 0.023584024980664253, 0.006747270934283733, 0.014614325948059559, 0.013128898106515408, 0.004996179603040218, 0.004593400284647942, -0.02568647637963295, 0.010569390840828419, -0.03194812685251236, -0.025663623586297035, 0.007981318980455399, -0.010318011045455933, -0.008581203408539295, 0.016248296946287155, 0.0019753335509449244, -0.030554110184311867, -0.014191550202667713, 0.019116314128041267, 0.04266606271266937, 0.0026252081152051687, -0.027057642117142677, -0.0020010429434478283, -0.014957116916775703, 0.040357936173677444, 0.014614325948059559, -0.024041080847382545, -0.000653802533634007, -0.005627486854791641, -0.004133488982915878, -0.0012461883015930653, -0.0032707981299608946, 0.03791269287467003, -0.011826291680335999, -0.0029708559159189463, -0.02461239881813526, -0.02199576050043106, 0.012774680741131306, 0.011243547312915325, 0.03437051549553871, -0.006181665696203709, -0.00766709353774786, -0.011871997267007828, 0.027286168187856674, -0.005576068069785833, -0.014008727855980396, -0.010837910696864128, 0.0026380629278719425, 0.013083192519843578, -0.00934105645865202, 0.03565027192234993, 0.004382012411952019, -0.01820220611989498, 0.01545987743884325, -0.0028323112055659294, -0.009312490932643414, 0.04250609129667282, -0.013140324503183365, -0.017219537869095802, -0.024246754124760628, -0.016979584470391273, 0.025915004312992096, 0.012157656252384186, 0.010655089281499386, -0.005656052380800247, -0.009375335648655891, 0.008312683552503586, -0.017642313614487648, 0.014168697409331799, 0.0017339515034109354, -0.004676241427659988, -0.009626715444028378, 0.0014518629759550095, -0.018499290570616722, -0.006970084737986326, -0.006478751078248024, -0.03245088830590248, 0.00033439981052652, -0.001141208573244512, 0.004142058547586203, -0.031673893332481384, -0.011803438887000084, 0.017882267013192177, 0.022989854216575623, 0.038529716432094574, 0.01267184317111969, 0.006547309458255768, 0.02075028605759144, -0.017619460821151733, -0.015539861284196377, -0.00047312307287938893, -0.0038021241780370474, -0.0543438084423542, 0.011169275268912315, -0.009529591538012028, 0.02356117218732834, 0.012203361839056015, 0.026143532246351242, 0.02189292199909687, -0.003119398606941104, 0.016876745969057083, 0.03421054780483246, -0.03658723458647728, 0.012580431997776031, 0.01942482776939869, 0.002325266133993864, 0.00577031634747982, -0.0008933992357924581, 0.016054047271609306, -0.025503655895590782, -0.03590165078639984, 0.01854499615728855, -0.013094618916511536, -0.00919822696596384, 0.0543438084423542, 0.003990659490227699, -0.002876588376238942, -0.012751827947795391, -0.02854306995868683, 0.002403822261840105, -0.03727281466126442, 0.0009033972746692598, -0.025503655895590782, 0.041637688875198364, -0.01109500415623188, 0.02751469612121582, -0.006684425752609968, -0.0025823593605309725, 0.04234612360596657, -0.003299363888800144, 0.004473423585295677, -0.004004942253232002, -0.007198612205684185, -0.018167925998568535, -0.028314542025327682, -0.011580624617636204, -0.023446908220648766, 0.03288508951663971, -0.014591473154723644, -0.011746306903660297, 0.017219537869095802, 0.005738893523812294, 0.04042649269104004, 0.010386569425463676, -0.000805558986030519, 0.00694151921197772, 0.04392296075820923, -0.006627293769270182, -0.0288858599960804, -0.012534726411104202, -0.026943378150463104, 0.037798427045345306, -0.01154063269495964, 0.019710486754775047, 0.030736932530999184, 0.004099209792912006, -0.0067129917442798615, 0.026257796213030815, -0.009135382249951363, 0.020933108404278755, 0.04611682519316673, 0.0015268485294654965, -0.0163168553262949, -0.018510717898607254, 0.0019496241584420204, 0.021675821393728256, 0.012774680741131306, 0.012591858394443989, -0.00857548974454403, 0.009181086905300617, 0.01656823419034481, 0.036907169967889786, 0.009398188441991806, -0.0022938435431569815, -0.01899062469601631, -0.017813708633184433, -0.011597764678299427, 0.008564063347876072, -0.003147964598610997, 0.01173488050699234, 0.022372830659151077, -0.041980478912591934, -0.04033508151769638, -0.03203953802585602, -0.0060502621345222, -0.016442544758319855, 0.033844903111457825, 0.0037792713847011328, 0.021972907707095146, -0.030896902084350586, -0.018019383773207664, -0.01775657758116722, 0.0068558212369680405, 0.012454741634428501, -0.06572446972131729, -0.012237641029059887, 0.013345998711884022, -0.0046419622376561165, -0.033890608698129654, -0.008941133506596088, -0.013917317613959312, 0.028337394818663597, -0.030988311395049095, 0.027400432154536247, -0.014991396106779575, 0.010198034346103668, -0.006827255245298147, -0.005318974610418081, -0.00038813945138826966, -0.02449813485145569, -0.025206569582223892, -0.02327551320195198, 0.028817301616072655, 0.03071407973766327, -0.009015404619276524, -0.015139938332140446, 0.03395916894078255, 0.03142251446843147, -0.011260686442255974, -0.010403708554804325, -0.0062787896022200584, -0.005930285435169935, -0.0416148342192173, -0.052972644567489624, -0.023298365995287895, -0.001106929499655962, 0.006438758689910173, -0.017630886286497116, 0.010163755156099796, -0.020533185452222824, 0.025320833548903465, 0.001502567552961409, -0.020681727677583694, -0.025320833548903465, -0.009009691886603832, -0.045088451355695724, 0.00694151921197772, 0.017139554023742676, 0.061839509755373, -0.016111180186271667, -0.03249659389257431, 0.001886779093183577, -0.011346383951604366, 0.022304272279143333, -0.0072557441890239716, 0.013917317613959312, 0.03649582341313362, -0.04876774176955223, -0.026166385039687157, 0.01239761058241129, 0.01863640733063221, 0.013003207743167877, -0.0018182209460064769, -0.022841311991214752, 0.0016639649402350187, 0.005016176030039787, 0.019401974976062775, -0.022247139364480972, -0.016385413706302643, -0.006895813625305891, -0.009255358949303627, 0.01250044722110033, 0.007884194143116474, 0.02080741710960865, -0.007152907084673643, -0.005593207664787769, -0.015242775902152061, 0.031879570335149765, 0.0006380912964232266, 0.004533411934971809, 0.030736932530999184, -0.024292459711432457, -0.02214430272579193, 0.01552843488752842, 0.02169867418706417, 0.018556423485279083, 0.008472652174532413, 0.014157271012663841, 0.01091789547353983, 0.03032558225095272, 0.014100139029324055, 0.05274411663413048, -0.03347926214337349, -0.016134032979607582, -0.016682498157024384, 0.01869354024529457, -1.3568813301390037e-05, -0.030942605808377266, 0.02470380999147892, -0.012614711187779903, 0.000553464749827981, -0.025366539135575294, 0.01109500415623188, -0.0009148236713372171, 0.003190813586115837, -0.009986646473407745, -0.03855256736278534, -0.03526177257299423, 0.08373243361711502, 0.001279753283597529, 0.0007834204006940126, -0.012523300014436245, -0.0010283731389790773, -0.019733339548110962, -0.00811272207647562, -0.014374371618032455, -0.018270764499902725, 0.023012707009911537, 0.046071119606494904, 0.000284230918623507, -0.016259722411632538, 0.01114070974290371, -0.008352675475180149, -0.014454356394708157, -0.01439722441136837, 0.012854664586484432, -0.018362173810601234, -0.02183579094707966, 0.00022138589702080935, -0.02110450342297554, 0.010443701408803463, 0.008672613650560379, 0.008364101871848106, -0.02913724072277546, -0.011174988932907581, 0.0024909484200179577, 0.0029565729200839996, -0.008929707109928131, -0.03041699342429638, -0.010946460999548435, -0.02277275361120701, 0.014545767568051815, -0.015185643918812275, -0.003190813586115837, -0.002029608702287078, 0.015151364728808403, -0.011803438887000084, 0.036952875554561615, -0.0023509752936661243, -0.022967001423239708, 0.008238411508500576, -0.011940555647015572, 0.003325073281303048, 0.023046985268592834, 0.00855835061520338, -0.0001888921542558819, -0.024246754124760628, -0.0002178151480620727, -0.0035250347573310137, -0.04604826495051384, -0.0191277414560318, 0.013825906440615654, -0.0019967579282820225, -0.005633199587464333, -0.0072728837840259075, -0.006067401729524136, 0.005441808141767979, -0.038872506469488144, 0.03514751046895981, -0.001034086337313056, 0.027697518467903137, 0.008512645028531551, 0.03245088830590248], [0.012696143239736557, -0.011601988226175308, 0.08382608741521835, 0.020059511065483093, -0.02054251730442047, 0.050547998398542404, 0.024445990100502968, -0.01284400187432766, 0.04794568195939064, 0.04400278255343437, -0.03201635926961899, 0.0892672911286354, 0.009285532869398594, 0.02990690805017948, -0.020266514271497726, -0.020177798345685005, -0.008028733544051647, 0.03465810418128967, -0.02801431529223919, -0.004287905525416136, 0.01813734695315361, 0.02454456128180027, -0.06462415307760239, -0.018255634233355522, -0.01688547618687153, -0.03262751176953316, 0.022691398859024048, -0.019556792452931404, 0.034204669296741486, -0.04790625348687172, 0.011523129418492317, -0.02693001739680767, 0.026476584374904633, -0.04601366072893143, 0.011325984261929989, 0.016510900110006332, -0.03213464841246605, -0.01982293836772442, 0.01753605529665947, 0.00701836496591568, -0.03266694024205208, 0.014647879637777805, -0.012646856717765331, -0.003201143117621541, -0.02740316651761532, 0.06012924760580063, -0.009127817116677761, -0.041163891553878784, -0.00469944579526782, 0.05161258205771446, 0.017881058156490326, 0.03503268212080002, 0.023657409474253654, -0.016560185700654984, 0.044791363179683685, 0.02982805110514164, 0.003036034293472767, -0.017703628167510033, 0.013622724451124668, -0.04755139350891113, -0.019192073494195938, -0.00938903447240591, -0.005889709107577801, -0.043569061905145645, 0.019675077870488167, 0.03793071210384369, 0.01977365091443062, -0.002617100952193141, -0.055910345166921616, -0.02805374376475811, 0.01634332723915577, 0.01643204130232334, 0.048734262585639954, 0.0192117877304554, 0.0151604562997818, 0.005495419260114431, -0.03739842027425766, 0.031247494742274284, 0.0446336455643177, 0.04968056082725525, -0.046486809849739075, -0.01933007501065731, 0.009531964547932148, 0.000794125022366643, 0.011572415940463543, -0.01688547618687153, -0.020779091864824295, -0.032390937209129333, -0.045225080102682114, 0.00553484819829464, -0.014687308110296726, 0.020641090348362923, -0.008718741126358509, 0.03219379112124443, 0.0091081028804183, -0.023874269798398018, 0.03154321387410164, -0.05531890690326691, 0.01576174981892109, 0.04621080681681633, -0.027600310742855072, 0.00657971715554595, -0.021271953359246254, 0.041873615235090256, 0.013021432794630527, -0.07597970962524414, -0.02681173011660576, 0.009901611134409904, -0.012597570195794106, 0.019556792452931404, 0.02231682278215885, 0.021153666079044342, -0.03505239635705948, 0.04916798323392868, -0.01691504754126072, 0.01923150196671486, 0.0017213230021297932, -0.005490490235388279, 0.0018260562792420387, -0.0033342160750180483, 0.014519735239446163, -0.013908585533499718, 0.0239334125071764, -0.03400752693414688, -0.011030266992747784, -0.03282465413212776, -0.048891980201005936, 0.02624000981450081, -0.019418790936470032, -0.045303937047719955, 0.03647183999419212, -0.031247494742274284, 0.042307332158088684, -0.03381038084626198, -0.004327334463596344, -0.04029645398259163, 0.019162502139806747, 0.020365087315440178, 0.00386897218413651, 0.010320545174181461, 0.02921690046787262, 0.012094850651919842, -0.002870925236493349, 0.04163704067468643, -0.05027199536561966, 0.029098613187670708, -0.00015548277588095516, 0.03170092776417732, 0.004936019890010357, -0.020167941227555275, -0.0026885659899562597, 0.011306270025670528, -0.006486073136329651, -0.003415538463741541, -0.0052884165197610855, 0.028329746797680855, 0.0204045157879591, 0.01458873599767685, 0.015101312659680843, -0.029670333489775658, -0.009768538177013397, -0.010281115770339966, 0.002890639705583453, 0.005593991372734308, 0.029414044693112373, 0.0055545624345541, -0.03095177747309208, 0.023203976452350616, -0.0305180586874485, -0.031819216907024384, -0.025431714951992035, -0.02562885917723179, -0.005342631600797176, -0.024840280413627625, -0.034756675362586975, -0.07917346060276031, -0.0033268232364207506, -0.022395681589841843, 0.024919137358665466, 0.022415395826101303, -0.012636999599635601, 0.002427348867058754, -0.010000184178352356, -0.019694793969392776, 0.004928627051413059, 0.03797014057636261, -0.0326077975332737, 0.004958198871463537, -0.022356251254677773, 0.0030729989521205425, 0.013356578536331654, -0.010576833039522171, -0.0029596404638141394, 0.0008280093315988779, -0.0181669183075428, 0.06344128400087357, -0.061824698001146317, -0.010320545174181461, -0.0017989488551393151, -0.030281484127044678, 0.05555548146367073, -0.05729036033153534, 0.0663590356707573, 0.011256983503699303, -0.022592825815081596, -0.027304593473672867, 0.018472494557499886, 0.006954292766749859, 0.06734475493431091, 0.014559163711965084, 0.026713157072663307, -0.003105035051703453, -0.015288600698113441, 0.009241175837814808, -0.0071662236005067825, -0.028546607121825218, -0.0011927277082577348, 0.05192801356315613, -0.0031370711512863636, 0.010695120319724083, 0.015387173742055893, 0.00731901079416275, 0.0007423744536936283, -0.05662006512284279, -0.06493958830833435, -0.0027600310277193785, -0.04755139350891113, -0.034796107560396194, 0.03568325936794281, -0.10038627684116364, -0.01994122378528118, 0.04203132912516594, 0.01640246994793415, 0.006461429875344038, -0.0007306689512915909, -0.02915775775909424, -0.037694137543439865, -0.037082988768815994, -0.01696433313190937, 0.010488118045032024, -0.016688330098986626, -0.007338725496083498, -0.02513599768280983, -0.028211461380124092, -0.033080942928791046, -0.005037056747823954, 0.0070134359411895275, -0.04983827471733093, 0.0562652051448822, 0.02046365849673748, 0.0029251400846987963, 0.01979336515069008, 0.05417546629905701, 0.003124749520793557, 0.019655363634228706, -0.036590125411748886, -0.000998663017526269, -0.02756088227033615, 0.03745756298303604, -0.010665548965334892, 0.008427952416241169, -0.004610730335116386, 0.013800155371427536, 0.02330254763364792, -0.023085689172148705, -0.027206020429730415, 0.016501042991876602, -0.01748676784336567, -0.020779091864824295, 0.005194772966206074, -0.006752219051122665, 0.00847723800688982, -0.03578183054924011, -0.03751670941710472, -0.06825162470340729, 0.028487464413046837, -0.013859299011528492, -0.017930345609784126, -0.0009413677616976202, -0.017437482252717018, -0.047038815915584564, -0.004423442762345076, -0.0007824195199646056, -0.02913804166018963, -0.008610310964286327, -0.012784858234226704, 0.036590125411748886, 0.03197693079710007, 0.03312037140130997, -0.01141470018774271, 0.03574240207672119, -0.014440877363085747, -0.001559910480864346, -0.02292797341942787, 0.027679169550538063, 0.0017903237603604794, -0.03546639904379845, -0.01762476935982704, 0.015081598423421383, -0.016116609796881676, 0.014411305077373981, 0.05066628381609917, 0.01111898198723793, 0.0038714364636689425, -0.026141436770558357, 0.001432998338714242, -0.032410651445388794, -0.012656713835895061, -0.03095177747309208, 0.001720090745948255, -0.004736410453915596, 0.05074514448642731, -0.003270143875852227, -0.0015180171467363834, -0.017900772392749786, 0.02915775775909424, 0.002686101710423827, 0.010350116528570652, 0.011759703978896141, 0.006643788889050484, 0.016234897077083588, 0.010074113495647907, 0.003499325131997466, -0.01703333482146263, 0.04751196503639221, -0.02454456128180027, -0.025293713435530663, 0.03317951783537865, -0.029098613187670708, 0.021193096414208412, -0.04928626865148544, 0.027718598023056984, -0.024406559765338898, -0.013465008698403835, -0.012794715352356434, 0.011020409874618053, -0.01262714248150587, -0.03448067232966423, 0.00029848996200598776, -0.04802454262971878, -0.03915301337838173, -0.04565880075097084, -0.013317150063812733, 0.014973168261349201, 0.020700233057141304, 0.021981677040457726, 0.034224387258291245, 0.03351466357707977, -0.03515096753835678, 0.036491554230451584, 0.04743310436606407, 0.040079593658447266, -0.0107739781960845, -0.014174731448292732, -0.055910345166921616, 0.020098941400647163, 0.013129862025380135, -0.01371144037693739, -0.024978281930088997, 0.01631375588476658, 0.02683144435286522, 0.00357571872882545, 0.014647879637777805, 0.08146034926176071, 0.015367458574473858, -0.010123400017619133, -0.012932716868817806, 0.04076960310339928, 0.0053475601598620415, -0.021311383694410324, 0.04904969409108162, 0.00011235729471081868, -0.03329780325293541, -0.06702932715415955, 0.05456975847482681, 0.0022684005089104176, -0.002742780838161707, 0.02980833500623703, -0.007190866861492395, -0.00021639752958435565, 0.028526892885565758, 0.033613234758377075, 0.04676281288266182, 0.021370526403188705, 0.034224387258291245, 0.01438173372298479, -0.025490857660770416, -0.015633605420589447, 0.01457887887954712, -0.0007245081360451877, 0.011306270025670528, -0.013859299011528492, -0.03343580663204193, 0.02974919229745865, -0.04372677952051163, 0.038857296109199524, 0.05882808938622475, 0.005155343562364578, -0.011187982745468616, -0.015919465571641922, -0.0027994601987302303, -0.04605308920145035, -0.02349969372153282, -0.047630250453948975, 0.028270604088902473, 0.03931072726845741, 0.009103174321353436, -0.015604033134877682, -0.005209558643400669, -0.02990690805017948, 0.056344062089920044, -0.012065278366208076, 0.01261728536337614, 0.03467781841754913, -0.015130884945392609, -0.010340259410440922, -0.026693442836403847, 0.015978608280420303, 0.00042355386540293694, -0.02685116045176983, 0.02109452337026596, 0.01582089252769947, 0.0036274695303291082, 0.05204629898071289, -0.0921061784029007, 0.012439854443073273, 0.003974937833845615, 0.019576506689190865, -0.06568873673677444, 0.00263188686221838, -0.06284984946250916, 0.022060533985495567, -0.0011489861644804478, 0.05831551551818848, -0.005416560918092728, -0.03998102247714996, 0.006826148368418217, -0.00849202461540699, 0.012213137932121754, -0.013593153096735477, -0.020739661529660225, 0.015663176774978638, 0.015367458574473858, 0.003634862368926406, -0.016047609969973564, 0.0087483124807477, 0.008930671960115433, 0.03325837478041649, -0.0038369360845535994, -0.03296265751123428, 0.03294294327497482, -0.010310687124729156, -0.05567377060651779, 0.013011574745178223, -0.05204629898071289, -0.008595525287091732, -0.005731993354856968, 0.00701836496591568, 0.015150599181652069, -0.03335694596171379, 0.013051004149019718, 0.0009179567568935454, 0.0820123553276062, 0.02103538066148758, -0.0050617000088095665, 0.013534009456634521, 0.02054251730442047, -0.0384235754609108, -0.006446644198149443, -0.026535727083683014, 0.016234897077083588, -0.013474865816533566, -0.004393870942294598, -0.035426970571279526, -0.011562558822333813, -0.03511153906583786, -0.014214159920811653, -0.00792523194104433, -0.0373787060379982, 0.010842978954315186, 0.015939179807901382, 0.036511268466711044, -0.05070571228861809, -0.042859338223934174, -0.0020244335755705833, 0.03574240207672119, 0.04968056082725525, 0.029926622286438942, 0.03459896147251129, -0.052401162683963776, -0.01494359690696001, 0.0008347861585207283, 0.027600310742855072, -0.00386897218413651, -0.021508527919650078, -0.01406630128622055, -0.0675024762749672, 0.011641416698694229, 0.029591476544737816, 0.015554746612906456, -0.017772627994418144, -0.05188858509063721, 0.03495382145047188, -0.02750173769891262, -0.0076344432309269905, 0.020138369873166084, 0.018521780148148537, 0.03990216553211212, -0.00018528556392993778, 0.06028696522116661, -0.013869156129658222, 0.01639261282980442, 0.024169987067580223, 0.034244101494550705, -0.031326353549957275, -0.010626119561493397, 0.0016067323740571737, 0.0053475601598620415, -0.040079593658447266, -0.03038005717098713, -0.012489140965044498, -0.01807820424437523, 0.013987443409860134, -0.015446316450834274, -0.018442921340465546, -0.01692490465939045, -0.006274142302572727, -0.04494907706975937, 0.012715857475996017, -0.0263188686221838, -0.0170234777033329, -0.029000040143728256, -0.0018482351442798972, -0.018275348469614983, -0.03038005717098713, -0.0011243430199101567, 0.01984265260398388, -0.005495419260114431, -0.037102703005075455, 0.02988719381392002, -0.028822610154747963, -0.01639261282980442, 0.015002740547060966, 0.01872878149151802, -0.0035387540701776743, -0.003854186274111271, -0.003329287515953183, 0.026555441319942474, 0.022021105512976646, -0.029552046209573746, 0.001388640608638525, 0.01371144037693739, 0.0004706838808488101, 0.01547588873654604, 0.005692563951015472, -0.012025849893689156, 0.02407141402363777, 0.015426602214574814, 0.02275054156780243, 0.006382571998983622, 0.007003578823059797, 0.0034525031223893166, -0.04333248734474182, 0.022632254287600517, -0.005608777515590191, 0.01936950348317623, -0.005810851231217384, -0.04751196503639221, -0.025412000715732574, -0.007659086026251316, 0.02330254763364792, 0.01194699201732874, -0.005584134254604578, 0.01987222395837307, 0.027127163484692574, 0.017358623445034027, 0.007190866861492395, -0.04912855476140976, 0.011513272300362587, -0.0005883548292331398, 0.004497372079640627, 0.031168635934591293, -0.021804245188832283, -0.046447381377220154, -0.02166624367237091, 0.052874308079481125, -0.02624000981450081, -0.034697532653808594, -0.027639739215373993, 0.0316614992916584, -0.013918442651629448, 0.0038960794918239117, -0.0013775512343272567, -0.008915886282920837, -0.00408336753025651, 0.045264508575201035, 0.006313571240752935, -0.0001691135112196207, -0.004191797226667404, 0.009674894623458385, 0.001086146105080843, -0.0005834262119606137, -0.03231207653880119, 0.06131212040781975, -0.018620353192090988, -0.030123768374323845, 0.0024790994357317686, -0.010941551998257637, 0.009541821666061878, 0.010399403050541878, 0.029966052621603012, -0.015998322516679764, -0.06876420229673386, -0.0016843582270666957, 0.01632361300289631, -0.021193096414208412, -0.03144463896751404, -0.01863021031022072, -0.020798806101083755, -0.04554051160812378, -0.04668395593762398, 0.02509656921029091, 0.008408237248659134, -0.016589758917689323, 0.001861788798123598, -0.0037777924444526434, -0.002693494549021125, -0.010892265476286411, -0.006717718672007322, -0.004334727302193642, -0.016826331615447998, 0.017782485112547874, -0.01981307938694954, -0.012331424281001091, -0.02811288833618164, -0.00029263721080496907, -0.004926162771880627, -0.016698187217116356, -0.0044480860233306885, 0.02103538066148758, 0.015998322516679764, 0.03256836533546448, 0.014184588566422462, -0.05736921727657318, 0.024978281930088997, 0.017752913758158684, -0.010685263201594353, 0.009359462186694145, 0.024150272831320763, 0.02117338217794895, 0.022435110062360764, 0.028467748314142227, -0.003590504638850689, -0.0385221466422081, 0.007092294283211231, -0.005000092089176178, -0.017407910898327827, 0.0036422552075237036, -0.004489979241043329, 0.010586691088974476, -0.02691030316054821, 0.01198642048984766, -0.008013946935534477, 0.06817276775836945, 0.06284984946250916, 0.00813223421573639, 0.0170234777033329, 0.04226790368556976, 0.012015992775559425, -0.01805849000811577, -0.0337512381374836, 0.06269213557243347, 0.015949036926031113, 0.009305248036980629, -0.03103063441812992, 0.0031074993312358856, -0.0003332984051667154, 0.02627943828701973, -0.0011335841845721006, 0.057053785771131516, -0.038344718515872955, -0.00481280405074358, -0.011690703220665455, 0.01985250972211361, 0.02693001739680767, -0.02292797341942787, 0.003760542254894972, -0.021469099447131157, 0.011897705495357513, 0.017693771049380302, 0.01865978166460991, 0.015239314176142216, -0.021804245188832283, -0.004852232988923788, 0.02866489440202713, 0.03408638387918472, -0.022395681589841843, 0.00998539850115776, -0.025037424638867378, -0.03041948564350605, 0.025372572243213654, -0.014086015522480011, -0.02054251730442047, -0.07105108350515366, -0.03452010452747345, -0.035959262400865555, -0.015121027827262878, -0.0021217737812548876, 0.03511153906583786, 0.011523129418492317, -0.020020082592964172, -0.0034623604733496904, -0.010172685608267784, -0.034125812351703644, -0.024820566177368164, 0.03639298304915428, -0.013938156887888908, -0.014450734481215477, 0.019399074837565422, 0.003962615970522165, -0.008181520737707615, 0.03670841455459595, -0.0033908954355865717, 0.0038221501745283604, 0.01195684913545847, -0.03312037140130997, -0.011010552756488323, 0.013908585533499718, 0.009359462186694145, 0.009867111220955849, 0.03576211631298065, -0.026180867105722427, -0.011148554272949696, 0.010049470700323582, -0.03142492473125458, 0.009418605826795101, -0.009891754016280174, 0.029492903500795364, -0.008004089817404747, 0.004741339012980461, 0.0050912718288600445, -0.04747253283858299, 0.006471286993473768, -0.042938198894262314, 0.001554981805384159, 0.008270235732197762, 0.0029941408429294825, -0.008940529078245163, 0.05098171532154083, 0.0012346210423856974, 0.013297435827553272, 0.001520481426268816, -0.0239334125071764, -0.0016510899877175689, 0.024209415540099144, 0.006909934803843498, 0.023677123710513115, -0.023125117644667625, -0.0016252147033810616, 0.027146877720952034, -0.03875872120261192, 0.001949272002093494, 0.00845752377063036, 0.01634332723915577, 0.018393635749816895, -0.005342631600797176, -0.0006592038553208113, -0.008408237248659134, 0.0015414280351251364, -0.010596548207104206, -0.016619330272078514, -0.01863021031022072, 0.009655180387198925, 0.04313534125685692, -0.008679311722517014, -0.048182256519794464, -0.011513272300362587, -0.021488813683390617, -0.011217555031180382, -0.04435764253139496, 0.004958198871463537, -0.005948852747678757, -0.044239357113838196, 0.03276551142334938, 0.016747474670410156, -0.004773375112563372, -0.018561208620667458, 0.0010491814464330673, 0.033159803599119186, 0.03390895202755928, -0.04262276738882065, -0.0008545006858184934, -0.01920193061232567, -0.007121866103261709, -0.041163891553878784, -0.023696837946772575, 0.006806433666497469, -0.027068018913269043, -0.01823591999709606, 0.016865761950612068, 0.006840934045612812, 0.0169741902500391, -0.03621555119752884, -0.010931694880127907, 0.09533935785293579, 0.0008649740484543145, -0.013110147789120674, -0.017969774082303047, -0.006762076169252396, -0.03235150873661041, 0.020266514271497726, -0.01166113093495369, 0.019704651087522507, -0.00793508905917406, 0.0007251242641359568, -0.01577160693705082, -0.037792712450027466, 0.00900952983647585, 0.009226389229297638, -0.012469425797462463, 0.019714508205652237, 0.0033342160750180483, 0.010803550481796265, -0.002508671022951603, 0.014214159920811653, -0.01928078942000866, -0.021331097930669785, 0.028467748314142227, 0.001013448927551508, 0.017812058329582214, -0.011059839278459549, -0.014825309626758099, -0.004480121657252312, 0.010902122594416142, 0.015633605420589447, 0.002543171402066946, -0.004876876249909401, -0.019487790763378143, 0.028842324391007423, 0.013346721418201923, 0.058236654847860336, -0.02683144435286522, -0.0107739781960845, -0.007723158225417137, -0.018600638955831528, 0.025510573759675026, 0.0026885659899562597, 0.03217407688498497, -0.04266219586133957, 0.018856925889849663, -0.003829543013125658, 0.0033120373263955116, -0.026161151006817818, -0.008777884766459465, -0.02342083491384983, -0.04207076132297516, 0.010359973646700382, 0.011779418215155602, -0.01979336515069008, -0.03578183054924011, 0.008294879458844662, 0.014253589324653149, -0.007678800728172064, 0.009487606585025787, 0.028960611671209335, -0.01199627760797739, 0.027856599539518356, 0.028507178649306297, 0.0012025849428027868, -0.0016843582270666957, 0.028881754726171494, 0.02042423002421856, 0.02042423002421856, -0.027836885303258896, -0.03148406744003296, -0.03637326508760452, -0.00011566871398827061, -0.011059839278459549, 0.00814209133386612, 0.03233179450035095, 0.0071662236005067825, 0.03162207081913948, 0.032489508390426636, -0.009793181903660297, -0.0019850044045597315, -0.034165240824222565, 0.010014969855546951, 0.04155818372964859, 0.028507178649306297, 0.016658758744597435, 0.012341281399130821, -0.026693442836403847, 0.020098941400647163, 0.016491185873746872, 0.006525502074509859, -0.0009204210946336389, -0.029059184715151787, -0.013110147789120674, 0.015929322689771652, 0.018541494384407997, -0.06158812344074249, -0.0018790389876812696, -0.014263446442782879, -0.00227086478844285, -0.004871947690844536, 0.008832099847495556, -0.0316614992916584, -0.01458873599767685, 0.004075974691659212, 0.04613194987177849, 0.03645212575793266, -0.03662955388426781, -0.01228213869035244, -0.02334197796881199, 0.03570297360420227, 0.012686286121606827, 0.01021211501210928, -0.0011613076785579324, 0.006456501316279173, 0.030833490192890167, 0.030656060203909874, 0.009172175079584122, 0.00026629987405613065, 0.0123018529266119, 0.00453187245875597, 0.013060861267149448, 0.02113395184278488, 0.0010799854062497616, 0.017703628167510033, -0.04676281288266182, -0.009393963031470776, 0.007668943610042334, 0.03791099786758423, 0.03138549625873566, -0.016846047714352608, 0.01979336515069008, -0.00961575098335743, 0.0005590911023318768, -0.003834471805021167, -0.026575155556201935, -0.04088788852095604, 0.05011427775025368, 0.008078019134700298, -0.037772998213768005, -0.020305942744016647, 0.02052280306816101, 0.007530942093580961, -0.008886313997209072, -0.0017016084166243672, -0.012666570954024792, 0.038246143609285355, -0.017200907692313194, 0.01641232706606388, 0.006357928737998009, -0.002334936987608671, 0.008349093608558178, 0.002353419316932559, -0.00013907969696447253, -0.005391917657107115, 0.014174731448292732, -0.008595525287091732, 0.03684641420841217, -0.017723342403769493, -0.021232524886727333, 0.031779784709215164, 0.0373787060379982, -0.009788253344595432, 0.007067651022225618, -0.0067275757901370525, 0.0019123072270303965, -0.025964006781578064, -0.010133257135748863, 0.038305290043354034, -0.008575811050832272, -0.014815452508628368, 0.032430365681648254, -0.010251544415950775, -0.013672010973095894, -0.0003450038784649223, 0.016717903316020966, -0.02156767062842846, 0.029059184715151787, 0.01639261282980442, 2.0041799871250987e-05, -0.0056974925100803375, 0.0326077975332737, 0.04262276738882065, -0.00786115974187851, -0.0012155226431787014, -0.051849156618118286, 0.061706408858299255, 0.00203552283346653, 0.013228435069322586, 0.008472309447824955, 0.011808990500867367, 0.02391369827091694, 0.03860100731253624, 0.027107447385787964, 0.003366252174600959, 0.01818663254380226, 0.02280968613922596, 0.022099962458014488, 0.010626119561493397, 0.01982293836772442, 0.019123071804642677, 0.0256485752761364, -0.015929322689771652, -0.010350116528570652, -0.003095177700743079, -0.007402797695249319, 0.011345699429512024, -0.052361734211444855, -0.010911979712545872, 0.03970501944422722, -0.015209742821753025, 0.00212547043338418, 0.0031789643689990044, -0.04617137834429741, -0.03625497967004776, 0.0005467695300467312, -0.032509222626686096, 0.02511628344655037, 0.021409954875707626, 0.04853711649775505, 0.043095912784338, 0.007900589145720005, 0.0131594343110919, 0.006372714415192604, 0.026614585891366005, -0.010409260168671608, 0.021390240639448166, 0.0001627987076062709, 0.03353437781333923, 0.0181669183075428, -0.009246104396879673, 0.03940930217504501, -0.01863021031022072, -0.01696433313190937, -0.024406559765338898, -0.004322405904531479, -0.014509878121316433, -0.03286408260464668, -0.04837940260767937, 0.031286925077438354, 0.02282940037548542, 0.022691398859024048, -0.016826331615447998, -0.020877663046121597, 0.007304225116968155, 0.013208719901740551, -0.017683913931250572, 0.01808806136250496, -0.04388449341058731, 0.020365087315440178, -0.004051331430673599, -0.02700887620449066, -0.02229710854589939, -0.00597349600866437, 0.023558836430311203, 0.016491185873746872, -0.0031592498999089003, -0.0044480860233306885, -0.002071255585178733, -0.030754631385207176, 0.004381549544632435, -0.019172359257936478, -0.02862546592950821, 0.0008298575412482023, 0.024268558248877525, 0.030025195330381393, -0.03923187032341957, 0.034263815730810165, 0.05401775240898132, 0.024288274347782135, 0.02054251730442047, 0.008078019134700298, 0.023716552183032036, -0.014805595390498638, -0.014135302044451237, 0.05681721121072769, -0.054609186947345734, 0.0034278600942343473, 0.00032220897264778614, -0.004021759610623121, -0.03211493417620659, 0.0074816555716097355, 0.005007484927773476, -0.01627432554960251, -0.0009783324785530567, -0.0007639371906407177, -0.02815231680870056, 0.042977627366781235, 0.019606078043580055, 0.03150378167629242, -0.01572231948375702, -0.0030237126629799604, 0.04384506493806839, 0.01636304147541523, 0.007535870652645826, 0.01589975133538246, -0.005416560918092728, 0.027620024979114532, 0.0180683471262455, -0.026437154039740562, 0.04431821405887604, -0.023125117644667625, -0.01461830735206604, 0.027659453451633453, 0.020581945776939392, 0.00226100767031312, -0.008151949383318424, 0.005608777515590191, 0.027896028012037277, -0.046368520706892014, -0.007930160500109196, 0.01993136666715145, -0.02117338217794895, 0.020059511065483093, -0.019073786213994026, 0.0034327886532992125, -0.030537772923707962, 0.006737432908266783, -0.0675024762749672, -0.01589975133538246, -0.02152824215590954, 0.028428319841623306, 0.006081925705075264, 0.027600310742855072, 0.02868460863828659, -0.03321894630789757, 0.029473189264535904, -0.045934803783893585, -0.037122417241334915, -0.0025702789425849915, -0.0023755982983857393, 0.008570882491767406, 0.01925121620297432, -0.03262751176953316, -0.00043341112905181944, 0.007274653296917677, -0.0025702789425849915, -0.02231682278215885, -0.017821915447711945, -0.015022454783320427, 0.009172175079584122, -0.004361834842711687, 0.028526892885565758, 0.024899423122406006, 0.03761528059840202, 0.0222182497382164, 0.02389398403465748, 0.026062579825520515, -0.024110842496156693, 0.007619657088071108, 0.03148406744003296, 0.0046526240184903145, -0.020798806101083755, -0.029985766857862473, 0.0107739781960845, 0.04865540564060211, 0.00670293252915144, 0.004369227681308985, -7.262023427756503e-05, 0.009122888557612896, -0.01645175740122795, 0.005608777515590191, 0.00702822208404541, -0.026437154039740562, -0.059261810034513474, 0.00526377372443676, -0.0071957954205572605, -0.011316127143800259, 0.004588551819324493, -0.013021432794630527, 0.017989488318562508, 0.004632909316569567, 0.019448362290859222, 0.02976890653371811, 0.018866783007979393, -0.0002593690005596727, 0.002081112703308463, 0.013445294462144375, -0.013524152338504791, -0.02750173769891262, -0.01870906725525856, -0.012567998841404915, 0.0384235754609108, 0.009788253344595432, 0.022336537018418312, -0.01877806894481182, -0.005436275620013475, -0.03515096753835678, 0.03400752693414688, 0.01020225789397955, -0.03233179450035095, 0.004669873975217342, -0.024445990100502968, 0.056501779705286026, 0.007999161258339882, 0.010665548965334892, -0.02349969372153282, -0.011641416698694229, 0.006624074652791023, 0.013662153854966164, -0.0163531843572855, 0.008989815600216389, -0.035939548164606094, 0.017200907692313194, -0.0492074117064476, -0.017171336337924004, 0.017181193456053734, 0.0222182497382164, 0.00813223421573639, 0.0011261912295594811, -0.04621080681681633, 0.011049981229007244, -0.020325656980276108, -0.00642200093716383, -0.0002479715330991894, 0.0009955826681107283, 0.008570882491767406, -0.007585156708955765, 0.04041473940014839, -0.019665220752358437, 0.020739661529660225, -0.021153666079044342, 0.024110842496156693, -0.0703807920217514, 0.009980469942092896, -0.0386207215487957, 0.01317914854735136, -0.013898728415369987, -0.017378337681293488, -0.016116609796881676, 0.03806871548295021, -0.00013438209134619683, -0.0010362438624724746, 0.010823264718055725, -0.01920193061232567, 0.02215910702943802, -0.0003610219282563776, 0.014026871882379055, 0.007521084509789944, 0.0022647040896117687, -0.02334197796881199, 0.0005985201569274068, 0.005963638424873352, 0.010044542141258717, 0.001160075538791716, -0.002826567506417632, -0.00644171517342329, -0.02340112067759037, -0.006974007003009319, -0.013011574745178223, -0.0008662061882205307, 0.027836885303258896, 0.0006314803031273186, 0.005352488718926907, -0.009029245004057884, 0.016106752678751945, -0.010813407599925995, -0.012272280640900135, 0.004943412728607655, 0.02056223154067993, -0.017950059846043587, -0.0031567856203764677, -0.012213137932121754, 0.007397869136184454, -0.04053302854299545, 0.023144831880927086, 0.02742288075387478, -0.01107955351471901, 0.01404658704996109, -0.01695447601377964, 0.06387500464916229, -0.011040124110877514, 0.004216440487653017, 0.010793693363666534, 0.0059389956295490265, -0.0018938248977065086, 0.013317150063812733, -0.005426418036222458, 0.029966052621603012, -0.05039028078317642, 0.028862038627266884, 0.023105403408408165, 0.007284510415047407, 0.01744733937084675, 0.01691504754126072, -0.010143114253878593, -0.01576174981892109, -0.002713209018111229, -0.03562411665916443, 0.00467726681381464, -0.006357928737998009, 0.011365413665771484, -0.0314643532037735, 0.03676755726337433, 0.03497353568673134, 0.0038714364636689425, 0.03381038084626198, -0.0037728638853877783, 0.002007183386012912, -0.024997996166348457, -0.047038815915584564, 0.0010688959155231714, -0.023696837946772575, 0.033652663230895996, 0.009674894623458385, -0.001432998338714242, -0.004268190823495388, -9.811048221308738e-05, -0.0038369360845535994, 0.023736266419291496, 0.017920486629009247, 0.006495930254459381, -0.023657409474253654, -0.02044394426047802, -0.025392286479473114, 0.01689533330500126, 0.04439707100391388, -0.04798511043190956, 0.016658758744597435, -0.0017533589852973819, 0.025392286479473114, -0.05516119301319122, -0.028349462896585464, 0.026496298611164093, 0.014322590082883835, -0.04743310436606407, 0.025471143424510956, 0.010488118045032024, 0.009507321752607822, 0.028507178649306297, -0.010409260168671608, 0.01228213869035244, -0.004275583662092686, 0.006624074652791023, -0.004453014582395554, 0.032706368714571, -0.04031616821885109, 0.001895057037472725, -0.014716880396008492, -0.022632254287600517, 0.03641269728541374, -0.0090834591537714, 0.006762076169252396, -0.016185611486434937, 0.013593153096735477, -0.005382060538977385, -0.009211603552103043, 0.0019135393667966127, -0.014549306593835354, 0.008452595211565495, 0.008506810292601585, 0.009482678025960922, 0.023795410990715027, 0.008354023098945618, -0.037772998213768005, 0.023834839463233948, 0.029946336522698402, 0.0037654710467904806, -0.02744259499013424, -0.024662848562002182, -0.013218577019870281, 0.011059839278459549, -0.02347997948527336, -0.013632582500576973, -0.01922164484858513, 0.036491554230451584, 0.014204302802681923, 0.014095872640609741, 0.01569274812936783, 0.008289950899779797, -0.0024827958550304174, 0.01871892437338829, -0.005524990614503622, -0.011148554272949696, 0.016087038442492485, 0.008590596728026867, 0.00701836496591568, -0.010616262443363667, -0.010162828490138054, -0.03676755726337433, -0.01694461889564991, 0.009512250311672688, 0.017644483596086502, -0.004610730335116386, -0.01199627760797739, 0.010133257135748863, -0.021961960941553116, -0.0030976419802755117, -0.05161258205771446, -0.013228435069322586, -0.03998102247714996, -0.0281326025724411, -0.038384146988391876, 0.018334493041038513, -0.00014516345981974155, -0.03231207653880119, -0.018403492867946625, 0.0006616681930609047, -0.0011508343741297722, 0.006353000178933144, 0.014795738272368908, -0.022119678556919098, -0.0210748091340065, 0.024367131292819977, -0.022336537018418312, -0.008048447780311108, 0.024938851594924927, 0.048773691058158875, 0.027028590440750122, -0.047669678926467896, 0.006712790112942457, -0.036511268466711044, 0.009620679542422295, -0.049365125596523285, 0.007910446263849735, -0.0014687308575958014, -0.05066628381609917, -0.021311383694410324, -0.020286228507757187, 0.01340586505830288, 0.01165127381682396, 0.004305155482143164, -0.020079225301742554, 0.0217451024800539, 0.013898728415369987, -0.018482351675629616, -0.013238292187452316, 0.0046526240184903145, -0.00703807920217514, 0.04518565163016319, 0.026062579825520515, -0.006624074652791023, 0.021331097930669785, 0.03262751176953316, -0.032489508390426636, 0.02399255521595478, -0.02515571191906929, -0.006865577306598425, -0.012745428830385208, -0.023046258836984634, -0.0050617000088095665, 0.02397284097969532, -0.040040165185928345, 0.045264508575201035, -0.0007368297083303332, -0.006357928737998009, -0.024367131292819977, 0.00999525561928749, 0.040651313960552216, 0.00785130262374878, 0.01491402555257082, -0.01373115461319685, 0.0035880403593182564, -0.022553397342562675, 0.034184955060482025, 0.01461830735206604, 0.0004645230947062373, -0.017762770876288414, 0.0037802569568157196, -0.007526013534516096, 0.016530614346265793, 0.044673074036836624, 0.01863021031022072, 0.02168595790863037, -0.007866088300943375, -0.014155016280710697, -0.026042865589261055, 0.03513125330209732, 0.01023182924836874, 0.0017114656511694193, -0.034697532653808594, -0.03038005717098713, -0.021804245188832283, 0.03103063441812992, -0.021508527919650078, 0.013672010973095894, -0.013524152338504791, -0.002211721381172538, -0.012351139448583126, -0.020365087315440178, 0.01758534088730812, -0.005963638424873352, -0.030912349000573158, 6.268597644520923e-05, -0.015111169777810574, -0.038896724581718445, 0.00670293252915144, 0.008097734302282333, -0.01166113093495369, 0.02758059650659561, 0.022435110062360764, -0.043608490377664566, 0.0014847489073872566, -0.006934578064829111, 0.01318900566548109, 0.005569348577409983, -0.01231171004474163, 0.007008507382124662, -0.010961266234517097, 0.01758534088730812, 0.0043593705631792545, 0.002967033302411437, -0.027797456830739975, 0.008097734302282333, 0.01142455730587244, -0.012686286121606827, 0.03463838994503021, 0.026161151006817818, -0.04191304370760918, -0.03107006475329399, -0.03292322903871536, 0.034244101494550705, 0.019753936678171158, -0.023815125226974487, 0.001832217094488442, -0.018295062705874443, 0.005810851231217384, 0.011049981229007244, -0.04317477345466614, -0.020059511065483093, 0.014992883428931236, -0.015544889494776726, 0.015367458574473858, -0.010793693363666534, 0.011887848377227783, 0.008127305656671524, -0.00936932023614645, 0.028369177132844925, -0.014500020071864128, 0.014174731448292732, -0.03802928701043129, 0.06202184036374092], [0.04533984512090683, 0.00289202481508255, 0.06496787071228027, 0.017696306109428406, -0.05133482813835144, 0.0389229916036129, -0.017007993534207344, 0.052977900952100754, 0.038700953125953674, 0.04827072471380234, -0.03967791423201561, 0.01710790954530239, -0.038700953125953674, 0.018218090757727623, -0.02024972438812256, 0.029153387993574142, 0.009603076614439487, 0.01723003014922142, -0.029064573347568512, -0.0026033774483948946, -0.005426016170531511, 0.04278642684221268, -0.04127657786011696, -0.018628858029842377, 0.027887780219316483, -0.009153452701866627, 0.013422103598713875, -0.046139176934957504, 0.05772947892546654, -0.06923096626996994, 0.03132934495806694, -0.02280314452946186, 0.0377684012055397, -0.014721017330884933, -0.0066832974553108215, -0.04545086249709129, -0.02280314452946186, 0.004573951009660959, -0.018295804038643837, 0.02389112301170826, -0.01431025005877018, 0.005364955868571997, 0.021681860089302063, -0.010813175700604916, -0.02232576534152031, 0.06425735354423523, 0.017696306109428406, -0.0221148319542408, 0.010463467799127102, 0.013788464479148388, 0.05422130227088928, 0.06012747436761856, 0.025223342701792717, -0.028664907440543175, 0.04862598329782486, 0.012900318019092083, 0.027754558250308037, 0.03319445252418518, 0.00724393967539072, -0.013333288952708244, -0.03648059070110321, -0.03819027170538902, 0.0231361985206604, -0.0358588881790638, 0.0033638523891568184, 0.014609999023377895, -0.001346789882518351, 0.03750195726752281, -0.05608640983700752, -0.005314997863024473, 0.0278655756264925, 0.005240060389041901, 0.027066243812441826, -0.003882862627506256, -0.002144039608538151, -0.000702537246979773, -0.03708009049296379, -0.006761010270565748, 0.045228827744722366, -0.0028698211535811424, -0.06980825960636139, 0.002316117752343416, -0.03295021131634712, 0.02039404958486557, 0.028132019564509392, -0.0036719278432428837, -0.01292252168059349, -0.002649172442033887, -0.0014723793137818575, 0.03494853898882866, 0.030929679051041603, -0.039566896855831146, -0.02012760564684868, 0.023935530334711075, 0.02160414680838585, -0.016042133793234825, 0.015764588490128517, 0.01485423929989338, -0.036258552223443985, 0.05843999609351158, -0.036014314740896225, -0.0025395420379936695, 0.00924781896173954, 0.03810145705938339, -0.002020531799644232, -0.07269473373889923, -0.009653034619987011, 0.041232168674468994, 0.042608797550201416, 0.022192543372511864, 0.005839558783918619, -0.01666383631527424, -0.026799799874424934, 0.03299461677670479, -0.03945587947964668, 0.0035886643454432487, -0.005722989793866873, 0.006411302834749222, 0.031573586165905, -0.03399378061294556, -0.0034942987840622663, -0.01418812945485115, -0.010541181080043316, -0.0674990862607956, 0.0017429862637072802, -0.005861762445420027, -0.05546470731496811, 0.04818191006779671, -0.030596623197197914, -0.029353220015764236, 0.050624310970306396, -0.020616084337234497, 0.07491510361433029, 0.011013008654117584, 0.006455710157752037, -0.008015516214072704, 0.009697441942989826, 0.013699649833142757, 0.016286375001072884, 0.024201974272727966, 0.04343033209443092, 0.024090955033898354, -0.016985788941383362, 0.0316401943564415, -0.02913118340075016, 0.032284099608659744, 0.0007396589498966932, 0.04955853894352913, -0.0163307823240757, -0.016952482983469963, -0.006877579260617495, -0.004929209593683481, -0.00959752593189478, -0.0284428708255291, 0.03903400897979736, 0.00652232114225626, -0.011185086332261562, 0.0379016250371933, -0.0027324361726641655, -0.010557834059000015, -0.026910819113254547, -0.012089884839951992, 0.012700485065579414, 0.0001706038019619882, 0.020327437669038773, 0.037790603935718536, -0.05617522448301315, -0.0029059022199362516, -0.04263100028038025, -0.028176426887512207, -0.03510396555066109, -0.02090473286807537, 0.002830964745953679, 0.0013558100908994675, -0.06123765558004379, -0.043963219970464706, 0.017030196264386177, 0.002513175131753087, 0.019816754385828972, -0.00985286757349968, -0.038123659789562225, 0.038367900997400284, -0.02693302184343338, 0.025445377454161644, -0.030463403090834618, 0.0525338277220726, -0.01084648072719574, -0.04693850874900818, -0.04227574169635773, 0.04556187987327576, 0.020493965595960617, -0.003721886081621051, 0.016430698335170746, -0.0014529511099681258, -0.009542017243802547, 0.0058007026091217995, -0.030330181121826172, -0.005734091624617577, 0.01084648072719574, -0.039811138063669205, 0.03446006029844284, -0.03215087950229645, 0.042608797550201416, -0.029686274006962776, 0.005456545855849981, -0.016586123034358025, 0.015464839525520802, -0.011545895598828793, 0.05453215539455414, -0.006533422973006964, 0.03641397878527641, -0.0012551998952403665, -0.06456819921731949, 0.007099615875631571, -0.006239224690943956, 0.01084648072719574, 0.02804320491850376, 0.008337468840181828, 0.00569523498415947, 0.011956663802266121, -0.021259991452097893, 0.0004079919890500605, 0.020593881607055664, -0.02768794633448124, -0.06625568121671677, -0.06310275942087173, -0.013411002233624458, -0.021371008828282356, 0.01879538595676422, -0.09725196659564972, -0.014454573392868042, 0.02457943558692932, -0.013744057156145573, -0.013688547536730766, -0.027643539011478424, 0.02178177610039711, -0.04482915997505188, -0.037546366453170776, -0.02331382781267166, 0.00924781896173954, 0.013655242510139942, 0.012689383700489998, 0.014865340664982796, -0.006977495737373829, -0.012356328777968884, 0.0063668955117464066, -0.013288882561028004, 0.001959471730515361, 0.021071260794997215, 0.011967765167355537, 0.017540879547595978, -0.00943099893629551, 0.08366333693265915, -0.026466745883226395, 0.03612533211708069, 0.007066310383379459, -0.01710790954530239, -0.024956898763775826, -0.003760742489248514, 0.02069379761815071, 0.012800402007997036, -0.0019206153228878975, -0.01194556150585413, 0.01708570495247841, -0.027088448405265808, -0.03823467716574669, 0.022281358018517494, 0.0037551915738731623, -0.0019344926113262773, 0.031706806272268295, -0.02693302184343338, 0.0013301371363922954, 0.01257836539298296, -0.027399299666285515, -0.05857321619987488, 0.004041063599288464, 0.009764052927494049, -0.011623608879745007, -0.002261996502056718, -0.01503186859190464, -0.0695418193936348, -0.01865106262266636, 0.022636616602540016, -0.08237552642822266, -0.005673031322658062, -0.007588095963001251, 0.0389896035194397, 0.013422103598713875, 0.004657214507460594, 0.005922822747379541, 0.07420458644628525, 0.018184786662459373, 0.037790603935718536, -0.005373282358050346, 0.023669086396694183, 0.003141816006973386, -0.04738258197903633, 0.041498612612485886, 0.030951881781220436, -0.04145420715212822, 0.07269473373889923, 0.0009290837915614247, 0.05444334074854851, -0.03394937515258789, -0.0800219401717186, 0.014787628315389156, -0.01503186859190464, -0.007588095963001251, -0.019594717770814896, 0.04991379752755165, -0.013821769505739212, 0.034992944449186325, -0.04671647027134895, -0.019061829894781113, -0.03874536231160164, -0.007016351912170649, -0.02515673078596592, 0.013089049607515335, 0.01985006034374237, 0.01228971779346466, 0.049514129757881165, 0.01982785575091839, -0.013977195136249065, -0.020860325545072556, 0.027066243812441826, -0.017818426713347435, -0.02651115320622921, 0.0267775971442461, 0.007993312552571297, 0.000613028765656054, -0.021282194182276726, 0.05102397873997688, 0.012167598120868206, 0.012078783474862576, -0.03248393535614014, -0.008703828789293766, -0.05284467712044716, 0.008803745731711388, -0.009858419187366962, -0.005464872345328331, -0.019228357821702957, -0.031040696427226067, 0.016408493742346764, 0.014765424653887749, -0.015442635864019394, 0.05817355215549469, 0.06820960342884064, 0.028331851586699486, 0.010113760828971863, 0.03832349181175232, 0.05351078510284424, 0.04185387119650841, -0.029952717944979668, 0.009764052927494049, -0.02109346352517605, -0.054176896810531616, 0.019650226458907127, 0.0074548739939928055, -0.036524996161460876, 0.0347042977809906, -0.013322187587618828, 0.03197325021028519, -0.005403812509030104, 0.03954469412565231, 0.012545060366392136, -0.008837050758302212, -0.04955853894352913, 0.03072984516620636, 0.015675773844122887, 0.004621133673936129, 0.03343869000673294, 0.0015903360908851027, 9.16767749004066e-05, -0.0504910908639431, 0.06079358235001564, -0.04818191006779671, 0.03201765567064285, 0.031107308343052864, -0.032217491418123245, -0.027288280427455902, -0.009841766208410263, 0.05031346157193184, 0.045473065227270126, 0.03248393535614014, -0.01671934500336647, 0.0009207574184983969, -0.05177890136837959, -0.007465975824743509, 0.004551747348159552, -0.011668016202747822, -0.008243103511631489, 0.014976358972489834, -0.03172900900244713, -0.0031751212663948536, 0.010191473178565502, 0.019905569031834602, 0.04460712522268295, -0.009919478558003902, -0.030596623197197914, -0.028820332139730453, -0.01641959697008133, -0.026377931237220764, -0.0010865909280255437, -0.03683584928512573, -0.006300284527242184, 0.0025478682946413755, -0.006128206383436918, 0.014354657381772995, -0.014876442961394787, 0.00041839995537884533, 0.011801238171756268, -0.030752049759030342, 0.01620866172015667, 0.0356590561568737, -0.010263635776937008, 0.01021367684006691, -0.00842073280364275, 0.04853716865181923, -0.033904965966939926, -0.03874536231160164, 0.007388263009488583, 0.015464839525520802, 0.006128206383436918, 0.020172012969851494, -0.021792879328131676, -0.0012038539862260222, 0.009381039999425411, -0.0026533356867730618, -0.009564220905303955, -0.02970847859978676, -0.029664071276783943, 0.010363551788032055, 0.012345227412879467, 0.028487278148531914, -0.025267748162150383, -0.04189828038215637, -0.02329162508249283, -0.01807376742362976, 0.01346651092171669, -0.03412700444459915, -0.0104967737570405, -0.01967243105173111, 0.006444608327001333, 0.01835131272673607, -0.021704064682126045, 0.018429026007652283, -0.011890052817761898, 0.07629172503948212, -0.006899782922118902, 0.007799030747264624, 0.00037850276567041874, -0.005065206903964281, -0.04938090965151787, -0.017518676817417145, -0.0022314663510769606, -0.05080194026231766, 0.0034859725274145603, 0.015564755536615849, 0.03756856918334961, -0.018873099237680435, 0.030463403090834618, 0.04380779340863228, 0.05169008672237396, 0.02762133628129959, 0.02548978477716446, 0.020616084337234497, 0.018961913883686066, 0.01647510565817356, -0.006711051799356937, -0.0242241770029068, 0.020593881607055664, -0.01250065304338932, -0.01566467247903347, 0.01147928461432457, 0.04434068128466606, -0.030352383852005005, 0.014288046397268772, -0.01912844181060791, 0.016308577731251717, -0.023025181144475937, 0.010074904188513756, 0.014165925793349743, -0.04578391835093498, -0.07344966381788254, 0.004659990314394236, -0.02870931476354599, 0.03983334079384804, -0.016985788941383362, -0.012345227412879467, -0.032639358192682266, -0.037279922515153885, 0.017341047525405884, 0.04618358239531517, -0.008370774798095226, 0.013499816879630089, 0.02069379761815071, -0.04920328035950661, -0.011745728552341461, 0.033549707382917404, -0.006677746307104826, -0.02693302184343338, -0.07686902582645416, 0.012378532439470291, -0.01708570495247841, 0.00816539116203785, -0.06421294063329697, -0.004668316338211298, -0.01747426949441433, -0.014110417105257511, 0.021470924839377403, -0.03217308223247528, -0.014665507711470127, 0.01647510565817356, 0.011989968828856945, 0.002091305796056986, -0.02380230836570263, 0.00011700280447257683, 0.013644140213727951, -0.03072984516620636, 0.022370172664523125, -0.002826801734045148, -0.0010255308588966727, -0.008803745731711388, -0.009575322270393372, -0.024801472201943398, 0.004401872865855694, 0.0016513961600139737, -0.07429339736700058, -0.002145427279174328, -0.0004419913166202605, 0.004060491919517517, -0.026710985228419304, -0.017041297629475594, 0.0030391239561140537, -0.027887780219316483, 0.004959739279001951, 0.009297776967287064, 0.026910819113254547, 0.0010928356787189841, 0.02165965735912323, 0.006749908439815044, -0.03721331059932709, 0.007987761870026588, 0.0021121217869222164, 0.0231361985206604, -0.020449558272957802, 0.0035525832790881395, 0.02238127589225769, 0.010624445043504238, -0.00941434595733881, 0.0019344926113262773, 0.0221148319542408, -0.0009270022273994982, 0.0020330213010311127, -0.015065173618495464, 0.027088448405265808, 0.04556187987327576, 0.022303562611341476, 0.01402160245925188, 0.017551982775330544, 0.03721331059932709, 0.015953319147229195, 0.0042853038758039474, -0.004387995693832636, -0.0379682332277298, 0.006749908439815044, -0.03334987536072731, -0.04924768581986427, -0.012767096050083637, -0.002693579765036702, 0.0347709096968174, 0.021504230797290802, -0.00923116598278284, -0.005134593229740858, 0.03825688362121582, 0.01203437615185976, 0.0004805007774848491, -0.03013034723699093, 0.018362415954470634, 0.004335261881351471, 0.008426283486187458, 0.04323050007224083, -0.026022672653198242, -0.01321116928011179, -0.025556396692991257, 0.00616151187568903, -0.02042735368013382, -0.031196122989058495, -0.0010692443465813994, 0.040654875338077545, -0.004140980076044798, 0.008004413917660713, 0.012311921454966068, -0.021226685494184494, 0.020172012969851494, 0.048848021775484085, -0.019383782520890236, 0.024446213617920876, -0.003316669724881649, 0.014954155310988426, 0.009214513003826141, -0.009974988177418709, 0.003699682420119643, 0.034904129803180695, -0.056619297713041306, -0.011018559336662292, 0.0031001840252429247, -0.014698813669383526, 0.02081591822206974, 0.01322227157652378, 0.042586591094732285, -0.02093803882598877, -0.061859358102083206, -0.005117940250784159, -0.011734627187252045, 0.01003049686551094, -0.038367900997400284, -0.012622772715985775, -0.0036247451789677143, -0.008814847096800804, -0.03057442046701908, 0.018517840653657913, 0.04516221582889557, -0.03403818979859352, -0.02608928456902504, -0.013566427864134312, -0.025112323462963104, -0.015231701545417309, 0.006694399286061525, -0.02076040953397751, -0.008115432225167751, -0.02702183648943901, -0.027576928958296776, -0.011878950521349907, -0.02000548504292965, -0.00025620925589464605, 0.003014144953340292, -0.03497074171900749, 0.006372446194291115, 0.02148202806711197, 0.044629327952861786, -0.010596689768135548, 0.026488950476050377, -0.0650566816329956, 0.009913927875459194, 0.03918943554162979, -0.008048821240663528, -0.0003868291387334466, 0.027155058458447456, 0.020660491660237312, 0.04029961675405502, -0.02183728665113449, 0.002439625561237335, -0.02644454315304756, 0.0018956363201141357, -0.01780732348561287, -0.011523691937327385, -0.009625280275940895, -0.010341348126530647, 0.02033853903412819, -0.02515673078596592, 0.02524554543197155, 0.013111253269016743, 0.012678281404078007, 0.05106838420033455, 0.030507810413837433, -0.004487911704927683, 0.047071728855371475, -0.01647510565817356, -0.0062558772042393684, -0.013266678899526596, 0.017518676817417145, 0.0007771276286803186, 0.008648320101201534, 0.006555626634508371, -0.03403818979859352, -0.018173683434724808, 0.05621962994337082, -0.002052449621260166, 0.04809309542179108, -0.02027192898094654, 0.019239459186792374, -0.017818426713347435, -0.0057618459686636925, 0.019017422571778297, -0.026155894622206688, -0.01768520474433899, -0.03545922413468361, 0.03581448271870613, 0.006111553404480219, 0.005739642307162285, 0.01582009717822075, 0.0010227554012089968, 0.003721886081621051, 0.04540645703673363, 0.007499281316995621, -0.012311921454966068, 0.0014654406113550067, -0.016741549596190453, -0.060749176889657974, 0.005828456953167915, 0.004249222576618195, -0.015331617556512356, -0.06132647022604942, -0.05080194026231766, 0.010158168151974678, -0.027843372896313667, 0.0005072145140729845, 0.0589284747838974, 0.011318308301270008, -0.028354056179523468, 0.010374653153121471, -0.03850112110376358, -0.014543388038873672, -0.01786283403635025, 0.002196773188188672, -0.0010269186459481716, 0.021071260794997215, -0.008281960152089596, -0.028553888201713562, 0.0036025415174663067, 0.06336920708417892, -0.00950316060334444, 0.019439291208982468, 0.031440362334251404, -0.007532586809247732, 0.021826183423399925, 0.023113995790481567, 0.007671359460800886, -0.010774319060146809, 0.024690454825758934, -0.030196959152817726, 0.010674403049051762, 0.015775689855217934, -0.05404367297887802, 0.026577765122056007, -0.04871479794383049, -0.01139046996831894, -0.01013596449047327, -0.020072095096111298, -0.004737703129649162, -0.021193379536271095, -0.004454606678336859, -0.019872263073921204, -0.004626684822142124, 0.028487278148531914, 0.02509012073278427, -0.03419361636042595, 0.019117338582873344, -0.014687711372971535, 0.0007167614530771971, 0.006083799060434103, -0.022270256653428078, 0.01726333424448967, 0.029242200776934624, -0.004820966627448797, 0.019905569031834602, 0.007465975824743509, -0.006983046419918537, 0.03261715546250343, -0.0017749039689078927, -0.0012739341473206878, 0.023713493719697, 0.03552583232522011, 0.0034915232099592686, 0.0018526166677474976, -0.052400603890419006, -0.0006949047092348337, 0.00822645053267479, -0.01232302375137806, -0.04114335775375366, -0.00044511372107081115, 0.029086776077747345, 0.04609476774930954, 0.005278917029500008, -0.04813750460743904, -0.04247557371854782, -0.006011636927723885, 0.0013703813310712576, -0.0050596557557582855, 0.014987461268901825, -0.020505066961050034, -0.024801472201943398, 0.006799866445362568, -0.004046614281833172, -0.011745728552341461, -0.00411877641454339, -0.027221670374274254, 0.0061171045526862144, 0.05479859933257103, -0.03561464697122574, -0.006383548025041819, -0.003924494609236717, 0.004981942940503359, -0.042519982904195786, -0.00994168221950531, -0.002758803078904748, 0.023424847051501274, -0.01439906470477581, 0.022270256653428078, -0.012933623977005482, 0.028997961431741714, -0.029419830068945885, -0.018728775903582573, 0.07780157774686813, -0.03072984516620636, -0.02244788594543934, 0.01393278781324625, -0.021559739485383034, -0.008204246871173382, 0.023069588467478752, -0.0036802543327212334, 0.018606655299663544, 0.008809296414256096, -0.008009965531527996, -0.026710985228419304, -0.03175121545791626, 0.03057442046701908, 0.032461728900671005, 0.014798729680478573, 0.01355532556772232, 0.00022793430252932012, 0.005734091624617577, -0.007099615875631571, 0.04818191006779671, 0.012789299711585045, -0.019861161708831787, 0.011612506583333015, -0.029331015422940254, -0.0023022405803203583, -0.006111553404480219, 0.01422143541276455, 0.01668603904545307, 0.005467647686600685, 0.02144872210919857, 0.00100749044213444, -0.0294642373919487, 0.015076275914907455, 0.02069379761815071, 0.012456245720386505, 0.04465153068304062, -0.02464604750275612, 0.013799565844237804, -0.004621133673936129, -0.013188965618610382, 0.0325949527323246, 0.007915600202977657, 0.028576092794537544, -0.010868684388697147, 0.002815699903294444, -0.007826785556972027, -0.008204246871173382, -0.021914998069405556, 0.015520348213613033, -0.023402642458677292, -0.041742853820323944, 0.01169021986424923, -0.003014144953340292, -0.026200301945209503, -0.06407972425222397, -0.007327203173190355, 0.006044942419975996, 0.014621100388467312, 0.020893631502985954, 0.02551198936998844, 0.03155137971043587, -0.014920850284397602, -0.01919505186378956, -0.00569523498415947, 0.023780105635523796, 0.01447677705436945, -0.006894232239574194, 0.013155660592019558, -0.010646647773683071, -0.008653870783746243, 0.02768794633448124, -0.008531751111149788, 0.023202810436487198, -0.02097134292125702, 0.000881207175552845, -0.018939709290862083, 0.007699114270508289, 0.023846715688705444, 0.00561752263456583, 0.005265039391815662, 0.0006550075486302376, -0.014343555085361004, 0.03303902596235275, 0.06514550000429153, 0.013488714583218098, 0.029775088652968407, -0.0003490135713946074, -0.0029253303073346615, 0.004052165430039167, 0.011362715624272823, -0.012456245720386505, -0.0189841166138649, -0.02030523493885994, 0.004768232814967632, 0.0010449590627104044, -0.044784754514694214, 0.02027192898094654, -0.01376626081764698, -0.011379368603229523, -0.01120728999376297, 0.023713493719697, -0.01447677705436945, -0.0025367664638906717, 0.03410480171442032, -0.00024406664306297898, 0.03081865981221199, 0.0010484283557161689, -0.003436014289036393, -0.03967791423201561, 0.04938090965151787, 0.02295856922864914, 0.006849824916571379, 0.01912844181060791, 0.0173854548484087, 0.0014224210754036903, 0.03630296140909195, -0.0002485767472535372, 0.04911446571350098, -0.020072095096111298, -0.0019053503638133407, 0.002717171097174287, 0.0014626651536673307, 0.0220815259963274, 0.034659892320632935, -0.023069588467478752, -0.005989433266222477, 0.04720495268702507, 0.029442034661769867, 0.04636121168732643, -0.008792643435299397, 0.016352985054254532, 0.013832871802151203, -0.035925500094890594, 0.008687176741659641, 0.005670255981385708, -0.007271694019436836, 0.036591608077287674, -0.01840682327747345, -0.05453215539455414, -0.003769068978726864, 0.02289195917546749, 0.023247217759490013, 0.018895301967859268, -0.00438244454562664, 0.0021773451007902622, 0.02329162508249283, 0.014510083012282848, 0.034238021820783615, 0.0044962381944060326, 0.0118567468598485, 0.03834569826722145, 0.014465675689280033, 0.013155660592019558, -0.005589767824858427, 0.028842536732554436, 0.011068517342209816, 0.014288046397268772, 0.02268102392554283, -0.021259991452097893, -0.0078101325780153275, 0.03967791423201561, 0.05106838420033455, 0.002561745699495077, 0.001125447335653007, 0.009186758659780025, -0.01059113908559084, 0.0014987461036071181, 0.026710985228419304, 0.024623842909932137, -0.04127657786011696, 0.01385507546365261, -0.03303902596235275, 0.011135128326714039, 0.0017138438997790217, 0.013266678899526596, -0.032705970108509064, 0.010779869742691517, 0.01257836539298296, 0.006111553404480219, 0.0017346598906442523, 0.024290788918733597, 0.07269473373889923, -0.009653034619987011, 0.013832871802151203, -0.02123778685927391, 0.030885271728038788, -0.007299448829144239, -0.003255609655752778, 0.0012593630235642195, 0.00816539116203785, 0.04955853894352913, 0.05431011691689491, 0.02659996785223484, 0.005689684301614761, -0.020027687773108482, 0.021848388016223907, -0.03217308223247528, 0.003197324927896261, 0.013577529229223728, -0.013799565844237804, 0.03124053031206131, 0.008159839548170567, 0.011912256479263306, -0.04041063413023949, 0.013033539988100529, -0.005795151460915804, -0.03039679117500782, -0.029908310621976852, 0.006838723085820675, -0.03155137971043587, -0.01717451959848404, 0.031373750418424606, -0.03235071152448654, -0.021071260794997215, 0.006866477429866791, -0.006577830296009779, 0.03648059070110321, 0.01241183839738369, 0.016608327627182007, 0.03692466393113136, -0.0011178147979080677, 0.026799799874424934, 0.0325949527323246, 0.04085470736026764, -0.02329162508249283, 0.018262498080730438, 0.01879538595676422, -0.0028323526494205, 0.014143722131848335, 0.008603912778198719, 0.0356590561568737, -0.00915900431573391, -0.031951047480106354, -0.021337702870368958, -0.004540645517408848, -0.007116268388926983, -0.02930881269276142, -0.0283762589097023, 0.008320815861225128, 0.012234209105372429, -0.008709380403161049, -0.008065474219620228, -0.006427955348044634, -0.03177341818809509, -0.015742385759949684, 0.00029107590671628714, 0.03352750465273857, -0.0672326385974884, 0.009264471009373665, 0.01519839558750391, 0.0004055634781252593, 0.0018290253356099129, 0.003782946150749922, -0.015797894448041916, -0.027377095073461533, 0.020194215700030327, -0.03039679117500782, 0.004890352953225374, -0.018184786662459373, 0.011812339536845684, -0.021770674735307693, -0.02702183648943901, 0.005206754896789789, 0.02076040953397751, 0.01886199787259102, -0.02939762733876705, 0.038301289081573486, 0.04964735358953476, 0.04296405613422394, 0.011035212315618992, 0.0027823944110423326, 0.0027976594865322113, -0.013777362182736397, -0.008515098132193089, 0.033660728484392166, -0.040477246046066284, 0.005475974176079035, -0.0017943321727216244, 0.0059949844144284725, -0.030463403090834618, 0.004779334645718336, 0.004912556614726782, -0.016275271773338318, -0.023424847051501274, 0.006666644476354122, 0.014299147762358189, 0.04556187987327576, 0.0204828642308712, -0.0030058184638619423, -0.026910819113254547, 0.01409931480884552, 0.037368737161159515, 0.004832068458199501, 0.002778231166303158, 0.011301655322313309, 0.009891724213957787, -0.004768232814967632, 0.02382451295852661, -0.02540097013115883, 0.05364400893449783, -0.009653034619987011, 0.00786564126610756, 0.016186457127332687, 0.016741549596190453, 0.01545373722910881, -0.01248955074697733, -0.01654171571135521, 0.02651115320622921, -0.025312155485153198, 0.018995219841599464, -0.001960859401151538, -0.011989968828856945, 0.00183041300624609, -0.006550075486302376, 0.00047390908002853394, -0.012622772715985775, -0.014121518470346928, -0.035992108285427094, -0.008004413917660713, -0.0010976927587762475, 0.009575322270393372, -0.004146530758589506, 0.02000548504292965, 0.020527271553874016, -0.02223695069551468, 0.03281698748469353, -0.04078809916973114, -0.03497074171900749, -0.006394649855792522, 0.01873987726867199, 0.0003892576787620783, -0.01304464228451252, -0.052134159952402115, -0.0001582009717822075, 0.013188965618610382, -0.009814011864364147, 0.0003063409239985049, 0.0011462632101029158, -0.010913091711699963, 0.004018859937787056, 0.01241183839738369, 0.019450394436717033, 0.055686745792627335, 2.0187104382785037e-05, 0.02939762733876705, 0.014920850284397602, 0.015176191926002502, -0.02693302184343338, -0.0023091791663318872, 0.03701347857713699, 0.03210647031664848, 0.0048820264637470245, -0.0038023744709789753, -0.009969436563551426, 0.02542317472398281, 0.0029780641198158264, -0.029952717944979668, 0.014698813669383526, 0.025223342701792717, -0.01075766608119011, -0.005278917029500008, -0.002704681595787406, -0.01656392030417919, -0.034926336258649826, 0.0010380204766988754, -0.006983046419918537, -0.00023886265989858657, -0.011201739311218262, -0.012256412766873837, 0.02930881269276142, -0.033727336674928665, 0.006278080865740776, -0.006655542645603418, -0.00692198658362031, -0.0016722120344638824, 0.015009664930403233, 0.005567564163357019, -0.021337702870368958, -0.02979729324579239, -0.005922822747379541, 0.0002924636355601251, 0.019561411812901497, -0.01548704318702221, -0.00912569835782051, -0.01909513585269451, 0.005573115311563015, 0.0020455108024179935, 0.03843451291322708, -0.012167598120868206, -0.025045713409781456, 0.0057618459686636925, -0.03248393535614014, 0.007016351912170649, 0.01912844181060791, 0.00048813328612595797, -0.013954991474747658, 0.017574185505509377, 0.026111487299203873, 0.0035414814483374357, -0.023202810436487198, -0.008265307173132896, -0.02473486214876175, 0.045140013098716736, -0.01856224797666073, -0.02633352391421795, 0.010607792064547539, 0.017574185505509377, 0.016108745709061623, -0.00492643378674984, -0.02033853903412819, -0.011457080952823162, 0.01060224138200283, -0.00019480229821056128, -0.018184786662459373, 0.01786283403635025, 0.02542317472398281, 0.03437124565243721, 0.017996054142713547, -0.019239459186792374, 0.01545373722910881, -0.024801472201943398, 0.016375189647078514, -0.0619925782084465, 0.019328273832798004, 0.005722989793866873, 0.04227574169635773, 0.028753722086548805, -0.003566460683941841, -0.04591713845729828, 0.03823467716574669, 0.009764052927494049, 0.010913091711699963, 0.008931417018175125, -0.03235071152448654, 0.02271432988345623, -0.012556161731481552, 0.02415756694972515, 0.0030058184638619423, -0.019272765144705772, -0.02382451295852661, -0.021637452766299248, -0.0036858052480965853, -0.002568684285506606, -0.009547567926347256, 0.006577830296009779, 0.013399899937212467, 0.01620866172015667, 0.033216655254364014, 0.005706336814910173, 0.005772947799414396, 0.032794784754514694, -0.020804816856980324, 0.0034387896303087473, 0.0024604415521025658, 0.030463403090834618, -0.001200384576804936, -0.0215708427131176, -0.0014016052009537816, 0.029952717944979668, -0.00042395087075419724, 0.005442668683826923, 0.007005250081419945, -0.007726868614554405, 0.005190102383494377, 0.02217034064233303, 0.014288046397268772, -0.012700485065579414, 0.0008610851364210248, -0.01584230177104473, 0.05191212520003319, -0.0033694033045321703, 0.014687711372971535, 0.01624196767807007, 0.01593111641705036, 0.016608327627182007, 0.0007965557742863894, 0.03370513394474983, 0.03177341818809509, -0.03319445252418518, -0.006011636927723885, 0.03916723281145096, 0.018040461465716362, 0.019306069239974022, -0.007249490357935429, 0.005134593229740858, -0.034415651112794876, -0.041254375129938126, -0.03383835777640343, -0.002384116407483816, -0.010968601331114769, 0.01283370703458786, -0.006550075486302376, 0.002338321413844824, 0.009664136916399002, 0.016397392377257347, -0.022669922560453415, 0.014521184377372265, -0.011701321229338646, -0.005867313593626022, -0.01729664020240307, -0.022059321403503418, -0.026888614520430565, -0.006666644476354122, -0.002271710429340601, -0.00923116598278284, 0.004959739279001951, -0.01232302375137806, 0.00466276565566659, -0.019894467666745186, 0.016641631722450256, 0.01257836539298296, -0.0178961381316185, -0.0022828122600913048, -0.009514261968433857, 0.00858725979924202, 0.025889450684189796, -0.028398463502526283, -0.004282528068870306, -0.007599197793751955, 0.04609476774930954, -0.04187607765197754, -0.001891473075374961, 0.03521498292684555, -0.005523156840354204, -0.03450446575880051, 0.031196122989058495, 0.035770073533058167, -0.02060498297214508, 0.03412700444459915, 0.008082127198576927, 0.026533357799053192, 0.025289952754974365, 0.02509012073278427, 0.005209530238062143, 0.04069928452372551, -0.046139176934957504, 0.023780105635523796, -0.022159239277243614, -0.006283632013946772, 0.021726267412304878, 0.019539209082722664, -0.0004291548393666744, -0.014276944100856781, 0.008098780177533627, -0.009103494696319103, -0.007527036126703024, -0.0005498871905729175, -0.011445979587733746, -0.01241183839738369, 0.002897575730457902, -0.021037954837083817, -0.006044942419975996, 0.034149207174777985, -0.032794784754514694, 0.0022842001635581255, 0.0337495431303978, 0.010613342747092247, -0.03747975453734398, -0.017207825556397438, -0.012134292162954807, -0.02509012073278427, -0.044873569160699844, -0.010246982797980309, -0.0024673801381140947, 0.03215087950229645, -0.016464004293084145, 0.006633339449763298, 0.026733189821243286, 0.009103494696319103, 0.010346898809075356, 0.032372914254665375, 0.00966968759894371, 0.017130112275481224, 0.013999398797750473, 0.018773183226585388, -0.009375489316880703, -0.038967397063970566, -0.052311789244413376, -0.005190102383494377, -0.0064890156500041485, -0.007277245167642832, -0.012067681178450584, -0.011457080952823162, -0.01346651092171669, 0.008204246871173382, -0.02591165527701378, 0.003891188884153962, 0.0008874519844539464, -0.02828744426369667, -0.028509480878710747, -0.019505903124809265, -0.05435452610254288, -0.0034332387149333954, 0.007149573881179094, -0.016253069043159485, -0.006727704778313637, -0.003391606966033578, 0.04120996594429016, -0.028087612241506577, 0.0273548923432827, -0.04391881078481674, -0.03281698748469353, 0.025378767400979996, -0.03894519433379173, 0.020105401054024696, 0.033549707382917404, 0.016064338386058807, 0.025378767400979996, -0.03661381080746651, 0.01668603904545307, -0.010635546408593655, 0.01963912509381771, -0.019183950498700142, -0.006044942419975996, 0.027576928958296776, -0.014698813669383526, -0.008004413917660713, 0.0043852198868989944, -0.0021815081126987934, -0.003202875843271613, -0.027821168303489685, 0.023602476343512535, 0.029752885922789574, 0.023602476343512535, -0.013422103598713875, -0.0016069888370111585, -0.03166240081191063, 0.024868084117770195, 0.005195653066039085, 0.0003144938382320106, 0.006966393906623125, -0.012212005443871021, 0.02930881269276142, -0.031529176980257034, -0.013000234961509705, -0.01856224797666073, -0.0014557265676558018, 0.015520348213613033, -0.00029541258118115366, 0.009020230732858181, -0.004787661135196686, -0.05093516409397125, 0.01258946768939495, 0.01663053035736084, 0.005922822747379541, -0.009780705906450748, -0.0038107007276266813, 0.030374588444828987, 0.01084648072719574, 0.057196591049432755, -0.01675265096127987, -0.01004714984446764, -0.042431168258190155, 0.020116502419114113, -0.002889249473810196, -0.02148202806711197, -0.009930580854415894, 0.027155058458447456, -0.01596442051231861, 0.015098479576408863, 0.019394883885979652, 0.0379016250371933, -0.0036830296739935875, 0.008825949393212795, -0.004091021604835987, -0.029197795316576958, 0.04045504331588745, 0.03006373718380928, -0.016064338386058807, -0.02795439027249813, -0.045384250581264496, -0.009236716665327549, 0.012767096050083637, -0.025534192100167274, 0.039056211709976196, -0.04185387119650841, 0.018873099237680435, -0.017274437472224236, -0.02380230836570263, 0.033394284546375275, 0.01295582763850689, -0.03992215543985367, -0.010141515173017979, -0.031284935772418976, -0.025978265330195427, 0.002008042298257351, 0.018062666058540344, 0.002010817639529705, -0.012700485065579414, -0.007094064727425575, -0.008492894470691681, 0.02406875230371952, 0.002454890636727214, 0.00865942146629095, 0.020294131711125374, -0.02132660150527954, 0.02509012073278427, -0.04236455634236336, -0.010491223074495792, -0.013055743649601936, 0.039122823625802994, -0.0009346347069367766, 0.008176492527127266, 0.0017207826022058725, 0.0034887478686869144, 0.014232536777853966, 0.038878582417964935, -0.023336032405495644, 0.00842073280364275, 0.005772947799414396, 0.02187059074640274, 0.011501488275825977, -0.01528721023350954, 0.006439057178795338, -0.04676087945699692, -0.006555626634508371, -0.008048821240663528, -0.027887780219316483, -0.024468418210744858, 0.0325949527323246, -0.021037954837083817, 0.027488114312291145, 0.011601405218243599, -0.002003879053518176, 0.029908310621976852, -0.03663601726293564, 0.04671647027134895, -0.013411002233624458, 0.02593385800719261, 0.0021662432700395584, 0.018062666058540344], [0.03784099966287613, -0.008031445555388927, 0.06291206181049347, 0.000838585605379194, -0.05643778666853905, 0.04241764172911644, -0.00992907676845789, 0.059295397251844406, 0.040854886174201965, 0.05934004858136177, -0.02801796793937683, 0.017793083563447, -0.035206642001867294, 0.022224612534046173, -0.019556764513254166, 0.034670840948820114, 0.006825891323387623, 0.02879934571683407, -0.04518594965338707, -0.00027993551339022815, 0.001118346699513495, 0.04534222558140755, -0.03757309913635254, -0.017234956845641136, 0.01592894084751606, -0.013841546140611172, 0.008879798464477062, -0.060634903609752655, 0.0531783290207386, -0.0761285051703453, 0.02067301981151104, -0.022704601287841797, 0.026544513180851936, -0.038354478776454926, -0.014321534894406796, -0.0354522168636322, -0.02504873275756836, 0.009326299652457237, -0.01915491372346878, 0.01521453820168972, -0.03138905391097069, 0.005159882828593254, 0.020248843356966972, -0.002190647879615426, -0.00626218318939209, 0.07161884009838104, 0.021074870601296425, -0.042998094111680984, 0.019467465579509735, 0.006457527633756399, 0.05608058720827103, 0.05183882266283035, 0.03554151952266693, -0.030027225613594055, 0.04723985865712166, 0.03319738432765007, 0.028888646513223648, 0.01924421451985836, 0.006485434249043465, -0.010749523527920246, -0.04270786792039871, -0.028710046783089638, 0.01960141584277153, -0.022235773503780365, 0.014355023391544819, 0.011653688736259937, 0.0015376395313069224, 0.037349849939346313, -0.0478203110396862, -0.007478899788111448, 0.017569834366440773, 0.022436700761318207, 0.019802341237664223, 0.0008085863082669675, -0.019188402220606804, 0.009750476107001305, -0.03560849279165268, -0.0076016876846551895, 0.036992646753787994, -0.0004004560178145766, -0.07661965489387512, -0.010102096013724804, -0.044449225068092346, 0.02719194069504738, 0.01656520552933216, -0.016598692163825035, -0.001933909603394568, -0.01154206320643425, 0.0008399809012189507, 0.02558453567326069, 0.02209066040813923, -0.03411271423101425, -0.012546692043542862, 0.027236590161919594, 0.02739286608994007, -0.00997930858284235, 0.002200415125116706, -0.002787843579426408, -0.036992646753787994, 0.06192975491285324, -0.029513748362660408, -0.0031422541942447424, 0.012680642306804657, 0.04561012610793114, -0.005137557629495859, -0.06813612580299377, 0.005944051314145327, 0.03810890391469002, 0.04181486368179321, 0.02226926200091839, 0.006714266259223223, 4.962641469319351e-06, -0.030830927193164825, 0.030451402068138123, -0.040319085121154785, 0.008466784842312336, -0.005296623799949884, 0.005659406539052725, 0.012022052891552448, -0.03308575972914696, -0.0049840728752315044, -0.009326299652457237, -0.01561638992279768, -0.07711080461740494, -0.004065954126417637, 0.002098557073622942, -0.07032398134469986, 0.04755241051316261, -0.02480315789580345, -0.026343587785959244, 0.04516362398862839, -0.020204192027449608, 0.07545875012874603, 0.018094472587108612, -0.006686359643936157, -0.02596406079828739, 0.01807214692234993, 0.02005907893180847, 0.020784644410014153, 0.02721426635980606, 0.027169615030288696, 0.02962537482380867, -0.0192553773522377, 0.03250530734658241, -0.04261856898665428, 0.030920227989554405, 0.0038064252585172653, 0.05277647450566292, -0.014611761085689068, -0.024981757625937462, 0.001172764110378921, -0.0008120745769701898, -0.014198747463524342, -0.020349305123090744, 0.029245847836136818, 0.007227743044495583, -0.022671112790703773, 0.031210454180836678, 0.004799890797585249, -0.009421181865036488, -0.027705417945981026, -0.020449768751859665, 0.007305880542844534, 0.013439694419503212, 0.02558453567326069, 0.045051999390125275, -0.034045737236738205, 0.011463926173746586, -0.04190416634082794, -0.0172796081751585, -0.030049549415707588, -0.012412741780281067, 0.01261366717517376, -0.004462224431335926, -0.05487503483891487, -0.05911679565906525, 0.00832725316286087, -0.015806153416633606, 0.021778110414743423, -0.003817587858065963, -0.03614429384469986, 0.036010343581438065, -0.02712496556341648, 0.020527906715869904, -0.025004083290696144, 0.04670405760407448, -0.02039395645260811, -0.041033487766981125, -0.041033487766981125, 0.0270356647670269, 0.02253716252744198, 0.0007660291157662868, 0.007886332459747791, 0.0043980395421385765, 0.005983119830489159, 0.016721481457352638, -0.028419820591807365, -0.014288047328591347, 0.01383038330823183, -0.021733460947871208, 0.030808603391051292, -0.02692404016852379, 0.0456547774374485, -0.030004899948835373, -0.007272392977029085, -0.017313094809651375, 0.017391232773661613, -0.007997957989573479, 0.06130465492606163, 0.005028722807765007, 0.035742443054914474, 0.00921467412263155, -0.0533122792840004, 0.006044514011591673, -0.008963517844676971, 0.009756057523190975, 0.01329458225518465, 0.017949359491467476, 0.020248843356966972, 0.00642404006794095, -0.007903076708316803, 0.011123468168079853, 0.02280506305396557, -0.03893493115901947, -0.06635012477636337, -0.06005445122718811, -0.01763680949807167, -0.0244236309081316, 0.015694526955485344, -0.09510482102632523, -0.01905445195734501, 0.022481350228190422, -0.021499047055840492, -0.012323440983891487, -0.028777021914720535, 0.040497686713933945, -0.04849006235599518, -0.039336781948804855, -0.0220013614743948, -0.00642404006794095, 0.01390852127224207, 0.011430438607931137, 0.004174788948148489, -0.01863027550280094, -0.032616935670375824, -0.005690103396773338, -0.00832725316286087, 0.005771031603217125, 0.023954804986715317, 0.008148652501404285, 0.023106452077627182, -0.018373535946011543, 0.07139559090137482, -0.021320445463061333, 0.037907976657152176, 0.013662945479154587, -0.02587476186454296, -0.031813230365514755, -0.0027390075847506523, 0.01665450632572174, -0.005335692781955004, 0.0028994691092520952, -0.013272256590425968, 0.019009800627827644, -0.030897902324795723, -0.031634628772735596, 0.009454669430851936, 0.009862101636826992, -0.009867683053016663, 0.023151101544499397, -0.028576094657182693, 0.0018585624638944864, 0.01288156770169735, -0.02739286608994007, -0.061974406242370605, 0.0017887966241687536, 0.0056789410300552845, -0.007512387353926897, 0.0007716104155406356, -0.02480315789580345, -0.06264416128396988, -0.02424503117799759, 0.011508575640618801, -0.0853264331817627, 0.0013408997328951955, -0.006524503231048584, 0.03426899015903473, 0.02328505367040634, 0.010476041585206985, -0.003318064147606492, 0.07608385384082794, 0.0219343863427639, 0.04116743803024292, -0.011396950110793114, 0.01663218066096306, 0.0014204328181222081, -0.033242035657167435, 0.03192485496401787, 0.027906343340873718, -0.03877865523099899, 0.06840402632951736, 0.02489245869219303, 0.0404307097196579, -0.04027443379163742, -0.08032561838626862, 0.011888102628290653, -0.02004791609942913, -0.009521644562482834, -0.02587476186454296, 0.038086578249931335, 0.005927307065576315, 0.04270786792039871, -0.05018676817417145, -0.010085352696478367, -0.05737544223666191, 0.0010018376633524895, -0.018998637795448303, 0.013741083443164825, 0.019020963460206985, 0.010783011093735695, 0.05107976868748665, 0.015337326563894749, -0.005810100585222244, 0.005268717650324106, 0.021532533690333366, -0.010632316581904888, -0.02209066040813923, 0.026432888582348824, 0.013495507650077343, -0.0006680081132799387, -0.037349849939346313, 0.040497686713933945, 0.004607337061315775, 0.006557990796864033, -0.01815028488636017, -0.00431711133569479, -0.04683800786733627, 0.004995235241949558, -0.010855567641556263, -0.013506670482456684, -0.015728015452623367, -0.02757146768271923, 0.013428532518446445, 0.019087938591837883, -0.0033655050210654736, 0.06331390887498856, 0.057777293026447296, 0.03534059226512909, 0.0108723109588027, 0.02487013302743435, 0.04813285917043686, 0.03295180946588516, -0.040765587240457535, -0.008801660500466824, -0.022336237132549286, -0.05215137451887131, 0.033152736723423004, 0.012022052891552448, -0.03654614835977554, 0.03712660074234009, -0.002264599781483412, 0.02962537482380867, -0.005765450652688742, 0.04324366897344589, 0.0031366730108857155, -0.007015654817223549, -0.03357691317796707, 0.03616661950945854, 0.029156547039747238, -0.0128480801358819, 0.02719194069504738, 0.012412741780281067, -0.012044377624988556, -0.049249112606048584, 0.061527904123067856, -0.03806425258517265, 0.02775006741285324, 0.035854071378707886, -0.027370542287826538, -0.03353226184844971, -0.004732915665954351, 0.05322297662496567, 0.05594663694500923, 0.021588347852230072, -0.011664851568639278, 0.005514293443411589, -0.05465178191661835, 0.005316158290952444, -0.0035134085919708014, -0.008165395818650723, -0.01951211504638195, 0.018674924969673157, -0.04467247426509857, -0.014366185292601585, 0.031031854450702667, 0.011023005470633507, 0.04862401261925697, -0.004099441692233086, -0.027258915826678276, -0.02460223250091076, -0.02433433197438717, -0.0332866869866848, 0.00498686358332634, -0.039872583001852036, -0.02478083223104477, 0.01154206320643425, -0.01835121214389801, 0.007663081865757704, -0.012490878812968731, -0.0057989382185041904, 0.014399672858417034, -0.03078627772629261, 0.02183392271399498, 0.03694799914956093, -0.019735366106033325, 0.0009592805290594697, -0.0032064388506114483, 0.041926488280296326, -0.016487067565321922, -0.03420201316475868, 0.011865776963531971, 0.01154206320643425, 0.0035636399406939745, 0.019221888855099678, -0.030763952061533928, -0.0008378879283554852, 0.014745711348950863, 0.013942008838057518, -0.01293738093227148, -0.024758508428931236, -0.03576476871967316, 0.00559243094176054, 0.014555948786437511, 0.018016334623098373, -0.0206618569791317, -0.04105581343173981, -0.000985093880444765, -0.02353062853217125, 0.015437789261341095, -0.042640890926122665, -0.009610944427549839, -0.011196024715900421, 0.024021780118346214, 0.002905050292611122, -0.0192553773522377, 0.027683092281222343, 0.0001883678196463734, 0.07402994483709335, -0.009052817709743977, -0.009850938804447651, -0.00594963226467371, 0.0034520146436989307, -0.03998420760035515, -0.01225646585226059, -0.005603593774139881, -0.04808821156620979, 0.02229158766567707, 0.011999727226793766, 0.04143533855676651, -0.0013967124978080392, 0.01851864904165268, 0.03797495365142822, 0.06447481364011765, 0.016341954469680786, 0.010570922866463661, 0.0270356647670269, 0.015381976030766964, 0.0023427375126630068, -0.0030864416621625423, -0.018239585682749748, 0.02819656953215599, -0.008717942051589489, -0.012289953418076038, 0.004914307035505772, 0.0470612570643425, -0.044426899403333664, 0.025651510804891586, -0.017022868618369102, 0.002397154923528433, -0.011034168303012848, 0.014377348124980927, 0.013406206853687763, -0.05273182690143585, -0.06192975491285324, 0.013417369686067104, -0.004545943345874548, 0.04114511236548424, -0.007724475581198931, 0.0003141207853332162, -0.026343587785959244, -0.036211270838975906, 0.005659406539052725, 0.04431527480483055, -0.008812823332846165, 0.014667574316263199, 0.01764797233045101, -0.059741899371147156, -0.008014701306819916, 0.03388946130871773, -0.014812687411904335, -0.032170433551073074, -0.08010236918926239, 0.011341137811541557, -0.025562210008502007, 0.013942008838057518, -0.06059025228023529, 0.007864007726311684, -0.020114891231060028, -0.02605336159467697, 0.028151918202638626, -0.042015790939331055, 0.002846447052434087, 0.011073237285017967, 0.009158861823379993, -0.006038932595402002, -0.011363462544977665, -0.008254696615040302, 0.00855050329118967, -0.03525129333138466, 0.01789354719221592, -0.01852981187403202, -0.006876123137772083, -0.018362373113632202, -0.0032148107420653105, -0.021320445463061333, 0.0024613395798951387, 0.0067477538250386715, -0.06827007979154587, -0.004425946157425642, -0.0016785665648058057, 0.014098284766077995, -0.02075115591287613, -0.018920499831438065, 0.009493738412857056, -0.03444759175181389, -0.0029078410007059574, 0.0077802883461117744, 0.02676776424050331, 0.001654846128076315, 0.019556764513254166, 0.0005937074311077595, -0.03409038856625557, 0.019902804866433144, -0.004730124957859516, 0.014399672858417034, -0.01854097470641136, 0.007557037752121687, 0.017480533570051193, 0.009493738412857056, 0.0002241228212369606, 0.004163626581430435, 0.01716798171401024, 0.005609175190329552, 0.006518921814858913, -0.01029185950756073, 0.022481350228190422, 0.04529757797718048, 0.013930846937000751, 0.0083216717466712, 0.02290552668273449, 0.019891642034053802, 0.02417805604636669, 0.009108630008995533, -0.006133814342319965, -0.04302041977643967, 0.010755104944109917, -0.030295126140117645, -0.05067791789770126, -0.020516743883490562, -0.0013450857950374484, 0.02549523487687111, 0.021532533690333366, 0.004199904855340719, -0.013506670482456684, 0.031076503917574883, 0.010308602824807167, -0.005556153133511543, -0.031188128516077995, 0.012680642306804657, 0.00957745686173439, 0.006195208057761192, 0.0320141576230526, -0.019980940967798233, -0.029937924817204475, -0.01383038330823183, 0.00014040379028301686, -0.02766076661646366, -0.031456030905246735, 0.0010806731879711151, 0.03616661950945854, 0.007328205741941929, 0.011865776963531971, 0.014801524579524994, -0.013584807515144348, 0.02103022113442421, 0.04072093591094017, -0.0006013817037455738, 0.007473318837583065, 1.2165421139798127e-05, 0.00398502591997385, 0.013428532518446445, -0.014745711348950863, -0.011140212416648865, 0.028241218999028206, -0.0550982840359211, -0.01941165141761303, -0.0033431798219680786, -0.009795126505196095, 0.01986931636929512, 0.01100626215338707, 0.043533895164728165, -0.02426735684275627, -0.04911516234278679, 0.005821263417601585, -0.012725292704999447, -0.00014607227058149874, -0.029558397829532623, -0.01359597034752369, -0.0035552680492401123, -0.011776477098464966, -0.043712496757507324, 0.017915872856974602, 0.04047536104917526, -0.028129594400525093, -0.02101905830204487, -0.0056789410300552845, -0.02164416015148163, -0.010476041585206985, -0.0002408666186966002, -0.025472909212112427, -0.016587531194090843, -0.027950992807745934, -0.014622923918068409, -0.02058371901512146, -0.03453689068555832, -0.010766266845166683, -0.003083650954067707, -0.022235773503780365, 0.015426626428961754, 0.026901714503765106, 0.03956003114581108, -0.015236862935125828, 0.03221508115530014, -0.06751102209091187, 0.011999727226793766, 0.04172556474804878, -0.02130928449332714, -0.004068744834512472, 0.025026408955454826, 0.023932479321956635, 0.02344132773578167, -0.011742989532649517, -0.014689899049699306, -0.032795533537864685, -0.0015125238569453359, -0.008963517844676971, 0.005140348337590694, -0.010118840262293816, -0.0050817448645830154, 0.03284018486738205, -0.027504492551088333, 0.011988565325737, 0.005528246518224478, 0.02210182324051857, 0.06782357394695282, 0.035117343068122864, -0.0032845765817910433, 0.061438605189323425, -0.008717942051589489, -0.02210182324051857, -0.02540593408048153, 0.02370922826230526, 0.006853797938674688, 0.01167601440101862, -0.0008085863082669675, -0.028933295980095863, -0.03516199067234993, 0.06384970992803574, -0.001200670376420021, 0.05826844274997711, -0.03708194941282272, 0.013540158048272133, -0.02335202880203724, 1.7277950973948464e-05, 0.021532533690333366, -0.01807214692234993, -0.010543016716837883, -0.025830110535025597, 0.035385243594646454, -0.0037645658012479544, 0.013808058574795723, 0.020114891231060028, -0.0022283215075731277, 0.0045905932784080505, 0.03973863273859024, 0.03605499491095543, -0.008874217048287392, 0.003175741760060191, -0.013785733841359615, -0.06112605333328247, 0.008472365327179432, 0.004174788948148489, -0.01852981187403202, -0.05616988614201546, -0.05442853271961212, -0.0013625272549688816, -0.02086278237402439, -0.002218554262071848, 0.05143697187304497, 0.0193223524838686, -0.031076503917574883, 0.005090116988867521, -0.0408102348446846, -0.028687721118330956, -0.02050558105111122, 0.00957745686173439, -0.005140348337590694, 0.018764225766062737, -0.01189926452934742, -0.02184508554637432, -0.010453715920448303, 0.06023305281996727, -0.002658079145476222, 0.029491422697901726, 0.037104275077581406, -0.011011842638254166, 0.028977947309613228, 0.01735774613916874, 0.00791423860937357, -0.01557173952460289, 0.023396678268909454, -0.021242307499051094, -0.00325387972407043, 0.02935747243463993, -0.0550982840359211, 0.013975496403872967, -0.04933841526508331, -0.0012697386555373669, -0.016442418098449707, -0.02460223250091076, 0.00013238070823717862, -0.020806970074772835, 0.002475292654708028, -0.026254286989569664, 0.000250982673605904, 0.02489245869219303, 0.019210726022720337, -0.028040293604135513, 0.033331334590911865, -0.007026817183941603, -0.004903144668787718, 0.005921726115047932, -0.01055417861789465, 0.026879388839006424, 0.029580723494291306, -0.007841682061553001, 0.02837516926229, 0.006887285504490137, -0.00027854018844664097, 0.019478628411889076, -0.0004409202083479613, -0.007612850517034531, 0.015560576692223549, 0.04261856898665428, 0.0018850734923034906, 0.006686359643936157, -0.045587800443172455, 0.0027390075847506523, 0.008846310898661613, -0.01835121214389801, -0.024289680644869804, -0.0036668935790657997, 0.016799619421362877, 0.04933841526508331, 0.014578273519873619, -0.05134767293930054, -0.038800980895757675, -0.007646338082849979, -0.011508575640618801, 0.005051048006862402, 0.004646406043320894, -0.024088755249977112, -0.024111080914735794, 0.008690034970641136, -0.013462020084261894, -0.017826572060585022, 0.012066702358424664, -0.021186495199799538, 0.012502041645348072, 0.057330790907144547, -0.035854071378707886, -0.005558943375945091, -0.007975633256137371, 0.0041803703643381596, -0.04473944753408432, -0.007612850517034531, -0.0068426355719566345, 0.01567220315337181, -0.02292785234749317, 0.012669479474425316, 0.0008874217164702713, 0.023240402340888977, -0.02549523487687111, -0.014835012145340443, 0.08479063212871552, -0.02676776424050331, -0.022604137659072876, 0.011357882060110569, -0.032616935670375824, -0.004065954126417637, 0.013227607123553753, -0.007930982857942581, 0.01329458225518465, 0.006407296285033226, -0.008544921875, -0.02522733435034752, -0.018328886479139328, 0.033867139369249344, 0.0244236309081316, 0.019567927345633507, 0.016576368361711502, -0.00804818980395794, 0.0023706438951194286, -0.009716988541185856, 0.04324366897344589, 0.00725006777793169, -0.025450585409998894, 0.012591342441737652, -0.03203648328781128, 0.0011525319423526525, -0.0034157363697886467, 0.015605227090418339, 0.015415463596582413, 0.006290089804679155, 0.019579090178012848, 0.008567247539758682, -0.03232670947909355, -0.00012871800572611392, 0.02147672139108181, 0.016408929601311684, 0.05916144698858261, -0.02272692508995533, 0.0029217940755188465, -0.0056426627561450005, -0.013953171670436859, 0.025026408955454826, 0.007785869762301445, 0.03482711687684059, -0.010057445615530014, 0.00957745686173439, -0.008662128821015358, -0.009599781595170498, -0.019757691770792007, 0.027370542287826538, -0.0310541782528162, -0.025740811601281166, 0.007568200118839741, -0.001548802014440298, -0.017056357115507126, -0.06978818029165268, -0.010141164995729923, 0.01230111625045538, 0.013115981593728065, 0.02451293170452118, 0.017134495079517365, 0.02980397455394268, -0.009823032654821873, -0.014410835690796375, -0.00033801558311097324, 0.0219343863427639, 0.01423223502933979, -0.008293765597045422, 0.015248025767505169, -0.005782194435596466, -0.01095603033900261, 0.020829293876886368, -0.011240675114095211, 0.018228422850370407, -0.015248025767505169, 0.00047161721158772707, -0.021007895469665527, 0.015426626428961754, 0.02656683884561062, 0.004177579656243324, 0.007049142383038998, -0.011257418431341648, -0.0032873672898858786, 0.03319738432765007, 0.07219929248094559, 0.007730056997388601, 0.027348216623067856, 0.0036920092534273863, 0.004428736865520477, 0.017759596928954124, 0.011508575640618801, -0.011486250907182693, -0.019925128668546677, -0.009650013409554958, 0.0088965417817235, 0.003876191098242998, -0.03944840654730797, 0.02638823725283146, -0.025271983817219734, -0.006256602238863707, -0.008254696615040302, 0.02128695882856846, -0.011787638999521732, 0.007942145690321922, 0.029424447566270828, 0.011843452230095863, 0.037104275077581406, -0.005988701246678829, -0.004956166725605726, -0.021499047055840492, 0.041926488280296326, 0.029402123764157295, -0.001488803420215845, 0.017346583306789398, 0.018674924969673157, 0.0010939287021756172, 0.03042907640337944, 0.002670637099072337, 0.05192812159657478, -0.007573781535029411, -0.001819493598304689, -0.0025087802205234766, 0.005302205216139555, 0.021175332367420197, 0.029044922441244125, -0.009476994164288044, -0.005106860771775246, 0.06041165068745613, 0.03759542480111122, 0.04590035229921341, -0.010470460169017315, 0.024758508428931236, 0.0093095563352108, -0.03498339280486107, 0.02745984122157097, 0.005720800254493952, -0.006301252171397209, 0.04509665071964264, -0.009700245223939419, -0.05666103959083557, 0.00791423860937357, 0.01619684137403965, 0.020427443087100983, 0.014488973654806614, 0.0012878777924925089, -0.001741355867125094, 0.023374352604150772, 0.019355839118361473, 0.0363452211022377, 0.008556084707379341, 0.004202695097774267, 0.03652382269501686, 0.01888701319694519, 0.013037843629717827, -0.012010890059173107, 0.030138850212097168, 0.005572896916419268, 0.007210999261587858, 0.009415600448846817, -0.019813504070043564, 0.01301551889628172, 0.01888701319694519, 0.05103512108325958, 0.0042780423536896706, 0.002571569522842765, -0.003661312162876129, -0.014779198914766312, -0.0037003811448812485, 0.042015790939331055, 0.019177239388227463, -0.03556384518742561, 0.01637544296681881, -0.03668009862303734, 0.012647154740989208, -0.003694799728691578, 0.010369997471570969, -0.016174515709280968, 0.013093655928969383, 0.017045194283127785, -0.005815682001411915, 0.005860331933945417, 0.02728124149143696, 0.055991288274526596, -0.014154097065329552, 0.012111352756619453, -0.011832289397716522, 0.036903347820043564, 0.00516825495287776, -0.011011842638254166, -0.008963517844676971, 0.004989654291421175, 0.045587800443172455, 0.05295507609844208, 0.019534440711140633, 0.012993193231523037, -0.02587476186454296, 0.03435828909277916, -0.038689352571964264, -0.0037338687106966972, 0.020784644410014153, -0.01319411862641573, 0.023128777742385864, 0.008332833647727966, -0.0008023073896765709, -0.028241218999028206, 0.027437517419457436, 0.003117138519883156, -0.029201198369264603, -0.023597603663802147, 0.007897495292127132, -0.02139858342707157, -0.0016506601823493838, 0.038622379302978516, -0.020159542560577393, -0.023977130651474, 0.018496323376893997, -0.01683310605585575, 0.03337598592042923, 0.0018208888359367847, 0.009164443239569664, 0.04141301289200783, 0.00630683358758688, 0.03580942004919052, 0.03625592216849327, 0.03551919385790825, -0.02478083223104477, 0.008031445555388927, 0.006758916191756725, 0.0024822691921144724, 0.021945549175143242, 0.0128480801358819, 0.025294309481978416, -0.0075626191683113575, -0.035831745713949203, -0.01320528145879507, -0.013305744156241417, -0.016386603936553, -0.031991831958293915, -0.033509936183691025, 0.016754968091845512, 0.011196024715900421, -0.016431255266070366, -0.0033655050210654736, -0.011497413739562035, -0.017413558438420296, -0.009789545089006424, 0.0008448645239695907, 0.03625592216849327, -0.059563297778367996, 0.0052352300845086575, 0.018407024443149567, -0.0038231690414249897, 0.0017343792133033276, -5.2586015954148024e-05, -0.02086278237402439, -0.023240402340888977, 0.015493601560592651, -0.023954804986715317, 0.009114211425185204, -0.024378981441259384, 0.013752246275544167, -0.0190656129270792, -0.0306076779961586, 0.006016607396304607, 0.020985569804906845, 0.012289953418076038, -0.027906343340873718, 0.04342227056622505, 0.04500735178589821, 0.03949305787682533, 0.017514020204544067, 0.0105206910520792, 0.0032231826335191727, -0.011609038338065147, -0.0071551864966750145, 0.05179417133331299, -0.036367546766996384, 0.007629594299942255, 0.007841682061553001, -0.002471106592565775, -0.03795262798666954, -0.006636128295212984, -0.00615055812522769, -0.01869725063443184, -0.0031087666284292936, 0.010615573264658451, 0.017569834366440773, 0.0429757684469223, 0.017313094809651375, 0.0057766130194067955, -0.0266561396420002, 0.010196978226304054, 0.04268554225564003, 0.010386740788817406, 0.0046715219505131245, 0.01807214692234993, 3.616923640947789e-05, -0.0021962292958050966, 0.030138850212097168, -0.02605336159467697, 0.05375877767801285, -0.004183161072432995, 0.003510617883875966, 0.023753879591822624, 0.01959025301039219, 0.004403620958328247, -0.014701061882078648, -0.019657228142023087, 0.038533080369234085, -0.03330901265144348, 0.01764797233045101, 0.004127348307520151, -0.013361557386815548, 0.0005092907813377678, -0.019701877608895302, 0.010409066453576088, -0.015370814129710197, -0.01033092848956585, -0.04217206686735153, -0.0052491831593215466, -0.003161788685247302, 0.013171793892979622, -0.005466852802783251, 0.023642253130674362, 0.02469153329730034, -0.037617750465869904, 0.03078627772629261, -0.043444596230983734, -0.04143533855676651, -0.008533759973943233, 0.010347671806812286, 0.0025325005408376455, -0.007886332459747791, -0.043355293571949005, 0.0057989382185041904, 0.005318948999047279, -0.015560576692223549, -0.0016618227818980813, -0.0019729784689843655, -0.006993329618126154, 0.010894636623561382, 0.0186191126704216, 0.01753634586930275, 0.04902586340904236, -0.0026148243341594934, 0.017949359491467476, -0.00012243908713571727, 0.017313094809651375, -0.030183501541614532, -0.002109719440340996, 0.029736999422311783, 0.02317342720925808, 0.0020734413992613554, -0.01453362312167883, -0.010280696675181389, 0.03357691317796707, -0.005595221649855375, -0.02900027111172676, 0.010040702298283577, 0.024222705513238907, -0.015058263204991817, -0.011664851568639278, 0.002345528220757842, -0.02728124149143696, -0.03833215311169624, 0.0046715219505131245, -0.012133678421378136, 0.005988701246678829, -0.0008630036609247327, -0.018641436472535133, 0.023307377472519875, -0.025294309481978416, 0.008137489669024944, 0.006876123137772083, -0.006351483520120382, -0.012111352756619453, 0.01835121214389801, -0.0008078886312432587, -0.030920227989554405, -0.034045737236738205, 0.007127279881387949, 0.003089232137426734, 0.022671112790703773, -0.0166433434933424, -0.0037450313102453947, -0.01163136400282383, -0.00034132946166209877, -0.0048054722137749195, 0.03935910761356354, -0.0017776340246200562, -0.017056357115507126, 0.014667574316263199, -0.03232670947909355, 0.010799754410982132, 0.026901714503765106, -0.007004491984844208, -0.014689899049699306, 0.02560686133801937, 0.018217260017991066, 0.006167301908135414, -0.020204192027449608, 0.0022939015179872513, -0.019087938591837883, 0.05835774540901184, -0.02560686133801937, -0.037707049399614334, 0.01827307417988777, 0.0224478617310524, 0.01059882901608944, -0.0049617476761341095, -0.02935747243463993, -0.00231762183830142, -0.008835148066282272, -0.004571058787405491, -0.023575277999043465, 0.012278790585696697, 0.02739286608994007, 0.03426899015903473, 0.019846990704536438, -0.02361992932856083, 0.014176422730088234, -0.021677646785974503, 0.004699428100138903, -0.07322624325752258, 0.009962564334273338, 0.005025932565331459, 0.045141302049160004, 0.02067301981151104, 0.004651987459510565, -0.03446991369128227, 0.043265994638204575, 0.013138306327164173, 0.011196024715900421, 0.010582085698843002, -0.020070241764187813, 0.015181050635874271, -0.015806153416633606, 0.01582847721874714, 0.011385788209736347, -0.02656683884561062, -0.023999454453587532, -0.022057173773646355, -0.005243601743131876, -0.008790497668087482, -0.008433297276496887, -0.0019241423578932881, 0.009800707921385765, 0.009828614071011543, 0.026254286989569664, 0.002745984122157097, 0.007255649194121361, 0.0390242300927639, -0.012803430669009686, 0.0024585488718003035, -0.000724169600289315, 0.03393411263823509, -0.007395180873572826, -0.023307377472519875, -0.004487339872866869, 0.029736999422311783, 0.004919888451695442, -0.008143071085214615, 0.019489789381623268, -0.0014832221204414964, 0.007384018506854773, 0.02551756054162979, 0.014935474842786789, -0.020170705392956734, 0.0007681220886297524, -0.0019311188952997327, 0.046480804681777954, -0.010470460169017315, 0.021766947582364082, 0.01979117840528488, 0.019489789381623268, 0.015069425106048584, 0.0016576368361711502, 0.03522896766662598, 0.020806970074772835, -0.027013340964913368, -0.007791451178491116, 0.02683473937213421, 0.0223808865994215, 0.025718485936522484, -0.014488973654806614, 0.012022052891552448, -0.030942553654313087, -0.039403755217790604, -0.026723114773631096, -0.004855703562498093, -0.01195507775992155, 0.015716852620244026, -0.014176422730088234, -0.006189627107232809, 0.006797985173761845, 0.028576094657182693, -0.014567110687494278, 0.02417805604636669, -0.0252496600151062, -0.014835012145340443, -0.01744704507291317, -0.02075115591287613, -0.027526816353201866, -0.003075279062613845, 0.0037450313102453947, -0.017737271264195442, 0.009750476107001305, -0.0036557309795171022, 0.0013025285443291068, -0.015493601560592651, 0.019087938591837883, 0.0035134085919708014, -0.005062210839241743, 0.005743125453591347, -0.003767356276512146, 0.014444323256611824, 0.017324257642030716, -0.0265891645103693, -0.0027013339567929506, -0.008338415063917637, 0.03962700814008713, -0.0434892438352108, -0.0022199496161192656, 0.04217206686735153, -0.006658453494310379, -0.02317342720925808, 0.028218893334269524, 0.03321970999240875, -0.018820038065314293, 0.03554151952266693, 0.008734685368835926, 0.032170433551073074, 0.015884291380643845, 0.03165695443749428, -0.004537571221590042, 0.044337596744298935, -0.056259188801050186, 0.010275115258991718, -0.02692404016852379, -0.014176422730088234, 0.02632126212120056, 0.015248025767505169, -0.0023678531870245934, -0.015415463596582413, 0.007590525317937136, -0.0067254286259412766, -0.008623059839010239, -0.006518921814858913, -0.012334603816270828, -0.015594064258038998, 0.004244554787874222, -0.016498230397701263, -0.008410971611738205, 0.03254995867609978, -0.027772393077611923, 0.008874217048287392, 0.04243996739387512, 0.021420909091830254, -0.03681404888629913, -0.011380206793546677, -0.020918594673275948, -0.027884017676115036, -0.03962700814008713, -0.006541247013956308, 0.003694799728691578, 0.030027225613594055, -0.011530901305377483, 0.011821126565337181, 0.02819656953215599, 0.007685407064855099, 0.003075279062613845, 0.03522896766662598, 0.00036452661151997745, 0.01391968410462141, 0.017402395606040955, 0.011620201170444489, -0.0069040292873978615, -0.03652382269501686, -0.046480804681777954, -0.0034129456616938114, 0.009834195487201214, -0.0022520418278872967, -0.0008574224193580449, -0.022715764120221138, -0.008717942051589489, 0.0069821672514081, -0.02370922826230526, 0.0015613598516210914, -0.006251020822674036, -0.028620745986700058, -0.026075687259435654, -0.01319411862641573, -0.042194392532110214, -0.001236948650330305, 0.008288184180855751, -0.024468282237648964, -0.006954260636121035, -0.010381159372627735, 0.038622379302978516, -0.02632126212120056, 0.030853252857923508, -0.039783284068107605, -0.036211270838975906, 0.01850748620927334, -0.03670242428779602, 0.01422107219696045, 0.025740811601281166, 0.016687992960214615, 0.02226926200091839, -0.03051837719976902, 0.017558671534061432, -0.010537435300648212, 0.020260004326701164, -0.025205008685588837, -0.0048417504876852036, 0.027370542287826538, -0.01293738093227148, -0.015493601560592651, 0.0030222570057958364, 0.01096719317138195, 7.774533150950447e-05, -0.032438334077596664, 0.016531717032194138, 0.033331334590911865, 0.02917887270450592, -0.01869725063443184, 0.0006299857050180435, -0.027013340964913368, 0.029848624020814896, 0.01131881307810545, 0.015158725902438164, -0.001617172616533935, -0.012825755402445793, 0.031545329838991165, -0.028687721118330956, -0.010258371941745281, -0.015024774707853794, 0.00033243431244045496, 0.019545603543519974, -0.006703103426843882, 0.011653688736259937, -0.001599033479578793, -0.03321970999240875, 0.014712223783135414, 0.01788238435983658, 0.000893700635060668, -0.013674108311533928, 0.00930397491902113, 0.03069697692990303, -0.001709263538941741, 0.06612686812877655, -0.004414783325046301, 2.8582200684468262e-05, -0.043891098350286484, 0.025718485936522484, 0.0013485740637406707, -0.03284018486738205, -0.004638034384697676, 0.03500571846961975, -0.010978355072438717, 0.018574461340904236, 0.021688809618353844, 0.032170433551073074, -0.004738497082144022, 0.0040129320695996284, 0.009415600448846817, -0.019199563190340996, 0.04951701685786247, 0.03768472746014595, -0.017424721270799637, -0.021454395726323128, -0.040765587240457535, -0.018686087802052498, 0.014366185292601585, -0.019199563190340996, 0.032974135130643845, -0.0431097187101841, 0.02139858342707157, -0.02460223250091076, -0.029870949685573578, 0.022782739251852036, 0.015013612806797028, -0.037885650992393494, -0.016944730654358864, -0.022157637402415276, -0.029759325087070465, 0.008444459177553654, 0.0003973165585193783, 0.002319017192348838, -0.01692240685224533, -0.0013597365468740463, -0.01020255871117115, 0.0031645793933421373, 0.007501224987208843, 0.01960141584277153, 0.01698938198387623, -0.021510209888219833, 0.02280506305396557, -0.03464851528406143, -0.005399877205491066, -0.008611897937953472, 0.036657772958278656, -0.012747617438435555, 0.011201606132090092, -0.006033351179212332, 0.006926354486495256, 0.02119765803217888, 0.04286414384841919, -0.02328505367040634, -0.0023287844378501177, 0.007668663281947374, 0.01780424639582634, 0.016085216775536537, -0.02236972376704216, 0.006273346021771431, -0.03250530734658241, -0.014712223783135414, 0.0009474203689023852, -0.028151918202638626, -0.024981757625937462, 0.02667846344411373, -0.02130928449332714, 0.03554151952266693, 0.018864687532186508, -0.0021055336110293865, 0.02632126212120056, -0.02772774174809456, 0.03348761051893234, -0.013953171670436859, 0.016330791637301445, -0.010710454545915127, 0.028397494927048683], [0.03732101619243622, -0.009913395158946514, 0.05552859976887703, 0.015150339342653751, -0.06408888101577759, 0.03641516715288162, -0.015467386692762375, 0.04905177280306816, 0.04508867859840393, 0.04724007099866867, -0.02138938009738922, 0.016860131174325943, -0.03908742219209671, 0.010015303269028664, -0.015320186503231525, 0.03677750751376152, 0.005944639910012484, 0.029530707746744156, -0.04868943244218826, -0.003660199698060751, 0.015025785192847252, 0.03634722903370857, -0.027401959523558617, -0.01845669187605381, 0.010219119489192963, -0.020891163498163223, 0.011079676449298859, -0.048372384160757065, 0.04746653512120247, -0.07255857437849045, 0.025522321462631226, -0.019124755635857582, 0.02497881092131138, -0.03507903590798378, -0.01241014339029789, -0.046424806118011475, -0.033742908388376236, 0.019838113337755203, -0.018773740157485008, 0.019453126937150955, -0.03054978884756565, 0.011266508139669895, 0.012059126980602741, 0.014946523122489452, -0.01228558924049139, 0.07396264374256134, 0.0207439623773098, -0.032202962785959244, 0.016475144773721695, 0.010230442509055138, 0.0627753958106041, 0.062141302973032, 0.016565730795264244, -0.02688109688460827, 0.03544137626886368, 0.03240678086876869, 0.03084418922662735, 0.01854727603495121, 0.005483222659677267, -0.012987622991204262, -0.044205475598573685, -0.019475772976875305, 0.02504674904048443, -0.03249736502766609, -0.0017296071164309978, -0.000738126109354198, 0.004452818538993597, 0.029236305505037308, -0.043933719396591187, 0.006641012150794268, 0.01950974203646183, 0.02239713817834854, 0.010185149498283863, 0.014097289182245731, -0.012376174330711365, 0.0012788053136318922, -0.03054978884756565, -0.007065629120916128, 0.03451288118958473, 0.002300009597092867, -0.06472297757863998, -0.013768918812274933, -0.050274670124053955, 0.02145732007920742, 0.027764299884438515, -0.012376174330711365, 0.004897251259535551, -0.00961899384856224, 0.006890120916068554, 0.012693221680819988, 0.023370927199721336, -0.03512433171272278, -0.0026057339273393154, 0.01758481189608574, 0.01228558924049139, -0.013157470151782036, -0.0003241244121454656, 0.0037536155432462692, -0.04087647795677185, 0.06463239341974258, -0.035781070590019226, 0.0006043717148713768, 0.011226877570152283, 0.04968586564064026, 0.0047330656088888645, -0.07129038870334625, -0.007812955416738987, 0.03908742219209671, 0.035690486431121826, 0.012274266220629215, 0.0071845222264528275, -0.005004820879548788, -0.04384313523769379, 0.022929325699806213, -0.03458081930875778, 0.004667957779020071, -0.009460469707846642, -0.0027883192524313927, 0.008854682557284832, -0.020483531057834625, 0.0002952858339995146, 0.00491140503436327, -0.017437610775232315, -0.08601044863462448, 0.0011209892109036446, -0.002549118362367153, -0.06762169301509857, 0.04160115867853165, -0.027605775743722916, -0.029847754165530205, 0.029123075306415558, -0.02848897874355316, 0.06857284158468246, -0.002883150475099683, -0.009098130278289318, -0.037728648632764816, 0.012217650189995766, 0.023733267560601234, 0.025250565260648727, 0.012964976951479912, -0.0004500941722653806, 0.019147401675581932, -0.01334996335208416, 0.031976502388715744, -0.04096706211566925, 0.03526020795106888, -0.000572879274841398, 0.04538308084011078, -0.0030232740100473166, -0.028103994205594063, 0.0024132407270371914, -0.0027217958122491837, -0.012908360920846462, -0.022159352898597717, 0.040197089314460754, 0.006912766955792904, -0.012783806771039963, 0.04345814883708954, 0.01445962954312563, -0.015773111954331398, 0.0007657262613065541, -0.0306630190461874, 0.02500145696103573, 0.017709365114569664, 0.020325006917119026, 0.046220991760492325, -0.03503374382853508, 0.005876701325178146, -0.04316374659538269, -0.017777305096387863, -0.03548666834831238, -0.010162503458559513, 0.008809390477836132, 0.0005980024579912424, -0.04651539400219917, -0.06811991333961487, 0.022363169118762016, -0.021049687638878822, 0.022023476660251617, -0.007190183736383915, -0.02876073494553566, 0.031636808067560196, -0.017233794555068016, 0.02690374292433262, -0.03249736502766609, 0.05602681636810303, -0.016124127432703972, -0.029938340187072754, -0.03904213011264801, 0.033878788352012634, 0.017414964735507965, 0.008537635207176208, 0.0022179167717695236, -0.014289782382547855, 0.017777305096387863, 0.018954908475279808, -0.02154790423810482, -0.018535953015089035, 0.013734948821365833, -0.02649611048400402, 0.03693602979183197, -0.025929953902959824, 0.025227919220924377, -0.038113635033369064, -0.002543456619605422, -0.02168378233909607, 0.02692638896405697, -0.005636084824800491, 0.052403416484594345, 0.014108612202107906, 0.030459202826023102, 0.006029563490301371, -0.04576806724071503, 0.01224029716104269, -0.015161662362515926, 0.00808471068739891, 0.02645081654191017, 0.025726137682795525, 0.013984058052301407, 0.0046990965493023396, -0.0014316674787551165, 0.011243862099945545, 0.023529451340436935, -0.03240678086876869, -0.06599116325378418, -0.06698760390281677, -0.003948939498513937, -0.01220632717013359, 0.021559227257966995, -0.08931680023670197, -0.022068768739700317, 0.018264198675751686, -0.014561537653207779, -0.017969798296689987, -0.029643937945365906, 0.046130407601594925, -0.027537837624549866, -0.0414879247546196, -0.013100854121148586, -0.01042859721928835, 0.011957218870520592, -0.002861919580027461, -0.0049142357893288136, -0.03449023514986038, -0.03313146159052849, 0.0009192961151711643, -0.020959101617336273, 0.006935413461178541, 0.013689656741917133, 0.01455021370202303, 0.022170675918459892, 0.0008598497370257974, 0.06504002213478088, -0.025771429762244225, 0.03236148878931999, 0.017505548894405365, -0.03492051362991333, -0.04252965375781059, -0.007954494096338749, 0.007082614116370678, -0.001997116021811962, 0.011742079630494118, -0.03109329752624035, 0.02488822676241398, -0.017958475276827812, -0.038045696914196014, -0.005143528804183006, -0.0008308342075906694, -0.016701607033610344, 0.031319759786129, -0.03548666834831238, -0.00285342731513083, 0.02495616488158703, -0.027854884043335915, -0.07409851998090744, -0.00044797107693739235, 0.010321027599275112, 0.003745123278349638, -0.017811274155974388, -0.030459202826023102, -0.06544765830039978, -0.03079889714717865, 0.012025157921016216, -0.08986031264066696, -0.00782993994653225, -0.0031789669301360846, 0.039925333112478256, 0.023325635120272636, 0.013791564851999283, -0.009183053858578205, 0.06852754205465317, 0.030300678685307503, 0.04515661671757698, -0.008282865397632122, 0.008509327657520771, 3.2797252060845494e-05, -0.04348079487681389, 0.04246171563863754, 0.04318639263510704, -0.04801004379987717, 0.06019372493028641, 0.02851162664592266, 0.04651539400219917, -0.05163344368338585, -0.07346443086862564, 0.014391690492630005, -0.017120562493801117, -0.015569294802844524, -0.01854727603495121, 0.030187448486685753, 0.015976928174495697, 0.02842104062438011, -0.04927823320031166, -0.004820819944143295, -0.04905177280306816, 0.0042773098684847355, -0.02685844898223877, 0.014697414822876453, 0.01760745793581009, 0.008526312187314034, 0.04986703768372536, 0.010156841948628426, -0.002417486859485507, 0.004908574279397726, 0.024208838120102882, -0.012455436401069164, -0.016067512333393097, 0.03297293558716774, 0.02237449213862419, -0.012421466410160065, -0.029213659465312958, 0.05303751304745674, 0.0022363169118762016, -0.0036913384683430195, -0.009143422357738018, -0.00609184056520462, -0.04169174283742905, 0.003583768615499139, -0.021332764998078346, -0.0202004536986351, -0.014131258241832256, -0.023393573239445686, 0.01731305569410324, 0.015535325743258, 0.013995381072163582, 0.06571941077709198, 0.05054642632603645, 0.027401959523558617, -0.005041620694100857, 0.027198143303394318, 0.04341285675764084, 0.03469405323266983, -0.04110293835401535, 0.006822182331234217, -0.028081346303224564, -0.06417946517467499, 0.03444494307041168, 0.00361207639798522, -0.029145721346139908, 0.02454853244125843, -0.00828852690756321, 0.02676786482334137, -0.006822182331234217, 0.03693602979183197, -0.005154852289706469, -0.0006946029025129974, -0.032021794468164444, 0.04110293835401535, 0.01427845936268568, -0.012115742079913616, 0.02681315690279007, 0.02127614989876747, -0.007999787107110023, -0.05720442160964012, 0.06454180926084518, -0.033924080431461334, 0.03888360783457756, 0.03541873022913933, -0.03535079210996628, -0.0314103439450264, -0.012546021491289139, 0.0626848116517067, 0.05820085480809212, 0.02484293282032013, -0.016271328553557396, 0.012591313570737839, -0.044092245399951935, -0.0008018186781555414, -0.0031308436300605536, -0.017109239473938942, -0.01767539605498314, 0.021106302738189697, -0.03512433171272278, -0.005452084355056286, 0.016056189313530922, -0.007009013555943966, 0.05575506016612053, -0.00613147160038352, -0.028262516483664513, -0.0009716655476950109, -0.03453552722930908, -0.023506805300712585, -0.010117211379110813, -0.035984888672828674, -0.011606201529502869, 0.014787999913096428, -0.011272169649600983, 0.008163971826434135, -0.030345972627401352, 0.002465610159561038, 0.011685463599860668, -0.034082602709531784, 0.017845243215560913, 0.035554610192775726, -0.0204042699187994, 0.01444830559194088, -0.002260378561913967, 0.044092245399951935, -0.01657705381512642, -0.027311375364661217, 0.011640171520411968, 0.020947778597474098, -0.004815158434212208, 0.03276912122964859, -0.02860221080482006, 0.00468211155384779, 0.012070450000464916, 0.006397564895451069, -0.021604519337415695, -0.029530707746744156, -0.035667840391397476, 0.008062063716351986, 0.014652121812105179, 0.028013408184051514, -0.01568252593278885, -0.02900984324514866, 0.0012731436872854829, -0.018558599054813385, 0.015059754252433777, -0.02669992670416832, -0.011306138709187508, -0.020959101617336273, 0.022974617779254913, -0.005403961054980755, -0.01646382175385952, 0.015625910833477974, 0.009035852737724781, 0.08474225550889969, -0.01740364171564579, -0.008967913687229156, -0.0016800685552880168, -0.0033403215929865837, -0.03326733782887459, -0.025386443361639977, -0.00722415279597044, -0.04470369219779968, 0.008628220297396183, 0.011753402650356293, 0.019079463556408882, 0.005678546614944935, 0.023755913600325584, 0.042325835675001144, 0.07074687629938126, 0.011447678320109844, 0.009126437827944756, 0.023438867181539536, 0.0031987824477255344, -0.0023127479944378138, -0.0025406258646398783, -0.030345972627401352, 0.025997892022132874, -0.010343673638999462, -0.014901231043040752, 0.006040886510163546, 0.056343864649534225, -0.05607210844755173, 0.027175497263669968, -0.02663198672235012, 0.0023240712471306324, -0.006510796025395393, 0.01859256997704506, 0.01957768201828003, -0.05367160588502884, -0.05743088573217392, 0.018400076776742935, 0.010638074949383736, 0.036188703030347824, -0.008809390477836132, 0.010502197779715061, -0.02633758634328842, -0.03317675366997719, 0.004667957779020071, 0.04137469455599785, -0.009143422357738018, 0.02083454839885235, 0.018309490755200386, -0.06780286878347397, -0.023733267560601234, 0.03433171287178993, -0.022193321958184242, -0.029689230024814606, -0.09022264927625656, -0.0030600742902606726, -0.023846499621868134, 0.014516244642436504, -0.06422475725412369, 0.0041810632683336735, -0.020132513716816902, -0.02232920005917549, 0.02441265434026718, -0.05281104892492294, 0.0018782231491059065, 0.009992657229304314, 0.02484293282032013, -0.01220632717013359, -0.01238749735057354, -0.0008945267763920128, 0.006442857440561056, -0.0413520485162735, 0.023167110979557037, -0.011583555489778519, -0.016678960993885994, -0.018649185076355934, -0.00312801287509501, -0.023484159260988235, 0.002549118362367153, 0.00019797774439211935, -0.060284312814474106, 0.015127693302929401, 0.000689295178744942, -0.0027699191123247147, -0.014436982572078705, -0.018241552636027336, 0.002727457555010915, -0.03233884274959564, -0.01027007307857275, 0.01671293005347252, 0.01957768201828003, -0.0046849423088133335, 0.023461513221263885, 0.0009759117383509874, -0.030232740566134453, 0.013723625801503658, -0.00545491511002183, 0.02300858683884144, -0.0308668352663517, 0.006884459406137466, 0.014436982572078705, 0.013429224491119385, -0.0020254238042980433, 0.0010396043071523309, 0.011589216999709606, 0.00535300699993968, 0.005678546614944935, -0.007875232957303524, 0.018026413396000862, 0.04986703768372536, 0.01246675942093134, 0.009511424228549004, 0.023484159260988235, 0.010632413439452648, 0.028013408184051514, -0.001319143921136856, -0.0009773271158337593, -0.03666427358984947, 0.019996637478470802, -0.03861185163259506, -0.04456781595945358, -0.006686304695904255, -0.008537635207176208, 0.031659454107284546, 0.018173614516854286, 0.003037428017705679, -0.011374077759683132, 0.03283705934882164, 0.006861812900751829, -0.010802259668707848, -0.027990762144327164, 0.007490246556699276, 0.0018499153666198254, 0.007580831181257963, 0.02891925908625126, -0.017029978334903717, -0.01738099567592144, -0.023178433999419212, 0.0009256653720512986, -0.0312744677066803, -0.025771429762244225, 0.0004667250032071024, 0.03646045923233032, -0.00815264880657196, 0.013814210891723633, 0.020121190696954727, -0.02636023238301277, 0.006895782425999641, 0.03331262990832329, -0.014187874272465706, 0.008537635207176208, 0.0034025986678898335, 0.019317248836159706, 0.005808762740343809, -0.01928327977657318, -0.013440548442304134, 0.023053880780935287, -0.054441578686237335, -0.02120821177959442, -0.007416645996272564, -0.0035186607856303453, 0.01424448937177658, 0.01341790147125721, 0.0415332168340683, -0.01329334732145071, -0.050319962203502655, -0.0005392637685872614, -0.005251098889857531, 0.0024712716694921255, -0.03233884274959564, -0.018626539036631584, -0.012195004150271416, -0.01662234589457512, -0.04499809443950653, 0.01948709599673748, 0.029440121725201607, -0.02425413206219673, -0.029440121725201607, -0.014663445763289928, -0.018264198675751686, -0.006505134515464306, 0.002496748697012663, -0.02452588640153408, -0.006691966205835342, -0.026020538061857224, -0.007360030431300402, -0.021072333678603172, -0.03852126747369766, 0.0023537944070994854, -0.008118679746985435, -0.011628848500549793, 0.02166113629937172, 0.02629229426383972, 0.04964057356119156, -0.010677705518901348, 0.03308616951107979, -0.06331890821456909, 0.007025998551398516, 0.03501109778881073, -0.034105248749256134, -0.0038951546885073185, 0.02470705658197403, 0.021989505738019943, 0.03530550003051758, -0.007082614116370678, -0.021717751398682594, -0.021219534799456596, 0.0024104099720716476, -0.006941074971109629, 0.006397564895451069, -0.020755285397171974, -0.022046122699975967, 0.023733267560601234, -0.0312744677066803, 0.013814210891723633, 0.004687773063778877, 0.02876073494553566, 0.06318303197622299, 0.036098118871450424, -0.00015020831779111177, 0.07414381206035614, -0.010066256858408451, -0.018173614516854286, -0.018875647336244583, 0.02864750288426876, 0.008214926347136497, 0.0202457457780838, -0.0005176790873520076, -0.031455639749765396, -0.027492545545101166, 0.06472297757863998, -0.0010127119021490216, 0.05761205404996872, -0.04262023791670799, 0.0203816220164299, -0.029666583985090256, 0.0010261581046506763, 0.004857620224356651, -0.017233794555068016, -0.010422935709357262, -0.022793447598814964, 0.025771429762244225, 0.007444954011589289, 0.004583034198731184, 0.01772068813443184, -0.004203709773719311, 0.007965818047523499, 0.03901948407292366, 0.034263771027326584, -0.020189130678772926, 0.011889279820024967, -0.014289782382547855, -0.06843695789575577, -0.003521491540595889, 0.0013127747224643826, -0.035509318113327026, -0.058427318930625916, -0.05380748584866524, -0.002164131961762905, -0.02445794828236103, 0.0038470313884317875, 0.04488486424088478, 0.016905423253774643, -0.029508059844374657, 0.010156841948628426, -0.038249511271715164, -0.018717123195528984, -0.021264826878905296, 0.016746900975704193, 0.006340949330478907, 0.013463194482028484, -0.01452756766229868, -0.02280477061867714, -0.0071845222264528275, 0.060374896973371506, -0.0023184095043689013, 0.030413910746574402, 0.025386443361639977, -0.009879425168037415, 0.039721518754959106, 0.020755285397171974, 0.013361286371946335, -0.01923798769712448, 0.02468441054224968, -0.03129711374640465, 0.008571605198085308, 0.02172907441854477, -0.05466804280877113, 0.018954908475279808, -0.04864414036273956, -0.01422184333205223, -0.0006139256292954087, -0.021332764998078346, -0.006488149985671043, -0.01234220527112484, -0.0021457320544868708, -0.029711876064538956, -0.004124447703361511, 0.014085966162383556, 0.016475144773721695, -0.040265027433633804, 0.03655104339122772, -0.016826162114739418, -0.005256760399788618, 0.006578735075891018, -0.01448227558284998, 0.010151180438697338, 0.027651067823171616, -0.01843404583632946, 0.02694903500378132, -0.001864069257862866, -0.0051774983294308186, 0.00871314387768507, 0.002116008661687374, -0.003521491540595889, 0.01535415556281805, 0.03084418922662735, 0.0018032074440270662, 0.008605574257671833, -0.03888360783457756, 0.0025760107673704624, 0.015467386692762375, -0.027356667444109917, -0.027288729324936867, -0.005562484730035067, 0.018886970356106758, 0.05004820600152016, 0.010094565339386463, -0.05534742772579193, -0.03433171287178993, -0.009103791788220406, -0.012127066031098366, -0.0011528355535119772, 0.00271896505728364, -0.023755913600325584, -0.02269154042005539, 0.014776676893234253, -0.016361914575099945, -0.009500101208686829, 0.0014238827861845493, -0.024163546040654182, 0.028353102505207062, 0.05901611968874931, -0.034195832908153534, -0.017052624374628067, -0.0026637648697942495, 0.007207168266177177, -0.04563218727707863, 0.0024019177071750164, -0.005961624905467033, 0.012659252621233463, -0.037909816950559616, 0.016611022874712944, 0.003937616478651762, 0.019339894875884056, -0.014674768783152103, -0.014085966162383556, 0.08433462679386139, -0.021717751398682594, -0.01875109225511551, 0.014289782382547855, -0.03326733782887459, -0.008118679746985435, 0.02191024459898472, -0.009936041198670864, 0.01740364171564579, 0.00982281006872654, -0.0047104195691645145, -0.024140900000929832, -0.017992444336414337, 0.026156416162848473, 0.025114689022302628, 0.009754871018230915, 0.004172571003437042, 0.0005088328616693616, -0.008090372197329998, -0.012421466410160065, 0.029236305505037308, -0.0015314525226131082, -0.029168367385864258, 0.01427845936268568, -0.025862013921141624, -0.0007345876656472683, 0.00039454008219763637, 0.013123500160872936, 0.014051997102797031, 0.007609139196574688, 0.004815158434212208, 0.008294188417494297, -0.031206529587507248, -0.01238749735057354, 0.020800579339265823, 0.02436736226081848, 0.06001255661249161, -0.021468643099069595, 0.004622665233910084, -0.0021174242720007896, -0.016905423253774643, 0.016996009275317192, 0.007903540506958961, 0.03920065611600876, -0.012002510949969292, 0.009188715368509293, -0.006691966205835342, -0.017765982076525688, -0.016293974593281746, 0.016814839094877243, -0.033561740070581436, -0.025318505242466927, 0.0018909616628661752, -0.004917066544294357, -0.024072961881756783, -0.060510773211717606, -0.022408461198210716, 0.017845243215560913, 0.010592781938612461, 0.013361286371946335, 0.01769804209470749, 0.033946726471185684, -0.009494439698755741, -0.002300009597092867, -0.0014606829499825835, 0.018354782834649086, 0.027583129703998566, 0.008475358597934246, 0.014018027111887932, -0.008022433146834373, -0.02047220803797245, 0.022091414779424667, -0.009539731778204441, 0.03095742128789425, -0.011617525480687618, -0.01062675192952156, -0.022680217400193214, 0.015648556873202324, 0.029508059844374657, -0.002425979357212782, 0.01027007307857275, -0.02188759855926037, 0.005760639440268278, 0.04597188159823418, 0.06671584397554398, 0.00964163988828659, 0.027537837624549866, 0.009992657229304314, 0.011102322489023209, 0.007994125597178936, 0.006708950735628605, -0.008509327657520771, -0.022612277418375015, -0.017958475276827812, 0.006188087165355682, 0.005401129834353924, -0.03670956566929817, 0.02654140256345272, -0.027288729324936867, -0.011204230599105358, 0.012546021491289139, 0.03245207294821739, -0.0102927191182971, -0.004274479113519192, 0.032135024666786194, 0.013825533911585808, 0.0311159435659647, -0.006176764145493507, -0.007535539101809263, -0.020325006917119026, 0.029304243624210358, 0.02842104062438011, 0.002219332382082939, 0.012897037900984287, 0.015976928174495697, -0.006533442530781031, 0.026156416162848473, 0.013565102592110634, 0.04341285675764084, -0.008192280307412148, 0.013361286371946335, 0.0019730543717741966, 0.0025774261448532343, 0.006397564895451069, 0.027764299884438515, -0.012330882251262665, -0.01141370926052332, 0.06345478445291519, 0.03911006823182106, 0.040197089314460754, -0.017131885513663292, 0.018083028495311737, 0.0102474270388484, -0.029847754165530205, 0.02903248928487301, 0.00045469417818821967, -0.00886034406721592, 0.048372384160757065, 0.005978609435260296, -0.0615072101354599, 0.0005997717380523682, 0.00720150675624609, 0.022748155519366264, 0.009375546127557755, -0.005757808685302734, 0.003442229703068733, 0.019826790317893028, 0.01616942137479782, 0.03738895431160927, -0.005276575684547424, 0.0005134328966960311, 0.03143298998475075, 0.019973989576101303, 0.018309490755200386, -0.016792193055152893, 0.03057243488729, 0.020687347277998924, 0.010473889298737049, 0.010253088548779488, -0.02031368389725685, 0.025726137682795525, 0.028149286285042763, 0.0406273677945137, -0.008531973697245121, 0.0034903530031442642, -0.01218368113040924, -0.022023476660251617, -0.0009284961270168424, 0.044046953320503235, 0.0157051719725132, -0.02669992670416832, 0.012455436401069164, -0.03435435891151428, 0.01832081377506256, -0.0015257908962666988, 0.006567411590367556, -0.016848808154463768, 0.010185149498283863, 0.02120821177959442, -0.014584183692932129, 0.009986994788050652, 0.025182627141475677, 0.046311575919389725, -0.008396096527576447, 0.006035225000232458, -0.01319143921136856, 0.04141998663544655, 0.00465946551412344, -0.02629229426383972, -0.00022292400535661727, 0.0031874594278633595, 0.029213659465312958, 0.05113522708415985, 0.018015090376138687, 0.023416219279170036, -0.027832238003611565, 0.03514697775244713, -0.0404914915561676, 0.0036828459706157446, 0.02669992670416832, -0.01854727603495121, 0.015048431232571602, 0.005386976059526205, 0.007326060906052589, -0.029983632266521454, 0.018026413396000862, 0.0013842518674209714, -0.024118253961205482, -0.02285006456077099, 0.011979864910244942, -0.020109867677092552, -0.006867474410682917, 0.027583129703998566, -0.02072131633758545, -0.021196886897087097, 0.018468014895915985, -0.01719982549548149, 0.028149286285042763, 0.007252460811287165, 0.00615411764010787, 0.031750038266181946, 0.012500728480517864, 0.035758424550294876, 0.03886096179485321, 0.031659454107284546, -0.025114689022302628, 0.011215554550290108, 0.008299849927425385, -0.002009854419156909, 0.02132144197821617, 0.014855938032269478, 0.027175497263669968, -0.008413081057369709, -0.03256530314683914, -0.020302360877394676, -0.012987622991204262, -0.009352900087833405, -0.04305051639676094, -0.03075360506772995, 0.020075898617506027, 0.02235184609889984, -0.01760745793581009, -0.001504560117609799, -0.003320506075397134, -0.025884661823511124, -0.007858247496187687, -0.004571711178869009, 0.040197089314460754, -0.06802932918071747, 0.006227718200534582, 0.015161662362515926, -0.006629689130932093, -0.009081145748496056, -0.01327070128172636, -0.02163849025964737, -0.023642683401703835, 0.016067512333393097, -0.017347026616334915, 0.012398820370435715, -0.027469897642731667, 0.008667850866913795, -0.020347652956843376, -0.036098118871450424, 0.012783806771039963, 0.02172907441854477, 0.01241014339029789, -0.02896455116569996, 0.03285970538854599, 0.04887060075998306, 0.03904213011264801, 0.01930592581629753, 0.006958059500902891, -0.001272435998544097, -0.006023901980370283, 0.003914969973266125, 0.04529249668121338, -0.04286934807896614, 0.006884459406137466, 0.014097289182245731, 0.005718177650123835, -0.03689073771238327, -0.006448518950492144, -0.0022943478543311357, -0.017256440594792366, -0.013712302781641483, 0.007762001361697912, 0.010621090419590473, 0.038249511271715164, 0.018094351515173912, 0.005797439254820347, -0.022431109100580215, -0.002297178842127323, 0.04714948683977127, 0.01042859721928835, 0.0018385922303423285, 0.02257830835878849, -0.0050925747491419315, -0.00120237423107028, 0.02042691595852375, -0.02903248928487301, 0.05208636820316315, -0.014991816133260727, 0.0045915269292891026, 0.031704746186733246, 0.01230823528021574, 0.008962252177298069, -0.013361286371946335, -0.018739769235253334, 0.03487522155046463, -0.023552097380161285, 0.01440301351249218, -0.00405367836356163, -0.025612905621528625, -0.006912766955792904, -0.015988251194357872, 0.009805825538933277, -0.01841139979660511, -0.009488778188824654, -0.03229355067014694, -0.0002167316706618294, 0.0022957634646445513, 0.008475358597934246, -0.0014974831137806177, 0.027696361765265465, 0.029779816046357155, -0.03342586010694504, 0.03274647518992424, -0.046356867998838425, -0.03895154595375061, -0.01671293005347252, -0.002727457555010915, 0.013383932411670685, -0.007863909937441349, -0.04361667484045029, 0.014686091803014278, 0.018264198675751686, -0.016860131174325943, -0.0049255588091909885, -0.006799535825848579, -0.015795757994055748, 0.0072920918464660645, 0.016271328553557396, 0.025544967502355576, 0.04968586564064026, 0.006748581770807505, 0.01760745793581009, -0.0003611014981288463, 0.016203390434384346, -0.026065830141305923, 0.006380580365657806, 0.021513935178518295, 0.025114689022302628, -0.0046990965493023396, -0.004738727118819952, -0.014618152752518654, 0.044363997876644135, -0.0036856767255812883, -0.030187448486685753, 0.02159319631755352, 0.018241552636027336, -0.0203816220164299, -0.007541200611740351, 0.0016517606563866138, -0.029145721346139908, -0.046424806118011475, -0.0010006810771301389, -0.013553779572248459, 0.008514989167451859, 0.006629689130932093, -0.008316834457218647, 0.021978182718157768, -0.029960986226797104, 0.003405429422855377, 0.007654431741684675, 0.0018966232892125845, -0.00966428592801094, 0.022181998938322067, 0.0024132407270371914, -0.030345972627401352, -0.031840622425079346, 0.0027444420848041773, 0.01334996335208416, 0.03308616951107979, -0.0046254959888756275, 0.0028987196274101734, -0.015671202912926674, 0.008582928217947483, -0.012761160731315613, 0.05489450320601463, -0.013508486561477184, -0.028353102505207062, -0.001242712838575244, -0.03462611138820648, 0.0003520783793646842, 0.025975245982408524, -0.004472633823752403, -0.011136292479932308, 0.02441265434026718, 0.0154107715934515, 0.0013219746761023998, -0.014074643142521381, 0.0045915269292891026, -0.014470952562987804, 0.05068230256438255, -0.01939651183784008, -0.037932462990283966, 0.009256653487682343, 0.022227292880415916, 0.005921993870288134, -0.019000202417373657, -0.03304087370634079, -9.30508667806862e-06, -0.004246171563863754, -0.0016843146877363324, -0.011283492669463158, 0.008362126536667347, 0.02869279496371746, 0.027424605563282967, 0.01845669187605381, -0.025567613542079926, 0.00382155436091125, -0.030821543186903, 0.010156841948628426, -0.06354536861181259, 0.005933316890150309, 0.006725935731083155, 0.04868943244218826, 0.01772068813443184, 0.003963093273341656, -0.03104800544679165, 0.03743424639105797, 0.012274266220629215, 0.01331599336117506, 0.008447050116956234, -0.015546648763120174, 0.010507859289646149, -0.013134823180735111, 0.012330882251262665, 0.01719982549548149, -0.029349537566304207, -0.011832664720714092, -0.021332764998078346, -0.00911511480808258, -0.00461983447894454, -0.00861123576760292, 0.0021867782343178988, 0.01756216585636139, 0.0007296337862499058, 0.02656404860317707, 0.008062063716351986, 0.015591941773891449, 0.03494315966963768, -0.01639588363468647, -0.006239041220396757, -0.002812380902469158, 0.03342586010694504, -0.009200038388371468, -0.026111124083399773, -0.013406578451395035, 0.03451288118958473, 0.0005290021654218435, -0.006408887915313244, 0.0154107715934515, -0.008226249366998672, 0.0005587253835983574, 0.023642683401703835, 0.014776676893234253, -0.00959634780883789, 0.0016715761739760637, -0.0008188033825717866, 0.04255229979753494, -0.006867474410682917, 0.02141202799975872, 0.02486558072268963, 0.019181372597813606, 0.011549586430191994, -0.009347238577902317, 0.031840622425079346, 0.026269646361470222, -0.02504674904048443, -0.0035950918681919575, 0.034150540828704834, 0.01538812555372715, 0.013078208081424236, -0.006590058095753193, 0.0022051783744245768, -0.03915536403656006, -0.029394829645752907, -0.0313650518655777, -0.00033350137528032064, -0.016112804412841797, 0.01072866003960371, -0.007909202016890049, -0.0055002071894705296, 0.009788841009140015, 0.030006278306245804, -0.01930592581629753, 0.02472970262169838, -0.019702235236763954, -0.012919683940708637, -0.014708737842738628, -0.027130205184221268, -0.027379313483834267, -0.001019081100821495, 0.0069807060062885284, -0.01230823528021574, 0.009466131217777729, -0.007009013555943966, -0.004990666639059782, -0.029417475685477257, 0.013893472962081432, 0.014652121812105179, -0.00673725875094533, 0.005474730394780636, -0.010881521739065647, 0.022148029878735542, 0.02275947853922844, -0.023869145661592484, -0.004523587878793478, -0.001660253037698567, 0.03245207294821739, -0.05068230256438255, 0.0019872081466019154, 0.0412161722779274, -0.011447678320109844, -0.02633758634328842, 0.013304670341312885, 0.027130205184221268, -0.015003139153122902, 0.03892889991402626, 0.008169634267687798, 0.02629229426383972, 0.01440301351249218, 0.024208838120102882, -0.0001847084640758112, 0.04377519711852074, -0.05761205404996872, 0.012863068841397762, -0.023937083780765533, -0.006754243280738592, 0.033992018550634384, 0.018864324316382408, -0.013553779572248459, -0.01669028401374817, -0.005174667574465275, 0.0012370513286441565, -0.015229601413011551, -0.006754243280738592, -0.01440301351249218, -0.01715453341603279, 0.015139016322791576, -0.012659252621233463, -0.003756446298211813, 0.025726137682795525, -0.037819232791662216, 0.005653069354593754, 0.040310319513082504, 0.024072961881756783, -0.036301933228969574, -0.012851745821535587, -0.012478082440793514, -0.040015920996665955, -0.04345814883708954, -0.01213838905096054, 0.003657368943095207, 0.03342586010694504, -0.006742920260876417, 0.006471165455877781, 0.03301822766661644, 0.009250991977751255, -0.0013516979524865746, 0.03256530314683914, -0.005681377369910479, 0.016950717195868492, 0.013825533911585808, 0.014018027111887932, -0.0077280318364501, -0.03879302367568016, -0.04950469732284546, -0.005381314549595118, 0.007246799301356077, -0.004449987784028053, -0.0023990869522094727, -0.013621717691421509, -0.0016659145476296544, -0.0002514087245799601, -0.01825287565588951, 0.012738514691591263, -0.001474836841225624, -0.034150540828704834, -0.0405367836356163, -0.006408887915313244, -0.035622548311948776, 0.012534698471426964, 0.007371353451162577, -0.02685844898223877, -0.004707588814198971, -0.008843359537422657, 0.02177436649799347, -0.025839367881417274, 0.018490660935640335, -0.0417596809566021, -0.02457117848098278, 0.026088478043675423, -0.037660710513591766, 0.01331599336117506, 0.018377430737018585, 0.019951343536376953, 0.02454853244125843, -0.029983632266521454, 0.017256440594792366, -0.011855310760438442, 0.015693848952651024, -0.031636808067560196, -0.008905637077987194, 0.01866050809621811, -0.010315366089344025, -0.017188502475619316, 0.0047585428692400455, 0.0031676439102739096, -0.0019348388304933906, -0.038181573152542114, 0.0073034148663282394, 0.03068566508591175, 0.031953856348991394, -0.010926814749836922, -0.0014691753312945366, -0.01555797178298235, 0.02457117848098278, 0.01345187146216631, 0.020098544657230377, 0.007105260156095028, -0.02287271060049534, 0.027673713862895966, -0.031908564269542694, -0.010236104018986225, -0.016033543273806572, 0.0050104823894798756, 0.014018027111887932, -0.002764257602393627, 0.022702863439917564, 0.0031478283926844597, -0.038226865231990814, 0.019124755635857582, 0.022272584959864616, 0.005058605689555407, -0.006680643185973167, 0.006680643185973167, 0.03256530314683914, 0.000999973388388753, 0.05974080041050911, -0.001464929198846221, -0.005072759464383125, -0.02882867306470871, 0.02287271060049534, 0.011181584559381008, -0.02631494030356407, -0.011843987740576267, 0.035916950553655624, -0.005522853694856167, 0.018445368856191635, 0.02457117848098278, 0.034195832908153534, 0.007467600051313639, -0.006725935731083155, 0.009839794598519802, -0.017437610775232315, 0.04339021071791649, 0.035916950553655624, -0.015818404033780098, -0.024186192080378532, -0.044137537479400635, -0.014267136342823505, 0.01137973926961422, -0.02248772419989109, 0.036030180752277374, -0.04334491863846779, 0.02193289063870907, -0.025522321462631226, -0.02463911660015583, 0.02188759855926037, 0.008169634267687798, -0.033856138586997986, -0.018071705475449562, -0.024208838120102882, -0.031772684305906296, 0.009047175757586956, 0.0019489927217364311, -0.005259591154754162, -0.007988464087247849, 0.0025675182696431875, -0.016271328553557396, 0.006205071695148945, 0.012647929601371288, 0.026269646361470222, 0.022000828757882118, -0.01563723385334015, 0.015071078203618526, -0.030096862465143204, -0.004639649763703346, -0.009290623478591442, 0.03634722903370857, -0.013848180882632732, 0.016633668914437294, -0.004492449574172497, 0.005302052944898605, 0.029485413804650307, 0.03956299647688866, -0.025295859202742577, -0.006363595370203257, 0.0023495482746511698, 0.011934572830796242, 0.012829098850488663, -0.019294602796435356, 0.015761788934469223, -0.030119508504867554, -0.012070450000464916, -0.0036856767255812883, -0.027854884043335915, -0.015218278393149376, 0.02900984324514866, -0.012500728480517864, 0.03956299647688866, 0.010134195908904076, 0.007377014961093664, 0.01753951795399189, -0.025454381480813026, 0.023019909858703613, -0.011051368899643421, 0.01838875375688076, -0.006941074971109629, 0.027311375364661217], [0.06788092851638794, 0.02610107697546482, 0.057775821536779404, 0.016675688326358795, -0.04207439348101616, 0.043229907751083374, -0.027437850832939148, 0.009833218529820442, 0.014194726012647152, 0.01732141710817814, -0.025647932663559914, 0.013277110643684864, -0.018907420337200165, 0.02209075540304184, 0.012189565226435661, 0.018658192828297615, 0.032399773597717285, 0.005480206571519375, -0.018544906750321388, 0.008003650233149529, 0.02280445769429207, 0.03187865763902664, -0.037542954087257385, -0.020198879763484, -0.0030162378679960966, -0.0365007258951664, 0.010495941154658794, -0.03287557512521744, 0.0582742802798748, -0.05868211016058922, 0.017763232812285423, -0.01741204597055912, 0.02786833792924881, -0.02390333078801632, -0.013333753682672977, -0.033713892102241516, -0.020584052428603172, 0.026916736736893654, -0.0303606279194355, 0.0170268751680851, -0.012744667008519173, -0.003800742793828249, -0.0052111526019871235, -0.004593744408339262, -0.01719680428504944, 0.10150419175624847, 0.009346088394522667, -0.03258103132247925, -0.0008701775223016739, 0.016131915152072906, 0.02331424318253994, 0.0729561373591423, 0.01821637712419033, -0.04134936258196831, 0.02555730566382408, 0.04060167446732521, 0.01488577015697956, 0.025534648448228836, -0.012925923801958561, -0.02829882502555847, -0.051205240190029144, 0.0022473095450550318, 0.006978413090109825, 0.009946504607796669, -0.009810561314225197, -0.03353263437747955, -0.007941343821585178, 0.011861036531627178, -0.04588079825043678, -0.016007300466299057, 0.0023662596940994263, -0.0015874190721660852, -0.007731764577329159, 0.02213606983423233, -0.018726162612438202, -0.010694191791117191, -0.03428032249212265, -0.008088614791631699, 0.029998112469911575, 0.00012877423432655632, -0.0631682351231575, -0.0039253574796020985, -0.056144505739212036, 0.02264585718512535, 0.027120649814605713, 0.009884197264909744, -0.039740703999996185, -0.013084524311125278, -0.01669834554195404, -0.011577821336686611, 0.02453773096203804, -0.024016616865992546, -0.009855875745415688, 0.022362641990184784, -0.02977154031395912, -0.006525269243866205, 0.030202027410268784, -0.0034382278099656105, -0.03346466273069382, 0.061582230031490326, 0.0032824596855789423, 0.02112782560288906, 0.009312103502452374, 0.04712694510817528, 0.008502108976244926, -0.08197369426488876, -0.03335137665271759, 0.016754988580942154, 0.011985651217401028, -0.02943168394267559, 0.0036449746694415808, -0.0509333536028862, -0.03165208920836449, 0.041802506893873215, -0.01623387262225151, -0.0004520816437434405, 0.01322046760469675, 0.007131348829716444, 0.01745736040174961, -0.02879728190600872, 0.03423500806093216, 0.0074938638135790825, -0.02125244028866291, -0.07617345452308655, -0.022373970597982407, 0.017151489853858948, -0.025534648448228836, 0.04452136904001236, -0.044544026255607605, -0.004919441416859627, 0.01699288934469223, -0.04717225953936577, 0.06452766060829163, -0.028004281222820282, 0.005392409861087799, -0.026191705837845802, 0.002925609005615115, 0.04173453524708748, -0.0005066004814580083, 0.018737491220235825, 0.009561331942677498, -0.0002780815411824733, 0.021943483501672745, 0.02162628248333931, -0.046945687383413315, 0.015746744349598885, -0.019757065922021866, 0.03462017700076103, 0.021977469325065613, -0.03559443727135658, -0.0013388980878517032, -0.0016794638941064477, -0.04264082387089729, -0.0254666768014431, 0.009538674727082253, 0.024379130452871323, 0.029590284451842308, 0.06769967079162598, 0.021275097504258156, -0.02233998477458954, 0.01939455047249794, -0.019836366176605225, 0.02403927408158779, 0.05328970029950142, 0.01618855819106102, 0.005225313361734152, -0.016290515661239624, 0.014500598423182964, -0.03482409194111824, -0.03081377223134041, -0.028887910768389702, 0.0003777377714868635, -0.002168009290471673, -0.028638681396842003, -0.06865127384662628, -0.03892504423856735, 0.017899176105856895, -0.012869280762970448, 0.004735351540148258, -0.028616024181246758, -0.00860406644642353, 0.03267166018486023, 0.00028569294954650104, -0.0004750928492285311, -0.014296683482825756, 0.06552457809448242, 0.007086034864187241, -0.0014996224781498313, -0.02057272382080555, 0.053652215749025345, 0.0009006230975501239, 0.005429227836430073, 0.016177229583263397, 0.021898169070482254, 0.018578892573714256, 0.005998489912599325, -0.01569010131061077, 0.0055170245468616486, 0.005369752645492554, -0.04563157260417938, 0.03659135475754738, -0.04128139093518257, 0.02601044811308384, -0.03824532777070999, -0.028344139456748962, -0.051159925758838654, 0.03763358294963837, 0.01117565669119358, -0.0007597237126901746, -0.017740575596690178, 0.04221033677458763, -0.007839386351406574, -0.02474164590239525, 0.005760589148849249, 0.014443955384194851, -0.010167411528527737, 0.021411040797829628, 0.03452955186367035, -0.01486311387270689, 0.0002754263987299055, 0.0006269668228924274, 0.007352256681770086, -0.001755931880325079, -0.015055699273943901, -0.04794260486960411, -0.046016741544008255, -0.005027062725275755, -0.018205048516392708, 0.006842469796538353, -0.05949776992201805, -0.0408962182700634, 0.025647932663559914, 0.016120586544275284, -0.03187865763902664, -0.019836366176605225, 0.014206054620444775, -0.008966580964624882, -0.033238090574741364, -0.012642709538340569, 0.021682925522327423, 0.00044287717901170254, 0.020391466096043587, -0.00013417302398011088, -0.02997545525431633, -0.020391466096043587, -0.00790735799819231, -0.0016610549064353108, 0.0021156147122383118, 0.022838443517684937, 0.014976399019360542, 0.025897162035107613, 0.005480206571519375, 0.06602303683757782, -0.04957392066717148, -0.014285354875028133, 0.014115426689386368, -0.04350179433822632, -0.034302979707717896, 0.009238467551767826, 0.01598464325070381, 0.01469318475574255, 0.007046384736895561, -0.046991001814603806, 0.0030785449780523777, -0.013073195703327656, -0.04535968601703644, 0.02884259633719921, -0.011441878043115139, -0.02678079344332218, 0.05922588333487511, -0.06584177911281586, 0.023744730278849602, 0.032649002969264984, -0.040080562233924866, -0.09588520973920822, 0.028910567983984947, 0.011849707923829556, -0.010699856095016003, -0.020674681290984154, -0.036455411463975906, -0.0509333536028862, -0.026622192934155464, 0.02250991389155388, -0.06452766060829163, 0.002919944701716304, 0.004095286130905151, 0.0011541004059836268, 0.019043363630771637, 0.04182516410946846, 0.0013459783513098955, 0.07096230238676071, 0.03756561130285263, 0.02854805253446102, 0.002088709268718958, 0.0008807980921119452, 0.008717351593077183, -0.061582230031490326, 0.04318459331989288, 0.024152560159564018, -0.05868211016058922, 0.011668450199067593, 0.045767512172460556, 0.03262634575366974, -0.04266348108649254, -0.04565422981977463, -0.020482094958424568, 0.0015477689448744059, 0.0020249858498573303, -0.02369941584765911, -0.0013509346172213554, 0.010167411528527737, 0.015758072957396507, -0.06280571967363358, -3.4428299841238186e-05, -0.026214363053441048, -0.007063377648591995, -0.019507836550474167, -0.01256340928375721, 0.042391594499349594, 0.01981370896100998, 0.03899301588535309, 0.0091251814737916, -0.0252174474298954, -0.01273333840072155, 0.015871359035372734, -0.028910567983984947, -0.022283341735601425, 0.04447605460882187, 0.00940273143351078, -0.00010903770453296602, -0.02255522832274437, 0.04329787939786911, 0.01068852748721838, 0.017140161246061325, -0.018907420337200165, -0.015372900292277336, -0.029703570529818535, 0.015361571684479713, -0.0010776324197649956, -0.021512996405363083, -0.020096922293305397, -0.007137013133615255, 0.03162943199276924, 0.002812323160469532, 0.0008843382820487022, 0.05655233561992645, 0.06457297503948212, 0.03403109312057495, -0.03439360857009888, 0.010830134153366089, 0.05229278281331062, 0.025851847603917122, -0.012846623547375202, -0.007216313388198614, -0.05650702118873596, -0.05025363713502884, 0.010671534575521946, 0.003310781205072999, -0.015633458271622658, 0.02727925032377243, -0.025104161351919174, 0.014659198932349682, 0.006740512792021036, 0.034846749156713486, 0.028344139456748962, -0.004588080104440451, -0.04098684713244438, -0.016460444778203964, 0.011464535258710384, 0.007108691614121199, 0.011028384789824486, 0.025783875957131386, 0.004038643091917038, -0.04921140521764755, 0.05859148129820824, -0.023518158122897148, 0.03065517172217369, 0.03115362860262394, -0.039989933371543884, -0.014749827794730663, 0.016551073640584946, 0.02596513368189335, 0.051794324070215225, 0.022906413301825523, -0.013798225671052933, 0.029816854745149612, -0.039355531334877014, 0.00866070855408907, -0.0019315250683575869, -0.025489334017038345, 0.01329976785928011, 0.022362641990184784, 0.004253886640071869, 0.02158096805214882, -0.002959594829007983, -0.0067461770959198475, 0.03167474642395973, -0.03373654931783676, -0.01488577015697956, 0.005117691587656736, -0.0010507269762456417, -0.02365410141646862, 0.006089118309319019, -0.00934042502194643, 0.011288942769169807, 0.017298761755228043, 0.00506954500451684, 0.01902070641517639, -0.009380074217915535, 0.006853798404335976, 0.018522249534726143, -0.004347347188740969, 0.0057549248449504375, 0.04311662167310715, -0.025693247094750404, 0.016619045287370682, -0.017763232812285423, 0.05872742459177971, -0.03394046425819397, -0.024084588512778282, -0.010099439881742, 0.040873561054468155, -0.004007489420473576, 0.05501164495944977, -0.039491474628448486, -0.0005936890374869108, 0.03187865763902664, -0.0049562593922019005, -0.01562212873250246, -0.02854805253446102, -0.034257665276527405, 0.010376990772783756, 0.01660771667957306, 0.05899931117892265, -0.03933287411928177, 0.015452200546860695, -0.011164328083395958, -0.0023351062554866076, 0.02331424318253994, -0.012076280079782009, -0.023880673572421074, -0.02142236940562725, 0.04341116547584534, 0.007607149891555309, 0.01959846541285515, 0.021309083327651024, -0.006683869753032923, 0.07875637710094452, 0.022543899714946747, -0.010728176683187485, 0.029794197529554367, -0.027052678167819977, -0.020289508625864983, -0.019915666431188583, -0.02571590431034565, -0.04590345546603203, -0.010490276850759983, -0.02870665304362774, 0.02453773096203804, 0.011051042005419731, 0.04520108550786972, 0.03344200551509857, 0.06108377128839493, 0.0186015497893095, -0.016890931874513626, 0.008315186947584152, 0.00023453726316802204, 0.003914028871804476, 0.004834476858377457, -0.03711247071623802, 0.029023854061961174, -0.013605639338493347, -0.030111398547887802, -0.011691107414662838, 0.024764303117990494, -0.04658317193388939, 0.0044181509874761105, -0.025013532489538193, -0.009391402825713158, -0.001331817707978189, 0.02664485014975071, 0.00990685448050499, -0.0730014517903328, -0.06738246977329254, 0.04418151080608368, 0.01643778756260872, 0.06964818388223648, -0.004718358628451824, -0.004302033223211765, -0.00410944689065218, -0.04406822472810745, 0.012450123205780983, 0.04531437158584595, -0.008468123152852058, 0.0017842532834038138, 0.003441059961915016, -0.03443892300128937, -0.036070238798856735, 0.01572408713400364, -0.009861540049314499, 0.007142677437514067, -0.0832424983382225, 0.016029957681894302, -0.023472843691706657, 0.024651017040014267, -0.06180880218744278, -0.012359494343400002, 0.0013962490484118462, -0.0037044498603791, 0.00589086813852191, -0.044158853590488434, 0.00851910188794136, 0.007080370560288429, 0.011322928592562675, 0.004010321572422981, -0.009940840303897858, 0.031085658818483353, 0.007816729135811329, -0.029363712295889854, 0.026916736736893654, -0.0026338978204876184, -0.020425451919436455, -0.020380137488245964, -0.009323432110249996, -0.02580653317272663, 0.00658757658675313, -0.003004909260198474, -0.05986028164625168, 0.024220531806349754, 0.01846560649573803, -0.02972622774541378, -0.03314746171236038, 0.0212977547198534, -0.01968909427523613, -0.039060987532138824, -0.009153502993285656, 0.019258607178926468, 0.01631317287683487, -0.01576940156519413, -0.003687456948682666, 0.0059531754814088345, -0.043841652572155, 0.01581471599638462, 0.0030530556105077267, 0.010133425705134869, -0.024107245728373528, 0.020935239270329475, 0.018907420337200165, 0.007890365086495876, -0.0020391466096043587, -0.012699352577328682, 0.017729246988892555, -0.009448045864701271, -0.014908427372574806, -0.028819939121603966, 0.02748316526412964, 0.019926995038986206, 0.014285354875028133, 0.010801812633872032, 0.011645792983472347, 0.017729246988892555, 0.027211278676986694, -0.01564478687942028, -0.004857134073972702, -0.024175217375159264, 0.010207061655819416, -0.04515577107667923, -0.04017118737101555, 0.021818868815898895, 0.006361004896461964, 0.003180502448230982, 0.01758197508752346, -0.030836429446935654, 0.02567058987915516, 0.04884888976812363, 0.0031493487767875195, -0.0010981654049828649, -0.04051104560494423, 0.01576940156519413, -0.02870665304362774, 0.00736924959346652, 0.02360878698527813, -0.012053622864186764, 8.186678314814344e-05, -0.04903014749288559, -0.003905532183125615, -0.05319907143712044, -0.009385738521814346, -0.006349676288664341, 0.03776952624320984, -0.015486186370253563, -0.004375668708235025, 0.025036189705133438, -0.04211970791220665, -0.010122097097337246, 0.039400845766067505, -0.04835043475031853, 0.004876959137618542, -0.0005193451652303338, 0.03443892300128937, 0.008700358681380749, 0.005301781464368105, -0.010869784280657768, 0.02512681856751442, -0.057277362793684006, -0.016199886798858643, -0.008983573876321316, 0.002505035139620304, 0.017649946734309196, 0.013356410898268223, 0.04730820283293724, -0.0011902102269232273, -0.041168104857206345, -0.03378186374902725, 0.008360501378774643, -0.015338914468884468, -0.014240040443837643, 0.0034382278099656105, -0.010954748839139938, -0.01317515317350626, -0.03287557512521744, 0.028955882415175438, 0.0031833346001803875, -0.03314746171236038, -0.050706781446933746, -0.0074088997207582, 0.001467052730731666, -0.011906350962817669, -0.015463529154658318, -0.015995971858501434, 0.003503367304801941, -0.0296355988830328, -0.010677198879420757, -0.02403927408158779, 0.008337844163179398, 0.03196928650140762, 0.006293033249676228, -0.0186015497893095, 0.01888476312160492, 0.02449241653084755, 0.04515577107667923, 0.021229783073067665, 0.031063001602888107, -0.06067594140768051, 0.03249040246009827, 0.01609792932868004, -0.0077600860968232155, 0.0024568885564804077, 0.027437850832939148, 0.004160425625741482, 0.04187047854065895, -0.004454968962818384, -0.01843162067234516, -0.019530493766069412, 0.0013247373281046748, -0.02243061363697052, -0.03462017700076103, -0.034008435904979706, -0.023676758632063866, 0.03679526969790459, -0.022589214146137238, 0.004044307395815849, 0.03815469890832901, 0.01914532110095024, 0.04046573117375374, 0.00650261202827096, 0.011645792983472347, 0.022192712873220444, 0.024968218058347702, 0.004021650180220604, 0.011917679570615292, 0.04474794119596481, 0.010048461146652699, 0.015191642567515373, -0.023676758632063866, -0.003608156694099307, -0.005675625056028366, 0.04055636003613472, 0.005873875226825476, 0.05895399674773216, -0.03403109312057495, -0.0007133473409339786, -0.028638681396842003, 0.013073195703327656, -0.005519856698811054, -0.026237020269036293, 0.01586003042757511, -0.004321858286857605, 0.004876959137618542, 0.04862231761217117, 0.006230725906789303, 0.01855623535811901, -0.011124677956104279, -0.009283781982958317, 0.020550066605210304, 0.016154572367668152, -0.039650075137615204, 0.012948581017553806, -0.02723393589258194, -0.07073573023080826, -0.011011391878128052, -0.011237964034080505, -0.04404556751251221, -0.03144817426800728, -0.05677890405058861, -0.01283529493957758, -0.03196928650140762, 0.0025078672915697098, 0.060721255838871, 0.006485619116574526, -0.014013469219207764, 0.021399712190032005, -0.016539745032787323, -0.0313575454056263, -0.024016616865992546, 0.002003744710236788, 0.030428599566221237, 0.01079614832997322, -0.003186166752129793, -0.022034112364053726, 0.010065454058349133, 0.034846749156713486, -0.026237020269036293, 0.020878596231341362, 0.03588898107409477, -0.0031210272572934628, 0.027143307030200958, 0.03375920653343201, 0.029363712295889854, 0.008592737838625908, 0.027596451342105865, -0.03418969362974167, 0.008853294886648655, 0.021150482818484306, -0.04803323373198509, 0.032309144735336304, -0.0401485301554203, 0.014466612599790096, 0.014341997914016247, -0.016324501484632492, -0.01121530681848526, -0.021025868132710457, 0.010926427319645882, -0.040125876665115356, -0.012744667008519173, 0.001546352868899703, -0.006961420178413391, -0.024945560842752457, 0.025149475783109665, -0.022827114909887314, 0.012019637040793896, 0.007108691614121199, -0.042142365127801895, -0.014341997914016247, 0.010552584193646908, -0.026327649131417274, 0.020708667114377022, -0.0016058279434219003, -0.00106984400190413, 0.016131915152072906, -0.01981370896100998, -0.01783120445907116, 0.0025234438944607973, 0.012710681185126305, 0.001529359957203269, -0.008230222389101982, -0.03369123488664627, -0.0070180632174015045, -0.009351752698421478, -0.027165964245796204, -0.018499592319130898, -0.005811567883938551, 0.028389452025294304, 0.023812701925635338, -0.008836301974952221, -0.04397759586572647, -0.019972309470176697, -0.02900119684636593, -0.005981497000902891, -0.016970232129096985, 0.0012461452279239893, -0.017015546560287476, -0.03937818855047226, 0.038857072591781616, 0.008111272007226944, -0.0015180313494056463, 0.002859053434804082, -0.018273020163178444, 0.047670718282461166, 0.05016300827264786, -0.051839638501405716, -0.017774561420083046, 0.004265215247869492, 0.01557681430131197, -0.02474164590239525, 0.01686827465891838, 0.004695701412856579, -0.006474290508776903, -0.04644722864031792, -0.004140600562095642, -0.004667380359023809, 0.0010875448351725936, -0.013673610985279083, -0.005049719940871, 0.07282019406557083, -0.02829882502555847, -0.01990433782339096, 0.015667444095015526, -0.021830197423696518, -0.00319466320797801, 0.03378186374902725, 0.0019343572203069925, 0.012450123205780983, 0.024129902943968773, -0.0035090316087007523, -0.041553277522325516, -0.018828120082616806, 0.0254666768014431, 0.01535024307668209, 0.0022487256210297346, 0.0027811694890260696, 0.017298761755228043, -0.02394864521920681, -0.0023478507064282894, 0.005114859435707331, -0.010376990772783756, -0.04354710876941681, 0.013548996299505234, -0.02904651127755642, 0.019575808197259903, 0.0033419348765164614, 0.004225565120577812, -0.009074202738702297, 0.004185914993286133, -0.03165208920836449, 0.006508276332169771, -0.037792183458805084, -0.005774749908596277, 0.005539681762456894, 0.030111398547887802, 0.03437095135450363, -0.03285291790962219, -0.009878532961010933, 0.009232803247869015, -0.033374033868312836, 0.01900937780737877, 0.009623639285564423, 0.038857072591781616, -0.022362641990184784, 0.0012029549106955528, 0.001833815942518413, -0.015214299783110619, -0.01329976785928011, -0.006394990719854832, -0.017740575596690178, -0.02487758919596672, 0.013730254024267197, -0.006848134100437164, -0.024764303117990494, -0.059044625610113144, -0.0352545790374279, 0.02474164590239525, -0.004865630529820919, -0.006632891017943621, 0.008813644759356976, 0.024696331471204758, 0.006576247978955507, 0.013775568455457687, -0.01758197508752346, -0.01361696794629097, 0.05129586532711983, 0.023076342418789864, 0.030202027410268784, -0.03260368853807449, -0.029612941667437553, -0.012552080675959587, -0.0051771667785942554, 0.026871422305703163, 0.011164328083395958, 0.004925105720758438, -0.018012462183833122, 0.0017176978290081024, 0.03409906476736069, -0.014772485010325909, -0.012971238233149052, -0.02811756730079651, -0.011079363524913788, 0.059180568903684616, 0.06393857300281525, 0.003041727002710104, 0.01851092092692852, 0.014908427372574806, 0.01469318475574255, 0.010025804862380028, -0.010127761401236057, -0.004828812554478645, -0.026508906856179237, -0.017944490537047386, 0.0362514965236187, -0.0034637171775102615, -0.033917807042598724, -0.005930518265813589, -0.044158853590488434, -0.01846560649573803, 0.0022218201775103807, 0.027097992599010468, -0.006576247978955507, -0.004565422888845205, 0.03226383030414581, -0.006814148277044296, 0.024764303117990494, 0.011407893151044846, -0.008802316151559353, -0.05954308062791824, 0.027211278676986694, 0.004120775498449802, -0.012280194088816643, -0.007499528117477894, 0.017649946734309196, -0.023925988003611565, 0.03946881741285324, 0.004098118282854557, 0.03312480449676514, 0.005618982017040253, 0.031130973249673843, 0.026282334700226784, 0.015599471516907215, -0.011334257200360298, 0.018794134259223938, -0.02551199123263359, 0.005338599439710379, 0.03319277614355087, 0.027347221970558167, 0.032943546772003174, -0.030156712979078293, -0.009770911186933517, -0.018205048516392708, -0.01256340928375721, 0.016471773386001587, -0.028389452025294304, -0.015372900292277336, 0.0291371401399374, 0.015837373211979866, -0.05646170675754547, 0.006366669200360775, -0.00956699624657631, 0.00155484932474792, 0.0057124425657093525, 0.0007211357005871832, 0.001244021113961935, 0.04585814103484154, -0.008003650233149529, 0.04744414612650871, -0.015486186370253563, 0.0015647618565708399, 0.0091251814737916, 0.03541317954659462, -0.01817106269299984, -0.03457486629486084, 0.018352320417761803, 0.00982755422592163, -0.001695040613412857, 0.010971741750836372, -0.01694757491350174, 0.02309899963438511, 0.02673547901213169, 0.018227705731987953, -0.042187679558992386, 0.013401725329458714, -0.002577254781499505, -0.01022405456751585, -0.013582982122898102, 0.025398705154657364, 0.010292026214301586, -0.01934923604130745, -0.002680628327652812, -0.014727170579135418, 0.012257536873221397, -0.003574170870706439, 0.002411574125289917, -0.004576751496642828, 0.010359997861087322, 0.021354397758841515, -0.004780665971338749, 0.017683932557702065, -0.005032727029174566, 0.05831959471106529, -0.0015647618565708399, -0.001231984468176961, -0.039355531334877014, 0.03616086766123772, 0.007074706256389618, -0.03031531348824501, 0.02218138426542282, 0.0225212424993515, 0.01951916515827179, 0.04708163067698479, 0.013458368368446827, 0.038132041692733765, -0.0049647558480501175, 0.01464787032455206, -0.008468123152852058, 0.03375920653343201, 0.027052678167819977, -0.0030643842183053493, 0.01795581914484501, -0.006763169541954994, -0.011022720485925674, -0.019553150981664658, -0.0026013280730694532, -0.006083454005420208, -0.02091258205473423, -0.0020150733180344105, 0.04599408432841301, -0.03493737801909447, 0.005924853961914778, -0.004370004404336214, -0.03165208920836449, -0.031176285818219185, -0.004251054488122463, -0.024220531806349754, 0.016800303012132645, 0.014104098081588745, 0.005338599439710379, 0.010014476254582405, 0.012506766244769096, 0.028162881731987, 0.024356473237276077, 0.0266901645809412, -0.00875133741647005, 0.0264409352093935, -0.002438479568809271, 0.0008609730284661055, 0.0428447388112545, 0.028276167809963226, 0.05138649418950081, -0.009578324854373932, -0.015055699273943901, -0.008394487202167511, 0.013186481781303883, -0.009861540049314499, -0.05940714105963707, -0.010954748839139938, 0.003268298925831914, 0.020799295976758003, -0.014579898677766323, -0.021343069151043892, -0.001335357897914946, -0.04196110740303993, -0.0036817926447838545, -0.043071307241916656, 0.0411454476416111, -0.04925671964883804, 0.03527723625302315, 0.005338599439710379, -0.0035628422629088163, 0.005213984753936529, -0.007935679517686367, -0.002621153136715293, -0.00114064768422395, 0.02015356533229351, -0.022997042164206505, 0.009634967893362045, -0.03219585865736008, -0.006111775524914265, -0.004265215247869492, -0.06552457809448242, 0.018012462183833122, 0.016800303012132645, -0.023835359141230583, -0.040579017251729965, 0.0002977295662276447, 0.03727107122540474, 0.03797344118356705, 0.029205111786723137, -0.0036308139096945524, -0.005958839785307646, 0.004256718792021275, 0.017774561420083046, 0.025058846920728683, -0.04839574918150902, 0.007697778753936291, -0.017570646479725838, 0.0016610549064353108, -0.03588898107409477, 0.003214488038793206, 0.00904021691530943, -0.018726162612438202, -0.011430549435317516, 0.005032727029174566, -0.00045703790965490043, 0.035186607390642166, 0.025942476466298103, -0.015882687643170357, -0.024356473237276077, -0.004820316098630428, 0.041122790426015854, -0.002812323160469532, -0.0038998678792268038, 0.007069041952490807, -0.01144754234701395, 0.006700862664729357, -0.01518031395971775, -0.030768457800149918, 0.02596513368189335, -0.010388319380581379, 0.004636226687580347, 0.025194790214300156, 0.004474794026464224, 0.006247718818485737, 0.0033730885479599237, 0.0057464283891022205, 0.013854868710041046, -0.013039209879934788, 0.011713764630258083, -0.012948581017553806, -0.02340487204492092, 0.004245390184223652, -0.028049595654010773, -0.0073069422505795956, -0.040080562233924866, -0.0033787526190280914, -0.03441626578569412, 0.004556926432996988, -0.007363585289567709, -0.0020986218005418777, -0.021320411935448647, 0.03439360857009888, 0.03346466273069382, -0.021512996405363083, 0.013707596808671951, -0.04844106361269951, -0.01720813289284706, -0.022543899714946747, -0.017015546560287476, 0.012744667008519173, 0.008377494290471077, -0.0413946770131588, -0.009561331942677498, -0.001132151228375733, -0.01068852748721838, 0.006995406001806259, -0.019247278571128845, -0.0333060622215271, 0.00015382104902528226, 0.01153250690549612, 0.029023854061961174, 0.05591793358325958, 0.012359494343400002, 0.015837373211979866, 0.027075335383415222, -0.004338850732892752, -0.013866197317838669, -0.005372584797441959, 0.028661338612437248, 0.014104098081588745, -0.0018819624092429876, 0.011747750453650951, -0.008026307448744774, 0.023031027987599373, 0.00913084577769041, -0.024016616865992546, -0.00800931453704834, 0.003676128340885043, -0.006859462708234787, 0.0035600101109594107, -0.0038545536808669567, -0.021263768896460533, -0.051703695207834244, -0.0036024923902004957, -0.01843162067234516, -0.002148184459656477, -0.002509283134713769, 0.010246711783111095, 0.009793568402528763, -0.03353263437747955, 0.0033560956362634897, 0.018069105222821236, 0.0074768709018826485, 0.015928000211715698, 0.008298194035887718, 0.01736673153936863, -0.02187551185488701, -0.024016616865992546, -0.030292656272649765, 0.013934168964624405, 0.029023854061961174, 0.0027740891091525555, 0.010410976596176624, -0.025738561525940895, 0.020969225093722343, 0.011849707923829556, 0.03496003523468971, -0.010660205967724323, -0.06520737707614899, 0.007879036478698254, -0.038811758160591125, -0.0013162408722564578, 0.020210208371281624, -0.009119517169892788, -0.01525961421430111, 0.013673610985279083, 0.026758136227726936, -0.009351752698421478, -0.00804896466434002, 0.00048075715312734246, -0.005774749908596277, 0.025489334017038345, -0.019723080098628998, -0.026531564071774483, -0.002420070581138134, 0.01826169155538082, 0.007074706256389618, -0.03133488819003105, -0.020550066605210304, -0.0054320599883794785, -0.01312983874231577, 0.022951727733016014, 0.012234879657626152, -0.011475863866508007, 0.019972309470176697, 0.005582164041697979, 0.029363712295889854, -0.024854931980371475, 0.00986720435321331, -0.03350997716188431, 0.032354459166526794, -0.05211152508854866, -0.018476935103535652, 0.021864183247089386, 0.05378815904259682, 0.01562212873250246, 0.01766127534210682, -0.024333816021680832, 0.02698470838367939, 0.007374913897365332, -0.0028264839202165604, 0.01273333840072155, -0.02145635336637497, 0.00226147030480206, -0.016165900975465775, 0.012891937978565693, 0.029499655589461327, -0.029250426217913628, -0.019530493766069412, -0.021648939698934555, -0.014149412512779236, 0.004862798377871513, 0.01699288934469223, 0.02111649699509144, 0.017740575596690178, -0.015168985351920128, 0.030723143368959427, 0.005885203834623098, 0.0037440997548401356, 0.0016610549064353108, -0.03212788701057434, -0.003979168366640806, 0.017355402931571007, 0.03736170008778572, -0.008564416319131851, -0.024968218058347702, 0.0012298603542149067, 0.056733593344688416, -0.007131348829716444, -0.019428536295890808, 0.015916673466563225, 0.017853861674666405, -0.019632451236248016, 0.03423500806093216, 0.025942476466298103, -0.007250299211591482, -0.0016780478181317449, -0.020346151664853096, 0.039446160197257996, -0.0009983321651816368, 0.005613317713141441, 0.02478696033358574, 0.030927058309316635, 0.004760840907692909, -0.01863553561270237, 0.00010346191265853122, 0.02309899963438511, -0.025534648448228836, -0.005647303536534309, 0.023518158122897148, -0.008807980455458164, 0.01496507041156292, 0.0015477689448744059, -0.004358675796538591, -0.024764303117990494, -0.028434766456484795, -0.01859022118151188, 0.003146516624838114, -0.01572408713400364, 0.01026936899870634, 0.010371326468884945, -0.005919189658015966, 0.013163824565708637, 0.0293863695114851, -0.009470703080296516, 0.012654038146138191, -0.017638618126511574, 0.0006368792965076864, -0.01635848730802536, -0.010048461146652699, -0.036319468170404434, -0.0064629619009792805, -0.00711435591802001, -0.0056897858157753944, 0.015202971175312996, 0.0062250616028904915, -0.01195166539400816, -0.023631444200873375, 0.02630499191582203, 0.019926995038986206, -0.0015760904643684626, -0.01741204597055912, -0.0293863695114851, 0.02453773096203804, 0.0175026748329401, -0.03253571689128876, -0.013095852918922901, 0.010014476254582405, 0.02571590431034565, -0.056642964482307434, 0.004610737320035696, 0.050616152584552765, 0.003126691561192274, -0.039491474628448486, 0.0022997043561190367, 0.011815722100436687, -0.017842533066868782, 0.037882812321186066, 0.002138271927833557, 0.022668514400720596, 0.014285354875028133, 0.0038828752003610134, 0.007601485587656498, 0.009414060041308403, -0.04735351726412773, 0.017525332048535347, -0.020844610407948494, 0.007896029390394688, 0.05251935496926308, 0.02086726762354374, 0.007074706256389618, -0.00834917277097702, -0.011917679570615292, -0.003475045785307884, -0.006559255067259073, 0.008162250742316246, -0.02403927408158779, -0.007556171156466007, 0.021637611091136932, -0.011521178297698498, -0.01711750403046608, 0.022917741909623146, -0.042142365127801895, -0.009289446286857128, 0.04658317193388939, -0.0011987066827714443, -0.011691107414662838, -0.001957014435902238, 0.0065309335477650166, -0.043524451553821564, -0.04490654170513153, -0.026554221287369728, 0.011940336786210537, 0.044589340686798096, -0.009589653462171555, 0.007295613642781973, 0.009465038776397705, -0.008150922134518623, 0.005907861050218344, 0.0413946770131588, 0.008553087711334229, 0.0239939596503973, 0.01195166539400816, 0.019201964139938354, -0.0145685700699687, -0.03767889738082886, -0.04467996954917908, -0.02977154031395912, 0.017808547243475914, 0.005063880700618029, -0.02555730566382408, -0.013152495957911015, -0.00022657185036223382, -0.007516521029174328, -0.012744667008519173, 0.030292656272649765, -0.006100446917116642, -0.038811758160591125, -0.034756120294332504, -0.02782302349805832, -0.03321543335914612, 0.0013261534040793777, 0.03321543335914612, -0.009640632197260857, -0.01165712159126997, -0.00429920107126236, 0.010524262674152851, -0.03221851587295532, 0.028978539630770683, -0.014364655129611492, -0.022985713556408882, 0.01501038484275341, -0.03276228904724121, 0.024945560842752457, 0.017264775931835175, 0.027641765773296356, 0.03967273235321045, -0.02596513368189335, 0.026576878502964973, -0.007346592377871275, 0.025647932663559914, -0.02175089716911316, -0.006989741697907448, 0.019043363630771637, -0.01720813289284706, -0.019723080098628998, 0.011017056182026863, -0.0003741975815501064, 0.009674618020653725, -0.027143307030200958, -0.0034382278099656105, 0.01745736040174961, 0.008683365769684315, -0.01859022118151188, 0.02095789648592472, -0.004505947697907686, 0.006106111221015453, 0.017400717362761497, 0.026826107874512672, 0.02390333078801632, -0.024696331471204758, 0.03677261248230934, -0.02369941584765911, 0.011985651217401028, -0.006950091570615768, 0.006043804343789816, 0.006666876841336489, -0.011441878043115139, 0.016222544014453888, 0.00728428503498435, -0.042686138302087784, 0.03246774524450302, 0.01026936899870634, 0.011577821336686611, -0.012823966331779957, 0.00470136571675539, 0.03228648751974106, 0.03212788701057434, 0.04794260486960411, -0.0002971985377371311, -0.022589214146137238, -0.0266901645809412, 0.028525395318865776, 0.011736421845853329, -0.003616653149947524, -0.0212977547198534, 0.05106929689645767, -0.004961923696100712, -0.0077770790085196495, 0.017808547243475914, 0.02748316526412964, 0.024356473237276077, -0.005715274717658758, -0.01795581914484501, -0.02689407952129841, 0.03684058412909508, 0.022124741226434708, -0.02066335268318653, -0.03713512793183327, -0.04381899535655975, -0.007380578201264143, 0.0017686765640974045, -0.035186607390642166, 0.04105481877923012, -0.027505822479724884, 0.024379130452871323, -0.014636541716754436, -0.03394046425819397, -0.009731261059641838, -0.0013608471490442753, -0.018035119399428368, -0.03375920653343201, -0.020006295293569565, -0.021524325013160706, 0.005075209308415651, -0.0037469319067895412, -0.0035175280645489693, 0.003041727002710104, 0.01948517933487892, -0.037339042872190475, 0.002561677945777774, 0.009884197264909744, 0.016754988580942154, 0.018239034339785576, -0.016924917697906494, 0.014138083904981613, -0.018726162612438202, -0.009810561314225197, -0.013945497572422028, 0.01846560649573803, -0.0025630940217524767, -0.013548996299505234, -0.005058216396719217, -0.020210208371281624, 0.015486186370253563, 0.02786833792924881, -0.04780666157603264, 0.0019541822839528322, 0.008932595141232014, 0.01572408713400364, 0.010082446970045567, -0.02170558273792267, 0.010275033302605152, -0.03296620398759842, 0.010580905713140965, 0.010359997861087322, -0.019190635532140732, -0.0021439362317323685, 0.01888476312160492, -0.009351752698421478, 0.022407956421375275, -0.0018989553209394217, 0.037542954087257385, -0.0145685700699687, -0.029567627236247063, -0.0035798351746052504, -0.013027881272137165, 0.028887910768389702, -0.0007204276625998318, 0.028774624690413475], [0.04389287903904915, 0.02473386935889721, 0.026608385145664215, 0.02673010714352131, -0.045962151139974594, 0.023224519565701485, -0.02315148524940014, 0.045718707144260406, -0.0051031862385571, 0.03542104363441467, -0.010005531832575798, 0.009542988613247871, -0.007449374068528414, 0.003447769908234477, -0.011587915010750294, 0.02653535082936287, 0.015994243323802948, 0.03534800931811333, -0.058718595653772354, -0.007546751294285059, 0.011770498007535934, 0.01572645641863346, -0.005194477736949921, 0.00990206841379404, -0.004804967902600765, -0.04184795543551445, 0.02473386935889721, -0.04401460289955139, 0.021836889907717705, -0.024307843297719955, -0.0008573778904974461, -0.0018090902594849467, 0.02332189679145813, -0.06402566283941269, 0.010139425285160542, -0.036808669567108154, -0.04321123659610748, 0.03848843276500702, -0.002116437768563628, 0.0026185400784015656, -0.006396480370312929, 0.0035968790762126446, -0.009263028390705585, 0.009743830189108849, -0.034617677330970764, 0.08432886004447937, 0.039170075207948685, -0.044379767030477524, 7.71221675677225e-05, -0.004911474417895079, 0.036394815891981125, -0.004217660054564476, 0.01182527281343937, -0.020144958049058914, 0.07551620155572891, 0.02169082500040531, 0.03011397272348404, 0.012141749262809753, -0.0009045451297424734, -0.0038737962022423744, -0.012622550129890442, -0.040752459317445755, -0.0016843253979459405, 0.028994131833314896, -0.03549407422542572, 0.0005279682809486985, -0.018562573939561844, 0.034422922879457474, -0.025026001036167145, 0.010930617339909077, -0.022031644359230995, 0.03422816842794418, -0.020278850570321083, -0.006664268206804991, -0.03763638064265251, 0.024673007428646088, -0.011733980849385262, -0.004497620277106762, 0.05248643830418587, -0.007151155732572079, -0.03622440621256828, -0.02060749940574169, -0.024806901812553406, 0.023394929245114326, 0.011003650724887848, -0.0016599809750914574, -0.016931502148509026, -0.013827595859766006, -0.035372354090213776, -0.0038129352033138275, 0.006390394177287817, -0.03386300429701805, -0.016383754089474678, 0.039340484887361526, 0.036784328520298004, -0.00465890159830451, 0.05248643830418587, -0.019621552899479866, -0.018087858334183693, 0.042164430022239685, -0.017187118530273438, 0.003931614104658365, -0.028142079710960388, 0.05297332629561424, -0.0023051064927130938, -0.01902511715888977, -0.03963261842727661, 0.05058757960796356, 0.046132560819387436, -0.0047532361932098866, -0.0011989596532657743, -0.0014074082719162107, -0.04610821604728699, 0.07614915817975998, -0.0013518726918846369, -0.012707755900919437, -0.043527714908123016, 0.0184165071696043, -0.019791964441537857, -0.030844302847981453, -0.007400685455650091, 0.00875179748982191, -0.01572645641863346, -0.07872965931892395, -0.008453578688204288, 0.03904835134744644, -0.044915344566106796, 0.06061745434999466, -0.04640034958720207, -0.011101027950644493, 0.009110876359045506, -0.05720924586057663, 0.0378798246383667, -0.0033564786426723003, -0.03313267230987549, -0.025245100259780884, -0.04009516164660454, 0.014606615528464317, 0.023808782920241356, -0.025610266253352165, 0.014570099301636219, -0.01633506454527378, -0.017868759110569954, 0.018781673163175583, -0.056089404970407486, 0.030625203624367714, -0.024052226915955544, 0.057890888303518295, 0.0014652261743322015, -0.017710521817207336, -0.012111319229006767, 0.0219586119055748, -0.04472058638930321, -0.020400572568178177, -0.006834678817540407, 0.02933495305478573, 0.05248643830418587, 0.0409228689968586, -0.037368591874837875, 0.022640254348516464, -0.0025044260546565056, -0.04929732903838158, 0.03228062018752098, 0.03610268607735634, -0.0002561863511800766, 0.033376116305589676, 0.009494300000369549, 0.020899632945656776, -0.04143409803509712, -0.03527497500181198, -0.011368815787136555, 0.010766292922198772, -0.01852605678141117, -0.019974546507000923, -0.050733644515275955, -0.03512891009449959, 0.0074372016824781895, -0.0034203825052827597, 0.012805133126676083, -0.013231159187853336, 0.026048464700579643, 0.00897089671343565, -0.03746596723794937, -0.0076441289857029915, -0.06314926594495773, 0.039583928883075714, -0.0011327734682708979, 0.0009387793834321201, -0.05087970942258835, 0.04111762344837189, 0.026170186698436737, -0.008490094915032387, 0.019499830901622772, 0.00967688299715519, 0.03724686801433563, 0.015933383256196976, -0.01080280914902687, -0.012239126488566399, 0.0011259266175329685, -0.013584152795374393, 0.012926855124533176, -0.02404005452990532, 0.07463980466127396, -0.011362729594111443, -0.03953523933887482, -0.016955846920609474, 0.023358412086963654, 0.02614584192633629, 0.043746814131736755, 0.02733871527016163, 0.022287260740995407, 0.020364057272672653, -0.022688942030072212, 0.042164430022239685, 0.016042932868003845, -0.013876284472644329, 0.009780346415936947, 0.007552837487310171, 0.0008558564004488289, 0.0048262691125273705, 0.013316364958882332, 0.027192648500204086, 0.04060639068484306, -0.06217549368739128, -0.04705764725804329, -0.045767396688461304, 0.008447492495179176, -0.015714284032583237, 0.024271326139569283, -0.028604622930288315, -0.04211574047803879, 0.012196524068713188, -0.0032956176437437534, -0.04511009901762009, -0.01082715392112732, 0.007138983346521854, -0.04343033581972122, 0.00441545806825161, -0.019207699224352837, -0.02002323605120182, -0.019317248836159706, 0.01564125157892704, -0.0005150353536009789, -0.014034522697329521, 0.0013587195426225662, -0.02767953649163246, -0.01705322414636612, 0.004211574327200651, 0.02354099601507187, -0.004549351986497641, 0.02909150905907154, -0.012634722515940666, 0.058475151658058167, -0.037173837423324585, 0.01774703711271286, 0.028409866616129875, -0.0033929951023310423, -0.04104458913207054, 0.040557701140642166, 0.00454022316262126, 0.03646785020828247, -0.002011452801525593, -0.02570764347910881, -0.004129412118345499, -0.012342589907348156, -0.01086975634098053, -0.0028056874871253967, 0.01416841708123684, -0.0418722964823246, 0.022457672283053398, -0.031136436387896538, -0.0008695501019246876, 0.010821067728102207, -0.03544538840651512, -0.05448267608880997, 0.06607059389352798, -0.003919441718608141, 0.01042547170072794, -0.011843530461192131, -0.01483788713812828, -0.06762862950563431, 0.0025424640625715256, 0.007059864234179258, -0.1076994463801384, 0.04162885621190071, -0.0052522956393659115, -0.014740509912371635, 0.021922094747424126, 0.007187671959400177, -0.03050348162651062, 0.08544870465993881, 0.0538497231900692, 0.03946220502257347, -0.001871472573839128, 0.03868318721652031, 0.020972665399312973, -0.022567221894860268, 0.028872409835457802, 0.03622440621256828, -0.05117184296250343, 0.02082659862935543, 0.08827264606952667, -0.04311386123299599, -0.06495074927806854, -0.05701449140906334, 0.012719927355647087, 0.03590793162584305, -0.010918444953858852, -0.06855371594429016, 0.017150601372122765, 0.026827484369277954, 0.02631625160574913, -0.0369303934276104, 0.010954962112009525, -0.05667366832494736, -0.004899302497506142, -0.0016706316964700818, 0.025026001036167145, -0.0005519322585314512, 0.03963261842727661, 0.06256500631570816, 0.010224631056189537, -0.015008297748863697, 0.0042511336505413055, 0.015203052200376987, 0.00841706246137619, -0.030746925622224808, 0.014606615528464317, 0.03843974322080612, -0.008106671273708344, -0.022725459188222885, 0.006597321480512619, -0.017953965812921524, -0.010741948150098324, -0.013255503959953785, -0.004448931664228439, -0.04221311956644058, 0.038561463356018066, 0.0019095106981694698, 0.0238818172365427, -0.01844085194170475, 0.017905276268720627, -0.02004758082330227, 0.006798162125051022, -0.010376783087849617, 0.05243774875998497, 0.06344140321016312, 0.01627420447766781, -0.00010479486081749201, 0.022360293194651604, 0.04399025812745094, 0.015203052200376987, -0.04958945885300636, -0.015324774198234081, -0.019682414829730988, -0.023967022076249123, 0.032572753727436066, -0.010236803442239761, -0.03751465678215027, 0.008222307078540325, -0.028750687837600708, 0.02872634492814541, 0.020364057272672653, 0.07303307950496674, -0.03252406418323517, 0.007394599262624979, -0.0159455556422472, 0.01239736471325159, 0.00920825358480215, 0.0040959385223686695, -0.0029228446073830128, 0.014606615528464317, 0.03072258085012436, -0.016785435378551483, 0.06495074927806854, -0.02770388126373291, 0.004832355305552483, 0.04024122655391693, -0.0005207410431466997, -0.025853710249066353, 0.03902400657534599, 0.029042821377515793, 0.0497598722577095, 0.025634611025452614, 0.009926412254571915, 0.013121609576046467, -0.048128798604011536, 0.015263913199305534, -0.03108774684369564, -0.019512003287672997, -0.006798162125051022, 0.02631625160574913, -0.02310279756784439, -0.04338165000081062, 0.04671682417392731, 0.0006504508783109486, 0.03522628918290138, 0.005069712642580271, -0.015702111646533012, -0.047934044152498245, 0.004497620277106762, -0.05506693944334984, 0.013961490243673325, -0.0239548496901989, -0.016262032091617584, -7.056060712784529e-05, -0.060276634991168976, -0.00023203218006528914, 0.007461545988917351, -0.014533582143485546, 0.027557814493775368, 0.03744162619113922, 0.027460437268018723, 0.02653535082936287, -0.020473606884479523, -0.00590046402066946, 0.035372354090213776, 0.058085642755031586, -0.042553938925266266, -0.05706317722797394, 0.012975543737411499, 0.012525172904133797, 0.007102466654032469, 0.0015686897095292807, -0.015957728028297424, 0.030600858852267265, 0.040728114545345306, -0.003000442171469331, 0.007096380926668644, -0.029018476605415344, -0.03413079306483269, -0.0021955568809062243, 0.013206815347075462, 0.009269114583730698, -0.008465751074254513, -0.009098703972995281, 0.009616021998226643, -0.005793957505375147, -0.002327929250895977, -0.027216993272304535, -0.01142359059303999, -0.02673010714352131, 0.06655748188495636, 0.01034635305404663, -0.019000772386789322, 0.013024232350289822, 0.009597763419151306, 0.0697222426533699, 0.012768616899847984, -0.017710521817207336, -0.02030319534242153, 0.010705431923270226, -0.02113090455532074, 0.003529932117089629, -0.028361178934574127, -0.05005200207233429, 0.0164689589291811, -0.059108104556798935, 0.03649219498038292, 0.011435762979090214, 0.004086809232831001, 0.02459997497498989, 0.04411197826266289, 5.624878394883126e-05, 0.008575300686061382, 0.03673563897609711, 0.012963371351361275, -0.02360185608267784, -0.016761090606451035, -0.04170188680291176, 0.016907157376408577, -0.0015382592100650072, 0.00042564590694382787, -0.020644016563892365, 0.00470759067684412, -0.025805020704865456, 0.0019155967747792602, -0.00876396894454956, -0.019901514053344727, 0.008538784459233284, 0.01711408421397209, 0.007163327652961016, -0.03403341397643089, -0.03354652598500252, 0.019292904064059258, 0.05681973323225975, 0.03525063395500183, -0.0070659504272043705, 0.008964810520410538, -0.017381872981786728, -0.0348367765545845, -0.01772269420325756, 0.04620559513568878, -0.012007854878902435, 0.004792795516550541, 0.01120449136942625, -0.04228615388274193, -0.04231049492955208, 0.020583156496286392, -0.033619560301303864, 0.014095383696258068, -0.06728781014680862, 0.030600858852267265, -0.0036394817288964987, 0.03376562520861626, -0.006475599482655525, 0.04024122655391693, 0.021118732169270515, -0.036954738199710846, 0.021556930616497993, -0.0488104410469532, 0.000576657010242343, 0.02060749940574169, 0.008350115269422531, -0.03941351920366287, 0.016079450026154518, 0.00234618759714067, 0.007577181793749332, -0.02221422828733921, 0.03026003949344158, -0.023382756859064102, 0.023114969953894615, -0.04243221879005432, 0.006439083255827427, -0.05146397650241852, 0.0008862868417054415, -0.014022351242601871, -0.012841649353504181, 0.014533582143485546, -0.01080280914902687, -0.004613256081938744, -0.020790083333849907, -0.049540773034095764, -0.014314482919871807, -0.038780562579631805, -0.02928626351058483, 0.017041051760315895, 0.005535298492759466, 0.023662718012928963, 0.013584152795374393, -0.028945444151759148, -0.024502597749233246, 0.035591453313827515, 0.01275644451379776, -0.0008147752960212529, 0.010705431923270226, 0.05044151097536087, 0.030187005177140236, -0.0008330335258506238, -0.000204454583581537, -0.01705322414636612, 0.008222307078540325, 0.019487660378217697, -0.0019581993110477924, -0.0032773592974990606, 0.01588469371199608, 0.023358412086963654, 0.03354652598500252, -0.0013899108162149787, -0.01772269420325756, 0.0229323860257864, 0.019365938380360603, 0.02282283641397953, 0.013973662629723549, -0.032158900052309036, -0.018562573939561844, 0.010851497761905193, -0.019925858825445175, -0.025026001036167145, 0.0012666675029322505, -0.014071039855480194, 0.0053953188471496105, 0.017649659886956215, -0.01724797859787941, 0.019146839156746864, 0.020863115787506104, -0.009488213807344437, -0.007339824456721544, 0.02373575046658516, -0.021203937008976936, -0.004147670231759548, 0.01197742484509945, -1.262388195755193e-05, -0.03846408799290657, 0.0023431445006281137, 0.0022016430739313364, -0.024952968582510948, -0.03948654979467392, -0.016712402924895287, 0.051123153418302536, 0.0064208246767520905, -0.012878166511654854, 0.006895539816468954, 0.014703992754220963, 0.001874515670351684, 0.0062017254531383514, -0.003840322606265545, -0.03666260465979576, -0.034422922879457474, -0.012513000518083572, 0.028848065063357353, -0.007370254956185818, -0.015044813975691795, 0.02609715238213539, -0.03785547986626625, -0.00920825358480215, -0.006913797929883003, -0.018574746325612068, 0.005940023809671402, 0.017174946144223213, 0.021070042625069618, 0.0017664876068010926, -0.07283832132816315, -0.005885249003767967, -0.017588799819350243, -0.04041163623332977, -0.030966024845838547, 0.01663937047123909, -0.00852661207318306, -0.022165538743138313, -0.012829476967453957, 0.0006862066220492125, -0.009299545548856258, -0.026584040373563766, -0.004409371875226498, 0.0014857667265459895, -0.0032773592974990606, -0.04043598100543022, -0.04605952650308609, -0.05462874099612236, 0.00041765792411752045, -0.01780789904296398, -0.007918003015220165, -0.043527714908123016, 0.0005523126455955207, 0.005571815185248852, -0.028580278158187866, -0.027265682816505432, 0.01534911897033453, 0.013097265735268593, 0.02032754011452198, -0.013632841408252716, 0.01746707782149315, -0.05706317722797394, 0.032767508178949356, 0.026437973603606224, -0.026973549276590347, 0.0009037843556143343, 0.05078233405947685, -0.000354324554791674, 0.03532366454601288, 0.011058425530791283, -0.038391053676605225, -0.025975432246923447, -0.007291135843843222, -0.006992917042225599, -0.03846408799290657, -0.01186787523329258, -0.010705431923270226, 0.08471836894750595, -0.044939685612916946, 0.005291854962706566, -0.003053695661947131, 0.008520525880157948, 0.073763407766819, 0.015020470134913921, 0.029359297826886177, 0.011174061335623264, 0.012068715877830982, -0.02410091646015644, -0.000497537839692086, 0.04452583193778992, -0.006518202368170023, -0.008447492495179176, -0.01217217929661274, 0.00593393761664629, -0.03919441998004913, 0.03972999379038811, -0.028263801708817482, 0.04659510403871536, 0.0009593199356459081, -0.001431752578355372, -0.03724686801433563, 0.004385027568787336, 0.013267675414681435, -0.04262697324156761, 0.034958500415086746, -0.014850059524178505, 0.016541991382837296, 0.006058702245354652, -0.006585149094462395, -0.007747592404484749, -0.02063184417784214, -0.0029198015108704567, 0.006865109317004681, 0.03602965176105499, -0.028580278158187866, -0.011746153235435486, -0.003879882162436843, 0.007601526100188494, 0.00693205650895834, -0.00043743770220316947, -0.021666480228304863, -0.04360074922442436, -0.04170188680291176, -0.027971668168902397, -0.006664268206804991, -0.01416841708123684, 0.0518534854054451, 0.002826988697052002, -0.02085094340145588, -0.003362564602866769, -0.0010414820862933993, -0.06675223261117935, 0.007717161905020475, 0.03500718995928764, -0.008684850297868252, 0.020181473344564438, 0.028434211388230324, 0.0239548496901989, 0.016091622412204742, 0.03985171765089035, -0.004564567469060421, 0.026973549276590347, 0.029967905953526497, -0.009348234161734581, 0.005650934297591448, -0.002875677542760968, -0.0029791409615427256, -0.014752681367099285, 0.04411197826266289, 0.003003485267981887, -0.008922208100557327, 0.019000772386789322, -0.04111762344837189, 0.017284495756030083, -0.05341152474284172, 0.009670796804130077, -0.024466080591082573, -0.030746925622224808, 0.0072059305384755135, -0.002232073340564966, 0.00662166578695178, -0.005888292100280523, 0.004296779632568359, -0.010729776695370674, 0.007534579373896122, -0.029821841046214104, 0.02462431974709034, -0.022092506289482117, 0.004324167035520077, 0.008581386879086494, -0.008179704658687115, 0.03026003949344158, 0.04725240170955658, -0.010766292922198772, 0.008368373848497868, -0.009323889389634132, 0.017953965812921524, 0.0184165071696043, -0.033400461077690125, -0.017978308722376823, 0.011088855564594269, 0.007522406987845898, 0.0174427330493927, 0.023309724405407906, -0.01235476229339838, -0.004485448356717825, 0.013985834084451199, -0.039340484887361526, 0.03629744052886963, 0.002909150905907154, -0.0008619424770586193, 0.050733644515275955, 0.005803086794912815, -0.017369700595736504, -0.037173837423324585, -0.017187118530273438, -0.003207369241863489, 0.011101027950644493, 0.011125371791422367, -0.009670796804130077, 0.01007856521755457, -0.0022229442838579416, -0.01883036270737648, -0.012299987487494946, 0.02032754011452198, 0.03444726765155792, -0.005568772088736296, 0.015117847360670567, -0.03510456532239914, -0.005042325239628553, -0.0036790412850677967, 0.0021407820750027895, -0.046570759266614914, 0.03724686801433563, -0.019268561154603958, -0.025829365476965904, -0.004911474417895079, -0.0019825438503175974, 0.0034538558684289455, 0.0025759374257177114, -0.026851829141378403, 0.006174338050186634, 0.04260262846946716, -0.011307954788208008, -0.029188886284828186, 0.0006991395493969321, -0.014703992754220963, 0.010681088082492352, 0.04919994994997978, 0.01150879543274641, -0.002650492126122117, 0.008392717689275742, -0.0013564372202381492, -0.027436092495918274, -0.0298948734998703, 0.018014825880527496, 0.009439525194466114, 0.008703108876943588, 0.02811773493885994, -0.0067068710923194885, -0.0032560580875724554, -0.0014675083803012967, 0.007991036400198936, 0.0003990192781202495, -0.04206705465912819, 0.006390394177287817, -0.0051762196235358715, 0.03186676651239395, -0.0017756166635081172, -0.01783224381506443, -0.0028041659388691187, 0.0052553387358784676, -0.024746041744947433, 0.034374237060546875, -0.025196412578225136, -0.0064877718687057495, -0.005754397716373205, 0.018842533230781555, 0.056332848966121674, -0.028142079710960388, 0.02948101982474327, -0.01588469371199608, 0.0036942565347999334, 0.017126256600022316, -0.017041051760315895, -0.01822175271809101, -0.011953080072999, 0.032012831419706345, -0.03327874094247818, 0.016103792935609818, 0.0071572414599359035, 0.007711075711995363, -0.018343474715948105, -0.01874515600502491, 0.003904226701706648, -0.032377999275922775, -0.01424145046621561, -0.06480468809604645, -0.0005161765147931874, 0.030430449172854424, -0.007899744436144829, 0.008356201462447643, 0.003928571008145809, 0.02931060828268528, -0.0042298324406147, 0.01160617358982563, -0.020680533722043037, -0.0015169578837230802, 0.01513001974672079, -0.008471837267279625, 0.0006253457395359874, -0.003052174113690853, -0.010267233476042747, -0.005243166349828243, 0.005818301811814308, -0.001573254237882793, -0.0025409425143152475, 0.018757328391075134, 0.025074690580368042, 0.008952638134360313, 0.03111209161579609, -0.013133781962096691, -0.010528935119509697, -0.04540222883224487, -0.014813542366027832, 0.05477480962872505, 0.036589570343494415, 0.0001697448460618034, 0.02126479707658291, 0.012105233035981655, 0.0059095933102071285, 0.02952970750629902, -0.003526889020577073, -0.001213414128869772, -0.0020844857208430767, -0.01772269420325756, 0.004205488134175539, -0.007132897153496742, -0.013681530021131039, 0.020534466952085495, -0.04469624534249306, 0.00458282558247447, 0.010553279891610146, 0.06134778633713722, -0.04204270988702774, 0.015762973576784134, -0.00021244256640784442, 0.036759983748197556, 0.053947098553180695, -0.008173618465662003, 0.020972665399312973, 0.007790194824337959, 0.021666480228304863, 0.016894984990358353, 0.008849174715578556, -0.01592121087014675, 0.012939026579260826, 0.00682250689715147, 0.028653310611844063, 0.012878166511654854, 0.056332848966121674, -0.0139493178576231, 0.026462318375706673, -0.031404223293066025, 0.013498947024345398, 0.02145955339074135, 0.033570870757102966, -0.014290139079093933, 0.018404334783554077, 0.020011063665151596, 0.002213815227150917, 0.032183244824409485, -0.008088413625955582, 0.02126479707658291, 0.011259266175329685, 0.006219984032213688, 0.03206152096390724, -0.02054663933813572, -0.005632676184177399, 0.04871306195855141, 0.0065790629014372826, -0.016821952536702156, -0.008989154361188412, 0.04153147712349892, -0.00019722734577953815, 0.02629190869629383, -0.0037733756471425295, -0.021423036232590675, 0.060081880539655685, -0.01035852450877428, 0.03466636687517166, 0.005142746027559042, -0.00741894356906414, 0.014789198525249958, 0.022360293194651604, -0.021593445912003517, -0.01588469371199608, 0.0338873490691185, 0.008587473072111607, -0.02104569785296917, 0.002165126381441951, -0.024259153753519058, 0.043965913355350494, 0.012251298874616623, 0.05443398654460907, -0.022287260740995407, 0.01766183227300644, 0.023309724405407906, -0.013340708799660206, 0.035396698862314224, 0.0348854660987854, 0.004643686581403017, -0.05448267608880997, -0.002373575000092387, -0.014959609135985374, 0.005751355085521936, -0.0018821232952177525, -0.01572645641863346, -0.003125207033008337, 0.04829920828342438, 0.011600087396800518, 0.001417298219166696, -0.004722805693745613, 0.011502710171043873, 0.029067164286971092, -0.01572645641863346, 0.0024222638458013535, 0.021337831392884254, 0.022506359964609146, 0.02442956529557705, -0.01454575452953577, -0.005556600168347359, 0.015227396972477436, 0.030771270394325256, 0.019146839156746864, 0.0004305908514652401, 0.029797496274113655, -0.022579392418265343, 0.03953523933887482, -0.026949206367135048, 0.019670242443680763, 0.02165430784225464, -0.01135664340108633, -0.004604126792401075, 0.01603076048195362, 0.006323447450995445, -0.022871525958180428, 0.024259153753519058, 0.02024233527481556, -0.0348854660987854, -0.018258269876241684, 0.00458282558247447, -0.0002099700941471383, 0.02853158861398697, 0.0059095933102071285, -0.027849946171045303, 0.0007185389986261725, 0.013218986801803112, -0.0368330143392086, 0.009749915450811386, -0.003630352672189474, 0.024806901812553406, 0.00987163744866848, 0.0328405424952507, 0.056722357869148254, 0.005084928125143051, 0.034617677330970764, -0.019779792055487633, 0.015507357195019722, -0.016103792935609818, 0.024441737681627274, 0.04399025812745094, 0.026803139597177505, 0.0348854660987854, 0.0064877718687057495, -0.035201944410800934, 0.011813100427389145, 0.02750912681221962, -0.01588469371199608, -0.0358348973095417, -0.0348854660987854, 0.0006884888862259686, 0.026048464700579643, -0.04021688178181648, -0.017515767365694046, -0.015105674974620342, -0.0025439856108278036, 0.0010239846305921674, -0.0031023842748254538, 0.04126368835568428, -0.04245656356215477, 0.020790083333849907, 0.00812492985278368, -0.00016679690452292562, 0.002232073340564966, -0.002788950689136982, -0.01131404098123312, 0.007394599262624979, -0.0003685888077598065, -0.02199512906372547, -0.0069868313148617744, -0.0028132949955761433, -0.002705266932025552, 0.008185790851712227, -0.033984724432229996, 0.0027661279309540987, 0.027752568945288658, -0.01105233933776617, -0.004336338955909014, 0.014387516304850578, 0.02171516790986061, 0.04379550367593765, 0.024003537371754646, 0.027241338044404984, 0.022250743582844734, -0.004689332097768784, 0.02326103486120701, 0.04028991609811783, -0.02082659862935543, -0.006317361257970333, -0.01805134303867817, -0.021143076941370964, -0.01622551493346691, -0.012659067288041115, -0.030576515942811966, -0.012251298874616623, 0.005182305350899696, 0.02301759086549282, -0.0014500109246000648, 0.04104458913207054, 0.007114639040082693, 0.0076563009060919285, 0.004725848790258169, -0.009883809834718704, -0.0008946551824919879, 0.005620503798127174, -4.5574353862321004e-05, 0.021228281781077385, -0.004348511341959238, 0.0034386408515274525, -0.0021423036232590675, -0.03430120274424553, 0.03349784016609192, -0.007023347541689873, 0.00314346537925303, 0.04523181915283203, 0.011928736232221127, -0.007887572050094604, -0.017430560663342476, -0.002907629357650876, 0.04503706470131874, -0.004044206812977791, 0.025610266253352165, 0.022287260740995407, -0.009950757026672363, -0.011046253144741058, -0.028142079710960388, -0.006597321480512619, -0.018282614648342133, 0.0029760978650301695, -0.045962151139974594, 0.013985834084451199, -0.0159455556422472, 0.015263913199305534, -0.005571815185248852, 0.02848290093243122, 0.023370584473013878, -0.029432330280542374, 0.021861234679818153, -0.03668694943189621, -0.02295673079788685, -0.02872634492814541, -0.02473386935889721, 0.00028034052229486406, -0.0020814426243305206, -0.009737743996083736, -0.015324774198234081, -0.010255061089992523, -0.018574746325612068, -0.004747150000184774, -0.019207699224352837, -0.03666260465979576, 0.00533750094473362, 0.00021643657237291336, 0.002116437768563628, 0.052924636751413345, -0.01761314459145069, -0.009348234161734581, 0.004406329244375229, 0.022360293194651604, 0.004920603707432747, 0.020668361335992813, 0.023833127692341805, 0.0005496499943546951, 0.01766183227300644, -0.03912138566374779, -0.012683411128818989, 0.03512891009449959, 0.007826711982488632, 0.0036364386323839426, 0.006950314622372389, 0.022335950285196304, 0.0010977784404531121, 0.005797000601887703, -0.010029875673353672, -0.01833130232989788, -0.067774698138237, 0.012415623292326927, -0.024173948913812637, -0.009220425970852375, -0.011995683424174786, -0.010516763664782047, 0.006907711736857891, -0.009263028390705585, 0.012287815101444721, 0.02262808196246624, 0.001196677447296679, 0.013632841408252716, 0.05102577805519104, 0.023005420342087746, -0.03169635683298111, -0.01622551493346691, 0.017004534602165222, 0.03310832753777504, 0.003645567921921611, 0.006944228429347277, 0.011137544177472591, -0.00927520077675581, 0.025464199483394623, 0.014971780590713024, 0.03305964171886444, 0.022469842806458473, -0.016188999637961388, 0.012318246066570282, -0.04905388504266739, -0.009348234161734581, 0.013158125802874565, 0.006463427562266588, -0.0072181024588644505, 0.04328427091240883, 0.018599091097712517, -0.02184906229376793, -0.009865551255643368, -0.017649659886956215, -0.027752568945288658, 0.02772822603583336, -0.005276639945805073, -0.03454464673995972, 0.014387516304850578, -0.0014043651754036546, 0.011679206043481827, -0.052096929401159286, -0.01688281260430813, 0.017381872981786728, -0.0037764187436550856, 0.004369812551885843, -0.003405167255550623, -0.004482405260205269, 0.038756221532821655, 0.004214617423713207, 0.007242446765303612, -0.013973662629723549, 0.026559695601463318, -0.006980745121836662, -0.022579392418265343, -0.04011950269341469, -0.008550955913960934, 0.041141968220472336, 0.04683854803442955, 0.022920213639736176, 0.005571815185248852, -0.029383642598986626, 0.0269248615950346, 0.0033138759899884462, 0.02299324795603752, 0.007638042792677879, -0.007918003015220165, 0.02295673079788685, -0.012792960740625858, -0.00688336743041873, 0.01150879543274641, -0.0029745763167738914, -0.047106336802244186, -0.029140198603272438, 0.0001465416280552745, -0.0003887490020133555, -0.0008581386646255851, -0.0005568772321566939, -0.005030153319239616, 0.026657072827219963, -0.0047501930966973305, -0.007717161905020475, 0.01076020672917366, 0.010888014920055866, -0.007577181793749332, -0.013815423473715782, 0.006156079936772585, 0.010352439247071743, -0.02707092836499214, -0.022031644359230995, -0.006329533644020557, 0.029407985508441925, 0.015300429426133633, -0.015276085585355759, 0.03573751822113991, 0.028190767392516136, 0.000856617116369307, 0.037173837423324585, 0.01357198040932417, 0.0005812215968035161, 0.030430449172854424, 0.002128609921783209, 0.021374346688389778, -0.004363726358860731, -0.01034635305404663, 0.02013278566300869, 0.02326103486120701, -0.01616465486586094, -0.0017604015301913023, 0.043138206005096436, -0.014910920523107052, -0.005943066906183958, -0.01932942122220993, 0.011764411814510822, 0.02872634492814541, 0.028969787061214447, -0.0015626035165041685, -0.00987163744866848, -0.01424145046621561, -0.04033860191702843, 0.01816089265048504, -0.013401569798588753, -0.03111209161579609, -0.0027143959887325764, -0.027387404814362526, 0.0017817028565332294, 0.0368817038834095, 0.025415511801838875, -0.00030126143246889114, 0.009360406547784805, -0.026876172050833702, -0.015909038484096527, 0.007291135843843222, -0.008112757466733456, -0.0029547966551035643, 0.015933383256196976, 0.004947991110384464, -0.0012659067288041115, 0.020473606884479523, 0.006901626009494066, -0.003904226701706648, -0.0014675083803012967, 0.02043708972632885, 0.0031556375324726105, 2.3143782527768053e-05, -0.008027552627027035, -0.010352439247071743, 0.01657850854098797, 0.025415511801838875, -0.045548297464847565, -0.0015314123593270779, -0.018197407945990562, 0.06022794544696808, -0.005678321700543165, 0.007114639040082693, 0.01627420447766781, 0.017296668142080307, -0.029383642598986626, -0.023066280409693718, 0.03135553374886513, 0.004795838613063097, 0.03831802308559418, -0.0024542156606912613, 0.017820071429014206, -0.013145954348146915, 0.020254507660865784, 0.00022613628243561834, 0.026413630694150925, -0.0538010336458683, -0.0011061468394473195, -0.031160779297351837, 0.010583709925413132, 0.04442845657467842, 0.017041051760315895, -0.014618787914514542, -0.024867763742804527, -0.013705873861908913, -0.00014349858975037932, -0.03890228644013405, 0.0011692900443449616, -0.0008246651850640774, -0.013133781962096691, 0.008070155046880245, -0.005876119714230299, -0.010942789725959301, 0.0378311350941658, -0.0028178596403449774, 0.009810776449739933, 0.026437973603606224, -0.008179704658687115, -0.05428792163729668, 0.0019019030733034015, -0.019536348059773445, -0.03444726765155792, -0.04070376977324486, -0.012233040295541286, 0.006919884122908115, 0.01976761966943741, -0.02950536273419857, 0.011058425530791283, 0.015994243323802948, 0.005958281923085451, -0.008429234847426414, 0.03271881863474846, 0.0009068273939192295, 0.005754397716373205, 0.016505476087331772, 0.020972665399312973, -0.005066670011729002, -0.04231049492955208, -0.03963261842727661, -0.013486774638295174, 0.02371140569448471, 0.013316364958882332, 0.0038707531057298183, -0.031136436387896538, -0.009780346415936947, -0.01741838827729225, -0.007212016265839338, 0.005556600168347359, -0.04442845657467842, -0.028434211388230324, -0.02833683416247368, -0.013632841408252716, -0.015580389648675919, 0.004403286147862673, -0.004156799521297216, -0.005577901378273964, -0.01586035080254078, -0.013072920963168144, 0.028604622930288315, -0.02733871527016163, 0.023808782920241356, -0.010175942443311214, -0.03308398276567459, -0.017674004659056664, -0.036565229296684265, 0.02132565900683403, 0.0028513330034911633, 0.023078452795743942, 0.0348854660987854, -0.027046583592891693, 0.033619560301303864, -0.01896425522863865, 0.005760483909398317, -0.022883698344230652, -0.0021042656153440475, -0.010188114829361439, 0.004403286147862673, -0.020473606884479523, 0.016627198085188866, 0.022311605513095856, 0.011551398783922195, -0.01702887937426567, -0.015422151423990726, 0.005757440812885761, -0.008672677911818027, -0.002206207485869527, -0.013620669022202492, -0.011776584200561047, 0.04048467054963112, 0.021836889907717705, 0.02651100791990757, -0.020619671791791916, 0.012780788354575634, 0.03444726765155792, -0.029213231056928635, -0.010188114829361439, -0.003268230240792036, -0.014497065916657448, 0.03052782639861107, 0.0065668909810483456, -0.0022594607435166836, -0.003624266479164362, -0.00206927047111094, 0.029748806729912758, 0.026437973603606224, 0.005206649657338858, 0.002962404163554311, 0.0036181805189698935, 0.034009069204330444, 0.007808453403413296, 0.02082659862935543, 0.008337942883372307, 0.015324774198234081, -0.0448666550219059, 0.026462318375706673, -0.02767953649163246, -0.03469071164727211, -0.004798881709575653, 0.025001656264066696, -0.01306074857711792, -0.003889011451974511, 0.016797607764601707, 0.022895870730280876, -0.01306074857711792, -0.007844969630241394, 0.028458556160330772, -0.03142856806516647, 0.04148278757929802, 0.025658953934907913, -0.004013776313513517, -0.018014825880527496, -0.04007081687450409, -0.015495184808969498, 0.016651540994644165, 0.004741063807159662, 0.033814314752817154, -0.044379767030477524, 0.0004545548290479928, -0.0018166977679356933, -0.03909704089164734, -0.009987273253500462, 0.026364941149950027, -0.013815423473715782, -0.02767953649163246, -0.02193426713347435, -0.024173948913812637, -0.001075716339983046, -0.01904946193099022, -0.00794234685599804, 0.020875288173556328, 0.015203052200376987, -0.0043119946494698524, -0.010048134252429008, 0.005973496939986944, 0.0379285104572773, 0.001971893012523651, -0.0219586119055748, 0.010839326307177544, 0.017929621040821075, 0.012853821739554405, -0.010194200091063976, 0.040995899587869644, -0.03610268607735634, -0.0016234645154327154, -0.0005074277287349105, 0.02229943312704563, 0.010516763664782047, 0.044915344566106796, -0.05341152474284172, -0.023553168401122093, -0.01915901154279709, 0.0013457866152748466, 0.012153921648859978, -0.02453911490738392, 0.025975432246923447, -0.00815536081790924, -0.012153921648859978, 0.017041051760315895, -0.015276085585355759, -0.006798162125051022, -0.047374121844768524, -0.03712514787912369, 0.023005420342087746, -0.0008748754044063389, 0.01324333157390356, 0.007686731405556202, -0.01435100007802248, 0.0010452859569340944, -0.011861789040267467, 0.028555933386087418, 0.012074802070856094, 0.04403894767165184], [0.03903694450855255, -0.00879922416061163, 0.004150327295064926, 0.03074159473180771, -0.021650653332471848, 0.009403872303664684, -0.03252371400594711, 0.013111322186887264, 0.030083905905485153, 0.04459546506404877, 0.030868887901306152, -0.013981166295707226, 0.019773060455918312, -1.568389416206628e-05, -0.0501115582883358, 0.013281047344207764, 0.012771870009601116, 0.06772061437368393, -0.02948986552655697, -0.006900416687130928, 0.021979497745633125, 0.038782354444265366, -0.002906555077061057, 0.0016442191554233432, 0.009881226345896721, -0.04540166258811951, 0.008682537823915482, -0.02299785241484642, 0.031102262437343597, -0.061695344746112823, -0.019147196784615517, -0.013440165668725967, 0.002167982514947653, -0.008958342485129833, 0.008274135179817677, 0.06037997081875801, 0.03237520530819893, -0.042028363794088364, -0.036915373057127, 0.013058282434940338, -0.045444097369909286, -0.015137423761188984, 0.03617282211780548, -0.007011799141764641, -0.01601787656545639, 0.04756566882133484, 0.006619308143854141, -0.013143145479261875, -0.03122955560684204, 0.009584206156432629, -0.0026585962623357773, 0.02422836422920227, 0.039121806621551514, 0.04888104274868965, 0.006932239979505539, -0.013970558531582355, -0.0006063058390282094, -0.027007626369595528, 0.012379379011690617, -0.034454345703125, 0.002023450331762433, 0.0016548270359635353, -0.004802711308002472, 0.010247197933495045, 0.008194576017558575, -0.020314062014222145, -0.02592562325298786, 0.0559246651828289, -0.008401429280638695, -0.008364302106201649, 0.0715818777680397, 0.02620142698287964, 0.01595422998070717, 0.013121929951012135, -0.01559356227517128, -0.0014811232686042786, 0.013875087723135948, 0.009568294510245323, 0.030614299699664116, 0.03364814817905426, -0.03313897177577019, 0.019030511379241943, 0.004038944840431213, 0.004656853154301643, -0.0615256205201149, -0.007398986257612705, -0.05002669245004654, 0.004937961231917143, -0.012389986775815487, -0.007520976476371288, 0.05087532475590706, 0.03617282211780548, -0.005802502389997244, 0.03479379788041115, 0.032544929534196854, 0.007006495259702206, 0.032205481082201004, -0.031356848776340485, -0.021852202713489532, -0.010820022784173489, -0.03778521716594696, 0.012729438953101635, -0.03282073512673378, 0.014066029340028763, 0.016569485887885094, -0.017768174409866333, -0.024419305846095085, 0.011732298880815506, 0.017810605466365814, 0.011212513782083988, 0.013662930577993393, 0.010135815478861332, 0.0386974923312664, -0.00030265565146692097, -0.02253110706806183, 0.025607386603951454, -0.01926388405263424, -0.07086054235696793, -0.016930153593420982, -0.0147661492228508, -0.01477675698697567, 0.009992609731853008, -0.030593084171414375, -0.06963002681732178, 0.01147771067917347, 0.011201906017959118, -0.036724429577589035, -0.018574371933937073, -0.014320618472993374, -0.013397733680903912, -0.006179081741720438, -0.013981166295707226, 0.10124146938323975, 0.00021464352903421968, -0.018712274730205536, -0.025161856785416603, -0.04798998311161995, -0.040458399802446365, -0.0010355928679928184, 0.06873896718025208, 0.007871036417782307, -0.0033918649423867464, 0.03354207053780556, -0.0038055717013776302, -0.02301906794309616, -0.0436195433139801, 0.01682407408952713, 0.003341477597132325, -0.0018484205938875675, -0.024949699640274048, -0.03453921154141426, 0.05999808758497238, -0.02957472950220108, 0.013249224051833153, -0.031059829518198967, 0.017906077206134796, 0.01926388405263424, 0.04383169859647751, 0.011032179929316044, 0.024737542495131493, -0.047395944595336914, -0.0019584770780056715, -0.006030571646988392, 0.008067281916737556, 0.011244337074458599, -0.02832300029695034, 0.04888104274868965, 0.009488735347986221, -0.016240641474723816, -0.029850533232092857, -0.003845351282507181, -0.014235755428671837, -0.0319933220744133, -0.053166620433330536, -0.03733968734741211, -0.014225147664546967, 0.027431940659880638, 0.024101071059703827, 0.025225503370165825, -0.058131102472543716, 0.0019796928390860558, 0.029829317703843117, 0.00535166822373867, -0.028832178562879562, -0.003561590798199177, 0.04024624079465866, -0.016749819740653038, -0.024822404608130455, -0.05541548877954483, 0.057240042835474014, -0.037997372448444366, -0.057706788182258606, 0.008152144961059093, -0.023252440616488457, 0.012389986775815487, 0.037169959396123886, -0.02458903193473816, -0.040012869983911514, 0.024928484112024307, -0.015285934321582317, -0.0141508923843503, -0.03576972335577011, -0.041243381798267365, -0.04883861169219017, -0.030487004667520523, -0.0574946291744709, -0.01645279861986637, -0.046929195523262024, 0.028832178562879562, -0.05583980306982994, 0.02380404993891716, 0.0014108461327850819, -0.01024189405143261, 0.02509821020066738, -0.014882835559546947, 0.0238252654671669, 0.0201337281614542, 0.04103122279047966, 0.07815875113010406, -0.045825980603694916, -0.01231573149561882, 0.02098235860466957, 0.04998426139354706, -0.04425601661205292, -0.02664695866405964, -0.04807484522461891, -0.03167508542537689, -0.05617925524711609, -0.01125494483858347, -0.06479284167289734, -0.04304671660065651, -0.0029887661803513765, 0.022382596507668495, -0.0393763966858387, -0.024376874789595604, -0.005349016282707453, 0.00900607742369175, 0.025755897164344788, 0.02429201267659664, -0.035960663110017776, 0.034687720239162445, 0.01334469486027956, -0.010979141108691692, 0.017152918502688408, 0.0034236887004226446, -0.02047318033874035, -0.014500952325761318, -0.029638376086950302, 0.04425601661205292, 0.018203096464276314, 0.029341356828808784, -0.0025710815098136663, 0.03559999540448189, -0.05337877944111824, -0.014203932136297226, 0.05940404534339905, -0.007208044640719891, -0.04849915951490402, 0.038039807230234146, 0.04722621664404869, -0.018659235909581184, -0.0004485138051677495, -0.02586197666823864, -0.03581215441226959, -0.06559903919696808, 0.021894633769989014, -0.014182716608047485, -0.03411489725112915, -0.025777112692594528, 0.06632037460803986, -0.009753932245075703, 0.009207626804709435, 0.005659296177327633, -0.005319844465702772, -0.08808771520853043, 0.04198593273758888, 0.004370440728962421, 0.04552895948290825, 0.030189985409379005, -0.006009355653077364, -0.03657592087984085, 0.0017794694285839796, -0.012092966586351395, -0.015434443950653076, 0.061398327350616455, 0.031802382320165634, 0.005717639345675707, -0.02501334622502327, -0.007367162499576807, -0.011307984590530396, 0.06390178203582764, 0.010809415020048618, 0.005065255798399448, 0.001485101180151105, 0.009822883643209934, 0.011658044531941414, 0.03205696865916252, 0.04219808802008629, 0.03330869600176811, 0.008852263912558556, -0.002085771644487977, 0.07238807529211044, -0.04964480921626091, -0.006985279265791178, -0.06899355351924896, 0.01811823435127735, 0.0501115582883358, -0.009748628363013268, -0.015052560716867447, -0.028195707127451897, 0.010464658960700035, -0.02919284626841545, -0.07675851136445999, 0.044977348297834396, -0.007653574924916029, -0.007011799141764641, -0.03973706439137459, -0.019942786544561386, 0.024101071059703827, -0.024737542495131493, 0.04134945943951607, 0.024822404608130455, 0.004784147255122662, 0.003686233190819621, -0.017884861677885056, -0.010926101356744766, -0.016908938065171242, 0.04646245017647743, 0.026583310216665268, 0.025777112692594528, 0.0021361589897423983, 0.03165386989712715, 0.018744098022580147, 0.003863915102556348, -0.043280091136693954, -0.01254910510033369, -0.026901546865701675, 0.010565433651208878, -0.008088497444987297, -0.009854706935584545, -0.02139606513082981, -0.012782477773725986, -0.004667460918426514, 0.019794277846813202, -0.005701727699488401, 0.04514707624912262, 0.03719117492437363, 0.03207818418741226, 0.004110547713935375, 0.05872514471411705, 0.00594040472060442, 0.02250988967716694, -0.015869366005063057, -0.012771870009601116, -0.03207818418741226, -0.017757566645741463, 0.036130391061306, 0.0070595345459878445, -0.020271630957722664, 0.009976697154343128, 0.01564660109579563, -0.02056865207850933, 0.007292907685041428, 0.08363240957260132, 0.0007498434861190617, 0.017821213230490685, -0.03332991525530815, -0.02128998562693596, 0.009382656775414944, -0.02705005742609501, -0.028874609619379044, -0.04540166258811951, 0.03002025932073593, -0.013790225610136986, 0.004993652459233999, 0.0007690702332183719, 0.008634802885353565, 0.03526054322719574, 0.03413611277937889, -0.0046621570363640785, 0.03901572898030281, 0.013875087723135948, 0.004455303307622671, 0.001495709060691297, -0.004420828074216843, 0.06207722797989845, -0.05096018686890602, 0.006932239979505539, 0.013249224051833153, 0.018701666966080666, -0.004927353467792273, -0.03489987924695015, 0.00501221651211381, 0.00205262191593647, -0.011827769689261913, 0.04476519301533699, -0.017152918502688408, 0.02004886604845524, -0.00760053563863039, -0.01844707876443863, 0.0025763853918761015, -0.042516324669122696, 0.012474849820137024, 0.010904885828495026, -0.012230869382619858, 0.0230402834713459, -0.0020897495560348034, -0.009610726498067379, -0.015922406688332558, 0.04011894762516022, 0.023634323850274086, 0.023952560499310493, 0.01332347933202982, 0.039652202278375626, 0.015317757613956928, 0.02135363407433033, -0.05303932726383209, 0.05074802786111832, 0.015148031525313854, -0.048668887466192245, 0.013652322813868523, 0.03583336994051933, -0.039524905383586884, 0.00514481496065855, 0.007398986257612705, 0.03040214255452156, 0.01802276261150837, 0.02139606513082981, -0.01332347933202982, -0.02212800830602646, -0.04896590858697891, -0.014214539900422096, -0.0007597883814014494, 0.021141475066542625, -0.03931275010108948, -0.016346720978617668, -0.026349937543272972, -0.010210070759057999, -0.008953038603067398, 0.02917163074016571, -0.015094992704689503, -0.014607030898332596, -0.0010581345995888114, -0.054057683795690536, -0.042855776846408844, -0.013090105727314949, 0.008480988442897797, 0.022658400237560272, 0.011870201677083969, 0.03933396562933922, 0.008915910497307777, 0.017927292734384537, -0.03453921154141426, -0.02335852012038231, 0.005370231810957193, -0.05006912350654602, -0.008093801327049732, -0.035939447581768036, -0.0114671029150486, 0.02048378810286522, -0.014660069718956947, 0.03557877987623215, 0.007340643089264631, 0.022297732532024384, 0.01638915203511715, 0.0007916119648143649, -0.014119069091975689, -0.051554225385189056, -0.026456017047166824, -0.04642001911997795, -0.02870488353073597, 0.0016574789769947529, 0.014522167854011059, 0.005314540583640337, -0.0014599075075238943, -0.03778521716594696, 0.007160309236496687, -0.01757723279297352, -0.0018948300275951624, 0.02957472950220108, -0.031823597848415375, 0.006009355653077364, -0.07709796726703644, -0.0275168027728796, 0.0796438530087471, 0.011742906644940376, 0.018977470695972443, -0.005354320164769888, -0.007876340299844742, -0.016717996448278427, -0.0176727045327425, 0.002734177280217409, 0.012358163483440876, -0.006905720569193363, -0.0012855407549068332, 0.0312083400785923, 0.002632076619192958, -0.006370023358613253, -9.331606997875497e-05, 0.035960663110017776, -0.008862871676683426, -0.0029940700624138117, 0.003468771930783987, 0.0007783521432429552, 0.07862550020217896, 0.01477675698697567, -0.008130928501486778, 0.016102740541100502, -0.0003573524591047317, 0.0005867475410923362, -0.035133250057697296, 0.006332895718514919, -0.004747019615024328, 0.008528724312782288, -0.02098235860466957, -0.020738376304507256, 0.05707031488418579, 0.007176220882683992, -0.05774921923875809, 0.0217036921530962, -0.0010077472543343902, -0.004540166351944208, 0.0229342058300972, -0.01647401601076126, -0.013928127475082874, 0.04527436941862106, -0.025352798402309418, -0.016166387125849724, -0.007452025543898344, 0.0063647194765508175, -0.019465433433651924, -0.026158995926380157, -0.0025830152444541454, -0.02337973564863205, 0.011795946396887302, -0.0049671330489218235, 0.019550295546650887, 0.04024624079465866, -0.03148414567112923, 0.03405124694108963, -0.03358450159430504, 0.019762452691793442, 0.05329391732811928, -0.036681998521089554, 0.02917163074016571, -0.014426697045564651, -0.019030511379241943, -0.0019027858506888151, 0.014904051087796688, -0.017831820994615555, -0.013917519710958004, 0.000431276042945683, -0.01213539857417345, 0.02828056924045086, 0.0008804528624750674, 0.04646245017647743, 0.019476041197776794, -0.039949219673871994, -0.006698866840451956, -0.031017398461699486, 0.011965672485530376, 0.03536662459373474, 0.002105661202222109, -0.008661322295665741, -0.02014433592557907, 0.033435992896556854, -0.006576876621693373, -0.04192228615283966, -0.016548270359635353, -0.019072942435741425, -0.006338199600577354, 0.007372466381639242, 0.01726960577070713, -0.04391656443476677, 0.04671704024076462, 0.01689833030104637, 0.00921823550015688, -0.04117973521351814, 0.005897973198443651, 0.03971584886312485, 0.01929570734500885, 0.021852202713489532, -0.022043144330382347, -0.016325505450367928, -0.020420141518115997, 0.019041119143366814, -0.008884087204933167, -0.04323766008019447, 0.02951108105480671, 0.014840403571724892, -0.012008103542029858, 0.010284326039254665, -0.04058569297194481, 0.000840010354295373, 0.017948508262634277, 0.019221452996134758, -0.0008665299974381924, 0.0507904589176178, -0.030911320820450783, -0.013482596725225449, 0.018998686224222183, 0.01723778061568737, 0.007303515449166298, 0.020409533753991127, -0.02586197666823864, 0.01110643520951271, -0.012008103542029858, -0.05015398934483528, 0.019804885610938072, -0.009037901647388935, 0.0027766088023781776, -0.016134563833475113, -0.012750654481351376, -0.02787747047841549, 0.012612751685082912, -0.013228008523583412, -0.06322287768125534, -0.018818354234099388, -0.02178855612874031, 0.015338973142206669, -0.030253631994128227, 0.01109582744538784, 0.00205262191593647, -0.02299785241484642, -0.019104765728116035, 0.020717160776257515, 0.0025763853918761015, -0.013397733680903912, -0.07289725542068481, -0.040034085512161255, -0.008730273693799973, -0.04270726814866066, -0.017152918502688408, -0.054057683795690536, 0.02501334622502327, 0.008942430838942528, -0.03339356184005737, 0.011817161925137043, 0.012400594539940357, -0.0016309593338519335, 0.0027500891592353582, 0.015869366005063057, 0.018224313855171204, -0.024037422612309456, 0.033902738243341446, -0.006030571646988392, -0.0267318207770586, 0.01148831844329834, 0.06746602803468704, 0.006205601152032614, -0.007701310329139233, -0.005892669316381216, -0.05163908749818802, -0.013005242682993412, 0.007574015762656927, 0.009499343112111092, -0.010968533344566822, 0.025649819523096085, -0.00016152132593560964, 0.02711370401084423, -0.018351607024669647, 0.015720857307314873, 0.0303172804415226, 0.006757210474461317, 0.03284195065498352, 0.021937066689133644, 0.044128719717264175, -0.012729438953101635, -0.005118295084685087, -0.03379666060209274, -0.031802382320165634, 0.005701727699488401, 0.004648896865546703, -0.04633515700697899, 0.02671060524880886, 0.008539332076907158, -0.01596483774483204, -0.0054418351501226425, 0.019094157963991165, 0.02424957975745201, -0.0025538436602801085, 0.012092966586351395, -0.03695780411362648, 0.039185456931591034, -0.016580093652009964, -0.006348807364702225, -0.003113408572971821, -0.0312083400785923, -0.008295350708067417, 0.018988078460097313, -0.017110487446188927, 0.011010964401066303, -0.009695588611066341, 0.03118712455034256, -0.004781495314091444, 0.04807484522461891, 0.01969880610704422, -0.01252788957208395, 0.025968054309487343, -0.0213642418384552, -0.005675207823514938, -0.009366745129227638, 0.021618830040097237, -0.06067699193954468, -0.008899998851120472, -0.037233609706163406, -0.010979141108691692, -0.01926388405263424, 0.0021931761875748634, 0.007139093708246946, -0.0035058995708823204, -0.0012338273227214813, -0.02921406179666519, -0.035451486706733704, -0.007006495259702206, -0.01926388405263424, -0.006163169629871845, 0.020621690899133682, -0.010926101356744766, 0.010040344670414925, -0.022870557382702827, 0.036342546343803406, -0.013514420948922634, -0.027283430099487305, 0.01684528961777687, 0.0032645706087350845, -0.002951638540253043, -0.0014453217154368758, -0.020218592137098312, -0.037551842629909515, -0.011562573723495007, -0.01598605327308178, 0.011636828072369099, 0.031462930142879486, -0.02711370401084423, -0.000883104803506285, -0.01067151315510273, 0.010332060977816582, -0.008953038603067398, -0.053548503667116165, 0.008581763133406639, -0.042070794850587845, 0.002930422779172659, -0.01966698281466961, -0.01685589738190174, -0.005860845558345318, -0.037636708468198776, -0.004426131956279278, 0.027219783514738083, -0.0184576865285635, -0.0014943830901756883, 0.004192758817225695, -0.01648462377488613, -0.018765313550829887, 0.0060517871752381325, -0.03725482523441315, 0.00844386126846075, -0.008523419499397278, 0.05516090244054794, 0.02785625495016575, 0.02834421582520008, -0.005945708602666855, 0.007186828646808863, 0.01064499281346798, -0.0007829930982552469, -0.008152144961059093, -0.017428722232580185, 0.015795111656188965, 0.010374492034316063, -0.004545470234006643, -0.012092966586351395, 0.002213065978139639, -0.030720379203557968, 0.027750175446271896, 0.03033849596977234, -0.01804398000240326, -0.04134945943951607, -0.018659235909581184, 0.043322522193193436, 0.0021693084854632616, 0.00923945102840662, -0.034454345703125, -0.008380213752388954, 0.00706483842805028, -0.02758045122027397, 0.010199462994933128, 0.00256312545388937, 0.00822109542787075, 0.022425027564167976, -0.008173360489308834, 0.00688980845734477, -0.013864479959011078, 0.0022104140371084213, 0.028153274208307266, -0.017768174409866333, 8.643753244541585e-05, 0.013302262872457504, -0.02058986760675907, -0.04181620478630066, 0.015041952952742577, -0.014331226237118244, -0.028153274208307266, 0.013174968771636486, 0.013938735239207745, 0.045825980603694916, -0.009844099171459675, -0.01679225079715252, -0.014363049529492855, 0.029638376086950302, 0.012973419390618801, -0.02257353812456131, 0.043704405426979065, 0.0037445765919983387, -0.016930153593420982, -0.019041119143366814, -0.03946125879883766, -0.022403812035918236, 0.002499478403478861, -0.027028841897845268, -0.015933014452457428, 0.012496065348386765, -0.022446243092417717, -0.0014864271506667137, 0.004046900663524866, -0.0003135950246360153, -0.003893086686730385, -0.01890321634709835, 0.0017967071617022157, -0.026392368599772453, 0.008571155369281769, 0.004179499112069607, -0.010560129769146442, -0.015689032152295113, -0.006693562958389521, 0.0024543949402868748, 0.0011184668401256204, -0.04480762407183647, 0.03078402578830719, -0.034666504710912704, -0.02128998562693596, -0.0018192488932982087, -0.003696841187775135, -0.04646245017647743, -0.0007524954853579402, -0.023994991555809975, -0.02208557538688183, -0.019571511074900627, -0.025225503370165825, 0.008173360489308834, 0.0061949933879077435, -0.023273656144738197, -0.005388795863837004, -0.02376161888241768, 0.005112991202622652, 0.0031213643960654736, -0.0010760353179648519, 6.98627409292385e-05, -0.026180211454629898, -0.035536348819732666, 0.010003217495977879, -0.030847672373056412, 0.014310010708868504, -0.025183072313666344, 0.019433610141277313, 0.011339807882905006, 0.021512750536203384, -0.025607386603951454, -0.011732298880815506, 0.00019956046890001744, -0.017980331555008888, 0.012591536156833172, -0.01602848432958126, 0.022382596507668495, 0.002638706471771002, -0.029044335708022118, 0.008565851487219334, -0.005516089964658022, 0.004556078463792801, -0.01764088124036789, -0.023634323850274086, 0.032247912138700485, 0.006810249760746956, 0.013705362565815449, 0.036745645105838776, -0.022658400237560272, -0.021597614511847496, -0.012389986775815487, 0.018150057643651962, 0.0024928483180701733, -0.0062586404383182526, 0.008183968253433704, 0.01069272868335247, 0.046165429055690765, -0.00521906977519393, -0.037169959396123886, 0.025649819523096085, -0.02624385990202427, 0.031759947538375854, -0.01268700696527958, 0.003153187921270728, -0.030720379203557968, 0.0025843412149697542, -0.0253952294588089, -0.013578067533671856, -0.014119069091975689, 0.014935874380171299, -0.026901546865701675, 0.046122997999191284, 0.009806971997022629, 0.013684146106243134, -0.04790512099862099, -0.03727604076266289, -0.06661739200353622, 0.001160898245871067, 0.0836748406291008, 0.018574371933937073, 0.0114671029150486, 0.019380569458007812, 0.02418593317270279, -0.005855541676282883, 0.03935518115758896, 0.011414063163101673, -0.0385914146900177, 0.0024345051497220993, 0.009409177117049694, -0.04323766008019447, 0.006449582055211067, 0.003060369286686182, 0.020706553012132645, -0.016940761357545853, -0.026349937543272972, 0.03150536119937897, -0.0018325087148696184, 0.028832178562879562, -0.017980331555008888, -0.01252788957208395, 0.011117042973637581, -0.035133250057697296, 0.01720595732331276, -0.019964002072811127, -0.028598805889487267, 0.002397377509623766, -0.007860428653657436, -0.023931344971060753, 0.029320139437913895, 0.03201453760266304, -0.0005436530918814242, -0.006815553642809391, 0.02545887790620327, -0.01731203682720661, 0.004640941042453051, 0.02469511143863201, 0.05367580056190491, 0.023507030680775642, -0.029638376086950302, -0.00706483842805028, 0.02212800830602646, 0.027750175446271896, 0.015328365378081799, -0.03320261836051941, -0.00473375990986824, 0.043704405426979065, 0.006322287954390049, -0.011371632106602192, 0.030953751876950264, -0.005412663333117962, 0.02834421582520008, -0.007048926781862974, -0.012241477146744728, 0.023464597761631012, -0.04633515700697899, -0.005258849356323481, 0.018383430317044258, -0.03335113078355789, 0.0362364687025547, 0.03439069911837578, -0.010745767503976822, -0.019603336229920387, 0.010284326039254665, -0.009913050569593906, -0.014490344561636448, 0.04726864770054817, 0.045741114765405655, 0.019168412312865257, -0.009891835041344166, 0.02180977165699005, 0.01188080944120884, -0.01724838837981224, -0.002092401497066021, -0.018574371933937073, 0.015678424388170242, 0.007844516076147556, -0.0031850116793066263, -0.00307362899184227, 0.017863646149635315, 0.034242190420627594, 0.014310010708868504, -0.02422836422920227, 0.0021653305739164352, 0.0035403750371187925, 0.04468033090233803, 0.028980689123272896, 0.030126338824629784, 0.035048387944698334, -0.00779678113758564, 0.017121095210313797, -0.011392847634851933, -0.016304289922118187, -0.025543740019202232, 0.022043144330382347, 0.019592728465795517, -0.0012139376485720277, 0.011435278691351414, 0.03782764822244644, -0.021173300221562386, 0.00964254979044199, 0.01682407408952713, 0.002092401497066021, -0.015561738982796669, -0.0026877678465098143, -0.01254910510033369, -0.006232121028006077, 0.0006974671850912273, 0.014246363192796707, 0.020738376304507256, -0.024079855531454086, 0.014076637104153633, 0.03201453760266304, 0.04552895948290825, 0.012008103542029858, 0.007833908312022686, -0.014352441765367985, -0.004524254705756903, 0.025352798402309418, 0.0022780392318964005, 0.04228295013308525, -0.024376874789595604, -0.009748628363013268, 0.018351607024669647, 0.041264597326517105, 0.022318949922919273, -0.03615160658955574, -0.010968533344566822, 0.03901572898030281, -0.01718474179506302, -0.010989748872816563, -0.008862871676683426, -0.008364302106201649, -0.014341834001243114, 0.004354528617113829, 0.010130511596798897, 0.02141728065907955, -0.018712274730205536, 0.056051962077617645, -0.026774251833558083, -0.011764123104512691, -0.004195410758256912, -0.024779973551630974, -0.005436531268060207, 0.017460547387599945, -0.01269761472940445, -0.01374779362231493, -0.02429201267659664, -0.007250476162880659, 0.029405003413558006, -0.024143502116203308, -0.0002486218581907451, 0.07005434483289719, 0.029808102175593376, 0.011848986148834229, 0.012061143293976784, 0.007913467474281788, 0.03161143884062767, 0.0042723179794847965, -0.015476875938475132, 0.028238138183951378, -0.027389509603381157, 0.013928127475082874, -0.021533966064453125, 0.055670078843832016, -0.008947734721004963, 0.012644575908780098, -0.008671930059790611, -0.038739923387765884, 0.010395708493888378, -0.015699641779065132, -0.022064359858632088, 0.007420201785862446, 0.016527054831385612, 0.010979141108691692, -0.014066029340028763, 0.012262692674994469, 0.014861620031297207, 0.032247912138700485, 0.027389509603381157, 0.00402038125321269, 0.01190202496945858, 0.0192426685243845, 0.006587484385818243, 0.018319783732295036, 0.00804076250642538, 0.06284099817276001, -0.00343960034660995, -0.0055585214868187904, -0.010215374641120434, 0.003089540870860219, -0.00860297866165638, 0.0073830746114254, -0.006571572739630938, 0.03167508542537689, 0.02955351397395134, -0.006375327240675688, 0.015084384940564632, -0.022064359858632088, 0.011159474961459637, 0.024334443733096123, -0.009122764691710472, -0.010979141108691692, -0.010103992186486721, -0.019115373492240906, -0.018595587462186813, -8.544304000679404e-05, -0.04968724027276039, 0.003696841187775135, 0.03207818418741226, 0.011053395457565784, -0.02056865207850933, -0.006470798049122095, 0.011201906017959118, -0.010342668741941452, 0.031335633248090744, -0.020282238721847534, -0.0037737481761723757, -0.05214826762676239, 0.03360571712255478, 0.042113225907087326, 0.008279439061880112, -0.05333634838461876, -0.023931344971060753, -0.005274761002510786, 0.020229199901223183, 0.02997782826423645, -0.013556852005422115, 0.003370649181306362, 0.03407246246933937, -0.03252371400594711, 0.008348390460014343, 0.04304671660065651, 0.009409177117049694, -0.0022674312349408865, -0.014458520337939262, 0.051469363272190094, 0.0002801139489747584, -0.029277708381414413, 0.030062690377235413, 0.0076111434027552605, -0.010894278064370155, -0.018139449879527092, 0.02796233259141445, -0.005494874436408281, -0.0009686307166703045, -0.006523837335407734, -0.025225503370165825, 0.01335530262440443, -0.022912990301847458, -0.009393264539539814, -0.006863289047032595, 0.018224313855171204, -0.02668938972055912, -0.0036994931288063526, -0.0039991652593016624, 0.007319427095353603, -0.016208818182349205, -0.020674729719758034, 0.029426218941807747, 0.0201867688447237, 0.03129320219159126, -0.0006782403797842562, 0.020367100834846497, 0.003561590798199177, 0.00277395686134696, 0.03358450159430504, -0.0192426685243845, -0.04344981536269188, 0.0012358162784948945, 0.004179499112069607, 0.019624551758170128, 0.028810963034629822, -0.02176734060049057, -0.013832656666636467, -0.009027293883264065, 0.013005242682993412, 0.03818831592798233, -0.018362214788794518, -0.0005303932703100145, 0.004139719530940056, -0.006905720569193363, 0.03364814817905426, 0.04175255820155144, 0.022785695269703865, -0.01296281162649393, 0.028832178562879562, 0.011933848261833191, -0.010894278064370155, -0.033881522715091705, 0.023719187825918198, -0.017916684970259666, 0.0066882590763270855, 0.012029319070279598, 0.002414615359157324, 0.006375327240675688, -0.007823300547897816, 0.015328365378081799, -0.03171751648187637, -0.001828530803322792, -0.027601666748523712, 0.007674790918827057, 0.02537401393055916, -0.0034899876918643713, 0.014055421575903893, -0.0004418838943820447, -0.004155631177127361, 0.005680512171238661, 0.025331582874059677, 0.03231155872344971, -0.043661974370479584, -0.0008632150711491704, -0.03235398977994919, -0.009069724939763546, 0.029001904651522636, 0.025119425728917122, -0.010098688304424286, 0.03035971149802208, -0.014055421575903893, 0.024355659261345863, 0.028620021417737007, 0.005142163019627333, 0.006088914815336466, 0.021173300221562386, -0.004054856486618519, -0.032884381711483, -0.016527054831385612, 0.020324669778347015, -0.006598092149943113, -0.019083550199866295, -0.021915849298238754, -0.014002382755279541, -0.004317401442676783, -0.025564955547451973, -0.014256970956921577, 0.020844455808401108, 0.00883635226637125, -0.01030023768544197, -0.004808015190064907, 0.007749045733362436, 0.027389509603381157, -0.027325861155986786, -0.005510786082595587, -0.014182716608047485, -0.007722525857388973, -0.045741114765405655, -0.012729438953101635, -0.012199045158922672, 0.008422644808888435, 0.03400881588459015, -0.00266655208542943, 0.05172395333647728, 0.00626924866810441, -0.015667816624045372, -0.0025777113623917103, 0.01842586323618889, 0.010798807255923748, -0.005606256891041994, 0.008565851487219334, 0.02951108105480671, 0.002442460972815752, -0.031738732010126114, 0.006216209381818771, -0.005553217604756355, 0.0046807206235826015, 0.01686650700867176, -0.0015460964059457183, 0.006560964975506067, -0.009727412834763527, 0.01417210791260004, -0.007319427095353603, 0.004476519301533699, -0.026158995926380157, -0.009992609731853008, -0.007727830205112696, 0.023676754906773567, -0.006921632215380669, 0.0014996869722381234, -0.03156900778412819, -0.0025008043739944696, -0.02250988967716694, 0.010538914240896702, 0.025267936289310455, 0.0250557791441679, 0.0025445616338402033, 0.012676399201154709, 0.020611083135008812, -0.03604552522301674, -0.023740403354167938, -0.03195089101791382, -0.008226399309933186, -0.02838664874434471, -0.00728229945525527, 0.01967759057879448, -0.022425027564167976, 0.035854585468769073, -0.019995827227830887, -0.007833908312022686, -0.013875087723135948, 0.0011184668401256204, 0.05868271365761757, 0.010125207714736462, -0.02015494368970394, -0.00595101248472929, 0.04425601661205292, 0.02295542135834694, -0.06394421309232712, -0.01771513558924198, -0.016113348305225372, 0.03638497740030289, -0.007886948063969612, -0.006295768078416586, 0.03394516929984093, 0.044468171894550323, -0.03825196251273155, 0.016155779361724854, -0.014352441765367985, -0.0011542683932930231, 0.013164361007511616, 0.009483431465923786, -0.023549461737275124, 0.0011045440332964063, 0.022064359858632088, 0.011233729310333729, 0.016930153593420982, 0.01414028462022543, -0.0009593488648533821, 0.00634350348263979, 0.008205183781683445, 0.004964481107890606, 0.0023987034801393747, -0.04030988737940788, -0.053081758320331573, -0.025968054309487343, -0.023952560499310493, -0.017449939623475075, -0.008141537196934223, -0.014267578721046448, 0.002787216566503048, -0.022340165451169014, -0.008576459251344204, -0.004359832499176264, 0.01024189405143261, 0.0014824492391198874, 0.04930535703897476, 0.010385100729763508, 0.011265553534030914, -0.02666817419230938, 0.023464597761631012, -0.036703214049339294, 0.032884381711483, -0.027771390974521637, 0.0035854585003107786, -0.004099939949810505, 0.026010485365986824, -0.010061560198664665, -0.046589747071266174, 0.01333408709615469, -0.004288229625672102, -0.02622264437377453, 0.01479797251522541, -0.005410011392086744, 0.009796364232897758, 0.017799997702240944, -0.010119903832674026, -0.019401786848902702, -0.03657592087984085, -0.0006729364395141602, -0.012114182114601135, 0.012167221866548061, 0.01417210791260004, 0.007139093708246946, -0.005929796956479549, -0.025289151817560196, -0.0046807206235826015, 0.010353276506066322, 0.0041688913479447365, 0.01416150014847517, -0.03487865999341011, 0.008910606615245342, -0.011583789251744747, -0.04096757620573044, -0.005669903941452503, 0.02747437171638012, -0.029808102175593376, -0.021067220717668533, -0.023231225088238716, -0.0026877678465098143, 0.00575476698577404, 0.02180977165699005, 0.005882061552256346, -0.021958282217383385, 0.0033043501898646355, -0.041243381798267365, 0.016346720978617668, -0.008099105209112167, 0.05286960303783417, -0.011976280249655247, -0.015667816624045372, 0.035090819001197815, -0.035515133291482925, 0.028641236945986748, -0.0003762477426789701, -0.011127650737762451, 0.025161856785416603, -0.0295322984457016, -0.031462930142879486, 0.01882896199822426, -0.009207626804709435, -0.010857149958610535, 0.01931692287325859, -0.0067731221206486225, -0.002202457981184125, -0.021873418241739273, 0.01973062939941883, 0.03040214255452156, -0.008316566236317158, -0.0059351008385419846, 0.008512811735272408, 0.009515255689620972, -0.03271465748548508, -0.0005264153005555272, -0.025310367345809937, -0.042473893612623215, -0.004282925743609667, 0.03122955560684204, -0.02335852012038231, 0.026498448103666306, 0.01965637505054474, 0.03313897177577019, -0.003749880474060774, 0.0003888445789925754, 0.011350415647029877, -0.00843325350433588, -0.019147196784615517, 0.03002025932073593, 0.007499760948121548, 0.03661835193634033, 0.02388891391456127, -0.016739211976528168, -0.017534801736474037, -0.006301071960479021, -0.03035971149802208, 0.033902738243341446, 0.01799093931913376, -0.023697972297668457, -0.00634350348263979, 0.017142310738563538, -0.027028841897845268, -0.013450773432850838, 0.04849915951490402, -0.00452690664678812, 0.0015354885254055262, -0.006640523672103882, -0.008268831297755241, -0.024419305846095085, 0.0724729374051094, 0.03500595688819885, -0.05533062666654587, -0.03371179476380348, -0.015752680599689484, -0.01930631510913372, 0.009520559571683407, -0.02178855612874031, 0.0053569721058011055, 0.0184576865285635, 0.03082645684480667, 0.006884504575282335, 0.010443443432450294, 0.009478127583861351, -0.02015494368970394, -0.01228390820324421, -0.024313228204846382, 0.023082714527845383, 0.020695945248007774, -0.022382596507668495, -0.0318872444331646, 0.00862419418990612, 0.017746958881616592, -0.008104409091174603, 0.0055001783184707165, 0.010310845449566841, -0.008173360489308834, 0.004564034286886454, 0.025713466107845306, 0.0010322779417037964, -0.03742454946041107, -0.01927449181675911, -0.00594040472060442, -0.009234147146344185, 0.019104765728116035, -0.018298568204045296, 0.02749558724462986, -0.003307002130895853, -0.04472276195883751, 0.033075325191020966, -0.010724551975727081, -0.01152014173567295, -0.05138450115919113, -0.037169959396123886, 0.02127937786281109, 0.05185124650597572, -0.030720379203557968, 0.009844099171459675, -0.014246363192796707, 0.0021533966064453125, 0.022722048684954643, -0.028089627623558044, 0.016686173155903816, -0.009881226345896721, -0.008523419499397278, 0.01717413403093815, 0.03203575313091278, 0.0005237633595243096, 0.02099296636879444, -0.04054326191544533, 0.012591536156833172, -0.023719187825918198, 0.05303932726383209, -0.033011678606271744, 0.011679260060191154], [0.010663794353604317, -0.0008381899097003043, 0.03832686319947243, 0.021394867449998856, -0.010579694993793964, -0.009105153381824493, -0.007193295285105705, -0.014296884648501873, 0.02762943133711815, 0.07185446470975876, -0.0247588399797678, 0.013489531353116035, 0.013702583499252796, 0.026799650862812996, -0.03922392427921295, -0.029356271028518677, 0.0056038182228803635, 0.036129068583250046, -0.01581067219376564, 0.018434571102261543, -0.028145240619778633, 0.024646708741784096, -0.0351647287607193, -0.008662230335175991, -0.05830886587500572, 0.02408604696393013, 0.08773241192102432, 0.009761128574609756, 0.005802853498607874, -0.01906251348555088, 0.028661049902439117, -0.03552355244755745, 0.038640834391117096, -0.052702244371175766, 0.056963276118040085, -0.0240411926060915, -0.030073918402194977, 0.004816087894141674, 0.01981380023062229, 0.02442244440317154, -0.02080056630074978, 0.014095046557486057, 0.048082385212183, -0.037519510835409164, -0.002016982063651085, 0.052298564463853836, 0.03675701096653938, -0.05346474424004555, -0.03132979944348335, 0.0001941292721312493, 0.006772798951715231, 0.01872611604630947, -0.008533278480172157, -0.028840461745858192, -0.0026981865521520376, 0.02552134171128273, -0.01726839505136013, -0.02047538198530674, 0.03381914272904396, -0.025947444140911102, -0.012413060292601585, -0.030791565775871277, 0.010069492273032665, -0.009239712730050087, 0.01764964498579502, 0.030769139528274536, 0.013747435994446278, 0.02552134171128273, -0.012065449729561806, -0.003910618368536234, 0.03422281891107559, 0.009054693393409252, 0.02339082583785057, -0.018748542293906212, -0.010899272747337818, -0.01827758550643921, -0.011246883310377598, 0.03626362979412079, 0.03159891813993454, -0.02368236891925335, -0.06539563089609146, -0.02270681783556938, 0.021809758618474007, 0.0036218776367604733, -0.0002230384125141427, 0.02628384158015251, -0.04503238573670387, -0.03307906538248062, -0.027920976281166077, -0.029311416670680046, -0.03094855137169361, 0.0015698539791628718, -0.05131180211901665, -0.003896601963788271, -0.014330524951219559, -0.009105153381824493, 0.05315077304840088, -0.01368015632033348, -0.002448691986501217, 0.019208285957574844, 0.002740236232057214, -0.03873054310679436, -0.07019490003585815, 0.04321583732962608, 0.036443039774894714, -0.09948389232158661, -0.05144635960459709, 0.052298564463853836, 0.01796361617743969, 0.02446729689836502, 0.03242870047688484, -0.012200008146464825, 0.02484854683279991, 0.0782235860824585, -0.015205157920718193, -0.015048172324895859, -0.013982914388179779, 0.01658438704907894, -0.006413975264877081, 0.03119524195790291, -0.006318662315607071, -0.028862887993454933, -0.022078875452280045, -0.06485740095376968, -0.005127255339175463, -0.0026477270293980837, 0.009548076428472996, 0.0031032650731503963, -0.06575445830821991, -0.0010190034518018365, -0.005971051752567291, -0.05418239161372185, 0.056245628744363785, -0.04496510326862335, -0.02834707871079445, -0.026395974680781364, -0.01296250894665718, 0.004317098762840033, 0.009206072427332401, -0.0215854924172163, 0.020991191267967224, 0.008931348100304604, -0.005003909580409527, 0.04557061940431595, -0.06539563089609146, 0.004810481332242489, -0.03263053670525551, 0.07611549645662308, 0.041175030171871185, 0.017010489478707314, -0.007619398646056652, 0.06248018890619278, -0.03164377063512802, -0.011897251009941101, -0.016046151518821716, -0.0007905336678959429, 0.0017618808196857572, 0.030724287033081055, -0.0043451315723359585, 0.006402761675417423, 0.02410847321152687, -0.014308097772300243, -0.0006587780080735683, 0.005200141575187445, 0.023570237681269646, -0.01077031996101141, -0.021484574303030968, 0.028481638059020042, -0.036510318517684937, -0.011829971335828304, 0.011706626042723656, -0.03888752683997154, -0.02946840226650238, -0.04229635372757912, -0.02982722595334053, -0.020329609513282776, 0.01529486384242773, 0.03473862633109093, 0.02224707417190075, 0.001170382252894342, 0.014296884648501873, 0.013153133913874626, -0.06149342656135559, -0.022863803431391716, -0.027427593246102333, 0.053733859211206436, 0.0008515056688338518, 0.0035826312378048897, -0.055483125150203705, -0.01024890411645174, 0.004157309886068106, -0.038214731961488724, -0.004535757005214691, 0.04453900083899498, -0.0016315268585458398, -0.01683107763528824, -0.05104268342256546, -0.054451510310173035, 0.019275564700365067, 0.004807678051292896, 0.015922805294394493, -0.046557385474443436, -0.015990084037184715, -0.04839635640382767, -0.021820971742272377, -0.022886229678988457, -0.04249818995594978, -0.027450019493699074, 0.051222093403339386, 0.013332545757293701, -0.008297800086438656, -0.004933827091008425, -0.024713987484574318, 0.029266564175486565, -0.025947444140911102, -0.019578322768211365, 0.006419581826776266, 0.01651710644364357, -0.00805671513080597, -0.007114802952855825, -0.042632751166820526, -0.001621715258806944, 0.04637797176837921, -0.03960517421364784, -0.05454121530056, -0.016281628981232643, -0.01828879863023758, -0.04418017715215683, -0.0067391591146588326, -0.04848606139421463, -0.03200259432196617, 0.01981380023062229, -0.003930241800844669, -0.03119524195790291, -0.00197072746232152, 0.01403898000717163, 0.02152942679822445, -0.04572760686278343, -0.0031200849916785955, -0.004090030211955309, 0.010602121241390705, 0.013343758881092072, -0.020957551896572113, -0.010680614039301872, 0.014879973605275154, -0.03020847775042057, 0.0032266105990856886, -0.052971359342336655, 0.03805774822831154, 0.018400931730866432, 0.04530150070786476, 0.043350398540496826, 0.052657388150691986, -0.0358823761343956, 0.0301411971449852, 0.023839354515075684, 0.02872832864522934, -0.029266564175486565, 0.014958466403186321, -0.026709945872426033, -0.01258125901222229, 0.00047481077490374446, -0.011639346368610859, -0.03305663913488388, -0.05848827585577965, -0.013904421590268612, -0.02336839959025383, 0.0006177796167321503, -0.018176667392253876, 0.027898548170924187, -0.037138260900974274, 0.05099783092737198, 0.0073278541676700115, -0.014756628312170506, -0.04391105845570564, 0.04709562286734581, -0.0034004158806055784, -0.02554376795887947, 0.022056449204683304, -0.03458164259791374, -0.06252504140138626, -0.022751670330762863, 0.021417293697595596, -0.022404059767723083, 0.03852870315313339, 0.027831269428133965, 0.0033191200345754623, 0.009581715799868107, -0.006520500872284174, 0.020744500681757927, 0.04749929904937744, 0.018400931730866432, -0.025745606049895287, 0.027898548170924187, 0.00547206262126565, 0.041892677545547485, 0.01833365298807621, 0.019847439602017403, -0.033998552709817886, 0.007406346965581179, -0.03985186666250229, 0.020318396389484406, -0.015720967203378677, 0.0009951753308996558, -0.037900760769844055, 0.01864762417972088, 0.03377428650856018, -0.022078875452280045, -0.025723179802298546, -0.0013182568363845348, -0.036151494830846786, 0.022426486015319824, -0.08347138017416, -0.04321583732962608, -0.027965828776359558, 0.004656299017369747, 0.004549773409962654, 0.04207208752632141, 0.025072811171412468, 0.014509936794638634, 0.025005532428622246, -0.030096344649791718, 0.051222093403339386, 0.01900644786655903, 0.027876121923327446, 0.0030836418736726046, -0.005791639909148216, 0.03296693414449692, 0.023256266489624977, -0.0056262449361383915, -0.025072811171412468, -0.03298936039209366, -0.004263835493475199, -0.04803753271698952, -0.012267287820577621, -0.018580343574285507, -0.003218200756236911, 0.02881803549826145, -0.019847439602017403, -0.0019426944199949503, -0.012121515348553658, -0.01623677648603916, -0.022134941071271896, 0.03487318754196167, -0.03747465834021568, 0.01329890638589859, 0.00030731293372809887, 0.01099458523094654, 0.01791876181960106, 0.07450078427791595, 0.027450019493699074, 0.037541937083005905, -0.012099089100956917, -0.017145048826932907, -0.04597429558634758, 0.004389984533190727, 0.041197456419467926, 0.025409208610653877, -0.057366952300071716, 0.04660223796963692, -0.02801068127155304, -0.026373548433184624, 0.04213936626911163, 0.0473647378385067, 0.012143942527472973, -0.01296250894665718, -0.019320417195558548, 0.01575460657477379, -0.013422251679003239, -0.029019873589277267, 0.00018396727682556957, 0.03830443695187569, -0.048082385212183, -0.02334597148001194, 0.04382135346531868, -0.007333461195230484, 0.010506808757781982, 0.024175751954317093, 0.012278500944375992, -0.011134750209748745, 0.0025229796301573515, 0.009486403316259384, 0.018389718607068062, 0.018894314765930176, 0.005494489334523678, 0.030275756493210793, -0.02198917046189308, -0.005808460060507059, 0.008516457863152027, 0.0025748410262167454, -0.026149282231926918, 0.02446729689836502, -0.0004138387448620051, 0.02232556790113449, -0.020710859447717667, 0.024220604449510574, 0.03442465513944626, 0.007075556553900242, 0.008852855302393436, -0.02336839959025383, -0.0011493574129417539, -0.039739735424518585, 0.0011836979538202286, 0.021013617515563965, -0.028526490554213524, -0.008830429054796696, -0.017481446266174316, 0.0012089278316125274, -0.02693421021103859, -0.046871356666088104, 0.011930890381336212, -0.018176667392253876, 0.029961785301566124, 0.03307906538248062, 0.0039498647674918175, 0.016662878915667534, -0.008757542818784714, 0.03242870047688484, -0.05068385973572731, -0.022471338510513306, 0.005729967262595892, 0.009564896114170551, -0.009699455462396145, 0.03238384798169136, -0.0201501976698637, 0.03204745054244995, 0.008236126974225044, 0.009592929854989052, 0.009082727134227753, -0.006077577825635672, -0.0015179928159341216, -0.021092109382152557, -0.006761585827916861, 0.05458606779575348, -0.02078935317695141, -0.03772135078907013, 0.004398394841700792, -0.029647814109921455, -0.002424863865599036, -0.00846599880605936, -0.03164377063512802, -0.039044514298439026, 0.04590701684355736, -0.0028621803503483534, -0.0640949010848999, -0.05893680453300476, -0.018927954137325287, 0.03191288933157921, 0.006038331426680088, -0.0030528055503964424, -0.045122090727090836, -0.0017366510583087802, -0.023435678333044052, -0.006509287748485804, -0.003691960358992219, -0.027741562575101852, 0.017492659389972687, -0.0595647469162941, 0.0358823761343956, -0.00576360709965229, 0.058353718370199203, 0.042273927479982376, 0.014823907054960728, 0.02294229529798031, 0.03222686052322388, 0.003445268841460347, 0.0008697271696291864, 0.00027700213831849396, -0.014442657120525837, -0.05054929852485657, 0.002761261072009802, -0.03511987626552582, -0.00026946826255880296, -0.01332133263349533, 0.04303642734885216, 0.0009131784900091588, 0.0035714178811758757, -0.03556840866804123, -0.001042130752466619, 0.006240169983357191, 0.02484854683279991, 0.0001691622892394662, -0.05292650684714317, -0.026485679671168327, 0.0444941483438015, 0.03339303657412529, 0.04929341748356819, 0.022527405992150307, 0.017672071233391762, -0.06642725318670273, -0.0581294521689415, 0.02767428383231163, 0.020621154457330704, -0.009458370506763458, -0.0215854924172163, -0.007299821358174086, -0.027472445741295815, -0.025050384923815727, 0.007804417051374912, 0.03991914540529251, -0.0019440960604697466, 0.012413060292601585, 0.03657759726047516, -0.012076662853360176, 0.027494871988892555, 0.00016670938930474222, -0.007193295285105705, 0.026440827175974846, 0.003579827956855297, -0.02336839959025383, -0.0011010003508999944, -0.008045502007007599, 0.02406361885368824, 0.013399825431406498, -0.00970506202429533, -0.008219307288527489, 0.009660208597779274, 0.0006104209460318089, -0.031778331845998764, -0.026014724746346474, 0.0014661315362900496, -0.010389070026576519, 0.0331239216029644, -0.013399825431406498, -0.015328503213822842, 0.008516457863152027, 0.01688714325428009, -0.07647431641817093, 0.004148900043219328, -0.003106068354099989, -0.037564363330602646, -0.01544063538312912, -0.03509745001792908, -0.001565649057738483, -0.02484854683279991, -0.0061784968711435795, -0.024669134989380836, 0.044045619666576385, -0.025947444140911102, -0.0002943476429209113, -0.03094855137169361, -0.0017170278588309884, 0.027248181402683258, -0.03617392107844353, 0.008471605367958546, -0.004953450057655573, -0.0021529425866901875, 0.04803753271698952, 0.015474275685846806, -0.01730203442275524, -0.014218391850590706, 0.012738244608044624, 0.027607005089521408, 0.027943402528762817, 0.023525383323431015, -0.011246883310377598, 0.04095076397061348, -0.052702244371175766, 0.012794310227036476, -0.016023725271224976, 0.009985392913222313, 0.031172815710306168, -0.013624090701341629, 0.010243297554552555, -0.012547618709504604, 0.0049057938158512115, -0.014252032153308392, -0.04375407472252846, -0.029602961614727974, -0.04397834092378616, -0.027786416932940483, -0.009262138977646828, 0.034290097653865814, 0.023211413994431496, 0.00841553881764412, 0.025050384923815727, 0.023233840242028236, -0.02262832410633564, 0.027898548170924187, 0.04844120889902115, 0.007036310154944658, 0.02045295573771, -0.030006637796759605, -0.04465113580226898, 0.0004972372553311288, 0.012457912787795067, -0.04705076664686203, -0.046916209161281586, -0.008185667917132378, 0.02693421021103859, 0.028593769297003746, 0.015205157920718193, -0.05041474103927612, 0.0025482093915343285, -0.021394867449998856, 0.04086105898022652, -0.007995042018592358, 0.02520737051963806, -0.023435678333044052, 0.021080896258354187, 0.024310311302542686, -0.029244137927889824, -0.02841435745358467, 0.010170411318540573, -0.03482833132147789, -0.030275756493210793, 0.008353865705430508, -0.011415081098675728, 0.014296884648501873, 0.00458060996606946, 0.010417102836072445, 0.02115938998758793, -0.02336839959025383, -0.011196423321962357, 0.0037620430812239647, -0.021092109382152557, -0.05185003578662872, -0.0010190034518018365, -0.028862887993454933, -0.034357376396656036, -0.0025860541500151157, 0.025341929867863655, 0.00039001062395982444, -0.031150389462709427, -0.037855908274650574, 0.002182377502322197, 0.01655074767768383, -0.04025554284453392, -0.018445784226059914, -0.04086105898022652, -0.04552576690912247, -0.0029855258762836456, -0.024691561236977577, -0.001381331356242299, -0.009116366505622864, 0.035433847457170486, -0.017369313165545464, -0.016685305163264275, -0.014610855840146542, 0.04025554284453392, -0.01260368525981903, -0.009032267145812511, 0.03689156845211983, -0.04128716140985489, 0.03552355244755745, 0.03704855591058731, 0.013870781287550926, 0.029894506558775902, 0.02119302935898304, -0.005051565822213888, 0.010383463464677334, 0.02269560471177101, -0.05328533053398132, -0.0032882834784686565, 0.011202029883861542, -0.012670964933931828, -0.03171105310320854, -0.009817194193601608, -0.006879324559122324, 0.028190093114972115, -0.028145240619778633, 0.013399825431406498, 0.02151821367442608, 0.02268439158797264, 0.028683476150035858, 0.016707731410861015, 0.03164377063512802, -0.005592605099081993, -0.02440001629292965, -0.04637797176837921, -0.011179603636264801, 0.004056390840560198, 0.029199285432696342, -0.04575003311038017, -0.0051580918952822685, -0.03906694054603577, 0.013209200464189053, 0.0633772537112236, -0.0223031397908926, 0.052971359342336655, -0.031060682609677315, 0.02520737051963806, -0.03585994988679886, 0.021484574303030968, 0.0018305619014427066, -0.0030780353117734194, 0.006139250472187996, 0.008550098165869713, 0.021338801831007004, 0.039291203022003174, 0.00931820459663868, 0.050459593534469604, 0.004011537879705429, 0.018412144854664803, 0.014308097772300243, 0.07759564369916916, 0.0038685689214617014, -0.01754872500896454, 0.006733552552759647, -0.03592723235487938, -0.0047628250904381275, 0.01365773007273674, -0.015238797292113304, -0.07284122705459595, -0.0022860998287796974, -0.01042270939797163, -0.03334818407893181, -0.037160687148571014, 0.029042299836874008, -0.02944597601890564, -0.04267760366201401, -0.004011537879705429, -0.037519510835409164, -0.042969148606061935, 0.006492467597126961, -0.006727945990860462, -0.00611121766269207, 0.01873732917010784, 0.03260811045765877, 0.005480472464114428, -0.010288150981068611, 0.015059385448694229, -0.038999658077955246, -0.020553873851895332, -0.037990469485521317, -0.001602092059329152, 0.0014703364577144384, -0.050459593534469604, -0.028145240619778633, 0.003271463792771101, 0.023637516424059868, 0.019163431599736214, 0.021798545494675636, 0.03375186026096344, -0.03801289573311806, 0.005898165982216597, -0.05566253885626793, 0.02736031264066696, -0.015496701933443546, -0.018939167261123657, 0.005920592229813337, -0.0063803354278206825, -0.026104429736733437, 0.015048172324895859, 0.011897251009941101, 0.03337061032652855, 0.003792879404500127, 0.018423357978463173, 0.033213626593351364, 0.012278500944375992, 0.02836950495839119, 0.005721557419747114, -0.037855908274650574, -0.0034985318779945374, 0.027741562575101852, -0.029221711680293083, 0.022191008552908897, 0.017021702602505684, 0.008572524413466454, 0.03386399522423744, -0.004891777411103249, 0.009755521081387997, -0.02193310298025608, -0.01296250894665718, 0.000544543145224452, -0.004628266207873821, -0.009609749540686607, -0.018131814897060394, 0.0038321258034557104, 0.011504787020385265, -0.006167283747345209, -0.018995234742760658, -0.02043052949011326, 0.02296472154557705, -0.007047523278743029, -0.01659560017287731, -0.05714268609881401, 0.016718946397304535, 0.007019490003585815, 0.009609749540686607, -0.0018263569800183177, -0.02262832410633564, 0.002740236232057214, 0.011852397583425045, -0.032540831714868546, -0.03458164259791374, -0.024220604449510574, 0.006223349831998348, 0.008112781681120396, 0.023615090176463127, -0.010220871306955814, 0.015620047226548195, -0.005853313021361828, -0.020026851445436478, -0.06297357380390167, 0.0022931082639843225, -0.000805951829534024, -0.034334950149059296, -0.04523422196507454, 0.01223364844918251, 0.0031032650731503963, 0.014487510547041893, -0.005987871903926134, -0.001966522540897131, 0.0559765100479126, 0.01402776688337326, -0.010686220601201057, -0.019488615915179253, 0.01129173580557108, -0.0065597472712397575, -0.007109195925295353, 0.01402776688337326, 0.016001297160983086, 0.007568939123302698, -0.014992105774581432, 0.024915825575590134, 0.007355887442827225, 0.001698806299827993, -0.01130294892936945, -0.026799650862812996, 0.053330183029174805, 0.012648538686335087, -0.0007302624871954322, -0.015563981607556343, 0.006526107434183359, 0.004286262206733227, -0.01798604242503643, -0.021282736212015152, -0.01720111444592476, -0.007142835762351751, 0.02801068127155304, -0.007120409514755011, -0.03366215527057648, -0.02078935317695141, -0.012760670855641365, -0.011684199795126915, -0.00842675194144249, 0.006492467597126961, 0.007776384241878986, 0.012648538686335087, 0.05063900724053383, -0.015014532953500748, -0.009951753541827202, -0.029625387862324715, -0.024198178201913834, 0.005289847496896982, 0.013915634714066982, 0.0016048954566940665, -0.03023090399801731, 0.015530341304838657, -0.024915825575590134, -0.016079790890216827, -0.007669858168810606, 0.006671879440546036, 0.003834929084405303, -0.01909615285694599, 5.978936314932071e-05, -0.004709562286734581, -0.007182082161307335, -0.009587323293089867, -0.018221519887447357, 0.022830162197351456, -0.015620047226548195, -0.016449827700853348, -0.0223031397908926, 7.744145841570571e-05, 0.032540831714868546, -0.005093615502119064, 0.026889357715845108, -0.01221122220158577, 0.01399412751197815, -0.026799650862812996, -0.0072437552735209465, 0.015171517618000507, -0.05431694909930229, -0.020609941333532333, -0.005903772544115782, 0.01685350388288498, 0.020766926929354668, 0.03520958498120308, -0.01909615285694599, 0.031845610588788986, 0.03130737319588661, 0.03554598242044449, -0.02330111898481846, 0.030118770897388458, -0.03415554016828537, 0.012704604305326939, 0.011751478537917137, -0.006963423918932676, 0.008348259143531322, -0.012906442396342754, 0.016741372644901276, 0.03339303657412529, -0.005920592229813337, 0.03581509739160538, -0.02295350842177868, 0.01764964498579502, -0.015328503213822842, 0.013411038555204868, -0.03626362979412079, -0.01508181169629097, -0.009918113239109516, -0.005334700457751751, -0.019522257149219513, -0.009688242338597775, 0.0165619608014822, -0.009733094833791256, 0.015350929461419582, 0.031172815710306168, -0.007770777679979801, -0.016281628981232643, -0.020419316366314888, 0.0056402613408863544, 0.04539120942354202, 0.03175590559840202, -0.0026715551503002644, 0.023256266489624977, 0.006329875905066729, 0.013164347037672997, 0.042924296110868454, -0.02984965406358242, 0.01873732917010784, -0.00764182535931468, 0.02193310298025608, -0.027831269428133965, 0.019869867712259293, 0.02009413205087185, 0.008275373838841915, -0.04705076664686203, 0.028952592983841896, 0.011364622041583061, 0.018501851707696915, 0.045099664479494095, -0.011829971335828304, -0.006038331426680088, 0.012356993742287159, -0.006402761675417423, 0.03888752683997154, -0.03159891813993454, -0.0315764918923378, 0.002350575989112258, -0.010719859972596169, -0.039313629269599915, -0.013242839835584164, 0.028548916801810265, 0.03657759726047516, 0.028907740488648415, 0.005853313021361828, -0.0013049411354586482, 0.023884207010269165, 0.01063576154410839, 0.019847439602017403, -0.018154241144657135, 0.006980244070291519, 0.017481446266174316, -0.0055533587001264095, -0.029535682871937752, 0.015205157920718193, -0.03126252070069313, 0.022134941071271896, 0.03738495334982872, 0.017133835703134537, -0.0116617726162076, 0.036084216088056564, 0.0157882459461689, 0.042565472424030304, -0.029042299836874008, -0.01542942225933075, 0.01296250894665718, -0.03870811685919762, -0.03597208485007286, 0.05786033347249031, 0.008864068426191807, 0.0027836875524371862, 0.03763164207339287, -0.011375835165381432, -0.0109441252425313, -0.0032462337985634804, -0.008191274479031563, 0.008886495605111122, 0.03189046308398247, -0.027450019493699074, 0.02621656283736229, -0.007103589363396168, 0.024355163797736168, 0.005247797816991806, -0.007069949992001057, 0.01327648013830185, -0.0019945555832237005, 0.022101301699876785, 0.018860675394535065, 0.0038068960420787334, 0.04175811633467674, -0.04344010353088379, 0.009766735136508942, -0.0075296927243471146, 0.0473647378385067, 0.0324062742292881, 0.015530341304838657, 0.039291203022003174, 0.034357376396656036, -0.011504787020385265, 0.0308588445186615, -0.008314619772136211, 0.0018375702202320099, 0.018468212336301804, 0.022448912262916565, -0.009592929854989052, 0.007793203927576542, -0.012525192461907864, -0.010557268746197224, 0.01798604242503643, 0.02978237345814705, -0.0005350819556042552, 0.0053375037387013435, 0.02767428383231163, -0.03583752363920212, -0.0331239216029644, -0.034334950149059296, -0.02163034677505493, 0.014139899984002113, 0.03915664553642273, 0.00232955114915967, 0.009710668586194515, -0.003363972995430231, 0.012816736474633217, 0.025431634858250618, 0.02265075035393238, -0.00900984089821577, 0.004589019808918238, 0.037497084587812424, 0.02984965406358242, 0.033280905336141586, 0.01493604015558958, 0.031038256362080574, 0.008886495605111122, 0.006094397511333227, 0.008152027614414692, 0.020408103242516518, 0.019981998950242996, -0.04960738867521286, -0.020744500681757927, 0.03722796589136124, 0.031038256362080574, 0.01024890411645174, -0.03630848228931427, 0.009206072427332401, -0.007288608234375715, -0.017021702602505684, -0.007047523278743029, 0.03781105577945709, -0.03523201122879982, -0.003876978764310479, 0.02089027129113674, -0.013209200464189053, -0.023929061368107796, -0.0027906959876418114, -0.007552119437605143, -0.013982914388179779, 0.005054369568824768, -0.016315268352627754, -0.00439278781414032, 0.0015025745378807187, 0.0201501976698637, -0.02156306616961956, -0.010450742207467556, 0.028593769297003746, -0.01902887411415577, 0.006010298151522875, -0.01328769326210022, -0.007512873038649559, 0.015238797292113304, 0.039291203022003174, -0.019981998950242996, 0.018860675394535065, -0.012076662853360176, -0.02053144760429859, -0.0019020463805645704, 0.019847439602017403, 0.001401655375957489, 0.012850376777350903, -0.003260250436142087, -0.005858919583261013, -0.013814715668559074, -0.020363248884677887, 0.001412167795933783, -0.007540905848145485, -0.011616920121014118, -0.006929784081876278, -0.03420039266347885, -0.006582173518836498, 0.009497617371380329, -0.017100196331739426, 0.011706626042723656, -0.01259247213602066, 0.02729303389787674, 0.016348907724022865, 0.0017268394585698843, 0.00877436250448227, -0.002408043947070837, 0.00423299940302968, 0.012502766214311123, -0.0018656033789739013, 0.03767649829387665, -0.007126016076654196, -0.0179972555488348, 0.02511766366660595, -0.027965828776359558, 0.02232556790113449, 0.009654602035880089, 0.016326481476426125, -0.008538885042071342, -0.031464360654354095, -0.016337694600224495, -0.004914203658699989, 0.001175287994556129, 0.013052214868366718, 0.01766085810959339, 0.01898401975631714, -0.011258096434175968, -0.024870973080396652, -0.023884207010269165, 0.0035097450017929077, 0.014610855840146542, 0.03263053670525551, -0.011717839166522026, -0.0006994260475039482, 0.05256768316030502, -0.03366215527057648, -0.016315268352627754, -0.01457721646875143, -0.04857577010989189, -0.019578322768211365, -0.006475647911429405, 0.0338415689766407, 0.012177581898868084, -0.04610885679721832, -0.027741562575101852, -0.02626141533255577, 0.010310577228665352, 0.03942576423287392, 0.00790533609688282, -0.012827950529754162, -0.002695383271202445, -0.007383920717984438, 0.009957360103726387, 0.06382577866315842, 0.028593769297003746, -0.022168582305312157, 0.021361228078603745, 0.04660223796963692, -0.016988063231110573, 0.008690263144671917, 0.03985186666250229, -0.0059990850277245045, 0.0018263569800183177, -0.02122666873037815, -0.010916092433035374, 0.02186582423746586, 0.012267287820577621, -0.009430337697267532, -0.016326481476426125, 0.03442465513944626, 0.0006885632174089551, 0.02228071354329586, -0.014263245277106762, 0.008381899446249008, -0.06907358020544052, 0.013399825431406498, -0.007675464730709791, -0.014566002413630486, -0.013792289420962334, -0.02511766366660595, -0.03489561378955841, 0.020710859447717667, 0.04947282746434212, 0.018098173663020134, -0.013736222870647907, -0.01611343026161194, -0.0284592118114233, 0.006784012075513601, -0.01296250894665718, -0.04070407152175903, 0.02803310751914978, 0.0035602047573775053, 0.02480369433760643, -0.006946604233235121, -0.020363248884677887, 0.02769671007990837, -0.018927954137325287, 0.008701476268470287, 0.04348495602607727, -0.04420260339975357, -0.013758649118244648, 0.0233235452324152, -0.037855908274650574, 0.04139929264783859, 0.013489531353116035, -0.03619634732604027, -0.015406996011734009, -0.0007484839879907668, 0.010646974667906761, 0.00556457182392478, -0.017705710604786873, 0.004221785813570023, -0.014442657120525837, 0.018120601773262024, -0.04128716140985489, -0.021708838641643524, -0.0014661315362900496, -0.004056390840560198, 0.022863803431391716, 0.01904008723795414, 0.007030703593045473, -0.023906635120511055, -0.01437537744641304, -0.005536539014428854, -0.010557268746197224, 0.0017520692199468613, 0.014341738075017929, 0.01761600561439991, 0.02082299254834652, 0.009032267145812511, 0.014487510547041893, -0.010417102836072445, -0.02437759004533291, -0.038259584456682205, -0.004605839494615793, 0.0058308863081038, 0.0008101568091660738, -0.002433273708447814, -0.00895938090980053, -0.009850834496319294, 0.007137229200452566, 0.021316375583410263, 0.04812723770737648, 0.006772798951715231, 0.007367100566625595, -0.0024977498687803745, -0.0017296427395194769, -0.0005774820456281304, 0.00492822052910924, -0.025072811171412468, -0.051894888281822205, -0.0042245895601809025, 0.016091004014015198, 0.008684656582772732, 0.004081620369106531, -0.02155185304582119, 0.027068769559264183, -0.0395827479660511, 0.0027696711476892233, -0.010467562824487686, -0.01611343026161194, 0.03729524835944176, -0.02305442839860916, -0.005264617502689362, -0.006290629506111145, 0.032204434275627136, -0.019869867712259293, -0.004617053084075451, 0.009800374507904053, 0.005062779411673546, 0.01473420113325119, 0.007411953527480364, 0.029737520962953568, 0.007137229200452566, -0.01729082129895687, 0.06037209928035736, -8.593899838160723e-05, -0.019320417195558548, 0.045503340661525726, 0.01721232756972313, 0.024691561236977577, 0.0025902590714395046, -0.008387506008148193, -0.023615090176463127, 0.0003523411287460476, -0.006419581826776266, 0.0068120453506708145, -0.013242839835584164, 0.02234799414873123, -0.023121707141399384, 0.022908655926585197, -0.000651769747491926, 0.018165454268455505, -0.00949200987815857, 0.03922392427921295, -0.02226950041949749, -0.03193531557917595, 0.019185859709978104, -0.002187984064221382, 0.0005575084360316396, -0.0452117957174778, -0.010103131644427776, -0.008522064425051212, -0.002002965658903122, -0.01758236438035965, 0.02089027129113674, 0.005909379106014967, 0.010972158052027225, -0.01760479249060154, -0.033953700214624405, -0.027248181402683258, 0.024332737550139427, -0.019185859709978104, -0.00789412297308445, 0.00792215671390295, 0.015104238875210285, 0.004535757005214691, 0.01422960590571165, -0.036443039774894714, 0.013781075365841389, -0.002845360431820154, 0.01862519606947899, -0.014207178726792336, -0.0026631453074514866, -0.019668027758598328, 0.009228498674929142, 0.015911592170596123, -0.022875016555190086, -0.025072811171412468, -0.006935390643775463, 0.03633090853691101, -0.05198459327220917, 0.006565353833138943, 0.0308588445186615, 0.030275756493210793, -0.019466189667582512, 0.00495064677670598, -0.005259010940790176, -0.003854552283883095, 0.01690957136452198, -0.012087875977158546, 0.030096344649791718, -0.0012979329330846667, -0.004575003404170275, 0.010321790352463722, 0.03092612512409687, -0.014296884648501873, -0.0064307949505746365, -0.03801289573311806, -0.004852531012147665, 0.04243091121315956, -0.020912697538733482, -0.00350133515894413, -0.04480811953544617, -0.007686678320169449, 0.0401882641017437, -0.018939167261123657, -0.03189046308398247, -0.025027958676218987, 0.0194325502961874, -0.0034032193943858147, -0.022090088576078415, -0.003506941720843315, 0.009805981069803238, -0.006957817357033491, 0.02081177942454815, 0.03709340840578079, 0.004959056619554758, -0.0022664768621325493, 0.005886952858418226, -0.038640834391117096, -0.02305442839860916, -0.0075801522471010685, -0.02440001629292965, -0.007557725999504328, 0.0025510129053145647, -0.03478347882628441, 0.014207178726792336, 0.039672452956438065, -0.013366186060011387, 0.009475190192461014, 0.00931820459663868, -0.004830104298889637, -0.002839753869920969, -0.02296472154557705, 0.013881995342671871, -0.026777224615216255, -0.02053144760429859, -0.019107365980744362, -0.02197795733809471, 0.017044128850102425, 0.003691960358992219, -0.010613334365189075, -0.004104047082364559, -0.020408103242516518, -0.010742287151515484, -0.002727621467784047, -0.020946338772773743, 0.014980892650783062, -0.027920976281166077, -0.02872832864522934, -0.02482612058520317, -0.03406583145260811, 0.019477402791380882, -0.015956444665789604, -0.009166826494038105, -0.040098559111356735, 0.007798810489475727, -0.00805671513080597, 0.020979978144168854, -0.013758649118244648, -0.0041376869194209576, -0.029939359053969383, -0.006077577825635672, -0.033213626593351364, 0.03198016807436943, 0.023884207010269165, 0.04386620596051216, 0.029019873589277267, -0.024893399327993393, -0.0032882834784686565, 0.01457721646875143, 0.019668027758598328, -0.04070407152175903, -0.03633090853691101, 0.009721881709992886, -0.03480590507388115, -0.0023645926266908646, 0.008129601366817951, 0.031441934406757355, 0.011370228603482246, 0.021327588707208633, -0.008348259143531322, -0.0075352992862463, 0.021720051765441895, 0.015496701933443546, -0.0006465135375037789, -0.0021585493814200163, 0.011297342367470264, 0.0018445785390213132, 0.009525650180876255, 0.006083184387534857, -0.02263953723013401, 0.021798545494675636, -0.0005249199457466602, 0.015563981607556343, -0.011061863973736763, 0.02951325662434101, 0.0003998221945948899, 0.003784469561651349, -0.00012807626626454294, 0.022404059767723083, -0.0025229796301573515, 0.022381633520126343, 0.019118579104542732, -0.0025972675066441298, -0.005858919583261013, 0.0067167324014008045, 0.03846142441034317, -0.01331011950969696, 0.022157369181513786, 0.0030528055503964424, -0.0015684523386880755, -0.029647814109921455, 0.03092612512409687, 0.002403839025646448, -0.05530371516942978, -0.019477402791380882, 0.01659560017287731, -0.03052244707942009, 0.020609941333532333, -0.004479690454900265, 0.036129068583250046, -0.00020376565225888044, 0.010820779949426651, -0.03794561326503754, -0.03294450789690018, 0.07669858634471893, -0.00036478080437518656, 0.012805523350834846, 0.003919028677046299, 0.0047039552591741085, -0.0062513831071555614, 0.03938090801239014, -0.005853313021361828, 0.005797246471047401, 0.022751670330762863, 0.009755521081387997, -0.023121707141399384, -0.01422960590571165, -0.004120866768062115, 0.021036043763160706, 0.0010708647314459085, 0.00829219352453947, -0.0051356651820242405, -0.011185210198163986, -0.015126665122807026, 0.019208285957574844, 0.004888974130153656, 0.010299364104866982, 0.005236584693193436, -0.035007745027542114, -0.009060300886631012, 0.0387529693543911, 0.024198178201913834, 0.04570518061518669, -0.015306076966226101, 0.02841435745358467, -0.017436593770980835, -0.01259247213602066, -0.02298714779317379, 0.0015067795757204294, -0.04700591415166855, -0.004454460926353931, 0.012783097103238106, -0.02048659510910511, 0.015306076966226101, 0.035007745027542114, -0.028548916801810265, -0.0197353083640337, 0.0021487376652657986, 0.013713796623051167, 0.026149282231926918, -0.020733285695314407, 0.01187482476234436, -0.021024830639362335, 0.000215679727261886, 0.044740840792655945, -0.023502957075834274, -0.048710327595472336, -0.007753957528620958, -0.02762943133711815, 0.04469598829746246, 0.005362733732908964, 0.004409607965499163, -0.021125750616192818, -0.014184752479195595, 0.037564363330602646, -0.01797482930123806, 0.030724287033081055, -0.017313247546553612, 0.02626141533255577], [0.019172819331288338, -0.018664706498384476, 0.07800108194351196, 0.0033309669233858585, -0.029154429212212563, 0.015638606622815132, -0.033580660820007324, 0.03843596950173378, 0.011844691820442677, 0.037419743835926056, -0.03595186024904251, -6.197045149747282e-05, -0.013640026561915874, 0.06770331412553787, -0.030215822160243988, 0.0024897565599530935, 0.03145787492394447, 0.017230696976184845, -0.0018757859943434596, 0.013741649687290192, -0.02065199427306652, 0.01314320508390665, -0.06987126171588898, -0.01587572693824768, -0.022402163594961166, -0.049275726079940796, 0.02082136645913124, 0.0165645033121109, 0.058534685522317886, -0.03450655937194824, 0.028951182961463928, -0.03963286057114601, 0.0023613166995346546, -0.02020033821463585, 0.015356321819126606, -0.029199594631791115, -0.050540365278720856, -0.0009308358421549201, -0.019353481009602547, -0.0025744421873241663, -0.04661095142364502, 0.013018999248743057, -0.0029809330590069294, 0.0001946004485944286, -0.030215822160243988, 0.04234280064702034, 0.005871534813195467, -0.05469560623168945, 0.03188695013523102, 0.023666800931096077, 0.015457944013178349, 0.02836402878165245, 0.015254698693752289, 0.007474915590137243, 0.006565956864506006, 0.04159756377339363, -0.007339418400079012, 0.0223231241106987, 0.04342677444219589, -0.015920892357826233, 0.01667741686105728, -0.002265339717268944, -0.011381744407117367, 0.009479140862822533, -0.011353516019880772, 0.05781203508377075, 0.016598377376794815, 0.041507232934236526, -0.01973739080131054, 0.011251892894506454, 0.03877471387386322, 0.035816360265016556, -0.04850791022181511, -0.03274509683251381, -0.002582910703495145, 0.001851791748777032, 0.008762136101722717, 0.03222569450736046, 0.0026633620727807283, -0.00704584177583456, 0.012488302774727345, -0.0003539152385201305, -0.007915280759334564, 0.03003515861928463, -0.032248277217149734, -0.0073902299627661705, -0.027754293754696846, -0.022763488814234734, 0.018788911402225494, -0.026625152677297592, 0.045662473887205124, 0.05108235403895378, -0.026512237265706062, -0.009699324145913124, -0.0007452332647517323, 0.015401487238705158, 0.010280831716954708, -0.08459526300430298, -0.040129680186510086, 0.054921433329582214, 0.01423847209662199, -0.037781067192554474, -0.029448004439473152, 0.010975253768265247, 0.006633704993873835, -0.08893116563558578, -0.05035970360040665, 0.048417579382658005, 0.016293508931994438, 0.002080442849546671, 0.009789654985070229, -0.012962542474269867, 0.009625929407775402, 0.0661676824092865, -0.0462496280670166, -0.012093103490769863, 0.02031325176358223, -0.00196329434402287, -0.006368356756865978, -0.0030825557187199593, 0.018766328692436218, 0.0011997126275673509, -0.01851791702210903, -0.05654739588499069, 0.020550372079014778, 0.016316091641783714, -0.059347666800022125, -0.009134752675890923, -0.06029614433646202, -0.006995030213147402, 0.007124881725758314, -0.05925733596086502, 0.09602217376232147, -0.026602569967508316, -0.01698228530585766, -0.019297024235129356, 0.048643406480550766, -0.011844691820442677, 0.034890465438365936, -0.05171466991305351, 0.03597444295883179, -0.019771264865994453, 0.016135429963469505, 0.02531534805893898, -0.04541406407952309, 0.012985125184059143, -0.013210953213274479, 0.05081135779619217, -0.02980932965874672, 0.025270182639360428, -0.04132657125592232, 0.014261054806411266, -0.015401487238705158, -0.03441622853279114, -0.02065199427306652, 0.014396551996469498, 0.01605638861656189, 0.0027113505639135838, -0.0431331992149353, 0.027867207303643227, 0.0003507395158521831, -0.03516146168112755, 0.0013210952747613192, -0.0009061358869075775, 0.03617768734693527, 0.027867207303643227, -0.010856693610548973, 0.02922217734158039, -0.06196727603673935, -0.023892629891633987, 0.000593857781495899, -0.03220311179757118, -0.04261379316449165, -0.016587086021900177, -0.03744232654571533, -0.03342258185148239, 0.02836402878165245, 0.008293543010950089, 0.011415618471801281, -0.021939216181635857, -0.008321771398186684, 0.03597444295883179, -0.03170628845691681, -0.01685808040201664, -0.03263218328356743, 0.02215375192463398, -0.02020033821463585, 0.007446686737239361, -0.007198275998234749, 0.0010726841865107417, 0.002989401575177908, -0.01490466482937336, 0.03319675475358963, 0.013075456023216248, -0.029606085270643234, -0.024886274710297585, -0.011901149526238441, -0.015096618793904781, -0.0025687965098768473, 0.005995740182697773, -0.00625544274225831, -0.05103718861937523, 0.04914022982120514, 0.003918120171874762, 0.00031263098935596645, -0.017241988331079483, -0.011449492536485195, -0.00977836363017559, 0.010145334526896477, 0.0020606829784810543, 0.003071264363825321, 0.011302703991532326, -0.02323772758245468, 0.02928992547094822, 0.014306220225989819, -0.011313996277749538, 0.03798431158065796, 0.04101041331887245, -0.0030882013961672783, 0.03107396885752678, -0.05243732035160065, 0.006340128369629383, 0.009688032791018486, -0.021148815751075745, -0.003390246769413352, -0.004589959513396025, -0.02330547571182251, -0.05189533531665802, 0.02985449694097042, -0.042771872133016586, -0.045075319707393646, 0.01997450925409794, -0.0110204191878438, 0.0025786764454096556, 0.010444557294249535, 0.0045080967247486115, -0.0017769861733540893, -0.039090871810913086, -0.03396457061171532, 0.011246247217059135, 0.006114300340414047, -0.0029696417041122913, 0.002280865330249071, 0.038119811564683914, 0.010376808233559132, -0.0061538200825452805, -0.023802299052476883, -0.01570635475218296, 0.03446139395236969, 0.014780459925532341, 0.05528275668621063, 0.0346420556306839, 0.029538337141275406, -0.015457944013178349, 0.02490885742008686, 0.0061651114374399185, 0.014780459925532341, -0.036222852766513824, 0.07678160816431046, -0.03911345452070236, 0.0011919498210772872, 0.011460783891379833, -0.01761460490524769, -0.0055836038663983345, -0.04451075196266174, -0.037713319063186646, 0.06074780225753784, -0.009772717952728271, -0.008152400143444538, 0.03107396885752678, -0.019522853195667267, 0.019172819331288338, 0.0024558822624385357, -0.02416362427175045, -0.050088707357645035, 0.05763137340545654, 0.004522210918366909, -0.01812271773815155, -0.004606896545737982, -0.009202501736581326, -0.04656578600406647, -0.016124138608574867, 0.028386611491441727, -0.014915956184267998, 0.03563569858670235, 0.034212980419397354, 0.0383230559527874, 0.008242731913924217, 0.011675321497023106, 0.01928573288023472, 0.05162433907389641, -0.00041531227179802954, -0.012285057455301285, 0.014803042635321617, 0.028115618973970413, 0.013470655307173729, -0.00575297512114048, 0.015604732558131218, 0.0025857335422188044, 0.011302703991532326, -0.004189114086329937, -0.001014815759845078, -0.02698647789657116, -0.008570182137191296, -0.06960026919841766, 0.030419066548347473, 0.012894793413579464, -0.00037226377753540874, -0.029583502560853958, -0.035771194845438004, -0.03974577412009239, 0.021939216181635857, -0.05505692958831787, -0.07294252514839172, -0.00964286644011736, 0.03902312368154526, -0.032135359942913055, -0.02371196821331978, 0.047152940183877945, 0.011500304564833641, 0.027302635833621025, 0.025789586827158928, 0.01176565233618021, -0.03218052536249161, 0.012533468194305897, -0.007119236048310995, -0.009106524288654327, 0.03601960837841034, 0.005781203508377075, -0.0045250337570905685, -0.01812271773815155, -0.03857146576046944, -0.0011136155808344483, 0.025970250368118286, -0.030012575909495354, -0.028386611491441727, -0.02854469232261181, 0.030825557187199593, -0.011776943691074848, -0.0008891987963579595, -0.03168370574712753, 0.004039503168314695, -0.05099201947450638, 0.0336032435297966, -0.02192792482674122, 0.02818336710333824, 0.027370385825634003, 0.043765515089035034, 0.062464095652103424, 0.042771872133016586, 0.035861529409885406, 0.012488302774727345, -0.025992833077907562, -0.030531980097293854, -0.02755104750394821, -0.006187694147229195, 0.07068424671888351, 0.000376145209884271, -0.040310345590114594, 0.012341514229774475, -0.037306830286979675, -0.027144556865096092, 0.0048524849116802216, 0.04954671859741211, 0.01715165562927723, -0.005199695471674204, -0.006712744943797588, -0.003568086540326476, -0.014182014390826225, 0.02254895120859146, 0.02947058714926243, -0.020505206659436226, 0.019545435905456543, -0.013481947593390942, 0.03911345452070236, -0.0003630894934758544, -0.01800980418920517, 0.0252024345099926, -0.04552697762846947, -0.008383873850107193, 0.021781135350465775, 0.029357673600316048, 0.05803786218166351, 0.05234698951244354, 0.013628735207021236, 0.03985868766903877, -0.02928992547094822, -0.01245442871004343, -0.004465753678232431, 0.006001385860145092, -0.04539148136973381, -0.04078458249568939, 0.005640060640871525, -0.024366868659853935, -0.006537728011608124, 0.008863759227097034, 0.021047193557024002, 0.023147396743297577, -0.03285801038146019, -0.037148747593164444, -0.039678025990724564, -0.024366868659853935, 0.033919405192136765, -0.007209567353129387, -0.025518594309687614, -0.0022611054591834545, 0.025405678898096085, -0.012973833829164505, 0.01217214297503233, -0.04394618049263954, 0.022413454949855804, -0.014791751280426979, 0.015299865044653416, 0.03751007467508316, -0.02180371806025505, 0.04367518424987793, -0.0008165102917701006, 0.015853144228458405, -0.038164976984262466, -0.019319606944918633, 0.0020310429390519857, 0.027460716664791107, -0.017795266583561897, 0.019918052479624748, -0.0036330120638012886, 0.03516146168112755, 0.040761999785900116, 0.005747329443693161, -0.022571533918380737, 0.05212116241455078, -0.010252603329718113, 0.002142545534297824, -0.01743394136428833, 0.025134684517979622, -0.04999837651848793, -0.019398648291826248, -0.016530629247426987, -0.004742393270134926, -0.039610277861356735, 0.003999982960522175, 0.003734634956344962, -0.03970060870051384, 0.05063069611787796, 0.02773171104490757, -0.022289250046014786, -0.04643028974533081, 0.026557402685284615, 0.025157269090414047, -0.0010790356900542974, 0.029493171721696854, -0.033806491643190384, 0.011353516019880772, -0.015299865044653416, -0.03197728097438812, -0.010918796062469482, -0.013098038733005524, 0.004979513119906187, -0.014396551996469498, 0.006238505709916353, -0.02438945136964321, 0.05424394831061363, 0.0060352603904902935, -0.005462220869958401, 0.02301190048456192, 0.022865111008286476, 0.03461947292089462, 0.00759347528219223, -0.029673833400011063, -0.02899634838104248, -0.03500337898731232, -0.015164367854595184, -0.03251926973462105, 0.039790939539670944, -0.022018255665898323, -0.013764232397079468, -0.030306152999401093, -0.015265990048646927, 0.019466396421194077, -0.02653481997549534, -0.013628735207021236, 0.03522920981049538, 0.06372873485088348, -0.04308803379535675, -0.018314672634005547, 0.06589668989181519, 0.036674510687589645, 0.0786333978176117, 0.005016210023313761, -0.014227180741727352, -0.03168370574712753, -0.042094387114048004, 0.00630060862749815, 0.021882757544517517, -0.008801656775176525, -0.003681000554934144, -0.010743779130280018, -0.025450844317674637, -0.03084813989698887, 0.018664706498384476, 0.004601250868290663, 0.025699255988001823, 0.006543373689055443, 0.01715165562927723, 0.0014135438250377774, 0.030622312799096107, -0.017072616145014763, -0.01293995976448059, 0.009846111759543419, -0.009710615500807762, 0.0020719743333756924, -0.05690872296690941, 0.020222920924425125, -0.0041975826025009155, -0.008637931197881699, -0.0054283468052744865, -0.018280798569321632, 0.01570635475218296, -0.02260540798306465, -0.002738167764618993, 0.0017642832826822996, 0.040649086236953735, -0.011122041381895542, 0.028522109612822533, -0.020561663433909416, -0.06047680974006653, 0.020121298730373383, 0.01892440766096115, -0.06558052450418472, 0.012680256739258766, -0.016078971326351166, -0.010709905065596104, -0.025157269090414047, -0.037374578416347504, -0.00476215360686183, -0.012002771720290184, 0.017558148130774498, 0.0009837644174695015, 0.039384447038173676, -0.032474104315042496, -0.016078971326351166, -0.015604732558131218, -0.04764976352453232, -0.005984448827803135, 0.009930797852575779, 0.020922988653182983, 0.02508951909840107, -0.0008842587703838944, 0.010224374942481518, 0.015627315267920494, -0.003740280633792281, -0.03324192017316818, 0.03638093173503876, 0.0006700747762806714, 0.029606085270643234, 0.014193305745720863, -0.005098072811961174, 0.048869237303733826, -0.010884921997785568, -0.008383873850107193, 0.002938590245321393, 0.0005980920395813882, 0.041733063757419586, 0.014419134706258774, -0.02669290080666542, -0.0034382352605462074, 0.018258213996887207, 0.007136173080652952, -0.054514940828084946, 0.006955510471016169, -0.04067166894674301, -0.05297930911183357, 0.022232791408896446, 0.029877079650759697, 0.015017579309642315, 0.04995321109890938, -0.005052907392382622, 0.00645868806168437, -0.026625152677297592, -0.006052197422832251, 0.03274509683251381, 0.019421231001615524, 0.0010698613477870822, 0.024005543440580368, -0.014396551996469498, 0.008237086236476898, 0.02475077658891678, -0.02669290080666542, -0.049862880259752274, -0.003059973008930683, 0.029018931090831757, -0.005882826168090105, 0.005202518776059151, -0.00605784310027957, -0.008525016717612743, 0.028635023161768913, 0.045301150530576706, 0.012928667478263378, -0.0034269439056515694, -0.04331386089324951, 0.017479106783866882, 0.01615801267325878, -0.02375713363289833, -0.015356321819126606, 0.038526300340890884, -0.06847112625837326, -0.038052063435316086, -0.022571533918380737, -0.024818526580929756, -0.0011750126723200083, 0.002536333631724119, 0.011889858171343803, 0.004237102810293436, -0.00024188324459828436, -0.0504048690199852, -0.04333644360303879, -0.029425421729683876, -0.06896795332431793, -0.05338580161333084, -0.02323772758245468, -0.013335159048438072, -0.01130835060030222, 0.013798106461763382, 0.009823529049754143, -0.04062650352716446, -0.03988127037882805, 0.0016824204940348864, 0.005877180490642786, -0.046294793486595154, 0.01518695056438446, -0.05306963995099068, -0.005933637730777264, 0.015119202435016632, 0.009936443530023098, 0.002002814318984747, -0.0299674104899168, -0.0016767748165875673, 0.0194438137114048, -0.00017360546917188913, -0.00820321124047041, 0.012273766100406647, 0.025179851800203323, 0.033625826239585876, 0.0420040562748909, -0.051579173654317856, 0.020064840093255043, 0.05907667428255081, 0.009942089207470417, 0.007486206945031881, 0.02468302845954895, -0.035816360265016556, -0.009462203830480576, 0.026308992877602577, -0.015683772042393684, -0.021103650331497192, 0.004299205727875233, -0.010805882513523102, -0.019297024235129356, 0.002742402022704482, -0.007429749704897404, 0.041281405836343765, -0.03227085992693901, 0.03450655937194824, 0.013944895006716251, 0.002379665384069085, 0.01449817419052124, 0.03371616080403328, 0.01950027048587799, -0.0011693669948726892, -0.006232860032469034, -0.005394472740590572, 0.03751007467508316, 0.013978769071400166, 0.011754360981285572, -0.03084813989698887, -0.00018472045485395938, -0.02980932965874672, -0.027754293754696846, 0.021679513156414032, 0.018450168892741203, 0.05243732035160065, -0.02508951909840107, 0.0021100828889757395, -0.013730358332395554, 0.03335483372211456, 0.02594766765832901, -0.023395808413624763, -0.0352066271007061, -0.03330966830253601, 0.0008150988724082708, 0.03157079219818115, -0.001182069769129157, 0.02969641610980034, -0.0165645033121109, 0.02371196821331978, 0.014859499409794807, 0.044217173010110855, -0.01061392854899168, -0.020234212279319763, 0.016756456345319748, -0.011867275461554527, -0.015728937461972237, -0.023113522678613663, -0.04006193205714226, -0.055553752928972244, -0.025179851800203323, -0.02382488176226616, -0.0012399383122101426, -0.006769202183932066, 0.00040366800385527313, -0.005473512690514326, -0.013764232397079468, 0.005476335529237986, -0.029086679220199585, -0.019409939646720886, 0.003395892446860671, 0.009146044962108135, -0.005597718060016632, -0.0060465517453849316, 0.0207649078220129, -0.001160192652605474, -0.014915956184267998, 0.02382488176226616, 0.002716996241360903, -0.01293995976448059, -0.011319641955196857, -0.012318931519985199, -0.023960378021001816, -0.02669290080666542, -0.014724002219736576, 0.042839620262384415, 0.058534685522317886, -0.010783299803733826, -0.008248377591371536, 0.021894050762057304, -0.04918539524078369, 0.0021721855737268925, -0.032880593091249466, 0.01663225144147873, -0.0033930696081370115, -0.0052928500808775425, -0.00011264948989264667, -0.059799324721097946, -0.008954090066254139, -0.023373225703835487, -0.021035902202129364, 0.007198275998234749, -0.005738860461860895, 0.030577147379517555, -0.005035970360040665, -0.005815077573060989, 0.005716277752071619, 0.006588539574295282, -0.004604073707014322, -0.011093812994658947, 0.028296280652284622, -0.023734550923109055, -0.0055469064973294735, -0.010952671058475971, 0.004790381994098425, 0.010692968033254147, 0.017975930124521255, -0.009659803472459316, -0.006695807911455631, -0.00729425298050046, 0.006978093180805445, -0.016124138608574867, -0.02836402878165245, -0.022481203079223633, -0.0005416349740698934, -0.04250087961554527, 0.01760331355035305, -0.006983738858252764, -0.011155916377902031, 0.034212980419397354, 0.021555308252573013, -0.02653481997549534, -0.03913603723049164, -0.023147396743297577, -0.005321078468114138, -0.0016160834347829223, 0.027641378343105316, 0.0013133324682712555, 0.018540499731898308, 0.005157352890819311, -0.027754293754696846, -0.026083163917064667, 0.005682403687387705, 0.009671094827353954, 0.024253955110907555, 0.02065199427306652, -0.03400973603129387, -0.011697904206812382, 0.0147014195099473, -0.042207300662994385, -0.037374578416347504, 0.003446703776717186, 0.030193237587809563, -0.026489654555916786, -0.017061324790120125, -0.003601960837841034, -0.002040922874584794, 0.00875084474682808, -0.009129106998443604, 0.03486788272857666, 0.0628705844283104, 0.010862339287996292, -0.01732102781534195, 0.012793171219527721, 0.002447413746267557, -0.007362001109868288, -0.015412778593599796, -0.01956801861524582, 0.0304868146777153, 0.003985868766903877, -0.0070684244856238365, -0.009812237694859505, 0.004573022481054068, 0.019872887060046196, -0.02382488176226616, -0.04175564646720886, 0.02187146618962288, -0.015367613174021244, -0.0019534144084900618, 0.007666869554668665, 0.04089749976992607, 0.001170778414234519, -0.0010472785215824842, 0.002475642366334796, -0.00640223128721118, -0.006374002434313297, 0.029989993199706078, 0.009795300662517548, 0.026783231645822525, -0.00719263032078743, -0.06485787779092789, -0.0016245520673692226, -0.010241311974823475, -0.027709128335118294, 0.027415551245212555, -0.003212406998500228, 0.05943799763917923, 0.02560892514884472, 0.003105138661339879, -0.0186421237885952, -0.009998545981943607, 0.04182339459657669, 0.03387423977255821, -0.009896923787891865, -0.04977254942059517, 0.02807045355439186, -0.0019887001253664494, 0.0012985124485567212, -0.003429766744375229, 0.007339418400079012, 0.0025687965098768473, -0.006577248219400644, 0.025066936388611794, -0.025337930768728256, -0.0030317443888634443, 0.020064840093255043, -0.01950027048587799, 0.00427097687497735, -0.0094396211206913, 0.020843949168920517, -0.01685808040201664, -0.005414232611656189, -0.0055469064973294735, -0.011901149526238441, 0.02657998539507389, 0.02743813395500183, 0.010055003687739372, -0.013120622374117374, -0.017704935744404793, 0.011534178629517555, -0.010213082656264305, -0.03267734870314598, 0.027483299374580383, 0.024073293432593346, -0.0031192528549581766, -0.0024643507786095142, -0.03260960057377815, 0.0017388776177540421, 0.03721649572253227, 0.032022446393966675, -0.02732522040605545, 0.009247667156159878, -0.01326740998774767, 0.02208600379526615, 0.02854469232261181, -0.02105848491191864, 0.013357741758227348, -0.027573630213737488, 0.04250087961554527, 0.013685192912817001, -0.0030430357437580824, -0.005016210023313761, -0.01819046586751938, -0.012228600680828094, -0.0028143846429884434, -0.031503044068813324, -0.05614090710878372, -0.02025679498910904, -0.048236917704343796, -0.008304834365844727, 0.0031870012171566486, 0.008914570324122906, -0.02502177096903324, 0.009676740504801273, -0.009750135242938995, -0.009693678468465805, -0.0064812712371349335, 0.003328144084662199, -0.025134684517979622, 0.016372548416256905, 0.020911697298288345, -0.026783231645822525, 0.007322481367737055, 0.021724678575992584, -0.0031023158226162195, 0.03631318360567093, 0.06214793771505356, 0.01663225144147873, -0.011664029210805893, -0.0035652637016028166, 0.032767679542303085, 0.024118458852171898, 0.028793103992938995, 0.015469236299395561, 0.0173661932349205, -0.02497660554945469, -0.013527113012969494, 0.03976835682988167, 0.024728193879127502, 0.05058553069829941, 0.014182014390826225, -0.012420554645359516, -0.013210953213274479, -0.0036217207089066505, 0.041507232934236526, -0.037487491965293884, 0.028680188581347466, -0.004107251297682524, 0.010551825165748596, -0.04320094734430313, 0.007260378450155258, 0.03574861213564873, 0.02163434773683548, 0.0157176461070776, -0.017682353034615517, -0.010083232074975967, 0.007000675890594721, -0.03482271730899811, 0.04478174448013306, -0.013018999248743057, 0.011297058314085007, -0.006532082334160805, 0.00012702839740086347, -0.004423411097377539, 0.003457995131611824, -0.010501014068722725, 0.014735293574631214, 0.0069442191161215305, 0.02865760587155819, -0.03157079219818115, 0.027799459174275398, 0.008987965062260628, 0.01046714000403881, -0.030870722606778145, 0.04250087961554527, 0.037487491965293884, -0.02307964861392975, 0.0033224981743842363, 0.06119946017861366, 0.03757782280445099, -0.021035902202129364, 0.01806626096367836, -0.03556795045733452, 0.0032265211921185255, -0.004612542223185301, -0.0014248351799324155, -0.010743779130280018, 0.021250439807772636, -0.0051008956506848335, 0.037306830286979675, 0.0013196838553994894, 0.04073941707611084, -0.011325287632644176, -0.03491304814815521, -0.012420554645359516, 0.010433265939354897, 0.028725354000926018, 0.027528464794158936, 0.01587572693824768, 0.027144556865096092, -0.025857334956526756, 0.03597444295883179, 0.02646707184612751, 0.035477619618177414, 0.02974158152937889, 0.016214469447731972, 0.025225017219781876, 0.011398681439459324, -0.017750101163983345, 0.020956862717866898, -0.012285057455301285, -0.012307640165090561, 0.01587572693824768, 0.0336032435297966, -0.04051358997821808, -0.011799526400864124, -0.0101227518171072, -0.03134496137499809, 0.014453008770942688, 0.05171466991305351, -0.03597444295883179, 0.00917991902679205, 0.038164976984262466, -0.026783231645822525, -0.0028906017541885376, -0.026738066226243973, -0.004423411097377539, 0.01800980418920517, 0.05690872296690941, 0.002162305638194084, 0.024095876142382622, -0.031841784715652466, 0.03014807216823101, 0.01709519885480404, 0.018382420763373375, -0.020798781886696815, 0.020403582602739334, 0.002704293467104435, 0.02457011491060257, 0.006684516556560993, 0.02291027642786503, 0.023486139252781868, -0.021600473672151566, 0.01314320508390665, 0.0010959727223962545, 0.0036781777162104845, -0.012273766100406647, 0.005634414963424206, -0.030125489458441734, 0.009405747056007385, -0.026150912046432495, 0.00320111564360559, -0.007096652872860432, -0.011336578987538815, 0.02382488176226616, -0.007960446178913116, -0.010032420046627522, 0.0756072998046875, -0.04701744392514229, 0.0005342249642126262, -0.0223231241106987, 0.004053617361932993, -0.0098404660820961, -0.03796172887086868, 0.011206727474927902, -0.01605638861656189, -0.016699999570846558, -0.011127687990665436, -0.022119877859950066, -0.007774137891829014, 0.02612832933664322, 0.018845368176698685, -0.03188695013523102, 0.019827721640467644, 0.004293559584766626, 0.01858566515147686, -0.0008595588151365519, 0.008073360659182072, 0.020572954788804054, 0.015740230679512024, -0.006379648577421904, 0.0010832699481397867, 0.010608282871544361, -0.011393035762012005, -0.027776876464486122, 0.034145232290029526, -0.01067038532346487, -0.011607572436332703, -0.0036725320387631655, 0.017512980848550797, -0.004129834473133087, -0.009541244246065617, -0.004753685090690851, -0.02847694419324398, -0.014475591480731964, -0.020798781886696815, -0.024931440129876137, 0.013843272812664509, 0.02042616531252861, -0.015469236299395561, 0.016767747700214386, 0.014532048255205154, 0.039090871810913086, 0.009140399284660816, 0.009953380562365055, -0.005524323787540197, -0.010348579846322536, 0.02646707184612751, -0.0015652721049264073, 0.002575853606685996, 0.04060392081737518, -0.013730358332395554, 0.004296382423490286, 0.028680188581347466, -0.017343610525131226, 0.019229276105761528, -0.00690469890832901, -0.0017021804815158248, 0.032587017863988876, -0.044217173010110855, -0.017400067299604416, 0.013312576338648796, 0.012612508609890938, -0.0207649078220129, 0.02524759992957115, -0.022232791408896446, -0.029831912368535995, 0.009129106998443604, -0.029786746948957443, 0.030102906748652458, 0.012691548094153404, 0.0319998636841774, -0.015728937461972237, 0.021160107105970383, 0.03653901070356369, 0.011122041381895542, -0.02664773538708687, -0.041168492287397385, -0.05442460998892784, -0.029154429212212563, 0.002191945444792509, 0.016485463827848434, -0.022006964311003685, -0.04724327102303505, -0.00601267721503973, -0.004688759334385395, 0.0016429006354883313, 0.026196077466011047, 0.005349306855350733, -0.0018828430911526084, -0.005848952103406191, 0.008570182137191296, 0.02254895120859146, 0.051579173654317856, 0.001829208922572434, -0.03922636806964874, -0.0023316768929362297, -0.002587144961580634, -0.015096618793904781, 0.025112101808190346, 0.029448004439473152, 0.013719066977500916, 0.01101477351039648, 0.012318931519985199, 0.03827789053320885, -0.008366936817765236, 0.030396483838558197, -0.009258958511054516, -0.022944150492548943, 0.021081067621707916, -0.006131237372756004, -0.00023288538795895875, -0.021848883479833603, -0.0031926471274346113, -0.02490885742008686, 0.01725327968597412, -0.022356998175382614, -0.011443846859037876, -0.0020437457133084536, -0.02271832339465618, -0.0023951909970492125, -0.024208789691329002, 0.024253955110907555, 0.015062744729220867, 0.006644996348768473, -0.02093428000807762, -0.0013740238500759006, 0.05166950449347496, -0.03513887897133827, -0.026444489136338234, 0.011675321497023106, 0.010297768749296665, 0.03285801038146019, -0.016891954466700554, -0.012691548094153404, 0.02306835725903511, -0.008733907714486122, 0.0026633620727807283, 0.01444171741604805, -0.03394198790192604, -0.03807464614510536, 0.02502177096903324, -0.030870722606778145, 0.019997091963887215, 0.04995321109890938, -0.025925084948539734, -0.005865889135748148, 0.007977383211255074, 0.026263827458024025, -0.00046083080815151334, 0.002659127814695239, -0.04563989117741585, -0.01492724847048521, -0.015051453374326229, 0.01633867435157299, -0.010760716162621975, 0.008011257275938988, 0.020516498014330864, -0.04062650352716446, 0.006148174405097961, 0.0057501522824168205, -0.013109330087900162, 0.004544793628156185, 0.0004509508144110441, 0.027234887704253197, -0.010625219903886318, -0.008361291140317917, 0.030802974477410316, 0.006385294254869223, -0.0016767748165875673, 0.010218728333711624, -0.016191886737942696, -0.021781135350465775, -0.04067166894674301, -0.010980899445712566, 0.024841109290719032, 0.03145787492394447, 0.029831912368535995, -0.04175564646720886, -0.01217214297503233, 0.05446977540850639, 0.006334482692182064, 0.017275862395763397, 0.01962447538971901, 0.008604057133197784, 0.0027409906033426523, -0.0044713993556797504, 0.013154496438801289, 0.012872210703790188, -0.007277315482497215, -0.015412778593599796, 0.01239797193557024, 0.025179851800203323, 0.010839756578207016, -0.03757782280445099, -0.024886274710297585, 0.015853144228458405, 0.003223698353394866, 0.017908180132508278, 0.015559567138552666, 0.0075087896548211575, 0.02728005312383175, -0.02226666733622551, -0.03129979595541954, 0.00046753507922403514, 0.0170839074999094, -0.019703514873981476, -0.017479106783866882, 0.00700632156804204, 0.0368100069463253, -0.016733873635530472, -0.006379648577421904, 0.03780364990234375, 0.03032873570919037, -0.006966801825910807, 0.048011086881160736, 0.0025349222123622894, -0.03480013459920883, 0.021329479292035103, 0.0010628042509779334, 0.025789586827158928, -0.01605638861656189, 0.023779716342687607, -0.0038277890998870134, 0.02716713957488537, 0.025992833077907562, 0.005837660748511553, -0.021645639091730118, 0.011065584607422352, -0.00986869540065527, 0.03308384120464325, 0.014803042635321617, 0.004118543118238449, -0.007537018042057753, 0.014182014390826225, -0.0037939148023724556, -0.03843596950173378, -0.04593346640467644, -0.006910344585776329, -0.009484786540269852, -0.04148465022444725, 0.003720520529896021, -0.021419810131192207, -0.016903245821595192, 0.04229763150215149, 0.017580730840563774, 0.00210726005025208, -0.0033253212459385395, -0.006148174405097961, -0.0299674104899168, -0.00010091700096381828, 0.023282893002033234, -0.01093573309481144, 0.005515855271369219, 0.020493915304541588, 0.009349290281534195, -0.00530696427449584, 0.004731101915240288, 0.004705696366727352, 0.009247667156159878, 0.0025306879542768, -0.01286091934889555, -0.015277281403541565, -0.01685808040201664, -0.05126301571726799, 0.020234212279319763, 0.014362677000463009, -0.023395808413624763, 0.0034269439056515694, 0.010568762198090553, 0.04286220297217369, -0.03396457061171532, -0.0048609534278512, 0.012894793413579464, 0.02601541578769684, -0.022221500054001808, -0.01726457104086876, 0.00903313048183918, -0.009326707571744919, 0.007966091856360435, 0.005501741077750921, 0.006108654662966728, -0.016372548416256905, -0.021950507536530495, 0.004141125828027725, 0.0314352922141552, -0.006887761875987053, -0.007988674566149712, -0.01882278546690941, -0.009010547772049904, 0.019929343834519386, 0.015096618793904781, -0.026512237265706062, -0.03635834902524948, -0.007113590370863676, 0.00929283257573843, -0.008191919885575771, -0.05230182409286499, -0.04225246608257294, -0.007847531698644161, -0.013775523751974106, -0.012556050904095173, 0.019251858815550804, 0.020155172795057297, 0.00674661947414279, 0.011398681439459324, 0.017162946984171867, 0.02335064299404621, -0.041281405836343765, 0.026783231645822525, 0.023328058421611786, -0.030306152999401093, -0.029312508180737495, -0.020505206659436226, -0.0040564402006566525, 0.008434685878455639, -0.011201081797480583, 0.019488979130983353, 0.04873373731970787, -0.002558916574344039, -0.03563569858670235, 0.042139552533626556, -0.03608735650777817, -0.0029978700913488865, 0.01933089829981327, 0.025992833077907562, -0.028680188581347466, -0.04390101507306099, -0.01841629482805729, 0.01067038532346487, 9.041951852850616e-05, 0.020358417183160782, -0.003932234365493059, -0.0067296819761395454, 0.018201757222414017, 0.008090297691524029, 0.021205274388194084, 0.007316835690289736, -0.01610155589878559, -0.044623665511608124, -0.027596212923526764, 0.0034946922678500414, -0.03437105938792229, -0.00431331992149353, 0.011093812994658947, -0.015006287954747677, -0.003994337283074856, 0.03694550320506096, -0.0004527150886133313, -0.011697904206812382, 0.02087782323360443, -0.009541244246065617, -0.04401392862200737, 0.022582825273275375, -0.05252765491604805, 0.026512237265706062, -0.013944895006716251, 0.0231248140335083, 0.018201757222414017, -0.0007254732772707939, -0.015435361303389072, -0.022176334634423256, 0.019522853195667267, -0.016553211957216263, -0.001572329318150878, -0.006740973796695471, 0.007661223877221346, -0.023282893002033234, 0.014836916700005531, 0.01674516499042511, 0.041800811886787415, -0.024299120530486107, -0.0331290066242218, -0.0037064063362777233, 0.0325644351541996, 0.01697099395096302, -0.005391649901866913, 0.023282893002033234, 0.020392291247844696, 0.015954766422510147, 0.022334415465593338, -0.011026064865291119, -0.010190499946475029, 0.01961318403482437, -0.017919473350048065, 0.014215889386832714, 0.003418475389480591, 0.007988674566149712, 0.0022625168785452843, 0.008067714981734753, 0.007260378450155258, 0.01319966185837984, -0.030464231967926025, 0.04437525197863579, 0.029448004439473152, 0.003350726794451475, 0.008451622910797596, 0.01449817419052124, 0.019421231001615524, 0.019138945266604424, 0.05478593707084656, 0.02341839112341404, -0.004951284732669592, -0.017738809809088707, 0.021092358976602554, -0.011584989726543427, -0.010478431358933449, -0.013617443852126598, 0.006244151387363672, -0.02807045355439186, 0.00923073012381792, 0.02221020869910717, 0.05424394831061363, -0.00645868806168437, 0.018969573080539703, -0.023892629891633987, 0.007983028888702393, 0.056231237947940826, -0.00416935421526432, 0.03629060089588165, -0.028296280652284622, -0.019805138930678368, -0.013944895006716251, 0.022853819653391838, -0.02036970853805542, 0.01032599713653326, -0.02497660554945469, 0.014204598031938076, 0.00700632156804204, -0.03617768734693527, 0.003601960837841034, -0.0016033806605264544, -0.018630830571055412, 0.013978769071400166, 0.0009103702032007277, -0.007712034974247217, -0.01645158790051937, 0.03839080408215523, 0.0018715517362579703, 0.004609719384461641, -0.016191886737942696, -0.01588701829314232, 0.019376065582036972, -0.00025987892877310514, 0.026896145194768906, 0.014633671380579472, 0.017241988331079483, 0.048236917704343796, -0.005922345910221338, 0.0030740872025489807, -0.00350316078402102, -0.017738809809088707, -0.03382907435297966, 0.0006630176794715226, -0.022853819653391838, -0.013120622374117374, 0.021374644711613655, 0.030509397387504578, -0.0483272485435009, -0.009964671917259693, -0.00506419874727726, 0.024479784071445465, 0.006317545659840107, -0.021148815751075745, 0.014249763451516628, -0.0004442465433385223, -0.027867207303643227, 0.053927790373563766, -0.005476335529237986, -0.03125463053584099, -0.0014121322892606258, 0.013470655307173729, 0.006995030213147402, -0.026150912046432495, -0.013899729587137699, 0.0024954022374004126, -0.022978026419878006, 0.04661095142364502, -0.04419459030032158, -0.0005423406837508082, 0.00840081088244915, 0.016835497692227364], [0.041481196880340576, 0.013008452020585537, 0.057696182280778885, 0.021963156759738922, -0.06224324181675911, 0.009700036607682705, -0.02560938335955143, 0.017984479665756226, 0.016429470852017403, 0.040601812303066254, -0.04504162818193436, 0.03197955712676048, 0.008096769452095032, 0.026982080191373825, -0.03350239247083664, 0.005455935373902321, 0.0036140545271337032, -0.010960130020976067, -0.032086800783872604, 0.005828601308166981, -0.006139602977782488, 0.04167423024773598, -0.033245012164115906, -0.04568508267402649, -0.015957605093717575, -0.050232142210006714, 0.027904361486434937, -0.04328286275267601, 0.05310622602701187, -0.018402723595499992, 0.010713472962379456, -0.04124526306986809, 0.03375977277755737, -0.05679535120725632, 0.026939183473587036, 0.041373953223228455, -0.004043022636324167, -0.005581944715231657, 0.0056462897919118404, 0.004048384726047516, -0.042746651917696, -0.005217322148382664, 0.03530405834317207, -0.009217447601258755, -0.02947009541094303, 0.13752710819244385, 0.026124145835638046, -0.0392720103263855, -0.002292297314852476, -0.0031636382918804884, 0.016525987535715103, 0.011474891565740108, 0.006509588100016117, -0.09248548001050949, 0.03783496841788292, 0.025480693206191063, 0.03052106685936451, 0.019668178632855415, -0.0006444572354666889, -0.01833837851881981, -0.01636512577533722, -0.011903859674930573, 0.009040498174726963, 0.022563710808753967, -0.03152913972735405, 0.005565858446061611, 0.022306330502033234, 0.024322479963302612, -0.024129444733262062, -0.014102320186793804, -0.027089323848485947, 0.013212211430072784, -0.02749684266746044, -0.029105471447110176, 0.004423731472343206, 0.022177640348672867, -0.0020804943051189184, -0.001963868737220764, 0.04697198420763016, 0.004799078218638897, -0.0009041838929988444, 0.003096611937507987, -0.016493815928697586, -0.028848091140389442, 0.007598093710839748, 0.015399947762489319, -0.03556143864989281, -0.03476784750819206, -0.005466659553349018, -0.026124145835638046, 0.01617209054529667, -0.033245012164115906, -0.00437011057510972, 0.039400700479745865, -0.027561187744140625, -0.00590903265401721, 0.0460282564163208, 0.0003391527570784092, -0.0015818191459402442, 0.022220537066459656, 0.005059140268713236, -0.03547564521431923, -0.013769869692623615, 0.008075321093201637, -0.007142315618693829, -0.022220537066459656, -0.05044662579894066, 0.0032708803191781044, 0.036462269723415375, 0.03590461239218712, 0.028805194422602654, -0.0012138450983911753, -0.027990154922008514, 0.017255233600735664, -0.019507315009832382, -0.023957857862114906, -0.03573302552103996, 0.0224350206553936, 0.004214609507471323, -0.027668429538607597, -0.008863549679517746, 0.04085919260978699, -0.006981452461332083, -0.06494574248790741, -0.008675876073539257, 0.05580872297286987, -0.0010717494878917933, 0.045899566262960434, -0.027239462360739708, -0.022499365732073784, 0.037813521921634674, -0.046714603900909424, 0.08339136093854904, -0.0038982457481324673, -0.01775927096605301, -0.024965932592749596, 0.027947258204221725, 0.02464420534670353, 0.013523212634027004, -0.03215114399790764, 0.058125149458646774, 0.005823239218443632, -0.033330805599689484, 0.036419373005628586, -0.05233408510684967, 0.027411049231886864, 0.0074425931088626385, 0.03534695506095886, 0.029019678011536598, -0.035754475742578506, -0.0207942184060812, 0.018509965389966965, -0.04173857718706131, -0.03187231346964836, -0.011592857539653778, 0.003525580046698451, 0.018209686502814293, 0.033631082624197006, 0.010970854200422764, 0.017458993941545486, 0.01311569381505251, -0.04877365007996559, 0.01386638730764389, -0.006568571086972952, 0.03489653766155243, 0.011421270668506622, 0.010675938799977303, 0.02642442286014557, -0.07369668781757355, -0.05383547022938728, -0.0398511178791523, -0.01992555893957615, -0.01627933233976364, -0.059669435024261475, -0.017126543447375298, -0.01926065795123577, 0.07047942280769348, -0.002722605597227812, 0.011067371815443039, -0.01458490826189518, 0.051390353590250015, 0.04128815978765488, 0.011903859674930573, 0.029234161600470543, -0.038049452006816864, 0.03937925398349762, -0.00012869037163909525, 0.006590019445866346, -9.492590470472351e-05, 0.040087051689624786, 0.03740600124001503, -0.03210824728012085, -0.008970791473984718, 0.02200605347752571, -0.04933130741119385, -0.012118343263864517, -0.02387206442654133, -0.04645722359418869, -0.006284379865974188, -0.018177514895796776, 0.029834717512130737, -0.048602063208818436, 0.013609007000923157, 0.0022494003642350435, -0.006606105715036392, -0.024472618475556374, -0.011045923456549644, -0.01570022478699684, 0.020901460200548172, -0.011421270668506622, 0.012011101469397545, -0.010965491645038128, -0.02190953493118286, 0.024150893092155457, 0.016697576269507408, -0.0025604022666811943, -0.0061449650675058365, -0.018788794055581093, -0.013609007000923157, -0.011292579583823681, -0.02142694592475891, -0.0039813583716750145, 0.0124722421169281, 0.008675876073539257, -0.05404995381832123, -0.019228486344218254, -0.018906760960817337, -0.026209939271211624, -0.03770627826452255, -0.031936660408973694, -0.0622861385345459, 0.01748044230043888, -0.012558035552501678, -0.027561187744140625, 0.016965679824352264, 0.0239793062210083, 0.02936285361647606, -0.051047179847955704, -0.043776173144578934, 0.02835477888584137, 0.01641874574124813, -0.009330051951110363, -0.00967858824878931, 0.01234355103224516, 0.014123768545687199, -0.01446694228798151, -0.014091595076024532, 0.0031019740272313356, 0.05555134266614914, -0.016729747876524925, 0.024236686527729034, 0.05443602800369263, 0.03789931535720825, -0.022606607526540756, -0.021405497565865517, 0.03142189979553223, 0.006766968406736851, -0.0018673508893698454, -0.010440005920827389, -0.04278954863548279, 0.021362600848078728, 0.022928334772586823, 0.0008834057953208685, -0.018735172227025032, -0.03566868230700493, -0.012118343263864517, 0.0415884368121624, 0.015121118165552616, -0.02633862942457199, 0.043304309248924255, 0.004083238076418638, 0.0615139976143837, -0.027604084461927414, -0.011560685001313686, -0.05435023456811905, 0.056151896715164185, -0.02893388457596302, -0.007265643682330847, 0.00796807836741209, 0.010456092655658722, -0.06447387486696243, -0.0460282564163208, -0.03159348666667938, -0.05628058686852455, 0.044312383979558945, 0.006273655686527491, -0.016397297382354736, -0.007147677708417177, 0.015464292839169502, 0.032322730869054794, 0.02955588884651661, 0.046671707183122635, -0.0031287847086787224, 0.00979655422270298, 0.0375346913933754, 0.00687421066686511, -0.027646981179714203, 0.019389349967241287, 0.03461771085858345, 0.02156636118888855, 0.024000754579901695, 0.03219404071569443, -0.031743623316287994, -0.046628810465335846, -0.05859701707959175, -0.010354212485253811, 0.017995202913880348, 0.014906634576618671, -0.06481704860925674, 0.02363613061606884, -0.04321851581335068, 0.03616199269890785, -0.10629824548959732, -0.043497346341609955, 0.0043808347545564175, -0.006257569417357445, -0.0011742996284738183, 0.004673068877309561, 0.036226339638233185, 0.04285389184951782, 0.018831690773367882, 0.0041931611485779285, -0.016204262152314186, 0.0006565219955518842, -0.0034558726474642754, -0.028826642781496048, 0.02387206442654133, 0.01723378524184227, 0.0033432685304433107, 0.03995836153626442, -0.037963658571243286, -0.024429721757769585, -0.005549772176891565, 0.019947007298469543, -0.019957732409238815, -0.025931108742952347, -0.018381275236606598, 0.032429974526166916, 0.02022583596408367, -0.008128941990435123, 0.017512613907456398, -0.029341405257582664, -0.020343802869319916, -0.004458585288375616, -0.034682054072618484, 0.02811884507536888, 0.013920008204877377, 0.006257569417357445, 0.03017789125442505, 0.049031030386686325, 0.03663386031985283, 0.02545924484729767, 0.018456343561410904, -0.03794221207499504, -0.06443098187446594, -0.004627491347491741, 0.03616199269890785, -0.015078221447765827, -0.037148620933294296, 0.024107996374368668, 0.008965428918600082, 0.0014491071924567223, 0.0011407865677028894, 0.00679914141073823, -0.008681237697601318, -0.02035452611744404, 0.020086422562599182, 0.026746148243546486, 0.00109252764377743, -0.005045734811574221, 0.030413825064897537, 0.021630706265568733, -0.01661178283393383, -0.021534187719225883, 0.06284379959106445, 0.002512143226340413, -0.002248059958219528, 0.027411049231886864, -0.04165278375148773, -0.05640928074717522, 0.018713723868131638, 0.022713851183652878, 0.04538480564951897, 0.03335225582122803, 0.03142189979553223, 0.017737822607159615, -0.030885688960552216, 0.004565827082842588, 0.003185086650773883, -0.03307342529296875, -0.016568884253501892, 0.015131842344999313, -0.013330177403986454, 0.0005184479523450136, -0.018456343561410904, 0.017008576542139053, 0.028268985450267792, -0.0034746399614959955, 0.009818002581596375, -0.02185591496527195, -0.04851626977324486, 0.010225522331893444, 0.006338000763207674, -0.015571534633636475, 0.007887647487223148, 0.01911051943898201, 0.0025456564035266638, 0.016139917075634003, -0.005689186975359917, -0.036033302545547485, 0.020182939246296883, -0.030413825064897537, 0.0031314657535403967, -0.020922908559441566, -0.0036328218411654234, -0.0012373042991384864, 0.019957732409238815, 0.022692402824759483, -0.009271068498492241, -0.06558918952941895, 0.02239212393760681, 0.046242740005254745, -0.019764695316553116, 0.014885186217725277, -0.02835477888584137, 0.016150642186403275, 0.035840269178152084, 0.0048500183038413525, -0.013083521276712418, -0.025287657976150513, -0.03571157902479172, 0.01814534142613411, -0.017587684094905853, 0.036569513380527496, -0.029813269153237343, -0.013169314712285995, -0.02209184691309929, -0.00043969208491034806, -0.028097396716475487, -0.03255866467952728, 0.007742870599031448, -0.03717006742954254, 0.020762046799063683, -0.010209435597062111, -0.03032802976667881, -0.047787025570869446, 0.0028097396716475487, 0.06490284204483032, 0.04684329405426979, 0.022799644619226456, 0.0001777870929799974, -0.0041207727044820786, -0.025974005460739136, 0.007405058480799198, 0.021105220541357994, -0.03682689368724823, 0.005069864448159933, 0.005287029314786196, 0.02060118317604065, -0.010938681662082672, 0.05383547022938728, 0.03373832628130913, -0.005812515038996935, 0.014456218108534813, 0.020740598440170288, 0.030499618500471115, 0.02065480500459671, -0.018381275236606598, -0.014252458699047565, -0.047529641538858414, 0.0017265958013013005, -0.003965272102504969, -0.0026957951486110687, 0.01963600516319275, -0.025974005460739136, -0.026467319577932358, -0.004276273772120476, -0.00849356409162283, -0.017694925889372826, -0.01988266222178936, 0.030392374843358994, 0.02498738095164299, -0.0004956590128131211, -0.0299848560243845, 0.04439817741513252, 0.04231768473982811, 0.09643198549747467, 0.02209184691309929, -0.01475649606436491, -0.040365878492593765, -0.030692653730511665, -0.016236435621976852, 0.03052106685936451, -0.007061884272843599, -0.024000754579901695, 0.01589326001703739, 0.0038473058957606554, 0.021727224811911583, 0.038156695663928986, -0.004614085890352726, 0.0035014504101127386, -0.05945495143532753, 0.04201740771532059, -0.04414079710841179, 0.025266209617257118, -0.007104780990630388, -0.022370675578713417, -0.0016890610568225384, -0.016965679824352264, 0.031464796513319016, -0.0009832748910412192, 0.01222558505833149, 0.017169440165162086, 0.0309500340372324, -0.016493815928697586, -0.004136858973652124, 0.005053778178989887, 0.00426018750295043, -0.020686976611614227, -0.018552862107753754, 0.0020563649013638496, -0.0007795151323080063, -0.0010442687198519707, -0.0010744305327534676, -0.01001640036702156, 0.028268985450267792, -0.025823866948485374, -0.08034569025039673, -0.004246782045811415, -0.018563585355877876, -0.01650453917682171, -0.0019893385469913483, -0.05799645930528641, -0.013898559845983982, 0.0070404354482889175, -0.016386574134230614, 0.027947258204221725, 0.030006304383277893, 0.0021863956935703754, 0.006868848577141762, -0.020300906151533127, -0.03350239247083664, 0.008220097050070763, -4.4656229874817654e-05, 0.02247791737318039, -0.0059626540169119835, 0.05821094289422035, 0.014338252134621143, 0.007480127736926079, -0.01076173223555088, -0.00235262094065547, 0.019335728138685226, 0.028247537091374397, 0.014928082935512066, 0.013255108147859573, 0.027282359078526497, 0.02711077220737934, 0.0008693302515894175, -0.010504351928830147, -0.030413825064897537, 0.027453945949673653, 0.020772770047187805, -0.007640990894287825, 0.010595506988465786, -0.029877614229917526, 0.022585159167647362, -0.0012091533280909061, -0.040408775210380554, 0.019121244549751282, -0.0003776928351726383, -0.018906760960817337, 0.027453945949673653, 0.003675718791782856, 0.023335853591561317, 0.01993628405034542, 0.010890422388911247, 0.010868974030017853, -0.029062574729323387, 0.014134492725133896, -0.02277819626033306, 0.019367901608347893, 0.04555639252066612, -0.02719656564295292, -0.019614556804299355, -0.030992930755019188, 0.04675750061869621, -0.01210761908441782, -0.03759903833270073, -0.004799078218638897, 0.023035576567053795, 0.0009303241386078298, 0.013373074121773243, 0.014627804979681969, -0.008793842047452927, -0.03330935910344124, 0.03957228735089302, -0.016826266422867775, 0.0003391527570784092, -0.03631213307380676, -0.011946756392717361, 0.0193464532494545, 0.0035657957196235657, 0.012332826852798462, 0.04491293802857399, -0.033137768507003784, -0.019753972068428993, -0.01170009933412075, -0.02781856805086136, 0.03245142102241516, 0.002868722891435027, 0.03298763185739517, -0.010257694870233536, -0.022692402824759483, -0.027089323848485947, -0.033287908881902695, -0.02094435691833496, -0.06400200724601746, 0.0006354086799547076, 0.023700475692749023, -0.029920510947704315, 0.012611656449735165, 0.012622380629181862, 0.023357301950454712, -0.03438177704811096, -0.05327781289815903, -0.021963156759738922, -0.00022168927534949034, -0.054564718157052994, 0.0299848560243845, -0.03577592223882675, -0.02711077220737934, -0.002573807490989566, -0.005673100706189871, -0.012772519141435623, -0.007957354187965393, -0.019432246685028076, 0.015196187421679497, -0.022692402824759483, -0.009169189259409904, 0.015507189556956291, 0.002441095421090722, -0.002378090750426054, 0.023357301950454712, -0.06387332081794739, 0.044312383979558945, 0.03751324117183685, 0.018220411613583565, 0.009700036607682705, 0.03461771085858345, -0.013469591736793518, 0.029684578999876976, 0.015078221447765827, 0.013147866353392601, 0.013533936813473701, -0.009308603592216969, -0.004732052329927683, -0.01087969820946455, 0.029019678011536598, -0.010236246511340141, 0.011131716892123222, -0.030799895524978638, -0.0010965492110699415, 0.0025684454012662172, -0.0032011729199439287, 0.07378248125314713, 0.025738073512911797, 0.019367901608347893, -0.0015938838478177786, 0.0025590616278350353, -0.014413321390748024, 0.0044532231986522675, 0.013405246660113335, 0.019185589626431465, -0.023507440462708473, -0.0007694611558690667, -0.014670702628791332, 0.03635502979159355, 0.031700726598501205, -0.04308982565999031, 0.0234001986682415, -0.006439880467951298, -0.01570022478699684, 0.002292297314852476, 0.01046681683510542, 0.004233377054333687, -0.01454201154410839, 0.0184777919203043, -0.012075446546077728, 0.018938932567834854, 0.021502016112208366, 0.01543212030082941, 0.02936285361647606, 0.023121370002627373, -0.011174613609910011, -0.0002545321185607463, 0.06087054684758186, 0.0154750170186162, -0.025094622746109962, -0.017737822607159615, 0.018424171954393387, -0.004799078218638897, 0.011893135495483875, -0.04025863856077194, -0.051047179847955704, -0.020279457792639732, -0.015775294974446297, 0.005882222205400467, -0.01016117725521326, 0.023271508514881134, -0.020011352375149727, 0.010493626818060875, -0.006514950189739466, -0.006128878798335791, -0.04538480564951897, -0.0011642456520348787, 0.0054612974636256695, 0.004477352369576693, -0.0005224695196375251, 0.006525674369186163, 0.00045778919593431056, -0.00806459691375494, 0.028633607551455498, 0.002398198703303933, -0.003319139126688242, 0.006198585964739323, -0.0151854632422328, 0.019239209592342377, -0.01926065795123577, 0.028290433809161186, 0.03732020780444145, 0.040365878492593765, -0.0216628797352314, -0.00139280513394624, 0.027840016409754753, -0.05040372908115387, 0.002355301985517144, -0.03187231346964836, 0.01810244470834732, 0.003391527570784092, -0.010713472962379456, 0.022692402824759483, -0.04070905223488808, 0.022563710808753967, -0.005662376061081886, -0.002529570134356618, 0.022499365732073784, -0.008536460809409618, -0.010375660844147205, -0.027947258204221725, 0.027067873626947403, -0.003512174589559436, 0.004946535918861628, -0.028333330526947975, -0.01330872904509306, 0.0388859398663044, -0.0034129759296774864, 0.00818256288766861, -0.03303052857518196, 0.04843047633767128, -0.0034746399614959955, -0.000983945094048977, -0.028526365756988525, 0.0028016965370625257, 0.003362035844475031, 0.006520312279462814, -0.010595506988465786, -0.007431868929415941, -0.044269487261772156, 0.000754715409129858, -0.01694423146545887, 0.0009604859515093267, 0.0036086924374103546, 0.017973754554986954, 0.02835477888584137, -0.009346137754619122, -0.037084273993968964, -0.0048768287524580956, -0.04244637489318848, -0.0032360265031456947, -0.021930983290076256, 0.047872819006443024, -0.0030134995467960835, -0.0014839607756584883, 0.013062072917819023, -0.016826266422867775, 0.0031234226189553738, -0.021673602983355522, 0.0028151017613708973, 0.03378122299909592, 0.030220787972211838, -0.05224829167127609, -0.018799519166350365, -0.008268356323242188, -0.05070400610566139, -0.005635565612465143, 0.020719150081276894, -0.01359828282147646, -0.008279080502688885, 0.003504131454974413, 0.006000188644975424, 0.0048044403083622456, 0.0021555637940764427, -0.014713599346578121, 0.022113295271992683, 0.06168558448553085, -0.02460130862891674, -0.03245142102241516, -0.003327182261273265, 0.0018834371585398912, 0.004997476004064083, 0.010482902638614178, 0.0019383986946195364, 0.0023124050348997116, 0.022177640348672867, 0.009844813495874405, -0.0035711578093469143, -0.03418873995542526, 0.0498889684677124, -0.0015362412668764591, -0.03144334629178047, -0.009115567430853844, -0.0025952558498829603, 0.03071410208940506, -0.007324627134948969, 0.03137900307774544, -0.015153290703892708, -0.03288038820028305, 0.016139917075634003, 0.0028553176671266556, -0.0065042260102927685, 0.014102320186793804, -0.011517788283526897, -0.02696063183248043, -0.019893385469913483, 0.014145216904580593, -0.010531161911785603, -0.026853390038013458, -0.010021762922406197, 0.005737445782870054, 0.01949659176170826, 0.05199091136455536, -0.033245012164115906, 0.01241862028837204, -0.012751070782542229, -0.030263684689998627, 0.009453380480408669, 0.021008703857660294, -0.0003870764921884984, -0.033438049256801605, 0.03674110025167465, -0.016257883980870247, 0.0036274597514420748, -0.015217636711895466, -0.002041619038209319, -0.001127381226979196, -0.015571534633636475, 0.03009209781885147, -0.038542766124010086, -0.015657328069210052, -0.013855663128197193, -0.015271257609128952, -0.019678901880979538, 0.005396952386945486, 0.01622571051120758, -0.0053486935794353485, 0.008691961877048016, 0.03200100362300873, -0.005565858446061611, -0.016064848750829697, -0.011957480572164059, 0.003761512227356434, 0.00448807654902339, -0.03148624300956726, -0.013180038891732693, -0.015110393986105919, -0.009271068498492241, 0.008654427714645863, 0.01612919382750988, -0.01679409295320511, -0.005000157281756401, -0.022370675578713417, -0.0011568728368729353, 0.044655557721853256, -0.0034397863782942295, -0.029834717512130737, -0.01665467955172062, -0.07995961606502533, 0.06481704860925674, 0.044655557721853256, -0.001127381226979196, 0.015464292839169502, -0.008145027793943882, 0.010096832178533077, 0.008847462944686413, -0.015485741198062897, -0.013995077461004257, 0.005018924362957478, -0.032816044986248016, -0.008767031133174896, -0.020729873329401016, -0.05267725884914398, -0.0230141282081604, -0.037813521921634674, -0.00982336513698101, -0.015560810454189777, 0.019078347831964493, -0.042725201696157455, -0.0028740849811583757, -0.02623138763010502, -0.0018928208155557513, 0.032472871243953705, -0.004026936367154121, -0.002635471522808075, -0.05409285053610802, 0.023271508514881134, -0.006010912824422121, -0.0007238833350129426, 0.0016408022493124008, -0.0076141804456710815, 0.04714357107877731, 0.06541760265827179, -0.026252835988998413, 0.00011000680387951434, 0.023614682257175446, -0.007807215675711632, 0.005378184840083122, -0.010670576244592667, 0.03635502979159355, 0.021834466606378555, -0.044097900390625, 0.001756087294779718, 0.03508957475423813, 0.00089211919112131, 0.044269487261772156, -0.025094622746109962, 0.017298130318522453, -0.004565827082842588, 0.011303303763270378, 0.010402471758425236, -0.043497346341609955, 0.0016609100857749581, 0.02075132168829441, 0.0010804629418998957, -0.02075132168829441, -0.016643954440951347, 0.05954074487090111, 0.022349227219820023, 0.020740598440170288, -0.008123579435050488, -0.0041234539821743965, 0.007732146419584751, -0.003817814402282238, 0.015485741198062897, 0.012740346603095531, 0.012751070782542229, -0.01475649606436491, 0.01158213336020708, -0.037813521921634674, 0.0032789234537631273, -0.006927831564098597, 0.026317181065678596, 0.015625156462192535, 0.0034237001091241837, -0.024880139157176018, 0.012354275211691856, 0.020451044663786888, 0.026510216295719147, -0.011314027942717075, 0.007957354187965393, 0.00931396521627903, -0.03148624300956726, -0.014799392782151699, 0.02503027766942978, -0.017544787377119064, -0.023571785539388657, -0.0019330366048961878, -0.020826391875743866, 0.014509839005768299, -0.0197325237095356, 0.00830052886158228, -0.030349478125572205, -0.0025898937601596117, 0.0016542074736207724, 0.030542515218257904, -0.002422328107059002, 0.021244635805487633, 0.03375977277755737, -0.01612919382750988, 0.005402314476668835, 0.016783369705080986, 0.033395152539014816, 0.0433257594704628, 0.003933099564164877, 0.04105222970247269, -0.008649065159261227, 0.04577087610960007, 0.02417234145104885, 0.05010345205664635, 0.00672943377867341, 0.03436033055186272, 0.005367460660636425, -0.02170577645301819, 0.04358313977718353, 0.018123893067240715, -0.017652029171586037, 0.02133042924106121, 0.003488045185804367, 0.014037974178791046, -0.05319201946258545, -0.017298130318522453, -0.01627933233976364, -0.028848091140389442, 0.020472493022680283, 0.04727226123213768, -0.0210837721824646, -0.015442844480276108, 0.03294473513960838, -0.027432497590780258, -0.006563208997249603, 0.026746148243546486, -0.04242492467164993, -0.004048384726047516, 0.01647236756980419, 0.024536963552236557, 0.03976532444357872, -0.00324943196028471, 0.01819896325469017, -0.0020255327690392733, 0.014777944423258305, -0.033438049256801605, 0.04534190893173218, -0.02286398969590664, 0.041138023138046265, 0.04452686756849289, 0.024729998782277107, 0.01767347753047943, -0.03918621689081192, -0.025116071105003357, -0.005565858446061611, 0.03732020780444145, -0.02417234145104885, -0.03674110025167465, -0.019571660086512566, 0.020590459927916527, 0.02104087546467781, -0.0056462897919118404, -0.004305765498429537, -0.013126417994499207, 0.016193538904190063, 0.016719024628400803, -0.012772519141435623, 0.05503658205270767, -0.0207942184060812, 0.022327778860926628, -0.00900296401232481, 0.005892946384847164, 0.01719088852405548, -0.03200100362300873, 0.0038312196265906096, -0.008413133211433887, -0.03013499453663826, -0.014091595076024532, 0.017512613907456398, -0.022649504244327545, 0.01955021172761917, -0.00919599924236536, -0.021030152216553688, 0.03594750910997391, -0.014005801640450954, 0.03442467376589775, -0.012654553167521954, -0.005555134266614914, 0.06057026609778404, 0.05984102189540863, -0.0019772739615291357, 0.003930418286472559, 0.001935717649757862, -0.013587558642029762, -0.02711077220737934, 0.04452686756849289, -0.006005550734698772, -0.03963663429021835, -0.02112666890025139, -0.02672469988465309, -0.008874273858964443, -0.02080494351685047, 0.018831690773367882, 0.009469466283917427, -0.03549709543585777, 0.030413825064897537, -0.03967953100800514, 0.03307342529296875, 0.009405121207237244, 0.015517913736402988, 0.002635471522808075, -0.013662627898156643, 0.054564718157052994, -0.01154996082186699, 0.0005667068180628121, -0.002122050616890192, -0.009780468419194221, 0.02738960087299347, 0.0019812954124063253, -0.01154996082186699, 0.05894019082188606, -0.010246970690786839, 0.01030595414340496, 0.036998480558395386, -0.007217384874820709, -0.007946630008518696, -0.002138136886060238, -0.00022705136507283896, 0.01805954799056053, -0.046714603900909424, 0.016879886388778687, 0.016922783106565475, 0.009984227828681469, 0.006965366192162037, -0.017223061993718147, -0.008515012450516224, -0.05718142166733742, -0.008536460809409618, -0.013351625762879848, 0.011957480572164059, 0.03075699880719185, -0.010118280537426472, -0.017984479665756226, 0.008922532200813293, 0.03144334629178047, -0.02792580984532833, 0.0027400325052440166, -0.03466060757637024, -0.04088063910603523, -0.037084273993968964, -0.015925433486700058, 0.005110079888254404, -0.004772267770022154, -0.047829922288656235, -0.010112917982041836, -0.007780405227094889, 0.01583964005112648, 0.014123768545687199, 0.01728740707039833, 0.002219908870756626, -0.005469340831041336, -0.0025322511792182922, -0.01833837851881981, 0.051004283130168915, -0.011871686205267906, 0.020901460200548172, -0.002256103092804551, 0.004750819411128759, -0.007673163432627916, -0.0201185941696167, 0.011539236642420292, 0.03631213307380676, 0.021158842369914055, -0.0041958424262702465, 0.010091469623148441, 0.008171838708221912, -0.009442656300961971, -0.017641304060816765, -0.001029522973112762, 0.004249463323503733, 0.030649757012724876, 0.008407770656049252, 0.014745771884918213, -0.02468710206449032, -0.05786776915192604, -0.0016086295945569873, -0.051390353590250015, -0.028569262474775314, -0.00948555301874876, -0.010874336585402489, 0.009244258515536785, -0.010225522331893444, 0.014091595076024532, 0.018509965389966965, 0.015592982992529869, 0.0009216107428073883, 0.017115818336606026, -0.018123893067240715, -0.03350239247083664, -0.03774917498230934, 0.016097020357847214, 0.009088757447898388, 0.0005341990618035197, -0.022949783131480217, 0.005866135936230421, -0.0005419070948846638, 0.03474640101194382, -0.0037588311824947596, 0.039400700479745865, -0.03717006742954254, -0.025716625154018402, 0.02498738095164299, -0.031657829880714417, 0.01290120929479599, 0.024515515193343163, -0.032236937433481216, -0.020579734817147255, 0.027453945949673653, 0.029641682282090187, 0.014263182878494263, -0.0004762214084621519, -0.00926570687443018, -0.014617080800235271, 0.014488390646874905, -0.02700352855026722, -0.017834341153502464, 0.002679708879441023, 0.012461517937481403, 0.0044210501946508884, -3.324082354083657e-05, -0.005220002960413694, -0.017448268830776215, -0.013962904922664165, -0.008793842047452927, -0.005635565612465143, -0.009378310292959213, -0.001132073113694787, 0.015088945627212524, -0.01748044230043888, -0.018938932567834854, 0.02974892407655716, 0.010402471758425236, -0.01020407397300005, -0.03614054620265961, -0.02133042924106121, 0.033480945974588394, 0.031743623316287994, 0.0024880138225853443, -0.012364999391138554, -0.02445117011666298, 0.030542515218257904, 0.011196061968803406, 0.00717448815703392, 0.012558035552501678, -0.0009216107428073883, -0.006493501365184784, 0.004276273772120476, 0.020097145810723305, 0.002378090750426054, -0.0011950777843594551, -0.020290181040763855, 0.001100570778362453, 0.006675812881439924, 0.00017443577235098928, -0.019035451114177704, -0.017845064401626587, 0.015110393986105919, 0.011753720231354237, 0.03167928010225296, 0.02753973938524723, -0.03273025155067444, 0.03399570658802986, 0.004882190842181444, -0.015710949897766113, 0.024000754579901695, 0.019571660086512566, -0.0027293083257973194, -0.052162498235702515, 0.009882347658276558, 0.027132220566272736, -0.01251513883471489, 0.0011883751722052693, 0.00743723101913929, 0.021191013976931572, 0.004855380393564701, 0.05117587000131607, -0.011893135495483875, -0.01181806530803442, 0.027432497590780258, 0.004268230404704809, 0.07356799393892288, 0.002442436059936881, 0.01143199484795332, -0.022885438054800034, -0.03513247147202492, 0.0035577525850385427, 0.0034156569745391607, 0.017051473259925842, 0.0030403099954128265, -0.025116071105003357, 0.024301031604409218, -0.0014651934616267681, -0.01781289279460907, 0.03311632201075554, -0.00039880609256215394, -0.011356925591826439, 0.01776999607682228, -0.04808730259537697, -0.0034639157820492983, 0.002396858064457774, -0.03601185604929924, -0.006177137605845928, -0.009158465079963207, -0.013823490589857101, 0.04928841069340706, 0.012461517937481403, -0.0020000627264380455, -0.003219940233975649, 0.008606168441474438, -0.023185715079307556, -0.04341155290603638, 0.0230141282081604, 0.002975964918732643, -0.004418369382619858, 0.0026381525676697493, -0.007523024454712868, 0.011657202616333961, 0.0005667068180628121, 0.017212336882948875, -0.0013807404320687056, 0.013995077461004257, 0.018038099631667137, -0.027861464768648148, -0.012836864218115807, -0.0035818819887936115, -0.014434769749641418, 0.0031234226189553738, -0.03787786513566971, -0.028998229652643204, -0.003967952914535999, 0.06674740463495255, -0.019914835691452026, 0.0006977430894039571, 0.035754475742578506, 0.008820652030408382, -0.023378750309348106, 0.01761985570192337, 0.019775420427322388, -0.013726972974836826, 0.04740095138549805, -0.01198965311050415, 0.00695464201271534, 0.01709436997771263, 0.0015992459375411272, -0.0026582605205476284, 0.013694800436496735, -0.040022704750299454, -0.01988266222178936, -0.024193789809942245, 0.03871435299515724, 0.017030024901032448, -0.004820526577532291, -0.020955082029104233, 0.009834089316427708, 0.014853013679385185, 0.022542262449860573, -0.018863864243030548, -0.01023088488727808, -0.0032172591891139746, 0.012043274007737637, -0.012075446546077728, -0.024322479963302612, 0.011056647635996342, 0.020719150081276894, -0.015174739062786102, 0.0191534161567688, 0.0011944074649363756, -0.003142189932987094, -0.03860710933804512, 0.03794221207499504, -0.005075226537883282, -0.03159348666667938, -0.027990154922008514, -0.029427198693156242, -0.01326583232730627, 0.044312383979558945, -0.01170009933412075, 0.0014035293133929372, 0.001971911871805787, 0.009474828839302063, 0.019775420427322388, 0.03961518406867981, -0.005774980410933495, 0.017405372112989426, -0.009764381684362888, 0.007834026589989662, -0.029448647052049637, -0.011078095994889736, -0.020279457792639732, 0.022799644619226456, -0.018027376383543015, 0.014381148852407932, -0.017501890659332275, -0.03358818590641022, -0.009565983898937702, 0.008911808021366596, -0.007839388214051723, -0.015088945627212524, -0.04963158443570137, -0.02672469988465309, -0.04021574184298515, -0.029191264882683754, -0.039507944136857986, 0.00922281015664339, -0.02792580984532833, -0.009040498174726963, -0.015378499403595924, 0.0029411111027002335, 0.0018740535015240312, -0.014617080800235271, -0.009726847521960735, 0.0006776352529413998, -0.011292579583823681, 0.017308855429291725, -0.03508957475423813, 0.037663381546735764, 0.025823866948485374, 0.023507440462708473, 0.023464543744921684, -0.009876986034214497, -0.011453443206846714, -0.003769555361941457, 0.02850491739809513, -0.03663386031985283, 0.018713723868131638, 0.00237138825468719, -0.043497346341609955, -0.0070726084522902966, -0.01319076307117939, 0.003957228735089302, 0.018735172227025032, -0.011882410384714603, -0.003745425958186388, 0.007120867259800434, 0.03596895933151245, 0.016922783106565475, -0.0025791695807129145, -0.019035451114177704, -0.0014115724479779601, 0.0005144263268448412, 0.0305639635771513, 0.010590145364403725, -0.010070021264255047, 0.007303178310394287, -0.007651715073734522, 0.0105418860912323, -0.029684578999876976, 0.017298130318522453, 0.0019853170961141586, -0.005102036986500025, 0.001335832872428, -2.382573143222544e-07, -0.009024412371218204, 0.020590459927916527, 0.02402220293879509, 0.0381137989461422, -0.00683667603880167, 0.01968962699174881, 0.030606860294938087, -0.010493626818060875, 0.013137142173945904, 0.020204387605190277, 0.006922469474375248, -0.03860710933804512, 0.05542265251278877, -0.014777944423258305, -0.01468142680823803, -0.017072921618819237, 0.004563146270811558, -0.01297627855092287, -0.01415594108402729, 0.016772644594311714, 0.026360077783465385, -0.009367586113512516, 0.028462020680308342, -0.024815792217850685, -0.02113739401102066, -0.006675812881439924, -0.015335602685809135, 0.011410546489059925, 0.01191458385437727, 0.0020375975873321295, 0.008279080502688885, 0.021373325958848, -0.018134618178009987, 0.019796868786215782, -0.026939183473587036, 0.00021833795472048223, 0.0043781534768640995, -0.015775294974446297, -0.014810116961598396, 0.010241609066724777, -0.012611656449735165, -0.008498926647007465, 0.015775294974446297, -0.04306837543845177, -0.0012614337028935552, 0.03326646238565445, 0.0009115567663684487, 0.005254856776446104, 0.026789044961333275, -0.0309500340372324, 0.021008703857660294, 0.02657456137239933, 0.026553113013505936, 0.025888212025165558, -0.047014880925416946, 0.017062198370695114, 0.011828789487481117, 0.00695464201271534, 0.013137142173945904, 0.033330805599689484, -0.012751070782542229, 0.015807466581463814, -0.008091406896710396, -0.002362004481256008, 0.003611373482272029, 0.02979182079434395, -0.023185715079307556, -0.010938681662082672, -0.012257757596671581, 0.0019732522778213024, 0.004533654544502497, -0.002962559461593628, 0.03729875758290291, -0.0243653766810894, -0.030971482396125793, 0.007367523852735758, 0.0066865370608866215, -0.024579860270023346, -0.04019429162144661, 0.0003840603167191148, 0.01896038092672825, -0.010091469623148441, 0.008820652030408382, 0.01564660482108593, -0.03644082322716713, 0.036805447190999985, -0.011710823513567448, -0.006300466135144234, 0.007576645351946354, 0.039979808032512665], [0.017893726006150246, -0.011242619715631008, 0.038885075598955154, 0.017146781086921692, -0.014620348811149597, 0.013302210718393326, -0.038467664271593094, 0.01696004346013069, -0.03813812881708145, 0.032404229044914246, -0.03418371453881264, 0.011874227784574032, 0.0340079627931118, 0.07588081806898117, -0.0035205271560698748, -0.01792667806148529, -0.0024069752544164658, -0.00918302871286869, -0.02293560281395912, 0.021035287529230118, 0.022408347576856613, 0.0135987913236022, -0.009809144772589207, -0.06647810339927673, -0.0353480726480484, -0.003103116760030389, -0.02752711810171604, 0.027219552546739578, 0.06305094063282013, -0.033326927572488785, 0.06023891270160675, -0.03370039910078049, -0.01855279505252838, -0.029767952859401703, -0.026846079155802727, -0.0008011808386072516, -0.006738981232047081, 0.012742001563310623, 0.009605932049453259, -0.016213098540902138, -0.016652477905154228, 0.014840038493275642, 0.02170534059405327, -0.009743237867951393, -0.044311411678791046, 0.03493066132068634, -0.009007276967167854, -0.027351366356015205, -0.009699299931526184, 0.0174872986972332, 0.027702869847416878, 0.023287106305360794, 0.009501579217612743, -0.04004942998290062, 0.012522311881184578, 0.045300014317035675, 0.009600439108908176, 0.04127969220280647, 0.04319099336862564, -0.02390223741531372, -0.008529452607035637, 0.005110531579703093, 0.015510091558098793, -0.005547164473682642, -0.0011986818863078952, 0.045783329755067825, 0.023155292496085167, 0.018124399706721306, -0.06261155754327774, -0.02475902810692787, 0.005170946009457111, 0.03526019677519798, -0.03591926395893097, -0.0045613073743879795, 0.018267197534441948, 0.01765206642448902, -0.05167101323604584, 0.014334752224385738, 0.03484278544783592, 0.017014967277646065, -0.0011471920879557729, 0.028164217248558998, 0.0024165865033864975, -0.01331319473683834, 0.001398462220095098, 0.004275710787624121, 0.0009343677083961666, -0.04468488320708275, -0.0015076204435899854, -0.01628999039530754, 0.03137168660759926, 0.045300014317035675, -0.045343950390815735, 0.01244542095810175, 0.0048551419749855995, 0.017750926315784454, 0.010973500087857246, -0.08651380240917206, -0.00956199411302805, 0.020167512819170952, 0.002356171840801835, 0.0191239882260561, -0.04270767420530319, 0.021672388538718224, -0.003056432818993926, -0.05654812604188919, -0.046706028282642365, 0.04701359197497368, 0.011127282865345478, -0.01424687635153532, -0.00286695035174489, -0.03176712989807129, 0.027702869847416878, 0.04556364193558693, -0.055010296404361725, -0.019640257582068443, 0.03576548025012016, 0.0001669126795604825, -0.029789920896291733, -0.024517368525266647, 0.030558835715055466, -0.0009288754663430154, 0.002487985650077462, -0.07034464180469513, 0.018981188535690308, 0.03807222470641136, -0.04147741198539734, -0.014993821270763874, -0.05848139524459839, -0.02533022128045559, 0.018673622980713844, -0.010374845936894417, 0.04863929748535156, -0.02210078202188015, -0.0017698750598356128, -0.044443223625421524, 0.04371824860572815, -0.0027749554719775915, 0.022221611812710762, -0.0011101195123046637, 0.050880130380392075, -0.020793629810214043, -0.0027461210265755653, 0.048024166375398636, -0.03036111406981945, -0.007491418160498142, 0.005610325373709202, 0.06647810339927673, -0.04503638669848442, -0.03174515813589096, -0.00014940615801606327, 0.009133598767220974, -0.029548263177275658, -0.0313277505338192, -0.013543869368731976, -0.015070712193846703, 0.013302210718393326, 0.013346148654818535, -0.03552382439374924, -0.0046024988405406475, 0.019047096371650696, -0.06432513892650604, -0.005154469516128302, 0.010023342445492744, 0.015696827322244644, 0.005871206987649202, 0.006848826073110104, 0.07342029362916946, -0.03585335612297058, -0.021947000175714493, 0.008891940116882324, -0.02346285805106163, -0.02482493408024311, -0.020112590864300728, -0.024583276361227036, -0.02258409932255745, -0.028186187148094177, 0.004174103960394859, 0.00942468736320734, -0.0196073055267334, -0.00956199411302805, 0.055932994931936264, -0.007661677896976471, -0.036490458995103836, -0.02675820328295231, 0.01091308519244194, -0.008249348029494286, -0.03457915782928467, -0.04512426257133484, -0.02893313206732273, -0.009155567735433578, 0.011786351911723614, -0.005827269051223993, 0.03501853719353676, -0.015081697143614292, -0.011621584184467793, -0.002805162686854601, -0.005931621417403221, 0.025176437571644783, -0.028691472485661507, 0.02763696201145649, -0.048595357686281204, 0.04560757800936699, 0.020475078374147415, -0.012807908467948437, -0.0253741592168808, 0.018838390707969666, 0.0024975971318781376, -0.015696827322244644, -0.023704517632722855, -0.007886859588325024, 0.012599203735589981, -0.06107373163104057, 0.05347247049212456, -0.002563504036515951, 0.00281752017326653, 0.029811890795826912, -0.01585061103105545, 0.005799807608127594, 0.03826994448900223, -0.03306329995393753, -0.005662501789629459, 0.012049979530274868, -0.06432513892650604, -0.05254977196455002, -0.017333516851067543, -0.04180694743990898, -0.04358643293380737, 0.02304544858634472, -0.04907867684960365, -0.037940409034490585, 0.0008011808386072516, 0.009474118240177631, -0.035611700266599655, -0.009913497604429722, -0.022463271394371986, 0.004448716063052416, -0.03312920406460762, -0.07614444941282272, -0.007101469207555056, 0.009726760908961296, 0.005942605901509523, 0.008875463157892227, -0.008359192870557308, 0.01750926859676838, -0.02083756774663925, -0.01336811762303114, -0.02180420234799385, 0.04176301136612892, 0.028427844867110252, 0.054526980966329575, 0.048155978322029114, 0.04459700733423233, 0.012456404976546764, 0.03831388056278229, 0.007573802024126053, 0.024583276361227036, -0.027329396456480026, 0.02625291794538498, -0.04288342595100403, -0.020606892183423042, 0.016026362776756287, -0.034271590411663055, -0.05830564349889755, -0.04736509546637535, -0.04004942998290062, 0.012346560135483742, -0.03440340608358383, 0.012214746326208115, 0.046222709119319916, -0.02078264392912388, 0.05057256668806076, 0.02090347371995449, -0.0378745011985302, -0.04413565993309021, 0.04404778406023979, -0.029108883813023567, -0.0320746935904026, -0.026472607627511024, -0.020409172400832176, -0.08097761869430542, -0.029702045023441315, 0.025967320427298546, 0.009402718394994736, -0.0005983111332170665, -0.012291638180613518, 0.007332143373787403, -0.008661266416311264, 0.04461897537112236, -0.008935878053307533, 0.06059041619300842, -0.0024344364646822214, -0.031964849680662155, 0.028735410422086716, 0.015488122589886189, 0.023111354559659958, -0.02849375270307064, 0.028186187148094177, -0.0038500616792589426, -0.019596319645643234, -0.005181930493563414, 0.038357820361852646, -0.0037045173812657595, -0.008419607765972614, -0.04819991812109947, 0.04371824860572815, 0.007996704429388046, 0.014093093574047089, -0.03308526799082756, 0.0045613073743879795, -0.042026638984680176, 0.021925030276179314, -0.0645887702703476, -0.05290127545595169, -0.014510503970086575, -0.0024550321977585554, -0.0451681986451149, -0.029130851849913597, 0.07878072559833527, 0.02445146255195141, 0.046749964356422424, 0.0160373467952013, 0.004294933285564184, 0.07082795351743698, 0.0001826170482672751, 0.005530687980353832, -0.0001903405209304765, 0.034710969775915146, -0.0033694906160235405, -0.002647260669618845, -0.0418948233127594, -0.03350267931818962, 0.008875463157892227, 0.010078264400362968, -0.010748318396508694, -0.020475078374147415, -0.06291912496089935, 0.005044624675065279, -0.006843333598226309, 0.005810792092233896, -0.010006865486502647, 0.018629685044288635, -0.04233420267701149, 0.03732527792453766, -0.022452285513281822, 0.038379788398742676, 0.01601537875831127, 0.03370039910078049, 0.012038994580507278, 0.0014540711417794228, 0.020244404673576355, -0.014883976429700851, -0.005552656948566437, -0.016806261613965034, -0.038841135799884796, 0.012280653230845928, 0.007370588835328817, -0.014894960448145866, -0.03233832120895386, 0.03640258312225342, 0.01308252103626728, -0.025571878999471664, 0.022737883031368256, 0.02388026937842369, 0.03348070755600929, -0.003808869980275631, -0.07741864770650864, 0.0062996018677949905, -0.0165206640958786, 0.007134422659873962, 0.04916655272245407, 0.010594535619020462, 0.013862418942153454, -0.04009336978197098, 0.05158313736319542, -0.045783329755067825, -0.02302347868680954, 0.00770561583340168, 0.010188109241425991, -0.018212275579571724, 0.0002637992729432881, -0.003995606210082769, 0.04059865325689316, 0.0320746935904026, 0.014016201719641685, 0.0471014678478241, -0.01580667309463024, -0.015312370844185352, -0.029987642541527748, 0.00772209232673049, -0.03387615084648132, 0.004693121183663607, -0.008090072311460972, -0.002641768427565694, -0.017663050442934036, 0.03260194882750511, 0.042971301823854446, 0.01698201335966587, -0.022111767902970314, -0.01972813345491886, -0.005489496048539877, -0.030273238196969032, -0.002387752290815115, 0.023221200332045555, -0.0322943851351738, 0.03853357210755348, 0.01128106564283371, -0.021529588848352432, 0.009139090776443481, -0.07346422970294952, 0.02256213128566742, -0.009754221886396408, 0.009979404509067535, 0.030690649524331093, -0.008436083793640137, 0.008842510171234608, -0.01035836897790432, 0.011066867969930172, -0.03903885930776596, -0.00610188115388155, -0.04310311749577522, -0.003904984099790454, -0.021276947110891342, 0.021837154403328896, -0.02899903804063797, 0.03301936015486717, 0.014191953465342522, 0.037479061633348465, -0.040708500891923904, -0.005105039104819298, -0.00043628999264910817, 0.01981600932776928, -6.0972470237175e-05, 0.020661816000938416, -0.043454620987176895, -0.009600439108908176, 0.027439242228865623, -0.008562405593693256, -0.017113827168941498, -0.019596319645643234, 0.01291775330901146, -0.03906082734465599, 0.046662088483572006, 0.00020321295596659184, 0.03758890554308891, -0.034689001739025116, -0.0018618700560182333, 0.021606480702757835, 0.017750926315784454, 0.013730605132877827, -0.020584924146533012, -0.027395304292440414, -0.045827269554138184, -0.03585335612297058, -0.00610188115388155, -0.03598517179489136, 0.008287793956696987, -0.017575174570083618, 0.038006316870450974, -0.034315530210733414, 0.042993273586034775, 0.01681724563241005, 0.04040093347430229, -0.002689825603738427, 0.04224632680416107, 0.027922559529542923, 0.06111767143011093, -0.04316902533173561, -0.005401620175689459, -0.04193876311182976, 0.004086228087544441, -0.03451324999332428, 0.0031415624544024467, 0.014411643147468567, 0.006892764009535313, -0.010929562151432037, 0.03552382439374924, -0.004028559662401676, -0.012335576117038727, -0.015949470922350883, 0.026560483500361443, 0.010946039110422134, -0.05303309112787247, -0.030712617561221123, 0.043872032314538956, 0.01331319473683834, 0.0701688900589943, -0.002255938481539488, 0.028867224231362343, -0.015389262698590755, -0.04472881928086281, 0.002305368660017848, 0.004099958576261997, -0.008112041279673576, 0.01376355905085802, 0.0003085953649133444, -0.025110531598329544, -0.05241796001791954, -0.017058905214071274, -0.017410408705472946, 0.019848963245749474, -0.03084443137049675, 0.028208155184984207, 0.0013909103581681848, -0.02579156868159771, 0.010858163237571716, 0.043959908187389374, 0.014642317779362202, -0.008161472156643867, 0.029987642541527748, -0.052681587636470795, 0.03681999072432518, 0.019761087372899055, 0.019069064408540726, -0.002317726146429777, -0.010451736859977245, 0.003731978591531515, 0.00943567231297493, -0.0043059177696704865, -0.0126321567222476, 0.03262391686439514, -0.016004392877221107, 0.011033914983272552, -0.024034051224589348, -0.028625566512346268, 0.016971029341220856, 0.019783057272434235, -0.044355347752571106, -0.024297678843140602, 0.02350679598748684, -0.00979266781359911, -0.021518604829907417, -0.020134560763835907, -0.007414526771754026, -0.009529040195047855, 0.022463271394371986, 0.0004637512029148638, 0.06432513892650604, -0.013104490004479885, 0.0058382535353302956, -0.030712617561221123, -0.05307702720165253, 0.011544693261384964, -0.009583963081240654, -0.005739393178373575, 0.026406699791550636, 0.03174515813589096, 0.015455169603228569, 0.017201703041791916, -0.005137992557138205, 0.005321982782334089, 0.004580529872328043, 0.006288617383688688, 0.03558972850441933, 0.019321708008646965, -0.006920224986970425, 0.046662088483572006, 0.0002893725177273154, -0.022045860067009926, -0.0031690236646682024, -0.005201153457164764, 0.042048607021570206, -0.01540024671703577, -0.0067170122638344765, -0.012423451989889145, 0.03370039910078049, -0.03275573253631592, -0.0063160783611238, 0.0021570781245827675, -0.01631195843219757, -0.04538789018988609, 0.005596594884991646, 0.011852258816361427, -0.0018330358434468508, 0.010506659746170044, 0.032426197081804276, -0.006667581852525473, -0.040181245654821396, -0.00044075242476537824, 0.036995742470026016, 0.011676507070660591, 0.04934230446815491, 0.02249622344970703, -0.02581353858113289, -0.001673760823905468, 0.006310586351901293, -0.021474666893482208, -0.05571330338716507, -0.014543456956744194, 0.03308526799082756, 0.024077989161014557, 0.01107235997915268, -0.0032871069852262735, 0.009155567735433578, -0.0015556776197627187, 0.03301936015486717, -0.03710559010505676, 0.016905121505260468, -0.05760263651609421, 0.0014128793263807893, 0.017223671078681946, 0.002796924440190196, 0.02675820328295231, 0.03756693750619888, -0.06542358547449112, -0.03394205868244171, -0.010896608233451843, -0.029636139050126076, 0.0031662776600569487, -0.019211864098906517, 0.0010950157884508371, 0.009529040195047855, 0.002375394804403186, -0.053120967000722885, 0.000284223526250571, -0.020683784037828445, -0.02168337255716324, -0.028230125084519386, -0.044904571026563644, -0.040203213691711426, -0.022210627794265747, 0.026890017092227936, -0.01884937472641468, -0.03137168660759926, -0.04415762796998024, 0.015004805289208889, 0.026494575664401054, -0.04015927389264107, 0.014653301797807217, -0.011665522120893002, 0.008161472156643867, -0.02085953578352928, 0.008858987130224705, 0.0011149251367896795, -0.027768775820732117, -0.0009384868899360299, -0.009929973632097244, -0.0013950294815003872, 0.010210078209638596, 0.01601537875831127, 0.011588631197810173, 0.04776053875684738, 0.017223671078681946, -0.042158450931310654, 0.016509680077433586, 0.03677605465054512, 0.038006316870450974, -0.012214746326208115, 0.005429081618785858, -0.018519841134548187, 0.011456817388534546, -0.004800219554454088, 0.004577783867716789, -0.02625291794538498, -0.002740628784522414, -0.022781820967793465, -0.01972813345491886, 0.008150487206876278, -0.014543456956744194, 0.0689825639128685, -0.027461210265755653, 0.013401070609688759, 0.02078264392912388, -0.010512151755392551, 0.03343677148222923, 0.01403817068785429, 0.0034134285524487495, 0.0005972813232801855, 0.0131154740229249, -0.004429493565112352, 0.002198270056396723, 0.01146780140697956, -0.00967733096331358, -0.029240697622299194, 0.01152272429317236, -0.0196073055267334, 0.001838528085500002, 0.04220239073038101, -0.02228751964867115, 0.038841135799884796, -0.02355073392391205, 0.019783057272434235, -0.031195934861898422, 0.033304955810308456, 0.028230125084519386, -0.031108058989048004, -0.037061650305986404, -0.037039682269096375, -0.007447480224072933, 0.048112042248249054, 0.0032102155964821577, 0.03638061136007309, -0.010446244850754738, 0.001945626805536449, 0.011632569134235382, 0.022803789004683495, -0.01753123663365841, -0.040269121527671814, -0.02210078202188015, 0.014818069525063038, -0.021463682875037193, -0.011077852919697762, -0.03504050523042679, -0.032887544482946396, -0.0034216667991131544, -0.012104901485145092, 0.002356171840801835, -0.010089249350130558, 0.01693807542324066, -0.0004434985457919538, -0.02385829947888851, 0.009710283949971199, -0.013697652146220207, -0.03620485961437225, -0.004852395970374346, -0.004833173006772995, -0.004146642982959747, 0.0013346148189157248, 0.054526980966329575, 0.005678978282958269, -0.025000685825943947, 0.05105588212609291, -0.017179733142256737, 0.016553618013858795, 0.007002608850598335, -0.005964574869722128, -0.02300151064991951, -0.007667169906198978, -0.009858574718236923, 0.022869696840643883, 0.05553755164146423, -0.03231635317206383, -0.00610188115388155, -0.0016778799472376704, -0.030668679624795914, -0.00990800466388464, -0.05022106319665909, 0.022847726941108704, -0.01908005028963089, -0.008672250434756279, 0.014213922433555126, -0.0590086504817009, -0.002802416682243347, 0.0008155979448929429, 0.005915144924074411, 0.02155155874788761, 0.002614307217299938, 0.025220375508069992, 0.010028834454715252, -0.0039187148213386536, 0.012731017544865608, 0.005343951750546694, -0.03181106597185135, -0.017816834151744843, 0.01776191219687462, -0.014598379842936993, 0.022045860067009926, -0.009754221886396408, -0.012829877436161041, 0.01979404129087925, 0.015839627012610435, -0.015114650130271912, 0.006821364630013704, -0.0074749416671693325, 0.003940683789551258, -0.016949059441685677, -0.01937662996351719, -0.034227654337882996, -0.0107153644785285, -0.03352464735507965, -0.00894137006253004, -0.01891528256237507, -0.034645065665245056, 0.02616504207253456, 0.00396814476698637, -0.015817657113075256, -0.022419333457946777, -0.027285458520054817, -0.0011485652066767216, -0.005096800625324249, 0.009232459589838982, 0.01312645897269249, 0.006129342131316662, 0.022759851068258286, 0.004391047637909651, -0.024253740906715393, -0.011149251833558083, -0.0003408622869756073, 0.026560483500361443, 0.02436358667910099, -0.03965399041771889, -0.00814499519765377, 0.003188246628269553, -0.026143072172999382, -0.05791020020842552, 0.0004592887416947633, 0.01887134462594986, -0.03809419274330139, -0.0468817800283432, 0.012082932516932487, -0.007326650898903608, 0.012796924449503422, -0.026560483500361443, 0.03730330988764763, 0.0468817800283432, 0.01312645897269249, -0.016114238649606705, -0.02115611732006073, -0.0005423589027486742, 0.000761362083721906, -0.002614307217299938, -0.00838665384799242, 0.055405739694833755, 0.008776603266596794, -0.048024166375398636, -0.004956748802214861, 0.016279006376862526, 0.013609776273369789, -0.02025538869202137, -0.03203075751662254, 0.020804613828659058, -0.014071124605834484, -0.018860360607504845, -0.019343677908182144, 0.035194288939237595, -0.000817657564766705, -0.0009275024058297276, 0.0038061237428337336, 0.004704105667769909, 0.005170946009457111, 0.03275573253631592, 0.018794452771544456, 0.03123987279832363, 0.00017377798212692142, -0.013049567118287086, 0.0019113002344965935, -0.02475902810692787, -0.04220239073038101, 0.009583963081240654, -0.006090896669775248, 0.04929836466908455, -0.0004932719748467207, -0.016828229650855064, -0.00871069636195898, -0.012577234767377377, 0.0234408900141716, 0.013093505054712296, 0.01239049807190895, -0.018267197534441948, 0.0372813418507576, 0.002212000545114279, -0.0032816147431731224, -0.008210902102291584, -0.015784703195095062, -0.006876287050545216, 0.010050803422927856, 0.016322944313287735, -0.021419744938611984, 0.010517643764615059, 0.025088561698794365, -0.011731429025530815, 0.011094328947365284, -0.015817657113075256, -0.0006405327585525811, 0.015839627012610435, 0.010940546169877052, -0.007656185422092676, 0.001649045734666288, 0.005937113892287016, 0.01843196526169777, 0.007623231969773769, -0.015751751139760017, -0.03279966861009598, -0.016070300713181496, -0.009776190854609013, -0.034315530210733414, 0.02847178280353546, 0.01776191219687462, -0.012082932516932487, 0.007919813506305218, -0.012994645163416862, 0.010286970064043999, 0.05386791005730629, -0.004607991315424442, 0.0003261018719058484, 0.025989290326833725, -0.03348070755600929, 0.013148427940905094, 0.04468488320708275, -0.008968831971287727, 0.021002333611249924, -0.04376218467950821, 0.05325277894735336, 0.0008643416222184896, 0.014807084575295448, -0.022825758904218674, -0.020793629810214043, -0.002475628163665533, -0.0043223947286605835, -0.030932307243347168, -0.061469174921512604, -0.03315117582678795, -0.0317012220621109, 0.01962927356362343, 0.03088836930692196, 0.03688589856028557, -0.0392146110534668, 0.01308252103626728, -0.020453110337257385, 0.011368941515684128, 0.00234793359413743, 0.000576342165004462, -0.00999038852751255, 0.031042153015732765, 0.05646025016903877, -0.017036935314536095, 0.02226554974913597, 0.02937251143157482, -0.0011828916613012552, 0.037984348833560944, 0.03407387062907219, -0.008079088293015957, 0.03736921772360802, 0.0036413564812391996, 0.023638609796762466, 0.0171907190233469, -0.007194837089627981, 0.04044487327337265, 0.024099959060549736, 0.0068323491141200066, -0.0016188384033739567, 0.02759302407503128, 0.013675683178007603, 0.032448165118694305, -0.018772484734654427, -0.023726485669612885, -0.031130028888583183, 0.005591102410107851, 0.03736921772360802, -0.021309899166226387, -0.015554029494524002, 0.03675408661365509, -0.00459700683131814, -0.05285733938217163, 0.014916929416358471, 0.04095015674829483, 0.01962927356362343, 0.048155978322029114, -0.00544006610289216, -0.006480845622718334, 0.023616641759872437, -0.041169848293066025, 0.044838666915893555, -0.021013319492340088, 0.0012034876272082329, 0.009474118240177631, 0.0018618700560182333, -0.0008499244577251375, 0.017564190551638603, 0.018442949280142784, 0.019244816154241562, 0.03038308396935463, 0.0343814380466938, -0.009051214903593063, 0.024012083187699318, 0.014982836320996284, 0.03451324999332428, -0.01834408938884735, 0.013972263783216476, 0.015246463939547539, 0.002752986503764987, 0.018882328644394875, 0.020453110337257385, 0.03914870321750641, -0.04178497940301895, 0.04007139801979065, -0.018541809171438217, -0.006184264551848173, -0.0067993956618011, 0.004745297133922577, 0.0003345118893776089, 0.017311546951532364, -0.027483180165290833, 0.04723328351974487, 0.007826444692909718, 0.023748455569148064, 0.0166305098682642, -0.011242619715631008, -0.005651517305523157, -0.005538926459848881, 0.010336400009691715, 0.002121378667652607, -0.03409583866596222, 0.03644651919603348, -0.030976245179772377, 0.02948235534131527, 0.0014375944156199694, 0.02662638947367668, 0.042531922459602356, 0.03222847729921341, 0.021167101338505745, -0.02717561461031437, -0.005269806366413832, 0.008655773475766182, -0.004709597676992416, 0.015521076507866383, 0.003215707838535309, 0.028405876830220222, -0.013730605132877827, -0.0038637924008071423, 0.011588631197810173, -0.026582451537251472, 0.007485926151275635, 0.04503638669848442, -0.035150349140167236, 0.022485239431262016, 0.03822600468993187, -0.050792254507541656, -0.009940958581864834, -0.02078264392912388, -0.0009446656331419945, 0.005379651207476854, 0.048463545739650726, 0.07399148494005203, 0.016927091404795647, -0.019508443772792816, 0.009210490621626377, 0.011368941515684128, 0.03508444502949715, -0.007875875569880009, 0.006035974249243736, -0.007392557803541422, 0.01696004346013069, 0.025044623762369156, -0.007733076810836792, 0.0330413281917572, -0.004962240811437368, -0.008738157339394093, 0.027065768837928772, 0.03413977846503258, -0.024671152234077454, -0.012006041593849659, -0.0534285306930542, 0.020826581865549088, -0.0353480726480484, 0.005418097134679556, -0.013884387910366058, 0.018234243616461754, -0.007304681930691004, 0.002772209234535694, 0.0035836880560964346, 0.056811753660440445, -0.028405876830220222, -0.008793080225586891, -0.010193601250648499, 0.017915694043040276, -0.016509680077433586, -0.021211039274930954, 0.013939310796558857, -0.015081697143614292, -0.005283536855131388, -0.036578334867954254, -0.0063435398042202, -0.016443772241473198, -0.013280241750180721, -0.008013181388378143, -0.02048606425523758, 0.0008183440659195185, 0.021529588848352432, 0.018651654943823814, -0.010424275882542133, -0.0032321845646947622, 0.03319511190056801, 0.021727310493588448, 0.011357956565916538, -0.019222848117351532, 0.027285458520054817, -0.02486887201666832, 0.02491280995309353, 0.02809831127524376, 0.011401894502341747, -0.01725662499666214, -0.023353014141321182, -0.0184539332985878, -0.03165728226304054, -0.003177262144163251, -0.03405190259218216, -0.025132499635219574, -0.04793629050254822, -0.03029520809650421, -0.03042702190577984, 0.008024165406823158, 0.013488946482539177, -0.002703556325286627, -0.02182617038488388, 0.007409034762531519, 0.02807634137570858, -0.0181573536247015, 0.009995880536735058, 0.0043361252173781395, -0.0024220787454396486, 0.03315117582678795, 0.027395304292440414, -0.024539338424801826, 0.026955924928188324, 0.0046052453108131886, 0.017014967277646065, 0.020354250445961952, -0.01983797922730446, 0.002812027931213379, 0.007782507222145796, 0.012752986513078213, 0.038929011672735214, -0.03956611454486847, -0.02528628334403038, -0.013181380927562714, 0.010083756409585476, -0.018629685044288635, 0.04749691113829613, 0.00020132500503677875, -0.0478484146296978, 0.0013778662541881204, 0.015389262698590755, 0.008172456175088882, 0.0032761225011199713, 0.024956747889518738, 0.0008567897602915764, 0.020244404673576355, 0.024715090170502663, 0.006371000781655312, 0.00990800466388464, -0.047628723084926605, -0.05667993798851967, -0.0018179321195930243, -0.0005859535885974765, 0.027790745720267296, -0.0014252368127927184, -0.02662638947367668, 0.0015803927090018988, 0.006206233520060778, 0.022386379539966583, 0.026955924928188324, -0.0006243992829695344, 0.002085678977891803, -0.007194837089627981, 0.013335163705050945, 2.193678710682434e-06, 0.04938624054193497, 0.02994370460510254, -0.04272964596748352, 0.020057668909430504, -0.008534944616258144, -0.018025539815425873, 0.006420431192964315, 0.038775231689214706, 0.025659754872322083, -0.006195249035954475, -0.01771797426044941, 0.0244075246155262, 0.008210902102291584, 0.0015941233141347766, -0.023704517632722855, -0.005640532821416855, 0.0020939174573868513, -0.016718385741114616, 0.004997940268367529, -0.014829053543508053, 0.004160373471677303, -0.05764657258987427, 0.013653714209794998, -0.005505973007529974, 0.005250583402812481, -0.024165865033864975, -0.012742001563310623, -0.012148839421570301, -0.028625566512346268, 0.03895098343491554, 0.002710421569645405, 0.0011355211026966572, -0.0234408900141716, -0.016883153468370438, 0.012939722277224064, -0.013038583099842072, -0.04609089717268944, -0.00827131699770689, 0.007079500239342451, 0.01196210365742445, -0.0043663326650857925, -0.025484003126621246, -0.0010318550048395991, 0.004316902253776789, -0.0033832211047410965, 0.02985582873225212, -0.026802141219377518, -0.057339008897542953, 0.03268982470035553, -0.03484278544783592, 0.00655773701146245, 0.021859124302864075, -0.01723465695977211, -0.009177536703646183, 0.011231635697185993, 0.023243168368935585, -0.008419607765972614, 0.006991624366492033, -0.044333379715681076, -0.014938898384571075, 0.011138266883790493, -8.345633432327304e-06, -0.029767952859401703, -0.012489358894526958, 0.017575174570083618, -0.00563504034653306, 0.0006240560323931277, -0.014664286747574806, -0.005604833364486694, -0.0038857613690197468, 0.004728820640593767, 0.015784703195095062, -0.0052450913935899734, -0.0029163805302232504, 0.03723740205168724, 0.02388026937842369, -0.016872167587280273, -0.005500480532646179, 0.012906769290566444, 0.0027886859606951475, -0.039763834327459335, 0.010803240351378918, 0.020519016310572624, 0.03714952617883682, -0.0027928052004426718, -0.011808320879936218, -0.004248249344527721, 0.02708773873746395, -0.00827131699770689, 0.027307428419589996, 0.031173966825008392, -0.005492242053151131, 0.04316902533173561, -0.009984896518290043, 0.01834408938884735, 0.007277220953255892, -0.03189894184470177, -0.03807222470641136, -0.011423863470554352, 0.00655773701146245, 0.0184539332985878, -0.02708773873746395, -0.011335987597703934, 0.02067280001938343, -0.015971440821886063, 0.03963201865553856, -0.01880543678998947, -0.007963751442730427, 0.018245229497551918, -0.008123026229441166, -0.04319099336862564, -0.019761087372899055, -0.0076836468651890755, 0.002109020948410034, 0.00327063025906682, 0.0013201977126300335, 0.031064121052622795, -0.03159137815237045, -0.0033200604375451803, 0.019398599863052368, 0.016048330813646317, -0.007189345080405474, 0.04705753177404404, -0.0026060689706355333, -0.013280241750180721, 0.02390223741531372, -0.004877110943198204, 0.01291775330901146, -0.0018920773873105645, 0.005610325373709202, -0.009446656331419945, 0.0028779348358511925, 0.01019909419119358, 0.0063160783611238, -0.0053329672664403915, -0.008617328479886055, -0.02161746472120285, 0.004948510322719812, 0.004586022347211838, 0.004808458033949137, 0.025176437571644783, 0.0030015103984624147, 0.009133598767220974, -0.046310584992170334, -0.014829053543508053, -0.019420567899942398, 0.0035040504299104214, -0.010045311413705349, -0.026143072172999382, 0.007035562302917242, -0.0343814380466938, 0.0271975826472044, 0.048463545739650726, -0.0026664836332201958, -0.005058355163782835, 0.01047370582818985, -0.014301798306405544, 0.012379514053463936, 0.011654538102447987, -0.011357956565916538, -0.015070712193846703, 0.02085953578352928, 0.026450637727975845, 0.013543869368731976, 0.008364684879779816, 0.01267609465867281, 0.01753123663365841, 0.04732115939259529, -0.0209474116563797, -0.021035287529230118, -0.01243443600833416, -0.012654125690460205, -0.01151173934340477, 0.0239242073148489, -0.01820129156112671, 0.0019552381709218025, 0.017344500869512558, 0.042180418968200684, -0.04692571610212326, -0.006475353613495827, -0.0160373467952013, 0.03903885930776596, -0.031503502279520035, 0.0047974735498428345, -0.017388438805937767, 0.0013064671074971557, 0.009858574718236923, 0.014169984497129917, 0.0016723877051845193, -0.0029191267676651478, -0.030558835715055466, -0.0076836468651890755, 0.009594947099685669, -0.001692983671091497, -0.020705753937363625, -0.003688040655106306, 0.007524371612817049, 0.047628723084926605, 0.012379514053463936, -0.020683784037828445, -0.031569406390190125, -0.005047370679676533, -0.01264314167201519, -0.01601537875831127, -0.04754084721207619, -0.02053000219166279, 0.026890017092227936, 0.03161334618926048, -0.0015680351061746478, 0.010023342445492744, 0.02899903804063797, 0.015015790238976479, -0.0017506522126495838, 0.046749964356422424, 0.008990800939500332, -0.05061650276184082, 0.018728546798229218, 0.0016202114056795835, -0.03666621074080467, -0.02572566270828247, -0.02189207822084427, -0.008551421575248241, 0.013247287832200527, -0.0058382535353302956, 0.00010555402695899829, 0.03449128195643425, 0.004624467808753252, -0.04453109949827194, 0.03756693750619888, -0.005695455241948366, -0.017311546951532364, 0.02176026441156864, 0.0011609226930886507, -0.006475353613495827, -0.033788274973630905, -0.028405876830220222, 0.026582451537251472, -0.004047782626003027, 0.003600164782255888, -0.030580803751945496, -0.015422215685248375, -0.010193601250648499, -0.004893587902188301, 0.011390910483896732, 0.0035067966673523188, -0.01384044997394085, -0.011401894502341747, -0.036644238978624344, 0.010561581701040268, -0.03036111406981945, 0.006250171456485987, 0.002179047092795372, -0.02004668489098549, 0.023792393505573273, 0.03255801275372505, -0.008776603266596794, -0.02662638947367668, -0.000513181381393224, 0.008337223902344704, -0.051714953035116196, 0.015235479921102524, -0.042092543095350266, -0.009820128791034222, -0.004638198763132095, 0.026494575664401054, 0.01176438294351101, -0.04279555007815361, -0.005816284567117691, -0.044003844261169434, -0.009166552685201168, -0.04013730585575104, 0.022320471704006195, 0.010495674796402454, -0.0021557051222771406, -0.005624055862426758, 0.0009254427859559655, -0.01496086735278368, 0.010660442523658276, -0.025967320427298546, -0.020727721974253654, 0.015575998462736607, 0.03710559010505676, 0.024693120270967484, -0.004138404503464699, 0.016663463786244392, 0.024495400488376617, 0.0253741592168808, 0.011786351911723614, 0.0012659617932513356, -0.0015556776197627187, 0.0317012220621109, -0.03029520809650421, -0.01935466192662716, 0.008265824988484383, 0.0036715639289468527, 0.010182617232203484, -0.02431964874267578, 0.010160648263990879, 0.009336811490356922, -0.014697239734232426, 0.04453109949827194, 0.04560757800936699, -0.008046134375035763, -0.012796924449503422, 0.013005629181861877, 0.004500892478972673, -0.013445008546113968, 0.038775231689214706, 0.018497871235013008, -0.0032871069852262735, -0.028757380321621895, 0.03971989452838898, 0.011555677279829979, -0.027461210265755653, -0.04723328351974487, 0.029767952859401703, -0.007694631349295378, 0.012533296830952168, 0.03183303400874138, 0.02085953578352928, -0.008518467657268047, 0.01649869605898857, -0.004248249344527721, 0.007008100859820843, 0.024561306461691856, 0.020705753937363625, 0.004316902253776789, -0.024649182334542274, -0.013972263783216476, -0.01706988923251629, 0.03820403665304184, -0.012928738258779049, 0.012851846404373646, -0.017564190551638603, 0.02390223741531372, -0.011863242834806442, -0.028779348358511925, -0.01116572879254818, -0.0050061787478625774, -0.023682547733187675, 0.008035150356590748, -0.007826444692909718, -0.0159604549407959, -0.01931072399020195, 0.02388026937842369, 0.006349031813442707, 0.02568172477185726, -0.013862418942153454, -0.034293562173843384, 0.014938898384571075, 0.007343127857893705, 0.02348482795059681, 0.03299739211797714, -0.004833173006772995, 0.03622683137655258, 0.004165865946561098, 0.012214746326208115, -0.049781683832407, 0.008864479139447212, -0.03407387062907219, 0.0355677604675293, 0.011248111724853516, -0.01801455393433571, 0.007277220953255892, 0.0378745011985302, -0.03952217474579811, 0.02136482298374176, 0.0038555539213120937, 0.021013319492340088, 0.009479610249400139, -0.019409583881497383, -0.002754359506070614, -0.0005564328166656196, -0.0488150492310524, 0.033810243010520935, -0.019091034308075905, -0.007524371612817049, -0.018124399706721306, -0.007974735461175442, 0.012796924449503422, 0.0181573536247015, 0.00413016602396965, -0.007760538253933191, -0.009243443608283997, 0.030141424387693405, -0.021496636793017387, -0.0016408073715865612, 0.0033777288626879454, 0.029174789786338806], [0.046398818492889404, 0.014753022231161594, 0.039934515953063965, 0.009775284677743912, -0.021904295310378075, 0.027096008881926537, -0.005487335845828056, 0.03155570104718208, -0.011329419910907745, 0.04865118861198425, -0.03324497863650322, 0.011290003545582294, 0.010034306906163692, 0.03468649461865425, -0.018345551565289497, -0.012556961737573147, -0.009274132549762726, 0.008626576513051987, -0.0031139012426137924, 0.0057773282751441, 0.0323215052485466, 0.030812418088316917, -0.02223088964819908, -0.03955161198973656, -0.028830332681536674, 0.02957361564040184, -0.01564270816743374, 0.03374049812555313, 0.047299765050411224, -0.04383111372590065, 0.09167145192623138, -0.028492476791143417, 0.03937142342329025, -0.03056465834379196, -0.0005993415252305567, -0.009386750869452953, 0.015113401226699352, -0.00805222149938345, 0.010923993773758411, -0.017895078286528587, 0.009803439490497112, 0.005236759781837463, 0.0016301525756716728, 0.021115966141223907, -0.022320983931422234, 0.09045516699552536, -0.010422840714454651, -0.054237063974142075, -0.03288459777832031, 0.020406469702720642, -0.008384446613490582, 0.0738777294754982, 0.0072469995357096195, -0.023920167237520218, 0.017275676131248474, 0.034911733120679855, 0.007877662777900696, 0.01522601954638958, 0.004316103644669056, -0.01940416544675827, 0.013581790030002594, 0.005805483087897301, 0.00857589766383171, 0.03772719204425812, -0.005636555142700672, 0.0601833201944828, 0.00739340391010046, 0.0370965301990509, -0.03871823474764824, -0.01708422414958477, 0.013728193938732147, 0.028289765119552612, -0.028897903859615326, -0.034438733011484146, 0.014764283783733845, 0.031668320298194885, -0.03315488249063492, -0.0023649882059544325, 0.014831854961812496, -0.029686233028769493, -0.0462636761367321, 0.01622832380235195, 0.0015062722377479076, 0.035294633358716965, -0.020541612058877945, -0.018210409209132195, -0.008283089846372604, -0.035339683294296265, 0.023176884278655052, 0.008649099618196487, 0.008733564056456089, -0.019708234816789627, -0.017410818487405777, 0.013773241080343723, 0.01938164234161377, 0.027050960808992386, 0.0023297949228435755, -0.04108322411775589, -0.023672405630350113, 0.05437220633029938, -0.0009741499088704586, -0.004682113416492939, -0.03736681491136551, 0.01898747682571411, 0.0231093131005764, -0.12406052649021149, -0.04563301056623459, 0.06387721002101898, 0.020124923437833786, -0.0043667820282280445, 0.012365509755909443, -0.04666910320520401, 0.0254517775028944, 0.04973232373595238, -0.036736149340867996, -0.006447408348321915, -0.001502049039117992, -0.018773501738905907, 0.001014270237646997, -0.01612696796655655, 0.009341703727841377, -0.024167926982045174, -0.002139751333743334, -0.08095017075538635, 0.021093443036079407, 0.03630819916725159, -0.05644438788294792, 0.001084656803868711, -0.04115079715847969, -0.05509296432137489, 0.027884338051080704, -0.02211827039718628, 0.030316896736621857, -0.02495625615119934, 0.02039520815014839, -0.015912992879748344, 0.030294373631477356, 0.014460213482379913, 0.03457387536764145, -0.03090251237154007, 0.04196164757013321, 0.0018638359615579247, 0.016295894980430603, 0.0038994152564555407, -0.030632229521870613, 0.025947298854589462, 0.00601382739841938, 0.04518253728747368, -0.03752448037266731, 0.008986955508589745, 0.022906599566340446, 0.0051269568502902985, -0.0417138896882534, -0.007601747754961252, -0.015012044459581375, 0.0012683657696470618, 0.012264152988791466, 0.008446387015283108, -0.01703917793929577, 0.01935911737382412, 0.00943742971867323, -0.0415336973965168, 0.0021664982195943594, -0.012579484842717648, 0.019764544442296028, 0.003981063608080149, -0.019077571108937263, 0.07040908187627792, -0.036285676062107086, -0.0184581708163023, 0.0076242717914283276, 0.018784763291478157, -0.01197134517133236, -0.014471475966274738, -0.058021046221256256, -0.023266980424523354, 0.020541612058877945, 0.008936276659369469, 0.01245560497045517, -0.054237063974142075, 0.021003348752856255, 0.056984953582286835, -0.017759935930371284, -0.02355978824198246, 0.03815514221787453, 0.014189929701387882, -0.02315436117351055, -0.04293016716837883, -0.0063010044395923615, -0.022275937721133232, 0.0231093131005764, 0.028447430580854416, -0.023221932351589203, 0.020609183236956596, 0.013075006194412708, -0.022951647639274597, -0.02270388789474964, 0.004955213516950607, -0.011081659235060215, -4.1462080844212323e-05, 0.03520454093813896, -0.056579530239105225, 0.03340264409780502, 0.030316896736621857, -0.012061440385878086, 0.012906079180538654, 0.015924254432320595, 0.01135194394737482, -0.004161253105849028, -0.006576919928193092, 0.008463279344141483, 0.007297677919268608, -0.042659882456064224, 0.033425167202949524, 0.0010389055823907256, -0.028019480407238007, 0.05648943409323692, -0.018154099583625793, 0.03518201410770416, 0.020496563985943794, -0.040880512446165085, -0.024167926982045174, 0.013029959052801132, -0.03639829531311989, -0.032546743750572205, -0.03126289322972298, -0.02315436117351055, -0.04662405326962471, -0.019077571108937263, -0.07500391453504562, -0.05315592512488365, 0.0035108814481645823, 0.03797495365142822, -0.03838038071990013, -0.004127467516809702, 0.007900186814367771, -0.017455866560339928, -0.01991094835102558, -0.03263683617115021, 0.024776067584753036, -0.019708234816789627, -0.007939603179693222, -0.008699778467416763, 0.0014992336509749293, 0.006723323836922646, -0.02443821169435978, -0.0008129646885208786, -0.032524220645427704, 0.02536168321967125, 0.017703626304864883, 0.024370640516281128, 0.04211931303143501, 0.02916818857192993, -0.0057998523116111755, 0.023402120918035507, 0.011723584495484829, -0.014336333610117435, 0.0027521143201738596, 0.023447168990969658, -0.035767633467912674, -0.005355008877813816, -0.025631967931985855, -0.008170471526682377, -0.0012648464180529118, -0.029663709923624992, -0.039934515953063965, 0.030789894983172417, -0.011881250888109207, 0.008221149444580078, 0.03588024899363518, -0.03520454093813896, 0.03957413509488106, 0.013761979527771473, -0.05955265834927559, -0.058831896632909775, 0.02126237004995346, 0.006194016896188259, -0.048290807753801346, -0.009640142321586609, -0.033019740134477615, -0.02819966897368431, -0.009645773097872734, 0.002747891005128622, -0.02075558714568615, 0.011475823819637299, -0.01564270816743374, 0.05761561915278435, -0.03365040570497513, 0.03540725260972977, -0.028492476791143417, 0.04896651953458786, 0.010265175253152847, -0.010349638760089874, 0.01060303021222353, 0.0008960208506323397, -0.01060866191983223, 0.01059176865965128, 0.02038394659757614, -0.016768893226981163, -0.005639370996505022, 0.0012796275550499558, 0.010242651216685772, -0.002387512009590864, -0.01361557561904192, -0.04743490740656853, -0.004594834521412849, -0.0022087302058935165, 0.02817714586853981, -0.03500182554125786, -0.019539307802915573, -0.010366532020270824, 0.02865014411509037, -0.023007957264780998, -0.06752604246139526, -0.01405478734523058, 0.00648119393736124, -0.08667118847370148, -0.0003519327729009092, 0.07928341627120972, 0.01271462719887495, 0.027951909229159355, 0.02167905867099762, 0.008221149444580078, 0.03612801060080528, 0.007444082293659449, -0.013491694815456867, -0.007776306476444006, 0.043650925159454346, -0.003198364982381463, 0.00017473462503403425, -0.03130793944001198, -0.05297573655843735, 0.012613270431756973, -0.004997445270419121, -0.002471975749358535, -0.040925558656454086, -0.030136708170175552, 0.01993347331881523, 0.020575398579239845, 0.05725523829460144, -0.017185581848025322, 0.02265883982181549, 5.850882189406548e-06, 0.016250846907496452, -0.033492736518383026, 0.013807026669383049, 0.008930645883083344, 0.04238959774374962, -0.0057998523116111755, 0.025767110288143158, 0.01748965121805668, -0.01576658897101879, -0.018672145903110504, -0.009037633426487446, -0.021025871858000755, -0.035722583532333374, 0.028042003512382507, 0.0010051199933514, -0.03734429180622101, 0.027996955439448357, 0.0006809899350628257, -0.02026006579399109, 0.026983389630913734, 0.07459848374128342, -0.0018075266852974892, -0.04770519211888313, -0.02914566546678543, -0.0042485324665904045, -0.014021001756191254, 0.014482737518846989, 0.027163580060005188, 0.006667014677077532, -0.028447430580854416, -0.02815462276339531, 0.07793199270963669, 0.00782135408371687, -0.0024593062698841095, 0.009538785554468632, -0.03964170813560486, -0.016802677884697914, -0.0056027695536613464, 0.011256217956542969, -0.013165101408958435, 0.0016822386533021927, -0.028920426964759827, 0.06531872600317001, -0.030654752627015114, -0.029821375384926796, -0.05504791811108589, 0.008733564056456089, 0.015248543582856655, -0.018289241939783096, -0.005405687261372805, -0.015316114760935307, -0.028740238398313522, 0.045069918036460876, -0.00011437815555837005, 0.03556491807103157, -0.024821115657687187, -0.05018279701471329, -0.02856004796922207, -0.06698547303676605, 0.046894337981939316, 0.008452017791569233, -0.021791677922010422, 0.01757974550127983, 0.015530089847743511, -0.005476073827594519, -0.03092503733932972, -0.06522862613201141, 0.04029489681124687, 0.002521246438845992, 0.019246499985456467, 0.04955213516950607, -0.0322989821434021, 0.022264674305915833, 0.0011261848267167807, 0.0005613327957689762, -0.03446125611662865, 0.0006778225069865584, 0.0033813701011240482, -0.010034306906163692, 0.0015231650322675705, 0.03590277582406998, -0.01503456849604845, 0.032118793576955795, -0.018120314925909042, 0.02727619744837284, 0.017816245555877686, -0.01132378913462162, -0.007995912805199623, -0.012050177901983261, 0.0046652210876345634, 0.04583572596311569, -0.011030981317162514, -0.02626263163983822, -0.004414644557982683, 0.0127033656463027, -0.0003082931216340512, 0.005070647224783897, -0.01227541547268629, -0.019989781081676483, 0.06667014211416245, 0.017692364752292633, -0.01940416544675827, -0.005591508001089096, -0.005233944393694401, 0.01708422414958477, 0.004465322941541672, -0.01223036739975214, -0.029933994635939598, -0.023672405630350113, -0.05410192161798477, -0.036285676062107086, -0.020417731255292892, -0.05117383971810341, 0.006841572932898998, -0.028087051585316658, 0.026059918105602264, -0.027005912736058235, 0.07149021327495575, 0.03752448037266731, 0.06360692530870438, 0.011081659235060215, 0.03376302123069763, 0.017208104953169823, 0.0015780666144564748, 0.015057091601192951, -0.020992085337638855, -0.031127750873565674, 0.015259805135428905, -0.010805743746459484, 0.040903035551309586, 0.015102139674127102, 0.005523936823010445, -8.076857193373144e-05, 0.04851604625582695, 0.016307156533002853, -0.00668953824788332, 0.016813939437270164, 0.047840334475040436, 0.048200711607933044, -0.07441829890012741, -0.034844160079956055, 0.04833585396409035, 0.017895078286528587, 0.10207739472389221, -0.004910165909677744, 0.003023806493729353, -0.021453822031617165, -0.06761614233255386, -0.020688015967607498, -0.012511913664638996, -0.00877298042178154, 0.03966423124074936, 0.0030547764617949724, -0.03261431306600571, -0.06599443405866623, 0.023244455456733704, 0.003941647242754698, 0.024370640516281128, -0.06396730244159698, -0.0324116013944149, -0.003105454845353961, 0.01111544482409954, -0.011019718833267689, -0.01435885764658451, 0.006830311380326748, 0.0022382924798876047, 0.0324566476047039, -0.033447690308094025, 0.019122619181871414, -0.003730487311258912, 0.0034067092929035425, 0.01844690926373005, -0.03446125611662865, -0.003707963740453124, 0.0185032170265913, -0.013750717043876648, -0.023424645885825157, 0.025496825575828552, -0.01946047507226467, 0.0025817789137363434, -0.014268762432038784, -0.01844690926373005, 0.02587972767651081, 0.02262505516409874, -0.08378815650939941, -0.00293371151201427, 0.0037558265030384064, -0.0011473008198663592, -0.052390120923519135, -0.04468701779842377, -0.03608296439051628, 0.0031617640051990747, 0.006407991982996464, 0.001479525351896882, 0.03772719204425812, -0.044146448373794556, -0.0009403643780387938, 0.02355978824198246, -0.011228063143789768, 0.01198260672390461, 0.013649361208081245, -0.01456157024949789, 0.021442560479044914, 0.005498597864061594, 0.0323665551841259, -0.0017146164318546653, 0.006655752658843994, 0.008181733079254627, -0.007500391453504562, -0.018784763291478157, 0.02723115123808384, -0.015000782907009125, 0.02583468146622181, 0.024280546233057976, -0.013424123637378216, -0.0035052504390478134, 0.05725523829460144, -0.004935505334287882, 0.012838508002460003, -0.014876902103424072, -0.0008164840401150286, -0.006920406129211187, 0.01805274374783039, 0.011892512440681458, -0.01568775624036789, -0.015304852277040482, -0.011746108531951904, -0.05369649454951286, 0.009184037335216999, 0.004653959069401026, -0.007230106741189957, 0.02583468146622181, -0.01151524018496275, 0.02964118681848049, -0.030587181448936462, 0.023694930598139763, 0.04531767964363098, 0.026240108534693718, 0.04202922061085701, 0.013930906541645527, -0.005461996886879206, -0.015980564057826996, 0.0015133109409362078, -0.047389861196279526, -0.048741281032562256, -0.0005718907341361046, 0.012748412787914276, 0.021115966141223907, -0.010923993773758411, -0.0046624052338302135, -0.018255457282066345, 0.020552873611450195, 0.04020480066537857, 0.006317897234112024, 0.008677254430949688, -0.01982085406780243, -0.008497064933180809, 0.0184581708163023, -0.004648328293114901, 0.017331985756754875, 0.028785286471247673, -0.04752500355243683, -0.01085079088807106, -0.014493999071419239, -0.03479911386966705, 0.008035329170525074, -0.004783470183610916, 0.029258282855153084, 0.01809779182076454, 0.014516523107886314, -0.04065527394413948, -0.037659622728824615, -0.006199647672474384, -0.05266040563583374, -0.043132882565259933, -0.03193860501050949, -0.042749978601932526, -0.01135194394737482, 0.03745690733194351, -0.013987216167151928, -0.024145403876900673, -0.05130898207426071, 0.019066309556365013, 0.003665731754153967, -0.03547482192516327, 0.0055183060467243195, -0.01937038078904152, -0.0022129532881081104, -0.03290712088346481, -0.013795765116810799, 0.010912731289863586, -0.02916818857192993, -0.00387126044370234, -0.013221410103142262, 0.006931668147444725, 0.02178041636943817, 0.041871555149555206, 0.032051220536231995, 0.003443310270085931, 0.013108791783452034, -0.0462636761367321, 0.013266458176076412, 0.011487085372209549, -0.0010058238403871655, -0.023807547986507416, 0.02037268504500389, -0.0067627402022480965, 0.024753544479608536, 0.03563249111175537, 0.02086820639669895, -0.023852596059441566, -0.0014809331623837352, -0.031645793467760086, -0.036736149340867996, 0.0032124423887580633, -0.013953430578112602, 0.03966423124074936, -0.01983211562037468, 0.034371163696050644, 0.01902126334607601, 0.006194016896188259, 0.0369839109480381, 0.03921375796198845, 0.012748412787914276, -0.00880113523453474, -0.0009896350093185902, 0.013086268678307533, 0.01750091277062893, -8.815916226012632e-05, 0.0324566476047039, -0.03524958714842796, -0.015856683254241943, -0.04675919562578201, -0.00015942554455250502, 0.03414592519402504, 0.015946777537465096, 0.03459639847278595, -0.02637524902820587, -0.0022594083566218615, -0.016870249062776566, 0.030136708170175552, 0.021521393209695816, -0.016768893226981163, -0.03097008354961872, -0.008007174357771873, -0.022332245483994484, 0.029258282855153084, -0.006948560941964388, 0.04509244114160538, -0.002432559384033084, -0.020958300679922104, 0.0184018611907959, 0.052435167133808136, -0.01947173662483692, -0.014032263308763504, -0.006824680604040623, -0.001922960625961423, -0.006154600530862808, 0.016768893226981163, -0.029235759750008583, -0.044078875333070755, -0.03455135226249695, -0.014043525792658329, 0.0039979564025998116, 0.013424123637378216, 0.06243569031357765, -0.00022699663531966507, -0.04757004976272583, 0.020203756168484688, -0.019088834524154663, -0.019663188606500626, -0.030339419841766357, -0.03306478634476662, -0.01622832380235195, 0.00428231805562973, 0.027005912736058235, -0.0161157064139843, -0.014516523107886314, 0.031037654727697372, -0.02860509604215622, -0.0002211897517554462, -2.145690086763352e-05, 0.005442288238555193, -0.014043525792658329, -0.017410818487405777, -0.032051220536231995, -0.013029959052801132, 0.037141576409339905, -0.04333559423685074, -0.018762240186333656, -0.0011972753563895822, 0.003905046032741666, 0.020507827401161194, -0.03820019215345383, 0.025316637009382248, -0.002894295146688819, -0.0024761990644037724, 0.04261483624577522, -0.06766118854284286, -0.020034829154610634, -0.028424905613064766, -0.02443821169435978, 0.01947173662483692, 0.0184581708163023, 0.00485385674983263, -0.005906839855015278, 0.01885233446955681, -0.004966475535184145, 0.0064417775720357895, -0.04932689666748047, -0.014392643235623837, 0.01992220990359783, -0.026104966178536415, 0.005346562713384628, -0.013908383436501026, -0.05157926678657532, 0.00013021512131672353, 0.0022608160506933928, -0.005456365644931793, 0.005912470631301403, 0.023176884278655052, -0.014876902103424072, -0.02032763697206974, -0.012793459929525852, -0.03315488249063492, 0.006036350969225168, -0.024190451949834824, -0.031082702800631523, -0.03434864059090614, -0.014640403911471367, 0.013153839856386185, -0.011447669006884098, -0.013334029354155064, -0.025226540863513947, -0.01521475799381733, 0.0018314581830054522, -0.01659996435046196, 0.022298460826277733, -0.03459639847278595, -0.02682572416961193, 0.002814054489135742, -0.001195867545902729, -0.021093443036079407, -0.028965475037693977, 0.02313183806836605, 0.011824941262602806, 0.014629141427576542, -0.009544417262077332, -0.02270388789474964, 0.004448430147022009, -0.014933211728930473, -0.03421349823474884, -0.0061827548779547215, -0.014212452806532383, -0.028334811329841614, -0.013502956368029118, 0.012624532915651798, -0.005749173928052187, 0.015822896733880043, -0.033515263348817825, 0.028447430580854416, 0.017253153026103973, -0.0034827266354113817, -0.013446647673845291, 0.002964681712910533, -0.002462121658027172, -0.004915797151625156, -0.033537786453962326, 0.007370879873633385, 0.005174819380044937, -0.008677254430949688, 0.02912314049899578, -0.016543656587600708, -0.009876641444861889, 0.027884338051080704, 0.00648119393736124, -0.04941699281334877, 0.010225758887827396, -0.01197134517133236, 0.005614031571894884, -0.04024984687566757, 0.02495625615119934, -0.010614292696118355, -0.003938831388950348, 0.012917340733110905, -0.022501174360513687, -0.011385729536414146, 0.010225758887827396, 0.02167905867099762, 0.019696973264217377, 0.0076636881567537785, -0.04128593951463699, -0.004321734420955181, -0.0064417775720357895, -0.02637524902820587, 0.013536741957068443, 0.0028858487494289875, 0.05910218134522438, 0.017647316679358482, -0.03502434864640236, -0.013897121883928776, 0.011025349609553814, 0.031037654727697372, 0.02218584157526493, 0.001088176155462861, -0.020068613812327385, 0.04470954090356827, 0.03430359065532684, -0.009110835380852222, 0.0104115791618824, -0.00854774285107851, 0.036758676171302795, -0.0012824430596083403, 0.026195060461759567, -0.016746368259191513, -0.006469931919127703, 0.005574615206569433, -0.004963659681379795, 0.02547430247068405, -0.0019440766191110015, 0.03283955156803131, -0.040903035551309586, -0.014505261555314064, -0.007308939937502146, 0.003437679260969162, -0.0029843898955732584, 0.03380807116627693, 0.01888612098991871, -0.01888612098991871, 0.010344007983803749, -0.00598567258566618, -0.022726410999894142, -0.034438733011484146, -0.003491173032671213, 0.005735096521675587, -0.01665627397596836, -0.0018427199684083462, -0.0021890217904001474, 0.011228063143789768, 0.03959666192531586, 0.02039520815014839, -0.015180972404778004, 0.009324810467660427, -0.0028971105348318815, 0.02401026152074337, 0.03590277582406998, -0.005214236211031675, 0.03056465834379196, -0.025046352297067642, 0.049642231315374374, -0.03155570104718208, 0.01886359602212906, 0.0011972753563895822, -0.005653447937220335, 0.0016400067834183574, 0.007984651252627373, -0.03146560490131378, -0.039056092500686646, -0.016881510615348816, -0.038628142327070236, 0.015811635181307793, 0.034911733120679855, 0.020181233063340187, -0.017669841647148132, 0.000545143848285079, 0.010653709061443806, 0.020564135164022446, 0.008519588969647884, 0.016059396788477898, -0.0208231583237648, 0.041826505213975906, 0.03842542693018913, -0.0138182882219553, 0.014403904788196087, 0.0016949082491919398, 0.003313798923045397, 0.013998477719724178, 0.05135403200984001, 0.0063629443757236, 0.0046173580922186375, -0.0017948572058230639, 0.015124662779271603, 0.012410557828843594, -0.011915036477148533, 0.03473154082894325, -0.002981574507430196, -0.011419515125453472, -0.06225550174713135, 0.028987998142838478, 0.04653396084904671, 0.027163580060005188, -0.04725471884012222, -0.02725367434322834, -0.0025817789137363434, -0.012759674340486526, 0.05450734868645668, -0.0012226144317537546, -0.021814201027154922, 0.0011944598518311977, -0.006920406129211187, -0.03601539134979248, 0.018311766907572746, 0.027861813083291054, 0.02349221706390381, 0.03619558364152908, 0.009189669042825699, -0.04946203902363777, 0.009623249992728233, 0.02035016007721424, 0.0161382295191288, 0.005918101407587528, 0.017850030213594437, -0.023920167237520218, 0.031082702800631523, 0.01753469929099083, -0.014966997317969799, 0.023402120918035507, 0.013165101408958435, 0.010496042668819427, 0.03545229882001877, 0.008885598741471767, 0.026690581813454628, 0.00428231805562973, 0.04441673308610916, -0.016892774030566216, 0.015394947491586208, 0.0104115791618824, -0.01569901779294014, 0.01478680782020092, 0.03664605692028999, 0.04648891091346741, -0.027591530233621597, 0.028920426964759827, -0.030361944809556007, -0.021802939474582672, 0.010349638760089874, 0.007280785124748945, -0.01572154089808464, 0.020552873611450195, 0.006621967069804668, 0.013097530230879784, 0.04356083273887634, 0.024258023127913475, 0.017872553318738937, -0.0046398816630244255, -0.01523728109896183, -0.0010649486212059855, -0.019640663638710976, 0.006109552923589945, -0.028965475037693977, 0.004603280685842037, -0.025316637009382248, 0.047299765050411224, 0.020519088953733444, 0.02358231134712696, -0.022354770451784134, 0.0032096270006150007, 0.027343768626451492, -0.03042951598763466, -1.2840047247664188e-06, -0.008452017791569233, -0.027343768626451492, 0.00852521974593401, 0.005228313151746988, -0.0028365780599415302, -0.001848350977525115, 0.02867266722023487, -0.028897903859615326, -0.03509192168712616, 0.00623343326151371, 0.028830332681536674, -0.005940625444054604, -0.0039022306445986032, 0.04581319913268089, -0.041240889579057693, -0.013075006194412708, -0.01670132204890251, -0.002215768676251173, 0.009634511545300484, 0.05112879350781441, 0.03799747675657272, 0.009336072951555252, 0.01086768414825201, 0.01612696796655655, 0.03619558364152908, 0.02581215836107731, -0.004197854083031416, 0.029686233028769493, -0.012624532915651798, 0.0021313049364835024, 0.009217822924256325, 0.007286416366696358, 0.03608296439051628, 0.023199409246444702, 0.005391610320657492, 0.0005602769670076668, -0.0011487086303532124, -0.03732176870107651, 0.0031955495942384005, -0.04387616366147995, 0.03608296439051628, -0.022805243730545044, -0.001911698840558529, -0.024821115657687187, 0.0005461996770463884, -0.0037445647176355124, 0.0022960093338042498, 0.011391360312700272, 0.06338168680667877, -0.024663448333740234, -0.013108791783452034, -0.006621967069804668, 0.017816245555877686, -0.014336333610117435, -0.027569005265831947, 0.02583468146622181, -0.0007432820275425911, 0.005782959517091513, -0.021093443036079407, -0.013536741957068443, -0.00017719814786687493, 0.007410296704620123, -0.004904535133391619, -0.0208006352186203, -0.016397252678871155, -0.005678787361830473, 0.03180346265435219, -0.02452830597758293, 0.011644751764833927, 0.020552873611450195, 0.02126237004995346, 0.005202974192798138, -0.026487868279218674, 0.009611987508833408, 0.01747838966548443, -0.013435385189950466, 0.02210700884461403, -0.01797391101717949, -0.03178093582391739, -0.0016273371875286102, -0.007669318933039904, -0.03151065111160278, -0.010113140568137169, 0.0056337397545576096, 0.0006901401793584228, -0.0103609012439847, -0.004769392777234316, -0.025158969685435295, 0.01663375087082386, 0.00968519039452076, -0.0009030594956129789, 0.00702739367261529, 0.0037417493294924498, 0.03421349823474884, -0.0323215052485466, -0.0016132598975673318, -0.011318158358335495, 0.005174819380044937, 0.03608296439051628, 0.013739455491304398, -0.01841312274336815, 0.009352965280413628, 3.849264612654224e-05, -0.003387001110240817, 0.043718498200178146, -0.005163557827472687, 0.02178041636943817, -0.008519588969647884, -0.004732791800051928, 0.03319992870092392, -0.02073306404054165, -0.02165653556585312, -0.010338377207517624, -0.010845160111784935, -0.012433080933988094, 0.033515263348817825, -0.01480933092534542, -0.024325594305992126, 0.012827245518565178, -0.026983389630913734, 0.014629141427576542, 0.015946777537465096, 0.013559265993535519, -0.002837985986843705, 0.009921688586473465, 0.024348117411136627, -0.009651404805481434, 0.003761457512155175, -0.04525011032819748, -0.023852596059441566, -0.00878424197435379, -0.0022720780689269304, 0.022433603182435036, 0.023785024881362915, -0.057480476796627045, 0.00875608716160059, 0.005991303361952305, 0.010929624550044537, 0.022816505283117294, -0.005794221069663763, -0.007376511115580797, 0.0016118520870804787, 0.003158948617056012, 0.034934256225824356, 0.0601382739841938, 0.022523697465658188, -0.024145403876900673, 0.025271588936448097, 0.026600487530231476, -0.015428733080625534, 0.014021001756191254, 0.021600225940346718, 0.02121732383966446, 0.017895078286528587, -0.0007587670697830617, 0.0369839109480381, 0.02765910141170025, 0.018762240186333656, 0.008609683252871037, 0.004510370548814535, 0.006312266457825899, -0.019178928807377815, 0.002601487096399069, -0.008435124531388283, 0.01548504177480936, -0.03175841271877289, -0.0039191232062876225, -0.0061208149418234825, -0.038132619112730026, -0.029686233028769493, 0.005476073827594519, 0.009634511545300484, -0.03189355507493019, 0.020102400332689285, -0.0038431058637797832, 0.0011578588746488094, -0.026217583566904068, -0.002234069164842367, -0.0012444342719390988, -0.03964170813560486, -0.01755722239613533, -0.01523728109896183, 0.025947298854589462, 0.004980552475899458, -0.028019480407238007, 0.00029122436535544693, -0.014032263308763504, 0.0005680195172317326, 0.0080691147595644, 0.0011670091189444065, -0.028469953685998917, -0.034889206290245056, 0.010422840714454651, -0.03040699101984501, -0.022467387840151787, 0.026127489283680916, -0.022793982177972794, -0.009893533773720264, -0.016509870067238808, 0.01245560497045517, 0.009949843399226665, 0.015969302505254745, -0.025699539110064507, -0.000730612431652844, 0.01406604889780283, 0.013007435016334057, 0.0017723334021866322, -0.005225497763603926, 0.043673448264598846, -0.02450578287243843, 0.016712583601474762, -0.0010051199933514, 0.020575398579239845, -0.0138745978474617, -0.007359618321061134, -0.006740216631442308, -0.02039520815014839, -0.014696712605655193, 0.013007435016334057, 0.024167926982045174, -0.02403278462588787, -0.019032524898648262, 0.004341442603617907, 0.002070772461593151, -0.03792990744113922, -0.002619787584990263, -6.554747960763052e-05, 0.03914618492126465, -0.015800373628735542, -0.005622478201985359, -0.021994391456246376, 0.04482215642929077, -0.025496825575828552, 0.015012044459581375, 0.02862761914730072, -0.0013204517308622599, 0.022028176113963127, -0.021070919930934906, 0.012861031107604504, 0.001537242322228849, -0.02671310491859913, -0.03097008354961872, -0.04527263343334198, 0.005304330959916115, 0.019494259729981422, -0.016295894980430603, -0.013953430578112602, 0.023739976808428764, -0.008395708166062832, 0.015192233957350254, 0.0005975818494334817, 0.0007503206725232303, 0.009110835380852222, -0.01665627397596836, -0.031127750873565674, -0.01128437276929617, 0.0092403469607234, -0.021374989300966263, -0.008221149444580078, 0.01478680782020092, 0.03434864059090614, -0.011915036477148533, -0.01109855156391859, 0.048696234822273254, 0.014223715290427208, -0.029370902106165886, 0.03092503733932972, -0.02126237004995346, 0.004327365197241306, 0.031690843403339386, -0.018109053373336792, 0.02684824727475643, -0.0025184310507029295, 0.001975046703591943, 0.006971084512770176, 0.011149230413138866, -0.008919384330511093, 0.01843564584851265, 0.017906339839100838, 0.00018089344666805118, -0.027141055092215538, -0.009606356732547283, 0.011881250888109207, 0.024212975054979324, 0.036736149340867996, 0.016070658341050148, -0.0017244706396013498, -0.030812418088316917, -0.006712061818689108, -0.03966423124074936, 0.020474040880799294, -0.02587972767651081, -0.012365509755909443, -0.01108729001134634, -0.0033813701011240482, 0.009296656586229801, 0.007669318933039904, -0.018142838031053543, 0.03452882915735245, 0.0019215529318898916, -0.009015110321342945, 0.012061440385878086, -0.0021833910141140223, -0.014696712605655193, -0.013683145865797997, 0.021983128041028976, 0.03455135226249695, -0.005763251334428787, 0.027163580060005188, 0.00414999108761549, 0.00485385674983263, 0.007573593407869339, -0.031172797083854675, 0.016059396788477898, -0.019742021337151527, -0.01932533271610737, 0.023785024881362915, 0.016836464405059814, -0.02035016007721424, 0.0033757390920072794, 0.02779424376785755, 0.04432663694024086, -0.06324654072523117, -0.0023368336260318756, 0.0003112845297437161, 0.04004713520407677, -0.01795138791203499, -0.010130032896995544, -0.0019511153222993016, -0.0033250609412789345, -0.014910687692463398, 0.008378815837204456, -0.017647316679358482, -0.009375489316880703, -0.013942169025540352, 0.008114161901175976, 0.027839289978146553, -0.007995912805199623, -0.012883555144071579, -0.032524220645427704, -0.002176352310925722, 0.043155405670404434, 0.016836464405059814, -0.013356552459299564, -0.04119584336876869, -0.006886620540171862, -0.008181733079254627, -0.014820593409240246, -0.06180502474308014, -0.013942169025540352, -0.00761300977319479, 0.0208231583237648, -0.036691103130578995, -0.01755722239613533, 0.020507827401161194, -0.021363727748394012, -0.008632207289338112, 0.022061962634325027, 0.030339419841766357, -0.04473206400871277, 0.0115321334451437, -0.011121075600385666, -0.029348377138376236, -0.019719496369361877, -0.01843564584851265, 0.007787568494677544, 0.027929384261369705, -0.018154099583625793, 0.01319888699799776, 0.025023827329277992, 0.00972460675984621, 0.002415666589513421, 0.002788715297356248, -0.053741540759801865, 0.0007249815389513969, -0.007759413681924343, 0.0011247771326452494, -0.0369163416326046, -0.01803022064268589, -0.043650925159454346, 0.028447430580854416, 0.008429493755102158, -0.00855337455868721, 0.0008277458837255836, 0.006672645453363657, -0.008598421700298786, -0.009893533773720264, 0.011070397682487965, -0.006897882558405399, 0.043155405670404434, -0.009899165481328964, 0.000774955959059298, -0.003966986201703548, 0.004439983982592821, 0.02261379174888134, -0.01664501242339611, 0.002141159027814865, -7.258613186422735e-05, 0.03421349823474884, -0.05896703898906708, -0.051984693855047226, 0.015912992879748344, -0.01617201417684555, -0.028312288224697113, 0.01902126334607601, -0.049597181379795074, 0.015890467911958694, 0.01902126334607601, 0.019618140533566475, 0.02126237004995346, -0.05401182547211647, 0.021926820278167725, -0.017692364752292633, -0.017636055126786232, -0.03272693231701851, 0.0066444906406104565, -0.004690560046583414, -0.022073224186897278, -0.019584355875849724, 0.014415166340768337, -0.0022594083566218615, 0.03414592519402504, -0.04205174371600151, -0.012568223290145397, 0.004127467516809702, 0.014043525792658329, -0.010084985755383968, -0.010000521317124367, 0.02871771529316902, 0.018559526652097702, -9.801327541936189e-05, 0.02218584157526493, 0.021971866488456726, -0.011577180586755276, 0.02497878111898899, -0.03139803558588028, -0.017208104953169823, -0.0018342735711485147, -0.02301921881735325, 0.015879206359386444, -0.025113923475146294, 0.014201191253960133, -0.002234069164842367, -0.030767370015382767, 0.02083441987633705, 0.022073224186897278, -0.007353987079113722, -0.016825202852487564, 0.004929874092340469, 0.03002408891916275, -0.01223036739975214, 0.04516001418232918, 0.021014610305428505, -0.02538420632481575, -0.00877298042178154, -0.005264914128929377, 0.02673562988638878, -0.027005912736058235, -0.020102400332689285, 0.05680476501584053, -0.03407835587859154, 0.009150251746177673, 0.015372423455119133, 0.04394373297691345, -0.016915297135710716, 0.018277980387210846, -0.01653239317238331, -0.0208569448441267, 0.025969823822379112, 0.004040188156068325, 0.04022732377052307, -0.013446647673845291, -0.0023016403429210186, 0.017782459035515785, 0.036330725997686386, -0.003111085621640086, 0.025722062215209007, -0.02630767971277237, 0.034371163696050644, -0.02590225264430046, -0.006041981745511293, 0.010006153024733067, -0.016250846907496452, -0.012939863838255405, 0.008941908366978168, 0.0018624282674863935, 0.00610392214730382, -0.019280284643173218, -0.0070837028324604034, -0.004124652128666639, 0.03792990744113922, -0.02578963339328766, -0.01946047507226467, 0.000342078652465716, 0.00011684167839121073, 0.006475563161075115, 0.01479806937277317, -0.011689798906445503, 0.018334290012717247, -0.0033194299321621656, 0.02626263163983822, -0.02488868497312069, 0.008378815837204456, -0.02675815299153328, 0.008373184129595757, 0.0017413633177056909, 0.0231093131005764, 0.030339419841766357, 0.004209116101264954, -0.024708496406674385, -0.010597399435937405, 0.000552534474991262, 0.04653396084904671, 0.0019919394981116056, 0.009809070266783237, -0.018323028460144997, -0.043222974985837936, -0.006734585389494896, 0.04342569038271904, -0.021825462579727173, -0.004482215736061335, 0.01655491814017296, 0.008789872750639915, 0.00899258628487587, 0.032501693814992905, 0.012162797152996063, -0.0073202019557356834, -0.01016381848603487, 0.023649882525205612, -0.04666910320520401, 0.001573843415826559, -0.010479150339961052, 0.018660884350538254], [0.043529022485017776, -0.012343568727374077, 0.019617803394794464, 0.028321022167801857, -0.00873554777354002, -0.012000870890915394, -0.013513912446796894, 0.05596958100795746, -0.0014265583595260978, 0.02369137480854988, 0.009918823838233948, 0.032200612127780914, 0.03809759393334389, 0.017432300373911858, 0.018169421702623367, -0.013837211765348911, 0.0025330502539873123, -0.006601772271096706, -0.026769185438752174, 0.05938362330198288, 0.017535755410790443, 0.051779620349407196, -0.04220996052026749, 0.00809541530907154, 0.015389048494398594, -0.029795266687870026, -0.01670810952782631, -0.03716649115085602, 0.04955532029271126, -0.06564269959926605, 0.04039948433637619, -0.017587482929229736, 0.001543754362501204, -0.05410737544298172, 0.032045431435108185, -0.015246796421706676, -0.010196860879659653, 0.011962075717747211, -0.012595742009580135, 0.014768313616514206, -0.012970768846571445, -0.0012220714706927538, -0.010701208375394344, -0.0015930574154481292, -0.011399534530937672, 0.013028963468968868, 0.055917851626873016, -0.04696892574429512, 0.007125517353415489, 0.00015750739839859307, 0.011541786603629589, 0.056073036044836044, -0.012524615973234177, 0.038252778351306915, 0.028269294649362564, 0.05410737544298172, -0.013617368414998055, -0.005169556476175785, 0.0058161551132798195, -0.05865943059325218, -0.014703653752803802, -0.06005608290433884, 0.02197142317891121, 0.03248511627316475, -0.008767877705395222, 0.03667507693171501, -0.021298959851264954, 0.027493376284837723, -0.026769185438752174, 0.029924586415290833, 0.05886634439229965, 0.005169556476175785, 0.023730171844363213, -0.009576126001775265, 0.02878657355904579, 0.022837864235043526, -0.018259946256875992, 0.0016633750637993217, 0.0022291489876806736, -0.012608674354851246, 0.007765649817883968, 0.020186809822916985, -0.062487296760082245, -0.039364926517009735, -0.024325041100382805, -0.009996415115892887, -0.07391916215419769, -0.019604871049523354, 0.01166464015841484, -0.03046773001551628, 0.028683116659522057, 0.011903881095349789, -0.04399457201361656, 0.001120232162065804, -0.021842103451490402, -0.015544231981039047, 0.029433172196149826, 0.005033770576119423, -0.037838954478502274, 0.027131279930472374, -0.03119191899895668, -0.01688915677368641, 0.004131765570491552, -0.0005690068355761468, 0.048546627163887024, -0.04303760826587677, 0.002448992570862174, 0.01784612238407135, 0.05071919783949852, 0.035614654421806335, 0.057986967265605927, 0.0068216160871088505, 0.03207129240036011, 0.03331276401877403, 0.010293850675225258, -0.0011299311881884933, 0.003970115911215544, -0.040683988481760025, -0.0023891821037977934, -0.023070640861988068, -0.0065112486481666565, -0.032588571310043335, 0.01560889184474945, -0.032045431435108185, -0.0017910783644765615, -0.04453771561384201, -0.024156926199793816, -0.015660619363188744, -0.052141714841127396, -0.043322112411260605, 0.04740861430764198, -0.008444578386843204, 0.07195349782705307, 0.04334797337651253, -0.004804227966815233, -0.01766507513821125, -0.024751797318458557, -0.03959770128130913, -0.00032269314397126436, -0.011709901504218578, -0.034088682383298874, -0.04228755459189415, 0.012007337063550949, 0.007720388006418943, 0.04091676324605942, -0.00779797974973917, 0.00283856806345284, 0.008431646972894669, 0.029950451105833054, -0.01652706228196621, -0.02404053881764412, -0.0019608105067163706, 0.03155401349067688, -0.03248511627316475, -0.04559813812375069, -0.010869323275983334, -0.013798415660858154, -0.022049015387892723, 0.04870181158185005, 0.04241687431931496, -0.04921909049153328, -0.01819528639316559, -0.01156118419021368, -0.016604654490947723, -0.0011832755990326405, -0.00456175347790122, 0.0353301502764225, -0.0044324337504804134, -0.05622822046279907, 0.007914368063211441, 0.00043483759509399533, -0.01920398138463497, -0.04306347295641899, -0.009382146410644054, -0.04037361964583397, -0.04027016460895538, 0.045934367924928665, 0.06983265280723572, -0.014354490675032139, -0.03168333321809769, 0.02857966162264347, 0.0342438668012619, -0.05690068379044533, 0.030105633661150932, -0.04841730743646622, -0.009783037938177586, -0.05296936258673668, -0.03794240951538086, -0.021169640123844147, 0.08364400267601013, -0.017031408846378326, -0.03698544204235077, 0.022824933752417564, 0.0221395380795002, -0.0016528678825125098, -0.01616496592760086, -0.0387183278799057, -0.05030537769198418, 0.03248511627316475, 0.010921051725745201, 0.04495153948664665, -0.03501978516578674, 0.0050208386965096, 0.0035174968652427197, -0.052736587822437286, -0.0055510494858026505, -0.015751143917441368, -0.02839861437678337, 0.03176092728972435, -0.031812652945518494, 0.016410674899816513, -0.047279294580221176, -0.02707955241203308, -0.04094262793660164, -0.011515921913087368, 0.010067541152238846, -0.018104761838912964, -0.011108565144240856, 0.0379941388964653, 0.037864819169044495, -0.07055684924125671, -0.009265759028494358, 0.002096596173942089, 0.0037890681996941566, -0.03584742918610573, 0.036338843405246735, 0.030597049742937088, 0.003234609728679061, -0.06362530589103699, -0.05896979942917824, -0.03274375572800636, -0.0100416773930192, -0.04192545637488365, 0.004616714548319578, -0.016785701736807823, 0.041796136647462845, -0.053641825914382935, -0.052529674023389816, 0.011063302867114544, -0.0014459562953561544, -0.014975225552916527, -0.002767442259937525, 0.03920974209904671, -0.006052163429558277, 0.014509674161672592, -0.008328191004693508, 0.02387242205440998, 0.004888285882771015, -0.007429418619722128, -0.030933279544115067, 0.022061945870518684, 0.037864819169044495, 0.04063225910067558, -0.07309151440858841, -0.02084634080529213, 0.022436974570155144, 0.03139883279800415, -0.029381442815065384, 0.02989872172474861, -0.0035627586767077446, 0.004720170050859451, -0.00024126212520059198, 0.023587919771671295, 0.015427844598889351, -0.07019475102424622, -0.02666572853922844, 0.0646081417798996, 0.017419368028640747, -0.003966882824897766, 0.042003050446510315, -0.03189024701714516, 0.022255925461649895, 0.021764511242508888, -0.0001945857802638784, -0.061918288469314575, 0.0038925239350646734, 0.022488702088594437, 0.007397088687866926, -0.008567431941628456, -0.011418932117521763, -0.04169268161058426, -0.024001741781830788, 0.004309580195695162, -0.060987185686826706, 0.014419150538742542, -0.004778364207595587, 0.046710286289453506, -0.027933062985539436, -0.021376552060246468, 0.011056837625801563, 0.016294285655021667, -0.012744459323585033, 0.02502336911857128, -0.02914866805076599, -0.007778582163155079, 0.003598321694880724, -0.034295592457056046, 0.015557164326310158, 0.03403695300221443, 0.03649402782320976, 0.02502336911857128, 0.0675048977136612, -0.02029026672244072, -0.007610466331243515, -0.05206412449479103, 0.011224952526390553, 0.007778582163155079, -0.01707020401954651, 0.020380789414048195, -0.02689850516617298, -0.02987285889685154, 0.022993048653006554, -0.060780275613069534, 0.03264030069112778, 0.0030729600694030523, -0.0012964303605258465, -0.046710286289453506, 0.028812436386942863, 0.0492449551820755, 0.008043687790632248, 0.04073571786284447, 0.029045213013887405, -0.015725279226899147, 0.018350470811128616, 0.012628071941435337, -0.035614654421806335, 0.03501978516578674, 0.005625408608466387, -0.017147796228528023, 0.02404053881764412, -0.01335872896015644, 0.0023746336810290813, 0.017031408846378326, 0.007429418619722128, 0.010752935893833637, -0.04045121371746063, -0.046322327107191086, 0.018156491219997406, 0.02387242205440998, -0.038795921951532364, 0.00023499820963479578, 0.017354708164930344, -0.04699479043483734, 0.008897197432816029, -0.03235579654574394, -0.00394425168633461, 0.00382786407135427, 0.057211048901081085, -0.02687264047563076, 0.002979203360155225, 0.07019475102424622, -0.011451262049376965, -0.04285655915737152, -0.06615997850894928, -0.027933062985539436, -0.03326103463768959, 0.047227565199136734, -0.009925290010869503, -0.03848555311560631, 0.05488329380750656, -0.0278296060860157, -0.008683820255100727, 0.029174532741308212, 0.021855035796761513, -0.028838301077485085, -0.001437873812392354, -0.0029307084623724222, 0.0439169816672802, -0.01691502146422863, -0.03626125305891037, 0.0002463136916048825, -0.005667437333613634, 0.04177027568221092, 0.012860847637057304, 0.050667472183704376, -0.027700286358594894, 0.0458567775785923, 0.026614001020789146, -0.000676908006425947, 0.01088872179389, 0.007125517353415489, 0.02539839595556259, 0.031450558453798294, 0.01991523988544941, 0.003973348997533321, 0.04078744351863861, -0.018647905439138412, -0.009498534724116325, 0.012899643741548061, -0.002169338520616293, 0.027700286358594894, -0.04208064079284668, 0.011515921913087368, 0.00881960615515709, -0.06890155375003815, -0.012427626177668571, -0.0008135019452311099, 0.01933330111205578, -0.01956607587635517, -0.029562491923570633, -0.04339970275759697, -0.0061265225522220135, 0.012059065513312817, -0.02458368055522442, 0.0024861718993633986, 0.053072817623615265, 0.01655292510986328, -0.020923933014273643, -0.060625091195106506, 0.012686265632510185, 0.011309010908007622, -0.012149589136242867, 0.038252778351306915, 0.01824701391160488, -0.0037082433700561523, -0.0012519767042249441, -0.03724408149719238, 0.05201239511370659, 0.008328191004693508, -0.018479790538549423, 0.011716367676854134, 0.02777787856757641, -0.02857966162264347, -0.04487394914031029, 0.03331276401877403, 0.04958118498325348, 0.0180271714925766, 0.01750989258289337, 0.031838517636060715, -0.005997202824801207, -0.012977235019207, 0.015621824190020561, -0.008295861072838306, 0.025411328300833702, -0.02460954524576664, -0.05472811311483383, 0.019113456830382347, 0.005515486467629671, 0.0037923012860119343, -0.011703436262905598, -0.00015083934704307467, -0.022475769743323326, 0.02689850516617298, -0.014522606506943703, -0.04663269594311714, -0.04091676324605942, 0.0289158932864666, 0.023898286744952202, -0.0496070496737957, 0.02251456491649151, 0.013009564951062202, 0.016682244837284088, -0.06372876465320587, 0.03659748286008835, -0.009537330828607082, -0.0421065054833889, -0.042727239429950714, 0.008696751669049263, 0.017134863883256912, -0.002153173554688692, 0.0008640174637548625, 0.03364899381995201, 0.039390791207551956, 0.003643583506345749, -0.00441950187087059, 0.03349380940198898, -0.040709853172302246, -0.012447024695575237, -0.0006538729066960514, 0.002859582658857107, -0.004038008861243725, 0.0016318534035235643, -0.019126389175653458, 0.011645241640508175, 0.025282008573412895, -0.03667507693171501, 0.008302327245473862, -0.06181483343243599, -0.013216476887464523, -0.007914368063211441, -0.04019257426261902, -0.0025702298153191805, -0.001353816012851894, -0.030959144234657288, 0.10738711059093475, 0.041408177465200424, 0.0356922447681427, 0.0047266362234950066, -0.028812436386942863, -0.014095851220190525, -0.04231341555714607, 0.0049691107124090195, 0.054210834205150604, -0.013850143179297447, -0.0276485588401556, 0.033933497965335846, 0.0319419726729393, 0.030131498351693153, -0.002618724713101983, 0.011341340839862823, -0.027674423530697823, -0.026950232684612274, 0.006546811666339636, 0.0390804223716259, -0.0027739081997424364, -0.02816583774983883, -0.04492567479610443, -0.007351826876401901, -0.027157144621014595, -0.007578136399388313, -0.038640737533569336, 0.04296001419425011, 0.0290969405323267, -0.0021143776830285788, -0.011347807012498379, -0.0364164374768734, 0.048003483563661575, -0.020225606858730316, -0.023717239499092102, 0.04177027568221092, -0.014638993889093399, -0.00511136231943965, 0.03895110264420509, -0.026536408811807632, 0.015621824190020561, 0.01267333421856165, -0.02801065519452095, -0.003121454967185855, -0.008328191004693508, 0.04045121371746063, -0.035433605313301086, -0.0401667095720768, -0.024325041100382805, 0.011632310226559639, 0.02330341562628746, -0.026407089084386826, 0.01465192623436451, 0.036907851696014404, -0.014328626915812492, -0.008729081600904465, 0.011865085922181606, 0.0242603812366724, 0.005877581890672445, 0.01970832794904709, 0.02438970096409321, 0.011677571572363377, -0.03910628706216812, -0.0025427492801100016, -0.0029646549373865128, 0.008851936087012291, -0.010933983139693737, 0.05876288563013077, -0.025967402383685112, 0.0028547330293804407, 0.0034140408970415592, 0.011729300022125244, 0.03082982450723648, -0.03501978516578674, 0.015854598954319954, -0.01483297348022461, -0.030881552025675774, 0.029407307505607605, 0.0062008812092244625, -0.018324606120586395, -0.013901871629059315, -0.0040768045000731945, 0.03680439665913582, -0.060211267322301865, -0.03998566046357155, -0.028088245540857315, -0.035226695239543915, 0.010287384502589703, 0.011037439107894897, 0.01750989258289337, 0.03173506259918213, 0.028527934104204178, 0.010106337256729603, -0.016126170754432678, 0.04099435731768608, 0.007060857489705086, 0.011218487285077572, 0.025463055819272995, -0.004261085297912359, -0.025269076228141785, 0.012324170209467411, -0.0020173878874629736, -0.03509737551212311, -0.005719165317714214, -0.02687264047563076, -0.018453925848007202, -0.013164748437702656, 0.013772551901638508, -0.007442350499331951, -0.007765649817883968, 0.04127885773777962, 0.014005327597260475, 0.02930385246872902, -0.0012350034667178988, 0.005159857217222452, -0.00929808896034956, -0.0011040671961382031, -0.06559097021818161, 0.0016544843092560768, 0.003187731374055147, -0.01915225200355053, -0.010849925689399242, -0.013003098778426647, -0.0526331327855587, 0.0367785319685936, -0.0024457594845443964, 0.028812436386942863, 0.007448816671967506, -0.017018476501107216, -0.06936710327863693, -0.01976005546748638, 0.022592157125473022, -0.04117540270090103, -0.021389484405517578, -0.010229190811514854, 0.025036299601197243, -0.0428306944668293, 0.004477695561945438, -0.013656163588166237, -0.005939008668065071, -0.030338410288095474, 0.02120843715965748, 0.023807762190699577, -0.05617649108171463, -0.026639865711331367, -0.02009628713130951, -0.0401667095720768, -0.011250817216932774, -0.037321675568819046, 0.011076235212385654, -0.011212021112442017, -0.012725061737000942, 0.0011210404336452484, -0.008961857296526432, 0.020613566040992737, 0.03168333321809769, 0.015065749175846577, -0.010067541152238846, 0.037114761769771576, -0.03582156449556351, 0.05053815245628357, 0.034657686948776245, 0.02369137480854988, 0.004060639534145594, 0.03168333321809769, -0.01212372537702322, -0.007539340294897556, -0.024919912219047546, -0.027545103803277016, 0.002848267089575529, 0.03364899381995201, 0.04233928024768829, -0.027286464348435402, -0.007099653594195843, -0.015143340453505516, 0.000718936906196177, -0.02352325990796089, 0.011231418699026108, 0.02896762080490589, 0.006023066584020853, 0.05757314711809158, 0.02352325990796089, 0.006705228239297867, 0.008664421737194061, -0.01674690470099449, -0.01088872179389, 0.02573462761938572, 0.001231770496815443, 0.027364056557416916, -0.038795921951532364, -0.02689850516617298, -0.02255336195230484, -0.03701130673289299, 0.010500762611627579, -0.0017587484326213598, 0.011147361248731613, -0.010177463293075562, 0.000928677327465266, 0.006249376107007265, 0.0013441169867292047, -0.0003679550427477807, -0.010591286234557629, -0.000771877181250602, -0.02369137480854988, -0.0009771722834557295, -0.01559595949947834, -0.013811348006129265, 0.0188160203397274, 0.029795266687870026, -0.01730298064649105, 0.03082982450723648, 0.023988811299204826, 0.035588789731264114, -0.014225170947611332, 0.013694959692656994, 0.00530534191057086, -0.010953381657600403, -0.00676988810300827, 0.013901871629059315, -0.0646081417798996, -0.028864163905382156, -0.01503988541662693, 0.005405564792454243, 0.005424962844699621, 0.030778096988797188, -0.0014669707743451, -0.022061945870518684, -0.003915154840797186, -0.03662334755063057, -0.00470400508493185, -0.000950500019825995, -0.003572457702830434, 0.002706015482544899, 0.012311238795518875, 0.020755818113684654, -0.009466204792261124, -0.01974712312221527, -0.007015595678240061, 0.016643449664115906, -0.013876007869839668, -0.0013222942361608148, 0.018841885030269623, -0.03470941632986069, -0.006530646700412035, -0.0033817109651863575, -0.024350905790925026, 0.01484590582549572, -0.04058053344488144, -0.04226168990135193, 0.028269294649362564, -0.02535959891974926, 0.03478700667619705, -0.020587701350450516, -0.006976799573749304, -0.02554064802825451, -0.03439904749393463, 0.013294068165123463, -0.009847697801887989, -0.009007119573652744, -0.012750925496220589, -0.02608378976583481, -0.020186809822916985, -0.007397088687866926, 0.02049717865884304, -0.02896762080490589, 0.0008090565679594874, 0.0008753329748287797, 0.010546023957431316, 0.010875789448618889, -0.020044559612870216, 0.017328843474388123, -0.009698980487883091, 0.034683551639318466, -0.006647034082561731, 0.005311808083206415, 0.03191611170768738, 0.022100742906332016, -0.0035918555222451687, 0.03659748286008835, 0.011030972935259342, 0.0030826590955257416, 0.007125517353415489, -0.05020191892981529, -0.005602777469903231, 0.02517855167388916, 0.022242994979023933, -0.022501634433865547, 0.005444360896945, -0.020548906177282333, -0.0028304855804890394, 0.011134428903460503, 0.01154825184494257, -0.03742513060569763, -0.03439904749393463, 0.003714709309861064, -0.0202644020318985, 0.01559595949947834, -0.0022582458332180977, -0.0012228797422721982, -0.00197050953283906, 0.0006744832498952746, -0.007157847285270691, -0.021014457568526268, -0.008244132623076439, 0.04264964908361435, -0.014600197784602642, -0.03535601496696472, -0.009763640351593494, -0.03838209807872772, 0.01541491225361824, -0.016824496909976006, -0.009627854451537132, -0.01955314353108406, -0.023083573207259178, -0.03370072320103645, -0.023639647290110588, 0.019992830231785774, -0.007933765649795532, -0.007532874587923288, 0.06031472235918045, 0.055917851626873016, -0.03341621905565262, -0.003727641422301531, -0.008955391123890877, -0.00892952736467123, -0.002242080867290497, -0.04544295370578766, 0.005011139903217554, 0.02010921947658062, 0.01787198707461357, -0.025876877829432487, -0.003231376875191927, -0.02314823307096958, -0.04901218041777611, -0.01708313636481762, -0.014962293207645416, -0.017794394865632057, -0.030907416716217995, 0.0011857002973556519, -0.03082982450723648, -0.023238755762577057, 0.025294939056038857, -0.012951371259987354, 0.004590850323438644, -0.057055868208408356, -0.008315258659422398, -0.007222507148981094, 0.007002663798630238, -0.00018559402087703347, -0.03116605617105961, -0.007642796263098717, 0.004073571413755417, -0.004830092191696167, 0.017018476501107216, -0.01840219832956791, -0.013222943060100079, 0.0552971176803112, -0.009343350306153297, -0.034864600747823715, -0.013759619556367397, -0.02348446287214756, 0.0073194969445466995, -0.002010921947658062, 0.0138242794200778, -0.006401326972991228, -0.015104545280337334, 0.02969181165099144, -0.01619083061814308, -0.024906979873776436, -5.2687690185848624e-05, 0.03582156449556351, -0.022682681679725647, -0.03667507693171501, -0.0018040102440863848, -0.0032249109353870153, -0.007144915405660868, -0.028476204723119736, -0.02632949687540531, 0.005596311297267675, 0.010752935893833637, 0.0031505520455539227, 0.027700286358594894, 0.012608674354851246, 0.018505653366446495, 0.027958925813436508, 0.01917811669409275, 0.026161381974816322, -0.009071779437363148, -0.008496306836605072, -0.012996633537113667, -0.0383562333881855, 0.012330636382102966, -0.03664921224117279, 0.02894175611436367, -0.004800995346158743, -0.0039183879271149635, -0.011212021112442017, 0.03307998925447464, 0.01976005546748638, -0.011160292662680149, -0.0005516294622793794, -0.008742013946175575, 0.00038492828025482595, 0.022217130288481712, 0.03189024701714516, 0.010397306643426418, 0.00343020586296916, -0.022799069061875343, 0.023807762190699577, -0.048236262053251266, -0.012175452895462513, 0.044641170650720596, -0.013811348006129265, 0.0037890681996941566, 0.0003125900402665138, -0.02460954524576664, -0.024376770481467247, 0.028424477204680443, -0.008994187228381634, 0.006482151802629232, -0.0073582930490374565, -0.007106119301170111, -0.01954021118581295, -0.005842018872499466, 0.0017490494064986706, 0.0010588052682578564, -0.0007969328435137868, -0.030959144234657288, -0.02197142317891121, -0.03745099529623985, -0.004054173827171326, -0.01709606871008873, 0.017057273536920547, 0.004364540800452232, 0.014406218193471432, 0.013216476887464523, 0.04120126739144325, 0.0013505829265341163, -0.018091831356287003, 0.01897120475769043, 0.012893177568912506, -0.06517714262008667, -0.00881960615515709, -0.010261520743370056, 0.030364273115992546, 0.018854817375540733, 6.940832827240229e-05, 0.08690286427736282, 0.027338191866874695, 0.07733320444822311, 0.014703653752803802, -0.009543796069920063, 0.035433605313301086, -0.003131153993308544, -0.005583379417657852, 0.004972343798726797, -0.00479129608720541, -0.019268641248345375, 0.012576344422996044, 0.008496306836605072, 0.02689850516617298, 0.020600633695721626, 0.02912280336022377, 0.0037211752496659756, -0.008237667381763458, 0.015246796421706676, -0.0003592663852032274, 0.007552272640168667, 0.06362530589103699, -0.019876442849636078, -0.012660401873290539, 0.008535102009773254, 0.05845252051949501, 0.0029986014124006033, -0.0028563495725393295, 0.0073647587560117245, -0.0011517538223415613, 0.0028725145384669304, 0.028424477204680443, -0.022230062633752823, 0.02012214995920658, 0.0060133677907288074, 0.011587047949433327, -0.018738429993391037, -0.009530864655971527, -0.005243915133178234, -0.051572710275650024, 0.02313530072569847, 0.03608020395040512, -0.026795048266649246, 0.019617803394794464, 0.010099871084094048, 0.014716586098074913, 0.011522388085722923, 0.009692514315247536, 0.014276898466050625, -0.041046082973480225, 0.017199523746967316, 0.04083917289972305, -0.0008054194622673094, -0.025424258783459663, 0.03478700667619705, 0.03023495338857174, 0.0011574116069823503, -0.0025605307891964912, -0.011179691180586815, 0.02013508230447769, 0.027001960203051567, 0.004710471257567406, 0.01333286426961422, 0.004535889718681574, -0.005227750167250633, 0.0036371175665408373, 0.016811564564704895, -0.0008898813975974917, 0.00799195934087038, 0.01097924541682005, -0.015453708358108997, 0.020523041486740112, 0.024169858545064926, -0.039364926517009735, -0.0007751101511530578, 0.05659031495451927, 0.012544014491140842, -0.014186374843120575, 0.044046301394701004, -0.016009783372282982, -0.00042028914322145283, 0.009446806274354458, 0.011593514122068882, -0.02388535439968109, 0.02031612955033779, 0.009660184383392334, 0.002675302093848586, -0.004251386038959026, 0.014406218193471432, -0.0029646549373865128, 0.007494078483432531, 0.009614922106266022, 0.021324824541807175, 0.03845968842506409, -0.02896762080490589, 0.011787493713200092, 0.03913215175271034, 0.05167616531252861, -0.009504999965429306, 0.014613130129873753, 0.012770324014127254, 0.011102098971605301, -0.001082244561985135, -0.0018363401759415865, 0.017781462520360947, -0.01474244985729456, -0.006317269057035446, 0.010035211220383644, 0.012893177568912506, 0.010002881288528442, 0.011127962730824947, -0.025269076228141785, 0.029174532741308212, -0.02424745075404644, 0.008392850868403912, 0.0063980938866734505, -0.012731527909636497, -0.004261085297912359, 0.008522170595824718, 0.008302327245473862, 0.020367858931422234, -0.005140459630638361, 0.022255925461649895, -0.0073647587560117245, -0.01212372537702322, 0.00507256668061018, -0.002027086913585663, -0.009621388278901577, 0.01072707213461399, 0.011858619749546051, -0.03419213742017746, -0.004949712660163641, 0.0030018342658877373, 0.027570966631174088, 0.017018476501107216, 0.006569442339241505, 0.02235938236117363, 0.03080395981669426, 0.02726059965789318, -0.011554718017578125, 0.02837274968624115, 0.04471876472234726, 0.037683770060539246, 0.01955314353108406, 0.012000870890915394, -0.01862204074859619, -0.0315798781812191, -0.04849490150809288, 0.0330282598733902, 0.00920756533741951, 0.002736728871241212, 0.003559525590389967, -0.015376116149127483, -0.01580287143588066, -0.0090135857462883, 0.038278643041849136, 0.023717239499092102, -0.019850580021739006, 0.03874419257044792, 0.0014427233254536986, 0.02480352483689785, -0.012847915291786194, 0.016940884292125702, -0.02819170244038105, -0.022488702088594437, -0.016333082690835, 0.028890028595924377, 0.042753104120492935, 0.019410891458392143, 0.021195504814386368, 0.026355361565947533, -0.01806596666574478, 0.023743102326989174, 0.007416486740112305, 0.02462247759103775, -0.02744164690375328, 0.0057030003517866135, 0.03007977083325386, 0.03796827420592308, 0.015686484053730965, -0.012375898659229279, 0.014251034706830978, 0.004296648316085339, 0.034450776875019073, 0.04226168990135193, -0.0010038444306701422, -0.014483810402452946, -0.02855379693210125, 0.026070857420563698, -0.0049238489009439945, 0.00578059209510684, -0.028036518022418022, 0.02273440919816494, 0.008586830459535122, 0.03649402782320976, -0.02896762080490589, 0.012550479732453823, 0.0055510494858026505, 0.007267768960446119, -0.027752015739679337, -0.004422734957188368, -0.041459906846284866, -0.00910410936921835, 0.036157798022031784, 0.010022279806435108, -0.006756956223398447, -0.029614219442009926, 0.016591722145676613, -0.00947913620620966, 0.014496741816401482, 0.005140459630638361, 0.0010095022153109312, 0.0067828199826180935, 0.02780374325811863, 0.022023150697350502, 0.005276245065033436, 0.07893676310777664, -0.016617584973573685, 0.002552448306232691, -0.014600197784602642, 0.03983047977089882, 0.014884700998663902, 0.01933330111205578, 0.00038088703877292573, 0.028139974921941757, 0.027700286358594894, -0.01306129340082407, 0.004050940740853548, -0.012757391668856144, 0.03119191899895668, -0.003446370828896761, -0.01474244985729456, 0.06409086287021637, -0.0026817680336534977, -0.0045973164960742, 0.03295066952705383, 0.019863510504364967, 0.009097643196582794, -0.0045391228049993515, -0.014432081952691078, 0.01619083061814308, -0.030131498351693153, 0.002284109825268388, -0.0006668049027211964, 0.015195068903267384, 0.01006107497960329, -0.011386602185666561, -0.023174095898866653, 0.03851141780614853, -0.00874848011881113, 0.03173506259918213, -0.014535537920892239, -0.014871769584715366, -0.01879015751183033, -0.0010086939437314868, -0.009000653401017189, -0.03232993185520172, -0.05767660215497017, 0.006430423818528652, 0.027493376284837723, -0.027958925813436508, 0.020018694922327995, 0.006191182415932417, -0.025088028982281685, 0.02894175611436367, 0.004836557898670435, -0.026044994592666626, 0.03517496585845947, -0.0013772551901638508, -0.006032765377312899, 0.011690503917634487, -0.0027739081997424364, 0.03137296810746193, -0.018634973093867302, -0.024169858545064926, -0.0066987620666623116, -0.0024182789493352175, -0.025488918647170067, -0.021661056205630302, 0.02969181165099144, 0.02834688499569893, -0.004257852211594582, -0.01973419077694416, 0.004257852211594582, 0.012847915291786194, -0.0062396773137152195, 0.005030537489801645, -0.025282008573412895, 0.00032249107607640326, -0.01880308985710144, 0.018841885030269623, -0.01784612238407135, 0.009744241833686829, 0.01747109554708004, -0.016940884292125702, 0.009789504110813141, 0.0023746336810290813, 0.010449034161865711, 0.04288242384791374, 0.028864163905382156, -0.0006700378726236522, -0.016294285655021667, -0.036002613604068756, 0.018298741430044174, 0.004619947634637356, 0.010080473497509956, 0.014755381271243095, 0.008147142827510834, -0.005402331706136465, -0.022424042224884033, -0.009149370715022087, 0.00371147645637393, 0.0005888089071959257, -0.036726802587509155, -0.00676988810300827, -0.02235938236117363, 0.013003098778426647, -0.0026833845768123865, -0.004619947634637356, 0.01595805585384369, 0.022889593616127968, 0.02556651085615158, -0.0030018342658877373, -0.006866877898573875, 0.007907901890575886, -0.02726059965789318, -0.027338191866874695, -0.008418714627623558, 0.021712783724069595, 0.013319932855665684, -0.04094262793660164, -0.007028527557849884, 0.006330200936645269, 0.015932191163301468, 0.02366551198065281, 0.03207129240036011, -0.016565857455134392, -0.010694742202758789, 0.010138667188584805, 0.054779838770627975, 0.022889593616127968, 0.02290252409875393, 0.001729651470668614, 0.011832755990326405, 0.0383562333881855, 0.004982042592018843, -0.007086721248924732, 0.012369432486593723, 0.005146925337612629, -0.0006813533254899085, -0.009815367870032787, 0.010358510538935661, 0.007688058074563742, -0.02123429998755455, 0.011923279613256454, 0.022993048653006554, -0.04704651981592178, 0.003772903233766556, -0.027752015739679337, -0.015169205144047737, -0.005166323389858007, 0.014716586098074913, -0.02182917110621929, -0.016048578545451164, 0.012653935700654984, -0.001563960569910705, 0.01597098633646965, 0.05353837087750435, -0.011910347267985344, 0.01484590582549572, 0.024544885382056236, 0.021480007097125053, 0.014988156966865063, -0.0008438112563453615, -0.023199960589408875, 0.0012398529797792435, -0.01915225200355053, 0.013669095933437347, 0.019397960975766182, 0.0278296060860157, -0.007041459437459707, 0.00825706496834755, -0.002921009436249733, 0.013397524133324623, 0.017626279965043068, 0.007856173440814018, 0.0027221804484725, 0.004917382728308439, 0.016294285655021667, 0.019229844212532043, -0.03320930898189545, -0.016462402418255806, -0.03582156449556351, 0.014807109721004963, -0.016785701736807823, -0.004839790984988213, 0.02648468129336834, 0.013307000510394573, 0.014160511083900928, 0.006136221345514059, 0.010397306643426418, 0.0008203720790334046, 0.014212238602340221, -0.006372229661792517, 0.00013204757124185562, -0.010009347461163998, 0.026070857420563698, 0.018712565302848816, 0.029355579987168312, 0.011425398290157318, -0.008858401328325272, -0.007953163236379623, -0.0010450651170685887, 0.010190394707024097, 0.018557380884885788, -0.021014457568526268, -0.03442491218447685, 0.02235938236117363, -0.02085927315056324, -0.0042740171775221825, -0.02422158606350422, -0.04702065512537956, 0.03530428558588028, -0.026394156739115715, -0.008017823100090027, -0.00808248296380043, 0.018932409584522247, 0.03998566046357155, 0.013850143179297447, 0.00760400015860796, 0.014613130129873753, 0.0032071294263005257, -0.004012144636362791, 0.003216828452423215, -0.0168762244284153, -0.020070422440767288, 0.00949206855148077, -0.014173442497849464, -0.01804010197520256, -0.00938861258327961, -0.014794177375733852, 0.0007124709081836045, 0.02762269601225853, 0.04096849262714386, 0.03884764760732651, -0.04303760826587677, 0.029019348323345184, 0.031502287834882736, 0.011030972935259342, -0.021867966279387474, -0.02801065519452095, 0.003575690556317568, 0.012104326859116554, 0.020755818113684654, 0.0020755818113684654, -0.03770963475108147, -0.04435667023062706, -0.010558956302702427, 0.0035918555222451687, 0.010836993344128132, -0.0202644020318985, 0.04562400281429291, -0.020755818113684654, -0.014134647324681282, -0.0009311020839959383, 0.005340904928743839, -0.01522093266248703, -0.0408908985555172, -0.01824701391160488, 0.006136221345514059, -0.013177680782973766, -0.008742013946175575, 0.022837864235043526, 0.030571185052394867, -0.0037082433700561523, 0.005331206135451794, 0.001941412454470992, -0.024312110617756844, 0.03708890080451965, 0.010293850675225258, 0.007862639613449574, -0.03589915856719017, -0.019785920158028603, -0.011632310226559639, -0.002340687206014991, 0.017134863883256912, -0.016307218000292778, -0.005680369213223457, 0.004781597293913364, -0.04792589321732521, 0.0031376199331134558, 0.0007540956721641123, -0.01783319190144539, 0.01352684386074543, 0.007241905201226473, 0.025838082656264305, -0.006598539184778929, 0.03137296810746193, 0.00661470415070653, -0.0012729911832138896, 0.011418932117521763, 0.0009860629215836525, -0.024105198681354523, 0.013410456478595734, -0.029071075841784477, 0.011438330635428429, -0.0026138750836253166, 0.010862858034670353, 0.011231418699026108, -0.027131279930472374, 0.01060421857982874, 0.025139756500720978, 0.018699632957577705, 0.013028963468968868, 0.03608020395040512, -0.010675343684852123, 0.008586830459535122, -0.03323516994714737, 0.003329983213916421, 0.02309650368988514, -0.002221066504716873, 0.06491850316524506, 0.010009347461163998, 0.00441950187087059, -0.023432735353708267, -0.007500544656068087, -0.02912280336022377, 0.02012214995920658, 0.009795970283448696, 0.004467996768653393, 0.036726802587509155, 0.03998566046357155, -0.017328843474388123, 0.01249875221401453, 0.030364273115992546, 0.006210580002516508, -0.005402331706136465, -0.011212021112442017, 0.004710471257567406, -0.009899425320327282, 0.05865943059325218, -0.006834547966718674, 0.025217348709702492, -0.008418714627623558, -0.03320930898189545, 0.026639865711331367, 0.01344925258308649, -0.03628711774945259, 0.008379918523132801, -0.0012891561491414905, 0.004345143213868141, -0.007028527557849884, 0.003118222113698721, 0.004982042592018843, -0.007720388006418943, -0.008903663605451584, -0.029277987778186798, 0.011580581776797771, -0.0012705663684755564, 0.010080473497509956, 0.0013214860809966922, 0.010481364093720913, -0.026420021429657936, -0.003698544343933463, -0.010216259397566319, 0.011793959885835648, 0.003488399786874652, 0.02777787856757641, 0.007138449233025312, -0.02123429998755455, 0.0062008812092244625, -0.01988937519490719, 0.025062164291739464, -0.029226260259747505, -0.002395648043602705, -0.006847479846328497, 0.021480007097125053, -0.015363184735178947, -0.02332928031682968, 0.03046773001551628, 0.019268641248345375, 0.004400103818625212, -0.01503988541662693, -0.005990736652165651, 0.004493860527873039, 0.05245208367705345, -0.0144579466432333, -0.007694524247199297, 0.020600633695721626, 0.0033914099913090467, 0.05051228776574135, -0.04733102396130562, -0.003144086105749011, 0.02912280336022377, 0.02816583774983883, 0.0012746076099574566, 0.029226260259747505, 0.018647905439138412, 0.01707020401954651, -0.0068216160871088505, 0.023199960589408875, -0.028243429958820343, 0.018324606120586395, -0.030933279544115067, 0.002209750935435295], [0.014652407728135586, -0.01479243952780962, 0.006046823691576719, 0.10408174246549606, 0.0036471893545240164, -0.0009086147765628994, -0.008185489103198051, 0.05565623566508293, 0.02203589864075184, 0.013570345006883144, -0.015709010884165764, 0.02930481545627117, 0.01505977287888527, 0.03602633625268936, 0.0038731496315449476, 0.024429166689515114, 0.0162691380828619, 0.02403453178703785, -0.014563296921551228, 0.00688064843416214, 0.016854725778102875, 0.02688608691096306, -0.03225821256637573, 0.017796756699681282, 0.009834044612944126, -0.005375307984650135, 0.0031889036763459444, -0.037655796855688095, 0.04043097048997879, -0.04249325767159462, 0.016370978206396103, -0.029253896325826645, 0.03645916283130646, 0.01262194849550724, 0.027293451130390167, 0.020762883126735687, -0.030654212459921837, 0.020406438037753105, 0.01000590156763792, 0.0023646261543035507, -0.019515328109264374, 0.0031093403231352568, 0.022443262860178947, 0.051709890365600586, -0.03376036882400513, 0.002861102344468236, -0.001168787362985313, -0.040761955082416534, -0.03628094121813774, 0.027573514729738235, 0.014932471327483654, 0.03875059261918068, -0.004318704828619957, -0.025002023205161095, 0.012150933034718037, -0.014041360467672348, 0.005222545936703682, -0.014588757418096066, 0.046948809176683426, -0.05463782325387001, -0.007128886878490448, -0.01214456744492054, -0.0019668089225888252, 0.013493964448571205, 0.0033384831622242928, -0.021679453551769257, -0.004484197124838829, 0.028337324038147926, -0.0686919167637825, -0.02416183426976204, 0.04007452726364136, 0.0237162783741951, -0.030170466750860214, 0.01696929708123207, 0.023665357381105423, 0.03167262673377991, 0.0099422512575984, -0.006155029870569706, 0.035720814019441605, -0.010610584169626236, -0.05855870991945267, -0.03717205300927162, -0.018687866628170013, -0.00524800643324852, -0.006447823252528906, 0.00017484072304796427, -0.0652802363038063, 0.0006520226015709341, -0.0025189793668687344, 0.0013159797526896, 0.011107060126960278, 0.010706060566008091, -0.008694695308804512, 0.03348030522465706, -0.00838917214423418, -0.007930886000394821, 0.026376880705356598, 0.00022615915804635733, -0.027318911626935005, 0.013824948109686375, -0.050182271748781204, -0.011800853535532951, -0.036764685064554214, -0.0153143759816885, 0.04106747731566429, -0.03174900636076927, -0.005916339345276356, 0.04111839830875397, 0.020062724128365517, 0.0037363003939390182, 0.009700377471745014, 0.008185489103198051, -0.014614217914640903, 0.04460646212100983, 0.00684882327914238, -0.018726058304309845, 0.0174403116106987, -0.02162853255867958, -0.056878332048654556, 0.00043083616765215993, -0.006247323472052813, 0.0018156382720917463, -0.0036344591062515974, -0.06543299555778503, 0.016180027276277542, -0.021450310945510864, -0.0433843657374382, 0.012672869488596916, -0.035313449800014496, -0.034422338008880615, -0.0032971100881695747, -0.007217997685074806, 0.003838141681626439, -0.06472010910511017, -0.021475771442055702, -0.02650418132543564, -0.008675600402057171, -0.06502562761306763, -0.024747420102357864, -0.0008202993194572628, -0.013824948109686375, -0.013201170600950718, 0.0018824716098606586, 0.011679916642606258, -0.04715249314904213, 0.0006468509673140943, 0.00901931431144476, 0.018382342532277107, -0.018815169110894203, -0.013137519359588623, -0.045013826340436935, 0.04180582985281944, 0.02377992868423462, -0.0074726007878780365, 0.005419863387942314, -0.02841370552778244, -0.014219583012163639, 0.02739529311656952, -0.0033321180380880833, 0.02235415205359459, 0.00654966477304697, -0.021679453551769257, 0.017465772107243538, -0.007599902339279652, 0.0074471402913331985, 0.016880184412002563, 0.01259012334048748, 0.017453042790293694, -0.0410420186817646, -0.042187731713056564, 0.013544884510338306, -0.04595585912466049, 0.005913157016038895, -0.034040432423353195, -0.00013724698510486633, -0.031978148967027664, 0.05089515820145607, 0.04012544825673103, -0.011902694590389729, -0.011183440685272217, 0.04132208228111267, 0.05260099843144417, -0.03981992229819298, 0.006126387044787407, -0.019273454323410988, -0.0028722411952912807, -0.0529574453830719, 0.02403453178703785, -0.025014754384756088, 0.02562580071389675, 0.0004169125750195235, -0.0576421394944191, 0.018726058304309845, -0.03011954575777054, 0.02086472325026989, -0.023805389180779457, -0.02248145267367363, 0.01842053420841694, -0.011202536523342133, -0.047610778361558914, 0.011482599191367626, -0.029355736449360847, 0.011628996580839157, -0.032996561378240585, 0.002483971416950226, 0.026937007904052734, -0.03691744804382324, -0.011196170933544636, 0.03432049602270126, -0.012501011602580547, 0.018025899305939674, -0.03994722664356232, -0.0075426166877150536, 0.025473039597272873, 0.03775763884186745, -0.026325959712266922, 0.03452417999505997, -0.03612817823886871, 0.0004789720696862787, -0.025231165811419487, -0.008930203504860401, 0.010706060566008091, 0.028999293223023415, 0.0034275942016392946, -0.01750396192073822, 0.02866830863058567, 0.026911547407507896, -0.00196999148465693, -0.013799487613141537, -0.07597356289625168, -0.0791306421160698, 0.02622411958873272, 0.008981124497950077, -0.011189806275069714, -0.03864875063300133, 0.05759121850132942, -0.03238551318645477, -0.01965535804629326, 0.0057158395648002625, -0.024721959605813026, 0.025014754384756088, -0.013710376806557178, 0.027471674606204033, -0.0037904034834355116, 0.015645360574126244, 0.004579673055559397, -0.00849737785756588, -0.00891110859811306, 0.02120843715965748, -0.025956785306334496, 0.014957931824028492, 0.05372125282883644, 0.06604404002428055, -0.034931544214487076, -0.01635824888944626, 0.010928837582468987, 0.031087037175893784, -0.027166150510311127, 0.024110913276672363, -0.010890647768974304, 0.019489867612719536, -0.009152981452643871, 0.002848372096195817, -0.020470088347792625, -0.049927666783332825, -0.04277332127094269, 0.0404055118560791, -0.02229050174355507, -0.013341202400624752, 0.05825318768620491, -0.05652188882231712, 0.04969852417707443, -0.006466918624937534, 0.01801316812634468, -0.07887604087591171, 0.014105011709034443, -0.019133422523736954, 0.008701060898602009, -0.021794024854898453, 0.0009977258741855621, -0.034931544214487076, -0.040736496448516846, 0.012501011602580547, -0.038037702441215515, 0.06884467601776123, 0.004060919396579266, 0.022723326459527016, -0.006104109343141317, 0.016752883791923523, -0.025600342079997063, 0.021335739642381668, -0.001716979662887752, 0.01214456744492054, 0.02096656523644924, -0.006963394582271576, -0.026580562815070152, -0.015441677533090115, 0.034931544214487076, 0.04677058756351471, 0.02856646664440632, 0.03330208361148834, 0.04829820618033409, -0.03434595838189125, 0.01684199459850788, -0.001998634310439229, -0.004102292470633984, 0.033658530563116074, -0.017134787514805794, -0.004942482803016901, -0.04351167008280754, -0.03437141701579094, -0.0013509877026081085, -0.08305153250694275, 0.016129106283187866, 0.009840409271419048, -0.032894719392061234, -0.031596243381500244, 0.05028411000967026, 0.03434595838189125, -0.03821592405438423, 0.049647603183984756, 0.00262400321662426, 0.012182758189737797, -0.015212534926831722, -0.005372125189751387, 0.0066769663244485855, 0.02866830863058567, 0.05300836265087128, -0.015645360574126244, 0.026656944304704666, -0.020661041140556335, 0.0024203206412494183, 0.054434143006801605, 0.04470830410718918, -0.042060431092977524, -0.06034093350172043, -0.006734251976013184, 0.01049601286649704, -0.0024457809049636126, -0.05053871497511864, -0.04995312541723251, 0.00190474942792207, -0.032996561378240585, 0.007351664360612631, -0.024454627186059952, 0.04575217515230179, 0.009140251204371452, -0.004964760504662991, -0.019069772213697433, 0.017007486894726753, -0.01446145586669445, -0.005839958321303129, -0.030908815562725067, 0.0028245029971003532, -0.04221319407224655, 0.005553530063480139, 0.01428323332220316, -0.018153199926018715, -0.008694695308804512, 0.027573514729738235, -0.020877454429864883, -0.009840409271419048, -0.005515339318662882, 0.038954272866249084, 0.026555102318525314, 0.010967028327286243, -0.06288696080446243, 0.004675149451941252, 0.0210556760430336, -0.01597634330391884, 0.006027728319168091, 0.044631920754909515, 0.058456871658563614, 0.0036185465287417173, 0.02213773876428604, 0.02330891415476799, 0.00684245815500617, 0.021004755049943924, 0.004363260697573423, -0.013583075255155563, 0.018980661407113075, -0.001442485605366528, -0.002970899920910597, 0.054688744246959686, 0.019413486123085022, 0.027980880811810493, -0.03075605444610119, -0.006126387044787407, -0.0060531883500516415, 0.0065114740282297134, 0.032105449587106705, -0.056114520877599716, -0.04740709438920021, -0.004280514549463987, -0.024467356503009796, 0.04725433513522148, -0.02356351725757122, 0.048374589532613754, 0.0010438726749271154, 0.0015952475368976593, -0.03668830543756485, -0.02320707216858864, 0.0006758916424587369, -0.06110474094748497, 0.01633278839290142, 0.016027264297008514, -0.023703547194600105, -0.0325382761657238, -0.06431274116039276, -0.001712205819785595, 0.051327984780073166, -0.01163536123931408, 0.03948894143104553, 0.00500931590795517, 0.008892012760043144, 0.021832214668393135, -0.02594405598938465, 0.05967896431684494, -0.018305962905287743, 0.025473039597272873, 0.0663495659828186, 0.014117741957306862, -0.032207291573286057, 0.03141802176833153, -0.004789720755070448, 0.0474325567483902, 0.02603316679596901, -0.009254822507500648, 0.04284970089793205, -0.024938372895121574, -0.026682404801249504, 0.020024534314870834, -0.005652188789099455, 0.009152981452643871, 0.026058627292513847, -0.053670331835746765, 0.017007486894726753, 0.03060329146683216, -0.042544178664684296, -0.024963833391666412, -0.025829484686255455, -0.051862649619579315, 0.017809486016631126, -0.008955664001405239, -0.030246848240494728, -0.036764685064554214, 0.014996122568845749, -0.02650418132543564, -0.01290837675333023, 0.042544178664684296, 0.0036471893545240164, 0.01763126440346241, -0.04440277814865112, 0.015658089891076088, 0.019617168232798576, -0.07984352856874466, 0.011450774036347866, -0.010044092312455177, 0.023678088560700417, 0.047610778361558914, 0.04007452726364136, 0.07836683094501495, 0.028846530243754387, 0.011947249993681908, 0.045675795525312424, 0.0003289949381724, -0.04208588972687721, -0.0022627850994467735, -0.04503928869962692, 0.0010939976200461388, -0.03651008382439613, 0.03745211660861969, 0.018764248117804527, -0.012571027502417564, -0.001507727662101388, -0.00819821935147047, -0.003257328411564231, -0.01943894661962986, 0.0019477136665955186, 0.025192975997924805, -0.01671469397842884, 0.008414632640779018, -0.014703328721225262, -0.005480331834405661, 0.12465367466211319, 0.03022138774394989, 0.04794176295399666, 0.01912069320678711, -0.04376627132296562, -0.018853358924388885, -0.028235483914613724, 0.021030215546488762, 0.02232869155704975, -0.013016583397984505, -0.021526692435145378, 0.026580562815070152, 0.05952620506286621, 0.01505977287888527, -0.0005999085260555148, 0.021934056654572487, -0.041525766253471375, -0.03839414566755295, -0.019706279039382935, 0.015110693871974945, 0.008739251643419266, -0.005429410841315985, -0.00422641122713685, 0.036255478858947754, -0.011094329878687859, -0.018369613215327263, -0.04478468373417854, 0.008694695308804512, -0.014996122568845749, 0.03129072114825249, 0.00039841406396590173, -0.03566989302635193, 0.05280468240380287, -0.012615582905709743, 0.0033448480535298586, -0.0034148639533668756, 0.033633068203926086, 0.03011954575777054, 0.022965198382735252, 0.007211632560938597, -0.01024140976369381, 0.008204584941267967, -0.06609496474266052, -0.04633776471018791, 0.02099202573299408, -0.0019524875096976757, -0.05412861704826355, -0.0476362407207489, -0.028770150616765022, 0.016001803800463676, -0.0034180465154349804, -0.025231165811419487, -0.00471652252599597, -0.004041824024170637, 0.007007949985563755, 0.022214120253920555, -0.016829265281558037, 0.007033410482108593, 0.022252310067415237, 0.01019685436040163, 0.054688744246959686, -0.014181392267346382, 0.005432593636214733, -0.017987709492444992, 0.015530788339674473, -0.016511010006070137, -0.004789720755070448, 0.003244598163291812, 0.023996341973543167, 0.0013040452031418681, 0.006937934551388025, -0.0023980429396033287, 0.0016787891509011388, -0.004942482803016901, 0.014868821017444134, -0.003020229283720255, -0.030195927247405052, 0.026682404801249504, -0.018827898427844048, -0.023996341973543167, -0.03994722664356232, 0.025804024189710617, -0.022277770563960075, -0.03783401846885681, -0.007561712060123682, -0.027929959818720818, -0.027700817212462425, 0.015097963623702526, 0.002146622398868203, 0.010413266718387604, 0.039590779691934586, -0.01045145746320486, 0.03498246520757675, 0.003510340116918087, 0.0070143151096999645, 0.025536689907312393, 0.02346167527139187, -0.0008974759257398546, 0.02762443572282791, 0.006244140677154064, -0.037655796855688095, 0.009999536909162998, -0.016192756593227386, -0.03373491019010544, -0.01950259692966938, 0.0010032952995970845, -0.01607818529009819, -0.0042836968787014484, 0.01918434351682663, 0.027089769020676613, 0.035975418984889984, 0.014932471327483654, -0.012520107440650463, -0.021488500759005547, 0.006059553474187851, 0.0019604437984526157, -0.029228435829281807, -0.04442824050784111, 0.0052320933900773525, 0.019273454323410988, -0.036637384444475174, -0.01081426627933979, -0.021323008462786674, -0.048629190772771835, 0.06298880279064178, 0.030068624764680862, 0.043053384870290756, 0.0030138641595840454, -0.024951104074716568, -0.05708201229572296, -0.0201009139418602, -0.006861553527414799, -0.03966716304421425, -0.032232750207185745, 0.02165399305522442, 0.022901548072695732, -0.05158258602023125, -0.007580806966871023, -0.0052734664641320705, -0.026937007904052734, -0.01737666130065918, 0.013303011655807495, 0.016116375103592873, -0.02622411958873272, -0.005022046156227589, -0.025638531893491745, -0.015454407781362534, -0.014372345060110092, -0.054077696055173874, -0.02307976968586445, 0.0013621265534311533, 0.039845384657382965, -0.004363260697573423, -0.005053871311247349, 0.04893471300601959, 0.00024087839119601995, -0.009299377910792828, -0.038012243807315826, 0.01671469397842884, -0.03903065621852875, 0.023296182975172997, 0.032105449587106705, 0.0008815632318146527, 0.016218217089772224, 0.08172759413719177, 0.00382541143335402, 0.017554882913827896, -0.002464876277372241, -0.0021800389513373375, -0.020750151947140694, 0.01994815282523632, 0.003252554452046752, -0.03628094121813774, 0.012074551545083523, -0.01658739149570465, 0.02216319926083088, -0.0060531883500516415, 0.03141802176833153, -0.013659455813467503, -0.04045643284916878, 0.050309572368860245, 0.03516068682074547, 0.004417363554239273, -0.017656724900007248, 0.02397088147699833, -0.03561897203326225, 0.010769710876047611, -0.01633278839290142, 0.04427547752857208, -0.022659676149487495, 0.040354590862989426, -0.003698109881952405, -0.031850848346948624, 0.03897973522543907, -0.008000901900231838, 0.00047101572272367775, 0.0031395743135362864, 0.023487135767936707, 0.001058194087818265, 0.025727642700076103, 0.011310742236673832, -0.013926789164543152, -0.027955420315265656, 0.0053275697864592075, -0.02330891415476799, 0.007440775632858276, -0.026809705421328545, 0.010075917467474937, -0.0011679916642606258, -0.014321424067020416, 0.009038410149514675, 0.04924023896455765, -0.0025683087296783924, -0.01376129686832428, 0.015861772000789642, -0.030679672956466675, 0.01160353608429432, 0.014690598472952843, 0.01674015261232853, -0.0891110822558403, -0.02339802496135235, -0.03755395486950874, -0.008007267490029335, -0.0014949975302442908, 0.02856646664440632, 0.039056114852428436, 0.014423265121877193, -0.004334617871791124, -0.036230020225048065, 0.014677868224680424, 0.002129118423908949, 0.019451675936579704, -0.05448506399989128, 0.017325740307569504, 0.02828640304505825, -0.012278234586119652, -0.01420685276389122, 0.008809266611933708, -0.03994722664356232, -0.004872466903179884, -0.02539665810763836, -0.004267784301191568, -0.021577611565589905, -0.030272308737039566, -0.005184355657547712, 0.006244140677154064, 0.0241363737732172, -0.011679916642606258, -0.006969759706407785, -0.008230045437812805, -0.022888818755745888, -1.2002895346086007e-05, 0.005190720781683922, 0.037910401821136475, 0.021934056654572487, -0.025014754384756088, 0.06477102637290955, -0.01871332712471485, 0.025473039597272873, 0.02907567285001278, 0.0052161808125674725, 0.014626948162913322, -0.027318911626935005, 0.0016596938949078321, 0.012074551545083523, -0.008000901900231838, 0.014448725618422031, 0.010362345725297928, 0.004544665105640888, -0.013493964448571205, 0.009254822507500648, -0.006855188403278589, 0.019006121903657913, 0.02403453178703785, 0.03355668857693672, 0.03696836903691292, -0.006683331448584795, 0.02184494584798813, -0.019731739535927773, 0.002681288868188858, 0.031163418665528297, -0.02003726363182068, -0.009127520956099033, -0.03890335187315941, 0.01567082107067108, 0.007548981811851263, 0.01984631083905697, -0.008586489595472813, -0.046185001730918884, 0.02600770629942417, 0.012418266385793686, -0.01763126440346241, -0.044250018894672394, -0.019833581522107124, 0.02596951648592949, -0.034396879374980927, -0.0032318681478500366, -0.009477600455284119, 0.011425313539803028, -0.010044092312455177, -0.04262055829167366, -0.019413486123085022, -0.017363931983709335, -0.0015785391442477703, 0.02826094441115856, 0.025765832513570786, -0.024276405572891235, -0.01569628156721592, -0.00784814078360796, -0.04414817690849304, -0.015199804678559303, -0.008160029537975788, -0.0026494634803384542, -0.036866527050733566, -0.021233897656202316, -0.014830630272626877, 0.009509425610303879, -0.011718107387423515, 0.011278917081654072, -0.004255054052919149, 0.05209179222583771, -0.007727203890681267, -0.02511659450829029, -0.00684245815500617, 0.0010398945305496454, -0.031468942761421204, -0.00032561348052695394, 0.023423485457897186, -0.023423485457897186, 0.03241097554564476, 0.014817900024354458, -0.027853578329086304, -0.0410420186817646, 0.018280502408742905, -0.019477136433124542, -0.00010671449854271486, 0.0153143759816885, -0.039870843291282654, 0.016689233481884003, -0.00631733937188983, 0.0073898546397686005, 0.01990996114909649, -0.006887013558298349, 0.00633325194939971, -0.002959761070087552, -0.020762883126735687, -0.022812437266111374, -0.0032557370141148567, -0.015989074483513832, 0.005680831614881754, -0.013137519359588623, -0.0071225217543542385, -0.003898609895259142, 0.03246189281344414, -0.018573295325040817, 0.015008852817118168, 0.049673065543174744, 0.01569628156721592, -0.047738078981637955, -0.011724472045898438, -0.027089769020676613, 0.008051822893321514, 0.004576490726321936, -0.019833581522107124, -0.0019031581468880177, -0.01447418611496687, 0.01665104180574417, -0.019617168232798576, -0.038037702441215515, -0.012768344953656197, 0.0518881119787693, -0.0010446683736518025, -0.0030552372336387634, 0.01030506007373333, -0.00784814078360796, -0.023538056761026382, -0.029228435829281807, -0.0323345921933651, -0.00942031480371952, 0.017593074589967728, -0.016154566779732704, -0.003379856003448367, 0.05234639719128609, -0.010897012427449226, 0.028082720935344696, 0.0003894631809089333, 0.023410754278302193, 0.005088879261165857, -0.0003146735252812505, -0.012049091048538685, -0.01049601286649704, 0.01652374118566513, -0.0017519874963909388, 0.0100504569709301, -0.028770150616765022, -0.00634279940277338, -0.0062186806462705135, 0.018025899305939674, 0.0019365748157724738, -0.01731301099061966, 0.024836532771587372, -0.011208901181817055, -0.0039081573486328125, 0.030832434073090553, 0.00014142406871542335, 0.01747850328683853, -0.007440775632858276, 0.0018092732643708587, 0.05092062056064606, -0.053670331835746765, -0.006199585273861885, 0.003593086265027523, -0.004636958707123995, 0.015288915485143661, -0.03409135341644287, 0.008561029098927975, -0.018191391602158546, 0.01816593110561371, -0.01937529630959034, -0.003799951169639826, 0.003379856003448367, -0.004920204635709524, -0.019273454323410988, 0.0031523045618087053, -0.01420685276389122, 0.022455992177128792, -0.005442141089588404, -0.030043164268136024, -0.02007545344531536, -0.014550566673278809, 0.01635824888944626, -0.009961346164345741, 0.021233897656202316, -0.004837458953261375, -0.025829484686255455, 0.02826094441115856, 0.03694291040301323, -0.029253896325826645, -0.003274832386523485, 0.018344152718782425, 0.01550532877445221, -0.03271649777889252, 0.007370759733021259, 0.00395589554682374, 0.011851773597300053, -0.030425069853663445, -0.04343528673052788, 0.043486207723617554, 0.03864875063300133, 0.04832366853952408, -0.011208901181817055, -0.008872917853295803, 0.0391324944794178, -0.00662604533135891, 0.011043408885598183, -0.009904060512781143, -0.025663992390036583, -0.039463479071855545, 0.001585699850693345, -0.016472820192575455, -0.02120843715965748, 0.003453054465353489, 0.0198845025151968, -0.015709010884165764, 6.63360406178981e-05, 0.005060236435383558, -0.03989630565047264, -0.004267784301191568, 0.05540163442492485, 0.0025762650184333324, -0.006110474467277527, -0.006708791479468346, 0.013659455813467503, -0.03406589478254318, 0.01788586750626564, -0.004888379480689764, 0.002046372275799513, 0.0001655914675211534, 0.02260875515639782, -0.005563077516853809, 0.03773218020796776, 0.0009818131802603602, 0.0013390531530603766, -0.029126593843102455, -0.013672186061739922, -0.0037426655180752277, -0.05927160009741783, 0.05519795045256615, 0.039870843291282654, -0.02267240546643734, 0.017542153596878052, -0.013812217861413956, -0.02562580071389675, 0.027929959818720818, 0.022112278267741203, 0.015187074430286884, -0.04857826977968216, 0.035440750420093536, 0.024900183081626892, -0.006384172476828098, -0.041271161288022995, -0.028617387637495995, 0.006670601200312376, -0.021424850448966026, 0.0312652587890625, -0.006250505801290274, 0.0023280270397663116, 0.02673332579433918, 0.0036917447578161955, 0.0066069504246115685, -0.013710376806557178, 0.012711059302091599, -0.011317107826471329, -0.02118297666311264, 0.04292608052492142, 0.057794902473688126, -0.0044237286783754826, -0.016892915591597557, 0.007116156630218029, 0.011024313978850842, -0.03564443439245224, 0.02171764336526394, 0.0033002926502376795, -0.024709230288863182, -0.009553981013596058, 0.029864942654967308, 0.03528798744082451, 0.01975720003247261, -0.0011393488384783268, 0.05142982676625252, -0.016816534101963043, -0.011699012480676174, 0.014321424067020416, -0.028591927140951157, -0.05074239522218704, -0.005012498237192631, 0.03177446499466896, -0.007288013584911823, -0.015467138029634953, -0.02514205500483513, 0.020724691450595856, -0.04453008249402046, 0.006244140677154064, 0.06212315335869789, 0.015110693871974945, -0.0066069504246115685, 0.011724472045898438, 0.00367901474237442, 0.02565126121044159, -0.0009491921518929303, -0.007886330597102642, 0.04511566832661629, -0.009776758961379528, -0.004560578148812056, -0.03256373479962349, 0.02045735903084278, 0.01309932954609394, -0.01428323332220316, -0.008045458234846592, 0.0469997301697731, -0.019260725006461143, 0.027955420315265656, -0.005184355657547712, -0.025167515501379967, 0.008045458234846592, -0.009343933314085007, -0.027955420315265656, 0.029533958062529564, -0.028871990740299225, 0.04043097048997879, 0.0042009511962533, -0.03592449799180031, -0.005037958733737469, -1.3724697964789812e-05, -0.0017026582499966025, -0.007962712086737156, 0.025702182203531265, -0.02441643737256527, -0.01835688389837742, 0.007886330597102642, 0.023550786077976227, -0.01775856502354145, -0.004862918984144926, 0.03681560605764389, 0.01369764655828476, 0.02381812036037445, 0.03266557678580284, 0.02324526198208332, 0.030068624764680862, 0.014957931824028492, 0.02292700856924057, 0.004150030668824911, -0.03383675217628479, 0.01045145746320486, -0.019642628729343414, 0.0023518961388617754, 0.021959517151117325, 0.008000901900231838, 0.003564443439245224, -0.009846774861216545, -0.006829727906733751, 0.010820631869137287, 0.013188440352678299, 0.010266869328916073, -0.014550566673278809, 0.024951104074716568, 0.0065114740282297134, -0.01788586750626564, -0.00017553690122440457, -0.022723326459527016, 0.02498929388821125, 0.014041360467672348, 0.01236734539270401, -0.012214583344757557, -0.004551030229777098, 0.03129072114825249, 0.02343621477484703, 0.035186149179935455, 0.0028213204350322485, -0.017593074589967728, 0.014563296921551228, 0.02856646664440632, -0.01763126440346241, -0.0027115228585898876, -0.00948396511375904, -0.0036153639666736126, 0.02565126121044159, -0.03826684504747391, 0.05038595199584961, -0.0020288683008402586, 0.02232869155704975, 0.006008632946759462, 0.004080014768987894, -0.02518024668097496, 0.004000450950115919, 0.02581675350666046, -0.010107742622494698, -0.0010979758808389306, -0.0300940852612257, 0.00029358919709920883, 0.0248874519020319, 0.02815910242497921, -0.02209954895079136, 0.022023167461156845, 0.03910703584551811, -0.018369613215327263, -0.015339836478233337, 0.0013597396900877357, -0.01912069320678711, -0.05662372708320618, 0.014563296921551228, 0.011762662790715694, -0.0013318924466148019, -0.035313449800014496, -0.01185813918709755, 0.013379392214119434, -0.0026271857786923647, 0.0021513961255550385, 0.006002267822623253, -0.020750151947140694, 0.0013438269961625338, 0.03875059261918068, -0.006479648873209953, 0.07240912318229675, -0.019426215440034866, -0.007205267436802387, -0.011807218194007874, 0.021895866841077805, 0.008777441456913948, -0.0015188666293397546, 0.020571930333971977, -0.0025492135901004076, 0.011119790375232697, -0.027471674606204033, 0.024492816999554634, -0.021221168339252472, 0.013493964448571205, -0.02178129553794861, -0.002595360390841961, 0.014652407728135586, 0.01607818529009819, 0.014919741079211235, -0.0056776488199830055, 0.007937251590192318, -0.014754249714314938, 0.011380758136510849, -0.00916571170091629, 0.0035612608771771193, 0.010916107334196568, 0.009694012813270092, 0.009846774861216545, 0.03419319540262222, 0.029355736449360847, 0.022850627079606056, -0.028744690120220184, -0.0026940188836306334, 0.011616266332566738, -0.012259138748049736, -0.012768344953656197, -0.02156488224864006, 0.02181948535144329, -0.010075917467474937, 0.03414227440953255, -0.00471652252599597, -0.033123861998319626, 0.016765613108873367, 0.014665137976408005, -0.009095695801079273, 0.02064831182360649, -0.026173198595643044, 0.007975442335009575, 0.03574627265334129, -0.0025874038692563772, -0.031825385987758636, 0.004576490726321936, -0.00783541053533554, -0.010534202679991722, 0.035440750420093536, 0.02711522951722145, 0.0033321180380880833, -0.0007160712266340852, 0.002394860377535224, -0.010476917028427124, -0.022061357274651527, -0.03246189281344414, -0.014054090715944767, 0.014512376859784126, 0.015441677533090115, 0.01873878762125969, -0.04654144495725632, 0.020661041140556335, -0.02029186673462391, 0.046312302350997925, -0.005438958760350943, -0.0062314108945429325, 0.009770393371582031, -0.006400085519999266, 0.007440775632858276, 0.012246408499777317, -0.014601487666368484, 0.029559418559074402, -0.013723107054829597, -0.003596268827095628, -0.0028181381057947874, -0.006215497851371765, 0.04470830410718918, 0.022977929562330246, -0.027598975226283073, -0.0024712414015084505, -0.03332754597067833, 0.043613508343696594, 0.060646455734968185, -0.0012101603206247091, -0.0028515546582639217, -0.004258236847817898, -0.0105278380215168, -0.011660821735858917, 0.005384855438023806, 0.013824948109686375, -0.006005450617522001, -0.016689233481884003, -0.005458053667098284, -0.026809705421328545, 0.010139568708837032, -0.04213681071996689, -0.03788493946194649, 0.026376880705356598, -0.008312790654599667, 0.02486199140548706, -0.001614342792890966, 0.0012348250020295382, 0.02337256446480751, -0.013799487613141537, -0.030297767370939255, -0.01376129686832428, 0.026631483808159828, -0.030654212459921837, -0.036611925810575485, -0.015072503127157688, -0.001790178008377552, -0.019617168232798576, 0.010432361625134945, 0.021475771442055702, -0.00714161666110158, -0.005104791838675737, 0.04226411506533623, 0.044377319514751434, -0.03826684504747391, 0.022876087576150894, 0.0035039749927818775, 0.053262967616319656, 0.02454373799264431, 0.01816593110561371, -0.003225503023713827, -0.014155931770801544, 0.010044092312455177, 0.003796768607571721, 0.005948164965957403, 0.010801536031067371, 0.004013181198388338, 0.0057603949680924416, 0.04987674579024315, 0.02397088147699833, -0.016090916469693184, 0.009808584116399288, -0.007994537241756916, -0.0022166382987052202, -0.021424850448966026, -0.006463736295700073, 0.015212534926831722, -0.04312976449728012, 0.012093647383153439, 0.03574627265334129, 0.0003737493825610727, 0.01763126440346241, 0.002934300573542714, 0.02933027595281601, 0.01182631403207779, -0.023041579872369766, -0.02279970794916153, -0.04753439873456955, -0.009350298903882504, -0.01703294739127159, -0.008981124497950077, -0.002751304768025875, -0.0338112898170948, -0.0013509877026081085, -0.01504704263061285, 0.006893378682434559, -0.013035678304731846, -0.0038636019453406334, 0.014359614811837673, -0.006861553527414799, -0.03238551318645477, 0.00301704672165215, -0.012615582905709743, 0.0028945188969373703, -0.02828640304505825, -0.01674015261232853, -0.029406657442450523, -0.003510340116918087, -0.027064308524131775, -0.035186149179935455, 0.006600585300475359, -0.0018044994212687016, -0.008287331089377403, 0.013799487613141537, 0.01563262939453125, 0.018827898427844048, 0.03875059261918068, -0.019337104633450508, -0.009051140397787094, 0.01962989941239357, 0.012386440299451351, -0.00765082286670804, -0.0010573985055088997, -0.016320059075951576, -0.0008103539003059268, -0.01718570850789547, 0.0017106145387515426, 0.021743103861808777, -0.00262400321662426, -0.023283453658223152, -0.024314595386385918, 0.026427801698446274, 0.009095695801079273, -0.040354590862989426, -0.0578458234667778, -0.017580343410372734, 0.012851091101765633, -0.02420002408325672, -0.022048627957701683, 0.003997268620878458, -0.009318472817540169, 0.009216631762683392, 0.020953834056854248, 0.006275966297835112, 0.01060421857982874, -0.0018283685203641653, -0.0039081573486328125, -0.020953834056854248, -0.012373710051178932, -0.011985440738499165, -0.0019604437984526157, -0.009814949706196785, 0.022048627957701683, -0.008815632201731205, -0.013353932648897171, 0.015021582134068012, 0.03485516458749771, -0.005658553913235664, 0.0028133641462773085, -0.03373491019010544, 0.009388488717377186, -0.00924209225922823, 0.04328252747654915, -0.009388488717377186, -0.03345484659075737, -0.01008228212594986, -0.0044905622489750385, 8.384000102523714e-05, 0.01453783642500639, -0.038165003061294556, -0.014232313260436058, 0.006466918624937534, -0.02866830863058567, -0.001127414288930595, -0.013659455813467503, 0.038928814232349396, -0.02479834109544754, -0.009051140397787094, 0.008083648048341274, -0.02971218153834343, 0.005486696492880583, 0.013328472152352333, -0.017554882913827896, -0.018102280795574188, -0.005916339345276356, -0.043842654675245285, 0.014372345060110092, 0.003405316499993205, 0.02558761090040207, -0.02226504124701023, 0.0215903427451849, -0.05036049336194992, 0.03938709944486618, -0.007077965885400772, 0.009694012813270092, -0.013557614758610725, -0.017389390617609024, -0.0033034752123057842, 0.017071137204766273, 0.017172979190945625, -0.04343528673052788, -0.015403486788272858, 0.00499340333044529, -0.016039995476603508, -0.043613508343696594, 0.004888379480689764, -0.02277424745261669, 0.011934519745409489, -0.015148883685469627, 0.0043250699527561665, 0.012017265893518925, 0.017274819314479828, 0.014690598472952843, -0.022341420873999596, 0.006155029870569706, 0.0029358919709920883, 0.0374266542494297, 0.039336178451776505, 0.01295293215662241, -0.02020275592803955, -0.031596243381500244, -0.011317107826471329, -0.03941255807876587, -0.030450530350208282, -0.013201170600950718, 0.008446457795798779, 0.011800853535532951, 0.00035087487776763737, 0.01747850328683853, -0.023983610793948174, 0.035593513399362564, -0.041907668113708496, 0.012927472591400146, 0.041653066873550415, -0.0038445068057626486, 0.02749713510274887, 0.012691964395344257, -0.00978312361985445, -0.019999073818325996, -0.01886609010398388, -0.022723326459527016, 0.02686062641441822, 0.02137392945587635, 0.014919741079211235, -0.011520789936184883, 0.002009773161262274, -0.006829727906733751, 0.01807682029902935, 0.03164716437458992, -0.003274832386523485, 0.0006305404822342098, -0.00821094959974289, 0.002334392163902521, -0.016561930999159813, 0.07531159371137619, 0.013137519359588623, -0.013328472152352333, -0.04290062189102173, 0.0003600246855057776, 0.00997407641261816, 0.0026542372070252895, -0.013964979909360409, 0.017172979190945625, 0.025129325687885284, 0.01677834428846836, 0.006142299622297287, 0.006670601200312376, -0.003405316499993205, 0.015441677533090115, -0.029126593843102455, -0.03139256313443184, 0.04781446233391762, -0.02619865909218788, 0.013404852710664272, 0.03279287740588188, -0.0009006584296002984, 0.009744933806359768, 0.01336666289716959, -0.0035899037029594183, -0.008879282511770725, -0.00010770904191303998, 0.026147738099098206, 0.018000438809394836, -0.007695378735661507, -0.029483038932085037, -0.021284818649291992, 0.00290884030982852, 0.010763346217572689, 0.004643323831260204, -0.006543299648910761, 0.011361663229763508, 0.005076149012893438, -0.006451006047427654, 0.03645916283130646, -0.0028961102943867445, 0.014117741957306862, -0.03961624205112457, -0.019731739535927773, 0.013468503952026367, 0.04012544825673103, -0.02409818209707737, -0.02711522951722145, 0.01453783642500639, 0.0049233874306082726, 0.047228872776031494, -0.02286335825920105, 0.0017806304385885596, 0.010960663668811321, -1.649698788241949e-05, 0.008796537294983864, 0.02905021235346794, -0.02299065887928009, 0.021641263738274574, -0.021132057532668114, 0.006097744219005108, 0.006476466078311205, 0.013073869049549103, -0.00979585386812687, -0.0013167753349989653], [0.06628689914941788, 0.019180890172719955, 0.03210918605327606, 0.015995828434824944, 0.01822889782488346, 0.021507982164621353, -0.025010375306010246, 0.022742047905921936, 0.03373109921813011, 0.037703610956668854, -0.02642073482275009, 0.04818728566169739, 0.009778493084013462, -0.015008576214313507, 0.01399781834334135, 0.005409316625446081, 0.005429884418845177, 0.02287133038043976, -0.07827495038509369, 0.014514950104057789, 0.026773324236273766, 0.04068887233734131, 0.007692336104810238, -0.06229088082909584, 0.004842234309762716, -0.05773071572184563, 0.03478886932134628, -0.026491252705454826, 0.06924865394830704, -0.0444263257086277, -0.001529358560219407, -0.032696835696697235, 0.01547869574278593, -0.08546778559684753, 0.005570920184254646, 0.03500042110681534, -0.024798821657896042, -0.017664752900600433, -0.009772616438567638, 0.020990850403904915, -0.025480495765805244, 0.002687028842046857, 0.019745033234357834, -0.01901634782552719, -0.019333679229021072, 0.07178729772567749, 0.02226017415523529, -0.03786815330386162, -0.008844129741191864, 0.028865357860922813, 0.01939244382083416, 0.0013369033113121986, 0.015314154326915741, -0.05904705077409744, 0.03532950580120087, -0.0007617410738021135, 0.022577505558729172, 0.006740343291312456, 0.034224726259708405, -0.013786264695227146, -0.013950806111097336, -0.01502032857388258, 0.014538455754518509, -0.013927300460636616, -0.030628308653831482, -0.023940853774547577, 0.010842138901352882, 0.040524329990148544, -0.08570284396409988, 0.02665579505264759, 0.026256192475557327, 0.009478791616857052, 0.004724704660475254, -0.02717292681336403, 0.023482486605644226, 0.019980093464255333, -0.026679301634430885, 0.006246717646718025, 0.038338273763656616, -0.0013890572590753436, -0.06238490343093872, 0.004712951369583607, -0.00751016428694129, -0.001527889515273273, -0.029782092198729515, -0.030886873602867126, -0.07380881905555725, -0.016912560909986496, -0.020062364637851715, -0.00812132004648447, 0.0017071226611733437, -0.026914361864328384, -0.026279699057340622, 0.02216615155339241, 0.005709017626941204, -0.021402206271886826, 0.022154398262500763, -0.0509139783680439, 0.01690080761909485, 0.05020879954099655, 0.03845580294728279, -0.006464147940278053, -0.04414425417780876, 0.004101795610040426, 0.02957053855061531, -0.014902799390256405, -0.04879843816161156, 0.012258375063538551, -0.012234868481755257, -0.01901634782552719, 0.0388789102435112, -0.015560966916382313, -0.0229183416813612, 0.06407733261585236, -0.0319446437060833, 0.011288752779364586, -0.01966276206076145, -0.007098809815943241, -0.021343441680073738, -0.004789345897734165, 0.030534284189343452, -0.0020156388636678457, -0.010536560788750648, -0.0499737411737442, -0.009766739793121815, -0.02980559878051281, -0.019133877009153366, 0.01898108795285225, -0.05100800469517708, -0.03340201452374458, 0.015984075143933296, -0.00863257609307766, 0.05006776377558708, -0.03109842725098133, 0.0023520684335380793, -0.03753906860947609, -0.027713565155863762, 0.004060660023242235, -0.012082080356776714, 0.006452394649386406, 0.022894836962223053, -0.028888864442706108, -0.009108572266995907, 0.06769725680351257, -0.04285142198204994, 0.024375714361667633, 0.001527889515273273, 0.03753906860947609, 0.051948241889476776, 0.009049806743860245, -0.028630297631025314, 0.0020288608502596617, -0.015760768204927444, -0.03554106131196022, -0.015984075143933296, 0.0004939931095577776, -0.0009108571684919298, 0.042827919125556946, 0.008626699447631836, 0.005788350477814674, -0.023764558136463165, -0.03678687661886215, -1.7078571545425802e-05, -0.023400215432047844, 0.03883190080523491, 0.01365698128938675, -0.012340646237134933, 0.022965354844927788, -0.058200836181640625, -0.010783374309539795, -0.030463766306638718, -0.030745837837457657, -0.052042268216609955, -0.032978907227516174, -0.04146457090973854, -0.02147272415459156, 0.011829390190541744, -0.020344436168670654, 0.03220320865511894, -0.008991042152047157, 0.04231078550219536, -0.003843229729682207, -0.015149611979722977, -0.018628498539328575, -0.010683473199605942, 0.0004106202977709472, 0.012646223418414593, 0.02684384398162365, -0.049409594386816025, 0.03152153640985489, 0.040054209530353546, -0.02143746428191662, 0.016078097745776176, -0.018663758412003517, -0.025386471301317215, 0.009484668262302876, -0.009143831208348274, -0.012017438188195229, -0.024328701198101044, 0.008932276628911495, 0.017300410196185112, -0.021460970863699913, 0.034412771463394165, 0.03624624013900757, -0.0010291216894984245, -0.05382872372865677, -0.02656177058815956, 0.039725128561258316, 0.04419126361608505, -0.015819532796740532, -0.007768730632960796, -0.03257930651307106, -0.05881199240684509, 0.04216974973678589, 0.0018878249684348702, 0.02285957708954811, 0.005623808596283197, 0.021719537675380707, -0.0018143687630072236, 0.019133877009153366, -0.018123120069503784, 0.016454193741083145, 0.04745859652757645, -0.08015543222427368, -0.058388885110616684, -0.013304391875863075, -0.013222120702266693, -0.08180085569620132, 0.00567963533103466, -0.08951082080602646, -0.025927109643816948, 0.0509139783680439, 0.032837871462106705, -0.020203400403261185, 0.012281880713999271, -0.0003907871141564101, -0.03448329120874405, -0.02055598981678486, -0.008344626985490322, 0.003235012060031295, -0.0001474633754696697, -0.003531775437295437, -0.030299223959445953, -0.0016615798231214285, 0.027478504925966263, -0.02646774798631668, -0.0067873550578951836, -0.03786815330386162, 0.03008767031133175, -0.01138277631253004, 0.052371349185705185, 0.03949006646871567, 0.05918808653950691, 0.013539451174438, -0.01103606354445219, 0.019874315708875656, 0.016865549609065056, 0.009067436680197716, 0.007909766398370266, -0.0374920591711998, -0.0012987060472369194, -0.0273139625787735, 0.002688497770577669, -0.05284146964550018, -0.055239081382751465, -0.03836178034543991, 0.011611959896981716, -0.017476705834269524, -0.034412771463394165, 0.06591080129146576, 0.00851504597812891, 0.0499737411737442, -0.00927899032831192, 0.021178899332880974, -0.04383867606520653, 0.054815974086523056, -0.030698826536536217, 0.0010364673798903823, 0.006252593826502562, -0.010201600380241871, -0.052324339747428894, -0.04435580596327782, 0.003376048058271408, -0.027407987043261528, 0.0240701362490654, 0.021073121577501297, 0.025950616225600243, 0.015995828434824944, -0.012704988941550255, -0.028395239263772964, 0.03347253426909447, -0.026350216940045357, -0.010977298021316528, 0.005356427747756243, 0.0035876021720469, 0.0050332206301391125, -0.07004785537719727, 0.0021243540104478598, 0.026044638827443123, 0.022130891680717468, 0.003267332911491394, 0.055521152913570404, -0.00983725767582655, -0.020003600046038628, -0.058200836181640625, -0.016489453613758087, 0.010930286720395088, -0.052136290818452835, -0.07277455180883408, 0.008315244689583778, -0.0374920591711998, 0.005744277033954859, -0.0670861005783081, -0.008050802163779736, 0.002738448092713952, 0.02975858561694622, -0.04379166290163994, 0.011224111542105675, 0.027525516226887703, 0.015267142094671726, 0.06417135894298553, 0.03864385187625885, 0.003949006553739309, 0.01896933652460575, -0.008191837929189205, 0.017558977007865906, -0.02332969754934311, 0.027055397629737854, 0.0007477843901142478, 0.01633666455745697, -0.008944029919803143, 0.02975858561694622, -0.04992672801017761, -0.005794227123260498, -0.01610160432755947, -0.024775315076112747, -0.029264960438013077, -0.014162360690534115, -0.019498219713568687, -0.009849010966718197, 0.005015591159462929, -0.019651008769869804, -0.012152598239481449, 0.01502032857388258, -0.006334865000098944, 0.020391447469592094, 0.05726059526205063, 0.013116343878209591, -0.012822519056499004, 0.0229183416813612, 0.028912371024489403, 0.05627334490418434, 0.03530599921941757, 0.03138050064444542, -0.058059800416231155, -0.011899909004569054, 0.0076570771634578705, -0.037609588354825974, -0.011300506070256233, -0.011465047486126423, 0.0029338416643440723, -0.008791240863502026, 0.012669730000197887, 0.03634026274085045, -0.024610774591565132, 0.026162169873714447, -0.0029147430323064327, 0.026279699057340622, 0.02142571099102497, 0.01962750405073166, 0.02874782867729664, 0.012904789298772812, -0.008326997980475426, -0.041817158460617065, 0.014338655397295952, -0.049597643315792084, 0.019451208412647247, -0.005670820828527212, -0.028818346560001373, -0.04802274331450462, 0.04346257820725441, 0.014820528216660023, 0.025856591761112213, 0.012411164119839668, 0.024963364005088806, -0.004668877925723791, -0.014162360690534115, 0.023588262498378754, 0.0018834176007658243, -0.029264960438013077, -0.016219135373830795, -0.005268280394375324, -0.0018819485558196902, 0.013962559401988983, 0.029358984902501106, 0.04790521040558815, 0.031639065593481064, 0.029358984902501106, 0.019462961703538895, -0.054721951484680176, -0.0356350839138031, -0.01800559088587761, -0.014867540448904037, 0.006693331059068441, -0.014127101749181747, -0.0003195345925632864, -0.002635609358549118, -0.028207190334796906, -0.006205582059919834, -0.015419931150972843, 0.024845832958817482, 0.01610160432755947, 0.024869339540600777, 0.040477316826581955, -0.015513954684138298, 0.007233968935906887, -0.025574520230293274, 0.04249883443117142, -0.003913747612386942, -0.07531319558620453, 0.043039470911026, 0.00895578321069479, -0.004795222543179989, 0.006981279700994492, -0.055051032453775406, -0.01583128608763218, 0.019051605835556984, 0.004263399168848991, -0.05326457694172859, -0.010466042906045914, -0.023176908493041992, 0.003273209324106574, 0.007950901985168457, 0.04470839723944664, 0.005850053858011961, -0.03638727590441704, -0.01471475139260292, 0.0027648922987282276, 0.004795222543179989, 0.003261456498876214, 0.01031913049519062, -0.012763753533363342, -0.019862564280629158, 0.021907584741711617, -0.0007290530484169722, -0.036904409527778625, -0.0018231834983453155, 0.019698021933436394, 0.0029823228251188993, 0.015372918918728828, -0.029006393626332283, -0.0024093640968203545, -0.03495341166853905, 0.051713183522224426, -0.018663758412003517, -0.023482486605644226, -0.01559622585773468, -0.010407278314232826, -0.0036052316427230835, 0.011106581427156925, 0.047740671783685684, 0.03429524227976799, 0.031639065593481064, -0.00440737372264266, -0.013551204465329647, -0.0018657881300896406, 0.021543242037296295, -0.02425818331539631, -0.021966349333524704, -0.03577611967921257, 0.021637266501784325, 0.006728590466082096, 0.010530684143304825, -0.012610964477062225, 0.0008219751762226224, -0.006088051944971085, -0.008180085569620132, 0.026679301634430885, -0.021872324869036674, -0.02646774798631668, -0.0073103634640574455, 0.023905593901872635, -0.07004785537719727, -0.03958408907055855, 0.007745224516838789, 0.05039684846997261, 0.07042395323514938, -0.00883825309574604, 0.030722331255674362, -0.06196179613471031, -0.035987675189971924, 0.013845029287040234, 0.044261783361434937, -0.010031182318925858, 0.000788919860497117, 0.015032081864774227, -0.010959669016301632, -0.0014265199424698949, 0.01758248172700405, 0.03076934441924095, -0.03304942324757576, -0.02855977974832058, 0.039184488356113434, -0.02804264798760414, 0.038667358458042145, 0.02156674861907959, 0.008209467865526676, 0.041347041726112366, -0.026914361864328384, 0.05688450112938881, -0.02851276844739914, 0.02928846701979637, 0.022142644971609116, 0.01688905619084835, -0.02790161222219467, -0.016254393383860588, 0.014655985869467258, 0.015537461265921593, -0.019357183948159218, -0.020262164995074272, -0.006246717646718025, 0.025057388469576836, 0.0009593383292667568, -0.032391257584095, -0.010466042906045914, -0.009126201272010803, -0.0072692278772592545, -0.0823649987578392, -0.018252402544021606, -0.03314344957470894, -0.023223919793963432, -0.029735080897808075, -0.05133708566427231, -0.027149420231580734, -0.013421921990811825, 0.01748845726251602, 0.014174113050103188, -0.003637552261352539, 0.006875502876937389, 0.03859683871269226, -0.026326710358262062, -0.004930381663143635, 0.023670533671975136, -0.005426946096122265, 0.02351774461567402, -0.005894127767533064, 0.01748845726251602, 0.012846024706959724, 0.007745224516838789, 0.0004943603998981416, 0.00413117790594697, 0.007815742865204811, 0.018475709483027458, -0.005497463978827, 0.03234424442052841, 0.01828766241669655, 0.02860679291188717, -0.007745224516838789, -0.004166437312960625, 0.005215391982346773, 0.013598216697573662, 0.015431683510541916, 0.00879711750894785, 0.0010269180638715625, -0.005174256395548582, 0.01437391433864832, 0.007116439286619425, -0.03960759565234184, -0.03337850794196129, -0.010189848020672798, -0.048069752752780914, 0.026538265869021416, -0.015513954684138298, 0.04221676290035248, 0.017899813130497932, 0.013363156467676163, 0.026044638827443123, -0.03845580294728279, -0.020932085812091827, 0.024657785892486572, -0.0007970000733621418, 0.02994663454592228, -0.04828130826354027, -0.03956058621406555, -0.02013288252055645, 0.016454193741083145, -0.0092554846778512, -0.0532175675034523, -0.0007698212284594774, 0.04193469136953354, 0.013598216697573662, -0.023082884028553963, 0.00990189891308546, -0.0017306286608800292, -0.024845832958817482, 0.005473957862704992, -0.03939604386687279, 0.018957583233714104, -0.0312394630163908, -0.0030822232365608215, -0.01961575075984001, -0.005750153213739395, 0.005397563334554434, 0.052418362349271774, -0.023494239896535873, -0.03540002554655075, 0.025809578597545624, -0.012669730000197887, 0.026538265869021416, 0.016971325501799583, 0.016219135373830795, -0.023564757779240608, -0.026679301634430885, -0.011165346018970013, 0.016078097745776176, -0.010430783964693546, -0.018569733947515488, -0.008174208924174309, -0.008086061105132103, -0.030487271025776863, -0.01999184675514698, 0.03161555901169777, 0.0029720389284193516, -0.055145058780908585, -0.046353816986083984, 0.03784464672207832, 0.013762758113443851, -0.010095823556184769, 0.009032177738845348, -0.04261636361479759, -0.008103691041469574, -0.014608974568545818, -0.01027799490839243, -0.019745033234357834, -0.011324011720716953, -0.011065445840358734, -0.026914361864328384, 0.004166437312960625, -0.01703009195625782, 0.026185674592852592, 0.004698260221630335, -0.012963554821908474, 0.016877302899956703, -0.05157214775681496, 0.018428698182106018, 0.047270551323890686, -0.004369176458567381, 0.05176019296050072, 0.028160179033875465, -0.010466042906045914, 0.024093642830848694, 0.006916637998074293, 0.01087739784270525, -0.013034072704613209, 0.005315292626619339, -0.0017247521318495274, -0.049268558621406555, 0.03199165686964989, -0.009943034499883652, 0.019239654764533043, -0.028019143268465996, 0.0061997054144740105, -0.007745224516838789, 0.025386471301317215, 0.029970139265060425, 0.011053692549467087, 0.004953887779265642, 0.007122315466403961, -0.001535235089249909, -0.007457275874912739, 0.01569025032222271, 0.04160560667514801, 0.04155859351158142, -0.013386662118136883, 0.017088856548070908, 0.004986208397895098, 0.035611577332019806, 0.06971877068281174, -0.004095918964594603, 0.022236669436097145, -0.02999364584684372, -0.0012267190031707287, -0.030393248423933983, -0.0005670820828527212, -0.005770721007138491, -0.022706788033246994, -0.030980898067355156, -0.007551299873739481, 0.029453007504343987, 0.026538265869021416, -0.0107598677277565, 0.018828298896551132, -0.006041040178388357, 0.011094828136265278, 0.0072986106388270855, 0.055662188678979874, 0.03349603712558746, -0.026679301634430885, -0.004657124634832144, 0.0036522436421364546, 0.0049480111338198185, -0.007980284281075, -0.026491252705454826, -0.07042395323514938, -0.04341556876897812, -0.05900004133582115, -0.030792849138379097, -0.0018114305566996336, 0.0026620535645633936, 0.011664848774671555, -0.012187857180833817, -0.004433817695826292, 0.00252836337313056, -0.0462832972407341, -0.012599212117493153, 0.012552199885249138, -0.004075351171195507, -0.007392634637653828, 0.0005424742121249437, 0.029311971738934517, 0.00041429311386309564, 0.05994027853012085, -0.0072986106388270855, -0.0023976112715899944, 0.025527507066726685, -0.043533097952604294, 0.02022690698504448, 0.006305482238531113, 0.007674706634134054, 0.021319935098290443, 0.03234424442052841, -0.024140654131770134, 0.008802994154393673, 0.02365878038108349, -0.037186481058597565, -0.0072692278772592545, -0.020979097113013268, 0.0033525421749800444, -0.011835266835987568, -0.02646774798631668, 0.00705767422914505, -0.025668542832136154, -0.01413885410875082, 0.0008836783817969263, -0.02161375992000103, 0.03643428906798363, -0.018569733947515488, -0.020121129229664803, -0.000737867783755064, 0.019568737596273422, 0.019968340173363686, 0.008156578987836838, -0.03497691452503204, -0.021178899332880974, 0.03128647431731224, 0.006552295293658972, 0.010748115368187428, -0.02569204941391945, 0.004295720253139734, 0.00960219744592905, -0.02435220777988434, -0.015796026214957237, 0.004742334131151438, 0.027737069875001907, 0.037374526262283325, -0.012352398596704006, -0.046635888516902924, -0.016395429149270058, 0.018040848895907402, -0.0472000315785408, 0.01758248172700405, -0.02347073331475258, -0.00882062315940857, 0.013868534937500954, -0.02277730591595173, -0.030581295490264893, -0.001161342952400446, -0.040806401520967484, -0.01349243987351656, -0.008438651449978352, 0.05707255005836487, -0.023964358493685722, -0.03027571737766266, 0.0022888958919793367, 0.0016733327647671103, 0.020485471934080124, -0.008344626985490322, 0.01025448925793171, 0.013774511404335499, 0.020050611346960068, -0.02416416071355343, -0.03815022483468056, -0.014385667629539967, -0.048610392957925797, -0.039137475192546844, 0.015361165627837181, -0.012481682002544403, -0.04061835631728172, -0.013598216697573662, 0.007081180345267057, -0.01814662665128708, 0.02342372201383114, -0.017041845247149467, -0.018569733947515488, 0.043439075350761414, 0.006440641824156046, -0.025715555995702744, -0.004583668429404497, 0.029194442555308342, -0.004148807842284441, 0.04379166290163994, -0.0019745032768696547, 0.04421477019786835, 0.012246621772646904, 0.006246717646718025, -0.030604802072048187, -0.05570920184254646, 0.033331498503685, -0.0203561894595623, -0.006517036352306604, 0.044966962188482285, -0.01690080761909485, 0.005097861867398024, -0.001952466438524425, 0.006951897405087948, 0.02109662815928459, -0.03554106131196022, 0.02364702895283699, 0.012258375063538551, 0.030111176893115044, 0.008855882100760937, 0.011670725420117378, 0.011406282894313335, -0.00631723552942276, -0.010983174666762352, 0.02104961685836315, -0.02503388188779354, 0.029876116663217545, -0.0030205200891941786, 0.03681038320064545, 0.04781118780374527, -0.008985165506601334, -0.011182975955307484, -0.04273389279842377, -0.010965545661747456, 0.006082175299525261, 0.009819628670811653, 0.039137475192546844, -0.043109990656375885, 0.033331498503685, -0.02142571099102497, 0.010372019372880459, -0.029170935973525047, 0.00012753836927004158, -0.016207382082939148, -0.016089851036667824, 0.015760768204927444, -0.014044830575585365, -0.021907584741711617, -0.02808966115117073, 0.0022888958919793367, -0.010195723734796047, -0.017782283946871758, 0.0006151958950795233, 0.017570728436112404, -0.004889246542006731, 0.05881199240684509, -0.001964219380170107, -0.025527507066726685, -0.0037374526727944613, 0.017970331013202667, -0.004992085043340921, 0.005603240802884102, -0.06351318955421448, -0.02712591551244259, -0.04040680080652237, -0.0006207051337696612, 0.043251026421785355, 0.017511963844299316, -0.024140654131770134, 0.0043897442519664764, 0.003425998380407691, 0.0536876879632473, -0.010313253849744797, -0.017888059839606285, -0.0031791855581104755, -0.05688450112938881, 0.021590253338217735, 0.02416416071355343, 0.012129091657698154, -0.012234868481755257, -0.02211913838982582, 0.008009666576981544, -0.003687502583488822, -0.019333679229021072, 0.02526894211769104, -0.02281256578862667, -0.0039078714326024055, 0.006981279700994492, 0.012481682002544403, -0.0333079919219017, -0.029264960438013077, -0.02309463731944561, -0.0011539972620084882, -0.010689349845051765, 0.025010375306010246, -0.010424907319247723, -0.0020391447469592094, -0.018499216064810753, 0.03941955044865608, 0.043157000094652176, -0.025433484464883804, -0.018757781013846397, -0.02985261008143425, 0.05147812142968178, 0.02124941721558571, -0.018722523003816605, 0.012928295880556107, 0.00602928688749671, 0.022565752267837524, 0.03448329120874405, -0.01559622585773468, -0.0013009097892791033, 0.006281976588070393, 0.001849627704359591, 0.01217610388994217, 0.013586463406682014, 0.020626507699489594, 0.044402819126844406, -0.021308181807398796, 0.0042487080208957195, 0.015937061980366707, 0.02703189104795456, 0.05284146964550018, -0.02545698918402195, -0.025245435535907745, -0.0015646176179870963, 0.0017629493959248066, 0.01902810111641884, -0.03206217288970947, -0.037092454731464386, 0.022648023441433907, 0.007280981168150902, -0.014503196813166142, -0.010001800023019314, 0.0279956366866827, 0.007257475052028894, 0.025903603062033653, 0.024751810356974602, 0.006058669649064541, 0.03495341166853905, -0.014608974568545818, 0.026397230103611946, 0.021319935098290443, -0.005700203124433756, 0.016031086444854736, -0.010471919551491737, -0.0273139625787735, 0.02300061285495758, 0.00631723552942276, -0.009267237037420273, 0.026256192475557327, 0.013551204465329647, -0.008597316220402718, -0.002684090519323945, 0.011993932537734509, 0.00990189891308546, -0.023153401911258698, 0.023494239896535873, 0.00536818103864789, -0.00883825309574604, -0.002321216743439436, 0.013892041519284248, -0.0008131604408845305, 0.0063936300575733185, 0.011623713187873363, -0.027737069875001907, -0.014409173280000687, 0.020673520863056183, 0.020814556628465652, -0.013363156467676163, 0.034177713096141815, 0.01611335761845112, 0.01887531206011772, -0.03208567947149277, 0.02133168838918209, 0.030933884903788567, -0.0015543337212875485, -0.021120134741067886, -0.01550220139324665, 0.008908770978450775, 0.05914107710123062, 0.032273728400468826, 0.0045219650492072105, -0.01015458907932043, 0.027196433395147324, 0.024728303775191307, 0.03041675314307213, 0.004921567160636187, 0.04127652198076248, -0.021319935098290443, 0.007040044758468866, 0.02841874398291111, 0.030839862301945686, -0.008897017687559128, 0.015384672209620476, 0.007034168113023043, 0.008426898159086704, -0.028019143268465996, 0.010495425201952457, 0.027525516226887703, -0.07930921763181686, 0.015419931150972843, -0.027078902348876, 0.009613950736820698, -0.0069695268757641315, -0.0030939762946218252, -0.03946655988693237, -0.0082153445109725, 0.0026958435773849487, -0.013598216697573662, 0.013645228929817677, 0.023341450840234756, 0.01961575075984001, 0.04151158034801483, -0.019180890172719955, 0.005212453659623861, 0.007333869580179453, 0.020814556628465652, -0.010830385610461235, 0.011229988187551498, 0.011030186899006367, 0.024281689897179604, 0.01097142230719328, 0.01071873214095831, 0.02780758962035179, -0.02684384398162365, 0.009108572266995907, -0.0005193355027586222, 0.013927300460636616, 7.423669740092009e-05, -0.003425998380407691, -0.033355001360177994, 0.03246177360415459, 0.02540997788310051, -0.000741540570743382, -0.009184966795146465, -0.009320125915110111, 0.015102599747478962, 0.019098618999123573, -0.011788255535066128, 0.05758967995643616, -0.025762567296624184, 0.038855403661727905, 0.0029147430323064327, -0.006323111709207296, -0.008027296513319016, -0.006946020759642124, 0.003901994787156582, 0.01911037229001522, -0.022459976375102997, 0.0011481208493933082, -0.010260365903377533, -0.010583573020994663, 0.01294004824012518, -0.04708250239491463, -0.007580682635307312, 0.055521152913570404, 0.044402819126844406, 0.01819363795220852, -0.015231883153319359, 0.016548218205571175, 0.04823429509997368, 0.011829390190541744, 0.020403200760483742, 0.011247617192566395, 0.0067344666458666325, 0.009925405494868755, -0.012017438188195229, 0.0444263257086277, -0.023447226732969284, -0.007898013107478619, -0.009184966795146465, -0.022518740966916084, -0.017805788666009903, -0.005409316625446081, -0.00046057053259573877, 0.006499406881630421, -0.012105586007237434, 0.024634279310703278, -0.03467134013772011, 0.022459976375102997, 0.01425638422369957, 0.012352398596704006, 0.030698826536536217, 0.01502032857388258, 0.03095739148557186, 0.01499682292342186, -0.009849010966718197, 0.01962750405073166, 0.018710769712924957, 0.030369741842150688, 0.029876116663217545, 0.012763753533363342, 0.040289271622896194, -0.015173117630183697, -0.005350551567971706, 0.03549404814839363, -0.006452394649386406, 0.004372114315629005, 0.011723613366484642, 0.0031850619707256556, 0.022624516859650612, -0.03041675314307213, 0.01103606354445219, 0.0005575327668339014, -0.01896933652460575, 0.037609588354825974, -0.002372635994106531, -0.008585563860833645, -0.03615221753716469, 0.003790341317653656, -0.043251026421785355, 0.001990663819015026, -0.006769725587219, 0.023952605202794075, -0.0030234581790864468, 0.00869721733033657, -0.009478791616857052, 0.003643428673967719, 0.023165155202150345, -0.01665399596095085, -0.05420481786131859, -0.046306803822517395, 0.006293729413300753, -0.005138997454196215, 0.00527709536254406, -0.004313349723815918, -0.002171366009861231, -0.001215700525790453, 0.03758608177304268, -0.014409173280000687, -0.0120350681245327, -0.011106581427156925, -0.0017541346605867147, -0.004886308219283819, 0.014162360690534115, 0.06233789026737213, 0.01263447105884552, 0.016536464914679527, 0.03133348748087883, 0.02184882014989853, -0.025433484464883804, -0.022130891680717468, -0.005659067537635565, 0.03406018391251564, -0.0014412110904231668, -0.02032092958688736, 0.008456280454993248, 0.026538265869021416, 0.0036639964673668146, -0.017053596675395966, 0.007433770224452019, -0.00016527650586795062, -0.004192881286144257, 0.01557272020727396, -0.01103606354445219, -0.004245769698172808, -0.060974542051553726, 0.0016439503524452448, -0.029123924672603607, -0.024916350841522217, 0.0019612812902778387, -0.006646319292485714, -0.0035729107912629843, -0.03384862840175629, 0.028982888907194138, 0.033895641565322876, 0.03650480508804321, -0.016947820782661438, 0.013762758113443851, 0.04402672499418259, -0.02938248962163925, -0.02439921908080578, 0.003167432500049472, 0.0067344666458666325, -0.013786264695227146, 0.00369044067338109, 0.014797021634876728, -0.01975678652524948, 0.004962702747434378, -0.01097142230719328, 0.011899909004569054, 0.0037727118469774723, -0.03612871095538139, 0.04115899279713631, -0.04240480810403824, 0.027290457859635353, 0.007239845581352711, -0.026397230103611946, -0.01975678652524948, 0.012117339298129082, 0.019498219713568687, 0.001893701497465372, -0.013445427641272545, -0.015584472566843033, -0.028912371024489403, -0.008902894333004951, -0.015948815271258354, -0.03923150151968002, 0.007316240109503269, 0.01205857377499342, 0.018675511702895164, 0.005811856593936682, -0.04480241984128952, -0.0029823228251188993, -0.012258375063538551, -0.024822328239679337, 0.02277730591595173, 0.02397611178457737, 0.01205857377499342, -0.0033936775289475918, 0.02137869969010353, 0.0010768682695925236, 0.013950806111097336, -0.021484477445483208, -0.015513954684138298, -0.005908818915486336, 0.023858582600951195, 0.0013589401496574283, 0.04795222356915474, -0.01748845726251602, -0.019639257341623306, -0.01175887230783701, 0.038667358458042145, 0.0076276944018900394, -0.0012245152611285448, 0.014844033867120743, -0.009296620264649391, 0.00930249597877264, -0.03018169477581978, 0.019427701830863953, 0.019603997468948364, 0.017147621139883995, -0.03248528018593788, -0.01161783654242754, 0.004283966962248087, 0.011517936363816261, -0.0002745426318142563, -0.012352398596704006, -0.004137054551392794, 0.011905784718692303, 0.006534665822982788, 0.03182711452245712, -0.010454289615154266, 0.009543432854115963, -0.0029397180769592524, -0.023987865075469017, -0.01025448925793171, 0.029311971738934517, -0.03236775100231171, -0.034835878759622574, -0.021366946399211884, 0.015713755041360855, -0.017229892313480377, -0.01138277631253004, -0.0010886212112382054, 0.01800559088587761, -0.022412963211536407, 0.026209181174635887, 0.055333103984594345, -0.017982084304094315, 0.03666934743523598, -0.005371119361370802, 0.04541357606649399, -0.00022459241154138, 0.020379696041345596, 0.005344674922525883, -0.00986076332628727, -0.01961575075984001, -0.014244630932807922, -0.017300410196185112, 0.0009901899611577392, -0.03481237590312958, -0.010607078671455383, 0.019216148182749748, -0.0002534239902161062, 0.014750010333955288, -0.004283966962248087, -0.0003059451701119542, 0.000633192656096071, -0.015772521495819092, 0.03229723498225212, 0.0008741290657781065, -0.019733279943466187, -0.017758777365088463, -0.0025694987270981073, -0.017923319712281227, 0.023059377446770668, 0.02226017415523529, 0.020003600046038628, -0.004724704660475254, 0.00022495968732982874, -0.007233968935906887, -0.018440451472997665, 0.01120060496032238, -0.024234678596258163, 0.006452394649386406, -0.0008249134407378733, -0.0014059521490707994, 0.0004216387460473925, -0.011135963723063469, -0.00544751388952136, 0.018299415707588196, 0.017652999609708786, 0.02189583145081997, -0.023952605202794075, -0.01638367585837841, -0.03342552110552788, 0.02008587121963501, 0.016677500680088997, -0.05002075061202049, -0.009402397088706493, -0.011271122843027115, 0.051713183522224426, -0.02670280635356903, -0.018123120069503784, 0.03361357003450394, 0.03629325330257416, -0.012810765765607357, 0.011823514476418495, 0.01073636207729578, 0.001316335517913103, 0.021413959562778473, -0.010924410074949265, -0.018017342314124107, 0.021954596042633057, 0.031168945133686066, -0.0011914599454030395, 0.01605459302663803, -0.05030282214283943, -0.019521726295351982, -0.03652831166982651, -0.003846168052405119, -0.000525579322129488, -0.016536464914679527, -0.049221549183130264, -0.010101700201630592, 0.013950806111097336, 0.020990850403904915, -0.01175887230783701, 0.0013537982013076544, -0.019310172647237778, 0.017688259482383728, 0.015055588446557522, -0.0319211371243, 0.00645827129483223, 0.027619540691375732, -0.024305196478962898, 0.00232562399469316, 0.021719537675380707, -0.014197619631886482, -0.0036581200547516346, 0.015513954684138298, -0.020426707342267036, 0.013504192233085632, -0.030581295490264893, -0.05697852373123169, -0.031262971460819244, 0.022365951910614967, -0.01980379782617092, -0.00833287462592125, 0.021778302267193794, 0.004281028639525175, 0.011664848774671555, 0.05030282214283943, -0.011159469373524189, 0.0014044829877093434, 0.003781526582315564, 0.01249343529343605, -0.012563953176140785, -0.01688905619084835, -0.01161783654242754, -0.013950806111097336, -0.017841048538684845, 0.011053692549467087, -0.023564757779240608, -0.021272923797369003, -0.023353204131126404, 0.002052366966381669, -0.012117339298129082, -0.006152693647891283, -0.03448329120874405, -0.02670280635356903, -0.049080513417720795, -0.03822074458003044, -0.022553998976945877, 0.004239893518388271, -0.006064545828849077, -0.008344626985490322, -0.00863257609307766, 0.021860573440790176, 0.024916350841522217, 0.00997829344123602, -0.011000804603099823, -0.026820337399840355, -0.006229087710380554, -0.023259179666638374, -0.018522722646594048, 0.04785820096731186, 0.0013045825762674212, 0.03004065714776516, 0.0072692278772592545, -0.049174536019563675, -0.0048598637804389, -0.01976853981614113, 0.01413885410875082, -0.02526894211769104, 0.007445523049682379, 0.016089851036667824, -0.029123924672603607, -0.002155205700546503, -0.005973460152745247, -0.007157574407756329, 0.023482486605644226, 0.011194729246199131, -0.02096734568476677, 0.03248528018593788, 0.01750021055340767, -0.02137869969010353, -0.02555101364850998, -0.010471919551491737, 0.021778302267193794, 0.01557272020727396, 0.05114904046058655, 0.007245722226798534, 0.008850006386637688, 0.021390452980995178, 0.02049722522497177, 0.010812756605446339, -0.010677596554160118, -0.007363251876085997, -0.013081084936857224, 0.008180085569620132, 0.002043552231043577, 0.010207477025687695, -0.017735270783305168, 0.03347253426909447, 0.025668542832136154, -0.00874422863125801, 0.0004484502715058625, 0.023035872727632523, 0.043979711830616, -0.004621865693479776, 0.03626974672079086, -0.010930286720395088, 0.018346427008509636, -0.043109990656375885, 0.03641078248620033, 0.0019686268642544746, 0.018863558769226074, -0.017159374430775642, -0.025927109643816948, -0.0038138472009450197, 0.0017702950863167644, 0.02032092958688736, 0.013856782577931881, 0.032837871462106705, 0.008985165506601334, -0.022988859564065933, -0.02583308517932892, 0.024234678596258163, -0.0038256002590060234, -0.018017342314124107, -0.004680630750954151, -0.01071873214095831, -0.0036052316427230835, -0.012622717767953873, -0.016230886802077293, 0.010031182318925858, 0.010724608786404133, 0.03540002554655075, 0.0002469965547788888, -0.0031909383833408356, 0.019263161346316338, 0.01057769637554884, -0.007139944937080145, -0.022459976375102997, 0.030205199494957924, -0.03295540064573288, -0.015267142094671726, 0.01674801856279373, 0.014891046099364758, -0.0039901421405375, 0.006810861174017191, -0.04508449137210846, 0.004245769698172808, 9.98086470644921e-05, 0.020485471934080124, 0.017700012773275375, -0.016418935731053352, 0.01583128608763218, -0.0060762991197407246, 0.02170778438448906, -0.019745033234357834, 0.030698826536536217, -0.028489261865615845, -0.006487654056400061, 0.009220225736498833, 0.025974120944738388, 0.004745271988213062, 0.023811569437384605, -0.008250603452324867, -0.003058717120438814, -0.02045021392405033, 0.03716297447681427, -0.007574805989861488, -0.010742238722741604, 0.006728590466082096, -0.005573858506977558, -0.02712591551244259, 0.0006647788686677814, 0.0007448461255989969, -0.013069331645965576, -0.030604802072048187, -0.005644376389682293, 0.011482677422463894, -0.010395525023341179, -0.019521726295351982, 0.03789165988564491, -0.0393255241215229, 0.014456185512244701, -0.019180890172719955, 0.003949006553739309, 0.012951801531016827, 0.038761381059885025]], "input": ["LABORATORY RESULTS FOR RABIES ANTIBODIES:Laboratory results for rabies antibodies are necessary for transporting pets.", "COSTS OF TRANSPORTING ANIMALS:The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.", "ANIMALS WEIGHING UP TO 9 KG:Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.", "ANIMALS WEIGHING BETWEEN 9 AND 50 KG:Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.", "ANIMALS WEIGHING BETWEEN 50 AND 100 KG:Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.", "ANIMALS WEIGHING MORE THAN 100 KG:Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.", "50 KG:The entity \"50 KG\" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.", "VETERINARY CERTIFICATE:A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.", "TRANSPORT CAGE GUIDELINES:Guidelines that outline the requirements for transport cages used for pets during flights.", "PASSENGER CABIN:The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.", "ALLOWANCE:The permitted baggage allowance does not include the weight of pets being transported.", "CAT:Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.", "EXOTIC BIRD:Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.", "I.D.F SOLDIER:I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.", "SHELL SHOCK:Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.", "CARRYING CASE:The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-17782fb298ddfe95379e327f59c92ad0 b/cache/text_embedding/embedding-17782fb298ddfe95379e327f59c92ad0 deleted file mode 100644 index 3a30199003358d6b0ecc4e6630054ebf9de47aab..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-17782fb298ddfe95379e327f59c92ad0 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.0025006928481161594, 0.045102059841156006, -0.0016202760161831975, 0.0307929664850235, -0.04868550971150398, 0.032399341464042664, -0.01139290351420641, -0.016792794689536095, 0.010558824054896832, 0.02790149301290512, -0.013567687943577766, 0.023613708093762398, 0.03407985717058182, -0.05466616526246071, 0.004022114910185337, 0.04317440837621689, 0.0014804905513301492, 0.02517065592110157, -0.03773744776844978, -0.024243900552392006, 0.0036266997922211885, 0.04206230491399765, -0.011275514960289001, 0.010447613894939423, 0.008878309279680252, -0.005591419525444508, 0.03467297926545143, -0.03323959931731224, 0.040060512721538544, -0.017287062481045723, 0.058867454528808594, -0.027382509782910347, -0.0028096111491322517, -0.03568623214960098, 0.03576037287712097, 0.04735098406672478, -0.008594104088842869, 0.05575355887413025, -0.007228686008602381, 0.0035000431817024946, -0.01435851864516735, 0.006963016465306282, 0.00648110406473279, -0.012251696549355984, -0.046411871910095215, 0.013728325255215168, 0.011022201739251614, 0.021426567807793617, 0.01784311607480049, 0.03380800783634186, 0.03961567208170891, 0.011831567622721195, -0.032868895679712296, -0.03138608857989311, 0.03803401067852974, 0.0184733085334301, 0.01901700533926487, 0.014049599878489971, 0.04831480607390404, 0.018695730715990067, -0.02750607766211033, -0.007179259322583675, -0.04712856188416481, 0.0048531051725149155, 0.0246269591152668, -0.034920115023851395, 0.0062926639802753925, 0.052985649555921555, -0.04567046836018562, 0.0009406559402123094, -0.02229153737425804, 0.019795479252934456, 0.01354297436773777, -0.0773036926984787, 0.0002289856201969087, -0.020672805607318878, 0.0063451798632740974, -0.003438259707763791, 0.0068023791536688805, -0.01792961359024048, -0.010904813185334206, 0.0036977508570998907, -0.0052423421293497086, 0.029927996918559074, -0.048932645469903946, 0.037465598434209824, -0.09035240113735199, -0.002630438655614853, -0.01015723031014204, 0.006666454952210188, -0.024713456630706787, 0.030965961515903473, -0.0036545023322105408, 0.0383305698633194, -0.004970494192093611, -0.03620521351695061, 0.019684268161654472, -0.0008479804964736104, -0.014494442380964756, 0.04829009249806404, -0.009014233015477657, 0.013493547216057777, -0.024503393098711967, 0.000787355296779424, 0.0020821087528020144, 0.007030978333204985, -0.07260813564062119, 0.011961312964558601, 0.006011548452079296, -0.028296908363699913, -0.012097236700356007, -0.03195450082421303, -0.06114109233021736, 0.04534919187426567, -0.002614992670714855, 0.017460057511925697, -0.059954844415187836, -0.0064440337009727955, 0.07330011576414108, -0.02148834988474846, -0.038824841380119324, 0.010849207639694214, -0.045126773416996, -0.029730288311839104, 0.0044947597198188305, -0.02087051421403885, 0.02278580702841282, -0.03155908361077309, -0.01272743009030819, -0.005551260430365801, -0.011016023345291615, -0.049155063927173615, 0.06687461584806442, -0.01998082920908928, 0.009422005154192448, 0.0301009900867939, 0.04542333260178566, -0.024589888751506805, -0.049624621868133545, -0.01319698616862297, -0.024058550596237183, 0.036773622035980225, -0.015964893624186516, 0.022575743496418, -0.047647543251514435, 0.008044229820370674, 0.02557842805981636, 0.05560527741909027, 0.06613320857286453, -0.0028266014996916056, 0.001439558807760477, 0.04097491130232811, -0.009255189448595047, -0.006505817640572786, 0.04656015336513519, -0.009638248011469841, 0.0341787114739418, 0.04030764847993851, -0.003895458532497287, 0.006617027800530195, -0.02955729328095913, 0.04982232674956322, -0.003635967383161187, -0.02681410126388073, 0.025195369496941566, 0.0035278459545224905, -0.010725639760494232, 0.038824841380119324, -0.07621630281209946, -0.02517065592110157, -0.02832162193953991, -0.02153777703642845, 0.0016032855492085218, 0.018238531425595284, -0.04824066907167435, -0.023094724863767624, 0.026220977306365967, 0.007228686008602381, 0.017200564965605736, -0.0444595068693161, 0.0003523598425090313, 0.013617114163935184, -0.02510887198150158, -0.004247625358402729, -0.060300834476947784, -0.019338279962539673, -0.01833738572895527, -0.0059868348762393, -0.03919554129242897, 0.0010186578147113323, 0.020363887771964073, -0.05303507670760155, 0.017138782888650894, -0.01115194708108902, -0.05560527741909027, -0.00016585046250838786, -0.03818229213356972, -0.023292433470487595, 0.004003580193966627, -0.028964171186089516, -0.05056373402476311, -0.02237803488969803, -0.027827352285385132, 0.006771487183868885, -0.044360656291246414, -0.003623610595241189, -0.022353321313858032, -0.013271125964820385, 0.002502237446606159, -0.023218292742967606, -0.00014548117178492248, -0.0629698857665062, -0.028568755835294724, 0.01104691531509161, 0.012270230799913406, -0.006456390488892794, 0.004673932678997517, 0.015631262212991714, 0.002653607400134206, -0.0075932093895971775, -0.009557929821312428, -0.003827496664598584, 0.019189998507499695, 0.015853682532906532, 0.02269930951297283, 0.003252908820286393, -0.00040313825593329966, 0.03247348219156265, -0.021636631339788437, -0.01888108067214489, -0.04329797625541687, -0.00940964836627245, -0.016039032489061356, -0.0506131574511528, -0.005226896144449711, 0.013431763276457787, -0.015013424679636955, -0.01886872388422489, -0.003021219978109002, 0.031064815819263458, 0.038676559925079346, 0.0015971071552485228, -0.025071801617741585, 0.017633050680160522, 0.0006410052883438766, -0.015532407909631729, -0.025677282363176346, 0.03914611414074898, 0.04680728539824486, -0.02340364269912243, 0.01029315497726202, 0.01364182773977518, 0.04762282967567444, -0.03788572922348976, 0.02982914261519909, 0.017892543226480484, 0.032399341464042664, 0.026937667280435562, -0.0031092618592083454, -0.013048704713582993, 0.015297629870474339, -0.024392182007431984, -0.032720617949962616, -6.482455501100048e-05, -0.03037283755838871, -0.02832162193953991, 0.024528104811906815, -0.07601859420537949, 0.004142593126744032, 0.0314602293074131, -0.06554009020328522, 0.019881976768374443, -0.0020126020535826683, 0.01104691531509161, -0.040530070662498474, -0.002770996419712901, -0.005347374361008406, -0.03973923996090889, 0.0229217316955328, 0.019993185997009277, -0.021772556006908417, -0.002391026820987463, 0.0021979529410600662, -0.04626359045505524, 0.02283523418009281, 0.03585922718048096, -0.025553714483976364, 0.03667477145791054, 0.012344371527433395, 0.06351358443498611, -0.005770592018961906, -0.012752143666148186, -0.013926032930612564, 0.006771487183868885, -0.007203972432762384, -0.009267546236515045, -0.032127492129802704, -0.02661639265716076, -0.031237808987498283, -0.020635737106204033, -0.010849207639694214, 0.015754828229546547, 0.0035896296612918377, 0.001530689769424498, -0.042581286281347275, 0.04618944972753525, 0.012233161367475986, -0.01957305707037449, -0.010379651561379433, -0.018918151035904884, -0.0033177814912050962, -0.021031152456998825, -0.049155063927173615, -0.03880012780427933, -0.04352039843797684, -0.04885850474238396, -0.015631262212991714, 0.004133325535804033, -0.040455929934978485, -0.021871408447623253, 0.0376138798892498, -0.0026767763774842024, 0.015903109684586525, -0.04917977750301361, -0.014420301653444767, -0.03200392797589302, 0.045176200568675995, 0.00837786216288805, -0.005421514622867107, 0.00837786216288805, -0.022662239149212837, -0.043396830558776855, 0.00900187622755766, -0.014049599878489971, -0.03126252442598343, 0.015964893624186516, -0.022143257781863213, -0.012702716514468193, -0.0005240025348030031, -0.007426393683999777, 0.01138672512024641, -0.053875334560871124, 0.0003923261247109622, -0.01716349646449089, 0.001113650156185031, 0.00665409816429019, 0.022575743496418, 0.033412594348192215, -0.0032868897542357445, 0.016607442870736122, -3.603241202654317e-05, 0.016669226810336113, 0.008353148587048054, 0.044286515563726425, -0.0513051375746727, 0.021438922733068466, 3.23398744512815e-05, -0.005801483988761902, -0.03803401067852974, 0.024305684491991997, -0.0506131574511528, 0.023922625929117203, 0.024923520162701607, 0.01969662494957447, -0.021055864170193672, 0.03630406782031059, -0.039763953536748886, -0.02264988236129284, -0.00796391163021326, 0.021241215988993645, -0.04166688770055771, -0.002077474957332015, -0.06133880093693733, 0.0032065710984170437, -0.040604207664728165, -0.03543909639120102, 0.0033301382791250944, -0.006227790843695402, 0.000822494737803936, -0.0063266446813941, 0.05357877537608147, -0.03064468689262867, 0.020882871001958847, -0.012888067401945591, 0.09959523379802704, -0.013271125964820385, -0.07245985418558121, -0.02400912344455719, 0.052985649555921555, -0.03618049994111061, 0.009446718730032444, 0.07152074575424194, -0.003997401800006628, 0.005569795146584511, -0.01539648324251175, -0.02367549203336239, 0.027456650510430336, 0.03091653436422348, 0.02250160276889801, -0.050168316811323166, 0.015631262212991714, -0.011979848146438599, -0.017497127875685692, -0.023070011287927628, -0.03131194785237312, 0.004312498029321432, -0.016928717494010925, -0.021698415279388428, -0.007086583878844976, -0.017595980316400528, 0.0013206253061071038, -0.061042238026857376, 0.018769869580864906, -0.008124548941850662, 0.012010740116238594, -0.008489072322845459, -0.010626786388456821, 0.04159274697303772, -0.036699481308460236, -0.08031873404979706, 0.004689378198236227, 0.02832162193953991, 0.018794583156704903, 0.0232553631067276, -0.05713751167058945, -0.03986280411481857, -0.023984409868717194, -0.005100239533931017, 0.0389978364109993, -0.044904351234436035, 0.006258682813495398, 0.025084158405661583, 0.042235296219587326, 0.00987920444458723, 0.02381141483783722, -0.04903149977326393, -0.014099027030169964, -0.01771954819560051, -0.004207465797662735, -0.04398995265364647, 0.006796200759708881, -0.03509311005473137, -0.0021871409844607115, 0.008025694638490677, 0.01930120959877968, 0.025553714483976364, -0.008173976093530655, 0.035463809967041016, 0.04129618778824806, 0.010892456397414207, -0.02982914261519909, -0.003147876588627696, -0.033066604286432266, 0.0014650445664301515, -0.051749978214502335, -0.01860923320055008, -0.06311816722154617, -0.08288893103599548, 0.017138782888650894, -0.0003197303449269384, -0.003778069745749235, 0.02016618102788925, 0.04480549693107605, 0.05901573598384857, 0.03168265148997307, -0.002936267526820302, -0.0465354397892952, -0.011961312964558601, -0.026146836578845978, 0.025071801617741585, 0.007154545746743679, 0.021648988127708435, -1.4975293197494466e-05, 0.007945376448333263, 0.021636631339788437, 0.023860841989517212, -0.04124676063656807, 0.013901319354772568, -0.04272956773638725, -0.029804429039359093, -0.01600196398794651, 0.011757426895201206, -0.00374408857896924, 0.018090249970555305, 0.025776134803891182, -0.022563386708498, 0.03795986995100975, 0.010039841756224632, -0.11565897613763809, -0.021587204188108444, -0.05110742896795273, -0.014741577208042145, 0.04794410616159439, -0.012140485458076, -0.011986026540398598, 0.006697346922010183, 0.016780437901616096, 0.005705719348043203, 0.04636244475841522, -0.003941796254366636, -0.017200564965605736, -0.011114876717329025, 0.02817334048449993, -0.0028652164619416, 0.017422987148165703, 0.02087051421403885, -0.020833443850278854, 0.029260732233524323, -0.0034845974296331406, 0.04302612692117691, 0.020895227789878845, 0.018967578187584877, -0.001170027768239379, 0.01833738572895527, -0.01255443599075079, -0.0167557243257761, 0.035043682903051376, 0.026690533384680748, -0.035809800028800964, 0.030669400468468666, 0.017806045711040497, 0.006573779508471489, 0.025553714483976364, -0.029730288311839104, 0.02921130508184433, -0.05165112391114235, 0.0019307387992739677, -0.042778994888067245, -0.013975460082292557, 0.0020960101392120123, 0.02264988236129284, -0.06148707866668701, -0.03084239363670349, 0.020425671711564064, 0.010404365137219429, -0.009310794994235039, 0.011652395129203796, 0.01770719140768051, 0.00038479623617604375, 0.04492906481027603, 0.029087739065289497, -0.02491116337478161, 0.02182198129594326, -0.020017899572849274, 0.02091994136571884, -0.017262348905205727, 0.030199844390153885, 0.028741750866174698, -0.01663215644657612, 0.011250801384449005, 0.011998383328318596, 0.004769697319716215, 0.00017811065481510013, 0.01381482183933258, -0.01695343106985092, -0.023280076682567596, 0.026023270562291145, -0.007519069127738476, 0.010793602094054222, 0.011368189938366413, -0.004961226601153612, -0.005186736583709717, -0.001447281800210476, -0.025899702683091164, -0.01278921402990818, 0.018918151035904884, 0.012362906709313393, -0.018238531425595284, 0.014741577208042145, -0.027036521583795547, -0.025949129834771156, 0.022600455209612846, 0.021055864170193672, -0.007438750471919775, 0.05367762967944145, 0.006561422720551491, 0.018708087503910065, -0.03598279133439064, 0.0039263502694666386, -0.005603776313364506, -0.004074631258845329, 0.02797563374042511, 0.012257874943315983, -0.023897912353277206, -0.04221058264374733, 0.028840603306889534, 0.022056760266423225, 0.024738170206546783, -0.007247221190482378, 0.018077893182635307, 0.01046614907681942, -0.011071628890931606, 0.048117101192474365, -0.02434275485575199, 0.007080405484884977, 0.03435170650482178, -0.05847203731536865, 0.023749632760882378, -0.0025331294164061546, 0.010046020150184631, 0.03707018494606018, -0.012257874943315983, 0.009483789093792439, -0.003147876588627696, 0.0294090136885643, 0.007865057326853275, 0.03405514359474182, 0.05486387386918068, -0.014148454181849957, 0.016817506402730942, 0.007129832170903683, 0.004460779018700123, 0.03400571644306183, -0.0117944972589612, -0.0026551519986242056, 0.007358431816101074, -0.009415826760232449, 0.005767502821981907, -0.01800375245511532, 0.023860841989517212, 0.0021037328988313675, 0.02893945761024952, 0.0424330048263073, 0.0009653693996369839, -0.040184080600738525, 0.013073418289422989, -0.0019971563015133142, -0.08076357841491699, -0.004831480793654919, 0.0033239598851650953, 0.010645321570336819, 0.0021608828101307154, -0.03126252442598343, 0.004880907479673624, -0.01296220812946558, 0.006715881638228893, -0.02180962637066841, -0.027456650510430336, -0.012294944375753403, -0.002503782045096159, 0.03736674785614014, -0.004074631258845329, -0.02743193693459034, -0.06257446855306625, 0.022958802059292793, 0.030669400468468666, 0.024046193808317184, 0.020190894603729248, 0.014840430580079556, 0.0037070184480398893, -0.006406963802874088, -0.026369258761405945, 0.005251609720289707, -0.03188036009669304, 0.0017778242472559214, -0.04057949408888817, -0.050514306873083115, 0.07750140130519867, 0.005446228198707104, 0.00021643581567332149, 0.025603141635656357, -0.017052285373210907, -0.01446972880512476, -0.009076016955077648, 0.017361203208565712, -0.009199583902955055, 0.003991223406046629, -0.01806553639471531, 0.005362819880247116, -0.003169500734657049, -0.05807662382721901, 0.0015407295431941748, 0.015433553606271744, 0.007173080928623676, -0.009786528535187244, -0.008581748232245445, 0.008050408214330673, 0.0064440337009727955, -0.024923520162701607, -0.006314288359135389, 0.013493547216057777, -0.04122204706072807, -0.0006286485586315393, 0.03825642913579941, -0.008223402313888073, -0.0005819246871396899, 0.02968086116015911, -0.008754742331802845, -0.005421514622867107, 0.010713283903896809, 0.004828391596674919, -0.020957011729478836, 0.01853509247303009, -0.010997488163411617, 0.0236013513058424, 0.013530617579817772, 0.012739786878228188, -0.024330398067831993, -0.03346202149987221, -0.04806767404079437, -0.019054075703024864, -0.006258682813495398, -0.01977076567709446, -0.03425285220146179, 0.0032065710984170437, -0.005600687116384506, -0.011158125475049019, 0.010688570328056812, 0.01868337392807007, 0.003821318270638585, 0.018498022109270096, 0.019610127434134483, -0.017966682091355324, -0.037515025585889816, -0.02352721057832241, -0.03002684935927391, -0.01832502894103527, 0.016434447839856148, 0.019548343494534492, 0.007420215290039778, 0.017052285373210907, 0.009557929821312428, -0.03479654714465141, 0.02504708804190159, 0.02420683018863201, 0.0075932093895971775, 0.009786528535187244, 0.01238144189119339, 0.015297629870474339, 0.024602245539426804, -0.029532581567764282, 0.005878713447600603, 0.04003579914569855, -0.016063746064901352, 0.007710598409175873, 0.0008055042126215994, -0.011442330665886402, 0.012640933506190777, -0.018979934975504875, 0.018572162836790085, 0.023280076682567596, -0.04458307474851608, -0.004865461960434914, -0.026220977306365967, -0.010515576228499413, -0.00806894339621067, 0.00841493159532547, 0.03316545858979225, -0.013048704713582993, 0.03467297926545143, 0.02108057774603367, 0.008674423210322857, -0.039170827716588974, -0.019264139235019684, 0.02408326417207718, -0.008359326981008053, 0.005579062737524509, 0.04122204706072807, 0.0013345266925171018, -0.012492652051150799, 0.024107977747917175, -0.0001223122962983325, -0.0009329330059699714, 0.005798394791781902, 0.03788572922348976, -0.0019400063902139664, -0.06237676367163658, 0.021587204188108444, -9.436485561309382e-05, 0.023848485201597214, 0.020302103832364082, -0.027753211557865143, -0.027184803038835526, 0.03749031201004982, 0.022081473842263222, 0.017064642161130905, -0.0328441821038723, -0.026492824777960777, 0.009397291578352451, -0.040184080600738525, 0.005628489889204502, -0.009273724630475044, -0.016570372506976128, 0.044706642627716064, 0.008464358747005463, 0.013394693844020367, -0.014222593978047371, 0.014420301653444767, -0.0018813118804246187, 0.05056373402476311, -0.0015252836747094989, 0.0021176342852413654, 0.014568583108484745, -0.041963450610637665, 0.020129110664129257, -0.01975840888917446, -0.0167680811136961, -0.024676386266946793, 0.012542079202830791, 0.020400958135724068, -0.004559632856398821, -0.020425671711564064, -0.03017513081431389, 0.009829777292907238, 0.012678002938628197, -0.0403323620557785, -0.033486735075712204, -4.778578659170307e-05, 0.03605693206191063, 0.010503219440579414, -0.012159020639955997, 0.04280370846390724, 0.06163536012172699, 0.033758580684661865, 0.03652649000287056, -0.011349654756486416, -0.0037008400540798903, 0.020289747044444084, -0.00714836735278368, -0.004056096076965332, -0.01859687641263008, 0.04589289054274559, 0.013666541315615177, -0.013048704713582993, 0.04186459630727768, -0.003716286038979888, 0.004108611959964037, 0.03168265148997307, 0.002184051787480712, -0.026591679081320763, -0.002658241195604205, 0.039640385657548904, -0.004828391596674919, -0.019338279962539673, -0.02879117615520954, -0.0063266446813941, -0.0003595035523176193, 0.018769869580864906, 0.004074631258845329, 0.02580084837973118, 0.021438922733068466, -0.03200392797589302, -0.0035556484945118427, -0.017398273572325706, -0.02414504624903202, 0.0044360654428601265, 0.0066355629824101925, -0.023514853790402412, -0.008235759101808071, -0.007438750471919775, -0.021463636308908463, 0.01731177605688572, 0.00013235214282758534, 0.02168605849146843, -0.019869619980454445, -0.036897189915180206, 0.00714836735278368, -0.010144873522222042, -0.024676386266946793, -0.049006786197423935, 0.019647197797894478, 0.0042785173282027245, -0.006119669880717993, -0.000695065944455564, -0.024713456630706787, 0.03576037287712097, 0.000322626467095688, -0.016224384307861328, -0.022340964525938034, -0.006684990134090185, 0.043124981224536896, -0.004361925181001425, 0.02113000489771366, -0.01853509247303009, -0.046140022575855255, -0.01204163208603859, -0.0003430922806728631, 0.004170395899564028, 0.0513051375746727, 0.01764540746808052, 0.02242746204137802, 0.005387533456087112, 0.023230649530887604, 0.020882871001958847, 0.0007498989580199122, -0.031781505793333054, -0.005835465155541897, 0.04690613970160484, 0.027456650510430336, -0.02413269132375717, 0.030743539333343506, -0.004834569990634918, -0.0058756242506206036, -0.02750607766211033, 0.018423881381750107, -0.007840343751013279, 0.0123134795576334, 0.014889857731759548, 0.0036514131352305412, 0.012152842245995998, -0.011813032440841198, 0.02134007029235363, -0.04863608255982399, 0.02066045068204403, -0.0410490520298481, 0.009662961587309837, 0.0015082932077348232, -0.03435170650482178, 0.031707365065813065, 0.03343730792403221, 0.00097849837038666, 0.032868895679712296, -0.008402574807405472, -0.022415105253458023, 0.03249819576740265, 0.014494442380964756, -0.030249271541833878, 0.02127828635275364, 9.605425293557346e-05, 0.023341860622167587, 0.01155971921980381, -0.016792794689536095, 0.002857493469491601, -0.014321448281407356, -0.005606865510344505, 0.03645234927535057, -0.022476889193058014, 0.006098045501857996, -0.00015436256944667548, -0.036081645637750626, -0.024046193808317184, -0.009854490868747234, -0.011355833150446415, -0.004355746787041426, 0.0019091145368292928, -0.029656147584319115, 0.008927736431360245, 0.012319657951593399, 0.017274705693125725, -0.04396523907780647, 0.039294395595788956, -0.001573938294313848, 9.792465789359994e-06, -0.007846522144973278, -0.011695642955601215, -0.03548852354288101, -0.013678898103535175, 0.02099408209323883, 0.01439558807760477, -0.023786701261997223, -0.017361203208565712, 0.02948315441608429, -0.015903109684586525, -0.0116276815533638, 0.01854744926095009, 0.02072223275899887, 0.008118370547890663, -0.012332014739513397, 0.011306405998766422, -0.017904900014400482, 0.023910269141197205, 0.025430146604776382, 0.0025145942345261574, -0.0025377629790455103, 0.024058550596237183, 0.014494442380964756, -0.0012642478104680777, -0.04216115549206734, 0.041765742003917694, 0.01505049504339695, -0.02585027553141117, -0.05545699596405029, 0.004083898849785328, 0.023070011287927628, -0.009934809990227222, 0.020190894603729248, -0.005690273363143206, -0.003410456934943795, 0.009106908924877644, 0.014432658441364765, -0.023922625929117203, -0.0006054796976968646, 0.03373386710882187, 0.015507694333791733, -0.0058107515797019005, -0.033684439957141876, 0.03640292212367058, 0.02340364269912243, -0.0033919219858944416, -0.029186591506004333, 0.03336316719651222, 0.018757512792944908, -0.03099067509174347, 0.04366867616772652, 0.01765776425600052, 0.027802638709545135, 0.014506799168884754, 0.04043121635913849, 0.014580938965082169, 0.0026860437355935574, 0.01587839610874653, -0.0028652164619416, 0.028420474380254745, 0.0253065787255764, 0.019128214567899704, -0.020536882802844048, -0.01841152459383011, 0.011948956176638603, 0.017694834619760513, -0.011504113674163818, 0.010274619795382023, -0.0009615079034119844, -0.001382409012876451, 0.03415399789810181, -0.0004792093823198229, -0.04658486694097519, 0.04090077057480812, -0.019041718915104866, -0.00947761069983244, 0.03304189071059227, -0.015470623970031738, 0.008909201249480247, 0.03845413774251938, -0.031707365065813065, 0.02612212300300598, -0.0301009900867939, 0.025677282363176346, 0.019325923174619675, -0.0038491208106279373, 0.007414036896079779, -0.010317868553102016, -0.0048592835664749146, -0.0014133007498458028, 0.03277004510164261, 0.030348123982548714, 0.030323410406708717, -0.009452897123992443, -0.024293327704072, -0.028272194787859917, -0.008452001959085464, -0.016916360706090927, -0.020771659910678864, -0.0239473395049572, 0.005115685518831015, 0.0023354217410087585, -0.008118370547890663, 0.028148626908659935, 0.005477119702845812, 0.01237526349723339, 0.022340964525938034, -0.008254294283688068, 0.0019971563015133142, -0.021859051659703255, -0.001617186819203198, 0.018362097442150116, -0.012430869042873383, -0.008767099119722843, -0.0019060253398492932, -0.030867107212543488, -0.02011675387620926, 0.04754868894815445, -0.029186591506004333, -0.018226174637675285, -0.018732799217104912, 0.0188192967325449, -0.03568623214960098, -0.015915466472506523, -0.00353093515150249, -0.02928544580936432, -0.02572670765221119, -0.007030978333204985, -0.016879290342330933, 0.0036823051050305367, 0.012949851341545582, 0.01364182773977518, 0.016866933554410934, -0.035463809967041016, -0.015174061991274357, -0.0010943427914753556, 0.0017917256336659193, -0.012690359726548195, 0.006641741376370192, -0.03877541422843933, 0.015841325744986534, -0.035191960632801056, 0.0045874351635575294, 0.008692958392202854, 0.0174477007240057, -0.03128723427653313, 0.021228859201073647, -0.002814244944602251, 0.02100643888115883, -0.012492652051150799, 0.007358431816101074, 0.01690400391817093, -0.01627381145954132, 0.02851932868361473, -0.02666581980884075, 0.02236567810177803, 0.0008479804964736104, 0.0030598349403589964, 0.011028380133211613, -0.027950920164585114, 0.002306074369698763, 0.05377648025751114, -0.029853856191039085, 0.014580938965082169, -0.015025781467556953, -0.021945549175143242, 0.01628616824746132, 0.008952450007200241, 0.00830989982932806, -0.007197794038802385, 0.001780913444235921, 0.028964171186089516, 0.005514190066605806, -0.003141698194667697, 0.011009844951331615, -0.004408262670040131, 0.01854744926095009, -0.03185564652085304, 0.011757426895201206, -0.027926206588745117, 0.03598279133439064, 0.02688824012875557, -0.02045038528740406, 0.0022381125018000603, -0.032597050070762634, -0.015754828229546547, -0.008736207149922848, 0.0071174753829836845, -0.004612148739397526, 0.010033663362264633, -0.008927736431360245, 0.04903149977326393, -0.005372087471187115, 0.03343730792403221, -0.021055864170193672, -0.012498830445110798, 0.0009669139981269836, 0.05090972036123276, 0.015952536836266518, -0.01070710550993681, 0.011670930311083794, -0.016199670732021332, 0.02434275485575199, -0.012455581687390804, 0.08199924975633621, 0.007414036896079779, -0.016360308974981308, -0.0008603372261859477, 0.015643617138266563, 0.006956838071346283, -0.006382250227034092, 0.02701180800795555, -0.009292259812355042, 0.024503393098711967, 0.0116276815533638, 0.04075248911976814, 0.02604798413813114, -0.0017361203208565712, -0.019857263192534447, 0.0042785173282027245, 0.005974478088319302, 0.009174870327115059, 0.019115859642624855, 0.023020584136247635, 0.013098131865262985, -0.018485665321350098, 0.052985649555921555, -0.024367468431591988, 0.014926928095519543, -0.024725813418626785, -0.005823108367621899, 0.0025423967745155096, -0.04539861902594566, 0.02242746204137802, 0.045151486992836, 0.015544763766229153, -0.019647197797894478, -0.0027926205657422543, 0.029236018657684326, -0.014852787367999554, -0.03049640543758869, 0.002516138833016157, 0.011664751917123795, 0.01278921402990818, -0.00814308412373066, -0.022266823798418045, 0.017867829650640488, 0.02491116337478161, 0.028148626908659935, 0.031707365065813065, -0.052441954612731934, -0.04601645469665527, 0.041419751942157745, -0.018757512792944908, 0.04263071343302727, -0.003055201144888997, -0.06657805293798447, -0.020400958135724068, 0.002398749813437462, 0.04557161405682564, -0.016039032489061356, -0.045250337570905685, -0.010799780488014221, 0.002665964188054204, 0.030521119013428688, 0.029260732233524323, -0.0009947166545316577, -0.03776216134428978, 0.005826197564601898, 0.036897189915180206, -0.023712562397122383, -0.026319831609725952, -0.01669394038617611, -0.012257874943315983, -0.0059003378264606, -0.02229153737425804, 0.011442330665886402, -0.014778646640479565, -0.015470623970031738, 0.017225278541445732, -0.03234991431236267, 0.019041718915104866, -0.016199670732021332, -0.020573953166604042, 0.014309091493487358, -0.0017608337802812457, 0.02488645166158676, 0.02634454518556595, 0.01464272290468216, -0.05466616526246071, 0.0036977508570998907, -0.0034166353289037943, 0.023070011287927628, -0.03210277855396271, 0.017064642161130905, 0.0027632734272629023, -0.0030505673494189978, -0.01628616824746132, 0.011590611189603806, -0.014568583108484745, -0.004266160540282726, -0.054616738110780716, -0.0004510205762926489, -0.006963016465306282, -0.035735659301280975, -0.019029362127184868, -0.0465354397892952, 0.0031880359165370464, -0.03501896932721138, 0.002007968258112669, 0.009119265712797642, 0.008396397344768047, -0.028494615107774734, -0.011874816380441189, -0.012863353826105595, 0.009366399608552456, 0.04735098406672478, 0.005223806947469711, -0.0294090136885643, -0.030941247940063477, 0.03707018494606018, -0.0246269591152668, -0.007457285653799772, 0.007809452246874571, -0.006298842374235392, -0.025294223800301552, 0.02201968990266323, -0.02491116337478161, -0.017188208177685738, 0.008933914825320244, -0.023144152015447617, 0.04386638477444649, 0.016595086082816124, 0.026295118033885956, -0.014074313454329967, 0.0164097361266613, 0.01642209105193615, 0.025430146604776382, 0.01172653492540121, 0.01080595888197422, -0.03412928432226181, 0.01022519264370203, -0.004028293304145336, -0.048932645469903946, 0.011924242600798607, -0.000525160925462842, -0.02264988236129284, -0.027580218389630318, -0.018720444291830063, 0.016446804627776146, -0.00872385036200285, -0.02024032175540924, 0.009829777292907238, -0.00042283179936930537, -0.010731818154454231, 0.01522348914295435, -0.0019539077766239643, -0.016199670732021332, 0.009625891223549843, 0.012579149566590786, 0.008328435011208057, 0.005653202999383211, 0.018769869580864906, -0.02470109984278679, -0.03637820854783058, -0.013691254891455173, -0.035612091422080994, 0.0239473395049572, -0.028198054060339928, 0.014049599878489971, 0.005381355062127113, 0.006561422720551491, -0.03412928432226181, -0.03889898210763931, -0.02661639265716076, -0.031064815819263458, -0.01668158359825611, 0.021438922733068466, -0.016644513234496117, 0.009422005154192448, 0.013938389718532562, 0.008587926626205444, -0.06267332285642624, -0.005943586118519306, 0.00014441926032304764, 0.0007051058346405625, -0.013468833640217781, 0.00947143230587244, -0.010262263007462025, -0.016570372506976128, 0.021043509244918823, -0.02201968990266323, 0.021055864170193672, -0.03536495566368103, -0.008365505374968052, -0.01138672512024641, 0.012925137765705585, -0.00714836735278368, -0.010002771392464638, -0.0232677198946476, 0.0077662039548158646, 0.04193873703479767, -0.021772556006908417, 0.004924156237393618, 0.02832162193953991, 0.008952450007200241, -0.014741577208042145, 0.01330819632858038, 0.0506131574511528, -0.014753933995962143, 0.016879290342330933, -0.02449103631079197, 0.0024450875353068113, -0.028914744034409523, 0.003311603097245097, 0.027184803038835526, 0.012776857241988182, -0.0022087651304900646, -0.0005313393194228411, -0.02058630995452404, 0.025207726284861565, 0.00245435512624681, 0.0008472081972286105, -0.028815889731049538, -0.03857770562171936, 0.015124635770916939, -0.0033146922942250967, -0.029779715463519096, -0.027036521583795547, -0.03494482859969139, 0.011720356531441212, 0.043816957622766495, -0.011535005643963814, -0.013456476852297783, 0.013419407419860363, -0.03600750491023064, 0.03160851076245308, -0.004253803752362728, -0.011368189938366413, -0.0038429424166679382, -0.048809077590703964, -0.009687675163149834, 0.009761814959347248, 0.02087051421403885, -0.005288679618388414, -0.023848485201597214, -0.02886531688272953, -0.027110662311315536, -0.004636862315237522, 0.020845800638198853, -0.00882270373404026, -0.028469901531934738, -0.035340242087841034, -0.040876056998968124, -0.032868895679712296, -0.02114236168563366, 0.0016110084252431989, -0.028964171186089516, 0.03884955495595932, 1.8667831682250835e-05, 0.02093229815363884, -0.029606720432639122, 0.0005668649100698531, -0.033956289291381836, -0.023774344474077225, -0.027876779437065125, 0.0174477007240057, -0.009341686964035034, -0.0021794179920107126, 0.025195369496941566, -0.013122845441102982, -0.011003666557371616, -0.03753973916172981, 0.03959095850586891, 0.011609146371483803, 0.019140571355819702, 0.03852827847003937, -0.023082368075847626, -0.018287958577275276, 0.0033486734610050917, 0.013246412388980389, 0.020573953166604042, 0.028222767636179924, 0.024935876950621605, -0.004921067040413618, 0.01791725680232048, -0.0032745329663157463, -0.017138782888650894, 0.008699136786162853, 0.01189952902495861, 0.0074758208356797695, -0.023243006318807602, 0.011541184037923813, 0.01758362352848053, -0.019610127434134483, 0.018633946776390076, 0.013036347925662994, -0.008235759101808071, 0.005436960607767105, 0.007160724140703678, -0.04495377838611603, 0.0058972486294806, -0.04322383552789688, -0.015001067891716957, 0.024651672691106796, -0.0016542569501325488, 0.027036521583795547, -0.025874989107251167, -0.0009522403706796467, 0.040530070662498474, 0.020808730274438858, -0.0011175116524100304, -0.01608845964074135, -0.004538008477538824, -0.01948656141757965, 0.0048191240057349205, 0.0028528596740216017, -0.006703525315970182, -0.00034212690661661327, 0.003361030016094446, -0.020265035331249237, 0.008458180353045464, 0.011071628890931606, -0.008748563937842846, -0.0007645725854672492, -0.024107977747917175, 0.008612639270722866, -0.055852413177490234, 0.010330225341022015, -0.020981725305318832, 0.00841493159532547, -0.004028293304145336, -0.033066604286432266, 0.010867742821574211, -0.014593295753002167, -0.041493892669677734, -0.024639315903186798, -0.03818229213356972, -0.005795305594801903, -0.00228290562517941, -0.02716008946299553, -0.029606720432639122, -0.00899569783359766, -0.016063746064901352, 0.004417530260980129, 0.00014094392827246338, -0.016224384307861328, 0.020030256360769272, -0.006647919770330191, 0.009502324275672436, -0.02224211022257805, 0.026295118033885956, 0.0024203741922974586, 0.01601432077586651, 0.04618944972753525, 0.02052452601492405, -0.03220163285732269, -0.03531552851200104, 0.023638421669602394, -0.010577359236776829, 0.01186245959252119, 0.007939198054373264, 0.026146836578845978, -0.005313393194228411, -0.029038311913609505, 0.006054796744138002, -0.005124953109771013, 0.016978144645690918, 0.026146836578845978, 0.028296908363699913, 0.008557034656405449, 0.01956070028245449, -0.003524756757542491, 0.041073765605688095, -0.009564107283949852, -0.011108698323369026, 0.022390391677618027, 0.029779715463519096, -0.005409157834947109, -0.02066045068204403, -0.006468747276812792, -0.023440713062882423, -0.013357623480260372, -0.019239425659179688, 0.002645884407684207, -0.022464532405138016, -0.019807836040854454, -0.033832721412181854, 0.020635737106204033, 0.0006830953643657267, -0.017064642161130905, 0.02886531688272953, 0.03872598707675934], [0.004906584043055773, 0.012932894751429558, 0.032547589391469955, 0.019766025245189667, -0.05261627584695816, 0.01778709515929222, 0.020732209086418152, -0.002093883464112878, 0.009347537532448769, 0.02300216071307659, -0.015342533588409424, 0.012746642343699932, 0.018008269369602203, -0.04400210827589035, 0.004216868430376053, 0.01517956331372261, 0.04046331346035004, 0.037087488919496536, -0.047145113348960876, 0.004970608279109001, 0.02330482006072998, 0.04218614846467972, -0.03755312040448189, 0.03124382346868515, 0.028985515236854553, 0.00602409802377224, 0.030522096902132034, -0.006972820498049259, 0.03175601735711098, -0.04176707938313484, 0.024259362369775772, -0.004208138212561607, 0.022245509549975395, -0.04325709864497185, 0.05224377289414406, 0.04907748103141785, -0.02375881001353264, 0.03431698679924011, 0.0054187779314816, -0.02317677065730095, -0.04160410910844803, -0.027355806902050972, -0.013002739287912846, -0.0313369520008564, -0.04304756596684456, 0.06402423232793808, 0.018078114837408066, -0.015959493815898895, 0.009999420493841171, 0.0174495130777359, 0.001178627833724022, 0.009603634476661682, -0.041534263640642166, 0.010628022253513336, 0.06025262176990509, -0.017053727060556412, 0.02845004014670849, -0.004190676845610142, 0.029078641906380653, 0.0009894653921946883, -0.030894601717591286, 0.0037221359089016914, -0.04488680511713028, 0.011611667461693287, 0.0379023440182209, -0.0474710576236248, 0.029637398198246956, 0.062347959727048874, -0.016297075897455215, -0.01879984140396118, -0.0315232016146183, 0.04667948558926582, 0.03759968280792236, -0.07235901802778244, -0.03007974661886692, 0.05601537972688675, 0.024329207837581635, -0.043373506516218185, 0.02581922523677349, -0.01784529909491539, -0.025027653202414513, -0.02465514838695526, -0.0055235447362065315, 0.06388454139232635, -0.0069146170280873775, 0.017612483352422714, -0.03289681300520897, 0.0004754526598844677, -0.019509928300976753, 0.01812467724084854, -0.0004223416617605835, -0.012828127481043339, -0.02026657946407795, 0.0369710810482502, 0.009353358298540115, -0.0469123013317585, 0.012281011790037155, 0.00017342927458230406, -0.023805372416973114, 0.04442117363214493, 0.007211456540971994, 0.005590479355305433, 0.022850830107927322, 0.0017883131513372064, 0.01953321136534214, -0.023712247610092163, -0.08181132376194, 0.001933822757564485, 0.03985799476504326, -0.026634080335497856, 0.0066061364486813545, 0.0005158315761946142, -0.04311740770936012, 0.004630115814507008, -5.215610144659877e-05, 0.004356557969003916, -0.0028796351980417967, -0.05834353342652321, 0.045492127537727356, -0.011041269637644291, 0.004213958512991667, 0.015691757202148438, -0.0028199763037264347, -0.05475817620754242, 0.012315933592617512, -0.0032681459560990334, 0.019707821309566498, -0.007025204133242369, -0.02940458245575428, -0.03899657726287842, 0.024445615708827972, -0.03252431005239487, 0.04169723391532898, -0.013212272897362709, -0.0032856070902198553, 0.03259415179491043, 0.03832141309976578, -0.024585304781794548, -0.027728311717510223, -0.02959083579480648, -0.009813168086111546, -0.0123857781291008, 0.004283803049474955, 0.02326989732682705, -0.03585356846451759, 0.029963340610265732, -0.026447826996445656, 0.025609692558646202, 0.0801350548863411, -0.005407137330621481, -0.019393522292375565, 0.05447879806160927, 0.008055412210524082, -0.010866657830774784, 0.04823934659361839, -0.0015103898476809263, -0.025702817365527153, 0.039788149297237396, 0.0002342704829061404, 0.006996102165430784, -0.05811071768403053, 0.020185094326734543, 0.002926198299974203, -0.0013816137798130512, 0.046772610396146774, -0.005191782955080271, 0.026727205142378807, 0.012397418729960918, -0.04814622178673744, -0.0444677397608757, -0.015295970253646374, -0.032943375408649445, 0.01652989163994789, -0.008870266377925873, -0.010348644107580185, -0.0015598630998283625, 0.03722717985510826, 0.024981090798974037, 0.05396660417318344, 0.02103487029671669, 0.0014914735220372677, 0.010144930332899094, 0.0028709047473967075, -0.03499215096235275, -0.05061406269669533, -0.029358020052313805, 0.019230550155043602, -0.018497182056307793, -0.039718303829431534, 0.017891861498355865, 0.018136318773031235, -0.045911192893981934, -0.0021317158825695515, -0.01900937594473362, -0.052383460104465485, 0.0030062287114560604, -0.02726268209517002, -0.05620163306593895, 0.004138293210417032, -0.037669528275728226, -0.03191898763179779, -0.03794890642166138, -0.043862417340278625, -0.007950644940137863, -0.045305874198675156, -0.0278680007904768, 0.0004852745623793453, 0.006751646287739277, 0.0433502234518528, 0.009254411794245243, 0.01353821437805891, -0.0570397675037384, -0.009423202835023403, -0.0004103371175006032, -0.0004358012811280787, -0.00318084005266428, 0.004801817238330841, 0.01094814296811819, 0.00915546528995037, -0.0055468264035880566, 0.021162917837500572, -0.04311740770936012, 0.001173535012640059, 0.004630115814507008, -0.003986963536590338, 0.009906294755637646, -0.030638504773378372, 0.01396892312914133, -0.03538793697953224, -0.047913406044244766, -0.041045352816581726, 0.03038240782916546, 0.01609918288886547, -0.039508771151304245, 0.022734422236680984, 0.006134685128927231, 0.014155175536870956, -0.017426231876015663, -0.014155175536870956, 0.00563413230702281, 0.027705030515789986, 0.0369710810482502, -0.018159599974751472, 0.014225020073354244, -0.008695654571056366, -0.03624935448169708, -0.02229207381606102, 0.006774927489459515, 0.021686753258109093, -0.042116302996873856, -0.022361917421221733, 0.010133289732038975, 0.05177814140915871, -0.06588675081729889, 0.014003844931721687, 0.0051772319711744785, 0.013375244103372097, 0.014062048867344856, -0.002891276031732559, -0.01897445321083069, 0.0030906242318451405, 0.016972241923213005, 0.0038618252146989107, -0.028659572824835777, -0.002381992293521762, -0.03946220874786377, 0.012688438408076763, -0.0474710576236248, 0.006204530131071806, 0.027332525700330734, -0.03683139383792877, -0.00846283882856369, 0.016227232292294502, 0.027798157185316086, -0.03645888715982437, 0.011320647783577442, 0.004551540594547987, -0.04884466901421547, 0.010069265030324459, 0.01513299997895956, -0.034177299588918686, 0.011815380305051804, -0.01606426201760769, -0.05559631437063217, 0.015586989931762218, 0.0049124048091471195, -0.006198709364980459, 0.03175601735711098, 0.01628543622791767, 0.043955545872449875, -0.0038385435473173857, -0.012793205678462982, -0.04246552661061287, 0.01983587071299553, 0.00434491690248251, -0.006210350431501865, -0.002901461673900485, -0.014818699099123478, 0.005721438210457563, 0.0023441598750650883, 0.009923756122589111, 0.025074217468500137, -0.001875618938356638, 0.017740532755851746, -0.07920379191637039, 0.036598578095436096, 0.012199525721371174, 0.010692046023905277, -0.01621559076011181, 0.015284329652786255, -0.02315348945558071, -0.008049591444432735, -0.060299184173345566, -0.04351319372653961, -0.01992899738252163, -0.03974158689379692, -0.022734422236680984, -0.007898261770606041, -0.010156570933759212, -0.015156281180679798, 0.01401548646390438, 0.036994364112615585, 0.004277982749044895, -0.0024591125547885895, -0.026913458481431007, -0.028613010421395302, 0.03324603661894798, -0.010651303455233574, -0.03687795624136925, -0.004205227829515934, -0.04206974059343338, -0.015400737524032593, 0.013410165905952454, -0.01479541789740324, -0.01099470630288124, 0.001272481633350253, 0.0059484331868588924, -0.03301322087645531, 0.030894601717591286, 0.0070368447341024876, 0.016087543219327927, -0.0011706248624250293, 0.041650671511888504, 0.027798157185316086, 0.008416276425123215, 0.04626041650772095, 0.05918167158961296, 0.03666842356324196, 0.011128575541079044, 0.015435660257935524, -0.0020138530526310205, 0.0027632275596261024, 0.006507189944386482, 0.03513184189796448, -0.06751646101474762, -0.02195448987185955, 0.018881328403949738, -0.0036173691041767597, -0.06681801378726959, 0.025400158017873764, -0.038926731795072556, -0.006611956749111414, 0.028054254129529, 0.07342997193336487, -0.038833606988191605, 0.021162917837500572, -0.008299868553876877, -0.036109667271375656, 0.0495431125164032, -0.004667948465794325, -0.043187253177165985, -0.017740532755851746, -0.05191782861948013, 0.0016035159351304173, -0.024142954498529434, -0.04276818409562111, -0.008253305219113827, 0.0031924808863550425, 0.05000874400138855, -0.0039724125526845455, 0.0317094549536705, -0.009312615729868412, -0.0013525118120014668, -0.013410165905952454, 0.0996449813246727, 0.023933421820402145, -0.06537456065416336, -0.03298994153738022, 0.03250102698802948, -0.04090566188097, -0.010726968757808208, 0.04707527160644531, 0.008538504131138325, -0.00266428105533123, -0.00640824344009161, -0.018206162378191948, 0.027309244498610497, 0.02493452839553356, 0.037972189486026764, -0.04721495881676674, 0.018113037571310997, -0.042418964207172394, 0.017426231876015663, -0.03368838503956795, -0.018846405670046806, -0.004042257089167833, -0.0172632597386837, -0.019358599558472633, 0.002884000539779663, -0.01897445321083069, -0.008491940796375275, -0.06574706733226776, 0.03955533355474472, -0.04030034318566322, 0.010849196463823318, -0.015691757202148438, -0.02689017727971077, 0.033129628747701645, -0.04539899900555611, -0.057412274181842804, 0.037203896790742874, 0.0248646829277277, 0.014958388172090054, 0.011966710910201073, -0.05727258324623108, -0.025307031348347664, 0.013084224425256252, 0.02262965589761734, 0.04809965938329697, -0.05107969418168068, -0.03755312040448189, -0.01619230955839157, 0.04281475022435188, 0.01606426201760769, -0.037297025322914124, -0.016052620485424995, -0.001001106109470129, -0.025842508301138878, -0.030242718756198883, -0.04393226280808449, 0.013072583824396133, -0.0379023440182209, -0.010808453895151615, -0.002598801627755165, 0.00856760609894991, 0.04046331346035004, 0.009789886884391308, 0.03638904541730881, 0.056434448808431625, 0.03860079124569893, -0.02017345279455185, 0.009848090820014477, -0.005619581323117018, -0.007252199109643698, -0.03860079124569893, 0.02903207764029503, -0.023863576352596283, -0.031290385872125626, 0.021081432700157166, -0.009364998899400234, 0.022897392511367798, 0.011704793199896812, 0.05368722602725029, 0.033897921442985535, 0.04479368031024933, 0.03499215096235275, -0.030964445322752, -0.002389267785474658, -0.02833363227546215, 0.020930102095007896, -0.03939236328005791, -0.008392994292080402, -0.017950065433979034, 0.0469123013317585, 0.05080031603574753, 0.04421164095401764, -0.02602875977754593, -0.010604741051793098, -0.08055412024259567, -0.0016937318723648787, -0.023188412189483643, -0.004190676845610142, -0.018043192103505135, -0.0012921253219246864, 0.036901239305734634, 0.026727205142378807, 0.06123044714331627, 0.00773529103025794, -0.10160063207149506, -0.030149592086672783, -0.05094000697135925, -0.004499157425016165, 0.03925267234444618, -0.01053489651530981, -0.02523718774318695, 0.021232763305306435, 0.014050408266484737, 0.014038767665624619, 0.04023049771785736, -0.023572556674480438, -0.0377160906791687, -0.01732146367430687, 0.028938952833414078, -0.029055358842015266, -0.009481406770646572, 0.01913742534816265, -0.025982197374105453, -0.003070252947509289, -0.02026657946407795, -0.017530998215079308, -0.013095865026116371, 0.0076421648263931274, 0.02854316681623459, -0.009824809618294239, -0.019370239228010178, -0.004414761904627085, 0.010401027277112007, 0.019754385575652122, -0.034177299588918686, 0.034293707460165024, 0.021733315661549568, 0.00044053036253899336, -0.02689017727971077, -0.004455504473298788, 0.014050408266484737, 0.009143823757767677, -0.00511902803555131, -0.04940342530608177, -0.007717830128967762, 0.004810547921806574, 0.03624935448169708, -0.034666210412979126, -0.005826205015182495, 0.04507305845618248, 0.03585356846451759, 0.008660731837153435, -0.002722484990954399, 0.005791282746940851, 0.010040163062512875, -0.005351843778043985, 0.02526046894490719, -0.014399631880223751, 0.027542060241103172, -0.01913742534816265, -0.0037628787104040384, 0.009487226605415344, 0.031593047082424164, 0.05475817620754242, -0.01906757988035679, -0.012653515674173832, 0.023910140618681908, 0.010383565910160542, -0.01310750562697649, -0.003649381222203374, -0.01692567765712738, -0.030824756249785423, 0.027774875983595848, -0.0034078352618962526, -0.023409586399793625, -0.00861416943371296, 0.008608348667621613, 0.01827600784599781, 0.021791519597172737, -0.005814564414322376, -0.01276992354542017, 0.042721621692180634, 0.007723650429397821, -0.04800653085112572, 0.004068448673933744, -0.01126826461404562, -0.022618014365434647, 0.04030034318566322, -0.005945522803813219, 0.036109667271375656, 0.043769292533397675, 0.015004951506853104, 0.014888543635606766, -0.03296665847301483, 0.023223334923386574, -0.010354463942348957, 0.00463884649798274, 0.04842559993267059, -0.009236950427293777, 0.008532683365046978, -0.012606953270733356, 0.04041675105690956, -0.00442349212244153, -0.015377456322312355, -0.009533789940178394, 0.041161760687828064, 0.01117513794451952, 0.003236133838072419, 0.035550907254219055, -0.024585304781794548, 0.011076191440224648, 0.023432867601513863, -0.059833552688360214, 0.004504977725446224, -0.005960073787719011, 0.02409639209508896, 0.011029629036784172, -0.0039491308853030205, -0.020336423069238663, -0.021721675992012024, 0.016692863777279854, -0.01788022182881832, 0.03662186115980148, 0.0155753493309021, -0.002699203323572874, 0.004088819958269596, 0.01765904761850834, 0.0011720799375325441, 0.04805309325456619, -0.016657941043376923, -0.010371925309300423, 0.01465572789311409, -0.00022808632638771087, 0.009586173109710217, -0.03387463837862015, 0.03308306634426117, 0.02526046894490719, 0.03026599995791912, 0.012164603918790817, 0.014609165489673615, -0.03557419031858444, -0.003134277183562517, -0.017728891223669052, -0.04865841567516327, -0.007374427281320095, 0.037762656807899475, 0.02737908810377121, 0.015482222661376, -0.062161706387996674, 0.011279905214905739, -0.026377983391284943, 0.018904609605669975, -0.0001242288271896541, 0.00812525674700737, -0.012176244519650936, -0.016879115253686905, 0.047727152705192566, -0.007659626193344593, 0.005215064622461796, -0.05564287677407265, 0.04963624104857445, 0.0683080330491066, 0.0042954436503350735, -0.0184855405241251, 0.04239568114280701, 0.010959784500300884, -0.004196497146040201, -0.01581980474293232, -0.005421688314527273, -0.03261743485927582, 0.011815380305051804, -0.0248646829277277, -0.038833606988191605, 0.04002096503973007, 0.04963624104857445, 0.00022917764727026224, 0.01033118274062872, 0.014609165489673615, 0.0058320253156125546, -0.005901869852095842, 0.007292941678315401, -0.005776731763035059, 0.008934290148317814, -0.008887726813554764, 0.023712247610092163, -0.021779879927635193, -0.03908970206975937, 0.00601827772334218, 0.026517672464251518, 0.0002821067755576223, -0.00041834014700725675, -0.026191730052232742, -0.0012171879643574357, 0.017437871545553207, -0.015272689051926136, -0.010383565910160542, 0.010860837996006012, -0.01803155057132244, -0.02484140172600746, 0.06169607490301132, -0.010086726397275925, -0.0015875098761171103, 0.017624124884605408, 0.007979746907949448, -0.005698156543076038, 0.016471687704324722, -0.003212852170690894, -0.03131366893649101, -0.009568712674081326, 0.016448406502604485, 0.03585356846451759, -0.006769107189029455, 0.015377456322312355, -0.015307611785829067, -0.0078109558671712875, -0.04137129336595535, 0.01242070086300373, 0.002894186181947589, 0.012618593871593475, -0.01987079344689846, -0.01556370873004198, 0.014504398219287395, -0.010214774869382381, -0.025842508301138878, 0.015784883871674538, -0.01276992354542017, -0.0022190215531736612, 0.015482222661376, -0.05135907232761383, -0.003253594972193241, -0.02152378298342228, -0.01198999211192131, -0.009103081189095974, 0.004988069646060467, 0.024887964129447937, -0.002565334551036358, 0.03229149430990219, 0.028217224404215813, 0.004429312888532877, 0.020254937931895256, 0.038833606988191605, 0.01572667993605137, 0.013026020489633083, 0.012525467202067375, 0.010075085796415806, 0.04041675105690956, -0.004566091578453779, -0.008096154779195786, 0.012129681184887886, -0.01778709515929222, -0.01591293141245842, 0.0008359527564607561, -0.018625231459736824, 0.030033184215426445, -0.024911245331168175, 0.01692567765712738, 0.0032594152726233006, -0.03638904541730881, -0.030242718756198883, -0.011838662438094616, 0.004481696058064699, 0.014737213961780071, 0.011827021837234497, 0.026424545794725418, -0.03494558855891228, 0.017088649794459343, -0.006617777049541473, 0.006646879017353058, -0.01643676683306694, -0.024794837459921837, -0.0035882671363651752, -0.04050987586379051, -0.0168907567858696, 0.05075375363230705, 0.007345325313508511, -0.04456086456775665, -0.0025755201932042837, -0.007415169849991798, -0.0029451146256178617, 0.010942323133349419, 0.015610271133482456, -0.0035475243348628283, -0.07058962434530258, 0.012909612618386745, -0.017984988167881966, 0.0056661441922187805, 0.030871320515871048, -0.004880392458289862, -0.008363892324268818, 0.03832141309976578, 0.04523602873086929, -0.014329786412417889, -0.02400326542556286, -0.010919041000306606, -0.00679238885641098, -0.02977708727121353, -0.012641875073313713, -0.03298994153738022, -0.023688964545726776, 0.01436470914632082, 0.011629128828644753, -0.013514933176338673, 0.0030178693123161793, -0.0016384382033720613, -0.008375533856451511, 0.014236660674214363, 0.018322570249438286, -0.013573137111961842, -0.013468369841575623, -0.01904429867863655, 0.02324661612510681, 0.01169897336512804, 0.0015118449227884412, -0.023572556674480438, 0.006006636656820774, -0.004219778813421726, 0.003361272159963846, -0.017368027940392494, -0.011262443847954273, -0.007863339968025684, 0.014050408266484737, -0.009981959126889706, -0.029916776344180107, -0.0016689952462911606, 0.017542639747262, -0.023083645850419998, -0.025958914309740067, 0.036109667271375656, 0.05913510546088219, 0.013014379888772964, 0.04903091862797737, -0.011687331832945347, 0.027402371168136597, -0.002604622161015868, 0.0018217803444713354, -0.02989349514245987, -0.0012113675475120544, 0.008410455659031868, 0.008072873577475548, 0.014085331000387669, 0.021174559369683266, 0.006757466588169336, 0.005555557087063789, -0.004024795722216368, -0.008561785332858562, -0.03759968280792236, -0.004976428579539061, 0.026238294318318367, -0.04786684364080429, -0.009580353274941444, 0.003675572806969285, 0.0013386884238570929, -0.023467790335416794, 0.01010418776422739, 0.013095865026116371, 0.026261575520038605, 0.02775159291923046, -0.03657529503107071, 6.21598883299157e-05, -0.014690650627017021, -0.02670392394065857, 0.014225020073354244, 0.012793205678462982, -0.043769292533397675, -0.0078109558671712875, 0.027309244498610497, -0.011320647783577442, -0.004667948465794325, -0.010389386676251888, 0.01396892312914133, -0.009423202835023403, -0.029171766713261604, -0.0034194758627563715, 0.012339215725660324, 0.0014805602841079235, -0.030685067176818848, 0.002566789509728551, -0.00236453115940094, 0.006821490824222565, 0.016937319189310074, -0.005785462446510792, 0.04011408984661102, 0.0217682383954525, -0.035737160593271255, -0.02544672042131424, -0.010895759798586369, 0.05126594752073288, -0.00417030556127429, 0.06309296935796738, -0.017915144562721252, -0.04032362252473831, 0.0033700026106089354, -0.02023165673017502, -0.013782670721411705, 0.06560737639665604, -0.009207848459482193, -0.007327863946557045, 0.014236660674214363, 0.0236424021422863, 0.0070368447341024876, -0.0031400974839925766, -0.03676154837012291, 0.011536002159118652, 0.041441138833761215, 0.041068632155656815, -0.0279611274600029, 0.017728891223669052, -0.01781037636101246, -0.01855538599193096, -0.014050408266484737, 0.0059484331868588924, 0.014539320953190327, -0.0019076310563832521, -0.004187766928225756, 0.009079799987375736, 0.015435660257935524, -0.008160179480910301, 0.035644035786390305, -0.030615223571658134, 0.04227927327156067, -0.02661079913377762, 0.00778185436502099, 0.03212852403521538, -0.04044003039598465, 0.0009072524262592196, 0.013084224425256252, 0.007275480777025223, 0.010307900607585907, 0.013456729240715504, 0.0011728075332939625, 0.013526573777198792, 0.03832141309976578, -0.02400326542556286, 0.02931145578622818, 0.010005241259932518, 0.006553752813488245, 0.028613010421395302, -0.025470003485679626, 0.005354753695428371, -0.02015017159283161, -0.029614116996526718, 0.005788372363895178, -0.02306036278605461, 0.021325889974832535, -0.022943956777453423, -0.01938188076019287, 0.001960014458745718, 0.03278040513396263, -0.016203951090574265, 0.0030178693123161793, -0.0068331314250826836, -0.021349171176552773, -0.0156684760004282, 0.02388685755431652, 0.004350737668573856, -0.060485437512397766, 0.044653989374637604, 0.0054391492158174515, 0.0032070318702608347, -0.005791282746940851, -0.016751067712903023, -0.03368838503956795, 0.020685646682977676, -0.007653805892914534, 0.01105291023850441, -0.06551425158977509, 0.0058058337308466434, 0.021046509966254234, -0.012839768081903458, -0.002741401083767414, 0.008986673317849636, 0.011920147575438023, 0.03918283060193062, 0.006425704341381788, 0.028170662000775337, -0.03103429079055786, 0.029264893382787704, 0.038647353649139404, 0.010750249959528446, -0.02198941260576248, 0.02968396060168743, -0.016238873824477196, -0.006937898229807615, -0.033711668103933334, 0.03657529503107071, 0.011955070309340954, -0.01732146367430687, -0.041161760687828064, 0.028263786807656288, 0.036412324756383896, -0.00735114561393857, 0.0011669871164485812, -0.01925383135676384, 0.02726268209517002, 0.01737966760993004, -0.004359467886388302, 0.003826902946457267, 0.004778535570949316, 0.01760084368288517, 0.019114142283797264, -0.006041559390723705, -0.04516618326306343, 0.019905714318156242, 0.013119147159159184, 0.0318957082927227, -0.004915314726531506, 0.022548168897628784, 0.014248301275074482, -0.014550961554050446, 0.02079041302204132, -0.0030818935483694077, 0.03585356846451759, -0.011070371605455875, 0.025027653202414513, 0.007874980568885803, -0.03725046291947365, 0.014562602154910564, -0.014178456738591194, 0.03662186115980148, 0.017635764554142952, 0.026540953665971756, 0.0023863576352596283, 0.006419884040951729, 0.016017697751522064, 0.022978877648711205, -0.034014325588941574, 0.011530181393027306, -0.011669871397316456, 0.0005362029187381268, 0.005645772907882929, 0.008684013970196247, -0.06039230898022652, 0.04088238254189491, -0.022757703438401222, -0.008259125985205173, 0.029334738850593567, -0.0003132094570901245, 0.02079041302204132, -0.0002802879025693983, 0.008049591444432735, -0.013480010442435741, -0.035946693271398544, 0.03345556929707527, 0.05443223565816879, 0.02180316112935543, 0.013666262850165367, 0.006437345407903194, -0.021500499919056892, -0.007927363738417625, 0.043000999838113785, 0.006513010244816542, 0.04600432142615318, -0.00696117989718914, -0.006774927489459515, -0.02090682089328766, -0.01131482794880867, 0.001791223301552236, -0.01974274404346943, -0.05601537972688675, -0.0068913353607058525, -0.03946220874786377, 0.0044846064411103725, 0.04155754670500755, 0.01765904761850834, 0.011524361558258533, -0.027635185047984123, 0.01508643664419651, 0.011501080356538296, -0.02572610042989254, -0.0034340268466621637, 0.01713521219789982, -0.009248591028153896, -0.019661258906126022, -0.007269660476595163, -0.013561496511101723, -0.03683139383792877, 0.048518724739551544, -0.02407311089336872, -0.005386766046285629, -0.010383565910160542, 0.031290385872125626, -0.035550907254219055, -0.01246726419776678, -0.016262155026197433, -0.014143534936010838, 0.010197313502430916, -0.0058087436482310295, 0.009498867206275463, -0.0006482453318312764, 0.020650723949074745, 0.020534316077828407, -0.0035999079700559378, -0.03094116412103176, -0.0009108901722356677, 0.00356498546898365, 0.003471859497949481, -0.04099879041314125, 0.0019527389667928219, -0.021931208670139313, 0.013608058914542198, -0.02863629162311554, -0.025516565889120102, -0.01900937594473362, 0.038042034953832626, -0.016413483768701553, 0.009929575957357883, -0.007386067882180214, 0.021081432700157166, -0.002968396060168743, 0.020743850618600845, 0.02544672042131424, 0.0033263498917222023, 0.05326816067099571, -0.030149592086672783, 0.036039821803569794, -0.029427863657474518, 0.010249697603285313, 0.014143534936010838, 0.0019236371153965592, -0.008404634892940521, 0.05503755807876587, -0.04078925400972366, -0.012362496927380562, -0.029451146721839905, -0.01209475938230753, -0.02523718774318695, -0.02775159291923046, -0.005124848801642656, 0.004842559807002544, -0.0140271270647645, 0.0001969836448552087, -0.004929865710437298, 0.015447300858795643, -0.0022437581792473793, 0.0034252963960170746, -0.01503987330943346, -0.023223334923386574, 0.0061754281632602215, -0.015482222661376, 0.0017795825842767954, 0.006804029457271099, -0.00601827772334218, 0.015482222661376, -0.0057709114626049995, 0.013619699515402317, 0.007386067882180214, -0.020045405253767967, -0.02912520430982113, -0.004979338962584734, -0.02600547857582569, 0.02084861695766449, -0.009283513762056828, 0.009498867206275463, -0.02195448987185955, -0.01824108511209488, 0.006507189944386482, 0.025074217468500137, 0.011058731004595757, -0.014038767665624619, -0.010139109566807747, -0.016669580712914467, -0.010069265030324459, -0.006827311124652624, 0.07426811009645462, -0.03480590134859085, -0.017984988167881966, 0.01165241003036499, 0.02987021394073963, -0.012490545399487019, 0.006501369643956423, 0.021756596863269806, 0.004429312888532877, 0.06015949323773384, -0.000279742234852165, 0.039322517812252045, 7.316405390156433e-05, -0.002607532311230898, -0.007973927073180676, 0.021162917837500572, 0.035155121237039566, 0.012362496927380562, 0.02474827505648136, 0.002734125591814518, 0.02747221477329731, -0.014376349747180939, 0.03126710653305054, -0.022978877648711205, -0.011454517021775246, -0.004138293210417032, -0.024981090798974037, -0.01827600784599781, -0.02238519862294197, 0.006123044528067112, 0.018206162378191948, 0.030591940507292747, -0.027542060241103172, -0.001606426085345447, -0.003355451626703143, -0.018590308725833893, 0.00601827772334218, 0.01572667993605137, 0.01066876482218504, 0.03375823050737381, 0.00018443343287799507, -0.010197313502430916, 0.027705030515789986, 0.014457834884524345, 0.009603634476661682, 0.02949770912528038, -0.0504743754863739, -0.05280252918601036, 0.0501018688082695, -0.02728596329689026, 0.00962691567838192, -0.020313141867518425, -0.02293231524527073, -0.02088353969156742, 0.017426231876015663, 0.018194522708654404, -0.005421688314527273, -0.052569713443517685, -0.0009618185576982796, 0.0013183171395212412, 0.018438978120684624, -0.0019643798004835844, -0.022746063768863678, -0.04055643826723099, 0.017123570665717125, 0.022210586816072464, -0.004673768766224384, -0.00041215599048882723, -0.030103029683232307, -0.03385135531425476, 0.0008286772645078599, -0.04188348725438118, -0.004566091578453779, -0.007677087094634771, -0.016273794695734978, 0.020895181223750114, -0.034200578927993774, 0.027146274223923683, -0.01609918288886547, -0.002934928983449936, -0.005127758719027042, -0.01054653711616993, 0.017053727060556412, 0.021011589094996452, 0.01769396848976612, -0.04986905679106712, 0.002971306210383773, -0.0024009086191654205, 0.03364182263612747, -0.015447300858795643, 0.010587279684841633, -0.010802634060382843, -0.026377983391284943, -0.048518724739551544, -0.0029131025075912476, -0.00219574011862278, 0.013084224425256252, -0.04528259113430977, -0.01649497076869011, -0.008916828781366348, -0.024794837459921837, -0.008503581397235394, -0.03920610994100571, 0.008276586420834064, -0.021209482103586197, -0.005622491706162691, -0.015330892987549305, 0.00015060245641507208, -0.0034602186642587185, 0.009813168086111546, -0.005779641680419445, 0.01465572789311409, 0.030638504773378372, -0.005733078811317682, -0.011082012206315994, -0.0036202792543917894, 0.038042034953832626, -0.04449101909995079, 0.01027297880500555, 0.031779300421476364, -0.0033176192082464695, -0.006751646287739277, 0.024142954498529434, -0.0032448642887175083, -0.011297366581857204, -0.00882952380925417, -0.02066236548125744, 0.017251620069146156, 0.013910719193518162, -0.006600316148251295, -0.025470003485679626, 0.026238294318318367, 0.021977772936224937, 0.04020721837878227, -0.003733776742592454, 0.02602875977754593, -0.03867063671350479, -0.015261048451066017, -0.018660152330994606, -0.025516565889120102, 0.0030004081781953573, 0.010750249959528446, 0.003626099554821849, 0.00031993925222195685, -0.02283918857574463, 0.0248646829277277, -0.028054254129529, -0.04456086456775665, 0.05080031603574753, 0.01143705565482378, 0.018927890807390213, 0.006483908277004957, 0.009690940380096436, -0.01011582836508751, -0.010430129244923592, -0.0063791414722800255, 0.027309244498610497, -0.0029232881497591734, -0.011646589264273643, -0.011279905214905739, -0.028217224404215813, -0.002278680447489023, -0.043187253177165985, 0.017670687288045883, -0.019661258906126022, 0.02133752964437008, -0.004877482075244188, 0.02229207381606102, -0.04078925400972366, -0.012944535352289677, -0.027239399030804634, -0.0168907567858696, 0.0007162710535340011, 0.007886621169745922, -0.014527679421007633, 0.013468369841575623, -0.01354985497891903, 0.006280194967985153, -0.02195448987185955, -0.004088819958269596, -0.0019454635912552476, -0.009254411794245243, 0.015540426596999168, -0.0033263498917222023, -0.03601653873920441, -0.016425125300884247, 0.011047089472413063, -0.028752699494361877, 0.002867994597181678, -0.0019469186663627625, 0.020708927884697914, -0.0031662893015891314, -0.0005260172765702009, -0.0075839608907699585, -0.028193943202495575, -0.04605088382959366, 0.019661258906126022, 0.009493047371506691, 0.0012324664276093245, -0.006705082952976227, 0.04800653085112572, 0.0011538912076503038, -0.014085331000387669, 0.011076191440224648, 0.03580700606107712, -0.027984408661723137, 0.006489728577435017, -0.028589729219675064, 0.011547642759978771, -0.03706420958042145, 0.0012368317693471909, 0.0036377403885126114, -0.012443982064723969, -0.0054187779314816, -5.543006773223169e-05, -0.013421806506812572, 0.015598630532622337, -0.014178456738591194, 0.005727258510887623, -0.037483274936676025, -0.03345556929707527, 0.0009116177097894251, 0.001682091155089438, -0.041464418172836304, 0.0011662595206871629, -0.010005241259932518, -0.003422386012971401, 0.0570397675037384, -0.0279611274600029, -0.032244931906461716, 0.023805372416973114, -0.013712826184928417, 0.013736107386648655, -0.005840755999088287, -0.01628543622791767, 0.010185672901570797, -0.05154532566666603, -0.003963681869208813, 0.012653515674173832, 0.02407311089336872, -0.02803097292780876, 0.007031024433672428, -0.029567552730441093, -0.04041675105690956, 0.016751067712903023, -0.005625401623547077, -0.01977766677737236, -0.03354869782924652, -0.03143007680773735, -0.03857750818133354, -0.029358020052313805, -0.0076072425581514835, 0.035644035786390305, -0.04167395457625389, 0.03305978327989578, 0.0035766263026744127, 0.0033001580741256475, -0.0070950486697256565, 0.014585883356630802, -0.033409006893634796, 0.016122465953230858, -0.04761074483394623, 0.008759678341448307, 0.014900184236466885, 0.012443982064723969, -0.009603634476661682, 0.0050084409303963184, 0.010139109566807747, -0.037483274936676025, 0.016727784648537636, -0.0123857781291008, -0.0009494502446614206, 0.02814737893640995, -0.022897392511367798, -0.009283513762056828, -0.0033903741277754307, 0.0030498814303427935, -0.0030644324142485857, 0.05936792120337486, 0.012537108734250069, -0.03538793697953224, 0.01814795844256878, 0.008288227953016758, 0.0004809092788491398, -0.030522096902132034, 0.009958677925169468, 0.017984988167881966, -0.024818120524287224, 0.018904609605669975, 0.024724993854761124, 0.007159072905778885, 0.01637856289744377, 0.03066178597509861, -0.018962813541293144, 0.03869391605257988, -0.005217974539846182, -0.02032478339970112, 0.009987779892981052, -0.014527679421007633, -0.005151040386408567, -0.002607532311230898, 0.024631867185235023, 0.02581922523677349, 0.004283803049474955, -0.007869159802794456, 0.01897445321083069, 0.014713931828737259, 0.03599325940012932, 0.00258279568515718, -0.02112799510359764, -0.024794837459921837, 0.021162917837500572, 0.003969502169638872, -0.01821780391037464, 0.007939004339277744, 0.001295035588555038, -0.010616381652653217, 0.00546534126624465, 0.00048200058517977595, 0.019230550155043602, 0.0010280254064127803, -0.0006333306082524359, -0.014958388172090054, -0.036784831434488297, 0.04137129336595535, -0.027239399030804634, 0.004443863406777382, -0.007432631216943264, -0.028962234035134315, -0.016017697751522064, 0.0037541480269283056, -0.029614116996526718, -0.024585304781794548, -0.036319199949502945, -0.016564814373850822, -0.027821438387036324, -0.017950065433979034, -0.043583039194345474, -0.012199525721371174, -0.01686747372150421, 0.011669871397316456, -0.007164893206208944, -0.012711719609797001, 0.05080031603574753, -0.008323149755597115, -0.0013328681234270334, 0.01171061396598816, 0.031220542266964912, -0.00150602450594306, -0.0029043718241155148, 0.04102206975221634, 0.0108375558629632, -0.024236081168055534, -0.015284329652786255, 0.002908737165853381, -0.006443165708333254, 0.02099994756281376, 0.010133289732038975, 0.014993310905992985, -0.0029829470440745354, -0.03517840430140495, -0.005994996055960655, 0.018741637468338013, 0.009685119614005089, 0.017717251554131508, 0.011122754774987698, -0.0056865159422159195, 0.014900184236466885, 0.028007689863443375, 0.016040978953242302, -0.023072004318237305, -0.00029447508859448135, -0.0014652818208560348, 0.04013737291097641, 0.01552878599613905, -0.034107454121112823, -0.01033118274062872, -0.039019856601953506, -0.0016719055129215121, 0.006338398903608322, -0.0014776501338928938, -0.05485130473971367, -0.01711193099617958, -0.031476639211177826, 0.010034343227744102, -0.011803739704191685, -0.029567552730441093, 0.01987079344689846, 0.008561785332858562], [-0.013122940436005592, 0.033867280930280685, 0.013034612871706486, 0.059305597096681595, -0.001174282399006188, -0.009110349230468273, 0.025261661037802696, 0.06581659615039825, -0.039242640137672424, -0.012447865679860115, -0.047394003719091415, -0.017766442149877548, 0.016037747263908386, 0.0036214268766343594, 0.0113374637439847, -0.025274278596043587, -0.0074699814431369305, -0.024555040523409843, 0.01167184580117464, 0.07495217770338058, -0.011059862561523914, -0.009665550664067268, 0.0009092998807318509, -0.007463672198355198, 0.00731856282800436, -0.02493358589708805, -0.018182843923568726, 0.02427743934094906, 0.05001859366893768, -0.05155801400542259, 0.05095234140753746, -0.03502815589308739, 0.039217401295900345, -0.03030894510447979, -0.013072467409074306, -0.03210072964429855, 0.014220724813640118, -0.05430878326296806, 0.010460497811436653, 0.0242900587618351, -0.02055506780743599, 0.04936244338750839, 0.019154446199536324, 0.02227114327251911, 0.032201677560806274, 0.004299655556678772, -0.003873791079968214, -0.031696949154138565, 0.019848447293043137, 0.019103972241282463, 0.01678222231566906, 0.04206911846995354, -0.05627722665667534, -0.05844755843281746, 0.006167151033878326, -0.022561363875865936, 0.002547301584854722, 0.02117335982620716, -0.014775926247239113, 0.013072467409074306, 0.051734667271375656, -0.029627561569213867, 0.007305944804102182, 0.0016040902119129896, 0.01219550147652626, 0.027381520718336105, -0.019242772832512856, 0.013186031021177769, -0.034927211701869965, -0.02606922574341297, 0.010151351802051067, -0.03184836730360985, 0.03364015370607376, 0.019331101328134537, -0.0053595853969454765, 0.01107248105108738, 0.010145042091608047, 0.0035551812034100294, -0.008757038973271847, 0.0038548638112843037, 0.003362753428518772, -0.010460497811436653, 0.0018517225980758667, -0.032706405967473984, -0.045677926391363144, -0.05178514122962952, -0.07020772993564606, -0.027331046760082245, 0.024163875728845596, 0.03366538882255554, -0.002564651658758521, 0.020479358732700348, 0.005205012392252684, 0.06435287743806839, -0.003148243995383382, -0.05577249825000763, 0.0011277527082711458, 0.012189192697405815, 0.018208079040050507, 0.02657395415008068, 0.0018990408862009645, -0.036542341113090515, 0.035457175225019455, 0.02051721327006817, 0.04764636978507042, 0.03295876830816269, 0.0071734534576535225, -0.016391057521104813, 0.01904088258743286, 0.0009313817718066275, -0.04428992420434952, -0.00756461825221777, -0.006457369774580002, 0.021021941676735878, 0.008069346658885479, -0.01781691610813141, 0.031040800735354424, -0.002119859680533409, -0.032226912677288055, 0.012908430770039558, 0.028971415013074875, -0.044668469578027725, 0.008870602585375309, 0.006523615680634975, 0.002067809458822012, -0.05945701524615288, 0.049084845930337906, 0.01626487448811531, -0.07621400058269501, -0.032807350158691406, 0.016163930296897888, -0.0056561133824288845, -0.0041640098206698895, 0.03154553100466728, 0.016088219359517097, 0.03954547643661499, -0.02601875364780426, -0.0044132196344435215, -0.03038465417921543, -0.03729943558573723, -0.0033848353195935488, 0.025047151371836662, 0.01195575576275587, -0.024744313210248947, -0.035002920776605606, 0.01540683675557375, -0.016971495002508163, -0.01028384268283844, -0.006555160973221064, -0.025160714983940125, 0.011577209457755089, -0.019734883680939674, 0.017678115516901016, 0.02982945367693901, -0.03740037977695465, -0.03459913656115532, -0.040378279983997345, 0.039293110370635986, 0.006788597907871008, 0.020138666033744812, -0.038889329880476, 4.305471884435974e-05, -0.0111103355884552, -0.007981019094586372, 0.0477977879345417, -0.027406755834817886, -0.026144934818148613, 0.052794598042964935, -0.04878200590610504, -0.03300924226641655, 0.010895825922489166, 0.016542475670576096, -0.059255123138427734, 0.012327993288636208, -0.03628997877240181, -0.005627722479403019, 0.01563396491110325, 0.06531186401844025, -0.039772603660821915, 0.042548611760139465, 0.00636273343116045, 0.02052983082830906, -0.02213234454393387, 0.021249068900942802, 0.0215771421790123, 0.013665523380041122, -0.016517238691449165, 0.0007779916049912572, 0.020908378064632416, 0.008321710862219334, -0.07848528027534485, 0.03909122198820114, -0.047419238835573196, 0.01632796600461006, 0.022069253027439117, -0.00917343981564045, -0.018826372921466827, 0.019204918295145035, 0.013640287332236767, -0.006356424186378717, -0.01680745743215084, 0.006801216397434473, 0.025299515575170517, 0.03406917303800583, -0.07838433235883713, 0.03666852414608002, -0.04128678888082504, -0.010479425080120564, 0.00030737175256945193, 0.03878838196396828, 0.02005033940076828, 0.031646475195884705, 0.02922377921640873, -0.024126021191477776, 0.00018858311523217708, 0.00866871140897274, -0.059255123138427734, 0.021501433104276657, 0.00257096067070961, 0.0766177847981453, -0.02330583706498146, -0.003889563726261258, 0.004280728287994862, 0.02649824507534504, 0.0308136735111475, 0.08030229806900024, 0.002815438434481621, 0.001033904729411006, 0.03459913656115532, -0.005312267225235701, 0.024126021191477776, -0.03893980383872986, -0.06753267347812653, -0.024201730266213417, 0.020756958052515984, -0.00129100086633116, 0.005050439387559891, -0.041362497955560684, 0.018182843923568726, -0.028264794498682022, 0.01684531383216381, 0.018750663846731186, -0.015621346421539783, -0.0015496741980314255, 0.07091435045003891, -0.01895255409181118, 0.01671913079917431, 0.036517105996608734, 0.009861133061349392, -0.023671764880418777, 0.0038264726754277945, 0.03916693106293678, 0.031116509810090065, -0.058750394731760025, -0.06087025627493858, 0.04267479106783867, -0.03033418208360672, -0.014687598682940006, 0.0031766348984092474, -0.004523628856986761, 0.014018833637237549, -0.01577276550233364, -0.017173387110233307, -0.032706405967473984, -0.01738789677619934, 0.004804384429007769, 0.004104073625057936, 0.0242900587618351, 0.026725372299551964, -0.017955714836716652, -0.0736398845911026, -0.023179655894637108, -0.002299669198691845, -0.03429630026221275, 0.0052176304161548615, 0.03033418208360672, 0.008227074518799782, 0.010132424533367157, -0.004820156842470169, 0.06475666165351868, -0.021879980340600014, -0.01351410523056984, -0.012775939889252186, 0.012958903796970844, 0.030031343922019005, -0.0017365814419463277, 0.02869381383061409, -0.020984087139368057, 0.002009450225159526, 0.009905296377837658, 0.032176438719034195, -0.05885133892297745, -0.03570954129099846, 0.01684531383216381, 0.01032169722020626, 0.00516400346532464, 0.04474417865276337, -0.09403091669082642, -0.013438396155834198, 0.036088086664676666, 0.009425804018974304, 0.026826318353414536, 0.039192166179418564, -0.036996595561504364, -0.012914739549160004, 0.010517279617488384, -0.05935606732964516, -0.03934358432888985, -0.010801189579069614, -0.02059292234480381, -0.003801236394792795, -0.0014873717445880175, 0.026826318353414536, -0.07813196629285812, 0.023709619417786598, 0.01885160803794861, -0.0071482169441878796, 0.03782939910888672, 0.0323026217520237, -0.0035614902153611183, 0.01331221405416727, 0.0032255304977297783, 0.047898732125759125, -0.009955769404768944, -0.01135008130222559, -0.01683269441127777, 0.029526615515351295, 0.004589874763041735, -0.03641615808010101, -0.028037667274475098, 0.03684517741203308, -0.030763201415538788, 0.005264949053525925, 0.043558068573474884, 0.012334302067756653, -0.03025847300887108, 0.004722365643829107, -0.004066218622028828, 0.03341302648186684, 0.019204918295145035, 0.014498325064778328, -0.045778874307870865, -0.004416374024003744, -0.00394319137558341, 0.023444637656211853, 0.009122966788709164, 0.0334634967148304, 0.00013249123003333807, -0.004040982574224472, -0.014283816330134869, 0.040933478623628616, -0.07722345739603043, -0.020264849066734314, -0.02589257061481476, -0.005646649748086929, -0.02589257061481476, 0.03697136044502258, -0.01001885998994112, 0.007223926484584808, 0.060971200466156006, -0.034372009336948395, -0.017413131892681122, -0.011469954624772072, 0.013703377917408943, 0.041488680988550186, 0.032756879925727844, -0.07899000495672226, 0.050624266266822815, 0.011280681937932968, -0.01742575131356716, -0.015394218266010284, -0.04704069346189499, 0.010927371680736542, 0.010309078730642796, 0.01999986544251442, 0.02055506780743599, 0.0810089185833931, 0.01781691610813141, -0.027936721220612526, 0.015911566093564034, -0.027331046760082245, -0.01943204551935196, -0.030965091660618782, 0.005946332588791847, 0.05153277888894081, 0.028466686606407166, -0.03086414560675621, -0.011690773069858551, -0.040857769548892975, 0.03909122198820114, 0.04504701495170593, -0.027431992813944817, 0.0010977844940498471, 0.013236504048109055, -0.037148017436265945, -0.020971467718482018, -0.05945701524615288, -0.018536154180765152, 0.005072521045804024, 0.01135008130222559, 0.0008690793765708804, -0.033791571855545044, -0.036592815071344376, 0.03560859337449074, -0.006914780009537935, 0.05673148110508919, 0.008738111704587936, -0.005911632440984249, -0.03517957404255867, 0.0032649622298777103, -0.03197455033659935, -0.01161506399512291, 0.025715915486216545, -0.01895255409181118, 0.026851555332541466, 0.02384842000901699, 0.02538784220814705, -0.027457229793071747, -0.008182910270988941, -0.023394165560603142, 0.01056144293397665, 0.011602445505559444, -0.03533099219202995, -0.014195488765835762, 0.036592815071344376, 0.036088086664676666, 0.010984153486788273, -0.01784215122461319, 0.01632796600461006, 0.011148190125823021, 0.01164030097424984, -0.03338778764009476, 0.040453989058732986, 0.04446657747030258, -0.040933478623628616, -0.012100865133106709, 0.01573491096496582, 0.03485150262713432, -0.011848500929772854, -0.03240356966853142, 0.026826318353414536, 0.016605567187070847, -0.02280110865831375, -0.009583531878888607, -0.05370311066508293, -0.024163875728845596, 0.0014700216706842184, -0.04595552757382393, -0.04070635139942169, -0.0002606449415907264, 0.021350014954805374, 0.0217033252120018, -0.021842125803232193, 0.006889543496072292, -0.0015394218498840928, -0.007268090266734362, -0.032681167125701904, 0.01247941143810749, 0.038813620805740356, -0.02697773650288582, -0.04113537073135376, 0.005545704159885645, 0.023709619417786598, 0.011015699245035648, 0.022296380251646042, -0.012567739002406597, 0.02924901619553566, 0.010378479026257992, 0.018763281404972076, -0.026876792311668396, -0.019280627369880676, 0.020189139991998672, -0.000503151211887598, 0.006400587968528271, -0.017122913151979446, -0.003149821190163493, -0.012100865133106709, -0.0312679298222065, 0.014031452126801014, -0.01895255409181118, 0.004621420055627823, -0.017652878537774086, -0.016555093228816986, -0.01671913079917431, 0.029551852494478226, -0.023697001859545708, 0.0018107134383171797, 0.039192166179418564, -0.02982945367693901, 0.008719184435904026, 0.051154229789972305, 0.013665523380041122, 0.0005134035018272698, -0.012252284213900566, 0.005514158401638269, 0.027482464909553528, -0.05304696410894394, -0.004428992513567209, 0.03959595039486885, 0.002323328284546733, 0.01891469955444336, 0.002529951510950923, -0.0014708103844895959, 0.055621080100536346, -0.046864040195941925, 0.02866857685148716, -0.010151351802051067, -0.058750394731760025, -0.012567739002406597, 0.05049808323383331, -0.015861092135310173, -0.01786738820374012, -0.0013611896429210901, -0.011173427104949951, 0.009066184982657433, 0.015003054402768612, -0.04618265479803085, -0.014309052377939224, 8.472931949654594e-05, 0.012012537568807602, 0.015280654653906822, 0.025110241025686264, -0.04153915494680405, -0.015936801210045815, 0.03520481288433075, 0.026826318353414536, 0.00636273343116045, 0.0021293233148753643, -0.011999920010566711, 0.01682007685303688, 0.014157634228467941, -0.016088219359517097, -0.03129316493868828, 0.03427106514573097, 0.014712834730744362, 0.01270022988319397, -0.015066144987940788, -0.007463672198355198, 0.03199978545308113, -0.018561389297246933, 0.028340503573417664, 0.03512910380959511, -0.007122980430722237, -0.0020867367275059223, -0.025678060948848724, -0.0027760067023336887, -0.015949420630931854, -0.016025129705667496, 0.0013375304406508803, 0.014296433888375759, 0.028971415013074875, 0.00950151402503252, -0.028592867776751518, -0.07656730711460114, 0.03454866260290146, -0.02551402524113655, -0.005056748632341623, -0.017501460388302803, 0.022359471768140793, 0.0007728654891252518, -0.020416267216205597, 0.01331221405416727, -0.0006774402572773397, -0.0063690426759421825, 0.007230235263705254, 0.00472867488861084, 0.013741232454776764, 0.00215771421790123, -0.07242853939533234, 0.018271170556545258, 0.01735004223883152, -0.0368199422955513, -0.01086428016424179, 0.03676946833729744, 0.01030276995152235, -0.009444731287658215, 0.005533086135983467, -0.04512272775173187, 0.018548771739006042, -0.0069589437916874886, -0.0032034486066550016, 0.0046182656660676, -0.001404564711265266, -0.0035614902153611183, -0.016908403486013412, -0.008290165103971958, -0.01786738820374012, 0.01355195976793766, 0.013690760359168053, 0.03369062766432762, 0.02052983082830906, 0.005962105002254248, 0.03411964327096939, 0.04181675612926483, -0.015999892726540565, -0.01793047972023487, 0.03154553100466728, -0.04272526502609253, -0.04338141158223152, 0.018826372921466827, 0.025867333635687828, 0.0277095939964056, 0.024605512619018555, -0.03356444463133812, -0.0217033252120018, 0.0017113450448960066, -0.0162144023925066, -0.0017933633644133806, 0.0040946099907159805, 0.017993569374084473, 0.0026387835387140512, 0.02388627454638481, 0.06521091610193253, 0.015974655747413635, -0.0260944627225399, 0.0312679298222065, -0.008807512000203133, -0.033741097897291183, 0.019659174606204033, 0.08176601678133011, -0.0003828838816843927, 0.017160767689347267, 0.02864334173500538, 0.0005575672257691622, 0.0032034486066550016, 0.026902027428150177, -0.02493358589708805, -0.014561416581273079, 0.00864978414028883, -0.02861810475587845, -0.008605620823800564, 0.007369035854935646, 0.0035236356779932976, -0.0004035856109112501, -0.009968387894332409, -0.04719211161136627, 0.004422683268785477, 0.015381600707769394, 0.007526763249188662, 0.029349960386753082, 0.04025209695100784, 0.014738071709871292, -0.02442885749042034, -0.044668469578027725, 0.04176628217101097, 0.008731802925467491, 0.008119819685816765, 0.04885771498084068, -0.03146982192993164, -0.016403675079345703, -0.002693988149985671, 0.016138693317770958, -0.007072507869452238, -0.024782167747616768, -0.00945734977722168, 0.02434053085744381, 0.03202502056956291, 0.0477977879345417, 0.003315435256808996, 0.023987220600247383, -0.029627561569213867, 0.030031343922019005, 0.0003424661699682474, 0.04217006266117096, -0.02055506780743599, 0.025829479098320007, 0.02109765075147152, -0.013564578257501125, 0.016340583562850952, 0.045147962868213654, 0.045147962868213654, -0.014561416581273079, 0.02707868255674839, -0.012807484716176987, -0.018081897869706154, 0.0030173298437148333, -0.010883207432925701, -0.028946178033947945, 0.008069346658885479, -0.03570954129099846, 0.04691451042890549, -0.013198649510741234, -0.006056741811335087, -0.024555040523409843, -0.021324777975678444, -0.032226912677288055, 0.0312679298222065, 0.001944781863130629, 0.001519705867394805, -0.0217033252120018, 0.0002772063307929784, 0.021892597898840904, 0.02917330525815487, -0.030712727457284927, 0.02001248486340046, -0.026725372299551964, 0.004999966360628605, -0.01675698533654213, -0.004403756000101566, -0.05577249825000763, 0.024062929674983025, 0.015987275168299675, -0.007987327873706818, -0.04297763109207153, -0.01078857108950615, -0.0056592682376503944, 0.01405668817460537, -0.015962038189172745, 0.027230100706219673, -0.02388627454638481, -0.0024384695570915937, -0.052744124084711075, -0.031646475195884705, -0.009791732765734196, 0.010738098062574863, 0.0071734534576535225, 0.01678222231566906, -0.016378439962863922, -0.004451074171811342, -0.008574075065553188, -0.048453934490680695, 0.02985468879342079, -0.06011316180229187, -0.041942935436964035, 0.024668604135513306, 0.006700270343571901, 0.008283856324851513, -0.001995254773646593, 0.03250451385974884, -0.007911618798971176, 0.02107241377234459, -0.024201730266213417, -0.03472531959414482, 0.023671764880418777, -0.02174117974936962, 0.06682605296373367, 0.0033280535135418177, -0.051734667271375656, -0.025110241025686264, -0.026321589946746826, -0.015545637346804142, -0.01740051433444023, 0.011179735884070396, 0.014107161201536655, 0.013715996406972408, 0.000914820353500545, 0.0173752773553133, 0.009943150915205479, -0.01680745743215084, 0.023167036473751068, -0.008965239860117435, 0.009343786165118217, 0.02266230806708336, 0.009640313684940338, 0.01843520812690258, -0.035457175225019455, 0.033261608332395554, -0.039823077619075775, -0.053349800407886505, -0.003693981561809778, 0.0053848219104111195, 0.014876872301101685, 0.003936882130801678, 0.0334634967148304, 0.010050405748188496, -0.03202502056956291, -0.02335631102323532, -0.02662442810833454, -0.01056144293397665, -0.017476223409175873, -0.008195528760552406, 0.01671913079917431, -0.004264955408871174, 0.002537837950512767, 0.06864307075738907, 0.01900302805006504, -0.00011898579396074638, -0.0055488585494458675, 0.006593015510588884, -0.0007992848404683173, 0.05032142996788025, -0.02813861332833767, 0.040378279983997345, 0.007955783046782017, -0.015520400367677212, -0.01056775264441967, 0.019621320068836212, -0.01840997114777565, 0.015280654653906822, -0.012359539046883583, -0.0335896797478199, 0.026422536000609398, 0.02492096833884716, -0.0259682796895504, 0.010744407773017883, 0.020832667127251625, -0.0325549878180027, -0.003602499607950449, 0.025148095563054085, -0.050069063901901245, 0.013804323971271515, 0.0036277358885854483, -0.0004376942233648151, 0.031040800735354424, -0.02869381383061409, -0.014309052377939224, -0.02432791329920292, 0.020353175699710846, 0.0011072481283918023, -0.007104053162038326, -0.045248907059431076, 0.003864327445626259, -0.03570954129099846, -0.029122833162546158, -0.01570967398583889, 0.007697109133005142, 0.01679483987390995, -0.02434053085744381, -0.0012436824617907405, 0.013993596658110619, 0.0076340180821716785, -0.026397299021482468, -0.008258619345724583, 0.008757038973271847, 0.023987220600247383, -0.017009349539875984, 0.0413372628390789, 0.02155190519988537, -0.010258606635034084, 0.007122980430722237, -0.008870602585375309, -0.014069306664168835, -0.07379130274057388, 0.010069333016872406, -0.006233396474272013, -0.03141934797167778, 0.009911605156958103, 0.020706485956907272, 0.004160855431109667, -0.0443151593208313, -0.006933707278221846, 0.013690760359168053, -0.010353242978453636, -0.0012302756076678634, -0.01794309727847576, -0.024252204224467278, -0.020378412678837776, 0.02929948829114437, 0.027987193316221237, 0.03311018645763397, 0.027431992813944817, -0.010258606635034084, 0.04946339130401611, -0.0014763307990506291, 0.00835325662046671, 0.0061797695234417915, 0.008006255142390728, -0.007621400058269501, 0.03091461956501007, -0.02271278202533722, -0.04873153567314148, -0.031166983768343925, -0.002288628136739135, -0.05738762766122818, 0.004608802031725645, -0.007507835980504751, 0.026927264407277107, 0.0068769254721701145, 0.037980817258358, -0.0111103355884552, 0.0032271076925098896, -0.0014936808729544282, -0.01078857108950615, 0.012775939889252186, 0.026952501386404037, -0.0021482505835592747, -0.0029889389406889677, 0.00017113449575845152, 0.033286843448877335, 0.011204971931874752, 0.027381520718336105, 0.03298400714993477, 0.025602351874113083, -0.05034666508436203, -0.035987138748168945, 0.047873497009277344, -0.021816888824105263, 0.016517238691449165, 0.013261741027235985, 0.004574101883918047, 0.009646623395383358, -0.0033280535135418177, -0.0002375772746745497, -0.04981670156121254, -0.04668738320469856, -0.008845366537570953, 0.05082615837454796, 0.047419238835573196, 0.007930546067655087, 0.012031464837491512, -0.006782289128750563, 0.003917954862117767, 0.0043532829731702805, -0.0035551812034100294, 0.05042237415909767, -0.027760066092014313, -0.025324750691652298, -0.0168579313904047, -0.015974655747413635, -0.0574885718524456, -0.025829479098320007, -0.003990509547293186, -0.00745105417445302, -0.007558309007436037, -0.03666852414608002, 0.02869381383061409, -0.016958877444267273, -0.014271197840571404, -0.0067949071526527405, 0.0064920699223876, 0.012775939889252186, 0.03409440815448761, 0.027785303071141243, 0.008100892417132854, 0.023406783118844032, -0.028416212648153305, -0.01794309727847576, 0.027331046760082245, -0.006447906140238047, 0.02001248486340046, -0.0020804277155548334, 0.004239719361066818, 0.030006108805537224, 0.03028370812535286, 0.01887684501707554, 0.007457363419234753, 0.023053472861647606, -0.02054244838654995, 0.0036466631572693586, 0.03558335825800896, -0.012403702363371849, -0.02543831616640091, -0.013299595564603806, 0.006337496917694807, -0.006148223765194416, -0.04807538911700249, -0.010965226218104362, 0.01574752852320671, -0.015419455245137215, 0.029905162751674652, -0.0012965212808921933, 0.007015726063400507, 0.007684491109102964, 0.0019826365169137716, -0.011760173365473747, -0.01195575576275587, -0.014422615990042686, -0.022876817733049393, 0.0750531256198883, -0.003239725949242711, -0.039823077619075775, 0.023444637656211853, 0.012359539046883583, -0.01779167912900448, 0.03030894510447979, -0.030510837212204933, -0.0312679298222065, 0.01839735358953476, 0.00893369410187006, -0.008504674769937992, 0.018662335351109505, -0.023507729172706604, 0.01784215122461319, 0.0051482305862009525, -0.004927411675453186, 0.003873791079968214, 0.03146982192993164, 0.012132410891354084, 0.0060346596874296665, -0.014384761452674866, -0.014649744145572186, 0.03800605610013008, 0.007394272368401289, -0.0277095939964056, -0.01949513703584671, 0.009394259192049503, -0.02381056547164917, -0.009659240953624249, -0.021387869492173195, -0.003552026581019163, -0.011980991810560226, -0.02712915651500225, 0.008813820779323578, 0.004176628310233355, -0.008586693555116653, -0.008340638130903244, 0.00945734977722168, -0.011204971931874752, 0.031040800735354424, -0.00010774769907584414, -0.03692088648676872, -0.009533058851957321, 0.006441597361117601, 0.006933707278221846, -0.026801081374287605, -0.0026813701260834932, 0.018700189888477325, 0.00047160565736703575, -0.03477579355239868, -0.026195408776402473, 0.027810540050268173, -0.008113509975373745, -0.005946332588791847, -0.029097596183419228, -0.041438207030296326, -0.027179628610610962, 0.003848554566502571, 0.023419400677084923, -0.02391151152551174, 0.05430878326296806, 0.028290031477808952, 0.0019558228086680174, 0.0016025129007175565, 0.0024037694092839956, -0.0036876725498586893, -0.032832589000463486, -0.006018887273967266, 0.010454189032316208, 0.0369461253285408, -0.002178218914195895, -0.006258632987737656, -0.011829573661088943, 0.016668658703565598, 0.0184730626642704, -0.006719198077917099, 0.008321710862219334, 0.008788584731519222, -0.005558322183787823, -0.0034384627360850573, -0.01573491096496582, -0.01994939334690571, -0.008340638130903244, -0.0038359365426003933, 0.006107214372605085, -0.027835775166749954, 0.016088219359517097, 0.004996811971068382, -0.023469874635338783, 0.05178514122962952, 0.02498405985534191, -0.007110362406820059, 0.009873750619590282, -0.03464961051940918, 0.017085058614611626, -0.010536206886172295, 0.004775993060320616, 0.010517279617488384, -0.010902134701609612, 0.008769657462835312, 0.017438368871808052, 0.025261661037802696, 0.0005658479640260339, 0.009387949481606483, 0.022397326305508614, 0.011425791308283806, 0.03240356966853142, -0.014927344396710396, 0.022473035380244255, 0.0014637125423178077, 0.04234671965241432, 0.013753850944340229, -0.018548771739006042, 0.02007557451725006, 0.003230262314900756, 0.016391057521104813, -0.030182762071490288, -0.0028548703994601965, -0.009223912842571735, 0.005643495358526707, 0.04555174335837364, -0.00743212690576911, -0.009356403723359108, 0.01791786029934883, 0.013198649510741234, 0.017148150131106377, -0.03777892515063286, 0.061980657279491425, -0.01727433130145073, -0.0038359365426003933, 0.017021967098116875, -0.00998731516301632, 0.06591753661632538, -0.0060378145426511765, -0.0007775973062962294, 0.01572229154407978, 0.027886249125003815, 0.010441570542752743, -0.002645092783495784, -0.004031518939882517, -0.007028344087302685, -0.0008028337615542114, 0.005119839683175087, 0.036491867154836655, -0.003009443636983633, -0.005921096075326204, -0.010132424533367157, -0.01888946257531643, -0.014409998431801796, 0.04825204238295555, 0.037980817258358, -0.0006064628250896931, -0.016378439962863922, 0.013173413462936878, 0.050119537860155106, -0.011501500383019447, 0.02538784220814705, -0.029021887108683586, -0.023457255214452744, 0.012309066019952297, -0.00500942999497056, 0.01840997114777565, -0.057084791362285614, 0.01892731711268425, -0.0016277492977678776, 0.028996650129556656, -0.03969689458608627, -0.00786745548248291, -0.009305931627750397, -0.024693841114640236, 0.034927211701869965, -0.013867414556443691, 0.026801081374287605, -0.019066117703914642, -0.019709646701812744, -0.011753864586353302, 0.005602485965937376, -0.004706593230366707, -0.002990516135469079, 0.0293247252702713, 0.007495217956602573, -0.00271133822388947, 0.01785477064549923, -0.000977122806943953, -0.009867441840469837, 0.043583303689956665, -0.009148203767836094, -0.0035299446899443865, 0.08787322789430618, -0.009299621917307377, -0.0026577108073979616, 0.018220698460936546, 0.014990435913205147, 0.025034531950950623, -0.02972850762307644, 0.001016554655507207, -0.038107000291347504, -0.0008880066452547908, -0.008460511453449726, 0.024201730266213417, -0.02490835078060627, 0.0154699282720685, -0.0260944627225399, 0.005514158401638269, -0.00337852630764246, 0.01565920189023018, -0.016504621133208275, 0.012271211482584476, 0.0019353182287886739, -0.005078830290585756, 0.014574035070836544, 0.012719158083200455, -0.029021887108683586, -0.009293313138186932, 0.02324274554848671, 0.031166983768343925, 0.011962064541876316, 0.005432140082120895, -0.005533086135983467, -0.017186004668474197, 0.03962118551135063, 0.013766469433903694, 0.015936801210045815, 0.013753850944340229, 0.0030457209795713425, -0.026422536000609398, 0.04943815618753433, -0.04217006266117096, -0.01736265979707241, -0.003823318285867572, -0.02816384844481945, -0.004775993060320616, -0.006523615680634975, -0.0018501452868804336, -0.012996758334338665, 0.00017192313680425286, 0.033362552523612976, 0.03724896162748337, -0.005283876322209835, 0.019848447293043137, -0.0007464460795745254, 0.004533092491328716, -0.014965198934078217, 0.010675007477402687, 0.02111026830971241, 0.018069280311465263, 0.0023596056271344423, 0.008018873631954193, 0.006318569649010897, -0.002701874589547515, -0.03091461956501007, 0.022081870585680008, 0.0238358024507761, -0.024756932631134987, -0.0053848219104111195, 0.01297152228653431, -0.021337395533919334, -0.011141881346702576, -0.0017444677650928497, -0.022321617230772972, -0.0075519997626543045, -0.01939419098198414, 0.012290138751268387, -0.0009842205327004194, 0.037551797926425934, 0.02975374460220337, -0.040908243507146835, 0.006504688411951065, 0.035431940108537674, 0.03616379573941231, -0.011823264881968498, 0.04481988772749901, 0.0026971427723765373, 0.009122966788709164, 0.00837218388915062, -0.01331221405416727, -0.00303941173478961, 0.02869381383061409, -0.006567779462784529, -0.0025898879393935204, 0.011451027356088161, -0.023482492193579674, 0.011034626513719559, 0.004397446755319834, -0.014031452126801014, 0.012473102658987045, -0.018687572330236435, 0.014119778759777546, 0.010435260832309723, -0.02715439163148403, 0.0051955487579107285, 0.020201757550239563, 0.023697001859545708, -0.027179628610610962, -0.0007192380726337433, -0.01833426207304001, -0.004703438375145197, 0.020302703604102135, -0.005933714099228382, -0.009299621917307377, 0.024226967245340347, -0.017564551904797554, 0.00867502111941576, -0.015154472552239895, -0.030662255361676216, -0.04282621294260025, -0.005324885249137878, -0.0027081838343292475, -0.016630804166197777, -0.011280681937932968, -0.009911605156958103, 7.4859021879092325e-06, 0.03618903085589409, -0.003315435256808996, -0.004902175161987543, -0.008447892963886261, 0.05900276079773903, -0.0037065998185425997, 0.023154418915510178, 0.011886355467140675, 0.05420783907175064, -0.0434066504240036, -0.03025847300887108, -0.01304723136126995, 0.005290185566991568, 0.013085085898637772, -0.02876952290534973, 0.020239612087607384, 0.0019274319056421518, 0.02492096833884716, -0.02268754504621029, -0.0047318292781710625, -0.00017704928177408874, -0.002285473747178912, -0.020807432010769844, 0.02158975973725319, -0.02113550528883934, 0.04239719361066818, -0.031091274693608284, -0.033261608332395554, -0.026725372299551964, 0.02056768536567688, 0.03136887401342392, 0.010580371133983135, 0.03891456499695778, -0.026851555332541466, -0.00867502111941576, 0.010883207432925701, -0.006305951625108719, 0.012801175937056541, 0.016921022906899452, -0.03644139692187309, 0.040378279983997345, -0.00784221850335598, 0.004126155283302069, 0.016870548948645592, 0.02647300809621811, 0.004782302305102348, 0.02321751043200493, 0.01939419098198414, -0.02707868255674839, -0.02980421669781208, 0.011570900678634644, -0.0027349975425750017, -0.05466209352016449, 0.011665537022054195, 0.03351397067308426, 0.02334369160234928, -0.020693868398666382, 0.0038548638112843037, -0.015596110373735428, 0.005675040651112795, 0.010012551210820675, -0.019318481907248497, 0.0031845213379710913, -0.0023801103234291077, -0.015911566093564034, -0.009905296377837658, 0.0315202921628952, 0.030712727457284927, 0.027431992813944817, 0.008132437244057655, -0.033816806972026825, -0.02537522464990616, 0.044214215129613876, -0.003914800472557545, -0.005946332588791847, -0.015255418606102467, 0.017715970054268837, -0.01578538306057453, -0.009640313684940338, -0.030586546286940575, 0.020744340494275093, -0.008857985027134418, -0.0009613500442355871, 0.02589257061481476, 0.037122778594493866, -0.022599218413233757, -0.002623010892421007, 0.01729956828057766, 0.025791624560952187, 0.0013075622264295816, 0.008277546614408493, 0.014536180533468723, -0.01631534844636917, 0.015255418606102467, 0.004987348336726427, -0.026851555332541466, -0.02662442810833454, 0.001474753487855196, -0.018081897869706154, -0.037627507001161575, 0.03994926065206528, -0.015343746170401573, -0.043684251606464386, -0.0173121877014637, -0.0020962003618478775, -0.017678115516901016, 0.02006295695900917, 0.01577276550233364, 0.00835325662046671, -0.022561363875865936, -0.011558282189071178, -0.00461511081084609, 0.015507782809436321, -0.008075655438005924, -0.037072308361530304, 0.0023958829697221518, -0.006567779462784529, -0.010208133608102798, 0.024264821782708168, -0.006428978871554136, 0.011747554875910282, 0.03316066041588783, 0.003905336605384946, 0.004807538818567991, -0.01617654785513878, 0.02715439163148403, -0.03454866260290146, 0.015949420630931854, -0.016100838780403137, -0.010952607728540897, 0.030637018382549286, -0.025614969432353973, -0.00636273343116045, 0.0063311876729130745, 0.0335896797478199, 0.046233128756284714, 0.024807404726743698, -0.010227060876786709, 0.018750663846731186, 0.0038296272978186607, 0.03043512813746929, -0.008447892963886261, 0.010233369655907154, -0.0002791779406834394, 0.024580277502536774, 0.015533018857240677, -0.00111197994556278, 0.008460511453449726, 0.0154699282720685, -0.030207999050617218, 0.0004775204579345882, 0.017160767689347267, -0.018006188794970512, -0.0, -0.016050364822149277, -0.025741152465343475, -0.05183561518788338, 0.0006253901519812644, -0.001845413469709456, 0.03906598314642906, 0.03742561489343643, -0.012321683578193188, -0.035482410341501236, 0.013186031021177769, -0.016100838780403137, 0.01054882537573576, -0.0050882939249277115, 0.010359551757574081, -0.024012457579374313, 0.010719170793890953, -0.010801189579069614, -0.0049589574337005615, -0.006813834421336651, -0.06329295039176941, 0.007545690517872572, 0.008965239860117435, -0.02599351666867733, -0.027482464909553528, 0.002652978990226984, 0.03141934797167778, 0.00917974952608347, 0.04926149919629097, 0.010498352348804474, -0.0032681168522685766, 0.011577209457755089, -0.03369062766432762, -0.004741292912513018, -0.01837211661040783, -0.013867414556443691, -0.00834694691002369, -0.0038517091888934374, -0.03878838196396828, -0.009659240953624249, -0.008555147796869278, -0.008902148343622684, 0.011192354373633862, 0.00527125783264637, -0.014801162295043468, 0.0032996623776853085, 0.0029637024272233248, 0.0007673450163565576, 0.006129296496510506, 0.010441570542752743, -0.03235309571027756, 0.01742575131356716, 0.017690733075141907, 0.002209764439612627, -0.013425777666270733, 0.03790510818362236, 0.004766529425978661, 0.010889517143368721, -0.005618258845061064, -0.006857998203486204, 0.012245974503457546, -0.004410065244883299, 0.0017649723449721932, -0.003946345765143633, 0.013539341278374195, 0.024529803544282913, -0.0005394285544753075, 0.01567181944847107, 0.018044043332338333, -0.04370948672294617, 0.01839735358953476, -0.003222375875338912, 0.00529333995655179, 0.00919236708432436, 0.04618265479803085, 0.0083658741787076, -0.014018833637237549, 0.01732480525970459, -0.006400587968528271, 0.03581048548221588, 0.021779034286737442, -0.014801162295043468, 0.06844118237495422, 0.0015717559726908803, -0.0063091060146689415, -0.0011474686907604337, 0.020201757550239563, -0.0060346596874296665, -0.017728587612509727, -0.002728688297793269, 0.040403515100479126, -0.011451027356088161, 0.011318536475300789, 0.02059292234480381, 0.0011403708485886455, 0.007072507869452238, -0.003760227235034108, 0.003025216283276677, -0.028971415013074875, 0.030081817880272865, -0.03308495134115219, -0.0325549878180027, -0.024782167747616768, 0.021539287641644478, 0.05178514122962952, 0.020996704697608948, -0.0009416340617462993, -0.00488009350374341, -0.007854836992919445, -0.006466833408921957, 0.021387869492173195, -0.013059848919510841], [-0.024642372503876686, 0.004889255855232477, 0.005993913859128952, 0.010837415233254433, -0.03320510685443878, 0.0006949051166884601, 0.032969795167446136, 0.06112877279520035, 0.02419789507985115, -0.058409612625837326, 0.0035133357159793377, -0.02476002834737301, 0.01966160722076893, -0.017295416444540024, -0.009216378442943096, -0.001056451816111803, -0.031296465545892715, -0.028917202726006508, -0.00426829420030117, 0.04188549518585205, 0.01094853412359953, 0.03200240060687065, 0.04146716371178627, -0.005111494567245245, 0.01862884871661663, -0.03422478958964348, -0.0390356108546257, 0.005320660769939423, 0.0333096906542778, -0.06902478635311127, 0.010739368386566639, -0.03937550634145737, 0.03448624908924103, -0.028211267665028572, -0.001777911209501326, -0.07467227429151535, -0.005114763043820858, -0.0038891807198524475, 0.03866956755518913, 0.021936286240816116, -0.03937550634145737, 0.0061834705993533134, 0.02039368823170662, 0.02737460471689701, -0.00620308006182313, 0.021465662866830826, -0.028629599139094353, -0.0077260700054466724, 0.031505633145570755, 0.05182088166475296, -0.003934935666620731, 0.04557204991579056, -0.035662807524204254, -0.0161319300532341, -0.0060984971933066845, -0.05051359534263611, 0.028420433402061462, 0.056788574904203415, 0.03022449091076851, 0.004278098698705435, 0.0012607155367732048, -0.0364210344851017, 0.025426745414733887, 0.025871222838759422, 0.04125799983739853, 0.014484747312963009, 0.011909390799701214, -0.017962131649255753, -0.035610515624284744, -0.011458376422524452, 0.009235987439751625, 0.0146939130499959, 0.057782113552093506, -0.02554440125823021, 0.04002914950251579, 0.009922313503921032, 0.006222689524292946, 0.014301727525889874, -0.02075972780585289, -0.027557624503970146, -0.03937550634145737, -0.00013021810445934534, -0.038486547768116, -0.036551762372255325, 0.006863260176032782, -0.08612411469221115, -0.07205769419670105, -0.014641622081398964, 0.0019331516232341528, 0.02721772901713848, -0.0020213935058563948, 0.010347181931138039, 0.014157925732433796, 0.0515071339905262, -0.021988578140735626, -0.04599038138985634, -0.022093161940574646, -0.07482914626598358, 0.00550041301175952, -0.006624680478125811, -0.0007320810691453516, -0.04125799983739853, 0.01726927049458027, -0.01831510104238987, 0.06060585752129555, -0.006373027339577675, 0.0014666133793070912, 0.02325664833188057, -0.03268219158053398, 0.015046881511807442, -0.032499171793460846, -0.0400552935898304, 0.002629282418638468, 0.042852889746427536, -0.01246498804539442, 0.012968293391168118, 0.037702176719903946, -0.04693162813782692, -0.03443395718932152, -0.02112576924264431, -0.017674529924988747, -0.0065168291330337524, -0.0073992484249174595, -0.021400298923254013, -0.0009436982800252736, -0.03116573765873909, 0.02164868451654911, -0.0014666133793070912, -0.07467227429151535, -0.012759127654135227, 0.019687753170728683, -0.006699849385768175, -0.026446430012583733, 0.008569270372390747, 0.023661905899643898, 0.0200276467949152, -0.011798270978033543, -0.014406310394406319, 0.006046205293387175, 0.003139124484732747, -0.003944740630686283, -0.04110112413764, 0.01339969877153635, -0.01696859486401081, -0.04844808205962181, 0.0030002251733094454, -0.04881412163376808, -0.0017877159407362342, 0.023086700588464737, 0.02550518326461315, -0.022825242951512337, -0.03934935852885246, 0.01141915749758482, -0.021400298923254013, -0.04042133316397667, 0.04429090768098831, -0.018197445198893547, 0.0171777606010437, -0.0024217504542320967, 0.016680991277098656, -0.06792666763067245, 0.006765213795006275, -0.0032469758298248053, 0.00476179551333189, -0.00015421908756252378, -0.004601652733981609, -0.056893158704042435, 0.03425093740224838, -0.03048594854772091, -0.015282193198800087, -0.03396333381533623, -0.00551348552107811, -0.04042133316397667, 0.07148248702287674, -0.0029904204420745373, 0.025871222838759422, 0.014380164444446564, -0.008902628906071186, -0.037806760519742966, 0.026707887649536133, -0.0054579260759055614, 0.03064282238483429, 0.013438917696475983, 0.007824116386473179, 0.009726219810545444, -0.056370243430137634, 0.008516979403793812, 0.014706986024975777, 0.005582118406891823, 0.019635461270809174, -0.058409612625837326, 0.010530201718211174, -0.025060703977942467, 0.04225153848528862, 0.008915701881051064, 0.011582568287849426, 0.012602252885699272, -0.029309390112757683, 0.04714079201221466, 0.004163711331784725, -0.02170097455382347, 0.03367573022842407, 0.016105784103274345, 0.052840568125247955, -0.09093493223190308, 0.02690397948026657, -0.04389872029423714, -0.024995340034365654, 0.0515071339905262, 0.00024041837605182081, 0.0153475571423769, -0.04413403198122978, -0.008150938898324966, 0.011164236813783646, -0.0254921093583107, 0.03385875001549721, -0.08058121055364609, 0.06379564106464386, -0.013752666302025318, 0.07007061690092087, -0.03558437153697014, -0.003974154591560364, 0.04379413649439812, -0.0229036808013916, -0.0002767773112282157, 0.03464312478899956, -0.0003313157067168504, -0.012510742992162704, 0.019334783777594566, 0.01235386822372675, 0.010634785518050194, -0.02580585889518261, -0.03448624908924103, -0.024106385186314583, 0.01674635522067547, 0.013197069056332111, 0.02528294362127781, -0.031296465545892715, 0.014471674337983131, 0.0021325130946934223, -0.010628248564898968, -0.05043515935540199, -0.0072815921157598495, -0.0247077364474535, 0.04565048590302467, -0.007078962866216898, -0.01602734625339508, -0.007621487136930227, 0.048631101846694946, -0.04083966836333275, -0.0031734409276396036, 0.018341245129704475, -0.012183921411633492, -0.05027828365564346, -0.02533523552119732, 0.010399473831057549, -0.01235386822372675, 0.025714349001646042, 0.06541667133569717, -0.028420433402061462, 0.030668968334794044, 0.047794438898563385, -0.004673553630709648, 0.048787977546453476, -0.03937550634145737, 0.01379188522696495, 0.013079413212835789, -0.03529676795005798, -0.021517954766750336, 0.024289404973387718, -0.05291900411248207, -0.01753072813153267, 0.04026446118950844, 0.009275206364691257, 0.008203229866921902, -0.01711239479482174, -0.03767602890729904, -0.03137490525841713, -0.030564386397600174, 0.025766639038920403, -0.0489187054336071, -0.03074740618467331, -0.0017517654923722148, -0.0011120116105303168, 0.025740494951605797, 0.005797820631414652, 0.0379636324942112, 0.04436934366822243, -0.014602403156459332, 0.025884296745061874, -0.010471373796463013, -0.06410938501358032, -0.018380464985966682, -0.01732156239449978, 0.055795036256313324, -0.0027175243012607098, 0.021870922297239304, -0.0681358352303505, 0.003232268849387765, 0.03529676795005798, 0.04818662256002426, 0.058148156851530075, 0.011236137710511684, -0.03856498748064041, -0.04183320701122284, 0.029492409899830818, -0.01696859486401081, -0.004428436979651451, -0.03022449091076851, -0.028263559564948082, -0.041231852024793625, -0.023818781599402428, -0.02456393465399742, -0.029780013486742973, -0.020276032388210297, 0.0016978398198261857, 0.01716468669474125, 0.04481382295489311, 0.01841968297958374, -0.004542824812233448, 0.02158331871032715, 0.0691816657781601, 0.013465062715113163, -0.015844326466321945, -0.04287903383374214, -0.025047631934285164, 0.014628549106419086, -0.04447392746806145, -0.06071043759584427, 0.017975205555558205, -0.0044382414780557156, -0.005866453517228365, 0.010138016194105148, 0.02622419036924839, 0.03401562571525574, -0.018249735236167908, -0.023191282525658607, -0.019426295533776283, 0.01868114061653614, 0.018223589286208153, 0.00814440194517374, -0.056579411029815674, 0.011360329575836658, -0.045598194003105164, 0.018302027136087418, -0.010412545874714851, 0.026394138112664223, 0.052056193351745605, -0.023596541956067085, -0.029100224375724792, -0.012419233098626137, -0.02669481374323368, -0.015909690409898758, 0.022812169045209885, -0.005938354413956404, -0.018772650510072708, 0.001305653597228229, 0.009510518051683903, -0.03038136474788189, 0.03283906728029251, -9.008029155666009e-05, -0.012916002422571182, -0.00926213338971138, 0.038486547768116, 0.05380795896053314, -0.003431630088016391, -0.056579411029815674, 0.029623137786984444, -0.0104060098528862, 0.010680540464818478, -0.005016716662794352, -0.025348307564854622, -0.03448624908924103, -0.0011430596932768822, -0.04402944818139076, 0.0028024979401379824, 0.042852889746427536, -0.005869721528142691, -0.0177006758749485, 0.03153177723288536, 0.013438917696475983, -0.023060554638504982, -0.028525017201900482, 0.00868692621588707, 0.039715398102998734, -0.011334184557199478, -0.016145002096891403, 0.012425769120454788, -0.026472575962543488, -0.027296166867017746, 0.007510367780923843, -0.03038136474788189, -0.0015646598767489195, 0.022498421370983124, -0.04470923915505409, -0.02210623398423195, -0.024341696873307228, -0.041859351098537445, -0.0379897803068161, -0.014144852757453918, -0.023034408688545227, -0.07090727984905243, -0.041754767298698425, 0.022812169045209885, -0.08340495079755783, 0.06175626814365387, 0.01061517558991909, -0.018968744203448296, -0.021426444873213768, 0.014040269888937473, 0.007595341186970472, -0.004098346922546625, 0.05027828365564346, -0.013569645583629608, -0.013203605078160763, 0.011634860187768936, 0.007967918179929256, 0.0014641621382907033, -0.032185424119234085, 0.005258564837276936, -0.012752591632306576, -0.013072876259684563, -0.05506295710802078, 0.038172800093889236, 0.013635010458528996, 0.029492409899830818, 0.026982417330145836, 0.020119156688451767, 0.018498120829463005, 0.005003643687814474, -0.007471148855984211, 0.009412471204996109, 0.010850487276911736, 0.040970396250486374, -0.009294815361499786, -0.06285439431667328, -0.021164987236261368, -0.006928624585270882, 0.008994138799607754, -0.051219530403614044, -0.05443545803427696, 0.024786174297332764, -0.03715311735868454, -0.0007872323039919138, -0.021936286240816116, -0.027139291167259216, 0.03252531588077545, -0.018550412729382515, -0.004366341046988964, 0.023021336644887924, 0.004591847769916058, 0.0056736283004283905, -0.03963696211576462, 0.03438166528940201, 0.014105633832514286, 0.03882644325494766, -0.04230383038520813, -0.0025001876056194305, 0.02320435643196106, -0.026315700262784958, -0.020825091749429703, -0.0035198719706386328, -0.0012558131711557508, -0.0029561042319983244, 0.036394890397787094, 0.025361381471157074, 0.021818630397319794, 0.009242523461580276, 0.021831704303622246, -0.004340195097029209, -0.008445078507065773, 0.013301651924848557, -0.017779111862182617, 0.004519947338849306, 0.0005131104262545705, -0.024341696873307228, -0.056736283004283905, -0.025426745414733887, 0.002310630865395069, 0.009954995475709438, -0.02170097455382347, -0.004601652733981609, -0.027505332604050636, -0.02435476891696453, 0.031191883608698845, -0.03001532517373562, 0.02585815079510212, 0.0619131438434124, -0.02215852588415146, -0.009667391888797283, 0.0031963184010237455, 0.01695552095770836, 0.030668968334794044, -0.013635010458528996, -0.012445379048585892, 0.046539440751075745, 0.007196618709713221, -0.05090578272938728, 0.029518555849790573, 0.01945243962109089, -0.025923514738678932, -0.021727120503783226, -0.0034773852676153183, 0.03323125094175339, 0.00235475180670619, 0.05365108698606491, -0.0270608551800251, -0.03736228123307228, 0.01878572441637516, 0.004317317623645067, -0.014523966237902641, 0.01904718205332756, -0.03022449091076851, -0.02559669315814972, -0.004510142374783754, -0.0007083865348249674, 0.012608789838850498, 0.018498120829463005, 0.015752816572785378, 0.06573042273521423, -0.035610515624284744, 0.0026047707069665194, -0.04049977287650108, -0.03242073580622673, 0.02241998352110386, 0.026354920119047165, -0.007628023624420166, -0.004693162627518177, 0.021988578140735626, 0.04499684274196625, -0.011504131369292736, -0.0047716000117361546, -0.035505931824445724, 0.03372802212834358, 0.04392486438155174, 0.01313824113458395, -0.030564386397600174, 0.0011062922421842813, 0.04855266585946083, -0.012674153782427311, 0.013582718558609486, -0.03127032145857811, -0.005732456222176552, 0.016145002096891403, 0.0017697407165542245, 0.03127032145857811, 0.004872914869338274, -0.0038761079777032137, 0.004693162627518177, -0.0015597576275467873, 0.028655745089054108, 0.008798046037554741, 0.007320811040699482, 0.008209766820073128, 0.04055206477642059, -0.002459334908053279, 0.008105183951556683, -0.017347706481814384, 0.020419834181666374, -0.002364556537941098, 0.00045387394493445754, 0.01992306485772133, 0.028864910826086998, 0.029204806312918663, 0.020119156688451767, 0.008647708222270012, 0.02742689475417137, 0.005232418887317181, -0.07064582407474518, -0.017413072288036346, -0.007686851546168327, -0.011772125028073788, -0.0006050290539860725, 0.06196543574333191, -0.004085273947566748, 0.023230502381920815, -0.00968046486377716, -0.020981967449188232, -0.018929526209831238, 0.03806821629405022, 4.75168417324312e-05, 0.0073338840156793594, -0.004451314453035593, 0.011308038607239723, -0.0017697407165542245, 0.0421469546854496, 0.0038009388372302055, 0.0100138233974576, -0.009667391888797283, 0.03341427445411682, 0.018485046923160553, -0.03281291946768761, 0.0023563860449939966, 0.0060069868341088295, 0.00667370343580842, -0.005510217510163784, 0.029361680150032043, -0.04457851126790047, -0.018341245129704475, -0.027087001129984856, 0.005647482816129923, -0.010059578344225883, 0.03262989968061447, -0.009758902713656425, 0.015308338217437267, -0.03231615200638771, -0.021792486310005188, 0.001058903057128191, 0.041022688150405884, 0.004683358129113913, 0.002130878856405616, 0.04766370728611946, 0.047271523624658585, -0.0111903827637434, -0.002841716632246971, 0.04619954526424408, -0.004925206303596497, -0.07132561504840851, -0.012935611419379711, 0.033022087067365646, -0.007745679467916489, 0.01360886450856924, 0.0043761455453932285, 0.008778437040746212, -0.03370187431573868, 0.01690322905778885, -0.005284710321575403, -0.00993538647890091, 0.010562884621322155, -0.02294289879500866, -0.013131704181432724, 0.018929526209831238, 0.0028613258618861437, 0.025256797671318054, 0.03059053234755993, -0.04946776479482651, 0.027975955978035927, -0.019896918907761574, -0.012680690735578537, 0.004127760883420706, 0.017360780388116837, 0.0031244175042957067, 0.002326972084119916, 0.04089195653796196, 0.02423711307346821, 0.0031799771822988987, 0.014170998707413673, 0.05386025086045265, -0.015242974273860455, -0.025832004845142365, 0.02200165204703808, 0.0056736283004283905, 0.0395585261285305, -0.025727421045303345, -0.006327272392809391, 0.012164311483502388, 0.028263559564948082, 0.013353943824768066, 0.028838766738772392, 0.018119007349014282, 0.0038205482997000217, 0.03396333381533623, -0.01321667805314064, 0.026420284062623978, -0.009066039696335793, 0.025269869714975357, 0.029283244162797928, 0.026551011949777603, 0.031767088919878006, 0.03600270301103592, 0.047637563198804855, -0.010151089169085026, 0.024054093286395073, -0.015321411192417145, -0.02091660350561142, -0.020380614325404167, -0.00894838385283947, -0.012765663675963879, -0.030616676434874535, -0.0063141994178295135, 0.02065514586865902, 0.0036571372766047716, -0.024995340034365654, -0.01576588861644268, 0.011948609724640846, -0.026132680475711823, 0.018040569499135017, -0.004588579759001732, 0.013700374402105808, 0.03736228123307228, -0.010046505369246006, 0.0066442894749343395, 0.04321892932057381, -0.024380914866924286, 0.012785273604094982, -0.023322012275457382, 0.028315851464867592, -0.02543981745839119, 0.007699924521148205, -0.050696615129709244, 0.0008873214828781784, -0.014654695056378841, 0.0024626031517982483, -0.025348307564854622, -0.023426594212651253, -0.018811870366334915, 0.02013223059475422, 0.01209241058677435, 0.019426295533776283, 0.0002463420096319169, -0.01716468669474125, -0.032656047493219376, 0.007869871333241463, -0.016262657940387726, -0.0051245675422251225, 0.0273223128169775, -0.01048444677144289, -0.057834405452013016, 0.030773552134633064, -0.00939286220818758, -0.025635911151766777, 0.04277445375919342, -0.02102118544280529, -0.06374334543943405, 0.02273373305797577, -0.025047631934285164, -0.027975955978035927, 0.00886994693428278, 0.011203455738723278, -0.02283831499516964, 0.04110112413764, -0.003961081616580486, -0.013438917696475983, -0.024119457229971886, 0.007680315058678389, 0.05025213956832886, -0.03610728681087494, -0.02039368823170662, -0.0379636324942112, -0.0059808408841490746, -0.03137490525841713, -0.010713222436606884, -0.0014911249745637178, -0.0009020284633152187, -0.01266761776059866, -0.014929224736988544, 0.022550711408257484, -0.026184972375631332, -0.04881412163376808, 0.037806760519742966, 0.012902929447591305, 0.011236137710511684, -0.02669481374323368, 0.022459201514720917, -0.011504131369292736, -0.015674378722906113, 0.014288654550909996, -0.017779111862182617, -0.010118406265974045, 0.001654535997658968, -0.03074740618467331, -0.0029266902711242437, -0.019334783777594566, 0.03830352798104286, 0.018132079392671585, -0.023583469912409782, -0.011896317824721336, -0.039663106203079224, 0.021374152973294258, -0.03456468507647514, -0.008039819076657295, -0.013255896978080273, 0.022393837571144104, 0.01347813569009304, 0.013804958201944828, -0.0014322970528155565, 0.02486461214721203, 0.004026446025818586, -0.02465544454753399, 3.1022547773318365e-05, 0.015700524672865868, -0.009379789233207703, -0.0004330390365794301, -0.012347332201898098, 0.020877383649349213, -0.03116573765873909, 0.0008472858462482691, -0.010543274693191051, 0.04382028430700302, -0.03864342346787453, 0.019543951377272606, -0.022707587108016014, -0.012112020514905453, -0.011308038607239723, 0.019060254096984863, -0.026825543493032455, 0.012053192593157291, -0.027453040704131126, -0.0019053717842325568, 0.00417351583018899, -0.010445228777825832, 0.0150860995054245, 0.014903079718351364, 0.017047030851244926, 0.057206910103559494, -0.026603303849697113, -0.01920405589044094, 0.008268594741821289, 0.01638031378388405, 0.008281667716801167, -0.03610728681087494, -0.0033450222108513117, -0.01259571686387062, -0.031035009771585464, 0.0053337337449193, -0.0215963926166296, -0.013465062715113163, -0.017975205555558205, -0.026877835392951965, 0.019962282851338387, -0.020942747592926025, -0.036394890397787094, 0.02018452249467373, -0.0040427870117127895, 0.008000600151717663, -0.011928999796509743, 0.02492997609078884, -0.018759578466415405, -0.004977497737854719, 0.0069090151228010654, 0.026616377755999565, -0.003194684162735939, -0.024838466197252274, 0.006480878684669733, 0.014105633832514286, -0.028080539777874947, 0.005742261186242104, -0.005118031054735184, -0.01360886450856924, -0.04235612228512764, -0.002929958514869213, -0.00482715992256999, -0.01972697116434574, -0.010569420643150806, -0.0070658898912370205, -0.0016782305901870131, -0.033074378967285156, -0.01738692633807659, -0.0017484972486272454, 0.0174392182379961, -0.0019102741498500109, 0.0038564985152333975, 0.014354018494486809, 0.025413671508431435, 0.03294365108013153, -0.01664177142083645, -0.04978151619434357, -0.0076149506494402885, 0.006222689524292946, -0.012974830344319344, -0.065573550760746, -0.026184972375631332, -0.001442918786779046, -0.03710082545876503, 0.018694214522838593, 0.049415472894907, 0.06750833243131638, 0.011647933162748814, 0.05950773507356644, 0.0003055784909520298, 0.012700299732387066, -0.0037845978513360023, -0.010490983724594116, 0.0035688953939825296, 0.01685093715786934, 0.011033507995307446, 0.005153981503099203, -0.011111944913864136, 0.010301426984369755, 0.015295266173779964, 0.025413671508431435, 0.0006152422865852714, 0.0036015775986015797, -0.0149553706869483, -0.04384642839431763, 0.06756062805652618, -0.04745454341173172, -0.00242011621594429, 0.040342897176742554, -0.016223439946770668, -0.0018579825991764665, -0.003983959089964628, 0.004702967591583729, -0.022772951051592827, -0.026603303849697113, 0.03388489782810211, 0.017517654225230217, 0.015242974273860455, -0.01763531006872654, 0.006863260176032782, -0.006967843044549227, 0.0036146503407508135, 0.012987903319299221, -0.0247077364474535, -0.005167054478079081, 0.002233827719464898, -0.021243425086140633, -0.008007137104868889, -6.791768100811169e-05, -0.04340194910764694, 0.00025818930589593947, -0.01115769986063242, 0.016981666907668114, -0.048265062272548676, -0.004801013972610235, 0.010111870244145393, -0.026041170582175255, 0.00633380888029933, 0.036290306597948074, 0.0327606275677681, 0.013425844721496105, 0.028368141502141953, 0.05265754833817482, -0.011857098899781704, 0.006343613378703594, -0.042329974472522736, 0.0010017091408371925, 0.03584582731127739, 0.0270608551800251, 0.03011990711092949, 0.031087301671504974, -0.00646453769877553, 0.03438166528940201, -0.01675942726433277, 0.003001859411597252, -0.009124867618083954, 0.029309390112757683, 0.004578775260597467, -0.014014123938977718, 0.016118856146931648, -0.03801592439413071, -0.01194207277148962, 0.019060254096984863, 0.012857174500823021, 0.006016791332513094, -0.015883544459939003, -0.005323929246515036, 0.03351885452866554, -0.047480687499046326, 0.012347332201898098, -0.006660630460828543, 0.041388727724552155, 0.02695627138018608, 0.007994064129889011, -0.03011990711092949, 0.026707887649536133, 0.012295040301978588, -0.0053664157167077065, 0.023635761812329292, -0.03448624908924103, -0.06855416297912598, 0.007732606492936611, -0.0161319300532341, -0.00806596502661705, 0.03859113156795502, 0.0006356686353683472, 0.011458376422524452, -0.02685168944299221, 0.00038953087641857564, 0.014916152693331242, 0.0023890682496130466, 0.026511793956160545, 0.010935461148619652, 0.04334966093301773, 0.025609765201807022, -0.030198344960808754, 0.04991224408149719, -0.010190307162702084, -0.00023163502919487655, -0.008883019909262657, -0.006049473769962788, 0.04567662999033928, 0.04073508456349373, -0.0033564611803740263, -0.042591433972120285, 0.010288354009389877, 0.003287828527390957, 0.009517054073512554, -0.03320510685443878, -0.008876482956111431, 0.0299107413738966, -0.00845815148204565, 0.020576708018779755, -0.0030329073779284954, -0.009510518051683903, -0.010000750422477722, 0.02685168944299221, 0.004346731584519148, -0.020537490025162697, 0.055742744356393814, -0.011366866528987885, 0.014406310394406319, 0.020903529599308968, 0.019021036103367805, 0.0006732531473971903, 0.034512393176555634, 0.028681891039013863, 0.02351810596883297, -0.04026446118950844, -0.020838165655732155, 0.0556904561817646, -0.023125918582081795, 0.023648833855986595, -0.06573042273521423, -0.03427708148956299, -0.010830878280103207, -0.004291171673685312, 0.042539142072200775, 0.00780450738966465, 0.014942297711968422, 0.037649884819984436, 0.019831553101539612, 0.00866731721907854, 0.01945243962109089, -0.024943048134446144, -0.03257760778069496, -0.0033793386537581682, -0.02669481374323368, 0.0055232904851436615, 0.018249735236167908, 0.024590080603957176, -0.02309977263212204, 0.003859766758978367, 0.012902929447591305, -0.026877835392951965, -0.012935611419379711, -0.01555672287940979, -0.0046800896525382996, -0.01022298913449049, -0.017399998381733894, -0.013451989740133286, -0.0003842200094368309, -0.012648007832467556, -0.002085123909637332, 0.035976555198431015, 0.002287753392010927, 0.021478736773133278, -0.00027146644424647093, 0.027766790241003036, 0.023060554638504982, -0.020890457555651665, -0.011406084522604942, 0.006961307022720575, -0.0038434257730841637, 0.008118255995213985, -0.0022534371819347143, -0.026367992162704468, 0.019086400046944618, 0.0007394345593638718, 0.006601802539080381, 0.022511493414640427, -0.03472156077623367, 0.0025622837711125612, -0.02004072070121765, 0.028394287452101707, -0.009706610813736916, -0.00450033787637949, -0.004487264901399612, 0.029570847749710083, 0.022197743877768517, 0.00920984148979187, -0.011830952949821949, 0.012817955575883389, -0.005069008097052574, 0.029178660362958908, -0.011105408892035484, -0.000289645919110626, -0.011366866528987885, 0.0055853864178061485, 0.029361680150032043, 0.015373703092336655, 0.00027596025029197335, -0.0016439142636954784, -0.01841968297958374, 0.0006352600757963955, -0.000579291838221252, 0.036970093846321106, -0.011347256600856781, -0.0010033432627096772, 0.004899060353636742, 0.015517504885792732, 0.03699624165892601, -0.013040194287896156, -0.04708850011229515, 0.0054644625633955, 0.0019200787646695971, -0.0024005069863051176, -0.016837865114212036, 0.0017844476969912648, 0.016158076003193855, 0.0003315199865028262, -0.01696859486401081, 0.013295115903019905, -0.0009894534014165401, 0.021531028673052788, 0.010719758458435535, 0.007320811040699482, -0.01738692633807659, 0.042957473546266556, 0.05022599175572395, -0.011183845810592175, 0.032028548419475555, 0.015543650835752487, 0.02455086261034012, 0.020877383649349213, 0.007196618709713221, -0.012739518657326698, 0.02154410071671009, -0.004967693239450455, 0.01768760196864605, -0.008706536144018173, -0.048631101846694946, -0.011164236813783646, 0.001081780530512333, 0.04625183716416359, 0.024629300460219383, -0.016301877796649933, -0.035924263298511505, -0.003957813605666161, 0.05480149760842323, -0.036551762372255325, 0.03032907471060753, -0.03595041111111641, -0.06358647346496582, 0.0038107435684651136, -0.010928925126791, -0.026394138112664223, -0.0010017091408371925, 1.4579321032215375e-05, -0.006856723688542843, -0.004497069399803877, -0.012948684394359589, 0.032185424119234085, 0.0032535120844841003, 0.015073026530444622, -0.002425018697977066, -0.032969795167446136, 0.07378331571817398, -0.023452740162611008, -0.019753117114305496, -0.007392711937427521, 0.031714797019958496, -0.0304336566478014, -0.03357114642858505, 0.00941900722682476, 0.00038340294850058854, 0.001072792918421328, -0.006059278268367052, 0.00686979666352272, -0.023505032062530518, -0.0023302403278648853, -0.008484297432005405, -0.031296465545892715, 0.003188147908076644, 0.042382266372442245, -0.023269720375537872, 0.002599868457764387, 0.006448196247220039, -0.011745980009436607, 0.031035009771585464, 0.0053435382433235645, -0.011445303447544575, -0.023060554638504982, 0.018877234309911728, -0.0040427870117127895, -0.018092861399054527, 0.019831553101539612, -0.018955670297145844, -0.0015434165252372622, 0.01669406332075596, 0.0011863635154441, 0.0051049585454165936, 0.0076149506494402885, 0.009954995475709438, -0.04374184459447861, 0.020955821499228477, -0.02554440125823021, -0.009052966721355915, 0.0013367016799747944, -0.013242824003100395, 0.021321861073374748, 0.0014437357895076275, 0.020524416118860245, 0.028525017201900482, -0.00947129912674427, -0.008157474920153618, 0.018589630722999573, 0.025112995877861977, 0.029492409899830818, 0.016145002096891403, -0.013504281640052795, -0.0049480837769806385, -0.013700374402105808, -0.0009861851576715708, 0.005562508944422007, -0.00641224579885602, -0.010079188272356987, -0.012576106935739517, 0.013674229383468628, -0.005049398634582758, 0.036551762372255325, 0.01379188522696495, -0.0027371335308998823, -0.03474770486354828, -0.009497445076704025, 0.02383185364305973, -0.010843951255083084, -0.0031472949776798487, -0.011504131369292736, 0.014144852757453918, -0.022498421370983124, -0.014563184231519699, 0.011072726920247078, 0.008020210079848766, 0.007301201578229666, -0.008235912770032883, -0.005510217510163784, -0.010366790927946568, 0.051376406103372574, 0.0019789068028330803, 0.01100082602351904, 0.008503906428813934, -0.0057259202003479, -0.028786474838852882, -0.0004044421366415918, 0.02545289136469364, 0.052840568125247955, -0.011687152087688446, -0.014445528388023376, -0.0056115323677659035, -0.008693463169038296, 0.028838766738772392, 0.006987452507019043, -0.028786474838852882, 0.011020435020327568, 0.0033989478833973408, -0.00760841416195035, -0.00847776047885418, -0.0007974454783834517, 0.0006409795023500919, 0.022720659151673317, 0.04792516678571701, -0.011693688109517097, -0.02768835239112377, 0.006539706606417894, 0.01220353040844202, 0.0030557848513126373, -0.0249691940844059, -0.013517354615032673, 0.042068518698215485, -0.005069008097052574, -0.0004530568839982152, -0.03527062013745308, -0.009830803610384464, -0.01836739107966423, -0.003181611420586705, 0.015883544459939003, -0.020838165655732155, 0.011144627816975117, 0.014510893262922764, -0.00018026270845439285, 0.03493072837591171, 0.021883996203541756, -0.028002101927995682, -0.002413579961284995, 0.0395585261285305, -0.01592276431620121, -0.014170998707413673, 0.03961081802845001, 0.032394587993621826, -0.019177909940481186, -0.051219530403614044, 0.009987677447497845, -0.003931667655706406, 0.0065789250656962395, 0.007255446631461382, -0.003748647402971983, 0.01660255342721939, 0.0275837704539299, -0.020772801712155342, 0.022969044744968414, -0.004915401805192232, 0.00986348558217287, -0.01607963815331459, 0.01102697104215622, -0.004000300075858831, 0.056370243430137634, -0.005470999050885439, 0.05108880251646042, 0.003912058193236589, -0.011791734956204891, -0.0004228258621878922, 0.014471674337983131, 0.046591732650995255, -0.00806596502661705, -0.02206701599061489, -0.01295522041618824, 0.006324003916233778, 0.020328322425484657, -0.03864342346787453, -0.0007676229579374194, 0.030773552134633064, -0.013948759064078331, -0.005510217510163784, 0.0016422801418229938, 0.021269571036100388, -0.014380164444446564, 0.019740043208003044, -0.010824342258274555, 0.00035603163996711373, -0.02346581406891346, -0.010386400856077671, -0.024995340034365654, -0.031610216945409775, -0.006654094438999891, 0.02262914925813675, 0.011517204344272614, -0.01826280914247036, -0.004124492406845093, 0.02528294362127781, -0.007516904268413782, 0.012654544785618782, -0.012719908729195595, -0.02449857071042061, -0.0058272345922887325, 0.004503605887293816, -0.011981291696429253, 0.0004636785888578743, 0.036656346172094345, 0.03354500234127045, 0.015256047248840332, -0.008673853240907192, -0.03064282238483429, 0.018275881186127663, -0.018759578466415405, 0.04583350569009781, 0.03184552863240242, -0.010340645909309387, -0.01360886450856924, -0.022289255633950233, -0.03388489782810211, 0.006928624585270882, -0.007072426378726959, -0.010471373796463013, -0.002261607674881816, -0.002168463310226798, 0.012027046643197536, 0.037231553345918655, 0.015961982309818268, 0.01373959332704544, 0.010543274693191051, 0.020942747592926025, 0.0021815362852066755, 0.006359954364597797, 0.012811419554054737, 0.02278602495789528, -0.01763531006872654, -0.05480149760842323, 0.005350074730813503, 0.029544701799750328, -0.032290004193782806, 0.019831553101539612, 0.012850637547671795, -0.004967693239450455, 0.003814011812210083, 0.011536813341081142, -0.01634109579026699, 0.017883695662021637, 0.00021427261526696384, -0.01826280914247036, -0.050069116055965424, -0.03921863064169884, -0.008922237902879715, 0.010262208059430122, -0.029335536062717438, 7.067523984005675e-05, -0.007909090258181095, -0.005680164787918329, 0.008843800984323025, 0.02299519069492817, 0.0174392182379961, -0.015465212985873222, 0.051062654703855515, -0.012994439341127872, 0.009830803610384464, 0.024341696873307228, 0.01061517558991909, -0.02996303327381611, 0.052735984325408936, -0.0016071468126028776, -0.009301351383328438, -0.008052892051637173, 0.0026325504295527935, 0.031871672719717026, 0.02700856328010559, -0.007144327275454998, 0.0012362039415165782, 0.014275581575930119, -0.003650600789114833, -0.01655026152729988, 0.026498721912503242, 0.05197775736451149, -0.012438842095434666, -0.02346581406891346, 0.03574124351143837, -0.007529976777732372, 0.003034541616216302, -0.0010989387519657612, 0.025988878682255745, 0.026237264275550842, -0.047637563198804855, 0.015334484167397022, 0.006121374666690826, -0.01977926306426525, 0.006634484976530075, 0.01035371795296669, -0.008026746101677418, -0.006013523321598768, 0.0036081138532608747, -0.005088617093861103, 0.03210698440670967, 0.004856573883444071, -0.01686401106417179, -0.0463041290640831, -0.0006209616549313068, -0.013425844721496105, 0.0028368141502141953, 0.02143951691687107, 0.051480989903211594, -0.006676971912384033, 0.01738692633807659, 0.010177234187722206, 0.001165937166661024, 0.01981848105788231, -0.03979383781552315, -0.005395829677581787, -0.0014641621382907033, -0.0021390493493527174, -0.07252831757068634, -0.009353643283247948, 0.031401049345731735, -0.0031146127730607986, 0.050069116055965424, 0.014720058999955654, 0.003604845842346549, -0.016628699377179146, -0.02018452249467373, -0.00866731721907854, -0.0019364198669791222, -0.0055853864178061485, 0.010268745012581348, -0.026629449799656868, -0.02138722687959671, -0.032394587993621826, 0.0038957172073423862, 0.03396333381533623, -0.006902479100972414, 0.01154988631606102, -0.008582343347370625, -0.005895867478102446, 0.019439367577433586, -0.03257760778069496, -0.015739742666482925, 0.01339969877153635, -0.03987227380275726, 0.01035371795296669, -0.004647407680749893, -0.008360104635357857, -0.014706986024975777, -0.007974455133080482, 0.04261757805943489, 0.018302027136087418, -0.018249735236167908, -0.02091660350561142, 0.016223439946770668, -0.007046280428767204, -0.0003427544725127518, 0.010477910749614239, -0.028446579352021217, -0.00806596502661705, 0.02163561061024666, 0.007490758318454027, 0.02149180881679058, -0.03453854098916054, 0.00043385609751567245, 0.011582568287849426, -0.03038136474788189, -0.011334184557199478, -0.01392261404544115, -0.01690322905778885, -0.009909240528941154, -0.02517835982143879, -0.0023890682496130466, 0.006941697560250759, 0.030041471123695374, 0.012909465469419956, 0.016615625470876694, -0.0069090151228010654, -0.01253688894212246, -0.006458001211285591, -0.007418857421725988, 0.007497294805943966, 0.016367241740226746, -0.016484897583723068, 0.0055886548943817616, -0.007876408286392689, 0.013144777156412601, 0.008575807325541973, 0.02622419036924839, 0.010530201718211174, -0.006353417877107859, 0.013713447377085686, -0.03404176980257034, 0.010987753048539162, -0.027975955978035927, -0.04334966093301773, -0.0541217103600502, 0.023897219449281693, -0.006010254845023155, -0.0009649416897445917, 0.02805439382791519, 0.0056115323677659035, 0.004229075741022825, -0.00603640079498291, -0.010229526087641716, -0.02502148598432541], [-0.010594951920211315, -0.027355611324310303, 0.017540810629725456, 0.012476122006773949, -0.03533328324556351, -0.002091936767101288, -0.016546746715903282, 0.056674182415008545, -0.004926274996250868, -0.02851325459778309, -0.03392397612333298, 3.003226811415516e-05, 0.04066850617527962, -0.00231685908511281, 0.015212940983474255, 0.006197165697813034, -0.003762340173125267, -0.011293312534689903, -0.019101111218333244, 0.03382331132888794, 0.002390784677118063, 0.017226234078407288, 0.0018560040043666959, -0.031533192843198776, 0.00977076031267643, -0.021252818405628204, -0.02700328454375267, 0.017981218174099922, 0.04107116535305977, -0.07262952625751495, -0.010217458941042423, -0.043134789913892746, 0.05065947026014328, -0.05511388182640076, -0.03316899389028549, -0.031029870733618736, 0.01585467718541622, -0.03888171166181564, 0.00966380350291729, 0.03535844758152962, -0.007122022099792957, 0.03764856979250908, 0.03135703131556511, 0.029620565474033356, -0.011891008354723454, 0.03485512733459473, -0.02480124682188034, -0.034452468156814575, 0.007663094438612461, 0.011022776365280151, -0.018169963732361794, 0.027808601036667824, -0.031659021973609924, -0.06251273304224014, -0.0005052892374806106, -0.010569785721600056, 0.0038315472193062305, 0.061002761125564575, 0.029645731672644615, -0.006244352553039789, 0.04675871878862381, -0.03732140734791756, -0.006310413591563702, -0.004108374938368797, -0.029570233076810837, 0.029217906296253204, -0.005549137480556965, 0.01564076542854309, -0.05055880546569824, -0.019164027646183968, 0.01470961794257164, 0.0002982582664117217, 0.06523067504167557, -0.0355849452316761, 0.016395749524235725, 0.023568104952573776, 0.0037591943982988596, 0.029092075303196907, -0.018044132739305496, 0.008216749876737595, -0.0254933163523674, -0.03777439892292023, -0.003756048623472452, -0.04766469821333885, -0.054711222648620605, -0.08360196650028229, -0.10499320179224014, -0.052395936101675034, 0.01693682186305523, 0.05742916837334633, 0.006964733358472586, -0.011142315343022346, 0.029519900679588318, 0.064274363219738, -0.022322380915284157, -0.05964379012584686, -0.008889944292604923, -0.04522358253598213, 0.02392043173313141, 0.0541575662791729, -0.01710040308535099, -0.0006999336765147746, -0.005221977364271879, 0.0347796268761158, 0.05214427411556244, -0.011488350108265877, 0.024788662791252136, 0.01003500446677208, 0.0161944217979908, -0.004259371664375067, -0.023228362202644348, -0.06211007386445999, -0.023291276767849922, 0.006216040346771479, -0.01956668682396412, 0.004857067950069904, 0.020007094368338585, -0.009739302098751068, -0.02695295214653015, -0.028186094015836716, 0.0025512189604341984, -0.024486670270562172, 0.025870807468891144, -0.010242625139653683, 0.01574143022298813, -0.0395611971616745, 0.010230042040348053, 0.009827383793890476, -0.027858933433890343, -0.023643603548407555, 0.023769434541463852, -0.01541427057236433, 0.0008061034022830427, 0.0019330753711983562, 0.021793890744447708, 0.019768014550209045, -0.05093630030751228, -0.03032521717250347, 0.009644929319620132, -0.00687036057934165, 0.016659995540976524, -0.031080201268196106, -0.01813221536576748, -0.008776696398854256, -0.04499708488583565, -0.001681413734331727, -0.03958636149764061, -0.01621958799660206, 0.03279149904847145, 0.006593532860279083, -0.01715073548257351, -0.034527964890003204, 0.006700488738715649, 0.003334515728056431, -0.01499902829527855, 0.02288861945271492, -0.0025952598080039024, 0.03817705810070038, -0.006750821135938168, 0.01134993601590395, -0.03389881178736687, -0.010683032684028149, -0.01667257770895958, -0.02891591191291809, 0.006203457247465849, -0.003312495304271579, -0.034930624067783356, 0.04982898756861687, -0.04147382453083992, -0.024599917232990265, -0.03274116665124893, 0.0052943299524486065, -0.029519900679588318, 0.08002837747335434, 0.0024253882002085447, 0.014495705254375935, 0.024889327585697174, 0.04834418371319771, 0.0020730621181428432, 0.032967664301395416, 0.01132476981729269, 0.010110503062605858, 0.00905352458357811, -0.020082592964172363, 0.0075058056972920895, -0.013929466716945171, -0.029670897871255875, -0.006750821135938168, -0.0313318632543087, 0.04159965366125107, -0.009286311455070972, 0.03616376593708992, -0.058687474578619, 0.05486221984028816, 0.01595534197986126, -0.01808188296854496, -0.01140656042844057, 0.0027541210874915123, -0.0020007092971354723, -0.04431759938597679, 0.009456182830035686, 0.022876035422086716, -0.0003016006376128644, 0.04869651049375534, -0.11334836483001709, -0.026902619749307632, -0.023329026997089386, -0.007996546104550362, 0.027783436700701714, -0.015250690281391144, 0.02655029483139515, -0.024411171674728394, -0.02949473448097706, 0.05450989305973053, -0.011154898442327976, -0.005983253475278616, -0.04482092335820198, 0.08611858636140823, 0.024172091856598854, 0.07056590169668198, -0.06548233330249786, -0.0016766950720921159, 0.006288392934948206, 0.006124813109636307, 0.02573239430785179, 0.05511388182640076, 0.02092565782368183, -0.019503770396113396, 0.029771562665700912, -0.06784795224666595, 0.020699163898825645, -0.019981928169727325, -0.03178485482931137, -0.02152964659035206, 0.011010193265974522, -0.010141960345208645, 0.02248596027493477, -0.030954372137784958, 0.028588753193616867, -0.01230624970048666, 0.004303412511944771, -0.036893583834171295, 0.014797699637711048, -0.00803429540246725, 0.05008064955472946, -0.007556138094514608, -0.013564557768404484, 0.01906336285173893, 0.03467896208167076, -0.05013098195195198, -0.022712456062436104, 0.010450245812535286, 0.02886558137834072, -0.05315092206001282, -0.02209588512778282, 0.04532424733042717, -0.010620118118822575, -0.015678515657782555, 0.03422597050666809, -0.01879911869764328, 0.06236173212528229, 0.0035956145729869604, 0.02649996243417263, 0.018245462328195572, -0.02389526553452015, 0.011494641192257404, 0.005841693840920925, 0.038831379264593124, -0.009714135900139809, 0.05581853166222572, -0.019528936594724655, -0.03628959506750107, 0.019679933786392212, -0.03196101635694504, -0.022536292672157288, 0.03168419003486633, 0.008531326428055763, 0.00048562814481556416, -0.00906610768288374, 0.03427630290389061, -0.014948696829378605, 0.012620827183127403, -0.03178485482931137, -0.009166772477328777, 0.007449182216078043, -0.0004486653779167682, 0.003985689952969551, 0.017716974020004272, -0.002007000846788287, 0.015011611394584179, 0.036390259861946106, -0.06684131175279617, -0.009380684234201908, -0.06125442311167717, 0.05440922826528549, -0.013489059172570705, 0.02573239430785179, -0.06880427151918411, 0.02272503823041916, -0.0011883144034072757, 0.03357165306806564, 0.01587984338402748, 0.011664513498544693, -0.02025875449180603, -0.0028893891721963882, -0.008839611895382404, -0.06311672180891037, -0.01372813805937767, -0.01397979911416769, -0.045047417283058167, 0.011677096597850323, 0.04097050055861473, -0.01467186864465475, -0.07403883337974548, -0.001709725707769394, -0.011872134171426296, 0.009141606278717518, -0.0007388626108877361, 0.010915819555521011, -0.021680643782019615, 0.004875942599028349, -0.005816527642309666, 0.02028392069041729, 0.0051150210201740265, -0.03913337364792824, -0.02561914548277855, 0.04882234334945679, -0.004762695170938969, -0.027179447934031487, 0.02224688231945038, -0.0004172076878603548, -0.049526993185281754, 0.03752273693680763, 0.026701292023062706, 0.043210290372371674, -0.005325787700712681, -0.04137315973639488, -0.041775818914175034, 0.0509866327047348, -0.00500491913408041, 0.041700318455696106, -0.06221073493361473, -0.01640833355486393, -0.011022776365280151, -0.017402397468686104, 0.026248300448060036, 0.04527391493320465, 0.006143687758594751, -0.05742916837334633, -0.006146833300590515, 0.03274116665124893, -0.04902367293834686, -0.010664158500730991, 0.004841339308768511, -0.009147897362709045, 0.006058752071112394, 0.035006120800971985, -0.019214360043406487, -0.029092075303196907, 0.024021094664931297, -0.021466730162501335, 0.02745627611875534, -0.01546460296958685, 0.0020557602401822805, 0.07424015551805496, 0.044141437858343124, -0.038378387689590454, 0.07298184931278229, 0.01762889139354229, -0.03910820558667183, 0.01370297186076641, -0.005086709279567003, -0.016899073496460915, 0.004454409703612328, -0.027305278927087784, -0.01906336285173893, 0.06231139972805977, -0.010418788529932499, -0.021705809980630875, 0.00870748981833458, -0.008625700138509274, -0.026348965242505074, -0.030274884775280952, -0.04394010826945305, 0.03988835588097572, 0.004130395129323006, -0.031180866062641144, -0.0008352017612196505, -0.020623665302991867, -0.003617634763941169, 0.022536292672157288, -0.04404077306389809, -0.030476214364171028, 0.03465379774570465, -0.02755694091320038, -0.027858933433890343, -0.046481888741254807, -0.01803155057132244, -0.027305278927087784, 0.04232947528362274, -0.00907869078218937, -0.03825255483388901, -0.024386005476117134, 0.026676125824451447, -0.062009409070014954, 0.056271523237228394, 0.03279149904847145, 0.01710040308535099, -0.013690388761460781, -0.0029837624169886112, 0.02604697085916996, -0.005973816383630037, 0.039234038442373276, -0.0007656016387045383, -0.010802572593092918, -0.006411077920347452, 0.03621409833431244, 0.027330445125699043, -0.01669774390757084, -0.011589014902710915, -0.013476476073265076, 0.040215518325567245, -0.04431759938597679, -0.012576785869896412, -0.019654767587780952, 0.01710040308535099, -0.003929066006094217, 0.012299958616495132, -0.010758531279861927, -0.005898317787796259, 0.01299831923097372, 3.612719592638314e-05, 0.0096260542050004, 0.022322380915284157, -0.027858933433890343, -0.034502800554037094, 0.02009517513215542, 0.04718654230237007, 0.006404786370694637, -0.015477186068892479, 0.026650959625840187, 0.017918303608894348, -0.028664251789450645, -0.014055297710001469, -0.03170935437083244, -0.03367231786251068, 0.007851840928196907, 0.01803155057132244, -0.048520348966121674, 0.02310253120958805, 0.029645731672644615, -0.0036962791346013546, -0.03518228605389595, 0.033521320670843124, -0.006109084468334913, -0.007077981252223253, -0.047488536685705185, 0.004476429894566536, 0.06130475550889969, 0.014910947531461716, -0.019176609814167023, -0.0017679224256426096, 0.019075946882367134, -0.010670449584722519, 0.051791947335004807, -0.00464630126953125, 0.01832096092402935, -0.014256627298891544, -0.020623665302991867, -0.02987222746014595, -0.04811768978834152, -0.0009673241293057799, -0.00999725516885519, -0.014848032034933567, 0.006156270857900381, 0.009670095518231392, -0.017540810629725456, -0.012507579289376736, -0.02243562787771225, -0.03233851119875908, 0.0107522401958704, -0.008223040960729122, -0.04396527260541916, -0.0033659732434898615, 0.01035587303340435, -0.02451183646917343, 0.012023130431771278, 0.0414234921336174, -0.025921139866113663, 0.006118521559983492, 0.028563586995005608, 0.027154281735420227, 0.021441563963890076, -0.012526454403996468, -0.0018858887488022447, 0.0379757285118103, -0.010431371629238129, -0.0031347591429948807, 0.027129115536808968, 0.008594241924583912, 0.0019944177474826574, -0.054761555045843124, 0.023530354723334312, 0.03863004967570305, -0.013803636655211449, 0.045651406049728394, -0.009858841076493263, -0.01715073548257351, 0.023555520921945572, 0.03576110675930977, -0.011872134171426296, 0.0379757285118103, -0.027330445125699043, -0.009814800694584846, -0.016232170164585114, 0.008040586486458778, -0.028815248981118202, 0.00047501118388026953, -0.0274814423173666, 0.03223784640431404, -0.024738330394029617, 0.012086045928299427, -0.015678515657782555, -0.01640833355486393, 0.02695295214653015, 0.03462862968444824, -0.0004616416699718684, -0.03870554640889168, -0.017377231270074844, 0.03913337364792824, 0.017880553379654884, -0.03633992746472359, -0.034074973315000534, 0.014860615134239197, 0.043134789913892746, -0.020057426765561104, -0.03762340173125267, 0.004841339308768511, 0.0068451943807303905, -0.04240497201681137, 0.015087109990417957, -0.015477186068892479, -0.017641475424170494, 0.022712456062436104, 0.0013644774444401264, 0.03807639330625534, 0.004640009719878435, -0.016207003965973854, 0.011117149144411087, 0.02644963003695011, 0.021567394956946373, -0.006782278884202242, 0.022574041038751602, -0.01569109782576561, 0.04230430722236633, -0.01657191291451454, -0.006260081194341183, -0.016018258407711983, 0.04066850617527962, 0.002782433060929179, 0.006612407509237528, 0.04597856476902962, 0.01499902829527855, -0.0027368194423615932, 0.031130533665418625, 0.030501380562782288, 0.02066141366958618, -0.0329173319041729, -0.0477905310690403, -0.005262872204184532, 0.028362257406115532, -0.015238107182085514, 0.015187774784862995, 0.03696908429265022, -0.002570093609392643, 0.010922111570835114, 0.006593532860279083, -0.03820222243666649, 0.017754722386598587, 0.00901577528566122, -0.0012520162854343653, 0.014596370048820972, 0.012161544524133205, 0.01710040308535099, -0.007543554995208979, 0.019503770396113396, -0.025266820564866066, -0.010865488089621067, 0.005067834630608559, 0.04617989435791969, 0.03515711799263954, -0.025581397116184235, 0.04678388312458992, 0.008606825023889542, -0.013224815018475056, -0.013526808470487595, 0.0260218046605587, -0.04690971225500107, -0.02755694091320038, 0.012557911686599255, 4.192720734863542e-05, 0.031105367466807365, 0.045601073652505875, -0.0012960570165887475, -0.027682771906256676, -0.03226301074028015, -0.007902173325419426, -0.04814285412430763, 0.0048098815605044365, 0.015804346650838852, 0.039712194353342056, 0.03470413014292717, 0.05000515282154083, -0.009619763121008873, -0.02370651811361313, 0.028538420796394348, -0.020636247470974922, -0.04761436581611633, -0.028790082782506943, 0.04404077306389809, -0.009173063561320305, 0.021819056943058968, -0.010500578209757805, 0.018811700865626335, -0.03128153085708618, 0.03802606090903282, 0.005105583928525448, -0.010620118118822575, -0.014218878000974655, -0.012136378325521946, -0.014357292093336582, 0.008179000578820705, -0.005973816383630037, -0.01861037127673626, -0.026902619749307632, -0.04494675248861313, 0.04872167855501175, -0.02047266811132431, 0.0003480007580947131, 0.008141251280903816, 0.014369875192642212, 0.015011611394584179, -0.02387009933590889, -0.012809572741389275, 0.04635605961084366, 0.0071597713977098465, -0.020598499104380608, 0.037371739745140076, 0.00010263072908855975, -0.02291378378868103, 0.02490191161632538, -0.015565266832709312, 0.013690388761460781, -0.04373877868056297, -0.021277984604239464, 0.019289858639240265, 0.008254499174654484, 0.050885967910289764, 0.00998467206954956, 0.018169963732361794, -0.0024835849180817604, -0.003210257738828659, -0.024247590452432632, 0.0485958456993103, 0.006058752071112394, -0.004180727526545525, 0.03188551962375641, 0.026927785947918892, 0.003872442292049527, 0.05315092206001282, 0.00963863730430603, -0.027607273310422897, 0.03470413014292717, -0.010620118118822575, -0.02487674541771412, -0.032137181609869, -0.013325479812920094, -0.013904300518333912, -0.0019598144572228193, -0.02286345325410366, 0.02509065717458725, -0.009261145256459713, -0.028135761618614197, -0.016018258407711983, 0.002629863331094384, -0.009896590374410152, 0.02702845074236393, 0.006763404235243797, 0.008921402506530285, 0.02068657986819744, -0.03706974536180496, -0.003299912204965949, 0.031659021973609924, -0.026650959625840187, 0.020824993029236794, -0.011620472185313702, 0.012174127623438835, -0.024952244013547897, -0.010028713382780552, -0.05934179574251175, 0.01226850040256977, 0.02848808839917183, 0.04736270383000374, -0.05773116275668144, -0.0193779394030571, -0.015603016130626202, 0.019365357235074043, -0.006326142232865095, 0.04444343224167824, 0.005671822465956211, -0.030727876350283623, -0.03578627482056618, -0.038856543600559235, -0.01765405759215355, -0.028362257406115532, 0.02886558137834072, 0.03082854114472866, -0.011758886277675629, 0.009902882389724255, -0.03674258664250374, -0.035509444773197174, 0.04907400161027908, -0.02556881494820118, -0.04388977587223053, 0.025719810277223587, -0.020183255895972252, -0.02894107811152935, -0.019478604197502136, -0.020850159227848053, 0.015804346650838852, 0.04399044066667557, -0.02705361694097519, -0.053201254457235336, -0.008210457861423492, -0.010362164117395878, 0.04741303622722626, -0.024499252438545227, -0.026676125824451447, -0.0161944217979908, -0.012224460020661354, -0.003271600231528282, -0.041222162544727325, 0.032615337520837784, 0.021277984604239464, -0.006920692976564169, -0.006370183080434799, 0.028160927817225456, -0.0063167051412165165, -0.05254693329334259, 0.02891591191291809, 0.017326898872852325, 0.009808509610593319, -0.03470413014292717, -0.0002133224916178733, -0.00735480897128582, -0.038831379264593124, 0.02702845074236393, -0.03608826547861099, -0.0192521084100008, -0.00501750223338604, -0.010519453324377537, -0.015150025486946106, -0.01499902829527855, 0.011903591454029083, 0.036390259861946106, -0.022825703024864197, -0.007109439000487328, -0.021793890744447708, 0.0008391339797526598, -0.011066816747188568, -0.013904300518333912, -0.00274468376301229, -0.004407222848385572, -0.0017050070455297828, 0.008543909527361393, 0.023731684312224388, -0.014873198233544827, 0.005586886312812567, -0.012960569933056831, -0.0032212678343057632, 0.014483122155070305, -0.02147931419312954, 0.009846257977187634, 0.020321670919656754, -0.010651575401425362, -0.011343644931912422, -0.005448472686111927, -0.0034257429651916027, 0.030199386179447174, -0.013828802853822708, 0.003255871357396245, -0.035861771553754807, 0.010362164117395878, -0.052395936101675034, 0.009141606278717518, 0.006901818327605724, -0.017716974020004272, -0.013627473264932632, 0.0254933163523674, -0.0026330091059207916, -0.008764113299548626, 0.00489167170599103, 0.020875325426459312, 0.011878425255417824, 0.03714524582028389, -0.04245530441403389, -0.0031080201733857393, 0.010230042040348053, -0.03410014137625694, -0.004718654323369265, -0.04295862838625908, 0.01094098575413227, -0.028689417988061905, -0.0050332313403487206, -0.013476476073265076, -0.022511126473546028, 0.01204200554639101, -0.05481188744306564, -0.009965797886252403, 0.024071427062153816, -0.006112230010330677, -0.04444343224167824, 0.024008512496948242, -0.005218831356614828, -0.0022507980465888977, -0.024474086239933968, 0.020585915073752403, 0.005417014937847853, -0.006738238036632538, 0.0015437863767147064, 0.004882234148681164, 0.008738947100937366, -0.053754907101392746, 0.006300976034253836, 0.02381976693868637, -0.009059815667569637, -0.000711337139364332, 0.006061897613108158, -0.016521580517292023, -0.015238107182085514, -0.027103949338197708, 0.0025716666132211685, -0.02740594372153282, 0.0075058056972920895, -0.0226998720318079, 0.007512097246944904, -0.01882428489625454, 0.006090209819376469, -0.008801862597465515, -0.011091982945799828, 0.008128668181598186, -0.002249225042760372, 0.026223134249448776, 0.020598499104380608, 0.013803636655211449, -0.014810282737016678, -0.030526546761393547, -0.02214621752500534, -0.008134960196912289, 0.00974559411406517, -0.027657605707645416, -0.010148252360522747, 0.008424370549619198, -0.06256306171417236, 0.03382331132888794, 0.03699424862861633, 0.05078530311584473, 0.02174355834722519, 0.04768986627459526, -0.00963863730430603, 0.0019016176229342818, 0.004690342117100954, -0.0016263627912849188, 0.027204614132642746, 0.005439035594463348, 0.002766704186797142, -0.016949405893683434, 0.032137181609869, -0.0006472420645877719, 0.015540100634098053, 0.05116279423236847, -0.0061373962089419365, -0.0021658623591065407, -0.0353081151843071, -0.010802572593092918, 0.04625539481639862, -0.01853487268090248, 0.0018874616362154484, 0.0226998720318079, 0.02657546103000641, -0.022662123665213585, 0.008871070109307766, 0.024700582027435303, -0.05632185563445091, -0.04517325013875961, 0.025895973667502403, 0.008587950840592384, 0.05005548521876335, 0.005838548298925161, 0.02068657986819744, 0.02030908688902855, 0.031659021973609924, -0.02843775600194931, -0.004624281078577042, 0.02790926583111286, -0.005080417729914188, -0.038302887231111526, -0.03475446254014969, -0.0045865317806601524, -0.007304476574063301, -0.030501380562782288, 0.027154281735420227, 0.004677759017795324, -0.03508162125945091, -0.029670897871255875, 0.024209842085838318, -0.024725748226046562, 0.014344708994030952, 0.008267082273960114, 0.014634119346737862, 0.04326062276959419, 0.027858933433890343, 0.034930624067783356, -0.011771469376981258, 0.023668769747018814, -0.023568104952573776, 0.003216549288481474, 0.018811700865626335, 0.0008041373221203685, 0.022070718929171562, 0.019579268991947174, 0.007763759233057499, 0.062462396919727325, 0.0010561920935288072, 0.019856097176671028, -0.043134789913892746, 0.021202486008405685, 9.147307719103992e-05, 0.005539699923247099, -0.016269920393824577, -0.044695090502500534, -0.004218476824462414, 0.002238214947283268, 0.004454409703612328, 0.009154189378023148, -0.024121759459376335, -0.014797699637711048, -0.029041742905974388, -0.008021712303161621, 0.007096855901181698, 0.0188494510948658, 0.02176872454583645, 0.031633857637643814, -0.001613779691979289, 0.020850159227848053, 0.010796280577778816, 2.1061909137642942e-05, 0.0010357445571571589, 0.05025681108236313, 0.004649447277188301, -0.04534941166639328, 0.04404077306389809, -0.028160927817225456, 0.01728914864361286, 0.03276633471250534, -0.0030498234555125237, -0.03951086476445198, -0.0017694953130558133, -0.007291893474757671, -0.015993092209100723, 0.0022177675273269415, -0.007273018825799227, -0.01468445174396038, 0.030627211555838585, 0.037422072142362595, -0.0040108561515808105, 0.04333611950278282, 0.03201134875416756, -0.0007860491168685257, -0.029670897871255875, -0.0048507764004170895, 0.02315286360681057, 0.052798595279455185, -0.03571077436208725, -0.026197968050837517, 0.0245621670037508, 0.03676775470376015, -0.012834738940000534, -0.010261500254273415, 0.0036585298366844654, 0.003938503563404083, -0.009915465489029884, 0.014218878000974655, -0.010299249552190304, -0.005177936516702175, -0.01299831923097372, 0.0154016874730587, 0.011318478733301163, 0.007719718385487795, 0.028286758810281754, -0.02894107811152935, 0.01204200554639101, 0.010878071188926697, 0.00024694291641935706, -0.005876297131180763, 0.02052300050854683, 0.00803429540246725, 0.03535844758152962, -0.014936113730072975, -0.021705809980630875, 0.01789313741028309, -0.01104794256389141, 0.015036777593195438, -0.05073497071862221, -0.014294376596808434, -0.03233851119875908, 0.019679933786392212, 0.029570233076810837, -0.017805054783821106, 0.024939659982919693, 0.02209588512778282, 0.011639347299933434, -0.009147897362709045, 0.013124150224030018, -0.0061782910488545895, -0.044619593769311905, -0.0020935095380991697, -0.011595305986702442, 0.02612246945500374, 0.0032810375560075045, 0.03334515541791916, -0.018937531858682632, -0.012356582097709179, 0.002552791964262724, -0.010292957536876202, -0.007373683620244265, -0.015338771976530552, -0.03696908429265022, -0.0030388133600354195, -0.017503060400485992, -0.018761368468403816, -0.003520115977153182, -0.017691807821393013, 0.008789279498159885, 0.014395041391253471, 0.018333544954657555, 0.02939406968653202, -0.02095082402229309, 0.030224552378058434, 0.013426143676042557, 0.031533192843198776, 0.01853487268090248, -0.022511126473546028, -0.004139832686632872, 0.016899073496460915, 0.007153479848057032, -0.011475767008960247, -0.0016122068045660853, -0.010186001658439636, 0.014546037651598454, 0.018924949690699577, -0.007851840928196907, -0.010588659904897213, 0.0009232833399437368, 0.012545328587293625, -0.014873198233544827, -0.012299958616495132, 0.018144797533750534, 0.01106052566319704, 0.016634829342365265, 0.004772132262587547, -0.007304476574063301, 0.019667349755764008, 0.01133735291659832, 0.04877201095223427, -0.016244754195213318, -0.006234914995729923, -0.026248300448060036, -0.009965797886252403, 0.0011552838841453195, -0.003520115977153182, -0.013287730515003204, -0.004344307817518711, -0.010777406394481659, 0.01959185302257538, -0.031558360904455185, 0.042656634002923965, -0.012564202770590782, -0.019151443615555763, 0.004655738826841116, -0.004885380156338215, 0.023039614781737328, -0.011211521923542023, -0.02360585331916809, -0.008562784641981125, 0.020321670919656754, 0.023253528401255608, 0.01273407507687807, 0.019264692440629005, 0.03369748219847679, -0.01688649132847786, 0.008147543296217918, 0.03465379774570465, -0.01231883279979229, -0.020623665302991867, -0.004350599367171526, -0.016131505370140076, -0.027582107111811638, 0.04580240324139595, 0.021592561155557632, -0.007197520695626736, 0.00547678442671895, 0.016949405893683434, 0.018761368468403816, -0.016446081921458244, -0.012274792417883873, -0.0013054943410679698, 0.012859905138611794, -0.00034052954288199544, 0.008663449436426163, -0.004784715361893177, -0.03946053236722946, -0.01614408940076828, -0.028714584186673164, 0.036943916231393814, -0.01786797121167183, -0.026877453550696373, -0.004756403621286154, 0.014835448935627937, 0.03467896208167076, -0.004762695170938969, 0.03566044196486473, -0.013438726775348186, -0.03369748219847679, -0.02418467588722706, -0.007870715111494064, -0.01574143022298813, 0.010683032684028149, 0.010928402654826641, -0.005105583928525448, 0.01275924127548933, 0.0008041373221203685, -0.006543200463056564, -0.0002730920969042927, 0.006310413591563702, -0.015175191685557365, -0.023379359394311905, 0.07076723128557205, -0.02530456893146038, -0.012004256248474121, 0.016345418989658356, 0.0007361100288107991, -0.008021712303161621, -0.016823574900627136, 0.02320319600403309, -0.0036239263135939837, 0.007260435726493597, -0.0024993137922137976, 0.015804346650838852, -0.02889074571430683, -0.012255918234586716, 0.01669774390757084, -0.004372619558125734, -0.0010994464391842484, 0.012262209318578243, -0.023505188524723053, 0.014269210398197174, -0.021064072847366333, 0.0003403329465072602, 0.0021721539087593555, -0.0013251553755253553, -0.016018258407711983, 0.004356890916824341, 0.011633055284619331, 0.016471248120069504, 0.03566044196486473, 0.00036058382829651237, 0.00326216290704906, 0.02275020442903042, 0.009512807242572308, 0.019189193844795227, -0.0037466115318238735, 0.011903591454029083, -0.007864424027502537, -0.07242819666862488, 0.036918751895427704, -0.035484280437231064, -0.03857971727848053, -0.004498450085520744, -0.0110856918618083, -0.004668321926146746, 0.005728445947170258, 0.01903819665312767, -0.000405017810408026, -0.007751176133751869, 0.001972397556528449, 0.00978334341198206, 0.010129377245903015, 0.028613919392228127, -0.025581397116184235, -0.010563493706285954, -0.012878780253231525, 0.010664158500730991, 0.018308378756046295, 0.006278955843299627, 0.015754014253616333, -0.014193711802363396, 0.016634829342365265, -0.008827028796076775, -0.02171839214861393, 0.025078073143959045, -0.010506870225071907, -0.005715863313525915, -0.04484608769416809, 0.0016609663143754005, 0.0038032352458685637, -0.02707878313958645, 0.013413560576736927, -0.008858487010002136, 0.0071597713977098465, -0.017981218174099922, -0.005725300405174494, 0.023278694599866867, 0.025027742609381676, 0.03676775470376015, -0.004095791839063168, -0.040718838572502136, 0.03470413014292717, 0.03573594242334366, 0.0030498234555125237, 0.012878780253231525, -0.027657605707645416, 0.0032904748804867268, 0.0008454255294054747, 0.018182547762989998, 0.003715153783559799, 0.022574041038751602, -0.023291276767849922, -0.0188494510948658, 0.026650959625840187, -0.044544097036123276, -0.012117504142224789, 0.00978334341198206, -0.05053364112973213, 0.022523708641529083, -0.0008721645572222769, -0.011400268413126469, 0.0015367083251476288, 0.0147347841411829, 0.0013188638258725405, 0.0024820121470838785, 0.01173372007906437, -0.029771562665700912, -0.024914493784308434, -0.013828802853822708, -0.008216749876737595, 0.007046523503959179, -0.026298632845282555, -0.018962698057293892, 0.044569261372089386, 0.02042233571410179, -0.02020842209458351, -0.03181001916527748, 0.0120797548443079, -0.020598499104380608, 0.029696064069867134, 0.02363101951777935, 0.012155253440141678, -0.0032196950633078814, 0.020384585484862328, -0.015565266832709312, 0.040794339030981064, -0.000849357747938484, -0.0019016176229342818, 0.012608244083821774, 0.03888171166181564, -0.0010231614578515291, 0.0167229101061821, 0.0342511385679245, 0.034402135759592056, -0.03656642511487007, -0.013627473264932632, -0.011526099406182766, -0.0161944217979908, 0.018862033262848854, 0.03173452243208885, -0.017918303608894348, 0.01068932469934225, 0.010771114379167557, -0.016760660335421562, 0.0023813475854694843, -0.02275020442903042, 0.008506160229444504, -0.01710040308535099, 0.01906336285173893, -0.008304831571877003, 0.0027855788357555866, -0.03470413014292717, -0.02705361694097519, -0.01640833355486393, 0.025002576410770416, 0.030627211555838585, 0.01959185302257538, 0.021303150802850723, -0.02389526553452015, -0.01132476981729269, 0.01468445174396038, -0.00385671341791749, -0.0028249009046703577, -0.007732301484793425, -0.018924949690699577, 0.04343678429722786, -0.04280763119459152, 0.005829110741615295, 0.005467347335070372, 0.018698453903198242, -0.016521580517292023, 0.0043254331685602665, 0.006669031456112862, 0.0007998119108378887, -0.02142898179590702, 0.013451309874653816, -0.008908819407224655, -0.029293404892086983, -0.004338016267865896, 0.012299958616495132, 0.014596370048820972, -0.018711036071181297, 0.0072038122452795506, -0.014155962504446507, -0.0004474857123568654, 0.02015809156000614, 0.007820382714271545, 0.0011717991437762976, 0.000288034527329728, -0.0193779394030571, -0.006071335170418024, 0.03183518722653389, 0.03125636652112007, 0.05642252042889595, 0.058637142181396484, -0.018383877351880074, -0.0031913830898702145, 0.03379814699292183, -0.025946306064724922, 0.01007904578000307, 0.003891316708177328, -0.0027258091140538454, -0.024272756651043892, -0.01243837270885706, -0.02790926583111286, 0.00979592651128769, -0.005372974090278149, -0.02597147226333618, -0.011966506950557232, 0.020862743258476257, -0.007921047508716583, 0.007461765315383673, -0.024448920041322708, -0.008795571513473988, 0.0014627828495576978, 0.03221267834305763, 0.0074743484146893024, -0.008801862597465515, 0.031080201268196106, 0.03845388442277908, -0.023215778172016144, -0.054761555045843124, 0.0016043423675000668, 0.003015219932422042, -0.031558360904455185, 0.014130796305835247, 0.0024678560439497232, -0.010959860868752003, 0.003199247643351555, -0.006782278884202242, 0.011557556688785553, 0.004831901751458645, -0.018333544954657555, -0.004180727526545525, -0.021542228758335114, -0.006568366661667824, -0.01205458864569664, -0.0035169702023267746, -0.038277722895145416, -0.026676125824451447, -0.01304865162819624, -0.030702710151672363, -3.935283984901616e-06, 0.014093047007918358, 6.301369285210967e-05, -0.006212894804775715, 0.02889074571430683, 0.017641475424170494, 0.009802217595279217, 0.02126540057361126, 0.007832965813577175, -0.018283212557435036, 0.013350646011531353, -0.028639085590839386, -0.012935403734445572, 0.008248207159340382, -0.025719810277223587, 0.04190164804458618, 0.00926743634045124, -0.00154142698738724, 0.04288312792778015, 0.03943536430597305, -0.019906429573893547, 0.00800283718854189, 0.008600533939898014, 0.02790926583111286, -0.006061897613108158, -0.018547456711530685, 0.026197968050837517, 0.03196101635694504, 0.0056435102596879005, -0.009500224143266678, 0.04092016816139221, -0.01611892320215702, -0.04391494020819664, 0.004350599367171526, 0.00936181005090475, -0.03236367553472519, 0.0002498920657671988, 0.005791361443698406, -0.026801954954862595, -0.0220329686999321, 0.02655029483139515, -0.010720781981945038, 0.03274116665124893, 0.0114191435277462, 0.010513161309063435, -0.007826674729585648, 0.0054642013274133205, -0.002856358652934432, 0.020913075655698776, 0.002614134456962347, 0.030954372137784958, -0.0025166156701743603, 0.033017996698617935, -0.05078530311584473, 0.025166155770421028, -0.020120341330766678, -0.02695295214653015, -0.01469703484326601, -0.01096615195274353, 0.007279310375452042, -0.03618893027305603, -0.010097919963300228, 0.017981218174099922, 0.00464630126953125, 0.03040071576833725, -0.015074526891112328, 0.004278246313333511, 0.012828447856009007, -0.011305895633995533, -0.01541427057236433, -0.01377847045660019, -0.010179709643125534, 0.05395623669028282, -0.00810979399830103, 0.0034477633889764547, -0.00799025408923626, -0.012023130431771278, 0.025820475071668625, -0.010834029875695705, 0.01107310876250267, 0.00770084373652935, 0.03342065587639809, 0.0233667753636837, -0.005435889586806297, 0.008959151804447174, 0.007581304293125868, -0.04157448932528496, 0.01621958799660206, 0.003347098594531417, 0.008933985605835915, -0.011796635575592518, 0.002395503455772996, 0.021441563963890076, 0.023329026997089386, -0.0017962343990802765, -0.014659285545349121, 0.010016130283474922, -0.007877007126808167, -0.004108374938368797, 0.010777406394481659, -0.008965442888438702, 0.010242625139653683, 0.02219654992222786, 0.03998902067542076, 0.0326656699180603, -0.006908109877258539, -0.005580595228821039, 0.01856003887951374, -0.009481349028646946, -0.006643865257501602, 0.026600627228617668, 0.006112230010330677, -0.007260435726493597, 0.0012449382338672876, 0.010186001658439636, 0.023190611973404884, 0.03382331132888794, -0.01593017578125, 0.02891591191291809, 0.004306558519601822, -0.0011891009053215384, 0.014281793497502804, -0.023568104952573776, 0.003954232204705477, -0.018421625718474388, -0.029217906296253204, 0.024411171674728394, -0.00638591218739748, 0.011859551072120667, 0.022272048518061638, 1.4635201296187006e-05, -0.0010915820021182299, -0.032086849212646484, -0.03415047377347946, -0.06457635760307312, 0.0027022159192711115, -0.035383615642786026, -0.04869651049375534, -0.027103949338197708, 0.03377298265695572, 0.006247498095035553, -0.008367747068405151, -0.010110503062605858, 0.024625083431601524, -0.040265850722789764, 0.015527518466114998, 0.0014879489317536354, -0.02745627611875534], [-0.0037736145313829184, 0.0554373525083065, -0.0008743344224058092, 0.03580545634031296, -0.01444439496845007, 0.03863973170518875, 0.023870306089520454, 0.07795552909374237, 0.006234101951122284, -0.028108714148402214, -0.0018250512657687068, -0.01216917484998703, 0.006620889529585838, 0.01998293027281761, 0.016901632770895958, 0.01160362083464861, -0.020802007988095284, -0.019371870905160904, -0.005363017786294222, 0.025378450751304626, 0.009711937978863716, 0.03377726301550865, -0.016238568350672722, -0.0029041555244475603, 0.0009271520539186895, -0.010186484083533287, -0.00967293418943882, 0.03307519480586052, 0.02740664593875408, -0.026886597275733948, 0.03070896491408348, -0.029304830357432365, 0.019826915115118027, -0.015575503930449486, 0.00018892448861151934, -0.06412219256162643, 0.007014177273958921, -0.038041673600673676, 0.026132524013519287, 0.03419330343604088, -0.02272619493305683, 0.025742486119270325, 0.002712386893108487, 0.007072682958096266, 0.0364295169711113, 0.04350220039486885, -0.022427165880799294, -0.027094615623354912, 0.009126881137490273, 0.025014415383338928, 0.0001990817254409194, 0.03401128575205803, -0.04142199829220772, -0.06011780723929405, -0.01847478374838829, -0.010466010309755802, 0.024494364857673645, 0.018994834274053574, -0.027432648465037346, 0.039159782230854034, 0.01145410630851984, -0.029980896040797234, 0.02658756822347641, 0.05372118949890137, 0.03125501796603203, 0.011525613255798817, 0.019085843116044998, 0.0007979520596563816, -0.03952381759881973, 0.008970865979790688, 0.027978701516985893, -0.00817128922790289, 0.03939380496740341, -0.00942591018974781, 0.014834432862699032, -0.008106282912194729, 0.022986220195889473, -0.011558116413652897, 0.020450975745916367, 0.029252825304865837, 0.0006094338605180383, 0.01915084943175316, -0.02258318103849888, -0.007573231123387814, 0.022921213880181313, -0.054761286824941635, -0.07566730678081512, -0.010414005257189274, 0.019189853221178055, 0.0017226663185283542, -0.028056709095835686, -0.017642702907323837, 0.007527727168053389, 0.04742858186364174, -0.019254859536886215, -0.014899439178407192, -0.011395600624382496, -0.020359966903924942, 0.001959939254447818, 0.014912440441548824, -0.014938442967832088, -0.04844267666339874, 0.06703447550535202, 0.03921178728342056, 0.0426701195538044, 0.048208653926849365, -0.01495144423097372, 0.023389259353280067, 0.051640987396240234, 0.008132285438477993, -0.03356924280524254, -0.04204605892300606, 0.004716205410659313, 0.024260342121124268, -0.01341729611158371, -0.004992482252418995, 0.007605734281241894, -0.012468203902244568, 0.02683459222316742, -0.007683741860091686, 0.04100596159696579, -0.04261811450123787, 0.014366387389600277, 0.004569941200315952, -0.03021491877734661, -0.0339592806994915, -0.021114038303494453, 0.028108714148402214, -0.06724249571561813, -0.027666671201586723, -0.03346523270010948, -0.02491040527820587, -0.03583145886659622, 0.02470238506793976, 0.01791572943329811, 0.033361222594976425, -0.049950823187828064, -0.034167300909757614, -0.013976349495351315, 0.0312030129134655, 0.0015357732772827148, 0.019358869642019272, 0.06599437445402145, -0.0047649601474404335, -0.042332086712121964, -0.017187660560011864, -0.023974314332008362, -0.008320803754031658, 0.020060937851667404, -0.006806157063692808, 0.03089098259806633, -0.03923778980970383, 0.04550439491868019, -0.04014787822961807, -0.054085224866867065, 0.026249535381793976, -0.008067279122769833, 0.02302522398531437, -0.016498593613505363, -0.0013748827623203397, -0.03557143360376358, -0.0030796723440289497, 0.032113101333379745, 0.018422778695821762, 0.05886968597769737, 0.03328321501612663, -0.0237272921949625, 0.007865759544074535, -0.04376222565770149, -0.024819396436214447, 0.007150690536946058, -0.0006772841443307698, -0.041526008397340775, 0.03125501796603203, -0.04306015744805336, -0.0029139064718037844, 0.023987315595149994, 0.01798073574900627, -0.058141615241765976, -0.0008857105276547372, -0.0018754311604425311, 0.022193143144249916, -0.022479170933365822, 0.0008881482644937932, 0.010810543783009052, -0.014730422757565975, -0.032919179648160934, 0.022011125460267067, 0.02959085814654827, -0.02054198458790779, -0.07109086215496063, -0.0017470436869189143, -0.05216103792190552, 0.016927635297179222, 0.008255797438323498, 0.0028992800507694483, -0.012910246849060059, 0.012656722217798233, 0.04547839239239693, 0.026730582118034363, 0.018201757222414017, -0.029668865725398064, 0.055385347455739975, 0.02639254927635193, -0.0741591602563858, 0.026509560644626617, -0.02015194669365883, -0.03377726301550865, 0.015406487509608269, 0.008567827753722668, 0.03021491877734661, 0.014847434125840664, 0.007547229062765837, -0.03676754981279373, 0.0031706811860203743, 0.02458537369966507, -0.05548935756087303, 0.05161498486995697, -0.018396776169538498, 0.08596429973840714, -0.037469618022441864, 0.02771867625415325, -0.0018006738973781466, 0.007631736807525158, 0.010459509678184986, 0.041786033660173416, -0.02240116335451603, 0.008177789859473705, 0.03726159781217575, 0.012156173586845398, 0.007885261438786983, -0.006728149950504303, -0.033231209963560104, -0.02696460485458374, -0.009412908926606178, -0.013859338127076626, 0.0008775847381912172, -0.012877743691205978, 0.024052321910858154, 0.008886357769370079, -0.005203752312809229, -0.026912599802017212, -0.007826755754649639, 0.018435779958963394, 0.05049687623977661, -0.023675287142395973, 0.01110957283526659, 0.006955671589821577, -0.03094298765063286, -0.021894114091992378, 0.007222197484225035, 0.06682645529508591, 0.04742858186364174, -0.049144744873046875, -0.03008490614593029, 0.01696663908660412, -0.047948628664016724, 0.018682803958654404, 0.041474003344774246, -0.03219110891222954, 0.03681955486536026, -0.027614666149020195, 0.008587329648435116, 0.002413358073681593, -0.034427326172590256, -0.010056471452116966, -0.018760811537504196, 0.008912360295653343, 0.028758777305483818, -0.01916385069489479, -0.037547625601291656, -0.02179010398685932, 0.03819768875837326, -0.02134806104004383, -0.0042286585085093975, 0.026249535381793976, 0.012364193797111511, 0.016368580982089043, -0.01210416853427887, 0.06282206624746323, -0.05554136261343956, -0.012078166007995605, 0.025482460856437683, 0.01276073232293129, 0.027354640886187553, 0.008717342279851437, 0.0220241267234087, -0.021439069882035255, -0.004004386719316244, 0.0004554502374958247, 0.0027627667877823114, -0.08211593329906464, -0.05244706571102142, 0.019423875957727432, 0.04589443281292915, -0.01635557971894741, 0.0509389191865921, -0.11097871512174606, -0.008067279122769833, 0.023935310542583466, -0.0024588624946773052, 0.019553888589143753, 0.06573434919118881, -0.055697377771139145, -0.044698316603899, 0.02883678488433361, -0.018175754696130753, -0.01573151908814907, 0.01101206336170435, -0.015835529193282127, -0.011649125255644321, 0.0030081653967499733, 0.01778571680188179, -0.029720870777964592, 0.012708727270364761, -0.013157270848751068, 0.000706536986399442, 0.03200909122824669, 0.03265915438532829, -0.007631736807525158, -0.011083570308983326, 0.04077193886041641, 0.002848900156095624, -0.050652891397476196, -0.004014137666672468, -0.009289396926760674, 0.041838038712739944, 0.044698316603899, -0.065162293612957, -0.03169706091284752, 0.02502741664648056, -0.013027258217334747, -0.010375001467764378, -0.002291471231728792, -0.03692356497049332, -0.027432648465037346, 0.037547625601291656, 0.016888631507754326, 0.012078166007995605, 0.011883147992193699, 0.03814568370580673, -0.03676754981279373, 0.011610121466219425, -0.0367155447602272, 0.012780234217643738, -0.032113101333379745, 0.029616860672831535, -0.013196274638175964, -0.021660091355443, -0.03356924280524254, -0.050262853503227234, -0.028186721727252007, -0.012747731059789658, -0.014028354547917843, -0.01086254883557558, 0.015952540561556816, 0.038223691284656525, 0.025417454540729523, 0.006347863003611565, 0.01866980269551277, -0.01603054814040661, 0.03588346391916275, 0.01370332296937704, 0.044022250920534134, 0.018019739538431168, 0.0023125982843339443, -0.055957403033971786, 0.008060778491199017, -0.011889648623764515, -0.0013578186044469476, 0.00929589755833149, -0.05840164050459862, -0.022765198722481728, 0.006146343424916267, -0.03598747402429581, -0.009633930400013924, 0.05772557482123375, 0.00424165977165103, -0.0010262866271659732, -0.03736560791730881, 0.018045742064714432, -0.022310154512524605, -0.03720959275960922, 0.005161498673260212, 0.04150000587105751, 0.015835529193282127, -0.00430666608735919, -0.010134479030966759, -0.057257529348134995, -0.02022995427250862, 0.06172996014356613, -0.03190508112311363, 0.019319865852594376, -0.0018331770552322268, -0.03458334133028984, -0.011779137887060642, 0.00312842708081007, -0.040927954018116, -0.03232112154364586, 0.02627553790807724, 0.019371870905160904, -0.031229015439748764, -0.04532237723469734, -0.022700192406773567, -0.002158208517357707, 0.02228415198624134, -0.02034696564078331, -0.010960058309137821, -0.03900376707315445, 0.015146462246775627, 0.023389259353280067, 0.0015788399614393711, 0.0021955869160592556, 0.03107300028204918, 0.03986185044050217, 0.01898183301091194, -0.03271115943789482, 0.011337094940245152, -0.010934055782854557, -0.034427326172590256, 0.0360654816031456, 0.007742247544229031, -0.004374922718852758, -0.024637378752231598, -0.01535448245704174, 0.030786972492933273, -0.011194081045687199, 0.0007646363228559494, 0.024416357278823853, 0.011584118939936161, 0.02446836233139038, -0.012123670428991318, -0.0034550835844129324, 0.05985778197646141, -0.04909273982048035, -0.004378172568976879, -0.004049891140311956, -0.015042453072965145, 0.006253603845834732, -0.019826915115118027, 0.016329577192664146, 0.024247340857982635, -0.009315399453043938, -0.012344691902399063, 0.01840977743268013, -0.02409132570028305, 0.009419409558176994, -0.04605044797062874, -0.014795429073274136, -0.06412219256162643, 0.008353306911885738, -0.00960792787373066, -0.007157191168516874, -0.017005642876029015, 0.01890382543206215, 0.06708648055791855, 0.007748748175799847, 0.01790272817015648, 0.0003727703879121691, -0.05091291666030884, -0.029876885935664177, -0.0005984640447422862, -0.00490147341042757, 0.007241699378937483, -0.010719534941017628, 0.010940556414425373, 0.01765570417046547, -0.008080280385911465, 0.02764066867530346, 0.0070206779055297375, -0.012260183691978455, -0.006754152476787567, -0.02696460485458374, 0.01045300904661417, -0.008691339753568172, -0.02951285056769848, -0.014353386126458645, -0.02210213430225849, 0.05673747882246971, -0.016693612560629845, -0.005603541154414415, -0.00681915832683444, -0.005255757365375757, 0.012305688112974167, 0.020021934062242508, -0.0426701195538044, 0.01419737096875906, 0.04519236460328102, -0.019124846905469894, -0.009828949347138405, 0.03206109628081322, 0.019631896167993546, 0.022453168407082558, -0.013365291059017181, -0.008249296806752682, 0.03128102049231529, -0.056633468717336655, -0.0020948273595422506, 0.0060033295303583145, 0.02128305472433567, 0.05013284087181091, -0.048208653926849365, -0.013280782848596573, 0.0620419904589653, -0.009822448715567589, -0.03471335396170616, -0.026431553065776825, -0.02584649622440338, -0.00980294682085514, 0.07577131688594818, 0.00932840071618557, 0.025911502540111542, -0.047402579337358475, -0.015237471088767052, 0.0027302636299282312, 0.0068581621162593365, -0.0013375041307881474, 0.013937345705926418, -0.004407425411045551, 0.03525940328836441, -0.01847478374838829, 0.036221496760845184, -0.03921178728342056, -0.011083570308983326, 0.034609343856573105, 0.002844024682417512, -0.024442359805107117, -0.011135575361549854, -0.001567463856190443, 0.032607149332761765, 0.011837643571197987, -0.011837643571197987, -0.0010571646271273494, 0.02284320630133152, 0.014249376021325588, 0.00663389079272747, -0.04966479539871216, 0.003832119982689619, 0.0015178965404629707, -0.009614428505301476, 0.030006898567080498, 0.028862787410616875, -0.014366387389600277, -0.010225487872958183, 0.007748748175799847, -0.02696460485458374, -0.003533091163262725, 0.02578148990869522, -0.00043310431647114456, 0.002432859968394041, 0.006282856687903404, 0.017642702907323837, 0.008476818911731243, -0.0333092175424099, 0.01678462140262127, 0.0013529431307688355, -0.0022020875476300716, -0.006055334582924843, 0.023818301036953926, 0.007118187379091978, -0.028550757095217705, 0.03250313922762871, 0.0006902854074724019, 0.022011125460267067, 0.03281516954302788, -0.00658513605594635, 0.04316416755318642, 0.004979480989277363, -0.03793766349554062, 0.024728387594223022, 0.013794331811368465, -0.0028163969982415438, 0.003134927712380886, 0.03806767612695694, -0.0024783643893897533, 0.019644897431135178, 0.01586153171956539, -0.02047697827219963, 0.01370332296937704, -0.01566651277244091, -0.01210416853427887, 0.004007637035101652, -0.0029285328928381205, 0.005548285786062479, -0.00025271190679632127, -0.0017876726342365146, -0.001007597311399877, 0.025066420435905457, 0.006120340898633003, 0.03676754981279373, -0.005483279470354319, -0.03944581001996994, -0.007761749438941479, 0.011928652413189411, -0.019891921430826187, -0.011343595571815968, 0.06251003593206406, -0.014145365916192532, 0.005811561364680529, 0.014041355811059475, 0.001844553160481155, 0.016641607508063316, 0.029096810147166252, -0.044100258499383926, -0.02665257453918457, 0.0070336791686713696, 0.006903666537255049, 0.003845121245831251, 0.03512939065694809, 0.03629950433969498, -0.0008662086329422891, 0.037105582654476166, 0.04264411702752113, 0.007111686747521162, -0.017135655507445335, 0.04014787822961807, 0.01063502673059702, -0.02253117598593235, 0.04906673729419708, 0.049326762557029724, -0.022518174722790718, 0.010784541256725788, -0.0017226663185283542, 0.015341481193900108, -0.03021491877734661, 0.03874374181032181, -0.025443457067012787, 0.0052980114705860615, 0.01653759740293026, -0.045842427760362625, -0.0020395719911903143, -0.003092673607170582, -0.0024799895472824574, 0.01778571680188179, -0.01535448245704174, -0.007215696852654219, -0.017382679507136345, 0.033491235226392746, 0.04090195149183273, 0.009042372927069664, 0.04462030902504921, -0.003832119982689619, -0.007488723378628492, -0.015705516561865807, 0.01710965298116207, 0.03489537164568901, -0.004696703515946865, 0.018123749643564224, -0.028498752042651176, -0.025625474750995636, -0.001116482773795724, 0.027666671201586723, -0.004348920192569494, -0.006988174747675657, -0.020502980798482895, -0.0197749100625515, 0.03377726301550865, 0.012403197586536407, 0.022544177249073982, 0.013163771480321884, -0.01998293027281761, 0.03601347655057907, 0.03627350181341171, 0.03627350181341171, -0.008197291754186153, -0.006451873108744621, 0.014730422757565975, -0.01073253620415926, -0.000714662775862962, 0.04417826607823372, 0.025365449488162994, -0.012565713375806808, 0.005905820522457361, 0.000568398623727262, 0.018045742064714432, 0.010394503362476826, 0.003815868403762579, -0.010335998609662056, -0.0183577723801136, -0.05574938282370567, 0.011161577887833118, 0.01515946350991726, 0.014379388652741909, 0.020138945430517197, 0.011116073466837406, -0.028940794989466667, 0.02179010398685932, 0.022388162091374397, 0.00282289762981236, -0.017122654244303703, -0.015575503930449486, 0.021166043356060982, 0.03219110891222954, -0.011415102519094944, 0.027874691411852837, -0.005272008944302797, 0.01220167800784111, 0.013085763901472092, 0.0012700601946562529, -0.07629136741161346, 0.0078917620703578, 0.014704420231282711, 0.0015373984351754189, -0.017135655507445335, -0.008502821438014507, -0.002725388156250119, 0.011233084835112095, 0.008593830280005932, 0.06594236940145493, -0.02951285056769848, 0.0008385810069739819, -0.05218704044818878, -0.019254859536886215, -0.008223294280469418, 0.02052898332476616, -0.019995931535959244, 0.02658756822347641, -0.018253762274980545, 0.013911343179643154, 0.001982691464945674, -0.0022004623897373676, 0.005194001365453005, -0.025287441909313202, -0.054761286824941635, 0.00430666608735919, -0.02302522398531437, -0.00830130185931921, 0.03757362812757492, 0.03583145886659622, -0.003799616824835539, 0.028940794989466667, -0.011447605676949024, -0.02384430356323719, 0.04027789086103439, -0.010927555151283741, 0.06620239466428757, -0.003695606952533126, -0.05434524640440941, -0.031489040702581406, -0.03869173675775528, -0.0030682962387800217, -0.046076450496912, -0.005314263049513102, -0.024663381278514862, -0.02172509767115116, -0.021634088829159737, -0.0020948273595422506, -0.03557143360376358, 0.009978463873267174, 0.023363256826996803, -0.029928890988230705, 0.010179983451962471, -0.022700192406773567, 0.026548564434051514, -0.009406408295035362, -0.03876974433660507, 0.03346523270010948, -0.013300284743309021, -0.0006049646763131022, 0.00923089124262333, -0.03143703565001488, 0.028992800042033195, 0.01710965298116207, 0.019202854484319687, -0.010043470188975334, -0.024676382541656494, -0.0014602035516873002, -0.011564617045223713, -0.00709868548437953, 0.019241858273744583, 0.029252825304865837, 0.006039083003997803, 0.0034485829528421164, -0.005974076688289642, 0.01983991637825966, 0.008736844174563885, 0.013326287269592285, -0.043658215552568436, 0.03869173675775528, -0.02821272425353527, 0.03375126048922539, -0.04987281560897827, 0.029616860672831535, -0.026184529066085815, -0.009679434821009636, -0.00024722699890844524, 0.040927954018116, -0.020359966903924942, 0.023974314332008362, -0.034297313541173935, -0.03733960539102554, 0.020333964377641678, 0.00023199115821626037, -0.0002535244857426733, 0.025495462119579315, 0.011980656534433365, 0.0007435093284584582, -0.01798073574900627, 0.007657739333808422, -0.00449193362146616, -0.009068375453352928, 0.021491074934601784, 0.017642702907323837, 0.0059448243118822575, -0.02195912040770054, 0.01946287974715233, -0.03445332869887352, 0.04282613471150398, -0.002284970600157976, 0.004352170508354902, -0.0015341481193900108, 0.010856048204004765, -0.014782427810132504, -0.03182707354426384, -0.006295857951045036, -0.004176653455942869, 0.030370932072401047, -0.03128102049231529, -0.011948153376579285, -0.012656722217798233, -0.02110103704035282, -0.032555144280195236, 0.021920116618275642, -0.006838660221546888, 0.07701943814754486, -0.01696663908660412, 0.035415418446063995, -0.005704300943762064, -0.01640758477151394, 0.003698857268318534, 0.015172464773058891, -0.029044805094599724, -0.06823059171438217, 0.0063186101615428925, 0.008392310701310635, -0.06360214203596115, -0.005389020312577486, 0.01528947614133358, 0.005974076688289642, -0.09979763627052307, -0.0017665455816313624, -0.015367483720183372, 0.004576441831886768, 0.008593830280005932, 0.010817044414579868, -0.013326287269592285, -0.010056471452116966, 0.020880015566945076, 0.021244050934910774, 0.04300815239548683, 0.003091048449277878, -0.03967983275651932, 0.0401998832821846, -3.4102904464816675e-05, 0.015120460651814938, 0.0059903282672166824, -0.016069551929831505, -0.05054888129234314, -0.014366387389600277, -0.02777068130671978, -0.08206392824649811, -0.022323155775666237, -0.004189654719084501, -0.035597436130046844, -0.018552791327238083, 0.012897245585918427, 0.016212565824389458, 0.005057488568127155, 0.07025878131389618, 0.013189774006605148, 0.00991995818912983, 0.01934586837887764, 0.01279323548078537, -0.014613411389291286, -0.0056360443122684956, 0.024689383804798126, 0.0032454384490847588, -0.007202695589512587, -0.007742247544229031, 0.007833256386220455, 0.008795348927378654, 0.005691299680620432, 0.0006468124338425696, -0.005600290838629007, -0.012591715902090073, 0.04763660207390785, -0.049898818135261536, -0.0038938759826123714, 0.010192984715104103, 0.019449878484010696, -0.013066262006759644, -0.016758618876338005, -0.0011075444053858519, -0.03107300028204918, -0.014431393705308437, -0.02227115072309971, 0.023298250511288643, 0.027120618149638176, 0.023064227774739265, 0.02060699090361595, 0.023142235353589058, -0.008749845437705517, 0.010095475241541862, -0.027536658570170403, 0.03575345128774643, -0.032295119017362595, -0.02227115072309971, 0.027692673727869987, 0.016121556982398033, -0.05429324135184288, -0.0009247143170796335, -0.009061874821782112, -0.010784541256725788, -0.0426701195538044, -0.03437532112002373, 0.014522402547299862, -0.01798073574900627, -0.002705886261537671, -0.014392389915883541, -0.0010466011008247733, -0.0039133778773248196, 0.012520208954811096, 0.033543240278959274, 0.02777068130671978, 0.03281516954302788, -0.02678258717060089, -0.016212565824389458, -0.0006508753285743296, 0.0026035013142973185, 0.01790272817015648, -0.025001414120197296, -0.018695805221796036, 0.02359727956354618, -0.007774750702083111, 0.01107706967741251, 0.01983991637825966, 0.004410675726830959, -0.02402631938457489, -0.04087594896554947, 0.03414129838347435, -0.029096810147166252, -0.0308389775454998, 0.02678258717060089, -0.009484415873885155, -0.012955751270055771, -0.022635186091065407, -0.02888878993690014, 0.005434524733573198, -0.026912599802017212, 0.022167140617966652, -0.007085684221237898, 0.03783365339040756, -0.014145365916192532, 0.02140006609261036, -0.008730343542993069, -0.01678462140262127, 0.039107777178287506, -0.00620809942483902, 0.020177949219942093, -0.04355420544743538, -0.01051801536232233, -0.009529920294880867, -0.01866980269551277, -0.027744678780436516, 0.031619053333997726, 0.021296055987477303, -0.022687191143631935, 0.005541785154491663, -0.04475032165646553, -0.0008085155859589577, -0.0015203342773020267, 0.010160481557250023, 0.004745458252727985, 0.030240921303629875, -0.012396696954965591, -0.018201757222414017, 0.03325721248984337, 0.038093678653240204, -0.016550598666071892, 0.0131702721118927, -0.022440167143940926, 0.033101197332143784, 0.024793393909931183, -0.0025368700735270977, -0.037469618022441864, 0.015562502667307854, 0.006247103214263916, 0.024793393909931183, -0.03931579738855362, -0.045530397444963455, 0.010505014099180698, -0.021426068618893623, 0.03564944118261337, 0.03538941591978073, -0.0025027417577803135, 0.0019371870439499617, 0.008294801227748394, 0.01535448245704174, 0.007397714536637068, 0.03936780244112015, -0.026678577065467834, 0.010472510941326618, 0.026808589696884155, 0.028316734358668327, 0.0012985003413632512, 0.010531016625463963, 0.04381423071026802, -0.012195177376270294, -0.03705357760190964, -0.01742168329656124, 0.032113101333379745, 0.009341401979327202, 0.009432410821318626, -0.015315478667616844, -0.01635557971894741, -0.023922309279441833, -0.002722137840464711, 0.0008377684280276299, -0.014795429073274136, 0.03713158518075943, 0.013157270848751068, -0.020763004198670387, 0.0234022606164217, 6.856130494270474e-05, -0.008028275333344936, -0.00867833849042654, 0.005577538628131151, -0.021608086302876472, 0.013098765164613724, 0.019943926483392715, -0.011090070940554142, -0.005639294628053904, -0.009074876084923744, 0.004082394298166037, 0.00757973175495863, -0.02221914567053318, 0.01120708230882883, -0.009373905137181282, -0.014379388652741909, -0.01753869280219078, 0.0021923366002738476, -0.020177949219942093, 0.008015274070203304, 0.019059840589761734, -0.003793116193264723, 0.03239912912249565, 0.03876974433660507, -0.013287283480167389, 0.012227680534124374, -0.005216753575950861, -0.03939380496740341, 0.01011497713625431, 0.003108925186097622, -0.0008442690595984459, 0.00798927154392004, 0.0018803066341206431, -0.024052321910858154, 0.013534306548535824, 0.013911343179643154, -0.0002980131539516151, -0.0023239743895828724, -0.0030406685546040535, 0.005840814206749201, -0.007904763333499432, 0.027874691411852837, 0.008704341016709805, -0.004849468357861042, 0.02483239769935608, 0.037287600338459015, 0.015809526666998863, 0.008567827753722668, -0.0002724169462453574, 0.010446508415043354, -0.002865151735022664, 0.016459589824080467, -0.006962172221392393, 0.01616056077182293, -0.0401998832821846, 0.023389259353280067, 0.06146993488073349, 0.03265915438532829, 0.018006738275289536, -0.0027611416298896074, -0.019111845642328262, -0.014990448020398617, -0.06308209151029587, 0.03887375444173813, -0.0006581885390914977, 0.02821272425353527, 0.028992800042033195, -0.020984025672078133, 0.026054516434669495, -0.021699095144867897, 0.005554786417633295, 0.014977446757256985, 0.0401998832821846, 0.026262536644935608, 0.007657739333808422, -0.02414333075284958, -0.017772715538740158, -0.009042372927069664, -0.005766056943684816, 0.007391213905066252, 0.008788848295807838, -0.00988745503127575, -0.015029451809823513, 0.016810623928904533, 0.0005127370241098106, 0.01840977743268013, 0.015146462246775627, -0.02583349496126175, -0.0031576799228787422, 0.013586311601102352, 0.04935276508331299, -0.0023158486001193523, 0.04217607155442238, -0.028732774779200554, 0.009341401979327202, -0.007046680431813002, -0.0044366782531142235, -0.0034355816897004843, -0.05234305560588837, -0.00908137671649456, -0.016238568350672722, 0.01382033433765173, 0.002688009524717927, 0.009445412084460258, -0.004348920192569494, -0.0023499769158661366, 0.0721309632062912, -0.002154958201572299, 0.03187907859683037, -0.024442359805107117, -0.03502538055181503, 0.007794252596795559, -0.023324253037571907, -0.007800753228366375, -0.026990607380867004, 0.0249624103307724, 0.0057920594699680805, -0.01363831665366888, 0.019397873431444168, 0.009451912716031075, -0.018513787537813187, 0.04519236460328102, 0.008977366611361504, -0.010212486609816551, 0.09137282520532608, -0.010784541256725788, -0.013163771480321884, -0.007202695589512587, 0.02883678488433361, 0.014275378547608852, -0.02028195932507515, 0.0068581621162593365, -0.0343233160674572, 0.011155077256262302, -0.020372968167066574, -0.018045742064714432, -0.04126598685979843, -0.0016503469087183475, -0.0019404373597353697, -0.013261280953884125, -0.0018851821077987552, 0.02407832443714142, -0.04667450860142708, 0.010615524835884571, 0.007631736807525158, -0.013241779059171677, 0.0006309672025963664, -0.0040758936665952206, -0.006669644266366959, -0.015900535508990288, 0.013677320443093777, 0.04100596159696579, -0.0194108746945858, 0.012312188744544983, -0.026106521487236023, -0.028316734358668327, 0.023376258090138435, -0.0020899518858641386, 0.00980294682085514, 0.011941652745008469, -0.02719862572848797, -0.015406487509608269, 0.01035549957305193, -0.014431393705308437, -0.005210252944380045, 0.009321900084614754, -0.011473608203232288, -0.006091088056564331, 0.007241699378937483, 0.011330594308674335, -0.010212486609816551, -0.008632834069430828, 0.031177010387182236, -0.006767153274267912, -0.005483279470354319, 0.023259246721863747, 0.0012074916157871485, 0.005899319890886545, 0.021179044619202614, 0.018500786274671555, 0.017460687085986137, 0.01495144423097372, -0.02396131306886673, -0.0023776046000421047, 0.005194001365453005, 0.0050867414101958275, -0.007995772175490856, -0.00314467865973711, 0.023142235353589058, -0.02433834969997406, -0.008028275333344936, 0.02364928461611271, 0.011070569045841694, -0.004215657245367765, -0.028732774779200554, -0.0062406025826931, 0.002710761735215783, -0.0006358426762744784, 0.013430297374725342, 0.0007382275653071702, 0.03401128575205803, 0.003318570554256439, -0.02158208377659321, 0.0012099293526262045, -0.0063218604773283005, 0.04285213723778725, -0.004313166718930006, 0.025378450751304626, 0.014392389915883541, 0.007534227799624205, 0.017304671928286552, 0.014717421494424343, 0.006221100687980652, 0.028758777305483818, -0.0296428631991148, 0.03658553212881088, -0.010335998609662056, -0.021374063566327095, 0.01223418116569519, 0.005847314838320017, -0.026808589696884155, -0.010101975873112679, -0.003406328847631812, 0.02172509767115116, 0.0014902689727023244, 0.005268758628517389, -0.009269895032048225, -0.009536420926451683, 0.020671997219324112, -0.0028911542613059282, -0.028004704043269157, -0.014353386126458645, 0.01860479637980461, 0.013313286006450653, 0.006994675379246473, 0.003809367772191763, 0.034167300909757614, -0.020671997219324112, -0.010901552625000477, -0.056893493980169296, -0.005509281996637583, -0.06183397024869919, 0.010726035572588444, 0.008489820174872875, -0.012812737375497818, -0.013495303690433502, 0.02090601809322834, -0.030474942177534103, 0.030058903619647026, 0.017954733222723007, -0.024988412857055664, -0.0024604876525700092, 0.01382033433765173, -0.010875550098717213, -0.009120380505919456, 0.04532237723469734, 0.020437974482774734, -0.025976508855819702, -0.017759714275598526, -0.0024621128104627132, 0.0279006939381361, 0.0060098301619291306, -0.01173363346606493, 0.039341799914836884, 0.02834273688495159, -0.015757521614432335, -0.031541045755147934, 0.02102302946150303, 0.0038906256668269634, -0.011902649886906147, 0.003991385456174612, 0.007391213905066252, 0.019566889852285385, 0.021894114091992378, -0.03455733880400658, 0.024364352226257324, -0.010270992293953896, 0.024858400225639343, 0.029980896040797234, 0.00757973175495863, 0.0589216910302639, -0.009861452504992485, -0.009003369137644768, 0.004823465831577778, 0.01952788606286049, -0.002122455043718219, -0.025235436856746674, -0.025365449488162994, 0.02290821261703968, -0.022869208827614784, 0.0006581885390914977, -0.02246616967022419, 0.010440007783472538, 0.008996868506073952, 0.03661153465509415, 0.006949170958250761, -0.016875630244612694, -0.021205047145485878, -0.005821312312036753, -0.016550598666071892, -0.02022995427250862, 0.014769426546990871, 0.019423875957727432, 0.0049372268840670586, 0.013430297374725342, 0.00056758604478091, -0.009835449978709221, 0.020242955535650253, -0.002673383103683591, -0.043034154921770096, -0.022492172196507454, 0.006695646792650223, -0.009822448715567589, 0.0025108675472438335, 0.02179010398685932, 0.005554786417633295, 0.03195708617568016, 0.011727132834494114, -0.037287600338459015, -0.027172623202204704, 0.028108714148402214, -0.006113840267062187, 0.02446836233139038, 0.014496400021016598, 0.015692515298724174, -0.021075034514069557, -0.005574288312345743, -0.01653759740293026, 0.00342583074234426, -0.0085808290168643, 0.005538534838706255, 0.014483398757874966, 0.050392866134643555, -0.005857065785676241, 0.011148576624691486, -0.031801071017980576, 0.030604954808950424, 0.02982488088309765, 0.01734367571771145, -0.009250393137335777, -0.0006045583868399262, -0.0073392088524997234, 0.02683459222316742, -0.02272619493305683, -0.016589602455496788, 0.001867305370979011, -0.021660091355443, -0.006773653905838728, 0.03401128575205803, -0.0001625156874069944, -0.019956927746534348, -0.03632550686597824, 0.004673951305449009, 0.008814850822091103, -0.010934055782854557, 0.032867174595594406, -0.0034323313739150763, -0.05980577692389488, -0.03315320238471031, -0.008047777228057384, 0.002280095126479864, -0.03208709880709648, -0.01395034696906805, 0.005008733831346035, -0.03128102049231529, 0.018994834274053574, 0.013053260743618011, 0.04618046060204506, 0.020580988377332687, 0.027562661096453667, -0.032737161964178085, -0.022310154512524605, -0.026067517697811127, 0.010537517257034779, -0.027796683833003044, 0.036845557391643524, 0.0014983946457505226, -0.006962172221392393, 0.004677201621234417, -0.0016470965929329395, 0.018175754696130753, -0.00141144881490618, -0.020385969430208206, 0.023376258090138435, -0.027094615623354912, -0.03874374181032181, -0.02246616967022419, 0.04906673729419708, 0.05109493434429169, 0.005541785154491663, -0.0004115710034966469, 0.018955830484628677, 0.0002354446187382564, -0.03297118470072746, -0.01104456651955843, 0.003416079794988036, 0.014002352021634579, -0.06490226835012436, 0.04911874234676361, -0.02346726693212986, 0.01117457915097475, 0.034427326172590256, -0.015120460651814938, 0.01363831665366888, -0.012838739901781082, -0.04306015744805336, -0.01008247397840023, 0.024676382541656494, -0.006572134792804718, -0.048702701926231384, -0.04319017007946968, 0.012871243059635162, -0.011909150518476963, -0.004628446884453297, -0.03133302554488182, 0.03466134890913963, -0.011304591782391071, -0.0007768250070512295, 0.0019371870439499617, -0.018955830484628677, -0.003812618087977171, -0.020203951746225357, -0.01004997082054615, 0.017018644139170647, -0.004166902508586645, -0.03700157254934311, 8.532073843525723e-05, 0.023857304826378822, -0.016017546877264977, 0.036481522023677826, 0.020554985851049423, 0.024039320647716522, 0.01916385069489479, -0.01678462140262127, -0.02982488088309765, 0.008457317017018795, -0.028134716674685478, 0.0031918082386255264, -0.013222277164459229, -0.016017546877264977, 0.0025953755248337984, -0.013391293585300446, -0.015042453072965145, 0.009659932926297188, 0.004114897456020117, 0.011785638518631458, 0.018383774906396866, 0.017694707959890366, 0.018396776169538498, -0.02203712798655033, 0.020737001672387123, -0.017824720591306686, 0.019046839326620102, 0.028862787410616875, 0.011941652745008469, -0.029044805094599724, 0.033231209963560104, 0.030968990176916122, 0.037599630653858185, -0.0025027417577803135, -0.019358869642019272, -0.0006248728604987264, -0.012130171060562134, -0.003819118719547987, 0.013144269585609436, -0.024663381278514862, 0.010459509678184986, 0.0027270133141428232, 0.0176687054336071, 0.023194240406155586, -0.04181203618645668, 0.029616860672831535, -0.0013383167097344995, 0.00833380501717329, 0.02022995427250862, 0.04095395654439926, -0.01320277526974678, 0.02359727956354618, 0.01110957283526659, -0.0005850564921274781, 0.0346873514354229, 0.03094298765063286, -0.015211468562483788, 0.04038190096616745, -0.01696663908660412, -0.04064192622900009, 0.000561897992156446, 0.004846218042075634, -0.015315478667616844, -0.04311216250061989, -0.004898223094642162, 0.03926379233598709, 0.004345669876784086, 0.01257871463894844, 0.007937266491353512, 0.031359028071165085, 0.017863724380731583, 0.0035980974789708853, 0.0013935720780864358, -0.04511435702443123, 0.017070649191737175, 0.01051801536232233, -0.035545431077480316, -0.03328321501612663, -0.0036468522157520056, 0.037105582654476166, -0.010257991030812263, 0.025040417909622192, -0.006058584898710251, -0.010674030520021915, 0.004498434253036976, -0.01591353677213192, -0.04943077266216278], [-0.015731116756796837, -0.001384061062708497, -0.0018327673897147179, 0.036266028881073, -0.009449227713048458, -0.0011737300083041191, 0.0029842269141227007, 0.04732532054185867, -0.008334060199558735, -0.045187365263700485, -0.02982577309012413, -0.007674198132008314, 0.04355090856552124, 0.0014871645253151655, 0.0030485636088997126, 0.02993135154247284, -0.011745547875761986, -0.030538424849510193, -0.0019647397566586733, 0.031831756234169006, 0.027133535593748093, 0.01917559653520584, 0.027582241222262383, -0.026711223646998405, -0.0050347489304840565, -0.038272012025117874, -0.045292943716049194, 0.0004961339291185141, 0.052445851266384125, -0.051891569048166275, 0.0014772666618227959, -0.051548440009355545, 0.06519439071416855, -0.04941048473119736, -0.01916239969432354, -0.021828243508934975, -0.015612340532243252, 0.0038140038959681988, 0.0059354607947170734, 0.0012124968925490975, -0.01566513068974018, 0.014332207851111889, 0.015915878117084503, 0.011013100855052471, 0.013019082136452198, 0.022514499723911285, -0.027635030448436737, -0.05305292457342148, 0.0051997145637869835, 0.0015160335460677743, -0.0070869205519557, 0.0669364258646965, -0.030142508447170258, -0.07633286714553833, 0.01983545906841755, -0.034999094903469086, 0.009620791301131248, 0.04207281768321991, 0.028426865115761757, -0.0006466649938374758, 0.03439202159643173, -0.04436913877725601, -0.010274055413901806, 0.029060333967208862, -0.027925370261073112, 0.0351310670375824, -0.016364583745598793, 0.019875051453709602, -0.0442635603249073, -0.02855883724987507, 0.023557081818580627, 0.006291786674410105, 0.08213965594768524, -0.027819791808724403, 0.004477165173739195, 0.023095179349184036, -0.02766142599284649, 0.03697868064045906, 0.002718632575124502, 0.018436551094055176, -0.03571174666285515, -0.02768781967461109, 0.0005311890854500234, -0.02008620649576187, -0.043260570615530014, -0.06445534527301788, -0.09723730385303497, -0.006542534101754427, -0.00020476350618992, 0.06171031668782234, -0.010340041480958462, -0.00467512384057045, 0.041782476007938385, 0.054372649639844894, -0.01929437182843685, -0.07474919408559799, 0.003526963759213686, -0.008202088065445423, 0.02304239012300968, 0.022290145978331566, 0.0018591618863865733, -0.011719153262674809, 0.007522429805248976, -0.007212294265627861, 0.0737462043762207, -0.006882363464683294, 0.011765344068408012, 0.0036820312961935997, 0.002349109621718526, 0.014041868969798088, -0.02937706746160984, -0.041914451867341995, -0.005595631897449493, 0.021128788590431213, -0.010029906406998634, 0.009079704992473125, 0.02630210854113102, 0.011131876148283482, -0.02426973357796669, -0.009686777368187904, 0.020838450640439987, -0.016496555879712105, -0.004529954399913549, -0.012662756256759167, 0.01801423914730549, -0.06756989657878876, 0.009541608393192291, 0.003131046425551176, -0.07121233642101288, -0.030802369117736816, 0.030459241941571236, -0.030538424849510193, -0.003421385772526264, -0.03243882954120636, 0.03779691085219383, 0.03209570050239563, -0.051785990595817566, -0.0277933981269598, -0.013738332316279411, 0.010960311628878117, 0.0181330144405365, -0.028215710073709488, -0.008657393045723438, 0.01826498657464981, -0.029852168634533882, 0.006855968851596117, -0.05038708075881004, -0.010168476961553097, -0.006888961885124445, -0.002901744330301881, -0.015335198491811752, -0.04827552288770676, 0.020138995721936226, -0.012814524583518505, -0.006677805911749601, 0.026922380551695824, -0.0043319957330822945, 0.02813652716577053, -0.007957939058542252, 0.025378301739692688, -0.009337050840258598, -0.0049951570108532906, -0.020152192562818527, -0.02357027865946293, -0.012669355608522892, 0.0060509368777275085, -0.021947018802165985, 0.03874710947275162, -0.023438306525349617, -0.029667407274246216, -0.0385359562933445, -0.0024827318266034126, -0.028506049886345863, 0.06598622351884842, -0.013619557023048401, 0.02256728895008564, 0.035078275948762894, 0.015414382331073284, -0.01722240447998047, 0.016602134332060814, 0.029324278235435486, 0.026381293311715126, 0.029746590182185173, -0.0038733913097530603, 0.02561585232615471, -0.028321288526058197, 0.008538617752492428, 0.019914641976356506, 0.008842154406011105, 0.025087961927056313, -0.020455729216337204, 0.022382527589797974, -0.03581732138991356, 0.026368094608187675, 0.012510987929999828, -0.024665649980306625, 0.0016075894236564636, 0.03394331410527229, -0.002555316546931863, -0.03874710947275162, 0.01858172006905079, 0.016417372971773148, 0.010056301020085812, 0.05980991572141647, -0.1145520880818367, -0.00476750498637557, -0.03061760775744915, -0.034180864691734314, 0.05070381611585617, 5.516035889741033e-05, 0.02768781967461109, -0.025219935923814774, 0.0011159920832142234, 0.045424915850162506, -0.016971657052636147, 0.01804063469171524, -0.04661266878247261, 0.06329398602247238, -0.004559648223221302, 0.05695930868387222, -0.04289104789495468, 0.012953096069395542, -0.0002880711108446121, -0.003616045229136944, 0.02879638783633709, 0.03330984711647034, -0.0011291892733424902, -0.011481603607535362, 0.028294892981648445, -0.07564660906791687, 0.02426973357796669, -0.0020934129133820534, -0.034999094903469086, -0.04460668936371803, 0.005450461991131306, -0.02108919806778431, 0.013170850463211536, -0.030591214075684547, 0.017961449921131134, -0.015704721212387085, 0.0175655335187912, -0.042468734085559845, 0.04392043128609657, -0.012906905263662338, 0.06482486426830292, 0.015968667343258858, -0.005094136577099562, 0.005367979407310486, 0.02745026908814907, -0.04732532054185867, -0.0046949200332164764, 0.015335198491811752, 0.012524185702204704, -0.03993486240506172, -0.038509562611579895, 0.03642439469695091, 0.019479133188724518, -0.04225757718086243, 0.051442861557006836, -0.01520322635769844, 0.04785320907831192, 0.020244574174284935, 0.030881553888320923, 0.031488627195358276, -0.022422119975090027, 0.026961971074342728, 0.018647707998752594, 0.025589458644390106, 0.007799571845680475, 0.04603198915719986, -0.038060855120420456, -0.0009568002424202859, 0.024084972217679024, -0.011488202027976513, -0.031488627195358276, 0.0017766790697351098, 0.007522429805248976, -0.001424477668479085, -0.01468853373080492, 0.027291903272271156, -0.03016890212893486, 0.0010145382257178426, -0.04228397458791733, 0.014503772370517254, 0.017512744292616844, 0.007964537478983402, 0.036899495869874954, 0.042811863124370575, 0.005945358891040087, 0.03726901859045029, 0.02255409210920334, -0.06076011434197426, -0.03605487197637558, -0.031039919704198837, 0.011606977321207523, -0.040093231946229935, 0.007872156798839569, -0.047219742089509964, 0.0022468308452516794, 0.00262295245192945, 0.041914451867341995, 0.021722665056586266, 0.029772983863949776, -0.015810299664735794, -0.012293233536183834, -0.021353142336010933, -0.06989260762929916, 0.009396438486874104, -0.015374790877103806, -0.06271331012248993, 0.006849369965493679, 0.023319531232118607, -0.007311273831874132, -0.06139358505606651, 0.020680082961916924, -0.014543363824486732, 0.00380080658942461, 0.020957225933670998, 0.011507997289299965, -0.03241243213415146, 0.02882278338074684, -0.00584308011457324, 0.008776168338954449, -0.04014601930975914, -0.05305292457342148, -0.01048521138727665, 0.0431285984814167, -0.005793590564280748, -0.07527708262205124, 0.018872059881687164, 0.00958119984716177, -0.04526655003428459, 0.03133026137948036, 0.02156429924070835, 0.02892836183309555, 0.004120839759707451, 0.02131354995071888, -0.04801157861948013, 0.05078299716114998, 0.0029347373638302088, 0.008301067166030407, -0.0634523555636406, -0.0008165795588865876, 0.013579964637756348, -0.03444480895996094, 0.00827467255294323, 0.05701209977269173, 0.02518034353852272, -0.051997143775224686, -0.018106620758771896, 0.013441394083201885, -0.042706284672021866, -0.003926180303096771, 0.006390765774995089, -0.0020554708316922188, -0.008518821559846401, 0.01961110532283783, -0.01892484910786152, -0.015374790877103806, 0.016153428703546524, -0.005707808304578066, 0.01496567577123642, -0.012365818955004215, -0.01065017655491829, 0.06445534527301788, 0.035104673355817795, -0.033072296530008316, 0.024652453139424324, 0.002400249009951949, -0.03038005717098713, 0.010359837673604488, 0.020561307668685913, -0.02119477465748787, -0.010505006648600101, -0.011362828314304352, -0.0021528005599975586, 0.05197075009346008, -0.014503772370517254, -0.0012124968925490975, 0.0243885088711977, -0.00804372038692236, -0.023543884977698326, -0.019677091389894485, -0.016522951424121857, 0.043841246515512466, 0.0021495013497769833, -0.029007544741034508, 0.0340224988758564, 0.0032795153092592955, -0.003526963759213686, 0.03489351645112038, -0.04233676195144653, -0.016390977427363396, 0.028875572606921196, -0.04658627510070801, -0.034655965864658356, -0.01599506102502346, -0.017327982932329178, -0.030644003301858902, 0.04120180010795593, -0.018291382119059563, -0.025681838393211365, -0.014886491931974888, 0.019980628043413162, -0.07332389056682587, 0.05365999788045883, 0.01429261639714241, 0.005691311787813902, -0.03304590284824371, -0.0041670300997793674, 0.03344181925058365, -0.010293850675225258, 0.04355090856552124, 0.006519439164549112, -0.01678689569234848, -0.006206004414707422, 0.03264998272061348, 0.024098169058561325, -0.029218699783086777, -0.011184665374457836, 0.020138995721936226, 0.029746590182185173, -0.01654934510588646, -0.02380782924592495, -0.019188793376088142, 0.04233676195144653, 0.006549132987856865, -0.012392212636768818, -0.016747303307056427, -0.009363445453345776, 0.02359667420387268, -0.00958119984716177, 0.00546695850789547, 0.009455826133489609, -0.0209704227745533, -0.04175608232617378, -0.017420362681150436, 0.023266742005944252, -0.029218699783086777, -0.050307899713516235, -0.01631179451942444, 0.014437786303460598, -0.022092187777161598, -0.04273267835378647, -0.058701347559690475, -0.047562871128320694, -0.014028671197593212, 0.026143742725253105, -0.06709479540586472, 0.02539149858057499, 0.028664415702223778, -0.03750656917691231, -0.02586659975349903, 0.034867122769355774, -0.004632233176380396, -0.00623899744823575, -0.0510469451546669, -0.006661309394985437, 0.07770537585020065, -0.024203747510910034, -0.013131259009242058, -0.012801327742636204, 0.024454494938254356, 0.001444273511879146, 0.035210248082876205, 0.013414999470114708, -0.01723560132086277, -0.001021136878989637, 0.0047048176638782024, 0.010392830707132816, -0.04267989099025726, 0.008202088065445423, -0.016034653410315514, 0.0017733797430992126, -0.001501186634413898, 0.0008512223139405251, -0.03312508389353752, -0.002385402098298073, 0.01563873514533043, -0.008452835492789745, 0.0015721218660473824, -0.006618418265134096, -0.025153949856758118, -0.00621260330080986, 0.011270447634160519, -0.0362924225628376, 0.0005584084428846836, 0.04436913877725601, -0.003870092099532485, -0.0033916919492185116, -0.006644812878221273, 0.018660904839634895, 0.02676401287317276, -0.013975882902741432, -0.009825348854064941, 0.022857628762722015, 0.021471917629241943, -0.014477377757430077, 0.028743600472807884, 0.026460476219654083, -0.01144860964268446, -0.06646132469177246, 0.0046883211471140385, 0.04743089899420738, -0.0023705551866441965, 0.020930830389261246, -0.011864323168992996, -0.02504837140440941, 0.03642439469695091, 0.006888961885124445, 0.011877520941197872, 0.04262709990143776, -0.021353142336010933, -0.016061047092080116, -0.007146308198571205, -0.0030733083840459585, -0.01032684464007616, -0.0015201576752588153, -0.019004032015800476, 0.039961256086826324, -0.030564818531274796, 0.015797102823853493, -0.02734469249844551, -0.02972019650042057, 0.04566246643662453, 0.030907947570085526, -0.003922881092876196, -0.014371800236403942, -0.018344171345233917, 0.048697832971811295, 0.026222925633192062, -0.035553377121686935, -0.027159929275512695, 0.04138655960559845, 0.05796229839324951, -0.026632040739059448, -0.021036408841609955, 0.005486754700541496, 0.030459241941571236, -0.0277933981269598, -0.007350865285843611, -0.02643408253788948, -0.003249821485951543, 0.021247563883662224, 0.0068031796254217625, 0.0144509831443429, 0.00041055804467760026, -0.00020507282170001417, 0.01484690047800541, -0.006229099817574024, -0.007595014292746782, 0.0009139092289842665, 0.023438306525349617, -0.03027448058128357, 0.033283453434705734, -0.04267989099025726, -0.005140326917171478, 0.019782669842243195, 0.02258048579096794, -0.02789897657930851, -0.013447992503643036, 0.042917441576719284, 0.024348916485905647, -0.007667599245905876, 0.028268499299883842, 0.02845326066017151, 0.01850253716111183, -0.0045365528203547, -0.04698219150304794, -0.00906650722026825, 0.023781435564160347, -0.00022620902745984495, 0.006466649938374758, 0.023319531232118607, -0.013401802629232407, -0.010676571168005466, 0.001032684464007616, -0.010834937915205956, 0.016932064667344093, 0.0001311476225964725, -0.008314264006912708, 0.0004903601366095245, 0.002566864248365164, 0.007403654512017965, -0.019663894549012184, 0.016153428703546524, -0.028638022020459175, 0.010135483928024769, 9.779365063877776e-05, 0.03346821293234825, 0.006519439164549112, -0.01929437182843685, 0.03323066234588623, 0.022818036377429962, 0.014239827170968056, -0.02087804116308689, 0.016707712784409523, -0.06281888484954834, -0.010029906406998634, -0.006756989285349846, 0.013566767796874046, 0.011745547875761986, 0.027819791808724403, -0.009838545694947243, 0.004147234372794628, -0.03389052674174309, -0.011884119361639023, -0.030142508447170258, 0.035157460719347, 0.014543363824486732, 0.055164482444524765, 0.03133026137948036, 0.04011962562799454, -0.0340224988758564, -0.02561585232615471, 0.03993486240506172, -0.022501302883028984, -0.05054544657468796, -0.02349109575152397, 0.04626953974366188, -0.005473557393997908, 0.003616045229136944, 0.009455826133489609, 0.016166625544428825, -0.031699784100055695, 0.05260421708226204, -0.018304578959941864, -0.0055791353806853294, -0.03420725837349892, -0.0038239017594605684, -0.013355611823499203, -0.013553570955991745, 0.001646356307901442, -0.0017783287912607193, -0.016496555879712105, -0.021696271374821663, 0.046216752380132675, -0.022659670561552048, 0.011600377969443798, 0.029641011729836464, 0.03201651573181152, 0.007608211599290371, 0.0013972583692520857, -0.026288911700248718, 0.04658627510070801, 0.02961461804807186, -0.026961971074342728, 0.04402600973844528, -0.0027730711735785007, -0.02573462761938572, 0.025127554312348366, 0.001001340919174254, 0.007106716278940439, -0.05263061448931694, -0.02234293520450592, 0.03096073679625988, 0.013725134544074535, 0.048829805105924606, 0.010439020581543446, 0.025312315672636032, -0.005414169747382402, 0.035210248082876205, -0.02882278338074684, 0.03671473637223244, 0.028083737939596176, -0.010161878541111946, 0.029984140768647194, 0.012827722355723381, 0.00799753051251173, 0.057909511029720306, 0.022514499723911285, -0.029007544741034508, 0.029192306101322174, -0.025681838393211365, -0.00878936517983675, -0.016193019226193428, -0.01724880002439022, -0.02119477465748787, -0.005730903707444668, -0.02731829695403576, 0.02277844399213791, -0.0017783287912607193, -0.030327269807457924, 0.008063516579568386, -0.003027118043974042, -0.02462605945765972, 0.03608126938343048, 0.009112698026001453, 0.00827467255294323, 0.02164348214864731, -0.033969707787036896, -0.004935769829899073, 0.03354739770293236, -0.04283825680613518, 0.03676752373576164, -0.023411912843585014, -0.002918240847066045, -0.01536159310489893, -0.01678689569234848, -0.08087271451950073, -0.005255803000181913, 0.014187037944793701, 0.03354739770293236, -0.042020026594400406, 0.0032118794042617083, -0.010755755007266998, -0.01995423436164856, 0.009633989073336124, 0.03587011247873306, 0.0011184664908796549, 0.0005522222490981221, -0.04130737856030464, -0.03133026137948036, 0.012154662981629372, -0.01687927544116974, 0.021511510014533997, 0.022422119975090027, -0.01893804594874382, 0.014873295091092587, -0.039406973868608475, -0.02573462761938572, 0.03420725837349892, -0.035447798669338226, -0.039301395416259766, 0.019650697708129883, -0.038483165204524994, 0.0024431399069726467, -0.0623965747654438, 0.00310630165040493, 0.01778988540172577, 0.022818036377429962, -0.01377792377024889, -0.033626578748226166, 0.010643578134477139, 0.0062818885780870914, 0.04376206547021866, -0.00855841301381588, 0.008861949667334557, -0.03732180967926979, -0.027291903272271156, 0.007595014292746782, -0.021749060600996017, 0.018634509295225143, 0.03367936983704567, 0.01065677497535944, -0.01734117977321148, 0.017077235504984856, -0.011507997289299965, -0.03922221064567566, 0.041333772242069244, 0.005209612660109997, 0.01127704605460167, -0.02289721928536892, 0.003777711419388652, 0.00289019662886858, -0.015322001650929451, 0.0046883211471140385, 0.0038436977192759514, 0.00031590904109179974, -0.007766578812152147, -0.0004004538932349533, -0.012741940096020699, -0.03301950544118881, 0.016153428703546524, 0.03127747029066086, -0.021485114470124245, 0.002563564805313945, -0.03961813077330589, -0.012055682949721813, 0.0008767919498495758, -0.025233132764697075, 0.004886279813945293, 0.002062069484964013, 0.03439202159643173, -0.0007452319259755313, -0.001464894157834351, -0.0017915259813889861, 0.0004656153032556176, -0.021010013297200203, -0.012807926163077354, 0.01401547435671091, -0.007436647545546293, 0.00318878423422575, 0.02199980802834034, 0.0048598856665194035, -0.0017337880562990904, -0.020614096894860268, -0.032148487865924835, 0.028215710073709488, -0.0038568947929888964, 0.0170112494379282, -0.012972892262041569, -0.012062282301485538, -0.04357730224728584, -0.01804063469171524, -0.002047222573310137, -0.007113315165042877, -0.015401184558868408, 0.009125894866883755, 0.00011124864977318794, -0.0036094465758651495, 0.0020356751047074795, 0.005582434590905905, 0.011547589674592018, 0.0363188199698925, -0.009620791301131248, 0.001718941144645214, -0.003398290602490306, -0.03106631524860859, 0.0009295809431932867, -0.024071775376796722, -0.0010780500015243888, -0.04025159776210785, -0.01598186418414116, -0.003304260317236185, -0.0329139307141304, 0.020007023587822914, -0.04431634768843651, -0.027371086180210114, 0.030353663489222527, -0.001367564545944333, -0.04550410062074661, 0.01711682602763176, -0.005285496823489666, 0.027846187353134155, -0.02244851365685463, 0.020587701350450516, 0.028294892981648445, 0.008934535086154938, 0.0013667396269738674, -0.005681414157152176, -0.0215511005371809, -0.0952313169836998, 0.0025520173367112875, 0.028083737939596176, -0.010696367360651493, -0.015467171557247639, -0.003932779189199209, -0.027819791808724403, -0.01631179451942444, -0.026895985007286072, 0.013335815630853176, -0.029456250369548798, -0.005123830400407314, -0.024639256298542023, 0.004843388684093952, -0.014187037944793701, -0.0017370873829349875, -0.029218699783086777, 0.0017700805328786373, 0.022963207215070724, 0.0039459760300815105, -0.007364062592387199, 0.021960215643048286, 0.0249427929520607, -0.0064072622917592525, -0.020706476643681526, -0.02053491398692131, 0.022752050310373306, 0.002893496071919799, -0.029086727648973465, -0.01326982956379652, -0.0032102297991514206, -0.06440255790948868, 0.01224044431000948, 0.026909181848168373, 0.06778105348348618, 0.00583648169413209, 0.06260772794485092, 0.007416851818561554, 0.01508445106446743, 0.011620174162089825, -0.012741940096020699, 0.017895463854074478, 0.01689247414469719, -0.008630998432636261, 0.0041505335830152035, -0.0035665554460138083, 0.007766578812152147, 0.02461286261677742, 0.029060333967208862, -0.012009493075311184, 0.004516757093369961, -0.0328875333070755, -0.004216519650071859, 0.0475892648100853, -0.011996295303106308, -0.0032151788473129272, 0.02017858810722828, 0.02371544949710369, -0.03162059932947159, 0.0023111675400286913, 0.006618418265134096, -0.0623437836766243, -0.04011962562799454, 0.04373566806316376, 0.008545216172933578, 0.027371086180210114, -0.004163730889558792, 0.02618333324790001, -0.02211858332157135, 0.0317525714635849, -0.020218178629875183, -0.01480730902403593, 0.039855681359767914, -0.0043154992163181305, -0.034075286239385605, -0.017961449921131134, -0.02845326066017151, -0.009878138080239296, -0.01904362440109253, 0.016061047092080116, 0.00041303253965452313, -0.03423365205526352, -0.017169615253806114, 0.018977638334035873, -0.01620621606707573, 0.021036408841609955, 0.012794729322195053, 0.025325512513518333, 0.010531401261687279, 0.020046615973114967, 0.048037972301244736, -0.01621941477060318, 0.009765961207449436, -0.03185814991593361, 0.0059354607947170734, 0.02800455316901207, 0.01429261639714241, 0.022712457925081253, 0.0041670300997793674, 0.0027136835269629955, 0.03763854131102562, 0.008307665586471558, 0.027819791808724403, -0.05265700817108154, 0.023741843178868294, -0.0031326960306614637, 0.011468405835330486, -0.017974646762013435, -0.03027448058128357, 0.004586042836308479, -0.0012842569267377257, 0.018687298521399498, 0.004751008003950119, -0.027582241222262383, -0.011435412801802158, -0.03278195485472679, -0.012728743255138397, -0.0018558625597506762, 0.00722549157217145, 0.01599506102502346, 0.00946902297437191, -0.03309869021177292, 0.01687927544116974, -0.00288029876537621, -0.002969380235299468, -0.01769750565290451, 0.01883246935904026, -0.002566864248365164, -0.041914451867341995, 0.03133026137948036, -0.010801944881677628, 0.009897933341562748, 0.04492342099547386, -0.00895433034747839, -0.017077235504984856, -0.01230643130838871, -0.017895463854074478, 0.019413147121667862, 0.00957460142672062, 0.006347874645143747, -0.04737810790538788, 0.019822262227535248, 0.007931544445455074, -0.01631179451942444, 0.0453721284866333, 0.014820505864918232, -0.006321480497717857, -0.0243885088711977, -0.008598005399107933, 0.014147446490824223, 0.043260570615530014, -0.023174362257122993, -0.03948615863919258, 0.0023260144516825676, 0.018792876973748207, -0.015955468639731407, -0.0050182524137198925, -0.007476239465177059, -0.008617800660431385, -0.011870921589434147, 0.02450728416442871, 0.012649559415876865, 0.0001430045231245458, -0.0019465936347842216, -0.007753381505608559, 0.02335912361741066, 0.019452739506959915, 0.030142508447170258, -0.021498311311006546, 0.008875147439539433, 0.005298693664371967, -0.02107599936425686, 0.0043319957330822945, -0.0015110844979062676, 0.012115070596337318, 0.010808543302118778, -0.04355090856552124, -0.025787416845560074, 0.030432846397161484, -0.011534391902387142, -0.0018987535731866956, -0.059598758816719055, -0.017974646762013435, -0.02892836183309555, -0.004668525420129299, 0.010227864608168602, -0.0051931156776845455, 0.016918867826461792, 0.02064049057662487, 0.0027499760035425425, -0.03491991013288498, -0.018410157412290573, -0.0104918098077178, -0.04782681539654732, -0.013883501291275024, 0.00266419374383986, 0.0317261777818203, 0.03394331410527229, 0.02766142599284649, -0.017671111971139908, 0.008406644687056541, 0.004467267543077469, -0.0036589361261576414, 0.014741322956979275, -0.0013873603893443942, -0.03428644314408302, -0.0048367902636528015, -0.015031661838293076, -0.02325354516506195, 0.005526346154510975, -0.006410561967641115, 0.008584807626903057, 0.024005789309740067, 0.035764534026384354, 0.020719675347208977, -0.02562904916703701, 0.022752050310373306, -0.008149298839271069, 0.00414063548669219, 0.005130428820848465, -0.012379015795886517, -0.006192807108163834, 0.007575218565762043, 0.004566246643662453, -0.009798954240977764, 0.022250555455684662, 0.004120839759707451, 0.014094657264649868, 0.02122117020189762, 0.007707191165536642, 0.00017342004866804928, -0.0022831233218312263, 0.013527176342904568, -0.02085164748132229, 0.006206004414707422, 0.00720569584518671, 0.009284261614084244, 0.011606977321207523, 0.01768430881202221, -0.015295607037842274, 0.031356655061244965, 0.0035698546562343836, 0.04959524795413017, -0.019571514800190926, -0.024177351966500282, -0.01860811561346054, 0.013936290517449379, 0.018687298521399498, -0.0023062184918671846, -0.019531922414898872, 0.0049852593801915646, -0.004200023133307695, 0.019941037520766258, -0.03695228695869446, 0.03718983754515648, 0.004341893829405308, -0.008017326705157757, -0.007918346673250198, 0.014582955278456211, 0.022316541522741318, -0.0036820312961935997, -0.03650357946753502, 0.00800412893295288, 0.019703486934304237, 0.005866175517439842, -0.021062802523374557, 0.007542225532233715, 0.0509941540658474, -0.00572430482134223, 0.021458720788359642, 0.0051931156776845455, -0.036793917417526245, -0.013975882902741432, -0.005486754700541496, -0.00969337671995163, -0.014319011010229588, 0.047800421714782715, 0.02359667420387268, 0.0027384283021092415, -0.00838684942573309, 0.040066834539175034, 0.01365914847701788, -0.02676401287317276, -0.01309826597571373, 0.0005699560279026628, 0.014041868969798088, -0.026011770591139793, 0.010452218353748322, -0.007397055625915527, -0.057328831404447556, 0.004922572523355484, -0.03082876466214657, 0.034075286239385605, -0.01984865590929985, -0.02731829695403576, 0.015612340532243252, 0.003889888059347868, 0.036345213651657104, -0.0003808642504736781, 0.021841440349817276, -0.009673580527305603, -0.03235964477062225, -0.03138304874300957, -0.02789897657930851, -0.03436562418937683, -0.013058673590421677, 0.010960311628878117, -0.03006332367658615, 0.021405931562185287, -0.024018986150622368, 0.004239615052938461, 0.013619557023048401, -0.004351791460067034, -0.0015589245595037937, -0.02234293520450592, 0.08213965594768524, -0.03980289027094841, -0.006116922944784164, -0.004724613856524229, 0.0034675761125981808, -0.002461286261677742, -0.05431985855102539, 0.0021445523016154766, -0.012933299876749516, 0.01744675822556019, -0.006763588171452284, 0.02789897657930851, -0.04975361377000809, -0.02969380095601082, 0.00981875043362379, 0.0069681452587246895, -0.0032663182355463505, 0.022527696564793587, -0.031594205647706985, 0.013975882902741432, -0.015282409265637398, -0.005595631897449493, 0.015269212424755096, -0.017486348748207092, -0.02065368928015232, -0.011435412801802158, 0.010511606000363827, 0.01321704126894474, 0.019254781305789948, 0.006321480497717857, -0.009317254647612572, 0.004846688359975815, 0.00969997514039278, 0.017182812094688416, -0.010564394295215607, -0.003510467242449522, -0.012524185702204704, -0.05453101545572281, 0.016285400837659836, -0.03389052674174309, -0.024322522804141045, -0.010755755007266998, -0.007034131791442633, -0.008683787658810616, 0.010076096281409264, 0.019901445135474205, 8.887519652489573e-05, -0.016602134332060814, 0.0031524919904768467, -0.0010318595450371504, -0.01032684464007616, 0.03051203116774559, -0.03560616821050644, -0.010043103247880936, -0.013975882902741432, 0.02050851844251156, 0.0051766191609203815, 0.0020488721784204245, 0.001319724484346807, -0.01837056502699852, 0.015704721212387085, -0.017723899334669113, -0.020812055096030235, 0.010749155655503273, 0.0009345299331471324, 0.006928553804755211, -0.0566953644156456, -0.006229099817574024, 0.005209612660109997, -0.007106716278940439, -0.01310486439615488, 0.03378494828939438, -0.014701730571687222, -0.0026658435817807913, 0.005113932304084301, 0.008472631685435772, 0.02609095349907875, 0.016509752720594406, 0.007562021259218454, -0.05281537398695946, 0.01859491877257824, 0.032834745943546295, 0.01208207756280899, 0.013177448883652687, -0.018779680132865906, -0.027054352685809135, -0.004909375216811895, 0.009370043873786926, 0.008063516579568386, 0.006334677804261446, -0.006466649938374758, -0.034523993730545044, 0.026513265445828438, -0.03370576351881027, -0.005635223817080259, 0.017869070172309875, -0.04442192614078522, 0.023398716002702713, 0.009040112607181072, -0.02688278816640377, 0.001989484764635563, -0.0107689518481493, -0.010709564201533794, 0.009000521153211594, 0.022422119975090027, -0.027714215219020844, -0.011831330135464668, 0.01037963293492794, -0.01263636164367199, 0.005120531190186739, -0.008604603819549084, -0.004958864767104387, 0.027608636766672134, 0.028426865115761757, -0.014187037944793701, -0.01623261161148548, -0.0055461423471570015, -0.015731116756796837, 0.016245808452367783, 0.015836693346500397, 0.009389840066432953, 0.017420362681150436, 0.019188793376088142, 0.009878138080239296, 0.04070030525326729, -0.0038601942360401154, -0.007007737178355455, 0.009825348854064941, 0.04204642400145531, 0.009356847032904625, -0.008235081098973751, 0.02993135154247284, 0.04579443857073784, -0.023953000083565712, -0.02721271850168705, 0.003451079595834017, 0.008083312772214413, 0.029904957860708237, 0.04128098115324974, 0.0022468308452516794, 0.004061452113091946, 0.0175787303596735, -0.041122615337371826, 0.0005815036129206419, -0.02165667898952961, 0.021960215643048286, -0.027503058314323425, 0.001363440416753292, -0.017288390547037125, 0.03267638012766838, -0.04431634768843651, -0.024995582178235054, 0.015744313597679138, 0.03354739770293236, 0.009317254647612572, 0.024441298097372055, 0.023662660270929337, -0.01575751043856144, -0.017869070172309875, 0.014503772370517254, -0.015282409265637398, -0.0001964121183846146, -0.01065017655491829, -0.02855883724987507, 0.031039919704198837, -0.051785990595817566, -0.0037183237727731466, -0.0009254568140022457, 0.020336953923106194, -0.01032684464007616, 0.011996295303106308, -0.0004330346127972007, -0.020323757082223892, -0.01907001994550228, 0.0057441010139882565, -0.0130322789773345, -0.028981149196624756, -0.00337354582734406, 0.02007300965487957, -0.008360454812645912, -0.015625538304448128, -0.01769750565290451, 0.006509541068226099, 0.009713171981275082, 0.02800455316901207, 0.0037315210793167353, 0.0050413478165864944, 0.0034048892557621002, -0.03309869021177292, 0.026473673060536385, 0.00043922080658376217, 0.02358347736299038, 0.03344181925058365, 0.0431022010743618, -0.015625538304448128, -0.022158173844218254, 0.024454494938254356, -0.021590692922472954, 0.02198660932481289, 0.004374886862933636, -0.012438403442502022, -0.030934343114495277, -0.01496567577123642, -0.025351908057928085, 0.0124779948964715, -0.014939281158149242, -0.007350865285843611, -0.01744675822556019, 0.01508445106446743, -0.0013329217908903956, 0.010392830707132816, 0.005146925337612629, 0.01140241976827383, -0.004737811163067818, 0.02473163791000843, -0.0031574408058077097, -0.010834937915205956, 0.05479495972394943, 0.03608126938343048, -0.011488202027976513, -0.05223469436168671, -0.00504464702680707, 0.030195295810699463, -0.02948264591395855, 0.009205078706145287, 0.024441298097372055, -0.025549866259098053, 0.008868549019098282, -0.011534391902387142, 0.0026823400985449553, 0.02087804116308689, -0.0062422966584563255, -0.0023458104114979506, -0.03455038741230965, 0.011026298627257347, -0.01835736818611622, 0.0018096722196787596, -0.05738162249326706, -0.04476505517959595, -0.04867143929004669, -0.021854637190699577, -0.0045233555138111115, 0.007370661478489637, -0.002801115158945322, 0.0026773910503834486, 0.0510733388364315, 0.003526963759213686, 0.015308803878724575, 0.01235921960324049, -0.012906905263662338, -0.002966080792248249, 0.0351838544011116, -0.01048521138727665, -0.02573462761938572, 0.0024464393500238657, -0.013124660588800907, 0.03779691085219383, -0.006849369965493679, 0.013804318383336067, 0.03568534925580025, 0.0011588830966502428, -0.022144977003335953, 0.014926084317266941, 0.013012483716011047, 0.007007737178355455, -0.009251268580555916, -0.0053415847942233086, 0.0017535838996991515, 0.040779486298561096, -0.0041670300997793674, -0.02948264591395855, 0.0362924225628376, 0.0027747207786887884, -0.01971668377518654, -0.007192498538643122, 0.010340041480958462, -0.0144509831443429, 0.011217658407986164, -0.0007811119430698454, -0.017618322744965553, 0.0019713384099304676, 0.02052171528339386, 0.002933087758719921, 0.020112602040171623, 0.028294892981648445, 0.004882980603724718, -0.003559956792742014, 0.006344575434923172, -0.032834745943546295, -0.004302301909774542, 0.017842674627900124, 0.030775975435972214, -0.017090432345867157, 0.037242624908685684, -0.03592289984226227, 0.02086484432220459, -0.0067701865918934345, -0.03505188226699829, -0.010557795874774456, -0.022527696564793587, 0.014332207851111889, -0.05690652132034302, -0.005655019544064999, 0.02924509532749653, 0.002340861363336444, 0.03914302960038185, -0.0074630421586334705, 0.016747303307056427, 0.025233132764697075, -0.010175076313316822, -0.019663894549012184, -0.0005184042965993285, -0.01654934510588646, 0.039644524455070496, -0.0009947423823177814, -0.012108472175896168, -0.02607775665819645, -0.02255409210920334, 0.03539501130580902, -0.009851743467152119, 0.001198474783450365, 0.024111365899443626, 0.029218699783086777, 0.03188454359769821, -0.023636266589164734, 0.008063516579568386, -0.019875051453709602, -0.06139358505606651, 0.00890154205262661, -0.022276949137449265, -0.009231473319232464, -0.003441181732341647, -0.007502633612602949, 0.038958266377449036, 0.03280835226178169, 0.010636979714035988, -0.02178865112364292, 0.04930490627884865, -0.0277933981269598, -0.017182812094688416, 0.00024353040498681366, -0.02177545428276062, 0.008637596853077412, 0.02903393842279911, 0.015058056451380253, 0.007891952060163021, -0.003909683786332607, 0.013447992503643036, 0.012728743255138397, -0.019822262227535248, -0.00895433034747839, 0.02813652716577053, 0.004642130807042122, 0.007918346673250198, -0.00012454899842850864, 0.004008663352578878, 0.0043089003302156925, 0.039063844829797745, 0.004991857800632715, 0.030564818531274796, -0.0012182706268504262, -0.007337668444961309, 0.01835736818611622, -0.004605838563293219, 0.0035731540992856026, 0.00018847316096071154, -0.027740608900785446, 0.03436562418937683, 0.0017420363146811724, 0.005991549231112003, 0.022303344681859016, -0.0062258001416921616, 0.002923189662396908, -0.039538946002721786, -0.03336263447999954, -0.05854297801852226, 0.010848135687410831, -0.02776700258255005, -0.05373918265104294, -0.014886491931974888, 0.02882278338074684, 0.020468926057219505, -0.0006582125788554549, 0.008941133506596088, 0.019228385761380196, -0.01259017176926136, -0.022646471858024597, 0.01008929405361414, -0.0289019662886858], [-0.01013723760843277, -0.0028972753789275885, 0.01663513481616974, 0.0040200501680374146, -0.03954232484102249, 0.0108857536688447, 0.006336580030620098, 0.03618690371513367, -0.0015301033854484558, -0.04645964875817299, -0.040368273854255676, -0.03172161802649498, 0.00601394334807992, -0.028598494827747345, -0.0050299023278057575, -0.004178142175078392, -0.006891514640301466, -0.019835690036416054, -0.023255635052919388, 0.04266544431447983, 0.03985205665230751, 0.03461243957281113, 0.02232644334435463, -0.03572230786085129, 0.018196696415543556, -0.0067495545372366905, -0.021952183917164803, 0.009769432246685028, 0.039723001420497894, -0.06488864123821259, -0.010950281284749508, -0.03907772898674011, 0.04886006563901901, -0.0763486921787262, -0.008962840773165226, -0.026559432968497276, 0.025746388360857964, -0.03641920164227486, 0.009485512040555477, 0.023384690284729004, -0.009724263101816177, 0.028133898973464966, 0.016080200672149658, 0.026301324367523193, 0.007214151322841644, 0.03675474599003792, -0.026133552193641663, -0.013615258038043976, 0.02146177738904953, -0.012053698301315308, -0.01846771128475666, 0.039335835725069046, -0.002477847971022129, -0.07335462421178818, -0.022945905104279518, -0.018803251907229424, 0.014273436740040779, 0.0560096874833107, 0.029759986326098442, -0.01036953553557396, 0.01689324527978897, -0.0571453683078289, -0.015241346322000027, -0.01085349079221487, -0.031102154403924942, 0.022029617801308632, -0.031592562794685364, 0.010466326959431171, -0.03259918838739395, 0.005433198064565659, 0.014854182489216328, -0.013318432494997978, 0.0901317223906517, -0.03257337585091591, 0.008253040723502636, 0.015434928238391876, 0.010350177064538002, 0.04142652079463005, -0.01586080901324749, 0.021345628425478935, -0.011382614262402058, -0.026223890483379364, -0.01317647285759449, -0.04656289517879486, -0.033889733254909515, -0.08878955245018005, -0.08889279514551163, -0.04844709113240242, 0.03840664401650429, 0.03982624411582947, 0.009285476990044117, -0.015589793212711811, 0.024481654167175293, 0.08481467515230179, -0.005546120461076498, -0.038948673754930496, -0.00784651841968298, -0.0471823550760746, 0.023087864741683006, 0.06814081966876984, 0.01104061957448721, -0.016790000721812248, 0.005255748052150011, -0.008504697121679783, 0.0748000368475914, 0.018996834754943848, 0.012427955865859985, -0.022352254018187523, -0.03210877999663353, -0.013770123943686485, -0.04898912087082863, -0.04078124836087227, -0.004800830502063036, 0.008459527976810932, 0.013318432494997978, 0.015615604817867279, 0.029450256377458572, 0.026869164779782295, -0.014376680366694927, -0.03683217614889145, -0.0014994529774412513, -0.01632540486752987, -0.00046137013123370707, -0.04519491642713547, 0.034044597297906876, -0.04423991218209267, -0.012737687677145004, 0.008775711990892887, -0.01808054745197296, -0.0029230862855911255, 0.048963308334350586, -0.015912430360913277, 0.03130864351987839, 0.007407733239233494, 0.016764190047979355, 0.009195138700306416, -0.02872755005955696, -0.05900375545024872, 0.008711184374988079, -0.007485165726393461, 0.03863894194364548, -0.019448526203632355, -0.011763324961066246, 0.013241000473499298, -0.06855379790067673, 0.0013413610868155956, -0.020339002832770348, -0.0052492949180305, 0.02304914779961109, 0.009137064218521118, -0.017796626314520836, -0.023320162668824196, 0.03133445233106613, -0.02996647357940674, -0.005152504425495863, 0.005120240617543459, 0.00763357849791646, 0.023849286139011383, -0.0018454805249348283, 0.012737687677145004, -0.03946489095687866, -0.0003940197639167309, -0.013447487726807594, -0.031205397099256516, 0.016790000721812248, -0.009730715304613113, -0.06927649676799774, 0.02027447521686554, -0.02689497545361519, -0.019629202783107758, -0.024326788261532784, -0.00278112618252635, -0.06065565347671509, 0.044214099645614624, 0.006878609303385019, -0.009724263101816177, -0.0009485511691309512, 0.032005537301301956, 0.012789309024810791, 0.02815970964729786, 0.001276833820156753, 0.007646483834832907, -0.01266025472432375, 0.004904074128717184, 0.007691652979701757, -0.014118571765720844, 0.0001244166778633371, 0.006139771547168493, -0.021952183917164803, 0.017641762271523476, -0.011369708925485611, 0.04553045704960823, -0.03510284796357155, 0.053841572254896164, 0.01666094735264778, -0.0034554365556687117, 0.0034005881752818823, 0.01569303683936596, 0.011640723794698715, -0.033967167139053345, 0.017473990097641945, 0.018261224031448364, 0.012363429181277752, 0.030895667150616646, -0.09715229272842407, -0.007936856709420681, -0.02217157743871212, -0.009350004605948925, 0.02161664329469204, -0.01948724128305912, 0.036264337599277496, -0.00899510458111763, 0.010201764293015003, 0.032392699271440506, -0.04245895892381668, 0.02058420516550541, -0.037761371582746506, 0.08254331350326538, 0.02232644334435463, 0.051879942417144775, -0.014467018656432629, -0.009917845018208027, -0.004207179415971041, 0.0020503546111285686, -0.006255920976400375, 0.05719698965549469, 0.02319110929965973, -0.013202283531427383, 0.04893749579787254, -0.06075889617204666, 0.019680824130773544, -0.013460393063724041, -0.055493470281362534, -0.026482000946998596, 0.01719007082283497, 0.012085962109267712, 0.01720297522842884, -0.03856150805950165, 0.03177323937416077, -0.022532930597662926, 0.03541257604956627, -0.02604321390390396, 0.02430097758769989, -0.03156675025820732, 0.05087331682443619, 0.005659043323248625, -0.013808839954435825, 0.018725819885730743, 0.04140070825815201, -0.04576275497674942, -0.008943482302129269, -0.008227230049669743, 0.009182233363389969, -0.0464080274105072, -0.03652244806289673, 0.058332670480012894, -0.010679266415536404, -0.030895667150616646, 0.04978925734758377, -0.05074426159262657, 0.03092147782444954, 0.03474149480462074, 0.02800484374165535, 0.028469441458582878, -0.0046588703989982605, 0.013266811147332191, -0.0029827740509063005, 0.010388894006609917, 0.004368497524410486, 0.03311540558934212, -0.0035264163743704557, -0.04418829083442688, 0.00010299160931026563, -0.021255290135741234, -0.024262260645627975, 0.02066163904964924, 0.02761767990887165, 0.001087284879758954, -0.0009179007029160857, 0.034354329109191895, -0.02965674363076687, -0.0017051337053999305, -0.01703520491719246, -0.011182579211890697, -0.003429625416174531, -0.0046233804896473885, 0.018751630559563637, 0.01633830927312374, 0.021823130548000336, 0.01657060906291008, 0.020455151796340942, -0.05533860623836517, -0.007336752954870462, -0.02391381375491619, 0.05358346179127693, -0.0402650311589241, 0.03587717562913895, -0.07025731354951859, 0.023926720023155212, 0.013589447364211082, 0.01657060906291008, 0.016518985852599144, 0.013357149437069893, -0.041865307837724686, -0.016931960359215736, -0.0017454632325097919, -0.08687954396009445, -0.023475028574466705, -0.018803251907229424, -0.03068917989730835, 0.009317740797996521, 0.04460126534104347, 0.002063260180875659, -0.09333227574825287, -0.0216811690479517, -0.02383638173341751, 0.008704731240868568, 0.014479923993349075, 0.037761371582746506, -0.006962494924664497, 0.028779171407222748, -0.007949762046337128, 0.040755435824394226, -0.019358187913894653, -0.03866475448012352, -0.02279103919863701, 0.03327026963233948, -0.008588582277297974, -0.06592108309268951, 0.01404113881289959, -0.00816915463656187, -0.05296400189399719, 0.03954232484102249, 0.02888241596519947, 0.052834946662187576, -0.00021213346917647868, -0.002610128838568926, -0.06530161947011948, 0.04005854204297066, -0.007994931191205978, 0.047621142119169235, -0.05962321534752846, 0.01562850922346115, -0.005075071472674608, -0.026069026440382004, 0.006994758266955614, 0.04922141879796982, 0.01957757957279682, -0.032857295125722885, 0.0021019764244556427, 0.020893936976790428, -0.04031665250658989, -0.02556571364402771, -0.004120067693293095, -0.034044597297906876, -0.00951132271438837, 0.01672547310590744, -0.012640896253287792, -0.03283148631453514, 0.03639339283108711, -0.002493979874998331, 0.010240481235086918, -0.012679612264037132, -0.007943309843540192, 0.04676938056945801, 0.047285597771406174, -0.029708364978432655, 0.06318512558937073, -0.0001709973148535937, -0.03825177997350693, -0.0010816387366503477, 0.01902264542877674, -0.011253559961915016, 0.002290718723088503, -0.019035551697015762, 0.002019704319536686, 0.025449562817811966, 0.004616927821189165, -0.005004091653972864, 0.01069217175245285, 0.010214670561254025, -0.025668956339359283, 0.020313192158937454, -0.01894521340727806, 0.0640626922249794, 0.0318506695330143, -0.009298382326960564, 0.021281100809574127, -0.004955695942044258, -0.0031037626322358847, 0.005300917197018862, -0.03138607367873192, -0.022945905104279518, -0.012969985604286194, -0.031179586425423622, -0.00416201027110219, 0.003910353872925043, -0.05662915110588074, -0.03959394618868828, 0.03474149480462074, -0.018093451857566833, -0.032315269112586975, -0.0045911166816949844, 0.02965674363076687, -0.04168463125824928, 0.06612756848335266, 0.03659987822175026, 0.007962667383253574, -0.015731753781437874, -0.0032779863104224205, 0.038225967437028885, -0.013744313269853592, 0.04888587445020676, -0.011356803588569164, 0.0016107625560835004, -0.032934729009866714, -0.0004859711625613272, -0.010943828150629997, -0.03536095470190048, -0.018480615690350533, 0.015396211296319962, 0.040678005665540695, -0.027359571307897568, 0.0023536330554634333, 0.005181541666388512, 0.03463824838399887, 0.004736303351819515, 0.01595114730298519, -0.0037103192880749702, -0.0039522964507341385, 0.03902610391378403, -0.01578337512910366, -0.017641762271523476, 0.005826814565807581, -0.02634003944694996, -0.031669992953538895, 0.007465807721018791, 0.04054895043373108, -0.026378756389021873, -0.049892500042915344, 0.007027022074908018, 0.03053431399166584, -0.026081930845975876, 0.0028504931833595037, -0.020790692418813705, -0.04132327809929848, -0.0019148474093526602, 0.031102154403924942, -0.0435430146753788, 0.020455151796340942, 0.0040361820720136166, -0.04119422286748886, -0.04416247829794884, 0.0470016784965992, -0.00931128766387701, -0.016235066577792168, -0.05216386169195175, 0.010743794031441212, 0.05941672995686531, 0.01768047735095024, 0.024752669036388397, -0.007381922099739313, 0.01885487511754036, -0.008937030099332333, 0.06592108309268951, 0.0017422368982806802, -0.0025101115461438894, -0.005126693286001682, 0.0066785747185349464, -0.002685948507860303, -0.031050533056259155, 0.04018759727478027, -0.009691999293863773, 0.01036953553557396, 0.01203433983027935, 0.003203779924660921, -0.04021340608596802, -0.04387855902314186, -0.018287034705281258, -0.019693728536367416, -0.013150662183761597, -0.01187947392463684, -0.019693728536367416, -0.010537306778132915, -0.010446968488395214, -0.018816158175468445, 0.0005182347958907485, 0.04385274648666382, -0.013105493038892746, -0.005626779980957508, -0.005513857118785381, 0.02888241596519947, 0.02815970964729786, -0.013318432494997978, 0.012666706927120686, 0.017538517713546753, 0.004403987433761358, -0.03252175450325012, 0.030431071296334267, -0.002981160767376423, -0.041374899446964264, -0.04212341457605362, 0.03747745230793953, 0.0391293503344059, 0.018132168799638748, 0.033012162894010544, -0.016054389998316765, -0.02862430550158024, 0.02999228425323963, 0.005536441691219807, -0.002702080411836505, 0.019977649673819542, -0.005730023607611656, -0.018106358125805855, -0.018003113567829132, -0.024507464841008186, -0.050047367811203, 0.005207352340221405, -0.01037598866969347, 0.03241851180791855, -0.007039927411824465, -0.006142998114228249, -0.020558394491672516, -0.03595460578799248, 0.028753360733389854, 0.04400761425495148, 0.0026472320314496756, -0.03448338434100151, -0.01823541335761547, 0.02849525213241577, 0.04393018037080765, -0.01595114730298519, -0.03745163977146149, 0.03595460578799248, 0.022765228524804115, -0.007678747642785311, -0.005126693286001682, -0.00852405559271574, 0.024804290384054184, -0.02981160767376423, 0.005352539010345936, -0.017654666677117348, -0.0022487761452794075, 0.007278678473085165, -0.011653629131615162, 0.023642798885703087, -0.0010719596175476909, -0.017151353880763054, 0.00414265226572752, 0.013718501664698124, 0.02880498208105564, 0.008633751422166824, 0.023681515827775, -0.028288764879107475, 0.051725078374147415, -0.018170885741710663, -0.007220603991299868, -0.00898865144699812, 0.02556571364402771, -0.009085442870855331, -0.018119262531399727, 0.0552353598177433, 0.038225967437028885, -0.00907898973673582, 0.033889733254909515, 0.011298729106783867, 0.025604428723454475, -0.021642453968524933, -0.0579196959733963, -0.024339694529771805, 0.03621271625161171, -0.016867434605956078, 0.0001389353274134919, 0.026314228773117065, 0.004442703910171986, -0.008446622639894485, 0.009091895073652267, -0.023565366864204407, 0.01964210718870163, -0.0019971197471022606, -0.008614392951130867, 0.011466499418020248, 0.004823415074497461, 0.015809185802936554, -0.019203322008252144, 0.006833440158516169, -0.005923605524003506, -0.017332030460238457, -5.655590030073654e-06, 0.04836965724825859, 0.018261224031448364, -0.013524920679628849, 0.03141188621520996, 0.005978453438729048, -0.01384755689650774, 0.0025859312154352665, 0.014505734667181969, -0.04212341457605362, -0.03308959677815437, 0.011853663250803947, 0.0063914284110069275, 0.03902610391378403, 0.024597803130745888, 0.01060828659683466, -0.0031924876384437084, -0.03236689046025276, -0.014892898499965668, -0.022365158423781395, 0.013834651559591293, 0.014531546272337437, 0.045014239847660065, 0.034999601542949677, 0.02373313717544079, -0.017719194293022156, -0.019138794392347336, 0.029940662905573845, -0.01093092281371355, -0.03461243957281113, -0.026081930845975876, 0.04189111664891243, -0.017848249524831772, 0.025668956339359283, 0.013912083581089973, 0.015757564455270767, -0.02201671153306961, 0.038535699248313904, -0.0015873713418841362, -0.01797730289399624, -0.027901601046323776, -0.003994239494204521, -0.02058420516550541, -0.006672122050076723, 0.008736995048820972, -0.00039926261524669826, -0.005133145954459906, -0.04648546129465103, 0.0437236912548542, -0.02603030949831009, 0.017319124191999435, -0.014428302645683289, 0.01649317517876625, 0.027049841359257698, -0.03432852029800415, -0.030869856476783752, 0.024120301008224487, 0.004616927821189165, -0.013344244100153446, 0.02382347546517849, -0.006859250832349062, -0.027979033067822456, 0.036264337599277496, -0.014738033525645733, 0.02405577339231968, -0.051157236099243164, -0.025759294629096985, 0.012105319648981094, 0.024171924218535423, 0.05735185742378235, 0.006917325779795647, 0.03329608216881752, -0.011492311023175716, 0.01885487511754036, -0.053996436297893524, 0.06106862798333168, -0.00019610246818047017, 0.011247106827795506, 0.03582555055618286, 0.020235758274793625, 0.007562598679214716, 0.048008304089307785, 0.013066776096820831, -0.03825177997350693, 0.013460393063724041, 0.006514030043035746, -0.03590298444032669, -0.028985658660531044, -0.020158326253294945, 0.01340877078473568, -0.033167026937007904, -0.026301324367523193, 0.021719885990023613, 0.0003290891763754189, -0.026236796751618385, 0.0060591124929487705, -0.008414358831942081, -0.016377026215195656, 0.05043452978134155, 0.003991012927144766, 0.008072364144027233, 0.03809691220521927, -0.03370905667543411, -0.010156596079468727, 0.05461589992046356, -0.03252175450325012, 0.022236105054616928, -0.00904027372598648, 0.004755661357194185, -0.01586080901324749, -0.010898659937083721, -0.061275117099285126, 0.002374604344367981, 0.03907772898674011, 0.03228945657610893, -0.021190762519836426, -0.024197734892368317, -0.021500494331121445, 0.03417365252971649, -0.028469441458582878, 0.026288418099284172, -0.012531199492514133, -0.0027327307034283876, -0.04514329135417938, -0.045272346585989, 0.01789987087249756, -0.024830101057887077, 0.032547567039728165, 0.02911471389234066, -0.029166335240006447, 0.018441900610923767, -0.03595460578799248, -0.040368273854255676, 0.06855379790067673, -0.020055081695318222, -0.03556744381785393, 0.01820960082113743, -0.0033618719317018986, 0.0008033647900447249, -0.015241346322000027, -0.0003079161688219756, 0.03820015490055084, 0.04235571250319481, -0.0227265115827322, -0.05394481495022774, 0.0042846123687922955, -0.024713952094316483, 0.015834996476769447, -0.015086480416357517, -0.018248317763209343, -0.05730023607611656, -0.012195657938718796, 0.007272225804626942, -0.027746735140681267, 0.010098520666360855, 0.031437695026397705, -0.0070528327487409115, -0.001044535543769598, 0.012111772783100605, -0.021358532831072807, -0.053325355052948, 0.042588010430336, -0.008143343962728977, 0.010401799343526363, -0.002771447179839015, -0.0038522793911397457, -0.003671602811664343, -0.03037944808602333, 0.009246760979294777, -0.019835690036416054, -0.022210294380784035, 0.01432505901902914, -0.0019632428884506226, -0.020493866875767708, -0.012408598326146603, 0.0033392873592674732, 0.017951492220163345, -0.027178894728422165, 0.02208123914897442, -0.033167026937007904, 0.010801868513226509, 0.0117504196241498, -0.024004152044653893, 0.013241000473499298, -0.0007118166540749371, 0.0124666728079319, 0.011227748356759548, 0.020493866875767708, -0.012389239855110645, 0.004345912951976061, -0.010550212115049362, 0.008666015230119228, 0.009904938749969006, -0.023952530696988106, 0.014196003787219524, 0.014118571765720844, 0.015292967669665813, -0.01744817942380905, -0.012589274905622005, -0.018493521958589554, 0.010059804655611515, 0.0023520197719335556, -0.009950107894837856, -0.009208044037222862, 0.013589447364211082, -0.047930870205163956, 0.003134413156658411, 0.016118917614221573, -0.009356456808745861, -0.022107049822807312, 0.002590770833194256, -0.025062398985028267, -0.010098520666360855, 0.016389932483434677, 0.010866396129131317, 0.03520609065890312, 0.02865011803805828, -0.043284907937049866, -0.01618344523012638, 0.03533514589071274, -0.01180204190313816, -0.011414878070354462, -0.015822092071175575, -0.0028504931833595037, -0.03709028661251068, -0.0004282998852431774, -0.004555626772344112, -0.008969293907284737, 0.018338656052947044, -0.052267104387283325, -0.016467364504933357, 0.02097136899828911, -0.02170698158442974, -0.03141188621520996, -0.01657060906291008, -0.004555626772344112, 0.009137064218521118, 0.004568532109260559, 0.007956215180456638, 0.031102154403924942, -0.014415397308766842, 0.01089220680296421, -0.006891514640301466, -0.0218618456274271, -0.06767622381448746, 0.00485245231539011, 0.034044597297906876, 0.017783721908926964, -0.000932419381570071, -0.010769604705274105, -0.001449444331228733, -0.0015050991205498576, -0.0077755386009812355, 0.006549519952386618, 0.008156249299645424, -0.023178203031420708, -0.010066257789731026, 0.006988305598497391, -0.01602857932448387, -0.019629202783107758, -0.01940980926156044, -0.001615602057427168, 0.0033392873592674732, 0.004952469374984503, 0.00931128766387701, 0.03450919687747955, 0.002639166312292218, -0.025230171158909798, -0.03234107792377472, -0.004242669325321913, 0.018132168799638748, -0.01266025472432375, -0.044678695499897, -0.01626087725162506, 0.0021858620457351208, -0.0408586822450161, 0.017577234655618668, 0.029295390471816063, 0.042097605764865875, -0.010556665249168873, 0.05884889140725136, -0.002590770833194256, 0.016118917614221573, -0.005278332624584436, -0.013447487726807594, 0.008265946060419083, 0.013666880317032337, -0.012692518532276154, -0.021719885990023613, 0.0004464481899049133, -0.005084750708192587, -0.009375815279781818, 0.0042717065662145615, -0.01595114730298519, -0.004462062381207943, -0.038948673754930496, -0.018016019836068153, 0.018428994342684746, -0.02090684324502945, 0.011608459986746311, 0.005136372521519661, 0.02146177738904953, -0.031669992953538895, 0.005642911419272423, 0.013950800523161888, -0.03902610391378403, -0.028056466951966286, 0.02950187772512436, -0.006249468307942152, 0.05149277672171593, 0.007523882202804089, 0.0025310830678790808, 0.005075071472674608, 0.024404222145676613, -0.013963705860078335, -0.000737627618946135, 0.03667731210589409, 0.004365271423012018, -0.06313350051641464, -0.005597742740064859, 0.014467018656432629, -0.025772200897336006, -0.019203322008252144, 0.019706634804606438, 0.025849632918834686, -0.04251058027148247, -0.03685798868536949, 0.029527688398957253, -0.01775791123509407, -0.008059458807110786, 0.010234028100967407, 0.0052976906299591064, 0.02942444570362568, 0.023255635052919388, 0.024339694529771805, -0.029140524566173553, 0.033812299370765686, 0.0007061705691739917, 0.006333353463560343, 0.020455151796340942, -0.004604022018611431, 0.021177856251597404, 0.03352838009595871, -0.004936337936669588, 0.042484767735004425, 0.017486896365880966, 0.004458835814148188, -0.033167026937007904, 0.032702431082725525, -0.012118224985897541, 0.02257164567708969, -0.010743794031441212, -0.020455151796340942, -0.00023733943817205727, 0.002081005135551095, 0.022442592307925224, 0.012415050528943539, -0.013808839954435825, -0.023307258263230324, -0.05007317662239075, -0.021035896614193916, 0.02066163904964924, 0.027488626539707184, -0.006349485367536545, 0.008582130074501038, -0.027049841359257698, 0.03192810341715813, 0.008749900385737419, -0.0035199637059122324, -0.010672814212739468, 0.053376976400613785, -0.01041470468044281, -0.03616109490394592, 0.023023337125778198, -0.023371784016489983, -0.0010340498993173242, 0.0375806950032711, -0.028469441458582878, -0.03770975023508072, 0.017254598438739777, -0.004878262989223003, 0.003971654921770096, 0.014854182489216328, -0.007304489146918058, -0.028830794617533684, 0.03347675874829292, 0.01431215275079012, -0.013834651559591293, 0.050047367811203, 0.01766757294535637, 0.010505042970180511, -0.04751789569854736, 0.00985977053642273, 0.009362909942865372, 0.05265427008271217, -0.011885927058756351, -0.041762061417102814, 0.0320313461124897, 0.023139486089348793, -0.035696499049663544, -0.03141188621520996, 0.009646830148994923, 0.00276176817715168, 0.014699316583573818, 0.003800657344982028, 0.015331684611737728, 0.0025520543567836285, -0.013253905810415745, 0.014647695235908031, 0.023552460595965385, 0.032934729009866714, 0.016273783519864082, -0.004013597499579191, 0.026765920221805573, -0.007678747642785311, -0.007640031166374683, -0.011440688744187355, 0.005120240617543459, 0.00978878978639841, 0.037038665264844894, -0.02754024788737297, -0.021810224279761314, -0.004916979465633631, 0.0060203964821994305, 0.022920094430446625, -0.0678827092051506, -0.04047151654958725, -0.002650458598509431, 0.00045975696411915123, 0.006949589122086763, -0.005710665136575699, 0.018132168799638748, 0.011505216360092163, 0.03368324786424637, -0.03683217614889145, -0.018906496465206146, 0.0034812474623322487, -0.04818898066878319, -0.0033812301699072123, -0.02193927951157093, 0.028598494827747345, -0.013279716484248638, 0.028417818248271942, -0.027514437213540077, -0.007601314689964056, -0.004087803885340691, -0.0029069543816149235, 0.01187947392463684, -0.009543586522340775, -0.04594343155622482, -0.020313192158937454, -0.025772200897336006, -0.01782243698835373, 0.011272917501628399, -0.01663513481616974, -0.013111945241689682, 0.018003113567829132, 0.010827679187059402, 0.044059235602617264, -0.014957426115870476, 0.019784066826105118, 0.01854514330625534, 0.019977649673819542, 0.024507464841008186, -0.02248130738735199, -0.022132860496640205, 0.013086134567856789, 0.013499109074473381, -0.008788617327809334, -0.0031828086357563734, -0.026559432968497276, -0.0031908745877444744, 0.020003460347652435, -0.013034513220191002, 0.007581956684589386, 0.002114881994202733, 0.0117504196241498, -0.016828717663884163, -0.013628164306282997, 0.023307258263230324, 0.004229763988405466, 0.009872675873339176, 0.004455609247088432, -0.003445757320150733, 0.0025423753540962934, 0.02289428375661373, 0.04560789093375206, -0.021590830758213997, -0.006956041790544987, -0.03417365252971649, -0.009104800410568714, 0.00951132271438837, -0.016854528337717056, -0.013795934617519379, -0.0019293660297989845, 0.012647349387407303, 0.01950014755129814, -0.02208123914897442, 0.04418829083442688, -0.023023337125778198, -0.011053524911403656, 0.017228785902261734, 0.0006077664438635111, 0.04906655102968216, -0.022300632670521736, -0.015834996476769447, -0.011298729106783867, 0.02784997969865799, 0.014867087826132774, -0.001797085045836866, 0.010737340897321701, 0.03647082671523094, 0.005217031575739384, -0.004529815632849932, 0.013486203737556934, -0.02612064778804779, -0.008459527976810932, -0.003058593487367034, -0.015976957976818085, -0.04196855053305626, 0.05430616810917854, 0.03590298444032669, -0.03445757180452347, 0.015563982538878918, 0.013757218606770039, 0.005604195408523083, -0.032857295125722885, -0.00528478529304266, -0.0029569631442427635, 0.03525771200656891, 0.0017051337053999305, 0.0029666421469300985, -0.027333760634064674, -0.040910303592681885, 0.02082940936088562, -0.02965674363076687, 0.030043907463550568, -0.019138794392347336, -0.03068917989730835, 0.01666094735264778, -0.01085349079221487, 0.021319817751646042, 0.015202629379928112, 0.039800431579351425, -0.03745163977146149, -0.030095528811216354, -0.022210294380784035, -0.03363162279129028, -0.016699662432074547, 0.014234720729291439, 0.029759986326098442, -0.018248317763209343, 0.012124678120017052, 0.0012203723890706897, 0.006872156634926796, 0.0002944057632703334, 0.011150316335260868, -0.01760304532945156, -0.004058766644448042, 0.07727788388729095, -0.028753360733389854, -0.0053138225339353085, 0.030353637412190437, -0.002898888662457466, 0.011143863201141357, -0.044627074152231216, 0.002174569759517908, 0.003240883117541671, 0.0019051682902500033, -0.004216858651489019, 0.012118224985897541, -0.03850988671183586, -0.01655770279467106, 0.012537652626633644, -0.013395865447819233, -0.027669303119182587, 0.030121339485049248, -0.017022298648953438, 0.021022992208600044, -0.012737687677145004, 0.027591869235038757, 0.025346320122480392, 0.0001021850184770301, -0.015899524092674255, -0.0015526879578828812, 0.0019745351746678352, 0.00609460286796093, 0.018971024081110954, -0.0006618080078624189, -0.001276833820156753, 0.018674198538064957, 0.005362217780202627, 0.009995277039706707, 0.004213632084429264, 0.01084058452397585, -0.0024649426341056824, -0.06623081117868423, 0.01632540486752987, -0.050537776201963425, -0.026210986077785492, 0.004839546978473663, -0.020080892369151115, -0.008582130074501038, -0.014905803836882114, 0.0056364587508141994, 0.026714298874139786, -0.009395173750817776, 0.018351562321186066, 0.008898313157260418, 0.025204360485076904, 0.015757564455270767, -0.031050533056259155, -0.006736649200320244, -0.00998237170279026, 0.0009082216420210898, 0.01199562381953001, 0.012131130322813988, -0.008233682252466679, -0.002895662095397711, -0.0013655588263645768, -0.005804229993373156, -0.0002885579888243228, 0.009124158881604671, 0.0029327652882784605, 0.002661750651896, -0.05440941080451012, -0.024997873231768608, 0.009498417377471924, -0.009324193932116032, -0.0022310311906039715, 0.006639858242124319, -0.008498243987560272, -0.021952183917164803, -0.005675175227224827, 0.03551582247018814, 0.03030201606452465, 0.007433543913066387, -0.0023729910608381033, -0.02604321390390396, 0.03998110815882683, 0.021887656301259995, 0.024571992456912994, 0.02391381375491619, -0.04266544431447983, -0.0001845077204052359, -0.020881030708551407, 0.012686065398156643, -0.01084058452397585, 0.025862539187073708, 0.0016809359658509493, -0.027256328612565994, 0.013053870759904385, -0.026559432968497276, -0.009324193932116032, 0.018674198538064957, -0.03765812888741493, 0.006184940692037344, 0.028056466951966286, -0.0043717240914702415, -0.006320448126643896, 0.001157458289526403, -0.02044224552810192, 0.012356976047158241, 0.004887942224740982, -0.029398633167147636, -0.024559086188673973, -0.009414532221853733, -0.01459607295691967, 0.0013179698726162314, -0.01455735694617033, -0.012098867446184158, 0.03690961003303528, 0.00951132271438837, -0.0021358532831072807, -0.03889705240726471, -0.009330646134912968, -0.018132168799638748, 0.027411192655563354, 0.0017422368982806802, 0.011976265348494053, 0.043672069907188416, 0.02983742021024227, 0.007285131141543388, 0.02983742021024227, -0.019112983718514442, -0.006562425289303064, -0.003240883117541671, 0.04744046553969383, 0.00333283469080925, -0.0064301444217562675, 0.024868817999958992, 0.04707911238074303, -0.03461243957281113, -0.026456190273165703, -0.003800657344982028, -0.009575850330293179, 0.009149969555437565, 0.022378064692020416, -0.009595207870006561, 0.020184136927127838, 0.023320162668824196, 0.00623333640396595, 0.005726797040551901, -0.012434408999979496, 0.0074399965815246105, -0.025578618049621582, 0.008653109893202782, -0.02200380712747574, 0.004381402861326933, -0.02720470540225506, -0.006478540133684874, -0.013989516533911228, 0.046046674251556396, 0.03794204816222191, 0.025307603180408478, 0.01995183899998665, -0.032934729009866714, -0.009053179062902927, 0.007401280105113983, -0.010898659937083721, -0.01384755689650774, -0.0020584205631166697, -0.012853836640715599, 0.033012162894010544, -0.03783880174160004, 0.02865011803805828, 0.03218621388077736, 0.025436658412218094, -0.028133898973464966, 0.0016277008689939976, -0.012434408999979496, -0.0013574928743764758, -0.023642798885703087, 0.011066430248320103, -0.029140524566173553, -0.028340386226773262, -0.017422368749976158, 0.026998218148946762, 0.004087803885340691, -0.02264907956123352, -0.0070657385513186455, -0.010298555716872215, -0.03172161802649498, 0.03226364403963089, 0.002597223501652479, 0.03755488246679306, -0.003539321944117546, -0.00831756740808487, 0.005449329968541861, 0.029630932956933975, 0.014467018656432629, 0.0375806950032711, 0.05394481495022774, -0.01365397498011589, -0.01902264542877674, 0.04325909540057182, 0.0007965087424963713, 0.03138607367873192, 0.01084058452397585, 0.017061015591025352, -0.024094490334391594, -0.020093798637390137, -0.03812272474169731, 0.017783721908926964, -0.011969812214374542, 0.01854514330625534, 0.0016188283916562796, 0.0034522099886089563, -0.019629202783107758, 0.016377026215195656, -0.013989516533911228, -0.01774500496685505, -0.008014289662241936, 0.018958117812871933, -0.0067495545372366905, -0.008007836528122425, 0.03732258453965187, 0.014467018656432629, -0.009950107894837856, -0.0402650311589241, 0.0009550038957968354, -0.003144092159345746, -0.020067987963557243, 0.006646310910582542, 0.0023858966305851936, -0.019525958225131035, 0.0009437116095796227, -0.0033618719317018986, -0.010485684499144554, 0.0004420119512360543, -0.005471914075314999, 0.003237656783312559, -0.022765228524804115, 0.0070657385513186455, -0.017654666677117348, 0.01542202290147543, -0.02515273727476597, -0.02839200757443905, -0.02027447521686554, -0.016673851758241653, 0.011692345142364502, 0.013331338763237, 0.00017543356807436794, 0.0027069197967648506, 0.03654825687408447, 5.261746878204576e-07, -0.0043555921874940395, 0.009259666316211224, -0.007343205623328686, -0.024726858362555504, 0.010311461053788662, -0.0019761482253670692, -0.023539556190371513, 0.015757564455270767, -0.03037944808602333, 0.04914398491382599, -0.00809172261506319, 0.009524228051304817, 0.03781299293041229, 0.03897448256611824, -0.005181541666388512, 0.015370400622487068, 0.003645791905000806, 0.007730369456112385, 0.008743448182940483, 0.0223393477499485, 0.012621537782251835, 0.053996436297893524, -0.010563117451965809, -0.034354329109191895, 0.04852452129125595, -0.0007456935127265751, -0.028211330994963646, -0.008207871578633785, -0.004216858651489019, -0.03961975499987602, -0.0064269183203577995, -0.0009904939215630293, -0.0021858620457351208, -0.024881724268198013, 0.04875682294368744, -0.014144382439553738, 0.014686411246657372, 0.008588582277297974, -0.00763357849791646, -0.020080892369151115, 0.011576196178793907, -0.0032086195424199104, 0.005817135330289602, -0.0023794439621269703, 0.02192637324333191, -0.012847383506596088, 0.016054389998316765, -0.03068917989730835, 0.02823714353144169, -0.007265773136168718, -0.03466406092047691, -0.0013784642796963453, -0.005362217780202627, -0.010730888694524765, -0.022532930597662926, -0.01179558876901865, 0.03115377575159073, 0.005868757143616676, 0.017848249524831772, -0.002639166312292218, 0.03061174787580967, 0.02360408380627632, -0.02208123914897442, -0.016428647562861443, -0.006568878423422575, -0.0033296081237494946, 0.024004152044653893, 0.012085962109267712, -0.015796281397342682, 0.005794550757855177, -0.0077561805956065655, -0.007704558782279491, -0.00453949486836791, 0.032470133155584335, 0.02413320727646351, 0.016441553831100464, 0.02295880950987339, -0.00720124552026391, 0.008853144012391567, 0.011969812214374542, -0.036264337599277496, 0.017628856003284454, -0.00670438539236784, -0.012292449362576008, -0.008666015230119228, -0.012176299467682838, 0.0016648040618747473, 0.01704811118543148, 0.019616296514868736, -0.005555799696594477, -0.00649144547060132, 0.0047072661109268665, -0.014028233475983143, 0.00833047367632389, -0.014002421870827675, 0.0010864782379940152, 0.023978341370821, 0.023552460595965385, 0.027282139286398888, -0.009640377014875412, 0.023242730647325516, 0.011614912189543247, -0.005713891703635454, 0.005784871522337198, 0.026159364730119705, 0.012169847264885902, -0.012795762158930302, -0.0033715509343892336, -0.0033392873592674732, -0.005923605524003506, 0.037038665264844894, -0.0031666767317801714, 0.053531840443611145, -0.008291756734251976, 0.006607594434171915, 0.007427091244608164, 0.007452901918441057, 0.01407985482364893, -0.021048802882432938, -0.021758602932095528, 0.04676938056945801, 0.0038716373965144157, 0.0031118285842239857, 0.010705078020691872, 0.014647695235908031, -0.016622230410575867, -0.036961231380701065, -0.03804529085755348, -0.03881961852312088, -0.012873194180428982, -0.027875790372490883, -0.041762061417102814, -0.027024028822779655, 0.013421676121652126, 0.013434582389891148, -0.009420984424650669, -0.0009445182513445616, 0.001942271483130753, -0.02326854132115841, 0.010350177064538002, -0.00993720255792141, -0.020390624180436134], [-0.025213928893208504, 0.00046226452104747295, 0.016193239018321037, -0.018129387870430946, -0.04042442515492439, 0.025991322472691536, 3.214308526366949e-05, 0.01807071641087532, -0.005738772451877594, -0.02186967246234417, -0.017307991161942482, -0.017762692645192146, 0.04459007829427719, -0.05943388119339943, 0.02637268416583538, 0.026387352496385574, 0.01318634208291769, -0.024480540305376053, -0.03226913511753082, 0.06225009635090828, 0.04400336742401123, 0.02424585446715355, 0.018848108127713203, -0.02213369309902191, 0.009944761171936989, -0.04294728487730026, -0.022471053525805473, -0.0018123886547982693, 0.03426395356655121, -0.06477295607328415, -0.012540959753096104, -0.03878163546323776, 0.03581874072551727, -0.051630616188049316, -0.04992915317416191, -0.028514182195067406, -0.005606762133538723, 0.015709202736616135, 0.005911118816584349, -0.0159145500510931, -0.010868831537663937, -0.003368091071024537, 0.015254500322043896, 0.0056434315629303455, 0.015122490003705025, 0.023321785032749176, -0.022397713735699654, 0.01758667826652527, 0.03065567836165428, 0.023160438984632492, -0.04121648520231247, 0.02461254969239235, 0.0017390496795997024, -0.03998439386487007, -0.02450987510383129, -0.011895576491951942, 0.02206035517156124, 0.07234153151512146, 0.03537870571017265, -0.0034157612826675177, 0.010076770558953285, -0.03508535027503967, 0.0179973766207695, 0.02651936188340187, 0.011184189468622208, 0.01887744478881359, -0.09387385100126266, 0.00751724187284708, -0.03737352788448334, 0.011470210738480091, 0.025771304965019226, -0.003934634383767843, 0.045558150857686996, -0.05541490763425827, -0.004448006860911846, 0.014301094226539135, 0.014418436214327812, 0.040248412638902664, -0.004719361197203398, 0.003780622500926256, -0.038458943367004395, 0.007546577602624893, -0.02475922740995884, -0.02519926056265831, 0.0067655174061656, -0.0925830826163292, -0.0957513228058815, -0.014022406190633774, 0.013318352401256561, 0.04221389815211296, 0.021297629922628403, -0.015107822604477406, 0.03127172589302063, 0.05573759600520134, 0.005357409827411175, -0.008617325685918331, 0.017718689516186714, -0.0332958810031414, 0.009174701757729053, 0.0492250993847847, 0.04197921231389046, -0.0032837511971592903, 0.015973221510648727, -0.035496048629283905, 0.04532346874475479, -0.007051539607346058, -0.004411337431520224, -0.012496955692768097, 0.009116031229496002, -0.02732609026134014, -0.08290234208106995, -0.00030962785240262747, -0.019889522343873978, 0.022280370816588402, 0.007102876901626587, 6.89271473675035e-05, 0.02512592263519764, 0.03226913511753082, -0.019948193803429604, -0.03834160044789314, -0.03273850306868553, -0.017982708290219307, 0.005067721009254456, -0.004987048450857401, 0.018276065587997437, -0.06207408383488655, -0.010377461090683937, -0.004715694114565849, -0.02380582131445408, -0.030127638950943947, 0.05500420928001404, -0.014367098920047283, 0.031066376715898514, -0.051953308284282684, -0.011880909092724323, -0.003952969331294298, -0.04723028093576431, -0.031623754650354385, 0.006175138987600803, 0.006241144146770239, 0.01697063259780407, -0.03540804237127304, 0.014601783826947212, 0.053566765040159225, -0.047640979290008545, 0.02010953798890114, -0.013589706271886826, -0.0007984777330420911, 0.014543112367391586, 0.03405860438942909, -0.055356234312057495, -0.03570139780640602, 0.014007738791406155, -0.036962829530239105, -0.012064256705343723, -0.017601346597075462, 0.01519582886248827, -0.0003857170231640339, -0.014990480616688728, 0.03581874072551727, -0.03361857309937477, -0.021488310769200325, 0.016398588195443153, -0.005313406698405743, 0.01569453440606594, 0.011352868750691414, -0.03687481954693794, 0.02110694907605648, -0.056265637278556824, -0.04385668784379959, 0.005709436722099781, 0.022691069170832634, -0.0519239716231823, 0.04532346874475479, -0.011125518009066582, -0.003571606706827879, 0.00022058979084249586, 0.003061900846660137, -0.010282119736075401, -0.0025081918574869633, 0.017674686387181282, -0.005936787463724613, 0.030420994386076927, -0.032533157616853714, 0.007649251725524664, 0.023820489645004272, -0.033559899777173996, 0.0033754250034689903, -0.025448612868785858, 0.023644475266337395, -0.01719064824283123, 0.03247448429465294, -0.003648612415418029, 0.05588427558541298, 0.02713540941476822, 0.0014420270454138517, 0.0008910681935958564, -0.008631994016468525, 0.028426174074411392, -0.035672061145305634, 0.012291607446968555, 0.04218456149101257, 0.024993911385536194, 0.010648814961314201, -0.09938893467187881, 0.02198701538145542, -0.025976654142141342, -0.009138032793998718, 0.059785906225442886, -0.03907499089837074, 0.05383078381419182, -0.010406795889139175, 0.004715694114565849, 0.031799767166376114, -0.040805790573358536, -0.003971303813159466, -0.04796367138624191, 0.08659862726926804, 0.0423605740070343, 0.052980054169893265, -0.027370093390345573, -0.020094871520996094, 0.018085382878780365, 0.0027703787200152874, 0.004767031408846378, 0.03734419122338295, 0.007073541171848774, -0.03361857309937477, 0.03514402359724045, -0.036816149950027466, -0.004360000137239695, -0.015239832922816277, -0.04758230596780777, -0.027311423793435097, 0.00718721654266119, -0.0022313373629003763, 0.023615140467882156, -0.015753205865621567, 0.03138906881213188, 0.008404643274843693, 0.02494990825653076, -0.04508878290653229, -0.016178570687770844, -0.03350123018026352, 0.02274974063038826, -0.04934244230389595, -0.030450329184532166, 0.03482133150100708, 0.05676434189081192, -0.03822425752878189, 0.011543549597263336, 0.015298503451049328, -0.014792464673519135, -0.06236743927001953, -0.02096026949584484, 0.03229847177863121, -0.006175138987600803, -0.005551758222281933, 0.04696625843644142, -0.04473675787448883, 0.042771272361278534, 0.02176699787378311, 0.015489185228943825, 0.031007705256342888, -0.011653558351099491, -0.00890334788709879, -0.004653356038033962, 0.021972347050905228, -0.004576350096613169, 0.045880842953920364, -0.010113440454006195, -0.04816902056336403, 0.014147082343697548, -0.022779075428843498, -0.004730361979454756, 0.008742001838982105, 0.010436131618916988, -0.00570577010512352, 0.013281682506203651, 0.014946476556360722, -0.03511468693614006, -0.011396871879696846, -0.010194113478064537, -0.01942015253007412, -0.027678117156028748, -0.006398823112249374, -0.03303186222910881, 0.016398588195443153, 0.013978403061628342, 0.013024996966123581, 0.011330867186188698, -0.037549540400505066, -0.015665197744965553, -0.02343912608921528, 0.04596884921193123, -0.02015354111790657, -0.021092280745506287, -0.06976000219583511, 0.017322659492492676, 0.007781262043863535, 0.031007705256342888, 0.02955559454858303, 0.004499344155192375, -0.04693692550063133, -0.027370093390345573, 0.015621195547282696, -0.040659110993146896, -0.016618605703115463, -0.04620353505015373, -0.03247448429465294, 0.027120741084218025, 0.013127670623362064, -0.0318291001021862, -0.05098523572087288, -0.024055173620581627, 0.0010047435062006116, -0.00985675398260355, 0.028191490098834038, 0.017058638855814934, -0.026314012706279755, 0.03866429254412651, 0.00187931046821177, 0.04476609081029892, -0.05315606668591499, -0.05576693266630173, -0.02629934623837471, 0.009666073136031628, -0.03361857309937477, -0.0658877044916153, -0.012342944741249084, 0.009864088147878647, -0.0007911438588052988, -0.00142644252628088, 0.05676434189081192, 0.06606372445821762, 0.035760071128606796, -0.01518116146326065, -0.03813625127077103, 0.05746839568018913, 0.015885215252637863, 0.002478856360539794, -0.010289453901350498, 0.005042052362114191, 0.017219984903931618, -0.03485066816210747, -0.020197546109557152, 0.031359732151031494, 0.03470398858189583, -0.0149391433224082, -0.0024751892779022455, 0.019332146272063255, -0.03141840547323227, -0.02128296159207821, 0.01237961370497942, -0.02757544256746769, 0.017601346597075462, 0.035936083644628525, -0.013597040437161922, -0.03262116387486458, 0.03185843676328659, -0.02076958864927292, 0.007502574007958174, -0.008962019346654415, -0.006321817170828581, 0.013582372106611729, 0.03394126519560814, 0.014968478120863438, 0.03235714137554169, 0.01645725965499878, -0.020564239472150803, 0.01912679709494114, 0.03347189351916313, -0.046467553824186325, 0.0013384356861934066, -0.00043544996879063547, -0.006556501612067223, 0.045147452503442764, 0.0012880151625722647, 0.006424491759389639, 0.016589269042015076, 0.011873574927449226, -0.008624659851193428, 0.04626220464706421, -0.004917376209050417, 0.04975314065814018, 0.00285288505256176, -0.012797646224498749, 0.021385636180639267, -0.011499546468257904, -0.05054520070552826, 0.009321379475295544, -0.020710917189717293, -0.006435492541640997, 0.011807570233941078, -0.03171176090836525, -0.038018908351659775, 0.04013106971979141, -0.004972380585968494, -0.02524326555430889, 0.042448580265045166, -0.007700589019805193, -0.03702149912714958, -0.01569453440606594, 0.021825669333338737, -0.019992196932435036, 0.04523546248674393, 0.03781355917453766, -0.006915862672030926, 0.001669377670623362, 0.004026308190077543, 0.022339042276144028, -0.0457928366959095, 0.039045654237270355, -0.029540926218032837, -0.011308865621685982, -0.016178570687770844, 0.05212932080030441, -0.01437443308532238, -0.011110849678516388, 0.018862776458263397, -0.010832161642611027, 0.04473675787448883, -0.007473238278180361, -0.022984424605965614, -0.024275191128253937, 0.02805948071181774, -0.004301329143345356, 0.04708360135555267, -0.035789404064416885, -0.02625534124672413, -0.030332988128066063, 0.0050860559567809105, 0.02091626636683941, 0.03488000109791756, -0.041568513959646225, -0.028484845533967018, -0.008015946485102177, 0.0179973766207695, -0.03083169274032116, -0.06137003004550934, 0.02052023634314537, 0.010377461090683937, -0.02688605710864067, -0.0030655679292976856, -0.012885652482509613, -0.002315677236765623, 0.031066376715898514, 0.05256935581564903, -0.04027774930000305, 0.01086149737238884, -0.0018655593739822507, -0.025668630376458168, -0.041744526475667953, 0.055356234312057495, 0.007091876119375229, -0.04057110473513603, -0.04998782277107239, -0.02201635204255581, 0.06183939799666405, -0.008089285343885422, 0.007546577602624893, -0.0002839592343661934, -0.010289453901350498, -0.029086224734783173, 0.01846674643456936, -0.01572386920452118, -0.0013540202053263783, -0.0004996215575374663, -0.006717847194522619, -0.015445182099938393, -0.04030708223581314, -0.012555627152323723, -0.03523202985525131, 0.02066691406071186, -0.01033345703035593, -0.004660689737647772, -0.011499546468257904, -0.04476609081029892, -0.03708016872406006, -0.012870985083281994, -0.007495240308344364, -0.004712027031928301, -0.03156508132815361, -0.034909337759017944, 0.011162186972796917, 0.012753642164170742, 0.017293322831392288, 0.04696625843644142, -0.03810691460967064, 0.01269497163593769, -0.040688447654247284, 0.019288143143057823, 0.048403702676296234, -0.017968041822314262, -0.024700555950403214, 0.01785069890320301, -0.0015135324792936444, -0.05468151718378067, 0.03408794105052948, 0.009849419817328453, -0.029496923089027405, -0.05864182114601135, 0.006061463616788387, 0.000939655234105885, 0.0019838183652609587, 0.05424148216843605, -0.03913366049528122, -0.017880035564303398, 0.0401604063808918, -0.01433776319026947, -0.0014896972570568323, 0.047376956790685654, -0.015591859817504883, -0.03793090209364891, -0.022397713735699654, -0.0035569388419389725, -0.035320036113262177, 0.013289016671478748, -0.0494597852230072, 0.01898011937737465, -0.009057359769940376, 0.014359765686094761, -0.018554752692580223, -0.02585931122303009, 0.04265392944216728, 0.04837436601519585, -0.01777736097574234, -0.043211307376623154, -0.011873574927449226, 0.05365477129817009, 0.04315263405442238, -0.03097837045788765, -0.011316198855638504, 0.02980494685471058, 0.03394126519560814, -0.032826513051986694, 0.017146645113825798, -0.03822425752878189, 0.026270009577274323, -0.04253658652305603, 0.015489185228943825, 0.006725181359797716, -0.014205753803253174, -0.0049943821504712105, -0.005427082069218159, 0.015577191486954689, -0.0034267622977495193, -0.025448612868785858, 0.014770463109016418, 0.019874854013323784, 0.051777295768260956, -0.005779108963906765, 0.005214398726820946, 0.0008012279868125916, 0.04027774930000305, -0.018862776458263397, 6.451535591622815e-05, 0.0027245418168604374, 0.0123649463057518, -0.01810005120933056, -0.003864962374791503, 0.015342507511377335, 0.018202725797891617, -0.03614143282175064, 0.034615982323884964, 0.03702149912714958, 0.0062888143584132195, 0.008778671734035015, -0.03605342656373978, -0.004037308972328901, 0.002755710855126381, -0.01503448374569416, -0.0007682254654355347, 0.05720437690615654, -0.006083465646952391, 0.0235124658793211, 0.03347189351916313, -0.030567672103643417, 0.01554785668849945, 0.005606762133538723, 0.002480689901858568, -0.00485503813251853, 0.0007443903014063835, 0.004521345719695091, -0.037578873336315155, 0.021605653688311577, -0.01792403869330883, -0.0007650168845430017, -0.0030123970936983824, 0.041715189814567566, 0.022559059783816338, -0.008859344758093357, 0.014836468733847141, -0.02245638519525528, 0.011389537714421749, -0.02010953798890114, 0.03317853808403015, -0.024128513410687447, -0.023673811927437782, -0.0013329352950677276, -0.008587989956140518, 0.03130106255412102, 0.014917141757905483, 0.02984894998371601, -0.007715256884694099, -0.05130792409181595, -0.004437006078660488, -0.004345332272350788, 0.001856392016634345, 0.011125518009066582, 0.021811002865433693, 0.005900118034332991, -0.0007641001138836145, -0.043064627796411514, -0.007539243437349796, 0.01912679709494114, -0.016471926122903824, -0.028264829888939857, -0.015430513769388199, -0.00375862093642354, -0.015386510640382767, 0.014609117992222309, 0.008991354145109653, 0.061604712158441544, -0.021238958463072777, 0.04224323108792305, -0.010766156949102879, -0.029570262879133224, -0.04532346874475479, -0.010260118171572685, -0.0337945856153965, -0.0041326493956148624, 0.017572011798620224, 0.0017500505782663822, 0.005573759786784649, -0.04045376181602478, 0.02527260035276413, -0.042888615280389786, -0.025844644755125046, 0.016999967396259308, 0.03397059813141823, 0.04297662153840065, 0.0026402019429951906, -0.02735542692244053, 0.03514402359724045, -0.011345534585416317, -0.012555627152323723, 0.030186310410499573, 0.013355021364986897, -0.03464531898498535, 0.04209655523300171, -0.006153137423098087, 0.0011046678991988301, -0.019581498578190804, -0.030626343563199043, 0.0145724480971694, 0.031653087586164474, 0.04535280168056488, 0.019669504836201668, 0.047376956790685654, -0.04635021463036537, -0.020637579262256622, -0.026930060237646103, 0.04585150629281998, 0.009622069075703621, 0.014095745049417019, 0.030450329184532166, -0.006285147741436958, 0.00034652650356292725, 0.04282994195818901, 0.04693692550063133, -0.013978403061628342, -0.0017408832209184766, 0.012350277975201607, -0.003593608271330595, -0.015811877325177193, -0.003639445174485445, -0.0011450042948126793, -0.028792869299650192, -0.01880410499870777, 0.02791280299425125, 0.013362355530261993, -0.03449863940477371, -0.0027135410346090794, 0.0037732888013124466, -0.006061463616788387, 0.04893174394965172, 0.03684548661112785, -0.003204911947250366, 0.02713540941476822, -0.00030023130238987505, -0.017513340339064598, 0.06131135672330856, -0.04620353505015373, 0.024201851338148117, 0.019288143143057823, 0.006010126322507858, -0.017718689516186714, -0.011543549597263336, -0.0541241392493248, 0.012342944741249084, 0.04655556380748749, 0.01810005120933056, -0.030890364199876785, -0.022764408960938454, -0.018862776458263397, 0.0024146847426891327, -0.03840027004480362, 0.0374615341424942, 0.005845113657414913, 0.004220656119287014, -0.03543737903237343, -0.04576350003480911, 0.006310816388577223, -0.05650032311677933, 0.04371001198887825, -0.00019091044669039547, -0.041744526475667953, 0.008448646403849125, -0.008353305980563164, -0.02417251653969288, 0.07245887815952301, 0.011697561480104923, -0.031623754650354385, 0.03558405488729477, -0.004972380585968494, -0.011213524267077446, -0.01404440775513649, -0.00799394492059946, 0.04206721857190132, 0.027018066495656967, 0.004825702402740717, -0.03488000109791756, 0.006197141017764807, 0.0011862574610859156, -0.016193239018321037, -0.021165618672966957, 0.007561245001852512, -0.03614143282175064, -0.00951206125319004, -0.003197578014805913, -0.010582809336483479, -0.007271556183695793, 0.02874886617064476, 0.023893827572464943, 0.01037012692540884, 0.02025621570646763, -0.008477982133626938, -0.038898974657058716, 0.023321785032749176, 0.006538167130202055, 0.014125080779194832, -0.01887744478881359, -0.009900757111608982, -0.005434415768831968, -0.02965826913714409, 0.04033641889691353, -0.003690782468765974, -0.0030875694938004017, -0.013707049190998077, 0.02198701538145542, -0.0063804881647229195, -0.024715224280953407, 0.031770430505275726, 0.026182003319263458, -0.011154853738844395, -0.03373591601848602, -0.032210465520620346, 0.014961144886910915, -0.029320910573005676, -0.026563365012407303, -0.012680303305387497, 0.011946913786232471, 0.025697967037558556, -0.002603532513603568, 0.004528679884970188, 0.00025508200633339584, -0.008397309109568596, -0.001057914225384593, -0.011873574927449226, 0.01333301980048418, -0.01780669577419758, 0.017073307186365128, -0.011492212302982807, 0.0063804881647229195, -0.004290328361093998, -0.023761818185448647, -0.017572011798620224, 0.06060730293393135, 0.0024183515924960375, -0.017322659492492676, -0.017058638855814934, -0.00951206125319004, -0.05482819676399231, 0.014975812286138535, 0.029012886807322502, -0.003547771368175745, -0.057439062744379044, -0.008675997145473957, -0.014205753803253174, -0.00694153131917119, 0.0026053660549223423, 0.03338388726115227, 0.031799767166376114, 0.03605342656373978, -0.000465473101940006, -0.016295913606882095, -0.003802624298259616, -0.04491277039051056, -0.012137595564126968, -0.019068125635385513, 0.017146645113825798, -0.03705083578824997, -0.004477342590689659, 0.007282556965947151, -0.04030708223581314, -0.00971007626503706, -0.05427081882953644, -0.020050866529345512, 0.005269403103739023, -0.009174701757729053, -0.015459849499166012, -0.03262116387486458, -0.01256296131759882, -0.0033974265679717064, 0.002970227273181081, 0.015357174910604954, 0.04197921231389046, -0.001347603159956634, -0.0038869641721248627, 0.008265298791229725, 0.002918889978900552, -0.04596884921193123, 0.013890395872294903, 0.03273850306868553, 0.008301968686282635, 0.006160471122711897, -0.006358486600220203, -0.0056837680749595165, 0.001080832676962018, -0.013523701578378677, 0.006772851571440697, 0.0048513710498809814, -0.021561650559306145, -0.007759260479360819, -0.004770698491483927, -0.014821800403296947, -0.007715256884694099, -0.007678587455302477, 0.0372268483042717, 0.005390412639826536, -0.00038938396028243005, -0.012907654047012329, 0.019449487328529358, -0.006354819517582655, -0.022837746888399124, -0.02695939689874649, -0.01053147204220295, 0.00984208658337593, -0.024084510281682014, -0.021312296390533447, -0.026798050850629807, 0.0057644410990178585, -0.031066376715898514, -0.006006459705531597, 0.018305400386452675, 0.02443653717637062, -0.006101800128817558, 0.05174795910716057, -0.014697124250233173, 0.030186310410499573, 0.004565349314361811, -0.00233217841014266, 0.015401178039610386, -0.003934634383767843, -0.009468058124184608, -0.013105669058859348, -0.012394282035529613, 0.012914988212287426, 0.032533157616853714, 0.040101733058691025, 0.030802356079220772, -0.03006896749138832, -0.0372268483042717, -0.03127172589302063, -0.0036596134305000305, -0.021444307640194893, 0.030597006902098656, 0.03625877574086189, 0.015298503451049328, -0.0035551053006201982, 0.003083902643993497, 0.027971472591161728, -0.03928034007549286, -0.026636704802513123, 0.012174264527857304, -0.004209655337035656, 0.03262116387486458, -0.028396839275956154, -0.005782775580883026, -0.021297629922628403, 0.021561650559306145, -0.016266578808426857, 0.017175979912281036, 0.011154853738844395, 0.0318291001021862, -0.04960646107792854, -0.008433979004621506, -0.019156131893396378, -0.015386510640382767, -0.006820521783083677, 0.018936116248369217, 0.015107822604477406, -0.007986610755324364, 0.006325483787804842, 0.03511468693614006, 0.0015932886162772775, 0.030861027538776398, 0.02081359177827835, -0.0026053660549223423, 0.021268293261528015, 0.019434820860624313, 0.03485066816210747, -0.002370681380853057, 0.030420994386076927, -0.009020689874887466, 0.00886667799204588, -0.0063621532171964645, -0.02348312921822071, 0.025756636634469032, 0.027854131534695625, -0.011140185408294201, 0.005599428433924913, 0.02487657032907009, 0.03664013743400574, -0.039661701768636703, 0.037256184965372086, -0.0187307670712471, -0.0020974937360733747, -0.026460690423846245, -0.027003400027751923, 0.04121648520231247, 0.0210629440844059, 0.006607838906347752, 0.025991322472691536, -0.031154382973909378, 0.0031829101499170065, 0.0038942978717386723, 0.013245013542473316, -3.111175465164706e-05, 0.03684548661112785, 0.00766391959041357, -0.0031810766085982323, -0.003905298886820674, -0.006486829835921526, -0.006787519436329603, -0.008653995580971241, 0.006582170259207487, 0.029247570782899857, 0.0010844996431842446, -0.02754610776901245, 0.027854131534695625, -0.018378740176558495, 0.01865742728114128, 0.006714180577546358, 0.013941733166575432, -0.017909370362758636, -0.007396232336759567, -0.016178570687770844, -0.005064053926616907, -0.0038356268778443336, 0.006387821864336729, -0.01620790734887123, 0.03690415620803833, 0.014433104544878006, -0.019742844626307487, 0.051777295768260956, -0.013010328635573387, 0.004910042509436607, -0.05168928951025009, 0.00733389426022768, 0.024304525926709175, 0.051806628704071045, -0.014931809157133102, -0.012078924104571342, 0.026402020826935768, 0.03804824501276016, -0.0023981835693120956, -0.009240707382559776, 0.0006472161621786654, 0.0016262910794466734, -0.011968915350735188, -0.015899883583188057, 0.010707485489547253, 0.021444307640194893, -0.0008296468295156956, 0.016251910477876663, 0.008162624202668667, 0.027018066495656967, 0.016295913606882095, 0.0049027083441615105, 0.019904188811779022, -0.0016959630884230137, 0.007546577602624893, -0.01917080022394657, 0.015122490003705025, 0.0050163837149739265, 0.028132818639278412, -0.005834112875163555, -0.04042442515492439, 0.01108151488006115, 0.01380972284823656, -0.0004072603187523782, -0.036082759499549866, -0.010641480796039104, -0.013465030118823051, 0.0031737429089844227, 0.021121615543961525, -0.010142776183784008, 0.036405451595783234, 0.030567672103643417, 0.033999934792518616, -0.019581498578190804, 0.015298503451049328, 0.020637579262256622, -0.0457928366959095, 0.007374230772256851, -0.007876602932810783, 0.014345097355544567, 0.015239832922816277, 0.043944694101810455, -0.023219110444188118, -0.00045218042214401066, 0.012130261398851871, -0.015239832922816277, 0.021018940955400467, -0.020490901544690132, -0.020050866529345512, -0.0179973766207695, -0.023497797548770905, -0.014095745049417019, 0.01829073205590248, -0.015606527216732502, -0.002025988418608904, 0.028440842404961586, 0.0034597646445035934, 0.04837436601519585, 0.006109134294092655, 0.009130698628723621, -0.02524326555430889, 0.01219626609236002, -0.005009050015360117, -0.04637954756617546, -0.007432902231812477, 0.005060387309640646, 0.004741362761706114, -0.013105669058859348, -0.01898011937737465, 0.017572011798620224, 0.002981228055432439, 0.025448612868785858, -0.022984424605965614, 0.014799798838794231, -0.02911556139588356, 0.024524543434381485, -0.00752457557246089, -0.016633272171020508, -0.00019847351359203458, 0.0036871153861284256, 0.04018974304199219, 0.0002239129680674523, -0.00784726720303297, 0.040805790573358536, 0.03540804237127304, 0.04086446017026901, 0.0002988562046084553, -0.0161639042198658, -0.04901975020766258, 0.009262708947062492, -0.013157006353139877, -0.0001361354225082323, -0.005573759786784649, -0.046731576323509216, 0.001550201908685267, 0.022427048534154892, -0.03265049681067467, 0.05007583275437355, -0.024275191128253937, -0.0006210891879163682, 0.008631994016468525, -0.0019434820860624313, 0.029159564524888992, -0.008287300355732441, -0.03467465192079544, -0.015738537535071373, 0.01208625826984644, 0.02286708354949951, 0.0274287648499012, 0.0033075863029807806, 0.03925100341439247, -0.01422775536775589, 0.012042255140841007, 0.021737663075327873, -0.020637579262256622, 0.026284677907824516, 0.0080819521099329, -0.017968041822314262, 0.005573759786784649, 0.041568513959646225, 0.03285584598779678, -0.004693692550063133, 0.00855865515768528, 0.02637268416583538, -0.014983146451413631, -0.005771774798631668, -0.009108697064220905, -0.016765283420681953, 0.030010296031832695, -0.007751926314085722, -0.009189370088279247, -0.054153475910425186, -0.034322626888751984, 0.0217963345348835, -0.02918889932334423, 0.026182003319263458, 0.008991354145109653, -0.03546671196818352, 0.03185843676328659, -0.02676871418952942, 0.018056048080325127, -0.015137158334255219, 0.0018591422121971846, -0.01956683024764061, -0.01638391986489296, -0.012159597128629684, -0.03270917013287544, -0.014909807592630386, 0.009636737406253815, 0.028426174074411392, 0.008844676427543163, 0.006604171823710203, -0.0162812452763319, 0.01380972284823656, -0.004657023120671511, -0.012240270152688026, 0.007418234366923571, -0.0013320185244083405, 0.0984501987695694, -0.04435539245605469, -0.014506443403661251, 0.00585978152230382, 0.0017289656680077314, 0.004979714285582304, -0.01927347481250763, 0.01755734346807003, -0.0014915307983756065, -0.011932246387004852, -0.0027483769226819277, 0.007927940227091312, -0.040101733058691025, -0.009189370088279247, -0.001102834357880056, -0.009431388229131699, -0.006164138205349445, 0.021561650559306145, -0.020725585520267487, 0.026856722310185432, -0.00570577010512352, -0.0023285115603357553, 0.019405484199523926, 6.491642852779478e-05, -0.002411017892882228, 0.004642355255782604, -0.013890395872294903, 0.01380972284823656, 0.0028382171876728535, 0.023717815056443214, 0.002739209681749344, 0.004825702402740717, -0.015591859817504883, 0.0015593692660331726, 0.00585978152230382, -0.014345097355544567, 0.0048110345378518105, -0.06453827023506165, 0.0019563164096325636, -0.01653059758245945, -0.021268293261528015, 0.0023046762216836214, -0.04500077664852142, -0.0014456938952207565, -0.027971472591161728, 0.04593951627612114, -0.008301968686282635, -0.02311643585562706, -0.023820489645004272, 0.003872296307235956, 0.018554752692580223, 0.021634988486766815, -0.0024660220369696617, 0.019478823989629745, -0.03435195982456207, -0.03749086707830429, 0.0033259212505072355, -0.011220858432352543, -0.03300252556800842, 0.025683298707008362, -0.0011477544903755188, -0.011536216363310814, -0.027927469462156296, 0.011822237633168697, 0.020021531730890274, -0.007869268767535686, -0.042037881910800934, -0.003417594823986292, -0.009812750853598118, -0.004697359167039394, -0.003707283642143011, 0.018408074975013733, -0.011624222621321678, -0.013391691260039806, -0.033706579357385635, 0.022735072299838066, 0.012137595564126968, 0.015078486874699593, -0.007091876119375229, -0.013919731602072716, 0.015665197744965553, 0.016985299065709114, 0.043592669069767, 0.00952672865241766, -0.003875963157042861, -0.0210629440844059, -0.03731485456228256, -0.004466341808438301, 0.014785131439566612, 0.023233776912093163, 0.001341185998171568, -0.033589236438274384, 0.009724743664264679, -0.03397059813141823, -0.0072312201373279095, 0.03752020373940468, -0.04508878290653229, -0.009402052499353886, -0.009724743664264679, -0.012482288293540478, -0.010949504561722279, 0.004073978401720524, -0.010436131618916988, 0.025947319343686104, 0.010758822783827782, 0.00888868048787117, 0.005526089575141668, -0.013853726908564568, -0.026314012706279755, 0.009350715205073357, -0.019478823989629745, -0.03467465192079544, 0.0421258881688118, 0.007913271896541119, 0.00021875632228329778, -0.022779075428843498, -0.014931809157133102, -0.0005005382699891925, 0.014697124250233173, 0.013296350836753845, 0.007715256884694099, 0.020564239472150803, 0.021488310769200325, 0.010201447643339634, 0.04585150629281998, -0.00016214782954193652, -0.013149673119187355, 0.003971303813159466, 0.03842960670590401, 0.00888868048787117, -0.0019453155109658837, 0.010472801513969898, 0.02805948071181774, -0.0170146357268095, -0.03939767926931381, 0.005309739615768194, -0.006145803723484278, -0.006747182924300432, 0.010905501432716846, -0.025184594094753265, -0.003978637512773275, 0.035320036113262177, 0.0063291508704423904, 0.002653036266565323, -0.016589269042015076, 0.021385636180639267, -0.010817494243383408, -0.006864525377750397, -0.02362980879843235, -0.0017738856840878725, -0.03141840547323227, 0.0016033726278692484, -0.025991322472691536, 0.024524543434381485, 0.02808881551027298, 0.03226913511753082, 0.018202725797891617, -0.04523546248674393, -0.02681271731853485, 0.028484845533967018, -0.015885215252637863, -0.0017051304457709193, -0.003831959795206785, 0.011404206044971943, 0.03898698464035988, -0.018305400386452675, 0.0016501263016834855, 0.016911961138248444, 0.0028272164054214954, 0.0027538773138076067, 0.012812313623726368, -0.001607039594091475, 0.012599630281329155, -0.013641043566167355, -0.015489185228943825, -0.01037012692540884, -0.03573073446750641, -0.01719064824283123, 0.008925349451601505, 0.009688074700534344, -0.016178570687770844, 0.012306274846196175, 0.0007627250161021948, -0.026049993932247162, 0.017087973654270172, -0.0015364509308710694, 0.0004478259361349046, -0.002196501474827528, 0.030303651466965675, -0.003049066523090005, 0.01986018568277359, 0.014403768815100193, 0.015885215252637863, 0.03203444927930832, 0.013296350836753845, -0.019522827118635178, 0.04048309847712517, -0.009394718334078789, 0.032239798456430435, 0.01755734346807003, 0.012621632777154446, -0.04115781560540199, -0.01920013502240181, -0.041421834379434586, 0.03332521766424179, -0.009343381971120834, 0.005449083633720875, 0.004360000137239695, 0.011169521138072014, -0.023835156112909317, 0.012936989776790142, -0.019610833376646042, -0.012020252645015717, -0.012504289858043194, 0.005889117252081633, -0.0014915307983756065, -0.0015639530029147863, 0.07451236993074417, 0.03426395356655121, -0.007891270332038403, -0.03171176090836525, -0.016369251534342766, 0.00271537434309721, -0.012357612140476704, 0.023747149854898453, 3.3575484849279746e-05, -0.0050347186625003815, 0.0310957133769989, -0.005196064244955778, 0.022573726251721382, 0.004422338213771582, 0.012159597128629684, -0.0063914889469742775, -0.02933557704091072, 0.020329555496573448, -0.0416271835565567, -0.014103079214692116, -0.00259253173135221, -0.018452078104019165, -0.029570262879133224, 0.008345971815288067, -0.008411976508796215, 0.0162812452763319, 0.0009424054296687245, 0.022045686841011047, 0.03775488957762718, 0.021678991615772247, 0.02150297909975052, -0.0021084947511553764, -0.014645786955952644, -0.018158722668886185, -0.00786193460226059, -0.007000202313065529, -0.02662203647196293, 0.004715694114565849, 0.006934197153896093, 0.012313609011471272, 0.015709202736616135, -0.010832161642611027, 0.022368378937244415, 0.02066691406071186, -0.018554752692580223, 0.014066409319639206, -0.0018362238770350814, 0.034439969807863235, -0.019302809610962868, -0.01438910048455, 0.024993911385536194, 0.059081852436065674, -0.01858408935368061, -0.036698807030916214, 0.03628810867667198, -0.0019563164096325636, -0.016941295936703682, -0.028220826759934425, -0.009094028733670712, -0.01733732596039772, -0.009996098466217518, 0.030274316668510437, -0.008184625767171383, -0.029232902452349663, 0.029276907444000244, -0.0057424395345151424, 0.007341228425502777, 0.002110328059643507, 0.008477982133626938, -0.020344223827123642, 0.0003724243142642081, -0.02695939689874649, 0.005269403103739023, 0.006688511930406094, 0.03265049681067467, -0.02096026949584484, 0.022368378937244415, -0.02088693156838417, 0.01895078271627426, -0.009460723958909512, 8.176146366167814e-05, -0.043798018246889114, 0.013956401497125626, 0.0036027757450938225, -0.018129387870430946, -0.010406795889139175, 0.04813968390226364, -0.0019709840416908264, 0.038488276302814484, 0.009116031229496002, 0.018114719539880753, -0.01289298664778471, -0.0020681582391262054, -0.0038979649543762207, -0.005782775580883026, -0.03215179219841957, 0.0582897923886776, 0.03634678199887276, -0.014279092662036419, 0.01300299447029829, 0.00971007626503706, 0.020930934697389603, 0.0005083305877633393, 0.020182877779006958, -0.0024018504191190004, -0.0030802355613559484, 0.00043315812945365906, 0.004723027814179659, 0.03197577968239784, 0.024641884490847588, -0.06078331544995308, -0.014535779133439064, -0.005071388091892004, -0.022940421476960182, -0.0010542473755776882, -0.019654836505651474, 0.020872263237833977, -0.007476905360817909, 0.012467620894312859, -0.019845519214868546, 0.0070992098189890385, -0.010839495807886124, -0.02355646900832653, 0.003993305377662182, -0.021238958463072777, -0.005988124758005142, 0.03793090209364891, 0.001521783065982163, 0.013743718154728413, -0.04115781560540199, 0.0071322121657431126, 0.014484441839158535, -0.029452919960021973, 0.008587989956140518, 0.035760071128606796, -0.004018974024802446, -0.020872263237833977, 0.012966325506567955, -0.0018288899445906281, 0.008675997145473957, 0.01792403869330883, -0.017175979912281036, 0.028558185324072838, 0.0022441716864705086, -0.0049540456384420395, 0.023160438984632492, 0.007341228425502777, 0.0031939109321683645, -0.012460286729037762, -0.031477075070142746, 0.015357174910604954, 0.009548730216920376, 0.02761944569647312, 0.01023811660706997, 0.039045654237270355, -0.003151741111651063, -0.03760820999741554, -0.016369251534342766, -0.025037916377186775, 0.004084979183971882, -0.01807071641087532, -0.03810691460967064, -0.014323095791041851, 0.006332817953079939, 0.028646191582083702, -0.045998185873031616, 0.005122725386172533, 0.026490027084946632, 0.004536013584583998, -0.01532783918082714, 0.005958789028227329, -0.020417561754584312], [0.027892423793673515, 0.0070264884270727634, -0.03328406810760498, 0.06784932315349579, -0.011170314624905586, 0.0406508706510067, 0.018670573830604553, 0.01897752471268177, -0.018870759755373, 0.014733606018126011, -0.004237246233969927, -0.04123808071017265, -0.010830000974237919, 0.029387136921286583, 0.03555282950401306, 0.00022499944316223264, 0.011437227949500084, -0.012598300352692604, 0.044414348900318146, 0.062190763652324677, 0.02831948548555374, 0.0020085214637219906, 0.004197209142148495, 0.04999283328652382, -0.013879483565688133, -0.01357920654118061, -0.026411056518554688, -0.012164566665887833, 0.07265375554561615, -0.04884510487318039, 0.05082026124000549, -0.04550869017839432, 0.04609590023756027, -0.039903514087200165, -0.014079668559134007, 0.025943957269191742, -0.06037575379014015, -0.02845294028520584, -0.025943957269191742, -0.00896828155964613, -0.021206248551607132, -0.003386460477486253, 0.009975878521800041, 0.03963660076260567, 0.046816565096378326, -0.00941536109894514, -0.0021086137276142836, -0.05386307090520859, 0.026904845610260963, 0.02023201622068882, -0.009395342320203781, 0.06966432929039001, 0.011056876741349697, 0.06934403628110886, 0.006335850805044174, -0.05234166607260704, 0.009135101921856403, 0.02970743365585804, 0.002063572173938155, 0.006893031764775515, 0.015454270876944065, -0.03688739612698555, -0.03421826660633087, -0.000957550888415426, -0.015948060899972916, 0.009028336964547634, -0.04799098148941994, 0.031442366540431976, -0.007633715867996216, -0.03718100115656853, 0.03678063303232193, 0.04073094576597214, 0.03838210925459862, 0.006672828458249569, -0.01197105459868908, 0.016842219978570938, -0.004080434795469046, 0.02392876334488392, -0.0065293628722429276, 0.02757212705910206, -0.04145161062479019, 0.04414743557572365, 0.01678883656859398, -0.006225748918950558, -0.03699416294693947, -0.04089109227061272, -0.13505804538726807, 0.011350481770932674, -0.03234987333416939, 0.030294641852378845, -0.041077934205532074, -0.016308393329381943, 0.006289140786975622, 0.007667080033570528, -0.0019501341739669442, -0.027919115498661995, 0.008494511246681213, 0.025610316544771194, 0.007086543831974268, 0.031122073531150818, 0.02244739606976509, -0.016281701624393463, 0.02000514045357704, 0.008494511246681213, 0.045668840408325195, 0.02607741393148899, 0.03328406810760498, -0.023234788328409195, -0.058934424072504044, 0.007453549653291702, -0.033844586461782455, 0.0030811785254627466, 0.03547275811433792, 0.022300593554973602, 0.03229648992419243, -0.00742018548771739, 0.010609797202050686, 0.019364548847079277, -0.043373387306928635, -0.01801663637161255, 0.013338983990252018, 0.02746536210179329, 0.057706620544195175, -0.03896931931376457, -0.0022487433161586523, -0.05020636320114136, 0.04913870990276337, 0.0360332727432251, -0.0545036643743515, 0.015761220827698708, 0.026437746360898018, -0.006719538476318121, -0.005211479030549526, -0.016321739181876183, 0.04649626836180687, 0.06341855973005295, -0.038488876074552536, -0.016948984935879707, -0.014560111798346043, 0.0011977726826444268, 0.008821479044854641, 0.02717175893485546, 0.024782884865999222, 0.004237246233969927, -0.018203476443886757, 0.02717175893485546, -0.020792534574866295, 0.026718005537986755, -0.026397710666060448, -0.037394531071186066, 0.04153168573975563, -0.02475619502365589, 0.029440520331263542, 0.02160661853849888, -0.005842061247676611, -0.012264658696949482, -0.03347091004252434, 0.020485583692789078, -0.021966950967907906, 0.044574495404958725, 0.045748911798000336, -0.0011443900875747204, -0.019965102896094322, 0.005191460717469454, 0.05551793426275253, 0.0094353798776865, -0.029307063668966293, 0.03323068469762802, -0.04372037202119827, -0.04182529076933861, -0.049539078027009964, 0.01901756227016449, -0.026544511318206787, -0.045855678617954254, -0.020485583692789078, 0.013999594375491142, 0.06534034013748169, -0.04638950526714325, -0.0451350137591362, 0.022260555997490883, 0.007960684597492218, 0.05605176091194153, -0.013238891959190369, 0.00830099917948246, 0.0007561148959212005, 0.02140643447637558, 0.0038969318848103285, 0.03896931931376457, 0.030267950147390366, -0.003314727684482932, -0.026851462200284004, -0.0011101918062195182, -0.0009759012027643621, -0.045882370322942734, 0.03344421833753586, -0.016001442447304726, 0.036220114678144455, 0.012745102867484093, -0.018804030492901802, -0.03240325674414635, 0.008347708731889725, 0.008094141259789467, 0.06763578951358795, -0.0033797877840697765, -0.03165590018033981, 0.022941185161471367, -0.038568951189517975, -0.06411253660917282, 0.022367320954799652, 0.021806804463267326, 0.025316711515188217, -0.02482292242348194, 0.04865826666355133, 0.003006109269335866, -0.01014269981533289, 0.027892423793673515, -0.042332425713539124, 0.01128375343978405, -0.023261480033397675, 0.06331180036067963, -0.015147320926189423, 0.012778466567397118, 0.024409206584095955, 0.031095381826162338, 0.03341752663254738, -0.0025390111841261387, -0.018617192283272743, 0.02032543532550335, 0.011564011685550213, -0.028773237019777298, 0.04972591996192932, -0.01125038880854845, -0.005495074205100536, -0.024636082351207733, 0.03331075981259346, -0.009101738221943378, 0.019938411191105843, -0.010876710526645184, 0.007760499604046345, -0.033951353281736374, -0.025730427354574203, -0.002355508506298065, -0.007260037586092949, 0.0094353798776865, 0.011210352182388306, 0.017642958089709282, 0.0006172366556711495, -0.008321017026901245, -0.028239410370588303, 0.013959557749330997, -0.021633310243487358, -0.0055784848518669605, 0.019591424614191055, -0.027892423793673515, -0.071799635887146, 0.03315061330795288, -0.01903090626001358, 0.004003697074949741, 0.012604973278939724, -0.02153989113867283, -0.005194797180593014, -0.0017466128338128328, -0.01370599027723074, 0.03104199841618538, -0.025236638262867928, 0.026544511318206787, -0.017202552407979965, -0.027678893879055977, 0.020605694502592087, 0.03341752663254738, 0.013058725744485855, -0.0014296534936875105, -0.01072323601692915, -0.005468382965773344, -0.019858337938785553, -0.026931535452604294, -0.0019951758440583944, 0.021980296820402145, 0.0028342839796096087, 0.027038302272558212, -0.028853310272097588, -0.015574381686747074, 0.004564214963465929, 0.0006439279532060027, 0.013719335198402405, 0.027652202174067497, 0.05605176091194153, -0.0025423476472496986, -0.0047043440863490105, -0.04841804504394531, 0.01657530665397644, -0.07057183235883713, 0.0033731148578226566, -0.04358691722154617, 0.0038935954216867685, 0.02488964982330799, 0.01666872575879097, 0.010442976839840412, 0.0030711693689227104, 0.005304898601025343, 0.04628273844718933, 0.025410130620002747, 0.03811519593000412, -0.020672423765063286, -0.0003351011255290359, 0.017349354922771454, -0.0007106562261469662, 0.03451186791062355, -0.006245767697691917, -0.043506842106580734, 0.008881534449756145, -0.005131405312567949, 0.006462634541094303, -0.022821074351668358, 0.030081111937761307, -0.02512987330555916, -0.0119777275249362, 0.03715430945158005, 0.01776306889951229, -0.0550374910235405, 0.0031062017660588026, 0.01909763552248478, 0.023448320105671883, -0.05370292440056801, -0.042198967188596725, 0.023555085062980652, 0.030641628429293633, -0.003027796046808362, -0.044734641909599304, -0.016295047476887703, 0.0038869227282702923, -0.03715430945158005, 0.026411056518554688, -0.0037701481487601995, 0.01480033341795206, -0.01686890982091427, 0.050606731325387955, 0.0034932256676256657, 0.023555085062980652, 0.006285804323852062, 0.010269483551383018, -0.05834721401333809, -0.03531260788440704, 0.007246691733598709, -0.013505805283784866, 0.011030185967683792, 0.055197637528181076, 0.0065293628722429276, -0.023341555148363113, 0.008581257425248623, -0.01889745146036148, -0.00782722793519497, 0.004901192616671324, -0.04323992878198624, 0.010276156477630138, -0.028105953708291054, 0.018390316516160965, -0.021753421053290367, 0.038622330874204636, 0.03347091004252434, -0.032830316573381424, 0.03573967143893242, -0.0005092202336527407, 0.05610514432191849, 0.032990463078022, 0.0202587079256773, -0.0498860664665699, 0.022807728499174118, -0.013892829418182373, 0.007099889684468508, -0.006422597449272871, -0.015894677489995956, 0.016255009919404984, -0.015053900890052319, -0.008501183241605759, 0.026704659685492516, 0.021740075200796127, 0.0036800650414079428, -0.05327586457133293, 0.008914899080991745, -0.020552312955260277, -0.04134484753012657, -0.046843256801366806, -0.02272765338420868, 0.00043373386142775416, -0.018577154725790024, -0.008521202020347118, 0.03830203786492348, -0.03966329246759415, 0.0030511508230119944, 0.05695926398038864, -0.009688947349786758, 0.019444622099399567, 0.05367623269557953, 0.0019451295956969261, -0.04006366431713104, 0.012611646205186844, 0.022220518440008163, 0.004507495556026697, -0.0029760815668851137, -0.005438355263322592, -0.025623662397265434, -0.012831849046051502, -0.018790684640407562, -0.04727031663060188, 0.012591627426445484, -0.052982259541749954, 0.006399242673069239, 0.005635203793644905, 0.00898830033838749, 0.015174012631177902, 0.022273901849985123, 0.03096192516386509, 0.013258910737931728, 0.01893748715519905, -0.009488762356340885, 0.019911721348762512, 0.025263329967856407, 0.004881174303591251, -0.08066115528345108, 0.03843549266457558, -0.004220563918352127, -0.03483216464519501, -0.0021469825878739357, 0.022847766056656837, 0.06074943020939827, 0.0496191531419754, -0.03232318162918091, 0.04913870990276337, -0.01686890982091427, -0.015681147575378418, -0.01653526909649372, 0.027598818764090538, 0.022287247702479362, 0.002844293136149645, -0.02492968738079071, -0.03432502970099449, 0.008881534449756145, -0.04983268305659294, -0.031522441655397415, -0.019244438037276268, -0.008941590785980225, -0.02011190541088581, -0.06662151962518692, -0.061390023678541183, -0.021966950967907906, -0.02598399482667446, -0.004914538469165564, -0.010583106428384781, -0.01908428966999054, -0.01136382669210434, -0.032616786658763885, -0.03918284922838211, -0.02039216458797455, 0.0448681004345417, 0.036220114678144455, -0.06550048291683197, 0.012191257439553738, 0.032643478363752365, -0.03130891174077988, 0.011497283354401588, -0.019364548847079277, 0.01672210916876793, 0.02490299567580223, -0.022020334377884865, -0.026784734800457954, -0.008154196664690971, -0.014613494277000427, 0.013592551462352276, 0.029333755373954773, 0.013472440652549267, -0.02858639694750309, -0.059041187167167664, -0.020752497017383575, 0.01883072219789028, 0.008427782915532589, -0.04390721395611763, -0.04609590023756027, 0.05303564295172691, -0.02842625044286251, 0.01802998222410679, -0.03699416294693947, -0.05362284928560257, -0.018270203843712807, -0.011670777574181557, -0.025570278987288475, 0.030241258442401886, 0.0550374910235405, -0.023475011810660362, -0.008327689953148365, 0.02386203594505787, -0.03165590018033981, 0.036326877772808075, -0.014466692693531513, -0.012865213677287102, 0.04193205386400223, -0.02874654531478882, 0.018163438886404037, 0.03213634341955185, 0.005858743563294411, 0.007306747138500214, -0.039770059287548065, -0.001631506602279842, 0.028933385387063026, 0.009075046516954899, -0.0034665344282984734, 0.0004670979978982359, -0.04959246143698692, 0.011190333403646946, 0.03461863473057747, -0.024315787479281425, 0.02615748904645443, 0.026517821475863457, -0.000964223756454885, -0.010229445993900299, -0.008321017026901245, -0.025917265564203262, -0.0006676999037154019, 0.005148087162524462, 0.043346695601940155, 0.013732681050896645, 0.03205626830458641, -0.03947645425796509, -0.031362295150756836, 0.02625090815126896, -0.005938817281275988, 0.01243147999048233, -0.016241664066910744, 0.0019434613641351461, 0.009855767711997032, 0.005935480818152428, -0.01002258900552988, -0.013932866044342518, 0.021139521151781082, 0.038649022579193115, 0.04780414327979088, -0.04017042741179466, 0.009462070651352406, 0.024529317393898964, -0.01309208944439888, 0.005608512554317713, 0.012604973278939724, -0.002770892111584544, 0.01772303320467472, -0.015854639932513237, 0.004544196184724569, 0.009915823116898537, -0.0065360357984900475, 0.00656939996406436, -0.011997745372354984, 0.001499718171544373, 0.017042404040694237, -0.012611646205186844, -0.05204806476831436, 0.016348430886864662, -0.047937601804733276, 0.01661534234881401, 0.024636082351207733, 0.018577154725790024, 0.03336414322257042, -0.01919105462729931, 0.019351202994585037, 0.036380261182785034, 0.025503551587462425, 0.021219594404101372, -0.014306544326245785, -0.008654658682644367, 0.007680425886064768, -0.012464843690395355, -0.007466895040124655, 0.02602403238415718, -0.02275434508919716, -0.015587727539241314, 0.002775896806269884, 0.007553642150014639, -0.042172275483608246, 0.008327689953148365, 0.05362284928560257, 0.023448320105671883, -0.015934715047478676, -0.002075249794870615, -0.03461863473057747, -0.06048251688480377, 0.005508420057594776, -0.036166731268167496, -0.014026286080479622, -0.016908947378396988, 0.0040871077217161655, -0.01645519584417343, 0.02482292242348194, 0.011997745372354984, -0.0190709438174963, 0.02617083303630352, 0.04660303518176079, 0.014440000988543034, -0.009842421859502792, 0.01435992680490017, -0.02621087059378624, 0.022380666807293892, -0.034938931465148926, 0.031602516770362854, -0.0148136792704463, 0.010302847251296043, -0.030161185190081596, 0.002355508506298065, 0.003476543817669153, 0.005027976352721453, 0.013852791860699654, 0.00954881776124239, -0.003816857933998108, 0.013325639069080353, 0.03186943009495735, 0.06566063314676285, -0.05322248116135597, -0.03662048280239105, 0.04067756235599518, 0.008808134123682976, -0.042198967188596725, 0.00944205280393362, 0.022887801751494408, -0.01664203405380249, -0.0017399400239810348, 0.033684439957141876, -0.015347505919635296, -0.0007285894826054573, 0.03288369998335838, -0.04273279383778572, -0.01915101893246174, -0.011924345046281815, -0.023288171738386154, -0.015067246742546558, -0.02615748904645443, 0.004407403524965048, -0.018657227978110313, 0.012344732880592346, 0.02634432725608349, 0.024222368374466896, 0.033844586461782455, 0.029360445216298103, 0.04772407189011574, 0.048124440014362335, -0.029360445216298103, 0.017576230689883232, -0.034058116376399994, 0.003723438363522291, 0.013632589019834995, -0.014346581883728504, 0.04993944987654686, -0.037287767976522446, -0.02360846847295761, 0.019844992086291313, 0.04009035602211952, -0.018150093033909798, -0.013399039395153522, 0.007520277984440327, 0.024636082351207733, 0.009288577362895012, 0.028186028823256493, -0.011517302133142948, -0.00029485562117770314, 0.0013212200719863176, 0.03349759802222252, -0.003686737734824419, 0.030187876895070076, -0.02386203594505787, 0.026718005537986755, 0.016281701624393463, -0.019965102896094322, -0.023021258413791656, 0.025249984115362167, 0.0757499486207962, 0.00952879898250103, 0.026851462200284004, -0.04620266705751419, -0.002590725664049387, -0.01565445587038994, -0.044681258499622345, -0.02391541749238968, -0.03456525132060051, -0.0033380824606865644, 0.006812958046793938, -0.033817894756793976, -0.030134493485093117, -0.026971573010087013, -0.008187560364603996, -0.00885484367609024, 0.03411149978637695, 0.0025373431853950024, 0.019831646233797073, 0.005798688158392906, -0.0312822200357914, 0.01673545502126217, 0.01494713593274355, -0.05743970721960068, 0.023301517590880394, -0.03648702800273895, -0.007013143040239811, -0.008794788271188736, -0.029200298711657524, -0.10713893920183182, -0.012131202034652233, -0.017509501427412033, -0.013178836554288864, -0.01185094378888607, 0.04321323707699776, -0.010055952705442905, -0.006155684590339661, 0.04382713884115219, 0.014706914313137531, -0.023968800902366638, -0.003429833799600601, -0.031388986855745316, -0.002175342058762908, -0.0015380870318040252, -0.002919362625107169, 0.02278103679418564, -0.03210965171456337, -0.009628891944885254, 0.008321017026901245, 0.0024038865230977535, -0.029253680258989334, 0.011470592580735683, -0.04193205386400223, -0.021139521151781082, 0.04161176085472107, -0.02275434508919716, -0.007653734181076288, -0.021633310243487358, 0.01674879901111126, 0.006135665811598301, 0.03555282950401306, 0.009695620276033878, 0.01366595271974802, 0.0059955366887152195, -0.016989022493362427, 0.04759061336517334, 0.0016106540570035577, 0.00018704772810451686, -0.012077819555997849, -0.016842219978570938, -0.011577357538044453, -0.015988096594810486, 0.034004732966423035, 0.028025880455970764, 0.009829076938331127, -0.003693410661071539, 0.004263937473297119, -0.029120223596692085, 0.0007369305239990354, 0.05439689755439758, -0.04425419867038727, 0.01068987138569355, 0.02371523343026638, -0.0059922002255916595, -0.029200298711657524, -0.012905250303447247, -0.00782722793519497, 0.023368244990706444, 0.001078495872206986, 0.00886818952858448, -0.015854639932513237, 0.012024437077343464, -0.002859306987375021, 0.028799928724765778, 0.013025361113250256, -0.027064992114901543, -0.009668928571045399, -0.0479109100997448, 0.018497081473469734, -0.03707423433661461, -0.0018850740743800998, 0.016148244962096214, 0.017135823145508766, 0.036006584763526917, 0.02606406807899475, -0.028186028823256493, 0.013052052818238735, 0.006812958046793938, -0.017135823145508766, -0.010503032244741917, 0.023448320105671883, 0.0017032395116984844, 0.012151220813393593, -0.013892829418182373, -0.00510805007070303, -0.04073094576597214, -0.027812350541353226, -0.034004732966423035, -0.01666872575879097, -0.011457246728241444, -0.013172163628041744, 0.0058253793977200985, -0.00825428869575262, -0.015974752604961395, -0.005925471894443035, 0.024249060079455376, -0.0119777275249362, -0.06640799343585968, -0.017055749893188477, 0.012284677475690842, -0.00711323507130146, -0.0027792330365628004, -0.002468946622684598, 0.0020268717780709267, 0.038275346159935, 0.008020740002393723, 0.015093938447535038, 0.006539372261613607, -0.009775693528354168, 0.06614107638597488, -0.019778264686465263, 0.0037401204463094473, -0.02153989113867283, -0.005935480818152428, 0.01243147999048233, 0.0010159381199628115, -0.006979778874665499, -0.03224310651421547, -0.005321580916643143, 0.00882815197110176, 0.01059645228087902, -0.023047950118780136, 0.026851462200284004, -0.015120629221200943, 0.02239401265978813, -0.0070731984451413155, -0.007980703376233578, 0.004153835587203503, 0.010082644410431385, -0.021099483594298363, 0.019911721348762512, -0.03197619318962097, -0.06251105666160583, -0.0022387339267879725, -0.005671904422342777, -0.05354277789592743, -0.0008616289705969393, -0.015721183270215988, -0.0032479993533343077, -0.02518325485289097, 0.0014596813125535846, -0.01001591607928276, -0.010756599716842175, -0.01367929857224226, 0.004303974565118551, 0.026571203023195267, -0.0202587079256773, -0.0015989765524864197, -0.01370599027723074, 0.04147830232977867, 0.002847629599273205, -0.0010126017732545733, -0.009949187748134136, 0.00597551790997386, 0.010896729305386543, 0.010302847251296043, 0.011790888383984566, 0.015934715047478676, 0.026944881305098534, -0.014306544326245785, -0.05663897097110748, -0.022060371935367584, -0.03186943009495735, -0.033711131662130356, -0.003526589833199978, -0.021206248551607132, 0.0597885437309742, 0.005805361084640026, 0.02384869009256363, 0.0018867423059418797, 0.008160869590938091, 0.004690998699516058, -0.0336577482521534, -0.015694493427872658, 0.034938931465148926, -0.030614936724305153, 0.003042809898033738, -0.006886359304189682, 0.027705583721399307, 0.061123110353946686, 0.02601068653166294, 0.021766766905784607, -0.0028025880455970764, -0.02007186785340309, 0.003816857933998108, 0.04182529076933861, -0.005031312815845013, -0.00886151660233736, -0.022233864292502403, -0.006125656887888908, 0.01137049961835146, 0.015227395109832287, 0.005882098339498043, -0.02973412349820137, 0.010329538956284523, 0.014733606018126011, 0.004891183227300644, 0.014093014411628246, 0.028159337118268013, 0.013732681050896645, 0.0023121351841837168, 0.004207218531519175, 0.005511756520718336, -0.016348430886864662, 0.020605694502592087, -0.018336933106184006, 0.008734732866287231, -0.004300638101994991, 0.008561238646507263, -0.015587727539241314, 0.007326765917241573, 0.02149985358119011, 0.00656272703781724, 0.018070019781589508, -0.018550463020801544, 0.03670055791735649, -0.05386307090520859, 0.0007160779205150902, 0.026931535452604294, -0.023074641823768616, -0.012705065310001373, 0.006506008096039295, 0.047964293509721756, 0.012097838334739208, 0.05031312629580498, -0.02516990900039673, -0.013619243167340755, 0.04017042741179466, 0.021099483594298363, -0.002595730358734727, -0.02978750690817833, -0.01765630394220352, 0.007266710512340069, 0.027678893879055977, 0.0017399400239810348, 0.005435018800199032, 0.011670777574181557, -0.00036304356763139367, 0.023007912561297417, 0.00825428869575262, -0.02847963199019432, -0.023314863443374634, 0.014480037614703178, -0.017269279807806015, 0.021833494305610657, -0.029387136921286583, -0.016041480004787445, 0.022327285259962082, -0.001510561560280621, 0.014386618509888649, -0.006462634541094303, 0.01917770877480507, 0.006636127829551697, 0.018710611388087273, -0.0013912847498431802, -0.005014630500227213, 0.022207174450159073, 0.006142338737845421, 0.03320399671792984, -0.021766766905784607, -0.021860186010599136, -0.019257783889770508, 0.02965405024588108, -0.03525922819972038, 0.04430758208036423, 0.019858337938785553, 0.02965405024588108, -0.011724160052835941, -0.000558432366233319, 0.01010933518409729, -0.02394210919737816, 0.01128375343978405, 0.0032413264270871878, 0.02837286703288555, 0.010983475483953953, -0.038622330874204636, 0.0071933092549443245, -0.014520075172185898, -0.013632589019834995, -0.031362295150756836, -0.013452422805130482, 0.033951353281736374, 0.04014373570680618, 0.042118895798921585, -0.03843549266457558, 0.005088031757622957, 0.020899299532175064, -0.007647061720490456, -0.004971257410943508, -0.014573457650840282, -0.04783083498477936, 0.007613697554916143, -0.01780310645699501, 0.012257985770702362, 0.02602403238415718, -0.007553642150014639, 0.01242480706423521, -0.03411149978637695, 0.013392367400228977, -0.005488401744514704, -0.0333908349275589, -0.016161590814590454, 0.01012268103659153, -0.011423883028328419, -0.005191460717469454, 0.024262404069304466, 0.031122073531150818, 0.006712865550071001, -0.05071349814534187, -0.017282625660300255, 0.0424925722181797, -0.013919520191848278, -0.024182330816984177, -0.02874654531478882, -0.028025880455970764, 0.000411838642321527, -0.005521765444427729, 0.02839955873787403, -0.007373475469648838, 0.01309208944439888, 0.03667386621236801, 0.004203882068395615, -0.004317319951951504, 0.02384869009256363, -0.010296174325048923, 0.0037601389922201633, -0.018603846430778503, -0.00742018548771739, -0.00682963989675045, 0.021673347800970078, 0.014533421024680138, -0.013759372755885124, 0.03085516020655632, -0.00413381727412343, -0.018790684640407562, 0.0013195518404245377, -0.010236118920147419, 0.024596046656370163, 0.007300074677914381, 0.030401406809687614, -0.014560111798346043, 0.00955549068748951, 0.007059852592647076, 0.004380711819976568, -0.003436506725847721, 0.0006626952672377229, -0.029040150344371796, -0.0017349354457110167, 0.032830316573381424, -0.006479316391050816, 0.007166618015617132, -0.01072323601692915, 0.0011118600377812982, -0.010823328047990799, 0.01123704295605421, 0.01139051839709282, 0.00510805007070303, 0.019457967951893806, -0.011437227949500084, -0.0049946121871471405, -0.03288369998335838, 0.010476340539753437, 0.019297819584608078, 0.004934556782245636, 0.0312822200357914, -0.007493586745113134, -0.0035332627594470978, -0.008234270848333836, 0.014520075172185898, 0.031122073531150818, 0.04177190735936165, -0.03691408783197403, 0.01311210822314024, 0.03931630775332451, 0.0033530963119119406, -0.011323790065944195, -0.019724881276488304, 0.0030711693689227104, -0.003041141666471958, 0.058774273842573166, 0.020739151164889336, -0.01243147999048233, 0.021993642672896385, -0.037341147661209106, -0.010302847251296043, 0.007840573787689209, 0.03768813610076904, -0.007740481290966272, -0.006475980393588543, 0.011303771287202835, 0.02375526912510395, 0.00016254594083875418, -0.018737303093075752, -0.0477774515748024, 0.028292793780565262, 0.019257783889770508, 0.00327969528734684, -0.013312293216586113, 0.015467616729438305, -0.006189048755913973, -0.03445848822593689, -0.0031195473857223988, -0.004263937473297119, -0.013485786505043507, -0.006145675200968981, -0.01423981599509716, 0.032750241458415985, -0.0156411100178957, 0.043533533811569214, -0.002053563017398119, -0.0008624630863778293, -0.04281286895275116, 0.02475619502365589, 0.03920954093337059, 0.022087061777710915, 0.026718005537986755, 0.0036366914864629507, -0.0336577482521534, -0.01760292239487171, 0.022313939407467842, -0.007994048297405243, -0.0136592797935009, 0.022273901849985123, 0.0009091728716157377, 0.02984089031815529, -0.010930093005299568, 0.006452625151723623, -0.03520584478974342, 0.017336009070277214, 0.06726211309432983, -0.031602516770362854, -0.031335603445768356, 0.012324714101850986, -0.018523771315813065, -0.002585720969364047, 0.004350684117525816, -0.01066317968070507, -0.018497081473469734, 0.01909763552248478, 0.017215898260474205, 0.04788421839475632, -0.056692350655794144, 0.026491129770874977, -0.012638336978852749, -0.007787190843373537, -0.017015712335705757, 0.006295813713222742, 0.10564422607421875, -0.023274825885891914, -0.024262404069304466, 0.024622738361358643, 0.04361360892653465, 0.021660001948475838, -0.025423476472496986, -0.004640952218323946, -0.025303365662693977, 0.019871683791279793, -0.030294641852378845, 0.03445848822593689, 0.00327635882422328, -0.007199982181191444, 0.0007073198212310672, 0.019351202994585037, -0.022033680230379105, 0.02837286703288555, -0.016081517562270164, 0.012464843690395355, -0.002462273696437478, -0.026637932285666466, 0.026798078790307045, -0.00012240470096003264, -0.051514238119125366, -0.025917265564203262, 0.017642958089709282, 0.04913870990276337, 0.0008541220449842513, 0.029520593583583832, 0.014706914313137531, -0.032643478363752365, 0.021099483594298363, 0.007867264561355114, -0.00413715373724699, 0.008614622056484222, 0.018230168148875237, -0.013318966142833233, -0.0007277553668245673, -0.013032034039497375, -0.002323812572285533, -0.02607741393148899, 0.007913975045084953, 0.007260037586092949, -0.006712865550071001, -0.0016106540570035577, -0.015801258385181427, 0.01299867033958435, 0.02622421644628048, 0.039770059287548065, -0.017589576542377472, 0.007253364659845829, -0.006576072424650192, -0.0119777275249362, 0.0026507810689508915, 0.026824770495295525, 0.02723848633468151, 0.003816857933998108, 0.01241813413798809, 0.003730111289769411, -0.009188485331833363, 0.02719844877719879, -0.0057019321247935295, 0.03234987333416939, 0.03176266327500343, 0.009882459416985512, -0.016842219978570938, 0.022020334377884865, -0.022247210144996643, -0.0048678284510970116, -0.020405510440468788, 0.019551387056708336, -0.010409612208604813, 0.03573967143893242, 0.014867061749100685, -0.017229244112968445, 0.005131405312567949, -0.014613494277000427, -0.02749205380678177, -0.013592551462352276, -0.008214252069592476, 0.05914795398712158, 0.01668207161128521, 0.012224622070789337, -0.004544196184724569, -0.002073581563308835, -0.01357920654118061, -0.023982146754860878, -0.0070665255188941956, 0.003946978133171797, 0.003443179652094841, -0.0005792849115096033, 0.02387537993490696, 0.005064676981419325, -0.0003044478071387857, -0.013499132357537746, -0.0381418876349926, 0.026704659685492516, 0.0296273585408926, 0.0024088912177830935, 0.0028893346898257732, -0.016922293230891228, 0.0015881331637501717, 0.024102257564663887, -0.015067246742546558, -0.03896931931376457, -0.009829076938331127, -0.02630428969860077, 0.014987173490226269, 0.027011610567569733, 0.008334362879395485, -0.0003705505223479122, 0.005751978140324354, -0.0023955453652888536, -0.007473567966371775, -0.0009191821445710957, 0.023114677518606186, -0.024329133331775665, 0.0008691359544172883, -0.03218972682952881, 0.004300638101994991, -0.011737505905330181, -0.010883383452892303, 0.006729547865688801, 0.026824770495295525, -0.015801258385181427, 0.00443409476429224, 0.03072170354425907, 0.02383534424006939, -0.008634639903903008, -0.007947338744997978, 0.02035212703049183, 0.04889848828315735, -0.03293708339333534, 5.0176542572444305e-05, -0.008721387013792992, 0.022847766056656837, 0.0070665255188941956, 0.023128023371100426, 0.022220518440008163, 0.012191257439553738, -0.008521202020347118, -0.037421222776174545, -0.006205730605870485, -0.010469668544828892, 0.04139822721481323, -0.011537320911884308, -0.006742893252521753, -0.025543587282299995, 0.030374715104699135, -0.04145161062479019, -0.02037881873548031, -0.028186028823256493, -0.012364751659333706, -0.008554566651582718, 0.024782884865999222, 0.02714506722986698, 0.00356662692502141, 0.012771793641149998, -0.021660001948475838, -0.012151220813393593, -0.001494713593274355, -0.0022887801751494408, -0.02037881873548031, 0.006305823102593422, -0.04396059364080429, -0.016028134152293205, -0.03691408783197403, 0.027758967131376266, -0.002302125794813037, 0.01485371682792902, 0.007199982181191444, -0.016495231539011, -0.027678893879055977, -0.0028009198140352964, -0.012358078733086586, -0.009655582718551159, 0.03646033629775047, 0.01068987138569355, -0.015854639932513237, 0.007553642150014639, -0.02633098140358925, 0.019991794601082802, 0.022153791040182114, 0.006649473682045937, -0.001222795806825161, 0.006626118905842304, -0.009842421859502792, -0.012004418298602104, 0.025583624839782715, 0.0007890620036050677, -0.0061223204247653484, -0.0019751572981476784, 0.004537523258477449, -0.039770059287548065, -0.04169183224439621, 0.00442742183804512, -0.027598818764090538, 0.015574381686747074, -0.0022387339267879725, -0.0022454068530350924, -0.029520593583583832, -0.005037985742092133, -0.005088031757622957, 0.019444622099399567, -0.009395342320203781, 0.0076870983466506, 0.005278207361698151, -0.0168288741260767, 0.00840109121054411, 0.004884510766714811, 0.019551387056708336, 0.021032756194472313, 0.00828765332698822, 0.02023201622068882, 0.02009855955839157, -0.037581369280815125, -0.004594242665916681, 0.0035399356856942177, -0.001117698848247528, -0.05009959638118744, -0.018643883988261223, 0.021833494305610657, -0.011570684611797333, -0.009995897300541401, 0.007506932131946087, -0.041051242500543594, -0.012051128782331944, 0.0020218670833855867, -0.0013462431961670518, 0.04537523537874222, 0.027919115498661995, 0.024662774056196213, 0.0017215898260474205, 0.005468382965773344, -0.00951545313000679, -0.00944205280393362, 0.0011852611787617207, -0.03605996444821358, -0.0003025710757356137, 0.0028309475164860487, -0.019524697214365005, 0.0024239050690084696, 0.003980342298746109, -0.017042404040694237, 0.07729804515838623, -0.01480033341795206, 0.005832052323967218, 0.02399549074470997, 0.013972902670502663, 0.0017015712801367044, 0.02005852200090885, 0.019244438037276268, -0.005425009876489639, 0.020792534574866295, -0.002844293136149645, 0.013072071596980095, 0.006449288688600063, 0.0136926444247365, -0.002754210028797388, 0.040837712585926056, -0.01917770877480507, 0.015160666778683662, 0.008788115344941616, 0.006646137218922377, -0.006716202013194561, -0.0177497249096632, -0.018497081473469734, 0.033711131662130356, -0.03251001983880997, -0.00298609072342515, 0.0017983273137360811, 0.0014530083863064647, -0.012571608647704124, -0.014626840129494667, 0.0191376730799675, -0.04735039174556732, -0.013399039395153522, -0.0063625420443713665, -0.023021258413791656, -0.006048919167369604, 0.033817894756793976, 0.012044455856084824, 0.003676728578284383, 0.019604770466685295, 0.008728059940040112, 0.011350481770932674, 0.025410130620002747, -0.0225007776170969, 0.009181812405586243, 0.015867985785007477, 0.020792534574866295, 0.0027909106574952602, 0.01780310645699501, -0.013018688187003136, 0.028799928724765778, 0.031415678560733795, -0.031495749950408936, -0.003576636081561446, -0.01915101893246174, -0.024729503318667412, -0.06053590029478073, -0.017682995647192, 0.04046403244137764, -0.007353457156568766, 0.04129146412014961, -0.004917874466627836, 0.029226988554000854, 0.042412497103214264, -0.04089109227061272, 0.004771072417497635, -0.012918596155941486, -0.023141369223594666, 0.0037534660659730434, 0.009622219018638134, -0.002485628705471754, -0.027051646262407303, -0.02518325485289097, 0.02858639694750309, 0.008534547872841358, 0.016388466581702232, -0.017589576542377472, 0.023087987676262856, 0.005278207361698151, 0.037261076271533966, -0.004550869110971689, -0.01426650770008564, -0.04743046686053276, 0.013892829418182373, -0.014012940227985382, 0.005882098339498043, -0.022260555997490883, 0.01897752471268177, 0.02037881873548031, 0.037261076271533966, 0.01367929857224226, -0.015040555968880653, 0.0307483933866024, 0.0016723776934668422, -0.009855767711997032, -0.012665028683841228, -0.0066094365902245045, 0.00942870695143938, -0.011437227949500084, -0.02376861497759819, -0.003331409767270088, -0.029226988554000854, 0.021780112758278847, -0.01366595271974802, -0.026651278138160706, -0.004013706464320421, 0.017682995647192, -0.029467212036252022, -0.012958632782101631, 0.0011285421205684543, 0.02011190541088581, 0.022327285259962082, 0.031549133360385895, -0.00711323507130146, -0.020992718636989594, -0.02609075978398323, -0.0038902591913938522, 0.0025456841103732586, 0.0356329046189785, 0.002013525925576687, 0.03221641480922699, -0.03373781964182854, 0.005248179659247398, -0.007667080033570528, 0.04046403244137764, 0.012711738236248493, -0.022981220856308937, -0.021793458610773087, -0.02597064897418022, 0.011063549667596817, -0.04769738018512726, 0.027785658836364746, -0.010556414723396301, -0.019364548847079277, -0.0005300728371366858, 0.00683297635987401, -0.0029310400132089853, 0.028105953708291054, 0.0009525463101454079, 0.02617083303630352, 0.008821479044854641, -0.02617083303630352, 0.023248134180903435, 0.011630740016698837], [0.022257868200540543, -0.0015954457921907306, 0.05875718966126442, 0.022974420338869095, -0.06435524672269821, 0.02184361219406128, -0.01192385796457529, 0.04088819772005081, 0.013267391361296177, 0.003910241648554802, 0.013793609105050564, -0.021093472838401794, 0.03246872127056122, -0.014958004467189312, -0.040059685707092285, 0.018227269873023033, -0.016984499990940094, 0.04180628061294556, -0.025236034765839577, -0.019593194127082825, 0.018742289394140244, 0.03392421826720238, -0.009455115534365177, 0.005438510794192553, -0.0009376743109896779, 0.016536656767129898, 0.005083034280687571, -0.026221292093396187, 0.04890461266040802, -0.04373200982809067, 0.06422089040279388, -0.024004463106393814, 0.049307674169540405, -0.04261239990592003, 0.03186413273215294, 0.002513526938855648, -0.003092925762757659, -0.019985059276223183, 0.03139389678835869, -0.004243325907737017, 0.009768607094883919, 0.04424703121185303, -0.0040445951744914055, -0.028370944783091545, -0.0019257310777902603, 0.053427841514348984, 0.05096469819545746, -0.03130432590842247, 0.02868443727493286, 0.02454187534749508, 0.028415730223059654, 0.025639094412326813, 0.015103554353117943, 0.03887289762496948, 0.04120168834924698, 0.030475813895463943, 0.011487210169434547, 0.057100165635347366, 0.0011042164405807853, -7.697326509514824e-05, -0.025325603783130646, -0.001826365594752133, -0.03974619507789612, 0.020320942625403404, -0.0014128092443570495, -0.0017857797211036086, -0.018943820148706436, 0.02718415856361389, -0.014857239089906216, -0.01773463934659958, -0.005628844723105431, 0.03981336951255798, -0.003927036188542843, -0.05598055571317673, -0.0436648353934288, -0.00035477677010931075, 0.02796788513660431, -0.004853514023125172, 0.014353414066135883, -0.0010160470847040415, -0.041559964418411255, 0.02971447817981243, -0.02355661801993847, 0.012942704372107983, 0.03161781653761864, -0.010266833938658237, -0.07031157612800598, -0.00506344111636281, -0.0431722030043602, 0.033633116632699966, -0.05893632769584656, 0.0007760304724797606, -0.03074452094733715, 0.028751613572239876, 0.022492988035082817, -0.018316837027668953, 0.052353017032146454, 0.007439815904945135, -0.015047573484480381, 0.01999625377357006, -0.00274024810642004, -0.02051127515733242, 0.021686866879463196, 0.05741365626454353, 0.002197236754000187, -0.023959677666425705, -0.02375814877450466, 0.024810582399368286, 0.037059128284454346, 0.0018137700390070677, 0.03323005884885788, -0.0009404733427800238, -0.020589647814631462, 0.038133956491947174, -0.012629213742911816, -0.0038542612455785275, -0.017107658088207245, -0.007266276050359011, 0.027945494279265404, -0.017533110454678535, -0.042321301996707916, -0.0019355277763679624, 0.027654394507408142, -0.050427284091711044, -0.0018683510133996606, -0.04872547462582588, 0.007271874230355024, -0.032311975955963135, -0.07720838487148285, -0.005231382790952921, 0.034842297434806824, -0.022537771612405777, 0.013155430555343628, -0.03125954419374466, 0.006476950366050005, 0.013927962630987167, 0.017275599762797356, 0.0013274389784783125, -0.0004265018505975604, -0.03867136687040329, 0.004612797871232033, 0.024340346455574036, 0.0002618840371724218, 0.008341102860867977, -0.04666539281606674, -0.0002785032556857914, 0.05575663223862648, 0.01377121638506651, 0.05893632769584656, -0.03880571946501732, -0.011128934100270271, 0.0349542573094368, 0.007271874230355024, 0.03468555212020874, -0.018999800086021423, 0.04449334740638733, -0.0022938032634556293, 0.007607757579535246, 0.028751613572239876, 0.015540202148258686, -0.026400430127978325, -0.033722687512636185, -0.010664296336472034, -0.024765798822045326, 0.00670087244361639, 0.032603077590465546, 0.0009950543753802776, 0.04106733575463295, -0.038178738206624985, -0.015439437702298164, -0.04581448808312416, 0.01949242874979973, -0.055264003574848175, -0.018641525879502296, -0.013681648299098015, -0.06489265710115433, 0.048322416841983795, 0.01567455567419529, -0.0109162088483572, -0.0008662990876473486, -0.014129492454230785, -0.009376742877066135, -0.06368348002433777, -0.04563535004854202, -0.05002422630786896, 0.02984883263707161, 0.006180253345519304, 0.004380478523671627, -0.02111586555838585, -0.003901844844222069, -0.004568013362586498, 0.023220734670758247, -0.014689297415316105, 0.0061130765825510025, -0.03461837396025658, 0.016346322372555733, -0.035267751663923264, 0.021261414512991905, -0.03649932146072388, 0.005760399159044027, 0.04214216396212578, -0.05011379346251488, 0.028527691960334778, 0.044381383806467056, -0.05575663223862648, 0.008822535164654255, 0.014890828169882298, 0.001447097398340702, 0.031752172857522964, -0.028639651834964752, 0.026960235089063644, -0.03584994748234749, -0.00916401669383049, -0.009096840396523476, -0.005676428321748972, 0.023175949230790138, -0.011778309009969234, 0.009326360188424587, 0.013838393613696098, 0.05006900802254677, -0.02281767502427101, 0.004629591945558786, -0.010334010235965252, -0.02548234909772873, -0.05880197510123253, 0.03542449697852135, 0.023175949230790138, -0.001254664151929319, -0.015484222210943699, -0.06722144782543182, -0.00462679285556078, 0.02745286375284195, -0.011100944131612778, -0.005273368209600449, -0.031080404296517372, -0.02034333348274231, -0.044806838035583496, -0.03199848532676697, 0.0520843081176281, 0.00503265205770731, 0.009914156049489975, -0.002163648372516036, -0.0019943073857575655, -0.00382627104409039, 0.02895314432680607, -0.02525842748582363, -0.011509601958096027, 0.018484778702259064, 0.04462770000100136, 0.00033955706749111414, -0.00999812688678503, -0.018999800086021423, 0.058309346437454224, -0.09933190047740936, 0.002032094169408083, 0.03392421826720238, -0.0007179506355896592, -0.036118656396865845, 0.012293330393731594, -0.0403507836163044, 0.021977966651320457, -0.011072954162955284, -0.018014542758464813, 0.03640975430607796, -0.07264036685228348, 0.012853135354816914, 0.04041796177625656, -0.019537214189767838, -0.018081719055771828, 0.05754801258444786, -0.08235859125852585, 0.012472467496991158, -0.01224854588508606, -0.013289784081280231, 0.02179882861673832, 0.03815634548664093, 0.0006682678940705955, -0.03083408996462822, -0.0033616323489695787, 0.06032464653253555, -0.053203921765089035, 0.0006973078125156462, -0.0073446487076580524, -0.04140321910381317, -0.0022812075912952423, 0.01717483438551426, -0.04514272138476372, -0.030856482684612274, -0.03284939005970955, 0.00986937154084444, 0.03947748616337776, -0.02830376848578453, 0.003154504345729947, 0.016211969777941704, 0.027430472895503044, 0.01751071773469448, -0.004889901727437973, -0.0014694895362481475, -0.009393537417054176, -0.01846238784492016, 0.009113634936511517, 0.024989720433950424, -0.004649185109883547, -0.018182484433054924, -0.05177081748843193, 0.030005577951669693, -0.015047573484480381, 0.03074452094733715, 0.018652720376849174, 0.014868435449898243, -0.004587606526911259, 0.06408654153347015, -0.020455295220017433, -0.024250777438282967, -0.02848290652036667, -0.04469487443566322, -0.036633674055337906, 0.012472467496991158, 0.04314981400966644, -0.0029613713268190622, 0.023646187037229538, 0.04030600190162659, 0.033252451568841934, -0.044560521841049194, 0.0011972840875387192, -0.008038807660341263, 0.02689305879175663, 0.03305092081427574, -0.05401004105806351, 0.011811897158622742, -0.028841182589530945, 0.02398207038640976, 0.058085422962903976, -0.04373200982809067, -0.007658140268176794, -0.009029664099216461, -0.018048131838440895, -0.0022448203526437283, -0.005603653844445944, 0.020264960825443268, 0.00599551759660244, -0.042545221745967865, -0.005989919416606426, -0.0034120148047804832, -0.010966590605676174, 0.02085835486650467, 0.03551406413316727, 0.03327484056353569, -0.027340903878211975, 0.017018089070916176, 0.004492439795285463, 0.011140130460262299, -0.07631269097328186, -0.0023427861742675304, -0.06359390914440155, -0.009779803454875946, -0.005015857983380556, -0.03314048796892166, 0.002936180215328932, -0.010294823907315731, 0.00205028778873384, 0.007451011799275875, 0.020276157185435295, 0.03947748616337776, 0.020097019150853157, -0.006364989094436169, -0.02342226542532444, 0.02243700623512268, 0.05078556016087532, -0.0314386785030365, 0.01610000804066658, 0.029916008934378624, 0.00354916718788445, -0.009578272700309753, -0.00886172242462635, -0.05477137491106987, 0.035648416727781296, 0.00952789094299078, -0.043911147862672806, -0.003638736205175519, -0.019167741760611534, 0.0032776615116745234, 0.0032692644745111465, -0.048546336591243744, 0.03352115675806999, 0.018943820148706436, -0.07832799106836319, 0.00014170078793540597, -0.013032273389399052, 0.029065104201436043, 0.01669340208172798, 0.03018471598625183, -0.03177456185221672, 0.02928902767598629, -0.013289784081280231, 0.007059148047119379, -0.01875348575413227, -0.00779249332845211, -0.007473404053598642, -0.010423579253256321, 0.001720002619549632, -0.019671566784381866, 0.016044028103351593, -0.02496732771396637, -0.027811139822006226, 0.01297629252076149, -0.03782046213746071, -0.03811156377196312, 0.026355646550655365, -0.009779803454875946, 0.01896621286869049, -0.005606452468782663, 0.03271503746509552, -0.01678297109901905, 0.004251723177731037, -0.02119423821568489, -0.040619492530822754, 0.03211044520139694, -0.010966590605676174, -0.016581440344452858, 0.0732225701212883, 0.042164552956819534, 0.012002231553196907, -0.020959120243787766, -0.013345764949917793, 0.0029809644911438227, 0.018686309456825256, -0.010149274952709675, 0.004671577364206314, -0.05154689401388168, 0.02919945865869522, 0.021518925204873085, 0.0037842856254428625, 0.015573790296912193, -0.04077623784542084, -0.02402685396373272, 0.05898111313581467, -0.027587218210101128, -0.015103554353117943, -0.02034333348274231, 0.0006367788300849497, 0.02342226542532444, 0.02290724404156208, -0.028057454153895378, -0.02478818967938423, 0.020410509780049324, -0.028639651834964752, -0.002111866371706128, -0.028796397149562836, 0.007249481976032257, -0.0009782601846382022, -0.04957637935876846, -0.031237149611115456, 0.019794724881649017, -0.031573034822940826, -0.0029501751996576786, -0.024385130032896996, -0.033767472952604294, 0.020533667877316475, -0.026400430127978325, -0.012371703051030636, 0.02727372758090496, 0.05297999829053879, 0.057144951075315475, 0.013323372229933739, 0.01323380321264267, -0.058309346437454224, 0.0027360497042536736, -0.00914162490516901, 0.01012688223272562, -0.018563153222203255, -0.027654394507408142, 0.002492534229531884, 0.006448959931731224, 0.05544314160943031, 0.01034520659595728, -0.041604749858379364, -0.07998501509428024, -0.02360140159726143, -0.055264003574848175, 0.006409773603081703, 0.04312742128968239, -0.02525842748582363, -0.025549525395035744, 0.055174436420202255, 0.0005097729153931141, 0.007327854633331299, -0.016413498669862747, -0.011554386466741562, -0.012618017382919788, -0.0038066778797656298, -0.01704048179090023, 0.033252451568841934, -0.008324308320879936, -0.022750498726963997, -0.014834847301244736, -0.05056163668632507, 0.009740617126226425, 0.03699195012450218, -0.01704048179090023, 0.034192923456430435, -0.02998318523168564, -0.00027727868291549385, 0.022672124207019806, 0.043485697358846664, -0.007786895148456097, -0.022840065881609917, -0.023959677666425705, 0.003837467171251774, -0.024340346455574036, -0.007540580816566944, -0.002041890751570463, 0.02440752275288105, -0.019604390487074852, -0.04370961710810661, -0.02478818967938423, -0.013054665178060532, 0.0025247230660170317, -0.00491229398176074, 0.020701609551906586, -8.064699068199843e-05, -0.017230814322829247, -0.027990277856588364, -0.029177065938711166, -0.01410709973424673, 0.010378794744610786, -0.017275599762797356, 0.006807235535234213, 0.010653099976480007, 0.02998318523168564, 0.017846601083874702, -0.04332895204424858, -0.04426942393183708, 0.04800892621278763, -0.0010342408204451203, 0.01156558282673359, 0.017544306814670563, 0.013077057898044586, 0.028281377628445625, -0.030251892283558846, 0.053248703479766846, 0.02248179167509079, -0.005989919416606426, 0.022067535668611526, 0.004906695801764727, -0.008704976178705692, -0.02278408594429493, 0.040059685707092285, 0.026489999145269394, 0.040574707090854645, 0.00766373798251152, 0.035267751663923264, -0.010266833938658237, -0.03918638825416565, -0.006057096179574728, -0.018316837027668953, 0.007529384922236204, -0.015316280536353588, 0.03853701427578926, 0.01077065896242857, 0.006353793200105429, 0.025236034765839577, -0.017835404723882675, 0.010093294084072113, 0.010580325499176979, 0.002569507574662566, 0.019626783207058907, 0.027609610930085182, -0.008061200380325317, 0.022033946588635445, -0.01816009171307087, 0.0255719181150198, 0.015640966594219208, 0.013995138928294182, 0.019122958183288574, 0.025728663429617882, 0.04167192429304123, -0.011352856643497944, 0.014566140249371529, 0.0019901087507605553, -0.0045904056169092655, 0.02821419946849346, -0.0382683090865612, -0.0011664947960525751, -0.010843433439731598, 0.0030089549254626036, -0.027094589546322823, -0.03383464738726616, 0.007798091508448124, 0.02834855392575264, 0.024989720433950424, 0.006611303426325321, 0.02445230633020401, -0.0032300781458616257, -0.002366577973589301, 0.030117539688944817, 0.02552713267505169, 0.010445971973240376, 0.0010825239587575197, 0.024004463106393814, 0.0052649714052677155, -0.013077057898044586, 0.02342226542532444, -0.018260857090353966, -0.03347637131810188, -0.010037313215434551, 0.01695091277360916, -0.006370587274432182, 0.016861343756318092, 0.01969395950436592, 0.024765798822045326, 0.01755550317466259, 0.00830751471221447, -0.01696210913360119, 0.005267770495265722, 0.011979838833212852, -0.03643214702606201, -0.029266634956002235, 0.0067232646979391575, 0.006068292073905468, -0.0361410453915596, -0.008464260026812553, 0.04711323603987694, 0.025370387360453606, -0.013950354419648647, -0.0026324857026338577, -0.03788764029741287, -0.02337747998535633, -0.015058769844472408, -0.015215515159070492, -0.03835787624120712, 0.05436831712722778, -0.02749764919281006, 0.014857239089906216, -0.00862660352140665, -0.033857040107250214, 0.03596190735697746, -0.0038794525898993015, 0.0072046974673867226, -0.028281377628445625, 0.015405848622322083, 0.02333269640803337, 0.0043888757936656475, -0.024855365976691246, 0.0558462031185627, 0.011235297657549381, -0.011224101297557354, 0.01034520659595728, 0.003196489764377475, 0.028281377628445625, -0.004304904956370592, -0.012998685240745544, -0.004568013362586498, -0.02161969058215618, 0.013871981762349606, 0.005346143152564764, -0.01562977209687233, 0.046441469341516495, 0.04778500273823738, -0.006504940800368786, -0.035133395344018936, 0.010300422087311745, -0.017924973741173744, 0.020589647814631462, 0.008206749334931374, -0.028796397149562836, 0.008805741555988789, -0.009488704614341259, -0.00967903807759285, -0.012830743566155434, -0.050427284091711044, -0.022123515605926514, 0.013256195932626724, -0.042925890535116196, 0.011240895837545395, -0.030005577951669693, -0.03914160281419754, 0.003994212485849857, -0.05065120756626129, -0.004276914522051811, -0.030565382912755013, -0.020097019150853157, -0.02145174890756607, -0.01496920082718134, -0.03412574529647827, 0.01515953429043293, 0.0302742850035429, -0.022705713286995888, 0.006544127129018307, -0.04082101956009865, -0.018988603726029396, 0.042321301996707916, 0.003535172203555703, -0.02069041319191456, 0.036118656396865845, 0.030632561072707176, 0.0068240296095609665, -0.013648059219121933, -0.02599737048149109, 0.0053013586439192295, 0.009942146949470043, 0.013816000893712044, 0.014353414066135883, -0.046396683901548386, -0.0019271306227892637, 0.014062315225601196, 0.0076245516538619995, 0.0043356940150260925, 0.05759279429912567, 0.027094589546322823, -0.02586301602423191, -0.011296875774860382, -0.036118656396865845, -0.00969583261758089, -0.035133395344018936, 0.015383456833660603, 0.0041089728474617004, -0.009387939237058163, -0.0042993067763745785, -0.016514264047145844, -0.029445772990584373, 0.010507550090551376, -0.04720280319452286, -0.01678297109901905, 0.033342018723487854, 0.013961550779640675, 0.0015380657278001308, -0.01734277606010437, 0.008352299220860004, 0.013412941247224808, -0.008839329704642296, -0.02993840165436268, 0.016603833064436913, -0.00805000402033329, -0.00721589382737875, 0.021037492901086807, -0.010765060782432556, -0.040574707090854645, -0.02821419946849346, -0.0006595209124498069, -0.010009323246777058, -0.038044385612010956, 0.013513706624507904, -0.03284939005970955, 0.0009509696974419057, -0.009516694582998753, 0.01849597506225109, 0.0054021235555410385, 0.023063989356160164, 0.015607379376888275, 0.0068128337152302265, 0.006118674762547016, 0.02411642298102379, -0.015484222210943699, -0.028863575309515, 0.017376365140080452, -0.019044585525989532, -0.002670272486284375, -0.02313116565346718, 0.006454558111727238, 0.022548967972397804, 0.033677902072668076, 0.01363686379045248, 0.03515578806400299, -0.0015884483000263572, -0.027520041912794113, -0.021821221336722374, 0.007831679657101631, 0.04666539281606674, -0.006398577708750963, -0.01130807213485241, -0.005270569119602442, 0.0352005735039711, 0.016391105949878693, 0.009287173859775066, 0.02492254413664341, 0.00010321415174985304, -0.009192007593810558, -0.034282490611076355, -0.06296692788600922, 0.022414615377783775, -0.03665606677532196, -0.0018165690125897527, 0.009147223085165024, 0.023870108649134636, 0.007730914745479822, -0.002938979072496295, -0.008128376677632332, 0.0314386785030365, 0.009539086371660233, -0.03952227160334587, 0.006734461057931185, -0.004290909506380558, -0.01990668475627899, 0.005833174102008343, -0.01532747596502304, -0.0005230683018453419, -0.00656092120334506, -0.04196302592754364, -0.005024254787713289, -0.01917893812060356, 0.025034504011273384, 0.0021006702445447445, 0.0087385643273592, 0.07693967968225479, -0.008089190348982811, -0.012741174548864365, 0.012214957736432552, -0.00044714470277540386, -0.012595624662935734, -0.030453423038125038, 0.03340919688344002, -0.006493744440376759, -0.017454737797379494, -0.00014659907901659608, -0.0319313108921051, 0.007562973070889711, -0.001661223010160029, -0.005385329481214285, 0.03806677833199501, -0.007417423650622368, -0.031461071223020554, 0.008156366646289825, 0.004929088056087494, -0.0009824587032198906, -0.00817875936627388, 0.01966037042438984, 0.0030509403441101313, 0.00766373798251152, 0.011599170975387096, 0.00025401177117601037, 0.013726431876420975, 0.008520240895450115, 0.0032160829287022352, 0.001176991150714457, -0.02449709177017212, -0.023198341950774193, -0.02043290250003338, 0.014666905626654625, -0.02213471196591854, 0.051188621670007706, -0.044358991086483, -0.04877026006579399, 0.0017731840489432216, -0.02731851115822792, -0.00573800690472126, 0.018999800086021423, 0.008816937915980816, -0.03537971153855324, 0.034752730280160904, 0.006348195020109415, -0.028370944783091545, 0.01691732369363308, -0.01870870217680931, 0.035693202167749405, -0.02749764919281006, 0.00890650600194931, -0.0361410453915596, -0.0158424973487854, -0.019749939441680908, 0.02042170614004135, 0.011095345951616764, 0.0370815210044384, -0.04877026006579399, 0.03558124229311943, 0.0090352613478899, 0.002209832426160574, -0.0012959499144926667, 0.018104111775755882, -0.021608494222164154, 0.010261235758662224, 0.024429915472865105, 0.0014820852084085345, -0.001789978239685297, -0.029781656339764595, 0.002750044921413064, -0.025661487132310867, 0.027900708839297295, 0.05566706508398056, -0.005228583700954914, 0.003423210931941867, -0.011935054324567318, -0.00982458796352148, 0.012427682988345623, -0.02196677029132843, -0.009354351088404655, 0.013782412745058537, 0.04684453085064888, 0.04711323603987694, 0.033588334918022156, 0.02966969460248947, 0.031662601977586746, 0.00587795814499259, 0.0007193501223810017, -0.007311060559004545, -0.01652546040713787, 0.017801817506551743, -0.04323938116431236, -0.0050998288206756115, 0.027587218210101128, -0.0010923205409199, 0.008380289189517498, 0.0070983343757689, -0.0015380657278001308, 0.006980775389820337, 0.00613546883687377, 0.022929634898900986, -0.024385130032896996, 0.021866004914045334, -0.010294823907315731, 0.031102797016501427, 0.006157861091196537, -0.02769917994737625, -0.07617834210395813, -0.023243127390742302, 0.03152824938297272, -0.02646760642528534, 0.0027206549420952797, 0.0262884683907032, -0.013155430555343628, 0.042410869151353836, 0.0073334528133273125, -0.008928898721933365, -0.016861343756318092, -0.02966969460248947, -0.005189397372305393, -0.0030789305455982685, 0.029177065938711166, -0.014846043661236763, -0.017566697672009468, 0.010110088624060154, 0.060100723057985306, 0.02008582279086113, 0.061892103403806686, 0.0345064140856266, 0.02590780146420002, -0.013737628236413002, 0.024138815701007843, 0.04135843366384506, -0.027654394507408142, 0.04769543185830116, -0.008609809912741184, -0.0005675028660334647, -0.0207687858492136, 0.014073511585593224, -0.02646760642528534, -0.022145908325910568, -0.008335504680871964, -0.004609998781234026, 0.013446529395878315, 0.017152441665530205, -0.0127859590575099, 0.018126504495739937, -0.013435333035886288, 0.005287363659590483, 0.0399029403924942, 0.048546336591243744, -0.01704048179090023, 0.019503625109791756, -0.016200773417949677, 0.03728305175900459, -0.005550472065806389, 0.008055602200329304, -0.05871240794658661, 0.05956331267952919, 0.03022949956357479, -0.006728862877935171, 0.008027611300349236, -0.008038807660341263, 0.014577336609363556, -0.030296677723526955, -0.0316849946975708, 0.03880571946501732, 0.03220001608133316, 0.026736313477158546, 0.010093294084072113, 0.003036945126950741, -0.009175213053822517, 0.019044585525989532, 0.022593751549720764, -0.0002526122552808374, 0.003484789514914155, 0.044112678617239, 0.007350246887654066, -0.004195742774754763, 0.012259741313755512, 0.012819547206163406, 0.013356960378587246, -0.005679227411746979, -0.006141067016869783, -0.007451011799275875, 0.020231373608112335, 0.043530479073524475, 0.012841939926147461, 0.004176149610430002, 0.01964917592704296, 0.032356761395931244, -0.019246114417910576, -0.004282512702047825, 0.010574727319180965, 0.01914535090327263, 0.008699377998709679, 0.011375249363481998, -0.007669336162507534, 0.016122400760650635, 0.028751613572239876, 0.00560925155878067, -0.008425073698163033, -0.04702366515994072, -0.007831679657101631, 0.006398577708750963, -0.004853514023125172, 0.001065729884430766, -0.009225595742464066, -0.02595258504152298, -0.016155987977981567, -0.0049822693690657616, 0.0010594320483505726, -0.005295760463923216, 0.04997944086790085, -0.0049822693690657616, 0.03580516204237938, 0.008660191670060158, -0.012998685240745544, -0.0009747614385560155, 0.015529005788266659, 0.010865826159715652, 0.015125946141779423, 0.04055231437087059, -0.012102995999157429, -0.012035819701850414, -0.01931329257786274, 0.014655709266662598, 0.0281694158911705, -0.00967903807759285, 0.014543748460710049, 0.004103374667465687, -0.009723822586238384, -0.018977409228682518, 0.03891768306493759, 0.025885408744215965, 0.008363494649529457, -0.03791003301739693, 0.035737987607717514, 0.009186409413814545, -0.033633116632699966, 0.029042711481451988, 0.008917702361941338, 0.03228958323597908, 0.0010601318208500743, 0.00830751471221447, 0.042478047311306, -0.03878333047032356, -0.048546336591243744, -0.00639297952875495, -0.021015100181102753, -0.04162714257836342, -0.02624368481338024, 0.026198899373412132, -0.022728106006979942, 0.03511100634932518, -0.03204327076673508, 0.011621563695371151, 0.022873654961586, 0.0191341545432806, -0.017118854448199272, -0.04131365194916725, 0.005508486647158861, -0.008492249995470047, 0.0221794955432415, -0.02881878986954689, -0.0029557733796536922, -0.000422303332015872, 0.029042711481451988, 0.05091991275548935, 0.013077057898044586, -0.05889154598116875, -0.04362004995346069, -0.012125388719141483, -0.017544306814670563, -0.005167005117982626, 0.014980397187173367, 0.05002422630786896, -0.0035575642250478268, -0.011935054324567318, -0.027296118438243866, -0.023489441722631454, 0.018439995124936104, 0.007092736195772886, 0.007831679657101631, -0.015540202148258686, 0.016536656767129898, 0.013692843727767467, 0.029154673218727112, -0.0001486983528593555, 0.011688739992678165, 0.022548967972397804, 0.006236233748495579, 0.030431030318140984, -0.03031906858086586, 0.028191808611154556, -0.005446908064186573, 0.004122967831790447, -0.008105984888970852, 0.025504741817712784, 0.000475134962471202, 0.017443541437387466, -0.005679227411746979, 0.04465009272098541, 0.0025555123575031757, -0.025504741817712784, 0.005430113989859819, 0.008044405840337276, 0.0028606064151972532, 0.02407163940370083, 0.01892142742872238, -0.03018471598625183, -0.0012742574326694012, -0.008895310573279858, 0.033252451568841934, 0.013625667430460453, -0.015663359314203262, -0.03506622090935707, -0.00046778752584941685, 0.021686866879463196, -0.02192198485136032, 0.002681468613445759, 0.029266634956002235, 0.002387570682913065, 0.024250777438282967, -0.010389991104602814, -0.0035379710607230663, 0.039074428379535675, -0.009326360188424587, 0.016379911452531815, -0.02474340610206127, -0.03437206149101257, -0.035222966223955154, -0.0009705628617666662, 0.023735756054520607, 0.009074447676539421, -0.007770101074129343, -0.006275420542806387, 0.004579209256917238, -0.02102629654109478, 0.021563710644841194, -0.034327276051044464, 0.06345956027507782, -0.00644336175173521, -0.008895310573279858, -0.01661502942442894, 0.05754801258444786, -0.021440552547574043, -0.0001521971425972879, 0.004125766921788454, -0.01045157015323639, 0.06086206063628197, -0.026131723076105118, 0.02993840165436268, 0.01708526536822319, 0.017275599762797356, -0.0011133132502436638, 0.0005521082202903926, 0.04021643102169037, 0.0412912592291832, 0.016111204400658607, 0.02942338027060032, -0.01562977209687233, -0.01987309753894806, 0.02210112288594246, -0.011257689446210861, -0.006963981315493584, -0.021955573931336403, -0.01819368079304695, 0.008453063666820526, -0.04359765723347664, 0.006941589061170816, -0.0032160829287022352, 0.01513714250177145, -0.02722894214093685, 0.009387939237058163, -0.002118864096701145, -0.006241831928491592, -0.007221491541713476, -0.015820104628801346, 0.022448202595114708, 0.03181934729218483, -0.008872917853295803, 0.009320762939751148, -0.009024065919220448, 0.014118296094238758, -0.0021986362989991903, 0.002670272486284375, -0.05593577027320862, -0.024653837084770203, 0.014420591294765472, 0.018350426107645035, -0.02680348977446556, 0.0127859590575099, -0.04576970264315605, -0.0191341545432806, -0.007193501573055983, 0.01785779744386673, -0.005603653844445944, -0.009947745129466057, -0.037529364228248596, -0.039634235203266144, 0.027049804106354713, 0.008542632684111595, -0.046396683901548386, 0.0065721170976758, 0.0043356940150260925, 0.0038878496270626783, -0.004749950021505356, -0.017454737797379494, -0.002608693903312087, 0.026534782722592354, -0.0023119968827813864, -0.013760020956397057, 0.028572475537657738, -0.000267831957899034, -0.01879827119410038, 0.0015254701720550656, 0.0014359012711793184, 0.020522471517324448, -0.000532864942215383, 0.008374691009521484, -0.012125388719141483, 0.004761146381497383, 0.04021643102169037, 0.04778500273823738, -0.0023959677200764418, 0.003803878789767623, 0.009348752908408642, 0.013592079281806946, -0.029557732865214348, 0.017320383340120316, -0.017286796122789383, -0.0035631624050438404, 0.025079289451241493, -0.003770290408283472, 0.028796397149562836, -0.000695558381266892, -0.03929835185408592, -0.02231385000050068, 0.021384572610259056, -0.03161781653761864, 0.022750498726963997, -0.004394473508000374, -0.021015100181102753, -0.009063252247869968, -0.003092925762757659, -0.013133038766682148, -0.00832990650087595, -0.017376365140080452, 0.004316100850701332, -0.001009749248623848, -0.00869378075003624, -0.007462208159267902, 0.01884305477142334, -0.0006287316209636629, -0.047561079263687134, -0.032692644745111465, 0.010417981073260307, -0.023310303688049316, 0.01241648755967617, -0.016939716413617134, -0.013110646046698093, -0.008727368898689747, -0.00708713848143816, -0.001279855496250093, 0.0141966687515378, 0.03524535894393921, -0.03600669279694557, 0.04205259308218956, 0.03546927869319916, -0.0025974977761507034, -0.004338493105024099, 0.02407163940370083, 0.04032839089632034, -0.008145171217620373, -0.0030425433069467545, -0.030431030318140984, -0.0008816937333904207, 0.006919196806848049, -0.003795481752604246, -0.0004905296373181045, -0.011935054324567318, 0.010154873132705688, -0.0358947329223156, -0.02454187534749508, -0.038469839841127396, 0.030386244878172874, 0.0025373187381774187, -0.0051110247150063515, 0.019671566784381866, -0.0003129662945866585, -0.018988603726029396, 0.02478818967938423, -0.0019103364320471883, 0.020500078797340393, 0.05369655042886734, -0.004607199691236019, 0.008660191670060158, 0.008413877338171005, 0.024205991998314857, -0.01218136865645647, -0.01593206636607647, -0.0016318331472575665, -0.00929277203977108, 0.012517252005636692, 0.003358833258971572, -0.010893816128373146, -0.008788947016000748, -0.007176707033067942, -0.008352299220860004, -0.025370387360453606, -0.014521355740725994, -0.035737987607717514, 0.031326718628406525, 0.01132486667484045, -0.034797511994838715, -0.004419664852321148, -0.02313116565346718, 0.024944934993982315, -0.05096469819545746, 0.0013974145986139774, 0.009802195243537426, 0.0021594499703496695, -0.0024169604294002056, -0.02128380723297596, -0.030946051701903343, -0.03584994748234749, 0.015741731971502304, -0.007960435003042221, -0.01391676627099514, -0.01471169013530016, 0.04666539281606674, 0.015898477286100388, -0.008005219511687756, -0.023355087265372276, -0.038178738206624985, -0.05974245071411133, 0.013278587721288204, -0.007193501573055983, 0.04962116479873657, 0.0019019393948838115, 0.036812812089920044, 0.00037227070424705744, 0.00041425612289458513, -0.013883178122341633, 0.0014030126621946692, -0.02680348977446556, -0.0007508391863666475, -0.005816379562020302, -0.01699569635093212, -0.010625109076499939, 0.030453423038125038, -0.004842318128794432, -0.017376365140080452, 0.05486094579100609, 0.017589090391993523, -0.016469478607177734, -0.0024351542815566063, -0.02029854990541935, 0.00843627005815506, -0.04702366515994072, 0.005950733087956905, -0.02011941187083721, 0.04135843366384506, -0.009046457707881927, 0.022448202595114708, 0.005385329481214285, -0.006454558111727238, 0.03490947559475899, 0.0314386785030365, -0.04140321910381317, 0.03596190735697746, -0.00625302828848362, 0.009158418513834476, -0.010317216627299786, -0.0363873615860939, -0.0017088064923882484, -0.0072326879017055035, -0.01905578188598156, -0.02505689673125744, 0.02304159663617611, -0.010317216627299786, 0.02993840165436268, -0.011302473954856396, -0.031326718628406525, 0.005950733087956905, 0.04814327880740166, -0.017074069008231163, -0.015125946141779423, -0.004066987428814173, -0.03392421826720238, 0.01799215003848076, -0.03361072391271591, -0.018216073513031006, -0.003675123443827033, 0.041000157594680786, -0.03784285485744476, 0.0335659421980381, 0.008005219511687756, 0.007596561219543219, 0.0007172508630901575, 0.021944377571344376, -0.03083408996462822, 0.024564268067479134, 0.038133956491947174, 0.004831121768802404, 0.02016419544816017, -0.0026198900304734707, 0.0015226710820570588, -0.02256016433238983, -0.026825882494449615, -0.009393537417054176, 0.0046351901255548, -0.029311418533325195, -0.03889529034495354, -0.040014900267124176, -0.02754243277013302, -0.01618957705795765, 0.007562973070889711, 0.011095345951616764, 0.0014254049165174365, 0.005665232427418232, 0.04491879791021347, 0.003778687445446849, 0.01128568034619093, 0.026109330356121063, 0.016771774739027023, -0.013009881600737572, -0.021821221336722374, -0.0017507919110357761, -0.0004684872692450881, 0.027385687455534935, -0.012214957736432552, 0.0408434122800827, 0.016211969777941704, 0.005777193233370781, 0.009331958368420601, 0.0008809940190985799, 0.0226497333496809, 0.020914334803819656, -0.04314981400966644, -0.01858554407954216, -0.018988603726029396, 0.030542992055416107, 0.022851262241601944, -0.019861901178956032, 0.008077993988990784, -0.006661686114966869, 0.0031740975100547075, 0.0005304157384671271, -0.04724758863449097, -0.0008530037011951208, -0.000703255704138428, -0.02543756365776062, -0.00018543559417594224, 0.056294046342372894, 0.03396899998188019, -0.02063443325459957, -0.03797720745205879, 0.024474699050188065, 0.021866004914045334, 0.004999063443392515, 0.014722886495292187, -0.016715794801712036, -0.022369829937815666, 0.039925333112478256, -0.011632759124040604, 0.005158608313649893, 0.015685752034187317, -0.02295202761888504, 0.042478047311306, -0.02581823244690895, -0.014006335288286209, 0.020287353545427322, -0.05969766527414322, -0.015898477286100388, 0.012629213742911816, -0.016458284109830856, -0.003288857638835907, 0.006476950366050005, -0.018081719055771828, -0.017880190163850784, -0.002131459768861532, -0.016211969777941704, 0.018764682114124298, 0.00462679285556078, 0.006163459271192551, -0.00586676225066185, 0.01499159261584282, -0.0011441026581451297, 0.009348752908408642, 0.034237708896398544, 0.024609051644802094, 0.006790441460907459, 0.002938979072496295, 0.025795839726924896, -0.014263845980167389, 0.017880190163850784, 0.029871225357055664, -0.007708522491157055, 0.006650490220636129, 0.011336062103509903, 0.021250218152999878, -0.004814327694475651, 0.032826997339725494, -0.005743605084717274, 0.005421716719865799, -0.004906695801764727, 0.04706845059990883, 0.002005503512918949, 0.022873654961586, 0.0042993067763745785, -0.009136026725172997, 0.005500089842826128, 0.002598897321149707, -0.0013617270160466433, -0.05199474096298218, -0.0013281386345624924, 0.005564467050135136, -0.017779424786567688, 0.005676428321748972, 0.04308263584971428, -0.007932445034384727, 0.029512949287891388, -0.01596565544605255, 0.029042711481451988, -0.029400987550616264, 0.002761240815743804, -0.005130617879331112, 0.02188839763402939], [0.03148559853434563, 0.008552110753953457, -0.03263092041015625, -0.007012406829744577, 0.0015072892419993877, -0.012955124489963055, -0.04419220983982086, 0.008627745322883129, 0.013073978945612907, 0.04423543065786362, -0.01861691288650036, 0.01634787581861019, 0.050783224403858185, -0.00929224956780672, -0.02258232608437538, 0.05756872519850731, -0.03165847808122635, 0.025391612201929092, -0.019027501344680786, -0.0038357540033757687, 0.01821713149547577, 0.04252824932336807, -0.0068557350896298885, -0.03459742292761803, -0.012739025987684727, -0.014986453577876091, 0.026536935940384865, -0.025737369433045387, 0.051085762679576874, -0.028697922825813293, 0.08220399171113968, -0.02552127093076706, 0.02902207151055336, 0.011453237384557724, 0.016596389934420586, 0.03868168964982033, -0.04745529964566231, -0.01378710474818945, 0.03799017146229744, -0.04043208807706833, -0.04131809622049332, 0.04209605231881142, 0.0019921609200537205, 0.006558599416166544, -0.036563921719789505, 0.03680162876844406, 0.03794695436954498, 0.020194435492157936, -0.051561180502176285, 0.02238783799111843, -0.016002118587493896, -0.03386268392205238, -0.006120999343693256, 0.04628836736083031, 0.006828722544014454, 0.04265790805220604, -0.0297135878354311, 0.00028886334621347487, -0.022711986675858498, -0.02582380920648575, -0.04996204748749733, 0.02327384240925312, -0.006812515202909708, 0.042787566781044006, -0.0053268359042704105, 0.015310601331293583, 0.019600162282586098, 0.005748228635638952, -0.03855203092098236, 0.050999321043491364, 0.04296044632792473, -0.012976733967661858, 0.02190161496400833, 0.00914638303220272, 0.005054011009633541, 0.019848676398396492, 0.04041048139333725, -0.002035380806773901, 0.02338189259171486, -0.020086385309696198, -0.02180437184870243, 0.008038876578211784, -0.020280875265598297, 0.006277670618146658, -0.01937325857579708, -0.0001251009525731206, -0.06729317456483841, -0.012479706667363644, -0.018541278317570686, -0.005370055790990591, -0.012749830260872841, 0.028870802372694016, 0.013354906812310219, 0.03366819769144058, 0.020875146612524986, 0.03639104217290878, 0.023597991093993187, 0.008454866707324982, -0.04624514654278755, -0.006283073220402002, -0.0034467761870473623, 0.02435433678328991, -0.027984797954559326, -9.86794984783046e-05, 0.06591013818979263, -0.03360336646437645, -0.06284153461456299, 0.0014978349208831787, 0.02735811099410057, 0.0012743077240884304, -0.037536364048719406, 0.023338673636317253, 0.001555911498144269, 0.03137755021452904, -0.009870314039289951, 0.00659641670063138, -0.04602904990315437, -0.03299828991293907, 0.01237165741622448, -0.007341957651078701, -0.010826551355421543, -0.034532591700553894, -0.007558056153357029, -0.024224678054451942, 0.013128003105521202, -0.028870802372694016, -0.056833989918231964, -0.045899391174316406, -0.025845419615507126, 0.03366819769144058, -0.0016139880754053593, 0.005780643317848444, 0.06815756857395172, 0.006337097845971584, 0.00723390793427825, 0.015526700764894485, 0.02238783799111843, 0.025629321113228798, 0.0008211755193769932, -0.019924310967326164, -0.004835211206227541, -0.004556983709335327, 0.0027957784477621317, 0.031096620485186577, -0.05134508013725281, 0.006536989472806454, 0.03844397887587547, 0.0508696623146534, -0.014251717366278172, -0.03241482377052307, -0.002874114317819476, 0.0007401384646072984, 0.003895181231200695, 0.048924773931503296, 0.007974046282470226, 0.005067517515271902, -0.008336012251675129, 0.026904303580522537, -0.0021609882824122906, 0.03258770331740379, -0.051777277141809464, -0.0002735000743996352, 0.006758490577340126, 0.024375947192311287, 0.021653102710843086, -0.006974589545279741, 0.014759549871087074, -0.011485652066767216, -0.03658553212881088, -0.025672540068626404, -0.027012351900339127, -0.036002062261104584, -0.05376538634300232, -0.006445147562772036, -0.022820034995675087, -0.05229591578245163, 8.551097562303767e-05, 0.0053943670354783535, -0.02113446407020092, -0.04190156236290932, 0.006877345032989979, 0.02172873727977276, -0.03855203092098236, -0.029238170012831688, -0.040756236761808395, 0.02804962731897831, 0.026342445984482765, -0.0014303040225058794, -0.025650929659605026, 0.029475878924131393, 0.011539677157998085, -0.02095078118145466, -0.026536935940384865, -0.0018570992397144437, -0.009432713501155376, 0.01918957568705082, -0.030059346929192543, 0.013992398977279663, 0.0032820007763803005, 0.06962703913450241, -0.009124772623181343, -0.021015610545873642, -0.02727167122066021, -0.02413823828101158, -0.062193240970373154, -0.014662304893136024, -0.004716356750577688, -0.024289507418870926, 0.028200896456837654, 0.04129648581147194, 0.020388923585414886, -0.007142066024243832, -0.025456441566348076, -0.019729822874069214, -0.046893443912267685, 0.031204670667648315, 0.015796823427081108, 0.029281390830874443, 0.017990227788686752, 0.013938373886048794, -0.027487769722938538, -0.05112897977232933, 0.011139893904328346, -0.01821713149547577, 0.029735198244452477, 0.008438658900558949, 0.01910313591361046, -0.027898358181118965, -0.004694746807217598, -0.07982690632343292, -0.05640179291367531, 0.035008009523153305, 0.018055057153105736, -0.01193945948034525, 0.011723360978066921, 0.009254432283341885, -0.03902744874358177, -0.03349531814455986, -0.004219329450279474, 0.02132895402610302, 0.0063749151304364204, -0.005607764236629009, -0.03068603202700615, 0.003598045324906707, 0.016628803685307503, -0.020388923585414886, -0.04168546199798584, 0.012220388278365135, 0.044062551110982895, 0.001731491764076054, 0.06578048318624496, 0.028589874505996704, 0.027422940358519554, -0.0021231709979474545, 0.04140453413128853, 0.013473761267960072, 0.06569404155015945, -0.01280385535210371, 0.053981486707925797, 0.010135035030543804, 0.04263629764318466, -0.013128003105521202, -0.03669358044862747, 0.01741756498813629, -0.05817380174994469, 0.0035224107559770346, 0.009729849174618721, -0.032782189548015594, 0.0072987377643585205, 0.037060946226119995, -0.04337103292346001, 0.059556834399700165, -0.021372172981500626, -0.0022501288913190365, -0.05566705763339996, -0.023619601503014565, -0.017115026712417603, -0.006202036049216986, 0.052252694964408875, -0.003711497178301215, 0.01407883781939745, -0.0012952423421666026, 0.004216628149151802, -0.047195982187986374, 0.002755260095000267, -0.010399756021797657, 0.02338189259171486, -0.01967579685151577, -0.020594216883182526, 0.04693666473031044, 0.03883295878767967, -0.002302803099155426, 0.011853020638227463, 0.0018854622030630708, -0.04987560957670212, 0.02433272823691368, 0.006990796886384487, -0.019935116171836853, 0.011107479222118855, -0.001925980788655579, -0.06971348077058792, -0.010415962897241116, -0.027682259678840637, 0.05726618692278862, -0.024311117827892303, 0.007401384878903627, -0.009108565747737885, 0.031680088490247726, -0.0001672233483986929, 0.005980534944683313, 0.010432170704007149, 0.005948120262473822, -0.026061518117785454, -0.04343586415052414, 0.013614226132631302, -0.010053997859358788, 0.008849246427416801, 0.012133948504924774, 0.02004316635429859, -0.04516465216875076, 0.00723390793427825, -0.0007475668680854142, 0.06660165637731552, -0.028676314279437065, 0.014532646164298058, 0.023835700005292892, 0.04293883591890335, 0.050696782767772675, -0.02660176530480385, 0.01780654303729534, -0.034921567887067795, 0.019427284598350525, -0.011485652066767216, -0.050480686128139496, -0.030405104160308838, 0.002393294358626008, -0.009762263856828213, 0.005667191464453936, -0.01751480996608734, -0.022949695587158203, 0.037341877818107605, -0.030426714569330215, -0.01937325857579708, -0.0037682231049984694, 0.009713642299175262, 0.022949695587158203, 0.026536935940384865, 0.03904905542731285, 0.009546165354549885, 0.06664487719535828, -0.020907560363411903, 0.03719060868024826, -0.05074000358581543, 0.037730854004621506, -0.08108028024435043, -0.030253835022449493, 0.010659074410796165, -0.008011863566935062, 0.04034565016627312, -0.0026674699038267136, -0.009756862185895443, -0.027422940358519554, 0.04576972872018814, 0.06517540663480759, -0.00963800773024559, 0.03204745426774025, -0.030059346929192543, -0.010875172913074493, -0.05588315427303314, 0.016391094774007797, 0.02355477213859558, -0.012058313935995102, -0.013711470179259777, -0.0069421748630702496, -0.00842785369604826, -0.006385720334947109, 0.005262006539851427, -0.014230107888579369, -0.03641265258193016, 0.004824406001716852, 0.00949214119464159, -0.02813606709241867, 0.03915710747241974, -0.0021029117051512003, 0.01762285828590393, 0.007412189617753029, -0.03729865700006485, -0.004556983709335327, 0.06664487719535828, -0.00019415128917898983, 0.006969186943024397, 0.04012954980134964, 0.0009744706330820918, 0.011539677157998085, 0.03652070090174675, -0.01819552108645439, 0.02521873265504837, 0.07152871042490005, -0.026731424033641815, -0.042701128870248795, -0.004565087612718344, -0.04121004417538643, -0.03455420210957527, -0.0018854622030630708, -0.030837301164865494, 0.012101533822715282, 0.01270661037415266, -0.017838958650827408, 0.031312718987464905, -0.0008205001940950751, -0.004910845775157213, 0.016110166907310486, -0.012404072098433971, 0.022344619035720825, 0.020388923585414886, 0.014413791708648205, 0.039005838334560394, 0.04978916794061661, -0.04788750037550926, -0.012155558913946152, 0.014100448228418827, 0.021761151030659676, 0.015699580311775208, 0.04693666473031044, -0.019351650029420853, -0.020961586385965347, 0.02095078118145466, -0.01578601822257042, 0.02113446407020092, -0.04983238875865936, -0.011658531613647938, -0.03124788962304592, 0.029929686337709427, 0.04602904990315437, -0.037557974457740784, -0.03066442348062992, -0.013970788568258286, -0.059945814311504364, -0.03435971215367317, 0.012512121349573135, -0.01451103575527668, 0.027530990540981293, 0.022474277764558792, -0.004224732052534819, -0.028957242146134377, 0.0015613139839842916, -0.004365195985883474, 0.03176652640104294, 0.005386263132095337, 0.011247944086790085, 0.0023055044002830982, -0.0005115464446134865, -0.020529387518763542, -0.022755205631256104, -0.035505037754774094, -0.04568329080939293, -0.011701751500368118, -0.04927053302526474, 0.02385731041431427, -0.017784932628273964, -0.01177738606929779, 0.037536364048719406, -0.008200949989259243, 0.04054014012217522, 0.01270661037415266, -0.004981077741831541, 0.020605022087693214, -0.053506068885326385, 0.013938373886048794, -0.035310547798871994, -0.0053754583932459354, -0.008152328431606293, 0.0047568753361701965, 0.02219334989786148, 0.02299291454255581, 0.04685022309422493, -0.008157730102539062, -0.003376543987542391, -0.014197692275047302, -0.02571575902402401, 0.00822256039828062, 0.044646017253398895, -0.04101555794477463, -0.04404094070196152, -0.00930845644325018, -0.03057798370718956, 0.030318664386868477, -0.018670938909053802, -0.03902744874358177, -0.02530517242848873, -0.028373776003718376, -0.032090675085783005, -2.851069439202547e-05, -0.007028614170849323, -0.028179286047816277, -0.009935143403708935, 0.008060486055910587, 0.009276041761040688, 0.07269564270973206, 0.01348456647247076, -0.0032522871624678373, 0.010626659728586674, 0.00935167632997036, 0.01163692120462656, 0.04784427955746651, 0.01212314423173666, 0.015267381444573402, -0.005191774107515812, -0.005537532269954681, 6.584260700037703e-05, -0.005045907571911812, -0.0017531017074361444, 0.03137755021452904, -0.016315460205078125, 0.0262127872556448, 0.01430574245750904, 0.021091245114803314, 0.04555363208055496, -0.026169566437602043, 0.04337103292346001, 0.020205240696668625, 0.012857879512012005, -0.004954065661877394, -0.03265253081917763, -0.030340274795889854, 0.03135593980550766, 0.007412189617753029, -0.054975539445877075, -0.0017355437157675624, 0.008676367811858654, 0.010178254917263985, -0.04857901483774185, -0.01558072492480278, -0.0034818921703845263, 0.024419166147708893, 0.004889235831797123, 0.00817934051156044, 0.030145784839987755, -0.01996753178536892, 0.045812949538230896, -0.015137722715735435, 0.008249572478234768, 0.021177684888243675, -0.048751894384622574, 0.04149097204208374, 0.020324094220995903, -0.0008887064177542925, -0.0057158139534294605, -0.030145784839987755, 0.012911904603242874, 0.025586100295186043, 0.015829239040613174, 0.025780590251088142, 0.027703868225216866, 0.002229869831353426, 0.020183630287647247, 0.05445690453052521, -0.017071807757019997, 0.015159332193434238, 0.01383032463490963, 0.016790878027677536, -0.01773090846836567, 0.006202036049216986, 0.001399239874444902, -0.02504585310816765, 0.047757837921381, -0.03952447324991226, 0.0037979367189109325, 0.02874114364385605, -0.028978852555155754, -0.05298743024468422, 0.012976733967661858, 0.004694746807217598, -0.014878404326736927, 0.02055099792778492, -0.004727161955088377, 0.019708212465047836, -0.017017781734466553, -0.050307806581258774, 0.03425166383385658, 0.029843246564269066, 0.027703868225216866, -0.013257662765681744, -0.016726048663258553, -0.011809800751507282, -0.00414099358022213, 0.03790373355150223, -0.048838332295417786, -0.035396985709667206, 0.03301990032196045, 0.02044294774532318, -0.015418650582432747, -0.003887077560648322, -0.026644984260201454, 0.017266295850276947, 0.03096696175634861, -0.04965950921177864, 0.05182049795985222, -0.0021515339612960815, 0.012749830260872841, 0.008336012251675129, 0.03898422792553902, 0.006677453406155109, 0.0009528607479296625, 0.017363540828227997, 0.028676314279437065, -0.009405701421201229, 0.02521873265504837, -0.013376517221331596, 0.017482394352555275, 0.020205240696668625, -0.014435401186347008, 0.021977249532938004, 0.002304153749719262, 0.005045907571911812, -0.02064824290573597, -0.03185296803712845, -0.016963757574558258, -0.04092911630868912, 0.023338673636317253, -0.029627148061990738, 0.006585611496120691, -0.0015437559923157096, -0.03824949264526367, -0.023317063227295876, 0.03922193497419357, -0.004524569027125835, -0.009789276868104935, -0.021480223163962364, -0.0020840030629187822, -0.03126949816942215, 0.013311687856912613, -0.007941631600260735, -0.002383840037509799, -0.019924310967326164, -0.021599076688289642, 0.015991313382983208, 0.005229591391980648, -0.015440260991454124, -0.01773090846836567, 0.019719017669558525, 0.021966444328427315, -0.02299291454255581, -0.022928085178136826, 0.012890295125544071, 0.013084783218801022, -0.005921107716858387, 0.010183656588196754, -0.0035386180970817804, 0.012663391418755054, 0.02599668875336647, 0.009459725581109524, -0.0275742094963789, -0.010551025159657001, 0.024224678054451942, 0.0032171711791306734, -0.04149097204208374, 0.018390009179711342, 0.03474869206547737, -0.0238789189606905, -0.014089643023908138, 0.04419220983982086, -0.014770354144275188, -0.008552110753953457, -0.01870335265994072, 0.04041048139333725, 0.032458044588565826, -0.013030759058892727, -0.03760119527578354, -0.030340274795889854, -0.06629911810159683, -0.016974562779068947, 0.0043138726614415646, -0.039005838334560394, -0.0059103029780089855, 0.019740628078579903, -0.025499660521745682, 0.01056183036416769, -0.0008596681291237473, 0.01578601822257042, -0.02640727534890175, -0.023230623453855515, -0.03280379995703697, -0.013365712016820908, -0.02219334989786148, -0.016401899978518486, 0.005872485693544149, -0.0038708702195435762, 0.010124229826033115, 0.01792539656162262, -0.015029673464596272, 0.05043746531009674, -0.01693134196102619, -0.0304915439337492, -0.012728220783174038, 0.03477029874920845, 0.007239310536533594, -0.01245809718966484, 0.00038897787453606725, -0.0002265661023557186, -0.027033962309360504, 0.02766064926981926, -0.018152300268411636, -0.06115596741437912, -0.004497556947171688, -0.014338157139718533, 0.03148559853434563, 0.01163692120462656, 0.043500691652297974, -0.037147387862205505, 0.003333324333652854, 0.04546719044446945, 0.01271741557866335, -0.033949125558137894, -0.03381946682929993, 0.027314890176057816, -0.02474331483244896, 0.02172873727977276, 0.015818433836102486, 0.017968617379665375, -0.01352778635919094, 0.015364626422524452, 0.011355993337929249, -0.016185801476240158, -0.005921107716858387, -0.028849191963672638, 0.010102620348334312, -0.008687173016369343, 0.002209610538557172, 0.009281444363296032, 0.016283046454191208, -0.006012949626892805, 0.00797944888472557, 0.008152328431606293, 0.02219334989786148, -0.0022433758713304996, -0.03552664816379547, 0.03232838213443756, 0.0058778878301382065, -0.003279299708083272, 0.035310547798871994, -0.06850332766771317, 0.02677464485168457, -0.03716899827122688, 0.00847107358276844, 0.023597991093993187, -0.0016518053598701954, -0.01977304182946682, -0.02649371512234211, 0.006137206684798002, 0.013019953854382038, 0.004208524711430073, 0.005786045920103788, -0.04918409138917923, 0.041339702904224396, -0.012609366327524185, -0.028892412781715393, 0.012576951645314693, -0.014435401186347008, 0.0014303040225058794, 0.004554282873868942, 0.014208497479557991, 0.019589358940720558, -0.0015316003700718284, -0.011048052459955215, -0.004408415872603655, -0.055537398904561996, 0.011658531613647938, 0.030016126111149788, 0.021393783390522003, -0.025175511837005615, -0.04758496209979057, 0.004832509905099869, 0.008146925829350948, 0.024959413334727287, -0.0002642145846039057, -0.025975078344345093, -0.03643426299095154, -0.030210616067051888, -0.03351692855358124, 0.005459196399897337, -0.027098791673779488, -0.03673680126667023, 0.0021245216485112906, -0.012317633256316185, 0.026515325531363487, -0.0267962533980608, 0.011064259335398674, 0.03807661309838295, 0.029929686337709427, 0.0036601738538593054, 0.00014249015657696873, -0.011766580864787102, -0.014035618863999844, -0.003914089873433113, 0.0037304058205336332, 0.009400298818945885, -0.014208497479557991, -0.004357092548161745, 0.007963242009282112, 0.026428885757923126, -0.002016472164541483, -0.03174491599202156, 0.03634782135486603, 0.01608855649828911, 0.01207992434501648, -0.00832520704716444, -0.020021555945277214, 0.03232838213443756, -0.04049691930413246, -0.006315487902611494, 0.035396985709667206, 0.04940019175410271, 0.016304656863212585, 0.059167858213186264, -0.03347370773553848, -0.04177190363407135, -0.02219334989786148, -0.010983222164213657, -0.029951296746730804, 0.01378710474818945, -0.014651499688625336, 0.015029673464596272, -0.01722307689487934, 0.02006477490067482, -0.02288486436009407, -0.03213389590382576, 0.030513154342770576, -0.01900589093565941, -0.017568834125995636, 0.016920538619160652, 0.03641265258193016, 0.04801715910434723, -0.018001031130552292, -0.01635868102312088, 0.021685516461730003, 0.0155375050380826, 0.027509380131959915, 0.02084273099899292, 0.013495371676981449, 0.04555363208055496, -0.007120456080883741, -0.03498639911413193, -0.02103722095489502, -0.03371141478419304, 0.019589358940720558, 0.0024324622936546803, -0.016920538619160652, -0.01314961351454258, 0.03459742292761803, 0.003903284901753068, -0.03018900565803051, -0.03740670531988144, 0.010091815143823624, 0.023295452818274498, -0.016477534547448158, 0.006542391609400511, 0.026536935940384865, -0.03643426299095154, -0.036866459995508194, 0.004292262718081474, 0.0032738971058279276, -0.002525655087083578, -0.00851429346948862, 0.0014289534883573651, 0.001943538780324161, 0.000819824927020818, 0.022733595222234726, -0.03716899827122688, -0.02238783799111843, 0.05454334244132042, 0.014132862910628319, 0.01484598871320486, -0.02258232608437538, -0.018930256366729736, -0.007784959860146046, 0.002525655087083578, 0.023144183680415154, -0.008238767273724079, 0.014597475528717041, -0.027811918407678604, 0.05173405632376671, 0.03937320411205292, 0.03565630689263344, -0.006682856008410454, 0.008173937909305096, -0.01897347718477249, 0.045423973351716995, 0.028676314279437065, -0.027617430314421654, 0.029367830604314804, -0.008968100883066654, 7.280673162313178e-05, -0.03273897245526314, 0.03872491046786308, -0.003997828345745802, -0.010740111581981182, 0.015040477737784386, -0.027422940358519554, 0.0602051317691803, -0.004319275263696909, -0.0029983711428940296, -0.029627148061990738, 0.013743884861469269, -0.011355993337929249, -0.02258232608437538, 0.001168284215964377, -0.03258770331740379, 0.007536446209996939, 0.027530990540981293, 0.016477534547448158, 0.003168548922985792, -0.03643426299095154, -0.019221989437937737, 0.035008009523153305, -0.011615311726927757, -0.03509444743394852, 0.023317063227295876, 0.0021677413024008274, -0.0069043575786054134, 9.572502312948927e-05, -0.006110194139182568, -0.0516476184129715, -0.019135551527142525, -0.02297130413353443, 0.011269553564488888, 0.0025297068059444427, 0.02016201987862587, 0.0009629903943277895, -0.016920538619160652, -0.05579671636223793, 0.03308472782373428, 0.004011334385722876, 0.007287932559847832, 0.011572091840207577, 0.018465643748641014, 0.006542391609400511, 0.0006867890479043126, 0.011377602815628052, -0.02822250686585903, 0.02969197742640972, 0.004689344204962254, -0.011064259335398674, -0.0016747658373788, -0.011744971387088299, -0.006256060674786568, -0.009216614998877048, 0.024570435285568237, 0.07299818098545074, -0.0063208905048668385, 0.03846558928489685, -7.677417306695133e-05, 0.010659074410796165, -0.0047028507106006145, 0.018951866775751114, 0.0018179313046857715, 0.025888638570904732, -0.0027052871882915497, -0.02794157713651657, -0.015440260991454124, 0.03498639911413193, 0.042506638914346695, 0.031010180711746216, -0.01703939214348793, 0.03457581251859665, 0.024981023743748665, -0.009416506625711918, -0.00959478784352541, 0.010583439841866493, -0.006591014098376036, -0.017752518877387047, -0.051172200590372086, 0.014932428486645222, 0.017277101054787636, 0.036282993853092194, 0.05445690453052521, -0.011993484571576118, -0.039891842752695084, 0.02552127093076706, 0.005559142213314772, -0.014251717366278172, 0.011723360978066921, -0.006245255935937166, 0.03974057361483574, 0.0045975022949278355, 0.025586100295186043, 0.003195561235770583, 0.0021218203473836184, -0.027811918407678604, 0.001925980788655579, 0.018173910677433014, 0.02629922702908516, 0.022279787808656693, 0.01780654303729534, 0.01280385535210371, -0.0051998780108988285, 0.02004316635429859, 0.014878404326736927, 0.012209583073854446, -0.02766064926981926, -0.0015680671203881502, 0.04101555794477463, -0.02582380920648575, -0.01284707523882389, 0.013635835610330105, 0.04159902408719063, 0.009643410332500935, 0.004378702491521835, -0.0041004749946296215, -0.019157160073518753, 0.039286766201257706, 0.0058778878301382065, -0.0004186914593447, 0.03180974721908569, -0.022031275555491447, -0.045121435075998306, 0.014132862910628319, -0.03174491599202156, -0.017666079103946686, -0.00968122761696577, -0.03431649133563042, 0.02491619437932968, 0.018854621797800064, 0.019924310967326164, -0.008908674120903015, -0.005256603937596083, 0.016283046454191208, -0.005613166838884354, -0.02131814882159233, -0.0033036107197403908, 0.03263092041015625, -0.006169621367007494, 0.04538075253367424, 0.019211186096072197, 0.008227963000535965, 0.010680683888494968, -0.0007279829005710781, -0.021372172981500626, 0.00261614634655416, 0.034619029611349106, -0.004929754417389631, -0.02824411541223526, -0.027703868225216866, 0.03085891157388687, 0.027725478634238243, -0.0047919913195073605, 0.04088589549064636, 0.026320837438106537, 0.04121004417538643, -0.010967015288770199, -0.021988054737448692, 0.01996753178536892, -0.04304688423871994, 0.011604506522417068, -0.030988570302724838, -0.03496478870511055, -0.029259780421853065, -0.014132862910628319, -0.03222033381462097, 0.005618569441139698, -0.008600733242928982, -0.023727649822831154, -0.01861691288650036, -0.028287336230278015, 0.045726511627435684, -0.02744455076754093, -0.029670368880033493, -0.013214442878961563, 0.025067463517189026, 0.03260931372642517, -0.02882758341729641, -0.02608312852680683, -0.00910316314548254, 0.01138840802013874, 0.01022147387266159, 0.009708239696919918, -0.022474277764558792, -0.015029673464596272, -0.013408931903541088, 0.01309558842331171, -0.003573734313249588, 0.016045337542891502, 0.029000461101531982, 0.011075064539909363, 0.00128983985632658, 0.0006212841253727674, 0.002209610538557172, 0.032674141228199005, -0.03544020652770996, -0.0133981266990304, -0.004400312434881926, -0.013387322425842285, -0.003757418366149068, 0.011961069889366627, 0.014737939462065697, 0.003711497178301215, 0.03876812756061554, 0.027487769722938538, 0.04233375936746597, -0.030902132391929626, 0.029648758471012115, 0.011539677157998085, 0.01451103575527668, -0.038033392280340195, 0.04749852046370506, -0.01198267936706543, 0.0029497488867491484, 0.022171739488840103, -0.021091245114803314, -0.003381946589797735, 0.04129648581147194, -0.012955124489963055, 0.020875146612524986, -0.0026553142815828323, -0.011474847793579102, 0.009529958479106426, -0.033063121140003204, 0.019016696140170097, 0.0009103163029067218, 0.04287400469183922, -0.040950726717710495, 0.004286860581487417, -0.015494285151362419, 0.02036731317639351, 0.005486208945512772, 0.0072987377643585205, -0.00924902968108654, 0.04207444190979004, 0.0013539941282942891, 0.004613709636032581, 0.026623375713825226, -0.0050053889863193035, 0.005478105042129755, -0.010831953026354313, 0.02629922702908516, 0.004262549336999655, -0.0003663550305645913, -0.04442991688847542, 0.0066072214394807816, 0.012404072098433971, 0.03301990032196045, 0.0072987377643585205, -0.011518066748976707, -0.008627745322883129, -0.04207444190979004, -0.0004956766497343779, 0.028179286047816277, 0.07533205300569534, 0.014381377026438713, 0.004851418547332287, 0.02513229288160801, 0.05739584565162659, -0.004673136863857508, 0.011561286635696888, 0.015840044245123863, 0.006493769586086273, 0.02142619900405407, -0.014629890210926533, 0.04758496209979057, 0.013905959203839302, 0.0026809759438037872, -0.044948555529117584, -0.0034764898009598255, -0.014478621073067188, -0.023209013044834137, 0.01323605328798294, -0.02044294774532318, 0.02999451570212841, -0.035591475665569305, 0.01455425564199686, 0.004400312434881926, 0.012490511871874332, -0.03420844301581383, -0.013225248083472252, 0.005386263132095337, -0.03301990032196045, 0.015602335333824158, 0.03727704659104347, 0.028460215777158737, -0.0304915439337492, -0.042787566781044006, 0.005461897701025009, -0.025953467935323715, -0.03008095547556877, -0.01276063546538353, 0.000131094318930991, 0.036780018359422684, 0.01793620176613331, 0.014284132048487663, -0.041728682816028595, -0.001812528818845749, 0.021977249532938004, 0.021663906052708626, -0.038897786289453506, -0.04166385158896446, 0.03241482377052307, -0.012220388278365135, 0.04801715910434723, 0.014921623282134533, -0.055278077721595764, -0.020334899425506592, -0.01558072492480278, -0.006304683163762093, 0.008730391971766949, -0.041058775037527084, -0.01430574245750904, 0.020615827292203903, 0.015753604471683502, 0.011247944086790085, -0.009767666459083557, -0.03766602650284767, 0.011015637777745724, -0.01753641851246357, -0.025586100295186043, -0.019589358940720558, 0.02318740449845791, -0.007828179746866226, -0.015569919720292091, -0.0281576756387949, -0.005591556895524263, 0.028784362599253654, 0.007341957651078701, 0.02043214440345764, -0.011593702249228954, 0.024008579552173615, -0.021058829501271248, -0.0009906780906021595, -0.007115053944289684, -0.020118800923228264, 0.014316546730697155, 0.046590905636548996, 0.01086436863988638, 0.010259291157126427, -0.004635319579392672, 0.02277681604027748, 0.007174480706453323, -0.010734708979725838, 0.027487769722938538, 0.006488366983830929, 0.006893552374094725, 0.011366797611117363, 0.013333297334611416, 0.005985937546938658, -0.020605022087693214, -0.016963757574558258, 0.0077957650646567345, 0.004592100158333778, -0.0012040756409987807, -0.017504004761576653, -0.01460828073322773, 0.03719060868024826, -0.009232821874320507, -0.005953522399067879, -0.030534762889146805, 0.019719017669558525, -0.012155558913946152, -0.043673571199178696, -0.012004289776086807, -0.03124788962304592, 0.008244169875979424, -0.012360852211713791, -0.00837923213839531, -0.0009771718177944422, 0.031701698899269104, 0.008557513356208801, 0.007617483381181955, 0.010848160833120346, -0.024959413334727287, -0.020107995718717575, 0.041923172771930695, -0.008730391971766949, -0.004586697556078434, 0.025261951610445976, -0.008287389762699604, 0.0528145506978035, 0.0493137501180172, 0.008038876578211784, -0.017363540828227997, 0.020107995718717575, 0.012901099398732185, 0.021393783390522003, -0.008298194967210293, -0.014748744666576385, -0.0022015066351741552, -0.023792481049895287, 0.0031901588663458824, -0.005445690359920263, -0.010356536135077477, 0.05130185931921005, -0.04831969738006592, -0.027293281629681587, -0.04151258245110512, -0.0022123116068542004, -0.01644512079656124, -0.0035008008126169443, 0.021793566644191742, 0.0035224107559770346, 0.042204100638628006, 0.024008579552173615, 0.006093986798077822, -0.0026296526193618774, 0.016045337542891502, -0.0014681214233860373, -0.005478105042129755, -0.037255436182022095, 0.02394375018775463, 0.005753631237894297, -0.01900589093565941, 0.0064667570404708385, -0.03405717387795448, -0.0023541266564279795, -0.0007975397165864706, 0.020086385309696198, -0.013679055497050285, -0.001446511480025947, -0.009173395112156868, -0.003295507049188018, -0.0015234966995194554, -0.01918957568705082, -0.01416527759283781, 1.8676510080695152e-05, -0.054586563259363174, -0.01936245523393154, 0.002532408107072115, -0.005081023555248976, -0.0029767611995339394, 0.012868684716522694, 0.003954608459025621, 0.0072447131387889385, -0.00047474208986386657, 0.008984308689832687, -0.005351147148758173, -0.018811402842402458, -0.04019438102841377, -0.020097190514206886, 0.0019692005589604378, 0.0028579069767147303, 0.023446721956133842, -0.003022682387381792, 0.007801167666912079, -0.022560717537999153, -0.01752561517059803, -0.010891380719840527, -0.013322492130100727, 0.028460215777158737, 0.0002947722969111055, -0.026126347482204437, -0.005529428832232952, -0.011129089631140232, -0.030621202662587166, 0.0014802769292145967, 0.008481878787279129, -0.03196101635694504, -0.010588842444121838, -0.00030827848240733147, -0.0033387267030775547, 0.014402986504137516, -0.008260377682745457, 0.007720130495727062, 0.012306828051805496, 0.01008641254156828, 0.021847590804100037, 0.010124229826033115, 0.03133432939648628, 0.018768182024359703, -0.004586697556078434, -0.034424543380737305, -0.03399234637618065, -0.006877345032989979, -0.021350564435124397, -0.03556986525654793, -0.016499144956469536, -0.001676116487942636, -0.009762263856828213, 0.0041680061258375645, 0.019502919167280197, -0.029043681919574738, 0.022366227582097054, -0.029086900874972343, 0.005802253261208534, 0.00779036246240139, 0.0012263607932254672, -0.012177168391644955, -0.014014008454978466, 0.018541278317570686, 0.008735794574022293, -0.013959984295070171, 0.007952436804771423, 0.0037736257072538137, -0.008919479325413704, 0.02718523144721985, 0.005667191464453936, 0.021545052528381348, 0.005332238506525755, 0.009113967418670654, -0.015180942602455616, -0.031593646854162216, 0.01562394481152296, -0.046979885548353195, -0.007801167666912079, -0.0076553006656467915, 0.03623977303504944, 0.0010548323625698686, 0.032868631184101105, 0.01606694795191288, -0.04637480899691582, -0.03513766825199127, -0.01665041409432888, -0.021869201213121414, 0.021599076688289642, 0.03038349375128746, 0.04646124690771103, 0.022820034995675087, 0.01900589093565941, 0.017698492854833603, -0.06374914944171906, 0.031593646854162216, 0.03496478870511055, -0.022128518670797348, 0.013808715157210827, -0.03682323917746544, -0.015386235900223255, -0.026904303580522537, 0.03366819769144058, 0.03304151073098183, -0.03224194422364235, 0.010940003208816051, -0.01702858693897724, 0.0034548798575997353, 0.03301990032196045, -0.012058313935995102, -0.011107479222118855, 0.001114934915676713, -0.003662874922156334, 0.0040464503690600395, -0.021015610545873642, -0.006828722544014454, -0.00635330518707633, 0.0027295981999486685, 0.03088052198290825, -0.0012594509171321988, -0.020615827292203903, -0.016380291432142258, -0.016131777316331863, 0.04754174128174782, 0.011907044798135757, -0.04021599143743515, 0.012685000896453857, -0.026342445984482765, 0.050480686128139496, 0.005618569441139698, 0.0029875661712139845, 0.0076228859834373, 0.015559115447103977, -0.0014113953802734613, 0.014673110097646713, -0.012252802960574627, -0.011118284426629543, -0.014694719575345516, 0.025197122246026993, -0.014035618863999844, 0.01168014109134674, 0.026515325531363487, -0.03213389590382576, -0.042031221091747284, 0.010459182783961296, -0.003565630642697215, 0.00713126128539443, -0.002847102005034685, -0.037622805684804916, -0.042787566781044006, 0.042117659002542496, 0.014348961412906647, -0.021372172981500626, 0.010497000068426132, -0.030642813071608543, 0.0013843830674886703, 0.00518907280638814, -0.02660176530480385, -0.03183135762810707, -0.001639649854041636, -0.002587783383205533, 0.0028687119483947754, -0.015278186649084091, -0.039783794432878494, -0.016996173188090324, -0.017741713672876358, -0.0012952423421666026, 0.0036520701833069324, -0.0027039365377277136, 0.007061028853058815, -0.016012921929359436, 0.016520755365490913, -0.007757947780191898, 0.017676884308457375, -0.0021137166768312454, -0.00852509867399931, 0.025931859388947487, 0.0061804261058568954, -0.00766610587015748, -0.0076877158135175705, 0.012317633256316185, -0.031788136810064316, 0.022452667355537415, 0.00974065437912941, 0.007044821511954069, -0.011744971387088299, -0.01490001380443573, 0.04138292372226715, -0.0006756464717909694, 0.04175029322504997, 0.01899508573114872, -0.02153424732387066, -0.021545052528381348, -0.01002698577940464, 0.01323605328798294, 0.01169094629585743, 0.010437573306262493, -0.04226892814040184, -0.025564489886164665, -0.011323578655719757, 0.05138830095529556, -0.03304151073098183, 0.0058778878301382065, 0.014251717366278172, 0.013279272243380547, -0.0014829781139269471, 0.03857364133000374, 0.0012938916916027665, -0.021599076688289642, -0.023814089596271515, -0.0002140728902304545, -0.010048595257103443, 0.02318740449845791, 0.026147957891225815, 0.0018489955691620708], [0.027527272701263428, 0.0354580394923687, 0.04067245498299599, 0.010398518294095993, -0.012708626687526703, 0.007227424997836351, -0.020724277943372726, -0.020869795233011246, 0.03155328705906868, 0.010695618577301502, -0.015085430815815926, -0.011592983268201351, 0.0336633063852787, -0.005932915490120649, -0.026654161512851715, 0.033299513161182404, 0.030680175870656967, 0.05030093714594841, -0.00014580284187104553, 0.029855571687221527, 0.011532350443303585, 0.06223346292972565, 0.0004483034717850387, -0.01983903907239437, -0.01668613590300083, 0.0027406008448451757, 0.008694738149642944, -0.06310657411813736, 0.038562435656785965, -0.04222465306520462, 0.04586261883378029, -0.021366983652114868, 0.04918529465794563, 0.008925141766667366, -0.003507605055347085, 0.022300729528069496, -0.07513611763715744, 0.003565206192433834, 0.0018144353525713086, -0.025150468572974205, -0.010871454142034054, 0.01976628042757511, -0.018020056188106537, -0.03339652344584465, -0.0569462887942791, 0.05893504247069359, 0.011623299680650234, -0.04928230866789818, 0.011156427673995495, 0.054909028112888336, 0.005623688455671072, 0.0197905320674181, 0.016273831948637962, 0.047245047986507416, 0.026726920157670975, 0.03929002955555916, 0.015461353585124016, -0.019390355795621872, 0.009695177897810936, -0.0030316379852592945, -0.015158189460635185, 0.029127977788448334, -0.01134438905864954, 0.03279019519686699, 0.006548338104039431, 0.004153343848884106, -0.013375586830079556, 0.02580530196428299, -0.05743135139346123, 0.03766506910324097, 0.05510305240750313, 0.03189283236861229, -0.005690384656190872, -0.012575234286487103, -0.002487458987161517, -0.010525846853852272, 0.02401057258248329, 0.003701630048453808, 0.016091935336589813, 0.005593372043222189, 0.0063118701800704, 0.046711478382349014, -0.017486488446593285, 0.032765943557024, -0.027866816148161888, 0.0006142856436781585, -0.01348472572863102, 0.0032802321948111057, 0.01144140213727951, 0.0028300341218709946, 0.021124454215168953, 0.041642580181360245, 0.011204933747649193, 0.04195787012577057, 0.018917420879006386, 0.03024362027645111, -0.03230513259768486, -0.0029088566079735756, -0.06097230315208435, 0.03400285169482231, 0.012635867111384869, -0.013727257028222084, -0.02433799020946026, -0.03325100615620613, 0.05393890291452408, -0.07130412757396698, -0.07130412757396698, 0.02490793727338314, 0.013436219654977322, 0.009234369732439518, -0.02689669281244278, 0.027963828295469284, -0.021742908284068108, 0.02840038388967514, 0.026726920157670975, 0.013557485304772854, -0.013120928779244423, -0.039047498255968094, 0.020311973989009857, -0.018796155229210854, 0.015000544488430023, 0.0013111834414303303, -0.013593864627182484, -0.046371933072805405, -0.017159070819616318, 0.007742803543806076, -0.04811815917491913, -0.0341968759894371, -0.022227969020605087, -0.010659239254891872, -0.0045656468719244, -0.026848185807466507, 0.07436001300811768, -0.036161378026008606, -0.014733760617673397, -0.019002307206392288, 0.02941901423037052, -0.0004551246529445052, 0.0033257068134844303, -0.005590340588241816, -0.016104061156511307, 0.021209338679909706, 0.017741145566105843, -0.006936387624591589, -0.05316280201077461, 0.01361811812967062, 0.0032984220888465643, 0.046638719737529755, -0.023198094218969345, -0.0038835282903164625, -0.005751017481088638, 0.01675889454782009, -0.011787008494138718, 0.02922498993575573, -0.027430260553956032, -0.03839266300201416, -0.004132122732698917, 0.017947297543287277, 0.00976793747395277, 0.048967014998197556, -0.05825595557689667, -0.005829839967191219, 0.03155328705906868, -0.03715575486421585, 0.04360708221793175, -0.02738175354897976, 0.026872439309954643, 0.013387713581323624, -0.05000989884138107, -0.02013007551431656, -0.0032438526395708323, -0.030680175870656967, -0.051901642233133316, 0.005820745136588812, -0.02820635959506035, -0.042612701654434204, -0.008233929052948952, -0.01361811812967062, 0.00041495545883663, -0.07338989526033401, -0.003868370084092021, 0.0035864277742803097, -0.00946477334946394, -0.01006503775715828, -0.018796155229210854, 0.026435883715748787, 0.003698598360642791, -2.932162351498846e-05, -0.01314518228173256, 0.007797372993081808, 0.008239991962909698, -0.017704766243696213, 0.017195450142025948, -0.008118726313114166, -0.009197989478707314, -0.026047833263874054, -0.03128650411963463, -0.01667400822043419, 0.0010580417001619935, 0.0017477392684668303, -0.0010694103548303246, -0.04353431984782219, -0.00563581520691514, -0.01485502626746893, -0.06640499830245972, 0.011362578719854355, 0.03458492457866669, -0.001463523251004517, 0.026872439309954643, 0.025004949420690536, 0.03502148017287254, -0.011035162024199963, -0.017025679349899292, -0.006390692666172981, -0.00012581297778524458, -0.010641049593687057, 0.03502148017287254, 0.043000753968954086, 0.04586261883378029, 0.04518353193998337, -0.004768766462802887, -0.01125343982130289, -0.022033944725990295, -0.023792294785380363, 0.050397951155900955, 0.03836841136217117, -0.00025636289501562715, 0.014260824769735336, 0.009949835948646069, -0.10011681169271469, -0.03693747892975807, 0.039387039840221405, 0.015594745986163616, -0.028085093945264816, 0.013096676208078861, 0.026047833263874054, -0.01245396863669157, -0.02723623625934124, 0.0038319905288517475, -0.021815666928887367, 0.04535330459475517, 0.026993704959750175, -0.011708186008036137, -0.00882812961935997, 0.012466095387935638, -0.006815121974796057, -0.021282099187374115, 0.0023161715362221003, 0.0411817692220211, 0.014794393442571163, 0.03502148017287254, 0.01238120999187231, 0.02163376845419407, -0.019887546077370644, 0.003941129427403212, 0.027139224112033844, 0.012193247675895691, -0.0033893713261932135, 0.06524085253477097, -0.02963729202747345, 0.0032499160151928663, 0.02750301919877529, -0.04016314074397087, -0.006815121974796057, -0.07081906497478485, 0.029443267732858658, 0.0197905320674181, -0.03160179406404495, -0.01751074008643627, 0.022300729528069496, -0.06713259220123291, 0.03967807814478874, 0.023622523993253708, -0.04666297137737274, -0.023828674107789993, 0.002842160640284419, -0.0026117560919374228, 0.0018341409740969539, 0.03152903541922569, 0.03140776976943016, 0.012672246433794498, 0.00533568300306797, 0.024823050945997238, -0.035336773842573166, 0.02254326082766056, 0.024519888684153557, -0.005281113553792238, 0.0022828234359622, -0.023392118513584137, 0.06276703625917435, -0.010283316485583782, -0.0010027142707258463, -0.009197989478707314, 0.022931309416890144, -0.017704766243696213, 0.012902650982141495, -0.011962843127548695, -0.03798035904765129, 0.06271852552890778, -0.0018947736825793982, -0.054520975798368454, -0.011132175102829933, -0.014964165166020393, 0.030219366773962975, -0.017304589971899986, 0.009828570298850536, 0.019923925399780273, 0.03237789496779442, 0.023998446762561798, -0.049912888556718826, -0.029758557677268982, -0.019826913252472878, -0.06048724055290222, -0.021573135629296303, 0.005275050178170204, -0.00925862230360508, -0.005514549557119608, -0.012199311517179012, 0.0032226312905550003, -0.03941129520535469, 0.02558702416718006, 0.01905081234872341, 0.035142745822668076, -0.018577877432107925, 0.03453642129898071, 0.003186251502484083, 0.005305366590619087, 0.03477895259857178, -0.023125333711504936, 0.004692975431680679, -0.023731661960482597, 0.0014188066124916077, -0.003965382464230061, 0.0236346498131752, -0.030825695022940636, -0.014454849995672703, -0.012332702986896038, 0.043073512613773346, -0.04365558549761772, -0.012599487788975239, -0.009616355411708355, 0.006936387624591589, -0.03984785079956055, -0.011423211544752121, 0.005987484939396381, 0.01795942336320877, 0.010052911937236786, 0.05718882009387016, 0.007075842935591936, 0.03407561033964157, 0.0165648702532053, 0.022700905799865723, 0.023016195744276047, 0.02340424433350563, -0.03557930514216423, -0.01335133332759142, 0.04887000471353531, -0.005566087551414967, 0.017086312174797058, 0.04052693769335747, -0.021742908284068108, -0.0054387585259974, 0.013775763101875782, 0.02621760591864586, -0.009040344506502151, -0.0030149640515446663, -0.029394762590527534, -0.04515928030014038, 0.04722079262137413, 0.008330941200256348, 0.00012448662891983986, -0.007900448516011238, -0.050883013755083084, 0.0009011544170789421, 0.04258845001459122, 0.004999171011149883, 0.011113984510302544, 0.010101418010890484, -0.04038141667842865, 0.03286295756697655, -0.006202731281518936, -0.0010330306831747293, 0.015982795506715775, 0.04823942482471466, 0.06097230315208435, 0.018771901726722717, -0.013981914147734642, 0.01279351208359003, 0.04661446437239647, 0.0098043167963624, -0.033493537455797195, 0.030631670728325844, 0.010434897616505623, -0.0273089949041605, -0.010950276628136635, -0.0035894594620913267, 0.00646951561793685, 0.05563662201166153, -0.027211982756853104, -0.044455938041210175, -0.05849848687648773, -0.025344492867588997, 0.003537921467795968, -0.02299194224178791, -0.02709071710705757, 0.0200573168694973, 0.00930106546729803, -0.026120593771338463, 0.04496525600552559, 0.012611613608896732, 0.01761987991631031, 0.012320577166974545, 0.010295442305505276, 0.018723396584391594, 0.08197548985481262, -0.017898790538311005, -0.01592216268181801, 0.050737492740154266, -0.03645241633057594, -0.0027072527445852757, 0.02641163021326065, 0.03962957113981247, -0.0236346498131752, 0.05059197545051575, -0.005884409416466951, -0.0014953553909435868, -0.017437981441617012, -0.05098002403974533, 0.030073849484324455, -0.0533568300306797, -0.03531251847743988, -0.005441789980977774, 0.05277475342154503, 0.03650091961026192, -0.03836841136217117, -0.04920954629778862, 0.014685254544019699, -0.013703003525733948, -0.030195115134119987, 0.0018765839049592614, -0.018359599635004997, -0.00667566666379571, -0.0007582884281873703, 0.009252559393644333, -0.06349462270736694, -0.0395810641348362, -0.009840697050094604, -0.004508045502007008, -0.006960640661418438, -0.016176819801330566, 0.0008132368675433099, 0.03393009305000305, -0.039653826504945755, -0.012344829738140106, -0.04887000471353531, -0.018541498109698296, -0.02641163021326065, -0.011126111261546612, -0.0696549117565155, -0.05942010506987572, 0.02471391297876835, 0.026241857558488846, 0.0252474807202816, 0.03383307904005051, 0.005305366590619087, 0.05034944415092468, -0.034463658928871155, 0.012538854964077473, 0.0028103285003453493, -0.040332913398742676, -0.017110565677285194, 0.0270422101020813, 0.029103724285960197, 0.003841085359454155, 0.005014329217374325, 0.005593372043222189, -0.013290700502693653, 0.002050903160125017, -0.028715675696730614, -0.029928330332040787, 0.01395766157656908, 0.03628264367580414, -0.02888544648885727, -0.01860213093459606, 0.06689006090164185, 0.018238333985209465, 0.01795942336320877, -0.01237514615058899, -0.0510285310447216, -0.0386837013065815, -0.03072868287563324, -0.01470950711518526, 0.023040449246764183, -0.010816884227097034, -0.014830772764980793, -0.007591221481561661, 0.042127642780542374, -0.010453088209033012, 0.05456948280334473, -0.01717119663953781, 0.04406788945198059, 0.018201954662799835, 0.012902650982141495, 0.02716347575187683, 0.06737512350082397, 0.0074942088685929775, -0.046226415783166885, 0.018323220312595367, 0.025538519024848938, -0.0073911333456635475, -0.020336227491497993, -0.008809939958155155, -0.011532350443303585, -0.04195787012577057, -0.008943332359194756, -0.02125784568488598, 0.012059856206178665, 0.01059254352003336, -0.033299513161182404, 0.03594309836626053, 0.018468739464879036, 0.004019951913505793, 0.019329722970724106, -0.037737831473350525, -0.02895820513367653, 0.016855906695127487, -0.010847200639545918, -0.057867906987667084, -0.020045191049575806, 0.005211385898292065, -0.0063846297562122345, -0.0657259151339531, -0.024738166481256485, 0.003404529532417655, 0.039241522550582886, 0.006427072454243898, -0.011659679934382439, 0.019414609298110008, -0.02641163021326065, 0.014151685871183872, 0.010774441063404083, -0.04586261883378029, 0.021172959357500076, -0.02483517862856388, 0.019669266417622566, -0.012399399653077126, 0.02696945145726204, 0.020603012293577194, -0.026460137218236923, 0.024859432131052017, -0.018347473815083504, 0.009179799817502499, 0.03805312141776085, 0.012866271659731865, 0.0025132279843091965, -0.0025450601242482662, 0.058546993881464005, -0.020239215344190598, 0.030146608129143715, 0.014745887368917465, 0.03395434468984604, -0.010095354169607162, -0.002140336437150836, -0.021621642634272575, -0.0005737374885939062, 0.07193470746278763, -0.010495530441403389, -0.032183870673179626, 0.022822171449661255, -0.01048340369015932, -0.06431923061609268, 0.030292127281427383, 0.0004107869463041425, 0.001037578098475933, 0.03184432536363602, -0.0065665277652442455, 0.018687017261981964, -0.0219369325786829, -0.04195787012577057, -0.0197905320674181, 0.02682393230497837, -0.007906511425971985, -0.013836395926773548, 0.0037925790529698133, -0.024774545803666115, 0.017644133418798447, 0.025295987725257874, -0.027017958462238312, -0.012150805443525314, 0.02122146636247635, -0.03567631542682648, -0.008337004110217094, -0.01164755318313837, -0.02798808179795742, 0.027066463604569435, 0.026993704959750175, -0.0313350111246109, 0.045741353183984756, -0.02510196343064308, 0.019511621445417404, 0.015449226833879948, -0.008597725071012974, 0.0065180216915905476, 0.03674345090985298, -0.0006529390229843557, 0.0010095353936776519, -0.04220040142536163, 0.014770139940083027, 0.02234923467040062, 0.019620761275291443, 0.039799343794584274, -0.01127163041383028, 0.01991179771721363, -0.013630243949592113, -0.03262042626738548, -0.02422885037958622, -0.023185966536402702, -0.0255142655223608, -0.04038141667842865, -0.014697381295263767, -0.003346928395330906, 0.012047729454934597, 0.03114098496735096, -0.002028165850788355, -0.026193352416157722, 0.04161832481622696, 0.009664861485362053, -0.0238165482878685, -0.03385733440518379, 0.01224781759083271, -0.026363123208284378, 0.001264193095266819, -0.012138678692281246, -0.024107584729790688, -0.002085766987875104, -0.02205819822847843, 0.010847200639545918, -0.011495971120893955, 0.032135363668203354, -0.021391237154603004, 0.022591765969991684, -0.0024829115718603134, 0.014151685871183872, -0.00968911498785019, 0.02347700484097004, 0.014285078272223473, -0.012647993862628937, 0.0020903144031763077, 0.02358614280819893, 0.014285078272223473, -0.006906071212142706, 0.006499832030385733, 0.0011398958740755916, -0.016128314658999443, 0.016237452626228333, -0.01709843799471855, -0.008027777075767517, 0.05781939998269081, 0.026193352416157722, 0.01570388488471508, -0.03902324289083481, 0.023646775633096695, -0.0179958026856184, -0.04341305419802666, 0.009210116229951382, 0.031019719317555428, -0.0026193351950496435, -0.011683932505548, -0.022324983030557632, -0.039314281195402145, -0.05325981602072716, -0.040696706622838974, 0.016661882400512695, -0.025295987725257874, 0.00680905906483531, 0.027430260553956032, -0.044649966061115265, -0.004868810530751944, 0.028085093945264816, 0.04612940177321434, -0.002153978683054447, -0.018735522404313087, -0.021839920431375504, 0.014806520193815231, -0.02111232653260231, -0.004286736249923706, 0.011289820075035095, -0.019438862800598145, 0.017498614266514778, 0.012478222139179707, 0.004116964526474476, 0.07819201052188873, 0.0018220144556835294, -0.00997408851981163, -0.025223227217793465, -0.0023404245730489492, -0.010531910695135593, -0.024325862526893616, -0.004286736249923706, -0.009440520778298378, 0.015255202539265156, 0.005196227692067623, -0.003343896707519889, -0.07115861028432846, 0.0003925971104763448, -0.0011156427208334208, 0.008537092246115208, 0.02036048099398613, -0.005417536944150925, -0.02378016896545887, -0.0059450422413647175, 0.018080689013004303, -0.05558811500668526, -0.00019241427071392536, 0.006139067001640797, 0.04091498628258705, -0.030946960672736168, 0.021051693707704544, 0.036161378026008606, 0.04346156120300293, -0.013775763101875782, 0.0035318583250045776, -0.02471391297876835, -0.0340271033346653, 0.03936278820037842, -0.041230276226997375, 0.020190708339214325, -0.006608970928937197, -0.01104728877544403, 0.04093923792243004, 0.01683165319263935, 0.026363123208284378, 0.0059996116906404495, -0.0028376132249832153, 0.0010489467531442642, 0.038028866052627563, -0.0313350111246109, 0.020687896758317947, 0.008646231144666672, -0.008955458179116249, 0.023125333711504936, -0.05427844822406769, 0.012369083240628242, -0.05898354947566986, -0.008209675550460815, 0.021354857832193375, -0.04091498628258705, 0.02510196343064308, -0.028351878747344017, 0.012563107535243034, 0.009828570298850536, 0.008403700776398182, 0.004283704329282045, -0.016989300027489662, 0.05025243014097214, -0.0023707409854978323, -0.02854590304195881, 0.02539299987256527, 0.018723396584391594, 0.0017204545438289642, -0.019620761275291443, -0.01412743330001831, 0.008797813206911087, 0.013096676208078861, -0.014175939373672009, -0.016273831948637962, -0.03443940728902817, -0.005587308667600155, 0.009064598008990288, 0.0129390312358737, -0.006117845419794321, -0.037398286163806915, 0.017607754096388817, 0.016467858105897903, 0.02546575851738453, -0.0036288707051426172, -0.026799680665135384, -0.01310880295932293, -0.023452751338481903, -0.006178478244692087, 0.036040112376213074, -0.04789987951517105, 0.0036137124989181757, 0.0027694012969732285, 0.0019584381952881813, -0.010228746570646763, -0.009149483405053616, 0.014018294401466846, 0.00036967036430723965, 0.029588786885142326, -0.02607208676636219, -0.008215739391744137, -0.015158189460635185, -0.0029543312266469, 0.022106703370809555, -0.006305806804448366, 0.0127571327611804, -0.030413392931222916, 0.009852823801338673, 0.01717119663953781, 0.01919633150100708, -0.028982458636164665, -0.006784806028008461, 0.05359936133027077, 0.019402483478188515, 0.0038532118778675795, -0.021233592182397842, -0.028909699991345406, 0.015255202539265156, -0.02505345642566681, -0.010653175413608551, 0.025975074619054794, 0.010307569056749344, 0.025756796821951866, 0.05161060392856598, -0.0402844063937664, -0.03618562966585159, 0.016443604603409767, -0.018541498109698296, -0.0499613955616951, 0.004335242323577404, -0.024580521509051323, 0.010610733181238174, -0.010901770554482937, 0.023052575066685677, -0.01971777342259884, -0.026654161512851715, 0.03201409801840782, 0.010980593040585518, -0.0074699558317661285, -0.008440080098807812, 0.036646440625190735, 0.06252450495958328, -0.01258736103773117, -0.02088192291557789, 0.054909028112888336, -0.01433358434587717, -0.006699920166283846, -0.01002865843474865, 0.008197548799216747, 0.04481973499059677, 0.009179799817502499, -0.0009905877523124218, 0.007936827838420868, -0.03305698186159134, 0.02449563518166542, 0.009331381879746914, -0.04132729023694992, -0.08018076419830322, 0.024629026651382446, 0.014479102566838264, -0.01523094903677702, -0.041375793516635895, -0.007245614659041166, -0.004786956589668989, -0.03208685666322708, 0.01780177839100361, 0.017037805169820786, -0.044383179396390915, -0.005496359895914793, 0.013981914147734642, -0.011489908210933208, -0.027406007051467896, 0.04484399035573006, -0.01720757782459259, -0.018153447657823563, 0.03497297689318657, -0.003647060599178076, -0.036088619381189346, -0.01104728877544403, 0.04707527533173561, -0.009846759960055351, 0.018286840990185738, -0.001231602975167334, -0.016855906695127487, -0.017037805169820786, 0.03633115068078041, 0.046735730022192, 0.0014604915631935, 0.011920400895178318, -0.031723059713840485, 0.014491229318082333, 0.007579094730317593, 0.04981587454676628, -0.006900007836520672, 0.0007431302801705897, -0.0013263416476547718, 0.060535747557878494, 0.003534889779984951, -0.0004528509161900729, 0.021548882126808167, -0.0012945093913003802, 0.019814785569906235, -0.022907055914402008, 0.028982458636164665, -0.01378788985311985, -0.01502479799091816, -0.027284741401672363, -0.030364885926246643, 0.021366983652114868, -0.0006070855306461453, 0.006778742652386427, -0.06373715400695801, -0.01776539906859398, -0.018614256754517555, -0.023367865011096, -0.028836941346526146, -0.020372606813907623, 0.011198870837688446, 0.016128314658999443, -0.017268210649490356, -0.0006968977977521718, -0.03720426186919212, 0.00989526603370905, 0.04765734821557999, 0.024095458909869194, -0.03298421949148178, -0.001332404906861484, 0.012514601461589336, 0.012866271659731865, 0.025417253375053406, 0.0017977613024413586, -0.026532895863056183, 0.015800897032022476, -0.012575234286487103, -0.0197905320674181, 0.0001840772747527808, -0.030534658581018448, 0.0222037173807621, -0.022591765969991684, -0.059856660664081573, 0.049718864262104034, 0.0025511232670396566, 0.025635531172156334, 0.051368072628974915, -0.006026896182447672, 0.01161117386072874, -0.014697381295263767, 0.00794289167970419, -0.01803218200802803, 0.05151359364390373, -0.015109683386981487, 0.0043685901910066605, -0.029855571687221527, -0.03766506910324097, -0.025490012019872665, 0.006760552525520325, 0.024325862526893616, 0.05364786460995674, -0.017789652571082115, 0.0008405216503888369, -0.014842899516224861, 0.051077038049697876, -0.015606872737407684, 0.008355194702744484, -0.0059753586538136005, 0.025975074619054794, 0.004362527281045914, 0.0018432359211146832, -0.0053265877068042755, 0.028570156544446945, 0.01776539906859398, 0.012308450415730476, -0.01597066968679428, 0.023307232186198235, 0.023683156818151474, -0.021985439583659172, -0.012478222139179707, 0.008494650013744831, 0.03373606875538826, 0.007427513133734465, -0.01622532680630684, 0.03012235462665558, 0.014479102566838264, -0.00165982183534652, 0.025756796821951866, -0.016273831948637962, 0.001264193095266819, 0.046905502676963806, -0.001714391284622252, -0.008270308375358582, 0.000865532667376101, -0.012332702986896038, 0.05456948280334473, -0.015121810138225555, 0.003395434468984604, -0.009416267275810242, 0.019826913252472878, 0.022810043767094612, 0.018165575340390205, 0.0025101962964981794, 0.03286295756697655, 0.005493327975273132, 0.03936278820037842, -0.007227424997836351, -0.0002739842748269439, 0.01968139410018921, -0.0031134921591728926, -0.00985888671129942, -0.016916539520025253, -0.010550100356340408, 0.025562770664691925, -0.006839375477284193, 0.026266111060976982, 0.0010337885469198227, 0.0021767159923911095, 0.015618998557329178, 0.008670484647154808, -0.013981914147734642, -0.008822066709399223, 0.029273496940732002, -0.007021273486316204, 0.007306247483938932, 0.00959816575050354, -0.027406007051467896, -0.007676107343286276, 0.02467753365635872, -0.01633446477353573, -0.009883140213787556, 0.01151416078209877, 0.01949949562549591, 0.0258780624717474, -0.0015552302356809378, -0.0008541640127077699, 0.010701682418584824, -0.03475469723343849, 0.037883348762989044, 0.01704993285238743, 0.016698261722922325, -0.014794393442571163, 0.035482291132211685, -0.02806084044277668, 0.01905081234872341, 0.02170652709901333, 0.002041808096691966, 0.02517472207546234, 0.00862197857350111, -0.005411474034190178, 0.013193688355386257, -0.011677869595587254, 0.01863851025700569, -0.014406343922019005, -0.03936278820037842, 0.004465602803975344, 0.012854144908487797, -0.030534658581018448, 0.029782811179757118, 0.018420232459902763, 0.045329052954912186, 0.010883579961955547, -0.007827688939869404, 0.05165911093354225, -0.03463343158364296, -0.014673127792775631, -0.02907947078347206, -0.02385292761027813, 0.01668613590300083, -0.030898453667759895, -0.0032014097087085247, 0.015825150534510612, -0.0034772888757288456, -0.0020615137182176113, 0.011677869595587254, 0.011016972362995148, 0.04098774492740631, -0.06116632744669914, -0.008276371285319328, 0.004968854598701, 0.0161161869764328, 0.01076231524348259, -0.0108775170519948, -0.009149483405053616, -0.013023916631937027, -0.007451766170561314, 0.0022494753357023, 0.021172959357500076, -0.022324983030557632, -0.015133936889469624, -0.0049021583981812, 0.009968025609850883, -0.04452870041131973, -0.009555722586810589, 0.014345711097121239, -0.005744954105466604, -0.031795818358659744, -0.012272070161998272, 0.01860213093459606, -0.012308450415730476, -0.0010451572015881538, -0.02137911133468151, 0.00030809020972810686, -0.02888544648885727, 0.014115306548774242, -0.006924261339008808, 0.004896095488220453, 0.010889643803238869, 0.04181235283613205, 0.01675889454782009, 0.01751074008643627, -0.011489908210933208, 0.0197905320674181, 0.011023035272955894, -0.005441789980977774, 0.014782266691327095, 0.03012235462665558, -0.0222037173807621, -0.020603012293577194, 0.008973648771643639, -0.008124790154397488, 0.0039350660517811775, 0.011350452899932861, -0.013593864627182484, 0.03681621327996254, -0.005996579769998789, 0.004605058114975691, 0.007118286099284887, -0.03293571621179581, -0.018347473815083504, 0.0005972326616756618, -0.013605991378426552, -0.01185370422899723, 0.011677869595587254, -0.02291918359696865, 0.04176384583115578, 0.003425750881433487, -0.018092814832925797, -0.012344829738140106, 0.04952483996748924, 0.0041624391451478004, 0.006699920166283846, -0.02859441004693508, -0.03504573553800583, 0.017522867769002914, -0.015837276354432106, 0.035700567066669464, 0.02340424433350563, -0.010052911937236786, -0.029734306037425995, 0.022155210375785828, 0.024556268006563187, 0.04132729023694992, -0.001157327787950635, -0.006893944926559925, -0.003647060599178076, -0.004107869695872068, 0.018080689013004303, -0.00882812961935997, 0.08042329549789429, 0.01968139410018921, -0.014891405589878559, -0.019487369805574417, 0.03242639824748039, -0.008597725071012974, 0.010471277870237827, -0.002049387199804187, -0.01395766157656908, 0.007955018430948257, 0.02453201450407505, 0.03460917994379997, 0.036573681980371475, 0.0005722216446883976, -0.0004949148860760033, -0.005493327975273132, 0.0026193351950496435, -0.015303708612918854, 0.015121810138225555, 0.016091935336589813, 0.018347473815083504, -0.00985888671129942, 0.05975964665412903, -0.015473480336368084, 0.027697045356035233, -0.041036251932382584, -0.0065362113527953625, -0.00985888671129942, -0.029200736433267593, 0.011877957731485367, 0.018129196017980576, 0.02401057258248329, -0.035627808421850204, -0.013715130276978016, 0.012975410558283329, -0.02806084044277668, -0.024859432131052017, -0.021779287606477737, 0.02895820513367653, 0.009816443547606468, -0.011132175102829933, 0.018274713307619095, 0.007269867695868015, 0.021852046251296997, -0.005187132395803928, 0.022324983030557632, 0.00839763693511486, -0.009792190976440907, 0.01532796211540699, -0.024701787158846855, 0.039047498255968094, 0.02291918359696865, -0.02929774858057499, -0.0039047496393322945, -0.02344062551856041, 0.004720260389149189, 0.016249580308794975, 0.015158189460635185, -0.004301894456148148, 0.002463205950334668, -0.009422331117093563, -0.0016537585761398077, 0.004653564188629389, -0.02866716869175434, 0.018153447657823563, -0.0002576892147772014, -0.02456839382648468, -0.012805638834834099, -0.02512621507048607, 0.025975074619054794, -0.00620879465714097, -0.006875754799693823, 0.006005675066262484, 0.010756251402199268, -0.02396206744015217, 0.0028482237830758095, 0.009003965184092522, -0.001184612512588501, -0.002910372568294406, 0.008094473741948605, -0.017122691497206688, -0.03337227180600166, 0.03092270717024803, 0.06228196993470192, -0.006032959558069706, 0.0056630996987223625, -0.01821408048272133, 0.00939201470464468, 0.00908885058015585, -0.008931205607950687, 0.032208122313022614, -0.008264245465397835, -0.0255142655223608, -0.010544036515057087, 0.018832534551620483, 0.01110185869038105, -0.011914337053894997, -0.012842018157243729, 0.02433799020946026, -0.01953587494790554, 0.008834193460643291, -0.03058316372334957, -0.04050268232822418, 0.01915995217859745, 0.01742585562169552, 0.0015271876472979784, 0.0022782760206609964, -0.0053720623254776, -0.018274713307619095, -0.02565978467464447, -0.007906511425971985, -0.029249243438243866, 0.018541498109698296, -0.011453527957201004, -0.005017360672354698, -0.004150312393903732, 0.025077709928154945, 0.0018341409740969539, 0.030098101124167442, 0.013060296885669231, 0.002257054438814521, 0.0018962895264849067, 0.03650091961026192, -0.016843780875205994, -0.02302832156419754, 0.04181235283613205, -0.006269427482038736, 0.04338880255818367, 0.0287399273365736, 0.005447853356599808, 0.0007548778667114675, 0.01690441370010376, 0.0252474807202816, 0.014551862142980099, -0.012193247675895691, 0.004938538186252117, -0.014842899516224861, 0.026096340268850327, -0.017862411215901375, 0.0003753546916414052, -0.03477895259857178, 0.02156100980937481, -0.03339652344584465, -0.0127571327611804, -0.020045191049575806, -0.014357837848365307, -0.022773664444684982, -0.018492991104722023, 0.01837172545492649, 0.02670266665518284, 0.018796155229210854, 0.01649210974574089, -0.013909155502915382, -0.016237452626228333, 0.004253387916833162, -0.006705983076244593, 0.016661882400512695, -0.019147826358675957, 0.0008822066592983902, -0.018759775906801224, -0.0098043167963624, -0.010477340780198574, -0.03984785079956055, -0.011544477194547653, -0.017850283533334732, -0.0013551422161981463, 0.003292358946055174, -0.007997460663318634, 0.0026329776737838984, 0.009010028094053268, -0.02750301919877529, -0.02036048099398613, -0.03761656582355499, 0.015449226833879948, -0.07295333594083786, 0.0015241559594869614, 0.007488145958632231, 0.014758014120161533, -0.046978261321783066, -0.014515482820570469, -0.003368149744346738, 0.04911253601312637, -0.0006794658838771284, -0.005526675842702389, 0.04183660447597504, -0.024507761001586914, -0.004386780317872763, -0.009010028094053268, 0.011453527957201004, -0.0016234421636909246, 0.04501375928521156, -0.005232607014477253, 0.02641163021326065, 0.00032267995993606746, -0.00262085092253983, -0.03201409801840782, -0.030195115134119987, 0.023392118513584137, -0.0020675770938396454, -0.009137356653809547, -0.0025480918120592833, -0.030971214175224304, -0.017898790538311005, 0.023355739191174507, -0.0004835462605115026, -0.05714031308889389, -0.010386391542851925, -0.017365222796797752, 0.03182007372379303, 0.005793460179120302, 0.01130800973623991, -0.03208685666322708, 0.015133936889469624, 0.015934288501739502, 0.017037805169820786, 0.006075402721762657, 0.04140004888176918, 0.016213199123740196, 0.007706423755735159, 0.005526675842702389, -0.025684036314487457, -0.0018765839049592614, 0.011126111261546612, -0.024859432131052017, -0.03482745587825775, 0.025490012019872665, 0.006214858032763004, -0.03305698186159134, 0.026314618065953255, -0.03242639824748039, 0.013775763101875782, -0.021403364837169647, 0.011659679934382439, 0.020784910768270493, -0.018020056188106537, -0.01976628042757511, -0.0014036484062671661, 0.021172959357500076, -0.010731998831033707, -0.00989526603370905, -0.0063846297562122345, -0.03727702051401138, -0.04421340674161911, -0.010719872079789639, 0.009543596766889095, -0.022664526477456093, -0.03373606875538826, 0.004674785770475864, -0.012011350132524967, -0.030001088976860046, 0.007864069193601608, -0.0014597336994484067, -0.012805638834834099, 0.0027011893689632416, 0.03128650411963463, -0.018990179523825645, 0.026435883715748787, -0.0026905788108706474, -0.026435883715748787, -0.05583064630627632, -0.00999227911233902, -0.05665525048971176, 0.03819863870739937, -0.004426191560924053, 0.022943437099456787, 0.022713031619787216, 0.01279351208359003, -0.006366439629346132, -0.024350116029381752, 0.021476123481988907, 0.0009382919524796307, -0.027551526203751564, -0.010125670582056046, 0.0197905320674181, -0.028642915189266205, -0.0258780624717474, -0.009416267275810242, 0.047996893525123596, -0.026799680665135384, -0.009980152361094952, 0.012902650982141495, 0.007372943684458733, 0.01814132183790207, 0.01731671579182148, 0.011035162024199963, 0.017971549183130264, 0.01713481731712818, -0.0029224990867078304, -0.0030346696730703115, 0.0036288707051426172, 0.0073911333456635475, -0.011799135245382786, 0.016176819801330566, -0.01002865843474865, -0.0028406446799635887, 0.0056085302494466305, -0.016443604603409767, -0.02122146636247635, -0.010883579961955547, 0.0010830527171492577, 0.01536434143781662, -0.03354204446077347, 0.042806729674339294, 0.02107594721019268, 0.009658798575401306, 0.006960640661418438, 0.020603012293577194, -0.005396315827965736, -0.003128650365397334, -0.038222890347242355, 0.01485502626746893, -0.0026238826103508472, 0.0014574599917978048, -0.008743244223296642, 0.02861866168677807, 0.002948267851024866, -0.03751955181360245, 0.0015332509065046906, 0.005375094246119261, -0.0031165238469839096, 0.013703003525733948, -0.01761987991631031, -0.00258295563980937, 0.0016658850945532322, 0.04675998538732529, 0.006499832030385733, -0.015000544488430023, -0.003962351009249687, -0.04700251668691635, -0.01769263856112957, 0.006705983076244593, -0.012684373185038567, -0.03252341225743294, -0.02422885037958622, -0.017377348616719246, 0.005002202466130257, -0.03327525779604912, -0.0349244698882103, -0.012902650982141495, -0.015315835364162922, 0.013217941857874393, 0.004144249018281698, -0.021463997662067413, 0.009834633208811283, -0.010149924084544182, 0.021767159923911095, 0.007961081340909004, 0.03385733440518379, -0.01125343982130289, -0.0011133690131828189, 0.022713031619787216, -0.0005563055747188628, -0.011956780217587948, 0.002410152228549123, 0.01859000325202942, -0.03143202140927315, 0.03138351812958717, 0.008464333601295948, 0.021742908284068108, -0.018153447657823563, -0.027478767558932304, 0.00028971090796403587, -0.05059197545051575, 0.023937813937664032, 0.04045417904853821, -0.027866816148161888, -0.003210504539310932, -0.02171865478157997, 0.03024362027645111, 0.012538854964077473, -0.031868577003479004, -0.03824714571237564, -0.015146063640713692, 0.0065362113527953625, 0.05529707670211792, -0.02122146636247635, -0.01470950711518526, 0.020894048735499382, 0.008064157329499722, 0.015582619234919548, 0.02558702416718006, 0.0029998058453202248, 0.008118726313114166, -0.020651517435908318, 0.012514601461589336, -0.013848522678017616, -0.0020675770938396454, 0.023016195744276047, 0.004853652324527502], [0.022233491763472557, 0.011484431102871895, -0.01205319445580244, -0.010749059729278088, -0.0517517551779747, -0.003096602391451597, -0.0009939002338796854, -0.011645293794572353, 0.022991843521595, 0.0029400489293038845, -0.026519326493144035, 0.018901340663433075, 0.01806255616247654, -0.03568848595023155, -0.03626299649477005, 0.03263210132718086, -0.013328604400157928, 0.02268160693347454, -0.01546577736735344, 0.0063827927224338055, 0.022348392754793167, 0.019292006269097328, -0.011984254233539104, 0.023416979238390923, 0.005159089341759682, 0.01489126868546009, 0.0378946028649807, -0.008089084178209305, 0.01906220242381096, 0.014408680610358715, 0.04200808331370354, -0.02824285253882408, 0.047431446611881256, 0.015787502750754356, 0.02964465506374836, 0.030081281438469887, -0.04065224528312683, -0.003875061869621277, 0.00696879206225276, -0.041157811880111694, -0.05731299892067909, 0.07192850112915039, 0.0046305409632623196, -0.019809063524007797, -0.03550464287400246, 0.07105524837970734, 0.021590040996670723, 0.028311794623732567, 0.003225866938009858, 0.03175884857773781, 0.019154123961925507, -0.02493368275463581, -0.022819489240646362, 0.053911905735731125, 0.025370309129357338, 0.03550464287400246, -0.052992694079875946, 0.008014397695660591, 0.02468089759349823, -0.03224143385887146, -0.009893042035400867, 0.007572025991976261, -0.0046161781065166, -0.009163415990769863, -0.00295297522097826, 0.012260017916560173, -0.018223419785499573, 0.002022271044552326, -0.04203106462955475, 0.0352059006690979, 0.07211234420537949, -0.004343286622315645, 0.018476203083992004, -0.034654371440410614, -0.03614809364080429, 0.01794765517115593, -0.006905595771968365, 0.021808354184031487, 0.042950280010700226, -0.01435123011469841, -0.004897687584161758, 0.009577061980962753, -0.021130433306097984, 0.023302078247070312, -0.020406553521752357, -0.002603961154818535, -0.011748705059289932, -0.0025062947534024715, -0.012949428521096706, -0.004998226650059223, 0.007256046403199434, 0.02716277725994587, -0.010490531101822853, 0.047661252319812775, 0.01282303687185049, 0.010772040113806725, 0.004759805276989937, 0.018556633964180946, -0.03541272133588791, 0.017442086711525917, -0.01211064588278532, 4.7082790842978284e-05, 0.019728632643818855, 0.01166827417910099, 0.028380734845995903, -0.09973473101854324, -0.0488562285900116, 0.032540179789066315, 0.017442086711525917, -0.00977239478379488, -0.040008794516325, 0.016339030116796494, -0.03357429429888725, 0.02939186990261078, 0.021762393414974213, -0.00933002308011055, -0.03529782220721245, -0.026955952867865562, 0.06930874288082123, -0.04432909935712814, -0.037251152098178864, -0.02727767825126648, 0.026519326493144035, -0.06691878288984299, -0.005969146732240915, 0.04062926396727562, -0.03601021319627762, -0.038584012538194656, -0.02419831044971943, -0.017729341983795166, -0.0019001879263669252, -0.040008794516325, 0.03849209100008011, -0.012271508574485779, -0.03203460946679115, -0.04085906594991684, -0.010318178683519363, -0.003401092253625393, -0.01720079407095909, 0.004756933078169823, 0.0023770302068442106, -0.04508745297789574, 0.015672599896788597, 0.02622058242559433, -0.03260912001132965, 0.005699127446860075, 0.013719270005822182, 0.08557882905006409, 0.009123199619352818, -0.013259663246572018, -0.05340633913874626, 0.069630466401577, 0.002206113887950778, 0.029345909133553505, 0.008910631760954857, -0.0063253422267735004, -0.0200043972581625, -0.007865025661885738, 0.005029824562370777, 0.017166323959827423, -0.04699482023715973, -0.02065933682024479, 0.04816681891679764, 0.01598283462226391, 0.03566550835967064, -0.0030678771436214447, 0.01598283462226391, -0.011208666488528252, -0.0452023521065712, -0.011961273849010468, -0.01112823560833931, -0.06379345804452896, -0.03984793275594711, -0.04439803957939148, -0.047431446611881256, -0.0158679336309433, -0.008393573574721813, 0.008456769399344921, -0.024175330996513367, -0.040813107043504715, -0.0014441715320572257, 0.007951201871037483, -0.04485764726996422, -0.023095253854990005, -0.050510816276073456, 0.01598283462226391, 0.023554861545562744, 0.005032697226852179, -0.004518511705100536, 0.052027516067028046, -0.0005892306216992438, -0.015592169016599655, 0.005859989672899246, 0.012489821761846542, -0.03334449231624603, -0.012145115993916988, -0.0226011760532856, -0.016729695722460747, 0.03263210132718086, 0.015546208247542381, -0.0042513650842010975, -0.02304929308593273, -0.011111000552773476, -0.0006086202920414507, -0.055934179574251175, -0.048580463975667953, 0.002151535591110587, -0.022325413301587105, 0.05703723430633545, 0.05326845869421959, 0.03812440484762192, -0.05620994046330452, -0.039733029901981354, 0.0006535037537105381, -0.01625859923660755, 0.008732534013688564, 0.025944817811250687, 0.019498828798532486, 0.022727567702531815, 0.021015532314777374, -0.012432370334863663, -0.009318533353507519, 0.002639868063852191, -0.0014671519165858626, -0.03318363055586815, -0.0008438098011538386, -0.008393573574721813, 0.009467905387282372, -0.0211649052798748, -0.05234924331307411, -0.0559801384806633, 0.029322929680347443, 0.03451649099588394, -0.037480954080820084, 0.0017838499043136835, 0.027024894952774048, -0.017304206266999245, -0.04288133606314659, 0.025255408138036728, -0.012386409565806389, -0.0019432760309427977, 0.02870246022939682, -0.011019079014658928, -0.022497765719890594, 0.0020596140529960394, 0.006727498024702072, -0.03826228529214859, 0.01464997511357069, 0.03339045122265816, 0.012489821761846542, 0.02060188539326191, 0.0018082665046676993, 0.026749130338430405, -0.022210510447621346, 0.038078442215919495, 0.040215615183115005, 0.02835775539278984, 0.022130079567432404, 0.06935470551252365, -0.02681807056069374, 0.04724760353565216, -0.02248627506196499, -0.032057590782642365, 0.031115397810935974, -0.05359018221497536, -0.007181359920650721, 0.05487708002328873, -0.033114686608314514, 0.006687282584607601, 0.020050358027219772, -0.09881551563739777, -0.00515621667727828, -0.008060358464717865, 0.010852470993995667, -0.016798637807369232, 0.002198932459577918, -0.023462940007448196, -0.0005798948113806546, 0.02599077858030796, 0.008835945278406143, -0.017556989565491676, -0.008732534013688564, 0.04511043056845665, -0.028311794623732567, -0.016442442312836647, -0.005676147062331438, -0.0077788494527339935, 0.0147648761048913, -0.025232426822185516, 0.06756223738193512, 0.020555924624204636, -0.014810836873948574, -0.001788158668205142, 0.015052130445837975, -0.018763458356261253, 0.02399148792028427, -0.009732179343700409, -0.03343641385436058, -0.015132562257349491, -0.010818000882863998, -0.039273422211408615, -0.037389032542705536, 0.005707744974642992, 0.007468614727258682, -0.007353712804615498, -0.0023856477346271276, 0.007238810881972313, 0.03035704605281353, 0.012179587036371231, -0.017729341983795166, -0.027208738029003143, -0.006313852034509182, -0.0126966442912817, -0.017809772863984108, -0.028196891769766808, -0.006423008628189564, -0.033597275614738464, 0.02776026539504528, -0.004067522473633289, -0.008123554289340973, 0.027921129018068314, 0.008841690607368946, 0.044214196503162384, -0.04016965627670288, 0.026243561878800392, -0.010525001212954521, 0.02514050528407097, 0.028978224843740463, -0.021176394075155258, 0.046948861330747604, -0.029736576601862907, 0.021532589569687843, 0.008784240111708641, -0.011030568741261959, -0.0142822889611125, 0.004946521017700434, 0.013569897972047329, 0.039503224194049835, -0.05487708002328873, 0.008313142694532871, 0.02431321330368519, -0.03954918682575226, -0.012570252642035484, -0.024382153525948524, 0.0207742378115654, 0.044237177819013596, 0.021750902757048607, 0.04701780155301094, 0.0016545853577554226, 0.02764536440372467, 0.008083338849246502, 0.0361710749566555, 0.0021256825421005487, -0.031460102647542953, -0.09642555564641953, -0.02204964868724346, 0.00950237549841404, 0.01754549890756607, 0.010938648134469986, 0.013845662586390972, -0.008870416320860386, -0.02237137220799923, 0.019590750336647034, 0.02998935990035534, -0.012558762915432453, 0.019694162532687187, -0.024129370227456093, -0.03021916374564171, 0.017338676378130913, -0.015626639127731323, 0.023233136162161827, 0.0017091636545956135, -0.024520035833120346, -0.008129299618303776, -0.00017711029795464128, 0.005136108957231045, 0.023554861545562744, -0.011346548795700073, -0.042582593858242035, -0.006641321815550327, 0.04816681891679764, -0.030058300122618675, 0.005857117474079132, 0.0467420369386673, 0.07257195562124252, 0.020866159349679947, -0.04124973341822624, 0.017568480223417282, 0.013569897972047329, 0.01791318506002426, -0.038216326385736465, -0.0024416623637080193, -0.04949967935681343, 0.020211219787597656, -0.018051067367196083, -0.03286190330982208, 0.04306517913937569, 0.04547811672091484, -0.0092323562130332, -0.021475140005350113, -0.009852825663983822, -0.02610567957162857, -0.04899411275982857, -0.04538619518280029, -0.0007777413120493293, 0.031712885946035385, -0.018269380554556847, 0.01606326550245285, 0.05703723430633545, 0.011788920499384403, 0.02045251429080963, -6.97938448865898e-05, 0.02345144934952259, 0.021245336160063744, 0.007813319563865662, 0.04161741957068443, -0.002404319355264306, 0.024290231987833977, -0.01706291176378727, -0.015936873853206635, 0.025944817811250687, 0.034194763749837875, 0.00167469319421798, 0.0016043158248066902, -0.03196566924452782, 0.007870770990848541, 0.006871125195175409, -0.01648840308189392, 0.03545868396759033, -0.08571671694517136, -0.007922476157546043, 0.002206113887950778, 0.02527838759124279, 0.025232426822185516, -0.041525498032569885, -0.012983899563550949, 0.010795020498335361, -0.022750549018383026, -0.018326831981539726, -0.0037314346991479397, -0.019073693081736565, -0.053084615617990494, -0.016970990225672722, 0.030793672427535057, -0.04274345561861992, -0.008083338849246502, -0.023210156708955765, -0.007112419232726097, 0.026519326493144035, -0.03688346594572067, -0.0010743314633145928, -0.016051776707172394, -0.07100928574800491, -0.015787502750754356, -0.026174621656537056, 0.017246754840016365, -0.019131142646074295, -0.04667309671640396, 0.034171782433986664, -0.07316944003105164, 0.04007773473858833, 0.04019263759255409, 0.031712885946035385, 0.05161387100815773, 0.011857861652970314, 0.0016948010306805372, -0.021417688578367233, 0.0008761259377934039, 0.005822646897286177, -0.03474629297852516, 0.007250301074236631, -0.006308106705546379, -0.0007238811231218278, 0.024841761216521263, 0.006003616843372583, -0.01051351148635149, -0.00340970978140831, -0.07339924573898315, -0.023715723305940628, -0.04028455913066864, 0.007595006376504898, 0.07077948749065399, -0.05455535650253296, -0.05276288837194443, -0.03198865056037903, 0.017740832641720772, 0.03954918682575226, -0.02156706154346466, -0.02006184682250023, -0.05552053079009056, -0.02844967693090439, -0.02884034253656864, 0.055336687713861465, -0.009410453960299492, -0.03440158814191818, 0.0027533334214240313, 0.014098445884883404, -0.0046707564033567905, 0.052257321774959564, -0.016993971541523933, 0.012765585444867611, -0.007663947530090809, 0.018901340663433075, 0.02458897791802883, 0.0817640945315361, 0.007491595111787319, 0.041180793195962906, 0.0477072112262249, 0.006285126321017742, -0.020647846162319183, -0.011001843959093094, -0.05731299892067909, 0.006221930496394634, -0.028771400451660156, -0.00669877277687192, -0.040008794516325, 0.003464288078248501, 0.06071409210562706, -0.014328249730169773, 0.006986027117818594, -0.017396125942468643, -0.008181005716323853, 0.008100573904812336, -0.04003177210688591, -0.009887296706438065, 0.0025077308528125286, -0.03260912001132965, -0.02975955605506897, -0.027829207479953766, 0.002595343627035618, -0.0014312451239675283, -0.056393783539533615, -0.012409389950335026, 0.010461805388331413, 0.019303496927022934, -0.004435208160430193, 0.016534363850951195, -0.006928576156497002, -0.05092446133494377, 0.02585289627313614, 0.003053514286875725, -0.017683381214737892, 0.03316064924001694, -0.01979757286608219, 0.013857152312994003, -0.009347258135676384, -0.0013673310168087482, -0.00016481221246067435, 0.002085466869175434, 0.0214521586894989, 0.04106589034199715, 0.0315520241856575, 0.042352788150310516, -0.014684445224702358, 0.005176324397325516, -0.023129723966121674, 0.04821277782320976, -0.01979757286608219, 0.02753046154975891, 0.0034958862233906984, 0.011737215332686901, -0.012501311488449574, 0.01417887769639492, -0.004552982281893492, 0.009105964563786983, 0.05524476617574692, -0.02527838759124279, 0.006457479204982519, 0.011260372586548328, -0.026726149022579193, -0.0031080925837159157, 0.007347967475652695, 0.021636001765727997, 0.013029859401285648, 0.015626639127731323, 0.01640797220170498, 0.010277962312102318, -0.03862997144460678, 0.0023425596300512552, 0.0018355556530877948, 0.02285396121442318, 0.031712885946035385, -0.0010649956529960036, -0.02160153165459633, -0.010892687365412712, 0.011461450718343258, -0.002466079080477357, -0.038331229239702225, -0.028771400451660156, 0.022107098251581192, 0.013765230774879456, -0.03334449231624603, -0.0046621388755738735, -0.0040301792323589325, 0.007233066018670797, 0.040215615183115005, -0.05336037650704384, 0.00522228516638279, -0.018751967698335648, 0.020728277042508125, 0.018039576709270477, -0.01405248511582613, -0.011283352971076965, 0.002915632212534547, 0.0010204713325947523, -0.017131851986050606, -0.004937903024256229, 0.011547626927495003, 0.020509963855147362, 0.03745797276496887, 0.033712178468704224, -0.009939002804458141, 0.005575607996433973, -0.0021974961273372173, -0.0065953610464930534, 0.014029504731297493, -0.016741186380386353, -0.03263210132718086, -0.022693097591400146, -0.00800290796905756, -0.03743499517440796, -1.2017557310173288e-05, 0.010306688025593758, -0.045776862651109695, -0.01854514516890049, 0.02867947891354561, 0.029231008142232895, -0.021210866048932076, -0.00442946283146739, -0.020705297589302063, -0.01883239857852459, 0.035964250564575195, 0.00994474720209837, -0.024267252534627914, -0.023072274401783943, -0.0026082699187099934, -0.03201163187623024, 0.01309880055487156, 0.003961238078773022, -0.013972054235637188, 0.030655790120363235, -0.025117525830864906, 0.030173202976584435, -0.019131142646074295, 0.042122986167669296, 0.015580679289996624, 0.017936164513230324, 0.00898531824350357, 0.0006362685235217214, 0.03201163187623024, 0.007365202996879816, -0.01506362110376358, -0.010593942366540432, -0.038101423531770706, -0.00308798486366868, 0.009536846540868282, -0.021118944510817528, 0.04014667496085167, 0.042100004851818085, -0.0009594297152943909, -0.019154123961925507, 0.022417332977056503, -0.02564607374370098, -0.010438825003802776, -0.015569188632071018, 0.022176040336489677, 0.0024689515121281147, -0.007324987556785345, -0.001895879046060145, -0.045179374516010284, -0.035366762429475784, -0.024290231987833977, 0.0020653591491281986, -0.02085467055439949, -0.018625576049089432, 0.015396836213767529, -0.03934236243367195, 0.009536846540868282, -0.025209447368979454, 0.030448967590928078, -0.001597134512849152, -0.018625576049089432, -0.012673663906753063, 0.01631605066359043, -0.00794545654207468, 0.005434853490442038, 0.029552733525633812, -0.02019972912967205, 0.02670316956937313, 0.01065713819116354, -0.0009055695263668895, 0.008301652036607265, -0.029713595286011696, 0.03247123956680298, 0.025255408138036728, 0.035964250564575195, 0.0032459748908877373, 0.008904886431992054, -0.033459391444921494, -0.012087665498256683, -0.001940403482876718, 0.016040286049246788, -0.03575742989778519, -0.07427249848842621, 0.0022319667041301727, -0.008370593190193176, 0.03557358682155609, 0.005877225194126368, 0.029483791440725327, 0.006451733876019716, -0.025692034512758255, 0.01405248511582613, -0.030678769573569298, 0.00864635780453682, -0.05524476617574692, 0.0040301792323589325, -0.03235633671283722, -0.009151925332844257, 0.030196182429790497, 0.003501631086692214, -0.03594127297401428, 0.02196921780705452, -0.009806865826249123, -0.02576097473502159, 0.027093835175037384, -0.030770691111683846, -0.009617277421057224, -0.008066103793680668, -0.008031632751226425, 0.0003062850155401975, 0.020464003086090088, 0.01720079407095909, 0.0044007375836372375, 0.008973827585577965, 0.025944817811250687, 0.022244980558753014, -0.03474629297852516, 0.007439889013767242, 0.00838782824575901, -0.0048431092873215675, -0.014328249730169773, -0.020590396597981453, 0.017924675717949867, -0.046144548803567886, 0.00029856504988856614, 0.037389032542705536, -0.005676147062331438, -0.006991772446781397, -0.006503439508378506, -0.011151215992867947, 0.018303850665688515, 0.006440243683755398, 0.0034786509349942207, -0.05892162397503853, 0.03380410000681877, 0.019556280225515366, 0.014086956158280373, 0.0010448879329487681, -0.025898857042193413, 0.012650684453547001, 0.002593907294794917, 0.007468614727258682, 0.027116816490888596, -0.0008057486265897751, -0.0028208382427692413, -0.006716007832437754, -0.05515284463763237, 0.019464358687400818, -0.009341512806713581, -1.144529232988134e-05, -0.0016258598770946264, -0.021521100774407387, 0.036102134734392166, 0.011260372586548328, 0.021095963194966316, 0.019211575388908386, 0.02504858374595642, -0.02433619275689125, -0.042214907705783844, 0.00045781172229908407, 0.004254237748682499, 0.0011978509137406945, -0.009795375168323517, 0.03720518946647644, -0.004208276979625225, -0.01942988857626915, -0.00477991346269846, 0.028564577922225, 0.025806935504078865, 0.0204869844019413, -0.016844598576426506, 0.014604014344513416, -0.0030104261822998524, -0.025921838358044624, -0.01381119154393673, -0.012983899563550949, 0.011088020168244839, -0.012570252642035484, -0.009554081596434116, 0.014086956158280373, 0.003424072405323386, -0.00573359802365303, 0.006101283710449934, 0.04922391474246979, 0.04972948133945465, 0.008795729838311672, -0.0188553798943758, -0.011438470333814621, 0.029368890449404716, -0.046696074306964874, 0.004788530990481377, 0.032402295619249344, 0.018694516271352768, 0.03614809364080429, 0.03281594440340996, -0.0006114928401075304, -0.02456599660217762, 0.016396481543779373, -0.007284771651029587, -0.04465082660317421, 0.02573799528181553, -0.011283352971076965, 0.015936873853206635, -0.006606851238757372, 0.039273422211408615, -0.007095183711498976, -0.04844258353114128, 0.01931498572230339, -0.008634867146611214, 0.0009802556596696377, -0.009864316321909428, 0.023175684735178947, 0.036676641553640366, -0.008428044617176056, 0.018510673195123672, 0.06080601364374161, -0.013179232366383076, 0.029368890449404716, 0.008606142364442348, 0.03447052836418152, 0.031827788800001144, 0.0027303530368953943, 0.005029824562370777, -0.000825138296931982, -0.011547626927495003, -0.008606142364442348, 0.02079721912741661, -0.03299978747963905, -0.019935455173254013, 0.0415484756231308, 0.007434144150465727, -0.0024416623637080193, -0.07119312882423401, 0.014776366762816906, 0.005635931622236967, -0.030563868582248688, 0.02564607374370098, 0.013420525938272476, -0.017281224951148033, -0.002269309712573886, 0.019464358687400818, -0.0034671607427299023, -0.024037448689341545, -0.0044409530237317085, 0.028173912316560745, 0.012168096378445625, 0.008939357474446297, 0.02204964868724346, -0.034309666603803635, -0.018407262861728668, 0.05997871980071068, 0.006400028243660927, 0.04076714441180229, -0.01072607934474945, -0.04467380419373512, -0.01848769374191761, 0.0034987586550414562, 0.021050002425909042, 0.02345144934952259, 0.039250440895557404, 0.013983544893562794, 0.02262415736913681, 0.025071565061807632, 0.029208028689026833, -0.02431321330368519, 0.009318533353507519, 0.012202567420899868, 0.06333385407924652, 0.04793701693415642, -0.004412227775901556, 0.036423858255147934, 0.004159444011747837, -0.006560890469700098, 0.004912050440907478, 0.035711467266082764, 0.01917710341513157, -0.01837279088795185, -0.007112419232726097, -0.013523937202990055, -0.0030563869513571262, -0.021187884733080864, -0.01577601209282875, -0.045179374516010284, -2.365360523981508e-05, -0.01089843176305294, 0.008962337858974934, -0.013834171928465366, -0.0036998367868363857, -0.013110291212797165, 0.007106673903763294, 0.026611248031258583, -0.01340903528034687, -0.014569543302059174, -0.009732179343700409, -0.007882260717451572, 0.01275409571826458, -0.04678799584507942, 0.031689904630184174, 0.006457479204982519, 0.02060188539326191, 0.03589531034231186, -0.00204668752849102, -0.010892687365412712, -0.015316405333578587, -0.044214196503162384, 0.021590040996670723, 0.00014578161062672734, 0.039158519357442856, -0.006084048189222813, 0.005526774562895298, -0.041525498032569885, 0.03688346594572067, -0.008600397035479546, 0.016339030116796494, 0.031161358579993248, -0.01902773231267929, -0.006078303325921297, 0.0023641036823391914, -0.001582771772518754, -0.024382153525948524, 0.03451649099588394, -0.008835945278406143, -0.013443506322801113, -0.03021916374564171, -0.023129723966121674, -0.02233690209686756, 0.006589616183191538, 0.016683734953403473, 0.050832539796829224, -0.00023106025764718652, 0.024405134841799736, 0.01132931374013424, 0.027576422318816185, -0.03012724220752716, 0.019579259678721428, 0.015442796982824802, 0.041732318699359894, -0.03449350968003273, -0.004535747226327658, -0.005038442090153694, 0.011472941376268864, 0.0207742378115654, 0.03281594440340996, -0.031115397810935974, 0.028863321989774704, 0.036079153418540955, 0.010053903795778751, -0.0325171984732151, -0.023784665390849113, 0.019326476380228996, -0.019521810114383698, -0.04816681891679764, 0.014615504071116447, 0.03934236243367195, -0.004486913792788982, 0.02707085572183132, 0.013822682201862335, -0.020636357367038727, 0.03364323452115059, 0.01686757802963257, 0.009197886101901531, 0.01806255616247654, 0.02268160693347454, 0.01139825489372015, -0.042697492986917496, -0.013202212750911713, 0.006899850908666849, 0.01292644813656807, 0.003857826581224799, -0.00661834143102169, 0.009433434344828129, 0.013857152312994003, 0.02385360561311245, -0.0049063051119446754, 0.0022635646164417267, 0.009927512146532536, 0.02916206791996956, 0.013868642970919609, -0.0103871189057827, -0.00696879206225276, 0.024014467373490334, 0.01309880055487156, 0.009215121157467365, 0.009847081266343594, 0.01506362110376358, 0.02916206791996956, 0.007893751375377178, 0.009720688685774803, 0.001620114897377789, -0.034194763749837875, 0.06236867606639862, 0.0014190367655828595, 0.010094120167195797, 0.030403006821870804, -0.03709029033780098, -0.045891765505075455, 0.017867224290966988, -0.050510816276073456, -0.018453223630785942, 0.010737570002675056, -0.04074416309595108, 0.034079860895872116, 0.008565925993025303, -0.009444925002753735, -0.006210440304130316, -0.033597275614738464, 0.025692034512758255, 0.013615858741104603, 0.0015080856392160058, -0.0048431092873215675, 0.02293439209461212, 0.030540889129042625, 0.03849209100008011, 0.04007773473858833, 0.014374210499227047, 0.025783956050872803, -0.003676856402307749, -0.028610538691282272, -0.019923966377973557, -0.004535747226327658, 0.01506362110376358, -0.012800056487321854, -0.033367469906806946, 0.03518291935324669, 0.03676856309175491, -0.01547726709395647, 0.025094544515013695, 0.049315836280584335, 0.04111184924840927, -0.02233690209686756, -0.028748420998454094, 0.004736825358122587, -0.01771785132586956, -0.014086956158280373, -0.0020122171845287085, -0.040583301335573196, -0.011536137200891972, 0.003843463957309723, -0.021107453852891922, 0.014615504071116447, 0.017327185720205307, -0.036906447261571884, -0.008812964893877506, -0.016993971541523933, 0.03283892199397087, -0.016879068687558174, -0.0147648761048913, 0.0037544150836765766, 0.0200043972581625, 0.008583161979913712, -0.02408340945839882, -0.01700546033680439, 0.012501311488449574, 0.000656735384836793, 2.569580465205945e-05, 0.004552982281893492, -0.02333654835820198, -0.0352059006690979, -0.012662174180150032, 0.009864316321909428, -0.0498214028775692, 0.031092416495084763, 0.01405248511582613, -0.01405248511582613, -0.012191076762974262, 0.0029414850287139416, 0.010530746541917324, 0.020406553521752357, -0.05041889473795891, 0.0016474040457978845, -0.014879778027534485, 0.02481877990067005, -0.012328959070146084, 0.026404425501823425, 0.008313142694532871, 0.004363394342362881, 0.04099695011973381, 0.027093835175037384, 0.0488562285900116, -0.008135044947266579, 0.023187175393104553, 0.040445420891046524, 0.0022391481325030327, -0.017729341983795166, 0.04835066199302673, -0.02835775539278984, -0.021118944510817528, 0.021613022312521935, 0.014833817258477211, 0.0046219234354794025, 0.02585289627313614, 0.00787651538848877, 0.03444754704833031, 0.014810836873948574, 0.020096318796277046, -0.004512766841799021, -0.01848769374191761, 0.01275409571826458, -0.006802184507250786, -0.0025005496572703123, -0.020521454513072968, -0.001465715584345162, -0.03589531034231186, -0.024841761216521263, -0.009812610223889351, 0.0014965954469516873, 0.003415454877540469, 0.049315836280584335, 0.012432370334863663, 0.009720688685774803, 0.014879778027534485, -0.0264503862708807, 0.02179686352610588, -0.007824810221791267, 0.02019972912967205, 0.01161082275211811, -0.006693027447909117, -0.03104645572602749, -0.012558762915432453, 0.002639868063852191, 0.04710972309112549, -0.008112064562737942, -0.023474430665373802, -0.012018724344670773, -0.05280885100364685, 0.017016950994729996, 0.0037860129959881306, 0.07087140530347824, 0.009875806048512459, -0.0001365356147289276, 0.019935455173254013, 0.03428668528795242, -0.03640087693929672, 0.007623732089996338, 0.017166323959827423, -0.02468089759349823, 0.04334094375371933, 0.006773458793759346, 0.04380055144429207, 0.035389743745326996, 0.009335768409073353, -0.005179197061806917, 0.01146719604730606, -0.004305943381041288, 0.0032000141218304634, 0.03132222220301628, -0.012202567420899868, 0.024175330996513367, -0.008485495112836361, 0.02373870462179184, -0.010691609233617783, -0.009726434014737606, -0.033137667924165726, 0.003059259383007884, 0.004515639040619135, -0.028610538691282272, 0.009347258135676384, -0.0014678699662908912, 0.02445109561085701, -0.037044327706098557, -0.0003089780220761895, -0.00957131665199995, -0.004659266676753759, -0.015029150061309338, -0.024520035833120346, 0.012708134949207306, 0.019280515611171722, 0.005535392556339502, 0.029368890449404716, 0.01994694583117962, 0.012076174840331078, 0.03104645572602749, 0.011030568741261959, -0.019636711105704308, -0.03743499517440796, 0.03603319078683853, -0.04283537715673447, 0.016339030116796494, -0.0008035941864363849, -0.01388013269752264, -0.02753046154975891, -0.005791048984974623, -0.010237746872007847, -0.008422299288213253, -0.06066812947392464, -0.031345199793577194, -0.025209447368979454, -0.0023037802893668413, -0.01577601209282875, -0.05244116485118866, -0.03918150067329407, 0.012133626267313957, -0.006543655414134264, 0.01746506802737713, -0.009496631100773811, -0.002481878036633134, -0.00676771393045783, -0.026243561878800392, -0.02978253737092018, 0.013730760663747787, 0.01725824549794197, 0.013903113082051277, 0.029231008142232895, -0.004079012665897608, 0.018763458356261253, -0.013121780939400196, -0.02056741528213024, -0.020555924624204636, -0.014948719181120396, -0.0054980493150651455, 0.04485764726996422, -0.011179941706359386, -0.02431321330368519, 0.027024894952774048, 0.008284416981041431, -0.018820907920598984, -0.018763458356261253, 0.03210355341434479, 0.0022075502201914787, -0.007595006376504898, 0.026404425501823425, 0.03876785561442375, 0.014661464840173721, -0.00547794159501791, -0.009421944618225098, 0.024175330996513367, -0.03260912001132965, 0.0006430908106267452, -0.017442086711525917, -0.039870910346508026, 0.02835775539278984, -0.0015181394992396235, 0.006779204122722149, -0.008784240111708641, 0.021946236491203308, 0.0052768634632229805, -0.021877296268939972, -0.007796084508299828, -0.00025044992798939347, 0.04184722155332565, -0.0026571033522486687, -0.012260017916560173, -0.007313497364521027, 0.034562449902296066, -0.010536491870880127, 0.0015167032834142447, -0.00490056024864316, -0.0007669692859053612, 0.020958080887794495, 0.02895524352788925, 0.0007791775860823691, 0.0009091601823456585, 0.006193204782903194, 0.016936520114541054, 0.03874487429857254, 0.028541598469018936, -0.018683025613427162, -0.008399318903684616, 0.015546208247542381, 0.023646783083677292, 0.035481665283441544, 0.01258174329996109, -0.003110965248197317, -0.029001204296946526, -4.939990503771696e-06, -0.015684090554714203, 0.0052912263199687, 0.004811511375010014, 0.038928717374801636, -0.0026973187923431396, -0.04407631605863571, -0.03993985429406166, 0.027139795944094658, -0.008485495112836361, -0.019636711105704308, 0.003691219026222825, 0.004084757529199123, 0.02502560429275036, 0.010737570002675056, 0.005739342886954546, -0.007100929040461779, 0.00654940027743578, 0.010708844289183617, 0.007169869728386402, -0.0168331079185009, 0.029506772756576538, -0.014937229454517365, -0.030035320669412613, 0.009565571323037148, -0.0413646325469017, -0.01723526418209076, 0.0004703790764324367, 0.008485495112836361, -0.014328249730169773, 0.008054613135755062, -0.009720688685774803, -0.004073267336934805, -0.012248528189957142, -0.03754989430308342, -0.013891623355448246, 0.013822682201862335, -0.017614440992474556, 0.009324277751147747, 0.024520035833120346, 0.012374919839203358, 0.013133271597325802, 0.0065551456063985825, 0.01370778027921915, 0.0035418467596173286, -0.0021572806872427464, -0.03306872770190239, -0.017039930447936058, -0.028863321989774704, -0.017039930447936058, -0.01712036319077015, 0.02185431495308876, -0.02277352847158909, 0.032080572098493576, -0.03775671869516373, 0.011662528850138187, -0.006181714590638876, -0.01723526418209076, -0.023129723966121674, -0.012639193795621395, 0.022176040336489677, -0.00471384497359395, 0.023715723305940628, 0.003929640166461468, 0.02939186990261078, 0.001400365261361003, 0.007910986430943012, 0.026634229347109795, -0.05184367671608925, 0.010364138521254063, -0.014741895720362663, 0.009197886101901531, 0.004412227775901556, 0.018843889236450195, -0.020234201103448868, -0.0018441732972860336, -0.004725335165858269, 0.012788565829396248, -0.015201503410935402, -0.008123554289340973, 0.027185756713151932, 0.0018499183934181929, -0.03699836879968643, -0.006388538051396608, -0.015281934291124344, 0.010306688025593758, -0.034792251884937286, -0.03660770133137703, 0.03210355341434479, -0.007508830167353153, 0.026174621656537056, 0.03157500550150871, -0.006687282584607601, 0.02599077858030796, -0.03093155473470688, 0.003751542419195175, 0.007549045607447624, -0.030288103967905045, 0.01412142626941204, -0.06315001100301743, 0.011174196377396584, 0.010277962312102318, -0.002562309382483363, 0.004811511375010014, -0.0063023618422448635, -0.00750308483839035, -0.01489126868546009, 0.004340413957834244, -0.01275409571826458, -0.04168635979294777, -0.015959855169057846, -0.011007588356733322, -0.0384691096842289, 0.020958080887794495, -0.030885593965649605, -0.006888360716402531, -0.031597983092069626, 0.02884034253656864, -0.019533298909664154, 0.031115397810935974, 0.03129924088716507, -0.028564577922225, -0.05032697319984436, -0.05009716749191284, -0.04111184924840927, 0.04023859649896622, -0.005440598353743553, 0.01506362110376358, 0.0488562285900116, 0.004317433573305607, -0.013018369674682617, -0.048948150128126144, -0.00070808210875839, -0.014201858080923557, -0.014799347147345543, 0.0024028830230236053, -0.019636711105704308, -0.01322519313544035, -0.012122135609388351, 0.02373870462179184, 0.021992197260260582, -0.016511382535099983, 0.010588197037577629, 0.030058300122618675, 0.0013177795335650444, 0.0004456033930182457, 0.0077788494527339935, -0.022233491763472557, -0.005170579068362713, 0.010668628849089146, 0.008209730498492718, -0.0028940881602466106, 0.007342222612351179, -0.0019447123631834984, -0.023830626159906387, 0.01028370764106512, -0.0012825909070670605, 0.004814384039491415, -0.026726149022579193, 0.0008955156081356108, 0.005360167007893324, -0.020211219787597656, -0.01577601209282875, 0.006526419892907143, -0.008571671321988106, 0.04111184924840927, 0.002071104245260358, 0.02339399792253971, 0.0026743384078145027, 0.02088914066553116, 0.0033436412923038006, 0.0028782892040908337, 0.0004448852560017258, -0.011524646542966366, 0.005061422474682331, -0.007451379206031561, -0.024290231987833977, 0.04451294243335724, -0.0033982195891439915, -0.03352833539247513, 0.01363883912563324, 0.007796084508299828, -0.004811511375010014, -0.012156606651842594, 0.005808284040540457, -0.022267961874604225, -0.028610538691282272, 0.03267806023359299, -0.038584012538194656, -0.02456599660217762, -0.008301652036607265, -0.03320660814642906, -0.00721008563414216, 0.013110291212797165, -0.005857117474079132, 7.109546277206391e-05, -0.02479580044746399, -0.013432015664875507, 0.038584012538194656, 0.0023080890532583, -0.034424569457769394, 0.023807644844055176, -0.024726858362555504, -0.02002737671136856, 0.0073766931891441345, -0.0012301669921725988, 0.016442442312836647, -0.020383572205901146, 0.02939186990261078, 0.00721008563414216, 0.021532589569687843, 0.005951911211013794, -0.008433789014816284, 0.03339045122265816, -0.01686757802963257, -0.007302007172256708, 0.005816901568323374, 0.009111709892749786, -0.010565216653048992, 0.02102702297270298, -0.011972763575613499, 0.025002622976899147, -0.04255961254239082, 0.004486913792788982, 0.029437830671668053, -0.01717781275510788, 0.029575712978839874, 0.028518617153167725, -0.019073693081736565, -0.0017378891352564096, 0.0014922866830602288, 0.013822682201862335, 0.04219192638993263, -0.013156251981854439, -0.02331356704235077, -0.011019079014658928, -0.005164834205061197, 0.04862642660737038, -0.03332151100039482, -0.012466841377317905, -0.018510673195123672, 0.007457124534994364, -0.005394637584686279, 0.03672260418534279, -0.03258613869547844, 0.020555924624204636, -0.0244281142950058, 0.011691254563629627, -0.005176324397325516, -0.00022854679264128208, 0.02585289627313614, -0.0082729272544384], [0.014934304170310497, 0.041499264538288116, 0.006482845637947321, 0.00731441518291831, -0.02164342813193798, -0.017197078093886375, -0.031497806310653687, 0.01105930469930172, 0.012886494398117065, 0.019403282552957535, -0.07557663321495056, 0.01742335595190525, 0.006420619320124388, -0.050686124712228775, -0.012354742735624313, 0.06883356720209122, 0.01220766268670559, 0.02649707719683647, -0.026542332023382187, -0.006075546611100435, -0.007676458917558193, 0.04973575845360756, -0.02403065375983715, -0.005159123335033655, -0.0064262766391038895, -0.000989963416941464, 0.020704377442598343, -0.03226714953780174, 0.02532043494284153, 0.02889561653137207, 0.018599998205900192, -0.02044415846467018, 0.037743061780929565, 0.017310217022895813, 0.05204378813505173, 0.06390072405338287, -0.0097638675943017, -0.030592696741223335, 0.01752517931163311, -0.020240508019924164, -0.016122261062264442, 0.041137222200632095, 0.021699996665120125, 0.008926641196012497, -0.04539123550057411, 0.057383932173252106, 0.03183722123503685, 0.004245528485625982, 0.02303503267467022, 0.033986855298280716, -0.029054010286927223, -0.0022387313656508923, -0.0001962248788913712, 0.04478028416633606, 0.03661167249083519, 0.00543631287291646, 0.019980289041996002, -0.021903647109866142, 0.0062848529778420925, -0.005721988156437874, -0.03790145367383957, 0.07892553508281708, -0.038399264216423035, 0.03054744005203247, -0.0005621577729471028, -0.04165766015648842, -0.03744889795780182, 0.03226714953780174, -0.015307662077248096, 0.012535764835774899, 0.05539269372820854, -0.004562316928058863, -0.006279196124523878, -0.044259846210479736, -0.006013320293277502, -0.030027002096176147, 0.01889415830373764, 0.005651276558637619, 0.01898466795682907, 0.01330510713160038, -0.008174268528819084, 0.03505035862326622, -0.029325542971491814, -0.018034303560853004, 0.0036430652253329754, 0.005809670779854059, -0.02934817038476467, -0.006675181444734335, -0.012852553278207779, -0.0012084624031558633, 0.006686495617032051, 0.006844889372587204, 0.058108020573854446, 0.07068903744220734, -0.01211715117096901, -0.013372991234064102, 0.012399998493492603, 0.010855655185878277, -7.861149242671672e-06, 0.06629925966262817, 0.014504377730190754, 0.027854740619659424, 0.017672259360551834, -0.0032385943923145533, 0.025727733969688416, -0.05358247458934784, -0.05358247458934784, 0.01394999772310257, 0.030841602012515068, -0.023261310532689095, 0.03971167281270027, 0.029031382873654366, -0.0063301087357103825, 0.026768609881401062, -0.022887952625751495, -0.01303357444703579, -0.039508022367954254, -0.03636276721954346, 0.041250359266996384, -0.04851386323571205, -0.030660578981041908, 0.028691966086626053, -0.01596386544406414, -0.06571093946695328, 0.01363320928066969, 0.038580287247896194, 0.0019912405405193567, -0.021518975496292114, -0.01302226074039936, 0.0014524176949635148, -0.015296348370611668, 0.006199999246746302, 0.04272116348147392, -0.010844341479241848, 0.01431204192340374, -0.017740143463015556, 0.0309321116656065, 0.012909121811389923, -0.024799996986985207, -0.06752115488052368, -0.002292472403496504, -0.009492333978414536, -0.009797808714210987, 0.0024466237518936396, -0.056659847497940063, -0.007189962547272444, 0.043988313525915146, 0.05358247458934784, 0.05276787653565407, -0.020681748166680336, -0.034167878329753876, 0.051681745797395706, -0.050686124712228775, 0.03525400906801224, 0.02166605554521084, -0.03532189130783081, 0.011262954212725163, 0.03181459382176399, -0.03606860712170601, -0.01879233308136463, -0.06946714222431183, -0.03337590768933296, 0.0023377276957035065, -0.027492696419358253, 0.030751090496778488, 0.002046395791694522, 0.006375364027917385, 0.02091933973133564, -0.05833429843187332, 0.002043567132204771, -0.05118393525481224, -0.04226860776543617, -0.038127731531858444, -0.01934671215713024, -0.037562038749456406, -0.016574814915657043, -0.014481749385595322, 0.024437952786684036, 0.035367149859666824, -0.023872260004281998, 0.02008211426436901, 0.01215109322220087, -0.012739414349198341, 0.003501641796901822, -0.03690583258867264, -0.001199269900098443, 0.029959119856357574, 0.01490036305040121, -0.022458026185631752, 0.021507661789655685, -0.004067335277795792, 0.008722991682589054, -0.020070800557732582, -0.015669705346226692, -0.032629191875457764, -0.011353465728461742, -0.04412408173084259, -0.01270547229796648, 0.015477370470762253, 0.04819707199931145, -0.014402552507817745, -0.011630655266344547, -0.00772737106308341, 0.011568428948521614, -0.07734159380197525, -0.03018539771437645, 0.014413866214454174, -0.03588758781552315, 0.058017510920763016, 0.02283138409256935, 0.029868608340620995, -0.03376057744026184, -0.03959853574633598, -0.023600727319717407, 0.006590327713638544, -0.010448356159031391, 0.0215529166162014, 0.05960145220160484, 0.021767880767583847, -0.021213499829173088, 0.006047261878848076, -0.013180655427277088, 0.030343791469931602, 0.018294522538781166, -0.012954377569258213, 0.012943063862621784, 0.03882919251918793, -0.019765324890613556, -0.008677735924720764, -0.08851969242095947, -0.01725364662706852, 0.03681532293558121, 0.022605106234550476, -0.03613648936152458, 0.04238174483180046, 0.03357955813407898, -0.004952645394951105, -0.0008711677510291338, -0.015013501048088074, 0.0011971485801041126, 0.04342262074351311, 0.0354350320994854, 0.010606749914586544, -0.024981018155813217, 0.008179925382137299, -0.021213499829173088, -0.036181747913360596, 0.011641968972980976, 0.056750357151031494, 0.01303357444703579, 0.007964962162077427, 0.024799996986985207, 0.07684378325939178, -0.029664959758520126, 0.03364744037389755, 0.004777280148118734, 0.026361310854554176, -0.01853211410343647, -0.00014973196084611118, -0.034258387982845306, 0.01362189557403326, -0.0029981748666614294, -0.02147371880710125, 0.0381503589451313, -0.0495547391474247, 0.006974998861551285, 0.046567875891923904, -0.05833429843187332, -0.016020435839891434, 0.04337736591696739, -0.07317809015512466, 0.010210764594376087, -0.016088318079710007, 0.013768976554274559, -0.004033393692225218, 0.03613648936152458, 0.016812406480312347, -0.027402186766266823, 0.04937371611595154, 0.025614595040678978, 0.004853649064898491, -0.013101457618176937, 0.015895983204245567, -0.006567699834704399, -0.006420619320124388, -0.006103831343352795, -0.0003537351149134338, 0.013814231380820274, -0.02082883007824421, 0.046567875891923904, 0.016823720186948776, -0.05118393525481224, -0.039032842963933945, -0.004203101620078087, -0.03790145367383957, 0.011393063701689243, -0.0331948846578598, -0.023012405261397362, -0.018283208832144737, 0.019946347922086716, -0.020489413291215897, 0.04082043096423149, -0.038580287247896194, 0.0077726268209517, -0.047744520008563995, 0.02649707719683647, 0.01027299091219902, -0.025388317182660103, 0.0036289228592067957, -0.026089778169989586, -0.04066203907132149, -0.014368611387908459, -0.020240508019924164, -0.017932478338479996, -0.015432114712893963, -0.0030123169999569654, 0.018781019374728203, 0.00372791918925941, -0.029755469411611557, 0.0030151456594467163, 0.027175908908247948, 0.0033602186013013124, 0.05349196493625641, -0.04892116039991379, -0.018758391961455345, 0.007710400503128767, 0.04412408173084259, 0.02826203964650631, -0.04333211109042168, 0.046477366238832474, 0.005690874997526407, 0.02597663924098015, 0.0022740871645510197, -0.006844889372587204, 0.006641239859163761, -0.017570436000823975, -0.04093357175588608, 0.050324078649282455, -0.017445983365178108, -0.00538822915405035, -0.014934304170310497, 0.0040192510932683945, 0.029325542971491814, -0.01761569082736969, -0.001807390246540308, 0.0396437905728817, 0.02762846276164055, 0.07141312956809998, -0.004604743793606758, -0.00784050952643156, -0.00230661453679204, 0.02439269796013832, 0.017830654978752136, -0.007919707335531712, -0.07308758050203323, 0.022163866087794304, 0.00824780948460102, 0.0168916042894125, 0.02789999544620514, 0.007676458917558193, -0.02835255116224289, -0.01752517931163311, 0.047654006630182266, 0.05896787345409393, -0.019867150112986565, -0.0012134122662246227, -0.001292609260417521, 0.008519342169165611, 0.039508022367954254, -0.04964524880051613, -0.016665326431393623, -0.006414962466806173, -0.04423721879720688, -0.002272672951221466, -0.00200679711997509, 0.011743794195353985, 0.012139779515564442, 0.0002862054680008441, -0.019154377281665802, 0.017287589609622955, 0.0398021824657917, 0.0010472398716956377, 0.03654379025101662, -0.0015655563911423087, 0.050505101680755615, 0.04457663744688034, -0.04874013736844063, 0.0010415829019621015, 0.056931380182504654, -0.013916056603193283, -0.02787736803293228, 0.03772043436765671, -0.01604306325316429, -0.0012530108215287328, -0.045843787491321564, -0.006086860317736864, -0.0008711677510291338, 0.031882476061582565, -0.006103831343352795, -0.0405488982796669, -0.0037335760425776243, -0.02964233234524727, -0.0020591237116605043, -0.04131824150681496, 0.01606569066643715, 0.0405488982796669, 0.027221163734793663, -0.01835109293460846, 0.022797441110014915, -0.011144159361720085, 0.03851240500807762, -0.05815327540040016, 0.016009122133255005, -0.020941967144608498, 0.010861312039196491, 0.0013703921576961875, 0.018588682636618614, 0.050233568996191025, -0.03910072520375252, -0.030660578981041908, 0.058108020573854446, 0.033353280276060104, -0.013508757576346397, 0.03914598003029823, -0.019210945814847946, -0.014368611387908459, -0.030773717910051346, -0.01303357444703579, 0.06285984814167023, -0.07105108350515366, -0.007648174185305834, -0.02633868157863617, 0.03102262318134308, 0.02311423048377037, -0.03292335197329521, -0.013010947033762932, -0.007393612060695887, -0.01880364678800106, 0.002873722231015563, -0.01597518101334572, -0.001328672282397747, 0.030072258785367012, -0.00593978026881814, 0.028556199744343758, -0.03027590736746788, 0.00573330232873559, -0.011534487828612328, -0.009809122420847416, 0.030162770301103592, -0.007252188865095377, -0.009152918122708797, -0.008112042210996151, -0.046092692762613297, -0.04238174483180046, -0.03441678360104561, -0.007563319988548756, -0.010736859403550625, -0.05688612163066864, 0.02622554451227188, -0.02697225846350193, 0.028872989118099213, 0.07286130636930466, 0.037199996411800385, 0.03172408416867256, 0.030773717910051346, 0.03247079998254776, -0.01935802586376667, 0.00363457971252501, -0.06028028205037117, -0.01796642132103443, -0.015850728377699852, 0.012071896344423294, 0.019844522699713707, 0.018283208832144737, -0.0009609715780243278, -0.017774084582924843, 0.008553283289074898, -0.019765324890613556, -0.01586204208433628, -0.03878393769264221, -0.015839414671063423, 0.044621892273426056, -0.0012480609584599733, -0.07625546306371689, 0.050414592027664185, 0.032900724560022354, 0.007959305308759212, -0.004791422747075558, -0.05249634385108948, -0.0268817488104105, -0.020840143784880638, -0.018848901614546776, 0.02706276997923851, -0.00835529062896967, -0.02504890225827694, 0.00875693280249834, -0.019391968846321106, 0.002687043510377407, 0.07014597207307816, 0.01064634881913662, -0.003818430006504059, -0.008915327489376068, -0.020342333242297173, -0.0215529166162014, 0.05186276510357857, 0.0016235399525612593, -0.009113320149481297, 0.057655464857816696, 0.009243429638445377, 0.000529983954038471, -0.00794233474880457, -0.018317149952054024, 0.0024423811119049788, -0.023713864386081696, -0.008807845413684845, -0.010606749914586544, -0.01142134889960289, 0.02257116511464119, -0.029235031455755234, 0.025908755138516426, 0.030230652540922165, -0.02568247728049755, -0.021247442811727524, -0.04312846064567566, -0.02640656568109989, -0.004355838987976313, -0.00537125812843442, -0.03955327719449997, 0.005555108655244112, 0.005396714434027672, 0.021349266171455383, -0.07127736508846283, -0.0002819627698045224, 0.020478099584579468, 0.02246933989226818, 0.006301824003458023, -0.0013993838801980019, -0.0048253643326461315, -0.009667699225246906, 0.03314962983131409, 0.008745619095861912, -0.03163357079029083, 0.00793102104216814, -0.02055729553103447, 0.001368270837701857, 0.012909121811389923, 0.013701093383133411, -0.006607298273593187, -0.01398393977433443, 0.006324451882392168, 0.05770072340965271, 0.013644523918628693, 0.025252550840377808, 0.004876276478171349, -0.008349633775651455, -0.011257297359406948, 0.045006562024354935, -0.0016390965320169926, 0.014368611387908459, -0.01435729768127203, 0.003447900991886854, 0.01220766268670559, -0.012954377569258213, -0.028465690091252327, -0.014323355630040169, 0.05824378877878189, -0.0012268474092707038, -0.01219634898006916, 0.021801821887493134, -0.019855836406350136, -0.004027736838907003, 0.015081385150551796, -0.002388640074059367, -0.006160400807857513, 0.02955182082951069, 0.0010437042219564319, 0.027945252135396004, -0.06249780207872391, 0.009514962323009968, 0.00772737106308341, 0.018848901614546776, -0.0019629558082669973, 0.007337042596191168, -0.020308392122387886, -0.016099633648991585, 0.01211715117096901, 0.01555656734853983, -0.02980072610080242, 0.02249196730554104, 0.06720437109470367, 0.013587954454123974, -0.014787224121391773, -0.021982843056321144, -0.023351822048425674, 0.03118101693689823, 0.011217699386179447, -0.037290506064891815, 0.012569705955684185, -0.004321897402405739, 0.02477736957371235, 0.0007827781955711544, 0.005665418691933155, -0.008700363337993622, -0.002107207663357258, 0.056297801434993744, 0.001236039912328124, 0.01568101905286312, 0.0048479922115802765, 0.007523721549659967, 0.0010514825116842985, 0.015669705346226692, 0.008321349509060383, 0.00908503495156765, -0.02595401182770729, -0.009616786614060402, 0.005289232823997736, -0.02826203964650631, -0.013486129231750965, -0.021881019696593285, 0.0024975361302495003, -0.01662006974220276, 0.021236129105091095, 0.01074251625686884, -0.03419050574302673, -0.01925620250403881, 0.02001423016190529, -0.010985764674842358, -0.02220912091434002, -0.04007371515035629, 0.0037533752620220184, -0.003801459213718772, 0.01303357444703579, -0.02715328149497509, 0.009961860254406929, 0.0065507288090884686, 0.0072465320117771626, -0.013259852305054665, 0.013746348209679127, -0.0005681682378053665, -0.016450362280011177, 0.022887952625751495, -0.005985035561025143, 0.009769524447619915, -0.04382992163300514, 0.04147663712501526, 0.0027634119614958763, 0.03253868222236633, -0.0059228092432022095, 0.027198536321520805, 0.005218521226197481, 0.00538822915405035, -0.02909926511347294, -0.007874451577663422, 0.00857591163367033, -0.003218795172870159, -0.004087134264409542, -0.03989269584417343, 0.09494597464799881, 0.019018610939383507, 0.010306932963430882, -0.022503281012177467, 0.022797441110014915, -0.00977518130093813, -0.018599998205900192, -0.018848901614546776, 0.02726641856133938, 0.0227521862834692, -0.02862408384680748, -0.009656385518610477, -0.019867150112986565, -0.043807294219732285, -0.04045838862657547, 0.011664597317576408, -0.037652548402547836, 0.0020393244922161102, 0.03405474126338959, -0.024551091715693474, -0.012886494398117065, -0.03357955813407898, 0.014708027243614197, 0.033783208578825, -0.0321313813328743, -0.02102116495370865, 0.009492333978414536, -0.006324451882392168, 0.016574814915657043, 0.031067878007888794, -0.02082883007824421, -0.002803010633215308, 0.004398265853524208, -0.005673904437571764, 0.02001423016190529, -0.021677369251847267, -0.005979378707706928, -0.0013809988740831614, 0.03405474126338959, 0.009464049711823463, -0.015895983204245567, -0.0021057934500277042, -0.017672259360551834, 0.001820118399336934, 0.009792151860892773, -0.016212770715355873, -0.04337736591696739, -0.008004561066627502, -0.014809851534664631, 0.026587586849927902, 0.02099853754043579, 0.041250359266996384, -0.02394014224410057, 0.013904742896556854, 0.008004561066627502, -0.032787587493658066, -0.030524812638759613, -0.04511970281600952, 0.02486787922680378, -0.025727733969688416, 0.02137189544737339, 0.02165474183857441, -0.012060582637786865, -0.022808756679296494, 0.032244522124528885, -0.017660945653915405, -0.04819707199931145, 0.034281015396118164, -0.01907517947256565, -0.003744889982044697, -0.011325180530548096, -0.020512040704488754, -0.001817289856262505, 0.013836859725415707, 0.004893247503787279, 0.023464960977435112, 0.015533939003944397, 0.008643794804811478, -0.0012841238640248775, -0.005218521226197481, 0.009299999102950096, 0.014809851534664631, 0.007444524671882391, 0.03552554175257683, -0.028329923748970032, -0.01861131191253662, -0.026587586849927902, -0.014662771485745907, 0.022175179794430733, 0.001900729606859386, 0.04265327751636505, -0.0042115869000554085, 0.022514594718813896, -0.00844580214470625, 0.006624269299209118, -0.012852553278207779, -0.01707262545824051, 0.057293422520160675, -0.013814231380820274, -0.017932478338479996, 0.01916569098830223, 0.005198721773922443, 0.008360947482287884, -0.02661021426320076, 0.012513136491179466, 0.03505035862326622, 0.04892116039991379, 0.006030291318893433, -0.03127152845263481, -0.03993795067071915, -0.00563996285200119, -0.012999633327126503, -0.008321349509060383, 0.007744342088699341, -0.026927003636956215, 0.037290506064891815, 0.018599998205900192, 0.0315430611371994, 0.004483119584619999, -0.020885398611426353, -0.009458392858505249, -0.023283937945961952, -0.02218649350106716, 0.016948172822594643, -0.023917514830827713, 0.008360947482287884, 0.023238683119416237, 0.003136769635602832, 0.015398172661662102, -0.02762846276164055, 0.008796531707048416, 0.01330510713160038, 0.02559196762740612, -0.0064545609056949615, -0.02649707719683647, -0.002381569007411599, -0.037018973380327225, 0.043807294219732285, -0.009373539127409458, 0.002078923163935542, -0.01853211410343647, -0.02018393948674202, 0.019312771037220955, 0.0032866783440113068, -0.012909121811389923, 0.01715182326734066, 0.05892261862754822, 0.023623354732990265, -0.007484123110771179, -0.01613357476890087, -0.028556199744343758, 0.024641603231430054, -0.03907809779047966, 0.008083757944405079, 0.034462038427591324, 0.0456627681851387, 0.013463501818478107, 0.043535761535167694, -0.029370799660682678, -0.02441532537341118, -0.008185583166778088, -0.021541602909564972, -0.04109196364879608, -0.004169160034507513, 0.0039061126299202442, 0.03715473785996437, -0.008457115851342678, 0.03586495667695999, 0.023001091554760933, 0.020206566900014877, 0.03810510411858559, -0.022955836728215218, -0.03819561377167702, -0.021258756518363953, 0.03219926729798317, 0.0034959849435836077, -0.030954740941524506, -0.010985764674842358, 0.012071896344423294, 0.005815327633172274, 0.01623539999127388, -0.01458357460796833, 0.02045547217130661, 0.03357955813407898, -0.013520071282982826, -0.0023179284762591124, 0.005911495536565781, -0.043241601437330246, 0.0003691149177029729, -0.008553283289074898, -0.0422007255256176, -0.057112399488687515, 0.008513685315847397, -0.012818611226975918, -0.02403065375983715, -0.04072992131114006, 0.04815181717276573, -0.0181700699031353, -0.023645982146263123, 0.014990873634815216, 0.012626275420188904, -0.003518612589687109, -0.04312846064567566, 0.005900181829929352, -0.00820255372673273, -0.015986494719982147, 0.019787954166531563, -0.02127007022500038, -0.0017366785323247313, 0.004732024855911732, -0.0049809301272034645, -0.024166420102119446, -0.018735764548182487, 0.054713860154151917, -0.028601456433534622, 0.023985398933291435, -0.008779561147093773, -0.01127992570400238, -0.0014990874333307147, -0.008044159039855003, 0.036181747913360596, 0.0268817488104105, 0.011585399508476257, -0.00431341165676713, 0.02093065343797207, 0.025456201285123825, 0.04082043096423149, 0.0012346256989985704, -0.004782937467098236, 0.008179925382137299, 0.03853503242135048, 0.026632843539118767, -0.011472261510789394, 0.02246933989226818, -0.00010995664342772216, 0.007178648840636015, -0.01371240708976984, 0.009616786614060402, -0.001458074664697051, 0.010080655105412006, -0.014142333529889584, 0.0009857206605374813, -0.003119798842817545, 0.017140507698059082, 0.015658391639590263, -0.04559488222002983, 0.03310437500476837, 3.184234810760245e-05, 0.0070541962049901485, 0.010210764594376087, 0.004398265853524208, -0.0033206199295818806, -0.005207207519561052, -0.004022079519927502, 0.01935802586376667, -0.01999160274863243, 0.008157297968864441, 0.03199561685323715, 0.014945617876946926, -0.019855836406350136, 0.019154377281665802, 0.02448320761322975, 0.04138612374663353, 0.014990873634815216, 0.007863137871026993, 0.006279196124523878, 0.004777280148118734, -0.01733284443616867, 0.018656566739082336, 0.006867517251521349, 0.026451820507645607, 0.004938502795994282, -0.03158831596374512, -0.02321605570614338, 0.009045436978340149, 0.010114597156643867, 0.02787736803293228, 0.0035270981024950743, 0.018022989854216576, 0.004590601660311222, 0.0054391417652368546, 0.039870068430900574, -0.03622700273990631, 0.0021637771278619766, -0.03292335197329521, -0.022084668278694153, -0.010312589816749096, -0.025026272982358932, -0.03946276754140854, -0.023872260004281998, -0.012185034342110157, 0.041680287569761276, 0.006737407762557268, -0.02468685805797577, 0.0008945026202127337, 0.02898612804710865, -0.013452188111841679, 0.020331019535660744, -0.02751532383263111, 0.026474447920918465, -0.033783208578825, 0.006313137710094452, -0.03593284264206886, 0.046748898923397064, 0.06915035843849182, 0.02522992342710495, -0.017117880284786224, 0.036272257566452026, 0.029212404042482376, -0.002989689353853464, -0.021869704127311707, 0.003764689201489091, -0.0014361540088430047, 0.01083302777260542, -0.02421167492866516, 0.03753941133618355, 0.03314962983131409, 0.0038749994710087776, 0.0032612222712486982, -0.023532843217253685, -0.015307662077248096, 0.014153647236526012, 0.030434302985668182, 0.02934817038476467, -0.008264780044555664, -0.008581568486988544, 0.02165474183857441, -0.020331019535660744, -0.0355934239923954, 0.020206566900014877, 0.00043805877794511616, -0.0031141419894993305, 0.01827189512550831, 0.02165474183857441, 0.026180287823081017, -0.006726094055920839, 0.017219705507159233, 0.041250359266996384, 0.03480145335197449, 0.022786127403378487, 0.01862262561917305, 0.028850361704826355, 0.017921164631843567, -0.0033206199295818806, 0.06566568464040756, 0.00922645814716816, 0.01454963255673647, 0.021858390420675278, 0.02136058174073696, -0.0025696619413793087, 0.027945252135396004, -0.0036260944325476885, -0.037562038749456406, 0.05018831416964531, 0.014334669336676598, 0.02477736957371235, 0.005167608615010977, -0.024256931617856026, -0.0555737130343914, 0.030230652540922165, -0.013056202791631222, -0.04523283988237381, 0.010086312890052795, -0.0016235399525612593, 0.009520619176328182, 0.018667880445718765, -0.024460580199956894, -0.0010776458075270057, -0.0309321116656065, 0.009192517027258873, -0.0006774177891202271, -0.01371240708976984, -0.005521167069673538, 0.026655470952391624, -0.023510215803980827, 0.015816785395145416, 0.007591604720801115, 0.020840143784880638, 0.038761306554079056, -0.021417150273919106, -0.043060578405857086, -0.007382298354059458, -0.0022076182067394257, -0.0011766421375796199, -0.023329194635152817, -0.05109342187643051, 0.018962040543556213, 0.01068029087036848, -0.02568247728049755, 0.03274233266711235, 0.018102187663316727, 0.010171166621148586, 0.027311675250530243, 0.0036062952131032944, 0.012943063862621784, -0.024709485471248627, -0.003968338947743177, -0.004398265853524208, -0.030841602012515068, 0.004104105290025473, -0.03959853574633598, -0.0031254556961357594, -0.0031509120017290115, 0.01431204192340374, -0.029370799660682678, -0.010171166621148586, 0.011641968972980976, 0.022152552381157875, -0.07462626695632935, -0.021145617589354515, -0.004649999551475048, 0.00944707915186882, 0.004534032195806503, -0.014368611387908459, 0.0014234258560463786, -0.015477370470762253, 0.025705106556415558, 0.005956750828772783, 0.029121894389390945, -0.018294522538781166, -0.02909926511347294, -2.4947959900600836e-05, -0.02466423064470291, -0.026927003636956215, 0.00838923268020153, 0.01422153040766716, 0.004338867962360382, -0.014730654656887054, -0.005648448131978512, 0.04082043096423149, -0.01022207923233509, 0.022231748327612877, 0.0016603099647909403, -0.025252550840377808, 0.01726496033370495, -0.007998904213309288, 0.027198536321520805, 0.012807297520339489, 0.015533939003944397, 0.046024810522794724, -0.0010005701333284378, 0.036000724881887436, -0.025365689769387245, -0.009973173961043358, 0.027221163734793663, -0.007076823618263006, -0.02274087257683277, 0.030954740941524506, -0.02137189544737339, -0.029325542971491814, 0.005012043286114931, 0.001189370290376246, -0.01916569098830223, 0.012501822784543037, -0.0030575725249946117, 0.009373539127409458, -0.008145984262228012, 0.022989777848124504, -0.029597075656056404, 0.011732480488717556, 0.007947991602122784, -0.015986494719982147, 0.031339410692453384, -0.036023352295160294, 0.012671531178057194, -0.016936859115958214, 0.003668521298095584, 0.013882114551961422, 0.011534487828612328, 0.0034309301991015673, 0.01962955854833126, 0.003914597909897566, -0.00930565595626831, -0.005973721854388714, -0.02202809974551201, 0.03457517921924591, -0.014493064023554325, 0.03054744005203247, 0.012954377569258213, 0.00029946392169222236, -0.02129269763827324, -0.01183430477976799, 0.030343791469931602, 0.039123352617025375, 0.01105930469930172, -0.019754011183977127, 0.033172257244586945, -0.032900724560022354, 0.01247919537127018, -0.017864596098661423, 0.07082480937242508, 0.012332115322351456, -0.0009977415902540088, 8.171617082552984e-05, 0.03699634596705437, -0.02266167476773262, 0.0113364951685071, 0.014436494559049606, -0.01640510745346546, 0.019765324890613556, 0.02248065359890461, 0.04505181685090065, 0.04493867978453636, 0.004449177999049425, 0.0025993608869612217, -0.010844341479241848, 0.00926040019840002, -0.011110217310488224, 0.032154008746147156, 0.00930565595626831, 0.023442331701517105, -0.017932478338479996, 0.04027736559510231, -0.01650693267583847, -0.0065959845669567585, -0.01881496049463749, -0.015160582028329372, 0.022695617750287056, -0.024528464302420616, 0.018588682636618614, 0.036453280597925186, 0.022774813696742058, -0.028126273304224014, 0.0032046528067439795, 0.01123466994613409, -0.03018539771437645, -0.007037225179374218, -0.0067656924948096275, 0.016382480040192604, 0.007744342088699341, 0.022593792527914047, -0.004126733168959618, -0.004941331222653389, 0.005227006506174803, 0.036928463727235794, 0.02055729553103447, -0.03796933591365814, -0.04244963079690933, 0.01726496033370495, -0.023781748488545418, 0.03733576089143753, -0.012377370148897171, -0.035638682544231415, -0.01898466795682907, 0.014764596708118916, 0.009034122340381145, 0.0025399632286280394, -0.04367152601480484, -0.02366860955953598, -0.006963685154914856, 0.015262406319379807, -0.008383575826883316, -0.0273343026638031, -0.03185984864830971, 0.03348904475569725, -0.0022019613534212112, -0.016654012724757195, -0.027832113206386566, -0.007201276253908873, -0.009051093831658363, -0.0035497257485985756, -0.026202915236353874, 0.01833977922797203, 0.009294341318309307, 0.004599086940288544, 0.01549999788403511, -0.0031876820139586926, 0.004932845942676067, 0.013237223960459232, 0.003744889982044697, -0.02649707719683647, -0.02211860939860344, 0.01402919553220272, 0.05494013801217079, -0.03570656478404999, -0.04267590492963791, 0.0049356743693351746, -0.001033097505569458, -0.005048813298344612, -0.03437152877449989, 0.019244886934757233, 0.006516787223517895, -0.027402186766266823, -0.0015754560008645058, 0.03688320517539978, 0.028307294473052025, 0.0010359259322285652, -0.032629191875457764, 0.015002187341451645, -0.0023165142629295588, -0.013655837625265121, -0.020613865926861763, -0.03099999576807022, 0.02202809974551201, 0.004799908027052879, 0.011410035192966461, 0.009899633936583996, 0.0025470342952758074, -0.019889777526259422, -0.005359944421797991, -0.019606931135058403, -0.027492696419358253, 0.01934671215713024, -0.041227731853723526, -0.002302371896803379, -0.039123352617025375, 0.0522700659930706, -0.007359670475125313, 0.025727733969688416, -0.0015287862624973059, -0.0010175409261137247, 0.019674815237522125, 0.03579707443714142, -0.019335398450493813, -0.002781796967610717, 0.02173393778502941, 0.0033715323079377413, 0.022695617750287056, 0.06702335178852081, 0.005096897017210722, -0.024256931617856026, -0.01307883020490408, 0.014459121972322464, 0.0235780980437994, 0.004276641644537449, -0.008276093751192093, -0.06172845885157585, -0.02844306081533432, 0.0038297439459711313, -0.007721714209765196, -0.008293064311146736, 0.041046708822250366, 0.0027619977481663227, -0.029891235753893852, -0.0462510883808136, -0.0004362909821793437, 0.0030575725249946117, 0.006816604640334845, 0.02044415846467018, 0.009520619176328182, 0.021032478660345078, 0.014775910414755344, -0.03321751207113266, 0.018566055223345757, 0.0097638675943017, 0.015024815686047077, 0.003674178384244442, -0.00538822915405035, 0.011251640506088734, -0.0030292877927422523, -0.028420433402061462, -0.007263502571731806, -0.03493722155690193, -0.0015033300733193755, 0.023827003315091133, -0.011359122581779957, -0.0005667540244758129, 0.001109466073103249, -0.039779555052518845, -0.025343062356114388, -0.027560580521821976, -0.028872989118099213, -0.02128138393163681, 0.03432627394795418, -0.04914743825793266, -0.018237954005599022, -0.006256568245589733, -0.0042483569122850895, -0.021767880767583847, 0.013520071282982826, -0.02037627436220646, 0.0013661494012922049, -0.021258756518363953, -0.014685399830341339, -0.017559122294187546, -0.02898612804710865, -0.019052552059292793, -0.03018539771437645, 0.004986586980521679, -0.040141601115465164, 0.040118973702192307, -0.011178100481629372, 0.02826203964650631, 0.01362189557403326, -0.03566130995750427, 0.016393793746829033, -0.006963685154914856, 0.0045142327435314655, -0.015104012563824654, -0.017366785556077957, 0.008502370677888393, 0.0211003627628088, -0.013644523918628693, 0.01806824468076229, 0.021677369251847267, -0.04419196397066116, 0.01069160457700491, -0.01861131191253662, 0.039213862270116806, -0.03643065318465233, 0.014153647236526012, -0.018860217183828354, -0.017762770876288414, 0.005772900767624378, -0.00589452451094985, -0.0023631840012967587, 0.050595615059137344, -0.012275545857846737, 0.015194523148238659, -0.008038502186536789, -0.010951823554933071, -0.02504890225827694, -0.0003024691541213542, -0.011262954212725163, -0.011353465728461742, -0.01726496033370495, 0.001996897626668215, 0.0185434278100729, -0.008949268609285355, -0.013689778745174408, 0.027175908908247948, -0.021903647109866142, 0.00246500875800848, 0.021428463980555534, -0.016382480040192604, -0.007065509911626577, -0.03525400906801224, 0.0026135032530874014, 0.005713502876460552, 0.0016207114094868302, 0.024437952786684036, -0.010838684625923634, -0.007563319988548756, -0.020421529188752174, 0.016190143302083015, -0.014606202021241188, -0.01760437712073326, -0.017366785556077957, -0.033059120178222656, -0.06421750783920288, 0.02615766040980816, -0.0243248138576746, 0.02980072610080242, 0.008655108511447906, 0.0390554703772068, -0.000960264471359551, 0.038670796900987625, 0.016676640138030052, -0.01979926787316799, -0.00853065587580204, -0.01981058157980442, -0.02157554402947426, 0.009147261269390583, 0.008824815973639488, 0.01845291629433632, 0.020478099584579468, 0.00844580214470625, -0.008541969582438469, -0.008462772704660892, 0.008870071731507778, 0.011675911024212837, -0.008915327489376068, -0.004098448436707258, -0.043354738503694534, -0.012230290099978447, -0.006584670394659042, 0.008519342169165611, -0.00401359423995018, -0.02136058174073696, 0.006754378788173199, -0.037562038749456406, -0.0006349908071570098, -0.006918429862707853, 0.004007937386631966, -0.030389046296477318, 0.009560217149555683, 0.009995801374316216, -0.003544068895280361, -0.023170799016952515, 0.010482298210263252, -0.0007580291130580008, -0.0011568429181352258, 0.015997808426618576, -0.018136128783226013, 0.017389412969350815, -0.010437042452394962, -0.026587586849927902, 0.015330289490520954, -0.022141236811876297, 0.010697261430323124, -0.0211003627628088, -0.024189047515392303, 0.0489664152264595, 0.034439411014318466, -0.01160802785307169, 0.01243393961340189, -0.005820984486490488, -0.00789707899093628, 0.014447808265686035, -0.016631385311484337, -0.0066921524703502655, -0.01833977922797203, -0.009373539127409458, -0.01491167675703764, 0.0422007255256176, -0.010861312039196491, -0.016993427649140358, -0.022910580039024353, -0.008281750604510307, -0.02907663770020008, 0.006205656100064516, -0.010352188721299171, -0.008892699144780636, -0.03403211012482643, 0.01083302777260542, -0.0037024628836661577, 8.159463504853193e-06, 0.029302915558218956, -0.025456201285123825, -0.009367882274091244, -0.0023631840012967587, -0.0031141419894993305, 0.008457115851342678, -0.031701456755399704, -0.018928099423646927, 0.021869704127311707, -0.03412262350320816, -0.022333573549985886, 0.014074450358748436, -0.023872260004281998, -0.01633722335100174, 0.020704377442598343, -0.01624671369791031, 0.0067883203737437725, -0.010527553036808968, 0.015522625297307968, 0.007218247279524803, 0.013610581867396832, -0.0023872258607298136, -0.026745982468128204, 0.02918977662920952, -0.012128465808928013, -0.00557490810751915, 0.004621714819222689, 0.0015259578358381987, -0.018599998205900192, -0.001372513477690518, 0.026745982468128204, 0.004369981121271849, -0.018113501369953156, -0.023623354732990265, 0.025637222453951836, 0.01054452359676361, 0.031429924070835114, 0.03063795156776905, 0.019109120592474937, -0.01083302777260542, -0.001172399497590959, -0.009933575056493282, 0.04231386259198189, -0.024098535999655724, -0.02817152813076973, -0.02157554402947426, -0.011732480488717556, 0.037018973380327225, -0.016190143302083015, -0.017400726675987244, -0.013961311429738998, 0.02303503267467022, -0.04396568611264229, 0.03217663615942001, 0.009628101252019405, -0.017547808587551117, -0.016914231702685356, 0.03346641734242439, -0.023510215803980827, 0.0011646212078630924, 0.03853503242135048, 0.03190510347485542], [0.04406702518463135, 0.05476384237408638, 0.0023286102805286646, 0.023772045969963074, -0.011439316906034946, -0.0019181228708475828, -0.030738258734345436, 0.025088021531701088, 0.006561760790646076, 0.01957058720290661, -0.022818267345428467, 0.01760266348719597, 0.029675820842385292, -0.038175322115421295, -0.025957288220524788, 0.0539911612868309, 0.021115951240062714, 0.05302530527114868, -0.04073483124375343, 0.023071803152561188, 0.0152363246306777, 0.054522376507520676, -0.014306691475212574, -0.03221118450164795, 0.014560227282345295, -0.03846507892012596, 0.012531937099993229, -0.046650681644678116, 0.03706459328532219, -0.05215603858232498, 0.056647252291440964, -0.02559509314596653, -0.004651183728128672, 0.017711320891976357, -0.01762680895626545, 0.07200431078672409, -0.05741993710398674, -0.036002155393362045, 0.009749074466526508, -0.04360824450850487, -0.03358752280473709, 0.03274240344762802, -0.027043871581554413, -0.0036732580047100782, -0.05345994234085083, 0.05968968942761421, 0.03682313114404678, -0.027237042784690857, -0.01744571141898632, 0.024918995797634125, -0.01693863980472088, -0.017155956476926804, 0.01792863942682743, 0.05263896659016609, 0.032018013298511505, 0.04030019789934158, -0.004642128944396973, 0.003359355963766575, -0.011203889735043049, -0.03892385959625244, -0.03522947430610657, 0.006942065432667732, -0.0039056662935763597, -0.02184034138917923, -0.020451927557587624, -0.0021128025837242603, -0.0023603022564202547, 0.04807531088590622, -0.047399215400218964, 0.05133506655693054, 0.03716117888689041, 0.00869871024042368, 0.023313267156481743, -0.015586446039378643, 0.005520451348274946, -0.014065228402614594, 0.048703115433454514, 0.012278401292860508, 0.020959001034498215, 0.002628929913043976, -0.014185959473252296, 0.023095950484275818, -0.001993580022826791, -0.011143524199724197, -0.016226323321461678, 0.004642128944396973, -0.04855823889374733, -0.017204249277710915, -0.01893071085214615, 0.00848139263689518, 0.016238396987318993, 0.050465796142816544, 0.06017261743545532, 0.06335993111133575, -0.009598160162568092, 0.010733037255704403, 0.010720963589847088, -0.01788034662604332, -0.01616595685482025, 0.0274302139878273, -0.02781655453145504, -0.003676276421174407, 0.015719251707196236, -0.04447751119732857, 0.049644824117422104, 0.004527433775365353, -0.05085213854908943, -0.019812051206827164, 0.020838269963860512, 0.004267861135303974, -0.005523469299077988, 0.03175240382552147, 0.02564338594675064, -0.0007032614084891975, 0.019148027524352074, 0.004672311712056398, -0.06794773042201996, -0.04324604943394661, 0.013811691664159298, -0.012604376301169395, -0.022600950673222542, 0.0034348133485764265, 0.0017490986501798034, -0.05036921054124832, 0.020186318084597588, 0.011795474216341972, -0.0415799543261528, -0.006320297718048096, -0.0011295947479084134, 0.03933434560894966, 0.007841515354812145, -0.006700602360069752, 0.07388772070407867, -0.011879987083375454, -0.010926207527518272, 0.006235785782337189, 0.0050194151699543, -0.006259932182729244, -0.014874129556119442, -0.004633074160665274, 0.0014306691009551287, -0.00791999138891697, -0.012133522890508175, 0.023023510351777077, -0.05205945298075676, -0.023361559957265854, 0.019981075078248978, 0.050997015088796616, 0.016021080315113068, -0.0462401919066906, -0.03129362314939499, 0.036919716745615005, -0.026343628764152527, 0.04817189648747444, -0.02421875298023224, -0.002010180614888668, 0.023953143507242203, 0.01081754919141531, -0.002775317057967186, -0.004847372882068157, -0.03189728036522865, -0.010600232519209385, -0.012869985774159431, -0.013690960593521595, 0.02870996855199337, -0.005825298372656107, 0.01833912543952465, 0.011324621737003326, -0.04541921615600586, -0.00718956533819437, -0.021502293646335602, -0.01982412487268448, -0.04143507406115532, 0.011258219368755817, -0.03300801292061806, -0.02779240719974041, -0.011409133672714233, 0.0006142219062894583, 0.012049010954797268, -0.05684042349457741, 0.021260829642415047, 0.0067126755602657795, 0.0004301062144804746, -0.02158680558204651, -0.03474654629826546, 0.0077932230196893215, 0.01204297412186861, 0.011958462186157703, -0.0050194151699543, 0.007286150474101305, 0.021466074511408806, -0.0349397175014019, -0.019655101001262665, -0.0077268206514418125, -0.0260055810213089, -0.026754116639494896, -0.03573654592037201, 0.0011741145281121135, 0.004285970702767372, 0.05795115604996681, -0.020319122821092606, -0.021900707855820656, 0.006130145397037268, 0.014741324819624424, -0.08359453827142715, -0.035953860729932785, 0.014065228402614594, -0.021828267723321915, 0.04812360554933548, 0.03761995956301689, 0.019341198727488518, -0.01757851615548134, -0.06756138801574707, 0.003461977932602167, -0.026681678369641304, 0.053701404482126236, 0.017976930364966393, 0.04988628625869751, 0.05205945298075676, -0.00495603121817112, -0.007008467800915241, -0.03708874061703682, 0.03856166452169418, -0.009139380417764187, 0.008155417628586292, 0.04225604981184006, 0.015284617431461811, -0.0026666587218642235, -0.017735468223690987, -0.08132478594779968, -0.03515703231096268, 0.05176969990134239, -0.014620593748986721, -0.0037970079574733973, 0.01593656837940216, 0.028468504548072815, -0.002041872823610902, -0.02104351297020912, -0.00014129366900306195, 0.0023527564480900764, 0.03790971264243126, 0.020162172615528107, -0.014789617620408535, 0.007702674251049757, 0.02955508977174759, -0.004983195569366217, -0.04759238660335541, 0.010835658758878708, 0.05297701433300972, -0.004681366961449385, 0.037740688771009445, 0.033346060663461685, 0.03807873651385307, -0.018399491906166077, 0.009072978049516678, 0.009622306562960148, -0.004382556304335594, -0.031124599277973175, 0.024846557527780533, -0.027550945058465004, 0.03344264626502991, -0.0082399295642972, -0.043970439583063126, 0.022649243474006653, -0.02953094244003296, -0.00012459875142667443, -0.012169742956757545, -0.06393944472074509, 0.011397060938179493, 0.06606431305408478, -0.07886186242103577, 0.03972068801522255, 0.010056939907371998, 0.04022775962948799, -0.04715775325894356, 0.00556874368339777, 0.006489322055131197, -0.03088313713669777, 0.027068018913269043, 0.052687257528305054, -0.018423637375235558, 0.012006754986941814, 0.02955508977174759, -0.0011907151201739907, 0.00035389442928135395, 0.02694728784263134, 0.013884130865335464, -0.006386700086295605, -0.019981075078248978, 0.060220908373594284, 0.026343628764152527, -0.06253895163536072, -0.016443639993667603, 0.009960354305803776, -0.03563996031880379, 0.0018215376185253263, -0.01057608611881733, -0.03923776000738144, 0.019582660868763924, 0.01095638982951641, -0.03341849893331528, 0.04510531574487686, -0.009109197184443474, 0.0016570407897233963, -0.05872383713722229, 0.03585727885365486, -0.025305338203907013, -0.024001436308026314, -0.012761327438056469, -0.014922422356903553, -0.0005082044517621398, -0.06128334626555443, -0.051817990839481354, -0.029917282983660698, -0.0170352254062891, -0.02117631770670414, -0.002165622543543577, -0.015538153238594532, -0.011052975431084633, -0.022975217550992966, 0.023977290838956833, 0.03317703679203987, 0.05616432800889015, -0.03411874175071716, 0.014451568946242332, 0.003920757677406073, 0.02115217223763466, 0.023989362642169, -0.029386064037680626, 0.013606448657810688, -0.027888992801308632, 0.004439903423190117, 0.0073766992427408695, -0.00979736726731062, -0.03788556903600693, -0.0028628474101424217, -0.03607459366321564, 0.011475536040961742, -0.029748259112238884, -0.00398414209485054, 0.014113521203398705, -0.022999364882707596, 0.007020541001111269, -0.018809979781508446, 0.0009756620274856687, -0.0014902803814038634, 0.042183611541986465, 0.06500187516212463, 0.024532655254006386, 0.036026302725076675, 0.023240827023983, 0.049596529453992844, -0.0021595859434455633, 0.01159626804292202, -0.060703836381435394, 0.0361228883266449, -0.011982608586549759, -0.020403636619448662, 0.009302367456257343, 0.01682998053729534, -0.023252900689840317, 0.023156315088272095, 0.037788983434438705, 0.05075555294752121, 0.011372914537787437, 0.020367415621876717, -0.06548480689525604, -0.014668886549770832, 0.005589871667325497, -0.0033835023641586304, 0.003196368459612131, -0.008475356735289097, -0.03740264102816582, 0.008849624544382095, -0.03745093569159508, -0.008843587711453438, 0.00014893371553625911, -0.025088021531701088, -0.03006216138601303, -0.03339435160160065, 0.027647530660033226, -0.017892418429255486, 0.03561581298708916, 0.018858272582292557, 0.0574682280421257, -0.009435172192752361, -0.0349397175014019, 0.008342551998794079, 0.04447751119732857, 0.012218034826219082, -0.005888682324439287, 0.048413362354040146, -0.019148027524352074, -0.015622665174305439, -0.0015861110296100378, -0.006471212487667799, 0.02278204821050167, 0.050900429487228394, 0.004832281265407801, -0.025860702618956566, 0.000733066990505904, -0.005230695474892855, -0.02298729121685028, -0.0326458178460598, -0.024279119446873665, 0.024943143129348755, -0.0033080452121794224, -0.020222539082169533, 0.03839264065027237, -0.0014397240011021495, 0.0037306055892258883, 0.012199925258755684, 0.006682492792606354, -0.006652309559285641, 0.019196320325136185, 0.010316512547433376, 0.023639241233468056, 0.07108674943447113, -0.0177475418895483, -0.038730688393116, 0.028106309473514557, 0.027937285602092743, -0.017663029953837395, 0.054908718913793564, -0.014173886738717556, -0.03148679435253143, -0.023723753169178963, -0.021260829642415047, 0.019498148933053017, -0.06171797960996628, -0.06224919855594635, 0.014439496211707592, 0.04937921464443207, 0.014705105684697628, -0.01238705962896347, -0.04889628663659096, 0.02202143892645836, -0.039503369480371475, -0.0427631214261055, -0.02740606665611267, 0.03315288946032524, -0.012199925258755684, 0.0024765064008533955, 0.025884849950671196, -0.03003801591694355, 0.003875483525916934, -0.02607801929116249, -0.010847731493413448, 0.01660059206187725, 0.010968463495373726, 0.007533650379627943, 0.0053091710433363914, -0.07181113958358765, -0.0537496954202652, -0.06533993035554886, -0.026802409440279007, 0.0016766596818342805, -0.00016751505609136075, 0.003881520126014948, -0.025426069274544716, -0.0011228036601096392, 0.03187313675880432, 0.02870996855199337, 0.022214610129594803, 0.037547517567873, -0.002079601399600506, -0.023663388565182686, -0.006253895349800587, 0.007871698588132858, -0.027575090527534485, 0.00464816577732563, -0.009749074466526508, 0.01916010119020939, 0.022178389132022858, 0.032911427319049835, 0.0018275742186233401, -0.02214216999709606, -0.01833912543952465, 0.005125055089592934, -0.031221184879541397, -0.014608520083129406, 0.058578960597515106, -0.030327770859003067, -0.03704044595360756, 0.03708874061703682, 0.03522947430610657, 0.0268748477101326, -0.015308763831853867, -0.04160410165786743, -0.053121890872716904, -0.007539686746895313, -0.015453641302883625, -0.01598486118018627, -0.011282365769147873, -0.026681678369641304, -0.007056760601699352, 0.04109702631831169, 0.0025459269527345896, 0.053701404482126236, 0.005339353810995817, 0.007877735421061516, 0.011632487177848816, 0.00851761270314455, 0.05423262342810631, 0.026222897693514824, 0.029337773099541664, -0.045757267624139786, 0.03346679359674454, 0.03167996555566788, 0.015767542645335197, 0.0026123293209820986, 0.005490268114954233, 0.015079373493790627, -0.020222539082169533, 0.002408594824373722, 0.020476074889302254, -0.005674384068697691, 0.008807368576526642, -0.024170460179448128, 0.03390142694115639, 0.005822279956191778, -0.005149201489984989, 0.026295335963368416, -0.03718532621860504, -0.016262542456388474, 0.005770969204604626, 0.004267861135303974, -0.03916532173752785, 0.009042794816195965, 0.010129379108548164, 0.01895485632121563, -0.05041750520467758, -0.017506077885627747, 0.005013378337025642, 0.039986297488212585, 0.015127666294574738, 0.007086943369358778, -0.0003833227383438498, -0.006555724423378706, 0.027285335585474968, -0.0018849216867238283, -0.00871078297495842, 0.008656453341245651, -0.058047741651535034, 0.02147814631462097, 0.018677175045013428, 0.025426069274544716, -0.00817352719604969, -0.031172892078757286, 0.03696800768375397, 0.009012611582875252, 0.00041011004941537976, 0.03180069476366043, 0.027647530660033226, 0.005381609778851271, 0.01325632631778717, 0.041266050189733505, -0.012942424975335598, 0.051045309752225876, 0.00029126490699127316, 0.013884130865335464, 0.012906204909086227, -0.0001578942610649392, 0.005245786625891924, -0.0314626470208168, 0.06756138801574707, -0.00961626973003149, -0.01826668716967106, 0.022625096142292023, -0.007334443274885416, -0.04095214977860451, 0.0029926339630037546, 0.008620234206318855, -0.006585907191038132, 0.041314344853162766, -0.009767184033989906, 0.011747182346880436, -0.019401563331484795, -0.04812360554933548, -0.004451976623386145, 0.02342192456126213, -0.0036491118371486664, -0.007135236170142889, 0.004536489024758339, -0.008089015260338783, -0.009483464993536472, 0.031197037547826767, -0.039479225873947144, 0.01961888000369072, 0.04150751605629921, 0.006706638727337122, 0.005921883508563042, -0.020319122821092606, -0.013703033328056335, 0.0024236864410340786, 0.05616432800889015, -0.03679898381233215, 0.047447506338357925, -0.001008108607493341, 0.005282006226480007, 0.023711681365966797, 0.02520875260233879, -0.016334982588887215, -0.0014932986814528704, 0.04121775925159454, 0.012314620427787304, 0.01724046841263771, -0.023735826835036278, 0.01992070861160755, 0.026150459423661232, 0.022105950862169266, -0.009525720961391926, -0.018327053636312485, -0.008765112608671188, -0.004077708814293146, -0.005200512707233429, -0.044356778264045715, 0.014560227282345295, -0.047882143408060074, -0.0016162939136847854, -0.010527793318033218, 0.005085817538201809, 0.023759974166750908, -0.024073876440525055, -0.028009725734591484, 0.05770969018340111, 0.019449856132268906, -0.024846557527780533, -0.020959001034498215, -0.011185780167579651, 0.0019256685627624393, 0.02472582645714283, 0.009899988770484924, -0.00026466624694876373, -0.021115951240062714, 0.0001433687430107966, 0.017312906682491302, -0.00096736173145473, 0.0021309121511876583, -0.015598518773913383, 0.012199925258755684, -0.004421793855726719, -0.006109017413109541, -0.03745093569159508, 0.006033560261130333, 0.03484313189983368, 0.03003801591694355, -0.014717178419232368, 0.01565888524055481, 0.013425351120531559, -0.028420211747288704, -0.01604522578418255, 0.02355472929775715, -0.019679246470332146, 0.0038483189418911934, -0.0049681044183671474, -0.062490660697221756, 0.06447066366672516, 0.033297766000032425, -0.012966571375727654, -0.02566753327846527, 0.012169742956757545, -0.009109197184443474, -0.021514365449547768, -0.005541579332202673, 0.00906694121658802, 0.03718532621860504, -0.01392035000026226, 0.006356517318636179, -0.007763040252029896, -0.08856867998838425, -0.004868500865995884, 0.032935574650764465, -0.01803729683160782, 0.007781149819493294, 0.03346679359674454, -0.024399850517511368, 0.004602891393005848, 0.0019332142546772957, 0.00023240827431436628, 0.00812523439526558, -0.010914133861660957, -0.02998972311615944, -0.01969132013618946, -0.03682313114404678, -0.01685412786900997, 0.03346679359674454, -0.009338587522506714, 0.01366681419312954, 0.029651673510670662, -0.006688529159873724, 0.02051229402422905, -0.0033050267957150936, -0.005927920341491699, -0.014680959284305573, 0.03653337433934212, 0.021055586636066437, -0.04597458243370056, 0.014825836755335331, 0.019317051395773888, -0.025063874199986458, -0.008964319713413715, -0.0060094138607382774, -0.05220433324575424, -0.012797546572983265, -0.007201638538390398, 0.029506796970963478, 0.02273375540971756, 0.02270960807800293, -0.0009432153892703354, 0.00890395324677229, 0.021236684173345566, -0.015779616311192513, -0.019522296264767647, -0.03431191295385361, 0.013703033328056335, -0.02564338594675064, 0.026391921564936638, 0.022359486669301987, -0.0007496675825677812, -0.017795834690332413, 0.01746985875070095, -0.006899809464812279, -0.010727000422775745, 0.011614377610385418, 0.014753398485481739, 0.014294617809355259, -0.01657644473016262, -0.0231200959533453, 0.031245330348610878, 0.01746985875070095, -0.0022622079122811556, 0.014439496211707592, 0.04196629300713539, 0.025401923805475235, 0.011149561032652855, -0.04809945821762085, 0.03486727923154831, 0.025957288220524788, 0.003679294604808092, -0.005046579521149397, -0.10701646655797958, 0.001140913343988359, -0.022854486480355263, -0.0027164604980498552, 0.017940711230039597, -0.015453641302883625, 0.00840291753411293, -0.025401923805475235, 0.010745109990239143, 0.000366533495252952, 0.008101088926196098, 0.026126312091946602, -0.025933142751455307, 0.05751652270555496, -0.013449497520923615, -0.017276687547564507, 0.002171659143641591, -0.023590948432683945, -0.005218622274696827, 0.0018351199105381966, 0.019244613125920296, 0.031028013676404953, -0.008185600861907005, 0.005131091922521591, -0.0009967900114133954, -0.05259067192673683, -0.005852463189512491, 0.02644021436572075, 0.01259230263531208, 0.009404989890754223, -0.04850994423031807, 0.03163167089223862, 0.014234252274036407, 0.027188749983906746, 0.012495717965066433, -0.026729971170425415, -0.04411531612277031, -0.014210105873644352, -0.02866167575120926, 0.01348571665585041, -0.02170753665268421, -0.010322549380362034, 0.015598518773913383, -0.009767184033989906, 0.02156265825033188, -0.043052878230810165, 0.012531937099993229, 0.04049336910247803, 0.021393634378910065, -0.00872285570949316, -0.008493466302752495, 0.003911702893674374, 0.003603837452828884, 0.015127666294574738, 0.027478506788611412, -0.005351427011191845, -0.021345341578125954, -0.003736642189323902, 0.01959473453462124, 0.00021222347277216613, 0.010219927877187729, -0.014922422356903553, 0.04860652983188629, 0.002391994232311845, -0.00695413863286376, -0.029241187497973442, -0.009899988770484924, 0.020850341767072678, -0.02776826173067093, -0.008523648604750633, 0.04684384912252426, 0.05157652869820595, -0.0002591955999378115, 0.041724830865859985, 0.0002995652030222118, -0.048413362354040146, 0.003745696973055601, -0.03894800692796707, -0.02474997192621231, -0.013135595247149467, -0.007563833147287369, 0.0057256948202848434, -0.00562609126791358, 0.008571941405534744, -0.014427422545850277, -0.026850702241063118, 0.030714111402630806, 0.0016811871901154518, -0.009652488864958286, 0.026343628764152527, 0.02158680558204651, 0.015019007958471775, -0.001150722848251462, -0.002610820345580578, -0.006356517318636179, 0.0029926339630037546, 0.035591669380664825, 0.010189744643867016, -0.012362913228571415, 0.048799701035022736, -0.028347773477435112, 0.0022622079122811556, 0.0007326897466555238, -0.019836196675896645, 0.011318584904074669, 0.013026936911046505, -0.028033871203660965, -0.04768897220492363, 0.03486727923154831, -0.000685906270518899, -0.010123342275619507, -0.009483464993536472, 0.01762680895626545, 0.019775832071900368, -0.023337412625551224, -0.004023379646241665, -0.005294079426676035, -0.06915504485368729, -0.022419853135943413, 0.006555724423378706, 0.015369129367172718, -0.019341198727488518, 0.0012065611081197858, -0.0037758799735456705, 0.016648883000016212, 0.028927285224199295, 0.0020645097829401493, 0.000534237187821418, -0.031245330348610878, 0.049644824117422104, -0.028178749606013298, 0.0024795245844870806, -0.023433998227119446, -0.014294617809355259, -0.020777903497219086, 0.028806554153561592, 0.03196972236037254, 4.232679202686995e-05, 0.0062659685499966145, -0.015610592439770699, 0.01210937649011612, 0.03440849855542183, 0.03834434598684311, -0.0314626470208168, -0.021055586636066437, -0.0100388303399086, 0.03988971188664436, 0.008590050972998142, -0.014886203221976757, 0.0037094776052981615, -0.007099016569554806, -0.00490472000092268, 0.007207674905657768, 0.008396880701184273, 0.011034865863621235, -0.0035102705005556345, 0.016214249655604362, -0.0031178928911685944, 0.0164798591285944, -0.003009234555065632, -0.010763219557702541, -0.05471554771065712, 0.01923253946006298, -0.021188391372561455, 0.012061083689332008, 0.0035163071006536484, -0.03397386521100998, -0.01874961331486702, 0.03617117926478386, -0.015646811574697495, 0.02520875260233879, -0.028565090149641037, -0.019956929609179497, 0.03484313189983368, 0.0013612484326586127, -0.030689965933561325, -0.0035555448848754168, 0.016491932794451714, 0.01016559824347496, 0.007418955210596323, -0.002506689168512821, -0.019015222787857056, -0.014693032018840313, -0.024991435930132866, 0.008535722270607948, 0.009779257699847221, 0.0024010492488741875, 0.01818217523396015, -0.04049336910247803, -0.02289070561528206, 0.032428499311208725, -0.0007462720386683941, 0.030617527663707733, 0.010382914915680885, 0.012012791819870472, -0.011650596745312214, 0.0200776606798172, 0.00956797692924738, -0.0407106876373291, 0.047012872993946075, -0.028516797348856926, -0.025474362075328827, -0.012000718154013157, 0.011861876584589481, -0.002458396600559354, -0.017771687358617783, -0.0014638702850788832, 0.061090175062417984, -0.030641673132777214, -0.0025957287289202213, -0.008934136480093002, 0.014463642612099648, -0.007569869514554739, 0.028516797348856926, 0.021164244040846825, 0.03807873651385307, -0.006308224517852068, 0.027164604514837265, -0.012344803661108017, 0.0366782508790493, 0.03274240344762802, 0.00671871192753315, -0.02092278189957142, 0.010099195875227451, 0.03238020837306976, -0.02511216700077057, -0.009109197184443474, -0.005393682979047298, 0.0066462731920182705, -0.009724928066134453, -0.05297701433300972, 0.006519504822790623, -0.010920170694589615, 0.020657172426581383, 0.06867212057113647, -0.021067660301923752, -0.031100453808903694, 0.047012872993946075, 0.04240093007683754, -0.023904850706458092, 0.027454359456896782, 0.014258398674428463, 0.047809701412916183, 0.004285970702767372, 0.008559868671000004, 0.013280472718179226, -0.000916805409360677, 0.004892646800726652, 0.019401563331484795, 0.007787186652421951, 0.02559509314596653, 0.009356697089970112, 0.01586412824690342, 0.006767004728317261, 0.013932423666119576, 0.040420930832624435, 0.006893772631883621, 0.021309122443199158, 0.02074168436229229, 0.012115413323044777, 0.04983799159526825, 0.0003957731823902577, 0.015381202101707458, -0.0036943862214684486, 0.020041441544890404, -0.012097303755581379, 0.03972068801522255, -0.048389215022325516, -0.022130098193883896, 0.04138678312301636, 0.007255967706441879, 0.021961072459816933, -0.009060904383659363, -0.033804841339588165, -0.04148336872458458, 0.035543374717235565, -0.02781655453145504, -0.004461031407117844, 0.009157489985227585, 0.0038513371255248785, 0.03679898381233215, 0.029023870825767517, 0.023470217362046242, -0.012930351309478283, -0.0076604182831943035, 0.026271190494298935, 0.015079373493790627, -0.005085817538201809, -0.03716117888689041, 0.030714111402630806, -0.009803404100239277, 0.021284976974129677, -0.004122983198612928, -0.00816145446151495, 0.028178749606013298, -0.004506305791437626, -0.0020207446068525314, 0.01660059206187725, -0.007008467800915241, -0.005357463378459215, -0.02822704240679741, -0.036919716745615005, 0.024001436308026314, 0.0076785278506577015, -0.00991206243634224, 0.0329597182571888, -0.010286330245435238, 0.022033512592315674, 0.03460166975855827, -0.015296690165996552, 0.03902044519782066, -0.03979312628507614, 0.00347706931643188, -0.038682397454977036, -0.050948724150657654, 0.011517792008817196, -0.017506077885627747, 0.01040706131607294, 0.00781736895442009, 0.017155956476926804, -0.022926926612854004, -0.015151812694966793, -0.0026213843375444412, 0.03385313227772713, -0.03889971226453781, -0.03250093758106232, 0.02342192456126213, 0.011638524010777473, 0.0340704508125782, -0.007123162969946861, -0.024593021720647812, 0.0008986956672742963, 0.03880312666296959, -0.00404752604663372, 0.005752859637141228, -0.03764410316944122, -0.03851337358355522, -0.008445173501968384, 0.001608748221769929, -0.03588142246007919, -2.6740157409221865e-05, 0.014294617809355259, -0.011566084809601307, -0.016745468601584435, 0.004116946831345558, 0.011976571753621101, -0.00478398846462369, -0.014982787892222404, 0.0009605705854482949, -0.00030899737612344325, -0.02365131489932537, -0.007841515354812145, -0.0007960738148540258, 0.013594374991953373, 0.025739971548318863, 0.032887279987335205, -0.019763758406043053, 0.015586446039378643, -0.023409852758049965, 0.0011733599239960313, 0.003966032061725855, 0.009115234017372131, -0.031172892078757286, 0.02694728784263134, -0.02738192118704319, -0.014560227282345295, -0.010322549380362034, -0.011886022984981537, -0.0002446700818836689, 0.0260055810213089, -0.016660956665873528, -0.011946389451622963, -0.0007832460687495768, 0.02870996855199337, -0.007086943369358778, -0.030110454186797142, 0.0024734882172197104, -0.0022712626960128546, 0.005541579332202673, -0.03240435570478439, 0.0054993233643472195, -0.02339777909219265, 0.012483644299209118, -0.003682313021272421, -0.010533830150961876, 0.007986393757164478, 0.034625813364982605, 0.01563473790884018, -0.022661317139863968, 0.00974303763359785, -0.017228394746780396, 0.02431533858180046, -0.028058016672730446, 0.017204249277710915, 0.0036400568205863237, 0.025401923805475235, -0.030376063659787178, -0.017554370686411858, 0.02452058158814907, 0.02953094244003296, 0.014451568946242332, -0.002917176578193903, -0.004883592016994953, -0.004421793855726719, 0.0020690374076366425, -0.039527516812086105, 0.07292187213897705, -0.001906049670651555, -0.005577798467129469, 0.010425170883536339, 0.06611260771751404, -0.01629876159131527, 0.003878501709550619, 0.02784070000052452, 0.03225947543978691, 0.018025223165750504, 0.005743804387748241, 0.04949994385242462, 0.04208702594041824, 0.009435172192752361, -0.032935574650764465, -0.022697536274790764, -0.010847731493413448, -0.022975217550992966, 0.0069299922324717045, 0.0005398964858613908, 0.023518510162830353, -0.02912045456469059, 0.02337363176047802, -0.003217496443539858, 0.015115592628717422, -0.00914541631937027, -0.01938949152827263, -0.010443281382322311, -0.028782406821846962, 0.004126001615077257, 0.036436788737773895, 0.04225604981184006, -0.016636811196804047, -0.018025223165750504, 0.006211639381945133, -0.02447229065001011, -0.015019007958471775, -0.01542949490249157, 0.0075276135466992855, 0.012761327438056469, 0.026560945436358452, 0.022830341011285782, -0.01751815155148506, 0.011898096650838852, 0.030786551535129547, 0.03561581298708916, -0.02280619367957115, -0.023409852758049965, 0.011161633767187595, -0.009598160162568092, 0.03324947506189346, 0.008282185532152653, -0.050610676407814026, -0.021671317517757416, 0.0032476792111992836, 0.0028749206103384495, 0.007877735421061516, -0.02293899841606617, -0.023747900500893593, 0.0030892190989106894, 0.01258022990077734, -9.384993609273806e-05, -0.029337773099541664, -0.024967288598418236, 0.014185959473252296, -0.009332550689578056, -0.04005873575806618, 0.005873591173440218, 0.000673455826472491, -0.0036310020368546247, -0.011602303944528103, -0.015767542645335197, 0.0231200959533453, 0.02868582122027874, 0.0034649961162358522, 0.013787545263767242, 0.022999364882707596, 0.026729971170425415, 0.005324262194335461, -0.0012322166003286839, 0.011143524199724197, -0.037354350090026855, 0.004385574255138636, 0.058578960597515106, -0.016334982588887215, 0.0007447628886438906, 0.026754116639494896, 0.009749074466526508, 0.013461570255458355, -0.0052337138913571835, 0.016612663865089417, -0.0004584027046803385, -0.010310476645827293, -0.0030243259388953447, 0.041266050189733505, 0.03194557502865791, -0.012966571375727654, -0.04073483124375343, 0.00591886555776, 0.000837575295008719, -0.007841515354812145, -0.03271825611591339, -0.010539866052567959, 0.02255265787243843, -0.015055227093398571, 0.007702674251049757, 0.0016872237902134657, 0.0011401587398722768, -0.019425710663199425, -0.0065798708237707615, 0.0010330094955861568, -0.015308763831853867, -0.003404630348086357, -0.01902729645371437, -0.021333269774913788, -0.04551580175757408, 0.03848922625184059, 0.0023346468806266785, 0.01969132013618946, 0.0005953575600869954, -0.013751326128840446, 0.01366681419312954, 0.008807368576526642, -0.0013363475445657969, -0.004252769518643618, 0.03373240306973457, -0.020017294213175774, 0.04691628739237785, 0.03921361640095711, -0.009555904194712639, -0.022818267345428467, 0.021055586636066437, 0.026271190494298935, 0.03696800768375397, 0.014210105873644352, -0.009942244738340378, -0.037740688771009445, -0.01323218084871769, -0.0026983506977558136, -0.011318584904074669, -0.004171275999397039, 0.04384970664978027, -0.05065896734595299, -0.00024316093185916543, -0.0456123873591423, 0.021115951240062714, -0.026198752224445343, -0.008734929375350475, 0.02866167575120926, 0.03134191781282425, 0.032018013298511505, 0.018966929987072945, -0.003136002691462636, 0.01637120172381401, 0.028371918946504593, -0.006682492792606354, 0.03402215614914894, -0.003087709890678525, 0.025039728730916977, -0.02827533520758152, -0.02957923524081707, 0.017614737153053284, -0.03167996555566788, 0.015803763642907143, -0.009103160351514816, -0.0011295947479084134, 0.008300296030938625, 0.011825657449662685, 0.012290474027395248, -0.024327412247657776, -0.017566444352269173, -0.037306055426597595, 0.0017913547344505787, 0.012688888236880302, -0.07084528356790543, 0.0016811871901154518, 0.00696017500013113, 0.01874961331486702, -0.030327770859003067, 0.0007013749564066529, 0.0062478589825332165, -0.013364985585212708, 0.004506305791437626, -0.004796061664819717, -0.0019513240549713373, -0.02214216999709606, -0.03759581223130226, -0.029313625767827034, -0.008342551998794079, -0.013268399983644485, 0.04377726837992668, 0.01987241767346859, 0.003959995694458485, -0.04008288308978081, -0.023639241233468056, 0.012471571564674377, -0.010159561410546303, 0.021164244040846825, -0.01916010119020939, -0.010479500517249107, 0.005674384068697691, -0.0076423087157309055, -0.011566084809601307, 0.008270112797617912, 0.032042160630226135, -0.0511418953537941, -0.008233893662691116, -0.007913954555988312, 0.02557094767689705, 0.0069118826650083065, -0.0035163071006536484, -0.014125593937933445, 0.0033623743802309036, 0.012737181037664413, -0.016926566138863564, 0.002422177232801914, 0.043994586914777756, -0.000366533495252952, -0.003046963131055236, -0.012556083500385284, -0.037354350090026855, 0.0069782850332558155, 0.011765291914343834, -0.017071444541215897, -0.019787905737757683, -0.011185780167579651, 0.01728876121342182, 0.018532296642661095, 0.0027738078497350216, -0.02825118787586689, 0.02209387719631195, -0.041338492184877396, 0.0063323709182441235, 0.025353631004691124, -0.01598486118018627, -0.019341198727488518, -0.015779616311192513, -0.009417062625288963, -0.016878273338079453, -0.018254613503813744, 0.005927920341491699, -0.010382914915680885, -0.007292186841368675, -0.006658346392214298, -0.0007066570105962455, 0.00937480665743351, -0.015779616311192513, -0.004101855214685202, -0.016697175800800323, -0.0222508292645216, 0.017107663676142693, -0.036847274750471115, 0.003745696973055601, -0.0019905618391931057, 0.04578141123056412, -0.007841515354812145, 0.04988628625869751, 0.005333317443728447, -0.014451568946242332, -0.030979720875620842, -0.011855840682983398, -0.01434291061013937, 0.025377776473760605, 0.021345341578125954, 0.03916532173752785, 0.0134374238550663, -0.003359355963766575, 0.010582122020423412, -0.043028730899095535, 0.022625096142292023, -0.002272771904245019, 0.006272005382925272, 0.023759974166750908, -0.012326693162322044, -0.016866201534867287, -0.006917919032275677, 0.0004814171406906098, 0.046143606305122375, -0.007340479642152786, 0.010811512358486652, 0.0063142613507807255, 0.012869985774159431, 0.020910708233714104, -0.014258398674428463, -0.010672670789062977, 0.00914541631937027, 0.016999006271362305, -0.03399801254272461, 0.0071774921379983425, -0.0111254146322608, 0.002657603705301881, 0.00041048735147342086, 0.010624377988278866, -0.011360840871930122, -0.017590589821338654, -0.015996932983398438, -0.035519227385520935, 0.01392035000026226, 0.009724928066134453, -0.03143850341439247, -0.002099220175296068, -0.009954318404197693, 0.06910675019025803, -0.023759974166750908, -0.0001464813540223986, 0.015924494713544846, 0.003214478027075529, 0.0002365584223298356, 0.014113521203398705, -0.014210105873644352, -0.004113928414881229, -0.012833766639232635, 0.012230108492076397, -0.02730948105454445, 0.007901881821453571, 0.009121269918978214, -0.015139739029109478, -0.045250192284584045, 0.025908995419740677, 0.015019007958471775, -0.01792863942682743, -0.007871698588132858, -0.03981727361679077, -0.021550586447119713, 0.028420211747288704, -0.021031439304351807, -0.02060887962579727, 0.007606089115142822, -0.01806144416332245, 0.002639493905007839, 0.004575726576149464, -0.01788034662604332, -0.027188749983906746, -0.015489860437810421, -0.020343270152807236, 0.0067307851277291775, -0.0222508292645216, -0.039479225873947144, 0.013859984464943409, -0.018121808767318726, -0.009151453152298927, 0.022951072081923485, -0.019546441733837128, -0.00010526284313527867, 0.012531937099993229, 0.0036370386369526386, 0.010485537350177765, -0.008916026912629604, 0.0006149764521978796, -0.01737327314913273, 0.033756546676158905, 0.009978464804589748, -0.002382939448580146, -0.0016781688900664449, -0.009042794816195965, -0.052349209785461426, -0.004895665217190981, 0.008771148510277271, 0.011867913417518139, -0.010334623046219349, -0.03271825611591339, 0.03134191781282425, -0.01105901226401329, 0.03349093720316887, 0.0404692217707634, -0.03003801591694355, 0.009380843490362167, -0.017964858561754227, -0.000625917746219784, 0.02301143854856491, -0.011463463306427002, -0.005674384068697691, -0.008384807966649532, 0.017180101945996284, 0.03315288946032524, -0.014487789012491703, -0.018508149310946465, -0.01916010119020939, 0.009326513856649399, -0.008964319713413715, 0.03708874061703682, -0.0029035944025963545, 0.0051099639385938644, -0.04148336872458458, 0.0021490219514817, -0.026295335963368416, -0.009930172003805637, 0.0245447289198637, -0.008704746142029762]], "input": ["IMPORTANT TO KNOW:Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.", "DELAY IN RECEIVING BAGGAGE:Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.", "RISHON LE ZION:Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.", "YEHUD:Yehud is a city where Moka, a pickup and delivery point, is located.", "REHOVOT:Rehovot is a city where ARTY Rimon provides pickup and delivery services.", "NES ZIONA:Nes Ziona is a city where Makor Haziud operates.", "SHOHAM:Shoham is a city where ARTY Rimon provides pickup and delivery services.", "RAMLE:Ramle is a city where ARTY Rimon provides pickup and delivery services.", "LOD:Lod is a city where ARTY Rimon provides pickup and delivery services.", "SHLOMO HA-MELEKH:", "EL AL ISRAEL AIRLINES:EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.", "FLIGHT TICKETS:Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.", "BOARDING PASSES:Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.", "BAGGAGE TAGS:Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.", "LOST OR DAMAGED BAGGAGE REPORT:A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.", "RECEIPTS:Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-1d9f077eec8599c8d978600fb5ebfaa4 b/cache/text_embedding/embedding-1d9f077eec8599c8d978600fb5ebfaa4 deleted file mode 100644 index d713ef897960c05c7239a4c451e47af3780e0dcc..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-1d9f077eec8599c8d978600fb5ebfaa4 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.024692805483937263, -0.00525073055177927, 0.013195343315601349, 0.024264993146061897, -0.014398565515875816, 0.03780793398618698, -0.029064513742923737, -0.012299610301852226, 0.005364368204027414, 0.02518746256828308, -0.0333426408469677, -0.007052222266793251, -0.008041538298130035, 0.006066248286515474, -0.03307525813579559, 0.019986866042017937, -0.014157921075820923, 0.014091075398027897, 0.011584361083805561, 0.013957384042441845, 0.038743771612644196, 0.027366632595658302, 0.05855683982372284, 0.001975290710106492, -0.07112383097410202, -0.03711273893713951, 0.03967961296439171, 0.022914709523320198, 0.03577582165598869, -0.007586988154798746, 0.08299563080072403, -0.011410562321543694, -0.00748671917244792, -0.018329093232750893, -3.154281876049936e-05, -0.010708682239055634, -0.015040284022688866, -0.004074246156960726, 0.031096624210476875, 0.017219454050064087, -0.015120499767363071, -0.034599337726831436, -0.022005606442689896, -0.011009488254785538, -0.046471137553453445, 0.046417661011219025, -0.005187226925045252, -0.019893283024430275, 0.018663322553038597, 0.022473527118563652, 0.03286135196685791, 0.00873004924505949, 0.0029529090970754623, -0.012921275570988655, -0.02385054901242256, -0.01602960005402565, -0.0010043567745015025, 0.0531824454665184, -0.0012943000765517354, 0.0022109218407422304, 0.03778119385242462, -0.022099191322922707, 0.006497402675449848, 0.017259562388062477, -0.009679258801043034, -0.01008033286780119, 0.00043240818195044994, 0.02359653450548649, -0.015682002529501915, 0.004365024622529745, 0.06641789525747299, 0.041471078991889954, 0.0022343178279697895, 0.0027139356825500727, -0.0020254249684512615, -0.030535120517015457, 0.03371697664260864, -0.0020354518201202154, -0.001666964846663177, -0.006751416716724634, -0.025989610701799393, 0.017139239236712456, 0.011985435150563717, 0.027032405138015747, -0.04240691661834717, 0.039358753710985184, -0.047674357891082764, -0.009732735343277454, -0.04101652652025223, -0.020762277767062187, -0.0700543001294136, 0.0011982093565165997, -0.023489581421017647, 0.008643150329589844, 0.0319255106151104, -0.026992296800017357, 0.02312861569225788, -0.018649952486157417, -0.014452042058110237, 0.05566910654306412, -0.009886479936540127, 0.0016552668530493975, -0.033048518002033234, -0.006654490251094103, 0.029839923605322838, -0.033289164304733276, -0.02855648659169674, 0.04973320662975311, -0.016911964863538742, -0.030214261263608932, -0.0031801846344023943, -0.0018566395156085491, -0.026310471817851067, 0.08978715538978577, -0.02780781500041485, -0.004385078325867653, -0.0489310584962368, 0.024184778332710266, 0.019077764824032784, 0.01958579197525978, -0.04981342330574989, -0.015909278765320778, 0.03580256178975105, -0.036604709923267365, 0.0321928933262825, -0.0146124716848135, -0.0014463739935308695, -0.030989671126008034, -0.02014729753136635, -0.037406858056783676, 0.06791523844003677, -0.021310411393642426, 0.059679847210645676, -0.07369071245193481, -0.009004116989672184, 0.02366338111460209, -0.026871975511312485, -0.01953231543302536, -0.020575109869241714, -0.028957560658454895, 0.03558865562081337, 0.015588419511914253, 0.05989375337958336, 0.0181552954018116, -0.03066881187260151, -0.00047752904356457293, 0.026203518733382225, 0.045107483863830566, -0.007907846942543983, 0.0054746633395552635, 0.017206085845828056, -0.008288867771625519, -0.021484211087226868, 0.014799639582633972, 0.03708599880337715, -0.05216639116406441, 0.023355890065431595, 0.08748766034841537, 0.013616470620036125, -0.02992013841867447, 0.008469351567327976, 0.015855802223086357, -0.03187203407287598, -0.02860996313393116, -0.014478780329227448, -0.010561621747910976, -0.02729978784918785, 0.0039773196913301945, -0.042888205498456955, -0.05577605962753296, -0.06144457682967186, -0.0374603345990181, -0.021083137020468712, -0.008990747854113579, -0.013823692686855793, -0.03339611738920212, 0.012914590537548065, -0.014545626007020473, -0.013683316297829151, 0.016564367339015007, 0.005170515738427639, -0.022914709523320198, -0.12342391908168793, -0.03911810740828514, -0.03606994450092316, 0.04393099993467331, -0.025013664737343788, -0.0018265589606016874, -0.05029471218585968, -0.03895767778158188, 0.02034783363342285, 0.022179406136274338, -0.0010611756006255746, 0.0300003532320261, -0.015895908698439598, 0.01326887309551239, -0.023502951487898827, -0.018422678112983704, 0.048636939376592636, -0.019946759566664696, 0.019853174686431885, -0.017005547881126404, 0.02445216104388237, 0.00610635569319129, 0.0014547297032549977, -0.021123243495821953, -0.03229984641075134, 0.011129810474812984, 0.041524555534124374, -0.03208594024181366, 0.011363770812749863, -0.056792113929986954, 0.01958579197525978, 0.005384421907365322, 0.005564905237406492, -0.003111667698249221, 0.028984298929572105, -0.03336937725543976, 0.024839865043759346, 3.1758238492329838e-06, -0.0004108922148589045, 0.0039004471618682146, 0.02017403580248356, -0.011036226525902748, -0.012406563386321068, -0.003846970619633794, 0.00035261112498119473, -0.05254072695970535, 0.0347597673535347, 0.0035595339722931385, -0.02377033419907093, -0.005571589805185795, -0.0270992498844862, -0.04941234737634659, 0.03606994450092316, -0.02652437798678875, -0.00017818559717852622, -0.020735539495944977, -0.007119067944586277, 0.031711604446172714, 0.05534824728965759, 0.027513694018125534, -0.030454905703663826, 0.017152609303593636, 0.028797131031751633, -0.012647207826375961, -0.0048095486126840115, -0.003452580887824297, 0.022152667865157127, 0.03580256178975105, 0.015815693885087967, -0.004582273308187723, 0.060428522527217865, -0.03425174206495285, -0.026002980768680573, -0.03820900619029999, 0.009197969920933247, -0.03633732721209526, 0.023543057963252068, 0.004629065282642841, -0.016992179676890373, 0.014291612431406975, -0.02359653450548649, -0.02227299101650715, -0.0347597673535347, -0.029572540894150734, 0.013957384042441845, 0.0022460157051682472, -0.038075316697359085, -0.0011564308078959584, -0.02375696413218975, 0.03419826552271843, 0.012486778199672699, -0.07149817049503326, -0.03828922286629677, 0.01044129952788353, -0.008556250482797623, -0.024077823385596275, -0.017580421641469002, 0.026818498969078064, -0.00629686564207077, 0.006273469887673855, 0.012774215079843998, -0.041524555534124374, -0.036684926599264145, 0.035856038331985474, -0.0010728735942393541, 0.022513635456562042, -0.02643079310655594, -0.008255445398390293, 0.0390111543238163, -0.0012575348373502493, 0.0009032526286318898, -0.009518829174339771, 0.028797131031751633, -0.00806827750056982, -0.0012784241698682308, -0.0038971048779785633, -0.05727340281009674, -0.015494835563004017, -0.01254693977534771, 0.04398447647690773, 0.0028309158515185118, -0.052594203501939774, -0.035321272909641266, 0.020026974380016327, -0.006851685233414173, 0.018529631197452545, -0.03890420123934746, 0.025588536635041237, -0.024117931723594666, -0.009278184734284878, -0.003429184900596738, -0.06679223477840424, -0.060428522527217865, 0.03238006308674812, 0.013676632195711136, 0.03478650748729706, -0.010093702003359795, -0.026337210088968277, 0.033155471086502075, -0.02371685765683651, 0.07615063339471817, -0.06561575084924698, 0.015468097291886806, -0.011584361083805561, 0.022152667865157127, 0.041631508618593216, -0.03716621547937393, -0.004739360883831978, -0.03984004259109497, 0.008181914687156677, 0.009732735343277454, -0.02365001104772091, -0.012814322486519814, -0.05000058934092522, 0.022166037932038307, 0.03628385066986084, -0.058877699077129364, 0.029706232249736786, 0.04328928142786026, -0.01537451334297657, 0.01155762281268835, 0.034492384642362595, -0.05016101896762848, 0.017981495708227158, -0.028075197711586952, -0.017192715778946877, 0.011103072203695774, 0.051925744861364365, -0.02017403580248356, 0.052005961537361145, -0.05604344233870506, -0.04098979011178017, -0.058931175619363785, 0.001191524788737297, 0.04401121288537979, -0.010361084714531898, -0.0020070422906428576, -0.006123066879808903, -0.005721992813050747, 0.00024252459115814418, 0.03395761922001839, 0.04066893085837364, 0.014572364278137684, 0.0029428822454065084, -0.016230138018727303, 0.02434520795941353, 0.0074934037402272224, -0.03238006308674812, 0.022553741931915283, 0.03687209263443947, 0.0348934605717659, 0.0030281106010079384, -0.025321153923869133, 0.00160596810746938, -0.04053523764014244, -0.002658788114786148, 0.03339611738920212, 0.0027239625342190266, 0.026163410395383835, 0.0066478056833148, 0.015615157783031464, 0.027700861915946007, 0.04529465362429619, 0.04125717282295227, -0.0391448475420475, -0.038797248154878616, -0.00280083529651165, -0.014505518600344658, -0.009238077327609062, 0.0019385255873203278, 0.005915845278650522, 0.03213941678404808, -0.013643208891153336, 0.035882774740457535, 0.027567170560359955, 0.05470652878284454, 0.05230008065700531, -0.025601906701922417, 0.01890396699309349, -0.013128497637808323, -0.009705997072160244, 0.038663558661937714, 0.008716680109500885, -0.010621783323585987, 0.0039739771746098995, -0.013810323551297188, 0.006764785852283239, -0.004933213349431753, -0.012841060757637024, 0.0009475379483774304, 0.03984004259109497, -0.019933389499783516, 0.048529986292123795, -0.04746045172214508, 0.00842255912721157, 0.014558995142579079, 0.013008174486458302, -0.012252818793058395, 0.021243566647171974, -0.033743713051080704, -0.022166037932038307, -0.045668989419937134, -0.03430521860718727, 0.030855979770421982, -0.0024248280096799135, -0.08529512584209442, 0.05508086457848549, -0.11989445984363556, -0.03975982591509819, 0.02094944566488266, 0.023543057963252068, 0.005086958408355713, -0.020548371598124504, -0.04040154814720154, -0.012466724961996078, -0.004221306648105383, -0.028315842151641846, -0.04034807160496712, 0.021123243495821953, -0.05457283556461334, 0.045695725828409195, 0.042834728956222534, 0.026190148666501045, -0.03414478898048401, -0.01534777507185936, 0.013690001331269741, 0.041471078991889954, -0.0016469111433252692, -0.008496089838445187, -0.001624350668862462, -0.014906592667102814, -0.01881038211286068, -0.03997373208403587, -0.011357085779309273, 0.02085586078464985, -0.0672200471162796, 0.03139074519276619, -0.03136400505900383, 0.04518770053982735, 0.06454622000455856, 0.024545744061470032, 0.004047507885843515, 0.010254131630063057, -0.009204654023051262, 0.010374453850090504, 0.006751416716724634, -0.013703370466828346, -0.030561858788132668, 0.0015199043555185199, -0.06903824955224991, -0.03294156491756439, 0.0098196342587471, 0.060481999069452286, -0.00940519105643034, 0.01665795035660267, -0.011109757237136364, -0.004451924003660679, -0.02858322486281395, -0.010006802156567574, 0.06529489159584045, -0.04660482704639435, -0.031096624210476875, 0.04275451600551605, 0.03149769827723503, 0.04545508325099945, 0.0070455376990139484, -0.050615571439266205, 0.010040225461125374, -0.05230008065700531, -0.017914649099111557, 0.001913458458147943, -0.015267560258507729, 0.01362983975559473, -0.014091075398027897, -0.0077474177815020084, -0.029599279165267944, 0.06476012617349625, -0.003689883043989539, 0.08502773940563202, -0.010929273441433907, -0.016911964863538742, 0.00028096087044104934, 0.013061651028692722, -0.004094299860298634, 0.01619003154337406, 0.018556369468569756, -0.04323580488562584, -0.013456040993332863, 0.0003726648283191025, -0.042914945632219315, 0.014024229720234871, 0.0046090115793049335, -0.020802384242415428, -0.026176780462265015, 0.02516072429716587, 0.013542940840125084, -0.03858334198594093, 0.002426499268040061, 0.02093607559800148, -0.016256876289844513, 0.031631387770175934, 0.02938537299633026, -0.01463920995593071, 0.023302413523197174, -0.0038971048779785633, -0.048476509749889374, -0.030535120517015457, -0.024572482332587242, 0.01946547068655491, 0.010675259865820408, -0.05657820776104927, 0.021764962002635002, 0.004221306648105383, 0.017794327810406685, -0.023369260132312775, -0.009960010647773743, -0.03561539202928543, -0.001126350136473775, 0.05115033686161041, 0.00973941944539547, -0.030160782858729362, 0.024091193452477455, -0.023863917216658592, -0.02228635922074318, 0.05016101896762848, 0.00907096266746521, -0.021764962002635002, 0.0074599809013307095, 0.04631070792675018, -0.016484152525663376, 0.030134044587612152, -0.04139086231589317, -0.003719963598996401, 0.01360978651791811, 0.01949220895767212, -0.053530044853687286, 0.007399819791316986, 0.020401310175657272, -0.025454845279455185, -0.006032824981957674, 0.01189853623509407, -0.0050936429761350155, -0.03606994450092316, 0.02569548971951008, 0.004522112198174, 0.04842303320765495, -0.0021240224596112967, 0.014492149464786053, 0.004705938044935465, -0.008489404805004597, 0.033850666135549545, -0.028797131031751633, 0.04032133147120476, -0.013288927264511585, 0.001197373727336526, -0.07342332601547241, 0.003783467225730419, 0.0021123243495821953, -0.021871915087103844, 0.00298131862655282, 0.005103670060634613, 0.0006400476559065282, -0.020441418513655663, 0.009679258801043034, 0.0005255743744783103, -0.014799639582633972, -0.025040403008461, -0.03989351913332939, -0.006721335928887129, -0.02232646755874157, 0.005451267585158348, 0.008536197245121002, 0.009358399547636509, 0.05839641019701958, 0.010454668663442135, 0.02243342064321041, -0.03080250322818756, 0.047674357891082764, -0.02852974832057953, -0.02663133107125759, -0.014037598855793476, 0.017981495708227158, -0.008362398482859135, 0.017018917948007584, 0.020080450922250748, 0.018329093232750893, 0.001363652409054339, 0.018008233979344368, -0.02437194623053074, 0.008943955413997173, -0.003001372329890728, -0.01119665615260601, -0.006326946429908276, 0.026978928595781326, 0.006497402675449848, -0.003133392659947276, -0.0009533869451843202, -0.009224708192050457, 0.0003043568576686084, -0.02717946469783783, -0.011952012777328491, 0.0035829299595206976, -0.005020112730562687, -0.006443926133215427, -0.008870425634086132, -0.01882375217974186, 0.03727316856384277, 0.00802816916257143, -0.02442542277276516, -0.006059563718736172, -0.0014029243029654026, -0.01826224848628044, -0.02443879097700119, 0.03395761922001839, -0.012052280828356743, 0.015695372596383095, 0.0042914943769574165, 0.00013651147310156375, 0.04967973008751869, -0.017620528116822243, 0.040882837027311325, -0.02435857616364956, 0.015481466427445412, 0.021203458309173584, -0.031631387770175934, 0.007553565315902233, 0.009231392294168472, 0.013409249484539032, 0.01181163638830185, 0.017674004659056664, -0.021109875291585922, 0.016470782458782196, 0.008175230585038662, -0.01887722872197628, -0.004889763426035643, -0.015735479071736336, 0.001443867338821292, 0.020641954615712166, -0.025575168430805206, -0.018649952486157417, 0.0009909876389428973, 0.0007825125940144062, -0.017059024423360825, -0.009224708192050457, 0.0646531730890274, -0.0476476214826107, 0.0034024466294795275, 0.008609727025032043, -0.05208617448806763, 0.0027573853731155396, 0.04037480801343918, -0.029117990285158157, -0.01672479696571827, 0.004181199241429567, -0.026243625208735466, 0.020521633327007294, -0.023984240368008614, 0.028850607573986053, 0.008135123178362846, -0.02438531443476677, -0.03008056804537773, 0.00842924416065216, -0.00982631929218769, -0.0023095193319022655, 0.02171148546040058, -0.0348934605717659, -0.016577735543251038, 0.04117695614695549, 0.013756847009062767, 0.026778390631079674, 0.012760845944285393, 0.02719283476471901, -0.019291670992970467, 0.01746009849011898, 0.027540432289242744, 0.010962695814669132, -0.03133726865053177, -0.09422571212053299, -0.024251623079180717, 0.01824887841939926, -0.019786329939961433, -0.02302166260778904, -0.04663156718015671, -0.015815693885087967, -0.012018858455121517, -0.013810323551297188, 0.04534813016653061, -0.016243508085608482, 0.0011455683270469308, -0.012353086844086647, -0.03433195501565933, 0.011577676981687546, -0.015454728156328201, 0.0044586085714399815, 0.004893105942755938, -0.005381079390645027, -0.009371768683195114, 0.005785495974123478, -0.04802195727825165, 0.015361144207417965, -0.040829360485076904, -0.01953231543302536, 0.004344970919191837, -0.009157862514257431, -0.016417305916547775, 0.03256722912192345, -0.03911810740828514, -0.0028075198642909527, 0.017567051574587822, 0.00011729332618415356, 0.024198146536946297, -0.001468098838813603, 0.011129810474812984, -0.010214024223387241, -0.02731315605342388, -0.011096388101577759, 0.0005055206711404026, 0.0027757680509239435, -0.015775587409734726, 0.0013569678412750363, -0.00454885046929121, -0.005334287416189909, 0.03272765874862671, 0.015120499767363071, -0.04671178013086319, 0.08433254808187485, -0.0015140553005039692, -0.022847862914204597, -0.02644416317343712, 0.011671260930597782, -0.011377139948308468, -0.040829360485076904, 0.02935863472521305, -0.019906651228666306, 0.0005631750682368875, 0.0518990084528923, 0.0068784235045313835, -0.003556191688403487, -0.02374359592795372, 0.005808892194181681, -0.02089596912264824, 0.001913458458147943, 0.008589673787355423, -0.03342285379767418, -0.02167137898504734, -0.0013319007121026516, 0.025013664737343788, 0.01592264696955681, -0.017152609303593636, 0.026377316564321518, 0.02094944566488266, 0.01820877194404602, 0.012780899181962013, -0.012981436215341091, -0.009659204632043839, -0.009057593531906605, 0.005180542357265949, -0.027754338458180428, 0.01819540187716484, 0.012694000266492367, -0.010294239036738873, 0.014438672922551632, 0.020441418513655663, -0.017232824116945267, -0.014157921075820923, 0.005213965196162462, -0.027005666866898537, -0.017580421641469002, -0.027781076729297638, -0.019117873162031174, 0.005030139349400997, -0.015842432156205177, -0.02660459280014038, -0.014318350702524185, -0.0133290346711874, -0.06572270393371582, 0.012199342250823975, 0.02373022586107254, -0.02243342064321041, -0.009538882412016392, 0.0032085939310491085, 0.0005431213648989797, 0.07652496546506882, 0.005113696679472923, -0.07759449630975723, 0.0013377497671172023, -0.00912443920969963, -0.020000236108899117, -0.011778214015066624, 0.014759532175958157, 0.016871856525540352, 0.048636939376592636, -0.038102053105831146, 0.03294156491756439, -0.020575109869241714, -0.02223288267850876, 0.012968067079782486, -0.007406504359096289, 0.00575541565194726, 0.038021840155124664, 0.014746163040399551, 0.000821366673335433, 0.006363711319863796, 0.00010559533257037401, 0.021978868171572685, 0.029492326080799103, 0.008222022093832493, -0.04484010115265846, 0.009652520529925823, 0.006584302522242069, 0.028476271778345108, 0.021243566647171974, 0.012038911692798138, 0.0007202625274658203, -0.001505699590779841, 0.04128390923142433, 0.03187203407287598, 0.03823574632406235, 0.04310211166739464, -0.024906711652874947, -0.014492149464786053, -0.014385196380317211, 0.011965381912887096, 0.024853235110640526, -0.0038302592001855373, 0.014371827244758606, 0.002418143441900611, 0.03898441791534424, -0.03540148586034775, -0.026297101750969887, 0.006193255074322224, -0.030909456312656403, 0.0181552954018116, -0.016604473814368248, 0.061123717576265335, 0.023890655487775803, 0.012246133759617805, -0.004248044919222593, 0.03238006308674812, 0.012754160910844803, -0.010066963732242584, -0.014532256871461868, -0.007205967325717211, -0.03080250322818756, 0.03133726865053177, 0.012326348572969437, 0.00025840045418590307, -0.00030101457377895713, 0.044251859188079834, -0.04280799254775047, 0.04836955666542053, -0.00032837953767739236, -0.05877074599266052, -0.018663322553038597, -0.013135181739926338, 0.06160500645637512, 0.03427847847342491, 0.02576233632862568, 0.009953325614333153, 0.03703252226114273, 0.06582965701818466, -0.008990747854113579, -0.0020872573368251324, -0.013288927264511585, -0.0365779735147953, 0.035989727824926376, 0.021925391629338264, -0.010996119119226933, -0.030321214348077774, 0.0073931352235376835, 0.03270092234015465, 0.010728736408054829, 0.01397075317800045, 0.021176720038056374, -0.025334523990750313, 0.003766755573451519, -0.0006471500382758677, 0.002583586610853672, -0.02379707247018814, -0.011036226525902748, -0.01826224848628044, -0.005297522526234388, -0.03711273893713951, -0.000598686863668263, 0.008021485060453415, -0.005454609636217356, 0.028048459440469742, 0.014157921075820923, 0.04556203633546829, 0.02721957303583622, 0.01505365315824747, -0.01425150502473116, 0.0194387324154377, 0.0038870780263096094, -0.009084331803023815, 0.006537510082125664, -0.0014781256904825568, -0.022206144407391548, 0.026337210088968277, -0.013877169229090214, 0.008302236907184124, -0.01217928808182478, 0.02231309749186039, -0.031791817396879196, 0.00733297411352396, 0.03625711426138878, 0.02791476808488369, -0.03286135196685791, -0.038128793239593506, 0.04874389246106148, 0.0006166516686789691, 0.029572540894150734, 0.008155176416039467, 0.021871915087103844, -0.011644522659480572, 0.0036731716245412827, -0.006293523591011763, -0.014759532175958157, -0.00023187104670796543, -0.0300003532320261, 0.0027139356825500727, -0.010207340121269226, 0.005481347907334566, -0.045829419046640396, 0.003994030877947807, 0.013389195315539837, 0.02030772715806961, -0.007820948027074337, 0.017861172556877136, -0.028262365609407425, 0.0012575348373502493, 0.013369142077863216, -0.0005168009083718061, 0.009398506954312325, 0.026671437546610832, -0.0005234854761511087, 0.049171704798936844, 0.018476154655218124, 0.031123362481594086, 0.021403996273875237, 0.017259562388062477, -0.01362983975559473, 0.011330347508192062, 0.016564367339015007, 0.005447925068438053, -0.0009868097258731723, -0.03967961296439171, 0.026765022426843643, 0.014585733413696289, -0.03609668090939522, 0.026256995275616646, 0.0223398357629776, -0.01287448313087225, -0.008562935516238213, 0.009144493378698826, -0.009030855260789394, 0.011938643641769886, -0.009111070074141026, -0.004695910960435867, 0.04457271844148636, 0.03366350010037422, -0.008950640447437763, -0.014772901311516762, 0.0460968017578125, -0.009980063885450363, 0.02509387955069542, 0.03072228841483593, 0.019732853397727013, 0.006367053836584091, 0.02788802981376648, -0.004595642443746328, 0.02578907459974289, -0.012252818793058395, 0.047166332602500916, 0.0016970454016700387, -0.032406799495220184, 0.01672479696571827, 0.023248936980962753, 0.025628644973039627, -0.015722110867500305, 0.005524797830730677, 0.015200714580714703, 0.01744673028588295, 0.0008276334265246987, 0.0231152456253767, 0.01873016729950905, 0.004786152858287096, -0.0143584581092, -0.03155117481946945, -0.039385490119457245, 0.005227334331721067, 0.016577735543251038, -0.02439868450164795, -0.04136412590742111, 0.002473291242495179, -0.022179406136274338, -0.03061533533036709, 0.011263501830399036, -0.015361144207417965, -0.010341031476855278, 0.026925452053546906, -0.013756847009062767, 0.012439986690878868, 0.011410562321543694, -0.02169811725616455, -0.02373022586107254, 0.009632466360926628, 0.021992238238453865, 0.02229972928762436, -0.0056618317030370235, 0.0011004474945366383, 0.03478650748729706, 0.01502691488713026, -0.003699909895658493, 0.014411934651434422, -0.02930515818297863, -0.023262307047843933, 0.03369023650884628, -0.032406799495220184, -0.02442542277276516, -0.027339894324541092, 0.00979958102107048, 0.0023713514674454927, 0.002327901776880026, -0.002516740933060646, -0.007841001264750957, 0.003452580887824297, -0.005113696679472923, -0.013355772942304611, 0.045802678912878036, -0.026831867173314095, 0.05861031636595726, 0.03446564823389053, 0.00642387242987752, -0.02517409436404705, 0.028449533507227898, 0.012326348572969437, -0.00021098177239764482, 0.02235320582985878, -0.03152443468570709, -0.005581616889685392, -0.030909456312656403, 0.01741999201476574, -0.004495373927056789, -0.043556664139032364, -0.004074246156960726, 0.001666129333898425, -0.04098979011178017, -0.0006860040593892336, -0.019799698144197464, 0.005437898449599743, -0.005083616357296705, -0.0021574452985078096, -0.026912081986665726, -0.0323265865445137, -0.029839923605322838, -0.003963950555771589, -0.007526826579123735, 0.00751345744356513, -0.006580960005521774, -0.018663322553038597, -0.01736651547253132, -0.0012700684601441026, -0.02171148546040058, -0.012526885606348515, 0.011397193185985088, -0.00834902934730053, 0.0012190985726192594, -0.033182211220264435, -0.006701282225549221, 0.024117931723594666, -0.0009032526286318898, 0.02855648659169674, -0.010407877154648304, 0.0036631447728723288, -0.017700742930173874, 0.013282242231070995, -0.011751475743949413, 0.04625723138451576, -0.009939956478774548, -0.004929870832711458, -0.016216769814491272, 0.006480691488832235, -0.027727600187063217, 0.01399749144911766, 0.004782810341566801, 0.005715308245271444, 0.01078221295028925, -0.006203281693160534, 0.005287495441734791, -0.012192657217383385, 0.025561798363924026, -0.033208947628736496, 0.00839582085609436, -0.023489581421017647, 0.013054966926574707, 0.02152431756258011, 0.008663203567266464, -0.0020053712651133537, -0.0021641298662871122, 0.004064219072461128, -0.015494835563004017, 0.007446611765772104, -0.018716799095273018, -0.007038853131234646, -0.016350461170077324, 0.037380121648311615, -0.02863670140504837, -0.006925215478986502, -0.028904084116220474, -0.025588536635041237, 0.02020077407360077, -0.0023329153191298246, -0.010902535170316696, 0.013903907500207424, -0.016952071338891983, -0.03641754388809204, -0.006169858854264021, 0.0029228285420686007, 0.018329093232750893, 0.017754219472408295, -0.0010361084714531898, -0.023422736674547195, -0.02866343967616558, 0.0023730227258056402, 0.08165872097015381, -0.010153863579034805, -0.018984181806445122, 0.040802620351314545, 0.023917393758893013, -0.005227334331721067, 0.014184659346938133, 0.009906534105539322, -0.03080250322818756, -0.0026203517336398363, -0.0473802387714386, 0.0257489662617445, 0.04756740480661392, 0.002459922106936574, -0.006273469887673855, -0.013121812604367733, 0.014839746989309788, 0.032540492713451385, 0.02094944566488266, 0.012426617555320263, 0.024184778332710266, -0.04446576535701752, 0.008516143076121807, -0.010461353696882725, 0.007907846942543983, -0.013509517535567284, 0.009345030412077904, -0.018329093232750893, 0.0005427036085166037, 0.0012391522759571671, -0.004131064750254154, 0.011738106608390808, -0.0009951654355973005, 0.00485634058713913, 0.017099132761359215, -0.006674543954432011, 0.005020112730562687, 0.006717993877828121, 0.009157862514257431, 0.027433479204773903, -0.0266580693423748, -0.006219993345439434, -0.00977284274995327, -0.005230676848441362, 0.009652520529925823, 0.017968125641345978, -0.02576233632862568, 0.0026320498436689377, 0.01324213482439518, 0.013476095162332058, 0.02441205270588398, -0.004532139282673597, -0.008830318227410316, -0.00976615771651268, -0.01873016729950905, -0.010220709256827831, -0.005832287948578596, -0.007266128435730934, -0.003994030877947807, 0.020802384242415428, -0.034626077860593796, 0.036658186465501785, -0.00982631929218769, -0.005678542889654636, -0.0074265580624341965, -0.016243508085608482, 0.02788802981376648, -0.00661104079335928, -0.00578215392306447, -0.033823929727077484, -0.012266187928617, -0.03280787542462349, 0.008930586278438568, 0.026938820257782936, 0.01606970839202404, 0.02572222799062729, -0.031711604446172714, 0.010822320356965065, -0.003442554036155343, -0.0039906888268888, -0.0034458963200449944, -0.022099191322922707, 0.00842924416065216, 0.034492384642362595, -0.032487016171216965, -0.0125202015042305, 0.014879854395985603, 0.001861652941443026, -0.0005757086910307407, 0.041497815400362015, 0.025561798363924026, 0.001406266586855054, 0.013135181739926338, -0.017687374725937843, -0.012152549810707569, -0.01111644133925438, -0.007065591402351856, -0.026684807613492012, 0.006022798363119364, -0.013462726026773453, 0.0365779735147953, 0.007787525188177824, -0.028342580422759056, 0.022660695016384125, 0.0005218143342062831, 0.007867739535868168, -0.013409249484539032, -0.01363652478903532, -0.0030498355627059937, 0.006500745192170143, 0.010982749983668327, -0.009960010647773743, 0.0007779169245623052, 0.010688629001379013, -0.005183884873986244, -0.018970811739563942, 0.0028075198642909527, -0.025708859786391258, -0.0029796473681926727, 0.00971268117427826, -0.001781438128091395, -0.017794327810406685, 0.012339717708528042, -3.4238842090417165e-06, 0.009030855260789394, 0.011189972050487995, -0.01502691488713026, 0.004655803553760052, 0.0011271857656538486, -0.02644416317343712, 0.004866367671638727, -0.010601729154586792, -0.013823692686855793, 0.029706232249736786, 0.016911964863538742, -0.027380002662539482, -0.009084331803023815, 0.000973440648522228, 0.017994863912463188, -0.013589732348918915, 0.00800143089145422, 0.015641896054148674, 0.005541509483009577, -0.00020837060583289713, -0.0025384658947587013, 0.026778390631079674, -0.022687433287501335, -0.0006768127786926925, -0.017647266387939453, -0.004100984428077936, -0.02569548971951008, -0.0007098178612068295, -0.018703429028391838, 0.04807543382048607, -0.01891733519732952, 0.012453355826437473, 0.01433171983808279, 0.020428048446774483, 0.020588478073477745, -0.008776841685175896, -0.005645120050758123, 0.01114317961037159, 0.013837061822414398, -0.015093760564923286, 0.03820900619029999, -0.010842373594641685, -0.011002803221344948, 0.002464935416355729, -0.017072394490242004, 0.016591105610132217, -0.03139074519276619, -0.026417424902319908, 0.01077552791684866, -0.002473291242495179, -0.0037400173023343086, -0.015200714580714703, 0.012620469555258751, 0.024746282026171684, -0.04730002209544182, -0.01324213482439518, -0.03275439888238907, 0.004933213349431753, 0.000626678520347923, -0.02941211126744747, -0.02860996313393116, -0.022179406136274338, -0.003850312903523445, -0.020107189193367958, 0.060375042259693146, -0.028235627338290215, -0.008141807280480862, -0.016911964863538742, 0.01609644666314125, -0.02096281386911869, 0.04189889132976532, 0.004020769149065018, -0.011009488254785538, 0.0009116083383560181, 0.015481466427445412, 0.0068784235045313835, -0.038663558661937714, -0.01814192533493042, 0.004207937512546778, 0.0021624586079269648, 0.005227334331721067, -0.019893283024430275, 0.0018549683736637235, -0.008128438144922256, 0.027567170560359955, -0.004057534504681826, 0.007406504359096289, -0.0065241409465670586, 0.030428167432546616, 0.023436104878783226, 0.007667202968150377, -0.005417844746261835, -0.009619097225368023, 0.007660518400371075, 0.0013711726060137153, -0.030882718041539192, -0.011784898117184639, -0.0008159354329109192, 0.022834494709968567, -0.003552849404513836, -0.0057253348641097546, -0.0021240224596112967, 0.028289103880524635, 0.02308850735425949, 0.007901162840425968, -0.001624350668862462, 0.026123302057385445, 0.02024088054895401, -0.024719543755054474, 0.01078221295028925, 0.012526885606348515, 0.00434162886813283, 0.017567051574587822, 0.016617843881249428, -0.028396056964993477, -0.01077552791684866, 0.013489464297890663, -0.002588600153103471, -0.006554221734404564, -0.013389195315539837, -0.020000236108899117, 0.026791760697960854, 0.016256876289844513, -0.002279438776895404, -0.006741389632225037, -0.014719424769282341, -0.009057593531906605, -0.02645753137767315, 0.01685848832130432, -0.0072594438679516315, 0.030882718041539192, -0.030160782858729362, -0.000745747413020581, -0.031069885939359665, 0.009191284887492657, -0.0257489662617445, -0.024064455181360245, -0.028823869302868843, 0.017914649099111557, -0.0032035806216299534, -0.01606970839202404, 0.03911810740828514, -0.0019017604645341635, -0.024077823385596275, -0.01668468862771988, 0.00540447561070323, 0.005568247754126787, -0.0406956672668457, -0.01891733519732952, -0.012112442404031754, -0.03470629081130028, 0.02104302868247032, 0.010013487190008163, -0.02455911412835121, 0.008609727025032043, 0.0014321693452075124, -0.015628525987267494, 0.006544195115566254, -0.026150040328502655, 0.005528139881789684, 0.0390111543238163, -0.005705281160771847, -0.03149769827723503, 0.006199939642101526, 0.03326242417097092, 0.0002108773187501356, 0.01391727663576603, 0.021912023425102234, -0.0029311843682080507, 0.008970693685114384, 0.030240999534726143, 0.03283461183309555, 0.008048223331570625, 0.03139074519276619, -0.011083018966019154, -0.011443985626101494, -0.026711545884609222, 0.001286779879592359, 0.02013392746448517, 0.012018858455121517, -0.024920079857110977, -0.018716799095273018, 0.0016327063785865903, 0.03213941678404808, 0.011524200439453125, -0.004164487589150667, -0.013469410128891468, -0.02169811725616455, -0.01820877194404602, -0.023877287283539772, 0.008977378718554974, 0.014238135889172554, 0.004943239968270063, -0.014839746989309788, 0.012640523724257946, 0.03184529393911362, 0.008776841685175896, 0.00383694376796484, 0.017313038930296898, -0.037326645106077194, 0.04668504372239113, -0.010100387036800385, 0.01732640713453293, -0.005481347907334566, -0.03350307047367096, 0.030160782858729362, 0.022647326812148094, -0.02036120370030403, 0.03558865562081337, -0.01466594822704792, -0.012439986690878868, 0.019746221601963043, 0.013155235908925533, 0.017005547881126404, 0.024585852399468422, 3.7209038055152632e-06, -0.012406563386321068, -0.004682541824877262, 0.003947238903492689, 0.02100292220711708, -0.004281467758119106, 0.02663133107125759, 0.03649775683879852, 0.009184600785374641, -0.038048576563596725, 0.007165859919041395, 0.04401121288537979, 0.01052819937467575, 0.012580362148582935, 0.01494670007377863, 0.01537451334297657, -0.0006709637818858027, 0.005334287416189909, -0.02097618393599987, 0.020682062953710556, -0.024238254874944687, 0.005056878086179495, 0.03473303094506264, 0.009231392294168472, 0.0030565201304852962, 0.02866343967616558, -0.021163351833820343, 0.002844284987077117, -0.01755368337035179, -0.0030381374526768923, 0.01609644666314125, 0.007105698809027672, -0.0025200832169502974, -0.014398565515875816, -0.017139239236712456, -0.01667132042348385, -0.027727600187063217, -0.0265912227332592, -0.006631094496697187, -0.013796954415738583, 0.023141983896493912, 0.02365001104772091, -0.054171763360500336, 0.01016054768115282, -0.05350330471992493, 0.023462843149900436, -0.013649893924593925, 0.017928019165992737, -0.005711965728551149, 0.02651100791990757], [0.013486833311617374, -0.00936168897897005, 0.06742052733898163, 0.05989299342036247, -0.018437005579471588, 0.05842021480202675, -0.04322877898812294, 0.037774041295051575, -0.002188712591305375, 0.06474770605564117, -0.007711632177233696, -0.026210002601146698, 0.03106471709907055, 0.01282544620335102, -0.029646486043930054, 0.03632853552699089, -0.0004964661202393472, 0.04663798585534096, -0.014877790585160255, -0.0020949593745172024, 0.07205705344676971, 0.013711840845644474, -0.030382875353097916, -0.005233136471360922, -0.05517464876174927, -0.04579250141978264, 0.018573373556137085, -0.004418335389345884, 0.040228672325611115, -0.08291197568178177, 0.08803942799568176, -0.03881044313311577, 0.009941254742443562, -0.02975558117032051, 0.00012571460683830082, 0.00976397655904293, -0.032810233533382416, -0.006419541779905558, 0.015736911445856094, 0.0374467559158802, 0.018668832257390022, 0.004050140734761953, -0.017632432281970978, -0.00336659443564713, -0.030491970479488373, 0.06720233708620071, 0.008877581916749477, -0.04622888192534447, 0.026264550164341927, 0.015723275020718575, 0.03231930732727051, 0.03398299962282181, -0.005362686701118946, -0.05629286915063858, 0.024328120052814484, 0.005492236465215683, 0.01917339488863945, 0.023182624951004982, 0.03305569663643837, -0.019732505083084106, 0.00683887442573905, -0.012348157353699207, -0.016023285686969757, 0.01800062693655491, 0.007766179274767637, -0.007152521517127752, -0.023428088054060936, 0.00072914466727525, -0.03709220141172409, -0.012116330675780773, 0.03722856938838959, 0.025064509361982346, 0.018096083775162697, -0.02656456083059311, -0.00381831475533545, -0.01749606430530548, -0.030764706432819366, 0.00560474069789052, -0.036928556859493256, -0.010670825839042664, -0.03921954706311226, 0.03711947426199913, 0.016650579869747162, 0.0066786413080990314, 0.03253749758005142, -0.019391583278775215, -0.061420317739248276, 0.003572851652279496, -0.045137934386730194, -0.006399086210876703, -0.010554912500083447, 0.014332316815853119, -0.0481925867497921, 0.0351557694375515, 0.0441015362739563, -0.0294010229408741, 0.04748347029089928, -0.024764498695731163, -0.015682363882660866, 0.029128286987543106, -0.021396199241280556, -0.03881044313311577, -0.021791666746139526, 0.0028006655629724264, 0.003695583203807473, -0.02485995553433895, -0.0033717083279043436, 0.04197418689727783, 0.012054964900016785, -0.036192167550325394, -0.016582395881414413, -0.045519765466451645, -0.011127660050988197, 0.07200250774621964, -0.03747403249144554, -0.015777822583913803, -0.06485680490732193, -0.00027614596183411777, 0.04434699937701225, 0.022609878331422806, -0.05722017213702202, -0.0038251332007348537, 0.03234658017754555, -0.07538443803787231, 0.006579774431884289, -0.04279239848256111, -0.005788838025182486, -0.02934647537767887, -0.08018460869789124, -0.037419483065605164, 0.051219962537288666, -0.022978072986006737, 0.03226475790143013, -0.07205705344676971, -0.018655193969607353, -0.008270742371678352, -0.007391166407614946, -0.03294660151004791, -0.0014420956140384078, -0.020646173506975174, 0.025009961798787117, 0.01635056920349598, 0.012729988433420658, 0.03553760051727295, -0.08269378542900085, -0.016882406547665596, 0.02127346768975258, 0.032101117074489594, -0.001825631712563336, -0.013234551064670086, -0.003451824653893709, 0.037746768444776535, -0.03709220141172409, -0.008032097481191158, 0.015041432343423367, 0.02577362395823002, 0.01911884732544422, 0.045519765466451645, 0.008304834365844727, -0.03474666550755501, -0.01836882159113884, -0.02120528370141983, -0.017223326489329338, 0.01143448892980814, 0.007759361062198877, 0.014945974573493004, -0.013773206621408463, 0.03635581210255623, -0.06114758178591728, -0.07167521864175797, -0.042983315885066986, -0.02488723024725914, -0.04699254408478737, 0.0015222120564430952, -0.023823555558919907, -0.055365562438964844, 0.006804782431572676, -0.022568967193365097, 0.00876848679035902, 0.007895729504525661, 0.0006771542248316109, 0.018041536211967468, -0.08127555251121521, -0.04290149360895157, -0.06780236214399338, 0.049583543092012405, -0.01666421629488468, 0.01759152114391327, -0.04489247128367424, 0.002108596032485366, 0.026441829279065132, 0.04328332468867302, 0.04069232568144798, 0.003971728961914778, -0.013752751052379608, 0.024178113788366318, 6.0939619288546965e-05, 0.007943457923829556, -0.009300323203206062, -0.008577571250498295, 0.035264864563941956, -0.033737536519765854, 0.05217454209923744, 0.0026029315777122974, -0.008495749905705452, -0.0036035345401614904, -0.02528269775211811, 0.017455153167247772, 0.008448021486401558, -0.06714779138565063, 0.006126349791884422, -0.032864779233932495, -0.008959402330219746, 0.009688973426818848, -0.014945974573493004, 0.00936168897897005, -0.0472925566136837, 0.022337140515446663, -0.0034637569915503263, 0.04947444796562195, -0.0011480513494461775, 0.015300532802939415, -0.0012707829009741545, -0.034528475254774094, -0.031228359788656235, 0.009082133881747723, -0.0020983684808015823, -0.06272945553064346, -0.011134478263556957, -0.06409314274787903, -0.0032864781096577644, 0.00663091242313385, -0.017755163833498955, -0.01920066773891449, -0.026823660358786583, -0.04047413542866707, -0.013139093294739723, -0.009750339202582836, 0.005632014013826847, 0.03542850539088249, 0.04647434502840042, -0.0022006446961313486, 0.02166893519461155, 0.024682676419615746, 0.013841390609741211, 0.0019006343791261315, -0.019691593945026398, -0.04134689271450043, 0.03264658898115158, 0.04161962866783142, 0.03384663164615631, 0.014891427010297775, 0.06485680490732193, -0.027641871944069862, 0.00572406267747283, 0.00016183091793209314, -0.012750444002449512, -0.04617433249950409, 0.014741421677172184, -0.008086645044386387, -0.023946287110447884, -0.0002505769080016762, -0.0025824762415140867, -0.001615112996660173, -0.06114758178591728, -0.016241474077105522, 0.011979962699115276, -0.012518617324531078, -0.0351557694375515, 0.07123884558677673, -0.04483792558312416, 0.045547038316726685, 0.013745932839810848, -0.0357830636203289, -0.05023811012506485, 0.01873701624572277, 0.002364286920055747, -0.02820098213851452, 0.001595510053448379, -0.02327808365225792, -0.04361061006784439, -0.01202087290585041, 0.0012648167321458459, -0.05722017213702202, 0.016077831387519836, 0.04906534403562546, 0.0006647958653047681, -0.027873696759343147, -0.011154933832585812, -0.011973143555223942, 0.05430189147591591, 0.008884400129318237, 0.014850516803562641, -0.017686979845166206, 0.03589215874671936, 0.030437422916293144, 0.0030444241128861904, 0.00919804722070694, -0.0025705439038574696, -0.013752751052379608, 0.029073739424347878, 0.023128077387809753, -0.009443510323762894, -0.059402067214250565, -0.02168257348239422, 0.02455994486808777, 0.00919122900813818, 0.014864153228700161, -0.028500990942120552, 0.0029915813356637955, -0.02374173514544964, 0.03793768212199211, -0.024246297776699066, -0.0382104218006134, -0.048792608082294464, -0.007193432189524174, 0.013855027966201305, 0.010302631184458733, 0.009163955226540565, 0.0027137307915836573, 0.013711840845644474, -0.011379941366612911, 0.03253749758005142, -0.0166778527200222, -0.00224325992166996, -0.0450015664100647, 0.009920800104737282, 0.03106471709907055, -0.045465219765901566, -0.025582708418369293, -0.03624671697616577, -0.0004862385103479028, 0.022678062319755554, 0.009307142347097397, -0.01549144834280014, -0.01760515756905079, -0.024764498695731163, 0.04191964119672775, -0.002940443344414234, 0.024641767144203186, 0.003105789888650179, -0.02125983126461506, -0.019050663337111473, -0.001419935724698007, -0.04974718764424324, 0.05132905766367912, 0.02442357689142227, 0.03671037033200264, -0.001967113930732012, 0.07407530397176743, 0.009116226807236671, 0.046719808131456375, -0.03684673830866814, 0.012300428003072739, -0.07811181247234344, 0.0055297380313277245, -0.016896042972803116, 0.010186717845499516, -0.01592782698571682, -0.005857022013515234, 0.015696000307798386, 0.013220914639532566, 0.017468789592385292, 0.027464592829346657, 0.03968320041894913, -0.01830063760280609, -0.03019195981323719, 0.01202087290585041, 0.05261092260479927, -0.028391897678375244, 0.021096188575029373, 0.06447497010231018, 0.029646486043930054, 0.02570543996989727, -0.022609878331422806, -0.021055277436971664, 0.004786530043929815, 0.018232453614473343, -0.011761773377656937, 0.009068497456610203, 0.016132378950715065, 0.04069232568144798, 0.021096188575029373, 0.005199044477194548, 0.021982582286000252, 0.032046571373939514, -0.05765655264258385, -0.021982582286000252, -0.01963704638183117, 0.01309136487543583, 0.013336827978491783, -0.005195635370910168, -0.051983628422021866, 0.039846841245889664, -0.04781075567007065, 0.027560049667954445, 0.013964122161269188, 0.00561496801674366, 0.04295603930950165, 0.024641767144203186, -0.0021120053716003895, -0.04644707217812538, -0.005754745565354824, -0.00470130005851388, -0.04860169067978859, -0.005625195801258087, -0.05111087113618851, 0.006375222001224756, -0.010268539190292358, -0.014509595930576324, 0.024791771546006203, -0.006351357325911522, 0.06343857198953629, 0.0012579982867464423, 0.007766179274767637, -0.02566452883183956, -0.07102065533399582, 0.03796495869755745, -0.011898141354322433, -0.008618481457233429, 0.04159235581755638, 0.025909991934895515, 0.01671876385807991, 0.00417287228628993, -0.041401442140340805, 0.019650684669613838, 0.035646695643663406, -0.0060445284470915794, -0.016827858984470367, -0.07391165941953659, -0.016991499811410904, 0.037719495594501495, 0.03188292682170868, 0.01789153181016445, -0.04483792558312416, -0.03665582090616226, 0.02361900359392166, 0.023141713812947273, -0.018791563808918, -0.031091991811990738, 0.007472987286746502, -0.007132066413760185, 0.013336827978491783, 0.0012017464032396674, -0.020741630345582962, 0.022705335170030594, 0.0025909992400556803, -0.00036329388967715204, -0.02117800898849964, 0.0021495067048817873, -0.0021256422623991966, 0.013766388408839703, -0.045928869396448135, -0.0010074214078485966, -0.02280079387128353, 0.006276354659348726, 0.027150945737957954, -0.04082869365811348, 0.041756000369787216, -0.04161962866783142, 0.017359694465994835, 0.0513836070895195, 0.044292449951171875, 0.0639294981956482, 0.012866356410086155, -0.030410150066018105, -0.041865091770887375, -0.017809711396694183, -0.012136786244809628, -0.006746825762093067, -0.01179586537182331, -0.013534561730921268, -0.008659392595291138, -0.00919122900813818, 0.013125456869602203, -0.018600646406412125, -0.009893526323139668, -0.04211055487394333, 0.007261616177856922, -0.0026438420172780752, 0.026632744818925858, 0.06791145354509354, -0.040610503405332565, -0.019364310428500175, 0.07151158154010773, 0.007425258401781321, 0.04737437516450882, -0.019882509484887123, 0.0015469288919121027, -5.9021938795922324e-05, -0.016486937180161476, -0.001491529168561101, 0.03586488589644432, -0.015750547870993614, -0.0007061325013637543, -0.013214096426963806, -0.034064821898937225, 0.005516101140528917, 0.03960137814283371, -0.014550506137311459, 0.009845796972513199, -0.04483792558312416, 0.02771005593240261, 0.011666314676404, 0.021137099713087082, 0.010500365868210793, -0.002156325150281191, -0.02451903559267521, -0.03823769465088844, 0.015082343481481075, -0.05255637317895889, 0.01925521530210972, 0.014005033299326897, 0.01367093063890934, -0.01674603670835495, -0.009000313468277454, 0.015368716791272163, -0.03354662284255028, -0.048356227576732635, 0.011277665384113789, 0.012341338209807873, -0.03851043060421944, 0.004847895819693804, 0.013650475069880486, -0.01513689011335373, 0.013923211954534054, -0.025173602625727654, -0.06311129033565521, -0.01019353698939085, 0.021764393895864487, 0.02367355115711689, -0.028500990942120552, -0.016241474077105522, 0.04044686257839203, -0.010609460063278675, 0.010575368069112301, -0.012736806645989418, -0.0014685170026496053, 0.0065559097565710545, -0.03641035780310631, 0.030955621972680092, -0.013548199087381363, 0.016486937180161476, 0.02327808365225792, -0.0032643182203173637, -0.007322981953620911, 0.0030256735626608133, 0.04085596650838852, 0.019405221566557884, 0.012634530663490295, 0.016977863386273384, 0.018600646406412125, 0.00998898409307003, -0.015586906112730503, -0.0008804283570498228, 0.00673318887129426, -0.006153623107820749, -0.05929297208786011, 0.03793768212199211, -0.004858123604208231, -0.02330535650253296, 0.006266127340495586, -0.007391166407614946, 0.017359694465994835, -0.013398193754255772, 0.008359381929039955, 0.029946496710181236, 0.00936168897897005, -0.02005978859961033, 0.013725477270781994, -0.021096188575029373, 0.004500156734138727, 0.003228521440178156, -0.027164582163095474, 0.043856073170900345, 0.01842336915433407, 0.011168570257723331, -0.0382104218006134, 0.026250913739204407, 0.009000313468277454, -0.02155984193086624, 0.021464383229613304, -0.04074687138199806, -0.0014599940041080117, -0.011352667585015297, 0.01712786965072155, 0.0032694318797439337, -0.03144655004143715, 0.010691281408071518, 0.01880520023405552, 0.021873489022254944, 0.005424052476882935, -0.013493651524186134, 0.002050639595836401, -0.013793662190437317, 0.04898352175951004, -0.0043092407286167145, 0.0001114385377150029, 0.013827754184603691, 0.0054342797957360744, 0.002945557003840804, -0.011939051561057568, -0.021532567217946053, 0.010970836505293846, -0.031992021948099136, 0.008038915693759918, 0.016159653663635254, 0.0037842225283384323, 0.034446652978658676, 0.013957303948700428, 0.018437005579471588, 0.022309867665171623, -0.014618690125644207, -0.042192377150058746, -0.0008915083017200232, 0.011939051561057568, -0.03542850539088249, -0.019705230370163918, -0.0022023494821041822, -0.01592782698571682, -0.024764498695731163, -0.014509595930576324, 0.023114440962672234, -0.022568967193365097, -0.004847895819693804, -0.02896464429795742, -0.015218711458146572, -0.02241896279156208, -0.006443405989557505, -0.0009068497456610203, -0.02817370742559433, 0.031555645167827606, -0.019377946853637695, -0.014741421677172184, 0.013118638657033443, 0.014605053700506687, 0.02168257348239422, -0.005362686701118946, 0.010404907166957855, 0.0028330532368272543, 0.03270113840699196, 0.040992334485054016, 0.026332734152674675, -0.024328120052814484, 0.023114440962672234, 0.028910096734762192, -0.00427514873445034, 0.03223748505115509, -0.0009366802987642586, 0.010964018292725086, 0.008863944560289383, -0.007391166407614946, -0.001965409377589822, -0.015559632331132889, 0.02942829765379429, -0.0064263599924743176, -0.026810023933649063, 0.015232347883284092, 0.021505294367671013, 0.038592252880334854, -0.03191019967198372, 0.01835518516600132, -0.00955260545015335, 0.038646798580884933, 0.04290149360895157, -0.0025108829140663147, 0.03954683244228363, -0.014345954172313213, -0.0025534979067742825, 0.0017489244928583503, -0.043446965515613556, 0.0027785056736320257, 0.05312912166118622, -0.012470888905227184, -0.0017625613836571574, -0.007888911291956902, -0.020141610875725746, 0.025146329775452614, -0.013220914639532566, 0.02455994486808777, -0.022623514756560326, -0.014386864379048347, -0.01914612017571926, -0.017359694465994835, -0.0006042823661118746, -0.035755790770053864, 0.02370082400739193, -0.034964852035045624, -0.016064194962382317, 0.013595927506685257, 0.004370606504380703, 0.02651001326739788, -0.028255529701709747, 0.015818731859326363, 0.014168675057590008, 0.05629286915063858, 0.012927722185850143, -0.009443510323762894, -0.04538339748978615, -0.09038496017456055, 0.018546100705862045, 0.016255110502243042, -0.008359381929039955, -0.03957410529255867, -0.04609251394867897, -0.017796073108911514, -0.01222542580217123, 0.007929821498692036, 0.042710576206445694, -0.01101856492459774, -0.008434384129941463, -0.02410992980003357, -0.060983940958976746, -0.01058900449424982, 0.0012392476201057434, 0.010514002293348312, -0.010984472930431366, -0.03316479176282883, -0.022364415228366852, 0.015832368284463882, -0.014455048367381096, 0.037746768444776535, -0.05261092260479927, -0.02280079387128353, 0.007834363728761673, 0.004258102737367153, 0.0013099887873977423, 0.00941623654216528, 0.005113814491778612, -0.002856917679309845, 0.03060106560587883, -0.006000208668410778, 0.024655403569340706, -0.006695687770843506, -0.02483268268406391, 0.002625091467052698, -0.019487041980028152, -0.00025015074061229825, -0.032837506383657455, 0.003407504875212908, -0.0024444032460451126, -0.045901596546173096, -0.01468687504529953, -0.023332629352808, -0.001155722071416676, -0.028337350115180016, -0.00684569263830781, 0.04521975666284561, 0.018055174499750137, 0.014332316815853119, -0.007391166407614946, 0.012484525330364704, -0.012279972434043884, -0.03174655884504318, -0.005451326258480549, 0.0382104218006134, -0.006327493116259575, 0.014182311482727528, -0.0033955727703869343, 0.018082447350025177, 0.01920066773891449, 0.015614179894328117, -0.010357178747653961, 0.01757788471877575, 0.013309554196894169, -0.011291301809251308, 0.018573373556137085, 0.00684228353202343, 0.03701037913560867, -0.007991187274456024, 0.008625300601124763, -0.0020199567079544067, 0.016636943444609642, 0.034473925828933716, 0.03671037033200264, -0.016527848318219185, -0.014018669724464417, -0.0007423553615808487, -0.01513689011335373, -0.012089056894183159, 0.025882719084620476, 0.002822825452312827, -0.0049194893799722195, -0.022964434698224068, 0.016077831387519836, 0.011175388470292091, -0.0022023494821041822, -0.02565089240670204, 0.00550587335601449, 0.004118325188755989, -0.05064721778035164, 0.0054274615831673145, -0.007834363728761673, -0.016841495409607887, -0.015300532802939415, -0.012600438669323921, 0.013534561730921268, -0.06583865731954575, -0.03600125387310982, 0.036164894700050354, -0.03755585104227066, -0.015259621664881706, -0.02034616284072399, 0.002434175694361329, 0.09993074834346771, -0.007629810832440853, -0.040583230555057526, 0.012764080427587032, -0.016582395881414413, -0.015764184296131134, -0.03583760932087898, 0.038974083960056305, -0.014877790585160255, 0.003988774958997965, -0.011591312475502491, 0.016405116766691208, 0.012314065359532833, 0.015000522136688232, 0.0019790460355579853, 0.019705230370163918, -0.007888911291956902, -0.01629602164030075, 0.0022892842534929514, -0.010520820505917072, 0.02076890505850315, 0.005730881355702877, -0.004435381852090359, -0.0028824866749346256, -0.0033955727703869343, -0.029537390917539597, 0.0032660227734595537, -0.006116122007369995, 0.029128286987543106, 0.008516205474734306, -0.005526328459382057, -0.05217454209923744, -0.0004738801217172295, -0.005444507580250502, 0.02320989780128002, 0.00955260545015335, 0.049992650747299194, -0.017796073108911514, -0.04254693537950516, -0.03720129281282425, -0.02533724531531334, -0.004994492046535015, 0.011032202281057835, 0.005679742898792028, -0.018273362889885902, 0.021150736138224602, -0.02490086667239666, -0.043965164572000504, -0.0200052410364151, -0.04775620624423027, 0.013582291081547737, -0.029537390917539597, 0.02536451816558838, -0.025200877338647842, 0.011918596923351288, -0.008720758371055126, -0.005410415586084127, -0.012095875106751919, 0.014645963907241821, -0.027123671025037766, 0.012743624858558178, 0.0020182521548122168, 0.02739640884101391, -0.006392267998307943, 0.028364622965455055, -0.03193747624754906, 0.010363996960222721, -0.015205075033009052, 0.013411830179393291, 0.001825631712563336, -0.007459350395947695, -0.039028629660606384, -0.019814325496554375, 0.029128286987543106, 0.034037549048662186, 0.008495749905705452, 0.0015716456109657884, 0.020741630345582962, 0.025528160855174065, 0.01999160461127758, -0.03469211608171463, -0.0038967265281826258, -0.019650684669613838, 0.053292762488126755, 0.02901919186115265, -0.005297911819070578, -0.004152417182922363, 0.01058218628168106, 0.015832368284463882, 0.019746141508221626, 0.012716352008283138, -0.001298056566156447, -0.03992866352200508, 0.013166367076337337, -0.0038353607524186373, -0.002187008038163185, -0.03763767331838608, -0.010861741378903389, 0.004452427849173546, 0.010711736045777798, -0.0024426986929029226, -0.00011665889178402722, 0.01065037027001381, -0.00325579522177577, 0.04170145094394684, -0.004714936949312687, 0.048819880932569504, -0.021518930792808533, -0.020741630345582962, -0.007609355729073286, 0.015655091032385826, -0.009491239674389362, -0.007813908159732819, 0.0011344144586473703, 0.031282905489206314, -0.0002522815193515271, 0.08394837379455566, -0.019432494416832924, 0.015477810986340046, 0.0031160174403339624, 0.029891949146986008, 0.013800480403006077, -0.004946763161569834, 0.029591938480734825, 0.007663903292268515, -0.037801314145326614, -0.006194533780217171, 0.026646381244063377, 0.024164477363228798, 0.05111087113618851, -0.024669039994478226, 0.010261720977723598, -0.01707332208752632, 0.005216090474277735, 0.020496167242527008, -0.030901076272130013, 0.023850830271840096, -0.003992184530943632, 0.022350776940584183, -0.0305465180426836, 0.005168361589312553, -0.016596032306551933, -0.02169620990753174, 0.00999580230563879, 0.015205075033009052, -0.020646173506975174, 0.04281967133283615, -0.04862896353006363, 0.00753435306251049, -0.003066584002226591, -0.05542011186480522, -0.005093358922749758, 0.03338297829031944, 0.009436692111194134, 0.03338297829031944, -0.018696105107665062, 0.021941673010587692, 0.021518930792808533, 0.009736702777445316, -0.03949228301644325, 0.031637463718652725, 0.02455994486808777, -0.016609668731689453, -0.0136777488514781, -0.043856073170900345, 0.03466484323143959, -0.033737536519765854, -0.02368718758225441, 0.06736598163843155, 0.018573373556137085, 0.011100386269390583, -0.006436587776988745, 0.016432389616966248, -0.009129863232374191, 0.025091782212257385, 0.01960977353155613, -0.012579983100295067, 0.029537390917539597, 0.036901284009218216, 0.0008228979422710836, -0.017455153167247772, 0.02045525796711445, 0.010070805437862873, 0.018927931785583496, 0.018041536211967468, -0.000142441043863073, 0.045137934386730194, -0.0014514710055664182, 0.019091572612524033, 0.005758155137300491, 0.002422243356704712, 0.040255945175886154, 0.015573269687592983, -0.020946184173226357, 0.03480121120810509, 0.035237591713666916, 0.040583230555057526, 0.019432494416832924, 0.018218815326690674, 0.016514211893081665, 0.007984369061887264, 0.014741421677172184, 0.02701457589864731, -0.0046944813802838326, -0.02330535650253296, -0.015232347883284092, -0.018573373556137085, -0.003351252991706133, -0.0005190521478652954, 0.011925415135920048, -0.020250704139471054, 0.0016918202163651586, -0.01677331142127514, -0.044701553881168365, -0.0409105159342289, 0.018477914854884148, -0.002596113132312894, 0.011325393803417683, 0.03463757038116455, -0.012102694250643253, 0.030464695766568184, 0.009859434328973293, -0.012954995967447758, -0.00797073170542717, 0.04437427222728729, 0.005362686701118946, -0.0005305582308210433, 0.025596344843506813, -0.007711632177233696, 0.03548305481672287, 0.012525435537099838, 0.018996115773916245, -0.0034586430992931128, -0.00037139077903702855, -0.016473300755023956, 0.032019294798374176, -0.032810233533382416, -0.019077936187386513, -0.04505611211061478, 0.04939262941479683, 0.013964122161269188, -0.019773416221141815, -0.01160494890064001, -0.009518513455986977, 0.003610352985560894, 0.01244361512362957, 0.004005821421742439, 0.03763767331838608, -0.037801314145326614, 0.01187086757272482, 0.020564351230859756, -0.030901076272130013, -0.04080142080783844, -0.020727993920445442, -0.0030734024476259947, 0.016132378950715065, 0.014741421677172184, -0.0391104519367218, -0.020223431289196014, 0.004517202731221914, 0.0021307559218257666, 0.013950485736131668, -0.029210107401013374, 0.020618898794054985, 0.032810233533382416, -0.0054035973735153675, 0.018614284694194794, 0.001402037451043725, 0.006692278198897839, 0.0192415788769722, 0.00855029746890068, 0.020482530817389488, -0.025473613291978836, -0.008577571250498295, -0.005764973349869251, -0.007984369061887264, -0.02728731371462345, -0.005188817158341408, 0.007595718838274479, -0.025091782212257385, -0.01752333715558052, -0.01587327942252159, -0.022759882733225822, 0.005533147137612104, -0.004568340722471476, 0.0016509097767993808, -0.03387390449643135, 0.010541276074945927, 0.027955519035458565, 0.0037160383071750402, -0.014645963907241821, 0.005591103807091713, 0.020591625943779945, 0.0005995947285555303, -0.013875482603907585, 0.0017088663298636675, 0.014086853712797165, 0.006907058414071798, -0.01000262051820755, -0.02406901866197586, 0.016909679397940636, -0.008925310336053371, 0.015777822583913803, 0.0039410460740327835, 0.015750547870993614, 0.011420851573348045, -0.017236962914466858, 0.005904750898480415, 0.02123255655169487, 0.004718346055597067, 0.017809711396694183, 0.003927409183233976, -0.020100699737668037, 0.003855816088616848, 0.01954158954322338, 0.013623201288282871, -0.009927618317306042, -0.023018982261419296, -0.030846528708934784, -0.0030938577838242054, 0.03188292682170868, -0.003230225993320346, -0.01550508476793766, 0.030764706432819366, 0.01309136487543583, 0.0054001878015697, 0.00854347925633192, -0.04156508296728134, 0.01309136487543583, -0.01680058427155018, 0.0016807402716949582, 0.012177696451544762, -0.019459767267107964, -0.03829224035143852, -0.02983740158379078, -0.020973457023501396, -0.01635056920349598, 0.01760515756905079, 0.01426413282752037, -0.002207463141530752, -0.006893421523272991, 0.023864466696977615, -0.0016756264958530664, 0.07342074066400528, -0.012852719984948635, -0.010241265408694744, -0.0057752011343836784, 0.04445609077811241, -0.014359590597450733, 0.002473381580784917, 0.017332421615719795, 5.0845163059420884e-05, 0.003964910749346018, -0.04044686257839203, 0.03144655004143715, 0.02080981433391571, 0.012348157353699207, 0.0032762503251433372, -0.013452741317451, 0.01404594350606203, 0.06349311769008636, 0.03510122001171112, 0.0005054153152741492, 0.003842179197818041, -0.024641767144203186, -0.0022722382564097643, -0.01287999376654625, -0.0070366086438298225, -0.016841495409607887, -0.0004922046209685504, 0.004189918749034405, 4.6743458369746804e-05, 0.018546100705862045, -0.011168570257723331, -0.012395885773003101, -0.002173371147364378, 0.004524020943790674, -0.009354870766401291, -0.021723482757806778, 0.004762665834277868, -0.023155352100729942, 0.016596032306551933, 0.006296810228377581, -0.012791354209184647, 0.006821828428655863, -0.0070366086438298225, -0.01680058427155018, 0.019364310428500175, 0.008659392595291138, -0.020223431289196014, -0.023878103122115135, 0.007227524183690548, -0.002231327584013343, 0.004991082940250635, 0.005141087807714939, -0.050456300377845764, -0.025023598223924637, -0.027655508369207382, 0.013507287949323654, -0.009286686778068542, 0.012000417336821556, -0.03627398982644081, -0.018286999315023422, 0.012941359542310238, 0.03943773731589317, -0.04401971399784088, 0.01832791045308113, 0.0038796805310994387, 0.013057272881269455, 0.005577466916292906, -0.010991291143000126, -0.003995593637228012, 0.013405011966824532, -0.03057379089295864, -0.008318471722304821, 0.016023285686969757, -0.00539677869528532, -0.013077727518975735, 0.03300114721059799, -0.018546100705862045, 0.016486937180161476, -0.005253592040389776, -0.009368508122861385, -0.03302842378616333, 0.008441203273832798, 0.021955309435725212, 0.03627398982644081, -0.011148115620017052, 0.017864258959889412, 0.02076890505850315, 0.022568967193365097, -0.01265498623251915, 0.058202024549245834, -0.00470130005851388, -0.007384347729384899, 0.022255320101976395, 0.022991709411144257, 0.005420643370598555, 0.011952688917517662, -0.02449176087975502, -0.02445085160434246, 0.006105894222855568, -0.023482635617256165, 0.026619108393788338, -0.01101856492459774, -0.0033086377661675215, 0.015355079434812069, -0.025446340441703796, -0.008782124146819115, -0.0016227837186306715, -0.01084128674119711, 0.003419437212869525, -0.011352667585015297, 0.004353560507297516, -0.0014335726154968143, 0.044701553881168365, -0.008632118813693523, -0.023468999192118645, -0.018682468682527542, 0.012845901772379875, -0.029728306457400322, -0.016555121168494225, 0.011420851573348045, -0.020564351230859756, -0.001736992271617055, 0.024982687085866928, 0.017727889120578766, 0.0179597157984972, 0.04361061006784439, -0.030682886019349098, 0.04235601797699928, -0.01179586537182331, 0.00955942366272211, -0.0035898976493626833, -0.015641452744603157, 0.005577466916292906, -0.023864466696977615, -0.007841181941330433, -0.00438424339517951, -0.018600646406412125, -0.003968319855630398, -0.017850620672106743, 0.009027587249875069, -0.003944455645978451, -0.007084337528795004, -0.005212681367993355, -0.011066294275224209, -0.029591938480734825, -0.002994990674778819, 0.00977761298418045, -0.017427878454327583, -0.004435381852090359, -0.007691176608204842, -0.018791563808918, 0.026332734152674675, 0.004455836955457926, 0.03357389569282532, 0.030110139399766922, -0.020905273035168648, 0.006661595311015844, -0.01491870079189539, 0.021491657942533493, -0.007834363728761673, -0.011414033360779285, -0.00040676130447536707, -0.011761773377656937, -0.015191437676548958, 0.011195844039320946, 0.0010014553554356098, -0.015614179894328117, 0.02329172007739544, 0.0019057481549680233, -0.0035694423131644726, -0.022200772538781166, -0.021137099713087082, 0.04246511310338974, 0.01588691584765911, -0.04241056740283966, -0.013132275082170963, -0.0006532897823490202, 0.029864676296710968, -0.06174760311841965, -0.0025159965734928846, 0.004568340722471476, 0.024628130719065666, -0.011202662251889706, -0.006719551980495453, -0.005666106473654509, -0.0005390812875702977, 0.0351557694375515, -0.007616173941642046, 0.01922794245183468, -0.011250391602516174, 0.01490506436675787, 0.009463965892791748, 0.020100699737668037, -0.021014368161559105, 0.017741527408361435, -0.034010276198387146, 0.023550819605588913, 0.0012477707350626588, 0.028801001608371735, 0.01062309741973877, 0.007336618844419718, -0.006300219334661961, -0.012927722185850143, -0.016023285686969757, -0.008850308135151863, -0.026660019531846046, -0.006361585110425949, 0.0005028584273532033, -0.002492132131010294, -0.0016568758292123675, 0.027628233656287193, 0.006542273331433535, 0.022978072986006737, 0.05356550216674805, 0.005355868022888899, -0.03420118987560272, -0.015409626998007298, -0.006975242868065834, -0.003012036671862006, -0.03291932865977287, -0.006760462652891874, -0.013111819513142109, 0.052038174122571945, -0.03240112587809563, 0.01000262051820755, 0.00797073170542717, 0.000542916648555547, -0.003613762091845274, 0.027641871944069862, -0.044728830456733704, 0.020523441955447197, 0.009688973426818848, 0.010964018292725086, -0.013555017299950123, -0.02116437256336212, 0.0010082736844196916, -0.006501362659037113, -0.023400815203785896, -0.009129863232374191, -0.025541797280311584, -0.015818731859326363, 0.010732191614806652, 0.018614284694194794, -0.0039171818643808365, -0.005110404919832945, 0.03101016953587532, -0.024628130719065666, -0.020127972587943077, -0.019650684669613838, -0.005686561577022076, -0.01707332208752632, 0.00662750331684947, -0.00593543378636241, -0.007718450389802456, 0.014645963907241821, -0.006876375526189804, -0.002720549236983061, -0.00015852824435569346, 0.01165949646383524, -0.021368926391005516, 0.0013611268950626254, -0.03916499763727188, 0.029728306457400322, 0.0035217134281992912, 0.01222542580217123, 0.039028629660606384, -0.0014148219488561153, -0.027096398174762726, -0.04538339748978615, 0.02330535650253296, -0.024969050660729408, 0.013384556397795677, -0.010023076087236404, -0.021137099713087082, -0.05072903633117676, 0.008270742371678352, -0.008788942359387875, -0.011373123154044151, 0.010282175615429878, -0.01880520023405552, 0.013009543530642986, 0.02934647537767887, 0.008618481457233429, 0.01246406976133585, 0.024409940466284752, 0.004558113403618336, -0.025909991934895515, 0.0005522919236682355, -0.0013312962837517262, 0.006167259998619556, 0.030901076272130013, 0.021150736138224602, 0.017291510477662086, 0.01595509983599186, 0.00572406267747283, 0.04865624010562897, 0.003013741225004196, 0.0342557393014431, 0.02605999819934368, -0.01913248375058174, -0.015150527469813824, 0.001909157377667725, 0.021928036585450172, 0.0023080348037183285, -0.0018682468216866255, 0.02446448802947998, -0.0005378028145059943, 0.020987093448638916, -0.013152730651199818, -0.027887335047125816, -0.0023370131384581327, 0.008509387262165546, -0.021314378827810287, -0.0343921072781086, 0.011291301809251308, 0.007936639711260796, -0.023973561823368073, -0.025446340441703796, 0.023755371570587158, 0.023973561823368073, 0.021778030321002007, 0.0036035345401614904, -0.011039020493626595, -0.029537390917539597, 0.03747403249144554, -5.4307642130879685e-05, 0.006869557313621044, -0.008250286802649498, -0.008679847232997417, -0.00025185535196214914, 0.013145912438631058, -0.024723587557673454, 0.03782859072089195, -0.03755585104227066, 0.034883033484220505, 0.03485575690865517, -0.00572406267747283, 0.026305461302399635, 0.007916184142231941, -0.009907162748277187, -0.017332421615719795, 0.013875482603907585, -0.017823347821831703, 0.023796282708644867, -0.013336827978491783, 0.024641767144203186, 0.006937741301953793, 0.025050871074199677, -2.398432116024196e-05, 0.008413929492235184, 0.02852826565504074, 0.03065561316907406, 0.009095771238207817, -0.008509387262165546, -0.009866252541542053, -0.028664633631706238, 0.004520611837506294, 0.013016361743211746, 0.022173499688506126, -0.023496272042393684, -0.009088953025639057, 0.025855444371700287, -0.023796282708644867, 0.031091991811990738, 0.005570648238062859, 0.013186822645366192, -0.012300428003072739, -0.012552709318697453, 0.011584494262933731, 0.017032410949468613, -0.0054001878015697, 0.013514107093214989, -0.000350722431903705, 0.004217192064970732, -0.014386864379048347, -0.06207488849759102, -0.03264658898115158, 0.013991395942866802, -0.034010276198387146, -0.01384820882230997, 0.02769641764461994, -0.027246402576565742, 0.011468580923974514, -0.02981012873351574, 0.034883033484220505, -0.02075526863336563, 0.020250704139471054, -0.0203870739787817, 0.03875589370727539], [-0.003014705376699567, -0.004129400942474604, 0.03711260110139847, 0.011691301129758358, -0.01712782494723797, 0.05608496069908142, -0.025324217975139618, 0.01780739054083824, 0.012578897178173065, 0.04177247732877731, -0.006220105104148388, -0.021371643990278244, 1.7051439499482512e-05, -0.009229609742760658, -0.015172340907156467, 0.056806132197380066, -0.028597228229045868, 0.04118999466300011, -0.016420522704720497, -0.009569392539560795, 0.0812150165438652, 0.024145379662513733, -0.02547677420079708, -0.005103676114231348, -0.03711260110139847, -0.04756958782672882, 0.022883329540491104, 0.021468723192811012, 0.03300746902823448, -0.0773317888379097, 0.06917700171470642, -0.02646145038306713, 0.012072689831256866, -0.02488042041659355, 0.006452405825257301, -0.005623751785606146, -0.046598780900239944, 0.02990088425576687, 0.04609951004385948, 0.005665357690304518, -0.005523203872144222, 0.01728038117289543, -0.0406075082719326, -0.022564349696040154, -0.04584987089037895, 0.06645873934030533, 0.02033149264752865, -0.04027466103434563, -0.011178160086274147, 0.023840269073843956, 0.020151199772953987, 0.024644652381539345, 0.01952710747718811, -0.024228591471910477, 0.03761187195777893, 0.008792745880782604, -0.0026835903991013765, 0.03456076234579086, 0.02374318800866604, -0.022966541349887848, -0.00449345400556922, -0.02987314760684967, -0.02374318800866604, 0.03589215502142906, 0.002811875892803073, -0.002156580565497279, -0.011108816601336002, 0.01219057384878397, -0.032424986362457275, 0.0011311646085232496, 0.05211851745843887, 0.03528193384408951, 0.03747318685054779, -0.04210532829165459, 0.002602112013846636, -0.04485132545232773, 0.002867350587621331, 0.0013868685346096754, -0.01826505735516548, 0.02241179533302784, -0.02206507697701454, 0.02488042041659355, 0.030455632135272026, 0.03616952896118164, 0.036252740770578384, -0.011864659376442432, -0.04884550720453262, 0.024048298597335815, -0.042410437017679214, -0.001910411287099123, -0.0413009449839592, -0.016267966479063034, -0.03264688327908516, 0.02680816687643528, 0.06479449570178986, -0.016475997865200043, 0.013078169897198677, -0.007724857423454523, -0.036225005984306335, 0.016559209674596786, -0.011677432805299759, -0.01790447160601616, -0.001770857721567154, -0.002427019877359271, 0.06019009277224541, -0.008550044149160385, -0.01741906814277172, 0.04543381184339523, 0.0034966422244906425, -0.02291106805205345, -0.04690389335155487, -0.016947532072663307, -0.027459995821118355, 0.07294928282499313, -0.02280011773109436, 0.002061233390122652, -0.08193618804216385, 0.015546795912086964, 0.0406075082719326, 0.027210360392928123, -0.038333043456077576, -0.020594997331500053, 0.036641065031290054, -0.07655514031648636, 0.018237320706248283, -0.024894289672374725, -0.02092784456908703, 0.0044310446828603745, -0.0602455660700798, -0.029484823346138, 0.0628528818488121, -0.01829279586672783, 0.01790447160601616, -0.06068936362862587, -0.006552953738719225, 0.022314714267849922, -0.00692394096404314, -0.017682572826743126, -0.00995771586894989, -0.05675065889954567, 0.02607312798500061, 0.03286878392100334, 0.051314134150743484, 0.032452721148729324, -0.07294928282499313, 0.0027130614034831524, 0.03616952896118164, 0.03367316722869873, 0.00267838966101408, -0.02990088425576687, -0.003543448867276311, -0.006937809754163027, -0.009382165037095547, -0.005186887923628092, 0.008272670209407806, 0.009846766479313374, 0.03106585331261158, 0.06717991083860397, 0.01913878507912159, 2.179171315219719e-05, -0.05150829628109932, -0.010235089808702469, -0.02698845975100994, -0.007835807278752327, 0.040940359234809875, -0.013320871628820896, -0.03669653832912445, 0.020428571850061417, -0.06057841330766678, -0.08798293769359589, -0.04984405264258385, -0.03528193384408951, -0.03040015697479248, 0.003300746902823448, 0.0022623292170464993, -0.04421336576342583, 0.007988362573087215, -0.03420017659664154, 0.025005238130688667, 0.0020473646000027657, -0.012031083926558495, -0.01787673495709896, -0.09979905933141708, -0.032702360302209854, -0.05417108163237572, 0.04041334614157677, 0.01924973540008068, 0.015283290296792984, -0.023022016510367393, 0.005862986668944359, 0.024006692692637444, 0.017197169363498688, 0.021967995911836624, 0.042410437017679214, -0.029318399727344513, 0.023687712848186493, -0.004750024527311325, 0.01593511924147606, -0.0037202746607363224, 0.006500945892184973, 0.05325574800372124, -0.041606053709983826, 0.07394782453775406, 0.04035787284374237, -0.03700165078043938, -0.02561546117067337, -0.007641645148396492, 0.029262924566864967, 0.004756958689540625, -0.04953894391655922, -0.007891281507909298, -0.06435069441795349, -0.04052429646253586, 0.007815004326403141, -0.012946417555212975, 0.04021918773651123, -0.014534381218254566, 0.009090922772884369, -0.01636504754424095, 0.043852780014276505, -0.0026887913700193167, -0.0005868187290616333, 0.006729779299348593, -0.01400043722242117, -0.017113957554101944, 0.018847541883587837, 0.0085292411968112, -0.021413249894976616, -0.008896761573851109, -0.0707857683300972, 0.003266075160354376, 0.02304975502192974, -0.027459995821118355, -0.027141015976667404, -0.014139124192297459, -0.01918039098381996, -0.01734972558915615, -0.00513834785670042, -0.013674522750079632, 0.015824168920516968, 0.022286975756287575, 0.010075599886476994, 0.0009266015258617699, 0.053782761096954346, -0.003987246658653021, -0.005041266791522503, -0.017183300107717514, -0.00936136208474636, 0.02856949158012867, 0.039525751024484634, 0.029179712757468224, 0.009000776335597038, 0.03447755053639412, -0.015449714846909046, 0.006760983727872372, -0.03281330689787865, -0.03600310534238815, -0.03286878392100334, 0.0183344017714262, -0.03345126658678055, -0.01618475466966629, -0.030039571225643158, -0.02698845975100994, 0.0021999201271682978, -0.06706895679235458, -0.02962351031601429, 0.0048679085448384285, 0.0019086777465417981, -0.014728543348610401, 0.025837359949946404, -0.023382602259516716, 0.035975366830825806, 0.03303520753979683, -0.028278248384594917, -0.03189797326922417, -0.003668267047032714, -0.003463704138994217, -0.020733684301376343, 0.009493114426732063, -0.011552614159882069, -0.024145379662513733, -0.005439991597086191, -0.0011797050246968865, -0.03874910622835159, -0.0013383281184360385, 0.018278926610946655, -0.024644652381539345, -0.012440210208296776, -0.01240553893148899, -0.008244933560490608, 0.04504548758268356, -0.005984337534755468, -0.006421200931072235, -0.01780739054083824, 0.06052294000983238, 0.015851907432079315, -0.0033267508260905743, -0.04180021584033966, -0.005762438755482435, -0.02744612656533718, 0.02012346126139164, 0.028208903968334198, 0.010914654470980167, -0.00782887265086174, -0.04038561135530472, 0.01941615901887417, 0.006074483972042799, 0.013820144347846508, -0.018486956134438515, 0.003782683750614524, -0.02843080461025238, 0.026614006608724594, -0.019887693226337433, -0.05278421565890312, -0.04557249695062637, -0.015186210162937641, -0.013653719797730446, 0.03822209686040878, -0.01829279586672783, -0.0010271494975313544, 0.019832219928503036, -0.009201872162520885, 0.030205994844436646, -0.0288468636572361, 0.012121230363845825, -0.011185094714164734, 0.022314714267849922, 0.03605857864022255, -0.04418563097715378, -0.025726409628987312, -0.02610086463391781, 0.001569761778227985, 0.03028920665383339, -0.007565367501229048, -0.015699351206421852, -0.01794607751071453, 0.004046188667416573, 0.0367242768406868, -0.009090922772884369, 0.01970740035176277, 0.02895781397819519, -0.02463078498840332, 0.018972361460328102, 0.01854243129491806, -0.056140437722206116, 0.024367278441786766, 0.022675300016999245, 0.03267462179064751, -0.014166861772537231, 0.04033013433218002, 0.0035209122579544783, 0.04024692252278328, -0.04734769091010094, 0.03042789362370968, -0.05774920433759689, -0.018486956134438515, -0.005668825004249811, -0.003668267047032714, -0.028652703389525414, -0.02582349069416523, 0.0183621384203434, 0.012058821506798267, 0.02121908776462078, 0.03655785322189331, 0.021787703037261963, -0.012939482927322388, -0.008765009231865406, 0.02103879489004612, 0.027224227786064148, -0.03370090574026108, 0.00048713755677454174, 0.04077393189072609, -0.013577442616224289, -0.016281835734844208, -0.011982543393969536, -0.01829279586672783, -0.0042958250269293785, 0.04063524678349495, -6.358737664413638e-06, -0.005221559666097164, 0.017613230273127556, 0.03511551022529602, 0.019097179174423218, -0.010339104570448399, 0.07705441117286682, 0.021579673513770103, -0.06085578724741936, -0.02078915759921074, -0.0077179232612252235, 0.012024149298667908, -0.0011831722222268581, 0.007627776823937893, -0.04313160851597786, 0.0038728301879018545, 0.0072602564468979836, 0.004340898245573044, 0.0413009449839592, 0.03372864052653313, 0.049344781786203384, -0.021468723192811012, 0.00796755962073803, -0.03372864052653313, 0.013362477533519268, -0.04191116616129875, -0.05217399075627327, 0.00258130906149745, -0.04132867977023125, -0.0072810593992471695, 0.0023923481348901987, -0.010352972894906998, 0.03700165078043938, -0.0005443458794616163, 0.050260115414857864, -0.00816172081977129, 0.008862089365720749, -0.03420017659664154, -0.01854243129491806, 0.05577985197305679, 0.008591650053858757, -0.025518380105495453, 0.04546155035495758, 0.008335079997777939, -0.00959019549190998, -0.01250955369323492, -0.056556496769189835, 0.013598245568573475, 0.009326690807938576, -0.03339579328894615, -0.02399282529950142, -0.09907788783311844, -0.0068823350593447685, 0.0049164486117661, 0.04049655795097351, -0.001184905762784183, -0.0327855721116066, -0.04246591404080391, 0.038055669516325, 0.021801572293043137, -0.01721103861927986, -0.05469809100031853, 0.026475319638848305, -0.005842183250933886, -0.010033993050456047, 0.04351993277668953, -0.011580351740121841, 0.042937446385622025, 0.006084885448217392, -0.008550044149160385, 0.008806615136563778, 0.004080860409885645, 0.0006119557074271142, 0.03162060305476189, -0.056556496769189835, -0.015824168920516968, -0.024367278441786766, 0.03137096390128136, 0.02396508678793907, -0.051452819257974625, 0.030733006075024605, -0.05874774977564812, 0.022439531981945038, 0.07766463607549667, 0.06579303741455078, 0.061909809708595276, 0.04035787284374237, 0.0009976784931495786, -0.038998741656541824, 0.0016183021944016218, 0.01020041760057211, -0.010304432362318039, 0.00446918373927474, -0.013674522750079632, -0.04546155035495758, -0.027210360392928123, 0.0275432076305151, -0.036114055663347244, -0.02694685384631157, -0.05297837406396866, 0.0013929359847679734, -0.017890604212880135, -0.010595675557851791, 0.01783512905240059, -0.02811182476580143, -0.026697218418121338, 0.02639210782945156, 0.016337310895323753, 0.05489225313067436, 0.002206854522228241, -0.028305985033512115, -0.014395695179700851, -0.025878965854644775, -0.019152654334902763, 0.02666948176920414, -0.016309572383761406, -0.010914654470980167, 0.011316847056150436, -0.04862361028790474, 0.0014943508431315422, 0.05819300189614296, -0.005679226480424404, 0.057083506137132645, -0.04584987089037895, 0.023687712848186493, 0.017252644523978233, 0.02607312798500061, 0.00036687005194835365, 0.00805770605802536, -0.03683522716164589, -0.03722355142235756, 0.006795655470341444, -0.050787124782800674, -0.0064662741497159, 0.02959577366709709, 0.015421977266669273, -0.013459558598697186, -0.020012512803077698, -0.004340898245573044, -0.013625983148813248, -0.04740316420793533, 0.0239234808832407, -3.8220143323997036e-05, -0.04759732633829117, -0.00963873602449894, 0.005648022051900625, 0.0012022416340187192, 0.011247503571212292, -0.008085443638265133, -0.0576382540166378, -0.030871693044900894, -0.010561003349721432, 0.023868005722761154, -0.03314615786075592, -0.01783512905240059, 0.01829279586672783, 0.003380491863936186, -0.0010184815619140863, -0.009174134582281113, -0.004947653505951166, -0.0011034272611141205, -0.04415789246559143, 0.04116225615143776, -0.02318844012916088, -0.000332631723722443, 0.017918340861797333, -0.001430208096280694, 0.0019312143558636308, 0.026378238573670387, 0.028735915198922157, 0.023521289229393005, 0.01140005886554718, 0.02898555062711239, 0.0043062265031039715, 0.0013140578521415591, -0.0053706481121480465, -0.0017171165673062205, 0.01261356845498085, 0.009770488366484642, -0.04363088309764862, 0.033895064145326614, 0.010366842150688171, -0.028930077329277992, -0.016864320263266563, 0.01006173063069582, 0.010554068721830845, -0.008751139976084232, 0.019305208697915077, 0.010970129631459713, 0.010082533583045006, -0.0036231938283890486, 0.013327806256711483, 0.010561003349721432, 0.03026147000491619, 0.02090010792016983, -0.0281534306704998, 0.045267388224601746, 0.01418073009699583, 0.008827418088912964, -0.04010823741555214, 0.005044734105467796, 0.008029968477785587, -0.01737746223807335, 0.04063524678349495, -0.023632239550352097, -0.009028513915836811, -0.02870817668735981, 0.014964310452342033, 0.007745660375803709, -0.023549025878310204, -0.013327806256711483, -0.008716468699276447, 0.01822345145046711, -0.005332509521394968, 0.0019624189008027315, 0.011517942883074284, -0.0048575070686638355, 0.061410535126924515, 0.006285981275141239, 0.014284745790064335, -0.009881437756121159, 0.020178936421871185, 0.0058179134503006935, -0.01819571480154991, -0.025005238130688667, 0.018528562039136887, -0.016794977709650993, 0.01755775511264801, 0.02483881451189518, 0.0035538505762815475, 0.010921589098870754, 0.031260017305612564, 0.004136335104703903, 0.026863642036914825, 0.01618475466966629, -0.01029056403785944, -0.02868044003844261, 0.03253593295812607, -0.03536514565348625, -0.034671712666749954, -0.025379693135619164, 0.001960685243830085, -7.839057070668787e-05, -0.019859956577420235, 0.023022016510367393, -0.01421540230512619, 0.0052666328847408295, -0.008869023993611336, -0.006552953738719225, -0.03694617748260498, 0.046071771532297134, 0.010970129631459713, -0.021191351115703583, 0.036252740770578384, 0.005453860387206078, -0.015408108942210674, -0.006469741463661194, 0.026114733889698982, 0.018597906455397606, -0.008577781729400158, 0.0032019326463341713, 0.008570847101509571, 0.05211851745843887, 0.022495007142424583, 0.014014305546879768, -0.015463583171367645, 0.026572400704026222, 0.00022688301396556199, -0.004385971464216709, 0.049733102321624756, -0.0019693532958626747, 0.012488750740885735, 0.01506139151751995, 0.016018331050872803, 0.024270199239253998, -0.02836146019399166, 0.029817672446370125, -0.01682271435856819, -0.006736713461577892, 0.02012346126139164, 0.014770149253308773, 0.019610321149230003, -0.03358995541930199, 0.015283290296792984, -0.035198722034692764, 0.02923518791794777, 0.02898555062711239, -0.013230725191533566, 0.019291341304779053, -0.01159422006458044, -0.0019624189008027315, 0.007780332118272781, -0.04862361028790474, 0.0047742947936058044, 0.022536613047122955, -0.004427577834576368, -0.014534381218254566, 0.005290903151035309, -0.02266143076121807, 0.008466832339763641, -0.05006595328450203, 0.03575346991419792, -0.04141189157962799, -0.01691979542374611, -0.030483368784189224, -0.014021240174770355, -0.019540976732969284, -0.0327300950884819, 0.025449035689234734, -0.046598780900239944, 0.01187159400433302, -0.008106246590614319, -0.0022970009595155716, 0.019305208697915077, -0.012266851961612701, 0.015505190007388592, 0.012807730585336685, 0.048956457525491714, 0.004770827479660511, -0.01532489713281393, -0.06019009277224541, -0.0904238224029541, 0.02213442139327526, 0.03517098352313042, -0.011337650008499622, -0.06268645823001862, -0.04601629450917244, -0.013445690274238586, -0.001477014971897006, 0.030178258195519447, 0.03752866014838219, -0.03661332651972771, -0.02321617864072323, -0.004417175892740488, -0.031787026673555374, 0.0018601373303681612, -0.027071673423051834, 0.011074144393205643, -0.013327806256711483, -0.019097179174423218, 0.002255394821986556, 0.009534720331430435, -0.03228629752993584, 0.03614179417490959, -0.025324217975139618, -0.009534720331430435, 0.014478906989097595, -0.003323283512145281, -0.030760742723941803, 0.02582349069416523, -0.010775968432426453, 0.011462467722594738, 0.025601591914892197, -0.00591152673587203, 0.01597672514617443, 0.019957037642598152, -0.010422316379845142, 0.007114635314792395, -0.021440986543893814, 0.005231961142271757, -0.03444981202483177, 0.007724857423454523, 0.0011354985181242228, -0.03156512603163719, -0.014492775313556194, -0.03195345029234886, 0.013348609209060669, -0.026364369317889214, -0.0020577660761773586, 0.027751239016652107, -0.01143473107367754, 0.022286975756287575, -0.009090922772884369, 0.013126710429787636, 0.00960406381636858, -0.05167471989989281, 0.012010280974209309, 0.009964649565517902, -0.012107362039387226, 0.03697391226887703, -0.009777422994375229, -0.0031239213421940804, 0.011406993493437767, 0.019374553114175797, -0.0012265117838978767, 0.03173154965043068, 0.01296722050756216, -0.004864441230893135, -0.012627437710762024, -0.009229609742760658, 0.04313160851597786, -0.0009101324249058962, 0.001804662635549903, 0.01872272416949272, 0.05580758675932884, 0.015616139397025108, 0.026086995378136635, -0.004157138057053089, 0.006591092329472303, -0.024616915732622147, -0.023729318752884865, -0.030316945165395737, 0.03705712407827377, -0.006636165548115969, -0.018805935978889465, -0.020941713824868202, 0.012863204814493656, -0.007870478555560112, 0.008591650053858757, -0.01980448141694069, 0.00470495130866766, -0.00650788052007556, -0.04329803213477135, -0.0334235318005085, -0.01741906814277172, -0.03517098352313042, -0.011379255913197994, -0.013931093737483025, -0.01977674476802349, -0.07089671492576599, 0.0016373716061934829, 0.0504542738199234, -0.006223572418093681, 0.0069031380116939545, -0.017141694203019142, -0.0041918097995221615, 0.09120047092437744, -0.031260017305612564, -0.04831849783658981, 0.005675759166479111, -0.010817574337124825, -0.04634914547204971, -0.031093591824173927, 0.03275783360004425, -0.021524198353290558, 0.026614006608724594, -4.049547715112567e-05, 0.010990932583808899, -0.005079405847936869, 0.027668025344610214, 0.012925614602863789, 0.004001115448772907, 0.0017890603048726916, -0.012904811650514603, 0.012093492783606052, -0.01696140132844448, 0.02579575404524803, 0.005994739010930061, -0.03198118880391121, -0.015588401816785336, 0.02012346126139164, -0.023840269073843956, 0.0038138884119689465, -0.016545340418815613, 0.0360308438539505, 0.007190912961959839, -0.007863543927669525, -0.014603724703192711, -0.010630346834659576, 0.012662108987569809, 0.02515779435634613, 0.021399380639195442, 0.04171700403094292, -0.022370189428329468, -0.01331393700093031, -0.016032200306653976, -0.013612113893032074, -0.007655513938516378, 0.0020768356043845415, 0.007773397956043482, -0.005918461363762617, 0.025449035689234734, -0.007021021563559771, -0.039525751024484634, -0.020747551694512367, -0.03669653832912445, 0.008002230897545815, -0.040968094021081924, 0.02266143076121807, -0.009465377777814865, -0.009278150275349617, -0.005155683495104313, 0.004288890864700079, -0.023340996354818344, 0.011725973337888718, -0.020289886742830276, 0.01744680479168892, 0.006209703627973795, 0.03708486258983612, 0.002667988184839487, 0.022051209583878517, 0.0006713310140185058, 0.03580894321203232, -0.013043497689068317, 0.010817574337124825, -0.017918340861797333, -0.037140339612960815, -0.034144703298807144, -0.020276017487049103, 0.03253593295812607, 0.02543516829609871, 0.0008459897944703698, 0.019540976732969284, 0.0327300950884819, 0.023757057264447212, -0.005100208800286055, -0.015283290296792984, -0.005439991597086191, -0.016864320263266563, 0.05530831590294838, 0.029262924566864967, 0.0021375110372900963, 0.008834351785480976, 0.02868044003844261, 0.005689627956598997, 0.004767360165715218, 0.017224906012415886, -0.0036231938283890486, -0.029013289138674736, -0.0032782102935016155, -0.008397488854825497, 0.001978021115064621, -0.019679663702845573, 0.0017994618974626064, 0.014478906989097595, 0.00769711984321475, -0.011906266212463379, -0.014312482438981533, 0.004968456458300352, -0.027099410071969032, 0.021066531538963318, 0.003106585470959544, 0.053671810775995255, -0.02589283511042595, 0.010470856912434101, 0.00024010160996112972, 0.014340220019221306, -0.0048575070686638355, -0.035309672355651855, 0.004073926247656345, 0.028403066098690033, -0.01532489713281393, 0.054198820143938065, 4.799865200766362e-05, 0.0008360216743312776, -0.012620503082871437, -0.026336632668972015, -0.003082315204665065, -0.010221220552921295, 0.016018331050872803, -0.019471634179353714, -0.03669653832912445, -0.013993502594530582, 0.02413151226937771, 0.02234245091676712, 0.051841143518686295, -0.007364271674305201, 0.05342217534780502, -0.004129400942474604, 0.005186887923628092, 0.029151976108551025, -0.014673068188130856, 0.018584037199616432, 0.035309672355651855, 0.021066531538963318, -0.02568480372428894, -0.018597906455397606, -0.03578120842576027, -0.00825186725705862, 0.00727412523701787, 0.014756280928850174, -0.0025674402713775635, 0.041217729449272156, -0.03195345029234886, -0.01755775511264801, -0.014728543348610401, -0.04471264034509659, 0.00659802695736289, 0.036363691091537476, -0.01173290703445673, 0.04989952966570854, -0.0007484756060875952, 0.050260115414857864, 0.01422927062958479, 0.019499370828270912, -0.040968094021081924, 0.026197945699095726, 0.02646145038306713, -0.011157357133924961, 0.013563573360443115, -0.06224265694618225, 0.019360683858394623, 0.0009205339592881501, -0.0009959449525922537, 0.06307477504014969, 0.04310387372970581, -0.01790447160601616, -0.005564809776842594, 0.01386175025254488, 0.004375569988042116, 0.01038071047514677, 0.023840269073843956, -0.01618475466966629, 0.021967995911836624, 0.030705267563462257, -0.00033003135467879474, -0.013043497689068317, 0.01130991242825985, 0.004541994072496891, 0.020345360040664673, 0.026863642036914825, 0.011795316822826862, 0.024228591471910477, 0.003299013478681445, -0.0015437579713761806, 0.010678887367248535, -0.022813986986875534, 0.03503229841589928, 0.023618370294570923, -0.0190278347581625, 0.02445049211382866, 0.016198623925447464, 0.029041025787591934, -0.011531811207532883, 0.017003007233142853, 0.015782563015818596, -0.0013270598137751222, 0.025379693135619164, 0.04940025508403778, 0.002099372213706374, -0.005980870220810175, -0.01650373451411724, -0.022176027297973633, -0.005010062362998724, -0.034006014466285706, -0.018875280395150185, -0.019374553114175797, -0.03425564989447594, -0.0032088670413941145, -0.03500455990433693, -0.01948550157248974, 0.009597130119800568, -0.015713220462203026, 0.010651149787008762, 0.02575414814054966, 0.014069780707359314, 0.020525652915239334, 0.012870139442384243, -0.0209694504737854, -0.026433713734149933, 0.04601629450917244, -0.0039005675353109837, 0.0017275180434808135, 0.00969421025365591, -0.00593579700216651, 0.049344781786203384, 0.030316945165395737, -0.004112064838409424, 0.0039283051155507565, -0.01696140132844448, -0.023590633645653725, 0.00828653946518898, -0.02836146019399166, -0.0016477730823680758, -0.045933082699775696, 0.03148191422224045, 0.00986756943166256, -0.0046598780900239944, 0.03328484296798706, 0.009354427456855774, 0.006001673173159361, 0.028541753068566322, 0.005842183250933886, 0.03350674360990524, -0.04177247732877731, -0.018112502992153168, 0.021413249894976616, -0.009486180730164051, -0.03836078196763992, 6.706808926537633e-05, -0.01751614920794964, -0.0006162896752357483, 0.024616915732622147, -0.026835905387997627, -0.0019069442059844732, -0.008924498222768307, 0.01422927062958479, 0.014062846079468727, -0.049594417214393616, 0.008667928166687489, 0.04185568913817406, -0.021274562925100327, 0.0017153829103335738, -0.006861531641334295, 0.01758549176156521, 0.01826505735516548, 0.004292357712984085, 0.0070314230397343636, -0.02275851182639599, -0.028056349605321884, -0.005387984216213226, 0.0025188999716192484, -0.03001183457672596, -0.010027059353888035, 0.005512802395969629, -0.0001164752829936333, -0.018209584057331085, -0.029401611536741257, -0.02114974521100521, 0.006979415658861399, -0.006993284448981285, 0.018070897087454796, -0.03339579328894615, 0.0036613328848034143, 0.029041025787591934, 0.013417952693998814, -0.003723741974681616, 0.015227816067636013, 0.006962079554796219, 0.0007103367242962122, 0.008688731119036674, -0.005887256469577551, 0.029928620904684067, 0.003734143450856209, 0.011379255913197994, -0.01009640283882618, 0.03120454028248787, -0.0076139080338180065, 0.011760644614696503, 0.016226360574364662, 0.030843954533338547, 0.001375600229948759, -0.0052666328847408295, 0.008348948322236538, -0.007343468721956015, 0.0007055693422444165, 0.016420522704720497, 0.006982882972806692, -0.021510330960154533, 0.010727427899837494, 0.019679663702845573, -0.00570002943277359, 0.007287994027137756, -0.003505310043692589, -0.017682572826743126, 0.011899331584572792, 0.010554068721830845, -0.0070175547152757645, -0.01442343182861805, 0.009812094271183014, 0.005526670720428228, -6.159646000014618e-05, -0.012197508476674557, -0.05442072078585625, 0.0013192585902288556, -0.002031762385740876, 0.004278489388525486, 0.00036318617640063167, -0.014152992516756058, -0.03356221690773964, -0.018167976289987564, 0.0075098928064107895, -0.013258462771773338, 0.018376007676124573, 0.01080370508134365, 0.013674522750079632, 0.0005629819352179766, -0.0019901562482118607, 0.00016447393863927573, 0.0759449154138565, 0.01579643227159977, -0.0014804820530116558, 0.018417613580822945, 0.07189526408910751, -0.003820822574198246, 0.015643876045942307, -0.0007584437262266874, 0.0018826739396899939, -0.002938427496701479, -0.04315934702754021, 0.03694617748260498, 0.03988633677363396, 0.017072351649403572, -0.00017335856682620943, 0.009319756180047989, 0.004004582762718201, 0.04374183341860771, 0.03209213539958, 0.014069780707359314, 0.007107701152563095, -0.03522646054625511, 0.0009864101884886622, 0.009174134582281113, -0.03381185233592987, -0.031232278794050217, 0.006487077102065086, 0.0033648896496742964, -0.009333624504506588, 0.012946417555212975, -0.02705780416727066, -0.004777762107551098, -0.016157018020749092, 0.029457086697220802, -0.023909613490104675, -0.0054642618633806705, 0.014312482438981533, -0.015019785612821579, 0.0232577845454216, 0.009160266257822514, -0.021732229739427567, 0.012246049009263515, -0.001764790154993534, -0.0033648896496742964, 0.012897877022624016, 0.013570507988333702, 0.006237441208213568, -0.0017439870862290263, 0.010387645103037357, -0.0005196422571316361, -0.008771942928433418, -0.014922704547643661, -0.047375425696372986, -0.011351518332958221, -0.03669653832912445, -0.0005777173792012036, 0.002993902424350381, -0.009860634803771973, -0.029678985476493835, -0.015102997422218323, 0.0153942396864295, 0.04482359066605568, -0.04512869939208031, 0.004268087912350893, -0.00784274097532034, -0.012239114381372929, 0.01398656889796257, -0.013910290785133839, -0.013175250962376595, 0.012114295735955238, -0.021912522614002228, -0.025379693135619164, 0.012960285879671574, 0.010144943371415138, -0.014257008209824562, 0.03001183457672596, -0.014395695179700851, 0.012142033316195011, -0.0206504724919796, -0.0007389408419840038, 0.0052666328847408295, -0.01931907795369625, 0.0006847663316875696, 0.05461487919092178, -0.008321210741996765, -0.007412812206894159, 0.018514694646000862, 0.022508874535560608, -0.011219765990972519, 0.051841143518686295, -0.0022709970362484455, -0.033340319991111755, 0.015130735002458096, 0.013660654425621033, 0.014395695179700851, -0.0021912523079663515, -0.004004582762718201, -0.03159286454319954, 0.008792745880782604, -0.03594763204455376, -0.00028214105986990035, -0.013376346789300442, -0.0049164486117661, 0.018376007676124573, -0.007218650542199612, 0.0002554871898610145, -0.012433275580406189, 0.003966443706303835, -0.0010791569948196411, 0.012731452472507954, 0.012259917333722115, -0.001051419647410512, 0.0419389009475708, -0.028763651847839355, -0.0252271369099617, -0.00479509774595499, -0.013834012672305107, -0.042521387338638306, -0.011053341440856457, 0.0020699012093245983, -0.014562118798494339, -0.02040083520114422, -0.0037202746607363224, 0.008917564526200294, 0.028930077329277992, 0.029845409095287323, -0.025781884789466858, 0.04204985126852989, -0.013237659819424152, -0.003543448867276311, 0.022425662726163864, 0.004788163583725691, 0.002626382280141115, 0.004673746880143881, 0.0041918097995221615, -0.003643997013568878, -0.00258130906149745, 4.130809611524455e-05, 0.0016703096916899085, -0.022120552137494087, -0.007083430886268616, 0.0008637590217404068, -0.012988023459911346, -0.009021579287946224, -0.023368733003735542, 0.00830040778964758, 0.006379595026373863, -0.01219057384878397, 0.004521191120147705, -0.008896761573851109, -0.006830327212810516, 0.012239114381372929, -0.016517603769898415, 0.01691979542374611, 0.015255553647875786, -0.003997648600488901, 0.032452721148729324, -0.015283290296792984, 0.006979415658861399, -0.005089807324111462, -0.0063414559699594975, 0.021801572293043137, -0.018805935978889465, -0.014097518287599087, 0.017113957554101944, -0.012467947788536549, -0.00974275078624487, 0.03489360958337784, -0.011226700618863106, 0.015588401816785336, -0.032951995730400085, -0.024117643013596535, 0.023202309384942055, 0.025005238130688667, -0.03175928816199303, -0.007891281507909298, 0.03170381486415863, 0.00669510755687952, -0.059857241809368134, -0.007461352273821831, 0.009257347323000431, -0.004444913472980261, -0.01506139151751995, -0.019513240084052086, -0.02868044003844261, 0.0001463796361349523, 0.00693087512627244, -0.010845311917364597, 0.04229949042201042, -0.004715352784842253, 0.02705780416727066, 0.0048887114971876144, 0.005273567512631416, -0.017821259796619415, 0.012343129143118858, -0.04313160851597786, 0.010269761085510254, -0.006608428433537483, 0.024006692692637444, 0.00414326973259449, 0.024616915732622147, -0.012128164991736412, -0.022703036665916443, -0.014118321239948273, -0.018445350229740143, -0.0360863171517849, -0.015449714846909046, 0.004281956236809492, 0.013293134048581123, -0.0037445449270308018, 0.02678043022751808, 0.00558561272919178, 0.020137330517172813, 0.022148288786411285, 0.004091261886060238, -0.02149646170437336, -0.015297159552574158, 0.005020463839173317, -0.006181966047734022, -0.04046882316470146, -0.011587286368012428, -0.005980870220810175, 0.04171700403094292, -0.01363291684538126, 0.009097857400774956, 0.00950004905462265, -0.0055786785669624805, 0.01741906814277172, 0.01199641264975071, -0.03370090574026108, 0.016739502549171448, -0.007953690364956856, 0.00024075170222204179, -0.013320871628820896, -0.008855155669152737, -0.005904592573642731, -0.04099583253264427, -0.004958054982125759, -0.008917564526200294, -0.02044244110584259, 0.013903356157243252, 0.008667928166687489, 0.006747114937752485, 0.0013834013370797038, 0.00100721325725317, 0.03472718596458435, 0.002544903662055731, -0.05087033659219742, -0.0009630068088881671, -0.021454855799674988, 0.0013547971611842513, 0.009312821552157402, 0.0070418245159089565, -0.006996751297265291, 0.04099583253264427, -0.01710008829832077, -0.00324180512689054, -0.0216074101626873, -0.015435846522450447, -0.012072689831256866, -0.0035850550048053265, -0.02772350050508976, 0.02114974521100521, 0.0012733186595141888, 0.015449714846909046, 0.04457395151257515, -0.006171564571559429, -0.024603046476840973, -0.061687909066677094, 0.011101881973445415, -0.012017215602099895, 0.00368560291826725, -0.0030008365865796804, -0.01920812763273716, -0.027071673423051834, 0.0012819865951314569, -0.003626661142334342, -0.009687276557087898, 0.015172340907156467, 0.008792745880782604, 0.021135875955224037, 0.034144703298807144, 0.0005850851302966475, 0.00015190543490462005, 0.010734361596405506, 0.002180850598961115, -0.0504542738199234, 0.006500945892184973, 0.01682271435856819, 0.01762709766626358, 0.036114055663347244, 0.016378916800022125, 0.008272670209407806, -0.00592886283993721, 0.0017283848719671369, 0.043436720967292786, -0.012350063771009445, 0.037279024720191956, 0.0018254655878990889, -0.012814664281904697, -0.02909650094807148, -0.005765905603766441, 0.004219547379761934, -0.003886698978021741, 0.0027997407596558332, 0.015227816067636013, 0.003319816431030631, 0.020470179617404938, -0.0098328972235322, -0.01941615901887417, -0.013078169897198677, 0.006258244160562754, -0.019859956577420235, -0.021551936864852905, 0.008633255958557129, 0.003512244438752532, -0.01643439196050167, -0.014062846079468727, 0.018708854913711548, 0.025490643456578255, 0.017918340861797333, -0.011420861817896366, -0.0012117762817069888, -0.040302399545907974, 0.025976046919822693, -0.026932986453175545, -0.030843954533338547, -0.008640190586447716, -0.015560664236545563, 0.02230084501206875, 0.007128504104912281, -0.013958831317722797, 0.03425564989447594, -0.05148055776953697, -0.013383280485868454, 0.018001552671194077, 0.02040083520114422, 0.007322665769606829, 0.008050771430134773, -0.012155902571976185, 0.004781228955835104, -0.006372660864144564, -0.01998477429151535, 0.029429350048303604, -0.005498933605849743, 0.038471732288599014, 0.02868044003844261, 0.03353447839617729, -0.00200575846247375, 0.01250955369323492, 0.030843954533338547, 0.03128775209188461, -0.0334235318005085, -0.02339647151529789, 0.006396930664777756, -0.019624188542366028, 0.022744642570614815, 0.013709194958209991, 0.04748637601733208, -0.023659976199269295, -0.024284066632390022, 0.046210456639528275, -0.01400043722242117, 0.010644215159118176, 0.02110813744366169, 0.0035885220859199762, -0.006497479043900967, -0.00830040778964758, 0.0016434391727671027, 0.00694821123033762, 0.010907720774412155, 0.001152834389358759, 0.012461013160645962, 0.012031083926558495, -0.01117122545838356, -0.04840170964598656, -0.01881980523467064, 0.010297498665750027, -0.02291106805205345, -0.0008126182365231216, 0.024214724078774452, -0.05658423528075218, 0.026045389473438263, -0.0314541757106781, 0.03752866014838219, -0.016059936955571175, -0.0059670014306902885, 0.006937809754163027, 0.03311841934919357], [0.003792325733229518, 0.017020199447870255, 0.06293047964572906, 0.06228668615221977, -0.026449041441082954, 0.026918470859527588, -0.020131850615143776, 0.051637325435876846, 0.0037453826516866684, 0.04874027147889137, -0.005693518090993166, -0.0013353613903746009, 0.024236012250185013, 0.014431626535952091, -0.013137340545654297, 0.027012357488274574, -0.006243422161787748, 0.047452691942453384, -0.013398880138993263, -0.008577161468565464, 0.07328476756811142, 0.007718774490058422, -0.0003493483236525208, -0.012781915254890919, -0.05064481869339943, -0.048472024500370026, -0.03884200006723404, 0.003973391838371754, 0.03683015704154968, -0.08685800433158875, 0.07569897919893265, -0.02821946330368519, 0.02331056445837021, -0.015652146190404892, -0.02856818400323391, -0.017878586426377296, -0.010709716007113457, -0.03862740099430084, 0.002923879772424698, 0.013566534034907818, 0.013841485604643822, 0.0036984398029744625, -0.056599874049425125, -0.019501473754644394, -0.04922311380505562, 0.03573034703731537, 0.006967686116695404, -0.04715761914849281, 0.0075511205941438675, 0.0029926178976893425, 0.017516454681754112, 0.050966713577508926, -0.0016455206787213683, -0.04415326565504074, 0.018146831542253494, 0.0022767367772758007, -0.004895486868917942, 0.0458432175219059, 0.0017016846686601639, -0.022519240155816078, 0.030177658423781395, -0.030472729355096817, 0.009053297340869904, 0.024852978065609932, 0.028648657724261284, 0.004291933495551348, -0.01194364670664072, -0.0009237716440111399, -0.04190000146627426, -0.03280646726489067, 0.06604212522506714, 0.03224315121769905, 0.017529865726828575, -0.007256050128489733, 0.018106594681739807, -0.0073164054192602634, -0.033101536333560944, 0.021379195153713226, -0.04128303751349449, -0.026328330859541893, -0.028380410745739937, 0.02388729341328144, 0.013962196186184883, -0.04447516053915024, 0.017999297007918358, -0.041470807045698166, -0.05182509869337082, 0.0015122359618544579, -0.0750015377998352, 0.0075578270480036736, -0.018884507939219475, 0.02235829271376133, -0.049705956131219864, 0.031036045402288437, 0.020909763872623444, -0.05171779915690422, 0.03377215191721916, -0.04251696914434433, -0.013512885197997093, 0.025080986320972443, -0.018884507939219475, -0.023350801318883896, -0.03066050074994564, 0.008308915421366692, 0.014230442233383656, -0.007142046000808477, 0.0037319704424589872, 0.04275839030742645, 0.00664579076692462, -0.04130985960364342, -0.05155685171484947, -0.03138476610183716, -0.010944430716335773, 0.06566658616065979, -0.042034126818180084, -0.009039885364472866, -0.025308996438980103, -0.030794624239206314, 0.04871344566345215, -0.0035140207037329674, -0.03224315121769905, 0.0032558341044932604, -0.006072415504604578, -0.035649873316287994, 0.03111651912331581, -0.05297855660319328, -0.008154673501849174, -0.033959925174713135, -0.0590677373111248, -0.03961991146206856, 0.0405319482088089, -0.01931370049715042, 0.05013515055179596, -0.040397826582193375, -0.009556258097290993, -0.034013573080301285, -0.03151888772845268, -0.020628105849027634, -0.0032474512699991465, -0.030016710981726646, 0.026006435975432396, 0.03157253563404083, -0.0068939183838665485, 0.031143343076109886, -0.06786619871854782, 0.0005750520504079759, -0.006380898412317038, 0.023525161668658257, 0.012949568219482899, -0.033235661685466766, -0.0018693383317440748, 0.026730699464678764, -0.039941806346178055, -0.006390957627445459, 0.014699872583150864, 0.016684891656041145, 0.03165300935506821, 0.07242637872695923, 0.0062333629466593266, 0.0007163002737797797, -0.023927530273795128, -0.025215109810233116, -0.02907785028219223, 0.00790654681622982, 0.01845531538128853, -0.0031552419532090425, -0.03870787471532822, 0.026717286556959152, -0.04098796471953392, -0.04686255007982254, -0.03422817215323448, -0.04004910588264465, -0.07108514755964279, 0.026288093999028206, -0.03956626355648041, -0.05085941404104233, 0.01574603095650673, -0.0039264485239982605, -0.00027117980062030256, 0.010260404087603092, -0.014673047699034214, -0.002873583696782589, -0.08261971920728683, -0.03302106261253357, -0.026502689346671104, 0.02862183190882206, -0.023900706321001053, 0.011407154612243176, -0.039271194487810135, 0.026837997138500214, 0.026717286556959152, 0.020641518756747246, 0.036615557968616486, 0.012540493160486221, 0.01706043630838394, 0.01569238305091858, -0.012439901009202003, 0.004975960589945316, 0.0188576839864254, -0.008825288154184818, 0.02907785028219223, -0.05324679985642433, 0.0591750368475914, -0.0162020493298769, -0.04278521239757538, -0.038359157741069794, -0.025657715275883675, -0.013264757581055164, 0.012332603335380554, -0.038654226809740067, 0.0036850273609161377, -0.03087509796023369, 0.013304994441568851, -0.0007825234206393361, -0.006246775388717651, 0.03167983517050743, -0.0541856624186039, 0.0754307359457016, -0.00408068997785449, 0.01767740212380886, -0.01018663588911295, 0.03701792657375336, 0.02230464294552803, -0.03787631541490555, -0.005706930533051491, 0.02471885457634926, 0.009482490830123425, -0.06582753360271454, 0.0004840999317821115, -0.05453438311815262, 0.028380410745739937, -0.0012917714193463326, 0.01030734647065401, -0.05405154079198837, 0.0019196344073861837, -0.0434558279812336, 0.0230289064347744, 0.013700656592845917, 0.02286795899271965, 0.03157253563404083, 0.026864822953939438, -0.0036179658491164446, 0.009495902806520462, 0.005418566055595875, 0.01970265805721283, -0.010763364844024181, -0.008503393270075321, -0.025496767833828926, 0.022116869688034058, 0.026408804580569267, 0.019689245149493217, 0.02534923329949379, 0.06014072149991989, -0.031813956797122955, -0.02800486609339714, 0.008905761875212193, -0.049035340547561646, -0.04120256379246712, -0.0066659096628427505, 0.03224315121769905, -0.01546437293291092, -0.0379299633204937, -0.02246559038758278, 0.010763364844024181, -0.05415883660316467, -0.024477433413267136, -0.00883870106190443, -0.01970265805721283, -0.0375007688999176, 0.057511910796165466, -0.05520499497652054, 0.03889564797282219, 0.03806408494710922, -0.06432535499334335, -0.07097785174846649, 0.017462804913520813, -0.00021753061446361244, -0.011373624205589294, -0.002040344988927245, -0.03546210005879402, -0.02377999573945999, 0.01123279519379139, -0.001959871267899871, -0.028836429119110107, 0.017368918284773827, 0.021647440269589424, 0.004918958526104689, -0.01840166561305523, -0.007779129780828953, 0.006494902539998293, 0.06754430383443832, -0.0006299586384557188, 0.01738233119249344, -0.01931370049715042, 0.04071972146630287, 0.03184078261256218, 0.026060083881020546, -0.005582866724580526, -0.00838268268853426, 7.560131780337542e-05, 0.030419079586863518, 0.022935019806027412, -0.023109380155801773, -0.04391184449195862, -0.05531229451298714, -0.0012682998785749078, -0.0048720152117311954, -0.006608907133340836, -0.024638380855321884, 0.0006081636529415846, -0.01602768898010254, 0.01959536038339138, -0.028326762840151787, -0.05024244636297226, -0.0434558279812336, 0.0073164054192602634, 0.019058868288993835, 0.037232525646686554, 0.004519942682236433, 0.026516102254390717, 0.018710147589445114, -0.004684243351221085, 0.04455563426017761, -0.014377977699041367, -0.002375652315095067, -0.029211973771452904, -0.008322327397763729, 0.019058868288993835, -0.0351133830845356, -0.005797463469207287, -0.0010746599873527884, 0.006468078121542931, 0.022049808874726295, 0.018924744799733162, -0.01586674153804779, -0.01841507852077484, -0.034925609827041626, 0.02496027573943138, 0.02467861771583557, 0.006156242452561855, 0.016175225377082825, -0.029158324003219604, -0.015249776653945446, 0.0023773289285600185, -0.03393309935927391, 0.06727606058120728, 0.024598143994808197, 0.04662112891674042, -0.019219815731048584, 0.039324842393398285, 0.005837700329720974, 0.04890121892094612, -0.05574148893356323, 0.0051972633227705956, -0.07366031408309937, -0.00985803548246622, 0.0008546145400032401, 0.018200481310486794, -0.023471511900424957, 0.004845190793275833, -0.0120308268815279, 0.0053917416371405125, 0.036722857505083084, 0.00977085530757904, 0.04289251193404198, 0.0002868973242584616, -0.022318053990602493, 0.0047311861999332905, 0.03355755656957626, -0.020681755617260933, -0.0002546239993534982, 0.04235602170228958, 0.0052542658522725105, -0.002040344988927245, -0.015316838398575783, -0.02918514795601368, 0.0295875184237957, 0.014364565722644329, -0.02360563538968563, 0.025617478415369987, 0.015088829211890697, 0.02630150504410267, 0.004231578204780817, -0.014136556535959244, 0.016845839098095894, 0.02038668468594551, -0.06743700802326202, -0.039271194487810135, -0.03382580354809761, 0.025496767833828926, 0.017127497121691704, -0.005418566055595875, -0.04753316566348076, 0.033906277269124985, -0.0513690821826458, -0.004439468961209059, -0.020628105849027634, 0.00971050001680851, 0.040397826582193375, 0.02726719155907631, 0.015209539793431759, -0.04246331751346588, -0.03902977332472801, -0.00438917288556695, -0.03597176820039749, 0.0053950948640704155, -0.049652308225631714, 0.014726697467267513, -0.029399745166301727, -0.009019766934216022, 0.024410372599959373, 0.008510099723935127, 0.057672858238220215, 0.010783483274281025, 0.028299937024712563, 0.013030041940510273, -0.06046261638402939, 0.05233476683497429, -0.008282090537250042, -0.019662421196699142, 0.0348987840116024, 0.0428120382130146, 0.004660771694034338, -0.022519240155816078, -0.02760249748826027, 0.018938157707452774, 0.0347914882004261, -0.02816581539809704, -0.007202401291579008, -0.054400257766246796, -0.02681117318570614, 0.022331466898322105, 0.011467509903013706, 0.0187503844499588, -0.041926827281713486, -0.028890078887343407, 0.04318758100271225, -0.00581758189946413, -0.015370487235486507, -0.01908569224178791, -0.0022163812536746264, -0.028299937024712563, 0.01693972572684288, 0.0045937104150652885, -0.02619420737028122, 0.036615557968616486, 0.0005234985728748143, -0.01479375921189785, -0.009817798621952534, 0.006696087308228016, 0.019112516194581985, -0.0007049836567603052, -0.035998594015836716, 0.0014451745664700866, -0.023417862132191658, 0.0008751520654186606, 0.03060685098171234, -0.0070347473956644535, 0.04890121892094612, -0.05201287195086479, -0.013338524848222733, 0.06695416569709778, 0.028031691908836365, 0.05185192450881004, 0.018361428752541542, -0.03798361122608185, -0.04871344566345215, -0.015987452119588852, -0.021379195153713226, -0.010206754319369793, -0.002093994291499257, -0.013103810139000416, -0.053836941719055176, -0.018441902473568916, -0.003036207752302289, -0.037125226110219955, -0.028648657724261284, -0.04393867030739784, -0.0005494848592206836, -0.02732083946466446, 0.01597404107451439, 0.06008706986904144, -0.06314507126808167, -0.025724777951836586, 0.07205083966255188, -0.030338605865836143, 0.04554814472794533, 0.006256834603846073, 4.806944707524963e-05, -0.00751088373363018, -0.00818820483982563, 0.0074639408849179745, 0.020225737243890762, -0.015263188630342484, 0.027736620977520943, -0.0008403639658354223, -0.05531229451298714, -0.007624888326972723, 0.027280602604150772, 0.012667910195887089, 0.02575160190463066, -0.031196992844343185, 0.017154322937130928, 0.04477023333311081, 0.018938157707452774, -0.007638300769031048, -0.006159595213830471, 0.004831778351217508, -0.015665557235479355, 0.0033027769532054663, -0.058745842427015305, 0.005334739573299885, 0.008905761875212193, 0.005737108178436756, -0.0108639569953084, 0.010535355657339096, 0.023230090737342834, -0.024329898878932, -0.05509769916534424, 0.04222189635038376, 0.015236364677548409, -0.028541358187794685, -0.006320543121546507, 0.016336172819137573, 0.005663340445607901, 0.00704145384952426, -0.031706660985946655, -0.021553553640842438, -0.016054514795541763, 0.010012276470661163, 0.023632459342479706, -0.025496767833828926, -0.015987452119588852, 0.03691063076257706, -0.011326680891215801, 0.018039533868432045, -0.012466725893318653, -0.0003642275696620345, -0.004372407216578722, -0.014042669907212257, 0.020413508638739586, 0.005411860067397356, 0.016067925840616226, 0.022036395967006683, 0.008355858735740185, -0.005026256665587425, 0.006528433412313461, 0.02325691469013691, 0.0049692546017467976, 0.008489981293678284, 0.007859603501856327, 0.008845406584441662, 0.02902420051395893, -0.01533025037497282, -0.005887996405363083, -0.005073199514299631, 0.0016371379606425762, -0.051020361483097076, 0.04533354938030243, -0.010676184669137001, -0.011641870252788067, 0.02631491795182228, 0.021030474454164505, 0.0010553797474130988, -0.024088477715849876, 0.02512122318148613, 0.03586446866393089, 0.002937291981652379, -0.006746383383870125, 0.0053414455614984035, -0.0018995159771293402, -0.014445039443671703, 0.0006391795468516648, -0.010193342342972755, 0.04769411310553551, 0.024987101554870605, 0.01055547408759594, -0.04938406124711037, 0.02207663282752037, 0.02518828585743904, -0.017006786540150642, 0.02580525167286396, -0.029963061213493347, -0.010381114669144154, -0.0038795056752860546, -0.005981882568448782, 0.00040299748070538044, -0.023847056552767754, 0.008939293213188648, 0.018710147589445114, 0.009247776120901108, -0.012386252172291279, -0.0029289093799889088, 0.0026522809639573097, 0.009837917052209377, 0.03173348307609558, 0.008697872050106525, -0.001733538811095059, 0.0003975487488787621, 0.010039101354777813, -0.0007263594889082015, 0.014807171188294888, -0.00934166181832552, 0.005425272509455681, -0.029346095398068428, 0.024544496089220047, 0.021942511200904846, -0.009931802749633789, 0.03943214192986488, 0.011038316413760185, -0.007564533036202192, 0.017154322937130928, -0.013338524848222733, -0.026274681091308594, -0.008510099723935127, 0.021607203409075737, -0.048928044736385345, -0.007222519721835852, 0.004526648670434952, 0.0033027769532054663, -0.01660441793501377, -0.0055325706489384174, -0.0035877882037311792, -0.01891133189201355, 0.00201854994520545, 0.013110515661537647, -0.02084270305931568, -0.018482139334082603, -0.01766398921608925, -0.020185500383377075, -0.03959308937191963, 0.00149295583833009, -0.01762375235557556, -0.02360563538968563, -0.0007883913349360228, 0.0001344372722087428, 0.01975630782544613, 0.009100240655243397, 0.0077523053623735905, 0.015585084445774555, 0.025697952136397362, 0.042651090770959854, 0.006504961755126715, -0.028138989582657814, 0.03471101447939873, 0.03117016889154911, -0.02021232433617115, 0.034979257732629776, 0.006743030156940222, 0.012553906068205833, -0.01405608281493187, -0.007591357454657555, -0.011615045368671417, -0.022800898179411888, 0.02624785713851452, 0.012661204673349857, -0.016617830842733383, 0.006907330825924873, 0.005143614020198584, 0.02462496981024742, -0.024759091436862946, 0.02998988702893257, -0.005488980561494827, 0.05413201451301575, 0.03634731471538544, -0.01402925793081522, 0.0324040986597538, -0.01648370735347271, -0.010817013680934906, 0.021325545385479927, -0.031706660985946655, -0.008550336584448814, 0.05190557241439819, -0.01592039130628109, 0.008939293213188648, -0.00022675156651530415, -0.02281430922448635, 0.014673047699034214, -0.016054514795541763, 0.02225099317729473, -0.011326680891215801, -0.0016790514346212149, -0.017181146889925003, 0.014324328862130642, 0.008610691875219345, -0.02235829271376133, 0.02274724841117859, -0.04125621169805527, 0.007933370769023895, 0.004040453117340803, 0.0038359155878424644, 0.03159936144948006, 0.00031476974254474044, 0.018441902473568916, 0.002620426705107093, 0.05415883660316467, 0.012802033685147762, 0.003222303232178092, -0.038815174251794815, -0.10890781879425049, 0.020131850615143776, 0.005700224544852972, -0.010716421529650688, -0.048579324036836624, -0.04232919588685036, -0.012976393103599548, -0.01066947914659977, 0.02608690969645977, 0.056653525680303574, -0.049652308225631714, -0.025832075625658035, -0.006840269081294537, -0.05842394754290581, -0.0008181498269550502, -0.008637516759335995, 0.004607122391462326, 0.007497471757233143, -0.022425353527069092, -0.03414769843220711, 0.0227606613188982, -0.022492414340376854, 0.02760249748826027, -0.04179270565509796, -0.03680333122611046, 0.02031962387263775, 0.0147669343277812, 0.020507395267486572, -8.04213632363826e-05, 0.016242286190390587, -0.01574603095650673, 0.012513669207692146, -0.02749519981443882, 0.03331613540649414, -0.004322111140936613, -0.012406370602548122, 0.04144398495554924, -0.03320883587002754, -0.025134636089205742, -0.045762743800878525, -0.00597182335332036, -0.030848272144794464, -0.04772093892097473, -0.010206754319369793, -0.024142127484083176, -0.020641518756747246, -0.011695519089698792, -0.013398880138993263, 0.044904354959726334, 0.019944079220294952, 0.012574024498462677, -0.012855682522058487, 0.011876584962010384, -0.015383899211883545, -0.01479375921189785, 0.010206754319369793, 0.022559477016329765, 0.014324328862130642, 0.012781915254890919, -0.02033303491771221, 0.04578956589102745, 0.0045367078855633736, 0.006796679459512234, 0.022103458642959595, 0.025496767833828926, 0.020453745499253273, -0.007745598908513784, 0.026449041441082954, -0.00936848670244217, 0.04895486682653427, -0.001154295401647687, -0.010126280598342419, -0.009569671005010605, -0.005512452218681574, 0.03664238378405571, 0.02800486609339714, -0.020802466198801994, 0.001968253869563341, -0.0012372840428724885, -2.347806002944708e-06, -0.009053297340869904, 0.03680333122611046, -0.012976393103599548, -0.013063573278486729, -0.03210902959108353, 0.017851760610938072, 0.038198210299015045, -0.011098671704530716, -0.0256308913230896, 0.001877720933407545, -0.015786267817020416, -0.05244206264615059, 0.0024091829545795918, -0.01581309363245964, -0.006987804546952248, -0.0060020009987056255, -0.016859252005815506, 0.012822152115404606, -0.058584894984960556, -0.03524750471115112, 0.020923176780343056, -0.03025813214480877, -0.02331056445837021, -0.0039029770996421576, 0.029265621677041054, 0.09469078481197357, -0.0057136365212500095, -0.023243503645062447, -0.0014988237526267767, -0.007001216523349285, -0.008570455014705658, -0.024182364344596863, 0.02082929015159607, -0.005425272509455681, -0.0047278329730033875, 0.0030932100489735603, 0.009764148853719234, 0.0162556990981102, -0.016859252005815506, -0.00677656102925539, 0.005562748294323683, -0.00152061867993325, -0.03066050074994564, -0.004483058582991362, -0.005609691608697176, 0.01873697340488434, -0.002420918783172965, 0.0018676617182791233, 0.007215813267976046, -0.0033011005725711584, -0.003244098275899887, 0.007242638152092695, -0.019863605499267578, 0.02100365050137043, 0.018280955031514168, 0.006250128149986267, -0.04211460053920746, -0.016242286190390587, -0.010622535832226276, 0.012413077056407928, -0.018602849915623665, 0.02117801085114479, 0.001978313084691763, -0.035649873316287994, -0.03342343494296074, -0.024142127484083176, -0.018951568752527237, 0.01530342549085617, 0.03264551982283592, 0.006370839197188616, 0.009455665946006775, -0.016336172819137573, -0.03795678913593292, -0.009744030423462391, -0.038815174251794815, 0.0243835486471653, -0.004436115734279156, 0.009247776120901108, -0.015625320374965668, 0.014123144559562206, 0.003108298871666193, -0.009522727690637112, -0.002710959641262889, 0.012976393103599548, -0.0162020493298769, 0.012386252172291279, 0.003842621808871627, 0.01896498166024685, 0.00668938085436821, 0.04275839030742645, -0.0017385684186592698, 0.009697087109088898, -0.02225099317729473, 0.044743407517671585, -0.0005037992377765477, -0.016497120261192322, -0.015652146190404892, -0.022572888061404228, 0.01891133189201355, 0.03594494238495827, 0.015987452119588852, 0.02490662783384323, 0.018160244449973106, 0.01445845142006874, 0.002705930033698678, -0.037232525646686554, 0.018844271078705788, -0.009308131411671638, 0.035998594015836716, 0.03167983517050743, -0.009583082981407642, -0.012493550777435303, 0.018388252705335617, 0.025040749460458755, 0.009294718503952026, 0.005730402190238237, 0.0217279139906168, -0.02190227434039116, 0.0406392477452755, -0.009898272342979908, -0.0016362996539101005, -0.04155128076672554, -0.00021690191351808608, 0.010904193855822086, -0.007209107279777527, 0.012500256299972534, -0.01850896328687668, -0.0003747059381566942, 0.0035140207037329674, 0.027173304930329323, -0.006836916320025921, 0.013304994441568851, -0.029828939586877823, -0.037903137505054474, -0.02049398235976696, 0.011172439903020859, 0.011534571647644043, -0.028246289119124413, -0.0011920174583792686, 0.021821800619363785, -0.013016629964113235, 0.06234033778309822, 0.01597404107451439, 0.026180794462561607, 0.009542846120893955, 0.02353857271373272, -0.01123279519379139, 0.01474010944366455, -0.0037353234365582466, -0.0008378491620533168, -0.035435277968645096, -0.006867093965411186, 0.009200832806527615, 0.01935393735766411, 0.035998594015836716, -0.021365782245993614, 0.020681755617260933, -0.021701090037822723, 0.004489765036851168, 0.03302106261253357, -0.033852625638246536, -0.010589005425572395, -0.012406370602548122, 0.03353073075413704, -0.03701792657375336, 0.010850545018911362, -0.030848272144794464, -0.036213189363479614, 0.007866309955716133, 0.02072199247777462, 0.008402801118791103, 0.04122938588261604, -0.0294802188873291, 0.01194364670664072, -0.023136204108595848, -0.041926827281713486, -0.0038225033786147833, 0.03420134633779526, 0.01761033944785595, 0.041363511234521866, -0.002385711530223489, 0.008818582631647587, 0.011440685950219631, -0.0032290094532072544, -0.02795121818780899, 0.032377272844314575, 0.023444687947630882, -0.010843838565051556, -0.022210756316781044, -0.04393867030739784, 0.03653508424758911, -0.019327113404870033, -0.01993066631257534, 0.033342961221933365, 0.022197343409061432, 0.009174007922410965, -0.02065492980182171, 0.014190205372869968, -0.007678537629544735, 0.010481706820428371, -0.007443822454661131, -0.02179497480392456, 0.03286011517047882, 0.032538220286369324, -0.007913252338767052, -0.01448527630418539, 0.0031837429851293564, -0.009435547515749931, 0.014418214559555054, 0.012862388975918293, -6.863321323180571e-05, 0.026180794462561607, -0.022036395967006683, 0.02009161375463009, 0.01869673654437065, 0.009864741005003452, 0.02089635282754898, 0.021754737943410873, -0.03146523982286453, 0.01704702340066433, 0.03471101447939873, 0.01901863142848015, 0.024531083181500435, 0.022680187597870827, 0.023498335853219032, 0.011997295543551445, 0.025148048996925354, -0.003524079918861389, 0.016631243750452995, -0.01677877828478813, -0.014190205372869968, -0.014270679093897343, -0.023619046434760094, 0.0077523053623735905, -0.0009329926106147468, -0.020064789801836014, -0.01445845142006874, -0.007309699431061745, -0.010796895250678062, -0.025483356788754463, 0.029614342376589775, 0.006508314982056618, 0.011326680891215801, 0.032833293080329895, -0.020762229338288307, 0.01879062131047249, 0.00010347374336561188, -0.024236012250185013, -0.027280602604150772, 0.054507557302713394, 0.0006865417235530913, -0.007437116466462612, 0.03699110448360443, 0.008248560130596161, 0.02789756841957569, 0.0051603796891868114, 0.021808387711644173, 0.01055547408759594, 0.006773207802325487, -0.010971255600452423, 0.04471658542752266, -0.02382023259997368, -0.015705794095993042, -0.029828939586877823, 0.05260301008820534, 0.022344879806041718, -0.024866390973329544, -0.0034871960524469614, -0.013103810139000416, 0.019434411078691483, 0.024329898878932, -0.008402801118791103, 0.04018322750926018, -0.03645461052656174, 0.009381898678839207, 0.0040739839896559715, -0.03259187191724777, -0.032323624938726425, -0.0038929178845137358, -0.005891349632292986, 0.009972039610147476, 0.008221735246479511, -0.013271463103592396, -0.01374759990721941, -0.008355858735740185, 0.019890429452061653, 0.016617830842733383, -0.0190722793340683, 0.03688380494713783, 0.043053459376096725, 0.004721126984804869, -0.0054319784976542, 0.000823598587885499, -0.0087246960029006, 0.007262756582349539, 0.01704702340066433, 0.016161812469363213, -0.010159811936318874, -0.02737448923289776, -0.0001922777883009985, 0.02575160190463066, -0.02376658283174038, -0.005368269979953766, 0.01683242805302143, -0.021499905735254288, -0.03122381679713726, -0.04906216636300087, 0.0009883183520287275, 0.009576376527547836, 0.017127497121691704, 0.022157106548547745, -0.03092874586582184, 0.02512122318148613, 0.01840166561305523, 0.029721640050411224, 0.009435547515749931, 0.004452880937606096, -0.0018089829245582223, 0.007007922977209091, 0.008456450887024403, 0.010159811936318874, 0.0059081148356199265, 0.006206538528203964, 0.005871231202036142, -6.271294842008501e-05, 0.005686812102794647, -0.01197047159075737, -0.000687799125444144, 0.017972471192479134, 0.013056866824626923, 0.009831210598349571, -0.0007347421487793326, -0.010099456645548344, 0.014190205372869968, 0.01608133874833584, 0.007940077222883701, 0.010347583331167698, -0.03744712099432945, -0.005435331724584103, 0.00990497786551714, 0.0062836590223014355, 0.0175030417740345, -0.01970265805721283, -0.0321895033121109, -0.01157480850815773, 0.01975630782544613, 0.007504177745431662, -0.011306562460958958, 0.01586674153804779, 0.02918514795601368, 0.009301424957811832, 0.0019129281863570213, -0.037339821457862854, 0.018710147589445114, 0.0010327465133741498, 0.016751954331994057, 0.010367701761424541, -0.033289309591054916, -0.04093431681394577, -0.019608771428465843, -0.022438766434788704, -0.0240616537630558, 0.028299937024712563, -0.00406392477452755, -0.0033145127817988396, 0.004617181606590748, 0.008925880305469036, 0.000167444086400792, 0.07661101222038269, -0.0051100836135447025, -0.017570102587342262, 0.01630934700369835, 0.059765174984931946, -0.02821946330368519, -0.0033664854709059, 0.024692030623555183, -0.0006773207569494843, 0.011990590021014214, -0.0511544831097126, 0.02331056445837021, 0.03495243564248085, -0.007886428385972977, -0.012050945311784744, -0.020480571314692497, 0.009106947109103203, 0.04388502240180969, 0.02416895143687725, -0.008939293213188648, 0.011112084612250328, -0.02631491795182228, -0.008704577572643757, -0.011085259728133678, -0.039217542856931686, -0.02404824085533619, 0.02331056445837021, -0.015960628166794777, 0.013144046999514103, 0.011889997869729996, -0.014713284559547901, -0.012574024498462677, 0.010179930366575718, 0.014123144559562206, -0.0039298017509281635, -0.007745598908513784, 0.0072694625705480576, -0.033047888427972794, 0.016644654795527458, 0.010260404087603092, -0.013948784209787846, -8.817534398986027e-05, -0.013063573278486729, -0.028434060513973236, 0.013600064441561699, 0.009972039610147476, -0.008986235596239567, -0.0075511205941438675, -0.0029657932464033365, 0.000289621704723686, -0.013452529907226562, 0.021151185035705566, -0.05536594241857529, -0.02314961701631546, -0.028434060513973236, -0.004365701228380203, 0.012399664148688316, -0.0005323003861121833, -0.026449041441082954, -0.020762229338288307, 0.010810308158397675, 0.010039101354777813, -0.03355755656957626, 0.030848272144794464, -0.00046356237726286054, 0.0011610016226768494, -0.005371623206883669, 0.003058002796024084, 0.006508314982056618, -0.004338876809924841, -0.03438911959528923, -0.013653714209794998, 0.03495243564248085, 0.01609475165605545, -0.0067128525115549564, 0.025724777951836586, 0.009234363213181496, 0.01665806770324707, -0.007376760710030794, -0.019340526312589645, -0.007598063908517361, 0.016403233632445335, 0.015558259561657906, 0.0326186940073967, -0.035998594015836716, 0.014981530606746674, 0.02241194061934948, 0.010528650134801865, -0.011521159671247005, 0.0756453275680542, -0.00688721239566803, -0.004979313816875219, 0.02009161375463009, -0.004224872216582298, 0.018093183636665344, 0.020748816430568695, -0.02230464294552803, -0.005938292481005192, -0.022613124921917915, -0.019863605499267578, 0.023417862132191658, 0.01061582937836647, 0.012218598276376724, -0.0015172655694186687, -0.02168767713010311, -0.013579946011304855, 0.0048217191360890865, -0.01329158153384924, 0.017999297007918358, -0.0026589869521558285, 0.010749952867627144, -0.01013969350606203, 0.03589129447937012, -0.010575592517852783, -0.02021232433617115, -0.016456883400678635, 0.002055433811619878, -0.0295875184237957, -0.013472648337483406, 0.03146523982286453, -0.02891690284013748, -0.0008449744200333953, 0.003882858669385314, 0.019783131778240204, 0.045306723564863205, 0.025778425857424736, -0.01259414292871952, 0.018374841660261154, 0.017543278634548187, 0.010233579203486443, -0.011742462404072285, 0.008624103851616383, -0.013854898512363434, -0.018200481310486794, -0.019863605499267578, 0.007966902107000351, 0.0147669343277812, 0.0026355155277997255, -0.011621751822531223, 0.02049398235976696, -0.01400243304669857, -0.001271652989089489, -0.004607122391462326, -0.014994943514466286, -0.0038761526811867952, -0.007725480478256941, 0.023069143295288086, 0.0011115437373518944, -0.02377999573945999, 0.003872799454256892, -0.010823720134794712, -0.0021593791898339987, -0.016845839098095894, 0.03919072076678276, 0.01535707525908947, -0.018535789102315903, 0.03235045075416565, -0.0035944944247603416, -0.0062300097197294235, -0.020346447825431824, -0.0012071062810719013, 0.029453394934535027, -0.018562613055109978, 0.0007716259569860995, 0.021915685385465622, -0.03009718470275402, -0.014632810838520527, 0.01862967386841774, 0.045816391706466675, -0.010099456645548344, 0.004385819658637047, -0.01044817641377449, 0.03382580354809761, -0.000796354899648577, -0.04176587983965874, -0.007162164431065321, -0.0029892646707594395, 0.019836781546473503, -0.04415326565504074, -0.018884507939219475, 0.019112516194581985, 0.025550417602062225, -0.01868332363665104, -0.0041242800652980804, -0.018482139334082603, -0.009938509203493595, 0.012895919382572174, -0.009080122224986553, 0.013512885197997093, -0.001877720933407545, 0.020158676430583, 0.015987452119588852, 0.023645872250199318, 0.0035140207037329674, 0.017985884100198746, -0.024477433413267136, 0.027025770395994186, -0.03801043704152107, 0.03476466238498688, 0.007276168558746576, -0.010220167227089405, -0.03519385680556297, -0.025443119928240776, -0.02061469294130802, -0.004255049861967564, -0.025993023067712784, -0.004838484339416027, 0.0009732294711284339, 0.01637640967965126, -0.01834801584482193, 0.028809605166316032, -0.026945296674966812, 0.03291376680135727, 0.04358994960784912, -0.0147669343277812, -0.00855704303830862, -0.0161483995616436, 0.016523944213986397, 0.0077858357690274715, -0.03940531611442566, -0.019850192591547966, -0.006092533934861422, 0.055473241955041885, -0.03827868402004242, 0.001072145183570683, 0.013801248744130135, -0.00601541344076395, -0.000255671824561432, 0.00677656102925539, -0.05222746729850769, 0.03307471424341202, 0.0075578270480036736, -0.0004451204731594771, -0.025993023067712784, -0.009817798621952534, -0.01329158153384924, -0.021312132477760315, -0.04047830030322075, 0.0019699304830282927, -0.03766171634197235, -0.024799328297376633, 0.005361563991755247, 0.03669603168964386, -0.0048217191360890865, -0.003220626851543784, 0.015960628166794777, -0.025308996438980103, -0.02534923329949379, -0.018039533868432045, -0.015705794095993042, -0.014096319675445557, 0.0044495281763374805, -0.021647440269589424, -0.010736539959907532, -0.004546767100691795, -0.013170870952308178, 0.029319271445274353, -0.010374408215284348, 0.003547551343217492, -0.024826154112815857, 0.0006328925373964012, -0.03455006703734398, 0.021996159106492996, 0.009053297340869904, 0.04664795473217964, 0.02281430922448635, -0.014284092001616955, -0.018710147589445114, -0.04385819658637047, 0.03320883587002754, -0.0003941956674680114, 0.00029569913749583066, -0.0017000080551952124, -0.035703521221876144, -0.025724777951836586, 0.031357940286397934, 0.011192558333277702, -0.012218598276376724, 0.011112084612250328, -0.03154571354389191, 0.0038124441634863615, 0.019233226776123047, 0.015678970143198967, 0.04104161635041237, 0.019501473754644394, 0.012775208801031113, -0.04168540611863136, -0.004171222914010286, 0.007021334953606129, 0.014833996072411537, 0.033396609127521515, 0.010126280598342419, 0.01574603095650673, 0.015598496422171593, -0.026663638651371002, 0.051583677530288696, -0.003946566954255104, 0.03629366308450699, 0.033235661685466766, -0.007443822454661131, -0.004426056519150734, 0.008637516759335995, 0.02274724841117859, 0.00846986286342144, 0.017529865726828575, 0.04924993962049484, -0.010327464900910854, 0.012949568219482899, -0.018213894218206406, -0.021271895617246628, -0.002845082664862275, 0.005747167393565178, -0.017006786540150642, -0.0380372628569603, 0.006189772859215736, 0.0007942591910250485, -0.014820583164691925, -0.024088477715849876, 0.016564181074500084, 0.024571320042014122, 0.025161460041999817, -0.005663340445607901, 0.011360212229192257, -0.04007593169808388, 0.039378490298986435, -0.013237932696938515, -0.014498688280582428, -0.024879802018404007, -0.014807171188294888, -0.025335820391774178, 0.011360212229192257, -0.020587868988513947, 0.049705956131219864, -0.03162618726491928, 0.05171779915690422, 0.020802466198801994, 0.003254157491028309, 0.046379707753658295, 0.013331819325685501, -0.00656196428462863, -0.022277817130088806, -0.004989373032003641, -0.0010218489915132523, 0.006032178644090891, -0.031357940286397934, 0.02821946330368519, -0.00020328005484770983, 0.01637640967965126, -0.004053865559399128, -0.0017821583896875381, 0.007792542222887278, 0.03725934773683548, 0.008007138967514038, -0.007215813267976046, 0.005619750823825598, -0.013190989382565022, 0.014552337117493153, 0.007276168558746576, 0.012869094498455524, 0.004335523582994938, -0.013251344673335552, 0.007718774490058422, -0.023498335853219032, 0.02670387551188469, 0.015276601538062096, 0.007504177745431662, -0.02840723656117916, -0.01609475165605545, 0.013606770895421505, 0.035703521221876144, 0.010260404087603092, -0.00948919728398323, 0.0023387684486806393, 0.008483274839818478, -0.011983883567154408, -0.05536594241857529, -0.007772423792630434, 0.007282875012606382, -0.03202855587005615, -0.014753521420061588, 0.06679321825504303, 0.020976826548576355, 0.010542062111198902, -0.03420134633779526, 0.01504859235137701, -0.01693972572684288, 0.027253778651356697, -0.030392255634069443, 0.05493675172328949], [0.019612882286310196, 0.005707753822207451, 0.02109524980187416, 0.02579575404524803, -0.005463859997689724, 0.02840573713183403, -0.028836511075496674, -0.005723591428250074, 0.03197862580418587, 0.04117691516876221, -0.025732405483722687, -0.007823613472282887, -0.0037787738256156445, 0.01478567998856306, -0.03337230533361435, 0.021424666047096252, 0.011288809590041637, 0.025504348799586296, 0.02379392273724079, 0.01943550445139408, 0.05116073414683342, 0.02736681140959263, 0.047790560871362686, 0.002768355654552579, -0.06370385736227036, -0.04335612431168556, 0.03202930465340614, 0.02794962376356125, 0.005007746629416943, -0.015115095302462578, 0.0813402459025383, -0.005619065370410681, -0.011472522281110287, -0.035526175051927567, 0.005381505936384201, -0.0013200369430705905, -0.010420926846563816, 0.0015892705414444208, 0.020195692777633667, 0.03712257370352745, -0.014671651646494865, -0.023755913600325584, -0.014684321358799934, -0.04328010603785515, -0.079667828977108, 0.056051284074783325, -0.011789267882704735, -0.03207998350262642, 0.0023676727432757616, 0.014595632441341877, 0.026910698041319847, 0.001743683940730989, 0.012999235652387142, -0.03230804204940796, -0.002006582682952285, -0.003629903541877866, 0.007937642745673656, 0.04773988202214241, 0.027772245928645134, -0.0013065752573311329, 0.037071894854307175, -0.018802013248205185, -0.02227354422211647, 0.012834527529776096, -0.014101509936153889, -0.007842618972063065, -0.0015528448857367039, 0.0245034322142601, -0.022425580769777298, -0.007829949259757996, 0.07191389799118042, 0.03818683698773384, 0.003506372682750225, -0.01296122558414936, 0.010845365934073925, -0.02075316570699215, 0.030965039506554604, -0.001123654656112194, -0.002839623484760523, -0.011269805021584034, -0.02995145507156849, 0.019131427630782127, 0.008735841140151024, 0.03357502445578575, -0.041328951716423035, 0.0336763821542263, -0.03387909755110741, -0.005169286392629147, -0.02288169600069523, -0.03126911446452141, -0.06203144043684006, -0.00033297869958914816, -0.03149717301130295, 0.026454584673047066, 0.025631045922636986, -0.022564949467778206, 0.0018086167983710766, -0.013544037938117981, -0.024237366393208504, 0.05787573754787445, -0.004722675308585167, -0.0026226527988910675, -0.02428804524242878, 0.009914134629070759, 0.036134328693151474, -0.017750417813658714, -0.02807632088661194, 0.04905754327774048, -0.027189433574676514, -0.017497021704912186, -0.0054701948538422585, -0.011390168219804764, -0.01043993141502142, 0.09852052479982376, -0.017509691417217255, -0.004843038972467184, -0.03980857506394386, 0.03950449824333191, 0.018358569592237473, 0.024123337119817734, -0.03887100890278816, -0.02535231038928032, 0.025288961827754974, -0.04099953919649124, 0.025390319526195526, -0.019726909697055817, 0.012068003416061401, -0.023743242025375366, -0.02734147198498249, -0.034613948315382004, 0.08250586688518524, -0.029622038826346397, 0.07135643064975739, -0.07840085029602051, -0.029165925458073616, 0.021133260801434517, -0.018447257578372955, -0.006708669941872358, -0.012055333703756332, -0.04388825595378876, 0.036717139184474945, 0.021196609362959862, 0.0650721937417984, 0.015469850040972233, -0.03433521091938019, 0.009711417369544506, 0.02061379700899124, 0.04246923699975014, -0.014773010276257992, 0.016242709010839462, 0.014747670851647854, 0.0010167530272156, -0.04018867015838623, 0.015887955203652382, 0.03137047588825226, -0.05671011656522751, 0.025301631540060043, 0.09183085709810257, 0.013582047075033188, -0.007500533480197191, 0.015596549026668072, 0.01290421187877655, -0.030965039506554604, -0.04416699334979057, 0.013417339883744717, -0.0189793910831213, -0.02321111038327217, 0.008058005943894386, -0.04087283834815025, -0.05260509252548218, -0.05731826648116112, -0.04682765528559685, -0.015153104439377785, -0.002655911026522517, -0.013645396567881107, -0.024554111063480377, 0.008539458736777306, -0.015596549026668072, -0.0020002478267997503, 0.009964813478291035, 0.015127765014767647, -0.004523125942796469, -0.1192990243434906, -0.03415783494710922, -0.04231720045208931, 0.037882763892412186, -0.005482864566147327, 0.004732177592813969, -0.061727363616228104, -0.043204087764024734, 0.03218134492635727, 0.03172522783279419, -0.008102349936962128, 0.030382229015231133, -0.022463591769337654, 0.02522561140358448, -0.02441474422812462, -0.01754770055413246, 0.04173438623547554, -0.02110791951417923, 0.02650526352226734, -0.024820176884531975, 0.02759486809372902, 0.011567546054720879, -0.003427186282351613, -0.024946875870227814, -0.011580215767025948, 0.02464280091226101, 0.0318012498319149, -0.031547851860523224, 0.004181040450930595, -0.06309570372104645, 0.013936801813542843, 0.009679742157459259, -0.00801366101950407, 0.010218209587037563, 0.03674247860908508, -0.013835443183779716, 0.044724464416503906, -0.010408257134258747, -0.005248473025858402, 0.0007522705709561706, 0.024820176884531975, -0.010446266271173954, -0.0140254907310009, -0.013100594282150269, -0.006645320449024439, -0.048753466457128525, 0.04163302853703499, -0.021513354033231735, -0.01768706925213337, -0.004203212913125753, -0.011687909252941608, -0.04363486170768738, 0.03182658925652504, -0.027772245928645134, -0.009166615083813667, -0.03238406032323837, -0.009375667199492455, 0.020449088886380196, 0.048398714512586594, 0.02817768044769764, -0.019752249121665955, 0.012714164331555367, 0.029976794496178627, -0.021361317485570908, 0.007747595198452473, -0.006810028105974197, 0.027265453711152077, 0.02545366808772087, 0.0247694980353117, -0.005932643078267574, 0.05290916934609413, -0.02947000227868557, -0.028684472665190697, -0.021171269938349724, 0.010648983530700207, -0.044268351048231125, 0.0379587821662426, 0.01137116365134716, -0.039656538516283035, -0.0011228627990931273, -0.009831780567765236, -0.026910698041319847, -0.02794962376356125, -0.03375240042805672, 0.011162111535668373, -0.0020034152548760176, -0.04018867015838623, -0.00713310856372118, -0.033777739852666855, 0.022539610043168068, 0.014443594962358475, -0.05225033685564995, -0.049817733466625214, 0.00789329782128334, -0.009774765931069851, -0.025555027648806572, -0.004868378397077322, 0.021424666047096252, -0.005688749253749847, 0.014646312221884727, 0.02533964067697525, -0.04550999402999878, -0.028380397707223892, 0.03410715609788895, -0.006366584450006485, 0.024440083652734756, -0.00801366101950407, -0.0013913046568632126, 0.04741046577692032, 0.009869789704680443, 0.0021253623999655247, -0.007342160679399967, 0.030914360657334328, -0.007886962965130806, 0.0029172261711210012, 0.0022251370828598738, -0.045079220086336136, -0.009876124560832977, -0.006829033140093088, 0.05681147426366806, 0.00117116654291749, -0.04654891788959503, -0.0377560630440712, 0.03539947792887688, -0.002076266799122095, -0.0012669820571318269, -0.04487650468945503, 0.02807632088661194, -0.01503907609730959, -0.003880132455378771, -0.006740344222635031, -0.05361867696046829, -0.05949747562408447, 0.0344112329185009, 0.010237215086817741, 0.034613948315382004, 0.0008005742565728724, -0.004881048109382391, 0.05034986510872841, -0.03737596794962883, 0.05736894533038139, -0.04870278760790825, 0.01302457507699728, 0.014050830155611038, 0.008153029717504978, 0.04710639268159866, -0.02807632088661194, -0.04208914190530777, -0.046979691833257675, 0.000545990071259439, 0.011206455528736115, -0.042139820754528046, -0.007158448453992605, -0.030483586713671684, 0.007658906280994415, 0.040011290460824966, -0.05493634194135666, 0.05260509252548218, 0.049564335495233536, -0.00907792616635561, 0.007373835425823927, 0.005333994049578905, -0.048854827880859375, 0.030686303973197937, -0.023907950147986412, -0.020778505131602287, 0.010009157471358776, 0.04082215949892998, -0.017623720690608025, 0.03286551311612129, -0.05949747562408447, -0.02756952866911888, -0.06522423774003983, 0.004190543200820684, 0.03952983766794205, -0.015444510616362095, -0.006236718967556953, -0.019017400220036507, -0.021069910377264023, 0.0011387000558897853, 0.04677697643637657, 0.0433814637362957, 0.013062584213912487, -0.007595557253807783, -0.0002199401642428711, 0.014342236332595348, -0.0029473169706761837, -0.040239349007606506, 0.04208914190530777, 0.03712257370352745, 0.03147183358669281, -0.004288733936846256, -0.02911524660885334, -0.0019986641127616167, -0.03261211887001991, -0.002587810857221484, 0.037299949675798416, -0.012004654854536057, 0.017750417813658714, 0.015013736672699451, 0.02508624456822872, 0.037071894854307175, 0.031294453889131546, 0.041886426508426666, -0.03666646033525467, -0.029647378250956535, 0.0034493585117161274, -0.012448098510503769, -0.006841702852398157, 0.00035930817830376327, 0.007449854165315628, 0.012682490050792694, -0.008881543762981892, 0.038947027176618576, 0.034360550343990326, 0.0471317321062088, 0.0598522312939167, -0.04006197303533554, 0.02394595928490162, -0.030382229015231133, 0.0025355478283017874, 0.025770414620637894, 0.00639192434027791, -0.015824604779481888, -0.015077086165547371, -0.022666309028863907, 0.010978398844599724, 0.008457104675471783, -0.010940389707684517, 0.011630894616246223, 0.04122759401798248, -0.0258084237575531, 0.043685540556907654, -0.03182658925652504, -0.006075178738683462, 0.013835443183779716, 0.0001835144212236628, -0.033422984182834625, 0.04535795748233795, -0.019536862149834633, -0.020322391763329506, -0.04538329690694809, -0.025314301252365112, 0.02653060294687748, 0.012701494619250298, -0.07211661338806152, 0.05726758763194084, -0.11027811467647552, -0.03501938283443451, 0.007196458056569099, 0.0323333814740181, 0.00648061279207468, -0.042165160179138184, -0.025250950828194618, -0.013201952911913395, 0.005086932796984911, -0.0056158979423344135, -0.03879499062895775, 0.028329716995358467, -0.038947027176618576, 0.04350816085934639, 0.023059071972966194, 0.03496870398521423, -0.030914360657334328, -0.015989312902092934, 0.011687909252941608, 0.03451259061694145, 0.004139863885939121, -0.005365668796002865, 0.001786444685421884, -0.00542585039511323, -0.032966870814561844, -0.04089817777276039, 0.0032719811424613, 0.040239349007606506, -0.09107066690921783, 0.02027171291410923, -0.034461911767721176, 0.030154172331094742, 0.05199694260954857, 0.0469290129840374, 0.004196878056973219, -0.008723171427845955, 0.00666432548314333, 0.005644404795020819, -0.01038291770964861, -0.00883719976991415, -0.045205917209386826, 0.010642648674547672, -0.04728376865386963, -0.028456415981054306, -0.003018584568053484, 0.05326392501592636, 0.00394664891064167, 0.029191264882683754, -0.0073675005696713924, -0.006315905135124922, -0.028735151514410973, -0.018561286851763725, 0.06867042183876038, -0.04490184411406517, -0.029419321566820145, 0.052402377128601074, 0.050527241080999374, 0.04647289961576462, -0.004124026279896498, -0.04183574765920639, -0.0040733469650149345, -0.042165160179138184, -0.01649610511958599, 0.012619140557944775, -0.013645396567881107, 0.013277971185743809, -0.02498488500714302, -0.04206380248069763, -0.02379392273724079, 0.032130662351846695, -0.020930543541908264, 0.07399175316095352, -0.004174705594778061, 0.00592630822211504, -0.002513375598937273, 0.0018038656562566757, -0.0039719888009130955, 0.030128832906484604, 0.021424666047096252, -0.03887100890278816, -0.009407341480255127, 0.008843534626066685, -0.04067012295126915, 0.014304227195680141, 0.01109242718666792, -0.019169438630342484, -0.010477941483259201, 0.01838390901684761, 0.004345748107880354, -0.041886426508426666, -0.000199054746190086, 0.017775757238268852, -0.017712408676743507, 0.02355319634079933, 0.0035443822853267193, -0.0234645064920187, 0.028431076556444168, 0.017281634733080864, -0.06203144043684006, -0.02840573713183403, -0.007380170281976461, -0.0010705997701734304, 0.008672491647303104, -0.05726758763194084, 0.005552548449486494, 0.0005883547710254788, 0.024136006832122803, -0.017230955883860588, -0.01885269209742546, -0.02640390582382679, -0.006962066050618887, 0.028000302612781525, -0.010300563648343086, -0.020474430173635483, 0.02276766672730446, -0.020537778735160828, -0.02369256317615509, 0.04277331382036209, 0.006581971421837807, -0.02004365622997284, 0.0060181645676493645, 0.03595694899559021, -0.01699022948741913, 0.02535231038928032, -0.035070061683654785, -0.01919477805495262, 0.013341320678591728, 0.03539947792887688, -0.04340680316090584, 0.002657494740560651, 0.01326530147343874, -0.023147761821746826, -0.0011339489137753844, 0.01790245622396469, -0.016179360449314117, -0.033524345606565475, 0.032840173691511154, 0.008754845708608627, 0.0362863652408123, -0.0022140510845929384, 0.014367575757205486, -0.0027984464541077614, -0.0059579829685389996, 0.03382841870188713, -0.0019527360564097762, 0.035298120230436325, -0.010927719995379448, -0.005007746629416943, -0.0792623981833458, -0.019714239984750748, 0.011700578965246677, -0.019131427630782127, 0.00556521862745285, -0.0033860094845294952, -0.014443594962358475, -0.02452877163887024, 0.012397418729960918, -0.0009589469991624355, -0.03210532292723656, -0.027670886367559433, -0.024959545582532883, -0.002502289367839694, -0.01639474742114544, 0.00035871428553946316, 0.016774842515587807, 0.005029918625950813, 0.056406039744615555, 0.01567256823182106, 0.035652872174978256, -0.03821217641234398, 0.04016333073377609, -0.019992975518107414, -0.027316132560372353, -0.017370322719216347, 0.01486169919371605, -0.01220737211406231, 0.005657074507325888, 0.027797585353255272, 0.008431765250861645, 0.011573880910873413, 0.020664475858211517, -0.027290793135762215, 0.011295144446194172, -0.0004082057566847652, -0.013201952911913395, -0.024072658270597458, 0.02169073186814785, 0.015241793356835842, 0.005809112451970577, -0.0004335454141255468, -0.011523201130330563, 0.006708669941872358, -0.02347717620432377, -0.011402837932109833, -0.016065331175923347, 0.00024270624271593988, -0.022121505811810493, -0.0008710501133464277, -0.025073574855923653, 0.02532697096467018, 0.007082429248839617, -0.011643564328551292, -0.009945808909833431, 0.009242633357644081, -0.022793006151914597, -0.025060905143618584, 0.03005281277000904, -0.019853608682751656, 0.021297967061400414, -0.004181040450930595, -0.012948555871844292, 0.03405647724866867, -0.003398679196834564, 0.02663196250796318, -0.019866278395056725, 0.02169073186814785, 0.026783999055624008, -0.02650526352226734, -0.006401426624506712, 0.0060054948553442955, 0.0022172185126692057, 0.01849793829023838, 0.012929551303386688, -0.018459927290678024, 0.022311553359031677, 0.012631810270249844, -0.015862613916397095, -0.0024721985682845116, -0.007652571424841881, 0.011833611875772476, 0.03215600177645683, -0.03580491244792938, -0.01957487128674984, 0.0034651958849281073, 0.00427289679646492, -0.009147610515356064, 0.0009534039418213069, 0.056659433990716934, -0.030331550166010857, 0.004377422854304314, 0.010040832683444023, -0.06877178698778152, 0.016432756558060646, 0.03522209823131561, -0.038592271506786346, -0.014950388111174107, 0.014177529141306877, -0.01944817416369915, 0.03887100890278816, -0.028836511075496674, 0.051439471542835236, -0.0013810103992000222, -0.029140586033463478, -0.01601465232670307, -0.004092351999133825, -0.017370322719216347, -0.00907792616635561, 0.026479924097657204, -0.04811997711658478, -0.013100594282150269, 0.02911524660885334, 0.026429245248436928, 0.009863454848527908, 9.70033070188947e-05, 0.03385375812649727, -0.009305982850492, 0.022349562495946884, 0.03334696590900421, -0.010997403413057327, -0.03504472225904465, -0.10439931601285934, -0.027620207518339157, 0.024250036105513573, -0.02501022443175316, -0.03339764475822449, -0.05065394192934036, -0.014595632441341877, -0.011877956800162792, -0.00877385027706623, 0.05620332062244415, -0.01815585233271122, -0.0005867710569873452, -0.0024199355393648148, -0.03633704409003258, 0.02143733575940132, -0.006607311312109232, 0.004437604453414679, 0.020360400900244713, -0.0044977860525250435, -0.007728590164333582, 0.0061892070807516575, -0.042393218725919724, 0.01408884022384882, -0.037553347647190094, -0.016686152666807175, 0.010744007304310799, -0.017775757238268852, -0.013620056211948395, 0.032485418021678925, -0.03043290786445141, 0.005162951536476612, 0.019308805465698242, 0.002418351825326681, 0.023869941011071205, 0.01768706925213337, -0.0004093935713171959, -0.0058471220545470715, -0.0202843826264143, -0.019612882286310196, -0.0028380397707223892, 0.016318729147315025, -0.02509891428053379, 0.004466111771762371, -0.019245456904172897, -0.011542205698788166, 0.03709723427891731, 0.004928559996187687, -0.02297038398683071, 0.07292748242616653, 0.004396427422761917, -0.01538116205483675, -0.034842006862163544, 0.010192870162427425, -0.02262829802930355, -0.03854159265756607, 0.0336763821542263, -0.020588457584381104, 0.0007807776564732194, 0.03664112091064453, 0.009413676336407661, 0.008311402052640915, -0.03463928773999214, -0.00048739215708337724, -0.011098762042820454, -0.007228132337331772, 0.005634902510792017, -0.02191878855228424, -0.022653639316558838, -0.007475194055587053, 0.027037397027015686, 0.0054100132547318935, -0.009502365253865719, 0.014456264674663544, 0.0036900851409882307, 0.01455762330442667, 0.021297967061400414, -0.007715920452028513, -0.0027287625707685947, 0.0019812430255115032, -0.00022449337120633572, -0.034132495522499084, 0.010712333023548126, 0.015419171191751957, -0.01814318262040615, 0.012327735312283039, 0.012175696901977062, -0.023616544902324677, -0.00966707244515419, 0.01908074878156185, -0.013734085485339165, -0.016572125256061554, -0.029039228335022926, -0.00627156114205718, -0.004003663081675768, -0.014430925250053406, -0.031750570982694626, -0.013049914501607418, -0.00256563862785697, -0.06704869121313095, 0.012701494619250298, 0.023958628997206688, -0.02076583541929722, -0.004988741595298052, -0.01030689850449562, -0.004722675308585167, 0.07490397989749908, 0.0014950387412682176, -0.07622163742780685, -0.0008243301999755204, -0.014418255537748337, -0.01721828617155552, 0.0011877956567332149, 0.009945808909833431, 0.01462097279727459, 0.05772370100021362, -0.04234253987669945, 0.037553347647190094, -0.011174781247973442, -0.013214622624218464, 0.010015493258833885, -0.0124354287981987, 0.014532283879816532, 0.031775910407304764, 0.006417263764888048, 0.005181956570595503, 0.014481604099273682, 0.011339489370584488, 0.02286902442574501, 0.021741410717368126, -0.006486948113888502, -0.045104559510946274, 0.005707753822207451, 0.0099584786221385, 0.027898943051695824, 0.01943550445139408, 0.008058005943894386, 0.003205464454367757, 0.0008441267418675125, 0.02924194559454918, 0.025402989238500595, 0.03674247860908508, 0.041202254593372345, -0.029875436797738075, -0.019498853012919426, -0.007025415077805519, 0.0021712903399020433, 0.019714239984750748, -0.010832696221768856, 0.003181708510965109, 0.0016328230267390609, 0.028912529349327087, -0.045433975756168365, -0.015153104439377785, 0.004443939309567213, -0.026125168427824974, 0.011472522281110287, -0.02853243425488472, 0.056760795414447784, 0.017611049115657806, 0.014836359769105911, -0.0015306726563721895, 0.05034986510872841, 0.006182872224599123, -0.005270645022392273, -0.009660737589001656, -0.007386505138128996, -0.038009461015462875, 0.03121843747794628, 0.020208362489938736, -0.010832696221768856, -0.003712257370352745, 0.0344112329185009, -0.039656538516283035, 0.04287467151880264, -0.006962066050618887, -0.05635536089539528, -0.009515034966170788, -0.025136923417448997, 0.050729960203170776, 0.03304288908839226, 0.004564302507787943, 0.008039000444114208, 0.027088075876235962, 0.05848389118909836, 0.0061638676561415195, -0.0140254907310009, -0.015115095302462578, -0.0318012498319149, 0.03699587658047676, 0.03240939974784851, -0.008951228111982346, -0.035070061683654785, 0.009705082513391972, 0.03712257370352745, 0.019739579409360886, 0.024693479761481285, 0.002073099371045828, -0.013442679308354855, 0.004589642398059368, -2.1058627680758946e-05, -0.01674950309097767, -0.02355319634079933, -0.014202868565917015, -0.021741410717368126, -0.011238130740821362, -0.0323333814740181, 0.0019400662276893854, 0.006170202512294054, -0.008552128449082375, 0.018764004111289978, 0.010167530737817287, 0.0280509814620018, 0.00901457667350769, 0.01672416180372238, -0.014050830155611038, 0.03468996658921242, -0.0052389707416296005, -0.024655470624566078, 0.004415432456880808, 0.0020477597136050463, -0.017382992431521416, 0.03709723427891731, -0.018662644550204277, 0.01555853895843029, -0.015216453932225704, 0.00907792616635561, -0.01792779564857483, -0.004576972685754299, 0.03831353783607483, 0.027518849819898605, -0.03370172157883644, -0.03218134492635727, 0.05823049321770668, -0.002326495712623, 0.0221595149487257, 0.00877385027706623, 0.02995145507156849, -0.01508975587785244, 0.015102425590157509, 0.006588306277990341, -0.019600212574005127, 0.0261758491396904, -0.022615628316998482, 0.0035792242269963026, -0.009280643425881863, 0.0012638145126402378, -0.046143483370542526, -0.0012622307986021042, 0.006081513594835997, 0.01579926535487175, -0.008963897824287415, 0.019384825602173805, -0.021411996334791183, 0.006721339654177427, 0.014228207990527153, -0.016078000888228416, 0.032358720898628235, 0.03512074053287506, -0.002095271600410342, 0.035652872174978256, 0.012714164331555367, 0.04046740382909775, 0.019638221710920334, 0.025263620540499687, -0.020943213254213333, 0.0049095554277300835, 0.028203019872307777, 0.02167806215584278, -0.0028823839966207743, -0.04436970874667168, 0.02380659244954586, 0.0032070481684058905, -0.025846432894468307, 0.04447107017040253, 0.012403753586113453, -0.016078000888228416, -0.0015409669140353799, -0.004380590282380581, -0.003990993369370699, 0.018421918153762817, -0.01612868160009384, 0.0037819412536919117, 0.03689451515674591, 0.037654705345630646, 0.009375667199492455, -0.015634557232260704, 0.0270120557397604, -0.00492539256811142, 0.019992975518107414, 0.030508926138281822, 0.008989237248897552, 0.01768706925213337, 0.026834679767489433, -0.01431689690798521, 0.03398045897483826, -0.00630640285089612, 0.03785742074251175, 0.011364828795194626, -0.029875436797738075, 0.01780109666287899, 0.001997080398723483, 0.03453793004155159, -0.01007884182035923, 0.013468018732964993, 0.03823751583695412, 0.02286902442574501, -0.0052516404539346695, 0.02886185050010681, 0.01085170079022646, 0.007019080221652985, -0.019866278395056725, -0.008970232680439949, -0.05894000455737114, -0.005682414397597313, 0.013455349020659924, -0.01837123930454254, -0.02724011242389679, 0.0044724466279149055, -0.028937868773937225, -0.02523828111588955, 0.015773925930261612, -0.012828192673623562, -0.0006928807706572115, 0.023857271298766136, -0.0016660813707858324, 0.02782292477786541, 0.018459927290678024, -0.0261758491396904, -0.010389252565801144, 0.010066172108054161, 0.01745901256799698, 0.015507860109210014, -0.00831773690879345, -0.0031009383965283632, 0.030002133920788765, 0.015837274491786957, 0.012308729812502861, 0.010484276339411736, -0.02369256317615509, -0.0034050140529870987, 0.020943213254213333, -0.030508926138281822, -0.008571133017539978, -0.023122422397136688, 0.02756952866911888, 0.006867042742669582, -0.004269729368388653, -0.01042726170271635, 0.007481528911739588, 0.007082429248839617, 0.009831780567765236, -0.014874368906021118, 0.046624939888715744, -0.034461911767721176, 0.05802777782082558, 0.020930543541908264, 0.012118683196604252, -0.01852327771484852, 0.00902724638581276, 0.015191114507615566, -0.0017706073122099042, 0.02558036707341671, -0.030787663534283638, -0.008862539194524288, -0.01639474742114544, 0.02830437757074833, -0.0140254907310009, -0.03225736320018768, -0.010934054851531982, 0.002660662168636918, -0.04703037068247795, -0.0034968703985214233, -0.013037244789302349, 0.010864370502531528, 0.0004169162712059915, -0.015267133712768555, -0.03266279771924019, -0.02203281782567501, -0.027392150834202766, 0.005074263084679842, -0.0162680484354496, 0.008089680224657059, -0.007430849596858025, -0.01649610511958599, -0.003696419997140765, -0.017015568912029266, -0.020183023065328598, -0.025669055059552193, 0.0038611276540905237, 0.0003470342780929059, 0.012403753586113453, -0.02686001919209957, -0.006135360337793827, 0.0221595149487257, 9.24006017157808e-05, 0.018244540318846703, -0.014823689125478268, 0.002025587484240532, -0.015305142849683762, 0.02275499701499939, -0.007728590164333582, 0.039909932762384415, -0.013075253926217556, -0.00563173508271575, -0.011453517712652683, 0.010211874730885029, -0.04576339200139046, 0.019042739644646645, 0.002744599711149931, 0.0010975231416523457, 0.001060305628925562, -0.008368415758013725, 0.009496030397713184, -0.011364828795194626, 0.012467103078961372, -0.00551137188449502, 0.01326530147343874, -0.02403464913368225, 0.01591329462826252, 0.012004654854536057, -0.0024246869143098593, -0.001302615855820477, -0.004890550393611193, -0.007221797481179237, -0.011162111535668373, 0.0008267057710327208, -0.00598015496507287, -0.022780336439609528, -0.011447182856500149, 0.029089907184243202, -0.020955882966518402, -0.000585583271458745, -0.024085327982902527, -0.03028086945414543, 0.02523828111588955, 0.0018450425704941154, -0.009128605015575886, 0.007975651882588863, -0.025035563856363297, -0.03111707791686058, -0.0028047815430909395, 0.011827277019619942, 0.03192794695496559, 0.01557120867073536, 0.004295068792998791, -0.015343151986598969, -0.025757744908332825, 0.005942145828157663, 0.07272476702928543, -0.000772463099565357, -0.02038574032485485, 0.03740130737423897, 0.031750570982694626, -0.005660241935402155, 0.0122010363265872, -0.0012804437428712845, -0.03415783494710922, 0.0057996101677417755, -0.05807845667004585, 0.021247288212180138, 0.04490184411406517, -0.007633566856384277, -0.013594716787338257, -0.01384811382740736, 0.020081665366888046, 0.031649209558963776, 0.014012821018695831, 0.01484902948141098, 0.018231870606541634, -0.04229186102747917, 0.005543046165257692, -0.02204548753798008, 0.0034081817138940096, -0.005771102849394083, 0.0015045411419123411, 0.004133529029786587, -0.010047167539596558, 0.006179704796522856, -0.004481948912143707, 0.00645844079554081, -0.004795527085661888, 0.01625537872314453, 0.014177529141306877, -0.005245305597782135, 0.019726909697055817, 0.0007629607571288943, 0.021120591089129448, 0.01967623084783554, -0.01290421187877655, 0.004089184571057558, -0.013658066280186176, -0.010712333023548126, -0.0037154247984290123, 0.013227292336523533, -0.01838390901684761, 0.002044592285528779, 0.01603999175131321, 0.010281559079885483, 0.01837123930454254, 0.00031813126406632364, -0.014443594962358475, -0.013379329815506935, -0.02863379381597042, -0.0026274039410054684, 0.0009225212852470577, 0.0014720747712999582, -0.006867042742669582, 0.007563882507383823, -0.030356889590620995, 0.0289885476231575, -0.023831931874155998, -0.009654402732849121, -0.0036108987405896187, -0.021741410717368126, 0.028557773679494858, -0.010864370502531528, -0.01719294674694538, -0.03157319128513336, -0.007354830391705036, -0.029748737812042236, 0.006917721591889858, 0.03334696590900421, 0.01486169919371605, 0.023375818505883217, -0.0323333814740181, 0.010015493258833885, 0.0016787511995062232, -0.0066136461682617664, -0.009420011192560196, -0.01745901256799698, 0.004763852339237928, 0.0469290129840374, -0.03968187794089317, -0.020068995654582977, 0.011643564328551292, 0.0025751409120857716, 0.0004311698139645159, 0.03157319128513336, 0.027974963188171387, 0.013987481594085693, 0.007829949259757996, -0.01302457507699728, -0.017154935747385025, -0.004934894852340221, -0.010154861025512218, -0.029267285019159317, 0.005938978400081396, -0.002633738797158003, 0.03354968503117561, -0.0033226602245122194, -0.01968890056014061, 0.02782292477786541, -0.0050457557663321495, 0.013290640898048878, -0.015165775083005428, -0.0379587821662426, -0.019422834739089012, 0.021120591089129448, 0.005235803313553333, -0.018421918153762817, -0.0027984464541077614, -0.006331742741167545, -0.010452602058649063, -0.025136923417448997, 0.0176743995398283, -0.02523828111588955, -0.012397418729960918, 0.019498853012919426, -0.009553044103085995, -0.018193861469626427, 0.018548617139458656, 0.011624559760093689, 0.011681574396789074, 0.030458247289061546, -0.01090238057076931, 0.001373883569613099, -0.004934894852340221, -0.021893449127674103, 0.01455762330442667, -0.0009256887133233249, -0.018586626276373863, 0.02650526352226734, 0.011592885479331017, -0.023261789232492447, -0.009724087081849575, 0.006119523197412491, 0.016939548775553703, -0.00843810010701418, 0.016217369586229324, 0.0004074138996656984, 0.012752174399793148, -0.00795664731413126, -0.006087848450988531, 0.02746817097067833, -0.02853243425488472, 0.005400510970503092, -0.0035475497134029865, -0.00961005873978138, -0.02969805896282196, 0.01840924844145775, -0.012232711538672447, 0.04350816085934639, -0.024718819186091423, 0.017256295308470726, 0.011630894616246223, 0.013645396567881107, 0.022793006151914597, -0.004130361136049032, 0.002828537253662944, 0.008108684793114662, 0.0056158979423344135, -0.021310636773705482, 0.04102487862110138, -0.0029599866829812527, -0.00704442011192441, -0.0013247880851849914, -0.007931306958198547, 0.018548617139458656, -0.03499404340982437, -0.03339764475822449, 0.017040908336639404, 0.001219470170326531, -0.014658981934189796, -0.016331398859620094, 0.016242709010839462, 0.01815585233271122, -0.049234919250011444, -0.013632726855576038, -0.029495341703295708, 0.008507784456014633, -0.006350747309625149, -0.047790560871362686, -0.029647378250956535, -0.028355058282613754, -0.00045294605661183596, -0.02355319634079933, 0.06785956025123596, -0.025998471304774284, -0.009686077944934368, -0.02746817097067833, 0.01403816044330597, -0.010991068556904793, 0.04888016730546951, 0.0021982137113809586, -0.007025415077805519, 0.002747767139226198, 0.008761180564761162, 0.01279651839286089, -0.018434587866067886, -0.012150357477366924, 0.006860707420855761, 0.005904136225581169, 0.006645320449024439, -0.01565989851951599, -0.0030755987390875816, 0.0012566877994686365, 0.030610285699367523, -0.0031310291960835457, 0.004649823997169733, -0.0031151920557022095, 0.02579575404524803, 0.03220668435096741, 0.011358493939042091, -0.00377243896946311, -0.00043275355710648, 0.0029045562259852886, 0.009793770499527454, -0.033068232238292694, -0.015140434727072716, -0.0035285449121147394, 0.024440083652734756, -0.00836208090186119, -0.010243549942970276, 0.001385761541314423, 0.00783628411591053, 0.012986565940082073, 0.0175730399787426, 0.012745838612318039, 0.013974811881780624, 0.016116011887788773, -0.01661013439297676, 0.02404731884598732, 0.004545297939330339, -0.00560006033629179, 0.015938634052872658, 0.018586626276373863, -0.021259957924485207, -0.0188780315220356, -0.003743931883946061, -0.0010096263140439987, -0.014012821018695831, -0.004488283768296242, -0.015735916793346405, 0.028684472665190697, 0.016774842515587807, -0.015824604779481888, -0.020563118159770966, -0.018903370946645737, -0.00807701051235199, -0.036717139184474945, 0.020068995654582977, -0.015457180328667164, 0.04102487862110138, -0.020119674503803253, 0.004611814394593239, -0.026454584673047066, 0.0041081891395151615, -0.03428453207015991, -0.025250950828194618, -0.01384811382740736, 0.018067164346575737, -0.007449854165315628, 0.0016486603999510407, 0.029622038826346397, -0.0063127377070486546, -0.02756952866911888, -0.017395662143826485, 0.022678978741168976, 0.006471110507845879, -0.033422984182834625, -0.01816852204501629, -0.000977159827016294, -0.032840173691511154, 0.02640390582382679, 0.02098122239112854, -0.024364063516259193, 0.020892532542347908, 0.018916040658950806, -0.01097206398844719, 0.006683330051600933, -0.01826987974345684, 0.011884291656315327, 0.03740130737423897, 0.008811860345304012, -0.01567256823182106, 0.01778842695057392, 0.027898943051695824, -0.013582047075033188, 0.008868874050676823, 0.022210193797945976, -0.005172454286366701, 0.0017595213139429688, 0.019397495314478874, 0.04295068979263306, 0.016952218487858772, 0.03169988840818405, 0.0014079337706789374, -0.004491451196372509, -0.009705082513391972, 0.002731929998844862, 0.019042739644646645, 0.007981986738741398, -0.018928710371255875, -0.01101007405668497, 0.011700578965246677, 0.031066399067640305, 0.010801021941006184, -0.011523201130330563, -0.019828269258141518, -0.012682490050792694, -0.015406501479446888, -0.03382841870188713, 0.021120591089129448, 0.012536787427961826, -0.00046324028517119586, -0.022222865372896194, 0.01408884022384882, 0.031877268105745316, 0.008140359073877335, -0.00563173508271575, 0.018472597002983093, -0.029267285019159317, 0.07794473320245743, -0.020791174843907356, -0.00754487793892622, -0.01161189004778862, -0.016648143529891968, 0.014963057823479176, 0.018827352672815323, -0.012308729812502861, 0.04715707153081894, -0.021754080429673195, -0.01662280410528183, 0.013898792676627636, 0.004551632795482874, 0.02076583541929722, 0.0175730399787426, -0.007715920452028513, -0.0031341968569904566, -0.004966569598764181, 0.0016375742852687836, 0.02901388891041279, -0.01686353050172329, 0.02156403474509716, 0.0297233983874321, 0.01107975747436285, -0.03207998350262642, 0.008343076333403587, 0.04705571383237839, 0.02228621393442154, 0.007399174850434065, 0.008343076333403587, 0.02264096774160862, 0.007316821254789829, 0.007671575993299484, -0.018307890743017197, 0.017991144210100174, -0.015938634052872658, -0.017142266035079956, 0.037299949675798416, -0.0016344067407771945, 0.007595557253807783, 0.036032967269420624, -0.020018314942717552, 0.005232635885477066, -0.00884986948221922, 0.00325614376924932, 0.014506944455206394, 0.0056063951924443245, 0.00016728122136555612, -0.012549457140266895, -0.0035158751998096704, -0.003724927082657814, -0.03854159265756607, -0.02840573713183403, -0.005295984912663698, -0.027848264202475548, 0.03631170466542244, 0.01733231358230114, -0.03121843747794628, 0.019372155889868736, -0.05301052704453468, 0.022932374849915504, -0.01073133759200573, 0.013873453252017498, -0.014215538278222084, 0.02698671631515026], [0.010153756476938725, 0.01021360233426094, 0.0552704818546772, 0.04638677462935448, -0.024350397288799286, 0.04651976749300957, -0.026584623381495476, 0.012261642143130302, 0.0020214421674609184, 0.07101645320653915, -0.038593586534261703, -0.0014778469922021031, 0.0011196063132956624, 0.03165152668952942, -0.031119568273425102, 0.009794685058295727, 0.01351174432784319, 0.03375276178121567, -0.007075047120451927, -0.000501204573083669, 0.08048531413078308, 0.019216999411582947, -0.04253007844090462, -0.019895246252417564, -0.06372862309217453, -0.059366561472415924, 0.029497096315026283, 0.005439274944365025, 0.03774245083332062, -0.06612243503332138, 0.08681561797857285, -0.034098535776138306, 0.013551641255617142, -0.023898232728242874, -0.009940973483026028, -0.03050781600177288, -0.030933383852243423, -0.0220496766269207, 0.006536439526826143, 0.021916687488555908, 0.022594934329390526, -0.008165562525391579, -0.007686799392104149, -0.022009780630469322, -0.038407400250434875, 0.06692036986351013, -0.02046710066497326, -0.0708036720752716, 0.019044112414121628, 0.013438600115478039, 0.026730911806225777, 0.05191914364695549, 0.013591538183391094, -0.06340944766998291, 0.011064735241234303, 0.03566781431436539, 0.020653286948800087, 0.03646575286984444, 0.03404533863067627, -0.03205049782991409, -0.022129470482468605, -0.017927000299096107, -0.003070397535338998, 0.013950610533356667, 0.007148191798478365, 0.01469535194337368, -0.01948297768831253, 0.024044521152973175, -0.039870284497737885, -0.01407030038535595, 0.05383419618010521, 0.04260987043380737, 0.019908545538783073, -0.0268373042345047, -0.01594545505940914, -0.012574167922139168, -0.05543006956577301, 0.02461637742817402, 0.0006441684090532362, -0.017940297722816467, -0.05029667168855667, 0.03404533863067627, -0.017315248027443886, 0.011796178296208382, 0.04314183071255684, -0.003657214343547821, -0.06021769717335701, -0.009162983857095242, -0.029603486880660057, -0.018951019272208214, -0.012481074780225754, 0.016504010185599327, -0.06676078587770462, 0.05032327026128769, 0.04630698263645172, -0.02861936390399933, 0.044498324394226074, -0.02460307814180851, -0.02062668837606907, 0.03417833149433136, -0.01982875168323517, -0.026464931666851044, -0.026278747245669365, 0.033965546637773514, 0.010040715336799622, -0.05319584533572197, -0.0034577299375087023, 0.03548162803053856, 0.004524971358478069, -0.007168139796704054, -0.003770255483686924, -0.05255749449133873, 0.007447418291121721, 0.07128243148326874, -0.020506998524069786, -0.011716384440660477, -0.047849662601947784, -0.004790950566530228, 0.021491121500730515, 0.03598698973655701, -0.052770279347896576, -0.015280506573617458, 0.032369669526815414, -0.07356984913349152, 0.02107885293662548, -0.02685060165822506, -0.004332136362791061, -0.009448911994695663, -0.04580162093043327, -0.034098535776138306, 0.048461414873600006, -0.024576479569077492, 0.04585481807589531, -0.0706440806388855, -0.017980195581912994, -0.0220496766269207, -0.022129470482468605, -0.019363287836313248, -0.007081696763634682, -0.012414580211043358, 0.02669101394712925, 0.02718307636678219, 0.008245355449616909, 0.04154595360159874, -0.07793191075325012, 0.010566024109721184, 0.0036605389323085546, 0.043700385838747025, 0.008923603221774101, -0.004258992150425911, -0.006725949700921774, 0.04614739492535591, -0.038088224828243256, -0.004618064034730196, 0.009940973483026028, 0.011609992943704128, 0.010805405676364899, 0.06665439158678055, 0.019602669402956963, 0.007088346406817436, -0.009648396633565426, -0.017474835738539696, -0.015187413431704044, 0.0012891680235043168, 0.009561953134834766, 0.019137205556035042, -0.0454026535153389, 0.03037482686340809, -0.04723791033029556, -0.028087405487895012, -0.029683280736207962, -0.02490895427763462, -0.04362059384584427, -0.004797600209712982, -0.022967305034399033, -0.05824945122003555, -0.00499043520539999, -0.010732261463999748, 0.021943286061286926, 0.013412002474069595, 0.004741079639643431, 0.023539161309599876, -0.0967632383108139, -0.039710696786642075, -0.024376995861530304, 0.06027089059352875, -0.015546485781669617, 0.008750716224312782, -0.0406150259077549, 0.006739248521625996, 0.019403183832764626, 0.034763485193252563, 0.03066740371286869, 0.03367296978831291, -0.01837916485965252, 0.027768230065703392, -0.032821834087371826, -0.016091743484139442, 0.005156672094017267, -0.037316884845495224, 0.03130575269460678, -0.03925853222608566, 0.05782388150691986, -0.016863083466887474, -0.024536583572626114, -0.011749631725251675, -0.03228987753391266, 0.011623292230069637, 0.024869056418538094, -0.06074965372681618, 0.0066528054885566235, -0.02506854198873043, 0.004451827146112919, 0.015293804928660393, -0.00845813937485218, 0.0020846121478825808, -0.05130739137530327, 0.028167199343442917, 0.0019084009109064937, 0.03710409998893738, -0.00047377549344673753, -0.00265646749176085, 0.01101818960160017, -0.036997709423303604, -0.05159996822476387, -0.005928012076765299, 0.010319993831217289, -0.06372862309217453, -0.005246439948678017, -0.07192078232765198, 0.030241837725043297, 0.01662370190024376, 0.01046628225594759, -0.02316679060459137, -0.017966896295547485, -0.04665275663137436, -4.545543197309598e-05, -0.027688436210155487, -0.007254583295434713, 0.020320812240242958, 0.038886163383722305, -0.02554730512201786, 0.024523284286260605, 0.006855614483356476, 0.01093174610286951, 0.0006184016820043325, -0.001043968484736979, -0.05356821417808533, 0.042104512453079224, 0.046572960913181305, 0.0478762611746788, 0.04202471673488617, 0.0738358348608017, -0.034284722059965134, -0.025494107976555824, 0.005066904239356518, 0.0008478087838739157, -0.048355020582675934, 0.0030238511972129345, -0.007101645227521658, -0.02843317948281765, -0.0009874479146674275, 0.011683137156069279, -0.0022309008054435253, -0.03973729535937309, -0.02779482863843441, -0.004963837098330259, 0.007773242890834808, -0.025826582685112953, 0.05292986333370209, -0.04425894096493721, 0.03415173292160034, 0.016331125050783157, -0.0462803840637207, -0.07213356345891953, 0.02939070388674736, -0.006110872607678175, -0.017767412588000298, -0.012181848287582397, -0.04534945636987686, -0.038274411112070084, -0.013924011960625648, 0.004079456441104412, -0.038593586534261703, 0.005801671650260687, 0.028060806915163994, -0.01007396262139082, 0.018259473145008087, -0.02013462781906128, 0.00806581974029541, 0.06606923788785934, 0.014469269663095474, 0.01839246228337288, -0.012421229854226112, 0.03223668038845062, 0.025786684826016426, 0.003304791869595647, -0.006686052773147821, 0.01630452647805214, -0.009222829714417458, 0.04237049072980881, 0.03875317424535751, 0.0008012623875401914, -0.04505687952041626, -0.04197151958942413, 0.014628857374191284, -0.003022188786417246, -0.011470354162156582, -0.03486987575888634, -0.01046628225594759, -0.02443019114434719, 0.05691955238580704, -0.0271298810839653, -0.05638759583234787, -0.06777150183916092, 0.00335133820772171, 0.003160165622830391, 0.03973729535937309, 0.016171537339687347, 0.015932155773043633, 0.009575252421200275, -0.005785048007965088, 0.035534825176000595, 0.00030026561580598354, 0.014908134937286377, -0.03215688839554787, -0.029177920892834663, 0.04518986865878105, -0.01903081312775612, -0.018658442422747612, -0.023605655878782272, 0.004717806354165077, 0.0150145273655653, -0.0008320162305608392, -0.015878958627581596, 0.0012226732214912772, -0.03630616515874863, 0.047849662601947784, -0.005003734026104212, 0.03502946346998215, -0.00459479121491313, -0.03718389570713043, -0.01645081490278244, 0.026012767106294632, -0.027395859360694885, 0.04566863179206848, 0.015466691926121712, 0.01198901329189539, 0.005585563834756613, 0.05883460491895676, 0.021118750795722008, 0.029470497742295265, -0.04678574576973915, -0.00017589953495189548, -0.07192078232765198, 0.003259907942265272, 0.010532776825129986, 0.0012783625861629844, -0.016823185607790947, 0.013219167478382587, -8.062495180638507e-05, -0.009202880784869194, 0.02282101660966873, 0.02556060254573822, 0.033779360353946686, -0.02923111617565155, -0.03165152668952942, 0.0056321099400520325, 0.026770807802677155, -0.046892136335372925, 0.006592960096895695, 0.04667935147881508, 0.01915050484240055, 0.01583906263113022, 0.0038001781795173883, -0.019416483119130135, 0.0013174283085390925, 0.02058679237961769, -0.004378682933747768, 0.02314019203186035, 0.01444267202168703, 0.03694451227784157, 0.009801334701478481, 0.012534270994365215, 0.00998087041079998, 0.03125255927443504, -0.02875235304236412, -0.03359317407011986, -0.009482159279286861, 0.011875972151756287, 0.0005801671650260687, 0.00807911902666092, -0.04396636411547661, 0.04072142019867897, -0.03561461716890335, 0.020241018384695053, 0.029630085453391075, 0.015081021934747696, 0.03726368770003319, 0.0156661756336689, 0.015120918862521648, -0.06575006246566772, -0.012048859149217606, 0.017674319446086884, -0.0443919338285923, -0.00967499427497387, -0.0462803840637207, 0.002511841244995594, -0.012753703631460667, 0.008059170097112656, 0.01836586557328701, 0.00335133820772171, 0.06149439513683319, 0.008072469383478165, 0.014482568949460983, -0.0036605389323085546, -0.049259353429079056, 0.03550822660326958, -0.02827359177172184, -0.03143874555826187, 0.03449750319123268, 0.03739667683839798, 0.011703086085617542, -0.002046377630904317, -0.03167812526226044, 0.04295564442873001, 0.04300884157419205, -0.01774081401526928, -0.026092560961842537, -0.08048531413078308, -0.01206215750426054, 0.021690605208277702, 0.02525472640991211, 0.020320812240242958, -0.03367296978831291, -0.022076275199651718, 0.025520706549286842, 0.013119424693286419, 0.015214011073112488, -0.040162861347198486, -0.0013032981660217047, -0.0046579609625041485, 0.01852545328438282, -0.009648396633565426, -0.005346182268112898, 0.021810296922922134, 0.0042024715803563595, 0.025174932554364204, 0.0008985110325738788, 0.006253836210817099, -0.020892668515443802, -0.003379598492756486, -0.03646575286984444, 0.0028409906663000584, -0.030428022146224976, -0.01438947580754757, 0.020241018384695053, -0.05362141132354736, 0.03949791565537453, -0.028699157759547234, 0.016091743484139442, 0.04886038228869438, 0.054685328155756, 0.05380759760737419, 0.007653552107512951, -0.026119159534573555, -0.013684631325304508, -0.022954007610678673, -0.0005269713583402336, -0.029975857585668564, -0.005422651302069426, -0.020493699237704277, -0.013485146686434746, -0.022435346618294716, 0.021637409925460815, -0.00829855166375637, 0.003663863753899932, -0.05340862646698952, 0.0070617482997477055, -0.022422049194574356, 0.03215688839554787, 0.06101563200354576, -0.0584622323513031, -0.042210903018713, 0.03654554486274719, 0.019416483119130135, 0.041944924741983414, -0.002711325651034713, 0.0033180906902998686, -0.008950200863182545, -0.027369262650609016, 0.010187003761529922, 0.007134892512112856, -0.015147516503930092, 0.012899992056190968, -0.0017022669780999422, -0.0348166786134243, -0.022608233615756035, 0.029124725610017776, -0.003584069898352027, 0.01061257068067789, -0.06420738250017166, 0.00459479121491313, 0.009714891202747822, 0.019881946966052055, -0.01428308431059122, 0.008085768669843674, -0.006842315662652254, -0.04183853045105934, 0.021929986774921417, -0.04548244550824165, 0.02267472818493843, 0.018286071717739105, 0.011390560306608677, -0.013531693257391453, 0.00711494404822588, 0.033460184931755066, -0.00797272752970457, -0.056653574109077454, 0.014921434223651886, -0.0035474977921694517, -0.036359358578920364, 0.016065144911408424, 0.015559784136712551, -0.036997709423303604, 0.012880044057965279, 0.005505769979208708, -0.05003068968653679, -0.017927000299096107, 0.01541349571198225, 0.020360710099339485, -0.029124725610017776, -0.024842459708452225, 0.022089574486017227, -0.007380923256278038, 0.0009242778178304434, -0.01014045812189579, 0.0052065434865653515, -0.003933167550712824, -0.034258123487234116, 0.02319338731467724, -0.006140795070677996, 0.012673909775912762, 0.013046280480921268, -0.005575589369982481, -0.0021727178245782852, 0.0002312772412551567, 0.03869997709989548, 0.007653552107512951, 0.018405761569738388, 0.010685714893043041, 0.01407030038535595, 0.010725611820816994, -0.015519887208938599, 0.0002850964665412903, 0.004840821959078312, 0.009595200419425964, -0.043540798127651215, 0.023206686601042747, -0.005445924587547779, -0.028060806915163994, 0.027395859360694885, -0.007201387546956539, 0.012713806703686714, -0.013684631325304508, 0.012434528209269047, 0.001400546869263053, 0.015147516503930092, -0.015333701856434345, -0.005638759583234787, 0.0014288071542978287, -6.792340627725935e-06, 0.004973811563104391, -0.006336954887956381, 0.025773387402296066, 0.02716977708041668, 0.016025248914957047, -0.05808986350893974, 0.029337508603930473, 0.026105860248208046, -0.023219985887408257, 0.03862018138170242, -0.02605266496539116, -0.02329977974295616, -0.019682463258504868, 0.007966077886521816, -0.013345506973564625, -0.023911532014608383, -0.03928513079881668, 0.023366274312138557, 0.029204517602920532, 0.003973064478486776, -0.015400197356939316, 0.003341363975778222, -0.009083190001547337, 0.03627956658601761, -0.008664272725582123, -0.0016640324611216784, -0.0012259979266673326, 0.011483652517199516, 0.0027678462211042643, -0.0156661756336689, -0.02702348865568638, 0.01996174082159996, -0.03207709267735481, 0.010758859105408192, 0.015027825720608234, 0.0034045339561998844, 0.049897700548172, 0.010226900689303875, 0.033274002373218536, 0.01567947492003441, -0.02159751206636429, -0.03981709107756615, 0.002639843849465251, 0.018578648567199707, -0.030428022146224976, -0.0037735803052783012, -0.004062832798808813, -0.019230296835303307, -0.03622636944055557, 0.007952778600156307, 0.0024120991583913565, -0.027741633355617523, -0.010180355049669743, -0.0032266604248434305, -0.02361895516514778, -0.011802827939391136, -0.006443346850574017, 0.00035179906990379095, -0.03678492456674576, 0.004724455997347832, -0.0069021605886518955, -0.03737008199095726, 0.0034743535798043013, 0.008537933230400085, -0.009601850062608719, -0.015240609645843506, 0.004062832798808813, 0.00933587085455656, 0.03157173469662666, 0.03548162803053856, 0.03798183426260948, -0.025321220979094505, 0.016876380890607834, 0.03439111262559891, -0.0013639746466651559, 0.02061338908970356, -0.006699351593852043, 0.01723545417189598, 0.005785048007965088, -0.012008962221443653, -0.019895246252417564, -0.012953188270330429, 0.027582045644521713, 0.005977883003652096, -0.030108848586678505, 0.018472256138920784, 0.0029157972894608974, 0.042077913880348206, -0.044019561260938644, 0.02888534404337406, -0.0073410263285040855, 0.03702430799603462, 0.034577298909425735, -0.0024137613363564014, 0.04630698263645172, -0.012215095572173595, -0.0015601343475282192, 0.003401209367439151, -0.06069645658135414, 0.009395715780556202, 0.05029667168855667, -0.01284679677337408, -0.009508756920695305, -0.026331942528486252, -0.009329221211373806, 0.015599681064486504, -0.024855758994817734, 0.040003273636102676, -0.0329282283782959, 0.0004170470929238945, -0.0316249281167984, 0.00642339838668704, 0.011317416094243526, -0.021836893633008003, 0.02299390360713005, -0.018977617844939232, -0.012314838357269764, 0.030880186706781387, 0.016716793179512024, 0.027582045644521713, -0.002169393002986908, 0.014788445085287094, 0.023406172171235085, 0.06521810591220856, 0.01263401284813881, 0.018432360142469406, -0.03952451050281525, -0.09043293446302414, 0.021491121500730515, 0.0138176204636693, -0.03417833149433136, -0.04872739315032959, -0.044312138110399246, -0.01613163948059082, -0.026571324095129967, -0.009901076555252075, 0.06021769717335701, -0.011211024597287178, -0.007673500571399927, -0.006240537390112877, -0.055696047842502594, -0.020653286948800087, 0.006406774278730154, 0.013950610533356667, 0.0056952801533043385, -0.017607824876904488, -0.023446068167686462, 0.017315248027443886, -0.03447090834379196, 0.041146986186504364, -0.05362141132354736, -0.0007621967233717442, 0.013791022822260857, 0.0004700351564679295, 0.005994506645947695, 0.024376995861530304, 0.003760281251743436, 0.0008611077209934592, 0.034763485193252563, -0.0023356301244348288, 0.007174789439886808, 0.007021851371973753, -0.020174523815512657, 0.015745969489216805, -0.03925853222608566, 0.0019084009109064937, -0.022156069055199623, -0.001911725616082549, -0.00973483920097351, -0.03034822829067707, -0.010433034971356392, -0.018645143136382103, 0.023366274312138557, -0.0030870214104652405, 0.010891849175095558, 0.03048121929168701, 0.04875399172306061, 0.021477822214365005, -0.012055507861077785, 0.011563446372747421, -0.023579057306051254, -0.018618544563651085, 0.014775145798921585, 0.016264628618955612, -0.009342520497739315, 0.019443081691861153, -0.006433372385799885, 0.021943286061286926, -0.009488808922469616, 0.00831185095012188, -0.008085768669843674, 0.016650298610329628, 0.029497096315026283, -0.012501023709774017, -0.00662953220307827, -0.015759268775582314, 0.03979049250483513, 0.007593706715852022, -0.009003397077322006, 0.005465873051434755, 0.004970486741513014, 0.03141214698553085, 0.021690605208277702, -0.01787380315363407, -0.012115353718400002, 0.009216180071234703, -0.006988604087382555, 0.0050802030600607395, 0.02474936656653881, 0.00016218498058151454, -0.015493289567530155, -0.018339267000555992, 0.016676897183060646, 0.025666994974017143, -0.005575589369982481, -0.031704723834991455, 0.003213361371308565, 0.015852361917495728, -0.03981709107756615, 0.0013224154245108366, -0.021371429786086082, -0.01676999032497406, -0.030587609857320786, 0.0018169705290347338, 0.020201122388243675, -0.05473852530121803, -0.0501902773976326, 0.027395859360694885, -0.022714626044034958, -0.005306285340338945, -0.005509094800800085, 0.006164068356156349, 0.10080612450838089, -0.00385669874958694, -0.04237049072980881, -0.0010963331442326307, -0.006503191776573658, -0.010113859549164772, -0.03197070211172104, 0.026930395513772964, -0.005585563834756613, 0.00789958331733942, -0.007839737460017204, 0.00983458198606968, 0.022475244477391243, -0.003620642237365246, -0.003657214343547821, 0.015719372779130936, 0.009681643918156624, -0.003943142015486956, 0.005283012054860592, -0.005804996471852064, 0.017847206443548203, -0.005771749187260866, 0.01198901329189539, -0.002443684032186866, -0.006719300057739019, -0.009049942716956139, 0.014974630437791348, 0.0018884524470195174, 0.014455970376729965, 0.01141715794801712, -0.00311860628426075, -0.024523284286260605, -0.024802561849355698, -0.020480399951338768, 0.010266797617077827, 8.124834130285308e-05, 0.04141296446323395, -0.008471437729895115, -0.04904656857252121, -0.03596039116382599, -0.0322100855410099, -0.016863083466887474, 0.010353241115808487, 0.030906785279512405, -0.013505094684660435, 0.005874815862625837, -0.014721949584782124, -0.035561420023441315, -0.00771339749917388, -0.03114616684615612, 0.0034976268652826548, -0.02106555365025997, 0.005781723186373711, -0.0247360672801733, 0.013804321177303791, -0.0020646636839956045, -0.0038301008753478527, 0.003594044130295515, 0.008378345519304276, -0.001528549357317388, 0.020520297810435295, -0.0016183173283934593, 0.027528848499059677, -0.009369118139147758, 0.030268436297774315, -0.016198134049773216, 0.02728946879506111, -0.011729683727025986, 0.014189991168677807, -0.0023389547131955624, -0.024004625156521797, -0.040668223053216934, -0.04029585048556328, 0.017341844737529755, 0.03694451227784157, 0.022634832188487053, -0.004538270644843578, 0.03127915784716606, 0.03101317770779133, 0.02060008980333805, -0.04024265706539154, -0.004172549117356539, -0.020799575373530388, 0.04125337675213814, 0.05034986510872841, -0.01046628225594759, -0.01166983786970377, 0.01578586734831333, 0.02443019114434719, 0.025946272537112236, 0.010093911550939083, 0.02347266674041748, -0.04476430267095566, 0.013697929680347443, 0.00385669874958694, -0.001595875364728272, -0.04886038228869438, -0.019057411700487137, 0.0057584503665566444, 0.0028243667911738157, 0.0023589031770825386, -0.005249764770269394, 0.01775411330163479, 0.0009334208443760872, 0.032662250101566315, 0.004332136362791061, 0.04659955948591232, -0.01071896217763424, -0.027981014922261238, -0.008724118582904339, 0.023698749020695686, -0.004242368508130312, 0.0007414170540869236, -0.004338786005973816, 0.024017924442887306, -0.0005573095986619592, 0.059685736894607544, -0.007148191798478365, 0.025121737271547318, 0.0004845809016842395, 0.028805550187826157, 0.013451899401843548, 0.01055272575467825, 0.022661428898572922, 0.0121486010029912, -0.046253785490989685, -0.012122003361582756, 0.022634832188487053, 0.027927817776799202, 0.06101563200354576, -0.011171127669513226, 0.003057098714634776, -0.005672006867825985, 0.006227238569408655, 0.020094729959964752, -0.01532040350139141, -0.005638759583234787, 0.005495795514434576, 0.012587466277182102, -0.0390191525220871, 0.009229479357600212, -0.012314838357269764, -0.011849374510347843, 0.02332637831568718, 0.016557207331061363, 0.0020812873262912035, 0.04284925386309624, -0.032662250101566315, 0.013525043614208698, 0.0017870479496195912, -0.04854120686650276, -0.012155250646173954, 0.01743493787944317, 0.007407521363347769, 0.023725345730781555, -0.004086105618625879, 0.02380513958632946, 0.02318008989095688, 0.020693182945251465, -0.025999469682574272, 0.04795605316758156, 0.03255585581064224, 0.005073553416877985, -0.023206686601042747, -0.0507754348218441, 0.03465709090232849, -0.030614208430051804, -0.01788710243999958, 0.06144120171666145, 0.015200712718069553, -0.0022192641627043486, -0.004441853147000074, 0.019429782405495644, 0.0003210452268831432, 0.009914375841617584, -0.0018036715919151902, -0.004258992150425911, 0.029816269874572754, 0.03335379436612129, 0.0018818030366674066, -0.0027545474004000425, 0.022408749908208847, 0.016051845625042915, 0.018578648567199707, 0.022129470482468605, 0.010898498818278313, 0.034098535776138306, -0.018964318558573723, 0.007307779043912888, 0.01238133292645216, -0.010838652960956097, 0.047211311757564545, 0.02219596691429615, -0.026903798803687096, 0.006752547342330217, 0.024589778855443, 0.03558801859617233, 0.009701591916382313, 0.004162574652582407, 0.019615966826677322, 0.007853036746382713, 0.011729683727025986, 0.024204108864068985, 0.012740404345095158, -0.013791022822260857, -0.017381742596626282, -0.01627792790532112, -0.008930251933634281, -0.0017222154419869184, 0.0050170328468084335, -0.027768230065703392, 0.004827522672712803, 0.00168730563018471, -0.04604100435972214, -0.039045751094818115, -0.008511334657669067, -0.008012624457478523, 0.02699689008295536, 0.01557308342307806, -0.007487315218895674, 0.0215443167835474, 0.009801334701478481, -0.02222256362438202, 0.0018701663939282298, 0.05402037873864174, -0.0033446887973695993, 0.014043702743947506, 0.01788710243999958, -0.002189341466873884, 0.026956994086503983, 0.010353241115808487, 0.025148335844278336, -0.010964993387460709, 0.01645081490278244, -0.02170390449464321, 0.017195556312799454, -0.0156661756336689, -0.03479008376598358, -0.03798183426260948, 0.05798346921801567, 0.03069400228559971, -0.00778654171153903, -0.01005401462316513, -0.007254583295434713, -0.00845813937485218, 0.012055507861077785, 0.0029207842890173197, 0.03654554486274719, -0.03963090479373932, 0.018272772431373596, 0.014788445085287094, -0.017634421586990356, -0.03492307290434837, 0.002711325651034713, 0.0051433732733130455, 0.02173050306737423, 0.00711494404822588, -0.03577420487999916, -0.013611486181616783, -0.010020767338573933, 0.013910713605582714, 0.005861517041921616, -0.03678492456674576, 0.04407275840640068, 0.032183486968278885, -0.0024519958533346653, 0.007573758251965046, 0.008165562525391579, -0.017634421586990356, 0.022142769768834114, 0.015865661203861237, 0.014336279593408108, -0.02028091624379158, -0.0002711741253733635, -0.007560459431260824, 0.024150913581252098, -0.02218266762793064, -0.010486231185495853, 0.00491729099303484, -0.018312670290470123, -0.021969882771372795, -0.030162043869495392, -0.01775411330163479, 0.006922109052538872, -0.0030288384296000004, -0.006323656067252159, -0.03768925741314888, 0.013225817121565342, 0.02413761429488659, 0.009415664710104465, -0.012141951359808445, 0.010798756033182144, 0.015293804928660393, 0.012281590141355991, -0.014495867304503918, 0.009841231629252434, 0.0134917963296175, 0.006376851815730333, 0.008923603221774101, -0.04106719046831131, 0.033008020371198654, -0.008717468939721584, 0.004581491928547621, 0.011510251089930534, 0.02474936656653881, 0.017208855599164963, -0.01261406484991312, -0.004727780818939209, 0.007653552107512951, -0.01159669365733862, 0.0029739802703261375, 0.0022641480900347233, -0.01946967840194702, 0.0021195218432694674, 0.006393475458025932, 0.0033463509753346443, -0.003288168227300048, -0.01887122541666031, -0.04229069501161575, -0.008178860880434513, 0.027608642354607582, 0.003015539376065135, -0.001906738500110805, 0.021491121500730515, 0.029177920892834663, -0.015094321221113205, 0.012993085198104382, -0.02909812703728676, -0.00714154215529561, 0.0051932442001998425, -0.0020330785773694515, 0.013032982125878334, -0.012560868635773659, -0.045615434646606445, -0.0122948894277215, -0.029789673164486885, -0.007208036724478006, 0.01627792790532112, 0.007932830601930618, -0.005605512298643589, -0.003886621445417404, 0.003956440836191177, 0.016570504754781723, 0.07239954173564911, -0.012008962221443653, -0.0004272291262168437, 0.016011949628591537, 0.04585481807589531, -0.012088755145668983, 6.478048453573138e-05, 0.020187823101878166, -0.0019516225438565016, -0.010293396189808846, -0.0469985269010067, 0.020892668515443802, 0.024829160422086716, -0.010559375397861004, -0.016198134049773216, -0.010280096903443336, 0.016424216330051422, 0.04008306935429573, 0.018325967714190483, 0.010047364979982376, -0.004415255039930344, -0.03790203854441643, -0.010040715336799622, -0.01429638359695673, -0.0156661756336689, -0.012354735285043716, 0.00535948108881712, 0.006061001680791378, 0.012042209506034851, 0.012860095128417015, 0.00203474098816514, 0.0017704241909086704, -0.0033496757969260216, 0.015519887208938599, -0.018911123275756836, -0.019044112414121628, 0.005219842307269573, -0.011929168365895748, 0.009315921925008297, 0.003078709589317441, -0.021969882771372795, -0.002114534843713045, -0.013684631325304508, -0.007932830601930618, 0.006882212124764919, 0.024656273424625397, -0.01933668926358223, -0.029337508603930473, -0.006287083961069584, -0.01627792790532112, 0.00494721345603466, 0.014495867304503918, -0.03957770764827728, -0.02428390271961689, -0.043992962688207626, 0.015027825720608234, -0.00010930083954008296, -0.010167055763304234, -0.01611834019422531, -0.020028235390782356, 0.02697029337286949, 0.019722359254956245, -0.03880636766552925, 0.025440912693738937, -0.0018219576450064778, 0.018259473145008087, -0.00025101788924075663, -0.014416073448956013, -0.014110197313129902, -0.009608499705791473, -0.018325967714190483, -0.03173132240772247, 0.023047098889946938, 0.012102054432034492, -0.0018601921619847417, 0.033167608082294464, -0.005525718443095684, 0.01037319004535675, -0.018325967714190483, -0.00854458287358284, -0.04303543642163277, 0.0022525114472955465, 0.015865661203861237, 0.028512973338365555, -0.020068131387233734, 0.02349926345050335, 0.00918958242982626, 0.02667771652340889, -0.0060743005014956, 0.0654308870434761, -0.002608258742839098, -0.016663597896695137, 0.023259883746504784, 0.013146023266017437, 0.00483084749430418, 0.012095404788851738, -0.026438334956765175, -0.006722624879330397, 0.0020280915778130293, -0.010200303047895432, 0.036971110850572586, 0.004471775609999895, 0.0036705131642520428, 0.019735658541321754, -0.023579057306051254, 0.010891849175095558, -0.005163321737200022, -0.03005565144121647, 0.004332136362791061, -0.01869833841919899, 0.0070617482997477055, -0.012082106433808804, 0.04550904408097267, -0.018658442422747612, -0.013192569836974144, -0.013777723535895348, 0.0011719709727913141, -0.015466691926121712, -0.011935818009078503, 0.00871081929653883, -0.018166380003094673, -0.020214421674609184, 0.016344422474503517, 0.015612980350852013, 0.013830919750034809, 0.03912554308772087, -0.011058086529374123, 0.034736886620521545, 0.008631025440990925, 0.01583906263113022, -0.004139301832765341, -0.0064134239219129086, 0.005086852703243494, -0.009522056207060814, -0.022555038332939148, 0.02316679060459137, -0.007886284030973911, 0.005901413969695568, -0.0014038715744391084, 0.00829855166375637, 0.010080612264573574, 0.01341865211725235, 0.008823860436677933, -0.023366274312138557, -0.007560459431260824, -0.017208855599164963, 0.011410508304834366, -0.01309947669506073, -0.018897823989391327, 0.0010115521727129817, -0.025653695687651634, 0.004352084826678038, 0.014003805816173553, 0.045588839799165726, 0.02238215133547783, -0.027901221066713333, -0.008557881228625774, -0.01149030216038227, 0.004285590257495642, -0.012873394414782524, 0.017993494868278503, 0.018937719985842705, -0.0050635794177651405, 0.005652058403939009, 0.029124725610017776, -0.02586647868156433, -0.00494721345603466, 0.02138472907245159, 0.003873322391882539, -0.0066228825598955154, -0.01413679588586092, -0.017168959602713585, 0.0435141995549202, 0.0212517399340868, -0.03976389393210411, -0.020374007523059845, -0.005273038055747747, 0.007759943604469299, -0.056653574109077454, -0.006642831023782492, 0.017222154885530472, 0.019576070830225945, -0.015214011073112488, -0.017168959602713585, 0.00381347700022161, -0.01213530171662569, 0.01919040083885193, -0.004139301832765341, 0.013711228966712952, 0.003181776497513056, 0.013219167478382587, 0.00503365695476532, 0.029576890170574188, -0.01342530082911253, 0.021304935216903687, -0.04585481807589531, 0.010333293117582798, 0.01583906263113022, 0.030454620718955994, 0.010679066181182861, 0.002410436747595668, -0.018086586147546768, -0.008498036302626133, -0.03130575269460678, -0.012574167922139168, -0.013378755189478397, 0.0015842387219890952, 0.01236803364008665, 0.010153756476938725, 0.004421904683113098, 0.01836586557328701, -0.0220496766269207, 0.028512973338365555, 0.06447336077690125, -0.005731852259486914, -0.03213028982281685, -0.01365803275257349, -0.02206297591328621, -0.005532367620617151, -0.04335461184382439, -0.008983448147773743, -0.005306285340338945, 0.040003273636102676, -0.03981709107756615, -0.0018651792779564857, 0.018339267000555992, -0.015373598784208298, -0.0004912303993478417, 0.030614208430051804, -0.03893935680389404, 0.03037482686340809, 0.014030403457581997, -0.009488808922469616, -0.028087405487895012, -0.008650974370539188, -0.005060254596173763, -0.0055356924422085285, 0.01238133292645216, -0.0027911195065826178, -0.022714626044034958, -0.01949627697467804, 0.015160815790295601, 0.020041534677147865, -0.007520562503486872, -0.006160743534564972, 0.03173132240772247, -0.02731606550514698, -0.04276945814490318, -0.029630085453391075, -0.017355144023895264, 0.012088755145668983, -0.026331942528486252, -0.014721949584782124, -0.024656273424625397, -0.0029423951636999846, 0.0009325896389782429, 0.01023355033248663, -0.0011412170715630054, -0.0007775736157782376, -0.005871491506695747, 0.01869833841919899, -0.03165152668952942, 0.03101317770779133, 0.010020767338573933, 0.03449750319123268, 0.03646575286984444, -0.0089568505063653, -0.008577830158174038, -0.02904493175446987, 0.01190256979316473, -0.017474835738539696, -0.007287830580025911, -0.001103813759982586, -0.00706839794293046, -0.030135445296764374, 0.013571590185165405, 0.005542342085391283, -0.007414171006530523, 0.011869322508573532, -0.006922109052538872, 0.009881127625703812, 0.01742163859307766, 0.0003767346206586808, 0.02030751295387745, 0.00503698131069541, 0.016410917043685913, -0.021637409925460815, 0.018631843850016594, -0.010160406120121479, 0.002447008853778243, 0.039551109075546265, 0.010499529540538788, 0.006626207381486893, 0.013159321621060371, -0.009655045345425606, 0.040960799902677536, 0.006722624879330397, 0.02907152846455574, 0.04173213988542557, -0.018964318558573723, 0.0005128411576151848, 0.009881127625703812, 0.02318008989095688, -0.0022142769303172827, 0.004618064034730196, 0.030587609857320786, -0.013764424249529839, 0.030295033007860184, -0.0017737488960847259, -0.017993494868278503, -0.006968655623495579, 0.009721540845930576, -0.02141132764518261, -0.02845977619290352, 0.008910303935408592, 0.016969474032521248, -0.03197070211172104, -0.013006383553147316, 0.025494107976555824, 0.04122677817940712, 0.017368443310260773, 0.001986532239243388, -0.004930589813739061, -0.042264096438884735, 0.0654308870434761, 0.01565287634730339, 0.01109133381396532, -0.02395142801105976, -0.006277109496295452, -0.016078444197773933, 0.014495867304503918, -0.012115353718400002, 0.03385915607213974, -0.005273038055747747, 0.03165152668952942, 0.02270132675766945, -0.019549472257494926, 0.030561013147234917, 0.0089568505063653, -0.007646902464330196, -0.023366274312138557, 0.012966486625373363, -0.024084419012069702, 0.014668754301965237, 0.005505769979208708, 0.021464522927999496, 0.00018608155369292945, 0.014017105102539062, -0.0015992000699043274, 0.0001408858661307022, 0.026079263538122177, 0.043673787266016006, 0.010326643474400043, -0.009954272769391537, 0.009874478913843632, -0.022874213755130768, 0.004771002102643251, -0.0011486978037282825, 0.014775145798921585, -0.01966916397213936, -0.013990507461130619, 0.02171720378100872, -0.012068807147443295, 0.016224732622504234, 0.024696171283721924, -0.03678492456674576, -0.024496685713529587, -0.012248342856764793, 0.0014795094029977918, 0.02731606550514698, 0.0023855010513216257, 0.0022475244477391243, 0.004724455997347832, -0.0089568505063653, -0.010685714893043041, -0.06926099210977554, -0.025786684826016426, 0.0031418795697391033, -0.03449750319123268, -0.004312187898904085, 0.02319338731467724, 0.0017371767899021506, 0.01710246317088604, -0.044657912105321884, 0.04566863179206848, -0.02380513958632946, 0.04340780898928642, -0.025440912693738937, 0.045429252088069916], [0.014804373495280743, 0.019119424745440483, 0.05261310562491417, 0.007409124169498682, -0.006437890697270632, 0.05241885781288147, -0.02480807900428772, -0.006597450468689203, 0.03723986819386482, 0.04925541207194328, 0.013604206033051014, -0.011252433992922306, 0.014443629421293736, 0.0027680154889822006, -0.020992517471313477, 0.030163737013936043, -0.009760896675288677, 0.038904838263988495, -0.001508013461716473, -0.008796600624918938, 0.06554438918828964, 0.044232748448848724, -0.010787629522383213, -0.022171873599290848, -0.044232748448848724, -0.03568589314818382, 0.04581447318196297, 0.01881418004631996, 0.018370186910033226, -0.07009530812501907, 0.08541304618120193, -0.03157896175980568, 0.030302485451102257, -0.036601629108190536, 0.03463141247630119, 0.006295674480497837, -0.027735654264688492, 0.030690979212522507, 0.03762836009263992, 0.015137367881834507, 0.005536030977964401, 0.01881418004631996, -0.02355935052037239, -0.03044123202562332, -0.04156879335641861, 0.062158942222595215, 0.027291661128401756, -0.06981781125068665, -0.018550559878349304, 0.02744428440928459, 0.0128341568633914, 0.01658034324645996, 0.020784396678209305, -0.06421241164207458, 0.042207032442092896, 0.022116374224424362, -0.021561384201049805, 0.03160671144723892, 0.05078163743019104, -0.03710111975669861, -0.009420964866876602, -0.013070028275251389, -0.010863940231502056, 0.0565812885761261, -0.0013831405667588115, 0.006295674480497837, 0.020409777760505676, 0.01755157671868801, -0.03024698607623577, 0.009816396050155163, 0.03468691185116768, 0.00023825571406632662, 0.04276202246546745, -0.06621037423610687, -0.01753770187497139, -0.055859800428152084, -0.0024228806141763926, 0.015012495219707489, -0.007346687838435173, 0.015095743350684643, -0.0020031691528856754, 0.04351126030087471, 0.00613264599815011, 0.05641479045152664, 0.014943121001124382, 0.0018488123314455152, -0.05375083535909653, -0.00620201975107193, -0.05350109189748764, 0.008519105613231659, -0.057219527661800385, -0.015872729942202568, -0.024502834305167198, 0.05100363492965698, 0.047229696065187454, -0.013541770167648792, 0.026098432019352913, -0.041319046169519424, -0.03549164533615112, 0.04004256799817085, -0.011502179317176342, -0.01658034324645996, -0.017981695011258125, 0.02354547567665577, 0.05472207069396973, -0.035130903124809265, -0.026792170479893684, 0.03582464158535004, 0.014318756759166718, -0.01794007048010826, -0.07475723326206207, -0.03216170519590378, -0.021006392315030098, 0.08718901872634888, -0.028665263205766678, -0.012098794803023338, -0.0583295077085495, 0.018952928483486176, 0.036768123507499695, 0.025432443246245384, -0.05783001706004143, -0.030357984825968742, 0.04431599751114845, -0.06548888981342316, 0.0050538829527795315, -0.02333735302090645, -0.019133299589157104, -0.004620296414941549, -0.07336975634098053, -0.05447232350707054, 0.0855240449309349, -0.030746476724743843, 0.024544456973671913, -0.06432341039180756, -0.012868843972682953, 0.0009851083159446716, -0.015109618194401264, -0.017620950937271118, -0.012681534513831139, -0.04517623409628868, 0.011141435243189335, 0.021061891689896584, 0.033299434930086136, 0.017315706238150597, -0.05252985656261444, 0.007651932537555695, 0.01910554990172386, 0.035602644085884094, -0.02171400561928749, 0.009747021831572056, -0.02056240104138851, -0.002157525857910514, -0.0005341783980838954, -0.0034409414511173964, 0.011661739088594913, -0.005487469024956226, 0.02693091705441475, 0.05966148525476456, 0.02082602120935917, -0.008921473287045956, -0.015664609149098396, 0.0006724924896843731, -0.03210620582103729, -0.021727880463004112, 0.03568589314818382, -0.013756828382611275, -0.032799944281578064, 0.00709694204851985, -0.06138195842504501, -0.07886415719985962, -0.03024698607623577, -0.050837136805057526, -0.01645546965301037, -0.01638609729707241, 0.010843127965927124, -0.03349367901682854, -0.0065801069140434265, -0.024932950735092163, 0.008241609670221806, -0.019327547401189804, -9.181191853713244e-05, -0.019230423495173454, -0.09307191520929337, -0.031440217047929764, -0.04445474594831467, 0.061992447823286057, -0.010558695532381535, 0.027263911440968513, 0.0041173361241817474, -0.004509298596531153, 0.017010461539030075, 0.0013042278587818146, 0.021242264658212662, 0.05272410437464714, -0.04814543202519417, 0.02151975966989994, -0.014221632853150368, -0.002353506861254573, 0.010829253122210503, 0.0038363724015653133, 0.04051431268453598, -0.03884933888912201, 0.06088246405124664, 0.012764782644808292, -0.037073370069265366, -0.021783379837870598, -0.0009599602199159563, 0.043927501887083054, 0.01423550769686699, -0.008352608419954777, 0.004009807016700506, -0.03965407609939575, -0.024086590856313705, 0.03507540374994278, -0.04179079085588455, 0.013985762372612953, -0.025904184207320213, 0.01714920811355114, -0.003399317152798176, 0.07953014969825745, -0.00872722640633583, 0.002698641736060381, -0.0008923207642510533, -0.0125427870079875, -0.012591348960995674, 0.013021466322243214, -0.007804554887115955, -0.03360467776656151, -0.013257336802780628, -0.08014063537120819, 0.006913101300597191, 0.027957649901509285, -0.03291093930602074, -0.016316723078489304, -0.004165898077189922, -0.006753541529178619, -0.0008225133642554283, -0.03760061040520668, -0.005941867828369141, -0.006753541529178619, 0.03024698607623577, 0.00829017162322998, 0.018481185659766197, 0.06831933557987213, -0.003135696751996875, -0.002854732796549797, -0.021672381088137627, -0.017870696261525154, 0.04254002869129181, 0.017496077343821526, 0.03993157297372818, 0.007277313619852066, 0.025904184207320213, -0.026112306863069534, 0.008033488877117634, 0.005244660656899214, -0.016150224953889847, -0.04231803119182587, 0.024849703535437584, -0.04420499876141548, -0.022546492516994476, -0.03199520707130432, 0.0025269414763897657, 0.022130249068140984, -0.04717419669032097, -0.012889656238257885, 0.018855804577469826, -0.012057170271873474, -0.011966983787715435, 0.02501619979739189, -0.03704562038183212, 0.03390992432832718, -0.015331614762544632, -0.027111290022730827, -0.015498111955821514, 0.011314869858324528, 0.004398300312459469, -0.019230423495173454, -0.00983720738440752, 0.0052620042115449905, -0.045398227870464325, -0.0120086083188653, -0.002620596205815673, -0.04573122411966324, 0.006274862214922905, 0.00682985270395875, -0.008768850937485695, -0.00573721481487155, -0.03779485821723938, 0.0024350211024284363, 0.037073370069265366, -0.01438813004642725, -0.0004821480542887002, -0.03529740124940872, 0.05821850895881653, 0.006233237683773041, -0.018730930984020233, -0.031440217047929764, -0.0030264330562204123, -0.009344654157757759, 0.027250036597251892, 0.02092314511537552, 0.019022300839424133, 0.0008758445037528872, -0.02063177525997162, 0.02150588482618332, 0.019230423495173454, 0.02994174137711525, -0.017509952187538147, -0.005747620947659016, -0.04953290894627571, 0.05311259627342224, -0.048589423298835754, -0.032605696469545364, -0.062269940972328186, 0.006181207485496998, 0.003251897869631648, 0.004790262319147587, -0.013181026093661785, 0.004269958473742008, 0.029331251978874207, -0.010038391686975956, 0.0458977185189724, -0.026334302499890327, 0.04437149688601494, -0.008415044285356998, -0.0028876853175461292, 0.016025353223085403, -0.048589423298835754, -0.04215153306722641, -0.04670245572924614, -0.028124146163463593, 0.009081033058464527, 0.013534832745790482, 0.0010909033007919788, 0.017953945323824883, 0.01158542837947607, 0.02946999855339527, -0.0038259662687778473, 0.009608274325728416, 0.017509952187538147, -0.027652405202388763, -0.0004778121947310865, 0.01598372869193554, -0.03596339002251625, 0.008109799586236477, 0.020284906029701233, 0.04334476217627525, -0.02983074262738228, 0.04981040209531784, 0.010954126715660095, 0.048117682337760925, -0.03141246736049652, 0.028027024120092392, -0.08130611479282379, -0.036684878170490265, 0.0038745279889553785, -0.015761733055114746, -0.04992140084505081, -0.041152551770210266, 0.0013597268844023347, 0.022796237841248512, 0.002957059070467949, 0.011703363619744778, 0.010801504366099834, -0.003201601793989539, -0.0030524481553584337, 0.024502834305167198, 0.008165298961102962, -0.05186386778950691, 0.02414209023118019, 0.060715969651937485, -0.015137367881834507, -0.013881701976060867, -0.0245999563485384, -0.012577474117279053, 0.009774771519005299, 0.03216170519590378, -0.023406727239489555, 0.00484229251742363, 0.020076783373951912, 0.03282769396901131, 0.024100465700030327, 0.013257336802780628, 0.06127095967531204, 0.032133955508470535, -0.054611071944236755, -0.015511986799538136, -0.00799880176782608, 0.030552230775356293, -0.020881520584225655, 0.00881741289049387, -0.03499215468764305, 0.021436510607600212, -0.018578309565782547, 0.0031322280410677195, 0.05660903826355934, 0.019452419131994247, 0.04709095135331154, -0.021852754056453705, -0.004925541114062071, -0.023781346157193184, 0.004495423752814531, -0.030080487951636314, -0.03704562038183212, -0.018189815804362297, -0.023240230977535248, -0.009989830665290356, -0.0055082812905311584, -0.0044676740653812885, 0.046175215393304825, -0.013160213828086853, 0.04506523534655571, -0.024377960711717606, 0.016150224953889847, -0.005223848856985569, -0.026917042210698128, 0.03413191810250282, 0.0010830988176167011, -0.016732966527342796, 0.041818540543317795, -0.013389147818088531, 0.0021922127343714237, -0.015151242725551128, -0.008470543660223484, 0.016247348859906197, 0.000812974467407912, -0.02511332370340824, -0.0033923799637705088, -0.08480256050825119, -0.01735733076930046, 0.0059106494300067425, 0.0626029372215271, -0.004759043920785189, -0.06115996092557907, -0.03274444490671158, 0.027943775057792664, -0.010288137942552567, 0.0001683399168541655, -0.04886692017316818, 0.011280183680355549, 0.004717419855296612, -0.023004358634352684, 0.03410417214035988, -0.027860525995492935, 0.03238369897007942, -0.008976972661912441, 0.01995191164314747, -0.0017291425028815866, 0.010621132329106331, -0.018481185659766197, 0.01080844085663557, -0.049172163009643555, 0.0002282832283526659, -0.017274081707000732, 0.03593564033508301, 0.026819918304681778, -0.044815488159656525, 0.026306552812457085, -0.04154104366898537, 0.017995569854974747, 0.05699753016233444, 0.0645454004406929, 0.030385734513401985, 0.032522447407245636, 0.011509116739034653, -0.0036560003645718098, -0.02276848815381527, 0.0036525316536426544, -0.017301831394433975, -0.0047867936082184315, -0.03438166528940201, -0.0067743537947535515, -0.011231621727347374, 0.02675054594874382, -0.00496369693428278, -0.013708267360925674, -0.060049980878829956, 0.002811374142765999, -0.010863940231502056, 0.007540934253484011, 0.025918059051036835, -0.029997240751981735, -0.006954725366085768, 0.03565814346075058, 0.018286939710378647, 0.06954032182693481, -0.016719091683626175, -0.03052448108792305, -0.027666280046105385, -0.04825643077492714, -0.026514673605561256, 0.03615763410925865, -0.016219599172472954, -0.005390346050262451, -0.03119046986103058, -0.02847101539373398, -0.004193647298961878, 0.05882900208234787, -0.005862087942659855, 0.059827983379364014, -0.033077437430620193, 0.020368153229355812, 0.006583575624972582, 0.033576928079128265, 0.0011359963100403547, 0.008734163828194141, -0.03224495053291321, -0.03360467776656151, -0.0007800218882039189, -0.05377858504652977, -0.004089586902409792, 0.028998257592320442, 0.01917492412030697, 0.0077768051996827126, -0.008269359357655048, -0.0031252906192094088, -0.008879848755896091, -0.025931933894753456, 0.025057824328541756, -0.01201554574072361, -0.037739358842372894, -0.021949876099824905, 0.01859218440949917, -0.008983910083770752, 0.008199986070394516, -0.003857184434309602, -0.05966148525476456, -0.025820937007665634, -0.0147766238078475, 0.019688289612531662, -0.03751736134290695, -0.024974575266242027, 0.0047139511443674564, -0.004675795324146748, -0.007554809097200632, 0.01880030520260334, -0.0004216627567075193, 0.000989444088190794, -0.027832776308059692, 0.01687171310186386, -0.020520776510238647, 0.0014819982461631298, 0.013763765804469585, -0.0024506303016096354, 0.01239710208028555, 0.010281200520694256, 0.03718436881899834, 0.02054852619767189, -0.018259190022945404, 0.018259190022945404, 0.010010641999542713, 0.025723813101649284, -0.0032172109931707382, -0.017385080456733704, 0.003463488072156906, 0.013597268611192703, -0.03205070644617081, 0.029497748240828514, 0.02471095509827137, -0.003919620998203754, -0.0022529149428009987, 0.011398118920624256, 0.020992517471313477, -0.0006868008058518171, 0.01870318129658699, 0.008637040853500366, -0.00814448669552803, -0.020326528698205948, 0.0005510883056558669, 0.002150588436052203, 0.028249019756913185, 0.024586081504821777, -0.024253087118268013, 0.04217928275465965, 0.022407744079828262, 0.009323841892182827, -0.057552520185709, 0.021672381088137627, 0.002022246830165386, -0.0147766238078475, 0.014159196987748146, -0.022449368610978127, -0.02607068233191967, -0.01794007048010826, 0.019924161955714226, 0.012619097717106342, -0.025751562789082527, -0.024058841168880463, 0.027180662378668785, 0.025349194183945656, -0.01299371663480997, -0.011363431811332703, -1.5812353012734093e-05, 0.0009512885008007288, 0.04817318171262741, 0.010038391686975956, 0.024114340543746948, -0.007575621362775564, 0.03080197609961033, 0.011543803848326206, -0.030024990439414978, -0.017315706238150597, -0.008845162577927113, -0.020964769646525383, -0.008373419754207134, 0.040569812059402466, 0.01322265062481165, 0.007284251041710377, 0.04034781455993652, 0.008845162577927113, 0.030496731400489807, -0.00023305267677642405, -0.002736797323450446, -0.02820739522576332, 0.021075766533613205, -0.02170013077557087, -0.020520776510238647, -0.014901496469974518, -0.00578924547880888, -0.0010961063671857119, -0.009878831915557384, 0.037350866943597794, -0.005504812579602003, 0.020992517471313477, -0.014582376927137375, -0.0023899280931800604, -0.03635188192129135, 0.06049397215247154, 0.010641944594681263, -0.01946629397571087, 0.026181679219007492, 0.004235271830111742, -0.007100410759449005, -0.00843585655093193, -0.003877996699884534, 0.03554714471101761, -0.019313672557473183, 0.00044399246689863503, -0.006070209201425314, 0.03582464158535004, 0.027596905827522278, 0.021755630150437355, -0.018689308315515518, 0.018384061753749847, 0.015678483992815018, 0.0021488540805876255, 0.022615864872932434, -0.0014785295352339745, -0.001959810499101877, 0.014263257384300232, -0.0010380058083683252, 0.011113686487078667, -0.019716039299964905, 0.03760061040520668, 0.005289753898978233, -0.0020690741948783398, 0.02287948690354824, 0.013777640648186207, 0.027846651151776314, -0.041152551770210266, 0.00745768565684557, -0.013396085239946842, 0.016941087320446968, 0.04290077090263367, -0.011363431811332703, 0.02576543763279915, -0.002084683394059539, -0.01648321934044361, -0.004665389657020569, -0.01706595905125141, 0.00221475912258029, 0.018189815804362297, -0.027166787534952164, -0.0033212716225534678, -0.01745445281267166, -0.01755157671868801, 0.045869968831539154, -0.03762836009263992, 0.05516606196761131, -0.052002616226673126, -0.011252433992922306, -0.0015400988049805164, 0.0034062545746564865, -0.015831105411052704, -0.02469708025455475, 0.015428737737238407, -0.025931933894753456, 0.010815378278493881, 0.020187782123684883, 0.00019879936007782817, 0.014443629421293736, -0.01898067817091942, -0.006448296830058098, 0.021478135138750076, 0.07120528817176819, 0.020701147615909576, -0.01186986081302166, -0.05516606196761131, -0.09595786780118942, 0.028915008530020714, 0.03343818336725235, -0.020104533061385155, -0.050837136805057526, -0.042678773403167725, -0.01559523493051529, -0.0036074386443942785, 0.005161412060260773, 0.05291835218667984, -0.021547509357333183, -0.02228287048637867, -0.014513003639876842, -0.043927501887083054, 0.014006574638187885, -0.009774771519005299, 0.005334846675395966, 0.0047243572771549225, -0.02994174137711525, 0.007416061591356993, 0.012861906550824642, -0.043067269027233124, 0.020229406654834747, -0.027846651151776314, -0.013687455095350742, -0.000533744809217751, -0.005438907537609339, -0.006951256655156612, 0.02471095509827137, -0.01726020686328411, 0.03477016091346741, 0.02645917609333992, -0.010288137942552567, 0.02014615759253502, 0.01143280602991581, -0.021630756556987762, -0.0072426269762218, -0.01735733076930046, 0.018439561128616333, -0.03837759792804718, 0.006108365021646023, 0.01870318129658699, -0.05971698462963104, -0.01734345592558384, -0.03887708857655525, 0.012778657488524914, -0.02498845010995865, 0.011120623908936977, 0.027250036597251892, 0.01299371663480997, 0.03962632641196251, -0.0240172166377306, 0.013208775781095028, 0.003447878872975707, -0.03926558420062065, 0.017898445948958397, 0.004183241631835699, -0.00510938186198473, 0.02927575260400772, -0.005036539398133755, 0.016261223703622818, 0.014582376927137375, 0.013638893142342567, 0.010184076614677906, 0.015664609149098396, 0.008109799586236477, -0.016899462789297104, -0.012605222873389721, -0.015511986799538136, 0.03166221082210541, -0.0150679936632514, 0.0055186874233186245, 0.015192867256700993, 0.023573223501443863, -0.0025078635662794113, 0.012126543559134007, -0.002736797323450446, -0.0065905130468308926, -0.01090556476265192, -0.02557118982076645, -0.03646288067102432, 0.03732311725616455, -0.00484229251742363, -0.0005055617075413465, -0.006465639919042587, 0.010968001559376717, -0.0004448596155270934, 0.010433822870254517, -0.008976972661912441, 0.001318969763815403, -0.009615211747586727, -0.034437164664268494, -0.005164880771189928, -0.005418095272034407, -0.01995191164314747, -0.022435493767261505, -0.01492924615740776, -0.006871476769447327, -0.0614374540746212, -0.006954725366085768, 0.03452041372656822, -0.022116374224424362, -0.0030888693872839212, -0.014721124432981014, 0.016927212476730347, 0.0890759825706482, -0.0075686839409172535, -0.048894669860601425, -0.009559712372720242, -0.01608085259795189, -0.029053756967186928, -0.016233474016189575, 0.0261539313942194, -0.00910878274589777, 0.024863578379154205, 0.008304046466946602, 0.010246513411402702, 0.0004990579327568412, 0.023600973188877106, -0.0022650551982223988, -0.00402368139475584, 0.014790498651564121, -0.03080197609961033, 0.020978642627596855, 0.011134497821331024, 0.03662937879562378, -0.012119606137275696, -0.024086590856313705, -0.021464260295033455, 0.019702164456248283, -0.04070855677127838, 0.003877996699884534, -0.023323478177189827, 0.047340694814920425, 0.01656646840274334, 0.001179354963824153, 0.0021714007016271353, -0.01936917006969452, -0.0049810404889285564, 0.03227270022034645, 0.024849703535437584, 0.026889292523264885, -0.019632792100310326, -0.03565814346075058, -0.018162066116929054, -0.021381011232733727, -0.009018597193062305, 0.007984926924109459, 0.012660722248256207, -0.024974575266242027, 0.022837862372398376, -0.01588660478591919, -0.031162720173597336, -0.02210249938070774, -0.034936655312776566, 0.017079833894968033, -0.03485340625047684, 0.015345489606261253, -0.02179725468158722, -0.006229768972843885, -0.003777404548600316, -0.009469526819884777, -0.023143107071518898, 0.01008001621812582, -0.011252433992922306, 0.028748512268066406, -0.020076783373951912, 0.03621313348412514, 0.018092691898345947, 0.01966054178774357, -0.007201002445071936, 0.03429841622710228, -0.01842568628489971, 0.0037808732595294714, -0.016899462789297104, -0.030968474224209785, -0.03815560042858124, -0.007422999013215303, 0.04592546820640564, 0.014693375676870346, -0.004106929991394281, 0.013493208214640617, 0.01726020686328411, 0.020076783373951912, -0.0018366719596087933, -0.0062401751056313515, -0.017620950937271118, 0.005161412060260773, 0.046757955104112625, 0.05766351893544197, 0.015720108523964882, -0.010780692100524902, -0.004609890282154083, -0.003978588618338108, 0.013153276406228542, 0.012251417152583599, -0.008227734826505184, -0.027860525995492935, -0.01666359230875969, -0.0060528661124408245, 0.017482202500104904, -0.027263911440968513, -0.011932297609746456, 0.003029901534318924, 0.00552215613424778, -0.020090658217668533, -0.021450385451316833, 0.007499310187995434, -0.017482202500104904, 0.014624001458287239, 0.0014629204524680972, 0.042789772152900696, -0.010343636386096478, -0.01404819916933775, -0.01966054178774357, 0.007644995115697384, -0.011932297609746456, -0.026570172980427742, 0.019438544288277626, 0.031440217047929764, -0.02480807900428772, 0.056636787950992584, -0.001978888176381588, 0.012813344597816467, -0.021353261545300484, -0.02509944885969162, 0.0062505812384188175, -0.0002245977520942688, -0.0057753706350922585, 0.001491537201218307, -0.020201656967401505, -0.004186709877103567, 0.04154104366898537, 0.014291007071733475, 0.032605696469545364, 0.0029744026251137257, 0.023809095844626427, -0.011557678692042828, 0.012674597091972828, 0.03196745738387108, -0.02422533743083477, 0.04431599751114845, 0.047146447002887726, 0.018148191273212433, -0.0055811237543821335, -0.010066141374409199, -0.02200537547469139, -0.005754558369517326, 0.003794748103246093, -0.0017256737919524312, -0.0017456187633797526, 0.03044123202562332, -0.015525860711932182, 0.008338733576238155, -0.014651751145720482, -0.04231803119182587, 0.00021018099505454302, 0.030885225161910057, -0.005085100885480642, 0.04770144075155258, -0.02741653472185135, 0.053834084421396255, 0.04070855677127838, 0.030274735763669014, -0.02780502662062645, 0.03449266403913498, 0.05264085531234741, -0.026237178593873978, 0.005022664554417133, -0.05530481040477753, 0.010003704577684402, -0.023226356133818626, -0.022851737216114998, 0.055499058216810226, 0.03354917839169502, -0.01395801268517971, -0.002077745972201228, 0.023323478177189827, 0.0005020930548198521, 0.0015609109541401267, 0.01545648742467165, 0.003420129418373108, 0.021575259044766426, 0.03918233513832092, 0.00867172796279192, 0.0008051699260249734, 0.01810656674206257, 0.018370186910033226, 0.020132282748818398, 0.03771160915493965, 0.0029535903595387936, 0.015567485243082047, 0.029691996052861214, 0.0025997839402407408, 0.021533634513616562, -0.010565632954239845, 0.04795118421316147, 0.023864595219492912, -0.01899455301463604, -0.006496858317404985, -0.0037184366956353188, 0.03157896175980568, 0.003961245063692331, 0.020201656967401505, 0.010128578171133995, 0.010128578171133995, 0.018550559878349304, 0.027055790647864342, 0.023878470063209534, 0.0013536566402763128, -0.006465639919042587, -0.019341420382261276, -0.0020760116167366505, -0.02171400561928749, -0.025612814351916313, -0.01849506050348282, -0.038627345114946365, 0.007235689554363489, -0.05294610187411308, -0.00895616039633751, 0.020187782123684883, -0.016552593559026718, 0.023531600832939148, 0.019452419131994247, 0.016122475266456604, 0.03887708857655525, 0.009864957071840763, -0.01491537131369114, -0.016053102910518646, 0.03565814346075058, -0.009878831915557384, 0.01502637006342411, 0.002868607407435775, 0.0003789544862229377, 0.043261513113975525, 0.008241609670221806, -0.0031200875528156757, 0.002879013540223241, 0.00034491796395741403, -0.02102026715874672, 0.020118407905101776, -0.026958666741847992, -0.005886368919163942, -0.04340026155114174, 0.03593564033508301, 0.011668676510453224, -0.01609472557902336, 0.030579980462789536, 0.01338221039623022, 0.018259190022945404, 0.020784396678209305, -0.0008095057564787567, 0.043927501887083054, -0.025071699172258377, -0.04290077090263367, -0.0031807897612452507, 0.00043575430754572153, -0.03543614596128464, -0.015373238362371922, -0.027458159253001213, -0.0007761196466162801, 0.015525860711932182, -0.028942758217453957, -0.012889656238257885, 0.002698641736060381, 0.026611797511577606, 0.006236706394702196, -0.039210084825754166, -0.004731294699013233, 0.025612814351916313, -0.014970870688557625, 0.018370186910033226, 8.742185309529305e-05, 0.02064564824104309, 0.012854969128966331, 0.01977153867483139, -0.011321807280182838, -0.028554264456033707, -0.02713903971016407, -0.010191014036536217, 0.0025113322772085667, -0.014832123182713985, 0.001805453677661717, 0.024974575266242027, -0.0024055372923612595, -0.01917492412030697, -0.0038190288469195366, -0.04625846445560455, 0.009774771519005299, -0.013930262997746468, 0.005123256705701351, -0.02966424636542797, 0.01677458919584751, -0.0005203036707825959, 0.023115357384085655, 0.012917405925691128, 0.022241247817873955, 0.023573223501443863, -0.00871335156261921, 0.00039803230902180076, -0.0025217384099960327, 0.044149499386548996, 0.010801504366099834, 0.01714920811355114, -0.017579326406121254, 0.03207845613360405, -0.014651751145720482, 0.014277132228016853, 0.0053209722973406315, 0.015733983367681503, -0.005057351663708687, 0.0028131084982305765, 0.011973921209573746, 0.00024909537751227617, -0.025515692308545113, 0.029691996052861214, 0.0049324785359203815, -0.004280364606529474, 0.02200537547469139, 0.0153593635186553, -0.010829253122210503, 0.006930444855242968, 0.0025668314192444086, -0.03171771019697189, 0.0029657308477908373, 0.016830088570713997, 0.0033125998452305794, -0.023212481290102005, 0.024738704785704613, 0.01753770187497139, 0.000989444088190794, 0.0005983492010273039, -0.04709095135331154, -0.013604206033051014, 0.02151975966989994, -0.003413191996514797, -0.0005580256693065166, -0.007561746519058943, -0.043650008738040924, -0.019716039299964905, -0.009483401663601398, 0.013756828382611275, 0.020673397928476334, -0.0021159015595912933, -0.008102862164378166, 0.0010909033007919788, 0.002152322791516781, -0.007492372766137123, 0.07470173388719559, 0.020035158842802048, -0.0061048963107168674, -0.00608061533421278, 0.0517251193523407, -0.020021283999085426, 0.004224865697324276, -0.006208957172930241, 0.0025893778074532747, 0.029913991689682007, -0.028332268819212914, 0.04564797505736351, 0.024863578379154205, 0.004776387475430965, 0.007554809097200632, 0.009802521206438541, 0.022837862372398376, 0.030080487951636314, 0.02974749356508255, 0.021880503743886948, 0.01752382703125477, -0.035214152187108994, 0.009268342517316341, 0.007443810813128948, -0.033660177141427994, -0.036490630358457565, -0.0015236225444823503, -0.0036074386443942785, -0.0059938980266451836, 0.01560910977423191, -0.010142453014850616, 0.005494406446814537, -0.012126543559134007, 0.011564616113901138, -0.018245315179228783, 0.00016086055256891996, 0.022560367360711098, -0.015650734305381775, 0.03485340625047684, 0.023503851145505905, -0.022241247817873955, -0.0014542486751452088, -0.015470362268388271, 6.292422040132806e-05, 0.011592365801334381, 0.01794007048010826, -0.006260987371206284, -0.000989444088190794, 0.021283889189362526, -0.023906217887997627, 9.099893941311166e-05, -0.013784578070044518, -0.041513293981552124, -0.015054118819534779, -0.03277219459414482, 0.002010106574743986, 7.736806765024085e-06, 0.010066141374409199, -0.04739619418978691, -0.01949404366314411, 0.018744805827736855, 0.021256139501929283, -0.03529740124940872, 0.010149390436708927, 0.0009816396050155163, -0.004495423752814531, -0.008040426298975945, -0.010600320063531399, -0.008109799586236477, 0.021630756556987762, -0.017773572355508804, -0.013895576819777489, 0.01492924615740776, -0.0037808732595294714, -0.030108237639069557, 0.02249099314212799, -0.018162066116929054, 0.02189437858760357, -0.015622984617948532, -0.049865901470184326, -0.012064107693731785, -0.034159667789936066, 0.00828323420137167, 0.06365741789340973, -0.01080844085663557, 0.00829017162322998, 0.012896593660116196, 0.031162720173597336, -0.008484418503940105, 0.0641569122672081, -5.945553130004555e-05, -0.028346143662929535, 0.005213442724198103, 0.010746004991233349, -0.006184676196426153, 0.02267136424779892, -0.015553610399365425, -0.035214152187108994, 0.014402004890143871, -0.008165298961102962, 0.002653548726812005, -0.028443265706300735, -0.011550741270184517, 0.005674778483808041, -0.022421618923544884, 0.009601336903870106, -0.014873746782541275, -0.011946171522140503, 0.0072911884635686874, 0.016941087320446968, 0.012390164658427238, 0.00033386150607839227, 0.027361035346984863, -0.022130249068140984, -0.013826202601194382, -0.012175105512142181, -0.015720108523964882, -0.025238195434212685, 0.003029901534318924, -0.014180009253323078, -0.0029744026251137257, 0.0036733439192175865, 0.003482565749436617, 0.0017360799247398973, 0.0226574894040823, 0.04312276840209961, -0.04342801123857498, 0.01948016881942749, -0.005026133265346289, 0.017981695011258125, 0.011176122352480888, -0.005768433213233948, 0.007915552705526352, -0.002833920530974865, 0.004186709877103567, 0.0013545238180086017, 0.004034087527543306, -0.011120623908936977, -0.006295674480497837, -0.011890673078596592, -0.01545648742467165, 0.020118407905101776, -0.016691341996192932, -0.0011169185163453221, -0.03110722079873085, 0.005761495791375637, -0.007117753848433495, -0.01674683950841427, 0.0040548997931182384, 0.0150679936632514, -0.01899455301463604, 0.013181026093661785, 0.01241097692400217, 0.022823987528681755, 0.008616228587925434, 0.0051787556149065495, 0.02608455717563629, -0.0301359873265028, 0.015858855098485947, -0.001966747920960188, 0.0028027023654431105, 0.008685602806508541, -0.023476101458072662, -0.014082885347306728, 0.012827219441533089, -0.009344654157757759, 0.012945154681801796, 0.0309129748493433, -0.018300814554095268, 0.010586445219814777, -0.03460366278886795, -0.022851737216114998, 0.021949876099824905, 0.018286939710378647, -0.04631396383047104, -0.0025720344856381416, 0.02849876508116722, 0.011738050729036331, -0.0660993754863739, 0.006656418088823557, -0.0024280836805701256, 0.013021466322243214, 0.0024436928797513247, -0.01423550769686699, -0.02569606341421604, -0.010773754678666592, 0.022435493767261505, -0.0027732185553759336, 0.024863578379154205, 0.005317503586411476, 0.00983720738440752, -0.0035935640335083008, 0.008484418503940105, -0.04953290894627571, 0.017482202500104904, -0.047063201665878296, 0.017190832644701004, 0.018661558628082275, 0.023684222251176834, 0.016011478379368782, 0.018661558628082275, -0.006600919179618359, -0.01244566310197115, -0.025904184207320213, -0.007887803018093109, -0.04351126030087471, -0.0010414745192974806, 0.018661558628082275, 0.01299371663480997, 0.004804137162864208, 0.01956341788172722, 0.008914535865187645, 0.01231385301798582, 0.008373419754207134, 0.012438725680112839, -0.006153457798063755, -0.0013042278587818146, 0.01569235883653164, 0.00746462307870388, -0.028998257592320442, -0.010204888880252838, -0.018370186910033226, 0.046868953853845596, -0.02325410395860672, -0.005660903640091419, 0.030774226412177086, 0.0040548997931182384, 0.021186765283346176, 0.05078163743019104, -0.03138471767306328, 0.0015513721155002713, 0.0033490213099867105, -0.014457504265010357, -0.01967441476881504, -0.006309548858553171, -0.004620296414941549, -0.029580997303128242, -0.003805154003202915, -0.006857602391391993, -0.013507083058357239, -0.014526878483593464, 0.001336313202045858, -0.006469108629971743, -0.006597450468689203, -0.007263439241796732, 0.03285543993115425, 0.016732966527342796, -0.023420602083206177, -0.00954583752900362, -0.039876073598861694, 0.013985762372612953, -0.01031588762998581, 0.007079598493874073, 0.0027246568351984024, 0.03499215468764305, -0.009330779314041138, 0.004575203638523817, -0.011980858631432056, -0.00510938186198473, -0.008380357176065445, -0.001508013461716473, -0.027846651151776314, 0.026500798761844635, 0.0012600020272657275, 0.010274263098835945, 0.043178267776966095, 0.004474611487239599, -0.03168996050953865, -0.06554438918828964, -0.010329761542379856, -0.01608085259795189, 0.0068992264568805695, -0.006208957172930241, -0.02579318732023239, -0.03102397359907627, 0.004422581288963556, -0.005900243297219276, -0.0011255902936682105, 0.0247942041605711, 0.032328199595212936, 0.005282816477119923, 0.019036175683140755, 0.004543985240161419, -0.011058187112212181, 0.02325410395860672, 0.009698459878563881, -0.03218945115804672, 0.018051067367196083, 0.026972541585564613, 0.002755875000730157, 0.05078163743019104, 0.01216123066842556, 0.030885225161910057, 0.004873510915786028, 0.001403085538186133, 0.026126181706786156, -0.003968182485550642, 0.0276107806712389, -0.001486334134824574, -0.02393396757543087, -0.016996586695313454, -0.00045396495261229575, 0.009358528070151806, 0.007832304574549198, -0.0033212716225534678, 0.0015262240776792169, 0.010211826302111149, 0.015747858211398125, -0.0005003586993552744, -0.005390346050262451, 0.014693375676870346, 0.007742118556052446, -0.03277219459414482, -0.024211464449763298, 0.009205905720591545, 0.028720762580633163, -0.028262894600629807, -0.003073260188102722, 0.019785413518548012, 0.03943207859992981, -0.009226717986166477, 0.006677230354398489, 0.016510969027876854, -0.03268894553184509, 0.02286561205983162, 0.0009122657356783748, -0.01996578648686409, -0.004162429366260767, 0.0024107403587549925, 0.010017579421401024, -0.00033537906710989773, -0.00358662661164999, 0.03296643868088722, -0.04406625032424927, -0.009351590648293495, 0.0287762600928545, -0.00043206883128732443, 0.006767416372895241, -0.002665688982233405, -0.023226356133818626, 0.0009426167816855013, -0.010010641999542713, 0.009323841892182827, 0.02527981996536255, -0.00012097060243831947, 0.03382667526602745, 0.012737033888697624, 0.02453058399260044, -0.0009538900339975953, 0.00504000810906291, 0.03829434886574745, 0.023309603333473206, -0.02064564824104309, -0.009011659771203995, 0.008505230769515038, -0.013978824950754642, 0.008359545841813087, -0.009275279939174652, 0.01491537131369114, -0.01706595905125141, 0.004960228223353624, 0.048006683588027954, -0.015248365700244904, 0.020118407905101776, 0.017953945323824883, -0.013028403744101524, -0.008310983888804913, 0.0016693075885996222, 0.00015240561333484948, -0.00014351708523463458, 0.00969152245670557, 0.013916388154029846, 0.018855804577469826, -0.0020309186074882746, 0.003231085604056716, -0.03168996050953865, -0.013736016117036343, 0.010926377028226852, -0.027277786284685135, 0.004960228223353624, 0.006208957172930241, -0.05222461372613907, 0.005092038307338953, -0.03188420832157135, 0.03490890562534332, -0.013819265179336071, 0.011606240645051003, 0.0027680154889822006, 0.016621967777609825], [0.02610938251018524, -0.00039879148243926466, 0.06079616770148277, 0.01753198355436325, -0.03486838936805725, 0.025452807545661926, -0.03836081549525261, 0.009066340513527393, -0.003078574314713478, 0.04389281943440437, -0.021988319233059883, -0.021918470039963722, 0.0025669336318969727, -0.018062831833958626, -0.026388777419924736, 0.04730143025517464, -0.020828833803534508, 0.03048190101981163, -0.012880070134997368, 0.00300523336045444, 0.06247252970933914, 0.025075623765587807, -0.011168780736625195, -0.0021478424314409494, -0.023427199572324753, -0.02766001969575882, 0.05015124753117561, 0.03953427076339722, 0.04724555090069771, -0.06906623393297195, 0.06990441679954529, -0.030062809586524963, 0.012097766622900963, -0.02636083774268627, -0.016372496262192726, 0.0013707774924114347, -0.029448142275214195, 0.027701929211616516, 0.039897482842206955, 0.028637900948524475, -0.01338996458798647, 0.023371320217847824, -0.019487742334604263, -0.02447492815554142, -0.01895689219236374, 0.07275423407554626, 0.022505197674036026, -0.04744112491607666, -0.00359021476469934, 0.027073292061686516, 0.026891686022281647, 0.03204650804400444, 0.00164231366943568, -0.024502865970134735, 0.03830493614077568, 0.006597194354981184, 0.022561077028512955, -0.0032758964225649834, 0.01978110522031784, -0.03028632514178753, 0.02528516948223114, -0.030593659728765488, -0.029811356216669083, 0.05532003939151764, -0.003337013768032193, 0.001541906502097845, 8.141720172716305e-05, 0.022742683067917824, -0.01160882692784071, 0.008116399869322777, 0.040093060582876205, 0.041713546961545944, 0.019948741421103477, -0.04763670265674591, 0.0013777624117210507, -0.03559481352567673, -0.0020919637754559517, -0.004128048662096262, -0.04232821241021156, 0.003445279086008668, -0.02508959360420704, 0.03587421029806137, 0.010672856122255325, 0.026388777419924736, 0.02015828713774681, 0.009625128470361233, -0.06398125737905502, 0.007906854152679443, -0.03850051388144493, -0.014919647015631199, -0.045401547104120255, -0.0321582667529583, -0.028833476826548576, 0.05269373580813408, 0.027087261900305748, -0.03660063445568085, 0.034896329045295715, -0.009024430997669697, -0.04626766964793205, 0.04249585047364235, -0.0018824180588126183, -0.008137354627251625, -0.001307913800701499, 0.029392264783382416, 0.03850051388144493, -0.0188311655074358, -0.0051268828101456165, 0.016596011817455292, -0.013362024910748005, -0.017699619755148888, -0.04263554513454437, -0.04537361115217209, -0.020004620775580406, 0.0875062495470047, -0.009052370674908161, -0.022183895111083984, -0.07906854152679443, 0.031264204531908035, 0.032018568366765976, 0.0063771712593734264, -0.05895216390490532, -0.018006952479481697, 0.04157384857535362, -0.06867507845163345, 0.02465653419494629, -0.0020762477070093155, -0.011909175664186478, 0.0034313094802200794, -0.07588344812393188, -0.01802092231810093, 0.05188349261879921, -0.012593691237270832, 0.03098481148481369, -0.05328046530485153, -0.015562254004180431, 0.02210007794201374, -0.002029099967330694, -0.021988319233059883, -0.013871919363737106, -0.04149002954363823, 0.034952208399772644, -0.009324779734015465, 0.031012751162052155, 0.02479623071849346, -0.05702434480190277, 0.01708495244383812, 0.030621599406003952, 0.05772282928228378, 0.008284036070108414, 0.014402768574655056, -0.012726403772830963, 0.014724071137607098, -0.014863768592476845, -0.015450496226549149, 0.02897317335009575, -0.010407431982457638, 0.029699597507715225, 0.05420246347784996, 0.009611158631742, 0.0016362019814550877, -0.010176931507885456, -0.019864924252033234, -0.033890511840581894, -0.007396960165351629, 0.02860996127128601, 0.024251412600278854, -0.011580887250602245, 0.02528516948223114, -0.0680045336484909, -0.05565531551837921, -0.03246559947729111, -0.0038835785817354918, -0.04707791283726692, -0.010596022941172123, -0.010379492305219173, -0.03511984273791313, -0.013850964605808258, -0.02190450020134449, -0.0014729310059919953, -0.006087299901992083, -0.0004077408229932189, -0.001463326858356595, -0.08985316008329391, -0.04123857617378235, -0.0583374984562397, 0.0242933202534914, 0.007473793346434832, -0.0065308380872011185, -0.009646083228290081, -0.013934782706201077, 0.03361111506819725, 0.04132239520549774, 0.013250267133116722, 0.043082576245069504, -0.03769027069211006, 0.0007412675768136978, -0.014200207777321339, 0.009771809913218021, -0.013955737464129925, 0.00656925467774272, 0.03218620643019676, -0.03710354119539261, 0.07096610963344574, 0.008374839089810848, -0.035399239510297775, -0.03886372596025467, 0.007410929538309574, 0.03729911893606186, -0.004128048662096262, -0.031515661627054214, -0.012775297276675701, -0.03866814821958542, -0.031571537256240845, 0.0393107570707798, -0.02679389901459217, 0.027967354282736778, -0.022197864949703217, 0.002392312278971076, -0.034896329045295715, 0.05051446333527565, 0.005249117501080036, 0.020311955362558365, 0.014416738413274288, -0.016428375616669655, -0.01684746704995632, -0.0008054409408941865, 0.005235147662460804, -0.017308467999100685, 0.009129203855991364, -0.058169860392808914, 0.0019033725839108229, 0.02103837952017784, -0.042467910796403885, -0.013515692204236984, -0.0018894028617069125, -0.019124530255794525, -0.009380658157169819, -0.025313109159469604, -0.010973204858601093, 0.0004653658834286034, 0.029029052704572678, 0.003227002453058958, 0.027743838727474213, 0.052162885665893555, 0.008591369725763798, -0.004742715507745743, -0.012321282178163528, -0.005168791860342026, 0.024433018639683723, 0.030900992453098297, 0.03606978431344032, 0.007606505416333675, 0.04492658004164696, -0.041210636496543884, 0.006873095873743296, 0.008598354645073414, -0.024572715163230896, -0.021108228713274002, 0.014961556531488895, -0.04833518713712692, -0.021136166527867317, 0.002474384382367134, -0.01038647722452879, 0.01783931627869606, -0.05406276881694794, -0.00014820985961705446, 0.032018568366765976, -0.01105003897100687, -0.01683349721133709, 0.031459782272577286, -0.0393107570707798, 0.02947608195245266, 0.026696110144257545, -0.012160629965364933, -0.04894985631108284, -0.0006465355399996042, -0.019892863929271698, -0.012076811864972115, -0.010882401838898659, -0.01070079579949379, -0.04160178825259209, -0.002137365285307169, -0.004980200435966253, -0.026933595538139343, 0.01633058860898018, 0.02703138440847397, -0.008765991777181625, -0.003525604959577322, -0.023301471024751663, -0.0022665851283818483, 0.04255172982811928, 0.027436506003141403, 0.00486495066434145, -0.01721067912876606, 0.02548074536025524, 0.011259583756327629, -0.026081442832946777, -0.03500808775424957, 0.004012798424810171, -0.010575068183243275, 0.01621882990002632, 0.03268911689519882, 0.05213494598865509, -0.004613495897501707, -0.028526142239570618, 0.022169925272464752, 0.025704260915517807, 0.027673989534378052, -0.030006932094693184, 0.02170892432332039, -0.025746170431375504, 0.050793856382369995, -0.013117555528879166, -0.04623972997069359, -0.0647076815366745, -0.017448164522647858, 0.010596022941172123, 0.026682140305638313, -0.01464025303721428, 0.01480789016932249, 0.015660041943192482, -0.019739195704460144, 0.04185324162244797, -0.020242106169462204, 0.018440013751387596, -0.02384629100561142, 0.03400226682424545, 0.04098712280392647, -0.04886603727936745, -0.06370186805725098, -0.04051215201616287, -0.01483582891523838, 0.0355389341711998, 0.0025389944203197956, -0.017126861959695816, -0.020437682047486305, 0.007934793829917908, 0.05995798483490944, 3.249594010412693e-05, 0.04587651789188385, 0.030621599406003952, -0.03819318115711212, -0.009681006893515587, -0.006785785313695669, -0.030146628618240356, 0.0401768796145916, 0.013543630950152874, 0.033387601375579834, -0.012453993782401085, 0.05727580189704895, 0.008556446060538292, 0.031515661627054214, -0.051799673587083817, 0.01577179878950119, -0.06856332719326019, -0.00826308224350214, -0.011301493272185326, -0.022114045917987823, -0.03950633108615875, -0.026751989498734474, 0.008535491302609444, 0.008186248131096363, 0.024125684052705765, 0.01471010223031044, 0.01971125788986683, -0.03713148087263107, 0.0009473207755945623, 0.009059355594217777, 0.022952228784561157, -0.01609310321509838, 0.0042398059740662575, 0.04688233882188797, 0.013187403790652752, -0.006153656169772148, -0.02591380663216114, -0.015059344470500946, -0.01614898256957531, 0.030621599406003952, -0.005402784328907728, -0.008179263211786747, 0.011720584705471992, 0.03048190101981163, 0.018663529306650162, 0.03436547890305519, 0.0637577474117279, 0.025704260915517807, -0.05112912878394127, 0.017504043877124786, 0.002359134377911687, 0.022938258945941925, -0.009059355594217777, 0.01672174036502838, -0.032325901091098785, 0.036209482699632645, -0.021233955398201942, 0.017545951530337334, 0.04805579409003258, 0.022016258910298347, 0.0389196053147316, -0.0033405062276870012, 0.01895689219236374, -0.033080268651247025, 0.00345051777549088, -0.012069826945662498, -0.04283112287521362, -0.010470295324921608, -0.035706572234630585, -0.012761327438056469, 0.01058205310255289, 0.015855617821216583, 0.024237442761659622, -0.0007805573986843228, 0.04551330581307411, -0.02610938251018524, 0.029895173385739326, -0.027646051719784737, -0.01498949620872736, 0.05666113272309303, -0.008696142584085464, -0.017545951530337334, 0.04073566570878029, 0.011797417886555195, 0.005287534091621637, -0.013180418871343136, -0.05188349261879921, 0.015911497175693512, 0.007878915406763554, -0.01751801371574402, 0.010016280226409435, -0.10505220293998718, -0.01852383278310299, 0.028554081916809082, 0.06347835063934326, -0.009653068147599697, -0.042970821261405945, -0.03704766556620598, 0.036963846534490585, 0.011140841990709305, -0.010931296274065971, -0.03436547890305519, 0.02334338054060936, -0.014200207777321339, 0.002504070056602359, 0.031208327040076256, -0.019194377586245537, 0.04213263839483261, 0.014975526370108128, 0.0029633240774273872, 0.02014431729912758, -0.0024988313671201468, -0.01640043593943119, 0.015394617803394794, -0.06314307451248169, -0.027212990447878838, -0.02798132412135601, 0.0350639671087265, -0.014416738413274288, -0.0786215141415596, 0.036516815423965454, -0.07521290332078934, 0.023427199572324753, 0.058616891503334045, 0.05945507436990738, 0.054733313620090485, 0.03433753922581673, 0.013885889202356339, -0.049033671617507935, -0.0132083585485816, -0.0015803230926394463, -0.002662975573912263, 0.01952964998781681, -0.03048190101981163, -0.014696132391691208, -0.012433039955794811, 0.04573682323098183, -0.010183916427195072, -0.005636776797473431, -0.038221120834350586, 0.0069883461110293865, -0.03442135825753212, 0.021010439842939377, 0.030342204496264458, -0.038584332913160324, -0.01273338869214058, 0.052609916776418686, 0.03430959954857826, 0.061187319457530975, -0.009841659106314182, 0.0011324194492772222, -0.0007351558306254447, -0.04188118129968643, -0.02504768595099449, 0.019124530255794525, -0.01672174036502838, 0.015045374631881714, 0.0034679798409342766, -0.0009639097843319178, -0.0008050043834373355, 0.03235384076833725, -0.010051204822957516, 0.06141083315014839, -0.05305694788694382, 0.0524422824382782, 0.012356205843389034, 0.016987163573503494, 0.007229323498904705, -0.0032462107483297586, -0.02316177450120449, -0.04934100806713104, 0.028693778440356255, -0.055180344730615616, -0.024921957403421402, 0.025187382474541664, 0.013941767625510693, -0.005228162743151188, 0.0003071152896154672, 0.020297985523939133, -0.018942922353744507, -0.027115201577544212, 0.01345282793045044, -0.02967165783047676, -0.037885844707489014, -0.03763439133763313, 0.022421380504965782, -0.008661218918859959, 0.004505230579525232, -0.00652734562754631, -0.022253744304180145, -0.014304980635643005, 0.006143178790807724, 0.029643718153238297, -0.05403482913970947, -0.02978341653943062, 0.03355523571372032, 0.0056018526665866375, 0.0006028802017681301, 0.001387366559356451, -0.0057764737866818905, 0.04283112287521362, -0.05062621831893921, 0.03559481352567673, -0.021247925236821175, -0.001309660030528903, 0.00870312750339508, -0.006139686331152916, 0.010714765638113022, 0.0431663952767849, 0.03143184259533882, 0.016875406727194786, 0.00135418854188174, 0.031711235642433167, 0.013753176666796207, 0.0029807863757014275, -0.01473804097622633, -0.01857971027493477, 0.0025983655359596014, 0.0036880027037113905, -0.0367962084710598, 0.03900342434644699, -0.007222338579595089, -0.013187403790652752, 0.00044048234121873975, 0.00822815764695406, 0.026193201541900635, -0.014430707320570946, -0.002177528105676174, 0.019264226779341698, 0.01473804097622633, -0.00870312750339508, 0.004445859231054783, -0.009771809913218021, 0.02961578033864498, 0.035455118864774704, -0.04420015588402748, 0.0376623310148716, 0.009499400854110718, -0.006611164193600416, -0.026053505018353462, 0.021988319233059883, -0.019948741421103477, -0.013920813798904419, 0.03760645166039467, -0.015939436852931976, -0.01358554046601057, -0.035930085927248, 0.018412074074149132, 0.01348775252699852, -0.021233955398201942, -0.01733640767633915, 0.019236287102103233, 0.01647028513252735, -0.008304990828037262, 0.012817206792533398, 0.016037223860621452, -0.0013236297527328134, 0.061187319457530975, -0.01105003897100687, 0.01802092231810093, 0.0016685068840160966, 0.012412085197865963, -0.004260760731995106, -0.020856773480772972, -0.026263050734996796, 0.0033859077375382185, -0.019850954413414, 0.006747368723154068, 0.012405100278556347, 0.010526174679398537, -0.018663529306650162, 0.047720521688461304, 0.002655990654602647, 0.021750833839178085, 0.01083350833505392, -0.01789519563317299, -0.05353191867470741, 0.01908262073993683, -0.026933595538139343, -0.01783931627869606, -0.01154596358537674, 0.0024534298572689295, -0.015031404793262482, -0.026123352348804474, 0.01695922389626503, -0.017979012802243233, 0.005786951165646315, -0.008807900361716747, -0.011531993746757507, -0.04556918516755104, 0.015492405742406845, -0.012209524400532246, -0.010554114356637001, 0.03137596324086189, 0.006890558172017336, -0.005535496398806572, -0.0006993584684096277, 0.005133867263793945, 0.024265382438898087, 0.0024167592637240887, 0.011140841990709305, -0.014332919381558895, 0.062249016016721725, 0.026835808530449867, 0.01652616448700428, -0.01461231429129839, 0.020367832854390144, 0.007009300868958235, -0.004051215015351772, 0.027366656810045242, -0.0418253019452095, -0.003977874293923378, 0.0051513295620679855, -0.006583224516361952, 0.009967385791242123, -0.020633257925510406, 0.024125684052705765, -0.014947586692869663, -0.03975778818130493, 0.02842835523188114, 0.02166701667010784, 0.03950633108615875, -0.031459782272577286, 0.034952208399772644, -0.01202093344181776, 0.01376714650541544, 0.04274730384349823, -0.009129203855991364, 0.028568051755428314, 0.0031728697940707207, 0.004742715507745743, -0.005077988840639591, -0.04649118706583977, 0.004232821520417929, 0.03992542251944542, -0.003635616274550557, -0.020256076008081436, -0.008682172745466232, -0.0255925040692091, 0.009960400871932507, -0.053727492690086365, 0.02746444381773472, -0.033024389296770096, -0.02184862270951271, -0.005304996389895678, -0.028889354318380356, -0.01783931627869606, -0.030062809586524963, 0.02961578033864498, -0.024894017726182938, -0.00510243559256196, -0.0030192029662430286, -0.006157148629426956, 0.033890511840581894, -0.02265886589884758, 0.016121042892336845, 0.009143173694610596, 0.039394576102495193, 0.015911497175693512, -0.010651902295649052, -0.05057033896446228, -0.06403713673353195, 0.023930108174681664, 0.02077295444905758, -0.024991806596517563, -0.044982459396123886, -0.06660756468772888, 0.004016290884464979, -0.029895173385739326, 0.009024430997669697, 0.04551330581307411, -0.024586685001850128, -0.02465653419494629, 0.00642955768853426, -0.04825136810541153, 0.001276482013054192, -0.00022307876497507095, 0.0009586711530573666, -0.00013511326687876135, -0.017825346440076828, -0.007543642073869705, 0.018803225830197334, -0.035706572234630585, 0.02742253616452217, -0.030370144173502922, -0.009296840056777, 0.01803489215672016, -0.013257252052426338, -0.009003476239740849, 0.01771358959376812, -0.01701510325074196, 0.002048308262601495, 0.0376623310148716, 0.009401612915098667, 0.007927808910608292, 0.010547129437327385, -0.0004898128681816161, 0.0029458620119839907, -0.025816019624471664, 0.0037543587386608124, -0.02891729399561882, 0.0026682140305638313, 0.004183927550911903, -0.03266117721796036, -0.024069806560873985, -0.03579039126634598, 0.005633284337818623, -0.026765959337353706, 0.0028655361384153366, 0.033834632486104965, -0.0013699043774977326, 0.027687959372997284, -0.0266122929751873, 0.012963888235390186, -0.00791383907198906, -0.05484507232904434, 0.02233756147325039, 0.010121053084731102, -0.0033509836066514254, 0.03073335625231266, -0.0054551707580685616, -0.008081475272774696, 0.01132943294942379, 0.01652616448700428, -0.008745037019252777, 0.020996470004320145, -0.0023853275924921036, -0.002130380365997553, -0.009317794814705849, 0.004445859231054783, 0.042467910796403885, -0.001579450094141066, 0.024069806560873985, 0.02258901670575142, 0.03305232897400856, 0.00561582250520587, 0.041154757142066956, -0.007159475237131119, -0.016917316243052483, -0.03861227259039879, -0.025550594553351402, -0.03324790298938751, 0.02961578033864498, -0.0032514494378119707, 0.001980205997824669, 4.392818300402723e-05, 0.01765771023929119, -0.012572736479341984, 0.004145510494709015, -0.013012782670557499, 0.018998801708221436, -0.011399281211197376, -0.047357309609651566, -0.008549461141228676, -0.013494737446308136, -0.026249080896377563, -0.0009831181960180402, 0.005367860198020935, -0.009701961651444435, -0.07007205486297607, -0.0077392179518938065, 0.03210238739848137, -0.03355523571372032, -0.023985987529158592, -0.010784613899886608, 0.019557589665055275, 0.0959998294711113, -0.021261895075440407, -0.04274730384349823, -0.00832594558596611, -0.016372496262192726, -0.025508685037493706, -0.04679851979017258, 0.04101506248116493, -0.013857949525117874, 0.024237442761659622, -0.00656925467774272, 0.001418798347003758, 0.008731067180633545, 0.01609310321509838, 0.011217675171792507, 0.009171112440526485, 0.0021478424314409494, -0.0010040727211162448, 0.006003481801599264, 0.007962733507156372, 0.014696132391691208, 0.026947565376758575, -0.020325923338532448, -0.020758984610438347, 0.013836994767189026, -0.014570404775440693, 0.009771809913218021, 0.0012109989766031504, 0.014779950492084026, 0.013047706335783005, -0.0031239758245646954, -0.015143162570893764, 0.009143173694610596, 0.008800915442407131, 0.01783931627869606, 0.018384134396910667, 0.04618385434150696, -0.01647028513252735, -0.015129192732274532, -0.02166701667010784, -0.017294498160481453, 0.0016265978338196874, 0.0024027896579355, -0.0002121649304172024, -0.01142722088843584, 0.02479623071849346, -0.03118038736283779, -0.03769027069211006, -0.01342488918453455, -0.033387601375579834, -0.0009481938905082643, -0.043781064450740814, 0.013746191747486591, -0.04651912674307823, 0.028065141290426254, 0.013857949525117874, -0.010302659124135971, -0.013501722365617752, 0.011511038988828659, -0.0021164107602089643, 0.010784613899886608, -0.01123164501041174, 0.02634686790406704, 0.004714776296168566, 0.0183981042355299, -0.003213032614439726, 0.019445832818746567, -0.017182739451527596, 0.0338066928088665, 0.006254936568439007, -0.021303804591298103, -0.040148939937353134, -0.025145472958683968, 0.04204881936311722, 0.03542717918753624, 0.018314287066459656, 0.006254936568439007, 0.03481251001358032, 0.04593239724636078, 0.005231655202805996, -0.016679830849170685, -0.004592541139572859, -0.028693778440356255, 0.06766926497220993, 0.04118269681930542, -0.0037264195270836353, 0.0012075066333636642, -0.0027118695434182882, -0.02147144079208374, 0.03715942054986954, 0.019892863929271698, 0.0006871349760331213, -0.03017456829547882, -0.022267714142799377, -0.0016344557516276836, -0.001608262537047267, -0.016540134325623512, -0.008654233999550343, -0.0012302073882892728, 0.014668192714452744, -0.026682140305638313, 0.01086144708096981, -0.001980205997824669, -0.038444634526968, 0.024460958316922188, -0.0065308380872011185, 0.0485866405069828, -0.023511016741394997, -0.011287523433566093, -0.016162950545549393, 0.018062831833958626, -0.008116399869322777, -0.033834632486104965, 0.005521527025848627, 0.04207675904035568, -0.010561098344624043, 0.05238640308380127, -0.009296840056777, 0.0257880799472332, -0.010190901346504688, -0.002619320061057806, 0.024363169446587563, -0.024516835808753967, 0.03810936212539673, 0.013690313324332237, -0.03606978431344032, -0.002477876842021942, 0.036321237683296204, 0.027324747294187546, 0.06286368519067764, 0.010554114356637001, 0.00829102098941803, -0.023245593532919884, 0.002662975573912263, 0.02541089802980423, -0.004554124549031258, 0.024460958316922188, 0.0268497783690691, 0.004809071775525808, -0.024433018639683723, -0.015059344470500946, -0.02289634943008423, -0.03629329800605774, 0.007403945084661245, -0.006674027536064386, -0.004728746134787798, 0.03391844779253006, -0.03710354119539261, -0.00042061915155500174, 0.0056262994185090065, -0.035846270620822906, 0.02465653419494629, 0.02942020446062088, -0.028023233637213707, 0.037187360227108, 0.003370191901922226, 0.04288700222969055, 0.04414427652955055, 0.02064722776412964, -0.021862592548131943, 0.027953384444117546, 0.044786881655454636, -0.020800894126296043, 0.001425783266313374, -0.02603953517973423, 0.020242106169462204, -0.009806734509766102, -0.010253765620291233, 0.06537823379039764, 0.015520344488322735, -0.020437682047486305, -0.020605318248271942, 0.024894017726182938, 0.011853296309709549, 0.014919647015631199, 0.012426055036485195, -0.008828855119645596, 0.015003466047346592, 0.016442345455288887, 0.005577405449002981, -0.016162950545549393, -0.014542465098202229, 0.005532003939151764, 0.026179231703281403, 0.017881225794553757, 0.014905678108334541, 0.01091732643544674, 0.0023050017189234495, 0.015101253986358643, -0.0035552906338125467, -0.014724071137607098, 0.04738524556159973, 0.03229796513915062, 0.007396960165351629, 0.03556687384843826, -0.0009901029989123344, 0.023077957332134247, 0.008682172745466232, 0.028777597472071648, -0.005525019485503435, 0.01042140182107687, 0.009024430997669697, 0.05132470652461052, 0.0077741420827806, -0.009129203855991364, 0.001568972715176642, -0.023622775450348854, -0.01809077151119709, 0.00210593338124454, -0.012314297258853912, 0.0033317753113806248, -0.02636083774268627, -0.008786945603787899, -0.03190681338310242, -0.020745014771819115, 0.005633284337818623, -0.0182025283575058, 0.00822815764695406, 0.013795086182653904, -0.00022744429588783532, 0.026151292026042938, 0.014025585725903511, 0.0036495861131697893, -0.012530827894806862, 0.04042833298444748, 0.010526174679398537, 0.011022099293768406, 0.01728052832186222, -0.004575079306960106, 0.04959246143698692, 0.03366699442267418, 0.00545866321772337, 0.006108254659920931, -0.010903356596827507, -0.015450496226549149, 0.014284025877714157, -0.0304260216653347, -0.02053546905517578, -0.04956452175974846, 0.02296619862318039, 0.0008565176976844668, -0.013564585708081722, 0.014235131442546844, 0.017671680077910423, 0.019571559503674507, 0.005996496882289648, -0.010435371659696102, 0.03118038736283779, -0.0270453542470932, -0.02233756147325039, 0.004079154692590237, -0.014877738431096077, -0.04020481929183006, -0.01746213436126709, -0.01317343395203352, -0.00524213258177042, 0.015422556549310684, -0.026430686935782433, -0.011629781685769558, 0.010218841023743153, -0.0018789255991578102, 0.005706625524908304, -0.03875196725130081, 0.013564585708081722, 0.03542717918753624, -0.02465653419494629, 0.0037578511983156204, -0.0064470199868083, 0.000676657713484019, 0.020423712208867073, 0.012460978701710701, 0.0025931268464773893, -0.030593659728765488, -0.03587421029806137, 0.007093118969351053, -0.016162950545549393, -0.017350375652313232, -0.011790432967245579, 0.0031327069737017155, -0.010784613899886608, 0.0003629941202234477, -0.025494715198874474, -0.029084930196404457, -0.005961572751402855, -0.014793920330703259, 0.0018911490915343165, -0.044591307640075684, -0.004355056211352348, 0.023008108139038086, 0.0031763622537255287, 0.004026768263429403, 0.0016947000985965133, -0.005654239095747471, -0.017434194684028625, -0.0024132670368999243, -0.00442839739844203, 0.004201389383524656, 0.01007215864956379, -0.010463310405611992, -0.018384134396910667, 0.023119864985346794, 0.006223504431545734, 0.030342204496264458, 0.011937115341424942, 0.0039045331068336964, 0.003445279086008668, 0.004169957712292671, 0.02284047193825245, -0.0007561104139313102, -0.007299172226339579, 0.035399239510297775, 0.0005740676424466074, 0.005339920520782471, 0.01338996458798647, 0.029699597507715225, 0.0027171080000698566, 0.002844581613317132, -0.021680986508727074, -0.02717108093202114, 0.022686805576086044, 0.011189735494554043, -0.014402768574655056, -0.019543619826436043, 0.0065098837949335575, 0.001307913800701499, 0.011860281229019165, 0.00024577954900451005, -0.0507100373506546, 0.010218841023743153, -0.006101269740611315, -0.006216519977897406, 0.0073131415992975235, 0.00033134399564005435, -0.03500808775424957, -0.019697288051247597, 0.006915004923939705, 0.013543630950152874, 0.01871940866112709, 0.008933627977967262, 0.0026490057352930307, -0.005203715991228819, -0.00254248664714396, 0.029140809550881386, 0.08046551793813705, 0.004616988357156515, -0.02284047193825245, 0.0034662336111068726, 0.04118269681930542, -0.009317794814705849, -0.003586722305044532, -0.005759011954069138, -0.0014057018561288714, 0.001569845830090344, -0.04204881936311722, 0.04285906255245209, 0.025522654876112938, 0.011930130422115326, -0.0009045385522767901, 0.0007168205920606852, 0.0003926797362510115, 0.05132470652461052, 0.04629560932517052, 0.02291031926870346, 0.016805557534098625, -0.03352729603648186, -0.005374845117330551, -0.006551792845129967, -0.010114068165421486, -0.03391844779253006, 0.014263071119785309, -0.012908009812235832, -0.008786945603787899, 0.014416738413274288, -0.021639076992869377, 0.001458961283788085, -0.005350397899746895, 0.035706572234630585, -0.020381802693009377, -0.025634413585066795, 0.02366468496620655, -0.009282870218157768, 0.03240972012281418, 0.005308488849550486, -0.02271474339067936, 0.02352498658001423, 0.0057555194944143295, 0.02166701667010784, 0.03296850994229317, 0.0014493571361526847, -0.00020212419622112066, 0.0019330582581460476, 0.005828860215842724, -0.010176931507885456, 0.00682420190423727, -0.0038346846122294664, -0.054230403155088425, -0.015743860974907875, -0.008842824958264828, 0.012572736479341984, -0.0015244443202391267, 0.000467985199065879, -0.058672770857810974, -0.002366119297221303, 0.012789267115294933, 0.040148939937353134, -0.05017918720841408, -0.001610008766874671, -0.01230032742023468, -0.008807900361716747, 0.014304980635643005, -0.0033090743236243725, -0.014919647015631199, 0.02197434939444065, -0.0027537785936146975, -0.021485410630702972, 0.028372475877404213, -0.0028253733180463314, -0.005339920520782471, 0.027687959372997284, -0.02803720347583294, 0.004732238594442606, -0.018663529306650162, -0.0247263815253973, -0.01790916547179222, -0.017322437837719917, 0.012453993782401085, 0.041154757142066956, -0.0033911464270204306, -0.002320717554539442, 0.023385290056467056, 0.03537129983305931, -0.007718263193964958, 0.043585486710071564, -0.012908009812235832, -0.012209524400532246, 0.013795086182653904, 0.02365071512758732, -0.0038835785817354918, 0.011818372644484043, -0.005783458705991507, -0.04688233882188797, 0.0035744989290833473, -0.02158319763839245, 0.009939447045326233, -0.0011385311372578144, 0.005263087339699268, 0.013934782706201077, -0.02961578033864498, 0.010596022941172123, -0.010931296274065971, 0.0006661803927272558, -0.008395793847739697, 0.0007395214051939547, -0.012963888235390186, 0.007725248113274574, 0.052609916776418686, -0.01396272238343954, -0.01386493444442749, -0.009038400836288929, -0.007962733507156372, -0.023301471024751663, 0.0022683311253786087, -0.005999989341944456, -0.004183927550911903, -0.007009300868958235, -0.0038451619911938906, 0.00455063208937645, -0.007753187790513039, 0.044535428285598755, -0.02127586491405964, 0.031208327040076256, -0.00018837276729755104, -0.003901040880009532, 0.01188822090625763, 0.009974370710551739, 0.02289634943008423, -0.00020998215768486261, -0.016358526423573494, -0.015520344488322735, 0.01392779778689146, -0.01908262073993683, -0.009995325468480587, 0.0015296830097213387, -0.016190890222787857, 0.016037223860621452, -0.034896329045295715, -0.012460978701710701, -0.027743838727474213, 0.01570195145905018, 0.0021880054846405983, -0.027576202526688576, -0.0038346846122294664, -0.0050011551938951015, -0.017070982605218887, 0.02404186688363552, 0.01715479977428913, 0.0005194984842091799, 0.0012555274879559875, -0.012495903298258781, 0.032381780445575714, -0.011315463110804558, 0.02772986888885498, -0.0027921951841562986, 0.0022630926687270403, 0.0022334069944918156, -0.019557589665055275, -0.015562254004180431, 0.020619288086891174, 0.008214187808334827, -0.008661218918859959, 0.0135226771235466, -0.0240977443754673, 0.0008084967848844826, -0.02972753718495369, -0.035510994493961334, 0.022700773552060127, 0.0025197858922183514, -0.03104068897664547, 0.004344578832387924, 0.022058168426156044, 0.02629098854959011, -0.0334155410528183, -0.0011577395489439368, -0.006523853167891502, 0.007536657154560089, -0.010910341516137123, -0.018370164558291435, -0.006321292370557785, -0.010128038004040718, 0.030006932094693184, -0.010114068165421486, 0.022812532261013985, -0.005224670749157667, 0.013515692204236984, -0.0009036654373630881, 0.019501712173223495, -0.04000924155116081, 0.0012537812581285834, -0.031012751162052155, 0.014291010797023773, 0.01239811535924673, 0.03263323754072189, -0.004309654701501131, 0.02121998555958271, 0.00587076973170042, -0.02077295444905758, -0.018551770597696304, -0.0009499401203356683, -0.044786881655454636, -0.0026420208159834146, -0.00442839739844203, 0.022421380504965782, 0.00012583650823216885, 0.038025543093681335, 0.009820704348385334, 0.0046693747863173485, 0.024880047887563705, -0.0028637899085879326, -0.01652616448700428, -0.006579732056707144, 0.018607649952173233, -0.011168780736625195, -0.02584395930171013, -0.0029825326055288315, -0.0049627386033535, 0.047720521688461304, -0.03612566366791725, -0.0011752016143873334, 0.005441200919449329, -0.0016667606541886926, 0.009527340531349182, 0.04048421233892441, -0.04101506248116493, 0.015632102265954018, 0.004379503428936005, -0.006108254659920931, -0.020381802693009377, -0.01370428316295147, -0.007543642073869705, -0.027268867939710617, 0.011867266148328781, -0.031012751162052155, -0.0325494185090065, -0.010086128488183022, 0.004403950180858374, -0.007690323982387781, -0.0012520350283011794, -0.011036069132387638, 0.02402789704501629, -0.009220006875693798, -0.03416990488767624, -0.007878915406763554, -0.010651902295649052, -0.024614624679088593, -0.007148997858166695, 0.001272989553399384, -0.010945266112685204, 0.026207171380519867, -0.012824191711843014, 0.0017287512309849262, -0.016302648931741714, -0.002807911252602935, -0.016917316243052483, -0.026388777419924736, -0.04506627470254898, 0.031208327040076256, -0.001718273968435824, 0.009345734491944313, 0.047916095703840256, -0.01236319076269865, -0.039143119007349014, -0.06280780583620071, -0.00666704261675477, -0.01461231429129839, 0.019040711224079132, 0.0074598235078155994, 9.94250294752419e-05, -0.022393440827727318, -0.0005683924537152052, 0.0021914979442954063, -0.011895205825567245, 0.01814664900302887, 0.009785779751837254, 0.019320106133818626, 0.03397432714700699, 0.007403945084661245, 0.010882401838898659, 0.022547107189893723, 0.016931286081671715, -0.020689137279987335, -0.008444688282907009, 0.025522654876112938, -0.011266568675637245, 0.04411633685231209, 0.01358554046601057, 0.03472869098186493, 0.005828860215842724, 0.028554081916809082, 0.04107093811035156, -0.011413251049816608, 0.042775243520736694, 0.003434801707044244, -0.007410929538309574, -0.01890101470053196, 0.028889354318380356, 0.029336385428905487, 0.0037683285772800446, 0.0040651848539710045, 0.01709892228245735, 0.016945255920290947, 0.03741087764501572, -0.008584384806454182, -0.028456293046474457, 0.011036069132387638, 0.01473804097622633, -0.025396928191184998, -0.026318928226828575, 0.013327101245522499, 0.008402778767049313, -0.02772986888885498, -0.019669348374009132, 0.02059134840965271, 0.04364136606454849, 0.0074668084271252155, -0.006237474270164967, 0.013033736497163773, -0.019976681098341942, 0.0329405702650547, -0.01389985904097557, 0.004913844633847475, 0.01233525201678276, -0.013369009830057621, 0.008696142584085464, 0.011874251067638397, -0.016302648931741714, 0.04062391072511673, -0.05856101214885712, 0.004292192403227091, 0.026500534266233444, -0.011867266148328781, 0.019054681062698364, 0.001722639543004334, -0.022575046867132187, -0.013327101245522499, 0.011685660108923912, -0.01202093344181776, 0.01790916547179222, -0.004878920502960682, 0.038891665637493134, 0.02071707509458065, 0.02415362372994423, 0.009185082279145718, 0.0033876539673656225, 0.023497046902775764, 0.041965000331401825, -0.029140809550881386, -0.0014397529885172844, 0.01890101470053196, -0.008409763686358929, 0.0040686773136258125, 0.001309660030528903, 0.01947377249598503, -0.01990683376789093, -0.00441093510016799, 0.03850051388144493, -0.003967396914958954, 0.022686805576086044, 0.029336385428905487, 0.0006447893101722002, 0.00397438183426857, 0.006621641106903553, 0.0027258391492068768, -0.029056990519165993, 0.017252588644623756, -0.0007268613553605974, 0.01709892228245735, -0.0006330023752525449, -0.002477876842021942, -0.05428628250956535, -0.02454477548599243, -0.015282860025763512, -0.024614624679088593, 0.008814885281026363, 0.025257231667637825, -0.045401547104120255, 0.008675187826156616, -0.02627701871097088, 0.0270453542470932, -0.00842373352497816, -0.0046658823266625404, 0.012426055036485195, 0.03277293220162392], [-0.010807429440319538, -0.014789114706218243, 0.03479791805148125, 0.011322706937789917, -0.038679223507642746, 0.02253834344446659, -0.017653251066803932, 0.016007041558623314, 0.005112616810947657, 0.04526405781507492, -0.015725981444120407, -0.011275863274931908, 0.02678101137280464, -0.003499867394566536, -0.028239848092198372, 0.03383428230881691, -0.027075456455349922, 0.03803680092096329, 0.008231045678257942, -0.004550496581941843, 0.049065060913562775, 0.026540102437138557, 0.004326317925006151, 0.006782247684895992, -0.03675195202231407, -0.03439640253782272, 0.012667779810726643, 0.025844145566225052, 0.020584305748343468, -0.07211198657751083, 0.08699478954076767, -0.018764106556773186, 0.042587295174598694, -0.018737340345978737, 0.004148982465267181, -0.0013082678196951747, -0.0363236702978611, 0.013945934362709522, 0.036537811160087585, 0.010158315300941467, -0.021226728335022926, 0.041784267872571945, -0.02625904232263565, 0.008773090317845345, -0.023916875943541527, 0.07387865334749222, 0.035306502133607864, -0.042105477303266525, -0.017077745869755745, 0.022618645802140236, 0.00426609069108963, 0.0076555414125323296, 0.0007545124972239137, -0.019995417445898056, 0.04729839786887169, 0.025670155882835388, 0.007816147059202194, 0.022431273013353348, 0.018817642703652382, -0.033272162079811096, 0.0022551727015525103, -0.01615426316857338, -0.026995152235031128, 0.05345495417714119, -0.010446066968142986, 0.016421940177679062, 0.0007361097959801555, 0.005343487951904535, -0.020089104771614075, 1.1756582352973055e-05, 0.03364690765738487, 0.028507523238658905, 0.006190014071762562, -0.036859024316072464, -0.01258078496903181, -0.020477235317230225, 0.008505414240062237, 0.013142905198037624, -0.015284315682947636, -0.005581050645560026, 0.005664699245244265, 0.027463587000966072, -0.020932285115122795, 0.02872166410088539, 0.028614593669772148, -0.016047192737460136, -0.05573020130395889, 0.0008297964814119041, -0.04068679362535477, 0.005564320832490921, -0.038063567131757736, -0.024131016805768013, -0.04430042579770088, 0.06006655842065811, 0.040552955120801926, -0.03584185242652893, 0.03386104851961136, -0.023207534104585648, -0.04496961459517479, 0.02466636896133423, -0.011837983503937721, -0.006256932858377695, 0.004985470790416002, 0.019031783565878868, 0.054472122341394424, -0.04389891028404236, -0.006414192728698254, 0.047030720859766006, 0.00687258830294013, -0.03533326834440231, -0.08137358725070953, -0.010138238780200481, -0.01832244172692299, 0.05792514607310295, -0.01230641733855009, -0.012246189638972282, -0.05808575451374054, 0.0146686602383852, 0.037769123911857605, 0.017278503626585007, -0.07912510633468628, -0.043176185339689255, 0.052758995443582535, -0.077304907143116, 0.029310552403330803, -0.01713128201663494, -0.03179994225502014, -0.00726741086691618, -0.0725938081741333, -0.02874843217432499, 0.0787503644824028, -0.005788499489426613, 0.04106154292821884, -0.04183780401945114, -0.0055007473565638065, 0.012647704221308231, 0.0013735139509662986, -0.0104393744841218, -0.009482432156801224, -0.05270545929670334, 0.03894690051674843, 0.022484807297587395, 0.010399223305284977, 0.016636081039905548, -0.07478874921798706, 0.007796071469783783, 0.02680777944624424, 0.025656770914793015, -0.020437084138393402, -0.007581930607557297, -0.029578229412436485, 0.020182792097330093, -0.022591877728700638, -0.020731527358293533, 0.0057081966660916805, -0.01092788390815258, 0.015391386114060879, 0.06686553359031677, 0.0004839085158891976, 0.011309322901070118, -0.028453988954424858, -0.022257283329963684, -0.004627453628927469, 0.0026985115837305784, 0.02466636896133423, 0.005028968211263418, -0.02071814425289631, 0.03260296955704689, -0.0602806992828846, -0.062207967042922974, -0.03875952586531639, -0.04328325390815735, -0.03661811351776123, -0.0024341812822967768, 0.022913089022040367, -0.05765746906399727, 0.006691907066851854, -0.037929728627204895, -0.0011953419307246804, -0.001343400334008038, -0.00017064363055396825, 0.017733553424477577, -0.0727008804678917, -0.030461560934782028, -0.06889987736940384, 0.04339032620191574, -0.00528660649433732, -0.009616270661354065, -0.008846701122820377, -0.011764372698962688, 0.023100463673472404, 0.027891868725419044, 0.022578494623303413, 0.048931222409009933, -0.027918636798858643, 0.031425196677446365, -0.02215021289885044, 0.002046050503849983, -0.0007632956258021295, 0.021481022238731384, 0.053829699754714966, -0.03150549903512001, 0.05701504647731781, 0.028052473440766335, -0.041329216212034225, -0.02829338237643242, -0.00014910406025592238, 0.02256510965526104, 0.012995683588087559, -0.030943378806114197, -0.004848286509513855, -0.04901152849197388, -0.024652985855937004, 0.019018400460481644, -0.027249446138739586, 0.041650429368019104, -0.02318076603114605, 0.004396582953631878, -0.03940194845199585, 0.05931706354022026, 0.010807429440319538, -0.0038043491076678038, 0.013149597682058811, -0.005801883526146412, -0.011965129524469376, 0.0189113300293684, 0.0063640037551522255, -0.022230515256524086, -0.002663379069417715, -0.048583243042230606, -0.008344807662069798, 0.028079241514205933, -0.031237822026014328, -0.012359952554106712, -0.003133485559374094, -0.014561589807271957, -0.02625904232263565, -0.017024211585521698, 0.0025094652082771063, 0.008605792187154293, 0.03308478742837906, 0.008625867776572704, 0.014748962596058846, 0.054445356130599976, 0.01252724975347519, -0.001943998970091343, -0.02026309445500374, -0.005360217299312353, 0.03833124414086342, 0.010071320459246635, 0.041784267872571945, 0.007086729630827904, 0.026727477088570595, -0.05051051452755928, 0.014053004793822765, 0.006792285479605198, -0.008405035361647606, -0.01492295227944851, 0.03643074259161949, -0.048877689987421036, -0.012687855400145054, -0.015471689403057098, -0.002409086562693119, 0.017961079254746437, -0.057068582624197006, -0.022685565054416656, 0.03557417914271355, -0.0015090249944478273, -0.03196054697036743, 0.03683225437998772, -0.03423579782247543, 0.028534291312098503, 0.018697187304496765, -0.02194945514202118, -0.05222364142537117, 0.00317363697104156, -0.018201986327767372, -0.018723955377936363, 0.00032539397943764925, 0.004108830820769072, -0.03056863136589527, -0.02888227067887783, -0.009469048120081425, -0.030381258577108383, 0.0031937125604599714, 0.016207799315452576, -0.005159460473805666, -0.01053975336253643, -0.013189748860895634, 0.012600860558450222, 0.02075829543173313, 0.008391651324927807, 0.011985205113887787, -0.016582544893026352, 0.06702613830566406, 0.03568124771118164, 0.002840714529156685, -0.051233239471912384, 0.019888347014784813, 0.0078027634881436825, 0.005166152026504278, 0.02370273508131504, 0.010352380573749542, -0.0024442190770059824, -0.010044552385807037, 0.01428052969276905, 0.02176208235323429, 0.015204012393951416, -0.018309056758880615, 0.019018400460481644, -0.02797217108309269, 0.036082763224840164, -0.024920661002397537, -0.04004437103867531, -0.05840696394443512, -0.025763841345906258, 0.022712333127856255, 0.02016940712928772, -0.021440869197249413, 0.014066388830542564, 0.019152237102389336, -0.014414367265999317, 0.009469048120081425, -0.026272427290678024, 0.019888347014784813, -0.023609047755599022, 0.030648933723568916, 0.020437084138393402, -0.034985288977622986, -0.035627711564302444, -0.02952469326555729, -0.035467106848955154, 0.030327722430229187, -0.02447899617254734, -0.011824599467217922, -0.00034421496093273163, 0.019500216469168663, 0.056158483028411865, -0.0018519852310419083, 0.017987845465540886, 0.047030720859766006, -0.03241559863090515, -0.027075456455349922, -0.01230641733855009, -0.04756607487797737, 0.02767772786319256, 0.011175484396517277, 0.02719590999186039, 0.0025245219003409147, 0.06745442003011703, 0.006728712469339371, 0.036082763224840164, -0.06012009084224701, 0.0007666415767744184, -0.055248383432626724, -0.014427751302719116, 0.015618911013007164, -0.01296891551464796, -0.025201721116900444, -0.01252724975347519, 0.00011564452142920345, 0.028159543871879578, 0.013236592523753643, 0.008773090317845345, -0.009281675331294537, -0.00423263106495142, -0.00924152322113514, 0.009770183824002743, -0.0006223473465070128, -0.038063567131757736, 0.014360832050442696, 0.05208980292081833, 0.013658181764185429, -0.002986263483762741, -0.04529082775115967, -0.03474438190460205, 0.008799857459962368, 0.01683683879673481, -0.02402394637465477, -0.011550231836736202, 0.012467022985219955, 0.02904287725687027, 0.027891868725419044, -0.015083558857440948, 0.06745442003011703, 0.018697187304496765, -0.07302208989858627, -0.006440960336476564, -0.01251386571675539, 0.02496081404387951, 0.004540458787232637, 0.024371925741434097, -0.05578373745083809, 0.011978513561189175, -0.016073960810899734, 0.022618645802140236, 0.05002869665622711, 0.0417574979364872, 0.04057972505688667, -0.009448972530663013, 0.01674315147101879, -0.020022185519337654, -0.0065614148043096066, -0.04183780401945114, -0.04938627406954765, -0.01962067186832428, -0.04879738762974739, -0.020343396812677383, 0.016140880063176155, -0.016649464145302773, 0.03881306201219559, 0.0035299810115247965, 0.052116572856903076, -0.030086813494563103, 0.021025972440838814, -0.01841612718999386, -0.016502242535352707, 0.057229187339544296, 0.009917406365275383, -0.009984325617551804, 0.03584185242652893, 0.02447899617254734, 0.0009694900363683701, -0.02253834344446659, -0.041034772992134094, 0.026754243299365044, 0.009622962214052677, -0.005668045021593571, -0.006752134300768375, -0.1204543262720108, 0.007220567669719458, 0.022417888045310974, 0.03402165696024895, 0.003606937825679779, -0.03602922707796097, -0.023903490975499153, 0.04614739120006561, 0.013149597682058811, -0.010887732729315758, -0.04197164252400398, 0.021052738651633263, -0.005778461694717407, 0.007883066311478615, 0.02532217651605606, -0.014026236720383167, 0.028935806825757027, -0.004784713499248028, -0.0055576288141310215, 0.008993922732770443, 0.02231081761419773, -0.0266471728682518, 0.012406795285642147, -0.0486367791891098, 0.004838248714804649, -0.03996406868100166, 0.03442316874861717, 0.01128255482763052, -0.05947766825556755, 0.04496961459517479, -0.07521703839302063, 0.002839041640982032, 0.05578373745083809, 0.03332569822669029, 0.0648847296833992, 0.04804789274930954, -0.011034954339265823, -0.020704761147499084, -0.030996913090348244, -0.0073075625114142895, -0.010854273103177547, 0.0054974015802145, -0.016810070723295212, -0.02014264091849327, -0.019379762932658195, 0.02794540300965309, -0.00032121152617037296, -0.02269894815981388, -0.05423121526837349, -0.004289512522518635, -0.0401514433324337, 0.003887997940182686, 0.051848895847797394, -0.0046475292183458805, -0.010807429440319538, 0.04885092005133629, 0.015230780467391014, 0.06809684634208679, -0.019125470891594887, -0.009890638291835785, -0.00572158070281148, -0.038705989718437195, -0.022324202582240105, 0.02797217108309269, -0.015244164504110813, -0.0034195645712316036, -0.004292858298867941, -0.03169286996126175, 0.0017382228979840875, 0.03557417914271355, -0.017733553424477577, 0.037287306040525436, -0.0532408133149147, 0.02794540300965309, 0.00843180250376463, 0.029578229412436485, 0.002020956017076969, 0.0061565544456243515, -0.0385989211499691, -0.025402478873729706, 0.006461036391556263, -0.0788038969039917, -0.02596459910273552, 0.02500096522271633, -0.008331424556672573, -0.01845628023147583, -0.018201986327767372, 0.013316894881427288, -0.0021230075508356094, -0.02447899617254734, 0.00987725518643856, -0.023916875943541527, -0.03503882512450218, -0.023983795195817947, 0.02062445692718029, -0.005122654605656862, 0.016047192737460136, -0.022056525573134422, -0.021253496408462524, -0.020115872845053673, -0.003073258325457573, 0.02288632281124592, -0.03934841230511665, -0.03182670846581459, 0.036082763224840164, 0.01507017482072115, -0.010298844426870346, 0.018831025809049606, -0.012701239436864853, 0.005711542442440987, -0.04970748350024223, 0.03897366672754288, -0.026687325909733772, -0.0026767628733068705, 0.012440254911780357, 0.0006800650735385716, 0.003345953533425927, 0.02671409212052822, 0.024452228099107742, 0.020276477560400963, 0.02049061842262745, 0.027918636798858643, 0.025991367176175117, 0.01784062385559082, -0.0018068149220198393, -0.014829265885055065, -0.01946006529033184, 0.011583691462874413, -0.03768882155418396, 0.032683275640010834, 0.009984325617551804, -0.03059539943933487, 0.004888438154011965, -0.011302631348371506, -0.003627013647928834, -0.016595929861068726, 0.008552256971597672, 0.0017649905057623982, 0.016488859429955482, -0.007648849859833717, 0.003978338558226824, 0.008766397833824158, 0.047994356602430344, 0.024853741750121117, -0.03428933024406433, 0.04143628850579262, 0.006648409646004438, -0.0025931140407919884, -0.036216601729393005, -0.004389890935271978, -0.01008470356464386, -0.019767893478274345, 0.027222678065299988, -0.023742886260151863, -0.008585716597735882, -0.014427751302719116, 7.65256118029356e-06, 0.03463730961084366, -0.022899705916643143, -0.017171433195471764, 0.03201408311724663, 0.026834547519683838, -0.010004401206970215, 0.001793431118130684, 0.011255787685513496, -0.0065915281884372234, 0.053829699754714966, -0.011938362382352352, 0.01786739192903042, 0.005728272255510092, 0.0073410221375525, 0.0117844482883811, -0.020115872845053673, -0.02550954930484295, 0.0036136298440396786, -0.0032773613929748535, 0.012346568517386913, 0.01848304644227028, 0.002904287539422512, -0.00729417847469449, 0.036537811160087585, 0.0026382843498140574, 0.016890373080968857, 0.011697453446686268, -0.021440869197249413, -0.04606708884239197, 0.023756269365549088, -0.03364690765738487, -0.03688579052686691, -0.021588092669844627, 0.01644870825111866, -0.009348593652248383, 0.0019941881764680147, 0.02749035321176052, -0.014628509059548378, 0.01786739192903042, -0.00987725518643856, -0.0278115663677454, -0.020811831578612328, 0.02674086019396782, -0.005457249935716391, -0.008405035361647606, 0.0494130402803421, 0.0068592047318816185, -0.015578759834170341, -0.0004638328100554645, -0.013524344190955162, 0.030996913090348244, -0.010499602183699608, 0.0009970940882340074, 0.0009979306487366557, 0.06536655128002167, 0.031585801392793655, 0.013477500528097153, -0.01745249330997467, 0.03150549903512001, 0.0076555414125323296, 0.022524958476424217, 0.03527973219752312, -0.013959318399429321, 0.0035032134037464857, -0.004968740977346897, -0.021293647587299347, 0.02062445692718029, -0.053856465965509415, 0.03292418271303177, -0.015752749517560005, -0.02797217108309269, 0.021775465458631516, 0.046120621263980865, 0.004597340244799852, -0.024171167984604836, 0.018790874630212784, -0.028935806825757027, 0.01729188859462738, 0.04507668688893318, 0.004737870302051306, 0.020182792097330093, -0.014253761619329453, -0.0031652720645070076, 0.0017148011829704046, -0.04076709598302841, 0.005514131393283606, 0.029712067916989326, -0.020062336698174477, -0.010800737887620926, 0.010399223305284977, -0.023783037438988686, 0.02315399795770645, -0.05187566205859184, 0.02687469869852066, -0.03155903518199921, -0.0050523895770311356, -0.005564320832490921, -0.009529275819659233, -0.005330103915184736, -0.01971435733139515, 0.017559563741087914, -0.039937302470207214, 0.019901731982827187, -0.0030648934189230204, -0.016435323283076286, 0.03228176012635231, 0.007970061153173447, -0.0010397550649940968, 0.0042560528963804245, 0.053856465965509415, 0.003006339306011796, -0.024465611204504967, -0.06177968531847, -0.08844023942947388, 0.020865365862846375, 0.029712067916989326, -0.015873203054070473, -0.046709511429071426, -0.03693932667374611, -0.004162366036325693, 0.004701064899563789, 0.01181790791451931, 0.04847617447376251, -0.026700709015130997, -0.020423701032996178, -0.01251386571675539, -0.037474680691957474, 0.01298229955136776, -0.008411726914346218, 0.022364353761076927, -0.012313108891248703, -0.023327987641096115, 0.012400103732943535, 0.014173459261655807, -0.040927704423666, 0.04111507534980774, -0.023127229884266853, -0.030782772228121758, 0.011101873591542244, -0.005969181191176176, -0.006116402801126242, 0.027249446138739586, -0.0024893893860280514, 0.0001960519584827125, 0.04483577609062195, -0.013651490211486816, 0.011235712096095085, -0.0009025709587149322, 0.021159809082746506, 0.001965747680515051, -0.018991632387042046, 0.004383198916912079, -0.0293373204767704, 0.006832437124103308, 0.01800123043358326, -0.052892833948135376, -0.019634054973721504, -0.029631763696670532, 0.013196440413594246, -0.010747202672064304, -0.0007929909625090659, 0.015297699719667435, -0.004175750073045492, 0.03137166053056717, -0.030167117714881897, 0.01144316140562296, 0.0139057831838727, -0.05589080601930618, -0.006012678612023592, -0.0054539041593670845, -0.012052124366164207, 0.018737340345978737, -0.011603767052292824, 0.019727742299437523, 0.01011816319078207, 0.0317196398973465, -0.0010707051260396838, 0.004674296826124191, -0.012152503244578838, -0.019379762932658195, -0.01875072345137596, -0.003727392293512821, 0.04877061769366264, 0.002757065696641803, -0.006250241305679083, 0.01713128201663494, 0.043202951550483704, 0.005132692866027355, 0.04274790361523628, -0.0019690936896950006, 0.0043028960935771465, -0.01962067186832428, -0.02292647399008274, -0.03279034420847893, 0.030863074585795403, -0.001566742779687047, 0.006176630035042763, -0.03372721001505852, 0.009475740604102612, -0.0013475827872753143, -0.005520823411643505, -0.030060045421123505, 0.011643918231129646, -0.003817732911556959, -0.02842722088098526, -0.012038740329444408, -0.0022953241132199764, -0.03798326477408409, -0.011878134682774544, 0.0038679223507642746, -0.010814121924340725, -0.06397463381290436, -0.010626748204231262, 0.02917671389877796, -0.006183322053402662, -0.0033375886268913746, 0.003560094628483057, 0.0324423648416996, 0.08715539425611496, -0.016957292333245277, -0.03490498661994934, -0.00881993304938078, -0.008184202015399933, -0.018576733767986298, -0.036377206444740295, 0.020222943276166916, -0.021614858880639076, 0.025228489190340042, 0.0015475035179406404, 0.017987845465540886, 0.0026165356393903494, 0.030381258577108383, 0.014682044275105, -0.00772915268316865, 0.008492030203342438, -0.003436294151470065, 0.02037016488611698, 0.004711102694272995, 0.032817110419273376, 0.010626748204231262, -0.0393751822412014, -0.024693137034773827, 0.0040151444263756275, -0.019179005175828934, 0.0017566255992278457, -0.010318920947611332, 0.025977982208132744, -0.009977633133530617, 0.028989341109991074, 0.0035768242087215185, -0.009883946739137173, -0.004774675704538822, 0.03875952586531639, 0.020972436293959618, 0.055248383432626724, -0.024907277897000313, -0.030782772228121758, -0.011081798002123833, -0.016850221902132034, 0.0025496166199445724, 0.006072905380278826, -0.01142977736890316, -0.00807713158428669, 0.044407494366168976, -0.017238352447748184, -0.04237315431237221, -0.020597688853740692, -0.0185499656945467, 0.02441207692027092, -0.032683275640010834, 0.019607286900281906, -0.019112085923552513, -0.002241788897663355, 0.0011660647578537464, -0.00632050633430481, -0.014226994477212429, 0.009582811035215855, -0.016007041558623314, 0.01802799664437771, -0.007996829226613045, 0.020089104771614075, -0.005514131393283606, 0.026955001056194305, -0.006628334056586027, 0.04668274149298668, -0.00408875523135066, 0.008947080001235008, 0.0036203216295689344, -0.006835782900452614, -0.024907277897000313, -0.018978247418999672, 0.04467517137527466, 0.0019038475584238768, 0.010338996537029743, 0.022163596004247665, 0.014374216087162495, 0.03260296955704689, 0.0125473253428936, -0.0301135815680027, -0.0016177685465663671, 0.007327638100832701, 0.05658676475286484, 0.05192919820547104, 0.008003520779311657, -0.0051996116526424885, 0.011376242153346539, 0.010693667456507683, 0.0011300957994535565, 0.038866594433784485, -0.018643653020262718, -0.031907010823488235, -0.021507788449525833, -0.019179005175828934, -0.0013509286800399423, -0.02548278123140335, -0.008123975247144699, 0.00021832346101291478, 0.020115872845053673, -0.022002989426255226, -0.0063539654947817326, -0.006885972339659929, -0.030247420072555542, 0.024599449709057808, -0.01592673920094967, 0.014561589807271957, -0.006240203510969877, -0.0012865191092714667, -0.009094301611185074, 0.001141806598752737, -0.017787089571356773, -0.04652213677763939, 0.017465876415371895, 0.037769123911857605, 0.00044082937529310584, 0.05326757952570915, -0.012774850241839886, -0.0049453191459178925, 0.003178655868396163, -0.0014680371386930346, 0.018242139369249344, -0.011858059093356133, 0.029551461338996887, 0.0020761641208082438, -0.02901610918343067, -0.01686360500752926, 0.023689350113272667, 0.01644870825111866, 0.040231745690107346, 0.016796685755252838, 0.015779517590999603, -0.023207534104585648, -0.006865896750241518, 0.028025707229971886, -0.03565448150038719, 0.04716455936431885, 0.024652985855937004, 0.01294883992522955, -0.013343662954866886, -0.016488859429955482, -0.014481286518275738, -0.009904022328555584, 0.003473099786788225, -0.0009025709587149322, 0.012279649265110493, 0.030622165650129318, -0.018175220116972923, 2.3656937628402375e-05, -0.012359952554106712, -0.02376965433359146, 0.01005124393850565, 0.017599714919924736, -0.02674086019396782, 0.048154961317777634, -0.003623667638748884, 0.05361555889248848, 0.044862546026706696, 0.02101258747279644, -0.03643074259161949, 0.03613629937171936, 0.03696609288454056, -0.014053004793822765, 0.013397198170423508, -0.013497576117515564, 0.025014348328113556, -0.026727477088570595, -0.011804523877799511, 0.054017074406147, 0.017854008823633194, 0.004286166280508041, 0.009556042961776257, 0.03193378075957298, 0.012359952554106712, 0.009522583335638046, 0.008753014728426933, -0.007026502396911383, 0.02447899617254734, 0.03182670846581459, 0.01738557405769825, -0.020865365862846375, -0.0016604294069111347, -0.00885339267551899, 0.009201372042298317, 0.019500216469168663, 0.029926208779215813, 0.01638178899884224, 0.00568142905831337, 0.014695427380502224, 0.00969657301902771, -0.017800472676753998, 0.0266471728682518, 0.021815616637468338, -0.021641626954078674, 0.016636081039905548, 0.006270316895097494, 0.04004437103867531, -0.0029578229878097773, 0.02473328821361065, 0.004834902938455343, 0.010252001695334911, 0.030060045421123505, 0.03889336436986923, 0.005018930416554213, -0.01513709407299757, -0.00885339267551899, -0.002365589141845703, -0.005480671767145395, -0.005139384418725967, -0.008572332561016083, -0.02324768528342247, -0.02338152378797531, -0.013638106174767017, -0.050430212169885635, -0.01802799664437771, 0.02340828999876976, -0.013276743702590466, 0.015257547609508038, 0.019473450258374214, 0.005166152026504278, 0.045960016548633575, 0.00896715559065342, -0.01722496934235096, -0.026914849877357483, 0.0486367791891098, 0.008699479512870312, 0.017211584374308586, 0.006691907066851854, -0.0049587031826376915, 0.03664488345384598, 0.01729188859462738, 0.0037039704620838165, -0.015230780467391014, -0.015980273485183716, -0.00987725518643856, 0.026379497721791267, -0.03766205161809921, -0.011576998978853226, -0.04834233596920967, 0.03428933024406433, -0.0016662848647683859, -0.01065351627767086, 0.027998939156532288, 0.018764106556773186, 0.022444656118750572, 0.015257547609508038, 0.0027637574821710587, 0.03758174926042557, -0.03648427873849869, -0.03260296955704689, -0.007996829226613045, -0.01337043009698391, -0.051206473261117935, -0.02039693295955658, -0.015418154187500477, -0.003392796963453293, 0.00817751046270132, -0.03415549173951149, -0.0025094652082771063, 0.0014697100268676877, 0.01055313739925623, 0.010211850516498089, -0.046415068209171295, 0.0038076951168477535, 0.028935806825757027, 0.004282820504158735, 0.005698158871382475, -0.006932815536856651, 0.008271196857094765, 0.02137395180761814, 0.02256510965526104, 0.007106805220246315, -0.021347183734178543, -0.034690845757722855, 2.461105577822309e-05, 0.0020560885313898325, -0.017572948709130287, -0.0028340225107967854, 0.026888081803917885, -0.0022551727015525103, -0.012246189638972282, -0.02233758568763733, -0.026995152235031128, 0.003964954987168312, -0.004995508585125208, 0.017465876415371895, -0.03974992781877518, 0.015404770150780678, 0.007715768646448851, 0.021039355546236038, 0.011001494713127613, 0.0036169758532196283, 0.02130703255534172, -0.01505679078400135, 0.002922690473496914, -0.013959318399429321, 0.030408024787902832, 0.0033827589359134436, 0.013852247968316078, -0.01670300029218197, 0.034530241042375565, -0.006527955178171396, 0.0332186259329319, 0.007200492080301046, 0.012614244595170021, -0.005989256780594587, -0.01458835694938898, 0.009596195071935654, -0.003650435246527195, -0.013189748860895634, 0.03613629937171936, 0.015337850898504257, -0.0227926354855299, 0.028614593669772148, 0.020410316064953804, -3.8661448343191296e-05, 0.0007708240300416946, -0.008231045678257942, -0.022056525573134422, 0.01569921337068081, 0.020423701032996178, -0.013444040901958942, -0.005547591019421816, 0.020062336698174477, 0.017559563741087914, 0.006544684991240501, 0.00023735358263365924, -0.0510190986096859, 0.0029277093708515167, -0.009013998322188854, 0.007575238589197397, 0.0016094036400318146, 0.0012781542027369142, -0.023997178301215172, -0.01225288212299347, -0.011697453446686268, 0.00854556541889906, 0.027436818927526474, 0.004068679641932249, 0.01797446236014366, -0.007929909974336624, -0.004396582953631878, 0.0049587031826376915, 0.08115945011377335, 0.0024040676653385162, -0.009716648608446121, 0.0014605086762458086, 0.05621201917529106, -0.011001494713127613, 0.005266530904918909, -0.018148452043533325, -0.010660207830369473, 0.020156024023890495, -0.04994839429855347, 0.0378761924803257, 0.024291621521115303, 0.014053004793822765, -0.004798097535967827, 0.017465876415371895, -0.0015115344431251287, 0.03308478742837906, 0.04306911304593086, 0.018282290548086166, 0.01729188859462738, -0.03214792162179947, 0.006310468539595604, -0.0022719025146216154, -0.02256510965526104, -0.023997178301215172, 0.006220127455890179, -0.013597954995930195, -0.0094556650146842, 0.025469398126006126, -0.014695427380502224, 0.0054070609621703625, -0.02418455109000206, 0.008779781870543957, -0.027088839560747147, -0.01683683879673481, 0.005447212141007185, -0.007628773804754019, 0.030381258577108383, 0.021668395027518272, -0.0036169758532196283, 0.009616270661354065, 0.00012045432958984748, 0.015779517590999603, 0.017532795667648315, 0.023220917209982872, -0.00927498284727335, 0.008719555102288723, 0.015538607724010944, -0.02470652014017105, 0.005758386105298996, -0.009569426998496056, -0.05206303671002388, -0.011516772210597992, -0.03139842674136162, 0.008538872934877872, -0.0032940912060439587, -0.014775730669498444, -0.027249446138739586, -0.016729768365621567, 0.01713128201663494, 0.04622769355773926, -0.04510345309972763, 0.004212555475533009, -0.005989256780594587, -0.011121949180960655, 0.017211584374308586, 0.013156289234757423, -0.003013031091541052, 0.029551461338996887, -0.03602922707796097, -0.032977718859910965, 0.01225288212299347, -0.004911859519779682, 0.00044208409963175654, 0.024826975539326668, -0.029123179614543915, 0.002924363361671567, -0.005149422213435173, -0.023448443040251732, 0.00236391625367105, -0.025335559621453285, 0.012112352065742016, 0.053856465965509415, -0.009321826510131359, 0.0029293822590261698, 0.020062336698174477, 0.02765095978975296, -0.017345422878861427, 0.054311517626047134, -0.007555162999778986, -0.01763986609876156, 0.015204012393951416, 0.022417888045310974, 0.011168792843818665, -0.0006077088182792068, -0.017465876415371895, -0.04143628850579262, 0.018335824832320213, -0.013798711821436882, 0.006658447440713644, -0.027891868725419044, -0.0014839303912594914, 0.025884296745061874, -0.012667779810726643, 0.013256668113172054, -0.014682044275105, -0.025215106084942818, 0.010252001695334911, 0.016261333599686623, 0.009167912416160107, -0.012915380299091339, 0.02091890200972557, -0.021588092669844627, -0.030193883925676346, -0.01713128201663494, -0.003267323598265648, -0.0324423648416996, 0.008471954613924026, -0.017653251066803932, -0.004276128485798836, 0.016421940177679062, 0.004567226395010948, 0.0006758826202712953, 0.011128641664981842, 0.032817110419273376, -0.01964743807911873, 0.042694367468357086, -0.005868802312761545, 0.0020159368868917227, 0.0019373070681467652, 0.00853218138217926, 0.023261068388819695, 0.0033359157387167215, 0.01185136754065752, -0.004978778772056103, 0.00487170834094286, -0.017492644488811493, 4.940509461448528e-05, -0.008478646166622639, -0.02324768528342247, 0.01635502092540264, -0.018442895263433456, -0.016234565526247025, -0.03292418271303177, 0.02272571623325348, 0.0052196872420609, -0.03182670846581459, 0.014815881848335266, 0.004550496581941843, -0.00987725518643856, 0.015311082825064659, -0.0004307915223762393, 0.008773090317845345, 0.028668129816651344, -0.009415512904524803, 0.033887818455696106, -0.028962573036551476, 0.02299339324235916, 0.00028837937861680984, -0.0033760671503841877, 0.003115082625299692, -0.02995297499001026, -0.029872672632336617, 0.02548278123140335, -0.007862990722060204, -0.02211005985736847, 0.026995152235031128, -0.014869417063891888, -0.002051069401204586, -0.024050714448094368, -0.033004485070705414, 0.0038779601454734802, 0.026687325909733772, -0.033165089786052704, -0.0059156459756195545, 0.02338152378797531, 0.006367349531501532, -0.03126458823680878, 0.015297699719667435, -0.020664608106017113, -0.007327638100832701, -0.005835342686623335, -0.023742886260151863, -0.030381258577108383, 0.0017633175011724234, 0.003289072308689356, -0.011958437971770763, 0.024813590571284294, 0.004724486265331507, 0.028213080018758774, -0.003931495361030102, 0.022391119971871376, -0.024813590571284294, 0.0019155583577230573, -0.03107721544802189, 0.030167117714881897, -0.004279474727809429, 0.027624191716313362, 0.009174604900181293, 0.019767893478274345, -0.011617150157690048, -0.020544154569506645, -0.022096676751971245, -0.02450576424598694, -0.035627711564302444, -0.014508054591715336, 0.005487363785505295, -0.0027821604162454605, 0.008840009570121765, 0.03568124771118164, 0.0011192214442417026, 0.02502773143351078, 0.014400984160602093, 0.010044552385807037, -0.026499951258301735, -0.003606937825679779, 0.016435323283076286, -0.005105925258249044, -0.033138323575258255, 0.013531035743653774, -0.0317196398973465, 0.03177317604422569, -0.030381258577108383, -0.009837103076279163, 0.017733553424477577, 0.0006829927442595363, 0.028935806825757027, 0.019580520689487457, -0.040258511900901794, 0.023060310631990433, -0.008170818910002708, -0.004403274971991777, -0.0037073164712637663, -0.01507017482072115, 0.001987496390938759, -0.025215106084942818, -0.00034421496093273163, -0.0034429861698299646, -0.018697187304496765, -0.0038746141362935305, 0.009435588493943214, -0.002885884838178754, 0.001816852716729045, 0.00937536172568798, 0.026914849877357483, -0.0060662138275802135, -0.03677872195839882, -0.009984325617551804, -0.02221713215112686, -0.016970675438642502, -0.022712333127856255, 0.007662233430892229, -0.005002200603485107, 0.0189113300293684, -0.010780662298202515, -0.005514131393283606, -0.007588622625917196, 0.012540633790194988, -0.011597074568271637, -0.0020410316064953804, -0.04231961816549301, 0.03027418814599514, 0.004583956208080053, 0.014200226403772831, 0.04384537413716316, 0.01975451037287712, -0.0455317348241806, -0.06499180197715759, 0.01181790791451931, -0.012052124366164207, 0.009047457948327065, -0.00695289159193635, -0.021280264481902122, -0.035145897418260574, 0.005233071278780699, 0.006601566448807716, -0.009609578177332878, 0.0001732576492941007, 0.02872166410088539, 0.009997708722949028, 0.038839828222990036, 0.027343131601810455, -0.00934190209954977, 0.013644798658788204, 0.01751941256225109, -0.039776694029569626, 0.015123710036277771, 0.024197936058044434, 0.001448797876946628, 0.036992862820625305, 0.0220163743942976, 0.038679223507642746, 0.008210970088839531, 0.016207799315452576, 0.03798326477408409, -0.0034864835906773806, 0.032362062484025955, -0.0021631589625030756, -0.011543539352715015, -0.017238352447748184, -0.003417891450226307, 0.035467106848955154, 0.01188482716679573, -0.003924803342670202, 0.003223826177418232, 0.005373601336032152, 0.008753014728426933, -0.00036533630918711424, -0.021601475775241852, 0.01841612718999386, 0.004098793026059866, -0.02616535685956478, -0.02486712671816349, 0.02968529984354973, 0.00819089449942112, -0.038063567131757736, -0.01725173555314541, 0.014400984160602093, 0.0196875911206007, 0.009897330775856972, -0.0034898295998573303, 0.005691466853022575, -0.033887818455696106, 0.03552064299583435, -0.024840358644723892, 0.013999469578266144, 8.281235204776749e-05, -0.009475740604102612, 0.02094566822052002, 0.01793431118130684, -0.01836259290575981, 0.04157012701034546, -0.049814555794000626, -0.011951745487749577, 0.03137166053056717, -0.015980273485183716, 0.008231045678257942, 0.012406795285642147, -0.017265120521187782, -0.011804523877799511, 0.004861670546233654, -0.009254907257854939, 0.028052473440766335, 0.007796071469783783, 0.042854972183704376, -0.0011225674534216523, 0.039321646094322205, 0.018817642703652382, 0.017920926213264465, 0.034075189381837845, 0.037019629031419754, -0.030996913090348244, -0.022484807297587395, 0.0235688965767622, -0.012045432813465595, -0.001514044008217752, -0.0013810422969982028, 0.037287306040525436, -0.022391119971871376, -0.01786739192903042, 0.04280143603682518, -0.011985205113887787, 0.009395437315106392, 0.04368476942181587, 0.013865631073713303, -0.018081532791256905, 0.0025512895081192255, -0.004617415834218264, -0.003056528512388468, 0.008906927891075611, 0.007381173316389322, 0.014574973843991756, -0.019352994859218597, -0.007407940924167633, -0.054927174001932144, -0.005577704403549433, -0.003243901999667287, -0.023876724764704704, 0.005771769676357508, 0.028801968321204185, -0.04539789631962776, 0.015324466861784458, -0.026071669533848763, 0.025148186832666397, -0.014548205770552158, 0.0020075722131878138, 0.0018218717304989696, 0.018081532791256905], [0.014903825707733631, -0.02168065309524536, 0.06262722611427307, 0.04717813804745674, -0.003248852211982012, 0.042478498071432114, -0.0454384908080101, 0.026081694290041924, 0.009139628149569035, 0.07135141640901566, 0.005433145444840193, 0.0013031110865995288, 0.03126168251037598, 0.018019607290625572, -0.04201113060116768, 0.0071013872511684895, -0.011904885061085224, 0.044062353670597076, 0.001742890803143382, -0.0031044227071106434, 0.05738232657313347, 0.025679240003228188, -0.014059968292713165, 0.006335424259305, -0.051436372101306915, -0.05063146352767944, 0.00869173463433981, -0.010152257047593594, 0.029729757457971573, -0.07083211839199066, 0.0583689883351326, -0.023095736280083656, -0.0052319178357720375, -0.0328974686563015, 0.015812596306204796, 0.0077310348860919476, -0.041232187300920486, -0.02634134329855442, 0.008010157383978367, 0.051306549459695816, 0.025276783853769302, -0.007542789913713932, -0.007114369887858629, -0.0041413940489292145, -0.04115429148077965, 0.05748618394136429, 0.02628941275179386, -0.06325038522481918, 0.0017055663047358394, 0.02380977012217045, 0.020525217056274414, 0.04650305211544037, 0.0044205160811543465, -0.03715570271015167, 0.02453678660094738, 8.458862430416048e-05, 0.012943479232490063, 0.010892256163060665, 0.045074984431266785, -0.026743797585368156, 0.02170661650598049, -0.027678532525897026, -0.004381569102406502, 0.02192731760442257, 0.0009039014694280922, 0.004517884459346533, -0.021161355078220367, 0.02192731760442257, -0.03720763325691223, -0.011190851218998432, 0.055045489221811295, 0.04385463520884514, 0.034091852605342865, -0.012417690828442574, 0.006718405522406101, -0.011625763028860092, -0.012164533138275146, 0.008373664692044258, -0.03663640841841698, 0.0024601698387414217, -0.041543763130903244, 0.012962953187525272, 0.007893315516412258, -0.004199814982712269, 0.004371832124888897, -0.0165136456489563, -0.05935565382242203, 0.011560850776731968, -0.027808357030153275, -0.007912788540124893, 0.029470108449459076, 0.004754813853651285, -0.05530513823032379, 0.028820985928177834, 0.04826866090297699, -0.014059968292713165, 0.03723359853029251, -0.02634134329855442, 0.0015432859072461724, 0.0024001260753721, -0.038687631487846375, -0.04642515629529953, -0.04473744332790375, 0.005014462396502495, 0.022329773753881454, -0.022965911775827408, -0.008490506559610367, 0.040505170822143555, 0.008503489196300507, -0.010256117209792137, -0.005796653218567371, -0.012735760770738125, -0.013151197694242, 0.03741535171866417, -0.03629886358976364, -0.008321735076606274, -0.07451912760734558, -0.019642410799860954, 0.015475052408874035, 0.029599932953715324, -0.04707427695393562, -0.02282310649752617, 0.012800672091543674, -0.04271218180656433, 0.013345934450626373, -0.0165136456489563, -0.0210574958473444, -0.02014872618019581, -0.0688587874174118, -0.021654687821865082, 0.053150054067373276, -0.009925064630806446, 0.06205599755048752, -0.026081694290041924, -0.029548002406954765, -0.015189439058303833, -0.03489676117897034, -0.04206306114792824, -0.025938887149095535, -0.02083679474890232, 0.029651861637830734, 0.021550828590989113, 0.03370237722992897, 0.035104479640722275, -0.043205514550209045, -0.019512586295604706, 0.015202421694993973, 0.015072597190737724, -0.032352205365896225, -0.016747329384088516, -0.010554712265729904, 0.019473640248179436, -0.0282237958163023, -0.009035768918693066, -0.002531573176383972, -0.006289985496550798, 0.02543257363140583, 0.07358439266681671, 0.017902765423059464, -0.006302968133240938, -0.03918096423149109, -0.03564974293112755, -0.02824975922703743, -0.003768149297684431, 0.0052708652801811695, 0.013826284557580948, 0.001329075894318521, 0.018954342231154442, -0.054110754281282425, -0.07353246212005615, -0.0183701328933239, -0.057797763496637344, -0.02110942453145981, 0.008049104362726212, -0.012372252531349659, -0.06787212193012238, 0.020161708816885948, 0.01988907717168331, 0.004573059733957052, -0.017097854986786842, 0.0024812661577016115, 0.02467959187924862, -0.07192264497280121, -0.032274313271045685, -0.06475634127855301, 0.04845041409134865, -0.015838559716939926, 0.001222782302647829, -0.04120622202754021, 0.02921045944094658, 0.0058291093446314335, 0.0006783317658118904, 0.05063146352767944, -0.01052225660532713, -0.0009996468434110284, 0.031365543603897095, -0.006095249205827713, -0.002133986447006464, 0.0005659526796080172, -0.040531136095523834, 0.015864524990320206, -0.025082048028707504, 0.03671430051326752, -0.016695400699973106, -0.008068578317761421, -0.05268268659710884, -0.038687631487846375, -0.005491566378623247, 0.024913275614380836, -0.07353246212005615, -0.006932615768164396, -0.04346516355872154, -0.0073805092833936214, 0.0029989404138177633, -0.012054182589054108, 0.021421004086732864, -0.041413940489292145, 0.013787336647510529, 0.035753604024648666, 0.023108718916773796, -0.001773723983205855, 0.01922697387635708, 0.011547868140041828, -0.029392212629318237, -0.020265568047761917, 0.01735750399529934, 0.0011911375913769007, -0.04471147805452347, -0.023030824959278107, -0.056966885924339294, -0.007172790821641684, 0.0022686789743602276, -0.009204540401697159, -0.010087345726788044, -0.024056436493992805, -0.021343108266592026, 0.003070343751460314, -0.0007959850481711328, 0.0081919115036726, 0.002620827406644821, 0.05117672681808472, -0.029392212629318237, 0.015176456421613693, 0.04974865913391113, 0.011762077920138836, -0.01277470774948597, -0.014890843071043491, -0.05187777429819107, 0.02273222804069519, 0.05338373780250549, 0.0328974686563015, 0.03461115062236786, 0.05400689318776131, -0.039414647966623306, -0.008795593865215778, 0.02827572450041771, 0.01039892341941595, -0.05109883099794388, 0.028405549004673958, 0.014709088951349258, -0.027029411867260933, -0.009756293147802353, 0.004027797840535641, -0.03842798247933388, -0.07425948232412338, -0.030430806800723076, 0.00027587657677941024, -0.019824165850877762, -0.03847991302609444, 0.06039424613118172, -0.02096661925315857, 0.040531136095523834, 0.030249053612351418, -0.005154023412615061, -0.0638735368847847, -0.001621180446818471, -0.00776349101215601, 0.003972622565925121, 0.00961997825652361, -0.03209255635738373, -0.03281957283616066, -0.0020836794283241034, -0.006374371238052845, -0.02723713032901287, 0.035000622272491455, 0.0348188690841198, 0.02279714122414589, -0.02811993658542633, -0.044919196516275406, -0.021654687821865082, 0.048632171005010605, 0.011502429842948914, 0.008354191668331623, -0.028016075491905212, 0.05034584924578667, 0.0345592200756073, 0.012404708191752434, -0.005816127173602581, 0.01717575080692768, 0.03193676844239235, 0.01043787132948637, 0.04385463520884514, -0.028639232739806175, -0.03162519261240959, -0.04195920377969742, 0.044296037405729294, 0.0013144706608727574, 0.02644520252943039, -0.023355385288596153, -0.012196989730000496, -0.03393606096506119, 0.02356310375034809, -0.03928482159972191, -0.026613974943757057, -0.02721116505563259, 0.0029453879687935114, 0.0034955183509737253, 0.03398799151182175, -0.0032634574454277754, -0.031443435698747635, 0.01831820420920849, 0.0003278062795288861, 0.03762307018041611, 0.007049457635730505, 0.004430253058671951, -0.044192180037498474, 0.007471386343240738, 0.019850129261612892, -0.02531573176383972, -0.029418177902698517, -0.009133136831223965, -0.004680164624005556, 0.0494111143052578, 0.018681712448596954, -0.017461363226175308, -0.021615739911794662, -0.033209048211574554, 0.03809043765068054, -0.013040847145020962, 0.00749735115095973, 0.018850483000278473, -0.006348406430333853, -0.02534169703722, 0.021148372441530228, -0.04819076880812645, 0.045023053884506226, 0.008315243758261204, 0.019824165850877762, -0.004910602699965239, 0.0685991421341896, 0.007782964501529932, 0.04759357497096062, -0.03372834250330925, 0.013449793681502342, -0.058524779975414276, 0.017604170367121696, 0.01235277857631445, 0.0019116622861474752, -0.008990330621600151, -0.0008276297012344003, 0.026977481320500374, 0.026016782969236374, 0.0053747245110571384, 0.026925552636384964, 0.029781686142086983, 0.005965425167232752, -0.035961322486400604, 0.02647116780281067, 0.04881392419338226, -0.029548002406954765, -0.004741831216961145, 0.0509430430829525, 0.06060196831822395, 0.02561432681977749, -0.01724066212773323, -0.01174909621477127, -0.003745430149137974, 0.014942772686481476, 0.011495938524603844, 0.005485075060278177, 0.012872075662016869, 0.03284553810954094, 0.013826284557580948, 0.00814647227525711, 0.022537492215633392, 0.05987495183944702, -0.052604790776968, -0.02554941549897194, -0.014021020382642746, -0.004011569544672966, -0.0007838140008971095, -0.010223660618066788, -0.03487079590559006, 0.028535373508930206, -0.051488302648067474, 0.043257445096969604, -0.0026873622555285692, 0.028613267466425896, 0.03297536447644234, 0.010671554133296013, -0.006867703516036272, -0.05172198638319969, 0.008795593865215778, -0.0019814427942037582, -0.046866558492183685, -0.02556239813566208, -0.05338373780250549, -0.006092003546655178, -0.03196273371577263, 0.010755940340459347, 0.037726931273937225, 0.02380977012217045, 0.044997088611125946, -0.006867703516036272, 0.0029178003314882517, -0.019382761791348457, -0.08480121195316315, 0.065275639295578, 0.023355385288596153, -0.007542789913713932, 0.04081675037741661, 0.021265214309096336, 0.0013696459354832768, -0.022355739027261734, -0.032378170639276505, 0.039544470608234406, 0.040479205548763275, 0.0037129740230739117, -0.007068931125104427, -0.06647002696990967, -0.02457573264837265, -0.004985251929610968, 0.005978407338261604, 0.00012708579015452415, -0.030612561851739883, -0.054993558675050735, 0.020265568047761917, 0.01824030838906765, 0.014449440874159336, -0.021083461120724678, 0.011982779949903488, -0.018551887944340706, 0.005098848138004541, -0.019382761791348457, -0.0308462455868721, 0.008503489196300507, 0.02560134418308735, -0.005842091981321573, -0.006653493735939264, 0.03554588183760643, -0.0008641427848488092, 0.015241368673741817, -0.06273108720779419, 0.006757352966815233, -0.03448132425546646, -0.029807651415467262, 0.011982779949903488, -0.04105043411254883, 0.027808357030153275, -0.0435170941054821, 0.013657513074576855, 0.05707074701786041, 0.033286940306425095, 0.059719160199165344, 0.036844126880168915, -0.0171497855335474, -0.04484130069613457, -0.01725364476442337, -0.016124173998832703, -0.0209925826638937, -0.0006487156497314572, -0.0008166757761500776, -0.0018013116205111146, -0.020408375188708305, 0.007899806834757328, -0.042166922241449356, -0.007744017522782087, -0.046710770577192307, 0.01051576528698206, -0.007977700792253017, -0.013618565164506435, 0.051488302648067474, -0.04567217454314232, 0.0023076264187693596, 0.0944601371884346, -0.013462776318192482, 0.06273108720779419, -0.004832708276808262, 0.007399983238428831, 0.00308981747366488, -0.044088318943977356, -0.007231211755424738, 0.047827258706092834, -0.014280669391155243, -0.005287093110382557, 0.006698932033032179, -0.028898881748318672, 0.02365398034453392, 0.01459224708378315, 0.01095067709684372, -0.015942418947815895, -0.06994931399822235, -0.0051313042640686035, -0.0029210459906607866, 0.04354305937886238, 0.014241721481084824, -0.0012552383122965693, -0.008509980514645576, -0.05935565382242203, 0.0244459081441164, -0.053227949887514114, 0.010749449022114277, 0.014877860434353352, 0.016877153888344765, -0.015124526806175709, -0.012541024014353752, 0.02908063493669033, -0.05338373780250549, -0.054266542196273804, 0.01418979186564684, 0.02286205254495144, -0.02908063493669033, 0.03354658931493759, 0.030300984159111977, 0.012164533138275146, 0.018837500363588333, -0.023926611989736557, -0.043309375643730164, -0.007036474999040365, 0.014034003019332886, -0.008600857108831406, -0.038661666214466095, -0.021122407168149948, 0.029573967680335045, 0.01187242940068245, -0.0019165306584909558, 0.008432085625827312, 0.009762784466147423, -0.012729269452393055, -0.008795593865215778, 0.01901925541460514, 0.008471033535897732, 0.021187320351600647, 0.0006511498359031975, 0.021174337714910507, -0.018422063440084457, 0.029755720868706703, 0.03201466426253319, 0.000934734707698226, -0.006900159642100334, 0.0023546875454485416, 0.017604170367121696, -0.0016601277748122811, -0.007886824198067188, -0.012911023572087288, 0.0247055571526289, 0.018837500363588333, -0.056863028556108475, 0.03165115416049957, -0.027704497799277306, -0.03009326383471489, 0.008496997877955437, -0.017785923555493355, 0.006449020467698574, -0.021446969360113144, 0.023264508694410324, 0.036792196333408356, -0.0003200979554094374, -0.015280315652489662, 0.009899100288748741, -0.026185553520917892, -0.004381569102406502, 0.004543849267065525, -0.0564475916326046, 0.053227949887514114, 0.01411189790815115, 0.017006978392601013, -0.051436372101306915, 0.01635785773396492, 0.046788666397333145, -0.014046985656023026, 0.016072243452072144, -0.029573967680335045, -0.013287513516843319, -0.006231564562767744, 0.023121701553463936, -0.003156352322548628, -0.02453678660094738, 0.0016284830635413527, 0.009022786282002926, 0.025069065392017365, 0.02544555626809597, -0.003227755893021822, 0.0011781551875174046, 0.009042260237038136, 0.03349465876817703, -1.2094956218788866e-05, 0.018019607290625572, -0.007133843377232552, 0.005465601570904255, -0.002693853573873639, -0.033338870853185654, -0.02644520252943039, 0.018681712448596954, -0.03105396404862404, 0.01640978641808033, 0.007640157826244831, -0.01813644915819168, 0.04188130795955658, 0.016812242567539215, 0.018331186845898628, 0.007399983238428831, -0.0036545530892908573, -0.04847637936472893, -0.012443656101822853, 0.015604876913130283, -0.05083918198943138, -0.027860287576913834, -0.004206306301057339, 0.007218229118734598, -0.014462423510849476, -0.028743091970682144, 0.009412258863449097, -0.027548708021640778, 0.002155082765966654, -0.014670141972601414, -0.018409080803394318, -0.02809397131204605, -0.010463835671544075, -0.024082401767373085, -0.04284200817346573, 0.016643470153212547, 0.0005481018451973796, -0.028717126697301865, 0.022290825843811035, 0.006195863243192434, 0.004761304706335068, 0.007886824198067188, 0.0300153698772192, 0.00454060360789299, 0.027003446593880653, 0.0244459081441164, 0.019382761791348457, -0.03346869722008705, 0.017526276409626007, 0.031391508877277374, -0.011723130941390991, 0.025653274729847908, 0.015384175814688206, -0.007886824198067188, 0.0015724963741376996, -0.029314318671822548, -0.005452618934214115, -0.012612427584826946, 0.031235717236995697, 0.01552698202431202, -0.027782391756772995, 0.018746623769402504, 0.011963305994868279, 0.02552345022559166, -0.014825930818915367, 0.006698932033032179, -0.02464064583182335, 0.020304514095187187, 0.054162684828042984, -0.002989203669130802, 0.05520127713680267, -0.011463482864201069, 0.0012284620897844434, -7.652532076463103e-05, -0.06683353334665298, 0.0038233245722949505, 0.05122865363955498, -0.027003446593880653, 0.006218582391738892, -0.0047385855577886105, -0.021563811227679253, 0.0165136456489563, -0.004871655721217394, 0.02988554537296295, -0.023212578147649765, -0.009457698091864586, -0.03253396227955818, 0.0015765534481033683, 3.719769301824272e-05, -0.04255639389157295, 0.013813301920890808, -0.041258152574300766, -0.012839620001614094, 0.008925418369472027, -0.0008681997423991561, 0.02905466966331005, -0.015708735212683678, 0.021252231672406197, -0.0052643739618361, 0.04980058968067169, 0.026003800332546234, -0.0019165306584909558, -0.04102446883916855, -0.08043911308050156, 0.02456275001168251, 0.011554359458386898, 0.01642276905477047, -0.05888828635215759, -0.05008620023727417, -0.015877507627010345, -0.02557538077235222, -0.020226620137691498, 0.02273222804069519, -0.019824165850877762, -0.018486974760890007, -0.015903472900390625, -0.059511441737413406, -0.001067804521881044, 0.0003444399917498231, -0.00039352980093099177, -0.020291533321142197, -0.019538551568984985, -0.017733994871377945, 0.012209972366690636, -0.03837605193257332, 0.013865231536328793, -0.010392432101070881, -0.017656100913882256, 0.0005618956638500094, 0.0018499958096072078, -0.023095736280083656, 0.006932615768164396, -0.013151197694242, -0.013040847145020962, 0.018006624653935432, 0.00033125473419204354, 0.015747683122754097, -0.012119094841182232, -0.024017488583922386, 0.014436458237469196, -0.018902413547039032, 0.009191557765007019, -0.04169955477118492, -0.003573412774130702, 0.0077699823305010796, -0.03572763875126839, -0.015799613669514656, -0.007666122633963823, -0.00856840144842863, -0.019252939149737358, -0.02104451321065426, 0.02631537802517414, 0.018720658496022224, -0.009548574686050415, -0.011411553248763084, 0.010678045451641083, 0.00085521733853966, -0.03822026401758194, -0.008114016614854336, 0.012112603522837162, 0.010346993803977966, 0.014345581643283367, 0.006802791263908148, 0.029366249218583107, 0.020564163103699684, 0.027600638568401337, -0.009321382269263268, 0.010704010725021362, 0.01917504332959652, -0.0074129654094576836, -0.01175558753311634, 0.010580677539110184, 0.04715217277407646, 0.0032569661270827055, -0.039492540061473846, 0.026873622089624405, 0.002219995018094778, 0.03292343392968178, 0.0300153698772192, -0.00958752166479826, -0.027470814064145088, -0.024030471220612526, -0.0038330613169819117, -0.03255992382764816, 0.03297536447644234, 0.000831686716992408, -0.0072766500525176525, -0.02355012111365795, -0.013553652912378311, 0.017682064324617386, -0.00910717248916626, -0.022342756390571594, 0.02269328199326992, -0.012067165225744247, -0.02467959187924862, -0.0005371479201130569, -0.007802438456565142, -0.019642410799860954, -0.02288801781833172, -0.00906822457909584, 0.013319969177246094, -0.0545261912047863, -0.04826866090297699, 0.04393253102898598, -0.0029210459906607866, -0.020421355962753296, -0.005244900472462177, 0.022407667711377144, 0.10365169495344162, -0.021550828590989113, -0.03564974293112755, -0.01459224708378315, 0.0028382830787450075, -0.02007083222270012, -0.0381423681974411, 0.03357255458831787, -0.010632607154548168, -0.022290825843811035, -0.026159590110182762, 0.018785571679472923, -0.018045572564005852, 0.008036121726036072, -0.029573967680335045, -0.0033786764834076166, 0.007114369887858629, 0.00545586459338665, 0.011891902424395084, -0.014436458237469196, 0.005543495994061232, 0.00229464378207922, -0.008918927051126957, 0.001196006080135703, -0.01716276817023754, -0.027600638568401337, 0.009340856224298477, -0.013514705933630466, 0.027548708021640778, 0.013358917087316513, -0.007335070986300707, -0.03725956380367279, -0.01903223805129528, 0.00866576936095953, 0.008464542217552662, -0.011684183962643147, 0.026510115712881088, 0.0015797989908605814, -0.030508702620863914, -0.03440342843532562, -0.04175148531794548, -0.01829223893582821, 0.0007217417587526143, 0.005812881514430046, 0.011171378195285797, 0.019564516842365265, -0.02543257363140583, -0.04907357320189476, -0.023420296609401703, -0.033235013484954834, 0.02009679563343525, -0.0141768092289567, 0.010606642812490463, -0.021213285624980927, 0.001537606120109558, 0.028587302193045616, -0.0024212226271629333, -0.021563811227679253, -0.0025202136021107435, -0.002416354138404131, 0.0033656940795481205, 0.004216042812913656, 0.008964365348219872, -0.011099974624812603, 0.02718520164489746, -0.015838559716939926, 0.02170661650598049, -0.03489676117897034, 0.012722778134047985, 0.010314538143575191, -0.027964146807789803, -0.015124526806175709, -0.04291990026831627, 0.03357255458831787, 0.016656452789902687, -0.01274874247610569, 0.020395392552018166, 0.03811640292406082, 0.046009719371795654, 0.016825225204229355, -0.02837958373129368, 0.0066437567584216595, -0.02183644101023674, 0.04395849630236626, 0.010048397816717625, -0.003596132155507803, -0.011009098030626774, 0.009931555949151516, 0.033235013484954834, -0.0011692297412082553, 0.016825225204229355, 0.018032589927315712, -0.03549395501613617, 0.024796433746814728, -0.01909714937210083, -0.01812346652150154, -0.04707427695393562, -0.00014138674305286258, -0.0003844015300273895, 0.01009383611381054, -0.019733287394046783, -0.018590833991765976, 0.00504691805690527, 0.004186832346022129, 0.035156410187482834, 0.003099554218351841, 0.018876448273658752, -0.04281604290008545, -0.01826627366244793, 0.003469553543254733, 0.038583770394325256, -0.005900512915104628, 0.005747969262301922, -0.0032163960859179497, 0.020291533321142197, 0.011801025830209255, 0.08542436361312866, -0.029573967680335045, -0.0046379719860851765, 0.0032066593412309885, 0.020590128377079964, -0.009464188478887081, -0.0011246027424931526, 0.03458518534898758, 0.02356310375034809, -0.04486726596951485, -0.02448485605418682, 0.03546798974275589, 0.02641923725605011, 0.058628637343645096, -0.01094418577849865, 0.015371193177998066, 0.009477171115577221, -0.008776119910180569, -0.0039628855884075165, -0.02274521067738533, 0.017902765423059464, 0.0013396241702139378, 0.02824975922703743, -0.03297536447644234, 0.008646296337246895, -0.011249272152781487, -0.014812948182225227, 0.00592647772282362, 0.010996115393936634, -0.0014597115805372596, 0.028950810432434082, -0.035052552819252014, 0.006634019780904055, -0.0047385855577886105, -0.061484772711992264, -0.01822732761502266, 0.03528623655438423, 0.01274225115776062, 0.04437393322587013, -0.0181753970682621, 0.023108718916773796, 0.037700966000556946, 0.004848936107009649, -0.031417470425367355, 0.02806800603866577, 0.010457344353199005, 0.0051313042640686035, -0.0015968384686857462, -0.02461468055844307, 0.03466307744383812, -0.050371814519166946, 0.01744838058948517, 0.05283847451210022, 0.007964719086885452, 0.02184942364692688, 0.007685596588999033, 0.02465362846851349, -0.007166299503296614, 0.023225560784339905, 0.01901925541460514, -0.036792196333408356, 0.03889534994959831, 0.02832765504717827, 0.008445068262517452, -0.021252231672406197, 0.015760665759444237, -0.005835600662976503, 0.013034355826675892, 0.020486269146203995, 0.010230151936411858, 0.033183082938194275, -0.008243841119110584, 0.008912435732781887, 0.022303808480501175, 0.011547868140041828, 0.042348675429821014, 0.01450137048959732, -0.009905591607093811, 0.030534667894244194, 0.04131007939577103, 0.032222382724285126, 0.009146119467914104, 0.018564870581030846, 0.022901000455021858, -0.009756293147802353, -0.0016925839008763433, 0.021421004086732864, -0.001892188680358231, -0.006452266126871109, 0.0028691161423921585, -0.002744160359725356, -0.006647002417594194, 0.01629294455051422, 0.014955755323171616, -0.015721717849373817, -0.013209618628025055, -0.012196989730000496, -0.04546445608139038, -0.02736695483326912, 2.9996504963492043e-05, -0.006114722695201635, 0.004784024320542812, 0.012988917529582977, -0.011067518964409828, 0.04021955654025078, -0.01226190198212862, -0.013891195878386497, -0.00034160009818151593, 0.046736735850572586, 0.006153670139610767, 0.00817243754863739, 0.021330127492547035, 0.003566921688616276, 0.026769762858748436, 0.021356090903282166, 0.023134684190154076, -0.0025007398799061775, 0.005751214921474457, -0.002359556034207344, 0.014864878728985786, -0.027704497799277306, 0.008328226394951344, -0.043153584003448486, 0.058836355805397034, -0.002591616939753294, -0.0010345370974391699, -0.0021826704032719135, 0.0018710922449827194, 0.00858138408511877, 0.008535945788025856, 0.0122229540720582, 0.0367402657866478, -0.034143783152103424, 0.020356444641947746, 0.01735750399529934, -0.021602757275104523, -0.03702588006854057, 0.004147885367274284, -0.009697872214019299, 0.010262608528137207, 0.015617858618497849, -0.045308668166399, -0.015721717849373817, -0.0004470823041629046, 0.0028285461012274027, 0.00520919868722558, -0.03095010481774807, 0.037856753915548325, 0.040401309728622437, 0.002873984631150961, 0.01912311464548111, -0.0008389893337152898, 0.03076835162937641, 0.009964012540876865, 0.0002493031497579068, 0.02718520164489746, -0.015072597190737724, -0.017837854102253914, -0.007841385900974274, 0.01720171421766281, -0.018512940034270287, 0.004741831216961145, -0.005524022504687309, -0.02000591903924942, 0.0017704784404486418, -0.02281012386083603, -0.024796433746814728, 0.008918927051126957, -0.0029616160318255424, 0.012534532696008682, -0.02456275001168251, -0.022044159471988678, 0.02928835339844227, 0.015488035045564175, 0.00017516133084427565, -0.003992096055299044, 0.019421709701418877, 0.004443235229700804, -0.00011674041161313653, -0.0005140229477547109, 0.015215403400361538, 0.02928835339844227, 0.003135256003588438, -0.010781905613839626, -0.006815773900598288, 0.004936567507684231, 0.0027328007854521275, 0.010957167483866215, 0.011508921161293983, 0.011943832039833069, -0.008010157383978367, -0.0019603464752435684, 0.012125586159527302, -0.010820852592587471, 0.03380623832345009, 0.018759606406092644, -0.014410492964088917, 0.0021193812135607004, 0.008600857108831406, 0.01635785773396492, 0.0015400403644889593, -0.019733287394046783, -0.03006730042397976, 0.009639451280236244, 0.04188130795955658, 0.0028756074607372284, -0.020213637501001358, 0.0037097283639013767, 0.005277356132864952, -0.015916455537080765, 0.022550474852323532, -0.04380270838737488, 0.008282788097858429, -0.015721717849373817, -0.006757352966815233, 0.020226620137691498, -0.003609114559367299, -0.047749362885951996, -0.02273222804069519, -0.015565929003059864, -0.008490506559610367, 0.03715570271015167, 0.008957874029874802, 0.012099621817469597, 0.006653493735939264, 0.004427007399499416, 0.02184942364692688, 0.07524614036083221, -0.009866643697023392, -0.012106113135814667, 0.005111830309033394, 0.05013813078403473, 0.0076336669735610485, 0.004696392919868231, -0.0021063985768705606, 0.012209972366690636, -0.017733994871377945, -0.05172198638319969, 0.015734700486063957, 0.008711208589375019, 0.014046985656023026, -0.0008876734063960612, 0.0053714788518846035, 0.03718166798353195, 0.0384020172059536, -0.002677625510841608, 0.0032472293823957443, 0.01916206069290638, -0.025835027918219566, -0.011379096657037735, -0.00632893294095993, 0.009022786282002926, 0.0018353905761614442, -0.0020106532610952854, 0.00950962770730257, 0.02183644101023674, 0.018512940034270287, -0.013371898792684078, -0.016993995755910873, 0.007387000601738691, -0.0029015722684562206, 0.0006312704645097256, -0.02806800603866577, 0.006932615768164396, -0.017500311136245728, 0.00593296904116869, -0.0019051710842177272, -0.015838559716939926, -0.012080147862434387, -0.010781905613839626, -0.014124879613518715, -0.002976221265271306, 0.014683124609291553, -0.023199595510959625, 0.00019078081822954118, -0.0023822751827538013, 0.012599444948136806, -0.023524155840277672, 0.009146119467914104, -0.02087574265897274, -0.014137862250208855, -0.0141768092289567, 0.009198049083352089, 4.432281639310531e-05, -0.0024049945641309023, -0.027600638568401337, -0.015280315652489662, -0.009139628149569035, 0.04016762599349022, -0.03928482159972191, 0.02632836066186428, -0.02192731760442257, -0.0016909610712900758, -0.011002606712281704, 0.014397511258721352, -0.016851188614964485, 0.006319195963442326, -0.023303454741835594, -0.014046985656023026, 0.02283608727157116, 0.002682493766769767, -0.0002446376020088792, 0.012158042751252651, -0.012885058298707008, 0.029262389987707138, -0.021252231672406197, -0.008763138204813004, -0.019629428163170815, 0.004014815203845501, 0.03432553634047508, 0.029262389987707138, -0.03287150338292122, 0.009314890950918198, 0.012534532696008682, 0.04089464247226715, 0.007081913761794567, 0.053227949887514114, -0.005154023412615061, -0.006614546291530132, 0.013956108130514622, 0.015929438173770905, 0.004115429241210222, 0.014942772686481476, -0.02192731760442257, -0.02271924540400505, -0.007646649144589901, -0.02447187341749668, 0.011099974624812603, -0.013982073403894901, -0.01563084125518799, 0.025250818580389023, -0.0076336669735610485, 0.0053714788518846035, -0.0008215441484935582, -0.009899100288748741, -0.0024877574760466814, -0.004267972894012928, 0.007484368979930878, -0.009152610786259174, 0.0291844941675663, -0.03539009392261505, -0.03370237722992897, -0.012651374563574791, -0.014436458237469196, -0.02370591089129448, -0.004621743690222502, 0.012326814234256744, -0.029703792184591293, -0.007042966317385435, 0.02171959914267063, 0.02286205254495144, 0.019642410799860954, 0.02915853075683117, -0.00869173463433981, 0.030794315040111542, -0.009542083367705345, 0.0020934161730110645, 0.0018499958096072078, -0.01994100771844387, 0.00028115068562328815, -0.01187242940068245, -0.008458050899207592, 0.010450853034853935, 0.0050956024788320065, -0.004949550144374371, 0.003125519258901477, 0.01542312279343605, -0.010489800944924355, 0.022550474852323532, -0.0052286721765995026, -0.005319549236446619, -0.012184007093310356, 0.006241301540285349, -0.003745430149137974, -0.013027864508330822, -0.03271571546792984, -0.002392012160271406, 0.007393491920083761, 0.02081082947552204, 0.009717346169054508, 0.05940758436918259, 0.022031176835298538, -0.032637819647789, 0.005618145223706961, -0.02000591903924942, 0.010372959077358246, -0.008886470459401608, -0.007471386343240738, 0.016072243452072144, -0.02809397131204605, -0.013449793681502342, 0.0064620026387274265, 0.009146119467914104, -0.022355739027261734, 0.03287150338292122, 0.019668376073241234, 0.0245108213275671, -0.025017136707901955, -0.020499251782894135, 0.04621743783354759, 0.027600638568401337, -0.047827258706092834, -0.02558836340904236, -0.018512940034270287, 0.010729975067079067, -0.04203709587454796, -0.006341915111988783, -0.005884284619241953, 0.031469400972127914, -0.0060043721459805965, -0.006169897969812155, -0.004167358856648207, 0.014384528622031212, 0.023952577263116837, -0.012002252973616123, 0.022173983976244926, -0.00011805893882410601, 0.0038330613169819117, 0.005400689318776131, 0.018655747175216675, 0.007912788540124893, 0.0200318843126297, -0.0325079970061779, 0.006260775029659271, -0.005332531873136759, 0.0069585805758833885, -0.006104986183345318, -0.0037778860423713923, -0.023303454741835594, -0.013345934450626373, -0.015397157520055771, -0.019538551568984985, -0.01813644915819168, 0.002734423615038395, -0.014968737959861755, 0.0042809550650417805, 0.015617858618497849, 0.016786277294158936, 0.014774001203477383, 0.048761993646621704, 0.01826627366244793, 0.012878566980361938, -0.027938181534409523, -0.016578558832406998, -0.004485428333282471, 0.01001594215631485, -0.03009326383471489, 0.011775060556828976, -0.012638391926884651, 0.03544202446937561, -0.033209048211574554, -0.026873622089624405, 0.007023492828011513, -0.0005712267593480647, -0.004573059733957052, 0.024770470336079597, -0.04920339584350586, 0.025120995938777924, 0.011015588417649269, 0.010619624517858028, -0.004144639708101749, -0.032248347997665405, 0.005504549015313387, -0.005705776624381542, -0.011463482864201069, 0.014034003019332886, -0.03214448690414429, -0.025770116597414017, 0.009224014356732368, 0.009048751555383205, 0.020538197830319405, -0.01502066757529974, 0.034091852605342865, -0.025990817695856094, -0.005637618713080883, -0.012995408847928047, 0.003579904092475772, -0.004699638579040766, -0.010762431658804417, -0.01460522972047329, -0.028639232739806175, -0.0004434309958014637, 0.0030881946440786123, -0.0010726730106398463, -0.01049629133194685, 0.019369781017303467, -0.006711914669722319, -0.0036577987484633923, -0.04359498620033264, 0.03995990753173828, -0.0038557806983590126, 0.03650658205151558, 0.01135313231498003, -0.007640157826244831, -0.029496073722839355, -0.04460761696100235, 0.02900274097919464, -0.021174337714910507, 0.004586042370647192, 0.005082619842141867, -0.022394685074687004, -0.012696812860667706, 0.0010037038009613752, -0.0173445213586092, -0.010282081551849842, 0.015137509442865849, -0.007711561396718025, 0.0018094256520271301, 0.0141768092289567, 0.01502066757529974, 0.0011408306891098619, 0.02731502614915371, 0.0025997308548539877, -0.024783452972769737, 0.02465362846851349, -0.015968384221196175, -0.007529807277023792, -0.006189371924847364, 0.024030471220612526, -0.004530866630375385, 0.01009383611381054, 0.004680164624005556, 0.05104690045118332, 0.017759960144758224, 0.04847637936472893, 0.025964852422475815, 0.00021360148093663156, -0.0007785398629494011, 0.005238409154117107, 0.019434692338109016, 0.026795728132128716, 0.007945245131850243, 0.037856753915548325, 0.013306987471878529, 0.004235516767948866, -0.034091852605342865, -0.035987287759780884, -0.01367049477994442, 0.012119094841182232, -0.011035062372684479, -0.01912311464548111, 0.012456637807190418, 0.0081919115036726, -0.02736695483326912, -0.012482603080570698, 0.039492540061473846, 0.024056436493992805, 0.0008471033070236444, -0.0028788531199097633, -0.015591894276440144, -0.03294939920306206, 0.04728199541568756, 0.008367174305021763, -0.004868410062044859, -0.017837854102253914, -0.006887177005410194, -0.015059614554047585, 0.02380977012217045, -0.026691868901252747, 0.04439989849925041, -0.02357608638703823, 0.03936271741986275, 0.020395392552018166, 0.00813998095691204, 0.026562044396996498, 0.0008600857690908015, -0.017617153003811836, -0.03520834073424339, 0.02462766319513321, -0.013644530437886715, -0.0011887034634128213, -0.01000945083796978, 0.03728552907705307, -0.009042260237038136, 0.018694693222641945, 0.017643118277192116, 0.02539362572133541, 0.022096090018749237, 0.022511526942253113, 0.012949970550835133, -0.02171959914267063, -0.025289766490459442, -0.014566282741725445, -0.0024439417757093906, -0.009568048641085625, 0.026873622089624405, -0.02287503518164158, -0.0048164804466068745, 0.016656452789902687, -0.02648415043950081, 0.02915853075683117, 0.009678399190306664, 0.014228739775717258, -0.031235717236995697, -0.02173258177936077, -0.0007440553163178265, 0.032637819647789, 0.0007302614976651967, 0.011807517148554325, -0.009211031720042229, -0.0006438472191803157, 0.008133490569889545, -0.04800901189446449, -0.004517884459346533, 0.015942418947815895, -0.012988917529582977, -0.006082266569137573, 0.03718166798353195, -0.0436469167470932, 0.02827572450041771, -0.02365398034453392, 0.046918489038944244, -0.023056790232658386, 0.0300153698772192, -0.022161001339554787, 0.034221675246953964], [0.032879117876291275, 0.055450472980737686, 0.03285268694162369, 0.054604705423116684, -0.03483494743704796, -0.004251951817423105, -0.010717429220676422, -0.010102927684783936, 0.02917889505624771, 0.08246209472417831, -0.03192763030529022, 0.0002849501324817538, -0.019148649647831917, 0.007459911983460188, -0.016637785360217094, 0.012435389682650566, 0.009580932557582855, 0.05254315584897995, -0.0026677940040826797, 0.032641246914863586, 0.0488165020942688, 0.020919470116496086, -0.0035416411701589823, 0.021461287513375282, -0.05872781202197075, -0.060419339686632156, 0.028571000322699547, 0.0006743820267729461, -0.01617525704205036, -0.03766297549009323, 0.0978444442152977, -0.016941731795668602, 0.022505279630422592, -0.029496056959033012, 0.03279982507228851, 0.01425907015800476, -0.0019806099589914083, 0.0038092464674264193, 0.020390866324305534, 0.020324790850281715, -0.040041688829660416, 0.026892686262726784, -0.029918938875198364, -0.045327719300985336, -0.0364471897482872, 0.05486900731921196, -0.0015808538300916553, -0.036870069801807404, -0.002819767454639077, 0.013690821826457977, -0.00159737269859761, 0.009567717090249062, 0.0002287860552314669, -0.041363198310136795, 0.0209987610578537, -0.00606902502477169, -0.01394190825521946, 0.02965463697910309, 0.03248266503214836, -0.015144480392336845, 0.039724528789520264, -0.04641135782003403, -0.014457296580076218, 0.0005075416411273181, 0.014602662064135075, -0.00591044407337904, 0.023099958896636963, 0.02549188770353794, -0.04733641445636749, 0.012627008371055126, 0.0520145520567894, 0.021712373942136765, -7.722561713308096e-05, -0.01641312800347805, -0.033883463591337204, -0.015831664204597473, 0.014391221106052399, 0.012792196124792099, -0.02767237462103367, -0.048525769263505936, -0.02372106723487377, -0.0045426832512021065, 0.009072151966392994, 0.014602662064135075, -0.004195787478238344, 0.02093268558382988, -0.03393632173538208, -0.0027156986761838198, -0.017959292978048325, -0.0066537922248244286, -0.02952248603105545, 0.013981553725898266, -0.045777034014463425, 0.026337653398513794, 0.014893393963575363, -0.027460934594273567, 0.04395335167646408, -0.012131442315876484, -0.01801215298473835, 0.05375894159078598, 0.006505122873932123, -0.003212916199117899, -0.029390335083007812, 0.024817917495965958, 0.05077233538031578, 0.004714479669928551, -0.048842933028936386, 0.04131033644080162, -0.013327407650649548, -0.04471982643008232, 0.0008085976587608457, -0.01281201932579279, -0.0029766964726150036, 0.07569596916437149, -0.001138148712925613, -0.017496764659881592, -0.03293197602033615, -0.019082574173808098, 0.0232321098446846, 0.011556586250662804, -0.05952071771025658, -0.03853517025709152, 0.02681339532136917, -0.0722600519657135, 0.028465280309319496, -0.02500293031334877, -0.010102927684783936, 0.008946608752012253, -0.04905437305569649, -0.02374749630689621, 0.06781978905200958, -0.012389136478304863, 0.02754022553563118, -0.06781978905200958, -0.007968693040311337, -0.009349668398499489, 0.0069577391259372234, 0.01641312800347805, 0.0013842795742675662, -0.053256768733263016, 0.028703151270747185, 0.02976035885512829, 0.06993419677019119, 0.018487894907593727, -0.04273756593465805, -0.00561640877276659, 0.007116320077329874, 0.04717783257365227, -0.027408074587583542, 0.01784035749733448, -0.000565770547837019, 0.001007649814710021, 0.0041693574748933315, -0.023456765338778496, 0.009805588982999325, -0.05497472733259201, 0.014999114908277988, 0.04900151118636131, 0.026443373411893845, 0.013102751225233078, -0.026681244373321533, 0.006138404365628958, -0.06015504151582718, -0.03314341977238655, 0.01690208539366722, -0.01686244085431099, -0.031108295544981956, -0.0019112308509647846, -0.03480851650238037, -0.03335485979914665, -0.02994536980986595, -0.034544218331575394, -0.0077902888879179955, -0.008979646489024162, 0.008232994005084038, -0.017060667276382446, 0.0229149479418993, -0.009719690307974815, 0.024183593690395355, 0.02907317318022251, 0.007499557454138994, 0.005388448480516672, -0.10984373837709427, -0.06951131671667099, -0.018831487745046616, 0.04331902787089348, -0.0016617962392047048, -0.016783149912953377, -0.03131973743438721, -0.027593085542321205, 0.007968693040311337, 0.02865029126405716, 0.03631503880023956, 0.021342352032661438, -0.029046744108200073, -0.010909047909080982, -0.010400267317891121, -0.008166918531060219, 0.08642661571502686, -0.041812509298324585, 0.03634146600961685, -0.056560538709163666, 0.015197341330349445, -0.036077164113521576, -0.018302883952856064, -0.014113704673945904, -0.009356276132166386, 0.01999441534280777, 0.029548916965723038, -0.01295077707618475, 0.0003384299052413553, 0.00098865304607898, -0.030711844563484192, 0.034755658358335495, -0.025372952222824097, 0.015236985869705677, -0.0031071954872459173, 0.02722306363284588, 0.009118404239416122, 0.02434217557311058, 0.009871664457023144, 0.00869552232325077, 0.02191060036420822, -0.014629092067480087, -0.007440089713782072, -0.005196829792112112, 0.022610999643802643, -0.059996459633111954, 0.028385989367961884, -0.03163689747452736, 0.015197341330349445, 0.0179064329713583, -0.008629446849226952, -0.03990953788161278, 0.02920532412827015, -0.03050040267407894, -0.01626776158809662, -0.030024658888578415, -0.018302883952856064, 0.019558316096663475, 0.03272053599357605, 0.028253838419914246, -0.0046649230644106865, -0.01425907015800476, 0.02962820790708065, -0.01355867087841034, -0.0032740358728915453, -0.015131265856325626, 0.02374749630689621, -0.005048159975558519, -0.01182088814675808, 0.003538337303325534, 0.06803122907876968, -0.028068827465176582, -0.016611354425549507, -0.02235991321504116, 0.031134726479649544, -0.045459870249032974, -0.0033797563519328833, -0.017708206549286842, -0.013261332176625729, -0.03248266503214836, -0.01690208539366722, -0.032139070332050323, -0.05449898540973663, -0.03591858595609665, -0.0038885369431227446, 0.010486165061593056, -0.03650004789233208, 0.013836187310516834, -0.004592239856719971, 0.026231931522488594, 0.03681721165776253, -0.021117696538567543, -0.0581992082297802, -0.002644667634740472, 0.03319627791643143, -0.015170910395681858, 0.011668914929032326, 0.01182088814675808, -0.042023953050374985, -0.00870873685926199, 0.00013349294022191316, -0.012342884205281734, -0.017443904653191566, 0.02604692056775093, -0.004879667889326811, -0.023456765338778496, -0.010003814473748207, 0.020113350823521614, 0.09266413748264313, -0.001949224155396223, -0.02479148842394352, 0.018646476790308952, 0.014298715628683567, 0.011398005299270153, -0.021315922960639, 0.007466519717127085, -0.055027589201927185, -0.00046046290663070977, -0.018144303932785988, 0.017576055601239204, 0.016003461554646492, -0.026073351502418518, -0.02391929365694523, 0.014457296580076218, 0.03525783121585846, 0.022003106772899628, -0.03435920551419258, -0.00045922398567199707, -0.027725236490368843, 0.020800534635782242, 0.008213171735405922, -0.03819157928228378, -0.027804525569081306, 0.023879647254943848, 0.017576055601239204, 0.06559965014457703, -0.011959646828472614, 0.012501465156674385, 0.038059428334236145, -0.010565456002950668, 0.038614459335803986, -0.02076088823378086, 0.030896855518221855, 0.0030163417104631662, 0.008992861025035381, 0.01333401445299387, -0.03470279648900032, -0.052833884954452515, -0.0016370179364457726, -0.0025158205535262823, 0.02764594554901123, -0.03980381786823273, -0.03248266503214836, -0.03459707647562027, 0.035310689359903336, 0.019042929634451866, 0.003630843013525009, 0.008669091388583183, 0.030553262680768967, 0.005864191334694624, 0.022135257720947266, 0.0026347562670707703, -0.028042398393154144, 0.0290996041148901, 0.017047451809048653, -0.0067297788336873055, -0.00032273700344376266, 0.022650646045804024, -0.0112460320815444, 0.05185597017407417, -0.08277925848960876, 0.007843149825930595, -0.08124630898237228, 0.0027437808457762003, 0.01509162038564682, -0.0262187160551548, 0.015118050388991833, -0.022307053208351135, -0.026165856048464775, -0.030051089823246002, 0.04175965115427971, 0.016664214432239532, -0.014021199196577072, 0.0002884604036808014, -0.02719663269817829, -0.011193172074854374, 0.043451178818941116, -0.04043814167380333, 0.04051743075251579, 0.03449135646224022, 0.025306876748800278, -0.004463392775505781, -0.01509162038564682, -5.327328835846856e-05, -0.06380239874124527, 0.024712197482585907, 0.006610843352973461, 0.004033902660012245, 0.018659692257642746, 0.028676722198724747, 0.008596409112215042, 0.053362488746643066, 0.03800656646490097, 0.054921869188547134, -0.03478208929300308, -0.03702865168452263, 0.03372488170862198, -0.0017311753472313285, -0.019082574173808098, 0.027830956503748894, 0.01669064536690712, 0.05804062634706497, -0.01274594385176897, 0.04450838640332222, 0.04527486115694046, 0.0775989443063736, 0.033883463591337204, -0.04524843022227287, 0.04395335167646408, -0.040147408843040466, -0.025637254118919373, 0.03118758648633957, 0.0014239248121157289, 0.02225419320166111, -0.0034260093234479427, -0.026786964386701584, 0.013221686705946922, 0.010730643756687641, 0.0030642463825643063, 0.006693437695503235, 0.03742510452866554, -0.026298006996512413, 0.022544924169778824, 0.0036275391466915607, 0.007307938765734434, 0.012864879332482815, 0.006977561861276627, -0.02061552368104458, 0.08124630898237228, -0.014285500161349773, -0.010420089587569237, -0.043451178818941116, -0.00016591118765063584, 0.03779512643814087, 0.030262531712651253, -0.06242803484201431, 0.0042090024799108505, -0.09768586605787277, -0.0449841283261776, 0.028359560295939445, 0.049080803990364075, -0.004027295392006636, -0.03293197602033615, -0.027249492704868317, -0.004605454858392477, -0.013406697660684586, 0.020113350823521614, -0.034544218331575394, -0.03383060172200203, -0.06633969396352768, 0.024566831067204475, -0.007585455197840929, -0.011080843396484852, 0.0043973177671432495, -0.00424204021692276, -0.02278279699385166, 0.011239424347877502, -0.02006049081683159, -0.018342530354857445, 0.017443904653191566, -0.02270350605249405, 0.026892686262726784, -0.04638492688536644, 0.02458004653453827, 0.03385703265666962, -0.07321153581142426, 0.05251672491431236, -0.03430634364485741, -0.0023886256385594606, 0.07839184999465942, 0.05930927395820618, 0.02677375078201294, -0.0015065190382301807, 0.009144834242761135, -0.01027472410351038, -0.011331929825246334, -0.011490510776638985, -0.03414776548743248, -0.011642484925687313, -0.0432661697268486, -0.004526164382696152, -0.0014156653778627515, 0.014906609430909157, -0.030685413628816605, 0.013598316349089146, -0.007182395551353693, -0.008576585911214352, 0.024712197482585907, -0.016532063484191895, 0.09514857083559036, -0.04686066880822182, -0.001513952505774796, 0.06057792156934738, 0.01275915838778019, 0.04805002734065056, 0.03546927124261856, -0.03895805403590202, 0.004308115690946579, -0.04482554644346237, -0.015633437782526016, 0.011992684565484524, -0.014404436573386192, -0.007592062931507826, -0.0490279421210289, -0.024566831067204475, -0.029126035049557686, 0.052384573966264725, -0.002818115521222353, 0.04855220019817352, -0.04516914114356041, 0.006501819007098675, 0.021752020344138145, -0.0003124127397313714, -0.016386697068810463, 0.012375921942293644, 0.012309846468269825, 0.012283415533602238, 0.0017840357031673193, -0.06026076152920723, -0.021619869396090508, 0.027302352711558342, -0.01509162038564682, -0.006871840916574001, -0.015567363239824772, -0.005804723594337702, -0.009620577096939087, -0.02722306363284588, 0.0015337751246988773, 0.003366541350260377, 0.008530333638191223, 0.030236100777983665, 0.014140134677290916, -0.015369136817753315, -0.005999645683914423, 0.011193172074854374, -0.06443672627210617, 0.022373128682374954, 0.007050244603306055, 0.03887876123189926, 0.003396275220438838, -0.054816149175167084, 0.043001867830753326, 0.005477650091052055, 0.0021292795427143574, -0.019967984408140182, -0.011087451130151749, 0.009217517450451851, -0.045433443039655685, 0.023060312494635582, -0.0046087587252259254, -0.02381357178092003, 0.01867290586233139, -0.0030658983159810305, -0.003158403793349862, 0.0584106482565403, 0.021923815831542015, 0.0007441741181537509, 0.0005083675496280193, 0.008774812333285809, -0.013016852550208569, 0.017959292978048325, -0.0036440580151975155, -0.009640400297939777, -0.005309158004820347, 0.0096998680382967, -0.04606776684522629, 0.007037029601633549, 0.007664745673537254, -0.019465811550617218, -0.000989479012787342, 0.007109712343662977, -0.028914593160152435, -0.027698805555701256, 0.02287530153989792, 0.02427610009908676, 0.013406697660684586, 0.019307229667901993, 0.0031914415303617716, -0.01728532277047634, -0.00049432652303949, 0.028888162225484848, -0.04355689883232117, 0.03480851650238037, 0.0010712473886087537, 0.01242878194898367, -0.04197109118103981, 0.01006328221410513, 0.03745153546333313, -0.025716543197631836, 0.030553262680768967, -0.011034591123461723, -0.0106051005423069, -0.03393632173538208, 0.0181178729981184, 0.0009589191759005189, -0.011193172074854374, -0.0020532929338514805, -0.016783149912953377, 0.003647361882030964, -0.014629092067480087, 0.009561109356582165, 0.018580401316285133, 0.0024580047465860844, 0.026522664353251457, 0.029390335083007812, 0.03702865168452263, -0.044244084507226944, 0.00907875970005989, -0.026720888912677765, -0.004192483611404896, -0.012164480052888393, -0.012666652910411358, -0.02521437034010887, -0.014338361099362373, 0.02767237462103367, -0.017338182777166367, -0.0038125503342598677, 0.0332491397857666, -0.009481819346547127, 0.014126919209957123, -0.005920355208218098, -0.014364791102707386, -0.014510156586766243, 0.02483113296329975, -0.0297339279204607, 0.004314723424613476, 0.010935477912425995, -0.022584570571780205, -0.011120488867163658, -0.026549093425273895, -0.02246563509106636, -0.009647008031606674, 0.024381820112466812, -0.025187941268086433, -0.004384102299809456, -0.013915478251874447, 0.02044372633099556, 0.006211087107658386, -0.01596381515264511, 0.005058071576058865, -0.009534679353237152, -0.009131619706749916, -0.009164657443761826, -0.008001730777323246, -0.029020313173532486, 0.025980845093727112, -0.009501641616225243, -0.005606497172266245, 0.05893925204873085, 0.009838626720011234, 0.062058012932538986, -0.03472922742366791, 0.05592621490359306, 0.010505988262593746, -0.03385703265666962, 0.00606902502477169, 0.005315765738487244, -0.016703858971595764, 0.006481996271759272, 0.007499557454138994, -0.007208825554698706, -0.015131265856325626, 0.008034767583012581, -0.03227122128009796, -0.014113704673945904, 0.03589215502142906, -0.009514857083559036, 0.025095434859395027, -0.024249669164419174, 0.011768028140068054, 0.011378183029592037, 0.013446343131363392, -0.020536232739686966, -0.010122750885784626, 0.05362679064273834, -0.04934510588645935, -0.023179247975349426, 0.032139070332050323, -0.07379300147294998, 5.58801684746868e-06, 0.0209987610578537, -0.01585809513926506, -0.011398005299270153, 0.006931309122592211, -0.020245501771569252, 0.02204275131225586, -0.009006076492369175, 0.026971977204084396, 0.0035614639054983854, -0.0017509979661554098, 0.00207311543636024, -0.009851841256022453, -0.009303415194153786, -0.007829934358596802, 0.013063105754554272, -0.03435920551419258, -0.002808204386383295, 0.022003106772899628, 0.016822796314954758, 0.003026253078132868, 0.00888714101165533, 0.018620045855641365, 0.013115965761244297, 0.03258838504552841, 0.028808873146772385, 0.005084501579403877, -0.015408782288432121, -0.06686829775571823, -0.024593262001872063, 0.0006384535226970911, -0.04286971688270569, -0.060525063425302505, -0.050613753497600555, 0.022055966779589653, -0.003984346520155668, 0.007565632928162813, 0.049424394965171814, -0.04030599072575569, -0.0396452359855175, 0.033989183604717255, -0.07305295765399933, 0.02065516822040081, -0.012468427419662476, -0.017087096348404884, 0.009230732917785645, -0.030685413628816605, 0.0057254331186413765, 0.03425348550081253, -0.05930927395820618, 0.02427610009908676, -0.02643015794456005, 0.012052152305841446, 0.02191060036420822, -0.005745255388319492, 0.01114691887050867, 0.025227585807442665, 0.004744213540107012, -0.003720044856891036, 0.010228470899164677, -0.03126687556505203, 0.005421486217528582, -0.0010629879543557763, -0.004060333129018545, 0.005943481810390949, -0.028042398393154144, -0.003224479267373681, -0.015342706814408302, 0.00020039427909068763, -0.032614815980196, -0.044006213545799255, -0.03380417078733444, -0.011364967562258244, 0.019452596083283424, 0.004030599258840084, -0.008166918531060219, 0.06226945295929909, 0.011014767922461033, 0.003034512512385845, -0.040491003543138504, 0.011536763980984688, -0.02907317318022251, -0.015673084184527397, 0.019664037972688675, 0.01905614323914051, -0.009865056723356247, 0.03681721165776253, -0.018236808478832245, 0.01957153156399727, 0.0032525614369660616, 0.031161155551671982, -0.005960000678896904, 0.017813926562666893, 0.036420758813619614, 0.0021358870435506105, -0.01669064536690712, 0.0034260093234479427, 0.02148771844804287, -0.012534502893686295, 0.0014743072679266334, 0.018342530354857445, -0.009415743872523308, 0.0052959430031478405, -0.002532339422032237, -0.01394190825521946, -0.04479911923408508, 0.0027322175446897745, -0.010532418265938759, -0.0353899821639061, 0.04805002734065056, 0.0007276553078554571, -0.018276454880833626, 0.001502389321103692, 0.021685944870114326, -0.019637607038021088, -0.005837761331349611, 0.0015098227886483073, 0.007274901028722525, -0.012058760039508343, -0.03018324077129364, -0.0008969734772108495, -0.008669091388583183, -0.022201333194971085, -0.032324083149433136, 0.01509162038564682, 0.01126585528254509, -0.06369668245315552, 0.006412616930902004, 0.028385989367961884, -0.009627184830605984, -0.0147083830088377, -0.008147096261382103, -0.003432616824284196, 0.04955654591321945, -0.00909197423607111, -0.06929987668991089, -0.0014371398137882352, -0.0229149479418993, -0.01377011276781559, -0.006534856744110584, 0.041151754558086395, -0.01784035749733448, 0.04249969497323036, -0.024606477469205856, 0.015355922281742096, -0.002365499036386609, -0.010017029941082, -0.017404258251190186, -0.018276454880833626, 0.02058909274637699, 0.00876159779727459, 0.02743450365960598, 0.011609447188675404, 0.02875601127743721, 0.0025951110292226076, -0.013862618245184422, 0.003749778727069497, 0.01554093323647976, -0.01119977980852127, 0.0035482486709952354, 0.008444435894489288, 0.0038951444439589977, 0.0014107096940279007, -0.006990776862949133, -0.036182887852191925, -0.0398566797375679, 0.016783149912953377, 0.016545278951525688, 0.015078404918313026, 0.024712197482585907, -0.023271754384040833, -0.0356014221906662, -0.013400089927017689, 0.011027983389794827, 0.007691176142543554, 0.0010629879543557763, 0.010783504694700241, 0.010783504694700241, 0.05124807730317116, -0.03153117746114731, -0.03208621218800545, 0.008721952326595783, -0.02295459248125553, 0.015038760378956795, -0.038825903087854385, 0.007585455197840929, 0.0010291242506355047, -0.011325323022902012, -0.0046087587252259254, 0.028782442212104797, -0.01700780726969242, 0.013637961819767952, -0.0166245698928833, -0.012560932897031307, -0.03824443742632866, 0.021752020344138145, 0.004486519377678633, -0.010043459944427013, 0.003515210933983326, 0.05164453014731407, -0.006505122873932123, 0.03819157928228378, -0.028227409347891808, -0.04297543689608574, 0.008424612693488598, -0.005223259795457125, 0.04234111309051514, 0.039063774049282074, 0.012831841595470905, 0.0055073839612305164, 0.03676434978842735, 0.020179426297545433, 0.003402882954105735, -0.034517787396907806, -0.01856718584895134, -0.029258184134960175, 0.036949362605810165, 0.025333305820822716, -0.010539025068283081, -0.0166245698928833, 0.0024761755485087633, 0.011516941711306572, 0.02434217557311058, 0.032218363136053085, -0.01486696396023035, -0.019042929634451866, -0.0072154332883656025, -0.003551552537828684, 0.012336276471614838, -0.04054386168718338, 0.0004790466045960784, 0.011741598136723042, 0.005897229071706533, -0.0035713750403374434, -0.01069099921733141, 0.011728382669389248, -0.010109535418450832, 0.009931132197380066, 0.011292285285890102, 0.0462527759373188, -0.005345499608665705, -0.02350962534546852, -0.004499734379351139, 0.03845588117837906, -0.004516253247857094, -0.03549570217728615, 0.028359560295939445, 0.03139902651309967, 0.0017063970444723964, 0.03671148791909218, -0.011351753026247025, 0.020298361778259277, -0.0067859431728720665, 0.00040305990842171013, -0.009243947453796864, -0.006078936159610748, -0.0022796010598540306, -0.008299069479107857, -0.05476328730583191, 0.0006483648321591318, 0.043001867830753326, -0.02639051340520382, 0.02635086700320244, 0.0334605798125267, 0.023073527961969376, -0.007360799238085747, -0.0012942517641931772, 0.021712373942136765, 1.890633939183317e-05, 0.037953708320856094, 0.007195610553026199, 0.0013983205426484346, -0.03573357313871384, -0.009931132197380066, -0.02809525839984417, -0.003110499121248722, 0.007374014239758253, 0.0008672395488247275, 0.009164657443761826, 0.023099958896636963, -0.01291773933917284, -0.01140461303293705, -0.004730998072773218, -0.041786078363657, 0.028280269354581833, 0.019042929634451866, 0.029231755062937737, 0.053362488746643066, 0.01596381515264511, 0.03396275267004967, 0.0383765883743763, 0.011431043036282063, -0.010790112428367138, 0.03634146600961685, 0.0290996041148901, -0.0029420070350170135, -0.012871487066149712, -0.022240977734327316, 0.02027193084359169, 0.00735419150441885, -0.005778293125331402, 0.07849756628274918, 0.03361916169524193, -0.01784035749733448, 0.0003997561288997531, 0.001954179722815752, -0.015170910395681858, 0.016743505373597145, -0.0055073839612305164, -0.012098404578864574, 0.0332491397857666, 0.005824545864015818, 0.00013855184079147875, 0.006531552877277136, 0.015131265856325626, -0.012290023267269135, 0.010631531476974487, 0.003994257654994726, -0.0023522840347141027, 0.016505634412169456, 0.010347407311201096, 0.008338714949786663, -0.018487894907593727, -0.019360091537237167, 0.026971977204084396, 0.02169916033744812, 0.024989714846014977, 0.017576055601239204, 0.011774635873734951, 0.029231755062937737, 0.005817938596010208, 0.011470688506960869, 0.02308674342930317, 0.019875477999448776, 0.0068916636519134045, 0.03866732120513916, 0.0010877661406993866, 0.014536586590111256, -0.004010776523500681, 0.001764213084243238, -0.012930954806506634, 0.017219247296452522, -0.01069099921733141, -0.0090589364990592, -0.042156100273132324, 0.008001730777323246, 0.00012502704339567572, -0.02191060036420822, -0.02284887246787548, 0.005771685857325792, -0.0034491356927901506, 0.021989891305565834, -0.003046075813472271, 0.025439027696847916, -0.00011532221105881035, -0.022069182246923447, -0.0054016634821891785, 0.025042574852705002, 0.017880002036690712, 0.03380417078733444, 0.02072124369442463, -0.010611708275973797, 0.030553262680768967, 0.01182088814675808, 0.018752196803689003, 0.01194643136113882, -0.005143969319760799, -0.002866020193323493, 0.020034059882164, -0.03573357313871384, 0.01731175370514393, -0.020139779895544052, 0.010472950525581837, -0.020853394642472267, -0.03724009171128273, 0.007532595191150904, 0.017827142030000687, 0.0165188480168581, 0.021474502980709076, -0.007400444243103266, 0.048763640224933624, 0.001484218519181013, 0.03359273076057434, 0.011655699461698532, -0.022135257720947266, -0.030315391719341278, 0.007407051976770163, 0.009580932557582855, -0.009164657443761826, 0.01371725182980299, -0.02611299604177475, -0.004423747770488262, 0.001574246329255402, 0.026192286983132362, -0.016783149912953377, -0.015739159658551216, 0.011272462084889412, 0.003921574912965298, -0.021329138427972794, 0.013664391823112965, 0.004655011463910341, -0.018620045855641365, 0.01317543350160122, 0.012105012312531471, -0.016360267996788025, -0.03330199792981148, -0.028491711243987083, 0.011113881133496761, -0.017430689185857773, -0.010017029941082, 0.001585809513926506, 0.008266031742095947, 0.006990776862949133, -0.018316099420189857, -0.019386520609259605, -0.029998229816555977, -0.008226386271417141, 0.020906254649162292, -0.0006702523096464574, -0.011999291367828846, -0.024527186527848244, -0.020813750103116035, 0.04329260066151619, 0.007393836509436369, -0.03898448497056961, -0.008299069479107857, -0.017153171822428703, 0.009713083505630493, -0.019624391570687294, 0.025676898658275604, -0.009191087447106838, -0.028227409347891808, -0.01717960275709629, 0.011206386610865593, -0.015276631340384483, 0.0018385478761047125, 0.020456941798329353, -0.009554502554237843, 0.025478672236204147, 0.008160311728715897, -0.006838803179562092, -0.014510156586766243, -0.018699336796998978, 0.019849048927426338, -0.007301331032067537, -0.0017113527283072472, -0.0013182041002437472, 0.04197109118103981, 0.0002925901208072901, -0.01139139849692583, -0.03094971552491188, -0.018025368452072144, 0.02496328391134739, 0.029918938875198364, -0.012997030280530453, -0.027249492704868317, 0.01912221871316433, 0.009144834242761135, -0.024249669164419174, 9.276365744881332e-05, -0.02722306363284588, 0.0018583704950287938, 0.025544747710227966, -0.002861064625903964, -0.010373837314546108, -0.014681953005492687, -0.03094971552491188, -0.016294192522764206, 0.006419224664568901, 0.030923284590244293, 0.022928161546587944, 0.014721598476171494, -0.0003937680448871106, -0.02572975866496563, -0.007559025194495916, 0.0066141472198069096, 0.08325500041246414, -0.003990953788161278, -0.03885233402252197, 0.03129330649971962, 0.028042398393154144, -0.0058212424628436565, 0.031240446493029594, -0.007136142812669277, 0.008576585911214352, -0.02097233012318611, -0.045195572078228, 0.03819157928228378, 0.034993529319763184, 0.018646476790308952, -0.0028941023629158735, -0.010757074691355228, 0.03631503880023956, 0.03377774357795715, 0.03998883068561554, 0.007208825554698706, 0.019703682512044907, -0.057564884424209595, 0.026958761736750603, -0.046332068741321564, -0.009296808391809464, -0.023826787248253822, 0.01995476894080639, 0.0017196121625602245, 0.01272612065076828, 0.017998937517404556, -0.0065844133496284485, -0.0017245678463950753, -0.01486696396023035, -0.007393836509436369, 0.01835574395954609, -0.012541109696030617, 0.032218363136053085, -0.006990776862949133, 0.007823326624929905, 0.004688049200922251, -0.026681244373321533, -0.034438494592905045, 0.007697783410549164, 0.0032756878063082695, 0.003315333044156432, 0.015659868717193604, -0.005451220087707043, -0.002986607840284705, 0.010400267317891121, -0.001681618858128786, -0.025201154872775078, -0.01275915838778019, -0.01947902701795101, -0.004020687658339739, -0.03700222074985504, -0.015725944191217422, 0.02031157724559307, -0.020959114655852318, -0.008444435894489288, -0.03042111173272133, -0.0017361310310661793, 0.03380417078733444, -0.02976035885512829, 0.006838803179562092, -0.032641246914863586, -0.010512595064938068, 0.01950545608997345, 0.013426519930362701, -0.021500933915376663, -0.030923284590244293, 0.009931132197380066, -0.032218363136053085, 0.015461642295122147, 0.028333129361271858, 0.02033800631761551, 0.013485988602042198, -0.03430634364485741, 0.013208471238613129, 0.001680792891420424, -0.015844879671931267, -0.011536763980984688, -0.019254369661211967, 0.003538337303325534, 0.02208239771425724, -0.015355922281742096, -0.02353605628013611, 0.012032329104840755, -0.0010712473886087537, -0.006330023054033518, 0.029469626024365425, -0.00693791639059782, -0.006240820977836847, 0.02521437034010887, -0.015038760378956795, 0.003127017989754677, 0.0011290633119642735, -0.018236808478832245, -0.035865724086761475, -0.013016852550208569, -0.0026793573051691055, 0.017853571102023125, 0.017258893698453903, -0.006220998242497444, 0.013347229920327663, -0.02308674342930317, 0.002424967009574175, -0.047309983521699905, -0.014298715628683567, -0.018038582056760788, -0.009567717090249062, 0.008299069479107857, -0.013261332176625729, 0.002609978197142482, -0.003498692065477371, -0.008873925544321537, -0.027143772691488266, -0.016505634412169456, -0.03507281839847565, -0.002310986863449216, 0.006012861151248217, -0.01686244085431099, -0.006230909842997789, 0.0016584923723712564, 0.014985899440944195, 0.0060888477601110935, 0.012415566481649876, -0.0018848006147891283, -0.018580401316285133, -0.0026298006996512413, -0.008444435894489288, -0.0038951444439589977, -0.007664745673537254, -0.011014767922461033, 0.019082574173808098, -0.018302883952856064, -0.003796031465753913, 0.002401840640231967, -0.0013363749021664262, -0.014153349213302135, 0.006263947580009699, 0.02343033440411091, 0.025082219392061234, -0.00031489055254496634, -0.007294723764061928, -0.01641312800347805, 0.031769048422575, -0.00790922436863184, -0.019637607038021088, -0.0071890028193593025, 0.001179445767775178, -0.030870424583554268, 0.0106051005423069, 0.009726298041641712, 0.04968869686126709, 0.01634705252945423, -0.005203437525779009, 0.008358537219464779, 0.017827142030000687, 0.024117520079016685, 0.004238736815750599, 0.004166053608059883, 0.013360444456338882, -0.00876159779727459, -0.00853694137185812, 0.021712373942136765, -0.0052001336589455605, 0.007525987457484007, 0.0050382488407194614, -0.0025785923935472965, 0.016571709886193275, -0.03655290976166725, -0.023562485352158546, 0.02709091268479824, 0.03533712029457092, -0.009878271259367466, -0.0004992822068743408, 0.013849402777850628, 0.019915124401450157, -0.05177668109536171, -0.0015213859733194113, -0.011094058863818645, 0.00665048835799098, -5.3686257160734385e-05, -0.012210733257234097, 0.006382883060723543, -0.02997179888188839, -0.0032443020027130842, -0.009554502554237843, 0.03425348550081253, -0.016122397035360336, -0.0011257595615461469, -0.018910778686404228, 0.0332491397857666, 0.008021553047001362, 0.016148826107382774, 0.007862972095608711, 0.0244082510471344, -0.005692395381629467, 0.011966253630816936, 0.022333484143018723, 0.0015478160930797458, -0.01673028990626335, -0.010142573155462742, -0.04051743075251579, -0.00034958013566210866, -0.04025312885642052, -0.0015362529084086418, 0.0028329824563115835, 0.018487894907593727, -0.010354014113545418, 0.008774812333285809, 0.004575720988214016, 0.018408605828881264, 0.02287530153989792, -0.0018435035599395633, -0.006657096091657877, 0.000745000084862113, 0.022069182246923447, 0.015871310606598854, -0.00041648148908279836, -0.01596381515264511, -0.009276985190808773, 0.03401561453938484, -0.027830956503748894, -0.015659868717193604, 0.02788381651043892, -0.020641952753067017, 0.012508071959018707, 0.008788027800619602, -0.011986076831817627, 0.007539202459156513, 0.02176523581147194, -0.014192994683980942, 0.0010976775083690882, 0.02754022553563118, 0.00872856006026268, -0.035760004073381424, 0.021434858441352844, -0.021474502980709076, 0.0032509095035493374, -0.00658771675080061, 0.003796031465753913, -0.006320111453533173, 0.001746042282320559, 0.006220998242497444, 0.009970776736736298, -0.01832931488752365, -0.027381643652915955, -0.012263593263924122, -0.010228470899164677, -0.034412067383527756, -0.017496764659881592, 0.027593085542321205, -0.003779512597247958, 0.023443549871444702, -0.01217108778655529, -0.011331929825246334, -0.02298102155327797, -0.01242878194898367, -0.005074590444564819, -0.01724567823112011, 0.0010357318678870797, 0.004965566098690033, 0.0159902460873127, 0.007466519717127085, 0.030236100777983665, -0.031663328409194946, -0.031874772161245346, -0.04310758784413338, 0.0069577391259372234, 0.01692851632833481, -0.016809580847620964, 0.006581109482795, -0.021025190129876137, -0.007777073886245489, 0.010472950525581837, 0.013598316349089146, -0.014999114908277988, 0.03404204174876213, -0.008351929485797882, -0.00023270928068086505, 0.00648530013859272, 0.005077894311398268, -0.010169003158807755, 0.020404081791639328, -0.012719513848423958, -0.034438494592905045, -0.0037035259883850813, 0.02625836245715618, -0.028703151270747185, 0.04226182401180267, 0.012408958747982979, 0.017047451809048653, -0.004450177773833275, 0.012878094799816608, 0.02451397106051445, 0.015051974914968014, 0.006951131392270327, -0.0029353995341807604, 0.011477296240627766, -0.01901649869978428, 0.009759335778653622, 0.03314341977238655, 0.008959823288023472, -0.0077506438829004765, 0.024249669164419174, 0.021315922960639, 0.03404204174876213, -0.0033120291773229837, -0.018963638693094254, -0.014906609430909157, -0.01316221896559, -0.015342706814408302, -0.041574638336896896, -0.0067198676988482475, -0.002451397245749831, -0.012983814813196659, -0.015977030619978905, 0.005477650091052055, 0.020840179175138474, 0.0006706652347929776, -0.007063459604978561, 0.015554147772490978, -0.03885233402252197, 0.034649938344955444, -0.006845410913228989, -0.012190910056233406, -0.03660576790571213, -0.02809525839984417, -0.021025190129876137, -0.0015461642760783434, -0.042050380259752274, 0.042050380259752274, -0.020628739148378372, 0.014814103953540325, 0.03161047026515007, 0.028597431257367134, 0.0054677389562129974, 0.01905614323914051, -0.019796188920736313, -0.01592417061328888, -0.0006690133595839143, 0.004311419557780027, 0.030711844563484192, -0.010724036954343319, 0.0165188480168581, 0.010420089587569237, -0.0007503686938434839, -0.02719663269817829, 0.030341820791363716, 0.041046034544706345, 0.010532418265938759, -0.026958761736750603, 0.015593793243169785, 0.027725236490368843, -0.0007003991631790996, 0.04802359640598297, -0.039513085037469864, 0.01137157529592514, -0.004255255218595266, -0.008021553047001362, 0.05164453014731407, -0.007175787817686796, 0.006997384130954742, 0.032773394137620926, -0.02875601127743721, 0.020086919888854027, -0.0458298958837986, 0.020324790850281715, 0.025782618671655655, 0.007050244603306055, -0.02023228630423546, 0.008021553047001362, -0.004225521348416805, 0.012904524803161621, -0.047759294509887695, -0.027302352711558342, 0.0018038583220914006, -0.01669064536690712, 0.017813926562666893, 0.028280269354581833, -0.04329260066151619, 0.01509162038564682, -0.036288607865571976, 0.03932807594537735, -0.009746121242642403, 0.0017377828480675817, -0.012217340990900993, 0.014087274670600891], [0.004436389077454805, 0.01966160535812378, 0.03180640563368797, 0.047223225235939026, -0.01708230935037136, 0.040826573967933655, 0.004119504243135452, 0.051733311265707016, -0.0005393492174334824, 0.0065735201351344585, 0.003437833162024617, -0.04156351462006569, 0.02779744192957878, -0.026588857173919678, -0.0023674252443015575, 0.040443360805511475, -0.022697806358337402, -0.0024650702252984047, -0.012594333849847317, 0.014893592335283756, 0.05079002305865288, 0.029507147148251534, 0.02243250608444214, 0.002015535719692707, -0.03820306062698364, -0.030214611440896988, -0.011054125614464283, 0.03599223494529724, 0.009852911345660686, -0.09692257642745972, 0.06508669257164001, -0.03136423975229263, 0.02395060658454895, -0.06508669257164001, -0.01361131388694048, -0.012380621396005154, -0.03923477977514267, 0.008423243649303913, 0.005501270294189453, 0.041799336671829224, -0.010265598073601723, 0.016212718561291695, -0.045867253094911575, -0.00806951243430376, -0.019808994606137276, 0.03637544438242912, 0.017730819061398506, -0.046368375420570374, 0.012999651953577995, -0.0016627247678115964, -0.01896888017654419, 0.03154110535979271, 0.00013138289796188474, -0.07334043830633163, 0.007299407850950956, -0.030804164707660675, 0.009432854130864143, 0.03139371797442436, 0.029315542429685593, -0.012189016677439213, 0.04457023739814758, -0.0592501163482666, -0.01619797945022583, -0.006109246984124184, 0.0019694766961038113, 0.030774686485528946, 0.007023054640740156, -0.00890225637704134, -0.03339819982647896, 0.014127173461019993, 0.06355385482311249, 0.015416821464896202, 0.03894000127911568, -0.03186536207795143, -0.027532143518328667, -0.035903800278902054, 0.014701987616717815, 0.005692875012755394, -0.029993528500199318, -0.018040332943201065, -0.009012797847390175, 0.01411980390548706, 0.020472241565585136, -0.021990342065691948, -0.029610319063067436, -0.05792362242937088, -0.09232406318187714, -0.011805806308984756, -0.06461504846811295, 0.058247875422239304, -0.025689788162708282, 0.0054754773154854774, 0.001287805731408298, 0.0526176393032074, 0.041268736124038696, -0.05199860781431198, 0.025955088436603546, -0.057275112718343735, -0.0193815678358078, 0.020531196147203445, 0.01947000063955784, -0.025792960077524185, -0.02054593525826931, 0.03664074465632439, 0.058631084859371185, 0.01301439106464386, -0.006544042844325304, -0.0007770129595883191, -0.01509256660938263, -0.04978778213262558, -0.09067331254482269, -0.014598815701901913, -0.03752507269382477, 0.05344301462173462, -0.023493703454732895, -0.004421650432050228, -0.03835044801235199, 0.01273435354232788, 0.013596574775874615, -0.013500772416591644, -0.0274142324924469, -0.019867949187755585, 0.015431559644639492, -0.028667032718658447, 0.027178410440683365, -0.03796723857522011, -0.003310710657387972, 0.006079769227653742, -0.0723971575498581, -0.04274262115359306, 0.05992810055613518, -0.0010261913994327188, 0.018290894106030464, -0.04663367196917534, -0.016315890476107597, 0.0038063041865825653, -0.04972882941365242, -0.01600637473165989, -0.016212718561291695, -0.024628592655062675, 0.025660311803221703, -0.014237714000046253, -0.0014103222638368607, -0.005678135901689529, -0.044982925057411194, -0.005191754549741745, 0.002500074915587902, 0.01755395159125328, -0.04017806425690651, -0.008401135914027691, -0.0026603597216308117, -0.040384408086538315, 0.012255340814590454, -0.02193138562142849, 0.006164517719298601, 0.005641289055347443, 0.025881394743919373, 0.0553295873105526, 0.00012539523595478386, -0.02672150731086731, -0.021386049687862396, 0.0066840616054832935, -0.017465518787503242, -0.01572633720934391, 0.049463529139757156, -0.013736593537032604, -0.06449714303016663, 0.03254334628582001, -0.059043772518634796, -0.06679639965295792, -0.03419409692287445, -0.023641090840101242, -0.07611133903265, 0.06031130999326706, 0.0017769507830962539, -0.032602302730083466, -0.0343414843082428, -0.012830155901610851, -0.00636717677116394, -0.0018847284372895956, 0.006978838238865137, -0.013287059962749481, -0.04713479429483414, -0.03469521552324295, -0.04784225672483444, 0.015018872916698456, -0.018821492791175842, -0.00620873412117362, -0.014436688274145126, 0.01107623428106308, 0.013029130175709724, 0.03690604120492935, -0.00456903874874115, 0.026264604181051254, -0.00237479479983449, -0.018954141065478325, 0.0029901410453021526, 0.007535229437053204, 0.008939103223383427, -0.016787532716989517, 0.023994822055101395, -0.03009670041501522, 0.061844151467084885, 0.010597222484648228, -0.055005330592393875, -0.02616143226623535, -0.007122541777789593, -0.02051645889878273, -0.008467460982501507, -0.011555246077477932, 0.006042922381311655, -0.06160832941532135, 0.03148215264081955, 0.020177464932203293, -0.024746503680944443, 0.024775981903076172, -0.09161659330129623, 0.07493223249912262, -0.01683175005018711, 0.04283105209469795, -0.027237366884946823, 0.02675098553299904, -0.00571866799145937, -0.0075425985269248486, 0.02467280998826027, 0.05205756425857544, 0.020486980676651, -0.058542650192976, 0.02328735962510109, -0.03781985118985176, 0.009985560551285744, 0.004679580219089985, -0.039500076323747635, -0.04020754247903824, 0.005899218842387199, -0.03525529429316521, 0.011223622597754002, 0.02143026515841484, 0.022329334169626236, 0.021327093243598938, 0.04003067687153816, 0.019455261528491974, 0.006776179186999798, 0.004230045713484287, 0.027089977636933327, -0.003798934631049633, -0.028062742203474045, -0.0071078031323850155, 0.0172739140689373, -0.039470598101615906, 0.0025166559498757124, 0.012631181627511978, 0.014827268198132515, -0.02470228634774685, -0.02650042437016964, 0.016713839024305344, -0.029109198600053787, -0.008754868060350418, 0.0019768462516367435, -0.006680376827716827, 0.0035078427754342556, -0.011805806308984756, -0.01121625304222107, -0.0033070261124521494, -0.02996405027806759, -0.006146094296127558, -0.0027193150017410517, 0.005770253948867321, 0.0064519247971475124, 0.04748852550983429, -0.03230752423405647, -0.005508639384061098, 0.030052484944462776, -0.027399493381381035, -0.027119455859065056, 0.02243250608444214, -0.016330629587173462, 0.0010906737297773361, 0.0061387247405946255, 0.012247971259057522, -0.05167435482144356, -0.004123189020901918, 0.01865936443209648, -0.021120749413967133, 0.02392112836241722, 0.013522881083190441, 0.012977544218301773, -0.013065977022051811, 0.007266245316714048, 0.03979485481977463, 0.016758054494857788, -0.053325105458498, -0.004815914202481508, -0.03336872160434723, 0.04459971562027931, 0.0006871981895528734, 0.010280337184667587, -0.034429918974637985, -0.013073346577584743, 0.011901608668267727, 0.009757108986377716, 0.022889411076903343, 0.010250859893858433, -0.020030075684189796, -0.03325081244111061, 0.023390531539916992, 0.012329035438597202, 0.00036524675670079887, -0.048667632043361664, -0.015593687072396278, -0.01830563321709633, -0.025424489751458168, -0.017229698598384857, -0.052293386310338974, -0.0748143270611763, -0.0006973310955800116, 0.04380381852388382, 0.010611960664391518, -0.026294080540537834, -0.016905443742871284, 0.03101050853729248, -0.014797789976000786, 0.06378967314958572, -0.014842006377875805, 0.008423243649303913, -0.04073813930153847, 0.023862173780798912, -0.04383329302072525, -0.054150477051734924, -0.012336404994130135, -0.02426012232899666, -0.030332522466778755, 0.039028435945510864, 0.0253065787255764, 0.0028040632605552673, 0.0008239930029958487, 0.021607132628560066, -0.010877260006964207, 0.040443360805511475, 0.009897127747535706, 0.03319185599684715, -0.054121002554893494, -0.00468694930896163, -0.023744262754917145, -0.03378140926361084, 0.028637556359171867, 0.031216852366924286, 0.02946292981505394, -0.012387990951538086, 0.04333217442035675, -0.016153762117028236, -0.004377434030175209, -0.02035433053970337, 0.012159538455307484, -0.049463529139757156, 0.002426380757242441, 0.02306627668440342, 0.002146342769265175, -0.04849076643586159, 0.0019252602942287922, -0.025704527273774147, -0.00811372883617878, -0.013272320851683617, -0.014996764250099659, 0.021548176184296608, 0.040856048464775085, -0.016536973416805267, 0.03796723857522011, 0.03239595890045166, -0.02675098553299904, -0.005707613658159971, 0.04430493712425232, -0.016212718561291695, -0.012093214318156242, -0.058542650192976, -0.03330976516008377, 0.02101757749915123, 0.015519993379712105, 0.006017129402607679, -0.0027377386577427387, 0.016817010939121246, -0.007597869262099266, 0.02896181121468544, -0.03466574102640152, 0.06968521326780319, 0.03837992623448372, -0.06320012360811234, -0.014606185257434845, -0.0193815678358078, 0.02685415744781494, 0.01038350909948349, -0.0043221632950007915, -0.0431847870349884, 0.008622217923402786, -0.017730819061398506, 0.0037712992634624243, -0.0032296471763402224, -0.008474829606711864, 0.051291145384311676, 0.033575065433979034, 0.013478664681315422, -0.018379326909780502, -0.04294896498322487, 9.206014510709792e-05, -0.07935388386249542, 0.011385750025510788, -0.02577822282910347, -0.005902903154492378, -0.01528417132794857, 0.022447245195508003, 0.029064981266856194, -0.0078042130917310715, 0.05022994801402092, -0.0008608400821685791, 0.015431559644639492, -0.018511977046728134, -0.007907385006546974, 0.05196912959218025, 0.008135836571455002, -0.028401734307408333, 0.012351143173873425, -0.0057481457479298115, -0.014819898642599583, -0.04412807151675224, -0.01888044737279415, 0.04686949402093887, -0.0039721159264445305, -0.016993876546621323, 0.01932261325418949, -0.050495248287916183, -0.025129713118076324, 0.0214892216026783, 0.059544891119003296, -0.01843828149139881, -0.04442284628748894, -0.038969479501247406, 0.026839418336749077, 0.03230752423405647, -0.03392879664897919, -0.05462212115526199, 0.028092218562960625, -0.04073813930153847, 0.01047931145876646, 0.023714784532785416, 0.006275058723986149, 0.022683067247271538, 0.01689070463180542, -0.017598168924450874, -0.03572693467140198, -0.009617089293897152, 0.0030951553490012884, 0.026647813618183136, -0.02810695767402649, 0.04073813930153847, -0.03646387904882431, 0.026795201003551483, -0.004613255150616169, -0.0016682518180459738, 0.04465866833925247, -0.07776208966970444, -0.004624309483915567, 0.010818304494023323, 0.03979485481977463, 0.04056127369403839, 0.04754748195409775, -0.06885983794927597, -0.01644853875041008, -0.05665608122944832, -0.024333816021680832, 0.013817657716572285, -0.007093064021319151, -0.026706768199801445, -0.03973589837551117, 0.005048051010817289, -0.0016267988830804825, -0.04289000853896141, -0.04928666353225708, -0.04436389356851578, 0.037171341478824615, -0.001816561329178512, 0.013007021509110928, -0.000640678743366152, -0.0392642542719841, 0.01526943314820528, 0.04238888993859291, 0.011872131377458572, 0.05391465872526169, 0.020457502454519272, -0.03186536207795143, 0.024333816021680832, 0.0006139645702205598, 0.00496330251917243, 0.05196912959218025, -0.018114028498530388, -0.0012297715293243527, 0.0021297617349773645, -0.005464422982186079, -0.018762536346912384, 0.02016272582113743, 0.010361400432884693, 0.004896977916359901, -0.05615495890378952, 0.0027156302239745855, 0.05193965509533882, -0.011260469444096088, 0.0338403657078743, -0.00923387985676527, -0.031128419563174248, -0.018644625321030617, 0.02328735962510109, -0.06950834393501282, 0.013861874118447304, 0.007063586730509996, 0.017347607761621475, -0.0033530849032104015, -0.002861176384612918, -0.021813474595546722, -0.016728578135371208, -0.046751584857702255, 0.032602302730083466, -0.010626699775457382, -0.01796663925051689, -0.022727282717823982, 0.018850969150662422, 0.02874072827398777, 0.00526176393032074, -0.025675050914287567, -0.048579201102256775, -0.050347860902547836, 0.025173930451273918, 0.049581438302993774, -0.02414221130311489, -0.030420955270528793, 0.044452324509620667, 0.019676344469189644, -0.006149778608232737, 0.007236768025904894, -0.009344421327114105, 0.013058607466518879, -0.023302096873521805, 0.0214892216026783, -0.03752507269382477, -0.0025350796058773994, 0.02426012232899666, 0.013309167698025703, 0.016183240339159966, 0.02262411080300808, 0.018895186483860016, 0.000348204979673028, -0.01117203664034605, 0.028386995196342468, -0.005140168592333794, 0.046840015798807144, -0.03602171316742897, 0.010553006082773209, -0.04165194556117058, 0.010678285732865334, -0.023081015795469284, 0.04277209937572479, -0.00359996035695076, -0.025232885032892227, 0.01944052241742611, 0.01647801697254181, 0.004476921167224646, -0.038144104182720184, 0.016315890476107597, 0.04209411144256592, 0.0009561819024384022, -0.03186536207795143, 0.0345478281378746, 0.03419409692287445, -0.011547877453267574, 0.0338403657078743, -0.024569638073444366, 0.05326614901423454, 0.009572872892022133, 0.006006075069308281, -0.07658298313617706, -0.00038343999767675996, -0.005759199615567923, -0.05058367922902107, 0.006857242900878191, -0.020693324506282806, -0.016684360802173615, -0.005571279674768448, 0.010457203723490238, 0.011562615633010864, 0.0018156402511522174, 0.03743664175271988, 0.03911686688661575, 0.01947000063955784, -0.03142319619655609, 0.01921944133937359, 0.018541453406214714, 0.003544689854606986, 0.012365882284939289, 0.00801792647689581, -0.001476646983064711, 0.012948065996170044, 0.005471792537719011, 0.021032316610217094, 0.012535379268229008, -0.006779863964766264, -0.03319185599684715, -0.006013444624841213, 0.01052352786064148, 0.01982373185455799, 0.0009699995862320065, 0.029772445559501648, 0.019499478861689568, 0.00011929244647035375, 0.030244089663028717, 0.03106946311891079, -0.01550525426864624, -0.03475417196750641, 0.017318131402134895, -0.024466466158628464, -0.01963212713599205, -0.02126813866198063, 0.023994822055101395, -0.008379027247428894, -0.007627347018569708, -0.000977369025349617, -0.0116731571033597, -0.004193198401480913, 0.03413514047861099, -0.01888044737279415, -0.016625406220555305, 0.00466484110802412, -0.0007507593836635351, -0.01153313834220171, 0.0007853035349398851, -0.0043626949191093445, -0.010486681014299393, 0.006698800250887871, -0.021341832354664803, 0.029079720377922058, 0.012704875320196152, 0.021562915295362473, -0.010737241245806217, 0.04206463322043419, 0.05992810055613518, -0.014105064794421196, -0.010818304494023323, 0.009307574480772018, 0.018703581765294075, 0.002150027547031641, 0.05494637414813042, -0.015578947961330414, -0.033162377774715424, 0.02732579968869686, -0.016817010939121246, 0.008460091426968575, -0.0360511913895607, 0.00978658627718687, -0.02309575490653515, 0.007841059938073158, 0.04984673857688904, -0.0056376042775809765, 0.03681761026382446, -0.01846775971353054, 0.012668028473854065, -0.01213006116449833, 0.0387631356716156, 0.03817358240485191, 0.003395459149032831, 0.015667380765080452, -0.01060459204018116, -0.0001296556874876842, 0.05665608122944832, -0.02016272582113743, -0.01052352786064148, 0.05606652796268463, 0.004690634086728096, -0.014362994581460953, 0.014517752453684807, -0.03481312841176987, 0.009189663454890251, -0.018202461302280426, 0.01888044737279415, 0.0038652594666928053, -0.010803566314280033, -0.01121625304222107, -0.003723398083820939, -0.011002540588378906, -0.049935173243284225, 0.060046013444662094, -0.011687896214425564, 0.017789773643016815, -0.009160186164081097, -0.0054865311831235886, 0.00017030263552442193, 0.027428971603512764, -0.028062742203474045, 0.01002240739762783, 0.014222975820302963, 0.0025940348859876394, -0.01683175005018711, -0.0489034540951252, -0.08548524230718613, 0.021887170150876045, 0.033044468611478806, 0.013957676477730274, -0.024569638073444366, -0.04350904002785683, -0.002570084296166897, 0.010140318423509598, 0.008622217923402786, 0.024510681629180908, -0.036257535219192505, -0.023051537573337555, -0.024849675595760345, -0.04106239229440689, 0.03428252786397934, -0.03549111261963844, 0.016713839024305344, -0.012594333849847317, -0.04580829665064812, 0.0005706692463718355, -0.008578001521527767, -0.02965453639626503, 0.04374486207962036, -0.017377085983753204, -0.04881501942873001, 0.03510790318250656, 0.01459144614636898, -0.01924891769886017, 0.007122541777789593, 0.008379027247428894, 0.019484739750623703, 0.010722502134740353, -0.004241099581122398, -0.01279330812394619, -0.006927252281457186, -0.01117203664034605, 0.016536973416805267, -0.025380274280905724, -0.025232885032892227, -0.02807747945189476, 0.0161685012280941, 0.01232166588306427, -0.037141863256692886, -0.0061387247405946255, -0.017922423779964447, 0.0036552310921251774, -0.016905443742871284, -0.0038431512657552958, 0.02001533843576908, -0.00798844825476408, 0.04869711026549339, -0.017318131402134895, 0.014819898642599583, 0.004970672074705362, -0.0153136495500803, 0.011562615633010864, -0.003238858887925744, -0.0012205597013235092, 0.0016848330851644278, -0.009145447053015232, 0.02924184873700142, 0.00935916043817997, 0.030863119289278984, -0.014046109281480312, 0.01526943314820528, 0.02367056906223297, -0.00526176393032074, 0.032572824507951736, -0.015298910439014435, 0.03180640563368797, 0.03330976516008377, 0.009587612003087997, 0.00016592703468631953, 1.2032876838929951e-05, 0.017214959487318993, 0.02902076579630375, 0.0010851466795429587, -0.013788179494440556, -0.029521886259317398, -0.014797789976000786, -0.025247624143958092, 0.03849783539772034, -0.01918996311724186, 0.015011503361165524, 0.009698153473436832, 0.009381268173456192, 0.003997908905148506, 0.0023250512313097715, -0.020501719787716866, 0.009705523028969765, -0.005132799036800861, -0.04324373975396156, -0.013051237910985947, -0.0044400738552212715, -0.013198626227676868, -0.012247971259057522, -0.02092914469540119, -0.014436688274145126, -0.05208704248070717, 0.015475776046514511, 0.027089977636933327, -0.029949313029646873, -0.0032204354647547007, 0.015402082353830338, 0.037200819700956345, 0.04922770708799362, -0.021562915295362473, -0.03381088748574257, 0.006779863964766264, 0.00021256163017824292, -0.016050590202212334, -0.03101050853729248, 0.01802559569478035, -0.030391477048397064, -0.01384713500738144, 0.0046316790394485, 0.007384156342595816, 0.010184534825384617, -0.03428252786397934, -0.029536625370383263, 0.016360105946660042, -0.0016839118907228112, -0.0064887721091508865, -0.006776179186999798, 0.01736234687268734, 0.010973062366247177, -0.007428372744470835, -0.005843948107212782, 0.005029627587646246, 0.009919235482811928, 0.0030804164707660675, 0.02688363380730152, -0.01916048489511013, -0.011429966427385807, 0.020472241565585136, 0.0037491910625249147, -0.014598815701901913, -0.005449684336781502, 0.008548524230718613, 0.017951900139451027, 0.005457053426653147, -0.019543694332242012, -0.0074652195908129215, -0.04150455817580223, -0.0003265573177486658, -0.016360105946660042, -0.01339023094624281, -0.014930439181625843, -0.012594333849847317, 0.01000766921788454, 0.0274142324924469, -0.018585670739412308, -0.02319892682135105, 0.016360105946660042, 0.0065293037332594395, 0.0005121745052747428, -0.022727282717823982, -0.00496330251917243, -0.04203515499830246, 0.013360753655433655, 0.015431559644639492, -0.015534731559455395, -0.02184295281767845, -0.006370861548930407, -0.02968401275575161, 0.018615148961544037, 0.027782702818512917, 0.06473296135663986, 0.02464333176612854, 0.02993457391858101, 0.00735836336389184, 0.02467280998826027, -0.020472241565585136, 0.039057910442352295, -0.013486034236848354, -0.000946048938203603, -0.0002468754828441888, -0.01274909172207117, 0.03298551216721535, 0.005523378495126963, 0.030111439526081085, 0.052794504910707474, 0.009992930106818676, -0.0049411943182349205, -0.015608426183462143, -0.02120918408036232, 0.01957317255437374, 0.0063008517026901245, 0.02423064410686493, 0.026146693155169487, 0.00330149894580245, -0.034017231315374374, 0.005840263329446316, 0.01994164288043976, -0.016566449776291847, 0.002557187806814909, 0.047164272516965866, -0.009528656490147114, 0.02467280998826027, -0.013419709168374538, 0.018453020602464676, -0.005961858667433262, 0.03277916833758354, -0.019897427409887314, -0.0003173455479554832, 0.011636310257017612, -0.004893293138593435, -0.0036275957245379686, -0.024717025458812714, 0.020472241565585136, -0.012247971259057522, 0.01932261325418949, -0.012336404994130135, -0.005552855785936117, -0.0006148857646621764, -0.006595628336071968, 0.0038210428319871426, -0.01435562502592802, 0.009919235482811928, 0.0215923935174942, 0.009263358078897, 0.05058367922902107, 0.01145207416266203, 0.03139371797442436, -0.020147986710071564, 0.02395060658454895, 0.015239954926073551, 0.024525420740246773, 0.0027193150017410517, -0.0077378880232572556, -0.022049296647310257, -0.005298611242324114, -0.02256515622138977, 0.03180640563368797, 0.02946292981505394, -0.01739182509481907, -0.020722800865769386, -0.004620624706149101, -0.028224868699908257, 0.01406821794807911, -0.03322133421897888, 0.004347956273704767, 0.0010897526517510414, 0.016713839024305344, -0.021386049687862396, -0.0020542251877486706, -0.02984614111483097, -0.0296250581741333, -0.007045162841677666, 0.00822426937520504, 0.011127820238471031, 0.03837992623448372, -0.005913957487791777, -0.00877697579562664, -0.016360105946660042, -0.023213664069771767, 0.010081362910568714, 0.033575065433979034, -0.008961211889982224, 0.0703926756978035, -0.007877906784415245, -0.023847434669733047, 0.023965345695614815, -0.020560674369335175, -0.012410098686814308, 0.03109894134104252, 0.0323370024561882, -0.04118030518293381, -0.016433801501989365, -0.033987753093242645, 0.0072625610046088696, -0.007796843536198139, -0.009167554788291454, 0.03658178821206093, 0.031334761530160904, -0.006002390291541815, -0.008813823573291302, 0.04050231724977493, 0.016286412253975868, 0.00102803367190063, -0.016374845057725906, 0.013272320851683617, 0.05064263567328453, 0.03911686688661575, -0.013766071759164333, -0.02032485231757164, 0.007958970963954926, 0.022255640476942062, 0.004476921167224646, -0.011208883486688137, 0.007292038295418024, 0.020914407446980476, -0.022358812391757965, -0.017701340839266777, 0.019204702228307724, 0.004289000760763884, -0.005014888476580381, 0.03018513321876526, -0.03328029066324234, 0.01162894070148468, 0.0034138825722038746, 0.016330629587173462, -0.004443758632987738, 0.036699697375297546, -0.020118510350584984, 0.026338297873735428, 0.02378848008811474, 0.031334761530160904, 0.020118510350584984, 0.009838172234594822, -0.04123925790190697, -0.01060459204018116, -0.022240901365876198, 0.03018513321876526, -0.039411645382642746, -0.014237714000046253, -0.011017278768122196, -0.0071851820684969425, -0.013434448279440403, -0.005976597312837839, 0.03006722219288349, 0.006930937059223652, 0.017907684668898582, 0.0006420604768209159, -0.02691311202943325, 0.030081961303949356, -0.021503960713744164, -0.003332819091156125, -0.023685308173298836, 0.04878554120659828, 0.027679530903697014, 0.017981378361582756, 0.004598516505211592, 0.01071513257920742, 0.02073753997683525, 0.01575581356883049, 0.031275808811187744, 0.003345715580508113, -0.012277449481189251, -0.011783698573708534, -0.02782692015171051, -0.04209411144256592, 0.001239904435351491, -0.050465770065784454, 0.013323906809091568, -0.0007203605491667986, -0.007251506671309471, 0.01802559569478035, -0.004723796620965004, 0.043538518249988556, 0.052263908088207245, -0.00717781251296401, 0.006599313113838434, -0.012852263636887074, -0.012704875320196152, -0.010774088092148304, -0.011606832034885883, -0.010486681014299393, 0.006374545861035585, -0.028342779725790024, 0.0019013097044080496, 0.009263358078897, -0.024628592655062675, -0.005162276793271303, -0.01153313834220171, 0.015372605063021183, 0.001493228250183165, -0.002982771722599864, 0.0021389734465628862, 0.014274561777710915, 0.001952895661816001, 0.025910871103405952, -0.005630234722048044, -0.003120948327705264, 0.005921327043324709, 0.024790719151496887, -0.016743315383791924, -0.022771500051021576, -0.05028890445828438, 0.008592740632593632, -0.010000299662351608, -0.0102434903383255, 0.007314146962016821, 0.008364289067685604, -0.009793955832719803, 0.02549818344414234, -0.03832096979022026, -0.0036312805023044348, 0.008091620169579983, 0.017789773643016815, 0.033162377774715424, -0.0161685012280941, 0.03967694193124771, 0.0022439875174313784, 0.011164667084813118, 0.01714126393198967, 0.007826320827007294, 0.01241746824234724, -0.012808047235012054, 0.015608426183462143, 0.01647801697254181, -0.020147986710071564, 0.014819898642599583, 0.028681771829724312, 0.0074983821250498295, -0.026102475821971893, -0.02312523126602173, 0.009580242447555065, -0.02187243103981018, 0.030008267611265182, -0.009720261208713055, -0.0072257136926054955, -0.006934621836990118, 0.008990689180791378, 0.019396306946873665, -0.0008700518519617617, -0.003798934631049633, -0.042595233768224716, 0.025984564796090126, 0.019617389887571335, 0.01016242615878582, -0.01736234687268734, -0.01143733598291874, -0.007015685550868511, -0.015387343242764473, 0.01683175005018711, -0.023935867473483086, -0.015858985483646393, -0.006831449922174215, 0.014127173461019993, 0.030008267611265182, 0.001476646983064711, -0.009911865927278996, 0.02987561747431755, -0.011879500932991505, -0.0025682419072836637, -0.0034949462860822678, -0.016536973416805267, -0.02968401275575161, 0.0011256785364821553, -0.030686253681778908, 0.008607479743659496, 0.014274561777710915, -0.011702634394168854, -0.004771697800606489, 0.005818155128508806, -0.022491462528705597, -0.023803217336535454, 0.09102704375982285, -0.014790420420467854, -0.01153313834220171, 0.016183240339159966, 0.027178410440683365, -0.019455261528491974, -0.012329035438597202, 0.021503960713744164, -0.027237366884946823, -0.009108600206673145, -0.02918289229273796, 0.0233463142067194, 0.00992660503834486, -0.0028224869165569544, -0.009285465814173222, -0.012940697371959686, -0.006658268626779318, 0.06632475554943085, 0.0010188219603151083, 0.013323906809091568, 0.02312523126602173, -0.014141911640763283, 0.026515163481235504, 0.01176895946264267, -0.020855451002717018, -0.03982433304190636, 0.019764777272939682, -0.007649455219507217, 0.021813474595546722, 0.03154110535979271, -0.007376786787062883, 0.030140917748212814, -0.007590499706566334, 0.013854504562914371, -0.011525768786668777, 0.0072625610046088696, 0.008563263341784477, -0.02785639837384224, 0.04975830763578415, -0.03139371797442436, -0.0012067421339452267, 0.008990689180791378, -0.0035170544870197773, -0.01916048489511013, 0.005449684336781502, 0.018010856583714485, -0.0045911469496786594, 0.009852911345660686, 0.020147986710071564, -0.011466813273727894, -0.0034986308310180902, 0.0005679057212546468, -0.03566798195242882, -0.0017824778333306313, -0.019278395920991898, 0.022417766973376274, 0.006219788454473019, 0.04350904002785683, -0.023773740977048874, -0.005158592015504837, 0.01918996311724186, 0.009388637728989124, -0.018511977046728134, 0.01311019342392683, -0.01131205540150404, -0.03139371797442436, -0.002468754770234227, -0.006577204912900925, -0.009115969762206078, -0.007325200829654932, -0.020221680402755737, 0.01733287051320076, 0.03378140926361084, -0.00429268553853035, -0.026618335396051407, 0.02070806361734867, -0.01865936443209648, 0.01273435354232788, 0.0022789924405515194, -0.038556791841983795, 0.025218145921826363, 0.01932261325418949, 0.002494547748938203, 0.036287009716033936, -0.027031023055315018, 0.004222676157951355, 0.037053432315588, 0.01871832087635994, -0.004351641051471233, 0.06549938023090363, -0.011046756990253925, -0.024495942518115044, 0.022800978273153305, 0.007981078699231148, -0.002695364411920309, 0.018172983080148697, -0.016242196783423424, 0.0041600363329052925, -0.012329035438597202, -0.011695265769958496, -0.0007466141250915825, -0.007067271042615175, -0.00011088669998571277, 0.010774088092148304, -0.033604543656110764, -0.020428024232387543, -0.022270379588007927, 0.012424837797880173, -0.005372305400669575, 0.01569685898721218, 0.00399422412738204, 0.0015420506242662668, 0.048638153821229935, -0.00045206770300865173, -0.01966160535812378, 0.004576408304274082, -0.00775262713432312, -0.05618443712592125, 0.003798934631049633, 0.0001731813099468127, 0.009904497303068638, -0.0031854307744652033, 0.0026714138220995665, -0.011179406195878983, 0.03410566225647926, 0.01255748700350523, -0.030303044244647026, -0.006330329459160566, 0.0153136495500803, 0.019867949187755585, -0.0029919834341853857, 0.016080068424344063, 0.01947000063955784, -0.032631780952215195, -0.02439277060329914, 0.014886222779750824, 0.00866643525660038, -0.01985321007668972, -0.004528507124632597, -0.00207633338868618, -0.008010556921362877, 0.03280864655971527, -0.021975602954626083, 0.03018513321876526, -0.030332522466778755, 0.003752875840291381, -0.031305283308029175, -0.006680376827716827, -0.009322312660515308, 0.00011779552733059973, -0.026131954044103622, 0.009049644693732262, 0.0009617089526727796, 0.046722106635570526, -0.002347159432247281, -0.005368620622903109, 0.052706073969602585, -0.021253399550914764, -0.01459144614636898, -0.014060848392546177, -0.014783050864934921, -0.00012907995551358908, -0.017907684668898582, -0.02398008480668068, 0.030214611440896988, -0.028843900188803673, -0.008062142878770828, 0.03687656298279762, 0.019971121102571487, -0.013412339612841606, 0.00167193659581244, -0.028475428000092506, 0.020457502454519272, -0.0038689440116286278, -0.03737768530845642, -0.0007125305710360408, -0.0037731416523456573, 0.015180999413132668, -0.003798934631049633, 0.0023176816757768393, -0.021002840250730515, 0.001519021112471819, -0.0018432755023241043, -0.00955076515674591, -0.006053976248949766, -0.04371538385748863, 0.009366529062390327, 0.005895534064620733, 0.02738475427031517, -0.005165961571037769, 0.014849375933408737, 0.010774088092148304, 0.03690604120492935, 0.017126526683568954, 0.01613902486860752, -0.004756958689540625, 0.032661259174346924, -0.03204222768545151, 0.016301151365041733, 0.025542400777339935, 0.00745416572317481, -0.03381088748574257, -0.030922075733542442, -0.014208236709237099, 0.024908630177378654, -0.0282690841704607, 0.02104705572128296, 0.004318478517234325, 0.024820197373628616, 0.012211124412715435, 0.01664014533162117, -0.003408355638384819, 0.021002840250730515, -0.009484440088272095, 0.005000149831175804, 0.010096102021634579, -0.005928696133196354, 0.056302350014448166, 0.014326147735118866, -0.03192431479692459, -0.03938216716051102, -0.01669909991323948, 0.020752279087901115, -0.049994125962257385, -0.0005117139080539346, -0.010096102021634579, -0.009403376840054989, -0.0033530849032104015, -0.0060613458044826984, -0.027119455859065056, 0.039470598101615906, 0.005969228222966194, -0.004399542231112719, -0.010634069330990314, -0.0032646518666297197, -0.022830454632639885, -0.015608426183462143, -0.03510790318250656, -0.0175244752317667, -0.010553006082773209, -0.020177464932203293, 0.006120301317423582, 0.015873724594712257, 0.001793531933799386, -0.0046353633515536785, 0.03148215264081955, 0.007487328257411718, -0.016654882580041885, -0.021282877773046494, -0.007826320827007294, -0.017819251865148544, -0.005663397256284952, 0.00627137441188097, -0.008415875025093555, 0.008098989725112915, -0.00812846701592207, 0.020221680402755737, -0.024407509714365005, 0.020413286983966827, 0.007214659824967384, -0.024540159851312637, -0.006057661026716232, 0.019750038161873817, -0.012387990951538086, 0.015004133805632591, 0.03982433304190636, -0.012336404994130135, -0.031305283308029175, -0.021636608988046646, 0.005641289055347443, -0.011916347779333591, 0.012432207353413105, 0.007214659824967384, -0.03425305336713791, -0.020752279087901115, 0.004436389077454805, 0.004878554493188858, -0.011054125614464283, 0.020604891702532768, -0.015416821464896202, -0.0023526865988969803, 0.0333392433822155, -0.00627137441188097, 0.02322840318083763, 0.045041877776384354, -0.02126813866198063, -0.04430493712425232, -8.353925659321249e-05, 0.016817010939121246, 0.01047931145876646, 0.028062742203474045, 0.037200819700956345, -0.013051237910985947, 0.030244089663028717, -0.02943345345556736, 0.0407676175236702, 0.0003749190946109593, -0.00088525126921013, -0.014657771214842796, -0.01613902486860752, -0.0004002514760941267, -0.013655530288815498, 0.005372305400669575, 0.01877727545797825, 0.011746851727366447, 0.041209783405065536, 0.011695265769958496, 0.03646387904882431, -0.0032886024564504623, -0.02874072827398777, -0.004565353970974684, -0.005191754549741745, -0.01435562502592802, -0.01145207416266203, 0.015652641654014587, -0.011754220351576805, -0.0006323881098069251, -0.012609072960913181, -0.004130558576434851, -0.016772793605923653, -0.0025369219947606325, -0.007745257578790188, 0.02464333176612854, -0.018202461302280426, 0.02823960781097412, 0.0014674352714791894, 0.005574964452534914, -0.051320623606443405, -0.00043157150503247976, -0.031275808811187744, -0.0008677489240653813, -0.027266845107078552, 0.037053432315588, -0.010751980356872082, 0.0233463142067194, 0.03319185599684715, 0.013758702203631401, 0.03227804973721504, 0.009948713704943657, -0.010781457647681236, -0.008703282102942467, -0.014392471872270107, 0.03103998675942421, 0.03563850373029709, -0.011621571145951748, 0.04595568776130676, -0.002540606539696455, 0.024599114432930946, 0.0018792013870552182, 0.004134243354201317, 0.013065977022051811, 0.030170394107699394, -0.009838172234594822, -0.012314296327531338, 0.0018285367405042052, -0.013817657716572285, 0.024525420740246773, -0.0051364838145673275, -0.005936065688729286, 0.010088732466101646, -0.002695364411920309, 0.0027469503693282604, 0.004366379696875811, 0.0201332475990057, 0.0171707421541214, 0.018482498824596405, -0.035402681678533554, 0.02536553516983986, -0.012771200388669968, 0.0006448240019381046, 0.01799611747264862, 0.007701041176915169, 0.019926903769373894, -0.022742021828889847, -0.015372605063021183, -0.054975852370262146, 0.00011929244647035375, -0.026868896558880806, -0.03557954728603363, -0.04238888993859291, 0.022049296647310257, -0.015519993379712105, -0.016551710665225983, -0.011562615633010864, 0.021666087210178375, -0.00863695703446865, 0.004532191902399063, 0.017259174957871437, 0.012933327816426754], [-0.010677294805645943, 0.0046761659905314445, 0.05844162777066231, 0.045359108597040176, -0.009501539170742035, 0.04774642735719681, -0.024255186319351196, 0.01588762365281582, -0.0013309316709637642, 0.07357724756002426, -0.006165257655084133, -0.008033337071537971, 0.017164841294288635, 0.011280094273388386, -0.03289728984236717, 0.0010071512078866363, 0.002876722253859043, 0.047245092689991, -0.008075115270912647, -0.010146115906536579, 0.06908908486366272, 0.036239538341760635, -0.01735582761466503, -0.021080048754811287, -0.05104093253612518, -0.05514712631702423, -0.01195451244711876, 0.003951016813516617, 0.033422499895095825, -0.0770149901509285, 0.06402796506881714, -0.02926856093108654, 0.008307878859341145, -0.05753444880247116, 0.008815184235572815, 0.0015487747732549906, -0.002060556784272194, -0.0342341884970665, 0.008570483885705471, 0.04247044771909714, 0.016794806346297264, -0.010880217887461185, -0.01950441673398018, 0.005899668205529451, -0.033995456993579865, 0.047722555696964264, 0.005905636586248875, -0.06617654860019684, 0.015183364041149616, 0.00594741478562355, 0.01994607038795948, 0.0645054280757904, -0.006111543159931898, -0.04791354015469551, 0.02788391523063183, 0.00630252854898572, 0.02580694481730461, 0.04473840445280075, 0.009955130517482758, -0.03108292445540428, 0.011966449208557606, -0.03783904388546944, -0.0007512602023780346, -0.010742946527898312, 0.02630828320980072, 0.016651567071676254, -0.009083758108317852, -0.0075737773440778255, -0.024410361424088478, -0.03557109087705612, 0.0556245893239975, 0.06698823720216751, 0.015445969998836517, 0.0020441440865397453, 0.019408922642469406, -0.005007406696677208, -0.03206172585487366, 0.025424974039196968, -0.013571922667324543, -0.007603618782013655, -0.0395817905664444, 0.022357264533638954, 0.008439181372523308, -0.03540397807955742, 0.008809216320514679, -0.006332369986921549, -0.0488445982336998, -0.00587281072512269, -0.025090748444199562, -0.012807979248464108, -0.019993817433714867, 0.024613283574581146, -0.07882935553789139, 0.029435673728585243, 0.016997728496789932, -0.0527598038315773, 0.03504588082432747, -0.032181091606616974, -0.021927546709775925, 0.004619467072188854, -0.042160097509622574, -0.03514137119054794, -0.047436077147722244, 0.03261081129312515, 0.011333808302879333, -0.019528290256857872, -0.0019128413405269384, 0.04769868403673172, 0.016305405646562576, -0.03779129683971405, -0.0012048513162881136, -0.016436709091067314, -0.003855524118989706, 0.06039923429489136, -0.042088478803634644, 0.0009653731249272823, -0.04791354015469551, -0.01711709424853325, 0.01655607484281063, -0.012217117473483086, -0.05572008341550827, -0.009238934144377708, 0.029865391552448273, -0.021438146010041237, 0.03084419295191765, -0.03177524730563164, -0.01123831607401371, -0.01973121240735054, -0.04951304569840431, -0.03108292445540428, 0.058202896267175674, -0.019026951864361763, 0.056054309010505676, -0.041658759117126465, -0.02160525880753994, -0.003210947383195162, 0.0059265256859362125, -0.03156039118766785, 0.013380936346948147, -0.02559208683669567, 0.04748382419347763, 0.023718038573861122, 0.007430538069456816, 0.04020249471068382, -0.060590218752622604, 0.01203806884586811, 0.00837949849665165, 0.03564270958304405, 0.010158052667975426, -0.023574799299240112, 0.011512857861816883, 0.04970403388142586, -0.03712284937500954, -0.01174562145024538, 0.022082723677158356, 0.01964765600860119, 0.03535623103380203, 0.055672336369752884, 0.013166077435016632, 0.010880217887461185, -0.03358961269259453, -0.01900307834148407, -0.013034774921834469, -0.00837949849665165, 0.012640867382287979, 0.011047329753637314, -0.016305405646562576, 0.029101448133587837, -0.03564270958304405, -0.04235108196735382, -0.022631807252764702, -0.06374148279428482, -0.05013374984264374, 0.015553398989140987, -0.007514094468206167, -0.048104528337717056, 0.02232145518064499, 0.017451319843530655, 0.018322691321372986, 0.014825265854597092, -0.015410159714519978, 0.025830818340182304, -0.11688325554132462, -0.02355092577636242, -0.01217533927410841, 0.02587856538593769, 0.005234202370047569, 0.004532926715910435, -0.05338050797581673, 0.012306641787290573, 0.013930020853877068, 0.0029543102718889713, 0.0229899063706398, 0.010814566165208817, -0.006409958004951477, 0.023885151371359825, -0.028647856786847115, -0.022273709997534752, 0.01438361220061779, -0.04858199134469032, 0.03165588155388832, -0.04999051243066788, 0.030390601605176926, -0.00464334012940526, -0.02934018149971962, -0.024052264168858528, -0.047650936990976334, 0.004085303749889135, -0.01711709424853325, -0.05801191180944443, 0.005732555873692036, -0.022440820932388306, 0.0028618015348911285, 0.01561308279633522, 0.006505451165139675, 0.020793570205569267, -0.04328213632106781, 0.05743895471096039, 0.035165246576070786, 0.032491445541381836, -0.016663502901792526, 0.019253747537732124, 0.005040232557803392, -0.038412000983953476, -0.02695285901427269, -0.00046366258175112307, 0.014228436164557934, -0.05376248061656952, -0.014109069481492043, -0.09014526009559631, 0.011112981475889683, -0.00019098572374787182, 0.005607221275568008, -0.03425806388258934, 0.003897302318364382, -0.03626341372728348, 0.022798920050263405, -0.0014100117841735482, 0.011506889015436172, 0.02552046626806259, 0.03633503243327141, 0.00045060692355036736, -0.0009370236657559872, 0.004225559066981077, 0.027000606060028076, -0.009501539170742035, 0.008027368225157261, -0.02204691432416439, 0.017690051347017288, 0.020483218133449554, 0.013930020853877068, 0.020757760852575302, 0.07945005595684052, -0.06307303160429001, -0.02313314564526081, 0.029077574610710144, -0.019265683367848396, -0.05008600279688835, -0.023443495854735374, 0.037767425179481506, -0.03745707497000694, -0.007108249701559544, -0.01080262940376997, -0.013619668781757355, -0.06517387926578522, -0.010892153717577457, -0.02790778875350952, 0.007054534740746021, -0.029650531709194183, 0.024195503443479538, -0.024231312796473503, 0.026356028392910957, 0.014873012900352478, -0.04270917922258377, -0.07114218175411224, 0.03717059642076492, -0.007436506450176239, -0.012163402512669563, -0.006511419080197811, -0.038770101964473724, -0.01957603543996811, -0.010384848341345787, -0.02393289841711521, -0.05223459377884865, 0.043759603053331375, 0.026117296889424324, -0.017331954091787338, -0.02253631502389908, -0.01777360774576664, 0.0030139933805912733, 0.07204936444759369, 0.022786984220147133, 0.01148898433893919, -0.02306152507662773, 0.05266430974006653, 0.034950386732816696, 0.01986251398921013, -0.018036212772130966, -0.009406046941876411, -0.02530560828745365, 0.01655607484281063, 0.015386287122964859, -0.020554836839437485, -0.04359249025583267, -0.054239943623542786, 0.021843992173671722, 0.0012481214944273233, -0.03122616559267044, -0.035881441086530685, 0.0030915813986212015, -0.015326603315770626, 0.029220813885331154, -0.028456872329115868, -0.06550809741020203, -0.03347024694085121, 0.0023276384454220533, -0.002885674824938178, 0.029435673728585243, 0.01712903194129467, 0.009441856294870377, -0.0006054097902961075, 0.0008713723509572446, 0.01625765860080719, -0.005774333607405424, -0.007155996281653643, -0.034067075699567795, -0.020184803754091263, 0.02088906243443489, -0.04855811968445778, -0.006487546022981405, -0.004306131042540073, -0.005299853626638651, 0.04156326502561569, 0.0020471280440688133, -0.025830818340182304, -0.023180890828371048, -0.038984958082437515, 0.04559784010052681, 0.02891046367585659, 0.025854691863059998, 0.01354804914444685, -0.03542784973978996, -0.028934335336089134, 0.026690253987908363, -0.03394770994782448, 0.03404320403933525, 0.019552161917090416, 0.02826588600873947, -0.027263211086392403, 0.03554721549153328, 0.018322691321372986, 0.02962666004896164, -0.03986826911568642, 0.0028782144654542208, -0.05042022839188576, 0.014873012900352478, 0.03480714559555054, 0.014228436164557934, -0.013524175621569157, -0.006535292603075504, -0.0128318527713418, 0.011411396786570549, 0.0120320999994874, 0.023312194272875786, 0.03982052206993103, -0.008397403173148632, -0.03129778429865837, 0.00954331737011671, 0.011315903626382351, -0.02759743668138981, 0.019910261034965515, 0.035953059792518616, 0.006893390789628029, -0.00252160825766623, 0.010092401877045631, -0.034926511347293854, 0.005499791819602251, 0.025974057614803314, -0.005377441644668579, 0.029149195179343224, 0.015720512717962265, 0.041014183312654495, -0.002029223134741187, -0.0015278857899829745, 0.013643542304635048, 0.03547559678554535, -0.06235683709383011, -0.04292403906583786, -0.043186645954847336, 0.006947105284780264, 0.009185219183564186, 2.7393582058721222e-05, -0.04335375875234604, 0.04512037709355354, -0.0429479144513607, 0.025639832019805908, -0.019695401191711426, -0.001292137778364122, 0.023944834247231483, 0.014658153988420963, -0.004771658685058355, -0.04877297580242157, -0.02595018409192562, 0.006096621975302696, -0.03879397362470627, 0.0040644146502017975, -0.04139615222811699, -0.025281734764575958, -0.013750971294939518, -0.0029199926648288965, 0.01406132336705923, 0.021151667460799217, 0.0474122054874897, 0.015493716113269329, 0.020936809480190277, -0.017367763444781303, -0.026188915595412254, 0.0534760020673275, -0.02356286346912384, -0.06049472466111183, 0.031536515802145004, 0.04125291481614113, 0.003601871198043227, -0.03251531720161438, -0.041372280567884445, 0.03170362859964371, 0.06250007450580597, -0.02530560828745365, -0.009483634494245052, -0.0495607927441597, -0.03108292445540428, 0.0048462627455592155, 0.01091602724045515, 0.02499525621533394, -0.03803003206849098, -0.03234820440411568, 0.035881441086530685, 0.002554433885961771, 0.01655607484281063, -0.04545459896326065, 0.012628930620849133, -0.03158426284790039, 0.024171629920601845, -0.008164639584720135, -0.011835145764052868, -0.0175587497651577, 0.023180890828371048, -0.001119802938774228, 0.003512346651405096, -0.01965959183871746, 0.010975710116326809, 0.013213824480772018, -0.04576495289802551, -0.011471079662442207, -0.019062761217355728, -0.01091602724045515, 0.013178014196455479, -0.02261987142264843, 0.012855726294219494, -0.045932065695524216, 0.014992378652095795, 0.05118417367339134, 0.07176288217306137, 0.0358336940407753, 0.010856344364583492, -0.028814969584345818, -0.014419421553611755, -0.021951420232653618, -0.023168954998254776, -0.026714127510786057, 0.01218130812048912, -0.02016093023121357, -0.061592891812324524, -0.030509967356920242, 0.009597032330930233, -0.01749906688928604, -0.03714672103524208, -0.033565741032361984, -0.006195099093019962, -0.029077574610710144, 0.020984556525945663, 0.0616883859038353, -0.0527598038315773, -0.020542901009321213, 0.06288205087184906, -0.021772371605038643, 0.04870135709643364, 0.015087871812283993, 0.0036406652070581913, -0.009620905853807926, -0.02123522385954857, 0.00035474105970934033, 0.03358961269259453, -0.011023457162082195, 0.02014899253845215, 0.011053298600018024, -0.04488164186477661, -0.001827792963013053, 0.029650531709194183, 0.02398064360022545, 0.04908332973718643, -0.05318952351808548, 0.013786781579256058, 0.044404178857803345, 0.022082723677158356, -0.0001301836164202541, 0.01764230616390705, -0.0017278238665312529, -0.04235108196735382, 0.04552622139453888, -0.054956138134002686, 0.004828357603400946, 0.03397158533334732, 0.005965319462120533, -0.020912935957312584, -0.008212385699152946, 0.029244687408208847, -0.029220813885331154, -0.05190036818385124, 0.036000806838274, -0.004771658685058355, -0.038698479533195496, 0.02781229466199875, 0.012473754584789276, -0.012915409170091152, 0.012306641787290573, -0.017033537849783897, -0.04270917922258377, -0.004837309941649437, 0.0014167260378599167, 0.002652911003679037, -0.016436709091067314, -0.01625765860080719, 0.022966032847762108, 0.0004442656063474715, 0.0029334211722016335, -0.0042315274477005005, -0.0009243410313501954, -0.014741710387170315, -0.014132943004369736, 0.009495571255683899, 0.005317758768796921, -0.0031244070269167423, 0.031846869736909866, -0.004855215083807707, -0.006469641346484423, 0.03554721549153328, 0.03857911378145218, -0.006589007098227739, 0.008719692006707191, 0.0033332975581288338, 0.012676676735281944, -0.0012682644883170724, -0.00036182839539833367, -0.005374457221478224, 0.013321253471076488, 0.006774024572223425, -0.04442805051803589, 0.0008049749303609133, -0.015935370698571205, -0.014323928393423557, 0.02088906243443489, 0.003712284844368696, 0.0019710322376340628, -0.008845025673508644, 0.013046711683273315, 0.018847903236746788, -0.016579948365688324, -0.029650531709194183, 0.022810855880379677, 0.011984353885054588, -0.02998475730419159, 0.009083758108317852, -0.009913352318108082, 0.04099030792713165, 0.021855928003787994, 0.00845708604902029, -0.05868036299943924, 0.036167919635772705, 0.03268242999911308, -0.011912734247744083, 0.04624241590499878, -0.033350881189107895, -0.01397776696830988, 0.003959969617426395, 0.02088906243443489, -0.023252511397004128, -0.025687579065561295, -0.0011645652120932937, 0.03657376393675804, 0.02413582056760788, 0.0019158254144713283, 0.005675856955349445, 0.009364268742501736, 0.017451319843530655, 0.03444904834032059, 0.015720512717962265, -0.015732448548078537, -0.025257861241698265, -0.003882381599396467, -0.0036406652070581913, -0.01011627446860075, 0.01575632207095623, 0.01626959629356861, -0.0466960072517395, 0.023825468495488167, 0.029220813885331154, -0.0221901535987854, 0.03337475284934044, 0.001423440407961607, -0.006756119895726442, 0.02051902748644352, 0.0008310863049700856, -0.03962953761219978, -0.001954619539901614, 0.0072634257376194, -0.034950386732816696, -0.024971382692456245, -0.006278655491769314, -5.39420398126822e-06, -0.018227199092507362, 0.01557727251201868, 0.0073529500514268875, -0.016078609973192215, -0.018465930595993996, -0.006284623872488737, -0.015028188936412334, -0.0229899063706398, -0.03437742963433266, -0.022822793573141098, -0.026212789118289948, -0.02060258388519287, -0.018370438367128372, -0.015195300802588463, 0.017164841294288635, -0.0002376130869379267, 0.00284538883715868, -0.0011787399416789412, -0.007937843911349773, 0.018095897510647774, 0.03072482720017433, 0.026284409686923027, 0.02030416950583458, -0.040441226214170456, 0.022070785984396935, 0.03072482720017433, -0.020328043028712273, 0.045573968440294266, 0.0010161036625504494, -0.0036705066449940205, -0.0029155162628740072, -0.017749734222888947, -0.013918084092438221, -0.01025951374322176, 0.028003280982375145, 0.02210659720003605, -0.011262188665568829, 0.01409713365137577, -0.003721237415447831, 0.02289441227912903, -0.048080652952194214, 0.031250037252902985, -0.010742946527898312, 0.033780597150325775, 0.048749104142189026, -0.008009463548660278, 0.05008600279688835, -0.008355624973773956, 0.005138709209859371, 0.01524304784834385, -0.04769868403673172, -0.003384028095752001, 0.05022924393415451, -0.051852621138095856, -0.014693963341414928, -0.0270960982888937, -0.007036630064249039, 0.02116360515356064, -0.027334829792380333, 0.02587856538593769, -0.01192467100918293, -0.005574395414441824, -0.020769696682691574, 0.01618603989481926, -0.000816911575384438, -0.030366728082299232, 0.02998475730419159, -0.03127391263842583, 0.0022575107868760824, 0.014562660828232765, -0.0023246542550623417, 0.020471282303333282, -0.00466124527156353, 0.019755085930228233, 0.008266100659966469, 0.06378922611474991, 0.011309935711324215, 0.0003290027379989624, -0.037313833832740784, -0.09105244278907776, 0.041085802018642426, -0.015374350361526012, 0.0003827174659818411, -0.041372280567884445, -0.03621566668152809, -0.020912935957312584, -0.036669258028268814, -0.00020795807358808815, 0.05147065222263336, -0.02759743668138981, -0.03592918813228607, 0.006439799442887306, -0.05657951906323433, -0.016209913417696953, 0.006296560168266296, 0.008439181372523308, 0.00569077767431736, -0.028146520256996155, -0.015780195593833923, 0.009793986566364765, -0.015410159714519978, 0.014013577252626419, -0.035022005438804626, -0.014825265854597092, 0.005207344889640808, -0.0030050408095121384, -0.008480959571897984, 0.000898229714948684, 0.0009452300728298724, -0.030939685180783272, 0.011662065051496029, -0.011596414260566235, -0.002812563208863139, -0.0008034828933887184, -0.012987028807401657, 0.019564099609851837, -0.03669312968850136, -0.03437742963433266, -0.01950441673398018, 0.007430538069456816, -0.027621308341622353, -0.036669258028268814, -0.001210819580592215, -0.004706007428467274, 0.011399460025131702, 0.004150955006480217, -0.002100842772051692, 0.019408922642469406, 0.020901000127196312, 0.0006490530213341117, -0.01095183752477169, 0.008546610362827778, -0.03678862378001213, -0.020328043028712273, 0.013070585206151009, 0.003727205563336611, -0.010331133380532265, 0.0014890917809680104, -0.015995053574442863, 0.04578882455825806, 0.023073462769389153, 0.001140692038461566, 0.0013331698719412088, 0.00968655664473772, 0.007925907149910927, -0.011644160374999046, 0.016209913417696953, -0.004437433555722237, 0.030939685180783272, -0.0021620180923491716, -0.027931660413742065, 0.00538639398291707, -0.017367763444781303, 0.02427905984222889, 0.039486296474933624, -0.010050623677670956, -0.02037578821182251, 0.01828688196837902, 0.015147554688155651, -0.0017651257803663611, 0.041515521705150604, -0.023813530802726746, -0.006594975478947163, -0.02182011865079403, -0.000520361470989883, 0.013130268082022667, -0.01575632207095623, -0.042446576058864594, -0.0055326176807284355, -0.01691417209804058, -0.05147065222263336, 0.0067382147535681725, -0.019194064661860466, -0.023037651553750038, -0.010068528354167938, -0.0019143334357067943, 0.021581385284662247, -0.045860446989536285, -0.02623666264116764, 0.018048150464892387, -0.020721949636936188, -0.0067382147535681725, -0.013679351657629013, 0.019850578159093857, 0.08665976673364639, -0.01770198903977871, -0.029149195179343224, 0.006929200608283281, -0.011835145764052868, 0.017320016399025917, -0.03234820440411568, 0.019755085930228233, 3.371158891241066e-05, -0.008677913807332516, -0.026642506942152977, 0.006427863147109747, 0.009226997382938862, -0.011244283989071846, 0.0010116274934262037, 0.00260218046605587, 0.015052061527967453, -0.029722152277827263, 0.0067859613336622715, -0.0007885621162131429, 0.008874867111444473, -0.0128318527713418, 0.007597650401294231, -0.0005498299724422395, 0.004294194281101227, 0.0018740473315119743, -0.0007990066660568118, -0.010999583639204502, -0.0015278857899829745, 0.009489602409303188, -0.003986826632171869, -0.03339862823486328, -0.028003280982375145, -0.005562459118664265, 0.022202089428901672, -0.017164841294288635, 0.03170362859964371, -0.006553197279572487, -0.04022636637091637, -0.027979407459497452, -0.024756522849202156, -0.028504617512226105, 0.0015159491449594498, 0.027573563158512115, 0.01025951374322176, 0.011912734247744083, -0.013524175621569157, -0.006941137369722128, 0.0046761659905314445, -0.028504617512226105, 0.020781632512807846, -0.0056549678556621075, 0.013882274739444256, -0.014109069481492043, 0.02926856093108654, 0.025759197771549225, -0.021712688729166985, 0.0019829689990729094, 0.025281734764575958, -0.02609342336654663, 0.021426210179924965, 0.009931256994605064, 0.023168954998254776, -0.006105574779212475, 0.022954095155000687, -0.00202176277525723, 0.006606912240386009, -0.03261081129312515, 0.022357264533638954, 0.005825064145028591, -0.02919694222509861, -0.009614937007427216, -0.031250037252902985, 0.006386084947735071, 0.01543403323739767, 0.003037866670638323, 0.03251531720161438, 0.02306152507662773, 0.008958423510193825, 0.005302837584167719, -0.01980283111333847, 0.011876923963427544, -0.023741912096738815, 0.026332154870033264, 0.029005955904722214, -0.00023668054200243205, -0.014789456501603127, -0.0090002017095685, 0.030605461448431015, -0.0021456051617860794, 0.01126815751194954, 0.03874622657895088, -0.03697960823774338, 0.018406247720122337, -0.006505451165139675, -0.006935168989002705, -0.044929388910532, 0.0008736104355193675, 0.017176777124404907, 0.011333808302879333, 0.024195503443479538, -0.00290805590339005, -0.007167932577431202, 0.0010026750387623906, 0.02254825085401535, 0.006135416217148304, 0.02060258388519287, -0.02883884310722351, -0.0329689085483551, -0.012736359611153603, 0.010283387266099453, 0.00016496764146722853, 0.0023455433547496796, -0.008719692006707191, 0.03330313414335251, -0.010975710116326809, 0.07711048424243927, 0.010474372655153275, 0.026260536164045334, -0.007000820245593786, 0.030032504349946976, -0.014502977952361107, 0.02137846313416958, 0.007084376644343138, 0.008266100659966469, -0.037337709218263626, -0.004777627065777779, 0.0068635493516922, 0.04099030792713165, 0.05872810631990433, -0.006624816916882992, 0.013786781579256058, -0.011530762538313866, 0.004016668535768986, 0.03612017259001732, -0.025687579065561295, -0.015529526397585869, -0.0033452340867370367, 0.027478069067001343, -0.037098973989486694, 0.017976529896259308, -0.0010817550355568528, -0.009483634494245052, 0.009364268742501736, 0.008874867111444473, 0.017176777124404907, 0.03874622657895088, -0.029507292434573174, 0.014598471112549305, -0.01126815751194954, -0.0406322106719017, 0.008254163898527622, 0.020411597564816475, 0.003545172279700637, 0.04745994880795479, -0.027716802433133125, 0.0072992355562746525, 0.030175743624567986, 0.001636807224713266, -0.033350881189107895, 0.036311160773038864, 0.030796445906162262, 0.01858529821038246, 0.008833089843392372, -0.03347024694085121, 0.0344013012945652, -0.02146201953291893, 0.0027334829792380333, 0.03347024694085121, 0.027788421139121056, -0.004139018710702658, -0.010080465115606785, 0.008791311644017696, -0.005398330744355917, 0.02270342782139778, -0.009352331981062889, -0.02443423494696617, 0.02124716155230999, 0.0368841178715229, -0.017892973497509956, -0.002108303364366293, 0.021927546709775925, 0.0007408157107420266, 0.013488366268575191, 0.008009463548660278, 0.002858817344531417, 0.044260941445827484, -0.02096068300306797, 0.01268861349672079, 0.00597725622355938, -0.00025962121435441077, 0.02883884310722351, 0.012378261424601078, -0.013739034533500671, 0.013273507356643677, 0.042231716215610504, 0.023312194272875786, 0.02182011865079403, 0.03480714559555054, 0.016066674143075943, -0.006368179805576801, 0.03783904388546944, 0.007567808963358402, 0.02247663214802742, -0.0137270987033844, -0.003270630491897464, -0.012891535647213459, -0.020757760852575302, -0.005974271800369024, -0.01260505709797144, -0.021414274349808693, -0.0024768461007624865, 0.00355114066042006, -0.024899762123823166, -0.043401505798101425, 0.004780611023306847, 0.0013853925047442317, 0.0013652495108544827, 0.011148790828883648, 0.00417482852935791, 0.021139731630682945, -0.002342559164389968, -0.019170191138982773, -0.012055973522365093, 0.05457416921854019, -0.01784522831439972, -0.00014072141493670642, 0.043544743210077286, 0.022381138056516647, 0.041157420724630356, 0.00889277271926403, 0.0202325489372015, -0.009167314507067204, 0.009710430167615414, -0.020292231813073158, 0.03514137119054794, -0.015589209273457527, -0.009656715206801891, -0.04020249471068382, 0.06589007377624512, -0.012103719636797905, -0.007967685349285603, -0.01632927916944027, -0.04139615222811699, 0.02096068300306797, 0.022273709997534752, 0.005508744157850742, 0.046361781656742096, -0.02898208238184452, 0.00383761920966208, 0.010856344364583492, -0.027836168184876442, -0.04495326429605484, -0.003643649397417903, -0.007537967525422573, 0.006762087810784578, -0.006606912240386009, -0.015302730724215508, -0.005281948950141668, -0.004321051761507988, 0.02530560828745365, 0.023515116423368454, -0.02673800103366375, 0.04478615149855614, 0.031035179272294044, 0.008045272901654243, -0.003572029760107398, -0.0011839622166007757, -0.0006624817033298314, 0.0194327961653471, 0.021271035075187683, 0.020614521577954292, -0.011023457162082195, -0.016245722770690918, 0.010462435893714428, 0.038412000983953476, -0.008946486748754978, -0.012050004675984383, -0.007412632927298546, -0.01221114955842495, -0.026714127510786057, -0.038770101964473724, -0.023312194272875786, 0.008152702823281288, -0.015398222953081131, 0.019850578159093857, -0.05209135264158249, 0.005353568587452173, 0.025401100516319275, 0.01524304784834385, 0.025257861241698265, 0.011184601113200188, 0.005377441644668579, 0.010921996086835861, -0.008654040284454823, -0.0014614883111789823, 0.016424771398305893, 0.011512857861816883, 0.0063204336911439896, -0.010892153717577457, 0.004774643108248711, 0.002026239177212119, 0.005956367123872042, 0.019337303936481476, 0.036096300929784775, 0.003190058283507824, -0.016603820025920868, -0.009674619883298874, 0.027334829792380333, -0.00805720966309309, 0.008361593820154667, 0.015135617926716805, -0.039701156318187714, -0.010181926190853119, 0.010468404740095139, 0.0074723162688314915, 0.0012742328690364957, -0.032992783933877945, -0.03943854942917824, -0.00777073111385107, 0.027860041707754135, 0.00877340603619814, -0.030891939997673035, 0.01727227121591568, 0.04822389408946037, 0.005213313270360231, -0.007579745724797249, -0.007418601308017969, -0.0006251797894947231, 0.003157232655212283, 0.0024857984390109777, 0.0167589969933033, -0.016162166371941566, -0.04872523248195648, -0.008009463548660278, -0.020721949636936188, -0.006791929714381695, 0.01872853748500347, -0.025926310569047928, -0.0012981060426682234, 0.004082319792360067, -0.005258075427263975, 0.0030125011689960957, 0.06250007450580597, 0.015553398989140987, -0.023240573704242706, 0.02652314119040966, 0.05624529346823692, -0.021259097382426262, -0.009185219183564186, 0.023037651553750038, 0.010110306553542614, -0.015410159714519978, -0.0474122054874897, 0.012342452071607113, 0.03308827430009842, 0.0011071203043684363, -0.006195099093019962, -0.026475394144654274, 0.028647856786847115, 0.045048754662275314, 0.00404352555051446, 0.013798718340694904, 0.027072224766016006, -0.03027123585343361, -0.004837309941649437, -0.009041979908943176, -0.02088906243443489, -0.01581600494682789, 0.010366943664848804, -0.011101044714450836, 0.01844205893576145, 0.024470044299960136, -0.008307878859341145, -0.013273507356643677, 0.00128243921790272, 0.01763036847114563, -0.009047948755323887, -0.0022530346177518368, 0.016938045620918274, -0.013452555984258652, 0.01315414160490036, 0.002311225514858961, -0.008427244611084461, -0.026833493262529373, -0.0008601817535236478, -0.016520263627171516, 0.014371675439178944, 0.018656916916370392, -0.012903472408652306, -0.0015905529726296663, -0.002139636781066656, -0.007627491839230061, -0.008648072369396687, 0.03468777984380722, -0.03917594626545906, -0.024947509169578552, -0.02470877766609192, 0.005425188224762678, 0.0070067886263132095, -0.004133050329983234, -0.007728953380137682, -0.02521011419594288, 0.004085303749889135, 0.018012341111898422, -0.023025715723633766, 0.03612017259001732, -0.02133071795105934, 0.015159491449594498, -0.010134179145097733, -0.011703843250870705, -0.014228436164557934, -0.01481333002448082, -0.01683061569929123, -0.019981879740953445, 0.020781632512807846, 0.015601146034896374, -0.001624870696105063, 0.01603086292743683, 0.0015092347748577595, 0.03373285382986069, -0.012127593159675598, -0.008158670738339424, -0.01894339546561241, -0.006326402071863413, 0.01950441673398018, 0.017749734222888947, -0.00500442273914814, 0.028218138962984085, -0.002524592448025942, 0.015553398989140987, 0.003864476690068841, 0.06144965440034866, -0.007376823108643293, 0.0010243101278319955, 0.0443803071975708, -0.008898740634322166, 0.001049675396643579, 0.0005035756039433181, -0.017797481268644333, -0.013237697072327137, -0.011005551554262638, -0.020065436139702797, 0.02277504652738571, 0.009113599546253681, 0.012044036760926247, 0.013285444118082523, -0.011471079662442207, 0.0006382354767993093, -0.020924871787428856, -0.023157017305493355, 0.028528491035103798, -0.0061712260358035564, 0.01691417209804058, -0.0004752261738758534, 0.026976732537150383, 0.0030527873896062374, -0.027358703315258026, -0.009501539170742035, -0.025233987718820572, -0.019671529531478882, -0.0056579518131911755, 0.023157017305493355, -0.022464694455266, -0.013918084092438221, 0.021294906735420227, 0.015636956319212914, 0.04017861932516098, 0.028719477355480194, -0.0008803248056210577, 0.021939484402537346, -0.00783638283610344, 0.011566572822630405, -0.00874356459826231, -0.0015189333353191614, -0.008689850568771362, -0.015183364041149616, -0.004037557635456324, 0.0008415307966060936, -0.0025962120853364468, 0.011990321800112724, -0.01922987401485443, -0.012157434597611427, 0.005034264177083969, -0.0014555200468748808, 0.010510182939469814, -0.01567276567220688, -0.0040136841125786304, -0.013452555984258652, 0.01091602724045515, -0.011071203276515007, -0.01791684702038765, -0.001148898503743112, -0.021939484402537346, 0.00808705110102892, 0.00335120246745646, 0.04364023730158806, 0.010534055531024933, -0.009591064415872097, 0.0006818787078373134, -0.0019725244492292404, -0.005920557305216789, -0.017678115516901016, 0.0023082413244992495, 0.008266100659966469, -0.0043538776226341724, 0.012998965568840504, 0.02197529375553131, -0.0319184884428978, -0.018692726269364357, 0.02044740878045559, 0.06035148724913597, -0.011303966864943504, -0.01617410220205784, -0.014980441890656948, 0.049895018339157104, 0.01166803389787674, -0.03736158087849617, -0.01843012124300003, -0.02349124290049076, 0.023753847926855087, -0.06135416030883789, -0.00670240493491292, 0.01841818541288376, 0.013750971294939518, -0.03261081129312515, -0.015422096475958824, -0.007890097796916962, -0.011912734247744083, 0.01481333002448082, -0.005968303419649601, -0.005801191087812185, -0.00594741478562355, 0.0012981060426682234, 0.02256018854677677, 0.03134553134441376, 0.0034377428237348795, 0.020065436139702797, -0.02848074585199356, 0.023383812978863716, -0.009770113043487072, 0.04445192590355873, 0.012855726294219494, -0.014622343704104424, -0.03070095367729664, -0.01763036847114563, -0.01340480986982584, -0.019337303936481476, -0.0007005296647548676, -0.0021470971405506134, -0.005478902719914913, 0.006678531877696514, -0.016305405646562576, 0.03251531720161438, -0.020125119015574455, 0.04922656714916229, 0.04574107751250267, -0.019182128831744194, -0.02390902489423752, -0.025926310569047928, -0.01655607484281063, -0.007782667875289917, -0.031250037252902985, -0.01315414160490036, -0.022082723677158356, 0.0502769909799099, -0.042780801653862, 0.003986826632171869, 0.01619797572493553, -0.012712487019598484, 0.005648999474942684, 0.009406046941876411, -0.05381022393703461, 0.027000606060028076, 0.017176777124404907, 0.0010310244979336858, -0.034640032798051834, -0.018692726269364357, -0.018083959817886353, 0.001553251058794558, -0.01463428046554327, -0.005980240181088448, -0.012187276035547256, -0.030891939997673035, 0.0066128806211054325, 0.0399160161614418, 0.009447824209928513, -0.014264245517551899, 0.030223488807678223, -0.01383452769368887, -0.01043856330215931, -0.024028390645980835, -0.009823828004300594, -0.006511419080197811, -0.010253545828163624, -0.014873012900352478, -0.02513849548995495, -0.0021366525907069445, -0.018883712589740753, 0.018370438367128372, -0.009799954481422901, -0.01043856330215931, -0.01721258834004402, 0.015219174325466156, -0.059730783104896545, 0.013046711683273315, 0.013500303030014038, 0.05614979937672615, 0.009967067278921604, -0.0260218046605587, -0.019886387512087822, -0.039056580513715744, 0.0012958679581061006, 0.0008400387596338987, -0.00039092390215955675, 0.010110306553542614, -0.027048351243138313, -0.01344062015414238, 0.01217533927410841, 0.01051615085452795, -0.0012525977799668908, 0.007090344559401274, -0.026714127510786057, 0.0016576963244006038, 0.010474372655153275, 0.020793570205569267, 0.023968707770109177, 0.015374350361526012, 0.02941180020570755, -0.04817614704370499, 0.006851612590253353, -0.008075115270912647, 0.010044654831290245, 0.04951304569840431, 0.008152702823281288, 0.010026750154793262, 0.01145914290100336, -0.02645152248442173, 0.04306728020310402, 0.012676676735281944, 0.027215464040637016, 0.041587140411138535, -0.006708373315632343, -0.00997900404036045, 0.003882381599396467, 0.010092401877045631, 0.01557727251201868, 0.01662769354879856, 0.04979952424764633, -0.010713105089962482, 0.008098987862467766, -0.018406247720122337, -0.027549689635634422, -0.018907586112618446, 0.009674619883298874, -0.012205180712044239, -0.03750481829047203, 0.011274125427007675, -0.00023239082656800747, -0.03867460787296295, -0.0218320544809103, 0.02848074585199356, 0.024613283574581146, 0.017582623288035393, 0.003157232655212283, 0.015028188936412334, -0.0434969961643219, 0.06207035854458809, -0.009638810530304909, 0.005180487409234047, -0.019910261034965515, -0.009161345660686493, -0.019026951864361763, 0.01094586867839098, -0.007543935906141996, 0.03471165522933006, -0.02261987142264843, 0.036096300929784775, 0.01192467100918293, 0.0022888444364070892, 0.03282567113637924, -0.013464492745697498, -0.0025574180763214827, -0.0304860956966877, -0.008104956708848476, -0.014455231837928295, -0.002875230275094509, -0.026570888236165047, 0.0274541974067688, 0.01177546288818121, 0.02256018854677677, -0.011387523263692856, 0.008570483885705471, 0.007108249701559544, 0.042016856372356415, 0.01449104119092226, -0.01936117745935917, 0.0045776888728141785, -0.030509967356920242, 0.017881037667393684, 0.006165257655084133, 0.03475940227508545, -0.0026484348345547915, -0.01160238217562437, 0.02941180020570755, -0.03289728984236717, 0.02140233665704727, 0.017892973497509956, -0.004867151845246553, -0.025854691863059998, -0.00889277271926403, -0.02000575326383114, 0.04521586745977402, 0.006025002337992191, 0.0011682953918352723, -0.009698493406176567, -0.0009735795320011675, -0.0172006506472826, -0.06135416030883789, -0.019456669688224792, -0.003915206994861364, -0.028003280982375145, 0.011071203276515007, 0.036454398185014725, 0.008039304986596107, 0.008134798146784306, -0.0399160161614418, 0.022130470722913742, -0.018991142511367798, 0.02812264673411846, -0.040130872279405594, 0.037695806473493576]], "input": ["# Electronic Devices and Lithium Battery Regulations\n\nThis community focuses on the regulations surrounding electronic devices and spare lithium batteries during air travel. The entities are interconnected through strict guidelines that dictate how these items should be stored and transported to ensure passenger safety.\n\n## Regulations on electronic devices during flights\n\nElectronic devices, such as laptops and phones, must be kept accessible during flights, with specific regulations regarding their storage based on battery type. Devices with non-removable lithium batteries must be stored in the aircraft hold, while those with removable batteries require the battery to be taken aboard the cabin. This distinction is crucial for ensuring safety during air travel, as improper storage can lead to fire hazards. [Data: Entities (284); Relationships (385, 387)]\n\n## Prohibition of spare lithium batteries in checked baggage\n\nSpare lithium batteries are prohibited in checked baggage and must be taken aboard the aircraft cabin. This regulation is in place to mitigate the risk of fire, as lithium batteries can pose significant hazards if damaged or short-circuited. The relationship between spare lithium batteries and electronic devices highlights the importance of proper handling and storage to prevent incidents during flights. [Data: Entities (407); Relationships (434, 387)]\n\n## Flammable materials and electronic devices\n\nFlammable materials, such as hairspray, are subject to strict regulations and must not be stored alongside electronic devices containing lithium batteries. This regulation is designed to prevent potential hazards that could arise from the combination of flammable substances and electronic devices, emphasizing the need for careful consideration of what items are packed together in baggage. [Data: Entities (405); Relationships (386)]\n\n## Interconnected regulations for portable chargers\n\nPortable chargers, like spare lithium batteries, are also prohibited in checked baggage and must be taken aboard the aircraft cabin. This regulation underscores the importance of ensuring that all battery-powered devices are handled according to safety guidelines to prevent incidents during air travel. The relationship between portable chargers and spare lithium batteries indicates a broader concern for battery safety in aviation. [Data: Relationships (435)]\n\n## Safety implications of improper storage\n\nThe community's regulations highlight the significant safety implications of improper storage of electronic devices and batteries. The potential for fire hazards necessitates strict adherence to guidelines, as violations could lead to dangerous situations on board. Understanding these regulations is essential for passengers to ensure their safety and the safety of others during flights. [Data: Relationships (292, 386)]", "# EL AL Airline and Animal Transport Community\n\nThe community centers around EL AL, an airline with specific policies and regulations regarding the transportation of animals, including pets and service dogs. The entities within this community are interconnected through various relationships that govern baggage handling, cargo transport, and compliance with international regulations.\n\n## EL AL's comprehensive animal transport policies\n\nEL AL has established detailed policies for the transportation of animals, including pets and service dogs. These policies outline specific weight limits, conditions for cabin transport, and requirements for documentation. For instance, pets transported in the cabin must not exceed 9 kg, including their cage, while larger animals may need to be transported as checked baggage or through the Cargo Division. This structured approach ensures that all animals are transported safely and in compliance with regulations [Data: Entities (1, 12, 7); Relationships (17, 10, 14)].\n\n## Role of the Cargo Division in animal transport\n\nThe Cargo Division of EL AL plays a crucial role in managing the transport of animals, particularly those that are oversized or unaccompanied. This division is responsible for ensuring that all necessary documentation is provided for transporting animals as cargo, including health certificates and transport authorizations. The Cargo Division's expertise in handling special requests and approvals is vital for the safe transport of various types of cargo, especially animals [Data: Entities (12); Relationships (10, 19)].\n\n## Compliance with international regulations\n\nEL AL must adhere to various international regulations when transporting animals, including compliance with the CDC regulations for dogs being transported to the US. This compliance is essential to ensure the safety and legality of animal transport across borders. The airline's policies reflect a commitment to meeting these regulatory requirements, which helps mitigate potential legal issues and enhances the safety of animal transport [Data: Relationships (16)].\n\n## Baggage handling and associated claims\n\nEL AL is responsible for managing baggage, including issues related to delays, damages, and claims. The airline has specific policies regarding baggage measurements and weight limits, which are crucial for ensuring that all items, including animals, are transported according to regulations. Claims related to baggage issues are addressed through established procedures, highlighting the airline's commitment to customer service and compliance [Data: Entities (24); Relationships (28)].\n\n## Potential risks associated with transporting hazardous materials\n\nTransporting hazardous materials, such as dry ice, requires special handling and declaration when traveling with EL AL. The airline mandates advance notice and the completion of a Declaration Form for such materials, ensuring compliance with safety regulations. This aspect of the airline's operations underscores the importance of adhering to safety protocols to prevent incidents during transport [Data: Entities (421, 423); Relationships (49)].\n\n## Impact of baggage policies on passenger experience\n\nEL AL's baggage policies significantly impact the passenger experience, particularly regarding the transportation of pets and other items. The airline offers a 50% discount on baggage fees if purchased online before the flight, which can encourage passengers to plan ahead. Additionally, the maximum size and weight limits for checked baggage are clearly defined, helping passengers avoid unexpected fees and ensuring a smoother travel experience [Data: Entities (354, 354); Relationships (42, 44)].", "# Checked Baggage and Airline Policies\n\nThe community focuses on the policies and regulations surrounding checked baggage, particularly in relation to EL AL and its associated entities. Key entities include checked baggage, excess baggage charges, and specific items like bicycles and ski equipment, all of which are interconnected through various airline policies and fees.\n\n## EL AL's comprehensive baggage policies\n\nEL AL has established detailed guidelines for transporting checked baggage, which includes specific provisions for animals and sporting equipment. These policies are crucial for ensuring compliance with safety and regulatory standards in air travel. The airline's baggage policy is comparable to that of Sundor, indicating a broader industry standard that influences checked baggage regulations. This interconnectedness highlights the importance of understanding these policies for both passengers and the airline. [Data: Entities (5), Relationships (11, 88, 90, 102, 109)]\n\n## Excess baggage charges and their implications\n\nExcess baggage charges are a significant aspect of air travel, impacting passengers financially when their luggage exceeds the allowed limits. These charges apply to various types of baggage, including sporting equipment and special items like bicycles. Understanding these fees is essential for travelers to avoid unexpected costs and ensure compliance with airline policies. The relationship between checked baggage and excess baggage charges is critical in managing travel expenses effectively. [Data: Entities (183, 349), Relationships (90, 101, 305)]\n\n## Transporting bicycles under specific conditions\n\nBicycles can be transported as checked baggage if they meet specific size and weight dimensions, which is a crucial consideration for travelers who wish to bring their bikes. The EL AL call center plays a vital role in pre-approving the transport of bicycles, ensuring that all regulations are adhered to. This process highlights the importance of communication between passengers and the airline to facilitate smooth travel experiences. [Data: Entities (187), Relationships (93, 120, 333)]\n\n## Ski and snowboard equipment transport regulations\n\nSki and snowboard equipment can be included in checked baggage under specific conditions, which is essential for winter sports enthusiasts. The airline's policies regarding these items often include provisions for complimentary transport under certain circumstances. Understanding these regulations is vital for travelers to ensure their equipment is transported safely and without incurring additional fees. [Data: Entities (179, 186), Relationships (91, 325, 326)]\n\n## The role of local currency in baggage fees\n\nAt some airports, payment for excess baggage charges may only be accepted in local currency, which can complicate the travel experience for international passengers. This aspect emphasizes the need for travelers to be aware of the payment methods accepted at their departure and arrival airports to avoid issues during their journey. The relationship between local currency and excess baggage rates is crucial for effective financial planning while traveling. [Data: Entities (185, 182), Relationships (331, 332)]", "# Ben Gurion Airport and Animal Transport Community\n\nThe community centers around Ben Gurion Airport, which serves as the primary hub for animal transport in Israel. Key entities include EL AL Israel Airlines, the Baggage Claims Department, and Veterinary Services, all of which play critical roles in ensuring compliance and facilitating the transport of animals.\n\n## Ben Gurion Airport as a central hub for animal transport\n\nBen Gurion Airport is the main international airport in Israel and serves as a critical hub for the transport of animals. It is where animals are released after transport, and it requires compliance with various regulations regarding their movement. The airport's role is pivotal in ensuring that all necessary documentation and health checks are completed before animals are allowed to travel. This centrality in the transport process makes it a key player in the community's dynamics. [Data: Entities (54); Relationships (19, 183, 131)]\n\n## Role of EL AL Israel Airlines in animal transport\n\nEL AL Israel Airlines is a significant entity in this community, operating flights that include the transport of animals. The airline is responsible for ensuring that all baggage, including pets, is handled according to regulations. Their operations at Ben Gurion Airport are crucial for the safe and compliant transport of animals, making them a key stakeholder in this community. [Data: Entities (205); Relationships (19, 184)]\n\n## Importance of the Baggage Claims Department\n\nThe Baggage Claims Department plays a vital role in managing reports of lost or damaged baggage, which includes animals transported by air. This department coordinates with various service providers to ensure that claims are processed efficiently, enhancing the overall travel experience for passengers. Their operations are essential for maintaining trust and satisfaction among travelers, particularly those transporting pets. [Data: Entities (114); Relationships (222, 235)]\n\n## Veterinary Services and regulatory compliance\n\nVeterinary Services, operating under the Ministry of Agriculture, is responsible for overseeing the authorization process for transporting pets. This includes issuing flight permits and ensuring that all health regulations are met. Their involvement is crucial for public health and safety, as they ensure that only healthy animals are transported, thereby preventing potential health risks. [Data: Entities (18); Relationships (4, 131)]\n\n## Documentation requirements for animal transport\n\nThe transport of animals requires specific documentation, including a Certificate of Good Health and other essential papers. Passengers must ensure that all necessary documents are completed to comply with regulations. This requirement underscores the importance of proper documentation in facilitating safe and legal transport of animals, which is a critical aspect of the community's operations. [Data: Entities (60, 43); Relationships (180, 115)]", "# Regulations on Electronic Devices and Lithium Batteries\n\nThis community focuses on the regulations surrounding electronic devices and lithium batteries during air travel. The entities are interconnected through specific guidelines that dictate how these items should be handled, stored, and transported to ensure safety and compliance with aviation regulations.\n\n## Importance of Carry-On Baggage for Electronic Devices\n\nElectronic devices must be kept in carry-on baggage for easy access during flights, highlighting their significance in passenger travel. This requirement ensures that passengers can use their devices during the flight while adhering to safety regulations. The relationship between electronic devices and carry-on baggage is crucial, as it dictates how these items are managed in the cabin. Improper storage could lead to safety hazards, particularly with devices containing lithium batteries, which have specific handling requirements [Data: Entities (284), Relationships (292, 385)].\n\n## Regulations on Lithium-Ion Batteries\n\nLithium-ion batteries are subject to strict regulations regarding their transport on aircraft, particularly concerning watt-hour limits. Passengers are allowed to carry lithium-ion batteries in their carry-on baggage, but those exceeding 100 watt-hours face restrictions. This regulation is essential for preventing potential hazards associated with battery malfunctions during flights. The classification of lithium-ion batteries and their relationship with carry-on baggage underscores the importance of compliance with these regulations [Data: Entities (388), Relationships (430, 432, 433)].\n\n## Handling of Spare Batteries\n\nSpare batteries, particularly lithium-ion types, are allowed on aircraft under specific conditions. Passengers must ensure that these batteries are insulated and protected from short circuits to prevent safety incidents. The relationship between spare batteries and their handling requirements is critical, as improper management could lead to dangerous situations during air travel. Regulations dictate that spare lithium batteries cannot be placed in checked baggage, emphasizing the need for awareness among travelers [Data: Entities (386, 407), Relationships (426, 428, 421)].\n\n## Prohibitions on Certain Items\n\nCertain items, including flammable materials and spare lithium batteries, are prohibited in checked baggage due to safety concerns. This regulation is in place to prevent potential hazards that could arise from the combination of these items with electronic devices. The relationship between prohibited items and the handling of electronic devices highlights the importance of adhering to safety regulations to ensure a secure travel environment [Data: Entities (371, 405), Relationships (421, 386)].\n\n## Regulatory Framework Under 49 CFR\n\nThe transport of lithium batteries is governed by the 49 CFR, which outlines the requirements for hazardous materials in aviation. This regulatory framework is crucial for ensuring the safe transport of electronic devices and batteries, as it provides guidelines that must be followed by passengers and airlines alike. The relationship between lithium batteries and the 49 CFR emphasizes the importance of compliance with federal regulations to mitigate risks associated with air travel [Data: Entities (402), Relationships (442)].", "# Animal Transportation Regulations\n\nThe community focuses on the regulations and guidelines surrounding the transportation of animals, including specific weight limits and restrictions at various airports. Key entities include weight classifications for animals, transport methods, and guidelines set by authorities.\n\n## Weight classifications are critical for transport\n\nThe weight of an animal is a crucial factor in determining how it can be transported. Animals weighing up to 9 kg can travel in the cabin, while those over 100 kg must be transported as registered cargo. This classification affects not only the comfort of the animals but also compliance with airline regulations. The distinction between cabin and cargo transport is essential for ensuring the safety and well-being of the animals during travel [Data: Entities (58, 59, 41); Relationships (159, 160)].\n\n## Airports impose restrictions on animal transport\n\nSeveral airports, including Amsterdam, Boston, and Mumbai, have specific regulations that prohibit the transport of animals as registered cargo. This restriction can significantly impact travel plans for pet owners and may require them to seek alternative routes or methods for transporting their animals. Understanding these restrictions is vital for compliance and planning [Data: Entities (62, 63, 64); Relationships (162, 161, 163)].\n\n## Guidelines ensure compliance with transport regulations\n\nThe guidelines established by destination authorities dictate the necessary requirements for transporting animals. These guidelines are essential for ensuring that all transport activities comply with safety and welfare standards, which can vary significantly from one country to another. Adhering to these guidelines is crucial for avoiding legal issues and ensuring the well-being of the animals [Data: Entities (40); Relationships (156)].\n\n## Permits and cages are mandatory for safe transport\n\nTransporting animals requires specific permits and the use of cages to ensure their safety during travel. The necessity of these items highlights the importance of compliance with regulations and the welfare of the animals. Failure to secure the appropriate permits or use proper cages can lead to legal repercussions and jeopardize the animals' safety [Data: Entities (41); Relationships (148, 141)].\n\n## EL AL's role in animal transport\n\nEL AL provides transport services for animals across various classes, indicating a structured approach to animal transportation. This service is significant as it reflects the airline's commitment to adhering to regulations while providing options for pet owners. The relationship between EL AL and animal transport underscores the importance of choosing compliant carriers for safe travel [Data: Relationships (17)].", "# Airline Baggage Policies and Sporting Equipment Transport\n\nThis community encompasses various entities related to airline baggage policies, specifically focusing on carry-on and checked baggage allowances, as well as the transport of sporting equipment. Key entities include EL AL, Sundor, and different travel classes, which are interconnected through their baggage regulations and services.\n\n## EL AL's comprehensive baggage policies\n\nEL AL has established specific policies regarding carry-on and checked baggage, which are crucial for passengers to understand their allowances. For instance, business class passengers are allowed to check up to two pieces of baggage weighing up to 32 kg each, while premium class passengers can check two pieces weighing up to 23 kg each. These policies are essential for ensuring compliance and avoiding additional fees during travel [Data: Relationships (37, 36)].\n\n## Sundor's alignment with baggage regulations\n\nSundor shares similar baggage policies with EL AL, particularly concerning checked baggage allowances and fees. This alignment indicates a broader industry standard that passengers can expect when traveling with these airlines. Understanding these policies is vital for travelers, especially those transporting sporting equipment, as they may face different weight and size restrictions [Data: Relationships (35, 109)].\n\n## Importance of weight and dimensions in baggage transport\n\nWeight and dimensions are critical factors in determining baggage eligibility for transport. For example, sporting equipment must adhere to specific weight limits, such as 30 kg for Economy Class and 32 kg for Business Class. Additionally, the maximum dimension limit for sporting equipment is set at 190 cm for Economy and Premium Class, which is essential for ensuring that items can be transported without incurring extra fees [Data: Relationships (306, 313, 301)].\n\n## Overweight and oversized baggage considerations\n\nPassengers must be aware of the implications of overweight and oversized baggage, which require special handling and may incur additional fees. For instance, sporting equipment exceeding the standard weight limits can be classified as overweight baggage, leading to extra charges. Understanding these classifications is crucial for travelers to avoid unexpected costs [Data: Relationships (304, 321)].\n\n## Cargo services for sporting equipment\n\nThe EL AL Cargo Division provides specialized services for transporting sporting equipment that exceeds standard baggage limits. This service is particularly beneficial for athletes and sports enthusiasts who need to transport larger or heavier gear. By utilizing cargo services, passengers can ensure their equipment is handled appropriately and transported safely [Data: Relationships (299, 155)].\n\n## Impact of frequent flyer status on baggage allowances\n\nMembership in the Matmid Frequent Flyer Club can influence carry-on baggage allowances, potentially providing enhanced privileges for members. This aspect of airline travel highlights the importance of loyalty programs in shaping the travel experience, particularly regarding baggage policies [Data: Relationships (369)].\n\n## Role of booking management in baggage policies\n\nBooking management systems play a crucial role in informing passengers about their carry-on baggage allowances and policies. By providing access to this information, airlines can facilitate a smoother travel experience and help passengers avoid issues related to baggage compliance [Data: Relationships (373)].\n\n## Differentiation of Economy Class fare types\n\nEconomy Class includes various fare types, such as Lite Fares, which impose restrictions on the transport of sporting equipment. Understanding these distinctions is essential for travelers to ensure they select the appropriate fare that meets their baggage needs [Data: Relationships (309, 307)].", "# El Al Baggage Policies\n\nThe community focuses on the baggage policies of El Al, detailing the specifications for carry-on and personal bags, including weight and dimension limits. The relationships among the entities highlight the importance of compliance with these regulations for passengers traveling with El Al.\n\n## El Al's specific baggage policies\n\nEl Al has established specific policies regarding the dimensions and weight limits for carry-on bags and personal bags. These policies are crucial for ensuring that passengers comply with airline regulations, which helps maintain safety and efficiency during boarding. The relationships between the entities indicate that understanding these policies is essential for passengers to avoid issues at the airport. [Data: Relationships (31, 30)]\n\n## Weight limits for carry-on bags\n\nThe maximum weight limit for a carry-on bag is set at 16 kg, while the combined weight limit for all bags is 20 kg. These limits are critical for passengers to know, as exceeding them can lead to additional fees or the need to check bags. The relationship between the '16 KG' and '20 KG' entities with the 'CARRY-ON BAG' entity emphasizes the importance of these weight restrictions in the context of air travel. [Data: Relationships (382, 384)]\n\n## Dimension restrictions for personal bags\n\nThe maximum dimensions for a personal bag are specified as 18 cm in height, 38 cm in width, and 30 cm in depth. These restrictions are important for passengers to ensure their personal items can be accommodated in the cabin. The relationship between the 'PERSONAL BAG' and its dimension specifications highlights the need for compliance to avoid inconvenience during boarding. [Data: Relationships (393)]\n\n## Oversized items require special arrangements\n\nOversized items, such as musical instruments, may require prior coordination with the airline and could necessitate an extra seat for transport. This policy is significant for passengers traveling with such items, as failure to arrange for their transport could result in last-minute complications. The relationship between 'OVERSIZED ITEMS' and 'SERVICE CENTER' indicates that passengers must engage with the service center for approval, underscoring the need for proactive communication with the airline. [Data: Relationships (400)]\n\n## Duty-free items and baggage allowance\n\nDuty-free items purchased at the airport can be carried on board without counting towards the baggage allowance. This is an important consideration for travelers, as it allows them to bring additional items without impacting their baggage limits. The relationship between 'DUTY-FREE ITEMS' and 'BAG' illustrates how these items fit into the overall baggage policy framework. [Data: Relationships (392)]", "# Baggage Policies and Allowances in Air Travel\n\nThis community focuses on the various baggage policies and allowances associated with air travel, particularly those of EL AL and related entities. The relationships among these entities highlight the complexities of baggage regulations, ticket types, and additional fees that passengers may encounter.\n\n## EL AL's baggage allowance policies\n\nEL AL has specific baggage allowance policies that vary based on the ticket type purchased by the passenger. This means that passengers must be aware of their ticket type to understand their baggage rights fully. The relationship between baggage allowance and ticket type is crucial, as it directly affects how much luggage a passenger can check in without incurring extra fees. [Data: Relationships (44, 410)]\n\n## Importance of baggage policy\n\nThe baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers can check in or carry on. This policy is essential for ensuring compliance with safety standards and facilitating a smooth travel experience. The baggage policy is interconnected with various entities, including baggage allowance and standard baggage definitions, which further complicates the travel experience for passengers. [Data: Entities (341); Relationships (200, 413)]\n\n## Standard baggage and its implications\n\nStandard baggage refers to luggage that complies with the airline's specified size and weight requirements. Understanding what constitutes standard baggage is vital for passengers to avoid additional fees. The relationship between standard baggage and the baggage policy indicates that passengers must adhere to specific guidelines to ensure their luggage is accepted without extra charges. [Data: Entities (345); Relationships (201, 418)]\n\n## Excess baggage rates and their impact\n\nExcess baggage rates are the fees charged for baggage that exceeds the allowed limit. These rates can vary significantly, and passengers need to be aware of them to avoid unexpected costs. The relationship between excess baggage rates and baggage allowance highlights the financial implications of not adhering to the specified limits, which can lead to increased travel expenses. [Data: Entities (362); Relationships (412, 330)]\n\n## Role of ticket types in baggage allowances\n\nThe ticket type plays a crucial role in determining the baggage allowance for passengers. Different ticket types, such as Lite, Classic, and Flex services, come with varying baggage allowances, which can lead to confusion if not clearly understood. This relationship emphasizes the need for passengers to be informed about their ticket type to manage their baggage effectively. [Data: Entities (355); Relationships (405, 406, 407)]\n\n## Manage Your Booking service\n\nThe 'Manage Your Booking' service allows passengers to view and modify their flight details, including baggage allowances. This online service is essential for travelers who need to adjust their baggage arrangements, providing them with the flexibility to manage their travel plans conveniently. The relationship between this service and additional pieces of baggage indicates that passengers can add luggage through this platform, which is crucial for those needing to check in more than the standard allowance. [Data: Entities (334); Relationships (414, 211)]", "# Service Dog Transportation Community\n\nThe community focuses on the transportation of service dogs, particularly in relation to airline policies, passenger requirements, and regulatory compliance. Key entities include EL AL, service dogs, passengers, and regulatory bodies like the CDC, all interconnected through specific guidelines and requirements for safe travel.\n\n## EL AL's policies on service dogs\n\nEL AL has established specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets. This is crucial for passengers with disabilities who rely on service dogs for assistance during travel. [Data: Relationships (5, 21, 16)]\n\n## Passenger requirements for traveling with service dogs\n\nPassengers traveling with service dogs must meet specific requirements set by EL AL, including providing necessary documentation and adhering to airline policies. This ensures a standardized travel experience and compliance with regulations, which is essential for the safety and comfort of both the passengers and their service dogs. [Data: Relationships (22, 65, 66)]\n\n## Regulatory compliance with the CDC\n\nThe CDC establishes regulations and guidelines for the transportation of dogs to the United States, which EL AL must comply with. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. This compliance is vital for public health and safety during the transportation process. [Data: Entities (42), Relationships (16, 58)]\n\n## Importance of veterinary certificates\n\nA veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger, ensuring the health and safety of the dog and other passengers during the flight. [Data: Entities (87), Relationships (54)]\n\n## Role of check-in counters\n\nCheck-in counters are designated areas at the airport where passengers must check in for their flights, including those traveling with service dogs. Passengers must present their documentation for traveling with a service dog at these counters, which serves as an official point for compliance with airline policies. [Data: Entities (105), Relationships (32, 65)]\n\n## Sanitary conditions for service dogs\n\nService dogs must maintain proper sanitary conditions during the flight, as required by airline policies. This includes ensuring that the dog is clean and does not pose a health risk to other passengers. Compliance with these sanitary conditions is essential for the overall safety and comfort of all travelers on board. [Data: Entities (106), Relationships (67)]\n\n## Transporting service dogs in the passenger cabin\n\nService dogs are allowed in the passenger cabin at no additional cost under certain conditions, which is a significant benefit for passengers with disabilities. This policy ensures that these passengers can travel comfortably and safely with their service animals, highlighting the importance of accommodating special needs in air travel. [Data: Relationships (53, 82)]\n\n## Potential additional charges\n\nPassengers may incur additional charges for inspecting and releasing a service dog from airport facilities in the United States. This aspect of the policy can impact the overall cost of travel for passengers with service dogs, making it essential for them to be aware of potential fees associated with their travel plans. [Data: Entities (104), Relationships (64)]", "# Liquid Carry-On Regulations Community\n\nThis community revolves around the regulations and guidelines concerning the carrying of liquids in carry-on bags during air travel. Key entities include various types of liquids, carry-on bags, and associated regulations, all interconnected through specific restrictions and requirements.\n\n## Regulations on Liquids in Carry-On Bags\n\nThe primary focus of this community is the restrictions on liquids that passengers can carry in their carry-on bags. These regulations are crucial for ensuring safety during flights and are enforced at security checkpoints. Passengers must adhere to specific guidelines regarding the amount and type of liquids they can bring, which can significantly affect their travel experience. Non-compliance can lead to confiscation of items at security checkpoints, impacting passenger satisfaction and operational efficiency at airports [Data: Entities (152, 160); Relationships (34, 127, 283, 284, 285)].\n\n## Role of Carry-On Bags\n\nCarry-on bags are essential for passengers as they allow for easy access to personal items during flights. These bags must comply with specific size and weight limitations, and they are subject to the same restrictions regarding liquids. The relationship between carry-on bags and the regulations on liquids highlights the importance of understanding what can be packed to avoid issues at security checkpoints. Passengers are advised to keep medications, passports, and valuables in their carry-on bags for easy access, which further emphasizes the significance of these items in travel [Data: Entities (160); Relationships (292, 288, 289, 290, 291)].\n\n## Specific Types of Liquids\n\nVarious types of liquids, including aerosols, creams, gels, and baby food, are subject to the same restrictions as other liquids in carry-on bags. Understanding these classifications is vital for passengers to ensure compliance with regulations. For instance, baby food is treated as a special item and does not need to be packed in a resealable plastic bag, but it must be presented for inspection at security checkpoints. This nuanced understanding of liquid types can help passengers navigate the complexities of carry-on regulations more effectively [Data: Entities (161, 156, 158, 154, 155); Relationships (281, 279, 278, 286, 287)].\n\n## Security Checkpoint Procedures\n\nThe security checkpoint is a critical area where passengers must present their carry-on items, including liquids, for inspection. Items that exceed the permitted amount will be discarded, which can lead to frustration and delays for travelers. The procedures at these checkpoints are designed to enhance safety but can also create challenges for passengers who may not be fully aware of the regulations. This highlights the need for clear communication and guidance regarding what can and cannot be brought on board [Data: Entities (159); Relationships (284)].\n\n## International Guidelines and Compliance\n\nCountries like Israel and the U.S. have specific guidelines regarding the carrying of liquids in carry-on bags, which can vary from one jurisdiction to another. These international regulations necessitate that passengers remain informed about the rules applicable to their flights, especially when traveling across borders. Compliance with these guidelines is essential for ensuring a smooth travel experience and avoiding potential legal issues or delays at airports [Data: Entities (319); Relationships (127, 285)].", "# ARTY Rimon and Baggage Services Community\n\nThe community is centered around ARTY Rimon, a service provider specializing in baggage pickup and delivery, along with various related entities such as Makor Haziud and Moka. These entities are interconnected through service relationships and shared operational locations, highlighting their collective role in the baggage handling and delivery sector.\n\n## ARTY Rimon as the central service provider\n\nARTY Rimon is the primary entity in this community, specializing in pickup and delivery services for baggage, luggage, and bags. Its extensive network of service locations, including cities like Rehovot, Shoham, Ramle, and Lod, indicates a broad operational reach. The relationships with other entities, such as Moka and Rimon Mizvadot ve Tikim, further emphasize its role as a key player in the baggage handling sector. The effectiveness of ARTY Rimon's services directly impacts customer experiences and satisfaction levels, making it a critical component of this community. [Data: Entities (210); Relationships (240, 343, 344, 348, 349, 350, 351)]\n\n## Makor Haziud's relevance to baggage services\n\nMakor Haziud operates as a specialized store for baggage and outdoor equipment, which complements the services provided by ARTY Rimon. The relationship between these two entities indicates a collaborative dynamic where Makor Haziud may supply essential equipment for baggage handling. This partnership enhances the overall service quality and efficiency of baggage management within the community. Additionally, the store's location in Nes Ziona further integrates it into the local service network, making it a valuable asset for customers seeking baggage solutions. [Data: Entities (207); Relationships (237, 340)]\n\n## Moka's role as a pickup and delivery point\n\nMoka serves as a designated pickup and delivery point for ARTY Rimon, facilitating convenient access for customers in Yehud. This relationship underscores the importance of Moka in the logistics chain, as it provides a physical location for customers to drop off or collect their baggage. The operational synergy between Moka and ARTY Rimon enhances service efficiency and customer satisfaction, making Moka a vital part of the community's infrastructure. [Data: Entities (234); Relationships (352)]\n\n## Competitive dynamics with Rimon Mizvadot ve Tikim\n\nRimon Mizvadot ve Tikim operates in Rishon Le Zion and provides similar pickup and delivery services as ARTY Rimon. This competitive relationship highlights the need for both entities to maintain high service standards to attract and retain customers. The presence of multiple service providers in the same sector can lead to improved service offerings and pricing strategies, ultimately benefiting consumers. However, it also necessitates vigilance regarding service quality to avoid customer dissatisfaction. [Data: Entities (235); Relationships (344, 353)]\n\n## Hagalgal's contribution to the community\n\nHagalgal specializes in baby and children's equipment, providing relevant services that intersect with ARTY Rimon's offerings. This relationship indicates a potential for cross-service opportunities, where customers seeking baby equipment may also require baggage handling services. The collaboration between Hagalgal and ARTY Rimon can enhance customer experiences by offering comprehensive solutions for families traveling with children. [Data: Entities (237); Relationships (345, 355)]\n\n## Policies affecting customer service\n\nThe community is governed by specific policies regarding baggage claims and delays, which are critical for customer service. For instance, the policy requiring contact within 7 days for baggage damage claims and 21 days for delays is essential for maintaining customer trust and satisfaction. These policies not only guide operational procedures but also shape customer expectations, making them a significant aspect of the community's service framework. [Data: Entities (240, 241); Relationships (346, 356)]", "# Pet Transportation Regulations in Israel\n\nThe community focuses on the regulations and processes involved in transporting pets from Israel, including the roles of various entities such as airlines, government ministries, and veterinary services. Key relationships highlight the compliance requirements and specific conditions for transporting animals, particularly in relation to different destinations and methods of transport.\n\n## Regulatory oversight by the Ministry of Agriculture\n\nThe Ministry of Agriculture in Israel plays a crucial role in overseeing the transportation of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. This includes ensuring compliance with health standards and issuing necessary permits. The Ministry's involvement is essential for maintaining the safety and welfare of animals during transport, as it sets the guidelines that airlines and other transport services must follow. [Data: Entities (15), Relationships (0, 3, 1)]\n\n## EL AL's specific policies for pet transport\n\nEL AL Airlines has established specific policies for transporting pets, including weight limits and conditions for cabin transport. These policies are designed to ensure the safety and comfort of both the animals and passengers. The airline's relationship with the Ministry of Agriculture ensures that its practices align with national regulations, which is critical for compliance and operational integrity. [Data: Entities (4), Relationships (7, 18, 12)]\n\n## High-risk designation for Israel\n\nIsrael is classified as a high-risk country for transporting certain animals, particularly dogs, which affects the regulations that must be followed. This classification necessitates additional scrutiny and compliance measures to prevent the spread of diseases. The Centers for Disease Control and Prevention (CDC) has specific guidelines that must be adhered to when transporting animals from Israel, impacting both the process and the documentation required. [Data: Entities (48, 15), Relationships (124, 126)]\n\n## Importance of health documentation\n\nTransporting pets internationally requires various health documents, including an international certificate of good health and laboratory results for rabies antibodies. These documents are essential for ensuring that animals are healthy and meet the entry requirements of destination countries. The Veterinary Services Department is responsible for issuing these certificates, highlighting the importance of veterinary oversight in the transport process. [Data: Entities (29, 80), Relationships (77, 151, 138)]\n\n## Diverse transport methods for pets\n\nPets can be transported using various methods, including as checked baggage, in the passenger cabin, or as registered cargo, depending on their size and weight. Each method has specific requirements and conditions that must be met, which are outlined by the airline and regulatory bodies. Understanding these options is crucial for pet owners to ensure compliance and the safety of their animals during travel. [Data: Entities (4, 6, 31), Relationships (69, 70, 82)]\n\n## Role of veterinarians in the transport process\n\nVeterinarians are integral to the pet transportation process, as they perform necessary health tests and issue required authorizations. Their involvement ensures that all health standards are met before animals are transported, which is vital for preventing the spread of diseases and ensuring the welfare of the animals. This relationship underscores the importance of veterinary services in the broader context of animal transport regulations. [Data: Entities (28), Relationships (78)]"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-2047afa371933f9069d6c94aaf3694aa b/cache/text_embedding/embedding-2047afa371933f9069d6c94aaf3694aa deleted file mode 100644 index 0ac1eea57887c46492b2898d9fe63cd40c909052..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-2047afa371933f9069d6c94aaf3694aa +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.029724087566137314, 0.005561561323702335, 0.07443061470985413, 0.050512220710515976, 0.00751128513365984, 0.04053284600377083, -0.02876093052327633, 0.057575371116399765, 0.03882056847214699, 0.04168328270316124, -0.023503700271248817, -0.05666572228074074, 0.05361572653055191, 0.01848725788295269, -0.028466632589697838, 0.04952231049537659, 0.0005288165411911905, 0.00226743146777153, 0.008608213625848293, 0.0132032735273242, 0.08973409980535507, -0.0006120058242231607, 0.004956244025379419, 0.014915551990270615, -0.07732008397579193, -0.02370435744524002, -0.009999440051615238, 0.025697557255625725, 0.022794710472226143, -0.039221882820129395, 0.09481742978096008, -0.017109408974647522, -0.01236720010638237, -0.005869236309081316, 0.00011276542500127107, -0.011999327689409256, -0.030740752816200256, -0.001683852169662714, 0.054712653160095215, 0.014353711158037186, 0.020948659628629684, 0.0158787090331316, -0.029670579358935356, 0.03478065878152847, -0.02862715907394886, 0.004605093039572239, 0.03154338523745537, -0.04173679277300835, 0.012995927594602108, 0.028894701972603798, -0.005029818508774042, 0.03483416885137558, 0.0075380392372608185, -0.026861371472477913, 0.02246027998626232, 0.009832224808633327, 0.022045588120818138, 0.023731112480163574, -0.001101108849979937, -0.0007541383383795619, -0.01226018276065588, -0.00753135047852993, -0.0049294899217784405, 0.007544727995991707, -0.004839194007217884, -0.0022573985625058413, -0.009270383976399899, 0.0015801790868863463, -0.024413347244262695, -0.01681511104106903, 0.016761602833867073, 0.03983723372220993, 0.03791091963648796, -0.024119049310684204, -0.04181705415248871, -0.022701069712638855, -0.019396906718611717, -0.02191181667149067, -0.0292692631483078, 0.0038726928178220987, -0.015183095820248127, -0.006283929105848074, 0.005056573078036308, -0.0012825368903577328, 0.013343733735382557, -0.01174516137689352, -0.07105956226587296, -0.005799006205052137, -0.06201659142971039, 0.017537478357553482, -0.025858083739876747, 0.010153277777135372, -0.03432583808898926, 0.0453486293554306, 0.036225397139787674, 0.0006312355399131775, 0.03191794455051422, -0.04342231526970863, -0.021082431077957153, 0.047569241374731064, -0.023610716685652733, -0.03360346704721451, -0.02438659407198429, -0.009109857492148876, 0.04299424588680267, -0.05267932265996933, -0.0013251765631139278, 0.009511172771453857, 0.014005904085934162, -0.027316195890307426, -0.040024515241384506, -0.0310618057847023, -0.004725487902760506, 0.06747448444366455, -0.011323780752718449, 0.002991471206769347, -0.041790302842855453, -0.011537815444171429, 0.033523205667734146, 0.024894926697015762, -0.0549534447491169, -0.02327628806233406, 0.04620476812124252, -0.02652694284915924, 0.023169269785284996, -0.053428445011377335, -0.030954787507653236, -0.00623710872605443, -0.07769464701414108, -0.034085046499967575, 0.07036395370960236, 0.0013159797526896, 0.03467364236712456, -0.009103168733417988, -0.013236716389656067, -0.02074800245463848, -0.03769688308238983, -0.028653914108872414, -0.023289665579795837, -0.01809932105243206, 0.003518197452649474, 0.012414020486176014, 0.040506090968847275, 0.048077575862407684, -0.01973133534193039, -0.039863988757133484, 0.04055960103869438, 0.007250430062413216, -0.012400642968714237, 0.004501420073211193, -0.031035050749778748, -0.03676048293709755, -0.03504820540547371, 0.0010517805349081755, -0.006307338830083609, -0.004809095058590174, 0.011544504202902317, 0.06913325190544128, 0.005039851646870375, -0.006869180593639612, -0.031944699585437775, -0.053294673562049866, -0.04331529885530472, -0.018219714984297752, -0.012179919518530369, 0.011624766513705254, -0.04826485365629196, 0.02679448574781418, -0.05225125327706337, -0.056505195796489716, -0.05532800406217575, -0.04090740904211998, -0.07828324288129807, 0.031864434480667114, 0.02644667960703373, -0.06308677047491074, 0.032934609800577164, -0.014875421300530434, -0.035021450370550156, -0.017136164009571075, -0.013330357149243355, 0.025751065462827682, -0.030713997781276703, -0.036733727902173996, -0.0784972757101059, 0.04047933593392372, -0.04470652714371681, 0.03496794030070305, -0.00555152865126729, 0.02395852468907833, -0.0034814102109521627, 0.040880654007196426, 0.03491443023085594, 0.0024112360551953316, 0.0035817392636090517, 0.033523205667734146, 0.021323220804333687, 0.00032983103301376104, 0.008420933037996292, -0.013939018361270428, 0.012494283728301525, -0.03371048718690872, 0.06265869736671448, -0.04631178826093674, -0.0056418245658278465, -0.03432583808898926, -0.056505195796489716, 0.026473432779312134, 0.008521261624991894, -0.037001270800828934, -0.008160077966749668, -0.0267811082303524, 0.03063373453915119, 0.02242014929652214, -0.012949107214808464, 0.024787908419966698, -0.017952172085642815, 0.0037389209028333426, 0.00969176460057497, 0.022487035021185875, -0.03357671573758125, -0.013490882702171803, 0.037001270800828934, -0.0020149373449385166, -0.008788805454969406, 0.036519695073366165, 0.019972125068306923, -0.028225842863321304, 0.004240565001964569, -0.039088111370801926, 0.02798505499958992, -0.019651073962450027, -0.013270159251987934, 0.016627831384539604, -0.010735184885561466, -0.03740258514881134, 0.007865780033171177, 0.0012006016913801432, 0.02302212081849575, 0.01256116945296526, 0.043850384652614594, -0.0013786853523924947, 0.05056573078036308, 0.017778268083930016, -0.020226292312145233, -0.02691487967967987, -0.012587923556566238, -0.03470039740204811, 0.029804350808262825, 0.005260575097054243, 0.05024467781186104, 0.014086167328059673, 0.02940303459763527, 0.004086727742105722, -0.02173791266977787, 0.021590763702988625, -0.010882333852350712, -0.02238001674413681, 0.023650849238038063, -0.0004544059920590371, -0.02323615737259388, 0.0160526130348444, -0.007190232630819082, -0.004464632831513882, -0.057575371116399765, -0.01258123479783535, -0.020480457693338394, 0.0007190232863649726, -0.03148987516760826, 0.05297362059354782, -0.012607988901436329, 0.01813945174217224, 0.01942366175353527, -0.013316979631781578, -0.021844930946826935, 0.012019393965601921, -0.021283088251948357, 0.01165820937603712, 0.0012758482480421662, 1.9334202079335228e-06, 0.010862267576158047, -0.008741985075175762, -0.005668578669428825, -0.016788357868790627, -0.011952507309615612, 0.01512958761304617, 0.02302212081849575, -0.03419206291437149, -0.06148150563240051, -0.04510784149169922, 0.002167102647945285, -0.030928032472729683, 0.025349751114845276, -0.03577057272195816, 0.05506046116352081, 0.02460062876343727, -0.010594723746180534, -0.0160526130348444, 0.0012114705750718713, 0.0503249391913414, 0.018045810982584953, 0.033897764980793, -0.02019953727722168, -0.034218817949295044, 0.0025834674015641212, 0.036305658519268036, -0.005367592442780733, 0.0499771349132061, -0.004053284414112568, 0.00036745434044860303, -0.014005904085934162, 0.046365294605493546, 0.0007633351488038898, -0.023864883929491043, -0.07876481860876083, 0.01174516137689352, 0.027396459132432938, -0.008902511559426785, 0.007036394905298948, -0.004350926727056503, -0.00813332386314869, -0.005832449067384005, 0.03702802583575249, -0.048291608691215515, 0.00035491323797032237, -0.043502580374479294, 0.02405216358602047, 0.02426619827747345, -0.06314027309417725, -0.05704028159379959, -0.03668021783232689, -0.007183543872088194, 0.055274493992328644, 0.0019447071244940162, -0.014179808087646961, -0.01977146789431572, -0.005451199598610401, -0.004080038983374834, 0.018928704783320427, -0.02251378819346428, 0.03882056847214699, 0.0006086615612730384, -0.04882669448852539, 0.01930326595902443, 0.01763111911714077, 0.028894701972603798, -0.00791928917169571, -0.00029806021484546363, 0.006390946451574564, 0.056505195796489716, -0.020306555554270744, 0.028600404039025307, -0.04655257612466812, 0.012628055177628994, -0.08181481808423996, -0.013651409186422825, -0.023690979927778244, -0.020654361695051193, 0.005645168479532003, 0.009852291084825993, 0.006293961778283119, -0.0006801458657719195, -0.02310238406062126, 0.01809932105243206, 0.0414157398045063, 0.041308723390102386, -0.01882168836891651, 0.040639862418174744, -0.007611613720655441, -0.04278021305799484, -0.011457552202045918, 0.05832449346780777, 0.05896659567952156, 0.01805918850004673, -0.06415694206953049, 0.006956132128834724, -0.00422718795016408, -0.00209185597486794, 0.009845602326095104, -0.004608437418937683, 0.01920962706208229, -0.005528118461370468, 0.002451367676258087, -0.012574546039104462, 0.019062478095293045, 0.039944250136613846, -0.06512010097503662, -0.01827322319149971, -0.04660608619451523, 0.01420656219124794, 0.0010074686724692583, 0.004822472110390663, -0.037081535905599594, 0.02854689583182335, -0.013684852048754692, 0.0014062757836654782, 0.011838802136480808, 0.03314864635467529, 0.05811045691370964, -0.0013444062788039446, 0.0023727768566459417, -0.041656527668237686, -0.00684577040374279, 0.019931994378566742, -0.042298633605241776, -0.052920110523700714, -0.06431746482849121, 0.0006972853443585336, -0.034593380987644196, 0.019396906718611717, 0.047836784273386, -0.008280472829937935, 0.047649502754211426, 0.004909424111247063, 0.0017540823901072145, -0.015156341716647148, -0.04810432717204094, 0.05273283272981644, 0.004544896073639393, -0.007364136166870594, 0.0485323965549469, 0.011290336959064007, 0.010594723746180534, -0.04457275569438934, 0.013383865356445312, 0.040318813174963, 0.029724087566137314, 0.0044077797792851925, 0.014969061128795147, -0.074965700507164, -0.020721247419714928, 0.020533965900540352, 0.06169554218649864, 0.01506270095705986, -0.04318152740597725, -0.01728331297636032, 0.058056946843862534, -0.009765339083969593, 0.00494286697357893, -0.02961706928908825, 0.025189224630594254, -0.01193913072347641, -0.0014422269305214286, -0.027610493823885918, -0.002137003932148218, 0.001478178077377379, -0.003324228571727872, -0.0021972013637423515, -0.032720573246479034, 0.03775039315223694, -0.032292503863573074, 0.027276063337922096, -0.009216874837875366, -0.0069628204219043255, -0.014982438646256924, -0.007016329560428858, -0.003180423751473427, -0.0621236115694046, 0.024319708347320557, -0.03403154015541077, -0.020908527076244354, 0.042004335671663284, 0.018340108916163445, 0.05752186104655266, 0.05955519154667854, -0.008012928999960423, -0.03825872763991356, -0.03654644638299942, -0.016373664140701294, 0.013323668390512466, 0.004708766471594572, -0.01930326595902443, -0.01582520082592964, -0.027276063337922096, 0.023129139095544815, -0.021323220804333687, 0.005270607769489288, -0.06223062798380852, -0.0036987895146012306, 0.0033810813911259174, -0.0022273000795394182, 0.048799943178892136, -0.06763500720262527, -0.006250485777854919, 0.056291159242391586, 2.63885722233681e-05, 0.054150812327861786, -0.0073240045458078384, -0.013818623498082161, 0.009959308430552483, 0.0006571538397110999, -0.006625046953558922, 0.028038563206791878, -0.01516971830278635, 0.014567745849490166, -0.02195194736123085, -0.015571034513413906, -0.006792261730879545, -0.01985173113644123, 0.008019617758691311, -0.0053508710116147995, -0.029938122257590294, -0.007986174896359444, 0.03167715668678284, 0.050431955605745316, 0.02674097754061222, 0.020908527076244354, -0.04184380918741226, -0.04205784574151039, 0.0306872446089983, -0.05016441270709038, -0.012815335765480995, 0.0028643880505114794, 0.008267095312476158, -0.029750842601060867, 0.02041357196867466, 0.019356776028871536, -0.021510500460863113, -0.010126522742211819, 0.016079366207122803, -0.0015283424872905016, -0.01977146789431572, 0.008073125965893269, 0.032078471034765244, 0.013952395878732204, -0.007812271360307932, -0.03924863785505295, -0.01737695373594761, -0.009725207462906837, 0.005217099096626043, 0.010320492088794708, -0.018072566017508507, -0.014674763195216656, 0.05027143284678459, 0.007089904043823481, -0.004467977210879326, 0.01131709199398756, 0.00826040655374527, 0.0036218706518411636, -0.026674091815948486, 0.040158286690711975, 0.007658433634787798, -0.0013853738782927394, 0.02691487967967987, 0.0006157681928016245, 0.009792093187570572, -0.0007725319592282176, 0.012607988901436329, 0.012293625622987747, 0.014795158058404922, -0.004166990518569946, 0.01920962706208229, 0.00048659482854418457, -0.033656977117061615, 0.020654361695051193, 0.028573650866746902, -0.0020968725439161062, -0.04847889021039009, 0.010915776714682579, -0.009250317700207233, -0.036011360585689545, 0.02529624104499817, -0.009879045188426971, -0.0018728048307821155, -0.0007181871915236115, 0.028894701972603798, 0.014326957054436207, 0.02246027998626232, -0.029884614050388336, 0.0032556704245507717, -0.01866116188466549, 0.00010032882710220292, 0.028894701972603798, -0.036813993006944656, 0.04751573130488396, 0.02827935293316841, 0.003896102774888277, -0.04149600490927696, 0.029081983491778374, 0.02208571881055832, -0.019196249544620514, 0.005223787855356932, -0.003745609661564231, -0.0023359896149486303, -0.016975637525320053, -0.00028781831497326493, -0.0051435246132314205, -0.015985727310180664, 0.007959420792758465, 0.016962260007858276, 0.05209072679281235, 0.013042747974395752, 0.0013410620158538222, 0.03376399353146553, -0.006942755077034235, 0.014367087744176388, 0.011571258306503296, 0.010440886951982975, 0.038017936050891876, -0.0030265862587839365, -0.005260575097054243, -0.030312683433294296, -0.00645114341750741, -0.02700852043926716, 0.0002495679655112326, 0.022834841161966324, 0.0026704189367592335, 0.015397130511701107, 0.016039235517382622, 0.05233151838183403, 0.007497907616198063, 0.03306838124990463, 0.0022824809420853853, -0.031864434480667114, -0.01741708442568779, 0.03983723372220993, -0.018647784367203712, -0.01792541705071926, 0.00969176460057497, 0.002116938354447484, -0.03911486640572548, -0.040078021585941315, 0.012133099138736725, -0.010547904297709465, 0.0032840969506651163, 0.0108020706102252, -0.019022345542907715, -0.015276736579835415, 0.013337045907974243, -0.019236380234360695, -0.02502869814634323, 0.02528286539018154, 0.006635079625993967, -0.04516134783625603, 0.019410284236073494, -0.006267207209020853, 0.013597900047898293, 0.006477897986769676, 0.021149316802620888, -0.01946379244327545, 0.014326957054436207, 0.019624318927526474, 0.003044979879632592, 0.0018610997358337045, 0.022995367646217346, 0.021256335079669952, 0.022821463644504547, 0.018808310851454735, 0.006421044934540987, 0.019664449617266655, 0.01185217872262001, -0.010266982950270176, -0.014768403023481369, -0.006267207209020853, 0.030660489574074745, 0.011624766513705254, -0.028038563206791878, 0.025215977802872658, 0.024894926697015762, 0.021978702396154404, -0.02181817591190338, 0.009022905491292477, -0.02444010227918625, 0.032238997519016266, 0.02806531824171543, -0.009410844184458256, 0.043582841753959656, -0.021323220804333687, 0.009825536981225014, -0.00947772990912199, -0.021510500460863113, -0.02101554535329342, 0.017216427251696587, -0.016025857999920845, 0.008193520829081535, 0.003541607642546296, -0.020600853487849236, 0.0059327781200408936, -0.04457275569438934, -0.02276795543730259, -0.024828040972352028, 0.00185608328320086, -0.01601248048245907, -0.010929153300821781, 0.004926145542412996, -0.018045810982584953, 0.05262581259012222, -0.035797324031591415, 0.004397747106850147, 0.0034078359603881836, 0.005073294509202242, 0.01626664772629738, 0.007818959653377533, 0.017149541527032852, -0.01990523934364319, 0.05597010999917984, 0.025777820497751236, -0.0025617294013500214, -0.0356903076171875, -0.10070338845252991, 0.028466632589697838, 0.03288109973073006, 0.00043643038952723145, -0.026633959263563156, -0.038446005433797836, -0.022955235093832016, -0.004702077712863684, -0.007959420792758465, 0.03847276046872139, -0.013337045907974243, -0.03611837700009346, -0.033897764980793, -0.02066773921251297, 0.008909200318157673, 0.001122010755352676, 0.010447575710713863, -0.025965100154280663, -0.020306555554270744, -0.013965772464871407, 0.019102608785033226, -0.01622651517391205, 0.027797773480415344, -0.023945147171616554, -0.010353934951126575, -0.009236941114068031, 0.008982774801552296, -0.02310238406062126, 0.05548853054642677, 0.02769075706601143, -0.019624318927526474, 0.03849951550364494, 0.02276795543730259, 0.003942923154681921, -0.023610716685652733, 0.000588177761528641, 0.0012599629117175937, -0.020935282111167908, -0.0073842015117406845, -0.055649057030677795, 0.00906972587108612, 0.03183768317103386, -0.05056573078036308, -0.010929153300821781, -0.026607204228639603, -0.004163646139204502, -0.011919064447283745, -0.0005405215779319406, 0.033737242221832275, 0.01358452346175909, 0.017952172085642815, -0.031596891582012177, 0.011484306305646896, 0.03868679702281952, -0.04746222496032715, -0.005926089361310005, 0.009136611595749855, 0.001899559167213738, 0.021684404462575912, -0.018861819058656693, 0.013845378533005714, 0.0072236754931509495, 0.02683461643755436, 0.008039683103561401, 0.006314027588814497, 0.03084777109324932, 0.00926369521766901, -0.010969284921884537, 0.00041866383980959654, 0.058217473328113556, 0.001976477913558483, -0.030366191640496254, 0.00710328109562397, 0.022968612611293793, 0.011350534856319427, 0.03491443023085594, -0.0008180979639291763, 0.014380465261638165, -0.010715118609368801, -0.0023761210031807423, -0.026941634714603424, 0.011176631785929203, 0.01852739043533802, 0.0027791084721684456, -0.015691429376602173, 0.0034078359603881836, 0.018768180161714554, 0.001057633082382381, -0.01583857834339142, 0.01883506588637829, -0.03512846678495407, -0.007404267322272062, -0.0251624695956707, -0.009571369737386703, -0.024506988003849983, -0.011564569547772408, -0.019062478095293045, 0.019918616861104965, -0.06517360359430313, -0.01908923126757145, 0.01930326595902443, -0.003260686993598938, -0.014821912162005901, 0.03935565426945686, 0.048371873795986176, 0.07662446796894073, 0.012614677660167217, -0.034165311604738235, 0.007986174896359444, 0.008313915692269802, -0.018942082300782204, -0.01848725788295269, 0.0342455729842186, -0.030152156949043274, -0.018621031194925308, -0.001824312494136393, 0.015330244787037373, -0.0050130970776081085, -0.011283649131655693, -0.027155669406056404, 0.010427509434521198, 0.02366422675549984, -0.010460952296853065, 0.005842482205480337, 0.003116882173344493, -0.026179134845733643, -0.003983054310083389, 0.0005242181359790266, 0.0026603860314935446, -0.01809932105243206, -0.03341618925333023, 0.011457552202045918, 0.0027824528515338898, 0.026085495948791504, 0.01121007464826107, 0.0023476944770663977, -0.027637246996164322, -0.0011144860181957483, -0.020172782242298126, 0.04162977635860443, -0.0003896102716680616, 0.008655033074319363, 0.01277520414441824, -0.052224498242139816, -0.02058747597038746, -0.026847993955016136, 0.01307619083672762, -0.0007006296655163169, -0.008949331007897854, 0.004307451192289591, 0.02092190459370613, -0.020092519000172615, -0.04446573555469513, -0.0015383753925561905, -0.00565854599699378, 0.02076137810945511, 0.021028922870755196, -0.00013492137077264488, -0.006551472470164299, 0.006641768384724855, 0.024292953312397003, -0.013805246911942959, -0.03020566515624523, 0.01555765699595213, -0.0024948434438556433, 0.03403154015541077, -0.027423212304711342, 0.0417635478079319, 0.009685075841844082, 0.02191181667149067, -0.025430014356970787, 0.021216202527284622, -0.011350534856319427, 0.029429789632558823, 0.013430685736238956, -0.008374112658202648, -0.02948329783976078, -0.0018477225676178932, 0.03199820592999458, 0.01934339851140976, 0.017604364082217216, 0.014781780540943146, 0.06153501570224762, 0.0028025186620652676, 0.00856139324605465, -0.03574381768703461, 0.02387826144695282, 0.0011312075657770038, 0.04682011902332306, 0.026339661329984665, -0.01099603995680809, -0.013015992939472198, 0.014888797886669636, 0.021590763702988625, 0.015209849923849106, 0.05225125327706337, 0.006357503589242697, -0.020948659628629684, 0.005969565361738205, -0.013343733735382557, 0.035155221819877625, -0.014393842779099941, -0.0029747497756034136, -0.0010208458406850696, 0.02156400866806507, -0.031302593648433685, 0.013738361187279224, -0.004217155277729034, -0.011109745129942894, 0.01161807868629694, -0.016547568142414093, 0.04516134783625603, -0.007190232630819082, -0.005320772062987089, -0.01887519657611847, 0.008828937076032162, -0.022754577919840813, -0.01912936381995678, 0.0032205553725361824, 0.022527165710926056, 0.0036753793247044086, 0.054659146815538406, 0.000949779583606869, -0.000459004397271201, 0.017296690493822098, 0.012480906210839748, 0.012822024524211884, -0.019503924995660782, 0.059929754585027695, 0.03231925889849663, -0.03831223398447037, -0.020520590245723724, 0.0001521653903182596, 0.03577057272195816, 0.01656094565987587, -0.022353263571858406, 0.016962260007858276, 0.002158741932362318, -0.015142964199185371, 0.009598124772310257, -0.0160526130348444, -0.0012499300064519048, 0.03483416885137558, 0.012293625622987747, -0.026928257197141647, 0.015142964199185371, -0.02144361473619938, -0.0201594065874815, -0.017216427251696587, 0.040078021585941315, 0.002061757491901517, 0.04473327845335007, -0.05816396698355675, -0.008440998382866383, -0.03726881369948387, -0.035503026098012924, -0.01985173113644123, 0.03542276471853256, 0.02023966796696186, 0.038151707500219345, -0.018219714984297752, 0.03812495619058609, 0.027530230581760406, 0.012133099138736725, -0.023129139095544815, 0.041014425456523895, 0.04195082560181618, -0.01809932105243206, 0.031382858753204346, 0.004738864954560995, 0.02037344127893448, -0.04184380918741226, -0.012307003140449524, 0.04181705415248871, 0.020039010792970657, 0.008949331007897854, 0.00395630020648241, 0.040586356073617935, 0.011129811406135559, 0.022018833085894585, 0.007624990772455931, -0.00555152865126729, 0.0371350422501564, 0.028359616175293922, -0.02011927403509617, -0.03932889923453331, -0.008915888145565987, -0.0029847826808691025, 0.023129139095544815, 0.02062760666012764, 0.021202825009822845, 0.012019393965601921, -0.0012449135538190603, -0.0009129923419095576, 0.01737695373594761, -0.002937962533906102, 0.003976366017013788, 0.012393954209983349, -0.03234601393342018, 0.012768515385687351, 0.04098767042160034, 0.008166766725480556, -0.021430237218737602, -0.0005217099096626043, -0.004263975191861391, -0.0050365072675049305, 0.0008126635220833123, 0.022540543228387833, 0.012119722552597523, -0.009711830876767635, -0.014286825433373451, 0.012574546039104462, 0.0038693484384566545, 0.008140012621879578, -0.03718855232000351, -0.029108736664056778, -0.025269487872719765, -0.017510725185275078, -0.02401203289628029, -0.021537255495786667, -0.004655257798731327, 0.004314139485359192, 0.021804798394441605, 0.0031469808891415596, -0.016507435590028763, 0.0044077797792851925, 0.00014516327064484358, -0.007705254014581442, -0.0038158397655934095, 0.03919512778520584, -0.006685244385153055, 0.01142410933971405, 0.002805862808600068, -7.414927677018568e-05, -3.7675563362427056e-05, 0.0016587699064984918, 0.018888574093580246, 0.008032994344830513, -0.004217155277729034, 0.015035946853458881, 0.009123235009610653, -0.040158286690711975, 0.030098648741841316, -0.045589420944452286, 0.07234377413988113, 0.019838353618979454, -0.02605874091386795, 0.025256110355257988, 0.016507435590028763, 0.010969284921884537, 0.012072902172803879, 0.010688364505767822, 0.02173791266977787, -0.035503026098012924, -0.0037589867133647203, -0.0014004232361912727, -0.017109408974647522, -0.03756311163306236, -0.003162030130624771, -0.009611501358449459, 0.009337269701063633, 0.002657041884958744, -0.024894926697015762, -0.0014229972148314118, 0.003732232376933098, -0.018259847536683083, 0.01112312264740467, -0.028787685558199883, -0.006722031626850367, 0.03146312013268471, -0.017684627324342728, 0.016186384484171867, 0.007002952042967081, 0.0004899391205981374, 0.0037489538080990314, 0.039783723652362823, -0.0006521373870782554, -0.031436365097761154, -0.019223002716898918, 0.0034446229692548513, 0.004166990518569946, -0.01669471710920334, -0.0025316306855529547, 0.0353425033390522, -0.012026081793010235, 0.01720304973423481, -0.023463567718863487, -0.017136164009571075, 0.034593380987644196, 0.017256557941436768, 0.004842537920922041, -0.02203221060335636, 0.01823309250175953, 0.020694492384791374, 0.0164271742105484, -0.02345019206404686, 0.02220611460506916, 0.027062028646469116, -0.009203498251736164, 0.047649502754211426, -6.171267887111753e-05, 0.025149092078208923, 0.02220611460506916, 0.013557769358158112, -0.0176712516695261, -0.009143300354480743, -0.022139228880405426, 0.00550805265083909, -0.020640984177589417, -0.007584859151393175, 0.006765507161617279, -0.011872244998812675, 0.012026081793010235, -0.004879325162619352, 0.003855971386656165, 0.017644496634602547, 0.02250041253864765, -0.017791645601391792, 0.013430685736238956, 0.02405216358602047, 0.021363351494073868, -0.004310795105993748, -0.023169269785284996, -0.011631455272436142, 0.0004401927290018648, 0.025617294013500214, -0.027102161198854446, -0.015410508029162884, 0.012915664352476597, 0.02118944749236107, -0.0003494787379167974, 0.004678667522966862, -0.022018833085894585, 0.018554145470261574, 0.017831776291131973, -0.00670865410938859, -0.01887519657611847, -0.025403259322047234, -0.05160914734005928, -0.008380801416933537, -0.00023744489590171725, -0.008180143311619759, 0.020400194451212883, 0.020266423001885414, 0.0008937626262195408, -0.015370376408100128, 0.011457552202045918, 0.002635303884744644, 0.08465077728033066, -0.006307338830083609, -0.018473882228136063, 0.0047455537132918835, 0.04941529035568237, -0.001706426148302853, -0.0015291785821318626, -0.02940303459763527, -0.0005676939617842436, 0.0033309170976281166, -0.04120170697569847, 0.04411793127655983, 0.0051970332860946655, -0.018166206777095795, -0.030874524265527725, -0.0001644974690862, 0.012674875557422638, 0.038285478949546814, 0.015691429376602173, 0.006758818868547678, 0.002155397552996874, -0.004424501210451126, 0.015691429376602173, 0.0034814102109521627, 0.004250598140060902, -0.013925640843808651, 0.015718182548880577, -0.0060096969828009605, 0.021617518737912178, 0.02897496521472931, -0.03483416885137558, -0.008220274932682514, 0.005926089361310005, -2.3279422748601064e-05, -0.008360736072063446, 0.0044311899691820145, 0.020212914794683456, -0.02777102030813694, 0.009711830876767635, -0.007705254014581442, -0.018032435327768326, 0.012922353111207485, -0.011002727784216404, -0.0174973476678133, -0.0011897326912730932, 0.0009982718620449305, -0.02208571881055832, -0.015196473337709904, 0.017577610909938812, 0.0041168262250721455, -0.034165311604738235, 0.008675099350512028, -0.050137657672166824, -0.005501363892108202, -0.02272782288491726, 0.005705365911126137, 0.016788357868790627, 0.0034513117279857397, -0.04275345802307129, -0.017055900767445564, 0.0001764115149853751, 0.008487818762660027, -0.06062536686658859, -0.007344070356339216, 0.00254668015986681, -0.01566467434167862, 0.011684964410960674, 0.01809932105243206, -0.011571258306503296, 0.02148374542593956, -0.03775039315223694, -0.018621031194925308, 0.011564569547772408, 0.005377625115215778, -0.014875421300530434, 0.01613287627696991, 0.0106147900223732, 0.0010175015777349472, 0.0024898271076381207, -0.04318152740597725, 0.01123013999313116, -0.000799286353867501, 0.031008295714855194, -0.0026185824535787106, -0.0599832609295845, -0.008340669795870781, 0.015718182548880577, 0.02413242682814598, -0.0008490327163599432, 0.04526836797595024, -0.0038124953862279654, -0.025389881804585457, 0.01112312264740467, 0.006059861276298761, 0.0011621422600001097, 0.009758650325238705, -0.02592496946454048, -0.004190400708466768, 0.01163814403116703, -0.0011178303975611925, 0.036439429968595505, -0.01099603995680809, -0.001412964309565723, 0.021323220804333687, -0.0251624695956707, -0.004588371608406305, -0.01860765367746353, -0.021550633013248444, -0.000885401910636574, 0.021416859701275826, -0.002459728391841054, -0.016881996765732765, 0.027744265273213387, -0.03577057272195816, -0.0027891413774341345, -0.01994537003338337, 0.006066549569368362, -0.011731783859431744, 0.015571034513413906, 0.003896102774888277, -0.006882557645440102, 0.022045588120818138, 0.021336596459150314, 0.018540767952799797, -0.009491107426583767, 0.015410508029162884, 0.005869236309081316, 0.009751962497830391, 0.004819128196686506, 0.006574882660061121, -0.03916837275028229, -0.017751513049006462, 0.01916949450969696, -0.01001281663775444, -0.005702021531760693, -0.024547120556235313, 0.018982214853167534, -0.025108961388468742, -0.0007925977115519345, 0.026714222505688667, -0.03349645063281059, 0.039596445858478546, -0.02362409420311451, 0.012393954209983349, -0.02473440021276474, 0.019918616861104965, -0.0035783948842436075, 0.022995367646217346, -0.02290172688663006, -0.013042747974395752, -0.018246470019221306, -0.009009528905153275, -0.0030148811638355255, 0.033523205667734146, 0.010046259500086308, -0.017818400636315346, 0.014540991745889187, 0.02977759577333927, 0.009317203424870968, 0.022393394261598587, -0.01652081310749054, 0.020306555554270744, -0.015584411099553108, -0.02755698375403881, 0.03197145462036133, -0.004156957846134901, -0.01903572306036949, 0.04283371940255165, -0.006591604091227055, 0.0008945987210609019, -0.00489939097315073, -0.028466632589697838, 0.01277520414441824, 0.007457775995135307, -0.02422606758773327, -0.038017936050891876, -0.00259350030682981, 0.020694492384791374, -0.009297138080000877, -0.005568250082433224, -0.01361127756536007, 0.037161797285079956, 0.036225397139787674, -0.03419206291437149, -0.013557769358158112, 0.008186832070350647, 0.024707645177841187, -0.016025857999920845, 0.009611501358449459, 0.015731560066342354, -0.002474777866154909, -0.002817567903548479, 0.009002840146422386, -0.0035449520219117403, 0.0016345238545909524, -0.05059248208999634, 0.02327628806233406, -0.03338943421840668, 0.030928032472729683, -0.001530850655399263, 0.01553090289235115, -0.035449519753456116, -0.020681114867329597, -0.013591212220489979, -0.008012928999960423, -0.011537815444171429, -0.021082431077957153, 0.0108020706102252, 0.006033106707036495, 0.011250206269323826, 0.004986342508345842, 0.02747672237455845, 0.01759098842740059, 0.012113033793866634, 0.008996151387691498, -0.021002167835831642, -0.007986174896359444, 0.019075853750109673, 0.0120461480692029, -0.027744265273213387, -0.0030600293539464474, -0.0328543484210968, 0.02088177390396595, -0.05896659567952156, -0.014166430570185184, 0.005595004186034203, -0.018540767952799797, 0.006976197939366102, 0.015490771271288395, -0.052920110523700714, 0.060143787413835526, 0.018366863951086998, -0.015905464068055153, -0.02790479175746441, -0.014621254056692123, 0.006675211247056723, -0.0042472537606954575, -0.0028961587231606245, -0.003355999244377017, -0.009357335045933723, 0.004648569040000439, 0.004133547656238079, 0.009410844184458256, -0.0019580842927098274, -0.007364136166870594, 0.03807144612073898, 0.017310066148638725, 0.009557993151247501, -0.013544391840696335, 0.017698004841804504, -0.00118722440674901, -0.025149092078208923, 0.009979373775422573, -0.025617294013500214, 1.1698498383339029e-05, 0.005079982802271843, 0.0063039944507181644, -0.011644832789897919, 0.010842202231287956, -0.008160077966749668, -0.006367536261677742, -0.0093707125633955, 0.03860653191804886, 0.006772195920348167, 0.024038787931203842, 0.038365744054317474, -0.003013209206983447, -0.026553696021437645, -0.0310618057847023, -0.017443839460611343, -0.016025857999920845, 0.011604701168835163, -0.016881996765732765, -0.0424591600894928, -0.0367872379720211, 0.009578058496117592, -0.017269935458898544, -0.024680892005562782, -0.012728383764624596, 0.008012928999960423, -0.008273784071207047, 0.057361334562301636, 0.034807413816452026, -0.00518700061365962, 0.008548015728592873, -0.010367312468588352, -0.041228458285331726, 0.00200657662935555, -0.006889245938509703, -0.007143412716686726, 0.024935057386755943, 0.01609274372458458, 0.002999831922352314, 0.02097541280090809, -5.852515096194111e-05, 0.06180255860090256, 0.007344070356339216, 0.027369704097509384, 0.03239952400326729, -0.021028922870755196, -0.020212914794683456, 0.0049896868877112865, 0.03384425863623619, 0.034085046499967575, -0.012460840865969658, 0.012768515385687351, -0.0020968725439161062, -0.0005526446038857102, -0.023650849238038063, -0.03593109920620918, 0.04296749085187912, -0.010113146156072617, -0.029804350808262825, -0.01512958761304617, 0.011497683823108673, 0.029643824324011803, -0.010969284921884537, -0.03328241780400276, 0.023476945236325264, 0.019142739474773407, 0.001554260728880763, -0.009297138080000877, -0.006762162782251835, -0.025215977802872658, 0.05816396698355675, 0.015865331515669823, 0.0015166373923420906, -0.018982214853167534, 0.005110081750899553, -0.003185440320521593, 0.015356998890638351, -0.01020678598433733, 0.02563067153096199, -0.02811882644891739, 0.0010634856298565865, 0.01542388554662466, 0.017938794568181038, 0.01634691096842289, 0.013898886740207672, -0.007979486137628555, -0.010113146156072617, 0.04473327845335007, -0.006501308176666498, 0.013049435801804066, 0.0264065470546484, 0.01755085587501526, -0.01702914573252201, 0.03520872816443443, 0.007043083664029837, -0.0005091687780804932, 0.023008745163679123, 0.025563785806298256, 0.0055414955131709576, 0.008374112658202648, -0.00898946262896061, -0.0006203665980137885, 0.012012705206871033, -0.0018644439987838268, 0.0240922961384058, -0.021296465769410133, -0.008253717795014381, 0.011577947065234184, -0.012380577623844147, 0.030794261023402214, 0.005451199598610401, 0.02545676752924919, -0.025991855189204216, 0.0074310218915343285, -0.023985277861356735, -0.008247029967606068, 0.008233652450144291, 0.004350926727056503, 0.012929041869938374, -0.014260070398449898, 0.006414356175810099, -0.06683237850666046, 0.014300202019512653, 0.024841418489813805, -0.029750842601060867, -0.024159181863069534, 0.018728047609329224, -0.03855302557349205, 0.014286825433373451, 0.001565965823829174, 0.004150269087404013, 0.006099992897361517, 0.021296465769410133, -0.02494843490421772, 0.03256005048751831], [-0.006758911535143852, 0.0014005261473357677, 0.038445815443992615, 0.029960274696350098, -0.021433541551232338, 0.05187438800930977, -0.023561792448163033, 0.011581801809370518, 0.017987148836255074, 0.05827287212014198, -0.005186752416193485, -0.01953871175646782, 0.003317667869850993, 0.001616783789359033, -0.027433834969997406, 0.038445815443992615, -0.019222907721996307, 0.041521478444337845, -0.024481745436787605, -0.004977359902113676, 0.06360036134719849, 0.02883436158299446, -0.011176747269928455, -0.006031187251210213, -0.056680116802453995, -0.031553030014038086, 0.02691207081079483, 0.01375124417245388, 0.04797488451004028, -0.059316400438547134, 0.07013615220785141, -0.028120366856455803, 0.021502194926142693, -0.030482038855552673, 0.008540463633835316, 0.0038411489222198725, -0.039599187672138214, 0.035205382853746414, 0.03245925158262253, 0.015927551314234734, 0.00539957731962204, 0.03795151039958, -0.024028634652495384, -0.011499417945742607, -0.040230799466371536, 0.07178382575511932, 0.012529216706752777, -0.03103126585483551, -0.012776368297636509, 0.006734882947057486, 0.010812885127961636, 0.028422441333532333, 0.016655275598168373, -0.045338600873947144, 0.06371020525693893, 0.01734180934727192, 0.0020990727934986353, 0.032129716128110886, 0.03534268960356712, -0.016943620517849922, -0.005608969833701849, -0.015378326177597046, -0.018055802211165428, 0.03292609378695488, 0.002670611022040248, -0.008801345713436604, -0.009165207855403423, 0.015186096541583538, -0.021502194926142693, -0.013483496382832527, 0.055801354348659515, 0.045640673488378525, 0.012185950763523579, -0.036248911172151566, 0.01470552384853363, -0.04017587751150131, 0.014142567291855812, 0.00016283690638374537, -0.019030679017305374, 0.011300323531031609, -0.011774030514061451, 0.033749934285879135, 0.022971374914050102, 0.025099625810980797, 0.028202751651406288, -0.010936461389064789, -0.05072101578116417, 0.01823430135846138, -0.044624608010053635, -0.005382413975894451, -0.04764534905552864, -0.007112475577741861, -0.02792813815176487, 0.03438154235482216, 0.03926965221762657, -0.027378913015127182, 0.022559454664587975, -0.013332459144294262, -0.03133333846926689, 0.024797551333904266, -0.026582535356283188, -0.021419811993837357, -0.02544289082288742, 0.008808210492134094, 0.034134391695261, -0.03350277990102768, -0.02159830927848816, 0.035809531807899475, 0.007160533219575882, -0.03704528883099556, -0.029465971514582634, -0.014156298711895943, -0.03803389519453049, 0.09226995706558228, -0.021200120449066162, -0.018618758767843246, -0.06991646438837051, 0.012748907320201397, 0.03987380117177963, 0.01940140686929226, -0.05096816644072533, -0.018028341233730316, 0.03396962210536003, -0.0770564004778862, 0.013414843007922173, -0.021200120449066162, -0.015913821756839752, -0.001430561882443726, -0.05673503875732422, -0.03630383312702179, 0.06563249975442886, -0.004737073555588722, 0.026417767629027367, -0.058602407574653625, -0.013174557127058506, 0.015652939677238464, -0.007696028333157301, -0.027557410299777985, -0.006552951876074076, -0.05695473030209541, 0.038445815443992615, 0.022243650630116463, 0.029218818992376328, 0.030372193083167076, -0.060359928756952286, 0.004088300280272961, 0.04717850685119629, 0.03383231908082962, 0.005900746211409569, -0.02207888290286064, -0.01286561693996191, 0.0057359784841537476, -0.008258985355496407, -0.008176600560545921, 0.010119487531483173, 0.012742041610181332, 0.033447857946157455, 0.059041786938905716, 0.007030091714113951, -0.01953871175646782, -0.03289863467216492, -0.022669300436973572, -0.01324321050196886, -0.004867514595389366, 0.043883152306079865, 0.004716477822512388, -0.03015250340104103, 0.017451653257012367, -0.06601695716381073, -0.07782531529664993, -0.046986278146505356, -0.02100789174437523, -0.01732807792723179, -0.0012100134044885635, 0.005303462967276573, -0.04363600164651871, 0.007744085509330034, -0.022298572584986687, 0.0024286084808409214, -0.008828806690871716, -0.017026003450155258, -0.01982705667614937, -0.09408240020275116, -0.036413680762052536, -0.0478924997150898, 0.04811219125986099, 0.029768045991659164, 0.02220245823264122, -0.028697054833173752, -0.0021025054156780243, 0.0364411398768425, 0.019593635573983192, 0.02574496529996395, 0.020527319982647896, -0.027571141719818115, 0.01763015240430832, -0.0039098020642995834, 0.006377886049449444, 0.010703040286898613, -0.0011868429137393832, 0.04855157062411308, -0.033749934285879135, 0.05311014875769615, 0.030921420082449913, -0.01747911609709263, -0.020486127585172653, -0.0154469795525074, 0.027282798662781715, 0.005372116342186928, -0.03561730310320854, 0.002196903806179762, -0.0673350989818573, -0.03781420364975929, 0.017987148836255074, -0.013943472877144814, 0.021406080573797226, -0.009940989315509796, 0.018151916563510895, -0.031058726832270622, 0.04929302632808685, -0.0077784121967852116, 0.0068378630094230175, 0.005372116342186928, -0.004943033214658499, -0.02629419043660164, 0.014101375825703144, 0.00297783431597054, -0.03281624987721443, -0.014938944950699806, -0.07903361320495605, -0.010085160844027996, 0.02056851051747799, -0.02191411517560482, -0.01953871175646782, -0.0043869419023394585, -0.01778118871152401, -0.010160679928958416, -0.003638621885329485, -0.0020595972891896963, 0.02089804597198963, 0.03861058130860329, 8.597745909355581e-05, 0.011883876286447048, 0.048579033464193344, 0.004465893376618624, -0.0029263445176184177, -0.024207131937146187, -0.008869999088346958, 0.040066029876470566, 0.03276132792234421, 0.04706866294145584, 0.025607658550143242, 0.04456968232989311, -0.014430911280214787, 0.005914476700127125, -0.018550105392932892, -0.031250953674316406, -0.039791420102119446, 0.001106175361201167, -0.03819866478443146, -0.01419749017804861, -0.011622993275523186, -0.03116857074201107, 0.00280963396653533, -0.07063045352697372, -0.02324598655104637, 0.02221618965268135, -0.004201578442007303, -0.03133333846926689, 0.033749934285879135, -0.03534268960356712, 0.03745720908045769, 0.022586915642023087, -0.03385977819561958, -0.03792405128479004, 0.009220130741596222, -0.02015659213066101, -0.030756652355194092, -0.002363387728109956, -0.03366754949092865, -0.032431792467832565, 0.006995765492320061, -0.01051081158220768, -0.039763957262039185, 0.013339324854314327, 0.030070120468735695, -0.01154747512191534, -0.03259655833244324, -0.010648117400705814, 0.00602775439620018, 0.030811574310064316, -0.001693160505965352, 0.01307844277471304, 0.003182077780365944, 0.05827287212014198, 0.023754021152853966, -0.0020647463388741016, -0.025387968868017197, -0.002849109470844269, -0.02308121882379055, 0.02413848042488098, 0.03221210092306137, 0.0009474147227592766, -0.00822465866804123, -0.0308939591050148, 0.006309232674539089, 0.036248911172151566, 0.007345896679908037, -0.04078002646565437, 0.011918202973902225, -0.039324577897787094, 0.022985104471445084, -0.030536960810422897, -0.06266667693853378, -0.056515347212553024, -0.009728164412081242, -0.006614740006625652, 0.036358755081892014, -0.01447210367769003, 0.005200482904911041, 0.01734180934727192, -0.00853359792381525, 0.028724515810608864, -0.020170321688055992, -0.004084867890924215, -0.008396291173994541, 0.01837160810828209, 0.02913643606007099, -0.047865040600299835, -0.02190038375556469, -0.026198076084256172, -0.006106705870479345, 0.02085685543715954, -0.0024800982791930437, -0.008176600560545921, -0.02720041386783123, -0.010709905996918678, 0.05657026916742325, -0.008114812895655632, 0.02807917632162571, 0.023273449391126633, -0.0236579068005085, -0.009549666196107864, 0.01911306194961071, -0.051105473190546036, 0.040203336626291275, 0.02765352465212345, 0.0364411398768425, -0.022106343880295753, 0.05582881718873978, 0.019964363425970078, 0.04965002462267876, -0.03177272155880928, 0.021831730380654335, -0.06997138261795044, -0.0058286599814891815, -0.008876863867044449, 0.001083863084204495, -0.01721823215484619, -0.013112769462168217, 0.02133742719888687, 0.03605668246746063, 0.03597429767251015, 0.028642132878303528, 0.02941104769706726, -0.0170671958476305, -0.014279874041676521, 0.03674321621656418, 0.028449902310967445, -0.03512299805879593, 0.004472758620977402, 0.07969268411397934, 0.02029389888048172, -0.010600060224533081, -0.031086187809705734, -0.01403272245079279, 0.005152425728738308, 0.04544844478368759, -0.01763015240430832, 0.0012100134044885635, 0.009838009253144264, 0.022271111607551575, 0.015694130212068558, -0.007908853702247143, 0.06832370907068253, 0.034354083240032196, -0.06354544311761856, -0.02144727297127247, -0.025799887254834175, 0.03158048912882805, -0.00643967418000102, 0.005766872316598892, -0.04261993244290352, 0.010531406849622726, -0.0005445060087367892, 0.01926410011947155, 0.03602921962738037, 0.034134391695261, 0.047700271010398865, -0.006734882947057486, 0.005550614558160305, -0.03347532078623772, -0.00993412360548973, -0.041082099080085754, -0.041548941284418106, -0.006978602148592472, -0.04879872500896454, -0.006367587950080633, -0.0006582129281014204, -0.006587278563529253, 0.04440491646528244, 0.01590009033679962, 0.05008940398693085, -0.01708092726767063, 0.007448876742273569, -0.02589600346982479, -0.013469765894114971, 0.05613088980317116, -0.00727724377065897, -0.030372193083167076, 0.05678996071219444, 0.010037103667855263, -0.005176454316824675, -0.006240579765290022, -0.04937541112303734, 0.022518262267112732, 0.02424832433462143, -0.010716770775616169, -0.011822087690234184, -0.09375286847352982, -0.007963775657117367, 0.01191133726388216, 0.03792405128479004, 0.0022895855363458395, -0.026980724185705185, -0.039763957262039185, 0.047315813601017, 0.01455448754131794, -0.024728897958993912, -0.058437637984752655, 0.019813325256109238, -0.015172366052865982, -0.007050687912851572, 0.02853228710591793, -0.0200192853808403, 0.025319315493106842, 0.008279580622911453, 0.011252266354858875, -0.014966406859457493, 0.010222467593848705, -0.010222467593848705, 0.009810548275709152, -0.057284265756607056, -0.005361818242818117, -0.020197782665491104, 0.036413680762052536, 0.014238682575523853, -0.05250599980354309, 0.028340058401226997, -0.06815893948078156, 0.03201987221837044, 0.05722934007644653, 0.06590711325407028, 0.06014024093747139, 0.04160386323928833, 0.011334650218486786, -0.030399655923247337, -0.010050834156572819, -0.0077852774411439896, -0.03630383312702179, -0.005674190353602171, -0.013353055343031883, -0.019305290654301643, -0.03753959387540817, 0.01896202564239502, -0.01793222688138485, -0.025635119527578354, -0.053604450076818466, 0.01463687140494585, -0.01808326318860054, -0.0009499892476014793, 0.0326240211725235, -0.032569099217653275, -0.01300292368978262, 0.04899095371365547, 0.013133364729583263, 0.05426352098584175, -0.008794480003416538, -0.02467397414147854, -0.0160236656665802, -0.02791440859436989, -0.01514490507543087, 0.021378619596362114, -0.016133511438965797, -0.015570554882287979, 0.0011739704059436917, -0.022435879334807396, -0.002692923415452242, 0.05398890748620033, -0.014156298711895943, 0.03899504244327545, -0.031141109764575958, 0.02485247328877449, 0.03443646430969238, 0.0370178259909153, -0.012089835479855537, 0.001707749324850738, -0.02897166833281517, -0.022902721539139748, 0.01661408506333828, -0.05538943409919739, -0.002105938270688057, 0.034024547785520554, 0.011506283655762672, -0.01764388382434845, -0.02894420735538006, 0.004915572237223387, -0.020362552255392075, -0.053000301122665405, 0.008698365651071072, -0.0017283452907577157, -0.045668136328458786, -0.012446832843124866, 0.017726266756653786, -0.010860942304134369, 0.017739998176693916, -0.017849842086434364, -0.04369092360138893, -0.021241312846541405, 0.004139790311455727, 0.0069168140180408955, -0.028861822560429573, -0.022010229527950287, 0.012385044246912003, 0.007318435702472925, 0.0009834576630964875, 0.00137993018142879, -0.0068447282537817955, 0.008526732213795185, -0.04778265580534935, 0.0423453189432621, -0.026692379266023636, 0.0030207426752895117, 0.023575523868203163, 0.005169589072465897, 0.00045568589121103287, 0.036358755081892014, 0.030921420082449913, 0.023177335038781166, 0.005965966731309891, 0.017465384677052498, 0.007400819566100836, -0.0020561646670103073, -0.005066609010100365, -0.0016039113979786634, 0.0073870886117219925, 0.014293604530394077, -0.03940695896744728, 0.033749934285879135, -0.007970641367137432, -0.03251417353749275, -0.01169164665043354, 0.00275986036285758, 0.015433249063789845, -0.015776515007019043, 0.013250075280666351, 0.01749284565448761, 0.01059319544583559, 0.0015773081686347723, 0.03207479417324066, 0.008554194122552872, 0.024756358936429024, 0.01824803091585636, -0.023575523868203163, 0.05440082773566246, 0.017863573506474495, 0.006364155560731888, -0.04470698907971382, 0.01750657707452774, 0.010860942304134369, -0.02087058499455452, 0.03325562924146652, -0.026143154129385948, -0.0016502522630617023, -0.03149810805916786, 0.018920833244919777, 0.011787761934101582, -0.03751213103532791, -0.003364008851349354, 0.014760446734726429, 0.0320473313331604, -0.0077234897762537, -0.0035150458570569754, 0.011142420582473278, 0.0001272230438189581, 0.05393398553133011, -0.004108896479010582, -0.0006067230133339763, -0.0029898486100137234, 0.014691793359816074, 0.005643296521157026, -0.002754711313173175, -0.023850135505199432, 0.010545138269662857, -0.011506283655762672, 0.006906515918672085, 0.022531993687152863, 0.0036248911637812853, 0.013153960928320885, 0.030070120468735695, -0.005897313356399536, 0.013318728655576706, 0.0006513476255349815, -0.01176716573536396, -0.029026590287685394, 0.03059188462793827, -0.029960274696350098, -0.01603739708662033, -0.009995912201702595, -0.013916011899709702, -0.00422560703009367, -0.00962518434971571, 0.02571750432252884, -0.015419517643749714, 0.004627228248864412, -0.011066902428865433, -0.007229186128824949, -0.03457377105951309, 0.03440900519490242, -0.011705378070473671, -0.02630792185664177, 0.030536960810422897, 0.007105610333383083, -0.01103944145143032, -0.007620509713888168, 0.017602691426873207, 0.024481745436787605, -0.006470568012446165, 0.0013395963469520211, 0.016559161245822906, 0.04954017698764801, 0.023918788880109787, 0.006587278563529253, -0.011918202973902225, 0.03144318610429764, 0.0078676613047719, 0.00548196118324995, 0.04297693073749542, 0.003518478712067008, 0.014760446734726429, 0.009213265031576157, 0.004592902027070522, 0.011355246417224407, -0.029026590287685394, 0.03215717896819115, -0.015968743711709976, -0.014760446734726429, 0.016971081495285034, 0.01732807792723179, 0.024179670959711075, -0.03526030480861664, 0.03180018067359924, -0.031553030014038086, 0.015131174586713314, 0.030179964378476143, 0.00013580468657892197, 0.02339702472090721, -0.0200192853808403, -0.0011550907511264086, -0.008664038963615894, -0.05143500864505768, 0.0032026737462729216, 0.025676311925053596, -0.007181128952652216, -0.0037930915132164955, -0.0031752123031765223, -0.02380894310772419, 0.02677476406097412, -0.052121542394161224, 0.03803389519453049, -0.04333392530679703, -0.02085685543715954, -0.021818000823259354, -0.0187972579151392, -0.017314346507191658, -0.03671575337648392, 0.038583122193813324, -0.048743803054094315, 0.007201725151389837, -0.008842537179589272, -0.007998102344572544, 0.04325154051184654, -0.009226995520293713, 0.012508620508015156, 0.009762491099536419, 0.04973240941762924, 0.001258928794413805, -0.016943620517849922, -0.06749986857175827, -0.08177974075078964, 0.02762606367468834, 0.03534268960356712, -0.004977359902113676, -0.06332574784755707, -0.047315813601017, -0.01616097241640091, -0.013119634240865707, 0.020321359857916832, 0.038583122193813324, -0.023850135505199432, -0.023342102766036987, -0.014897753484547138, -0.041686248034238815, 0.006968304049223661, -0.01441718079149723, 0.010600060224533081, -0.029163897037506104, -0.024371901527047157, 0.007565587293356657, 0.01824803091585636, -0.02353433147072792, 0.0332007072865963, -0.01673766039311886, -0.023850135505199432, 0.011561205610632896, -0.018316684290766716, -0.007668566890060902, 0.006206253077834845, -0.019332753494381905, 0.008869999088346958, 0.02542916126549244, 0.007139937020838261, 0.009995912201702595, 0.015501901507377625, -0.006679960526525974, -0.00110188452526927, -0.020774470642209053, 0.009048497304320335, -0.034299157559871674, 0.010915865190327168, 0.0006050067022442818, -0.02205142192542553, -0.020815663039684296, -0.0233695637434721, 0.0058149294927716255, -0.019209176301956177, 0.0031975246965885162, 0.04283962398767471, -0.011389573104679585, 0.01750657707452774, -0.012439967133104801, 0.012474293820559978, -0.013325594365596771, -0.05442829057574272, -0.0005929923499934375, 0.013030385598540306, -0.014829100109636784, 0.037100210785865784, 0.00742141529917717, 0.023561792448163033, 0.010105757042765617, 0.007627374958246946, 0.0032936392817646265, 0.02954835444688797, 0.016655275598168373, -0.009419224224984646, -0.004592902027070522, -0.01051081158220768, 0.0526433065533638, -0.009549666196107864, 0.010991384275257587, 0.019634826108813286, 0.04750804230570793, 0.014829100109636784, 0.0141151063144207, -0.0068069687113165855, -0.0001892254949780181, -0.010675579309463501, -0.017561499029397964, -0.025264393538236618, 0.03171779587864876, 4.714546957984567e-05, -0.01838533766567707, -0.014362257905304432, 0.00584582332521677, 0.0007062702206894755, 0.006213118322193623, -0.00845121406018734, 0.007689163088798523, -0.003309086197987199, -0.03526030480861664, -0.03042711690068245, -0.010421562008559704, -0.03690798208117485, -0.006882487330585718, -0.007201725151389837, -0.010716770775616169, -0.06760971248149872, 0.0015404070727527142, 0.03970903530716896, -0.02323225699365139, -0.004946466069668531, -0.016257086768746376, 0.007970641367137432, 0.0974326804280281, -0.02733772061765194, -0.050501324236392975, -0.006058648694306612, -0.013957204297184944, -0.036358755081892014, -0.029630739241838455, 0.026555074378848076, -0.02132369577884674, 0.014060183428227901, 0.0009765923023223877, 0.012529216706752777, -0.008464944548904896, 0.03119603358209133, 0.008650308474898338, 0.003434378420934081, -0.010538272559642792, -0.0111630167812109, 0.031058726832270622, -0.010634386911988258, 0.02250453270971775, -0.0024320411030203104, -0.019799593836069107, -0.012282065115869045, 0.012989193201065063, -0.022243650630116463, 0.014774177223443985, -0.015625476837158203, 0.013236344791948795, 0.005911043845117092, -0.00043294450733810663, -0.013696321286261082, -0.006614740006625652, 0.009419224224984646, 0.02395998127758503, 0.02088431641459465, 0.038747888058423996, -0.022298572584986687, -0.021708155050873756, -0.015955014154314995, -0.02603330835700035, -0.00010405256762169302, 0.006384751293808222, 0.015460710041224957, -0.0009010737994685769, 0.0400385707616806, -0.0063744536601006985, -0.030784113332629204, -0.013847358524799347, -0.028614670038223267, 0.006367587950080633, -0.03600176051259041, 0.030536960810422897, -0.0423453189432621, -0.011293457821011543, 0.006206253077834845, -0.006494596600532532, -0.017836112529039383, 0.013710052706301212, -0.007544991094619036, 0.021969037130475044, 0.0027083703316748142, 0.03350277990102768, 0.012378179468214512, 0.020623434334993362, -0.010387235321104527, 0.015089982189238071, -0.016517970710992813, 0.0004039814230054617, -0.011815222911536694, -0.029493432492017746, -0.03281624987721443, -0.011780896224081516, 0.036413680762052536, 0.019799593836069107, 0.008883729577064514, 0.019497521221637726, 0.02839498035609722, 0.021790537983179092, -0.003152900142595172, -0.025401698425412178, -0.003954426851123571, -0.01823430135846138, 0.051956772804260254, 0.029960274696350098, 0.011822087690234184, 0.008423753082752228, 0.011629858985543251, 0.004616930615156889, 0.0034875846467912197, 0.0035974299535155296, -0.005207348149269819, -0.030070120468735695, -0.01227519940584898, 0.0004810017708223313, 0.006745181046426296, -0.014293604530394077, -0.012220276519656181, 0.011595532298088074, 0.016669007018208504, -0.003152900142595172, -0.01506252121180296, 0.00019362359307706356, -0.02748875692486763, 0.023438217118382454, -0.003930398263037205, 0.04017587751150131, -0.014321066439151764, -0.0007624800782650709, 0.0024715166073292494, 0.0013378800358623266, -0.003954426851123571, -0.030674267560243607, -0.0027821725234389305, 0.026966992765665054, -0.005227944348007441, 0.05069355294108391, 0.005413308274000883, 0.01633947156369686, -0.021378619596362114, -0.016874967142939568, -0.0034395274706184864, -0.0012520634336397052, 0.015762783586978912, -0.01388855092227459, -0.03789658844470978, -0.0111630167812109, 0.03042711690068245, 0.009474147111177444, 0.04413030296564102, -0.003072232473641634, 0.059700857847929, -0.007984371855854988, 0.008876863867044449, 0.0233695637434721, -0.021406080573797226, 0.019195446744561195, 0.030811574310064316, 0.014870291575789452, -0.029877889901399612, -0.024660244584083557, -0.014046452939510345, -0.016792582347989082, -0.0020527318120002747, -0.0033949026837944984, -0.003364008851349354, 0.03998364880681038, -0.022106343880295753, -0.0034549743868410587, -0.007153667509555817, -0.05008940398693085, -0.006268040742725134, 0.0337773934006691, -0.012288929894566536, 0.050528787076473236, -0.009027901105582714, 0.060799311846494675, 0.032569099217653275, 0.02998773567378521, -0.03322817012667656, 0.034299157559871674, 0.03045457787811756, -0.009501609019935131, 0.00687562208622694, -0.07145429402589798, 0.029905352741479874, -0.009069093503057957, -0.015584285371005535, 0.065248042345047, 0.03558984026312828, -0.012687118723988533, -0.013229480013251305, 0.018055802211165428, 0.006110138259828091, 0.009000440128147602, 0.01433479692786932, -0.008526732213795185, 0.029356125742197037, 0.03353024274110794, -0.012172219343483448, -0.004706179723143578, 0.019222907721996307, 0.0006500603631138802, 0.023287178948521614, 0.013099038042128086, 0.026802225038409233, 0.019346483051776886, 0.0007427422679029405, 0.004943033214658499, 0.015213558450341225, -0.023781482130289078, 0.03201987221837044, 0.02191411517560482, -0.0209941603243351, 0.015474440529942513, 0.02954835444688797, 0.037731822580099106, 0.013916011899709702, 0.008952382951974869, 0.02541542984545231, -0.012288929894566536, 0.015048790723085403, 0.041851017624139786, -0.003492733696475625, -0.018605029210448265, -0.019511250779032707, -0.04001110792160034, -0.011945663951337337, -0.018714873120188713, -0.007469472475349903, -0.014183759689331055, -0.02221618965268135, 0.0036077278200536966, -0.038281045854091644, -0.032129716128110886, 0.01360707264393568, -0.016366932541131973, 0.0027529948856681585, 0.037869129329919815, 0.010098891332745552, 0.035507455468177795, 0.008705231361091137, -0.019209176301956177, -0.020499857142567635, 0.049485255032777786, -0.006463702768087387, 0.0026139721740037203, 0.01535086426883936, 0.009789952076971531, 0.05176454409956932, 0.022147536277770996, 0.014362257905304432, -0.0015266764676198363, -0.014691793359816074, -0.02467397414147854, 0.023850135505199432, -0.024069827049970627, -0.013057846575975418, -0.06557757407426834, 0.03954426571726799, 0.00786079652607441, -0.0014056750806048512, 0.01500759832561016, 0.0062714735977351665, 0.0154469795525074, 0.015968743711709976, 0.005705084186047316, 0.030482038855552673, -0.04251008853316307, -0.022531993687152863, 0.012309526093304157, -0.015213558450341225, -0.03619398921728134, -0.012076104991137981, -0.017286885529756546, -0.0003462697786744684, 0.018124455586075783, -0.03265148028731346, 0.00020713970297947526, -0.0017901333048939705, 0.01676512137055397, 0.01909933239221573, -0.05393398553133011, 0.012254603207111359, 0.030509499832987785, -0.021213851869106293, 0.011671051383018494, -0.0027684420347213745, 0.016655275598168373, 0.02644522860646248, 0.005983130075037479, 0.015694130212068558, -0.016820043325424194, -0.026280460879206657, -0.006951140705496073, 0.0024646513629704714, -0.02544289082288742, -0.006034620106220245, 0.014403450302779675, -0.0025487516541033983, -0.020033014938235283, -0.019373944029211998, -0.028285134583711624, 0.005972831975668669, -0.017108388245105743, 0.01720450259745121, -0.03059188462793827, 0.0062646083533763885, 0.019346483051776886, 0.019085600972175598, 0.0002675330906640738, 0.004208443686366081, 0.010222467593848705, -0.011526878923177719, 0.0015206693205982447, -0.007085014600306749, 0.017259424552321434, 0.008725826628506184, 3.212757292203605e-05, -0.017026003450155258, 0.03223956376314163, -0.010195006616413593, 0.02074700966477394, 0.01227519940584898, 0.022174997255206108, -0.002605390502139926, -0.009233861230313778, 0.0077852774411439896, 0.003321100492030382, -0.006810401566326618, 0.023287178948521614, 0.006563249975442886, -0.019195446744561195, 0.00039861787809059024, 0.017451653257012367, 0.0043732114136219025, -0.0036008625756949186, -0.0046993144787848, -0.014870291575789452, 0.0069099487736821175, 0.006522058043628931, -0.0023736858274787664, -0.01199372112751007, 0.005928207188844681, 0.0058732847683131695, 0.010023373179137707, -0.011787761934101582, -0.05657026916742325, -0.0063160983845591545, -0.010524542070925236, -0.005124964285641909, 0.006453404668718576, 0.0017832679441198707, -0.03627637401223183, -0.029658200219273567, -0.0031546163372695446, 0.002267273375764489, 0.017245694994926453, 0.007476338185369968, 0.007030091714113951, -0.005464797839522362, -0.0028748544864356518, -0.0077646817080676556, 0.07584810256958008, 0.011705378070473671, -0.016133511438965797, 0.009268187917768955, 0.05953609198331833, -0.012776368297636509, 0.002572780242189765, 0.005114666651934385, 0.007881391793489456, 0.004644391592592001, -0.04665674269199371, 0.0282302126288414, 0.038281045854091644, 0.013675726018846035, -0.005169589072465897, -0.0023221957962960005, 0.010057699866592884, 0.05478528514504433, 0.031525567173957825, 0.020980430766940117, -0.003758765058591962, -0.036413680762052536, 0.0031906594522297382, 0.0008697507437318563, -0.040642719715833664, -0.029301203787326813, 0.011883876286447048, -0.001500073354691267, -0.0007603346602991223, 0.022394686937332153, -0.015955014154314995, -0.008966113440692425, -0.0167788527905941, 0.017300616949796677, -0.01279696449637413, -0.016971081495285034, 0.013263805769383907, 0.005505989771336317, 0.025250662118196487, -0.009652645327150822, -0.009611453860998154, -6.291425961535424e-05, 0.0015867480542510748, -1.0130375812877901e-05, 0.021886654198169708, 0.020527319982647896, -0.007019794080406427, 0.008190331980586052, 0.004362913314253092, -9.51491019804962e-05, -0.005495692137628794, -0.0009517055586911738, -0.057119496166706085, -0.009879201650619507, -0.025195740163326263, 0.011712242849171162, -0.0093986289575696, -0.013174557127058506, -0.035040613263845444, -0.023040028288960457, 0.010400965809822083, 0.04973240941762924, -0.06156822666525841, 0.023465678095817566, -0.010565733537077904, -0.011698512360453606, 0.007256647571921349, -0.008794480003416538, -0.01336678583174944, 0.014389719814062119, -0.026939531788229942, -0.02368536777794361, 0.016943620517849922, 0.0036866790615022182, -0.012062374502420425, 0.022875260561704636, -0.019799593836069107, 0.01794595643877983, -0.004421268589794636, -0.014128836803138256, 0.0031666308641433716, -0.020033014938235283, 0.005725680384784937, 0.04539352282881737, -0.01272144541144371, -0.004469326231628656, 0.007043822668492794, 0.027722178027033806, -0.010792289860546589, 0.05788841471076012, -0.008135409094393253, -0.01600993610918522, 0.01572159305214882, 0.018193108960986137, 0.00809421669691801, -0.002922911662608385, -0.008952382951974869, -0.02748875692486763, 0.008300176821649075, -0.02776337042450905, 0.002970969071611762, -0.01881098747253418, -0.008444348350167274, 0.021351158618927002, -0.004057406447827816, 0.0020355687011033297, -0.004342317581176758, 0.0005651019746437669, 0.009254456497728825, 0.018481452018022537, 0.006731450092047453, -0.0009182370849885046, 0.030921420082449913, -0.03254163637757301, -0.04369092360138893, -0.0029177628457546234, -0.007730355020612478, -0.04451476037502289, -0.011506283655762672, 0.011073768138885498, -0.013140230439603329, 0.0019428867381066084, 0.005869851913303137, 0.007586183026432991, 0.023026296868920326, 0.031113648787140846, -0.027873216196894646, 0.05203915759921074, -0.009432955645024776, 0.0010521109215915203, 0.007215455640107393, -0.00786079652607441, 0.006034620106220245, -0.0080118328332901, 0.0031683470588177443, 0.0004810017708223313, -0.00658384570851922, -0.013984665274620056, -0.013119634240865707, -0.01923663727939129, 0.0073939538560807705, -0.00021969036606606096, -0.01123853586614132, -0.016847506165504456, -0.026939531788229942, 0.0018072965322062373, 0.010552003048360348, -0.020225245505571365, 0.005090638063848019, -0.006192522123456001, -0.021515926346182823, 0.010613790713250637, -0.004060839302837849, 0.02792813815176487, 0.014678062871098518, -0.0017231963574886322, 0.022257380187511444, -0.02177680842578411, 0.01388855092227459, -0.009158342145383358, -0.011073768138885498, 0.02117265947163105, -0.014183759689331055, -0.003379455767571926, 0.020033014938235283, -0.019222907721996307, -0.011588667519390583, 0.02190038375556469, -0.005818362347781658, 0.013854224234819412, -0.02585481107234955, -0.01425241306424141, 0.02600584737956524, 0.024907395243644714, -0.03707275167107582, -0.015021328814327717, 0.022229919210076332, 0.0220376905053854, -0.06360036134719849, 0.008581655099987984, 0.006206253077834845, -0.0025865109637379646, -0.02908151224255562, -0.018055802211165428, -0.02310868166387081, -0.0005749709089286625, 0.024495476856827736, -0.01852264441549778, 0.041548941284418106, 0.002656880533322692, 0.026527611538767815, -0.003029324347153306, 0.024303248152136803, -0.027680987492203712, 0.008142274804413319, -0.037127673625946045, 0.014650601893663406, -0.007229186128824949, 0.03350277990102768, -0.0008422894752584398, 0.0067795077338814735, -0.022861529141664505, -0.022696761414408684, -0.00657354760915041, -0.008265850134193897, -0.02750248834490776, -0.02471516653895378, 0.0034223641268908978, 0.015817707404494286, -0.0010572599712759256, 0.034354083240032196, 0.0030636508017778397, 0.019785864278674126, 0.02412474900484085, -0.003827418200671673, -0.03935203701257706, -0.003374306717887521, -0.00070798653177917, -0.011650455184280872, -0.03012504242360592, -0.005921341944485903, -0.02748875692486763, 0.045228756964206696, -0.013655129820108414, 0.0058217947371304035, 0.020390013232827187, 0.002332493895664811, 0.012515486218035221, 0.02438563108444214, -0.03278878703713417, 0.01287934836000204, -0.0016185002168640494, 0.0032129716128110886, -0.027420105412602425, -0.018728604540228844, -0.0048160250298678875, -0.041960861533880234, -0.003535641822963953, -0.005595239344984293, -0.014087645336985588, -0.010744232684373856, 0.009412359446287155, 0.006068946328014135, 0.005166156217455864, 0.0002795474138110876, 0.04325154051184654, -0.0030258914921432734, -0.036111604422330856, -0.013771840371191502, -0.036221448332071304, -0.005025417078286409, 0.007922584190964699, 0.0032421492505818605, -0.011499417945742607, 0.023932520300149918, -0.025662582367658615, 0.00330565357580781, -0.02130996622145176, -0.024577859789133072, -0.0197309423238039, -0.009089688770473003, -0.03688052296638489, 0.019909439608454704, 0.00532749155536294, 0.016257086768746376, 0.05291792005300522, -0.009501609019935131, -0.030372193083167076, -0.06667602807283401, 0.004060839302837849, -0.024522937834262848, 0.00375189958140254, -0.008931786753237247, -0.020952969789505005, -0.04363600164651871, 0.005718815140426159, -0.004592902027070522, -0.00895924773067236, 0.01059319544583559, 0.013517823070287704, 0.0139709347859025, 0.03366754949092865, 0.0006440532160922885, -0.009295648895204067, 0.011417034082114697, 0.014719255268573761, -0.05335729941725731, 0.012062374502420425, 0.029960274696350098, 0.02277914620935917, 0.03921473026275635, 0.017877304926514626, 0.011259131133556366, 0.007558722048997879, 0.015529363416135311, 0.04099971428513527, -0.01997809298336506, 0.0205959714949131, -0.004349182825535536, -0.0038548794109374285, -0.012467429041862488, 0.009577127173542976, 0.015941282734274864, -0.004081435035914183, 0.0010606925934553146, 0.02497604861855507, 0.006734882947057486, 0.02277914620935917, -0.010703040286898613, -0.022120073437690735, -0.005148992873728275, 0.014856561087071896, -0.02350687049329281, -0.033447857946157455, 0.012687118723988533, -0.0012074388796463609, -0.022875260561704636, -0.013483496382832527, 0.00795004516839981, 0.036221448332071304, 0.010263659991323948, -0.005495692137628794, -0.0108746737241745, -0.036523524671792984, 0.0013044115621596575, -0.011925067752599716, -0.014595679007470608, -0.003521911334246397, 0.002346224617213011, 0.019016947597265244, 0.005052878521382809, -0.016215896233916283, 0.05382414162158966, -0.053165070712566376, -0.009467282332479954, 0.031058726832270622, 0.02218872681260109, 0.018261762335896492, 0.005001388490200043, -0.010627522133290768, -0.002323912223801017, 0.008945517241954803, -0.006295502185821533, 0.03613906726241112, -0.007847065106034279, 0.039763957262039185, 0.029960274696350098, 0.030839035287499428, 0.011918202973902225, 0.006443106569349766, 0.01882471889257431, 0.024344438686966896, -0.021351158618927002, -0.02133742719888687, 0.005753141827881336, -0.02177680842578411, 0.014513295143842697, 0.017026003450155258, 0.043031852692365646, -0.01617470383644104, -0.016682738438248634, 0.035809531807899475, 0.0037930915132164955, 0.006607874296605587, 0.014952676370739937, 0.003353710751980543, -0.01049708016216755, 0.0007646254962310195, 0.00932310987263918, 0.010188140906393528, 0.020911777392029762, 0.013044116087257862, 0.002080193255096674, 0.00767543213441968, -0.01912679336965084, -0.05503243952989578, -0.020939238369464874, -0.0053000301122665405, -0.029905352741479874, 0.006796671077609062, 0.02545662224292755, -0.0537966787815094, 0.02456413023173809, -0.02910897508263588, 0.04135671257972717, -0.009460416622459888, 0.0031117082107812166, 0.009721298702061176, 0.032404329627752304], [-0.012006271630525589, 0.001686706906184554, 0.048748679459095, 0.033178046345710754, -0.012636064551770687, -0.0009740020614117384, 0.013198859058320522, 0.007349821273237467, 0.022029364481568336, 0.030739272013306618, -0.02658531628549099, 0.0158788301050663, -0.02765730395913124, -0.027684103697538376, -0.0054972912184894085, 0.03875238448381424, -0.019496791064739227, 0.049097076058387756, -0.01695081777870655, -0.013292658142745495, 0.05676179379224777, 0.01819700561463833, -0.0091253025457263, 0.008374910801649094, -0.029104487970471382, -0.027081109583377838, 0.034786026924848557, 0.027737703174352646, 0.0054168920032680035, -0.03202565759420395, 0.05751218646764755, -0.012374768033623695, 0.025660725310444832, -0.03422323241829872, 0.002901068888604641, -0.0029161437414586544, -0.051428649574518204, 0.04220954701304436, 0.04751589149236679, 0.014780041761696339, -0.011677974835038185, 0.0006473805988207459, -0.03593841567635536, -0.03623321279883385, -0.05046385899186134, 0.07380641251802444, 0.01866600103676319, -0.058262575417757034, -0.029479684308171272, 0.02679971419274807, 0.0015987703809514642, 0.01744661293923855, 0.024360939860343933, -0.03998517245054245, 0.013540554791688919, -0.0029362435452640057, -0.0030183177441358566, 0.011242480017244816, 0.02588852308690548, -0.03698360547423363, 0.0018441552529111505, -0.03165046125650406, -0.0055776904337108135, 0.015651032328605652, 0.019563790410757065, 0.032534852623939514, 0.0072493222542107105, 0.01140997838228941, -0.06742808222770691, 0.051643047481775284, 0.06646329164505005, 0.04194154962897301, 0.05408181995153427, -0.00118421227671206, 0.013111759908497334, -0.039207980036735535, -0.0029898430220782757, 0.008864005096256733, -0.013151959516108036, -0.0019044546643272042, -0.015651032328605652, 0.0009664646349847317, 0.003257840173318982, 0.05030306056141853, 0.020729579031467438, 0.006019885651767254, -0.027362506836652756, 0.03934197872877121, -0.040172770619392395, 0.011081681586802006, -0.018170205876231194, -0.021721167489886284, -0.02076977863907814, 0.01256906520575285, 0.015342836268246174, 0.0023784744553267956, 0.010351389646530151, -0.023650746792554855, -0.004076906479895115, 0.02867569401860237, -0.02169436775147915, -0.00831461139023304, 0.009292800910770893, 0.019617389887571335, 0.07798716425895691, -0.027630504220724106, -0.022350961342453957, 0.032642051577568054, -0.011463576927781105, -0.02094397507607937, -0.040333569049835205, 0.038135990500450134, -0.016495224088430405, 0.04263834282755852, 0.005520740989595652, 0.006726727820932865, -0.08538388460874557, 0.038189589977264404, 0.03352644294500351, 0.014780041761696339, -0.03106086701154709, -0.018599001690745354, -0.015128438360989094, -0.04676549881696701, 0.007490519899874926, -0.027375906705856323, -0.05317063257098198, 0.030712472274899483, -0.03607241436839104, -0.06624889373779297, 0.061478544026613235, 0.006572629790753126, 0.02765730395913124, -0.058691371232271194, -0.017580611631274223, 0.005145545117557049, -0.022511759772896767, 0.012227369472384453, -0.029828080907464027, -0.06657049059867859, 0.020809978246688843, 0.01862580142915249, 0.06314012408256531, 0.05611860007047653, -0.06415851414203644, 0.01566443219780922, 0.01839800365269184, 0.06946485489606857, -0.039743974804878235, -0.024709336459636688, -0.019349392503499985, -0.012414967641234398, -0.0020853527821600437, -0.028648894280195236, 0.009507197886705399, -0.03564361855387688, 0.02178816683590412, 0.05542180687189102, 0.005319742951542139, 0.011744974181056023, -0.01910819485783577, -0.01224076934158802, -0.03733200207352638, -0.012093370780348778, 0.04328153654932976, -0.014002850279211998, -0.08929664641618729, -0.0036112612579017878, -0.06646329164505005, -0.08634867519140244, -0.04019957035779953, -0.0724664255976677, -0.022846756502985954, -0.003231040434911847, 0.004529151599854231, -0.034410830587148666, -0.01234796829521656, -0.03459842875599861, 0.06346172094345093, -0.009399999864399433, 0.0031724160071462393, -0.005802137777209282, -0.05434981733560562, -0.015396435745060444, -0.039958372712135315, 0.024628937244415283, 0.002107127569615841, 0.02110477350652218, 0.0004924447275698185, 0.024079542607069016, 0.032829649746418, 0.008080113679170609, 0.034357231110334396, 0.04111076146364212, -0.03639401122927666, 0.017098216339945793, 0.0025744475424289703, 0.004019957035779953, -0.007966214790940285, -0.02174796722829342, 0.050785455852746964, -0.028488095849752426, 0.07235922664403915, 0.034678827971220016, -0.01636122539639473, -0.04266514256596565, -0.004576051142066717, 0.02287355437874794, 0.026987310498952866, -0.0034236633218824863, -0.0034538130275905132, -0.06437291204929352, -0.047435492277145386, 0.02824689820408821, -0.010880683548748493, -0.0029111187905073166, 0.004837348125874996, 0.017138415947556496, -0.014378046616911888, -0.005969636142253876, 0.0280860997736454, 0.032266855239868164, 0.04521111771464348, -0.014766641892492771, -0.01830420456826687, -0.0073297214694321156, 0.0047033498995006084, -0.03580441698431969, 0.00567818945273757, -0.05590420216321945, 0.004622950684279203, 0.025486527010798454, -0.013379757292568684, -0.059656161814928055, -0.004649750422686338, 0.0016850319225341082, -0.018799999728798866, 0.001178349950350821, -0.039100781083106995, 0.023489948362112045, 0.006395081523805857, 0.0013098359340801835, -0.002505773212760687, 0.032534852623939514, -0.028112899512052536, 0.004147255793213844, -0.026705915108323097, -0.029345685616135597, 0.019255593419075012, 0.031945258378982544, 0.048185884952545166, 0.026357518509030342, -0.005413542035967112, 0.009647896513342857, 0.011316179297864437, -0.040279969573020935, -0.010961082763969898, -0.002195901470258832, 0.021064573898911476, -0.004415252711623907, -0.0010301140137016773, -0.060245756059885025, -0.031784459948539734, 0.01760741136968136, -0.004200855270028114, -0.07278802245855331, -0.013406557030975819, -0.008596007712185383, -0.023610547184944153, 0.008086813613772392, -0.005822237581014633, 0.005875837057828903, 0.039422377943992615, -0.038457587361335754, -0.07552158832550049, -0.0018692800076678395, 0.008053313940763474, -0.015383035875856876, -0.002700071083381772, -0.022136563435196877, -0.0476766899228096, -0.019175194203853607, 0.011061581782996655, -0.034410830587148666, -0.02324875071644783, -0.011095081456005573, -0.0020133284851908684, 0.03977077454328537, -0.017259014770388603, -0.0177548099309206, 0.03202565759420395, -0.033446043729782104, -0.010867283679544926, -0.02394554391503334, 0.03754639998078346, 0.007323021534830332, -0.008756806142628193, -0.059656161814928055, 0.00935980025678873, -0.005802137777209282, 0.019871987402439117, 0.008019814267754555, 0.004559301305562258, 0.02071617916226387, -0.037867993116378784, 0.01361425407230854, 0.01948339119553566, 0.0034236633218824863, -0.01830420456826687, 0.028166498988866806, -0.030873268842697144, 0.007617818657308817, -0.0027921951841562986, -0.012167070060968399, -0.06823206692934036, 0.024387739598751068, 0.006080185063183308, 0.033928435295820236, -0.04194154962897301, 0.0011021381942555308, 0.01857220195233822, 0.012595864944159985, 0.02137277089059353, -0.03358004242181778, 0.04580070823431015, -0.019362792372703552, 0.00530299311503768, 0.013962650671601295, -0.01398945041000843, -0.030632073059678078, -0.024012543261051178, -0.004080256447196007, 0.02856849506497383, -0.018438203260302544, -0.03626001253724098, 0.0073297214694321156, -0.008890804834663868, 0.029935279861092567, 0.017567211762070656, 0.024561937898397446, 0.0224983599036932, -0.05016906186938286, 0.02830049768090248, -0.008106913417577744, -0.016656022518873215, -0.0006272807950153947, 0.010425088927149773, 0.01737961359322071, -0.00415730569511652, 0.051696646958589554, -0.016079828143119812, 0.054644614458084106, -0.04242394492030144, 0.01114198099821806, -0.03513442352414131, -0.014270847663283348, -0.004559301305562258, -0.013225658796727657, -0.038028791546821594, -0.040172770619392395, -0.01609322801232338, 0.01750021241605282, 0.010056592524051666, 0.019657589495182037, 0.007852315902709961, -0.006277832668274641, -0.015182037837803364, 0.028327297419309616, 0.0182908046990633, -0.052286241203546524, 0.010458587668836117, 0.034196432679891586, -0.04212914779782295, -0.011684674769639969, 0.016012828797101974, -0.022364361211657524, -0.0003238996723666787, 0.04228994622826576, 0.008013114333152771, -0.010023092851042747, 0.06287212669849396, 0.024722736328840256, 0.02180156670510769, -0.003204240696504712, 0.06506970524787903, 0.017031216993927956, -0.04089636355638504, -0.029024088755249977, 0.028702493757009506, -0.0003749866154976189, 0.0035040625371038914, 0.004967996850609779, -0.05499301105737686, -0.025687525048851967, 0.0286220945417881, 0.031462863087654114, 0.06678488850593567, 0.048239484429359436, 0.04451432451605797, -0.03545602038502693, 0.0057585882022976875, -0.007443620357662439, 0.000829534896183759, -0.0449967198073864, -0.006039985455572605, 0.007919315248727798, -0.019402991980314255, -0.02813969925045967, 0.009118602611124516, -0.017741410061717033, 0.048829078674316406, -0.014351246878504753, 0.018438203260302544, -0.013895651325583458, -0.010632785968482494, 0.00047653241199441254, 0.006080185063183308, 0.021278971806168556, 0.02292715385556221, 0.016696222126483917, 0.046845898032188416, -0.009493798017501831, -0.0055240909568965435, -0.00280392006970942, -0.048400282859802246, 0.022900354117155075, 0.011778473854064941, -0.031570062041282654, 0.003919458016753197, -0.08490148931741714, -0.04349593445658684, -0.006736777722835541, 0.047113895416259766, 0.013239058665931225, -0.034625228494405746, -0.03593841567635536, 0.054698213934898376, 0.00029395936871878803, -0.008495508693158627, -0.05392102152109146, 0.013627653941512108, -0.029131287708878517, -0.011878972873091698, 0.05354582890868187, 0.009674696251749992, 0.032910048961639404, 0.0036715606693178415, -0.004787098616361618, 0.049525871872901917, 0.016776621341705322, -0.0008546595927327871, 0.048239484429359436, -0.017687810584902763, -0.025325728580355644, -0.028648894280195236, 0.020488381385803223, 0.03585801646113396, -0.026464717462658882, 0.04389793053269386, -0.04960627108812332, 0.054323017597198486, 0.06474810838699341, 0.06217533349990845, 0.019295793026685715, 0.017674410715699196, -0.006894226185977459, -0.03583121672272682, 0.026129720732569695, -0.0017017817590385675, 0.0011456877691671252, 0.00539344223216176, -0.02244476042687893, 0.012575765140354633, 0.04529151692986488, 0.00928610097616911, -0.04443392530083656, -0.015396435745060444, -0.02071617916226387, -0.014619243331253529, 0.0019815037958323956, 0.0038960082456469536, 0.04483592137694359, -0.047167494893074036, -0.016669422388076782, -0.021118173375725746, 0.03789479285478592, 0.03837718814611435, -0.007624518591910601, -0.03320484608411789, 0.003983107395470142, -0.0049646468833088875, -0.01744661293923855, 0.027684103697538376, -0.014927440322935581, -0.023396149277687073, 0.02184176631271839, -0.048025086522102356, -0.012595864944159985, 0.06169293820858002, -0.00544704170897603, 0.057780180126428604, -0.0678032711148262, 0.011363078840076923, -0.01900099590420723, 0.005242693703621626, -0.00844860915094614, 0.017352813854813576, 0.006147184409201145, -0.058798570185899734, 0.026598716154694557, -0.03652800992131233, -0.016763221472501755, 0.02851489558815956, 0.04515751823782921, 0.0025945473462343216, 0.01130277942866087, 0.0005292943096719682, 0.0018458302365615964, -0.02792530134320259, 0.012254169210791588, -0.00875010620802641, 0.00029354062280617654, 0.020247183740139008, 0.008736706338822842, 0.002472273539751768, -0.0013600854435935616, -0.012019671499729156, -0.048829078674316406, -0.00772501714527607, -0.019121594727039337, 0.02856849506497383, -0.014418245293200016, -0.023757945746183395, 0.026920311152935028, 0.00875010620802641, -0.022685958072543144, -0.007972914725542068, -0.01388225145637989, -0.008066713809967041, -0.014512044377624989, 0.003922807984054089, -0.033338844776153564, 0.0031037419103085995, 0.002837419742718339, -0.0007185672875493765, 0.007611118722707033, 0.050946254283189774, 0.022203562781214714, 0.0006243495736271143, 0.015731431543827057, 0.0238383449614048, -0.006586029659956694, 0.013962650671601295, 0.00011986590834567323, 0.006465430837124586, 0.020729579031467438, 0.031570062041282654, -0.0391811802983284, 0.03494682535529137, -0.0006130434339866042, -0.019027795642614365, -0.015235637314617634, 0.012776763178408146, 0.0049914466217160225, -0.02260555885732174, 0.04084276407957077, 0.011657875031232834, 0.00410370621830225, 0.00027218458126299083, 0.003658160800114274, 0.024240341037511826, 0.032588452100753784, 0.022900354117155075, -0.03966357558965683, 0.04472872242331505, 0.01841140352189541, 0.01679002121090889, -0.06238973140716553, 0.019657589495182037, 0.0190545953810215, -0.009487098082900047, 0.032802850008010864, -0.00928610097616911, -0.02147996984422207, -0.030444474890828133, 0.01598602905869484, 0.02244476042687893, -0.03548282012343407, 0.006080185063183308, -0.005942836403846741, -0.006693228613585234, -0.005101995542645454, 0.003681610571220517, 0.04094996303319931, 0.0062945825047791, 0.061478544026613235, -0.008897504769265652, 0.027000710368156433, -0.006783677265048027, 0.04379073157906532, 0.006304632406681776, -0.03510762378573418, -0.024762935936450958, 0.00530299311503768, -0.006522380281239748, 0.0317576602101326, 0.03368724137544632, 0.013600854203104973, 0.011007982306182384, 0.03513442352414131, 0.006478830706328154, 0.01657562330365181, -0.01884019933640957, -0.0007118674111552536, -0.020166784524917603, 0.03580441698431969, -0.04703349620103836, -0.019175194203853607, -0.00331646460108459, 0.004549251403659582, 0.015222237445414066, -0.015302636660635471, 0.014713042415678501, -0.00337676377967, 0.04470192268490791, 0.020273983478546143, 0.010485387407243252, -0.02819329872727394, 0.06592729687690735, 0.00016048422548919916, -0.016012828797101974, 0.01916179433465004, 0.007544119376689196, -0.007028224878013134, -0.004344903398305178, 0.026223519816994667, 0.012669564224779606, -0.018960796296596527, -0.005892586894333363, -0.021024374291300774, 0.05274183675646782, -0.0004468014813028276, 0.030819669365882874, -0.015476834028959274, 0.017419813200831413, -0.009299500845372677, -0.005299643147736788, 0.017848609015345573, 0.015785031020641327, 0.010083392262458801, 0.015945829451084137, 0.033017247915267944, 0.039475977420806885, -0.0348932258784771, 0.022029364481568336, -0.02147996984422207, 0.0012453491799533367, 0.010579186491668224, -0.010317889973521233, 0.012595864944159985, -0.021654168143868446, 0.0070416247472167015, -0.04496992006897926, 0.0026682463940232992, 0.024253740906715393, -0.0030216677114367485, 0.0014237348223105073, 0.01143677718937397, 0.007443620357662439, 0.006368281785398722, -0.0731632187962532, 0.039583176374435425, 0.029533283784985542, 0.019630789756774902, -9.00302838999778e-05, -0.018170205876231194, -0.0048272982239723206, -0.004324803594499826, -0.03701040521264076, 0.0177146103233099, -0.030471274629235268, -0.00011976122186752036, -0.007584318984299898, -0.005266143474727869, 0.004924447275698185, -0.018170205876231194, 0.0069344257935881615, -0.03256165236234665, 0.03832358866930008, -0.00252922298386693, 0.014069849625229836, -0.006254382897168398, 0.02760370448231697, -0.0073297214694321156, 0.01851860247552395, 0.03465202823281288, 0.015208837576210499, 0.012167070060968399, -0.03534882143139839, -0.08007754385471344, 0.01985858753323555, 0.019175194203853607, -0.03944917768239975, -0.057887379080057144, -0.04880227893590927, -0.02265915833413601, 0.014646043069660664, 0.01253556553274393, 0.048561081290245056, -0.03224005550146103, -0.029426084831357002, 0.007952814921736717, -0.023114752024412155, 0.020273983478546143, -0.032856449484825134, 0.023757945746183395, -0.007570919115096331, 0.01841140352189541, -0.008864005096256733, -0.0027921951841562986, -0.011396578513085842, 0.030122878029942513, -0.012200569733977318, 0.013761652633547783, -0.00880370568484068, -0.001099625718779862, -0.012146970257163048, 0.024441339075565338, -0.011584175750613213, 0.029988879337906837, 0.011229080148041248, -0.01743321307003498, 0.014177048578858376, 0.008569207973778248, -0.013620954006910324, -0.012059871107339859, -0.011135281063616276, 0.014391446486115456, -0.03358004242181778, 0.02529892884194851, -0.013547254726290703, -0.03111446648836136, -0.009453598409891129, -0.029452884569764137, 0.024494938552379608, 0.0027469706255942583, -0.027000710368156433, 0.028059300035238266, 0.001857555122114718, 0.0177146103233099, -0.004967996850609779, 0.012167070060968399, 0.007142123766243458, -0.0450771190226078, 0.0502762608230114, 0.016173627227544785, 0.007544119376689196, 0.026089521124958992, -0.018438203260302544, 0.003564361948519945, -0.002870919182896614, 0.037921592593193054, -0.025258729234337807, 0.010203991085290909, 0.013761652633547783, 0.00935980025678873, -0.018438203260302544, -0.010398289188742638, 0.026196720078587532, -0.004770348779857159, -0.0013877226738259196, 0.04250434413552284, 0.04258474335074425, 0.007550819311290979, 0.0029613683000206947, -0.016347825527191162, -0.005674839485436678, -0.034196432679891586, -0.01813000626862049, -0.028059300035238266, 0.06410491466522217, -0.011041481979191303, -0.025365928187966347, -0.006542480085045099, 0.0017888809088617563, -0.011818673461675644, -0.0082074124366045, -0.026116320863366127, 0.00842181034386158, -0.008797005750238895, -0.02259215898811817, -0.011275979690253735, -0.010311190038919449, -0.021707767620682716, -0.033392444252967834, 0.0110012823715806, -0.028809692710638046, -0.0703224465250969, 0.009272701106965542, 0.046845898032188416, 0.0061940839514136314, 0.0007817978621460497, -0.01154397614300251, 0.00928610097616911, 0.05558260530233383, -0.0053632925264537334, -0.048614680767059326, -0.005034996196627617, 0.009600996971130371, -0.03944917768239975, 0.014927440322935581, 0.011309479363262653, -0.0009505523485131562, 0.0042678541503846645, 0.03577761724591255, -0.0008194849942810833, -0.02018018439412117, 0.010096792131662369, 0.009466998279094696, -0.027295507490634918, 0.005822237581014633, 0.013761652633547783, 0.024829935282468796, -0.010398289188742638, 0.007135423831641674, -0.019630789756774902, -0.06699928641319275, 0.01996578648686409, 0.0275501050055027, -0.02319515123963356, 0.021024374291300774, 0.013038060627877712, 0.034571629017591476, 0.010880683548748493, -0.005135495215654373, 0.008240912109613419, -0.013359657488763332, 0.03470562770962715, 0.025044331327080727, 0.031784459948539734, 0.03537562116980553, -0.013976050540804863, 0.00712872389703989, 0.005802137777209282, -0.0010510513093322515, -0.00415730569511652, 0.0019848537631332874, -0.00045768884592689574, 0.0015887204790487885, 0.01027769036591053, -0.012334568426012993, -0.014016250148415565, -0.02469593659043312, -0.01969778910279274, 0.01409664936363697, -0.048132285475730896, 0.02044818177819252, 0.01213357038795948, -0.018920596688985825, -0.008321311324834824, 0.024334140121936798, -5.836265700054355e-05, 0.01980498805642128, -0.032588452100753784, 0.008328011259436607, 0.019067995250225067, 0.02001938596367836, -0.0025978973135352135, 0.005818887613713741, 0.033446043729782104, 0.03256165236234665, -0.007403420750051737, 0.030685672536492348, 0.01159757561981678, -0.024360939860343933, -0.0119191724807024, -0.017460012808442116, 0.04322793707251549, -0.014994439668953419, 0.017460012808442116, 0.03106086701154709, 0.011778473854064941, 0.029908480122685432, -0.00039487701724283397, 0.0005456254002638161, -0.013239058665931225, 0.020488381385803223, 0.04030676931142807, 0.01657562330365181, 0.007443620357662439, 0.010726585052907467, 0.023007553070783615, -0.014780041761696339, 0.02114497311413288, 0.012200569733977318, 0.006941125728189945, -0.03617961332201958, -0.003772059688344598, -0.0070416247472167015, -0.0038926582783460617, -0.03277605026960373, -0.015892229974269867, -0.008904204703867435, -0.014873840846121311, -0.014471844770014286, 0.0031037419103085995, 0.018920596688985825, -0.024119742214679718, -0.0060835350304841995, 0.02094397507607937, 0.0556362047791481, -0.00880370568484068, 0.02221696265041828, -0.016803421080112457, 0.017151815816760063, 0.003261190140619874, -0.009935993701219559, 0.0010033142752945423, -3.164145891787484e-05, -0.0030015679076313972, 0.060245756059885025, -0.020206984132528305, 0.01754041202366352, -0.008080113679170609, -0.023744545876979828, -0.008341411128640175, 0.005202494561672211, 0.010378189384937286, 0.007209122646600008, -0.029131287708878517, -0.010619386099278927, 0.0128370625898242, -0.004251104313880205, 0.021868566051125526, -0.033338844776153564, 0.058798570185899734, -0.009453598409891129, 0.001212686998769641, 0.017728010192513466, 0.001263774000108242, 0.0063448320142924786, 0.045934706926345825, 0.004110406152904034, -0.023101352155208588, -0.01636122539639473, -0.03138246387243271, 0.004756948910653591, 0.014244047924876213, 0.0033650388941168785, -0.005001496523618698, 0.01684362068772316, -0.008636207319796085, -0.0275501050055027, -0.015704631805419922, -0.0262101199477911, 0.018960796296596527, 0.01646842435002327, 0.023985743522644043, 0.03454482927918434, 0.019443191587924957, 0.03698360547423363, 0.040440768003463745, 0.01750021241605282, -0.026143120601773262, 0.008957804180681705, 0.001208499539643526, 0.013399857096374035, 0.0072493222542107105, -0.04478232190012932, 0.011182180605828762, -0.0020602280274033546, 0.014686242677271366, 0.08088153600692749, 0.031945258378982544, -0.029265286400914192, 0.009004703722894192, -0.012421666644513607, 0.00815381295979023, -0.0016682822024449706, 0.028541695326566696, -0.008730006404221058, 0.002927868627011776, 0.025097930803894997, 0.00103932642377913, -0.03224005550146103, 0.029506484046578407, -0.004488951992243528, 0.029104487970471382, 0.061371345072984695, -0.001770456088706851, 0.02378474548459053, 0.009272701106965542, -0.0003274589835200459, 0.0103312898427248, -0.027148108929395676, 0.011476976796984673, 0.02856849506497383, -0.02228396199643612, -0.008649607188999653, 0.018424803391098976, 0.007289521861821413, -0.019242193549871445, 0.015208837576210499, 0.025258729234337807, 0.0027218458708375692, 0.006204133853316307, 0.04569351300597191, -0.011577475816011429, 0.020166784524917603, -0.010438487865030766, -0.029881680384278297, -0.05654739588499069, -0.013091660104691982, -0.027081109583377838, -0.016213826835155487, -0.010612686164677143, 0.01409664936363697, -0.051911044865846634, -0.009788595139980316, 0.0029998929239809513, -0.005011546425521374, 0.01985858753323555, 0.014753242023289204, 0.028970489278435707, 0.023342549800872803, 0.02878289297223091, -0.023757945746183395, -0.025057731196284294, 0.039368778467178345, -0.020649179816246033, 0.029479684308171272, 0.022310761734843254, 0.010264290496706963, 0.02512473054230213, 0.011872272938489914, 0.005815537646412849, -0.0104652876034379, -0.010083392262458801, -0.017285814508795738, 0.003989807330071926, -0.039368778467178345, 0.0009086777572520077, -0.05740498751401901, 0.007550819311290979, 0.010686385445296764, 0.013413256034255028, 0.011785173788666725, 0.020247183740139008, 0.009540697559714317, 0.016910618171095848, -0.002757020527496934, 0.03816279023885727, -0.019081395119428635, 0.007517319638282061, 0.027737703174352646, 0.01614682748913765, 0.0023499999660998583, 0.005369992461055517, 0.008991303853690624, -0.0029429434798657894, 0.020260583609342575, -0.018826799467206, 0.006894226185977459, -0.01780840940773487, 0.005875837057828903, -0.009828794747591019, -0.020139984786510468, -0.005034996196627617, 0.029345685616135597, -0.02615652047097683, -0.008763506077229977, 0.007115324027836323, 0.02210976369678974, 0.009111902676522732, 0.0019513540901243687, -0.020367782562971115, -0.006297932472079992, -0.009487098082900047, -0.009594297036528587, 0.009748395532369614, -0.019670989364385605, 0.0022595508489757776, 0.0062108333222568035, 0.03626001253724098, -0.022685958072543144, 8.039914246182889e-05, -0.0023784744553267956, -0.008562508039176464, -0.03733200207352638, 0.020649179816246033, -0.030792871490120888, 0.012709763832390308, 0.011376478709280491, 0.033017247915267944, -0.0009924268815666437, -0.015302636660635471, 0.007738417014479637, -0.0035476121120154858, 0.03749280050396919, -0.0017637561541050673, 0.018156806007027626, -5.715876250178553e-05, 0.020113185048103333, -0.016615822911262512, 0.0190545953810215, -0.034678827971220016, 0.02018018439412117, 0.022243762388825417, -0.00631133234128356, -0.0036380609963089228, -0.0005154757527634501, 0.01242836657911539, -0.011691374704241753, -0.03261525183916092, -0.001911154598928988, -0.011992871761322021, 0.011624375358223915, 0.027081109583377838, 0.030230076983571053, 0.0007240109844133258, 0.015128438360989094, 0.01776820980012417, -0.0187865998595953, 0.011208980344235897, -0.014284247532486916, 0.008488808758556843, 0.0007152173202484846, 0.02244476042687893, 0.001882679876871407, -0.028112899512052536, -0.0036983604077249765, -0.06501610577106476, -0.007155523635447025, 0.002145651960745454, -0.003030042629688978, -0.023275550454854965, -0.015892229974269867, -0.012816962786018848, -0.011932572349905968, 0.02158716879785061, -0.010860583744943142, 0.030283676460385323, 0.0018609050894156098, 0.011497076600790024, 0.02819329872727394, -0.011952672153711319, 0.005219243932515383, 0.07975594699382782, 0.00021858516265638173, 0.023020952939987183, 0.05279543623328209, 0.03148966282606125, -0.008361510932445526, 0.00625773286446929, 0.04194154962897301, -0.002698396099731326, -0.020166784524917603, -0.05024946108460426, 0.030149677768349648, 0.05735138803720474, 0.012763363309204578, -0.016495224088430405, 0.012696363963186741, 0.0016272451030090451, 0.033446043729782104, 0.021225372329354286, 0.0037586598191410303, 0.004301353823393583, -0.03944917768239975, 0.0021741266828030348, 0.013607554137706757, -0.014579043723642826, -0.01705801673233509, 0.030390875414013863, -0.007450320292264223, -0.015316036529839039, -0.0027184959035366774, -0.016173627227544785, 0.006843976676464081, -0.013681253418326378, 0.022096363827586174, -0.04309393838047981, -0.00914540234953165, -0.0022562008816748857, 0.004984746687114239, 0.019469991326332092, 0.012448466382920742, -0.024655736982822418, 0.013527154922485352, -0.031248465180397034, -0.026129720732569695, -0.00011075819202233106, 0.024200141429901123, 0.00702152494341135, -0.00022067889221943915, 0.003061867319047451, -0.010264290496706963, -0.026357518509030342, -0.020086385309696198, -0.028488095849752426, -0.021989164873957634, -0.010585886426270008, -0.01234796829521656, 0.015637632459402084, -0.0003984363575000316, -0.009165502153337002, -0.013084960170090199, 0.019778188318014145, 0.03256165236234665, -0.039261579513549805, -0.010431788861751556, 0.00601318571716547, -0.009480398148298264, 0.015007839538156986, -0.012723163701593876, -0.020139984786510468, 0.016816820949316025, -0.034196432679891586, -0.0339016355574131, 0.008743406273424625, 0.02314155176281929, -0.004127155989408493, 0.033446043729782104, -0.02679971419274807, 0.015128438360989094, -0.015852030366659164, -0.008776905946433544, -0.0011607626220211387, -0.025647325441241264, -0.01110848132520914, 0.038296788930892944, -0.03714440390467644, -0.038189589977264404, 0.0057853879407048225, 0.012280968949198723, -0.016160227358341217, 0.03891318291425705, 0.004488951992243528, -0.03540242090821266, 0.023865144699811935, 0.012200569733977318, 0.007644618395715952, -0.009165502153337002, 0.009413399733603, -0.04456792399287224, -0.015758231282234192, -0.015865430235862732, -0.00473684910684824, -0.00505844596773386, 0.005034996196627617, 0.006452030967921019, -0.004529151599854231, 0.00968809612095356, -0.020461581647396088, 0.01684362068772316, -0.0015552208060398698, 0.020434781908988953, 0.013245758600533009, -0.024829935282468796, 0.018424803391098976, -0.029452884569764137, -0.02340954914689064, 0.003428688272833824, -0.022096363827586174, -0.038403987884521484, -0.009554097428917885, -0.007530719507485628, 0.009862294420599937, -0.0062644327990710735, -0.007812116295099258, 0.0039529576897621155, -2.644639607751742e-05, 0.04175395146012306, 0.018706200644373894, 0.02722850814461708, -0.016321025788784027, 0.024307340383529663, 0.051160652190446854, 0.015905629843473434, 0.012763363309204578, 0.04448752477765083, 0.010069992393255234, 0.02216336317360401, 0.007604418788105249, 0.0014237348223105073, 0.04041396826505661, -0.019630789756774902, -0.003236065385863185, 0.014123449102044106, -0.010183891281485558, -0.007001425139605999, 0.003715110244229436, 0.001099625718779862, -0.012770063243806362, -0.013634353876113892, -0.01240156777203083, -0.015624232590198517, 0.02497733198106289, 0.015061439014971256, -0.00530299311503768, 0.007309621665626764, -0.012776763178408146, -0.008488808758556843, 0.01975138857960701, -0.0019597290083765984, -0.019335992634296417, -0.029774481430649757, 0.011296079494059086, 0.010853883810341358, -0.01787540875375271, -0.015141838230192661, 0.00544704170897603, -0.00990249402821064, -0.020046185702085495, 0.033124446868896484, -0.021399570629000664, 0.030176477506756783, -0.03784119337797165, -0.02846129611134529, 0.007845615968108177, 0.039958372712135315, -0.016589023172855377, 0.012274269014596939, 0.033660441637039185, -0.010324589908123016, -0.049525871872901917, -0.0058389874175190926, -0.019952386617660522, -0.03540242090821266, -0.0072761219926178455, -0.006837276741862297, -0.018759800121188164, -0.01143677718937397, -0.0014086599694564939, -0.01011689193546772, 0.03789479285478592, -0.008475408889353275, -0.006421881262212992, -0.03240085393190384, 0.004475552123039961, -0.023396149277687073, 0.03240085393190384, -0.01614682748913765, -0.02519172988831997, -2.5360275685670786e-05, -0.0006113684503361583, 0.0034940126352012157, 0.03784119337797165, -0.005591090302914381, -0.009185601957142353, -0.010967782698571682, -0.0005728438845835626, -0.02492373250424862, -0.003514112439006567, 0.007416820619255304, 0.018009407445788383, -0.015155238099396229, 0.021721167489886284, 0.0158788301050663, 0.04432672634720802, 0.002103777602314949, -0.013131859712302685, 0.003922807984054089, -0.01679002121090889, 0.017098216339945793, -0.008730006404221058, -0.0444607250392437, -0.0028792941011488438, -0.008622807450592518, 0.026183320209383965, 0.004813898354768753, 0.005353242624551058, 0.016615822911262512, 0.023489948362112045, 0.02194896526634693, -0.0028826440684497356, -0.01980498805642128, 0.021238772198557854, -0.0022612258326262236, -0.009875694289803505, 0.023275550454854965, 0.006887526251375675, 0.008837205357849598, -0.05059785768389702, 0.014780041761696339, -0.013493655249476433, -0.016481824219226837, 0.0201265849173069, -0.0024873483926057816, 0.015570633113384247, -0.000309034192468971, -0.006023235619068146, -0.010230790823698044, 0.015356236137449741, -0.0482126846909523, 0.006488880608230829, -0.030149677768349648, 0.014391446486115456, -0.0001505390100646764, 0.0036983604077249765, 0.006609479431062937, 0.026933711022138596, -0.01819700561463833, -0.02701411023736, -0.028059300035238266, -0.017138415947556496, 0.0005142195150256157, 0.008381610736250877, -0.0280860997736454, 0.016441624611616135, -0.009111902676522732, 0.004137205891311169, 0.0365816093981266, -0.008234212175011635, -0.028273697942495346, -0.052018243819475174, 0.025848323479294777, -0.0039797574281692505, -0.009132002480328083, -0.0006553367129527032, -0.03559001907706261, 0.0007411795668303967, 0.030632073059678078, 0.02840769663453102, -0.01845160312950611, 0.016857020556926727, 0.024762935936450958, -0.015048039145767689, 0.029104487970471382, -0.0050450460985302925, -0.01835780404508114, -0.0006666428525932133, 0.0052527436055243015, -0.033392444252967834, 0.013500355184078217, 0.03891318291425705, 0.0110012823715806, 0.03762679919600487, 0.002581147477030754, -0.024293940514326096, -0.02239116095006466, 0.02099757455289364, 0.033553242683410645, -0.013359657488763332, 0.026504917070269585, -0.0030802921392023563, -0.01668282225728035, -0.015584032982587814, 0.0019212045008316636, 0.010438487865030766, -0.02562052570283413, 0.02378474548459053, -0.0006105309585109353, -0.0027201708871871233, 0.03368724137544632, -0.0012595865409821272, -0.012749963440001011, -0.022793157026171684, 0.0010485388338565826, -0.022806556895375252, -0.014525444246828556, -0.002617996884509921, -0.016428224742412567, 0.005011546425521374, -0.0027218458708375692, 0.02119857259094715, 0.039583176374435425, 0.014954240061342716, -0.01807640679180622, 0.00826101191341877, -0.03438403084874153, 0.04381753131747246, -0.04258474335074425, -0.00799301452934742, -0.011771773919463158, -0.031302064657211304, 0.000986564438790083, 0.020836777985095978, -0.005728438496589661, 0.019845187664031982, -0.04633670300245285, -0.01625402644276619, -0.002673271344974637, 0.049257874488830566, 0.01867940090596676, 0.007879115641117096, -0.025097930803894997, 0.02071617916226387, -0.016347825527191162, -0.013460155576467514, 0.025312328711152077, 0.009942693635821342, 0.03138246387243271, 0.022082963958382607, 0.027630504220724106, -0.025580326095223427, 0.020515181124210358, 0.010076692327857018, 0.007624518591910601, -0.04314753785729408, -0.03207925707101822, 0.020260583609342575, -0.02271275781095028, 0.017996007576584816, -0.00935980025678873, 0.03623321279883385, -0.012803562916815281, -0.012542265467345715, 0.03245445340871811, -0.015048039145767689, -0.0027117959689348936, 0.02835409715771675, 0.016883820295333862, -0.008783605881035328, -0.018478402867913246, -0.0071756234392523766, 0.017419813200831413, 0.008428510278463364, -0.001546008512377739, -0.011443477123975754, 0.023369349539279938, 0.018866999074816704, -0.015074838884174824, -0.017299214377999306, 0.0022076263558119535, -0.0038926582783460617, -0.00860940758138895, 0.028112899512052536, -0.058155376464128494, 0.0243743397295475, -0.014418245293200016, 0.029962079599499702, 6.019466673023999e-05, -0.029533283784985542, -0.005778688006103039, 0.025861723348498344], [0.021131198853254318, 0.03397246450185776, 0.011913390830159187, 0.02324431762099266, -0.0031764525920152664, 0.0471930094063282, -0.046407364308834076, 0.027023551985621452, -0.005353914108127356, 0.051012881100177765, 0.01854398101568222, -0.0013698028633370996, -0.011764388531446457, 0.023637142032384872, 0.007599104195833206, 0.04169347882270813, 0.002585523994639516, 0.04619063436985016, 0.007714242208749056, 0.030802786350250244, 0.09232708066701889, 0.01848979853093624, 0.015144025906920433, 0.0219303909689188, -0.06247249245643616, -0.05361364409327507, 0.023623596876859665, 0.016539227217435837, 0.036708682775497437, -0.08224912732839584, 0.065885990858078, -0.017406146973371506, -0.010491098277270794, -0.015929672867059708, 0.011886299587786198, -0.008181566372513771, -0.011893072165548801, 0.007964836433529854, 0.03578758239746094, 0.049604132771492004, 0.013809779658913612, -0.010802648030221462, 0.002798867877572775, 0.03546248748898506, -0.04976668208837509, 0.04846629872918129, 0.025709625333547592, -0.03340354934334755, -0.004436197225004435, 0.035895947366952896, 0.053288549184799194, 0.04670536518096924, -0.0036573228426277637, -0.022499307990074158, 0.04101619869470596, 0.033891189843416214, 0.006769433617591858, 0.023230772465467453, 0.018571073189377785, -0.0007877636235207319, -0.025086525827646255, -0.03768397122621536, -0.026468180119991302, 0.021862663328647614, 0.016308950260281563, -0.009258445352315903, -0.02961076982319355, 0.018218886107206345, -0.015997400507330894, -0.021618841215968132, 0.025249073281884193, 0.03427046909928322, 0.00591267179697752, -0.041612207889556885, 0.006498520728200674, -0.026413997635245323, -0.007050505839288235, 0.030206777155399323, -0.002279053907841444, -0.01223171316087246, -0.053180184215307236, 0.02592635527253151, 0.006004104856401682, 0.020846739411354065, -0.005563871469348669, 0.008953668177127838, -0.05721678212285042, 0.003823256818577647, -0.03890307992696762, -0.04031182453036308, -0.03334936499595642, 0.006373223848640919, -0.03435174375772476, 0.05867971107363701, 0.053044725209474564, 0.0019437993178144097, 0.00399257754907012, 0.018218886107206345, -0.013024132698774338, 0.014778293669223785, -0.005574030801653862, -0.02920440025627613, 0.007849698886275291, -0.01869298331439495, 0.07666832208633423, -0.01874716579914093, -0.017704151570796967, 0.05377618968486786, -0.007003095932304859, -0.011500248685479164, -0.04001381993293762, -0.046407364308834076, 0.030586054548621178, 0.08799247443675995, -0.02527616359293461, -0.013071542605757713, -0.008973986841738224, -0.011073560453951359, 0.04735555872321129, 0.025885717943310738, -0.04264167323708534, -0.02860839106142521, 0.02996295504271984, -0.07628904283046722, -0.014304195530712605, -0.021198926493525505, 0.01939735747873783, 0.0013757291017100215, -0.027904018759727478, 0.0006053207907825708, 0.02673909440636635, -0.025438712909817696, 0.0664278194308281, -0.042722947895526886, -0.024233149364590645, 0.01372173335403204, 0.014250013045966625, -0.020291369408369064, -0.0008863928378559649, -0.05976336449384689, 0.020494554191827774, 0.04648863524198532, 0.034839387983083725, 0.022661855444312096, -0.03857798129320145, 0.002627854235470295, 0.03779233619570732, 0.03527284786105156, 0.029285673052072525, -0.00866920966655016, -0.006955686025321484, -0.006004104856401682, -0.01884198561310768, -0.00998313631862402, 0.015496212057769299, -0.028066566213965416, 0.028256205841898918, 0.0828993171453476, 0.011737297289073467, -0.003633617889136076, -0.02440924383699894, -0.04567589983344078, -0.02396223694086075, -0.005191366653889418, 0.008926576934754848, -0.0016161642270162702, -0.03990545496344566, 0.04518825560808182, -0.05423674359917641, -0.026712002232670784, -0.026969369500875473, -0.05220489576458931, -0.030342234298586845, 0.050660692155361176, -0.00818833988159895, -0.027822744101285934, 0.010497870855033398, -0.06361032277345657, 0.028933487832546234, -0.0011437599314376712, 0.0012318067019805312, -0.018733620643615723, -0.11670923233032227, -0.05076906085014343, -0.03876762092113495, 0.03914690017700195, 0.0181376114487648, 0.02052164450287819, -0.02016945742070675, -0.004287194926291704, 9.100976603804156e-05, 0.04556753486394882, -0.012096256949007511, 0.03380991891026497, -0.029827499762177467, 0.008249294944107533, -0.014520926401019096, -0.011439292691648006, 0.016132857650518417, -0.018787803128361702, 0.0307215116918087, -0.04526953026652336, 0.06241830810904503, 0.02092801406979561, -0.0307215116918087, -0.04502570629119873, -0.007856471464037895, 0.03199480101466179, -0.004212694242596626, -0.06951622664928436, -0.024923978373408318, -0.04169347882270813, -0.029637860134243965, 0.0570000521838665, 0.00823574885725975, 0.001472241710871458, -0.04513407126069069, 0.012651627883315086, 0.03597721830010414, 0.028256205841898918, -0.038334161043167114, 0.0069760046899318695, -0.011276745237410069, -0.013159588910639286, -0.027578923851251602, 0.04101619869470596, 0.016755957156419754, -0.04860175773501396, -0.01752805896103382, -0.052882179617881775, 0.015834853053092957, 0.01131738256663084, -0.035299938172101974, -0.0214698389172554, 0.016661137342453003, -0.023122407495975494, 0.02167302370071411, -0.02966495230793953, 0.014006191864609718, 0.01708105206489563, 0.02222839556634426, -0.00020688849326688796, 0.017663514241576195, -0.0015306572895497084, 0.009556449018418789, -0.002966495230793953, -0.023081770166754723, -0.05353236943483353, 0.024070601910352707, 0.06100956350564957, 0.02157820388674736, -0.0029377106111496687, 0.028418753296136856, -0.01678304746747017, -0.029881682246923447, -0.005844943691045046, -0.0305318720638752, -0.05068778619170189, 0.013809779658913612, -0.019370265305042267, -0.013383092358708382, -0.014575108885765076, -0.00769392354413867, -0.007991927675902843, -0.08945540338754654, -0.016945594921708107, 0.00410432880744338, -0.03622104227542877, -0.009895090013742447, 0.0070640514604747295, -0.020751921460032463, 0.0418289378285408, 0.025032343342900276, -0.013356001116335392, -0.021808480843901634, -0.0027480716817080975, 0.010924559086561203, -0.034189194440841675, 0.01830015890300274, -0.02879803068935871, -0.002819186309352517, 0.037765245884656906, 0.012665173038840294, -0.02672554738819599, 0.006007491145282984, 0.04223530739545822, -0.0033322274684906006, -0.004568267147988081, -0.02333913743495941, -0.009522585198283195, 0.04448388144373894, 0.00525570847094059, -0.018015701323747635, -0.012136893346905708, 0.04218112304806709, 0.028391661122441292, -0.025072980672121048, -0.025899263098835945, -0.023461049422621727, -0.02915021777153015, 0.009922181256115437, 0.02971913479268551, 0.027551831677556038, 0.01667468249797821, -0.023718416690826416, 0.028581300750374794, -0.024842703714966774, -0.004087396897375584, -0.02694227732717991, -0.006942140404134989, -0.01280740275979042, 0.045702990144491196, -0.06756564974784851, -0.0583004355430603, -0.01369464211165905, -0.01001022756099701, -0.030125504359602928, 0.006166652776300907, 0.013836870901286602, 0.003079939866438508, -0.0003936701687052846, -0.027023551985621452, 0.04971249774098396, -0.02031845971941948, 0.004591972101479769, -0.02021009474992752, 0.0039011442568153143, 0.026766184717416763, -0.03622104227542877, -0.05122961103916168, -0.029339855536818504, 0.019424447789788246, 0.036004312336444855, 0.0011801639338955283, 0.029746225103735924, 0.024436334148049355, -0.005120251793414354, 0.043481506407260895, 0.006322427652776241, 0.03925526514649391, 0.027822744101285934, -0.0006175965536385775, 0.008405069820582867, -0.0013884281506761909, -0.07000386714935303, 0.022418035194277763, 0.009773178957402706, 0.03213026002049446, -0.01941090263426304, 0.03278044983744621, -0.015076297335326672, -0.003538798540830612, -0.021822025999426842, 0.01515757106244564, -0.05472438409924507, 0.006847321055829525, -0.021253108978271484, 0.005130411125719547, -0.04109747335314751, 0.006444338243454695, 0.008994304575026035, 0.02228257805109024, -0.005865262355655432, 0.027429921552538872, 0.012678719125688076, -0.0009456549887545407, -0.03492065891623497, 0.012516171671450138, 0.008242522366344929, -0.024680156260728836, -0.008628572337329388, 0.05857134610414505, 0.008499888703227043, 0.0067999111488461494, -0.009407446719706059, -0.022255485877394676, -0.00778197031468153, -0.00038435752503573895, 0.014561562798917294, 0.015076297335326672, 0.036762867122888565, 0.032726265490055084, 0.021198926493525505, -0.00565869128331542, 0.019167080521583557, 0.0190587155520916, -0.05629568174481392, 0.0016330962534993887, -0.02335268259048462, 0.014019737020134926, -0.025939900428056717, -0.0041788299567997456, -0.02931276522576809, 0.025032343342900276, -0.03348482400178909, 0.048439208418130875, 0.04191020876169205, 0.024490516632795334, 0.05840880051255226, 0.021334383636713028, 5.883887570234947e-05, -0.04334604740142822, 0.02622435986995697, 0.011120970360934734, -0.03464974835515022, -0.01793442666530609, -0.035652123391628265, -0.03356609493494034, -0.014141648076474667, 0.019085807725787163, 0.028174931183457375, -0.010315004736185074, 0.05431801825761795, -0.012624536640942097, 0.022526400163769722, -0.04115165397524834, -0.033728644251823425, 0.03865925595164299, -0.026007628068327904, -0.042668767273426056, 0.014832476153969765, 0.008628572337329388, -0.01611931249499321, -0.040664009749889374, -0.05006468668580055, 0.03684414178133011, 6.68815991957672e-05, -0.02222839556634426, -0.025912810117006302, -0.081057108938694, -0.010971968062222004, 0.02002045512199402, 0.03765688091516495, 0.019817272201180458, -0.02329850010573864, -0.02764665149152279, 0.04805992916226387, 0.002717594150453806, -0.015401393175125122, -0.04881848767399788, 0.01632249541580677, -0.0192483551800251, 0.023284954950213432, 0.0171216893941164, 0.01773124374449253, 0.020697737112641335, 0.025357438251376152, 0.020237186923623085, -0.017514511942863464, 0.0009448084165342152, -0.0037487559020519257, 0.030125504359602928, -0.0699496865272522, -0.020237186923623085, -0.034947752952575684, 0.01667468249797821, 0.015848398208618164, -0.06382705271244049, 0.009840907528996468, -0.01129029132425785, 0.011527339927852154, 0.07834798097610474, 0.060305189341306686, 0.04816829785704613, 0.019871454685926437, 0.0028378115966916084, -0.04597390070557594, -0.01071460172533989, -0.02087383158504963, -0.04635317996144295, 0.007185962051153183, -0.028770940378308296, -0.030152594670653343, -0.026251450181007385, 0.02278376743197441, -0.01351854857057333, -0.01078910194337368, -0.046163540333509445, -0.028716756030917168, -0.008743710815906525, 0.011263200081884861, 0.04093492403626442, -0.03137170150876045, -0.025100070983171463, 0.044348426163196564, 0.03876762092113495, 0.05011886730790138, 0.02546580322086811, -0.04069110378623009, -0.006410473957657814, -0.0351644828915596, -0.004134806804358959, 0.0039316220209002495, -0.015523303300142288, 0.006996322888880968, -0.02764665149152279, -0.048737213015556335, -0.03269917517900467, 0.021090561524033546, 0.014751202426850796, 0.032726265490055084, -0.07292972505092621, 0.03527284786105156, -0.03042350709438324, 0.01880134828388691, 0.012550035491585732, -0.0017541603883728385, -0.010267594829201698, -0.028472935780882835, 0.0028835281264036894, -0.03340354934334755, -0.014642836526036263, 0.042722947895526886, -0.004805315751582384, -0.020183004438877106, -0.015130479820072651, -0.0029360174667090178, -0.007240144535899162, -0.0425604023039341, 0.003281431272625923, -0.006376610137522221, -0.03353900462388992, -0.008960440754890442, 0.022106485441327095, 0.011554431170225143, 0.017622876912355423, -0.0038266433402895927, -0.03841543570160866, -0.01889616809785366, 0.0010633327765390277, -0.005130411125719547, -0.004094169940799475, -0.00826284009963274, 0.022675400599837303, -0.0021842345595359802, 0.009563221596181393, -0.004730814602226019, 0.01708105206489563, -0.0171216893941164, -0.04537789523601532, 0.021239563822746277, 0.0009685132536105812, 0.007213053293526173, 0.01632249541580677, -0.006065060384571552, 0.02966495230793953, 0.01220462191849947, 0.04315640777349472, 0.016891412436962128, 0.02466661110520363, 0.015550394542515278, 0.009861226193606853, 0.004578426480293274, 0.00413142004981637, -0.005932990461587906, 0.005425028968602419, -0.0006747422157786787, -0.03486647829413414, 0.014778293669223785, 0.009387128986418247, 0.0019116284092888236, -0.0027142076287418604, -0.0036979597061872482, -0.0054555064998567104, -5.6616543588461354e-05, 0.04228948801755905, -0.007517830468714237, 0.04310222715139389, -0.021510476246476173, -0.016430862247943878, 0.0018320478266105056, 0.03161552548408508, 0.01960054039955139, -0.03624813258647919, 0.0527467206120491, 0.006928594782948494, 0.010274368338286877, -0.06333941221237183, 0.010179548524320126, 0.006786365527659655, -0.014290650375187397, 0.02202521078288555, -0.027104826644062996, -0.0035828216932713985, -0.027876926586031914, 0.0043481504544615746, 0.0028225728310644627, -0.03066732920706272, -0.0371963270008564, -0.002213018946349621, 0.015834853053092957, -0.01495438627898693, 0.002978347707539797, 0.04754519835114479, 0.00028191864839755, 0.05781279131770134, -0.0059702410362660885, 0.015347209759056568, -0.012841266579926014, 0.015035660937428474, -0.002673570765182376, -0.03551666811108589, -0.0017423079116269946, 0.00992895383387804, -0.0005456352955661714, 0.0036031403578817844, 0.04805992916226387, -0.006769433617591858, 0.030342234298586845, 0.019465085119009018, 0.037115052342414856, 0.040095094591379166, 0.00343043333850801, -0.023840326815843582, -0.026495272293686867, 0.01001022756099701, -0.017771879211068153, -0.022932767868041992, -0.027172554284334183, -0.017365511506795883, 0.0027243669610470533, -0.0074026924557983875, 0.0030155980493873358, -0.01663404516875744, 0.00950226653367281, -0.019492175430059433, 0.0019150148145854473, -0.036817051470279694, 0.03180516138672829, 0.02961076982319355, -0.0384967103600502, 0.0037758471444249153, 0.0010811113752424717, -0.02385387197136879, -0.004409105982631445, 0.014453197829425335, -0.0037047325167804956, -0.00935326423496008, 0.004287194926291704, 0.021822025999426842, 0.031507160514593124, -0.008303477428853512, 0.01288867648690939, -0.018124066293239594, 0.015130479820072651, 0.01587549038231373, 0.01676950231194496, 0.04380660131573677, -0.0030376098584383726, 0.0026329339016228914, 0.005665463861078024, 0.006678000558167696, 0.0035794354043900967, 0.0066475230269134045, 0.02850002609193325, -0.010883921757340431, -0.035760488361120224, 0.026657819747924805, 0.011838889680802822, 0.037467241287231445, -0.035597942769527435, 0.011093879118561745, -0.032021891325712204, 0.01935672014951706, 0.048493392765522, -0.000662466452922672, 0.04017636924982071, -0.013654004782438278, 0.005093160551041365, 0.025506440550088882, -0.030504781752824783, -0.026793276891112328, 0.03836125135421753, -0.05634986236691475, -0.007301100064069033, 0.008174793794751167, 0.0030376098584383726, 0.005980399902909994, -0.03971581533551216, 0.026441089808940887, 0.003538798540830612, -0.021957483142614365, -0.034731023013591766, 0.003802938386797905, -0.005191366653889418, -0.014006191864609718, 0.043183501809835434, -0.007680377922952175, -0.013633687049150467, 0.021591750904917717, -0.0016618807567283511, -0.002202859614044428, -0.009366810321807861, 0.027023551985621452, 0.034080829471349716, 0.050308506935834885, 0.01828661374747753, -0.023420412093400955, -0.046109359711408615, -0.1241864264011383, 0.0017863312968984246, 0.027159009128808975, -0.01662050001323223, -0.046922098845243454, -0.04017636924982071, -0.020589372143149376, -0.002737912582233548, 0.024070601910352707, 0.06783656775951385, -0.008858848363161087, -0.029475312680006027, 0.012536490336060524, -0.05103997141122818, -0.017663514241576195, -0.004409105982631445, 0.013681096024811268, -0.007179189007729292, 0.0030867126770317554, 0.0087911207228899, 0.01250939816236496, -0.01844916120171547, 0.021713661029934883, -0.05336982011795044, -0.0018066497286781669, 0.011127742938697338, -0.01752805896103382, -0.004310899879783392, 0.05169016122817993, -0.011134516447782516, 0.0087911207228899, 0.03662741184234619, -0.002380646299570799, 0.035652123391628265, 0.011283517815172672, 9.825880260905251e-05, 0.0230411347001791, -0.009766406379640102, -0.014913749881088734, -0.034080829471349716, 0.001065872609615326, -0.02663072757422924, -0.027321556583046913, -0.008784347213804722, -0.02607535757124424, 0.01410101167857647, -0.008391523733735085, 0.024395698681473732, 0.019424447789788246, -0.01895035058259964, 0.006454497575759888, -0.008147702552378178, 0.01217753067612648, -0.033891189843416214, -0.02733510173857212, 0.011886299587786198, 0.00479854317381978, 0.018679438158869743, 0.03976999968290329, -0.03543539345264435, -0.03148006647825241, 0.02461242862045765, 0.010626554489135742, 0.0017025176202878356, 0.04112456366419792, -0.006119242869317532, -0.01498147752135992, -0.011405428871512413, 0.003013904904946685, 0.03714214637875557, -0.019925637170672417, 0.008364432491362095, -0.012976722791790962, 0.03733178228139877, 0.016349587589502335, 0.023217227309942245, 0.0027125144843012094, -0.0022147120907902718, -0.003093485487625003, -0.00173722836188972, -0.020684191957116127, 0.008479570969939232, 0.01754160411655903, -0.0362752228975296, -0.025709625333547592, 0.019085807725787163, 0.00881821196526289, -0.024016419425606728, -0.01672886498272419, 0.020589372143149376, -0.02400287427008152, -0.024720793589949608, -0.01240780670195818, -0.014873112551867962, -0.029096035286784172, -0.026508817449212074, -0.017013324424624443, -0.0014883271651342511, -0.05185271054506302, -0.01364045962691307, 0.029881682246923447, 0.007700696587562561, 0.0045377896167337894, -0.05022723227739334, 0.0010582531103864312, 0.08647536486387253, -0.0037826199550181627, -0.0483037531375885, 0.003555730450898409, -0.023406866937875748, 0.0016229370376095176, -0.01553684938699007, 0.031154971569776535, -0.010545280762016773, 0.01137156505137682, -0.027348646894097328, 0.006214062217622995, 0.008682755753397942, 0.013735279440879822, 0.02021009474992752, 0.014561562798917294, 0.00998313631862402, -0.025506440550088882, 0.004815475083887577, -0.016430862247943878, 0.011554431170225143, 0.01939735747873783, -0.0219303909689188, 0.008201885037124157, 0.02501879632472992, -0.022363850846886635, -0.02431442402303219, -0.011764388531446457, 0.033891189843416214, 0.008120611310005188, -0.003057928290218115, 0.0020724828355014324, -0.025154253467917442, -0.004690177738666534, 0.02653590962290764, 0.01541493833065033, 0.027159009128808975, -0.04583844542503357, -0.020751921460032463, -0.05193398520350456, -0.010477552190423012, -0.003361011855304241, -0.003799552097916603, 0.009143306873738766, -0.017500966787338257, 0.025899263098835945, -0.017500966787338257, -0.004216080531477928, -0.017514511942863464, -0.026549454778432846, 0.014927295036613941, -0.016363132745027542, 0.009895090013742447, 0.013803007081151009, 0.028364570811390877, 0.0023484753910452127, 0.001257204683497548, -0.010057637467980385, 0.0026075358036905527, -0.029285673052072525, 0.025506440550088882, 0.007700696587562561, 0.030233869329094887, -0.005008500535041094, 0.035597942769527435, 0.002028459683060646, 0.033376455307006836, -0.03901144489645958, 0.0029004602693021297, -0.007815834134817123, -0.04957704246044159, -0.03860507532954216, -0.028174931183457375, -0.008174793794751167, 0.02860839106142521, -0.0213750209659338, 0.032970089465379715, 0.04489025101065636, 0.008967213332653046, -0.000581615895498544, -0.02724028192460537, 0.005743351299315691, -0.01667468249797821, 0.02866257354617119, 0.030640237033367157, -0.00881821196526289, 0.0016009253449738026, 0.004097556229680777, 0.014764747582376003, 0.004341377876698971, 0.01874716579914093, 0.02996295504271984, -0.029692042618989944, 0.008174793794751167, 0.02253994531929493, 0.0022536558099091053, -0.03066732920706272, -0.008303477428853512, -0.018760710954666138, 0.04291258752346039, -0.026562999933958054, -0.018679438158869743, 0.01536075584590435, -0.00557064451277256, 0.020643554627895355, 0.011154834181070328, 0.03042350709438324, -0.018259523436427116, 0.010030546225607395, 0.0045276302844285965, 0.04979377239942551, 0.0007297713309526443, 0.00038097111973911524, 0.01010504737496376, 0.018178248777985573, -0.009014623239636421, 0.04228948801755905, -0.003664095653221011, 0.00992895383387804, 0.001105662900954485, -0.022959860041737556, 0.009278763085603714, -0.017297782003879547, 0.026671364903450012, 0.003464297391474247, -0.0416392982006073, -0.026034720242023468, 0.012089483439922333, 0.03540830314159393, 0.04900812730193138, -0.014805384911596775, 0.0032407944090664387, 0.00018942731549032032, 0.0036573228426277637, 0.021442748606204987, 0.0007102995296008885, 0.008398297242820263, 0.000874540361110121, 0.022661855444312096, -0.05038978159427643, -0.01051141694188118, -0.02324431762099266, -0.0007191888289526105, 0.003032530192285776, 0.029475312680006027, -0.007978381589055061, 0.0362752228975296, -0.03362027928233147, 0.0003741983091458678, -0.029637860134243965, -0.03562503308057785, -0.002729446394369006, 0.0316426157951355, -0.009874771349132061, 0.039390720427036285, -0.0016220903489738703, 0.014534471556544304, 0.00876402948051691, 0.01587549038231373, -0.04101619869470596, 0.02915021777153015, 0.0213750209659338, 0.0036979597061872482, -0.03380991891026497, -0.040962014347314835, 0.011588294990360737, 0.008933349512517452, -0.017108144238591194, 0.005899126175791025, 0.027416376397013664, 0.004883203189820051, -0.0066305906511843204, 0.026861004531383514, -0.029231490567326546, 0.020995741710066795, -0.0008559151319786906, -0.0223909430205822, 0.006674614269286394, 0.02128020115196705, 0.003653936320915818, 0.006363064516335726, 0.000761095667257905, -0.013295046053826809, 0.023325592279434204, 0.04976668208837509, 0.022770220413804054, 0.021998118609189987, -0.004155125003308058, -0.0010464007500559092, 0.0054453471675515175, 0.008066428825259209, 0.04759937897324562, -0.002460226882249117, -0.015035660937428474, 0.029096035286784172, 0.024788521230220795, 0.01301058754324913, -0.011269972659647465, 0.014913749881088734, 0.03245535492897034, 0.01137156505137682, -0.004361696075648069, 0.010924559086561203, 0.026549454778432846, -0.002412817208096385, -0.03305136039853096, -0.0065391575917601585, -0.001697438070550561, -0.05261126533150673, -0.024585336446762085, -0.03825288638472557, -0.005916058085858822, 0.0007467034156434238, -0.024937523528933525, -0.016159947961568832, 0.0007229985203593969, 0.001826968160457909, 0.017555149272084236, 0.013863963074982166, -0.0026667979545891285, 0.02668491005897522, -0.00029990894836373627, -0.020589372143149376, -0.02244512550532818, 0.018963895738124847, 0.00790388137102127, 0.008533753454685211, 0.01245521567761898, -0.012468761764466763, 0.05093160644173622, 0.007131779566407204, -0.012096256949007511, -0.009319400414824486, -0.033322274684906006, -0.01698623225092888, 0.03077569417655468, -0.014033283106982708, -0.004114488139748573, -0.008181566372513771, 0.05534748360514641, 0.004791770130395889, -0.0014849407598376274, -0.0025652055628597736, -0.011005832813680172, -0.0019082420039922, 0.007077597081661224, -0.008940122090280056, 0.03513738885521889, -0.04502570629119873, 0.002494090935215354, 0.02111765369772911, -0.023271409794688225, -0.023935146629810333, 0.01250939816236496, -0.01830015890300274, 0.028364570811390877, 0.011080333963036537, -0.03730469197034836, -0.013376319780945778, -0.002434828784316778, 0.0054453471675515175, 0.029990047216415405, -0.02855420857667923, 0.008222203701734543, 0.03879471495747566, -0.016918504610657692, 0.006871026009321213, -0.012197849340736866, -0.022120030596852303, 0.013633687049150467, 0.015943218022584915, 0.005932990461587906, -0.023826781660318375, -0.012665173038840294, 0.01576712541282177, -0.008804665878415108, -0.008852075785398483, -0.015306573361158371, -0.0030376098584383726, -0.009312627837061882, -0.01205561961978674, -0.046217724680900574, -0.03259081020951271, 0.00884530320763588, 0.01387073565274477, -0.0011945561273023486, -0.03213026002049446, 0.008276386186480522, 0.028310388326644897, -0.02522198110818863, 0.01114128902554512, 0.007416238076984882, 0.027416376397013664, 0.013139271177351475, 0.014128102920949459, 0.016864322125911713, 0.027429921552538872, 0.010233731009066105, 0.027362192049622536, -0.023488139733672142, 0.041612207889556885, -0.01162215881049633, 0.012089483439922333, -0.0008343267836607993, 0.03416210412979126, 0.017677059397101402, -0.007937745191156864, 0.019085807725787163, 0.009813816286623478, -0.0008982452563941479, 0.025696078315377235, -0.011744069866836071, -0.017947973683476448, -0.013911372050642967, 0.010795875452458858, -0.0008529520127922297, -0.012624536640942097, -0.04521534591913223, -0.017419693991541862, 0.003125656396150589, 0.04345441237092018, -0.016485044732689857, -0.033322274684906006, 0.008601481094956398, 0.03264499083161354, 0.001099736662581563, -0.01157474983483553, -0.04069110378623009, 0.0016788127832114697, 0.006332586519420147, 0.011716978624463081, 0.011134516447782516, -0.0024737725034356117, -0.010850057937204838, -0.012401033192873001, -0.019722452387213707, 0.0033931827638298273, 0.023488139733672142, 0.007517830468714237, 0.012157212011516094, -0.03223862498998642, -0.010768784210085869, 0.018015701323747635, 0.0845789760351181, 0.0223909430205822, 0.01346436608582735, 0.035597942769527435, 0.05407419428229332, -0.02520843595266342, 0.013911372050642967, 0.010464007034897804, 0.016363132745027542, 0.00790388137102127, -0.02067064680159092, 0.005309890955686569, 0.031913526356220245, -0.007870016619563103, -0.006346132606267929, -0.002221484901383519, 0.0008631112286821008, 0.014683473855257034, 0.016755957156419754, 0.01586194522678852, 0.011683114804327488, -0.04098910838365555, 0.00347445672377944, -0.008059656247496605, -0.018381433561444283, -0.013328909873962402, 0.0257231704890728, 0.004740973934531212, 0.0063698370940983295, 0.008608254604041576, -0.0095293577760458, 0.004236398730427027, -0.012766765430569649, 0.012699037790298462, -0.019288990646600723, 0.014683473855257034, 0.030856968834996223, -0.034785203635692596, 0.02002045512199402, 0.015577485784888268, -0.03795488178730011, 0.007558467332273722, -0.0007695616804994643, -0.003911303356289864, -0.00103962782304734, 0.018110521137714386, -0.015035660937428474, -0.03795488178730011, -0.003552344162017107, -0.010342095978558064, 0.0063698370940983295, 0.01280740275979042, -0.04489025101065636, -0.016254767775535583, -0.04963122680783272, -0.01354563981294632, 0.0013892747228965163, -0.0003187458496540785, -0.011784707196056843, -0.015279482118785381, -0.0009549676324240863, 0.03890307992696762, -0.03351191431283951, -0.007423010654747486, -0.004073851276189089, -0.015401393175125122, -0.0018303545657545328, -0.015740033239126205, -0.02561480551958084, -0.02107701636850834, 0.0019607313442975283, -0.013349228538572788, -0.008086747489869595, 0.009177170693874359, -0.0031747594475746155, 0.018665891140699387, -0.010613009333610535, 0.026359815150499344, -0.00962417759001255, 0.019112898036837578, 0.0018134225392714143, -0.019180625677108765, 0.012306214310228825, 0.055808037519454956, -0.0030206777155399323, 0.014412561431527138, 0.01884198561310768, 0.009109443053603172, 0.0004897595499642193, 0.05169016122817993, 0.023284954950213432, -0.0016940516652539372, 0.005401324015110731, 0.019695360213518143, 0.015225299634039402, 0.010206639766693115, -0.016918504610657692, -0.04112456366419792, 0.03689832240343094, -0.005834784358739853, 0.013193453662097454, 0.005993945524096489, -0.0005968547775410116, 0.01185243483632803, -0.01869298331439495, 0.008567617274820805, -0.001398587366566062, -0.030342234298586845, -0.006356291472911835, 0.014629291370511055, -0.008730164729058743, -0.02087383158504963, 0.03548957780003548, -0.012942858971655369, -0.022418035194277763, -0.04093492403626442, -0.023054679855704308, -0.015699397772550583, 0.006698319222778082, 0.004253331106156111, -0.03857798129320145, -0.019383810460567474, 0.01321377232670784, 0.03321390971541405, 0.032915905117988586, 0.0164714977145195, -0.02339331991970539, 0.03112788125872612, -0.0009668200509622693, -0.0006421480211429298, 0.010050864890217781, -0.011744069866836071, -0.009969591163098812, 0.016403770074248314, -0.001759240054525435, -0.0007310412474907935, -0.017148779705166817, 0.00766683230176568, 0.00606167409569025, -0.015130479820072651, 0.0005274333525449038, -0.0007047965773381293, -0.008086747489869595, -0.012191075831651688, -0.010294686071574688, -0.005519848316907883, -0.003691186895594001, 0.013952009379863739, 0.0039214626885950565, -0.01349145732820034, -0.026955824345350266, -0.010524962097406387, -0.008662437088787556, -0.0020386187825351954, 0.018516890704631805, -0.006573021877557039, 0.018124066293239594, 0.01500856876373291, 0.004073851276189089, 0.004531016573309898, -0.019519267603754997, 0.01553684938699007, 0.0038097111973911524, -0.0169320497661829, 0.028418753296136856, -0.019139990210533142, 0.0074839661829173565, 0.018435616046190262, -0.00660688616335392, -0.011818571016192436, -0.02505943365395069, -0.032617900520563126, 0.038523800671100616, 0.02389450930058956, -0.009698678739368916, -0.018679438158869743, 0.02885221317410469, 0.006071832962334156, -0.05640404671430588, -0.027606014162302017, -0.0005219304584898055, -0.010057637467980385, 0.005404710303992033, -0.03914690017700195, -0.0060413554310798645, 0.009691905230283737, -0.010707828216254711, -0.019126443192362785, 0.03914690017700195, 0.01018632110208273, 0.003156134160235524, 0.012333305552601814, 0.003948553930968046, -0.01500856876373291, 0.013593049719929695, -0.0416392982006073, 0.013714960776269436, 0.010226958431303501, 0.007321418263018131, 0.0059600817039608955, 0.028689665719866753, -0.023257864639163017, -0.009509039111435413, -0.0067186374217271805, -0.031507160514593124, -0.04451097175478935, -0.01683722995221615, 0.016810139641165733, 0.004967863671481609, -0.00485272565856576, 0.021767843514680862, 0.0027565378695726395, -0.019492175430059433, 0.03754851594567299, -0.005807693116366863, -0.02333913743495941, -0.022418035194277763, -0.0020911081228405237, 0.00017842148372437805, -0.02879803068935871, 0.005377619061619043, -0.0034135011956095695, 0.032617900520563126, -0.03345772996544838, -0.009258445352315903, 0.008899485692381859, -0.005232003517448902, 0.017040414735674858, -0.00439556036144495, -0.04234367236495018, 0.013322137296199799, -0.006525611970573664, -0.026644274592399597, -0.004893362522125244, -0.008770802058279514, -0.0014476903015747666, -0.0034101149067282677, 0.0207248292863369, -0.004974636249244213, -0.03283463045954704, -0.006037969142198563, 0.022621218115091324, -0.009549676440656185, -0.022472217679023743, -0.0068168435245752335, 0.037927791476249695, 0.007328191306442022, -0.037873610854148865, -0.032157350331544876, -0.014818930067121983, -0.0029055397026240826, 0.004297354258596897, 0.0007213053177110851, -0.016444407403469086, 0.01565876044332981, 0.008879167027771473, 0.007125006522983313, -0.025858627632260323, 0.014548017643392086, 0.005350527819246054, -0.026508817449212074, -0.0213750209659338, 0.010951650328934193, 0.0068777985870838165, 0.03619395196437836, 0.019221263006329536, 0.007897107861936092, -0.028391661122441292, -0.02283794991672039, 0.006244540214538574, 0.006037969142198563, 0.024571791291236877, -0.005171047989279032, 0.006424019578844309, -0.031507160514593124, 0.0219303909689188, -0.0045106983743608, -0.009773178957402706, 0.0011310609988868237, -0.002131745219230652, 0.003779233666136861, 0.010247277095913887, -0.013755597174167633, 0.008222203701734543, 0.00823574885725975, 0.0023535550571978092, -0.03838834539055824, -0.010911012999713421, -0.0049543180502951145, 0.014493835158646107, 0.040528554469347, 0.021307291463017464, 0.01641731522977352, -0.019261900335550308, -0.00990186259150505, 0.05534748360514641, -0.01702686958014965, 0.02035909704864025, 0.014575108885765076, -0.028066566213965416, -0.029773317277431488, 0.010552053339779377, -0.002460226882249117, -0.006705091800540686, -0.01081619318574667, 0.00035620800917968154, -0.02430087886750698, 0.006275017745792866, 0.01662050001323223, -0.030938241630792618, 0.009779952466487885, 0.002629547379910946, -0.009671586565673351, -0.027010006830096245, 0.01702686958014965, -0.003643777221441269, -0.019139990210533142, -0.042777132242918015, 0.012489080429077148, 0.031507160514593124, 0.017880244180560112, 0.019234808161854744, 0.0025448871310800314, -0.06068446859717369, 0.027660196647047997, -0.010477552190423012, -0.0030867126770317554, -0.015347209759056568, -0.001476474804803729, 0.003521866397932172, 0.013979100622236729, -0.00944808404892683, 0.02006109245121479, -0.03364736959338188, 0.004659700207412243, 0.02002045512199402, -0.018923258408904076, 0.0034118080511689186, 0.0023061451502144337, 0.00887239445000887, -0.012136893346905708, -0.01717587187886238, -0.011716978624463081, 0.025398075580596924, 0.004097556229680777, 0.054805658757686615, 0.02272958494722843, 0.04299386218190193, 0.008120611310005188, -0.0007014101720415056, 0.044944435358047485, 0.02683391235768795, -0.012516171671450138, -0.013613368384540081, -0.0012665173271670938, -0.02733510173857212, 0.01960054039955139, 0.005066069308668375, 0.04377950727939606, -0.029583677649497986, -0.024625973775982857, 0.04442970082163811, -0.01407392043620348, 0.010382733307778835, 0.01626831293106079, -0.01995272748172283, -0.029421130195260048, -0.0018066497286781669, -0.002739605726674199, 0.021971028298139572, -0.018178248777985573, 0.004930613096803427, 0.0005519848200492561, 0.0035794354043900967, -0.012448443099856377, -0.05041687190532684, -0.018381433561444283, -0.010518189519643784, -0.031398795545101166, 0.00985445361584425, 0.03806324675679207, -0.04594681039452553, 0.005333595909178257, -0.043427322059869766, 0.010728146880865097, -0.009400674141943455, -0.00020180887077003717, -0.00760587677359581, 0.034135013818740845], [0.01430000364780426, -0.016494760289788246, 0.017176363617181778, -0.013461633585393429, 0.020707059651613235, 0.026309825479984283, -0.05199257656931877, 0.021961206570267677, 0.03348027542233467, -0.00032546481816098094, 5.0534374167909846e-05, 0.017176363617181778, -0.007688466925173998, 0.023201722651720047, -0.034270934760570526, 0.01466806884855032, 4.262673246557824e-05, 0.023760635405778885, 0.00039255997398868203, 0.025682751089334488, 0.042859114706516266, 0.030453963205218315, 0.023828795179724693, -0.05163814499974251, -0.043922413140535355, -0.03740629926323891, 0.04634891450405121, 0.035497818142175674, 0.008908534422516823, -0.03397103026509285, 0.0414959117770195, -0.02371973916888237, -0.004679195582866669, -0.047630324959754944, 0.05171993747353554, 0.016085799783468246, -0.04809381440281868, 0.04667608439922333, 0.04803928732872009, -0.020843379199504852, 0.026377985253930092, -0.011287324130535126, -0.03560687229037285, -0.017476268112659454, -0.07508524507284164, 0.031353678554296494, 0.007463538553565741, -0.08370068669319153, -0.014886180870234966, 0.03571593016386032, 0.01720362715423107, 0.010878362692892551, 0.010939707048237324, -0.06483395397663116, 0.019193904474377632, 0.008315540850162506, -0.010189945809543133, 0.014763493090867996, 0.03178990259766579, -0.0070954738184809685, 0.009794616140425205, -0.03091745264828205, -0.012357438914477825, 0.06281641125679016, 0.007729363162070513, 0.01859409362077713, 0.03577045723795891, 0.00421570660546422, -0.05027494207024574, 0.03637026622891426, 0.044167790561914444, 0.01401373092085123, 0.04182308167219162, -0.03042669966816902, -0.021429557353258133, -0.040459875017404556, -0.014040995389223099, 0.010994235053658485, -0.003275096183642745, -0.011907581239938736, 0.013475265353918076, 0.012882271781563759, 0.006393423769623041, 0.033016785979270935, -0.01260963175445795, -0.01558141503483057, -0.02851821482181549, 0.008206484839320183, -0.04307722672820091, -0.004498571157455444, -0.010776123031973839, 0.006809201091527939, -0.015226981602609158, 0.011743997223675251, 0.06090792641043663, -0.03364386036992073, -0.008976694196462631, -0.038878560066223145, -0.057472653687000275, 0.022520119324326515, 0.0016281760763376951, -0.01916663907468319, -0.04899353161454201, -0.025928128510713577, 0.10867457091808319, 0.0021998693700879812, -0.06614262610673904, 0.04585816338658333, -0.010687514208257198, -0.04471307247877121, -0.08430049568414688, -0.009590135887265205, 0.00984232872724533, 0.0805380567908287, -0.02761850133538246, 0.021347764879465103, -0.06636074185371399, 0.02610534429550171, 0.01833508536219597, 0.01916663907468319, -0.045176561921834946, -0.019889136776328087, 0.0017857964849099517, -0.06336169689893723, 0.010380793362855911, -0.024183228611946106, -0.024905726313591003, -0.039042145013809204, -0.04926617071032524, -0.05041126161813736, 0.07584863901138306, -0.04291364178061485, 0.013550241477787495, -0.07552146911621094, -0.02504204586148262, -0.008049716241657734, -0.020039089024066925, -0.013032224029302597, -0.004372474737465382, -0.05550964176654816, -0.022956345230340958, 0.014763493090867996, 0.024360444396734238, 0.03928752243518829, -0.054010119289159775, -0.028245573863387108, 0.033752914518117905, 0.03514338284730911, -0.031271886080503464, -0.000136852846480906, 0.002908735303208232, -0.05829057842493057, -0.024769404903054237, -0.02331077866256237, -0.029445193707942963, -0.05090201646089554, 0.048311926424503326, 0.05253785848617554, 0.03206254541873932, 0.0013180472888052464, -0.04869362339377403, -0.024564925581216812, -0.02355615422129631, -0.00027626167866401374, 0.019480176270008087, -0.02224748022854328, -0.04738495126366615, 0.025014782324433327, -0.061289623379707336, -0.04787570238113403, -0.02463308535516262, -0.01784433238208294, -0.005292637273669243, 0.037815261632204056, 0.003443792462348938, -0.01148498896509409, -0.02835462987422943, -0.02066616341471672, 0.005326717160642147, -0.02397874742746353, 0.002659950638189912, -0.01260963175445795, -0.06385244429111481, -0.06576093286275864, -0.046648818999528885, 0.05109286308288574, -0.018825838342308998, 0.031108301132917404, 0.007190898060798645, 0.019698288291692734, 0.00806334801018238, -0.016140328720211983, 0.049865979701280594, 0.03795158118009567, -0.015445094555616379, 0.03448904678225517, -0.009249335154891014, -0.0252192635089159, 0.025519168004393578, 0.03230791911482811, 0.016740137711167336, -0.04435863718390465, 0.06112603843212128, 0.022165687754750252, -0.0325532965362072, -0.040868837386369705, -0.016303911805152893, 0.05627303570508957, 0.025641856715083122, -0.01644023321568966, -0.014204579405486584, 0.010162681341171265, -0.006407056003808975, 0.027223171666264534, -0.038060639053583145, 0.010196761228144169, -0.03446178138256073, 0.027168642729520798, 0.0019238208187744021, 0.05142003297805786, -0.036833755671978, -0.011641756631433964, 0.02117054909467697, -0.007906579412519932, 0.022370167076587677, 0.04059619829058647, 0.004045306239277124, -0.035988569259643555, -0.01843051053583622, -0.07835692912340164, 0.000775321910623461, 0.02909076027572155, -0.02701869048178196, -0.017558060586452484, 0.005483485758304596, -0.02554643154144287, -0.02117054909467697, -0.013420737348496914, -0.015595046803355217, -0.03667017072439194, 0.011880317702889442, 0.004338394850492477, 0.024524029344320297, 0.059544723480939865, -0.005425549577921629, -0.014259107410907745, -0.008036083541810513, -0.04081431031227112, 0.021688565611839294, 0.021674934774637222, 0.03999638929963112, 0.025410111993551254, -0.01359113771468401, 0.0066899205558001995, -0.011634941212832928, -0.05420096591114998, 0.014436324127018452, -0.012003005482256413, 0.03083566017448902, -0.024769404903054237, -0.027972932904958725, -0.015744999051094055, -0.041768550872802734, -0.03446178138256073, -0.03906941041350365, -0.03612488880753517, -0.0049382043071091175, 0.006359343882650137, 0.01442269142717123, 0.04299543425440788, 0.0024537660647183657, 0.015976743772625923, 0.025560064241290092, -0.02512383833527565, -0.021511349827051163, 0.01521334983408451, 0.021538613364100456, 0.0004545431293081492, 0.01957560144364834, -0.01604490354657173, 0.010162681341171265, -0.013734274543821812, 0.016753770411014557, -0.02422412484884262, -0.023992380127310753, 0.004075977951288223, -0.031299151480197906, 0.025669120252132416, -0.002009020885452628, 0.01669924147427082, 0.017040042206645012, 0.02370610646903515, 0.008785845711827278, -0.0013955794274806976, 0.05878132954239845, 0.010271737352013588, -0.011941662058234215, -0.05261965095996857, -0.010742043145000935, -0.013263968750834465, -0.010714778676629066, -0.010305817238986492, 0.013768354430794716, 0.012650527060031891, 0.023433465510606766, 0.03181716799736023, 0.031217357143759727, -0.0264461450278759, -0.02378789894282818, -0.023160826414823532, -0.04776664823293686, 0.029063496738672256, -0.049947772175073624, -0.016072167083621025, -0.02511020563542843, -0.007524882908910513, 0.0007902319775894284, 0.020938804373145103, -0.025914495810866356, -0.0077975234016776085, 0.010660250671207905, -0.02009361796081066, 0.044576749205589294, -0.009194807149469852, 0.03964195400476456, -0.009119831025600433, -0.014831652864813805, -0.008908534422516823, -0.05234701186418533, -0.007920212112367153, -0.015540518797934055, -0.028300102800130844, -0.005299453157931566, 0.002659950638189912, 0.0037965213414281607, 0.015567782334983349, 0.013734274543821812, 0.022520119324326515, -0.004409962799400091, 0.012670975178480148, 0.005282413214445114, -0.027414020150899887, -0.0065740481950342655, 0.019466543570160866, -0.060035478323698044, -0.001542123849503696, -0.02125234156847, 0.0030467596370726824, -0.05131097510457039, 0.047739382833242416, -0.01003999263048172, 0.007790707517415285, -0.028872648254036903, 0.020720692351460457, -0.06717866659164429, -0.0037862975150346756, 0.03181716799736023, -0.0013248632894828916, -0.040868837386369705, -0.025819072499871254, 0.005384653341025114, 0.0018471406074240804, -0.02613260969519615, 0.010653434321284294, -0.008042899891734123, 0.00963103212416172, -0.0016545881517231464, 0.05621850863099098, 0.00485300412401557, -0.04539467394351959, -0.010060440748929977, 0.04171402379870415, 0.0013632033951580524, -0.011839421465992928, 0.012425598688423634, -0.012227934785187244, 0.005367613397538662, 0.01934385672211647, 0.005255149211734533, 0.04141411930322647, 0.01702640950679779, 0.016494760289788246, -0.0007408158271573484, -0.0003269558073952794, 0.06123509630560875, 0.026555202901363373, -0.043104492127895355, -0.004536059219390154, 0.009862776845693588, -0.019602864980697632, -0.013679745607078075, -0.02057074010372162, -0.03258056193590164, 0.006277551408857107, 0.007422642316669226, 0.03312584385275841, 0.044740334153175354, 0.055482376366853714, 0.032280657440423965, -0.033180370926856995, 0.01976644992828369, -0.03157179057598114, 0.01549962256103754, -0.027891142293810844, -0.07786617428064346, -0.0031115117017179728, -0.023869691416621208, -0.019970929250121117, -0.010994235053658485, 0.049457017332315445, 0.036970075219869614, -0.01883947104215622, 0.03527970239520073, -0.012296094559133053, 0.03819695860147476, -0.04125053435564041, -0.008308724500238895, 0.01892126351594925, 0.0219748392701149, -0.048230137676000595, 0.05191078409552574, -0.012357438914477825, -0.005548237822949886, -0.029935946688055992, 0.00644795224070549, 0.014436324127018452, 0.010074073448777199, -0.05171993747353554, -0.0017040042439475656, -0.05101107060909271, -0.03361659497022629, -0.012180222198367119, 0.077702596783638, -0.002743446733802557, -0.0017943164566531777, -0.030617548152804375, 0.033589333295822144, 0.005609582178294659, 0.016876457259058952, -0.017748909071087837, 0.05861774459481239, -0.01684919372200966, 0.016549289226531982, 0.03928752243518829, 0.0005465593421831727, -0.00034186584525741637, 0.015881318598985672, 0.01885310374200344, 0.02982689067721367, -0.012091614305973053, 0.01004680898040533, 0.08064711093902588, -0.028818119317293167, -0.010421689599752426, -0.026555202901363373, 0.0016307320911437273, 0.012868640013039112, -0.015090661123394966, 0.018375981599092484, -0.021593142300844193, 0.02066616341471672, 0.04711230844259262, 0.0467851385474205, 0.04108694940805435, 0.004454267211258411, 0.023092664778232574, 0.012255198322236538, -0.013284416869282722, 0.004900716245174408, -0.011335035786032677, -0.00984232872724533, 0.0031370718497782946, -0.0013981354422867298, -0.010448954068124294, 0.018703149631619453, -0.0372154526412487, -0.016740137711167336, -0.001617099973373115, 0.02478303760290146, 0.012718687765300274, -0.019780080765485764, 0.02545100823044777, -0.018130604177713394, -0.00971282459795475, 0.03348027542233467, 0.022915448993444443, 0.033671122044324875, -0.018634989857673645, -0.04378609359264374, -0.009433367289602757, -0.033425748348236084, -0.018716782331466675, 0.020025458186864853, -0.015731366351246834, -0.048802681267261505, -0.010448954068124294, -0.021293237805366516, -0.014136419631540775, 0.05011135712265968, -0.01926206424832344, 0.056327562779188156, -0.040623459964990616, -0.006761488970369101, -0.005439181346446276, 0.01916663907468319, 0.004709867760539055, 0.003189896000549197, -0.052674178034067154, -0.03266235440969467, 0.019275695085525513, -0.02685510739684105, -0.02040715515613556, 0.007995188236236572, 0.005834510549902916, 0.00288317515514791, -0.009896856732666492, -0.02224748022854328, 0.000413860019762069, -0.028463687747716904, 0.01619485579431057, -0.01644023321568966, -0.05709095671772957, 0.01661744900047779, 0.009801432490348816, 0.011232796125113964, 0.00842459686100483, -0.007429458666592836, -0.05785435065627098, -0.036724697798490524, -0.04362250864505768, 0.0005150352953933179, -0.03323489800095558, -0.004553099162876606, -1.027727557811886e-05, -0.0056402538903057575, -0.009808248840272427, 0.009440183639526367, -0.007940659299492836, -0.010891995392739773, -0.01875767856836319, 0.009958201088011265, -0.026377985253930092, 0.01570410281419754, 0.020052721723914146, 0.0044133709743618965, 0.016263015568256378, 0.021879414096474648, 0.0017440483206883073, 0.012916352599859238, -0.038551390171051025, 0.017817068845033646, -0.0031558158807456493, 0.02082974836230278, 0.020843379199504852, 0.0008349620620720088, 0.004873452242463827, 0.028981704264879227, -0.029690569266676903, -0.02933613769710064, 0.0351979099214077, -0.0019527889089658856, -0.03140820562839508, 0.00526878098025918, 0.008983510546386242, -0.015131557360291481, 0.055755019187927246, 0.006781937088817358, -0.0048802681267261505, 0.004972284194082022, 0.041768550872802734, -0.017789803445339203, 0.04765759035944939, 0.0162766482681036, 0.004740539938211441, 0.02785024605691433, 0.012991328723728657, 0.015744999051094055, -0.0691962018609047, 0.0028797672130167484, 0.008479124866425991, -0.003568184794858098, -0.017953388392925262, 0.0023532297927886248, -0.015513254329562187, -0.019234800711274147, 0.03890582546591759, -0.004907532129436731, 0.010176313109695911, -0.05373747646808624, -0.01028537005186081, 0.00516654085367918, -0.009453815408051014, -0.0044713071547448635, 0.01785796508193016, 0.0021555654238909483, 0.014927077107131481, 0.028981704264879227, 0.018948527052998543, -0.017994284629821777, 0.005163132678717375, 0.007715731393545866, -0.03669743612408638, -0.028818119317293167, -0.00164692010730505, -0.014818021096289158, 0.0015259358333423734, 0.020475314930081367, 0.013959202915430069, 0.005118828732520342, 0.04572184011340141, -0.005861774552613497, 0.017489898949861526, 0.025505535304546356, 0.0002630556409712881, -0.03628847375512123, -0.010891995392739773, -0.02157950960099697, -0.013209440745413303, -0.012452863156795502, -0.029063496738672256, -0.005783390253782272, -0.02453766018152237, 0.004539467394351959, 0.015744999051094055, 0.012132510542869568, 0.011832605116069317, 0.009569687768816948, -0.01585405506193638, 0.05180172994732857, 0.014286371879279613, -0.01301177591085434, 0.015117925591766834, 0.03833327814936638, -0.02114328369498253, -0.018989423289895058, 0.006185535341501236, 0.009078934788703918, -0.0001352553372271359, -0.0006492256070487201, 0.005623213946819305, 0.01975281722843647, 0.023842427879571915, 0.04242289066314697, -0.028163781389594078, 0.03746083006262779, 0.019153008237481117, -0.029199816286563873, 0.04206845536828041, 0.022097526118159294, -0.007027313578873873, 0.012193853966891766, -0.0047643957659602165, -0.007783891167491674, -0.006529744248837233, 0.00991730485111475, 0.006536560133099556, 0.004829147830605507, 0.014572644606232643, -0.005490301642566919, 0.01909847930073738, -0.07224977761507034, 0.027509445324540138, -0.02388332411646843, 0.006209391634911299, 0.040705252438783646, 0.008049716241657734, 0.03585224971175194, 0.019207535311579704, -0.00892216619104147, 0.0059878709726035595, -0.03410734981298447, -0.004358842968940735, 0.0277684535831213, -0.0020720690954476595, 0.009412919171154499, 0.02331077866256237, 0.0005405953270383179, 0.007190898060798645, -0.03451630845665932, 0.04321354627609253, -0.041768550872802734, -0.021511349827051163, -0.023842427879571915, -0.012118877843022346, -0.014463587664067745, -0.041768550872802734, 0.004512203391641378, -0.013454817235469818, 0.018076077103614807, 0.0037249531596899033, 0.0034318645484745502, 0.012289278209209442, 0.0032290881499648094, -0.015199718065559864, 0.0020294690039008856, 0.032771408557891846, 0.006751264911144972, -0.01941201649606228, -0.04708504676818848, -0.1208343505859375, -0.021879414096474648, 0.021184179931879044, -0.016317544505000114, -0.03247150406241417, -0.014054627157747746, -0.029118023812770844, 0.006591088604182005, 0.015022501349449158, 0.019071215763688087, -0.04397694021463394, -0.0008272940758615732, -0.02205663174390793, -0.025641856715083122, -0.005081340670585632, 0.03506159037351608, 0.03023585118353367, 0.000980654382146895, -0.01578589528799057, 0.0315445251762867, 0.034352727234363556, -0.020843379199504852, 0.004021449945867062, -0.009528791531920433, 0.027086852118372917, -0.0005934194778092206, 0.006771713029593229, -0.017912492156028748, 0.025028415024280548, -0.01558141503483057, 0.03288046643137932, 0.03530696779489517, -0.008254196494817734, -0.015431462787091732, 0.01933022402226925, -0.03263508901000023, 0.0016409560339525342, -0.001976644853129983, 0.0362066812813282, -0.034270934760570526, -0.01499523688107729, 0.044931184500455856, -0.028218310326337814, 0.023597050458192825, -0.006993233226239681, 0.054909832775592804, -0.02271096780896187, -0.022451959550380707, 0.04825739935040474, -0.014313635416328907, 0.0025713425129652023, -0.004539467394351959, 0.012493759393692017, -0.008656341582536697, -0.02463308535516262, 0.06134415417909622, 0.007177265826612711, 0.014163683168590069, 0.021129652857780457, 0.021538613364100456, -0.02470124512910843, -0.015063397586345673, 0.014040995389223099, -0.003208640031516552, -0.031271886080503464, 0.011416828259825706, -0.012132510542869568, -0.02892717532813549, -0.030644811689853668, 0.01132140401750803, 0.022002102807164192, 0.008983510546386242, 0.010448954068124294, 0.008669973351061344, 0.0014339195331558585, 0.016153959557414055, -0.013829698786139488, -0.0021709015127271414, 0.008445044979453087, -0.009235703386366367, -0.019139375537633896, 0.013856962323188782, -0.011457724496722221, -0.036888282746076584, -0.037978846579790115, -0.00975371990352869, 0.01676740124821663, 0.021061493083834648, -0.006144639104604721, 0.009855960495769978, -0.001721896231174469, -0.03424366936087608, -0.041305061429739, -0.014204579405486584, -0.023365305736660957, -0.042095720767974854, -0.013427553698420525, -0.0043554347939789295, -0.06047170236706734, 0.01380243431776762, 0.025178367272019386, 0.01744900271296501, 0.030699340626597404, 0.00016560791118536144, -0.03238971158862114, 0.05300134792923927, 0.03091745264828205, -0.06663338094949722, -0.017040042206645012, -0.007872499525547028, -0.04613080248236656, -0.010421689599752426, 0.032198864966630936, 0.0024912541266530752, -0.0002549616328906268, 0.009078934788703918, 0.011573596857488155, -0.016467496752738953, 0.01569047011435032, -0.009596952237188816, -0.01712183468043804, 0.010387609712779522, -0.023815162479877472, 0.03157179057598114, -0.01458627637475729, 0.017708012834191322, -0.013250336982309818, -0.007409010548144579, -0.01528150960803032, -0.000563173380214721, -0.015744999051094055, -0.014368163421750069, -0.0032938402146101, 0.04536740854382515, 0.026391617953777313, -0.01874404586851597, 0.012343807145953178, -0.009365207515656948, 0.018035180866718292, 0.03323489800095558, 0.018962159752845764, 0.004161178134381771, -0.00975371990352869, -0.025996288284659386, -0.011062395758926868, -0.0026889187283813953, 0.0034642405807971954, 0.011866685934364796, -0.007409010548144579, -0.022683704271912575, -0.003350072307512164, -0.010782938450574875, -0.015431462787091732, -0.009290231391787529, -0.026432514190673828, -0.017299050465226173, -0.041604965925216675, 0.012071166187524796, -0.0016188040608540177, -0.02734586037695408, 0.017789803445339203, -0.0005209993105381727, -0.03009953163564205, -0.007409010548144579, -0.016794666647911072, 0.03906941041350365, -0.005865182727575302, 0.05032946914434433, 0.009965016506612301, -0.010605722665786743, 0.020393522456288338, 0.030971981585025787, -0.0219748392701149, -0.0013359392760321498, -0.03710639476776123, -0.05357389152050018, -0.03345301002264023, -0.006277551408857107, 0.05447360873222351, 0.03143547102808952, -0.012766399420797825, 0.017626220360398293, 0.02742765285074711, 0.026009920984506607, -0.015376933850347996, 0.00784523505717516, -0.01041487418115139, -0.024033276364207268, 0.032607823610305786, 0.04007817804813385, 0.0017653483664616942, -0.01828055828809738, -0.022929081693291664, 0.024101436138153076, -0.030263114720582962, -0.008785845711827278, -0.019643761217594147, -0.03926025703549385, 0.024115068838000298, 0.012848191894590855, 0.0021640853956341743, -0.04523108899593353, -0.009528791531920433, -0.021265972405672073, 0.011934845708310604, 0.014204579405486584, -0.0223837997764349, 0.0038987617008388042, -0.007552146911621094, -0.011846237815916538, 0.03378017991781235, 0.04187760874629021, -0.04225930571556091, -0.017080938443541527, 0.005647070240229368, 0.007211345713585615, -0.0027059586718678474, -0.04910258576273918, 0.025750912725925446, 0.035824984312057495, -0.005105196498334408, 0.04972966015338898, 0.003210343886166811, -0.007988371886312962, -0.015826791524887085, -0.010108153335750103, -0.0031455918215215206, 0.01661744900047779, -0.0020396930631250143, -0.01686282642185688, -0.01733994670212269, -0.040950629860162735, 0.025587327778339386, 0.012411966919898987, 0.024006010964512825, -0.014695332385599613, 0.05041126161813736, 0.005790206603705883, 0.0022543976083397865, 0.016004007309675217, -0.03726997971534729, 0.010169497691094875, 0.05052031949162483, 0.03503432869911194, 0.001328271348029375, -0.009324311278760433, -0.018007917329669, 0.0023975339718163013, 0.002249285578727722, 0.02941792830824852, 0.008172404021024704, 0.053928326815366745, -0.023569786921143532, -0.005493709817528725, -0.014640804380178452, -0.032362449914216995, -0.004014634061604738, -0.001571943867020309, -0.0051699490286409855, 0.041359592229127884, -0.026814211159944534, 0.007954291999340057, 0.006843280978500843, 0.010891995392739773, -0.03833327814936638, 0.0034642405807971954, 0.04389514774084091, -0.026718785986304283, -0.011580413207411766, -0.032771408557891846, 0.003943065647035837, 0.01751716434955597, 0.02742765285074711, 0.032526031136512756, 0.023924220353364944, -0.01177126169204712, 0.004781435709446669, 0.0030552796088159084, 0.03964195400476456, -0.02437407709658146, 0.0011331627611070871, 0.02166130207479, 0.04370430111885071, 0.023856058716773987, 0.007804339285939932, -0.014940708875656128, 0.0008681901381351054, -0.0031558158807456493, 0.024155963212251663, 0.022874552756547928, 0.021061493083834648, 0.01924843154847622, 0.026664258912205696, -0.026473410427570343, -0.0072726900689303875, -0.009876408614218235, 0.041277799755334854, 0.019902769476175308, -0.05676379054784775, 0.0447675995528698, 7.508268754463643e-05, 0.0024060539435595274, -0.013209440745413303, 0.018553197383880615, -0.011873501352965832, 0.007688466925173998, 0.013604769483208656, 0.01825329288840294, 0.0238969549536705, -0.004041898064315319, -0.01247331127524376, -0.016631081700325012, 0.005674334242939949, -0.03138094022870064, -0.038306016474962234, -0.015513254329562187, -0.02545100823044777, 0.028545478358864784, -0.040050916373729706, -0.0033057681284844875, 0.007490802556276321, -0.027809349820017815, 0.0017431963933631778, 0.004075977951288223, 0.015663206577301025, 0.025600960478186607, -0.013107200153172016, -0.006400240119546652, -0.0343799889087677, 0.03217159956693649, 0.007259057834744453, 0.0028116069734096527, 0.017912492156028748, 0.020229937508702278, 0.035661399364471436, 0.012432415038347244, -0.0016801481833681464, -0.001801132457330823, -0.0007233498035930097, 0.005779982544481754, 0.0020908131264150143, -0.03705186769366264, 0.01409552339464426, -0.043104492127895355, 0.03593404218554497, -0.019711920991539955, 0.014559011906385422, 0.02974509820342064, 0.0121052460744977, 0.03059028461575508, 0.028572743758559227, 0.005469853524118662, 0.012173405848443508, -0.044167790561914444, -0.003602264914661646, 0.0017687564250081778, -0.0008345360984094441, 0.013781986199319363, -0.008370068855583668, -0.004341803025454283, 0.004028265830129385, -0.0025628223083913326, -0.01177126169204712, -0.011703100986778736, -0.004348618909716606, 0.0042361547239124775, 0.010108153335750103, 0.005200620740652084, 0.019289327785372734, 0.05330125242471695, -0.023174457252025604, 0.027318596839904785, 0.005630029831081629, 0.049048058688640594, -0.011512252502143383, -0.006683104671537876, -0.01202345360070467, -0.022751864045858383, -0.012221118435263634, 0.007204529829323292, 0.027059586718678474, 0.0008025859715417027, 0.004028265830129385, 0.023815162479877472, 0.033098578453063965, -0.011757628992199898, -0.016985515132546425, -0.008131507784128189, 0.01359795406460762, -0.002651430666446686, 0.006972785573452711, -0.03459810093045235, 0.0017977245151996613, 0.018307821825146675, 0.03214433416724205, -0.004774619825184345, 0.0008826741832308471, 0.013563874177634716, 0.007661202922463417, 0.001404951442964375, 0.010714778676629066, 0.04035082086920738, 0.012500574812293053, 0.04498571157455444, -0.002992231398820877, 0.016331177204847336, -0.020966067910194397, -0.006141231395304203, 0.04275005683302879, 0.01843051053583622, 0.008601813577115536, 0.00011768279364332557, 0.004634891636669636, 0.0051733567379415035, -0.02182488702237606, 0.014763493090867996, 0.010939707048237324, -0.005432365462183952, 0.01644023321568966, 0.002174309454858303, 0.016181224957108498, 0.014368163421750069, 0.01645386405289173, 0.0006228135316632688, 0.011968925595283508, 0.0083428043872118, -0.010503482073545456, -0.022411063313484192, 0.022683704271912575, 0.04536740854382515, 0.015540518797934055, -0.018989423289895058, -0.050711166113615036, -0.027073219418525696, 0.025491902604699135, -1.4071347322897054e-05, -2.1499741706065834e-05, -0.012255198322236538, -0.044658541679382324, -0.011164635419845581, 0.0008434820920228958, -0.009010774083435535, -0.005023404490202665, 0.006444544065743685, 0.00014047384320292622, 0.0020874051842838526, 0.006226431578397751, 0.004972284194082022, 0.08228296041488647, 0.001186838955618441, -0.014054627157747746, 0.01091244351118803, 0.04198666289448738, 0.03007226623594761, 0.007327218074351549, 0.019371120259165764, 0.009801432490348816, 0.000630907597951591, -0.020625267177820206, 0.03432546183466911, 0.048966266214847565, 0.010632986202836037, -0.003068911610171199, 0.0009653184097260237, -0.004484939388930798, 0.0022049813997000456, 0.02884538285434246, 0.0031404797919094563, 0.026827841997146606, -0.03792431950569153, -0.013713826425373554, 0.005238108802586794, -0.023338042199611664, -0.03200801461935043, -0.012561919167637825, -0.010769306682050228, 0.013107200153172016, 0.008438228629529476, -0.01611306332051754, -0.00506430072709918, 0.026228033006191254, -0.011437276378273964, -0.02512383833527565, 0.01883947104215622, 0.0018692926969379187, -0.040132708847522736, 0.004273642785847187, 0.010571641847491264, -0.020270833745598793, 0.002709366846829653, -0.011164635419845581, -0.024823933839797974, 0.01182578969746828, 0.006785344798117876, 0.015908583998680115, -0.02215205505490303, 0.015172453597187996, -0.010673882439732552, 0.018226029351353645, -0.012630079872906208, -0.026896003633737564, -0.015349670313298702, -0.023038137704133987, -0.006597904488444328, 0.02785024605691433, -0.001295895199291408, -0.01569047011435032, -0.02611897699534893, 0.004096426069736481, -0.0034863927867263556, -0.03146273270249367, -0.02298360876739025, 0.007395378313958645, -0.008949430659413338, 0.0024367261212319136, -0.03108103759586811, -0.020638899877667427, 0.003276800038293004, 0.004985916428267956, 0.003711321158334613, 0.029772361740469933, 0.008806293830275536, -0.01629028096795082, 0.05362842231988907, 0.005568685941398144, -0.0021811253391206264, -0.02949972078204155, -0.005408509634435177, 0.03023585118353367, -0.0015796119114384055, -0.006655840668827295, 0.05752718448638916, -0.008370068855583668, 0.010837467387318611, -0.024155963212251663, 0.010476217605173588, 0.0059878709726035595, 0.041359592229127884, 0.003133663907647133, -0.030290380120277405, 0.031108301132917404, -0.006850096862763166, 0.01387741044163704, 0.01132140401750803, 0.012330174446105957, -0.046485234051942825, 0.011505437083542347, -0.008158772252500057, 0.0026786946691572666, -0.015567782334983349, -0.006560416426509619, 0.003259760094806552, -0.03811516612768173, 0.011335035786032677, -0.010517113842070103, -0.008881269954144955, 0.015676839277148247, 0.0219748392701149, 0.02141592465341091, -0.03108103759586811, 0.04468580707907677, -0.04610353708267212, 0.0005227032816037536, -0.005163132678717375, -0.02546463906764984, -0.033016785979270935, 0.006212799344211817, -0.020638899877667427, -0.011048763059079647, -0.040623459964990616, 0.006032174918800592, 0.007783891167491674, 0.016658345237374306, 0.02273823320865631, -0.009276598691940308, 0.010155864991247654, -0.015813158825039864, 0.024823933839797974, 0.011314588598906994, -0.003592040855437517, -0.02660972997546196, 0.004890492185950279, -0.0038544575218111277, 0.00520402891561389, -0.006420687772333622, 0.0003963939961977303, -0.0009397583198733628, 0.001036886591464281, -0.03841507062315941, 0.01569047011435032, -0.012466494925320148, 0.016303911805152893, -0.025969024747610092, 1.8890485080191866e-05, -0.012841375544667244, -0.007429458666592836, -0.0006334635545499623, -0.018403245136141777, -0.008465493097901344, 0.03729724511504173, 0.024155963212251663, 0.02710048295557499, -0.007552146911621094, 0.0017040042439475656, 0.00463148346170783, -0.01892126351594925, -0.0018692926969379187, 0.021688565611839294, 0.007729363162070513, 0.008226932026445866, -0.025001149624586105, 0.0015429758932441473, 0.025246527045965195, 0.0032733920961618423, 0.004021449945867062, 0.03961469233036041, -0.003166039939969778, 0.03874224051833153, -0.04155043885111809, 0.008036083541810513, 0.02174309454858303, 0.05057484656572342, -0.03279867395758629, -0.018198765814304352, -0.0004553951439447701, 0.026909634470939636, -0.04026902839541435, -0.013243520632386208, -0.014640804380178452, 0.0009525383939035237, -0.011151003651320934, -0.013025408610701561, 0.018007917329669, -0.03604309633374214, -0.004740539938211441, -0.014927077107131481, 0.015008869580924511, -0.0054630376398563385, 0.009692376479506493, 0.030944716185331345, 0.0019442688208073378, -0.03015405870974064, 0.004730315878987312, -0.04280458763241768, -0.004304314497858286, 0.016222121194005013, 0.013236705213785172, 0.007736179046332836, 0.018375981599092484, -0.02346073091030121, -0.013925123028457165, -0.02198847010731697, -0.007340850308537483, -0.004692827817052603, 0.009446999058127403, 0.018989423289895058, 0.008254196494817734, 0.021361397579312325, -0.026309825479984283, 0.03421640396118164, -0.007824787870049477, -0.012855008244514465, 0.011553148739039898, 0.008281460963189602, 0.0007322957972064614, 0.03249876946210861, 0.00421570660546422, -0.034352727234363556, -0.008445044979453087, -0.030862925574183464, 0.04065072536468506, -0.028163781389594078, -0.006257103756070137, 0.01817150041460991, 0.02066616341471672, -0.005957198794931173, 0.05660020560026169, -0.025805439800024033, 0.03429819643497467, 0.010053625330328941, -0.020925171673297882, 0.027141379192471504, 0.012084797956049442, 0.01868951879441738, -0.020216306671500206, -0.03146273270249367, 0.016985515132546425, -0.024660348892211914, -0.01495434157550335, -0.011273692362010479, 0.018116973340511322, 0.02198847010731697, -0.005875406786799431, 0.03307131305336952, 0.014068258926272392, -0.01095333881676197, 0.008002003654837608, -0.022097526118159294, 0.01660381816327572, -0.014940708875656128, 0.009181174449622631, 0.0009746904252097011, 0.02917255274951458, 0.006400240119546652, 0.0016971882432699203, -0.022165687754750252, -0.005711822304874659, -0.027454916387796402, -0.0018965566996484995, -0.01239833515137434, 0.002859319094568491, -0.02851821482181549, -0.023569786921143532, 0.017558060586452484, -0.007081841584295034, -0.01759895496070385, -0.06058076024055481, 0.022697336971759796, 0.002373677911236882, 0.01074885856360197, 0.00442018685862422, -0.0019323407905176282, -0.03972374647855759, 0.00626391964033246, 0.003108103759586811, 0.014749860391020775, 0.024483133107423782, 0.010019544512033463, 0.005193804856389761, 0.015131557360291481, -0.0018880367279052734, -0.008186036720871925, -0.01252102293074131, -0.004242970608174801, -0.028463687747716904, 0.037733469158411026, -0.010762490332126617, -0.004082794301211834, 0.03792431950569153, 0.008151955902576447, 0.014231843873858452, -0.022915448993444443, -0.00826782826334238, 0.036642905324697495, -0.025669120252132416, 0.008908534422516823, -0.009106198325753212, -0.02099333144724369, 0.016263015568256378, -0.02429228462278843, -0.0002053325151791796, -0.0017806844552978873, 0.016590185463428497, 0.0021197812166064978, -0.001325715333223343, -0.009160726331174374, -0.02082974836230278, 0.011723549105226994, 0.010864730924367905, 0.005936750676482916, -0.023515257984399796, -0.020952435210347176, 0.006369567941874266, 0.018798574805259705, 0.02794566936790943, 0.0028371671214699745, 0.01252783928066492, 0.036888282746076584, 0.032444242388010025, 0.005156316794455051, 0.03282593935728073, -0.02117054909467697, 0.027127748355269432, -0.003408008487895131, -0.017748909071087837, -0.03378017991781235, -0.01012178510427475, 0.00864270981401205, 0.01941201649606228, 0.016658345237374306, -0.011205531656742096, -0.005214252974838018, -0.033589333295822144, 0.005544829647988081, 0.010687514208257198, 0.002365157939493656, 0.014409059658646584, -0.03023585118353367, 0.0012524430640041828, -0.017953388392925262, -0.010932891629636288, 0.02670515514910221, -0.006536560133099556, 0.06112603843212128, 0.0022663255222141743, 0.01973918452858925, 0.010810202918946743, 0.018962159752845764, 0.020557107403874397, 0.02884538285434246, -0.024564925581216812, -0.02470124512910843, 0.008438228629529476, 0.008376885205507278, 0.03836054354906082, -0.04092336446046829, 0.016985515132546425, -0.03547055274248123, -0.00774981128051877, 0.04951154813170433, -0.0028644311241805553, 0.01048985030502081, 0.009174359031021595, -0.04544920101761818, -0.030017739161849022, -0.03312584385275841, 0.0011953589273616672, -0.006683104671537876, 0.012296094559133053, -0.006267327815294266, -0.0040044100023806095, -0.013870594091713428, -0.008963062427937984, -0.008288276381790638, 0.0025781583972275257, 0.004655339755117893, -0.025069311261177063, -0.00048777120537124574, 0.002808199031278491, -0.05084748566150665, 0.015226981602609158, -0.03560687229037285, 0.028572743758559227, -0.02001182548701763, 0.012357438914477825, 0.022792760282754898, 0.013004960492253304], [0.029472753405570984, 0.024348288774490356, 0.04810202494263649, 0.022083330899477005, -0.01333493459969759, 0.037456728518009186, 0.011176147498190403, -0.025707263499498367, 0.033521365374326706, 0.02733520045876503, 0.008465277031064034, -0.014594817534089088, -0.01855849288403988, -0.030916664749383926, -0.029217945411801338, 0.04943268746137619, -0.0031019295565783978, 0.014113513752818108, -0.0026719416491687298, 0.00569778261706233, 0.07247862964868546, 0.06313567608594894, 0.0017978096147999167, -0.006051681935787201, -0.04377029463648796, -0.021177347749471664, 0.05917200446128845, 0.05206570029258728, 0.04071260243654251, -0.06902457028627396, 0.08765383809804916, -0.0253958310931921, 0.008882878348231316, -0.04694123566150665, 0.02388114109635353, 0.020724358037114143, -0.04125053063035011, 0.08108546584844589, 0.005825186613947153, 0.03425747528672218, -0.04031623527407646, -0.001071430859155953, -0.021927615627646446, -0.02720779739320278, -0.039976492524147034, 0.07825426757335663, -0.0029656782280653715, -0.030888352543115616, -0.03114316053688526, 0.018997326493263245, -0.004844884853810072, -0.0031302415300160646, 0.032530445605516434, -0.009413727559149265, 0.017326921224594116, 0.03015224076807499, -0.023569708690047264, 0.04023129865527153, 0.006278177723288536, -0.05687873438000679, 0.005885349586606026, -0.03991986811161041, -0.009392493404448032, 0.023045938462018967, -0.015387551859021187, 0.005018295720219612, 0.01997409015893936, 0.03100159950554371, -0.01755341701209545, 0.03204914182424545, 0.05854913964867592, 0.024079324677586555, 0.033832795917987823, -0.04541238769888878, 0.009498663246631622, -0.021361377090215683, 0.04668642580509186, 0.01734107732772827, -0.021630339324474335, -0.011133679188787937, -0.02448984794318676, 0.016449250280857086, 0.01659081131219864, 0.056680548936128616, -0.012620057910680771, 0.02518349140882492, -0.032558757811784744, 0.009123530238866806, -0.05206570029258728, 0.017397701740264893, -0.029954057186841965, 0.007828257977962494, -0.024956995621323586, 0.034030981361866, 0.029642624780535698, -0.029642624780535698, 0.02403685636818409, -0.010475425980985165, -0.009024438448250294, 0.023838672786951065, 0.004692708142101765, 0.0035991582553833723, -0.004724558908492327, 0.023923609405755997, 0.01571314036846161, -0.03844764456152916, -0.008635148406028748, 0.03926869481801987, 0.04631837084889412, -0.034342411905527115, -0.10435789823532104, -0.03278525173664093, -0.04340223968029022, 0.08872969448566437, -0.006879806984215975, -0.015415864065289497, -0.06596687436103821, 0.031652774661779404, 0.031709399074316025, -0.021842679008841515, -0.03139796853065491, -0.011353096924722195, 0.011862712912261486, -0.024631408974528313, -0.03185096010565758, -0.00820339098572731, -0.0034770630300045013, 0.015755606815218925, -0.05198076367378235, -0.03640918433666229, 0.05894550681114197, -0.044817838817834854, 0.020115649327635765, -0.12140169739723206, -0.01357558649033308, -0.015599891543388367, -0.05529326573014259, -0.0029727560468018055, 0.0050112176686525345, -0.03156783804297447, 0.02621687762439251, 0.022026708349585533, 0.039608437567949295, 0.013221686705946922, -0.04249625653028488, -0.013610976748168468, 0.023513086140155792, 0.04631837084889412, -0.014262151904404163, 0.017086269333958626, -0.039183758199214935, -0.005991519428789616, 0.00809722114354372, -0.011438033543527126, 0.020243054255843163, -0.011997194029390812, 0.03816452622413635, 0.04776228219270706, 0.018685895949602127, -0.005071380641311407, -0.002457832219079137, -0.010248931124806404, -0.006264022085815668, -0.04204326495528221, 0.035191770642995834, -0.04059935361146927, -0.04784721881151199, 0.015670672059059143, -0.06183332949876785, -0.08850319683551788, -0.021630339324474335, -0.021347220987081528, -0.020356301218271255, -0.017624197527766228, -0.03102991171181202, -0.02770325541496277, -0.047903843224048615, -0.017029646784067154, 0.05220726132392883, -0.025693107396364212, 0.019775906577706337, -0.01997409015893936, -0.06200319901108742, -0.05809614807367325, -0.025268428027629852, 0.04847007989883423, -0.008005207404494286, 0.01554326806217432, 0.0038221150171011686, 0.02600453794002533, 0.017638353630900383, -0.005807491485029459, 0.04249625653028488, 0.05127296596765518, -0.05704860761761665, 0.02345646172761917, 0.0002691848494578153, -0.004190170671790838, 0.0017677282448858023, 0.01571314036846161, 0.016760682687163353, -0.044393159449100494, 0.06041773036122322, 0.00043286336585879326, -0.0513295903801918, -0.07298824191093445, -0.0058181085623800755, 0.02215411141514778, 0.018487712368369102, -0.020540328696370125, 0.00450160214677453, -0.04232638701796532, -0.006674545351415873, 0.03592788055539131, -0.029642624780535698, -0.011940570548176765, -0.015288460068404675, 0.023711269721388817, -0.03677723929286003, 0.022437231615185738, 0.01640678197145462, 0.0324455089867115, 0.017864849418401718, -0.016265222802758217, 0.0014049811288714409, 0.04025961086153984, -0.005499599035829306, -0.046573180705308914, -0.004678552038967609, -0.033832795917987823, 0.004084000829607248, 0.023329058662056923, -0.017057957127690315, -0.0033142692409455776, -0.019832530990242958, -0.000761326402425766, 0.03813621401786804, 0.00039216491859406233, -0.009371260181069374, -0.01418429333716631, 0.05067841336131096, 0.030973287299275398, 0.00587119348347187, 0.06591024994850159, 0.005375734064728022, 0.0034045136999338865, -0.0033213472925126553, 0.002077390206977725, 0.00381857599131763, 0.010638220235705376, 0.025594014674425125, 0.004243255592882633, 0.005520832724869251, 0.0037690300960093737, -0.011862712912261486, -0.009774705395102501, -0.02172943204641342, -0.0285809263586998, 0.02597622573375702, -0.02475881204009056, -0.02478712424635887, -0.04249625653028488, -0.009194309823215008, 0.030378736555576324, -0.03145459294319153, -0.02664155699312687, 0.04065597802400589, 0.007269096560776234, -0.02124812826514244, 0.017539260908961296, -0.04082585126161575, 0.004682091064751148, 0.010390490293502808, -0.022621259093284607, -0.04368535801768303, -0.013915330171585083, 0.0009396032546646893, 0.02103578858077526, -0.009604834020137787, -0.037909720093011856, -0.03621100261807442, -0.004455595277249813, 0.005223557353019714, -0.022692037746310234, -0.014446179382503033, 0.010893028229475021, -0.01341279223561287, 7.857675518607721e-05, -0.0008250282844528556, 0.016902241855859756, 0.041788458824157715, -0.006525907665491104, -0.004738715011626482, -0.02257879078388214, -0.000809545221272856, -0.005301414988934994, -0.048385147005319595, -0.02321580983698368, 0.02882157824933529, -0.00882625486701727, 0.03946687653660774, 0.04776228219270706, 0.032530445605516434, 0.03357798978686333, -0.011763621121644974, 0.011827322654426098, 0.022635415196418762, 0.03374785929918289, -0.017907317727804184, -0.006327723618596792, -0.0351068340241909, 0.01840277574956417, 0.0021870990749448538, -0.005542066879570484, -0.04688461124897003, -0.002463140757754445, 0.05407584831118584, 0.02467387542128563, -0.04422328621149063, 0.008585602976381779, 0.05031035840511322, -0.022168267518281937, 0.028779109939932823, -0.02233813889324665, 0.05871901288628578, -0.03250213339924812, -0.021998396143317223, -0.002627704059705138, -0.029444441199302673, -0.00200484087690711, -0.027689099311828613, -0.03371954709291458, 0.014552349224686623, -0.010772702284157276, -0.013632209971547127, -0.009024438448250294, -0.0146939093247056, 0.008889956399798393, 0.011990116909146309, 0.005860576406121254, 0.0006542718037962914, -0.038674142211675644, 0.023258278146386147, -0.0009918034775182605, -0.04374198243021965, -0.002250801073387265, -0.013377402909100056, 0.03360630199313164, -0.01749679259955883, 0.05659561604261398, 0.01174238696694374, 0.018331997096538544, -0.01269791554659605, 0.029133010655641556, -0.06183332949876785, -0.00046758976532146335, -0.02879326604306698, -0.028198715299367905, -0.0584925152361393, -0.04023129865527153, -0.012393562123179436, 0.017142893746495247, -0.019577722996473312, 0.01834615133702755, 0.009753471240401268, 0.007297408767044544, 0.00535096088424325, -0.00531203206628561, 0.004483907017856836, -0.026868052780628204, 0.014382476918399334, 0.039240382611751556, -0.03465384244918823, -0.011600826866924763, -0.04544069990515709, 0.004536991938948631, -0.02712286077439785, 0.039183758199214935, -0.030520295724272728, 0.010333866812288761, 0.06477776914834976, 0.046233437955379486, 0.02557985857129097, 0.004186631646007299, 0.06953418254852295, 0.044393159449100494, -0.02478712424635887, 0.01616613194346428, 0.0166191216558218, -0.02791559509932995, 0.0038716609124094248, 0.001366936950944364, -1.734937177388929e-05, 0.009909187443554401, -0.0118981022387743, -0.014014421962201595, 0.0332382433116436, 0.03623931482434273, 0.028764953836798668, -0.023966077715158463, 0.0502537339925766, 0.006281716749072075, -0.014049812220036983, -0.023923609405755997, -0.03502189740538597, -0.023470617830753326, -0.003786724992096424, -0.009307557716965675, 0.005853498354554176, -0.0003410706704016775, 0.009548209607601166, -0.031341344118118286, 0.03626762330532074, -0.00910937413573265, 0.0023339674808084965, 0.0003178460174240172, -0.01439663302153349, 0.026952989399433136, -0.01330662239342928, 0.01683146134018898, 0.017355233430862427, -0.01237940602004528, 0.014120591804385185, -0.0037513351999223232, -0.04810202494263649, 0.009364182129502296, 0.0013598590157926083, -0.011324785649776459, 0.013646366074681282, -0.07485683262348175, -0.017057957127690315, 0.02531089447438717, 0.06608012318611145, 0.014948716387152672, -0.04906463250517845, -0.0018756675999611616, 0.007523904088884592, -0.04643161967396736, 0.004735175985842943, -0.03408760204911232, 0.007863648235797882, -0.010793936438858509, 0.020469550043344498, 0.04674305021762848, 0.007955661974847317, 0.012287392280995846, 0.021658651530742645, 0.05509508028626442, 0.026528310030698776, -0.01179193239659071, 0.012754539027810097, -0.00682672206312418, -0.049715805798769, -0.011643295176327229, -0.04323236644268036, 0.032530445605516434, -0.00035589022445492446, -0.020143961533904076, 0.028340274468064308, -0.05390597879886627, 0.04343055188655853, 0.03621100261807442, 0.035588137805461884, 0.014608972705900669, 0.0003912801912520081, 4.993301263311878e-05, -0.018572647124528885, -0.001778345205821097, -0.013540196232497692, 0.02215411141514778, 0.01773744449019432, -0.03414422646164894, 0.020356301218271255, 0.016307691112160683, 0.016477562487125397, -0.050536856055259705, -0.020710201933979988, -0.037796471267938614, 0.004190170671790838, -0.005425279960036278, -0.00797689612954855, 0.009286323562264442, -0.020257210358977318, -0.004678552038967609, 0.06075747311115265, 0.03714529424905777, 0.05458546429872513, -0.01997409015893936, -0.0275192279368639, -0.016817307099699974, -0.06811858713626862, -0.011537125334143639, 0.035220082849264145, -0.01712873764336109, -0.008691772818565369, -0.01242895144969225, 0.00014631534577347338, -0.025707263499498367, 0.04776228219270706, -0.017157049849629402, 0.07831089198589325, -0.03289850056171417, 0.03584294393658638, 0.011246927082538605, 0.06579700112342834, -0.020243054255843163, 0.005733172409236431, 0.016123663634061813, -0.04518589377403259, -0.002606470137834549, -0.03635255992412567, 0.01368175633251667, 0.02182852290570736, 0.035276707261800766, 0.01725614257156849, -0.0019606035202741623, 0.013002268970012665, -0.01073023397475481, -0.009236778132617474, 0.011303551495075226, -0.03584294393658638, -0.02691052109003067, -0.016633277758955956, 0.020894229412078857, 0.016534186899662018, 0.01813381165266037, -0.013221686705946922, -0.03952350094914436, -0.03369123488664627, -0.012365249916911125, 0.0332382433116436, -0.04198664054274559, 0.007226628717035055, 0.0030240716878324747, 0.009923343546688557, -0.007948583923280239, 0.025749729946255684, 0.0018986710347235203, -0.0006507327780127525, -0.034710466861724854, -0.004122929647564888, -0.02603285014629364, 0.017935628071427345, -0.0002149939682567492, -0.0005901274853385985, 0.012344015762209892, 0.043600425124168396, 0.03499358519911766, 0.022182423621416092, -0.02400854416191578, 0.004869657568633556, -0.009413727559149265, 0.04773396998643875, -0.012421874329447746, -0.03057692013680935, -0.00949158612638712, -0.0032558757811784744, -0.004345886409282684, 0.01683146134018898, 0.013872861862182617, 0.02055448479950428, -0.019549410790205002, 0.029217945411801338, 0.019506942480802536, -0.015755606815218925, 0.01344110444188118, -0.01683146134018898, 0.0014996492536738515, 0.010220618918538094, 0.021205659955739975, -0.02927456982433796, 0.012641292065382004, 0.03114316053688526, -0.04198664054274559, 0.04518589377403259, 0.023513086140155792, 0.01574145071208477, -0.06239956617355347, 0.006327723618596792, -0.021786056458950043, -0.015529111959040165, -0.03111484833061695, -0.006041065324097872, -0.0507916621863842, -0.026655713096261024, 0.04781890660524368, 0.00573671143501997, -0.012520966120064259, -0.01107705570757389, 0.03708867356181145, 0.011940570548176765, -0.011480500921607018, 0.02348477393388748, -0.002457832219079137, 0.004979366436600685, 0.025537390261888504, -0.006062299013137817, 0.014623128809034824, -0.013278311118483543, 0.042666129767894745, 0.0004195921355858445, -0.018247060477733612, 0.0006790447514504194, -0.02366880141198635, -0.008422808721661568, -0.0008223740733228624, -0.007460202556103468, -0.0024525239132344723, 8.958081889431924e-05, 0.03853258118033409, -0.0014244456542655826, 0.012655447237193584, 0.012761617079377174, -6.842979473731248e-06, -0.015047808177769184, 0.014821312390267849, -0.02382451668381691, 0.010086136870086193, -0.02345646172761917, -0.00841573067009449, 0.025480767711997032, -0.03238888457417488, 0.033521365374326706, -0.005782718304544687, 0.00766546418890357, 0.00043175744940526783, -0.00013304411550052464, -0.036550745368003845, 0.04985736683011055, 0.018063032999634743, -0.021078256890177727, 0.008713006973266602, 0.03422916308045387, 0.004345886409282684, -0.012174144387245178, 0.010744390077888966, 0.01973343826830387, -0.01051789429038763, 0.021149037405848503, -0.02621687762439251, 0.03054860793054104, 0.03538995236158371, 0.02730688825249672, -0.01704380102455616, 0.01997409015893936, 0.010326788760721684, -0.02815624698996544, 0.00450160214677453, 0.0009723390103317797, -0.012443107552826405, 0.009357104077935219, -0.015599891543388367, 0.019662657752633095, -0.0030099155846983194, 0.030860040336847305, -0.010503738187253475, -0.03153952583670616, 0.01613781973719597, -0.020780980587005615, 0.05588781461119652, -0.05860576406121254, -0.0006732938927598298, 0.024447379633784294, -0.020653577521443367, 0.030520295724272728, -0.028680019080638885, 0.01744017004966736, -0.0036239312030375004, 0.02654246613383293, -0.03505020961165428, -0.0156848281621933, 0.003924746066331863, 0.029133010655641556, 0.015288460068404675, 0.0008498012903146446, -0.0049581327475607395, -0.004922742489725351, 0.023725425824522972, -0.014778845012187958, 0.07128952443599701, -0.032983437180519104, -0.020752668380737305, -0.00426095025613904, 0.032134078443050385, -0.016392625868320465, -0.02860923856496811, 0.03887232393026352, 0.0060587599873542786, 0.0007564602419734001, 0.008026441559195518, -0.006253405008465052, -0.005828725639730692, -0.014127669855952263, -0.021757744252681732, 0.026712337508797646, 0.054047539830207825, 0.01206089649349451, -0.000284225563518703, -0.04982905462384224, -0.07185576111078262, 0.01704380102455616, 0.0020508477464318275, -0.021602027118206024, -0.0510464683175087, -0.0380229651927948, -0.023527242243289948, 0.024843748658895493, 0.024376600980758667, 0.016930554062128067, -0.033493053168058395, -0.002042000414803624, 0.004965210799127817, -0.030746791511774063, 0.02448984794318676, -0.016477562487125397, 0.002864816691726446, -0.029529377818107605, -0.0017641892191022635, 0.020681889727711678, 0.019535254687070847, -0.008260015398263931, 0.03468215465545654, -0.02424919605255127, -0.003431056160479784, 0.017157049849629402, 0.016307691112160683, -0.015430020168423653, 0.015727296471595764, -0.01386578381061554, 0.053113244473934174, -0.0084440428763628, 0.020497862249612808, -0.009795939549803734, 0.037909720093011856, -0.02826949581503868, 0.010128605179488659, -0.015585735440254211, 0.0473376028239727, -0.020243054255843163, 0.021899303421378136, -5.189605144551024e-05, -0.034370724111795425, -0.008620993234217167, -0.05498183146119118, 0.01952109858393669, -0.0014748763060197234, 0.010227696970105171, 0.028283651918172836, -0.020483706146478653, 0.026018694043159485, -0.027052080258727074, 0.01330662239342928, -0.009675613604485989, -0.028750799596309662, 0.0595683716237545, -0.012966879643499851, 0.0007891959976404905, 0.03711698576807976, 0.018700052052736282, 0.02640090510249138, -0.0026170872151851654, -0.0018756675999611616, 0.01325707696378231, 0.02206917479634285, 0.00594905111938715, 0.0027321043889969587, -0.010687766596674919, -0.009668535552918911, 0.013073049485683441, 0.01988915354013443, 0.014552349224686623, -0.0057650236412882805, 0.0014182523591443896, 0.017213674262166023, -0.015656515955924988, -0.03507852181792259, -0.029189635068178177, -0.02821287140250206, -0.002933827228844166, -0.03425747528672218, 0.017638353630900383, -0.0109708858653903, 0.019506942480802536, 0.006738247349858284, 0.009944576770067215, 0.009633145295083523, 0.00872008502483368, 0.011069977656006813, 0.017397701740264893, -0.015161056071519852, -0.047026172280311584, 0.020681889727711678, -0.006844417192041874, -0.01797809638082981, -0.018034720793366432, 0.00597736332565546, -0.005212940275669098, -0.08805020898580551, -0.010156916454434395, 0.07140277326107025, -0.013639288023114204, -0.022677883505821228, -0.010397568345069885, -0.005857037380337715, 0.03884401544928551, 0.016024570912122726, -0.053566236048936844, -0.005428818985819817, -0.018445244058966637, -0.0425528809428215, 0.009137686342000961, 0.027618320658802986, 0.002003071364015341, 0.018275372684001923, 0.009038594551384449, -0.018954860046505928, -0.01487793680280447, 0.03819283843040466, -0.024900371208786964, -0.01147342287003994, 0.027462603524327278, -0.01637847162783146, -0.01554326806217432, 0.00475287064909935, 0.014340009540319443, 0.002781650284305215, -0.03904219716787338, -0.011763621121644974, 0.014708064496517181, -0.040995724499225616, 0.028283651918172836, -0.01576976291835308, 0.03759828582406044, 0.042807687073946, -0.0002545864845160395, -0.015670672059059143, 0.014191371388733387, 0.01946447417140007, 0.0166191216558218, 0.05452883988618851, 0.00797689612954855, -0.021587872877717018, 0.0008055638172663748, 0.026372594758868217, -0.025197647511959076, -0.01333493459969759, 0.014247995801270008, -0.0072407848201692104, 0.0020667733624577522, -0.005234174430370331, -0.024603096768260002, -0.027221953496336937, -0.0039742919616401196, -0.03864583000540733, -0.007523904088884592, -0.019662657752633095, 0.002057925797998905, -0.020512018352746964, -0.009965810924768448, -0.007651308085769415, -0.004292801488190889, -0.029642624780535698, -0.0039353626780211926, 0.0020402309019118547, 0.01421260554343462, -0.0008958082180470228, 0.02696714550256729, 0.031199783086776733, -0.0014554118970409036, 0.014736376702785492, 0.05736003816127777, 0.00221718056127429, 0.030095616355538368, -0.03465384244918823, -0.04498770833015442, -0.023385681211948395, 0.003733640071004629, 0.04725266620516777, -0.010248931124806404, -0.004664395935833454, 0.02927456982433796, 0.028014687821269035, 0.03499358519911766, -0.01571314036846161, 0.0016323616728186607, -0.033493053168058395, 0.010900106281042099, 0.041392091661691666, 0.019775906577706337, -0.007821179926395416, -0.01147342287003994, 0.003991986624896526, -0.019719282165169716, -0.010857637971639633, -0.0021357836667448282, 0.028708331286907196, -0.017057957127690315, -0.024716343730688095, 0.01592548005282879, -0.01622275449335575, -0.019294602796435356, -0.020115649327635765, -0.013165063224732876, -0.010815169662237167, 0.006232170853763819, -0.002404747297987342, 0.020696045830845833, -0.024829592555761337, 0.002756877336651087, 0.012344015762209892, 0.01816212385892868, -0.017850693315267563, -0.016109507530927658, 0.004498063120990992, 0.02412179298698902, -0.014269229955971241, -0.016760682687163353, 0.0275192279368639, 0.014163060113787651, -0.014311697334051132, 0.05741666257381439, 0.006943508982658386, 0.015401707962155342, -0.033011749386787415, -0.037853095680475235, 0.0008237012079916894, -0.005828725639730692, -0.01487793680280447, -0.0054182019084692, -0.022380607202649117, 0.015897167846560478, 0.002756877336651087, 0.04385523125529289, 0.030463673174381256, 0.004416666459292173, -0.003995525650680065, -0.017185362055897713, 0.0001414492289768532, 0.01943616196513176, -0.013667600229382515, 0.008500667288899422, 0.0574449747800827, 0.03139796853065491, -0.0005290798144415021, -0.036947112530469894, -0.024631408974528313, -0.01147342287003994, 0.021602027118206024, -0.024135949090123177, -0.007792867720127106, 0.04561057314276695, -0.004912125412374735, 0.0008816522313281894, -0.036041129380464554, -0.031652774661779404, -4.636637095245533e-05, 0.018869923427700996, 0.008040597662329674, 0.025466611608862877, 0.0016146666603162885, 0.03105822391808033, 0.025141023099422455, 0.028680019080638885, -0.018912391737103462, 0.037371791899204254, 0.039212070405483246, -0.00633480167016387, -0.015316772274672985, -0.03114316053688526, 0.013207530602812767, -0.002562232781201601, -0.02233813889324665, 0.037032049149274826, 0.003953057806938887, -0.020299676805734634, -0.0013156215427443385, -0.002341045532375574, 0.0028471217956393957, 0.004282184410840273, 0.02451816014945507, 0.02095085196197033, 0.043090809136629105, 0.027052080258727074, 0.015245992690324783, 0.01360389869660139, -0.008316638879477978, 0.04235469549894333, 0.017879005521535873, 0.032162390649318695, -0.01368175633251667, 0.003684094175696373, 0.014283385127782822, -0.03507852181792259, 0.020455393940210342, 0.009682691656053066, 0.06307905167341232, 0.003004607046023011, -0.01906810700893402, 0.0028347354382276535, -0.0159537922590971, 0.02706623636186123, 0.0075026703998446465, 0.021474624052643776, -0.015614047646522522, 0.02206917479634285, -0.0036699383053928614, 0.008040597662329674, 0.019181355834007263, 0.0017004873370751739, -0.014198449440300465, -0.02791559509932995, -0.024235039949417114, -0.02499946393072605, -0.0010466579115018249, -0.031681086868047714, -0.011169069446623325, -0.0006321530672721565, -0.041788458824157715, -0.00485904049128294, -0.0007431890117004514, -0.011282317340373993, 0.02521180361509323, 0.014049812220036983, -0.007828257977962494, 0.034427348524332047, -0.00755929434671998, -0.011997194029390812, -0.007998129352927208, 0.017779912799596786, 0.002896667690947652, 0.01861511543393135, 0.001815504627302289, 0.020016558468341827, 0.04232638701796532, 0.012712071649730206, 0.02621687762439251, 0.01922382228076458, -0.005028912331908941, -0.022012552246451378, -0.007672542240470648, -0.04897969588637352, -0.011091211810708046, -0.04040117189288139, 0.014948716387152672, 0.033040061593055725, -0.0062887948006391525, 0.013596820645034313, 0.008960735984146595, 0.003241719910874963, 0.034852027893066406, -0.016505874693393707, 0.031284719705581665, 0.004986444488167763, -0.036918800324201584, 0.0029037457425147295, 0.013773770071566105, -0.005223557353019714, -0.01115491334348917, -0.012839475646615028, 0.000380663201212883, 0.02339983731508255, -0.04691292345523834, -0.006384347565472126, -0.009123530238866806, 0.00777163403108716, -0.0018632811261340976, -0.030038993805646896, 0.005506677087396383, 0.02863755077123642, -0.04730929061770439, 0.0070426007732748985, 0.008797942660748959, 0.022437231615185738, 0.004954593721777201, 0.04371367022395134, -0.018657583743333817, -0.024900371208786964, -0.03756997361779213, 0.02682558447122574, -0.002886050846427679, -0.012443107552826405, 0.012202456593513489, 0.018331997096538544, -0.0026719416491687298, 0.010100292973220348, -0.017907317727804184, -0.03932531550526619, 0.0028595083858817816, 0.0032841877546161413, -0.01091426145285368, -0.007127536926418543, 0.019690969958901405, -0.0011262852931395173, 0.008649304509162903, 0.005814569536596537, 0.018600959330797195, 0.010348022915422916, -0.009243856184184551, 0.01431877538561821, -0.0003450520453043282, 0.009555287659168243, 0.02924625761806965, 0.010893028229475021, 0.0017641892191022635, 0.030038993805646896, -0.02315918542444706, 0.010086136870086193, 0.0044803679920732975, 0.0022472620476037264, 0.012443107552826405, 0.027462603524327278, 0.027377668768167496, 0.004069844726473093, -0.02518349140882492, -0.006168468855321407, -0.00657545356079936, -0.008967814035713673, -0.0008980201091617346, 0.0059561291709542274, 0.01797809638082981, 0.0018615116132423282, -0.010510816238820553, -0.025919603183865547, 0.028495991602540016, 0.00900320429354906, -0.01059575192630291, -0.00640204269438982, 0.007074452005326748, 0.01320045255124569, -0.00058083760086447, -0.006338340695947409, -0.0576997809112072, -0.01637847162783146, 0.02464556321501732, 0.0020260747987776995, 0.007580528035759926, -0.017907317727804184, -0.02981249801814556, -0.01707211323082447, -0.021417999640107155, 0.03329486772418022, 0.021984240040183067, -0.0144249452278018, -0.02225320227444172, 0.008196312934160233, -0.005053685512393713, 0.023045938462018967, 0.08397328108549118, 0.023442305624485016, -0.0036133143585175276, 0.017666665837168694, 0.027476759627461433, -0.04512926936149597, 0.016774838790297508, -0.001992454519495368, -0.011515891179442406, 0.009760549291968346, -0.016916397958993912, 0.037032049149274826, 0.0030010680202394724, 0.0016199751989915967, 0.025056088343262672, 0.0033425812143832445, 0.02488621510565281, 0.029954057186841965, 0.024263352155685425, -0.015444176271557808, 0.015458332374691963, -0.029416128993034363, -0.013249998912215233, 0.015783919021487236, -0.029869120568037033, -0.022239048033952713, -0.01171407476067543, -0.025084398686885834, 0.002556924242526293, 0.021474624052643776, -0.011211537756025791, 0.03686217591166496, -0.01256343349814415, 0.009066905826330185, -0.01831784099340439, -0.008967814035713673, 0.020809292793273926, -0.007339876610785723, 0.03357798978686333, 0.013426948338747025, -0.035191770642995834, -0.007332798559218645, -0.009732237085700035, 0.00136428268160671, 0.014219683595001698, 0.01840277574956417, -0.004703324753791094, -0.0074106561951339245, 0.009604834020137787, -0.02339983731508255, 0.005290798377245665, 0.0053792730905115604, -0.02427750825881958, -0.010843481868505478, -0.025438299402594566, -0.0035177613608539104, -0.007269096560776234, -0.0010068442206829786, -0.03991986811161041, -8.322169014718384e-05, 0.010765624232590199, 0.032105766236782074, -0.005839342251420021, 0.011176147498190403, 0.030463673174381256, -0.0035956192295998335, -0.007254940457642078, -0.017142893746495247, -0.027774035930633545, -0.015883011743426323, -0.022111643105745316, 0.004943976644426584, 0.02182852290570736, 0.002519764704629779, -0.00037491231341846287, 0.03756997361779213, -0.005170472431927919, 0.019549410790205002, -0.022055018693208694, -0.007180621847510338, -0.017624197527766228, -0.027745723724365234, 0.0216728076338768, 0.04368535801768303, -0.010029513388872147, -0.03111484833061695, 0.025749729946255684, 0.01840277574956417, -0.045723821967840195, 0.04541238769888878, -0.005297875963151455, -0.017114581540226936, -0.000724166922736913, 0.012011350132524967, -0.02236645109951496, 0.03148290142416954, 8.626301132608205e-05, -0.05888888239860535, 0.003225794294849038, -0.007835336029529572, -0.012740383855998516, -0.024135949090123177, -0.011140757240355015, 0.017581729218363762, -0.034370724111795425, 0.010772702284157276, -0.015585735440254211, -0.002910823794081807, -0.0002594526158645749, -0.006515290588140488, -0.011275239288806915, -0.01128939539194107, 0.03247382119297981, 0.0002472873020451516, -0.0024365982972085476, 0.005651775747537613, 0.015076120384037495, -0.01909641921520233, -0.010885950177907944, -0.013979031704366207, 0.009194309823215008, 0.016279378905892372, -0.00949158612638712, 0.002270265482366085, 0.02324412204325199, 0.019790062680840492, -0.049659185111522675, 0.022776974365115166, -0.019266290590167046, 0.013398637063801289, 0.03488034009933472, 0.018912391737103462, 0.02709454856812954, -0.009965810924768448, -0.03805127739906311, 0.03451228514313698, 0.0012076821876689792, 0.00351953087374568, -0.013214608654379845, -0.006660389248281717, -0.014460335485637188, 0.02249385416507721, -0.004636084195226431, 0.0024542934261262417, -0.02654246613383293, 0.0118981022387743, -0.018289528787136078, -0.016293535009026527, 0.00279580638743937, 0.024688031524419785, 0.011905180290341377, 0.011905180290341377, 0.004784721881151199, 0.014991184696555138, -0.027434293180704117, -0.010029513388872147, 0.028495991602540016, -0.024688031524419785, -0.003967213910073042, -0.033832795917987823, 0.004444978199899197, 0.018629271537065506, -0.026655713096261024, 0.012152910232543945, 0.00703906174749136, -0.030010681599378586, 0.008536056615412235, 0.0031620922964066267, -0.02230982668697834, 0.02182852290570736, -0.044364847242832184, -0.05529326573014259, 0.009272168390452862, 0.02627350203692913, -0.025650639086961746, 0.007269096560776234, 0.023923609405755997, 0.00818923581391573, -0.06557050347328186, -0.0007781366002745926, 0.004246794618666172, -0.0003273570619057864, -0.01800640858709812, 0.0016686363378539681, -0.00426095025613904, 0.006101228296756744, 0.01712873764336109, 0.00855021271854639, 0.0398915559053421, 0.01418429333716631, -0.010043668560683727, -0.017935628071427345, -0.00809722114354372, -0.041788458824157715, -0.001114783575758338, -0.0324455089867115, 0.03187927231192589, 0.012082130648195744, -0.021517092362046242, -0.016279378905892372, 0.017963940277695656, 0.00020758420578204095, 0.0025710801128298044, -0.014410789124667645, -0.008040597662329674, -0.055321577936410904, -0.0068338001146912575, 0.018034720793366432, 0.05546313524246216, 0.01259174570441246, 0.028623394668102264, 0.000845377508085221, 0.0050961533561348915, 0.009392493404448032, 0.00797689612954855, 0.01487793680280447, 0.0051492382772266865, 0.034314099699258804, -0.00745312450453639, -0.0049722883850336075, -0.02430582046508789, -0.0028878203593194485, 0.031652774661779404, -0.03100159950554371, -0.018516024574637413, 0.012690837495028973, 0.004232638515532017, 0.014460335485637188, 0.04696954786777496, -0.02924625761806965, 0.020512018352746964, 0.004685630090534687, -0.03405929356813431, -0.02826949581503868, -0.02688220888376236, -0.02270619384944439, -0.02616025321185589, 0.025905447080731392, -0.01407812349498272, -0.015868855640292168, -0.01643509417772293, -0.013073049485683441, -0.01346941664814949, 0.011544203385710716, 0.014962872490286827, 0.013483572751283646, 0.02717948518693447, -0.027236109599471092, -0.008755474351346493, -0.021786056458950043, 0.007230167742818594, 0.01616613194346428, 0.036522433161735535, 0.004381276201456785, 0.036918800324201584, 0.002935596741735935, 0.01030555460602045, -0.024872059002518654, 0.00281527079641819, 0.005906583275645971, -0.03969337418675423, -0.03400266915559769, 0.02148878015577793, -0.026684025302529335, -0.015203524380922318, 0.037428416311740875, -0.028991449624300003, -0.040910787880420685, -0.03907050937414169, 0.008981970138847828, -0.012131676077842712, 0.030775103718042374, -0.006847956217825413, -0.0054111238569021225, -0.009583599865436554, 0.001684561837464571, 0.0032063298858702183, 0.008981970138847828, 0.027080392464995384, 0.018063032999634743, 0.006918736267834902, 0.031313031911849976, -0.007198316510766745, -0.014276307076215744, 0.012386484071612358, 0.030718479305505753, -0.013476494699716568, 0.007290330715477467, 0.02358386479318142, -0.0033142692409455776, 0.050536856055259705, -0.004830728750675917, 0.01171407476067543, -0.00605522096157074, 0.0013280080165714025, 0.01579807512462139, 0.00146072031930089, 0.0301805529743433, -0.011331863701343536, 0.0018951320089399815, -0.010602829977869987, 0.017411857843399048, 0.012046740390360355, -0.0029320577159523964, -0.007141692563891411, -0.007792867720127106, 0.020865917205810547, 0.032672006636857986, -0.025013620033860207, -0.0074814362451434135, -0.005517293699085712, -0.004161858465522528, -0.030350424349308014, -0.02709454856812954, 0.004721019882708788, 0.020299676805734634, 0.0035478428471833467, 0.011282317340373993, -0.019153043627738953, 0.044449783861637115, -0.013448182493448257, 0.006947048008441925, 0.007495592348277569, -0.01102043129503727, 0.039608437567949295, -0.0070815300568938255, -0.024772968143224716, 0.004193709697574377, -0.003209868911653757, -0.015189368277788162, 0.002597622573375702, -0.01157959271222353, 0.02403685636818409, -0.023994388058781624, 0.0035602294374257326, 0.02969924919307232, 0.025141023099422455, 0.012492653913795948, 0.00696120411157608, -0.01994577795267105, 0.028524303808808327, -0.017751600593328476, -0.006143696140497923, 0.030775103718042374, -0.019846687093377113, 0.034370724111795425, 0.008897034451365471, 0.01118322554975748, -0.008493589237332344, 0.0024029777850955725, 0.0008635148988105357, 0.026627400889992714, -0.030463673174381256, -0.0059030442498624325, 0.0022154110483825207, -0.0024772968608886003, -0.007131075952202082, -0.021375533193349838, -0.005934895481914282, -0.024447379633784294, -0.0037938030436635017, 0.01882745511829853, -0.020936697721481323, -0.013349090702831745, 0.02436244487762451, -0.01635015942156315, 0.011763621121644974, -0.006639155559241772, 0.017199518159031868, -0.007863648235797882, 0.006048143375664949, 0.0065719145350158215, 0.0277881920337677, -0.0022136415354907513, 0.0280571561306715, -0.023739581927657127, 0.009017360396683216, 0.010418802499771118, -0.005892427172511816, 0.005152777303010225, 0.0065188296139240265, -0.021134881302714348, -0.0005180204752832651, -0.036465808749198914, 0.0425528809428215, 0.0071876998990774155, 0.0001870137930382043, 0.03284187614917755, -0.010871794074773788], [0.016505936160683632, 0.029092401266098022, 0.04904857650399208, 0.0024772705510258675, 0.0036917540710419416, 0.049793828278779984, -0.017264988273382187, -0.0003161280183121562, 0.014477196149528027, 0.030500099062919617, -0.005913706962019205, -0.009391546249389648, 0.0024496684782207012, 0.010550825856626034, -0.017734220251441002, 0.031493768095970154, 0.003629649756476283, 0.019624950364232063, -0.0155536700040102, 0.004923488944768906, 0.05156034976243973, 0.040961217135190964, -0.007135090883821249, -0.040988821536302567, -0.050318263471126556, -0.02994806133210659, 0.036130886524915695, 0.022743964567780495, 0.043500594794750214, -0.045957162976264954, 0.10731618851423264, -0.03458518162369728, 0.027008458971977234, -0.011620399542152882, 0.023116590455174446, -0.013607736676931381, -0.012296645902097225, 0.03513721749186516, 0.04584675654768944, 0.011378883384168148, 0.038366641849279404, 0.021943509578704834, -0.03740057349205017, -0.03223901987075806, -0.05923367664217949, 0.057743173092603683, 0.014145973138511181, -0.06503007560968399, -0.006148322951048613, 0.02351681888103485, 0.01944553852081299, 0.03466798737645149, 0.00752151757478714, -0.047640878707170486, 0.031162545084953308, 0.020480608567595482, -0.023875642567873, 0.057191137224435806, 0.03864265978336334, -0.042065296322107315, -0.011358181945979595, 0.008998218923807144, -0.010681934654712677, 0.04419064149260521, -0.006262180861085653, 0.006044816225767136, 0.015815887600183487, 0.02147427760064602, -0.03237702697515488, -0.010723337531089783, 0.03798021376132965, 0.004502560012042522, 0.04620558023452759, -0.052416007965803146, -0.007204095833003521, -0.043058961629867554, -0.028733577579259872, -0.0027532894164323807, 0.011227072216570377, -0.0024186165537685156, -0.012275944463908672, 0.05252641439437866, -0.008087356574833393, 0.06061377003788948, 0.008687698282301426, -0.026884250342845917, -0.060944993048906326, -0.0017371946014463902, -0.03913949429988861, -0.009605460800230503, -0.05807439610362053, -0.022026315331459045, 0.012420854531228542, 0.03941551223397255, 0.033094678074121475, -0.00990908220410347, 0.044659871608018875, -0.03270824998617172, -0.04223090782761574, 0.03557884693145752, -0.024400079622864723, -0.01676815375685692, -0.03234942629933357, 0.011068361811339855, 0.051891572773456573, -0.04057479277253151, -0.04040918126702309, 0.030776118859648705, -0.001923507428728044, -0.007970048114657402, -0.04780649021267891, -0.017665214836597443, -0.0010393840493634343, 0.08043193817138672, -0.030996933579444885, 0.001978711225092411, -0.048441331833601, 0.003736607264727354, 0.03212860971689224, 0.024055056273937225, -0.03947071731090546, -0.01374574564397335, 0.02878878079354763, -0.08860209584236145, -0.01153759378939867, -0.024124059826135635, -0.016588741913437843, -0.011930921114981174, -0.048579342663288116, -0.0462883859872818, 0.0629323273897171, -0.01852087490260601, 0.03588246926665306, -0.04949020594358444, -0.0015155167784541845, -0.016795756295323372, -0.03795261308550835, -0.01722358539700508, -0.0195145420730114, -0.0354408398270607, 0.027284476906061172, -0.005223659332841635, 0.027436288073658943, 0.021860703825950623, -0.03751097992062569, -0.002844720846042037, 0.033812325447797775, 0.029644440859556198, -0.031631775200366974, -0.00932944193482399, -0.03204580396413803, -0.004868284799158573, -0.026235604658722878, -0.02631841041147709, 0.003746957750990987, -0.010226503945887089, 0.033674318343400955, 0.06398120522499084, 0.013421423733234406, -0.017264988273382187, -0.0022599054500460625, -0.02038400247693062, -0.024896914139389992, 0.008432379923760891, 0.015319054014980793, 0.00958475936204195, -0.048054907470941544, -0.0056273373775184155, -0.072316974401474, -0.06911515444517136, -0.031134942546486855, -0.05454135313630104, -0.020453007891774178, 0.025724969804286957, 0.030831322073936462, -0.02771230787038803, -0.0045094601809978485, -0.03016887605190277, -0.007128190714865923, -0.02892679162323475, 0.00710748927667737, -0.017817026004195213, -0.08396498113870621, -0.0390290841460228, -0.06177305057644844, 0.06977760046720505, -0.01349732931703329, 0.02684284746646881, 0.0018941803136840463, 0.0012601992348209023, 0.022950978949666023, 0.005358218681067228, 0.00950885470956564, 0.042920954525470734, -0.04038158059120178, 0.028402354568243027, -0.016906162723898888, 0.004354199860244989, 0.006020664237439632, 0.021860703825950623, 0.030720913782715797, -0.01693376526236534, 0.057467155158519745, 0.022233329713344574, -0.015388059429824352, -0.027036061510443687, -0.013386921025812626, 0.05901286005973816, -0.0005718768807128072, -0.011089063249528408, -0.008280569687485695, -0.0491865836083889, -0.025448951870203018, 0.036158487200737, -0.02561456337571144, 0.002258180407807231, -0.01980436220765114, 0.01778942346572876, -0.0031586922705173492, 0.06696220487356186, -0.030251681804656982, -0.001467213500291109, -0.006786616984754801, -0.02502112276852131, -0.013097100891172886, 0.006300133652985096, 0.01932132989168167, -0.046674810349941254, -0.02415166236460209, -0.08413059264421463, -0.0031586922705173492, 0.02322699874639511, -0.021943509578704834, -0.036710526794195175, 0.0009160380577668548, -0.015526068396866322, -0.003112114267423749, -0.029616838321089745, -0.017333993688225746, -0.013518030755221844, 0.010813044384121895, -0.011986125260591507, 0.031714580953121185, 0.061883457005023956, 0.004702673759311438, -0.015139642171561718, -0.023406410589814186, -0.046619608998298645, 0.040602393448352814, 0.02647022157907486, 0.06928076595067978, -0.0023720383178442717, 0.02328220196068287, -0.033729519695043564, -0.006372588686645031, -0.0006577015155926347, -0.011585897766053677, -0.03709695115685463, 0.008701498620212078, -0.017817026004195213, 0.005133953411132097, -0.041402850300073624, -0.0040436782874166965, 0.014228778891265392, -0.03704174980521202, -0.0025031473487615585, 0.02010798454284668, -0.013545632362365723, -0.018341463059186935, 0.0404919870197773, -0.026277007535099983, 0.030720913782715797, 0.005610086023807526, -0.04714404419064522, -0.02945122681558132, 0.006048266310244799, 0.006075867917388678, -0.027146467939019203, -0.002525573829188943, 0.005078749731183052, -0.03842184320092201, 0.008597991429269314, 0.0025272988714277744, -0.041485656052827835, 0.009805575013160706, 0.011730806902050972, -0.0027239625342190266, 0.00652784900739789, -0.04521191120147705, -0.0021305216941982508, 0.03717975690960884, -0.009529556147754192, 0.020218390971422195, -0.03290146589279175, 0.04526711627840996, 0.010371414013206959, -0.02503492310643196, -0.03825623169541359, 0.0008668721420690417, -0.015415661036968231, 0.017126979306340218, 0.01570548117160797, 0.03811822459101677, 0.014946429058909416, -0.015360456891357899, 0.027325879782438278, 0.03052770160138607, 0.012938390485942364, -0.021281065419316292, 0.005641138181090355, -0.035689257085323334, 0.06950158625841141, -0.042700137943029404, -0.03530282899737358, -0.06591333448886871, -0.01326961349695921, -0.011213271878659725, 0.008991318754851818, 0.014822220429778099, 0.004519810900092125, 0.01974915899336338, 0.014083868823945522, 0.03811822459101677, -0.02293717861175537, 0.028250543400645256, 0.003307052655145526, -0.01208273135125637, 0.027891719713807106, -0.04449426382780075, -0.056307874619960785, -0.050953105092048645, -0.01743059977889061, -0.009225934743881226, 0.016257518902420998, 0.017886031419038773, 0.023530619218945503, 0.020867036655545235, 0.021653689444065094, 0.0051201521418988705, 0.02733968198299408, 0.025780174881219864, -0.013925158418715, -0.010433518327772617, 0.022743964567780495, -0.024275870993733406, 0.015084438025951385, 0.035468440502882004, 0.05098070949316025, -0.0375937856733799, 0.039084289222955704, 0.003013782436028123, 0.0470336377620697, -0.04333498328924179, 0.015208646655082703, -0.08286090195178986, -0.048717353492975235, 0.0013887205859646201, 0.0004636256489902735, -0.048579342663288116, -0.027381084859371185, -0.007866540923714638, 0.032211415469646454, 0.0019856116268783808, 0.009688266552984715, 0.028374752029776573, -0.008294370956718922, -0.00611382070928812, 0.06315314769744873, 0.018341463059186935, -0.06790067255496979, 0.01208273135125637, 0.06779026240110397, 0.03673812747001648, -0.0045784651301801205, -0.017126979306340218, -0.018769292160868645, 0.025435149669647217, 0.036848537623882294, -0.030058467760682106, 0.012503660283982754, 0.02350301668047905, 0.01642313040792942, 0.011020058766007423, 0.004771678242832422, 0.053354471921920776, 0.025849178433418274, -0.050097446888685226, -0.015181045047938824, -0.022950978949666023, 0.01821725443005562, -0.00652784900739789, -0.004009176045656204, -0.04377661272883415, 0.010399015620350838, -0.006790067069232464, 0.026415018364787102, 0.0665205791592598, 0.013787148520350456, 0.03731776773929596, -0.002270256169140339, -0.0031690429896116257, -0.040685199201107025, -0.010405915789306164, -0.031493768095970154, -0.012041328474879265, -0.04143045097589493, -0.030996933579444885, -0.009708967991173267, -0.011703205294907093, 0.024676097556948662, 0.04860694333910942, 0.013242010958492756, 0.05186396837234497, -0.005416872911155224, 0.0158986933529377, -0.007155792322009802, -0.024896914139389992, 0.028816383332014084, -0.0023634126409888268, -0.028015928342938423, 0.03593767434358597, 0.00471992464736104, 0.007404209580272436, 0.01041971705853939, -0.012821082025766373, 0.031824991106987, 0.022757766768336296, -0.025586960837244987, -0.012896987609565258, -0.0672934278845787, -0.021819300949573517, 0.016947565600275993, 0.06668619066476822, 0.015788286924362183, -0.052388403564691544, 0.002739488612860441, 0.014891224913299084, 0.006086218636482954, 0.019707756116986275, -0.03682093322277069, 0.012752077542245388, 0.006382939405739307, -0.016105707734823227, 0.025517955422401428, -0.004385252017527819, 0.038725465536117554, -0.012179338373243809, 0.016975168138742447, -0.01211033295840025, 0.023765236139297485, 0.0036779530346393585, 0.02691185288131237, -0.072316974401474, 0.008342674002051353, -0.027367282658815384, 0.008729101158678532, -0.009722769260406494, -0.051035910844802856, 0.027215473353862762, -0.03317748382687569, 0.0166439451277256, 0.05611466243863106, 0.05730154365301132, 0.027298279106616974, 0.010985556058585644, 0.004968341905623674, 0.01305569801479578, -0.012896987609565258, 0.011523793451488018, -0.026277007535099983, -0.004785479512065649, -0.02220572903752327, 0.0009591660345904529, -0.010178200900554657, 0.03897388279438019, 0.0034743892028927803, 0.005330617073923349, -0.036710526794195175, 0.004195488523691893, -0.0029603037983179092, 0.014028665609657764, 0.02307518757879734, -0.06017214059829712, -0.016671547666192055, 0.02241274155676365, 0.003953971900045872, 0.04245172068476677, -0.023972250521183014, -0.03781460225582123, -0.0264012161642313, -0.021750297397375107, -0.030113672837615013, 0.04107162728905678, -0.016312722116708755, -0.002478995593264699, -0.0206186193972826, -0.027450088411569595, -0.004954541102051735, 0.05917847156524658, -0.02524193748831749, 0.06403640657663345, -0.0470060333609581, -0.0017820476787164807, -0.013186807744204998, 0.01606430485844612, -0.00034825835609808564, 0.00835647527128458, -0.040685199201107025, -0.022398941218852997, 0.009867679327726364, -0.04013316333293915, 0.00018954741244670004, 0.021432874724268913, 0.022481746971607208, -0.004543962888419628, -0.010916551575064659, -0.017734220251441002, -0.003472663927823305, -0.024538088589906693, 0.0150154335424304, -0.01019200123846531, -0.02539374679327011, -0.009943583980202675, 0.014028665609657764, -0.033232685178518295, 0.004671621602028608, 0.0029447777196764946, -0.02914760634303093, -0.004223090596497059, -0.0010204077698290348, -0.02067382261157036, -0.0300308670848608, -0.028029728680849075, 0.006200076546519995, -0.01569167897105217, -0.004847583826631308, 0.005796398967504501, -0.004637118894606829, -0.000653819995932281, -0.018313860520720482, 0.017748020589351654, 0.009557157754898071, -0.009129328653216362, 0.02870597504079342, 0.01522244792431593, 0.03096933104097843, 0.030362090095877647, 0.04035397619009018, 0.005723943933844566, 0.0030362089164555073, -0.0028930241242051125, 0.003850464941933751, 0.006493346765637398, -0.017333993688225746, -0.016036704182624817, 0.023420210927724838, 0.014974030666053295, -0.015181045047938824, 0.013338617980480194, -0.00025035784346982837, -0.015277651138603687, 0.0043369485065341, 0.005682541057467461, 0.020522011443972588, -0.0014206352643668652, 0.018410466611385345, 0.02480030618607998, -0.005216759163886309, -0.010247205384075642, 0.006576152518391609, 0.0007409384706988931, 0.03751097992062569, 0.018769292160868645, -0.011330579407513142, 0.06541649997234344, 0.020508211106061935, 0.018672684207558632, -0.05945449322462082, 0.03491640463471413, 0.006424342282116413, -0.022881975397467613, 0.01743059977889061, -0.02112925425171852, -0.010516324080526829, -0.022081520408391953, 0.00445080641657114, 0.01599530130624771, -0.041623663157224655, -0.019293727353215218, 0.01475321501493454, 0.017154579982161522, -0.004071280360221863, 0.0007694029482081532, 0.021667491644620895, -0.002981005236506462, 0.038449447602033615, -0.005575583782047033, 0.027229273691773415, 0.0036538015119731426, 0.029699644073843956, 0.018769292160868645, -0.03201820328831673, -0.027519093826413155, -0.015194845385849476, -0.03861505910754204, -0.002114995615556836, 0.047254450619220734, 0.017610011622309685, -0.00025639578234404325, 0.04609517380595207, 0.014090769924223423, 0.010799243114888668, -0.004499109461903572, -0.02950643002986908, -0.030279284343123436, 0.010474921204149723, -0.01656113937497139, -0.01153759378939867, 0.018106846138834953, -0.013179906643927097, -0.011261574923992157, -0.008549688383936882, 0.02357202209532261, 0.007790636271238327, 0.0173477940261364, 0.011178769171237946, -0.019335130229592323, -0.037787001579999924, 0.05912327021360397, 0.014863623306155205, -0.015360456891357899, 0.018051642924547195, -0.0008793792803771794, -0.012365651316940784, -0.028981994837522507, -0.0023496116045862436, 0.016616342589259148, -0.0004019526531919837, 0.002380663761869073, 0.008591091260313988, 0.03566165268421173, 0.03074851632118225, 0.014449594542384148, -0.012103432789444923, 0.031631775200366974, 0.04860694333910942, 0.004640569444745779, 0.01544326264411211, 0.0043576499447226524, -0.003422635607421398, 0.019266126677393913, 0.009681366384029388, 0.003051734995096922, -0.018024040386080742, 0.03174218535423279, 0.0063622379675507545, -0.007542219012975693, 0.007473214529454708, 0.002101194579154253, 0.025435149669647217, -0.03199060261249542, 0.01932132989168167, -0.007383508142083883, 0.0006093981792218983, 0.04584675654768944, 0.0016224741702899337, 0.022730164229869843, 0.0004269668716005981, -0.027394885197281837, 0.009750370867550373, -0.03673812747001648, 0.0025825027842074633, 0.027726108208298683, -0.022316135466098785, 0.0058481525629758835, -0.015636475756764412, -0.006300133652985096, 0.04468747600913048, -0.045156706124544144, 0.0325702428817749, -0.05012505128979683, -0.01504303514957428, -0.012303547002375126, -0.004744076635688543, -0.0077354321256279945, -0.03552364557981491, -0.0018527775537222624, -0.010916551575064659, 0.0033432801719754934, 0.016657745465636253, -0.006589953321963549, 0.025352343916893005, -0.023420210927724838, -0.004109232686460018, 0.023530619218945503, 0.06773506104946136, 0.004412853624671698, -0.0009401896968483925, -0.057467155158519745, -0.09572339057922363, 0.02118445746600628, 0.03891867771744728, -0.05741195008158684, -0.04656440392136574, -0.057743173092603683, -0.01758240908384323, -0.028195340186357498, 0.00806665513664484, 0.06646537035703659, -0.007935546338558197, -0.01727878861129284, -0.002861971966922283, -0.036627721041440964, 0.0074387118220329285, 0.014083868823945522, 0.01821725443005562, -0.0009746920550242066, -0.008052853867411613, -0.008266769349575043, 0.0032173465006053448, -0.02820914052426815, 0.02459329180419445, -0.04399742931127548, -0.010060892440378666, -0.00462676864117384, -0.0015758959343656898, -0.0016207490116357803, 0.032073408365249634, -0.0253109410405159, 0.044880688190460205, 0.04057479277253151, -0.008535887114703655, 0.0013024646323174238, 0.013428323902189732, -0.018493272364139557, -0.003112114267423749, -0.026580629870295525, 0.0051650055684149265, -0.03522002324461937, 0.011068361811339855, 0.03704174980521202, -0.05708072707056999, -0.001002294011414051, -0.03317748382687569, 0.009308740496635437, -0.03632409870624542, 0.0012472608359530568, 0.04294855520129204, 0.0027774411719292402, 0.024289671331644058, -0.0332878902554512, 0.012648570351302624, -0.010723337531089783, -0.04170646890997887, 0.013338617980480194, -0.007093688007444143, 0.006879773456603289, 0.025517955422401428, -0.0002958578697871417, -0.0017199433641508222, 0.008135659620165825, -0.007404209580272436, 0.015815887600183487, 0.010619831271469593, 0.01886589825153351, -0.02068762294948101, -0.03210100904107094, -0.01792743429541588, 0.03314988315105438, -0.02582157775759697, -0.014339187182486057, 0.026566827669739723, 0.022164326161146164, -0.007894143462181091, 0.007055735681205988, -0.0038953181356191635, -0.005758446175605059, -0.017182182520627975, -0.01865888386964798, -0.02473130263388157, 0.04534992203116417, -0.009564057923853397, -0.01765141449868679, -0.0037124555092304945, 0.010537025518715382, 0.020811831578612328, 0.026346012949943542, -0.0030241331551223993, 0.011358181945979595, -0.013304115273058414, -0.0056963418610394, -0.007928645238280296, 0.0002669621317181736, -0.01937653310596943, -0.020342599600553513, -0.0029620288405567408, 0.00404712837189436, -0.06983280926942825, -0.01865888386964798, 0.03717975690960884, -0.030113672837615013, 0.0015250049764290452, -0.019776761531829834, 0.003557194722816348, 0.08589711040258408, -0.014684210531413555, -0.05669430270791054, -0.014449594542384148, -0.01490502618253231, -0.04794450104236603, -0.03143856301903725, 0.02842995710670948, 0.003553744638338685, 0.021432874724268913, 0.012972893193364143, 0.005596285220235586, -0.008004550822079182, 0.02068762294948101, -0.001301602111198008, 0.00020658296125475317, -0.007155792322009802, -0.03074851632118225, 0.02141907438635826, 0.015788286924362183, 0.013911357149481773, -0.0150154335424304, 0.002025289461016655, -0.011765309609472752, 0.02401365339756012, -0.02416546270251274, 0.021460477262735367, -0.01033691130578518, 0.03262544423341751, 0.013987262733280659, 0.0006413128576241434, 0.02206771820783615, -0.022178126499056816, -0.0036745029501616955, 0.027864117175340652, 0.01475321501493454, 0.015636475756764412, -0.018341463059186935, -0.027519093826413155, -0.03284626081585884, -0.019114315509796143, -0.021570883691310883, 0.006186275742948055, 0.026497824117541313, -0.036351703107357025, 0.007148892153054476, 0.00023763510398566723, -0.014546200633049011, -0.019583547487854958, -0.03535803407430649, 0.012096532620489597, -0.02285437285900116, 0.015457063913345337, -0.03839424252510071, -0.018907301127910614, 0.0014525499427691102, -0.004602616652846336, 0.0022150524891912937, 0.0048717353492975235, -0.014421992935240269, 0.009957385249435902, -0.0054134223610162735, 0.03933270648121834, 0.014739414677023888, 0.012469158507883549, -0.004119583405554295, 0.01968015357851982, -0.021460477262735367, 0.0027067111805081367, -0.012717574834823608, -0.03342590108513832, -0.039387911558151245, -0.013083300553262234, 0.027960725128650665, 0.011509992182254791, 0.018783092498779297, 0.012303547002375126, 0.010909650474786758, 0.009950485080480576, -0.009612361900508404, -0.001112701604142785, -0.019348932430148125, -0.01676815375685692, 0.03993994742631912, 0.05779837816953659, 0.022978581488132477, -0.025048723444342613, -0.004768228158354759, -0.0027998676523566246, 0.023061387240886688, -0.022812969982624054, -0.009025821462273598, -0.0339779369533062, -0.008142560720443726, 0.008977517485618591, 0.017775623127818108, -0.024496685713529587, -0.022150523960590363, -0.004471507854759693, 0.01903150975704193, -0.016657745465636253, -0.01787222921848297, 0.0017889480805024505, -0.02126726321876049, 0.019183320924639702, 0.0019925120286643505, 0.06160743907094002, -0.011751508340239525, -0.0311073400080204, -0.020314998924732208, 0.014187376014888287, -0.00990218110382557, -0.01635412499308586, 0.015236248262226582, 0.04027117043733597, -0.003991924691945314, 0.03657251596450806, 0.0042127398774027824, 0.015346656553447247, -0.00806665513664484, -0.013166106306016445, -0.00011180925503140315, 0.007873442023992538, -0.005389270838350058, 0.02647022157907486, -0.01432538591325283, -0.012365651316940784, 0.04468747600913048, -0.008425479754805565, 0.019555944949388504, -0.011855015531182289, 0.03237702697515488, -0.01533285528421402, 0.01894870400428772, 0.010143698193132877, -0.0022271282505244017, 0.014877423644065857, 0.014049367047846317, 0.022605955600738525, -0.014339187182486057, 0.004630218725651503, -0.008039053529500961, -0.014546200633049011, -0.009957385249435902, 0.017251187935471535, 0.0027532894164323807, 0.02653922699391842, -0.02537994645535946, 0.018934903666377068, -0.010357612743973732, -0.036158487200737, -0.013462826609611511, 0.02256455272436142, 0.0024306923151016235, 0.03535803407430649, 0.006206977181136608, 0.03676573187112808, 0.029699644073843956, 0.04071280360221863, -0.021515680477023125, 0.03657251596450806, 0.053630489856004715, -0.03364671394228935, -0.0016725026071071625, -0.0375937856733799, 0.008943015709519386, -0.018562277778983116, -0.017692817375063896, 0.04457706958055496, 0.04562593996524811, -0.0020666923373937607, -0.02972724661231041, 0.03232182562351227, -0.005175356287509203, -0.0014421992236748338, 0.02190210670232773, 0.0064588445238769054, 0.010785441845655441, 0.03444717079401016, 0.002240929286926985, -0.0075836218893527985, 0.03383992984890938, 0.013538731262087822, 0.019072912633419037, 0.02733968198299408, 0.014836020767688751, -0.0057756975293159485, 0.008522086776793003, -0.00031138391932472587, 0.014490997418761253, -0.028195340186357498, 0.039387911558151245, 0.03320508450269699, -0.027601899579167366, -0.010909650474786758, 0.010750940069556236, 0.00810115784406662, -0.003664152231067419, 0.004516360815614462, 0.014449594542384148, 0.009412247687578201, 0.0034743892028927803, 0.024027453735470772, 0.024607094004750252, -0.007756133563816547, -0.016257518902420998, -0.01059222873300314, -0.026056192815303802, -0.029920458793640137, -0.035330429673194885, -0.012041328474879265, -0.023737633600831032, 0.004402502905577421, -0.046702414751052856, -0.01001948956400156, 0.03320508450269699, -0.015871092677116394, 0.02264735847711563, 0.013007394969463348, 0.018189651891589165, 0.02633221261203289, 0.018037840723991394, -0.011385783553123474, -0.0158986933529377, 0.030914127826690674, -0.016823356971144676, 0.021957311779260635, 0.0004662133287638426, -0.017817026004195213, 0.031079739332199097, 0.022964781150221825, -0.016091907396912575, -0.014711812138557434, 0.004764778073877096, -0.0184380691498518, 0.0325426384806633, -0.02213672362267971, -0.018645083531737328, -0.03753858432173729, 0.051753561943769455, -0.0006180237978696823, -0.006700361147522926, 0.036351703107357025, 0.029037198051810265, 0.013110902160406113, 0.01743059977889061, 0.010330011136829853, 0.027808913961052895, -0.035109616816043854, -0.03281866014003754, 0.011654902249574661, -0.004229991231113672, -0.020508211106061935, -0.0023496116045862436, -0.008563489653170109, 0.014780817553400993, 0.010088494047522545, -0.025642164051532745, -0.007528418209403753, 0.0033174033742398024, 0.01461520604789257, 0.021363869309425354, -0.033370696008205414, 0.0026377064641565084, 0.03665532171726227, -0.01618851348757744, 0.025214334949851036, 0.014518599025905132, 0.015125840902328491, 0.02270256169140339, 0.00961926206946373, -0.013559432700276375, -0.03610328584909439, -0.02445528283715248, -0.015470864251255989, 0.009308740496635437, -0.008073555305600166, 0.010771641507744789, 0.034033142030239105, 0.0008612655219621956, -0.023779036477208138, -0.001897630630992353, -0.026815244928002357, 0.007638825569301844, -0.009412247687578201, -0.0069763800129294395, -0.042341314256191254, 0.031134942546486855, 0.014546200633049011, 0.02655302733182907, 0.0027998676523566246, 0.02328220196068287, 0.016091907396912575, 0.0065312995575368404, -0.0008405640837736428, 0.005720493849366903, 0.055010586977005005, 0.012413954362273216, 0.028195340186357498, -0.028540363535284996, 0.03361911326646805, -0.021322468295693398, 0.015374258160591125, 0.000889298680704087, 0.018120646476745605, -0.005523830186575651, -0.013966561295092106, -0.00015709362924098969, 0.0037711095064878464, -0.01743059977889061, 0.020314998924732208, -0.02162608876824379, -0.007204095833003521, 0.027974525466561317, 0.007473214529454708, -0.0046578203327953815, -0.00864629540592432, 0.011965423822402954, -0.03411594778299332, -0.0034968156833201647, 0.012890087440609932, 0.006231128703802824, -0.022771567106246948, 0.03886347636580467, 0.0108475461602211, 0.006479545962065458, 0.020784230902791023, -0.05691511556506157, -0.01490502618253231, 0.0173477940261364, -0.017734220251441002, -0.012565764598548412, -0.015001632273197174, -0.04968341812491417, -0.015415661036968231, 0.004985593259334564, 0.0005761896609328687, 0.015608874149620533, 0.00861179269850254, -0.012641670182347298, 0.01113736629486084, 0.0158986933529377, -0.008632494136691093, 0.08230886608362198, 0.012469158507883549, -0.0033933084923774004, -0.010640532709658146, 0.03124535083770752, 0.0006840095738880336, -0.0042161899618804455, 0.010951053351163864, 0.011275376193225384, 0.03334309533238411, -0.02537994645535946, 0.028761180117726326, 0.040906015783548355, -0.001732019241899252, -0.008404778316617012, -0.0037849105428904295, 0.008694598451256752, 0.025987189263105392, 0.03008607029914856, 0.025862980633974075, 0.010474921204149723, -0.028402354568243027, -0.002908550202846527, 0.00766642764210701, -0.02053581364452839, -0.028623169288039207, 0.019197121262550354, -0.011192570440471172, -0.012434655800461769, 0.01157209649682045, -0.0021546732168644667, 0.01363533828407526, 0.009777972474694252, 0.015112039633095264, -0.016243718564510345, -0.012269044294953346, -0.0045784651301801205, -0.016906162723898888, 0.027008458971977234, 0.011779110878705978, -0.028319548815488815, 0.016243718564510345, -0.029313217848539352, -0.010468020103871822, -0.001008331892080605, 0.00037413512472994626, -0.007894143462181091, -0.009943583980202675, 0.01599530130624771, -0.024855511263012886, 0.004750976804643869, -0.018838295713067055, -0.03632409870624542, -0.01772041991353035, -0.03188019245862961, 0.0037642091047018766, 0.008197763934731483, 0.012876286171376705, -0.027546696364879608, -0.009971186518669128, 0.013580134138464928, 0.0037642091047018766, -0.05114632099866867, 0.010819944553077221, -1.2540804164018482e-05, -0.004229991231113672, -0.007576721254736185, -0.02408265694975853, -0.019473139196634293, 0.016616342589259148, -0.016312722116708755, -0.018493272364139557, 0.011033859103918076, -0.006238029338419437, -0.03875306621193886, 0.017527205869555473, -0.013173006474971771, 0.015581272542476654, -0.01266237162053585, -0.024358676746487617, -0.010385214351117611, -0.0300308670848608, 0.0007400759495794773, 0.06475405395030975, -0.019224723801016808, 0.0061414227820932865, -0.0009600285557098687, 0.03919469565153122, -0.01041971705853939, 0.06199386715888977, 0.006320835091173649, -0.03654491528868675, 0.005344417877495289, 0.007066086400300264, -0.005616986658424139, 0.018051642924547195, -0.010530124418437481, -0.028761180117726326, 0.014849822036921978, -0.012531262822449207, 0.017610011622309685, -0.01225524302572012, -0.007818237878382206, 0.019224723801016808, -0.028871586546301842, 0.015470864251255989, 0.0004271825309842825, -0.009315640665590763, -0.010895850136876106, 0.014546200633049011, 0.019293727353215218, 0.005565233062952757, 0.026166601106524467, -0.022757766768336296, -0.01968015357851982, -0.022688761353492737, -0.009777972474694252, -0.025007320567965508, 0.010840645991265774, -0.007901043631136417, -0.01056462712585926, -0.011309877969324589, 0.008570389822125435, 0.004623318091034889, 0.007100588642060757, 0.04027117043733597, -0.029892858117818832, 0.008922314271330833, 0.0019338580314069986, 0.015470864251255989, 0.0055548823438584805, -0.0017052798066288233, 0.006379488855600357, 0.005382370203733444, 0.026442619040608406, -0.007562920451164246, 0.0017889480805024505, -0.012434655800461769, 0.012365651316940784, -0.020163187757134438, -0.008977517485618591, 0.02003897912800312, -0.010171299800276756, -0.0166439451277256, -0.013593935407698154, -0.0006352749769575894, 0.001964910188689828, -0.024634694680571556, -0.012179338373243809, 0.0010712987277656794, -0.00918453186750412, 0.0026377064641565084, 0.004426654428243637, 0.01816204935312271, 0.015112039633095264, 0.0017561708809807897, 0.019210921600461006, -0.023737633600831032, 0.009550257585942745, 0.0011644550831988454, -0.00022491234994959086, 0.00932944193482399, -0.017375396564602852, -0.021681291982531548, 0.029975662007927895, 0.006034465506672859, 0.01297979336231947, 0.02892679162323475, -0.015539869666099548, 0.01461520604789257, -0.028181539848446846, -0.006934977136552334, 0.02445528283715248, 0.020121784880757332, -0.026484021916985512, -0.003472663927823305, 0.029423624277114868, 0.027077462524175644, -0.06607894599437714, -0.0003075023996643722, -0.00961926206946373, 0.014007964171469212, -0.023889444768428802, -0.01421497855335474, -0.030417293310165405, -0.016147110611200333, 0.026083795353770256, -0.010178200900554657, 0.010095395147800446, 0.019914770498871803, 0.004851033911108971, -0.005013194866478443, 0.017775623127818108, -0.04860694333910942, 0.022978581488132477, -0.04132004454731941, 0.012731376104056835, 0.01656113937497139, 0.03911188989877701, 0.011820513755083084, 0.023668628185987473, -0.019652552902698517, -0.03654491528868675, -0.020701425150036812, 0.009846977889537811, -0.020494410768151283, -0.0038953181356191635, 0.027381084859371185, 0.032873861491680145, -0.011675603687763214, 0.023889444768428802, 0.02865077182650566, 0.00943984929472208, 0.009315640665590763, 0.007035034243017435, -0.009702067822217941, -0.005275412928313017, 0.006772816181182861, -0.0009746920550242066, -0.02950643002986908, 0.002629081020131707, -0.019942373037338257, 0.05018025264143944, -0.034750793129205704, -0.00014437087520491332, 0.019707756116986275, -0.0031017635483294725, 0.023917045444250107, 0.03811822459101677, -0.022868173196911812, -0.00918453186750412, 0.006934977136552334, -0.0067521147429943085, -0.0256697665899992, 0.013932058587670326, 0.0020770428236573935, -0.02019079029560089, -0.013628438115119934, 0.003985024057328701, -0.018037840723991394, -0.023337405174970627, 0.022122923284769058, -0.0027308629360049963, -0.019210921600461006, -0.004250692669302225, 0.020370202139019966, 0.014366788789629936, -0.01736159436404705, 0.0046509201638400555, -0.028954392299056053, 0.03096933104097843, -0.008549688383936882, -0.009715869091451168, 0.014083868823945522, 0.029202809557318687, -0.007818237878382206, -0.0074387118220329285, -0.003636550158262253, -0.001825175597332418, -0.013945859856903553, 0.006576152518391609, -0.012469158507883549, 0.036048080772161484, -0.013317916542291641, 0.007763034198433161, 0.0499042347073555, -0.000534786784555763, -0.03298427164554596, -0.053492482751607895, -0.0016664647264406085, -0.01763761416077614, 0.010806143283843994, 0.006589953321963549, -0.02199871465563774, -0.04686802625656128, 0.008949915878474712, -0.02452428825199604, 0.011751508340239525, 0.016823356971144676, 0.03096933104097843, -0.010716437362134457, 0.005051147658377886, 0.005289214197546244, -0.008363375440239906, 0.017444400116801262, 0.006990181282162666, -0.019542144611477852, 0.03268064931035042, 0.023420210927724838, 0.015346656553447247, 0.044797882437705994, 0.009950485080480576, 0.02019079029560089, 0.01770661771297455, -0.0020321898628026247, 0.0354132354259491, -0.018976306542754173, 0.02814013697206974, -0.012793480418622494, -0.02740868553519249, 0.007859640754759312, 0.003847014857456088, 0.0007896730676293373, -0.007418010383844376, -4.380184327601455e-05, 0.007742332760244608, 0.01576068438589573, 0.03549604117870331, -0.0007763034082017839, -0.0058481525629758835, 0.007445612456649542, -0.006579602602869272, -0.036848537623882294, -0.02206771820783615, 0.006358787417411804, 0.032791055738925934, -0.012903887778520584, -0.011468589305877686, 0.023737633600831032, 0.057743173092603683, 3.8599529943894595e-05, 0.011489290744066238, 0.015415661036968231, -0.048358529806137085, 0.018672684207558632, 0.02089463733136654, 0.009350143373012543, -0.002896474441513419, -0.00257560214959085, 0.011440987698733807, -0.0014585878234356642, -0.007769934833049774, 0.03847704827785492, -0.053492482751607895, -0.007714730687439442, 0.021225860342383385, 0.02046680822968483, 0.02053581364452839, -0.005106351338326931, -0.03052770160138607, 0.002458294155076146, -0.0005192607059143484, 0.016022901982069016, 0.019873367622494698, 0.01435298752039671, 0.041982490569353104, 0.023019984364509583, 0.019252324476838112, 0.01635412499308586, -0.0066072046756744385, 0.01915571838617325, 0.01363533828407526, -0.012648570351302624, -0.015940096229314804, 0.017264988273382187, -0.017982637509703636, -0.008549688383936882, -0.003964322619140148, 0.009577859193086624, -0.021543283015489578, -0.00305691035464406, 0.06044815853238106, 0.012993594631552696, 0.01678195409476757, -0.0026187303010374308, -0.029534032568335533, -0.021101651713252068, -0.0006167299579828978, 0.01305569801479578, -0.0038056119810789824, 0.024317273870110512, 0.013932058587670326, 0.003577896161004901, -0.00582400057464838, 0.003327754093334079, -0.037069350481033325, -0.018355263397097588, 0.013483528047800064, -0.016657745465636253, 0.010785441845655441, -0.007148892153054476, -0.0701640322804451, 0.002824019407853484, -0.0274914912879467, 0.026208003982901573, -0.01857607811689377, 0.028264345601201057, 0.007169593591243029, 0.040464386343955994], [0.026296434924006462, 0.016412239521741867, 0.028402253985404968, 0.02937619760632515, -0.013161378912627697, -0.0002449250314384699, -0.012759956531226635, -0.01950516365468502, 0.037852123379707336, 0.074651338160038, -0.01081865280866623, 0.021742597222328186, 0.008883930742740631, -0.015385651960968971, -0.01855754293501377, 0.0245986171066761, -0.008989221416413784, 0.03624643757939339, 0.025401460006833076, 0.004919065162539482, 0.030823947861790657, 0.026309596374630928, 0.025375137105584145, -0.010667297057807446, -0.043511517345905304, -0.046775538474321365, 0.025822624564170837, 0.029850006103515625, 0.025204040110111237, -0.06201641634106636, 0.0833904966711998, -0.01100949291139841, 0.010838394984602928, -0.018189026042819023, 0.03887871280312538, 0.015306683257222176, -0.04438016936182976, 0.007271661423146725, 0.04756522178649902, 0.016965016722679138, -0.019821036607027054, 0.03590423986315727, -0.020018456503748894, -0.036378052085638046, -0.05948943272233009, 0.07833652198314667, 0.01508293952792883, -0.04559101536870003, -0.013766801916062832, 0.010562006384134293, -0.027033472433686256, -0.01947884075343609, 0.020202716812491417, -0.046222761273384094, 0.022992927581071854, 0.006909723859280348, -0.01941303350031376, 0.008824704214930534, 0.03561469167470932, -0.014740743674337864, 0.028533868491649628, -0.04466971755027771, -0.011114784516394138, 0.05311932414770126, -0.010798911564052105, 0.012305889278650284, 0.01816270314157009, 0.015925267711281776, -0.050960857421159744, 0.005827200133353472, 0.04693347588181496, 0.025927916169166565, -0.03548307716846466, -0.03816799819469452, -0.0011721852933987975, -0.03466707095503807, 0.01202291902154684, 0.017662569880485535, -0.03261389583349228, -0.0004927291302010417, -0.004409061744809151, 0.033219318836927414, 0.021847888827323914, 0.04777580499649048, -0.00245130667462945, 0.0068373363465070724, -0.03182421252131462, 0.0007012546993792057, -0.049223557114601135, -0.009765743277966976, -0.022782346233725548, 0.012384857051074505, -0.02062387950718403, 0.029165614396333694, 0.02457229420542717, -0.04401164874434471, 0.018781287595629692, -0.023743126541376114, -0.03629908338189125, 0.05127673223614693, 0.0015102681936696172, 0.01173336897045374, -0.01617533341050148, 0.030639689415693283, 0.045564692467451096, -0.06022646650671959, -0.04114247113466263, 0.031324081122875214, 0.013661511242389679, -0.039194583892822266, -0.07870504260063171, -0.01911032199859619, -0.025835786014795303, 0.07380901277065277, -0.028244318440556526, -0.02012374810874462, -0.0651751458644867, 0.02137407846748829, 0.03416693955659866, 0.017781022936105728, -0.044222231954336166, -0.04443281516432762, 0.031034531071782112, -0.08428546786308289, 0.02274286188185215, -0.03603585436940193, -0.01780734583735466, 0.003321602940559387, -0.05754154548048973, -0.01633327081799507, 0.07117673754692078, 0.00735063012689352, 0.03479868546128273, -0.03793109208345413, -0.027691541239619255, 0.0004705192695837468, 0.0018409477779641747, 0.011812337674200535, -0.01809689588844776, -0.04577527567744255, 0.036351729184389114, 0.007423017639666796, 0.025296170264482498, 0.004606482572853565, -0.04998691752552986, 0.00022991282457951456, 0.03179788962006569, 0.07170318812131882, -0.03424590826034546, 0.007850762456655502, -0.007126886397600174, 0.001400041626766324, -0.005639650858938694, -0.013227185234427452, -0.004435384646058083, -0.009291932918131351, 0.03643069416284561, 0.07133467495441437, -0.0007267548935487866, -0.0034976364113390446, 7.773438846925274e-05, -0.01395106129348278, -0.035562045872211456, -0.011226655915379524, 0.030086912214756012, -0.012075564824044704, -0.03627276048064232, 0.018123218789696693, -0.057067736983299255, -0.0708608627319336, -0.024677583947777748, -0.041774217039346695, -0.015583071857690811, 0.03237698972225189, -0.006649786606431007, -0.01846541464328766, -0.0024677584879100323, -0.04938149079680443, 0.014806550927460194, -0.02036065235733986, 0.003767444519326091, -0.010259294882416725, -0.0744934007525444, -0.05406694486737251, -0.054909270256757736, 0.050171174108982086, -0.03158731013536453, -0.0068241748958826065, -0.022769184783101082, 0.0024875004310160875, 0.03748360648751259, 0.05675186589360237, 0.017859989777207375, 0.057330965995788574, -0.026915019378066063, 0.02598056197166443, -0.013404863886535168, -0.010048712603747845, 0.02283499203622341, -0.003244279883801937, 0.03379841893911362, -0.010884460061788559, 0.028454899787902832, 0.017465149983763695, 0.0012412825599312782, -0.039984267204999924, 0.01813638024032116, 0.026414886116981506, 0.005465262569487095, -0.01154910959303379, -0.013299573212862015, -0.07054498791694641, -0.007784955203533173, 0.035114556550979614, -0.037562575191259384, -0.0008744091028347611, 0.005208615679293871, 0.04348519444465637, -0.02483552135527134, 0.05433017015457153, 0.017333535477519035, 0.014595968648791313, 0.013391702435910702, 0.007462501525878906, -0.01950516365468502, -0.0024233388248831034, -0.009469611570239067, -0.05469869077205658, 0.037167731672525406, -0.06296403706073761, -0.0018968837102875113, 0.04327461123466492, -0.014727582223713398, -0.027507280930876732, 0.025414621457457542, -0.028086381033062935, -0.0019988843705505133, -0.01937354914844036, -0.015991074964404106, 0.0010808781953528523, 0.017017662525177002, 0.01256253570318222, 0.009291932918131351, 0.043801069259643555, -0.010831814259290695, -0.0073243072256445885, -0.02124246582388878, -0.0037345411255955696, 0.010798911564052105, 0.032692864537239075, 0.033772096037864685, 0.0088576078414917, 0.017267728224396706, -0.009087932296097279, 0.005590295419096947, -8.827378042042255e-05, 0.015727847814559937, -0.016162171959877014, 0.04572262987494469, -0.022519119083881378, -0.024585455656051636, -0.016017397865653038, 0.009305094368755817, 0.01581997610628605, -0.041774217039346695, -0.05304035544395447, 0.046512313187122345, -0.03448281064629555, -0.026915019378066063, 0.03516720235347748, -0.011062138713896275, 0.028349610045552254, 0.0246381014585495, -0.025401460006833076, -0.03585159406065941, -0.016978178173303604, -0.0009097802685573697, -0.004001059103757143, 0.020018456503748894, -0.011582013219594955, -0.02869180589914322, -0.008035021834075451, 0.0327981561422348, 0.004833516199141741, 0.00900238286703825, 0.026099013164639473, -0.015346167609095573, -0.0012371696066111326, -0.02512507140636444, 0.019057676196098328, 0.03561469167470932, 0.003596346592530608, -0.017201920971274376, -0.011838659644126892, 0.047196704894304276, 0.023321961984038353, -0.019807875156402588, -0.024717068299651146, -0.004122802056372166, 0.008403540588915348, 0.01091078296303749, -0.00012112581316614524, -0.005504746455699205, 0.0284285768866539, -0.034193262457847595, -0.0018442381406202912, 0.032982416450977325, -0.009449869394302368, -0.024743391200900078, -0.008719413541257381, -0.05696244537830353, 0.03258757293224335, -0.008469346910715103, -0.03182421252131462, -0.06306932866573334, 0.011726788245141506, 0.023321961984038353, 0.011101623065769672, -0.008508831262588501, 0.018149541690945625, 0.013069248758256435, -0.02078181691467762, 0.060437049716711044, -0.021387239918112755, 0.05140834301710129, 0.022795507684350014, -0.011108203791081905, 0.008416702039539814, -0.041089825332164764, -0.04011588171124458, -0.0379047691822052, -0.010127680376172066, 0.010759427212178707, -0.007949472405016422, -0.012694149278104305, -0.014990810304880142, 0.011838659644126892, 0.05119776353240013, -0.011476722545921803, 0.018281154334545135, 0.027928445488214493, -0.02607269026339054, 0.010798911564052105, 0.004007639829069376, -0.050697628408670425, 0.03887871280312538, 0.027849476784467697, 0.021782081574201584, -0.002703018020838499, 0.047723159193992615, -0.003078117500990629, 0.04506456106901169, -0.03695715218782425, 0.02336144633591175, -0.08560160547494888, -0.008377217687666416, 0.008923415094614029, -0.015477781184017658, -0.015240876004099846, -0.019978972151875496, 0.0022703378926962614, -0.004244544543325901, 9.737363870954141e-05, 0.019584130495786667, -0.0195709690451622, -0.00013089402636978775, 0.012865247204899788, 0.006778109818696976, 0.02120298147201538, -0.041089825332164764, 0.030534397810697556, 0.04498559236526489, -4.580776658258401e-05, -0.019886843860149384, -0.0290866456925869, -0.010028970427811146, -0.018860256299376488, 0.026717597618699074, -0.003879316383972764, -0.010568587109446526, 0.02415112964808941, 0.033245641738176346, 0.03211376443505287, 0.01934722624719143, 0.052329640835523605, 0.030376462265849113, -0.06959737092256546, -0.023242995142936707, 0.01787315122783184, 0.018675995990633965, -0.018083734437823296, 0.033930033445358276, 0.003928671590983868, 0.006356945727020502, -0.016517529264092445, 0.03142937272787094, 0.047591544687747955, 0.04748625308275223, 0.05617276206612587, -0.0246381014585495, 0.030402785167098045, -0.02355886809527874, -0.013674672693014145, -0.029692070558667183, -0.027717864140868187, -0.011516205966472626, -0.026164820417761803, -0.03806270658969879, 0.00958806462585926, 0.006883400958031416, 0.052198026329278946, -0.004300480242818594, 0.03761522099375725, -0.007850762456655502, -0.0012190727284178138, -0.023795772343873978, -0.00607726676389575, 0.05222434923052788, 0.023940548300743103, -0.011378011666238308, 0.0555410161614418, -0.007093983236700296, 0.003602927317842841, -0.006449075415730476, -0.006205589976161718, 0.014306418597698212, 0.020465943962335587, -0.025375137105584145, -0.015701524913311005, -0.08370636403560638, -0.03498294577002525, 0.017307212576270103, 0.03706244379281998, 0.016004236415028572, -0.03506191074848175, -0.021058205515146255, 0.021295109763741493, -0.0009805227164179087, 0.007501985877752304, -0.04806535318493843, 0.003698347369208932, -0.04224802553653717, 0.011851821094751358, 0.030086912214756012, -0.010127680376172066, 0.01758360117673874, 0.004001059103757143, 0.010147422552108765, 0.03192950412631035, -0.003925381228327751, -0.012430922128260136, -0.0005108260083943605, -0.0486970990896225, 0.01604372076690197, -0.05427752435207367, 0.011864982545375824, 0.023519383743405342, -0.05559366196393967, 0.05146098881959915, -0.06391165405511856, 0.010496199131011963, 0.06201641634106636, 0.04061601310968399, 0.06833387911319733, 0.03250860422849655, 0.0032722477335482836, 7.850556721678004e-05, -0.03529881685972214, -0.009357740171253681, -0.015056616626679897, 0.010706781409680843, -0.016741273924708366, 0.011068719439208508, -0.01754411682486534, 0.0015867686597630382, -0.012911312282085419, 0.011384592391550541, 0.0036062176804989576, -0.03074498102068901, -0.01584629900753498, -0.001919916132465005, 0.07054498791694641, -0.040300142019987106, 0.002737566828727722, 0.04511720687150955, 0.01320086233317852, 0.045011915266513824, -0.01908399909734726, -0.004359706770628691, -0.004988162312656641, -0.06506985425949097, -0.006797851994633675, 0.0024842103011906147, -0.014253772795200348, 0.008173216134309769, -0.057752128690481186, -0.02336144633591175, -0.04058969020843506, 0.04574895277619362, -0.020479105412960052, 0.06401694566011429, -0.04266918823122978, 0.025691010057926178, -0.020018456503748894, 0.026388563215732574, 0.01941303350031376, 0.0015513974940404296, 0.006343784276396036, -0.030534397810697556, 0.0061364928260445595, -0.07338784635066986, -0.030139556154608727, 0.039984267204999924, 0.01745198853313923, 0.005494875367730856, -0.011285882443189621, 0.010509360581636429, -0.018649673089385033, -0.02036065235733986, 0.006310881115496159, -0.012549374252557755, -0.03227170184254646, -0.010193487629294395, 0.01428009569644928, -0.009127415716648102, 0.0034384101163595915, -0.01535932905972004, -0.05580424517393112, -0.014674937352538109, -0.004307060968130827, 0.019162967801094055, -0.021163497120141983, -0.03516720235347748, 0.01934722624719143, 0.002350951312109828, 0.008594379760324955, 0.01950516365468502, -0.021940017119050026, -0.01053568348288536, -0.01543829683214426, 0.027428312227129936, -0.0290866456925869, -0.014240611344575882, 0.012687568552792072, -0.013319315388798714, 0.012240082025527954, 0.04024749621748924, 0.010904202237725258, 0.006692560855299234, -0.006370107177644968, 0.024532809853553772, -0.008304829709231853, 0.0384838692843914, -0.011114784516394138, -0.020558074116706848, -0.02675708197057247, 0.022861314937472343, -0.03808902949094772, 0.024164291098713875, 0.02600688487291336, -0.019978972151875496, 0.0038891874719411135, 0.004346545320004225, 0.0066366251558065414, -0.03506191074848175, 0.025375137105584145, 0.013582542538642883, 0.018346961587667465, 0.005738361272960901, -0.012819183059036732, -0.0068110134452581406, 0.01564887911081314, 0.028744449838995934, -0.040800273418426514, 0.0461437925696373, 0.007877085357904434, 0.014846035279333591, -0.06970266252756119, -0.010463295504450798, -0.007877085357904434, -0.0290866456925869, 0.020966075360774994, -0.00258127530105412, -0.020136909559369087, -0.012687568552792072, 0.01793895848095417, 0.013977384194731712, -0.039878975600004196, -0.00240195170044899, 0.03356151655316353, 0.04656495898962021, -0.03887871280312538, 0.007909988053143024, -0.0012379921972751617, -0.005488294642418623, 0.047170381993055344, 0.003481184598058462, 0.03748360648751259, -0.03035013936460018, 0.01617533341050148, -0.005767974071204662, -0.0014757196186110377, -0.041905827820301056, -0.013240346685051918, -0.003803638508543372, -0.002329563954845071, 0.010989750735461712, -0.009410385973751545, -0.004343254957348108, 0.03503558784723282, -0.004395900294184685, 0.012009757570922375, 0.013556219637393951, -0.00013983964163344353, -0.03300873562693596, 0.020834462717175484, -0.03669392317533493, -0.011522786691784859, -0.005353390704840422, -0.036062177270650864, -0.005784425884485245, -0.024401195347309113, 0.007969214580953121, -0.03087659366428852, 0.029613101854920387, -0.004701902624219656, -0.014622291550040245, -0.028744449838995934, 0.04648599028587341, 0.007192693185061216, 0.0009591354755684733, 0.04790741950273514, 0.01336537953466177, -0.007929730229079723, 0.0008197071147151291, -0.007758632767945528, 0.011121365241706371, 0.014806550927460194, -0.030823947861790657, 0.012213759124279022, 0.04093188792467117, 0.03211376443505287, 0.016965016722679138, -0.039747364819049835, 0.02611217461526394, 0.0164385624229908, 0.0038891874719411135, 0.024624940007925034, 0.006903143133968115, -0.01256253570318222, 0.00923270732164383, -0.006060814950615168, 0.016675466671586037, -0.024256421253085136, 0.02388790249824524, -0.030797624960541725, -0.016807081177830696, 0.015214554034173489, 0.02705979347229004, 0.0334562249481678, -0.029876329004764557, 0.013464090414345264, -0.02201898582279682, 0.005119776353240013, 0.015583071857690811, 0.001116249361075461, 0.03208744153380394, -0.015609394758939743, -0.01751779392361641, 0.004836806561797857, -0.0574362576007843, 0.01859702728688717, 0.04224802553653717, -0.006547785829752684, -0.021518854424357414, 0.0173861812800169, -0.019926326349377632, 0.04819696769118309, -0.02898135595023632, 0.04511720687150955, -0.03195582702755928, -0.010575167834758759, -0.009726258926093578, 0.00617597671225667, -0.0030896335374563932, -0.020571235567331314, 0.008278506807982922, -0.034061647951602936, 0.01395106129348278, 0.0033396997023373842, -0.0023986613377928734, 0.01300344243645668, -0.011233236640691757, 0.021295109763741493, -0.002678340533748269, 0.040405433624982834, 0.01853122189640999, -0.015333006158471107, -0.04653863608837128, -0.07680980861186981, -0.004122802056372166, 0.026164820417761803, -0.030797624960541725, -0.053277261555194855, -0.029850006103515625, 0.006248364690691233, 0.003596346592530608, 0.008436443284153938, 0.03564101457595825, -0.04656495898962021, -0.021229304373264313, -0.005356681067496538, -0.03619379177689552, 0.016451723873615265, -0.016149012371897697, -0.0014123804867267609, 0.0024694036692380905, -0.033114027231931686, -0.005718619097024202, 0.030666012316942215, -0.03708876296877861, 0.0422743484377861, -0.010358004830777645, -0.0032409895211458206, 0.0008892156183719635, -0.01251647062599659, -0.007936310954391956, 0.013042925857007504, -0.008929994888603687, 0.02018955536186695, 0.013069248758256435, -0.019399872049689293, 0.03943149000406265, 0.010562006384134293, -0.014674937352538109, 0.015517265535891056, -0.02287447638809681, 0.01147014182060957, -0.021808404475450516, 0.01849173754453659, -0.00977232400327921, -0.04801270738244057, -0.035562045872211456, -0.029586778953671455, 0.01917612925171852, 0.0012873472878709435, 0.012950796633958817, 0.04251125454902649, -0.006465527229011059, 0.02267705462872982, -0.024940812960267067, 0.011397753842175007, -0.0070676603354513645, -0.03872077539563179, 0.029823683202266693, -0.009397224523127079, -0.014003707095980644, 0.01454332284629345, 0.0070808217860758305, 0.02221640758216381, -0.00612662173807621, 0.02600688487291336, -0.0008702961495146155, 0.003321602940559387, -0.00010570231825113297, -0.023650996387004852, -0.004122802056372166, 0.0019215613137930632, 0.04051072150468826, -0.013246927410364151, 0.01692553237080574, 0.012996861711144447, 0.013214023783802986, 0.012101887725293636, 0.016254302114248276, -0.005208615679293871, -0.012312470003962517, -0.014925003051757812, -0.02519087865948677, -0.03956310451030731, 0.03206111863255501, 0.016227979212999344, -0.0268623735755682, -0.011206913739442825, 0.022795507684350014, -0.00042856737854890525, 0.00018693270976655185, -0.009910518303513527, -0.005534359719604254, -0.006103589199483395, -0.02990265190601349, -0.012924473732709885, 0.018912900239229202, -0.03966839611530304, -0.03437751904129982, -0.010404069907963276, -0.012437502853572369, -0.06022646650671959, 0.004316932056099176, 0.03408797085285187, -0.02274286188185215, 0.0025598881766200066, 0.0040471237152814865, 0.026678115129470825, 0.08296933025121689, -0.03292977064847946, -0.056804507970809937, -0.01917612925171852, -0.011654400266706944, -0.037720512598752975, -0.0017504633869975805, 0.022848153486847878, -0.0006050121155567467, 0.020281683653593063, -0.014332741498947144, -0.0036127984058111906, 0.005366552155464888, 0.02503294125199318, -0.01568836346268654, -0.022558603435754776, 0.02990265190601349, -0.007949472405016422, 0.013023183681070805, 0.01303634513169527, 0.011851821094751358, -0.003507507499307394, -0.03748360648751259, -0.008212700486183167, 0.006235203240066767, -0.026349080726504326, 0.0195709690451622, -0.005287583917379379, 0.04938149079680443, 0.016083205118775368, -0.0006950853276066482, -0.0033923452720046043, -0.02186105027794838, 0.009403805248439312, 0.031192466616630554, 0.03656230866909027, 0.011266140267252922, -0.021782081574201584, -0.02065020240843296, 0.019663099199533463, -0.0032936350908130407, 0.007548050489276648, 0.010943686589598656, 0.004191899206489325, -0.008002118207514286, 0.033903710544109344, -0.04106350243091583, -0.012904731556773186, -0.0012371696066111326, -0.019070837646722794, 0.01747831143438816, -0.03074498102068901, 0.01333247683942318, -0.01816270314157009, -0.008995802141726017, -0.003242634702473879, 0.026743920519948006, -0.037167731672525406, -0.0012363470159471035, -0.012141372077167034, 0.014911841601133347, -0.02003161795437336, 0.01388525404036045, 0.021808404475450516, -0.0014312999555841088, 0.009140577167272568, 0.05025014281272888, 0.003609508043155074, 0.023808933794498444, -0.007482243701815605, -0.017215082421898842, -0.024677583947777748, -0.025822624564170837, 0.049276202917099, 0.0077981166541576385, -0.002902084030210972, 0.01380628626793623, 0.022176923230290413, 0.03179788962006569, -0.0013909932458773255, -0.04158995673060417, -0.01208872627466917, -0.0007444404764100909, 0.03969471901655197, 0.05304035544395447, -0.007929730229079723, -0.010647554881870747, 0.012799440883100033, 0.020794978365302086, -0.007817858830094337, 0.026704436168074608, -0.00782443955540657, -0.023019250482320786, -0.019334064796566963, -0.009936841204762459, -0.0019988843705505133, -0.03766786679625511, 0.019162967801094055, -0.03261389583349228, 0.01809689588844776, -0.029823683202266693, 0.01820218563079834, 0.010956848040223122, -0.02417745254933834, 0.00958806462585926, 0.02188737317919731, 0.01588578335940838, -0.004728225059807301, -0.006488559767603874, -0.0007518437341786921, 0.024980297312140465, -0.02721773087978363, -0.04653863608837128, 0.03087659366428852, 0.0410371795296669, -0.0013457509921863675, 0.05727832019329071, -0.007436179090291262, 0.0018524640472605824, -0.011463561095297337, -0.013010023161768913, 0.012424341402947903, -0.009357740171253681, 0.00543235894292593, -0.004165576305240393, -0.03627276048064232, -0.008436443284153938, 0.031034531071782112, 0.00644578505307436, 0.031324081122875214, 0.021953178569674492, 0.021782081574201584, -0.019663099199533463, 0.005508036818355322, 0.021953178569674492, -0.02856019139289856, 0.03456177935004234, 0.038641806691884995, -0.0036950570065528154, -0.015806816518306732, -0.022176923230290413, -0.03292977064847946, 0.003935252316296101, 0.0061661056242883205, 0.01745198853313923, 0.01535932905972004, 0.045933209359645844, -0.0268228892236948, 0.002561533357948065, -0.00223414390347898, -0.033377256244421005, 0.03348254784941673, 0.047038767486810684, -0.01930774189531803, 0.04551204666495323, -0.00617597671225667, 0.03829961270093918, 0.04287977144122124, 0.03700979799032211, -0.0014625581679865718, 0.05035543441772461, 0.034719716757535934, -0.019334064796566963, -0.0021485949400812387, -0.04174789413809776, 0.01065413560718298, -0.010647554881870747, -0.02205847017467022, 0.07049234211444855, 0.0365886315703392, -0.013793124817311764, 0.006968949921429157, 0.014398547820746899, -0.0002792679879348725, 0.01947884075343609, -0.002877406310290098, 0.0012569116661325097, 0.021874211728572845, 0.03479868546128273, 0.022163761779665947, -0.0032212473452091217, 0.028112703934311867, -0.011483302339911461, 0.02163730561733246, 0.007008434273302555, 0.005264551378786564, 0.015043456107378006, 0.009746001102030277, 0.0021304981783032417, 0.024256421253085136, -0.011325365863740444, 0.035930562764406204, 0.035140879452228546, -0.04319564625620842, 0.004277448169887066, -0.0016583336982876062, 0.012121629901230335, 0.013154798187315464, 0.00714004784822464, 0.024493325501680374, 0.028902387246489525, 0.012055822648108006, 0.03032381646335125, 0.012411179952323437, 0.007975795306265354, -0.01914980635046959, -0.03277183324098587, -0.03537778556346893, -0.00039299053605645895, 0.00024903795565478504, -0.026507016271352768, -0.025954239070415497, 0.008831284940242767, -0.03414061665534973, -0.0017883023247122765, 0.0023032412864267826, -0.028797095641493797, -0.020215878263115883, 0.023532545194029808, 0.006903143133968115, 0.058962974697351456, 0.0003296514041721821, -0.012226920574903488, -0.025769978761672974, 0.049486782401800156, 0.01708346977829933, 0.03421958535909653, -0.0016040430637076497, 0.005731780547648668, 0.04748625308275223, 0.015767332166433334, 0.013187700882554054, -0.0006917949649505317, -0.004813774023205042, -0.008166635408997536, 0.013325896114110947, -0.03627276048064232, -0.006004878785461187, -0.05648863688111305, 0.029455164447426796, 0.0034910556860268116, -0.018110057339072227, 0.009719678200781345, 0.01060149073600769, 0.036088500171899796, 0.0061364928260445595, -0.011292463168501854, 0.046617601066827774, -0.04198479652404785, -0.008443024009466171, -0.014556484296917915, -0.008851027116179466, -0.03450913354754448, -0.013292992487549782, -0.02871812880039215, -0.003803638508543372, 0.018373284488916397, -0.019742067903280258, -0.013339057564735413, -0.0137404790148139, 0.030560720711946487, -0.015609394758939743, -0.046249084174633026, 0.004626224748790264, 0.0429324172437191, -0.015622556209564209, 0.024532809853553772, -0.009008963592350483, 0.007607277017086744, 0.0014436386991292238, 0.011048977263271809, -0.014056351967155933, -0.0192814189940691, -0.020268522202968597, -0.010206649079918861, -0.01986052095890045, -0.026980826631188393, -0.017952119931578636, 0.029060324653983116, 0.022571764886379242, -0.008910253643989563, -0.01911032199859619, -0.03682553768157959, -0.009515676647424698, -0.008600960485637188, 0.011700465343892574, -0.018991868942975998, 0.019755229353904724, -0.017017662525177002, 0.010608071461319923, 0.026441209018230438, 0.0015966397477313876, 0.006488559767603874, -0.02104504406452179, 0.010305359028279781, 0.0068110134452581406, 0.018978707492351532, 0.016451723873615265, -0.0016353012761101127, -0.008995802141726017, 0.03019220195710659, -0.030271170660853386, 0.026349080726504326, 0.01732037402689457, -0.002202885691076517, -2.9561690098489635e-05, -0.000610358954872936, 0.009844711050391197, 0.0067057223059237, -0.02032116800546646, 0.01171362679451704, -0.002954729599878192, -0.010568587109446526, 0.014911841601133347, 0.023216672241687775, 0.0014107353053987026, 0.01150304451584816, -0.016557013615965843, -0.04580159857869148, 0.013911576941609383, 0.007857343181967735, -0.010331681929528713, -0.011108203791081905, -0.00521848676726222, 0.02159782312810421, -0.0031356983818113804, -0.006169395986944437, -0.04395900294184685, -0.00798895675688982, 0.012746795080602169, -0.014938164502382278, 0.003481184598058462, 0.0012741859536617994, -0.02790212258696556, -0.02816534973680973, -0.001701108179986477, 0.016965016722679138, 0.02966574765741825, 0.0015489297220483422, 0.008186377584934235, -0.006929466035217047, -0.007752052042633295, 0.007962633855640888, 0.07438810914754868, -0.005116485990583897, -0.017925797030329704, 0.01859702728688717, 0.038246966898441315, -0.009390643797814846, 0.003750992938876152, 0.009410385973751545, -0.007021595258265734, -0.009351159445941448, -0.05943678691983223, 0.039168260991573334, 0.03045542910695076, -0.004876290913671255, -0.015398812480270863, -0.005577133968472481, 0.00985129177570343, 0.007429598364979029, 0.052329640835523605, -0.0020893688779324293, 0.027849476784467697, -0.03564101457595825, 0.011726788245141506, -0.0018179153557866812, -0.036351729184389114, -0.027507280930876732, 0.007337468676269054, -0.015056616626679897, -0.020465943962335587, 0.022848153486847878, 0.0032952800393104553, 0.0041096406057477, -0.031324081122875214, -0.0060739764012396336, -0.005376423243433237, -0.008614121936261654, 0.008614121936261654, -0.013556219637393951, 0.0385628379881382, 0.0068373363465070724, -0.0032788284588605165, -0.007791535928845406, -0.025901593267917633, -0.00023546528245788068, 0.008140312507748604, 0.01659649796783924, -0.008041602559387684, 0.0015382361598312855, 0.014266934245824814, -0.02303241193294525, -0.008094247430562973, -0.022927122190594673, -0.055172499269247055, -0.013161378912627697, -0.019136644899845123, 0.00954199954867363, 0.012470406480133533, -0.012016338296234608, -0.010483037680387497, -0.007133467122912407, 0.020808139815926552, 0.03737831488251686, -0.04345887154340744, -0.011187171563506126, 0.0056297797709703445, -0.02375628799200058, 0.0173466969281435, 0.0020252070389688015, -0.006245074328035116, 0.00904844794422388, -0.02029484510421753, -0.010706781409680843, 0.03348254784941673, -0.0005498988321051002, -0.0004293899692129344, 0.022440150380134583, -0.04201111942529678, 0.006751787383109331, -0.01119375228881836, -0.019202452152967453, -0.010858137160539627, -0.02326931804418564, 0.004024091642349958, 0.05238228663802147, -0.030139556154608727, -0.013608865439891815, 0.031087176874279976, 0.033087704330682755, 0.0075677926652133465, 0.035798948258161545, -0.0022966605611145496, -0.006709012668579817, 0.019755229353904724, 0.022663893178105354, 0.002066336339339614, 0.01529352180659771, -0.009219545871019363, -0.055330436676740646, -0.016609659418463707, -0.004353126045316458, 0.0061661056242883205, -0.01053568348288536, -0.007738890592008829, 0.0018393025966361165, -0.025283008813858032, 0.0035864757373929024, -0.016149012371897697, 0.0009681839146651328, -0.010042131878435612, -0.000950909627135843, -0.007153209298849106, -0.0008554896339774132, 0.016609659418463707, -0.010713362134993076, -0.03150834143161774, -0.009028705768287182, 0.012101887725293636, -0.04214273393154144, -0.012194016948342323, -0.014411709271371365, -0.0026355660520493984, -0.01231905072927475, 0.014595968648791313, 0.010371166281402111, 0.009535418823361397, 0.018715480342507362, -0.009416966699063778, 0.0249276515096426, 0.01060149073600769, 0.006297719664871693, -0.006498430855572224, 0.004787451587617397, 0.00023217494890559465, 0.03264021873474121, -0.0026125337462872267, 0.019255096092820168, -0.013128475286066532, -0.006412881892174482, -0.006804432719945908, 3.292915062047541e-05, -0.004280738532543182, 0.011674142442643642, -0.006050943862646818, -0.012075564824044704, -0.026770243421196938, 0.01934722624719143, 0.009838130325078964, -0.012365114875137806, -0.0054850042797625065, 0.00895631778985262, -0.0011672497494146228, -0.0010487973922863603, 0.00782443955540657, 0.019689422100782394, -0.00017747296078596264, -0.032008472830057144, 0.02221640758216381, -0.024137968197464943, 0.0164385624229908, -0.00602133059874177, 0.0173466969281435, 0.00740985618904233, -0.012371695600450039, -0.01604372076690197, 0.037852123379707336, 0.016280625015497208, 0.0011277656303718686, 0.012036080472171307, -0.02737566828727722, -0.009811807423830032, -0.037720512598752975, -0.02424325980246067, 0.009357740171253681, 0.03708876296877861, -0.033772096037864685, -0.01065413560718298, 0.028454899787902832, -0.0020910140592604876, -0.049460459500551224, 0.009864453226327896, -0.019492002204060555, 0.007982376031577587, -0.0023986613377928734, -0.004376158583909273, -0.030560720711946487, -0.01454332284629345, 0.008265345357358456, -0.01428009569644928, 0.028876064345240593, -0.00877205841243267, 0.0013194282073527575, -0.009555160999298096, 0.01875496469438076, -0.026651792228221893, 0.0031439242884516716, -0.020505428314208984, 0.008140312507748604, -0.0017159146955236793, 0.008554896339774132, 0.004751257598400116, 0.010154003277420998, -0.005659392569214106, -0.021518854424357414, -0.030534397810697556, -0.010311939753592014, -0.04648599028587341, 0.0017883023247122765, 0.017859989777207375, 0.027138762176036835, -0.0019149805884808302, 0.03035013936460018, 0.005639650858938694, 0.013306153938174248, -0.0066366251558065414, 0.009581483900547028, -0.0009640709613449872, 0.0018639802001416683, 0.019031353294849396, 0.007278242148458958, -0.015477781184017658, -0.0061233313754200935, -0.02803373709321022, 0.04603850096464157, -0.02313770353794098, -0.03398267924785614, 0.023927386850118637, 0.014332741498947144, 0.01295737735927105, 0.023506222292780876, -0.019807875156402588, 0.006350365001708269, 0.0059226201847195625, 0.0009352804627269506, -0.0005165840848349035, -0.01421428844332695, 0.011252978816628456, -0.03748360648751259, 0.003918800503015518, 0.009094513021409512, -0.022005824372172356, -0.024269582703709602, -0.006593850441277027, -0.008094247430562973, -0.00034959911135956645, 0.017228243872523308, 0.011739949695765972, -0.004251125268638134, -0.024690745398402214, -0.010693619959056377, -0.0316399522125721, -0.02005794085562229, 0.005425778217613697, 0.0031570857390761375, -0.005353390704840422, 0.02898135595023632, 0.00250395224429667, -0.009936841204762459, -0.037588898092508316, -0.009601226076483727, -0.019847359508275986, -0.007712567690759897, -0.00183765753172338, 0.03385106474161148, -0.0029909233562648296, 0.003147214651107788, 0.055698953568935394, -0.026493854820728302, -0.03532513976097107, -0.0695447251200676, 0.02617798186838627, -0.008765477687120438, -0.015938429161906242, 0.009910518303513527, -0.014740743674337864, -0.03827328979969025, 0.018768126145005226, 0.007047918159514666, -0.004849968012422323, 0.026428047567605972, 0.021545177325606346, 0.009864453226327896, 0.021124012768268585, -0.002362467348575592, -0.014503839425742626, 0.02924458310008049, 0.015701524913311005, -0.02551991306245327, 0.005195454228669405, 0.02633591927587986, -0.007995537482202053, 0.044485460966825485, 0.019255096092820168, 0.032561250030994415, 0.026743920519948006, 0.013418025337159634, 0.016741273924708366, -0.01117401011288166, 0.04061601310968399, -0.012970538809895515, -0.0039484137669205666, 0.002775405766442418, 0.027007149532437325, 0.029850006103515625, -0.004882871638983488, -0.003102794988080859, -0.0007411501137539744, 0.010562006384134293, 0.029481487348675728, 0.002150240121409297, -0.006307590752840042, 0.0047051929868757725, -0.004201770294457674, -0.029981620609760284, -0.022466473281383514, -0.007640180177986622, -0.002959664911031723, -0.027296699583530426, -0.00838379841297865, 0.016491208225488663, 0.021479370072484016, 0.004909194074571133, 0.00933141727000475, -0.008870769292116165, -0.028349610045552254, 0.018320638686418533, -0.018149541690945625, -0.010305359028279781, -0.024203775450587273, -0.03142937272787094, 0.010673877783119678, 0.017662569880485535, -0.022242730483412743, 0.04632805287837982, -0.04924988001585007, -0.0027573087718337774, 0.0335351936519146, -0.0016089784912765026, 0.015569910407066345, 0.017820507287979126, -0.00767966452986002, 0.005840361583977938, 0.0042642867192626, 0.012444083578884602, 0.04777580499649048, -0.0015143811469897628, 0.04440649226307869, 0.020400136709213257, 0.040826596319675446, -0.020018456503748894, 0.022242730483412743, 0.01595159061253071, 0.03745728358626366, -0.02953413315117359, -0.0005030114552937448, 0.019162967801094055, -0.013345638290047646, 0.02613849751651287, -0.04074762761592865, 0.0033248933032155037, -0.03727302327752113, -0.011167429387569427, 0.03956310451030731, -0.01024613343179226, 0.003912219777703285, 0.03706244379281998, -0.00771914841607213, -0.01119375228881836, -0.009463030844926834, 0.031245112419128418, 0.005958814173936844, 0.026875535026192665, 0.015451458282768726, -0.0017356567550450563, 0.003639121074229479, -0.008146893233060837, -0.0271914079785347, -0.004823645111173391, -0.0037345411255955696, -0.01604372076690197, 0.017530955374240875, 0.012766537256538868, -0.04835490509867668, 0.01934722624719143, -0.026638630777597427, 0.021545177325606346, -0.010351424105465412, 0.002525339601561427, 0.00964070949703455, 0.010608071461319923], [0.040861908346414566, 0.007037405855953693, 0.06772508472204208, 0.002432832960039377, -0.028495440259575844, 0.03842734917998314, -0.03214728459715843, -0.0050074514001607895, -0.010090982541441917, 0.043379466980695724, -0.03134498372673988, -0.029712721705436707, 0.01614280603826046, 0.01524367742240429, -0.050544824451208115, 0.04855291172862053, -0.011003943160176277, 0.029021084308624268, 0.0013339946744963527, -0.00953767355531454, 0.060200076550245285, 0.020666111260652542, 0.00023926314315758646, -0.013459254056215286, -0.030376693233847618, -0.024691438302397728, 0.04252183809876442, 0.04127689078450203, 0.05297938734292984, -0.059978753328323364, 0.07713134586811066, -0.035633135586977005, -0.006342310458421707, -0.04310281202197075, -0.018494371324777603, 0.004274316132068634, -0.028606103733181953, 0.01318951603025198, 0.025507569313049316, 0.040944904088974, 0.008341141045093536, 0.052343081682920456, -0.00200228882022202, 0.0003172884462401271, -0.009883491322398186, 0.06910835951566696, 0.015589496120810509, -0.060532063245773315, -0.006902536377310753, 0.03422219306230545, 0.058706142008304596, 0.048276256769895554, 0.009178021922707558, -0.039284978061914444, 0.019600991159677505, -0.007566507905721664, 0.01798255927860737, 0.001971165183931589, 0.04943820834159851, 0.00021678494522348046, 0.003610344836488366, -0.04080657660961151, -0.036435432732105255, 0.018812524154782295, -0.0011446591233834624, -0.007587256841361523, 0.014344549737870693, 0.025327743962407112, -0.027679309248924255, -0.002258194610476494, 0.01874336041510105, 0.03239627182483673, 0.02332199737429619, -0.064128577709198, -0.005695629864931107, -0.021081093698740005, -0.006155568640679121, -0.021966388449072838, -0.025977883487939835, -0.004239734262228012, -0.03579912707209587, 0.028578437864780426, -0.003738297615200281, 0.015575663186609745, 0.02217387966811657, 0.02852310612797737, -0.07685469835996628, -0.010173979215323925, -0.01998830772936344, -0.006477179937064648, -0.03635243698954582, -0.015534165315330029, -0.028467776253819466, 0.06080871820449829, 0.018328377977013588, 0.00573712820187211, 0.034941498190164566, 0.0013175683561712503, -0.04639500379562378, 0.05367102473974228, 0.0038593339268118143, -0.015824653208255768, 0.0006765073630958796, 0.0025849929079413414, 0.02467760443687439, -0.026641855016350746, -0.0108517836779356, 0.028578437864780426, 0.00036051575443707407, -0.03128965571522713, 0.002379230922088027, -0.04523305594921112, -0.008437970653176308, 0.08637161552906036, -0.01773357018828392, -0.011598750948905945, -0.056658897548913956, 0.010796451941132545, 0.01919984072446823, 0.011674831621348858, -0.058263495564460754, -0.02283785119652748, 0.032783590257167816, -0.06678446382284164, 0.019130676984786987, -0.015133015811443329, 0.010056400671601295, 0.005605717189610004, -0.09367530792951584, -0.010374553501605988, 0.050323501229286194, -0.024068964645266533, 0.05173444002866745, -0.0614173598587513, -0.025784224271774292, 0.025964049622416496, 0.005173444282263517, -0.0070028239861130714, -0.005028200335800648, -0.05732286721467972, 0.021634403616189957, 0.007345184218138456, 0.014994688332080841, 0.02364015020430088, -0.043019816279411316, 0.027195163071155548, 0.026296036317944527, 0.06766975671052933, -0.011163019575178623, 0.022312207147479057, 0.004225901793688536, 0.003287004539743066, -0.025535235181450844, -0.0072414386086165905, 0.025839556008577347, -0.00744201336055994, 0.0020247669890522957, 0.05134712532162666, 0.013231013901531696, 0.0059653683565557, -0.0034529974218457937, -0.015630993992090225, -0.03228561207652092, -0.01830071210861206, 0.03635243698954582, 0.02310067228972912, -0.010215477086603642, 0.02727816067636013, -0.05663122981786728, -0.04935520887374878, -0.03242393955588341, -0.010374553501605988, -0.05699088051915169, 0.0067572928965091705, 0.013888069428503513, -0.031870629638433456, -0.01762290857732296, -0.023114506155252457, 0.0005805427208542824, 0.007739417254924774, -0.0024362909607589245, 0.012587792240083218, -0.07602473348379135, -0.027319658547639847, -0.06307728588581085, 0.04014260694384575, 0.008306559175252914, -0.016447126865386963, -0.015022354200482368, -0.016751445829868317, 0.034969162195920944, 0.03228561207652092, 0.008493301458656788, 0.046671658754348755, -0.04017027094960213, 0.00032658231793902814, -0.009427011013031006, -0.0023187128826975822, 0.0008329902193509042, -0.008278894238173962, 0.034388188272714615, -0.027084501460194588, 0.07663337141275406, 0.0053186877630651, -0.0197946485131979, -0.04794427007436752, -0.005913495551794767, 0.06186000630259514, 0.01250479556620121, -0.047335632145404816, 0.002778651425614953, -0.02420729212462902, -0.025258580222725868, 0.04752928763628006, -0.02521708235144615, 0.026240704581141472, -0.02239520289003849, 0.0009250643779523671, -0.030625682324171066, 0.02489892952144146, -0.005847790278494358, -0.008597047068178654, -0.00933018233627081, -0.019573325291275978, -0.01773357018828392, 0.014635037630796432, 0.021219421178102493, -0.023681648075580597, 0.010685790330171585, -0.060864049941301346, -0.008092151954770088, -0.0035135154612362385, -0.010969361290335655, 0.0031711552292108536, 0.0005952400388196111, -0.018134720623493195, -0.011038525030016899, -0.0377357117831707, -0.006688129156827927, 0.015589496120810509, 0.05184510350227356, -0.019849980250000954, 0.02067994326353073, 0.04199619218707085, 0.00659475801512599, -0.00577516807243228, -0.01307885441929102, -0.03275592625141144, 0.024234957993030548, 0.03546714037656784, 0.014897859655320644, 0.0010573399486020207, 0.059757430106401443, -0.05115346610546112, 0.00846563559025526, 0.02101192995905876, 0.0005018690135329962, -0.03300491347908974, 0.02126091904938221, -0.06678446382284164, -0.025853388011455536, -0.009648335166275501, -0.027554815635085106, 0.014635037630796432, -0.0577101856470108, 0.01040913537144661, 0.02819112129509449, -0.0032195698004215956, -0.03217494860291481, 0.04788894206285477, -0.03469250723719597, 0.02830178290605545, 0.030266031622886658, 0.0049901604652404785, -0.04271549731492996, 0.01307885441929102, 0.021330082789063454, -0.0021181381307542324, -0.005647215526551008, -0.0036795083433389664, -0.0269461739808321, 0.00846563559025526, -0.014759532175958157, -0.017456915229558945, -0.0005576322437264025, 0.028910422697663307, 0.006899078376591206, -0.009060443378984928, -0.030376693233847618, -0.0034651008900254965, 0.05699088051915169, 0.005609175655990839, -0.0026385949458926916, 0.0011074836365878582, 0.0036034283693879843, 0.006145194172859192, -0.02193872258067131, -0.011605667881667614, -0.015022354200482368, -0.002875480568036437, -0.013320927508175373, 0.04243884235620499, 0.04766761511564255, -0.023252833634614944, -0.025867220014333725, 0.036546096205711365, 0.005214942153543234, 0.055496945977211, -0.052702732384204865, -0.0013910547131672502, -0.017470749095082283, 0.0748627781867981, -0.02866143360733986, -0.02354332059621811, -0.032451603561639786, -0.014745699241757393, -0.012629290111362934, 0.026102377101778984, -0.00030648161191493273, -0.018148552626371384, 0.030653348192572594, -0.014953190460801125, 0.045648038387298584, -0.025051089003682137, 0.03875933215022087, -0.007974573411047459, 0.0345265157520771, 0.061804674565792084, -0.05060015618801117, -0.0722622275352478, -0.023695480078458786, -0.03203662112355232, 0.029961710795760155, 0.007919242605566978, -0.010941696353256702, -0.01067887432873249, 0.001940041547641158, 0.04946587234735489, 0.0288550928235054, 0.02329433150589466, 0.04498406499624252, -0.021316250786185265, -0.0053428951650857925, 0.002861647866666317, -0.028689099475741386, 0.015949146822094917, 0.005208026152104139, 0.03411153331398964, -0.005719837266951799, 0.053477365523576736, 0.005159611348062754, 0.03839968144893646, -0.05165144428610802, 0.013431589119136333, -0.03422219306230545, -0.01415780745446682, -0.004170570522546768, -0.006681212689727545, -0.02116408944129944, -0.025728892534971237, 0.02863376773893833, 0.011349761858582497, 0.025203248485922813, 0.022658025845885277, 0.023031508550047874, -0.012975108809769154, -0.007621838711202145, 0.02419346012175083, 0.01919984072446823, -0.03270059451460838, 0.024732936173677444, 0.05350503325462341, 0.03690574690699577, 0.0009812598582357168, -0.044624414294958115, 0.010609710589051247, -0.02820495329797268, 0.0304596908390522, -0.010118648409843445, -0.0036034283693879843, 0.018577367067337036, 0.02272718958556652, 0.01581081934273243, 0.027361156418919563, 0.03696107864379883, 0.051789771765470505, -0.04960419982671738, 0.022312207147479057, -0.017885731533169746, 0.006892161909490824, -0.024732936173677444, 0.018549703061580658, -0.022201545536518097, 0.033724214881658554, -0.01874336041510105, 0.0395892970263958, 0.055884264409542084, 0.031898293644189835, 0.023916805163025856, -0.016626952216029167, 0.020195798948407173, -0.046560999006032944, 0.011356677860021591, 0.017692072317004204, -0.018037891015410423, -0.02014046721160412, -0.026973839849233627, -0.012684620916843414, 0.010831033810973167, 0.023819975554943085, 0.012200475670397282, 0.024027466773986816, 0.048940230160951614, -0.0261438749730587, 0.03535648062825203, -0.018273048102855682, -0.03986595198512077, 0.045980021357536316, -0.015935314819216728, 0.0018086305353790522, 0.04014260694384575, 0.02738882228732109, 0.0009216062026098371, -0.021537574008107185, -0.05566294118762016, 0.011052357964217663, -0.007075445726513863, -0.018120886757969856, 0.03001704253256321, -0.09317732602357864, 0.0021458035334944725, 0.030985334888100624, 0.052121758460998535, -0.005896204616874456, -0.052343081682920456, -0.030874671414494514, 0.014897859655320644, 0.019033847376704216, 0.005757877137511969, -0.025977883487939835, 0.012096730060875416, -0.0019227506127208471, 0.017194094136357307, 0.02080443874001503, 0.0006535968859679997, 0.043019816279411316, 0.008431053720414639, 0.018466705456376076, 0.0033388773445039988, 0.013860403560101986, -0.00984199345111847, 0.004564803559333086, -0.06811240315437317, -0.02352948859333992, -0.018964683637022972, 0.014220055192708969, -0.008258144371211529, -0.09184938669204712, 0.04299215227365494, -0.0390913188457489, 0.013549167662858963, 0.04249417409300804, 0.06103004142642021, 0.04362845793366432, 0.012663871981203556, 0.01672377996146679, -0.04584169387817383, 0.0008896180079318583, -0.007829329930245876, -0.016792943701148033, 0.005750961136072874, -0.03104066476225853, 0.005557302851229906, -0.0029135204385966063, 0.05422433465719223, -0.00953767355531454, -0.005138862412422895, -0.05021284148097038, -0.0017290923278778791, -0.02852310612797737, 0.040087275207042694, 0.02715366519987583, -0.03776337578892708, -0.013549167662858963, 0.04783361032605171, 0.013085770420730114, 0.04028093442320824, -0.012753784656524658, -0.005629924591630697, -0.004589010961353779, -0.05854015052318573, -0.012352635152637959, 0.0077255843207240105, -0.01581081934273243, 0.017028100788593292, -0.008818370290100574, -0.005415516905486584, 0.0005472577176988125, 0.01771973818540573, 0.016626952216029167, 0.044043440371751785, -0.05898279696702957, 0.040972571820020676, 0.0038939157966524363, 0.014607371762394905, 0.020430954173207283, -0.0033025662414729595, -0.015713991597294807, -0.04910622164607048, 0.021800395101308823, -0.0468653179705143, 0.0015103621408343315, 0.04420943185687065, 0.020596947520971298, -0.010526713915169239, -0.0011610854417085648, 0.025728892534971237, -0.023778477683663368, -0.035992786288261414, 0.013811989687383175, -0.012352635152637959, -0.03300491347908974, -0.01637796312570572, 0.02704300358891487, -0.009454676881432533, 0.02512025274336338, -0.0005930786719545722, -0.02444244921207428, -0.02499575912952423, 0.011266765184700489, 0.03151097893714905, -0.04808259755373001, -0.03624177351593971, 0.028467776253819466, 0.003821294056251645, -0.013279428705573082, -0.004509472753852606, 0.0148286959156394, 0.022907014936208725, -0.06263463944196701, 0.034830834716558456, -0.0071791913360357285, 0.009281767532229424, -0.0051492368802428246, -0.008680043742060661, -0.008334225043654442, 0.039395637810230255, 0.02263035997748375, 0.03261759877204895, 0.0028530023992061615, 0.012975108809769154, 0.011909987777471542, -0.016737613826990128, -0.016294965520501137, -0.02091510035097599, 0.011467340402305126, 3.34741453116294e-05, -0.04299215227365494, 0.032340943813323975, 0.0032783590722829103, -0.012200475670397282, 0.01637796312570572, -0.0039769122377038, 0.007172274868935347, 0.0023273583501577377, -0.00909502524882555, 0.0008355838363058865, 0.009599920362234116, -0.009848909452557564, -0.0002190543746110052, -0.013258679769933224, 0.03344755992293358, 0.03751438483595848, -0.04863590747117996, 0.04946587234735489, -0.00012784475984517485, -0.003987286705523729, -0.023169836029410362, 0.024497779086232185, -0.012822948396205902, -0.006553259678184986, 0.048940230160951614, -0.014482877217233181, -0.02079060673713684, -0.03602045029401779, 0.01760907657444477, -0.007856995798647404, -0.03195362538099289, -0.020306460559368134, 0.024691438302397728, 0.012719202786684036, -0.009503091685473919, 0.018356043845415115, 0.014289218932390213, -0.009606837294995785, 0.05300705507397652, -0.0288550928235054, 0.007448929827660322, 0.01567249186336994, 0.008486385457217693, -0.012421798892319202, -0.016198135912418365, 0.0034858500584959984, 0.000963104423135519, -0.027361156418919563, 0.005228775087743998, 0.02488509565591812, 0.008673126809298992, -0.01661311835050583, 0.035854458808898926, 0.01820388436317444, 0.024068964645266533, 0.021745065227150917, -0.030653348192572594, -0.04885723069310188, 0.02408279851078987, -0.011425841599702835, -0.02661418914794922, -0.022118547931313515, 0.014579705893993378, -0.015976812690496445, -0.01888168789446354, 0.0003393343649804592, -0.0189923495054245, -0.004277774132788181, -0.027112167328596115, 0.007096194662153721, -0.04296448454260826, 0.02990638092160225, 0.003980370704084635, -0.011716329492628574, 0.025728892534971237, -0.0049728695303201675, -0.0017498413799330592, -0.0035359938628971577, 0.001004602643661201, 0.019282836467027664, -0.022879349067807198, 0.004319272469729185, -0.0031815299298614264, 0.04196852818131447, 0.010063317604362965, 0.028965754434466362, -0.017512246966362, 0.0013210264733061194, 0.008603963069617748, -0.0007084955577738583, 0.021081093698740005, -0.02489892952144146, 0.004163654055446386, 0.01267078798264265, -0.0131341852247715, 0.013293261639773846, -0.010084066540002823, 0.021758897230029106, -0.018356043845415115, -0.028965754434466362, 0.027333490550518036, 0.026296036317944527, 0.04238351061940193, -0.0393403097987175, 0.022215377539396286, -0.014344549737870693, 0.02409663051366806, 0.053256042301654816, -0.01199298445135355, 0.04869123920798302, -0.019047681242227554, 0.006798790767788887, -0.003522160928696394, -0.04000427946448326, 0.006356143392622471, 0.03184296563267708, -0.013341676443815231, -0.015368171967566013, -0.010748038068413734, -0.033032577484846115, 0.0013184328563511372, -0.04423709586262703, 0.015382004901766777, -0.037929367274045944, -0.03862100467085838, 0.0002967554610222578, -0.02979571931064129, -0.026545025408267975, -0.019974473863840103, 0.024940427392721176, -0.025894885882735252, -0.017927229404449463, 0.0018933560932055116, 0.002527932869270444, 0.02841244451701641, -0.01953182741999626, -0.006224732380360365, 0.02684934437274933, 0.04362845793366432, 0.008036821149289608, -0.017650574445724487, -0.03377954661846161, -0.06429456919431686, 0.02852310612797737, 0.020320292562246323, -0.02738882228732109, -0.029353071004152298, -0.0737561583518982, -0.0036172610707581043, -0.03209195286035538, -0.00339766638353467, 0.06423923373222351, 0.0005520127015188336, -0.024580776691436768, 0.008908283896744251, -0.050074514001607895, -0.0014645411865785718, -0.00021797369117848575, 0.005526178982108831, 0.007580340839922428, -0.019642489030957222, -0.01740158535540104, 0.007227605674415827, -0.042798493057489395, 0.02286551706492901, -0.043019816279411316, 0.004170570522546768, 0.023681648075580597, -0.012539377436041832, -0.014773364178836346, 0.025272412225604057, -0.022243043407797813, 0.01682060956954956, 0.0450117290019989, -0.002410354558378458, 0.00599303375929594, -0.0011031609028577805, 0.004478348884731531, 0.005463931709527969, -0.015727823600172997, 0.0018829815089702606, -0.030985334888100624, -0.006829914636909962, 0.003487579058855772, -0.05184510350227356, -0.01726325787603855, -0.02373697981238365, 0.0127330357208848, -0.02067994326353073, 0.011923820711672306, 0.041442885994911194, -0.007988406345248222, 0.025853388011455536, -0.041664209216833115, 0.012940526939928532, -0.01749841496348381, -0.05181743949651718, 0.010720372200012207, 0.00298268417827785, -0.009772829711437225, 0.02877209521830082, -0.009295600466430187, -0.004955578595399857, 0.029048750177025795, 0.003783253952860832, -0.005975742824375629, 0.03560546785593033, 0.01090711448341608, -0.006864496506750584, -0.02536924183368683, 0.013722076080739498, 0.03602045029401779, -0.007829329930245876, 0.018494371324777603, 0.011529587209224701, 0.033475227653980255, 0.004896789323538542, 0.021426912397146225, -0.021980220451951027, -0.0036967992782592773, -0.0315663106739521, -0.025327743962407112, -0.034637175500392914, 0.03267292678356171, -0.005477764643728733, 0.0015752030303701758, 0.013708244077861309, 0.026116210967302322, 0.0011178582208231091, -0.0024777892976999283, -0.006750376429408789, 0.02751331590116024, -0.01680677756667137, -0.04326880723237991, -0.0144275464117527, -0.006228190381079912, -0.024055132642388344, -0.015727823600172997, -0.010360721498727798, 0.0014273656997829676, -0.05748886242508888, -0.02761014550924301, 0.019241338595747948, -0.02080443874001503, -0.022146213799715042, -0.017816567793488503, -0.007905409671366215, 0.09135140478610992, -0.01285061426460743, -0.029242409393191338, 0.011349761858582497, -0.01488402672111988, -0.01473186630755663, -0.03673975169658661, 0.04750162363052368, -0.018937019631266594, 0.017692072317004204, 0.010478299111127853, 0.0008074861252680421, 0.007345184218138456, 0.024151960387825966, 0.0025089129339903593, -0.0027181331533938646, 0.01888168789446354, 0.0008156992844305933, 0.003904290497303009, 0.01888168789446354, -0.0010893282014876604, 0.009696749970316887, -0.030293697491288185, -0.02251969836652279, 0.024981925264000893, -0.008846036158502102, 0.012456380762159824, 0.002099117962643504, 0.006266230717301369, 0.01090711448341608, -0.014579705893993378, -0.02808045968413353, -0.008341141045093536, 0.0001197396413772367, 0.016875941306352615, 0.019158342853188515, 0.02957439422607422, -0.027444152161478996, -0.027720807120203972, -0.011979151517152786, -0.01669611595571041, 0.011999900452792645, 0.00800915528088808, 0.0009241998195648193, -0.01267770491540432, 0.01933816820383072, -0.03375188261270523, -0.04243884235620499, -0.021081093698740005, -0.04376678541302681, 0.007255271077156067, -0.028938088566064835, 0.020389456301927567, -0.017415417358279228, 0.015575663186609745, 0.010651208460330963, -0.018563535064458847, -0.007324434816837311, 0.021579071879386902, -0.0368780791759491, 0.0028772095683962107, -0.01438604760915041, 0.03068101406097412, -0.010588961653411388, 0.01922750659286976, -0.027665477246046066, 0.01279528345912695, -0.020375624299049377, 0.01762290857732296, -0.00319709163159132, -0.011695580556988716, -0.03203662112355232, 0.0007733365055173635, 0.037791039794683456, 0.04163654148578644, 0.015091517940163612, -0.0012838509865105152, 0.03875933215022087, 0.034166865050792694, -0.012248889543116093, -0.007919242605566978, -0.014109393581748009, -0.03214728459715843, 0.06479254364967346, 0.015326674096286297, 0.012380301021039486, -0.009198770858347416, 0.013811989687383175, -0.012919778004288673, 0.03590979054570198, 0.01705576665699482, 0.0039976611733436584, -0.027789970859885216, -0.01715259626507759, 0.00953767355531454, 0.0013798156287521124, -0.0304596908390522, -0.023626316338777542, -0.00223052897490561, 0.0033924791496247053, -0.015658659860491753, 0.01438604760915041, -0.007386682089418173, -0.03455417975783348, 0.025507569313049316, -0.009752080775797367, 0.062357984483242035, -0.007130776531994343, -0.013168767094612122, -0.022990010678768158, 0.020430954173207283, -0.002355023752897978, -0.01771973818540573, 0.009399346075952053, 0.04274316132068634, 0.0008524425211362541, 0.03673975169658661, -0.014704201370477676, 0.025991715490818024, -0.002614387543871999, 0.008431053720414639, 0.018715694546699524, -0.010346888564527035, 0.03128965571522713, 0.02283785119652748, -0.01807938888669014, -0.010263891890645027, 0.03499682992696762, 0.03590979054570198, 0.05892746523022652, 0.014980855397880077, 0.0018570451065897942, -0.023474156856536865, 0.0035308063961565495, 0.013113436289131641, 0.002299692714586854, 0.016087474301457405, 0.005204567685723305, 0.017207926139235497, -0.03737605735659599, 0.005038574803620577, -0.01086561568081379, -0.01749841496348381, 0.01410247664898634, -0.012919778004288673, -0.0028945005033165216, 0.019946807995438576, -0.04589702561497688, -0.019628655165433884, -0.008175148628652096, -0.042798493057489395, 0.02080443874001503, 0.01039530336856842, -0.002078369027003646, 0.031676970422267914, 0.007580340839922428, 0.030210699886083603, 0.037929367274045944, 0.019144510850310326, -0.02056928165256977, 0.032562267035245895, 0.04025327041745186, -0.01976698264479637, -0.00999415386468172, -0.021067259833216667, 0.012781450524926186, -0.01820388436317444, -0.009848909452557564, 0.03986595198512077, 0.00718610780313611, -0.009717498905956745, -0.02058311551809311, 0.04183020070195198, -0.013611414469778538, 0.018923185765743256, 0.017996393144130707, 0.0013642538106068969, 0.002116408897563815, 0.024608442559838295, -0.00011066190927522257, -0.010990110225975513, -0.006190150510519743, 0.01783039979636669, 0.016737613826990128, 0.010671957395970821, 0.015976812690496445, -0.012580875307321548, -0.005661047995090485, 0.014192389324307442, 0.002854731399565935, -0.012864446267485619, 0.04216218739748001, 0.026545025408267975, -0.010422968305647373, 0.044735077768564224, 0.0004236276145093143, 0.03247927129268646, -0.0006233377498574555, 0.023059174418449402, -0.00767025351524353, 0.0009155543521046638, -0.022422868758440018, 0.037791039794683456, 0.010118648409843445, -0.003366542747244239, 0.0036864248104393482, -0.008500217460095882, -0.016972770914435387, -0.0010141126113012433, -0.003676050342619419, -0.0023048799484968185, -0.020749107003211975, -0.01729092374444008, -0.03651842847466469, -0.01659928634762764, -0.003259338904172182, -0.012829865328967571, 0.01771973818540573, 0.03566079959273338, -0.009703665971755981, 0.02330816350877285, 0.004824167583137751, 0.01193765364587307, 0.010685790330171585, 0.030404359102249146, 0.014662702567875385, 0.01222122460603714, 0.01437221560627222, -0.01130826398730278, 0.03286658599972725, 0.019269004464149475, 0.0039976611733436584, -0.00200228882022202, -0.014303051866590977, -0.019020015373826027, 0.025438405573368073, -0.03034902736544609, -0.017207926139235497, -0.03297724947333336, 0.02272718958556652, 0.0027181331533938646, -0.012988941743969917, 0.01933816820383072, 0.021551406010985374, -0.00511811301112175, 0.001519007608294487, -0.004066824913024902, 0.03889765962958336, -0.01807938888669014, -0.014033312909305096, 0.006982074584811926, -0.03140031546354294, -0.03159397467970848, -0.02658652327954769, -0.01210364606231451, 0.010568211786448956, 0.029270075261592865, -0.031123662367463112, -0.010858699679374695, 0.0010279454290866852, -0.005460473708808422, 0.011543420143425465, -0.043490130454301834, 0.005152694880962372, 0.018383709713816643, -0.0334198959171772, 0.005308313295245171, 0.007815496996045113, 0.0009017216507345438, 0.022367538884282112, 0.01820388436317444, 0.0055192625150084496, -0.03294958174228668, -0.026877010241150856, 0.011674831621348858, -0.008168231695890427, -0.00926793459802866, -0.0007361610187217593, 0.007635671645402908, -0.02491276152431965, -0.0010054671438410878, -0.0304596908390522, -0.029878715053200722, -0.0022668400779366493, 0.0017455186462029815, -0.0056333825923502445, -0.024414783343672752, 0.008209730498492718, 0.025977883487939835, 0.004367687273770571, 0.021565239876508713, 0.000281409767922014, 0.0004065528337378055, 0.0010521527146920562, -0.014012563973665237, -0.007939991541206837, 0.0006414932431653142, 0.005896204616874456, -0.015382004901766777, -0.029934046790003777, 0.015382004901766777, 0.003956163302063942, 0.03306024521589279, -0.0012579147005453706, 0.021634403616189957, 0.025604398921132088, 0.003148677060380578, 0.03079167567193508, 0.0005048949387855828, -0.007870827801525593, 0.041304558515548706, 0.010326139628887177, 0.008991279639303684, 0.017996393144130707, 0.031649306416511536, 0.008223563432693481, -0.011896154843270779, -0.023833807557821274, -0.04083424434065819, 0.01039530336856842, 0.021094925701618195, -0.014081727713346481, -0.01976698264479637, 0.01626729965209961, 0.0131341852247715, 0.01438604760915041, 0.0051215714775025845, -0.044596750289201736, -0.0014481147518381476, 0.01062354352325201, -0.014552040956914425, 0.0021250543650239706, -0.008714625611901283, -0.024359451606869698, -0.004239734262228012, -0.0030985334888100624, 0.02081827074289322, 0.008680043742060661, 0.013327843509614468, 0.0069509511813521385, -0.026434363797307014, -0.0014057520311325788, 0.0363801009953022, 0.08233246207237244, 0.007476595230400562, -0.020845936611294746, 0.007794748060405254, 0.05159611254930496, 0.005128487944602966, -0.0013253492070361972, -0.010374553501605988, 0.02036179043352604, 0.005574593786150217, -0.04420943185687065, 0.048718903213739395, 0.014413713477551937, 0.011335928924381733, 0.02055544964969158, -0.005128487944602966, -0.0035359938628971577, 0.052232421934604645, 0.04935520887374878, 0.02193872258067131, 0.01539583783596754, -0.03275592625141144, -0.009579171426594257, -0.007870827801525593, -0.008749207481741905, -0.022243043407797813, 0.0047965021803975105, 0.0024743310641497374, -0.014109393581748009, 0.028260285034775734, -0.02568739466369152, 0.008783789351582527, -0.019047681242227554, 0.02464994043111801, -0.028052793815732002, -0.03048735484480858, 0.02376464381814003, -0.013562999665737152, 0.031206658110022545, -0.009364764206111431, -0.040197938680648804, 0.010554379783570766, -0.006114070303738117, 0.02137158066034317, 0.020085135474801064, -0.0047965021803975105, -0.008956697769463062, -0.013625247403979301, 0.004692756570875645, -0.020873602479696274, 0.0012285200646147132, -0.027029171586036682, -0.051540784537792206, -0.02204938419163227, -0.021053427830338478, 0.01965632103383541, 0.006764208897948265, 0.006363059859722853, -0.057931508868932724, -0.007289852946996689, 0.00953767355531454, 0.04481807351112366, -0.05112580209970474, 0.006027615629136562, -0.0331709049642086, 0.0020939307287335396, 0.009572255425155163, 0.009516923688352108, -0.006816081702709198, 0.00244493642821908, 0.005913495551794767, -0.011467340402305126, 0.0106373755261302, -0.005795917473733425, -0.017360087484121323, 0.022824019193649292, -0.03386254236102104, 0.006197066977620125, -0.020762940868735313, -0.026088545098900795, -0.01592148281633854, -0.025037257000803947, 0.024262623861432076, 0.025742726400494576, -0.017885731533169746, 0.02433178760111332, 0.02376464381814003, 0.03485850244760513, -0.02477443404495716, 0.04080657660961151, -0.005066240672022104, 0.0011826991103589535, 0.019877644255757332, 0.004087574314326048, 0.0018674196908250451, 0.007483511697500944, -0.017443083226680756, -0.03853800892829895, 0.010056400671601295, -0.02954672835767269, 0.02341882698237896, 0.008901366963982582, -0.01648862473666668, 0.0019556034822016954, -0.013542250730097294, 0.01391573529690504, 0.0005442317924462259, -0.011543420143425465, -0.020596947520971298, -0.0036518429405987263, -0.013542250730097294, -0.005000534933060408, 0.036767419427633286, -0.010485216043889523, -0.01830071210861206, -0.018812524154782295, 0.00972441490739584, -0.011612583883106709, 0.02181422896683216, 0.005073156673461199, -0.004111781716346741, -0.006874870974570513, 0.00503511680290103, 0.01081028487533331, -0.002434561960399151, 0.02943606674671173, -0.018563535064458847, 0.04481807351112366, 0.010270807892084122, 0.00319709163159132, 0.030100038275122643, -0.0024380201939493418, 0.03250693529844284, -0.005892746616154909, -0.01841137558221817, -0.01175782736390829, 0.006010324694216251, -0.014482877217233181, 0.005194193217903376, -0.0004919267375953496, -0.022782519459724426, 0.02399980090558529, -0.04387744516134262, -0.00040244622505269945, -0.040529925376176834, 0.021053427830338478, -0.002559056505560875, -0.02910408191382885, 0.0005303990910761058, -0.003783253952860832, -0.03364121913909912, 0.016737613826990128, 0.01341775618493557, 0.012809115462005138, 0.012546293437480927, -0.009274851530790329, 0.01147425640374422, -0.0005152695230208337, 0.030072372406721115, -0.010492132045328617, 0.0008342870278283954, -0.0006272282334975898, -0.00412215618416667, -0.019172174856066704, 0.018037891015410423, 0.0009414907544851303, -0.000531695899553597, 0.01625346764922142, -0.014496710151433945, 0.0007871692650951445, -0.03433285653591156, -0.030210699886083603, 0.0425495021045208, -0.0035619300324469805, -0.026309868320822716, 0.008119817823171616, 0.01908917911350727, 0.027886800467967987, -0.042466506361961365, -0.01404714584350586, -0.012885196134448051, 0.009392429143190384, 0.014704201370477676, -0.01650245673954487, 0.01661311835050583, 0.009655251167714596, 0.013687494210898876, -0.0108517836779356, 0.018909353762865067, -0.00977974571287632, 0.001981539884582162, 0.008520967327058315, 0.018688028678297997, -0.03889765962958336, -0.004920996725559235, -0.04537138342857361, 0.02148224227130413, 0.005823582876473665, 0.032008957117795944, -0.01524367742240429, 0.017456915229558945, -0.006127903237938881, -0.020043637603521347, -0.04185786470770836, 0.0077878315933048725, -0.05447332561016083, 0.0047792112454771996, 0.011218351311981678, 0.020043637603521347, 0.006463347002863884, 0.029076416045427322, 0.007850078865885735, 0.008818370290100574, 0.037680380046367645, -0.0005001399549655616, -0.023031508550047874, -0.0005896204966120422, 0.004872581921517849, -0.016308799386024475, -0.010990110225975513, -0.012518628500401974, -0.010588961653411388, 0.037569716572761536, -0.028384778648614883, -0.013065021485090256, 0.002861647866666317, -0.008555548265576363, 0.011031609028577805, 0.04664399474859238, -0.04852524772286415, 3.6797246139030904e-05, -0.0059065790846943855, -0.01370132714509964, -0.02058311551809311, -0.019836146384477615, -0.00707890372723341, -0.018729528412222862, 0.003186717163771391, -0.03261759877204895, -0.020832104608416557, -0.009966487996280193, 0.006653547286987305, -0.004063366912305355, -0.006819540169090033, 0.00157088041305542, 0.04680998623371124, -0.011405092664062977, -0.01661311835050583, -0.020181965082883835, -0.004616676364094019, -0.02023729681968689, -0.005515804514288902, 0.022893182933330536, 0.0008671397808939219, 0.011771660298109055, -0.013383174315094948, -0.009392429143190384, -0.027457986027002335, 0.0024950802326202393, -0.003345793578773737, -0.024525444954633713, -0.047224968671798706, 0.01830071210861206, -0.001167137292213738, -0.004326188936829567, 0.05505429953336716, -0.008756123483181, -0.03873166814446449, -0.03967229276895523, 0.007891577668488026, 0.0024293747264891863, 0.023391161113977432, -0.014054061844944954, 0.002168281702324748, -0.016986602917313576, -0.013805072754621506, -0.0048137931153178215, -0.015119182877242565, 0.01886785589158535, -0.00120863551273942, 0.017816567793488503, 0.03353055939078331, 0.006228190381079912, 0.006733085494488478, 0.025189416483044624, 0.006902536377310753, -0.020942766219377518, -0.007096194662153721, 0.009655251167714596, -0.03743138909339905, 0.05715687572956085, 0.017567578703165054, 0.032921917736530304, 0.014676535502076149, 0.020984264090657234, 0.03444352000951767, -0.004983243998140097, 0.04158121347427368, 0.01763674058020115, -0.02343265898525715, -0.03068101406097412, 0.027250494807958603, 0.02308684028685093, 0.022450534626841545, -0.009025861509144306, 0.012829865328967571, 0.007365933153778315, 0.04232817888259888, 0.0008887534495443106, -0.03070867992937565, 0.009337098337709904, 0.007386682089418173, -0.03878699988126755, -0.010146313346922398, 0.008105984888970852, 0.01680677756667137, -0.03361355513334274, -0.025632064789533615, 0.01175782736390829, 0.050074514001607895, 0.0017576223472133279, -0.009108858183026314, -0.010540546849370003, -0.01570015773177147, 0.0183145459741354, -0.011847740039229393, 0.006698503624647856, 0.001250133733265102, -0.017705904319882393, -0.002130241831764579, 0.01147425640374422, -0.023460324853658676, 0.031538642942905426, -0.05937011167407036, 0.008078319020569324, 0.031068330630660057, -0.008790705353021622, 0.003938872367143631, -0.005370560567826033, -0.010526713915169239, -0.007656420581042767, 0.0018898978596553206, -0.024608442559838295, 0.03306024521589279, -0.004125614184886217, 0.0339178740978241, 0.014441379345953465, 0.013687494210898876, 0.0010754953837022185, 0.005892746616154909, 0.01919984072446823, 0.036767419427633286, -0.019116844981908798, 0.014676535502076149, 0.03433285653591156, -0.002109492663294077, -0.0025538692716509104, -0.006657005287706852, 0.010685790330171585, -0.002578076673671603, -0.012179725803434849, 0.051236461848020554, 0.0001909566344693303, 0.011439674533903599, 0.01908917911350727, 0.0023325455840677023, 0.0003912071406375617, 0.011522671207785606, 0.012947442941367626, -0.020776772871613503, 0.009731331840157509, 0.0018829815089702606, 0.01953182741999626, -0.0023014219477772713, 0.0017947978340089321, -0.06357526779174805, -0.023059174418449402, -0.004658174701035023, -0.03685041517019272, 0.0017256340943276882, 0.029131747782230377, -0.04183020070195198, 0.010028735734522343, -0.03604811802506447, 0.022021720185875893, -0.016751445829868317, 0.0018155468860641122, 0.0008904825081117451, 0.02294851280748844], [0.03042476624250412, 0.0025715562514960766, 0.04438646510243416, 0.011358238756656647, -0.02659614570438862, 0.008320867083966732, -0.041629858314991, -0.0063810329884290695, 0.029888758435845375, 0.04956786334514618, -0.04122147336602211, -0.020419305190443993, 0.024911552667617798, 0.007478570565581322, -0.037035517394542694, 0.031216014176607132, -0.014855044893920422, 0.038235150277614594, 0.012653588317334652, -0.004677297081798315, 0.05839921534061432, 0.025511369109153748, -0.014663614332675934, -0.01391065213829279, -0.01414036937057972, -0.022793050855398178, 0.0407620407640934, 0.04482037574052811, 0.03259431570768356, -0.04122147336602211, 0.0703955590724945, -0.023201435804367065, 0.011651766486465931, -0.021797608584165573, -0.003077253233641386, 0.006486319936811924, -0.02996533177793026, 0.009131258353590965, 0.04908290505409241, 0.03762257099151611, 0.0015856866957619786, 0.019104812294244766, -0.005736548453569412, -0.023928873240947723, -0.024898791685700417, 0.05257971212267876, 0.019385578110814095, -0.028102070093154907, -0.012564253993332386, 0.02963351644575596, 0.015569720417261124, 0.016386492177844048, -0.002879441250115633, -0.0069808498956263065, 0.03938373550772667, -0.002343434374779463, 0.0006779847317375243, 0.015620769001543522, 0.02983771078288555, -0.015544196590781212, 0.013540551997721195, -0.03333451598882675, -0.028638076037168503, 0.06299355626106262, 0.017892416566610336, -0.011434811167418957, 0.005053778178989887, 0.007427522446960211, -0.01979396492242813, -0.009820410050451756, 0.04974653199315071, 0.03259431570768356, -0.005111207254230976, -0.05926703289151192, -0.002538055879995227, -0.007599810138344765, -0.00763809634372592, 0.014012748375535011, -0.025600705295801163, 0.0014947570161893964, 0.007172280922532082, 0.06079848110675812, 0.017522316426038742, 0.03152230381965637, 0.02129988744854927, 0.008805825375020504, -0.06023695319890976, 0.0021328602451831102, -0.021567892283201218, -0.013361883349716663, -0.04040469974279404, -0.022257043048739433, -0.038388293236494064, 0.05656147748231888, 0.026187758892774582, -0.022103898227214813, 0.01687145046889782, 0.0007078958442434669, -0.049516815692186356, 0.04140014201402664, -0.0074849515222013, -0.0044635324738919735, 0.00010498793562874198, 0.024452118203043938, 0.02435002289712429, -0.04877661541104317, -0.026979006826877594, 0.043442074209451675, -0.026876911520957947, -0.016092965379357338, -0.015110285952687263, -0.05094616860151291, -0.012289869599044323, 0.09556235373020172, -0.0170501209795475, -0.03578483313322067, -0.05615308880805969, 0.014433897100389004, 0.02145303227007389, 0.0057110246270895, -0.04168090596795082, -0.035044632852077484, 0.04773012548685074, -0.06575016677379608, 0.017420219257473946, 0.004109385423362255, 0.0047442978248000145, 0.009214211255311966, -0.06278936564922333, -0.026494048535823822, 0.04956786334514618, -0.016654497012495995, 0.02405649423599243, -0.04211481660604477, -0.01459980383515358, -0.0027454395312815905, 0.01582496240735054, -0.02812759391963482, -0.0287401732057333, -0.04915947839617729, 0.03958792984485626, -0.010247939266264439, 0.01429351419210434, 0.011843197047710419, -0.03591245412826538, 0.019092051312327385, 0.025613466277718544, 0.0692724958062172, 0.008646300062537193, 0.00505696889013052, -0.0026800339110195637, 0.016935260966420174, -0.016399255022406578, -0.00981402862817049, 0.039945267140865326, -0.00479215569794178, 0.03729075565934181, 0.05063987895846367, -0.0018425232265144587, -0.013668172992765903, -0.004154052585363388, -0.023788491263985634, -0.03713761270046234, -0.05007834732532501, 0.004581581801176071, 0.03177754580974579, -0.005816311575472355, 0.01687145046889782, -0.048623472452163696, -0.039485830813646317, -0.022410187870264053, -0.009743837639689445, -0.04193614795804024, -0.0037233326584100723, 0.006438462529331446, -0.007312663830816746, -0.0006472760578617454, -0.01944938860833645, -0.010203272104263306, -0.010005460120737553, -0.00752961914986372, 0.013923414051532745, -0.08907922357320786, -0.049210526049137115, -0.04816403612494469, 0.03042476624250412, 0.014204179868102074, -0.005283495411276817, -0.005031444597989321, -0.035989027470350266, 0.03233907371759415, 0.05472373962402344, 0.0056982627138495445, 0.03501911088824272, -0.03775019198656082, 0.02192522957921028, -0.0203810203820467, -0.0010512751759961247, -0.009794885292649269, 0.012047390453517437, 0.05426430329680443, -0.044794850051403046, 0.032466694712638855, 0.009246116504073143, -0.02283133566379547, -0.03621874377131462, 0.019679104909300804, 0.03453414887189865, 0.0061066485941410065, -0.02192522957921028, -0.008722872473299503, -0.05046121031045914, -0.024120304733514786, 0.041578810662031174, -0.03236459940671921, 0.021504081785678864, -0.009316308423876762, -0.013578838668763638, -0.02035549469292164, 0.06421871483325958, 0.00691703986376524, 0.009552406147122383, 0.024758407846093178, 0.00865906197577715, -0.04170643165707588, -0.027412917464971542, 0.019104812294244766, -0.021810371428728104, 0.006240650080144405, -0.06421871483325958, -0.0005236435099504888, 0.027897875756025314, -0.028689123690128326, -0.029123034328222275, 0.030807627364993095, -0.02357153594493866, -0.007950766943395138, -0.04543295502662659, 0.002458292990922928, 0.0033085655886679888, 0.027438441291451454, -6.19159618509002e-05, -0.004996348638087511, 0.03471282124519348, 0.016986310482025146, -0.022154945880174637, -0.010311749763786793, -0.0019350482616573572, 0.03670370206236839, 0.026443000882864, 0.04247215390205383, 0.013591600582003593, 0.04548400267958641, -0.02948037162423134, 0.00783590879291296, 0.008308105170726776, -0.0013136952184140682, -0.013642648234963417, -0.0030644910875707865, -0.04336550086736679, -0.021963516250252724, -0.0020754309371113777, 0.0063427467830479145, 0.023201435804367065, -0.04170643165707588, -0.00019890876137651503, 0.009214211255311966, -0.01659068651497364, -0.021669987589120865, 0.028663599863648415, -0.05380487069487572, 0.018160419538617134, 0.002732677385210991, -0.023635346442461014, -0.04203824698925018, 0.015250668860971928, -0.002455102512612939, 0.010892423801124096, -0.012009103782474995, -0.022997243329882622, -0.04364626482129097, 0.01391065213829279, 0.028331786394119263, -0.013361883349716663, -0.0011549670016393065, 0.03517225384712219, 0.018300803378224373, -0.025753850117325783, -0.01853051967918873, -0.0015226739924401045, 0.04992520064115524, 0.012366442009806633, -0.011562432162463665, -0.015020951628684998, 0.041298046708106995, 0.009405642747879028, -0.020917026326060295, -0.024247925728559494, -0.0015091142849996686, -0.005044206511229277, 0.0069425636902451515, 0.03060343489050865, 0.04887871444225311, -0.005229256581515074, -0.0544174499809742, 0.01536552794277668, 0.032007262110710144, 0.028357310220599174, -0.022448474541306496, 0.012060152366757393, -0.03637188673019409, 0.06763894855976105, -0.023826777935028076, -0.05076749995350838, -0.06130896508693695, -0.007804003544151783, -0.0190154779702425, 0.057582441717386246, -0.0037456664722412825, 0.014701900072395802, 0.004000907763838768, -0.02723424881696701, 0.06355509161949158, -0.016999071463942528, 0.015722865238785744, 0.008697347715497017, 0.03438100591301918, 0.04224243760108948, -0.05079302191734314, -0.052681807428598404, -0.044003602117300034, -0.024222401902079582, 0.03330899402499199, -0.0028283928986638784, -0.021108457818627357, -0.022614380344748497, 0.006345937494188547, 0.0673326626420021, -0.013706458732485771, 0.04377388581633568, 0.04140014201402664, -0.03029714524745941, -0.011032805778086185, -0.0033915189560502768, -0.021376460790634155, 0.04321235418319702, 0.009973554871976376, 0.0383627712726593, -0.01527619268745184, 0.051941607147455215, 0.013808555901050568, 0.028714649379253387, -0.04040469974279404, -0.011390144005417824, -0.09540920704603195, 0.0012833852088078856, -0.0020786214154213667, -0.013017307035624981, -0.016399255022406578, -0.02265266701579094, 0.019347291439771652, 0.008161340840160847, 0.005264352075755596, 0.006052409764379263, 0.019730154424905777, -0.012060152366757393, -0.015097524039447308, -0.0019573818426579237, 0.03116496466100216, -0.04094070941209793, 0.01012031827121973, 0.04698992893099785, 0.018900619819760323, -0.013323596678674221, -0.02340562827885151, -0.023852301761507988, -0.030169524252414703, 0.021185029298067093, -0.012487681582570076, 0.004757060203701258, 0.0002580330183263868, 0.03274746239185333, -0.003302184632048011, 0.034151289612054825, 0.0705997496843338, 0.03700999170541763, -0.04453961178660393, 0.0011430025333538651, -0.009182306937873363, 0.032466694712638855, -0.03501911088824272, 0.018007274717092514, -0.021031884476542473, 0.04612210765480995, -0.025434797629714012, 0.038847729563713074, 0.050129394978284836, 0.007051041349768639, 0.026570621877908707, -0.023801252245903015, 0.0031857306603342295, -0.015301717445254326, 0.009609836153686047, -0.011428429745137691, -0.025294415652751923, 0.008199627511203289, -0.03450862690806389, -0.01627163402736187, 0.008129436522722244, 0.011887864209711552, 0.02129988744854927, -0.014548755250871181, 0.04173195734620094, -0.019372817128896713, 0.03741837665438652, -0.018760237842798233, -0.028689123690128326, 0.05171189084649086, 0.0044699134305119514, -0.01794346421957016, 0.04520323872566223, 0.0008670228417031467, -0.00919506885111332, -0.012340918183326721, -0.03578483313322067, 0.03366633132100105, 0.0197812020778656, -0.015008189715445042, 0.0039785741828382015, -0.11057054251432419, -0.00756152393296361, 0.005573832429945469, 0.04665811359882355, -0.02146579511463642, -0.03604007512331009, -0.0431613065302372, 0.030067427083849907, 0.012219678610563278, 0.007274377625435591, -0.032185930758714676, 0.029403800144791603, -0.0346362479031086, 0.001038513146340847, 0.007274377625435591, -0.008161340840160847, 0.04030260443687439, 0.005497260019183159, -0.0162843968719244, 0.002423197263851762, -0.010764802806079388, -0.04566267132759094, 0.006448033731430769, -0.053294386714696884, -0.030348192900419235, -0.030322669073939323, 0.026366427540779114, -0.016169536858797073, -0.08688414841890335, 0.03713761270046234, -0.06217678636312485, 0.03147125616669655, 0.062278881669044495, 0.046938877552747726, 0.05799082666635513, 0.016041917726397514, 0.005876931361854076, -0.03348766267299652, -0.01565905474126339, -0.00950135849416256, -0.034763868898153305, 0.012500443495810032, -0.027489490807056427, -0.020751118659973145, -0.007204186171293259, 0.04168090596795082, -0.006071553099900484, -0.002215813612565398, -0.03333451598882675, 0.0082251513376832, -0.03055238537490368, 0.03182859346270561, 0.04413122311234474, -0.022410187870264053, -0.025498608127236366, 0.05023149028420448, 0.0279744490981102, 0.05630623549222946, 0.017573364078998566, -0.000989857711829245, -0.005407925695180893, -0.03984317183494568, -0.038694582879543304, 0.008212389424443245, -0.013119404204189777, 0.013004545122385025, -0.019270719960331917, -0.024541452527046204, -0.0019988585263490677, 0.04505009204149246, -0.004514581058174372, 0.06258517503738403, -0.009941649623215199, 0.037163134664297104, 0.018581567332148552, 0.010547847487032413, 0.02405649423599243, 0.0029320847243070602, -0.017892416566610336, -0.0511503592133522, 0.03144573047757149, -0.05069092661142349, -0.011945294216275215, 0.032466694712638855, 0.011913388967514038, 0.0036754750180989504, -0.005924789234995842, 0.014382848516106606, -0.007523237727582455, -0.03739285469055176, 0.010605276562273502, -0.014433897100389004, -0.03680579736828804, -0.011122140102088451, 0.012194153852760792, -0.007044660393148661, 0.008263438008725643, -0.005988599266856909, -0.015493148006498814, -0.03241564705967903, 0.008020958863198757, 0.015595244243741035, -0.03706103935837746, -0.04609658196568489, 0.042523205280303955, 0.017241550609469414, 0.008327248506247997, -0.0007593429181724787, -0.010401084087789059, 0.033411089330911636, -0.04619867727160454, 0.023380104452371597, -0.015710102394223213, -0.00714675709605217, 0.007804003544151783, 0.00013739161659032106, 0.025217842310667038, 0.025881469249725342, 0.04035365208983421, 0.019998157396912575, -0.0061385538429021835, 0.024605263024568558, 0.033819474279880524, 0.00653417780995369, -0.0106563251465559, -0.018581567332148552, -0.012538730166852474, 0.015454862266778946, -0.02251228503882885, 0.023354580625891685, 0.0010193700436502695, -0.014625327661633492, 0.010056507773697376, 0.008365534245967865, 0.024592502042651176, -0.004007288720458746, 0.007051041349768639, 0.00950773898512125, -0.008033720776438713, -0.005120778921991587, -0.011753862723708153, 0.0015011379728093743, 0.026187758892774582, 0.02161893993616104, -0.06881306320428848, 0.038413818925619125, 0.0007980279624462128, 0.006406557280570269, -0.022308090701699257, 0.01703735813498497, -0.007657239679247141, -0.012640826404094696, 0.05768453702330589, -0.014944379217922688, -0.029301702976226807, -0.020138539373874664, 0.004361436236649752, -0.0016479017212986946, -0.0422934852540493, -0.025370987132191658, 0.010618038475513458, 0.02249952219426632, -0.01960253342986107, 0.00981402862817049, 0.013974462635815144, -0.004591153468936682, 0.0651375874876976, -0.01096261478960514, 0.018645377829670906, -0.010937090963125229, 0.011568812653422356, -0.010075651109218597, -0.019066527485847473, -0.02358429878950119, -0.0012658374616876245, -0.009865077212452888, -0.02585594542324543, 0.010133080184459686, 0.010879660956561565, -0.025524131953716278, 0.03910297155380249, 0.004160433541983366, 0.013846841640770435, 0.029250655323266983, -0.009099353104829788, -0.03540197014808655, 0.01869642734527588, -0.0139872245490551, -0.02040654420852661, -0.018964430317282677, 0.00729990191757679, -0.01750955544412136, -0.02340562827885151, 0.02098083682358265, -0.011071092449128628, 0.004489056766033173, -0.022091135382652283, -0.025511369109153748, -0.05395801365375519, 0.033079273998737335, 0.010700992308557034, -0.012570635415613651, 0.037469424307346344, -0.00631403224542737, -0.014995427802205086, -0.005602546967566013, -0.002941656159237027, 0.010783946141600609, 0.006473558023571968, 0.010707373730838299, -0.017228789627552032, 0.04456513375043869, 0.019257957115769386, 0.0200492050498724, 0.0031522302888333797, 0.017866892740130424, 0.005277114454656839, 0.0021759322844445705, 0.01976844109594822, -0.0368313230574131, -0.011741100810468197, 0.001003417419269681, -0.005762072745710611, 0.007140376139432192, -0.019411101937294006, 0.024847742170095444, -0.014625327661633492, -0.022920669987797737, 0.037699144333601, 0.03729075565934181, 0.03208383545279503, -0.021644463762640953, 0.01232815533876419, -0.014408372342586517, -0.0033947096671909094, 0.018185943365097046, -0.00760619156062603, 0.021835895255208015, -0.017075644806027412, -0.014255227521061897, -0.00994803011417389, -0.05395801365375519, -0.011894245631992817, 0.03269641473889351, -0.019079288467764854, -0.01474018581211567, 0.0058641694486141205, -0.017841368913650513, 0.016463065519928932, -0.04816403612494469, 0.03221145644783974, -0.026047376915812492, -0.026111187413334846, -0.023367343470454216, -0.0058960746973752975, -0.015403813682496548, -0.018160419538617134, 0.023635346442461014, -0.028689123690128326, -0.02738739363849163, 0.0030166334472596645, -0.006693703588098288, 0.026979006826877594, -0.008454868569970131, 0.02040654420852661, 0.0021934800315648317, 0.037826765328645706, 0.02433726005256176, 0.00391795439645648, -0.04686230793595314, -0.07886956632137299, 0.02479669451713562, 0.017994513735175133, -0.041578810662031174, -0.04471828043460846, -0.056969862431287766, 0.007089327555149794, -0.024107541888952255, -0.00425614882260561, 0.04658154025673866, -0.036550555378198624, -0.02251228503882885, -0.00031067655072547495, -0.04032813012599945, 0.009246116504073143, -0.007816765457391739, -0.017126692458987236, 0.011983579955995083, -0.013821317814290524, -0.01611848920583725, 0.019538722932338715, -0.04984863102436066, 0.021516842767596245, -0.03772466629743576, -0.01482952106744051, 0.004922966938465834, -0.021044647321105003, -0.007395617198199034, 0.02326524630188942, -0.01657792367041111, 0.003346851794049144, 0.04545848071575165, 0.003659522393718362, 0.024911552667617798, 0.020597973838448524, 0.005867359694093466, -0.003531901864334941, -0.025970803573727608, -0.005226065870374441, -0.03182859346270561, -0.00524201849475503, -0.002777344547212124, -0.032926131039857864, -0.02978666126728058, -0.03014400042593479, 0.004390150774270296, -0.00389562058262527, 0.010675468482077122, 0.05051225796341896, 0.004412484355270863, 0.02071283385157585, -0.05030806362628937, 0.010477656498551369, -0.0024822219274938107, -0.058195021003484726, 0.0056280712597072124, 0.016641734167933464, -0.022180471569299698, 0.024643549695611, -0.012162248603999615, 0.008429344743490219, 0.02628985606133938, 0.012908829376101494, -0.014012748375535011, 0.02845940738916397, 0.0009778933599591255, -0.01750955544412136, -0.008773920126259327, 0.009258879348635674, 0.03910297155380249, -0.007593429181724787, 0.006243840791285038, 0.027310822159051895, 0.01239834725856781, -0.015314479358494282, 0.02066178433597088, 0.016246110200881958, -0.016386492177844048, 0.001462054206058383, -0.026391953229904175, -0.02935275249183178, 0.027489490807056427, -0.004527342971414328, -0.002743844175711274, 0.0027183201164007187, 0.01826251670718193, -0.015888772904872894, -0.01103918720036745, -0.01073289755731821, 0.01763717457652092, -0.003468091366812587, -0.020917026326060295, -0.017598889768123627, -0.009073829278349876, -0.022129422053694725, -0.0123217748478055, -0.015722865238785744, 0.005002730060368776, -0.05324333906173706, -0.011690052226185799, 0.039460308849811554, -0.012659969739615917, -0.0006983242928981781, -0.026238808408379555, 0.017228789627552032, 0.08269818872213364, -0.013412931002676487, -0.041757479310035706, -0.018670903518795967, -0.008416582830250263, -0.014280752278864384, -0.049210526049137115, 0.03864353522658348, -0.02066178433597088, 0.033079273998737335, -0.0089079225435853, 0.018351851031184196, 0.007587048225104809, -0.00011824852117570117, 0.010228795930743217, -0.011441192589700222, 0.007140376139432192, 0.0017404267564415932, 0.022269805893301964, 0.013515028171241283, 0.016794878989458084, 0.020432068035006523, -0.005312209948897362, -0.015531434677541256, 0.012123962864279747, -0.02329077012836933, 0.00919506885111332, 0.005490879062563181, 0.033513184636831284, 0.009494977071881294, 0.004728345666080713, -0.011511383578181267, -0.016833165660500526, 0.0046230582520365715, 0.017458505928516388, 0.0025970805436372757, 0.04581581801176071, -0.018658140674233437, -0.043416548520326614, -0.016016392037272453, -0.005443021189421415, 0.00814857892692089, 0.016054678708314896, 0.0009420000133104622, -0.013617124408483505, 0.03131810948252678, -0.020891502499580383, -0.03517225384712219, -0.023392867296934128, -0.03966449946165085, -0.008116673678159714, -0.030041903257369995, 0.02174656093120575, -0.040685467422008514, 0.02025339938700199, 0.02325248345732689, 0.013336358591914177, -0.022576095536351204, 0.02389058843255043, 0.0009396070963703096, 0.007574286311864853, -0.016029154881834984, 0.018211469054222107, -0.014535993337631226, 0.014382848516106606, 0.001149383606389165, 0.033104799687862396, -0.01490609347820282, 0.027412917464971542, 0.0019669535104185343, -0.027132151648402214, -0.03210935741662979, -0.0325687937438488, 0.0422934852540493, 0.03545301780104637, 0.010260701179504395, -0.0033947096671909094, 0.039766598492860794, 0.02341839112341404, 0.006020504515618086, -0.03320689499378204, -0.0044252462685108185, -0.029174083843827248, 0.060543242841959, 0.03619321808218956, -0.006961707025766373, -0.008933446370065212, -0.018275277689099312, 0.007861432619392872, 0.012774827890098095, 0.03897535055875778, 0.004887871444225311, -0.018147658556699753, -0.03203278407454491, -0.012730160728096962, -0.002729486906901002, -0.0023641728330403566, -0.0295058973133564, -0.004351864568889141, 0.025307176634669304, -0.03057791106402874, 0.0139872245490551, 0.0008207603823393583, -0.028102070093154907, 0.027872351929545403, -0.0066235121339559555, 0.029582468792796135, -0.01314492803066969, -0.013157689943909645, -0.0011158831184729934, 0.013999986462295055, -0.017854129895567894, -0.04451408609747887, 0.016514113172888756, 0.035350922495126724, 0.0065852259285748005, 0.05365172401070595, -0.015467624180018902, 0.023150388151407242, -0.0023721489124000072, -0.009775742888450623, 0.015033713541924953, -0.03366633132100105, 0.04012393578886986, -0.0006444843602366745, -0.03555511683225632, -0.027591586112976074, 0.048138514161109924, -0.002983132842928171, 0.051762938499450684, 0.016641734167933464, 0.011409287340939045, -0.02907198667526245, 0.006205554585903883, 0.016233347356319427, -0.009711932390928268, 0.04198719561100006, 0.019717391580343246, -0.009692789055407047, -0.03193068876862526, -0.012487681582570076, -0.02493707649409771, -0.01703735813498497, -0.002584318397566676, 0.009073829278349876, 0.00011784970411099494, 0.020649023354053497, -0.03267088904976845, -0.013463979586958885, 0.0068978965282440186, -0.020304447039961815, 0.010464894585311413, 0.02983771078288555, 0.001441315864212811, 0.05061435326933861, -0.004294435027986765, 0.04441199079155922, 0.051482174545526505, 0.028535978868603706, -0.019525961950421333, 0.05400906503200531, 0.0346362479031086, -0.014153131283819675, 0.0061385538429021835, -0.019653581082820892, 0.03494253754615784, -0.008569727651774883, -0.028076544404029846, 0.06763894855976105, 0.03540197014808655, -0.009335451759397984, -0.024694597348570824, 0.0162843968719244, 0.0045464858412742615, 0.012187773361802101, -0.000941202393732965, -0.011058330535888672, 0.010445751249790192, 0.01352779008448124, 0.0058577884919941425, -0.021108457818627357, -0.006929801777005196, -0.012832256965339184, 0.008059244602918625, 0.004712393041700125, 0.013310834765434265, 0.00403600325807929, 0.0057110246270895, 0.007331807166337967, -0.003815857693552971, -0.01948767527937889, 0.04331445321440697, 0.018198706209659576, 0.010892423801124096, 0.029735613614320755, -0.00829534325748682, 0.030322669073939323, -0.004319959320127964, 0.02249952219426632, 0.01025431975722313, 0.02101912349462509, 0.014803996309638023, 0.04395255446434021, 0.0064958916045725346, -0.008946208283305168, -0.005267542786896229, -0.008346390910446644, -0.01490609347820282, 0.0002450715401209891, 0.0030086571350693703, -0.004846394527703524, -0.03325794264674187, 0.0061896019615232944, -0.019870536401867867, -0.016922499984502792, 0.003531901864334941, -0.025473084300756454, 0.003417043248191476, 0.01544210035353899, 0.012264345772564411, 0.03425338491797447, 0.019870536401867867, -0.003736094804480672, -0.019551485776901245, 0.03356423228979111, 0.013259786181151867, 0.007287139538675547, 0.009488595649600029, -0.010879660956561565, 0.045586101710796356, 0.036729227751493454, 0.011013663373887539, 0.0031203250400722027, -0.019998157396912575, -0.014382848516106606, 0.028331786394119263, -0.037648092955350876, -0.021963516250252724, -0.04239558428525925, 0.019219672307372093, -0.014574279077351093, -0.028535978868603706, 0.018211469054222107, 0.01558248233050108, 0.0018329517915844917, -0.0066235121339559555, -0.005436640232801437, 0.05385591834783554, -0.028995413333177567, -0.0325687937438488, 0.010975376702845097, -0.024133067578077316, -0.047525934875011444, -0.005822692532092333, -0.01916862279176712, -0.022422950714826584, 0.009488595649600029, -0.029403800144791603, -0.004913395270705223, 0.008410201407968998, 0.013578838668763638, -0.011166808195412159, -0.024566976353526115, 0.007982672192156315, 0.033844999969005585, -0.02845940738916397, 0.007427522446960211, 0.013897890225052834, 0.004339102655649185, 0.025141270831227303, 0.01735641062259674, 0.0019111194415017962, -0.026979006826877594, -0.025613466277718544, -0.017726508900523186, -0.013272549025714397, 0.005111207254230976, 0.0025221032556146383, 0.02965904213488102, -0.024120304733514786, 0.0063810329884290695, -0.027310822159051895, -0.02948037162423134, -0.017241550609469414, -0.025128507986664772, -0.002183908596634865, -0.030373716726899147, 0.004581581801176071, 0.012232440523803234, 0.02128712646663189, 0.021095694974064827, -0.007210567127913237, 0.0010432988638058305, -0.007089327555149794, -0.0008893564809113741, -0.009999078698456287, 0.01360436249524355, 0.018734712153673172, -0.018441185355186462, -0.017726508900523186, 0.013259786181151867, -0.010439369827508926, 0.03387052193284035, 0.010847755707800388, 0.01794346421957016, 0.020470354706048965, -0.0006014123791828752, 0.019194146618247032, -0.009935268200933933, -0.012436632998287678, 0.023788491263985634, -0.00035713842953555286, 0.004664535168558359, 0.01109661627560854, 0.038694582879543304, -0.004284863825887442, 0.008129436522722244, -0.01581219956278801, -0.04410570114850998, 0.008563346229493618, 0.018772998824715614, -0.02112121880054474, -0.015914296731352806, 0.01063718181103468, 0.0007748967036604881, 0.015595244243741035, 0.008320867083966732, -0.04152776300907135, -0.0015569720417261124, 0.005117588676512241, 0.011390144005417824, 0.003898811060935259, 0.00851229764521122, -0.040838610380887985, -0.01642477884888649, 0.01482952106744051, 0.024260686710476875, 0.010452131740748882, 0.005685500334948301, 0.009246116504073143, -0.019538722932338715, -0.00015095130947884172, 0.00639060465618968, 0.07407103478908539, 0.009258879348635674, -0.023086577653884888, 0.016628971323370934, 0.036269791424274445, -0.004664535168558359, 0.00768276397138834, -0.014472182840108871, 0.015761151909828186, 0.020942550152540207, -0.03057791106402874, 0.04847032576799393, 0.014357324689626694, 0.02754053846001625, -0.0115560507401824, 0.0031618019565939903, 0.01278120931237936, 0.036269791424274445, 0.05309019610285759, 0.019117575138807297, 0.015020951628684998, -0.037494949996471405, -0.0013791007222607732, -0.010815851390361786, -0.0035191397182643414, -0.02843388356268406, 0.012130343355238438, -0.009699170477688313, -0.018351851031184196, 0.020457591861486435, -0.017598889768123627, 0.02070007100701332, -0.016029154881834984, 0.024847742170095444, -0.016016392037272453, -0.02705558016896248, 0.0196152962744236, -0.0006010135402902961, 0.027566062286496162, -0.008780301548540592, -0.010458513163030148, 0.003886049147695303, 0.005286685656756163, 0.020572450011968613, 0.020419305190443993, 0.0008311295532621443, -0.004798536654561758, -0.0018871905049309134, 0.008091149851679802, -0.02766815945506096, 0.00475067924708128, -0.006674560718238354, -0.05477478727698326, -0.01293435413390398, -0.018594330176711082, 0.009718312881886959, 0.002944846637547016, -0.01883680932223797, -0.05158426985144615, -0.0041061947122216225, 0.00608431501314044, 0.05599994584918022, -0.05686776712536812, -0.0022971718572080135, -0.021491318941116333, -0.009845933876931667, 0.007274377625435591, -0.01232815533876419, -0.013566075824201107, 0.01583772338926792, 0.0008303319336846471, -0.027183201164007187, 0.028382834047079086, -0.0020530973561108112, -0.004230624996125698, 0.02343115396797657, -0.04579029232263565, 0.006320413202047348, -0.023175911977887154, -0.024528691545128822, -0.013719220645725727, -0.030067427083849907, 0.01674383133649826, 0.03333451598882675, -0.00934821367263794, -0.015174096450209618, 0.02326524630188942, 0.03302822634577751, -0.007108470890671015, 0.04305921122431755, -0.016399255022406578, 0.003083634190261364, 0.0018249754793941975, 0.02432449720799923, -0.006505463272333145, 0.006693703588098288, -0.0030150380916893482, -0.04285501688718796, 0.0003066883946303278, -0.0066617983393371105, 0.01777755841612816, -0.002941656159237027, -0.0010568585712462664, 0.007516856770962477, -0.03392157331109047, 0.020495878532528877, -0.020610736683011055, -0.005353686865419149, 0.006789419334381819, 0.001107906806282699, -0.007421141490340233, -0.005570641718804836, 0.03706103935837746, -0.00994803011417389, -0.023622583597898483, -0.022257043048739433, -0.011575194075703621, -0.035504069179296494, 0.01481675822287798, -0.011179570108652115, -0.01932176761329174, -0.01375750731676817, 0.006448033731430769, -0.00353509234264493, 0.002230171114206314, 0.03167544677853584, -0.0010082032531499863, 0.02175932191312313, 0.012813114561140537, -0.0027135342825204134, -0.001361552975140512, -0.010535085573792458, 0.020266160368919373, -0.0022030516993254423, -0.01579943858087063, -0.025358224287629128, 0.012302631512284279, -0.0009483810281381011, -0.012028247117996216, 0.0019190956372767687, 0.007938005030155182, 0.01990882307291031, -0.02628985606133938, -0.031241538003087044, -0.01567181758582592, 0.010745659470558167, 0.007861432619392872, -0.016207823529839516, -0.019806725904345512, 0.01368093490600586, -0.026417477056384087, 0.014395610429346561, 0.0009292379254475236, 0.00873563438653946, -0.0008630347438156605, -0.002684819744899869, 0.016858689486980438, 0.005564260762184858, 0.04346759617328644, 0.007874194532632828, 0.011919769458472729, 0.008646300062537193, -0.007465808652341366, -0.030475813895463943, 0.020304447039961815, 3.880964140989818e-05, 0.008856873959302902, 0.0061768400482833385, -0.03700999170541763, 0.0005643226322717965, -0.04489694908261299, -0.04124699905514717, 0.0190154779702425, 0.0009842743165791035, -0.035657212138175964, 0.009724694304168224, 0.02628985606133938, 0.018300803378224373, -0.043263405561447144, 0.0007980279624462128, -0.024426594376564026, 0.0004506604454945773, -0.012755684554576874, -0.01521238312125206, -0.017573364078998566, -0.018619854003190994, 0.014306276105344296, -0.018058324232697487, 0.021529605612158775, -0.009616216644644737, 0.007880575954914093, -0.0065916068851947784, 0.029761137440800667, -0.030756579712033272, 0.007925243116915226, -0.028816744685173035, 0.017892416566610336, 0.0015569720417261124, 0.034457579255104065, 0.014880568720400333, 0.01989606022834778, 0.005663166753947735, -0.020585212856531143, -0.030016379430890083, -0.010311749763786793, -0.04790879413485527, 0.00966088380664587, 0.0003858530835714191, 0.031267061829566956, -0.005407925695180893, 0.021989040076732635, 0.0038764774799346924, -0.0023625774774700403, 0.016488589346408844, 0.009156782180070877, -0.006680941674858332, 0.006253412459045649, 0.011154045350849628, -0.012136724777519703, -0.028561504557728767, 0.0015713294269517064, -0.01946215145289898, 0.029761137440800667, -0.03259431570768356, -0.003048538463190198, 0.014727423898875713, -0.0037839526776224375, 0.031139440834522247, 0.033411089330911636, -0.05554050952196121, 0.00023569940822198987, 0.014204179868102074, -0.008901541121304035, -0.004549676552414894, -0.007274377625435591, 0.0040679085068404675, -0.02295895665884018, 0.021542366594076157, -0.027336345985531807, -0.03213488310575485, -0.01186234038323164, 0.015633530914783478, -0.007670001592487097, -0.0026273904368281364, -0.019385578110814095, 0.025817658752202988, -0.0008718086173757911, -0.04729621857404709, -0.00888877920806408, -0.01482952106744051, 0.007969910278916359, -0.012200535275042057, 0.0017627603374421597, -0.0057812160812318325, 0.04152776300907135, -0.018887856975197792, -0.0017021405510604382, -0.010988138616085052, -0.013106641359627247, -0.0028714649379253387, -0.028357310220599174, -0.04336550086736679, 0.03364080563187599, 0.0021743369288742542, 0.005988599266856909, 0.057735588401556015, -0.022627143189311028, -0.04060889407992363, -0.07361159473657608, -0.006479938980191946, -0.008244294673204422, 0.010305368341505527, -0.009571549482643604, -0.018020037561655045, -0.03208383545279503, -0.0021137171424925327, 0.0066235121339559555, -0.01688421331346035, 0.02192522957921028, 0.010803088545799255, 0.016054678708314896, 0.029914282262325287, 0.009673645719885826, -0.0026337713934481144, 0.022601619362831116, 0.011811291798949242, -0.02420963905751705, -0.003503187093883753, 0.016705544665455818, -0.01614401303231716, 0.04178300499916077, 0.017407458275556564, 0.042982637882232666, 0.012487681582570076, 0.029123034328222275, 0.031267061829566956, 0.007874194532632828, 0.052069228142499924, -0.009482215158641338, -0.030348192900419235, -0.022422950714826584, 0.026519572362303734, 0.021721037104725838, 0.013023688457906246, 0.0012052175588905811, 0.013183213770389557, 0.014242465607821941, 0.017292600125074387, 0.007542381063103676, -0.030220571905374527, 0.0007928433478809893, -0.002861893270164728, -0.031700972467660904, -0.026953483000397682, 0.019066527485847473, -0.0010983352549374104, -0.02631537988781929, -0.014587041921913624, 0.031267061829566956, 0.02935275249183178, 0.01780308224260807, -0.004824060946702957, 0.01444665901362896, -0.027948925271630287, 0.026876911520957947, -0.017420219257473946, 0.01314492803066969, 0.01719050295650959, -0.010241557843983173, 0.01689697615802288, 0.0043103876523673534, -0.011230617761611938, 0.04351864382624626, -0.05416220799088478, 0.009769361466169357, 0.03665265440940857, -0.002531674923375249, 0.015863247215747833, 0.0060683623887598515, -0.02052140235900879, -0.0180838480591774, -0.010401084087789059, 0.005755691789090633, 0.028816744685173035, -0.002624199725687504, 0.045228760689496994, 0.01809660904109478, 0.021810371428728104, 0.006885134615004063, -0.00676389504224062, 0.03162439912557602, 0.03882220387458801, -0.02981218695640564, 0.013106641359627247, 0.03524882718920708, -0.01763717457652092, 0.014102082699537277, -0.006256602704524994, 0.013438455760478973, -0.0024710551369935274, -0.004185957834124565, 0.036448460072278976, -0.02708110399544239, 0.027310822159051895, 0.02736186981201172, -0.0020674546249210835, -0.0006018111598677933, 0.016692781820893288, 0.0016447112429887056, 0.0032112549524754286, 0.009297165088355541, -0.0043805791065096855, 0.007976291701197624, 0.007465808652341366, -0.015301717445254326, -0.06478025019168854, -0.03195621445775032, -0.025281652808189392, -0.02674929052591324, 0.019538722932338715, 0.026876911520957947, -0.047372788190841675, 0.010164985433220863, -0.03221145644783974, 0.020942550152540207, -0.013719220645725727, 0.0070191361010074615, 0.004788965452462435, 0.023546012118458748], [0.027790183201432228, 0.04303479939699173, 0.05010730028152466, 0.01456985343247652, -0.03656208515167236, 0.013307799585163593, -0.006922554690390825, -0.026015810668468475, 0.017868688330054283, 0.06447722762823105, -0.04358460381627083, 0.034987643361091614, -0.04393448308110237, -0.00391736626625061, -0.014382420107722282, 0.056280121207237244, 0.019030777737498283, 0.041810233145952225, 0.0014198110438883305, 0.003405047347769141, 0.039036210626363754, 0.00023038737708702683, 0.006972536910325289, -0.005672996398061514, -0.02290440909564495, -0.03161383420228958, 0.06542688608169556, 0.031213974580168724, 0.0321386493742466, -0.03983592987060547, 0.053980931639671326, -0.0006595326703973114, 0.020380301401019096, -0.006828838028013706, 0.0008395471959374845, -0.011839567683637142, -0.0452590137720108, 0.018018634989857674, 0.04753321036696434, 0.03711188957095146, -0.011614647693932056, -0.00042445946019142866, -0.031638823449611664, -0.011739603243768215, -0.03578735888004303, 0.05927906185388565, 0.0036799502559006214, -0.03361312672495842, -0.013445250689983368, 0.006163448095321655, -0.012558064423501492, -0.010283867828547955, 0.023566676303744316, -0.016781572252511978, 0.019218211993575096, 0.04843289405107498, 0.014894738793373108, 0.03286339342594147, -0.01566946506500244, -0.01576942950487137, 0.014794774353504181, -0.03956102579832077, -0.03273843601346016, 0.024103986099362373, -0.004473419860005379, -0.01129600964486599, 0.009933991357684135, 0.025965828448534012, -0.028464945033192635, 0.018493467941880226, 0.048332925885915756, 0.054580722004175186, -0.023516694083809853, -0.026690572500228882, -0.0012159767793491483, -0.031188983470201492, 0.004873278550803661, -0.006485209334641695, -0.021942250430583954, 0.002124249702319503, -0.052981287240982056, 0.02291690558195114, 0.012258170172572136, 0.03171379864215851, -0.0009223304805345833, 0.007659794297069311, -0.025141119956970215, 0.03358813747763634, -0.06127835437655449, -0.002055523917078972, -0.032838400453329086, -0.035262543708086014, -0.004342216067016125, 0.017743732780218124, 0.030364274978637695, -0.03808654844760895, 0.027440307661890984, -0.014719801023602486, -0.0359622985124588, 0.04683345556259155, 0.023566676303744316, 0.013382772915065289, -0.0017009617295116186, 0.04146035388112068, 0.027290361002087593, -0.03073914162814617, -0.03041425719857216, 0.00977779645472765, 0.003645587246865034, -0.03393801301717758, -0.04953250288963318, -0.004966995678842068, -0.016019342467188835, 0.07902208715677261, -0.02724037878215313, -0.023441720753908157, -0.07342406362295151, 0.04755819961428642, 0.055430419743061066, 0.012832967564463615, -0.002041466301307082, -0.041810233145952225, 0.01094613317400217, -0.05473066866397858, 0.01029636338353157, 0.014257463626563549, -0.03378806635737419, 0.0308391060680151, -0.05897916853427887, 0.00955287553369999, 0.07372395694255829, 0.016594137996435165, 0.048757776618003845, -0.05070709064602852, -0.025690926238894463, 0.0034831445664167404, -0.02609078399837017, 0.008734414353966713, -0.0057448456063866615, -0.05293130502104759, 0.018518459051847458, -0.0010621248511597514, 0.023291772231459618, 0.012645533308386803, -0.053830984979867935, 0.02911471575498581, 0.0008426710846833885, 0.09916497021913528, -0.009315459989011288, 0.01541955303400755, -0.02943960204720497, 0.0049919867888092995, -0.02055523917078972, -0.012714259326457977, 0.005635509267449379, -0.041085489094257355, 0.03621220961213112, 0.08477005362510681, 0.0002139869175152853, -0.013057887554168701, 0.02390405721962452, -0.020955098792910576, -0.025128623470664024, -0.009771548211574554, 0.0003198089252691716, 0.011645886115729809, -0.03481270372867584, 0.012564311735332012, -0.045408960431814194, -0.06087849661707878, -0.01868090219795704, -0.03548746556043625, -0.03013935498893261, -0.01971803605556488, -0.035737376660108566, -0.0059416512958705425, -0.01225192192941904, -0.038311466574668884, -0.007722272537648678, -0.03371309116482735, 0.02201722376048565, 0.0026537501253187656, -0.08172113448381424, -0.030289301648736, -0.06367750465869904, 0.048757776618003845, 0.019880477339029312, -0.007790998090058565, -0.019630566239356995, -0.0015189946861937642, 0.027415316551923752, 0.05003232881426811, 0.030614186078310013, 0.043834514915943146, -0.026740554720163345, 0.016706598922610283, -0.012520577758550644, 0.008153369650244713, 0.01925569772720337, -0.00034362863516435027, 0.016019342467188835, -0.02941461093723774, 0.07647299021482468, -0.004773314110934734, -0.01145845279097557, -0.04925760254263878, 0.018168581649661064, 0.013820118270814419, 0.01651916466653347, -0.014269959181547165, -0.009852769784629345, -0.026415670290589333, -0.016631625592708588, 0.029589548707008362, -0.021704833954572678, -0.0028755466919392347, -0.011927037499845028, -0.00020578668045345694, -0.012014506384730339, 0.03736180439591408, 0.02305435575544834, 0.04221009090542793, 0.018905822187662125, -0.0026943606790155172, -0.04013582319021225, -0.015382066369056702, 0.01838100701570511, -0.03271344304084778, 0.054430775344371796, -0.022716976702213287, 0.02084263786673546, 0.028290007263422012, 0.0007993270410224795, -0.007109988480806351, 0.00934669841080904, -0.027065439149737358, -0.013807622715830803, -0.00024385917640756816, -0.027165405452251434, -0.006860076915472746, 0.0051575531251728535, 0.016481678932905197, 0.016569146886467934, 0.04928259178996086, 0.004307853523641825, -0.020892620086669922, -0.022841932252049446, 0.016556652262806892, 0.011620895005762577, 0.030764132738113403, 0.050957001745700836, 9.890305591397919e-06, 0.023529188707470894, -0.0076223076321184635, 0.010140168480575085, -0.0295395664870739, 0.0001973912148969248, -0.010196398012340069, 0.03741178661584854, 0.005001358222216368, 6.360057886922732e-05, -0.007666042074561119, -0.01650667004287243, 0.0030223699286580086, -0.013382772915065289, -0.015432048588991165, 0.03893624618649483, 0.01623176597058773, -0.028040096163749695, 0.016694102436304092, -0.002925529144704342, 0.05578029528260231, 0.02784016542136669, -0.03836144879460335, -0.06537690758705139, 0.0066663953475654125, 0.006653899792581797, 0.02390405721962452, -0.005338739138096571, -0.03578735888004303, -0.02754027210175991, -0.02045527473092079, 0.03983592987060547, 0.00012759164383169264, -0.01725640520453453, 0.002093010814860463, -0.03183875232934952, 0.03928612172603607, 0.0022945019882172346, 0.0050857034511864185, 0.04560888931155205, 0.020892620086669922, 0.015044685453176498, -0.006660147570073605, 0.030789123848080635, 0.011964524164795876, -0.03531252592802048, -0.010533778928220272, 0.027440307661890984, -0.005263765808194876, 0.023866569623351097, 0.04333469271659851, -0.010671230964362621, -0.007066254038363695, -0.03858637064695358, 0.01108358521014452, 0.04898269847035408, 0.019168229773640633, -0.040935542434453964, 0.014294950291514397, -0.01866840571165085, 0.048607829958200455, 0.020980089902877808, -0.019043274223804474, -0.08756906539201736, 0.025141119956970215, 0.03361312672495842, 0.06997528672218323, -0.014757287688553333, 0.04495912045240402, 0.024603810161352158, 0.006635156460106373, 0.061828162521123886, -0.030064379796385765, 0.04246000200510025, 0.0025147367268800735, -0.025141119956970215, 0.006710129790008068, -0.029389619827270508, -0.05897916853427887, -0.018805857747793198, 0.03403797745704651, 0.026915492489933968, 0.00420476496219635, -0.025615951046347618, -0.03128894791007042, -0.0014182490995153785, 0.06457719206809998, -0.014457393437623978, 0.05273137241601944, 0.017731236293911934, -0.041060496121644974, 0.006616413127630949, -0.004945128224790096, -0.037761662155389786, 0.04800804331898689, -0.0033987995702773333, -0.020780159160494804, 0.006691386457532644, 0.053381145000457764, -0.0058635538443923, 0.030664168298244476, -0.03328824043273926, 0.009852769784629345, -0.07392388582229614, 0.0017181431176140904, 0.0101526640355587, -0.024678783491253853, -0.03278841823339462, -0.02101757563650608, -0.05578029528260231, 0.009802787564694881, 0.0336381196975708, 0.023954039439558983, -0.03286339342594147, -0.025840872898697853, 0.0022788825444877148, -0.004720207769423723, 0.012807975523173809, -0.037161871790885925, 0.018031131476163864, 0.024953685700893402, -0.02666558139026165, -0.001996169798076153, -0.021642355248332024, -0.014594844542443752, -0.04593377560377121, -0.00412354338914156, 0.015019694343209267, -0.0173688642680645, 0.049332574009895325, 0.03248852491378784, 0.04076060280203819, 0.050057318061590195, 0.06962540745735168, 0.02681552805006504, -0.04011083021759987, 0.009502893313765526, 0.009852769784629345, 0.009390433318912983, -0.022691985592246056, 0.046308644115924835, -0.005319995805621147, -0.008022166788578033, 0.004767066333442926, 0.024591313675045967, 0.04378453269600868, 0.018918316811323166, 0.04260994866490364, -0.03443783521652222, 0.01558199618011713, -0.001669722725637257, -0.00984652154147625, -0.02911471575498581, 0.000309851486235857, -0.009546628221869469, -0.01610681042075157, -0.013732649385929108, 0.02202971838414669, 0.028339989483356476, 0.04318474605679512, 0.027890147641301155, 0.024228941649198532, -0.005741721950471401, 0.01332029514014721, -0.02246706373989582, 0.0218797717243433, 0.06812593340873718, -0.04028576985001564, -0.010871159844100475, 0.016181783750653267, -0.002197661204263568, 0.013582702726125717, -0.010477549396455288, -0.02058023028075695, 0.024516340345144272, 0.0362371988594532, -0.0191432386636734, -0.004810800775885582, -0.06462717056274414, -0.027965122833848, 0.027340343222022057, 0.07017521560192108, 0.004301605746150017, -0.01693151891231537, 0.002238271990790963, 0.02320430427789688, 0.002488183556124568, 0.028764840215444565, -0.03998587653040886, 0.021667346358299255, -0.0527813546359539, 0.030489230528473854, 0.016581643372774124, 0.014182490296661854, 0.03263847157359123, -0.013820118270814419, -0.00032332330010831356, 0.04435933008790016, -0.0014526118757203221, -0.011827072128653526, 0.0041297911666333675, -0.031788770109415054, -0.018356015905737877, -0.06257789582014084, 0.017068970948457718, 0.00583231495693326, -0.058929186314344406, 0.06737620383501053, -0.03358813747763634, 0.033113304525613785, 0.03243854269385338, 0.040210798382759094, 0.04815798997879028, 0.013307799585163593, 0.009909000247716904, 0.01580691710114479, -0.023154322057962418, -0.01369516272097826, -0.02287941798567772, 0.01765626296401024, -0.0396609902381897, -0.0047233314253389835, 0.0034862684551626444, 0.04653356224298477, -0.01413250807672739, -0.0004139163065701723, -0.012957923114299774, 0.0037455519195646048, -0.010821177624166012, 0.011027354747056961, 0.04575883597135544, -0.0440344475209713, -0.040360745042562485, 0.04236003756523132, 0.04258495941758156, 0.03443783521652222, 0.011620895005762577, 0.006035367958247662, -0.005016977898776531, -0.06977535039186478, -0.01769375056028366, 0.028040096163749695, -0.01303289644420147, 0.016619129106402397, -0.02362915314733982, 0.0015752248000353575, -0.05942900851368904, 0.02391655184328556, -0.026565616950392723, 0.056430067867040634, -0.05228153243660927, 0.032238613814115524, -0.005701111163944006, 0.02084263786673546, -0.0006751521723344922, 0.010664982721209526, 0.012558064423501492, -0.03796159103512764, 0.03113900125026703, -0.04221009090542793, -0.03448781743645668, 0.026490643620491028, 0.021205009892582893, -0.018893325701355934, 0.024553827941417694, 0.02088012546300888, 0.01911824755370617, -0.0040360745042562485, -0.004167277831584215, -0.050507158041000366, -0.018493467941880226, -0.04343465715646744, 0.031638823449611664, -0.02389156073331833, 0.0052825091406702995, 0.013245321810245514, -0.027715209871530533, 0.005335615482181311, 0.0017712493427097797, 0.01635672152042389, -0.014507375657558441, -0.05203162133693695, 0.017756227403879166, -0.014344933442771435, 0.01485725212842226, 0.006147828418761492, -0.020767664536833763, 0.0253660399466753, -0.017468828707933426, -0.009527884423732758, -0.02301687002182007, -0.0052825091406702995, 0.01913074217736721, 0.003156697377562523, 0.014207481406629086, 0.05827941372990608, 0.03431288152933121, 0.006622660905122757, 0.003714313032105565, 0.00999022088944912, 0.006132208742201328, 0.029939424246549606, -0.009421671740710735, -0.0382864773273468, -0.013770136050879955, 0.015994351357221603, -0.018868334591388702, 0.025153614580631256, 0.017993643879890442, 0.0020742672495543957, 0.0071287318132817745, 0.023566676303744316, 0.013920082710683346, -0.0287148579955101, -0.0007790217059664428, 0.00565737672150135, 0.02956455759704113, 0.008128378540277481, 0.0006489895167760551, -0.02549099549651146, 0.0230418611317873, 0.03481270372867584, -0.0388362817466259, 0.051081955432891846, -0.018743379041552544, 0.012464347295463085, -0.05712981894612312, 0.00681634247303009, -0.019518105313181877, -0.02781517431139946, 0.025116128847002983, -0.0013479613699018955, -0.02751528099179268, -0.008197104558348656, 0.02417895942926407, 0.01755629852414131, -0.02811506949365139, -0.025740908458828926, 0.02404150739312172, 0.003936109598726034, -0.0313139408826828, 0.03881129249930382, 0.0008270516409538686, -0.004685844760388136, 0.03563741222023964, -0.021367453038692474, 0.024878712370991707, -0.03173878788948059, 0.025990819558501244, -0.008428272791206837, -0.0156569704413414, -0.022579524666070938, -0.0019352539675310254, -0.009046804159879684, 0.0022023471537977457, -0.0033331976737827063, -0.0064039877615869045, 0.013207835145294666, 0.04011083021759987, -0.002988007152453065, 0.01883084885776043, -0.008603211492300034, 0.007447369396686554, -0.028040096163749695, 0.02419145591557026, -0.031089019030332565, 0.0016478553880006075, 0.016481678932905197, -0.02664059028029442, -0.008821884170174599, -0.006660147570073605, -0.0002665074134711176, -0.03653709590435028, 0.020255345851182938, -0.021829789504408836, -0.02159237302839756, -0.04043571650981903, 0.05318121612071991, -0.009896504692733288, -0.007953440770506859, 0.014532366767525673, 0.007466112729161978, -0.018755875527858734, 0.005132562015205622, -0.009452911093831062, -0.002553785452619195, 0.004114171955734491, 0.020242849364876747, -0.02639067731797695, 0.05927906185388565, 0.027190396562218666, 0.01855594478547573, -0.037436775863170624, 0.0315888412296772, 0.012339391745626926, -0.02841496281325817, -0.002105506369844079, -0.03071415051817894, -0.016044333577156067, 0.023404233157634735, 0.006622660905122757, 0.012483091093599796, -0.015157146379351616, -0.0010402575135231018, -0.02971450425684452, -0.011339744552969933, 0.010927390307188034, -0.010115177370607853, 0.052531443536281586, -0.018468476831912994, 0.020380301401019096, 0.0039017468225210905, -0.019193220883607864, 0.01050254050642252, -0.009046804159879684, 0.040060847997665405, -0.010852416977286339, -0.0071599711664021015, 0.018943307921290398, -0.04683345556259155, 0.02349170297384262, 0.024578819051384926, 0.0162067748606205, -0.015369570814073086, 0.018193572759628296, -0.04435933008790016, 0.033413197845220566, -0.032663460820913315, 0.034262899309396744, -0.009184256196022034, 0.00891560036689043, -0.017418846487998962, -0.018193572759628296, -0.024141471832990646, -0.012807975523173809, 0.037911608815193176, -0.017568795010447502, 0.008590715937316418, 0.012670524418354034, -0.0017087714513763785, 0.013370277360081673, -0.0089905746281147, 0.013707658275961876, 0.0017400103388354182, 0.010015211999416351, -0.006341509986668825, -0.002342922380194068, -0.04255996644496918, -0.08127129077911377, 0.012782984413206577, 0.027740200981497765, -0.0492326095700264, -0.027340343222022057, -0.03421291336417198, -0.016419200226664543, -0.020792655646800995, 0.02088012546300888, 0.06247793138027191, -0.03983592987060547, -0.02639067731797695, 0.021379947662353516, -0.04373455047607422, -0.0039704726077616215, -0.008147122338414192, 0.024291420355439186, 0.015706952661275864, -0.015981854870915413, -0.003954852931201458, 0.006004129070788622, -0.025765899568796158, 0.02331676334142685, -0.037436775863170624, 0.007078749593347311, 0.018306033685803413, -0.01740635186433792, -0.0246163047850132, 0.027940131723880768, -0.001177708967588842, 0.010864912532269955, 0.01884334348142147, -0.0022257762029767036, 0.0052231550216674805, 0.011764594353735447, -0.018605928868055344, 0.01780620962381363, -0.0204427782446146, -0.0022960640490055084, -0.01158340834081173, 0.005626137834042311, -0.021767310798168182, -0.04068562760949135, -0.037161871790885925, -0.042834870517253876, 0.025890855118632317, 0.01566946506500244, -0.004979491233825684, 0.009546628221869469, 0.001980550354346633, -0.005641757044941187, -0.022417081519961357, 0.009446662850677967, 0.002984883263707161, -0.01868090219795704, 0.05782957375049591, -0.004726455546915531, -0.012089479714632034, 0.015594491735100746, 0.018018634989857674, 0.010371336713433266, -0.021417435258626938, 0.01724390871822834, 0.00992774311453104, -0.0046233669854700565, 0.006288403645157814, -0.017456334084272385, -0.006503952667117119, 0.007609812077134848, 0.03481270372867584, 0.0009246733970940113, 0.033113304525613785, 0.028639884665608406, -0.002836498199030757, 0.028364980593323708, 0.021929753944277763, -0.016781572252511978, -0.028290007263422012, -0.021404938772320747, -0.00876565370708704, -0.02186727523803711, 0.027490289881825447, 0.01696900650858879, -0.006485209334641695, -0.009727814234793186, 0.012220683507621288, -0.006697634235024452, -0.00824708677828312, -0.008209600113332272, 0.0043265968561172485, 0.009933991357684135, -0.05468068644404411, -0.003776791039854288, -0.013857604935765266, -0.006616413127630949, -0.02462880127131939, 0.020030423998832703, -0.019030777737498283, -0.06962540745735168, 0.008778149262070656, 0.030089370906352997, -0.016031837090849876, -0.014082525856792927, 0.0011534987716004252, 0.007503599394112825, 0.04315975680947304, -0.023791596293449402, -0.04495912045240402, -0.023404233157634735, 0.014057534746825695, -0.04148534685373306, 0.003573737572878599, 0.024741260334849358, -0.0034581534564495087, 0.023091843351721764, -0.01027761958539486, -0.00435158796608448, -0.007466112729161978, -0.010433814488351345, 0.006047863978892565, 0.011221036314964294, 0.03393801301717758, 0.02041778713464737, -0.0018571565160527825, 0.0031067151576280594, 0.007328661158680916, 0.03838644176721573, -0.03988591209053993, 0.008203352801501751, 0.012376878410577774, -0.014095021411776543, 0.038336459547281265, 0.006282155867666006, 0.013882596045732498, 0.011177302338182926, 0.007903458550572395, 0.02781517431139946, -0.006057235412299633, -0.0015721009112894535, 0.018768370151519775, 0.03926113247871399, 0.028514927253127098, -0.014407411217689514, 0.005844810511916876, -0.008253335021436214, -0.004198517184704542, 0.0015486717456951737, 0.002983321202918887, 0.004913889337331057, -0.005701111163944006, 0.027590254321694374, -0.051531799137592316, -0.03378806635737419, 0.0024475730024278164, -0.03488767519593239, 0.0011425651609897614, -0.022941896691918373, 0.00897183082997799, -0.01160215213894844, 0.008128378540277481, -0.0029442724771797657, 0.006566430442035198, 0.0032707196660339832, -0.0035424986854195595, 0.006860076915472746, 0.00926547683775425, -0.009359193965792656, 0.01754380390048027, 0.033388204872608185, -0.02651563473045826, 0.006810094695538282, 0.049357566982507706, 0.012957923114299774, 0.043109770864248276, -0.010252628475427628, -0.03621220961213112, -0.024378888309001923, -0.03873631730675697, 0.03873631730675697, -0.0003371856000740081, 0.01665661670267582, 0.011614647693932056, 0.007010024040937424, 0.048607829958200455, -0.0060728550888597965, -0.047758132219314575, -0.017468828707933426, 0.0008582905866205692, 0.057479698210954666, 0.04031076282262802, 0.00539496960118413, 0.006185315083712339, 0.0022851303219795227, 0.006822590250521898, 0.04495912045240402, 0.026740554720163345, 0.015219624154269695, -0.016756581142544746, -0.03348817303776741, -0.017306387424468994, -0.009590362198650837, -0.026140766218304634, -0.007209953386336565, -0.044859156012535095, 0.005494934041053057, -0.013207835145294666, 0.028764840215444565, 0.016319235786795616, 0.006497704889625311, 0.013395268470048904, 0.008190857246518135, 0.035562437027692795, -0.007559829857200384, -0.02332925982773304, -0.010046451352536678, 0.0011191359953954816, -0.032688453793525696, -0.012058240361511707, 0.017356369644403458, 0.018605928868055344, -0.007472360506653786, 0.05075707286596298, -0.018193572759628296, 0.015619482845067978, 0.0033238260075449944, -0.013020400889217854, 0.011196045204997063, -0.012651781551539898, 0.022716976702213287, 0.015332084149122238, -0.04013582319021225, 0.0010043327929452062, 0.009396680630743504, 0.014219976961612701, 0.04161030054092407, 0.014219976961612701, 0.019605575129389763, -0.01529459748417139, 0.012114470824599266, 0.010490044951438904, 0.0035549942404031754, -0.006547687109559774, 0.049782413989305496, 0.009565371088683605, -0.04723331704735756, -0.04365957900881767, -0.021242497488856316, 0.006388368550688028, 0.019680548459291458, 0.0026553121861070395, -0.015731943771243095, 0.04473419860005379, -0.048607829958200455, 0.009165512397885323, 0.001957121305167675, -0.01267677266150713, 0.024228941649198532, 0.023404233157634735, -0.015394561924040318, 0.024678783491253853, 0.020767664536833763, 0.031114010140299797, -0.001383105176500976, 0.02941461093723774, -0.027315352112054825, 0.026765545830130577, 0.02781517431139946, 0.012089479714632034, -0.03448781743645668, -0.04393448308110237, 0.029214680194854736, 0.0173688642680645, -0.002197661204263568, 0.07647299021482468, 0.015756934881210327, -0.04768315702676773, 0.0012464347528293729, 0.0001175366051029414, -0.0157944206148386, 6.516253051813692e-06, -0.011108576320111752, -0.003295710776001215, 0.020980089902877808, 0.01332029514014721, 0.02289191447198391, 0.010002716444432735, 0.014244968071579933, 0.002277320483699441, 0.02609078399837017, 0.014657322317361832, 0.013832613825798035, 0.006760112009942532, 0.008803140372037888, 0.005401217378675938, 0.008896857500076294, 0.00040649704169481993, 0.0486828051507473, 0.050932008773088455, -0.012583055533468723, 0.004173525609076023, -0.03516257926821709, 0.009015565738081932, 0.006029120180755854, 0.009384185075759888, 0.005160677246749401, 0.02361665852367878, 0.019355664029717445, 0.029014751315116882, 0.0022320242132991552, -0.00036940077552571893, -0.0017353245057165623, -0.026715563610196114, -0.06332763284444809, -0.018930813297629356, 0.002616263460367918, -0.033987995237112045, -0.013082878664135933, -0.005048216786235571, -0.038486406207084656, 0.00047053690650500357, -0.00423600384965539, -0.028040096163749695, -0.00024132101680152118, 0.022254638373851776, 0.005932279396802187, 0.03406296670436859, 0.011627143248915672, 0.00409230450168252, -0.022929400205612183, 0.032963357865810394, -0.005676120053976774, 0.023716622963547707, 0.007741015870124102, -0.013282808475196362, 0.04191019758582115, 0.03143889456987381, 0.021829789504408836, -0.006472713779658079, -0.01781870611011982, -0.01500719878822565, 0.012645533308386803, -0.04763317480683327, -0.019755521789193153, -0.04538397118449211, -0.009909000247716904, 0.028040096163749695, -0.01541955303400755, -0.008165865205228329, -0.0008379852515645325, 0.014007552526891232, 0.0008254896965809166, -0.02943960204720497, 0.024691278114914894, -0.028864804655313492, 0.004279738292098045, -0.0035924811381846666, 0.00035670993383973837, -0.03168880566954613, 0.015182137489318848, -0.021654851734638214, -0.0026912367902696133, 0.025540977716445923, -0.024278923869132996, 0.0067351208999753, -0.006447722669690847, 0.003445657901465893, -0.006653899792581797, -0.015182137489318848, -0.0064414748921990395, 0.03506261482834816, -0.042984817177057266, -0.009958982467651367, -0.006066607311367989, -0.0028583654202520847, 0.01180832926183939, 0.015482031740248203, -0.005732350051403046, -0.014007552526891232, -0.01856844127178192, 0.0046952166594564915, 0.007234944496303797, -0.028190042823553085, 0.00963409710675478, 0.00884687528014183, 0.012420612387359142, -0.008934344165027142, -0.02754027210175991, -0.028914786875247955, -0.025428518652915955, -0.017743732780218124, 0.00789096299558878, -0.018206069245934486, 0.028140060603618622, 0.014619835652410984, 0.007253687828779221, -0.003911118488758802, -0.017593786120414734, -0.0046889688819646835, -0.03146388754248619, 0.013670171611011028, -0.01145845279097557, 0.00011206979252165183, 0.011977019719779491, -0.009565371088683605, -0.029339635744690895, 0.010615000501275063, -0.018893325701355934, 0.028464945033192635, 0.011027354747056961, -0.006385244429111481, -0.006972536910325289, 0.011514682322740555, 0.009309211745858192, -0.0019258821848779917, -0.008965583518147469, 0.018943307921290398, -0.009115530177950859, -0.009815283119678497, 0.026690572500228882, 0.01218319684267044, -0.021992232650518417, 0.0013268750626593828, -0.01795615814626217, -0.05085703730583191, 0.020055415108799934, -0.008671936579048634, -0.011939533054828644, 0.01854345016181469, -0.0028849185910075903, 0.008259582333266735, -0.02070518583059311, -0.0006618755869567394, -0.04038573428988457, -0.007503599394112825, -0.0019102627411484718, 0.002689674962311983, -0.013945073820650578, -0.02492869459092617, -0.02449134923517704, -0.025690926238894463, -0.006060359533876181, 0.016469182446599007, 0.022642001509666443, -0.009021813049912453, -0.016269253566861153, -0.010096433572471142, -0.009790292009711266, 0.008253335021436214, 0.07082498073577881, -0.0034768967889249325, 0.00014731124974787235, 0.04186021536588669, 0.04545894265174866, -0.013782631605863571, 0.025453509762883186, 0.006097846198827028, -0.005145057570189238, -0.019443131983280182, -0.04858284071087837, 0.028364980593323708, 0.034987643361091614, 0.0015705389669165015, -0.024891206994652748, -0.003973596263676882, -0.004842039663344622, 0.020817646756768227, 0.02928965352475643, 0.0059478990733623505, 0.011383479461073875, -0.06007877737283707, -0.012664277106523514, -0.005298128351569176, -0.04958248510956764, -0.03901122137904167, 0.014307445846498013, -0.012208187952637672, -0.003345693228766322, -0.004314101301133633, -0.00876565370708704, 0.013745144940912724, -0.008309564553201199, 0.03668704256415367, -0.007766006980091333, 0.00496074790135026, -0.006828838028013706, -0.008240839466452599, 0.03246353194117546, 0.018630919978022575, 0.012689268216490746, 0.008209600113332272, -0.0021554885897785425, 0.0013307799817994237, 0.014969712123274803, 0.020542744547128677, 0.018580935895442963, -0.018868334591388702, 0.02751528099179268, -0.020967593416571617, -0.021254992112517357, -0.011139814741909504, -0.032363567501306534, -0.024004021659493446, -0.023666640743613243, 0.008422025479376316, 0.00841577723622322, 0.013620189391076565, -0.0512818843126297, -0.008659441024065018, 0.034262899309396744, 0.01651916466653347, -0.033413197845220566, -0.0034019234590232372, -0.00810338743031025, 0.003156697377562523, -0.010265124030411243, 0.009840274229645729, -0.003967348486185074, 0.0028271262999624014, -0.033113304525613785, -0.028789831325411797, 0.023679135367274284, 0.02085513435304165, 0.006057235412299633, 0.02074267342686653, -0.040510691702365875, 0.014432402327656746, -0.030039388686418533, -0.005338739138096571, -0.021217506378889084, -0.01435742899775505, -0.019605575129389763, 0.06132833659648895, -0.018718387931585312, -0.0090592997148633, 0.016281748190522194, 0.03278841823339462, -0.014070030301809311, 0.03868633508682251, 0.004732703324407339, 0.0023882188834249973, 0.009015565738081932, 0.02956455759704113, -0.01724390871822834, 0.014719801023602486, 0.0009699699003249407, -0.05613017454743385, -0.020792655646800995, 0.019480619579553604, -0.002934900810942054, 0.014157499186694622, 0.013745144940912724, -0.016344226896762848, -0.011283514089882374, 0.014782278798520565, -0.0019352539675310254, 0.0006708567962050438, 0.0035456225741654634, -0.0038361449260264635, -0.004798305220901966, -0.006313394755125046, 0.038186512887477875, -0.012920436449348927, -0.022429578006267548, -0.0012831405038014054, -0.0020976965315639973, -0.02465379238128662, -0.012545568868517876, -0.014694809913635254, 0.014219976961612701, -0.021642355248332024, 0.0003321092517580837, 0.003073914209380746, -0.02028033696115017, 0.03331323340535164, -0.022217152640223503, 0.02186727523803711, -0.007597316522151232, -0.011702116578817368, 0.009040556848049164, 0.010615000501275063, 0.00391424261033535, 0.018793361261487007, 0.007722272537648678, -0.002424143720418215, -0.008047157898545265, -0.019080759957432747, 0.011833320371806622, 0.011620895005762577, 0.016993997618556023, 0.023229295387864113, -0.008984326384961605, -0.027765192091464996, -0.028489936143159866, 0.015169641934335232, 0.006001005414873362, 0.003645587246865034, -0.007815989665687084, -0.015257110819220543, -0.007778502535074949, -0.005594898946583271, 0.015981854870915413, 0.011895798146724701, -0.02679053694009781, -0.03176378086209297, 0.0051575531251728535, -0.014894738793373108, -0.0015135279390960932, -0.01885583996772766, 0.019530601799488068, 0.014732296578586102, -0.020917611196637154, 0.001827479456551373, 0.0631776824593544, -0.0031082769855856895, -0.016694102436304092, 0.0055199251510202885, -0.017593786120414734, 0.0029489584267139435, -0.0460837222635746, -0.03226360306143761, 0.009359193965792656, 0.025890855118632317, -0.02581588178873062, -0.011333496309816837, 0.0333632156252861, 0.007003776263445616, -0.011820824816823006, 0.010415071621537209, -0.01609431579709053, 0.0012698639184236526, -0.025116128847002983, -0.017881184816360474, 0.0107337087392807, -0.014319942332804203, 0.01100236363708973, -0.016981501132249832, 0.04400945454835892, -0.00926547683775425, -0.002572528785094619, -0.019680548459291458, 0.02956455759704113, -0.028589900583028793, 0.016756581142544746, -0.004139163065701723, 0.008984326384961605, 0.0036924458108842373, 0.016619129106402397, -0.0012511205859482288, 0.017156440764665604, 0.0024288296699523926, -0.01711895316839218, -0.04113547131419182, 0.002777144080027938, -0.027565263211727142, 0.0032019938807934523, 0.01413250807672739, 0.03698693588376045, -0.004626490641385317, 0.017156440764665604, -0.017318882048130035, 0.023504197597503662, 0.037461768835783005, -0.014719801023602486, 0.0017150192288681865, -0.0009348260355181992, 0.021242497488856316, -0.005691739730536938, -0.03481270372867584, 0.004901393782347441, -0.002856803359463811, 0.04533398523926735, -0.031064027920365334, -0.014844756573438644, 0.016881536692380905, 0.0010746204061433673, 0.004211012739688158, 0.036437127739191055, -0.022941896691918373, 0.0009207685361616313, 0.016906527802348137, -0.010846168734133244, 0.001174585078842938, -0.013220330700278282, -0.007865971885621548, -0.053830984979867935, 0.041060496121644974, -0.012645533308386803, -0.04133540019392967, -0.0007114674663171172, 0.0073973871767520905, -0.021080054342746735, -0.006628908682614565, -0.004548393189907074, -0.013195338658988476, -0.0061134654097259045, -0.04031076282262802, -0.026115775108337402, -0.014582348987460136, 0.0010582199320197105, -0.0006353224744088948, 0.0157944206148386, -0.0172314140945673, 0.0157944206148386, -0.004186021629720926, -0.00612596096470952, -0.02943960204720497, -0.01435742899775505, -0.020930107682943344, -0.017881184816360474, -0.002766210353001952, 0.030364274978637695, -0.00583231495693326, 0.011633390560746193, 0.0527813546359539, -0.01911824755370617, -0.04001086577773094, -0.043834514915943146, 0.0008044033893384039, -9.532765398034826e-05, -0.011683372780680656, -0.004057941492646933, -0.018156087026000023, 0.003295710776001215, 0.005994757637381554, 0.02074267342686653, -0.0022991879377514124, 0.007691033184528351, 0.005079455673694611, -0.0008215847774408758, 0.008715671487152576, -0.002274196594953537, -0.01000896468758583, 0.008690680377185345, 0.01158340834081173, -0.0027349714655429125, -0.011545921675860882, 0.029464593157172203, -0.01093988586217165, 0.02364164963364601, 0.0022913780994713306, 0.009421671740710735, 0.017881184816360474, 0.010171406902372837, 0.015469536185264587, -0.006150952540338039, 0.033413197845220566, 0.0134702417999506, -0.016894033178687096, -0.003420666791498661, 0.0308391060680151, 0.049782413989305496, -0.012239426374435425, 0.006416483782231808, 0.014070030301809311, 0.026490643620491028, 0.03958601877093315, 0.02334175445139408, -0.017593786120414734, -0.017281396314501762, -0.004189145285636187, -0.028889795765280724, -0.050482168793678284, -0.0064102355390787125, 0.010146415792405605, -0.021654851734638214, -0.0030161221511662006, -0.01050878781825304, 0.03576236963272095, -0.004917012993246317, -0.02624073065817356, 0.01312036532908678, -0.02219216153025627, 0.0518316924571991, -0.003973596263676882, 0.003411295125260949, 0.009377937763929367, -0.04221009090542793, -0.011246027424931526, 0.009659088216722012, -0.012376878410577774, 0.06277782469987869, -0.0507320798933506, -0.002923967083916068, 0.030639177188277245, -0.006307146977633238, 0.028639884665608406, 0.022367099300026894, -0.018368512392044067, -0.007066254038363695, -0.009509141556918621, 0.0012917312560603023, 0.020917611196637154, 0.01956808753311634, 0.014607340097427368, 0.05110694840550423, 0.007222448941320181, -0.016556652262806892, 0.008646945469081402, 0.006616413127630949, 0.043234728276729584, -0.03986091911792755, -0.013295304030179977, 0.025578465312719345, -0.0002487402525730431, 0.009121778421103954, -0.015407057479023933, 0.017931167036294937, -0.009521637111902237, -0.007209953386336565, 0.03148887678980827, 0.0023804092779755592, 0.0010316668776795268, 0.04590878263115883, -0.04016081243753433, 0.017881184816360474, -0.030689159408211708, 0.023841578513383865, -8.414996409555897e-05, 0.015894385054707527, 0.0090592997148633, 0.010490044951438904, -0.003501888131722808, 0.01623176597058773, -0.03491266816854477, 0.0006942860200069845, -0.033963002264499664, -0.01608181931078434, 0.03741178661584854, -9.108110680244863e-05, -0.037611715495586395, 0.0031145247630774975, -0.03636215627193451, 0.01000896468758583, -0.012570559978485107, -0.0021336213685572147, 0.013807622715830803, 0.037436775863170624], [-0.02349209040403366, -0.024893606081604958, 0.04623670503497124, 0.0070409527979791164, -0.02431965246796608, 0.03283553570508957, -0.018419934436678886, 0.013621407561004162, 0.010591462254524231, 0.049360085278749466, -0.00937681458890438, -0.02350543811917305, 0.02997910976409912, -3.720171662280336e-05, -0.03785429894924164, 0.029925718903541565, -0.018273107707500458, 0.050774946808815, -0.007474755868315697, -0.009236662648618221, 0.04823886975646019, 0.00863601267337799, -0.007034278940409422, 0.009256684221327305, -0.03782760351896286, -0.033689793199300766, 0.016324331983923912, 0.018179673701524734, 0.02593473345041275, -0.06332185864448547, 0.09258019179105759, -0.026401905342936516, 0.029258329421281815, -0.024973692372441292, -0.008395752869546413, 0.010658200830221176, -0.02363891527056694, 0.029818937182426453, 0.046156615018844604, 0.003048298880457878, -0.02177022583782673, 0.05595388635993004, -0.03483770042657852, -0.008208883926272392, -0.018967192620038986, 0.06625837087631226, 0.0443413183093071, -0.02542751654982567, -0.02568112500011921, 0.032755445688962936, 0.005642773117870092, 0.022090572863817215, 0.0013406174257397652, -0.029391806572675705, 0.037373777478933334, 0.002464333549141884, -0.002459328155964613, 0.014362209476530552, 0.03294231742620468, -0.031260497868061066, 0.007861841470003128, -0.027790073305368423, -0.03638604283332825, 0.05974465608596802, 0.0023642252199351788, 0.013481255620718002, 0.0017852652817964554, 0.008682729676365852, -0.023732349276542664, 0.009089836850762367, 0.031020237132906914, 0.02797694317996502, 0.013147561810910702, -0.03635934740304947, -0.0036539542488753796, -0.0010186022846028209, 0.006760649848729372, -0.007528146728873253, -0.015857160091400146, -0.0045248968526721, 0.005125546827912331, 0.028484158217906952, -0.0020271937828511, 0.029551981016993523, 0.03550508990883827, -0.009290053509175777, -0.051015209406614304, -0.0026044852565973997, -0.03892211988568306, 0.0038541709072887897, -0.035184744745492935, -0.035611871629953384, -0.04335358366370201, 0.05889039859175682, 0.04084420204162598, -0.03187449276447296, 0.02717607654631138, -0.024252912029623985, -0.048826172947883606, 0.017231982201337814, -0.01066487468779087, -0.019220801070332527, 0.016003986820578575, 0.027042599394917488, 0.0516292043030262, -0.05283050611615181, -0.030085891485214233, 0.05117538198828697, 0.008689403533935547, -0.03094014897942543, -0.04874608665704727, -0.017125198617577553, -0.02028862200677395, 0.05664797127246857, -0.003814127529039979, -0.011399002745747566, -0.08184857666492462, 0.021957095712423325, 0.05985143780708313, 0.03766743093729019, -0.06097264960408211, -0.037907689809799194, 0.03603900223970413, -0.06711263209581375, 0.025347430258989334, -0.025854647159576416, -0.026655513793230057, -0.0059531088918447495, -0.06786010414361954, -0.017405502498149872, 0.08184857666492462, -0.0060532172210514545, 0.03713351860642433, -0.04375401511788368, 0.00222741044126451, 0.01120545994490385, 0.00421789800748229, -0.009657117538154125, -0.010331179946660995, -0.0445815771818161, 0.03224823251366615, 0.02350543811917305, 0.01673811301589012, 0.015723682940006256, -0.07357295602560043, 0.009990812279284, 0.040070030838251114, 0.04621000960469246, -0.021129533648490906, -0.0007812621188350022, -0.016724765300750732, 0.008215557783842087, -0.019794754683971405, -0.018179673701524734, 0.005342448130249977, -0.0063969227485358715, 0.005045460071414709, 0.07036948949098587, 0.00816883984953165, 0.013661450706422329, -0.022717919200658798, -0.01741885021328926, -0.005259024444967508, -0.003001581644639373, 0.022491006180644035, 0.008102101273834705, -0.017752544954419136, 0.024373043328523636, -0.06433629244565964, -0.07981971651315689, -0.046396877616643906, -0.03683986887335777, -0.03414361551403999, -0.016003986820578575, 0.021716834977269173, -0.057075098156929016, -0.013481255620718002, -0.023011568933725357, 0.007761733140796423, -0.006043206434696913, -0.0030633150599896908, 0.010711591690778732, -0.07138391584157944, -0.027603205293416977, -0.059531088918447495, 0.030913453549146652, 0.007901884615421295, -0.014402252621948719, -0.011452393606305122, 0.003463748376816511, 0.018273107707500458, 0.032755445688962936, 0.0229581780731678, 0.03865516558289528, -0.023278525099158287, 0.028030334040522575, -0.004277962725609541, 0.008222231641411781, -0.007060974836349487, 0.019421016797423363, 0.05931752547621727, -0.01580376923084259, 0.06956861913204193, 0.017605720087885857, -0.03299570828676224, -0.01986149325966835, 0.009683812968432903, 0.011232155375182629, 0.001222990220412612, -0.03780090808868408, -0.01155917625874281, -0.04645026847720146, -0.03956281393766403, 0.024413086473941803, -0.028991373255848885, 0.02770998701453209, -0.023145047947764397, 0.011505784466862679, -0.019687972962856293, 0.05421867594122887, 0.013100843876600266, -0.01596394181251526, -0.014202035963535309, 0.01417534053325653, 0.0044915275648236275, 0.014856076799333096, -0.0024126109201461077, -0.020342014729976654, -0.0016876596491783857, -0.054645802825689316, -0.014148645102977753, 0.03403683379292488, -0.020301969721913338, -0.012687062844634056, -0.007121039554476738, -0.013147561810910702, -0.01728537306189537, -0.027216119691729546, 0.010591462254524231, 0.007948601618409157, 0.02349209040403366, 0.00918994564563036, 0.014762642793357372, 0.037747517228126526, 0.018673541024327278, -0.006820714566856623, -0.0182197168469429, -0.013114191591739655, 0.04052385315299034, 0.00607991311699152, 0.04524896666407585, -0.003537161275744438, 0.026655513793230057, -0.03579873964190483, 0.01007757242769003, 0.014842729084193707, 0.007194452453404665, -0.03027276135981083, 0.03820133954286575, -0.04743800312280655, -0.018993888050317764, -0.0020905956625938416, 0.007681646384298801, 0.020061710849404335, -0.06011839210987091, -0.019954929128289223, 0.03211475536227226, -0.013000736013054848, -0.027242815122008324, 0.02349209040403366, -0.04012342169880867, 0.02430630475282669, 0.017325416207313538, -0.008502534590661526, -0.04297984391450882, -0.017592372372746468, -0.004137811250984669, -0.01836654357612133, 0.007074322551488876, -0.00325852632522583, -0.040603939443826675, -0.028030334040522575, -0.019140712916851044, -0.028564244508743286, 0.006670552305877209, 0.003140064887702465, -0.006473672576248646, -0.02363891527056694, -0.021289706230163574, 0.007661624811589718, 0.0340101383626461, 0.011779414489865303, 0.018152978271245956, -0.03192788362503052, 0.0670592337846756, 0.01851336844265461, -0.0037640733644366264, -0.05013425648212433, 0.014856076799333096, 0.006356879137456417, 0.015323249623179436, 0.0034003464970737696, 0.013734864071011543, -0.009430205449461937, -0.00850920844823122, 0.013321083039045334, 0.026401905342936516, 0.03441057354211807, -0.010211050510406494, 0.006567107047885656, -0.03336944431066513, 0.028724418953061104, -0.008402426727116108, -0.04284636676311493, -0.05995821952819824, -0.020595621317625046, 0.006590465549379587, 0.011932913213968277, -0.02744303271174431, -0.004758482798933983, 0.018032848834991455, -0.016444463282823563, 0.020622316747903824, -0.019808102399110794, 0.018152978271245956, -0.024092739447951317, 0.020715750753879547, 0.032488491386175156, -0.03409022465348244, -0.036679692566394806, -0.029685458168387413, -0.022264093160629272, 0.03876194730401039, -0.024212868884205818, -0.0205288827419281, -0.013868341222405434, 0.007207800168544054, 0.050988513976335526, 0.001415698672644794, 0.009370139800012112, 0.03785429894924164, -0.01837989129126072, -0.010611483827233315, -0.012006326578557491, -0.04583626985549927, 0.028163811191916466, 0.02566777728497982, 0.031393975019454956, 0.012920648790895939, 0.06636515259742737, -0.005863011348992586, 0.022944830358028412, -0.05066816508769989, -0.0018536726711317897, -0.05552675575017929, -0.00925001036375761, 0.01012428943067789, -0.0020956010557711124, -0.035318221896886826, -0.013474581763148308, 0.01930088736116886, 0.026455296203494072, 0.011932913213968277, 0.02445312961935997, -0.005385828670114279, -0.021022750064730644, -0.0030633150599896908, 0.0009577031014487147, -0.009009750559926033, -0.04169845953583717, 0.01988818868994713, 0.047090962529182434, 0.0009802274871617556, 0.006253433879464865, -0.027603205293416977, -0.02202383428812027, 0.0032902273815125227, 0.0044181146658957005, -0.03659960627555847, -0.023131700232625008, -0.004151158966124058, 0.01605737768113613, 0.020862577483057976, -0.011272198520600796, 0.07512129843235016, 0.016417767852544785, -0.07181104272603989, -0.004638352897018194, -0.016404420137405396, 0.022477658465504646, 0.012133129872381687, 0.02634851448237896, -0.047064267098903656, 0.01350795105099678, -0.022103920578956604, 0.007868515327572823, 0.039669595658779144, 0.04847912862896919, 0.03150075674057007, 0.0054725888185203075, 0.017872674390673637, -0.026415253058075905, 0.0065470850095152855, -0.049119822680950165, -0.04610322415828705, -0.009890703484416008, -0.03515804931521416, -0.01958119124174118, 0.0107516348361969, -0.013274365104734898, 0.044368013739585876, 0.007387995254248381, 0.05200294405221939, -0.01595059409737587, 0.01783263124525547, -0.02566777728497982, -0.016310984268784523, 0.059370916336774826, 0.003447063732892275, 0.00662383483722806, 0.044768448919057846, 0.020355362445116043, 0.008769489824771881, -0.011365633457899094, -0.0421522818505764, 0.019220801070332527, 0.006947518326342106, -0.006643856409937143, -0.004067735280841589, -0.10486014187335968, 0.008936337195336819, 0.027736682444810867, 0.032515186816453934, 0.013441212475299835, -0.035878825932741165, -0.02325182966887951, 0.05595388635993004, 0.009763899259269238, -0.03147406131029129, -0.04273958504199982, 0.027496423572301865, 0.003533824346959591, 0.011258850805461407, 0.02270457148551941, -0.02797694317996502, 0.0346241369843483, -0.0013781581073999405, -0.00946357473731041, 0.006700584664940834, 0.014335514046251774, -0.018993888050317764, 0.00425460422411561, -0.05160250887274742, 0.00204554689116776, -0.038174644112586975, 0.028751114383339882, 0.009456900879740715, -0.04172515496611595, 0.0408175066113472, -0.07127713412046432, 0.0008054549689404666, 0.0578225739300251, 0.03865516558289528, 0.07624250650405884, 0.044127754867076874, 0.0006056554266251624, -0.0329156219959259, -0.030993541702628136, 0.006306825205683708, -0.005636099260300398, -0.005886370316147804, -0.022597787901759148, -0.006503704935312271, -0.02375904470682144, 0.03956281393766403, -0.006413607392460108, -0.017672458663582802, -0.04530235752463341, 0.00898972898721695, -0.029899023473262787, 0.003390335710719228, 0.036572910845279694, -0.007080996409058571, -0.025507604703307152, 0.05771579220890999, 0.008162165991961956, 0.06017178297042847, -0.026148296892642975, -0.012066391296684742, -0.009403510019183159, -0.023745696991682053, -0.02973884902894497, 0.02931172028183937, -0.014896119944751263, -0.005832978989928961, -0.014709251932799816, -0.02554764784872532, -0.011472415179014206, 0.037293691188097, -0.022250745445489883, 0.03625256568193436, -0.05021434277296066, 0.014428948052227497, 0.005105525255203247, 0.026001472026109695, 0.006980888079851866, 0.02419952116906643, -0.0551530197262764, -0.033289358019828796, 0.005325763486325741, -0.07117035239934921, -0.018673541024327278, 0.01498955488204956, 0.003717356128618121, -0.006463661789894104, -0.014041862450540066, -0.006550421938300133, -0.012640345841646194, -0.02000831998884678, 0.006400259677320719, -0.0029381797648966312, -0.033049099147319794, -0.038868729025125504, 0.027736682444810867, 0.005779588129371405, 0.020622316747903824, -0.023879176005721092, -0.03785429894924164, -0.022384224459528923, 0.00472511351108551, 0.023612219840288162, -0.04367392882704735, -0.02661546878516674, 0.03801447153091431, 0.010905134491622448, 0.0038474970497190952, 0.005412524100393057, 9.677139314590022e-05, -0.0006023184978403151, -0.05622084066271782, 0.035585176199674606, -0.03013928234577179, 0.009443553164601326, 0.016297636553645134, 0.007614907342940569, -0.011058634147047997, 0.012733780778944492, 0.014362209476530552, 0.022944830358028412, 0.012606976553797722, 0.020475491881370544, 0.017365459352731705, 0.017886022105813026, -0.009577031247317791, -0.02068905532360077, -0.009617074392735958, 0.012046369723975658, -0.04268619418144226, 0.03224823251366615, 0.015149728395044804, -0.021676791831851006, -0.00231583951972425, -0.014081905595958233, 0.010698243975639343, -0.012059717439115047, 0.012273281812667847, 0.004024355206638575, 0.030326152220368385, -0.007614907342940569, 0.006994235794991255, -0.0029515274800360203, 0.049386780709028244, 0.017592372372746468, -0.020342014729976654, 0.03934925049543381, 0.004942014813423157, 0.0027246151585131884, -0.030699890106916428, 0.013961776159703732, -0.021850312128663063, -0.012319998815655708, 0.03270205482840538, -0.030032500624656677, -0.010624831542372704, -0.010284462943673134, -0.004908645525574684, 0.02944519929587841, -0.027603205293416977, -0.010971873998641968, 0.02770998701453209, 0.031287193298339844, -0.0023208449129015207, -0.004988732282072306, 0.017245329916477203, -0.004705091938376427, 0.05090842396020889, -0.009276705794036388, 0.011986305005848408, 0.012319998815655708, 0.011272198520600796, 0.01851336844265461, -0.016003986820578575, -0.03929585963487625, -0.0006436131661757827, -0.00980394333600998, 0.014976207166910172, 0.007935253903269768, 0.013261017389595509, -0.012006326578557491, 0.02457325905561447, 0.005812957417219877, 0.016577940434217453, 0.020221883431077003, -0.026388557627797127, -0.05200294405221939, 0.02808372490108013, -0.04231245815753937, -0.04338027909398079, -0.02201048657298088, 0.017645763233304024, -0.019114017486572266, -0.007047626655548811, 0.038308124989271164, -0.024626649916172028, 0.024493172764778137, -0.012299977242946625, -0.018887106329202652, -0.030619803816080093, 0.032488491386175156, -0.00533911120146513, -0.010791678912937641, 0.03515804931521416, 0.0007708341581746936, 0.005485936999320984, 0.004498201422393322, -0.0057428814470767975, 0.025867994874715805, -0.007034278940409422, -0.004871938843280077, 0.0010953519959002733, 0.05974465608596802, 0.026281775906682014, 0.01194626186043024, -0.017325416207313538, 0.02609490603208542, 0.007828472182154655, 0.00729456078261137, 0.040043335407972336, -0.019407669082283974, -9.838772530201823e-05, 0.010097594000399113, -0.017338763922452927, 0.016110768541693687, -0.050054166465997696, 0.0340101383626461, -0.007588211912661791, -0.015123032964766026, 0.02403934858739376, 0.050614774227142334, 0.0163376796990633, -0.014308818615972996, 0.015269857831299305, -0.030779976397752762, 0.02528069168329239, 0.043834105134010315, 0.0013122534146532416, 0.00906314142048359, 0.0029848970007151365, -0.009810617193579674, -0.00017925648717209697, -0.03523813560605049, 0.02470673806965351, 0.02473343349993229, -0.008842903189361095, -0.007301234640181065, 0.013628081418573856, -0.04164506867527962, 0.01500290259718895, -0.06492359191179276, 0.013187604956328869, -0.0383882112801075, -0.006700584664940834, -0.005208970513194799, -0.01675146073102951, -0.02621503546833992, -0.02309165708720684, 0.01903393119573593, -0.04580957442522049, 0.012987388297915459, -0.00910985842347145, -0.023318568244576454, 0.03961620479822159, -0.002075579483062029, 0.01209308672696352, 0.016724765300750732, 0.04023020341992378, 0.0038074536714702845, -0.022197354584932327, -0.05691492557525635, -0.08457152545452118, 0.012827214784920216, 0.026188340038061142, -0.0006577951717190444, -0.04794522002339363, -0.04265949875116348, -0.0016209208406507969, -0.006443639751523733, 0.02931172028183937, 0.032755445688962936, -0.031153714284300804, -0.024346347898244858, -0.011659284122288227, -0.0351046547293663, 0.014402252621948719, -0.008796186186373234, 0.024973692372441292, -0.014322166331112385, -0.035478394478559494, 0.016858244314789772, 0.008889620192348957, -0.031260497868061066, 0.03846829757094383, -0.028804505243897438, -0.030619803816080093, 0.01623089797794819, -0.012173173949122429, -0.02861763723194599, 0.019794754683971405, 0.0011754387523978949, 0.005105525255203247, 0.037907689809799194, -0.008976380340754986, 0.01276047620922327, 0.005185612011700869, 0.00530240498483181, 0.0016451136907562613, -0.0011370638385415077, 0.0011178763816133142, -0.031554147601127625, 0.006109945476055145, 0.016911635175347328, -0.054005108773708344, -0.009069815278053284, -0.032088059931993484, 0.013454560190439224, -0.007194452453404665, 0.006436965893954039, 0.017071807757019997, -0.0027446369640529156, 0.025841297581791878, -0.03446396440267563, 0.011579197831451893, 0.018406586721539497, -0.05443223938345909, -0.01619085483253002, 0.005299068056046963, 0.00036643820931203663, 0.025227300822734833, 0.004117789678275585, 0.0072011263109743595, 0.023265177384018898, 0.045435838401317596, -0.007761733140796423, 0.012333346530795097, -0.00803536269813776, -0.024012653157114983, -0.010898460634052753, -0.007701667957007885, 0.04674391821026802, 0.002594474470242858, -0.0005209804512560368, 0.032221537083387375, 0.05243007093667984, 0.013347778469324112, 0.04650365933775902, -0.011992978863418102, 0.004421451594680548, -0.029899023473262787, -0.025774559006094933, -0.030165977776050568, 0.03430378809571266, -0.0014340518973767757, 0.0029932393226772547, -0.02393256686627865, 0.012373390607535839, 0.003977637737989426, -0.0007695828098803759, -0.023171743378043175, -0.000886793015524745, -0.011198786087334156, -0.018006153404712677, -0.018553411588072777, -0.003288558917120099, -0.041538286954164505, -0.012927323579788208, 0.002979891374707222, -0.0035438351333141327, -0.07036948949098587, -0.021783573552966118, 0.03350292146205902, -0.013828298076987267, -0.017458893358707428, -0.0009843986481428146, 0.03176771104335785, 0.0904979333281517, -0.021022750064730644, -0.0335296168923378, -0.006163336336612701, 0.0018102923640981317, -0.034116920083761215, -0.026548730209469795, 0.03227492794394493, -0.022477658465504646, 0.020101753994822502, 0.0030082555022090673, 0.008749468252062798, 0.0038274754770100117, 0.025347430258989334, 0.0005831310409121215, -0.001301408396102488, 0.0007554008043371141, -0.004671722184866667, 0.022224050015211105, 0.0002825974952429533, 0.023839130997657776, 0.003914236091077328, -0.0470108762383461, -0.016124116256833076, -0.0039375945925712585, -0.020715750753879547, -0.00780177628621459, -0.009750551544129848, 0.028030334040522575, -0.00445482088252902, 0.014282122254371643, -0.006236749235540628, -0.01155917625874281, 0.002494366141036153, 0.03878864273428917, 0.015536813996732235, 0.039402641355991364, -0.020075058564543724, -0.04111115634441376, -0.0041945395059883595, -0.014655860140919685, -0.0014323834329843521, 0.000869274022988975, -0.018179673701524734, -0.0021590031683444977, 0.041538286954164505, -0.014161992818117142, -0.03756064921617508, -0.030886758118867874, -0.03270205482840538, 0.019968276843428612, -0.036145783960819244, 0.025187257677316666, -0.01825975999236107, 0.002180693205446005, 0.0009710508747957647, -0.01418868824839592, -0.023211786523461342, 0.009657117538154125, -0.012600302696228027, 0.03096684440970421, -0.009957442060112953, 0.021249663084745407, -0.0017819283530116081, 0.02393256686627865, -0.010437962599098682, 0.02811042033135891, -0.0024876920506358147, 0.017205286771059036, 0.00560940383002162, -0.011719348840415478, -0.0242929570376873, -0.0016526217805221677, 0.04877278208732605, 0.011352285742759705, 0.014829381369054317, 0.010017507709562778, 0.025601038709282875, 0.033049099147319794, 0.015777073800563812, -0.03499787300825119, -0.010631505399942398, 0.0058296420611441135, 0.06417611986398697, 0.042472630739212036, 0.012239912524819374, 0.0063835750333964825, 0.01364810299128294, 0.01743219792842865, -0.0013781581073999405, 0.041164547204971313, -0.01595059409737587, -0.030326152220368385, -0.01215982623398304, -0.013534647412598133, 0.008375730365514755, -0.016577940434217453, -0.004781841300427914, -0.006493694148957729, 0.007074322551488876, -0.02470673806965351, -0.006643856409937143, -0.009717182256281376, -0.02713603340089321, 0.015283205546438694, -0.014442295767366886, 0.022130616009235382, -0.009884029626846313, -0.007374647539108992, 0.0003351543564349413, 0.01149243675172329, -0.021543314680457115, -0.04698418080806732, 0.01161924097687006, 0.0346241369843483, -0.005726196803152561, 0.05213642120361328, -0.015536813996732235, -0.0021740193478763103, 0.0031167061533778906, -0.006597139406949282, 0.018019501119852066, -0.015029598027467728, 0.0271493811160326, -0.006703921593725681, -0.025440864264965057, -0.016911635175347328, 0.019687972962856293, 0.0275765098631382, 0.03809455782175064, 0.0052957311272621155, 0.004488190170377493, -0.014442295767366886, -0.005122209899127483, 0.02147657424211502, -0.014148645102977753, 0.04297984391450882, 0.028697723522782326, 0.005429208744317293, -0.01866019330918789, -0.012733780778944492, -0.01768580637872219, -0.026268428191542625, -0.005806283559650183, 0.005956445820629597, -0.0007766738417558372, 0.030299456790089607, -0.015096336603164673, -0.0029848970007151365, -0.0017652437090873718, -0.03670639172196388, 0.011298893950879574, 0.035985611379146576, -0.02175687812268734, 0.04268619418144226, -0.0028597614727914333, 0.05133555456995964, 0.039936553686857224, 0.02039540559053421, -0.03828142583370209, 0.028270594775676727, 0.033022403717041016, -0.015029598027467728, 0.013454560190439224, -0.030860062688589096, 0.025841297581791878, -0.03040623851120472, -0.005005416925996542, 0.0662049800157547, 0.013200952671468258, -0.008082079701125622, 0.01848667301237583, 0.024252912029623985, 0.014001819305121899, 0.0209560114890337, 0.004488190170377493, -0.008569273166358471, 0.024639997631311417, 0.03550508990883827, 0.012073065154254436, -0.0009635427268221974, 0.014255426824092865, -0.011926239356398582, 0.012460150755941868, 0.018299803137779236, 0.03825473040342331, 0.022517701610922813, 0.000594393233768642, 0.014081905595958233, 0.024092739447951317, -0.019928231835365295, 0.033556316047906876, 0.027763377875089645, -0.03211475536227226, 0.02310500480234623, -0.0019771396182477474, 0.029418503865599632, -0.005766239948570728, 0.024426434189081192, 0.001039458205923438, 0.0071410611271858215, 0.031687624752521515, 0.03080667182803154, 0.005859674420207739, -0.011786088347434998, -0.013521299697458744, 0.0008413271280005574, -0.014028514735400677, 0.0007850162219256163, -0.005272372160106897, -0.01769915409386158, -0.017218634486198425, -0.016577940434217453, -0.05093512311577797, -0.027629900723695755, 0.03011258691549301, -0.007194452453404665, 0.015910550951957703, 0.010344527661800385, 0.008482513017952442, 0.038414906710386276, -0.0007845991058275104, -0.01480268593877554, -0.025747863575816154, 0.04015011712908745, 0.013654776848852634, 0.01397512387484312, 0.011639262549579144, 0.0049987430684268475, 0.023318568244576454, 0.02578790672123432, 0.014041862450540066, -0.010798352770507336, -0.009416857734322548, -0.0179794579744339, 0.02110283635556698, -0.029632067307829857, -0.006393585819751024, -0.05472588911652565, 0.026642166078090668, 0.002402600133791566, -0.01716524176299572, 0.026535382494330406, 0.021436531096696854, 0.026548730209469795, 0.017392154783010483, -0.0055326540023088455, 0.027763377875089645, -0.03096684440970421, -0.035318221896886826, -0.00593976117670536, -0.015643596649169922, -0.04530235752463341, -0.0077817547135055065, -0.018980540335178375, -0.0034704222343862057, 0.00830899178981781, -0.04068402945995331, -0.01520311925560236, 0.010905134491622448, 0.01377490721642971, -0.0008792848675511777, -0.04807869717478752, -0.0081087751314044, 0.025347430258989334, 0.012413433752954006, 0.009456900879740715, 0.004608320537954569, 0.001144571928307414, 0.027736682444810867, 0.01756567694246769, 0.011625914834439754, -0.02920493856072426, -0.03294231742620468, -0.0014665870694443583, -0.002048884052783251, -0.025454211980104446, 0.008535903878509998, 0.02893798239529133, -0.011152069084346294, -0.02000831998884678, -0.023131700232625008, -0.028404071927070618, 0.006660541519522667, 0.000650704198051244, 0.015977289527654648, -0.03539830818772316, 0.008756142109632492, 0.022878091782331467, 0.01661798357963562, 0.004077746067196131, 0.01377490721642971, 0.014896119944751263, -0.014015167020261288, 0.005716186016798019, -0.00836905650794506, 0.015229814685881138, 0.0047417981550097466, 0.009350118227303028, -0.020849229767918587, 0.03497117757797241, -0.010090920142829418, 0.020862577483057976, 0.017592372372746468, 0.018193021416664124, -0.013381147757172585, -0.006847409997135401, 0.017992805689573288, -0.0034086888190358877, -0.013801602646708488, 0.0329156219959259, 0.016711417585611343, -0.017125198617577553, 0.030699890106916428, 0.01916741020977497, -0.0027146043721586466, -0.005863011348992586, -0.008022014982998371, -0.024626649916172028, 0.025988124310970306, 0.02199713885784149, -0.016164159402251244, -0.012780497781932354, 0.023852478712797165, 0.013094170019030571, 0.004564939998090267, 0.006713932380080223, -0.04295314848423004, 0.013120865449309349, -0.0029848970007151365, 0.012713758274912834, -0.006143314763903618, -0.0044181146658957005, -0.031260497868061066, -0.007975297048687935, -0.0033469554036855698, 0.00047551459283567965, 0.028751114383339882, -0.0003205552347935736, 0.008822881616652012, -0.015456726774573326, -0.007461408153176308, 0.011092003434896469, 0.07309243083000183, 0.00570283830165863, -0.004247930366545916, 0.0009026434854604304, 0.0405772440135479, -0.010457984171807766, -0.0007754224934615195, -0.01203302200883627, -0.0067072585225105286, 0.01593724638223648, -0.04540914297103882, 0.04399427771568298, 0.02797694317996502, 0.01971466839313507, 0.0047284504398703575, 0.008088753558695316, 0.0016217550728470087, 0.0359589159488678, 0.04495531693100929, 0.01377490721642971, 0.01944771222770214, -0.035318221896886826, 0.01203302200883627, 0.003677312983199954, -0.026668861508369446, -0.03187449276447296, 0.01013763714581728, -6.6119732764491346e-06, -0.006106608547270298, 0.02960537187755108, -0.03286223113536835, -0.005786261986941099, -0.025988124310970306, 0.0007537323399446905, -0.023038264364004135, -0.015430031344294548, 0.007741711102426052, -0.008502534590661526, 0.02971215359866619, 0.015376640483736992, -0.012927323579788208, 0.021449878811836243, -0.004041039850562811, -0.003537161275744438, 0.01704511232674122, 0.02944519929587841, -0.008355708792805672, 0.016804853454232216, 0.017111850902438164, -0.009904051199555397, -0.01174604520201683, -0.005559349432587624, -0.058570049703121185, -0.015296554192900658, -0.035077959299087524, 0.016644679009914398, 0.002375904470682144, -0.01837989129126072, -0.030753280967473984, -0.012880605645477772, 0.022077225148677826, 0.0394827276468277, -0.03969629108905792, 0.005999826360493898, -0.003390335710719228, -0.006119956262409687, 0.006430292036384344, 0.01290730107575655, -0.0025761211290955544, 0.035184744745492935, -0.03107362799346447, -0.025841297581791878, 0.026428600773215294, -0.004511549137532711, -0.008816207759082317, 0.03414361551403999, -0.024666693061590195, 0.013534647412598133, -0.005943098105490208, -0.018593454733490944, 0.0007816792349331081, -0.023185091093182564, 0.02227744087576866, 0.03812125325202942, -0.014856076799333096, 0.007000909652560949, 0.016684722155332565, 0.037774212658405304, -0.022651178762316704, 0.043433669954538345, -0.013387821614742279, -0.013361126184463501, 0.021716834977269173, 0.013895036652684212, 0.005822968203574419, -0.006940844468772411, -0.02270457148551941, -0.044795144349336624, 0.010991895571351051, -0.015029598027467728, 0.007000909652560949, -0.026441948488354683, 0.0039108991622924805, 0.018433282151818275, -0.009670465253293514, -0.008943011052906513, -0.010017507709562778, -0.01518977154046297, 0.001852004206739366, 0.01270708441734314, 0.0019254169892519712, -0.015269857831299305, 0.019701320677995682, -0.026975858956575394, -0.028484158217906952, -0.011665957979857922, -0.005329100415110588, -0.03812125325202942, 0.0024426435120403767, -0.016524549573659897, -0.008736120536923409, 0.010017507709562778, 0.012006326578557491, 0.002651202492415905, 0.023612219840288162, 0.03748055920004845, -0.028697723522782326, 0.049493562430143356, -0.012239912524819374, 0.00022336671827360988, -0.0013839977327734232, 0.02078249119222164, 0.018726931884884834, -0.005652783904224634, 0.018967192620038986, -0.0204087533056736, -0.0009802274871617556, -0.015576857142150402, -0.0039375945925712585, 0.0004400595498736948, -0.008963032625615597, 0.014842729084193707, -0.015883855521678925, -0.010424614883959293, -0.04271288961172104, 0.02079583890736103, 0.010184355080127716, -0.04121793806552887, 0.0031867821235209703, -0.0076949940994381905, -0.009456900879740715, 0.019380973652005196, 0.0010578114306554198, 0.007287886925041676, 0.04415445029735565, -0.007134387269616127, 0.04028359428048134, -0.023291872814297676, 0.019527798518538475, 0.005225655157119036, -0.006653867196291685, 0.016164159402251244, -0.027736682444810867, -0.027469728142023087, 0.022250745445489883, 0.0025043769273906946, -0.024146130308508873, 0.025507604703307152, -0.01836654357612133, -0.00012638677435461432, -0.02741633541882038, -0.03406352922320366, 0.01540333591401577, 0.01904727891087532, -0.03585213050246239, -0.004521559923887253, 0.019621234387159348, 0.0019637919031083584, -0.02323848195374012, 0.018740279600024223, -0.010117615573108196, -0.00946357473731041, 0.006413607392460108, -0.016017334535717964, -0.021516619250178337, -0.00032785479561425745, 0.0139083843678236, -0.011238829232752323, 0.037080127745866776, -0.002677897922694683, 0.01984814554452896, 0.0004705091705545783, 0.020769143477082253, -0.03766743093729019, 0.01007757242769003, -0.029391806572675705, 0.03094014897942543, -0.0077550592832267284, 0.03286223113536835, 0.014121949672698975, 0.007488103583455086, -0.014135297387838364, -0.009470248594880104, -0.021703487262129784, -0.01836654357612133, -0.04367392882704735, -0.0160974208265543, 0.0010202707489952445, -0.0035104656126350164, 0.017605720087885857, 0.03745386376976967, 0.011952935717999935, 0.026989206671714783, 0.004458157811313868, 0.008569273166358471, -0.029925718903541565, -0.0076349289156496525, 0.013000736013054848, -0.01203302200883627, -0.041271328926086426, 0.01729872077703476, -0.028991373255848885, 0.04255271703004837, -0.02973884902894497, 0.0008776164031587541, 0.009630422107875347, 0.007121039554476738, 0.020475491881370544, 0.0383882112801075, -0.04068402945995331, 0.014442295767366886, -0.006073239259421825, 0.0009985805954784155, -0.015696987509727478, -0.018046196550130844, -0.00945022702217102, -0.03515804931521416, -0.013961776159703732, 0.0021156228613108397, -0.01755232736468315, 0.004231245722621679, 0.008983055129647255, -0.002454322762787342, -0.009717182256281376, 0.0077684069983661175, 0.03037954308092594, -0.006590465549379587, -0.029285024851560593, -0.01480268593877554, -0.018807020038366318, -0.011025264859199524, -0.023038264364004135, -0.00011168335913680494, -0.003433716017752886, 0.02309165708720684, -0.011826131492853165, -0.0077216895297169685, -0.009316748939454556, 0.0215032696723938, -0.006583791691809893, -0.0016484506195411086, -0.038174644112586975, 0.03638604283332825, -0.0021306390408426523, 0.01107865571975708, 0.03278214484453201, 0.02014179714024067, -0.04092428833246231, -0.06834062188863754, 0.013254343532025814, -0.025881342589855194, 0.023345263674855232, -0.004908645525574684, -0.02199713885784149, -0.04428792744874954, -0.002420953242108226, -0.0024609966203570366, -0.004805200267583132, -0.002137312898412347, 0.034383878111839294, 0.016577940434217453, 0.05120207741856575, 0.03526483103632927, -0.006690573878586292, 0.018072891980409622, 0.0022173996549099684, -0.038414906710386276, 0.008622664958238602, 0.00760155962780118, -0.0007282881415449083, 0.031046932563185692, 0.015750378370285034, 0.04055054858326912, 0.001790270791389048, 0.02174353040754795, 0.037080127745866776, -0.007554842624813318, 0.03053971566259861, 0.008335687220096588, -0.01974136382341385, -0.035451699048280716, -0.0011036944342777133, 0.02593473345041275, 0.015630248934030533, 0.00020198943093419075, 0.0114790890365839, 0.008122122846543789, 0.003325265133753419, -0.009356792084872723, -0.03606569766998291, 0.01944771222770214, 0.003677312983199954, -0.02580125443637371, -0.023972610011696815, 0.031287193298339844, 0.006426955107599497, -0.037614040076732635, -0.015496770851314068, 0.018887106329202652, 0.018740279600024223, 0.0032601947896182537, 0.001857009599916637, 0.003018266288563609, -0.03662630170583725, 0.0324351005256176, -0.021049445495009422, 0.012613650411367416, 0.0015416683163493872, -0.02066235989332199, 0.023412002250552177, 0.01811293512582779, -0.01903393119573593, 0.04295314848423004, -0.05325763300061226, -0.009069815278053284, 0.03772082179784775, -0.007367973681539297, -0.0005042957491241395, 0.01189287006855011, -0.01648450642824173, -0.01811293512582779, 0.01127887237817049, -0.019127365201711655, 0.03894881531596184, 0.002799696521833539, 0.036012306809425354, 0.0023992632050067186, 0.02744303271174431, 0.013354452326893806, 0.01673811301589012, 0.03780090808868408, 0.03563856706023216, -0.035051263868808746, -0.024012653157114983, 0.014428948052227497, -0.020181840285658836, 0.0003887540369760245, -0.0006961700273677707, 0.03131388872861862, -0.028484158217906952, -0.011919565498828888, 0.028964677825570107, -0.024226216599345207, 0.012606976553797722, 0.03387666121125221, 0.01904727891087532, -0.009209967218339443, -0.006934170611202717, -0.0032001298386603594, -0.0005176435224711895, 0.015750378370285034, 0.0190739743411541, 0.017872674390673637, -0.008329013362526894, 0.000641944701783359, -0.05889039859175682, 0.0004371397371869534, 0.005749555304646492, -0.023145047947764397, -0.004157832823693752, 0.025587690994143486, -0.051255468279123306, 0.016310984268784523, -0.02728285826742649, 0.03577204421162605, -0.008135470561683178, 0.003210140625014901, -0.001935427775606513, 0.020875925198197365], [-0.0020026047714054585, 0.00839415192604065, 0.028615491464734077, 0.005800530314445496, -0.026504961773753166, -0.017405016347765923, 0.0008873817278072238, 0.03302841633558273, -0.002444582525640726, 0.04719911515712738, -0.019268861040472984, 0.008120057173073292, 0.004844624549150467, -0.0031383847817778587, -0.04086752608418465, 0.027697274461388588, -0.02671053260564804, 0.027423178777098656, 0.004851477220654488, 0.009929082356393337, 0.0470072478055954, 0.011443455703556538, 0.034481119364500046, -0.008469527587294579, -0.07285438477993011, 0.0018175907898694277, 0.01151197962462902, 0.03217872232198715, 0.01922774687409401, -0.05651833862066269, 0.07614351809024811, -0.019090699031949043, 0.026929808780550957, -0.004587661009281874, 0.010956937447190285, 0.010895266197621822, -0.023832539096474648, 0.0027546521741896868, 0.02729983627796173, -0.0043786633759737015, -0.047665078192949295, 0.006379555445164442, -0.030177831649780273, -0.01369103230535984, -0.06348034739494324, 0.07603388279676437, 0.016939055174589157, -0.030451927334070206, -0.037331704050302505, 0.0043752375058829784, -0.027861731126904488, -0.02518930658698082, -0.016774598509073257, -0.049748197197914124, 0.02369549125432968, -0.005276323761790991, -0.0404563844203949, 0.02646384760737419, -0.00208997237496078, -0.0111762136220932, 0.01888512820005417, -0.05070753023028374, -0.006084903609007597, 0.045061178505420685, -0.025929363444447517, 0.023654377087950706, 0.0060095274820923805, 0.006033510435372591, -0.05484635755419731, 0.03541304171085358, 0.012320558540523052, 0.01611677184700966, -0.009380892850458622, -0.00973721593618393, 0.01904958486557007, 0.01428033597767353, 0.02888958714902401, 0.03264468535780907, -0.014225517399609089, -0.016980169340968132, -0.01704869419336319, 0.003013329114764929, 0.0015494918916374445, 0.03223354369401932, -0.032699503004550934, -0.016939055174589157, -0.05569605156779289, 0.03256245702505112, -0.06622128933668137, -0.0062356553971767426, -0.016103066504001617, 0.02083120122551918, -0.01091582328081131, 0.04722652584314346, 0.05679243057966232, -0.007078496739268303, 0.018364347517490387, -0.014883344992995262, -0.04878886416554451, 0.02301025390625, 0.01507521141320467, -0.01343749463558197, -0.023147301748394966, 0.024983735755085945, 0.057395439594984055, -0.03837326541543007, -0.02369549125432968, 0.05728580430150032, 0.007914485409855843, -0.047062069177627563, -0.10898007452487946, 0.016336046159267426, -0.024928918108344078, 0.039771147072315216, -0.006057493854314089, -0.021776827052235603, -0.022777274250984192, 0.005759415682405233, 0.039003681391477585, -0.003015042282640934, -0.03100011684000492, -0.03494707867503166, 0.005190669093281031, -0.048322904855012894, -0.00038887193659320474, -0.022955434396862984, -0.056052375584840775, -0.031274210661649704, -0.05172168090939522, -0.014595544897019863, 0.06490563601255417, -0.0036488862242549658, 0.07247065007686615, -0.057833991944789886, -0.028176940977573395, 0.014013093896210194, 0.0008454109774902463, 0.033220283687114716, -0.012807076796889305, -0.05920446664094925, 0.041031982749700546, 0.01721315085887909, 0.02150273323059082, 0.026162343099713326, -0.05635388195514679, 0.00648576719686389, 0.032863959670066833, 0.06128758564591408, -0.032781731337308884, -0.005033064633607864, -0.02820434980094433, -0.009778330102562904, -0.013382676057517529, -0.03502930700778961, 0.008209138177335262, 0.0033713653683662415, 0.0071127586998045444, 0.06874296069145203, -0.02199610322713852, 0.003436462953686714, 0.0030475910753011703, -0.017651701346039772, -0.0025199586525559425, 0.005612089764326811, 0.04308769479393959, -0.022037217393517494, -0.04659610614180565, 0.032781731337308884, -0.051091261208057404, -0.05347588658332825, -0.005433928221464157, -0.056134603917598724, -0.02042005956172943, 0.020050030201673508, 0.015280782245099545, -0.02369549125432968, -0.03678351640701294, -0.010484124533832073, 0.013766408897936344, -0.009113650768995285, 0.0010989486472681165, 0.033549197018146515, -0.08354408293962479, -0.06364480406045914, -0.07153873145580292, 0.04360847547650337, -0.034124795347452164, -0.016144180670380592, -0.0015957453288137913, 0.03437148034572601, 0.035824183374643326, 0.01440367940813303, 0.016774598509073257, 0.045307863503694534, -0.0199815072119236, 0.04544490948319435, 0.0010775349801406264, -0.026929808780550957, 0.0009293524781242013, 0.007592424750328064, 0.031274210661649704, -0.02812212146818638, 0.029876327142119408, -0.011662731878459454, 0.0113406702876091, -0.07455377280712128, -0.015184849500656128, -0.00648576719686389, 0.023818833753466606, 0.02209203690290451, 0.007105906493961811, -0.027231313288211823, 0.004303287714719772, -0.0012856756802648306, -0.03409738838672638, 0.02502484992146492, -0.025065964087843895, 0.05081716552376747, -0.03015042282640934, -0.0025233847554773092, 0.007859666831791401, 0.001843287143856287, 0.027697274461388588, -0.00716072553768754, 0.024147747084498405, 0.02240724489092827, 0.015212258324027061, -0.06342552602291107, 0.006619388237595558, -0.03886663541197777, -0.02938295714557171, 0.01789838634431362, 0.003448454663157463, -0.024216271936893463, -0.01310172863304615, -0.015938609838485718, -0.01428033597767353, -0.007174429949373007, 0.0019614906050264835, 0.019666297361254692, 0.042950648814439774, 0.007722619455307722, 0.003232605056837201, 0.02227019891142845, 0.014156993478536606, 0.006372702773660421, -0.055394548922777176, -0.03056156449019909, 0.05004969984292984, 0.022201674059033394, 0.056299060583114624, 0.007729472126811743, 0.02417515590786934, -0.001510090776719153, 0.038153987377882004, -0.005440780892968178, 0.0080241234973073, -0.0006830954807810485, 0.055147863924503326, 0.013478608801960945, -0.006814680527895689, -0.019255155697464943, -0.025929363444447517, 0.03541304171085358, -0.03311064466834068, -0.024819279089570045, 0.05054306983947754, -0.013067467138171196, -0.028533263131976128, 0.004299861378967762, -0.030780840665102005, 0.03626273572444916, 0.024408137425780296, -0.027436884120106697, -0.0791037455201149, -0.022722454741597176, -0.026271982118487358, 0.032370589673519135, 0.02310618758201599, 0.008894374594092369, -0.021790532395243645, -0.021132705733180046, 0.03938741609454155, -0.005742284934967756, -0.024134041741490364, 0.02299654856324196, 0.026134934276342392, -0.010813037864863873, -0.014074765145778656, 0.032452818006277084, 0.028916995972394943, 0.005557271186262369, -0.007551310118287802, -0.009798887185752392, 0.03593382239341736, 0.02081749588251114, -0.00864768959581852, -0.030342288315296173, 0.024408137425780296, 0.048514772206544876, 0.007729472126811743, -0.0005978691624477506, -0.03190463036298752, 0.03080824948847294, 0.001498099067248404, -0.006920892279595137, -0.005022786092013121, 0.016815712675452232, -0.011991645209491253, 0.010799333453178406, -0.02302395924925804, 0.042621731758117676, -0.0031983430963009596, -0.03478262200951576, -0.038839224725961685, 0.001546065672300756, 0.04873404651880264, 0.005183816887438297, -0.014047356322407722, 0.0021602092310786247, 0.012964681722223759, -0.02276356890797615, 0.029520004987716675, -0.014924459159374237, 0.05536713823676109, -0.031027525663375854, 0.025490811094641685, 0.019090699031949043, -0.031274210661649704, -0.02024189755320549, -0.041114211082458496, -0.02921850048005581, -0.0008154318784363568, -0.017596883699297905, -0.049665968865156174, -0.001411587931215763, 0.0407852977514267, 0.03796212375164032, 0.004269025754183531, 0.005875905975699425, 0.04870663583278656, -0.026669418439269066, -0.03650942072272301, -0.017596883699297905, -0.024928918108344078, 0.020625630393624306, -0.011100837029516697, 0.01671977899968624, 0.01671977899968624, 0.07268992811441422, -0.015815267339348793, 0.048925913870334625, -0.04730875417590141, 0.0025799167342483997, -0.07148391008377075, 0.005725154187530279, 0.017514653503894806, 0.0033662260975688696, -0.02073526754975319, -0.015924904495477676, -0.03686574473977089, 0.008113204501569271, 0.005368831101804972, 0.015513762831687927, -0.010278552770614624, 0.028067301958799362, 0.014513316564261913, -0.006314457859843969, -0.03840067610144615, -0.0016120197251439095, 0.03744134306907654, 0.04037415608763695, -0.008969750255346298, -0.0004214206710457802, -0.06216469034552574, -0.03198685869574547, -0.004385516047477722, 0.012437049299478531, -0.010943233035504818, 0.017281673848628998, 0.05498340725898743, -0.02165348455309868, 0.023818833753466606, -0.01754206418991089, 0.05679243057966232, 0.03206908702850342, -0.07247065007686615, -0.009901672601699829, 0.029711870476603508, 0.015486353076994419, -0.0031726467423141003, 0.008250252343714237, -0.015061506070196629, -0.009778330102562904, -0.0037516718730330467, 0.04703465849161148, 0.026998333632946014, 0.07104536145925522, 0.025340059772133827, -0.009929082356393337, 0.02938295714557171, -0.004419778008013964, -0.019090699031949043, -0.01578785665333271, -0.050762347877025604, -0.034974489361047745, -0.025847135111689568, -0.021941283717751503, 0.018871422857046127, 0.006413816940039396, 0.032041676342487335, -0.009750920347869396, 0.02602529712021351, 0.010203177109360695, 0.02913627214729786, -0.008353037759661674, -0.024983735755085945, 0.02880735881626606, 0.020461173728108406, -0.00785281416028738, 0.01515743974596262, 0.006362424232065678, -0.002588482340797782, 6.525810749735683e-05, -0.050515662878751755, 0.022119445726275444, 0.02905404381453991, -0.03722206503152847, -0.017240559682250023, -0.09905784577131271, -0.025326354429125786, 0.004618496634066105, 0.051612041890621185, 0.04086752608418465, -0.029355548322200775, 0.013930865563452244, 0.030616383999586105, -0.027601340785622597, -0.014417383819818497, -0.016774598509073257, 0.002331518568098545, -0.03777025640010834, 0.05953337997198105, 0.04621237516403198, -0.029273319989442825, 0.015198553912341595, -0.01754206418991089, 0.024229975417256355, 0.011409194208681583, 0.001867270446382463, -0.01922774687409401, 0.020050030201673508, -0.028067301958799362, 0.008428413420915604, -0.04670574516057968, -0.008640836924314499, 0.012944124639034271, -0.05997193232178688, 0.0519135445356369, -0.07175800204277039, -0.003242883598431945, 0.041360896080732346, 0.015527467243373394, 0.07038753479719162, 0.03678351640701294, -0.014033650979399681, -0.021119000390172005, -0.0162127036601305, -0.01955666020512581, -0.007469081785529852, -0.0005785968969576061, 0.0021105294581502676, 0.02242095023393631, 0.01486963964998722, -0.012286297045648098, -0.0043341233395040035, -0.03343955799937248, -0.03629014641046524, -0.05180390924215317, 0.002799192676320672, 0.029876327142119408, 0.08085794746875763, 0.006461783777922392, 0.002877994906157255, 0.026587190106511116, 0.04204613342881203, 0.054215941578149796, -0.002348649315536022, -0.02847844362258911, 0.0019015322905033827, -0.032918781042099, -0.004625348839908838, 0.015609695576131344, -0.015856381505727768, -0.018624737858772278, -8.142540900735185e-05, -0.021310865879058838, -0.03845549374818802, 0.04484190046787262, -0.02032412588596344, 0.050186749547719955, -0.06523454934358597, 0.028670310974121094, -0.007284068036824465, 0.031438667327165604, -0.0014004528056830168, -0.004639053717255592, -0.020598219707608223, -0.006574847735464573, 0.003686574287712574, -0.08595611155033112, -0.03587900102138519, 0.042950648814439774, 0.021859055384993553, -0.0009447703487239778, 0.003104123054072261, 0.013321004807949066, 0.008962898515164852, -0.01889883354306221, -0.0032634406816214323, -0.005197521764785051, -0.0007931616855785251, 0.0035152651835232973, 0.03015042282640934, 0.003614624496549368, 0.011217327788472176, -0.04138830676674843, -0.015047801658511162, -0.02982150949537754, -0.003652312560006976, 0.009387745521962643, -0.013046910054981709, -0.014348859898746014, 0.044293712824583054, -0.008942341431975365, -0.009010864421725273, 0.01721315085887909, -0.011902564205229282, -0.017939500510692596, -0.01465036440640688, 0.016993874683976173, -0.014924459159374237, 0.007667800411581993, -0.001152910990640521, 0.008462674915790558, -0.02343510091304779, 0.0231747105717659, 0.011649026535451412, -0.01915922202169895, 0.02065303921699524, 0.009463121183216572, 0.015061506070196629, 0.04300546646118164, 0.002761504612863064, -0.0033131202217191458, -0.007571867201477289, 0.029876327142119408, -0.04369070380926132, 0.032123904675245285, 0.004142256919294596, -0.006119165103882551, -0.004125126171857119, -0.00465961080044508, -0.012676882557570934, -0.05712134391069412, 0.015130029991269112, 0.0010989486472681165, 0.01456813607364893, 0.007825405336916447, -0.011717550456523895, -0.01238223072141409, 0.04020969942212105, 0.021954989060759544, -0.012930420227348804, 0.06046530231833458, 0.009298664517700672, 0.011491422541439533, -0.05717616528272629, -0.014718888327479362, -0.001615445944480598, -0.001910097780637443, -0.0017764766234904528, 0.008723065257072449, -0.01755576953291893, -0.008154318667948246, 0.005255766678601503, 0.035056717693805695, 0.001951211947016418, 0.004364958964288235, 0.05106385052204132, 0.011861450038850307, -0.04818585515022278, 0.010353929363191128, 0.01873437687754631, 0.015294486656785011, 0.04259432479739189, -0.04292323812842369, 0.038921453058719635, 0.010388190858066082, 0.01804913952946663, 0.0007790286908857524, -0.013677327893674374, -0.03508412837982178, -0.022804683074355125, 0.010984347201883793, 0.022215379402041435, 0.007037382572889328, 0.01406106073409319, 0.0072977724485099316, 0.029355548322200775, -0.0014372842852026224, 0.012498720549046993, 0.009004012681543827, -0.026724237948656082, -0.037989530712366104, 0.004015488084405661, -0.02418886125087738, -0.030424516648054123, -0.014664068818092346, -0.013348414562642574, 0.011546241119503975, -0.014047356322407722, 0.008236547000706196, -0.01772022619843483, 0.023202121257781982, -0.0012616923777386546, -0.006496045738458633, -0.02451777458190918, 0.020378945395350456, -0.02166718989610672, 0.002547368174418807, 0.031137162819504738, -0.0017302230698987842, -0.0053825355134904385, -0.013697884976863861, -0.0005147841875441372, 0.033795882016420364, 0.013478608801960945, -0.014444793574512005, -0.00903142150491476, 0.04344401881098747, 0.016925349831581116, 0.011443455703556538, -0.00906568393111229, 0.02174941822886467, 0.020543402060866356, 0.01356083806604147, 0.03612568601965904, 0.009531645104289055, 0.0023212397936731577, 0.0073937056586146355, -0.009168469347059727, 0.02921850048005581, -0.022804683074355125, 0.028779948130249977, -0.01636345684528351, -0.020639333873987198, -0.004234763793647289, 0.04116903245449066, 0.006687911693006754, -0.034207023680210114, 0.014184403233230114, -0.032918781042099, 0.02595677226781845, 0.014472202397882938, 0.030506744980812073, 0.027409475296735764, -0.023229530081152916, 0.006985989864915609, 0.017089808359742165, -0.06358998268842697, 0.02176312357187271, 0.025764906778931618, 0.0013730434002354741, -0.018268415704369545, 0.013362118974328041, -0.014746297150850296, 0.006030084565281868, -0.028149530291557312, 0.033220283687114716, -0.02905404381453991, -0.0030355993658304214, 0.015390420332551003, 0.010223734192550182, 0.03157571330666542, -0.025723792612552643, 0.021639781072735786, -0.0221879705786705, 0.018432872369885445, 0.01762429252266884, 0.000653116381727159, 0.010038720443844795, 0.04105939343571663, 0.01159420795738697, 0.014335155487060547, 0.04004524275660515, -0.011443455703556538, -0.009223287925124168, -0.04465003311634064, -0.08162541687488556, 0.009202730841934681, 0.032699503004550934, -0.022900616750121117, -0.0394696444272995, -0.017829863354563713, -0.004570529796183109, 0.017240559682250023, 0.037907302379608154, 0.04988524317741394, -0.04086752608418465, -0.00732518220320344, -0.000689091335516423, -0.02569638192653656, 0.00915476493537426, -0.022229084745049477, 0.02292802557349205, -0.03294618800282478, -0.011217327788472176, 0.016431979835033417, 0.022612817585468292, -0.031027525663375854, 0.03840067610144615, -0.009524792432785034, -0.03903109207749367, -0.004704151302576065, -0.015061506070196629, 0.011395488865673542, 0.03108234517276287, 0.01772022619843483, -0.0010484124068170786, 0.02880735881626606, -0.006698190234601498, 0.025819724425673485, -0.017912091687321663, 0.0037071313709020615, 0.03535822406411171, -0.03601605072617531, 0.03256245702505112, -0.027066856622695923, 0.03132902830839157, -0.014527021907269955, -0.04481448978185654, -0.007893928326666355, -0.017651701346039772, 0.021310865879058838, -0.0002685271902009845, -0.0023983290884643793, 0.026888694614171982, -0.03730429708957672, 0.009394597262144089, -0.029629642143845558, 0.012121840380132198, -0.024928918108344078, -0.05021415650844574, 0.016431979835033417, -0.0071127586998045444, 0.005927299149334431, 0.02099565789103508, -0.017843568697571754, 0.02402440458536148, 0.0049953768029809, 0.020940838381648064, -0.00029465186526067555, -0.031794991344213486, -0.0010184332495555282, -0.007256658282130957, 0.0007430537370964885, 0.007332034409046173, 0.01924145221710205, 0.026984628289937973, 0.0012428483460098505, 0.013149695470929146, 0.013382676057517529, 0.002749512903392315, 0.02512078359723091, -0.02166718989610672, -0.019282566383481026, -0.02200980857014656, -0.012080726213753223, -0.02216055989265442, 0.04358106479048729, 0.01456813607364893, -0.01837805286049843, -0.015143734402954578, 0.014828525483608246, 0.005423649679869413, -0.015308191999793053, -0.017199445515871048, 0.018775491043925285, 0.007866519503295422, -0.00038608815521001816, -0.0025062537752091885, -0.009565906599164009, -0.033713653683662415, -0.03478262200951576, -0.03343955799937248, -0.005392814055085182, -0.05281805619597435, -0.005200947634875774, 0.023393986746668816, 0.0025987608823925257, 0.0020848331041634083, 0.007229248993098736, 0.03579677268862724, 0.06704357266426086, 0.006979137659072876, -0.05232468619942665, -0.026217162609100342, 0.011566798202693462, -0.052352096885442734, -0.001850139582529664, 0.011039165779948235, 0.003964095376431942, 0.015390420332551003, 0.03352178633213043, -0.02318841591477394, -0.016569027677178383, 0.03248022869229317, -0.02132457122206688, -0.03609827905893326, 0.030753429979085922, -0.011806631460785866, 0.016431979835033417, 0.0019563513342291117, 0.011450308375060558, -0.011964235454797745, -0.053612932562828064, 0.006314457859843969, 0.012019054964184761, -0.00844211783260107, 0.03560490906238556, -0.005320864263921976, 0.07619833946228027, 0.016939055174589157, 0.01754206418991089, 0.037496160715818405, -0.0019443596247583628, 0.010874709114432335, 0.03870217874646187, 0.03445370867848396, 0.02100936323404312, -0.01406106073409319, -0.008346185088157654, 0.024915212765336037, -0.030863068997859955, 0.017665406689047813, -0.0003940112073905766, 0.0036488862242549658, 0.02990373782813549, 0.01839175820350647, -0.02812212146818638, -0.03535822406411171, -0.0024051815271377563, -0.00932607427239418, 0.024257386103272438, -0.03936000540852547, 0.0128550436347723, 0.009010864421725273, 0.0012419918784871697, -0.01924145221710205, 0.0015255085891112685, -0.030753429979085922, 0.012882453389465809, -0.011018608696758747, 0.0021122426260262728, -0.018528804183006287, 0.012046463787555695, 0.011772369034588337, 0.01406106073409319, 0.010703399777412415, 0.025381173938512802, 0.0024737052153795958, 0.027779502794146538, -0.0022304460871964693, -0.01419810764491558, -0.002655292861163616, -0.01465036440640688, 0.027998778969049454, -0.003854457288980484, 0.026354210451245308, 0.010305962525308132, 0.024243680760264397, 0.04533527046442032, -0.005094736348837614, -0.011231032200157642, 0.032288361340761185, 0.0003364084695931524, 0.054051484912633896, 0.026683123782277107, -0.011601060628890991, -0.008832703344523907, 0.0316031239926815, 0.03108234517276287, -0.01550005842000246, 0.016747189685702324, 0.010443010367453098, -0.022064628079533577, -0.0001431502605555579, -0.016253817826509476, 0.01924145221710205, -0.02377771958708763, -0.009634430520236492, -0.023901062086224556, -0.011635322123765945, -0.019022176042199135, -0.01394456997513771, 0.010175767354667187, -0.036728695034980774, 0.02050228789448738, 0.007667800411581993, 0.0196525938808918, 0.0025867691729217768, -0.010703399777412415, 0.012395935133099556, -0.0012197216274216771, -0.03157571330666542, -0.02812212146818638, 0.018844014033675194, 0.0319320373237133, -0.009387745521962643, 0.05794363096356392, -0.006369276903569698, -0.031137162819504738, 0.0048377723433077335, -0.0021156687289476395, 0.02888958714902401, 0.004793231841176748, 0.02335287258028984, 0.014458497986197472, -0.037578389048576355, -0.01108027994632721, 0.0228457972407341, 0.016911646351218224, 0.019131813198328018, -0.018117662519216537, 0.01603454351425171, -0.001766198081895709, -0.009469973854720592, 0.010470419190824032, -0.06161649897694588, 0.04728134348988533, 0.03450853005051613, 0.014143289066851139, -0.021297162398695946, -0.03563231602311134, -0.05314697325229645, 0.024476660415530205, 0.011518831364810467, 0.03667387738823891, 0.017487244680523872, 0.052379507571458817, -0.05163944885134697, 0.0010878135217353702, -0.027313541620969772, -0.028341397643089294, 0.02368178591132164, 0.018186187371611595, -0.0131839569658041, 0.025244126096367836, -0.011066575534641743, 0.002179053146392107, 0.03744134306907654, 0.026642009615898132, -0.02015966922044754, 0.030424516648054123, 0.018706966191530228, -0.019693708047270775, -0.03182240203022957, -0.01041560061275959, 0.027176493778824806, -0.025888249278068542, -0.003659164998680353, 0.05221505090594292, 0.0006856651161797345, 0.01208757795393467, 0.012793372385203838, 0.0198170505464077, -0.003525543725118041, -0.009524792432785034, 0.005231783725321293, 0.012841339223086834, 0.03434407338500023, 0.008147465996444225, 0.0023212397936731577, -0.007290920242667198, 0.016733484342694283, -0.004639053717255592, 0.034316662698984146, 0.005958134774118662, 0.006311031524091959, 0.017679112032055855, -0.003098983783274889, 0.029958555474877357, 0.0463494211435318, -0.01636345684528351, 0.016569027677178383, 0.003133245510980487, -0.011649026535451412, 0.012793372385203838, -0.003566657891497016, 0.0084763802587986, -0.008113204501569271, 0.00839415192604065, -0.0028300283011049032, 0.01763799786567688, -0.010052424855530262, 0.024298500269651413, 0.008332480676472187, 0.011950531043112278, -0.014897049404680729, -0.0020916855428367853, -0.032123904675245285, 0.023393986746668816, 0.005183816887438297, -0.02913627214729786, -0.01570562832057476, -0.008531198836863041, -0.07718507945537567, 0.006376129109412432, -0.0021225211676210165, 0.019364794716238976, 0.00667763315141201, 0.004793231841176748, -0.0235036239027977, 0.03072602115571499, -0.007023678161203861, 0.0038989977911114693, -0.03988078609108925, 0.017089808359742165, 0.0036900006234645844, 0.0064583574421703815, 0.014513316564261913, 0.016692370176315308, 0.02938295714557171, 0.0128550436347723, 0.01796691119670868, -0.01730908267199993, -0.01974852755665779, -0.000678384501952678, 0.01670607551932335, -0.04596569016575813, 0.02132457122206688, -0.04369070380926132, 0.030616383999586105, 0.02428479492664337, -0.006362424232065678, 0.021461619064211845, 0.036728695034980774, 0.02771097980439663, -0.010004458017647266, -0.0026758499443531036, 0.011607912369072437, -0.02168089523911476, -0.007969304919242859, -0.0231747105717659, -0.023284349590539932, -0.035659726709127426, 0.008928636088967323, -0.024504071101546288, 0.004197075963020325, 0.02042005956172943, -0.04053861275315285, -0.007962452247738838, -0.01865214854478836, 0.014348859898746014, 0.00041392591083422303, -0.02291432023048401, -0.010518386028707027, 0.024339614436030388, -0.01024429127573967, 0.00973721593618393, -0.006927744951099157, 0.0015040949219837785, 0.006701616570353508, 0.008538051508367062, -0.0228457972407341, -0.017350196838378906, -0.03250763565301895, 0.019680002704262733, -0.007887076586484909, -0.006071198731660843, 0.0228457972407341, 0.01636345684528351, 0.028916995972394943, 0.010374486446380615, -0.03475521504878998, -0.008305070921778679, 0.025052260607481003, 0.027738388627767563, 0.012553539127111435, -0.02033783122897148, 0.018693262711167336, -0.012560391798615456, 0.019008470699191093, 0.007119610905647278, -0.006951727904379368, 0.007599276956170797, -0.00848323293030262, 0.02292802557349205, -0.005557271186262369, 0.04747321084141731, 0.01507521141320467, 0.0025062537752091885, -0.013485461473464966, 0.011916269548237324, -0.025175603106617928, 0.03637237474322319, 0.02066674456000328, 0.00018362206174060702, -0.002538802567869425, -0.00440607313066721, -0.00374824577011168, 0.0320964939892292, 0.0024839837569743395, 0.035550087690353394, 0.011347522959113121, -0.02091342955827713, 0.028999224305152893, 0.011046018451452255, 0.007695210166275501, 0.005399666726589203, -0.016322342678904533, -0.03744134306907654, 0.0019426465732976794, 0.020187078043818474, -0.005221505183726549, 0.0007036526221781969, 0.03568713739514351, 0.023558443412184715, -0.0017867551650851965, 0.00011584785534068942, -0.036399781703948975, -0.017829863354563713, -0.005221505183726549, -0.01722685433924198, 0.008716212585568428, -0.0053825355134904385, -0.017994320020079613, 0.001886114478111267, -0.018830308690667152, 0.002240724628791213, 0.01722685433924198, 0.03130162134766579, 0.009476825594902039, 0.009175322018563747, -0.007667800411581993, 0.02359955757856369, 0.08880669623613358, -0.011799778789281845, -0.009380892850458622, 0.030506744980812073, 0.038921453058719635, -0.01234111562371254, 0.014389974065124989, 0.015225963667035103, 0.0017430712468922138, 0.002545655006542802, -0.050351206213235855, 0.0128550436347723, 0.03047933615744114, 0.011875155381858349, -0.017199445515871048, -0.010312815196812153, -0.006502897944301367, 0.021639781072735786, 0.04004524275660515, -0.03152089565992355, 0.032041676342487335, -0.02291432023048401, 0.007880223914980888, 0.014965573325753212, -0.026340505108237267, -0.02510707825422287, 0.012944124639034271, -0.041525352746248245, 0.015568581409752369, 0.01167643629014492, 0.0010072982404381037, 0.011148803867399693, -0.007640391122549772, -0.008586018346250057, -0.027752093970775604, 0.0016505642561241984, 0.012354820966720581, 0.007153872866183519, 0.01872067153453827, 0.013697884976863861, -0.0014270057436078787, 0.0031675074715167284, -0.006489193066954613, -0.00667763315141201, 0.02150273323059082, 0.032288361340761185, -0.02436702325940132, -0.016445685178041458, 0.018939947709441185, -0.024846689775586128, -0.00104498618748039, -0.00550245214253664, -0.029273319989442825, -0.02494262158870697, -0.03541304171085358, -0.004752117674797773, 0.006184262689203024, -0.0008025837014429271, -0.002065989188849926, 0.00856546126306057, 0.0021276604384183884, 0.01394456997513771, -0.026230867952108383, -0.0009559054160490632, 0.013547132723033428, -0.03064379282295704, 0.016856826841831207, 0.010052424855530262, -0.00508445780724287, 0.02074897289276123, -0.04703465849161148, -0.03006819449365139, 0.02897181548178196, 7.050445128697902e-05, 0.010141505859792233, 0.024832984432578087, -0.024079224094748497, -0.0071127586998045444, -0.004471170715987682, -0.021776827052235603, 0.0021584960632026196, -0.01268373429775238, 0.00848323293030262, 0.02736836113035679, -0.025723792612552643, -0.01343749463558197, 0.013910308480262756, 0.02443554624915123, 0.004008635878562927, 0.052461735904216766, 0.0013070893473923206, -0.002065989188849926, 0.012628915719687939, 0.014924459159374237, 0.014417383819818497, 0.005176964681595564, -0.024325909093022346, -0.030451927334070206, -0.019118107855319977, -0.006526881363242865, 0.003532396163791418, -0.025682678446173668, -0.0016411422984674573, 0.01739131100475788, -0.028697719797492027, -0.009641283191740513, -0.002574777463451028, -0.015212258324027061, -0.013567689806222916, -0.005409945268183947, 0.004114847630262375, -0.02990373782813549, 0.007421115413308144, -0.025257831439375877, -0.028149530291557312, 0.0048788865096867085, 0.02083120122551918, -0.02092713490128517, 0.017939500510692596, -0.011559946462512016, -0.008791589178144932, 0.001898106187582016, 0.019803345203399658, 0.005122145637869835, -0.023325463756918907, 0.03796212375164032, -0.0021036772523075342, 0.007469081785529852, 0.012532982043921947, 0.0008102926076389849, 0.002060849918052554, 0.015664514154195786, -0.017953205853700638, 0.042868420481681824, -0.004532841965556145, 0.02913627214729786, 0.004457465838640928, -0.004820641595870256, 0.008318775333464146, -0.009463121183216572, -0.013506018556654453, 0.013615656644105911, -0.011799778789281845, -0.012210921384394169, -0.03919554874300957, 0.014006241224706173, -0.013670475222170353, -0.03182240203022957, 0.01066228561103344, 0.0021533567924052477, 0.021886466071009636, 0.008935488760471344, 0.0005666052456945181, 0.003885293146595359, -0.009394597262144089, -0.032781731337308884, 0.0335766077041626, -0.025518221780657768, 0.004632201045751572, -0.0228457972407341, 0.0022133151069283485, 0.010401895269751549, -0.04004524275660515, -0.04582864046096802, 0.0389762744307518, -0.009134207852184772, -0.004245042335242033, 0.0021293736062943935, 0.0020916855428367853, -0.017254265025258064, -0.0163771603256464, -0.043635882437229156, -0.016322342678904533, 0.04692501947283745, -0.015198553912341595, 0.0160482469946146, 0.02982150949537754, 0.005125571973621845, 0.003441602224484086, 0.00940144993364811, -0.01898106187582016, -0.003566657891497016, -0.0011726116063073277, -0.015842676162719727, -0.008723065257072449, 0.0017028136644512415, -0.0194881372153759, -0.017254265025258064, 0.0337410643696785, 0.02092713490128517, 0.007510195951908827, -0.023969585075974464, 0.017007580026984215, -0.0034141927026212215, 0.012156101875007153, -0.01991298422217369, 0.026504961773753166, -0.005944429896771908, 0.023284349590539932, -0.010436157695949078, -0.007030530367046595, -0.019926687702536583, -0.017733929678797722, -0.017172036692500114, -0.007229248993098736, -0.036235325038433075, -0.0032822845969349146, -0.0013704737648367882, 0.009730363264679909, 0.04040156677365303, 0.019337384030222893, -0.0061774104833602905, 0.05037861317396164, -0.005224931053817272, 0.01814507320523262, -0.027409475296735764, 0.004817215260118246, 0.034152206033468246, -0.016993874683976173, -0.028149530291557312, 0.012306854128837585, -0.012067020870745182, 0.0009053692338056862, -0.04415666311979294, -0.025490811094641685, 0.02779320813715458, 0.013012648560106754, 0.01963888853788376, 0.006187689024955034, -0.03335732966661453, 0.023901062086224556, -0.007044235244393349, 0.008572313003242016, 0.015938609838485718, 0.007030530367046595, 0.0043786633759737015, -0.03675610572099686, 0.015225963667035103, 0.011710697785019875, -0.015568581409752369, -0.0021396521478891373, -0.0016856826841831207, -0.015253372490406036, 0.019501840695738792, 0.029958555474877357, 0.004899443592876196, 0.002077980898320675, -0.0018090252997353673, -0.02435331791639328, -0.025326354429125786, -0.017021283507347107, -0.013334709219634533, 0.014499612152576447, -0.00872991792857647, 0.026080114766955376, -0.020214486867189407, -0.01737760752439499, -0.029410365968942642, -0.00698941620066762, -0.03519376739859581, -0.0007991574821062386, -0.025312650948762894, 0.012786519713699818, 0.006773566361516714, 0.0003777368110604584, 0.04256691411137581, 0.012574096210300922, -0.03535822406411171, -0.05325660854578018, 0.03746875375509262, 0.0034261844120919704, 0.013937718234956264, 0.0018107384676113725, -0.01924145221710205, -0.02133827656507492, -0.00028887015650980175, 0.022640226408839226, -0.002341797109693289, 0.00749649154022336, 0.032699503004550934, -0.0084763802587986, 0.021023066714406013, 0.01578785665333271, -0.010299109853804111, 0.014554430730640888, 0.0069996947422623634, -0.028752539306879044, 0.011313260532915592, 0.023161007091403008, -0.011135099455714226, 0.03434407338500023, 0.019775936380028725, 0.01319080963730812, 0.009257550351321697, 0.013451199978590012, 0.013423790223896503, -0.011573650874197483, 0.015363010577857494, 0.0007678935653530061, -0.0010886701056733727, 0.019871870055794716, 0.006098608020693064, 0.033713653683662415, 0.004803510382771492, -0.0017250837991014123, -0.015924904495477676, 0.018693262711167336, 0.006725599989295006, 0.003100696951150894, -0.0098262969404459, 0.0006355572259053588, 0.012272592633962631, -0.018994765356183052, -0.014074765145778656, 0.008825850673019886, 0.010737662203609943, -0.026751646772027016, -0.012841339223086834, -0.010148357599973679, 0.021187523379921913, 0.010943233035504818, -0.005982117727398872, -0.0018004599260166287, -0.04889850318431854, 0.03217872232198715, 0.005207800306379795, 0.02302395924925804, -0.0077979955822229385, -0.025970477610826492, -0.02107788622379303, 0.051858726888895035, -0.01721315085887909, 0.026340505108237267, -0.04613014683127403, -0.009538496844470501, 0.028368806466460228, 0.007640391122549772, 0.005848496686667204, 0.01906329020857811, -0.009853705763816833, -0.0076883574947714806, -0.009175322018563747, 0.012354820966720581, 0.05374997854232788, -0.017925797030329704, 0.043964799493551254, 0.0018963930197060108, 0.02294173091650009, 0.013670475222170353, 0.018117662519216537, 0.026847580447793007, 0.04097716510295868, -0.02294173091650009, 0.00013522720837499946, 0.012875600717961788, -0.025477107614278793, 0.010785628110170364, -0.03755098208785057, 0.011518831364810467, -0.027176493778824806, -0.017514653503894806, 0.03686574473977089, 0.00024839836987666786, 0.008853260427713394, 0.028862176463007927, -0.015061506070196629, -0.04854217916727066, -0.008640836924314499, 0.01762429252266884, 0.008592870086431503, 0.0203104205429554, -0.032288361340761185, -0.00011124392040073872, -0.033878110349178314, 0.0003961525799240917, -0.015458944253623486, -0.0061637056060135365, 0.026066411286592484, -0.025929363444447517, -3.070182356168516e-05, 0.04199131578207016, -0.02151643857359886, 0.006694764364510775, -0.0194881372153759, 0.02158496156334877, -0.009182173758745193, -0.007948747836053371, 0.009894820861518383, 0.005879332311451435], [0.002925541950389743, 0.0015600095503032207, 0.039431944489479065, 0.03707139566540718, -0.0260063074529171, 0.043455615639686584, -0.012822088785469532, -0.0155984191223979, 0.021808279678225517, 0.033798810094594955, -0.01680552028119564, -0.009650097228586674, 0.0024326425045728683, -0.005750492215156555, -0.037527408450841904, 0.0276291873306036, -0.007403549272567034, 0.0313577875494957, 0.0037319520488381386, -0.008530176244676113, 0.0765569880604744, 0.03685680031776428, -0.005723667796701193, 0.024490725249052048, -0.01657751202583313, -0.03294042870402336, 0.039056405425071716, 0.05217356234788895, 0.03605206683278084, -0.068777896463871, 0.07306981086730957, -0.01964891143143177, 0.01520946528762579, -0.040102556347846985, 0.02277396060526371, 0.023189740255475044, -0.04388480633497238, 0.04342878982424736, 0.0060623264871537685, 0.02980196662247181, -0.02210334874689579, 0.012775145471096039, -0.03221616894006729, -0.025308871641755104, -0.01520946528762579, 0.04849861189723015, 0.013492699712514877, -0.04069269448518753, -0.0095696235075593, 0.03554239869117737, 0.012828794308006763, 0.005277710966765881, 0.041229184716939926, -0.03489861264824867, 0.02505403943359852, 0.022519128397107124, 0.016054434701800346, 0.035810645669698715, 0.03626666218042374, -0.037661533802747726, 0.002975837793201208, -0.010173173621296883, -0.027709659188985825, 0.05890649929642677, 0.0073230755515396595, -0.014820510521531105, 0.0277901329100132, 0.014512029476463795, -0.006766468286514282, 0.03682997450232506, 0.05633135139942169, 0.034576721489429474, 0.017315184697508812, -0.030955418944358826, -0.01775778830051422, -0.03750058636069298, 0.027025636285543442, 0.02634161338210106, -0.034630369395017624, -3.879591167788021e-05, 0.0038291907403618097, 0.006092504132539034, 0.016604335978627205, 0.026140429079532623, 0.013412226922810078, 0.014002364128828049, -0.02745482698082924, 0.017570016905665398, -0.03567652404308319, 0.011588163673877716, -0.04069269448518753, -0.01786508597433567, -0.043509263545274734, 0.05346113443374634, 0.03479131683707237, -0.03192109987139702, 0.014270609244704247, -0.014793685637414455, -0.026529384776949883, 0.03465719521045685, -0.0001303500757785514, 0.015263114124536514, -0.006521695293486118, 0.017878498882055283, 0.014981457032263279, -0.054239045828580856, 0.0021828399039804935, 0.050429970026016235, 0.02471873350441456, -0.0381711982190609, -0.06024772301316261, -0.04782800003886223, -0.03353056684136391, 0.10043074935674667, -0.012325836345553398, -0.020788950845599174, -0.07060196250677109, 0.02729388140141964, 0.04482366144657135, 0.012366073206067085, -0.05820906162261963, -0.030499402433633804, 0.03945877030491829, -0.05681419000029564, 0.005643194541335106, 0.002471202751621604, -0.01401577703654766, -0.004724456928670406, -0.0623936764895916, -0.03964654356241226, 0.06588085740804672, -0.02355187013745308, -0.011983824893832207, -0.07462562620639801, -0.009911635890603065, 0.002593589248135686, -0.015128991566598415, -0.02942642569541931, -0.013351871632039547, -0.013935303315520287, 0.028380271047353745, 0.007732148747891188, 0.02019881270825863, 0.0031786977779120207, -0.06110610440373421, -0.0031971395947039127, 0.01507534272968769, 0.0408804677426815, -0.007235896307975054, 0.017167650163173676, -0.0189246516674757, 0.02427612990140915, -0.0035542401019483805, 0.009871399030089378, 0.015571595169603825, 0.008489939384162426, 0.026140429079532623, 0.0626082718372345, 0.03092859499156475, 0.007785797584801912, -0.023578694090247154, 0.006052267272025347, -0.03422800078988075, -0.020467057824134827, 0.02099013514816761, -0.007986980490386486, -0.032511238008737564, 0.02918500453233719, -0.06631004810333252, -0.07988321781158447, -0.0408804677426815, -0.021620510146021843, -0.032511238008737564, -0.014377906918525696, 0.01409624982625246, -0.05128835514187813, -0.014270609244704247, -0.030097035691142082, 0.019783034920692444, -0.0102737657725811, 0.006796645931899548, -0.027226820588111877, -0.09093489497900009, -0.04560156911611557, -0.023914000019431114, 0.052495453506708145, 0.0071285986341536045, 0.017824849113821983, -0.010609070770442486, -0.016429977491497993, 0.01964891143143177, 0.029775142669677734, 0.01574595458805561, 0.038600388914346695, -0.04238263517618179, 0.004680866841226816, -0.006615580525249243, 0.007678499910980463, 0.007624850608408451, -0.019018536433577538, 0.04026350378990173, -0.04337514191865921, 0.05541931837797165, 0.018227215856313705, -0.04219486564397812, -0.030123861506581306, 0.013439050875604153, 0.024182245135307312, 0.0016103055095300078, -0.055902160704135895, -0.0025818536523729563, -0.03489861264824867, -0.04259723052382469, 0.026945162564516068, -0.04364338517189026, 0.004503155127167702, -0.028165675699710846, 0.014418143779039383, -0.033181849867105484, 0.05008125305175781, 0.036695852875709534, 0.002653944306075573, 0.022867845371365547, -0.0005247533554211259, -0.022921495139598846, 0.020346347242593765, -0.006773174274712801, -0.02746823988854885, -0.018575934693217278, -0.05024220049381256, -0.0064278095960617065, 0.027320705354213715, -0.013164100237190723, -0.012446545995771885, -0.0048786974512040615, -0.02188875339925289, -0.0021409266628324986, -0.01820039190351963, 0.013264692388474941, 0.012010648846626282, 0.04093411564826965, 0.026650093495845795, 0.018978301435709, 0.054104920476675034, 0.005116764456033707, -0.004084023181349039, -0.0018374749924987555, 0.027870606631040573, 0.012399603612720966, 0.022693486884236336, 0.019192896783351898, 0.011950293555855751, 0.028514394536614418, -0.025429582223296165, -0.004979289136826992, -0.0002835428458638489, -0.01007258240133524, -0.03712504357099533, 0.020574355497956276, -0.05676054209470749, -0.05794081836938858, -0.004389150999486446, 0.008127809502184391, 0.020896248519420624, -0.05397079885005951, -0.0349254384636879, 0.03527415543794632, -0.009871399030089378, -0.01931360550224781, 0.0308212973177433, -0.03264535963535309, 0.005321301054209471, 0.016094671562314034, -0.016376327723264694, -0.044689539819955826, -0.0045098611153662205, -0.01976962201297283, -0.02137908898293972, -0.006457987241446972, -0.01724812388420105, -0.037151869386434555, -0.002083924598991871, 0.0012674554018303752, -0.026663506403565407, -0.002781360410153866, 0.02081577479839325, -0.004258382134139538, 0.001183629035949707, -0.011769228614866734, 0.00418461486697197, 0.01214477140456438, 0.0005452908226288855, 0.012104534544050694, -0.0032977312803268433, 0.02255936525762081, 0.012446545995771885, -0.0004132642352487892, -0.0046272180043160915, 0.01541064865887165, -0.02082918770611286, 0.018119918182492256, 0.01802603341639042, 0.020963309332728386, 0.026355024427175522, -0.04710374027490616, 0.002494674175977707, 0.03677632659673691, 0.02265325002372265, -0.024490725249052048, 0.03363786265254021, -0.024879680946469307, 0.022022876888513565, -0.028165675699710846, -0.021566860377788544, -0.057404328137636185, 0.0021040430292487144, 0.01853569783270359, 0.013083627447485924, -0.039887961000204086, 0.0008776625618338585, 0.014002364128828049, -0.01942090317606926, 0.047801174223423004, -0.024222481995821, 0.02891676127910614, -0.020587768405675888, 0.00971045158803463, -0.014069425873458385, -0.06062326580286026, 0.003239052603021264, -0.03532780334353447, -0.040826816111803055, 0.028889935463666916, -0.007598026189953089, -0.007316369563341141, -0.01456567831337452, -0.02010492794215679, 0.059872180223464966, -0.01443155575543642, 0.033235497772693634, 0.014082837849855423, -0.043509263545274734, 0.02768283523619175, 0.010588953271508217, -0.042570408433675766, 0.03760788217186928, -0.013841417618095875, 0.010186586529016495, 0.01024694088846445, 0.04074634611606598, 0.0030864886939525604, 0.03618618845939636, -0.028702164068818092, 0.02673056721687317, -0.0684560015797615, -0.000739348994102329, -0.011574751697480679, -0.012352660298347473, -0.0309822428971529, -0.0313577875494957, 0.01166863739490509, 0.008040630258619785, -0.006474752444773912, 0.014646151103079319, -0.01147415954619646, -0.005549308843910694, 0.0006819278933107853, -0.020842600613832474, 0.02607336826622486, -0.03632031008601189, 0.007712030317634344, 0.051046933978796005, -0.0128958560526371, 0.00019437250739429146, -0.04544062539935112, -0.01993056945502758, -0.01719447411596775, 0.0443408228456974, -0.017046939581632614, -0.015813015401363373, 0.026489147916436195, 0.04305324703454971, 0.006518342066556215, 0.013445757329463959, 0.0820828229188919, 0.04678184539079666, -0.037527408450841904, -0.009971990250051022, -0.011279682628810406, 0.02628796361386776, -0.014163311570882797, 0.0175163671374321, -0.031679678708314896, 0.018347926437854767, -0.01982327178120613, -0.00488540343940258, 0.043294668197631836, 0.019528202712535858, 0.03825167194008827, -0.014310846105217934, 0.023914000019431114, -0.02538934536278248, -0.005602957680821419, -0.04104141145944595, -0.038600388914346695, -0.00205877679400146, -0.040451277047395706, -0.015263114124536514, 0.005817553494125605, 0.0003495561541058123, 0.014726624824106693, -0.0002124999591615051, 0.027870606631040573, -0.043509263545274734, 0.005368243902921677, -0.013573173433542252, -0.03020433336496353, 0.03685680031776428, 0.00759132020175457, 0.0022113409359008074, 0.05901379510760307, -0.026381850242614746, 0.018723467364907265, -0.02289467118680477, -0.023310448974370956, 0.03226981684565544, -0.0006374999065883458, 0.0026455617044121027, 0.006484811659902334, -0.1103021502494812, 0.012956210412085056, 0.02321656420826912, 0.043965280055999756, -0.012822088785469532, -0.029238654300570488, -0.036132536828517914, 0.03353056684136391, -0.016269030049443245, -0.01401577703654766, -0.046299006789922714, 0.0138145936653018, -0.018777117133140564, -0.0015105520142242312, 0.018897827714681625, -0.008409465663135052, 0.04251675680279732, 0.006323864683508873, -0.014029189012944698, 0.0029003939125686884, 0.002489644568413496, -0.03020433336496353, 0.0019011831609532237, -0.039163701236248016, -0.015585007146000862, -0.02628796361386776, 0.05185166746377945, 0.007477316539734602, -0.04251675680279732, 0.03299407660961151, -0.08154633641242981, 0.03114319033920765, 0.05676054209470749, 0.036481257528066635, 0.050939638167619705, 0.04007573425769806, 0.0013563113752752542, -0.022478891536593437, -0.021110843867063522, -0.002709269756451249, 0.009931753389537334, -0.0009396941168233752, -0.042892299592494965, -0.006820117123425007, -0.024584611877799034, 0.028541218489408493, -0.014512029476463795, -0.005405127536505461, -0.0444481186568737, 0.006914002820849419, -0.019005125388503075, -0.0020302757620811462, 0.03320867195725441, -0.028433920815587044, -0.008979485370218754, 0.03830531984567642, 0.01691281795501709, 0.07462562620639801, -0.008047335781157017, -0.015987373888492584, -0.023645754903554916, -0.04106823727488518, -0.025644177570939064, 0.016108084470033646, -0.015169228427112103, -0.0009531063260510564, -0.023149503394961357, -0.008952661417424679, -0.009200787171721458, 0.04203391820192337, -0.010220116935670376, 0.04637948051095009, -0.005301182623952627, 0.042677704244852066, 0.030445754528045654, 0.03404023125767708, 0.012010648846626282, -0.005364890675991774, -0.007564495783299208, -0.044904135167598724, 0.006853647995740175, -0.04160472750663757, -0.0017251475946977735, 0.04007573425769806, -0.007852858863770962, 0.0034469421952962875, -0.025188161060214043, 0.01775778830051422, -0.011266270652413368, -0.0273609422147274, 0.013231161050498486, -0.020051278173923492, -0.06314476579427719, -0.017717551440000534, 0.005763904191553593, 0.013559761457145214, 0.0344962477684021, -0.005468835588544607, -0.032350290566682816, -0.02355187013745308, -0.02958737127482891, 0.039780665189027786, -0.05067139118909836, -0.019997630268335342, 0.022036287933588028, 0.02607336826622486, -0.022975144907832146, 0.01814674213528633, -0.005374949891120195, 0.01747613213956356, -0.060086775571107864, 0.027709659188985825, -0.03036528080701828, 0.0066725825890898705, 0.0008323963265866041, -0.010468242689967155, 0.010428005829453468, 0.008261931128799915, 0.029721494764089584, 0.0311968382447958, -0.007484022527933121, 0.036803148686885834, 0.022733723744750023, 0.018401574343442917, -0.002218046924099326, -0.006940827239304781, -0.023310448974370956, 0.0076583814807236195, -0.0312504880130291, 0.03363786265254021, 0.02808520197868347, -0.003923076204955578, 0.0006622286746278405, 0.0023840232752263546, 0.013378695584833622, -0.007872977294027805, 0.03570334613323212, -0.0015013311058282852, 0.010702956467866898, 0.004519920330494642, 0.024302953854203224, 0.0155179463326931, 0.018039444461464882, 0.02277396060526371, -0.04645995423197746, 0.0311968382447958, 0.013425638899207115, 0.011588163673877716, -0.0343889482319355, 0.01191676314920187, 0.0010972877498716116, -0.015786191448569298, 0.01846863515675068, -0.030767647549510002, -0.047479283064603806, -0.027334118261933327, 0.04106823727488518, 0.011534514836966991, -0.027548713609576225, -0.023457983508706093, 0.018388163298368454, 0.0016388064250349998, -0.0002313609147677198, 0.002161045093089342, 0.009750688448548317, -0.00197495031170547, 0.047076914459466934, -0.007416961248964071, 0.011313213035464287, -0.010018933564424515, 0.035193681716918945, -0.0002617479767650366, -0.02601972036063671, -0.00940197054296732, 0.0009229288552887738, -0.008932542987167835, -0.0001174617646029219, 0.0051603540778160095, 0.0004338017024565488, -0.012983035296201706, 0.04112188518047333, 0.016041023656725883, 0.014002364128828049, 0.012164889834821224, 0.008422878570854664, -0.036695852875709534, 0.01652386225759983, -0.018777117133140564, -0.021580273285508156, -0.024356603622436523, -0.0009723864495754242, -0.0032826424576342106, -0.003260847646743059, 0.01758342981338501, -0.025375932455062866, 0.013257985934615135, -0.01636291667819023, -0.0060287956148386, -0.030740823596715927, 0.030767647549510002, 0.0025952658616006374, -0.016510451212525368, 0.036588553339242935, -0.0019648910965770483, -0.00854358822107315, 0.0020235697738826275, 0.0010360945016145706, 0.012761733494699001, -0.007229190319776535, 0.00015602190978825092, -0.030284807085990906, 0.05692148953676224, 0.019219720736145973, 0.019675737246870995, -0.024906504899263382, 0.021633921191096306, -0.00759132020175457, -0.005556014832109213, 0.022237472236156464, -0.014444967731833458, -0.0036850092001259327, 0.013734119944274426, -0.015061930753290653, 0.0257917121052742, -0.02333727478981018, 0.01636291667819023, -0.00605562049895525, -0.023364098742604256, 0.05034950003027916, 0.026448911055922508, 0.024249305948615074, -0.02808520197868347, 0.017315184697508812, -0.017342008650302887, -0.010890727862715721, 0.040612220764160156, -0.015786191448569298, 0.025925833731889725, -0.00775897316634655, 0.007826033979654312, -0.022398417815566063, -0.05185166746377945, -0.010575540363788605, 0.033342793583869934, -0.016644572839140892, -0.02846074476838112, 0.007229190319776535, -0.01606784760951996, 0.020131751894950867, -0.04219486564397812, 0.03221616894006729, -0.02510768733918667, -0.012265481054782867, -0.010870609432458878, 0.01160828210413456, -0.03221616894006729, -0.012399603612720966, 0.02104378305375576, -0.015035105869174004, -0.010930964723229408, -0.017288360744714737, -0.001708382391370833, 0.014471792615950108, -0.025027215480804443, 0.008503351360559464, 0.01864299550652504, 0.03355739265680313, 0.01445838063955307, -0.00478481175377965, -0.05783352255821228, -0.06786586344242096, 0.024235893040895462, 0.007678499910980463, -0.03975383937358856, -0.04160472750663757, -0.03291360288858414, -0.016671396791934967, 0.007195659447461367, 0.013291516341269016, 0.03218934312462807, -0.03210886940360069, -0.019018536433577538, -0.0009329880122095346, -0.0410950630903244, 0.01636291667819023, -0.01612149551510811, 0.005646547302603722, -0.008932542987167835, -0.022291120141744614, 0.005022878758609295, 0.03632031008601189, -0.04595028981566429, 0.028943585231900215, -0.02093648537993431, -0.016000786796212196, 0.0241688322275877, 0.008972779847681522, -0.009623272344470024, 0.009549505077302456, -0.02255936525762081, 0.03433530032634735, 0.012848912738263607, 0.0034285003785043955, 0.010763311758637428, 0.028782637789845467, -0.0024125243071466684, -0.008697829209268093, -0.02003786712884903, 0.031679678708314896, -0.018763704225420952, 0.011594870127737522, 0.005364890675991774, -0.02639526128768921, -0.015571595169603825, -0.03610571473836899, 0.007893095724284649, 6.402242433978245e-05, 0.012721496634185314, 0.04621853306889534, 0.01010611280798912, 0.0065954625606536865, -0.0173017717897892, 0.011594870127737522, -0.008610649034380913, -0.04863273352384567, 0.023310448974370956, -0.0013596644857898355, -0.01881735399365425, 0.03693727031350136, 0.008087572641670704, 0.024745557457208633, 0.012104534544050694, 0.007249308284372091, -0.00326587725430727, 0.01707376353442669, -0.018240628764033318, 0.0024862915743142366, 0.007142010610550642, -0.009690334089100361, 0.04012938216328621, 0.011319919489324093, 0.026355024427175522, 0.02021222561597824, 0.013774356804788113, 0.01585325226187706, -0.00037470407551154494, 0.005267651751637459, -0.014954633079469204, -0.00390966422855854, -0.02640867419540882, -0.0377420037984848, 0.009033134207129478, -0.014364494942128658, 0.012714791111648083, 0.009697039611637592, 0.017221298068761826, -0.003108283504843712, -0.006297040265053511, -0.017114000394940376, 0.01174911018460989, -0.018039444461464882, -0.05426586791872978, 0.0019816565327346325, -0.005592898465692997, -0.03642760589718819, 0.005016172770410776, -0.009978696703910828, -0.023297037929296494, -0.07076290994882584, -0.003819131525233388, 0.038198020309209824, -0.009509268216788769, -0.01239289715886116, -0.0038493089377880096, 0.02065482921898365, 0.06319840997457504, -0.0049625239335000515, -0.04047809913754463, -0.0056901369243860245, 0.003416764782741666, -0.022398417815566063, -0.03264535963535309, 0.035247329622507095, -0.026355024427175522, 0.025925833731889725, -0.006276921834796667, -0.006712819449603558, 0.002161045093089342, 0.024128595367074013, 0.001408283831551671, -0.0004895462770946324, -0.00012888311175629497, 0.00010373519035056233, 0.011896644718945026, -0.001624555909074843, 0.02601972036063671, 0.0009011339861899614, -0.02768283523619175, -0.0243834275752306, 0.0016974848695099354, -0.028165675699710846, -0.0071285986341536045, -0.01585325226187706, 0.028782637789845467, 0.014418143779039383, 0.010495067574083805, -0.01636291667819023, 0.004057198762893677, 0.01596054993569851, 0.02155344747006893, 0.02333727478981018, 0.027025636285543442, -0.009764101356267929, -0.046245358884334564, 0.012922680005431175, -0.027106110006570816, -0.011889939196407795, 0.010662720538675785, -0.003416764782741666, -0.00848323293030262, 0.03218934312462807, -0.03259171172976494, -0.028943585231900215, -0.025577116757631302, -0.032403938472270966, 0.00466074887663126, -0.02662326954305172, 0.025255221873521805, -0.03707139566540718, -0.0021727806888520718, 0.010609070770442486, 0.01752978004515171, -0.01041459385305643, 0.009925047867000103, -0.002850098069757223, 0.017368832603096962, -0.002915482735261321, 0.017046939581632614, 0.0004916419275105, 0.0025801770389080048, -0.0035743582993745804, 0.057082436978816986, 0.007249308284372091, 0.02651597186923027, -0.015142403542995453, -0.03108954057097435, -0.039941608905792236, -0.028514394536614418, 0.0410950630903244, 0.014713212847709656, -0.00505305640399456, 0.01613490842282772, 0.016389740630984306, 0.026153841987252235, 0.017610253766179085, -0.03294042870402336, -0.014753448776900768, 0.005099999252706766, 0.05761892348527908, 0.05000077933073044, 0.004050492309033871, 0.010280471295118332, 0.0023789936676621437, -0.007564495783299208, 0.01337199006229639, 0.041282832622528076, 0.00665581738576293, -0.033074550330638885, -0.02255936525762081, -0.013157394714653492, -0.004305324517190456, -0.030794471502304077, 0.0033312616869807243, 0.009663509204983711, 0.005639841314405203, -0.00884536374360323, 0.002157691866159439, 0.004305324517190456, -0.04294595122337341, 0.02328362502157688, 0.0014761831844225526, 0.008463114500045776, -0.007993686944246292, -0.005998618435114622, -0.007644969038665295, 0.016148321330547333, -0.009985402226448059, -0.04973253607749939, 0.02969466894865036, 0.024088358506560326, -0.006729584652930498, 0.08267296105623245, -0.02768283523619175, -0.016282442957162857, -0.03366468846797943, -0.009247730486094952, -0.0002462400880176574, -0.008825245313346386, 0.010253647342324257, -0.02942642569541931, -0.04012938216328621, -0.011400392279028893, 0.04460906609892845, 0.014994869008660316, 0.055902160704135895, 0.021003546193242073, 0.016845757141709328, -0.022304533049464226, 0.002167751081287861, 0.03243076428771019, -0.023136090487241745, 0.04318736866116524, 0.0276291873306036, 0.025644177570939064, -0.0035542401019483805, -0.01936725527048111, -0.016993291676044464, -0.022183822467923164, 0.030231159180402756, -0.009274554438889027, -0.003356409724801779, 0.02953372336924076, -0.01541064865887165, -0.020574355497956276, -0.017046939581632614, -0.04047809913754463, 0.01579960249364376, 0.03645443171262741, -0.019581850618124008, 0.05045679584145546, -0.02400788478553295, 0.0626082718372345, 0.06110610440373421, 0.03170650452375412, -0.033342793583869934, 0.04203391820192337, 0.043294668197631836, -0.019957393407821655, 0.0004778105649165809, -0.052897822111845016, 0.030123861506581306, -0.013660352677106857, -0.016161732375621796, 0.05163707211613655, 0.026046544313430786, -0.020467057824134827, 0.009676921181380749, 0.027199994772672653, 0.024235893040895462, 0.016939641907811165, 0.008550294674932957, 0.00318205077201128, 0.029211830347776413, 0.03929782286286354, 0.018321100622415543, -0.008463114500045776, -0.002943983767181635, -0.003116666106507182, 0.014659564010798931, 0.023632343858480453, 0.01133333146572113, 0.004811636172235012, 0.008335698395967484, -0.008476527407765388, 0.01903194934129715, -0.0112729761749506, 0.06051596626639366, 0.02953372336924076, -0.017221298068761826, 0.010823667049407959, -0.008697829209268093, 0.039324648678302765, 0.014418143779039383, 0.02367258071899414, -0.0033815575297921896, 0.01746271923184395, 0.027307292446494102, 0.03377198800444603, 0.005924851167947054, -0.010723074898123741, 0.006561931688338518, -0.028541218489408493, -0.004861932247877121, -0.030043387785553932, 0.010374356992542744, -0.011796053498983383, -0.029560547322034836, 0.005663312505930662, -0.026636682450771332, -0.01959526352584362, 0.016671396791934967, -0.031733326613903046, 0.01252701971679926, 0.028782637789845467, -0.00039859459502622485, 0.04181932285428047, -0.008181458339095116, -0.025764888152480125, -0.013211043551564217, 0.055848512798547745, 0.01747613213956356, 0.012171595357358456, 0.0173554215580225, 0.024758970364928246, 0.04104141145944595, 0.01702011562883854, 0.028943585231900215, 0.004768046550452709, -0.011212621815502644, -0.03623983636498451, 0.011789347045123577, -0.04766705259680748, -0.021070607006549835, -0.04431399703025818, 0.026529384776949883, -0.0012230273569002748, 0.007953450083732605, 0.0063070994801819324, 0.015893489122390747, 0.029828792437911034, 0.018213802948594093, -0.01848204806447029, 0.04643312841653824, -0.02321656420826912, -0.04592346400022507, -0.0021694276947528124, 0.0035508868750184774, -0.03299407660961151, -0.017368832603096962, -0.01099802553653717, -0.0204938817769289, 0.013854829594492912, -0.03336961939930916, -0.0038124253042042255, 0.018508872017264366, 0.03412070497870445, 0.0005591221852228045, -0.0480157695710659, -0.002377317054197192, 0.026355024427175522, -0.029775142669677734, 0.0059449695982038975, -0.0015683922683820128, 0.014820510521531105, 0.0035173564683645964, 0.03267218545079231, 0.008523469790816307, -0.03578381985425949, -0.03801025077700615, 0.004087375942617655, -0.013801180757582188, -0.023350685834884644, -0.019018536433577538, 0.021526623517274857, -0.00711518619209528, 0.005931557156145573, -0.023377511650323868, -0.048418138176202774, -0.012533726170659065, -0.025241810828447342, 0.015504534356296062, -0.027977904304862022, 0.00789980124682188, 0.010649307630956173, 0.018884414806962013, 0.01691281795501709, -0.006779880728572607, 0.020856011658906937, -0.02355187013745308, 0.004939052276313305, -0.005955028813332319, -0.0010377709986642003, 0.021741218864917755, 0.004332149401307106, -0.012607492506504059, 0.03350374102592468, -0.01518264040350914, 0.02538934536278248, 0.01975620910525322, 0.00837593525648117, -0.008255225606262684, 0.0074907285161316395, 0.016564099118113518, -0.012641023844480515, 0.005358184687793255, 0.010153055191040039, 0.004536685533821583, -0.016215382143855095, 0.007162129040807486, 0.028487568721175194, 0.00496922992169857, 0.017958970740437508, -0.004828401375561953, -0.0257380623370409, 0.024544375017285347, 0.012962916865944862, -0.02015857584774494, -0.003866074373945594, -0.0052475337870419025, 0.00328599545173347, 0.019072186201810837, -0.0028098614420741796, -0.03913687542080879, -0.004164496436715126, 0.012681259773671627, 0.01476686168462038, 0.022304533049464226, -0.003594476729631424, -0.03980748727917671, -0.03599841520190239, -0.005908085964620113, 0.027709659188985825, 0.027763308957219124, -0.009931753389537334, 0.013177512213587761, -0.01052189152687788, -0.0011392009910196066, 0.008442997001111507, 0.07752267271280289, 0.008905718103051186, -0.03176015242934227, 0.018763704225420952, 0.05485600605607033, -0.03779565542936325, -0.00038036235491745174, -0.026717156171798706, -0.013908479362726212, 0.004503155127167702, -0.026368437334895134, 0.05297829583287239, 0.017677314579486847, 0.004268440883606672, 0.004664101637899876, 0.018911238759756088, 0.017784612253308296, 0.043562911450862885, 0.04860590770840645, 0.005029584746807814, 0.02037317305803299, -0.026274552568793297, -0.00851005781441927, 0.0045433915220201015, -0.02824614942073822, -0.026663506403565407, -0.007155423052608967, -0.012077709659934044, -0.00990492943674326, 0.031947921961545944, -0.014498616568744183, 0.017556603997945786, -0.04230216145515442, 0.019233133643865585, -0.023122679442167282, -0.016657985746860504, 0.005727020557969809, -0.0012674554018303752, 0.020949898287653923, 0.01590690016746521, 0.00019594424520619214, -0.0015088755171746016, -0.002003451343625784, 0.010656014084815979, 0.03224299103021622, 0.007135304622352123, -0.002925541950389743, 0.009187375195324421, 0.00466074887663126, -0.014377906918525696, -0.0016471890266984701, 0.005579486023634672, -0.053273364901542664, -0.008785008452832699, -0.010897434316575527, -0.012131358496844769, -0.01848204806447029, -0.02406153455376625, -0.03355739265680313, -0.01785167306661606, 0.015826426446437836, 0.05413174629211426, -0.03355739265680313, 0.010622483678162098, 0.004489742685109377, -0.007235896307975054, 0.012989741750061512, 0.005180472508072853, -0.009194081649184227, 0.030499402433633804, -0.00043631650623865426, -0.0191392470151186, 0.027870606631040573, 0.005032937973737717, 0.0035609460901468992, 0.035354629158973694, -0.02042682096362114, 0.009140432812273502, -0.02718658372759819, -0.029265478253364563, -0.008396053686738014, -0.022760547697544098, 0.012486782856285572, 0.04506508260965347, -0.0018022679723799229, -0.005224062129855156, 0.02846074476838112, 0.024772383272647858, -0.024758970364928246, 0.04874003306031227, -0.02282761037349701, -0.007986980490386486, -0.0016807196661829948, 0.022975144907832146, -0.003584417514503002, 0.00022507391986437142, -0.015437472611665726, -0.05418539419770241, 0.008771596476435661, -0.01233254186809063, 0.002531557809561491, -0.019796445965766907, -0.0205475315451622, 0.009529386647045612, -0.030123861506581306, 0.018884414806962013, -0.017677314579486847, -0.002278401982039213, 0.026811040937900543, 0.015786191448569298, 0.005663312505930662, -0.004291912540793419, 0.040826816111803055, -0.0221704114228487, -0.019447728991508484, -0.005837671458721161, 0.007269426714628935, -0.036534905433654785, -0.0019062126521021128, -0.017207887023687363, -0.00820157676935196, 0.004483036696910858, -0.013251279480755329, -0.007893095724284649, 0.008952661417424679, 0.01987691968679428, -0.03758106008172035, 0.030043387785553932, -0.004379091784358025, 0.013566466979682446, 0.01742248237133026, 0.00309822428971529, 0.03409387916326523, -0.0059449695982038975, -0.0170871764421463, 0.0007133628241717815, 0.02082918770611286, -0.012258775532245636, -0.03527415543794632, -0.006525048054754734, -0.03141143545508385, 0.010837079025804996, -0.01880394108593464, -0.011842995882034302, -0.021137669682502747, 0.013365283608436584, -0.0016966466791927814, -0.012513607740402222, -0.002803155453875661, 0.028782637789845467, -0.026636682450771332, 0.013244573958218098, -0.006333923898637295, 0.01585325226187706, -0.008020511828362942, -0.003242405829951167, 0.02510768733918667, -0.012761733494699001, 0.01624220609664917, -0.0018475342076271772, 0.011574751697480679, 0.03197474777698517, -0.014082837849855423, -0.008939249441027641, 0.0038493089377880096, -0.02048047073185444, -0.014310846105217934, 0.005706902593374252, -0.0205475315451622, 0.004902168642729521, -0.041443780064582825, -0.03361104056239128, 0.027816958725452423, 0.03133096173405647, -0.04106823727488518, -0.0015507886419072747, 0.014780273661017418, 0.0068737659603357315, -0.04962523654103279, -0.01191676314920187, -0.005535896401852369, -0.002499703783541918, -0.003413411555811763, -0.020909661427140236, -0.024571198970079422, -0.011393686756491661, 0.005227415356785059, -0.0029976326040923595, 0.038922280073165894, 0.0010796842398121953, 0.022089937701821327, -0.00759132020175457, 0.004466271493583918, -0.02913135662674904, 0.001435946556739509, -0.03398658335208893, 0.025644177570939064, -0.003738658269867301, 0.0017201181035488844, -0.0018072975799441338, 0.022505715489387512, 0.0024980271700769663, 0.014056013897061348, -0.024101771414279938, -0.009670215658843517, -0.0482303649187088, -0.0006094180280342698, 0.009576329961419106, 0.019327018409967422, -0.005519131198525429, 0.030687173828482628, -0.010226822458207607, 0.002241518348455429, 0.009113607928156853, -0.00045936874812468886, -0.00987810455262661, -0.009080077521502972, 0.01317080669105053, 0.006645758170634508, -0.03047257848083973, -0.0029423071537166834, -0.01306350901722908, 0.05686784163117409, -0.017435895279049873, -0.019742798060178757, 0.024799207225441933, 0.008630767464637756, 0.020695066079497337, 0.0275755375623703, -0.03656173124909401, 0.02768283523619175, -0.008657592348754406, -0.016953054815530777, -0.014525441452860832, -0.02127179130911827, -0.005727020557969809, -0.02907770685851574, 0.0029456601478159428, -0.03570334613323212, -0.013271397911012173, -0.023511633276939392, -0.006102562882006168, -0.014297433197498322, 0.0006861191941425204, 0.006850294768810272, 0.037983424961566925, 0.0048786974512040615, -0.04667454957962036, -0.015987373888492584, -0.022250883281230927, 0.0004057198530063033, 0.0026975341606885195, 0.019890332594513893, -0.0032356996089220047, 0.029614197090268135, -0.01724812388420105, 0.006561931688338518, -0.01747613213956356, 0.0019347136840224266, 0.004643983673304319, -0.02155344747006893, -0.037473760545253754, 0.03154555708169937, 0.0008219180162996054, 0.0051637073047459126, 0.04983983561396599, -0.006702760234475136, -0.036534905433654785, -0.07795186340808868, 0.013445757329463959, -0.017610253766179085, 0.017449306324124336, 0.005750492215156555, -0.033235497772693634, -0.04299959912896156, 0.003534121671691537, 0.0049927011132240295, 0.0032139047980308533, 0.03138460963964462, 0.024463901296257973, 0.002016863552853465, 0.03133096173405647, 0.014310846105217934, -0.0028635102789849043, 0.016309266909956932, 0.023484809324145317, -0.03615936264395714, 0.01507534272968769, 0.02656962163746357, -0.000232827864238061, 0.038385793566703796, 0.011829583905637264, 0.038707684725522995, 0.0138145936653018, 0.02344457246363163, 0.026301376521587372, 0.015772778540849686, 0.025912420824170113, -0.008100984618067741, -0.002836685860529542, -0.03181380033493042, 0.013318341225385666, 0.025992894545197487, 0.0045903343707323074, -0.007765679154545069, 0.008644180372357368, 0.004694279283285141, 0.004757987335324287, -0.024370016530156136, -0.016282442957162857, 0.013760944828391075, -0.01779802516102791, -0.02974831871688366, -0.02773648500442505, 0.02556370384991169, 0.00854358822107315, -0.013043390586972237, 0.007416961248964071, 0.008597237057983875, 0.016309266909956932, -0.01136015634983778, 0.0017150884959846735, 0.003314496483653784, -0.016993291676044464, 0.02494674175977707, -0.016617748886346817, -0.0067564090713858604, 0.010253647342324257, -0.010870609432458878, 0.023028792813420296, -0.005167060066014528, -0.005307888612151146, 0.039941608905792236, -0.029238654300570488, 0.0045936875976622105, 0.028568042442202568, 0.006853647995740175, 0.008966073393821716, -0.009690334089100361, -0.007336487993597984, 0.002306903013959527, 0.005317947827279568, 0.006551872473210096, 0.03358421474695206, -0.029211830347776413, 0.03693727031350136, 0.011179090477526188, 0.046084411442279816, 0.010723074898123741, -0.003411735175177455, 0.018562521785497665, 0.012117946520447731, -0.038439441472291946, -0.004137672018259764, 0.0035173564683645964, -0.005197237711399794, 0.018441811203956604, -0.0019581851083785295, 0.03243076428771019, -0.015719128772616386, 0.0007829387322999537, 0.031223664060235023, -0.039834313094615936, -0.004519920330494642, 0.02824614942073822, 0.01601419784128666, 0.009898222982883453, -0.004181261640042067, 0.011755816638469696, 0.0094891507178545, 0.010193292051553726, 0.0031300783157348633, 0.03267218545079231, 0.0005918145179748535, 0.0020520705729722977, -0.039941608905792236, -0.008282049559056759, -0.012580668553709984, -0.009857986122369766, 0.0007825195789337158, 0.01549112144857645, -0.04104141145944595, 0.0017938852543011308, -0.02913135662674904, 0.04316054657101631, -0.003715186845511198, 0.006474752444773912, 0.013687177561223507, 0.010890727862715721], [-0.01925007253885269, 0.003147674025967717, 0.023164208978414536, 0.026637505739927292, -0.030965765938162804, -0.008355947211384773, 0.014240511693060398, 0.012477146461606026, -0.016311129555106163, 0.03035126067698002, -0.03491998091340065, 0.01405348815023899, 0.00908400397747755, 0.04771773889660835, -0.014360741712152958, 0.010399848222732544, -0.009244309738278389, 0.018662285059690475, 0.015162271447479725, -0.0019503891235217452, 0.061717789620161057, 0.022656574845314026, 0.03179401531815529, -0.0035835059825330973, -0.05121774971485138, -0.01786075532436371, 0.024419939145445824, 0.03542761504650116, 0.024179480969905853, -0.015616470947861671, 0.07432852685451508, -0.003346386831253767, 0.025288263335824013, -0.001203964464366436, 0.010500039905309677, 0.020305421203374863, -0.036068838089704514, 0.0245268102735281, 0.049107056111097336, -0.04456505551934242, -0.03083217702805996, 0.022563062608242035, -0.021761532872915268, -0.005590669810771942, -0.05562616512179375, 0.04154595732688904, 0.006669395603239536, -0.009678471833467484, -0.03176729753613472, 0.0010520077776163816, -0.021160384640097618, -0.014935171231627464, 0.013318752869963646, -0.059580378234386444, 0.04151923954486847, 0.02510124072432518, -0.009631715714931488, 0.014841658994555473, 0.01645807735621929, -0.04608796164393425, 0.012811116874217987, -0.03171386197209358, -0.014374100603163242, 0.03160699084401131, -0.012710926122963428, 0.03561463952064514, 0.019557325169444084, -0.008509574458003044, -0.02377871610224247, 0.03972915932536125, 0.06946591287851334, 0.045767348259687424, 0.0032111285254359245, 0.017673730850219727, 0.011949473060667515, -0.02558215707540512, 0.023498181253671646, 0.0015279160579666495, -0.042374204844236374, 0.003052492393180728, -0.00872331578284502, 0.022589780390262604, -0.011141263879835606, 0.05330172926187515, 0.015122194774448872, -0.03596196696162224, -0.03326348587870598, -0.014293947257101536, -0.060061294585466385, -0.008910339325666428, -0.01624433696269989, 0.00746090617030859, -0.0291222482919693, 0.038713887333869934, 0.04699636250734329, -0.054236847907304764, 0.016230978071689606, -0.05749640241265297, -0.06118343770503998, -0.003680357476696372, 0.012543940916657448, 0.027091706171631813, 0.009230950847268105, 0.03326348587870598, 0.0466490313410759, -0.03540089726448059, -0.04034366458654404, 0.04777117446064949, 0.023164208978414536, -0.058832284063100815, -0.0694124773144722, 0.03174057975411415, 0.01369279995560646, 0.06722162663936615, -0.024606963619589806, -0.057603269815444946, -0.05557272955775261, 0.024486733600497246, 0.039168085902929306, 0.0078817093744874, -0.0702674388885498, -0.032889436930418015, 0.0017767242388799787, -0.04320245236158371, 0.032141342759132385, -0.014761506579816341, -0.0446719266474247, -0.01867564395070076, -0.0478513278067112, -0.0463017039000988, 0.0777483880519867, 0.008168923668563366, 0.04101160541176796, -0.04101160541176796, -0.03227493166923523, -0.006545826327055693, 0.00043165715760551393, 0.012664170004427433, -0.007333997171372175, -0.06187809631228447, 0.018488619476556778, 0.019383661448955536, -0.001571332337334752, 0.010486681014299393, -0.03182072937488556, -0.0021073552779853344, 0.031900882720947266, 0.0558399073779583, -0.06129030883312225, 0.020439008250832558, -0.01819472573697567, -0.008088771253824234, -0.010012442246079445, -0.03767189756035805, 0.01054011657834053, -0.04464520886540413, 0.01987793855369091, 0.048599421977996826, 0.007006705738604069, 0.005533894989639521, 0.01987793855369091, -0.04413757100701332, -0.012270084582269192, 0.010894125327467918, -0.0009618357289582491, 0.004314901772886515, -0.04368337243795395, 0.016524871811270714, -0.04592765495181084, -0.045526888221502304, -0.024820704013109207, -0.026797810569405556, -0.03630929812788963, 0.019677555188536644, 0.023524899035692215, -0.023818792775273323, -0.02695811726152897, -0.04349634796380997, 0.03876732289791107, -0.028481023386120796, 0.013839746825397015, 0.026036357507109642, -0.06396207213401794, -0.07144302129745483, -0.0610765665769577, 0.03083217702805996, -0.018755795434117317, -0.0023595031816512346, -0.009010530076920986, -0.025475287809967995, 0.0030725307296961546, 0.028561176732182503, 0.03927495703101158, 0.04368337243795395, -0.012029625475406647, 0.03671006113290787, 0.011682296171784401, 0.009478089399635792, 0.0026934738270938396, 0.013018178753554821, 0.04654216021299362, -0.03662991151213646, 0.04555360600352287, 0.013605967164039612, -0.03911465033888817, -0.049374233931303024, 0.012209969572722912, -0.016591666266322136, 0.025408493354916573, 0.0006929892697371542, -0.012029625475406647, -0.04026351124048233, -0.03737800568342209, 0.034599367529153824, -0.032622259110212326, 0.01148191373795271, -0.027225293219089508, 0.04082458093762398, -0.026049716398119926, 0.03833983838558197, 0.030271107330918312, 0.006215195171535015, 0.019944731146097183, 0.007975220680236816, 0.011956152506172657, 0.014480970799922943, 0.008402703329920769, -0.04761086776852608, 0.0021607906091958284, -0.031927600502967834, -0.0407177098095417, 0.024059250950813293, 0.02170809730887413, -0.03304974362254143, 0.008729995228350163, -0.016137465834617615, -0.024460015818476677, -0.02252298593521118, -0.021053515374660492, -0.0004249777412042022, 0.025956206023693085, 0.01795426569879055, 0.009464730508625507, 0.03975587710738182, -0.008456138893961906, -0.008362626656889915, -0.025502005591988564, 0.0018151309341192245, 0.037965793162584305, 0.023190926760435104, 0.03222149610519409, 0.036015402525663376, -0.0060515496879816055, 0.02450009249150753, -0.0031693822238594294, -0.025876052677631378, 0.012710926122963428, -0.005901262629777193, 0.03809938207268715, -0.021147025749087334, 0.005854506976902485, -0.018261520192027092, -0.047183383256196976, 0.01831495575606823, -0.045526888221502304, -0.0478513278067112, 0.07203080505132675, -0.01648479513823986, -0.034278754144907, 0.014093564823269844, -0.03326348587870598, 0.025809258222579956, 0.01408020593225956, -0.026022998616099358, -0.06861094385385513, -0.01786075532436371, -0.027465753257274628, -0.007160332519561052, -0.003950873855501413, -0.03836655616760254, -0.020786337554454803, -0.024807345122098923, 0.037431441247463226, -0.010967599228024483, -0.0171393770724535, 0.008355947211384773, -0.0007272212533280253, -0.0058110905811190605, 0.023832151666283607, 0.007848312146961689, 0.04761086776852608, 0.02228252775967121, -0.009992403909564018, 0.0007831613766029477, 0.00661929976195097, 0.02534169889986515, 0.002591612981632352, -0.050068892538547516, 0.012417031452059746, 0.017660371959209442, 0.005577311385422945, -0.018862666562199593, -0.017647013068199158, 0.01973099075257778, 0.005517196375876665, -0.011134584434330463, 0.02861461229622364, 0.01759357750415802, -0.00885690376162529, 0.004822537302970886, -0.043549783527851105, 0.011695655062794685, -0.020732903853058815, -0.027185216546058655, -0.049374233931303024, 0.011007674969732761, 0.05744296684861183, 0.02606307528913021, -0.04167954623699188, 0.005243340507149696, -0.0015212367288768291, -0.023738639429211617, 0.02132069133222103, -0.02035885490477085, 0.033610813319683075, -0.019343584775924683, 0.018381748348474503, -0.011635540053248405, 0.002372862072661519, -0.006472352892160416, -0.04050397127866745, -0.0026550672482699156, 0.022656574845314026, -0.02938942424952984, -0.03524059057235718, 0.007647929713129997, -0.004992862232029438, 0.06070252135396004, -0.01696571335196495, 0.023458104580640793, 0.019971448928117752, -0.006235233508050442, -0.043095581233501434, -0.010700422339141369, -0.03935511037707329, 0.01720617152750492, -0.004949446301907301, 0.005801071412861347, 0.005373589228838682, 0.05263378843665123, 0.009377897717058659, 0.011829243041574955, -0.01978442631661892, -0.018395107239484787, -0.0535154715180397, -0.0017967625753954053, 0.011268172413110733, -0.005233321338891983, -0.019610760733485222, -0.014547765254974365, -0.019316866993904114, 0.004892671015113592, -0.01421379391103983, 0.02810697630047798, -0.05530555173754692, 0.009037247858941555, 0.019944731146097183, 0.0035668073687702417, -0.011461875401437283, -0.053221575915813446, 0.029523013159632683, 0.06674071401357651, -0.01019278634339571, 0.012270084582269192, -0.03008408285677433, -0.0263302531093359, -0.015442806296050549, -0.011415119282901287, -0.0031159468926489353, -0.0034866544883698225, 0.014467611908912659, 0.001963747898116708, 0.04285512492060661, -0.014734788797795773, 0.042828407138586044, 0.03978259488940239, -0.0366833433508873, -0.0021758193615823984, 0.004969484638422728, 0.008563009090721607, 0.004198011942207813, 0.008422741666436195, -0.028961941599845886, 0.03107263706624508, 0.004515284206718206, 0.040584124624729156, 0.02507452294230461, 0.06449642777442932, 0.040129922330379486, -0.01291130855679512, 0.0259428471326828, -0.011308249086141586, -0.0047590830363333225, -0.0042046913877129555, -0.041332218796014786, 0.012497184798121452, -0.013459020294249058, -0.03222149610519409, 0.013225240632891655, -0.00849621556699276, 0.05020248144865036, -0.013185164891183376, 0.02984362468123436, -0.014093564823269844, 0.012610734440386295, -0.01609738916158676, -0.013732876628637314, 0.03903450071811676, 0.006415577605366707, 0.006215195171535015, 0.0076546091586351395, -0.016297772526741028, 0.001621427945792675, 0.002661746693775058, -0.022135579958558083, 0.029202399775385857, 0.019557325169444084, 0.004137897398322821, -0.006776266265660524, -0.11531341075897217, 0.005627406761050224, 0.02669094130396843, 0.019089767709374428, 0.007273882627487183, -0.015376012772321701, 0.019437097012996674, 0.039221521466970444, -0.030190953984856606, -0.03224821388721466, -0.020398931577801704, 0.00029410296701826155, -0.04566047713160515, 0.05578647181391716, 0.030645154416561127, 9.25725107663311e-05, 0.03104591928422451, -0.007120255846530199, -0.014507688581943512, 0.0011572085786610842, 0.00999908335506916, -0.025782540440559387, 0.03641616925597191, -0.03224821388721466, -0.015750059857964516, -0.03930167481303215, 0.014026770368218422, 0.033637531101703644, -0.031099354848265648, 0.05578647181391716, -0.07967206090688705, 0.010980957187712193, 0.014574483036994934, 0.043309323489665985, 0.06604605168104172, 0.0012816126691177487, -0.02623674087226391, 0.019597401842474937, -0.043523065745830536, 0.003346386831253767, -0.02053252048790455, -0.025595515966415405, -0.025622233748435974, 0.031927600502967834, -0.00045336526818573475, 0.009852136485278606, -0.020078320056200027, 0.016444718465209007, -0.003780548693612218, 0.00704010296612978, -0.016645101830363274, -0.005590669810771942, 0.06209183856844902, -0.01268420834094286, -0.010687063448131084, 0.033610813319683075, 0.05525211617350578, 0.058297932147979736, -0.03219477832317352, -0.034545931965112686, -0.0006328745512291789, -0.044805511832237244, -0.03150011971592903, 0.008429421111941338, -0.015001964755356312, -0.04122534766793251, 0.0005456247017718852, -0.007187050301581621, -0.031393248587846756, 0.04932079836726189, -0.0566948726773262, 0.048866596072912216, -0.043309323489665985, 0.03449249640107155, 0.009117401205003262, 0.021601226180791855, 0.0013818038860335946, 0.03705739229917526, 0.0032445257529616356, -0.02269665151834488, 0.0013901531929150224, -0.062465883791446686, -0.030992483720183372, 0.024152763187885284, 0.003850682405754924, -0.004171294625848532, -0.0319543182849884, 0.01421379391103983, -0.0028838373254984617, 0.0006090791430324316, 0.009324463084340096, -0.03179401531815529, -0.03208790719509125, -0.012056343257427216, 0.0189428199082613, 0.007601173594594002, 0.02906881272792816, -0.02618330530822277, -0.019984807819128036, -0.048866596072912216, -0.0017817338230088353, 0.01987793855369091, -0.022603139281272888, -0.022082144394516945, 0.041332218796014786, 0.015603112988173962, -0.01663174293935299, 0.02960316464304924, -0.015242423862218857, 0.004224729724228382, 0.013612646609544754, -0.0064055584371089935, -0.04675590246915817, 0.01444089412689209, 0.008369306102395058, -0.015576395206153393, 0.026103151962161064, 0.0010077566839754581, -0.0028420910239219666, 0.001081230235286057, 0.012697567231953144, 0.01564318872988224, 0.01978442631661892, 0.04680933803319931, 0.027238652110099792, -0.021026797592639923, -0.03374440222978592, 0.025301622226834297, -0.048626139760017395, 0.01978442631661892, 0.019356943666934967, -0.036736778914928436, -0.03500013425946236, -0.017246248200535774, -0.007180370856076479, -0.03419860452413559, 0.03270241245627403, -0.006913193967193365, 0.02005160227417946, 0.004678930155932903, 0.018501978367567062, -0.005998114123940468, 0.049160491675138474, 0.025061164051294327, -0.0506833977997303, 0.01699243113398552, -0.021173743531107903, 5.019997479394078e-05, -0.04031694680452347, -0.0010319695575162768, 0.001925341202877462, -0.004395054653286934, 0.007006705738604069, 0.029923778027296066, -0.007434188388288021, 0.0034181904047727585, -0.0015287509886547923, 0.0518856942653656, -0.00032687385100871325, -0.012076381593942642, 0.01780731976032257, 0.023524899035692215, -0.02741231769323349, 0.012904629111289978, 0.030484847724437714, 0.02204206772148609, 0.0590994618833065, -0.03443906083703041, 0.02666422352194786, 0.0003897020942531526, 0.02245619148015976, 0.02069282718002796, 0.005313474219292402, -0.009438012726604939, -0.01048000156879425, 0.002180828945711255, 0.037752050906419754, -0.00029911252204328775, 0.03345050662755966, -0.003753830911591649, 0.03347722440958023, 0.00375717063434422, 0.02252298593521118, 0.01872907765209675, -0.006866438314318657, -0.02789323590695858, 0.006385520566254854, -0.040156640112400055, -0.013559211976826191, -0.009010530076920986, -0.011428478173911572, 0.0010712110670283437, -0.0004362492763902992, 0.014761506579816341, -0.04782461002469063, 0.024753911420702934, 0.010493360459804535, 0.006549166049808264, -0.014841658994555473, 0.030645154416561127, -0.020813055336475372, -0.019290149211883545, 0.017005790024995804, 0.004809178411960602, -0.00032729131635278463, -0.013058255426585674, -0.011254813522100449, 0.02101343870162964, 0.008021976798772812, 0.0007568611763417721, -0.012650811113417149, 0.040183357894420624, 0.04488566517829895, 0.018007701262831688, -0.012336879037320614, 0.012864552438259125, 0.004007648676633835, 0.02459360472857952, 0.016765329986810684, -0.004344959277659655, -0.00189361406955868, -0.001261574449017644, -0.007367394398897886, 0.02909553050994873, -0.0390879325568676, 0.010125992819666862, -0.028481023386120796, -0.012116458266973495, 0.010399848222732544, 0.020318780094385147, 0.037752050906419754, -0.025021087378263474, 0.04555360600352287, -0.018689002841711044, -0.004021007567644119, 0.009524845518171787, 0.012223328463733196, -0.004184653051197529, -0.020813055336475372, -0.008830185979604721, 0.017246248200535774, -0.05113760009407997, 0.02069282718002796, 0.024994369596242905, 0.015923723578453064, 0.003419860266149044, -0.00012336044164840132, -0.01553631853312254, 0.019744349643588066, -0.03342378884553909, 0.02221573330461979, -0.03467952087521553, -0.005260039120912552, 0.009104042313992977, -0.009170835837721825, 0.005864526145160198, -0.02411268651485443, 0.0029923778492957354, -0.027839800342917442, 0.018475260585546494, -0.010413207113742828, -0.008222359232604504, 0.022148938849568367, 0.018902743235230446, -0.010486681014299393, 0.010166069492697716, 0.03035126067698002, 0.015188989229500294, -0.0042380886152386665, -0.0578170120716095, -0.053996387869119644, -0.01771380752325058, -0.00818228255957365, -0.03449249640107155, -0.04285512492060661, -0.021307332441210747, -0.012457108125090599, 0.05022919923067093, 0.03566807508468628, 0.05159179866313934, -0.01672525331377983, -0.002426297403872013, 0.001280777738429606, -0.03008408285677433, 0.02146763913333416, -0.010132672265172005, 0.030271107330918312, -0.020666109398007393, 0.006038190796971321, 0.040878016501665115, 0.02791995368897915, -0.020492443814873695, 0.033824555575847626, 0.004765762481838465, -0.024339787662029266, 0.00491604907438159, -0.0024563546758145094, -0.014160359278321266, 0.022803520783782005, -0.013519135303795338, 0.020492443814873695, 0.03542761504650116, 0.0025481965858489275, 0.0006483206525444984, -0.009792021475732327, 0.006836380809545517, 0.02059931494295597, -0.008295833133161068, 0.019597401842474937, -0.044057417660951614, 0.011167981661856174, 0.004795819520950317, -0.05947350710630417, -0.014013411477208138, -0.034786392003297806, 0.02810697630047798, 0.005897922907024622, -0.012610734440386295, 0.02888178825378418, -0.0015379352262243629, 0.010065877810120583, -0.006251932121813297, 0.011361684650182724, -0.014280588366091251, -0.050095610320568085, 0.049641408026218414, 0.013893182389438152, -0.0025932826101779938, 0.010720460675656796, -0.01170901395380497, 0.037511590868234634, -0.0009802040876820683, 0.03644288703799248, -0.010426566004753113, -0.02743903547525406, -0.023832151666283607, -0.03644288703799248, 0.005610708147287369, -0.008876942098140717, 0.019811144098639488, 0.015549677424132824, -0.003626922145485878, -0.012563979253172874, 0.00941129494458437, 0.008810147643089294, 0.030137518420815468, -0.025194751098752022, -0.02368520386517048, -0.01888938434422016, -0.012002907693386078, -0.019984807819128036, 0.013986694626510143, 0.012938026338815689, -0.03609555587172508, -0.0383131206035614, -0.00589124346151948, 0.021841686218976974, -0.02221573330461979, -0.005814430303871632, 0.0037705295253545046, 0.014681353233754635, -0.022723369300365448, 0.009618356823921204, -0.01285119354724884, -0.012063022702932358, -0.03107263706624508, 0.022750087082386017, -0.007287241518497467, -0.07363386452198029, 0.004114519339054823, 0.04031694680452347, 0.00022918741160538048, 0.019143201410770416, 0.0031042578630149364, 0.04373680800199509, 0.043068867176771164, 0.017419913783669472, -0.04157267510890961, -0.03850014507770538, 0.019677555188536644, -0.026437122374773026, -0.0015304208500310779, 0.031126072630286217, -0.0056040287017822266, 0.0014118612743914127, 0.01768708974123001, -0.0028621291276067495, -0.009431333281099796, 0.004201351664960384, -0.022082144394516945, -0.030885612592101097, 0.017179453745484352, 0.025689028203487396, 0.018742436543107033, -0.0191565603017807, 0.036469604820013046, 0.0026049716398119926, -0.05995442718267441, 0.007106896955519915, -0.012991460971534252, -0.027465753257274628, 0.01585693098604679, 0.005567292217165232, 0.038206253200769424, 0.005103072617202997, 0.0009693500469438732, 0.016805406659841537, -0.00032165556331165135, 0.005547253880649805, 0.05557272955775261, 0.011147943325340748, 0.01687220111489296, 0.007527700159698725, -0.034091733396053314, 0.01939702033996582, -0.02789323590695858, 0.03294287249445915, 0.0014844998950138688, -0.010079236701130867, 0.01612410694360733, 0.03801922872662544, -0.03275584802031517, -0.02705162949860096, -0.007788197603076696, -0.0029840285424143076, 0.022603139281272888, -0.04154595732688904, 0.008115489035844803, -0.020826414227485657, -0.02284359745681286, -0.01262409333139658, 0.0038440031930804253, -0.024727193638682365, -0.008549651131033897, -0.001652320148423314, 0.023618409410119057, -0.019129842519760132, -0.003331358078867197, 0.02642376348376274, -0.0004032696597278118, 0.01281779631972313, 0.0542902834713459, 0.01517563033849001, 0.023043980821967125, 0.007494303397834301, -0.039168085902929306, -0.024874139577150345, 0.00963839516043663, 0.040156640112400055, -0.012730964459478855, 0.007527700159698725, 0.02486078068614006, 0.02762605808675289, 0.050603244453668594, 0.018929461017251015, -0.023939022794365883, -0.016792047768831253, 0.014414176344871521, 0.026196664199233055, 0.04729025438427925, -0.018248161301016808, 0.007781518157571554, -0.010947560891509056, 0.02890850603580475, -0.0106737045571208, 0.033610813319683075, -0.010206145234405994, -0.05282080918550491, -0.00488599156960845, -0.004682269413024187, 0.003292951500043273, -0.04827880859375, -0.011415119282901287, -0.019089767709374428, 0.0003665328840725124, -0.019717631861567497, 0.006659376434981823, -0.0038707207422703505, -0.006979988422244787, -0.014293947257101536, 0.011334966868162155, 0.010980957187712193, -0.00517320679500699, -0.007948503829538822, 0.038206253200769424, -0.007915106602013111, -0.02074626088142395, -0.02719857543706894, 0.012417031452059746, 0.00843610055744648, 0.007140294183045626, 0.05127118527889252, -0.011542028747498989, 0.010660345666110516, -2.6339332180214114e-05, -0.010326375253498554, 0.006986667867749929, 0.0011321607744321227, 0.01807449571788311, 0.01591036468744278, -0.010226183570921421, -0.0213474091142416, 0.0062886690720915794, -0.0019069728441536427, 0.028668047860264778, -0.029148966073989868, 0.03150011971592903, -0.017727166414260864, -0.008001938462257385, 0.012149855494499207, -0.04151923954486847, 0.030965765938162804, 0.05551929399371147, 0.00569754047319293, 0.009157477878034115, -0.026864605024456978, -0.01158878393471241, 0.020572597160935402, 0.026624146848917007, -0.002852109959349036, 0.018982896581292152, 0.049828432500362396, -0.02281687967479229, 0.0012156534940004349, 0.002209216356277466, -0.008409382775425911, 0.025675669312477112, 0.024660399183630943, -0.011855960823595524, 0.012924667447805405, 0.01689891889691353, 0.05819106101989746, 0.038713887333869934, 0.018742436543107033, -0.019864579662680626, 0.019944731146097183, 0.01600387692451477, -0.017700448632240295, -0.009170835837721825, -0.021066874265670776, 0.010914163663983345, -0.016858842223882675, -0.012283443473279476, 0.06193153187632561, 0.016164183616638184, -0.0005180721054784954, 0.029282553121447563, 0.015162271447479725, 0.010206145234405994, 0.009057286195456982, -0.001706590410321951, 0.012864552438259125, 0.035320743918418884, 0.020759619772434235, 0.026397045701742172, 0.010827330872416496, 0.01550960075110197, -0.02816041186451912, -0.0009401275892741978, 0.016711894422769547, 0.022202374413609505, 0.016591666266322136, 0.015482882969081402, -0.003082549897953868, 0.04584750160574913, 0.006318726111203432, 0.024540169164538383, 0.010687063448131084, -0.04908033832907677, 0.02861461229622364, 0.006151740904897451, 0.020198550075292587, 0.001840178738348186, -0.003653639694675803, 0.025769181549549103, 0.024673758074641228, 0.004087801557034254, 0.02462032251060009, 0.0017667051870375872, 0.0001249259221367538, -0.010045839473605156, -0.030912330374121666, -0.03005736507475376, 0.021547790616750717, 0.01609738916158676, -0.048893313854932785, 0.015068759210407734, 0.02401917427778244, -0.0682903379201889, -0.0291222482919693, 0.011328287422657013, -0.01041988655924797, 0.014147000387310982, 0.01502868253737688, 0.0030040666460990906, 0.058084189891815186, 0.010326375253498554, -0.02462032251060009, -0.041652828454971313, 0.04761086776852608, -0.005086374003440142, 0.002564895199611783, 0.008148886263370514, 0.01517563033849001, 0.0375383086502552, 0.008923698216676712, 0.013024858199059963, -0.01774052530527115, -0.014066847041249275, 0.0072404853999614716, 0.014895094558596611, -0.03727113455533981, -0.0028053540736436844, -0.05290096253156662, 0.018742436543107033, 0.019343584775924683, -0.011007674969732761, -0.008502895012497902, 0.017727166414260864, 0.03612227365374565, 0.002786985831335187, -0.02086649090051651, 0.03150011971592903, -0.029148966073989868, 0.0022526325192302465, -0.01313840877264738, -0.002284359885379672, -0.017152735963463783, 0.0036669985856860876, -0.016538230702280998, 0.009137439541518688, 0.01444089412689209, -0.05819106101989746, -0.01798098348081112, -0.019811144098639488, 0.01421379391103983, 0.007280562072992325, -0.014253870584070683, -0.0029840285424143076, 0.033824555575847626, -0.0063320850022137165, 0.0028203828260302544, -0.0006433111266233027, 0.003977591171860695, 0.012089740484952927, 0.005781033542007208, -0.019650837406516075, -0.014708071015775204, -0.02719857543706894, -0.0005159847787581384, 0.013352150097489357, 0.0013133399188518524, -0.007026744075119495, 0.021454280242323875, 0.015108835883438587, 0.011281531304121017, -0.008095450699329376, -0.04322917014360428, -0.00427816528826952, -0.016311129555106163, 0.022028708830475807, -0.018234802410006523, 0.01200958713889122, 0.0035968648735433817, 0.04103832319378853, 0.009344501420855522, -0.029309270903468132, 0.008830185979604721, -0.03462608531117439, 0.01684548333287239, 0.008482856675982475, 0.019316866993904114, 0.010940881446003914, 0.009544883854687214, -0.02437986247241497, 0.04699636250734329, -0.01193611416965723, 0.028694765642285347, 0.029255835339426994, -0.004785800352692604, -0.004411753267049789, 0.004632174037396908, 0.023351233452558517, 0.002840421162545681, -0.006281989626586437, 0.005437043495476246, 0.004411753267049789, -0.01858213171362877, 0.017647013068199158, 0.006966629531234503, 0.011208057403564453, -0.009491448290646076, -0.006001453846693039, -0.008923698216676712, 0.021961914375424385, -0.0025882732588797808, -0.003727113362401724, 0.016204260289669037, 0.023792074993252754, 0.011982869356870651, -0.02170809730887413, 0.0010369791416451335, -0.05124446749687195, -0.008482856675982475, 0.015135553665459156, -0.015616470947861671, 0.0016898919129744172, 0.00021008845942560583, -0.020732903853058815, -0.010600230656564236, -0.022402755916118622, -0.008716636337339878, 0.03256882727146149, 0.004815857857465744, 0.0034148506820201874, -0.03104591928422451, 0.002189178252592683, 0.008422741666436195, 0.08239725977182388, -0.019704272970557213, -0.009918930940330029, 0.02695811726152897, 0.02368520386517048, -0.017299683764576912, 0.018595490604639053, 0.04293527826666832, -0.014066847041249275, 0.01220329012721777, -0.06155748665332794, 0.035748228430747986, 0.033316921442747116, 0.03465280309319496, -0.032408520579338074, 0.00044251122744753957, -0.016377924010157585, 0.013285355642437935, 0.03598868474364281, 0.0032261572778224945, 0.014147000387310982, -0.03323676809668541, -0.007587815169245005, 0.0032294970005750656, -0.006562524940818548, -0.04435131326317787, 0.012771041132509708, -0.025021087378263474, 0.006175118964165449, 0.034572649747133255, -0.005694200750440359, 0.01927679032087326, -0.018395107239484787, -0.011789166368544102, -0.040610842406749725, -0.00619849655777216, -0.004318241495639086, -0.027706211432814598, 0.02705162949860096, 0.01966419629752636, 0.009965687058866024, 0.0032495351042598486, -0.011368364095687866, -0.006218534894287586, 0.033584095537662506, 0.04675590246915817, -0.004037706181406975, -0.0028771578799933195, 0.022175656631588936, -0.017900831997394562, 0.015750059857964516, -0.01550960075110197, -0.04958797246217728, -0.009090683422982693, -0.010079236701130867, 0.0039007782470434904, -0.0013066604733467102, -0.016658460721373558, -0.004428451880812645, -0.012904629111289978, 0.025595515966415405, 0.04459177330136299, -0.01279107853770256, -0.020131755620241165, 0.010800613090395927, -0.02005160227417946, 0.026517275720834732, -0.0017149397172033787, -0.010399848222732544, 0.020398931577801704, -0.0383131206035614, -0.011916075833141804, 0.023792074993252754, -0.013626005500555038, 0.00866320077329874, 0.03280928358435631, -0.021788250654935837, 0.012423710897564888, -0.00011688975791912526, -0.015188989229500294, -0.004882651846855879, 0.0006044870242476463, 0.005243340507149696, 0.04445818439126015, -0.025021087378263474, -0.013706158846616745, 0.022616498172283173, -0.0008345093810930848, 0.004431791603565216, 0.024660399183630943, 0.010219504125416279, -0.0013333781389519572, 0.025421852245926857, 0.016645101830363274, 0.0028838373254984617, -0.0007176196086220443, -0.011682296171784401, -0.05113760009407997, 0.007667968049645424, 0.006275310181081295, -0.006782945711165667, -0.01684548333287239, 0.012250046245753765, 0.022509627044200897, -0.030511565506458282, -0.0027736269403249025, -0.01048000156879425, -0.01795426569879055, 0.023698562756180763, 0.010466642677783966, 0.0004516954068094492, -0.03232836723327637, 0.008422741666436195, -0.006545826327055693, -0.013646043837070465, 0.01382638793438673, 0.0020038243383169174, -0.06535138934850693, 0.012637452222406864, -0.006585903000086546, -0.009584959596395493, -0.0038707207422703505, -0.008315871469676495, 0.00307420059107244, -0.0009885533945634961, 0.03914136812090874, -0.008890300989151001, 0.032889436930418015, 0.011602142825722694, 0.001246545696631074, -0.013218561187386513, 0.012584016658365726, -0.002703492995351553, 0.03080545924603939, -0.008255756460130215, 0.02098672091960907, -0.008262435905635357, -0.006001453846693039, -0.009611677378416061, 0.030458129942417145, 6.736815703334287e-05, 0.00804869458079338, -0.008402703329920769, -0.013893182389438152, -0.04277497157454491, 0.028080258518457413, -0.0018652265425771475, -0.010473322123289108, 0.024847421795129776, -0.03005736507475376, 0.013866464607417583, 0.021414203569293022, 0.00027886556927114725, 0.014187077060341835, 0.0018735758494585752, -0.016912277787923813, 0.021935198456048965, -0.018381748348474503, 0.021400844678282738, -9.048519132193178e-05, 0.01466799434274435, 0.017753884196281433, -0.051084164530038834, -0.015108835883438587, 0.027305446565151215, -0.003937514964491129, -0.006038190796971321, 0.008402703329920769, -0.0119628319516778, -0.008282474242150784, -0.01985122077167034, -0.021881762892007828, -0.0042046913877129555, 0.03860701620578766, -0.030484847724437714, -0.007053461857140064, 0.020465726032853127, -0.014467611908912659, -0.0030575019773095846, 0.03972915932536125, -0.028561176732182503, -0.011468554846942425, -0.0019270110642537475, -0.002564895199611783, -0.0066760750487446785, -0.010366451926529408, -0.011415119282901287, -0.021868404000997543, 0.03355737775564194, -0.015456165187060833, 0.018835948780179024, -0.006899835076183081, 0.020853132009506226, -0.01363268494606018, 0.012022946029901505, -0.007547738496214151, 0.021895121783018112, 0.02005160227417946, 0.007086859084665775, -0.0004496081091929227, -0.0167519710958004, 0.001943709678016603, 0.003887419356033206, -0.021654661744832993, -0.030484847724437714, -0.03713754564523697, 0.009985724464058876, 0.0014652966056019068, -0.0016807076754048467, 0.012376955710351467, 0.03155355527997017, -0.0053836083970963955, 0.038954347372055054, -0.0077280825935304165, 0.008249077014625072, -0.019196636974811554, -0.018141290172934532, 0.03387799113988876, -0.014814941212534904, -0.040637560188770294, 0.023351233452558517, -0.0004696463292930275, 0.02536841668188572, -0.02021190896630287, -0.03080545924603939, 0.024940934032201767, 0.014681353233754635, 0.017406554892659187, 0.020131755620241165, -0.02861461229622364, 0.00631204666569829, 0.0007576961070299149, -0.01903633214533329, 0.018862666562199593, -0.004508604761213064, 0.022923750802874565, -0.0487062931060791, 0.016524871811270714, 0.016043953597545624, -0.022055426612496376, -0.010493360459804535, -0.0025782540906220675, -0.011615501716732979, 0.03339707478880882, 0.00684639997780323, 0.009551563300192356, 0.007774838712066412, -0.04680933803319931, 0.014454253017902374, -0.023231003433465958, 0.0003663241514004767, -0.02228252775967121, 0.00963839516043663, -0.005417005158960819, -0.010646986775100231, 4.607752271112986e-05, -0.012857872992753983, -0.033103179186582565, 0.03689708560705185, -0.012998140417039394, -0.0020221928134560585, -0.01780731976032257, 0.02062603272497654, 0.006913193967193365, 0.004882651846855879, 0.047958195209503174, -0.0185554139316082, -0.05648113042116165, -0.0713895857334137, 0.032168060541152954, 0.0034148506820201874, 0.009972365573048592, 0.009564921259880066, -0.015362653881311417, -0.037431441247463226, 0.017647013068199158, 0.0410650409758091, -0.006305367220193148, 0.007774838712066412, 0.023498181253671646, -0.011021033860743046, 0.01660502515733242, 0.016671819612383842, -0.009297745302319527, -0.00041495863115414977, -0.007507661823183298, -0.03451921418309212, 0.0211336687207222, 0.027305446565151215, 0.018501978367567062, 0.04336275905370712, 0.008830185979604721, 0.03497341647744179, -0.010580192320048809, 0.024272993206977844, 0.021040156483650208, -0.016524871811270714, 0.030965765938162804, -0.006011473014950752, -0.003810605965554714, 0.007033423520624638, -0.004815857857465744, 0.03609555587172508, -0.002322766464203596, 0.009765303693711758, -0.012784400023519993, 0.025475287809967995, 0.0027085025794804096, 0.019437097012996674, -0.018301596865057945, 0.018395107239484787, 0.001291631837375462, -0.02245619148015976, -0.05116431415081024, -0.0008758382173255086, 0.022015349939465523, -0.01408020593225956, -0.009731907397508621, -0.016658460721373558, 0.010920843109488487, 0.008155564777553082, -0.004819197580218315, -0.001242371159605682, -0.039889462292194366, 0.02789323590695858, -0.0051765465177595615, 0.036282580345869064, -0.0057710143737494946, -0.020064961165189743, 0.0024713834282010794, 0.03588181361556053, -0.01663174293935299, 0.048893313854932785, -0.03438562527298927, 0.004017667844891548, 0.02026534453034401, 0.015750059857964516, -0.0021724796388298273, 0.005797731690108776, -0.019356943666934967, -0.011054431088268757, 0.024727193638682365, 0.01888938434422016, 0.03077874332666397, 0.021334050223231316, 0.04216046631336212, 0.012109778821468353, 0.02284359745681286, 0.01100099552422762, 0.030377978459000587, -0.002680115168914199, 0.021480998024344444, -0.05477119982242584, -0.011655578389763832, 0.0426948182284832, -0.018608849495649338, 0.004124538507312536, -0.04416428878903389, 0.01999816671013832, -0.024753911420702934, 0.0019320206483826041, 0.014841658994555473, -0.006138382013887167, -0.011468554846942425, 0.04047725349664688, -0.0011547037865966558, -0.01795426569879055, -0.009551563300192356, 0.011755770072340965, 0.014347382821142673, 0.028240565210580826, -0.004021007567644119, 0.0009209242998622358, -0.020078320056200027, 0.00862980354577303, -0.042828407138586044, 0.021334050223231316, -0.007701364811509848, -0.014855017885565758, 0.009210912510752678, 0.026731017976999283, -0.05487807095050812, -0.013746235519647598, -0.03783220425248146, 0.02002488449215889, -0.015830213204026222, 0.0059446790255606174, -0.0006466508493758738, 0.014721429906785488]], "input": ["# Mobility Aid and Flight Aid Services\n\nThe community focuses on the provision of mobility aid services, particularly in the context of air travel. Key entities include EL AL, which provides services for passengers with mobility aids, and the broader category of flight aid that encompasses assistance for passengers with mobility challenges.\n\n## EL AL's commitment to mobility aid services\n\nEL AL plays a crucial role in this community by providing specialized services for passengers traveling with mobility aids. This commitment is vital for ensuring that individuals with mobility challenges can travel safely and comfortably. The relationship between EL AL and mobility aid services highlights the airline's dedication to inclusivity and accessibility in air travel. [Data: Entities (426); Relationships (50)]\n\n## Integration of mobility aids in flight aid services\n\nThe concept of flight aid encompasses various forms of assistance provided to passengers with mobility challenges, including the transport of mobility aids. This integration is essential for ensuring that passengers can travel without facing barriers related to their mobility needs. The relationship between flight aid and mobility aid services underscores the importance of comprehensive support for travelers with disabilities. [Data: Entities (424, 426); Relationships (452)]\n\n## Importance of accessibility in air travel\n\nAccessibility in air travel is a significant concern for many passengers, particularly those with mobility challenges. The services provided by EL AL and the broader flight aid category are critical in addressing these concerns, ensuring that all passengers have equal access to air travel. This focus on accessibility can enhance the reputation of airlines and improve customer satisfaction among travelers with disabilities. [Data: Entities (424, 426); Relationships (50, 452)]\n\n## Potential challenges in mobility aid services\n\nWhile the provision of mobility aid services is essential, there can be challenges in ensuring that these services are consistently available and effective. Issues such as staff training, equipment availability, and communication with passengers can impact the quality of service provided. Addressing these challenges is crucial for maintaining high standards of care for passengers with mobility needs. [Data: Entities (426); Relationships (50)]", "# Checked Baggage and EL AL Airlines\n\nThe community focuses on the policies and regulations surrounding checked baggage, particularly in relation to EL AL Airlines. Key entities include various types of checked baggage, associated fees, and specific guidelines for transporting items such as pets and sporting equipment. The relationships highlight how these entities interact within the context of air travel.\n\n## EL AL's comprehensive baggage policies\n\nEL AL Airlines has established detailed guidelines for checked baggage, which include specific provisions for transporting animals and sporting equipment. These policies are crucial for ensuring compliance with safety regulations and customer satisfaction. The airline's baggage policy is comparable to that of Sundor, indicating a competitive landscape in terms of baggage handling and customer service. This relationship emphasizes the importance of clear communication regarding baggage allowances and restrictions to avoid misunderstandings and potential disputes. [Data: Entities (5, 194); Relationships (11, 109)]\n\n## Checked baggage fees and allowances\n\nThe fees associated with checked baggage, such as the $90 charge for additional pieces, play a significant role in the overall travel experience. Passengers must be aware of these fees to avoid unexpected costs at the airport. The relationship between checked baggage and baggage allowance is critical, as it defines the limits and requirements for travelers. Understanding these fees and allowances can help passengers plan their travel more effectively and avoid excess baggage charges. [Data: Entities (336, 358); Relationships (104, 90)]\n\n## Transporting pets as checked baggage\n\nPets can be transported as checked baggage under specific conditions, which is an important consideration for travelers with animals. The guidelines for pet transportation include size and weight restrictions, ensuring the safety and comfort of the animals during travel. This aspect of checked baggage policy is vital for maintaining customer trust and satisfaction, as pet owners often seek airlines that provide clear and humane transportation options for their pets. [Data: Entities (5, 69); Relationships (69)]\n\n## Special provisions for sporting equipment\n\nSporting equipment, such as snowboard and ski gear, can be included in checked baggage under certain conditions. This flexibility is essential for travelers who engage in sports and outdoor activities, as it allows them to bring necessary equipment without incurring excessive fees. The relationship between checked baggage and sporting equipment highlights the need for airlines to accommodate diverse passenger needs while maintaining operational efficiency. [Data: Entities (186, 91); Relationships (88, 92)]\n\n## Excess baggage and its implications\n\nExcess baggage refers to any checked baggage that exceeds the allowed limits, which incurs additional fees. This aspect of baggage policy can significantly impact the travel experience, as passengers may face unexpected costs if they are not aware of the limitations. The relationship between checked baggage and excess baggage charges underscores the importance of clear communication and adherence to regulations to minimize customer dissatisfaction. [Data: Entities (349); Relationships (101)]", "# Excess Baggage Charges and Currency Implications\n\nThis community focuses on the dynamics surrounding excess baggage charges, particularly how these charges are influenced by the type of baggage, the applicable fees, and the currencies used for payment. The entities are interconnected through relationships that define the conditions under which excess baggage fees apply and the currencies accepted for these payments.\n\n## Excess baggage charges are a significant financial consideration for travelers\n\nExcess baggage charges are fees imposed on passengers when their luggage exceeds the permitted size and weight dimensions. This can lead to unexpected costs for travelers, especially if they are unaware of the limits. The financial burden can vary significantly based on the type of baggage and the specific airline policies. Understanding these charges is crucial for travelers to avoid surprises at the airport. [Data: Entities (183); Relationships (90, 305)]\n\n## Specific fees for transporting sporting equipment\n\nThe fee of 70 USD for transporting sports equipment one way to Europe, the Middle East, and Morocco highlights the additional costs associated with specific types of baggage. This fee is particularly relevant for travelers who engage in sports and may not be aware of the extra charges that apply to their equipment. The relationship between sporting equipment and excess baggage charges indicates that travelers should plan accordingly to avoid incurring these fees. [Data: Entities (180); Relationships (302)]\n\n## US Dollars as the standard currency for baggage fees\n\nUS Dollars are the primary currency used for displaying prices related to excess baggage fees. This standardization simplifies the pricing structure for international travelers, but it also means that travelers must be aware of potential currency conversion issues when paying at different airports. The reliance on US Dollars can create confusion for travelers who may need to pay in local currency at certain locations. [Data: Entities (182); Relationships (329, 330)]\n\n## Local currency requirements at specific airports\n\nAt some airports, payment for excess baggage charges is only accepted in local currency, which can complicate the payment process for travelers. This requirement emphasizes the importance of being informed about the payment methods accepted at the airport of departure or arrival. Travelers may need to exchange currency or use local payment methods, which can lead to additional costs or delays. [Data: Entities (185); Relationships (331, 332)]\n\n## Interconnectedness of baggage fees and payment methods\n\nThe relationships between excess baggage charges, specific fees, and the currencies used for payment illustrate a complex web of financial implications for travelers. Understanding how these elements interact is essential for effective travel planning. Travelers must be aware of the potential for additional charges based on baggage type and the currency requirements at their destination. [Data: Relationships (90, 305, 331)]", "# Bicycle Transport Regulations and Approval Process\n\nThis community focuses on the regulations and processes surrounding the transport of bicycles as checked baggage, highlighting the roles of the EL AL call center, packing regulations, and exceptional cases for transport approval.\n\n## Bicycle transport as checked baggage\n\nBicycles can be transported instead of regular checked baggage if they meet specific size and weight dimensions. This regulation is crucial for travelers who wish to bring their bicycles along, ensuring that they comply with airline policies. The ability to transport bicycles can enhance travel experiences for cycling enthusiasts, but it also requires adherence to strict guidelines to prevent issues during travel. [Data: Entities (187); Relationships (93)]\n\n## Role of the EL AL call center\n\nThe EL AL call center is responsible for pre-approving the transport of bicycles and other special items. This entity plays a critical role in the approval process, ensuring that all necessary guidelines are followed before a bicycle can be transported. The call center's involvement is essential for managing requests and providing travelers with the information they need to comply with transport regulations. [Data: Entities (189); Relationships (333)]\n\n## Importance of packing regulations\n\nSpecific guidelines must be followed when packing bicycles for transport to prevent damage and ensure safety. These packing regulations are vital for protecting bicycles during transit, as improper packing can lead to damage and potential liability issues for the airline. Travelers must be aware of these regulations to ensure their bicycles arrive safely at their destination. [Data: Entities (191); Relationships (334)]\n\n## Prohibition of motorized bicycles\n\nMotorized bicycles are not allowed to be transported as checked baggage. This regulation is significant as it helps maintain safety and compliance with airline policies. Travelers need to be informed about this prohibition to avoid complications during their travel plans. Understanding this rule is essential for those who may consider bringing a motorized bicycle along on their journey. [Data: Entities (192); Relationships (335)]\n\n## Exceptional cases for transport approval\n\nTransport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division. This provision offers flexibility for unique situations where standard regulations may not apply. However, it also requires travelers to navigate additional approval processes, which can complicate travel plans. Awareness of these exceptional cases is important for travelers who may have specific needs regarding bicycle transport. [Data: Entities (193); Relationships (336)]", "# Ski Equipment and Transport Policies\n\nThe community focuses on the relationship between ski equipment, transport policies, and fare classes. Key entities include ski and snowboarding equipment, complimentary transport policies, and fare classes that affect the transport of these items.\n\n## Ski Equipment's Transport Conditions\n\nSki equipment is subject to specific transport conditions, which can affect travelers' experiences. The relationship between ski equipment and checked baggage indicates that while it can be included in checked baggage, there are conditions that must be met. This can lead to confusion among travelers who may not be aware of these requirements, potentially resulting in additional fees or denied boarding if conditions are not met. [Data: Entities (179), Relationships (91)]\n\n## Complimentary Transport Policy\n\nThe complimentary transport policy allows for certain sports equipment, including ski equipment, to be transported without additional fees under specified conditions. This policy is crucial for travelers who wish to avoid extra charges, making it an important aspect of the community. However, the effectiveness of this policy relies on clear communication from airlines to ensure that travelers understand the conditions under which complimentary transport applies. [Data: Entities (177), Relationships (325)]\n\n## Impact of Lite Fare Ticket on Equipment Transport\n\nThe Lite Fare Ticket class does not allow for additional baggage such as ski and snowboard equipment without extra charges. This limitation can significantly impact travelers who are skiing or snowboarding, as they may need to pay additional fees or choose a different fare class. Understanding this relationship is essential for travelers to make informed decisions about their travel plans and budget accordingly. [Data: Entities (188), Relationships (326)]\n\n## Snowboarding Equipment and Transport Policies\n\nSimilar to ski equipment, snowboarding equipment may also qualify for complimentary transport under specific conditions. This relationship highlights the importance of understanding transport policies for both skiing and snowboarding enthusiasts. Travelers should be aware of the conditions that apply to both types of equipment to avoid unexpected fees and ensure a smooth travel experience. [Data: Entities (176), Relationships (324)]", "# Sundor Airline Baggage Policies\n\nThe community centers around Sundor, an airline with specific baggage policies, including guidelines for overweight and oversized baggage. Key entities include dimensions for baggage, call center operations for approvals, and the classification of sports equipment as overweight baggage, all of which are interconnected in managing passenger baggage effectively.\n\n## Sundor's specific baggage policies\n\nSundor has established specific policies regarding checked baggage allowances, which are crucial for managing passenger expectations and operational efficiency. These policies dictate the maximum dimensions and weight limits for baggage, ensuring compliance with airline regulations. The clarity and enforcement of these policies are essential to prevent disputes at check-in and during travel. Sundor's guidelines for overweight baggage, which require special handling and may incur additional fees, are particularly important for passengers traveling with sports equipment. [Data: Entities (329), Relationships (109, 322, 404)]\n\n## The role of dimensions in baggage classification\n\nDimensions play a critical role in determining whether baggage is classified as standard, oversized, or overweight. For instance, the maximum dimension limit for transporting sports equipment is set at 277 cm, which is essential for compliance with airline policies. This relationship between dimensions and baggage classification helps streamline the check-in process and ensures that passengers are aware of the requirements before arriving at the airport. Misunderstandings regarding these dimensions can lead to delays and additional charges, impacting customer satisfaction. [Data: Entities (277 CM, DIMENSIONS), Relationships (96, 319, 315)]\n\n## Overweight baggage and its implications\n\nOverweight baggage is defined as luggage that exceeds the weight limits established by airlines, necessitating special approval for transport. Sundor's specific guidelines for handling overweight baggage are crucial for maintaining operational efficiency and customer satisfaction. Passengers must be informed about the potential for additional fees and the need for call center approval to transport such baggage. This process is vital for ensuring compliance with airline policies and preventing disputes at check-in. [Data: Entities (OVERWEIGHT BAGGAGE), Relationships (304, 320, 322)]\n\n## The importance of call center operations\n\nThe call center serves as a critical point of contact for passengers seeking approval for transporting overweight baggage. This operational aspect is essential for ensuring compliance with Sundor's baggage policies and providing timely assistance to travelers. The effectiveness of the call center can significantly impact customer experience, especially for those with special baggage needs. Ensuring that the call center is well-staffed and knowledgeable about baggage policies is crucial for minimizing delays and enhancing passenger satisfaction. [Data: Entities (CALL CENTER), Relationships (318, 320)]\n\n## Interrelationship between overweight and oversized baggage\n\nOverweight baggage and oversized baggage are closely related categories that require special handling due to their size and weight. Both types of baggage may incur additional fees, and understanding the distinctions between them is vital for passengers. Sundor's policies must clearly communicate these differences to avoid confusion and ensure that travelers are prepared for potential charges. This relationship highlights the importance of effective baggage management systems in maintaining operational efficiency and customer satisfaction. [Data: Entities (OVERSIZED BAGGAGE), Relationships (321, 402)]", "# Air Travel Classes and Sporting Equipment Transport\n\nThis community encompasses various travel classes offered by airlines, specifically focusing on the transport of sporting equipment. The entities are interconnected through their baggage policies and weight restrictions, which are crucial for passengers traveling with sports gear. The relationships highlight the specific allowances and fees associated with each travel class, impacting travelers' experiences.\n\n## Business Class offers the most accommodating baggage policies\n\nBusiness Class provides significant advantages for passengers transporting sporting equipment, allowing for two checked bags each weighing up to 32 kg. This generous allowance is particularly beneficial for athletes and sports enthusiasts who often travel with heavy or oversized gear. The relationship between Business Class and sporting equipment is crucial, as it ensures that travelers can manage their luggage needs effectively without incurring excessive fees. This is supported by the relationship indicating that EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each [Data: Relationships (37)].\n\n## Premium Class has enhanced but limited baggage allowances\n\nPremium Class offers a balance between cost and service, allowing passengers to check two pieces of baggage weighing up to 23 kg each. This class also permits the transport of sporting equipment under specific conditions, making it a viable option for travelers who need to bring sports gear without the higher costs associated with Business Class. The relationship between Premium Class and sporting equipment highlights the importance of understanding the specific weight and size restrictions that apply, which can affect the overall travel experience [Data: Relationships (36, 295)].\n\n## Economy Class provides basic options for sporting equipment transport\n\nEconomy Class is designed for budget-conscious travelers, allowing for the transport of sporting equipment under certain conditions. Passengers can check up to two pieces of baggage weighing a maximum of 30 kg each, but they must adhere to specific size and weight restrictions. This class is particularly relevant for travelers who may not require extensive baggage allowances but still wish to bring their sports gear. The relationship between Economy Class and sporting equipment emphasizes the need for travelers to be aware of the limitations imposed by this class [Data: Relationships (306, 295)].\n\n## Weight restrictions are critical for all travel classes\n\nWeight is a significant factor in the transportation of sporting equipment across all travel classes. Each class has specific weight limits that determine whether items can be transported as checked baggage or if they incur additional fees. For instance, sporting equipment exceeding the weight limits can be classified as overweight baggage, leading to extra charges. Understanding these weight restrictions is essential for travelers to avoid unexpected costs and ensure compliance with airline policies [Data: Relationships (143, 304)].\n\n## The EL AL Cargo Division offers specialized services for excess baggage\n\nThe EL AL Cargo Division caters to passengers needing to transport excess baggage, particularly those traveling with more than five pieces of checked baggage. This division is crucial for athletes and sports enthusiasts who may require additional services for oversized or special equipment. The relationship between the Cargo Division and sporting equipment indicates that it provides tailored solutions for transporting gear that exceeds standard baggage allowances, ensuring that passengers can manage their luggage needs effectively [Data: Relationships (108, 299)].", "# Air Travel Baggage Policies Community\n\nThis community encompasses various entities related to air travel baggage policies, including carry-on baggage, checked luggage, and associated airline regulations. The relationships among these entities highlight the complexities of baggage management for passengers, particularly in relation to different classes of service and specific airline policies.\n\n## Carry-on baggage as a central concept\n\nCarry-on baggage is a crucial aspect of air travel, representing the personal items passengers can bring into the cabin. This concept is central to the community, as it connects various entities, including airlines, baggage types, and passenger classes. The regulations surrounding carry-on baggage can significantly affect the travel experience, as they dictate what items can be brought on board and the associated limitations. For instance, different airlines like EL AL and Sun Dor have specific policies regarding carry-on baggage, which can lead to confusion among passengers if not clearly communicated [Data: Entities (267, 269); Relationships (29, 368)].\n\n## Diverse baggage policies across classes\n\nThe community illustrates how baggage policies vary across different classes of service, such as Economy, Business, and Premium Class. Each class has specific allowances for carry-on baggage, which can lead to disparities in passenger experiences. For example, Economy Class passengers have defined carry-on allowances that differ from those in Business or Premium Class, potentially causing dissatisfaction among travelers who may not be aware of these distinctions. This complexity necessitates clear communication from airlines to ensure passengers understand their rights and limitations regarding baggage [Data: Relationships (308, 314, 312)].\n\n## Importance of weight and dimensions\n\nWeight and dimensions are critical factors in determining the eligibility of carry-on baggage. Airlines enforce strict regulations regarding the maximum weight and size of carry-on items to ensure safety and compliance with cabin space limitations. Passengers must be aware of these restrictions to avoid issues at boarding, which can lead to delays or additional fees. The relationship between carry-on baggage and its maximum weight and dimensions highlights the need for travelers to be informed about these policies before their flights [Data: Relationships (146, 316, 377, 376)].\n\n## Role of booking management in baggage policies\n\nBooking management systems play a vital role in informing passengers about their carry-on baggage allowances and policies. These systems allow travelers to manage their bookings and check specific baggage regulations, which is essential for a smooth travel experience. By providing clear information on baggage policies during the booking process, airlines can help reduce confusion and enhance customer satisfaction. This relationship emphasizes the importance of integrating baggage policy information into booking management tools [Data: Relationships (373, 272)].\n\n## Checked luggage as an alternative\n\nChecked luggage serves as an alternative to carry-on baggage, catering to passengers who need to transport larger items. Understanding the differences between carry-on and checked luggage is essential for travelers, as each type has its own set of regulations and limitations. The relationship between carry-on baggage and checked luggage highlights the need for passengers to make informed decisions about their luggage options based on their travel needs and the specific policies of the airline they are flying with [Data: Relationships (370, 378)].", "# El Al Carry-On Bag Regulations\n\nThe community focuses on the regulations and specifications surrounding carry-on bags for El Al flights, detailing the dimensions, weight limits, and special considerations for oversized items. The entities are interconnected through specific policies and guidelines that govern the transport of luggage on El Al flights.\n\n## El Al's carry-on bag policies\n\nEl Al has established specific policies regarding the dimensions and weight limits for carry-on bags, which are crucial for ensuring compliance and passenger satisfaction. The maximum dimensions for a carry-on bag are set at 115 cm in total, with specific limits for length (56 cm), width (45 cm), and depth (25 cm). Additionally, the weight limit for a single carry-on bag is 16 kg, while the combined weight for multiple bags is capped at 20 kg. These regulations are designed to optimize cabin space and ensure safety during flights [Data: Relationships (31, 382, 384, 390, 397, +more)].\n\n## Oversized items require special arrangements\n\nOversized items, such as musical instruments, necessitate prior coordination with El Al and may require an extra seat for transport. Passengers are advised to contact the service center to obtain approval for carrying oversized items, which highlights the importance of communication between the airline and its customers. This process is essential to avoid last-minute complications at the airport and ensure a smooth travel experience [Data: Entities (300, 302); Relationships (398, 400)].\n\n## Emergency exit row storage policies\n\nPassengers seated in the emergency exit row have specific privileges regarding the storage of carry-on bags in overhead compartments. This policy allows for more efficient use of cabin space, but it also requires passengers to be aware of their responsibilities in case of an emergency. The relationship between the carry-on bag regulations and the emergency exit row underscores the need for passengers to understand the implications of their seating choices [Data: Relationships (399)].\n\n## Weight and dimension limits impact passenger experience\n\nThe strict weight and dimension limits for carry-on bags can significantly impact the passenger experience, particularly for those traveling with multiple items or larger luggage. Passengers must plan their packing carefully to avoid additional fees or the inconvenience of having to check bags at the last minute. This aspect of the regulations can lead to frustration and dissatisfaction among travelers if not adequately communicated [Data: Relationships (31, 382, 384)].\n\n## Coordination with the service center is essential\n\nEl Al's service center plays a critical role in managing the transport of unusual or oversized items. Passengers are required to coordinate with this center to ensure that their items can be accommodated on their flights. This requirement emphasizes the importance of proactive communication and planning for travelers who may have special luggage needs [Data: Entities (302); Relationships (400)].", "# Air Travel Baggage Regulations\n\nThe community focuses on the regulations surrounding personal bags and carry-on items for air travel, detailing the relationships between different types of bags and their specifications, particularly in the context of El Al airline policies.\n\n## El Al's personal bag policy\n\nEl Al allows passengers to bring a personal bag on board, subject to specific size restrictions. This policy is crucial for passengers to understand as it directly affects their travel experience. The relationship between El Al and the personal bag highlights the airline's commitment to maintaining order and compliance with baggage regulations. Passengers must adhere to these guidelines to avoid complications during boarding. [Data: Relationships (30)]\n\n## Definition and importance of personal bags\n\nA personal bag is defined as a type of bag that passengers can bring on board, including backpacks and laptop bags. Understanding what constitutes a personal bag is essential for travelers, as it helps them pack appropriately and avoid excess baggage fees. The classification of personal bags is significant in the context of air travel, as it allows for a more organized boarding process and ensures that passengers are aware of their allowances. [Data: Entities (292, 291); Relationships (391)]\n\n## Size restrictions for personal bags\n\nThe maximum dimensions for a personal bag are specified as 18 cm in height, 38 cm in width, and 30 cm in depth. These restrictions are critical for passengers to know, as exceeding these dimensions could result in the bag being denied at the gate. The relationship between the personal bag and its size specifications emphasizes the importance of compliance with airline policies to ensure a smooth travel experience. [Data: Entities (297); Relationships (393)]\n\n## Relationship between bags and duty-free items\n\nDuty-free items are products that can be purchased at the airport and carried on board without counting towards the baggage allowance. This relationship is important for travelers who wish to take advantage of duty-free shopping while ensuring they remain within their baggage limits. Understanding how duty-free items fit into the overall baggage policy can help passengers make informed decisions about their purchases and packing. [Data: Entities (299); Relationships (392)]\n\n## Classification of carry-on bags\n\nA carry-on bag is a type of bag that must meet specific weight and dimension limits. This classification is essential for passengers to understand, as it differentiates between various types of bags they can bring on board. The relationship between carry-on bags and other types of bags, such as personal bags, helps clarify the rules and ensures that passengers are aware of their allowances. [Data: Relationships (390)]", "# Airline Baggage Weight Regulations\n\nThis community focuses on the regulations surrounding the maximum allowable weights for carry-on bags and personal items as defined by airline policies. The entities are interconnected through their definitions and relationships regarding weight limits for baggage.\n\n## Maximum Weight as a central concept\n\nThe term 'Maximum Weight' is a critical entity in this community, representing the heaviest allowable weight for carry-on bags and personal items when boarding. This concept is foundational for understanding airline baggage policies and is referenced in multiple relationships that define specific weight limits for different types of bags. The implications of this entity are significant, as exceeding the maximum weight can lead to additional fees or denied boarding, impacting passenger experience and airline operations. [Data: Entities (289); Relationships (377, 381, 383)]\n\n## Specific weight limits for carry-on bags\n\nThe entities '16 KG' and '20 KG' specify the maximum weight limits for individual carry-on bags and the total weight for all bags, respectively. The '16 KG' limit is particularly important as it is the standard for a single carry-on bag, while '20 KG' encompasses the total weight allowed for all carry-on items. These weight limits are crucial for passengers to understand to avoid penalties and ensure compliance with airline policies. The relationships between these entities and the 'Maximum Weight' highlight their importance in the overall baggage regulation framework. [Data: Entities (279, 280); Relationships (382, 384)]\n\n## Bags as a category of items\n\nThe entity 'BAGS' encompasses all items used to carry personal belongings during travel, which are subject to specific weight limits imposed by airlines. This entity serves as a broader category that includes both personal items and carry-on bags, linking it to the weight regulations. Understanding this category is essential for passengers as it informs them about what constitutes carry-on baggage and the associated weight restrictions. The relationships connecting 'BAGS' to both '16 KG' and '20 KG' further emphasize the importance of these weight limits in the context of airline travel. [Data: Entities (278); Relationships (288, 379, 380)]\n\n## Interconnectedness of weight regulations\n\nThe relationships among the entities illustrate a complex web of interconnected weight regulations that govern airline baggage policies. Each entity contributes to a comprehensive understanding of what is permissible when traveling, and how these regulations are enforced. The overlapping relationships indicate that changes in one area, such as the maximum weight for a single bag, can have cascading effects on overall baggage policies and passenger compliance. This interconnectedness is vital for airlines to manage effectively to ensure smooth operations and customer satisfaction. [Data: Relationships (377, 382, 384, 288, 381)]", "# Baggage Policies and Services of EL AL\n\nThe community focuses on the baggage policies and services offered by EL AL, including various ticket types and their associated baggage allowances and excess baggage rates. The relationships among these entities highlight the complexity of baggage management in air travel.\n\n## Baggage Allowance as a central concept\n\nBaggage allowance is a key concept in air travel, determining how many bags a passenger can check in without incurring additional fees. This allowance is influenced by the ticket type purchased, which is crucial for passengers to understand their rights and responsibilities when traveling. The relationship between baggage allowance and ticket types is significant, as it directly affects customer experience and satisfaction. [Data: Entities (333), Relationships (44, 413, 410)]\n\n## Diverse ticket options with varying baggage policies\n\nEL AL offers various ticket types, including Lite Service, Classic Service, and Flex Service, each with different baggage allowances. Lite Service requires an additional fee for checked baggage, while Classic and Flex Services include one piece of checked baggage in the ticket price. This diversity allows passengers to choose options that best fit their travel needs but can also lead to confusion regarding baggage policies. [Data: Entities (330, 331, 332), Relationships (405, 406, 407)]\n\n## Excess baggage rates and their implications\n\nExcess baggage rates apply when passengers exceed their baggage allowance, creating a direct financial impact on travelers. These rates can vary and are often displayed in US dollars or local currency, which adds another layer of complexity for international travelers. Understanding these rates is essential for passengers to avoid unexpected fees at the airport. [Data: Entities (362), Relationships (412, 330, 332)]\n\n## The role of flight segments in baggage policies\n\nBaggage allowance is specified for each flight segment, which means that passengers must be aware of the rules for each leg of their journey. This can lead to complications if passengers are not informed about the specific baggage policies for connecting flights, potentially resulting in additional fees or denied boarding. [Data: Entities (352), Relationships (409)]\n\n## Interconnectedness of baggage policies and ticket types\n\nThe relationships between baggage allowance, ticket types, and excess baggage rates illustrate a complex web of policies that can significantly affect passenger experience. For instance, passengers purchasing Lite Tickets must be aware that they do not include any baggage allowance, which can lead to confusion and dissatisfaction if not clearly communicated. [Data: Relationships (411, 210)]", "# Flight Ticket and Baggage Management\n\nThe community centers around the processes and services related to flight tickets, baggage allowances, and the management of travel bookings. Key entities include flight tickets, additional baggage options, and online booking management services, all of which are interconnected to facilitate passenger travel.\n\n## Importance of Flight Tickets\n\nFlight tickets are essential documents for passengers, confirming their reservations and detailing important travel information. They serve as the foundation for all other services in this community, including baggage allowances and booking management. The relationship between flight tickets and baggage allowances is critical, as the ticket specifies what is included in the passenger's travel package. Issues with flight tickets can lead to significant disruptions in travel plans, affecting customer satisfaction and airline operations. [Data: Entities (96); Relationships (210)]\n\n## Role of Additional Baggage Options\n\nAdditional pieces of baggage are a significant aspect of air travel, allowing passengers to check in extra luggage for a fee. This service is directly linked to the flight ticket, which outlines the standard baggage allowance. The ability to manage additional baggage through the Manage Your Booking service enhances passenger convenience but also introduces potential complications if not handled properly. Miscommunication regarding baggage fees or allowances can lead to customer complaints and operational challenges for airlines. [Data: Entities (335); Relationships (408, 210)]\n\n## Manage Your Booking Service\n\nThe Manage Your Booking service is a crucial online tool that allows passengers to view and modify their flight details, including baggage allowances. This service empowers travelers to make adjustments to their bookings, which can enhance their travel experience. However, if the service is not user-friendly or if there are technical issues, it can lead to frustration and confusion among passengers, impacting their overall perception of the airline. [Data: Entities (334); Relationships (414, 211)]\n\n## Pre-ordering Additional Baggage\n\nPre-ordering additional baggage is a process that allows passengers to reserve extra luggage before their flight. This is particularly important for certain service types, as it ensures that passengers can manage their baggage needs in advance. The requirement to pre-order additional baggage adds a layer of complexity to the travel planning process, and failure to comply with this requirement can result in additional fees or denied boarding. [Data: Entities (343); Relationships (416)]\n\n## Time Constraints for Baggage Pre-ordering\n\nPassengers have a limited time frame of three hours before departure to pre-order additional baggage through the Manage Your Booking service. This time constraint can create pressure for travelers, especially those who may be unaware of the need to pre-order. If passengers miss this window, they may face unexpected fees or restrictions, which can lead to dissatisfaction and negative experiences with the airline. [Data: Entities (338); Relationships (415)]", "# Baggage Policy and Standard Baggage Regulations\n\nThe community focuses on the baggage policies of airlines, specifically highlighting the rules and regulations governing checked and carry-on baggage. Key entities include El Al and Sundor, which have specific baggage policies, and the definitions of standard baggage that comply with these regulations.\n\n## El Al's specific baggage policy\n\nEl Al has established a specific baggage policy that outlines the rules for checked baggage. This policy is crucial for ensuring compliance with safety standards and managing passenger expectations. The relationship between El Al and the baggage policy indicates that the airline is actively involved in defining the parameters for what is permissible, which can significantly affect customer satisfaction and operational efficiency. [Data: Relationships (52)]\n\n## Sundor's baggage policy\n\nSimilar to El Al, Sundor also has a specific baggage policy that dictates the rules for checked baggage. This indicates that different airlines may have varying regulations, which can lead to confusion among passengers if not clearly communicated. The relationship between Sundor and the baggage policy highlights the importance of these regulations in maintaining a smooth travel experience. [Data: Relationships (404)]\n\n## Definition and importance of standard baggage\n\nStandard baggage refers to luggage that meets the airline's specified size and weight requirements. This definition is critical as it helps passengers understand what they can carry without incurring additional fees. The relationship between standard baggage and the baggage policy emphasizes the need for clear guidelines to avoid misunderstandings and ensure compliance. [Data: Relationships (201, 418)]\n\n## Baggage allowance determined by policy\n\nThe baggage allowance for passengers is determined by the baggage policy of the airline. This relationship is significant as it directly impacts the travel experience, influencing how much luggage a passenger can bring without incurring extra charges. Understanding this relationship is essential for both airlines and passengers to facilitate a smooth travel process. [Data: Relationships (413)]\n\n## Interconnectedness of baggage policies\n\nThe relationships between various entities and the baggage policy illustrate the interconnectedness of airline regulations. Each airline's baggage policy not only affects its operations but also influences passenger behavior and expectations. This interconnectedness highlights the importance of consistent communication and enforcement of baggage regulations across the industry. [Data: Relationships (52, 404, 200)]", "# Ticket Type and Baggage Allowance Community\n\nThis community focuses on the relationship between ticket types and their associated baggage allowances. The entities involved are the ticket type, which determines the baggage rules, and the free baggage allowance, which specifies the amount of baggage that can be checked without extra fees.\n\n## Ticket Type as a determining factor\n\nThe ticket type is a crucial entity in this community, as it dictates the baggage allowance and rules applicable to each passenger's reservation. Understanding the ticket type is essential for passengers to know their rights and limitations regarding baggage. This relationship is significant because it can directly affect customer satisfaction and operational efficiency. If passengers are not aware of their ticket type's implications, it could lead to disputes at check-in or boarding, impacting the overall travel experience. [Data: Entities (355); Relationships (410)]\n\n## Free Baggage Allowance specifics\n\nThe free baggage allowance is defined for each flight segment based on the ticket type. This allowance is critical for passengers as it specifies how much baggage can be checked without incurring additional fees. Clarity in this area is vital for customer satisfaction, as unexpected fees can lead to frustration and negative perceptions of the airline. The relationship between the free baggage allowance and ticket type highlights the importance of transparent communication regarding baggage policies to avoid misunderstandings. [Data: Entities (357); Relationships (420)]\n\n## Interdependence of ticket type and baggage allowance\n\nThe relationship between ticket type and baggage allowance is interdependent, meaning that changes in one can significantly affect the other. For instance, if an airline decides to modify the baggage rules associated with a specific ticket type, it could lead to widespread implications for passengers who have already purchased tickets. This interdependence underscores the need for airlines to carefully consider customer feedback and market trends when making policy changes. [Data: Relationships (410, 420)]\n\n## Potential for customer dissatisfaction\n\nThe complexity of baggage policies based on ticket types can lead to customer dissatisfaction if not communicated effectively. Passengers may feel frustrated if they are unaware of the baggage rules associated with their ticket type, leading to unexpected fees or complications during travel. Airlines must ensure that this information is readily available and clearly communicated to mitigate potential issues and enhance the customer experience. [Data: Relationships (410, 420)]"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-23a64d64f4b6653df41629e15c224c11 b/cache/text_embedding/embedding-23a64d64f4b6653df41629e15c224c11 deleted file mode 100644 index 2f998f9dbc8f1dfd4c3a51bed98340e583f20041..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-23a64d64f4b6653df41629e15c224c11 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.020603429526090622, -0.007436299230903387, 0.03440795838832855, -0.0035860762000083923, -0.04970548674464226, -0.009606894105672836, -0.0041631790809333324, 0.039667919278144836, 0.009819360449910164, 0.02728748507797718, -0.04412395507097244, 0.031353045254945755, 0.03567126765847206, 0.044376619160175323, -0.053564321249723434, 0.01043953001499176, -0.010956338606774807, 0.0483732707798481, -0.042929552495479584, 0.006075370125472546, -0.006661086343228817, 0.03215697035193443, -0.04155139625072479, -0.024301480501890182, 0.022096430882811546, -0.02265917882323265, 0.017284370958805084, -0.013689680956304073, 0.022877385839819908, -0.019144881516695023, 0.010163899511098862, -0.02226870134472847, 0.05549374222755432, -0.0086192162707448, -0.02345161885023117, -0.0028223483823239803, -0.06752963364124298, 0.0007823905325494707, 0.025817451998591423, -0.05668814107775688, -0.02570260688662529, 0.023405680432915688, 0.0032932180911302567, -0.09738967567682266, -0.012713487260043621, 0.06293578445911407, 0.03397154062986374, -0.013597804121673107, -8.088590402621776e-05, -0.010066280141472816, -0.02721857652068138, 0.012483795173466206, -0.0010314635001122952, 0.003425291506573558, 0.03456874191761017, 0.024370389059185982, -0.032800108194351196, 0.001070224097929895, 0.022716602310538292, 0.02629980631172657, -0.002555330516770482, -0.03718723729252815, 0.011111381463706493, -0.014424697495996952, 0.015033382922410965, 7.783529872540385e-05, -0.012311525642871857, 0.009038405492901802, -0.049062348902225494, 0.01961575075984001, 0.04249313846230507, 0.026345744729042053, 0.017135070636868477, -0.042906586080789566, 0.01809977926313877, 0.02774687111377716, 0.03250150755047798, 0.016744593158364296, 0.0373939611017704, 0.019845442846417427, -0.0035946897696703672, -0.01136978529393673, -0.013597804121673107, 0.027838747948408127, 0.03410935774445534, 0.038818053901195526, -0.04612228274345398, 0.03098553605377674, -0.018685495480895042, -0.018191656097769737, 0.003781314939260483, 0.011042473837733269, -0.023956941440701485, 0.00710324477404356, 0.03066396713256836, 0.01606700010597706, 0.004944134037941694, 0.001440603518858552, 0.0027218577452003956, 0.027057792991399765, -0.0067070247605443, -0.010818523354828358, 0.02999785915017128, 0.030043797567486763, 0.0400354266166687, -0.04343487694859505, -0.05039456486701965, 0.03378778696060181, 0.019075972959399223, -0.027861716225743294, 0.004168921150267124, 0.027586085721850395, -0.05797442048788071, 0.022165339440107346, 0.022429486736655235, 0.01434430480003357, 0.0024419198743999004, -0.022303154692053795, -0.006207443308085203, 0.015538706444203854, 0.012633094564080238, -0.014137581922113895, -0.0326622910797596, -0.07010219246149063, -0.027861716225743294, -0.012782394886016846, -0.07042375952005386, -0.0016781918238848448, -0.028780486434698105, -0.03985167294740677, 0.03854242339730263, -0.05370213836431503, 0.026919977739453316, -0.047086991369724274, 0.0146314213052392, -0.018765889108181, 0.041000135242938995, -0.036245498806238174, -0.012104801833629608, -0.015688007697463036, 0.061098240315914154, -0.0066840555518865585, 0.03824382275342941, 0.006322289817035198, -0.004487619735300541, 0.07442041486501694, 0.00803350005298853, 0.03394857048988342, -0.02974519692361355, 0.02384209632873535, 0.0002156957343686372, -0.029193934053182602, -0.014252427965402603, -0.025610728189349174, -0.01434430480003357, 0.0295384731143713, -0.004771864507347345, 0.028367040678858757, 0.008906331844627857, 0.008538823574781418, -0.06027134880423546, 0.012093317694962025, 0.02108578383922577, -0.021166175603866577, 0.06601366400718689, 0.017755240201950073, 0.0005609524669125676, -0.007373133674263954, -0.04345784708857536, -0.004404356237500906, -0.03031942807137966, 0.006282093469053507, -0.010680707171559334, -0.02503649704158306, 0.061098240315914154, -0.055861249566078186, -0.006081112660467625, -0.0004005265363957733, 0.047408558428287506, 0.015596129931509495, -0.03190430626273155, -0.04079341143369675, -0.006925233174115419, 0.009761936962604523, -0.03470655903220177, 0.021855253726243973, 0.036773789674043655, 0.0018432834185659885, -0.021384384483098984, 0.024554142728447914, 0.038037098944187164, -0.019397543743252754, -0.023704279214143753, 0.00135805772151798, -0.02418663538992405, 0.014654390513896942, 0.0049527473747730255, -0.038818053901195526, 0.012506764382123947, -0.0011857881909236312, 0.023107079789042473, -0.04283767566084862, 0.04235532134771347, 0.03204212337732315, -0.04327409341931343, -0.02979113534092903, 0.0483732707798481, -0.04970548674464226, 0.09371459484100342, 0.041390612721443176, 0.019776536151766777, -0.023164503276348114, -0.04630603641271591, -0.03204212337732315, -0.0030864947475492954, 0.02055749110877514, 0.05994977802038193, -0.02524322085082531, -0.012529733590781689, 0.02570260688662529, -0.01961575075984001, -0.055999062955379486, 0.029951918870210648, 0.008992467075586319, 0.01711210049688816, -0.024025849997997284, 0.0269659161567688, 0.02556478977203369, -0.02464601956307888, -0.0903610810637474, -0.02326786331832409, 0.029584411531686783, -0.025059467181563377, -0.03619955852627754, -0.024140696972608566, 0.05792848393321037, -0.043251123279333115, -0.048740778118371964, -0.05292118340730667, 0.03213400021195412, 5.461929504235741e-06, -0.022613240405917168, 0.031215230002999306, 0.046489790081977844, -0.01916784979403019, -0.02868860960006714, -0.004780477844178677, -0.012897241860628128, 0.10639362782239914, 0.0003843762679025531, -0.005188182462006807, 0.0005035293288528919, 0.02999785915017128, -0.03206509351730347, 0.01731882430613041, 0.03812897577881813, 0.01619333028793335, 0.009784906171262264, 0.016365600749850273, -0.016147391870617867, 0.033535126596689224, 0.019133396446704865, -0.056596264243125916, 0.021246569231152534, -0.007970334030687809, -0.04012730345129967, 0.058939129114151, 0.01381601206958294, -0.02496759034693241, 0.03277713805437088, -0.04975142329931259, 0.01549276802688837, 0.006121308542788029, -0.02485274337232113, 0.003379352856427431, -0.015538706444203854, 0.0002799378999043256, -0.0008635007543489337, 0.0006675441982224584, 0.03750880807638168, -0.059168823063373566, -0.0067070247605443, -0.007809549570083618, -0.02213088609278202, -0.027103731408715248, -0.023428648710250854, 0.019650204107165337, 0.0015633455477654934, -0.004421583376824856, 0.04520351067185402, 0.03020458109676838, -0.0007271207286976278, 0.002364398678764701, 0.02763202413916588, 0.04910828545689583, -0.023107079789042473, -0.02609308436512947, -0.030572090297937393, 0.03615362197160721, -0.06210888922214508, 0.060087595134973526, 0.008665154688060284, 0.045571018010377884, 0.029905980452895164, -0.03957604244351387, 0.05241585895419121, 0.027195608243346214, 0.05792848393321037, -0.035510480403900146, 0.012713487260043621, -0.000647804990876466, 0.011519085615873337, -0.03479843586683273, -0.04109201207756996, -0.004065559711307287, -0.027700932696461678, -0.020706791430711746, 0.003390837460756302, 0.045226480811834335, -0.0005835628253407776, 0.05264555290341377, 0.012679033912718296, -0.019259726628661156, 0.0027218577452003956, 0.0325244776904583, -0.0003005743492394686, 0.024485234171152115, 0.044560372829437256, 0.021660014986991882, -0.014861113391816616, -0.04584664851427078, -0.01457399781793356, 0.0026701767928898335, -0.016744593158364296, -0.036911606788635254, 0.03810600936412811, -0.008481401018798351, 0.00769470352679491, -0.023911003023386, 0.011921048164367676, 0.03622252866625786, 0.0019610009621828794, -0.05668814107775688, 0.020327799022197723, -0.007172152400016785, 0.00838952325284481, 0.01651490107178688, 0.04616821929812431, 0.0018317988142371178, -0.0011240583844482899, 0.012839818373322487, 0.024921651929616928, 0.013345141895115376, 0.02087906002998352, -0.02439335733652115, -0.04736262187361717, 0.01510229054838419, -0.022280186414718628, 0.0023026687558740377, 0.017961964011192322, 0.02207346260547638, -0.022039009258151054, 0.029216904193162918, 0.026116052642464638, 0.05397776886820793, 0.04506569355726242, -0.03656706586480141, -0.012024409137666225, 0.030112704262137413, -0.024485234171152115, 0.015354952774941921, 0.0034310338087379932, -0.014286882244050503, -0.027517177164554596, 0.005392034538090229, -0.0322488471865654, 0.024002879858016968, 0.05939851701259613, 0.019788021221756935, 0.009916979819536209, 0.03787631541490555, -0.0020543134305626154, 0.056734081357717514, 0.06729993969202042, 0.02781577780842781, -0.005954781547188759, -0.022578787058591843, -0.029630349949002266, 0.05002705752849579, 0.0038444804958999157, 0.003077881410717964, -0.0040540751069784164, -0.016744593158364296, -0.017858602106571198, -0.02756311558187008, 0.03507406637072563, 0.08999357372522354, 0.04759231582283974, -0.014217974618077278, -0.039415255188941956, 0.016537869349122047, -0.04697214439511299, 0.02510540559887886, -0.020511552691459656, 0.002924274420365691, 0.010008856654167175, -0.014952990226447582, -0.032547447830438614, 0.022831447422504425, -0.005868646781891584, 0.013172872364521027, 0.007539660669863224, 0.017284370958805084, -0.009859556332230568, 0.017870087176561356, 0.03930040821433067, 0.03486734256148338, 0.05016487091779709, -0.006804644130170345, -0.022234247997403145, 0.05140521377325058, 0.04777606949210167, 0.021246569231152534, 0.026805130764842033, -0.025220250710844994, 0.0006600074120797217, 0.012989118695259094, -0.03404044732451439, -0.017732271924614906, -0.07791174203157425, 0.012414886616170406, -0.029354719445109367, -0.008711093105375767, 0.029653320088982582, -0.05007299408316612, -0.0432281531393528, 0.00651178602129221, -0.03443092480301857, -0.02160259336233139, -0.015079321339726448, -0.021372899413108826, -0.009216416627168655, -0.006115566473454237, 0.04745449870824814, -0.022016039118170738, 0.04605337232351303, -0.013437019661068916, 0.037830378860235214, -0.0015977993607521057, 0.03817491605877876, 0.0028510598931461573, 0.00014185314648784697, -0.02273957058787346, 0.023141533136367798, -0.03178945928812027, -0.07501761615276337, -0.014918536879122257, 0.00344538944773376, 0.0025065208319574594, -0.01882331073284149, 0.010353395715355873, 0.06633523106575012, 0.025817451998591423, 0.016308177262544632, -0.006592178717255592, 0.030686935409903526, -0.01943199709057808, -0.005690635181963444, 0.02544994466006756, -0.03484437242150307, -0.039415255188941956, -0.018386894837021828, 0.06275203078985214, 0.004435939248651266, -0.017169523984193802, -0.04956766963005066, -0.016698654741048813, -0.058571621775627136, -0.0405866876244545, -0.04345784708857536, -0.00523699214681983, 0.0023773186840116978, 0.025082435458898544, -0.0482354536652565, 0.013689680956304073, 0.05926069989800453, 0.026942946016788483, -0.0028309617191553116, -0.06040916219353676, -0.02531212940812111, -0.0003054194385185838, 0.02122359909117222, 0.004720183555036783, -0.009779163636267185, -0.03840461000800133, -0.001893528620712459, -0.04373347759246826, 0.024485234171152115, 0.05021081119775772, -0.02551885135471821, -0.010939111933112144, 0.00177581119351089, 0.031881336122751236, -0.03371888026595116, 0.03799116238951683, -0.012058863416314125, 0.03185836970806122, -0.006127051077783108, 0.008188542909920216, -0.0013451374834403396, -0.011163062416017056, 0.006081112660467625, 0.01638856902718544, -0.02054600603878498, -0.026874039322137833, -0.018662527203559875, 0.028435949236154556, 0.010646253824234009, -0.028068440034985542, 0.030181612819433212, 0.009388686157763004, 0.037026453763246536, 0.006942459847778082, -0.039874643087387085, -0.021166175603866577, 0.008573277853429317, 0.007912911474704742, -0.050578318536281586, -0.011111381463706493, -0.0042923809960484505, -0.01625075377523899, -0.051497090607881546, -0.015676522627472878, 0.027907654643058777, -0.015446829609572887, 0.011639674194157124, 0.03259338438510895, 0.016044029965996742, 0.00465701799839735, -0.030572090297937393, -0.014378759078681469, -0.05847974494099617, 0.025426974520087242, -0.03495921939611435, 0.04111498221755028, 0.000988396117463708, 0.019443482160568237, -0.01014093030244112, 0.023911003023386, -0.0019452094566076994, -0.007912911474704742, 0.011708581820130348, 0.00825745053589344, 0.011783231981098652, 0.012633094564080238, 0.03073287382721901, 0.059306640177965164, -0.003861707402393222, 0.019581297412514687, -0.0540696457028389, 0.006597920786589384, 0.014424697495996952, -0.0214073546230793, 0.019075972959399223, -0.004685729742050171, 0.0011678434675559402, -0.013735619373619556, -0.04479006305336952, 0.01935160532593727, -0.03463764861226082, 0.015837308019399643, 0.016365600749850273, 0.009440367110073566, -0.0007615746580995619, 0.03785334527492523, 0.0400354266166687, 0.02174040861427784, -0.055861249566078186, -0.006580694112926722, 0.017858602106571198, 0.028298132121562958, 0.032616354525089264, 0.023244895040988922, 0.014711813069880009, 0.01613590680062771, 0.0353037565946579, -0.015688007697463036, 0.0030118445865809917, -0.0008541694842278957, 0.035051096230745316, -0.028367040678858757, 0.008843166753649712, 0.017858602106571198, 0.011708581820130348, 0.01067496556788683, 0.05347244441509247, -0.028527826070785522, 0.05411558598279953, 0.0026586921885609627, 0.011553539894521236, -0.0017427928978577256, 0.0038990324828773737, -0.02478383481502533, 0.04421583190560341, 0.010382107459008694, -0.0119899557903409, 0.036980513483285904, -0.011450177989900112, -0.015952153131365776, 0.006632375065237284, 0.04481303319334984, -0.017789695411920547, 0.010135187767446041, -0.010979307815432549, -0.05076207220554352, 0.026529500260949135, -0.012070348486304283, -0.014688843861222267, -0.027517177164554596, 0.008877620100975037, -0.018800342455506325, -0.012437855824828148, 0.000480201153550297, -0.005610242486000061, -0.001893528620712459, 0.005323126912117004, 0.006896521430462599, -0.018616588786244392, 0.012644579634070396, 0.005081949755549431, 0.0022682147100567818, 0.026874039322137833, 0.03686566650867462, -0.012024409137666225, 0.013563349843025208, -0.017077647149562836, 0.01119751576334238, -0.013425534591078758, -0.0026342873461544514, 4.9662059609545395e-05, 0.05618282034993172, -0.03479843586683273, 0.01658380776643753, -0.0016896764282137156, -0.01989138312637806, 0.01890370436012745, 0.014723298139870167, -0.013437019661068916, 0.02464601956307888, 0.004665631800889969, 0.04224047437310219, -0.020132560282945633, -0.005750929471105337, -0.01083575002849102, 0.0016595292836427689, -0.0198798980563879, 0.0050216554664075375, 0.016273723915219307, -0.008596247062087059, -0.0029228387866169214, -0.02855079434812069, 0.009268097579479218, -0.04109201207756996, 0.014849629253149033, 0.023072624579072, 0.02901018038392067, 0.014355789870023727, 0.01665271632373333, 0.013827497139573097, -0.012587156146764755, -0.040540751069784164, 0.03192727640271187, -0.014585481956601143, -0.0077348994091153145, 0.007419072091579437, 0.009698771871626377, -0.015883246436715126, 0.008906331844627857, -0.03319058567285538, 0.016158876940608025, -0.0059203277342021465, -0.02358943410217762, 0.014309851452708244, 0.031353045254945755, 0.00617873203009367, -0.006701282691210508, 0.027126699686050415, -0.055861249566078186, 0.015217137522995472, -0.00013943060184828937, -0.016756078228354454, 0.028573764488101006, 0.010290229693055153, 0.01480369083583355, 0.022578787058591843, -0.012874272651970387, -0.05668814107775688, -0.0035028127022087574, -0.008963755331933498, -0.03153679892420769, 0.022280186414718628, 0.003617658978328109, 0.03893290087580681, -0.096470907330513, -0.02089054509997368, -0.011128608137369156, 0.009388686157763004, 0.008182800374925137, 0.03146789222955704, 0.013689680956304073, -0.0172384325414896, -0.014505090191960335, 0.0022710859775543213, -0.012874272651970387, -0.04692620411515236, 0.0054839118383824825, -0.017789695411920547, -0.005972008686512709, 0.022314639762043953, -0.016342630609869957, -0.0533805675804615, 0.0588013157248497, 0.038886964321136475, 0.01510229054838419, -0.02304965630173683, -0.039690885692834854, 0.007568372413516045, 0.004421583376824856, -0.003723891917616129, 0.031559769064188004, -0.017743756994605064, -0.014091643504798412, 0.009957175701856613, 0.01103673130273819, -0.013264750130474567, 0.007562629878520966, -0.03298386186361313, 0.02122359909117222, -0.024485234171152115, -0.003307573962956667, 0.0017729400424286723, 0.0028826426714658737, 0.015320498496294022, -0.06091448664665222, -0.012277071364223957, -0.020500067621469498, 0.013505927287042141, -0.015377921983599663, -0.023233409970998764, 0.026345744729042053, 0.009480563923716545, 0.007057306356728077, 0.02999785915017128, 0.004441681317985058, -0.008073695935308933, -0.011645416729152203, 0.017158040776848793, 0.04580071195960045, -0.00039621980977244675, 0.04474412649869919, -0.020856091752648354, 0.01923675835132599, 0.014263913035392761, -0.00027670784038491547, 0.0031841141171753407, 0.015699490904808044, -0.008780000731348991, -0.02061491459608078, 0.00039442532579414546, 0.022900355979800224, -0.009962918236851692, 0.025955267250537872, 0.06091448664665222, 0.013035057112574577, -0.014780720695853233, -0.015309014357626438, -0.010933369398117065, -0.0298141036182642, -0.025289159268140793, -0.011421466246247292, 0.00769470352679491, -0.00875128898769617, -0.02967628836631775, -0.0061385356821119785, 0.0027476982213556767, 0.0029860043432563543, -0.004068430978804827, 0.028252193704247475, 0.03335136920213699, 0.02471492812037468, -0.010680707171559334, -0.020075136795639992, -0.0017643265891820192, -0.03284604847431183, -0.017169523984193802, -0.00892355851829052, 0.00993994902819395, -0.016802016645669937, -0.0016178975347429514, 0.006253382191061974, 0.01143295131623745, 0.019190819934010506, -0.01499892957508564, 0.0003736094222404063, 0.04938391596078873, 0.0026414652820676565, -0.02551885135471821, -0.04196484386920929, 0.043779417872428894, -0.05168084427714348, 0.004352675285190344, 0.0033850951585918665, 0.022176824510097504, 0.029699258506298065, 0.05439121648669243, -0.02841297909617424, -0.01956981234252453, 0.004470393061637878, 0.013207326643168926, -0.038680240511894226, 0.016560839489102364, -0.003052040934562683, 0.0009474821272306144, -0.007717672735452652, 0.004364159889519215, -0.026345744729042053, -0.04090825840830803, 0.02974519692361355, -0.0243244506418705, 0.023107079789042473, 0.03059505857527256, -0.011214743368327618, 0.024600081145763397, -0.0298141036182642, 0.017158040776848793, 0.017858602106571198, -7.447065581800416e-05, 0.043641600757837296, -0.014654390513896942, 0.04460630938410759, 0.07272069156169891, -0.03576314449310303, 0.02153368480503559, 0.025817451998591423, -0.030181612819433212, 0.002285441616550088, 0.004573754500597715, -0.00859050452709198, -0.010146671906113625, 0.019719112664461136, 0.01909894309937954, -0.011099896393716335, -0.04412395507097244, 0.021820800378918648, 0.014252427965402603, -0.02841297909617424, 0.010755357332527637, 0.007321452721953392, -0.041390612721443176, 0.016813501715660095, 0.010399334132671356, -0.008366554044187069, 0.01896112784743309, 0.0322488471865654, -0.0016322532901540399, -0.0006847711629234254, -0.0041000135242938995, 0.015607615001499653, 0.000403397687477991, 0.03052615188062191, 0.03493624925613403, -0.016606777906417847, -0.014861113391816616, -0.008768516592681408, -0.040288086980581284, -0.010950596071779728, 0.022682147100567818, 0.019282696768641472, 0.008314873091876507, 0.024737896397709846, -0.01255270279943943, -0.013724135234951973, 0.024806804955005646, -0.01097356528043747, 0.03884102404117584, -0.017399217933416367, -0.044238802045583725, 0.05030268803238869, 0.02721857652068138, 0.004725926090031862, 0.0134485037997365, 0.04394020140171051, 0.002483551623299718, -0.02643762156367302, -0.004045461770147085, -0.008659412153065205, -0.009968660771846771, -0.010525665245950222, -0.008504370227456093, 0.006328032352030277, -0.018386894837021828, 0.027861716225743294, 0.01704319380223751, -0.030480213463306427, -0.04077044129371643, 0.0009539422462694347, -0.02907908707857132, -0.020465614274144173, -0.0072984835132956505, -0.013494442217051983, 0.042653921991586685, -0.030709905549883842, 0.026001205667853355, -0.015756914392113686, 0.026736222207546234, -0.005716475658118725, -0.00918196327984333, 0.0007529611466452479, -0.004651275929063559, 0.016744593158364296, 0.02714966982603073, -0.021315475925803185, -0.011783231981098652, -0.03939228877425194, -0.05007299408316612, -0.0032673778478056192, -0.025886360555887222, 0.004433067981153727, -0.03052615188062191, -0.0070802755653858185, -0.013230295851826668, 0.03755474463105202, -0.005173826590180397, 0.041390612721443176, -0.00842397753149271, 0.015148228965699673, 0.019856927916407585, -0.016744593158364296, -0.017146555706858635, 0.012219647876918316, -0.00034741012495942414, 0.02254433184862137, -0.011898078955709934, -0.017743756994605064, -0.039277441799640656, 0.011547797359526157, 0.025932298973202705, 0.00022448865638580173, 0.0009898317512124777, 0.03126116842031479, -0.002358656143769622, -0.02471492812037468, 0.0029300167225301266, 0.004045461770147085, -0.004384258296340704, -0.00013907170796301216, 0.013299203477799892, 0.030962567776441574, 0.03877211734652519, 0.04713292792439461, 0.018329473212361336, 0.049659546464681625, 0.028711579740047455, -0.038220856338739395, 0.0022409388329833746, -0.008533081039786339, 0.009934206493198872, 0.02254433184862137, 0.013930858112871647, 0.012908725999295712, -0.029653320088982582, 0.006207443308085203, 0.02809141017496586, 0.02404881827533245, -0.030250519514083862, 0.01764039508998394, -0.014941506087779999, 0.01212777104228735, 0.007384618278592825, 0.05347244441509247, 0.01381601206958294, 0.0033190585672855377, -0.0016695783706381917, 0.016101453453302383, -0.03833569958806038, -0.009325521066784859, 0.02563369832932949, -0.016733108088374138, 0.03204212337732315, 0.0019724855665117502, -0.0027950722724199295, -0.0022596013732254505, 0.03470655903220177, 0.01274794153869152, -0.012805364094674587, -0.003132433397695422, 0.027011854574084282, 0.010393591597676277, 0.016491930931806564, 0.009032662957906723, 0.02379615791141987, -0.002954421564936638, -0.021189145743846893, 0.022888870909810066, -0.012437855824828148, 0.007137698587030172, 0.014022735878825188, -0.026184961199760437, -0.031077412888407707, 0.0012453647796064615, 0.004651275929063559, -0.03045724332332611, -0.030227551236748695, 0.011875109747052193, -0.017399217933416367, -0.01457399781793356, 0.02767796255648136, -0.006046658847481012, -0.002110301051288843, 0.02894127182662487, -0.0011800458887591958, 0.05067019537091255, 0.002881207037717104, -0.004171792417764664, 0.030227551236748695, -0.005860033445060253, 0.01811126433312893, -0.002464889083057642, 0.01672162301838398, 0.002706066472455859, 0.005670536775141954, -0.009405913762748241, 0.006942459847778082, 0.0348903127014637, 0.0031783718150109053, 0.04334300011396408, -0.015240106731653214, -0.04828139394521713, -0.017410701140761375, 0.007798064965754747, 0.005139372777193785, -0.0008520161500200629, -0.024600081145763397, -0.005191053729504347, 0.014057189226150513, 0.011771747842431068, 0.0035372665151953697, 0.021166175603866577, 0.006839098408818245, 0.028826426714658737, 0.00013099658826831728, -0.019856927916407585, -0.0435037836432457, 0.01659529283642769, 0.005581531208008528, -0.007855487987399101, 0.0071893795393407345, -0.04143655300140381, -0.023497557267546654, -0.021430322900414467, 0.03959900885820389, 0.005325998179614544, -0.01476923655718565, 0.0022423744667321444, 0.020327799022197723, -0.03622252866625786, -0.016296692192554474, 0.006081112660467625, 0.012793879956007004, 0.005845677573233843, -0.00828616227954626, 0.015125259757041931, 0.03629143536090851, 0.027792809531092644, -0.008337842300534248, 0.026001205667853355, 0.0039708116091787815, -0.051910534501075745, 0.004077044315636158, 0.008688123896718025, -0.02880345657467842, 0.0027405202854424715, -0.014252427965402603, -0.006994140800088644, -0.006236155051738024, -0.0018102651229128242, 0.028068440034985542, 0.027907654643058777, -0.020304828882217407, 0.035326726734638214, 0.014677359722554684, 0.03548751398921013, 0.002220840658992529, 0.03013567440211773, 0.010933369398117065, -0.012564186938107014, 0.028918303549289703, 0.01212777104228735, 0.03865727037191391, -0.00581409502774477, 0.006167247425764799, 0.020695306360721588, -0.008274677209556103, -0.023704279214143753, 0.05099176615476608, -0.041206859052181244, 0.012816849164664745, 0.01453954353928566, -0.0018174429424107075, 0.007671733852475882, 0.0052398634143173695, 0.021430322900414467, 0.01473478227853775, -0.03608471155166626, 0.028458917513489723, -0.03675082325935364, -0.011806201189756393, 0.00948630552738905, 0.008332100696861744, -0.00971599854528904, 0.0014456280041486025, 0.01397679653018713, 0.023486072197556496, 0.008935043588280678, -0.009761936962604523, -0.012277071364223957, -0.023405680432915688, 0.02848188765347004, -0.005771027412265539, -0.00374973239377141, 0.007045821752399206, -0.026897007599473, 0.00011394907778594643, -0.02040819078683853, 0.027448270469903946, 0.0025223123375326395, 0.005392034538090229, 0.001485824235714972, 0.017364762723445892, 0.014424697495996952, -0.0010314635001122952, -0.0003637398185674101, 0.008894847705960274, 0.009905494749546051, -0.015630584210157394, -0.014815174974501133, -0.028367040678858757, 0.06454362720251083, 0.04276876896619797, 0.0480976365506649, 0.0036836955696344376, 0.03569423407316208, 0.007907168939709663, 0.01818017289042473, 0.04244719818234444, 0.01637708581984043, -0.0007217373349703848, -0.044238802045583725, -0.003922001924365759, -0.0014650083612650633, 0.007849745452404022, -0.016744593158364296, 0.018524711951613426, 0.022372063249349594, 0.023313801735639572, -0.003072139108553529, 0.018869249150156975, -0.019673174247145653, -0.02809141017496586, 0.026805130764842033, -0.007821034640073776, 0.0031755007803440094, -0.013322172686457634, -0.0295384731143713, 0.006063885521143675, -0.020109590142965317, 0.002253859071061015, 0.011082669720053673, 0.0041201114654541016, -0.010939111933112144, -0.00977342203259468, 0.0004468239494599402, -0.03027348965406418, -0.007378875743597746, 0.012943180277943611, 0.005202538333833218, -0.0216140765696764, 0.002263908041641116, 0.010743873193860054, 0.010387849062681198, 0.013425534591078758, 0.02907908707857132, 0.02788468636572361, -0.007264029700309038, 0.0012704874388873577, 0.02386506460607052, -0.0049527473747730255, 0.035969868302345276, -0.0016738850390538573, 0.004203375428915024, 0.002664434490725398, 0.012277071364223957, 0.006661086343228817, -0.0069654290564358234, -0.001668142736889422, -0.0032214391976594925, 0.012667548842728138, 0.006626632530242205, -0.010933369398117065, -0.028390008956193924, 0.009026920422911644, -0.008102407678961754, -0.026713253930211067, -0.00746501050889492, -0.012231132946908474, -0.031077412888407707, 0.0069711715914309025, 0.00636248616501689, -0.004903937689960003, -0.017961964011192322, -0.007195121608674526, -0.015952153131365776, 0.014505090191960335, 0.005303028970956802, -0.0029486792627722025, 0.0022883128840476274, 0.0025180054362863302, 0.01331068854779005, -0.03309870883822441, 0.02749420888721943, 0.04400910809636116, 0.009308294393122196, -0.03923150151968002, 0.02040819078683853, 0.006172989495098591, -0.017353279516100883, -0.019397543743252754, -0.007011367939412594, -0.03918556496500969, -0.005544206127524376, 0.003052040934562683, 0.03833569958806038, -0.0014391678851097822, -0.010158156976103783, -0.007447783835232258, 0.008102407678961754, -0.02749420888721943, -0.008320615626871586, -0.02524322085082531, -0.026276838034391403, -0.0019322893349453807, 0.01923675835132599, 0.012529733590781689, 0.010072021745145321, 0.004639791324734688, -0.04552508145570755, 0.011111381463706493, -0.017410701140761375, -0.005308771040290594, -0.010364879854023457, -0.023072624579072, -0.014459151774644852, 0.009894010610878468, 0.038289763033390045, 0.02054600603878498, 0.0007759304135106504, 0.030939597636461258, 0.008314873091876507, -0.02728748507797718, 0.01406867429614067, 0.004062688443809748, 0.002942936960607767, 0.007643022574484348, -0.0032759911846369505, 0.05769878998398781, 9.815771045396104e-05, -0.00634525902569294, 0.010267260484397411, 0.013999765738844872, -0.01750257797539234, -0.0005627469508908689, 0.006632375065237284, -0.000525421928614378, -0.01473478227853775, 0.013058026321232319, 0.02365834079682827, -0.002183515578508377, 0.013551865704357624, 0.009968660771846771, -0.014321335591375828, -0.036842700093984604, -0.011840655468404293, -0.012368948198854923, -0.01420648954808712, 0.004651275929063559, 0.03661300614476204, -0.024554142728447914, -0.009836587123572826, 0.03681972995400429, 0.009164736606180668, -0.00013952032895758748, -0.003442518413066864, -0.026919977739453316, -0.0025136987678706646, -0.03468358889222145, -0.0055040097795426846, -0.014309851452708244, -0.007108987309038639, -0.010755357332527637, -0.007005625404417515, -0.0030032312497496605, -0.018938157707452774, 0.009980144910514355, 0.008665154688060284, 0.010646253824234009, -0.029354719445109367, -0.026575438678264618, 0.016239268705248833, -0.004789091646671295, -0.002398852491751313, 0.038358669728040695, -0.028849394991993904, 0.01212777104228735, 0.033466216176748276, 0.002983133075758815, -0.012931695207953453, 0.006517528556287289, -0.009819360449910164, -0.0005308053223416209, -0.03192727640271187, 0.017272885888814926, 0.0005006581777706742, -0.001276229741051793, 0.008584761992096901, -0.002983133075758815, 0.02002919837832451, -0.011725809425115585, 0.03727911412715912, -0.03831273317337036, 0.0053690653294324875, -0.018398379907011986, 0.02214236930012703, -0.03815194591879845, -0.01903003454208374, 0.015676522627472878, -0.010026083327829838, 0.0027965079061686993, 0.005363323260098696, -0.02418663538992405, 0.017135070636868477, -0.010910400189459324, 0.00409714225679636, -0.04329706355929375, -0.01651490107178688, -0.017192494124174118, 0.005891615990549326, -0.009457594715058804, 0.0243244506418705, -0.007746384013444185, 0.061879195272922516, -0.031950246542692184, 0.04157436639070511, -0.01387343555688858, 0.015504253096878529, -0.002195000182837248, 0.02609308436512947, -0.023956941440701485, 0.006844840478152037, 0.0011448742588981986, -0.001639431226067245, 0.014217974618077278, -0.0037727016024291515, 0.004404356237500906, 0.024094756692647934, 0.024094756692647934, -0.010812780819833279, 0.0014743396313861012, 0.0005171673255972564, -0.00892355851829052, 0.005314513575285673, -0.008584761992096901, -0.033006832003593445, -0.03031942807137966, -0.04479006305336952, 0.01677904650568962, 0.002265343675389886, 0.015274560078978539, 0.026070114225149155, 0.0022983618546277285, -0.008177057839930058, -0.008280419744551182, 0.011610962450504303, -0.021453293040394783, -0.008613473735749722, -0.03328246250748634, 0.0025409748777747154, -0.03943822532892227, 0.0034654876217246056, -0.024921651929616928, -0.013276234269142151, 0.005650438833981752, 0.015458314679563046, 0.00037719839019700885, 0.02781577780842781, -0.005512623116374016, -0.019994743168354034, 0.008171315304934978, 0.019523873925209045, -0.02226870134472847, 0.017996417358517647, 0.021177660673856735, 0.02325638011097908, 0.05820411443710327, -0.0346146784722805, 0.0036291435826569796, -0.02834407053887844, 0.041206859052181244, -0.036980513483285904, -0.00769470352679491, -0.008263192139565945, -0.0009761936962604523, -0.02253284677863121, -0.002282570581883192, -0.010583087801933289, -0.0037095360457897186, 0.00636248616501689, 0.012702003121376038, 0.022234247997403145, 0.024944620206952095, 0.009842329658567905, -0.030572090297937393, -0.03470655903220177, 0.02206197753548622, 0.0007450655102729797, 0.013597804121673107, 0.011978470720350742, 0.004837901331484318, 0.008980982005596161, -0.001360211055725813, -0.012426371686160564, -0.049521733075380325, 0.010801296681165695, 0.010732388123869896, -0.002041393192484975, -0.02609308436512947, -0.018938157707452774, -0.0012977634323760867, -0.004519202746450901, 0.0006711331661790609, 0.020006228238344193, -0.002446226542815566, -0.009721741080284119, 0.0034568742848932743, 0.007958849892020226, -0.0018547680228948593, -0.0012259844224900007, -0.03139898180961609, -0.01387343555688858, 0.041321706026792526, 0.006282093469053507, -0.004883839748799801, -0.0042923809960484505, -0.025013528764247894, 0.00764876464381814, 0.012116286903619766, -0.01443618256598711, 0.026644345372915268, 0.006144278217107058, -0.02175189182162285, -0.017560001462697983, -0.00948630552738905, 0.00935423281043768, -0.03615362197160721, -0.024623051285743713, -0.0019251113990321755, -0.03277713805437088, 0.0014477814547717571, 0.02047709934413433, -0.020603429526090622, 0.03647518903017044, -0.03746286779642105, -0.0294695645570755, 0.003077881410717964, -0.03383372351527214, 0.008412492461502552, 0.0029659061692655087, -0.029951918870210648, -0.011375527828931808, 0.00449336227029562, -0.03583205118775368, 0.028780486434698105, -0.006735736504197121, 0.03335136920213699, -0.013494442217051983, 0.011461662128567696, -0.01855916529893875, 0.009595409967005253, 0.013437019661068916, -0.008705350570380688, -0.01969614438712597, -0.003712407313287258, 0.02816031686961651, -0.010422303341329098, 0.017858602106571198, 0.009790648706257343, 0.03500515595078468, -0.02643762156367302, -0.04513460397720337, 0.012564186938107014, 0.004372773692011833, 0.018949642777442932, 0.037233177572488785, -0.027723900973796844, -0.0009359974646940827, -0.00991123728454113, 0.017961964011192322, 0.025082435458898544, 0.006787417456507683, -0.01837541162967682, -0.00382438232190907, -0.008963755331933498, 0.0069654290564358234, -0.001442039036192, -0.0019538230262696743, 0.025197282433509827, -0.04141358286142349, -0.021453293040394783, 0.015756914392113686, -0.03066396713256836, 0.03257041424512863, -0.01308099552989006, 0.043710507452487946, -0.004743152763694525, 0.006488816812634468, -0.014505090191960335, 0.008504370227456093], [0.0272991806268692, 0.015611494891345501, 0.0061010438948869705, -0.02990707941353321, -0.030385591089725494, 0.04514772444963455, -0.032993488013744354, 0.053641337901353836, 0.0032180016860365868, 0.03196468576788902, 0.010042796842753887, 0.016652261838316917, 0.007907431572675705, 0.025600459426641464, 0.0070221819914877415, 0.03763506934046745, 0.03246712312102318, -0.0030280917417258024, -0.05311497300863266, 0.012309753336012363, 0.022023573517799377, 0.021281877532601357, -0.02552868239581585, 0.00782967358827591, -0.02483483776450157, -0.02512194588780403, 0.02174842730164528, -0.04242020100355148, 0.04981322959065437, -0.027610214427113533, 0.07120276987552643, 0.0009054368129000068, 0.040434371680021286, -0.025074094533920288, 0.0002605654299259186, -0.06976723670959473, -0.03761114180088043, 0.044477809220552444, 0.0075605097226798534, -0.013817070052027702, -0.008278279565274715, 0.012991635128855705, -0.01699918322265148, -0.007046107668429613, -0.010473459027707577, 0.045650165528059006, 0.03976445272564888, -0.010317942127585411, -0.028830423951148987, 0.028256207704544067, 0.018051913008093834, -0.0024523804895579815, 0.014965502545237541, 0.027777694165706635, 0.05589034780859947, 0.026294304057955742, -0.01095197256654501, 0.048377688974142075, 0.009492507204413414, -0.02610289864242077, -0.019212307408452034, -0.03246712312102318, -0.006310393568128347, 0.07708848267793655, -0.01988222636282444, -0.01640104129910469, -0.038089655339717865, 0.043616484850645065, -0.016030194237828255, -0.013769218698143959, -0.016879554837942123, 0.02581579051911831, 0.0046714856289327145, -0.060005564242601395, -0.035601384937763214, 0.021557021886110306, -0.021963758394122124, -0.06632193922996521, 0.03701300173997879, 0.012273864820599556, -0.05411985144019127, 0.010461496189236641, -0.042898714542388916, 0.05933564528822899, 0.030840178951621056, -0.042874787002801895, -0.041271768510341644, 0.001849752850830555, -0.06235027685761452, 0.004964575171470642, -0.0560339018702507, -0.06742251664400101, 0.018973050639033318, 0.06981508433818817, 0.0308880303055048, -0.012429381720721722, 0.03758721798658371, -0.0033196858130395412, -0.06120184436440468, 0.04182205721735954, 0.005371311213821173, 0.02392566204071045, 0.021222062408924103, 0.05450265854597092, -0.025887567549943924, 0.0011185246985405684, -0.03407014533877373, 0.031127287074923515, 0.04966967552900314, -0.015372238121926785, 0.01552775502204895, -0.02003774233162403, -0.029954930767416954, 0.06517350673675537, -0.00653170607984066, -0.011059638112783432, -0.03612774983048439, -0.036055974662303925, 0.01581486314535141, -0.0015050737420096993, -0.010072704404592514, -0.020839251577854156, 0.016783852130174637, -0.088189996778965, -0.030146336182951927, 0.024463990703225136, -0.029643896967172623, 0.0496218241751194, -0.06957583129405975, 0.042731232941150665, 0.04110429063439369, -0.018099764361977577, 0.012184143997728825, -0.003965678624808788, -5.2944873459637165e-05, -0.009199417196214199, -0.0021787306759506464, -0.00921736191958189, 0.012297790497541428, -0.0198941882699728, 0.00326585303992033, 0.008236409164965153, 0.0024000429548323154, -0.007315271534025669, -0.04725318402051926, 0.01297967229038477, 0.00035066049895249307, 0.04777954891324043, 0.0037114685401320457, -0.0019424647325649858, -0.06536491215229034, 0.024117067456245422, -0.01957119256258011, 0.002262470545247197, 0.00667526014149189, 0.05464621260762215, 0.041869908571243286, 0.029285011813044548, -0.00369950570166111, 0.02350696362555027, -0.021090472117066383, -0.03407014533877373, 0.011962831020355225, 0.010688790120184422, 0.009396804496645927, 0.0348118394613266, 0.016054119914770126, 0.018650054931640625, -0.03916630893945694, -0.002642290433868766, -0.0031043547205626965, 0.0111613217741251, -0.008631182834506035, -0.032132163643836975, -0.024296510964632034, -0.028639018535614014, 0.025767939165234566, 0.013721367344260216, -0.002205647062510252, 0.0005955247324891388, -0.005320469383150339, -0.02362659201025963, -0.021592911332845688, -0.020851215347647667, -0.05306712165474892, 0.041295696049928665, 0.023829961195588112, -0.016054119914770126, -0.02770591713488102, 0.05646456405520439, 0.03320882096886635, -0.017238439992070198, -0.019056791439652443, -0.0051589710637927055, -0.03296956419944763, 0.0017017127247527242, 0.015276535414159298, 0.030122410506010056, 0.002003774279728532, 0.012477233074605465, 0.03526642546057701, -0.006262542214244604, 0.0467507466673851, -0.0002110318309860304, -0.03179720789194107, -0.01985830068588257, 0.037060853093862534, -0.0020411580335348845, 0.021234026178717613, -0.0030206148512661457, 0.038639944046735764, 0.017669102177023888, -0.037658993154764175, 0.0224901232868433, -0.0026138785760849714, 0.058426469564437866, -0.00030879059340804815, -0.011920961551368237, -0.032012537121772766, 0.04957397282123566, -0.013003597967326641, 0.013733330182731152, -0.02756236307322979, -0.035051096230745316, -0.04806665703654289, -0.01488176267594099, 0.05464621260762215, 0.020241111516952515, 0.015910565853118896, -0.058857131749391556, -0.0036755800247192383, 0.013613701798021793, -0.0015327377477660775, -0.015934491530060768, -0.01422380656003952, 0.034022293984889984, -0.02770591713488102, 0.005009435582906008, 0.02410510554909706, 0.005332432221621275, -0.023554814979434013, 0.006615445949137211, 0.01744180917739868, 0.05455050989985466, 0.007757896091789007, -0.02871079556643963, -0.022681528702378273, -0.017645176500082016, -0.008750811219215393, 0.02947641722857952, 0.017310217022895813, -0.043616484850645065, 0.06191961467266083, -0.09464992582798004, 0.020288962870836258, 0.029356788843870163, -0.008918290957808495, -0.0008134725503623486, 0.05574679374694824, -0.014821948483586311, 0.026318229734897614, -0.02349500171840191, -0.02321985550224781, 0.002186207566410303, -0.04859302192926407, 0.01813565194606781, 0.01393669843673706, 0.006196746602654457, -0.0560339018702507, 0.008021078072488308, -0.04160672798752785, -0.0031551967840641737, 0.02772984281182289, -0.024595580995082855, -0.007147791795432568, -0.007506676949560642, 0.01771695353090763, -0.03651056066155434, -0.02396155148744583, 0.025504756718873978, -0.06402507424354553, 0.022238904610276222, -0.002900986699387431, -0.06555631756782532, 0.018243318423628807, 0.011753481812775135, 0.019511377438902855, 0.01798013597726822, -0.03907060623168945, -0.016712075099349022, 0.1021147295832634, -0.004596718121320009, 0.05306712165474892, 0.001570121617987752, 0.029811376705765724, -0.005858796648681164, -0.007907431572675705, 0.01754947379231453, 0.005236729513853788, -0.027059925720095634, 0.022167127579450607, 0.08718511462211609, -0.00206807442009449, -0.031127287074923515, -0.0832134559750557, 0.06091473624110222, 0.041558876633644104, 0.04368826001882553, -0.0464157871901989, 0.003140243235975504, 0.0024030336644500494, 0.05660811811685562, -0.02221497893333435, -0.006286467891186476, -0.06574772298336029, -0.05096166208386421, -0.03033773973584175, 0.030696624889969826, -0.01362566463649273, 0.018171541392803192, 0.09431496262550354, 0.005278599448502064, 0.030840178951621056, -0.001567130908370018, -0.012297790497541428, 0.004267740063369274, -0.0034752024803310633, 0.028040876612067223, -0.008864457719027996, -0.05038744583725929, -0.0265814121812582, -0.010916084051132202, 0.04342507943511009, -0.01698722131550312, 0.01825528033077717, -0.00514700822532177, -0.019499415531754494, 0.02366248145699501, 0.013960624113678932, 0.012824155390262604, 0.04596119746565819, -0.0007241251296363771, -0.010425607673823833, 0.010210276581346989, -0.020420553162693977, 0.03914238512516022, 0.035338204354047775, 0.014666431583464146, 0.04285086318850517, 0.003968669567257166, 0.007327234372496605, -0.0024703247472643852, -0.04450173303484917, -0.002344714943319559, 0.006002350710332394, -0.03335237503051758, 0.00791341345757246, 0.00580795481801033, -0.014929614029824734, 0.024858763441443443, -0.006938442122191191, 0.024284547194838524, 0.026078972965478897, 0.05211009457707405, -0.01291985809803009, -0.01813565194606781, -0.027203477919101715, -0.019391749054193497, 0.010934027843177319, -0.02885434962809086, -0.005233738571405411, 0.002829209668561816, 0.07933750003576279, -0.027681991457939148, -0.009480544365942478, -0.01798013597726822, 0.012022645212709904, 0.02871079556643963, -0.014032401144504547, -0.03818535804748535, -0.0013308649649843574, 0.025432979688048363, 0.06359441578388214, 0.006717130076140165, 0.04009941220283508, 0.016927406191825867, -0.0734996348619461, -0.0037264220882207155, -0.041128214448690414, 0.030409516766667366, -0.0004942144732922316, 0.040434371680021286, -0.007859580218791962, -0.02842368744313717, 0.004904760979115963, 0.011502262204885483, 0.034022293984889984, 0.05397629737854004, -0.017082924023270607, -0.021700575947761536, 0.009229324758052826, -0.026748891919851303, 0.008039022795855999, -0.03488361835479736, -0.011639835312962532, -0.022262830287218094, -0.016436930745840073, -0.004450173117220402, 0.029931005090475082, 0.0020247092470526695, 0.04502809792757034, 0.048832278698682785, 0.05306712165474892, -0.004791114013642073, 0.023183967918157578, -0.01306341215968132, 0.0015551680698990822, 0.0560339018702507, -0.02567223645746708, -0.014618580229580402, -0.014247732236981392, 0.034907542169094086, -0.006280486471951008, 0.0028905190993100405, -0.018985014408826828, -0.00326585303992033, 0.03581671789288521, 0.007997152395546436, 0.017956210300326347, -0.07900253683328629, -0.0050064451061189175, 0.02191590704023838, 0.039692673832178116, -0.0015566634247079492, -0.02844761312007904, 0.0013032009592279792, -0.0020232137758284807, -0.02073158696293831, -0.011621890589594841, -0.014558766037225723, -0.022466197609901428, -0.014199880883097649, 0.023877812549471855, 0.002217609900981188, -0.029859228059649467, 0.059718456119298935, -0.02569616213440895, 0.0026946277357637882, 0.02221497893333435, -0.01666422374546528, -0.025720087811350822, -0.010880195535719395, -0.057660847902297974, -0.019631005823612213, -0.033735185861587524, -0.018518462777137756, 0.005787019617855549, -0.024463990703225136, 0.05278001353144646, 0.014857836998999119, -0.011777407489717007, 0.01886538602411747, 0.020516255870461464, 0.04799487814307213, 0.0026049064472317696, 0.009265213273465633, -0.02233460545539856, -0.007159754633903503, 0.009372878819704056, -0.0446452870965004, 0.00511710112914443, -0.00019944283121731132, -0.031868983060121536, -0.007052089087665081, 0.05005248636007309, -0.0018123689806088805, -0.0310555100440979, -0.036797668784856796, 0.014020438306033611, 0.0019678857643157244, -0.005102147813886404, 0.01211236696690321, -0.023770146071910858, -0.04371218755841255, -0.012872006744146347, 0.005359348375350237, 0.03296956419944763, -0.018937163054943085, -0.0022355541586875916, -0.014343434944748878, -0.043472930788993835, -0.02189198136329651, 0.03390266373753548, -0.011562076397240162, 0.006723111495375633, 0.010676827281713486, -0.01670011319220066, -0.007650230545550585, 0.007195643149316311, -0.03292171284556389, 0.01459465455263853, -0.059431347995996475, 0.033567704260349274, -0.009289138950407505, 0.08000741899013519, -0.00849959161132574, 0.00442624744027853, -0.0542634017765522, -0.016329264268279076, -0.007064051926136017, -0.035194650292396545, 0.008631182834506035, 0.01927212066948414, -0.004073344171047211, -0.0198941882699728, -0.01841079816222191, 0.005813936237245798, 0.006459929049015045, -0.023698369041085243, 0.030648773536086082, 0.009618116542696953, 0.001988820731639862, -0.05646456405520439, -0.01408025249838829, -0.031151212751865387, 0.035768866539001465, -0.00540719972923398, -0.01326678041368723, -0.0037353942170739174, 0.006860683672130108, -0.015121019445359707, -0.062302425503730774, -0.014211843721568584, 0.01393669843673706, -0.0429944172501564, -0.007177698891609907, 0.01684366725385189, 0.021868055686354637, 0.02320789359509945, -0.04703785479068756, 0.011938906274735928, -0.002497241133823991, 0.02247815951704979, 0.006842739414423704, -0.0064360033720731735, 0.020970843732357025, 0.03777862340211868, 0.03134261816740036, 0.00739901140332222, 0.017776766791939735, -0.0029473425820469856, 0.02190394513309002, -0.02887827530503273, -0.024140993133187294, -0.018638091161847115, 0.0065675945952534676, 0.03878349810838699, 0.05421555042266846, 0.02323181927204132, 0.01699918322265148, 0.011753481812775135, -0.00057122518774122, 0.006412077695131302, 0.014726245775818825, 0.0018676971085369587, -0.024320436641573906, -0.007446862757205963, 0.0208871029317379, -0.0062326351180672646, 0.01857827790081501, -0.02552868239581585, 0.03844853863120079, 0.002431445522233844, -0.06483854353427887, 0.05153587833046913, 0.022298717871308327, -0.021712539717555046, 0.02076747454702854, 0.016329264268279076, -0.018805570900440216, 0.00442624744027853, 0.03277815878391266, -0.00313725252635777, -0.010078685358166695, -0.022705454379320145, 0.0016090008430182934, -0.01060505025088787, -0.04134354740381241, -0.05756514519453049, 0.032419271767139435, 0.025863641873002052, -0.01744180917739868, 0.014774097129702568, -0.002498736372217536, 0.022693490609526634, 0.03347200155258179, 0.00395670672878623, -0.007189661730080843, -0.006334319245070219, 0.013458185829222202, 0.01626945100724697, -0.003855022368952632, -0.03488361835479736, 0.01343426015228033, 0.006077118217945099, -0.005963471718132496, -0.011669741943478584, -0.02001381665468216, -0.006056183483451605, 0.037539366632699966, 0.016054119914770126, 0.019379787147045135, -0.02117421105504036, -0.013278743252158165, -0.06761392205953598, -0.028519390150904655, -0.00029813620494678617, -0.013039486482739449, -0.02251404896378517, 0.013673515990376472, -0.007590416353195906, 0.0016104961978271604, 0.023913700133562088, -0.011340764351189137, -0.010796455666422844, 0.012596861459314823, -0.019977929070591927, -0.05344993248581886, 0.00980354007333517, -0.029069680720567703, -0.009695874527096748, 0.01985830068588257, -0.016460856422781944, -0.02174842730164528, -0.004835974425077438, -0.007428918499499559, 0.011669741943478584, -0.021401505917310715, 0.015778975561261177, 0.004800085909664631, 0.03775469586253166, -0.00014140440907794982, -0.013529962860047817, -0.031845059245824814, 0.0464157871901989, 0.035194650292396545, -0.01356585044413805, 0.008673053234815598, 0.01626945100724697, -0.006352263502776623, 0.02001381665468216, -0.027083851397037506, 0.0039028737228363752, -0.056799523532390594, 0.006262542214244604, -0.001978353364393115, -0.0351467989385128, 0.035338204354047775, 0.01960708014667034, 0.035314276814460754, -0.018973050639033318, 0.02059999667108059, 0.02074354887008667, 0.018805570900440216, 0.02725132927298546, -0.020576070994138718, 0.002491259714588523, -0.008385945111513138, -0.020970843732357025, -0.00016149823204614222, -1.4649795957666356e-05, 0.02308826521039009, -0.02135365456342697, -0.003200057428330183, -0.0162455253303051, -0.01190301775932312, -0.07292541861534119, 0.009241287596523762, -0.05880928039550781, 0.007817710749804974, -0.017920320853590965, -0.01859023980796337, -0.005505893379449844, 0.006896572187542915, -0.020121483132243156, -0.006776943802833557, 0.03990800678730011, -0.01343426015228033, 0.018985014408826828, -0.008613239042460918, -0.012728452682495117, 0.019511377438902855, -0.024332398548722267, 0.000679638353176415, 0.0040195113979279995, 0.03275423124432564, -0.032730307430028915, -0.012740415520966053, -0.02842368744313717, -0.027897322550415993, 0.012309753336012363, 0.02509802021086216, -0.001988820731639862, -0.04452566057443619, -0.023542853072285652, -0.012800229713320732, -0.018673980608582497, 0.017609287053346634, 0.06814029067754745, 0.002977249678224325, -0.02221497893333435, 0.0015865705208852887, -0.006938442122191191, -0.04309011995792389, 0.002132374793291092, 0.03775469586253166, -0.013900809921324253, 0.016915444284677505, 0.017812656238675117, -0.016652261838316917, -0.010658882558345795, 0.03871172294020653, -0.011568058282136917, 0.00465055089443922, 0.053928446024656296, -0.01385295856744051, -0.028662944212555885, 0.0028755655512213707, -0.006376189179718494, -0.007686119060963392, 0.04603297635912895, -0.015635421499609947, -0.0062386165373027325, 0.003499128157272935, -0.013757255859673023, 0.028471538797020912, -0.05024389177560806, 0.003331648651510477, 0.004629615694284439, -0.032132163643836975, 0.04832983762025833, -0.04285086318850517, -0.0008837541681714356, -0.05033959448337555, 0.011268987320363522, -0.033304523676633835, 0.02540905401110649, -0.009331008419394493, -0.002441912889480591, 0.01473820861428976, -0.012704527005553246, 0.008033040910959244, 0.022167127579450607, 0.00653170607984066, -0.0034034254495054483, -0.022454233840107918, -0.0005779542843811214, 0.018506500869989395, 0.01742984540760517, 0.024763060733675957, -1.2605366464413237e-05, -0.020815325900912285, 0.028351910412311554, 0.05775655061006546, -0.007817710749804974, -0.008774736896157265, -0.054072000086307526, 0.00872090458869934, 0.028950052335858345, -0.021126359701156616, 0.012441344559192657, 0.016915444284677505, 0.03919023647904396, 0.01569523476064205, -0.006842739414423704, -0.021293839439749718, -0.039979781955480576, -0.0223226435482502, -0.02990707941353321, 0.005245701409876347, 0.021856093779206276, -0.01029401645064354, 0.007704063318669796, -0.03440510481595993, -0.009959056973457336, -0.024045290425419807, 0.03383088856935501, -0.004058390390127897, -0.0005099156987853348, 0.0071418103761971, 0.004303628578782082, -0.012716489844024181, 0.00424979580566287, -0.0019648950546979904, 0.0059216017834842205, 0.010000927373766899, -0.009115677326917648, -0.0353621281683445, -0.029835302382707596, 0.001249368186108768, -8.399683792958967e-06, -0.004142130259424448, -0.01320696622133255, 0.007506676949560642, 0.02990707941353321, -0.010042796842753887, -0.01436736062169075, 0.017094885930418968, 0.0042438143864274025, -0.008098836988210678, 0.002086018677800894, 0.02276526764035225, -0.02478698641061783, 0.012596861459314823, 0.011047675274312496, -0.004228861071169376, 0.012243958190083504, 0.03485969081521034, -0.0035918401554226875, 0.03986015543341637, 0.020815325900912285, -0.024475952610373497, 0.021796278655529022, 0.011621890589594841, 0.02061195857822895, -0.000785060808993876, -0.032156091183423996, -0.020276999101042747, -0.016424966976046562, 0.019487451761960983, 0.028973978012800217, -0.03129476681351662, -0.023877812549471855, 0.0208871029317379, -0.007345178630203009, 0.03395051509141922, -0.0348118394613266, 0.007757896091789007, 0.007267420180141926, 0.00020822804071940482, 0.03366340696811676, -0.02670104056596756, 0.007590416353195906, -0.00950447004288435, -0.01558756921440363, 0.008924271911382675, -0.010246165096759796, 0.012136292643845081, 0.0039537157863378525, 0.003855022368952632, -0.03799395263195038, -0.0019185390556231141, 0.0028591167647391558, -0.012064515613019466, -0.003052017418667674, -0.02801695093512535, 0.0038819387555122375, -0.026055047288537025, 0.003965678624808788, -0.05325852707028389, -0.028519390150904655, 0.005218785256147385, -0.00184227607678622, 0.0006968349334783852, 0.009893261827528477, 0.017776766791939735, -0.0034662303514778614, 0.019104642793536186, -0.001631431165151298, -0.001140955020673573, 0.030648773536086082, 0.006860683672130108, 0.012991635128855705, -0.03452473133802414, 0.00739901140332222, -0.02044447883963585, -0.04378396272659302, -0.003633710090070963, 0.002283405512571335, 0.0010826362995430827, -0.0099470941349864, 0.01370940450578928, -0.0039537157863378525, 0.01710684970021248, -0.024033328518271446, -0.03261067718267441, -0.01929604634642601, 0.056368861347436905, 0.03986015543341637, 0.0029368752148002386, 0.03239534795284271, 0.04285086318850517, -0.011490299366414547, 0.023459112271666527, -0.0028247234877198935, -0.005730196367949247, -0.013230891898274422, -0.02015737071633339, -0.00913362205028534, 0.0023222847376018763, -0.011227116920053959, 0.008236409164965153, -0.025145871564745903, 0.005888703744858503, 0.005311497021466494, 0.035457830876111984, -0.017310217022895813, -0.005152989644557238, 0.019355861470103264, -0.01684366725385189, 0.03847246617078781, 0.013553887605667114, 0.005487949121743441, -0.006974330637603998, 0.037539366632699966, 0.006603483110666275, -0.010018871165812016, -0.019343897700309753, 0.05689522624015808, -0.017501622438430786, 0.012752378359436989, 0.012668638490140438, 0.014821948483586311, -0.0070879776030778885, -0.000291033269604668, -0.021712539717555046, -0.003696514992043376, 0.02495446614921093, 0.009211380034685135, -0.005057286936789751, -0.011268987320363522, 0.032849933952093124, -0.00011205808550585061, 0.023614630103111267, 0.0033854814246296883, 0.005996369291096926, 0.0004893545992672443, 0.017465734854340553, 0.00739901140332222, 0.001209741341881454, 0.03103158436715603, 0.01990615203976631, -0.022442271932959557, -0.03277815878391266, -0.029261086136102676, 0.021114397794008255, -0.015455977991223335, 0.014486989006400108, -0.0026826648972928524, -0.008344074711203575, 0.04947827011346817, -0.016568521037697792, 0.010114573873579502, 0.01580290123820305, -0.01125104259699583, -0.017633212730288506, 0.04191775992512703, 0.006848720833659172, -0.01362566463649273, 0.04411892220377922, 0.0455305352807045, 0.002769395476207137, 0.044166773557662964, -0.04151102527976036, 0.04335330054163933, -0.006346282083541155, 0.003415388287976384, -0.0038281059823930264, -0.026748891919851303, 0.03378303721547127, -0.05809151008725166, 0.0064360033720731735, 0.044334255158901215, -0.0047821421176195145, -0.030696624889969826, -0.0013420801842585206, 0.017453771084547043, -0.003203048137947917, 0.014187918044626713, 0.013972586952149868, 0.0015850751660764217, 0.047301035374403, 0.021939832717180252, 0.02495446614921093, 0.011932924389839172, 0.018339021131396294, 0.026940297335386276, -0.012154236435890198, -0.005712252110242844, 0.036630190908908844, -0.022669564932584763, 0.006352263502776623, -0.0016209636814892292, 0.007147791795432568, 0.01903286576271057, 0.028088727965950966, 0.03935771435499191, 0.009851391427218914, -0.00453690392896533, -0.04349685460329056, 0.04237234964966774, -0.019044827669858932, 0.008661090396344662, -0.0055597261525690556, -0.0009368392638862133, 0.0087866997346282, 0.0051589710637927055, -0.004794104490429163, -0.03103158436715603, 0.006609464529901743, -0.0025316341780126095, -0.013912772759795189, -0.019367823377251625, -0.013721367344260216, 0.008900346234440804, 0.014929614029824734, -0.01031196117401123, -0.04440603032708168, -0.01594645343720913, 0.01683170348405838, -0.003052017418667674, 0.03136654570698738, -0.005170933902263641, 0.0041570840403437614, 0.014451100490987301, 0.023291632533073425, 0.04466921091079712, 0.005879731848835945, 0.018027987331151962, 0.0008104818407446146, -0.0024060243740677834, -0.03710870444774628, -0.009289138950407505, 0.021975722163915634, 0.008385945111513138, 0.02410510554909706, 0.0030894011724740267, -0.03294563665986061, 0.0062445979565382, 0.04342507943511009, -0.008230428211390972, -0.02235853113234043, -0.0394534170627594, 0.01176544465124607, 0.03311311826109886, -0.04031474143266678, 0.0007069285493344069, -0.0028650981839746237, -0.0039537157863378525, -0.003986613359302282, -0.0055208466947078705, 0.024619506672024727, -0.021114397794008255, -0.03225179389119148, -0.0057182335294783115, -0.01725040376186371, -0.01975063420832157, 0.009977001696825027, -0.003256880911067128, -0.0016807778738439083, 0.010341867804527283, -0.032562825828790665, -0.00022467692906502634, -0.018339021131396294, 0.008009115234017372, 0.0007517891936004162, -0.05234935134649277, -0.01219610683619976, 0.03332844749093056, -0.016640298068523407, -0.0006074875127524137, 0.007267420180141926, -0.01277630403637886, 0.06742251664400101, 0.01942763850092888, 0.02916538342833519, -0.007859580218791962, -0.031940758228302, -0.013314631767570972, 0.02001381665468216, -0.021509170532226562, 0.004587745759636164, 0.022167127579450607, -0.029954930767416954, -0.006154876668006182, -0.01552775502204895, -0.03294563665986061, -0.012429381720721722, 0.011418522335588932, -0.004034464713186026, 0.005275608506053686, 0.02610289864242077, 0.003941752947866917, -0.013171077705919743, -0.006029266864061356, 0.020432516932487488, 0.01814761571586132, 0.006735074333846569, 0.013159114867448807, 0.009809521958231926, 0.008302205242216587, -0.007620323449373245, 0.009199417196214199, -0.03265852853655815, 0.04062577709555626, 0.02408117987215519, 0.019343897700309753, 0.025480831041932106, 0.03134261816740036, -0.02595934458076954, -0.0008867448777891695, 0.0033944533206522465, 0.028519390150904655, 0.011029730550944805, 0.046080827713012695, 0.0342615507543087, -0.012967709451913834, 0.02366248145699501, -0.02725132927298546, -0.03002670779824257, -0.00036617479054257274, 0.00019701287965290248, -0.032443199306726456, 0.0027394883800297976, 0.009588208980858326, 0.00899604894220829, -0.018039949238300323, 0.025193722918629646, 0.0020097556989639997, 0.004483071155846119, 0.00511710112914443, -0.012501158751547337, 0.01769302785396576, -0.039405565708875656, -0.016436930745840073, -0.022083386778831482, 0.009271194227039814, -0.014451100490987301, -0.019834375008940697, -0.005269627086818218, -0.021222062408924103, -0.015001391060650349, -0.011633853428065777, -0.013769218698143959, -0.00985737331211567, 0.012788266874849796, -0.01684366725385189, 0.06206316873431206, -0.0027305162511765957, -0.017381994053721428, -0.008547442965209484, 0.03060092218220234, 0.011897035874426365, 0.02019326016306877, 0.0021592911798506975, 0.02101869508624077, 0.05292356759309769, -0.024619506672024727, 0.03062484785914421, 0.022872934117913246, 0.0011334782466292381, 0.003905864432454109, 0.00869697891175747, 0.004453164059668779, 0.013733330182731152, 0.02219105325639248, 0.00026860294747166336, -0.024858763441443443, -0.03885527700185776, -0.009319045580923557, -0.0034752024803310633, -0.028519390150904655, -0.027681991457939148, 0.006615445949137211, 0.017728915438055992, 0.0025316341780126095, 0.020576070994138718, -0.022597787901759148, 0.01095795352011919, 0.009671948850154877, 0.037539366632699966, 0.011568058282136917, -0.02234656922519207, -0.02741880901157856, 0.01031196117401123, 0.04892798140645027, -0.018757719546556473, -0.015061205253005028, 0.015551680698990822, 0.005568698048591614, 0.03351985290646553, -0.0049615842290222645, 0.010186350904405117, 0.007865562103688717, -0.016209635883569717, 0.0036606264766305685, -0.023973513394594193, -0.035625312477350235, 0.003977641463279724, -0.020265037193894386, -0.011280950158834457, 0.006543668918311596, 0.025624385103583336, -0.00907380785793066, 0.0011873110197484493, -0.032012537121772766, -0.02237049490213394, 0.00797920860350132, -0.0028262189589440823, -0.03966875001788139, 0.04277908429503441, -0.009522413834929466, 0.0016553568420931697, -0.02452380396425724, -0.0037264220882207155, -0.005882722325623035, -0.001848257496021688, 0.017669102177023888, -0.03318489342927933, 0.008421833626925945, -0.008326130919158459, 0.009420730173587799, 0.008894365280866623, 0.006830776575952768, 0.013482111506164074, -0.020934954285621643, -0.028399761766195297, -0.042324498295784, -0.015061205253005028, 0.03830498456954956, 0.06555631756782532, -0.0033854814246296883, 0.02160487323999405, -0.006489836145192385, 0.03701300173997879, -0.015934491530060768, 0.01637711562216282, -0.015719160437583923, -0.02250208519399166, 0.019116604700684547, -0.011340764351189137, -0.011849184520542622, 0.004462135955691338, -0.02148524485528469, -0.02772984281182289, 0.010282053612172604, 0.005993378348648548, 0.016867592930793762, -0.021437393501400948, 8.35879473015666e-06, 0.005218785256147385, 0.03019418753683567, -0.016724038869142532, -0.012860043905675411, 0.023435186594724655, -0.016317302361130714, -0.011747500859200954, -0.022262830287218094, 0.0010086161782965064, 0.010718696750700474, -0.00736910430714488, -0.02277723141014576, -0.011693667620420456, 0.009241287596523762, -0.012572935782372952, 0.003439313964918256, 0.001574607682414353, 0.024571655318140984, 0.018219392746686935, -0.004055399913340807, 0.012788266874849796, -0.0007248728070408106, -0.0039537157863378525, -0.03452473133802414, 0.016042156144976616, 0.019559228792786598, -0.009253250434994698, 0.026174675673246384, 0.030816253274679184, 0.009624097496271133, 0.0027320117224007845, 0.04632008448243141, -0.027466660365462303, 0.008158651180565357, -0.034907542169094086, 0.0026796741876751184, 0.03935771435499191, 0.01089215837419033, 0.0013323603197932243, 0.005090184975415468, -0.0029593054205179214, -0.02744273468852043, 0.0362473800778389, -0.012501158751547337, -0.03208431228995323, 0.005879731848835945, 0.002767900237813592, -0.015216721221804619, 0.01698722131550312, -0.005721224006265402, 0.0005211308598518372, 0.02595934458076954, -0.03550568222999573, -0.0035409980919212103, -0.0003248656284995377, 0.0154440151527524, -0.00791341345757246, 0.010682808235287666, 0.01711881160736084, -0.005335422698408365, -0.006561613176018, 0.021592911332845688, 0.008679034188389778, -0.01002485305070877, 0.016173748299479485, 0.016736000776290894, -0.013601738959550858, 0.022729380056262016, -0.010922065004706383, 0.022585825994610786, -0.0065675945952534676, -0.050722405314445496, -0.009115677326917648, 0.015061205253005028, 0.03177328035235405, -0.03631915524601936, -0.00497055659070611, 0.02032485045492649, -0.005314487963914871, -0.001464699162170291, -0.03440510481595993, -0.00994111318141222, 0.004055399913340807, 0.026078972965478897, -0.020133445039391518, 0.010910102166235447, -0.00751265836879611, 0.03672589361667633, 0.005757112521678209, 0.02772984281182289, -0.06900161504745483, -0.006741055753082037, -0.030959807336330414, -0.008942216634750366, 0.0031701503321528435, 0.046367935836315155, 0.005446079187095165, 0.019798485562205315, 0.007183680310845375, -0.011340764351189137, -0.047803476452827454, -0.014439137652516365, -0.04667896777391434, -0.0008830064907670021, 0.0053174784407019615, 0.011352727189660072, -0.013506037183105946, 0.042300570756196976, 0.0059216017834842205, -0.006394133437424898, 0.02701207436621189, 0.043329376727342606, -0.04459743574261665, -0.007410974241793156, -0.01697525754570961, 0.010760567151010036, -0.0528278648853302, -0.004779151175171137, 0.013960624113678932, 0.04639185965061188, -0.03914238512516022, 0.006537687499076128, 0.029213234782218933, -0.007530602626502514, 0.004641578532755375, 0.03495539352297783, -0.01623356156051159, 0.018817534670233727, -0.013458185829222202, 0.009121659211814404, -0.017154701054096222, -0.0353621281683445, -0.016879554837942123, -0.03253890201449394, 0.002404529135674238, 0.004955602809786797, -0.017920320853590965, -0.0264139324426651, 0.023004524409770966, -0.02321985550224781, -0.018398834392428398, 0.003206038847565651, 0.003424360416829586, -0.018063874915242195, -0.019619043916463852, -0.003206038847565651, -0.01857827790081501, -0.002842667745426297, -0.006184783764183521, -0.010479439981281757, -0.004509987309575081, -0.0038849294651299715, 0.016173748299479485, -0.021963758394122124, 0.023016488179564476, 0.028543315827846527, -0.020396627485752106, -0.0076023791916668415, -0.03775469586253166, 0.044621363282203674, 0.018231354653835297, 0.04036259278655052, 0.03277815878391266, -0.0016179729718714952, 0.013410334475338459, -0.016078045591711998, -0.02134169079363346, -0.029117532074451447, 0.00014813350571785122, -0.011436467058956623, 0.021545059978961945, -0.017908358946442604, 0.03165365383028984, -0.025767939165234566, 0.018913237378001213, -0.009438673965632915, 0.0076741562224924564, 0.023722294718027115, 0.022143201902508736, 0.0005480471882037818, -0.021712539717555046, 0.016078045591711998, 0.024571655318140984, 0.008439777418971062, -0.0020561115816235542, -0.00398960430175066, -0.003146224655210972, 0.026318229734897614, -0.008110799826681614, 0.008601276203989983, 0.02177235297858715, -0.0006901058368384838, 0.035744938999414444, 0.0014512409688904881, -0.0016927407123148441, 0.004294656682759523, -0.02436828799545765, -0.010503365658223629, 0.006603483110666275, -0.0017420873045921326, -0.00040636243647895753, -0.025026243180036545, 0.02976352535188198, 0.02192787081003189, -0.018793608993291855, 0.021820204332470894, -0.021808242425322533, -0.01899697631597519, 0.011897035874426365, -0.029285011813044548, -0.041439250111579895, 0.008864457719027996, 0.028782572597265244, -0.010018871165812016, -0.002696123206987977, 0.0013286219909787178, 0.025863641873002052, -0.016747964546084404, -0.009648023173213005, -0.010886176489293575, -0.03701300173997879, -0.0029024819377809763, -0.012680601328611374, -0.024858763441443443, 0.014750171452760696, -0.04110429063439369, -0.004252786748111248, -0.009372878819704056, -0.0065017989836633205, 0.04002763330936432, -0.059574902057647705, -0.022083386778831482, 0.0467507466673851, -0.018051913008093834, -0.012231995351612568, 0.0034542675130069256, -0.018817534670233727, -0.023148078471422195, 0.014247732236981392, -0.01385295856744051, 0.012668638490140438, -0.0005839357036165893, -0.0011828249553218484, 0.020396627485752106, 0.006184783764183521, 0.01844668574631214, -0.0002009381860261783, 0.017884433269500732, 0.018039949238300323, -0.024320436641573906, -0.02321985550224781, 0.024763060733675957, -0.008074911311268806, 0.0008912309422157705, 0.008230428211390972, 0.028758646920323372, -0.032419271767139435, 0.007704063318669796, 0.009618116542696953, 0.00963606033474207, 0.011209173128008842, 0.024308472871780396, -0.0446452870965004, -0.011807315051555634, 0.02277723141014576, 0.015599532052874565, -0.0033884719014167786, -0.0041780187748372555, 0.020133445039391518, 0.011089544743299484, -0.006376189179718494, 0.0021099443547427654, -0.02961997129023075, -0.002350696362555027, -0.026605337858200073, -0.027921248227357864, 0.016759926453232765, -0.00725545734167099, -0.04009941220283508, 0.016030194237828255, -0.024284547194838524, 0.006729092914611101, -0.019977929070591927, 0.005176915321499109, 0.02276526764035225, 0.01552775502204895], [-0.0315411277115345, -0.008449402637779713, 0.02116379886865616, -0.015212642960250378, -0.03473987430334091, -0.016440069302916527, 0.03469028323888779, 0.03627725690603256, 0.04599747806787491, 0.02707776054739952, -0.026284273713827133, -0.011486971750855446, 0.01253462303429842, -0.04150931537151337, -0.03518621250987053, 0.0007888381951488554, 0.009745018556714058, 0.014022411778569221, 0.007407949771732092, 0.02987976372241974, -0.014505943283438683, 0.012720596976578236, -0.011208010837435722, 0.0053839366883039474, -0.02461051195859909, 0.027623284608125687, 0.049964915961027145, 0.005743485875427723, 0.03540937975049019, -0.06933096796274185, 0.02578834444284439, -0.02987976372241974, 0.014034810476005077, -0.01963881589472294, 0.03640123829245567, 0.011009639129042625, -0.05494901165366173, 0.018324602395296097, 0.00197287043556571, -0.04145972430706024, -0.02544119395315647, 0.007866684347391129, 0.005690793041139841, -0.07562927901744843, -0.019390851259231567, 0.07042201608419418, 0.013154535554349422, 0.0060286452062428, 0.013923225924372673, 0.04304669797420502, 0.01394802238792181, 0.002240982372313738, -0.045030415058135986, 0.030772438272833824, 0.027474505826830864, 0.01511345710605383, -0.025032050907611847, 0.048774685710668564, 0.03873210772871971, -0.04106297716498375, 0.0029585305601358414, -0.01732034422457218, 0.02482128143310547, 0.01751871593296528, -0.009521850384771824, -0.010792669840157032, 0.040914200246334076, 0.036202866584062576, -0.01564658246934414, 0.007290166337043047, -0.06303266435861588, 0.033128105103969574, -0.006161926314234734, -0.06516516208648682, -0.018634557723999023, 0.0536595918238163, 0.02544119395315647, -0.0029833270236849785, 0.02178371138870716, -0.008027861826121807, -0.011629551649093628, 0.0029430328868329525, -0.0015947239007800817, 0.06253673136234283, -0.02401539497077465, 5.022256664233282e-05, -0.03756667301058769, 0.017270751297473907, 0.006781838368624449, -0.01717156544327736, 0.0057961782440543175, -0.020395109429955482, 0.023742634803056717, 0.03563254699110985, 0.009707823395729065, -0.0028686432633548975, -0.004103818442672491, -0.011561361141502857, -0.04309628903865814, 0.06169365346431732, 0.0030499675776809454, -0.009490854106843472, -0.0061371298506855965, 0.020097550004720688, -0.040418270975351334, -0.03072284534573555, -0.04505521431565285, 0.05470104515552521, 0.03568214178085327, -0.034169554710388184, -0.013439694419503212, 0.02826799266040325, -0.04498082399368286, 0.012274259701371193, 0.01146837417036295, 0.014555536210536957, 0.0005168517236597836, 0.007463742047548294, 0.019961170852184296, -0.036178071051836014, -0.003273135982453823, -0.0369715578854084, 0.016402874141931534, -0.06030505150556564, -0.004717531148344278, 0.0022502809297293425, -0.03508702665567398, -0.02648264542222023, -0.02695377916097641, 0.021374570205807686, 0.027722470462322235, -0.04049266129732132, 0.07146346569061279, -0.03898007422685623, 0.0027570591773837805, -0.022874757647514343, 0.055494531989097595, 0.008083653636276722, -0.03327688202261925, -0.025614768266677856, 0.03268176689743996, -0.026061104610562325, 0.030549269169569016, -0.00260208104737103, -0.0102409478276968, 0.055048197507858276, -0.006645457819104195, 0.03729391470551491, 0.004240198992192745, -0.002956980839371681, -0.035012636333703995, 0.014890288934111595, 0.020407507196068764, -0.006583466660231352, 0.034070368856191635, 0.048080384731292725, -0.003180149244144559, 0.0015730269951745868, 0.011654348112642765, 0.011914710514247417, -0.04386498034000397, -0.009992983192205429, -0.013576075434684753, -0.04106297716498375, 0.02272597886621952, 0.023345889523625374, 5.487190719577484e-05, 0.02389141358435154, -0.06496679037809372, -0.035235803574323654, -0.009137504734098911, -0.02258959785103798, -0.012168874964118004, -0.005737286526709795, 0.01647726446390152, -0.017357539385557175, -0.006515276152640581, 0.05663517117500305, 0.03168990835547447, -0.017456725239753723, 0.043269865214824677, 0.041137367486953735, -0.04609666392207146, 0.014468749053776264, -0.03268176689743996, 0.025689158588647842, -0.014704315923154354, -0.0062859090976417065, 0.0024703498929739, 0.0426003597676754, 0.03248339518904686, 0.002354116179049015, -0.0012607462704181671, 0.051725465804338455, 0.012255663052201271, -0.04039347544312477, -0.009813209064304829, -0.06223917752504349, 0.03483906015753746, -0.010290540754795074, 0.05003930628299713, 0.008839947171509266, 0.0005478473613038659, -0.0023696140851825476, 0.0057496847584843636, -0.007116591092199087, 0.04922102391719818, -0.03907926008105278, 0.01905609853565693, 0.05380837246775627, 0.027871249243617058, -0.025044450536370277, -0.06695050746202469, 0.00875935796648264, -0.055593717843294144, 0.004392077215015888, -0.023581456393003464, 0.007606321480125189, -0.022292040288448334, -0.003843455109745264, 0.022502809762954712, -0.0665537640452385, 0.024424538016319275, -0.0027121154125779867, -0.025280015543103218, -0.026755407452583313, -0.01177213154733181, 0.03615327551960945, 0.002543189562857151, -0.03756667301058769, -0.032185837626457214, 0.027821656316518784, -0.015200245194137096, -0.034318335354328156, -0.014233182184398174, 0.0322602279484272, -0.013724854215979576, -0.02987976372241974, -0.0021619435865432024, -0.03987274691462517, 0.056783951818943024, 0.01991157792508602, -0.03126836568117142, 0.04569992050528526, -0.008970128372311592, -0.01847338117659092, -0.021002622321248055, -0.027028167620301247, 0.029607003554701805, -0.0169483982026577, 0.024052590131759644, -0.0247344933450222, 0.028094416484236717, -0.05261814221739769, 0.03503743186593056, 0.059263598173856735, 0.0008841496892273426, 0.003862052457407117, 0.046319834887981415, -0.046766169369220734, -0.003570693777874112, 0.012330052442848682, -0.013377703726291656, 0.0643220841884613, -0.009466057643294334, -0.008226233534514904, 0.06928137689828873, -0.022267242893576622, -0.010464116930961609, -0.0020720562897622585, -0.03531019389629364, -0.015956537798047066, 0.023383084684610367, -0.04307149350643158, -0.04716291278600693, -0.00338472006842494, 0.013625668361783028, -0.014208385720849037, -0.025713954120874405, 0.02953261323273182, -0.05663517117500305, -0.020853843539953232, 0.030921217054128647, -0.05098157376050949, -0.012261861935257912, -0.01023474894464016, 0.042079634964466095, 0.04287312179803848, -0.00038085851701907814, 0.04029428958892822, 0.01683681271970272, -0.025106441229581833, 0.02859034761786461, -0.011183214373886585, 0.011418781243264675, -0.0015071613015607, -0.0458734966814518, 0.010761674493551254, -0.02824319526553154, 0.009404066950082779, -0.00841840635985136, -0.001370005775243044, -0.0066268607042729855, 0.01987438276410103, -0.05450267344713211, 0.045005619525909424, -0.017245955765247345, 0.027276134118437767, -0.030078135430812836, 0.010321537032723427, -0.0008709765388630331, 0.05122953653335571, -0.046543002128601074, -0.024164173752069473, 0.011691542342305183, -0.01507626287639141, -0.01088565681129694, 0.00034347004839219153, -0.03776504471898079, 0.014617527835071087, 0.06293347477912903, -0.037393100559711456, 0.017481522634625435, -0.03473987430334091, 0.06700009852647781, -0.03684757649898529, 0.0400463230907917, 0.007011205889284611, -0.031615518033504486, -0.01154276356101036, -0.048204366117715836, -0.05162627995014191, 0.014381960965692997, -0.05861888825893402, -0.018275009468197823, -0.0249328650534153, 0.00594495702534914, 0.008697367273271084, 0.0022053373977541924, 0.012106883339583874, 0.02271357923746109, -0.025986716151237488, -0.03156592696905136, -0.006564869545400143, -0.00882134959101677, 0.0329793244600296, 0.007116591092199087, 0.026805000379681587, 0.05604005604982376, 0.03845934942364693, -0.005104976240545511, 0.005600905977189541, 0.02883831225335598, -0.029408631846308708, -0.03615327551960945, -0.054304301738739014, 0.024089785292744637, -0.025366803631186485, -0.013402500189840794, 0.03650042414665222, -0.012559419497847557, 0.01963881589472294, 0.0027539595030248165, 0.0037876630667597055, -0.036897167563438416, 0.004596648272126913, 0.006986409425735474, -0.04438570886850357, -0.005393235478550196, -0.0034436117857694626, -0.003067015204578638, -0.008058857172727585, -0.008864743635058403, -0.03235941380262375, -0.04671657830476761, -0.018634557723999023, 0.021114205941557884, 0.03129316493868828, 0.002034861594438553, 0.004475765395909548, 0.02246561460196972, -0.06461963802576065, 0.02035791426897049, 0.031169181689620018, 0.030623659491539, -0.015844954177737236, -0.04540236294269562, 0.01634088344871998, 0.03930242732167244, -0.029359038919210434, -0.015212642960250378, 0.024226166307926178, 0.013241322711110115, 0.018163425847887993, -0.024746891111135483, -0.03223542869091034, 0.041385333985090256, 0.041484519839286804, -0.01718396320939064, -0.03178909420967102, -0.011480772867798805, -0.03496304526925087, 0.00022936749155633152, -0.022763172164559364, 0.017741885036230087, 0.008542388677597046, -0.0005153019446879625, -0.012199870310723782, 0.025862732902169228, -0.01743192970752716, 0.00429289136081934, -0.027524098753929138, 0.014679519459605217, 0.013402500189840794, 0.031714703887701035, 0.0520230233669281, 0.004159610252827406, 0.022515207529067993, 0.002888790564611554, 0.0034188153222203255, -0.015534997917711735, 0.023705439642071724, 0.0329793244600296, 0.0235566608607769, -0.0690334141254425, 0.007922477088868618, 0.0037194727919995785, -0.027350522577762604, -0.027474505826830864, -0.06883504241704941, -0.0001475197059335187, 0.013303314335644245, 0.0723065510392189, 0.07280247658491135, -0.010371129959821701, 0.024176573380827904, -0.007463742047548294, -0.015026669949293137, -0.017270751297473907, 0.01660124585032463, -0.04716291278600693, -0.012243264354765415, 0.016278892755508423, 0.025738751515746117, -0.022552402690052986, 0.033376067876815796, -0.04098859056830406, 0.011344391852617264, 0.01123280730098486, 0.009794611483812332, -0.022540004923939705, -0.007519533857703209, -0.039971932768821716, 0.004977894481271505, 0.00435798242688179, -0.0025044449139386415, -0.014468749053776264, -0.025044450536370277, 0.035260602831840515, 0.006713648326694965, -0.006490479689091444, 0.013638067059218884, 0.013960421085357666, 0.02070506475865841, 0.01171633880585432, 0.021585339680314064, 0.012330052442848682, 0.01849817857146263, -0.018870124593377113, -0.01517544873058796, 0.023866616189479828, 0.009534248150885105, 0.0329793244600296, 0.021833304315805435, -0.0014048758894205093, 0.010736878030002117, -0.03434313088655472, -0.058420516550540924, -0.013241322711110115, -0.020643074065446854, 0.02296154573559761, 0.031590722501277924, 0.010730679146945477, 0.04329466074705124, 0.027846451848745346, 0.019043700769543648, 0.05871807783842087, -0.0055668107233941555, -0.026557035744190216, -0.06650417298078537, -0.004838414024561644, 0.027102557942271233, -0.02707776054739952, -0.01213167980313301, -0.024573316797614098, 0.013166933320462704, -0.005418031942099333, -0.02707776054739952, 0.029706189408898354, 0.0025555877946317196, 0.0435178317129612, -0.03726911544799805, 0.056089647114276886, -0.032185837626457214, 0.016303688287734985, -0.011133621446788311, -0.042203616350889206, -0.011177015490829945, 0.017506318166851997, 0.0013111141743138433, -0.04882427677512169, -0.0017032085452228785, 0.03627725690603256, 0.009974385611712933, -0.011369188316166401, -0.019725603982806206, 0.020928233861923218, 0.035731732845306396, -0.03260737657546997, -0.0011615602998062968, 0.011747335083782673, 0.027623284608125687, 0.005129772704094648, -0.008784154430031776, -0.002544739283621311, 0.012658605352044106, -0.005393235478550196, -0.054205115884542465, 0.007525733206421137, -0.03992234170436859, -0.007184781599789858, -0.059858713299036026, -0.03803780674934387, 0.04356742277741432, -0.004605947062373161, 0.011964304372668266, 0.0025974318850785494, 0.04141012951731682, -0.017940256744623184, -0.01541101559996605, 0.03429353982210159, -0.0003033694811165333, 0.02344507724046707, 0.014927484095096588, 0.02001076377928257, -0.018857726827263832, 0.019725603982806206, -0.001896931091323495, 0.0023603152949362993, -0.008511393330991268, 0.009986784309148788, 0.006701250094920397, -0.002567986026406288, 0.012280459515750408, -0.023383084684610367, -0.025218024849891663, 0.05227098986506462, -0.01600613072514534, 0.03166511282324791, 0.018783336505293846, -0.0028066521044820547, 0.025465989485383034, 0.00511737447232008, -0.011927109211683273, -0.012218467891216278, 0.015919342637062073, -0.011437378823757172, -0.010284341871738434, 0.003911645617336035, -0.005997649859637022, -0.0029693790711462498, 0.05787499621510506, 0.02987976372241974, 0.01524983812123537, 0.05271732807159424, 0.025639565661549568, 0.03268176689743996, -0.02588753029704094, -0.020891038700938225, -0.0024657004978507757, 0.025813139975070953, 0.016973193734884262, 0.04118696227669716, -0.04250117391347885, 0.006868626456707716, 0.00975741632282734, 0.010687285102903843, -0.005988351069390774, -0.037244319915771484, 0.05026247352361679, 0.012621411122381687, -0.016291290521621704, 0.027945637702941895, 0.011412582360208035, -0.00947225745767355, 0.018510576337575912, -0.03310330584645271, 0.00765591487288475, -0.004971695132553577, 0.021746518090367317, -0.013228924944996834, -0.02225484512746334, -0.022750774398446083, 0.002851595636457205, -4.1408191464142874e-05, -0.005861269310116768, -0.006416090298444033, -0.013910828158259392, -0.003071664599701762, 0.007550529669970274, 0.038533736020326614, 0.00995578896254301, -0.003914745058864355, -0.02436254546046257, -0.011834122240543365, -0.024089785292744637, -0.004026329144835472, -0.038087401539087296, -0.025131236761808395, -0.0042030042968690395, 0.025391601026058197, 0.03084682673215866, 0.026681017130613327, 0.012491228990256786, -0.030400490388274193, -0.01006737258285284, -0.003273135982453823, -0.047014135867357254, 0.04498082399368286, -0.010414524003863335, -0.027474505826830864, 0.015795361250638962, -0.041732482612133026, 0.0010794219560921192, -0.020221533253788948, 0.004240198992192745, 0.0023215708788484335, 0.029135869815945625, -0.0064780814573168755, 0.017097176983952522, 0.04599747806787491, 0.007686910219490528, 0.020519090816378593, -0.024796484038233757, 0.02576354704797268, 0.06541312485933304, 0.012894172221422195, 0.016886405646800995, -0.013985217548906803, -0.008467999286949635, 0.0411621630191803, -0.022639190778136253, 0.02893749810755253, -0.017630301415920258, 0.020655471831560135, -0.018783336505293846, -0.026333866640925407, 0.04981613904237747, 0.023023536428809166, -0.0038744506891816854, -0.024771688506007195, -0.014927484095096588, 0.007556728553026915, -0.028193602338433266, 0.010389727540314198, 0.013228924944996834, 0.046766169369220734, -0.03578132763504982, 0.01977519690990448, -0.008852344937622547, -0.038657721132040024, -0.015163050033152103, 0.008765557780861855, -0.011592356488108635, -0.03848414495587349, -0.02224244736135006, -0.007432746235281229, 0.022626793012022972, -0.017605504021048546, 0.03273136168718338, -0.03833536431193352, -0.015820156782865524, 0.004578051157295704, 0.04034388065338135, 0.03588051348924637, -0.0005993775557726622, 0.004128614906221628, -0.02990456111729145, -0.0030096734408289194, 0.009447460994124413, -0.006316904444247484, 0.03097080998122692, 0.02625947818160057, -0.003979835659265518, 0.028441568836569786, -0.03726911544799805, -0.020047957077622414, 0.0016071221325546503, -0.00024564017076045275, 0.018312204629182816, -0.003344425931572914, 0.032409004867076874, -0.005396334920078516, -0.07870404422283173, 0.02297394350171089, 0.04341864585876465, -0.03332647681236267, 0.0026206783950328827, 0.04753486067056656, -0.008300622925162315, -0.04009591415524483, -0.007786096073687077, -0.010445519350469112, 0.013266119174659252, -0.016650838777422905, -0.00835021585226059, -0.018535371869802475, -0.0197627991437912, -0.001759000588208437, 0.004841513466089964, -0.03540937975049019, 0.018101433292031288, -0.036773186177015305, -0.015101059339940548, 0.02670581452548504, -0.02730092965066433, -0.0002590070362202823, -0.010017779655754566, -0.012162676081061363, 0.03084682673215866, 0.026805000379681587, 0.0072219762951135635, 0.01823781430721283, 0.02082904800772667, 0.0019170782761648297, 0.048774685710668564, -0.05063442140817642, 0.03166511282324791, -0.0014505943981930614, 0.007860485464334488, 0.018460983410477638, -0.03885609284043312, -0.028416771441698074, -0.044906433671712875, -0.0074203480035066605, -0.0033568241633474827, 0.04059184715151787, 0.04217882081866264, -0.03035089746117592, 0.006211519241333008, -0.012918968684971333, 0.008560986258089542, -0.07245533168315887, 0.006202220916748047, -0.020283523947000504, -0.0060565415769815445, 0.012931366451084614, -0.012980959378182888, -0.0025214925408363342, -9.715185296954587e-05, 0.03563254699110985, -0.02117619849741459, -0.016514459624886513, -0.0014118498656898737, -0.028292790055274963, 0.0232962965965271, -0.03223542869091034, 0.024808883666992188, 0.0005846546264365315, 0.004928301554173231, -0.0012390493648126721, -0.019564425572752953, 0.03893047943711281, -0.009943390265107155, -0.01575816608965397, -0.013067747466266155, -0.02364344894886017, -0.0038093600887805223, -0.02449892647564411, -0.03126836568117142, 0.004429271910339594, -0.017022786661982536, -0.019861984997987747, 0.019254470244050026, 0.020804250612854958, -0.032409004867076874, 0.000936842174269259, -0.008684968575835228, 0.05975952744483948, 0.0090631153434515, 0.012745393440127373, 0.0013800793094560504, -0.011976702138781548, 0.0027539595030248165, -0.01811383292078972, -0.025589972734451294, -0.005709390621632338, -0.0235566608607769, -0.020271126180887222, 0.03424394503235817, 0.009081712923943996, -0.010526107624173164, -0.020767055451869965, 0.011858918704092503, 0.0550977885723114, -0.038558535277843475, -0.035483770072460175, 0.0161301139742136, 0.019390851259231567, -0.03156592696905136, -0.008746960200369358, -0.009639633819460869, 0.03002854250371456, 0.026656221598386765, 0.038186587393283844, -0.04812997579574585, -0.008709765039384365, 0.015919342637062073, -0.001624169759452343, -0.024994855746626854, 0.02705296501517296, -0.01288177352398634, 0.020444702357053757, -0.005619503557682037, 0.023110324516892433, -0.0283671785145998, -0.029507817700505257, -0.01802704483270645, 0.012106883339583874, 0.0040201302617788315, 0.06442126631736755, -0.015299431048333645, 0.020977826789021492, -0.010972444899380207, 0.008337818086147308, 0.013253721408545971, -0.018684150651097298, 0.004388977773487568, -0.0001104218463297002, 0.041955653578042984, 0.02401539497077465, -0.026085902005434036, 0.020754657685756683, 0.0169483982026577, -0.010941448621451855, 0.035359788686037064, 0.005160768516361713, 0.026333866640925407, 0.010557102970778942, 0.026879388839006424, -0.0005889165331609547, -0.02296154573559761, 0.004612145945429802, 0.016997991129755974, -0.005163867957890034, -0.0482291616499424, 0.005653598345816135, -0.023234305903315544, -0.025813139975070953, -0.02767287753522396, -0.03945120796561241, -0.021510951220989227, 0.03345045819878578, 0.02106461301445961, 0.00800926424562931, 0.023866616189479828, -0.020630674436688423, -0.010681086219847202, 0.023755032569169998, 0.008542388677597046, 0.010315337218344212, 0.011517967097461224, -0.014989474788308144, -0.01154276356101036, 0.011790728196501732, -0.03483906015753746, -0.016551652923226357, 0.03699635714292526, 0.01366286352276802, 0.04441050440073013, -0.060800980776548386, 0.004345583729445934, 0.022068871185183525, 0.01683681271970272, -0.0060906363651156425, 0.012026295065879822, -0.003499403828755021, 0.06511557102203369, 0.04272434487938881, -0.023854218423366547, 0.013204128481447697, 0.02506924606859684, 0.01360087189823389, 0.015497802756726742, 0.016626043245196342, -0.005864368751645088, 0.007916278205811977, -0.010526107624173164, -0.014964678324759007, 0.022998739033937454, -0.014295173808932304, -0.009906196035444736, -0.04401376098394394, -0.02531721070408821, -0.025515582412481308, 0.0035582955460995436, 0.0066826525144279, -0.02509404346346855, 0.002008515177294612, -0.02930944412946701, -0.013402500189840794, 0.020754657685756683, 0.00064005923923105, 0.03258258104324341, 0.04247637838125229, 0.021250586956739426, -0.02249041199684143, -0.005259954370558262, 0.02670581452548504, 0.008201437070965767, 0.03669879585504532, -0.016787219792604446, -0.021634932607412338, -0.024449333548545837, 0.008226233534514904, 0.0007725654868409038, -0.018907319754362106, 0.02789604477584362, -0.013576075434684753, 0.0014288974925875664, 0.0022115365136414766, 0.02470969781279564, -0.003020521719008684, -0.007166184019297361, -0.0320618562400341, -0.016787219792604446, 0.015299431048333645, 0.009038318879902363, 0.02943342737853527, -0.028193602338433266, 0.027102557942271233, -0.010098368860781193, -0.014084403403103352, 0.0017744984943419695, -0.03498784080147743, -0.01012936420738697, 0.04061664268374443, 0.0017651997040957212, 0.00013008467794861645, -0.005101876799017191, -0.0038992471527308226, -0.010997241362929344, 0.018436186015605927, -0.01288177352398634, 0.00618362333625555, 0.012274259701371193, 0.03072284534573555, 0.004633842967450619, 0.008046459406614304, 0.01944044418632984, -0.014319970272481441, 0.04329466074705124, 0.0331776961684227, -0.024647705256938934, 0.024387342855334282, 0.0037101740017533302, 0.017865866422653198, -0.04145972430706024, 0.004680336453020573, 0.026557035744190216, -0.026780202984809875, -0.015101059339940548, 0.02906147949397564, 0.0017311045667156577, 0.01813862845301628, 0.0011700841132551432, 0.01776668056845665, 0.01661364547908306, 0.00676324125379324, 0.006558670196682215, 0.003846554784104228, 0.01123280730098486, -0.0030267208348959684, 0.012906569987535477, -0.009025920182466507, 0.027028167620301247, 0.025379201397299767, -0.0016861609183251858, -0.0049561974592506886, 0.018460983410477638, 0.023804625496268272, 0.010674886405467987, 0.03342566266655922, 0.06794236600399017, -0.01259661465883255, 0.027449708431959152, 0.030301304534077644, 0.027697673067450523, 0.0026811198331415653, -0.00800306536257267, -0.006806635297834873, -0.01847338117659092, 0.006010048091411591, 0.007073197513818741, 0.036550018936395645, -0.022874757647514343, 0.02482128143310547, 0.0015753516927361488, -0.01883292943239212, 0.012317653745412827, 0.018882522359490395, -0.026061104610562325, 0.011164617724716663, 0.04108777642250061, -0.04131094366312027, -0.017382334917783737, 0.009794611483812332, -0.0501880869269371, -0.008189039304852486, 0.03404557332396507, 0.02108941040933132, 0.030524473637342453, -0.006295207422226667, 0.003713273676112294, -0.004788821097463369, -0.005151469726115465, 0.039723969995975494, 0.011914710514247417, 0.0033258285839110613, 0.01729554869234562, -0.015225041657686234, 0.009267685934901237, 0.007922477088868618, 0.02165973000228405, -0.0010197554947808385, 0.037393100559711456, -0.005390136037021875, 0.015324227511882782, -0.016266493126749992, -0.004159610252827406, -0.011598555371165276, -0.0016644640127196908, -0.03283054754137993, 0.00858578272163868, -0.01790306158363819, 0.016440069302916527, 0.011902312748134136, 0.027102557942271233, -0.004320787265896797, -0.00982560683041811, -0.006757041905075312, 0.01177213154733181, -0.03310330584645271, -0.002265778835862875, 0.014096801169216633, -0.030549269169569016, -0.015361422672867775, -0.02225484512746334, 0.011400183662772179, -0.026061104610562325, 0.05718069523572922, -0.02435014769434929, 0.0008291324484162033, -0.011858918704092503, 0.03883129358291626, -0.02142416313290596, 0.010829865001142025, -0.010110766626894474, 0.006258012726902962, 0.006571068428456783, -0.0017326544038951397, 0.0058674681931734085, 0.005805477034300566, 0.06253673136234283, -0.003682278096675873, 0.03446711227297783, 0.001966671086847782, -0.05802377313375473, -0.01775428280234337, -0.011325794272124767, -0.04252597317099571, 0.01610531657934189, 0.020928233861923218, 0.011629551649093628, -0.010873259045183659, -0.031863484531641006, 0.005170067306607962, 0.008257229812443256, 0.00683143176138401, 0.013737252913415432, -0.018423788249492645, 0.02190769463777542, -0.02049429528415203, 0.02153574675321579, -0.01501427125185728, -0.015063864178955555, 0.0030360196251422167, 0.033004119992256165, 0.024560919031500816, 0.021734118461608887, 0.014406757429242134, 0.021213393658399582, 0.009571443311870098, -0.002377362921833992, 0.06690091639757156, -0.009032119996845722, 0.024374945089221, 0.005449027754366398, 0.005690793041139841, 0.002265778835862875, 0.024982457980513573, 0.005563711281865835, 0.021585339680314064, -0.020853843539953232, 0.03734350576996803, -0.018795736134052277, 0.014022411778569221, 0.0046958341263234615, 0.03987274691462517, -0.0025013454724103212, 0.023097924888134003, -0.010098368860781193, -0.02342027984559536, 0.009521850384771824, 0.021696923300623894, 0.0011793827870860696, 0.01029674056917429, 0.003477707039564848, -0.008337818086147308, 0.0111894141882658, -0.03203705698251724, -0.04463367164134979, -0.033028919249773026, 0.0073397597298026085, 0.004175107926130295, 0.009149902500212193, 0.013972818851470947, -0.012782587669789791, 0.0021169998217374086, -0.009788412600755692, 0.004007732030004263, -0.008616778068244457, 0.019142886623740196, 0.011387785896658897, 0.008344016969203949, -0.006016246974468231, 0.026928981766104698, 0.08634135872125626, -0.029235055670142174, -0.028342382982373238, -0.006602064240723848, 0.04150931537151337, -0.005994550418108702, -0.004838414024561644, 0.012007697485387325, -0.020977826789021492, 0.024982457980513573, 0.010085970163345337, -0.007073197513818741, 0.038087401539087296, 0.010488913394510746, 0.00594495702534914, 0.011734936386346817, -0.012584215961396694, 0.030623659491539, 0.024895669892430305, 0.017444327473640442, 0.027573691681027412, -0.011741135269403458, 0.022292040288448334, -0.012478831224143505, -0.024412138387560844, -0.007618720177561045, -0.009571443311870098, -0.025639565661549568, -0.0014056507498025894, -0.008939133025705814, 0.000504453491885215, 0.006245614495128393, -0.015696175396442413, -0.008201437070965767, -0.009807010181248188, -0.03223542869091034, 0.012181272730231285, 0.029681392014026642, 0.03221063315868378, 0.014406757429242134, -0.020543888211250305, 0.011139820329844952, -0.010991041548550129, 0.02081664837896824, -0.0008640025043860078, 0.024660104885697365, -0.025329608470201492, -0.028565550222992897, -0.0030313702300190926, -0.018324602395296097, 0.005039885640144348, 0.02059348113834858, -0.0012421489227563143, -0.005049184430390596, 0.001997666899114847, 0.019799992442131042, 0.01801464706659317, -0.03049967624247074, -0.015088660642504692, 0.022564800456166267, -0.015125855803489685, -0.018770938739180565, -0.015572192147374153, 0.016898805275559425, 0.00288259144872427, -0.020171940326690674, 0.013700057752430439, -0.003688477212563157, -0.0014103000285103917, 0.020283523947000504, 0.045377567410469055, -0.019018903374671936, -0.014307571575045586, -0.02425096184015274, 0.041261348873376846, 0.020035559311509132, -0.06700009852647781, 0.03352484852075577, -0.010978643782436848, -0.01518784649670124, -0.010792669840157032, -0.011375387199223042, 0.0017760482151061296, 0.01836179755628109, -0.018560169264674187, -0.016762424260377884, 0.011505569331347942, 0.055147383362054825, 0.029755782335996628, 0.0598091222345829, -0.004593548830598593, 0.004605947062373161, 0.008034060709178448, -0.01647726446390152, 0.024387342855334282, -0.003248339518904686, -0.02332109399139881, -0.028044823557138443, -0.0044323718175292015, 0.0075629279017448425, 0.011691542342305183, -0.00972022209316492, 0.007922477088868618, 0.016737626865506172, -0.010612895712256432, 0.004990292713046074, -0.008498995564877987, -0.02190769463777542, -0.03280574828386307, -0.028515957295894623, -0.014989474788308144, -0.018634557723999023, 0.008201437070965767, 0.0070793963968753815, -0.01188371516764164, -0.01366286352276802, 0.03558295592665672, -0.00486011104658246, 0.023693041875958443, -0.002518393099308014, 0.01634088344871998, -0.024102183058857918, 0.014890288934111595, 0.006874825339764357, -0.04237719252705574, 0.03424394503235817, -0.015349023975431919, 0.016576450318098068, 0.03791382536292076, -0.007928675971925259, 0.0055947070941329, 0.007668313104659319, -0.007252971641719341, 0.045377567410469055, -0.025713954120874405, 0.005659797694534063, -0.015349023975431919, -0.004804318770766258, 0.043269865214824677, 0.001395577215589583, -0.023271501064300537, -0.006912020035088062, 0.0006319229141809046, -0.03191307559609413, -0.00014190176443662494, 0.028788719326257706, 0.00644088676199317, 0.014567934907972813, 0.04436090961098671, 0.026928981766104698, 0.015609387308359146, 0.014096801169216633, -0.0049964915961027145, -0.03813699260354042, 0.008945331908762455, -0.019688408821821213, 0.013501686044037342, -0.006214619148522615, -0.010575700551271439, -0.01741953007876873, 0.02340788207948208, -0.00930488109588623, -0.02789604477584362, -0.02365584671497345, -0.0008856994681991637, 0.021845703944563866, -0.027598487213253975, 0.010904254391789436, 0.002811301499605179, -0.023494670167565346, 0.01732034422457218, -0.050088901072740555, 0.013923225924372673, 0.016650838777422905, 0.0014064256101846695, 0.003995333798229694, 0.03126836568117142, 0.007166184019297361, -0.036773186177015305, -0.008641574531793594, -0.015125855803489685, -0.011573758907616138, -0.001417274121195078, 0.019366053864359856, 0.0006439337157644331, 0.010191354900598526, 0.017109574750065804, -0.013886031694710255, 0.038905683904886246, 0.011071630753576756, 0.022440819069743156, -0.027102557942271233, 9.937966387951747e-05, -0.00905691646039486, 0.011902312748134136, -0.06447085738182068, 0.025156034156680107, 0.004342484287917614, 0.004128614906221628, -0.0067384447902441025, 0.011679144576191902, 0.013724854215979576, 0.0169483982026577, -0.013501686044037342, -0.007854286581277847, -0.048452332615852356, 0.01753111556172371, -0.010092169046401978, 0.012261861935257912, -0.021746518090367317, 0.057726215571165085, -0.04609666392207146, 0.016402874141931534, -0.004178207833319902, 0.03863292187452316, -0.020221533253788948, -0.01787826605141163, 0.04758445546030998, -0.0019279266707599163, -0.06610742956399918, -0.00617742445319891, 0.009435062296688557, 0.00260208104737103, -0.007668313104659319, 0.020196737721562386, 0.025639565661549568, -0.004017030354589224, 0.006165026221424341, 0.014344766736030579, -0.01872134581208229, 0.01188371516764164, -0.029011886566877365, 0.03543417528271675, 0.005039885640144348, 0.020432302728295326, 0.007748901378363371, -0.009081712923943996, 0.00847419910132885, 0.0062487139366567135, 0.0223788283765316, 0.0012847678735852242, -0.008790354244410992, -0.026036309078335762, -0.05117994546890259, 0.018200619146227837, -0.016154909506440163, 0.0013258371036499739, 0.020692666992545128, -0.012404441833496094, -0.02165973000228405, -0.04118696227669716, -0.03191307559609413, 0.004965496249496937, -0.023011138662695885, 0.04210443049669266, 0.00038047105772420764, -0.013972818851470947, 0.01588214933872223, 0.009670629166066647, -0.020184338092803955, -0.024560919031500816, -0.053510814905166626, 0.011338192969560623, -0.0023014238104224205, 0.0048849075101315975, 0.03640123829245567, -0.024994855746626854, 0.001302590360864997, -0.026085902005434036, 0.0552961602807045, -0.025354405865073204, 0.03387199714779854, 0.01383643876761198, -0.01682441495358944, -0.04825396090745926, -0.028044823557138443, 0.02178371138870716, 0.025342008098959923, 0.004069723188877106, 0.027945637702941895, -0.007556728553026915, -0.005734187085181475, -0.008765557780861855, -0.013985217548906803, -0.011753533966839314, 0.02178371138870716, 0.02529241517186165, 0.003728771349415183, 0.036078885197639465, -0.010253346525132656, 0.03580612316727638, 0.014332368038594723, 0.027003372088074684, 0.014220784418284893, 0.021114205941557884, 0.016750024631619453, -0.00659586489200592, 0.005166967399418354, -0.0015846503665670753, 0.015200245194137096, -0.014667120762169361, 0.009788412600755692, 0.015572192147374153, -0.0007973619503900409, -0.022651588544249535, -0.026433052495121956, -0.0021402465645223856, -0.0010228550527244806, -0.017593106254935265, -0.0440385565161705, -0.03285534307360649, -0.006258012726902962, -0.017097176983952522, -0.016328485682606697, -0.014022411778569221, 0.02107701264321804, -0.027573691681027412, 0.015361422672867775, 0.032557785511016846, 0.05564331263303757, 0.00683143176138401, 0.010352532379329205, -0.004017030354589224, -0.03672359511256218, 0.0501880869269371, -0.018522974103689194, 0.0442369282245636, -0.001487789093516767, -0.012832180596888065, -0.0247344933450222, 0.01989917829632759, -0.028863107785582542, -0.01823781430721283, -0.004571851808577776, -0.02660662867128849, -0.002089103916659951, -0.02554037980735302, -0.0223788283765316, -0.003846554784104228, -0.02531721070408821, 0.01882053166627884, -0.0013583824038505554, 0.014406757429242134, 0.025255220010876656, 0.005111175589263439, 0.015968935564160347, -0.012652406468987465, 0.020221533253788948, -0.012113083153963089, 0.017047584056854248, 0.014220784418284893, 0.04815477505326271, 0.00947225745767355, 0.015956537798047066, 0.013811642304062843, -0.017469123005867004, 0.00511737447232008, -0.02318471297621727, -0.0010182056576013565, 0.012782587669789791, 0.01600613072514534, -0.003598589915782213, 0.005396334920078516, 0.034764669835567474, 0.018089035525918007, -0.025837937369942665, 0.007370755076408386, 0.001997666899114847, 0.014481146819889545, 0.01188991405069828, 0.0009972836123779416, -0.033152900636196136, -0.0029910760931670666, -0.011815524660050869, 0.03260737657546997, -0.01153656467795372, 0.011815524660050869, 0.014977077022194862, -0.05321325734257698, 0.018758540973067284, 0.005418031942099333, -0.05569290369749069, -0.016638441011309624, 0.003911645617336035, 0.04964256286621094, -0.010507510043680668, -0.00835021585226059, 0.017692292109131813, 0.02225484512746334], [-0.015223571099340916, -0.015743039548397064, 0.06250569224357605, 0.0030266919638961554, -0.06666143238544464, 0.0899844542145729, -0.005125763826072216, 0.049359992146492004, 0.03610827401280403, 0.02253851853311062, -0.03322470188140869, -0.039585527032613754, 0.025909755378961563, -0.014481475576758385, -0.056653738021850586, 0.03458167985081673, -0.02510405145585537, 0.05622968077659607, -0.020397040992975235, 0.006737172603607178, 0.029302194714546204, 0.048851124942302704, -0.01962314173579216, 0.040094390511512756, -0.01365456823259592, 0.006207103841006756, 0.013124499469995499, 0.015382591634988785, 0.039627932012081146, -0.03632030263543129, 0.08493819832801819, -0.03426363691687584, 0.02474360354244709, -0.015933863818645477, 0.012382403016090393, -0.03466648980975151, -0.055381570011377335, 0.03142246976494789, 0.03710480406880379, 0.009440522640943527, -0.029874669387936592, 0.05512714013457298, -0.025740133598446846, 0.025485699996352196, -0.012626235373318195, -0.008396287448704243, 0.0416845977306366, -0.025803741067647934, 0.034030407667160034, 0.022962573915719986, 0.09863517433404922, -0.000855398247949779, -0.0012721647508442402, -0.011470685712993145, 0.0057565453462302685, -0.021690409630537033, 0.01597626879811287, 0.0002645373751875013, 0.052285969257354736, 0.003935759887099266, -0.020036594942212105, -0.014343657530844212, 0.0009150310070253909, 0.02942941151559353, 0.0037528860848397017, 0.04656122997403145, 0.038716211915016174, 0.02834807150065899, -0.0054915109649300575, -0.001012431108392775, 0.002198459580540657, 0.01073389034718275, 0.05644170939922333, -0.04376246780157089, -0.02128755673766136, -0.010240926407277584, -0.021149739623069763, -0.014343657530844212, 0.030362332239747047, -0.007299045100808144, -0.00462484871968627, 0.006344921421259642, -0.022050855681300163, 0.027287933975458145, 0.024573981761932373, 0.005661133211106062, -0.013283520005643368, -0.014131629839539528, 0.019495924934744835, 0.027139514684677124, -0.049614425748586655, -0.052031539380550385, -0.02085290104150772, 0.04145136848092079, 0.0009899032302200794, 0.020100202411413193, 0.015679430216550827, -0.024679996073246002, -0.05593284219503403, 0.049359992146492004, -0.05292205139994621, -0.04166339337825775, 0.015456801280379295, 0.020428845658898354, 0.04707009345293045, -0.039797551929950714, -0.013930204324424267, 0.057120196521282196, 0.045755524188280106, -0.00894225761294365, -0.002075218828395009, -0.01273224875330925, 0.010760392993688583, 0.04944480210542679, 0.0029074265621602535, -0.007113520987331867, -0.03771968558430672, -0.007638289127498865, 0.04028521850705147, 0.01813894882798195, -0.05029291287064552, 0.01296547893434763, 0.04846947640180588, -0.09100218117237091, -0.01118444837629795, -0.02030162885785103, -0.025528104975819588, -0.020206216722726822, -0.040666867047548294, -0.008173658512532711, 0.04376246780157089, -0.021902436390519142, 0.015626423060894012, 0.0071188220754265785, -0.0020208866335451603, 0.03967033699154854, 0.022814154624938965, -0.020746886730194092, 0.030235115438699722, -0.02016381174325943, 0.009069474413990974, 0.0036680749617516994, 0.012912471778690815, 0.04007318988442421, -0.05572081729769707, -0.009159586392343044, -0.00809414777904749, 0.051777105778455734, 0.05580562725663185, 0.016029275953769684, -0.013866595923900604, -0.03358514979481697, 0.021308759227395058, 0.009530634619295597, 0.0239166971296072, 0.00040914674173109233, -0.020799893885850906, 0.008412189781665802, 0.025994565337896347, 0.013919602148234844, -0.012870066799223423, -0.005957971327006817, -0.017502866685390472, -0.016601750627160072, 0.010156115517020226, -0.0012562626507133245, -0.02730913646519184, 0.00039755148463882506, -0.06394748389720917, -0.03373356908559799, -0.06038542091846466, -0.05673854798078537, -0.036553531885147095, -0.0026397418696433306, -0.028263259679079056, -0.05703538656234741, 0.014439069665968418, -0.011513090692460537, -0.005173469893634319, 0.01219157874584198, 0.009657850489020348, 0.03837696835398674, -0.07989194244146347, -0.020248621702194214, -0.057332225143909454, 0.03383958339691162, -0.009981192648410797, -0.007516373414546251, -0.04520425200462341, 0.0016948945121839643, 0.0161988977342844, 0.047918204218149185, -0.004264402203261852, 0.03019271045923233, 0.010304534807801247, 0.010230325162410736, -0.03142246976494789, -0.0005154917598702013, 0.006276012863963842, -0.0022262881975620985, 0.020715082064270973, 0.005804251413792372, 0.02253851853311062, 0.022962573915719986, -0.028984153643250465, 0.012933675199747086, 0.030828792601823807, -0.013951406814157963, 0.054915111511945724, 0.008820341899991035, 0.003535557771101594, -0.02463759109377861, -0.04098490625619888, 0.03930988907814026, -0.041069719940423965, 0.01601867377758026, 0.0032281179446727037, 0.017259035259485245, 0.027075905352830887, 0.022877762094140053, -0.01242480892688036, 0.0030637967865914106, -0.009684354066848755, -0.012435410171747208, -0.032079752534627914, -0.006678864825516939, 0.0007162552792578936, -0.017863312736153603, -0.016209499910473824, -0.057586658746004105, -0.0023826586548238993, 0.03969154134392738, -0.03494212403893471, 0.027033500373363495, -0.01771489344537258, -0.0011118189431726933, -0.022156869992613792, -0.07293744385242462, -0.017216630280017853, 0.008290273137390614, -0.014078622683882713, -0.02200845070183277, 0.008952859789133072, -0.0014894928317517042, -0.013739379122853279, -0.03347913548350334, -0.013474345207214355, -0.018244963139295578, -0.017948124557733536, -0.007092318497598171, 0.051565077155828476, -0.006074586417526007, 0.03362755477428436, -0.0529644601047039, 0.05936768651008606, 0.056611329317092896, 0.0020593167282640934, -0.03602346405386925, -0.015806647017598152, -0.05135304853320122, -0.008926356211304665, 0.03473009914159775, -0.010633177123963833, 0.026779068633913994, -0.057841088622808456, 0.008438692428171635, 0.01630491204559803, -0.024425562471151352, 0.0003471949603408575, 0.01849939487874508, -0.023026181384921074, -0.0010024922667071223, 0.001708146184682846, -0.004942890256643295, -0.010972420684993267, -0.0040868292562663555, 0.017290839925408363, -0.026036972180008888, -0.0071453251875936985, 0.012127970345318317, -0.07268301397562027, -0.015181166119873524, -0.029514221474528313, -0.059791743755340576, -0.0037528860848397017, -9.67375235632062e-05, 0.016866784542798996, 0.0100978072732687, -0.039119064807891846, -0.00939811673015356, 0.03409401327371597, -0.010023597627878189, 0.021266354247927666, -0.04796060919761658, 0.029853465035557747, 7.48721940908581e-05, 0.006790179293602705, -0.011894740164279938, -0.02654583752155304, 0.015414396300911903, 0.034030407667160034, -0.003522306215018034, 0.04263872280716896, -0.040306419134140015, -0.03920387849211693, 0.013209310360252857, 0.0027431051712483168, 0.003978165332227945, 0.024425562471151352, 0.028263259679079056, -0.008735531009733677, -0.0011429605074226856, -0.016718365252017975, -0.02756357006728649, -0.050080884248018265, -0.04533147066831589, -0.03682916983962059, -0.001237710239365697, -0.020566662773489952, -0.0037820397410541773, 0.028008826076984406, 0.011661509983241558, -0.008279671892523766, -0.021181542426347733, -0.007187730632722378, -0.0030956007540225983, 0.030998414382338524, 0.02366226352751255, -0.049826450645923615, -0.014470874331891537, -0.05847717076539993, 0.0035064041148871183, 0.020789291709661484, -0.02484961785376072, 0.01695159450173378, 0.0017585026798769832, 0.009111880324780941, 0.003840347286313772, -0.022602126002311707, 0.002947181696072221, 0.048639100044965744, -0.04278714209794998, 0.0160822831094265, 0.012233984656631947, -0.008470497094094753, 0.02228408493101597, -0.007622387260198593, 0.025634119287133217, 0.03894944489002228, 0.051565077155828476, -0.03044714219868183, 0.020481852814555168, -0.05432143434882164, 0.03462408483028412, -0.014873726293444633, -0.03801652416586876, -0.009657850489020348, 0.013336527161300182, -0.017810305580496788, 0.023323019966483116, 0.02398030459880829, -0.006207103841006756, -0.006965102162212133, 0.03657473623752594, -0.016887987032532692, -0.037168413400650024, -0.008353881537914276, 0.016092883422970772, 0.017248433083295822, -0.03765607625246048, 0.005157568026334047, 0.008300875313580036, -0.019676147028803825, -0.031401265412569046, 0.00213750172406435, 0.00031804118771106005, 0.02730913646519184, 0.012064361944794655, -0.038864631205797195, -0.02947181649506092, -0.05262521281838417, 0.03638391196727753, 0.02243250422179699, -0.017831509932875633, 0.038758620619773865, -0.004447275772690773, -0.0694177895784378, -0.03178291395306587, 0.008136553689837456, 0.018531199544668198, -0.012127970345318317, 0.036807965487241745, -0.04486500844359398, 0.03612947836518288, -0.024255940690636635, -0.004062976222485304, 0.05550878867506981, 0.018085941672325134, -0.010611974634230137, -0.03297026827931404, -0.010034199804067612, -0.009933486580848694, -0.008772635832428932, -0.02398030459880829, -0.0075693801045417786, -0.02145717851817608, -0.011248056776821613, -0.013018486090004444, -0.012891269288957119, -0.021796422079205513, -0.009334508329629898, -0.012064361944794655, 0.04075167700648308, 0.023323019966483116, -0.0006294565391726792, 0.029196180403232574, -0.02175401709973812, 0.040051985532045364, -0.013474345207214355, -0.024510374292731285, 0.034496866166591644, 0.040963705629110336, 0.014566286467015743, -0.009461725130677223, 0.00880444049835205, -0.002073893556371331, -0.0003856249386444688, 0.012085565365850925, 0.00824256706982851, -0.04779098927974701, -0.008231965824961662, 0.0176088809967041, 0.0135061489418149, -0.009498829953372478, -0.034433260560035706, -0.039797551929950714, 0.03182532265782356, -0.02037583850324154, -0.009064173325896263, -0.028284462168812752, 0.010198520496487617, -0.0005916891386732459, -0.00640322919934988, -0.0016895937733352184, -0.026100579649209976, 0.0010515237227082253, -0.015594619326293468, 0.03738044202327728, -0.06801840662956238, 0.030892400071024895, -0.03275824338197708, -0.009217893704771996, -0.05559359863400459, -0.023747075349092484, 0.01990937814116478, 0.02809363789856434, 0.020068399608135223, 0.007834414951503277, 0.033203501254320145, -0.010866407305002213, -0.007929827086627483, 0.0383133627474308, 0.004675205331295729, 0.04058205336332321, 0.042511504143476486, 0.031358860433101654, -0.02756357006728649, 0.006503942422568798, -0.010452953167259693, 0.006652361247688532, 0.00856590922921896, 0.04155738279223442, -0.026121782138943672, 0.007611785549670458, 0.0704355239868164, -0.007171828765422106, 0.022262882441282272, -0.04051844775676727, 0.0067106690257787704, -0.034539271146059036, 0.033924393355846405, 0.02896295115351677, -0.05122583359479904, -0.0067265708930790424, 0.014417867176234722, -0.02896295115351677, 0.031083224341273308, 0.009959990158677101, 0.008088847622275352, -0.0021719562355428934, -0.013219911605119705, -0.021775219589471817, 0.028072435408830643, -0.006562249734997749, 0.014417867176234722, -0.014396664686501026, -0.03477250412106514, -0.0020513655617833138, 0.04410171136260033, 0.006742473226040602, 0.012477816082537174, -0.038546591997146606, 0.010071304626762867, 0.020651474595069885, 0.022411301732063293, 0.03347913548350334, -0.03301267325878143, -0.06038542091846466, -0.007913924753665924, 0.0033288311678916216, -0.014057420194149017, 0.0038138439413160086, 0.015880856662988663, -0.028008826076984406, -0.00025294211809523404, -0.020746886730194092, 0.0060056778602302074, 0.006742473226040602, -0.012626235373318195, 0.01419523824006319, 0.015531010925769806, -0.01103602908551693, -0.04147256910800934, 0.026991095393896103, -0.002521801507100463, 0.013135100714862347, 0.0030823491979390383, -0.044313739985227585, -0.023026181384921074, 0.01867961883544922, 0.03564181551337242, -0.027393946424126625, -0.027181919664144516, 0.044525764882564545, 0.02694869041442871, 0.03481490910053253, -0.019665546715259552, 0.012838262133300304, 0.03271583467721939, -0.04289315268397331, 0.053218889981508255, -0.022814154624938965, -0.014449670910835266, 0.014417867176234722, -0.0034321944694966078, -0.03564181551337242, -0.008072945289313793, 0.01735444739460945, 0.011937146075069904, -0.005995076149702072, 0.008014637976884842, 0.028941748663783073, 0.004394269082695246, -0.009445822797715664, 0.016421526670455933, 0.011290461756289005, -0.002185208024457097, -0.02088470384478569, 0.02016381174325943, 0.007898022420704365, -0.023937899619340897, 0.03426363691687584, -0.022347694262862206, 0.014513279311358929, 0.0011628380743786693, 0.0014775663148611784, 0.00013723807933274657, 0.006959801074117422, -0.039882365614175797, -0.018096543848514557, -0.0047759185545146465, 0.0015782794216647744, 0.04685806855559349, -0.0008209437946788967, 0.022559721022844315, 0.009716157801449299, -0.014778314158320427, -0.0161988977342844, 0.002287246286869049, -0.009265599772334099, 0.013622764497995377, 0.041430164128541946, -0.039627932012081146, -0.020227419212460518, -0.02514645643532276, 0.025952160358428955, -0.011354070156812668, -0.05818033218383789, -0.007707198150455952, 0.01954893209040165, 0.029556628316640854, 0.014343657530844212, 0.01691979169845581, -0.013209310360252857, 0.02092711068689823, 0.02013200707733631, 0.012456612661480904, 0.012329396791756153, 0.0372956283390522, 0.014078622683882713, 0.013294121250510216, -0.04346562922000885, 0.008666622452437878, 0.010670281946659088, -0.018563004210591316, -0.009387515485286713, 0.01412102859467268, 0.005523315165191889, 0.026991095393896103, 0.01713181845843792, 0.019146079197525978, 0.0223688967525959, 0.015891456976532936, -0.0071241226978600025, -0.05114102363586426, 0.03292786329984665, -0.023238210007548332, -0.0473245270550251, -0.03159208968281746, 0.033818379044532776, -0.026121782138943672, 0.0067159696482121944, 0.03307628259062767, 0.015424997545778751, -0.014672299847006798, -0.0270122978836298, -0.016940994188189507, -0.026461025699973106, 0.03888583555817604, -0.0194111131131649, -0.032843053340911865, 0.028157245367765427, 0.022856559604406357, 0.02279295213520527, 0.001657789689488709, -0.02633381076157093, 0.0362778976559639, -0.012795857153832912, -0.011089036241173744, 0.011237455531954765, 0.026715459302067757, -0.014651097357273102, 0.010378743521869183, -0.007346751168370247, 0.0006251496961340308, 0.02423473820090294, 0.021086130291223526, 0.04690047353506088, -0.00396756362169981, 0.012626235373318195, 0.003039943752810359, -0.02881453186273575, 0.006138194818049669, -0.021435976028442383, 0.026863878592848778, 0.01591266132891178, -0.00023107680317480117, 0.060936689376831055, 0.03827095404267311, 0.005449105519801378, -0.018700821325182915, -0.006207103841006756, 0.0071506258100271225, 0.029153775423765182, 0.04728212207555771, 0.011258658021688461, 0.00364687223918736, 0.049826450645923615, -0.02340783178806305, -0.010299233719706535, -0.015626423060894012, -0.048384666442871094, 0.017471062019467354, -0.006986304651945829, 0.02142537385225296, -0.02942941151559353, -0.02885693684220314, 0.042617518454790115, -0.04414411634206772, 0.012339998036623001, -0.018350975587964058, 0.00880444049835205, -0.004015270154923201, -0.013219911605119705, -0.021658604964613914, -0.03653233125805855, -0.02567652426660061, -0.05843476578593254, 0.02026982419192791, -0.015700632706284523, -0.02680027112364769, 0.022920168936252594, -0.0009885779581964016, -0.006201803218573332, 0.014258846640586853, 0.02730913646519184, 0.008735531009733677, -0.010458254255354404, -0.006032180972397327, -0.013951406814157963, 0.011862936429679394, 0.029705045744776726, -0.024913225322961807, -0.013209310360252857, -0.04145136848092079, 0.027648380026221275, -0.00824256706982851, 0.022602126002311707, 0.041069719940423965, 0.01720602810382843, -0.014322455041110516, -0.016103485599160194, -0.04851188138127327, 0.001342398812994361, -0.022453706711530685, -0.002557581290602684, -0.045246660709381104, -0.013029087334871292, 0.009355711750686169, -0.012944276444613934, -0.027181919664144516, 0.021944841369986534, -0.03311868757009506, 0.013802987523376942, 0.01950652524828911, -0.005867859814316034, -0.006737172603607178, 0.0027563569601625204, 0.0036124177277088165, -0.014810117892920971, 0.026058174669742584, -0.007505772169679403, 0.001384804374538362, 0.0006533095729537308, -0.014152832329273224, 0.012446011416614056, -0.007479268591850996, -0.034899719059467316, 0.008666622452437878, -0.02013200707733631, 0.03699878975749016, -0.024340752512216568, -0.020534859970211983, -0.012817059643566608, -0.03629910200834274, 0.027690785005688667, 0.03744404762983322, -0.006228306330740452, -0.019919980317354202, 0.005592224188148975, -0.025485699996352196, 0.0038721514865756035, 0.011587300337851048, -0.016930392012000084, -0.01569003239274025, -0.011385874822735786, -0.011714517138898373, 0.01572183519601822, -0.018785633146762848, -0.024616386741399765, 0.03203734755516052, 0.017831509932875633, -0.012795857153832912, 0.03362755477428436, -0.014375461265444756, -0.013421338051557541, -0.0499112643301487, 0.024976834654808044, 0.02643982321023941, -0.00490578543394804, -0.013569757342338562, -0.0020208866335451603, 0.024701198562979698, 0.023323019966483116, 0.04728212207555771, 0.012329396791756153, -0.01905066706240177, -0.009668451733887196, -0.031867727637290955, -0.030998414382338524, 0.008587111718952656, -0.028284462168812752, -0.0037793894298374653, 0.003652172861620784, 0.024319550022482872, -0.012286990880966187, -0.00809414777904749, -0.01303968857973814, 0.013410736806690693, 0.00878323707729578, -0.009684354066848755, -0.01180992927402258, 0.015711234882473946, -0.028199652209877968, -0.017184825614094734, -0.005237078294157982, 0.007903323508799076, -0.010055402293801308, -0.03301267325878143, 0.034178826957941055, -0.03133765980601311, 0.002247490920126438, -0.020874103531241417, 0.004810372833162546, 0.07734761387109756, 0.005963272415101528, -0.015297780744731426, 0.006143495440483093, -0.025379685685038567, -0.008528804406523705, -0.02319580316543579, 0.014958537183701992, -0.03339432552456856, 0.02557051181793213, -0.011078434996306896, -0.046264391392469406, 0.0119583485648036, 0.014873726293444633, 0.02351384423673153, 0.04800301790237427, 0.011195049621164799, -0.01702580414712429, 0.01663355343043804, -0.013728777877986431, 0.02506164461374283, -0.006737172603607178, -0.006832584738731384, -0.0262277964502573, 0.019315700978040695, -0.009875178337097168, -0.019358105957508087, 0.00555511936545372, -0.0003743609704542905, 0.020259223878383636, 0.022517316043376923, -0.023853089660406113, 0.0004002018249593675, 0.00016158811922650784, 0.02752116322517395, -0.0006741810357198119, 0.05343091860413551, -0.009461725130677223, -0.01857360452413559, -0.028114840388298035, -0.0066947671584784985, 0.002553605707362294, -0.013018486090004444, 0.010113709606230259, -0.03795291483402252, 0.015287179499864578, -0.0035541101824492216, -0.03360635042190552, 0.003527606837451458, -0.03277944400906563, 0.0011151318904012442, -0.016241302713751793, 0.012954877689480782, -0.015891456976532936, -0.004468478728085756, -0.0022329140920192003, -0.0383133627474308, -0.0013954057358205318, 0.009970591403543949, -0.006853787694126368, 0.034899719059467316, -0.009583640843629837, 0.006800780538469553, -0.0401155948638916, 0.02495563216507435, -0.0001982787944143638, 0.00786621868610382, 0.021563192829489708, -0.0018645164091140032, -0.0020699179731309414, 0.001766453729942441, 0.018329773098230362, -0.007929827086627483, 0.027584772557020187, 0.004611597396433353, -0.007378555368632078, -0.014799516648054123, 0.007913924753665924, -0.007754904218018055, 0.03426363691687584, -0.025422092527151108, 0.0009932160610333085, -0.01922028884291649, 0.03903425484895706, 0.02586735039949417, 0.01795872487127781, -0.004192843101918697, 0.014227041974663734, -0.006488040089607239, 0.002570832846686244, 0.03224937617778778, -0.03277944400906563, -0.0052556307055056095, -0.02792401611804962, -0.03051075153052807, 0.009408717975020409, -0.0254644975066185, 0.004457877483218908, -0.019495924934744835, 0.02196604385972023, -0.002464819233864546, -0.00028805917827412486, -0.012159775011241436, -0.0032890758011490107, 0.046434011310338974, -0.0043174088932573795, 0.0033526842016726732, 0.010081905871629715, -0.025188861414790154, -0.04605236276984215, 0.008645419962704182, 0.024149926379323006, -0.01550980843603611, 0.02034403383731842, 0.05801071226596832, 0.01618829555809498, 0.035366181284189224, 0.002409161999821663, 0.02694869041442871, -0.03163449466228485, -0.0010395970894023776, 0.002255442086607218, -0.043592844158411026, 0.0342000275850296, 0.0034825510811060667, 0.004388968460261822, -0.012456612661480904, 0.0427023284137249, 0.03494212403893471, 0.04690047353506088, 0.03710480406880379, 0.002136176684871316, 0.011767523363232613, -0.03589624911546707, 0.011746320873498917, 0.0032201670110225677, 0.05809552222490311, 0.02607937715947628, -0.0021600297186523676, -0.03282184898853302, 0.006387327332049608, 0.009064173325896263, 0.005523315165191889, 0.028263259679079056, -0.015806647017598152, -0.026248998939990997, -0.011841733008623123, 0.003949011210352182, 0.015806647017598152, 0.005409350618720055, -0.0004339937004260719, 0.020821096375584602, 0.025485699996352196, 0.006922696251422167, 0.00834858138114214, -0.02008960209786892, 0.063777856528759, 0.02639741823077202, 0.025761336088180542, -0.01896585524082184, 0.02279295213520527, 0.07285263389348984, 0.005783048924058676, 0.039627932012081146, -0.024934429675340652, -0.0007818512385711074, -0.013389534316956997, -0.03629910200834274, 0.04202384129166603, 0.03723202273249626, -0.006768976338207722, 0.01836157776415348, 0.027945218607783318, 0.019379310309886932, 0.01064377836883068, -0.013368330895900726, 4.012785211671144e-05, 0.004974693991243839, 0.011004225350916386, -0.005677035078406334, -0.02463759109377861, 0.029556628316640854, 0.004139835946261883, -0.02200845070183277, -0.012795857153832912, 0.024764806032180786, 0.015923261642456055, 0.008004036732017994, 0.011831131763756275, -0.011555496603250504, -0.0344756655395031, 0.025188861414790154, 0.025443295016884804, -0.010066003538668156, 0.006323718931525946, -0.00030048267217352986, 0.0194111131131649, -0.012159775011241436, 0.0013781784800812602, -0.012552025727927685, -0.011894740164279938, 0.026927486062049866, 0.026142984628677368, 0.016389722004532814, -0.0499112643301487, 0.007214234210550785, -0.018054137006402016, -0.009716157801449299, -0.036489926278591156, -0.023535046726465225, -0.04685806855559349, -0.017619481310248375, 0.030277520418167114, -0.019464120268821716, -0.008337980136275291, 0.055381570011377335, -0.013951406814157963, 0.005406700074672699, 0.04728212207555771, -0.0075746807269752026, 0.01618829555809498, -0.003466648980975151, 0.02665185183286667, 0.0293233972042799, 0.03205855190753937, 0.025231266394257545, -0.006901493761688471, 0.0020685929339379072, -0.016506336629390717, 0.0054862103424966335, -0.004449926316738129, -0.005337791051715612, 0.02222047746181488, -0.015637025237083435, -0.04302037134766579, 0.003265222767367959, -0.008443993516266346, -0.006254809908568859, -0.03303387761116028, 0.01792692206799984, -0.007108220364898443, -0.012393005192279816, 0.04376246780157089, 0.001873792614787817, -0.0020473902113735676, 0.013760581612586975, 0.0074209608137607574, 0.035323772579431534, -0.0383133627474308, -0.03034112975001335, 0.018170753493905067, -0.005218525882810354, -0.014788915403187275, -0.005698238033801317, -0.015817247331142426, -0.0352177619934082, 0.019750356674194336, -0.025803741067647934, 0.01890224777162075, -0.010839903727173805, 0.003686627373099327, 0.005936768837273121, -0.029090166091918945, -0.009922885335981846, 0.0008401587838307023, 0.03699878975749016, -0.026058174669742584, 0.012636836618185043, 0.03771968558430672, 0.03339432552456856, 0.009641948156058788, 0.03271583467721939, -0.0545334629714489, -0.010649078525602818, -0.041642192751169205, -0.009896381758153439, -0.004195493180304766, 0.03383958339691162, 0.06644940376281738, -0.014704104512929916, -0.014036217704415321, -0.010108408518135548, -0.04212985560297966, 0.0011893415357917547, -0.022920168936252594, 0.014110427349805832, -0.02171161212027073, 0.023280614987015724, -0.03015030361711979, -0.016432126984000206, -0.0009985167998820543, 0.02506164461374283, 0.018743226304650307, 0.006079887505620718, 0.00779200904071331, 0.005957971327006817, 0.03483610972762108, -0.02381068281829357, -0.02766958251595497, -0.021796422079205513, 0.048639100044965744, 0.013792386278510094, 0.013633365742862225, -0.005380196496844292, 0.009520032443106174, 0.02131936140358448, -0.01419523824006319, -0.010781596414744854, 0.03553580120205879, -0.029768655076622963, 0.04808782786130905, 0.021732814610004425, -0.028560098260641098, 0.010850504972040653, 0.014926732517778873, 0.028941748663783073, 0.012838262133300304, -0.02381068281829357, -0.005263581406325102, 0.00040914674173109233, 0.03347913548350334, -0.010898211039602757, -0.009408717975020409, 0.004039123188704252, 0.0057565453462302685, 0.02607937715947628, -0.0061593977734446526, -0.011226853355765343, -0.011672111228108406, -0.017979927361011505, 0.016103485599160194, -0.0067000677809119225, -0.000509859761223197, -0.06937538087368011, 0.012509619817137718, -0.0032890758011490107, 0.01569003239274025, 0.005724741145968437, 0.024361955001950264, 0.03784690052270889, -0.015297780744731426, 0.01717422343790531, -0.010452953167259693, 0.03801652416586876, 0.008486398495733738, -0.03034112975001335, -0.033415526151657104, 0.032334186136722565, -0.009101278148591518, -0.009673752821981907, -0.001017069211229682, 0.01165090873837471, 0.00439956970512867, -0.012308193370699883, 0.056399304419755936, 0.015499207191169262, -0.006085188128054142, -0.015562815591692924, 0.03101961687207222, 0.006339620798826218, 0.024319550022482872, 0.014099826104938984, 0.028220854699611664, -0.007797309663146734, -0.028263259679079056, 0.009080075658857822, 0.026312606409192085, 0.02351384423673153, -0.0009991794358938932, -0.027478758245706558, 0.035578206181526184, -0.035472191870212555, 0.0023667565546929836, -0.05160748213529587, -0.016167093068361282, -0.02942941151559353, 0.0019029463874176145, -0.0010402597254142165, -0.011968949809670448, -0.013400135561823845, 0.0177466981112957, 0.005202623549848795, 0.007495170459151268, -0.027203122153878212, 0.006297215353697538, -0.001820785808376968, -0.010749791748821735, 0.0043677655048668385, 0.031104428693652153, -0.010399946942925453, 0.0034825510811060667, 0.01019322033971548, 0.01803293451666832, -0.020980115979909897, -0.004354513715952635, -0.0135061489418149, -0.011067832820117474, -0.04715490713715553, 0.00320161459967494, 0.0014311852864921093, -0.02001539245247841, -0.025591714307665825, -0.01576424203813076, 0.03771968558430672, 0.018743226304650307, -0.04217226058244705, 0.0293233972042799, 0.0021799071691930294, -0.004884582478553057, -0.009949387982487679, 0.00016324457828886807, 0.016368519514799118, 0.02864491008222103, -0.00948822870850563, -0.02629140391945839, 0.01496913842856884, -0.007267240900546312, 0.004799771588295698, 0.022496113553643227, -0.004736163187772036, 0.010611974634230137, -0.012880668044090271, -0.019559532403945923, -0.014810117892920971, 0.02690628357231617, 0.024086318910121918, 0.04350803419947624, 0.019612539559602737, 0.0007261940627358854, 0.01242480892688036, -0.00033427454764023423, 0.0005684986244887114, 0.03466648980975151, -0.012552025727927685, -0.015191767364740372, 0.018488794565200806, -0.0007129423320293427, 0.007049913052469492, -0.0024277144111692905, -0.017004601657390594, -0.012393005192279816, 0.03462408483028412, -0.0008249193197116256, 0.009361011907458305, -0.04804542288184166, -0.021086130291223526, 0.03629910200834274, -0.002197134541347623, -0.013124499469995499, 0.019432315602898598, 0.0006649048300459981, 0.032843053340911865, 0.01807534135878086, -0.013760581612586975, -0.003039943752810359, 0.012594430707395077, -0.004868680611252785, -0.043232399970293045, -0.036341506987810135, 0.015806647017598152, -0.025485699996352196, -0.007161227520555258, 0.00793512724339962, -0.02968384325504303, 0.014407265931367874, -0.004630149807780981, 0.017577076330780983, 0.009875178337097168, 0.018626611679792404, -0.03415762260556221, 0.06661902368068695, -0.001827411586418748, 0.003410991746932268, -0.008136553689837456, 0.029387004673480988, 0.04486500844359398, 0.014704104512929916, 0.020365236327052116, 0.0008746132371015847, 0.005128413904458284, -0.0022223128471523523, 0.003678676439449191, 0.014142231084406376, -0.002402536105364561, 0.013251716271042824, 0.005197322927415371, -0.00266492017544806, -0.04000958055257797, 0.006138194818049669, -0.009334508329629898, -0.03606586903333664, -0.0008640118758194149, 0.019718553870916367, -0.017195425927639008, 0.05427902936935425, 0.013516750186681747, 0.021923638880252838, 0.05983414873480797, 0.0021454528905451298, 0.0061859008856117725, -0.02586735039949417, 0.014757110737264156, 0.005973873659968376, -0.003156558843329549, 0.010437051765620708, -0.01644272916018963, -0.02557051181793213, -0.02726673148572445, 0.044313739985227585, -0.032482605427503586, 0.020460650324821472, -0.06513483822345734, -0.015859654173254967, 0.0038721514865756035, -0.02423473820090294, 0.02489202283322811, 0.008030540309846401, -0.020948313176631927, -0.02181762456893921, 0.005181421060115099, 0.04034882411360741, -0.05703538656234741, 0.025846146047115326, 0.03585384413599968, 0.007839715108275414, 0.016781972721219063, 0.004574492573738098, 0.0060162791050970554, -0.028157245367765427, 0.015022145584225655, 0.0095783406868577, 0.009986492805182934, 0.015467402525246143, 0.02766958251595497, 0.038610201328992844, 0.03333071619272232, -0.05101380497217178, 0.000908405112568289, -0.03350033983588219, 0.01396200805902481, -0.0033897890243679285, 0.06114871799945831, 0.0014311852864921093, 0.0352177619934082, 0.003829746041446924, 0.004542688373476267, -0.008147154934704304, -0.025634119287133217, -0.029599033296108246, -0.014778314158320427, 0.0339667983353138, -0.02773319184780121, 0.05695057660341263, 0.05063215643167496, -0.004558590240776539, -0.005798950791358948, 0.041387759149074554, 0.029747452586889267, -0.016251904889941216, -0.01358035858720541, -0.021478381007909775, -0.0007434212602674961, -0.024976834654808044, 0.006991605274379253, -0.0194111131131649, 0.017248433083295822, -0.03055315650999546, 0.02121334709227085, 0.03146487474441528, -0.01623070240020752, 0.012106767855584621, 0.019283896312117577, -0.04787579923868179, 0.021838828921318054, -0.016644155606627464, -0.021701009944081306, -0.003466648980975151, 0.013972609303891659, -0.018382780253887177, 0.004041773267090321, -0.04965683072805405, -0.032079752534627914, 0.009408717975020409, 0.019093072041869164, 0.009122481569647789, -0.01527657825499773, -0.0010005045915022492, -0.0005810877191834152, 0.0504201278090477, -0.024446764960885048, -0.03055315650999546, 7.267737964866683e-05, -0.014788915403187275, 0.017365049570798874, -0.02921738289296627, -0.012477816082537174, -0.005851957947015762, 0.02412872388958931, 0.008936957456171513, 0.006382026243954897, 0.012891269288957119, -0.002238214947283268, -0.02438315749168396, 0.013495547696948051, -0.04753655567765236, 0.014057420194149017, 0.03169810399413109, -0.004412821494042873, 0.01717422343790531, 0.043592844158411026, 0.0015610521659255028, -0.03920387849211693, -0.004100081045180559, -0.02474360354244709, 0.03292786329984665, 0.010039499960839748, -0.016569945961236954, -0.055890437215566635, -0.004195493180304766, -0.0003299677337054163, 0.012361200526356697, -0.016167093068361282, 0.05258280783891678, -0.0028729720506817102, 0.04490741342306137, 0.020206216722726822, -0.020471250638365746, -0.006556949112564325, -0.006959801074117422, -0.021987246349453926, -0.006466837599873543, 0.025167658925056458, -0.043338410556316376, 0.019570134580135345, 0.007081717252731323, 0.009201991371810436, -0.006127593573182821, 0.0027351542375981808, 0.0318889282643795, 2.180321462219581e-05, -0.007712498772889376, 0.015181166119873524, -0.03256741911172867, -0.046518824994564056, 0.01926269382238388, 0.0054756090976297855, 0.02063027210533619, -0.002668895525857806, 0.007723100017756224, -0.007325548678636551, 0.014863125048577785, -0.0012655388563871384, -0.03371236473321915, 0.00736795412376523, -0.02453157678246498, -0.016887987032532692, -0.014651097357273102, 0.0007076416513882577, 0.013898399658501148, -0.023683466017246246, 0.014873726293444633, 0.03816494345664978, 0.024616386741399765, -0.060470230877399445, -0.008051742799580097, -0.0015756289940327406, -0.010129611939191818, 0.05483030155301094, -0.013728777877986431, 0.01466169860213995, -0.019972985610365868, -0.014757110737264156, 0.01849939487874508, 0.003138006431981921, 0.005017099902033806, -0.0021454528905451298, -0.047197312116622925, -0.0030584961641579866, 0.021648002788424492, -0.014248245395720005, 0.010887609794735909, -0.001871142303571105, -0.025379685685038567, -0.03055315650999546, -0.00842279102653265, -0.02149958349764347, 0.03076518326997757, 0.011311665177345276, 0.023238210007548332, -0.01662295311689377, 0.00394106050953269, 0.012138571590185165, -0.007240737788379192, 0.05788349732756615, 0.0200577974319458, 0.004916386678814888, -0.0016286359168589115, -0.016601750627160072, -0.050589751452207565, -0.0001894995366455987, 0.012605031952261925, 0.0293233972042799, -0.01450267806649208, 0.0318889282643795, -0.0048421770334243774, -0.0006844511372037232, 0.03350033983588219, 0.013029087334871292, 0.02978985756635666, 0.012636836618185043, 0.01591266132891178, -0.011947747319936752, 0.016294309869408607, -0.013951406814157963, -0.005414651241153479, 0.013050289824604988, -0.014820719137787819, -0.0004701046273112297, -0.035154152661561966, -0.009302704595029354, 0.011364671401679516, -0.01651693880558014, 0.02921738289296627, 0.02308979071676731, -0.03220697119832039, 0.0020699179731309414, -0.022920168936252594, 0.02186003141105175, -0.03142246976494789, 0.0008156431140378118, 0.017333244904875755, 0.008237266913056374], [0.03402041271328926, 0.007648603059351444, 0.0140993045642972, 0.022280974313616753, -0.06756166368722916, 0.03548185154795647, 0.01666281372308731, -0.018148211762309074, 0.008750672452151775, 0.013140982948243618, -0.0192383024841547, 0.01911851204931736, -0.05342641845345497, -0.026449671015143394, -0.01799248531460762, 0.038596395403146744, 0.0002070124028250575, 0.028845475986599922, -0.008079847320914268, -0.02079557441174984, 0.002061888575553894, 0.044561948627233505, 0.0013251788914203644, 0.006235078908503056, -0.02016068808734417, -0.018327897414565086, 0.03351729363203049, -0.011314182542264462, 0.052947260439395905, -0.011014707386493683, 0.022257015109062195, -0.024796567857265472, 0.04808377847075462, -0.03277459368109703, 0.032031893730163574, 0.0040668766014277935, -0.014842003583908081, 0.03502664715051651, 0.05093478411436081, 0.0075407917611300945, -0.048203568905591965, 0.017309680581092834, 0.046646296977996826, 0.0009777873056009412, 0.0006633381126448512, 0.08725516498088837, 0.057547204196453094, -0.0270486231893301, -0.029348593205213547, 0.012853486463427544, 0.02970796450972557, 0.029492342844605446, -0.02128671482205391, 0.026880916208028793, 0.03931513801217079, -0.013692017644643784, 0.03490685671567917, 0.01672270894050598, 0.010601431131362915, -0.013368584215641022, -0.018375813961029053, 0.004977282136678696, 0.010415756143629551, 0.01136808842420578, -0.030354831367731094, -0.029827754944562912, -0.01151183620095253, 0.022891903296113014, -0.028414230793714523, -0.011996986344456673, 0.02680904231965542, 0.011457930319011211, -0.0011649595107883215, -0.041639067232608795, 0.043747372925281525, 0.03909951448440552, 0.030522538349032402, 0.02484448254108429, 0.037470366805791855, -0.031600650399923325, -0.04968896508216858, 0.015321164391934872, -0.012577968649566174, 0.024449175223708153, -0.011176424100995064, 0.021250778809189796, -0.04159114882349968, -0.0026054363697767258, -0.021550253033638, 0.005106056574732065, 0.012542031705379486, -0.03069024346768856, -0.0035128470044583082, 0.03756619989871979, -0.030235040932893753, -0.01790863275527954, 0.03167252242565155, -0.004480152856558561, 0.008912389166653156, 0.08529061079025269, -0.004165703430771828, 0.02537156082689762, 0.03943492844700813, 0.04118386283516884, -0.00362664763815701, -0.09003429859876633, -0.048898350447416306, 0.004755670204758644, 0.07139495015144348, -0.03708703815937042, -0.01408732496201992, 0.01276963297277689, -0.05548681318759918, 0.03957867622375488, -0.01920236647129059, -0.0023179398849606514, -0.01078710611909628, 0.0270486231893301, 0.023299189284443855, -0.059943005442619324, 0.0017429471481591463, 0.0042765093967318535, 0.004935355391353369, -0.0859135165810585, -0.016698751598596573, 0.0245809443295002, -0.035386018455028534, 0.03040274791419506, -0.026856958866119385, -0.0341402031481266, 0.04393903911113739, -0.03540997579693794, 0.016303444281220436, -0.058553438633680344, -0.04645463079214096, 0.001711502205580473, -0.008624892681837082, 0.00165609922260046, 0.00821760669350624, -0.03071420267224312, 0.0101941442117095, -0.012050892226397991, 0.006917882710695267, -0.004195651039481163, -0.05194102227687836, 0.019621631130576134, 0.02218514122068882, 0.034236032515764236, 0.01436284277588129, -0.009128011763095856, -0.03028295747935772, 0.010248050093650818, -0.011865217238664627, 0.002189165446907282, 0.01596803031861782, -0.014290968887507915, 0.021214840933680534, 0.03945888578891754, 0.006540543865412474, 0.012326409108936787, -0.02678508497774601, -0.02707258053123951, 0.011865217238664627, -0.008924368768930435, 0.06372837722301483, 0.03251105546951294, 0.002015469828620553, -0.0006128016393631697, -0.01868726871907711, -0.046262968331575394, -0.03696724772453308, 0.0010009966790676117, -0.025347601622343063, -0.020052876323461533, -0.026473630219697952, -0.030019419267773628, -0.014003472402691841, 0.0047406964004039764, 0.01241026259958744, -0.03989012911915779, 0.007271263748407364, -0.0065345545299351215, -0.029132971540093422, -0.00526477862149477, -0.03624850884079933, 0.014530548825860023, 0.02846214734017849, 0.004000992048531771, 0.032439179718494415, 0.040513038635253906, 0.013392542488873005, 0.014434716664254665, 0.027384035289287567, 0.0016860468313097954, -0.025467392057180405, -0.0019465903751552105, -0.007205379195511341, -0.0004424749640747905, 0.003620658302679658, 0.006456690840423107, 0.015716470777988434, -0.019453926011919975, 0.04705358296632767, 0.01029596570879221, -0.05548681318759918, -0.05357016995549202, 0.050168126821517944, 0.04139948636293411, 0.06109299138188362, 0.0034589413553476334, 0.010739189572632313, -0.045424435287714005, -0.0009201383218169212, 0.03301417455077171, 0.006636376027017832, -0.04920980706810951, 0.05275559425354004, 0.004561011213809252, 0.00662439689040184, 0.02580280415713787, 0.01787269487977028, 0.003614668734371662, -0.03248709812760353, -0.02527572773396969, -0.009367591701447964, -0.035937052220106125, 0.014003472402691841, -0.01940600946545601, -0.02328721061348915, -0.047652535140514374, -0.029755881056189537, 0.027431951835751534, 0.006468669511377811, -0.025730930268764496, 0.018639352172613144, 0.031073572114109993, -0.021071093156933784, -0.028126733377575874, -0.016878437250852585, 0.01493783574551344, 0.022520553320646286, 0.03421207517385483, -0.022975755855441093, -0.01657896116375923, -0.056013889610767365, 0.002340400591492653, 0.008816557005047798, 0.007103557698428631, 0.031049614772200584, 0.0009396042441949248, -0.00341701484285295, -0.06598043441772461, -0.00034963758662343025, -0.040393248200416565, 0.015788346529006958, -0.006851998157799244, 0.020783595740795135, -0.012637863866984844, 0.022077329456806183, -0.029803797602653503, 0.008211616426706314, -0.0026204101741313934, -0.022832008078694344, 0.028941307216882706, -0.02146640047430992, -0.01063137874007225, 0.05606180429458618, -0.017345618456602097, -0.021550253033638, 0.06679500639438629, -0.054193075746297836, 0.007684540003538132, 0.018435709178447723, -0.00913999043405056, -0.03241522237658501, 0.030738160014152527, 0.013991492800414562, -0.02918088808655739, -0.014494611881673336, -0.041351571679115295, -0.048179611563682556, -0.006378827150911093, 0.00977487862110138, -0.025706972926855087, 0.01451857015490532, -0.045544225722551346, -0.019681526347994804, 0.008013962768018246, 0.008043910376727581, 0.011068612337112427, 0.04072866216301918, -0.010116280987858772, 0.010637368075549603, -0.0007164950366131961, -0.0026308917440474033, -0.03133711218833923, -0.02062786929309368, -0.00963113084435463, 0.04508902505040169, -0.03682349994778633, 0.028222566470503807, 0.06257838755846024, 0.012925360351800919, 0.007247305940836668, -0.02371845580637455, -3.1468320230487734e-05, 0.01909455470740795, 0.02537156082689762, -0.04298071563243866, -0.0161956325173378, -0.007235326804220676, 0.0344276987016201, -0.0140993045642972, 0.009930606000125408, -0.017477387562394142, 0.015369080007076263, -0.023526791483163834, 0.054336827248334885, -0.007450949400663376, -0.006402784958481789, 0.022292952984571457, 0.040944281965494156, -0.011661574244499207, -0.027959028258919716, 0.05035979300737381, -0.009720972739160061, 0.018040401861071587, 0.06454294919967651, -0.010655336081981659, -0.004869470838457346, -0.021107029169797897, 0.02874964289367199, 0.007079599425196648, 0.014374821446835995, -0.022855965420603752, -0.01141001470386982, -0.03624850884079933, 0.00872072484344244, 0.024628860875964165, -0.02137056738138199, -0.04413070157170296, -0.018902890384197235, 0.028773602098226547, -0.019453926011919975, 0.017800820991396904, 0.01094882283359766, 0.02527572773396969, 0.055343061685562134, -0.01805238053202629, 0.04245363920927048, 0.032463137060403824, 0.0023119505494832993, -0.012446199543774128, 0.010277997702360153, -0.019621631130576134, -0.010337892919778824, 0.0023613639641553164, -0.018902890384197235, -0.02250857464969158, 0.026689251884818077, -0.009002231992781162, 0.004632885102182627, 0.012470157817006111, 0.06502211093902588, -0.00043049597297795117, -0.004513095133006573, 0.00033466381137259305, 0.01668677292764187, 0.006025446113198996, 0.0004439723561517894, 0.026449671015143394, 0.037446409463882446, -0.06310546398162842, -0.0546722374856472, -0.003674563718959689, 0.009762899950146675, 0.004423252306878567, 0.01954975724220276, -0.050024379044771194, 0.01021211314946413, 0.06674709171056747, 0.007235326804220676, 0.015393038280308247, 0.02635383978486061, 0.035218313336372375, 0.05136602744460106, -0.056013889610767365, 0.01214672438800335, 0.0018417739775031805, -0.013572227209806442, -0.037039123475551605, 0.04300467297434807, -0.023754391819238663, -0.012853486463427544, -0.03581726551055908, -0.0013588698348030448, 0.035242270678281784, 0.038692228496074677, -0.003147487062960863, -0.027839237824082375, 0.01741749234497547, -0.0044442154467105865, -0.0022206103894859552, -0.036464132368564606, -0.0026877920608967543, -0.007978025823831558, 0.03902764245867729, 0.0006326418952085078, 0.04432236775755882, -0.014638359658420086, 0.017944568768143654, -0.029085054993629456, 0.02351481281220913, -0.01282952819019556, 0.002337405923753977, 0.029468383640050888, 0.012542031705379486, 0.014039409346878529, -0.03624850884079933, -0.01368003897368908, 0.04798794537782669, 0.010224091820418835, -0.03945888578891754, 0.030354831367731094, -0.04032137617468834, 0.008109794929623604, -0.0034529520198702812, -0.019334135577082634, 0.01960965245962143, -0.056732628494501114, -0.03095378167927265, 0.01909455470740795, 0.04643067345023155, 0.0088944211602211, -0.05548681318759918, 0.006911893375217915, -0.007816309109330177, -0.05845760926604271, 0.018351854756474495, -0.02582676336169243, -0.031888145953416824, -0.006929861847311258, 0.0049533238634467125, 0.030378790572285652, 0.0005585217149928212, 0.009708994068205357, -0.012901402078568935, 0.05189310759305954, 0.026856958866119385, 0.011284234933555126, -0.004647858906537294, -0.00641476409509778, -0.03694329038262367, -0.00040167145198211074, -0.023251274600625038, -0.033397503197193146, -0.019274240359663963, -0.07815111428499222, 0.024892399087548256, -0.02498823218047619, 0.04741295427083969, 0.028557978570461273, 0.05064728856086731, 0.0014007964637130499, 0.02764757350087166, 0.030115250498056412, -0.006462680175900459, 0.016938330605626106, -0.02762361615896225, -0.010092322714626789, 0.01856747828423977, -0.011008717119693756, 0.04060887172818184, 0.012056881561875343, 0.01854351907968521, -0.061572153121232986, -0.0028584932442754507, -0.016147715970873833, -0.05289934203028679, 0.011356108821928501, -0.0009980018949136138, 0.009439466521143913, -0.02137056738138199, -0.057115957140922546, 0.006576480809599161, 0.04034533351659775, 0.03723078966140747, -0.013440458104014397, -0.04072866216301918, -0.044154658913612366, -0.04753274470567703, -0.01954975724220276, 0.060182586312294006, -0.010930853895843029, -0.01324879378080368, 0.008852493949234486, -0.043579667806625366, -0.03375687450170517, 0.04520881548523903, -0.03390062227845192, 0.0633450448513031, -0.0743178278207779, 0.0013566238339990377, -0.05874510481953621, 0.04949730262160301, -0.07244910299777985, 0.0006895422120578587, 0.01534512173384428, -0.024029910564422607, -0.006282994989305735, -0.05649304762482643, -0.0031265236902981997, 0.05064728856086731, 0.021047133952379227, -0.02042422629892826, -0.029540257528424263, 0.013117024675011635, 0.01819612830877304, 0.01402742974460125, -0.014398779720067978, -0.0015220839995890856, 0.0025051122065633535, -0.05682846158742905, -0.006456690840423107, -0.016003968194127083, 0.009523319080471992, -0.004501115996390581, -0.03337354585528374, -0.005336652509868145, 0.028653811663389206, -0.001348388264887035, -0.03835681453347206, -0.03373291343450546, -0.001251058652997017, 0.022412743419408798, -0.017693009227514267, 0.020124750211834908, -0.0011724464129656553, 0.01534512173384428, -0.02404188923537731, 0.0011200382141396403, -0.011865217238664627, 0.01825602352619171, -0.003899170318618417, -0.0013730949722230434, 0.01360816415399313, 0.03430790826678276, 0.02279607206583023, 0.01633938029408455, 0.007409022655338049, 0.0006333905621431768, 0.002584473229944706, 0.02482052519917488, -0.01564459688961506, -0.04544839262962341, 0.029228804633021355, 0.020639847964048386, -0.005621154326945543, 0.002398798242211342, -0.009583214297890663, 0.03545789420604706, -0.016638856381177902, -0.03334958478808403, 0.0014749165857210755, -0.003572742221876979, 0.015045646578073502, -0.049449387937784195, -0.009601183235645294, 0.054049327969551086, -0.012158703058958054, -0.025874678045511246, 0.016710730269551277, 0.03013920970261097, -0.007175431586802006, 0.005153972655534744, 0.013799828477203846, 0.05347433686256409, -0.047245245426893234, 0.0009994993451982737, -0.016219589859247208, -0.001136509352363646, 0.015788346529006958, 0.008870462886989117, -0.043867163360118866, -0.022017434239387512, 0.004863481502979994, -0.018495604395866394, -0.012338388711214066, -0.00895431637763977, 0.06866373121738434, -0.0036086791660636663, -0.006040419917553663, 0.02351481281220913, -0.023466896265745163, -0.007037673145532608, 0.03670370951294899, -0.028414230793714523, -0.021011197939515114, -0.013500353321433067, 0.02635383978486061, 0.006552523002028465, -0.036056842654943466, 0.02062786929309368, 0.007391054183244705, -0.052132684737443924, -0.011320171877741814, -0.032463137060403824, -0.009960553608834743, 0.006582470610737801, 0.022412743419408798, 0.028294440358877182, -0.004351378418505192, 0.004596948157995939, -0.013560248538851738, -0.038979724049568176, 0.005450453143566847, -0.02791111171245575, -0.02328721061348915, -0.005947582423686981, -0.010625389404594898, -0.0020783597137778997, -0.007013714872300625, 0.026258006691932678, -0.006040419917553663, -0.008121774531900883, 0.004063881933689117, -0.016423232853412628, -0.02206535078585148, 0.02707258053123951, -0.009086085483431816, -0.009044158272445202, 0.00465684337541461, 0.0029213831294327974, -0.009864721447229385, -0.014326905831694603, -0.0051629566587507725, 0.0007681545102968812, -0.0036086791660636663, 0.006498617120087147, -0.0017519313842058182, 0.004426246974617243, -0.005570243578404188, 0.036775585263967514, -0.009026190266013145, 0.025227811187505722, -0.012925360351800919, -0.025635099038481712, -0.0017010205192491412, 0.010236070491373539, 0.010493619367480278, 0.02889339067041874, -0.0019825275521725416, -0.008133753202855587, -0.00029760372126474977, 0.0018567477818578482, -0.018962785601615906, -0.020028918981552124, 0.03739849478006363, -0.0013221841072663665, 0.05486390367150307, -0.03191210329532623, -0.017165932804346085, 0.0004993753391318023, -0.0177888423204422, 0.04578380659222603, 0.018004463985562325, 0.017920611426234245, 0.0006446209154091775, 0.014434716664254665, -0.021047133952379227, 0.0019016690785065293, 0.00905613787472248, 0.022915860638022423, -0.01298525556921959, -0.012901402078568935, -0.010697263292968273, -0.01627948507666588, 0.010325913317501545, -0.0059296139515936375, 0.05299517512321472, -0.023934077471494675, -0.02580280415713787, -0.017896652221679688, 0.029085054993629456, 0.003728469368070364, 0.007924120873212814, 0.043579667806625366, -0.023203358054161072, -0.010248050093650818, -0.022221079096198082, -0.007091578561812639, -0.004228593315929174, -0.03895576670765877, -0.012374325655400753, 0.028126733377575874, 0.04712545499205589, -0.009655088186264038, -0.0018253028392791748, -0.03469123691320419, 0.015800325199961662, 0.03977033868432045, 0.02276013419032097, -0.035913094878196716, -0.07791153341531754, -0.05189310759305954, -0.015536786057054996, -0.004363357089459896, 0.026761125773191452, 0.04494527727365494, 0.004809575621038675, -0.019513821229338646, -0.012697759084403515, -0.03042670525610447, -0.026593420654535294, -0.04350779205560684, 0.01668677292764187, 0.00041327610961161554, -0.009229833260178566, 0.011499857529997826, 0.0008632380049675703, -0.018555499613285065, 0.026042385026812553, -0.02157421223819256, 0.015836261212825775, 0.030330874025821686, -0.01304515078663826, -0.01556074433028698, 0.00652257539331913, -0.04446611553430557, 0.01732165925204754, 0.032702717930078506, 0.002785121789202094, -0.01119439210742712, 0.0176450926810503, -0.007900162599980831, 0.019274240359663963, -0.022951798513531685, -0.028653811663389206, -0.003204387379810214, 0.008319428190588951, 0.017764883115887642, -0.03670370951294899, 0.008714735507965088, -0.027839237824082375, 0.008672809228301048, 0.01031393464654684, -0.003935107495635748, 0.00899624265730381, -0.02232888899743557, 0.01520137395709753, -0.014626380987465382, 0.008025942370295525, -0.019573714584112167, -0.022748155519366264, 0.03126523643732071, 0.00601646164432168, 0.026066342368721962, 0.038572438061237335, -0.000749811646528542, -0.017022185027599335, -0.006792103406041861, -0.004965303000062704, -0.0068639772944152355, 0.031217321753501892, -0.000597079168073833, 0.011679542250931263, -0.04880252107977867, -0.005681049078702927, 0.006588459946215153, 0.0010107296984642744, -0.00238981400616467, 0.03682349994778633, 0.03797348588705063, 0.0003324177523609251, -0.006959809456020594, -0.005872713401913643, -0.02860589511692524, -0.055199313908815384, -0.02122681960463524, -0.040680743753910065, 0.008385312743484974, -0.000725479272659868, 0.007109547033905983, 0.032846465706825256, 0.0014599427813664079, 0.017549261450767517, 0.013093066401779652, 0.022089309990406036, 0.024173658341169357, 0.01822008565068245, -0.01805238053202629, -0.04983271658420563, -0.0070496522821486, -0.029085054993629456, -0.0019091559806838632, 0.01744144968688488, -0.0009935097768902779, -0.04341196268796921, -0.003059141803532839, 0.03485894203186035, -0.0034559466876089573, -0.027312161400914192, 0.004501115996390581, 0.02302367240190506, 0.04353175312280655, 0.006786113604903221, -0.026880916208028793, -0.0008984263404272497, -0.00778037216514349, -0.05318684130907059, 0.009882689453661442, 0.01145194098353386, 0.007325169630348682, -0.0066543444991111755, 0.031313154846429825, -0.056588880717754364, -0.022688260301947594, 0.027096537873148918, -0.0018312924075871706, -0.017513323575258255, 0.024113763123750687, 0.0024137720465660095, 0.031576693058013916, -0.00155128282494843, 0.015836261212825775, 0.02678508497774601, -0.07671362906694412, 0.02565905638039112, 0.006456690840423107, 0.006151225883513689, -0.006923872511833906, 0.038835976272821426, 0.01827998086810112, 0.025347601622343063, -0.02105911448597908, -0.0006828040350228548, -0.0005394301260821521, -0.003887191414833069, -0.016387296840548515, 0.04609525948762894, 0.03241522237658501, -0.032463137060403824, 0.04087240993976593, 0.033708956092596054, -0.03711099922657013, -0.005159961991012096, 0.011661574244499207, -0.013727954588830471, -0.015932094305753708, 0.03378083184361458, -0.009409518912434578, -0.01113449689000845, -0.01811227574944496, 0.025227811187505722, -0.018795078620314598, -0.018795078620314598, 0.01926226168870926, -0.0037045113276690245, -0.01960965245962143, -0.014913877472281456, -5.067686288384721e-05, -0.0004503361997194588, -0.02510802261531353, 0.01732165925204754, 0.02230493165552616, -0.015608660876750946, -0.003824301529675722, 0.03042670525610447, -0.04856294021010399, -0.001978035317733884, 0.010307945311069489, 0.006040419917553663, 0.032151684165000916, -0.013835765421390533, -0.058697186410427094, 0.02441323921084404, -0.022137224674224854, 0.05984717234969139, 0.012889423407614231, 0.008900410495698452, 0.025203853845596313, 0.019082576036453247, 0.044034868478775024, -0.018735183402895927, 0.0018522556638345122, -0.03236730769276619, 0.0033032142091542482, 0.06320130079984665, 0.01119439210742712, 0.01029596570879221, -0.0020693752449005842, 0.008966295048594475, -0.01695031113922596, 0.002076862147077918, -0.0005076109082438052, -0.006642365362495184, 0.0028150691650807858, -0.0020798570476472378, 0.006378827150911093, -0.004261535592377186, -0.010595441795885563, 0.001552780158817768, -0.030330874025821686, -0.020184645429253578, -0.01784873753786087, 0.026880916208028793, 0.0027357081416994333, -0.012601926922798157, -0.009403529576957226, -0.015692513436079025, 0.03562559932470322, -0.01905861683189869, -0.012601926922798157, -0.023682517930865288, 0.005369594786316156, 0.026329882442951202, -0.00196006684564054, -0.005866724066436291, 0.010511588305234909, 0.004462184384465218, 0.055582642555236816, 0.01340452115982771, -0.002797100692987442, -0.018723204731941223, -0.028414230793714523, 0.0017519313842058182, 0.0014801573706790805, 0.0039740391075611115, 0.009553266689181328, -0.013440458104014397, -0.010553514584898949, 0.012997234240174294, 0.021130988374352455, -0.015452933497726917, 0.026258006691932678, 0.013512331992387772, -0.013224835507571697, 0.01146990992128849, -0.003156471299007535, 0.03555372357368469, 0.013727954588830471, 0.04592755436897278, 0.0164831280708313, -0.038883890956640244, -0.05289934203028679, -0.0042345826514065266, -0.009409518912434578, 0.015165437012910843, -0.023814287036657333, -0.0009291225578635931, 0.01839977130293846, 0.020687764510512352, 0.01854351907968521, -0.01057148352265358, 0.0063249217346310616, 0.0017339629121124744, 0.023131484165787697, -0.0077504245564341545, -0.015716470777988434, 0.012589948251843452, -0.0068639772944152355, 0.022712217643857002, 0.03334958478808403, -0.01848362386226654, 0.03428395092487335, 0.043459877371788025, 0.021586190909147263, -0.019489862024784088, -0.012542031705379486, 0.006492627784609795, -0.007415011990815401, -0.02365856058895588, 0.041950520128011703, -0.005180925130844116, 0.010823043063282967, 0.0105595039203763, -0.016674792394042015, 0.022089309990406036, -0.018291961401700974, 0.00027046375907957554, 0.024892399087548256, -0.012577968649566174, 0.016902394592761993, -0.005827792454510927, -0.012613905593752861, -0.0199570432305336, 0.057547204196453094, -0.013057129457592964, 0.02132265269756317, -0.014590444043278694, -0.018244044855237007, -0.003722479799762368, 0.0063069527968764305, 0.002969298977404833, 0.03406832739710808, 0.03169648349285126, 0.01801644265651703, 0.0015737435314804316, 0.012116776779294014, -0.016902394592761993, 0.02331116981804371, 0.0002524952287785709, 0.040417205542325974, 0.027719447389245033, 0.0049563185311853886, -0.03699120879173279, 0.04494527727365494, 0.017980506643652916, 0.022424722090363503, -0.04365153983235359, 0.008043910376727581, -0.03555372357368469, -0.008702756837010384, 0.0211190078407526, 0.005348631646484137, -0.014961793087422848, 0.00819963775575161, -0.011967038735747337, -0.012673800811171532, -0.002433238085359335, 0.004827544093132019, 0.012661822140216827, 0.015333143062889576, 0.0024766619317233562, 0.03485894203186035, -0.006947830319404602, 0.03255897015333176, 0.0086787985637784, 0.001190414885058999, 0.002969298977404833, 0.010870958678424358, -0.001131268567405641, 0.03713495656847954, 0.03196002170443535, 0.004297472536563873, 0.02580280415713787, -0.019370071589946747, -0.05682846158742905, -0.03665579482913017, 0.008061879314482212, -0.03809327632188797, -0.024916358292102814, -0.02721632830798626, -0.0014007964637130499, 0.009756910614669323, -0.028557978570461273, 0.016818542033433914, 0.029085054993629456, -0.019166428595781326, 0.014973772689700127, -0.0014045399148017168, 0.034787070006132126, -0.029372552409768105, -0.005788860376924276, 0.019969023764133453, 0.0026159179396927357, -0.005579227581620216, -0.013775871135294437, 0.00423757778480649, -0.0027806295547634363, 0.03782973811030388, -0.03150481730699539, -0.003674563718959689, 0.008085837587714195, -0.007031683344393969, -0.029228804633021355, -0.009535298682749271, -0.001296728732995689, -0.0032013924792408943, -0.04983271658420563, -0.021646086126565933, 0.014386801049113274, 0.03560164198279381, 0.03421207517385483, 0.01602792553603649, -0.02244867943227291, -0.013081087730824947, -0.035529766231775284, 0.03497873246669769, 0.0022011445835232735, -0.03545789420604706, 0.029827754944562912, 0.021035155281424522, 0.0035487841814756393, 0.01556074433028698, -0.040225543081760406, 0.03394853696227074, -0.0012488126521930099, 0.029516300186514854, 0.0020783597137778997, -0.0003279256052337587, 0.05802636221051216, 0.022173162549734116, 0.016063863411545753, -0.005875708535313606, -0.002109804656356573, 0.06923872232437134, -0.0014397281920537353, 0.041782815009355545, -0.014686276204884052, 0.009547277353703976, 0.032582927495241165, 0.003662584815174341, -0.015081583522260189, 0.03207980841398239, -0.019250281155109406, -0.01651906594634056, -0.00022778852144256234, 0.021190883591771126, 0.026305923238396645, 0.016039904206991196, 0.02304762974381447, -0.015584702603518963, -0.018148211762309074, 0.03699120879173279, 0.010703252628445625, -0.0012031425721943378, 0.01883101649582386, 0.009601183235645294, 0.007313190493732691, -0.010936843231320381, -0.015177415683865547, -0.04873064532876015, 0.02721632830798626, 0.004755670204758644, -0.017513323575258255, -0.021478379145264626, 0.04865876957774162, 0.013895660638809204, -0.012164692394435406, -0.017716968432068825, -0.049449387937784195, -0.008457186631858349, -0.020831512287259102, -0.000751309038605541, 0.004249556455761194, -0.007337148301303387, -0.006552523002028465, -0.005669070407748222, 0.07177827507257462, 0.02149035781621933, 0.01839977130293846, -0.022149205207824707, -0.031049614772200584, -0.031169405207037926, -0.002797100692987442, 0.003566752653568983, 0.07355117052793503, 0.011565742082893848, -0.014698254875838757, 0.025179896503686905, 0.0049892608076334, -0.042046353220939636, 0.017800820991396904, 0.04604734480381012, -0.016818542033433914, 0.014554507099092007, -0.005537301301956177, 0.014650339260697365, 0.02652154676616192, -0.018531540408730507, 0.011098559945821762, 0.009343634359538555, 0.0006554768770001829, 0.024389280006289482, 0.013536290265619755, 0.010128259658813477, -0.009229833260178566, -0.03112148866057396, 0.0003535682044457644, -0.0026054363697767258, -0.015860220417380333, -0.03375687450170517, 0.011697511188685894, 0.03864431381225586, -0.005061135161668062, 0.017968526110053062, 0.016003968194127083, 0.013129003345966339, -0.024604903534054756, 0.03416416049003601, 0.010433725081384182, -0.027863195165991783, -0.019417988136410713, -0.004354373086243868, 0.015129500068724155, 0.033541250973939896, -0.02498823218047619, 0.020232561975717545, -0.0045340582728385925, 0.026856958866119385, 0.009104053489863873, 0.026281965896487236, -0.0005551525973714888, -0.018962785601615906, 0.01625552773475647, -0.027695490047335625, 0.000830295670311898, -0.003671569051221013, -0.0034289939794689417, -0.015225332230329514, 0.00903816893696785, 0.016818542033433914, -0.011955060064792633, -0.020555995404720306, -0.030187126249074936, 0.023502834141254425, 0.030067335814237595, 0.02345491759479046, -0.05179727450013161, 0.012026933953166008, 0.02831839770078659, 0.0017294706776738167, -0.00352183124050498, -0.008103805594146252, 0.0016935336170718074, 0.0016680782428011298, 0.020352352410554886, -0.011709489859640598, -0.015980010852217674, 0.007756414357572794, 0.004510100465267897, 0.013416499830782413, -0.04604734480381012, 0.03497873246669769, -0.005788860376924276, 0.029899628832936287, -0.023263253271579742, -0.039674509316682816, -0.0011043157428503036, 0.04197447746992111, -0.011667563579976559, -0.04410674422979355, -0.020783595740795135, 0.03766203299164772, -0.0364401713013649, -0.025203853845596313, 0.03236730769276619, 0.006151225883513689, -0.0013805818744003773, 0.00030153433908708394, 0.01584824174642563, 0.01793259009718895, 0.007295222021639347, -0.04578380659222603, -0.026737168431282043, -0.005390557926148176, -0.015021688304841518, 0.002996251918375492, -0.04753274470567703, 0.006618407554924488, 0.017944568768143654, 0.026880916208028793, 0.0009006723994389176, 0.015776365995407104, -0.024077827110886574, -0.019992981106042862, -0.06281796842813492, -0.009367591701447964, 0.024652818217873573, -0.016087820753455162, -0.001042174524627626, 0.0019900144543498755, 0.05472015589475632, 0.00496829766780138, 0.008283491246402264, 0.01689041592180729, 0.015237310901284218, 0.002749184612184763, 0.02594655379652977, 0.006133257411420345, -0.019130492582917213, 0.015500849112868309, -0.006846008822321892, 0.03236730769276619, -0.004587963689118624, -0.016710730269551277, 0.03622455149888992, 0.03095378167927265, -0.002442222321406007, 0.00853505078703165, -0.016794582828879356, 0.032439179718494415, 0.0005484144203364849, -0.010643357411026955, 0.027839237824082375, -0.014386801049113274, 0.0025694994255900383, 0.03464331850409508, -0.02334710583090782, -0.024772608652710915, -0.045256730169057846, -0.011463920585811138, -0.01805238053202629, -0.01880705915391445, 0.036056842654943466, 0.01541699655354023, -0.007558760233223438, 0.029540257528424263, -0.01639927551150322, -0.011661574244499207, -0.008223596028983593, 0.005429490003734827, 0.00331219844520092, -0.013703996315598488, 0.007954067550599575, -0.03840473294258118, 0.0013334144605323672, -0.0032013924792408943, -0.008948326110839844, 0.0019495851593092084, 0.02467677742242813, 0.007480896543711424, -0.003042670665308833, -0.005073114298284054, -0.05040770769119263, -0.005926619283854961, -0.035769347101449966, -0.07244910299777985, 0.02762361615896225, 0.034379780292510986, -0.03473915159702301, 0.03473915159702301, 0.022580448538064957, 0.01657896116375923, 0.00631294259801507, 0.0012308440636843443, -0.00913999043405056, -0.004965303000062704, -0.03770994767546654, -0.040129709988832474, 0.01568053476512432, -0.02527572773396969, 0.04940146952867508, 0.0005409275181591511, 0.02050807885825634, -0.0027252265717834234, 0.02073568105697632, -0.00778037216514349, 0.005782871041446924, -0.04324425384402275, -0.012398283928632736, -0.02510802261531353, 0.0049982452765107155, 0.008427239023149014, -0.02345491759479046, -0.013129003345966339, 0.0027551741804927588, -0.012224587611854076, 0.019106533378362656, -0.002132265130057931, 0.002437730086967349, -0.045112982392311096, -0.010032427497208118, 0.01197302807122469, 0.02635383978486061, -0.017633114010095596, 0.02412574179470539, -0.03418811783194542, 0.0016261517303064466, 0.006217110436409712, 0.006498617120087147, 0.0024542012251913548, 0.017333639785647392, 0.007349127437919378, -0.027863195165991783, -0.02073568105697632, -0.028078818693757057, -0.02036433108150959, 0.050982698798179626, 0.007852246053516865, -0.007558760233223438, -0.0002910527109634131, -0.006438722368329763, 0.028102776035666466, 0.044561948627233505, -0.007888182997703552, -0.005507353693246841, 0.0060943253338336945, -0.003252303460612893, -0.02467677742242813, -0.03917139023542404, -0.0029722938779741526, -0.05208477005362511, 0.015812303870916367, -0.0034918836317956448, 0.012721717357635498, -0.0038752122782170773, -0.011439962312579155, -0.03128919377923012, -0.010517577640712261, 0.014255031011998653, -0.03311000391840935, -0.004384320694953203, -0.04489735886454582, -0.026545504108071327, -0.031456902623176575, 0.009349623695015907, 0.020472140982747078, -0.0038662280421704054, -0.010218102484941483, -0.007972036488354206, -0.02762361615896225, -0.03289438411593437, 0.012949318625032902, -0.04187864810228348, -0.004120782017707825, -0.01766905188560486, -0.03373291343450546, 0.019429966807365417, 0.0015190892154350877, -0.0037524274084717035, 0.06487835943698883, -0.027240287512540817, -0.02721632830798626, -0.025179896503686905, 0.0015572723932564259, -0.026473630219697952, 0.023131484165787697, -0.035386018455028534, -0.002536557149142027, -0.02496427297592163, -0.021418483927845955, 0.008349375799298286, 0.00635486887767911, -0.014003472402691841, 0.03205585107207298, 0.009349623695015907, 0.007954067550599575, -0.014686276204884052, -0.005854744929820299, -0.008630882017314434, 0.014686276204884052, 0.010811063461005688, 0.013224835507571697, -3.170228228555061e-05, -0.004821554757654667, 0.013596185483038425, -0.011823290959000587, -0.005498369224369526, -0.013907640241086483, 0.009900658391416073, 0.017716968432068825, -0.01078710611909628, 0.03588913753628731, -0.031600650399923325, -0.012506094761192799, 0.00878062006086111, 0.00866082962602377, 0.012152713723480701, -0.0017923605628311634, -0.007816309109330177, 0.010727210901677608, 0.012422241270542145, 0.023586686700582504, -0.011751417070627213, -0.011392045766115189, -0.0015572723932564259, 0.010727210901677608, -0.02510802261531353, 0.00591464014723897, -0.004507105331867933, 0.01666281372308731, -0.0002524952287785709, 0.019861212000250816, 0.01071523129940033, 0.035098522901535034, -0.010032427497208118, -0.00784026738256216, -0.022029414772987366, -0.006684292107820511, 0.042621344327926636, -0.012637863866984844, 0.004896423779428005, 0.013164941221475601, -0.027024663984775543, 0.019861212000250816, -0.001340901362709701, -0.054049327969551086, 0.049449387937784195, -0.048323359340429306, -0.036895375698804855, 0.021238798275589943, -0.019286219030618668, -0.01318889856338501, 0.011104549281299114, -0.025778846815228462, -0.04058491438627243, -0.0008864473202265799, 0.024233553558588028, 0.03162460774183273, -0.015333143062889576, 0.015896156430244446, 0.02244867943227291, 0.004399294499307871, -0.02108307182788849, 0.005399542395025492, -0.015476890839636326, 0.027863195165991783, -0.018327897414565086, -0.018639352172613144, 0.03598497062921524, -0.006618407554924488, -0.021969519555568695, -0.0018822031561285257, 0.013164941221475601, -0.022197119891643524, 0.008505103178322315, 0.04118386283516884, -0.019825274124741554, -0.002653352450579405, 0.01989714801311493, -0.02831839770078659, 0.00899624265730381, -0.0033541249576956034, 0.011098559945821762, 0.013512331992387772, -0.0015932093374431133, 0.002007982926443219, -0.00373445893637836, -0.045280687510967255, 0.028414230793714523, -0.0017669051885604858, 0.021789833903312683, 0.01436284277588129, -0.008852493949234486, 0.007918130606412888, -0.009649098850786686, -0.020615890622138977, 0.006456690840423107, -0.028701726347208023, 0.030019419267773628, 0.009026190266013145, 0.009912637062370777, 0.02365856058895588, 0.010637368075549603], [0.03592988848686218, 0.017021872103214264, 0.0347423180937767, -0.0009314294438809156, -0.07647035270929337, 0.0030358778312802315, 0.00157178717199713, -0.038165319710969925, 0.025404738262295723, 0.04796861484646797, -0.01040872372686863, 0.000406408857088536, -0.017988231033086777, -0.011945581994950771, -0.033834174275398254, 0.022913163527846336, -0.013028369285166264, 0.04105275124311447, -0.004523253999650478, -0.007410685531795025, 0.015950728207826614, 0.057282909750938416, -0.029782455414533615, 0.036418888717889786, -0.015636371448636055, -0.01394815556704998, 0.04203075170516968, 0.024287022650241852, 0.02213309146463871, -0.03932960703969002, 0.017592372372746468, -0.016195228323340416, 0.054535191506147385, -0.027360739186406136, 0.03774617612361908, -0.004211807623505592, -0.03269317373633385, 0.022680306807160378, 0.031459029763936996, -0.004860897082835436, -0.06678348779678345, 0.02340216375887394, -0.010204973630607128, -0.02507873624563217, -0.04107603803277016, 0.08191921561956406, 0.04580304026603699, -0.027570310980081558, -0.021993376314640045, 0.048061758279800415, -0.0005606768536381423, -0.017278015613555908, -0.007038113661110401, 0.018151231110095978, 0.047270044684410095, 0.03632574900984764, 0.02073594741523266, 0.003466663882136345, 0.02213309146463871, -0.01776701584458351, -0.0019603678956627846, -0.014914513565599918, -0.026685452088713646, 0.040913037955760956, 0.006618970539420843, -0.0008535677334293723, 0.00932011567056179, 0.05202033370733261, -0.014390585012733936, 0.008703043684363365, 0.02475273609161377, 0.009873151779174805, -0.016078799962997437, -0.08112750202417374, -0.03269317373633385, 0.010065259411931038, 0.03818860650062561, 0.00019356267875991762, 0.03115631453692913, -0.012842083349823952, -0.0048638079315423965, 0.025381451472640038, 0.008854401297867298, 0.0454537570476532, -0.015636371448636055, 0.0228898786008358, -0.03087688609957695, 0.00533534400165081, -0.031808312982320786, -0.00463095074519515, -0.00822568591684103, -0.0019108856795355678, -0.03388074412941933, 0.07227892428636551, 0.025218451395630836, -0.022005019709467888, 0.047619327902793884, -0.009861509315669537, -0.024100735783576965, 0.07199949771165848, 0.010734723880887032, 0.01019333116710186, -0.007911328226327896, 0.06650406122207642, 0.0503903329372406, -0.08503950387239456, -0.06343034654855728, 0.03814203664660454, 0.015706228092312813, -0.020351732149720192, -0.04189103841781616, -0.00381012842990458, -0.017301302403211594, 0.07018321007490158, -0.01609044335782528, -0.005757397972047329, -0.0183608029037714, 0.009203687310218811, 0.04391689598560333, -0.014157727360725403, -0.0298057422041893, -0.008930079638957977, 0.020770875737071037, -0.11652182042598724, 0.00812672171741724, 0.01966480351984501, -0.04801518842577934, 0.0014931977493688464, -0.03313560038805008, 0.0073990426026284695, 0.017080087214708328, -0.04072675108909607, 0.0416581816971302, -0.038328319787979126, -0.009704330004751682, -0.01408786978572607, 0.025381451472640038, -0.002757904352620244, -0.010787117294967175, -0.018186159431934357, 0.03322874382138252, 0.0019108856795355678, -0.0014269789680838585, -0.02018873207271099, -0.07022977620363235, -0.010007045231759548, -0.009430723264813423, 0.05770205333828926, 0.031924743205308914, 0.017068443819880486, -0.024147307500243187, 0.044848326593637466, 0.0007516926270909607, 0.012783869169652462, 0.014600155875086784, 0.01946687512099743, -0.00945400819182396, 0.0780537873506546, 0.005131593905389309, 0.015485013835132122, -0.042380038648843765, 0.007509649731218815, -0.007369935512542725, -0.026336167007684708, 0.056165192276239395, 0.0040808250196278095, -0.00513450475409627, 0.019932590425014496, -0.04950547218322754, -0.04291560873389244, -0.033950600773096085, -0.027873026207089424, -0.009063972160220146, -0.0367216058075428, -0.035301174968481064, -0.03469574451446533, 0.014914513565599918, -0.0014728227397426963, 0.022074876353144646, -0.03544088825583458, -0.0036383962724357843, -0.012551011517643929, -0.06040319800376892, -0.037606462836265564, -0.06203319877386093, 0.05518719181418419, -0.010496045462787151, 0.002674948889762163, -0.022202948108315468, -0.023262450471520424, 0.03925975039601326, 0.028618168085813522, -0.009302651509642601, 0.023076163604855537, -0.008831115439534187, -0.02081744745373726, -0.036302462220191956, -0.023914450779557228, 0.012830439954996109, -0.0047997720539569855, 0.009587901644408703, -0.03767631947994232, 0.01775537244975567, 0.014914513565599918, -0.06198662891983986, -0.044126469641923904, 0.039958320558071136, 0.015554871410131454, 0.04042403772473335, -0.015007656998932362, 0.003353145904839039, -0.025497879832983017, -0.05262576416134834, 0.015147371217608452, -0.01493779942393303, 0.014774799346923828, 0.0019661893602460623, 0.013517369516193867, -0.02419387921690941, 0.04801518842577934, 0.010880259796977043, -0.027244310826063156, -0.0008404694963246584, 0.0018206534441560507, -0.020526375621557236, -0.002315475372597575, -0.004584379028528929, 0.007230220828205347, -0.010519331321120262, -0.045360613614320755, -0.029270170256495476, 0.0250321663916111, -0.025893738493323326, -0.022657020017504692, 0.039911750704050064, 0.010833688080310822, -0.02705802395939827, -0.023821307346224785, 0.0014568138867616653, -0.004540718626230955, 0.004945307970046997, 0.06589863449335098, -0.021364662796258926, 0.010921009816229343, -0.0004089557332918048, -0.006578220520168543, -0.0029238152783364058, 0.008842757903039455, 0.023867879062891006, 0.003583092475309968, 0.01142165344208479, -0.02817573957145214, 0.02224951982498169, -0.04144860804080963, 0.0182793028652668, 0.02249401994049549, 0.039446037262678146, -0.001002741977572441, 0.054814621806144714, -0.013156441040337086, -0.009972115978598595, 0.005949505604803562, 0.0026982345152646303, -0.016579443588852882, -0.06138119846582413, -0.012166797183454037, 0.07074206322431564, -0.03246031701564789, 0.003487038891762495, -0.0009510767413303256, -0.04196089506149292, 0.022005019709467888, -0.022074876353144646, -0.02722102403640747, -0.02575402334332466, 0.029107170179486275, 0.0029456454794853926, -0.050762902945280075, 0.00525384396314621, 0.0013010904658585787, -0.05439547821879387, -0.01394815556704998, 0.0023358503822237253, -0.052439477294683456, 0.024333594366908073, -0.008289721794426441, -0.0090989014133811, 0.006840184796601534, 0.0024959398433566093, 0.03758317604660988, 0.024496594443917274, 0.009424901567399502, -0.012702369131147861, 0.008790365420281887, 0.032274030148983, 0.015636371448636055, 3.959029709221795e-05, -0.01277222577482462, 0.006112505681812763, -0.016241800040006638, -0.03134259954094887, 0.03357803076505661, 0.012865369208157063, 0.00939579401165247, -0.05816776677966118, 0.029340026900172234, 0.025008879601955414, 0.009809115901589394, -0.019059374928474426, -0.014052941463887691, -0.009407437406480312, 0.016998587176203728, -0.05518719181418419, -0.02400759421288967, -0.05732947960495949, -0.011875725351274014, -0.012085297144949436, 0.03811874985694885, -0.009471473284065723, 0.0043311468325555325, 0.028338739648461342, 0.015263799577951431, 0.046711184084415436, 0.013168083503842354, 0.041821181774139404, 0.002450823551043868, -0.0007604248239658773, 0.022820020094513893, -0.011101474054157734, 0.0014073316706344485, -0.04466203972697258, -0.017464302480220795, 0.011351795867085457, -0.01171854604035616, -0.0006097952136769891, -0.012527725659310818, 0.021318091079592705, 0.04787547141313553, -0.013505727052688599, -0.01668423041701317, -0.010915188118815422, -0.016719158738851547, 0.029107170179486275, 0.002095716306939721, -0.02694159559905529, 0.017743730917572975, 0.0037984855007380247, 0.04044732078909874, 0.04077332466840744, 0.051275189965963364, 0.016672587022185326, -0.028105882927775383, -0.013284511864185333, 0.02209816314280033, -0.037140749394893646, -0.018058087676763535, 0.012038725428283215, -0.028548311442136765, -0.04414975270628929, 0.0038013963494449854, -0.02081744745373726, -0.016940372064709663, 0.03311231732368469, 0.06408234685659409, -0.03385746106505394, -0.0036820569075644016, 0.020293518900871277, -0.0018352069891989231, 0.024170594289898872, -0.021923519670963287, 0.010245723649859428, 0.01134597510099411, -0.012469511479139328, -0.03965560719370842, 0.017708802595734596, -0.009727615863084793, -0.018779946491122246, 0.030946742743253708, -0.01704515889286995, -0.011794225312769413, 0.02631288208067417, 0.02638273872435093, 0.043893612921237946, 0.04179789498448372, 0.055652908980846405, 0.0456167571246624, -0.03320545703172684, 0.001848305226303637, 0.04720018431544304, 0.028245598077774048, -0.02169066295027733, 0.05262576416134834, -0.0031231993343681097, 0.018209444358944893, 0.012830439954996109, 0.009192043915390968, 0.05965805426239967, 0.023588450625538826, -0.00026141875423491, -0.05737605318427086, 0.02241251990199089, -0.021958447992801666, 0.008336293511092663, -0.03492860496044159, -0.015915799885988235, -0.013820083811879158, 0.03357803076505661, -0.026848452165722847, 0.01768551580607891, -0.007684292737394571, 0.011846617795526981, -0.021760519593954086, 0.02582387998700142, -0.006799434777349234, 0.009634473361074924, -0.0016503764782100916, 0.016777371987700462, 0.013529011979699135, -0.03218088671565056, -0.01473987102508545, 0.032367173582315445, 0.0071487207897007465, -0.043171752244234085, 0.008569150231778622, 0.009582079946994781, -0.004441753961145878, -0.00412157503888011, 0.013703655451536179, 0.0025818059220910072, -0.05229976028203964, -0.02789631113409996, -0.009814937599003315, 0.04773575812578201, 0.015228871256113052, -0.02936331182718277, -0.021807091310620308, -0.00474737910553813, -0.018768303096294403, -0.01895458810031414, -0.017138300463557243, -0.02113180421292782, -0.023495307192206383, 0.026801882311701775, 0.058074623346328735, -0.019222375005483627, -0.0019341714214533567, -0.0037490034010261297, 0.021911876276135445, 0.024566451087594032, -0.028152454644441605, -0.0014902870170772076, -0.006601505912840366, -0.03632574900984764, -0.006525827571749687, -0.04959861561655998, 0.02682516723871231, 0.01978123188018799, -0.0632440596818924, 0.04477846994996071, -0.07120777666568756, 0.05108890309929848, 0.051880620419979095, 0.04251975193619728, 0.026196451857686043, 0.0347423180937767, 0.050530046224594116, -0.008621543645858765, -0.0160555150359869, -0.03171517327427864, -0.022913163527846336, -0.030527599155902863, -0.039958320558071136, -0.006258041597902775, -0.006455969996750355, 0.032600030303001404, -0.044801756739616394, -0.006927506532520056, 0.00010514965106267482, -0.030946742743253708, -0.008452721871435642, 0.00703229196369648, 0.018127944320440292, -0.03581346198916435, -0.009657759219408035, 0.04589618369936943, 0.0337643176317215, 0.06771492213010788, -0.0037257177755236626, -0.049738332629203796, -0.024054164066910744, -0.07879892736673355, -0.022400878369808197, 0.021201662719249725, -0.010379616171121597, -0.04049389436841011, -0.025218451395630836, -0.00798700749874115, -0.012690725736320019, 0.04065689444541931, -0.02157423458993435, 0.019967518746852875, -0.0031144670210778713, 0.008941722102463245, -0.048061758279800415, 0.04233346879482269, -0.018814874812960625, -0.004034253768622875, -0.004107021726667881, -0.019303875043988228, -0.025777310132980347, -0.038561176508665085, -0.0158110149204731, 0.024147307500243187, -0.00263710948638618, 0.006490898784250021, -0.03811874985694885, 0.01923401840031147, 0.0018555819988250732, -0.025404738262295723, 0.001501929946243763, -0.010187509469687939, -0.013331083580851555, -0.03197131305932999, -0.015787728130817413, -0.018651874735951424, -0.005568201653659344, 0.005562379956245422, -0.0740952119231224, 0.006595684681087732, -0.012038725428283215, 0.013307797722518444, -0.04931918904185295, -0.037490032613277435, 0.015950728207826614, 0.01943194679915905, -0.0025323238223791122, 0.01569458656013012, 0.00822568591684103, 0.014274155721068382, -0.00923861563205719, 0.024380164220929146, -0.030900171026587486, -0.0002630560484249145, -0.016823943704366684, 0.013843369670212269, 0.016463015228509903, 0.04191432520747185, 0.029177026823163033, 0.010676509700715542, -0.018628587946295738, 0.01285372581332922, 0.055373478680849075, -0.008720507845282555, 0.008604079484939575, -0.015170657075941563, -0.023588450625538826, 0.03583674877882004, -0.0071428995579481125, 0.02010723203420639, 0.026406023651361465, 0.006787791848182678, 0.016823943704366684, -0.026080023497343063, -0.009884795174002647, -0.011899011209607124, 0.029456455260515213, -0.009785830043256283, -0.02145780436694622, 0.03592988848686218, -0.004683343693614006, -0.02812916785478592, 0.03711746260523796, 0.027547026053071022, -0.024100735783576965, 0.029316740110516548, 0.017662230879068375, 0.01487958524376154, -0.04810832813382149, 0.002054966054856777, -0.0026895024348050356, -0.008237329311668873, 0.030667314305901527, 0.008668115362524986, -0.03481217473745346, -0.033321887254714966, 0.022272806614637375, -0.017056800425052643, -0.031086456030607224, -0.031645312905311584, 0.02030516229569912, 0.0032745564822107553, -0.02328573539853096, 0.0005610407097265124, -0.01402965560555458, -0.0032949314918369055, 0.05448862165212631, -0.028641454875469208, 0.028338739648461342, -0.05332433432340622, 0.04233346879482269, 0.00915711559355259, -0.02829216793179512, -0.013400941155850887, 0.03176174312829971, -0.04466203972697258, -0.039399463683366776, 0.03076045587658882, -0.027407310903072357, 0.007445613853633404, 0.008295543491840363, 0.056211765855550766, 0.004732825793325901, 0.008941722102463245, 0.010065259411931038, -0.04927261546254158, -0.014588513411581516, -0.032087743282318115, -0.034625887870788574, -0.009587901644408703, 0.0012028537457808852, -0.007643542718142271, 0.025893738493323326, 0.01891965977847576, -0.01291193999350071, -0.009052329696714878, -0.011980511248111725, -0.017743730917572975, -0.022657020017504692, 0.026638882234692574, -0.00398477166891098, -0.0070846849121153355, 0.01422758400440216, -0.0053266119211912155, -0.019653160125017166, -0.01701023057103157, 0.007678471505641937, 0.0063104345463216305, -2.231928738183342e-05, -0.00052283750846982, -0.0012959967134520411, 0.07241863757371902, -0.006240576971322298, 0.012434583157300949, -0.05742262303829193, 0.0596114844083786, -0.0046076648868620396, -0.003606378333643079, 0.0113634392619133, 0.013820083811879158, -0.00703229196369648, 0.01939701847732067, -0.015287085436284542, -0.02224951982498169, -0.02332066372036934, 0.007940435782074928, -0.03374103084206581, -0.031063171103596687, 0.03159874305129051, 0.020887304097414017, 0.025171879678964615, -0.026359451934695244, 0.01903608813881874, -0.017417730763554573, -0.006752863526344299, 0.041821181774139404, 0.011019974015653133, -0.0033968067727983, -0.00025923573412001133, 0.012085297144949436, -0.006048469804227352, -0.030620742589235306, -0.001907974947243929, 0.0003303663688711822, -0.026592310518026352, -0.025288308039307594, -0.0008011748432181776, -0.03786260634660721, 0.039399463683366776, -3.0903625884093344e-05, 0.06315091252326965, -0.016148658469319344, -0.010845331475138664, -0.032600030303001404, 0.02237759158015251, -0.008179114200174809, 0.015752799808979034, -0.008604079484939575, -0.016660943627357483, 0.006071755662560463, 0.0005210183444432914, 0.01748758740723133, 0.012236653827130795, -0.03103988617658615, 0.02030516229569912, 0.03283288702368736, 0.04678104445338249, -0.008464365266263485, -0.010792938061058521, -0.029340026900172234, 0.013249583542346954, -0.0009459829889237881, 0.027663454413414, -0.008033579215407372, -0.06557263433933258, -0.03187817335128784, 0.018407374620437622, -0.008272257633507252, -0.008737972006201744, 0.015985656529664993, 0.0005963331204839051, -0.014413869939744473, 0.005312058608978987, -0.04584961384534836, -0.019443588331341743, -0.019129231572151184, 0.003955664113163948, -0.000616344332229346, -0.0206660907715559, 0.03099331445991993, 0.013773513026535511, -0.03560388833284378, 0.019245659932494164, -0.009867330081760883, -0.007311720866709948, 0.030108455568552017, -0.011980511248111725, -0.018651874735951424, -0.017615659162402153, -0.02924688346683979, 0.03138917312026024, 0.017871802672743797, 0.0011228090152144432, 0.011753475293517113, 0.03634903207421303, -0.001138817984610796, 0.0036354854237288237, -0.012783869169652462, 0.009407437406480312, 0.008493471890687943, -0.013144797645509243, 0.014181013219058514, -0.01510079950094223, -0.018582016229629517, -0.05122861638665199, -0.0037839319556951523, 0.015065871179103851, 0.011095653288066387, 0.03087688609957695, -0.0023009218275547028, 0.006112505681812763, -0.009372508153319359, 0.007096327841281891, -0.03811874985694885, -0.02682516723871231, 0.0383748933672905, -0.008831115439534187, -0.002315475372597575, 0.03667503222823143, 0.027267595753073692, -0.00396439665928483, 0.0059960768558084965, 0.003513235365971923, -0.018605303019285202, 0.001605260418727994, -0.013389297761023045, -0.011677796021103859, -0.03418346121907234, 0.01986273191869259, 0.013016725890338421, 0.010100187733769417, 0.02292480692267418, 0.02857159823179245, 0.008732151240110397, 0.019024446606636047, 0.035347744822502136, 0.01046693790704012, -0.026010166853666306, -0.007952078245580196, -0.018302587792277336, -0.039632320404052734, -0.001678028260357678, -0.012248297221958637, -0.0004005874216090888, 0.04375389590859413, -0.00828390009701252, -0.01507751364260912, 0.01772044412791729, 0.029293455183506012, 0.014181013219058514, 0.007043934892863035, -0.035627175122499466, -0.007125434931367636, -0.00261673447676003, -0.03818860650062561, -0.02063116244971752, -0.015880871564149857, 0.0010929742129519582, -0.04107603803277016, 0.02531159482896328, 0.03730374947190285, 0.0013098226627334952, 0.00043988210381940007, -0.013342726044356823, 0.036139462143182755, 0.060822341591119766, -0.019408660009503365, -0.036023031920194626, -0.004986057989299297, 0.021155091002583504, -0.02249401994049549, -0.015904156491160393, 0.04680432751774788, 0.005058825947344303, 0.04685090109705925, -0.006275505758821964, -0.019571660086512566, -0.013040011748671532, 0.017848515883088112, 0.020992090925574303, -0.03958575055003166, 0.015648014843463898, -0.01636987179517746, 0.01926894672214985, 0.005908755585551262, 0.055932335555553436, 0.028245598077774048, -0.03774617612361908, 0.003856699913740158, -0.0037926642689853907, -0.013133155182003975, -0.004284575115889311, 0.016067158430814743, 0.016067158430814743, -0.010525152087211609, -0.0057894159108400345, 0.020514732226729393, -0.021364662796258926, 0.008970829658210278, 0.007841471582651138, 0.022237878292798996, 0.04196089506149292, -0.007596971001476049, -0.006979899015277624, 0.01832587458193302, -0.01279551163315773, 0.00406336085870862, 0.006618970539420843, -0.03851460665464401, -0.04044732078909874, 0.04147189483046532, -0.028990739956498146, -0.006036826875060797, -0.02924688346683979, 0.000919058860745281, 0.005408111959695816, -0.02241251990199089, 0.020037375390529633, -0.03187817335128784, -0.0032687350176274776, -0.0037024319171905518, -0.0011628314387053251, 0.0039178249426186085, -0.0064093987457454205, 0.008743793703615665, 0.019897660240530968, -0.023774735629558563, 0.007352470885962248, 0.0021990465465933084, -0.015438443049788475, 0.020363375544548035, 0.078379787504673, -0.01046693790704012, 0.032250743359327316, -0.03183159977197647, -0.03746674954891205, -0.01625344343483448, -0.025614308193325996, 0.04184446856379509, 0.0227268785238266, 0.017254730686545372, -0.0012348716845735908, -0.010955938138067722, 0.04054046422243118, 0.04021446406841278, -0.031016599386930466, -0.033787600696086884, -0.0003973128623329103, 0.04179789498448372, 0.05663090944290161, -0.020316803827881813, 0.012155153788626194, -0.015054227784276009, 0.0074048638343811035, 0.005539094563573599, 0.02745388261973858, -0.015822656452655792, -0.026219738647341728, -0.02829216793179512, -0.022156378254294395, 0.004217628855258226, -0.04033089429140091, 0.01737115904688835, -0.029037311673164368, 0.022028306499123573, -0.06221948564052582, 0.0014961084816604853, 0.004916200879961252, -0.015845943242311478, 0.009174579754471779, 0.01299344003200531, 0.005128683056682348, -0.003187234979122877, -0.0011235367273911834, -0.003300752956420183, 0.057282909750938416, 0.014367299154400826, -0.02670873887836933, 0.03970218077301979, 0.022983020171523094, 0.005000611767172813, 0.04398675262928009, 0.002267448464408517, -0.0032687350176274776, -0.017138300463557243, -0.019292231649160385, 0.010583367198705673, 0.012842083349823952, 0.016439728438854218, -0.015764443203806877, -0.029223598539829254, -0.012271583080291748, 0.03809546306729317, 0.0007444158545695245, 0.03504503145813942, 0.020153803750872612, 0.006927506532520056, -0.0337643176317215, 0.007824007421731949, 0.025451308116316795, -0.023157663643360138, 0.03921317681670189, 0.021248234435915947, -0.011188795790076256, -0.008056864142417908, -0.019362088292837143, 0.012783869169652462, 0.001988019561395049, 0.014658370055258274, -0.00812672171741724, 0.006421041674911976, 0.005803969688713551, 0.0060950410552322865, -0.003193056443706155, -0.012015439569950104, 0.030970027670264244, -0.0016649301396682858, 0.018349159508943558, -0.02829216793179512, 0.010012865997850895, -0.013878297992050648, 0.03334517404437065, 0.03246031701564789, 0.041704751551151276, -0.022424163296818733, 0.052066903561353683, 0.0298057422041893, 0.006630613002926111, -0.018582016229629517, -0.00808597169816494, 0.020689375698566437, -0.015333657152950764, -0.013959798030555248, 0.055420052260160446, 0.018977874889969826, -0.02197009138762951, 0.035580605268478394, -0.01400636974722147, 0.013901583850383759, -0.00642686290666461, 0.005495433695614338, 0.0136687271296978, 0.011072367429733276, 0.01772044412791729, 0.011817511171102524, -0.017231443896889687, 0.008831115439534187, 0.01816287450492382, -0.01150315348058939, -0.008330471813678741, -0.0011766572715714574, 0.01931551843881607, 0.01688215881586075, -0.0013462066417559981, 0.007038113661110401, -0.007550399750471115, 0.028594883158802986, 0.02812916785478592, 0.01017004530876875, 0.014856299385428429, -0.03823517635464668, 0.03301917389035225, 0.003853789297863841, 0.01832587458193302, 0.014891227707266808, 0.017627302557229996, 0.017219800502061844, 0.038398176431655884, -0.008755436167120934, 0.007818185724318027, -0.016940372064709663, -0.01372694130986929, -0.003853789297863841, -0.018221087753772736, 0.027710026130080223, -0.013005083426833153, -0.049691759049892426, 0.0319480299949646, -0.02458973601460457, -0.009587901644408703, -0.001907974947243929, -0.0416581816971302, 0.02575402334332466, 0.021504376083612442, 0.00816747173666954, 0.0294797420501709, -0.010012865997850895, 0.01966480351984501, 0.020712662488222122, 0.036418888717889786, 0.0340903177857399, 0.0011904832208529115, 0.01192229613661766, 0.01907101832330227, 0.04310189560055733, 0.028338739648461342, 0.02705802395939827, -0.000513013859745115, -0.0340903177857399, -0.027384024113416672, -0.016998587176203728, -0.014099513180553913, -0.019955875352025032, -0.051880620419979095, -0.0030475205276161432, -0.011968867853283882, -0.013563941232860088, -0.005058825947344303, 0.037536606192588806, 0.015450085513293743, 0.00020957161905243993, -0.02885102666914463, 0.0339273177087307, -0.05416262149810791, -0.01851215958595276, -0.009087258018553257, -0.0074980068020522594, -0.010583367198705673, -0.024450022727251053, -0.01887308806180954, -0.023914450779557228, 0.025404738262295723, -0.027081310749053955, -0.002804475836455822, 0.019094303250312805, 0.027290882542729378, -0.04233346879482269, -0.03874746337532997, -0.0038450569845736027, 0.008394507691264153, -0.006357005797326565, -0.02777988277375698, 0.0013774967519566417, 0.027523739263415337, 0.01565965637564659, 0.00703229196369648, -0.01504258532077074, -0.01951344683766365, -0.044079896062612534, 0.010769653134047985, -0.012376368045806885, -0.023146020248532295, -0.009925545193254948, 0.01664930023252964, 0.02424045093357563, -0.014355655759572983, -0.02007230371236801, -0.011712725274264812, -0.002980574034154415, 0.0064093987457454205, 0.019932590425014496, -0.005437219049781561, 0.021201662719249725, 0.002690957859158516, 0.02761688269674778, 0.009791651740670204, -0.010257366113364697, 0.05965805426239967, -0.00646761292591691, 0.012690725736320019, -0.005381915718317032, -0.0011148045305162668, 0.019560018554329872, 0.0031290207989513874, -0.002298010978847742, 0.061288055032491684, -0.03103988617658615, -0.009814937599003315, 0.008516757749021053, -0.01152061764150858, -0.004374807700514793, -0.0016445551300421357, 0.044522326439619064, 0.0113634392619133, -0.022028306499123573, 0.01709173060953617, -0.022645378485322, 0.0013571217423304915, 0.021364662796258926, 0.02852502651512623, -0.009785830043256283, 0.003324038814753294, 0.013645441271364689, -0.06040319800376892, 0.019373731687664986, -0.011869903653860092, 0.00031526703969575465, 0.00255852029658854, 0.014565227553248405, 0.02992217056453228, -0.00804522167891264, -0.01879158802330494, -0.04617561399936676, -0.007166184950619936, -0.009745080024003983, 0.017860159277915955, 0.027011454105377197, 0.010676509700715542, -0.024217164143919945, 0.0013280146522447467, 0.022424163296818733, 0.02061951905488968, 0.02547459490597248, -0.017592372372746468, 0.015880871564149857, -0.04235675185918808, -0.006258041597902775, -0.012341439723968506, 0.05989091098308563, 0.02153930626809597, -0.02631288208067417, 0.01015258114784956, 0.03520803153514862, -0.02304123528301716, 0.012981797568500042, 0.007463078014552593, -0.028618168085813522, 0.018151231110095978, -0.00261673447676003, 0.04037746414542198, 0.011060724034905434, 0.0008652106043882668, 0.012446225620806217, 0.022400878369808197, 0.006490898784250021, 0.012271583080291748, 0.037885893136262894, -0.011078189127147198, 0.02216801978647709, -0.03246031701564789, 0.03103988617658615, -0.022761806845664978, -0.015112441964447498, -0.04359089583158493, -0.03583674877882004, -0.0017609837232157588, -0.014588513411581516, 0.045523613691329956, -0.009849865920841694, 0.01979287527501583, -0.027034739032387733, -0.0009772732155397534, 0.022202948108315468, -0.01851215958595276, -0.028757883235812187, 0.018267659470438957, 0.02312273532152176, 0.027873026207089424, -0.0026385649107396603, 0.01755744405090809, 0.014728227630257607, 0.011567189358174801, 0.024380164220929146, 0.018430659547448158, -0.039841894060373306, 0.010280651971697807, 0.022983020171523094, -0.022005019709467888, 0.027477167546749115, 0.007783256936818361, -0.027360739186406136, -0.005568201653659344, 0.010979223996400833, -0.0032076099887490273, -0.009948830120265484, -0.013063297607004642, -0.016148658469319344, -0.01142165344208479, 0.030015313997864723, 0.004811414983123541, -0.017673872411251068, 0.005667165853083134, 0.010950117371976376, 0.00517525477334857, 0.002724430989474058, 0.003088270779699087, -0.0034783068113029003, 0.007043934892863035, 0.0337643176317215, -0.004878361709415913, 0.01577608659863472, 0.008574971929192543, 0.025963595137000084, 0.013598869554698467, -0.035301174968481064, 0.01717323064804077, -0.00792879331856966, -0.007055577822029591, -0.01939701847732067, -0.01799987442791462, 0.01422758400440216, 0.05574605241417885, 0.005908755585551262, -0.019699731841683388, 0.0017726266523823142, 0.032087743282318115, -0.002977663418278098, 0.011357617564499378, 0.009576259180903435, 0.01776701584458351, -0.016917087137699127, 0.018127944320440292, 0.010897723957896233, 0.019955875352025032, 0.0034462888725101948, -0.05639805272221565, 0.01035050954669714, -0.010856973938643932, -0.012888655066490173, -0.008900972083210945, -0.017033515498042107, 0.03176174312829971, -0.02002573199570179, 0.031528886407613754, -0.006688827648758888, 0.0026385649107396603, 0.023017950356006622, 0.020794162526726723, -0.007230220828205347, 0.0007968087447807193, 0.015275442972779274, -0.014448799192905426, -0.021190019324421883, -0.015275442972779274, 0.02149273455142975, -0.02773331105709076, -0.0015790639445185661, -0.011992153711616993, 0.03131931275129318, -0.014518655836582184, 0.02491573616862297, -0.01021079532802105, -0.029456455260515213, 0.0046949866227805614, -0.011794225312769413, 0.03071388602256775, 0.023017950356006622, -0.013377655297517776, -0.004872540012001991, 0.01569458656013012, 0.019292231649160385, 0.02412402257323265, 0.0021888590417802334, -0.005774862598627806, -0.014867941848933697, -0.009878973476588726, -0.007055577822029591, -0.004843432921916246, -0.02559102326631546, 0.027523739263415337, -0.006298791617155075, -0.030411170795559883, -0.03492860496044159, 0.00416232505813241, -0.012364725582301617, -0.017184872180223465, 0.04538390040397644, -0.006560755893588066, -0.015252157114446163, 0.014926156029105186, 0.005675897933542728, -0.012818797491490841, 0.013715297915041447, 0.013692012056708336, 0.0046076648868620396, -0.0008950454648584127, 0.02343709208071232, -0.0009081437019631267, -0.008883507922291756, 0.023658307269215584, -0.021050304174423218, 0.013529011979699135, 0.011538081802427769, 0.0008572061196900904, 0.02010723203420639, 0.01496108528226614, -0.05155462026596069, -0.016626015305519104, -0.021597519516944885, -0.027384024113416672, 0.00820822175592184, 0.012842083349823952, -0.03823517635464668, 0.012900297529995441, 0.007230220828205347, 0.0250321663916111, -0.02343709208071232, 0.005818523000925779, -0.015287085436284542, 0.016719158738851547, -0.010897723957896233, -0.0010100187500938773, -0.016043871641159058, -0.04747961461544037, 0.002747716847807169, -0.011182974092662334, 0.03327531740069389, -0.002018582308664918, 0.02269195020198822, -0.0006469068466685712, 0.022191306576132774, -0.03262331709265709, -0.008435257710516453, -0.031645312905311584, 0.0014859209768474102, 0.013855013065040112, -0.02670873887836933, -0.014681655913591385, 0.01640480011701584, 0.012294868007302284, 0.008097614161670208, 0.007468899711966515, -0.01664930023252964, -0.0457797572016716, 0.004724093712866306, -0.006345362868160009, 0.005431397818028927, -0.009529687464237213, 0.02670873887836933, -0.03173845633864403, -0.012399653904139996, 0.004811414983123541, 0.020456518977880478, -0.012818797491490841, 0.01676573045551777, -0.005597308743745089, -0.01414608396589756, -0.02316930703818798, 0.015089157037436962, -0.0012530636740848422, 0.04049389436841011, -0.00376937841065228, -0.00945982988923788, 0.026755310595035553, -0.002370778936892748, 0.002024403540417552, 0.03206445649266243, -0.02952631190419197, 0.0052771298214793205, 0.0012174074072390795, -0.011031617410480976, 8.318282925756648e-05, -0.039120037108659744, 0.001385501236654818, -0.032134316861629486, 0.008161650039255619, -0.007026470731943846, -0.007777435705065727, -0.02030516229569912, -0.008621543645858765, -0.03110974282026291, -0.009931365959346294, 0.006007719784975052, -0.011747653596103191, -0.03374103084206581, -0.03576688840985298, -0.020887304097414017, -0.04580304026603699, 0.007585328537970781, 0.005844719707965851, 0.0040750037878751755, -0.029270170256495476, 0.05281204730272293, 0.0009976482251659036, 0.01510079950094223, -0.008866043761372566, -0.013983083888888359, -0.019175803288817406, -0.01293522585183382, -0.03851460665464401, 0.04235675185918808, 0.018733374774456024, 0.017592372372746468, 0.05309147760272026, -0.0032745564822107553, -0.010181687772274017, -0.03921317681670189, 0.01380844134837389, -0.023274092003703117, -0.018023159354925156, -0.009512223303318024, -0.02117837592959404, -0.03644217550754547, -0.000849201693199575, 0.0032891102600842714, 0.0012035814579576254, 0.016905443742871284, 0.017138300463557243, 0.025334879755973816, 0.008935901336371899, -0.007154542021453381, 0.02491573616862297, -0.008481829427182674, 0.01763894408941269, 0.017184872180223465, 0.01510079950094223, 0.030550885945558548, -0.009884795174002647, 0.034509461373090744, -0.012155153788626194, 0.0362326055765152, -0.007474720943719149, 0.03758317604660988, -0.00025396005366928875, -0.0009387062164023519, -0.002162662800401449, -0.03131931275129318, -0.017615659162402153, -0.002468287944793701, 0.00638611288741231, 0.02312273532152176, -0.0027986543718725443, 0.003300752956420183, -0.01735951565206051, 0.01645137183368206, 0.011089831590652466, 0.003874164307489991, 0.0136687271296978, -0.00102530000731349, -0.003423003014177084, 0.005751576740294695, -0.05164775997400284, 0.011736011132597923, 0.0019152517197653651, -0.032367173582315445, 0.02348366379737854, -0.018884731456637383, 0.019024446606636047, 0.00031617662170901895, 0.007061399519443512, -0.005501254927366972, -0.006391934584826231, 0.062126342207193375, -0.039632320404052734, 0.0005122862057760358, -0.01895458810031414, -0.047665901482105255, -0.0071487207897007465, 0.00824315007776022, -0.012201725505292416, 0.022226234897971153, -0.05462833493947983, -0.02061951905488968, 0.02030516229569912, -0.029107170179486275, -0.018174516037106514, 0.006613148842006922, -0.023472022265195847, -0.0073058996349573135, -0.0051781656220555305, 0.0071428995579481125, 0.02061951905488968, -0.003187234979122877, 0.030783742666244507, 0.02547459490597248, 0.039632320404052734, -0.008592436090111732, 0.006211469881236553, 0.04207732528448105, 0.01574115641415119, -0.02631288208067417, -0.010536795482039452, 0.04319503903388977, 0.0013367467327043414, 0.007917149923741817, -0.009657759219408035, 0.021155091002583504, -0.044289469718933105, -0.005894201807677746, 0.025940310209989548, -0.012120225466787815, 0.01161958184093237, 0.04903975874185562, -0.02054966241121292, 0.013738583773374557, 0.005751576740294695, 0.016230158507823944, 0.0025628863368183374, -0.027686739340424538, -0.013307797722518444, 0.008970829658210278, -0.02228444814682007, 0.04903975874185562, -0.031249457970261574, 0.0008106346940621734, -0.003600556869059801, 0.004136128816753626, 0.00808597169816494, -0.004703718703240156, -0.054535191506147385, 0.000812817714177072, -0.023914450779557228, 0.03229731693863869, -0.013226297684013844, -0.008219864219427109, 0.007503828499466181, 0.008633186109364033], [0.0275768730789423, 0.014761737547814846, 0.04102839529514313, 0.0058054933324456215, -0.07676602900028229, 0.01976550556719303, 0.009165254421532154, -0.030646516010165215, -0.00598954688757658, 0.018492726609110832, -0.020963413640856743, 0.05924660339951515, -0.026528701186180115, -0.023059755563735962, -0.021499978378415108, 0.05230870842933655, 0.006887978874146938, 0.038308143615722656, -0.004117813427001238, -0.004772920161485672, 0.02022719942033291, 0.05774921551346779, -0.0015691365115344524, 0.02142510935664177, -0.014686868526041508, -0.026603570207953453, 0.04105335474014282, -0.009208928793668747, 0.050986018031835556, -0.012540614232420921, 0.03633658587932587, -0.025655226781964302, 0.04125300422310829, -0.01939115859568119, 0.03965579345822334, 0.004489040467888117, -0.014874042011797428, 0.046169426292181015, 0.045096296817064285, -0.0005061479168944061, -0.0570504330098629, 0.03815840557217598, -0.0018670541467145085, -0.008672364987432957, -0.00559336319565773, 0.0906418114900589, 0.03681075572967529, -0.03309224545955658, -0.015173519030213356, 0.01806846633553505, 0.016720818355679512, 0.010974597185850143, -0.0035687717609107494, 0.005325081758201122, 0.014412347227334976, 0.001448253751732409, 0.030696427449584007, 0.031020861119031906, 0.05380609631538391, -0.01141133438795805, 0.011049466207623482, 0.0006395089440047741, 0.017843859270215034, 0.016009559854865074, -0.0010848254896700382, -0.03753449395298958, -0.03893205523490906, 0.03973066061735153, -0.012066441588103771, -0.01162970345467329, 0.02554292231798172, 0.026603570207953453, 0.015522909350693226, -0.07511889934539795, 0.013476480729877949, 0.0275768730789423, 0.017606772482395172, 0.026478789746761322, 0.01615929789841175, -0.0269280057400465, -0.050237324088811874, 0.0272524394094944, -0.03878231719136238, 0.029997646808624268, -0.027477046474814415, 0.011548595502972603, -0.018854593858122826, -0.008503909222781658, -0.02256062626838684, 0.01378843653947115, 0.014587042853236198, -0.011704573407769203, -0.0029464203398674726, 0.04849037528038025, -0.01906672492623329, -0.004529594909399748, 0.05240853503346443, -0.0047698006965219975, 0.0006141625344753265, 0.07911193370819092, -0.0027623665519058704, -0.019154071807861328, 0.04552055522799492, 0.021150587126612663, 0.009477210231125355, -0.10691341012716293, -0.03935631364583969, 0.054604701697826385, 0.047442201524972916, -0.030446862801909447, -0.021599803119897842, 0.010675119236111641, -0.01844281330704689, 0.0754183754324913, -0.02554292231798172, 0.0011144612217321992, 0.005587124265730381, 0.013863305561244488, 0.03708527982234955, -0.04651881381869316, 0.014786694198846817, 0.0256801825016737, -0.008809625171124935, -0.08125818520784378, -0.03321702778339386, 0.014611998572945595, -0.018268117681145668, -5.0449063564883545e-05, -0.049663327634334564, -0.005755580496042967, 0.025243444368243217, -0.04916419833898544, 0.03770918771624565, -0.07342186570167542, -0.02529335767030716, 0.01729481667280197, -0.017132600769400597, -0.012303527444601059, -0.02363375388085842, -0.01875476911664009, 0.004314345307648182, -0.003093039384111762, -0.0021493739914149046, -0.032293640077114105, -0.03980553150177002, 0.012939916923642159, -0.007986062206327915, 0.051310453563928604, 0.01799359731376171, 0.019802939146757126, -0.029698170721530914, -0.002175890142098069, 0.02243584394454956, -0.02174954302608967, 0.019291331991553307, -0.0014264167984947562, -0.013701088726520538, 0.05083627998828888, 0.016583558171987534, 0.009377384558320045, -0.032418422400951385, -0.026329049840569496, 0.04557047039270401, 0.004542073234915733, 0.04195178672671318, 0.020738806575536728, 0.0047760396264493465, -0.003200664184987545, -0.05430522561073303, -0.034514762461185455, -0.01850520446896553, -0.01143629103899002, 0.0016752014635130763, -0.0012868167832493782, -0.02675331011414528, 0.0066196974366903305, -0.00655730627477169, 0.006089372560381889, 0.018043510615825653, -0.008210670202970505, 0.003055604873225093, 0.013077177107334137, -0.002316270023584366, -0.02389579638838768, -0.04542073234915733, 0.031919293105602264, 0.03137025237083435, 0.004529594909399748, 0.03538823872804642, 0.03526345640420914, -0.0039867921732366085, 0.004064781125634909, 0.02269788645207882, 0.051110800355672836, -0.025081228464841843, 0.0029620181303471327, -0.020114894956350327, -0.007811367511749268, 0.006017623003572226, -0.009839078411459923, -0.009065428748726845, -0.033566419035196304, 0.0519593209028244, 0.025243444368243217, -0.05495409294962883, -0.04432264715433121, 0.018268117681145668, 0.04539577290415764, 0.06992796063423157, -0.027751566842198372, 0.000245275063207373, -0.06099355220794678, 0.003322326811030507, 0.02224867045879364, 0.015485474839806557, -0.01831803098320961, 0.04492160305380821, 0.024070492014288902, -0.010519142262637615, 0.03586241230368614, 0.00565575435757637, -0.008191953413188457, -0.0275768730789423, -0.018929464742541313, 0.004245715215802193, 0.0059770685620605946, 0.013863305561244488, -0.015323258005082607, -0.012827613390982151, -0.05749965086579323, -0.03119555674493313, 0.047317419201135635, 0.01945354975759983, -0.04679333418607712, 0.0019949558191001415, 0.026578614488244057, -0.008435278199613094, -0.05160992965102196, -0.014362434856593609, 0.02256062626838684, 0.02889956347644329, 0.0256801825016737, -0.02459457702934742, -0.004988169763237238, -0.014387390576303005, -0.027676697820425034, 0.0005041981930844486, 0.022772757336497307, 0.03860761970281601, 0.021824412047863007, -0.030596602708101273, -0.04017987847328186, 0.016046995297074318, -0.0589471235871315, 0.01204772386699915, 0.020239677280187607, 0.028699912130832672, 0.0006855223909951746, 0.04197674244642258, -0.044272735714912415, 0.004195802379399538, 0.007867519743740559, -0.020888544619083405, 0.02276027761399746, -0.03860761970281601, -0.053257055580616, 0.06333945691585541, -0.01946602761745453, -0.01824316196143627, 0.05690069496631622, -0.07112587243318558, -0.02211141027510166, 0.016833122819662094, 0.023808449506759644, -0.010494185611605644, 0.033566419035196304, 0.0032349792309105396, 0.008859538473188877, -0.018031032755970955, -0.03042190708220005, -0.06109337881207466, -0.02515609748661518, 0.02395818755030632, -0.033815983682870865, -0.015335735864937305, -0.010569054633378983, -0.03798371180891991, 0.030970949679613113, -0.01756933704018593, 0.05056175962090492, 0.04457221180200577, -0.0010083963861688972, -0.03201911970973015, 0.0006847424665465951, 0.0008797147311270237, 0.0006718743243254721, -0.03246833756566048, -0.015597778372466564, 0.028001131489872932, -0.023596318438649178, 0.02984790876507759, 0.0690794438123703, 0.018230684101581573, -0.015323258005082607, -0.05146019160747528, 0.008441518060863018, 0.01337665505707264, 0.04399821534752846, -0.02909921482205391, -0.011561073362827301, -0.038383014500141144, 0.02732730843126774, 0.0002698415773920715, 0.0053375596180558205, -0.020614024251699448, 0.013488958589732647, -0.016022037714719772, 0.07646655291318893, -0.014774215407669544, -0.005618319846689701, 0.026952961459755898, 0.036411453038454056, 0.011261596344411373, -0.029298868030309677, 0.06798135489225388, -0.00635453499853611, 0.007867519743740559, 0.051310453563928604, -0.014437303878366947, -0.01813085749745369, -0.006969087291508913, 0.018417857587337494, 0.01615929789841175, 0.02414536103606224, 0.0023802209179848433, -0.017095165327191353, -0.007879997603595257, 0.015834864228963852, -0.00032345892395824194, 0.018605031073093414, -0.02478175051510334, -0.014824128709733486, 0.02358384057879448, -0.027027830481529236, 0.0053687551990151405, 0.012758983299136162, 0.05230870842933655, 0.07137543708086014, 0.011997811496257782, 0.02130032703280449, 0.00025307395844720304, -0.02333427593111992, -0.019503463059663773, -0.010325729846954346, -0.026004616171121597, -0.026603570207953453, 0.01153611671179533, -0.02700287476181984, -0.045595426112413406, 0.009751731529831886, -0.011804399080574512, 0.01194789819419384, 0.014861563220620155, 0.03119555674493313, -0.0006734341150149703, -0.019990112632513046, -0.0023365472443401814, -0.005555928684771061, 0.010768705978989601, -0.000600514467805624, 0.019353723153471947, 0.026853134855628014, -0.031220514327287674, -0.023097191005945206, -0.01723242551088333, 0.041727177798748016, 0.013751001097261906, 0.00783008523285389, -0.02815087139606476, 0.038183361291885376, 0.0411781370639801, 0.01350143738090992, 0.06054433807730675, 0.01906672492623329, 0.037809014320373535, 0.0716250017285347, -0.029398692771792412, 0.02256062626838684, 0.0017219947185367346, -0.023746058344841003, -0.05944625288248062, 0.03626171499490738, 0.017719076946377754, 0.0034096743911504745, -0.023721100762486458, 0.011111857369542122, 0.04150256887078285, 0.021225456148386, -0.007879997603595257, -0.02984790876507759, -0.00032150920014828444, -0.027901306748390198, 0.005190940573811531, -0.035338327288627625, 0.017719076946377754, -0.025268401950597763, 0.023945709690451622, -0.042376045137643814, 0.05510383099317551, -0.015235910192131996, 0.0002630175440572202, -0.030072517693042755, 0.026853134855628014, -8.603149763075635e-05, -0.003291131230071187, 0.0449964702129364, 0.02922399714589119, 0.023783491924405098, -0.030471820384263992, -0.008179474622011185, 0.004903941415250301, 0.018155815079808235, -0.04202665388584137, 0.027876349166035652, -0.03453972190618515, 0.009720535948872566, 0.001132398727349937, -0.007125065196305513, -0.004423529841005802, -0.05749965086579323, -0.04342421516776085, 0.016259124502539635, 0.04190187156200409, 0.02161228284239769, -0.07611715793609619, 0.024232707917690277, 0.008098366670310497, -0.05585252493619919, 0.016633471474051476, -0.02136271819472313, -0.04527099058032036, -0.024956446141004562, -0.007655389606952667, 0.024170316755771637, -0.0028918280731886625, 0.03858266398310661, 0.0025330791249871254, 0.06538588553667068, 0.014013044536113739, 0.006838066037744284, 0.006650892551988363, -0.01566017046570778, -0.009134058840572834, 0.00042971878428943455, -0.009227645583450794, -0.031919293105602264, -0.03873240202665329, -0.05734991282224655, 0.03860761970281601, -0.025143619626760483, 0.0526081882417202, 0.03404059261083603, 0.053656358271837234, 0.011086900718510151, 0.02700287476181984, 0.03668597340583801, -0.01964072324335575, -0.0011495562503114343, -0.0125218965113163, -0.029373737052083015, 0.014537129551172256, -0.02453218586742878, 0.04352404177188873, -0.0035219783894717693, 0.023733580484986305, -0.06029477342963219, -0.0069815656170248985, -0.010675119236111641, -0.0361119769513607, -0.04042944312095642, -0.0013554469915106893, 0.010400598868727684, -0.03371615707874298, -0.07402081787586212, 0.03975561633706093, 0.04841550439596176, 0.05824834480881691, -0.019478505477309227, -0.040853701531887054, -0.04092857241630554, -0.07087630778551102, -0.001450593350455165, 0.041926827281713486, -0.012977351434528828, -0.017531903460621834, -0.015373170375823975, -0.0002103750448441133, -0.030446862801909447, 0.03249329328536987, -0.015834864228963852, 0.07931158691644669, -0.06009512022137642, 0.009520883671939373, -0.04419786483049393, 0.06578519195318222, -0.014337478205561638, -0.01813085749745369, 0.024120405316352844, 0.0019013691926375031, -0.018842115998268127, -0.05420539900660515, -0.015161041170358658, 0.021275369450449944, 0.017157556489109993, -0.005041202064603567, -0.026603570207953453, 0.022797713056206703, 0.015934690833091736, 0.0003063013718929142, 0.005075517110526562, -0.0072124130092561245, -0.009065428748726845, -0.043074823915958405, -0.02130032703280449, -0.030147386714816093, 0.015597778372466564, -0.017332252115011215, -0.049214109778404236, 0.004554551560431719, 0.0247193593531847, -0.006763196550309658, -0.04532090574502945, -0.019802939146757126, 0.022398410364985466, 0.014923954382538795, -0.006204796489328146, 0.011049466207623482, -0.01131150871515274, 0.014512172900140285, -0.01755685918033123, 0.009127819910645485, -0.014050479047000408, 0.016196733340620995, -0.022136367857456207, -0.004835311323404312, 0.007592998445034027, 0.016820644959807396, 0.035338327288627625, 0.019565854221582413, -0.009514644742012024, -0.03067147172987461, -0.005374994594603777, 0.010307012125849724, -0.018804682418704033, -0.055802613496780396, 0.032093990594148636, 0.011742007918655872, -0.017893770709633827, 0.017519425600767136, 0.0015948729123920202, 0.03396572172641754, -0.0030977188143879175, -0.02782643772661686, -0.0012727787252515554, -0.0011160210706293583, 0.020052503794431686, -0.008173235692083836, -0.02458209916949272, 0.03498893603682518, -0.01407543569803238, -0.04412299767136574, 0.02274779975414276, 0.06029477342963219, -0.021275369450449944, 0.027551915496587753, 0.015547866001725197, 0.03304233402013779, -0.05375618487596512, 0.001159694860689342, -0.008310496807098389, 0.005537211429327726, 0.02052667737007141, 0.014674389734864235, -0.019740547984838486, -0.0020916620269417763, -0.008391604758799076, -0.040604136884212494, -0.014499695040285587, -0.007043956778943539, 0.04866506904363632, 0.012053962796926498, 0.017344729974865913, 0.015585300512611866, -0.015373170375823975, 0.022098932415246964, 0.03518858924508095, -0.05043697729706764, -0.002990094246342778, -0.009171493351459503, 0.027751566842198372, 0.005159744992852211, -0.012877525761723518, 0.008666126057505608, -0.01220370177179575, -0.039705704897642136, -0.032667987048625946, -0.01290248241275549, -0.004735485650599003, -0.004145889542996883, 0.03099590539932251, 0.043074823915958405, -0.013751001097261906, 0.028799738734960556, -0.009003037586808205, -0.015922212973237038, 0.007287282031029463, -0.023845883086323738, -0.018929464742541313, -0.0129898302257061, 0.011168009601533413, -0.007143782451748848, 0.007199934683740139, 0.01741959899663925, -0.012690352275967598, -0.025068748742341995, 0.00044297691783867776, 0.01214131060987711, -0.048814807087183, 0.02972312644124031, -0.013226916082203388, 0.00643252395093441, 0.01741959899663925, 0.021312804892659187, -0.008248105645179749, -0.010169751942157745, -0.023309320211410522, 0.00789247639477253, 0.016071951016783714, -0.028250696137547493, 0.0031944250222295523, 0.015298301354050636, -0.010487946681678295, 0.04442247375845909, -0.021262891590595245, 0.04666855186223984, 0.022485757246613503, 0.019116638228297234, -0.0012595206499099731, 0.013139568269252777, -0.006376371718943119, 0.019553374499082565, 0.0015753756742924452, 0.001626848243176937, -0.001194789889268577, 0.01811837963759899, -0.008060932159423828, 0.007667867932468653, 0.011012031696736813, 0.008460234850645065, 0.04399821534752846, -0.052757926285266876, 0.008747234009206295, 0.007075152359902859, -0.01321443822234869, 0.03576258569955826, -0.0029214639216661453, 0.018929464742541313, -0.023546406999230385, 0.01793120615184307, -0.040404483675956726, -0.015585300512611866, 0.020776240155100822, 0.04973819479346275, -0.026204267516732216, -0.004273791331797838, -0.01635894924402237, -0.0373847559094429, 0.0035687717609107494, -0.0218618456274271, 0.035463109612464905, 0.0033878374379128218, -0.017906250432133675, -0.020938457921147346, 0.012365918606519699, 0.0059770685620605946, -0.00342215271666646, 0.0367608442902565, -0.042950041592121124, -0.017132600769400597, -0.004763561766594648, 0.006887978874146938, -0.016046995297074318, -0.00033281760988757014, 0.015560343861579895, 0.028001131489872932, 0.01653364486992359, -0.009452253580093384, 0.005231495015323162, -0.027926262468099594, -0.012316006235778332, 0.045146211981773376, 0.0033004898577928543, -0.023159582167863846, -0.05804869160056114, -0.053257055580616, -0.004155248403549194, -0.0012181864585727453, -0.0012002490693703294, 0.05355653166770935, 0.004345540888607502, -0.012241136282682419, 0.001870173611678183, -0.030721385031938553, -0.030896078795194626, -0.03416537493467331, 0.011673377826809883, -0.0044297692365944386, 0.002417655661702156, 0.016521167010068893, -0.010319489985704422, -0.03346659243106842, 0.027926262468099594, 0.011111857369542122, 0.0051722233183681965, 0.03199416399002075, 0.007761454675346613, -0.02807600051164627, -0.004804115742444992, -0.02573009580373764, 0.021849367767572403, 0.020264632999897003, -0.007561802864074707, 0.002486285986378789, 0.024107925593852997, 0.005839808378368616, 0.04639403149485588, -0.04791637510061264, -0.0228226687759161, -0.0030212895944714546, 0.006863022688776255, 0.00616112258285284, -0.03790884092450142, -0.002455090405419469, -0.03643641248345375, 0.021150587126612663, 0.006039459723979235, -0.007012761197984219, 0.02130032703280449, -0.03701040893793106, 0.008472713641822338, -0.0050068870186805725, 0.008784668520092964, -0.022647975012660027, -0.0002663320628926158, 0.023047277703881264, 0.004804115742444992, 0.037434667348861694, 0.03029712475836277, -0.018205726519227028, -0.00573374330997467, -0.020264632999897003, -0.008691081777215004, 0.009308754466474056, 0.006819348782300949, -0.007680346257984638, -0.01420021802186966, -0.04482177644968033, 0.01280265673995018, -0.004442247096449137, -0.015947168692946434, 0.008709799498319626, 0.01366365421563387, 0.06992796063423157, 0.006732001435011625, 0.02288505993783474, -0.019441071897745132, -0.028026089072227478, -0.06378867477178574, -0.02523096650838852, -0.02389579638838768, 0.0110931396484375, 0.002023031935095787, 0.0007588319131173193, 0.03878231719136238, 0.028250696137547493, 0.006919174455106258, 0.027901306748390198, 0.02521848864853382, 0.05934642627835274, 0.01292743906378746, -0.03651127964258194, -0.01882963813841343, 0.006251589860767126, -0.02510618418455124, -0.01121792197227478, 0.029124172404408455, -0.0033660007175058126, -0.03246833756566048, -0.024357490241527557, 0.009140297770500183, -0.023596318438649178, -0.025705138221383095, 0.0031741480343043804, 0.036536235362291336, 0.04062909260392189, 0.009327471256256104, -0.053257055580616, -0.0025330791249871254, 0.00339095713570714, -0.055752698332071304, -0.02947356179356575, 0.04127795994281769, 0.0003316477523185313, 0.023234451189637184, 0.02072632871568203, -0.059995293617248535, -0.020439328625798225, 0.027901306748390198, -0.02700287476181984, -0.02909921482205391, 0.033366769552230835, -0.02274779975414276, -0.011417574249207973, 0.0259796604514122, -0.002023031935095787, 0.01629655808210373, -0.06353911012411118, -0.005371875129640102, 0.01156731229275465, 0.0036685974337160587, 0.025193531066179276, 0.022897539660334587, -0.0041521284729242325, 0.014799172058701515, -0.01845529116690159, 0.004464084282517433, 0.028600087389349937, 0.009127819910645485, -0.0011940099066123366, 0.04232612997293472, 0.017656685784459114, -0.032992422580718994, 0.03658615052700043, 0.028575129806995392, -0.048640113323926926, 0.002651622286066413, 0.00559336319565773, -0.002043308923020959, -0.028350522741675377, 0.012097637169063091, 0.0057493411004543304, -0.0071313041262328625, -0.005047440994530916, 0.020713848993182182, -0.009882752783596516, -0.014761737547814846, -0.009140297770500183, 0.004379856400191784, -0.009757970459759235, 0.005041202064603567, -0.024806706234812737, -0.005031843204051256, -0.007636672351509333, -0.013825871050357819, 0.013351698406040668, -0.017007818445563316, -0.016745775938034058, 0.010856053791940212, -0.00589596014469862, -0.0035469348076730967, 0.008497669361531734, -0.01704525202512741, 0.06199181079864502, -0.002501883776858449, -0.05220888555049896, -0.000351339956978336, 0.005000647623091936, 0.037484582513570786, 0.008229387924075127, -0.0004164606798440218, 0.022236192598938942, 0.0015176638262346387, 0.007256086450070143, 0.0036623585037887096, -0.012253615073859692, -0.047566983848810196, -0.015123605728149414, 0.03226868435740471, 0.02864999882876873, -0.003883846802636981, 0.018268117681145668, 0.02967321313917637, -0.022972408682107925, 0.005755580496042967, -0.029248954728245735, 0.0008508588070981205, -0.014424826018512249, -0.03426520153880119, 0.00024196054437197745, -0.002857513027265668, -0.007430781610310078, -0.007836324162781239, -0.029423648491501808, -0.014699346385896206, -0.04314969480037689, 0.04794133082032204, -0.008653647266328335, -0.008422800339758396, 0.004591986071318388, -0.036286670714616776, 0.030521733686327934, -0.019041767343878746, 0.007511890027672052, -0.0323185957968235, 0.006179839838296175, 0.04012996330857277, -0.0012275452027097344, 0.010606489144265652, 0.00811708439141512, 0.01346400287002325, 0.04419786483049393, 0.05240853503346443, -0.00571814551949501, -0.028749825432896614, -0.01315204706043005, 0.002843474969267845, -0.009577035903930664, 0.03142016381025314, 0.015959646552801132, -0.006707044783979654, -0.019852852448821068, 0.01824316196143627, 0.019091680645942688, 0.01296487357467413, 0.03733484447002411, -0.026952961459755898, -0.0028247577138245106, -0.0009405460441485047, 0.005992666352540255, 0.018617508932948112, 0.03858266398310661, 0.01780642382800579, 0.006912935525178909, -0.02085111103951931, -0.04152752459049225, -0.019740547984838486, 0.00652611069381237, 0.014824128709733486, -0.012721547856926918, 0.020127372816205025, 0.014961388893425465, 0.0003975483705289662, 0.020376937463879585, -0.0035781303886324167, 0.006501154042780399, 0.03104581870138645, 0.03708527982234955, -0.009620709344744682, -0.022485757246613503, -0.0006266407435759902, -0.0022164443507790565, 0.00649491511285305, 0.02675331011414528, -0.015984604135155678, 0.03573762997984886, 0.06608466804027557, 0.009645665995776653, -0.029997646808624268, 0.007561802864074707, 0.0005096574313938618, -0.007468216586858034, -0.020701371133327484, 0.047192636877298355, 0.009982578456401825, -0.010881010442972183, 0.003540695644915104, -0.004723007325083017, 0.007399586029350758, -0.004732366185635328, 0.002441052347421646, 0.015173519030213356, 0.025517966598272324, 0.02877478115260601, -0.0069815656170248985, 0.007886236533522606, -0.0001312163076363504, 0.04165230691432953, -0.008191953413188457, 0.0367608442902565, -0.03798371180891991, -0.025829920545220375, -0.0355130210518837, 0.0055902437306940556, 0.03211894631385803, 0.018742291256785393, 0.034065548330545425, 0.022598061710596085, 0.014587042853236198, 0.04424777626991272, -0.004582627210766077, 0.011860550381243229, 0.02560531347990036, 0.006931652780622244, 0.006026981398463249, 0.004788517951965332, -0.03316711634397507, 0.026079485192894936, 0.03124547004699707, -0.0019590810406953096, -0.03788388520479202, -0.007299760356545448, -0.028824694454669952, 0.01134270429611206, 0.009227645583450794, -0.03878231719136238, -0.01660851389169693, -0.0007631212938576937, -0.008709799498319626, -0.029323823750019073, -0.0011433172039687634, 0.011679616756737232, 0.004186443984508514, 0.01756933704018593, 0.013064699247479439, 0.039456140249967575, -0.007848802022635937, 0.0418519601225853, 0.004202041309326887, 0.028250696137547493, 0.02117554470896721, -0.010874771513044834, -0.01245326641947031, 0.018305553123354912, 0.05121062695980072, 0.014474738389253616, 0.007923671044409275, -0.010200947523117065, -0.037060320377349854, -0.040604136884212494, 0.009371145628392696, -0.011386378668248653, -0.015148562379181385, -0.0243949256837368, -0.0017126360908150673, 0.0027998012956231833, -0.028475305065512657, 0.04873993992805481, 0.008322974666953087, -0.017282338812947273, -0.008291779085993767, 0.009377384558320045, 0.0012805776204913855, -0.04165230691432953, -0.019628245383501053, 0.0036966735497117043, -0.007143782451748848, 0.004348660819232464, -0.029648257419466972, -0.02098837122321129, 0.0024582098703831434, 0.045021429657936096, -0.0405791811645031, -0.014861563220620155, 0.00043712774640880525, 0.007992302067577839, -0.008054693229496479, -0.026703396812081337, 0.012596765533089638, -0.011798159219324589, -0.04087865725159645, -0.012877525761723518, 0.020015070214867592, 0.020040025934576988, 0.04866506904363632, 0.0062079159542918205, -0.014674389734864235, -0.026279136538505554, -0.01920398510992527, 0.020202241837978363, 0.003122675232589245, -0.004111574497073889, 0.008971842005848885, 0.007455738261342049, 0.010912206023931503, 0.007530607283115387, -0.014399869367480278, 0.027402177453041077, -0.01882963813841343, 0.010550337843596935, -0.012827613390982151, 0.010756228119134903, 0.04696803167462349, 0.01609690673649311, 0.028300609439611435, 0.0016221689293161035, -0.010955879464745522, 0.038308143615722656, 0.023558884859085083, 0.014125348068773746, -0.006482436787337065, 0.007530607283115387, 0.013127090409398079, -0.0008352610166184604, -0.007505651097744703, 0.021400151774287224, -0.002196167130023241, -0.009764209389686584, 0.010787423700094223, 0.01089972723275423, 0.005774297751486301, 0.011486204341053963, -0.01327682938426733, 0.007093869615346193, 0.0047853984870016575, 0.03029712475836277, 0.002180569339543581, 0.009639427065849304, 0.007437021005898714, 0.004457844886928797, 0.007518129423260689, 0.0014381151413545012, -0.01724490337073803, -0.021774498745799065, 0.02934877946972847, 0.005206538364291191, 0.012334723025560379, -0.006363893859088421, 0.02498140186071396, 0.013775957748293877, -0.01255309209227562, -0.026279136538505554, -0.04532090574502945, -0.03174459934234619, -0.016783209517598152, -0.01086853165179491, -0.004860267974436283, 0.004354899749159813, -0.006794392131268978, 0.008329213596880436, 0.033691201359033585, 0.0059614707715809345, 0.010038730688393116, -0.005811732262372971, -0.013239394873380661, -0.012465744279325008, 0.0013632458867505193, 0.01794368401169777, 0.08080896735191345, 0.009814122691750526, -0.03181946650147438, 0.000892972806468606, 0.039206575602293015, -0.028699912130832672, 0.022236192598938942, 0.03326694294810295, -0.006120568141341209, 0.01895442046225071, -0.001795304357074201, 0.017856337130069733, 0.009745491668581963, -0.02592974714934826, 0.04377360641956329, -0.005537211429327726, 0.008834581822156906, 0.015410604886710644, 0.02464449033141136, 0.0004815814027097076, 0.006544827949255705, -0.003369120182469487, -0.009801643900573254, -0.0065885018557310104, -0.0039555965922772884, -0.01945354975759983, -0.012160028330981731, 0.026903048157691956, -0.019802939146757126, 0.0010294533567503095, -0.017481990158557892, 3.131741323159076e-05, -0.00016475153097417206, 0.02161228284239769, 0.031969208270311356, -0.04102839529514313, -0.037309885025024414, 0.00038351037073880434, 0.049788109958171844, 0.01673329621553421, -0.030197300016880035, 0.011068183928728104, 0.0029604583978652954, 0.006482436787337065, -0.004660616163164377, 0.03017234243452549, -0.009052950888872147, -0.0118855070322752, 0.015148562379181385, -0.012977351434528828, 0.028100958094000816, -0.005596483126282692, 0.009327471256256104, -0.009945143945515156, -0.012303527444601059, -0.014175261370837688, -0.006126807536929846, -0.03142016381025314, -0.026853134855628014, 0.0016830003587529063, 0.014000565744936466, 0.02585487812757492, -0.05310731753706932, 0.008354170247912407, 0.020177286118268967, -0.0029682572931051254, -0.0038027383852750063, 0.008790908381342888, -0.009826600551605225, -0.027027830481529236, 0.016196733340620995, -0.012347201816737652, -0.012384636327624321, 0.0020807436667382717, 0.029423648491501808, 0.0053687551990151405, -0.016571080312132835, 0.038757361471652985, -0.013763479888439178, 0.022647975012660027, -0.024232707917690277, -0.008273061364889145, 0.03568771854043007, 0.04983802139759064, -0.009988817386329174, -0.03808353468775749, 0.0011612545931711793, 0.019865330308675766, -0.0066196974366903305, -0.013002308085560799, 0.02464449033141136, 0.004248834680765867, 0.006632175296545029, 0.01311461254954338, 0.0029807353857904673, 0.015472996048629284, -0.00023864601098466665, -0.05038706213235855, -0.008691081777215004, 0.006220394279807806, -0.018654942512512207, -0.008104605600237846, -0.02427014335989952, 0.01407543569803238, 0.0018358585657551885, 0.020501719787716866, 0.01201652828603983, 0.014337478205561638, -0.033566419035196304, -0.02827565371990204, -0.047766637057065964, -0.009558319114148617, 0.027876349166035652, -0.008728517219424248, -0.014574564062058926, -0.018155815079808235, 0.03823327645659447, 0.010026251897215843, 0.010874771513044834, 0.012147549539804459, 0.02807600051164627, -0.012890004552900791, 0.028724869713187218, 0.008647408336400986, -0.01368861086666584, -0.0015301420353353024, -0.016883036121726036, 0.03314216062426567, -0.009795404970645905, -0.009358666837215424, 0.054405052214860916, 0.029373737052083015, -0.0041677262634038925, 0.013064699247479439, -0.026329049840569496, 0.041677262634038925, -0.006519871298223734, 0.0006371692288666964, 0.006158003117889166, 0.014761737547814846, -0.010088643059134483, 0.022847626358270645, -0.008129562251269817, -0.018093423917889595, -0.041602395474910736, -0.005871003959327936, -0.014711824245750904, -0.019316289573907852, 0.050861235707998276, 0.007705302443355322, -0.0006543268100358546, 0.027152612805366516, 0.002350585302338004, -0.01163594238460064, -0.007237369194626808, -0.003846412291750312, 0.002366183092817664, -0.006794392131268978, 0.02795121818780899, -0.01609690673649311, -0.007986062206327915, -0.0048165940679609776, -0.01356382854282856, -0.006048818584531546, 0.01736968569457531, 0.013426567427814007, 0.014649434015154839, -0.021599803119897842, -0.02947356179356575, -0.008067171089351177, -0.04095352813601494, -0.04404812678694725, 0.0011924501741304994, 0.03506380692124367, -0.04197674244642258, 0.01730729453265667, 0.01901681162416935, 0.010169751942157745, -0.021562369540333748, 0.019366201013326645, 0.004464084282517433, 0.005652634892612696, -0.0118855070322752, -0.04474690556526184, 0.021774498745799065, 0.004077259451150894, 0.020901022478938103, 0.005596483126282692, 0.013326741755008698, 0.01673329621553421, 0.0228101909160614, -0.00037961092311888933, 0.025829920545220375, -0.04666855186223984, -0.022198759019374847, -0.02573009580373764, -0.00033457233803346753, 0.022735321894288063, 0.005384352989494801, -0.030846167355775833, 0.015048736706376076, -0.01934124529361725, 0.011018270626664162, -0.004130291752517223, 0.010675119236111641, -0.04856524243950844, -0.006457480136305094, -0.012365918606519699, 0.029698170721530914, -0.004838430788367987, 0.023484015837311745, -0.01869237795472145, 0.013426567427814007, 0.016184255480766296, 0.0016814405098557472, 0.0007194475620053709, 0.009084146469831467, 0.016957905143499374, -0.019116638228297234, -0.028225740417838097, -0.006426284555345774, -0.002522160764783621, 0.03127042576670647, -0.013264350593090057, -0.014599520713090897, 0.023409146815538406, -0.015834864228963852, 0.024008100852370262, 0.03536328300833702, -0.02585487812757492, -0.019478505477309227, 0.017531903460621834, -0.004613822791725397, -0.029074259102344513, -0.04766681045293808, 0.009926426224410534, -0.03446485102176666, 0.017544381320476532, 0.01831803098320961, 0.03538823872804642, 0.004782279022037983, -0.016633471474051476, -0.010924683883786201, 0.007443259935826063, 0.004657496698200703, -0.0027623665519058704, -0.03301737830042839, -0.007917432114481926, -0.002052667550742626, -0.019416114315390587, 0.01207891944795847, 0.02370862290263176, -0.004694931209087372, -0.011573551222682, 0.00023513651103712618, -0.005443624686449766, 0.00554656982421875, 0.005534091964364052, -0.015934690833091736, -0.025305835530161858, -0.014537129551172256, -0.04075387492775917, 0.008060932159423828, 0.005465461406856775, 0.0034003157634288073, 0.0399303138256073, -0.0025814324617385864, -0.006806870456784964, -0.016458775848150253, 0.016046995297074318, -0.02192423678934574, 0.006239111535251141, 0.0022694768849760294, 0.007848802022635937, -0.03409050405025482, -0.002735850401222706, -0.005967710167169571, -0.0033160876482725143, 0.009489688090980053, 0.019728070124983788, 0.021150587126612663, -0.004095976706594229, -0.008803386241197586, -0.009077907539904118, 0.003677956061437726, 0.019041767343878746, 0.014225173741579056, 0.026778265833854675, 0.022336019203066826, -0.0005342239164747298, 0.02268540859222412, 0.001356226857751608, 0.0015769354067742825, -0.01146748661994934, 0.012128832750022411, 0.0010926243849098682, -0.00619855709373951, 0.017032774165272713, -0.0342152863740921, -0.023309320211410522, 0.0028746705502271652, 0.005421787966042757, 0.012353440746665001, -0.005116071552038193, 0.0008804945973679423, 0.018080944195389748, 0.036161888390779495, 0.018080944195389748, -0.00621415488421917, -0.02060154639184475, -0.0034564677625894547, 0.014512172900140285, -0.01927885413169861, -0.0024223350919783115, -0.004529594909399748, -0.0007295861141756177, -0.009065428748726845, 0.009639427065849304, 0.011592268943786621, 0.05540331080555916, -0.02622922509908676, -0.012827613390982151, -0.03129538148641586, -0.02111315354704857, 0.033316854387521744, -0.01187926810234785, 0.007387107703834772, -0.00684430543333292, -0.008354170247912407, -0.002690616762265563, 0.01239711418747902, -0.03703536465764046, 0.035013891756534576, -0.05984555557370186, -0.029323823750019073, 0.025318313390016556, -0.024681923910975456, -0.008322974666953087, 0.025018837302923203, -0.0129898302257061, -0.024569621309638023, 0.0039555965922772884, 0.0010809260420501232, 0.0355130210518837, -0.008304256945848465, 0.031145643442869186, 0.011498682200908661, 0.006794392131268978, -0.031020861119031906, 0.013127090409398079, 0.019565854221582413, 0.02206149883568287, -0.036735888570547104, -0.003808977548032999, 0.04030466079711914, 0.00037239695666357875, -0.008404082618653774, -0.009377384558320045, 0.016059473156929016, -0.021350238472223282, 0.004641898907721043, 0.008129562251269817, -0.005119191017001867, -0.005668232683092356, 0.027202526107430458, -0.04684324935078621, 0.014774215407669544, 0.023122146725654602, 0.01302726473659277, 0.006501154042780399, -0.0031569902785122395, 0.006925413850694895, 0.014836606569588184, -0.013950653374195099, 0.04157743975520134, 0.017444554716348648, 0.014574564062058926, -0.0055996025912463665, 0.011074422858655453, 0.01723242551088333, 0.0051566255278885365, -0.002288194140419364, 0.005477939732372761, -0.026453832164406776, 0.016333993524312973, 0.000579847430344671, -0.0062079159542918205, 0.011798159219324589, 0.013077177107334137], [-0.014814880676567554, 0.0050139413215219975, -0.012158127501606941, -0.004414810333400965, -0.02385631576180458, 0.040498849004507065, 0.018506497144699097, 0.04710744693875313, 0.0014895066851750016, 0.016824088990688324, -0.021653449162840843, -0.01716299168765545, 0.011976572684943676, -0.0483420193195343, -0.032631468027830124, -0.009132212027907372, -0.009380336850881577, -0.009089848957955837, -0.006163789425045252, 0.04531610384583473, 0.005107744596898556, -0.01811918057501316, -0.023372169584035873, 0.02967817522585392, -0.05078696087002754, 0.004069855902343988, 0.013217197731137276, 0.004399680532515049, 0.03531848266720772, -0.03076750598847866, 0.0021014981903135777, -0.041636593639850616, 0.036383602768182755, -0.04933452233672142, 0.021314546465873718, -0.02946031093597412, -0.020842503756284714, 0.011226145550608635, -0.0021816848311573267, 0.005700824316591024, -0.04364579916000366, -0.016836192458868027, -0.000942572602070868, -0.006608598865568638, -0.0008449868182651699, 0.10622172802686691, -0.006826464552432299, -0.04918927699327469, -0.0243888758122921, 0.034447018057107925, -0.012418355792760849, -0.00404262263327837, -0.04074092209339142, 0.04684116691350937, 0.012079453095793724, -0.030380187556147575, 0.0018004195298999548, 0.006971708498895168, -0.01775607094168663, 0.0029608579352498055, 0.020067868754267693, -0.012660428881645203, 0.008557287976145744, 0.04350055754184723, -0.02972659096121788, -0.02674908936023712, -0.018409667536616325, 0.042435433715581894, -0.05664513260126114, 0.017489789053797722, -0.026313358917832375, 0.009114056825637817, -0.024836711585521698, -0.05858171731233597, -0.00510471872985363, 0.05054488778114319, 0.0447351299226284, 0.06802257150411606, 0.019390065222978592, -0.014972228556871414, -0.05107744783163071, -0.017356649041175842, 0.0228154007345438, 0.0015303565887734294, 0.015056953765451908, -0.024558328092098236, -0.027790004387497902, 0.03396287187933922, -0.013410856015980244, -0.008369681425392628, 0.011801069602370262, -0.02670067548751831, -0.019668448716402054, 0.07596257328987122, 0.006475458387285471, 0.024183113127946854, 6.458437565015629e-05, -0.019813692197203636, -0.05209415405988693, 0.06274537742137909, -0.005519269034266472, -0.010415200144052505, -0.028492016717791557, -0.040910374373197556, 0.003882249118760228, -0.030234944075345993, -0.06129293888807297, 0.033890251070261, 0.0018125232309103012, -0.027354273945093155, -0.050883788615465164, -0.008369681425392628, -0.016158387064933777, 0.02218600921332836, 0.05582208186388016, -0.008248644880950451, 0.002399550750851631, -0.022936437278985977, -0.008042882196605206, -0.027233237400650978, 0.009356129914522171, -0.024316255003213882, 0.010015779174864292, -0.036068908870220184, 0.005153133533895016, -0.016109973192214966, -0.035657383501529694, -0.05131952092051506, -0.003628072328865528, -0.032994579523801804, 0.046139154583215714, -0.021471893414855003, 0.01235178578644991, -0.08061037957668304, -0.05659671872854233, -0.005495062097907066, 0.03188104182481766, 0.006771998014301062, -0.008054986596107483, -0.058339644223451614, 0.009507425129413605, -0.019232716411352158, 0.0641494020819664, 0.03425335884094238, -0.045558176934719086, 0.027039578184485435, 0.014415459707379341, -0.008387836627662182, -0.023602139204740524, 0.004487432073801756, -0.053691837936639786, 0.025006163865327835, 0.02050360105931759, 0.018240217119455338, -0.03459226340055466, 0.04977025091648102, 0.008520977571606636, 0.00449651014059782, -0.014766465872526169, 0.03534268960356712, -0.017465582117438316, -0.00234811007976532, 0.016327837482094765, -0.05049647390842438, 0.04582446068525314, -0.04640543460845947, -0.015371648594737053, 0.03202628716826439, -0.0492376908659935, -0.019547412171959877, -0.022343358024954796, 0.027039578184485435, -0.014354941435158253, 0.04025677591562271, -0.004429939668625593, -0.015311130322515965, -0.012563600204885006, 0.04350055754184723, 0.03626256808638573, -0.06647330522537231, 0.03461647033691406, 0.033720798790454865, -0.04526768997311592, -0.011201937682926655, -0.020721467211842537, 0.02349320612847805, -0.016376253217458725, -0.004130374174565077, -0.016001040115952492, 0.028298359364271164, 0.04306482523679733, -0.010136815719306469, 0.006197074428200722, 0.024134699255228043, -0.007746343035250902, -0.019498996436595917, -0.028032077476382256, -0.024860918521881104, -0.04766421392560005, -0.05122269317507744, -0.0014115894446149468, -0.023553723469376564, -0.02402576617896557, 0.038053907454013824, 0.002972961636260152, 0.002345084212720394, 0.016594119369983673, -0.00941664818674326, 0.05717769265174866, -0.004348240327090025, 0.017852898687124252, -0.01420969795435667, -0.03483433648943901, 0.03316403180360794, -0.010971968062222004, -0.0268701259046793, -0.016727259382605553, 0.025853419676423073, -0.002541768830269575, -0.01562582515180111, 0.0016370201483368874, -0.03190524876117706, 0.007655565161257982, 0.041176654398441315, -0.00830916315317154, 0.000414172129239887, 0.021060369908809662, 0.005549528636038303, -0.0210119541734457, -0.04855988547205925, -0.04042622819542885, 0.051029033958911896, 0.024158906191587448, -0.03333348035812378, -0.01470594760030508, 0.041806042194366455, -0.045558176934719086, -0.040087323635816574, 0.014100764878094196, -0.022742778062820435, 0.010451510548591614, -0.008962760679423809, -0.025490310043096542, -0.011159575544297695, 0.011807121336460114, 0.011074849404394627, -0.013350337743759155, -0.039869457483291626, 0.05485378950834274, -0.006638858001679182, 0.009198782034218311, 0.0012557548470795155, -0.008508873172104359, -0.042314399033784866, 0.029896041378378868, 0.021556619554758072, 0.018010247498750687, 0.02837098017334938, 0.02701537124812603, -0.007516373414546251, -0.038828544318675995, 0.015783173963427544, 0.011565047316253185, 0.05136793479323387, -0.01978948526084423, 0.003945793490856886, 0.05141634866595268, -0.04408153146505356, -0.013967624865472317, 0.023239027708768845, -0.04950397089123726, 0.017816588282585144, 0.054999034851789474, 0.0077947573736310005, -0.036432020366191864, 0.043524764478206635, -0.006275747902691364, 0.0011551431380212307, 0.033502932637929916, 0.019208509474992752, -0.043476350605487823, -0.07978732883930206, 0.004399680532515049, -0.029169822111725807, 0.000359516532626003, 0.006348370108753443, 0.029702384024858475, -0.01353189256042242, -0.040910374373197556, 0.040861956775188446, 0.05620940029621124, -0.0492376908659935, 0.008799361065030098, -0.03447122499346733, 0.054224397987127304, -0.002408628584817052, 0.039554763585329056, -0.022972747683525085, 0.02696695551276207, 0.0393126904964447, 0.03401128575205803, -0.014524392783641815, 0.00577042018994689, 0.05582208186388016, -0.039821043610572815, 0.004311928991228342, -0.030525432899594307, 0.01747768558561802, -0.021169302985072136, -0.020031558349728584, 0.014088661409914494, 0.04183025285601616, -0.03800549358129501, -0.06589233130216599, 0.003407180542126298, -0.003836860414594412, 0.010723843239247799, 0.006312059238553047, -0.007237988989800215, -0.005912638269364834, 0.011595306918025017, 0.02010418102145195, -0.02187131531536579, -0.00011441741662565619, 0.03599628806114197, -0.010294163599610329, 0.006039726547896862, 0.014016038738191128, 0.018627533689141273, 0.009156418964266777, -0.035536348819732666, -0.04693799465894699, 0.020213114097714424, -0.02670067548751831, -0.016969332471489906, 0.02218600921332836, 0.004218125715851784, 0.0005098666879348457, -0.024836711585521698, -0.05388549715280533, 0.04115244746208191, 0.02357793040573597, 0.0050139413215219975, 0.010687531903386116, -0.028177322819828987, 0.026458602398633957, 0.0002681717451196164, 0.028661468997597694, -0.02488512545824051, 0.02643439546227455, 0.03219573572278023, 0.01965634524822235, 0.03139689564704895, -0.01775607094168663, -0.009222988970577717, 0.009368233382701874, 0.08574233204126358, -0.025102991610765457, -0.021350856870412827, 0.012950916774570942, -0.006281800102442503, -0.01779238134622574, -0.02254912070930004, 0.021919729188084602, -0.047688424587249756, 0.005452699027955532, -0.029169822111725807, -0.02774159051477909, 0.024316255003213882, -0.0025568983983248472, 0.032994579523801804, 0.025490310043096542, -0.01117773074656725, 0.000871463562361896, -0.02037046104669571, -0.03144530951976776, 0.018724363297224045, 0.021665552631020546, 0.01301143504679203, 0.014403356239199638, 0.029339272528886795, -0.020491497591137886, -0.015323234722018242, 0.008999072015285492, 0.0029850653372704983, 0.014621222391724586, -0.027765797451138496, 0.00756478775292635, 0.003146951785311103, 0.0006418722332455218, -0.021266132593154907, 0.019123783335089684, 0.030380187556147575, 0.002947241300716996, -0.06071196123957634, 0.05209415405988693, 0.031517934054136276, 0.057080864906311035, -0.007231937255710363, -0.006439147517085075, -0.01861543022096157, -0.024509912356734276, -0.035802628844976425, -0.024558328092098236, 0.004723453428596258, -0.03938531130552292, 0.0009539197781123221, -0.04374263063073158, 0.03098537214100361, -0.03510061651468277, 0.041757628321647644, -0.018712259829044342, 0.02104826644062996, 0.004457172937691212, 0.027039578184485435, 0.02660384587943554, 0.009465062990784645, 0.024425188079476357, 0.011256404221057892, -0.006269696168601513, 0.03483433648943901, 0.005092615261673927, -0.03618994355201721, 0.03454384580254555, -0.053691837936639786, 0.0257565900683403, -0.015819484367966652, -0.028346773236989975, -0.001608273945748806, -0.04972183704376221, 0.022609638050198555, -0.025417687371373177, 0.055676840245723724, 0.0546601302921772, -0.02795945666730404, -0.011377440765500069, -0.024509912356734276, -0.011492425575852394, 0.015553204342722893, -0.0061123487539589405, -0.02181079611182213, -0.04531610384583473, 0.0268701259046793, 0.028830919414758682, -0.043839458376169205, 0.003143925918266177, -0.031953662633895874, 0.028201529756188393, -0.04340372607111931, 0.006705428007990122, -0.05262671783566475, 0.03311561420559883, -0.02334796078503132, 0.0037612125743180513, 0.02407418191432953, -0.017041955143213272, -0.028177322819828987, 0.005053278524428606, 0.014488081447780132, 0.021617138758301735, -0.0076858242973685265, 0.02253701537847519, 0.024812504649162292, 0.04657488688826561, 0.032825127243995667, 0.04502561688423157, -0.007649513427168131, 0.021701863035559654, -0.04364579916000366, -0.034664884209632874, -0.02051570452749729, -0.03582683578133583, 0.026143906638026237, -0.03243780881166458, -0.012551495805382729, 0.01640046015381813, -0.01983789913356304, -0.051706839352846146, -0.06395574659109116, 0.005322584882378578, 0.02810470014810562, 0.015528996475040913, 0.03737610578536987, 0.0420239083468914, 0.04083774983882904, 0.06260013580322266, 0.05543476715683937, 0.007159315515309572, -0.0550958625972271, -0.04541293531656265, -0.06560184061527252, -0.0030228891409933567, 0.07247672230005264, -0.011062745936214924, -0.0029502674005925655, -0.002727862447500229, 0.02706378512084484, -0.02800787054002285, 0.06419781595468521, 0.015444271266460419, 0.015468478202819824, -0.01965634524822235, 0.0034434914123266935, -0.03076750598847866, 0.057710252702236176, 0.02691854164004326, -0.011026434600353241, 0.009567943401634693, 0.04105561599135399, 0.030840126797556877, 0.003162081353366375, 0.036528848111629486, 0.011546892113983631, 0.008769102394580841, -0.03149372339248657, -0.0005560119170695543, 0.003945793490856886, -6.912324897712097e-05, -0.01906326599419117, -0.022234424948692322, 0.00348888011649251, 0.02587762661278248, -0.011286663822829723, 0.009132212027907372, 0.018240217119455338, 0.017187198624014854, -0.05315927788615227, -0.045195069164037704, 0.002028876217082143, -0.0243888758122921, 0.016836192458868027, -0.014984332025051117, 0.000334741867845878, 0.006187996361404657, 0.00407590763643384, 0.011322974227368832, 0.02308168075978756, 0.02878250554203987, -0.007038278505206108, 0.022512808442115784, 0.021713966503739357, -0.009446906857192516, -0.00407590763643384, -0.0012126355431973934, 0.023916833102703094, 0.0114077003672719, 0.026410186663269997, 0.004889878910034895, -0.013761862181127071, 0.0039821043610572815, 0.00614563375711441, -0.011117212474346161, -0.0031893146224319935, -0.023105887696146965, -0.01052413322031498, 0.009368233382701874, 0.008133660070598125, -0.024049973115324974, 0.022161802276968956, -0.016872502863407135, -0.01563793048262596, 0.02832256630063057, -0.025514516979455948, -0.014463874511420727, -0.002505457727238536, 0.020176801830530167, -0.0017005642876029015, -0.043258484452962875, 0.01802235096693039, -0.027620553970336914, -0.06318110972642899, 0.012182334437966347, 0.0011884281411767006, -0.022924333810806274, 0.03786025196313858, 0.020249424502253532, 0.013519789092242718, -0.023735279217362404, 0.006378629244863987, 0.006036700680851936, 0.022621741518378258, 0.040402017533779144, 0.04282275214791298, -0.012769361957907677, 0.014064453542232513, 0.04161238670349121, 0.013338234275579453, -0.01104459073394537, 0.005894482601433992, 0.048269398510456085, -0.005785549990832806, -0.03921585902571678, 0.024316255003213882, 0.0037521347403526306, -0.01562582515180111, 0.03505220264196396, -0.032002080231904984, 0.032316774129867554, 0.0014804289676249027, 0.025635553523898125, -0.002336006611585617, -0.016109973192214966, -0.009156418964266777, 0.010518081486225128, -0.015262716449797153, -0.0054587507620453835, -0.006227333564311266, -0.024425188079476357, 0.009374285116791725, 0.03374500572681427, 0.013338234275579453, 0.014403356239199638, -0.014415459707379341, -0.02962976135313511, -0.01847018674015999, -0.015262716449797153, 0.002933624666184187, -0.046453848481178284, -0.03219573572278023, -0.013991831801831722, 0.017538204789161682, -0.008986967615783215, -0.008121556602418423, -0.0038429121486842632, 0.005386129021644592, -0.02230704575777054, 0.020116284489631653, -0.032002080231904984, 0.036746714264154434, -0.010257852263748646, 0.0067538428120315075, -0.006481510121375322, 0.029194029048085213, 0.004717401694506407, -0.04504982382059097, -0.020975643768906593, 0.039094824343919754, -0.002053083386272192, 0.015347441658377647, 5.3278563427738845e-06, 0.0031711591873317957, -0.023686863481998444, 0.013882898725569248, -0.016364149749279022, 0.029702384024858475, -1.8616470697452314e-05, 0.017465582117438316, 0.052239399403333664, 0.021580826491117477, 0.011692136526107788, 0.044783543795347214, -0.019583722576498985, 0.04241122677922249, -0.04270171374082565, -0.004218125715851784, -0.002947241300716996, 0.007455855142325163, 0.05863013118505478, 0.038417018949985504, -0.003186288755387068, -0.026531225070357323, -0.034713298082351685, -0.02150820568203926, -0.011335078626871109, -0.007026175037026405, 0.025683967396616936, 0.05039964243769646, 0.0005760585772804916, 0.027136407792568207, 0.010608858428895473, -0.02810470014810562, 0.0014403356472030282, 0.02691854164004326, -0.023880522698163986, -0.040861956775188446, -0.012624118477106094, -0.0017126679886132479, 0.0169451255351305, 0.008212333545088768, 0.03226836025714874, -0.028080493211746216, -0.027717383578419685, 0.017017746344208717, 0.0388527512550354, 0.005843042396008968, -0.01125035248696804, 0.009761602617800236, 0.0021831977646797895, -0.0027460181154310703, 0.011195885948836803, 0.017828691750764847, -0.03725506737828255, 0.039409518241882324, -0.022960644215345383, 0.017586618661880493, 0.011195885948836803, -0.04071671515703201, 0.010409148409962654, 0.005065381992608309, 0.005722005385905504, 0.006136556155979633, 0.00830916315317154, -0.011843431740999222, -0.03154214099049568, -0.0077947573736310005, 0.01345927082002163, -0.033890251070261, 0.027039578184485435, -0.0005673590931110084, -0.0006475458503700793, -0.014657532796263695, -0.017320338636636734, -0.02858884632587433, 0.019680552184581757, 0.0012519723968580365, 0.01684829592704773, -0.02118140645325184, 0.012339682318270206, 0.03529427573084831, -0.022791193798184395, -0.046550679951906204, 0.01689670979976654, -0.005234833341091871, -0.03081591986119747, 0.02375948615372181, 0.0016869476530700922, 0.027209028601646423, 0.015686344355344772, -0.04458988457918167, 0.04463830217719078, 0.041176654398441315, -0.009507425129413605, 0.002211943967267871, -0.013749758712947369, -0.018191801384091377, 0.03735189512372017, -0.042629092931747437, 0.03364817798137665, 0.010645169764757156, 0.02230704575777054, -0.009404544718563557, -0.03560896962881088, 0.026676468551158905, -0.04543714225292206, 0.005271144211292267, 0.00037218755460344255, -0.0014479004312306643, 0.050980620086193085, -0.02737848088145256, -0.020043661817908287, -0.018675947561860085, 0.008654117584228516, -0.03442281112074852, -0.001950202276930213, 0.022609638050198555, -0.01285408716648817, -0.005198522470891476, -0.018760673701763153, -0.007722135633230209, 0.006874879356473684, 0.03718244656920433, -0.013156679458916187, 0.007443751208484173, 0.011244300752878189, 0.006675168871879578, 0.016545703634619713, -0.030549639835953712, -0.027572138234972954, -0.0048202830366790295, 0.02086671069264412, 0.007407440338283777, -0.001957767177373171, 0.006741738878190517, 0.0055586062371730804, -0.03243780881166458, 0.02063674107193947, -0.019983144477009773, 0.014802777208387852, -0.04061988368630409, -0.012599910609424114, -0.004305877257138491, -0.009313766844570637, 0.02258543111383915, 0.05073854699730873, 0.002782328985631466, -0.020794089883565903, -0.014028143137693405, 0.0007205460569821298, 0.019620034843683243, 0.0073045589961111546, 0.010342578403651714, -0.02674908936023712, -0.011692136526107788, -0.030501224100589752, -0.0014963150024414062, -0.004817257169634104, -0.008133660070598125, -0.029920248314738274, -0.013314026407897472, 0.0024525043554604053, 0.023299546912312508, 0.005419414024800062, -0.019026953727006912, 0.01483908761292696, 0.029968664050102234, 0.0031741850543767214, -0.03853805735707283, -0.011389544233679771, 0.018131284043192863, -0.022779088467359543, -0.0048293606378138065, -0.00010193551861448213, 0.006923293694853783, 0.001830678666010499, 0.039506349712610245, -0.05461171641945839, -0.050932202488183975, 0.004566106013953686, -0.04328269138932228, -0.03270409256219864, 0.0320747010409832, -0.016751466318964958, 0.00971318781375885, -0.008617806248366833, -0.0065117692574858665, -0.050254400819540024, -0.025417687371373177, -0.001986513379961252, -0.005722005385905504, 0.012212594039738178, 0.06739318370819092, -0.009337973780930042, 0.03698878735303879, -0.012248904444277287, -0.004717401694506407, 0.051658425480127335, -0.024909334257245064, 0.00407590763643384, -0.0051137967966496944, 0.02507878467440605, 0.045655008405447006, 0.014742258936166763, -0.0013926774263381958, 0.017005642876029015, -0.0026854996103793383, 0.009313766844570637, 0.005782523658126593, 0.003137873951345682, -0.009289559908211231, 0.04233860597014427, 0.0021272182930260897, 0.010348630137741566, 0.026579638943076134, -0.024279942736029625, 0.016049453988671303, -0.032316774129867554, -0.008333370089530945, -0.017865004017949104, -0.05141634866595268, -0.0016884607030078769, -0.01721140556037426, -0.023202717304229736, 0.014367044903337955, 0.05320769175887108, -0.021605033427476883, 0.004908034577965736, -0.018397564068436623, -0.006215229630470276, 0.02352951653301716, -0.01612207666039467, 0.02167765609920025, -0.015613722614943981, -0.020261527970433235, -0.006596494931727648, -0.03093695640563965, 0.021629242226481438, -0.036843542009592056, 0.045509763062000275, 0.02403786964714527, 0.05083537474274635, -0.005528347101062536, -0.009573995135724545, 0.02670067548751831, -0.05219098553061485, -0.010409148409962654, 0.024243632331490517, -0.011304819025099277, 0.07339660078287125, 0.0160373505204916, -0.0020122334826737642, -0.02706378512084484, 0.04323427751660347, 0.030743297189474106, -0.03848963975906372, 0.01563793048262596, 0.01721140556037426, -0.00026174166123382747, 0.03280092030763626, 0.00991289783269167, 0.01108695287257433, -0.010814621113240719, 0.01770765520632267, -0.00919273030012846, 0.018034454435110092, 0.01621890440583229, 0.006378629244863987, -0.029387688264250755, -0.0023117992095649242, 0.004448095336556435, -0.02231915108859539, 0.0052106259390711784, 0.016933022066950798, 0.0009289559675380588, -0.011456115171313286, 0.028492016717791557, -0.008720687590539455, -0.009731343016028404, -0.008466511033475399, 0.016594119369983673, -0.006384680978953838, 0.05611257255077362, -0.022464394569396973, -0.04870513081550598, 0.009319818578660488, 0.01612207666039467, -0.0063604735769331455, -0.014814880676567554, 0.028709882870316505, 0.030743297189474106, -0.001815549097955227, 0.014064453542232513, 0.06400416046380997, 0.015976831316947937, 0.0077947573736310005, 0.017356649041175842, -0.03284933418035507, -0.017405064776539803, 0.01301143504679203, 0.023456893861293793, -0.04061988368630409, 0.06274537742137909, 0.0038156791124492884, -0.004100115038454533, -0.012067349627614021, -0.013761862181127071, -0.016993539407849312, 0.04124927520751953, 0.050254400819540024, 0.024957748129963875, -0.006330214440822601, -0.0002965396852232516, -0.02073357068002224, 0.03677092120051384, 0.021302442997694016, 0.017816588282585144, 0.013398752547800541, -0.01698143593966961, -0.0030879464466124773, 0.009428751654922962, -0.0010817646980285645, -0.05122269317507744, 0.020927229896187782, 0.04028098285198212, 0.001791341812349856, 0.016243113204836845, -0.001711155055090785, -0.028661468997597694, -0.017284028232097626, 0.01483908761292696, 0.017356649041175842, 0.005628202110528946, 0.008369681425392628, 0.026313358917832375, 0.02534506469964981, 0.05267513170838356, -0.0013117342023178935, 0.031421102583408356, 0.0019955909810960293, 0.012926709838211536, 0.03640780970454216, 0.05112586170434952, 0.025780797004699707, -0.013991831801831722, 0.00010846014629350975, -0.007038278505206108, 0.024328358471393585, 0.02800787054002285, 0.008369681425392628, 0.019535308703780174, 0.0043179807253181934, -0.0002439644158584997, 0.0073953368701040745, 0.0223554614931345, 0.055628422647714615, -0.002876132261008024, 0.02290012687444687, -0.013652929104864597, -0.009925001300871372, 0.010330474004149437, -0.0030834076460450888, 0.0007867379463277757, -0.020116284489631653, -0.010530184954404831, 0.03221994638442993, 0.009247196838259697, -0.02674908936023712, 0.049261897802352905, -0.0009448420023545623, -0.006420991849154234, 0.0021211665589362383, 0.030234944075345993, -0.005712927784770727, -0.007467958610504866, 0.004363369662314653, 0.015892107039690018, 0.012539392337203026, 0.013314026407897472, -0.07659196108579636, 0.023384273052215576, -0.0006668360438197851, 0.01630363054573536, 0.03631098195910454, -0.029532931745052338, 0.028201529756188393, 0.04267750680446625, -0.015032746829092503, 0.03267988562583923, -0.01707826554775238, 0.022888021543622017, 0.0028080493211746216, -0.0176229290664196, -0.019135886803269386, -0.005325610749423504, 0.01725981943309307, 0.0011551431380212307, 0.022694364190101624, -0.010403096675872803, 0.0010908424155786633, -0.008708584122359753, 0.019886314868927002, 0.0001882686628960073, 0.02498195506632328, -0.02488512545824051, 0.018821192905306816, 0.011637669987976551, 0.0032528587616980076, 0.047180067747831345, 0.0176229290664196, 0.016872502863407135, -0.002537229796871543, 0.02177448570728302, -0.006487562321126461, 0.012242852710187435, -0.028855126351118088, -0.006221281364560127, -0.0004489701532293111, -0.007014071568846703, -0.0003324724384583533, 0.03355134651064873, 0.012926709838211536, -0.0012928223004564643, -0.031735796481370926, 0.031832627952098846, 0.016194697469472885, 0.028976162895560265, -0.020951436832547188, -0.03812653198838234, -0.014512289315462112, -0.005449673160910606, 0.023650553077459335, 0.009156418964266777, 0.02931506559252739, -0.02737848088145256, 0.04521927610039711, 0.009065642021596432, 0.022888021543622017, -0.026216529309749603, -0.0145728075876832, -0.011105109006166458, -0.039821043610572815, -0.008654117584228516, 0.026797505095601082, -0.015746861696243286, 0.004690168425440788, 0.010959864594042301, -0.03427756577730179, 0.04103140905499458, 0.04028098285198212, 0.008563339710235596, 0.020588327199220657, -0.01671515591442585, 0.03667409345507622, -0.029339272528886795, -0.008865931071341038, -0.005746212787926197, -0.0025069706607609987, 0.008756998926401138, 0.005298377480357885, 0.014488081447780132, -0.030840126797556877, 0.06603757292032242, 0.03410811722278595, -0.002711219945922494, -0.008097348734736443, -0.015323234722018242, -0.008690427988767624, 0.01725981943309307, -0.013084056787192822, -0.005035122856497765, 0.0111837824806571, 0.004735557362437248, 0.018276527523994446, 0.04594549536705017, -0.017949728295207024, 0.04011153057217598, -0.024606741964817047, 0.003249832894653082, 0.007092745043337345, 0.004644779954105616, 0.02461884543299675, -0.014584911055862904, -0.010185230523347855, -0.03219573572278023, -0.017332442104816437, 0.04132189601659775, 0.03640780970454216, 0.000608587171882391, 0.007903690449893475, 0.01861543022096157, -0.018107077106833458, -0.0035130875185132027, -0.008036830462515354, -0.023420583456754684, -0.03558476269245148, -0.0073408703319728374, -0.022730674594640732, 0.008109452202916145, 0.015407959930598736, -0.010330474004149437, 0.005740161053836346, 0.011843431740999222, -0.0017535178922116756, 0.006088141351938248, 0.007667669095098972, 0.001426719012670219, -0.009755550883710384, 0.0003668921999633312, 0.06845830380916595, -0.00046409975038841367, -0.014718051068484783, 0.0016203775303438306, 0.008399940095841885, -0.0076858242973685265, 0.032510433346033096, 0.021399272605776787, 0.0039911819621920586, -0.0010325935436412692, -0.0002248633245471865, -0.004442043602466583, 0.01752610132098198, 0.01982579566538334, -0.014851192012429237, -0.026361772790551186, 0.010191282257437706, 0.013919210061430931, 0.022028662264347076, -0.01447597797960043, 0.012539392337203026, 0.006239437032490969, 0.014899605885148048, 0.009961312636733055, 0.004478354472666979, -0.027935249730944633, -0.028564639389514923, 0.0025463076308369637, -0.005053278524428606, 0.02073357068002224, 0.012206541374325752, 0.03113061562180519, -0.04688958078622818, -0.0056675393134355545, -0.006983812432736158, -0.033406104892492294, 0.01815549097955227, -0.0049261897802352905, 0.013338234275579453, -0.010033934377133846, 0.008545184507966042, -0.011528736911714077, -0.0008616293198429048, 0.015432167798280716, -0.00521667767316103, 0.03144530951976776, 0.004136425908654928, -0.009791861288249493, -0.0063181109726428986, -0.01613418012857437, 0.027814211323857307, 0.03197787329554558, 0.029436102136969566, -0.007032226771116257, 0.002416193252429366, -0.0019229691242799163, 0.010965916328132153, 0.005498087964951992, 0.009743446484208107, 0.014451771043241024, -0.0007341626915149391, 0.0015038797864690423, -0.013967624865472317, 0.02791104093194008, 0.017683448269963264, -0.003646227763965726, -0.004802127368748188, -0.014112868346273899, 0.014657532796263695, 0.016097867861390114, 0.018094971776008606, 0.0006498153088614345, -0.02336006425321102, -0.0052106259390711784, -0.012339682318270206, 0.0045691318809986115, -0.03367238491773605, 0.018131284043192863, 0.019704759120941162, 0.0082425931468606, 0.03541531041264534, -0.0028776454273611307, 0.0075466325506567955, 0.013217197731137276, -0.027136407792568207, 0.006681220605969429, -0.0030455836094915867, 0.025296650826931, -0.0013843561755493283, 0.03650464117527008, -0.010790413245558739, 0.012279164046049118, -0.0033648177050054073, -0.02624073624610901, 0.02863726206123829, -0.0004818769812118262, -0.01522640511393547, -0.010294163599610329, -0.02167765609920025, 0.015250612050294876, 0.009265352040529251, -0.010445458814501762, -0.02561134658753872, 0.013483477756381035, -0.016376253217458725, -0.00518339267000556, 0.012309422716498375, -0.01833704672753811, -0.019039059057831764, -0.020564120262861252, -0.03737610578536987, -0.022440187633037567, 0.013677136972546577, -0.046187568455934525, -0.01395552046597004, 0.006657013203948736, 0.0214597899466753, 8.964273729361594e-05, 0.036795128136873245, -0.017453478649258614, 0.018276527523994446, -0.019402168691158295, 0.005259040743112564, -0.0013888950925320387, -0.04141872748732567, 0.012684636749327183, -0.006535976659506559, -0.029194029048085213, 0.03754555433988571, -0.009991572238504887, -0.0045691318809986115, 0.005924741737544537, 0.004148529842495918, 0.029605554416775703, -0.020939333364367485, 0.014330734498798847, 0.01249097753316164, -0.010427303612232208, 0.03149372339248657, -0.02425573579967022, 0.0018488342175260186, -0.01955951564013958, 0.007746343035250902, -0.011934209614992142, 0.0026885257102549076, -0.0012383557623252273, -0.021653449162840843, -0.003912508487701416, -0.014778569340705872, 0.013338234275579453, 0.013495581224560738, -0.017598722130060196, -0.015141679905354977, 0.014657532796263695, -0.0008343961089849472, -0.05141634866595268, -0.01287829503417015, -0.01919640600681305, -0.01050597708672285, -0.03730348125100136, -0.002075777854770422, -0.016557807102799416, -0.044202569872140884, -0.017998144030570984, 0.028492016717791557, 0.02046729065477848, -0.004856593906879425, -0.012254956178367138, -0.008871982805430889, -0.024776194244623184, -0.015286923386156559, -0.05078696087002754, -0.01515378337353468, 0.0045782094821333885, -0.026507016271352768, 0.012430459260940552, 0.0014395791804417968, 0.015020642429590225, -0.015976831316947937, -0.010215489193797112, -0.011516633443534374, 0.0011823764070868492, 0.0004342188185546547, -0.021387169137597084, -0.0176108255982399, 0.025224028155207634, 0.032050494104623795, -0.016388356685638428, 0.02371107041835785, 0.027184821665287018, 0.04098299518227577, -0.02498195506632328, 0.01613418012857437, 0.005047226324677467, 0.0053195590153336525, -0.04183025285601616, 0.055580008774995804, -0.03771500661969185, 0.020430978387594223, -0.03696458041667938, -0.006741738878190517, 0.03284933418035507, 0.01684829592704773, -0.00407590763643384, -0.021931832656264305, -0.011389544233679771, 0.021532412618398666, -0.004850542172789574, 0.0015674240421503782, 0.012248904444277287, 0.011232197284698486, -0.03197787329554558, 0.013810276985168457, -0.011510581709444523, 0.04241122677922249, -0.041539762169122696, -0.019753174856305122, 0.02967817522585392, -0.004030519165098667, -0.02268226072192192, 0.008611754514276981, 0.002408628584817052, 0.016642533242702484, -0.026942748576402664, -0.0205520149320364, 0.017380855977535248, 0.007201678119599819, 0.03326085954904556, 0.008847775869071484, -0.02154451608657837, -0.0033103511668741703, -0.026531225070357323, 0.020660948008298874, -0.02109668031334877, -0.0044723027385771275, -0.01535954512655735, 0.01901485025882721, -0.024606741964817047, -0.016860399395227432, 0.04006311669945717, -0.0018261397490277886, -0.01450018584728241, -0.04773683845996857, -0.022440187633037567, 0.00838178489357233, -0.02982342056930065, -0.005019993055611849, -0.00905959028750658, 0.00028008627123199403, -0.009519529528915882, 0.018857503309845924, -0.03618994355201721, -0.016521496698260307, -0.04495299607515335, 0.04396049678325653, -0.029653968289494514, -0.00890224240720272, 0.007903690449893475, 0.00565846124663949, -0.0044723027385771275, 0.024727778509259224, -0.05407915636897087, 0.02962976135313511, 0.036649882793426514, 0.004402706399559975, 0.017816588282585144, -0.020043661817908287, 0.0010999201331287622, 0.019269028678536415, 0.003385999007150531, -0.015202198177576065, 0.024062076583504677, -0.023965248838067055, -0.034495431929826736, -0.02570817433297634, 0.005516243167221546, 0.021024059504270554, 0.02187131531536579, 0.014488081447780132, 0.04580025374889374, 0.012684636749327183, -0.00010902750364039093, 0.003970000892877579, -0.015601618215441704, 0.010572548024356365, 0.016013143584132195, 0.021520309150218964, 0.02213759534060955, 0.03853805735707283, -0.03081591986119747, 0.008496769703924656, 0.010312318801879883, -0.022839607670903206, 0.021314546465873718, 0.012902501970529556, 0.005413362290710211, -0.017683448269963264, -0.019269028678536415, -0.022125491872429848, 0.05272354558110237, -0.004420862067490816, 0.025635553523898125, 0.005722005385905504, 0.012382044456899166, -0.014088661409914494, -0.018240217119455338, 0.01499643549323082, -0.01712667942047119, -0.022028662264347076, -0.03991787135601044, -0.009743446484208107, -0.0040789335034787655, 0.01924481987953186, 0.02050360105931759, -0.016049453988671303, -0.0009493808611296117, -0.033091407269239426, 0.0075466325506567955, 0.023372169584035873, 0.04052305594086647, 0.001314760185778141, 0.010397044941782951, 0.007219833787530661, -0.018409667536616325, 0.059114277362823486, 0.0027914068195968866, 0.044517263770103455, 0.006572287529706955, -0.022331254556775093, -0.0027293753810226917, 0.034761711955070496, 0.021290339529514313, -0.003407180542126298, 0.01676356978714466, -0.028709882870316505, -0.012139971368014812, -0.004006311763077974, -0.035391103476285934, 0.02628915011882782, -0.018809089437127113, -0.022730674594640732, -0.0015311130555346608, 0.03681933507323265, 0.02344479039311409, 0.003685564734041691, 0.030961163341999054, -0.04042622819542885, 0.0320747010409832, -0.004750686697661877, 0.016001040115952492, 0.006838568486273289, 0.022827504202723503, 0.0010953813325613737, 0.010378888808190823, 9.668744314694777e-05, -0.001434283796697855, -0.048269398510456085, -0.021750278770923615, 0.004360343795269728, 0.00683251628652215, -0.010675428435206413, 0.04308903217315674, -0.012297319248318672, -0.012297319248318672, 0.04865671694278717, -0.021629242226481438, -0.013495581224560738, -0.012539392337203026, 0.041442934423685074, 0.009204833768308163, 0.011038538068532944, -0.001624916447326541, 0.0018639637855812907, -0.03483433648943901, -0.018373357132077217, -0.03156634792685509, 0.016690948978066444, 0.046284399926662445, -0.00867227278649807, 0.016001040115952492, 0.020660948008298874, -0.002954806201159954, 0.006542028393596411, -0.017005642876029015, 0.002780816052109003, -0.024425188079476357, -0.003994207829236984, 0.013846587389707565, -0.011359285563230515], [-0.0008646138594485819, 0.04143810272216797, 0.012482119724154472, -0.02354917675256729, -0.04975951835513115, 0.013876061886548996, 0.03839677572250366, 0.015016560442745686, 0.024457352235913277, 0.04473287612199783, -0.005232563707977533, 0.02794220671057701, -0.018438056111335754, 0.00011467683361843228, -0.05824989452958107, 0.0009055344853550196, -0.007782844826579094, 0.04806989058852196, -0.002015672391280532, -0.013221331872045994, 0.020909134298563004, 0.029716316610574722, 0.010618249885737896, 0.052969809621572495, -0.02996975928544998, -0.006837709341198206, 0.04323333129286766, 0.008859981782734394, 0.028512457385659218, -0.03974847495555878, 0.03636922314763069, -0.020000960677862167, 0.05985504016280174, -0.01954687386751175, 0.05634906142950058, 0.018142370507121086, -0.04832333326339722, 0.016917390748858452, -0.006288580596446991, -0.015555129386484623, -0.05778524652123451, 0.07151346653699875, -0.042388517409563065, -0.0555887296795845, -0.02796332724392414, 0.046422503888607025, 0.02407718636095524, -0.02787884697318077, -0.024943118914961815, 0.04078337177634239, -0.006589545402675867, 0.020983055233955383, 0.004144866485148668, 0.022281955927610397, 0.03831229358911514, 0.03829117491841316, -0.004741515964269638, -0.025492249056696892, 0.0021397543605417013, 0.03210291266441345, -0.008764940313994884, -0.009308788925409317, -0.0032736524008214474, 0.037889886647462845, -0.029547352343797684, -0.0382489338517189, 0.03246195986866951, 0.03505976125597954, -0.023105649277567863, 0.010348965413868427, -0.00266776280477643, 0.0037647003773599863, -0.03664378821849823, -0.038037728518247604, -0.027498681098222733, 0.014509672299027443, 0.04050881043076515, 0.00864349864423275, 0.03248307853937149, 0.012323717586696148, -0.007027792744338512, 0.00018447295587975532, 8.670888928463683e-05, 0.007698363158851862, -0.004472231492400169, 0.033264532685279846, -0.04528200626373291, 0.028639178723096848, -0.03865021839737892, -0.02132098190486431, -0.020381126552820206, 0.037509720772504807, -0.029505113139748573, 0.09064849466085434, 0.02836461365222931, 0.011552824638783932, 0.017983967438340187, -0.008152450434863567, -0.02371813915669918, 0.04692939296364784, 0.05478615686297417, 0.014319589361548424, 0.005375125911086798, 0.01963135413825512, 0.039790716022253036, -0.12545481324195862, -0.06479720026254654, 0.06205155327916145, -0.0015299045480787754, -0.022324196994304657, -0.013622618280351162, 0.006431142799556255, -0.022387558594346046, 0.06374117732048035, 0.012682762928307056, -0.017931167036294937, 0.03753083944320679, -0.02378150075674057, 0.024499591439962387, -0.02399270422756672, 0.010475687682628632, -0.006198819261044264, -0.013263572007417679, -0.0986742228269577, -0.0057341717183589935, -0.007888446561992168, -0.02574569173157215, -0.009546392597258091, -0.025217683985829353, -0.01517496258020401, 0.004284788388758898, -0.050731051713228226, 0.05157586559653282, -0.0239082220941782, 0.018702059984207153, -0.014340709894895554, 0.015037680976092815, -0.014731436036527157, 0.0017622282030060887, 0.014509672299027443, -0.015132722444832325, -0.0239082220941782, 0.009134545922279358, -0.010586569085717201, -0.0637834221124649, 0.0029066866263747215, 0.013622618280351162, 0.055546488612890244, 0.015470648184418678, -0.0353132039308548, -0.004638554062694311, 0.016357701271772385, 0.029674075543880463, -0.0014467431465163827, 0.014741996303200722, 0.05888350307941437, -0.03267316147685051, 0.04055104777216911, 0.016854029148817062, 0.022915566340088844, -0.034785196185112, -0.04583113268017769, 0.040255364030599594, -0.046591464430093765, 0.018628139048814774, -0.004514472093433142, -0.0521249957382679, 0.0172869972884655, -0.03448951244354248, -0.02631594054400921, -0.02378150075674057, -0.03303220868110657, 0.02604137733578682, 0.008786060847342014, 0.006547304801642895, 0.010391206480562687, -0.014087265357375145, 0.007402678485959768, 0.03497527912259102, -0.01950463280081749, -0.02145826444029808, -0.025196563452482224, -0.03062449023127556, -0.03387702256441116, -0.0340459868311882, 0.040149763226509094, 0.018533097580075264, -0.023042289540171623, -0.03001200035214424, -0.004284788388758898, 0.02623146027326584, 0.009979359805583954, -0.04494408145546913, 0.033454615622758865, 0.016442183405160904, 0.016970191150903702, -0.01704411208629608, -0.04566217213869095, 0.020888013765215874, -0.020972495898604393, 0.00489991856738925, -0.03282100707292557, -0.009197907522320747, 0.021152019500732422, -0.0019536311738193035, -0.01950463280081749, 0.028850382193922997, -0.010095521807670593, 0.04285316541790962, 0.0014190226793289185, -0.009694235399365425, -0.05584217607975006, -0.04709835350513458, 0.026843950152397156, -0.04063552990555763, 0.0141611872240901, 0.037551961839199066, 0.04323333129286766, -0.014414630830287933, 0.007745883893221617, -0.004680795129388571, -0.046633705496788025, -0.002249316079542041, 0.015882493928074837, -0.009013104252517223, 0.02357029728591442, 0.010243363678455353, -0.008448135107755661, -0.008004608564078808, -0.03444727137684822, -0.046084579080343246, 0.03277876600623131, 0.00603513652458787, 0.0213315412402153, 0.016104258596897125, 0.02568233199417591, -0.02403494529426098, -0.026590505614876747, -0.005517688579857349, 0.009879038669168949, -0.02348581701517105, 0.014763116836547852, -0.014066144824028015, -0.015227763913571835, -0.00985791813582182, -0.012281476520001888, -0.024900879710912704, 0.02173282764852047, 0.0555887296795845, -0.0038544617127627134, -0.0055229682475328445, 0.0055071283131837845, 0.020909134298563004, -0.04621129855513573, 0.020961936563253403, 0.020011520013213158, 0.040023040026426315, 0.009562233462929726, 0.0469716340303421, -0.027604281902313232, -0.005908414721488953, 0.008416455239057541, -0.03516536206007004, 0.022366438060998917, -0.06885230541229248, -0.01924062892794609, 0.050815533846616745, -0.04167042672634125, -0.02576681226491928, 0.01968415454030037, -0.061671387404203415, 0.010095521807670593, 0.03064561076462269, -0.001829549320973456, -0.03459511324763298, -0.013390294276177883, 0.037678685039281845, -0.026928430423140526, 0.014551913365721703, 0.033708058297634125, -0.07252724468708038, -0.0072284359484910965, 0.051068976521492004, -0.018966063857078552, -0.007650842424482107, 0.009984639473259449, -0.033729180693626404, -0.03932606801390648, -0.014995439909398556, 0.09428118914365768, 0.04790092632174492, 0.016326021403074265, -0.02838573418557644, 0.02794220671057701, 0.01760380156338215, 0.022112993523478508, -0.01299956813454628, 0.0009279748774133623, -0.027414198964834213, 0.012534921057522297, -0.02621033973991871, 0.001155018457211554, -0.006642346270382404, 0.04578889161348343, -0.06471271812915802, 0.03696059063076973, -0.0015206643147394061, 0.010222244076430798, 0.01743483915925026, -0.02147938311100006, -0.022957807406783104, 0.039896320551633835, -0.01963135413825512, -0.016146497800946236, 0.014837037771940231, 0.015977535396814346, -0.020148802548646927, 0.039854079484939575, 0.008046848699450493, -0.0048391977325081825, 0.007935967296361923, 0.01914558745920658, 0.03651706501841545, -0.01908222585916519, 0.01710747368633747, 0.018786540254950523, 0.035672251135110855, 0.04295876622200012, -0.006647626403719187, 0.00268228305503726, -0.02171170711517334, -0.005955935455858707, 0.0349964015185833, -0.01404502522200346, -0.005570488981902599, 0.0016935871681198478, 0.010401766747236252, 0.033729180693626404, -0.008215812034904957, 0.015449527651071548, 0.016790669411420822, -0.008279172703623772, 0.05174482986330986, 0.005016080103814602, 0.004852397833019495, 0.030835693702101707, 0.008067969232797623, 0.01171122770756483, 0.011964671313762665, 0.03746747970581055, 0.006869390141218901, -0.0030650889966636896, 0.0010560168884694576, -0.0019483511568978429, -0.03936830908060074, -0.015945855528116226, 0.006526184733957052, -0.0017965487204492092, -0.008236931636929512, 0.00972063560038805, -0.02405606582760811, 0.005908414721488953, 0.05001296103000641, 0.05271636322140694, 0.0024552394170314074, 0.012376517988741398, 0.014562473632395267, -0.04583113268017769, 0.013358613476157188, -0.03282100707292557, 0.02369701862335205, 0.001100897672586143, -0.025196563452482224, -0.014794796705245972, -0.009974080137908459, -0.004525032360106707, 0.01949407160282135, 0.00378054054453969, -0.03632698208093643, 0.02794220671057701, 0.06230499595403671, 0.016780108213424683, 0.04502855986356735, 0.026865070685744286, 0.01931454986333847, 0.03003312088549137, -0.04063552990555763, -0.024288389831781387, 0.03429942950606346, 0.024182787165045738, -0.0424518808722496, 0.0021621945779770613, 0.0119541110470891, -0.02359141781926155, 0.002830125391483307, 0.0011061776895076036, 0.05377238243818283, 0.055335287004709244, -0.022662123665213585, -0.03662266582250595, 0.02610473893582821, -0.06230499595403671, 0.010137761943042278, -0.054870638996362686, -0.01934622973203659, -0.03410934656858444, -0.003181250998750329, -0.0435078963637352, 0.029948638752102852, 0.0071175540797412395, 0.019092785194516182, -0.007497719954699278, 0.026801709085702896, -0.02589353546500206, 0.037446361035108566, 0.005549368914216757, 0.019937599077820778, 0.06564201414585114, 0.013358613476157188, -0.050477609038352966, 0.007281236816197634, 0.03476407751441002, -0.008321412838995457, 0.02403494529426098, -0.037742044776678085, -0.005470167379826307, 0.02610473893582821, 0.010576009750366211, 0.016832910478115082, -0.04768972471356392, -0.04591561481356621, -0.03681274875998497, 0.03860797733068466, 0.04811213165521622, -0.06103777885437012, -0.025428887456655502, -0.004292708821594715, -0.033053331077098846, -0.02348581701517105, -0.025048721581697464, -0.03829117491841316, -0.026928430423140526, 0.04967503622174263, 0.011890750378370285, -0.016737867146730423, -0.007344597484916449, -0.05182930827140808, -0.003719819476827979, 0.005324965342879295, -0.05373014137148857, 0.02342245541512966, -0.04600009694695473, -0.006811309140175581, 0.002579321386292577, -0.028618058189749718, -0.022957807406783104, -0.00752412062138319, -0.0564335435628891, 0.03328565135598183, -0.04494408145546913, 0.030856814235448837, 0.059263668954372406, 0.0478164441883564, 0.09335189312696457, 0.039199348539114, 0.10686890780925751, -0.014858158305287361, -0.0004973179893568158, -0.008368933573365211, -0.03905150666832924, -0.013411414809525013, -0.035714492201805115, 0.0003755460202228278, 0.0057341717183589935, -0.007608601823449135, -0.03043440729379654, -0.004522392526268959, -0.01958911307156086, -0.09183122962713242, -0.013654299080371857, 0.005908414721488953, 0.010084961540997028, -0.022070754319429398, -0.022831086069345474, 0.04097345471382141, 0.020444488152861595, 0.044648393988609314, 0.015808572992682457, -0.05791196599602699, -0.03598905727267265, -0.01068689115345478, 0.020919695496559143, 0.011690107174217701, -0.007101713679730892, -0.02988527901470661, -0.01972639560699463, 0.010000480338931084, -0.0016724667511880398, 0.05917918682098389, -0.016822349280118942, 0.027160754427313805, 0.010539048351347446, 0.04046656936407089, 0.005654970649629831, 0.06919022649526596, -0.012249795719981194, -0.0280055683106184, 0.005512408446520567, 0.014815917238593102, -0.027773244306445122, -0.031342580914497375, -0.013379734009504318, 0.026991792023181915, 0.0034558153711259365, 0.007645562291145325, -0.014340709894895554, 0.013664858415722847, 0.0004035964666400105, -0.01767772249877453, 0.006721547804772854, 0.03220851719379425, 0.0037937406450510025, -0.023359093815088272, -0.013326933607459068, -0.012735564261674881, -0.00019651814363896847, -0.004762636497616768, -0.06986607611179352, 0.001556304981932044, 0.008749100379645824, 0.011362741701304913, -0.029631834477186203, -0.014034464955329895, 0.015206643380224705, 0.002036792691797018, 0.007962367497384548, -0.00010518918134039268, 0.008907502517104149, -0.04997071996331215, -0.02631594054400921, 0.026294821873307228, -0.021130898967385292, -0.0027667642571032047, -0.035608891397714615, 0.020666250959038734, 0.011616186238825321, 0.008881102316081524, 0.015354486182332039, 0.005116402171552181, -0.02576681226491928, 0.008300293236970901, 0.03892478346824646, 0.022049633786082268, 0.033602457493543625, -0.0050847213715314865, -0.00863821804523468, 0.015850814059376717, -0.036115776747465134, -0.014245668426156044, -0.004379830323159695, 0.002539720619097352, 0.00759804155677557, -0.021004175767302513, -0.031553786247968674, -0.020961936563253403, 0.03653818368911743, -0.00020905834389850497, -0.01710747368633747, 0.020455047488212585, -0.005417366977781057, -0.03444727137684822, 0.022007392719388008, -0.001516704331152141, 0.008485095575451851, 0.05161810666322708, 0.014446311630308628, 0.015248884446918964, -0.05415254831314087, -0.012629962526261806, -0.010343685746192932, 0.024837518110871315, 0.004633274395018816, 0.00964671466499567, -0.025344405323266983, -0.009240147657692432, 0.015755772590637207, -0.029674075543880463, -0.033496856689453125, 0.008147170767188072, 0.018744301050901413, 0.004007583949714899, -0.00975759606808424, -0.002991167828440666, 0.016378821805119514, 0.004786396864801645, 0.05005520209670067, -0.0607420913875103, 0.03905150666832924, -0.02625258080661297, 0.02169058658182621, -0.016801228746771812, 0.01738203875720501, 0.010591849684715271, 0.012207555584609509, 0.00019371310190763324, -0.026400422677397728, 0.025555608794093132, -0.013253012672066689, 0.031004656106233597, 0.025534488260746002, 0.026632746681571007, 0.016157058998942375, 0.027625402435660362, -0.004715115297585726, -0.033264532685279846, -0.006668746937066317, -0.023000048473477364, -0.016315462067723274, -0.018744301050901413, -0.0142667880281806, -0.006193539127707481, 0.02198627218604088, 0.0014177027624100447, -0.04055104777216911, -0.00860125757753849, -0.03284212574362755, 0.027181874960660934, -0.02804780937731266, 0.026421543210744858, -0.01286228559911251, 0.006811309140175581, 0.04743627831339836, -0.010032160207629204, -0.007212595548480749, -0.00964671466499567, -0.019990399479866028, 0.026696108281612396, -0.008559017442166805, 0.0001938781060744077, 0.016780108213424683, 0.03960063308477402, -0.01761436276137829, 0.006542024668306112, -0.026379302144050598, 0.03419382870197296, 0.03689723089337349, 0.0142667880281806, 0.01409782562404871, 0.002848605625331402, -0.00018760800594463944, 0.01756156049668789, -0.03039216622710228, 0.027055153623223305, -0.028575817123055458, 0.01754044182598591, -0.030899055302143097, -0.04692939296364784, 0.03421494737267494, 0.031300339847803116, -0.005087361671030521, -0.0214899443089962, 0.010370085947215557, -0.0030466087628155947, -0.006172419060021639, 0.012365957722067833, 0.03917822614312172, -0.013210771605372429, -0.019008304923772812, 0.00696443160995841, 0.007270676549524069, -0.037805404514074326, -0.018849901854991913, -0.020993616431951523, -0.04101569578051567, -0.0065948255360126495, 0.01498487964272499, -0.044648393988609314, 0.01517496258020401, -0.009968799538910389, 0.06302309036254883, -0.014319589361548424, -0.026506025344133377, -0.014520232565701008, 0.0340459868311882, -0.010095521807670593, -0.01730811782181263, 0.020243844017386436, -0.03934719040989876, 0.0070013920776546, -0.02783660590648651, 0.01947295106947422, 0.009984639473259449, -0.0015615849988535047, 0.00989487860351801, 0.010533768683671951, 0.012893966399133205, -0.03896702453494072, -0.011225460097193718, -0.001549704815261066, -0.0009207147522829473, 0.04093121737241745, 0.01082417368888855, 0.014625834301114082, -0.07966591417789459, -0.01762492209672928, -0.0034954159054905176, -0.008997264318168163, 0.026590505614876747, 0.014562473632395267, -0.004525032360106707, -0.033306773751974106, 0.0019100705394521356, -0.016326021403074265, -0.012524360790848732, -0.029589593410491943, 0.020032640546560287, -0.035503286868333817, -0.016294341534376144, 0.041944991797208786, 0.0006039096624590456, -0.04726731777191162, 0.03816445171833038, 0.03051888942718506, -0.03666490688920021, 0.007418518885970116, -0.03615801781415939, -0.004419430624693632, -0.011932991445064545, -0.018290212377905846, 0.03062449023127556, 0.015016560442745686, 0.003960063215345144, 0.020032640546560287, 0.030814573168754578, -0.00023859382781665772, 0.014668075367808342, -0.03216627612709999, -0.006193539127707481, 0.001664546667598188, 0.013749340549111366, -0.020317764952778816, -0.022556520998477936, 0.013052369467914104, -0.0108769740909338, -0.024689676240086555, 0.000670570763759315, -0.0032578122336417437, 0.03064561076462269, -0.031068017706274986, 0.009092305786907673, 0.01977919600903988, 0.003991744015365839, -0.02992752008140087, -0.024858638644218445, 0.02844909578561783, -0.009351029992103577, 0.02836461365222931, 0.008590697310864925, 0.011647866107523441, -0.012165314517915249, 0.002245355863124132, 0.015660731121897697, 0.013379734009504318, 0.006314981263130903, -0.0009061945020221174, -0.0038729419466108084, -0.005559929180890322, 0.014319589361548424, 0.0063941823318600655, 0.01302068866789341, 0.013200211338698864, 0.018659818917512894, 0.04566217213869095, 0.03311669081449509, 0.018754860386252403, 0.008743819780647755, -0.030899055302143097, -0.02583017386496067, 0.0014427831629291177, -0.026442663744091988, -0.011352181434631348, -0.0046464744955301285, -0.015460087917745113, 0.033391255885362625, 0.014837037771940231, -0.012175874784588814, -0.007492439821362495, 0.04481735825538635, 0.00011748188262572512, 0.02392934262752533, 0.010486247949302197, 0.03463735431432724, 0.005491287913173437, -0.044225987046957016, -0.014404070563614368, -0.015639610588550568, -0.001510104164481163, -0.03729851916432381, 0.020307205617427826, 0.016389383003115654, 0.014245668426156044, 0.0041131856851279736, -0.004580473527312279, 0.012429319322109222, 0.07523064315319061, -0.031722746789455414, -0.04494408145546913, -0.022704362869262695, 0.03396150469779968, -0.040023040026426315, -0.00293308706022799, 0.014309029094874859, 0.004263668321073055, 0.04790092632174492, 0.026759468019008636, -0.028892623260617256, -0.013242452405393124, 0.02561897039413452, -0.022915566340088844, -0.02838573418557644, 0.009530552662909031, -0.03269428387284279, -0.011373301967978477, 0.001111457822844386, 0.04338117316365242, 0.015407286584377289, -0.026569385081529617, 0.014573032967746258, -0.01912446692585945, -0.00042207675869576633, 0.005559929180890322, 0.009229587391018867, 0.031490422785282135, -0.013443095609545708, -0.016716748476028442, 0.027076274156570435, -0.02346469648182392, -0.0001631051127333194, 0.031236980110406876, 0.024964239448308945, 0.04578889161348343, -0.027202995494008064, 0.02591465413570404, 0.008152450434863567, -0.030920175835490227, 0.059432633221149445, 0.016209859400987625, -0.02129986137151718, -0.025069842115044594, 0.04997071996331215, -0.0058186533860862255, 0.017931167036294937, -0.009931839071214199, -0.013992223888635635, 0.03045552782714367, -0.04376133903861046, 0.013379734009504318, -0.006119618192315102, -0.03903038427233696, 0.013865501619875431, -0.022281955927610397, -0.0033528537023812532, -0.006615946069359779, 0.02589353546500206, 0.0036221379414200783, -0.01707579381763935, 0.012534921057522297, -0.01190131064504385, 0.0017741083865985274, 0.01095089502632618, 0.03953727334737778, -0.015365046449005604, 0.03508088365197182, -0.03957951441407204, -0.0480276495218277, -0.027097394689917564, 0.012598281726241112, 0.014900398440659046, 0.025323284789919853, 0.033686939626932144, -0.00024931898224167526, -0.010813613422214985, 0.011404982767999172, 0.013295252807438374, -0.03493303805589676, -0.02346469648182392, -0.015523448586463928, 0.04133250191807747, 0.03191282972693443, -0.026506025344133377, 0.027266357094049454, 0.04164930805563927, 0.01710747368633747, -0.0063836220651865005, 0.010032160207629204, -0.012513800524175167, -0.0018269092543050647, -0.04946383088827133, -0.01964191533625126, 0.008833581581711769, -0.0191772673279047, 0.0025780012365430593, -0.022619882598519325, 0.028702540323138237, -0.04095233604311943, -0.012239236384630203, -0.0217539481818676, -0.026463784277439117, 0.019958719611167908, -0.026379302144050598, 0.0007048912812024355, 0.006689867004752159, -0.010554889217019081, -0.00014784236554987729, 0.041797149926424026, 0.029821917414665222, -0.04177602753043175, 0.04300100728869438, 0.013495896011590958, 0.03267316147685051, 0.03265204280614853, 0.0011523785069584846, -0.028787020593881607, -0.003975903615355492, -0.008199971169233322, -0.007862046360969543, -0.03406710550189018, 0.003799020778387785, -0.025492249056696892, -0.02804780937731266, -0.008268612436950207, 0.026907311752438545, -0.008205251768231392, 0.009615033864974976, 0.006188258994370699, -0.00873854011297226, -0.004055105149745941, 0.0016421063337475061, 0.013717659749090672, -0.04038208723068237, 0.06331877410411835, -0.020455047488212585, -0.006890510208904743, -0.007223155815154314, -0.035967934876680374, -0.011088177561759949, 0.033665820956230164, 0.007323477417230606, -0.007814524695277214, -0.005354005843400955, 0.003350213635712862, 0.004300628788769245, -0.014034464955329895, -0.013495896011590958, -0.0037224595434963703, 0.02999087981879711, 0.03932606801390648, -0.00972591619938612, 0.0006207399419508874, 0.0028142849914729595, 0.018902702257037163, 0.026463784277439117, 0.05022416263818741, -0.048576779663562775, 0.05879902094602585, 0.014910958707332611, -0.02819565124809742, -0.009329909458756447, 0.01182738970965147, 0.02367589995265007, -0.007904286496341228, 0.00014289228420238942, 0.04773196578025818, 0.031553786247968674, -0.022535400465130806, -0.005002880003303289, 0.010111361742019653, -0.0011451183818280697, 0.035524409264326096, 0.004725675564259291, 0.016811789944767952, -0.013263572007417679, -0.004657034762203693, 0.0005689291283488274, 0.006109057925641537, 0.022957807406783104, 0.022831086069345474, -0.0014942638808861375, -0.007186194881796837, -0.008252772502601147, 0.01927230879664421, -0.0239082220941782, 0.015977535396814346, 0.04169154912233353, -0.005113761872053146, -0.00601929659023881, 0.01190131064504385, 0.0004976479685865343, 0.005950655322521925, -0.025217683985829353, 0.007635002490133047, 0.022260837256908417, -0.02392934262752533, 0.035545527935028076, 0.009651994332671165, -0.02811117097735405, -0.005179762840270996, -0.006800748873502016, 0.002550280885770917, -0.016104258596897125, 0.02169058658182621, -0.011320501565933228, -0.004456391558051109, 0.025027601048350334, -0.02809005044400692, -0.037636443972587585, -0.00987375807017088, -0.029146065935492516, -0.0342571884393692, 0.022049633786082268, -0.01521720364689827, 0.015523448586463928, 0.026780588552355766, -0.007381558418273926, 0.007318197283893824, -0.02350693568587303, 0.04129026085138321, 0.04181826859712601, 0.030962415039539337, 0.023401334881782532, -0.020148802548646927, 0.011088177561759949, 0.04154370352625847, 0.046464744955301285, 0.03434167057275772, 0.0478164441883564, 0.0055229682475328445, -0.01725531555712223, -0.04811213165521622, -0.0025582010857760906, 0.01066577062010765, -0.007334037683904171, -0.03486967831850052, -0.00043164691305719316, -0.014910958707332611, 0.015829693526029587, 0.002637402154505253, 0.010164163075387478, -0.0026994431391358376, -0.01902942545711994, -0.006214659661054611, 0.02382374182343483, -0.044352710247039795, -0.024267269298434258, -0.01923006772994995, -0.01747708022594452, 0.0011662386823445559, -0.02597801573574543, -0.008331973105669022, -0.018775980919599533, 0.01752988062798977, -0.0387769415974617, -0.018628139048814774, 0.002036792691797018, 0.04709835350513458, -0.018765419721603394, -0.044479433447122574, 0.0022136755287647247, -0.005628569982945919, 0.011320501565933228, -0.0212259404361248, 0.007893726229667664, 0.0006758508388884366, 0.02781548537313938, 0.00646282359957695, 0.003938943147659302, -0.031490422785282135, -0.016505545005202293, 0.010222244076430798, -0.011552824638783932, 0.006658186670392752, 0.0004035964666400105, -0.001069217105396092, 0.026421543210744858, -0.020719051361083984, -0.017899487167596817, 0.010486247949302197, -0.008326693437993526, -0.005045120604336262, 0.011500024236738682, 0.007508280221372843, 0.024731915444135666, -0.005208803340792656, 0.023021169006824493, 0.002345677465200424, -0.015903614461421967, 0.02359141781926155, -0.01519608311355114, 0.03417270630598068, -0.01956799253821373, 0.003400374436751008, 0.003550856839865446, -0.011098737828433514, -0.006225219927728176, 0.04937935248017311, -0.031215859577059746, -0.04059328883886337, -0.012703883461654186, 0.004979119636118412, -0.0051850429736077785, 0.0005431887111626565, 0.01762492209672928, 0.029061585664749146, -0.011721787974238396, 0.020117122679948807, -0.005850333720445633, -0.029526233673095703, 0.0004953379393555224, 0.02844909578561783, -0.029315030202269554, 0.01199635211378336, -0.02135266177356243, -0.016832910478115082, -0.013675418682396412, 0.008120769634842873, -0.0007794724660925567, 0.008786060847342014, 0.03290548548102379, -0.012123074382543564, 0.014298468828201294, -0.03632698208093643, -0.04162818565964699, -0.005464887712150812, -0.028470216318964958, 0.007154514547437429, 0.0018995103891938925, 0.02621033973991871, 0.0009741755784489214, 0.021194258704781532, 0.013495896011590958, 0.006895790342241526, 0.04709835350513458, 0.0031548505648970604, 0.016114817932248116, -0.031131379306316376, -0.00533552560955286, 0.004979119636118412, 0.06205155327916145, 0.0033079730346798897, -0.02160610631108284, 0.013696539215743542, 0.06129122152924538, -0.018638698384165764, 0.008891662582755089, 0.023105649277567863, -0.006309701129794121, 0.0025991215370595455, -0.00652090460062027, 8.959643309935927e-05, 0.015988096594810486, 0.003532376606017351, 0.014245668426156044, -0.02785772643983364, -0.011521144770085812, 0.007576921489089727, 0.03681274875998497, 0.013590937480330467, 0.019061105325818062, -0.02401382476091385, 0.022598762065172195, -0.022767724469304085, -0.007471319753676653, -0.02344357594847679, -0.029547352343797684, 0.01705467328429222, -0.01704411208629608, 0.01294676773250103, 0.016442183405160904, 0.003120529931038618, -0.027540920302271843, -0.018269091844558716, 0.01720251515507698, -0.0009754956117831171, -0.02992752008140087, 0.01961023360490799, 0.027393078431487083, 0.02371813915669918, 0.01748763956129551, 0.01704411208629608, 0.0018533096881583333, -0.016949070617556572, 0.00646282359957695, 0.010792492888867855, -0.04490184038877487, 0.0027456439565867186, 0.007782844826579094, -0.014594153501093388, 0.03482743725180626, 0.005243123974651098, -0.015491767786443233, -0.02141602337360382, 0.0015919455327093601, 0.00430326908826828, -0.011457783170044422, -0.023359093815088272, 0.027540920302271843, -0.000767592282500118, 0.009593913331627846, -0.013316373340785503, -0.018374694511294365, 0.011690107174217701, 0.015343925915658474, 0.001240819925442338, 0.005148082505911589, 0.012608841992914677, -0.022408679127693176, -0.018543656915426254, 0.013654299080371857, 0.008479815907776356, -0.01761436276137829, 0.020687371492385864, 0.016262659803032875, 0.002851245691999793, -0.035376567393541336, 0.01713915355503559, -0.033940382301807404, 0.0096414340659976, -0.0019562712404876947, -0.021257620304822922, 0.020476168021559715, 0.03518648445606232, 0.0002395838382653892, 0.0038227811455726624, 0.000878474093042314, 0.006151298526674509, 0.018226852640509605, 0.028702540323138237, -0.0106129702180624, -0.006879950407892466, 0.0019127106061205268, 0.018934383988380432, 0.005581049248576164, -0.01746651902794838, -0.012260355986654758, -0.059390392154455185, -0.010143042542040348, -0.019039984792470932, -0.012165314517915249, -0.0037541401106864214, -0.0004154766502324492, 0.020180482417345047, 0.0029251668602228165, -0.021141458302736282, 0.009123985655605793, -0.0018863101722672582, -0.003413574770092964, -0.01297844760119915, -0.007112273946404457, 0.007260116282850504, 0.013179090805351734, -0.04116353765130043, -0.04171266779303551, -0.011478903703391552, 0.012292036786675453, -0.037720922380685806, -0.007413238752633333, -0.0171285942196846, 0.026506025344133377, -0.03463735431432724, 0.02166946791112423, 0.009308788925409317, -0.0041976673528552055, -0.02568233199417591, -0.005929534789174795, 0.018839342519640923, -0.001044136704877019, 0.0012751404428854585, -0.007529400754719973, 0.0020684730261564255, -0.0031733307987451553, 0.03413046523928642, 0.004691354930400848, -0.00765612255781889, -0.003991744015365839, -0.011214899830520153, -0.0119541110470891, -0.009145106188952923, -0.019831998273730278, 0.014604713767766953, -0.00702251261100173, -0.024605194106698036, -0.004715115297585726, 0.0002372737944824621, -0.005192962940782309, 0.001126638031564653, 0.03275764361023903, 0.01955743320286274, 0.0025054002180695534, -0.0037250996101647615, -0.009578073397278786, 0.0024737196508795023, 0.010660490952432156, -0.009636154398322105, -0.0010731772053986788, -0.0034848558716475964, 0.0141611872240901, 0.003944223280996084, 0.005454327445477247, 0.015343925915658474, -0.00850621610879898, -0.008532616309821606, 0.0011998992413282394, 0.009219028055667877, 0.01295732706785202, 0.022662123665213585, -0.014287908561527729, -0.03960063308477402, -0.011225460097193718, -0.025513367727398872, 0.0027535641565918922, 0.027456440031528473, -0.027181874960660934, 0.0065948255360126495, 0.01982143707573414, 0.018649259582161903, -0.03419382870197296, 0.007635002490133047, 0.01956799253821373, -0.006140738260000944, -0.005501848179847002, -0.023126769810914993, -0.025259925052523613, -0.01741371862590313, -0.017973408102989197, -0.013590937480330467, 0.042304039001464844, -0.007925407029688358, 0.020771851763129234, -0.01286228559911251, 0.027287477627396584, -0.016505545005202293, 0.006278020329773426, -0.0437191016972065, -0.016473863273859024, -0.006066817324608564, -0.001685666968114674, -0.004680795129388571, 0.01974751614034176, -0.008263332769274712, -0.002779964590445161, -0.015724092721939087, 0.012524360790848732, -0.018237411975860596, -0.013062928803265095, -0.026463784277439117, 0.03267316147685051, 0.025492249056696892, 0.010591849684715271, -0.023274613544344902, 0.020180482417345047, 0.006151298526674509, 0.025006480515003204, -0.0008415134507231414, 0.02804780937731266, 0.005082081537693739, -0.00012111193791497499, -0.03189171105623245, 0.0065948255360126495, 0.003561417106539011, 0.006140738260000944, -0.029716316610574722, 0.002919886726886034, 0.03955839201807976, -0.012313157320022583, 0.01076081208884716, 0.022704362869262695, -0.05465943366289139, 0.0021714346949011087, 0.02836461365222931, -0.0008124730084091425, -0.009826237335801125, -0.026611626148223877, 0.0027614841237664223, -0.0056074499152600765, 0.013326933607459068, -0.021109778434038162, -0.005256324075162411, -0.016769548878073692, -0.03271540254354477, -0.013390294276177883, -0.02354917675256729, 0.031046897172927856, -0.013348054140806198, -0.008073248900473118, -0.02134210243821144, 0.00018265792459715158, -0.044099267572164536, 0.028977103531360626, -0.0150799211114645, -0.021215379238128662, -0.031363703310489655, 0.03318005055189133, -0.020307205617427826, 0.023190131410956383, -0.01286228559911251, -0.02395046316087246, -0.02414054609835148, -0.0008626338094472885, -0.026548264548182487, 0.03241971880197525, 0.013580377213656902, 0.027540920302271843, 0.041923873126506805, 0.008907502517104149, -0.00539360661059618, -0.05161810666322708, 0.03852349519729614, -0.022387558594346046, -0.025154322385787964, -0.03174386918544769, -0.0239082220941782, -0.02828013338148594, -0.01718139462172985, -0.006446983199566603, 0.012281476520001888, -0.004501271992921829, -0.0042082276195287704, 0.02990639954805374, 0.005301204975694418, 0.018807660788297653, -0.002525200368836522, 0.013348054140806198, 0.017793884500861168, 0.024900879710912704, 0.013253012672066689, 0.028618058189749718, -0.015829693526029587, 0.02781548537313938, 0.011088177561759949, 0.028702540323138237, 0.0017543081194162369, -0.007175635080784559, -0.021056978031992912, 0.008089089766144753, -0.00540152657777071, -0.02126818150281906, 0.005427926778793335, -0.006821869406849146, 0.008247491903603077, 0.034785196185112, 0.01939903013408184, 0.0004699275305029005, -0.002769404323771596, 0.006378341931849718, -0.01945183239877224, 0.009382709860801697, -0.0008019128581508994, -0.009995199739933014, 0.005596889648586512, 0.014351270161569118, -0.007840925827622414, 0.004129026085138321, -0.020433926954865456, -0.037868767976760864, 0.00655786506831646, 0.007101713679730892, 0.027329716831445694, 0.007138674147427082, 0.028596937656402588, -0.01974751614034176, -0.024393990635871887, 0.03731963783502579, -0.027667643502354622, 0.0033053329680114985, -0.00879134051501751, -0.03495416045188904, -0.030708972364664078, 0.024668555706739426, 0.0001315896079177037, 0.029526233673095703, -0.06433255225419998, -0.021035857498645782, -0.0029568474274128675, -0.003059809096157551, -0.020169923081994057, 0.009905438870191574, -0.016632266342639923, -0.009134545922279358, 0.001725267618894577, 0.0026743628550320864, 0.02405606582760811, -0.013348054140806198, 0.04285316541790962, -0.00017572780780028552, 0.031384821981191635, -0.019831998273730278, -0.004382470156997442, 0.03839677572250366, -0.0030466087628155947, 0.0030413286294788122, 0.01924062892794609, 0.01417174655944109, 2.99067295372879e-07, 0.029568472877144814, -0.005755292251706123, 0.00854317657649517, -0.015935294330120087, -0.012175874784588814, 0.007687802892178297, -0.001756948186084628, 0.011373301967978477, 0.05567321181297302, -0.016283780336380005, -0.011098737828433514, -0.012133634649217129, 0.018934383988380432, 0.03239860013127327, -0.02357029728591442, -0.01931454986333847, -0.005324965342879295, 0.00851149670779705, 0.0283223744481802, -0.02373925969004631, -0.005834493320435286, -0.0003428754862397909, -0.017719963565468788, 0.016621707007288933, 0.003999663982540369, -0.04832333326339722, 0.02371813915669918, -0.013559257611632347, 0.014784236438572407, -0.005253684241324663, -0.004818077199161053, -0.022915566340088844, 0.006304420996457338], [0.033607568591833115, 0.00970909371972084, 0.04070225730538368, 0.005451195407658815, -0.0634399801492691, 0.0037751561030745506, 0.028378760442137718, -0.012703183107078075, 0.026295915246009827, 0.023909322917461395, -0.05641037970781326, 0.03781665116548538, -0.058493223041296005, -0.006557706743478775, 0.007468951400369406, 0.03291328623890877, -0.017574002966284752, 0.02323673665523529, -0.011412253603339195, -0.019982291385531425, 0.036796923726797104, 0.049597740173339844, -0.018821539357304573, 0.013050324283540249, -0.0038673654198646545, -0.021002018824219704, 0.02343200333416462, 0.005955634173005819, 0.03523479029536247, -0.04886006563901901, 0.00710011413320899, -0.01744382455945015, 0.03358587250113487, -0.029203219339251518, 0.06040249764919281, 0.013505946844816208, -0.01083730161190033, 0.024646997451782227, 0.028660811483860016, 0.01702074706554413, -0.06105338782072067, 0.017508914694190025, -0.006498041562736034, -0.022781115025281906, 0.01244282815605402, 0.03540836274623871, 0.049727920442819595, -0.03043990768492222, -0.016250528395175934, 0.03388962149620056, 0.00867309607565403, -0.0207416620105505, 0.037122368812561035, 0.011433949694037437, 0.02107795514166355, 0.017834357917308807, 0.010940358974039555, 0.014981294982135296, 0.022477366030216217, -0.0022564150858670473, -0.03592907264828682, 0.011824483051896095, -0.026773234829306602, 0.02848724089562893, -0.00887921079993248, -0.029355093836784363, 0.016076957806944847, 0.03838075324892998, -0.04417366534471512, 0.031741686165332794, -0.00732792541384697, 0.001399411354213953, -0.009795879013836384, -0.04573579877614975, 0.000182045521796681, 0.027011893689632416, 0.03532157465815544, 0.031850166618824005, 0.04109279066324234, 0.007637097500264645, -0.05389360710978508, 0.0021533577237278223, -0.026252523064613342, 0.02955036051571369, -0.01705329120159149, 0.009616885334253311, -0.026382699608802795, 0.03057008609175682, -0.03250105679035187, 0.001975719351321459, -0.021934958174824715, -0.029463574290275574, 0.01580575481057167, 0.05697448179125786, -0.007756427396088839, -0.024646997451782227, 0.024104589596390724, -0.00969824567437172, -0.03202373906970024, 0.08222897350788116, 0.010658307000994682, 0.03792513161897659, 0.0005749519332312047, 0.01693396270275116, 0.02301977388560772, -0.07645776122808456, -0.02955036051571369, 0.011021720245480537, 0.03321703523397446, -0.01589253917336464, -0.01532843615859747, 0.01569727249443531, -0.03838075324892998, 0.0714242160320282, 0.00866767205297947, -0.006492617540061474, 0.010544401593506336, 0.014536520466208458, 0.04263322800397873, -0.01942903734743595, 0.018148954957723618, -0.0042687468230724335, -0.005559676792472601, -0.1096097081899643, -0.003132403362542391, 0.03024464100599289, -0.03644978255033493, -0.0054159387946128845, -0.02271602675318718, -0.019027654081583023, 0.032284095883369446, -0.033520784229040146, 0.009459586814045906, -0.009898936375975609, -0.009616885334253311, -0.021848173812031746, -0.005264064762741327, -0.022368885576725006, -0.01683632843196392, -0.03425845876336098, 0.023280128836631775, -0.012844209559261799, 0.022564152255654335, -0.018767299130558968, -0.03321703523397446, 0.004271458834409714, -0.028357064351439476, 0.06495872139930725, 0.0010197260417044163, 0.018192347139120102, -0.06495872139930725, 0.044954732060432434, -0.0030239217448979616, 0.002937136683613062, -0.0015784058487042785, -0.0035853134468197823, 0.002152001718059182, 0.022889595478773117, 0.012605549767613411, 0.014688394963741302, -0.0022604833357036114, -0.026057256385684013, 0.011748546734452248, -0.007859484292566776, 0.05155040696263313, 0.014796876348555088, -0.008488677442073822, 0.001779096550308168, -0.04141823574900627, -0.01733534410595894, -0.013147957623004913, 0.004995572846382856, 0.004602327477186918, -0.05463128164410591, -0.007127234246581793, -0.026621360331773758, 0.02469038963317871, -0.009926057420670986, 0.008564614690840244, -0.05007506161928177, -0.006074964068830013, -0.03362926468253136, -0.04048529639840126, -0.037751562893390656, -0.005868848878890276, 0.03569041192531586, -0.013451705686748028, -0.0030835866928100586, 0.00554882874712348, -0.004027375485748053, 0.00950297899544239, 0.004813866689801216, 0.015469461679458618, 0.019591758027672768, -0.007778123486787081, 0.008982268162071705, -0.028834382072091103, 8.314089791383594e-05, 0.004526390694081783, -0.00645464938133955, 0.03469238430261612, -0.06864709407091141, 0.012952690944075584, 0.015436917543411255, -0.09164517372846603, -0.039075035601854324, 0.024842264130711555, 0.028790989890694618, 0.03486595302820206, -0.005933938082307577, -0.00046443642349913716, -0.019157832488417625, -0.054674673825502396, 0.004097888711839914, -0.06183445453643799, 0.008721912279725075, 0.0006000382709316909, 0.0008136112592183053, -0.025992166250944138, 0.03130776062607765, 0.01807301864027977, -0.0270552858710289, 0.013484250754117966, -0.005364410113543272, -0.02725055254995823, -0.034844256937503815, -0.018138106912374496, -0.026057256385684013, -0.014037505723536015, -0.06968851387500763, -0.03213221952319145, 0.030005982145667076, -0.014080898836255074, -0.012084838934242725, -0.02280281111598015, 0.016575973480939865, -0.02414798177778721, -0.012779120355844498, -0.01744382455945015, 0.019570061936974525, 0.008787001483142376, 0.018441854044795036, -0.0013166941935196519, 0.008532069623470306, -0.022043440490961075, -0.017183469608426094, -0.003731763456016779, 0.011070537380874157, 0.026577968150377274, 0.021772237494587898, 0.014080898836255074, -0.05059577152132988, 0.038576021790504456, -0.04690739884972572, 0.03358587250113487, -0.025146011263132095, 0.03161150962114334, 0.0015878978883847594, 0.03369435295462608, -0.02158781886100769, -0.02538467012345791, -0.020275192335247993, -0.003815836738795042, 0.0011838043574243784, -0.04213421419262886, -0.02105625905096531, 0.05319932848215103, -0.02972393110394478, 0.01694481074810028, 0.05046559497714043, -0.03449711576104164, 0.013636124320328236, 0.0033439421094954014, -0.046820614486932755, -0.014319557696580887, 0.013006932102143764, -0.00846155732870102, -0.027402427047491074, -0.00029866312979720533, 0.012117383070290089, -0.04007306694984436, -0.014699243009090424, 0.010625762864947319, -0.007365893572568893, 0.00799508672207594, 0.004992860835045576, -0.0003303600533399731, 0.008683944121003151, -0.00111057935282588, 0.01879984326660633, 0.05098630487918854, 0.005879697389900684, 0.00021103041945025325, -0.0200473815202713, 0.0025764356832951307, 0.0013600868405774236, -0.003387334756553173, 0.043219029903411865, 0.02384423278272152, -0.053025756031274796, -0.014710091054439545, 0.038988251239061356, 0.019266314804553986, 0.03955235332250595, -0.037621382623910904, 0.017617395147681236, 0.026881715282797813, 0.027836352586746216, -0.04130975529551506, 0.005445771384984255, 0.006481769494712353, 0.01980872079730034, -0.047558289021253586, -0.01110308151692152, -0.04070225730538368, 0.009399921633303165, -0.013831390999257565, 0.032002042979002, 0.014156835153698921, 0.002470666076987982, 0.03106910176575184, 0.03399810194969177, 0.07177136093378067, -0.024386640638113022, 0.0574084110558033, -0.01681463234126568, 0.011216986924409866, 0.03137284889817238, -0.05076934024691582, 0.01358188409358263, -0.02456021122634411, 0.004114160779863596, 0.013712061569094658, -0.0068343342281877995, -0.0059013934805989265, 0.008087296038866043, -0.003200204111635685, 0.027402427047491074, -0.04625651240348816, 0.018680514767766, -0.024863960221409798, -0.020394522696733475, 0.01238858699798584, 0.007908301427960396, 0.01984126679599285, 0.02375744841992855, 0.0033330940641462803, 0.054370928555727005, 0.03916181996464729, 0.03421506658196449, 0.029767323285341263, -0.004247050732374191, -0.018322525545954704, -0.013592732138931751, -0.05745180323719978, -0.024842264130711555, 0.01104884035885334, -0.03202373906970024, -0.020513851195573807, -0.006422104779630899, -0.006617371458560228, -0.006373288109898567, 0.02499413676559925, 0.03096061944961548, -0.049727920442819595, 0.011987205594778061, 0.009481282904744148, -0.020264344289898872, -0.0032788533717393875, -0.0447811633348465, 0.03779495507478714, 0.020730813965201378, -0.03707897663116455, -0.04235117882490158, -0.0007905589300207794, -0.005657310131937265, 0.01612034998834133, 0.04543205350637436, -0.03126436844468117, -0.032587841153144836, 0.03562532365322113, 0.012095686979591846, 0.016478339210152626, 0.044954732060432434, 0.07342027872800827, 0.05853661522269249, -0.03905333951115608, 0.009237200021743774, 0.030526693910360336, 0.003330382052809, -0.050856128334999084, 0.04790543019771576, -0.020785056054592133, -0.005999026820063591, -0.019982291385531425, 0.007696762215346098, 0.06721513718366623, 0.030071072280406952, -0.017064139246940613, -0.04018154740333557, 0.01815980300307274, 0.0026333883870393038, -0.0013377125142142177, -0.10015012323856354, 0.041439931839704514, 0.012106535024940968, 0.009242624044418335, 0.006997056771069765, 0.02345369942486286, -0.04159180819988251, 0.007257412187755108, -0.013245590962469578, 0.009926057420670986, -0.023410307243466377, -0.008776153437793255, 0.004162977449595928, 0.009193806909024715, 0.02861741930246353, 0.010191836394369602, 0.016977354884147644, 0.021034562960267067, -0.008277138695120811, -0.043718043714761734, 0.005532556213438511, -0.013646972365677357, 0.016771240159869194, -0.008776153437793255, 0.04677722230553627, 0.02592707797884941, -0.06882066279649734, -0.02889947220683098, 0.008803273551166058, 0.04120127484202385, -0.0019323267042636871, -0.04252474755048752, -0.005234232172369957, 0.007967965677380562, -0.043132245540618896, -0.0025859277229756117, -0.011911268346011639, -0.040116459131240845, -0.015729816630482674, 5.3223735449137166e-05, 0.018420157954096794, -0.01532843615859747, -0.003341230098158121, -0.03879298269748688, 0.03336890786886215, 0.03026633895933628, -0.004789458122104406, -0.04326242208480835, 0.002379812765866518, -0.054370928555727005, -0.027228856459259987, -0.02562333084642887, 0.005825456697493792, -0.005215248093008995, -0.05636698752641678, 0.03291328623890877, -0.05285218730568886, 0.07151100039482117, 0.0716845765709877, 0.0033358060754835606, 0.032067131251096725, 0.019483277574181557, 0.04263322800397873, 0.03163320571184158, -0.010473888367414474, -0.015925083309412003, -0.01610950194299221, -0.019678544253110886, -0.020828448235988617, 0.031025709584355354, -0.005009133368730545, 0.04842614009976387, -0.003962286747992039, -0.002278111409395933, -0.015610488131642342, -0.037209153175354004, 0.005716974847018719, 0.03187186270952225, 0.021956656128168106, -0.013126261532306671, -0.051159873604774475, 0.026295915246009827, 0.04400009661912918, 0.07359384745359421, -0.02012331783771515, -0.0390099473297596, -0.040528688579797745, -0.04612633213400841, -0.03334721177816391, 0.029463574290275574, -0.007544888183474541, -0.019548365846276283, -0.010495585389435291, -0.0055461167357862, 0.021446792408823967, 0.011227834969758987, 0.003677522763609886, 0.04525848105549812, -0.0005118970875628293, 0.0013478826731443405, -0.023106560111045837, 0.055195387452840805, -0.0278797447681427, -0.015469461679458618, 0.010940358974039555, 0.010338286869227886, -0.03367265686392784, -0.052808795124292374, -0.0031785080209374428, 0.03449711576104164, -0.026773234829306602, 0.002001483691856265, -0.048599712550640106, -0.0011431238381192088, 0.03273971751332283, -0.0005105410818941891, -0.011444797739386559, 0.008835817687213421, 0.004727081395685673, -0.0047542015090584755, -0.04007306694984436, -0.008998540230095387, 0.0012183828512206674, 0.011065112426877022, -0.05393700301647186, 0.008060174994170666, -0.040007974952459335, -0.0211538914591074, -0.06196463108062744, -0.047948822379112244, 0.0036693867295980453, 0.027858048677444458, -0.019971443340182304, 0.012431980110704899, 0.03250105679035187, 0.016890568658709526, -0.02035112865269184, 0.012583853676915169, 0.0009492131066508591, 0.03642808645963669, -0.019363947212696075, 0.019353099167346954, 0.005570524837821722, 0.01785605400800705, 0.028053315356373787, 0.019016806036233902, 0.0022374310065060854, 0.025146011263132095, 0.018148954957723618, 0.0388580746948719, -0.010669155046343803, 0.005999026820063591, -0.011477342806756496, 0.019494125619530678, 0.013028628192842007, -0.0003269700100645423, 0.020090773701667786, 0.008580886758863926, 0.009991145692765713, -0.005820032209157944, -0.006074964068830013, 0.015577943064272404, 0.023714056238532066, -0.02179393358528614, 0.006953664124011993, 0.04029002785682678, -0.011889572255313396, -0.026990197598934174, 0.0499882735311985, 0.013354072347283363, -0.042915280908346176, 0.01712922938168049, 0.0014468720182776451, 0.03881467878818512, -0.03438863530755043, -0.007713034749031067, 0.019743632525205612, 0.021511880680918694, 0.033607568591833115, -0.0035636171232908964, -0.052201297134160995, -0.027923136949539185, 0.029398486018180847, 0.010468464344739914, -0.03139454498887062, 0.016283072531223297, 0.0352998785674572, -0.018355069682002068, -0.03250105679035187, 0.017812661826610565, -0.010126748122274876, 0.002070640679448843, 0.05207112058997154, -0.034648992121219635, 0.0022821794264018536, -0.048903461545705795, 0.05398039519786835, 0.02106710709631443, -0.02458190731704235, -0.009638581424951553, 0.013213046826422215, -0.039812710136175156, -0.02403949946165085, -0.004122296813875437, -0.021815629675984383, 0.0017153637018054724, 0.021869869902729988, 0.04608293995261192, 0.008499525487422943, -0.0009220927604474127, -0.02725055254995823, -0.03130776062607765, -0.014547369442880154, -0.028248582035303116, -0.03957404941320419, -0.025254493579268456, -0.015762362629175186, -0.01756315492093563, 0.021566122770309448, -0.021414248272776604, 0.0003344281285535544, 0.00017543492140248418, -0.012757424265146255, -0.016760392114520073, -0.025666723027825356, 0.020492155104875565, -0.017324496060609818, 0.0006319047533906996, 0.04864310473203659, 0.0007336061098612845, -0.03781665116548538, -0.02209768071770668, 0.016152895987033844, 0.025211099535226822, -0.019071048125624657, 0.0022957397159188986, -0.0035310727544128895, 0.03738272562623024, 0.001849609543569386, 0.020188406109809875, -0.05441432073712349, 0.03998627886176109, -0.019439885392785072, -0.026295915246009827, -0.0044179088436067104, -0.003132403362542391, -0.0026998333632946014, 0.0013505946844816208, 0.005906817503273487, -0.02208683267235756, -0.024907352402806282, 0.0014414478791877627, 0.0052396561950445175, -0.005196264013648033, 0.03408488631248474, 0.01962430402636528, 0.0018862220458686352, -0.003943302668631077, -0.006785517558455467, 0.0030103616882115602, -0.01808386668562889, 0.04441232606768608, 0.02779296040534973, 0.009101597592234612, -0.013440857641398907, 0.009519251063466072, -0.015360980294644833, 0.0069916327483952045, -0.005613917484879494, 0.0011356656905263662, -0.022564152255654335, 0.002047588350251317, -0.005453907418996096, -0.03321703523397446, 0.027185464277863503, -0.008494101464748383, 0.057581979781389236, -0.013809694908559322, 0.006259382702410221, -0.015567095018923283, 0.03501782938838005, -0.0033466543536633253, 0.008228321559727192, 0.0047080968506634235, 0.0021330174058675766, 0.004030087497085333, -0.022347189486026764, 0.014102594926953316, 0.010191836394369602, -0.010734244249761105, -0.02014501392841339, -0.0021465776953846216, 0.032566145062446594, -0.008081872016191483, 0.0020977610256522894, -0.031741686165332794, 0.018116410821676254, 0.008380196057260036, 0.015371828339993954, -0.04087582975625992, -0.06257212907075882, -0.01135801337659359, -0.018919173628091812, 0.009231775999069214, 0.003029345767572522, 0.0472545400261879, 0.014395494945347309, -0.03623282164335251, 0.004661992192268372, -0.03788173943758011, -0.030288035050034523, -0.03627621382474899, 0.00441519683226943, 0.009340257383883, -0.009741638787090778, 0.018680514767766, 0.016391554847359657, -0.05471806973218918, 0.0032300367020070553, -0.039183516055345535, -0.0035554810892790556, 0.018680514767766, 0.009920633397996426, -0.02189156599342823, 0.0037887163925915956, -0.010180988349020481, 0.01900595799088478, 0.04200403764843941, 0.0034605597611516714, 0.006042419467121363, 0.018018776550889015, 0.020578939467668533, -0.007224868051707745, -0.018756451085209846, 0.0018075730185955763, 0.006161749362945557, 0.0002845944254659116, 0.01919037662446499, -0.031112493947148323, -0.010723396204411983, -0.04315394163131714, 0.013712061569094658, -0.008071023970842361, -0.011585824191570282, 0.0044721500016748905, -0.020839296281337738, -0.011059688404202461, 0.019787024706602097, 0.0049576046876609325, -0.02642609365284443, -0.007013328839093447, 0.037230849266052246, -0.027619389817118645, 0.0024543940089643, 0.03345569595694542, 0.02239058166742325, 0.012464524246752262, 0.0007017396856099367, -0.020405370742082596, 0.006275654770433903, 0.04556223005056381, -0.004184674005955458, -0.0014482280239462852, -0.024386640638113022, 0.00464300811290741, 0.01378799881786108, 0.0030673143919557333, -0.01808386668562889, 0.017074987292289734, 0.012464524246752262, 0.015436917543411255, 0.012106535024940968, 0.03666674718260765, -0.025753507390618324, -0.04018154740333557, -0.028856078162789345, -0.040940918028354645, 0.031546421349048615, -0.01890832558274269, 0.03239257633686066, 0.024733781814575195, -0.0031242670956999063, 0.00510947871953249, 0.003227324690669775, 0.007685914169996977, 0.022542456164956093, 0.0066282195039093494, -0.020090773701667786, 0.013777150772511959, -0.008814121596515179, -0.022347189486026764, -0.009470434859395027, -0.025645026937127113, 0.001594678033143282, -0.02820518985390663, 0.032891590148210526, 0.009562644176185131, -0.021338310092687607, -0.025992166250944138, -0.0031378273852169514, 0.03738272562623024, 0.03098231554031372, 0.013006932102143764, -0.040441904217004776, -0.025970470160245895, 0.03145963326096535, -0.014688394963741302, 0.021251525729894638, 0.015925083309412003, -0.011889572255313396, 0.017064139246940613, 0.02694680355489254, -0.05701787397265434, -0.037946827709674835, 0.04178707301616669, 0.007984238676726818, -0.04695079103112221, 0.03130776062607765, 0.012540461495518684, 0.022477366030216217, -0.016684453934431076, 0.03503952547907829, 0.035798896104097366, -0.057148054242134094, -0.0006420748541131616, 0.013191349804401398, -0.009719942696392536, 0.0011885503772646189, 0.0011939745163545012, 0.003246308770030737, -0.00423620268702507, 0.023063166067004204, 0.03881467878818512, -0.007382166106253862, 0.004360956139862537, -0.01223671343177557, 0.010728820227086544, 0.07259581983089447, -0.025861989706754684, -0.0045019821263849735, -0.001156684011220932, 0.0038809257093816996, 0.003352078376337886, 0.010549825616180897, -0.020568091422319412, -0.021642059087753296, 0.027185464277863503, -0.0034768320620059967, 0.010148444212973118, -0.0394221767783165, 0.02190241403877735, -0.02375744841992855, 0.0008936163503676653, 0.0664774626493454, -0.03148132935166359, -0.019678544253110886, -0.011791938915848732, 0.0005522386054508388, 0.01663021370768547, -0.015979325398802757, 0.02147933654487133, -0.022054288536310196, 0.021218981593847275, 0.012063142843544483, -0.0067312768660485744, -0.024082893505692482, -0.002554739359766245, 0.05471806973218918, 0.014959598891437054, 0.04432554170489311, -0.041873857378959656, -0.03807700425386429, -0.019960595294833183, -0.03896655514836311, 0.06061946228146553, 0.007176051381975412, -0.007468951400369406, 0.0011397337075322866, -0.012084838934242725, 0.020991170778870583, 0.032153915613889694, 0.001376359025016427, -0.024798870086669922, 0.03425845876336098, 0.05996857210993767, 0.03004937432706356, -0.017411280423402786, 0.018398461863398552, 0.011010872200131416, 0.008841241709887981, 0.006405832711607218, -0.0038293967954814434, -0.011401405557990074, -0.014297861605882645, -0.022141074761748314, -0.0137337576597929, 0.00487895542755723, -0.03755629435181618, 0.01399411354213953, -0.021349158138036728, -0.0056681581772863865, -0.03128606453537941, 0.03508291766047478, -0.003731763456016779, -0.020188406109809875, 0.0049576046876609325, 0.02974562719464302, 0.009600612334907055, -0.013798846863210201, -0.008743608370423317, -0.005814608186483383, 0.01502468716353178, 0.016337314620614052, -0.04334920644760132, 0.021533576771616936, 0.0013207622105255723, 0.0018713058670982718, 0.048990245908498764, -0.0010109120048582554, -0.03347739204764366, 0.002520838752388954, -0.017476368695497513, -0.02696850150823593, -0.015740664675831795, 0.019038502126932144, 0.010951207019388676, -0.03684031590819359, -0.043826524168252945, 0.03543005883693695, -0.008347650989890099, 0.024712085723876953, 0.03326042741537094, 0.014710091054439545, -0.012692335061728954, -0.0032978374511003494, 0.01130377221852541, -0.025688419118523598, 0.0480789989233017, 0.025688419118523598, -0.006498041562736034, -0.004946756176650524, -0.056757520884275436, 0.018007928505539894, 0.01548030972480774, 0.022455669939517975, -0.006872302852571011, -0.00907990150153637, -0.014026657678186893, 0.013440857641398907, 0.0018333373591303825, -0.01836591772735119, 0.0056952787563204765, 0.004629448056221008, 0.035755500197410583, -0.0278797447681427, 4.5935135858599097e-05, -0.0052857608534395695, 0.012095686979591846, 0.03590737655758858, 0.019483277574181557, -0.0398344062268734, 0.06929798424243927, 0.022954685613512993, 0.006118356715887785, 0.006237686146050692, -0.005575948860496283, 0.007246564142405987, -0.021761389449238777, -0.002463886048644781, 0.028226885944604874, -0.012431980110704899, -0.03631960600614548, 0.02820518985390663, -0.027901440858840942, 0.0033602144103497267, -0.023670662194490433, 0.0017384160310029984, 0.006959088146686554, 0.0010251501807942986, 0.02850893698632717, 0.02944187819957733, -0.024451730772852898, -0.0005373224266804755, 0.011390557512640953, -0.02345369942486286, -0.017823509871959686, -0.01652173139154911, -0.019884658977389336, 0.030700264498591423, -0.004480286035686731, 0.004661992192268372, -0.0033493663650006056, 0.030808744952082634, 0.017986232414841652, 0.027489211410284042, -0.013636124320328236, -0.007859484292566776, 0.027727870270609856, -0.015360980294644833, -0.0020082637201994658, -0.008277138695120811, 0.02963714487850666, 0.0032571570482105017, 0.010441344231367111, 0.010625762864947319, -0.002994089387357235, 0.007647945545613766, 0.023410307243466377, -0.02406119555234909, -0.011336316354572773, 0.028465544804930687, 0.019038502126932144, -0.0365365706384182, 0.019277162849903107, 0.00023187921033240855, -0.009741638787090778, 0.005418650805950165, -0.02447342686355114, 0.027901440858840942, 0.0400947630405426, 0.013343224301934242, 0.04367465153336525, -0.021739691495895386, 0.026078952476382256, 0.013169653713703156, 0.025666723027825356, 0.015230802819132805, 0.003932454157620668, 0.0032680050935596228, 0.04695079103112221, 0.038272272795438766, 0.021934958174824715, 0.03356417641043663, -0.015675576403737068, -0.04990148916840553, -0.026512878015637398, 0.002158781746402383, -0.0274675153195858, -0.024495122954249382, -0.00464300811290741, -0.0076262494549155235, -0.026491181924939156, -0.011455646716058254, 0.012073990888893604, 0.029073040932416916, -0.012952690944075584, 0.008998540230095387, -0.032674629241228104, 0.06461158394813538, -0.0207416620105505, -0.01827913336455822, 0.002142509678378701, -0.00847240537405014, -0.018810691311955452, -0.013245590962469578, -0.005513572134077549, -0.012920146808028221, 0.02219531498849392, -0.006248534191399813, -0.001479416387155652, 0.04773185774683952, 0.013755453750491142, -0.05076934024691582, -0.005532556213438511, -0.02241227775812149, -0.009568068198859692, -0.01921207271516323, -0.018951717764139175, 0.005486452020704746, 0.030591782182455063, 0.027923136949539185, 0.026816627010703087, 0.0025940637569874525, -0.032479360699653625, -0.03697049617767334, -0.017422128468751907, -0.003259869059547782, -0.03905333951115608, 0.011477342806756496, 0.0013390685198828578, 0.006622795481234789, -0.006573978811502457, -0.004718945361673832, -0.02095862478017807, -0.0008651399402879179, 0.00531830545514822, 0.012562157586216927, 0.00019441918993834406, 0.04302376136183739, -0.006411256734281778, 0.015979325398802757, 0.013690365478396416, -0.027011893689632416, 0.05016184598207474, 0.014373798854649067, 0.03569041192531586, -0.011184442788362503, 0.012063142843544483, 0.04664704576134682, 0.009671125560998917, -0.005019981414079666, 0.041027702391147614, -0.031351152807474136, -0.005874273367226124, 0.013549339026212692, 0.006904847454279661, -0.009182958863675594, -0.0015756937209516764, -0.003571753390133381, -0.01152073498815298, 0.00016729881463106722, 0.01980872079730034, -0.004683688748627901, 0.024798870086669922, 0.01888662949204445, -0.006693308707326651, -0.02321504056453705, -0.033412300050258636, 0.0018184211803600192, -0.03302176669239998, 0.011005448177456856, 0.012551309540867805, 0.0015892540104687214, 0.007984238676726818, 0.056106630712747574, 0.002520838752388954, -0.03271802142262459, 0.012008901685476303, -0.028986256569623947, -0.017085835337638855, -0.0200473815202713, 0.009361953474581242, 0.02343200333416462, -0.0022699753753840923, -0.013549339026212692, -0.04128805920481682, 0.034844256937503815, 0.01306117232888937, 0.009638581424951553, -0.02107795514166355, 0.020915232598781586, -0.02716376818716526, 0.013375768437981606, 0.004629448056221008, 0.0405069924890995, 0.018138106912374496, -0.02653457410633564, 0.015838298946619034, 0.033716049045324326, -0.03208882734179497, 0.0060044508427381516, 0.009367377497255802, -0.009736214764416218, 0.04638668894767761, -0.0016475627198815346, 0.03883637487888336, 0.027120374143123627, -0.008732760325074196, 0.012431980110704899, 0.013538490980863571, -0.009117869660258293, 0.025579936802387238, 0.046820614486932755, -0.0026550847105681896, -0.0008800561772659421, -0.011791938915848732, 0.012453676201403141, -0.024929048493504524, -0.03137284889817238, -0.03460559993982315, -0.010831877589225769, 0.00995860155671835, -0.012616398744285107, 0.026621360331773758, 0.02373575232923031, 0.029094738885760307, -0.04695079103112221, 0.03799021989107132, 0.02696850150823593, -0.05367664620280266, -0.04686400666832924, 0.011184442788362503, 0.018951717764139175, 0.018452702090144157, -0.004748777486383915, -0.003967710770666599, 0.01486196555197239, 0.027489211410284042, 0.01521995384246111, 0.025948774069547653, -0.012714032083749771, -0.015664728358387947, 0.05094291269779205, -0.02332352288067341, -0.0097524868324399, 0.025428064167499542, -0.02859572321176529, -0.01378799881786108, 0.00710011413320899, -0.018875781446695328, -0.00730622885748744, -0.02271602675318718, -0.00753404013812542, -0.045692406594753265, 0.023887626826763153, -0.012670638971030712, -0.0352998785674572, 0.004404348786920309, 0.01921207271516323, -0.008195777423679829, 0.02241227775812149, -0.017628243193030357, 0.0005932581843808293, 0.001005487865768373, 0.01486196555197239, -0.022976381704211235, 0.0054430593736469746, -0.010441344231367111, 0.01358188409358263, 0.02872590161859989, -0.04881667345762253, 0.02291129343211651, -0.0020828447304666042, -0.013766301795840263, 0.010202685371041298, -0.019038502126932144, -0.017877750098705292, 0.049597740173339844, -0.01487281359732151, -0.024538515135645866, -0.023800840601325035, 0.033607568591833115, -0.018756451085209846, 0.003181220032274723, 0.008065599016845226, 0.002162849996238947, -0.02406119555234909, 0.02075251005589962, 0.018018776550889015, 0.02529788576066494, 0.0037887163925915956, -0.050422199070453644, 0.011629216372966766, -0.018951717764139175, -0.002330996096134186, -2.3518450689152814e-05, -0.038359057158231735, -0.0022930277045816183, -0.0017858766950666904, 0.03067856840789318, -0.012703183107078075, 0.014330405741930008, 0.03551684319972992, -0.014189380221068859, -0.03087383508682251, 0.005982754752039909, 0.027120374143123627, -0.017812661826610565, -0.021218981593847275, -0.018148954957723618, 0.017216013744473457, 0.0026618647389113903, -0.007609976921230555, 0.0009092105901800096, 0.03955235332250595, -0.0004715555114671588, 0.025840293616056442, -0.01197635754942894, -0.024299856275320053, -0.0007898809271864593, -0.02096947282552719, 0.035256486386060715, 0.025276189669966698, 0.018018776550889015, 0.0035690413787961006, -0.0036395543720573187, 0.008754457347095013, 0.037339333444833755, 0.009334833361208439, -0.003145963419228792, -0.005613917484879494, -0.010783061385154724, -0.017910296097397804, 0.011010872200131416, -0.013983265496790409, 0.012757424265146255, -0.02230379544198513, -0.017205165699124336, -0.041483324021101, 0.010717972181737423, -0.018300829455256462, 0.010951207019388676, 0.009736214764416218, 0.015979325398802757, -0.01177024282515049, -0.012464524246752262, -0.020785056054592133, -0.009437890723347664, -0.00508778216317296, 0.015979325398802757, 0.008049326948821545, -0.020893536508083344, 0.02334521897137165, 0.014102594926953316, -0.02725055254995823, 0.03595076873898506, 0.001978431362658739, -0.024082893505692482, 0.005177279468625784, 0.0052396561950445175, 0.001735704019665718, -0.004629448056221008, -0.030071072280406952, -0.02436494454741478, -0.03458390012383461, -0.05367664620280266, 0.02054639533162117, 0.026078952476382256, -0.057061269879341125, 0.023063166067004204, 0.008770729415118694, 0.025775203481316566, -0.0046213120222091675, -0.011065112426877022, -0.012377738952636719, 0.010473888367414474, -0.035256486386060715, -0.016142047941684723, -0.015599639154970646, -0.043414294719696045, 0.01238858699798584, -0.012562157586216927, 0.015458613634109497, -0.001954023027792573, 0.04243796318769455, -0.014688394963741302, 0.005491876043379307, -0.028530634939670563, -0.013896480202674866, -0.03388962149620056, 0.029463574290275574, 0.007707610726356506, -0.013321528211236, -0.008635126985609531, 0.026643056422472, 0.0008705640211701393, 0.020492155104875565, -0.018040472641587257, -0.015458613634109497, -0.04172198474407196, -0.0014631442027166486, -0.008965996094048023, 0.004624024033546448, -0.0004196877998765558, 0.025146011263132095, -0.03180677443742752, -0.0164132509380579, -0.0005190161755308509, 0.03458390012383461, -0.02054639533162117, -0.0003962964692618698, 0.0016801072051748633, 0.007317076902836561, -0.03198034688830376, -0.010707124136388302, -0.005017269402742386, 0.039704229682683945, 0.008271714672446251, -0.0199172031134367, 0.010734244249761105, 0.013549339026212692, 0.02653457410633564, 0.02766278199851513, -0.02179393358528614, -0.009584340266883373, -0.005361698102205992, 0.018311677500605583, 0.0030212097335606813, -0.00955722015351057, 0.013863935135304928, -0.03872789442539215, 0.005247792694717646, -0.01899510994553566, 0.0014238196890801191, -0.04055038467049599, 0.00353649677708745, -0.03462729603052139, -0.02147933654487133, 0.011081385426223278, 0.009562644176185131, -0.025992166250944138, -0.04612633213400841, -0.019982291385531425, -0.05259183049201965, -0.003840245073661208, -0.0014970446936786175, 0.0033113977406173944, -0.016066109761595726, 0.00975791085511446, -0.046820614486932755, -0.009985721670091152, 0.012746576219797134, -0.025124315172433853, -0.012084838934242725, -0.022694328799843788, -0.02579689957201481, 0.04137484356760979, 0.002324216067790985, 0.019179528579115868, 0.06474176049232483, -0.01775842159986496, -0.027185464277863503, -0.02881268598139286, 0.001260419376194477, -0.028248582035303116, -0.033499088138341904, -0.03243596851825714, -0.03749120607972145, -0.03527818247675896, -0.004312139470130205, -0.009622309356927872, -0.006405832711607218, 0.010701700113713741, 0.03245766460895538, 0.03727424144744873, -0.002994089387357235, 0.001340424525551498, 0.0006139375036582351, 0.011368861421942711, 0.016185440123081207, 0.006671612150967121, 0.03239257633686066, 0.025688419118523598, -0.0037643080577254295, 0.018930021673440933, 0.003221900435164571, 0.019494125619530678, -0.005971906706690788, -0.01124953106045723, 0.007642521522939205, 0.013744605705142021, 0.023562181740999222, -0.030721960589289665, -0.018550336360931396, -0.0027798383962363005, -0.026881715282797813, 0.00913956668227911, -0.019168680533766747, -0.009606036357581615, 0.013072020374238491, 0.002614404074847698, -0.005733247380703688, 0.009307712316513062, -0.005923090036958456, 0.0013838171726092696, -0.00233777635730803, -0.005955634173005819, -0.028574027121067047, 0.013668668456375599, 0.019700240343809128, -0.003056466346606612, 0.018940869718790054, -0.008900906890630722, 0.017161773517727852, -0.0033900467678904533, 0.01197635754942894, -0.006422104779630899, -0.02675153687596321, 0.06626050174236298, -0.006058691535145044, -0.014352102763950825, -0.009220927022397518, -0.042720016092061996, 0.019494125619530678, 0.015643032267689705, -0.013592732138931751, 0.04319733381271362, -0.0475148968398571, -0.014319557696580887, 0.007132658734917641, -0.02095862478017807, -0.0022930277045816183, 0.009508403018116951, -0.016467491164803505, -0.003932454157620668, -0.0012197388568893075, 0.011911268346011639, 0.02364896610379219, -0.006856030784547329, 0.038576021790504456, 0.022054288536310196, 0.019027654081583023, 0.013679517433047295, -0.021761389449238777, 0.014829420484602451, -0.014070050790905952, -0.027293944731354713, -0.028769293799996376, 0.03167659789323807, 0.010766788385808468, 0.009161262772977352, 0.008130688220262527, 0.03799021989107132, -0.04241626709699631, 0.015263346955180168, 0.02291129343211651, -0.02198920026421547, 0.017823509871959686, 0.051680587232112885, -0.016239680349826813, 0.020003987476229668, 0.001052948529832065, 0.027554301545023918, 0.01599017344415188, -0.02280281111598015, -0.008483253419399261, 0.009421617724001408, -0.018940869718790054, 0.03916181996464729, 0.004143993370234966, -0.0008292054408229887, 0.0069645121693611145, 0.018821539357304573, 0.039487265050411224, 0.006915695499628782, -0.03838075324892998, -0.007349621504545212, -0.02373575232923031, 0.020427066832780838, -0.011629216372966766, 0.0038131247274577618, -0.002694409340620041, 0.018745603039860725], [0.012554948218166828, 0.046234775334596634, 0.005441905930638313, -0.00041878840420395136, -0.04263540357351303, -0.003864502999931574, 0.01835036277770996, 0.01174080464988947, 0.022238969802856445, 0.006432804279029369, -0.004167128819972277, 0.04477788507938385, 0.003146771341562271, -0.02221754565834999, -0.03552236035466194, 0.024488575756549835, -0.0071183983236551285, 0.04287107661366463, 0.01727912202477455, -0.03173016756772995, 0.027209529653191566, 0.030894599854946136, 0.02185332216322422, 0.05904681980609894, -0.03035897947847843, -0.003934133797883987, 0.024488575756549835, -0.0017849558498710394, 0.03305850550532341, -0.05501895397901535, 0.04036437347531319, -0.02343875914812088, 0.0675739049911499, -0.004035901743918657, 0.07057337462902069, 0.028109371662139893, -0.02528129518032074, 0.015972208231687546, -0.0008141433936543763, -0.016861338168382645, -0.07108757644891739, 0.056990038603544235, -0.019260918721556664, -0.015490149147808552, -0.03166589140892029, 0.04231403023004532, 0.023610157892107964, -0.018885985016822815, 0.008339613676071167, 0.039186008274555206, -0.025345569476485252, 0.01937875524163246, -0.0004629770992323756, 0.024295752868056297, 0.059132520109415054, 0.02188546024262905, 0.0038859278429299593, -0.006684545893222094, -0.009833995252847672, 0.006079294253140688, -0.019368043169379234, 0.008259270340204239, -0.0027035451494157314, 0.025259871035814285, -0.013101281598210335, -0.029202038422226906, 0.011290883645415306, 0.05531890317797661, -0.013647614046931267, -0.0002005229762289673, 0.005490111652761698, 0.01812540367245674, -0.06234624609351158, -0.04042864590883255, -0.0063256798312067986, 0.017600495368242264, 0.03434399515390396, 0.009276949800550938, 0.025624092668294907, 0.015008090995252132, -0.026116862893104553, 0.010530302301049232, -0.013015582226216793, -0.0024839406833052635, 0.0020715128630399704, 0.0007177316583693027, -0.005784702952951193, 0.03573660925030708, -0.03880035877227783, -0.01821110211312771, -0.007466551847755909, 0.034108322113752365, -0.0032164021395146847, 0.09238385409116745, 0.026438236236572266, -0.0012111722026020288, 0.022945988923311234, -0.03817903995513916, -0.022603191435337067, 0.05853262543678284, 0.03372267633676529, 0.0427425280213356, 0.021531950682401657, -0.001629625796340406, 0.016047194600105286, -0.10241066664457321, -0.05536175146698952, 0.05026264116168022, 0.006770245265215635, -0.03490104153752327, -0.038457565009593964, -0.0023888680152595043, -0.03967877849936485, 0.06795954704284668, 0.001814414979889989, -0.011815791949629784, 0.02523844502866268, -0.026631059125065804, 0.029566260054707527, -0.020846355706453323, 0.009592966176569462, -0.01085167471319437, -0.015136639587581158, -0.08728474378585815, -0.028473593294620514, -0.0002445442951284349, -0.04520638287067413, -0.014825980179011822, -0.024295752868056297, -6.942146137589589e-05, 0.004930388182401657, -0.03706495091319084, 0.04201408475637436, -0.03860753774642944, -0.004001086112111807, -0.004065360873937607, 0.028387894853949547, -0.016861338168382645, -0.013037006370723248, 0.012105027213692665, -0.025259871035814285, -0.01603648252785206, 0.007075549103319645, -0.01964656636118889, -0.06316038966178894, 0.02074994333088398, 0.007584388367831707, 0.053005021065473557, 0.048034459352493286, -0.019593004137277603, -0.030059032142162323, 0.0401715487241745, 0.023245936259627342, 0.000654126750305295, 0.025366993620991707, 0.05973241478204727, -0.03592943400144577, 0.027980823069810867, 0.020771369338035583, 0.026845308020710945, -0.03710779920220375, -0.030787475407123566, 0.03312278166413307, -0.02697385661303997, 0.019175220280885696, -0.004022511187940836, -0.050905387848615646, 0.009550116024911404, -0.04075001925230026, -0.007514758035540581, -0.03125882148742676, -0.011569405905902386, 0.009330512024462223, -0.00023734690330456942, -0.011365870013833046, 0.0005416463827714324, -0.002533485647290945, 0.024038655683398247, 0.02594546414911747, -0.032265789806842804, -0.0012734381016343832, -0.0404500737786293, -0.03138737007975578, -0.012544236145913601, -0.0012975410791113973, 0.04820585995912552, 0.015458011999726295, 0.012501385994255543, -0.019025245681405067, -0.010224997997283936, 0.014697430655360222, 0.02712382934987545, -0.03916458413004875, 0.026952430605888367, -0.022860290482640266, 0.023267360404133797, -0.0278951246291399, -0.015854371711611748, 0.042356882244348526, -0.014493894763290882, 0.01232998725026846, -0.03190156817436218, -0.014772417955100536, 0.012908457778394222, -0.028644992038607597, -0.0028227209113538265, 0.016015058383345604, 0.009041276760399342, 0.04734886437654495, 0.010546370409429073, -0.015993632376194, -0.053604915738105774, -0.07850056141614914, 0.040192972868680954, -0.038093339651823044, 0.014847404323518276, 0.031858716160058975, 0.05848977714776993, -0.021049892529845238, 0.008146789856255054, 0.001901453360915184, -0.036165107041597366, 0.02491707354784012, -0.014686718583106995, 0.006239980459213257, 0.017225559800863266, 0.0019576936028897762, -0.005966814234852791, 0.005886470898985863, -0.046449024230241776, -0.03449397161602974, 0.039121732115745544, 0.011944340541958809, -0.005393700208514929, 0.0051607051864266396, 0.05159098282456398, -0.01153726875782013, -0.029244888573884964, -0.007739718537777662, 0.012758484110236168, -0.017514795064926147, 0.009957187809050083, -0.014354633167386055, -0.03485819324851036, -0.03884321078658104, 0.009839351288974285, -0.021660499274730682, 0.023417335003614426, 0.053862012922763824, 0.020364297553896904, -0.0278951246291399, -0.014418908394873142, 0.018361076712608337, -0.06136070191860199, 0.015929358080029488, 0.02247464284300804, 0.043363846838474274, -0.024295752868056297, 0.03665787726640701, -0.013261967338621616, 0.01011787448078394, -0.03040182776749134, -0.03648648038506508, 0.0189395472407341, -0.07100187242031097, -0.01813611574470997, 0.06560281664133072, -0.06744535267353058, -0.03434399515390396, 0.014386771246790886, -0.0460633747279644, 0.009126976132392883, 0.023160237818956375, -0.003551164874807, -0.005543673876672983, 0.00651314714923501, 0.033444155007600784, -0.02384583093225956, -0.006314967758953571, 0.026545358821749687, -0.07537253946065903, -0.0258383397012949, 0.035800885409116745, -0.011622968129813671, -0.004089463502168655, -0.004584912676364183, -0.010385684669017792, -0.026395386084914207, -0.005870402324944735, 0.10266776382923126, 0.05998951196670532, 0.013754738494753838, -0.01573653519153595, 0.03065892681479454, 0.01333695463836193, 0.025002771988511086, -0.013186980970203876, 0.01015536766499281, 0.0001314781402470544, -0.023974381387233734, -0.017825456336140633, -0.009148401208221912, 0.0177933182567358, 0.03562948480248451, -0.039378829300403595, 0.008575286716222763, -0.0032190801575779915, 0.02708098106086254, 0.00641137920320034, -0.024531425908207893, -0.025602666661143303, 0.04589197784662247, -0.04381376877427101, -0.013529777526855469, -0.027873698621988297, 0.01824324019253254, -0.032779984176158905, 0.02892351523041725, -0.002666051732376218, -0.003020900534465909, 0.0015720466617494822, 0.02675960771739483, 0.02384583093225956, -0.008805603720247746, 0.00919660646468401, 0.014290358871221542, 0.01492239162325859, 0.016272155568003654, -0.027188103646039963, 0.020728519186377525, -0.04287107661366463, -0.005736497230827808, 0.027295228093862534, -0.021510524675250053, -0.0019161829259246588, 0.02333163656294346, -0.0010524946264922619, 0.038007643073797226, -0.019025245681405067, -0.015275901183485985, 0.02993048168718815, -0.0007465212838724256, 0.0376005694270134, -0.00706483656540513, 0.0307017769664526, 0.020760657265782356, 0.02461712621152401, 0.05639014393091202, -0.012072890065610409, 0.025088472291827202, 0.02126413956284523, -0.002090259687975049, 0.00915911328047514, -0.02937343716621399, -0.06196059659123421, -0.0063310363329946995, -0.005672222934663296, -0.002964660292491317, -0.021831898018717766, -0.0019550153519958258, -0.026416810229420662, -0.027359502390027046, 0.026545358821749687, 0.058104127645492554, 0.003535096300765872, 0.001708629890345037, 0.017054161056876183, -0.020546408370137215, 0.01635785400867462, -0.02200329676270485, 0.03470821678638458, 0.0007686156313866377, -0.03080889955163002, -0.048034459352493286, 0.004199265968054533, -0.010573151521384716, 0.02825934626162052, 0.011869354173541069, -0.012865608558058739, 0.014568882063031197, 0.06264619529247284, 0.03541523963212967, 0.02716667950153351, 0.02778800018131733, 0.036165107041597366, 0.02181047387421131, -0.026373961940407753, -0.0017488014418631792, 0.010867742821574211, 0.03014473058283329, -0.05056259036064148, -0.0013872574781998992, 0.0023071859031915665, -0.014483182691037655, -0.0028655705973505974, -0.0072415913455188274, 0.06316038966178894, 0.022431792691349983, -0.010969511233270168, -0.016561390832066536, 0.0198286771774292, -0.061746347695589066, -0.0009942458709701896, -0.0767437294125557, 0.004467076156288385, -0.014161810278892517, -0.0011227948125451803, -0.00427425280213356, 0.01092666108161211, -0.020846355706453323, 0.060975056141614914, -0.0033128138165920973, 0.03867181017994881, -0.02793797291815281, 0.01245853677392006, 0.011408720165491104, 0.026588208973407745, 0.0655171200633049, 0.013176267966628075, -0.0171398613601923, 0.0024839406833052635, 0.05214802548289299, -0.01570439711213112, 0.04175698757171631, -0.02446715161204338, 0.01813611574470997, 0.032372914254665375, 0.015854371711611748, 0.026952430605888367, -0.04636332392692566, -0.04499213397502899, -0.02465997450053692, 0.029137764126062393, 0.044092293828725815, -0.05021979287266731, -0.017311260104179382, 0.02256034128367901, -0.024188628420233727, -0.0450349859893322, -0.0368507020175457, -0.04060004651546478, -0.01394756231456995, 0.01721484772861004, 0.015265189111232758, -0.028495019301772118, 0.014954528771340847, -0.0325014628469944, 0.0006263413815759122, -0.02034287340939045, -0.02667390927672386, 0.02241036854684353, -0.05236227437853813, -0.016636377200484276, 0.029501985758543015, -0.0481201596558094, -0.010166079737246037, -0.010428533889353275, -0.026588208973407745, 0.029716234654188156, -0.0537334643304348, 0.028323620557785034, 0.06800239533185959, 0.055918797850608826, 0.08372822403907776, 0.037086375057697296, 0.1033533588051796, -0.023224512115120888, 0.005123211536556482, -0.015029516071081161, -0.03275856003165245, -0.01761120744049549, -0.03588658571243286, 0.003982339520007372, 0.0021438216790556908, -0.04077144339680672, -0.03946452960371971, 0.0035002809017896652, -0.022046146914362907, -0.09375503659248352, 0.003594014560803771, 0.03055180236697197, 0.013701176270842552, -0.05189092829823494, -0.03704352304339409, 0.06543141603469849, 0.03151591867208481, 0.016422130167484283, 0.016229305416345596, -0.0337655246257782, -0.05111963674426079, -0.00509643042460084, 0.012533523142337799, 0.02564551681280136, -0.007327290717512369, -0.014504607766866684, -0.008602067828178406, 0.013251255266368389, -0.02656678482890129, 0.055961646139621735, -0.010835605673491955, 0.007412990089505911, 0.017300548031926155, 0.045634880661964417, -0.030209004878997803, 0.048848602920770645, 0.0022804050240665674, -0.021467676386237144, 0.006047157105058432, 0.016197169199585915, -0.054376207292079926, -0.034879617393016815, 0.01614360697567463, 0.03335845470428467, -2.0221772501827218e-05, 0.0030610719695687294, -0.025366993620991707, 0.01647569052875042, 0.007070192601531744, 0.0020366974640637636, 0.009898269549012184, 0.014043973758816719, 0.01596149615943432, -0.02502419799566269, -0.04141419008374214, -0.034879617393016815, 0.007504045497626066, -4.8122168664122e-05, -0.06838804483413696, 0.011590830981731415, 0.009357293136417866, 0.010508877225220203, -0.04083571955561638, -0.010460671037435532, 0.028944939374923706, 0.009828639216721058, 0.011076634749770164, 0.0068398755975067616, -0.002058122307062149, -0.036872126162052155, -0.018896697089076042, 0.00044489989522844553, -0.03372267633676529, -0.009978612884879112, 0.0010591899044811726, 0.01875743456184864, 0.019667990505695343, -0.003374410094693303, 0.005731141194701195, 0.010835605673491955, -0.018146827816963196, 0.01754693314433098, 0.009207319468259811, 0.014547456987202168, 0.025345569476485252, -0.0028146866243332624, -0.01670065149664879, 0.04512068256735802, -0.03389407694339752, 0.001826466410420835, -0.020557120442390442, 0.013894000090658665, 0.026481084525585175, -0.034922465682029724, -0.026781033724546432, -0.008591355755925179, 0.0363365039229393, -0.007562963757663965, -0.02549554407596588, 0.035843733698129654, -0.018511049449443817, -0.012008614838123322, 0.030616076663136482, 0.008602067828178406, 0.03382980078458786, 0.03935740515589714, 0.024317177012562752, 0.025559818372130394, -0.04584912955760956, -0.02513132058084011, 0.016443554311990738, 0.015479437075555325, 0.012115739285945892, 0.019593004137277603, -0.028730692341923714, 0.0022482676431536674, 0.02369585819542408, -0.012190726585686207, -0.037943366914987564, 0.012158588506281376, -0.008580642752349377, 0.004823264200240374, -0.006020375993102789, 0.010385684669017792, -0.009185894392430782, 0.008778822608292103, 0.05587594583630562, -0.03822188824415207, 0.012929882854223251, -0.032522886991500854, 0.03895033523440361, -0.023888681083917618, 0.02348160929977894, 0.007862911559641361, 0.02129627764225006, 0.00241297110915184, 0.002927166875451803, 0.027616601437330246, -0.017718331888318062, 0.014708143658936024, 0.027573751285672188, 0.02196044661104679, 0.00995183177292347, 0.025924040004611015, -0.016132894903421402, -0.01831822656095028, 0.0013343649916350842, -0.02088920585811138, -0.030059032142162323, -0.037129223346710205, -0.00033459553378634155, -0.028730692341923714, 0.018553899601101875, -0.005222301464527845, -0.03734347224235535, -0.006181062199175358, -0.02973765879869461, 0.03025185503065586, -0.012587085366249084, -0.010198216885328293, -0.008398531936109066, 0.028387894853949547, 0.03545808792114258, -0.0337655246257782, -0.0213712640106678, -0.017407670617103577, -0.04717746749520302, 0.01886455900967121, -0.009871488437056541, -0.0021424826700240374, 0.024124354124069214, 0.036765001714229584, -0.03213724121451378, 0.014836692251265049, -0.03547951206564903, 0.04696321859955788, 0.03029470518231392, 0.023310210555791855, 0.027959398925304413, 0.035393811762332916, 0.013583339750766754, 0.0230316873639822, -0.02262461744248867, 0.025602666661143303, -0.020353585481643677, 0.020428571850061417, -0.023417335003614426, -0.04627762362360954, 0.043363846838474274, 0.015490149147808552, 0.0017554967198520899, -0.002785227494314313, 0.014568882063031197, -0.02200329676270485, -0.013154842890799046, -0.003904674667865038, 0.025924040004611015, -0.006432804279029369, -0.010150011628866196, 0.009871488437056541, 0.020407147705554962, -0.02590261586010456, -0.0034226160496473312, -0.020589258521795273, -0.05266222357749939, -0.015458011999726295, 0.02549554407596588, -0.028537869453430176, 0.028644992038607597, -0.01768619380891323, 0.05189092829823494, -0.019475167617201805, -0.025409843772649765, -0.004558131564408541, 0.01827537640929222, 0.0032244364265352488, -0.012147876434028149, 0.036315079778432846, -0.042292606085538864, -0.0006464271573349833, -0.035393811762332916, 0.0205999705940485, 0.014568882063031197, -0.012019327841699123, 0.004906285088509321, 0.008173570968210697, 0.019153794273734093, -0.02491707354784012, -0.013186980970203876, -0.011655105277895927, -0.02307453751564026, 0.03982875123620033, 0.00606322567909956, 0.019046669825911522, -0.07922900468111038, -0.01990366354584694, -0.0023500355891883373, -0.008157502859830856, 0.014440332539379597, 0.01872529834508896, 0.014268934726715088, -0.022945988923311234, -0.004161772318184376, -0.02538841962814331, -0.013926137238740921, -0.03235148638486862, 0.02620256319642067, -0.028066521510481834, -0.013272679410874844, 0.03798621520400047, 0.02446715161204338, -0.02716667950153351, 0.02476709894835949, 0.01091059297323227, -0.029309162870049477, 0.008832384832203388, -0.01694703847169876, -0.0010893185390159488, -0.00875204149633646, -0.009983968921005726, 0.03642220422625542, 0.00952869188040495, 0.01091059297323227, 0.026181137189269066, -0.003433328354731202, 0.006930931471288204, 0.025217020884156227, -0.042506854981184006, 0.012983445078134537, 0.00847351923584938, 0.001732732867822051, -0.017386246472597122, -0.025602666661143303, 0.022688891738653183, -0.02221754565834999, -0.021435538306832314, 0.0077557871118187904, 0.00206749583594501, 0.022024720907211304, -0.016529252752661705, 0.006084650754928589, 0.01853247545659542, 0.004713461734354496, -0.03130166977643967, -0.014558169059455395, 0.0098554203286767, -0.008114652708172798, 0.04846295714378357, 0.0026767642702907324, 0.012469248846173286, -0.008816315792500973, 0.0035699116997420788, 0.022581767290830612, 0.010321410372853279, 0.024445727467536926, -0.02236751839518547, -0.010128586553037167, -0.004619728308171034, 0.0006708648870699108, 0.011140909977257252, -0.02152123861014843, 0.0039019964169710875, 0.00706483656540513, 0.03903603181242943, 0.01753622107207775, 0.007386208977550268, 0.010385684669017792, -0.035908009856939316, -0.002750412095338106, -0.011783654801547527, -0.03076605126261711, -0.0018666379619389772, 0.009941119700670242, -0.01662566512823105, 0.02348160929977894, 0.018586037680506706, -0.0067220390774309635, -0.008377106860280037, 0.04027867317199707, 0.0067273955792188644, 0.0027209529653191566, -0.015158064663410187, 0.025752641260623932, -0.010616001673042774, -0.034044049680233, -0.006823807023465633, -0.017161285504698753, -0.005048224702477455, -0.020578546449542046, 0.014086822979152203, 0.015907933935523033, 0.00740763358771801, 0.016454266384243965, 0.0021464996971189976, 0.0012506742496043444, 0.0716446191072464, -0.016743501648306847, -0.04499213397502899, -0.02815222181379795, 0.025624092668294907, -0.04087856784462929, 0.013754738494753838, 0.004815229680389166, 0.007246947381645441, 0.05471900478005409, 0.040257249027490616, -0.0445207878947258, 0.01282275840640068, 0.024745674803853035, -0.017161285504698753, -0.02594546414911747, 0.034065473824739456, -0.042506854981184006, -0.020792793482542038, 0.010053600184619427, 0.050176944583654404, 0.027873698621988297, -0.02727380394935608, 0.010808824561536312, 0.011280170641839504, 0.004145703744143248, 0.014001123607158661, -0.002360748127102852, 0.03670072555541992, -0.01712914928793907, 0.0006628305418416858, 0.025302719324827194, -0.016722077503800392, 0.01665780320763588, 0.016304293647408485, 0.019742976874113083, 0.04259255528450012, -0.02307453751564026, 0.03050895221531391, 0.026888156309723854, -0.046491872519254684, 0.0491485521197319, 0.026373961940407753, -0.014504607766866684, -0.04610622674226761, 0.04696321859955788, -0.013497640378773212, 0.029823357239365578, -0.01857532374560833, 0.009576897136867046, 0.029823357239365578, -0.02189617231488228, -0.0030262568034231663, -0.0019576936028897762, -0.05531890317797661, 0.005112498998641968, -0.010599932633340359, 0.0001703106245258823, 0.00651314714923501, 0.022903138771653175, 0.015372312627732754, -0.00858599878847599, 0.0189395472407341, 9.992672858061269e-05, -0.004609015770256519, 0.014890254475176334, 0.04717746749520302, -0.016368567943572998, 0.024895647540688515, -0.027552327141165733, -0.03029470518231392, -0.017075587064027786, 0.022453218698501587, 0.010144655592739582, 0.01596149615943432, 0.03475106880068779, 0.008023597300052643, -0.017011312767863274, 0.00913768820464611, 0.0075361826457083225, -0.03203011676669121, -0.03029470518231392, -0.0016323039308190346, 0.044349391013383865, 0.027980823069810867, -0.009185894392430782, 0.020503558218479156, 0.03706495091319084, 0.0002293125871801749, 0.00033928221091628075, -0.0016215915093198419, -0.010953442193567753, -0.005549029912799597, -0.044906437397003174, -0.020182186737656593, 0.02682388201355934, -0.024081503972411156, 0.009368005208671093, -0.026802457869052887, 0.013261967338621616, -0.04338527470827103, -0.008168214932084084, -0.01919664442539215, -0.03286568447947502, 6.117792509030551e-05, -0.011494419537484646, 0.013401228934526443, 0.0016443553613498807, -0.01040710974484682, -0.011312308721244335, 0.049876995384693146, 0.0015452655497938395, -0.04610622674226761, 0.0373648963868618, -0.013379803858697414, 0.036936402320861816, 0.02241036854684353, 0.024338603019714355, -0.017000598832964897, -0.0018077197019010782, -0.0188002847135067, -0.001003619167022407, -0.031344521790742874, -0.003727919654920697, -0.014493894763290882, -0.011730092577636242, 0.00413499167189002, 0.020589258521795273, 0.003872537286952138, 0.002234877087175846, -0.0019617106299847364, -0.004451007582247257, -0.02122129127383232, 0.007809349335730076, -0.0013939527561888099, -0.05313356965780258, 0.04550633206963539, -0.019560866057872772, -0.013722601346671581, 0.00974829588085413, -0.02834504470229149, -0.014986665919423103, 0.0332513302564621, -0.018478913232684135, 0.006181062199175358, 0.012362124398350716, -0.006138212513178587, 0.0016925613163039088, 0.026416810229420662, -0.01026249211281538, 0.004614371806383133, 0.022024720907211304, 0.05240512639284134, 0.000709027866832912, -0.014354633167386055, -0.012083602137863636, 0.0034868905786424875, 0.011697955429553986, 0.049919843673706055, -0.056732941418886185, 0.03635793179273605, 0.024938497692346573, -0.011108772829174995, -0.014483182691037655, 0.019700128585100174, 0.01831822656095028, -0.0011227948125451803, 0.002011255593970418, 0.05214802548289299, 0.04351382330060005, -0.01479384209960699, 0.0012901762966066599, -0.004622406326234341, -0.011398007161915302, 0.02170334942638874, -0.003719885367900133, 0.016722077503800392, -0.012105027213692665, -0.0029057420324534178, -0.005345494020730257, 0.01828608848154545, 0.019464455544948578, 0.013208405114710331, 0.0005386334960348904, -0.00530532281845808, -0.005966814234852791, 0.00840388797223568, -0.016647089272737503, 0.030680350959300995, -0.003955558408051729, -0.006186418700963259, 0.010739194229245186, 0.02834504470229149, 0.009780433028936386, 0.003460109466686845, 0.011430145241320133, 0.003762735053896904, 0.017557645216584206, -0.0056347292847931385, 0.041371338069438934, 0.02123200334608555, -0.011108772829174995, -0.0021157015580683947, 0.014011836610734463, -0.014247509650886059, -0.03158019483089447, 0.009110907092690468, -0.023674432188272476, -0.002612489741295576, 0.04094284400343895, -0.029352011159062386, -0.026952430605888367, -0.0033931569196283817, -0.02645966038107872, -0.029609110206365585, 0.012201438657939434, -0.020728519186377525, 0.0038832498248666525, 0.010032175108790398, 0.016004344448447227, 0.023931531235575676, -0.03832901269197464, 0.035650912672281265, 0.03076605126261711, 0.03550093621015549, 0.013304817490279675, -0.009737583808600903, -0.0009982630144804716, 0.02635253593325615, 0.05326211825013161, 0.016561390832066536, 0.01481526717543602, -0.00020370322454255074, -0.014161810278892517, -0.009796502068638802, 0.009796502068638802, -0.0016671193297952414, -0.025624092668294907, -0.038264740258455276, 0.003149449359625578, 0.0036207956727594137, -0.0053749531507492065, 0.0069041503593325615, 0.021981872618198395, -0.0013149486621841788, -0.009534047916531563, -0.0009601000347174704, 0.038821786642074585, -0.04850580543279648, -0.01453674491494894, -0.022731740027666092, -0.012683496810495853, -0.019250206649303436, -0.02152123861014843, -0.00410017604008317, -0.021531950682401657, 0.02476709894835949, -0.02952340990304947, 0.00785219855606556, 0.015265189111232758, 0.03618653118610382, -0.014761704951524734, -0.035843733698129654, -0.012726346962153912, -0.010305341333150864, 0.010733838193118572, -0.018189677968621254, 0.028087947517633438, 0.015179489739239216, 0.0225174929946661, 0.00544458394870162, -0.003677035914734006, -0.031001724302768707, -0.020000075921416283, -0.004528672434389591, -0.003845756407827139, 0.004935744218528271, -0.008152146823704243, 0.005072327796369791, 0.0061489250510931015, -0.03233006224036217, -0.01057850755751133, 0.0009654562454670668, -0.008923440240323544, -0.0008623492321930826, -0.010835605673491955, -0.011805078946053982, 0.02918061427772045, -0.0033369166776537895, 0.024145780131220818, 0.008902015164494514, -0.020728519186377525, 0.037900518625974655, -0.021906884387135506, 0.030637500807642937, -0.018586037680506706, -0.007027342915534973, 0.00937871728092432, -0.0067809573374688625, -0.016057906672358513, 0.06508862227201462, -0.03935740515589714, -0.025217020884156227, -0.006079294253140688, 0.020792793482542038, -0.002529468620195985, -0.0009118941961787641, 0.0069041503593325615, 0.03117312304675579, -0.0062131998129189014, 0.019100232049822807, -0.0014582272851839662, -0.007702224887907505, 0.015597273595631123, 0.027038130909204483, -0.023824406787753105, -0.008387819863855839, -0.007868267595767975, -0.049362801015377045, -0.02111416682600975, 0.00043753511272370815, 0.012779909186065197, 0.008618135936558247, 0.04743456467986107, 0.0053722751326859, 0.0013952917652204633, -0.03248003497719765, -0.022581767290830612, -0.003527062013745308, -0.011162334121763706, 0.004301033914089203, -0.0020166118629276752, 0.028944939374923706, 0.0072415913455188274, 0.02088920585811138, 0.01720413565635681, 0.009523334912955761, 0.034044049680233, -0.011505131609737873, 0.013626189902424812, -0.01806112937629223, 0.014858117327094078, -0.02354588359594345, 0.05026264116168022, 0.009089482948184013, -0.015008090995252132, -0.0038752155378460884, 0.04722031578421593, -0.025752641260623932, 0.002175958827137947, 0.017075587064027786, -0.01927163079380989, 0.009394786320626736, -0.008061090484261513, 0.019475167617201805, 0.029352011159062386, 0.020353585481643677, 0.012340700253844261, -0.012565660290420055, 0.0007137145148590207, 0.005629373248666525, 0.025859765708446503, -0.0009761686669662595, 0.01494381669908762, 0.0019268953474238515, 0.025152746587991714, -0.026331111788749695, -0.019742976874113083, -0.03710779920220375, -0.00720409769564867, 0.004006442613899708, -0.013154842890799046, 0.019228782504796982, 0.014183235354721546, 0.005166061222553253, -0.009207319468259811, 0.005891827400773764, 0.023353060707449913, -0.005048224702477455, -0.044863585382699966, 0.012265712954103947, 0.03269428387284279, 0.04404944181442261, 0.019807251170277596, 0.0039984080940485, 0.004935744218528271, -0.010021462105214596, -0.0033315604086965322, 0.009678665548563004, -0.026888156309723854, -0.03091602399945259, 0.008312832564115524, -0.014108248054981232, 0.039143156260252, 0.002980728866532445, -0.014386771246790886, -0.008221777155995369, 0.005275863688439131, -0.011483706533908844, -0.007541538681834936, -0.019475167617201805, 0.03408689796924591, 0.014440332539379597, 0.006952356081455946, -0.010969511233270168, -0.023760132491588593, 0.01820039004087448, 0.0048795039765536785, -0.013186980970203876, 0.008012885227799416, -0.011494419537484646, -0.01085167471319437, -0.02436002716422081, 0.02958768419921398, 0.02298883907496929, 0.003146771341562271, 0.013872575014829636, 0.0028816391713917255, 0.010069668292999268, -0.03952880576252937, 0.02081421948969364, -0.02266746573150158, -0.009180538356304169, -0.02318166196346283, -0.01747194491326809, 0.011119484901428223, 0.05977526679635048, -0.010369615629315376, -0.011687242425978184, 0.001539909397251904, 0.0058114840649068356, 0.01144085731357336, 0.015415162779390812, -0.0035377745516598225, -0.020407147705554962, -0.012072890065610409, 0.012554948218166828, 0.0396573543548584, 0.0027879055123776197, -0.018553899601101875, -0.05694718658924103, -0.013883287087082863, -0.015415162779390812, -0.02123200334608555, -0.0031762304715812206, -0.0013952917652204633, -0.001771565293893218, 0.010535658337175846, -0.015286613255739212, -0.004009120631963015, 0.00936264917254448, -0.014343921095132828, -0.0039930520579218864, -0.035393811762332916, 0.014975953847169876, -0.004335849080234766, -0.026481084525585175, -0.045934826135635376, -0.011944340541958809, 0.022688891738653183, -0.019400179386138916, -0.004327815026044846, -0.00347885605879128, 0.020278597250580788, -0.022496066987514496, 0.01494381669908762, 0.029951907694339752, 0.004333171062171459, -0.029030639678239822, -0.009866132400929928, 0.006872013211250305, 0.02896636538207531, -0.00030463424627669156, -0.00026228674687445164, -0.0006229938007891178, -0.01322983019053936, 0.0225174929946661, -0.005034834146499634, -0.015543711371719837, -0.015340175479650497, -0.013037006370723248, 0.008869878016412258, 0.002953947987407446, -0.023738708347082138, 0.002218808513134718, -0.0027745149563997984, -0.03828616440296173, -0.015468725003302097, 0.02348160929977894, -0.01979653909802437, 0.0005781355430372059, 0.024831373244524002, 0.007541538681834936, 0.002141143660992384, -0.011023073457181454, 0.002258980181068182, -0.0002507374156266451, 0.021939022466540337, -0.011344445869326591, 0.004421548452228308, -0.017386246472597122, 0.03207296505570412, -0.026288261637091637, -0.00026429531862959266, 0.032737135887145996, -0.024552850052714348, -0.009110907092690468, -0.0023085251450538635, 0.00630961125716567, 0.023867256939411163, 0.005045546684414148, -0.003114634193480015, -0.033958349376916885, -0.033915501087903976, -0.03445111960172653, 0.020578546449542046, 0.022303244099020958, -0.010878455825150013, 0.003012866247445345, 0.020953480154275894, -0.001948320190422237, -0.02723095379769802, -0.004675968550145626, 0.02221754565834999, 0.0015573170967400074, -0.008034310303628445, -0.008848452940583229, -0.03415117412805557, -0.0041510602459311485, -0.01312270574271679, -0.02130698971450329, 0.03387264907360077, -0.0029994756914675236, 0.01996793784201145, -0.02130698971450329, 0.024595700204372406, -0.016090044751763344, 0.0035645554307848215, -0.03967877849936485, -0.010680275969207287, -0.015500862151384354, -0.014290358871221542, -0.0017608528723940253, 0.015254476107656956, 0.0033931569196283817, 0.0006102728075347841, -0.0071398233994841576, -0.007198741659522057, -0.02697385661303997, 0.015158064663410187, -0.02001078799366951, 0.027509476989507675, 0.006759532727301121, 0.01813611574470997, -0.02748805284500122, -0.002490635961294174, 0.023610157892107964, 0.013979699462652206, -0.016368567943572998, 0.017932578921318054, 0.014397483319044113, 0.0068452320992946625, -0.03730062395334244, 0.012404974550008774, -0.012726346962153912, 0.027252379804849625, -0.0389074832201004, -0.0010598594089969993, 0.05840407684445381, -0.0016684583388268948, -0.0023125421721488237, 0.025774065405130386, -0.06663121283054352, -0.0060310885310173035, 0.020150048658251762, -0.004542062990367413, -0.005072327796369791, -0.04683467000722885, 0.010862386785447598, -0.024959921836853027, 0.0013885966036468744, -0.010605288669466972, -0.004670612048357725, -0.021842610090970993, -0.022431792691349983, -0.009191250428557396, -0.022046146914362907, 0.035136714577674866, -0.01070705708116293, -0.017750468105077744, -0.019925087690353394, 0.01146228238940239, -0.06933073699474335, 0.02656678482890129, 0.01333695463836193, -0.016379280015826225, -0.01828608848154545, 0.014804555103182793, -0.028323620557785034, 0.03256573528051376, 0.005602592136710882, -0.024338603019714355, -0.01871458627283573, -0.010637425817549229, -8.314674050780013e-05, 0.03168731927871704, 0.013958274386823177, 0.015779385343194008, 0.04572058096528053, -0.01391542423516512, 0.007707581389695406, -0.043063901364803314, 0.03003760613501072, -0.02476709894835949, -0.03670072555541992, -0.022817440330982208, -0.012137164361774921, -0.005549029912799597, 0.01453674491494894, -0.01908951997756958, 0.008318188600242138, 0.0020969549659639597, -0.010492809116840363, 0.029823357239365578, -0.02162836119532585, 0.015415162779390812, 5.289254113449715e-05, 0.005950745660811663, 0.00912162009626627, 0.007643306627869606, -0.0026057944633066654, 0.03627223148941994, 0.007070192601531744, 0.033744100481271744, 0.002305846894159913, 0.02660963498055935, 0.0032110458705574274, 0.0014234118862077594, -0.016207881271839142, 0.009201962500810623, -0.002489296952262521, -0.041178517043590546, -0.016464978456497192, -0.006223911885172129, -0.0008871217141859233, 0.027916548773646355, 0.020803505554795265, -0.010112518444657326, -0.009694733656942844, 0.013133418746292591, -0.03350842744112015, -0.00042916604434140027, 0.00820035208016634, -0.016572102904319763, 0.005455296486616135, 0.016261443495750427, -0.013711889274418354, -0.006223911885172129, -0.02339591085910797, -0.030744625255465508, 0.005482077598571777, 0.03397977352142334, 0.020053638145327568, -0.003955558408051729, 0.027916548773646355, -0.016572102904319763, -0.02256034128367901, 0.029973331838846207, -0.033851224929094315, -0.009426923468708992, -0.023674432188272476, -0.02266746573150158, -0.023567309603095055, 0.012340700253844261, -0.0033770883455872536, 0.01374402642250061, -0.06221769377589226, -0.004900929052382708, 0.0071398233994841576, -0.018382500857114792, -0.021864036098122597, 0.00823784526437521, -0.013369091786444187, -0.003401191206648946, -0.005348172038793564, 0.001044460223056376, 0.03162304311990738, -0.0060310885310173035, 0.03670072555541992, 0.0006487705395556986, 0.06388883292675018, -0.019153794273734093, -0.02129627764225006, 0.02049284614622593, -0.00899307057261467, 0.003098565386608243, 0.00647565396502614, 0.01113019697368145, -0.01354049053043127, 0.03179444372653961, 0.007482620421797037, 0.027873698621988297, -0.010053600184619427, -0.008660986088216305, 0.01606862060725689, -0.01092666108161211, 0.010937374085187912, 0.05047689005732536, 0.0011428805300965905, -0.0059935953468084335, -0.0005818179342895746, 0.025731217116117477, 0.04124278947710991, -0.0307017769664526, -0.03248003497719765, 0.0115158436819911, -0.00747190834954381, 0.03327275440096855, -0.025045622140169144, 0.014601019211113453, -0.0097268708050251, -0.005377631168812513, 0.01166581828147173, -0.01783616840839386, -0.03629365563392639, 0.025516968220472336, -0.014033260755240917, 0.017075587064027786, -0.00427425280213356, -0.0060310885310173035, 0.001003619167022407, 0.01144085731357336], [0.09563498198986053, -0.0030792374163866043, -0.0022621063981205225, 0.034359488636255264, -0.03444480150938034, -0.009602954611182213, -0.01143183559179306, 0.003812389215454459, 0.05216841399669647, 0.0597185418009758, -0.015750765800476074, 0.00983223132789135, 0.0378572903573513, -0.01189038809388876, -0.013319367542862892, -0.028643572703003883, 6.852469232399017e-05, 0.02738521806895733, 0.048158738762140274, 0.03900900483131409, -0.002123474143445492, 0.03448745980858803, -0.03229067102074623, 0.021349379792809486, -0.009240377694368362, -0.03625768795609474, 0.008109991438686848, 0.011229218915104866, 0.013308703899383545, -0.07046788185834885, 0.03954220563173294, -0.01449241116642952, -0.017830250784754753, -0.034892693161964417, 0.009650942869484425, 0.04205891489982605, 0.007944699376821518, -0.050632793456315994, 0.012093004770576954, -0.022693045437335968, -0.058865420520305634, 0.031032314524054527, 0.05029154568910599, -0.03177879750728607, -0.00300458911806345, 0.05728714540600777, 0.03574581444263458, -0.04282672703266144, -0.03233332559466362, 0.03717479482293129, 0.0014996286481618881, 0.00434292433783412, -0.011442499235272408, -0.008968445472419262, 0.04606859013438225, 0.014449754729866982, 0.03474339470267296, 0.0411418117582798, 0.010381428524851799, -0.03811322897672653, -0.012007692828774452, 0.015740102156996727, -0.020666882395744324, 0.024591242894530296, -0.03653495013713837, 0.016870487481355667, -0.0039163632318377495, 0.0717049092054367, -0.024676555767655373, 0.06577570736408234, -0.01472701970487833, 0.038902364671230316, -0.05302153527736664, -0.06654351949691772, -0.023951401934027672, 0.00042089575435966253, 0.01737169735133648, -0.022117188200354576, 0.033037152141332626, 0.020272312685847282, 0.013244720175862312, 0.007294193375855684, -0.029326070100069046, 0.020272312685847282, 0.058566827327013016, 0.007032924797385931, -0.047390930354595184, -0.024804523214697838, 0.028600916266441345, -0.033186446875333786, -0.019056614488363266, 0.002721992554143071, 0.013703272677958012, 0.031586844474077225, 0.02235179767012596, 0.01762763410806656, 0.027278577908873558, -0.010845313780009747, -0.020261649042367935, 0.046367183327674866, 0.029901927337050438, -0.012626206502318382, -0.013052767142653465, 0.02414335310459137, 0.03391160070896149, -0.006339763291180134, -0.07481880486011505, 0.014865651726722717, 0.007731418590992689, 0.006521051749587059, -0.01595338247716427, 0.008413916453719139, 0.0015276216436177492, 0.07716488838195801, 0.005678593646734953, -0.036108389496803284, 0.02053891308605671, -0.012082341127097607, -0.00830194354057312, -0.021466683596372604, -0.03811322897672653, -0.01130386721342802, 0.03630034253001213, -0.07605583220720291, -0.041888292878866196, 0.006952944677323103, -0.048158738762140274, 0.025295069441199303, -0.052339036017656326, -0.027577169239521027, 0.026681391522288322, -0.0056252735666930676, 0.02061356045305729, 0.0011563802836462855, -0.017787594348192215, -0.014332449994981289, -0.0029272749088704586, 0.007299525663256645, -0.02702264115214348, -0.026062877848744392, 0.034359488636255264, -0.030499113723635674, 0.03800658881664276, -0.0012043684255331755, -0.022415781393647194, 0.007267533335834742, 0.008760496973991394, 0.016795840114355087, -0.007955363020300865, -0.004140308126807213, -0.04016071930527687, 0.030712394043803215, -0.009517642669379711, 0.0013796583516523242, -0.010360101237893105, -0.011133242398500443, -0.0062811109237372875, 0.01323405560106039, -0.0108346501365304, 0.04099251329898834, -0.03237598016858101, -0.03608706220984459, -0.05327747017145157, -0.02589225396513939, 0.0050520822405815125, -0.0007678098627366126, 0.006984936539083719, 0.015334868803620338, -0.03994743898510933, -0.03192809224128723, -0.060273073613643646, -0.0120183564722538, -0.04410640895366669, -0.021210746839642525, 0.023332888260483742, -0.016262639313936234, 0.027833105996251106, 0.005254698451608419, -0.021392034366726875, -0.02712928131222725, 0.052594974637031555, 0.03849713131785393, -0.01061603706330061, -0.010301448404788971, -0.006350427400320768, 0.04107782617211342, -0.02770513854920864, 0.0006708338623866439, -0.01627330295741558, 0.0014223144389688969, -0.0002136137627530843, -0.0231196079403162, 0.007779406849294901, 0.05417324975132942, -0.04393578693270683, 0.0005668596131727099, -0.03674823045730591, -0.028600916266441345, 0.01871536485850811, -0.009224382229149342, 0.03583112731575966, -0.04632452875375748, -0.002243444323539734, 0.016209319233894348, -0.009634947404265404, -0.02589225396513939, 0.009821567684412003, 0.02147734723985195, 0.07068116217851639, -0.005470645148307085, 0.014886979945003986, -0.01944051869213581, -0.018651381134986877, 0.04449031502008438, -0.0364069826900959, -0.012604878284037113, 0.03578846901655197, -0.032866526395082474, 0.04350922256708145, 0.03516995534300804, 0.0020421608351171017, -0.010791993699967861, 0.012956790626049042, 0.009256374090909958, -0.008046007715165615, -0.007464817725121975, -0.040907200425863266, -0.018672708421945572, 0.026233503594994545, -0.04201626032590866, -0.034935347735881805, 0.038027916103601456, 0.00852055661380291, -0.02949669398367405, 0.02811037190258503, 0.025359053164720535, 0.017019784078001976, -0.049097172915935516, -0.013831241056323051, -0.0052360366098582745, 0.02105078659951687, 0.02275703102350235, 0.009347018785774708, 0.02013367973268032, 0.02471921034157276, -0.0041856300085783005, 0.004708167165517807, 0.011879724450409412, 0.036833543330430984, -0.03845447674393654, -0.003599108662456274, -0.016795840114355087, 0.008077999576926231, -0.006323767360299826, -0.004550872836261988, -0.022629061713814735, 0.053362783044576645, -0.016721192747354507, 0.0782739445567131, -0.07597051560878754, 0.031586844474077225, -0.03346371278166771, 0.0038923693355172873, -0.040544625371694565, -0.034466128796339035, 0.022330470383167267, 0.038689084351062775, -0.010205472819507122, -0.03847580403089523, 0.015302876941859722, 0.009693599306046963, 0.06257650256156921, 0.020346960052847862, 0.0044095744378864765, -0.012210309505462646, 0.01955782249569893, 0.011143906973302364, 0.007032924797385931, 0.021104106679558754, 0.04730561748147011, -0.056817926466464996, -0.03301582485437393, 0.016411935910582542, -0.0023940736427903175, 0.014897643588483334, -0.06283243745565414, -0.03301582485437393, -0.011879724450409412, 0.00643573934212327, 0.0061424789018929005, 0.038177210837602615, -0.021402699872851372, 0.01609201543033123, 0.018981965258717537, 0.025423036888241768, 0.011570467613637447, -0.046367183327674866, -0.0035111303441226482, 0.03691885620355606, 0.012007692828774452, -0.007960694842040539, 0.03574581444263458, 0.009107077494263649, -0.005382666829973459, 0.005337344948202372, -0.008291279897093773, 0.006227790843695402, 0.026340143755078316, -0.04048063978552818, 0.02086949720978737, -0.006153142545372248, 0.06470930576324463, -0.047902803868055344, -0.01806485839188099, 0.014396434649825096, 0.07315521687269211, 0.005177384242415428, -0.015217564068734646, 0.060102447867393494, 0.025572333484888077, 0.03470074012875557, 0.015430845320224762, 0.02851560339331627, 0.01531354058533907, 0.03280254080891609, 0.0035884445533156395, 0.0342315211892128, 0.05566621199250221, -0.03150153160095215, -0.04730561748147011, -0.034316834062337875, -0.02559366077184677, -0.0009444327442906797, -0.04112048074603081, -0.0367695614695549, 0.0018662044312804937, -0.015196236781775951, -0.015846742317080498, -0.008963113650679588, -0.02836630865931511, 0.04896920546889305, 0.00904842559248209, -0.00656370772048831, 0.0127435103058815, -0.051400601863861084, -0.0001336335699306801, 0.015580140985548496, -0.0018888654885813594, 0.01212499663233757, 0.03888103738427162, 0.0422508679330349, 0.002796640619635582, -0.003311180043965578, 0.004318930208683014, -0.061552755534648895, 0.022117188200354576, 0.021818596869707108, -0.0418669655919075, -0.010733341798186302, -0.004817473702132702, 0.017179744318127632, -0.003767067100852728, 0.05344809591770172, 0.031693484634160995, -0.008680516853928566, 0.00020411612058524042, 0.01649724692106247, 0.011261210776865482, 0.056860584765672684, -0.005513301119208336, 0.032717231661081314, -0.016582559794187546, 0.0020101687405258417, -0.03798525780439377, 0.05818292498588562, 0.046665776520967484, -0.024164682254195213, 0.004380248486995697, 0.018523411825299263, -0.03218403086066246, 0.046879056841135025, 0.005364004988223314, 0.024740539491176605, 0.07712223380804062, 0.07857254147529602, 0.03949955105781555, -0.045386090874671936, -0.012455581687390804, -0.011634452268481255, 0.009123073890805244, -0.04084321856498718, -0.011847732588648796, 0.011847732588648796, 0.0289421658962965, -0.048116084188222885, 0.050078265368938446, 0.04606859013438225, 0.05865214020013809, 0.013713937252759933, -0.00215679919347167, 0.0014969626208767295, -0.031800124794244766, 0.0023834097664803267, -0.02410069853067398, 0.053832001984119415, 0.008344599977135658, 0.02275703102350235, 0.012114332988858223, 0.02061356045305729, 0.005020089913159609, 0.022223828360438347, -0.011517147533595562, 0.01664654351770878, -0.005497305188328028, 0.01930188573896885, -0.0005658598383888602, 0.03152285888791084, 0.018448764458298683, 0.03856111690402031, -0.04220821335911751, 0.04948107898235321, 0.02305562235414982, -0.018374115228652954, -0.02373812161386013, 0.01094129029661417, 0.022629061713814735, -0.0011383846867829561, -0.010930625721812248, 0.03393292799592018, -0.04619655758142471, -0.026062877848744392, 0.016955800354480743, 0.03327175974845886, 0.015228228643536568, -0.04619655758142471, -0.03269590064883232, 0.008109991438686848, 0.0101948082447052, 0.010807990096509457, -0.00724620558321476, 0.0025433700066059828, -0.008605868555605412, -0.012188981287181377, 0.009762915782630444, -0.03222668543457985, -0.00045588708599098027, -0.006121150683611631, 0.017638297751545906, 0.004692171234637499, 0.047390930354595184, -0.040182046592235565, 0.011538475751876831, -0.015398852527141571, 0.03871041163802147, -0.02512444369494915, 0.014119169674813747, -0.000857787556014955, -0.025721630081534386, 0.01087197382003069, 0.028195682913064957, 0.007891379296779633, 0.005038752220571041, 0.00817397516220808, -0.006147810723632574, 0.0065103876404464245, 0.05668995901942253, 0.01299944706261158, -0.017361033707857132, -0.028814196586608887, -0.05118732154369354, -0.035703156143426895, 0.00862719677388668, 0.016177326440811157, 0.012391597963869572, -0.01630529575049877, -0.005678593646734953, 0.027193265035748482, -0.032567933201789856, -0.025401709601283073, -0.03551120683550835, -0.00424961419776082, 0.05792698636651039, -0.026020221412181854, -0.0016942470101639628, 0.053576063364744186, 0.01351132057607174, 0.0688042938709259, -0.023311559110879898, 0.022629061713814735, -0.026084206998348236, -0.03700416907668114, -0.01568678207695484, -0.023546168580651283, -0.007086244877427816, 0.018363451585173607, -0.022884998470544815, -0.0360444076359272, 0.008333936333656311, 0.01516424398869276, -0.007966026663780212, 0.0008071334450505674, -0.027662482112646103, 0.032973166555166245, -0.030541768297553062, 0.017670290544629097, -0.010173480026423931, 0.013031438924372196, -0.00849922839552164, -0.016070686280727386, 0.0023500847164541483, -0.06436806172132492, 0.01824614778161049, -0.007875382900238037, -0.018907317891716957, -0.04314664751291275, -0.025721630081534386, -0.018416771665215492, -0.009421666152775288, 0.005065412260591984, -0.029624663293361664, -0.00630777096375823, 0.01809685118496418, -0.017062440514564514, -0.025060459971427917, -0.006483727600425482, 0.010034848004579544, 0.01145316381007433, -0.028856853023171425, 0.005182716529816389, -0.004612191114574671, -0.004052329808473587, -0.06061432138085365, -0.06786585599184036, -0.020709536969661713, 0.04427703469991684, -0.0029352731071412563, 0.024122025817632675, 0.02563631720840931, -0.025764286518096924, -0.042805399745702744, 0.01616666279733181, -0.04611124470829964, 0.0030472453217953444, -0.002624683314934373, 0.021328050643205643, 0.016795840114355087, 0.02341819927096367, -0.02589225396513939, 0.002897948957979679, -0.01849142089486122, -0.012114332988858223, -0.011474491097033024, 0.01119722705334425, -0.01992039941251278, 0.0006301772664301097, 0.010882638394832611, 0.022117188200354576, -0.02435663342475891, -0.030925674363970757, -0.048627957701683044, 0.014119169674813747, 0.018075523898005486, -0.025209756568074226, -0.04092853143811226, -0.004316264297813177, 0.03826252371072769, 0.00026243500178679824, -0.0169238094240427, 0.02774779498577118, -0.022671718150377274, -0.009299030527472496, 0.048372019082307816, 0.002969931112602353, 0.03126692399382591, 0.017712946981191635, -0.0005795231554657221, 0.05720183253288269, -0.008984441868960857, -0.013020775280892849, 0.028814196586608887, 0.0015156245790421963, 0.044916875660419464, 0.006558375898748636, -0.02646811120212078, -0.019248565658926964, 0.040139392018318176, -0.0027699805796146393, -0.021690627560019493, -0.046153903007507324, 0.0011450496967881918, 0.019099269062280655, 0.013351360335946083, 0.0001987840951187536, 0.008893797174096107, -0.06313103437423706, 0.022181173786520958, 0.0029912590980529785, 0.04139774665236473, -0.0030072552617639303, 0.016326623037457466, 0.0025660311803221703, 0.0008777825860306621, -0.0008284614887088537, 0.04348789528012276, -0.03218403086066246, -0.060827601701021194, -0.0026273492258042097, -0.011474491097033024, -0.008339268155395985, -0.0005741911008954048, -0.0035004664678126574, -0.014993620105087757, 0.012967455200850964, -0.004980099853128195, -0.03175746649503708, 0.012039684690535069, -0.015580140985548496, -0.005939862225204706, -0.02672404795885086, -0.011485155671834946, 0.0012736845528706908, -0.004398910328745842, -0.00040689922752790153, -0.007891379296779633, -0.03800658881664276, 2.4889668566174805e-05, -0.005875878036022186, -0.040651265531778336, 0.03371964767575264, 0.006899624597281218, -0.007571458350867033, 0.0223944541066885, 0.008696513250470161, -0.0524243488907814, -0.03480738028883934, -0.021647971123456955, 0.006451735273003578, -0.026596080511808395, 0.028089042752981186, 0.03269590064883232, 0.014759011566638947, 0.006110486574470997, -0.01831013150513172, -0.04675108939409256, 0.03717479482293129, 0.005742577835917473, 0.011666444130241871, 0.008104659616947174, 0.02297031134366989, -0.017137089744210243, 0.01351132057607174, 0.011026602238416672, -0.009315025992691517, -0.07302724570035934, -0.006035838276147842, -0.025572333484888077, -0.018182164058089256, 0.06756726652383804, 0.01671052724123001, 0.022330470383167267, -0.011026602238416672, -0.03243996575474739, -0.024889836087822914, -0.035340581089258194, -0.0005045417346991599, -0.014812331646680832, 0.05319216102361679, 0.012242301367223263, 0.009229714050889015, 0.004924113862216473, 0.004417572636157274, 0.024186009541153908, -0.032930511981248856, -0.0487985797226429, -0.02079484984278679, -0.016358615830540657, 0.026126863434910774, 0.013500656001269817, 0.007208881434053183, 0.031053641811013222, -0.019856415688991547, -0.01944051869213581, 0.012103669345378876, 0.019419191405177116, -0.0036044407170265913, -0.007539466023445129, 0.025806941092014313, -0.0011270542163401842, 0.014716355130076408, -0.0038497131317853928, -0.0005685258656740189, 0.018054194748401642, 0.004537542816251516, 0.006830308586359024, 0.021328050643205643, 0.08480033278465271, 0.020123016089200974, -0.02254375070333481, 0.018182164058089256, 0.03188543766736984, -0.009005769155919552, 0.0034418143332004547, -0.030563097447156906, -0.06351493299007416, -0.05950526148080826, -0.011133242398500443, 0.034871362149715424, -0.01696646399796009, -0.016742520034313202, 0.0029112789779901505, -0.015206900425255299, 0.0011063925921916962, -0.029432710260152817, -0.005529297050088644, -0.029731303453445435, 0.018726028501987457, 0.026062877848744392, -0.02960333414375782, 0.01505760382860899, 0.02316226437687874, -0.027982402592897415, 0.023332888260483742, 0.010472073219716549, 0.005465312860906124, -0.02061356045305729, -0.02465522661805153, 0.015612133778631687, 0.019824422895908356, -0.020666882395744324, 0.04380781576037407, 0.028536932542920113, -0.04026735946536064, -0.017179744318127632, 0.024313978850841522, -0.045855309814214706, 0.023396871984004974, -0.03845447674393654, 0.014247138053178787, -0.0011117246467620134, -0.02424999326467514, 0.04052329808473587, -0.04470359534025192, -0.0016262638382613659, -0.032823871821165085, 0.001955515705049038, 0.02832365222275257, -0.029027476906776428, 3.474139521131292e-05, -0.007688762620091438, 0.03525526821613312, -0.00467084301635623, 0.004452230874449015, 0.018374115228652954, -0.0010444079525768757, 0.049609046429395676, -0.017723610624670982, 0.007571458350867033, -0.008200635202229023, 0.009634947404265404, 0.02348218485713005, -0.0108346501365304, -0.0006161807104945183, 0.029539350420236588, 0.0535334087908268, 0.025913581252098083, -0.017606306821107864, -0.006393083371222019, -0.009272370487451553, 0.024783195927739143, -0.015206900425255299, -0.005430655088275671, 0.015196236781775951, 0.02224515751004219, -0.03371964767575264, -0.0018822004785761237, 0.008568544872105122, 0.013170071877539158, -0.00892045721411705, -0.009133737534284592, -0.045855309814214706, 0.007352845743298531, -0.00577990198507905, -0.011250547133386135, 0.025700300931930542, 0.007528801914304495, -0.02734256163239479, -0.015238892287015915, 0.025721630081534386, 0.005497305188328028, 0.005737245548516512, -0.022437110543251038, -0.03301582485437393, 0.008925789035856724, -0.039563532918691635, -0.014044521376490593, 0.027321234345436096, 0.023183591663837433, -0.03069106489419937, -0.0027833105996251106, -0.01297811884433031, -0.011367850936949253, -0.004412240348756313, 0.004036333877593279, 0.017275720834732056, 0.04982232674956322, 0.00888313353061676, -0.03120293840765953, -0.01214632485061884, -0.01595338247716427, -0.01918458193540573, -0.016550567001104355, -0.009992191568017006, 0.007944699376821518, 0.024377962574362755, 0.0013996533816680312, -0.02646811120212078, -0.005977186374366283, 0.06360024958848953, -0.04542874917387962, -0.03538323566317558, 0.05050482600927353, 0.02177594043314457, 0.001843543373979628, -0.009778911247849464, 0.029070133343338966, -0.00385504518635571, -0.01181574072688818, -0.01168777234852314, -0.0009211052092723548, -0.0169238094240427, 0.003415154293179512, 0.05349075049161911, 0.0171157605946064, -0.022586405277252197, 0.0021647971589118242, 0.00017245729395654052, -0.019141925498843193, -0.03190676495432854, -0.01482299529016018, 0.02806771546602249, 0.05268028751015663, -0.012519566342234612, -0.020602896809577942, 0.009848227724432945, -0.0022980975918471813, 0.01649724692106247, 0.006995600648224354, -0.022223828360438347, -0.05344809591770172, 0.03273855894804001, -0.03696151077747345, -0.006398415192961693, -0.003076571272686124, 0.007384837605059147, 0.011218555271625519, 0.009634947404265404, -0.0080993277952075, -0.010200140066444874, -0.013692609034478664, 0.0015622797654941678, 0.018256811425089836, -0.008712508715689182, -0.0077847386710345745, -0.001839544391259551, -0.004353588446974754, -0.027939746156334877, 0.041205793619155884, -0.015260220505297184, -0.024633899331092834, -0.002961933147162199, 0.044660940766334534, -0.008872468955814838, -0.01518557220697403, -0.028643572703003883, -0.02981661632657051, -0.0023900747764855623, 0.02228781394660473, 0.061083536595106125, 0.0025820271112024784, -0.00786471925675869, -0.00016279301780741662, 0.004113647621124983, 0.01762763410806656, -0.03239731118083, -0.044447656720876694, -0.031480204313993454, -0.042805399745702744, 0.045130155980587006, 0.02614819072186947, 0.013948545791208744, 0.008381923660635948, 0.0019781766459345818, 0.006840972229838371, 0.02811037190258503, 0.03433816134929657, -0.01645459048449993, -0.013180735521018505, -0.010664025321602821, 0.010077504441142082, -0.003631100757047534, -0.034252848476171494, 0.00434292433783412, -0.017819587141275406, -0.01117589883506298, -0.005838553886860609, 0.01351132057607174, -0.0072728656232357025, -0.010344104841351509, -0.018832668662071228, -0.016251975670456886, 0.021679963916540146, -0.013895225711166859, -0.016209319233894348, -0.041930947452783585, 0.07366708666086197, -0.013927217572927475, -0.02764115482568741, 0.022821014747023582, 0.010109496302902699, 0.017414353787899017, 0.025572333484888077, 0.016433263197541237, -0.019237902015447617, -0.013820577412843704, 0.0019661798141896725, -0.017275720834732056, -0.02126406691968441, 0.023908745497465134, 0.02170129120349884, -0.006665016058832407, 0.01299944706261158, 0.05255231633782387, 0.006451735273003578, 0.0371534638106823, 0.01958981528878212, -0.014812331646680832, -0.03288785368204117, -0.009075085632503033, 0.02734256163239479, -0.027897091582417488, 0.013831241056323051, 0.03527659550309181, -0.0012130328686907887, -0.005566621199250221, -0.009954867884516716, 0.047604210674762726, 0.033591680228710175, -0.01817150041460991, 0.008349931798875332, 0.004198960028588772, -0.022117188200354576, -0.04845733195543289, 0.007448821794241667, 0.0022821014281362295, 0.016582559794187546, -0.01336202397942543, 0.018139507621526718, -0.012658198364078999, 0.017211737111210823, 0.019344542175531387, 0.03815588355064392, 0.03830517828464508, 0.021136099472641945, -0.01907794177532196, 0.04402109608054161, 0.044405002146959305, -0.0014849655563011765, 0.0019581816159188747, 0.02563631720840931, -0.0120183564722538, -0.007624778430908918, -0.007406165823340416, 0.016230646520853043, -0.00013113419117871672, 0.024932492524385452, 0.019323214888572693, 0.002335421508178115, -0.02235179767012596, -0.004684173036366701, 0.01737169735133648, -0.0035004664678126574, -0.005009425804018974, 0.001787557266652584, 0.043018680065870285, -0.015505492687225342, 0.013969873078167439, -0.02115742675960064, 0.0007158227381296456, 0.007000932935625315, -0.016102679073810577, -0.005182716529816389, 0.009789575822651386, 0.0016022698255255818, 0.0018022203585132957, -0.02144535444676876, 0.016817167401313782, 0.0049481079913675785, 0.015068268403410912, 0.02174394764006138, 0.023972729220986366, 0.02610553428530693, 0.013521984219551086, -0.022266484797000885, 0.04419172182679176, -0.0035644504241645336, 0.02079484984278679, 0.012327613309025764, 0.0005501970881596208, -0.032034732401371, -0.031224267557263374, 0.022693045437335968, -0.009235045872628689, -0.0037084149662405252, 0.009272370487451553, -0.0001306343183387071, -0.03789994493126869, 0.01860872469842434, -0.017574314028024673, 0.019493838772177696, 0.014950963668525219, -0.016070686280727386, 0.009757583029568195, 0.01624131016433239, 0.04875592514872551, 0.028814196586608887, 0.007848722860217094, 0.010109496302902699, 0.009400338865816593, 0.02806771546602249, 0.006377087440341711, 0.05255231633782387, -0.019835088402032852, 0.011314530856907368, 0.02939005382359028, -0.000837792525999248, 0.0013356691924855113, -0.03150153160095215, -0.027577169239521027, 0.001863538520410657, 0.04905451834201813, -0.019931063055992126, -0.020016375929117203, -0.03900900483131409, 0.0029992572963237762, 0.028856853023171425, -0.0034764723386615515, 0.02996591106057167, 0.01922723837196827, -0.0023380876518785954, 0.015302876941859722, 0.005070744082331657, 0.03608706220984459, -0.03651362285017967, 0.024441946297883987, -0.014268466271460056, -0.00734751345589757, 0.014289794489741325, -0.04372250288724899, 0.016849160194396973, -0.0006315102800726891, -0.021498676389455795, -0.0048627955839037895, 0.01192238088697195, -0.010696017183363438, 0.0022714375518262386, -0.0064250752329826355, 0.0011683773482218385, 0.039883457124233246, -0.026425454765558243, 0.015622797422111034, 0.0014529734617099166, 0.010642697103321552, 0.023567495867609978, 0.03764401003718376, 0.011783747933804989, -0.03290918096899986, 0.002071487018838525, -0.03371964767575264, -0.0338689461350441, -0.007891379296779633, 0.007262201514095068, -0.0187473576515913, 0.029262086376547813, 0.0026313483249396086, -0.006782320328056812, -0.06368555873632431, -0.0035724486224353313, -0.0023594156373292208, -0.0012736845528706908, 0.019909735769033432, -0.005281358491629362, 0.015782758593559265, -0.009656274691224098, 0.02599889412522316, -0.004484222736209631, -0.0004312265373300761, 0.004993429873138666, 0.008093995042145252, 0.01980309560894966, -0.0169238094240427, -0.009661607444286346, 0.0364069826900959, -0.009693599306046963, 0.004273608326911926, 0.028600916266441345, -0.028600916266441345, -0.005497305188328028, -0.0061424789018929005, -0.018960637971758842, 0.019291222095489502, 0.018523411825299263, 0.027982402592897415, 0.007528801914304495, -0.05229638144373894, 0.022565077990293503, -0.009512310847640038, 0.02126406691968441, 0.01879001222550869, -0.01602802984416485, -0.0014316454762592912, -0.009347018785774708, -0.009442994371056557, -0.02744920179247856, -0.01387389749288559, 0.02373812161386013, -0.023034295067191124, -0.03674823045730591, 0.013756592757999897, 0.002857958897948265, -0.015025611966848373, -0.005955858156085014, -0.023247575387358665, -0.0014156494289636612, -0.009645611047744751, 0.03585245460271835, -0.006313103251159191, 0.005555957090109587, 0.005737245548516512, 0.008184639737010002, 0.03357035294175148, 0.04086454585194588, 0.022159844636917114, 0.0075607942417263985, 0.0034418143332004547, -0.03851845860481262, 0.0004655513621401042, -0.02358882501721382, 0.05839620530605316, 0.00045555384713225067, -0.023802105337381363, 0.0152922123670578, 0.031032314524054527, -0.016731856390833855, -0.013969873078167439, -0.004433568567037582, -0.00875516515225172, 0.013191399164497852, -0.01773427426815033, 0.040437985211610794, 0.020912153646349907, 0.00011488821473903954, -0.022884998470544815, 0.028408963233232498, 0.03243996575474739, -0.01762763410806656, 0.03305847942829132, 0.01276483852416277, 0.022735701873898506, -0.024313978850841522, 0.018992628902196884, -0.04896920546889305, 0.013703272677958012, -0.024164682254195213, 0.0023060955572873354, 0.015644125640392303, -0.031053641811013222, 0.030648410320281982, 0.0404166579246521, 0.025423036888241768, -0.008307276293635368, -0.0034364822786301374, 0.024313978850841522, -0.047390930354595184, -0.0065317158587276936, -0.004174965899437666, 0.015505492687225342, 0.027171937748789787, -0.040288686752319336, -0.03845447674393654, -0.020325632765889168, 0.03900900483131409, -0.0356818288564682, 0.013628624379634857, -0.005726581905037165, -0.044149067252874374, 0.020155008882284164, -0.04073657840490341, 0.015782758593559265, -0.023460855707526207, -0.004729495383799076, 0.003175213700160384, 0.014140497893095016, 0.006968940608203411, -0.001867537503130734, -0.024569915607571602, -0.023311559110879898, -0.01613467000424862, 0.004492220934480429, -0.021306723356246948, -0.020368289202451706, 0.014289794489741325, -0.03711080923676491, -0.030200520530343056, -0.006041170563548803, -0.008147315122187138, 0.006062498316168785, -0.022181173786520958, -0.012775502167642117, -0.020688209682703018, -0.014119169674813747, -0.0029992572963237762, 0.03120293840765953, -0.014791003428399563, -0.042912039905786514, -0.014204481616616249, -0.0015476166736334562, -0.018523411825299263, -0.001551615772768855, -0.015302876941859722, 0.005358672700822353, 0.03391160070896149, -0.030243176966905594, -0.029901927337050438, -0.012786166742444038, 0.03736674413084984, -0.0021741283126175404, 0.03732408955693245, -0.012882143259048462, -0.005795897915959358, -0.015868069604039192, -0.00930436234921217, 0.03197074681520462, 0.01740369014441967, 0.001446308451704681, -0.021818596869707108, -0.003673756727948785, 0.02574295736849308, 0.021456019952893257, -0.010594709776341915, -0.02265039086341858, 0.0022980975918471813, 0.004516214597970247, -0.017680954188108444, 0.013404680415987968, -0.00800868310034275, 0.001675585051998496, 0.030499113723635674, -0.02738521806895733, -0.0011523813009262085, 0.01181574072688818, -0.012956790626049042, -0.01094129029661417, 0.0032205358147621155, 0.045386090874671936, -0.01842743530869484, 0.010498733259737492, -0.0025553670711815357, 0.02744920179247856, -0.019013958051800728, 0.02862224541604519, 0.023546168580651283, -0.009267037734389305, -0.0013376687420532107, 0.011335859075188637, 0.008563212119042873, 0.024548586457967758, 0.027897091582417488, 0.02286367118358612, -0.002713994588702917, 0.014385770075023174, 0.034786053001880646, 0.007486145943403244, 0.017414353787899017, -0.02352483943104744, -0.01824614778161049, 0.034060899168252945, 0.01765962690114975, -0.005182716529816389, 0.0013236721279099584, -0.022159844636917114, 0.004550872836261988, -0.02429264970123768, 0.01889665238559246, -0.002472720807418227, -0.022671718150377274, 0.02290632762014866, -0.0031432216055691242, -0.02759849838912487, 0.002336754696443677, 0.010226800106465816, 0.019451182335615158, -0.011634452268481255, -0.028344979509711266, -0.008728505112230778, -0.010306780226528645, 0.03538323566317558, 0.019760439172387123, -0.004982765763998032, -0.016550567001104355, -0.0037217449862509966, -0.025039132684469223, -0.014375106431543827, 0.015452172607183456, 0.004153638146817684, 0.015462837181985378, -0.029411382973194122, 0.0049481079913675785, -0.029112789779901505, -0.03197074681520462, -0.019493838772177696, 0.008984441868960857, -0.013426007702946663, -0.011495819315314293, 0.023610152304172516, 0.05003560706973076, -0.028408963233232498, -0.016902480274438858, -0.011741092428565025, -0.011538475751876831, -0.01041342131793499, -0.014321786351501942, 0.017233064398169518, 0.008765828795731068, 0.02868622913956642, -0.002857958897948265, 0.028792869299650192, 0.01977110281586647, 0.024164682254195213, -0.008147315122187138, 0.01576142944395542, -0.027833105996251106, -0.01503627561032772, -0.041312433779239655, 0.02796107530593872, 0.011442499235272408, 0.01072267722338438, -0.021274730563163757, 0.001623597927391529, 0.02877154015004635, -0.011933044530451298, -0.03866775706410408, -0.020218992605805397, -0.0196644626557827, 0.026276158168911934, 0.004980099853128195, -0.021573323756456375, 0.0052360366098582745, 0.006451735273003578, 0.020549576729536057, 0.0012976785656064749, 0.004217621870338917, 0.026660064235329628, -0.022202501073479652, 0.021317386999726295, 0.0023394206073135138, -0.0023167594335973263, 0.010189476422965527, -0.02064555324614048, 0.002640679245814681, 0.03834783658385277, -0.036215029656887054, -0.012722182087600231, 0.02286367118358612, -0.009976196102797985, 0.020528249442577362, 0.02213851734995842, -0.0021554662380367517, -0.0017782262293621898, -0.01565478928387165, -0.009379010647535324, 0.03026450425386429, 0.006814312189817429, 0.002764648525044322, 0.017414353787899017, -0.0019768436904996634, -0.012199644930660725, 0.0002134471433237195, -0.010354768484830856, -0.010440081357955933, -0.022266484797000885, -0.01606002263724804, 0.0085578802973032, -0.023098278790712357, -0.03512730076909065, -0.03881705179810524, -0.003703082911670208, -0.023311559110879898, -0.007278197444975376, -0.013020775280892849, -0.009336354210972786, -0.01569744572043419, -0.020698873326182365, -0.008893797174096107, -0.03542589396238327, -0.029944583773612976, 0.013170071877539158, 0.02290632762014866, -0.008216631598770618, -0.008728505112230778, 0.03043512813746929, 0.013340695761144161, 0.016219982877373695, 0.024783195927739143, -0.02857958897948265, -0.02373812161386013, -0.002067487919703126, 0.0127435103058815, 0.010136156342923641, 0.01554814912378788, -0.014972291886806488, -0.014321786351501942, -0.009165730327367783, 0.03190676495432854, 0.008109991438686848, 0.010264124721288681, -0.021072113886475563, -0.0009890883229672909, 0.02599889412522316, 0.034871362149715424, 0.03160817176103592, -0.03540456295013428, -0.01212499663233757, -0.010205472819507122, 0.04308266192674637, 0.03523394092917442, 0.013244720175862312, -0.03681221604347229, 0.00741149764508009, -0.015100260265171528, 0.021946564316749573, -0.014982955530285835, -0.017819587141275406, -0.028025059029459953, -0.006968940608203411, -0.0013110085856169462, -0.024484602734446526, -0.006947612855583429, 0.034828707575798035, 0.003948355559259653, 0.01248757354915142, 0.0036604267079383135, 0.0008511225460097194, -0.017137089744210243, 0.0030392473563551903, 0.025359053164720535, 0.0021421362180262804, -0.028856853023171425, -0.008888465352356434, 0.035809796303510666, -0.019035285338759422, -0.013543312437832355, -0.02796107530593872, -0.0008451240137219429, -0.03152285888791084, -0.017179744318127632, 0.027513185515999794, -0.0070435889065265656, 0.0006764990976080298, 0.003633766667917371, -0.0028819527942687273, -0.018885988742113113, 0.05477043613791466, -0.02254375070333481, -0.011378515511751175, -0.0005861881654709578, -0.027875762432813644, -0.004676175303757191, 0.012029021047055721, 0.005918534006923437, 0.039520878344774246, -0.034679412841796875, -0.022522421553730965, 0.018544740974903107, -0.031181611120700836, -0.032248012721538544, 0.008163311518728733, -0.016251975670456886, 0.010109496302902699, 0.03171481192111969, -0.007635442074388266, 0.026041550561785698, 0.034722067415714264, -0.007571458350867033, -0.011591795831918716, 0.03401824086904526, -0.03971283137798309, 0.026382798328995705, 0.0006598365725949407, 0.001587606850080192, -0.0029566010925918818, 0.008957781828939915, 0.020730866119265556, 0.02224515751004219, -0.00019328546477481723, 0.0058332220651209354, 0.04156837239861488, -0.03474339470267296, 0.017862243577837944, 0.011335859075188637, 0.004220288246870041, 0.02192523702979088, 0.0597185418009758, -0.023140935227274895, -0.009272370487451553, 0.0033751640003174543, 0.03768666461110115, 0.011037266813218594, -0.013969873078167439, 0.0037777309771627188, 0.019504502415657043, 0.0009550967952236533, 0.041824307292699814, -0.019493838772177696, -0.006835640408098698, -0.026638735085725784, -0.016881152987480164, 0.03954220563173294, -0.03453011438250542, -0.013212727382779121, 0.014886979945003986, -0.027427874505519867, 0.03145887702703476, -0.011730427853763103, -0.034466128796339035, 0.022202501073479652, 0.02141336351633072], [0.0010682004503905773, 0.0020473841577768326, 0.03081391006708145, -0.007064817938953638, -0.03818392753601074, 0.053850870579481125, -0.006454417947679758, 0.03967601805925369, 0.025094233453273773, 0.005567076615989208, -0.017057295888662338, 0.01752074807882309, 0.04119071364402771, 0.0015754543710500002, -0.04308973625302315, 0.018345920369029045, -0.005957054439932108, 0.04218544065952301, -0.028236664831638336, 0.005199706181883812, 0.012151487171649933, 0.02688021957874298, 0.015180881135165691, 0.01108893845230341, -0.016899045556783676, -0.028417523950338364, 0.015135666355490685, -0.04706864431500435, 0.03764135017991066, -0.0708516463637352, 0.05647332966327667, -0.03746049106121063, 0.07148465514183044, -0.03198949620127678, -0.032079923897981644, -0.014073117636144161, -0.0010222791461274028, 0.0364205501973629, 0.0009904875187203288, -0.003727397881448269, 0.016537325456738472, 0.016006052494049072, 0.009783360175788403, -0.016367770731449127, 0.0008294096332974732, 0.024235151708126068, 0.048153799027204514, -0.047204289585351944, 0.005883580539375544, 0.016661666333675385, 0.01535043679177761, 0.03474760055541992, 0.014943502843379974, -0.03732484579086304, 0.023376069962978363, -0.02500380389392376, 0.01729467511177063, 0.0072343735955655575, 0.04105507209897041, 0.02211005426943302, 0.018651120364665985, -0.05009803920984268, -0.027581049129366875, 0.01183498278260231, -0.003054827218875289, -0.004007164854556322, -0.004021294414997101, 0.0253429152071476, -0.05520731583237648, -0.014073117636144161, -0.004674083553254604, 0.014253976754844189, 0.02230221778154373, -0.05511688441038132, -0.027626264840364456, 0.05443866178393364, -0.01935194991528988, -0.055523816496133804, 0.032622504979372025, 0.018809370696544647, -0.006437462288886309, 0.02584027871489525, 0.018345920369029045, 0.007850426249206066, 0.03382069617509842, -0.031288664788007736, -0.08884715288877487, 0.015339133329689503, -0.03103998489677906, 0.007392625790089369, -0.023489106446504593, 0.005838365759700537, -0.004823857918381691, 0.052856143563985825, -0.002450078958645463, 0.03325551003217697, 0.013485324569046497, -0.004001513123512268, -0.014762643724679947, 0.028824457898736, -0.020109297707676888, -0.04761122167110443, 0.008116062730550766, 0.018108541145920753, 0.01912587508559227, -0.04279584065079689, -0.035064104944467545, 0.05434823036193848, -0.009037314914166927, 0.028146235272288322, 0.030610444024205208, -0.01584780029952526, -0.06135653331875801, 0.028304487466812134, -0.0013719876296818256, 0.0018651119899004698, -0.00016946732648648322, -0.005140361376106739, -0.014197458513081074, 0.011631516739726067, 0.014785251580178738, 0.005315569229424, 0.015621725469827652, -0.07275067269802094, -0.01454787328839302, -0.021160542964935303, -0.019532809033989906, 0.009969871491193771, -0.049148526042699814, -0.011744553223252296, 0.02042580209672451, -0.033956341445446014, 0.04076117277145386, -0.016085177659988403, 0.03587797284126282, 0.017113815993070602, 0.03501889109611511, -0.021827461197972298, 0.009715537540614605, -0.048153799027204514, 0.010162034071981907, 0.002284762216731906, 0.02816884219646454, -0.0038376091979444027, -0.030452191829681396, 0.026518501341342926, 0.01843634992837906, 0.04607391729950905, 0.019555415958166122, -0.004318016581237316, -0.014536569826304913, 0.012626242823898792, -0.013892258517444134, -0.04363231733441353, -0.0013783460017293692, 0.017012082040309906, -0.017226852476596832, 0.042818449437618256, 0.00332046439871192, 0.012354954145848751, -0.03020351007580757, -0.03431805968284607, 0.02007538639008999, -0.024122115224599838, 0.0737001821398735, 0.02031276561319828, -0.02394125610589981, 0.03205731883645058, -0.06565193831920624, -0.014785251580178738, -0.018391134217381477, -0.00916165579110384, -0.013575754128396511, -0.03931429982185364, -0.005719676613807678, -0.06691795587539673, 0.004281279630959034, 0.024732515215873718, 0.018798068165779114, 0.03981166332960129, -0.013394895009696484, -0.006878306623548269, -0.042095012962818146, 0.007245677523314953, -0.05398651212453842, 0.021714424714446068, 0.0627581924200058, -0.024235151708126068, 0.015180881135165691, 0.03807089105248451, 0.02107011340558529, -0.013270554132759571, -0.004951024428009987, 0.004391490947455168, -0.04306713119149208, 0.06158260628581047, -0.011343271471560001, -0.014253976754844189, -0.03305204585194588, -0.0055642505176365376, 0.0444461815059185, -0.02821405790746212, 0.031220844015479088, 0.0627581924200058, -0.046480849385261536, -0.01233234629034996, 0.010433323681354523, -0.035561468452215195, 0.0678674653172493, -0.004230413120239973, 0.001000378280878067, -0.052584853023290634, -0.060452233999967575, 0.014807858504354954, -0.018696334213018417, 0.055297743529081345, 0.009500767104327679, -0.03522235527634621, -0.009071226231753826, 0.06149217486381531, -0.02816884219646454, -0.02068578638136387, -0.026925435289740562, 0.0023780176416039467, -0.01813114807009697, -0.012727975845336914, 0.04247933626174927, 0.02920878306031227, -0.04874159395694733, -0.08563689887523651, -0.009941612370312214, 0.0072400253266096115, 0.0037019646260887384, 0.011348923668265343, -0.017385104671120644, 0.050414539873600006, -0.045147012919187546, -0.04433314502239227, 0.03088173270225525, 0.05810106173157692, 0.03883954510092735, -0.040828995406627655, -0.003419372020289302, 0.025682026520371437, -0.02461947873234749, 0.009851181879639626, -0.015260007232427597, -0.0006061613676138222, 0.0779503732919693, 0.008409959264099598, 0.021883979439735413, -0.004216283559799194, 0.04530526325106621, -0.0626225471496582, 0.007494358811527491, 0.04733993113040924, 0.026473285630345345, -0.0043999687768518925, 0.03325551003217697, -0.037663958966732025, 0.011631516739726067, -0.02966093271970749, -0.033074650913476944, 0.03076869621872902, -0.03363983705639839, -0.004168242681771517, 0.052856143563985825, 0.022132661193609238, -0.020742306485772133, 0.05674462020397186, -0.050595398992300034, 0.01502262894064188, 0.014152243733406067, 0.009952915832400322, 0.011445005424320698, 0.010540708899497986, 0.010970249772071838, 0.010738523676991463, -0.009749448858201504, 0.033843304961919785, -0.0383421815931797, -0.015079147182404995, -0.032735541462898254, -0.0026224604807794094, 0.020798824727535248, 0.0015712155727669597, 0.008127367123961449, -0.027151508256793022, -0.017351193353533745, 0.00579315098002553, 0.02248307690024376, -0.01856069080531597, 0.0278297308832407, -0.007313499692827463, 0.07017342746257782, 0.019261520355939865, -0.022505683824419975, -0.03829696401953697, 0.007601744029670954, 0.008737767115235329, 0.018153756856918335, 0.05226834863424301, 0.0364205501973629, -0.03409198671579361, -0.02394125610589981, 0.014140939339995384, -0.0161869116127491, 0.03420502319931984, -0.023963863030076027, -0.015983443707227707, -0.029457464814186096, 0.019363252446055412, -0.053579580038785934, -0.05448387563228607, 0.016616452485322952, -0.010552012361586094, -0.02588549256324768, 0.009540330618619919, 0.031175628304481506, -0.013767917640507221, 0.06510936468839645, 0.05032411217689514, 0.015576510690152645, -0.019747579470276833, 0.01726076379418373, -0.014773947186768055, 0.04279584065079689, 0.07374539971351624, -0.03049740567803383, -0.025862885639071465, -0.00705351447686553, -0.03187645971775055, 0.05190663039684296, -0.02015451341867447, 0.004281279630959034, -0.0006227637059055269, -0.00529861357063055, 0.00751131447032094, 0.019001534208655357, -0.0024317102506756783, 0.05027889832854271, -0.030180903151631355, -0.026812396943569183, -0.036895304918289185, -0.007183507084846497, -0.019838009029626846, 0.04297669976949692, 0.041439395397901535, -0.02209874987602234, 0.018413741141557693, 0.03420502319931984, 0.01169933844357729, -0.037663958966732025, 0.009766404516994953, -0.006669188383966684, -0.0045469170436263084, 0.0001431508717359975, -0.016514718532562256, -0.029502680525183678, 0.0026775661390274763, 0.031288664788007736, 0.035674504935741425, 0.05398651212453842, 0.032441645860672, 0.05918622016906738, 0.025908101350069046, -0.007104380987584591, 0.02455165609717369, 0.001559911877848208, -0.01166542712599039, -0.007047862280160189, 0.030610444024205208, 0.03054262138903141, -0.009613804519176483, -0.02405429258942604, -0.04568959027528763, 0.044762685894966125, 0.02694804221391678, -0.01702338643372059, -0.025546381250023842, -0.02595331519842148, 0.011009812355041504, 0.023850826546549797, 0.03490585461258888, 0.06302948296070099, -0.0028909235261380672, -0.07030907273292542, 0.007550877518951893, -0.01311230193823576, -0.001935760141350329, -0.021963106468319893, -0.005838365759700537, -0.02694804221391678, -0.014513961970806122, -0.012490598484873772, 0.022810883820056915, 0.05697069317102432, 0.0394047275185585, -0.0054059987887740135, -0.03551625460386276, 0.007189158815890551, -0.03397895023226738, 0.027626264840364456, -0.043700139969587326, -0.03818392753601074, -0.02027885429561138, -0.04910331219434738, 0.007500011008232832, 0.021239668130874634, 0.0060305288061499596, 0.018458956852555275, 0.01502262894064188, 0.04417489469051361, -0.013406198471784592, 0.02561420388519764, -0.007737388834357262, -0.02500380389392376, 0.049691103398799896, -0.02209874987602234, -0.05746805667877197, 0.0211944542825222, 0.07745300978422165, 0.02572724223136902, 0.0010208662133663893, -0.05986444279551506, -0.022200483828783035, -0.017498141154646873, 0.002905053086578846, -0.007822166197001934, -0.050866689532995224, 0.0136322733014822, -0.01790507510304451, 0.017995504662394524, 0.029140962287783623, -0.008636033162474632, -0.05936707928776741, 0.01683122292160988, -0.003303508972749114, -0.012049753218889236, -0.03070087358355522, 0.0030265680979937315, -0.013406198471784592, 0.012490598484873772, 0.021861372515559196, -0.03994730859994888, 0.028507953509688377, -0.028643598780035973, 0.02810101956129074, -0.05525252968072891, 0.023873433470726013, -0.04001512750983238, 0.012185398489236832, -0.09458943456411362, 0.02561420388519764, -0.003566320054233074, -0.01965714991092682, -0.040444668382406235, 0.0024726863484829664, 0.02565941959619522, 0.00043554604053497314, 0.015825191512703896, 0.04761122167110443, 0.018447652459144592, 0.05647332966327667, 0.010834604501724243, 0.02511684037744999, -0.03397895023226738, 0.007839121855795383, 0.007200462743639946, -0.019758883863687515, -0.02321781776845455, 0.014943502843379974, -0.0016743618762120605, -0.00903166364878416, 0.0323060005903244, -0.01584780029952526, -0.0526752844452858, -0.07573484629392624, -0.0423889085650444, -0.037279631942510605, 0.01124153845012188, -0.009721189737319946, 0.009591196663677692, -0.05131883919239044, 0.03142431005835533, 0.01854938641190529, 0.03687269985675812, 0.018651120364665985, -0.006646580994129181, -0.041936758905649185, 0.008421262726187706, 0.009726841002702713, 0.05461952090263367, -0.008799937553703785, -0.013654880225658417, 0.023489106446504593, -0.03703095018863678, 0.020097995176911354, 0.04026380926370621, -0.013666183687746525, -0.02660893090069294, -0.041981976479291916, 0.02175964042544365, -0.024913374334573746, 0.027965376153588295, 0.0015754543710500002, -0.012388864532113075, -0.049419816583395004, 0.010178989730775356, 0.01469482108950615, -0.032893791794776917, 0.013496628031134605, 0.03908822685480118, 0.03255468234419823, -0.052132703363895416, -0.03895258158445358, 0.00921817496418953, -0.022166572511196136, -0.014593088068068027, -0.0014949154574424028, 0.007319151423871517, -0.013100998476147652, -0.0046288687735795975, -0.024845551699399948, -0.004741905722767115, 0.001623495132662356, -0.011631516739726067, -0.07442361861467361, -0.0019951045978814363, 0.0293896421790123, -0.017170334234833717, -0.0253429152071476, -0.042524553835392, 0.026021137833595276, 0.010399412363767624, -0.009370774962008, 0.008658641017973423, 0.015610422007739544, -0.025862885639071465, -0.042434122413396835, 0.04336102679371834, 0.00031950639095157385, -0.003422197885811329, 0.005569902714341879, 0.04116810858249664, -0.008562559261918068, 0.03813871368765831, -0.0011904218699783087, 0.010314634069800377, -0.0021632472053170204, -0.04555394500494003, 0.022799581289291382, -0.02416732907295227, -0.02837231010198593, 0.011218930594623089, -8.795698522590101e-05, 0.03883954510092735, -0.003942168317735195, 0.03696312755346298, -0.017780734226107597, 0.0034758904948830605, 0.038658685982227325, -0.028304487466812134, -0.02042580209672451, -0.006149217486381531, 0.00029248345526866615, 0.018831979483366013, -0.021714424714446068, -0.025682026520371437, 0.006120958365499973, -0.008975144475698471, 0.00950641930103302, 0.0005362196825444698, 0.00690091447904706, 0.05706112086772919, -0.0047871205024421215, 0.01816505938768387, -0.02810101956129074, 0.02229091338813305, -0.015440866351127625, 0.006505284458398819, 0.029615717008709908, -0.009890745393931866, 0.030859125778079033, -0.013247947208583355, 0.013971383683383465, -0.011337620206177235, -0.011038071475923061, -0.003990209195762873, 0.032283391803503036, 0.0012024319730699062, 0.016752095893025398, 0.022019624710083008, 0.006092699244618416, 0.021510958671569824, 0.04394882172346115, -0.013722702860832214, 0.024348188191652298, 0.04051249101758003, -0.00475320965051651, -0.007963462732732296, -0.012626242823898792, -0.005575554445385933, 0.018458956852555275, -0.015418258495628834, -0.002807558747008443, 0.031853850930929184, -0.01299926545470953, 0.026925435289740562, -0.0020502102561295033, 0.0445818267762661, 0.027852337807416916, 0.018809370696544647, -0.04311234503984451, -0.03133388236165047, 0.024935981258749962, -0.016424288973212242, -0.03531278669834137, -0.012761887162923813, 0.044310539960861206, -0.022618722170591354, 0.013654880225658417, 0.001853808294981718, -0.009003404527902603, -0.03574232757091522, -0.009907701052725315, -0.021556172519922256, -0.03271293267607689, 0.026789790019392967, -0.019691061228513718, -0.018391134217381477, 0.0303843691945076, 0.0006962378392927349, -0.004965153988450766, -0.015587814152240753, -0.00967597495764494, 0.02107011340558529, -0.03275814652442932, -0.00013087574916426092, 0.047249503433704376, 0.027807123959064484, -0.03020351007580757, -0.015361740253865719, -0.003874346148222685, 0.03316508233547211, 0.03845521807670593, 0.049374599009752274, 0.027309760451316833, 0.014728732407093048, -0.012886228039860725, 0.022087447345256805, -0.042705412954092026, -0.005055583547800779, -0.045418303459882736, 0.018696334213018417, -0.0018057675333693624, -0.020527536049485207, 0.03906561806797981, 0.035177141427993774, -0.017803341150283813, -0.0252750925719738, 0.010981553234159946, -0.03992469981312752, 0.029525287449359894, 0.03169560059905052, 0.0048634205013513565, 0.011145456694066525, 0.020640572533011436, -0.002361062215641141, -0.006550499238073826, -0.00024956470588222146, -0.0037387018091976643, 0.011608908884227276, -0.014287888072431087, -0.028259271755814552, -0.0016093655722215772, -0.04806337133049965, 0.027241937816143036, -0.02500380389392376, -0.0024020380806177855, -0.02927660569548607, -0.0465712808072567, 0.02909574657678604, -0.02100229077041149, -0.002936138305813074, -0.011524131521582603, 0.02749061957001686, -0.04516962170600891, 1.4736769117007498e-05, -0.011733249761164188, -0.004255846608430147, 0.03165038302540779, 0.029118353500962257, 0.0027778863441199064, 0.0227204542607069, 0.018029415979981422, -0.020414497703313828, -0.010518101043999195, -0.01572345942258835, -0.023534322157502174, 0.03685009106993675, 0.025026410818099976, 0.031740814447402954, -0.049917180091142654, -0.027151508256793022, 0.0001985213893931359, -0.016017355024814606, 0.0293896421790123, 0.05077626183629036, -0.005194053985178471, -0.015011325478553772, -0.017317282035946846, -0.010608530603349209, -0.011196323670446873, -0.01785985939204693, 0.018108541145920753, -0.029005317017436028, -0.016616452485322952, 0.018108541145920753, -0.00213781394995749, -0.04417489469051361, 0.033345941454172134, 0.013553147204220295, -0.012773190625011921, -0.013700095005333424, -0.015406955033540726, -0.0403994545340538, -0.021601388230919838, -0.007680870126932859, -0.004043901804834604, 0.020097995176911354, -0.0031311274506151676, -0.0057761953212320805, -0.012253220193088055, 0.011292405426502228, 0.039992522448301315, -0.036510977894067764, -0.027807123959064484, -0.039382122457027435, -0.007997374050319195, 0.025930708274245262, -0.022042231634259224, 0.03293900936841965, -0.0036991387605667114, -0.030474798753857613, -0.023195210844278336, 0.016446895897388458, 0.0009028837666846812, -0.015870407223701477, 0.03379809111356735, 0.014253976754844189, 0.006036180537194014, 0.004433879628777504, -0.015926925465464592, -0.022697847336530685, -0.005502080079168081, 0.00805389229208231, 0.01856069080531597, 0.009071226231753826, 0.00020170056086499244, 0.009630760177969933, 0.018458956852555275, 0.03149213269352913, 0.022234395146369934, 0.015146969817578793, -0.004936894867569208, -0.045418303459882736, -0.01047853846102953, 0.018198970705270767, -0.011162412352859974, -0.017385104671120644, 0.028033198788762093, 0.034566741436719894, 0.020787520334124565, 0.004097594413906336, -0.01732858642935753, 0.0001655816740822047, -0.022776972502470016, 0.0032837274484336376, -0.03463456407189369, 0.0227882768958807, -0.017396407201886177, -0.005194053985178471, -0.001003204146400094, 0.014129635877907276, -0.02103620208799839, -0.009455552324652672, -0.0034617609344422817, 0.024800337851047516, 0.0003403476148378104, -0.015067843720316887, -0.033119868487119675, -0.0006725706625729799, -0.05461952090263367, -0.00264789373613894, -0.012298434972763062, -0.002715716138482094, 0.01172194629907608, -0.016198214143514633, 0.007607396226376295, -0.02169181779026985, -0.008426914922893047, -0.018696334213018417, -0.014231369830667973, 0.08929929882287979, -0.040715958923101425, -0.021590083837509155, -0.015305222012102604, -0.0072287218645215034, -0.02317260392010212, -0.022799581289291382, 0.025795063003897667, -0.02199701778590679, 0.023963863030076027, 0.029073139652609825, -0.030361762270331383, -0.012253220193088055, 0.029841791838407516, -0.015293917618691921, 0.014412228949368, 0.0012511792592704296, -0.024416010826826096, 0.039721231907606125, -0.018583297729492188, 0.01546347327530384, -0.022550899535417557, -0.015836495906114578, 0.007562181446701288, 0.004216283559799194, 0.01832331158220768, 0.014039206318557262, -0.023353463038802147, 0.014321799390017986, -0.019826704636216164, 0.007093077525496483, -0.026699360460042953, -0.001825548941269517, -0.0018792415503412485, -0.018809370696544647, 0.012264523655176163, 0.06718924641609192, -0.06189911067485809, 0.006748314015567303, -0.0011473264312371612, -0.05425780266523361, 0.025184663012623787, 0.00434345006942749, 0.027513226494193077, -0.00705351447686553, 0.033006828278303146, -0.0024755122140049934, -0.023003047332167625, -0.013982688076794147, -0.018198970705270767, 0.030022650957107544, -0.02187267690896988, 0.00805389229208231, -0.006974388379603624, -0.008590818382799625, 0.017204245552420616, -0.025026410818099976, -0.007680870126932859, 0.019250215962529182, 0.00982857495546341, 0.0038093498442322016, 0.006454417947679758, 0.02810101956129074, -0.009709886275231838, 0.04661649465560913, 0.026586323976516724, 0.016978170722723007, -0.008031285367906094, -0.022822188213467598, 0.012264523655176163, -0.006058787927031517, 0.007743040565401316, 0.006375291850417852, 0.03305204585194588, 0.00744349230080843, -0.012581028044223785, -0.012434079311788082, -0.009721189737319946, 0.02898271009325981, -0.03779960051178932, 7.166375144151971e-05, -0.015746066346764565, -0.01047853846102953, 0.048696376383304596, 0.01154673844575882, 0.0383421815931797, 0.014287888072431087, 0.032464250922203064, 0.011914108879864216, -0.032351214438676834, 0.011320664547383785, 0.01124153845012188, 0.00436323182657361, -0.016695577651262283, -0.014920895919203758, 0.015508688986301422, 0.005109276622533798, 0.02737758308649063, 0.004931243136525154, -0.015542599372565746, 0.007155247498303652, 0.001003204146400094, -0.021431831642985344, -0.025365522131323814, 0.03526757284998894, -0.007759996224194765, 0.0293896421790123, -0.021748336032032967, 0.02522987872362137, -0.05172577127814293, -0.0011141217546537519, 0.015486081130802631, -0.03219296410679817, 0.015101755037903786, 0.019566720351576805, 0.02344389259815216, 0.03481542319059372, 0.015429562889039516, -0.006290514022111893, -0.037392668426036835, 0.0076865218579769135, 0.01809723861515522, -0.02366996556520462, 0.02561420388519764, -0.01813114807009697, 0.003685008967295289, 0.006205736193805933, 0.0616278201341629, 0.04008295014500618, 0.04214022681117058, -0.013575754128396511, -0.00944990012794733, 0.01504523679614067, 0.0015274136094376445, 0.0066861435770988464, -0.011959323659539223, 0.015180881135165691, -0.00803693663328886, 0.010941989719867706, -0.01393747329711914, -0.03890736401081085, 0.013338376767933369, 0.019103268161416054, 0.0030152644030749798, 0.012083664536476135, 0.013349680230021477, -0.008268662728369236, 0.007466099690645933, 0.019521504640579224, -0.017532052472233772, -0.015373043715953827, -0.006397899240255356, 0.03669184073805809, -0.0035974052734673023, 0.017972897738218307, 0.015124362893402576, 0.030113080516457558, 0.012208005413413048, 0.01954411342740059, -0.038161322474479675, 0.02461947873234749, 0.016729488968849182, -0.004066509194672108, 0.026292426511645317, -0.001825548941269517, 0.011654123663902283, -0.02203092910349369, -0.0058779288083314896, 0.017351193353533745, 0.03388851881027222, 0.0019202175317332149, -0.001270960783585906, 0.02100229077041149, -0.028620989993214607, 0.04313495382666588, 0.04485311731696129, -0.015203488059341908, 0.0013797589344903827, 0.025568990036845207, 0.005256224423646927, -0.031220844015479088, 0.0034702385310083628, -0.004626042675226927, -0.008217796683311462, -0.0303165465593338, -0.0026591974310576916, -0.01151282712817192, 0.02909574657678604, 0.022381342947483063, 0.017950288951396942, -0.0010286375181749463, -0.008138670586049557, 0.008472129702568054, 0.0004691039212048054, 0.02816884219646454, 0.012920139357447624, 0.05398651212453842, -0.0002594554389361292, -0.012219308875501156, 0.009726841002702713, -0.010659397579729557, 0.0025532252620905638, 0.026857612654566765, 0.005394694861024618, -0.026247212663292885, -0.01471742894500494, 0.012569724582135677, -0.028620989993214607, -0.02321781776845455, -0.009512070566415787, -0.0024006252642720938, 0.01866242289543152, 0.02511684037744999, -0.003416545921936631, 7.5781213126902e-06, 0.03099476918578148, 0.016051266342401505, 0.03967601805925369, 0.008743418380618095, -0.015395651571452618, -0.001688491553068161, -0.019419772550463676, 0.03275814652442932, 0.017577268183231354, 0.019363252446055412, 0.003936516586691141, 0.009302952326834202, -0.007946507073938847, 0.010908079333603382, 0.011490220203995705, 0.006974388379603624, 0.020097995176911354, -0.0136322733014822, -0.02138661779463291, -0.016978170722723007, 0.009410337544977665, -0.001000378280878067, -0.0011784116504713893, -0.023783003911376, -0.001541543286293745, -0.006160521414130926, -0.01166542712599039, 0.011461961083114147, -0.0005860266392119229, -0.014943502843379974, 0.03461195528507233, 0.03675965964794159, 0.0025942011270672083, -0.05624725669622421, -0.03892997279763222, -0.01026941929012537, -0.024574263021349907, -0.02172572910785675, 0.002752453088760376, -0.01740771159529686, -0.004919939208775759, 0.014118332415819168, -0.043767958879470825, -0.014095724560320377, 0.00616617314517498, 0.017916377633810043, -0.023263033479452133, -0.03660140931606293, 0.016729488968849182, 0.012309739366173744, -0.01347402110695839, -0.0046995170414447784, 0.008342137560248375, 0.05290135741233826, 0.04951024428009987, 0.0017450100276619196, 0.012818405404686928, -0.008924278430640697, -0.021963106468319893, -0.02699325606226921, 0.016593843698501587, -0.01882067508995533, 0.009252085350453854, -0.005728154443204403, -0.039269085973501205, -0.004586480092257261, -0.0070874253287911415, 0.03709877282381058, 0.005134709645062685, 0.0038941276725381613, 0.032079923897981644, 0.016819918528199196, 0.0030633050482720137, 0.008393003605306149, 0.008511693216860294, 0.02168051339685917, 0.010732871480286121, 0.017532052472233772, 0.018775461241602898, 0.010043345391750336, 0.010314634069800377, -0.011218930594623089, -0.015429562889039516, -0.005883580539375544, 0.0008068022434599698, 0.04297669976949692, -0.004939720965921879, 0.009896396659314632, 0.020753609016537666, 0.03027133271098137, 0.010020737536251545, -0.014468747191131115, -0.002324325032532215, 0.02504901960492134, -0.014683517627418041, 0.05484559386968613, 0.01634516380727291, -0.04162025451660156, 0.0010999921942129731, -0.0072287218645215034, 0.009461204521358013, -0.017837252467870712, -0.01328185759484768, -0.01779203861951828, 0.011326315812766552, 0.004772990942001343, -0.00013069913256913424, 0.011134153231978416, 0.02837231010198593, 0.008613426238298416, 0.008251707069575787, 0.012411472387611866, -0.020097995176911354, 0.006765269674360752, -0.03325551003217697, 0.004442357458174229, 0.009076878428459167, 0.018198970705270767, -0.02721933089196682, 0.009919004514813423, 0.008370396681129932, 0.000945272680837661, -0.00826301146298647, 0.0029870050493627787, 0.01405050978064537, 0.0021759639494121075, -0.015124362893402576, -0.038658685982227325, 0.0807989090681076, -0.003577623749151826, 0.012954050675034523, 9.217379556503147e-06, 0.0313112735748291, 0.01626603677868843, 0.0013620968675240874, 0.004795598331838846, 0.026541108265519142, 0.033685050904750824, -0.023692574352025986, 0.020776215940713882, -0.009941612370312214, 0.028892280533909798, 0.0009276106138713658, 0.054800380021333694, 0.0323738232254982, 0.037483099848032, 0.027015864849090576, 0.02638285607099533, -0.009020359255373478, -0.021092720329761505, 0.016006052494049072, -0.006493980530649424, 0.01793898642063141, -0.03737005963921547, -0.013982688076794147, 0.024845551699399948, -0.016593843698501587, 0.011801072396337986, 0.003495672019198537, 0.012083664536476135, 0.018911104649305344, -0.0039478205144405365, -0.020708395168185234, -0.029140962287783623, -0.003162212437018752, 0.013666183687746525, 0.021058809012174606, -0.005990965757519007, -0.016469504684209824, 0.0030689570121467113, 0.0075960922986269, 0.0047814687713980675, -0.011676731519401073, 0.035177141427993774, -0.023963863030076027, -0.002329976996406913, 0.026699360460042953, -0.01710251159965992, 0.0303165465593338, -0.0008449522429145873, -0.03363983705639839, -0.022776972502470016, 0.008325181901454926, 0.029525287449359894, -0.01752074807882309, -0.013236642815172672, -0.015067843720316887, 0.008884714916348457, 0.007341758813709021, -0.005244920961558819, -0.027784517034888268, 0.03852304071187973, -0.006024876609444618, -0.021239668130874634, -0.012094967998564243, 0.006578758358955383, -0.014039206318557262, 0.0013175886124372482, 0.011139805428683758, -0.028892280533909798, -0.000332223076839, 0.0011120024137198925, 0.002119445474818349, -0.0008809827850200236, -0.00751131447032094, 0.011801072396337986, -0.03004525788128376, -0.01166542712599039, 0.0076865218579769135, -0.012445383705198765, 0.05990965664386749, 0.01973627507686615, 0.0009883680613711476, -0.003682183101773262, -0.008421262726187706, 0.04810858517885208, -0.021318795159459114, 0.03508671373128891, 0.0014963285066187382, -0.03779960051178932, -0.007522618398070335, -0.002789190271869302, 0.03725702315568924, -0.01040506362915039, -0.015429562889039516, -0.008336485363543034, 0.014773947186768055, -0.021590083837509155, 0.008681247942149639, -0.01580258458852768, -0.01233234629034996, 0.0007333281100727618, 0.021217061206698418, -0.006584410555660725, 0.010925034992396832, -0.00029248345526866615, -0.00935381930321455, 0.014559176750481129, -0.008291270583868027, -0.015429562889039516, 0.010145078413188457, -0.015938229858875275, -0.06257732957601547, -0.02916356921195984, 0.021047506481409073, -0.011060679331421852, 0.006895262282341719, -0.008607774041593075, -0.019532809033989906, -0.0022974787279963493, 0.0014595914399251342, 0.012773190625011921, 0.006765269674360752, 0.00420780573040247, -0.00616617314517498, 0.05100233480334282, 0.04001512750983238, 0.011925413273274899, 0.012422775849699974, 0.007709129247814417, 0.015373043715953827, -0.012773190625011921, -0.0043943170458078384, -0.01740771159529686, 0.01286362111568451, -0.014898288063704967, 0.015033932402729988, -0.01042201928794384, 0.007104380987584591, -0.0036171867977827787, -0.019679756835103035, -0.012467990629374981, -0.03370765969157219, 0.04107767716050148, -0.01679731160402298, -0.05584032088518143, 0.013926168903708458, 0.0023384548258036375, 0.0019075009040534496, 0.019442379474639893, -0.01634516380727291, 0.007652611006051302, 0.03382069617509842, -0.008155626244843006, 0.009596848860383034, 0.0014080182882025838, 0.03325551003217697, 0.006149217486381531, -0.006307469680905342, -0.01076678279787302, -0.009992478415369987, -0.0278297308832407, -0.012241916730999947, -0.0076356553472578526, -0.01637907326221466, 0.0025927883107215166, 0.00616617314517498, -0.008183885365724564, 0.00916165579110384, -0.02477772906422615, 0.0038206535391509533, 0.019340645521879196, -0.027513226494193077, 0.0016206692671403289, 0.010704612359404564, 0.03802567720413208, -0.049148526042699814, 0.017667697742581367, 0.012581028044223785, -0.010874168016016483, -0.0009219587664119899, 0.006867003161460161, 0.014299191534519196, 0.015610422007739544, -0.004269976168870926, -0.0029276604764163494, -0.003786742454394698, 0.01152978278696537, 0.034566741436719894, 0.02015451341867447, 0.022166572511196136, -0.022121358662843704, -0.011524131521582603, -0.04297669976949692, 0.032464250922203064, -0.021352706477046013, 0.022516988217830658, -0.013971383683383465, 0.004227587021887302, 0.012987961061298847, -0.007302195765078068, -0.008291270583868027, 0.0076356553472578526, -0.040331631898880005, -0.015373043715953827, -0.04229847714304924, 0.0011558042606338859, 0.010811997577548027, 0.03020351007580757, 0.011778464540839195, 0.01882067508995533, 0.023127388209104538, 0.037776995450258255, -0.06619451940059662, 0.020674483850598335, 0.0033148126676678658, 0.016401682049036026, -0.05240399390459061, -0.02538813091814518, -0.0010145078413188457, 0.009856834076344967, -0.01538434810936451, 0.005165794864296913, 0.012841013260185719, -0.004984935745596886, 0.024845551699399948, 0.024302974343299866, -0.006217039655894041, -0.0005111395730637014, -0.01843634992837906, 0.02389604039490223, 0.006725706625729799, -0.04035424068570137, -0.03126605972647667, -0.013338376767933369, -0.0344310961663723, -0.0012610700214281678, 0.015395651571452618, -0.013869650661945343, -0.015339133329689503, -0.014197458513081074, -0.022166572511196136, -0.007059166207909584, 0.03562929108738899, -0.02816884219646454, -0.029118353500962257, -0.008867759257555008, -0.008912974037230015, -0.004823857918381691, -0.006024876609444618, -0.024822944775223732, 0.008816893212497234, 0.016130393370985985, -0.022856099531054497, 0.008890367113053799, 0.007856077514588833, -0.007341758813709021, 0.004216283559799194, 0.03904300928115845, -0.055071670562028885, 0.03020351007580757, 0.005838365759700537, 0.018345920369029045, 0.04729471728205681, -0.010535056702792645, -0.0272645466029644, -0.017837252467870712, -0.006007921416312456, -0.024483833461999893, 0.024958590045571327, -0.012422775849699974, -0.017611177638173103, -0.015067843720316887, -0.03153734654188156, -0.030678266659379005, -0.003648272017017007, 0.0007368605001829565, -0.002657784614712, 0.022132661193609238, 0.04379056766629219, 0.02339867688715458, -0.017509445548057556, 0.008675596676766872, 0.01695556379854679, -0.006358336191624403, 0.01488698460161686, -0.004750383552163839, 0.002847121562808752, 0.014830466359853745, 0.009958567097783089, 0.032464250922203064, -0.01729467511177063, 0.004069335293024778, 0.03730224072933197, -0.01713642291724682, -0.00713829230517149, -0.014344406314194202, -0.046706926077604294, -0.0192728228867054, 0.004292583558708429, 0.01057461928576231, 0.014649606309831142, -0.019996261224150658, 0.04383578151464462, 0.025862885639071465, -0.0020940119866281748, 0.01299926545470953, -0.03775438666343689, -0.01885458640754223, 0.014016599394381046, -0.03363983705639839, 0.014966110698878765, 0.015813888981938362, 0.01752074807882309, -0.035448431968688965, -0.03917865455150604, 0.0040297722443938255, 0.04302191734313965, -0.007110032718628645, 0.00996421929448843, -0.012818405404686928, -0.014728732407093048, 0.012230613268911839, -0.02039189077913761, 0.006601365748792887, -0.012422775849699974, -0.007618699688464403, -0.0029926570132374763, -0.008025633171200752, -0.017113815993070602, 0.01821027509868145, -0.05990965664386749, -0.012897531501948833, 0.015666941180825233, 0.005745110101997852, -0.016808614134788513, 0.008788634091615677, -0.01718163676559925, -0.0161869116127491, 0.004880376160144806, -0.04761122167110443, 0.008969493210315704, 0.0017506618751212955, 0.032125141471624374, -0.0019682582933455706, 0.014073117636144161, 0.002376604825258255, 0.005524687469005585, 0.00822910014539957, 0.01028637494891882, -0.03366244584321976, -0.022856099531054497, 0.005815758369863033, -0.001706860028207302, 0.010710264556109905, 0.03180863708257675, 0.03217035531997681, -0.018956320360302925, -0.021092720329761505, 0.016966866329312325, 0.0060305288061499596, 0.014706125482916832, 0.009150352329015732, 0.021217061206698418, -0.00981161929666996, 0.016887741163372993, 0.020674483850598335, 0.026654144749045372, 0.0056292470544576645, 0.001623495132662356, -0.016537325456738472, -0.02087794989347458, 0.02522987872362137, -0.0272645466029644, 0.020188424736261368, -0.0010484190424904227, -0.022166572511196136, 0.005697069223970175, 0.02294652909040451, -0.0394047275185585, 0.04467225819826126, -0.0134175019338727, 0.029140962287783623, -0.011490220203995705, 0.0026139826513826847, -0.0005817877827212214, 0.010263768024742603], [0.022351397201418877, -0.0033349611330777407, 0.04293941333889961, 0.010780655778944492, -0.045046307146549225, 0.023519348353147507, 0.006217627320438623, 0.0009761560359038413, 0.02124069631099701, 0.022328495979309082, -0.015549792908132076, 0.008925672620534897, -0.014255885034799576, -0.01646583341062069, 0.006904657930135727, 0.055374667048454285, 0.0006562573835253716, 0.023118579760193825, -0.021813223138451576, -0.003423702670261264, 0.016339877620339394, 0.04394705966114998, 0.011931431479752064, 0.03361869975924492, -0.028282761573791504, 0.011250126175582409, 0.017519280314445496, 0.003595460206270218, 0.046168457716703415, -0.0239773690700531, 0.024046072736382484, -0.024000270292162895, 0.0674206018447876, -0.01646583341062069, 0.03313777595758438, 0.017026908695697784, -0.01335129514336586, 0.03167211264371872, 0.019797932356595993, -0.020645270124077797, -0.06187855824828148, 0.026290372014045715, 0.011376081965863705, 0.013454349711537361, -0.017530731856822968, 0.062244974076747894, 0.026198767125606537, -0.015607045963406563, -0.029015593230724335, 0.033206481486558914, -0.009423770010471344, 0.0030658741015940905, -0.010488667525351048, 0.03375610336661339, 0.04165695607662201, 0.002660812344402075, -0.00764894112944603, -0.00041579664684832096, -0.01865288056433201, -0.02134375087916851, -0.0028712155763059855, 0.0009217660990543664, 0.004139359574764967, 0.02231704443693161, 0.0008265837095677853, -0.005653689615428448, 0.0025191123131662607, 0.02967972308397293, -0.04442797973752022, 0.008101236075162888, -0.011393257416784763, 0.012481056153774261, -0.021469706669449806, -0.02938200905919075, 0.04273330420255661, 0.017473479732871056, 0.06549692153930664, 0.002630754839628935, 0.04726770520210266, -0.0218246728181839, -0.026427777484059334, 0.03419122472405434, 0.004866466857492924, 0.02300407551229, 0.01865288056433201, 0.0031775166280567646, -0.02963392063975334, 0.019694877788424492, -0.031557608395814896, -0.018355168402194977, -0.0033664500806480646, -0.04367224499583244, -0.0007478614570572972, 0.07099316269159317, -0.00645808782428503, 0.01140470802783966, 0.011759674176573753, -0.023313239216804504, -0.014622301794588566, 0.07754285633563995, 0.005499107763171196, 0.010700502432882786, 0.03790118917822838, 0.01983228325843811, 0.016431482508778572, -0.07268784195184708, -0.0695732980966568, 0.007248173002153635, 0.0488249771296978, -0.04722190648317337, 0.01589330844581127, 0.0035668339114636183, -0.05029064044356346, 0.044267673045396805, 0.01296197809278965, -0.012927626259624958, -0.04335163161158562, 0.008490553125739098, 0.028374364599585533, -0.022099485620856285, 0.008353147655725479, 0.02104603871703148, 0.002803943818435073, -0.09957364201545715, 0.0009310696041211486, 0.005353113636374474, -0.048504363745450974, 0.031259894371032715, -0.019213955849409103, -0.004866466857492924, 0.02977132797241211, -0.006126022897660732, 0.026725491508841515, -0.05638231337070465, -0.02816825546324253, 0.004674670752137899, 0.021229246631264687, -0.0025420133024454117, -0.03629811853170395, -0.05180210992693901, -0.00033635873114690185, -0.0006548260571435094, 0.022328495979309082, 0.0096699558198452, -0.04390125721693039, 0.0163169763982296, 0.03235914185643196, 0.03961876779794693, 0.03293166682124138, -0.018549825996160507, -0.040374498814344406, 0.0229010209441185, -0.014736806973814964, 0.031397297978401184, 0.00835887249559164, -0.0061832754872739315, -0.0031861045863479376, 0.06801602989435196, 0.006160374730825424, 0.010248206555843353, -0.052992962300777435, -0.0223628468811512, 0.04200047254562378, -0.01086653396487236, 0.09306974709033966, 0.01303068082779646, -0.04000808298587799, 0.009658505208790302, -0.032473646104335785, -0.037145454436540604, -0.04822954908013344, -0.007316876202821732, -0.012080288492143154, -0.026038460433483124, 0.009286363609135151, -0.020107096061110497, -0.0367332361638546, 0.014267335645854473, 0.028030849993228912, -0.04161115363240242, 0.0172902699559927, -0.01113562099635601, -0.008490553125739098, 0.010391337797045708, -0.014450544491410255, -0.0055964370258152485, 0.04092412441968918, 0.006589768920093775, -0.005765331909060478, 0.04346613585948944, 0.014370390214025974, 0.01427878625690937, 0.005516283214092255, 0.009847438894212246, -0.012687165290117264, -0.0029943084809929132, -0.03059576451778412, 0.003675613785162568, -0.013992523774504662, -0.008221466094255447, 0.04433637484908104, -0.05413801223039627, 0.037786684930324554, 0.028282761573791504, -0.04589364677667618, -0.04335163161158562, 0.01935136318206787, 0.026290372014045715, 0.07639780640602112, 0.00840467493981123, -0.0033635874278843403, -0.016591789200901985, -0.04987842217087746, 0.03185531869530678, -5.599456017080229e-06, -0.013110834173858166, 0.05505405366420746, 0.004531539510935545, -0.020530765876173973, 0.06164954975247383, 0.02158421277999878, -0.02167581580579281, -0.014210083521902561, 0.0033177854493260384, -0.014473444782197475, -0.03551948443055153, 0.004096420016139746, 0.01133028045296669, -0.02796214632689953, -0.035153068602085114, -0.07314585894346237, 0.049145590513944626, -0.010923787020146847, -0.05116087943315506, 0.017794093117117882, 0.05038224533200264, 0.0003279497614130378, 0.010769205167889595, -0.004912268836051226, 0.024389587342739105, 0.012080288492143154, 0.022820867598056793, -0.04653487354516983, 0.004159397911280394, -0.03590879961848259, 0.00911460630595684, -0.016981106251478195, -0.008278719149529934, 0.02787054143846035, 0.0019208231242373586, 0.03361869975924492, 0.006635570898652077, 0.0218246728181839, -0.03313777595758438, 0.032427843660116196, 0.0010770636145025492, 0.004428484942764044, 0.012114640325307846, 0.017748290672898293, -0.01417573168873787, 0.016053615137934685, -0.031946923583745956, -0.008049708791077137, 0.006377934478223324, -0.0010462903883308172, -0.02037045732140541, 0.0691610798239708, -0.03267975524067879, -0.019317010417580605, 0.019568921998143196, -0.036366820335388184, 0.009584077633917332, 0.022133836522698402, -0.020530765876173973, -0.03513016551733017, 0.02207658439874649, 0.010969588533043861, -0.025809450075030327, 0.0020038392394781113, -0.02110329084098339, -0.015503991395235062, -0.010179503820836544, -0.01546963956207037, -0.034672144800424576, 0.006068770308047533, -0.052305933088064194, 0.0035754218697547913, 0.019465867429971695, 0.014885663986206055, 0.014473444782197475, 0.006240528076887131, -0.031259894371032715, -0.029198801144957542, -0.007248173002153635, 0.047725725919008255, -0.007488633971661329, 0.0008974337251856923, -0.012755868956446648, 0.03439733386039734, 0.004754824563860893, -0.0009647054830566049, 0.04477149620652199, -0.003022934775799513, 0.027275115251541138, -0.02231704443693161, -0.009606977924704552, 0.016408581286668777, 0.019557472318410873, -0.04021419212222099, -0.03119119070470333, -0.014301687479019165, 0.011221500113606453, -0.04477149620652199, -0.024572795256972313, -0.007671841885894537, 0.010391337797045708, -0.06531371176242828, 0.05858081206679344, 0.008084060624241829, 0.008072610013186932, 0.0429852157831192, 0.029313307255506516, -0.006389384623616934, -0.03153470531105995, 0.04140504449605942, 0.004900818224996328, 0.01264136377722025, 0.06554272025823593, -0.032473646104335785, 0.0012237733462825418, -0.029542317613959312, 0.019717779010534286, 0.03224463760852814, -0.029840029776096344, -0.005459030624479055, -0.02100023627281189, 0.002520543523132801, 0.023656753823161125, 0.014381840825080872, -0.011931431479752064, 0.009744384326040745, -0.007047789171338081, 0.03918364644050598, -0.014759708195924759, 0.016042165458202362, 0.020725423470139503, 0.03865692391991615, 0.05276395007967949, 0.014805509708821774, 0.053038764744997025, 0.014851312153041363, 0.00884551927447319, -0.009778736159205437, 0.008043983951210976, -0.02363385260105133, -0.02626747079193592, 0.019992591813206673, -0.004608830437064171, -0.00569949159398675, 0.017908597365021706, -0.003961876500397921, 0.0069676353596150875, 0.06045869365334511, 0.07593978196382523, -0.007248173002153635, -0.0006863149465061724, 0.008868420496582985, 0.02179032191634178, 0.002811100333929062, -0.013190987519919872, 0.010700502432882786, 0.027939245104789734, -0.039000436663627625, -0.036229416728019714, 0.024229280650615692, -0.011410433799028397, 0.0025964032392948866, 0.033412590622901917, -0.03609200939536095, -0.01503452006727457, 0.06183275580406189, 0.035359177738428116, -0.011318829841911793, 0.031007982790470123, 0.06430606544017792, 0.03902333974838257, -0.05418381467461586, 0.0025620516389608383, -0.003795844269916415, -0.0023516486398875713, -0.0237712599337101, 0.03906914219260216, -0.014473444782197475, -0.04028289392590523, -0.026908699423074722, 0.014393291436135769, 0.0369393453001976, 0.04809214547276497, 0.018183410167694092, -0.03920654579997063, 0.004248139448463917, -0.020542215555906296, -0.011513488367199898, -0.06022968515753746, 0.02622166834771633, 0.003449466312304139, 0.04048900306224823, -0.0010749166831374168, 0.02890108898282051, -0.010832183063030243, 0.05514565855264664, 0.0046288687735795975, 0.023038426414132118, -0.009956219233572483, -0.0015744451666250825, 0.017118513584136963, 0.024000270292162895, 0.056886136531829834, -0.0168551504611969, -0.021423904225230217, 0.03980197384953499, 0.026542283594608307, -0.05725255236029625, 0.05890142545104027, -0.03219883516430855, 0.0007492927834391594, -0.010534469969570637, 0.006904657930135727, 0.014381840825080872, -0.05413801223039627, -0.020084194839000702, 0.003060148796066642, 0.03792409226298332, 0.023210184648633003, -0.03567979112267494, -0.021034587174654007, 0.026725491508841515, -0.018252113834023476, -0.03380190581083298, -0.04174856096506119, -0.0263590756803751, 0.005353113636374474, 0.03421412408351898, 0.042366888374090195, -0.029130099341273308, -0.003257670206949115, -0.038221802562475204, 0.019958239048719406, 0.0673748031258583, 0.03595460206270218, -0.030710268765687943, -0.0105287441983819, -0.0829475000500679, 0.0037786683533340693, -0.027641532942652702, 0.009996295906603336, -0.012183343060314655, -0.03144310042262077, 0.0535883903503418, -0.06022968515753746, 0.05134408921003342, 0.05354258790612221, 0.0425729975104332, 0.0182635635137558, 0.047679923474788666, 0.053817398846149445, -0.02436668612062931, 0.026771293953061104, -0.015916209667921066, -0.01030545961111784, -0.0008115548989735544, 0.005009598098695278, 0.03648132458329201, 0.00830734521150589, 0.0012817415408790112, -0.027114808559417725, -0.033114876598119736, -0.019168155267834663, -0.02285521849989891, 0.028282761573791504, 0.010683326050639153, 0.00014849880244582891, -0.026977403089404106, -0.06036709249019623, 0.009097430855035782, 0.044313475489616394, 0.04877917468547821, -0.022832317277789116, -0.026084262877702713, -0.03838210925459862, -0.019946789368987083, -0.013694810681045055, 0.015240629203617573, -0.0091317817568779, -0.01866433210670948, 0.023954467847943306, -0.023210184648633003, -0.018458222970366478, 0.0648098886013031, -0.03616071119904518, 0.018893342465162277, -0.056748729199171066, -0.001932273618876934, -0.07506954669952393, 0.036366820335388184, -0.03989357873797417, 0.0071222176775336266, 0.014084127731621265, -0.009377967566251755, -0.0009053059620782733, -0.037786684930324554, -0.024916309863328934, 0.04896238073706627, 0.035885900259017944, -0.01935136318206787, -0.04726770520210266, 0.010585997253656387, 0.027069006115198135, -0.017965851351618767, -0.004640319384634495, 0.018297916278243065, 0.012332200072705746, -0.06531371176242828, -0.001414138008840382, -0.008570707403123379, 0.003031522734090686, 5.53739519091323e-05, -0.05482504516839981, 0.007597413845360279, -0.0010620348621159792, 0.009584077633917332, -0.047817330807447433, -0.006269154604524374, -0.01764523610472679, 0.051481496542692184, -0.024183478206396103, 0.007986730895936489, 0.012389452196657658, -0.008753915317356586, -0.02830566093325615, 0.009143232367932796, -0.02168726734817028, 0.017141414806246758, 0.021801771596074104, 0.002245731418952346, 0.010133701376616955, 0.04974101856350899, 0.0033006095327436924, -0.005748155992478132, 0.020233051851391792, -0.014358939602971077, 0.010322635062038898, 0.03421412408351898, -0.021458256989717484, -0.0270003043115139, 0.02734381891787052, 0.02933620847761631, -0.010671875439584255, 0.0025105243548750877, -0.016774997115135193, 0.011324554681777954, -0.011605092324316502, -0.015355134382843971, 0.005733842961490154, 0.011261576786637306, 0.01540093682706356, -0.032473646104335785, 0.001673205872066319, 0.04987842217087746, 0.006320681888610125, 0.0008666604990139604, 0.03547368198633194, -0.0005235029966570437, 0.0007253182702697814, 0.028672078624367714, 0.0023230223450809717, 0.047634124755859375, -0.03877142816781998, -0.02300407551229, -0.006126022897660732, 0.0210574883967638, 0.047679923474788666, 0.002826844807714224, -0.016832251101732254, -0.038863033056259155, 0.021160542964935303, -0.01317953784018755, -0.029313307255506516, -0.00899437628686428, 0.03261105343699455, -0.021263597533106804, -0.015274981036782265, 0.00032240344444289804, -0.006355033256113529, -0.006549691781401634, 0.07058094441890717, -0.04419897124171257, -0.0001069907084456645, -0.021412454545497894, 0.0345805399119854, 0.022443000227212906, -0.012458154931664467, -0.019019298255443573, 0.0006841680151410401, -0.012572660110890865, -0.013431448489427567, -0.004033442120999098, -0.013774964027106762, 0.008330246433615685, 0.007763445843011141, 0.02261475846171379, 0.0038216079119592905, 0.005161317531019449, -0.005788233131170273, -0.03971036896109581, 0.012263496406376362, -0.024687299504876137, -0.03338968753814697, -0.017210116609930992, 0.005848348140716553, 0.02929040603339672, 0.007328326813876629, -0.011490587145090103, 0.0033177854493260384, -0.014622301794588566, 0.010786380618810654, 0.010677601210772991, -0.03279426321387291, 0.03971036896109581, -0.009738659486174583, 0.002348785987123847, -0.0013640420511364937, -0.00732260150834918, 0.0009460984147153795, -0.02695450186729431, 0.003234769217669964, -0.003649850143119693, 0.006057320162653923, -0.0021770282182842493, 0.013007779605686665, 0.04177146032452583, -0.05042804777622223, 0.01062607392668724, -0.034717947244644165, 0.026771293953061104, -0.013832216151058674, 0.005570673383772373, 0.0016875190194696188, 0.014897113665938377, 0.02372545748949051, 0.02885528653860092, 0.023748358711600304, 0.019912438467144966, -0.024206379428505898, 0.0017104200087487698, -0.04332873225212097, -0.02129794843494892, 0.042962316423654556, 0.011461961083114147, 0.013156636618077755, -0.017358973622322083, -0.00026980266557075083, -0.028076650574803352, -0.029794227331876755, 0.01628262549638748, 0.027893442660570145, 0.015813155099749565, 0.005147004500031471, 0.014255885034799576, -0.00050239113625139, -0.006704273633658886, 0.018549825996160507, 0.0038588219322264194, -0.004577341489493847, -0.004196612164378166, -0.014908564276993275, -0.029702624306082726, 0.028488870710134506, -0.03824470564723015, 0.03799279406666756, -0.01993533782660961, -0.03884012997150421, -0.019305560737848282, 0.044908903539180756, -0.00043297241791151464, -0.004502912983298302, 0.021378103643655777, -0.02217963896691799, 0.020427711308002472, -0.011089819483458996, 0.01875593513250351, 0.02885528653860092, -0.01542383711785078, -0.0018091805977746844, 0.01320243813097477, 0.04074091464281082, -0.024962112307548523, -0.0023731181863695383, -0.02830566093325615, 0.020347556099295616, 0.020359007641673088, 0.03854241967201233, -0.028878187760710716, -0.07245883345603943, -0.050840266048908234, -0.020393358543515205, -0.005121240857988596, 0.04532112181186676, 0.033412590622901917, -0.004906543530523777, -0.03146600350737572, -0.012034486047923565, -0.0197750311344862, -0.022591857239603996, -0.05129828676581383, 0.007482908666133881, -0.016878051683306694, -0.009040177799761295, 0.04058060795068741, -0.005493382457643747, -0.03210723027586937, 0.017324622720479965, -0.025420133024454117, -0.006400835234671831, 0.004001953173428774, -0.012080288492143154, -0.011759674176573753, -0.004783450625836849, -0.013454349711537361, 0.036664534360170364, 0.04974101856350899, -0.011427609249949455, -0.01371771190315485, 0.019213955849409103, 0.006223352625966072, 0.03650422766804695, -0.010803557001054287, -0.00019931045244447887, 0.02315293252468109, 0.002991445828229189, 0.01978648267686367, -0.022145286202430725, 0.020965885370969772, -0.030481258407235146, 0.0019179604714736342, 0.012103189714252949, 0.010070723481476307, 0.002049641450867057, -0.02631327323615551, -0.001296054688282311, -0.01748492941260338, 0.007042063865810633, -0.022145286202430725, -0.0069561852142214775, 0.034237027168273926, -0.006280604749917984, 0.028420167043805122, 0.030389655381441116, 0.02626747079193592, -0.025992657989263535, -0.025420133024454117, 0.011175698600709438, 0.003188967239111662, 0.04250429570674896, -0.014416192658245564, -0.00224859407171607, -0.032473646104335785, -0.020496413111686707, 0.02454989403486252, -0.005281548015773296, 0.009853164665400982, 0.028397265821695328, 0.05125248432159424, 0.013706261292099953, 0.014336039312183857, 0.019969690591096878, -0.022729262709617615, -0.048458561301231384, -0.024206379428505898, -0.03597750514745712, 0.02773313596844673, -0.009297814220190048, -0.025901054963469505, 0.023255987092852592, -0.01651163585484028, -0.014725356362760067, 0.0235422495752573, 0.028145354241132736, 0.016500186175107956, -0.005029636900871992, 0.0054017785005271435, -0.05477924272418022, -0.0376034751534462, -0.046855486929416656, 0.016797898337244987, 0.0015272118616849184, 2.1067149646114558e-05, -0.03400801494717598, 0.019660526886582375, 0.01296197809278965, -0.0005192090757191181, -0.0015901896404102445, -0.016820799559354782, 0.017164314165711403, 0.07099316269159317, -0.02402317151427269, -0.028145354241132736, -0.003981914836913347, 0.023817062377929688, -0.03556528687477112, 0.03444313630461693, 0.005816859193146229, 0.013694810681045055, -0.0005982891889289021, 0.062244974076747894, -0.04887077957391739, -0.03913784399628639, 0.028374364599585533, 0.010437140241265297, -0.03343548998236656, -0.005836897529661655, -0.0017390463035553694, 0.0501074343919754, -0.026038460433483124, 0.006916108075529337, 0.029542317613959312, -0.05102347582578659, 0.02432088367640972, 0.02674839273095131, 0.01395817194133997, -0.0042395512573421, 0.017175765708088875, 0.01471390575170517, 0.002607853850349784, -0.001634560409002006, 0.029198801144957542, -0.009206210263073444, 0.008765365928411484, -0.01885899156332016, 0.02266056090593338, 0.0704435408115387, -0.03380190581083298, 0.042366888374090195, 0.00857643224298954, -0.008416125550866127, 0.009950493462383747, 0.0025262688286602497, -0.03336678817868233, -0.005891287699341774, 0.03877142816781998, 0.016889503225684166, 0.00640656054019928, -0.022672010585665703, 0.011708146892488003, -0.013271141797304153, -0.02402317151427269, 0.022523153573274612, -0.024687299504876137, -0.034282829612493515, -0.020301755517721176, -0.020691072568297386, 0.011250126175582409, -0.005376014858484268, 0.012893274426460266, 0.0003785825101658702, 0.017702488228678703, 0.01948876865208149, 0.01808035559952259, -0.035450778901576996, -0.00042867849697358906, 0.03920654579997063, 0.010889435186982155, 0.01546963956207037, -0.030183546245098114, -0.052214328199625015, -0.005885562393814325, -0.018595628440380096, 0.045389823615550995, 0.0210574883967638, 0.009578351862728596, 0.018584178760647774, -0.003747179638594389, 0.030962180346250534, -0.027687333524227142, 0.0029799952171742916, 0.006830229423940182, 0.018240662291646004, 0.06563432514667511, 0.011336005292832851, -0.0011679520830512047, 0.02670259028673172, 0.016385680064558983, -0.017576534301042557, -0.019259758293628693, -0.014771158806979656, 0.016740646213293076, -0.012870374135673046, -0.016053615137934685, -0.010780655778944492, -0.013729161582887173, -0.004196612164378166, -0.02704610489308834, -0.021011685952544212, -0.024046072736382484, -0.009389418177306652, -0.004480012226849794, -0.020622368901968002, -0.013122284784913063, -0.0004984550178050995, 0.0010570252779871225, 0.023954467847943306, -0.005885562393814325, 9.902902093017474e-05, -0.0091317817568779, 0.011616542935371399, -0.003000033786520362, -0.016305526718497276, 0.00543326698243618, 0.00853062979876995, 0.011393257416784763, 0.047771528363227844, -0.0036097734700888395, -0.0023215909022837877, -0.020152898505330086, -0.025717847049236298, -0.0035868724808096886, -0.02567204460501671, -0.005556360352784395, -0.00771191855892539, -0.021652914583683014, -0.009984845295548439, 0.023908665403723717, 0.002655087038874626, 0.006492439191788435, 0.0037214159965515137, 0.046122655272483826, -0.01656888797879219, 0.011198598891496658, -0.0020625232718884945, 0.024343784898519516, 0.020633820444345474, 0.025214023888111115, 0.00938369333744049, -0.010631798766553402, -0.04598524793982506, -0.00098975352011621, 0.010540194809436798, -0.009692857041954994, -0.0073626781813800335, -0.00301434681750834, -0.01617957092821598, 0.005931364372372627, 0.008335971273481846, 0.012584110721945763, 0.017462028190493584, -0.016065066680312157, 0.025603340938687325, -0.009841714054346085, -0.001381933456286788, 0.015389486216008663, -0.0117195975035429, 0.01680934987962246, 0.033504191786050797, -0.017794093117117882, 0.037145454436540604, 0.02963392063975334, 0.018939144909381866, -0.01701545901596546, -0.02075977623462677, 0.01690095290541649, 0.003684201743453741, -0.015858957543969154, 0.0617869533598423, 0.0042366888374090195, -0.007952379062771797, 0.013694810681045055, -0.00891422200948, 0.013168087229132652, -0.026519382372498512, 0.0170612595975399, 0.024183478206396103, -0.021950628608465195, 0.007717643864452839, 0.02261475846171379, -0.024091873317956924, 0.0172902699559927, 0.010809281840920448, -0.020393358543515205, 0.008753915317356586, 0.024137675762176514, -0.03183241933584213, -0.01259556133300066, 0.01613376848399639, -0.015481090173125267, -0.011874179355800152, -0.005670865066349506, 0.025030815973877907, -0.011502037756145, -0.011610817164182663, 0.006309231277555227, -0.0015758764930069447, -0.0006773692439310253, 0.01866433210670948, 0.01939716376364231, -0.004462836310267448, -0.01101539097726345, 0.06192436069250107, -0.024297982454299927, -0.010145151987671852, -0.025809450075030327, 0.001555838156491518, -0.05642811581492424, -0.01842387206852436, 0.015057421289384365, 0.00406779395416379, -0.03574849292635918, 0.03302327170968056, -0.034763749688863754, -0.03313777595758438, 0.004958070814609528, -0.0024174889549613, 0.01817196048796177, 0.007059239782392979, 0.018927693367004395, 0.01782844401896, 0.0113989831879735, 0.03382480889558792, -0.011187148280441761, 0.004594517406076193, -0.011038292199373245, 0.012996328994631767, -0.011473411694169044, 0.026152966544032097, 0.031076684594154358, 0.02251170389354229, 0.014290236867964268, -0.015962012112140656, -0.04946620389819145, -0.0052328831516206264, 0.00246758502908051, -0.022649109363555908, -0.013900919817388058, -0.03403091803193092, 0.005181355867534876, 0.0073340521194040775, -0.014026875607669353, 0.0214926078915596, 0.015607045963406563, -0.006326407194137573, 0.011805476620793343, -0.01701545901596546, 0.05029064044356346, -0.03961876779794693, -0.016362778842449188, 0.010872259736061096, 0.002247162628918886, -0.011101270094513893, -0.01808035559952259, -0.01281312108039856, -0.010969588533043861, 0.019855184480547905, -0.013236789964139462, 0.0183666180819273, 0.02125214785337448, 0.015309332869946957, -0.02704610489308834, -8.359767525689676e-05, -0.006881756708025932, 0.0003590808482840657, -0.028191156685352325, -0.014255885034799576, 0.01406122650951147, 0.025740748271346092, 0.046855486929416656, 0.019179604947566986, -0.026198767125606537, 0.010414239019155502, -0.024916309863328934, -0.016946755349636078, 0.0006401551072485745, -0.02017579972743988, -0.003360724775120616, 0.013832216151058674, 0.01929410919547081, -0.009120331145823002, -0.03819890320301056, 0.0397561714053154, -0.0007865069201216102, 0.004322567488998175, 0.01700400747358799, 0.009967668913304806, 0.05019903928041458, 0.005713804624974728, -0.00411932123824954, 0.010047823190689087, -0.015813155099749565, 0.043878354132175446, -0.004737648647278547, 0.01593911089003086, -0.01627117581665516, -0.008902771398425102, 0.03634392097592354, 0.002418920397758484, -0.02367965504527092, 0.049374599009752274, -0.04067221283912659, -0.004986697342246771, -0.0037872563116252422, 0.014954366721212864, 0.006234802771359682, 0.0077691711485385895, 0.013259691186249256, -0.0018392382189631462, -0.03222173452377319, 0.023954467847943306, -0.009458121843636036, -0.0035782845225185156, 0.0380156934261322, 0.002889822470024228, 0.0013626107247546315, -0.00911460630595684, -0.00034029484959319234, -0.04225238412618637, 0.011862728744745255, -0.002254319144412875, -0.020141446962952614, 0.0019451554398983717, 0.050702858716249466, -0.02816825546324253, 0.0016274037770926952, -0.005897013004869223, -0.03806149587035179, 0.010929511860013008, -0.027252214029431343, -0.015652848407626152, 0.006234802771359682, 0.034237027168273926, -0.007500084117054939, -0.015549792908132076, 0.05276395007967949, 0.010345536284148693, 0.009286363609135151, -0.024343784898519516, -0.005668002646416426, -0.023221634328365326, -0.010534469969570637, -0.0004966658889316022, 0.06595493853092194, 0.006040144246071577, 0.015343683771789074, 0.015916209667921066, 0.01532078254967928, -0.024297982454299927, 0.02261475846171379, 0.023381942883133888, -0.0069848112761974335, 0.02450409159064293, -0.017565082758665085, 0.014210083521902561, 0.04222948104143143, 0.004259590059518814, 0.0050210487097501755, 0.009944768622517586, -0.01690095290541649, 0.008782541379332542, 0.01274441834539175, -0.006314956583082676, -0.00449718814343214, -0.03485535457730293, 0.0254888366907835, 0.0016374229453504086, -0.05427541956305504, -0.033595796674489975, 0.017897147685289383, 0.023565150797367096, -0.005925639066845179, 0.015343683771789074, -0.00526150967925787, 0.034717947244644165, -0.0321759358048439, 0.033549994230270386, 0.004150810185819864, -0.033939313143491745, -0.026198767125606537, -0.009028727188706398, 0.038565319031476974, 0.0030286600813269615, -0.028786582872271538, 0.010179503820836544, 0.0048407032154500484, 0.01084363367408514, 0.018194861710071564, 0.02324453555047512, -0.015343683771789074, -0.0376034751534462, -0.00048414189950563014, -0.016431482508778572, -0.006320681888610125, -0.010053548030555248, -0.03256525099277496, -0.005175630562007427, 0.0025720708072185516, -0.008919947780668736, -0.0017705351347103715, -0.006148924119770527, -0.013316943310201168, 0.01064897421747446, 0.010832183063030243, 0.020244501531124115, -0.03815310075879097, 0.016935305669903755, 0.029611019417643547, -0.0174963790923357, 0.01084363367408514, -0.02514532022178173, 0.0321759358048439, -0.0016503047663718462, 0.0011951470514759421, -0.021080389618873596, -0.007912302389740944, 0.001531505724415183, -0.013053582049906254, 0.009841714054346085, -0.043832555413246155, 0.03375610336661339, 0.008129862137138844, 0.0098875155672431, -0.0077405450865626335, -0.04603105038404465, 0.004145084880292416, 0.03382480889558792, -0.010488667525351048, -0.006618394982069731, -0.014416192658245564, 0.04713030159473419, -0.01948876865208149, 8.179734322766308e-06, 0.020794127136468887, -0.00928063876926899, -0.015503991395235062, -0.01612231880426407, 0.015171926468610764, -0.0033578621223568916, 0.023862862959504128, -0.01341999787837267, -0.017908597365021706, -0.013454349711537361, -0.018240662291646004, -0.004983834456652403, -0.03806149587035179, -0.0013869430404156446, 0.021870475262403488, -0.002129795029759407, 0.020301755517721176, 0.03279426321387291, -0.024916309863328934, 0.009034452959895134, -0.06549692153930664, 0.009223385713994503, 0.014416192658245564, -0.028374364599585533, -0.027114808559417725, 0.006360758561640978, 0.03011484257876873, -0.00526150967925787, -0.03767218068242073, 0.015114673413336277, 0.024000270292162895, 0.011095544323325157, 0.011919980868697166, 0.008267268538475037, -0.014393291436135769, 0.0011565015884116292, -0.005121240857988596, 0.0319698266685009, 0.030275149270892143, -0.014255885034799576, 0.022133836522698402, 0.038473714143037796, 0.01103256642818451, 0.00689320731908083, 0.011965783312916756, -0.007282524835318327, -0.019179604947566986, -0.01130165345966816, 0.007585963234305382, 0.01330549269914627, 0.0025105243548750877, 0.011089819483458996, -0.0061546494252979755, -0.015629947185516357, -0.034282829612493515, -0.002460428513586521, -0.013763513416051865, -0.015274981036782265, 0.026679689064621925, 0.010053548030555248, -0.004915131721645594, 0.002082561608403921, -0.03675613924860954, 0.0031660660170018673, -0.006263429298996925, 0.019305560737848282, 0.01406122650951147, -0.002937055891379714, 0.0015501128509640694, -0.03357289731502533, -0.0005553497467190027, 0.020084194839000702, 0.0014012561878189445, -0.0008616509148851037, -0.0028540396597236395, -0.004537264816462994, -0.0067443507723510265, -0.01822921261191368, -0.05720674991607666, 0.020725423470139503, -0.01651163585484028, -0.047725725919008255, 0.020736875012516975, 0.021126192063093185, -0.044519584625959396, 0.02519112266600132, 0.050565455108881, 0.016305526718497276, 0.007992456667125225, -0.004167985636740923, 0.006526791024953127, 0.005376014858484268, -0.028786582872271538, -9.242037776857615e-06, -0.01291617564857006, -0.0013211026089265943, 0.027504125609993935, -0.026427777484059334, 0.02393156662583351, -0.006057320162653923, 0.03343548998236656, -0.019660526886582375, 0.01691240444779396, -0.036618731915950775, -0.0028883912600576878, -0.023038426414132118, -0.0038759978488087654, -0.011828376911580563, -0.01047721691429615, -0.007837874814867973, 0.009423770010471344, -0.009532550349831581, -0.0045973798260092735, 0.0023001213558018208, -0.024687299504876137, -0.046763885766267776, -0.02606136165559292, 0.0005006020073778927, 0.016408581286668777, -0.00954972580075264, 0.012217694893479347, -0.03171791508793831, 0.00874246470630169, -0.029794227331876755, 0.009314990602433681, -0.01607651636004448, 0.008885595947504044, 0.0057767825201153755, -0.018538376316428185, -0.03792409226298332, -0.017679588869214058, -0.022191088646650314, 0.024297982454299927, 0.016545986756682396, 0.009126056917011738, 0.020473511889576912, -0.002058229176327586, 0.022305594757199287, 0.010494392365217209, -0.016534537076950073, 0.004929444752633572, -0.01822921261191368, 0.000974009046331048, -0.00383019563741982, -0.02285521849989891, 0.0013461506459861994, -0.05102347582578659, 0.004548715427517891, -0.010076449252665043, 0.006555417086929083, -0.005484794266521931, -0.005742431152611971, -0.02606136165559292, -0.013145186007022858, 0.013225339353084564, -0.017416225746273994, -0.007494359277188778, -0.033985115587711334, -0.012893274426460266, -0.06371063739061356, -0.011358906514942646, 0.003274845890700817, 0.001155070262029767, -0.02493921108543873, 0.01652308739721775, -0.06357323378324509, -0.014187182299792767, 0.001531505724415183, -0.03611490875482559, -0.019065100699663162, -0.026473579928278923, -0.03153470531105995, 0.027252214029431343, 0.009326440282166004, -0.005407503340393305, 0.05793958157300949, -0.017954399809241295, -0.03435153141617775, -0.017748290672898293, 0.023118579760193825, -0.033985115587711334, 0.004969521425664425, -0.02372545748949051, -0.027298016473650932, -0.016878051683306694, -0.006526791024953127, -0.000918903446290642, 0.004082106985151768, -0.02899269200861454, 0.01935136318206787, 0.02285521849989891, -0.00041579664684832096, -0.007019162643700838, -0.009847438894212246, -0.026862896978855133, 0.0016503047663718462, 0.012950527481734753, 0.041153132915496826, 0.024572795256972313, -0.007460007444024086, 0.010150877758860588, -0.008685212582349777, -0.010402788408100605, -0.031740814447402954, 0.022889569401741028, -0.0046002427116036415, -0.04287071153521538, 0.006509615108370781, -0.02523692511022091, -0.011273027397692204, -0.00022185363923199475, 0.0021627151872962713, 0.01140470802783966, -0.011439059861004353, 0.010981039144098759, 0.024870509281754494, 0.022626208141446114, -4.246976459398866e-05, 0.012881823815405369, -0.014610851183533669, -0.025557538494467735, -0.00933216605335474, -0.017565082758665085, -0.011479136534035206, -0.011467685922980309, -0.01525207981467247, -0.0001102111637010239, -0.011318829841911793, -0.000918903446290642, 0.022385748103260994, 0.002424645470455289, -0.0018320817034691572, -0.027069006115198135, -0.023416293784976006, 0.02864917740225792, -0.049924224615097046, -0.022202540189027786, 0.0011028272565454245, -0.03755767270922661, 0.013042131438851357, -9.831336501520127e-05, -0.0252827275544405, 0.02977132797241211, -0.04905398562550545, -0.040718015283346176, 0.021859023720026016, -0.023359041661024094, -0.019946789368987083, 0.0248476080596447, -0.024435389786958694, -0.010740579105913639, -0.01378641463816166, -0.013603206723928452, 0.03948136046528816, -0.014141380786895752, 0.022042231634259224, 0.04064931347966194, 0.042847808450460434, 0.002240006113424897, -0.014782608486711979, -0.018973495811223984, 0.020416259765625, -0.028076650574803352, -0.03645842522382736, 0.021664366126060486, -0.013465800322592258, 0.01417573168873787, 0.013248240575194359, 0.07003132253885269, -0.010007746517658234, -0.008021082729101181, 0.03824470564723015, -0.0019838009029626846, 0.003684201743453741, 0.03858821839094162, -0.005436129868030548, 0.007414205465465784, -0.015629947185516357, 0.02885528653860092, 0.011307379230856895, -0.006687098182737827, -0.015011618845164776, -0.004368369933217764, 0.004906543530523777, 0.0194429662078619, -0.01339709758758545, 0.01704980991780758, 0.0025348567869514227, 0.022339945659041405, -0.011376081965863705, -0.021263597533106804, -0.04195467010140419, 0.017576534301042557, -0.029130099341273308, 0.03258815407752991, -0.003352136816829443, -0.002018152503296733, 0.012492506764829159, 0.02713770978152752], [-0.002510352060198784, -0.03229469433426857, 0.005858481861650944, 0.008169079199433327, 0.01533640269190073, 0.04879981279373169, 0.01983237825334072, -0.010303772985935211, 0.036683339625597, 0.014680490829050541, -0.026618080213665962, -0.007537018973380327, 0.010798688046634197, 0.01728028617799282, -0.06606817245483398, 0.005992645397782326, 0.0006320601096376777, 0.00389671023003757, 0.010148739442229271, -0.016648225486278534, -0.003571735927835107, -0.017709609121084213, 0.04941994696855545, 0.04653393477201462, -0.024018285796046257, -0.013964951038360596, 0.002283764537423849, -0.01575380004942417, 0.03708881139755249, -0.004537714645266533, 0.07184019684791565, -0.018460925668478012, 0.05824493616819382, -0.026212606579065323, 0.03301023319363594, -0.01837744563817978, -0.03639712184667587, 0.05304534733295441, 0.038066715002059937, 0.008962135761976242, -0.015932684764266014, 0.014477754943072796, -0.028454631567001343, 0.0053605856373906136, -0.035013746470212936, 0.06978897750377655, -0.015706097707152367, -0.08610328286886215, -0.013225560076534748, 0.06458938866853714, -0.0013811407843604684, -0.0015980388270691037, -0.01868751458823681, -0.00616556778550148, -0.020440585911273956, 0.020869910717010498, 0.0007218752871267498, 0.021943219006061554, -0.0300526712089777, -0.0025833966210484505, -0.010226256214082241, -0.0037923608906567097, 0.011305528692901134, 0.04004637524485588, -0.004707655403763056, 0.020702950656414032, 0.01996355876326561, 0.011752740480005741, -0.05595520883798599, 0.00991618912667036, -0.015109814703464508, 0.07723059505224228, 0.007930565625429153, -0.006105939392000437, -0.020321330055594444, 0.017053697258234024, -0.025759432464838028, 0.049563053995370865, 0.05686156079173088, 0.003097690874710679, 0.013118228875100613, 0.02160930074751377, -0.007912677712738514, 0.026451120153069496, 0.01930764876306057, 0.0028189285658299923, -0.06492330878973007, -0.010106999427080154, -0.041930630803108215, 0.012760459445416927, -0.024829229339957237, 0.010118925012648106, -0.0043051643297076225, 0.019176466390490532, 0.026761187240481377, 0.04250306263566017, -0.00948090199381113, -0.009618046693503857, -0.04755954444408417, 0.041119687259197235, 0.025449365377426147, -0.024221021682024002, -0.020130518823862076, 0.04612846300005913, 0.017924271523952484, -0.09564381837844849, -0.06487560272216797, 0.05213899910449982, 0.0448404923081398, 0.013201708905398846, -0.05085102468729019, -0.0023419021163135767, 0.004030873998999596, 0.021406564861536026, -0.0028025307692587376, -0.03751813620328903, 0.011418822221457958, -0.02630801312625408, -0.005611024331301451, 0.030100373551249504, -0.04827508330345154, -0.007322357036173344, 0.02485308051109314, -0.05948520824313164, -0.005101202521473169, -0.012319209985435009, -0.026522673666477203, -0.034178949892520905, -0.02247987501323223, -0.040499549359083176, 0.034369759261608124, -0.026021797209978104, -0.011824294924736023, -0.003956338856369257, -0.013833768665790558, 0.010393215343356133, -0.0249723382294178, -0.002929240930825472, -0.03138834610581398, -0.004272368736565113, -0.012796236202120781, 0.022837644442915916, 0.03890151157975197, 0.021418491378426552, -0.054047103971242905, 0.0002642279723659158, -0.009862523525953293, 0.022503726184368134, -0.06239506974816322, 0.014501606114208698, -0.010727133601903915, 0.035920098423957825, -0.011269751004874706, 0.032032329589128494, -0.03496604412794113, -0.011436711065471172, 0.007566832937300205, 0.005927054677158594, -0.0029471295420080423, 0.03136449307203293, 0.004844800569117069, 0.027572132647037506, -0.024185243993997574, 0.0021764335688203573, -0.000863119843415916, -0.005992645397782326, -0.0509464330971241, 0.00963593553751707, -0.06659290194511414, -0.051805078983306885, -0.04107198119163513, -0.03854374215006828, -0.01518136914819479, 0.008777287788689137, -0.014310795813798904, -0.042336102575063705, 0.009504753164947033, -0.06902574002742767, -0.010041408240795135, 0.004302182700484991, 0.009158909320831299, -0.009689601138234138, -0.0280014555901289, 0.003279557218775153, -0.04064266011118889, 0.004662934225052595, 0.004978964105248451, 0.016934441402554512, 0.010816575959324837, 0.00023478649382013828, 0.03737502917647362, -0.001921522431075573, 0.013106303289532661, 0.025616323575377464, -0.010530360043048859, -0.025997944176197052, -0.015348328277468681, 0.015014410018920898, -0.037756647914648056, -0.0407380647957325, 0.013619107194244862, -0.04159671068191528, 0.010256069712340832, -0.00911120604723692, -0.018663661554455757, -0.019546162337064743, -0.005512637551873922, -0.059962231665849686, 0.011305528692901134, 0.031650710850954056, 0.020571768283843994, -0.004770264960825443, -0.005414250772446394, -0.008431443944573402, -0.04777420684695244, -0.04531751945614815, 0.026975849643349648, 0.01543180737644434, 0.025425512343645096, 0.024471459910273552, -0.02485308051109314, -0.024709973484277725, -0.024065988138318062, -0.00870573427528143, -0.017459170892834663, -0.007089806720614433, -0.012963195331394672, -0.05061251297593117, 0.012700830586254597, -0.08266869187355042, 0.0024387980811297894, 0.03904461860656738, 0.029313279315829277, -0.030601250007748604, 0.0011664788471534848, 0.031746115535497665, -0.03747043386101723, -0.05051710829138756, 0.0031573192682117224, -0.012295358814299107, -0.04145360365509987, 0.010858315974473953, 0.03558617830276489, 0.014179613441228867, 0.010262032970786095, 0.021907443180680275, -0.012665053829550743, -0.022658759728074074, -0.014775896444916725, 0.003529996145516634, 0.059246692806482315, 0.02375592105090618, 0.008729585446417332, -0.023612812161445618, 0.02367244102060795, 0.008723622187972069, 0.026212606579065323, -0.03599165007472038, 0.05719548091292381, -0.021346936002373695, -0.01600424014031887, -0.003634345717728138, -0.03844833746552467, 0.017101401463150978, -0.0692642480134964, -0.0018663662485778332, 0.07408221811056137, 0.009331830777227879, -0.01376221515238285, 0.022134030237793922, -0.005637857131659985, 0.05686156079173088, 0.012521945871412754, -0.01737569086253643, -0.0432901568710804, -0.018794843927025795, -0.024399906396865845, 0.016552820801734924, 0.04052340239286423, -0.013356742449104786, -0.04057110473513603, -0.02659422904253006, 0.04474508762359619, -0.05776791274547577, 0.012593500316143036, -0.009260277263820171, -0.008526848629117012, 0.026761187240481377, -0.01339251920580864, 0.01370258629322052, 0.022599130868911743, -0.0024462516885250807, -0.009695563465356827, -0.015574915334582329, 0.01228343229740858, 0.03799516335129738, -0.002106370171532035, 0.00773975532501936, 0.019546162337064743, 0.01609964482486248, -0.03472752869129181, -0.027691388502717018, -0.032437801361083984, -0.018353594467043877, -0.014084207825362682, -0.017638055607676506, -0.026618080213665962, -0.016123495995998383, 0.004293238744139671, -0.008598403073847294, -0.01660052314400673, 0.025711728259921074, -0.02149004489183426, -0.053856294602155685, 0.03129293769598007, 0.0059509058482944965, 0.007566832937300205, 0.02587868832051754, 0.024018285796046257, 0.007429687771946192, 0.03849603980779648, -0.017137177288532257, 0.04786961153149605, -0.07556100189685822, -0.04736873134970665, 0.02304038032889366, 0.022193659096956253, 0.003577698953449726, -0.02276609092950821, 0.04338556155562401, -0.02298075146973133, -0.032032329589128494, 0.05380859225988388, -0.01315400656312704, -0.01996355876326561, -0.06573425233364105, 0.020476363599300385, 0.004373736679553986, -0.017172954976558685, -0.0032348360400646925, 0.01853247918188572, 0.01712525263428688, -0.007489316165447235, -0.008252558298408985, -0.02120382897555828, 0.03453671932220459, 0.011383045464754105, 0.02587868832051754, 0.007059992291033268, 0.008985986933112144, -0.036206312477588654, -0.019128764048218727, -0.03155530244112015, 0.021287309005856514, -0.01158578135073185, -0.011758703738451004, 0.026546524837613106, 0.006380229722708464, -0.009087354876101017, 0.005521581973880529, -0.05347467213869095, 0.018699439242482185, 0.004528770688921213, 0.03227084502577782, -0.013440222479403019, 0.02640341781079769, -0.024113690480589867, -0.03169841319322586, 0.01886639930307865, -0.014716267585754395, 0.0087832510471344, 0.037017256021499634, -0.07379600405693054, -0.025592472404241562, -0.0023836418986320496, 0.008926359005272388, 0.009504753164947033, 0.0529976449906826, -0.02429257519543171, -0.0008400139049626887, -0.00657700328156352, -0.030505845323204994, -0.006565077230334282, 0.02912246808409691, 0.046820152550935745, 0.020011262968182564, -0.014787822030484676, -0.016779407858848572, -0.00710769509896636, 0.053426969796419144, 0.015610693022608757, 0.006207307334989309, 0.009552455507218838, 0.0264749713242054, -0.018854472786188126, 0.012617351487278938, 0.07875707745552063, 0.04126279428601265, -0.03820982202887535, -0.002759300172328949, -0.012927418574690819, -0.0346321240067482, 0.02180011197924614, -0.011371119879186153, -0.00873554777354002, 0.006732036825269461, -0.006392155308276415, -0.012158213183283806, -0.039784010499715805, 0.026570376008749008, 0.0145254572853446, -0.019868154078722, 0.06501871347427368, 0.009981779381632805, 0.015825355425477028, 0.001111322664655745, -0.017864642664790154, 0.04827508330345154, 0.011001423932611942, -0.008139264769852161, 0.07412991672754288, 0.003977208398282528, -0.03828137740492821, -0.04219299554824829, 0.0067201112397015095, -0.024364128708839417, -0.0035508661530911922, 0.0017858679639175534, 0.0382336750626564, -0.05228210613131523, -0.009021763689815998, -0.0216689296066761, 0.017805013805627823, 0.01569417305290699, -0.010566137731075287, 0.0012380328262224793, 0.007578758522868156, -0.018425149843096733, 0.001569715328514576, -0.0047613210044801235, -0.05085102468729019, 0.02098916657269001, 0.017518797889351845, -0.05748169496655464, -0.04402954876422882, -0.06487560272216797, -0.019045284017920494, 0.027762943878769875, -0.007984231226146221, 0.020106667652726173, -0.03329645097255707, -0.029933413490653038, -0.03086361475288868, 0.04424420744180679, -0.007083843927830458, -0.02912246808409691, -0.013786066323518753, -0.02149004489183426, 0.05428561568260193, -0.0550011582672596, -0.00828237272799015, 0.03892536461353302, -0.002705634804442525, 0.013845694251358509, 0.054476428776979446, -0.01194355171173811, -0.039998672902584076, -0.02301652915775776, 0.011842182837426662, -0.043051641434431076, -0.010202405042946339, 0.010250107385218143, 0.019331499934196472, 0.0063683041371405125, -0.010083148255944252, 0.012832012958824635, 0.025759432464838028, -0.08987179398536682, -0.022372543811798096, 0.013189783319830894, 0.00850299745798111, 0.03811441734433174, -0.011233974248170853, 0.013511775992810726, 0.005086295306682587, 0.06373073905706406, 0.06144101545214653, -0.014131910167634487, -0.01650511659681797, -0.022002847865223885, -0.006147679407149553, 0.012378837913274765, 0.037446580827236176, -0.011126643046736717, -0.04321860149502754, -0.023565109819173813, 0.034894488751888275, -0.0055990987457334995, 0.0249723382294178, -0.04877595975995064, 0.05213899910449982, -0.019259946420788765, -0.023958656936883926, -0.024781526997685432, 0.028144564479589462, 0.015419881790876389, -0.011269751004874706, -0.025950241833925247, -0.022277139127254486, 0.022098252549767494, 0.019868154078722, 0.008115413598716259, 0.0003068994847126305, -0.008246595971286297, -0.04126279428601265, -0.029599495232105255, -0.019689269363880157, 0.013881471939384937, -0.00911120604723692, -0.026451120153069496, 0.007620498538017273, -0.007304468657821417, -0.04603305831551552, 0.021072646602988243, -0.007525093387812376, 0.002079537371173501, 0.005294994451105595, -0.06272898614406586, -0.013416370376944542, -0.023159638047218323, -0.0087832510471344, -0.0468440055847168, -0.05938979983329773, 0.02429257519543171, -0.00045988336205482483, 0.005777983460575342, 0.020905686542391777, 0.02578328363597393, 0.005139960907399654, -0.018019676208496094, 0.021692780777812004, -0.03992711752653122, 0.021418491378426552, -0.02388710342347622, 0.03267631679773331, -0.05104183778166771, -0.006887070368975401, 0.005545433145016432, -0.018389372155070305, 0.007847086526453495, 0.034608274698257446, 0.002037797588855028, 0.026164904236793518, -0.027452876791357994, -0.009719415567815304, 0.003006757702678442, 0.04336170852184296, -0.03584854304790497, 0.002113823778927326, -0.02083413302898407, -0.0351807065308094, -0.014895153231918812, -0.020726801827549934, 0.01203895639628172, -0.025306256487965584, 0.027667537331581116, -0.032867126166820526, -0.015718024224042892, 0.016063867136836052, -0.0034405537880957127, -0.02597409300506115, 0.005575247574597597, 0.009785006754100323, -0.01899758167564869, 0.005441083572804928, 0.004385662730783224, 0.014716267585754395, -0.02487693354487419, 0.042741574347019196, -0.006857255939394236, 0.02833537571132183, 0.007650312501937151, 0.02444760873913765, -0.03167456015944481, -0.04932454228401184, 0.011687149293720722, -0.00896809808909893, -0.025807134807109833, -0.00029870058642700315, 0.026164904236793518, 0.03145989775657654, 0.002337429905310273, -0.0017426374834030867, 0.019880080595612526, 0.0019155596382915974, 0.05624142661690712, 0.032246991991996765, 0.01644548960030079, -0.009951965883374214, 0.05123264715075493, -0.001684499904513359, -0.0020109647884964943, -0.0029903599061071873, -0.029194023460149765, -0.03945009410381317, -0.007703978102654219, 0.0022539503406733274, -0.0007352916290983558, 0.03549077361822128, 0.05209129676222801, 0.012170138768851757, 0.019546162337064743, 0.03360651805996895, -0.025711728259921074, -0.006648557260632515, 0.013690660707652569, -0.07050451636314392, -0.053140752017498016, -0.007960380055010319, -0.01309437770396471, -0.016862887889146805, -0.017184879630804062, 0.011621558107435703, -0.0560506172478199, -0.016958292573690414, 0.01737569086253643, -0.0025968130212277174, -0.011228011921048164, 0.023350447416305542, -0.00530990120023489, 0.0010174080962315202, 0.03680259734392166, 0.00896809808909893, -0.0026594228111207485, 0.013559478335082531, 0.0050385924987494946, -0.005971775855869055, -0.009677675552666187, 0.01961771585047245, 0.006439858116209507, 0.013368668034672737, 0.006565077230334282, 0.015384105034172535, -0.04791731387376785, 0.04035644233226776, -0.00011338696640450507, 0.03639712184667587, 0.02525855414569378, 0.024686122313141823, 0.01797197386622429, 0.03730347380042076, 0.017387617379426956, -0.01679133251309395, 0.004176963586360216, -0.0008392684976570308, -0.043981846421957016, -0.008974061347544193, 0.031626857817173004, 0.008842878974974155, -0.014239241369068623, 0.00012959841114934534, -0.0063325269147753716, -0.03315334394574165, -0.01390532311052084, 0.0027876237872987986, 0.012963195331394672, 0.018270116299390793, 0.0004129260778427124, -0.007459502201527357, 0.013786066323518753, -0.040499549359083176, -0.007286579813808203, 0.017924271523952484, -0.028144564479589462, -0.014549308456480503, 0.016111571341753006, -0.013034749776124954, 0.032246991991996765, 0.020249774679541588, 0.004412495065480471, -0.03966475650668144, 0.022909197956323624, -0.01878291927278042, 0.01706562377512455, -0.009755192324519157, 0.0013543081004172564, -0.03532381355762482, -0.019760822877287865, -0.006255010142922401, -0.014096133410930634, -0.00946897640824318, 0.05380859225988388, 0.0015667339321225882, -0.01629045605659485, 0.006594891659915447, -0.01934342458844185, -0.010506508871912956, -0.020881835371255875, 0.003738695289939642, 0.02176433429121971, 0.00718521187081933, 0.025640174746513367, -0.020202072337269783, -0.029003212228417397, -0.012438466772437096, -0.021776260808110237, -0.008449331857264042, 0.009618046693503857, 0.013022824190557003, -0.018735216930508614, -0.025616323575377464, -0.01406035665422678, -0.043552521616220474, 0.005533507559448481, -0.004472123458981514, 0.0011821313528344035, -0.060057640075683594, -0.03339185565710068, 0.049181435257196426, 0.004767283797264099, -0.023803623393177986, 0.011579819023609161, -0.03849603980779648, -0.0305773988366127, -0.025926390662789345, 0.025139296427369118, -0.017089474946260452, -0.027953753247857094, -0.037136513739824295, 0.0008243614574894309, -0.01376221515238285, -0.0300765223801136, 0.011514227837324142, 0.0030887466855347157, -0.0003413720987737179, -0.00597773864865303, -0.02388710342347622, 0.013714511878788471, 0.0036939741112291813, -0.011883922852575779, 0.03639712184667587, -0.001331947511062026, 0.020631397143006325, -0.00917083490639925, -0.00828237272799015, 0.024185243993997574, -0.011031238362193108, 0.005637857131659985, -0.005742206703871489, -0.01671977899968624, 0.0038519890513271093, 0.007733792532235384, 0.011293603107333183, -0.023278893902897835, 0.017673833295702934, 0.04493589699268341, -0.033368006348609924, 0.015968462452292442, -0.002207738347351551, -0.0029352037236094475, 0.004188889171928167, 0.0412389412522316, -0.0007639877730980515, 0.0007226206362247467, -0.01902143284678459, -0.021501969546079636, -0.03086361475288868, -0.05266372859477997, -0.04135819897055626, 0.03863914683461189, -0.029599495232105255, 0.0300765223801136, -0.020726801827549934, 0.014775896444916725, 0.01766190677881241, -0.023934805765748024, -0.03665948659181595, -0.012354986742138863, -0.00525623606517911, -0.04512671008706093, -0.0006842348957434297, -0.029694899916648865, -0.020941464230418205, 0.026928147301077843, 0.0037685094866901636, -0.036420974880456924, 0.00779342046007514, -0.019045284017920494, 0.0234458539634943, 0.0015205220552161336, -0.01186603493988514, 0.0009346738224849105, 0.024733824655413628, -0.04226455092430115, 0.0050385924987494946, 0.0078947888687253, 0.000992811401374638, -0.07179249078035355, 0.0014817636692896485, 0.03432205691933632, 0.01902143284678459, 0.034989893436431885, -0.0006104448693804443, 0.041429754346609116, 0.04581839591264725, 0.003121542278677225, -0.02211017906665802, 0.009361645206809044, 0.01466856524348259, -0.022396394982933998, -0.03880610689520836, -0.032962530851364136, -0.00736409705132246, 0.024423757568001747, 0.012450392358005047, -0.03627786785364151, 0.006404080893844366, 0.011460562236607075, -0.02307615801692009, 0.0051131281070411205, -0.008771325461566448, 0.0007472173310816288, 0.013046675361692905, -0.0280014555901289, 0.01619504950940609, -0.005453009158372879, -0.02730976790189743, 0.04567528888583183, -0.008574551902711391, 0.0016367972129955888, -0.0011202669702470303, 0.011049126274883747, -0.003917580470442772, -0.016433563083410263, 0.012247655540704727, 0.005050518084317446, -0.007346208207309246, -0.009689601138234138, 0.012015105225145817, -0.0074535394087433815, 0.05757709965109825, -0.01799582503736019, -0.04822738096117973, -0.015145591460168362, -0.04562758654356003, -0.007173286285251379, 0.016731705516576767, 0.012712756171822548, -0.048847515136003494, 0.053856294602155685, -0.012450392358005047, -0.006559114437550306, 0.002586378250271082, -0.006404080893844366, 0.030887465924024582, 0.015956537798047066, -0.007859012112021446, 0.011842182837426662, 0.000261619221419096, 0.011418822221457958, 0.020535990595817566, -0.014835524372756481, -0.006123827770352364, 0.0006178984185680747, -0.01694636605679989, 0.00695266155526042, 0.022217510268092155, -0.012170138768851757, 0.0037714908830821514, 0.028478482738137245, 0.013797991909086704, -0.003541921963915229, -0.003881803248077631, 0.0027876237872987986, -0.019391126930713654, -0.020691026002168655, -0.0052472916431725025, 0.018675588071346283, -0.017351839691400528, 0.01716102845966816, 0.02067909948527813, 0.005795872304588556, 0.03200848028063774, -0.0031692448537796736, 0.025043891742825508, -0.012319209985435009, -0.004188889171928167, 0.04357637092471123, -0.0008340510539710522, -0.0012104547349736094, 0.025520918890833855, 0.010995461605489254, 0.020631397143006325, -0.030434291809797287, 0.008037896826863289, -0.014084207825362682, -0.024686122313141823, -0.00687514478340745, -0.01791234500706196, 0.06000993400812149, -0.020869910717010498, 0.0009637426119297743, -0.03890151157975197, 0.017017921432852745, 0.00022174279729370028, -0.019546162337064743, 0.0028696125373244286, -0.001426607370376587, -0.016028091311454773, -0.03384502977132797, 0.016612447798252106, -0.032342396676540375, -0.056384533643722534, -0.010727133601903915, -0.019725047051906586, -0.026331864297389984, -0.0030529696960002184, 0.05013548582792282, 0.009612084366381168, 0.014644714072346687, 0.031746115535497665, 0.02226521261036396, 0.01998741179704666, -0.006594891659915447, 0.025115445256233215, -0.00030634045833721757, -0.0023448835127055645, -0.052425213158130646, -0.006445820908993483, 0.005819723475724459, -0.007835160940885544, 0.06649749726057053, 0.03594394773244858, 0.035920098423957825, 0.03272401914000511, -0.0016546857077628374, 0.004716599825769663, 0.01205088198184967, 0.006767813581973314, -0.011335342191159725, 0.032366249710321426, 0.007507205009460449, -0.00028696126537397504, -0.0591035857796669, 0.020094741135835648, -0.061297908425331116, 0.0412866435945034, -0.018293967470526695, 0.03992711752653122, 0.02456686459481716, -0.02104879543185234, -0.000862374494317919, 0.036516379565000534, -0.00718521187081933, 0.004382681101560593, 0.057624801993370056, -0.017351839691400528, -0.00514592370018363, 0.030625103041529655, 0.032461654394865036, 0.011967402882874012, 0.01315400656312704, 0.05686156079173088, -0.042550764977931976, 0.04961075633764267, -0.003935468848794699, 0.009737303480505943, -0.0377327986061573, -0.030434291809797287, 0.00481200497597456, 0.01741146855056286, 0.01067943125963211, -0.004919335711747408, 0.007841123268008232, 0.01884254813194275, 0.004194851964712143, 0.007179249078035355, 0.030911318957805634, -0.009510716423392296, 0.013499850407242775, 0.03372577577829361, 0.01702984608709812, 0.01660052314400673, 0.026737336069345474, -0.03270016610622406, 0.003148375079035759, -0.015097889117896557, -0.007191174663603306, 0.01921224221587181, 0.007525093387812376, -0.006070162169635296, 0.00718521187081933, 0.02699970081448555, 0.015014410018920898, -0.018019676208496094, 0.019844302907586098, 0.0077218664810061455, -0.008944246917963028, -0.017351839691400528, -0.013642958365380764, 0.026856591925024986, -0.027762943878769875, -0.012462317943572998, -0.021406564861536026, 0.03878225386142731, -0.010715208016335964, 0.014895153231918812, -0.009373570792376995, -0.0009003875311464071, 0.003532977541908622, 0.03301023319363594, -0.01613542251288891, -0.004117335192859173, 0.0023851324804127216, -0.04042799770832062, -0.019426904618740082, 0.015825355425477028, -0.009886374697089195, 0.007370059844106436, -0.012182064354419708, 0.005864444654434919, 0.0026415344327688217, -0.00985656026750803, -0.047130219638347626, 0.007769569288939238, -0.06144101545214653, 0.021156126633286476, 0.020011262968182564, 0.021442342549562454, 0.03758968785405159, 0.0020467417780309916, 6.792038038838655e-05, -0.025711728259921074, 0.0013118229107931256, 0.0017590352799743414, 0.032342396676540375, -0.022038625553250313, -0.013929174281656742, -0.020810281857848167, -0.0021510913502424955, -0.010846390388906002, -0.019069135189056396, -0.04107198119163513, -0.008854804560542107, -0.005110146477818489, 0.00575413228943944, -0.005661708302795887, 0.03341570869088173, 0.004293238744139671, -0.024590717628598213, -0.010816575959324837, 0.006904958747327328, -0.025640174746513367, -0.025449365377426147, -0.019391126930713654, 0.03117368184030056, -0.006708185188472271, -0.00820485595613718, -0.0038221748545765877, 0.007036141119897366, 0.02425679750740528, -0.00334812980145216, -0.0234220027923584, -0.016612447798252106, 0.02257527969777584, -0.0020720839966088533, -0.021096497774124146, 0.0022375525441020727, 0.020631397143006325, -0.0042306287214159966, -0.02176433429121971, 0.010536323301494122, 0.01874714158475399, -0.017518797889351845, 0.02255142852663994, -0.02369629219174385, -0.03425050526857376, 0.014131910167634487, -0.018460925668478012, -0.03904461860656738, 0.022992677986621857, -0.005470898002386093, 0.02893165871500969, 0.01741146855056286, 0.01868751458823681, 0.014179613441228867, -0.0032735944259911776, -0.015825355425477028, -0.01687481254339218, -0.019820451736450195, 0.00043789544724859297, -0.008991950191557407, 0.002890482544898987, 0.0008981514838524163, 0.020011262968182564, 0.008222744800150394, 0.04350481927394867, -0.006111902184784412, 0.024805378168821335, 0.014597011730074883, -0.010703282430768013, 0.005274124443531036, 0.03894921392202377, -0.015252922661602497, 0.003568754531443119, -0.013332891277968884, -0.02326696738600731, 0.008240632712841034, -0.005047536920756102, -0.0027324676048010588, -0.0027950771618634462, 0.009027726948261261, 0.03964090347290039, 0.0011918209493160248, -0.010733096860349178, -0.002245006151497364, -0.007089806720614433, 0.012074734084308147, 0.032246991991996765, 0.014597011730074883, 0.012665053829550743, 0.0013960478827357292, -0.04102427884936333, -0.005262198857963085, -0.007864974439144135, -0.0025714710354804993, -0.0216689296066761, 0.027118956670165062, 0.014108058996498585, -0.010906018316745758, -0.0035001819487661123, -0.008759398944675922, 0.05204359441995621, 0.012843938544392586, -0.0011307018576189876, 0.01083446480333805, -0.05066021531820297, -0.021692780777812004, 0.026713484898209572, -0.00940338522195816, -0.010005631484091282, 0.006290787365287542, 0.0011262297630310059, -0.0072448402643203735, 0.001426607370376587, 0.014775896444916725, 0.0009682147647254169, 0.05757709965109825, -0.0006313147605396807, 0.018079305067658424, -0.0023061251267790794, 0.035109151154756546, 0.00870573427528143, -0.013225560076534748, 0.03289097920060158, -0.026212606579065323, -0.01487130206078291, -0.00669625960290432, -0.018103156238794327, 0.03930698335170746, -0.023803623393177986, -0.00355384754948318, 0.027238214388489723, 0.019892005249857903, 0.00436777388677001, 0.013225560076534748, -0.015861131250858307, -0.0017500909743830562, -0.016183124855160713, 0.02547321654856205, -0.03272401914000511, -0.009618046693503857, -0.018568256869912148, 0.004871633369475603, 0.021657003089785576, -0.02843078039586544, 0.01631430722773075, 0.008497035130858421, -0.0047613210044801235, 0.008252558298408985, 0.017113326117396355, -0.02556862123310566, -0.02721436321735382, -0.028049159795045853, 0.010285884141921997, 0.004671878647059202, 0.00963593553751707, -0.024423757568001747, -0.005095239263027906, 0.012003179639577866, -0.007888825610280037, 0.002283764537423849, -0.009653824381530285, -0.03284327685832977, -0.0422884002327919, 0.021871665492653847, -0.00420379638671875, -0.0173160620033741, 0.009570344351232052, -0.01613542251288891, -0.027858348563313484, 0.0027324676048010588, 0.00025435202405788004, 0.016421638429164886, 0.0038311192765831947, 0.0006111902184784412, -0.027142807841300964, 0.007537018973380327, 0.00033410490141250193, -0.027452876791357994, -0.010911981575191021, 0.020345181226730347, -0.021215753629803658, -0.015813428908586502, 0.00873554777354002, 0.0325809121131897, 0.01961771585047245, 5.823077663080767e-05, -0.005357604008167982, -0.013523701578378677, 0.00363136432133615, 0.01955808699131012, -0.0017083511920645833, -0.015670321881771088, -0.016648225486278534, -0.01955808699131012, -0.006421969272196293, 0.018627885729074478, 0.019796600565314293, 0.023839399218559265, 0.027047403156757355, 0.00843740627169609, -0.0407380647957325, -0.003279557218775153, 0.03813827037811279, -0.00039541025762446225, 0.016743630170822144, 0.009516678750514984, -0.031102128326892853, 0.020190147683024406, -0.03241395205259323, 0.02955179288983345, 0.018615959212183952, 0.024113690480589867, -0.00034808029886335135, -0.007405836600810289, 0.006982475519180298, 0.03026733174920082, 0.012772385030984879, -0.04298008978366852, 0.039497796446084976, -0.004320071544498205, 0.009409347549080849, -0.0033183156047016382, -0.0008802629890851676, 0.0037983236834406853, -0.04951535165309906, -0.01039917767047882, -0.0006603836081922054, 0.01662437431514263, 0.0043349782936275005, -0.0037476394791156054, -3.4519205655669793e-05, 0.032461654394865036, -0.047321029007434845, -0.01849670335650444, -0.017089474946260452, -0.029981115832924843, -0.012390763498842716, 0.006111902184784412, 0.010661542415618896, 0.02983800880610943, 0.017578426748514175, -0.004382681101560593, -0.006404080893844366, 0.03983171284198761, 0.0025953224394470453, 0.011532115750014782, 0.030100373551249504, 0.04517441242933273, 0.01180044375360012, -0.00834796391427517, 0.0041322424076497555, 0.016147347167134285, 0.045794546604156494, 0.07627654075622559, 0.01840129867196083, 0.002455195877701044, 0.05514426529407501, -0.015896908938884735, -0.024125615134835243, 0.018663661554455757, 0.009713452309370041, 0.021597376093268394, -0.029718751087784767, 0.017864642664790154, 0.015467585064470768, 0.003368999809026718, -0.008151190355420113, 0.019605789333581924, 0.0008251068065874279, 0.00843740627169609, -0.027786795049905777, -0.02475767582654953, -0.013988802209496498, 0.036850299686193466, 0.006505449302494526, -0.004492993466556072, 0.003699936904013157, -0.01217610202729702, -0.030887465924024582, 0.004820949397981167, 0.016278529539704323, -0.04195448383688927, -0.014573159627616405, -0.029098616912961006, -0.023612812161445618, -0.010566137731075287, -0.022658759728074074, 0.02771523967385292, 0.048442043364048004, -0.02046443708240986, -0.032461654394865036, 0.039688605815172195, 0.007238877471536398, -0.037136513739824295, 0.021096497774124146, 0.019224168732762337, -0.008192930370569229, 0.0005858481745235622, 0.013881471939384937, -0.0025192962493747473, -0.015777651220560074, 0.009415310807526112, -0.013130154460668564, -0.0026117202360183, 0.005688541103154421, 0.04360022395849228, 0.0020571767818182707, 0.004320071544498205, 0.001136664766818285, -0.012927418574690819, -0.03503759577870369, -0.008997912518680096, 0.043457116931676865, -0.01528869941830635, 0.012998972088098526, -0.02547321654856205, 0.02566402591764927, 0.006910921540111303, -0.013046675361692905, 0.0021376751828938723, -0.05070791766047478, 0.033773478120565414, -0.016266604885458946, 0.015240997076034546, 0.01629045605659485, 0.026761187240481377, -0.0004401314945425838, 0.03405969217419624, 0.02077450416982174, 0.014716267585754395, -0.008192930370569229, -0.018043527379631996, 0.020261701196432114, 0.04066650941967964, 0.02267068438231945, 0.0012208897387608886, 0.009600158780813217, 0.020070889964699745, -0.05800642445683479, -0.0020079833921045065, 0.0642077699303627, -0.020416734740138054, 0.005625931546092033, 0.02609335072338581, -0.03940239176154137, 0.027834497392177582, 0.0039235432632267475, -0.014286943711340427, -0.02149004489183426, -0.010709245689213276, 0.028502333909273148, -0.019081059843301773, 0.0152767738327384, -0.03589624539017677, 0.0011456089559942484, -0.0023717163130640984, -0.027238214388489723, -0.03310564160346985, 0.00107256427872926, -0.003908636048436165, 0.006499486044049263, -0.008884618990123272, 0.0019558086059987545, -0.00624308455735445, -0.06358763575553894, 0.06578195840120316, -0.00687514478340745, -0.04343326389789581, -0.030195778235793114, 0.003202040446922183, -0.04798886924982071, 0.02833537571132183, -0.004150130786001682, 0.002236061729490757, -0.009379534050822258, 0.010530360043048859, -0.004039818421006203, 0.012927418574690819, 0.0014087188756093383, 0.014239241369068623, 0.036110907793045044, 0.007757643703371286, -0.020941464230418205, -0.0104468809440732, 0.019593864679336548, -0.0165647454559803, -0.0005206296918913722, -0.014108058996498585, -0.034178949892520905, -0.04755954444408417, -0.01815085858106613, 0.007125583477318287, 0.05867426097393036, -0.03730347380042076, 0.01791234500706196, 0.03167456015944481, 0.038662999868392944, -0.011746778152883053, 0.025401661172509193, 0.0019543180242180824, -0.002653460018336773, 0.03107827715575695, 0.06020074710249901, 0.01385761983692646, 0.013082452118396759, -0.0066843340173363686, -0.0006249792641028762, 0.00462417583912611, -0.01815085858106613, -0.015205220319330692, -0.013225560076534748, -0.011454598978161812, -0.009141020476818085, 0.021657003089785576, 0.011842182837426662, 0.026451120153069496, -0.007197137456387281, 0.04775035381317139, 0.03322489559650421, 0.020011262968182564, -0.02441183105111122, -0.010411103256046772, -0.0018499684520065784, 0.004415476694703102, -0.03382118046283722, -0.005339715629816055, 0.007077881135046482, -0.01781694032251835, -0.014632788486778736, 0.0002796940680127591, 0.03496604412794113, -0.018460925668478012, -0.014084207825362682, -0.0045436774380505085, 0.0021779241506010294, -0.022682610899209976, 0.01722065731883049, 0.010995461605489254, -0.011675223708152771, 0.062108851969242096, 0.0023329576943069696, 0.0009689601138234138, -0.017697684466838837, -0.005476860795170069, 0.04007022827863693, 0.02431642636656761, -0.013976876623928547, 0.017447244375944138, -0.01865173690021038, 0.019081059843301773, 0.0030887466855347157, -0.002771225990727544, 0.005384436808526516, 0.012975120916962624, -0.023255042731761932, -0.0036701227072626352, 0.004996852949261665, 0.025520918890833855, 0.02843078039586544, -0.01502633560448885, 0.03250935673713684, 0.010494583286345005, 0.02042866125702858, -0.0050743697211146355, -0.023970581591129303, 0.004168019164353609, 0.008598403073847294, 0.009564382024109364, 0.025187000632286072, 0.01934342458844185, -0.01675555668771267, 0.04371948167681694, 0.01896180398762226, 0.021847814321517944, -0.008824990130960941, 0.028907807543873787, 0.03747043386101723, -0.009761154651641846, 0.022026699036359787, 0.016171198338270187, -0.0072627286426723, -0.009814820252358913, -0.015968462452292442, 0.031841520220041275, 0.04806042090058327, 0.036110907793045044, -0.03830523043870926, 0.02976645529270172, 0.00016975436301436275, 0.05461953580379486, -0.026021797209978104, 0.009570344351232052, 0.021323084831237793, -0.0034942191559821367, -0.02964719757437706, 0.005596117116510868, -0.03665948659181595, -0.0011329379631206393, -0.006255010142922401, 0.007501241751015186, -0.012152250856161118, -0.014501606114208698, -0.021871665492653847, 0.0063683041371405125], [0.009552772156894207, 0.018158450722694397, 0.014311619102954865, -0.05710616707801819, -0.04990358650684357, -0.008938916027545929, 0.0008915530634112656, 0.04426780343055725, 0.015317173674702644, 0.016369499266147614, 0.0016939508495852351, -0.0008754758746363223, 0.002239113673567772, 0.026074273511767387, -0.04066651314496994, -0.016147341579198837, -0.030704503878951073, 0.05299040675163269, 0.015024861320853233, 0.032014064490795135, -0.011692499741911888, 0.043379172682762146, 0.03952064737677574, 0.02867000922560692, -0.026167813688516617, 0.024577634409070015, -0.021256964653730392, -0.02469455823302269, 0.001379714929498732, -0.036036282777786255, 0.04368317872285843, -0.02320961095392704, 0.05266301706433296, -0.0023852698504924774, 0.022554831579327583, -0.015235326252877712, -0.002342884661629796, -0.028132153674960136, -0.0039374493062496185, -0.006261333357542753, -0.06669401377439499, 0.0017801830545067787, 0.022952375933527946, 0.0033937478438019753, -0.02574688382446766, 0.11973119527101517, 0.020836032927036285, -0.024297013878822327, -0.019584937021136284, 0.02268344908952713, -0.0032797460444271564, -0.01364514697343111, -0.007605970837175846, 0.004881618544459343, 0.028506312519311905, 0.05514182522892952, 0.0127799017354846, 0.008804451674222946, 0.029792487621307373, 0.01160480547696352, -0.0003615540044847876, -0.003209591144695878, 0.031055279076099396, 0.03865540400147438, -0.04468873143196106, 0.03823447227478027, 0.0037035990972071886, 0.039684344083070755, -0.06884543597698212, -0.02551303431391716, -0.025138873606920242, -0.029652178287506104, -0.03554519638419151, -0.03121897391974926, -0.0267056692391634, 0.007985977455973625, 0.03231806680560112, 0.02263667806982994, -0.0017012587049975991, -0.021023113280534744, -0.0005754901794716716, -0.02243790589272976, -0.02738383412361145, 0.023186225444078445, -0.0070681157521903515, 0.017491979524493217, -0.04139144718647003, -0.01583164371550083, 0.0009777852101251483, 0.0037737542297691107, -6.462846067734063e-05, 0.011055258102715015, -0.0033703630324453115, 0.07749788463115692, 0.0360596664249897, -0.00892137736082077, -0.007652740925550461, -0.03178021311759949, -0.029090939089655876, 0.05051159858703613, 0.02906755357980728, -0.014697471633553505, 0.014662394300103188, -0.0076410481706261635, 0.027220139279961586, -0.055749837309122086, -0.020438488572835922, 0.042326848953962326, 0.007243503350764513, -0.02492840774357319, -0.09877823293209076, -0.012908519245684147, -0.016673503443598747, -0.007284427061676979, 0.0031920522451400757, -0.021420659497380257, 0.008781067095696926, -0.016392884775996208, -0.03351070359349251, -0.04122775420546532, -0.025349337607622147, -0.02181820385158062, 0.031967293471097946, -0.08783405274152756, -0.020064329728484154, -0.02248467691242695, -0.05921081826090813, -0.0009083610493689775, -0.0753464624285698, -0.00344051793217659, 0.01465070154517889, -0.037275686860084534, 0.05944466590881348, -0.028319234028458595, -0.03743938356637955, 0.004054374061524868, 0.005229470320045948, 0.032434992492198944, 0.012978673912584782, -0.038678787648677826, 0.019549859687685966, -0.019105544313788414, -0.01764398068189621, 0.0010442862985655665, -0.07567385584115982, -0.02944171242415905, 0.004194684326648712, 0.024109933525323868, -0.016509808599948883, -0.022309288382530212, -0.008517986163496971, 0.04080682247877121, 0.013914073817431927, -0.01668519712984562, 0.006074253469705582, 0.019982481375336647, -0.018193528056144714, 0.0026731977704912424, 0.004066066816449165, 0.043472710996866226, -0.0016194111667573452, -0.003060511779040098, 0.01634611375629902, -0.0362701341509819, 0.06220409646630287, -0.003925756551325321, -0.009921086020767689, 0.04934234544634819, -0.03779015690088272, -0.0007892437279224396, 0.020344948396086693, -0.046349067240953445, -0.02167789451777935, -0.0031072816345840693, -0.025770269334316254, -0.0410640574991703, 0.005112545099109411, -0.031008508056402206, -0.012440819293260574, 0.017994755879044533, -0.007582585792988539, 0.03643382713198662, -0.005743940360844135, 0.000411064422223717, -0.04971650615334511, 0.005477936007082462, -0.06225086748600006, 0.01168080698698759, -0.004975158255547285, 0.0006069138180464506, -0.0007570893503725529, 0.021888358518481255, -0.02401639334857464, 0.038959406316280365, -0.03510088473558426, 0.0326220728456974, -0.0010347862262278795, -0.009593695402145386, -0.004083605483174324, -0.01572641171514988, -0.012931903824210167, -0.011850347742438316, -0.0013219831744208932, 0.03549842908978462, -0.04934234544634819, -0.02665889821946621, -0.005086237099021673, -0.005232393275946379, 0.021175116300582886, 0.047214310616254807, 0.05083898827433586, -0.008734297007322311, -0.027126599103212357, 0.013680224306881428, -0.016521502286195755, 0.017959678545594215, -0.015667948871850967, -0.02829584851861, -0.030751273036003113, 0.0196200143545866, -0.011429417878389359, -0.04394041374325752, 0.05097929760813713, 0.009669696912169456, 0.0002493790816515684, 0.0021543430630117655, 0.017082741484045982, -0.02110496163368225, -0.002028648741543293, -0.04001173377037048, -0.029231248423457146, 0.020988035947084427, -0.0073487358167767525, -0.0015521793393418193, 0.02972233295440674, 0.012639591470360756, -0.04206961393356323, -0.05467412620782852, 0.011324185878038406, 0.022379443049430847, 0.024905024096369743, 0.007728741969913244, -0.04190591722726822, 0.0037796003744006157, 0.007237656973302364, 0.011078642681241035, -0.03154636174440384, -0.006062560714781284, 0.016919046640396118, 0.018193528056144714, 0.01572641171514988, 0.019959095865488052, 0.02297576144337654, -0.07183871418237686, 0.03107866272330284, 0.02824907749891281, -0.0018386455485597253, 0.010049703530967236, 0.07169840484857559, -0.028974013403058052, 0.06084776669740677, 0.00807951670140028, -0.04510966315865517, 0.03510088473558426, -0.022168979048728943, 0.00017529613978695124, 0.043706562370061874, -0.0010435555595904589, 0.005779017694294453, 0.02147912047803402, -0.07109039276838303, 0.026167813688516617, -0.008757681585848331, -0.008325059898197651, -0.03909971937537193, 0.02205205336213112, -0.03178021311759949, 0.0027331216260790825, -0.0031423592008650303, 0.02962879277765751, -0.044758886098861694, -0.04167206585407257, 0.04389364272356033, -0.022893913090229034, 0.020228024572134018, 0.019795401021838188, 0.0018532611429691315, 0.02862323820590973, -0.02056710608303547, 0.04230346158146858, -0.006337334401905537, -0.020298179239034653, 0.011031873524188995, -0.005524706095457077, 0.059584975242614746, 0.026448434218764305, -0.010219244286417961, -0.02166620083153248, 0.015527639538049698, 0.073054738342762, 0.016521502286195755, -0.009891854599118233, -0.03884248435497284, -0.006653032265603542, 0.00558901485055685, 0.01864953711628914, 0.016720274463295937, -0.018345531076192856, 0.007775512058287859, -0.06486998498439789, -0.015457483939826488, 0.03276238217949867, -0.03252853453159332, -0.05462735518813133, -0.029465097934007645, -0.023268073797225952, 0.020029250532388687, -0.023946238681674004, 0.005980713292956352, 0.013691917061805725, 0.018953541293740273, 0.00686934357509017, -0.030610963702201843, -0.02661212906241417, 0.008254904299974442, -0.029792487621307373, 0.03568550944328308, 0.015001476742327213, -0.01673196628689766, -0.019538166001439095, -0.02330315113067627, -0.055469218641519547, 0.006653032265603542, 0.005086237099021673, -0.017714137211441994, 0.016556579619646072, -0.0022741910070180893, 0.03807077929377556, -0.003031280357390642, 0.004089451860636473, 0.055843375623226166, -0.017854446545243263, -0.03556858375668526, -0.04071328416466713, -0.001372407074086368, -0.027033058926463127, 0.016369499266147614, 0.044758886098861694, -0.0187079980969429, 0.02633150853216648, -0.008523832075297832, 0.03655075281858444, -0.03093835338950157, 0.016568271443247795, -0.04190591722726822, 0.014346696436405182, 0.04864079877734184, 0.0008791298023425043, -0.04019881412386894, 0.006933652330189943, -0.04676999896764755, 0.021420659497380257, -0.01971355453133583, -0.007822281681001186, -0.008038593456149101, 0.0017100280383601785, -0.009582003578543663, -0.010049703530967236, 0.006986268330365419, 0.0009375922963954508, 0.019959095865488052, 0.01476762630045414, -0.014837781898677349, -0.029605409130454063, -0.033159926533699036, -0.009669696912169456, 0.06393458694219589, 0.010973410680890083, -0.020929573103785515, -0.015749797224998474, 0.03446948900818825, -0.02320961095392704, 0.018450763076543808, -0.008821990340948105, 0.02953525260090828, 0.002696582581847906, -0.04097051918506622, -0.004206376615911722, 0.032014064490795135, 0.00329143856652081, -0.008997377939522266, 0.007705356925725937, 0.0053639342077076435, -0.024413937702775, -0.0036275978200137615, 0.020742494612932205, 0.038187701255083084, 0.035989511758089066, -0.02061387710273266, -0.04401056841015816, -0.005489628296345472, 0.002608889015391469, -0.031429439783096313, 0.005004389677196741, -0.031335897743701935, -0.019269239157438278, -0.03264545649290085, 0.014849473722279072, 0.048453718423843384, -0.018474148586392403, 0.025185642763972282, -0.011213107034564018, 0.04417426139116287, 0.01860276609659195, 0.037766773253679276, -0.0018196451710537076, -0.00608009984716773, 0.021806512027978897, 0.054159656167030334, -0.02450747787952423, -0.007798897102475166, 0.028038613498210907, 0.010207551531493664, 0.03645721450448036, -0.036036282777786255, -0.0007987438584677875, -0.008909684605896473, -0.0005601437878794968, -0.03554519638419151, -0.045530591160058975, -0.02642504870891571, 0.003858524840325117, 0.04398718103766441, 0.01325929444283247, -0.023724080994725227, 0.0032446684781461954, -0.012464203871786594, -0.00896814651787281, 0.0017714136047288775, -0.005770248360931873, -0.008482907898724079, 0.005276240408420563, 0.014779319055378437, 0.03044726885855198, -0.0019131852313876152, -0.02115173079073429, 0.0044957660138607025, 0.07268057763576508, 0.01721135899424553, 0.034352563321590424, -0.01177434716373682, 0.005779017694294453, -0.04910849779844284, 0.02234436571598053, -0.06491675972938538, -0.018766460940241814, -0.002021340886130929, -0.06402812898159027, 0.059725288301706314, -0.03456302732229233, 0.003557442920282483, 0.033884864300489426, 0.015083324164152145, 0.052055008709430695, 0.03634028881788254, 0.04330901801586151, -0.019491396844387054, -0.00944753922522068, -0.03163990378379822, -0.00913184229284525, -0.007483199704438448, 0.036129821091890335, 0.011084489524364471, 0.009476770646870136, -0.040876977145671844, -0.010207551531493664, -0.04910849779844284, -0.02353700064122677, -0.07918160408735275, -0.014288234524428844, 0.0133528346195817, 0.04211638122797012, 0.01736336201429367, 0.0026191198267042637, 0.03577904775738716, 0.04204622656106949, 0.03563873842358589, 0.04291147366166115, -0.02200528420507908, -0.04298162832856178, -0.006921959575265646, 0.018158450722694397, 0.020988035947084427, -0.009564464911818504, -0.003998834639787674, -0.024484094232320786, 0.009962009266018867, -0.05359841510653496, 0.009634619578719139, -0.010154935531318188, 0.01914062164723873, -0.04143821820616722, -0.012054966762661934, -0.020216330885887146, 0.02560657262802124, 0.0013906765962019563, 0.0003204475506208837, -0.02637827768921852, 0.01417130883783102, 0.01864953711628914, -0.05458058789372444, -0.025489648804068565, -0.002772583859041333, -0.007997669279575348, -0.009488463401794434, -0.026308123022317886, 0.02829584851861, 0.017375053837895393, -0.006641339510679245, 0.009009070694446564, 0.009441693313419819, 0.016217496246099472, 0.008611525408923626, 0.004823156166821718, 0.0025197335053235292, 0.009020763449370861, -0.0360596664249897, -0.0652909129858017, 0.0013029829133301973, -0.02277698926627636, -0.025138873606920242, -0.019549859687685966, -0.022320982068777084, 0.01615903340280056, -0.009465077891945839, -0.004355456214398146, 0.02656535804271698, 0.009272151626646519, -0.0002904855355154723, -0.035404887050390244, 0.013200831599533558, -0.01798306405544281, -0.009786621667444706, 0.012487589381635189, -0.0013775225961580873, -0.03252853453159332, 0.010856485925614834, 0.015188556164503098, 0.006302257068455219, 0.032014064490795135, 0.043379172682762146, 0.01172173023223877, 0.008003516122698784, -0.00018141642794944346, 0.03687814250588417, -0.017725829035043716, 0.03879571333527565, -0.007243503350764513, 0.03729907423257828, -0.003916987217962742, -0.00569424731656909, 0.015644563362002373, -0.019058773294091225, -0.02570011280477047, -0.017223050817847252, -0.02953525260090828, -0.00658287713304162, -0.03657413646578789, -0.045296743512153625, -0.03166328743100166, -0.004878695122897625, 0.031242357566952705, -0.0020374180749058723, 0.014896243810653687, 0.05313071608543396, 0.029956182464957237, -0.028974013403058052, -0.030844813212752342, -0.022133901715278625, -0.010032164864242077, 0.010564173571765423, -0.03524119406938553, 0.01682550646364689, -0.03180359676480293, -0.03044726885855198, 0.004428534302860498, 0.007044730708003044, -0.008605679497122765, -0.015106708742678165, 0.06412166357040405, -0.004250223282724619, -0.027594298124313354, 0.03344054892659187, -0.016521502286195755, -0.033838093280792236, 0.018392302095890045, -0.03528796136379242, 0.030517423525452614, -0.014907936565577984, 0.01376207172870636, -0.012639591470360756, -0.01385561190545559, -0.011394340544939041, 0.03248176351189613, -0.0014286772347986698, -0.007436429616063833, 0.019842172041535378, -0.026822593063116074, 0.008266597054898739, 0.01884830929338932, 0.030423883348703384, 0.007459814660251141, 0.014662394300103188, -0.0058813272044062614, -0.04510966315865517, -0.04354286566376686, -0.04417426139116287, -0.022718526422977448, -0.0326220728456974, -0.009102610871195793, 0.006430874578654766, 0.01131833903491497, 0.03966095671057701, 0.002572349738329649, 0.01200819667428732, -0.006132715847343206, -0.0036597521975636482, -0.02287052944302559, -0.001041363226249814, 0.008395214565098286, 0.013808841817080975, 0.032060831785202026, 0.02359546348452568, -0.012978673912584782, 0.007132424507290125, -0.014639008790254593, 0.04029235243797302, -0.03725230321288109, -0.011815270408987999, 0.0029815873131155968, 0.04281793162226677, -0.03358085826039314, 0.007793050725013018, -0.017877832055091858, 0.0059368666261434555, 0.014487006701529026, 0.026448434218764305, 0.017281513661146164, 0.028740163892507553, 0.006220409646630287, -0.004744231700897217, -0.03657413646578789, 0.04723769798874855, -0.01239404920488596, 0.003998834639787674, 0.0007797435391694307, -0.003063434734940529, 0.0383513979613781, 0.04026896879076958, 0.0002373211900703609, -0.05303717777132988, 0.05308394879102707, -0.022578217089176178, -0.0005254317075014114, -0.0037912928964942694, 0.03021341748535633, -0.01455716136842966, -0.0012584052747115493, 0.00973400566726923, 0.030961738899350166, 0.009465077891945839, -0.001331483363173902, -0.011055258102715015, -0.0196200143545866, 0.014954706653952599, 0.04272439330816269, 0.026775823906064034, 0.0004793924745172262, 0.003159897867590189, 0.03166328743100166, 0.0017918755766004324, 0.004294070415198803, -0.015597794204950333, 0.017176281660795212, 0.056030455976724625, 0.017877832055091858, -0.03182698413729668, -0.012464203871786594, 0.01634611375629902, 0.009886007755994797, -0.006781649775803089, 0.005957328248769045, 0.023560386151075363, -0.005939789582043886, 0.026729052886366844, 0.042420387268066406, -0.014253156259655952, -0.033206697553396225, 0.013563299551606178, -0.04576444253325462, 0.04120436683297157, 0.0319439098238945, -0.0012138276360929012, -0.04508627578616142, 0.003557442920282483, 0.0017714136047288775, 0.013937459327280521, 0.01597195491194725, 0.03337039425969124, 0.016334421932697296, -0.0013921381905674934, -0.017082741484045982, -0.02684597857296467, -0.003072204301133752, -0.013937459327280521, 0.041742224246263504, -0.028927244246006012, -0.0042151459492743015, 0.05729324743151665, 0.009213689714670181, -0.02651858888566494, 0.02948848344385624, -0.0035048266872763634, -0.017714137211441994, -0.014966399408876896, 0.02249636873602867, 0.01923416182398796, 0.03266884386539459, -0.0073195043951272964, -0.0016208727611228824, 0.019830478355288506, -0.008740142919123173, 0.027968458831310272, -0.02330315113067627, -0.008664142340421677, 0.034118711948394775, -0.026354894042015076, 0.01059925090521574, -0.013364526443183422, 0.004893310833722353, 0.007945053279399872, -0.010149089619517326, -0.006156100891530514, -0.015352251939475536, -0.01453377678990364, -0.005574399139732122, 0.008178903721272945, 0.019970789551734924, -0.055843375623226166, 0.04541366919875145, -0.04139144718647003, 0.007033038418740034, -0.0168839693069458, -0.013703608885407448, 0.0024466554168611765, -0.010283553041517735, 0.011306647211313248, 0.005878404248505831, -0.01836891658604145, 0.0122069688513875, 0.0017085664439946413, 0.03245837986469269, 0.014393466524779797, -0.018251990899443626, -0.03203744813799858, -0.012265431694686413, -0.03898279368877411, -0.001569718006066978, -0.009868469089269638, -0.007828128524124622, -0.032201144844293594, -0.007570893503725529, 0.015948569402098656, 0.0174569021910429, 0.01802983321249485, -0.024811483919620514, 0.005019005388021469, -0.02153758332133293, -0.0196200143545866, -0.013867304660379887, 0.01435838919132948, 0.01832214556634426, 0.0012430588249117136, -0.0355919674038887, -0.004472380969673395, 0.0034522104542702436, 0.011587266810238361, -0.014603931456804276, 0.027641069144010544, 0.03446948900818825, -0.021654509007930756, 0.006337334401905537, -0.0028763548471033573, -0.039590802043676376, -0.03182698413729668, -0.02071910910308361, -0.0014703318011015654, 0.011616498231887817, 0.009856777265667915, 0.0038000622298568487, 0.007547508459538221, 0.016217496246099472, -0.019245853647589684, 0.01889507845044136, 0.0634668841958046, 0.012148506939411163, -0.03166328743100166, -0.005542244762182236, 0.03849170729517937, -0.011663268320262432, 0.001406023046001792, 0.005173930898308754, 0.010125704109668732, 0.030423883348703384, 0.055609527975320816, -0.006945344619452953, -0.0023706541396677494, 0.041368063539266586, -0.002771122381091118, -0.06973406672477722, 0.023724080994725227, -0.010102319531142712, 0.042794547975063324, 0.02143235132098198, 0.03054080903530121, 0.01000293344259262, -0.013364526443183422, 0.011943887919187546, 0.01917569898068905, 0.03395501896739006, -0.008547216653823853, -0.015586101450026035, 0.06047360599040985, -0.010230937041342258, 0.017293207347393036, 0.012417434714734554, -0.027734609320759773, -0.016942432150244713, 0.01976032368838787, 0.015586101450026035, 0.04966973885893822, -0.041742224246263504, 0.01079217717051506, 0.01673196628689766, -0.04422103241086006, 0.03213098645210266, -0.005477936007082462, -0.027851533144712448, -0.015901798382401466, 0.012312201783061028, -0.027009673416614532, -0.03332362323999405, 0.0008235904388129711, 0.011622344143688679, 0.03367439657449722, -0.0005930289626121521, 0.007214271929115057, 0.019199084490537643, -0.015574408695101738, -0.025115488097071648, 0.0009025147883221507, -0.017702443525195122, 0.007746280636638403, -0.0023384997621178627, -0.01191465649753809, -0.03299623355269432, 0.02101142145693302, -0.04482904076576233, 0.0200877133756876, -0.03753292188048363, 0.03460979834198952, -0.005176853854209185, -0.025933964177966118, -0.025138873606920242, -0.004256069660186768, -0.003159897867590189, -0.0018722614040598273, 0.019772015511989594, -0.013329449109733105, 0.009359845891594887, 0.03149959444999695, -0.017573826014995575, 0.0068167271092534065, -0.0047880783677101135, -0.009295537136495113, 0.013995921239256859, 0.011370955966413021, 0.06042683497071266, 0.0445016510784626, 0.003215437289327383, -0.004969312343746424, 0.05177438631653786, -0.0015054092509672046, -0.03171005845069885, 0.02460101805627346, -0.03577904775738716, 0.023525308817625046, -0.026495203375816345, 0.0010114011820405722, -0.013504836708307266, -0.017012586817145348, 0.013247601687908173, -0.030681118369102478, -0.01179773174226284, -0.0176907517015934, 0.0034843648318201303, 0.039006177335977554, -0.03832801431417465, -0.000972669804468751, 0.0015477945562452078, -0.01009647361934185, -0.0005966828321106732, -0.00954107940196991, -0.05163407698273659, -0.0022537291515618563, -0.000662087753880769, -0.04377671703696251, 0.050043895840644836, 0.03556858375668526, -0.005135930143296719, 0.008336751721799374, 0.028225693851709366, -0.01417130883783102, 0.009891854599118233, 0.006711494643241167, 0.024086548015475273, -0.027056442573666573, 0.003630521008744836, 0.02460101805627346, -0.010517403483390808, 0.016720274463295937, 0.01812337338924408, 0.007582585792988539, -0.003057588590309024, 0.03849170729517937, 0.004770539700984955, 0.023911161348223686, -0.0014520622789859772, 0.01606549322605133, -0.05846249684691429, 0.021712971851229668, 0.015586101450026035, -0.004624383524060249, -0.026121042668819427, -0.046629685908555984, -0.03011987917125225, 0.0652909129858017, 0.004989773966372013, 0.04632568359375, -0.010026318021118641, 0.004428534302860498, 0.009055840782821178, 0.048173096030950546, -0.0026366584934294224, -0.0002181381860282272, 0.004662384279072285, -0.010552480816841125, -0.003420056076720357, 0.002581119304522872, -0.009026609361171722, -0.02656535804271698, -0.010324477218091488, 0.02349023148417473, -0.034983959048986435, 0.03912310302257538, 0.0019263392314314842, 0.0003098512243013829, -0.01339960377663374, 0.01426484901458025, 0.011786038987338543, -0.022858835756778717, -0.007898283191025257, 0.019058773294091225, 0.03907633200287819, -0.011657421477138996, 0.041017286479473114, 0.04181237891316414, 0.0006891266675665975, -0.014451929368078709, 0.021806512027978897, 0.008021054789423943, 0.0015244096284732223, 0.010938333347439766, 0.021701278164982796, -0.029511868953704834, 0.007220118306577206, 0.05677877739071846, -0.02344346046447754, 0.010640174150466919, 0.009985394775867462, 0.02095295861363411, 0.048266638070344925, 0.029769103974103928, 0.010084780864417553, -0.002746275858953595, -0.001361445407383144, 0.006799188442528248, -0.007734588347375393, -0.025349337607622147, 0.009459231980144978, 0.022706834599375725, -0.0006609915872104466, -0.023314842954277992, 0.025770269334316254, 0.0014995629899203777, -0.022309288382530212, 0.005755632650107145, 0.01932770200073719, -0.03893602266907692, -0.01587841473519802, 0.002977202646434307, -0.01560948695987463, -0.006962883286178112, 0.0445016510784626, -0.038000624626874924, -0.0009836314711719751, -0.01522363442927599, -0.01774921454489231, 0.029909413307905197, -0.0034726723097264767, 0.011803577654063702, 0.014545469544827938, -0.010651866905391216, -0.021502505987882614, 0.030681118369102478, -0.01572641171514988, 0.017877832055091858, -0.01059925090521574, 0.010914947837591171, -0.004098221193999052, 0.013306064531207085, -0.005285009741783142, 0.012125121429562569, 0.03807077929377556, -0.011300800368189812, 0.024109933525323868, -0.013984229415655136, -0.018532611429691315, 0.02368900366127491, -0.001000439515337348, -0.052101776003837585, 0.00965800415724516, -0.031008508056402206, 0.00353698106482625, 0.02234436571598053, 0.011745115742087364, 0.020602183416485786, 0.0064659519121050835, 0.028857087716460228, -0.00717919459566474, 0.016077186912298203, 0.03187375143170357, -0.03337039425969124, -0.03477349132299423, -0.02729029394686222, -0.0319439098238945, -0.02138558216392994, -0.024133319035172462, -0.02446070872247219, -0.007465661037713289, -0.012417434714734554, -0.013037136755883694, -0.007313658483326435, -0.010049703530967236, 0.0028588161803781986, 0.005518859717994928, -0.043238863348960876, 0.0016237958334386349, -0.0337679386138916, 0.012265431694686413, 0.012090044096112251, -0.005255778320133686, 0.026027504354715347, 0.018111681565642357, 0.003572058631107211, -0.009108456782996655, -0.005866711493581533, 0.0015741026727482677, -0.0014294080901890993, -0.0017363361548632383, -0.001672027399763465, 0.006957036908715963, 0.002163112396374345, 0.055609527975320816, -0.009301383048295975, -0.03486703336238861, 0.017433516681194305, 0.004846540745347738, 0.005422396585345268, 0.02455424889922142, -0.020871112123131752, 0.04412749409675598, -0.03998834639787674, 0.01287344191223383, 0.0008213981054723263, 0.010710329748690128, 0.057854488492012024, 0.00600409833714366, -0.0029859719797968864, -0.02350192330777645, 0.07833974808454514, -0.0006927805952727795, 0.01880153827369213, -0.013095599599182606, 0.020578797906637192, -0.014451929368078709, 0.017947986721992493, -0.0009032455855049193, 0.0014791011344641447, 0.0035194423981010914, 0.006109330803155899, 0.003475595498457551, 0.04684015363454819, -0.009891854599118233, 0.026635512709617615, 0.028225693851709366, 0.00824905838817358, 0.03217775747179985, 0.014124538749456406, 0.004004681017249823, -0.01960832066833973, -0.02689274773001671, -0.01316575426608324, 0.0008053209166973829, 0.02392285317182541, -0.025162259116768837, -0.009669696912169456, 0.04043266177177429, 0.02177143283188343, -0.02729029394686222, -0.003042972879484296, -0.006781649775803089, -0.024671172723174095, -0.02478809840977192, 0.007752127014100552, 0.01465070154517889, 0.01522363442927599, -0.014007613994181156, 0.014112846925854683, -0.010394631884992123, 0.02747737430036068, -0.0015872567892074585, 0.03021341748535633, 0.006910267286002636, 0.00911430362612009, -0.0035194423981010914, 0.0239696241915226, 0.08423276245594025, 0.014907936565577984, 0.016708580777049065, -0.007091500796377659, 0.04036250710487366, 0.013949152082204819, 0.01606549322605133, -0.008740142919123173, -0.017854446545243263, 0.027009673416614532, -0.028833704069256783, 0.006986268330365419, 0.006682263221591711, 0.0019906479865312576, -0.01956155151128769, -0.005773171316832304, -0.023268073797225952, -0.0201929472386837, 0.008687526918947697, -0.021806512027978897, 0.0008878991939127445, -0.0032797460444271564, 0.032201144844293594, -0.014568854123353958, -0.0006712225149385631, -0.0008447830914519727, -0.01812337338924408, 0.017106126993894577, 0.012475896626710892, 0.02152589149773121, 0.016954123973846436, 0.02301083877682686, -0.013598376885056496, -0.005726401694118977, -0.008295828476548195, -0.0165448859333992, -0.0070973471738398075, -0.0005912019987590611, 0.04957619681954384, 0.016170727089047432, -0.0008696296135894954, -0.012417434714734554, -0.007851513102650642, 0.04674661159515381, -0.004770539700984955, 0.009213689714670181, -0.03542827442288399, -0.059584975242614746, 0.020321564748883247, -0.04012865945696831, 0.0515873059630394, -0.0006723187398165464, 0.008903838694095612, -0.015352251939475536, -0.025980733335018158, 0.017386745661497116, 0.007985977455973625, -0.0056416308507323265, -0.02771122381091118, -0.005007312633097172, 0.02628473937511444, 0.007588432170450687, -0.010593404062092304, 0.029231248423457146, 0.006647185888141394, -0.006617954466491938, 0.0056854779832065105, 0.003040049923583865, 0.0034317485988140106, 0.00708565441891551, -0.050418056547641754, -0.01417130883783102, -0.004010527394711971, -0.009020763449370861, 0.057573866099119186, 0.009178612381219864, -0.01426484901458025, -0.00412452919408679, 0.02651858888566494, -0.0049985432997345924, -0.002287345239892602, -0.03432917967438698, 0.03587258607149124, 0.05556275695562363, -0.0014162539737299085, -0.012510973960161209, 0.0004183722485322505, 0.057480327785015106, 0.006319795735180378, 0.010768791660666466, -0.003051742212846875, -0.01779598370194435, -0.010844793170690536, -0.012054966762661934, 0.05682554841041565, 0.02675243839621544, -0.026121042668819427, -0.007050577085465193, 0.01151126530021429, -0.004104067105799913, 0.020508643239736557, -0.024250242859125137, -0.01912892982363701, 0.011587266810238361, -0.0006715879426337779, 0.03280915319919586, 0.016673503443598747, -0.004063143394887447, -0.01583164371550083, 0.002934817224740982, -0.008892145939171314, -0.04057297110557556, -0.027220139279961586, -0.029698947444558144, -0.04319209232926369, -0.026167813688516617, 0.0222508255392313, -0.003384978510439396, 0.03400178626179695, -0.018287068232893944, 0.030377112329006195, 0.012791594490408897, 0.02401639334857464, -0.016942432150244713, -0.018532611429691315, 0.005235316697508097, -0.01318913884460926, 0.030330343171954155, 0.0225899089127779, 0.005460397340357304, 0.0034697491209954023, 0.021034806966781616, 0.00846536923199892, 0.02857646904885769, -0.003092666156589985, 0.040549587458372116, -0.007436429616063833, -0.007021345663815737, 0.018684614449739456, -0.014896243810653687, -0.037907082587480545, 0.010920794680714607, 0.002376500517129898, -0.013037136755883694, -0.05696585774421692, 0.03121897391974926, -0.023572077974677086, -0.0044548423029482365, 0.010575865395367146, 0.02560657262802124, 0.005884250160306692, 0.019538166001439095, -0.021853281185030937, -0.014884551987051964, 0.029324788600206375, -0.00550132105126977, 0.0419994592666626, -0.005536398384720087, 0.0114118792116642, -0.027921687811613083, 0.003215437289327383, -0.035217806696891785, -0.046208757907152176, -0.03706522285938263, 0.030657732859253883, -0.009377384558320045, -0.019491396844387054, 0.013656838797032833, -0.007582585792988539, -0.0547676682472229, -0.03369778394699097, -0.011727577075362206, -0.05537567660212517, 0.03797723725438118, 0.007249349728226662, 0.0088453758507967, 0.030330343171954155, 0.0017363361548632383, 0.00971062108874321, -0.022239133715629578, 0.002832507947459817, 0.032014064490795135, -0.005913481581956148, -0.026588743552565575, 0.01376207172870636, -0.010575865395367146, -0.006962883286178112, -0.019164007157087326, 0.029886027798056602, 0.020461874082684517, 0.03554519638419151, -0.03629351779818535, -0.00549255171790719, 0.02110496163368225, -0.03203744813799858, -0.06028652563691139, 0.011996503919363022, 0.030377112329006195, 0.017679059877991676, 0.001930723898112774, -0.006740726064890623, 0.01435838919132948, -0.0008645141497254372, -0.020157868042588234, -0.016556579619646072, -0.00853552483022213, -0.023478537797927856, -0.0036802140530198812, 0.0044694580137729645, 0.03475010767579079, 0.012218661606311798, 0.0019482626812532544, 0.004095297772437334, -0.008646603673696518, 0.037088606506586075, -0.04230346158146858, 0.02565334364771843, 0.025536417961120605, 0.019795401021838188, -0.015258711762726307, -0.02047356590628624, 0.009248767048120499, -0.02972233295440674, -0.036948297172784805, -0.02679920755326748, 0.034165482968091965, 0.015808258205652237, 0.019877249374985695, 0.0024963486939668655, -0.017562134191393852, -0.0015039477730169892, -0.00580240273848176, -0.002486117649823427, 0.00951769482344389, -0.04211638122797012, -0.0022712680511176586, -0.0011794809252023697, 0.015095016919076443, -0.026822593063116074, -0.009178612381219864, -0.016989201307296753, -0.0012861748691648245, -0.027641069144010544, -0.030564192682504654, 0.00599240604788065, -0.009921086020767689, -0.014288234524428844, -0.009628772735595703, -0.02253144606947899, -0.04503950849175453, 0.02013448439538479, -0.024109933525323868, 0.0012342894915491343, -0.01903538964688778, 0.012218661606311798, 0.010534942150115967, 0.0312657430768013, -0.0039374493062496185, -0.022893913090229034, 0.01373868715018034, 0.037813544273376465, -0.025676729157567024, 0.03154636174440384, -0.0029582022689282894, 0.0033557473216205835, 0.03669106215238571, 0.013902381993830204, -0.012557744048535824, -7.321514567593113e-05, 0.007494891993701458, -0.0017567980103194714, 0.001986263319849968, -0.01822860725224018, -0.012136814184486866, -0.01942124217748642, -0.005583168473094702, 0.00727858068421483, 0.013914073817431927, -0.005486705340445042, 0.03783692792057991, 0.018532611429691315, 0.00012103563494747505, -0.013539914041757584, -0.020941266790032387, -0.021981898695230484, 0.029792487621307373, 0.007208426017314196, 0.053972575813531876, 0.005711785983294249, -0.02637827768921852, 0.03563873842358589, 0.002670274581760168, 0.0008623218163847923, 0.010786330327391624, 0.005591937806457281, 0.010400477796792984, -0.03849170729517937, -0.03358085826039314, 0.008231519721448421, -0.0044665345922112465, 0.028974013403058052, -0.02109326794743538, 0.018637843430042267, -0.014755934476852417, -0.029465097934007645, -0.010488172061741352, 0.02013448439538479, 0.008091209456324577, 0.00659456942230463, 0.023314842954277992, 0.017725829035043716, 0.011674960143864155, -0.01836891658604145, 0.01227712444961071, 0.010084780864417553, -0.00394329521805048, -0.024437323212623596, 0.007231811061501503, 0.020508643239736557, 0.026354894042015076, 0.04920203611254692, 0.013235908932983875, -0.029932798817753792, -0.01721135899424553, 0.04209299758076668, -0.02023971639573574, 0.03171005845069885, -0.020461874082684517, -0.02056710608303547, 0.020578797906637192, 0.04319209232926369, -0.0067465719766914845, 0.00021101307356730103, -0.034890417009592056, -0.014849473722279072, 0.005673785228282213, -0.05107283592224121, -0.005837480071932077, -0.011183875612914562, -0.008196442387998104, 0.0017348745604977012, -0.004156683571636677, -0.012931903824210167, 0.04249054193496704, -0.018871694803237915, 0.03954403102397919, -0.015703026205301285, 0.04076005145907402, 0.013703608885407448, -0.0007220118422992527, 0.0012993289856240153, 0.053832266479730606, 0.025863807648420334, 0.0056153228506445885, 0.027056442573666573, 0.015024861320853233, 0.007950899191200733, -0.023513616994023323, 0.00619702460244298, -0.014592238701879978, -0.018532611429691315, 0.02446070872247219, -0.011663268320262432, 0.012312201783061028, 0.02815553918480873, -0.004671153612434864, -0.041368063539266586, -0.0004172760818619281, 0.013341141864657402, 0.028085382655262947, 0.012066659517586231, -0.017866138368844986, -0.0035077498760074377, -0.057480327785015106, 0.015527639538049698, 0.009406615979969501, -0.0005952212959527969, 0.02384100668132305, -0.011376801878213882, 0.0044402265921235085, 0.015527639538049698, -0.0031248205341398716, 0.026541974395513535, 0.011786038987338543, 0.004451919347047806, 0.006647185888141394, -0.023162841796875, 0.011306647211313248, -0.03323008492588997]], "input": ["$90:The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.", "23 KG:The entity \"23 KG\" refers to the maximum weight limit for checked baggage in premium class and for certain service types offered by EL AL. Specifically, 23 kg is the maximum weight allowed for each piece of checked baggage included in the ticket price for these services.", "THREE HOURS:Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.", "EUROPE AND MIDDLE EAST:Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.", "OVERSIZED AND OVERWEIGHT BAGGAGE:Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees.", "BAGGAGE POLICY:The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.", "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION:The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.", "PRE-ORDERING:Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.", "BAGGAGE CHECK-IN PROCESS:The baggage check-in process involves the procedures passengers must follow to check their luggage before boarding a flight.", "STANDARD BAGGAGE:Standard baggage refers to luggage that complies with the airline's specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.", "BAGGAGE CHECK-IN:Baggage check-in is the process by which passengers hand over their luggage to the airline for transport in the cargo hold.", "CARRY-ON ALLOWANCE:Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.", "ADDITIONAL HANDLING FEE:An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.", "EXCESS BAGGAGE:Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.", "CODE-SHARE FLIGHTS:Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.", "MANAGE MY BOOKING:Manage my booking is a service that allows passengers to modify their reservations, including adding baggage."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-24553fbb1740732345597b590080047b b/cache/text_embedding/embedding-24553fbb1740732345597b590080047b deleted file mode 100644 index bec62d1c94af6e7375c149aa5ad2bbc989743b84..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-24553fbb1740732345597b590080047b +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.005696725100278854, 0.04038061946630478, 0.015300469473004341, 0.016987038776278496, 0.01600421778857708, 0.07435470074415207, -0.06678333133459091, -0.04321988299489021, 0.02511655166745186, 0.031814299523830414, 0.0017593719530850649, -0.02322370931506157, 0.034847699105739594, 0.02776167541742325, -0.005551121663302183, -0.006940418854355812, 0.05751326307654381, -0.004225526005029678, -0.03356153517961502, 0.008639123290777206, -0.04008941352367401, 0.033051926642656326, -0.013698833994567394, 0.03999234363436699, -0.026208575814962387, -0.033707138150930405, 0.038390710949897766, -0.024157997220754623, 0.047806382179260254, -0.009270070120692253, 0.09415673464536667, -0.029460379853844643, -0.0076684351079165936, 0.0301398616284132, 0.0032305708155035973, -0.0022280323319137096, 0.004644135478883982, -0.02396385930478573, -0.021051796153187752, -0.012151800096035004, -0.02596590295433998, -0.010707901790738106, 0.026426980271935463, -0.05906636267900467, -0.04909254238009453, 0.04584074020385742, -0.04739383980631828, 0.025771765038371086, 0.00802030973136425, 0.002716409508138895, -0.025019481778144836, 0.04346255213022232, -0.004610768053680658, -0.03140175715088844, -0.008208380080759525, 0.0020960792899131775, -0.04351108893752098, 0.05139792710542679, -0.01594354957342148, -0.017642254009842873, 0.01938949152827263, 0.0013900555204600096, -0.012224601581692696, -0.0005232614930719137, -0.03880325332283974, -0.00013271124043967575, -0.006503609474748373, 0.027616072446107864, -0.016950638964772224, -0.02397599257528782, 0.042855873703956604, 0.02165847457945347, 0.00012702362437266856, -0.0020900126546621323, -0.05688231438398361, -0.03819657117128372, 0.011278181336820126, 0.012631077319383621, -0.014293380081653595, 0.0006787232123315334, -0.01125391386449337, 0.07828598469495773, -0.024145863950252533, 0.007729102857410908, 0.01045309565961361, 0.011508719064295292, -0.05950317159295082, -0.022944636642932892, -0.030770808458328247, -0.02819848619401455, -0.047490909695625305, 0.06697747111320496, -0.024970948696136475, 0.013019352219998837, -0.012606809847056866, 0.045937810093164444, 0.027179263532161713, 0.02282330021262169, -0.031134815886616707, -0.009676545858383179, -0.009773614816367626, -0.044020701199769974, -0.03708028048276901, -0.0014886410208418965, 0.049383752048015594, -0.020748455077409744, -0.06498756259679794, 0.004440897610038519, -0.023793989792466164, -0.0017426882404834032, 0.11357049643993378, -0.01720544509589672, -0.02057858556509018, 0.032178305089473724, -0.0229325033724308, 0.016987038776278496, -0.06270644068717957, 0.03426528722047806, -0.014790858142077923, -0.03766269236803055, -0.015919283032417297, 0.035697050392627716, 0.002370601985603571, -0.007389361970126629, -0.002667875261977315, 0.0243764016777277, 0.007559232413768768, -0.014220578595995903, -0.03123188577592373, -0.05076698213815689, 0.024704009294509888, -0.05712498724460602, 0.04584074020385742, -0.01045309565961361, 0.020457249134778976, 0.05057284235954285, 0.007898973301053047, -0.0328335203230381, -0.020032573491334915, 0.006970752961933613, 0.014827258884906769, 0.021197399124503136, 0.0783345177769661, 0.007286226376891136, -0.04853439703583717, -0.039822474122047424, -0.0017123542493209243, 0.0024252033326774836, -0.004304394591599703, -0.01261894404888153, -0.027737408876419067, 0.03914299234747887, 0.024522004649043083, -0.0005816544289700687, -0.007826171815395355, -0.041375573724508286, 0.06372566521167755, 0.019607897847890854, 0.013626032508909702, -0.022422892972826958, -0.004025321453809738, 0.015882881358265877, -0.001139800064265728, -0.018443072214722633, -0.017011307179927826, -0.012667478062212467, -0.025820299983024597, 0.007328694220632315, -0.030746541917324066, -0.011381316930055618, -0.06032825633883476, 0.01332269236445427, -0.018006261438131332, -0.011090110056102276, -0.03494476526975632, -0.011994062922894955, 0.028659561648964882, -0.010550164617598057, -0.059309035539627075, 0.030576670542359352, 0.06547290086746216, 0.09206975251436234, -0.03157162666320801, -0.010325693525373936, -0.02292037010192871, 0.0008319099433720112, -0.00800210889428854, -0.020323779433965683, -0.0587751567363739, -0.0011777174659073353, 0.011011241935193539, 0.005396418273448944, -0.009003130719065666, 0.020736321806907654, -0.007225558627396822, -0.01753305085003376, -0.020335912704467773, -0.0028362288139760494, 0.03533304110169411, 0.01676863431930542, 0.009027398191392422, -0.025068016722798347, 0.00320023694075644, 0.024534137919545174, -0.04263746738433838, 0.02065138705074787, 0.021148864179849625, 0.00785043928772211, -0.0011215995764359832, 0.0002157505659852177, 0.04537966102361679, 0.024606939405202866, -0.01988697052001953, 0.033731408417224884, 0.0049171410501003265, -0.025626162067055702, 0.04601060971617699, -0.004453030880540609, 0.047442372888326645, -0.04190945252776146, -0.10269878804683685, -0.052125945687294006, -0.0012861615978181362, 0.04067182540893555, -0.013383360579609871, 0.00817197933793068, -0.02749473601579666, -0.010689700953662395, 0.045549534261226654, -0.022726232185959816, -0.03666773810982704, -0.024279333651065826, -0.02975158579647541, -0.02177981100976467, -0.034483689814805984, -0.0021218631882220507, 0.011168978177011013, -0.020275244489312172, 0.0077412365935742855, 0.032639384269714355, 0.0129708182066679, 0.0004770021478179842, -0.011957662180066109, -0.017435982823371887, 0.02751900441944599, 0.00219921488314867, -0.019207488745450974, 0.026912324130535126, -0.011441984213888645, 0.0023979025427252054, 0.013067887164652348, 0.023927457630634308, 0.03557571396231651, -0.02751900441944599, -0.03858484700322151, -0.01221853494644165, 0.04705410078167915, -0.05295103043317795, 0.013080020435154438, -0.016259023919701576, 0.0009373205830343068, 0.04224919527769089, 0.006606745067983866, -0.01068363431841135, -0.03312472626566887, -0.007201291620731354, 0.02739766798913479, -0.031450290232896805, -0.01834600232541561, -0.0011132577201351523, -0.0426132008433342, 0.021852612495422363, 0.04375376179814339, -0.07013220340013504, -0.03967687115073204, -0.005211381241679192, 0.03742001950740814, -0.002179497852921486, -0.008038509637117386, 0.034532222896814346, 0.011205378919839859, -0.04013794660568237, 0.04729676991701126, -0.020469382405281067, -0.040162213146686554, 0.01217000000178814, -0.02477681078016758, -0.019947638735175133, 0.034532222896814346, 0.0129708182066679, 0.037589892745018005, -0.031207619234919548, -0.019195355474948883, -0.009476341307163239, 0.022010350599884987, -0.026475515216588974, -0.04241906479001045, 0.005387318320572376, -0.018443072214722633, -0.045258328318595886, -0.006764481775462627, 0.03513890504837036, -0.0027148928493261337, -0.013541096821427345, 0.021609941497445107, 0.03924006223678589, 0.01862507499754429, 0.06537583470344543, -0.03426528722047806, -0.019571496173739433, 0.055911626666784286, -0.011702856980264187, 0.01028929278254509, -0.05071844533085823, -0.006130501162260771, 0.013674566522240639, -0.03278498724102974, 0.002827128628268838, 0.0064429412595927715, 0.026548316702246666, 0.0770726278424263, 0.019959772005677223, 0.05795007199048996, -0.07270453125238419, -0.0057968273758888245, -0.028319820761680603, 0.035624247044324875, 0.05008750036358833, 0.003006099257618189, -0.028344089165329933, -0.04266173765063286, -0.003755349200218916, 0.008153779432177544, 0.009767548181116581, 0.008123445324599743, -0.017787856981158257, 0.010531964711844921, 0.013444028794765472, -0.031086282804608345, -0.04156971350312233, 0.009488474577665329, -0.037225883454084396, 0.029605982825160027, 0.043244149535894394, -0.025359222665429115, -0.006976819597184658, 0.013832303695380688, 0.026912324130535126, 0.0003715914790518582, 0.04928668215870857, -0.04457884654402733, -0.013710967265069485, -0.07760650664567947, 0.0027148928493261337, -0.028829433023929596, -0.01645316183567047, 0.018042663112282753, -0.005223514512181282, -0.022701965644955635, 0.016161954030394554, 0.012837348505854607, -0.011793859302997589, -0.01508206408470869, -0.0032032702583819628, 0.03812377154827118, 0.0023357179015874863, -0.04317134618759155, -0.0374685563147068, 0.02099112793803215, -0.014997129328548908, 0.024473469704389572, -0.002111246343702078, 0.026378445327281952, -0.03669200465083122, 0.018528006970882416, 0.048194658011198044, -0.013359093107283115, -0.052805427461862564, 0.0289507694542408, -0.029557447880506516, -0.007886840030550957, 0.0114662516862154, 0.007595633156597614, 0.004686602856963873, 0.022726232185959816, -0.016125554218888283, -0.049408018589019775, -0.031159084290266037, 0.0028438123408704996, 0.027640340849757195, 0.032663650810718536, 0.03016412816941738, -0.024497738108038902, 0.0021036628168076277, -0.013007218949496746, 0.0033488734625279903, 0.03705601394176483, 0.044845785945653915, 0.025723231956362724, 0.011545119807124138, -0.02402452751994133, 0.016501694917678833, -0.02135513536632061, 0.058483950793743134, 0.04999043047428131, 0.028295554220676422, 0.015191266313195229, 0.011909128166735172, 0.0040222881361842155, -0.0319599024951458, 0.0389731228351593, 0.005272048991173506, 0.009561276063323021, 0.05115525797009468, 0.037565626204013824, -0.03737148642539978, 0.020857658237218857, -0.02514081820845604, -0.02548055909574032, -0.015118464827537537, 0.010586565360426903, -0.028513958677649498, -0.02632991038262844, -0.021998215466737747, -0.009834282100200653, 0.036473602056503296, -0.03744428977370262, -0.0002013419143622741, -0.01007088739424944, -0.02218022011220455, 0.015919283032417297, 0.007413629442453384, -0.028416890650987625, 0.022034617140889168, -0.021270200610160828, 0.012631077319383621, -0.04028354957699776, -0.048291727900505066, -0.01523980125784874, -0.01758158579468727, 0.028052883222699165, -0.001294503454118967, 0.02861102856695652, 0.010058754123747349, -0.019510827958583832, -0.031814299523830414, -0.029120638966560364, 0.0005774835008196533, -0.006891884375363588, -0.018467338755726814, -0.021986082196235657, 0.012285269796848297, -0.030819343402981758, -0.005002076271921396, 0.018916280940175056, -0.029533181339502335, 0.000523640657775104, -0.020760588347911835, 0.023539183661341667, 0.044093500822782516, 0.03812377154827118, 0.010337826795876026, 0.01413564383983612, 0.03967687115073204, -0.03856058046221733, -0.007698768749833107, 0.033682871609926224, -0.017739322036504745, 0.0023872856982052326, -0.05600869655609131, 0.022665563970804214, 0.006364073138684034, 0.022956769913434982, -0.02628137730062008, 0.03576985001564026, -0.027179263532161713, 0.05756179615855217, -0.012436939403414726, -0.0022083150688558817, -0.02972731925547123, -0.03171722963452339, 0.01788492500782013, -0.020008305087685585, -0.02899930253624916, 0.022022483870387077, 0.0609106719493866, 0.0036097459960728884, 0.02063925378024578, -0.07692702114582062, 0.005860528443008661, 0.00147574907168746, -0.0020475450437515974, 0.010974841192364693, -0.011830260045826435, -0.018382403999567032, -0.016914237290620804, -0.0005797585472464561, -0.003576378570869565, 0.02897503599524498, -0.026766721159219742, 0.0229325033724308, -0.020432982593774796, 0.02856249362230301, -0.018770677968859673, 0.030382532626390457, 0.01942589320242405, 0.03979820758104324, 0.01978990063071251, 0.002654224867001176, 0.01298295147716999, 0.04006514698266983, -0.02557762898504734, -0.0025162051897495985, -0.034459423273801804, -0.012643210589885712, -0.04652022197842598, -0.015579542145133018, 0.0076866354793310165, -0.011575453914701939, 0.01989910379052162, 0.06537583470344543, -0.02436426840722561, 0.025407757610082626, 0.005727059207856655, -0.03773549571633339, -0.006130501162260771, -0.010477363131940365, -0.06105627492070198, 0.0005096112145110965, 0.0016698866384103894, -0.0012558276066556573, 0.002165847457945347, -0.03708028048276901, 0.009100199677050114, -0.02596590295433998, -0.003530877409502864, -0.00802030973136425, 0.02367265336215496, 0.009864616207778454, -0.007407562807202339, 0.029120638966560364, 0.0005725542432628572, -0.017448116093873978, 0.010538031347095966, 0.036061059683561325, -0.022799033671617508, 0.020068973302841187, 0.010392428375780582, 0.0006954069249331951, 0.033707138150930405, -0.030042793601751328, -0.01163612212985754, -0.015822213143110275, -0.03819657117128372, 0.031110549345612526, 0.02514081820845604, 0.004807938821613789, -0.016574496403336525, 0.0035278440918773413, -0.02131873369216919, -0.022629164159297943, -0.013480429537594318, -0.006813016254454851, -0.004334728699177504, -0.0036158126313239336, 0.024534137919545174, 0.014742323197424412, -0.0016137687489390373, 0.018916280940175056, 0.005845361854881048, -0.010374227538704872, -0.04038061946630478, 0.04321988299489021, -0.008863594383001328, 0.027373401448130608, 0.010192223824560642, 0.01547033991664648, -0.03140175715088844, 0.011387383565306664, 0.01013155560940504, 0.003112268401309848, -0.0076684351079165936, 0.022022483870387077, 0.01030142605304718, -0.007571366149932146, 0.001666853204369545, 0.015191266313195229, -0.0006908568320795894, -0.010950573720037937, -0.04127850756049156, -0.014802991412580013, -0.0046532354317605495, 0.006922218482941389, -0.003809950314462185, 0.008329716511070728, 0.02705792710185051, 0.07605340331792831, 0.038633380085229874, -0.011757457628846169, 0.019668564200401306, 0.016987038776278496, -0.029533181339502335, -0.012473340146243572, -0.006206336431205273, -0.03268791735172272, -0.020420847460627556, 0.005581455770879984, 0.0004349137016106397, 0.018892014399170876, 0.037541355937719345, 0.028004348278045654, 0.03363433852791786, 0.009712946601212025, -0.039118725806474686, 0.004616834688931704, -0.002513171872124076, -0.02288396842777729, -0.021197399124503136, -0.006861550733447075, -0.04244333133101463, -0.0007397704175673425, -0.015761546790599823, -0.0201781764626503, -0.018236801028251648, -0.038293641060590744, 0.027276331558823586, -0.005535954609513283, -0.032226841896772385, 0.023842522874474525, 0.0271307285875082, -0.0012543108314275742, 0.010544097982347012, -0.028877967968583107, -0.016295423731207848, 0.007268026005476713, 0.02402452751994133, -0.019741367548704147, -0.022010350599884987, 0.033779941499233246, 0.011654322035610676, 0.02480107732117176, 0.02936331182718277, 0.01790919341146946, -0.03727441653609276, -0.000784133851993829, 0.004798838868737221, 0.020784856751561165, -0.022993171587586403, 0.009112332947552204, -0.011102243326604366, 0.035308774560689926, 0.045986343175172806, -0.05372757837176323, -0.007389361970126629, 0.006788748782128096, 0.01792132668197155, 0.0004250551573932171, 0.022325823083519936, -0.0518832728266716, 0.014802991412580013, -0.012151800096035004, -0.016659433022141457, 0.012133599258959293, -0.006206336431205273, -0.01941375993192196, -0.04353535547852516, 0.0464959554374218, 0.009961685165762901, -0.00013640819815918803, 0.0043256282806396484, 0.01834600232541561, -0.009197268635034561, -0.005305416416376829, 0.016222622245550156, 0.03050386905670166, 0.009215468540787697, -0.01868574321269989, 0.020081106573343277, -0.033051926642656326, -0.0035915453918278217, -0.007528898771852255, -0.032566580921411514, -0.0054115853272378445, 0.032251108437776566, -0.04494285210967064, -0.012509740889072418, -0.019195355474948883, -0.026087239384651184, -0.006333739031106234, 0.03513890504837036, -0.01180599257349968, 0.03695894405245781, -0.029290510341525078, -0.01123571302741766, -0.003979820758104324, 0.014232712797820568, -0.0007932340959087014, -0.006157801952213049, 0.010622966103255749, 0.0009547626250423491, -0.014633120968937874, 0.0035248107742518187, -0.008693723939359188, -0.026912324130535126, -0.02062711864709854, -0.011369182728230953, 0.022362224757671356, 0.012813081033527851, 0.029848655685782433, -0.03397407755255699, 0.01756945252418518, 0.04892267286777496, -0.030406801030039787, 0.03441089019179344, -0.016222622245550156, 0.003045533550903201, 0.011593654751777649, -0.012267068959772587, 0.008711924776434898, -0.03091641142964363, -0.0183581355959177, 0.009876750409603119, -0.03319752961397171, 0.021816212683916092, -0.019243888556957245, -0.013832303695380688, -0.0012793364003300667, -0.01391723845154047, 0.01178779173642397, 0.005044544115662575, 0.02208315208554268, -0.025068016722798347, 0.00025404724874533713, 0.03860911354422569, -0.034532222896814346, 0.024873878806829453, 0.007765503600239754, -0.0067098806612193584, 0.007771570701152086, -0.01184845995157957, 0.010422762483358383, -0.01747238263487816, 0.039895277470350266, -0.03516317158937454, -0.028659561648964882, 0.014341915026307106, -0.03625519573688507, -0.013820170424878597, -0.017278246581554413, -0.005044544115662575, -0.02671818621456623, 0.008742258884012699, -0.0034914433490484953, -0.03242097795009613, 0.03511463850736618, 0.006176002323627472, -0.006703814025968313, 0.007783703971654177, -0.01947442814707756, 0.011077976785600185, 0.024570539593696594, -0.0023675686679780483, -0.007189157884567976, -0.021561406552791595, 0.0382208377122879, -0.0029757653828710318, 0.008499586954712868, -0.0357213169336319, -0.026038704439997673, 0.01430551428347826, -0.04154544696211815, -0.010835304856300354, -0.04999043047428131, 0.016877837479114532, 0.002464637393131852, -0.021986082196235657, -0.014778723940253258, -0.04639888554811478, -0.0001780226593837142, -0.019547229632735252, 0.0024980048183351755, -0.014329780824482441, -0.03130468726158142, 0.052417151629924774, -0.007401495706290007, -0.021476471796631813, 0.018115464597940445, 0.001845823833718896, 0.00021271717560011894, -0.02057858556509018, -0.0037371485959738493, 0.008262981660664082, 0.06032825633883476, -0.003224504180252552, -0.026863789185881615, -0.011229646392166615, 0.019146820530295372, -0.0695497915148735, -0.014451117254793644, 0.02555336058139801, 0.032226841896772385, 0.01602848432958126, -0.0037189482245594263, 0.003934319596737623, 0.02285970188677311, 0.024619074538350105, -0.02255636267364025, 0.005275082308799028, -0.0033003392163664103, -0.0255048256367445, -6.645041867159307e-05, -7.995852502062917e-05, 0.042516134679317474, 0.02282330021262169, -0.010689700953662395, 0.03169296309351921, 0.002780111040920019, -0.007365094963461161, 0.00014086351438891143, 0.0031972036231309175, -0.007771570701152086, 0.029921457171440125, 0.0035369442775845528, -0.01045916322618723, 0.03763842582702637, 0.006800882518291473, 0.0159799512475729, 0.012716012075543404, 0.010889905504882336, -0.013990039937198162, 0.0026648417115211487, 0.006728081032633781, -0.023502781987190247, 0.00059795897686854, -0.03130468726158142, -0.0017320713959634304, -0.009482407942414284, 0.008529920130968094, 0.010004152543842793, 0.010331760160624981, 0.02014177478849888, 0.02133086882531643, -0.0557660236954689, -0.02705792710185051, -0.007389361970126629, -0.00878472626209259, -0.04001661017537117, -0.008869661018252373, 0.008420717902481556, 0.07634460926055908, 0.023417847231030464, -0.00247677112929523, 0.0021021461579948664, -0.002452503889799118, 0.018600808456540108, -0.05295103043317795, 0.005296316463500261, -0.00658247759565711, -0.009191201999783516, 0.0023296510335057974, -0.006069833412766457, 0.027713142335414886, -0.03467782959342003, -0.01355323102325201, 0.012345938012003899, -0.0441177673637867, 0.014536052010953426, 0.012910149991512299, -0.0359639897942543, -0.03171722963452339, 0.02557762898504734, 0.03545437753200531, -0.0016046685632318258, -0.029630251228809357, -0.02557762898504734, 0.020044706761837006, 0.03169296309351921, 0.011526919901371002, 0.012254935689270496, 0.025456292554736137, -0.013237757608294487, 0.041763849556446075, 0.06959832459688187, -0.011994062922894955, 0.03693467751145363, -0.051689133048057556, -0.028780898079276085, 0.043341219425201416, 0.010835304856300354, 0.01676863431930542, -0.006351939402520657, 0.0010578982764855027, 0.027713142335414886, 0.0035278440918773413, 0.001821556594222784, -0.008821127004921436, 0.01027109194546938, -0.010592632927000523, 0.006885817740112543, -0.017423849552869797, 0.00991921778768301, 0.03237244486808777, -0.03307619318366051, 0.0013142204843461514, 0.0024115529377013445, -0.03125615417957306, 0.02319944277405739, 0.0052022808231413364, 0.025820299983024597, -0.022689830511808395, 0.0012618943583220243, 0.004735137335956097, -0.008050642907619476, -0.027349133044481277, 0.026426980271935463, -0.028829433023929596, -0.027324866503477097, -0.01505779754370451, -0.036449331790208817, -0.020299512892961502, 0.0114359175786376, 0.008087044581770897, -0.011441984213888645, -0.006940418854355812, 0.018406670540571213, -0.002780111040920019, -0.003397407941520214, 0.003427741816267371, 0.005041510798037052, -0.008293315768241882, 0.002328134374693036, 0.03229964151978493, 0.023745454847812653, 0.012497607618570328, -0.0027710108552128077, -0.02094259299337864, 0.029654517769813538, 0.018807079643011093, -0.014196312054991722, 0.037517089396715164, 0.012000130489468575, -0.05644550547003746, -0.008432852104306221, -0.021864745765924454, 0.02861102856695652, 0.005244748666882515, -0.021549273282289505, -0.006685613188892603, 0.01907401904463768, 0.024716142565011978, 0.03979820758104324, -0.02747046947479248, 0.027737408876419067, -0.0004898940678685904, 0.003415608312934637, -0.021464338526129723, 0.020420847460627556, 0.006995019968599081, -0.013686700724065304, -0.030722273513674736, 0.0070738885551691055, -0.008639123290777206, 0.010859571397304535, -0.04074462875723839, 0.005454053170979023, 0.04496711865067482, -0.014111376367509365, -0.023041706532239914, -0.0005562496953643858, -0.002082429127767682, 0.018794946372509003, -0.03996807709336281, 0.034143950790166855, 0.004292260855436325, -0.026135774329304695, 0.021889014169573784, 0.0024418870452791452, -0.03732295334339142, -0.004935341887176037, -0.015130599029362202, -0.035260241478681564, 0.026475515216588974, 0.013795902952551842, 0.02674245275557041, -0.011193245649337769, 0.0359639897942543, 0.008129511959850788, -0.006033432204276323, -0.008062777109444141, 0.019353091716766357, -0.00438326271250844, -0.01525193452835083, -0.03052813746035099, 0.060085587203502655, -0.023429980501532555, 0.013371226377785206, 0.052368614822626114, 0.06061946228146553, 0.04693276435136795, 0.0186736099421978, 0.004228559322655201, 0.005405518691986799, -0.01750878430902958, 0.021634208038449287, 0.0016259023686870933, 0.011642188765108585, 0.02858676016330719, 0.006094100419431925, -0.0010427312226966023, -0.04753944277763367, 0.008305449038743973, -0.005736159160733223, -0.015009262599050999, -0.012898016721010208, -0.008893928490579128, -0.013346959836781025, 0.011508719064295292, -0.03159589320421219, -0.04275880381464958, -0.009803948923945427, 0.014184177853167057, -0.012995085678994656, 0.002692142501473427, -0.026548316702246666, -0.006033432204276323, 0.010343893431127071, -0.009810015559196472, 0.007401495706290007, -0.024534137919545174, 0.020129641517996788, 0.016926372423768044, -0.02483747899532318, -0.0015295918565243483, 0.00333370640873909, 0.032251108437776566, 0.035672783851623535, 0.02099112793803215, -0.011678589507937431, -0.017642254009842873, -0.005766493268311024, -0.038633380085229874, -0.008675524033606052, -0.013516830280423164, -0.0064611416310071945, 0.010550164617598057, 0.002402452751994133, 0.007947507314383984, 0.009943485260009766, -0.01261894404888153, 0.035624247044324875, -0.010034486651420593, 0.005581455770879984, -0.028513958677649498, 0.04753944277763367, 0.02967878431081772, 0.03006706014275551, -0.0017624053871259093, -0.006940418854355812, 0.006267004180699587, -0.010580498725175858, -0.001988393720239401, -0.031450290232896805, -0.011077976785600185, -0.019231755286455154, 0.01793345995247364, 0.02292037010192871, -0.01942589320242405, 0.0002599244471639395, 0.0032396710012108088, 0.009312537498772144, 0.010713968425989151, -0.01045916322618723, 0.0012656861217692494, 0.0006138843018561602, -0.006436874624341726, -0.028513958677649498, -0.07110289484262466, -0.03242097795009613, 0.023065973073244095, -0.034871965646743774, 0.00020399614004418254, 0.021816212683916092, -0.0036946809850633144, -0.01298295147716999, -0.012097198516130447, -0.015591675415635109, 0.002649674890562892, 0.00418609194457531, -0.000976754818111658, -0.008444985374808311, -0.012060797773301601, 0.014633120968937874, -0.027980079874396324, 0.00456830020993948, 0.019171087071299553, 0.02975158579647541, -0.001093540689907968, -0.029897188767790794, 0.031814299523830414, -0.012163933366537094, 0.0001551773602841422, 0.013286291621625423, -0.009658345021307468, -0.013856571167707443, 0.004128457512706518, 0.027373401448130608, 0.05333930253982544, -0.007929307408630848, -0.017775723710656166, -0.0054206857457757, 0.0029302642215043306, -0.002273533260449767, -0.03009132668375969, -0.0365949347615242, -0.007625967264175415, -0.03276072070002556, -0.030382532626390457, 0.0013923305086791515, -0.011520853266119957, 0.013674566522240639, -0.01183632668107748, -0.019219622015953064, -0.03154736012220383, 0.02251996099948883, 0.023878924548625946, -0.018807079643011093, -0.019001217558979988, 0.00243278662674129, -0.010434895753860474, -0.030649472028017044, 0.0014742324128746986, 0.012667478062212467, 0.008129511959850788, -0.0004974775947630405, 0.034168217331171036, -0.016659433022141457, 0.03094067983329296, -0.041011568158864975, -0.02856249362230301, 0.007195224519819021, 0.008912129327654839, 0.024691876024007797, -0.011581520549952984, -0.02936331182718277, -0.004064755979925394, -0.0030864845030009747, -0.046714358031749725, 0.07056901603937149, 0.008614855818450451, -0.02214381843805313, 0.0027057926636189222, -0.010149756446480751, 0.0067098806612193584, 0.02788301184773445, 0.03552718088030815, -0.004355962388217449, -0.026960859075188637, -0.00048799821524880826, 0.014002174139022827, 0.02751900441944599, 0.010768570005893707, -0.029508914798498154, -0.0009547626250423491, 0.03501756861805916, 0.016174089163541794, -0.003063733922317624, -0.005939397029578686, 0.005317550152540207, -0.022228755056858063, 0.00932467170059681, -0.03009132668375969, 0.014463250525295734, -0.01940162666141987, 0.02135513536632061, 0.03802670165896416, 0.0013521380024030805, -0.03865765035152435, -0.0034671761095523834, 0.0015546174254268408, 0.0028058949392288923, -0.015870748087763786, -0.006418674252927303, 0.011569387279450893, -0.024267198517918587, -0.018151864409446716, -0.027931546792387962, 0.007049621548503637, -0.01681716926395893, 0.0071466900408267975, -0.036449331790208817, 0.009118400514125824, -0.002549572614952922, 0.011757457628846169, -0.03154736012220383, -0.04268600419163704, 0.009081999771296978, 0.0286352951079607, -0.013007218949496746, -0.017763590440154076, 0.0053205834701657295, -0.0046714358031749725, -0.016295423731207848, 0.009057732298970222, 0.00817197933793068, -0.025262154638767242, 0.016962772235274315, -0.007401495706290007, -0.023866791278123856, 0.019292423501610756, -0.007195224519819021, -0.02747046947479248, -0.011878794059157372, 0.01983843557536602, 0.008469252847135067, 0.0017017374048009515, 0.010847438126802444, -0.04018648341298103, 0.0077776373364031315, -0.017763590440154076, -0.0025086216628551483, 0.0419822558760643, 0.01678076758980751, 0.00733476085588336, -0.029460379853844643, -0.004862539935857058, -0.0035794118884950876, 0.034483689814805984, 0.007468230556696653, -0.05761033296585083, -0.00823264755308628, -0.014074975624680519, 0.0022583662066608667, 0.0008789276471361518, 0.0029059972148388624, 0.015858614817261696, -0.0022386491764336824, -0.019292423501610756, 0.03280925378203392, -0.026815256103873253, -0.012261002324521542, -0.029072104021906853, 0.016161954030394554, 0.004404496867209673, -0.01218820083886385, 0.029533181339502335, 0.02817421779036522, 0.003415608312934637, 0.020760588347911835, -0.028659561648964882, -0.06474488973617554, -0.0035278440918773413, -0.04455457627773285, 0.008990997448563576, -0.00035699325962923467, -0.018042663112282753, -0.027203530073165894, 0.02822275273501873, 0.003248771419748664, -0.01793345995247364, 0.00026238910504616797, -0.00855418760329485, -0.0008940946427173913, -0.022714098915457726, 0.0359639897942543, -0.02129446715116501, 0.008147711865603924, 0.039822474122047424, -0.009385338984429836, 0.007098156027495861, 0.012321670539677143, -0.035624247044324875, -0.005396418273448944, -0.001250519067980349, -0.011357049457728863, -0.0365949347615242, 0.006172969006001949, -0.013795902952551842, -0.01374736800789833, -0.01332269236445427, 0.03632799908518791, 0.021282333880662918, -0.006133534479886293, 0.005305416416376829, 0.010914172977209091, 0.03688614442944527, 0.0064611416310071945, -0.006188135594129562, -0.016210488975048065, 0.0022037650924175978, -0.010544097982347012, -0.02062711864709854, 0.02101539447903633, -0.012157866731286049, -0.0004224009462632239, 0.0156644769012928, -0.027713142335414886, 0.019535096362233162, 0.0035976122599095106, 0.0382208377122879, -0.016477428376674652, 0.032251108437776566, 0.008463186211884022, 0.026232842355966568, 0.00686761736869812, 0.023090239614248276, 0.03700747713446617, -0.005766493268311024, -0.010368160903453827, -0.0018852580105885863, 0.02483747899532318, -0.027373401448130608, 5.972005965304561e-05, 0.05178620293736458, 0.018066929653286934, -0.0007985425181686878, 0.004267993848770857, -0.011108310893177986, -0.05455266311764717, -0.007504631299525499, -0.01045916322618723, -0.01641676016151905, 0.003163836197927594, -0.040963031351566315, 0.046374619007110596, 0.026038704439997673, -0.022422892972826958, 0.007856505922973156, -0.010531964711844921, 0.0014545152662321925, 0.028732363134622574, 0.010495563969016075, -0.03215403854846954, -0.02817421779036522, 0.01255827583372593, 0.008675524033606052, 0.02635417878627777, -0.02102752774953842, -0.02591736800968647, -0.045161258429288864, 0.012485474348068237, 0.016307558864355087, 0.011029441840946674, 0.006394407246261835, 0.011338848620653152, 0.018503738567233086, 0.03348873555660248, 0.003822083817794919, -0.01830960251390934, -0.0022644330747425556, 0.047466643154621124, 0.010386361740529537, 0.0035976122599095106, -0.011460185050964355, 0.015870748087763786, -3.004961763508618e-05, 0.0005695208092220128, 0.03419248387217522, 0.008117377758026123, 0.02478894405066967, 0.015033530071377754, -0.02129446715116501, -0.04416630417108536, 0.020153909921646118, 0.007880773395299911, -0.00715275714173913, -0.000892577925696969, 0.040574755519628525, -0.016234755516052246, 0.013638165779411793, 0.032226841896772385, 0.008408584631979465, -0.006861550733447075, 0.021804079413414, -0.021245932206511497, -0.013516830280423164, 0.03200843557715416, 0.01391723845154047, 0.012910149991512299, 0.0064247408881783485, -0.003376174019649625, -0.018819212913513184, 0.019765634089708328, -0.004786705132573843, -0.01798199489712715, -0.012716012075543404, -0.010944507084786892, 0.005232614930719137, 0.020056840032339096, 0.001222460181452334, -0.02509228326380253, -0.03365860506892204, -0.006940418854355812, -0.006382273510098457, -0.014596720226109028, -0.03356153517961502, -0.008633055724203587, -0.01830960251390934, -0.0029257142450660467, -0.014948594383895397, 0.015021396800875664, 0.00838431715965271, 0.02516508474946022, -0.03288205340504646, -0.02819848619401455, -0.0027573604602366686, 0.0028438123408704996, -0.015154865570366383, -0.016974905505776405, -0.019620031118392944, 0.018163999542593956, 0.029290510341525078, 0.009882817044854164, 0.035599980503320694, -0.003882751800119877, 0.024206532165408134, -0.03089214488863945, -0.05532921478152275, -0.01471805665642023, 0.026378445327281952, -0.03775976225733757, -0.024691876024007797, -0.001741171581670642, -0.007607766892760992, 0.027324866503477097, 0.019353091716766357, 0.014329780824482441, 0.020687786862254143, 0.009658345021307468, -0.009846416302025318, -0.005026343744248152, -0.006764481775462627, 0.028489692136645317, -0.02560189552605152, 0.03742001950740814, 0.0005661082686856389, 0.02255636267364025, -0.011526919901371002, -0.04613194614648819, -0.011781725101172924, -0.012291336432099342, 0.002557156141847372, 0.021961815655231476, 0.026475515216588974, 0.012813081033527851, 0.021597808226943016, 0.03894885629415512, -0.0255048256367445, 0.03865765035152435, 0.0024980048183351755, 0.025796033442020416, 0.02401239424943924, 0.0066916802898049355, -0.010180090554058552, 0.029581716284155846, 0.054309990257024765, -0.004665369167923927, -0.024157997220754623, -0.0016623031115159392, 0.016695832833647728, -0.00561785651370883, -0.00970687996596098, 0.00970687996596098, -0.0053023830987513065, -0.013856571167707443, -0.006267004180699587, 0.025723231956362724, 0.014451117254793644, 0.009664412587881088, 0.008978864178061485, 0.007079955190420151, -0.02177981100976467, 0.11764737963676453, 0.01639249362051487, 0.020796990022063255, 0.031426023691892624, 0.0014537569368258119, 0.026548316702246666, 0.001971710007637739, -0.0064793420024216175, 0.009573410265147686, 0.017351048067212105, -0.03052813746035099, -0.025456292554736137, -0.021913280710577965, -0.027252065017819405, -0.029096372425556183, 0.0010465229861438274, -0.011490519158542156, -0.0023069006856530905, 0.008845394477248192, -0.003882751800119877, 0.03135322034358978, 0.00237666885368526, 0.04729676991701126, 0.03535730764269829, -0.02628137730062008, -0.005032410379499197, 0.010695768520236015, 0.0010563815012574196, 0.006139601580798626, 0.011162911541759968, 0.0449913889169693, -0.004028355237096548, 0.03392554447054863, -0.02442493662238121, 0.0018822246929630637, -0.021901147440075874, 0.023939592763781548, 0.02599017135798931, -0.016101285815238953, 0.03518743813037872, -0.007856505922973156, -0.01413564383983612, 0.023114508017897606, 0.0078322384506464, 0.0013202873524278402, 0.026014437898993492, -0.00657034432515502, -0.016635164618492126, 0.02472827583551407, -0.016222622245550156, 0.04809758812189102, -0.022774767130613327, -0.034483689814805984, -0.00386758497916162, -0.032178305089473724, -0.00047055617324076593, 0.0005725542432628572, -0.034920498728752136, 0.02476467750966549, -0.041011568158864975, -0.0038129836320877075, -0.008262981660664082, -0.013492562808096409, -0.005754359532147646, -0.013444028794765472], [0.0041337511502206326, 0.042410559952259064, 0.024396635591983795, 0.02061593532562256, 0.013666119426488876, 0.05728872865438461, -0.06960936635732651, -0.031224137172102928, -0.0023726674262434244, 0.03004544787108898, -0.020994005724787712, -0.06436086446046829, 0.03273641690611839, 0.010029975324869156, 0.0033220122568309307, 0.002503324067220092, 0.030312320217490196, 0.008956924080848694, -0.0359833724796772, 0.003102398244664073, -0.009763102047145367, -0.018870141357183456, -0.044590022414922714, 0.016245892271399498, -0.02880004048347473, -0.02768806926906109, 0.04710307717323303, -0.020938407629728317, 0.036561597138643265, -0.01477809064090252, 0.09651905298233032, -0.03358151391148567, -0.02622026763856411, 0.01800280436873436, 0.021260879933834076, 0.004086492117494345, 0.032002516090869904, -0.03409302234649658, -0.020126668736338615, -0.020349062979221344, -0.04932701960206032, -0.032914333045482635, 0.03883001580834389, -0.04567975550889969, -0.020415781065821648, 0.04714755713939667, -0.04045349359512329, 0.02361825667321682, 0.015100562013685703, -0.01871446706354618, 0.019192613661289215, 0.005137304309755564, 0.008706730790436268, -0.0171799473464489, 0.029289307072758675, -0.0049149105325341225, -0.005259621422737837, 0.022928835824131966, 0.013599401339888573, -0.008990283124148846, 0.004948269575834274, 0.004211588762700558, -0.012598627246916294, 0.008623332716524601, -0.051862310618162155, -0.008612212724983692, -0.010647119022905827, 0.0058267260901629925, -0.011303181760013103, 0.020860569551587105, 0.02236172929406166, -0.006071359850466251, -0.017024271190166473, 0.004639697726815939, -0.06120286509394646, -0.04305550456047058, 0.003855758346617222, -0.026242507621645927, -0.004659157246351242, 0.0164349265396595, -0.021494392305612564, 0.05982402339577675, -0.01514504011720419, 0.024619029834866524, 0.04701412096619606, 0.026375943794846535, -0.05408625304698944, -0.019181493669748306, -0.03767356649041176, -0.04534616321325302, -0.0682305172085762, 0.015867821872234344, 0.0060546803288161755, 0.05506478622555733, 0.02642042376101017, 0.03318120539188385, 0.03487139940261841, 0.021572230383753777, -0.022339491173624992, 0.004345025401562452, -0.017513537779450417, -0.041832335293293, -0.017758172005414963, 0.03017888404428959, 0.03280313313007355, 0.008601092733442783, -0.029267067089676857, 0.014566815458238125, -0.005234601907432079, 0.0014302722411230206, 0.07903887331485748, -0.00941839162260294, -0.03338135778903961, 0.028844518586993217, -0.023596016690135002, -0.011886966414749622, -0.05052794888615608, 0.03464900702238083, 0.009006962180137634, -0.058845486491918564, -0.022528525441884995, 0.009952137246727943, 0.00977978203445673, -0.04067588597536087, -0.03940824046730995, 0.013499324209988117, 0.011775769293308258, 0.018058404326438904, -0.036761749535799026, -0.022228293120861053, 0.007555840536952019, -0.06796364486217499, 0.01622365228831768, -0.008706730790436268, 0.01237623393535614, 0.05595436319708824, -0.016913073137402534, -0.010280168615281582, 0.01087507326155901, 0.01922597363591194, 0.01455569639801979, 0.005420857109129429, 0.06578418612480164, 0.022417329251766205, -0.06040224805474281, -0.024819185957312584, 0.01756913587450981, 0.011742410250008106, -0.002222551265731454, -0.015289596281945705, -0.025819959118962288, 0.027020886540412903, 0.009168198332190514, -0.0032858732156455517, 0.00940727163106203, -0.015689905732870102, 0.07143299281597137, 0.025664282962679863, -0.006410510744899511, 0.01850319281220436, -0.015033842995762825, 0.009034761227667332, -0.020304584875702858, -0.013977471739053726, -0.02068265527486801, -0.01591229997575283, -0.02975633554160595, 0.012409592978656292, -0.01632372848689556, -0.015523110516369343, -0.03175788372755051, 0.04160994291305542, -0.01580110378563404, -0.0490601472556591, -0.038340747356414795, -0.010041095316410065, 0.04296654835343361, -0.02102736569941044, -0.04398956149816513, 0.062270358204841614, 0.040720365941524506, 0.06222587823867798, -0.03611680865287781, -0.033759430050849915, -0.0030328999273478985, 0.01954844407737255, -0.02186134271323681, -0.010530361905694008, -0.06854186952114105, 0.016779636964201927, 0.02684297226369381, -0.0016248670872300863, -0.02953394129872322, 0.005395837593823671, -0.006193676497787237, -0.028555406257510185, -0.02384065091609955, 0.024930382147431374, 0.009457310661673546, 0.005904564168304205, 0.03898569196462631, -0.03471572324633598, 0.017535777762532234, 0.018747825175523758, -0.040208857506513596, 0.025931155309081078, 0.00842873752117157, 0.031579967588186264, 0.0015762184048071504, -0.02258412353694439, 0.057377684861421585, 0.04438987001776695, -0.011369899846613407, 0.039074648171663284, 0.019170373678207397, -0.005195682868361473, 0.010013296268880367, -0.02559756487607956, -0.008139625191688538, -0.025441888719797134, -0.07405724376440048, -0.03431541472673416, 0.0005201937747187912, 0.023329144343733788, -0.05786695331335068, -0.002039076294749975, 0.00982426106929779, 0.004256067797541618, 0.008979163132607937, -0.02828853391110897, -0.023173468187451363, -0.022661961615085602, -0.010441404767334461, -0.02922258898615837, -0.037606846541166306, -0.0007915841415524483, 0.006343792658299208, -0.02037130296230316, -0.008167424239218235, 0.02819957584142685, 0.0020585358142852783, 0.0028355251997709274, 0.00032698886934667826, -0.011119706556200981, 0.012342873960733414, -0.013543802313506603, -0.011875846423208714, 0.01274318341165781, 0.003775140503421426, 0.0019403888145461679, 0.0005358308553695679, 0.011408818885684013, 0.057777997106313705, -0.04118739441037178, -0.03211371228098869, -0.0030190004035830498, 0.028577646240592003, -0.06689615547657013, 0.04476793855428696, -0.04505705088376999, -0.01050256285816431, 0.02777702733874321, -0.013666119426488876, -0.008000629022717476, -0.05066138505935669, 0.020949527621269226, 0.026286985725164413, -0.018247438594698906, -0.018636628985404968, 0.016979791224002838, -0.02797718159854412, 0.008400938473641872, 0.02862212434411049, -0.08019532263278961, -0.0275768730789423, 0.009579626843333244, 0.011742410250008106, -0.02913363091647625, -0.005987962242215872, 0.014433379285037518, -0.013955231755971909, 0.007005415391176939, 0.029711855575442314, -0.04465674236416817, -0.020037710666656494, 0.012520790100097656, -0.0334925577044487, -0.023062271997332573, -0.0017610834911465645, -0.02308451198041439, 0.04390060156583786, -0.0130100566893816, -0.006805260665714741, 0.020059950649738312, 0.027487915009260178, 0.0012433221563696861, -0.01725778542459011, 0.03618352487683296, -0.014322182163596153, -0.03195803612470627, 0.004014214035123587, 0.030979502946138382, 0.004200469236820936, -0.039808548986911774, 0.02258412353694439, 0.023262426257133484, 0.022183815017342567, 0.06502804160118103, -0.05475343391299248, -0.008673370815813541, 0.052173662930727005, 0.011620093137025833, 0.016101336106657982, -0.05399729683995247, 0.004700855817645788, -0.00652726786211133, -0.03318120539188385, -0.009579626843333244, 0.01138657983392477, 0.006382711697369814, 0.09393928200006485, -0.0024115864653140306, 0.07165539264678955, -0.07410172373056412, -0.008189664222300053, -0.016779636964201927, 0.048526398837566376, 0.05631019547581673, 0.008923565037548542, -0.031557727605104446, -0.06694063544273376, -0.012498550117015839, 0.005251281429082155, -0.010658239014446735, 0.005014987662434578, 0.0007776845013722777, 0.023373624309897423, 0.014633533544838428, -0.026042353361845016, -0.06293754279613495, 0.026286985725164413, -0.042099207639694214, 0.04047573357820511, 0.04358924925327301, -0.06551731377840042, 0.004948269575834274, 0.006093599367886782, -0.03327016159892082, -0.024730227887630463, 0.0632488951086998, -0.04454554617404938, -0.015578708611428738, -0.07392381131649017, 0.0007339006406255066, -0.015689905732870102, -0.014333302155137062, 0.02819957584142685, -0.023217948153614998, -0.02027122490108013, 0.010880633257329464, 0.053819380700588226, 0.010085574351251125, -0.028021661564707756, 0.03587217256426811, 0.07454651594161987, -0.0016026276862248778, -0.06338232755661011, -0.042299363762140274, 0.01096959039568901, 0.00925715547055006, 0.042721912264823914, 0.010152292437851429, 0.053107719868421555, -0.03600560873746872, 0.01995987258851528, 0.02642042376101017, -0.004667496774345636, -0.026464901864528656, 0.020093310624361038, -0.03816283494234085, 0.010374686680734158, -0.00627151457592845, 0.008417617529630661, -0.00629375409334898, 0.01873670518398285, 0.017602495849132538, -0.05844517797231674, -0.01623477227985859, -0.024285439401865005, 0.03682846948504448, 0.046747248619794846, 0.025464128702878952, -0.03315896540880203, 0.01715770736336708, 0.018981339409947395, -0.0002799038775265217, -0.007483562454581261, 0.027176562696695328, 0.010146732442080975, 0.022228293120861053, -0.00920711737126112, 0.005771127995103598, -0.02288435585796833, 0.06053568422794342, 0.04745890945196152, -9.58857526711654e-06, -0.008812367916107178, 0.028244055807590485, 0.014277703128755093, -0.05573197081685066, 0.024819185957312584, 0.04888223111629486, 0.0049871886149048805, 0.009373912587761879, 0.02370721474289894, -0.026820732280611992, 0.008467656560242176, -0.023885130882263184, -0.00684417923912406, -0.015934539958834648, 0.04481241852045059, -0.025152776390314102, -0.03258074074983597, -0.014700252562761307, 0.002596451435238123, 0.03476020321249962, -0.02246180735528469, -0.004022554028779268, -0.0019098096527159214, -0.06289306282997131, 0.030734868720173836, 0.030089925974607468, -0.023173468187451363, -0.013254689984023571, -0.01632372848689556, 0.004528500605374575, -0.025753241032361984, -0.03911912813782692, -0.03578321635723114, 0.0181140024214983, 0.0022434007842093706, -0.01873670518398285, -0.004459002520889044, 0.024619029834866524, -0.02027122490108013, 0.00017496163491159678, -0.03713982179760933, -0.009435070678591728, -0.01186472736299038, -0.015133921056985855, -0.039697352796792984, -0.00772819621488452, -0.00019667981541715562, 0.017213305458426476, 0.03774028271436691, -0.032402824610471725, 0.02048249915242195, -0.062047962099313736, -0.00342208961956203, 0.04129859060049057, 0.017090989276766777, 0.021883582696318626, 0.005882324650883675, 0.01912589557468891, -0.021672308444976807, -0.027888223528862, -0.004264407325536013, -0.012342873960733414, 0.008033988066017628, -0.036761749535799026, 0.03144653141498566, -0.01725778542459011, 0.016257010400295258, -0.030245602130889893, 0.021038485690951347, -0.01769145391881466, 0.05604332312941551, -0.024174243211746216, 0.022839877754449844, -0.017235545441508293, -0.015934539958834648, 0.011408818885684013, -0.017513537779450417, -0.030112165957689285, 0.03353703394532204, 0.04590214788913727, 0.019059177488088608, 0.018158480525016785, -0.0761922299861908, -0.012987817637622356, 0.0006233985768631101, -0.02401856705546379, 0.005470895674079657, -0.008412058465182781, -0.04185457527637482, -0.030957262963056564, -0.00772819621488452, 0.009685264900326729, 0.047192033380270004, -0.008228583261370659, -0.004320005886256695, -0.04563527554273605, -0.007233369164168835, -0.018569910898804665, 0.0632488951086998, 0.003157996805384755, 0.03774028271436691, -0.004667496774345636, 0.028577646240592003, 0.008178544230759144, 0.02955618128180504, -0.012153839692473412, 0.01759137585759163, -0.03591665253043175, -0.016268130391836166, -0.04503481090068817, -0.0014830909203737974, 0.01429994311183691, -0.03580545634031296, 0.005298540461808443, 0.05057242512702942, -0.01674627885222435, 0.011664572171866894, -0.0006445954786613584, -0.03487139940261841, 0.013588281348347664, -0.01716882735490799, -0.04438987001776695, 0.014088667929172516, 0.012365113943815231, -8.52221273817122e-05, 0.00038884225068613887, -0.045724235475063324, 0.04372268542647362, 5.5164171499200165e-05, -0.008667811751365662, -0.00616587745025754, 0.0218502227216959, 0.011008509434759617, -0.04225488379597664, 0.04118739441037178, -0.00342208961956203, -0.007316766772419214, 0.010118933394551277, 0.019615162163972855, -0.008662251755595207, 0.010658239014446735, 0.009740862995386124, 0.01186472736299038, 0.04216592758893967, -0.0049010105431079865, 0.01632372848689556, -0.029578419402241707, -0.05128408595919609, 0.029489461332559586, 0.024196481332182884, 0.00028841738821938634, -0.01694643311202526, 0.012164958752691746, -0.008289741352200508, -0.01872558519244194, -0.023240186274051666, 0.002089114859700203, -0.006332673132419586, 0.02017114870250225, 0.011775769293308258, -0.001681855646893382, -0.017613615840673447, 0.02891123667359352, 0.024841424077749252, -0.017324503511190414, -0.04472345858812332, 0.039697352796792984, -0.010491442866623402, 0.03613904491066933, -0.018970219418406487, 0.018347516655921936, -0.02205037884414196, 0.013410366140305996, -0.0025978414341807365, -0.003280313452705741, -0.0029022435192018747, 0.013944111764431, 0.002318458864465356, 0.0003874522808473557, 0.002803556155413389, 0.0021196941379457712, -0.0006807345198467374, -0.03487139940261841, -0.032180432230234146, -0.006032440811395645, -0.02151663228869438, 0.0024977640714496374, 0.010252369567751884, -0.012287275865674019, 0.027732549235224724, 0.06062464043498039, 0.0269541684538126, 0.005910124164074659, 0.01603461615741253, 0.019826436415314674, -0.045190487056970596, -0.02424096129834652, 0.0020223965402692556, -0.029155870899558067, -0.011875846423208714, 0.015367434360086918, 0.002664559753611684, -0.0024977640714496374, 0.044879134744405746, 0.038029395043849945, 0.01061931997537613, -0.008695610798895359, -0.03745117038488388, -0.009701943956315517, -0.021683428436517715, -0.0020710453391075134, -0.01675739884376526, 0.009907658211886883, -0.051550962030887604, -0.022183815017342567, -0.032002516090869904, -0.0035444064997136593, -0.014366661198437214, -0.03431541472673416, 0.00676078163087368, -0.0017318943282589316, -0.02173902653157711, -0.006816380191594362, -0.008651131764054298, -0.02381841093301773, -0.0034471091348677874, -0.04003094509243965, -0.03711758181452751, 0.01902581751346588, 0.025130536407232285, -0.007144411560148001, -0.0331144854426384, 0.035004835575819016, 0.008501015603542328, 0.01322133094072342, 0.035004835575819016, 0.02497486211359501, -0.057466644793748856, -0.00977978203445673, 0.0013496543979272246, -0.017246665433049202, 0.02028234489262104, 0.023862890899181366, -0.010647119022905827, 0.028777800500392914, 0.016835235059261322, -0.05292980372905731, -0.005459776148200035, -0.008406498469412327, 0.032914333045482635, -0.009051441214978695, 0.03362599387764931, -0.03845194727182388, 0.02341810241341591, -0.0073334467597305775, -0.017869368195533752, 0.005087265744805336, 0.010163411498069763, -0.0052373819053173065, -0.05324115604162216, 0.03925256431102753, -0.008334220387041569, 0.0036083448212593794, -0.007505801972001791, 0.0009986886288970709, -0.006260395050048828, -0.007255608681589365, -0.018125122413039207, 0.036472637206315994, 0.013566042296588421, -0.01455569639801979, 0.004864871501922607, -0.02831077389419079, -0.010424724780023098, -0.009813141077756882, -0.024152003228664398, -0.019481725990772247, 0.01206488162279129, -0.054353125393390656, -0.0035082674585282803, 0.0032219351269304752, 0.009868740104138851, -0.01894797943532467, 0.024730227887630463, -0.01237623393535614, 0.005971282720565796, -0.03645039722323418, -0.012265036813914776, -0.015745503827929497, 0.05595436319708824, -0.019537324085831642, -0.00016236508963629603, -0.018792305141687393, -0.0025950614362955093, -0.014166506007313728, 0.01798056624829769, -0.03789595887064934, -0.006588426418602467, -0.025664282962679863, -0.0447012223303318, 0.023373624309897423, 0.02110520377755165, 0.046969641000032425, -0.004592438694089651, 0.008517695590853691, 0.026820732280611992, -0.011975924484431744, 0.014210985042154789, 0.004016994033008814, -0.008456536568701267, 0.02444111555814743, -0.009701943956315517, -0.015467512421309948, -0.012620867229998112, -0.04350029304623604, 0.011697931215167046, -0.03046799637377262, 0.01852543093264103, -0.00517622334882617, 0.00011623568570939824, -0.029267067089676857, 0.025642042979598045, 0.016156934201717377, 0.004753674380481243, 0.04692516103386879, -0.0037278817035257816, 0.008406498469412327, 0.013399246148765087, -0.021049603819847107, -0.000706448860000819, -0.002055755816400051, 0.004539620131254196, 0.0294449832290411, -0.013421486131846905, 0.014122027903795242, -0.015734385699033737, 0.04741442948579788, -0.03371495008468628, -0.01789160817861557, 0.0063771517015993595, -0.015867821872234344, -0.01696867309510708, 0.006371591705828905, 0.008751208893954754, -0.02839973010122776, 0.006393831223249435, -0.034693483263254166, -0.009084800258278847, 0.022094856947660446, -0.024908142164349556, -0.011942565441131592, 0.02039354294538498, -0.015756623819470406, 0.009551827795803547, 0.02559756487607956, -0.006960936356335878, -0.007238929159939289, 0.0001805214851628989, 0.028688842430710793, 0.001424712361767888, -0.021772386506199837, -0.0022600803058594465, 0.007806034293025732, 0.013032296672463417, -0.03529394790530205, -0.01164233312010765, -0.009246036410331726, 0.021138561889529228, 0.026998648419976234, -0.028733322396874428, -0.022539645433425903, -0.05666602402925491, 0.015778863802552223, -0.019815316423773766, -0.02424096129834652, -0.022028138861060143, 0.009112599305808544, 0.03151324763894081, 0.03487139940261841, -0.013955231755971909, 0.023751692846417427, 0.011431058868765831, 0.01842535473406315, -0.03856314346194267, -0.029978729784488678, -0.0032497341744601727, 0.05003868043422699, 0.0015484191244468093, -0.0269541684538126, 0.003155216807499528, 0.0036528236232697964, -0.06124734506011009, -0.01706874929368496, 0.012164958752691746, 0.025197254493832588, 0.015789983794093132, -0.009968817234039307, 0.0015484191244468093, 0.023751692846417427, 0.011308741755783558, -0.010535921901464462, 0.025441888719797134, 0.010852833278477192, -0.0130100566893816, 0.01451121736317873, -0.0037167619448155165, 0.025308452546596527, 0.03851866349577904, -0.009301634505391121, 0.026131311431527138, 0.01745793968439102, 0.009262715466320515, -0.026665056124329567, -0.0027549073565751314, -0.013944111764431, 0.020838329568505287, -0.001601237803697586, -0.004467342048883438, 0.018047284334897995, 0.005359698552638292, -0.007500241976231337, -0.011842487379908562, 0.008450977504253387, -0.025041580200195312, -0.0038946771528571844, -0.02131647802889347, -0.014388900250196457, 0.006299313623458147, -0.02236172929406166, -0.022928835824131966, -0.010947351343929768, 0.018758945167064667, 0.01840311475098133, 0.012776543386280537, 0.0029828613623976707, 0.028177335858345032, -0.040942758321762085, -0.024152003228664398, -0.012876620516180992, 0.00790055189281702, -0.018269678577780724, -0.0061269584111869335, -0.021994780749082565, 0.06347128748893738, -0.008539934642612934, -0.02432991750538349, 0.013288049027323723, -0.011186424642801285, 0.03193579614162445, -0.03462676703929901, 0.04599110782146454, -0.020671535283327103, -0.003488807938992977, -0.018981339409947395, 0.011531135998666286, 0.02151663228869438, -0.016879715025424957, -0.021205279976129532, 0.03006768599152565, -0.05604332312941551, 0.036872945725917816, -0.00026096560759469867, -0.019381647929549217, -0.027332238852977753, 0.014566815458238125, 0.02486366406083107, 0.01378843653947115, -0.034471090883016586, -0.029912011697888374, -0.0058990041725337505, 0.04401179775595665, 0.005359698552638292, 0.04078708589076996, -0.015078322030603886, -0.002157223178073764, 0.04507929086685181, 0.03524947166442871, -0.02061593532562256, 0.03057919256389141, -0.057066336274147034, -0.043099984526634216, 0.031891319900751114, 0.005420857109129429, 0.019503965973854065, -0.007283407729119062, 0.0218502227216959, 0.02372945472598076, 0.0341152586042881, 0.011058548465371132, -0.02922258898615837, 0.005042787175625563, -0.027309998869895935, 0.021060723811388016, -0.018336396664381027, 0.01180912833660841, 0.03965287283062935, -0.021160801872611046, -0.010391365736722946, 0.00673854211345315, 0.0027257180772721767, 0.01758025586605072, -0.0021683427039533854, 0.03696190565824509, -0.0390968881547451, 0.008445417508482933, 0.011169745586812496, 0.006666264031082392, -0.031268615275621414, 0.015011603944003582, -0.010041095316410065, -0.016712918877601624, -0.03765132650732994, -0.014689132571220398, -0.03524947166442871, 0.03633920103311539, -0.019804198294878006, 0.007044333964586258, -0.0074279638938605785, 0.037273257970809937, 0.00772819621488452, -0.01477809064090252, 0.032002516090869904, 0.021372076123952866, -0.003847418585792184, 0.00470919581130147, 0.03951943665742874, 0.016913073137402534, 0.008050668053328991, 0.006199236493557692, -0.008134065195918083, 0.020671535283327103, 0.01467801257967949, 0.017747052013874054, 0.02619802951812744, 0.008667811751365662, -0.041142914444208145, 0.01309901475906372, -0.017924966290593147, 0.02141655422747135, 0.00709993252530694, -0.034893639385700226, 0.02464126981794834, 0.024152003228664398, 0.011097467504441738, 0.017235545441508293, -0.039675112813711166, 0.0015095002017915249, 0.009051441214978695, -0.023573778569698334, -0.02132759802043438, 0.02236172929406166, 0.0011835538316518068, -0.008039548061788082, -0.021683428436517715, 0.01632372848689556, -0.011147505603730679, -0.021160801872611046, -0.029378265142440796, 0.029311547055840492, 0.03129085525870323, -0.0026867990382015705, -0.03077934868633747, -0.013699478469789028, 0.017713692039251328, -0.0036889626644551754, -0.041565462946891785, 0.026865212246775627, 0.00037529011024162173, 0.005604332312941551, 0.01119198463857174, 0.02007107064127922, -0.018758945167064667, 0.01056372094899416, -0.009651905857026577, -0.05844517797231674, 0.021683428436517715, 0.011542255990207195, 0.006521707866340876, -0.022005898877978325, 0.048304006457328796, -0.0006390356575138867, -0.0024838645476847887, -0.024730227887630463, 0.026598338037729263, -0.03026784211397171, -0.0007130511803552508, -0.02061593532562256, 0.03963063284754753, -0.009646345861256123, 0.02673177421092987, 0.03289209306240082, 0.02797718159854412, 0.05026107281446457, 0.01424434408545494, 0.029622899368405342, 0.0030857184901833534, -0.022239413112401962, 0.010730517096817493, -0.004547960124909878, -0.008400938473641872, 0.02186134271323681, -0.009874299168586731, 0.004420083481818438, -0.022661961615085602, -0.00016679559485055506, 0.016690678894519806, 0.0011578394332900643, -0.0040976121090352535, -0.0012787663144990802, -0.008612212724983692, 0.013299169018864632, -0.02143879421055317, -0.019715240225195885, -0.01202040258795023, 0.011653452180325985, 0.01180912833660841, 0.000599769176915288, -0.016245892271399498, 0.00270347879268229, 0.02277315966784954, -0.015523110516369343, 0.01429994311183691, 0.0003759850806090981, 0.01284326147288084, 0.0031885758507996798, -0.011742410250008106, -0.010941791348159313, 0.014077548868954182, 0.04670276865363121, 0.03696190565824509, 0.005365258548408747, -0.03382614627480507, 0.009179318323731422, 0.011381019838154316, -0.00032438267953693867, -0.02183910459280014, 0.004256067797541618, 0.016268130391836166, 0.018647748976945877, 0.004720315337181091, 0.029267067089676857, 0.007316766772419214, -0.026242507621645927, 0.02217269502580166, 0.015612068586051464, 0.011330980807542801, -0.03796267881989479, 0.05128408595919609, 0.01882566325366497, 0.030957262963056564, -0.014155386947095394, 0.0022475707810372114, 0.01018565148115158, -0.026754014194011688, 0.0031162977684289217, -0.02777702733874321, 0.002072435338050127, 0.008072907105088234, 0.002371277427300811, 0.04421195387840271, -0.017813770100474358, -0.0009840939892455935, 0.002358767669647932, -0.01621253229677677, 0.0002418536168988794, -0.021894702687859535, -0.0026826292742043734, -0.008567733690142632, 0.007939470931887627, -0.018492072820663452, -0.06000193580985069, -0.024174243211746216, -0.015322956256568432, -0.04185457527637482, 0.003030120162293315, 0.013532683253288269, 0.005937923211604357, -0.005771127995103598, -0.007466882932931185, -0.01819184049963951, 0.0010125882690772414, 0.01446673832833767, 0.021149681881070137, -0.013032296672463417, 0.00836757943034172, -0.0035277269780635834, -0.012854380533099174, 0.010091133415699005, 0.022661961615085602, 0.020137788727879524, 0.01357716228812933, -0.01622365228831768, 0.02216157503426075, -0.016490524634718895, 0.017624735832214355, 0.024196481332182884, -0.01429994311183691, -0.012932218611240387, 0.0009986886288970709, 0.03226938843727112, 0.034893639385700226, 0.009090360254049301, -0.028444210067391396, 0.018036164343357086, 0.014922646805644035, -0.00321081536822021, -0.027109844610095024, -0.02404080517590046, 0.004144870676100254, -0.0038335188291966915, -0.03413749858736992, 0.020015472546219826, -0.005557073280215263, 0.0107694361358881, -0.011953684501349926, -0.018436472862958908, -0.03144653141498566, -0.006543947383761406, 0.036561597138643265, -0.04014214128255844, -0.008779008872807026, 0.03222490847110748, -0.0009305804269388318, -0.029200349003076553, 0.002114134142175317, 0.015656547620892525, -0.012643106281757355, 0.007872751913964748, 0.04169889912009239, -0.019915394484996796, 0.055287182331085205, -0.04047573357820511, -0.048615358769893646, 0.006249275058507919, 0.013232450932264328, 0.02642042376101017, -0.007755995262414217, -0.018703347072005272, -0.0015067202039062977, 0.008979163132607937, -0.03891897201538086, 0.04888223111629486, 0.02297331392765045, -0.020938407629728317, -0.005226261913776398, -0.006449429783970118, 0.0019779177382588387, 0.01894797943532467, 0.008973603136837482, -0.015890059992671013, -0.007767115253955126, -0.003730661701411009, 0.0038140593096613884, 0.03226938843727112, 0.02277315966784954, -0.01232063490897417, -0.015990138053894043, 0.019392767921090126, 0.031379811465740204, -0.013921872712671757, -0.0035360667388886213, 0.00023768373648636043, -0.031268615275621414, -0.004689736291766167, -0.039363760501146317, 0.009663024917244911, -0.02080497145652771, 0.027309998869895935, 0.0349825955927372, -0.0059657227247953415, -0.02435215748846531, 0.00025523200747556984, -0.003875217866152525, -0.014188745990395546, 0.032602980732917786, -0.027421196922659874, -0.025931155309081078, -0.025308452546596527, -0.024463355541229248, -0.035738736391067505, 0.0037473412230610847, -0.03347031772136688, 0.014755850657820702, -0.026286985725164413, 0.017079869285225868, 0.011453297920525074, 0.020938407629728317, -0.013866274617612362, -0.04356700927019119, -0.003227494889870286, 0.005184563342481852, 0.0016484964871779084, -0.014711371622979641, -0.016901955008506775, -0.0010980709921568632, 0.012209437787532806, 0.009134839288890362, -0.00496494909748435, -0.002180852461606264, 0.007416844367980957, 0.005284640472382307, -0.040920522063970566, 0.0041393106803298, -0.017969446256756783, -0.011247583664953709, -0.017024271190166473, 0.01861438900232315, 0.0016526663675904274, -0.010413605719804764, 0.022728679701685905, -0.04567975550889969, 0.02142767421901226, -0.0029717416036874056, 0.010446964763104916, 0.03869657963514328, -0.010113373398780823, 0.009890979155898094, -0.02570876106619835, -0.014956005848944187, 0.014166506007313728, 0.019704120233654976, -0.0001508978893980384, -0.0476813018321991, -0.010508122853934765, -0.005393057595938444, 0.004422863479703665, 0.02902243472635746, 0.0027020887937396765, 0.030935024842619896, -0.0006557151791639626, -0.024196481332182884, 0.004845411982387304, -0.02246180735528469, -0.014755850657820702, -0.031135179102420807, 0.0027854866348206997, 0.006221476010978222, -0.04118739441037178, 0.018703347072005272, 0.03413749858736992, -0.007311207242310047, 0.0393415205180645, -0.02768806926906109, -0.04848192259669304, -0.0014101178385317326, -0.029378265142440796, 0.008095146156847477, -0.013110133819282055, -0.012720944359898567, -0.00627151457592845, 0.03442661091685295, 0.02435215748846531, -0.00540973711758852, 0.0018778404919430614, -0.0029189230408519506, -0.0006383406580425799, -0.02372945472598076, 0.0520402267575264, 0.0012467971537262201, 0.011431058868765831, 0.029622899368405342, -0.008856846019625664, 0.00868449080735445, 0.013110133819282055, -0.0081563051789999, -0.025219494476914406, -0.004570199642330408, -0.02049361914396286, -0.02196142077445984, 0.021816864609718323, -0.0014789210399612784, -0.019637402147054672, -0.01102518942207098, 0.04825952649116516, 0.023462580516934395, 0.019937634468078613, 0.0004399234021548182, 0.03069039061665535, 0.01180912833660841, 0.034070782363414764, -0.007778234779834747, -0.020660415291786194, -0.0022044817451387644, -0.013844034634530544, -0.002421316225081682, 0.024930382147431374, -0.009562947787344456, -0.011620093137025833, 0.004339465405791998, -0.035516344010829926, 0.0038585381116718054, -0.032491784542798996, 0.02744343690574169, -0.047280993312597275, 0.027398956939578056, 0.010485883802175522, 0.016668440774083138, -0.0019111995352432132, -0.0022989993449300528, 0.06000193580985069, 0.008033988066017628, 0.0017569136107340455, -0.001251662033610046, 0.016401566565036774, -0.014744730666279793, 0.00652726786211133, 0.030868304893374443, 0.02029346488416195, -0.007327886763960123, -0.003066259203478694, 0.014533456414937973, -0.0662289708852768, -0.027221042662858963, 0.006221476010978222, -0.024819185957312584, 0.009034761227667332, -0.04147650673985481, 0.0199821125715971, 0.029155870899558067, -0.012287275865674019, -0.013232450932264328, -0.0015442492440342903, 0.012876620516180992, 0.0362280048429966, -0.00900140218436718, -0.012909979559481144, -0.028688842430710793, 0.018847903236746788, 0.005373598076403141, 0.028888998553156853, -0.02466350980103016, -0.01696867309510708, -0.0380961149930954, 2.5410266971448436e-05, 0.0027632471174001694, 0.0011272602714598179, -0.02019338682293892, 0.007327886763960123, 0.020649295300245285, 0.056221235543489456, 0.010285728611052036, -0.009234916418790817, -0.00686641875654459, 0.031046221032738686, -0.0016762957675382495, 0.012076001614332199, 0.0103969257324934, 0.006849739234894514, 0.004386724438518286, 0.0026451002340763807, 0.008256382308900356, 0.008840166963636875, 0.01663508079946041, 0.012620867229998112, 0.005059466697275639, -0.05128408595919609, -0.006410510744899511, 0.014110907912254333, 0.006282634101808071, -0.019403887912631035, 0.03275865688920021, -0.040497973561286926, 0.01212048064917326, 0.043522533029317856, -0.006805260665714741, 0.010763876140117645, 0.004845411982387304, -0.024152003228664398, -0.032091472297906876, 0.02557532489299774, 0.023907369002699852, 0.01831415668129921, -0.006638464983552694, 0.003991974517703056, -0.011397698894143105, 0.0034999276977032423, -0.01612357422709465, -0.023373624309897423, -0.03244730457663536, -0.027221042662858963, 0.006938696838915348, 0.002789656398817897, 0.0050455667078495026, -0.014589055441319942, -0.035427384078502655, -0.009807581081986427, 0.00043401605216786265, -0.009329433552920818, -0.039986465126276016, -0.02152775228023529, -0.012287275865674019, 0.004517380613833666, -0.012153839692473412, 0.00014542491408064961, -0.0025575326289981604, 0.034181978553533554, -0.04365596920251846, -0.024796945974230766, 0.0011661791941151023, -0.010547041893005371, -0.02828853391110897, 0.005317999515682459, -0.018536550924181938, 0.02557532489299774, 0.04576871171593666, 0.005532054230570793, 0.020360182970762253, 0.011108586564660072, 0.033136725425720215, -0.01704651117324829, -0.0688532218337059, -0.021249759942293167, 0.027087604627013206, -0.030556954443454742, -0.01801392436027527, -0.008762328885495663, 0.0035916652996093035, 0.0075169214978814125, 0.007149971555918455, 0.015789983794093132, 0.04741442948579788, 0.025664282962679863, -0.00418378971517086, -0.008273061364889145, 0.005404177587479353, 0.022105976939201355, -0.04608006402850151, 0.025041580200195312, -0.0046341377310454845, -0.003074598964303732, -0.029934249818325043, -0.0368507094681263, -0.018536550924181938, -0.005999081768095493, 0.014333302155137062, 0.02008219063282013, 0.031157417222857475, -0.00940727163106203, 0.007272288203239441, 0.039074648171663284, -0.018280798569321632, -0.01725778542459011, -0.008350899443030357, 0.023640496656298637, 0.025108298286795616, -0.017913848161697388, -0.013532683253288269, 0.029711855575442314, 0.01738010160624981, 0.01738010160624981, -0.026286985725164413, -0.0011404649121686816, 0.025219494476914406, -0.014400020241737366, 0.005637691356241703, -0.000706448860000819, 0.010841714218258858, -0.01967076025903225, -0.008695610798895359, 0.014889286831021309, 0.02786598540842533, -0.0028827839996665716, 0.02453007362782955, -0.010836154222488403, -0.040631409734487534, 0.07583639770746231, 0.03849642351269722, 0.012287275865674019, 0.028221815824508667, -0.007372365333139896, 0.0434558130800724, 0.0012057932326570153, 0.016490524634718895, 0.028221815824508667, 0.019681880250573158, 0.003424869617447257, -0.020960647612810135, -0.014222105033695698, -0.05284084752202034, 0.0029828613623976707, -0.012242796830832958, -0.03745117038488388, 0.005437536630779505, 0.019270451739430428, -0.004175449721515179, 0.007972829975187778, 0.014500097371637821, 0.024819185957312584, 0.04192129522562027, -0.02196142077445984, 0.01664620079100132, -0.00010520285286474973, -0.004397843964397907, -0.002532513113692403, 0.02121639996767044, 0.01514504011720419, 0.003130197525024414, 0.01924821175634861, -0.004564639646559954, 0.02766583114862442, -0.021349836140871048, 0.01176464930176735, 0.032402824610471725, -0.023662736639380455, 0.06338232755661011, -0.021071843802928925, -0.004122631158679724, 0.012109360657632351, 0.009874299168586731, -0.014355541206896305, 0.018025044351816177, -0.001613747444935143, -0.01284326147288084, 0.030668150633573532, -0.011675692163407803, 0.04418971389532089, -0.03789595887064934, -0.027710309252142906, -0.017035391181707382, -0.042788632214069366, 0.008523255586624146, 0.028733322396874428, -0.014021949842572212, 0.0372287780046463, -0.03080158680677414, 0.0003033594985026866, 0.005109505262225866, 0.019537324085831642, -0.019704120233654976, 0.004225488752126694], [0.01065870188176632, 0.00748142134398222, 0.03768591955304146, 0.043773286044597626, -0.053159914910793304, 0.03104092925786972, -0.014056707732379436, -0.04602700471878052, 0.015578550286591053, 0.012290907092392445, -0.014010239392518997, -0.021073445677757263, -0.003819126170128584, 0.026882002130150795, -0.007359441835433245, 0.02957717329263687, 0.025604119524359703, 0.03378256782889366, -0.03533926233649254, -0.025580884888768196, -0.004121171310544014, 0.019772328436374664, -0.029066018760204315, 0.005573310423642397, -0.029461001977324486, -0.016054851934313774, 0.0011617114068940282, -0.02741638943552971, 0.024372706189751625, -0.0008371582953259349, 0.08368968963623047, -0.015171950682997704, -0.014486541040241718, -0.025116201490163803, 0.019319260492920876, 0.007074822671711445, 0.04091547429561615, -0.0026036857161670923, -0.036175694316625595, -0.029786281287670135, -0.017530225217342377, -0.03210970386862755, -0.005099913105368614, -0.03138944134116173, -0.02513943426311016, 0.04444707930088043, -0.03264408931136131, 0.006917991209775209, 0.006825054530054331, 0.016635706648230553, 0.03143591061234474, 0.02569705620408058, 0.003816222073510289, -0.0037087637465447187, -0.011419623158872128, -0.012674271129071712, 0.002555765211582184, 0.04828072711825371, -0.01880810782313347, -0.026161741465330124, -0.0021085061598569155, 0.00997910089790821, -0.00689475703984499, -0.015892211347818375, -0.017170093953609467, -0.0028766877949237823, -0.006267433054745197, 0.04837366193532944, -0.031319741159677505, -0.0015044162282720208, 0.045469384640455246, -0.01232575811445713, 0.011988861486315727, -0.0031859935261309147, -0.04600377008318901, -0.006232581567019224, 0.0371747650206089, -0.07095733284950256, -0.020864337682724, 0.0068308631889522076, -0.032295577228069305, 0.012662654742598534, -0.04019521549344063, 0.018111079931259155, -0.006656606215983629, 0.021108295768499374, -0.027834605425596237, -0.024674750864505768, -0.03952142223715782, 0.006313901394605637, -0.07091086357831955, 0.02741638943552971, -0.003566453931853175, 0.0311338659375906, -0.055250994861125946, 0.03361992910504341, -0.012139883823692799, -0.02207251638174057, -0.03145914524793625, -0.0013875190634280443, -0.026951704174280167, -0.006993502844125032, -0.016879666596651077, 0.030576243996620178, 0.04349447414278984, -0.04665432870388031, -0.028903380036354065, 0.010815532878041267, -0.037221234291791916, 0.024883858859539032, 0.058085571974515915, -0.02748609147965908, -0.023617593571543694, 0.06045546010136604, 0.024465642869472504, -0.012395461089909077, 0.018401509150862694, 0.018738405779004097, 0.004495823290199041, -0.017193328589200974, 0.028578100726008415, 0.01186688244342804, 0.028554866090416908, -0.04958184435963631, 0.0275557953864336, 0.008910326287150383, -0.010153357870876789, -0.005102817434817553, 0.017553459852933884, -0.04298332333564758, 0.007580167148262262, -0.04026491567492485, 0.04549261927604675, -0.013626874424517155, 0.0009039567084982991, 0.01378951407968998, -0.015381058678030968, 0.002137548988685012, 0.006523009389638901, 0.016252342611551285, 0.06310416013002396, 0.02523237094283104, 0.07091086357831955, 0.0018369561294093728, -0.06937740743160248, -0.027067875489592552, 0.05055768042802811, 0.01317380741238594, -0.04972124844789505, -0.002025734167546034, 0.004733974114060402, 0.02351303957402706, 0.016844814643263817, 0.02692846953868866, 0.03313200920820236, -0.007127099670469761, 0.06008371338248253, 0.07527890056371689, -0.012743974104523659, -0.018145931884646416, -0.009020688943564892, 0.007946105673909187, -0.03605952113866806, -0.04165897145867348, -0.03159854933619499, -0.02578999288380146, -0.046933140605688095, 0.011164046823978424, -0.0019400580786168575, -0.0155669329687953, -0.03826677426695824, -0.007347824517637491, -0.008677984587848186, -0.023710530251264572, -0.08090158551931381, -0.044516779482364655, 0.04247216880321503, 0.0109200868755579, -0.042239826172590256, 0.01309248711913824, 0.04454001411795616, 0.050975896418094635, -0.04440061002969742, -0.0381506010890007, -0.042658042162656784, 0.034711938351392746, 0.018668701872229576, 0.02813665010035038, -0.04307625815272331, -0.017332734540104866, -0.0071503338403999805, 0.00558492774143815, -0.005187041591852903, -0.022653372958302498, -0.010774873197078705, 0.026742596179246902, -0.01656600460410118, 0.018145931884646416, 0.03524632379412651, -0.007237461861222982, -0.009090391919016838, -0.04416826739907265, 0.030506541952490807, 0.05394987761974335, -0.052834633737802505, 0.05394987761974335, 0.018169166520237923, 0.0110014071688056, 0.017565077170729637, -0.005503607913851738, 0.05209114030003548, 0.027346687391400337, -0.011309260502457619, 0.0202137790620327, 0.006290667224675417, -0.02451211027801037, 0.00025448741507716477, -0.017321117222309113, 0.03338758647441864, -0.06914506107568741, -0.05734207481145859, -0.024233300238847733, -0.004963411949574947, 0.011820413172245026, -0.05613389611244202, 0.021305786445736885, -0.004190873820334673, -0.009839695878326893, 0.01064708549529314, -0.0011755067389458418, -0.038754694163799286, -0.027764903381466866, 0.0110014071688056, -0.01920308917760849, -0.03842941299080849, 0.019284408539533615, 0.016217490658164024, 0.007463995832949877, 0.03138944134116173, 0.03756974637508392, -0.007707955315709114, 0.05111530050635338, -0.027997244149446487, -0.0038684990722686052, 0.027393154799938202, -0.00563139608129859, 0.011692625470459461, -0.027369920164346695, 0.018959131091833115, -0.013708194717764854, -0.006273241713643074, 0.005910206586122513, 0.04505116865038872, -0.018633851781487465, 0.007510464172810316, 0.024349471554160118, 0.05139411240816116, -0.050743553787469864, 0.0583643801510334, -0.04860600456595421, -0.03231881186366081, 0.03856881707906723, 0.01880810782313347, -0.0414033941924572, -0.057202670723199844, -0.054275158792734146, 0.03215617313981056, -0.031900595873594284, 0.003906254656612873, 0.012023713439702988, -0.06556699424982071, 0.018982363864779472, 0.011483517475426197, -0.06826215982437134, -0.03598982095718384, 0.04000934213399887, 0.007574358489364386, -0.03429372236132622, -0.027857840061187744, 0.04405209794640541, -0.026951704174280167, -0.027067875489592552, 0.007905445992946625, -0.04105488210916519, -0.023908020928502083, 0.002385864732787013, -0.04349447414278984, 0.007411718834191561, 0.04196101427078247, -0.027857840061187744, 0.03986993432044983, -0.002086724154651165, 0.010786490514874458, -0.02451211027801037, 0.026719361543655396, -0.05878259614109993, -0.013231893070042133, 0.0404275581240654, -0.04328536614775658, -0.021654300391674042, -0.014927991665899754, 0.03406137973070145, -0.03914967551827431, -0.01754184253513813, 0.018250485882163048, 0.03701212629675865, -0.00950279925018549, 0.006987694185227156, -0.017170093953609467, -0.016054851934313774, -0.005886972416192293, -0.02546471357345581, 0.03624539449810982, -0.0577138215303421, -0.01923794113099575, 0.023327164351940155, -0.039986107498407364, 0.005088295787572861, 0.009880355559289455, -0.01115242950618267, 0.1046469658613205, -0.026882002130150795, 0.023199377581477165, -0.0391264408826828, 0.00860828161239624, -0.011861073784530163, -0.0027329260483384132, 0.05780676007270813, 0.02340848557651043, -0.028345758095383644, -0.06951680779457092, -0.0019444144563749433, 0.042658042162656784, -0.06575286388397217, -0.01406832505017519, -0.07230491936206818, 0.039730530232191086, 0.025836462154984474, -0.02822958678007126, -0.011791370809078217, 0.006180304568260908, -0.018901044502854347, 0.05548333749175072, 0.002457019640132785, -0.0019444144563749433, 0.007649869658052921, -0.008172639645636082, 0.011344111524522305, 0.005634300410747528, 0.02676583081483841, -0.030924757942557335, 0.02862456999719143, -0.041426628828048706, -0.06821569055318832, -0.019086917862296104, -0.03413107991218567, 0.008358513936400414, 0.02474445290863514, 0.026858767494559288, 0.021886643022298813, 0.03726770356297493, -0.004948890767991543, 0.010211443528532982, 0.05190526694059372, 0.05367106571793556, 0.02031833305954933, -0.003891733242198825, 0.003665199503302574, -0.0075220814906060696, 0.015636635944247246, 0.022060899063944817, 0.006947034038603306, 0.03296937048435211, -0.007864786311984062, -0.018018143251538277, 0.01992334984242916, 0.009014880284667015, -0.0068889488466084, 0.025673821568489075, -0.01692613586783409, 0.008161022327840328, 0.015357824973762035, -0.01178556215018034, -0.0207016970962286, 0.02490709349513054, 0.0228276289999485, -0.029391298070549965, -0.0025194615591317415, -0.01624072529375553, 0.014300667680799961, 0.03401491045951843, 0.0010194017086178064, -0.025673821568489075, -0.030947992578148842, -0.00018514775729272515, 0.024953560903668404, -0.009316925890743732, -0.0038104134146124125, 0.00532354274764657, -0.03643127158284187, 0.002563025802373886, -0.02692846953868866, -0.03789502754807472, 0.03710506111383438, 0.04082253947854042, 0.02451211027801037, 0.03840617835521698, -0.031017694622278214, 0.01965615712106228, -0.05985137075185776, 0.009235605597496033, 0.05311344563961029, 0.023187760263681412, 0.057760290801525116, 0.014056707732379436, -0.027671964839100838, -0.015009311027824879, -0.028671037405729294, -0.020875953137874603, -0.001376628060825169, -0.0029362256173044443, -0.034711938351392746, -0.031250037252902985, 0.015648253262043, 0.005953771062195301, -0.014695649035274982, -0.05594802275300026, -0.007835743017494678, 0.003409622935578227, -0.05520452558994293, -0.006598521023988724, 0.03508368507027626, -0.021654300391674042, 0.03659391030669212, -0.004138596821576357, -0.017460523173213005, -0.027114344760775566, -0.06607814133167267, -0.0436803475022316, 0.004199586808681488, 0.005744663067162037, -0.022699840366840363, 0.03631509840488434, 0.06273241341114044, 0.00504473177716136, -0.043308600783348083, -0.014730500988662243, -0.00661013787612319, -0.015288121998310089, -0.03508368507027626, -0.01294146478176117, 0.027462856844067574, 0.005817269906401634, -0.03396844118833542, 0.013104104436933994, 0.0010019760811701417, 0.00658690370619297, -0.05223054438829422, 0.028508398681879044, -0.007400101516395807, 0.028926614671945572, 0.008974220603704453, 0.02992568537592888, 0.015055780299007893, -0.014904757030308247, -0.011297643184661865, 0.04584113135933876, -0.007568549830466509, 0.044911764562129974, -0.059293750673532486, 0.0371747650206089, -0.005770801566541195, -0.00558492774143815, 0.008567621931433678, 0.0557621493935585, -0.007580167148262262, 0.0616171732544899, 0.025023262947797775, -0.019098535180091858, -0.03231881186366081, -0.01212826743721962, 0.0043070451356470585, -0.0648699626326561, -0.08870828151702881, 0.03087828867137432, 0.0332481786608696, 0.011390580795705318, -0.022328093647956848, -0.07374543696641922, -0.00166269950568676, -0.034409891813993454, 0.0026704841293394566, 0.013975388370454311, -0.010170782916247845, -0.010635468177497387, -0.030924757942557335, -0.02829929068684578, -0.007795083336532116, 0.05604095757007599, -0.02060876041650772, 0.03138944134116173, -0.010443785227835178, 0.016902901232242584, -0.016868049278855324, 0.05520452558994293, 0.016612473875284195, 0.023385250940918922, 0.012174735777080059, 0.007249079179018736, -0.01887780986726284, 0.016809964552521706, -0.014939608983695507, -0.018238868564367294, 0.0011965627782046795, -0.004768825136125088, -0.050975896418094635, 0.022386178374290466, 0.03752327710390091, -0.030785351991653442, -0.0335734598338604, 0.030947992578148842, -0.007010928355157375, 0.006464924197643995, -0.0004149487940594554, -0.02572029083967209, -0.005268361419439316, -0.013115721754729748, -0.027300218120217323, -0.019354112446308136, 0.009682864882051945, -0.000430559302913025, 0.04065990075469017, -0.045724961906671524, 0.016751877963542938, -0.026579957455396652, -0.02520913816988468, -0.03159854933619499, 0.05692385882139206, -0.005268361419439316, 0.013568789698183537, 0.049210093915462494, 0.005959579721093178, -0.028508398681879044, -0.007951914332807064, 0.010588999837636948, 0.004086319822818041, -0.0031598550267517567, 0.015404293313622475, -0.005279978271573782, 0.0050505404360592365, 0.004707835614681244, -0.03313200920820236, -0.0063545615412294865, -0.07211904227733612, -0.011268600821495056, 0.009833887219429016, -0.009345968253910542, -0.03733740374445915, 0.018575765192508698, -0.0030030240304768085, -0.01646145060658455, -0.003958531655371189, -0.0030349709559231997, -0.0023655348923057318, -0.02109667845070362, 0.04342477396130562, -0.007585975341498852, 0.008195874281227589, 0.015950297936797142, 0.0293448306620121, -0.02344333566725254, -0.038452647626399994, 0.03378256782889366, -0.05464690551161766, 0.03199353069067001, 0.0046787927858531475, -0.007638252340257168, -0.05176585912704468, -0.009072965942323208, 0.050000060349702835, 0.002118671080097556, 0.010896853171288967, 0.005253839772194624, 0.00663337204605341, 0.009479565545916557, -0.021956345066428185, -0.01224443782120943, -0.0378253236413002, 0.0033660586923360825, -0.0319470651447773, -0.0028316716197878122, -0.006418455392122269, 0.012441929429769516, -0.013359680771827698, 0.019934967160224915, 0.037383873015642166, 0.07244431972503662, 0.0184247437864542, -0.03508368507027626, 0.0228276289999485, -0.02203766629099846, -0.010780681855976582, -0.010275337845087051, 0.006296475883573294, -0.0404275581240654, 0.0012880475260317326, 0.01862223446369171, 0.0007718119886703789, -0.00030004826840013266, 0.01802976056933403, -0.0005463673733174801, 0.017809035256505013, 0.0004962685634382069, -0.01868031919002533, 0.0021811132319271564, 0.0006701622623950243, -0.04440061002969742, -0.0022217731457203627, -0.00048174720723181963, -0.02572029083967209, -0.006976076867431402, -0.008968411944806576, -0.008224916644394398, -0.01747214049100876, -0.02360597625374794, 0.028345758095383644, -0.03355022519826889, -0.015230036340653896, -0.00035395895247347653, -0.02288571558892727, -0.018866192549467087, 8.245428034570068e-05, -0.023059971630573273, -0.029716577380895615, -0.010838767513632774, 0.007301356177777052, 0.017483755946159363, -2.779485294013284e-05, -0.00030966868507675827, -0.006453306879848242, -0.03870822489261627, 0.01374304573982954, 0.020027903839945793, -0.0005518129328265786, 0.011826221831142902, 0.011105961166322231, -0.01378951407968998, -0.007638252340257168, 0.03371286392211914, -6.393950752681121e-05, 0.0224907323718071, 0.01054833922535181, -0.006737926043570042, -0.017727715894579887, -0.0036826252471655607, -0.013208658434450626, -0.03986993432044983, 0.018204018473625183, -0.021758854389190674, 0.031575314700603485, -0.0015044162282720208, -0.010124314576387405, 0.00806808564811945, -0.014323901385068893, -0.018668701872229576, -0.02106182835996151, 0.01080972421914339, -0.03694242238998413, 0.005599448923021555, -0.016019999980926514, 0.014289050363004208, -0.018204018473625183, -0.0043070451356470585, 0.0021999909076839685, 0.03608275577425957, 0.001989430747926235, -0.01796005852520466, 0.018831342458724976, -0.022188687697052956, 0.0322723425924778, -0.005977005232125521, -0.02046935446560383, -0.013185424730181694, 0.012581334449350834, -0.04251863807439804, -0.016159405931830406, -0.010211443528532982, -0.02207251638174057, -0.02539501152932644, 0.009996526874601841, 0.0003957079607062042, 0.005988622084259987, -0.011559028178453445, 0.026858767494559288, -0.0020054043270647526, 0.026905236765742302, 0.00808551162481308, -0.010403125546872616, -0.011773944832384586, 0.004217012319713831, -0.008712835609912872, -0.007278122007846832, -0.018331805244088173, -0.030738884583115578, -0.01747214049100876, -0.016717027872800827, 0.017228180542588234, 0.025673821568489075, 0.006563669536262751, -0.005805652588605881, 0.0316217839717865, 0.00016490856069140136, -0.0008102937135845423, 0.003342824522405863, -0.029368065297603607, -0.025116201490163803, 0.014811820350587368, 0.012790442444384098, 0.013104104436933994, 0.010420551523566246, -0.02820635214447975, 0.014660798013210297, -0.05046474188566208, 0.001212536240927875, -0.023269079625606537, -0.01959807053208351, -0.014103176072239876, 0.029623640701174736, -0.0012880475260317326, -0.002843288704752922, 0.04254187270998955, -0.020399652421474457, 0.00038227566983550787, 0.008033234626054764, -0.03615245968103409, 0.01036827452480793, -0.0033224946819245815, -0.0009054088150151074, 0.034479595720767975, -0.013557172380387783, -0.004553908947855234, -0.006186113227158785, 0.03308553993701935, -0.02432623691856861, 0.01414964534342289, 0.005971196573227644, -0.0286942720413208, 0.032132938504219055, -0.03192383050918579, -0.008579238317906857, -0.025046497583389282, 0.007394293323159218, -0.016809964552521706, -0.019865265116095543, 0.009648012928664684, -0.04607347398996353, -0.002615302801132202, 0.02321099303662777, 0.02425653487443924, 0.00748142134398222, -0.010542530566453934, -0.0022667893208563328, 0.007638252340257168, -0.03921937569975853, 0.004373843315988779, -0.004516153130680323, -0.020004671066999435, 0.023176142945885658, 0.00914847757667303, -0.012639420107007027, -0.05083649232983589, -0.020329950377345085, -0.005285786930471659, 0.01862223446369171, 0.008509536273777485, -0.016019999980926514, -0.012592951767146587, -0.011832030490040779, 0.000906134897377342, 0.007696337997913361, -0.039498187601566315, -0.013406150043010712, -0.004417407792061567, 0.05060414969921112, -0.011233748868107796, -0.025418246164917946, 0.03127327188849449, 0.004943082109093666, 0.0016699600964784622, -0.04098517820239067, -0.001414383645169437, -0.014939608983695507, 0.039986107498407364, 0.0033544416073709726, 0.002933321287855506, -0.004266384989023209, 0.026579957455396652, -0.04948890581727028, -0.009944249875843525, 0.005216084420681, -0.01689128391444683, -0.006052516400814056, -0.03849911689758301, -0.022676607593894005, 7.973152241902426e-05, 0.02569705620408058, -0.007423335686326027, 0.016054851934313774, 0.019307643175125122, 0.008375938981771469, 0.003766849171370268, -0.002217416651546955, 0.0551115907728672, 0.022502349689602852, -0.037871792912483215, 0.034409891813993454, 0.00039098848355934024, -0.03341082111001015, 0.01149513479322195, -0.012302523478865623, 0.02207251638174057, 0.016751877963542938, -0.0003724737325683236, -0.014440072700381279, 0.020167309790849686, -0.015404293313622475, 0.007696337997913361, 0.03719799965620041, -0.009973292239010334, -0.019226323813199997, -0.01682158187031746, 0.0019313452066853642, -0.011065301485359669, 0.014567861333489418, -0.01309248711913824, 0.021596215665340424, -0.012465163134038448, 0.009950058534741402, 0.017042307183146477, 0.010832958854734898, 0.03752327710390091, 0.0018601904157549143, -0.045167338103055954, -0.0401022769510746, -0.02125931903719902, -0.013963771052658558, -0.02878720872104168, -0.014904757030308247, -0.005634300410747528, 0.048234257847070694, -0.0006447498453781009, -0.004278002306818962, 0.010618042200803757, -0.004202491138130426, 0.04412179812788963, -0.0311338659375906, 0.035780712962150574, -0.027346687391400337, 0.007429144345223904, -0.002191278152167797, -0.00996167492121458, 0.010292762890458107, -0.02846192941069603, -0.0109200868755579, 0.02602233551442623, -0.047328121960163116, 0.015055780299007893, 0.02046935446560383, -0.012070181779563427, 0.007649869658052921, 0.030088325962424278, 0.0046526542864739895, 0.016937753185629845, -0.0060873678885400295, -0.04082253947854042, 0.018134314566850662, 0.03183089196681976, -0.001786131295375526, 0.014579477719962597, -0.00888709258288145, -0.008823198266327381, 0.038684990257024765, 0.05920081213116646, -0.0016060660127550364, 0.01607808656990528, -0.027393154799938202, -0.040055807679891586, 0.01200047880411148, 0.015148716978728771, -0.0116577735170722, -0.016380131244659424, 0.019842030480504036, 0.039172910153865814, -0.005651725921779871, 0.022084133699536324, 0.010066228918731213, 0.02448887564241886, 0.013371298089623451, 0.013963771052658558, -0.0005518129328265786, -0.013847599737346172, 0.011338303796947002, -0.07462833821773529, 0.024465642869472504, 0.0046265157870948315, -0.009601544588804245, 0.0007594688213430345, 0.010867809876799583, 0.036175694316625595, -0.034084614366292953, 0.0033370160963386297, 0.02911248803138733, 0.008428215980529785, -0.0423792339861393, 0.05789969488978386, 0.011448665522038937, -0.0394517183303833, -0.013801131397485733, -0.013138956390321255, -0.025092966854572296, -0.02490709349513054, 0.002628372050821781, 0.0017658013384789228, -0.009316925890743732, 0.01701907254755497, 0.020388035103678703, -0.00606413371860981, 0.03559483587741852, 0.0062093473970890045, 0.006191921886056662, 0.005262552760541439, 0.0024889667984098196, 0.02214222028851509, 0.014730500988662243, 0.020794633775949478, 0.03475840389728546, 0.01486990600824356, -0.00044943709508515894, -0.009316925890743732, 0.024721218273043633, 0.009682864882051945, -0.035223089158535004, -0.0162988118827343, -0.013069253414869308, 0.028740739449858665, 0.03866175562143326, -0.011919159442186356, -0.01294146478176117, -0.0028316716197878122, -0.027950776740908623, 0.001388245145790279, -0.018924279138445854, 0.027346687391400337, -0.014312284998595715, 0.01812269724905491, -0.015729572623968124, 0.06277888268232346, -0.002432333305478096, 0.013812748715281487, 0.022328093647956848, 0.0018543818732723594, -0.004036947153508663, -0.005004072096198797, -0.06110601872205734, 0.007446570321917534, -0.0004105923871975392, 0.011256983503699303, 0.008259767666459084, -0.01346423476934433, 0.016124553978443146, 0.0018267912091687322, -0.054275158792734146, 0.031250037252902985, 0.04154279828071594, -0.022211922332644463, 0.0015537890139967203, 0.006244198884814978, -0.004530674312263727, 0.03898703306913376, -0.01200047880411148, -0.01721656322479248, 0.02894984744489193, 0.044261205941438675, -0.006592712365090847, -0.001558145391754806, 0.05055768042802811, 0.007963531650602818, -0.04398239403963089, 0.012883379124104977, -0.013406150043010712, -0.0103508485481143, 0.017948441207408905, -0.023629210889339447, 0.015834126621484756, -0.016589239239692688, 0.028810443356633186, 0.012871762737631798, 0.03285319730639458, -0.012767208740115166, 0.005532650742679834, 0.021607832983136177, -0.0047310697846114635, 0.012906613759696484, 0.004899517633020878, -0.005628491751849651, 0.037081826478242874, 0.01665894128382206, 0.01819240115582943, 0.008701218292117119, -0.034967511892318726, 0.020631995052099228, -0.016310427337884903, 0.005918919574469328, 0.029205424711108208, -0.013011167757213116, 0.013580406084656715, 0.012302523478865623, -0.0365242063999176, -0.03638480231165886, -0.003180184867233038, -0.016147788614034653, 0.006906374357640743, 0.0006523735355585814, 0.013533937744796276, 0.006859906017780304, 0.02256043627858162, 0.00487337913364172, 0.006662414874881506, -0.02272307500243187, 0.03445636108517647, -0.0021753045730292797, -0.01208179909735918, 0.0024788016453385353, -0.017437288537621498, 0.006238390225917101, 0.014579477719962597, 0.014242582023143768, 0.011344111524522305, 0.016589239239692688, -0.0025644779670983553, -0.006162879057228565, -0.019017215818166733, 0.0040137129835784435, 0.011140812188386917, -0.019261175766587257, 0.019667774438858032, 0.007556932512670755, 0.0007257065735757351, -0.015322973020374775, 0.03282996267080307, 0.010542530566453934, 0.029089253395795822, -0.040706366300582886, 0.041589267551898956, 0.04182161018252373, 0.029484234750270844, 0.015357824973762035, 0.02376861497759819, 0.017100391909480095, -0.0365242063999176, 0.010037186555564404, -0.028090182691812515, 0.017263030633330345, 0.0014136575628072023, -0.013894068077206612, 0.004344800487160683, -0.07829935103654861, -0.015601783990859985, 0.01929602585732937, 0.007371058687567711, -0.001806461252272129, -0.018250485882163048, -0.007986766286194324, -0.013615258038043976, -0.0016873858403414488, -0.03064594604074955, -0.0583643801510334, -0.02197957970201969, -0.007620826829224825, -0.005587832070887089, -0.019574837759137154, 0.016844814643263817, 0.0016917422180995345, -0.03138944134116173, -0.016798347234725952, -0.0037610407453030348, -0.011437049135565758, 0.02774166874587536, 0.021468427032232285, -0.05055768042802811, 0.011425431817770004, -0.01793682388961315, -0.020655229687690735, 0.0155669329687953, 0.003671008162200451, 0.021793706342577934, 0.019423814490437508, -0.0355483703315258, 0.0645446851849556, 0.0032440791837871075, 0.00911362562328577, 0.010159166529774666, -0.00132072065025568, -0.015450761653482914, -0.010525105521082878, 0.028578100726008415, 0.027276983484625816, -0.013138956390321255, -0.024697983637452126, 0.002406194806098938, 0.0008436929201707244, -0.0006171591812744737, -0.0038743074983358383, -0.0004232985957060009, -0.028159884735941887, 0.002433785470202565, -0.017727715894579887, 0.02285086363554001, -0.028090182691812515, -0.00532935094088316, -0.015671486034989357, -0.0036942423321306705, -0.0032382705248892307, 0.009322733618319035, -0.007231653667986393, -0.008033234626054764, 0.00046940401080064476, 0.007074822671711445, 0.0047746337950229645, -0.039660826325416565, -0.02618497423827648, 0.01952836848795414, -0.02513943426311016, -0.00266467547044158, 0.022641755640506744, -0.017367584630846977, 0.0616171732544899, -0.026301145553588867, -0.0365242063999176, -0.02790430746972561, 0.004158926662057638, 0.038197070360183716, -0.019830413162708282, -0.05311344563961029, 0.01004299521446228, 0.00024087360361590981, -0.019342495128512383, 0.06073427200317383, 0.019284408539533615, -0.008683792315423489, -0.024395938962697983, -0.018657084554433823, -0.014567861333489418, 0.0034793256781995296, -0.007603401318192482, -0.009880355559289455, 0.015950297936797142, -0.012883379124104977, 0.0018108176300302148, 0.03201676532626152, -0.0319470651447773, -0.014370369724929333, -0.0033370160963386297, -0.0015436239773407578, -0.013080870732665062, -0.012813677079975605, -0.009618970565497875, -0.012360609136521816, -0.04242569953203201, -0.02259528636932373, -0.004321566317230463, -0.018959131091833115, 0.014695649035274982, 0.02031833305954933, 0.019481901079416275, 0.003090152284130454, -0.00042729199049063027, -0.006621755193918943, 0.0030611094553023577, -0.011384772136807442, 0.016751877963542938, 0.022804394364356995, -0.009938441216945648, -0.05116176977753639, -0.006319710053503513, 0.004957603290677071, 0.02194472774863243, -0.018993981182575226, 0.005262552760541439, -0.03824353963136673, 0.02210736833512783, -0.002446854719892144, 0.022746309638023376, -0.00083134975284338, -0.010054612532258034, 0.015508847311139107, 0.01467241533100605, 0.010652893222868443, 0.007899637334048748, 0.016229107975959778, 0.0005884794518351555, 0.01701907254755497, 0.03517661988735199, -0.012209586799144745, -0.005294499918818474, 0.02585969679057598, 0.0004726713232230395, 0.030669180676341057, 0.004551004618406296, -0.003226653439924121, 0.006296475883573294, 0.007214227691292763, 0.021119913086295128, 0.030343901365995407, -0.014358753338456154, -0.0055007035844028, -0.04333183541893959, -0.027602262794971466, -0.016275577247142792, 0.0228276289999485, 0.029228659346699715, 0.004623611457645893, -0.010037186555564404, -0.05148705095052719, -0.02813665010035038, -0.004733974114060402, 0.003853977657854557, -0.013138956390321255, -0.05506512150168419, 0.013626874424517155, 0.010432168841362, -0.009787418879568577, 0.013150572776794434, -0.004237342160195112, 0.008799963630735874, 0.010391508229076862, -0.012987933121621609, 0.035780712962150574, -0.0007645513396710157, -0.03150561451911926, -0.030994459986686707, 0.005750471260398626, -0.00202137790620327, -0.029228659346699715, 0.009183328598737717, 0.008707026951014996, -0.03429372236132622, 0.062128327786922455, -0.05618036538362503, -0.051626455038785934, 0.021201232448220253, -0.006029282230883837, 0.0009221084183081985, -0.0019792658276855946, -0.04416826739907265, -0.02862456999719143, 0.025743525475263596, 0.0032847390975803137, -0.02001628838479519, 0.020875953137874603, 0.017042307183146477, 0.028926614671945572, -0.02513943426311016, 0.020748166367411613, -0.018506063148379326, 0.013115721754729748, 0.030018622055649757, -0.0117390938103199, 0.021967962384223938, 0.0025993292219936848, -0.004986646119505167, 0.004452258814126253, 0.01006042119115591, -0.009595735929906368, -0.02164268307387829, -0.023489804938435555, -0.04837366193532944, 0.012825294397771358, 0.0022261294070631266, 0.011146620847284794, 0.027671964839100838, -0.003944010008126497, -0.03348052129149437, -0.02178208902478218, 0.017077157273888588, 0.017925206571817398, -0.031017694622278214, -0.0025601214729249477, -0.011338303796947002, 0.002647249959409237, -7.650959014426917e-05, 0.018761638551950455, -0.033015839755535126, -0.026742596179246902, 0.002625467721372843, -0.009857120923697948, 0.028554866090416908, -0.013894068077206612, 0.015613401308655739, -0.0394517183303833, 0.03238851577043533, -0.0177741851657629, 0.03296937048435211, -0.045469384640455246, 0.0037697535008192062, 0.036175694316625595, -0.024140363559126854, 0.00397886149585247, 0.009206563234329224, 0.007127099670469761, -0.002384412568062544, 0.012058564461767673, -0.009868738241493702, 0.009711907245218754, 0.0035780712496489286, -0.022816011682152748, -0.014405221678316593, -0.038777925074100494, -0.014974460005760193, -0.003984670154750347, -0.009886164218187332, 0.014219347387552261, -0.016484685242176056, 0.022026048973202705, 0.03664037957787514, -0.018540913239121437, -0.007475612685084343, 0.0005093378713354468, 0.039335548877716064, 0.01004299521446228, 0.004423215985298157, -0.049674779176712036, -0.039405252784490585, -0.010618042200803757, -0.01147770881652832, 0.03605952113866806, -0.03396844118833542, -0.01568310335278511, -0.04056696221232414, -0.00462942011654377, -0.00862570758908987, 0.016112936660647392, 0.01617102324962616, -0.005384532269090414, 0.023327164351940155, 0.020875953137874603, 0.004417407792061567, -0.02268822304904461, -0.032458215951919556, 0.015392675995826721, 0.024140363559126854, -0.03320171311497688, 0.009427287615835667, -0.002170948078855872, -0.0036042097490280867, 0.015462378971278667, 0.005701098591089249, 0.009793227538466454, 0.014207730069756508, 0.012337375432252884, 0.003461899934336543, 0.002355369972065091, 0.012174735777080059, -0.008765112608671188, -0.027462856844067574, -0.024117128923535347, -0.007800891995429993, -0.026905236765742302, -0.002022830070927739, 0.03817383572459221, 0.022479115054011345, -0.005041827447712421, 0.005529746413230896, -0.010066228918731213, -0.005018593277782202, 0.033434055745601654, 0.009601544588804245, 0.041589267551898956, 0.020399652421474457, -0.005849217064678669, 0.010019760578870773, -0.009369202889502048, -0.031064163893461227, 0.01809946447610855, -0.005253839772194624, -0.0446794219315052, 0.026092037558555603, 0.01062965951859951, 0.003885924583300948, -0.030762117356061935, 0.0030698224436491728, -0.007713763974606991, -0.00859085563570261, 0.020620377734303474, -0.03798796236515045, -0.016902901232242584, -0.01406832505017519, -0.004222820978611708, -0.019632922485470772, -0.00027463585138320923, 0.0030088324565440416, 0.0019589357543736696, -0.018413126468658447, -0.01200047880411148, -0.006180304568260908, 0.01862223446369171, -0.04423797130584717, -0.02520913816988468, 0.0008429668378084898, 0.01577604003250599, 0.01694936864078045, 0.0010999954538419843, 0.02145680971443653, 0.004582951311022043, 0.022502349689602852, -0.008201682940125465, -0.0031191951129585505, 0.010728404857218266, -0.013626874424517155, -0.021770471706986427, -0.004623611457645893, -0.04344800487160683, -0.0020838198252022266, 0.012163118459284306, 0.009508607909083366, 0.023908020928502083, 0.03022773005068302, 0.0039004459977149963, -0.0060350908897817135, -0.027625497430562973, 5.2186253014951944e-05, 0.033341117203235626, 0.0035577411763370037, 0.004100841470062733, 0.0012626351090148091, 0.004521961789578199, -0.024140363559126854, -0.036338333040475845, -0.012267672456800938, 0.003938201814889908, 0.0009039567084982991, 0.0228276289999485, 0.033434055745601654, 0.00491403928026557, 0.03387550637125969, 0.004574238788336515, -0.044656187295913696, 0.019121769815683365, -0.02223515696823597, -0.028090182691812515, 0.019702626392245293, -0.014103176072239876, -0.04379652068018913, -0.001290951855480671, 0.03417754918336868, 0.00630228454247117, -0.008439833298325539, -0.005004072096198797, 0.001870355335995555, -0.01878487318754196, -0.030204497277736664, 0.02106182835996151, 0.007324590347707272, 0.023977722972631454, -0.006151261739432812, 0.00530611677095294, 0.0316217839717865, 0.007010928355157375, 0.012999550439417362, 0.006145453546196222, -0.004777538124471903, 0.07072499394416809, -0.012500015087425709, -0.0077428063377738, 0.03482810780405998, -0.025743525475263596, 0.059711966663599014, -0.0010186757426708937, -0.009578310884535313, 0.01972585916519165, -0.03768591955304146, -0.024117128923535347, -0.026719361543655396, -0.011326686479151249, -0.020167309790849686, -0.012035329826176167, -0.01147770881652832, 0.0028578101191669703, 0.043308600783348083, 0.01036827452480793, -0.022746309638023376, 0.003676816588267684, 0.0024802538100630045, 0.0436803475022316, 0.011779753491282463, -0.029228659346699715, 0.00860828161239624, -0.0018877810798585415, -0.003026258200407028, 0.019900117069482803, 0.025162668898701668, 0.019377347081899643, -0.00015174855070654303, 0.015148716978728771, -0.019400579854846, 0.022641755640506744, -0.019632922485470772, 0.011930775828659534, 0.043471239507198334, -0.018691936507821083, 0.008950985968112946, 0.018959131091833115, -0.023454952985048294, 0.03273702785372734, -0.03659391030669212, 0.008230725303292274, 0.019063685089349747, 0.002410551067441702, 0.00661013787612319, 0.007353633176535368, -0.014533009380102158, 0.04602700471878052, -0.015590166673064232, -0.01061223354190588, -0.04149633273482323, 0.0017222372116521, 0.030785351991653442, 0.0003145696537103504, -0.028508398681879044, 0.015961915254592896, -0.03801119700074196, -0.014474923722445965, -0.001532006892375648, 0.025906164199113846, -0.014974460005760193, 0.008404982276260853], [0.02419762872159481, 0.06098074093461037, 0.03212014585733414, -0.00017586925241630524, -0.018153879791498184, 0.03762063384056091, -0.025510502979159355, -0.0025295463856309652, 0.008607247844338417, 0.016750462353229523, -0.01738426461815834, -0.0022069867700338364, 0.024061813950538635, 0.036398302763700485, -0.009127870202064514, 0.021945370361208916, 0.06396865844726562, -0.01961388625204563, -0.0050845579244196415, 0.031237350776791573, 0.016659921035170555, 0.08909435570240021, 0.0010221460834145546, 0.049708131700754166, -0.005732506513595581, -0.002878985833376646, 0.011861138977110386, -0.007916857488453388, 0.054371099919080734, 0.02153792604804039, 0.06894852966070175, -0.02223963476717472, 0.010344542562961578, 0.004589400719851255, -0.017689846456050873, 0.013207966461777687, 0.009303297847509384, -0.0014628360513597727, -0.028724780306220055, -0.0541900135576725, -0.05197170749306679, 0.006468168925493956, 0.027276091277599335, -0.04060855507850647, -0.051156818866729736, 0.06310850381851196, -0.01914985477924347, -0.015426271595060825, 0.015256502665579319, 0.015811078250408173, 0.010253999382257462, 0.03413472697138786, 0.004544129129499197, 0.0066605727188289165, 0.00016782294551376253, -0.02478615753352642, -0.04174034297466278, 0.007973446510732174, -0.006790728308260441, 0.020790945738554, 0.021515291184186935, -0.002962455153465271, -0.0606185682117939, 0.008245076052844524, -0.009042986668646336, -0.01123865507543087, -0.005545761436223984, -0.03454217314720154, -0.026755468919873238, 0.028249429538846016, 0.01910458318889141, 0.015720536932349205, 0.028204157948493958, -0.03399891406297684, -0.02827206626534462, 0.003044509794563055, 0.02278289385139942, 0.035379692912101746, -0.01384176779538393, 0.0017811513971537352, -0.026257483288645744, 0.009778648614883423, -0.009756012819707394, 0.03748482093214989, -0.05572924390435219, 0.033342476934194565, -0.038435522466897964, -0.02158319763839245, -0.0230658408254385, -0.006377625744789839, -0.08565372228622437, -0.026144303381443024, -0.010095549747347832, 0.01910458318889141, -0.02141343057155609, -0.014792470261454582, -0.016829688102006912, 0.013049515895545483, -0.02063249610364437, 0.05170007795095444, 0.024695616215467453, -0.0033133095130324364, -0.008567635901272297, 0.004300794564187527, 0.0230658408254385, -0.08877745270729065, -0.048033084720373154, 0.021243661642074585, -0.02956230379641056, 0.023009251803159714, 0.08683077991008759, -0.02822679467499256, -0.03501752391457558, 0.07519599795341492, -0.05228860676288605, 0.008635543286800385, -0.04597323015332222, 0.04499989375472069, 0.021470019593834877, -0.007560344412922859, -0.026800740510225296, -0.012698661535978317, 0.015596039593219757, -0.04404919221997261, -0.0072660790756344795, -7.626305887242779e-05, 0.005975841078907251, 0.024129720404744148, -0.04226096719503403, -0.0175766684114933, 0.018629230558872223, -0.04024638235569, 0.020530635491013527, -0.03766590729355812, 0.011380128562450409, 0.026257483288645744, 0.007950810715556145, -0.020111873745918274, -0.010933072306215763, -0.005786266643553972, 0.011442377232015133, -0.006524757947772741, 0.021866144612431526, 0.019206443801522255, -0.046856027096509933, 0.002646969398483634, 0.008997715078294277, 0.029426489025354385, -0.002185765653848648, -0.018889542669057846, -0.018346283584833145, 0.0225225817412138, 0.013162694871425629, 0.031780607998371124, 0.006819022819399834, 0.017565350979566574, 0.07017085701227188, 0.04475089907646179, -0.006388943642377853, -0.031305257230997086, 0.008833605796098709, 0.02008923888206482, -0.016614649444818497, -0.04393601045012474, 0.007611274719238281, -0.008816628716886044, 0.006473827641457319, -0.009275003336369991, 0.0029907498974353075, -0.024061813950538635, -0.034677986055612564, 0.011187724769115448, -0.007418870460242033, -0.016558058559894562, -0.05867189168930054, 0.0064398739486932755, 0.03141843527555466, -0.00010610512981656939, -0.017723800614476204, 0.034202635288238525, 0.04475089907646179, 0.0536467544734478, -0.06188616901636124, -0.006315377540886402, -0.029788661748170853, 0.024718251079320908, -0.05486908555030823, -0.004708238411694765, -0.0287021454423666, 0.011793231591582298, 0.014815106056630611, -0.012823158875107765, 0.017882252112030983, 0.015652628615498543, 0.00035403744550421834, 0.004184786230325699, -0.003638698486611247, -0.002836543833836913, 0.05450691282749176, -0.009557950310409069, 0.01411339733749628, -0.00760561553761363, -0.016784416511654854, 0.05228860676288605, -0.035696595907211304, 0.008154532872140408, 0.03390837088227272, 0.027434542775154114, 0.016195887699723244, 0.0025705737061798573, 0.03277658298611641, 0.022330177947878838, -0.02580476738512516, 0.017169224098324776, 0.020496681332588196, 0.01223462913185358, 0.018391555175185204, -0.0056900642812252045, 0.042034607380628586, -0.014226575382053852, -0.018142562359571457, -0.007860268466174603, 0.005817390512675047, -6.260202644625679e-05, -0.032482318580150604, -0.0057721189223229885, -0.028634237125515938, 0.008188487030565739, 0.0023555338848382235, -0.0029879205394536257, -0.021209707483649254, -0.019704429432749748, 0.006649254821240902, -0.0305809136480093, 0.020960714668035507, 0.01821047067642212, 0.024152357131242752, -0.01266470830887556, -0.03397627919912338, 0.04590532183647156, 0.006954837590456009, 0.028883231803774834, -0.03990684822201729, -0.005823049694299698, -0.025623681023716927, -0.008748721331357956, -0.02634802646934986, -0.010372837074100971, 0.0380733497440815, 0.005735335871577263, 0.0019042333588004112, 0.022896071895956993, 0.010921754874289036, 0.0005673087434843183, 0.00016755767865106463, -0.006688867229968309, -0.002013168064877391, 0.008013059385120869, 0.0262801181524992, -0.025714224204421043, -0.033455654978752136, 0.049164872616529465, -0.03261813148856163, -0.0010320491855964065, -0.05016084760427475, 0.0033585811033844948, 0.013468277640640736, -0.02838524430990219, 0.01045206282287836, 0.0009216999169439077, -0.01311742328107357, -0.011770595796406269, 0.02381282113492489, -0.024446621537208557, -0.09688105434179306, 0.004054630640894175, 0.01552813220769167, 0.0036924586165696383, -0.004507346078753471, -0.003966917283833027, -0.0018929155776277184, -0.02424290031194687, 0.044501908123493195, -0.03920513764023781, -0.02784198522567749, 0.018063336610794067, 0.03657938912510872, 0.006705844309180975, 0.017633257433772087, -0.009184460155665874, 0.046493854373693466, 0.0051666125655174255, 0.03705473989248276, -0.021051257848739624, 0.017848297953605652, -0.007226466666907072, -0.004504516255110502, 0.009659810923039913, -0.070804663002491, -0.06686604022979736, -0.0654626190662384, 0.010542606003582478, 0.02048536390066147, -0.019953424111008644, -0.0026045271661132574, 0.006417238153517246, 0.037100013345479965, -0.0006652791635133326, -0.0455884225666523, -0.013106105849146843, 0.00842050276696682, -0.03617194667458534, -0.004702579230070114, -0.05781173333525658, 0.031078899279236794, 0.01577712595462799, -0.031078899279236794, -0.012642072513699532, 0.0370321050286293, 0.005438241641968489, 0.057585377246141434, 0.010859506204724312, 0.04703710973262787, -0.03974839672446251, 0.0020244859624654055, -0.03605876863002777, -0.00750941364094615, 0.022058548405766487, -0.028181523084640503, -0.04758036881685257, -0.03834497928619385, -0.011029274202883244, 0.03196169435977936, 0.010050278156995773, 0.02309979498386383, -0.017406899482011795, -0.0011317880125716329, -0.005542932078242302, -0.03671520575881004, 0.012064860202372074, 0.04135553538799286, -0.021005986258387566, 0.05332985147833824, 0.0429174043238163, -0.016976820304989815, -0.01407944317907095, -0.01985156163573265, 0.005907933693379164, 0.013015562668442726, 0.02526151016354561, -0.03341038152575493, 0.0034745894372463226, -0.038820330053567886, -0.0007002938655205071, -0.047399282455444336, -0.050885189324617386, -0.0016481663333252072, 0.03470062091946602, 0.016592012718319893, 0.0015802590642124414, -0.028770051896572113, -0.014147350564599037, -0.008545000106096268, 0.02392599917948246, 0.08325432986021042, 0.026619654148817062, -0.029222767800092697, -0.03927304595708847, 0.05156426504254341, -0.013162694871425629, 0.03653411939740181, -0.012144085951149464, -0.022409403696656227, -0.04576950892806053, -0.021673740819096565, 0.026868648827075958, -0.011312221176922321, -0.022533901035785675, 0.04468299075961113, -0.04257786646485329, 0.025827404111623764, -0.029743390157818794, -0.017440853640437126, 0.0072660790756344795, -0.015165959484875202, 0.0075773210264742374, -0.034632712602615356, -0.04205724224448204, -0.00045908152242191136, -0.02236413210630417, 0.006768092513084412, 0.04110654070973396, 0.010287953540682793, 0.015912940725684166, -0.04839525744318962, 0.018470780923962593, 0.00023254707048181444, 0.04789727181196213, 0.017678529024124146, -0.0023484602570533752, 0.007141582667827606, -0.01781434379518032, -0.004776145797222853, 0.040427468717098236, 0.017361627891659737, -0.013038198463618755, 0.018040701746940613, 0.0206438135355711, -0.0028577649500221014, -0.0509757325053215, 0.01910458318889141, -0.018731093034148216, 0.0023357276804745197, 0.022579170763492584, -0.01934225857257843, -0.018855588510632515, 0.026166940107941628, -0.011680052615702152, -0.01027663517743349, -0.04730873927474022, 0.009829578921198845, 0.01102361548691988, 0.010876483283936977, 0.0606185682117939, 0.02483142912387848, -0.021039940416812897, 0.005902274511754513, -0.03121471405029297, 0.033885736018419266, -0.0606185682117939, -0.03155425190925598, 0.042464688420295715, -0.00407160772010684, 0.04730873927474022, -0.03042246215045452, 0.007611274719238281, -0.05188116431236267, -0.027864621952176094, -0.022183045744895935, 0.030535642057657242, 0.00166655785869807, -0.00922407303005457, 0.003768854308873415, 0.021288933232426643, 0.027027098461985588, -0.02865687385201454, -0.03556077927350998, -0.002706388244405389, 0.01684100553393364, -0.04475089907646179, 0.025555774569511414, 0.011323539540171623, -0.0006461802404373884, 0.00608901958912611, 0.028249429538846016, -0.023360105231404305, -0.017825661227107048, -0.06211252883076668, 0.005593862384557724, -0.037688542157411575, 0.053465668112039566, 0.04413973540067673, -0.004371531307697296, 0.019670477136969566, -0.04538470134139061, -0.01507541723549366, 0.047082383185625076, -0.006038089282810688, 0.03560605272650719, -0.07193645089864731, 0.00455261766910553, -0.03325193375349045, 0.010916096158325672, 0.021390793845057487, 0.039522040635347366, 0.02099466882646084, 0.04076700657606125, 0.008658178150653839, 0.0032850147690624, 0.00739057594910264, 0.011578192003071308, 0.05627250298857689, -0.06374230235815048, -0.04026901721954346, 0.01129524502903223, 0.07551290094852448, -0.010870824567973614, 0.03302557393908501, -0.006705844309180975, -0.01341168861836195, -0.019161172211170197, -0.00984655600041151, -0.002284797141328454, -0.009246708825230598, 0.02881532348692417, -0.04780672863125801, -0.0324370451271534, -0.03841288760304451, 0.047987814992666245, -0.019670477136969566, 0.04470562934875488, -0.06826945394277573, -0.0071585592813789845, -0.040744371712207794, -0.01509805303066969, 0.0024602243211120367, 0.03105626441538334, -0.009688105434179306, -0.004795951768755913, 0.01895744912326336, 0.028023071587085724, -0.019704429432749748, 0.009388182312250137, -0.01907062903046608, -0.017904886975884438, -0.05749483406543732, 0.025148330256342888, 0.043483298271894455, -0.01844814606010914, 0.01023702323436737, 0.030829906463623047, -0.005342039745301008, 0.020813582465052605, 0.019568614661693573, -0.04110654070973396, -0.021662423387169838, 0.025940582156181335, -0.05170007795095444, 0.039997391402721405, -0.009507020004093647, -0.005455218255519867, 0.016161933541297913, -0.0383676141500473, 0.013966264203190804, -0.03128262236714363, 0.005537272896617651, -0.02236413210630417, 0.004784633871167898, -0.016320383176207542, -0.032165415585041046, 0.04898378625512123, -0.012279900722205639, -0.01090477779507637, -0.006943519692867994, 0.034519534558057785, 0.0025196431670337915, 0.015596039593219757, 0.026755468919873238, -0.014396344311535358, -0.02360909804701805, -0.005121340975165367, -0.046856027096509933, -0.0006122266058810055, -0.020338231697678566, -0.015460224822163582, 0.01644488051533699, 0.018617913126945496, -0.001567526487633586, -0.0023456306662410498, 0.0016396779101341963, -0.0020089237950742245, -0.016727827489376068, -0.02271498553454876, 0.03642094135284424, 0.009569267742335796, 0.02365436963737011, -0.03223332390189171, -0.012766568921506405, -0.024740885943174362, 0.013819132000207901, -0.004082925617694855, -0.05604614317417145, 0.04893851652741432, -0.03866187855601311, 0.029358582571148872, -0.008296006359159946, 0.03723582625389099, -0.048576343804597855, 0.005687234923243523, 0.046109046787023544, -0.009897486306726933, 0.016388291493058205, 0.009275003336369991, -0.006954837590456009, -0.00787158589810133, -0.007911198772490025, -0.0008955273078754544, -0.0167617816478014, -0.01225726492702961, -0.019296986982226372, 0.008522364310920238, -0.014498204924166203, 0.03723582625389099, -0.012098814360797405, 0.011951682157814503, 0.027502449229359627, 0.019919469952583313, 0.000969800865277648, -0.02634802646934986, 0.02788725681602955, 0.010248340666294098, -0.003548155538737774, -0.012766568921506405, -0.013717271387577057, -0.0012916531413793564, 0.0011211775708943605, 0.029200131073594093, 0.00015924611943773925, 0.022307543084025383, 0.016229839995503426, -0.036126673221588135, 0.02720818482339382, 0.01773511804640293, -0.017769072204828262, 0.005514637101441622, -0.03814125806093216, -0.0005266351508907974, -0.0051100230775773525, 0.007300032768398523, 0.005308086052536964, -0.009071281179785728, -0.0010730765061452985, -0.004462074488401413, -0.014283165335655212, -0.027864621952176094, 0.010367178358137608, -0.013558820821344852, -0.032006967812776566, 0.024152357131242752, 0.0026696049608290195, -0.031576886773109436, -0.02196800522506237, -0.0012216237373650074, -0.024174991995096207, 0.002185765653848648, 0.005401458591222763, 0.0020655132830142975, -0.009308956563472748, -0.024967243894934654, 0.021334204822778702, -0.00599281769245863, 0.03954467549920082, -0.01204222533851862, -0.038005441427230835, 0.00902600958943367, 0.020191099494695663, 0.00760561553761363, 0.015811078250408173, 0.00705669866874814, -0.011759277433156967, 0.046109046787023544, 0.06369703263044357, -0.07193645089864731, -0.04377756267786026, 0.009739035740494728, -0.008793992921710014, -0.048576343804597855, 0.011346175335347652, -0.022681033238768578, 0.01801806502044201, -0.008663837797939777, -0.000549978285562247, 0.012279900722205639, -0.003949940204620361, 0.00202165637165308, 0.0007130265003070235, 0.029743390157818794, -0.002324409782886505, -0.003944281488656998, -0.03990684822201729, 0.016818370670080185, -0.015414953231811523, -0.00551180774345994, -0.03207487240433693, 0.048847973346710205, -0.024129720404744148, -0.004419632256031036, 0.02467297948896885, -0.03418000042438507, 0.03015083447098732, 0.006338012870401144, -0.03700947016477585, -0.04088018462061882, -0.021549245342612267, -0.0013581456150859594, 0.0010263902368023992, -0.0348590724170208, -0.011804549023509026, -0.023428013548254967, 0.04146871343255043, 0.004733703564852476, 0.009614539332687855, 0.04024638235569, -0.017293721437454224, -0.026031125336885452, 0.029041681438684464, 0.004051801282912493, 0.030648820102214813, -0.003440635744482279, -0.025736860930919647, 0.011266950517892838, 0.013875721953809261, -0.05862662196159363, -0.013151377439498901, -0.030128197744488716, -0.032482318580150604, 0.03884296491742134, 0.032210689038038254, 0.041446078568696976, -0.014611383900046349, 0.02287343703210354, 0.038548700511455536, -0.027117641642689705, 0.012121450155973434, -0.031848516315221786, 0.007854608818888664, 0.008646860718727112, -0.012313853949308395, -0.00890717189759016, 0.015686582773923874, -0.022250954061746597, 0.03159952163696289, -0.02929067425429821, -0.004597888793796301, -0.020507998764514923, 0.011272609233856201, -0.020609861239790916, 0.01338905282318592, -0.020734356716275215, -0.009388182312250137, 0.02745717763900757, 0.004634672310203314, 0.0014656655257567763, 0.013909675180912018, -0.037371642887592316, 0.012755251489579678, 0.023541191592812538, -0.008895854465663433, 0.035696595907211304, 0.012438350357115269, 0.019047992303967476, -0.0015364022692665458, 0.036126673221588135, -0.036828383803367615, 0.005452388897538185, 0.05070410296320915, -0.0525602363049984, 0.009450430050492287, -0.020824899896979332, 0.01386440359055996, -0.04477353394031525, 0.006360648665577173, -0.02201327681541443, 0.015550768002867699, 0.028362609446048737, -0.06025639548897743, -0.01687495969235897, 0.010633149184286594, -0.010486016049981117, -0.023722277954220772, 0.00416215043514967, 0.010876483283936977, -0.022737622261047363, -0.019353576004505157, 0.02314506657421589, -0.00257481774315238, -0.013705953024327755, 0.019828926771879196, -0.012189357541501522, -0.013321145437657833, -0.059305693954229355, -0.022963980212807655, 0.012913702055811882, 0.0007441506604664028, 0.022216999903321266, 0.008816628716886044, -0.006100337486714125, -0.011425400152802467, 0.02067776769399643, -0.0009266514680348337, 0.008946784771978855, 0.0014656655257567763, -0.004903471563011408, 0.07039722055196762, 0.01333246286958456, -0.012596800923347473, -0.0124723045155406, 0.026597019284963608, 0.010882141999900341, -0.009557950310409069, -0.012619436718523502, -0.011210360564291477, -0.010893460363149643, -0.014362390153110027, -0.02666492573916912, -0.042781587690114975, 0.014577429741621017, -0.047399282455444336, -0.06242942810058594, 0.043007947504520416, -0.0038735445123165846, 0.02541995979845524, -0.0017443683464080095, -0.01762194000184536, 0.061614543199539185, 0.03954467549920082, -0.040472742170095444, 0.007181195076555014, -0.0007236370001919568, 0.012211993336677551, 0.023903364315629005, -0.0016227010637521744, 0.059577323496341705, 0.0016453368589282036, -0.003265208564698696, -0.0053844815120100975, -0.03026401251554489, -0.02360909804701805, 0.01825574040412903, -0.009874850511550903, 0.013524867594242096, 0.005367504898458719, -0.0004629720642697066, 0.01860659569501877, 0.025238873437047005, -0.01550549641251564, -0.00750941364094615, 0.01746349036693573, -0.0024772011674940586, -0.012834476307034492, 0.0039725759997963905, -0.015573403798043728, -0.020926760509610176, 0.00046367940376512706, -0.039408858865499496, 0.014769834466278553, 0.005282620899379253, 0.015731854364275932, 0.022896071895956993, 0.006377625744789839, 0.017090000212192535, 0.0025705737061798573, -0.002796931192278862, -4.303889363654889e-05, -0.042238328605890274, 0.012064860202372074, -0.022726304829120636, -0.02032691426575184, -0.0031152465380728245, 0.036081403493881226, -0.027389271184802055, 0.018267059698700905, -0.00753770861774683, -0.007356622256338596, 0.030671456828713417, -0.025872675701975822, -0.012404397130012512, -0.00275590387172997, -0.014260529540479183, 0.006943519692867994, -0.0042781587690114975, 0.0012485036859288812, -0.029471760615706444, -0.01660333015024662, -0.009484384208917618, -0.038707152009010315, 0.0186405498534441, -0.0024206116795539856, -0.024061813950538635, -0.01805201917886734, 0.03775645047426224, 0.0010674175573512912, 0.014260529540479183, -0.02591794729232788, -0.008641202002763748, 0.01692023128271103, 0.007611274719238281, -0.025125695392489433, 0.019647840410470963, 4.392310438561253e-05, -0.008986396715044975, 0.02435607835650444, 0.06473827362060547, -0.0002610186056699604, -0.0030869520269334316, -0.016275111585855484, -0.024650344625115395, 0.015347045846283436, 0.002086734166368842, 0.006168244872242212, -0.007611274719238281, 0.010078572668135166, 0.008392208255827427, -0.026619654148817062, -0.004917619284242392, -0.013773860409855843, 0.029517032206058502, -0.014611383900046349, 0.00666623143479228, 0.025238873437047005, -0.03947676718235016, 0.017010774463415146, -0.02255653589963913, -0.01174796000123024, -0.0001962944952538237, -0.002079660538583994, -0.0014409077120944858, -0.023858092725276947, 0.05509544163942337, -0.007984764873981476, -0.015381000004708767, 0.005712700076401234, -0.024582436308264732, -0.019285667687654495, 0.043754927814006805, -0.016343019902706146, -0.024378715083003044, -0.0008212536922656, -0.018334966152906418, 0.00810926128178835, 0.03868451714515686, -0.012098814360797405, -0.016818370670080185, 0.026212211698293686, 0.04542997106909752, 0.017712483182549477, -0.019512025639414787, 0.005299597512930632, -0.006400261539965868, -0.02032691426575184, -0.020700404420495033, 0.055276528000831604, -0.020621178671717644, 0.002301773987710476, -0.00019859343592543155, -0.028204157948493958, -0.017044728621840477, 0.02024768851697445, 0.018787682056427002, -0.0009606051025912166, -0.004133855924010277, -0.023269562050700188, -0.014837740920484066, -0.004733703564852476, 0.02365436963737011, 0.02251126430928707, -0.005183589179068804, 0.027479814365506172, 0.047444555908441544, 0.02013450860977173, 0.0039725759997963905, 0.0021093699615448713, 0.02933594584465027, 0.015188595280051231, -0.020066602155566216, -0.04020111262798309, -0.004612036515027285, 0.018267059698700905, -0.004402655642479658, -0.03144107386469841, -0.024423986673355103, -0.005308086052536964, 0.015143324621021748, -0.010599195025861263, 0.04339275509119034, 0.020213734358549118, 0.034089457243680954, 0.004660137463361025, 0.004790293052792549, -0.014905648306012154, 0.011091522872447968, -0.05269605293869972, 0.04017847776412964, 0.02607639692723751, -0.04542997106909752, 0.03169006481766701, 0.01647883467376232, -0.04511307179927826, -0.01204222533851862, -0.009252367541193962, -0.03644357621669769, 0.044660355895757675, 0.026913920417428017, 0.02745717763900757, -0.0046912613324820995, 0.041604530066251755, 0.014260529540479183, 0.005093046464025974, -0.0031322233844548464, 0.00466862553730607, -0.0035821092315018177, 0.017599305137991905, -0.053737297654151917, 0.03678311035037041, 0.005387311335653067, 0.006683208514004946, 0.03610403835773468, 0.05980367958545685, 0.017180543392896652, 0.009829578921198845, 0.009110894054174423, -0.024423986673355103, -0.036624662578105927, 0.009569267742335796, -0.004643160384148359, -0.000577211903873831, 0.05328458175063133, 0.01596952974796295, 0.010101208463311195, -0.017101317644119263, -0.006434215232729912, -0.024265535175800323, 0.0014656655257567763, 0.002308847615495324, -0.0029256721027195454, -0.050613563507795334, 0.010893460363149643, -0.04307585209608078, -0.008833605796098709, 0.02944912575185299, 0.010406791232526302, -0.0009634345769882202, 0.049979761242866516, 0.008669496513903141, 0.012845794670283794, 0.020111873745918274, 0.0037575364112854004, 0.010802917182445526, 0.009823920205235481, 0.0351533368229866, -2.9289436497492716e-05, -0.0182444229722023, -0.03175797313451767, -0.020541952922940254, 0.022658396512269974, 0.02729872800409794, 0.02768353559076786, -0.0040037003345787525, -0.013671999797224998, 0.032753948122262955, -0.04871215671300888, 0.0009125040960498154, -0.0407896414399147, 0.015958212316036224, 0.005806072615087032, -0.01801806502044201, -0.04072173312306404, 0.00878833420574665, 0.030603548511862755, -0.0019848733209073544, 0.021153118461370468, 0.024378715083003044, -0.06319904327392578, 0.03578713908791542, 0.013694635592401028, 0.002894548000767827, -0.005857003387063742, 0.017372947186231613, 0.00945608876645565, -0.026846012100577354, 0.015188595280051231, -0.01220067497342825, -0.03472325578331947, 0.00635498994961381, 0.011244314722716808, 0.02322429046034813, -0.027276091277599335, -0.006734138820320368, 0.004170638974756002, -0.042940039187669754, 0.001963652204722166, -0.020847536623477936, 0.024129720404744148, -0.013207966461777687, 0.031192079186439514, -0.020191099494695663, -0.048893243074417114, -0.004167809616774321, -0.021605834364891052, -0.00029567963792942464, 0.0031378823332488537, -0.0020527804736047983, 0.012313853949308395, 0.001080857589840889, -0.011883774772286415, 0.003969746641814709, -0.006270105950534344, 0.03331984207034111, -0.01848209835588932, -0.011040592566132545, -0.029924476519227028, 0.03073936328291893, -0.004730874206870794, -0.01993078738451004, -0.00705669866874814, 0.018142562359571457, 0.004750680178403854, -0.04839525744318962, -0.0020471217576414347, -0.014543476514518261, 0.01478115189820528, -0.007865927182137966, -0.041174449026584625, 0.01509805303066969, 0.014396344311535358, -0.02585003897547722, 0.02827206626534462, 0.03227859362959862, -0.0015604527434334159, -0.01507541723549366, -0.005732506513595581, 0.0037631953600794077, 0.0004650941409636289, -0.03171269968152046, 0.0021716183982789516, 0.005426923744380474, -0.001376537256874144, 0.03841288760304451, -0.030920449644327164, -0.012970291078090668, -0.038593973964452744, -0.013434324413537979, 0.01758798584342003, 0.011114158667623997, 0.009161824360489845, 0.0036330395378172398, -0.0002086734166368842, -0.010005006566643715, 0.002103711012750864, -0.05106627568602562, -0.018742410466074944, 0.005975841078907251, -0.012494940310716629, -0.0059701818972826, -0.0003575742885004729, -0.015878986567258835, -0.005115681793540716, -0.051473721861839294, -0.030060291290283203, 0.018301011994481087, 0.02087017148733139, -0.014169986359775066, 0.003545326180756092, -0.00830166507512331, 0.006156926974654198, -0.0026950703468173742, -0.02784198522567749, 0.06605114787817001, 0.025940582156181335, -0.041649799793958664, 0.008658178150653839, -0.002310262294486165, 0.013671999797224998, 0.020077919587492943, 0.04848580062389374, -0.005622157361358404, 0.012970291078090668, 0.007781042717397213, 0.0033189684618264437, 0.02505778707563877, 0.04239678010344505, -0.02376754954457283, 0.01828969456255436, -0.020055284723639488, -0.002260746667161584, 0.010491675697267056, -0.007899880409240723, 0.02709500677883625, -0.03458744287490845, 0.00029585647280327976, -0.01499619148671627, 0.010859506204724312, 0.004317771643400192, 0.02317901886999607, 0.029381217435002327, -0.023405376821756363, -0.023201655596494675, 0.01550549641251564, 0.04008793458342552, 0.0008205463527701795, -0.029652846977114677, -0.004323430359363556, 0.0019197955261915922, -0.02462770789861679, -0.023631734773516655, 0.017101317644119263, 0.008556317538022995, -0.01647883467376232, 0.012619436718523502, -0.02196800522506237, 0.00567874638363719, 0.006468168925493956, 0.006360648665577173, -0.038752421736717224, -0.027162913233041763, 0.011300903744995594, 0.015562085434794426, 0.012381761334836483, -0.04635803773999214, -0.0156979002058506, -0.012845794670283794, -0.00452432269230485, 0.041446078568696976, -0.016942868009209633, -0.005975841078907251, -0.009365546517074108, 0.021390793845057487, -0.013400370255112648, -0.00947872456163168, -0.02212645672261715, 0.010587877593934536, -0.0011445207055658102, 0.02940385416150093, -0.010367178358137608, -0.024107085540890694, 0.0329803042113781, -0.0058343675918877125, 0.011266950517892838, -0.0023880728986114264, 0.023563826456665993, 0.01429448276758194, 0.004088584333658218, 0.023631734773516655, -0.03755272924900055, -0.01566394604742527, 0.009054304100573063, 0.027162913233041763, 0.0007179780513979495, -0.03187115117907524, -0.0046912613324820995, 0.014407661743462086, -0.002137664705514908, -0.0030388508457690477, -0.020100556313991547, -0.01668255589902401, 0.02381282113492489, -0.014701927080750465, 0.01919512450695038, -0.02303188666701317, -0.022703668102622032, -0.03094308450818062, 0.00279410183429718, 0.01770116575062275, -0.01656937785446644, 0.03508542850613594, 0.0410386361181736, 0.005789096001535654, 0.01027663517743349, -0.022069867700338364, -0.01582239754498005, 0.010706715285778046, -0.040427468717098236, 0.005780607461929321, -0.005653281230479479, 0.027547720819711685, -0.031101536005735397, -0.0019353575771674514, -0.027389271184802055, -0.031124170869588852, -0.01389835774898529, -0.02725345641374588, -0.001929698628373444, -0.03261813148856163, 0.037575364112854004, -0.01652410626411438, -0.025397323071956635, 0.01151028461754322, 0.033659376204013824, -0.0186405498534441, 0.012574165128171444, 0.001460006576962769, -0.019987376406788826, -0.007034062873572111, -0.016659921035170555, -0.02956230379641056, 0.007713135797530413, 0.0029228427447378635, -0.0013340951409190893, 0.019217761233448982, 0.019828926771879196, 0.006213516462594271, -0.013705953024327755, 0.011612145230174065, 0.008482751436531544, 0.03481379896402359, 0.017984112724661827, 0.014498204924166203, 0.00951267872005701, 0.00526847317814827, -0.007843291386961937, -0.024310806766152382, 0.006213516462594271, 0.013049515895545483, -0.04459244757890701, 0.0013107520062476397, -0.0434606596827507, -0.01090477779507637, -0.020881488919258118, 0.04022374749183655, -0.04296267405152321, -0.0046969205141067505, -0.02259049005806446, 0.029426489025354385, -0.021130483597517014, 0.0026851671282202005, 0.026189574971795082, 0.0009797040838748217, -0.0007597127114422619, 0.022035913541913033, 0.007107628975063562, -0.02569158934056759, 0.03501752391457558, 0.030286649242043495, 0.0026413104496896267, -6.565255171153694e-05, 0.00908259954303503, -0.01606007292866707, -0.0335235632956028, 0.008126238361001015, 0.021560562774538994, -0.009625857695937157, 0.008375231176614761, -0.03175797313451767, 0.04404919221997261, 0.018923496827483177, -0.03270867466926575, -0.01108020544052124, -0.008952443487942219, 0.021503973752260208, 0.0466749407351017, -0.02360909804701805, -0.03454217314720154, -0.01172532420605421, -0.011974317952990532, -0.016161933541297913, 0.02505778707563877, -0.029109587892889977, -0.03336511179804802, -0.015414953231811523, 0.005913592409342527, 0.001266895211301744, 0.02338274195790291, -0.0305809136480093, -0.0014854718465358019, 0.028928503394126892, 0.028294701129198074, -0.013615409843623638, -0.026302754878997803, 0.004962890408933163, -0.00258896523155272, 0.0015208402182906866, 0.006066383793950081, -0.00041027317638508976, 0.0225225817412138, -0.0006663402309641242, -0.00959756225347519, 0.009405158460140228, 0.007350963540375233, 0.006643596105277538, 3.457258935668506e-05, 0.0223980862647295, 0.018142562359571457, 0.02784198522567749, 0.03121471405029297, 0.02553313784301281, 0.007979106158018112, 0.0018915007822215557, -0.04006529599428177, 0.02822679467499256, 0.035062793642282486, 0.003471759846433997, -0.02784198522567749, 0.027049735188484192, -0.03171269968152046, -0.0019495049491524696, 0.025306781753897667, 0.0010002177441492677, 0.04529415816068649, -0.019681794568896294, -0.01029927097260952, -0.0007639569230377674, 0.03250495344400406, -0.03571923077106476, 0.003531178692355752, 0.013072151690721512, -0.003811296308413148, -0.012121450155973434, 0.0009224072564393282, -0.01292501948773861, -0.015641311183571815, 0.02309979498386383, 0.005387311335653067, 0.015347045846283436, -0.012189357541501522, -0.031033627688884735, 0.020689085125923157, -0.026846012100577354, -0.0016807052306830883, -0.013638045638799667, 0.010220046155154705, -0.0026837524492293596, 0.02235281467437744, -0.007192512974143028, -0.009127870202064514, -0.009971052408218384, -0.0010815649293363094, -0.044796172529459, -0.013343781232833862, -0.025125695392489433, 0.05998476594686508, 0.020609861239790916, 0.013739907182753086, 0.011804549023509026, -0.00042937209946103394, 0.03316139057278633, -0.005729677155613899, -0.02235281467437744, 0.013739907182753086, 0.003961258102208376, -0.0078489501029253, -0.019987376406788826, -0.027502449229359627, 0.019002720713615417, 0.006615301128476858, -0.016512786969542503, -0.01907062903046608, 0.03743954747915268, 0.014520840719342232, -0.034474264830350876, -0.017769072204828262, 0.01362672820687294, 0.029856568202376366, -0.002211230807006359, 0.030603548511862755, -0.024718251079320908, 0.00608901958912611, -0.03316139057278633, -0.02489933744072914, -0.01668255589902401, 0.0013531941222026944, -0.01598084717988968, 0.017316356301307678, 0.04420763999223709, -0.010723691433668137, 0.022726304829120636, 0.008612907491624355, -0.04017847776412964, -0.010672761127352715, -0.011861138977110386, 0.024265535175800323, -0.004595059435814619, -0.01478115189820528, -0.01111981738358736, -0.008454456925392151, 0.009897486306726933, 0.047670911997556686, -0.010621830821037292, 0.01201958954334259, 0.017882252112030983, 0.001302971038967371, -0.023699641227722168, -0.012132767587900162, 0.029154859483242035, -0.003655675332993269, -0.03633039817214012, 0.054371099919080734, 0.022228317335247993, 0.023699641227722168, 0.011714006774127483, 0.028136251494288445, -0.007599956821650267, 0.101951465010643, -0.0005789803108200431, 0.023699641227722168, 0.0033104801550507545, -0.006841658614575863, -0.0027007292956113815, -0.0034519536420702934, -0.01204222533851862, 0.014418980106711388, -0.021051257848739624, -0.014317118562757969, -0.009925780817866325, -0.03384046256542206, 0.001328436192125082, 0.004911960102617741, 0.00016729242634028196, -0.010123844258487225, 0.004181956872344017, -0.0037575364112854004, -0.018199151381850243, 0.010310589335858822, 0.018742410466074944, 0.045678965747356415, -0.021628469228744507, -0.03678311035037041, -0.0022947003599256277, 0.016965502873063087, 0.012166721746325493, 0.005050604231655598, -0.006400261539965868, 0.02983393333852291, 0.012936337850987911, 0.03078463487327099, -0.0004336163110565394, 0.0011728153331205249, -0.031124170869588852, -0.0035623027943074703, 0.022228317335247993, 0.002696485025808215, 0.052333880215883255, -0.017248449847102165, -0.011929046362638474, 0.025940582156181335, 0.019806290045380592, 0.0033953641541302204, 0.04429818317294121, -0.021232344210147858, -0.024740885943174362, -0.033070847392082214, -0.02192273549735546, 0.013128741644322872, -0.05070410296320915, 0.0030048973858356476, -0.008895854465663433, -0.04029165580868721, -0.009195777587592602, -0.014769834466278553, -0.017961475998163223, 0.0011820110958069563, -0.04146871343255043, -0.015120688825845718, -0.03872978687286377, 0.003836761461570859, -0.007662205025553703, -0.009054304100573063], [0.04565940797328949, 0.04227907210588455, 0.03869989141821861, 0.0027185617946088314, -0.012657622806727886, 0.03855075687170029, -0.01573348231613636, 0.0056856777518987656, 0.04295016825199127, 0.022407162934541702, -0.019026825204491615, 0.02333923988044262, 0.014614987187087536, 0.04565940797328949, -0.0026968130841851234, 0.030224192887544632, 0.01997133158147335, 0.02131352387368679, 0.009625261649489403, 0.03457389026880264, 0.0022121325600892305, 0.02268057130277157, -0.026297034695744514, 0.02233259566128254, -0.0010299464920535684, -0.048816047608852386, 0.00842598732560873, -0.02510397508740425, 0.029851360246539116, -0.018716132268309593, 0.10946327447891235, -0.043596409261226654, 0.038252491503953934, -0.03942069783806801, -0.010824535973370075, 0.007226713467389345, 0.052196383476257324, 0.004244063049554825, 0.01584533043205738, -0.02990107238292694, -0.03651261329650879, -0.03785480558872223, 0.003551218193024397, -0.038351915776729584, -0.011042021214962006, 0.011483204551041126, -0.014987818896770477, -0.008295496925711632, -0.051401011645793915, 0.0011386889964342117, -0.01495053619146347, 0.03855075687170029, 0.022469300776720047, 0.028832288458943367, 0.009469915181398392, 0.04367097467184067, -0.02903113141655922, 0.01964821107685566, 0.05925532430410385, -0.00126840325538069, -0.008848530240356922, -0.009264858439564705, 0.006154823582619429, 0.009215147234499454, -0.04891546815633774, -0.024159468710422516, 0.011079303920269012, 0.03241146728396416, 0.02086612582206726, 0.03278430178761482, 0.02187277004122734, 0.007201858330518007, 0.0012163621140643954, -0.05214667320251465, -0.016702843829989433, 0.02342623472213745, 0.031516674906015396, -0.01088046096265316, 0.012763259001076221, 0.02868315577507019, -0.011713117361068726, 0.05068020522594452, -0.03855075687170029, -0.017460932955145836, 0.043024733662605286, 0.0006349783507175744, -0.04048947989940643, 0.011619909666478634, -0.006133075337857008, -0.001750753726810217, -0.047946106642484665, 0.005955980159342289, -0.01205487921833992, -0.0018284269608557224, -0.008289283141493797, 0.018778270110487938, -0.025166112929582596, 0.01009751483798027, -0.030323613435029984, 0.06303334981203079, 0.01706324703991413, 0.01227236445993185, -0.020741848275065422, -0.04006693884730339, 0.042900457978248596, -0.05393626540899277, -0.020679710432887077, 0.035543251782655716, 0.011998954229056835, -0.002465347060933709, 0.06651310622692108, -0.03840162605047226, -0.0027760397642850876, 0.11145170778036118, -0.027614373713731766, 0.0022804848849773407, -0.001139465719461441, 0.07203101366758347, 0.016715271398425102, -0.0169762521982193, -0.04245305806398392, -0.030174480751156807, 0.03683573380112648, -0.07879168540239334, 0.025973914191126823, 0.02577507123351097, -0.004902731627225876, -0.03507100045681, -0.05234551802277565, 0.001015965361148119, 0.08689454942941666, -0.03807850554585457, 0.06447496265172958, -0.0591559037566185, -0.027166975662112236, 0.007344776764512062, 0.007947521284222603, -0.03335597366094589, -0.016255445778369904, -0.014925680123269558, 0.059205614030361176, 0.04874148219823837, 0.05423452705144882, 0.03780509531497955, -0.048716627061367035, 0.015323366969823837, -0.02311554178595543, 0.004188138525933027, 0.014788975939154625, 0.025601083412766457, 0.004228528589010239, -0.04160797595977783, 0.021388089284300804, -0.014043312519788742, -0.007661683484911919, -0.020928263664245605, 0.008059370331466198, 0.04344727471470833, -0.007512550801038742, 0.045137446373701096, -0.00965011678636074, 0.01664070412516594, -0.06129346787929535, -0.015472499653697014, -0.007593330927193165, -0.01228479202836752, -0.017672203481197357, -0.0029096377547830343, -0.06412698328495026, -0.010072659701108932, -0.023078259080648422, 0.007139719557017088, 0.007437984924763441, -0.07660441100597382, -0.03002534806728363, -0.02679414302110672, 0.030522456392645836, 0.029652517288923264, -0.0319143608212471, 0.009252430871129036, 0.0375068299472332, 0.035568106919527054, -0.07531192898750305, 0.0016979359788820148, -0.052842624485492706, 0.038923587650060654, -0.04717558994889259, -0.002713901223614812, -0.06432583183050156, 0.022357450798153877, 0.005906269419938326, -0.013073951937258244, 0.0016016211593523622, 0.0059497663751244545, 0.00728263845667243, 1.4381676919583697e-05, -0.021723637357354164, 0.009295927360653877, 0.023625077679753304, -0.02766408398747444, 0.03430048003792763, -0.055626433342695236, 0.025725360959768295, 0.015696197748184204, -0.04722530022263527, 0.03802879527211189, 0.010973668657243252, 0.029553094878792763, 0.02970222756266594, 0.020058324560523033, 0.027390673756599426, 0.008860957808792591, -0.023264674469828606, 0.005076719913631678, -0.015049957670271397, -0.00843220204114914, 0.03377851843833923, -0.04754842072725296, -0.015087240375578403, 0.02499212510883808, -0.027490096166729927, -0.05368771031498909, 0.006536975968629122, -0.025949059054255486, -0.04334785416722298, 0.011588839814066887, -0.013658054172992706, -0.018330873921513557, 0.017150240018963814, -0.048940323293209076, -0.02008317969739437, 0.011930601671338081, -0.03579180687665939, 0.007388273719698191, -0.008941737934947014, -0.014416144229471684, 0.003321305615827441, -0.055974408984184265, -0.038327060639858246, -0.0041912454180419445, 0.01864156499505043, 0.0030432355124503374, 0.02922997437417507, -0.016143595799803734, -0.007947521284222603, -0.008997661992907524, 0.004523686598986387, -0.0011883998522534966, 0.028608590364456177, -0.027639228850603104, 0.08361363410949707, 0.01550978235900402, -0.014204872772097588, -0.025203397497534752, -0.019697921350598335, -0.021350806578993797, 0.005387412384152412, -0.005104681942611933, 0.0019061000784859061, -0.05746573209762573, 0.012228867039084435, 0.05209696292877197, 0.027142120525240898, -0.0021515474654734135, -0.08609917759895325, 0.010283930227160454, 0.04252762719988823, 0.005284884013235569, 0.011284361593425274, 0.01874098740518093, -0.03497157618403435, 0.024532301351428032, 0.0223077405244112, -0.040340349078178406, -0.04138427600264549, -0.03188950568437576, 0.004306201823055744, -0.06164144352078438, 0.02010803483426571, -0.0001910760474856943, -0.02925483137369156, -0.012682478874921799, 0.02524068020284176, -0.02813633717596531, -0.004896517843008041, -0.03156638517975807, 0.01277568656951189, 0.01104823499917984, 0.026272179558873177, -0.015223945491015911, 0.06407727301120758, -0.038227636367082596, -0.02241959050297737, 0.013471637852489948, 0.038103360682725906, -0.008755321614444256, -0.02131352387368679, 0.010116156190633774, -0.0328340120613575, -0.013757475651800632, -0.006574258673936129, 0.007761105429381132, 0.0006458525895141065, -0.06318248063325882, 0.017572782933712006, 0.022941553965210915, 0.017100529745221138, 0.008332779631018639, -0.04354669898748398, -0.020518150180578232, 0.06507149338722229, 0.04697674512863159, -0.05055592581629753, -0.08709339797496796, -0.027042698115110397, 0.014664698392152786, -0.03213806077837944, 0.034673310816287994, 0.026371601969003677, 0.039246708154678345, 0.03338082879781723, -0.015410360880196095, 0.003386551048606634, -0.07913965731859207, 0.02466900460422039, -0.015385505743324757, 0.03382822871208191, 0.011818752624094486, -0.024184323847293854, -0.01728694513440132, -0.029751939699053764, 0.005701212212443352, 0.009395348839461803, -0.033877938985824585, 0.010091301053762436, -0.020393872633576393, 0.01550978235900402, 0.021027686074376106, 0.0015845331363379955, -0.02333923988044262, 0.04712587967514992, -0.021798204630613327, -0.014217301271855831, 0.0432981438934803, 0.010955026373267174, -0.019449366256594658, -0.012042451649904251, -0.005030116066336632, 0.0262224692851305, 0.024246463552117348, -0.01010994240641594, -0.033554818481206894, -0.02957795187830925, -0.017324227839708328, -0.02033173479139805, -0.025924203917384148, 0.07153390347957611, -0.036761168390512466, 0.022692998871207237, 0.04160797595977783, -0.013198228552937508, -0.006673680618405342, 0.03586637228727341, 0.005337701644748449, -0.016603421419858932, -0.02878257818520069, -0.007431770674884319, -0.01596960797905922, 0.02701784297823906, -0.01485111378133297, 0.05048136040568352, 0.01210459042340517, 0.03206349164247513, -0.018281161785125732, -0.002496416447684169, 0.08952922374010086, -0.005244493950158358, -0.012204011902213097, -0.003333733417093754, -0.03484730049967766, 0.004449120257049799, -0.01886526495218277, 0.01171933114528656, 0.03273458778858185, -0.0018827981548383832, 0.05517903342843056, 0.010979882441461086, -0.026048481464385986, 0.005499261897057295, -0.042577337473630905, 0.013198228552937508, -0.005915590096265078, -0.01728694513440132, 0.00988002959638834, -0.033331118524074554, 0.026545589789748192, 0.005629752762615681, 0.07173274457454681, 0.027092408388853073, -0.0006396387470886111, -0.032983142882585526, 0.01942451111972332, -0.009246217086911201, 0.01987190917134285, 0.020456012338399887, 0.004508152138441801, 0.005511689465492964, -0.01953636109828949, 0.01010994240641594, -0.023575367406010628, 0.05075477063655853, 0.0024917558766901493, 0.027713794261217117, 0.005067398771643639, -0.004747385624796152, -0.004082502797245979, 0.07993503659963608, 0.01418001763522625, 0.0076244003139436245, 0.007543620187789202, 0.028310324996709824, -0.048169806599617004, 0.03989294916391373, -0.011619909666478634, 0.0019682387355715036, 0.03270973265171051, -0.023935770615935326, -0.012061093002557755, 0.0067855301313102245, -0.038675036281347275, -0.009619047865271568, -0.00624803127720952, 0.027067553251981735, 0.04846807196736336, -0.022270457819104195, -0.03837677091360092, -0.041707396507263184, 0.00042681419290602207, 0.018778270110487938, -0.017436077818274498, 0.0021406731102615595, 0.02021988481283188, 0.028956566005945206, 0.016093885526061058, -0.03188950568437576, -0.04473975673317909, -0.012949674390256405, 0.03159124031662941, 0.027415528893470764, 0.005679463502019644, 0.004710102453827858, -0.0182935893535614, -0.015049957670271397, 0.002351944101974368, 0.016814691945910454, -0.033877938985824585, 0.03519527614116669, -0.01345921028405428, 0.03037332370877266, 0.015808047726750374, 0.011557770892977715, 0.014068168587982655, 0.048045527189970016, 0.010706472210586071, -0.012719761580228806, -0.006866310257464647, 0.03201378136873245, -0.010526270605623722, 0.011545343324542046, 0.03159124031662941, 0.0442177951335907, -0.006412698421627283, 0.02758951671421528, -0.003367909463122487, 0.03385308384895325, 0.023960625752806664, 0.017547927796840668, -0.020356589928269386, 0.020232312381267548, -0.03797908499836922, 0.00624803127720952, 0.023140396922826767, -0.013359788805246353, -0.03439990431070328, 0.005381198599934578, 0.04754842072725296, 0.04121028631925583, 0.04498831182718277, -0.0169762521982193, 0.017100529745221138, -0.07426799833774567, -0.026620155200362206, 0.01127193309366703, -0.012322074733674526, 0.009954595938324928, -0.027142120525240898, -0.0018936723936349154, -0.05135130137205124, 0.02512883022427559, -0.008618617430329323, -0.016665559262037277, -0.037332843989133835, 0.008171219378709793, -0.040365204215049744, 0.01640457846224308, -0.02468143403530121, -0.023177679628133774, -0.015497354790568352, 0.02241959050297737, -0.011290575377643108, 0.0030199335888028145, 0.022407162934541702, 0.028558878228068352, -0.007232927717268467, -0.01886526495218277, -0.01032742764800787, -0.03149181976914406, 0.027813216671347618, 0.0026688508223742247, -0.0043714470230042934, 0.023277102038264275, 0.006872524041682482, -0.0022633967455476522, 0.015547065995633602, -0.01731180027127266, 0.028881998732686043, 0.03492186591029167, -0.06094549223780632, 0.03462360054254532, -0.005841023754328489, -0.016889259219169617, -0.05338944494724274, -0.04725015535950661, -0.03427562490105629, -0.0034082995261996984, -0.008736680261790752, -0.021450228989124298, 0.019461793825030327, 0.009351852349936962, -0.012632767669856548, 0.01344678271561861, -0.023625077679753304, -0.013533776625990868, 0.031118987128138542, 0.016466716304421425, -0.006574258673936129, -0.011309216730296612, 0.0009367386810481548, 0.019499078392982483, -0.003771810093894601, 0.01798289641737938, 0.01098609622567892, 0.011874677613377571, -0.03002534806728363, -0.006816599052399397, 0.036786023527383804, -0.032312046736478806, -0.0005953650106675923, -0.03497157618403435, -0.0005316729657351971, -0.01865399442613125, -0.028633445501327515, -0.037432264536619186, -0.006092685274779797, -0.027166975662112236, 0.02041872777044773, 0.02599877119064331, -0.015261228196322918, -0.00566082214936614, 0.013434355147182941, -0.02543952316045761, 0.02500455267727375, 0.03559296205639839, 0.015584348700940609, 0.0169762521982193, -0.007885382510721684, 0.05622296407818794, 0.008786391466856003, 0.030497601255774498, 0.011476990766823292, -0.013608342967927456, 0.036438047885894775, -0.009190292097628117, -0.011414851993322372, -0.002139119664207101, 0.004641749896109104, -0.042129937559366226, -0.012402854859828949, -0.0330328531563282, -0.02756466157734394, 0.030075060203671455, 0.020518150180578232, 0.0004411837144289166, 0.0317155160009861, -0.010718900710344315, -0.0017740556504577398, 0.01104823499917984, -0.0009934401605278254, 0.00708379503339529, 0.005993263330310583, 0.024954842403531075, -0.005589362699538469, -0.003083625575527549, 0.002625353867188096, -0.03807850554585457, -0.0015759890666231513, -0.01830601692199707, -0.011619909666478634, 0.031168697401881218, 0.024283746257424355, 0.016914114356040955, 0.06377901136875153, -0.011756613850593567, -0.02801205962896347, -0.06079636141657829, -0.02478085458278656, 0.014714409597218037, -0.027987204492092133, -0.024084903299808502, -0.025924203917384148, -0.02410975843667984, -0.008929310366511345, -0.005875200033187866, 0.028956566005945206, -0.024818137288093567, -0.01182496640831232, -0.043919529765844345, -0.047722406685352325, 0.0373079888522625, -0.006592900492250919, -0.03203863650560379, -0.023065831512212753, 0.015783192589879036, -0.011147656477987766, -0.03024904802441597, -0.0283600352704525, 0.015547065995633602, -0.011377569288015366, 0.022742711007595062, 0.0005914813373237848, 0.03929642215371132, 0.03720856457948685, 0.06447496265172958, -0.08028300851583481, 0.01664070412516594, -0.004452227149158716, -0.0169762521982193, -0.007108650635927916, 0.003846376435831189, -0.022953981533646584, 0.04598252847790718, 0.014826258644461632, -0.01763492077589035, 0.01819416880607605, 0.009420204907655716, -0.019797343760728836, 0.01907653547823429, 0.04710102453827858, -0.027713794261217117, -0.0010718900011852384, -0.012875108048319817, 0.010762397199869156, -0.008941737934947014, -0.015882613137364388, 0.02163664437830448, 0.009898671880364418, 0.021847914904356003, 0.0010928617557510734, 0.0046945675276219845, -0.020468439906835556, 0.01078103855252266, -0.01784619316458702, -0.02734096348285675, -0.006282207556068897, -0.014105451293289661, -0.007046511862426996, 0.019909191876649857, 0.02813633717596531, -0.03385308384895325, 0.015348222106695175, -0.0015550173120573163, -0.038003940135240555, -0.029403962194919586, -0.00810286682099104, -0.014428571797907352, 0.017224807292222977, 0.007263996638357639, 0.022195890545845032, -0.01887769252061844, 0.01784619316458702, 0.012974529527127743, -0.007382059935480356, -0.005673249717801809, -0.03345539793372154, 0.005272455979138613, 0.055626433342695236, -0.001982219750061631, 0.010370924137532711, -0.009631475433707237, 0.003672388382256031, -0.04613166302442551, 0.037556540220975876, -0.020070752128958702, -0.01953636109828949, -0.030522456392645836, -0.018119601532816887, -0.0001419477630406618, 0.026421312242746353, 0.0432981438934803, 0.016429433599114418, 0.02758951671421528, -0.010072659701108932, -0.03069644421339035, 0.023799065500497818, -0.005654608365148306, -0.005968408193439245, -0.004197459202259779, -0.004259597975760698, 4.247752804076299e-05, 0.010955026373267174, -0.02791263721883297, 0.012204011902213097, -0.04725015535950661, 0.013049095869064331, 0.027291253209114075, -0.017697060480713844, 0.010544911958277225, 0.01854214444756508, 0.010184508748352528, 0.026719577610492706, 0.03372880816459656, -0.03101956471800804, -0.00498972600325942, 0.0446154810488224, -0.04454091563820839, -0.0014688000082969666, -0.017224807292222977, 0.020406300202012062, 0.011352713219821453, -0.018952257931232452, 0.024358313530683517, 0.015435216017067432, 0.009960809722542763, -0.0032218839041888714, -0.012471207417547703, 0.0453362874686718, 0.0006609988631680608, 0.02268057130277157, 0.015584348700940609, 0.020045896992087364, -0.012017596513032913, 0.009525840170681477, -0.004542328417301178, 0.008773963898420334, 0.03952011838555336, -0.02075427584350109, -0.004414943978190422, 0.03497157618403435, -0.01081832218915224, -0.009072228334844112, 0.023177679628133774, -0.01998375914990902, -0.009028731845319271, -0.000193891697563231, 0.007090008817613125, -0.007686539087444544, -0.04807038605213165, -0.03328140825033188, -0.001971345627680421, -0.021959764882922173, -0.02234502322971821, 0.01605660282075405, 0.007214285898953676, 0.012595484964549541, 0.017212379723787308, -0.04019121453166008, -0.024035193026065826, -0.02746524102985859, 0.012887535616755486, -0.03869989141821861, 0.04911431297659874, -0.006456195842474699, -0.04130971059203148, 0.01731180027127266, 0.028409745544195175, -0.0046945675276219845, 0.014739264734089375, -0.002853712998330593, 0.0009491663658991456, -0.011197366751730442, -0.019896764308214188, -0.010283930227160454, 0.01739879511296749, -0.03942069783806801, -0.02456958405673504, 0.032312046736478806, 0.03338082879781723, -0.057316601276397705, -0.030969854444265366, 0.016230590641498566, -0.001231120084412396, 0.006891165394335985, -0.0027946813497692347, 0.004421158228069544, 0.04543570801615715, 0.047622986137866974, -0.05746573209762573, 0.018716132268309593, -0.020716993138194084, -0.02335166744887829, -0.03952011838555336, 0.01445342693477869, 0.04578368738293648, 0.04334785416722298, -0.0052786702290177345, -0.010302571579813957, 0.013993602246046066, 0.00549304811283946, 0.0027387565933167934, -0.012123231776058674, 0.03847619146108627, 0.01060083694756031, 0.011470776982605457, -0.027316108345985413, 0.055527009069919586, -0.0014377307379618287, -0.041583120822906494, 0.014304295182228088, 0.009395348839461803, -0.014478283002972603, -0.0005747816176153719, 0.015447644516825676, -0.023923343047499657, -0.01088046096265316, -0.032312046736478806, -0.005437123589217663, 0.0014299633912742138, -0.007208072114735842, 0.017386367544531822, -0.0061175404116511345, 0.008053156547248363, 0.004355912562459707, -0.04053919017314911, -0.011247077956795692, -0.01662827655673027, 0.03668660297989845, -0.014391289092600346, 0.000484292337205261, -0.008693183772265911, 0.01985948160290718, 0.01999618671834469, -0.033977359533309937, 0.004349698778241873, -0.04578368738293648, 0.04508773237466812, -0.02711726352572441, 0.010091301053762436, -0.027291253209114075, 0.021350806578993797, -0.020058324560523033, -0.02803691476583481, -0.025253107771277428, -0.010501415468752384, 0.033877938985824585, 0.03236175701022148, -0.02724154107272625, -0.00040390060166828334, 0.01920081302523613, 0.013633198104798794, -0.019598498940467834, 0.06472351402044296, 0.012166728265583515, -0.011880891397595406, -0.03233690187335014, -0.03439990431070328, 0.029528239741921425, 0.0038308417424559593, 0.021015258505940437, 0.011731758713722229, 0.01584533043205738, -0.025874493643641472, 0.0015270549338310957, 0.05567614361643791, 0.027838071808218956, -0.006049188319593668, -0.02253143861889839, -0.012458779849112034, 0.01640457846224308, 0.03037332370877266, 0.020791560411453247, -0.008078011684119701, -0.01819416880607605, 0.02399790845811367, 0.002330195624381304, -0.005098468158394098, -0.013558631762862206, 0.024805709719657898, 0.012384213507175446, -0.01339707151055336, -0.04486403614282608, -0.08068069815635681, -0.008009659126400948, -0.020779132843017578, -0.018268734216690063, 0.007220499683171511, -0.0027294359169900417, 0.02579992637038231, 0.02990107238292694, 0.012570628896355629, 0.007201858330518007, 0.03952011838555336, -0.006555617321282625, 0.002588070696219802, -0.03425076976418495, 0.01907653547823429, 0.002822643844410777, -0.019163530319929123, 0.012825396843254566, -0.005219638347625732, 0.006161037366837263, 0.011222222819924355, -0.03991780802607536, -0.02801205962896347, 0.03166580572724342, 0.030994709581136703, 0.026645012199878693, -0.008183646947145462, 0.02055543288588524, 0.00040040528983809054, -0.008003445342183113, -0.03653746843338013, 0.05582527443766594, -0.004079395905137062, 0.030845576897263527, 0.02870801091194153, -0.02009560726583004, 0.002633121097460389, 0.009612834081053734, 0.04021606966853142, -0.0004221537965349853, 0.009631475433707237, 0.015658915042877197, 0.003489079652354121, -0.011110372841358185, 0.021736064925789833, 0.027191830798983574, 0.0013266580644994974, 0.037332843989133835, -0.0013375323032960296, 0.014043312519788742, -0.035568106919527054, -0.014490710571408272, -0.007891596294939518, 0.012812969274818897, 0.002713901223614812, -0.013546204194426537, 0.031864650547504425, -0.01205487921833992, -0.019362373277544975, -0.02342623472213745, 0.03233690187335014, -0.01094881258904934, 0.008742894046008587, -0.0187534149736166, 0.012421496212482452, 0.021524794399738312, -0.0019697921816259623, -0.009892457164824009, -0.011644764803349972, 0.0014633629471063614, 0.012750831432640553, -0.005036329850554466, 0.04342241957783699, 0.023712072521448135, -0.02543952316045761, 0.016677986830472946, -0.004843700211495161, -0.025414668023586273, 0.01350892148911953, -0.032858867198228836, -0.01121600903570652, 0.038998156785964966, 0.013633198104798794, 0.025849638506770134, -0.02465657703578472, 0.023190107196569443, -0.027266396209597588, -0.007941306568682194, 0.004697674419730902, 0.0018563892226666212, 0.008357635699212551, 0.010607050731778145, -0.036786023527383804, 0.009569336660206318, -0.006213855464011431, 0.022369878366589546, 0.020282024517655373, 0.026321891695261, 0.03206349164247513, 0.010967454873025417, -0.0032032423187047243, 0.0043807681649923325, -0.029055986553430557, -0.006822813302278519, -0.003594715381041169, -0.015808047726750374, 0.001409768359735608, -0.014403716661036015, -0.01383204199373722, -0.005263135302811861, -0.04163283109664917, 0.01784619316458702, -0.01110415905714035, 0.010296357795596123, -0.031417250633239746, -0.030174480751156807, 0.02208404242992401, -0.015348222106695175, 0.0069657317362725735, -0.005434016231447458, -4.3594078306341544e-05, 0.01099852379411459, 0.020704565569758415, -0.011930601671338081, 0.016342438757419586, 0.005499261897057295, -0.007580903358757496, 0.004501938354223967, 0.020182602107524872, 0.01941208355128765, 0.005232065916061401, -0.01061326451599598, 0.008500553667545319, -0.01963578350841999, 0.007406915538012981, -0.005480620544403791, 0.0034300480037927628, 0.03683573380112648, -0.0002955464879050851, -0.011943030171096325, -0.03417620435357094, -0.006847668439149857, -0.01898954249918461, 0.0009569337125867605, 0.008780177682638168, -0.0034455826971679926, 0.006686108186841011, 0.011694476008415222, 0.007512550801038742, 0.01717509515583515, 0.008773963898420334, 0.03884902223944664, -0.014826258644461632, 0.05433395132422447, 0.001834640745073557, 0.024159468710422516, 0.009743325412273407, 0.02142537385225296, 0.013807186856865883, -0.002853712998330593, 0.026769287884235382, -0.01550978235900402, -0.0005044873687438667, -0.002580303465947509, 0.05169927701354027, -0.008444629609584808, -0.007475268095731735, -0.018057463690638542, -0.02167392708361149, -0.002546127187088132, -0.008817460387945175, -0.009861388243734837, 0.0204311553388834, -0.0053408085368573666, -0.015000246465206146, 0.012353144586086273, -0.03484730049967766, -0.05159985274076462, -0.04953685402870178, -0.005595576483756304, 0.004672819282859564, -0.0014765673549845815, 0.008761536329984665, 0.0024218501057475805, -0.008301710709929466, -0.005126430653035641, -0.010812108404934406, 0.006773102097213268, 0.0007386720390059054, 0.0068600960075855255, 0.006129968445748091, 0.010979882441461086, -0.008046942763030529, 0.006611541844904423, 0.007058939430862665, 0.027390673756599426, 0.006207641214132309, -0.03561781719326973, 0.016330011188983917, -0.004992832895368338, 0.023985480889678, -0.017547927796840668, 0.006244924385100603, -0.011880891397595406, 0.008357635699212551, 0.010669189505279064, 0.007400701753795147, 0.012812969274818897, 0.012166728265583515, 0.024159468710422516, -0.006220069248229265, 0.0060336533933877945, -0.03817792609333992, -0.011035806499421597, 0.01272597536444664, 0.012937246821820736, -0.0018315338529646397, 0.011750400066375732, 0.02232016809284687, -0.00010136351193068549, -0.030075060203671455, 0.011122801341116428, -0.007568475790321827, 0.010364710353314877, 0.02198462001979351, 0.003458010498434305, -0.03340568765997887, 0.041483696550130844, -0.010010520927608013, -0.010787252336740494, -0.00018855166854336858, -0.0012155853910371661, 0.002564768772572279, -0.013533776625990868, 0.004880983382463455, -0.027390673756599426, 0.0039178356528282166, -0.03519527614116669, 0.011240864172577858, -0.005850344896316528, 0.049710843712091446, 0.013421927578747272, 0.022593578323721886, -0.013024240732192993, -0.03104442171752453, 0.011073090136051178, -0.015447644516825676, 0.07292580604553223, -0.008494339883327484, -0.0026766180526465178, -0.0019682387355715036, 0.001483557978644967, 0.007904023863375187, 0.030447890982031822, 0.003924049437046051, -0.0018610496772453189, 0.009326997213065624, 0.014975391328334808, 0.010364710353314877, 0.007245355285704136, 0.026595300063490868, -0.03937098756432533, -0.00965011678636074, 0.027316108345985413, 0.029627662152051926, 0.0192132405936718, -0.018604282289743423, 0.023637505248188972, -0.023388952016830444, -0.00037224875995889306, -0.06203912943601608, -0.02878257818520069, -0.010799680836498737, 0.030547313392162323, 0.033753663301467896, 0.027316108345985413, -0.0055924695916473866, 0.032759446650743484, -0.0037189924623817205, -0.021064968779683113, -0.0017212379025295377, 0.003520149039104581, -0.036661747843027115, -0.007003014907240868, 0.010843177326023579, -0.008326565846800804, 0.04464033618569374, -0.011545343324542046, -0.017560355365276337, -0.0030649842228740454, -0.0032591670751571655, -0.02801205962896347, 0.001231120084412396, -0.027838071808218956, -0.02200947515666485, 0.0204311553388834, 0.027390673756599426, -0.02401033602654934, 0.019362373277544975, -0.027142120525240898, 0.0019589178264141083, 0.023687215521931648, 0.02163664437830448, -0.021077396348118782, -0.04317386820912361, -0.02679414302110672, 0.01787104830145836, 0.000905669410713017, -0.006872524041682482, -0.004498830996453762, -0.0053749848157167435, -0.0030525564216077328, -0.0058441306464374065, -0.028658300638198853, 0.02232016809284687, 0.002522825263440609, -0.0033616956789046526, 0.013558631762862206, -0.027291253209114075, -0.007338562980294228, 0.05716746672987938, 0.020232312381267548, 0.005980835761874914, -0.033529963344335556, 0.0025352530647069216, 0.014279439114034176, 0.014416144229471684, -0.011787683703005314, -0.03149181976914406, 0.03439990431070328, 0.054184816777706146, -0.04774726554751396, -2.5049603209481575e-05, -0.030870432034134865, 0.02209646999835968, 0.00316595914773643, -0.012937246821820736, 0.008842316456139088, 0.0010866479715332389, 0.01685197465121746, 0.008388704620301723, 0.009445060044527054, 0.001499092555604875, -0.019064107909798622, -0.013645626604557037, 0.0017165775643661618, -0.016044173389673233, 0.01672769896686077, -0.019909191876649857, -0.023985480889678, 0.01808231882750988, -0.04130971059203148, 0.017920758575201035, -0.0012792774941772223, -0.024159468710422516, 0.036090072244405746, -0.008065584115684032, -0.03872474655508995, 0.00423784926533699, 0.03037332370877266, -0.034101638942956924, -0.014465855434536934, -0.018939830362796783, 0.0031473177950829268, -0.03258545696735382, -0.005555186420679092, -0.003861911129206419, 0.007661683484911919, -0.008506767451763153, 0.017597638070583344, 0.00577577855437994, -0.0055303312838077545, 0.0032778086606413126, -0.020605143159627914, -0.018243879079818726, 4.6755621951888315e-06, 0.001312676933594048, -0.010899102315306664, 0.0040017226710915565, 0.0170756746083498, 0.028210902586579323, 0.03763110563158989, 0.004893410950899124, 0.011427279561758041, -0.0025632153265178204, 0.03539412096142769, -0.009799249470233917, 0.033331118524074554, 0.026719577610492706, -0.00814015045762062, -0.017697060480713844, -0.014254583977162838, -0.013223083689808846, -0.013695336878299713, -0.018467577174305916, 0.0073944879695773125, 0.005881413817405701, -0.015037530101835728, 0.0222083181142807, -0.03251089155673981, 0.03377851843833923, 0.014391289092600346, 0.007195644546300173, -0.015422788448631763, 0.008954165503382683, 0.03203863650560379, 0.023799065500497818, -0.008742894046008587, 0.030323613435029984, 0.014204872772097588, 0.0131609458476305, 0.04434207081794739, 0.015783192589879036, 0.011899532750248909, -0.0057105328887701035, -0.002428063889965415, 0.02922997437417507, -0.02766408398747444, -0.004511259030550718, 0.028732866048812866, -0.011532915756106377, -0.0169762521982193, -0.02076670341193676, -0.010886674746870995, 0.03795422613620758, -0.022494155913591385, 0.005011474248021841, -0.010855604894459248, -0.0017569676274433732, 0.0012924819020554423, 0.018380584195256233, 0.017038391903042793, -0.038774456828832626, 0.02922997437417507, -0.002104943385347724, 0.024706289172172546, 0.005667035933583975, 0.001853282330557704, -0.021064968779683113, 0.01974763162434101, -0.01078103855252266, 0.03057216852903366, -0.013608342967927456, -0.014254583977162838, 0.027514951303601265, 0.0113837830722332, -0.02736581861972809, -0.006207641214132309, 0.0022618432994931936, 0.04406866058707237, 0.0018750308081507683, -0.025601083412766457, 0.013658054172992706, 0.02253143861889839, 0.04319872334599495, 0.0131609458476305, 0.024159468710422516, 0.006810385268181562, 0.022581150755286217, -0.01686440408229828, 0.01741122268140316, -0.0005079826805740595, -0.00997945200651884, 0.004967977292835712, -0.0009856728138402104, 0.0008404239197261631, -0.010551126673817635, -0.01317337341606617, 0.031765226274728775, 0.042229361832141876, -0.01182496640831232, -0.01773434318602085, 0.002162421587854624, 0.004595146048814058, 0.006605328060686588, 0.04506287723779678, 0.013372216373682022, 0.00017534723156131804, 0.014006029814481735, 0.0009654777823016047, -0.022692998871207237, -0.012564415112137794, -0.017771625891327858, 0.009892457164824009, 0.013247939758002758, -0.00482505839318037, -0.025414668023586273, 0.010184508748352528, 0.022804848849773407, 0.0018843516008928418, -0.028558878228068352, -0.026123046875, 0.029279686510562897, 0.021512366831302643, -0.02813633717596531, -0.010228006169199944, -0.018691277131438255, 0.017547927796840668, -0.018020180985331535, 0.003458010498434305, -0.04642992839217186, 0.03330626338720322, -0.024470161646604538, -0.0007530415896326303, 0.014689553529024124, 0.0007188653689809144, -0.0004873992584180087, -0.009246217086911201, -0.026421312242746353, 0.04275132343173027, 0.009494771249592304, -0.0017678418662399054, 0.046380214393138885, 0.0012404408771544695, 0.009817891754209995, 0.011750400066375732, 0.004831272643059492, -0.019735204055905342, 0.03114384226500988, 0.010644334368407726, -0.021736064925789833, -0.014639843255281448, -0.015199090354144573, 0.0049555497244000435, 0.021139536052942276, -0.019449366256594658, 0.02647102251648903, -0.016031745821237564, 0.01808231882750988, -0.00291429809294641, -0.016044173389673233, -0.009998093359172344, -0.0009530500392429531, 0.008220930583775043, 0.034101638942956924, -0.020592715591192245, -0.0412600003182888, 0.004992832895368338, -0.002564768772572279, -0.01605660282075405, -0.011135228909552097, -0.014465855434536934, -0.00318149384111166, -0.004244063049554825, -0.007804602384567261, -0.020592715591192245, -0.01350892148911953, -0.01110415905714035, -0.006083364132791758, 0.006083364132791758, 0.02922997437417507, -0.009724683128297329, 0.005045650526881218, -0.007692752871662378, 0.03549354150891304, 0.03325655311346054, -0.06149231269955635, 0.022382305935025215, 0.018504861742258072, -0.03300799801945686, -0.02937910705804825, -0.02087855339050293, 0.01595718041062355, -0.0017833764431998134, 0.00435280567035079, 0.013670481741428375, 0.046927034854888916, -0.022034330293536186, 0.010339855216443539, 0.005977728869765997, -0.025414668023586273, 0.09668758511543274, 0.0001924353273352608, 0.0262224692851305, -0.004495724104344845, 0.01995890401303768, 0.028310324996709824, -0.00023068937298376113, -0.018169313669204712, 0.01874098740518093, -0.0006776985828764737, -0.01840543933212757, 0.003318198723718524, -0.02275513857603073, -0.011209795251488686, 0.006325704511255026, -0.0024404916912317276, -0.0419808067381382, 0.007885382510721684, 0.007841885089874268, -0.0004609903844539076, 0.012154300697147846, 0.0022121325600892305, -0.015783192589879036, -0.023525655269622803, -0.02724154107272625, 0.009830319322645664, 0.02811148203909397, 0.013521349057555199, 0.004629322327673435, -0.0010167420841753483, 0.016044173389673233, -0.004505045246332884, 0.016006890684366226, -0.002278931438922882, 0.011812538839876652, -0.023600222542881966, 0.004272025544196367, 0.008686969988048077, -0.014465855434536934, 0.02108982391655445, 0.0034921865444630384, -0.045385997742414474, 0.0016311369836330414, -0.009563122875988483, 0.0170756746083498, 0.007568475790321827, -0.0023410699795931578, 0.03437504917383194, 0.03325655311346054, -0.029528239741921425, 0.06338132172822952, -0.005617325194180012, 0.017659775912761688, 0.019349945709109306, 0.0022851452231407166, 0.029751939699053764, -0.003557432210072875, -0.015596776269376278, -0.017572782933712006, -0.017535500228405, 0.020356589928269386, -0.038003940135240555, 0.001459479215554893, 0.00865590013563633, 0.02029445208609104], [0.019272273406386375, 0.03642837330698967, 0.01021916326135397, -0.0029934104532003403, -0.032627902925014496, 0.04107099398970604, -0.06171445921063423, -0.026560107246041298, 0.045260149985551834, 0.021863503381609917, -0.04115736857056618, -0.004558945074677467, 0.021744737401604652, 0.04342469573020935, -0.025156524032354355, 0.011887267231941223, 0.02155039645731449, 0.006526660174131393, -0.015644550323486328, 0.007514566648751497, -0.030792448669672012, 0.024012064561247826, -0.027898909524083138, 0.03226081281900406, -0.03288702666759491, 0.012437903322279453, 0.013765908777713776, -0.04815369099378586, 0.03312455490231514, 0.01919669471681118, 0.1069314256310463, -0.02226298302412033, 0.00921506155282259, -0.020405935123562813, 0.0232131015509367, 0.026452139019966125, -0.020416732877492905, 0.003676307387650013, 0.004521156195551157, -0.05212691053748131, -0.039667412638664246, -0.02982073836028576, -0.006969328969717026, -0.03489523008465767, -0.007071898318827152, 0.041200555860996246, -0.007665721699595451, -0.0333188995718956, -0.01847331039607525, 0.011174678802490234, -0.004345708526670933, 0.018084624782204628, -0.0012679481878876686, -0.010964141227304935, 0.015741722658276558, -0.003452274017035961, -0.027315882965922356, 0.04206429794430733, -0.029021775349974632, -0.0021377645898610353, 0.014294952154159546, -0.018775619566440582, -0.009474184364080429, 0.025437241420149803, 0.008626636117696762, -0.006677815690636635, -0.03318933770060539, 0.006920743267983198, -0.020805416628718376, 0.04357584938406944, 0.026106640696525574, -0.027985284104943275, 0.03016623482108116, -0.027488630264997482, -0.0404231883585453, 0.030965197831392288, 0.03562941029667854, 0.014478497207164764, -0.0073310211300849915, -0.03519754111766815, -0.027121540158987045, 0.017361240461468697, 0.0016357138520106673, 0.015309849753975868, -0.029907112941145897, 0.023429038003087044, -0.06460800021886826, -0.021323662251234055, -0.003576437244191766, -0.04815369099378586, -0.07497292011976242, 0.02599867433309555, -0.0002198159199906513, 0.03293021395802498, -0.031569819897413254, -0.01766355149447918, 0.03742167726159096, 0.023105133324861526, -0.004313318058848381, 0.03299499303102493, 0.009117890149354935, 0.02470305934548378, -0.036363594233989716, 0.013895470649003983, 0.009873665869235992, -0.06525580585002899, -0.048369623720645905, 0.03217443823814392, -0.02442234195768833, -0.008049008436501026, 0.08248748630285263, -0.034290608018636703, 0.005166264716535807, 0.07177706807851791, -0.005438883788883686, 0.00488284882158041, -0.02234935760498047, 0.04303601011633873, -0.0010304187890142202, 0.0022200902458280325, -0.009404005482792854, -0.0040164063684642315, -0.01465124636888504, -0.05299065262079239, -0.010710417293012142, -0.004078487865626812, 0.030338983982801437, -0.0049071419052779675, -0.023666566237807274, -0.013290850445628166, 0.015871282666921616, -0.07294312119483948, -0.0011431103339418769, -0.01828976534307003, -0.0017112914938479662, 0.03072766773402691, -0.0038733489345759153, -0.03977537900209427, 0.04063912108540535, 0.014424513094127178, 0.01268623024225235, 0.00754155870527029, 0.04398612678050995, 0.025717956945300102, -0.06262139230966568, -0.007870861329138279, -0.02805006317794323, 0.025156524032354355, -0.028136437758803368, -0.056704748421907425, 0.0042539360001683235, -0.015720129013061523, 0.03914916515350342, -0.00938241183757782, 0.013798299245536327, -0.022414138540625572, 0.04996754974126816, 0.03962422534823418, 0.03515435382723808, 0.005706104449927807, -0.020708246156573296, -0.007951837033033371, -0.03059810772538185, -0.027164727449417114, 0.010095000267028809, -0.02643054537475109, 0.009452590718865395, -0.013204475864768028, -0.02336425706744194, -0.032865431159734726, -0.05480451136827469, 0.005509062670171261, 0.008216357789933681, -0.05566825717687607, -0.06491030752658844, 0.0010533619206398726, 0.06348513066768646, -0.003571038832888007, -0.052342843264341354, 0.025070149451494217, 0.02254370041191578, 0.06529899686574936, -0.04288485646247864, -0.044115688651800156, 0.007282435894012451, 0.0068883528001606464, -0.016205983236432076, 0.008059804327785969, -0.04256094992160797, 0.01904553920030594, -0.0026141731068491936, 0.007411997299641371, -0.006240545306354761, 0.03327571228146553, 0.01569853536784649, 0.010208366438746452, -0.03340527415275574, -0.005684510804712772, 0.03187212720513344, 0.010580855421721935, 0.03072766773402691, -0.06430569291114807, -0.037270523607730865, 0.018160203471779823, -0.06391700357198715, 0.031958501785993576, -0.016152000054717064, 0.01847331039607525, -0.005198655184358358, 0.014111406169831753, 0.017933471128344536, 0.016389530152082443, -0.024120032787322998, 0.01039191149175167, -0.02130206860601902, 0.006861360743641853, 0.057568490505218506, -0.016162795946002007, 0.03141866251826286, 0.02250051312148571, -0.020459920167922974, -0.02772616036236286, -0.03260631114244461, -0.019023945555090904, -0.03001507930457592, 0.020934978500008583, 0.0027140434831380844, 0.013334037736058235, 0.024292780086398125, 0.006051601376384497, -0.003503558924421668, -0.02293238416314125, -0.03696821257472038, -0.027488630264997482, -0.02250051312148571, 0.03185053542256355, 0.011638941243290901, -0.004936832934617996, -0.04355425760149956, 0.05748211592435837, -0.029194524511694908, 0.023234695196151733, -0.0076927137561142445, -0.010548464953899384, 0.043014418333768845, -0.01599004864692688, 0.00037687551230192184, 0.013074913993477821, 0.03072766773402691, -0.011088305152952671, 0.02234935760498047, 0.008578050881624222, 0.024357561022043228, -0.013096507638692856, -0.02245732583105564, -0.048758309334516525, 0.02183111198246479, -0.0543726421892643, 0.03854454681277275, -0.055365946143865585, -0.003768080146983266, 0.05251559242606163, -0.01637873239815235, -0.019650161266326904, -0.06508305668830872, -0.030382171273231506, -0.0021080735605210066, -0.014964353293180466, 0.029604801908135414, -0.005970625672489405, -0.007190662901848555, 0.020222390070557594, 0.033534832298755646, -0.06344194710254669, -0.06326919794082642, -0.038220640271902084, 0.02278123050928116, -0.0021472119260579348, -0.015137101523578167, 0.02556680142879486, -0.017447615042328835, -0.020643465220928192, 0.019218288362026215, -0.022133423015475273, -0.009733307175338268, -0.005077191162854433, 0.0005627827486023307, -0.008367513306438923, -0.010440497659146786, -0.012794197537004948, 0.016551481559872627, -0.012092405930161476, -0.0345713272690773, -0.02666807547211647, 0.032865431159734726, -0.03673068434000015, -0.052299655973911285, 0.061973582953214645, -0.04007769003510475, -0.028805838897824287, -0.02887061983346939, -0.018224984407424927, -0.0031175734475255013, 0.002205244731158018, 0.029280899092555046, -0.002839556196704507, 0.02522130496799946, 0.0677606612443924, -0.02871946431696415, -0.03649315610527992, -0.012621449306607246, -0.004494164604693651, 0.010823783464729786, -0.08412859588861465, -0.006753392983227968, 0.014208577573299408, 0.0016316650435328484, 0.024854212999343872, 0.009296037256717682, -0.010570058599114418, 0.030231015756726265, -0.01290216576308012, 0.0317857526242733, -0.03521913290023804, -0.005889649502933025, -0.023709753528237343, 0.04079027846455574, 0.05916641652584076, -0.017220882698893547, -0.01311810128390789, -0.04685807600617409, 0.016486700624227524, 0.03925713524222374, 0.00648887176066637, 0.017695941030979156, -0.026106640696525574, 0.04806731641292572, -0.018365342170000076, -0.011358224786818027, -0.009107093326747417, 0.0122327646240592, -0.014856385067105293, 0.03146184980869293, 0.045648835599422455, -0.00863743294030428, 0.032390374690294266, 0.020362747833132744, 0.06741516292095184, 0.03370758146047592, -0.0029205321334302425, -0.04815369099378586, 0.004445578902959824, -0.07894613593816757, 0.022370951250195503, -0.023947283625602722, -0.04629664123058319, 0.004264732822775841, -0.036363594233989716, 0.03213125094771385, 0.033038180321455, -0.015147898346185684, -0.011466192081570625, 0.010834580287337303, 0.0111530851572752, 0.04228023439645767, 0.014305748976767063, 0.00037687551230192184, 0.0006936938734725118, 0.010154382325708866, 0.004812669940292835, 0.024249592795968056, -0.02188509702682495, 0.027682973071932793, -0.058000363409519196, -0.019898487254977226, 0.024767840281128883, -0.026106640696525574, -0.0006440961151383817, 0.031181134283542633, 0.012729416601359844, 0.017123710364103317, 0.01486718188971281, -0.022824417799711227, -0.018343748524785042, 0.0036385187413543463, 0.00938241183757782, -0.030965197831392288, -0.016724230721592903, 0.01905633695423603, 0.013247663155198097, 0.013053320348262787, 0.04091984033584595, -0.004680409096181393, 0.05912322923541069, -0.03886844962835312, -0.03984016180038452, 0.010597051121294498, 0.021129321306943893, 0.01268623024225235, -0.00435650534927845, 0.0007517266203649342, -0.004316017497330904, -0.003948926459997892, 0.03185053542256355, 0.02254370041191578, 0.013053320348262787, 0.05908004194498062, 0.024249592795968056, -0.029172930866479874, -0.013625551015138626, 0.005333615001291037, 0.016475902870297432, 0.020470716059207916, -0.001345550175756216, -0.01934785023331642, -0.017598770558834076, 0.04547608643770218, -0.005646721925586462, -0.04342469573020935, -0.01746920868754387, 0.04409409686923027, -0.014780807308852673, -0.011876470409333706, -0.013420411385595798, -0.0023833916056901217, 0.006801978684961796, 0.013085710816085339, -0.0335996150970459, 0.02234935760498047, -0.04927655681967735, -0.004577839747071266, 0.049665238708257675, 0.051435913890600204, 0.03934350609779358, -0.0073580131866037846, -0.027035165578126907, -0.051824599504470825, -0.030533326789736748, -0.00962533988058567, -0.010996531695127487, -0.02211182937026024, -0.01244870014488697, 0.027812534943223, 0.007190662901848555, -0.015741722658276558, -0.03992653638124466, -0.02316991426050663, 0.03588853403925896, 0.01604403182864189, -0.010683424770832062, 0.013744315132498741, -0.006801978684961796, -0.00878858845680952, 0.015072320587933064, 0.005706104449927807, -0.04050956293940544, -0.010121991857886314, -0.04931974411010742, 0.02718632109463215, 0.001796316122636199, 0.03452813997864723, 0.028589904308319092, 0.0008941093110479414, -0.010586254298686981, -0.03260631114244461, -0.024875806644558907, 0.04953568056225777, 0.00658064428716898, 0.048715122044086456, -0.052256468683481216, -0.034916821867227554, -0.025156524032354355, 0.00809219479560852, -0.04139489680528641, 0.031202727928757668, 0.018063031136989594, 0.014554074965417385, -0.004270130768418312, 0.026819229125976562, 0.022101031616330147, -0.02863309159874916, 0.07955075800418854, -0.01636793650686741, -0.050960853695869446, 0.056272875517606735, 0.02522130496799946, 0.01939103752374649, 0.04055275022983551, -0.015633754432201385, -0.0133124440908432, -0.030662886798381805, -0.019131913781166077, -0.002404985250905156, -0.007735901046544313, -0.013334037736058235, -0.06819253414869308, -0.03217443823814392, -0.02651691995561123, 0.030338983982801437, 0.0034657700452953577, 0.030382171273231506, -0.023493818938732147, -0.033448461443185806, -0.044785089790821075, 0.05908004194498062, -0.010402708314359188, -0.01144459843635559, 0.00791944656521082, 0.0025021564215421677, 0.019790519028902054, 0.024012064561247826, -0.026581700891256332, 0.007438989356160164, -0.02796369045972824, -0.009484981186687946, -0.05389758199453354, -0.008934345096349716, 0.02034115418791771, -0.011800892651081085, -0.00847008265554905, 0.055409133434295654, 0.028654685243964195, 0.008113788440823555, 0.0203519519418478, -0.020276375114917755, -0.024616684764623642, 0.016648652032017708, -0.03921394795179367, 0.03493841737508774, -0.01445690356194973, -0.010737408883869648, 0.021949876099824905, -0.017069727182388306, 0.03154822438955307, -0.019218288362026215, 0.011768502183258533, -0.06681054830551147, 0.028741057962179184, 0.023299476131796837, -0.03474407643079758, 0.04538971185684204, -0.018203390762209892, -0.018268171697854996, 0.0348520427942276, 0.009922251105308533, -0.004750588443130255, -0.004081187304109335, 0.0049071419052779675, -0.015104711055755615, -0.02532927319407463, -0.01453248132020235, -0.03379395604133606, -0.013096507638692856, -0.056229688227176666, 0.007757494691759348, 0.03198009729385376, -0.022673262283205986, -0.0011039719684049487, -0.037551239132881165, -0.014079015702009201, -0.018732432276010513, -0.016767416149377823, 0.007093491964042187, -0.008464684709906578, 0.006272935774177313, -0.0019380240701138973, -0.003957023844122887, 0.017695941030979156, -0.006650823634117842, -0.010116593912243843, -0.024443935602903366, -0.03293021395802498, 0.03347005322575569, -0.040142469108104706, 0.0059166415594518185, -0.025005368515849113, 0.04275529459118843, -0.017793111503124237, 0.032671090215444565, 0.030382171273231506, -0.007017914205789566, 0.004866653587669134, -0.0040595936588943005, -0.010321732610464096, -0.02043832652270794, 0.008513269945979118, -0.017825502902269363, -0.011476988904178143, -0.022241389378905296, -0.05912322923541069, 0.015903674066066742, -0.018969962373375893, 0.005657518748193979, 0.008140780963003635, -0.012070813216269016, 0.027877315878868103, 0.01261065248399973, 0.0043349117040634155, -0.027056759223341942, 0.010068007744848728, 0.01670263707637787, -0.029691176488995552, -0.02671126276254654, -0.023537004366517067, -0.01827896758913994, -0.022846011444926262, -0.024163218215107918, 0.0024630180560052395, 0.00038598530227318406, 0.031569819897413254, -0.011876470409333706, 0.014931962825357914, -0.02234935760498047, -0.03083563596010208, -0.0006778360693715513, -0.008669823408126831, -0.015806501731276512, -0.008966735564172268, -0.023061946034431458, -0.03543506935238838, -0.006510465405881405, -0.0008225805358961225, 0.021280474960803986, -0.021032148972153664, -0.039516255259513855, 0.014845588244497776, 0.005868056323379278, -0.00574389286339283, 0.017123710364103317, 0.011541769839823246, -0.035974908620119095, -0.027596598491072655, 0.0002812226884998381, -0.018548887223005295, 0.017123710364103317, -0.008286537602543831, 0.010580855421721935, -0.027315882965922356, -0.014640449546277523, 0.03347005322575569, 0.013042524456977844, 0.0012159886537119746, 0.039041198790073395, -0.0430791974067688, 0.018019845709204674, 0.0016694539226591587, -0.03409626707434654, 0.020082032307982445, 0.01738283410668373, -0.006445684470236301, 0.049665238708257675, 0.0550636351108551, -0.04409409686923027, -0.04633982852101326, 0.024292780086398125, 0.0010891263373196125, -0.028028471395373344, -0.01055386383086443, -0.04495783895254135, 0.006796580273658037, -0.00732562318444252, -0.009484981186687946, 0.03981856629252434, 0.004615628160536289, -0.008038211613893509, -0.010537668131291866, 0.03476566821336746, 0.005517160519957542, 0.012189577333629131, -0.044115688651800156, 0.038134265691041946, -0.029216118156909943, -0.020934978500008583, -0.02863309159874916, 0.008837173692882061, -0.004772181622684002, -0.001270647393539548, 0.0006886328337714076, -0.012556668370962143, 0.051047228276729584, -0.01067802682518959, -0.04703082516789436, 0.001003426848910749, 0.020146813243627548, -0.029712770134210587, 0.01021916326135397, -0.018397731706500053, -0.010742807760834694, -0.014327342621982098, 0.027359070256352425, -0.0016735026147216558, 0.012923759408295155, 0.010143585503101349, -0.016778213903307915, -0.0014913068152964115, 0.016486700624227524, 0.002372595015913248, 0.006559050641953945, -0.015882080420851707, 0.0026991977356374264, -0.02431437373161316, 0.009798088110983372, -0.01895916648209095, -0.05424308031797409, 0.007147476077079773, -0.006262138951569796, 0.02785572223365307, -0.016832197085022926, 0.012103202752768993, 0.007779088336974382, 0.0008030113531276584, 0.007730502635240555, -0.03072766773402691, 0.013334037736058235, -0.014186983928084373, 0.01967175304889679, -0.000720685813575983, -0.04184836521744728, 0.02364497259259224, -0.008626636117696762, -0.014694432727992535, -0.003006906481459737, -0.05467495322227478, -0.0014602660667151213, 0.021129321306943893, 0.013722721487283707, -0.027359070256352425, -0.0022160413209348917, 0.0060677966102957726, 0.012329936027526855, 0.024357561022043228, -0.0023550500627607107, 0.01604403182864189, 0.027078352868556976, -0.05065854638814926, -0.023256288841366768, 0.03191531449556351, 0.029410459101200104, 0.03919235244393349, -0.012340732850134373, 0.05242921784520149, -0.006623831577599049, 0.0206326674669981, -0.031958501785993576, -0.01962856762111187, 0.010229960083961487, -0.04379178583621979, 0.03476566821336746, -0.004464473109692335, 0.010634839534759521, -0.017512395977973938, 0.00492063770070672, 0.018883587792515755, -0.01404662523418665, -0.01256746519356966, -0.0031013782136142254, -0.02101055532693863, 0.0666377991437912, -0.015363833867013454, 0.0023793429136276245, 0.03020942211151123, 0.00038564790156669915, 0.014003438875079155, -0.00561433145776391, 0.012006032280623913, 0.00022437081497628242, 0.003023101482540369, 0.013150491751730442, -0.018300561234354973, -0.0024711156729608774, -0.06577405333518982, -0.025739550590515137, -0.04456915333867073, -0.0012524278135970235, 4.744683610624634e-05, -0.03562941029667854, -0.03897641599178314, 0.018559684976935387, -0.014834791421890259, -0.016789009794592857, -0.018883587792515755, 0.010829181410372257, -0.00825414713472128, 0.046555764973163605, 0.02742384932935238, -0.014111406169831753, 0.015223476104438305, 0.002704596146941185, -0.014608059078454971, -0.03131069615483284, 0.009144882671535015, 0.01570933125913143, 0.0015898275887593627, -0.006359310355037451, -0.03748646005988121, -0.04953568056225777, 0.044353220611810684, -0.061109840869903564, -0.05035623535513878, 0.021291272714734077, 0.021431630477309227, 0.023666566237807274, -0.020567888393998146, 0.025307679548859596, 0.023472225293517113, 0.038890041410923004, -0.027596598491072655, 0.02159358188509941, -0.007228451780974865, -0.01992008090019226, 0.04027203097939491, -0.02336425706744194, 0.026603294536471367, 0.05217009782791138, -0.004515757784247398, -0.013485192321240902, -0.042820073664188385, -0.022176610305905342, 0.0030986792407929897, -0.014845588244497776, 0.020071234554052353, 0.023342663422226906, 0.00859424564987421, -0.015137101523578167, -0.000687283230945468, 0.004610229749232531, -0.021388443186879158, 0.03403148800134659, -0.027790941298007965, 0.008626636117696762, -0.003082484006881714, 0.013247663155198097, -0.013549973256886005, -0.005168963689357042, -0.0253724604845047, 0.003859852906316519, 0.00451035937294364, 0.013884673826396465, 0.008345919661223888, 0.024400748312473297, 0.011962844990193844, 0.005889649502933025, -0.031245915219187737, -0.0021080735605210066, -0.033621206879615784, 0.03422582894563675, -0.0446123406291008, 0.021269679069519043, -0.012362326495349407, 0.02403365820646286, -0.007411997299641371, -0.008151577785611153, 0.014294952154159546, -0.0003293021291028708, 0.014888775534927845, 0.0022484317887574434, 0.000153769928147085, -0.003978617489337921, 0.010920954868197441, 0.006607636343687773, 0.016875384375452995, 0.02067585475742817, -0.0253724604845047, 0.020136015489697456, -0.0025696363300085068, -0.06961771100759506, 0.015471802093088627, 0.02293238416314125, -0.03893322870135307, 0.0090962965041399, 0.03757283464074135, 0.0050286054611206055, 0.014899572357535362, -0.01962856762111187, -0.04068230837583542, 0.01967175304889679, 0.006569847464561462, 0.02545883320271969, 0.02733747661113739, 0.016929369419813156, -0.029647989198565483, 0.02273804321885109, 0.04685807600617409, -0.007438989356160164, 0.0161735936999321, -0.02532927319407463, -0.02455190382897854, 0.031051572412252426, -0.0031607607379555702, 0.00695313373580575, 0.01737203821539879, -0.009738706052303314, -0.001150533091276884, -0.015568973496556282, -0.0022281878627836704, -0.021042946726083755, 0.008610441349446774, -0.001007475540973246, 0.004167561419308186, -0.0071258824318647385, 0.003778876969590783, 0.00732562318444252, -0.015363833867013454, 0.02006043866276741, -0.0017693241825327277, -0.03733530640602112, -0.0073310211300849915, -0.00988446269184351, 0.011952048167586327, -0.02450871653854847, 0.02474624663591385, -0.006397098768502474, -0.011498582549393177, -0.017847096547484398, 0.02254370041191578, -0.013226069509983063, -0.028935400769114494, -0.008696815930306911, -0.0269056037068367, -0.010327130556106567, 0.052342843264341354, -0.007476778235286474, -0.0026870514266192913, -0.009220459498465061, 0.006062398198992014, -0.029863925650715828, -0.009754900820553303, -0.027359070256352425, 0.015871282666921616, -0.042971231043338776, -0.036363594233989716, 0.06128258630633354, -0.004637221805751324, -0.015741722658276558, 0.02450871653854847, -0.050874482840299606, 0.021269679069519043, 0.011660534888505936, 0.010899361222982407, 0.0016694539226591587, 0.004537351429462433, -6.849214696558192e-05, -0.015223476104438305, 0.002086479915305972, -0.006456481292843819, 0.0345713272690773, -0.028265999630093575, 0.006672417279332876, 0.032627902925014496, 0.013474395498633385, 0.020362747833132744, -0.03321092948317528, 0.010283944196999073, 0.0011289394460618496, 0.0034360787831246853, -0.060634780675172806, 0.05467495322227478, 0.012999337166547775, -0.00976569764316082, -0.013247663155198097, -0.02694879099726677, 0.016065625473856926, 0.019131913781166077, -0.026149827986955643, 0.03761602193117142, 0.014543278142809868, -0.0027720762882381678, -0.00791944656521082, 0.00918806903064251, -0.004148667212575674, 0.011109898798167706, -0.04007769003510475, 0.04681488871574402, -0.003886844962835312, -0.032779060304164886, 0.02139924094080925, 0.009242053143680096, -0.02824440598487854, -0.019067132845520973, -0.011099101975560188, -0.02498377487063408, 0.024098439142107964, 0.013193679042160511, 0.00962533988058567, 0.006024609785526991, 0.05946872755885124, 0.01661626249551773, -0.013107304461300373, -0.028136437758803368, 0.001398184453137219, 0.011844079941511154, 0.008864165283739567, -0.010634839534759521, 0.018592074513435364, 0.012405512854456902, 0.011336631141602993, 0.025070149451494217, 0.07160431891679764, -0.013485192321240902, 0.00021475492394529283, 0.0033874933142215014, 0.014446106739342213, -0.015730924904346466, 0.02197146974503994, 0.020233187824487686, 0.008901954628527164, 0.046555764973163605, -0.00103176839184016, -0.0024589691311120987, -0.017598770558834076, -0.013085710816085339, 0.010694221593439579, 0.007368810009211302, 0.031613003462553024, 0.007989625446498394, -0.04672851413488388, 0.00880478322505951, -0.011671331711113453, -0.04204270616173744, -0.012524277903139591, -0.0031364678870886564, 0.017156101763248444, 0.0066562220454216, 0.0016708035254850984, 0.04888787120580673, 0.004683108069002628, -0.0033146149944514036, 0.04133011773228645, -0.020190000534057617, 0.03940828889608383, 0.0320664718747139, -0.011509379372000694, -0.007050304673612118, -0.009846673347055912, 0.03016623482108116, 0.024249592795968056, 0.01972573809325695, -0.02973436377942562, -0.025782737880945206, 0.036212436854839325, -0.052256468683481216, 0.0026344170328229666, -0.03364280238747597, 0.014305748976767063, -0.022802824154496193, -0.02301875874400139, -0.010947946459054947, 0.009684721939265728, 0.00021661062783095986, -0.0022038950119167566, -0.006980125792324543, 0.014662042260169983, -0.022608481347560883, 0.04737631976604462, 0.0017031938768923283, 0.004148667212575674, -0.004645319655537605, 0.011509379372000694, 0.0013995340559631586, -0.03413945436477661, 0.006548253819346428, -0.027942096814513206, -0.019941674545407295, -0.012599855661392212, 0.014759213663637638, 0.0024994572158902884, -0.026603294536471367, -0.01762036420404911, -0.014068218879401684, -0.04169720783829689, -0.01905633695423603, -0.01837613806128502, 0.0348520427942276, 0.005549550987780094, 0.01062944158911705, 0.0006609660922549665, -0.03716255724430084, -0.0190995242446661, -0.009053109213709831, -0.006980125792324543, 0.0244655292481184, 0.015525786206126213, 0.025912299752235413, 0.019229086115956306, 0.021863503381609917, 0.00943099707365036, 0.0012085657799616456, 0.026797635480761528, -0.0022038950119167566, 0.004710100125521421, -0.01718849129974842, -0.0008502473356202245, -0.018084624782204628, 0.02694879099726677, 0.00202304869890213, 0.03729211911559105, 0.021507209166884422, -0.015730924904346466, 0.01520188245922327, -0.010019422508776188, -0.010661831125617027, 0.003778876969590783, -0.014478497207164764, -0.022824417799711227, 0.0027693770825862885, -0.0020122521091252565, 0.018257373943924904, 0.029518427327275276, -0.02714313380420208, 0.0021998463198542595, 0.016076423227787018, 0.005322818178683519, 0.010138187557458878, -0.0033038181718438864, -0.01723167859017849, 0.011876470409333706, -0.00010206341539742425, 0.010381114669144154, -0.025437241420149803, 0.03500319644808769, -0.04204270616173744, -0.01679980754852295, 0.019995657727122307, 0.04240979626774788, 0.023148320615291595, -0.010543067008256912, -0.017015744000673294, 0.026408951729536057, 0.00039813166949898005, -0.03757283464074135, 0.004831564147025347, -0.0061163823120296, -0.013280053623020649, -0.0033632004633545876, 0.026560107246041298, -0.013150491751730442, 0.008356716483831406, -0.0507449209690094, -0.03603969141840935, 0.015223476104438305, 0.05480451136827469, -0.01160655077546835, 0.005679112393409014, -0.024163218215107918, 0.0014116804813966155, -0.014025031588971615, -0.03141866251826286, 0.05778442695736885, 0.015525786206126213, -0.030986791476607323, -0.011768502183258533, -0.008324326016008854, -0.006137975957244635, 0.021669160574674606, -0.005722299218177795, -0.0018057633424177766, 0.013031727634370327, 0.01671343296766281, 0.013506785966455936, 0.018117016181349754, 0.012545871548354626, 0.007514566648751497, -0.005120378453284502, 0.03167778626084328, -0.012470293790102005, -0.011498582549393177, -0.009533566422760487, 0.01604403182864189, -0.029842332005500793, 0.017210084944963455, -0.019736533984541893, 0.009468786418437958, -0.026819229125976562, 0.017847096547484398, 0.032908618450164795, -0.026732856407761574, -0.015784909948706627, -0.005722299218177795, 0.010942548513412476, -0.002484611701220274, -0.02509174309670925, 0.0059598288498818874, -0.011854876764118671, -0.03323252499103546, -0.028222812339663506, -0.023925689980387688, 0.04590795561671257, -0.046944450587034225, -0.020978165790438652, -0.012308342382311821, 0.006337716709822416, 0.007341817952692509, -0.010019422508776188, -0.025523614138364792, -0.024120032787322998, 0.033448461443185806, -0.016767416149377823, 0.009576753713190556, -0.029324084520339966, 0.013226069509983063, -0.002086479915305972, 0.01156336348503828, 0.021280474960803986, 0.015882080420851707, -0.018073828890919685, -0.02455190382897854, -0.005498265847563744, -0.04333832114934921, -0.027834128588438034, -1.4655800441687461e-05, 0.012038422748446465, -0.009366216138005257, -0.0025709860492497683, 0.001612770720385015, -0.054113518446683884, 0.027467036619782448, -0.013582363724708557, 0.005465875845402479, -0.027639785781502724, -0.011876470409333706, 0.028136437758803368, 0.004594034515321255, 0.032390374690294266, -0.0369466207921505, -0.01039191149175167, -0.01261065248399973, 0.024530310183763504, -0.010499879717826843, -0.03921394795179367, 0.02541564777493477, 0.009814283810555935, 0.02541564777493477, 0.011423005722463131, -0.014035828411579132, 0.0023145622108131647, 0.01895916648209095, -0.024767840281128883, 0.012848181650042534, -0.03921394795179367, 0.0051122806034982204, -0.0507449209690094, -0.003813966643065214, 0.006137975957244635, -0.013668738305568695, 0.006839767564088106, 0.01337722409516573, -0.02494058758020401, 0.02021159417927265, -0.043057605624198914, -0.016346342861652374, 0.029669582843780518, -0.042971231043338776, 0.015288257040083408, -0.027251102030277252, -0.003266029292717576, -0.02183111198246479, -0.024379154667258263, -0.00295562157407403, -0.017879486083984375, -0.00501241022720933, -0.010332529433071613, -0.006240545306354761, 0.01364714466035366, 0.014802400954067707, -0.008588847704231739, -0.030338983982801437, 0.014424513094127178, 0.018170999363064766, -0.01235152967274189, 0.02494058758020401, -0.010661831125617027, 0.010116593912243843, -0.010866970755159855, -0.011768502183258533, -0.011865673586726189, -0.008248748257756233, -0.00913948379456997, 0.0036142258904874325, 0.003552144393324852, 0.020978165790438652, 0.022759636864066124, 0.017512395977973938, -0.020222390070557594, 0.010402708314359188, 0.03912757337093353, 0.03433379530906677, 0.028849026188254356, 0.01805223524570465, 0.010208366438746452, 0.008820978924632072, -0.026387358084321022, -0.011142288334667683, 0.00021661062783095986, -0.0035818356554955244, -0.011552566662430763, -0.021712347865104675, 0.01524506974965334, -0.024400748312473297, 0.03318933770060539, -0.02470305934548378, -0.007617136463522911, 0.006893751211464405, 0.013841486535966396, -0.010251553729176521, -0.002600677078589797, 0.06862440705299377, 0.003552144393324852, 0.004388895817101002, 0.013204475864768028, 0.053206589072942734, -0.01904553920030594, -0.002888141665607691, 0.030900416895747185, 0.007406598888337612, -0.005776283331215382, -0.0207730270922184, 0.008227154612541199, -0.023666566237807274, -0.010121991857886314, 0.019185898825526237, -0.013636347837746143, 0.005201354157179594, -0.02709994651377201, 0.03914916515350342, 0.05173822492361069, -0.04685807600617409, -0.022079437971115112, 0.017015744000673294, 0.012470293790102005, 0.03020942211151123, -0.017890283837914467, -0.02139924094080925, -0.022241389378905296, 0.005538754165172577, -0.012297545559704304, -0.00737420842051506, -0.026128234341740608, -0.03146184980869293, -0.0005226322100497782, 0.006159569602459669, -0.018311358988285065, 0.00295562157407403, -0.019023945555090904, 0.00878858845680952, 0.027035165578126907, 0.031137946993112564, -0.0037815761752426624, -0.008459285832941532, -0.0090962965041399, 0.003476566867902875, -0.01445690356194973, -0.0035953314509242773, -0.006035406608134508, 0.011887267231941223, 0.010208366438746452, 0.013960251584649086, 0.012124796397984028, -0.02427118644118309, 0.044202063232660294, -0.0165190901607275, -0.03426901623606682, 0.008869564160704613, -6.0394551837816834e-05, 0.02733747661113739, 0.02619301527738571, 0.018408529460430145, 0.01699415035545826, -0.013323240913450718, 0.030943604186177254, 0.014370528981089592, -0.018883587792515755, -0.02336425706744194, 0.032239217311143875, -0.02938886545598507, -0.009404005482792854, 0.024292780086398125, -0.012535074725747108, 0.05070173367857933, 0.002020349493250251, -0.023061946034431458, -0.006704807281494141, 0.03202328458428383, -0.018732432276010513, 0.029129743576049805, 0.01457566861063242, -0.008837173692882061, -0.021518005058169365, 0.003778876969590783, -0.0052634356543421745, -0.014413716271519661, 0.029691176488995552, -0.007034109439700842, 0.036881837993860245, -0.012513481080532074, -0.00206353678368032, -0.022608481347560883, -0.03454973176121712, -0.0012362325796857476, -0.005177061539143324, -0.00253184768371284, -0.030900416895747185, 0.02072983980178833, -0.03433379530906677, -0.010089601390063763, 0.01799825206398964, 0.011293443851172924, -0.02025478146970272, -0.03936510160565376, -0.023148320615291595, 0.013614754192531109, 0.05204053595662117, -0.03647156059741974, 0.028827432543039322, -0.028352374210953712, 0.02043832652270794, -0.021625973284244537, -0.031332287937402725, 0.004826165735721588, -0.02039513923227787, -0.0025426442734897137, -0.03824223577976227, -0.04513058811426163, 0.0018179097678512335, 0.02029796689748764, -0.0072770374827086926, 0.010732010938227177, 0.03714096173644066, -0.00047404662473127246, -0.021647566929459572, -0.006591441109776497, 0.009144882671535015, 0.028741057962179184, -0.013150491751730442, 0.016961758956313133, 0.006845165975391865, -0.005868056323379278, -0.03977537900209427, -0.004075788892805576, -0.03383714333176613, 0.022824417799711227, 0.007023312617093325, 0.01084537710994482, 0.026732856407761574, 0.024789433926343918, 0.03591012954711914, -0.0016033235006034374, -0.0068343691527843475, 0.009301436133682728, -0.017166897654533386, 0.03251993656158447, 0.0266248881816864, -0.012697027064859867, 0.004872051998972893, -0.0047397916205227375, -0.00796803180128336, 0.011919657699763775, -0.015137101523578167, 0.006591441109776497, -0.009053109213709831, -0.004812669940292835, -0.0269056037068367, -0.007725104223936796, 0.0525587797164917, 0.005465875845402479, -0.03072766773402691, 0.016724230721592903, 0.032001689076423645, 0.004175659269094467, 0.017318053171038628, 0.021993063390254974, -0.029453646391630173, 0.06694010645151138, 0.0069585321471095085, 0.03768080100417137, 0.02848193608224392, -0.012707823887467384, 0.009058508090674877, -0.008669823408126831, -0.030382171273231506, -0.009107093326747417, -0.04439640790224075, -0.034873634576797485, -0.0031121750362217426, -0.01244870014488697, 0.012524277903139591, 0.016842994838953018, -0.010694221593439579, -0.013247663155198097, -0.010089601390063763, 0.0019852600526064634, -0.016108812764286995, 0.016335545107722282, 0.025653176009655, 0.008437692187726498, -0.00372759229503572, -0.050485797226428986, 0.014111406169831753, 0.030360577628016472, 0.00866442546248436, 0.01345280185341835, 0.0067641898058354855, 0.023105133324861526, -0.023191507905721664, 0.02513493038713932, -0.0001835454604588449, 0.01256746519356966, -0.02020079642534256, -0.005406493321061134, 0.003166159149259329, 0.011617347598075867, 0.02455190382897854, -0.004240439739078283, -0.05510682240128517, -0.021906690672039986, -0.022155016660690308, -0.004243139177560806, 0.01604403182864189, 0.008022015914320946, -0.012167983688414097, 0.004178358241915703, -0.022370951250195503, 0.01445690356194973, -0.04169720783829689, -0.03958103805780411, -0.029712770134210587, -0.019315460696816444, -0.016875384375452995, 0.007714307401329279, -0.005322818178683519, 0.0235585980117321, -0.04007769003510475, 0.028265999630093575, -0.018969962373375893, 0.012189577333629131, -0.007055703084915876, -0.01679980754852295], [0.012450658716261387, 0.016341054812073708, -0.010070488788187504, -0.010251437313854694, -0.03811056911945343, -0.023384133353829384, -0.017844321206212044, 0.02543024532496929, 0.058683037757873535, -0.014218388125300407, -0.022145330905914307, 0.003893875749781728, 0.01378689520061016, -0.0446803979575634, 0.025096185505390167, 0.01795567385852337, 0.005376262590289116, -0.007627681829035282, -0.0030709074344486, -0.012763839215040207, -0.0008943038992583752, -0.008184446953237057, -0.004593311809003353, 0.027448518201708794, 0.029063137248158455, -0.0006559388712048531, -0.047742605209350586, -0.10467183589935303, 0.04106142371892929, 0.007829508744180202, 0.0268082395195961, -0.04955209046602249, 0.0692615732550621, -0.04454120621085167, 0.015199686400592327, -0.010975231416523457, 0.04685178026556969, 0.01737106963992119, -0.015603341162204742, -0.017273636534810066, 0.016563761979341507, 0.0011874755145981908, 0.009506763890385628, 0.045905280858278275, 0.004962168633937836, -0.0042662122286856174, -0.04459688439965248, 0.012381063774228096, 0.05729112774133682, -0.021143153309822083, 0.003474562196061015, 0.012207074090838432, 0.0230083167552948, 0.016146186739206314, -0.011156179942190647, -0.045459870249032974, -0.01324404962360859, 0.024734288454055786, 0.03443592041730881, 0.01165726874023676, 0.028896108269691467, -0.04721367731690407, -0.007718156091868877, -0.018150541931390762, -0.03488133102655411, -0.025082267820835114, 0.015700776129961014, 0.03788786381483078, 0.009771226905286312, 0.014823870733380318, 0.02421928197145462, 0.027824334800243378, -0.05589921399950981, -0.008511546067893505, -0.03524322807788849, 0.021839110180735588, -0.024636855348944664, 0.012193155474960804, -0.04256469011306763, -0.009130947291851044, -0.04103358834981918, 0.0020704702474176884, -0.0035197993274778128, -0.06085442379117012, 0.0069143264554440975, -0.03073343262076378, -0.08240123093128204, -0.017941754311323166, -0.05080481246113777, -0.02118491195142269, -0.014336700551211834, -0.018192298710346222, -0.01657767966389656, 0.043984442949295044, -0.02314750850200653, -0.004259252920746803, -0.0007216197554953396, -0.01965380646288395, 0.012381063774228096, 0.005202273838222027, 0.028130555525422096, -0.016410650685429573, -0.021699918434023857, 0.022493308410048485, 0.02292480133473873, 0.0158538855612278, -0.005487615708261728, -0.02444198727607727, -0.0236764345318079, 0.023759949952363968, 0.04621150344610214, -0.012234912253916264, -0.007725115399807692, 0.029953962191939354, -0.03028802014887333, 0.013668582774698734, -0.01813662238419056, 0.042954426258802414, -0.011337129399180412, -0.025054428726434708, -0.03329455107450485, -0.02408009022474289, 0.003391047241166234, -0.012986545450985432, 0.034380242228507996, -0.03412969782948494, 0.03435240685939789, -0.018373247236013412, -0.004983047489076853, 0.0010039170738309622, 0.025082267820835114, -0.03827759996056557, 0.020308006554841995, -0.019013527780771255, 0.0010152263566851616, 0.025722546502947807, -0.01710660755634308, 0.00598870450630784, 0.033266711980104446, -0.022368038073182106, 0.05751383304595947, -0.01979299820959568, 0.0424533374607563, 0.02484564110636711, -0.02975909411907196, -0.015102253295481205, -0.0639166310429573, 0.07026375085115433, -0.01702309213578701, 0.02140761725604534, -0.018108785152435303, -0.0200992189347744, -0.026599451899528503, -0.039112746715545654, -0.004238374065607786, -0.04999750480055809, -0.010829080827534199, 0.03426888957619667, -0.016006996855139732, 0.012102681212127209, 0.016508083790540695, -0.04223063215613365, -0.01863771118223667, 0.0032066188286989927, -0.003453683340921998, 0.003286653896793723, -0.027643386274576187, 0.0009508503717370331, -0.067034512758255, -0.01979299820959568, -0.02632106840610504, -0.00016278853581752628, -0.024943076074123383, -0.04977479949593544, 0.007116153836250305, -0.04030979052186012, 0.0388622023165226, 0.023175345733761787, -0.015659017488360405, 0.030093152076005936, 0.023425890132784843, 0.06553125381469727, 0.09626468271017075, -0.07421678304672241, -0.01590956188738346, -0.001739020925015211, -0.004165298771113157, 0.04721367731690407, -0.012680324725806713, -0.00958331860601902, -0.022228846326470375, 0.015561584383249283, 0.03273778781294823, 0.04278739541769028, -0.018832579255104065, -0.030148828402161598, 0.006020022556185722, 0.022938720881938934, -0.010947393253445625, 0.02430279552936554, 0.008434991352260113, -0.04365038126707077, -0.0335172563791275, 0.013508512638509274, -0.06597666442394257, 0.025833899155259132, 0.01226275134831667, -0.022270603105425835, 0.010933474637567997, -0.03073343262076378, 0.004774260800331831, -0.04164602980017662, -0.008629858493804932, 0.04891181364655495, 0.00388691620901227, 0.023175345733761787, 0.01521360594779253, -0.004819497931748629, 0.04843856394290924, 0.03412969782948494, -0.020071381703019142, -0.05008101835846901, 0.027462437748908997, 0.005699882749468088, 0.02743459865450859, 0.03735893592238426, -0.02543024532496929, -0.012520254589617252, -0.00033688638359308243, -0.0050596026703715324, -0.0011535476660355926, 0.015464150346815586, -0.037553805857896805, -0.002747287740930915, -0.03465862572193146, 0.009868660941720009, 0.02820015139877796, 0.01340411975979805, -0.004749902058392763, -0.03131803497672081, -0.04788179695606232, -0.050415076315402985, -0.030009638518095016, -0.0015406734310090542, 0.02474820800125599, 0.02895178459584713, 0.025625113397836685, -0.0046107107773423195, 0.001224883133545518, -0.0009682492818683386, -0.000732929038349539, 0.010181841440498829, 0.01840108633041382, -0.008344517089426517, -0.019152719527482986, -0.014211428351700306, 0.041924409568309784, 0.04732503369450569, 0.03078910894691944, -0.026599451899528503, 0.03140155225992203, -0.0063088443130254745, -0.011803419329226017, -0.0029247566126286983, -0.059629540890455246, 0.010223599150776863, 0.00987562071532011, -0.0004419322940520942, 0.004374085459858179, 0.007467611692845821, 0.005331025458872318, 0.03229237347841263, 0.04298226535320282, 0.007342339493334293, -0.03095613792538643, 0.019013527780771255, 0.047158002853393555, 0.010870838537812233, -0.04696313291788101, 0.08841429650783539, -0.006608105730265379, -0.00769727723672986, -0.0020339323673397303, -0.025666870176792145, -0.0009899978758767247, -0.01405135914683342, 0.044123630970716476, -0.0025506799574941397, 0.018512438982725143, -0.05289268121123314, 0.05074913799762726, -0.0433441624045372, 0.03850030526518822, 0.007307541556656361, -0.013863450847566128, -0.0026289750821888447, 0.01458724495023489, -0.02640458382666111, 0.03738677501678467, -0.034018345177173615, 0.0039112744852900505, 0.006107016932219267, -0.04451336711645126, -0.02126842550933361, 0.002395829651504755, -0.018345410004258156, 0.0032849139533936977, -0.0013962624361738563, -0.03449159860610962, 0.0025924374349415302, 0.014656840823590755, 0.0634155422449112, 0.013223170302808285, -0.03176344931125641, -0.015923481434583664, 0.02448374405503273, 0.03226453810930252, 0.014113995246589184, 0.0030761270318180323, 0.004749902058392763, -0.027935687452554703, -0.013578108511865139, -0.005303187295794487, -0.05553731694817543, 0.011462400667369366, 0.002954334719106555, -0.030816948041319847, 0.016605518758296967, 0.017565937712788582, 0.009569399990141392, -0.05197402089834213, 0.02086477167904377, 0.02864556387066841, 0.007627681829035282, 0.02953638695180416, -0.003966951277107, 0.024372391402721405, 0.016508083790540695, 0.013237089850008488, 0.024149686098098755, -0.0058703916147351265, -0.03240372613072395, -0.00479165930300951, 0.0321810208261013, -0.026195796206593513, 0.007370177656412125, 0.08306934684515, -0.017454585060477257, 0.02203397825360298, 0.0172040406614542, -0.007801670581102371, 0.019542453810572624, -0.03758164122700691, 0.017552020028233528, 0.0317077711224556, -0.009172705002129078, 0.020335843786597252, -0.058014921844005585, -0.00743977352976799, 0.024956995621323586, -0.0639166310429573, 0.04326064512133598, -0.024734288454055786, 0.0268082395195961, -0.0020965684670954943, -0.007933902554214, 0.013661623001098633, 0.00018007869948633015, 0.0042975302785634995, 0.006590706761926413, 0.021435456350445747, 0.019375424832105637, -0.021031800657510757, 0.02193654514849186, -0.013202291913330555, 0.018428923562169075, -0.018108785152435303, 0.00891520082950592, 0.0509440042078495, -0.007913024164736271, 0.036662980914115906, 0.004426282364875078, -0.027044864371418953, 0.011051787063479424, -0.0370805561542511, -0.05177915096282959, 0.011622470803558826, 0.011211857199668884, -0.028840431943535805, -0.01577037014067173, 0.008010457269847393, -0.00043062298209406435, 0.052029695361852646, 0.015436312183737755, 0.03101181425154209, -0.0496077686548233, 0.02470645122230053, 0.02359292097389698, -0.007217067293822765, 0.02864556387066841, -0.025750385597348213, -0.013536350801587105, 0.0344080813229084, -0.011831258423626423, 0.012548092752695084, 0.012568972073495388, -0.004889093339443207, 0.01845676265656948, 0.03270994871854782, -0.03184696286916733, 0.01293782889842987, -0.00943020824342966, -0.0029995718505233526, -0.021240588277578354, 0.01948677748441696, -0.0008547214092686772, -0.032904814928770065, 0.0321531817317009, 0.012026125565171242, 0.0028325424063950777, 0.030594240874052048, 0.01344587653875351, 0.022061815485358238, 0.0011431083548814058, -0.023982655256986618, 0.0054980553686618805, 0.02925800532102585, -0.029063137248158455, -0.053811345249414444, -0.0035180593840777874, 0.035131875425577164, 0.017635533586144447, -0.0326264351606369, 0.022465471178293228, -0.03546593710780144, 0.019110960885882378, -0.06191227585077286, 0.0504985935986042, -0.010307113640010357, 0.029870446771383286, -0.05216888710856438, -0.037191908806562424, 0.03251508250832558, -0.03301616758108139, -0.05500838905572891, -0.026780400425195694, 0.024205362424254417, -0.030538564547896385, 0.03875084966421127, -0.016828224062919617, -0.0014388897689059377, -0.05545380339026451, -0.004332328215241432, 0.009764268063008785, -0.056623008102178574, 0.01492130383849144, 0.047297194600105286, -0.012847354635596275, 0.010147043503820896, 0.035410258919000626, 0.04075520485639572, 0.0144062964245677, -0.004600271582603455, 0.04373389855027199, -0.04262036830186844, 0.027142297476530075, 0.026822157204151154, -0.00139365263748914, -0.03323887661099434, -0.011385845951735973, -0.00045976616092957556, -0.00034036615397781134, -0.04303793981671333, -0.020920448005199432, 0.024831723421812057, -0.010279275476932526, -0.004401924088597298, 0.01867946796119213, -0.017037011682987213, -0.01675862818956375, 0.0015302340034395456, 0.028756916522979736, -0.04392876476049423, 0.03610621392726898, 0.05740248039364815, 0.08034120500087738, 0.04259252920746803, 0.0741611123085022, -0.009917378425598145, -0.05445162579417229, 0.004151379689574242, -0.02998179942369461, 0.04451336711645126, -0.016382813453674316, 0.020850852131843567, -0.027810415253043175, -0.02001570537686348, 0.0055467719212174416, -0.006155733950436115, -0.013543310575187206, 0.015505907125771046, 0.0025089227128773928, -0.02341197244822979, -0.020363682880997658, 0.09760092198848724, -0.018373247236013412, -0.02975909411907196, 0.04459688439965248, -0.047380708158016205, -0.004140940494835377, -0.05141725391149521, -0.03318319842219353, -0.02636282704770565, -0.02735108509659767, -0.04381741210818291, -0.023620758205652237, -0.016911739483475685, 0.025221457704901695, -0.0055467719212174416, 0.0007198798703029752, 0.004976087715476751, 0.013139655813574791, 0.007759913336485624, -0.012248831801116467, -0.04551554471254349, -0.034380242228507996, 0.04426282271742821, -0.10327992588281631, 0.04532067850232124, -0.04977479949593544, -0.0009308416047133505, -0.01813662238419056, -0.04106142371892929, 0.027893930673599243, 9.629208943806589e-05, 0.014204469509422779, -0.0031666012946516275, 0.02242371439933777, 0.022228846326470375, 0.0007699017296545208, -0.048633430153131485, 0.035048361867666245, -0.029703417792916298, 0.024831723421812057, -0.0025541598442941904, -0.029731255024671555, 0.032542917877435684, 0.01791391707956791, -0.002931716153398156, 0.03883436322212219, -0.008302759379148483, 0.009847782552242279, 0.0321531817317009, 0.006006103474646807, 0.041701704263687134, -0.061188481748104095, -0.00906831119209528, -0.0037164068780839443, 0.001209224108606577, -0.011051787063479424, 0.003411926096305251, -0.009910418651998043, 0.034157536923885345, -0.021699918434023857, 0.0022148811258375645, 0.017273636534810066, -0.0015589422546327114, 0.01183821726590395, -0.00135972467251122, -0.057124096900224686, -0.037860024720430374, 0.003625932615250349, -0.013529391027987003, 0.05319890379905701, 0.058237627148628235, -0.002392349997535348, 0.07165566831827164, 0.009117028675973415, -0.0014293203130364418, 0.022618580609560013, 0.003554597031325102, -0.020127058029174805, -0.019403263926506042, 0.03123452141880989, -0.004958689212799072, -0.01405135914683342, -0.006326243281364441, -0.0005393661558628082, -0.014030479826033115, -0.02140761725604534, -0.015144010074436665, -0.013974803499877453, 0.005386702250689268, -0.00024662952637299895, -0.060074951499700546, -0.01613226905465126, 0.02001570537686348, 0.00958331860601902, -0.04629501700401306, 0.003399746725335717, 0.002615056000649929, -0.02247939072549343, -0.0288125928491354, 0.010662050917744637, -0.04262036830186844, 0.007328420411795378, -0.014809951186180115, -0.01801135018467903, -0.027532033622264862, -0.0047673010267317295, 0.007996538653969765, 0.0460166335105896, 0.005348424427211285, -0.018442843109369278, -0.0001309267827309668, 0.01344587653875351, -0.024135766550898552, -0.04061601310968399, 0.0038695172406733036, -0.0107246870175004, 0.029118813574314117, -0.040643852204084396, 0.0004086568660568446, 0.016995254904031754, -0.056845713406801224, 0.057124096900224686, 0.029007460922002792, -0.020043542608618736, 0.03273778781294823, 0.010822121053934097, 0.0021957422140985727, 0.002141805598512292, -0.016828224062919617, -0.002844721544533968, -0.006030461750924587, -0.022409794852137566, 0.02644634060561657, 0.02268817648291588, -0.02139369770884514, 0.011545916087925434, -0.008191406726837158, -0.018303651362657547, 0.037108391523361206, -0.05016453564167023, 0.015881724655628204, 0.016995254904031754, -0.055064067244529724, 0.015700776129961014, -0.0252492967993021, -0.024469824507832527, 0.05968521535396576, 0.017412828281521797, 0.026195796206593513, -0.01827581413090229, 0.008713373914361, -0.009729470126330853, 0.006235769018530846, 0.006124415900558233, 0.002126146573573351, 0.007349299266934395, 0.01698133535683155, 0.00388691620901227, 0.007502409629523754, -0.011719904839992523, -0.0321810208261013, 0.023175345733761787, -0.0012048744829371572, -0.021296264603734016, 0.027545953169465065, -0.0252492967993021, 0.07605411112308502, 0.009757308289408684, 0.0006120066391304135, -0.027532033622264862, 0.021324101835489273, 0.028353262692689896, 0.004074824508279562, -0.020140977576375008, -0.022618580609560013, -0.0051117995753884315, -0.012012206949293613, 0.0027838253881782293, -0.05701274424791336, 0.013028303161263466, 0.022451551631093025, -0.014392377808690071, -0.021686000749468803, -0.008448909968137741, 0.00014245357306208462, 0.0018251455621793866, -0.029647741466760635, 0.014949142001569271, 0.022242765873670578, 0.014364538714289665, 0.030928300693631172, -0.058460332453250885, 0.036078378558158875, 0.04042114317417145, -0.00906831119209528, -0.04610014706850052, -0.040727365761995316, 0.0357443168759346, -0.02488739974796772, -0.019500697031617165, -0.03521539270877838, -0.018526358529925346, -0.007808630354702473, -0.00840019341558218, 0.025277134031057358, 0.02614011988043785, -0.010669010691344738, 0.0005302317440509796, -0.03635675832629204, -0.029953962191939354, -0.002131366403773427, 0.007558085955679417, 0.0093814916908741, 0.02858988754451275, -0.010481102392077446, -0.007293622475117445, 0.01823405735194683, 0.006437596399337053, -0.02917448990046978, 0.03412969782948494, 0.012200115248560905, -0.009270139038562775, -0.010293194092810154, -0.03390699252486229, -0.0011317990720272064, 0.049524255096912384, 0.0172040406614542, -0.00039647764060646296, -0.015130091458559036, -0.015297120437026024, -0.05545380339026451, 0.04131196811795235, -0.00028925685910508037, 0.03833327442407608, -0.002684651641175151, -0.015714693814516068, 0.02769906260073185, -0.01590956188738346, -0.011740783229470253, -0.0019069204572588205, -0.028353262692689896, 0.024609016254544258, 0.025318892672657967, 0.0011779061751440167, -0.02256290428340435, -0.03774867206811905, -0.02903529815375805, 0.012408901937305927, 0.0037338058464229107, 0.02555551752448082, 0.03571648150682449, 0.0008564612944610417, 0.017092688009142876, -0.024191442877054214, -0.013543310575187206, -0.008128770627081394, 0.009151825681328773, -0.01536671631038189, -0.00810789130628109, 0.018707307055592537, 0.01264552678912878, 0.020990043878555298, -0.056817878037691116, 0.00906831119209528, -0.013125737197697163, -0.04401227831840515, -0.008776010014116764, -0.01018880121409893, -0.024678612127900124, -0.01036278996616602, 0.0019034405704587698, -0.043399836868047714, -0.04365038126707077, -0.037776511162519455, -0.003302312921732664, 0.0025402407627552748, 0.034074023365974426, -0.0006233159219846129, 0.0008216634741984308, 0.046935297548770905, -0.03318319842219353, -0.0009873880771920085, -0.01671687141060829, 0.013070059940218925, -0.012227953411638737, -0.016062673181295395, -0.001943458104506135, -0.004081783816218376, 0.019695565104484558, 0.017663372680544853, 0.0040052286349236965, 0.02533281035721302, 0.008080053143203259, -0.06692316383123398, -0.008059174753725529, 0.026460260152816772, -0.00487169437110424, -0.006743817124515772, 0.01688390038907528, -0.004401924088597298, 0.016424570232629776, 0.003754684468731284, 0.015283201821148396, 0.010717728175222874, 0.005835594143718481, 0.007210107985883951, -0.007391056511551142, -0.007077876012772322, 0.020920448005199432, 0.04699097201228142, 0.013974803499877453, 0.0010900415945798159, -0.013508512638509274, 0.01764945313334465, 0.024247119203209877, 0.009235341101884842, 0.014754274860024452, -0.03145722672343254, 0.03980870172381401, 0.0015406734310090542, 0.030037475749850273, 0.004214015789330006, -0.03443592041730881, 0.008010457269847393, 0.029285842552781105, 0.008038295432925224, -0.0012518514413386583, 0.01841500587761402, 0.026919592171907425, -0.021880866959691048, -0.011469360440969467, -0.0008734252187423408, -0.019556373357772827, -0.017412828281521797, -0.03265427052974701, 0.010905636474490166, 0.007342339493334293, 0.007585924118757248, 0.03546593710780144, 0.002357552060857415, 0.006590706761926413, -0.025277134031057358, -0.03605053946375847, 0.014503730461001396, -0.02577822282910347, 0.021157072857022285, -0.022618580609560013, -0.02608444355428219, -0.01052286010235548, 0.04740854725241661, -0.02895178459584713, -0.012562012299895287, -0.013202291913330555, -0.0039251940324902534, 0.04223063215613365, -0.0009873880771920085, -0.0027803457342088223, 0.017579857259988785, -0.02961990237236023, 0.010488062165677547, -0.006541989743709564, -0.02140761725604534, 0.01378689520061016, -0.0008660306921228766, 0.0028116635512560606, 0.005967825651168823, 0.007258824538439512, 0.00025902624474838376, -0.002314054872840643, -0.04807666316628456, -0.002093088813126087, -0.015784289687871933, -0.008372355252504349, 0.01872122660279274, -0.009423249401152134, 0.03685784712433815, 0.02444198727607727, -0.009221421554684639, 0.010460224002599716, -0.006740337237715721, 0.007067436818033457, -0.0023679914884269238, 5.083743599243462e-05, 0.03329455107450485, 0.013974803499877453, 0.016647275537252426, -0.03184696286916733, -0.022131411358714104, 0.002053071279078722, -0.0071961889043450356, 0.008789928629994392, -0.032320212572813034, 0.008462829515337944, -0.010467183776199818, 0.030900461599230766, -0.05626111105084419, -0.022841287776827812, 0.036078378558158875, 0.005327546037733555, 0.018331490457057953, 0.020739499479532242, -0.01581212878227234, -0.03373996540904045, -0.020391521975398064, -0.03287697955965996, 0.009931297041475773, 0.011413684114813805, 0.01716228388249874, 0.016508083790540695, -0.0061522540636360645, 0.02203397825360298, 0.010550698265433311, -0.07226810604333878, 0.014378458261489868, -0.00469074584543705, 0.02171383798122406, 0.02774081937968731, -0.007411935366690159, -0.001381473382934928, 0.03646811470389366, 0.018832579255104065, -0.02377386949956417, -0.013619866222143173, -0.011852136813104153, 0.046044472604990005, -0.02886826917529106, 0.02041935920715332, 0.040588174015283585, 0.0005963476141914725, -0.014642921276390553, 0.012603769078850746, -0.028255827724933624, 0.018526358529925346, -0.013167493976652622, 0.006312324199825525, 0.005793836433440447, -0.015798209235072136, -2.240109461126849e-05, -0.004729023203253746, -0.019458940252661705, 0.04437417536973953, 0.017552020028233528, 0.01277775876224041, -0.025931334123015404, 0.004388005007058382, -0.010870838537812233, 0.06046468764543533, -0.06402798742055893, -0.011316250078380108, 0.01536671631038189, 0.025263216346502304, -0.02533281035721302, 0.020321926102042198, 0.013077019713819027, 0.015380634926259518, -0.0005828634602949023, 0.018999608233571053, -0.019319748505949974, 0.014656840823590755, -0.011441522277891636, 0.026070525869727135, -0.00015463279851246625, 0.03376780077815056, 0.017663372680544853, 0.006816892419010401, 0.0007407585508190095, -0.01067597046494484, -0.033266711980104446, 0.020628146827220917, 0.0047359829768538475, 0.005661604925990105, 0.010849959217011929, 0.014336700551211834, -0.010919555090367794, -0.009110068902373314, -0.04623933881521225, 9.87931780400686e-05, 0.021240588277578354, -0.01492130383849144, 0.020697742700576782, 0.04000357165932655, 0.028158394619822502, -0.012401942163705826, 0.03972518816590309, 0.022326279431581497, 0.01862379163503647, -0.024052251130342484, 0.02122666873037815, 0.05411756411194801, 0.03056640364229679, -0.00016028745449148118, 0.0018912614323198795, 0.022910883650183678, 0.04732503369450569, -0.0014980460982769728, 0.049524255096912384, 0.002044371794909239, 0.0643063634634018, -0.01666119508445263, -0.029898284003138542, 0.009353653527796268, -0.02480388432741165, 0.00987562071532011, 0.0027803457342088223, -0.03966951370239258, -0.05080481246113777, 0.020669903606176376, -0.031151005998253822, -0.015283201821148396, 0.014246226288378239, 0.00954156182706356, 0.004370606038719416, -0.013543310575187206, 0.02836718037724495, -0.028756916522979736, -0.007258824538439512, 0.012694244273006916, -0.004669866990298033, -0.008038295432925224, 0.02801920287311077, 0.04248117655515671, -0.03354509547352791, -0.0029508548323065042, -0.03877868875861168, -0.02555551752448082, 0.011497198604047298, 0.006521110888570547, -0.008428031578660011, 0.037776511162519455, -0.001830365159548819, 0.0022566383704543114, -0.020447198301553726, -0.009680752642452717, 0.02149113267660141, 0.016327135264873505, 0.031206682324409485, -0.0018703826935961843, -0.040643852204084396, -0.0015911301597952843, -0.008121810853481293, 0.02135194092988968, -0.03301616758108139, 0.007123113144189119, -0.01863771118223667, 0.004053945653140545, 0.007063956931233406, 0.009082230739295483, 0.019500697031617165, -0.014267105609178543, -0.01197740901261568, 0.0018860417185351253, 0.008741212077438831, -0.004151379689574242, 0.021658161655068398, -0.0016685553127899766, -0.005400621332228184, -0.0005545901949517429, -0.009256219491362572, -0.009590278379619122, -0.013285806402564049, 0.045682575553655624, 0.01358506828546524, -0.0006550688995048404, -0.028673401102423668, -0.027448518201708794, 0.05214105173945427, -0.00041692136437632143, -0.003114404622465372, -0.004060905426740646, 0.026905672624707222, -0.018874336034059525, 0.0031753007788211107, -0.026070525869727135, -0.012701203115284443, -0.005731200333684683, -0.02886826917529106, 0.01179646048694849, 0.002442806726321578, -0.014893465675413609, 0.0052057537250220776, -0.0049238912761211395, 0.009423249401152134, 0.016633355990052223, -0.006576787680387497, 0.006263607181608677, 0.053727831691503525, 0.03418537601828575, 0.01085691899061203, -0.0375259667634964, -0.011942611075937748, 0.05080481246113777, 5.404536204878241e-05, 0.026028767228126526, 0.004683786071836948, -0.006761216092854738, 0.001578951021656394, -0.01867946796119213, 0.006754256319254637, 0.04891181364655495, -0.0036224527284502983, 0.015116171911358833, -0.027225812897086143, -0.003490221220999956, -0.025750385597348213, 0.013842571526765823, -0.010147043503820896, -0.012053963728249073, 0.013195332139730453, -0.008929120376706123, -0.016410650685429573, -0.013459796085953712, -0.02529105357825756, -0.017426747828722, -0.036301083862781525, -0.03220885992050171, -0.019277991726994514, -0.03012099117040634, -0.038138408213853836, 0.0067264181561768055, 0.00639931857585907, 0.02478996478021145, 0.034157536923885345, 0.011469360440969467, 0.0016589859733358026, 0.04314929246902466, 0.011420643888413906, -0.004875174257904291, 0.02953638695180416, 0.02636282704770565, -0.008031336590647697, 0.027003105729818344, -0.0005637246649712324, -0.02385738305747509, -0.008281880989670753, -0.01607659086585045, -0.012562012299895287, 0.00808701291680336, -0.005160516127943993, 0.022437632083892822, -0.009938256815075874, 0.0016868242528289557, 0.0411171019077301, -0.036161892116069794, 0.09799065440893173, -0.002665512729436159, -0.04437417536973953, -0.0071753100492060184, 0.00567204412072897, 0.0010535039473325014, 0.04888397455215454, -0.009110068902373314, -0.001208354253321886, 0.01970948465168476, 0.03927977755665779, 0.010787323117256165, 0.006573307793587446, 0.010926514863967896, 0.017621614038944244, -0.0028273225761950016, 0.011100503616034985, 0.014378458261489868, 0.010940433479845524, -0.019584212452173233, 0.020572470501065254, -0.0025089227128773928, -0.0018477641278877854, -0.006187052000313997, -0.016341054812073708, 0.0009891280205920339, -0.007982619106769562, -0.02225668355822563, -0.001239672303199768, 0.009548521600663662, 0.018247975036501884, 0.005449338350445032, -0.028339343145489693, -0.016744710505008698, 0.019291909411549568, 0.01649416610598564, 0.0259174145758152, 0.01007744763046503, -0.01603483408689499, 0.010975231416523457, -0.0018529838416725397, 0.0236764345318079, 0.005939987488090992, 0.022006139159202576, 0.018025269731879234, -0.01476819347590208, 0.004885613452643156, -0.023244941607117653, 0.005108319688588381, -0.009966094978153706, -0.014420215971767902, 0.008372355252504349, 0.037860024720430374, 0.02421928197145462, 0.01841500587761402, -0.004374085459858179, -0.01712052710354328, -0.02189478650689125, -0.006872569210827351, -0.01065509207546711, -0.006841251160949469, -0.025680789723992348, 0.023356294259428978, 0.002963034203276038, 0.0069769625551998615, -0.010627253912389278, -0.006072218995541334, -0.016285378485918045, 0.013299725949764252, -0.013278847560286522, 0.04003141075372696, 0.03226453810930252, -0.014023520052433014, -0.016187945380806923, -0.01000785268843174, -0.0005537202814593911, -0.008817766793072224, 0.0035841751378029585, 0.012680324725806713, 0.062079306691884995, 0.016563761979341507, -0.0013997422065585852, 0.003862557699903846, 0.0052370717748999596, 0.021866949275135994, -0.01898568868637085, 0.010592455975711346, 0.01521360594779253, 0.016410650685429573, -0.021588565781712532, 0.013125737197697163, -0.010202719829976559, -0.016048753634095192, -0.0025071827694773674, -0.024414148181676865, -0.01244369987398386, 0.018303651362657547, -0.026251474395394325, -0.008483707904815674, -0.04172954335808754, 0.0033266714308410883, -0.0330718457698822, 0.0012988285161554813, 0.014336700551211834, -0.013007423840463161, -0.01698133535683155, 0.003719886764883995, 0.013083979487419128, 0.05375566706061363, -0.009485885500907898, -0.002929976209998131, 0.029592063277959824, 0.01702309213578701, -0.008295799605548382, 0.0027890449855476618, -0.015533746220171452, 0.014009601436555386, -0.02292480133473873, -0.003126583993434906, 0.005734680220484734, 0.030232343822717667, 0.005244031082838774, 0.02345372922718525, 0.004001749213784933, 0.008059174753725529, -0.021644242107868195, -0.012833435088396072, 0.004850815981626511, -0.00751632871106267, 0.0317077711224556, -0.008650737814605236, 0.014350620098412037, 0.016048753634095192, 0.011142261326313019, 0.016925659030675888, 0.024817803874611855, 0.021546809002757072, 0.006785574369132519, -0.008365395478904247, 0.0042244549840688705, -0.025221457704901695, -0.003939113114029169, 0.0004749902000185102, 0.007418894674628973, 0.015700776129961014, 0.05367215350270271, -0.0012440219288691878, 0.023244941607117653, -0.0393076129257679, 0.026557695120573044, -0.017273636534810066, -0.011232735589146614, -0.02743459865450859, -0.0026394145097583532, -0.024135766550898552, 0.018025269731879234, -0.004763821139931679, 0.016925659030675888, 0.01119097787886858, -0.03140155225992203, -0.024998752400279045, 0.0017607695190235972, 0.018428923562169075, 0.01443413458764553, 0.016522003337740898, 0.017482424154877663, -0.013668582774698734, -0.02193654514849186, -0.007899104617536068, 0.011392805725336075, -0.013766016811132431, -0.036523789167404175, -0.009590278379619122, -0.026348907500505447, -4.746639751829207e-05, 0.010147043503820896, 0.011622470803558826, 0.03293265402317047, -0.04777044430375099, -0.020697742700576782, -0.0003906055062543601, -0.0007890405249781907, 0.008713373914361, 0.010216639377176762, -0.007725115399807692, -0.016104429960250854, 0.02984260767698288, -0.024915236979722977, 0.029731255024671555, 0.02684999629855156, -0.005919108632951975, -0.026515936478972435, -0.01391912717372179, 0.005891270469874144, -0.001997394720092416, -0.00443324213847518, -0.05275349318981171, 0.00163897720631212, -0.006044380832463503, 0.030816948041319847, 0.021379780024290085, 0.020224491134285927, 0.01872122660279274, 0.024149686098098755, 0.012548092752695084, 0.010975231416523457, 0.0021122274920344353, -0.01648024655878544, -0.012659446336328983, 0.008685534819960594, 0.027365004643797874, 0.0003229672438465059, -0.0469074584543705, -0.013257968239486217, -0.007032638881355524, 0.01412095408886671, -0.00541802030056715, 0.011518077924847603, -0.022729935124516487, 0.012617688626050949, -0.033266711980104446, -0.0011822558008134365, 0.031123168766498566, 0.032598596066236496, 0.005776437930762768, 0.011316250078380108, 0.001299698487855494, -0.0007164000417105854, 0.02086477167904377, 0.008407153189182281, 0.03716406971216202, -0.014113995246589184, 0.011476320214569569, -0.015575502999126911, 0.011650308966636658, -0.0026411544531583786, -0.005539812613278627, 0.023119669407606125, 0.007613762281835079, -0.0059469472616910934, -0.012325387448072433, -0.0028795194812119007, 0.0043184091337025166, 0.009284057654440403, -0.019584212452173233, 0.019097043201327324, -0.02104572020471096, -0.0054041012190282345, 0.011726864613592625, 0.00842107180505991, -0.035493772476911545, 0.031652096658945084, 0.012401942163705826, 0.0059469472616910934, 0.014211428351700306, -0.020071381703019142, 0.004060905426740646, -0.024734288454055786, 0.010098326951265335, 0.010508940555155277, -0.02632106840610504, 0.0022688177414238453, 0.008281880989670753, 0.034074023365974426, 0.00384863861836493, 0.0023784309159964323, -0.024372391402721405, -0.0122836297377944, -0.008546344004571438, -0.0010065268725156784, 0.01135104801505804, -0.022771691903471947, -0.026460260152816772, -0.024455906823277473, -0.0015719913644716144, 0.022716015577316284, -0.006545469630509615, -0.02961990237236023, 0.003324931487441063, -0.01661943830549717, 0.012784718535840511, -0.010982191190123558, -0.0012074842816218734, -0.010822121053934097, -0.008233163505792618, 0.02569470927119255, -0.005731200333684683, 0.020363682880997658, -0.012388022616505623, -0.02359292097389698, -0.0013475455343723297, 0.021922625601291656, 0.02220100723206997, -0.015102253295481205, 0.013515472412109375, 0.016730790957808495, 0.016187945380806923, -0.033572934567928314, 0.010251437313854694, -0.011594632640480995, 0.008574182167649269, 0.02041935920715332, 0.0033005729783326387, -0.005129198543727398, -0.009806024841964245, 0.004694225732237101, -0.020739499479532242, 0.015074414201080799, 0.06408365815877914, -0.011705986224114895, 0.012360184453427792, -0.013842571526765823, -0.04593311995267868, -0.028923945501446724, -0.004060905426740646, -0.011518077924847603, 0.014907385222613811, -0.0063088443130254745, 0.021686000749468803, 0.04131196811795235, 0.008428031578660011, -0.002649853704497218, 0.010314073413610458, -0.0012196635361760855, 0.08724509179592133, -0.011678147129714489, 0.03669082000851631, 0.036384597420692444, 0.004784699995070696, 0.03914058580994606, -0.01639673113822937, -0.016201863065361977, -0.006197491195052862, -0.030928300693631172, 0.013793854974210262, -0.032375890761613846, -0.030232343822717667, -0.03123452141880989, -0.021115316078066826, -0.03376780077815056, -0.022451551631093025, -0.00855330377817154, 0.006441075820475817, -0.000706395716406405, 0.014322781935334206, 0.01845676265656948, -0.018025269731879234, 0.05795924365520477, -0.024636855348944664, 0.016382813453674316, 0.03248724341392517, -0.005299707408994436, 0.0008756000897847116, -0.0344080813229084, -0.03145722672343254, 0.021296264603734016, 0.027378922328352928, 0.0018686427501961589, -0.0003416710824239999, 0.01132320985198021, -0.029007460922002792, -9.748826414579526e-05, -0.007857346907258034, 0.00958331860601902, 0.02305007353425026, 0.012394982390105724, -0.011413684114813805, -0.026905672624707222, 0.008434991352260113, 0.026474179700016975, 0.001271860208362341, 0.0020669903606176376, -0.021463293582201004, -0.021950462833046913, 0.07666654884815216, 0.01840108633041382, 0.031206682324409485, -0.021059639751911163, 0.011497198604047298, 0.021686000749468803, 0.036440275609493256, -0.05651165544986725, -0.005765998270362616, -0.012638567015528679, 0.017816482111811638, -0.02305007353425026, -0.04337200149893761, 0.0031700811814516783, 0.024107927456498146], [0.03949449583888054, 0.034208424389362335, -0.01308931689709425, 0.05286070331931114, -0.011925122700631618, 0.019948622211813927, -0.014498935081064701, -0.0026493279729038477, 0.021496685221791267, -0.006601294968277216, 0.023799901828169823, -0.023560769855976105, -0.03529081121087074, -0.018035568296909332, 0.03315121307969093, 0.01886623539030552, -0.03755627200007439, -0.03914209082722664, -0.0024495271500200033, 0.04870736226439476, 0.024366267025470734, 0.06041223183274269, -0.006544658448547125, 0.05633440613746643, -0.002084536710754037, 0.005720282904803753, 0.030634036287665367, 0.015833038836717606, 0.06277837604284286, 0.031540218740701675, 0.05092247575521469, -0.01866486296057701, 0.022163737565279007, -0.01982276327908039, 0.04238924756646156, 0.015644250437617302, 0.003586976323276758, 0.04037550836801529, 0.04090411588549614, -0.03556770086288452, -0.03078506514430046, -0.02294406108558178, 0.003174788551405072, 0.025700369849801064, 0.00536787835881114, -0.011950294487178326, 0.03383084759116173, -0.04243959113955498, 0.009219158440828323, 0.004861296620219946, 0.012963457964360714, -0.02045205794274807, 0.006488021928817034, 0.03798418864607811, -0.027714110910892487, -0.0016220054822042584, 0.023623699322342873, 0.02104359306395054, 0.0018674301682040095, 0.0047857812605798244, -0.008797531016170979, -0.028091687709093094, -0.04140755161643028, 0.03612148016691208, -0.027839969843626022, -0.04231373220682144, -0.07757937163114548, 0.004244588315486908, -0.028418920934200287, 0.026933785527944565, 0.01767057739198208, -0.007658509071916342, -0.0005427661235444248, -0.05829780176281929, 0.00615764269605279, 0.026581382378935814, 0.01087420154362917, 0.026279320940375328, -0.01960880309343338, -0.005279777105897665, -0.06408730894327164, 0.041583750396966934, -0.043169572949409485, 0.04686982184648514, -0.025222105905413628, 0.010792393237352371, -0.06282871961593628, -0.043597493320703506, -0.03050817735493183, -0.028997870162129402, -0.01110704056918621, -0.008451418951153755, 0.014964613132178783, 0.03317638486623764, -0.054824098944664, -0.028796495869755745, 0.013655681163072586, 0.04581260681152344, 0.024504711851477623, 0.05698887258768082, 0.01609734259545803, 0.01530443225055933, 0.011232899501919746, -0.016034413129091263, 0.029954398050904274, -0.020603088662028313, -0.04523365944623947, 0.01841314509510994, -0.008388490416109562, -0.032597433775663376, -0.001046988065354526, -0.012290113605558872, -0.02561226859688759, 0.11881072074174881, 0.0021569053642451763, -0.0019020413747057319, -0.01831245794892311, -0.00592165719717741, 0.017230071127414703, -0.004965130239725113, -0.0046158721670508385, -0.012409678660333157, 0.016563020646572113, -0.03904140368103981, -0.03790867328643799, 0.004379886668175459, 0.01743144541978836, 0.021974949166178703, 0.002960828598588705, -0.04961354285478592, 0.027185503393411636, -0.012107618153095245, -0.015254088677465916, -0.06036188825964928, -0.029778195545077324, 0.0100183617323637, -0.0125607093796134, -0.041130661964416504, -0.02104359306395054, 0.049814917147159576, -0.011975466273725033, -0.026757583022117615, 0.015115643851459026, 0.05542822182178497, 0.012233477085828781, -0.050972819328308105, -0.01974724791944027, 0.013580165803432465, 0.0173936877399683, 0.04621535539627075, 0.005182236898690462, 0.04012379050254822, -0.01827470026910305, 0.0004869162803515792, 0.013504650443792343, -0.036851461976766586, 0.01918088272213936, 0.02990405447781086, 0.010150513611733913, -0.015379946678876877, -0.017154555767774582, 0.015833038836717606, -0.005559813231229782, -0.034661516547203064, 0.018790721893310547, 0.05804608389735222, 0.01182443555444479, -0.009565269574522972, 0.00723058870062232, 0.001593687222339213, -0.00036971026565879583, 0.07380361109972, -0.04284233972430229, -0.005405636038631201, -0.04558606073260307, -0.023585941642522812, -0.029325103387236595, 0.011371344327926636, -0.025272449478507042, -0.02080446109175682, 0.02804134413599968, 0.018526418134570122, -0.034208424389362335, -0.02086739055812359, 0.005937389563769102, 0.006223718170076609, -0.014536692760884762, 0.005855581257492304, -0.001878442824818194, 0.0023803047370165586, -0.02315802127122879, 0.014574450440704823, 0.013190004043281078, -0.004080972168594599, 0.013366205617785454, -0.030936095863580704, -0.008986319415271282, 0.01947035826742649, 0.06650380045175552, 0.004943104926496744, 0.03244640305638313, -0.029350275173783302, 0.0026320223696529865, -0.01680215261876583, -0.0656983032822609, 0.013542408123612404, 0.009080713614821434, 0.03627251088619232, 0.020477229729294777, -0.039091747254133224, 0.004666215740144253, -0.0020105945877730846, -0.021056178957223892, 0.030231287702918053, 0.0022450066171586514, 0.013957742601633072, 0.03176676481962204, 0.000582490349188447, 0.04057688266038895, 0.036675259470939636, 0.013403963297605515, 0.010131634771823883, 0.0030961267184466124, 0.040048275142908096, -0.02688344195485115, 0.0048329783603549, -0.0221385657787323, -0.0045686750672757626, 0.025675198063254356, -0.008703136816620827, -0.017204899340867996, -0.008193409070372581, 0.0013616350479424, -0.07022921741008759, -0.00647543603554368, 0.03237088769674301, 0.04558606073260307, 0.023145435377955437, -0.018425730988383293, 0.03662491589784622, -0.0075200642459094524, -0.005197968799620867, -0.0425151064991951, -0.04294302687048912, 0.032421231269836426, 0.009376482106745243, 0.02354818396270275, -0.011239192448556423, -0.00790393352508545, 0.043446462601423264, -0.0251214187592268, -0.007218002807348967, 0.06187219172716141, -0.07470979541540146, -0.006204839330166578, -0.016928009688854218, -0.017506960779428482, -0.013278105296194553, 0.005707697011530399, 0.05137556791305542, -0.0021899433340877295, 0.013139660470187664, 0.03453565761446953, -0.027034472674131393, -0.0011319427285343409, -0.003417066764086485, 0.03458600118756294, -0.042716480791568756, -0.016814738512039185, -0.004798367153853178, 0.0026068505831062794, -0.020200340077280998, 0.05437100678682327, -0.03886520117521286, -0.07264570891857147, 0.008054964244365692, 0.012673982419073582, 0.06277837604284286, -0.022440627217292786, -0.012743204832077026, -0.023711800575256348, 0.01686508022248745, 0.049286313354969025, -0.03257226198911667, 0.016739223152399063, 0.013706024736166, -0.0032188391778618097, -0.007633337285369635, -0.026656897738575935, -0.0065572443418204784, 0.037052836269140244, -0.01588338240981102, 0.005868167150765657, -0.046995680779218674, -0.007356447633355856, -0.01894175074994564, 0.0007586926803924143, 0.012667689472436905, -0.06026120111346245, -0.05724059045314789, 0.01384446956217289, 0.070279560983181, -0.03141435980796814, 0.011377637274563313, -0.008986319415271282, -0.011516081169247627, 0.010635069571435452, 0.03446014225482941, -0.046441901475191116, -0.030634036287665367, 0.036071136593818665, -0.0021600518375635147, 0.04926114156842232, -0.03717869520187378, 0.01731817238032818, -0.005075256805866957, -0.014763238839805126, 0.004159634001553059, 0.007947984151542187, -0.01819918490946293, 0.022163737565279007, 0.03592010587453842, 0.01570717990398407, -0.024404024705290794, 0.0023850244469940662, -0.021836504340171814, 0.02425299398601055, 0.03300018236041069, -0.012390799820423126, -0.04178512468934059, -0.03929312154650688, 0.045384690165519714, -0.011591596528887749, 0.0284692645072937, 0.004209977108985186, -0.05421997606754303, 0.008476590737700462, 0.002076670527458191, -0.007671094965189695, -0.030986439436674118, -0.015254088677465916, -0.0024605398066341877, 0.06182184815406799, 0.04029999300837517, -0.0031354576349258423, 0.013227761723101139, -0.01017568539828062, 0.02098066359758377, 0.00924433022737503, 0.042993370443582535, -0.01918088272213936, -0.030734721571207047, -0.024592813104391098, 0.013643095269799232, 0.0037600321229547262, 0.014725481159985065, -0.04903459548950195, -0.016638536006212234, -0.02270493097603321, 0.035366326570510864, -0.028872011229395866, -0.023736972361803055, 0.0065572443418204784, 0.018400559201836586, 0.011371344327926636, 0.009722593240439892, -0.058952268213033676, -0.005691965110599995, 0.02997956983745098, -0.008665379136800766, 0.029601993039250374, 0.004587553907185793, -0.015719765797257423, -0.036247339099645615, -0.01960880309343338, 0.07163883745670319, -0.009584148414433002, -0.005811530631035566, 0.050016291439533234, -0.021307896822690964, 0.027361705899238586, 0.034737031906843185, -0.01613510027527809, -0.01535477489233017, 0.03345327451825142, 0.03707800805568695, -0.02474384382367134, -0.050972819328308105, 0.025775885209441185, -0.04817875474691391, 0.050268009305000305, -0.02452988363802433, -0.015518391504883766, 0.04027482122182846, -0.08382196724414825, -0.0035334862768650055, 0.03617182374000549, 0.010528089478611946, 0.029148900881409645, 0.013101902790367603, 0.01145315170288086, -0.01950811594724655, -0.06061360612511635, 0.011692283675074577, 0.03214434161782265, 0.027412049472332, 0.03315121307969093, 0.023661457002162933, 0.013945156708359718, -0.03977138549089432, 0.06292940676212311, 0.018148841336369514, 0.027638595551252365, 0.016701465472579002, 0.014347905293107033, -0.021282725036144257, 0.022339940071105957, -0.003072528401389718, -0.03896588832139969, 0.004254027735441923, 0.024693500250577927, -0.030407490208745003, -0.019873106852173805, 0.00833185389637947, -0.006846719421446323, 0.04412610083818436, -0.0018170865951105952, -0.01700352504849434, 0.0161602720618248, -0.04115583375096321, 0.003417066764086485, 0.038991060107946396, 0.027638595551252365, 0.03999793156981468, -0.024655742570757866, -0.012491486966609955, -0.02252872847020626, -0.016890252009034157, 0.002921497682109475, -0.013278105296194553, -0.030281631276011467, -0.031817108392715454, -0.0037002491299062967, 0.04170960932970047, 0.005034352652728558, 0.010112755931913853, 0.016852494329214096, 0.02378731593489647, 0.033654648810625076, -0.06897062808275223, -0.014373076148331165, 0.045737091451883316, -0.008898218162357807, 0.004666215740144253, -0.031364016234874725, 0.01717972755432129, -0.01145315170288086, -0.06212390959262848, -0.03148987516760826, -0.0021600518375635147, 0.039444152265787125, 0.011925122700631618, 0.014272389933466911, 0.008401076309382915, -0.02374955825507641, -0.01027637254446745, 0.022956646978855133, -0.007482306566089392, -0.008419954217970371, -0.01539253257215023, 0.002828676952049136, 0.0014583889860659838, 0.03715352341532707, -0.03350361809134483, 0.04309405758976936, 0.004197391681373119, 0.03176676481962204, 0.0020074481144547462, 0.04702085256576538, 0.0025549340061843395, -0.005597570911049843, 0.015971483662724495, -0.07073265314102173, -0.003363576717674732, 0.03446014225482941, 0.03486289083957672, 0.02723584696650505, 0.004367300774902105, -0.025184348225593567, -0.04017413407564163, -0.02298181876540184, -0.03204365447163582, 0.031640905886888504, -0.013101902790367603, 0.026682069525122643, 0.04727257043123245, -0.018929164856672287, -0.020892562344670296, 0.04757463186979294, -0.014272389933466911, 0.057643335312604904, -0.03884002938866615, -0.046013981103897095, -0.032949838787317276, 0.0664031133055687, -0.042464762926101685, 0.062325283885002136, 0.025222105905413628, -0.025926915928721428, -8.736371819395572e-05, 0.002517176326364279, -0.025662612169981003, -0.035441841930150986, -0.009816987439990044, -0.032597433775663376, -0.05512616038322449, 0.04296819865703583, 0.038814857602119446, -0.012680275365710258, 0.034737031906843185, 0.030810236930847168, 0.020779291167855263, 0.01655043475329876, 0.002351986477151513, -0.014851340092718601, -0.010679120197892189, 0.014788410626351833, -0.010496624745428562, 0.002503017196431756, -0.07128643244504929, -0.014171702787280083, -0.011081868782639503, 0.031011611223220825, 0.03564321622252464, -0.03239605948328972, -0.02241545543074608, -0.00941423885524273, 0.005679379217326641, -0.007859882898628712, -0.021358240395784378, 0.03247157484292984, -0.006141910329461098, 0.04082860052585602, -0.04968905821442604, 0.012460022233426571, -0.010106462985277176, 0.0015055860858410597, 0.00815565139055252, -0.029123729094862938, -0.020288441330194473, 0.017834194004535675, -0.012686568312346935, -0.015946311876177788, -0.033755332231521606, -0.025637440383434296, 0.009986896999180317, 0.023636285215616226, -0.018715206533670425, 0.015732351690530777, -0.006752325221896172, -0.012869063764810562, -0.04624052718281746, -0.011887365020811558, 0.014209460467100143, 0.017066454514861107, 0.02635483630001545, -0.015732351690530777, 0.032521918416023254, -0.01835021562874317, -0.013378791511058807, -0.04613984003663063, 0.0033163798507303, 0.0027421489357948303, -0.006639052648097277, 0.010742049664258957, -0.019092781469225883, 0.04913528263568878, -0.024555055424571037, 0.004213123582303524, -0.011289536021649837, -0.01915571093559265, -0.027386877685785294, 0.0014229912776499987, -0.03078506514430046, -0.011698576621711254, 0.0019130540313199162, 0.014914269559085369, -0.004225709475576878, 0.009584148414433002, -0.022075636312365532, 0.006252036429941654, 0.002424355363473296, 0.02643035165965557, 0.010414816439151764, -0.005673086270689964, 0.01988569274544716, 0.003467410337179899, -0.03559287264943123, -0.014436005614697933, -6.012708035996184e-05, 0.029929226264357567, -0.010377059690654278, 0.011516081169247627, -0.015367360785603523, -0.018513832241296768, -0.013240347616374493, 0.002575386082753539, 0.001145315240137279, 0.021496685221791267, -0.012780962511897087, -0.021622544154524803, -0.015480633825063705, 0.003498875070363283, -0.008231166750192642, -0.01257958821952343, 0.00635901652276516, 0.030206115916371346, 0.027563080191612244, -0.022969232872128487, -0.022251838818192482, -0.0261786337941885, 0.023774730041623116, 0.015052714385092258, -0.012642517685890198, -0.0012499353615567088, 0.025272449478507042, -0.01138393022119999, -0.009288380853831768, -0.02252872847020626, -0.043345775455236435, -0.026228977367281914, -0.04483091086149216, -0.01939484290778637, -0.031993310898542404, 0.027034472674131393, 0.01862710528075695, -0.007992034777998924, -0.034913234412670135, -0.029853710904717445, 0.012170547619462013, -0.0028176642954349518, 0.03272329270839691, 0.024240408092737198, -0.0344349704682827, 0.045208487659692764, 0.0009242756641469896, -0.03539149835705757, -0.014297561720013618, -0.0035964155104011297, 0.013416549190878868, 0.021408583968877792, 0.0344349704682827, -0.041659265756607056, -0.07355189323425293, -0.00282081076875329, 0.02101842127740383, -0.011591596528887749, 0.01495202723890543, -0.05127488076686859, 0.05865020677447319, -0.007343861740082502, -0.0006135617149993777, 0.01481358241289854, 0.031112298369407654, 0.009313552640378475, 0.02119462378323078, 0.039796557277441025, 0.006588709075003862, 0.013706024736166, -0.019495530053973198, -0.021899433806538582, -0.029526477679610252, 0.010213443078100681, -0.00829409621655941, 0.04108031839132309, -0.009389068000018597, -0.01619802974164486, -0.027034472674131393, -0.0029639750719070435, 0.029123729094862938, 0.013693438842892647, 0.02288113161921501, -0.01631130278110504, 0.006777497008442879, 0.0015197452157735825, 0.013164832256734371, 0.03604596480727196, 0.04483091086149216, -0.01947035826742649, 0.007771781645715237, 0.0077466098591685295, 0.007199123967438936, 0.016046999022364616, -0.024680914357304573, 0.030986439436674118, 0.01631130278110504, 0.020338784903287888, 0.023246122524142265, -0.017519546672701836, -0.031640905886888504, 0.012321578338742256, 0.012711740098893642, -0.026732411235570908, -0.044579192996025085, -0.027261018753051758, -0.005301802419126034, -0.002660340629518032, 0.0003459150902926922, 0.010288958437740803, 0.014574450440704823, 0.03931829333305359, 0.025977259501814842, -0.04382403939962387, -0.0005498456885106862, -0.003992870915681124, 0.007985741831362247, -0.007350154686719179, 0.013001215644180775, 0.00645655719563365, -0.02990405447781086, 0.00350516801699996, 0.00508784269914031, -0.07430704683065414, -0.015065300278365612, -0.025637440383434296, 0.031364016234874725, -0.006418799515813589, 0.0032660362776368856, -0.03463634476065636, -0.034913234412670135, 0.01690283790230751, -0.0010281092254444957, -0.014662551693618298, -0.001784048741683364, -0.027009300887584686, 0.014700309373438358, 0.032169513404369354, -0.0004432590212672949, 0.029501305893063545, 0.0224909707903862, 0.011925122700631618, 0.013076731003820896, -0.015505805611610413, -0.008426247164607048, 0.013202589936554432, 0.008992612361907959, -0.026380008086562157, -0.013592751696705818, -0.005522055551409721, -0.011346172541379929, 0.005688818637281656, 0.009848452173173428, -0.041130661964416504, -0.033654648810625076, 0.04407575726509094, -0.04065239802002907, 0.008092721924185753, 0.026027603074908257, 0.008866753429174423, 0.009640784934163094, 0.028418920934200287, 0.008652793243527412, -0.02059050276875496, 0.015971483662724495, 0.02174840308725834, -0.010288958437740803, -0.056737154722213745, 0.03954483941197395, -0.008394783362746239, 0.03949449583888054, 0.008419954217970371, 0.015895968303084373, 0.002374011790379882, -0.02174840308725834, 0.025801056995987892, 0.003929941449314356, -0.03539149835705757, 0.020250683650374413, 0.004121876321732998, -0.0066956887021660805, -0.014863925985991955, -0.012491486966609955, -0.011755213141441345, 0.05082178860902786, 0.014876511879265308, -0.0004703973245341331, 0.06076463684439659, 0.006878184154629707, 0.009892502799630165, -0.008810116909444332, 0.01707904040813446, -0.012831306084990501, -0.03576907515525818, 0.026858270168304443, -0.029753023758530617, -0.024026447907090187, 0.015455462038516998, -0.06182184815406799, -0.016978353261947632, 0.0129131143912673, -0.022113393992185593, -0.028267890214920044, -0.03106195479631424, 2.186551137128845e-05, 0.028418920934200287, 0.04115583375096321, -0.06459074467420578, 0.007482306566089392, -0.020401714369654655, -0.016965767368674278, 0.03274846449494362, -0.005833555944263935, 0.01242226455360651, -0.0027531615924090147, -0.022969232872128487, -0.000515627849381417, -0.011937708593904972, -0.010465160012245178, -0.0330253541469574, -0.02927475981414318, 0.021811332553625107, 0.009017784148454666, 0.0064943148754537106, -0.008268924430012703, -0.008281510323286057, 0.01943260058760643, -0.0070229219272732735, 0.04100480303168297, -0.0005600717267952859, -0.004556089174002409, -0.013114488683640957, -0.011465737596154213, -0.06066394969820976, 0.007954277098178864, -0.011478323489427567, 0.01855158992111683, -0.004877028986811638, 0.03186745196580887, -0.029400618746876717, 0.009810694493353367, 0.02670724131166935, 0.0003290027962066233, -0.03569355979561806, -0.005229433532804251, -0.01073575671762228, -0.008054964244365692, -0.03818556293845177, -0.006752325221896172, -0.011100747622549534, 0.01957104541361332, -0.06373490393161774, -0.0025077369064092636, 0.02821754664182663, 0.03435945510864258, 0.01221459824591875, -0.03204365447163582, -0.006670517381280661, 0.008646500296890736, -0.0075767007656395435, 0.003017465118318796, -0.02867063879966736, 0.027739282697439194, 0.002597411395981908, 0.0003008812200278044, -0.01613510027527809, -0.0112454853951931, 0.008300389163196087, 0.01900468021631241, -0.03300018236041069, -0.037757642567157745, 0.01770833507180214, -0.03425876796245575, 0.0056353285908699036, 0.006821547634899616, -0.037405241280794144, 0.008149358443915844, -0.014788410626351833, 0.037581443786621094, -0.004678801633417606, 0.010672827251255512, 0.056284062564373016, 0.026203805580735207, 0.016046999022364616, -0.03735489770770073, 0.00469138752669096, 0.0061324709095060825, -0.028318233788013458, 0.01463737990707159, -0.03808487579226494, 0.010647655464708805, 0.014926855452358723, -0.004751170054078102, -0.025775885209441185, 0.003898476716130972, -0.0258262287825346, -0.017897123470902443, -0.0080801360309124, 0.042288560420274734, 0.021232381463050842, -0.03332741558551788, -0.016638536006212234, -0.004656776320189238, -0.006022344343364239, -0.008344439789652824, -0.004373593721538782, 0.025750713422894478, 0.006025490816682577, 0.0024196356534957886, 0.034309111535549164, 0.0014489495661109686, -0.022201495245099068, -0.010270079597830772, -0.014486349187791348, 0.008772359229624271, 0.0344349704682827, 0.009886209852993488, -0.014171702787280083, 0.004751170054078102, 0.0004271333455108106, -0.03516495227813721, 0.0759180337190628, 0.008684257976710796, -0.03609630838036537, 0.020124824717640877, 0.016827324405312538, -0.009968018159270287, -0.028771324083209038, -0.004760609474033117, -3.8863825466251e-05, -0.016147686168551445, -0.0015103057958185673, -0.016676293686032295, -0.01446117740124464, 0.03506426513195038, 0.00622057169675827, -0.059657078236341476, 0.025926915928721428, -0.010653948411345482, 0.011151091195642948, 0.04238924756646156, -0.012711740098893642, -0.03581941872835159, 0.018677448853850365, -0.0012609480181708932, -0.04817875474691391, 0.013605337589979172, -0.01509047206491232, 0.01200063806027174, 0.014561864547431469, 0.011855900287628174, 0.007381619419902563, -0.004011749755591154, 0.028695810586214066, 0.03743041306734085, 0.00959044136106968, -0.04631604254245758, -0.000383082777261734, 0.00106508017051965, -0.0002593871613498777, -0.022679759189486504, -0.03209399804472923, 0.044579192996025085, -0.004650483373552561, 0.003124444978311658, 0.034309111535549164, -0.00398028502240777, 0.036322854459285736, -0.021849090233445168, -0.01055955421179533, 0.007645923178642988, -0.029753023758530617, -0.008300389163196087, 0.04332060366868973, 0.008508055470883846, -0.013995500281453133, -0.0030206115916371346, 0.023321637883782387, -0.031036783009767532, 0.00873460154980421, -0.016613364219665527, 0.01463737990707159, 0.033755332231521606, 0.011075575836002827, 0.008476590737700462, -0.03609630838036537, 0.04598880931735039, 0.006283501163125038, 0.021320482715964317, 0.01943260058760643, 0.005223140586167574, 0.003206253284588456, 0.00962819904088974, -0.039267949759960175, 0.018010396510362625, 0.03174159303307533, 0.03481254726648331, -0.015933725982904434, 0.0046316045336425304, 0.016814738512039185, 0.009212865494191647, -0.013907399028539658, 0.021244967356324196, 0.010439988225698471, 0.0439247265458107, -0.007117316126823425, 0.021723231300711632, 0.08387231081724167, -0.027009300887584686, 0.0012074579717591405, -0.037858329713344574, -0.011516081169247627, 0.020401714369654655, 0.018601933494210243, 0.03461117297410965, 0.03370498865842819, -0.024341095238924026, -0.022025292739272118, 0.0027279898058623075, -0.03488806262612343, 0.03889037296175957, -0.005500030238181353, -0.010452574118971825, 0.01788453757762909, 0.0022450066171586514, 0.02217632345855236, 0.015870796516537666, 0.005827262997627258, 0.025738127529621124, 0.01784677989780903, 0.02256648615002632, -0.004065239802002907, -0.0007484666421078146, 0.000880225095897913, -0.0015213184524327517, 0.029878882691264153, 0.011100747622549534, 0.05437100678682327, -0.014436005614697933, -0.03458600118756294, 0.015493219718337059, -0.06237562745809555, -0.015505805611610413, -0.0024259286001324654, 0.018841063603758812, -0.019520701840519905, -0.02276786044239998, -0.02182391844689846, -0.05437100678682327, 0.0005974360392428935, 0.004719705320894718, 0.01947035826742649, -0.02955164946615696, -0.013101902790367603, 0.030407490208745003, 0.009974311105906963, -0.009741472080349922, -0.017506960779428482, -0.011151091195642948, 0.015682008117437363, -0.019495530053973198, 0.018325043842196465, -0.00906812772154808, -0.014008086174726486, 0.02558709681034088, 0.004209977108985186, -0.00891080405563116, -0.01729300059378147, -0.01259846705943346, 0.00019783432071562856, -0.032597433775663376, -0.0021978095173835754, -0.015442876145243645, 0.01279354840517044, 0.00016568132559768856, 0.024718672037124634, 0.003907916136085987, -0.011151091195642948, -0.019055023789405823, -0.0042571742087602615, -0.03060886450111866, -0.010937131009995937, -0.0016282984288409352, 0.005713989958167076, -0.0003907522768713534, 0.009861038066446781, -0.002992293331772089, 0.00230636284686625, 0.02919924445450306, 0.01666370779275894, -0.005150772165507078, -0.025977259501814842, 0.013995500281453133, -0.026656897738575935, 0.03360430523753166, 0.02090514823794365, 0.021811332553625107, 0.02680792659521103, -0.006292940583080053, 0.018073325976729393, 0.0011311561102047563, -0.012522951699793339, 0.03053334914147854, -0.015644250437617302, 0.00036223739152774215, -0.007677387446165085, -0.013756368309259415, 0.01921864040195942, 0.022289596498012543, 0.02572554163634777, 0.010974888689815998, 0.02329646609723568, 0.009848452173173428, 0.011182555928826332, -0.004197391681373119, 0.010370766744017601, -0.004644190426915884, -0.012655103579163551, 0.026228977367281914, -0.013366205617785454, 0.010609897784888744, -0.023044748231768608, -0.013945156708359718, -0.009338724426925182, -0.026203805580735207, 0.017809022217988968, 0.01813625544309616, -0.009326138533651829, 0.009968018159270287, 0.02160995826125145, -0.03717869520187378, -0.0032565968576818705, 0.0022623122204095125, 0.008508055470883846, -0.035718731582164764, 0.017456617206335068, -0.02670724131166935, -0.010861615650355816, -0.019407428801059723, -0.018186599016189575, 0.0351397804915905, 0.034208424389362335, -0.004266613628715277, -0.01992345042526722, -0.035265639424324036, -0.024693500250577927, -0.010918252170085907, -0.0237243864685297, 0.06303009390830994, 0.010452574118971825, -0.050016291439533234, 0.026052774861454964, 0.011730041354894638, -0.013932570815086365, -0.02160995826125145, 0.009168814867734909, -0.010471452958881855, -0.013177418150007725, 0.00249515101313591, -0.0020074481144547462, 0.003206253284588456, 0.014373076148331165, 0.003395041450858116, 0.001298705697990954, -0.009552683681249619, -0.00165818992536515, -0.016210615634918213, -0.027915485203266144, 0.023283880203962326, -0.023233536630868912, -0.007073265500366688, -0.003401334397494793, 0.027789626270532608, -0.018576761707663536, 0.019495530053973198, -0.007689973339438438, 0.006274061743170023, -0.006135617382824421, 0.000336475670337677, 0.034032221883535385, -0.005279777105897665, -0.008803823962807655, 0.0019712636712938547, -0.026103118434548378, -0.03219468519091606, -0.009351310320198536, -0.02139599807560444, 0.022478384897112846, -0.006242597009986639, -0.017066454514861107, -0.018564175814390182, -0.015153401531279087, 0.027537908405065536, 0.014524106867611408, 0.03247157484292984, -0.023799901828169823, -0.008438833057880402, -0.021056178957223892, 0.06005982682108879, 0.003933087922632694, -0.009338724426925182, 0.002329961396753788, -0.0010524942772462964, -0.008048671297729015, -0.008810116909444332, -0.0027846263255923986, 0.0027578813023865223, 0.04349680617451668, -0.011000060476362705, 0.01760764792561531, 0.008967440575361252, 0.01275579072535038, 0.004345275461673737, 0.007060679607093334, 0.012686568312346935, -0.04968905821442604, 0.01605958491563797, -0.025423480197787285, 0.035718731582164764, 0.008646500296890736, 0.033856019377708435, -0.013227761723101139, 0.00014945733710192144, 0.02660655416548252, -0.02045205794274807, -0.011000060476362705, -0.002732709515839815, 0.014524106867611408, 0.0021962362807244062, -0.013403963297605515, -0.021811332553625107, -0.02768893912434578, 0.00738791236653924, -0.005232580006122589, 0.0056825256906449795, 0.025360550731420517, -0.013139660470187664, 0.0014945734292268753, 0.026455523446202278, 0.013995500281453133, 0.008489176630973816, -0.01106928288936615, -0.016223201528191566, 0.01700352504849434, -0.003132311161607504, 0.012680275365710258, -0.006720860488712788, 0.008073843084275723, 0.008646500296890736, -0.024857115000486374, -0.017519546672701836, 0.01690283790230751, -0.011698576621711254, 0.008344439789652824, 0.030130600556731224, 0.03539149835705757, -0.03237088769674301, -0.0337301604449749, -0.03949449583888054, 0.011780384927988052, -0.014687723480165005, 0.006865598261356354, 0.008690550923347473, -0.030457833781838417, -0.014108773320913315, -0.02361111342906952, -0.0014190581860020757, 0.015329604037106037, -0.009131057187914848, -0.009986896999180317, -0.024617984890937805, 0.020162582397460938, 0.0072494675405323505, 0.031087126582860947, -0.01796005293726921, 0.0017573037184774876, 0.006714567542076111, -0.006308672949671745, 0.012548123486340046, 0.025272449478507042, 0.027185503393411636, 0.0016707757022231817, 0.004867589566856623, -0.0005730509292334318, 0.013743782415986061, -0.025952087715268135, -0.00683413352817297, -0.0027673207223415375, 0.0057486011646687984, -0.03496357798576355, 0.0049777161329984665, -0.026128290221095085, -0.0021506124176084995, -0.005383610725402832, -0.018387973308563232, 0.013416549190878868, -0.010786100290715694, -0.015203745104372501, 0.0069033559411764145, 0.024781599640846252, -0.024240408092737198, -0.012340457178652287, -0.03214434161782265, -0.013441720977425575, 0.015820452943444252, -0.007262053433805704, 0.013215175829827785, -0.0470963679254055, -0.007268346380442381, -0.008803823962807655, -0.006714567542076111, 0.020514987409114838, 0.009722593240439892, 0.009074420668184757, -0.0023346811067312956, 0.0026776462327688932, -0.01988569274544716, -0.011075575836002827, 0.0006481729215011001, -0.04097963124513626, 0.05366619676351547, 0.00723058870062232, -0.023711800575256348, -0.012088739313185215, 0.020930320024490356, -0.0037380068097263575, 0.009407945908606052, -0.009747765026986599, -0.033780504018068314, 0.014171702787280083, -0.019759833812713623, -0.0281168594956398, -0.026556210592389107, 0.01799781061708927, 0.0316157341003418, -0.017267828807234764, 0.022113393992185593, -0.02390058897435665, 0.024265579879283905, -0.04478056728839874, 0.031716421246528625, 0.010307837277650833, -0.009017784148454666, 0.002812944585457444, 0.0031150055583566427, 0.002351986477151513, -0.01827470026910305, 0.01423463225364685, -0.02856995165348053, -0.008482883684337139, -0.011125919409096241, 0.03068437986075878, -0.012692861258983612, -0.03254709020256996, -0.03884002938866615, -0.010679120197892189, 0.013857055455446243, -0.027890313416719437, 0.013341034762561321, -0.014385662041604519, -0.015656836330890656, -0.009407945908606052, -0.004383033141493797, 0.019936036318540573, 0.0061324709095060825, -0.00873460154980421, -0.008344439789652824, 0.008130479604005814, -0.02980336733162403, -0.004342128988355398, 0.01609734259545803, 0.0015425571473315358, -0.024303337559103966, -0.00701033603399992, 0.02821754664182663, 0.016323888674378395, -0.002177357440814376, -0.0043610078282654285, 0.047524288296699524, 0.017897123470902443, -0.005317534785717726, -0.015103057958185673, -0.007652216125279665, 0.0030190383549779654, -0.010131634771823883, -0.0002291023702127859, -0.02680792659521103, -0.02139599807560444, -0.008797531016170979, 0.005550373811274767, -0.04455402120947838, -0.005949975457042456, -0.008841581642627716, -0.0030898340046405792, -0.010515503585338593, -0.01150978822261095, -0.04347163438796997, 0.004036921542137861, 0.007601872552186251, 0.008954854682087898, 0.031540218740701675, -0.043798867613077164, -0.016915423795580864, -0.0541192889213562, -0.0323205441236496, -0.024731257930397987, -0.002984427148476243, -0.001108344178646803, -0.09117212146520615, -0.03657457232475281, 0.0012342029949650168, 0.03644871339201927, -0.022251838818192482, -0.002424355363473296, 0.016676293686032295, 0.0010776660637930036, 0.0217861607670784, -0.04563640430569649, 0.013517236337065697, 0.03780798614025116, -0.040602054446935654, -0.008961147628724575, -0.007268346380442381, 0.04843047261238098, 0.006544658448547125, -0.01999896578490734, 0.003395041450858116, 0.031993310898542404, 0.02125755324959755, -0.03179193660616875, -0.01570717990398407, -0.00415648752823472, 0.017406273633241653, 0.011899950914084911, 0.012900528497993946, -0.00011927089508390054, 0.003479996230453253, 0.011308414861559868, -0.059657078236341476, -0.0009203425724990666, 0.0023000699002295732, 0.0021647715475410223, 0.008728308603167534, 0.052357267588377, 0.008218580856919289, -0.010572140105068684, 0.002122294157743454, -0.00629923352971673, -0.0053238277323544025, -0.015480633825063705, -0.015014956705272198, 0.006371602416038513, 0.014071015641093254, -0.0008385343244299293, 0.0008385343244299293, 0.0033478443510830402, 0.006846719421446323, -0.042011670768260956, 0.012799841351807117, 0.005833555944263935, 0.009710007347166538, -0.010257493704557419, -0.035265639424324036, 0.02565002627670765, 5.13759623572696e-05, -0.020426886156201363, 0.002811371348798275, 0.0009345017024315894, 0.013617923483252525, 0.0020719508174806833, 0.030029913410544395, -0.052911046892404556, 0.11991827934980392, 0.007073265500366688, -0.007450841832906008, -0.006258329376578331, -0.016739223152399063, -0.010383352637290955, -0.024655742570757866, 0.007847297005355358, 0.012976043857634068, 0.007885054685175419, 0.009678542613983154, 0.012711740098893642, -0.025624854490160942, 3.153844954795204e-05, 0.00396140618249774, 0.0005290003027766943, 0.01827470026910305, 0.008029792457818985, 0.05477375537157059, 0.003284915117546916, -0.005953121930360794, 0.00796057004481554, 0.04765014722943306, 0.012239770032465458, -0.013001215644180775, 0.005698257591575384, 0.0012499353615567088, -0.0237243864685297, 0.00453406386077404, -0.020540159195661545, 0.031640905886888504, -0.013907399028539658, 0.02196236327290535, -0.016789566725492477, 0.059052955359220505, -0.023409739136695862, 0.003964552655816078, 0.004147048108279705, -0.0025942649226635695, -0.0005647914367727935, 0.008388490416109562, 0.017909709364175797, 0.02094290591776371, 0.00280193192884326, 0.03798418864607811, 0.030936095863580704, -0.0021883700974285603, -0.008054964244365692, 0.004389326088130474, -0.028720980510115623, 0.01201951690018177, -0.049286313354969025, -0.0027201236225664616, -0.019734662026166916, 0.011654525995254517, -0.021987535059452057, -0.0013002788182348013, -0.03566838800907135, -0.005109868012368679, -0.047700490802526474, 0.023321637883782387, 0.007318689953535795, 0.022855959832668304, 0.003514607436954975, -0.011352465488016605], [0.04006800428032875, 0.03622147813439369, 0.006469647400081158, -0.011016029864549637, -0.054919879883527756, -0.016497332602739334, -0.025301609188318253, -0.007698399480432272, 0.02198932133615017, 0.060946106910705566, -0.023506563156843185, -0.010065083391964436, -0.011721227318048477, 0.028400201350450516, -0.010535214096307755, 0.0038385149091482162, 0.025130653753876686, 0.03515299782156944, -9.457718988414854e-05, 0.0271607656031847, 0.01368723064661026, 0.007618263363838196, -0.002529626712203026, 0.022523561492562294, -0.007960177026689053, -0.011016029864549637, 0.054150573909282684, -0.01174259651452303, 0.0011873485054820776, -0.03508888930082321, 0.10163383185863495, -0.016433224081993103, 0.026626525446772575, -0.03722584992647171, 0.0416920967400074, 0.020792623981833458, 0.008392911404371262, -0.0031146195251494646, 0.03884993866086006, -0.03391356021165848, -0.060518715530633926, 0.013238469138741493, -0.004305975046008825, -0.07812726497650146, -0.010823704302310944, 0.07423800230026245, 0.025216130539774895, -0.016572127118706703, -0.032310839742422104, 0.04611560329794884, -0.0004534362524282187, 0.006886354647576809, 0.003841186175122857, -0.017672661691904068, 0.04021759331226349, -0.0033309869468212128, 0.005310346372425556, 0.035366691648960114, 0.009701799601316452, -0.023805737495422363, 0.014445851556956768, -0.04722682386636734, -0.008473047986626625, 0.005983488634228706, -0.004484945442527533, 0.0007232275092974305, 0.015022831037640572, 0.022288495674729347, -0.0220534298568964, 0.01715979166328907, 0.005967461504042149, 0.004046868532896042, -0.0011699857423081994, -0.020536188036203384, -0.05509083718061447, 0.004917679820209742, 0.01475571095943451, -0.007030599284917116, 0.011144247837364674, -0.01659349724650383, -0.005662944633513689, 0.0255366750061512, -0.00837154220789671, 0.022822735831141472, -0.00018230942077934742, 0.036499280482530594, -0.033507537096738815, 0.0016280965646728873, -0.018634293228387833, -0.013067511841654778, -0.02575037069618702, -0.003424478927627206, -0.005946091841906309, 0.02731035277247429, 0.015450223349034786, -0.011806705966591835, 0.06949394941329956, -0.00018447978072799742, -0.028464311733841896, 0.06816903501749039, 0.01229820679873228, -0.001828436623327434, -0.035430800169706345, 0.04164935648441315, 0.047696955502033234, 0.007078681141138077, -0.05509083718061447, 0.000916889519430697, 0.010385626927018166, -0.017117051407694817, 0.05197087302803993, 0.010556584224104881, 0.02169014699757099, 0.047910649329423904, -0.011048085056245327, -0.0376105010509491, -0.0006070302915759385, 0.004426178988069296, -0.0192219577729702, -0.011411367915570736, -0.0018938810098916292, -0.04177757352590561, 0.029169507324695587, -0.05303935334086418, 0.038764458149671555, 0.011774650774896145, -0.01198834739625454, 0.038123372942209244, -0.03523847460746765, 0.009012630209326744, 0.04406411945819855, -0.01879456639289856, 0.037119001150131226, -0.018463337793946266, 0.008911124430596828, -0.005940749775618315, 0.03169112280011177, 0.005115348845720291, 0.02453230321407318, -0.02731035277247429, 0.045004382729530334, 0.01159300934523344, 0.06795533746480942, -0.014200100675225258, -0.0114220529794693, -0.006373484153300524, 0.002847499679774046, 0.03337932005524635, 0.014242839999496937, 0.013291892595589161, -0.031007293611764908, -0.0048295301385223866, 0.012073826044797897, -0.01527926605194807, 0.005211512092500925, -0.04773969203233719, -0.004802818410098553, 0.04504712298512459, 0.017458966001868248, 0.035986412316560745, -0.0298533346503973, 0.0015666589606553316, -0.024126281961798668, -0.035623129457235336, 0.030024291947484016, -0.04143565893173218, -0.005801847204566002, 0.02013016678392887, -0.031605642288923264, -0.02453230321407318, -0.01850607618689537, -0.030793597921729088, -0.003010442713275552, -0.037695977836847305, -0.0071481321938335896, -0.014787765219807625, 0.023869846016168594, -0.001666828989982605, 0.023805737495422363, 0.018623609095811844, 0.021241385489702225, 0.03126372769474983, -0.04915008693933487, -0.06569015979766846, 0.001069815712980926, 0.03752502426505089, -0.006421565543860197, -0.006405538413673639, -0.01829238049685955, -0.044491514563560486, 0.005051239859312773, -0.004976446274667978, 0.009242353029549122, 0.037204477936029434, -0.04062361642718315, -0.014691602438688278, -0.02993881329894066, 0.020087426528334618, 0.05731327459216118, -0.022224387153983116, 0.05624479427933693, -0.01496940664947033, -0.0014958721585571766, -0.04128607362508774, -0.02263041026890278, -0.0008087059250101447, 0.03884993866086006, 0.0032081117387861013, 0.052996616810560226, 0.012982034124433994, 0.018452651798725128, 0.01651870273053646, -0.04970569536089897, 0.04177757352590561, -0.005764450412243605, 0.011550270020961761, 0.047055866569280624, 0.01240505464375019, 0.020878102630376816, 0.031114142388105392, -0.012672174721956253, -0.035922303795814514, -0.0027246244717389345, -0.018484706059098244, -0.018046630546450615, -0.036841195076704025, -0.02346382476389408, -0.024831479415297508, 0.024981066584587097, -0.05227004736661911, -0.009359885938465595, 0.028400201350450516, -0.027972809970378876, -0.03703352063894272, 0.0341699942946434, 0.026754742488265038, -0.009098108857870102, -0.04235455393791199, -0.049406521022319794, -0.003889267798513174, 0.013249154202640057, 0.042440030723810196, -0.015354059636592865, -0.01687130145728588, 0.025045175105333328, -0.01688198558986187, -0.01169985719025135, 0.008147161453962326, 0.04453425109386444, -0.04122196510434151, -0.02453230321407318, -0.028848964720964432, 0.03600778058171272, -0.040174853056669235, 0.009050026535987854, -0.026840221136808395, 0.0667586401104927, -0.023506563156843185, 0.04374357685446739, -0.03699078410863876, 0.009867413900792599, -0.005403838120400906, -0.01379407849162817, -0.038272958248853683, -0.05850997194647789, -0.019115108996629715, 0.01808936893939972, -0.010161246173083782, -0.007452649064362049, 0.01766197755932808, -0.021786309778690338, 0.04419234022498131, 0.005182128865271807, -0.021508505567908287, -0.053167570382356644, 0.020952895283699036, 0.04842352122068405, -0.02027975395321846, -0.017330747097730637, 0.024062173441052437, -0.04040991887450218, -0.013409425504505634, 0.006474989466369152, -0.011080139316618443, -0.01446722075343132, -0.02312191016972065, 0.0001101035377359949, -0.008008258417248726, 0.012971349060535431, 0.0030665379017591476, 0.057014100253582, 0.010059740394353867, -0.04100826755166054, 0.003761050058528781, 0.016123365610837936, 0.01552501693367958, -0.06479263305664062, 0.020461395382881165, -0.042589619755744934, 0.005441234912723303, -0.039255961775779724, 0.02069646120071411, 0.01589898392558098, -0.019115108996629715, -0.027459939941763878, 0.04004663601517677, 0.04303837940096855, 0.05453522503376007, -0.025793110951781273, -0.018260326236486435, -0.0114220529794693, 0.029126768931746483, -0.005566781386733055, -0.05312483385205269, -0.0026217831764370203, 0.01871977187693119, -0.0015159061877056956, 0.016294322907924652, 0.01240505464375019, -0.010497817769646645, 0.04186305031180382, 0.029596900567412376, 0.02241671271622181, -0.02660515531897545, -1.3277743846629164e-06, -0.004762750118970871, 0.04709860309958458, 0.044918905943632126, -0.030622640624642372, -0.04376494511961937, -0.03758913278579712, 0.009974261745810509, 0.009407967329025269, -0.023378346115350723, -0.025622153654694557, -0.04015348479151726, 0.038272958248853683, 0.0012701557716354728, 0.007655660156160593, -0.007132105063647032, 0.04538903757929802, 0.061288021504879, 0.015514331869781017, -0.0022491507697850466, -0.022673148661851883, 0.04427781701087952, 0.03406314551830292, 0.01850607618689537, -0.0020501462277024984, 0.012640120461583138, -0.020386600866913795, 0.01644391007721424, -0.07368239015340805, -0.011571640148758888, -0.0325031653046608, 0.00423919502645731, 0.0236775204539299, -0.03288782015442848, 0.02091015689074993, 0.008729483000934124, -0.004661244805902243, -0.030195249244570732, 0.04318796843290329, 0.03049442358314991, -0.0067688217386603355, 0.005443906411528587, 0.002213089494034648, -0.015022831037640572, 0.036499280482530594, -0.04051676765084267, 0.08795728534460068, -0.009990289807319641, 0.012394369579851627, -0.0223312359303236, 0.040815941989421844, 0.030943185091018677, -0.050945132970809937, 0.0026618512347340584, -0.014114622958004475, -0.01793978177011013, -0.01886935904622078, -0.009338516741991043, 0.04487616568803787, 0.05539001151919365, 0.004631861578673124, 0.026049545034766197, -0.06517729163169861, 0.0010771615197882056, 0.04389316588640213, 0.012234097346663475, -0.02275862731039524, 0.004348714370280504, 0.023079171776771545, 0.034789714962244034, -0.010508501902222633, 0.028613898903131485, 0.07445169985294342, 0.07782809436321259, -0.0092850923538208, -0.054150573909282684, 0.017352117225527763, -0.01885867491364479, -0.004992473404854536, 0.007169501855969429, 0.025429828092455864, 0.033443428575992584, 0.05731327459216118, 0.005302332807332277, 0.017245270311832428, -0.017266638576984406, 0.025835849344730377, -0.00712676253169775, 0.0013422782067209482, 0.0025576744228601456, 0.020311808213591576, -0.010476447641849518, 0.03972609341144562, 0.014745025895535946, -0.005275620613247156, 0.002253157552331686, 0.050816915929317474, 0.0003435831458773464, -0.034084517508745193, -0.04419234022498131, -0.011464792303740978, 0.01393298152834177, 0.01958524063229561, -0.023741628974676132, 0.003753036493435502, -0.05380865931510925, -0.051671698689460754, 0.03551628068089485, 0.03267412260174751, 0.008857700042426586, -0.04406411945819855, -0.04098689928650856, -0.039897046983242035, -0.03446916863322258, -0.010220012627542019, -0.04385042563080788, -0.0446624718606472, -0.02630598098039627, 0.03645654395222664, -0.006565810646861792, -0.0338921919465065, -0.015653233975172043, -0.019692089408636093, -0.016764452680945396, 0.02254493162035942, -0.038978155702352524, -0.014659547246992588, -0.0024187718518078327, -0.03902089595794678, 0.04374357685446739, -0.042098116129636765, 0.009525500237941742, 0.008996603079140186, -0.10291600972414017, 0.016337061300873756, -0.008115106262266636, -0.01581350527703762, 0.05821079760789871, 0.028913073241710663, -0.0096109788864851, 0.006143760867416859, 0.06064693257212639, 0.031605642288923264, -0.0045811086893081665, 0.0019806951750069857, -0.08056340366601944, -0.010187958367168903, -0.03632832318544388, 0.006651288829743862, -0.008766879327595234, 0.031669750809669495, -0.01183876022696495, 0.018687717616558075, -0.017672661691904068, -0.026712004095315933, -0.007180186454206705, 0.01582419127225876, 0.06410881131887436, -0.050517741590738297, -0.029105398803949356, 0.08107627183198929, 0.01793978177011013, 0.07457991689443588, 0.03143468499183655, -0.048252563923597336, -0.0241903904825449, -0.03837980702519417, -0.015151048079133034, 0.0069184089079499245, -0.007741138804703951, -0.022245757281780243, -0.04427781701087952, -0.027481310069561005, 0.0008374213357456028, 0.024639151990413666, -0.023143280297517776, 0.041884422302246094, -0.026199134066700935, 0.03468286618590355, -0.019179219380021095, 0.03382807970046997, -0.042440030723810196, 0.01127246581017971, 0.009338516741991043, 0.012063140980899334, 0.013965035788714886, -0.039384178817272186, -0.02459641359746456, 0.016262268647551537, -0.04137155041098595, -0.008024285547435284, -0.051030613481998444, -0.016358431428670883, 0.008355515077710152, -0.017843618988990784, -0.016144735738635063, 0.018612924963235855, 0.02220301702618599, -0.007719769142568111, -0.0028688691090792418, -0.016016516834497452, -0.015995148569345474, 0.033080145716667175, -0.04979117587208748, 0.03624284639954567, 0.0026565087027847767, 0.0078693563118577, -0.00411097751930356, -0.06162993609905243, 0.004068238195031881, 0.014798450283706188, 0.0019660035613924265, -0.03551628068089485, 0.0214978214353323, 0.034789714962244034, -0.04075183346867561, 0.0007092037121765316, -0.01844196766614914, -0.01507625449448824, 0.0035046148113906384, 0.009659060277044773, 0.012009716592729092, 0.06021954119205475, -0.011080139316618443, -0.0025964067317545414, -0.002583050634711981, -0.02872074581682682, 0.012714914046227932, -0.02013016678392887, 0.003531326772645116, -0.00542787928134203, -0.0013042135396972299, 0.038550764322280884, -0.0027620212640613317, -0.010332202538847923, -0.006245266646146774, 0.007249637972563505, 0.007174844387918711, -0.023250127211213112, -0.03171249106526375, -0.008622635155916214, 0.0082646943628788, 0.0020394613966345787, -0.01595240831375122, 0.024083541706204414, -0.004621176514774561, -0.03340068832039833, 0.0129072405397892, 0.033165622502565384, -0.02645556814968586, 0.04004663601517677, -0.00932783167809248, 0.02425449900329113, -0.004420836456120014, -0.014980091713368893, 0.013270523399114609, 0.012426423840224743, 0.016347745433449745, 0.003889267798513174, -0.010134533978998661, -0.036135997623205185, 0.017042258754372597, -0.0010183951817452908, -0.015225841663777828, -0.024425456300377846, -0.010631377808749676, -0.0039827595464885235, 0.004992473404854536, -0.012244782410562038, 0.0038652268704026937, -0.02568626217544079, 0.051158830523490906, 0.023250127211213112, 0.03921322152018547, -0.044149599969387054, 0.005497330334037542, -0.01471297163516283, 0.0025456538423895836, 0.010027686133980751, 0.01183876022696495, -0.05325305089354515, -0.043444402515888214, 0.030665380880236626, -0.020461395382881165, -0.020375916734337807, 0.005662944633513689, 0.015973778441548347, 0.00854784157127142, 0.010075767524540424, -0.02190384268760681, -0.01322778407484293, 0.007773193065077066, -0.030515793710947037, -0.00564157497137785, -0.007564839441329241, -0.008072367869317532, -0.03474697470664978, -0.01815347746014595, -0.0007185529102571309, 0.002640481572598219, -0.029404573142528534, -0.007612920831888914, -0.019093740731477737, -0.030964555218815804, 0.011005345731973648, -0.02468189224600792, -0.010786307044327259, -0.002764692297205329, -0.02893444150686264, -0.0255366750061512, -0.005978146567940712, -0.0008875062922015786, -0.028421571478247643, 0.006752794608473778, -0.008889755234122276, 0.0018631622660905123, 0.07145994901657104, -0.015984462574124336, 0.05239826813340187, -0.061031587421894073, 0.05453522503376007, 0.012832446955144405, -0.017907727509737015, 0.006848957855254412, -0.014242839999496937, -0.019200587645173073, 0.005211512092500925, 0.027118025347590446, -0.013879557140171528, -0.00832880288362503, -0.00045410406892187893, -0.027395831421017647, -0.011828075163066387, 0.016700344160199165, 0.0018725114641711116, 0.01588829979300499, -0.01709568314254284, 0.0017002189997583628, 0.018025260418653488, -0.01163574866950512, -0.015845561400055885, -0.024575043469667435, 0.051158830523490906, -0.038550764322280884, -0.01844196766614914, 0.02651967667043209, -0.01056726835668087, -0.0007399225141853094, -0.017619237303733826, -0.04432055726647377, -0.00220774719491601, -0.008136476390063763, -0.010818361304700375, 0.03976882994174957, 0.0024361347313970327, 0.031733859330415726, -0.017426911741495132, -0.01772608608007431, 0.0009175573359243572, 0.00982467457652092, -0.009947550483047962, -0.009306462481617928, -0.010113164782524109, -0.02568626217544079, -0.009098108857870102, 0.04325207695364952, 0.0081257913261652, 0.018954837694764137, -0.014851873740553856, -0.025942698121070862, -0.008403596468269825, 0.01666828989982605, 0.0017883686814457178, -0.0024521618615835905, 0.01312093622982502, 0.00751675758510828, -0.012276836670935154, -0.010973291471600533, -0.02957553043961525, -0.06752794235944748, -0.05179991573095322, 0.018420597538352013, 8.205593621823937e-05, -0.010524529032409191, 0.025045175105333328, -0.019392915070056915, -0.03701215237379074, 0.016689660027623177, -0.04184168204665184, -0.004231181461364031, -0.013249154202640057, -0.0187090877443552, 0.016326377168297768, -0.024297239258885384, 0.02752404846251011, 0.011507530696690083, -0.04603012278676033, 0.007960177026689053, -0.02645556814968586, 0.0028288012836128473, 0.025429828092455864, -0.012127249501645565, 0.029447313398122787, 0.011304520070552826, 0.00041670724749565125, 0.024981066584587097, 0.030195249244570732, -0.024831479415297508, -0.015151048079133034, 0.004153716377913952, -0.019254012033343315, -0.0014144006418064237, -0.047696955502033234, 0.022609040141105652, 0.009317146614193916, -0.015877615660429, -0.006571152713149786, -0.052740179002285004, 0.002481545088812709, -0.029896074905991554, 0.01414667721837759, 0.031242359429597855, -0.008697428740561008, 0.06513454765081406, -0.04203400760889053, 0.018954837694764137, -0.026284610852599144, 0.00446624681353569, -0.01688198558986187, 0.005069938488304615, 0.0025015792343765497, 0.009888784028589725, -0.006271978374570608, 0.01702088862657547, -0.014264210127294064, -0.015845561400055885, -0.0037263245321810246, -0.009685772471129894, -0.005502672865986824, 0.030622640624642372, 0.01793978177011013, -0.0012487862259149551, -0.03134920820593834, -0.005678971763700247, -0.0007860006880946457, -0.029874704778194427, -0.005604178179055452, -0.012821761891245842, -0.002221103059127927, -0.0034458483569324017, -0.0037797484546899796, -0.03466149419546127, -0.053936876356601715, -0.015151048079133034, -0.0011506195878610015, -0.03837980702519417, 0.03303740546107292, -0.000512202677782625, -0.027053916826844215, 0.020835362374782562, -6.849124474683776e-05, -0.051671698689460754, 0.009765908122062683, 0.010043713264167309, 0.026861591264605522, -0.006565810646861792, 0.0008741503115743399, 0.010588638484477997, -0.0065925223752856255, -0.020942211151123047, -0.02461778186261654, 0.026199134066700935, 0.03699078410863876, -0.03664886951446533, 0.01836717315018177, 0.02737446129322052, 0.001845799502916634, 0.005951434373855591, -0.029917443171143532, 0.007741138804703951, 0.015995148569345474, -0.011657118797302246, -0.042803313583135605, -0.025771740823984146, -0.017458966001868248, -0.015364744700491428, -0.01414667721837759, 0.025280240923166275, -0.0005329044652171433, 0.058039840310811996, -0.013238469138741493, 0.010337545536458492, -0.014274895191192627, 0.0162515826523304, 0.006902381777763367, -0.037546392530202866, 0.03179796785116196, 0.01024672482162714, 0.0268829595297575, 0.0040709092281758785, 0.046329300850629807, 0.023292867466807365, -0.045773688703775406, 0.017394857481122017, -0.0017015546327456832, -0.011112193576991558, 0.0051100063137710094, 0.0462438203394413, -0.0011559620033949614, -0.007271007169038057, -0.014135992154479027, -0.024126281961798668, -0.02899855189025402, -0.002147644991055131, 1.549504872855323e-06, 0.0110267149284482, 0.055432748049497604, -0.03154153376817703, -0.04117922484874725, -0.005823216866701841, -0.01717047579586506, 0.040238961577415466, -0.01871977187693119, -0.005200827028602362, -8.076207450358197e-05, 0.043358925729990005, -0.01610199548304081, -0.014029144309461117, 0.018057314679026604, 0.0111656179651618, 0.022651778534054756, -0.04276057705283165, 0.0022999034263193607, -0.02878485433757305, -0.02312191016972065, -0.0214978214353323, 0.006400195881724358, 0.004720011260360479, 0.007591551635414362, -0.01757649891078472, -0.0006718069198541343, -0.06359593570232391, 0.008943178690969944, -0.008905782364308834, -0.028421571478247643, 0.012704228982329369, 0.06590385735034943, -0.009594951756298542, -0.0017816906329244375, -0.031584274023771286, -0.02893444150686264, -0.01113356277346611, -0.00131623400375247, 0.03964061290025711, 0.02835746295750141, 0.035281214863061905, -0.0298533346503973, 0.020888786762952805, 0.03207577392458916, -0.002906265901401639, -0.01446722075343132, -0.03737543523311615, -0.030537161976099014, 0.03171249106526375, 0.041585247963666916, 0.011892183683812618, 0.01859155483543873, -0.02063235081732273, -0.009584266692399979, 0.014616807922720909, 0.03951239585876465, -0.04062361642718315, -0.0015519674634560943, -0.014050513505935669, 0.005914037581533194, 0.02254493162035942, 0.0012274165637791157, 0.014135992154479027, -0.02077125385403633, 0.003093250095844269, -0.010823704302310944, 0.001805731444619596, -0.026199134066700935, -0.016337061300873756, -0.03842254728078842, -0.0019072371069341898, 0.0220534298568964, 0.00950413104146719, -0.014766396023333073, -0.00016002159100025892, 0.07552018016576767, 0.004578437190502882, -0.03829433023929596, 0.027545418590307236, 0.03496066853404045, -0.00751675758510828, 0.00012771676119882613, -0.01261875033378601, 0.008734825067222118, 0.015610494650900364, -0.006368141621351242, 0.00839825440198183, -0.01403982937335968, -0.006501701660454273, 0.012362315319478512, -0.017255954444408417, 0.006886354647576809, 0.023100540041923523, -0.01617678999900818, 0.013452164828777313, 0.025301609188318253, 0.017683345824480057, -0.004757408052682877, -0.004287276417016983, 0.022779997438192368, -0.004695970099419355, 0.027502678334712982, -8.088728645816445e-05, -0.015257896855473518, -0.015375428833067417, -0.01074891071766615, 0.007618263363838196, -0.008334144949913025, -0.0018725114641711116, 0.013003403320908546, 0.010866442695260048, 0.0070947082713246346, 0.00011953621287830174, -0.028464311733841896, 0.02050413377583027, -0.017715400084853172, 0.006288005504757166, 0.0111656179651618, 0.02346382476389408, 0.03427684307098389, -0.0048188455402851105, 0.04175620526075363, 0.029810596257448196, 0.017993206158280373, -0.016785822808742523, 0.03538806363940239, 0.007767850533127785, -0.0032214676029980183, 0.002906265901401639, 0.005326373502612114, -0.009739196859300137, 0.01035357266664505, -0.022523561492562294, 0.06526276469230652, 0.024916956201195717, -0.025216130539774895, 0.03660612925887108, -0.04226907342672348, -0.010444393381476402, 0.008270036429166794, -0.007084023207426071, -0.012843131087720394, 0.009755223989486694, -0.00936522800475359, 0.026562416926026344, 0.003667558077722788, 0.015204472467303276, -0.0017977178795263171, -0.024639151990413666, 0.008355515077710152, -0.02972511760890484, -0.0013903598301112652, 0.024446826428174973, 0.00026461578090675175, -0.014381743036210537, -0.01333463191986084, 0.011251095682382584, 0.02617776393890381, 0.08723071962594986, 0.018741142004728317, 0.021369602531194687, 0.04615834355354309, 0.024938326328992844, -0.02071782946586609, 0.02226712554693222, 0.010412339121103287, 0.003523313207551837, 0.03006703034043312, -0.005168772768229246, -0.0039640613831579685, -0.0032508508302271366, 0.017405541613698006, -0.005139389541000128, 0.014349688775837421, 0.03348616883158684, -0.014990776777267456, -0.04293153062462807, 0.007655660156160593, 0.0177367702126503, -0.022373974323272705, -0.022673148661851883, 0.014061198569834232, 0.018847988918423653, 0.003144002752378583, 0.027545418590307236, 0.01986304670572281, -0.012501217424869537, 0.010043713264167309, 0.01637979969382286, 0.019681403413414955, 0.007436621934175491, 0.02835746295750141, -0.009199613705277443, -0.007078681141138077, 0.03750365227460861, 0.006341429427266121, 0.05346674472093582, -0.012244782410562038, -0.015012145973742008, -0.0016801849706098437, 0.033785343170166016, -0.029276356101036072, 0.0030638668686151505, -0.012586696073412895, -0.01617678999900818, -0.05795436352491379, -0.03365712612867355, 0.00599417369812727, 0.04269646480679512, 0.007767850533127785, 0.0025015792343765497, -0.002148980740457773, 0.04906460642814636, -0.023570671677589417, 0.028250614181160927, -0.005366441328078508, 0.005545411724597216, -0.00041704115574248135, -0.010668774135410786, -0.010385626927018166, -0.016764452680945396, -0.004241866059601307, -0.025066543370485306, 0.009413310326635838, 0.0014785093953832984, 0.028400201350450516, -0.02743856981396675, -0.002844828413799405, -0.017758140340447426, -0.031605642288923264, 0.016390485689044, 0.02013016678392887, -0.007121419999748468, 0.013345316983759403, 0.030750857666134834, 0.010027686133980751, -0.016326377168297768, -0.013377371244132519, -0.026370089501142502, -0.005168772768229246, 0.00581787433475256, 0.008579895831644535, -0.013623122125864029, -0.003667558077722788, -0.009493445977568626, -0.010738225653767586, 0.010017001070082188, -0.01595240831375122, -0.002147644991055131, 0.03566586598753929, 0.012543956749141216, 0.015418168157339096, -0.022395344451069832, -0.013377371244132519, 0.04380768537521362, -0.024062173441052437, -0.012426423840224743, 0.022779997438192368, -0.008334144949913025, 0.024083541706204414, -0.027994180098176003, 0.015856245532631874, -0.004455562215298414, -0.027695005759596825, -0.020322492346167564, 0.042290445417165756, 0.0023680191952735186, -0.01091986708343029, 0.010561926290392876, -0.014542014338076115, 0.02587858960032463, 0.00018397891835775226, 0.0020140851847827435, 0.00893783662468195, -0.038272958248853683, 0.025707632303237915, 0.0023506563156843185, -0.002215760760009289, 0.021529875695705414, 0.03303740546107292, -0.006651288829743862, -0.027118025347590446, -0.025344349443912506, -0.02183973416686058, 0.04487616568803787, 0.024489564821124077, -0.004025498870760202, -0.014948037452995777, 0.04077320173382759, 0.0027326380368322134, -0.04517534002661705, -0.001350291771814227, -0.021230701357126236, 0.000950947345700115, 0.018035944551229477, 0.013676545582711697, 0.001547960564494133, 0.003603449324145913, -0.00290893716737628, -0.002938320394605398, 0.015792137011885643, 0.05368044227361679, 0.01859155483543873, 0.020172905176877975, 0.0031092772260308266, -0.029661009088158607, -0.01979893632233143, -0.013217099010944366, 0.061587195843458176, 0.01880525052547455, -0.06697233766317368, 0.019702773541212082, 0.012736283242702484, -0.003902623662725091, 0.013975719921290874, -0.00982467457652092, 0.0044929590076208115, -0.010887812823057175, -0.013163675554096699, 0.040452659130096436, 0.025985436514019966, 0.011796020902693272, 0.001927271019667387, -0.00822195503860712, 0.03583682328462601, 0.004866926930844784, 0.031755231320858, 0.0241903904825449, -0.001616076217032969, -0.05359496548771858, 0.028165137395262718, -0.05154348164796829, 0.007287034764885902, -0.026412829756736755, -0.009568239562213421, 0.04590190574526787, 0.014285579323768616, 0.01986304670572281, 0.016828563064336777, -0.009456049650907516, -0.02170083113014698, -0.02119864523410797, 0.03793104365468025, -0.00949878804385662, 0.003317630849778652, 0.016262268647551537, -0.0029222932644188404, 0.031733859330415726, -0.02814376726746559, -0.028678007423877716, 0.006507044192403555, 0.020472079515457153, 0.010802334174513817, 0.007922780700027943, -0.00836619921028614, -0.006859642453491688, 0.03703352063894272, -0.017672661691904068, -0.019339490681886673, -0.005978146567940712, 0.010193300433456898, 0.0055240425281226635, 0.004300632514059544, 0.005115348845720291, 0.007639633025974035, -0.03459738567471504, -0.011112193576991558, -0.02029043808579445, -0.003907965961843729, 0.01205245591700077, -0.030729489400982857, 0.017149105668067932, -0.03171249106526375, -0.007158816792070866, 0.005043226294219494, 0.008275378495454788, -0.017747454345226288, -0.03652065247297287, 0.036499280482530594, -0.02993881329894066, -0.0002190384257119149, 0.008382226340472698, 0.026135023683309555, 0.024446826428174973, -0.03722584992647171, 0.00893249362707138, -0.007399225141853094, -0.002617776393890381, -0.029233615845441818, -0.015931038185954094, -0.004508986137807369, 0.0006217219051904976, 0.006774164270609617, -0.011625063605606556, -0.018345804885029793, 0.005045897327363491, 0.005561439320445061, -0.013174360617995262, 0.0014330990379676223, -0.006795533932745457, 0.005812531802803278, -0.03805926442146301, 0.019521132111549377, -0.004516999702900648, -0.018687717616558075, -0.023207388818264008, -0.023912586271762848, -0.017971836030483246, 0.000601353996898979, -0.0020448039285838604, -0.013569697737693787, 0.0012441115686669946, -0.013131621293723583, 0.0005148738855496049, -0.037054892629384995, -0.013836817815899849, -0.015792137011885643, 0.0026391460560262203, -0.03820884972810745, 0.003274891758337617, 0.00032738898880779743, -0.012992718257009983, -0.0016614865744486451, 0.0007579530938528478, 0.00017429582658223808, -0.0187090877443552, 0.017245270311832428, 0.00044008027180097997, -0.005593493580818176, -0.01106945425271988, 0.029490051791071892, 0.019959209486842155, -0.02369888871908188, 0.013623122125864029, -0.001517241820693016, -0.0010023679351434112, -0.004022827837616205, -0.0009295777417719364, -0.005881983321160078, -0.00039400203968398273, 0.009883441030979156, 0.020311808213591576, -0.0046425461769104, -0.015151048079133034, -0.023955324664711952, -0.008093737065792084, 0.00012746633728966117, -0.005930064711719751, 0.02020495943725109, 0.014745025895535946, 0.009290434420108795, -0.008440992794930935, 0.006207869853824377, 0.00673676747828722, -0.007661002688109875, -0.014328318648040295, 0.009562897495925426, 0.010396311990916729, -0.019093740731477737, 0.020482763648033142, 0.0021917198318988085, 0.01801457442343235, 0.01492666732519865, 0.007559496909379959, -0.005313017405569553, 0.002536304760724306, 0.042739205062389374, 0.011454107239842415, -0.02169014699757099, 0.006437592674046755, -3.1219653465086594e-05, -0.01928606629371643, 0.018634293228387833, 0.03991841897368431, 0.0026418170891702175, 0.007153474725782871, -0.019969893619418144, 0.017897041514515877, -0.02780185267329216, -0.010428366251289845, -0.018463337793946266, 0.0063895112834870815, 0.012073826044797897, 0.02147645130753517, 0.04075183346867561, 0.03615736961364746, -0.03085770644247532, -0.029554160311818123, 0.013356002047657967, 0.008008258417248726, 0.003942691721022129, 0.006020885426551104, -0.029896074905991554, -0.02624187245965004, 0.002693905495107174, -0.02099563553929329, 0.04423507675528526, -0.008387569338083267, 0.01588829979300499, 0.000608365866355598, 0.032011665403842926, -0.005454591009765863, 0.007741138804703951, -0.043081119656562805, 0.006165130529552698, 0.03367849439382553, 0.010930552147328854, 0.003325644414871931, -0.01844196766614914, 0.0051981559954583645, 0.0012601388152688742, -0.03985431045293808, -0.013665861450135708, -0.03508888930082321, 0.016283636912703514, -0.012479848228394985, -0.0028742116410285234, 0.01471297163516283, -0.01287518534809351, 0.015364744700491428, -0.00018498062854632735, 0.01152890082448721, 0.012244782410562038, -0.024874217808246613, 0.009466733783483505, 0.025087913498282433, 0.0005950098857283592, 0.011058769188821316, -0.026712004095315933, -0.006629919167608023, 0.011432737112045288, -0.0013536307960748672, 0.021732885390520096, 0.03043031506240368, -0.024275869131088257, 0.006587180308997631, 0.04970569536089897, -0.01205245591700077, 0.001848470652475953, 0.015204472467303276, -0.00617047306150198, -0.006613892037421465, 0.012939294800162315, -0.003932007122784853, 0.0013823461486026645, 0.012127249501645565, -0.022673148661851883, 0.004813503008335829, 0.013729969970881939, -0.01436037290841341, -0.020461395382881165, 0.00025159367942251265, -0.0017990533960983157, -0.015375428833067417, -0.033507537096738815, -0.04320933669805527, 0.021861104294657707, -0.01702088862657547, -0.015877615660429, -0.020269067957997322, 0.020974265411496162, -0.01821758598089218, 0.018196217715740204, -0.005045897327363491, -0.03211851418018341, 0.021220015361905098, -0.00614910339936614, -0.013954350724816322, -0.015706658363342285, 0.008029628545045853, 0.0006925087072886527, 0.015695974230766296, 0.0061597879976034164, 0.049534738063812256, -0.033721234649419785, -0.006800875999033451, -0.028378833085298538, -0.006426908075809479, 0.010481790639460087, 0.006245266646146774, 0.019243327900767326, -0.038678981363773346, -0.011625063605606556, -0.0017603210872039199, 0.0001884865778265521, 0.00438076863065362, 0.022801365703344345, 0.0092850923538208, 0.013890242204070091, 0.02786596305668354, 0.010033028200268745, -0.007228268310427666, -0.003974745981395245, -0.0043086460791528225, 0.0034805741161108017, -0.013676545582711697, 0.02765226550400257, -0.03624284639954567, 0.030259357765316963, -0.019627980887889862, 0.034939300268888474, -0.010604665614664555, 0.02312191016972065, 0.003093250095844269, 0.01772608608007431, -0.028036918491125107, -0.012127249501645565, -0.015375428833067417, 0.0030772227328270674, 0.027032548561692238, 0.023228758946061134, 0.018046630546450615, -0.0019059014739468694, 0.019948523491621017, 0.016422539949417114, 0.030793597921729088, 0.0019312779186293483, -0.010551241226494312, -0.024938326328992844, 0.011977662332355976, -0.0064963591285049915, -0.030686749145388603, -0.024147652089595795, 0.01957455649971962, -0.005700341425836086, 0.003857213305309415, 0.0033977669663727283, 0.006726082414388657, 0.0038198165129870176, -0.0157387126237154, 0.014531330205500126, -0.030579902231693268, 0.08941041678190231, -0.0013456172309815884, 0.0005248909001238644, 0.004530355799943209, -0.04250413924455643, -0.0057377382181584835, -0.00425255112349987, -0.0258144810795784, 0.033999036997556686, -0.010882469825446606, -0.03384945169091225, 0.032289471477270126, 0.011560955084860325, -0.02035454660654068, -0.011475476436316967, -0.030622640624642372, -0.0306440107524395, -0.0037102974019944668, 0.009477418847382069, 0.009514816105365753, 0.014915983192622662, 0.01198834739625454, 0.025344349443912506, 0.0015866929898038507, -0.03829433023929596, 0.03181933984160423, 0.041093748062849045, 0.02014085091650486, -0.013302577659487724, 0.0016748426714912057, 0.04842352122068405, 0.0010183951817452908, 0.05261196196079254, -0.028742115944623947, 0.003424478927627206, -0.002802089089527726, 0.013270523399114609, 0.022245757281780243, -0.007212241180241108, 0.022801365703344345, 0.01864497922360897, -0.05389413982629776, 0.051244307309389114, -0.03207577392458916, 0.016059257090091705, 0.024575043469667435, -0.01532200537621975, -0.028613898903131485, 0.008067024871706963, -0.011432737112045288, 0.051030613481998444, -0.02963963896036148, -0.011603694409132004, 0.003042497206479311, -0.03694804385304451, 0.0170849971473217, -0.0027379803359508514, -0.03887130692601204, 0.01574939675629139, -0.015589125454425812, 0.05551822856068611, -0.0026137696113437414, -0.05171443894505501, -0.006795533932745457, 0.01460612379014492], [0.022475650534033775, 0.0458090603351593, -0.04420945420861244, 0.0141878267750144, -0.02508370764553547, -0.016111992299556732, -0.0013185173738747835, 0.04177526757121086, 0.00843851175159216, 0.010849514976143837, -0.028630662709474564, 0.029442058876156807, -0.012194112874567509, 0.02420276403427124, 0.00738949328660965, -0.006914247293025255, 0.009817883372306824, 0.03662870451807976, 0.00019813983817584813, 0.02138606272637844, -0.0133300656452775, -0.022719068452715874, -0.04277212545275688, 0.0025341615546494722, 0.0181288905441761, -0.014222600497305393, -0.006821516435593367, -0.05072379857301712, -0.00450903968885541, -0.011318964883685112, 0.04694501683115959, -0.040708862245082855, 0.05702950060367584, -0.035376835614442825, 0.017468182370066643, 0.006786742247641087, 0.012379574589431286, -0.01798979379236698, 0.05104835703969002, -0.03333675488829613, -0.06305700540542603, 0.013098238967359066, 0.006549119483679533, -0.06713716685771942, 0.0043554543517529964, 0.06806447356939316, -0.023101583123207092, 0.015451285056769848, -0.03356858342885971, 0.022719068452715874, -0.016842247918248177, 0.025106890127062798, -0.01961258426308632, 0.0155556071549654, 0.0155556071549654, -0.0219656303524971, -0.014466019347310066, -0.01232161745429039, 0.04339805990457535, 0.0016213416820392013, 0.03672143444418907, -0.022661112248897552, -0.0038019665516912937, 0.01170147955417633, 0.004367045592516661, -0.012425939552485943, 0.015868574380874634, 0.04105660319328308, -0.035075459629297256, 0.019624175503849983, 0.0011250865645706654, 0.041010238230228424, 0.0062187653966248035, -0.0059579601511359215, -0.042007096111774445, 0.03744009882211685, -0.022869756445288658, -0.014268966391682625, 0.0031151785515248775, -0.008815230801701546, -0.04349078983068466, 0.00798644870519638, -0.044580377638339996, 0.0220467709004879, 0.03929471597075462, -0.009389002807438374, -0.052253857254981995, -0.00035118203959427774, 0.03071710839867592, -0.014025547541677952, -0.03136622533202171, -0.005387085489928722, -0.015300597064197063, 0.04133479669690132, 0.012263660319149494, -0.04624953493475914, 0.02721651829779148, -0.015010813251137733, -0.060877833515405655, 0.030485281720757484, 0.0007059864001348615, 0.01856936141848564, -0.03530728816986084, 0.004975592251867056, 0.06495799124240875, -0.003404962597414851, -0.05995052307844162, 0.004451083019375801, -0.0369068942964077, -0.01831435225903988, 0.05345936119556427, -0.007088117767125368, 0.014802169054746628, 0.04131161421537399, -0.024156397208571434, -0.06152694672346115, 0.004850985016673803, -0.009290476329624653, -0.04578587785363197, -0.014894899912178516, -0.018801188096404076, -0.019345982000231743, 0.025964651256799698, -0.06556074321269989, 0.026729680597782135, 0.05763224884867668, -0.023518873378634453, 0.008693520911037922, -0.03083302266895771, -0.002254519844427705, 0.05276387929916382, 0.00023599287669640034, 0.027425162494182587, -0.012622992508113384, 0.020215334370732307, 0.03243263065814972, 0.02594146691262722, -0.020991956815123558, 0.004610463976860046, -0.031157581135630608, -0.005511692725121975, -0.02550099603831768, 0.0765957161784172, -0.012588218785822392, 0.00894853100180626, -0.014523976482450962, -0.018638908863067627, 0.013770537450909615, 0.03614186495542526, 0.005303048063069582, -0.018476631492376328, -0.021374471485614777, 0.03169078379869461, 0.011237825267016888, 0.006809925194829702, -0.039271533489227295, -0.031343042850494385, 0.05832773074507713, -0.01375894621014595, 0.035655029118061066, -0.045461319386959076, 0.018383899703621864, -0.04451083019375801, -0.017387041822075844, 0.01160295307636261, 0.0020589155610650778, 0.01834912598133087, 0.01989077590405941, -0.030183905735611916, 0.012646175920963287, -0.04998195171356201, -0.005871024914085865, -0.000622673484031111, -0.015231049619615078, -0.033499035984277725, -0.03716190531849861, 0.05378391966223717, 0.011046567931771278, 0.007470632437616587, 0.0025892204139381647, -0.00423374492675066, 0.061480581760406494, -0.04961102828383446, -0.0611560232937336, 0.0036715639289468527, 0.030323002487421036, -0.01261140126734972, 0.005934777203947306, 0.016088809818029404, -0.0027297656051814556, 0.007829965092241764, 0.035214558243751526, 0.02508370764553547, 0.027981547638773918, 0.0025674866046756506, -0.0004024375812150538, -0.0492401048541069, 0.03702281042933464, 0.035075459629297256, 0.001070027588866651, 0.011643522419035435, -0.035214558243751526, -0.03669825196266174, -0.026173295453190804, -0.05016741529107094, 0.030462099239230156, 0.07061457633972168, 0.02522280253469944, 0.011550791561603546, -0.005760906729847193, 0.0012040527071803808, -0.030948935076594353, -0.015845391899347305, 0.06964090466499329, -0.0166567862033844, -0.00911660585552454, 0.022081544622778893, 0.013457571156322956, 0.011539200320839882, 0.05243932083249092, -0.05359845608472824, -0.02710060402750969, 0.013295291922986507, -0.008844208903610706, -0.021861309185624123, -0.027726536616683006, -0.02937251143157482, -0.021699029952287674, 0.016459733247756958, -0.026590583845973015, -0.014697846956551075, 0.039433810859918594, -0.012333208695054054, -0.05953323468565941, 0.025616910308599472, 0.01583380065858364, -0.029024770483374596, -0.05392301455140114, -0.014211009256541729, -0.039572909474372864, -0.015393328852951527, 0.024017302319407463, 0.022232232615351677, -0.0018401286797598004, 0.04798823595046997, 0.002309578936547041, 0.003370188409462571, -0.02082967758178711, 0.045299042016267776, -0.014037138782441616, -0.027494709938764572, -0.022301780059933662, 0.017479773610830307, -0.018986649811267853, 0.008363167755305767, -0.025593725964426994, 0.043305326253175735, -0.005752213299274445, 0.033499035984277725, -0.058003176003694534, 0.006265130825340748, -0.02865384705364704, 0.002100934274494648, -0.030601194128394127, -0.08457057178020477, -0.026683315634727478, 0.06259335577487946, -0.015451285056769848, 0.01346916239708662, 0.028352471068501472, -0.03577094152569771, 0.06681261211633682, -0.0037584989331662655, -0.019357573240995407, -0.04724638909101486, -0.01953144371509552, 0.012715724296867847, -0.060599640011787415, -0.028908856213092804, 0.0329890139400959, -0.03577094152569771, -0.039851102977991104, -0.005204521585255861, -0.011336351744830608, 0.010513365268707275, -0.0073141492903232574, 0.025106890127062798, 0.015312189236283302, 0.017027709633111954, -0.009220927953720093, 0.05434030294418335, -0.03676779940724373, -0.04555405303835869, -0.014570341445505619, 0.028306106105446815, -0.01163193117827177, -0.025431448593735695, 0.024898245930671692, -0.005581240635365248, -0.020852860063314438, 0.019137337803840637, 0.009110810235142708, -0.015880165621638298, -0.022313371300697327, -0.0020371817518025637, 0.013596666976809502, 0.00040316206286661327, 0.004138116259127855, -0.060599640011787415, -0.015671521425247192, -0.0005458806990645826, 0.016784291714429855, -0.0059260837733745575, -0.036953262984752655, 0.005172645207494497, -0.004879963118582964, -0.02082967758178711, 0.017120441421866417, 0.017282720655202866, -0.009122401475906372, 0.023831840604543686, 0.02577918767929077, 0.008519650436937809, -0.011915920302271843, 0.01052495650947094, -0.009858452714979649, 0.04103342071175575, 0.016390185803174973, -0.00036730128340423107, -0.0387846976518631, -0.03635051101446152, 0.015984488651156425, 0.029766617342829704, -0.014431245625019073, -0.038970157504081726, -0.06722989678382874, 0.01781592331826687, 0.02376229129731655, -0.014199418015778065, -0.025315534323453903, 0.02284657396376133, -0.011927511543035507, -0.007198235485702753, 0.010513365268707275, -0.012425939552485943, 0.014674663543701172, 0.017537729814648628, -0.00459307711571455, -0.008090770803391933, -0.015381736680865288, -0.012738906778395176, 0.02638193964958191, -0.05563853681087494, 0.013063464313745499, -0.012808455154299736, 0.004929226357489824, -0.013527119532227516, -0.05619492009282112, -0.033058565109968185, 0.02793518267571926, -0.020145786926150322, -0.007870534434914589, 0.034519076347351074, 0.01843026466667652, -0.0003999019681941718, -0.03136622533202171, -0.02420276403427124, -0.05823500081896782, 0.053088437765836716, -0.039827920496463776, 0.07182008028030396, -0.029163865372538567, 0.0014373288722708821, -0.01936916634440422, 0.05716859549283981, 0.0459713414311409, -0.02538508176803589, 0.00563629949465394, 0.033962689340114594, -0.02096877433359623, -0.008455898612737656, -0.024133214727044106, 0.002993469126522541, 0.031180763617157936, -0.004764049779623747, 0.01950826123356819, -0.023217497393488884, 0.0043554543517529964, 0.02450413815677166, 0.034681353718042374, 0.010548138990998268, 0.02284657396376133, 0.015115135349333286, 0.057446788996458054, -0.02492142841219902, 0.00467711454257369, 0.01435010600835085, 0.044881753623485565, -0.0048886570148169994, -0.02176857739686966, 0.028329288586974144, -0.013724172487854958, -0.023553647100925446, 0.006149217486381531, 0.03261809051036835, 0.04757094755768776, 0.01723635569214821, -0.007911104708909988, 0.004961102735251188, -0.0004919084021821618, 0.015126727521419525, -0.0498892217874527, 0.007233009673655033, -0.014848534017801285, -0.013353249058127403, 0.021838124841451645, 0.02652103640139103, 0.011800006031990051, 0.026474669575691223, 0.008942735381424427, 0.05438666790723801, -0.0300911758095026, -0.04910100996494293, -0.002634136937558651, -0.004071465693414211, 0.017004527151584625, 0.008780456148087978, 0.011800006031990051, 0.0073836976662278175, -0.05749315395951271, -0.03201534226536751, 0.031018484383821487, 0.07279375195503235, -0.012055016122758389, -0.017757967114448547, -0.04163617268204689, -0.04263302683830261, -0.020980365574359894, 0.011347942985594273, -0.014442836865782738, -0.08452420681715012, -0.028607480227947235, 0.01663360372185707, 0.0034571236465126276, -0.06685897707939148, 0.024573687463998795, 0.0018473733216524124, -0.03776465728878975, 0.007227214053273201, -0.013573484495282173, -0.011620339937508106, -0.00990481860935688, -0.06829630583524704, 0.008154522627592087, -0.0167379267513752, -0.007940082810819149, 0.03417133539915085, -0.0720982700586319, 0.025408264249563217, 0.00594636844471097, -0.002437083749100566, 0.011040772311389446, 0.0314357727766037, 0.01845344714820385, 0.015474467538297176, 0.03903970494866371, 0.015462876297533512, 0.018302761018276215, 0.004865474067628384, -0.012356391176581383, -0.023739108815789223, -0.03693007677793503, 0.005668175872415304, -0.011950694024562836, -0.02318272367119789, -0.0019908163230866194, 0.02566327527165413, 0.026405122131109238, 0.016564056277275085, -0.008479081094264984, -0.002932614414021373, 0.06625622510910034, -0.04003656283020973, 0.01789706200361252, 0.05897684767842293, -0.027146968990564346, 0.06240789219737053, 0.05522124841809273, -0.02376229129731655, 0.01317937858402729, -0.029349327087402344, -0.03676779940724373, 0.0007146798889152706, -0.00957446452230215, -0.01121464278548956, 0.002509529935196042, 0.0010207643499597907, -0.009174562990665436, 0.06574620306491852, -0.06185150519013405, 0.031783513724803925, -0.01986759342253208, -0.0008403737447224557, -0.01701611839234829, 0.008647155947983265, -0.035376835614442825, 0.013237334787845612, 0.024735966697335243, 0.023831840604543686, 0.005720336921513081, -0.037532828748226166, 0.012588218785822392, 0.01950826123356819, -0.004372841212898493, -0.024875061586499214, -0.04019884392619133, -0.00976572185754776, -0.005871024914085865, -0.00745324557647109, -0.035098642110824585, -0.001605403609573841, 0.015439693816006184, -0.023970935493707657, -0.012507079169154167, -0.010003345087170601, 0.020041463896632195, 0.02995207905769348, -0.055545806884765625, 0.03778783977031708, -0.0009062996250577271, -0.025848736986517906, -0.01607721857726574, -0.05420120805501938, 0.007343127857893705, 0.05234659090638161, -0.013990773819386959, -0.023553647100925446, 0.023113176226615906, 0.0680181086063385, -0.004764049779623747, 0.021212192252278328, -0.04335169121623039, -0.03669825196266174, -0.010061302222311497, 0.0018343329429626465, -0.016239497810602188, 0.027170151472091675, -0.009226723574101925, 0.004210561979562044, 0.01865050196647644, -0.0003035487898159772, 0.0006049241637811065, 0.034797269850969315, -0.013075056485831738, 0.013596666976809502, 0.004309088923037052, 0.023994117975234985, -0.003694746643304825, -0.013121421448886395, -0.00928468070924282, -0.017027709633111954, -0.013700990006327629, -0.025315534323453903, -0.028584297746419907, -0.007296762429177761, 0.04107978567481041, 0.019913960248231888, 0.0038512300234287977, 0.05485032498836517, 0.0062477439641952515, -0.03231671825051308, 0.009626626037061214, 0.01627427153289318, -0.03662870451807976, 0.03887742757797241, 0.005514590535312891, 0.025686457753181458, 0.008739886805415154, 0.0381355807185173, 0.03917880356311798, 0.016181541606783867, 0.03354540094733238, 0.007435858715325594, -0.014987630769610405, -0.01098281517624855, 0.020284883677959442, 0.007812578231096268, 0.004265621304512024, -0.014987630769610405, -0.02981298230588436, 0.008003835566341877, 0.00358173088170588, -0.006467979867011309, 0.008473285473883152, -0.006265130825340748, 0.019195295870304108, -0.0038048645947128534, 0.009881636127829552, -0.044325366616249084, 0.013735763728618622, -0.002496489556506276, 0.001030906685627997, 0.0077024600468575954, 0.0009439715067856014, -0.06875995546579361, -0.020899225026369095, -0.002093689749017358, -0.027286065742373466, -0.021977221593260765, 0.010901675559580326, -0.0010033772559836507, 0.013921225443482399, 0.002313925651833415, -0.016726335510611534, -0.01873164065182209, 0.002461715368553996, -0.016506098210811615, 0.005126279778778553, 0.006949021480977535, -0.0345422588288784, -0.030067991465330124, -0.012808455154299736, 0.01615835912525654, 0.010310516692698002, -0.027401980012655258, 0.01009607594460249, -0.014176235534250736, -0.02522280253469944, 0.017804332077503204, -0.01807093247771263, -0.009371615946292877, -0.017978202551603317, -0.027332430705428123, -0.009400594048202038, -0.0021936651319265366, -0.024828696623444557, -0.04434854909777641, -0.016181541606783867, -0.011718866415321827, 0.04212300851941109, 0.016471324488520622, -0.007261988241225481, 0.05549944192171097, -0.02812064439058304, 0.06370612233877182, 0.013793720863759518, 0.004172890447080135, 0.051372915506362915, -0.013248926028609276, 0.00491763511672616, 0.02508370764553547, 0.031157581135630608, 0.0067809466272592545, -0.019102564081549644, 0.007360514719039202, 0.0053610047325491905, -0.007945878431200981, 0.06416977941989899, 6.375248631229624e-05, -0.002354495460167527, 0.022371327504515648, 0.04536858946084976, -0.010449612513184547, -0.015439693816006184, -0.0019067790126428008, 0.013782128691673279, 0.013932816684246063, -0.030160723254084587, 0.019716905429959297, 0.010327903553843498, -0.0013721274444833398, -0.016239497810602188, -0.02242928557097912, -0.046620458364486694, 0.008977510035037994, -0.0016662582056596875, 0.0021646867971867323, 0.03850650414824486, -0.012947550974786282, 0.007122891955077648, -0.022591564804315567, -0.027286065742373466, 0.01701611839234829, 0.007238805294036865, -0.0013119973009452224, -0.027842450886964798, 0.011400104500353336, -0.02422594651579857, 0.01909097284078598, 0.01785069704055786, 0.0055725472047924995, 0.01045540813356638, -0.0022675602231174707, -0.001041049137711525, 0.007406880147755146, 0.020864451304078102, 0.033058565109968185, 0.0035730372183024883, 0.012333208695054054, 0.026126928627490997, -0.0150455879047513, -0.014593524858355522, -0.02376229129731655, -0.07539021968841553, -0.05429393798112869, 0.01867368444800377, 0.02404048480093479, 0.0053899833001196384, 0.019705314189195633, -0.021096277981996536, -0.028352471068501472, 0.014894899912178516, -0.021420836448669434, 0.007331536151468754, -0.021756986156105995, -0.03938744589686394, 0.03194579482078552, -0.03231671825051308, 0.0017242151079699397, 0.01892869360744953, -0.024828696623444557, -0.008253049105405807, -0.02406366728246212, 0.006201378535479307, 0.03563184663653374, -0.01881277933716774, 0.027842450886964798, 0.004346760455518961, -0.0005411716992966831, 0.022498833015561104, 0.009719356894493103, -0.024318676441907883, -0.028561115264892578, 0.009389002807438374, -0.02853793278336525, 0.011336351744830608, -0.03591004014015198, 0.020991956815123558, 0.02226700633764267, -0.015381736680865288, 0.02638193964958191, -0.05012104660272598, 0.006323087960481644, -0.02394775301218033, 0.012089789845049381, 0.022719068452715874, 0.01535855419933796, 0.03748646378517151, -0.016598829999566078, -0.005508794449269772, -0.016251089051365852, 0.007598137483000755, -0.06403068453073502, 0.01795502007007599, 0.03549274802207947, -0.002284947084262967, -0.01131316926330328, 0.008774660527706146, -0.027170151472091675, -0.013237334787845612, -0.0023689845111221075, 0.01088428869843483, 0.004529324825853109, 0.0536448210477829, 0.025825554504990578, 0.013503936119377613, -0.030044808983802795, 0.0025761800352483988, -0.03570139408111572, -0.03635051101446152, 0.017584096640348434, 0.0013076504692435265, -0.030740290880203247, -0.011811597272753716, -0.016622012481093407, -0.028630662709474564, -0.03906288743019104, -0.00925570260733366, -0.013979182578623295, -0.03804285079240799, 0.034797269850969315, -0.00894853100180626, -0.05531397834420204, 0.057122230529785156, -0.005665278062224388, -0.027772903442382812, -0.023495690897107124, -0.0016546668484807014, 0.036373693495988846, 0.015033995732665062, -0.007360514719039202, -0.025616910308599472, -0.00904705747961998, -0.028932038694620132, -0.056565843522548676, 0.04094069078564644, 0.007117096334695816, -0.03961927443742752, -0.004981387872248888, 0.02967388555407524, -0.007598137483000755, 0.014558750204741955, -0.040430668741464615, -0.028885673731565475, 0.01701611839234829, 0.013874860480427742, -0.05058470368385315, -0.015520833432674408, -0.006398431491106749, -0.019798045977950096, -0.019137337803840637, 0.035400018095970154, 0.039688821882009506, 0.02524598501622677, -0.01829116977751255, -0.007406880147755146, 0.007719846908003092, 0.03252536058425903, -0.0019864696078002453, -0.005760906729847193, 0.01533537171781063, -0.00467711454257369, 0.012553445063531399, -0.012020242400467396, 0.04845189303159714, -0.010924858041107655, -0.02362319454550743, 0.007221418432891369, 0.017201580107212067, 0.024133214727044106, -0.0029586951714009047, 0.04328214377164841, -0.00796906091272831, -0.0027051339857280254, -0.004346760455518961, -0.009980162605643272, -0.0181288905441761, -0.009823678992688656, -0.02422594651579857, -0.0009338290547020733, 0.07631752640008926, 0.00673458119854331, -0.0473623052239418, 0.007557567674666643, 0.028422018513083458, 0.02939569391310215, -0.015126727521419525, 0.013341657817363739, 0.009870044887065887, 0.07024364918470383, -0.033939506858587265, -0.02591828443109989, -0.0022038077004253864, -0.0022429286036640406, 0.032200802117586136, -0.07024364918470383, 0.010409043170511723, -0.008450102992355824, -0.027007872238755226, -0.0066070761531591415, 0.00911660585552454, -0.001256213872693479, 0.015984488651156425, -0.011110320687294006, -0.014744211919605732, -0.01671474426984787, 0.011295782402157784, 0.010600300505757332, -0.04808096960186958, -0.00021679469500668347, 0.042378019541502, 0.03447271138429642, 0.01776955835521221, -0.0512801855802536, -0.01432692352682352, -0.02696150727570057, 0.01713203266263008, 0.04812733456492424, 0.014292148873209953, 0.035237740725278854, -0.020980365574359894, 0.0017995588714256883, 0.03732418641448021, 0.014199418015778065, 0.01853458769619465, -0.019218478351831436, -0.013955999165773392, 0.04103342071175575, 0.028468385338783264, 0.03778783977031708, 0.013063464313745499, -0.021780168637633324, -0.017584096640348434, -0.009864249266684055, -0.011904328130185604, -0.028769759461283684, 0.023298637941479683, -0.003996122162789106, 0.017108850181102753, 0.0372314527630806, -0.037695109844207764, 0.015659930184483528, -0.0001927063858602196, 0.018499813973903656, 0.021838124841451645, 0.026845593005418777, 0.03790375217795372, -0.023855023086071014, -0.0387846976518631, -0.024828696623444557, 0.020702172070741653, -0.012472305446863174, -0.01016562432050705, -0.018476631492376328, 0.0683426707983017, -0.0167379267513752, -0.03199215978384018, -2.6284318664693274e-05, 0.02262633852660656, 0.03693007677793503, 0.01153340470045805, 0.008652951568365097, 0.017479773610830307, 0.015022404491901398, -0.01533537171781063, 0.006033303681761026, -0.01441965438425541, -0.011544995941221714, 0.02152515947818756, -0.009145584888756275, -0.01745659112930298, 0.017862288281321526, -0.0023776781745254993, 0.015741068869829178, 0.007401084527373314, -0.006502754054963589, -0.007296762429177761, 0.0041497074998915195, 0.03570139408111572, 0.017027709633111954, 0.04318941384553909, -0.005760906729847193, -0.03208488970994949, -0.02809746004641056, 0.003370188409462571, -0.005471122916787863, -0.007882125675678253, -0.00028090941486880183, 0.011649318970739841, -0.0011866656132042408, -0.03788056969642639, -0.008015426807105541, 0.02404048480093479, 0.010449612513184547, -0.0024211457930505276, -0.004940818063914776, 0.011434878222644329, 0.019461896270513535, -0.008867391385138035, 0.02113105170428753, 0.03686052933335304, 0.007998039945960045, 0.010785762220621109, -0.0222090482711792, 0.022139500826597214, 0.021780168637633324, 0.01368939783424139, 0.006398431491106749, -0.0020328350365161896, -0.009771518409252167, 0.00928468070924282, 0.0027355614583939314, 0.07233009487390518, 0.002142952987924218, -0.007505406625568867, 0.010895879939198494, 0.003370188409462571, 0.002079200465232134, 0.00993379671126604, -0.00807917956262827, -0.027471527457237244, -9.19158774195239e-05, 0.002808007411658764, 0.03166760131716728, 0.014663072302937508, 0.021791759878396988, 0.015370145440101624, -0.00043431384256109595, 0.023808656260371208, -0.018337534740567207, 0.013527119532227516, 0.021780168637633324, -0.015033995732665062, -0.008021222427487373, -0.036559153348207474, 0.01346916239708662, 0.046458177268505096, 0.0492401048541069, 0.025477813556790352, 0.021177418529987335, 0.029882529750466347, 0.03273400664329529, 0.0030948936473578215, 0.00731994491070509, 0.037556011229753494, -0.005665278062224388, 0.05285660922527313, 0.004158400930464268, -0.00961503479629755, 0.010681440122425556, 0.027401980012655258, -0.025732822716236115, 0.00827623251825571, 0.0002367173437960446, -0.001566282706335187, -0.041010238230228424, 0.009939592331647873, -0.015741068869829178, -0.00810815766453743, -0.01989077590405941, 0.029163865372538567, 0.016471324488520622, 0.014744211919605732, 0.042169373482465744, 0.018488222733139992, -0.0036367897409945726, -0.010339494794607162, -0.003402064787223935, 0.01593812182545662, -0.003996122162789106, 0.008589198812842369, 0.01304028183221817, 0.008780456148087978, 0.03417133539915085, 0.013017099350690842, 0.010635074228048325, 0.0004991530440747738, -0.017804332077503204, 0.0203312486410141, 0.0333135724067688, -0.016262680292129517, 0.00894853100180626, -0.02723970077931881, 0.020319657400250435, -0.02508370764553547, -0.02610374614596367, -0.017039300873875618, 0.010142441838979721, 0.00872829556465149, 0.004836495500057936, -0.00562181044369936, 0.026868777349591255, -0.021038321778178215, 0.029210232198238373, -0.002674706745892763, -0.012599810026586056, 0.00813713576644659, 0.0015575892757624388, -0.024133214727044106, -0.00928468070924282, 0.027262883260846138, -0.028607480227947235, 0.030647560954093933, 0.00878625176846981, 0.04203027859330177, -0.03375404700636864, -0.009058649651706219, 0.017757967114448547, -0.030948935076594353, 0.05434030294418335, 0.03442634269595146, -0.008861595764756203, 0.007864738814532757, 0.009394798427820206, 0.026845593005418777, 0.008363167755305767, -0.027726536616683006, -0.01997191645205021, -0.018627317622303963, 0.007041752338409424, 0.026289207860827446, 0.002634136937558651, 0.00519292987883091, 0.022730659693479538, 0.0014742763014510274, 0.0011127707548439503, -0.029905714094638824, 0.009499120526015759, 0.02066739834845066, 0.006560710724443197, 0.00716346176341176, -0.022000404074788094, -0.03398587182164192, 0.03382359445095062, -0.009690378792583942, -0.029140682891011238, -0.01865050196647644, -0.01519627496600151, 0.026451487094163895, -0.0247823316603899, -0.002661666367202997, 0.007870534434914589, -0.016239497810602188, -0.03326720744371414, 0.05118745192885399, 0.01497603952884674, -0.006415818817913532, -0.007001182530075312, -0.00853703822940588, 0.02506052330136299, 0.019357573240995407, 0.01406032219529152, 0.004083057399839163, -0.045322224497795105, 0.030601194128394127, 0.0002604433975648135, -0.007992244325578213, -0.020366022363305092, 0.0077024600468575954, 0.001595261157490313, -0.015393328852951527, -0.02052830159664154, -0.009331046603620052, 0.05693677067756653, 0.009191949851810932, 0.00947593804448843, -0.00997436698526144, 8.512406202498823e-05, -0.017247946932911873, -0.023217497393488884, 0.010443816892802715, -0.019600993022322655, -0.01526582334190607, -0.012078198604285717, 0.0074648368172347546, -0.0035527523141354322, 0.013051873072981834, -0.026196477934718132, -0.027842450886964798, 0.01743340864777565, 0.037532828748226166, 0.01081474032253027, 0.0016908899415284395, 0.012704132124781609, -0.03428724780678749, 0.014489201828837395, -0.023808656260371208, 0.06421614438295364, 0.010043915361166, -0.046481359750032425, 0.01629745401442051, -0.04161299020051956, -0.03301219642162323, 0.010791557841002941, 0.0031383612658828497, 0.0078183738514781, -0.003677359549328685, 0.001041773590259254, 0.022777026519179344, 0.021339697763323784, 0.01721317134797573, -0.030809840187430382, -0.018198437988758087, 0.004961102735251188, 0.0011489937314763665, 0.023171132430434227, 0.00885580014437437, 0.0007672032807022333, -0.044742655009031296, 0.029140682891011238, -0.03528410568833351, -0.019983507692813873, -0.04951829835772514, -0.012182521633803844, 0.029210232198238373, 0.014245783910155296, -0.021780168637633324, 0.007244600914418697, -0.0030224474612623453, -0.01825639419257641, -0.016471324488520622, 0.006931634154170752, -0.017305903136730194, 0.001754642347805202, 0.0006552741979248822, 0.008589198812842369, 0.016749517992138863, -0.008444307371973991, -0.0473623052239418, -0.009945387952029705, 0.0405002161860466, -0.0018560667522251606, -0.0017300107283517718, 0.018835963681340218, -0.028746576979756355, 0.011301578022539616, -0.01809411495923996, -0.030879387632012367, -0.0032716619316488504, 0.01339961402118206, 0.0015430999919772148, 0.031180763617157936, -0.020157378166913986, -0.02969706803560257, -0.050213780254125595, -0.009783109650015831, -0.05174383893609047, 0.00908762775361538, 0.004074363503605127, -0.004419206641614437, -0.007244600914418697, 0.0022081544157117605, -0.02030806615948677, 0.015822209417819977, -0.012982325628399849, 0.001576425158418715, -0.021942447870969772, 0.024689599871635437, -0.02580237202346325, -0.039688821882009506, 0.014303740113973618, 0.03961927443742752, -0.008200888521969318, -0.037834204733371735, 0.03635051101446152, 0.008652951568365097, 0.0331512950360775, -0.03097211942076683, -0.00676935538649559, -0.003517978359013796, 0.01663360372185707, 0.0034165538381785154, -0.022301780059933662, -0.002455919748172164, 0.025848736986517906, 0.0312734954059124, -0.020586257800459862, -0.0030948936473578215, -0.01705089397728443, 0.011927511543035507, -0.023078400641679764, 0.030902570113539696, -0.009452755562961102, -0.003184726694598794, -0.007279375102370977, -0.0256400927901268, -0.028143826872110367, 0.017444999888539314, 0.01268094964325428, -0.007743029855191708, 0.0024124521296471357, -0.003659972455352545, -0.019844410941004753, -0.011405900120735168, -0.01964735798537731, -0.014211009256541729, 0.028561115264892578, -0.04666682332754135, 0.03345267102122307, 0.003984530456364155, -0.009968571364879608, 0.012112973257899284, -0.024990975856781006, -0.01317937858402729, -0.00012460713332984596, 0.018986649811267853, -0.013167787343263626, 0.002673257840797305, -0.003312231507152319, 0.013677806593477726, 0.012043424881994724, -0.027842450886964798, 0.005624708253890276, 0.005459531210362911, -0.010988610796630383, 0.015173092484474182, -0.001961837988346815, 0.016123583540320396, 0.01986759342253208, 0.008878983557224274, 0.0020183457527309656, 0.016807474195957184, 0.005137871019542217, -0.042864855378866196, 0.014071913436055183, 0.03243263065814972, -0.02895522117614746, 0.01749136485159397, 0.0025051829870790243, 4.939912469126284e-05, -0.04928646981716156, 0.0047118887305259705, 0.014106687158346176, -0.023855023086071014, 0.0211078692227602, -0.013596666976809502, 0.04873008653521538, -0.03215443715453148, 0.016726335510611534, -0.010316312313079834, 0.010391655378043652, 0.011823189444839954, 0.013434388674795628, -0.0024283903185278177, 0.02768017165362835, 0.031157581135630608, 0.016587238758802414, -0.023113176226615906, 0.015984488651156425, -0.029766617342829704, -0.029882529750466347, 0.02492142841219902, 0.05262478068470955, 0.019600993022322655, -0.006838903296738863, -0.0014322575880214572, -0.007227214053273201, -0.0275178924202919, 0.0004643789434339851, -0.0005936950328759849, 0.0247823316603899, 0.018627317622303963, -0.008670338429510593, 0.032038524746894836, 0.024318676441907883, -0.02538508176803589, 0.009336842224001884, -0.02506052330136299, -0.005045140162110329, 0.016610421240329742, 0.03259490802884102, -0.015752660110592842, -0.02390138804912567, 0.020458754152059555, -0.016146766021847725, -0.008965917862951756, 0.014095095917582512, 0.026335574686527252, 0.02580237202346325, -0.030485281720757484, -0.020922407507896423, -0.0013417000882327557, -0.002241479465737939, -0.016320636495947838, 0.05420120805501938, -0.011336351744830608, 0.005303048063069582, -0.010293128900229931, 0.026312390342354774, 0.01731749437749386, -0.022800209000706673, -0.021374471485614777, -0.042146191000938416, 0.005786987487226725, -0.021710621193051338, 0.0032745597418397665, -0.013724172487854958, -0.0202501080930233, 0.03382359445095062, -0.011689888313412666, -0.014871717430651188, 0.0030717109329998493, -0.03053164668381214, -0.019264843314886093, 0.013190969824790955, 0.00467711454257369, -0.00048285265802405775, -0.01851140521466732, 0.006879473105072975, 0.03528410568833351, 0.012367983348667622, 0.01986759342253208, 0.010298924520611763, -0.011197254993021488, 0.032502178102731705, 0.016088809818029404, 0.005024855490773916, -0.002160340081900358, 0.029024770483374596, 0.02434185892343521, -0.031760331243276596, 0.018662093207240105, 0.012217295356094837, -0.021513568237423897, -0.0013199662789702415, -0.015393328852951527, 0.01425737515091896, -0.019983507692813873, 0.014929673634469509, -0.01663360372185707, 0.022858165204524994, -0.0026993383653461933, -0.0003716480277944356, -0.038274675607681274, -0.026706498116254807, 0.016923388466238976, -0.014697846956551075, -0.013573484495282173, -0.006421614438295364, 0.0013308331836014986, -0.035400018095970154, 0.006259335204958916, 0.004862576257437468, -0.03843695670366287, -0.0066070761531591415, 0.006775151006877422, 0.00997436698526144, -0.020725354552268982, -0.026126928627490997, 0.005114688538014889, 0.034936364740133286, 0.0038483322132378817, 0.018638908863067627, -0.017688417807221413, 0.010188806802034378, -0.027842450886964798, -0.02519962005317211, 0.0017010323936119676, 0.03180669620633125, 0.012878002598881721, -0.03762555867433548, -0.0073836976662278175, 0.0032397855538874865, -0.0048886570148169994, 0.01542810257524252, 0.016842247918248177, 0.006792537868022919, 0.013990773819386959, -0.007789395283907652, 0.001056987326592207, -0.007047547958791256, 0.03303538262844086, -0.017085667699575424, 0.008531242609024048, 0.022382918745279312, -0.013770537450909615, -0.024179579690098763, 0.0329890139400959, 0.008264641277492046, 0.023808656260371208, -0.0010845167562365532, 0.030948935076594353, -0.0021965629421174526, 0.019264843314886093, -0.028352471068501472, -0.027425162494182587, -0.01950826123356819, 0.01463988982141018, -0.011678297072649002, -0.020458754152059555, -0.01989077590405941, -0.019438713788986206, 0.03934108093380928, 0.015590381808578968, 0.03412497043609619, -0.0016966855619102716, -0.007667685858905315, 0.010478590615093708, 0.011846371926367283, 0.005830455105751753, -0.0498892217874527, -0.02077171951532364, 0.012344799935817719, -0.004274314735084772, -0.0021704824175685644, 0.010067097842693329, -0.015567198395729065, -0.009719356894493103, 0.005575445014983416, 0.009029670618474483, -0.02116582728922367, 0.022035177797079086, 0.020435571670532227, 0.0026210967916995287, 0.015659930184483528, 0.0027065828908234835, 0.031343042850494385, -0.01889391988515854, -0.008003835566341877, 0.03173714876174927, -0.01856936141848564, -0.017340676859021187, 0.006531732156872749, 0.008577607572078705, -0.0074938153848052025, -0.011139298789203167, -0.024133214727044106, -0.018476631492376328, 0.008884779177606106, 0.023518873378634453, -0.02030806615948677, 0.013237334787845612, 0.01895187608897686, -0.009052853100001812, -0.0061028520576655865, -0.014373288489878178, 0.029442058876156807, 0.03836740925908089, 0.010061302222311497, -0.012043424881994724, -0.0018430264899507165, 0.021838124841451645, 0.01928802579641342, 0.03275718912482262, -0.01635541208088398, 0.013295291922986507, -0.013747354969382286, 0.04669000580906868, 0.021235374733805656, 0.013677806593477726, -0.0018749027512967587, 0.012078198604285717, -0.035515934228897095, 0.03859923407435417, -0.029789799824357033, 0.01763046160340309, 0.03245581313967705, -0.014918082393705845, -0.020505119115114212, -0.014442836865782738, -0.022579973563551903, 0.06291791051626205, -0.052810244262218475, 0.003558548167347908, 0.00702436501160264, -0.021212192252278328, 0.01785069704055786, -0.012796862982213497, -0.0536448210477829, 0.02635875716805458, -0.009174562990665436, 0.034379977732896805, -0.03632732853293419, -0.04091750830411911, -0.006166604347527027, 0.013654624111950397], [0.02754487469792366, 0.055522769689559937, 0.02725619450211525, 0.022589202970266342, -0.04722322151064873, -0.0017005051486194134, -0.020917264744639397, 0.008762638084590435, 0.027713270857930183, -0.00511204032227397, -0.0015531580429524183, -0.017657587304711342, -0.013760409317910671, 6.822318391641602e-05, -0.0299264844506979, -0.004727133549749851, 0.01312290783971548, 0.002094432944431901, -0.01343564409762621, 0.03971754387021065, 0.025331662967801094, 0.01911301538348198, -0.039356693625450134, 0.014229513704776764, -0.026317985728383064, 0.0012404215522110462, 0.05282842367887497, -0.001360704773105681, 0.010362406261265278, -0.010993893258273602, 0.05557088181376457, -0.015432346612215042, 0.02359958365559578, -0.07813602685928345, 0.05172181874513626, 0.06384637206792831, 0.030479786917567253, 0.025933079421520233, -0.0053195287473499775, -0.013387531042098999, -0.045851994305849075, 0.04140150919556618, -0.017068199813365936, -0.029445352032780647, -0.011883989907801151, 0.06230674684047699, 0.0232146754860878, -0.015889422968029976, -0.0015200801426544785, 0.013988947495818138, 0.030191106721758842, 0.023166563361883163, -0.0051000118255615234, 0.02261325903236866, 0.022468920797109604, -0.027520818635821342, -0.03245243430137634, 0.02468213252723217, 0.015131638385355473, -0.005665343254804611, -0.04017462208867073, -0.009676791727542877, 0.011505097150802612, 0.04719916731119156, 0.009087403304874897, 0.013171020895242691, -0.0358203649520874, 0.04070386663079262, -0.03088875114917755, 0.008612284436821938, -0.0050699408166110516, -0.017898155376315117, -0.034617532044649124, -0.05037464573979378, -0.08612284064292908, 0.028988273814320564, 0.03466564789414406, -0.019473865628242493, 0.026197701692581177, -0.013279275968670845, -0.009526437148451805, 0.012076443061232567, -0.03158639371395111, 0.013255218975245953, 0.028699595481157303, -0.005614222958683968, -0.021494625136256218, -0.05181804299354553, -0.037865180522203445, 0.010007570497691631, -0.05282842367887497, -0.015456403605639935, -0.05350201204419136, 0.06620392948389053, -0.015035412274301052, 0.00762596121057868, 0.06947563588619232, -0.010181981138885021, -0.03512272238731384, 0.03858688101172447, 0.014542250894010067, -0.009580564685165882, -0.030335446819663048, 0.014530221931636333, 0.06514543294906616, -0.008714525029063225, -0.06990864872932434, 0.007024544756859541, 0.00943021010607481, -0.03594065085053444, 0.048642564564943314, -0.018776223063468933, 0.025427889078855515, 0.04366283863782883, 0.05865013599395752, -0.010915709659457207, 0.010013584047555923, -0.021675050258636475, -0.01461442094296217, -0.013050737790763378, -0.043975573033094406, -0.011048020794987679, 0.050615210086107254, -0.09815116971731186, 0.027015628293156624, 0.009370069019496441, -0.027761384844779968, 0.016454754397273064, -0.01248540636152029, -0.025403833016753197, 0.021458540111780167, -0.06023787707090378, 0.04284491017460823, -0.028266575187444687, -0.021290143951773643, -0.010242123156785965, -0.00968280527740717, -0.006898247171193361, -0.0016764485044404864, 0.012353094294667244, 0.01634649932384491, 0.023972461000084877, 0.0580727756023407, 0.017200510948896408, 0.0022718508262187243, 0.01278611458837986, -0.012858284637331963, 0.03591659292578697, 0.016358528286218643, 0.0401986762881279, -0.018283061683177948, 0.014181400649249554, 0.01342361606657505, -0.025788739323616028, 0.008882921189069748, -0.033222246915102005, 0.00427907845005393, 0.052972763776779175, 0.017825985327363014, 0.011902032420039177, -0.016406642273068428, 0.008804737590253353, -0.0286274254322052, -0.03235620632767677, -0.008967120200395584, 0.02226443774998188, -0.012750029563903809, -0.0004348992952145636, -0.022432835772633553, 0.0051000118255615234, -0.03762461617588997, 0.010578916408121586, -0.01347172912210226, -0.02516326494514942, -0.015660885721445084, -0.06071900948882103, -0.010651085525751114, 0.04106471687555313, -0.0013426622608676553, 0.026799118146300316, 0.009736932814121246, 0.025451945140957832, -0.038250088691711426, -0.05595578998327255, -0.027328364551067352, 0.07606715708971024, 0.0008412313181906939, -0.023334959521889687, -0.04873879253864288, -0.0437590628862381, -0.018619854003190994, 0.020412076264619827, 0.031658563762903214, 0.05417559668421745, -0.04799303412437439, -0.0047632185742259026, -0.007223011925816536, -0.013459701091051102, 0.06731053441762924, 0.03502649441361427, 0.0447213314473629, -0.03346281498670578, 0.027689214795827866, -0.02280571311712265, -0.06759921461343765, -0.011998258531093597, 0.027592988684773445, 0.0006149483378976583, 0.035892535001039505, -0.01669532246887684, 0.02127811498939991, 0.010915709659457207, -0.07650017738342285, 0.04344632849097252, -0.030046768486499786, 0.025836851447820663, 0.019570091739296913, 0.0125335194170475, 0.041136886924505234, 0.04602038860321045, -0.030720354989171028, -0.009424196556210518, 0.0013110879808664322, -0.001035188091918826, -0.04618878662586212, -0.021903587505221367, -0.009899315424263477, -0.05080766603350639, -0.010410519316792488, -0.017549332231283188, -0.011781749315559864, 0.03216375410556793, -0.030527900904417038, -0.037167537957429886, 0.007487635128200054, 0.015059469267725945, -0.038947731256484985, -0.022059956565499306, -0.007595890201628208, -0.010488703846931458, 0.010187995620071888, 0.05051898583769798, -0.008215349167585373, -0.030070824548602104, 0.03526706248521805, -0.028194405138492584, -0.005990108009427786, -0.034593477845191956, 0.05167370289564133, -0.012725972570478916, -0.045659538358449936, 0.00024376162036787719, 0.06745487451553345, -0.05855390802025795, 0.01056087389588356, -0.018499571830034256, 0.036782633513212204, -0.02025570720434189, 0.0008382242522202432, -0.04051141440868378, 0.005511981900781393, 0.004167816136032343, 0.027785440906882286, -0.0048835016787052155, -0.035796310752630234, -0.013002624735236168, 0.020123396068811417, -0.010639057494699955, -0.012190712615847588, 0.021326228976249695, -0.006832091137766838, 0.012557576410472393, 0.003289748216047883, -0.03517083451151848, -0.039452921599149704, 0.014337768778204918, 0.002656757365912199, -0.027905724942684174, 0.010338349267840385, 0.05104823037981987, -0.06158504635095596, -0.034497249871492386, -0.005214280914515257, -0.04354255273938179, -0.0338958315551281, 0.0037618600763380527, -0.023298874497413635, -0.03245243430137634, -0.0028191397432237864, 0.009754975326359272, 0.06447184830904007, -0.038057636469602585, -0.019257355481386185, 0.034906212240457535, 0.022877883166074753, 0.00826947670429945, -0.03832225874066353, 0.03940480947494507, -0.056918054819107056, 0.003038656897842884, -0.03637366741895676, 0.042291607707738876, -0.004137745592743158, -0.025909021496772766, -0.06620392948389053, 0.04474538564682007, 0.04727133736014366, 0.03245243430137634, -0.015420318581163883, -0.00328072695992887, -0.015913480892777443, -0.006681737024337053, 0.033919889479875565, -0.025403833016753197, -0.002219226909801364, 0.014277627691626549, -0.060285989195108414, 0.07346903532743454, 0.017789900302886963, -0.0038189946208149195, 0.08092660456895828, 0.011396842077374458, 0.03468970209360123, -0.021518681198358536, -0.006579496432095766, 0.004907558672130108, 0.03603687509894371, 0.0009509898372925818, -0.010127853602170944, -0.030840637162327766, -0.022288495674729347, 0.006095356307923794, 0.028098179027438164, 0.010651085525751114, 0.03550763055682182, -0.03120148740708828, 0.029589690268039703, -0.016971973702311516, 0.015781167894601822, -0.05966051667928696, 0.0054277838207781315, 0.01372432429343462, 0.016430698335170746, 0.0156849417835474, -0.018198862671852112, 0.0663001537322998, 0.010554859414696693, 0.04698265716433525, 0.01708022877573967, 0.003975362982600927, -0.011054035276174545, -0.0024417508393526077, -0.08713322132825851, 0.0032386276870965958, -0.041425567120313644, -0.030335446819663048, 0.009003205224871635, -0.03899584338068962, -0.005199245642870665, 0.030359504744410515, -6.869303615530953e-05, -0.024381425231695175, 0.02433331124484539, 0.0598529689013958, -0.00030878977850079536, 0.03346281498670578, -0.03505055233836174, 0.021169859915971756, 0.03247648850083351, -0.045851994305849075, 0.05181804299354553, 0.03206752613186836, 0.05027841776609421, 0.0047421688213944435, -0.01049471739679575, 0.03928452357649803, -0.024213027209043503, 0.008197306655347347, -0.023334959521889687, 0.011601324193179607, -0.0029258911963552237, 0.0357481949031353, -0.007944711484014988, -0.0004991756868548691, -0.013195077888667583, 0.014421967789530754, -0.04885907471179962, -0.021927645429968834, -0.02903638780117035, 0.019257355481386185, -0.026991572231054306, 0.0037167537957429886, 0.005893881432712078, 0.021831419318914413, 0.01530003547668457, 0.014470080845057964, 0.04231566563248634, 0.004312156233936548, -0.02783355489373207, -0.04491378366947174, -0.007253082934767008, -0.05066332593560219, -0.023479299619793892, -0.021747220307588577, 0.02713591232895851, -0.006152490619570017, 0.0004194880020804703, 0.01845145784318447, 0.04277274012565613, -0.009039290249347687, -0.004113688599318266, 0.02032787725329399, 0.026630721986293793, -0.010885638184845448, 0.0019936957396566868, -0.028001951053738594, -0.021362314000725746, 0.01402503252029419, -0.012040358036756516, -0.02423708513379097, 0.09598606824874878, -0.04775246977806091, -0.05167370289564133, -0.016370557248592377, -0.011354743503034115, -0.016418669372797012, -0.006405085790902376, 0.014818902127444744, -0.029060443863272667, -0.07433507591485977, -0.03550763055682182, 0.0022553119342774153, 0.009598607197403908, -0.011583281680941582, -0.042820852249860764, -0.05263597145676613, 0.004561744164675474, -0.01984674483537674, 0.01889650523662567, -0.037961408495903015, -0.026895346119999886, -0.038659051060676575, 0.026726948097348213, 0.02181939035654068, -0.023262789472937584, -0.04125716909766197, -0.029373181983828545, -0.02067669853568077, 0.0057345060631632805, -0.03634961321949959, -0.03495432436466217, -0.016587067395448685, 0.0020433124154806137, -0.014879044145345688, -0.0178380124270916, 0.017693672329187393, 0.006236689165234566, -0.05638881027698517, 0.030840637162327766, -0.018343202769756317, 0.00046346656745299697, 0.039645373821258545, 0.031851015985012054, 0.02365972474217415, 0.016514897346496582, 0.04549114406108856, -0.003298769472166896, -0.027328364551067352, -0.009694833308458328, -0.016490839421749115, -0.042291607707738876, -0.020760897547006607, -0.003476187353953719, -0.01971443183720112, 0.015143667347729206, 0.025788739323616028, 2.7627569579635747e-05, -0.020821038633584976, 0.021494625136256218, 0.031442053616046906, 0.028892047703266144, 0.05350201204419136, -0.0572548508644104, -0.06365392357110977, 0.055330317467451096, 0.020604528486728668, 0.02346727065742016, 0.0019155115587636828, -0.025427889078855515, -0.03533923253417015, -0.03149016574025154, -0.01688777469098568, 0.012238825671374798, -0.011456984095275402, -0.026775062084197998, -0.009767003357410431, -0.0034130385611206293, -0.048137374222278595, 0.008083038032054901, -0.002328985370695591, 0.027496762573719025, 0.005418762564659119, -0.014518193900585175, -0.0007581606623716652, 0.051000118255615234, -0.013146964833140373, -0.02576468139886856, 0.008504029363393784, 0.014097202569246292, -0.011288587003946304, -0.02150665409862995, -0.006543411407619715, 0.009370069019496441, 0.0014990306226536632, 0.014903100207448006, -0.05196238309144974, -0.03187507390975952, 0.03091280721127987, -0.008389759808778763, -0.006101370323449373, 0.02894016169011593, 0.03216375410556793, -0.013339417986571789, 0.0016057820757851005, -0.030239220708608627, -0.00509700458496809, 0.010819482617080212, -0.05282842367887497, 0.01866796799004078, 0.0013772437814623117, -0.012521491385996342, -0.038466598838567734, -0.06269165128469467, 0.022059956565499306, 0.009099431335926056, -0.007120771333575249, -0.0474637895822525, 0.004483560100197792, 0.04424019530415535, -0.06346146762371063, -0.006549425423145294, 0.0006397567922249436, -0.00568639300763607, 0.02706374228000641, -0.006657680496573448, 0.020556416362524033, 0.055137865245342255, -0.006699779536575079, 0.006525368895381689, 0.010554859414696693, 0.015083525329828262, -0.0024417508393526077, 0.018583768978714943, 0.00809506606310606, 0.0041828518733382225, 0.033126018941402435, 0.008894950151443481, 0.007926668971776962, -0.001975653227418661, 0.001465200912207365, -0.015384233556687832, 0.008227377198636532, 0.006125426851212978, -0.01771773025393486, -0.013459701091051102, 0.031129317358136177, 0.004724126309156418, 0.02230052277445793, 0.006771949585527182, -0.029204783961176872, -0.043109532445669174, 0.025355719029903412, 0.031634505838155746, -0.03151422366499901, 0.00445348909124732, 0.006753907073289156, -0.00861829798668623, -0.00822136364877224, -0.02576468139886856, 0.028867991641163826, -0.020881179720163345, 0.008738581091165543, 0.006651666481047869, -0.014927157200872898, -0.031851015985012054, 0.020063253119587898, -0.03858688101172447, -0.0009374579531140625, -0.0030822595581412315, 0.0010930744465440512, 0.0038821434136480093, -2.0697185391327366e-05, 0.004525659140199423, -0.010085754096508026, 1.360234909952851e-05, -0.007487635128200054, 0.00971889030188322, 0.028603367507457733, -0.04178641736507416, 0.00785449892282486, -0.016707349568605423, -0.0009870748035609722, -0.028964217752218246, -0.012208755128085613, -0.051577478647232056, -0.025812795385718346, 0.04869068041443825, -0.023647695779800415, -0.0031243585981428623, 0.015191780403256416, 0.006350958254188299, 0.011986230500042439, -0.005644293501973152, -0.04847417026758194, -0.03740810602903366, 0.004745176061987877, -0.020472217351198196, 0.018367258831858635, 0.012689887546002865, -0.030720354989171028, -0.026991572231054306, 0.005181203130632639, -0.0013343928148970008, -0.0060081505216658115, -0.014650505967438221, -0.029493464156985283, -0.009977499954402447, -0.025115152820944786, -0.011781749315559864, -0.005364635027945042, 0.020219622179865837, -0.014638477005064487, -0.009051318280398846, -0.03800952062010765, -0.00831758975982666, 0.005313514731824398, -0.05114445835351944, 0.002181638265028596, 0.0249948687851429, -0.008943063206970692, 0.0006408844492398202, -0.008612284436821938, 0.041714247316122055, -0.054464276880025864, 0.06326901167631149, -0.017104284837841988, -0.008251434192061424, 0.005508975125849247, 0.0029905433766543865, 0.010181981138885021, -0.015203808434307575, 0.007259096950292587, -0.001602774951606989, -0.03733593598008156, 0.010157924145460129, -0.010404504835605621, -0.005051898304373026, 0.024706188589334488, -0.012641774490475655, 0.008702496998012066, -0.033126018941402435, -0.0052112736739218235, 0.05412748456001282, 0.0073252529837191105, -0.006627609487622976, 0.004426425322890282, 0.04539491608738899, -0.016779519617557526, -0.018198862671852112, -0.02595713548362255, -0.011956159956753254, 0.0017365900566801429, 0.008467944338917732, -0.017356880009174347, -0.0012689888244494796, 0.018198862671852112, -0.04955671727657318, 0.0017711715772747993, -0.029541578143835068, 0.011877975426614285, -0.021867504343390465, -0.007553791161626577, -0.0036776617635041475, 0.00034694213536567986, -0.0039663417264819145, -0.04366283863782883, -0.02296208217740059, -0.019413724541664124, -0.006284802220761776, 0.0281462911516428, 0.01119837537407875, 0.024946756660938263, 0.01857174187898636, -0.021771276369690895, 0.020724812522530556, 0.028362801298499107, 0.020652642473578453, -0.03649395331740379, -0.01943778060376644, 0.02598119154572487, -0.022829769179224968, -0.003196528647094965, -0.012262881733477116, -0.06466430425643921, -0.03666234761476517, -0.006417113821953535, -0.01905287429690361, -0.00152308726683259, 0.022192267701029778, -0.02121797390282154, -0.023840149864554405, 0.006525368895381689, -0.027689214795827866, -0.003181493142619729, 0.015660885721445084, -0.027689214795827866, 0.037672728300094604, -0.03565197065472603, 0.047632183879613876, 0.007174898870289326, -0.04188264533877373, 0.03644583746790886, -0.0654822289943695, -0.0022929003462195396, 0.01854768395423889, -0.016971973702311516, -0.009646720252931118, 0.030720354989171028, -0.0384906567633152, -0.034112341701984406, 0.039356693625450134, -0.01717645488679409, -0.021494625136256218, 0.010085754096508026, -0.008708510547876358, 0.021193917840719223, -0.004152780864387751, 0.01491512916982174, -0.005109033081680536, -0.026221759617328644, 0.05152936279773712, -0.02207198552787304, -0.01723659597337246, -0.02655855193734169, 0.01534814853221178, 0.028098179027438164, 0.03324630483984947, 0.04498595371842384, -0.011661465279757977, -0.007656031753867865, -0.030936863273382187, 0.008425844833254814, -0.02588496543467045, 0.017934240400791168, -0.008052966557443142, -0.018776223063468933, -0.009346012026071548, 0.020748868584632874, -0.003665633499622345, -0.01647881232202053, 0.016081877052783966, -0.0071087428368628025, -0.004931615199893713, 0.04327793046832085, 0.05542654171586037, -0.009917357936501503, -0.05595578998327255, -0.0008404795662499964, -0.011150261387228966, -0.017825985327363014, 0.01603376306593418, -0.006922303698956966, -0.0008464936981908977, 0.005087983328849077, 0.00392724946141243, -0.019726460799574852, -0.02334698848426342, -0.0113848140463233, -0.013688239268958569, -0.0020357947796583176, -0.008912992663681507, -0.007607918698340654, -0.03257271647453308, 0.013916777446866035, -0.001625328091904521, -0.012509463354945183, 0.0223245806992054, 0.028867991641163826, 0.0023184604942798615, -0.004787275101989508, -0.018234947696328163, -0.020375991240143776, -0.02210807055234909, -0.020375991240143776, -0.030431674793362617, 0.03926046937704086, 0.01496324222534895, -0.029493464156985283, -0.01777787134051323, -0.001066762488335371, -0.018295088782906532, -0.014746732078492641, -0.02795383892953396, -0.018559712916612625, 0.04070386663079262, 0.019028818234801292, -0.03262082859873772, -0.004194879904389381, -0.03971754387021065, -0.004964692983776331, 0.029276954010128975, 0.030287334695458412, -0.010548844933509827, 0.03541140258312225, -0.00796876847743988, 0.017068199813365936, -0.0008352171280421317, 0.015781167894601822, 0.00852207187563181, 0.005418762564659119, -0.007373366039246321, -0.006543411407619715, 0.005229316186159849, 0.0002539105189498514, 0.013291303999722004, 0.017801927402615547, -0.009610635228455067, 0.0014704633504152298, -0.010843539610505104, 0.006212632171809673, -0.0027544875629246235, -0.000941968581173569, -0.020760897547006607, 0.02624581567943096, -0.00615549786016345, -0.008768652565777302, -0.03781706839799881, 0.026005249470472336, 0.01312290783971548, 0.014205457642674446, 0.07760678231716156, -0.03230809420347214, -0.018307117745280266, -0.03031139075756073, 0.010999907739460468, 0.03733593598008156, 0.0017862069653347135, 0.008058981038630009, 0.014879044145345688, 0.02694345824420452, -0.010302264243364334, -0.014686590991914272, -0.002667282009497285, 0.017128340899944305, 0.01406111754477024, -0.019389666616916656, -0.018740138038992882, -0.0075237201526761055, -0.019413724541664124, -0.0165389534085989, -0.0036626264918595552, 0.004465517587959766, -0.0044564963318407536, -0.008546127937734127, 0.008894950151443481, -0.04296519234776497, 0.004946650471538305, -0.029349124059081078, -0.03276516869664192, -0.03367932140827179, 0.04404774308204651, 0.001371981343254447, 0.010578916408121586, -0.05557088181376457, -0.005205259658396244, -0.0040745967999100685, 0.032043471932411194, -0.01631041429936886, 0.060189761221408844, -0.03423262760043144, -0.004227957688271999, 0.026510437950491905, 0.03541140258312225, -0.0007671819184906781, -0.012689887546002865, -0.03262082859873772, -0.014806874096393585, 0.0474637895822525, 0.02942129410803318, 0.0021515674889087677, 0.018090607598423958, -0.006880204658955336, -0.02439345233142376, 0.020400047302246094, 0.02980620041489601, -0.046645861119031906, -0.011535168625414371, 0.017417021095752716, 0.012004273012280464, -0.0057014282792806625, -0.0321878120303154, -0.026823176071047783, -0.03562791272997856, 0.025331662967801094, -0.0089190062135458, 0.005253373179584742, -0.0299264844506979, 0.00855815690010786, 0.02607741951942444, 0.0013321375008672476, 0.008660397492349148, -0.006970417220145464, -0.001394534483551979, 0.011787762865424156, 0.011697550304234028, 0.024658076465129852, -0.0223967507481575, -0.010356391780078411, 0.011926088482141495, 0.03861093893647194, -0.0007953732856549323, 0.002423708327114582, 0.0051210615783929825, 0.009748960845172405, 0.013002624735236168, -0.033607155084609985, -0.010470661334693432, 0.012846256606280804, 0.016719378530979156, -0.012401208281517029, -7.038452167762443e-05, -0.016057820990681648, -0.034328851848840714, 0.01351984217762947, 0.03286139667034149, 0.0032235924154520035, 0.010500731877982616, 0.008022896014153957, -0.0005559343844652176, 0.00979707483202219, 0.008774666115641594, -0.004089632071554661, -0.04231566563248634, -0.01748919114470482, 0.016454754397273064, 0.016839660704135895, -0.02286585420370102, 0.002429722575470805, -0.026390155777335167, -0.02382812090218067, -0.0027469696942716837, 0.017008058726787567, 0.008822780102491379, -0.0032566701993346214, -0.0004717360425274819, -0.026991572231054306, 0.011120190843939781, 0.03336658701300621, 0.020760897547006607, -0.01227491069585085, 0.03081658110022545, 0.02009933814406395, 0.011487054638564587, -0.05706239491701126, 0.025403833016753197, 0.016081877052783966, 0.00826947670429945, -0.028964217752218246, -0.027184024453163147, 0.008804737590253353, 0.0032656914554536343, -0.0254760030657053, 0.045274633914232254, -0.0013937826734036207, 0.0021530711092054844, -0.001355442451313138, -0.0025454952847212553, -0.019185185432434082, 0.024477651342749596, -0.01367621123790741, 0.011348729021847248, 0.03197130188345909, -0.013604041188955307, 0.014241542667150497, -0.016021735966205597, 0.02331090345978737, 0.015636827796697617, -0.039741601794958115, 0.00532855000346899, -0.0007107991259545088, -0.018728109076619148, 0.026293929666280746, 0.0012757547665387392, -0.02528354898095131, -0.01137278601527214, 0.0046850345097482204, 0.002876274287700653, 0.026390155777335167, 0.012617717497050762, 0.023707838729023933, -0.002040305407717824, -0.0018929584184661508, 0.00020391777798067778, 0.017922211438417435, -0.011487054638564587, -0.005169174633920193, 0.009388111531734467, -0.0021635957527905703, 0.004083618056029081, 0.002283879090100527, 0.038370370864868164, 0.00792065542191267, 0.009604621678590775, -0.01307479478418827, 0.0042159296572208405, -0.017200510948896408, -0.01574508287012577, 0.02270948700606823, -0.03221186622977257, 0.021999815478920937, -0.013748381286859512, 0.010290236212313175, 0.02175924926996231, -0.011017950251698494, -0.0020839080680161715, -0.01647881232202053, 0.040222734212875366, 0.035291120409965515, 0.022348636761307716, 0.026221759617328644, -0.005127075593918562, -0.0006807282916270196, -0.0012111024698242545, 0.008311576209962368, 0.0012133577838540077, 0.020712783560156822, 0.02557222917675972, -0.014818902127444744, 0.025115152820944786, 0.055330317467451096, -0.02290193922817707, 0.017092255875468254, -0.01048268936574459, 0.022432835772633553, -0.04741567745804787, -0.01694791577756405, 0.012461349368095398, 0.022829769179224968, 0.03127365559339523, 0.0027965866029262543, -0.006976431235671043, 0.047151051461696625, 0.0031393941026180983, 0.0055360388942062855, 0.021326228976249695, -0.02973403036594391, -0.03069629706442356, -0.013267247937619686, -0.02812223508954048, -0.033727437257766724, -0.018150748685002327, -0.008648369461297989, 0.02932506799697876, 0.008485986851155758, 0.0143137127161026, -0.01039849128574133, -0.012629746459424496, 0.03276516869664192, -0.02646232582628727, 0.011120190843939781, -0.0028973238077014685, 0.00310932332649827, 0.029758088290691376, 0.02013542316854, 0.03808169066905975, 0.010699199512600899, -0.02980620041489601, -0.015793196856975555, 0.008064995519816875, -0.013483758084475994, -0.0013321375008672476, -0.008894950151443481, 0.004781261086463928, -0.007589876186102629, -0.002774033462628722, 0.041209056973457336, -0.014433995820581913, 0.016899803653359413, 0.04051141440868378, -0.011180332861840725, -0.012220783159136772, 0.0017395971808582544, -0.03675857558846474, 0.053550124168395996, -0.005542052909731865, -0.013387531042098999, -0.002088418696075678, 0.024152886122465134, 0.015949565917253494, -0.020339906215667725, -0.009706862270832062, -0.005764577072113752, -0.022288495674729347, -0.008377731777727604, 0.022144155576825142, -0.006453198846429586, 0.0004645942244678736, 0.01437385380268097, 0.024730246514081955, 0.03161045163869858, -0.0017230582889169455, 0.0286274254322052, 0.017068199813365936, -0.03673451766371727, 0.00925579946488142, 0.013688239268958569, 0.0033077907282859087, -0.019233299419283867, 0.027376478537917137, 0.006194589659571648, -0.012142598628997803, -0.021133774891495705, -0.006952374707907438, 0.03521895036101341, 0.02448967844247818, -0.00539771281182766, -0.031634505838155746, 0.062354862689971924, 0.03216375410556793, -0.0254760030657053, -0.019618205726146698, -0.005469882860779762, 0.01758541725575924, 0.007776315324008465, -0.0055901664309203625, -0.014241542667150497, 0.016719378530979156, -0.02261325903236866, -0.0013704778393730521, 0.010933752171695232, 0.03909207135438919, 0.004697062540799379, 0.006483269855380058, -0.007698130793869495, -0.039140183478593826, 0.0192453283816576, -0.010602972470223904, 0.06783977895975113, -0.007890583947300911, -0.041810475289821625, 0.021735191345214844, -0.0028732672799378633, 0.005776605568826199, 0.02735242247581482, -0.04736756160855293, 0.024922698736190796, 0.017513247206807137, -0.007788343355059624, 0.03721565380692482, 0.01496324222534895, -0.018836364150047302, 0.01777787134051323, 0.009484337642788887, 0.033727437257766724, 0.009953442960977554, 0.00609836308285594, 0.00044955883640795946, -0.027304308488965034, -0.03177884593605995, 0.0010712731163948774, -0.026582607999444008, -0.028651481494307518, -0.007637989241629839, 0.032524604350328445, 0.009809102863073349, -0.005969058722257614, 0.029541578143835068, -0.033799607306718826, 0.027208082377910614, -0.014650505967438221, 0.01066912803798914, 0.019894856959581375, -0.02267340198159218, -0.0031634506303817034, 0.02207198552787304, -0.0005066933808848262, 0.0339680016040802, -0.025524115189909935, -0.015973621979355812, -0.018631882965564728, 0.01847551390528679, 0.016647208482027054, 0.0013659672113135457, 0.015480460599064827, -0.018198862671852112, 0.023743923753499985, -0.052684083580970764, -0.031826961785554886, -0.019774574786424637, 0.001042705844156444, 0.023972461000084877, 0.011775734834372997, -0.003016103757545352, -0.003250656183809042, -0.0430133081972599, -0.006982445251196623, -0.03384771943092346, -0.015071497298777103, 0.008022896014153957, -0.021650994196534157, 0.006314873229712248, -0.026293929666280746, -0.006826077122241259, 0.007295181974768639, -0.006525368895381689, -0.012810171581804752, -0.03418451175093651, 0.04327793046832085, -0.05018218979239464, 0.02009933814406395, 0.01758541725575924, -0.01622621715068817, 0.028459027409553528, -0.02605336159467697, 0.007782329339534044, -0.0033589110244065523, -0.04484161362051964, 0.0011900528334081173, -0.009875258430838585, 0.02605336159467697, -0.0036145129706710577, -0.031826961785554886, 0.01959414966404438, -0.040343016386032104, 0.00016529556887689978, 0.005262394435703754, -0.004892522934824228, 0.020472217351198196, -0.019377639517188072, -0.0007653024513274431, -0.027520818635821342, 0.011366771534085274, 0.006699779536575079, 0.00044053758028894663, -0.015576686710119247, 0.008071009069681168, 0.008756623603403568, 0.028074121102690697, 0.010248136706650257, -0.009989527985453606, 0.010350377298891544, 0.017248624935746193, -0.010639057494699955, -0.038370370864868164, 0.005878846161067486, -0.022348636761307716, 0.009574550203979015, -0.011661465279757977, -0.0074154650792479515, -0.040222734212875366, 0.0012998114107176661, -0.0001594693458173424, -0.049604833126068115, -0.005533031653612852, -0.01812669262290001, 0.02557222917675972, 0.010729270055890083, 0.01714036986231804, 0.02586090937256813, 0.017537305131554604, 0.021001463755965233, -0.013567956164479256, -0.00036968319909647107, 0.01402503252029419, -0.01065710000693798, 0.019930941984057426, -0.02518732286989689, -0.021711135283112526, -0.02442953735589981, 0.01249743439257145, 0.0013223645510151982, -0.020724812522530556, -0.02410477213561535, 0.0018553698901087046, -0.01685168966650963, 0.019546035677194595, 0.026125531643629074, 0.02932506799697876, 0.0005668350495398045, -0.00020880428201053292, -0.0058968886733055115, 0.006044235546141863, 0.01347172912210226, -0.028218461200594902, -0.017441079020500183, -0.037768956273794174, 0.014109230600297451, -0.022444862872362137, 0.042291607707738876, 0.004612864460796118, -0.00357842817902565, 0.01039849128574133, 0.01864391192793846, 0.011998258531093597, 0.009183629415929317, 0.030744411051273346, -0.031562335789203644, -0.041016604751348495, -0.006964402738958597, -0.014734704047441483, 0.01810263656079769, 0.011023963801562786, 0.024417510256171227, 0.019233299419283867, 0.010843539610505104, -0.04385529085993767, 0.010789412073791027, -0.022721514105796814, -0.02805006504058838, 0.0005942746647633612, -0.008299547247588634, -0.03324630483984947, 0.01307479478418827, 0.028290631249547005, 0.027304308488965034, -0.018427401781082153, -0.017922211438417435, 0.00014161478611640632, 0.009273841977119446, -0.0010171455796808004, -0.011017950251698494, -0.02058047242462635, -0.012112528085708618, 0.010506746359169483, -0.01650286838412285, 0.007433507591485977, -0.007680088747292757, 0.02009933814406395, -0.0536944642663002, 0.000275523925665766, -0.03909207135438919, -0.017477162182331085, -0.028483085334300995, 0.012040358036756516, 0.022661373019218445, 0.03959726169705391, 0.021699106320738792, -0.006928317714482546, -0.024826472625136375, 0.0017456113127991557, -0.027713270857930183, -0.024417510256171227, -0.022372692823410034, 0.010602972470223904, 0.006886218674480915, 0.0027710264548659325, 0.005848775152117014, 0.03091280721127987, 0.019606176763772964, -0.027617044746875763, 0.010013584047555923, 0.024946756660938263, -0.033727437257766724, -0.0013825061032548547, -0.003476187353953719, 0.052876535803079605, -0.014097202569246292, 0.0016358528519049287, -0.0024086730554699898, -0.010031626559793949, -0.008810751140117645, 0.00024714457686059177, 0.00971889030188322, 0.029685918241739273, -0.008479972369968891, 0.042508117854595184, -0.00016849058738444, 0.0034972368739545345, -0.0005239841411821544, 0.002416190691292286, -0.0219156164675951, -0.005854789633303881, 0.01303870975971222, -0.014470080845057964, 0.007902612909674644, -0.03649395331740379, 0.011926088482141495, 0.013002624735236168, 0.029782144352793694, 0.004405375570058823, -0.003563392674550414, -0.005578137934207916, 0.02201184257864952, -0.025355719029903412, -0.05302087590098381, -0.019353583455085754, -0.021650994196534157, -0.014602391980588436, -0.00597206549718976, -0.009863230399787426, -0.026967516168951988, 0.01702008582651615, 0.0034100315533578396, -0.025909021496772766, 0.0077943578362464905, -0.011956159956753254, -0.004137745592743158, -0.002351538510993123, 0.005728492047637701, 0.031225543469190598, -0.002065865555778146, -0.002500389004126191, 0.031057147309184074, -0.013688239268958569, 0.017056170850992203, -0.01495121419429779, -0.008642354980111122, 0.011950145475566387, 0.02795383892953396, -0.015733055770397186, -0.017056170850992203, -0.007210983894765377, -0.0013186056166887283, -0.011932102963328362, -0.0036866830196231604, 0.011871961876749992, 0.03625338524580002, 0.009899315424263477, -0.005608208943158388, -0.005671357270330191, -0.007962753996253014, 0.0205443874001503, -0.016719378530979156, 0.0147587601095438, 0.007619946729391813, 0.0018313132459297776, -0.01155922468751669, 0.015504516661167145, -0.03343875706195831, -0.0018478521378710866, -0.011300615966320038, -0.001159982057288289, 0.019185185432434082, 0.01590145193040371, -0.032933566719293594, -0.003602484706789255, 0.0021139788441359997, -0.003782909596338868, -0.0012456838740035892, 0.0027710264548659325, 0.000720572134014219, -0.01673140749335289, 0.019606176763772964, -0.011589295230805874, 0.0028356786351650953, -0.015336120501160622, -0.00767407426610589, -0.01758541725575924, 0.006122419610619545, -0.02175924926996231, -0.03230809420347214, 0.00834766123443842, -0.004155788104981184, 0.007890583947300911, 0.017825985327363014, 0.009087403304874897, 0.03110526129603386, -0.012220783159136772, 0.010242123156785965, 0.020267736166715622, -0.05379069223999977, 0.05941994860768318, 0.02477835863828659, -0.010061698034405708, -0.034208569675683975, -0.0029514513444155455, 0.021169859915971756, -0.02009933814406395, -0.025596285238862038, 0.012377151288092136, -0.01219672616571188, -0.02557222917675972, 0.01771773025393486, 0.013363474048674107, -0.024946756660938263, -0.012894369661808014, -0.0348581001162529, -0.026630721986293793, -0.015925507992506027, 0.006850133650004864, 0.0015313567128032446, -0.004730140790343285, -0.02595713548362255, 0.048233602195978165, -0.018391316756606102, -0.01564885675907135, -0.016370557248592377, 0.03343875706195831, 0.0033889818005263805, 0.008287519216537476, -0.044288311153650284, 0.0007442528731189668, 0.00010073726298287511, 0.03704725578427315, -0.031826961785554886, 0.023912319913506508, -0.04640529677271843, 0.021542739123106003, 0.018367258831858635, 0.03161045163869858, 0.023900290951132774, -0.012629746459424496, -0.02961374819278717, 0.03642178326845169, -0.026799118146300316, 0.03911612927913666, 0.007812400348484516, -0.020303821191191673, -0.020821038633584976, -0.010061698034405708, -0.03781706839799881, 0.023226704448461533, -0.022288495674729347, -0.029349124059081078, -0.005193231161683798, 0.010175966657698154, 0.006507326383143663, 0.025307605043053627, -0.0428689680993557, -0.0034882156178355217, -0.029060443863272667, 0.04580387845635414, -0.00032495285267941654, -0.010987878777086735, -0.011655451729893684, 0.0063870432786643505], [0.04915659874677658, 0.05661831796169281, -0.005095270462334156, 0.029166247695684433, -0.026821857318282127, -0.025889141485095024, -0.021389422938227654, 0.02275068126618862, 0.013007592409849167, 0.049080971628427505, -0.03377940505743027, -0.018011482432484627, -0.01570490375161171, -0.009579234756529331, 0.012371077202260494, 0.04126633331179619, -0.015881363302469254, -0.005634102504700422, 0.0031825746409595013, 0.026746230199933052, 0.012931966222822666, -0.00903094932436943, -0.027452070266008377, -0.00014169940550345927, 0.005394621752202511, -0.006040589418262243, 0.005504908971488476, -0.03294752538204193, 0.024338817223906517, -0.020343268290162086, 0.06967632472515106, -0.03635067492723465, 0.0330483578145504, -0.045929908752441406, 0.0657942146062851, 0.05155140534043312, 0.020507125183939934, -0.014003328047692776, 0.018276171758770943, -0.026821857318282127, -0.06665130704641342, -0.01035439595580101, 0.0016385532217100263, -0.04398885369300842, -0.035417959094047546, 0.037031304091215134, -0.02851082757115364, -0.025800911709666252, 0.005293787457048893, 0.019914723932743073, -0.029947711154818535, 0.019523993134498596, -0.001764595857821405, -0.0027130660600960255, 0.006976455450057983, 0.003513436298817396, -0.025132887065410614, 0.02083483524620533, -0.01579313352704048, 0.008797770366072655, 0.009012042544782162, -0.010278770700097084, -0.011885813437402248, 0.0032960129901766777, -0.017582936212420464, 0.031989600509405136, 0.010845961980521679, 0.03572046011686325, -0.060853347182273865, 0.007001664023846388, 0.014885625801980495, 0.03342648595571518, -0.04240071773529053, -0.007026872597634792, -0.01658720150589943, 0.006661349441856146, -0.010530855506658554, 0.040610913187265396, 0.023305268958210945, -0.007909170351922512, 0.0008287298260256648, 0.0317879319190979, 0.00461000669747591, 0.01850304752588272, -0.0015511112287640572, -0.023078393191099167, -0.03879589959979057, -0.03251897916197777, -0.053492460399866104, 0.02449006959795952, -0.04066133126616478, -0.020532332360744476, -0.01131231989711523, 0.04421573132276535, 0.001999350031837821, 0.003209358546882868, -0.008293600752949715, 0.003286559833213687, -0.028183115646243095, 0.061609603464603424, -0.0063651492819190025, -0.02266245149075985, -0.014835209585726261, 0.014873022213578224, 0.061256684362888336, 0.012049668468534946, -0.04431656375527382, -0.0010516676120460033, -0.025939559563994408, -0.006406113039702177, 0.021679319441318512, -0.030225005000829697, 0.004676179029047489, 0.04771971330046654, -0.014885625801980495, 0.010096008889377117, 0.01373863872140646, -0.0011540772393345833, -0.047820545732975006, -0.047946590930223465, -0.04245113208889961, 9.645210229791701e-05, 0.048198673874139786, -0.0903473049402237, 0.0481482557952404, 0.011898417957127094, -0.02962000109255314, 0.011066536419093609, -0.014847813174128532, -0.04789617285132408, 0.03012417070567608, -0.050215356051921844, 0.007562553510069847, -0.037308596074581146, 0.0041058361530303955, 0.021616298705339432, 0.034888580441474915, 0.007474323734641075, 0.0013210835168138146, -0.010266166180372238, 0.0291158314794302, -0.0024625565856695175, 0.07481886446475983, 0.020607957616448402, -0.019902119413018227, -0.003117977874353528, -0.036804426461458206, 0.04358551651239395, 0.005905094090849161, 0.03128376230597496, -0.022838911041617393, -0.01900721713900566, 0.016788868233561516, 0.00884188525378704, 0.016032613813877106, -0.07779346406459808, 0.013965515419840813, 0.06473545730113983, -0.008098234422504902, -0.011677843518555164, -0.030073754489421844, -0.008236881345510483, -0.024603508412837982, -0.0500388965010643, 0.039325278252363205, -0.048450760543346405, -0.0077642216347157955, 0.017003141343593597, -0.02436402626335621, -0.01579313352704048, 0.007386093959212303, -0.014986460097134113, -0.03748505562543869, -0.017293039709329605, -0.028031865134835243, -0.02331787347793579, 0.026317685842514038, 0.016196468845009804, -0.017318246886134148, 0.04850117489695549, 0.058181244879961014, 0.02304057963192463, -0.021011294797062874, -0.04865242913365364, -0.00947209820151329, -0.006144574843347073, 0.030956052243709564, -0.007625574711710215, -0.014053745195269585, -0.046913038939237595, -0.017255226150155067, -0.029720835387706757, -0.011545498855412006, 0.03761110082268715, -0.03670359402894974, -0.0166754312813282, -0.021704528480768204, 0.0053126937709748745, 0.05460163578391075, -0.01373863872140646, 0.01907023973762989, -0.05344204604625702, 0.03829172998666763, 0.010329187847673893, -0.0491061806678772, 0.027779780328273773, 0.020759209990501404, 0.004357921425253153, 0.01462093647569418, 0.0025854480918496847, -0.011009817942976952, 0.0022372554522007704, -0.0663992166519165, 0.03977902978658676, -0.023847252130508423, -0.029846878722310066, 0.050971612334251404, 0.0025303044822067022, 0.02165411226451397, 0.06297086179256439, -0.021855778992176056, 0.011224090121686459, 0.05016493797302246, -0.025624452158808708, -0.013511762022972107, -0.03418274223804474, -0.03498941287398338, -0.01318405196070671, 0.0026516204234212637, -0.03486337140202522, -0.03279627487063408, 0.04774492233991623, -0.045652613043785095, -0.03219126909971237, 0.02825874090194702, 0.010927889496088028, -0.039728615432977676, -0.03471212089061737, -0.023784231394529343, -0.0594920888543129, -0.0011540772393345833, 0.022145677357912064, 0.0010185814462602139, 0.008205370977520943, 0.012402587570250034, -0.018490443006157875, 0.002774511929601431, -0.006295825820416212, 0.005123630166053772, -0.06791172921657562, -0.007858753204345703, 0.015263753943145275, 0.01797366887331009, -0.03314919397234917, 0.01230805553495884, 0.005753842648118734, 0.058080412447452545, -0.013889890164136887, -0.0177846048027277, -0.03128376230597496, 0.011148463934659958, -0.03788839280605316, 0.013360511511564255, -0.06014750897884369, -0.03153584897518158, 0.00454068323597312, 0.02775457128882408, -0.04635845497250557, -0.015415005385875702, 0.010776638984680176, -0.010348093695938587, 0.05019014701247215, 0.01948617957532406, 0.004654121585190296, -0.03214085102081299, 0.014280621893703938, 0.0007991886232048273, -0.000772404542658478, 0.019536595791578293, 0.05500497296452522, -0.027300817891955376, -0.03597254678606987, 0.005057457834482193, -0.03836735337972641, -0.03204001858830452, 0.008993136696517467, -0.009371263906359673, -0.01499906461685896, 0.032216478139162064, -0.0012856341199949384, 0.05787874385714531, -0.022738076746463776, -0.05064389854669571, 0.016108239069581032, 0.001339989947155118, -0.03624983876943588, -0.04774492233991623, 0.0355692096054554, -0.0035039831418544054, -0.034384410828351974, -0.021049106493592262, 0.02662018872797489, 0.022990163415670395, -0.01749470643699169, -0.021376818418502808, 0.03937569633126259, 0.02275068126618862, 0.020002953708171844, -0.023456519469618797, -0.016688033938407898, -0.0358717106282711, 0.008180161938071251, 0.015881363302469254, -0.06055084615945816, 0.0033842427656054497, 0.02527153305709362, -0.06438253819942474, 0.025107678025960922, 0.020028162747621536, -0.015314171090722084, 0.04116550087928772, -0.010858566500246525, 0.04837513342499733, -0.025485806167125702, -0.007928077131509781, -0.0016212224727496505, 0.02388506568968296, 0.03904798626899719, -0.014822605066001415, -0.07718846201896667, -0.026746230199933052, 0.0066235363483428955, 0.029468750581145287, -0.018465235829353333, -0.017961064353585243, -0.03294752538204193, 0.05994584038853645, 0.0061067622154951096, 0.0052969385869801044, -0.05208078399300575, 0.010600179433822632, 0.020103788003325462, -0.012150502763688564, -0.009598140604794025, -0.007537344936281443, 0.02810749039053917, 0.052131202071905136, 0.034913789480924606, 0.025170698761940002, 0.012068575248122215, 0.011677843518555164, -0.004701387602835894, -0.048677634447813034, -0.0017189054051414132, -0.026947898790240288, -0.0336785726249218, 0.01954920031130314, -0.02184317633509636, 0.005322147160768509, 0.012522328644990921, 0.023469123989343643, -0.021414630115032196, 0.019876912236213684, 0.021452443674206734, 0.009056157432496548, -0.0014620936708524823, -0.041115082800388336, -0.018112314864993095, 0.027452070266008377, -0.01692751608788967, 0.044039271771907806, 0.00022864907805342227, 0.015818340703845024, -0.03345169499516487, 0.02316662296652794, 0.0311577208340168, -0.040736954659223557, -0.011009817942976952, -0.008551987819373608, -0.03909840062260628, 0.00756885576993227, -0.01070101372897625, -0.012994987890124321, 0.028460409492254257, 0.04088820517063141, 0.013940307311713696, -0.010530855506658554, -0.020797021687030792, -0.010537157766520977, 0.0018134373240172863, 0.00505115557461977, -0.019145864993333817, 0.031737517565488815, 0.0368296355009079, -0.019725659862160683, 0.05243370309472084, 0.0739617720246315, 0.053391627967357635, -0.009421681053936481, -0.022359950467944145, 0.004298051353543997, -0.03365336358547211, 0.0038915639743208885, 0.0343087837100029, 0.03357773646712303, 0.022170886397361755, 0.01925930380821228, -0.012175710871815681, 0.03251897916197777, -0.0019489331170916557, 0.02851082757115364, -0.04774492233991623, -0.00017321004997938871, 0.01860388182103634, 0.004074325785040855, 0.0245530903339386, 0.03390544652938843, 0.024023711681365967, 0.015994800254702568, -0.03723297268152237, 0.058584582060575485, 0.00860870722681284, -0.027704155072569847, -0.04673657938838005, -0.01728043518960476, 0.04449302330613136, -0.02375902235507965, -0.041215915232896805, -0.047165125608444214, -0.04391322657465935, -0.03670359402894974, 0.020784417167305946, 0.06276919692754745, 0.008728447370231152, -0.02725040167570114, -0.05470247194170952, -0.028409993276000023, -0.014406664296984673, 0.002913158619776368, -0.0016480064950883389, -0.06624796986579895, -0.015566255897283554, 0.005372564308345318, -0.01538979634642601, -0.015024272724986076, -6.110109825385734e-05, 0.009535119868814945, -0.030804801732301712, -0.005920849274843931, -0.008280996233224869, -0.010537157766520977, 0.019587013870477676, -0.04013195261359215, 0.012509724125266075, 0.0026768287643790245, 0.012673579156398773, 0.02898978814482689, -0.07633137702941895, 0.017507310956716537, 0.007052081171423197, 0.034006282687187195, 0.06957549601793289, 0.056819986552000046, 0.015679694712162018, 0.03866985812783241, 0.045425739139318466, -0.001734660705551505, -0.015856154263019562, -0.02256161719560623, -0.016612408682703972, -0.03967819735407829, 0.00047896173782646656, 0.020444102585315704, -0.020809626206755638, 0.009245221503078938, -0.001216310658492148, 0.05303870886564255, 0.0017614447278901935, -0.0254984088242054, 0.048173464834690094, 0.03582129627466202, 0.06322294473648071, -0.040283203125, -0.00023061849060468376, 0.040989041328430176, 0.055559560656547546, 0.056315816938877106, 0.050719525665044785, -0.0033936959225684404, -0.012326962314546108, -0.004430396016687155, -0.029216665774583817, 0.009289336390793324, -0.012673579156398773, -0.0031368841882795095, -0.02449006959795952, -0.012358472682535648, -0.0005088968318887055, 0.058332495391368866, -0.03967819735407829, 0.04257717728614807, -0.02861166000366211, 0.011797583661973476, 0.023658188059926033, 0.05893750116229057, -0.01564188115298748, 0.012125293724238873, 0.05137494578957558, 0.023431312292814255, -0.013058009557425976, -0.03332565352320671, 0.04653491452336311, 0.02331787347793579, -0.017381269484758377, -0.017255226150155067, -0.052383288741111755, -0.01583094522356987, -0.0036709895357489586, 0.004783315118402243, -0.008293600752949715, 0.021792758256196976, 0.01929711550474167, -0.0007393183768726885, -0.01134383026510477, -0.03841777145862579, -0.037812769412994385, 0.004799070302397013, -0.09831319749355316, 0.00971157941967249, -0.018805550411343575, -0.006516400258988142, -0.02199442684650421, -0.03993028402328491, -0.008551987819373608, 0.026065601035952568, -0.011791281402111053, -0.02901499718427658, 0.005542721599340439, 0.0286368690431118, -0.033880241215229034, 0.01743168570101261, -0.022233907133340836, -0.025384971871972084, 0.010058196261525154, 0.010127519257366657, 0.025321949273347855, 0.04938347637653351, -0.01112325582653284, 0.01957440935075283, -0.0011265053180977702, 0.005719181150197983, 0.0015203884104266763, 0.0001498724741395563, 0.011085443198680878, 0.02662018872797489, 0.0019898968748748302, 0.045904699712991714, 0.004685631953179836, 0.01879294589161873, -0.006450227927416563, -0.004843185190111399, -0.010644294321537018, -0.0005352870211936533, -0.005536419339478016, -0.00048211278044618666, 0.0380900613963604, 0.016751056537032127, -0.014457081444561481, 0.023897668346762657, -0.016183864325284958, -0.04214863106608391, -0.004518625792115927, 0.008255787193775177, -0.015112502500414848, 0.003117977874353528, -0.011558102443814278, 0.03814047947525978, -0.018175337463617325, -0.02423798479139805, 0.02760332077741623, -0.0016291000647470355, 0.04938347637653351, 0.031712308526039124, -0.02111212909221649, -0.04613157734274864, 0.04169487953186035, -0.014658750034868717, -0.008867094293236732, 0.012705089524388313, -0.004502870608121157, -0.00031648497679270804, 0.01734345592558384, -0.014028537087142467, 0.023179227486252785, -0.01957440935075283, 0.03940090537071228, 0.013083217665553093, 0.02495642751455307, -0.00899943895637989, -0.005145687609910965, 0.004162555560469627, 0.02247338742017746, 0.025447992607951164, -0.00819906871765852, -0.03771193325519562, -0.019145864993333817, 0.03340127691626549, -0.014986460097134113, -0.006686557549983263, 0.035266708582639694, 0.005139385350048542, 0.0005494667566381395, 0.008476361632347107, -0.029468750581145287, -0.044266145676374435, 0.008690634742379189, -0.012969779781997204, -0.0066235363483428955, -0.0010099159553647041, -0.03607337921857834, -0.011570706963539124, -0.001903242664411664, -0.0023774777073413134, -0.012730298563838005, -0.03728339076042175, -0.005088968202471733, 0.0010122793028131127, -0.04381239414215088, 0.01699053682386875, -0.008646519854664803, 0.028939371928572655, -0.024679133668541908, -0.011759771034121513, 0.001120203291065991, -0.02951916679739952, -0.010259863920509815, -0.05480330437421799, 0.02451527863740921, -0.012698788195848465, 0.0016117691993713379, 0.02420017123222351, -0.01629730314016342, 0.07154175639152527, -0.04459385573863983, 0.016851890832185745, 0.018843362107872963, -0.0034882277250289917, 0.026141226291656494, 0.011413153260946274, 0.0036205726210027933, 0.018112314864993095, 0.011331225745379925, -0.016259489580988884, -0.014532706700265408, -0.010032988153398037, 0.002914734184741974, 0.015868758782744408, 0.07769263535737991, -0.017267830669879913, 0.024603508412837982, -0.01702835038304329, 0.0026232607197016478, 0.005854676943272352, -0.035291917622089386, -0.023746417835354805, 0.02926708199083805, 0.028964580968022346, -0.021540673449635506, 0.00528748519718647, 0.009717881679534912, 0.009516213089227676, -0.0006853564409539104, -0.025914350524544716, 0.0038348447997123003, 0.03153584897518158, -0.0064974939450621605, 0.011948834173381329, 0.024969030171632767, -0.011841698549687862, 0.03632546588778496, -0.03176272660493851, -0.05586206167936325, 0.0025523619260638952, 0.030325839295983315, 0.0028737704269587994, -0.025561431422829628, -0.0011666814098134637, -0.013083217665553093, -0.005842072423547506, 0.015301566570997238, 0.01648636721074581, 0.03435920178890228, -0.004499719478189945, -0.01759554073214531, 0.019158469513058662, 0.016751056537032127, 0.06312211602926254, -0.030048545449972153, -0.01136273704469204, 0.02017941325902939, -0.015490630641579628, -0.021515464410185814, -0.029569584876298904, -0.03977902978658676, -0.028838537633419037, 0.007512136362493038, -0.01633511483669281, -0.0019646883010864258, 0.032367728650569916, 0.006308429874479771, -0.00940907746553421, 0.009465795941650867, -0.057324156165122986, -0.009736787527799606, -0.01285634096711874, -0.03947652876377106, 0.0333508625626564, -0.03554400056600571, 0.018364401534199715, 0.017507310956716537, -0.005637253634631634, 0.022801099345088005, -0.044543441385030746, 0.0062832217663526535, 0.017230017110705376, -0.0016480064950883389, 0.008804072625935078, -0.0024420744739472866, -0.004808523692190647, 0.005161442793905735, 0.007241145242005587, -0.06029875949025154, -0.038190893828868866, 0.006793694104999304, -0.021792758256196976, 0.012175710871815681, -0.010064498521387577, 0.01791064813733101, 0.018074503168463707, -0.018956800922751427, 0.007260051555931568, -0.027174776419997215, -0.014633540995419025, -0.02392287738621235, -0.008967927657067776, 0.046030741184949875, -0.0030659851618111134, 0.0025728438049554825, -0.04361072555184364, 0.025599243119359016, -0.011463570408523083, 0.010146426036953926, -0.027527695521712303, -0.006636140868067741, 0.006242257542908192, 0.0008618159918114543, -0.022007031366229057, 0.014784792438149452, -0.020444102585315704, -0.0456274077296257, 0.003989247139543295, 0.02310360036790371, -0.017066162079572678, 0.040283203125, 0.032493770122528076, -0.0011485627619549632, -0.05182870104908943, -0.01665022224187851, -0.02798144891858101, -0.028435200452804565, 0.006005927920341492, 0.009075064212083817, -0.035896919667720795, 0.00814865157008171, -0.008054119534790516, -0.0033054661471396685, -0.04361072555184364, -0.018616486340761185, -0.02823353372514248, -0.01980128511786461, 0.03927486017346382, -0.0015290537849068642, -0.0065416088327765465, 0.028662078082561493, -0.016221677884459496, -0.05329079553484917, 0.02205744758248329, 0.026015184819698334, 0.025347158312797546, -0.00024538912111893296, -0.033880241215229034, -0.02281370386481285, 0.004773861728608608, -0.013158842921257019, -0.016889702528715134, 0.044896360486745834, 0.02762852981686592, -0.06246669217944145, -0.012339566834270954, 0.03314919397234917, -0.002752454485744238, -0.0051866513676941395, -0.03738422319293022, -0.01481000054627657, 0.026317685842514038, 0.03103167749941349, -0.026897482573986053, -0.004118440672755241, -0.021313795819878578, -0.008848187513649464, 0.020481916144490242, 0.03347690403461456, 0.015755319967865944, 0.029695626348257065, 0.0017078766832128167, 0.001157228252850473, -0.007991097867488861, -0.002137996954843402, 0.014898230321705341, -0.02196921780705452, 0.06241627410054207, -0.017835022881627083, -0.0030848917085677385, -0.005309542641043663, 0.06130710244178772, 0.0038915639743208885, -0.052887458354234695, 0.006352544762194157, 0.011053932830691338, 0.0075058345682919025, 0.00600277679041028, 3.3578526199562475e-05, -0.012837434187531471, -0.0028580150101333857, 0.0165241789072752, -0.02838478423655033, -0.01183539628982544, 0.007688595913350582, -0.014230204746127129, 0.008615008555352688, 0.062265023589134216, -0.023154018446803093, -0.06655047088861465, -0.006368300411850214, 0.013058009557425976, 0.021729737520217896, -0.009163293987512589, -0.004534380976110697, -0.03498941287398338, 0.055912479758262634, -0.027956239879131317, -0.00756885576993227, -0.021187754347920418, 0.0022230756003409624, 0.0001330339873675257, -0.04383760318160057, -0.012081178836524487, -0.015351983718574047, -0.024376630783081055, 0.004064872395247221, 0.023746417835354805, -0.011999251320958138, -0.007928077131509781, -0.031712308526039124, 0.005237068515270948, -0.01869211159646511, 0.04378718510270119, -0.009755694307386875, -0.033628154546022415, 0.00040648726280778646, 0.032846689224243164, -0.015440213494002819, -0.007877659983932972, -0.05329079553484917, -0.033123984932899475, -0.005435585509985685, 0.02672102302312851, 0.011255600489675999, 0.031964391469955444, 0.02527153305709362, 0.0017976820236071944, 0.018868571147322655, 0.048450760543346405, -0.020696187391877174, 0.02096087671816349, -0.03355252742767334, -0.041215915232896805, 0.034636493772268295, 3.104290226474404e-05, 0.03357773646712303, 0.000746802135836333, -0.028914162889122963, -0.012484515085816383, 0.016183864325284958, 0.03269543871283531, -0.02964521013200283, 0.010619085282087326, 0.009932153858244419, 0.01197404321283102, -0.003573306603357196, -0.011255600489675999, -0.007014268543571234, -0.0023018522188067436, -0.006982757709920406, 0.004852638579905033, 0.00845115352421999, -0.015503235161304474, -0.0017315096920356154, -0.03554400056600571, -0.015225941315293312, 0.05787874385714531, 0.03814047947525978, -0.020910460501909256, -0.007354583125561476, 0.05399663373827934, 0.009201106615364552, 0.0023018522188067436, 0.010663200169801712, 0.01367561798542738, 0.026544563472270966, -0.00892381276935339, -0.02058275043964386, -0.0020025011617690325, -0.010965703055262566, 0.021754946559667587, -0.00056758540449664, -0.016259489580988884, -0.0025728438049554825, -0.0049944366328418255, -0.01181648951023817, 0.021162545308470726, 0.007228540722280741, 0.0039010171312838793, 0.0039041682612150908, 0.03435920178890228, -0.006831506732851267, 0.0055080596357584, 0.006012230180203915, 0.024036316201090813, 0.004490266088396311, 0.004332712851464748, 0.03685484454035759, -0.024376630783081055, -0.017003141343593597, 0.020406290888786316, -0.0016495819436386228, -0.02432621456682682, -0.00409953435882926, 0.001369137316942215, 0.019750868901610374, 0.001977292587980628, -0.011696749366819859, 0.020217226818203926, 0.005864129867404699, -0.025800911709666252, -0.01797366887331009, 0.012642068788409233, 0.017519915476441383, 0.01648636721074581, -0.019372740760445595, 0.02007857896387577, 0.004052268341183662, -0.004477662034332752, -0.04479552432894707, 0.0220322385430336, 0.050467438995838165, -0.014078954234719276, -0.0052528236992657185, -0.025548826903104782, -0.0019678394310176373, -0.006103611085563898, -0.02007857896387577, 0.0632733628153801, 0.027023524045944214, -0.0007042628130875528, 0.020494520664215088, -0.019750868901610374, -0.016851890832185745, -0.01381426490843296, -0.01164633221924305, -0.008224276825785637, 0.027199983596801758, -0.012579047121107578, 0.029594792053103447, -0.002802871400490403, -0.01506208535283804, -0.0009547724039293826, 0.00556162791326642, 0.025674868375062943, -0.03345169499516487, 0.03561962768435478, 0.02823353372514248, -0.00278081395663321, 0.00317942351102829, -0.02086004428565502, 0.022586826235055923, 0.024906009435653687, 0.024427048861980438, 0.027678946033120155, 0.040232785046100616, 0.013789055868983269, -0.004720293916761875, 0.007398698013275862, 0.01736866496503353, 0.02449006959795952, -0.011444664560258389, 0.0025728438049554825, -0.005999625660479069, -0.007846149615943432, -0.014847813174128532, 0.01841481775045395, 0.006598327774554491, -0.015919174998998642, 0.02230953238904476, 0.023267457261681557, -0.05369412899017334, 0.01677626371383667, 0.01910805143415928, -0.030073754489421844, -0.020242435857653618, 0.020633166655898094, -0.0029604246374219656, 0.007146613206714392, 0.048072632402181625, 0.019334929063916206, -0.0013344755861908197, 0.006818902213126421, 0.010518251918256283, 0.009869132190942764, 0.028536034747958183, -0.006245408672839403, -0.002204169286414981, -0.017885439097881317, 0.022460784763097763, 0.0010359123116359115, 0.018528256565332413, -0.0033621853217482567, -0.017192205414175987, 0.009799809195101261, 0.0346112884581089, -0.018011482432484627, 0.021036503836512566, -0.00042499974370002747, 0.022889329120516777, -0.030300632119178772, -0.008722145110368729, 0.0037308598402887583, 0.01164633221924305, 0.010348093695938587, -0.0065037962049245834, 0.0039199236780405045, 0.05208078399300575, -0.015931779518723488, 0.006787391845136881, 0.013978119939565659, -0.0030202947091311216, -0.002481462899595499, -0.03561962768435478, 0.01633511483669281, -0.004342166241258383, 0.021515464410185814, -0.009150689467787743, 0.020292852073907852, 0.026922689750790596, 0.03357773646712303, -0.026317685842514038, -0.013398324139416218, -0.010196843184530735, -0.02760332077741623, 0.02886374667286873, 0.025914350524544716, 0.020381081849336624, 0.031460221856832504, -0.0014983309665694833, 0.01913326047360897, -0.0021490256767719984, -0.04903055727481842, -0.011627426370978355, -0.010096008889377117, 0.017318246886134148, 0.010940494015812874, -0.01755772903561592, 0.006875621620565653, -0.009314545430243015, -0.031233346089720726, 0.007026872597634792, -0.003655234118923545, 0.0014242809265851974, 0.013940307311713696, 0.011230392381548882, -0.013952910900115967, 0.0040459660813212395, -0.024590903893113136, 0.05127411335706711, -0.010593877173960209, -0.0051425364799797535, 0.013322698883712292, -0.01948617957532406, 0.02901499718427658, -0.013448741286993027, 0.017066162079572678, 0.04202258959412575, -0.015162919647991657, -0.01768377050757408, 0.05929042026400566, -0.022208698093891144, -0.01772158406674862, 0.023595167323946953, -0.023897668346762657, 0.027326026931405067, -0.010316583327949047, 0.025989975780248642, 0.014482290484011173, -0.04391322657465935, 0.014280621893703938, -0.034132324159145355, 0.0010036139283329248, -0.005129931960254908, 0.024275796487927437, 0.00889230240136385, -0.03410711511969566, -0.025485806167125702, 0.005070061888545752, 0.029796460643410683, 0.014280621893703938, -0.001164318178780377, -0.037762351334095, 0.022271720692515373, -0.01070101372897625, -0.018049294129014015, -0.0038632045034319162, -0.014532706700265408, 0.01923409476876259, 0.04638366028666496, 0.009787204675376415, 0.031107302755117416, 0.017381269484758377, -0.0343087837100029, -0.028409993276000023, -0.004695085342973471, 0.041594043374061584, -0.019460970535874367, -0.0008007641299627721, -0.020406290888786316, -0.017545124515891075, -0.010404813103377819, -0.02609081007540226, 0.07658345997333527, 0.017444290220737457, -0.04953472688794136, 0.023431312292814255, 0.006900830194354057, -0.022612035274505615, 0.019750868901610374, 0.021628903225064278, 0.033502113074064255, -0.01513771153986454, -0.016977932304143906, 0.05535789206624031, 0.00884188525378704, 0.02256161719560623, -0.005388319492340088, -0.005526966415345669, -0.00310379802249372, -0.021628903225064278, 0.0017756245797500014, 0.024906009435653687, -0.012560141272842884, -0.04512323439121246, 0.02876291237771511, -0.05969375744462013, 0.004231879021972418, -0.03423316031694412, 0.0177846048027277, 0.017066162079572678, -0.02300276793539524, 0.0002885193098336458, 0.020103788003325462, -0.008407038636505604, -0.05636623129248619, 0.0128248305991292, 0.0278554055839777, -0.021049106493592262, -0.02249859645962715, 0.002692584181204438, 0.012629464268684387, 0.02398589812219143, -0.032367728650569916, -0.04172008857131004, -0.002232528757303953, 0.014545311219990253, -0.016877098008990288, -0.0014802123187109828, -0.002555512823164463, -0.039980698376894, 0.030048545449972153, -0.028283949941396713, -0.0037970321718603373, -0.002481462899595499, 0.0067558810114860535, 0.010845961980521679, -0.009289336390793324, -0.001164318178780377, 0.017582936212420464, -0.0036709895357489586, -0.006560515146702528, -0.036174215376377106, -0.00858980044722557, 0.01932232454419136, -0.020002953708171844, -0.004052268341183662, -0.002216773573309183, 0.006185538601130247, 0.013347906991839409, -0.016221677884459496, -0.03405670076608658, -0.025485806167125702, 0.01784762553870678, -0.003258200129494071, -0.009289336390793324, -0.00018453419033903629, 0.005820014979690313, 0.003209358546882868, -0.015364588238298893, 0.0063714515417814255, 0.03498941287398338, 0.018024085089564323, -0.00845115352421999, 0.018137523904442787, 0.018301378935575485, 0.008709540590643883, -0.010927889496088028, -0.029972920194268227, -0.023154018446803093, 0.01929711550474167, 0.004865242633968592, -0.008381830528378487, -0.0013604718260467052, -0.016385532915592194, -0.019158469513058662, -0.02464132010936737, 0.013448741286993027, -0.007625574711710215, -0.027376443147659302, -0.016864493489265442, -0.023090997710824013, 0.014520103111863136, 0.01318405196070671, -0.003607968334108591, -0.012547536753118038, 0.0075940643437206745, -0.042123422026634216, -0.005555325653403997, -0.02876291237771511, 0.010285072959959507, 0.00988173671066761, -0.011242995969951153, -0.029468750581145287, -0.020002953708171844, 0.008306204341351986, -0.01709137111902237, 0.008003702387213707, -0.019523993134498596, 0.012459306977689266, -0.019624825567007065, 0.020885251462459564, -0.03846818953752518, 0.020255038514733315, -0.009018344804644585, 0.03408190980553627, 0.004729746840894222, -0.020759209990501404, 0.005473398137837648, 0.0040176063776016235, -0.0041058361530303955, 0.006604630034416914, -0.010184238664805889, 0.005215011071413755, 0.003302315017208457, -0.0006057920400053263, -0.004836883395910263, -0.022107865661382675, 0.0018701564986258745, -0.04257717728614807, 0.00686931936070323, -0.0037875790148973465, -0.003743463894352317, 0.03496420755982399, 0.015036877244710922, 0.023897668346762657, -0.010833358392119408, -0.01230805553495884, 0.004950321279466152, -0.014343643561005592, 0.005703425966203213, -0.018868571147322655, 0.012011855840682983, -0.025662265717983246, 0.008060421794652939, 0.015944384038448334, 0.015566255897283554, 0.006031136494129896, 0.009825017303228378, -0.013410928659141064, 0.001508571906015277, 0.03607337921857834, 0.015616673044860363, -0.021704528480768204, 0.021666716784238815, -0.018074503168463707, 0.005404074676334858, 0.012982383370399475, 0.014104162342846394, 0.009497307240962982, -0.020998690277338028, -0.03128376230597496, -0.027578111737966537, -0.027552902698516846, -0.051727864891290665, -0.003162092762067914, 0.01538979634642601, -0.01354957465082407, 0.00974308978766203, 0.03408190980553627, 0.030325839295983315, -0.04088820517063141, -0.033224817365407944, 0.0005754630547016859, -0.005605742800980806, 0.006402961909770966, 0.02974604442715645, -0.021175149828195572, -0.0393504872918129, 0.015415005385875702, -0.021666716784238815, 0.010745128616690636, -0.0025224266573786736, 0.03012417070567608, -0.024502674117684364, -0.007297864183783531, -0.0030722874216735363, -0.010140123777091503, -0.022952349856495857, -0.019851703196763992, 0.028813328593969345, 0.014444476924836636, -0.008835582993924618, -0.014331039041280746, 0.007556251250207424, -0.0078083365224301815, -0.004632064141333103, 0.0013848926173523068, -0.037661515176296234, 0.022196095436811447, -0.0036930469796061516, 0.016914911568164825, 0.0027130660600960255, 0.013310094363987446, 0.010146426036953926, -0.02121296338737011, -0.005486002191901207, -0.003639478934928775, -0.001061120769008994, 0.01717960089445114, 0.029292291030287743, 0.011513987556099892, 0.0065037962049245834, -0.04318217933177948, -0.024527881294488907, 0.010593877173960209, 0.010524553246796131, -0.006604630034416914, -0.00249091605655849, -0.007562553510069847, 0.016662826761603355, 0.015755319967865944, -0.00023770838743075728, -0.021049106493592262, 0.030098963528871536, -0.00637460220605135, -0.013473949395120144, 0.04164446145296097, -0.024792570620775223, -0.028309158980846405, -0.011406851932406425, -0.029468750581145287, 0.02256161719560623, 0.00011954348883591592, -0.007077289745211601, -0.03914881870150566, -0.010297677479684353, -0.030577924102544785, -0.008161256089806557, -0.03418274223804474, -0.023582562804222107, 0.015994800254702568, -0.020948274061083794, -0.041871339082717896, -0.007852451875805855, 0.0016795170959085226, 0.01112325582653284, 0.027073942124843597, -0.0336785726249218, -0.012774413451552391, -0.005920849274843931, 0.026897482573986053, -0.005495455581694841, -0.0027650585398077965, 0.007707502692937851, 0.017078766599297523, -0.006402961909770966, -0.009818715043365955, 0.03239293769001961, -0.017507310956716537, 0.010411115363240242, -0.013310094363987446, -0.041493210941553116, 0.018654298037290573, 0.020847439765930176, 0.015503235161304474, -0.01627209410071373, 0.023998502641916275, 0.004490266088396311, -0.004682481288909912, -0.0039797937497496605, 0.018994614481925964, -0.003125855466350913, 0.007934379391372204, -0.008545685559511185, -0.010745128616690636, -0.004956623539328575, 0.015225941315293312, -0.015213336795568466, 0.027578111737966537, 0.010978306643664837, -0.002665800042450428, -0.012030762620270252, 0.025737890973687172, -0.0118038859218359, -0.018969405442476273, -0.016561992466449738, 0.010020383633673191, -0.015074689872562885, -0.002451527863740921, -0.019221490249037743, -0.020154206082224846, -0.027552902698516846, 0.017961064353585243, 0.0037088023964315653, 0.0018339192029088736, 0.008659123443067074, 0.0016448553651571274, 0.03385503217577934, 0.014570520259439945, 0.02051972784101963, 0.0049660769291222095, -0.008268391713500023, 0.00219471612945199, 0.003967189695686102, 0.0036867449525743723, -0.030804801732301712, -0.04340905696153641, 0.014595728367567062, -0.022964954376220703, -0.0019268756732344627, 0.01090268138796091, 0.008822979405522346, -0.006308429874479771, 0.004140498116612434, 0.04081258177757263, -0.02430100552737713, 0.0449971929192543, 0.01425541378557682, -0.01112325582653284, -0.026317685842514038, 0.005738087464123964, -0.013347906991839409, -0.01153289433568716, -0.012213524430990219, 0.0001974338520085439, -0.010757732205092907, -0.013637804426252842, 0.016952723264694214, -0.005627800244837999, -0.01696532778441906, -0.003778125625103712, -0.02709914930164814, 0.010146426036953926, -0.016183864325284958, 0.005385168362408876, 0.022196095436811447, 0.022007031366229057, 0.005205557681620121, 0.04298051446676254, -0.008217974565923214, -0.020242435857653618, 0.024036316201090813, 0.03314919397234917, 0.019713055342435837, 0.00113517080899328, 0.0009642255608923733, 0.018024085089564323, 0.010448927991092205, 0.049585141241550446, -0.021855778992176056, 0.018137523904442787, -0.035922128707170486, 0.04179571196436882, 0.028082281351089478, 0.001494392054155469, 0.014885625801980495, 0.007612970657646656, -0.03244335576891899, 0.02722519263625145, -0.029947711154818535, 0.019914723932743073, 0.0166754312813282, -0.01913326047360897, -0.03279627487063408, 0.018452631309628487, 0.00811714120209217, 0.04950951784849167, -0.008192766457796097, 0.012591651640832424, -0.00039939736598171294, -0.051627032458782196, 0.014015932567417622, 0.012188315391540527, -0.02810749039053917, 0.020797021687030792, -0.01680147275328636, 0.04963555932044983, -0.01532677561044693, -0.031712308526039124, -0.004049117211252451, 0.01740647666156292], [0.02199573814868927, 0.032255977392196655, 0.0019494458101689816, 0.034407857805490494, -0.03542833402752876, -0.020021334290504456, 0.0046171084977686405, 0.01840188167989254, 0.04028669744729996, 0.008685155771672726, 0.02773038111627102, -0.032322533428668976, 0.020331915467977524, 0.0120571693405509, -0.035139936953783035, 0.005074659828096628, -0.00956143531948328, 0.009772186167538166, -0.005632040556520224, 0.010249149054288864, 0.057102400809526443, -0.00864078663289547, -0.005307594779878855, 0.026465876027941704, 0.029482940211892128, -0.0176697988063097, 0.0071378001011908054, -0.031523898243904114, 0.01190187968313694, -0.023160414770245552, 0.03937714174389839, -0.01478583924472332, 0.006671929731965065, -0.047784991562366486, 0.005096843931823969, -0.02344880998134613, -0.0015182383358478546, -0.03715870901942253, 0.014852392487227917, -0.0013858258025720716, -0.06934813410043716, 0.04476792737841606, 0.01009385846555233, -0.052887383848428726, -0.004730802960693836, 0.08301366865634918, 0.010814848355948925, -0.004117961507290602, -0.014464166946709156, 0.02053157426416874, 0.012168090790510178, 0.03254437446594238, -0.012301197275519371, -0.026199663057923317, 0.03935495764017105, -0.02562287263572216, -0.010171503759920597, 0.01761433854699135, -0.003430248238146305, 0.02420307695865631, 0.017924917861819267, -0.018634816631674767, 0.018856659531593323, 0.03607168048620224, 0.0083024762570858, -0.007991896010935307, -0.008956912904977798, 0.03789079189300537, -0.024447103962302208, 0.029349835589528084, -0.007880974560976028, -0.011069968342781067, -0.002889505587518215, -0.05665871500968933, -0.0037325092125684023, 0.02159642055630684, 0.0440802127122879, 0.0076258545741438866, 0.009062288329005241, -0.028639936819672585, -0.03826792538166046, 0.012733791023492813, -0.006488909013569355, 0.00036777419154532254, -0.009844285435974598, 0.00902901217341423, -0.06446758657693863, 0.007781144697219133, -0.0014052370097488165, 0.0020783920772373676, -0.008613056503236294, -0.01621672697365284, 0.0031501713674515486, 0.02923891320824623, 0.030791815370321274, 0.035517070442438126, -0.024291813373565674, 0.010304609313607216, -0.052399326115846634, 0.06273721158504486, -0.009334046393632889, -0.02169625088572502, 4.254880332155153e-05, 0.02737543173134327, 0.08962459117174149, -0.010543091222643852, -0.006106229964643717, -0.009400598704814911, -0.0060951379127800465, -0.01800256408751011, 0.0527099072933197, -0.03212287276983261, 0.030858367681503296, 0.06380206346511841, 0.012467578984797001, -0.013820821419358253, 0.03487372770905495, -0.06282594799995422, -0.03365359082818031, -0.0068494039587676525, 0.01947782002389431, 0.024646762758493423, -0.04365871101617813, -0.08980206400156021, 0.026887377724051476, 0.040575094521045685, 0.006433448288589716, 0.034807175397872925, 0.010875855572521687, -0.013244030065834522, 0.031590450555086136, -0.01806911639869213, 0.028196251019835472, -0.004361988976597786, 0.010049490258097649, 0.011779866181313992, 0.023493178188800812, 0.002431954490020871, -0.019311437383294106, -0.002365401480346918, 0.04288225993514061, 0.02597782015800476, 0.03560581058263779, -0.03216724097728729, 0.006721844431012869, 0.005002560559660196, 0.014841299504041672, 0.019278161227703094, 0.03134642168879509, 0.09104438871145248, 0.00026014563627541065, -0.0170153621584177, -0.03602731227874756, 0.005437927786260843, 0.016482938081026077, 0.007037970703095198, -0.000899850856512785, 0.04008704051375389, 0.019377989694476128, 0.03684813156723976, -0.04117406904697418, 0.01738140359520912, -0.008136093616485596, -0.00497483043000102, 0.010354524478316307, 0.003402517642825842, -0.009805462323129177, 0.029283281415700912, -0.05004779249429703, -0.0003421235887799412, -0.03307679668068886, 0.012778159230947495, 0.010531998239457607, -0.027197957038879395, -0.02018771693110466, 0.00373528222553432, 0.033298641443252563, -0.03303242847323418, 0.02524573914706707, 0.008585326373577118, 0.04050854220986366, 0.009772186167538166, -0.06202731654047966, -0.041839599609375, 0.028373725712299347, 0.032699666917324066, -0.002236455213278532, -0.021407853811979294, -0.0120571693405509, -0.02231741137802601, -0.016693688929080963, -0.0007847697706893086, -0.038778163492679596, -0.014087033458054066, 0.04782935976982117, -0.006239335518330336, -0.0245802104473114, -0.01653839834034443, 0.026443691924214363, -0.01874573715031147, 0.026177478954195976, -0.02090870775282383, -0.024291813373565674, -0.0005982829607091844, -0.041728679090738297, 0.021929185837507248, 0.03285495564341545, 0.04818430915474892, 0.032633110880851746, -0.002814633771777153, 0.004985922481864691, -0.013022187165915966, -0.08172697573900223, 0.05745735019445419, 0.005044156219810247, -0.006023038644343615, -0.018901027739048004, 0.03352048620581627, 0.03418601304292679, 0.001971630146726966, 0.0029283282347023487, -0.02484642155468464, 0.03935495764017105, 0.012523040175437927, -0.019688570871949196, -0.00955034326761961, -0.004156784154474735, -0.026865193620324135, -0.0076979538425803185, -0.05009216070175171, 0.015151879750192165, 0.062160421162843704, 0.007054608780890703, -0.014331060461699963, 0.05776793137192726, 0.05302048847079277, -0.06304779648780823, -0.054617758840322495, -0.006866042502224445, -0.0012353884521871805, 0.013277306221425533, 0.02228413335978985, -0.03979864344000816, -0.02276109717786312, -0.010759388096630573, 0.016682596877217293, -0.005945393815636635, -0.017592154443264008, 0.05417407304048538, -0.030215023085474968, -0.04146246612071991, -0.039155296981334686, 0.02522355504333973, -0.05878840759396553, 0.0340307243168354, 0.009023466147482395, 0.025112632662057877, 0.010770480148494244, 0.01845734193921089, -0.020831061527132988, -0.03389761596918106, -0.006411264184862375, 0.01801365613937378, -0.03602731227874756, -0.04010922461748123, -0.013776453211903572, 0.032588742673397064, -0.013443688862025738, -0.024247445166110992, 0.06326963752508163, -0.026754271239042282, 0.005229949951171875, 0.0366484709084034, -0.00010268906771671027, -0.03962116688489914, 0.023936863988637924, 0.02093089185655117, -0.04947099834680557, -0.004977603442966938, 0.011447100900113583, -0.0763583779335022, -0.02128584124147892, -0.007803329266607761, -0.039155296981334686, 0.012656145729124546, 0.009106657467782497, 0.049914684146642685, -0.02484642155468464, 0.028994886204600334, 0.04498976841568947, 0.042704787105321884, -0.004564420785754919, 0.03782423958182335, 0.013709899969398975, 0.019377989694476128, 0.0008936115191318095, -0.02702048234641552, 0.03172355517745018, -0.04246075823903084, -0.06739591807126999, -0.01727048121392727, 0.015284986235201359, 0.03429693356156349, 0.0720989927649498, -0.02418089285492897, 0.025489766150712967, 0.011336179450154305, 0.036226969212293625, -0.05262117087841034, 0.004553328733891249, -0.06437885016202927, 0.005468430928885937, -0.004331485368311405, -0.03276621922850609, -0.002908916911110282, 0.003671502461656928, -0.04228328540921211, -0.0034357942640781403, 0.002531783888116479, 0.02418089285492897, 0.059276461601257324, -0.018912119790911674, 0.025866899639368057, 0.002900597872212529, 0.013099831528961658, 0.014342153444886208, 0.007165530230849981, 0.02382594347000122, -0.04805120453238487, -0.034851543605327606, -0.07152219861745834, -0.017869457602500916, 0.006671929731965065, -0.03671502321958542, -0.057102400809526443, -0.03139078989624977, 0.0921979695558548, 0.021851539611816406, 0.01332167536020279, 0.0014849619474262, 0.020997444167733192, 0.014109217561781406, -0.019189422950148582, -0.01833532750606537, 0.0021532641258090734, -4.579845699481666e-05, 0.014985498040914536, 0.052843015640974045, -0.053153593093156815, 0.015229525044560432, 0.003369241254404187, 0.023160414770245552, -0.05945393815636635, 0.0118796955794096, -0.024802053347229958, -0.01729266531765461, -0.02093089185655117, -0.005620948038995266, 0.010925769805908203, 0.021507684141397476, 0.01724829711019993, -0.03926622122526169, 0.05830035358667374, 0.029726969078183174, -0.02635495364665985, 0.008030718192458153, -0.0339198037981987, -0.009966298937797546, -0.019999150186777115, 0.007054608780890703, 0.007526025176048279, 0.0059675779193639755, 0.022982940077781677, -0.033298641443252563, -0.042349837720394135, 0.0029865619726479053, -0.06269284337759018, 0.013110924512147903, -0.017569968476891518, 0.010426622815430164, 0.0014405932743102312, -0.0022156573832035065, -0.018901027739048004, 0.0375802107155323, 0.01945563592016697, 0.043059736490249634, -0.026244033128023148, -0.03105802647769451, 0.022428331896662712, -0.001810793881304562, -0.014874576590955257, -0.0248242374509573, 0.04574403539299965, 0.029704784974455833, -0.04694198817014694, 0.02779693342745304, 0.023604100570082664, 0.03826792538166046, -0.024402735754847527, -0.0562593974173069, 0.01729266531765461, -0.05018089711666107, -0.038378845900297165, -0.01581740938127041, 0.03602731227874756, 0.017115190625190735, 0.028994886204600334, 0.00989974569529295, 0.021773895248770714, -0.03212287276983261, 0.027242327108979225, 0.0016499576158821583, -0.011031145229935646, 0.007681315299123526, 0.004256613552570343, 0.01770307496190071, 0.02160751260817051, 0.011413824744522572, -0.03560581058263779, -0.005013653077185154, 0.05617066100239754, -0.009239763021469116, -0.012911265715956688, 0.00495541887357831, -0.003912756685167551, 0.030459050089120865, 0.021907001733779907, 0.009905291721224785, -0.016327647492289543, -0.001651344238780439, -0.04261605069041252, -0.01841297373175621, 0.0045949239283800125, -0.0008506294107064605, -0.01837969571352005, -0.045278165489435196, -0.028684306889772415, 0.00952815916389227, -0.02268345095217228, 0.016394201666116714, -0.02992662787437439, -0.015761949121952057, 0.02881741151213646, -0.01061518955975771, -0.04649830237030983, -0.029105808585882187, -0.020819969475269318, 0.015040958300232887, 0.00189675809815526, -0.03709215670824051, -0.025733793154358864, 0.0019203288247808814, -0.017037546262145042, 0.004198379814624786, -0.017869457602500916, 0.005984215997159481, -0.012889080680906773, -0.08110582083463669, -0.009095565415918827, -0.0025830850936472416, 0.01732594147324562, 0.07325257360935211, 0.05803414061665535, 0.04862799495458603, 0.028595568612217903, 0.07240957021713257, -0.012711606919765472, 0.0035578077659010887, -0.0047779446467757225, -0.05346417427062988, -0.02739761583507061, -0.028728675097227097, 0.020786693319678307, 0.02123037911951542, 0.026155294850468636, -0.044146765023469925, 0.01761433854699135, -0.026110926643013954, -0.00766467722132802, 0.024424919858574867, 0.05457339063286781, 0.06087373197078705, -0.0628703162074089, -0.02808533050119877, 0.007858789525926113, 0.012101538479328156, 0.07165530323982239, 0.03995393216609955, 0.008929182775318623, -0.005773465149104595, -0.03285495564341545, -0.02631058543920517, 0.030192838981747627, -0.00809727143496275, -0.019588740542531013, -0.01837969571352005, -0.04141809791326523, -0.012101538479328156, 0.0023792667780071497, -0.007071247324347496, 0.025423213839530945, -0.002939420286566019, -0.002914462937042117, 0.02923891320824623, 0.02852901630103588, -0.014918944798409939, -0.00569027429446578, -0.006200513336807489, 0.0007341618184000254, -0.007126708049327135, -0.0598088875412941, 0.039088744670152664, 0.003141852095723152, -0.015573382377624512, -0.004936007782816887, -0.014552904292941093, -0.02631058543920517, -0.014819115400314331, -0.03784642368555069, 0.013232938013970852, 0.00596203189343214, 0.02273891307413578, -0.012090446427464485, -0.0027494672685861588, -0.015928329899907112, -0.018546078354120255, 0.03647099807858467, -0.039443694055080414, 0.0353395976126194, 0.011125428602099419, -0.0022142708767205477, -0.012401026673614979, -0.04649830237030983, -0.016427477821707726, 0.010188141837716103, 0.008818261325359344, -0.032943692058324814, 0.030481234192848206, 0.008197100833058357, -0.03127986937761307, 0.024269629269838333, -0.00919539388269186, 0.01244539488106966, -0.0198549535125494, 0.003485708963125944, 0.03449659422039986, 0.022805465385317802, -0.025778161361813545, -0.014053757302463055, -0.029482940211892128, -0.010576367378234863, -0.007343004923313856, -0.0017858365317806602, -0.007509387098252773, 0.0065277316607534885, 0.02633276954293251, 0.015429183840751648, -0.029837889596819878, 0.0075703938491642475, 0.01768089085817337, 0.032943692058324814, 0.007343004923313856, -0.0017026454443112016, -0.026177478954195976, -0.039133112877607346, 0.02054266631603241, 0.012334473431110382, -0.056392502039670944, 0.009838739410042763, -0.010703926905989647, -0.043436869978904724, 0.027197957038879395, 0.01659386046230793, -0.043836187571287155, -0.022184304893016815, 0.019023042172193527, 0.030769631266593933, -0.011935155838727951, -0.002619134495034814, 0.044612638652324677, -0.025667240843176842, 0.05217748507857323, -0.04297100007534027, -0.03502901643514633, -0.03201195225119591, -0.009411691688001156, 0.03218942508101463, -0.0086296945810318, 0.02378157526254654, -0.050979532301425934, -0.0025595142506062984, -0.017093006521463394, -0.010776026174426079, -0.010066128335893154, -0.007082339376211166, 0.033365193754434586, -0.04685325175523758, 0.04217236489057541, -0.041839599609375, -0.007692407816648483, -0.011180889792740345, 0.010238057002425194, 0.017758535221219063, 0.013976112008094788, -0.03425256535410881, -0.019178330898284912, 0.019666386768221855, -0.04319284111261368, -0.016449661925435066, 0.030747447162866592, -0.0066552916541695595, 0.02520137093961239, -0.032300349324941635, -0.036604102700948715, -0.07946418225765228, -0.0053741480223834515, -0.002649637870490551, -0.004836178384721279, -0.02553413435816765, -0.01332167536020279, -0.005651451647281647, 0.008540957234799862, -0.0133549515157938, -0.008718431927263737, -0.003801835235208273, -0.03132423758506775, -0.013055463321506977, -0.0047418950125575066, 0.002422248711809516, -0.006832765880972147, 0.013088739477097988, -0.028040960431098938, -0.006200513336807489, -0.008807169273495674, -0.04281570762395859, 0.013787545263767242, -0.00790315866470337, -0.00027279762434773147, -0.01136945653706789, -0.01627218723297119, 0.023515362292528152, -0.015972699970006943, 0.06411264091730118, -0.058255985379219055, 0.030813999474048615, 0.02997099608182907, -0.030104100704193115, 0.018135668709874153, 0.016848979517817497, -0.0120571693405509, 0.011724404990673065, 0.03245563805103302, -0.01737031154334545, -0.027619458734989166, 0.006716298405081034, 0.0007383213960565627, 0.0031085757073014975, 0.049249157309532166, 0.024713315069675446, 0.011646759696304798, 0.002358468947932124, 0.012267920188605785, 0.050668951123952866, -0.02557850256562233, -0.002537329914048314, 0.019377989694476128, 0.03711434081196785, -0.025112632662057877, 0.035139936953783035, 0.005216084886342287, -0.01295563392341137, -0.02879522740840912, -0.010293517261743546, -0.05004779249429703, -0.003322099568322301, -0.028196251019835472, -0.022894201800227165, -0.009611350484192371, -0.019189422950148582, 0.04938226193189621, -0.01296672597527504, -0.028040960431098938, 0.008230376988649368, 0.04836178570985794, 0.030414681881666183, -0.001009385916404426, 0.017081914469599724, -0.02664335072040558, -0.006267066113650799, 0.020243177190423012, 0.01206826139241457, 0.009167663753032684, -0.007941980846226215, -0.0022475472651422024, 0.04388055577874184, 0.029327651485800743, 0.008762800134718418, 0.011979524977505207, -0.015595566481351852, 0.016116896644234657, -0.026953930035233498, -0.010193687863647938, 0.018224406987428665, -0.06841639429330826, -0.05936519801616669, 0.022151028737425804, -0.00614505261182785, 0.03673720732331276, -0.0012083513429388404, 0.009478243999183178, -0.021097274497151375, 0.0352286770939827, -0.02127474918961525, 0.003954352345317602, 0.0005639666342176497, -0.03363140672445297, 0.025312291458249092, 0.009261947125196457, 0.00952815916389227, 0.009090018458664417, -0.02162969671189785, -0.0029976542573422194, -0.020764509215950966, 0.002340444130823016, 0.044235505163669586, -0.007071247324347496, 0.014453074894845486, -0.0036520911380648613, 0.0037851969245821238, -0.008923636749386787, 0.014719286002218723, -0.01661604456603527, -0.0339198037981987, 0.018191130831837654, 0.00014272480621002614, -0.008868175558745861, -0.03631570562720299, -0.013077647425234318, 0.0037546935491263866, -0.02879522740840912, 0.025667240843176842, -0.027486354112625122, -0.014841299504041672, -0.0011743815848603845, -0.04756315052509308, 0.01625000312924385, -0.004120734520256519, 0.03283277153968811, -0.018279867246747017, -0.038467586040496826, -0.006272612139582634, 0.006239335518330336, -0.0628703162074089, -0.003591084387153387, -0.006034130696207285, 0.006383533589541912, -0.012656145729124546, 0.038711611181497574, -0.03638226166367531, 0.012511948123574257, 0.043769631534814835, 0.02016553282737732, -0.014885668642818928, 0.01845734193921089, -0.006084045395255089, 0.0067107523791491985, -0.011086606420576572, 0.004068046808242798, -0.009101111441850662, -0.032211609184741974, -0.006244882009923458, -0.030215023085474968, 0.006300342734903097, 0.01011604256927967, -0.008779438212513924, -0.02340444177389145, -0.044878847897052765, 0.025467582046985626, -0.00850768107920885, -0.029638230800628662, 0.03500683233141899, 0.01151365414261818, 0.006843857932835817, 0.036581918597221375, 0.007015786599367857, -0.03667065501213074, 0.007387373596429825, 0.044168949127197266, -0.03201195225119591, -0.010687288828194141, -0.011990617029368877, -0.026066558435559273, -0.017547784373164177, -0.025378843769431114, -0.051778167486190796, 0.001742854481562972, 0.008945820853114128, -0.017093006521463394, 0.007770052645355463, 0.019633110612630844, -0.016394201666116714, -0.004262159578502178, -0.007803329266607761, 0.021086182445287704, 0.010127135552465916, 0.013754269108176231, -0.04614335298538208, 0.0005767919356003404, -0.002402837621048093, 0.034075092524290085, -0.0076757692731916904, 0.03738055378198624, 0.014375429600477219, 0.04787372797727585, -0.007076793350279331, -0.019721847027540207, 0.001429501106031239, -0.014652733691036701, -0.007420649752020836, -0.0013539358042180538, 0.017924917861819267, -0.029105808585882187, 0.013377135619521141, -0.00867406278848648, 0.03857850655913353, -0.011436008848249912, -0.017913825809955597, 0.007503841072320938, -0.0030780723318457603, -0.011058876290917397, 0.022872017696499825, 0.002587244613096118, -0.011691128835082054, -0.001025330857373774, 0.012267920188605785, 0.006838311906903982, -0.0061838747933506966, 0.01516297273337841, -0.0028132472652941942, -0.009395052678883076, 0.05381912365555763, -0.03414164483547211, -0.0642901137471199, -0.007564847823232412, -0.0023127137683331966, 0.04044198617339134, 0.008086179383099079, -0.0013123402604833245, -0.0316791869699955, 0.05404096469283104, -0.004761306568980217, -0.020398467779159546, 0.00869070179760456, 0.008502135053277016, 0.013232938013970852, -0.0008769733249209821, -0.0013574021868407726, -0.012656145729124546, -0.020686864852905273, 0.010587459430098534, -0.02775256521999836, -0.006444540340453386, -0.003277731128036976, 0.013587886467576027, 0.002064526779577136, -0.03935495764017105, -0.0037574665620923042, 0.004264932591468096, -0.01443088985979557, -0.007026878651231527, 0.057501718401908875, -0.006943687330931425, -0.007542663719505072, -0.03272185102105141, -0.028240619227290154, 0.015484645031392574, -0.011713312938809395, 0.04015359282493591, -0.022938571870326996, -0.010260241106152534, -0.007148892153054476, 0.0009712565806694329, 0.003574446076527238, 8.258454181486741e-05, -0.0035439427010715008, 0.012589593417942524, 0.0030836183577775955, 0.020309731364250183, 0.02121928706765175, 0.014907852746546268, 0.019932597875595093, -0.038778163492679596, 0.021507684141397476, 0.010055036284029484, 0.010909131728112698, 0.006882680580019951, -0.013654439710080624, 0.004969284404069185, 0.0360494963824749, 0.012101538479328156, -0.03252219036221504, 0.02014334872364998, -0.02529010735452175, 0.007115615531802177, 0.006477816961705685, -0.009877561591565609, -0.007725683972239494, 0.014608364552259445, -0.024691130965948105, 0.012622869573533535, 0.021108366549015045, 0.025090448558330536, -0.023537548258900642, -0.020997444167733192, 0.053153593093156815, -0.01843515783548355, -0.015773041173815727, 0.010165957733988762, 0.02384812757372856, 0.020653586834669113, 0.03777987137436867, 0.002537329914048314, -0.022173212841153145, 0.0007833832642063498, -0.041329361498355865, 0.0068494039587676525, -0.011108790524303913, -0.016860071569681168, -0.024313997477293015, -0.042726971209049225, -0.005454565864056349, 0.025889083743095398, 0.001389985322020948, 0.006167236715555191, 0.0012464806204661727, -0.016139082610607147, -0.01869027689099312, 0.011946247890591621, -0.011491470038890839, 0.018901027739048004, 0.032588742673397064, 0.0006814741063863039, -0.006854949984699488, -0.028196251019835472, -0.002537329914048314, 0.032965876162052155, -0.009234216995537281, -0.015418091788887978, 0.010631827637553215, 0.02164078876376152, -0.026465876027941704, 0.015351538546383381, -0.013288398273289204, -0.0007348550716415048, -0.03243345394730568, -0.018268775194883347, 0.04339250177145004, -0.00567086273804307, 0.014475258998572826, 0.025755977258086205, -0.03751365840435028, 0.023981234058737755, 0.031568266451358795, -0.026554612442851067, 0.04978157952427864, 0.03030375950038433, 0.01841297373175621, 0.002057594247162342, 0.02451365627348423, 0.010920223779976368, -0.002624680520966649, -0.006178328767418861, 0.013266214169561863, 0.04796246811747551, -0.022184304893016815, 0.013998296111822128, -0.005058021284639835, -0.006355803459882736, 0.023892495781183243, -0.016416385769844055, -0.004403584636747837, 0.03720308095216751, -0.009284131228923798, -0.0010759388096630573, 0.018590446561574936, 0.024757683277130127, 0.03611604869365692, -0.003566127037629485, -0.022162120789289474, -0.017503416165709496, 0.008912544697523117, -0.019976966083049774, -0.017758535221219063, -0.007564847823232412, -0.01840188167989254, 0.017747443169355392, -8.808729035081342e-05, 0.005834472365677357, 0.05004779249429703, 0.008740616030991077, 0.022084474563598633, 0.016793519258499146, 0.009472697973251343, 0.03325427323579788, -0.029726969078183174, 0.02484642155468464, 0.036559734493494034, -0.018246591091156006, -0.015440275892615318, -0.018668092787265778, 0.037691134959459305, 0.0010433555580675602, 0.026754271239042282, -0.009921930730342865, -0.0005656997673213482, -0.0491604208946228, 0.0277747493237257, 0.0028506831731647253, -0.005418516229838133, -0.003119667759165168, 0.001429501106031239, -0.013266214169561863, 0.01281143631786108, 0.03975427523255348, 0.015440275892615318, -0.016749149188399315, 0.013443688862025738, 0.03347611427307129, 0.041662123054265976, 0.011735497042536736, 0.021385669708251953, -0.008052902296185493, 0.005718004424124956, 0.03629352152347565, 0.01586177758872509, -0.011275173164904118, -0.00044541925308294594, -0.03744710609316826, -0.013476965017616749, 0.04146246612071991, -0.04760751873254776, -0.013587886467576027, -0.02160751260817051, 0.018246591091156006, -0.03644881397485733, -0.025090448558330536, -0.00738182757049799, 0.018579354509711266, 0.006622015032917261, -0.004062500782310963, -0.008873721584677696, 0.028684306889772415, 0.004079138860106468, 0.0028728675097227097, 0.023981234058737755, -0.0446791909635067, 0.024802053347229958, -0.0015917238779366016, 0.002834044862538576, -0.01801365613937378, 0.008080633357167244, -0.017869457602500916, 0.012877988629043102, 0.009361776523292065, 0.024935157969594002, -0.01835751160979271, 0.018901027739048004, 0.015085327439010143, 0.0007088578422553837, 0.0032638658303767443, -0.010753842070698738, 0.014386521652340889, -0.0045949239283800125, 0.054972708225250244, 0.01656058430671692, -0.008590872399508953, -0.02451365627348423, -0.015551197342574596, -0.015007682144641876, -0.01583959348499775, 0.02600000612437725, 0.0005029597668908536, 0.014319968409836292, -0.0170153621584177, -0.032278165221214294, 0.006438994314521551, -0.012301197275519371, 0.002175448462367058, 0.040575094521045685, -0.017725259065628052, 0.00557380635291338, -0.00899573601782322, -0.03527304530143738, 0.06610922515392303, -0.010964592918753624, -0.03416382893919945, 0.02166297286748886, -1.1319628356432077e-05, 0.0022697316017001867, 0.0023806532844901085, 0.028373725712299347, -0.0013768133940175176, -0.07524916529655457, -0.04099659621715546, 0.00595093984156847, -0.021862631663680077, 0.0024513655807822943, 0.01730375736951828, 0.019389081746339798, 0.021718434989452362, 0.006394625641405582, 0.031235501170158386, 0.005695820320397615, -0.01138054858893156, 0.046365197747945786, -0.004805675242096186, -0.0025401029270142317, 0.0241143386811018, 0.02522355504333973, 0.0050302911549806595, -0.03536178171634674, 0.00920094083994627, -9.177022730000317e-05, 0.018945395946502686, 0.004977603442966938, -0.027863487601280212, -0.025755977258086205, 0.023892495781183243, -0.004667023196816444, -0.013532426208257675, -0.01695990189909935, -0.003746374510228634, 0.0013449235120788217, -0.004051408730447292, 0.018501710146665573, 0.015639934688806534, 0.018878843635320663, -0.026621166616678238, 0.006133960094302893, 0.02526792325079441, 0.1004505306482315, 0.007426196243613958, 0.004031997174024582, -0.007792237214744091, -0.032988060265779495, -0.009250855073332787, -0.011757681146264076, 0.05727987363934517, 9.18568839551881e-05, -0.017913825809955597, 0.010792664252221584, -7.300889410544187e-05, -0.02739761583507061, 0.006738482508808374, 0.005080205854028463, 0.006549915764480829, 0.017148466780781746, -0.018601540476083755, 0.018645908683538437, -0.0029865619726479053, 0.04547782614827156, 0.008912544697523117, 0.01663822866976261, 0.013565702363848686, 0.012511948123574257, -0.005801195744425058, 0.01153583824634552, 0.006361349485814571, 0.005889933090656996, 0.04654267057776451, -0.041351545602083206, -0.015140787698328495, -0.04729693755507469, 0.01043771579861641, -0.01761433854699135, 7.968151476234198e-05, 0.03216724097728729, -0.011336179450154305, -0.017547784373164177, -0.008213738910853863, -0.015584474429488182, 0.04858362674713135, 0.01082039438188076, -0.023182598873972893, -0.009811008349061012, 0.021019628271460533, 0.03314335271716118, 0.002376493765041232, -0.02269454300403595, -0.005504480563104153, 0.0001534703333163634, 0.007797783240675926, 0.020320823416113853, 0.005601536948233843, -0.006178328767418861, 0.0031640364322811365, -0.044146765023469925, 0.0209197998046875, 0.017947101965546608, -0.0008457766380161047, -0.0002265225484734401, 0.016072528436779976, -0.020121164619922638, -0.026909561827778816, -0.04279352352023125, 0.019577648490667343, -0.03653755038976669, -0.013000003062188625, -0.013765361160039902, -0.010792664252221584, 0.010293517261743546, 0.019555464386940002, -0.014918944798409939, 0.0248242374509573, -0.017581062391400337, -0.017159558832645416, 0.010038398206233978, 0.02994881197810173, -0.01692662388086319, -0.015429183840751648, 0.016871163621544838, 0.03161263465881348, 0.04155120253562927, -0.0352286770939827, 0.003898891620337963, 0.029394203796982765, 0.014508535154163837, -0.02529010735452175, -0.014209046959877014, 0.03724744915962219, 0.009533705189824104, 0.04008704051375389, -0.027930039912462234, -0.03578328341245651, 0.024691130965948105, -0.005074659828096628, -0.03378669545054436, 0.003579992102459073, 0.010027306154370308, 0.012645053677260876, -0.014663825742900372, 0.01587286964058876, -0.015983792021870613, -0.018102392554283142, -0.013044371269643307, -0.004353669937700033, -0.011979524977505207, 0.021141642704606056, -8.427436114288867e-05, -0.014386521652340889, 0.00013847858645021915, -0.03496246412396431, 0.015351538546383381, -0.05599318444728851, -0.0009497655555605888, -0.015052050352096558, 0.008047356270253658, -0.007614762522280216, -0.00029862154042348266, -0.02130802534520626, 0.003826792584732175, 0.018157852813601494, -0.013621163554489613, -0.00044091304880566895, -0.026820823550224304, 0.009189847856760025, -0.026443691924214363, 0.021141642704606056, 0.005013653077185154, 0.006283704191446304, 0.03028157539665699, -0.04039761796593666, 0.013820821419358253, -0.0016873936401680112, 0.005579352844506502, -0.005540530197322369, -0.02486860565841198, 0.009838739410042763, 0.0017567196628078818, 0.017403587698936462, 0.005845564417541027, 0.015562289394438267, -0.010426622815430164, -0.0241143386811018, -0.045278165489435196, 0.005676408763974905, -0.010565275326371193, 0.03491809591650963, 0.006610922981053591, -0.002914462937042117, -0.004655931144952774, -0.005773465149104595, 0.001173688331618905, -0.03218942508101463, 0.015284986235201359, -0.01942235790193081, -0.0018246590625494719, -0.009284131228923798, 0.00018700674991123378, 0.017869457602500916, -0.003005973296239972, 0.024691130965948105, 0.011624575592577457, 0.02706485241651535, -0.004198379814624786, 0.017836181446909904, 0.0018163399072363973, -0.032633110880851746, 0.011502562090754509, 0.0375802107155323, 0.012201367877423763, -0.004517279099673033, 0.015096419490873814, 0.039488062262535095, -0.02200683020055294, -0.010598551481962204, 0.014508535154163837, -0.0074317422695457935, -0.01771416701376438, 0.01947782002389431, -0.006738482508808374, -0.04765188694000244, 0.01372099295258522, -0.00919539388269186, 0.040552910417318344, -0.04303755238652229, -0.019566556438803673, 0.0045949239283800125, 0.024336181581020355, -0.00922312494367361, 0.017226113006472588, 0.021851539611816406, -0.007098977454006672, -0.00738182757049799, -0.02844027802348137, 0.009639080613851547, -0.005329779349267483, 0.018501710146665573, -0.04081911966204643, 0.028284989297389984, 0.029017070308327675, -0.005740188993513584, -0.0016860071336850524, 0.013776453211903572, 0.03966553509235382, 0.007964164949953556, -0.01138054858893156, -0.03580546751618385, 0.0026135884691029787, -0.0037075518630445004, -0.008230376988649368, -0.012123722583055496, -0.02668771892786026, 0.0003131800040137023, 0.020720141008496284, -0.010942407883703709, -0.0019175558118149638, 0.02808533050119877, -0.01697099395096302, -0.026843009516596794, -0.013011095114052296, 0.031523898243904114, 0.003166809445247054, -0.015717579051852226, 0.013687715865671635, 0.005257680080831051, -0.023936863988637924, -0.0166049525141716, -0.01869027689099312, 0.03416382893919945, 0.032588742673397064, 0.0028811865486204624, 0.03880034759640694, -0.0060951379127800465, 0.03775768727064133, -0.004844497423619032, 0.018557170405983925, 0.01659386046230793, -0.00739291962236166, -0.009372868575155735, -0.03316553682088852, 0.02744198590517044, 0.0014378202613443136, -0.010165957733988762, 0.0005372761515900493, -0.012112630531191826, 0.010282425209879875, 0.004447953309863806, 0.01009385846555233, -0.03170137107372284, -0.01798037812113762, -0.022960755974054337, 0.010221417993307114, -0.020697956904768944, -0.015573382377624512, -0.016150174662470818, -0.04649830237030983, -0.02666553482413292, -0.00476962560787797, 0.016793519258499146, -0.008346844464540482, 0.037291817367076874, 0.004226109944283962, 0.0015362631529569626, -0.02347099408507347, -0.007986349985003471, 0.012578500434756279, -0.022206488996744156, -0.008080633357167244, -0.0006121481419540942, 0.041972704231739044, 0.0066885678097605705, 0.029682599008083344, -0.046010248363018036, 0.021796079352498055, -0.022572530433535576, -0.014907852746546268, 0.008757254108786583, 0.026598980650305748, 0.009799916297197342, -0.034718435257673264, -0.040974412113428116, -0.0024735499173402786, -0.005862202495336533, 0.017747443169355392, 0.009921930730342865, 0.006588738411664963, 0.007304182276129723, -0.024447103962302208, -0.010104950517416, -0.00766467722132802, 0.009106657467782497, 0.01135281752794981, -0.003277731128036976, -0.012134814634919167, 0.006960325408726931, -0.03791297599673271, 0.0013837460428476334, -0.018945395946502686, 0.017226113006472588, -0.02491297386586666, 0.005146758630871773, -0.0020617537666112185, -0.00016594899352639914, -0.024069970473647118, -0.008174916729331017, -0.032344717532396317, 0.017059730365872383, 0.005357509478926659, -0.025134816765785217, 0.018257683143019676, -0.012789251282811165, 0.05018089711666107, -0.009134387597441673, -0.0070324246771633625, 0.028972702100872993, 0.0006239335634745657, -0.022494884207844734, -0.01242321077734232, -0.0070324246771633625, -0.03289932385087013, -0.05399659648537636, 0.022239765152335167, -0.0011605164036154747, -0.014841299504041672, 0.028262805193662643, 0.04898294433951378, -0.013432596810162067, 0.007831059396266937, 0.009084472432732582, -0.018568262457847595, -0.005274318624287844, -0.009777732193470001, 0.013255122117698193, -0.028972702100872993, -0.035872019827365875, 0.007836605422198772, -0.0016166812274605036, -0.027641642838716507, 0.0267099030315876, -0.012256828136742115, 0.0037685588467866182, 0.0024860287085175514, -0.04390273988246918, -0.028595568612217903, -0.012156998738646507, -0.021086182445287704, -0.007825513370335102, -0.005227176938205957, -0.005082978866994381, 0.0020853246096521616, -0.005274318624287844, 0.017492324113845825, 0.02520137093961239, -0.013776453211903572, -0.019921505823731422, 0.030703077092766762, 0.033298641443252563, 0.015018774196505547, -0.03596075624227524, -0.006810581777244806, 0.020431743934750557, 0.0223950557410717, 0.04286007583141327, -0.02773038111627102, 0.029327651485800743, -0.026244033128023148, 0.004176195245236158, 0.032610926777124405, -0.004398038610816002, -0.0009830420603975654, 0.004450726322829723, -0.031102394685149193, -0.0020853246096521616, 0.004755760543048382, 0.012855804525315762, 0.04354779049754143, -0.014375429600477219, -0.01768089085817337, 0.004611562471836805, -0.026576796546578407, 0.024957342073321342, -0.014630548655986786, -0.011447100900113583, 0.019300345331430435, -0.026421507820487022, -0.002552581485360861, 0.0043093012645840645, 0.003898891620337963, 0.0049249157309532166, -0.021030720323324203, 0.018645908683538437, -0.022261949256062508, 0.03826792538166046, 0.010021760128438473, -0.008474403992295265], [0.03159541264176369, 0.035309646278619766, -0.02771013230085373, 0.022053256630897522, -0.06133371219038963, 0.015919886529445648, -0.023128429427742958, 0.026170680299401283, -0.007019166834652424, 0.01186355296522379, -0.0349431112408638, 0.008155428804457188, 0.013940590433776379, 0.02817440964281559, -0.0194630678743124, -0.01818019151687622, 0.04439974203705788, -0.009517721831798553, -0.018131321296095848, 0.06011192500591278, 0.05356314778327942, 0.027343595400452614, 0.00013745104661211371, -0.011936860159039497, -0.00982927717268467, -0.012840982526540756, -0.0019502777140587568, -0.01769147627055645, 0.03259728103876114, -0.059281110763549805, 0.07545757293701172, -0.028272153809666634, 0.04425312951207161, -0.055762361735105515, 0.03535851836204529, 0.02169893868267536, 0.009450523182749748, -0.02746577374637127, 0.02565752901136875, -0.039488159120082855, -0.07291625440120697, 0.007306287065148354, 0.02795448899269104, -0.050435371696949005, -0.05102182924747467, 0.08875061571598053, 0.0016799572622403502, -0.03008039854466915, -0.019206494092941284, 0.01866890676319599, -0.010348537005484104, 0.012144563719630241, -0.03748442977666855, 0.02915184013545513, 0.011735265143215656, -0.005018490366637707, -0.013476312160491943, 0.03939041495323181, 0.016481908038258553, -0.004899366293102503, 0.0225541889667511, -0.037117891013622284, -0.0018479529535397887, 0.044350869953632355, -0.015027981251478195, 0.014282691292464733, 0.004352616611868143, 0.024533484131097794, -0.03797314316034317, 0.027563516050577164, 0.0005074234795756638, 0.013952808454632759, -0.020660419017076492, 0.0023427768610417843, -0.017239416018128395, 0.030104834586381912, -0.009261146187782288, 0.031131135299801826, 0.02500998228788376, -0.015211249701678753, -0.027759002521634102, -0.0014439995866268873, -0.003744777524843812, 0.013305261731147766, -0.014380434527993202, 0.008179864846169949, -0.03868177905678749, -0.032304052263498306, 0.01695840433239937, -0.015993192791938782, -0.02675713784992695, -0.028760869055986404, -0.022065475583076477, 0.06885991990566254, -0.006087554153054953, -0.011796354316174984, 0.021625632420182228, 0.0012156781740486622, -0.05825480818748474, 0.07682597637176514, 0.015199031680822372, -0.01785030961036682, -0.040856558829545975, -0.02749020978808403, 0.057423993945121765, -0.004398433491587639, -0.02888304740190506, 0.005372808780521154, 0.015871014446020126, 0.010586785152554512, 0.04234714061021805, -0.018094666302204132, 0.03279276564717293, 0.04823615401983261, -0.0014134550001472235, -0.04569483920931816, 0.004178511910140514, 0.01618867926299572, -0.0517549030482769, -0.028931917622685432, -0.015467824414372444, 0.0009346671286039054, 0.025071071460843086, -0.07589741796255112, 0.0305202417075634, 0.01397724449634552, -0.02069707401096821, -0.015480042435228825, -0.0058493055403232574, -0.051119573414325714, 0.060698382556438446, -0.030153704807162285, 0.042298268526792526, -0.0433490052819252, 0.002581025240942836, 0.041565198451280594, 0.03814419358968735, -0.005482769571244717, 0.003295770613476634, -0.00587068684399128, 0.05473606288433075, 0.0047527519054710865, 0.06270211189985275, 0.022859636694192886, -0.005641601979732513, 0.010336318984627724, -0.02017170563340187, 0.025950757786631584, 0.02375154197216034, 0.03753329813480377, -0.0012584406649693847, -0.00012074692494934425, 0.06035628169775009, 0.02339722216129303, 0.00872355978935957, -0.03721563518047333, 0.014637009240686893, 0.0384862944483757, -0.006191405933350325, 0.03447883203625679, -0.06856669485569, -0.011826898902654648, -0.024044770747423172, -0.0334036611020565, 0.05331878736615181, -0.041589632630348206, -0.0008605963084846735, 0.004633627366274595, -0.02629285864531994, -0.028101103380322456, -0.016824008896946907, -0.020379409193992615, -0.015846578404307365, -0.02413029596209526, -0.02514437772333622, -0.023849284276366234, 0.038828395307064056, 0.007257415447384119, -0.009401652030646801, 0.03865734487771988, 0.03689797222614288, 0.03421003744006157, -0.07145010679960251, 0.01049515139311552, 0.020196139812469482, 0.010745617561042309, -0.04791849106550217, 0.0442286916077137, -0.028247717767953873, -0.024386869743466377, 0.016799572855234146, -0.01269436813890934, -0.006738156080245972, 0.05400298908352852, -0.035065289586782455, -0.024753406643867493, -0.03474762663245201, -0.0050215451046824455, 0.06939750909805298, -0.03824193775653839, -0.00588901387527585, -0.04698993265628815, 0.0011141170980408788, -0.00579432537779212, -0.05688640847802162, -0.01396502647548914, 0.02981160581111908, -0.02375154197216034, 0.05449170619249344, 0.004709989298135042, 0.019072096794843674, -0.007202434819191694, -0.03352583944797516, 0.020978083834052086, -0.017862526699900627, -0.007135236635804176, 0.01651856116950512, 0.027319159358739853, 0.02391037344932556, 0.04523056000471115, -0.04498619958758354, -0.05590897798538208, 0.0288586113601923, -0.006915315054357052, 0.014539266936480999, -0.02819884568452835, -0.03631151095032692, -0.006279985886067152, -0.013732886873185635, -0.053221046924591064, -0.0016646849690005183, 0.028076667338609695, -0.015785489231348038, -0.030373627319931984, 0.03333035111427307, 0.03352583944797516, -0.0152601208537817, -0.06504794210195541, -0.01662852242588997, -0.06534117460250854, 0.01478362362831831, 0.024423524737358093, -0.015565567649900913, -0.021479018032550812, 0.023812631145119667, -0.023226173594594002, -0.01894991844892502, -0.030178140848875046, 0.06221339851617813, -0.03399011865258217, -0.020342756062746048, -0.014649227261543274, 0.022419793531298637, -0.03335478901863098, 0.01445374172180891, -0.014478176832199097, 0.05796157941222191, -0.00910231377929449, 0.006200569681823254, -0.008974025957286358, -0.024264691397547722, -0.026390600949525833, 0.011839116923511028, -0.04750308394432068, -0.05102182924747467, 0.004453414119780064, 0.034820932894945145, -0.0041388035751879215, 0.00045473387581296265, 0.011387055739760399, -0.03027588501572609, 0.02937176264822483, 0.01490580290555954, -0.025779707357287407, -0.04474184289574623, 0.01479584164917469, 0.01965855434536934, -0.041785117238759995, -0.01760595291852951, 0.047160983085632324, -0.040221232920885086, -0.0479917973279953, 0.004807732068002224, -0.07115688174962997, 0.00404106080532074, 0.0005211685784161091, 0.030349191278219223, -0.02132018469274044, 0.01047071535140276, -0.004377052187919617, 0.0619201697409153, -0.007947725243866444, -0.04491289332509041, -0.024875584989786148, 0.021479018032550812, 0.0031277749221771955, -0.07281851023435593, 0.016005411744117737, -0.002440519630908966, -0.016347510740160942, -0.012205652892589569, 0.05478493496775627, 0.035334084182977676, -0.011533670127391815, -0.033183738589286804, 0.03467431664466858, 0.008149320259690285, 0.0004344980407040566, -0.04009905084967613, -0.007660605013370514, -0.007367376238107681, 0.013476312160491943, 0.001905987854115665, -0.05165715888142586, 0.009340561926364899, 0.010140832513570786, -0.03951259329915047, -0.011173242703080177, 0.03237735852599144, -0.006038682535290718, 0.04501063749194145, 0.015736617147922516, 0.056935280561447144, -0.04464409872889519, 0.01678735390305519, -0.029298454523086548, 0.02604850009083748, 0.04012348875403404, -0.02483893185853958, -0.037191201001405716, -0.04464409872889519, -0.013427440077066422, 0.03391680866479874, 0.01093499455600977, -0.0006528924568556249, -0.025217685848474503, 0.052536845207214355, 0.0061791883781552315, 0.005311719607561827, -0.031131135299801826, 0.03780209273099899, 0.015113506466150284, -0.02180889993906021, 0.004502285271883011, -0.030324755236506462, 0.0025458987802267075, 0.006481580436229706, 0.0471121110022068, 0.007324613630771637, 0.012346158735454082, -0.029054097831249237, 0.019646337255835533, -0.036238204687833786, 0.010440170764923096, -0.02771013230085373, -0.03306156024336815, 0.022725239396095276, -0.028785303235054016, -0.034161169081926346, 0.01397724449634552, -0.0049696192145347595, -0.03347696736454964, 0.0022435064893215895, 0.01862003467977047, 0.012010167352855206, -0.0033049341291189194, -0.030349191278219223, -0.04757639020681381, 0.013574054464697838, -0.03005596250295639, 0.0754086971282959, -0.021136917173862457, -0.012340049259364605, -0.008289825171232224, 0.015455606393516064, 0.02083146944642067, -0.04119865968823433, -0.000784998235758394, 0.014832495711743832, 0.005763780791312456, -0.004038006532937288, 0.002046493347734213, -0.010049198754131794, 0.03440552577376366, 0.012089583091437817, 0.052292488515377045, -0.015321210026741028, -0.008179864846169949, -0.011173242703080177, -0.013134211301803589, -0.0052811745554208755, -0.010965539142489433, 0.031375493854284286, 0.032230742275714874, -0.029225148260593414, 0.042762547731399536, 0.02961611934006214, 0.05889013782143593, 0.003619544208049774, -0.03425890952348709, 0.0351630337536335, -0.02746577374637127, -0.017056148499250412, 0.061187099665403366, 0.0193531084805727, 0.028540946543216705, 0.04393546283245087, -0.04681888222694397, 0.025046635419130325, -0.01019581314176321, 0.025999629870057106, -0.01030577439814806, -0.0008644143817946315, -0.0032713350374251604, -0.005623274948447943, 0.02372710593044758, 0.03677579015493393, 0.01515015959739685, 0.0016555215697735548, -0.04168737679719925, 0.07575079798698425, 0.009419978596270084, -0.013207518495619297, 0.0012042239541187882, -0.025950757786631584, 0.014502612873911858, 0.013903937302529812, -0.035260774195194244, -0.036042720079422, -0.038339678198099136, -0.03325704485177994, 0.01870555989444256, 0.021479018032550812, -0.016933968290686607, -0.020916994661092758, -0.028296589851379395, -0.04725872352719307, -0.01515015959739685, 0.0038791741244494915, -0.010189704596996307, -0.05678866431117058, -0.03374575823545456, 0.010434062220156193, -0.018229063600301743, -0.04772300273180008, -0.02932289056479931, 0.008601381443440914, 0.0022862690966576338, 0.02045271545648575, -0.02293294295668602, -0.03357470780611038, -0.0049848915077745914, -0.01899878866970539, 0.0014699626481160522, -0.03677579015493393, 0.009291690774261951, -0.0036684158258140087, -0.09671666473150253, 0.028540946543216705, 0.016726264730095863, 0.006072281859815121, 0.057668350636959076, 0.02585301548242569, -0.015186813659965992, 0.013855066150426865, 0.04650121554732323, 0.009426087141036987, -0.02003730833530426, -0.022615280002355576, -0.04288472607731819, 0.0036684158258140087, -0.0006506016361527145, -0.02560865692794323, -0.00606006383895874, 0.007092474028468132, 0.00824706256389618, 0.016481908038258553, 0.013268607668578625, -0.008644144050776958, 0.03689797222614288, 0.03252397105097771, 0.0729651227593422, -0.03912162408232689, -0.011845225468277931, 0.049775607883930206, 0.04789405316114426, 0.08264167606830597, 0.058157067745923996, -0.027148108929395676, 0.002521463204175234, -0.03697127848863602, -0.020354973152279854, 0.0030391954351216555, -0.012168999761343002, -0.029420632869005203, -0.0244357418268919, -0.010134723968803883, -0.009755969978868961, 0.03540739044547081, -0.02983604185283184, 0.054638318717479706, -0.014123858883976936, -0.021307967603206635, 0.02768569625914097, 0.05805932357907295, -0.0010591367026790977, 0.0005803488893434405, 0.048333898186683655, 0.01720276288688183, 0.015418953262269497, -0.026439473032951355, 0.00947495922446251, -0.004352616611868143, -0.032743893563747406, -0.02143014594912529, -0.02494889311492443, -0.004315963014960289, -0.012511099688708782, -0.03421003744006157, -0.00843643955886364, 0.013390786945819855, 0.03164428472518921, -0.03535851836204529, 0.00634718406945467, -0.026463909074664116, -0.007110801059752703, 0.00468860799446702, -0.05165715888142586, 0.02200438641011715, -0.011075500398874283, -0.017630387097597122, -0.015174595639109612, -0.04523056000471115, 0.014184948056936264, 0.03142436593770981, 0.002610042691230774, -0.03987913206219673, 0.017190543934702873, 0.033208172768354416, -0.03802201524376869, 0.00028196556377224624, 0.003833357011899352, -0.04051446169614792, 0.0007303996244445443, 0.00872355978935957, -0.0008010341553017497, 0.07047268003225327, 0.0053422641940414906, -0.0029918511863797903, -0.002141181845217943, -0.009896475821733475, 0.014637009240686893, 0.003191918833181262, 0.008613599464297295, 0.038095321506261826, 0.011405382305383682, 0.007251306436955929, 0.013366350904107094, 0.01605428196489811, -0.0016677393577992916, -0.010098069906234741, -0.006866443436592817, -0.0014325453666970134, -0.015871014446020126, -0.008802976459264755, 0.030227012932300568, 0.015125724487006664, -0.024008115753531456, 0.001960968365892768, -0.026366164907813072, -0.03628707677125931, 0.016249768435955048, 0.023385005071759224, -0.022908508777618408, 0.01270658615976572, -0.007862200029194355, -0.002248088363558054, -0.03728894144296646, -0.006286094430834055, 0.02658608742058277, 0.014209384098649025, 0.070326067507267, 0.02675713784992695, -0.0025565894320607185, -0.014539266936480999, 0.028540946543216705, -0.0031461017206311226, -0.03467431664466858, 0.0002894108183681965, -0.0062311142683029175, 0.009859821759164333, -0.00791718065738678, -0.01350074727088213, 0.009957564994692802, -0.006130316760390997, 0.04745421186089516, 0.004465631674975157, 0.02959168329834938, -0.03543182462453842, 0.003970807883888483, 0.019169839099049568, 0.008937372826039791, 0.016665175557136536, 0.016909534111618996, -0.03333035111427307, -0.020843688398599625, 0.020440498366951942, -0.0056263296864926815, -0.034356653690338135, 0.018094666302204132, -0.015785489231348038, -0.01317086536437273, 0.004294581711292267, -0.015797706320881844, -0.04430200159549713, -0.0076056248508393764, -0.024875584989786148, -0.0068358988501131535, -0.010415734723210335, -0.01563887484371662, -0.03118000738322735, -0.011643631383776665, 0.0021793628111481667, -0.0014607992488890886, -0.049726735800504684, 0.004108258988708258, -0.01186355296522379, -0.04476628080010414, 0.010501259937882423, -0.027294723317027092, 0.036678049713373184, -0.036922406405210495, -0.0059989746659994125, 0.0025016090366989374, -0.011649739928543568, -0.0009109950042329729, -0.047185417264699936, -0.013109775260090828, 0.015443389303982258, 0.0005578221753239632, 0.030593549832701683, -0.03636038303375244, 0.024044770747423172, -0.041785117238759995, 0.03193751350045204, -0.011442036367952824, 0.0018525347113609314, 0.0013523655943572521, 0.008961807936429977, -0.0024130295496433973, -0.00045244302600622177, 0.03149767220020294, 0.014160512015223503, 0.011051064357161522, -0.0004291527147870511, -0.0071046920493245125, 0.011747483164072037, 0.04454635828733444, 0.0007258179248310626, -0.0050734709948301315, -0.022480882704257965, 0.00781943742185831, 0.006738156080245972, -0.018461203202605247, -0.0019304236629977822, 0.022590843960642815, 0.02937176264822483, -0.017019493505358696, 0.03990356624126434, 0.001721192616969347, 0.02514437772333622, -0.028565382584929466, -0.0016356675187125802, -0.015296774916350842, -0.007733912207186222, -0.002884944900870323, 0.014746970497071743, 0.03252397105097771, -0.01479584164917469, 0.025681965053081512, -0.005076525267213583, -0.022126564756035805, 0.003912772983312607, 0.014050551690161228, 0.011368729174137115, -0.037875398993492126, -0.004706935025751591, -0.016139807179570198, -0.008619708009064198, 0.060649510473012924, 0.03100895695388317, 0.0011851334711536765, 0.0030468315817415714, -0.009859821759164333, 0.01094721257686615, 0.00010394735727459192, 0.02888304740190506, -0.021369056776165962, 0.010458497330546379, 0.004367888905107975, -0.010855578817427158, -0.0030208686366677284, -0.019133185967803, -0.04520612210035324, -0.027905616909265518, 0.006426600273698568, -0.010916667990386486, 0.028052231296896935, -0.0027306941337883472, -0.008222627453505993, -0.012223979458212852, -0.004948237910866737, -0.026415036991238594, 0.007013057824224234, -0.01314642932265997, -0.03523634001612663, 0.032743893563747406, -0.009193947538733482, -0.004957401193678379, 0.01618867926299572, 0.0027032040525227785, 0.021246878430247307, -0.02585301548242569, 0.023409441113471985, 0.023604927584528923, -0.0152601208537817, -0.0034118404146283865, 0.021088045090436935, 0.005672146566212177, 0.024447958916425705, 0.006212787237018347, -0.05698414891958237, -0.03003152646124363, -0.0008674688288010657, -0.019475286826491356, -0.0003947899676859379, -0.043911028653383255, 0.021161353215575218, -0.00791718065738678, -0.021259095519781113, 0.007330722641199827, -0.046476781368255615, -0.002764293225482106, -0.026610523462295532, -0.00358289061114192, 0.024692317470908165, -0.011747483164072037, 0.029518377035856247, -0.04308021441102028, 0.0011186988558620214, -0.04918915033340454, 0.008851847611367702, -0.03904831409454346, 0.009273364208638668, 0.014172730036079884, -0.011979622766375542, -0.007550644222646952, 0.0050368173979222775, -0.02110026404261589, -0.0313999280333519, 0.002252670004963875, 0.0036592523101717234, -0.0015654147136956453, 0.01442930568009615, 0.012462228536605835, 0.005950103048235178, -0.05390524864196777, -0.01640859991312027, -0.05004439875483513, -0.020819252356886864, 0.003799757920205593, -0.021136917173862457, 0.016042064875364304, 0.010996083728969097, -0.004893257282674313, -0.018326805904507637, -0.052976690232753754, -0.011564214713871479, -0.027661260217428207, -0.0225541889667511, 0.019536375999450684, -0.021369056776165962, -0.026463909074664116, 0.03284163773059845, -0.01030577439814806, -0.027807874605059624, -0.020953649654984474, 0.006738156080245972, 0.02085590548813343, 0.008216517977416515, -0.03904831409454346, -0.022016603499650955, 0.004325126297771931, -0.049311328679323196, -0.02700149454176426, 0.014856930822134018, 0.012260633520781994, -0.050191015005111694, 0.012260633520781994, 0.031986385583877563, -0.016249768435955048, -0.012266742065548897, -0.02047715149819851, -0.02413029596209526, 0.02306734025478363, 0.019670771434903145, -0.06240888684988022, 0.00797216035425663, -0.002826910000294447, -0.004126586019992828, -0.005440006963908672, 0.025486478582024574, 0.020354973152279854, 0.035798363387584686, -0.03047136962413788, -0.009865931235253811, -0.012535535730421543, 0.002837600652128458, -0.011154916137456894, -0.018192410469055176, 0.03748442977666855, -0.03093564882874489, 0.01883995719254017, 0.00022851236280985177, 0.05522477626800537, -0.01569996401667595, -0.04464409872889519, -0.008693015202879906, 0.012853200547397137, -0.021442363038659096, 0.03313486650586128, -0.0008392150048166513, -0.006579323671758175, -0.001301203272305429, 0.0067320470698177814, 0.003387404838576913, -0.02702593058347702, 0.02350718341767788, 0.011564214713871479, 0.0036134354304522276, 0.04545047879219055, -0.034820932894945145, -0.030446933582425117, -0.0068358988501131535, -0.008601381443440914, -0.0005467497394420207, -0.015553349629044533, 0.008338697254657745, -0.0004795514396391809, 0.03423447534441948, -0.02107582800090313, -0.0012668404961004853, -0.011686393991112709, -0.014136076904833317, 0.014001680538058281, -0.06294646859169006, -0.022835200652480125, -0.018607817590236664, -0.0054613882675766945, 0.010140832513570786, 0.010214139707386494, -0.027856746688485146, 0.014148294925689697, 0.0005818760837428272, -0.015162377618253231, -0.041320838034152985, 0.009688771329820156, 0.007538426201790571, -0.025217685848474503, -0.008705233223736286, 0.05610446259379387, 0.019560812041163445, 8.395013719564304e-05, -0.019047660753130913, -0.02494889311492443, -0.02705036662518978, 0.04122309759259224, 0.04752751812338829, 0.03702015057206154, 0.0316198505461216, -0.03655587136745453, 0.045743707567453384, 0.03704458475112915, 0.004062442108988762, 0.014368216507136822, -0.0247656237334013, -0.042713675647974014, 0.0517549030482769, 0.02890748344361782, 0.024142513051629066, 0.0030208686366677284, 0.003885282902047038, -0.02915184013545513, -0.006209732964634895, 0.03987913206219673, -0.034601010382175446, 0.0054094623774290085, 0.008851847611367702, 0.013818412087857723, 0.01527233887463808, -0.03005596250295639, 0.017459338530898094, -0.009713207371532917, -0.0019731861539185047, 0.01610315404832363, 0.011002193205058575, 0.014172730036079884, 0.005381972063332796, -0.027416901662945747, 0.014294909313321114, 0.02238314040005207, -1.0487801773706451e-05, -0.0019456959562376142, -0.012211762368679047, 0.043446749448776245, -0.0027230579871684313, 0.007593406829982996, -0.012840982526540756, 0.03965920954942703, -0.01193075068295002, 0.015113506466150284, -0.00918783899396658, -0.008784648962318897, 0.006044791545718908, 0.02459457516670227, -0.016384165734052658, -0.02538873627781868, 0.009896475821733475, 0.028272153809666634, 0.001444763271138072, 0.032695021480321884, 0.033623579889535904, -0.009762078523635864, 0.021931078284978867, 0.009933128952980042, 0.017728131264448166, 0.009310017339885235, 0.002307650400325656, 0.05141280218958855, -0.0024848096072673798, 0.02202882058918476, -0.00017744548677001148, -0.026097372174263, -0.024154730141162872, -0.003055994864553213, -0.024069204926490784, -0.011063282378017902, 0.007764456793665886, -0.0008575418032705784, 0.0008010341553017497, -0.009975891560316086, 0.003836411517113447, 0.04593919590115547, -0.002373321447521448, -0.017569297924637794, -0.006420491263270378, -0.0017777002649381757, 0.00588290486484766, 0.014514830894768238, -0.010580676607787609, 0.029054097831249237, 0.019475286826491356, 0.012486664578318596, -0.05893900990486145, 0.007611733395606279, 0.026243986561894417, -0.006945859640836716, 0.026195114478468895, -0.013427440077066422, -0.0005093325162306428, -0.0025077180471271276, -0.009132858365774155, 0.060893867164850235, 0.032010823488235474, -0.0263172946870327, 0.023372787982225418, -0.019964002072811127, -0.010263011790812016, 0.02257862500846386, -0.01760595291852951, -0.012755457311868668, 0.024203602224588394, 0.0036225987132638693, 0.002513827057555318, -0.008974025957286358, 0.024289127439260483, 0.0024359379895031452, -0.008338697254657745, 0.020550459623336792, -0.0012660769280046225, 0.03335478901863098, 0.03565174713730812, 0.0005272774724289775, -0.009328344836831093, -0.029713861644268036, 0.009982001036405563, 0.009694880805909634, 0.039732515811920166, 0.04664783179759979, 0.029738297685980797, 0.020489370450377464, 0.012511099688708782, -0.0041632396169006824, 0.03423447534441948, 0.017068365588784218, -0.008534182794392109, 0.04848051071166992, -0.0086258165538311, 0.0025520077906548977, 0.01848563924431801, -0.005366699770092964, -0.0010148469591513276, 0.0055744037963449955, -0.031815335154533386, -0.01128931250423193, -0.06055177003145218, 0.01523568481206894, -0.020220575854182243, -0.012315614148974419, -0.016824008896946907, 0.0351630337536335, 0.009615464136004448, 0.002041911706328392, 0.03557844087481499, 0.008778540417551994, 0.02817440964281559, 0.004031897522509098, 0.02479005977511406, 0.026732701808214188, 0.014746970497071743, 0.007147454656660557, -0.0172516331076622, 0.013293043710291386, 0.02399589866399765, -0.0005246048094704747, 0.01350074727088213, 0.0027001495473086834, -0.0086258165538311, 0.017862526699900627, 0.04496176540851593, -0.03943928703665733, 0.018742214888334274, -0.014685881324112415, 0.01736159436404705, -0.03611602634191513, -0.006921424064785242, 0.007697258610278368, 0.021259095519781113, 0.003283552825450897, -0.014160512015223503, -0.006402164231985807, 0.049506813287734985, -0.026146244257688522, 0.007526208646595478, -0.020660419017076492, -0.020978083834052086, 0.004389270208775997, -0.03677579015493393, -0.012101801112294197, -0.01480805967003107, 0.02658608742058277, -0.02981160581111908, 0.006038682535290718, 0.009261146187782288, 0.026097372174263, 0.009261146187782288, -0.013928373344242573, 0.0007074910681694746, -0.0152601208537817, 0.015064635314047337, 0.013720668852329254, -0.003637871006503701, 0.016530780121684074, 0.016225332394242287, 0.018351241946220398, -0.036238204687833786, -0.037117891013622284, -0.031839773058891296, 0.005210922099649906, -0.023470530286431313, 0.01434378046542406, -0.0018403168069198728, -0.009462741203606129, -0.00485965795814991, -0.025755271315574646, -0.009920910932123661, 0.0004470977291930467, 0.0101163974031806, 0.024826714769005775, 0.013891719281673431, 1.8219423509435728e-05, -0.015308992005884647, -0.04479071497917175, 0.02293294295668602, -0.013855066150426865, -0.004575592465698719, 0.0003735995851457119, -0.015626657754182816, 0.015076852403581142, -0.009401652030646801, 0.029396196827292442, 0.014856930822134018, -0.034283347427845, -0.05028875544667244, 0.03149767220020294, 0.003601217409595847, -0.009004570543766022, 0.003524855710566044, -0.014856930822134018, 0.046696703881025314, 0.008045468479394913, 0.014026115648448467, 0.026268422603607178, -0.048065103590488434, 0.045059509575366974, -0.007959943264722824, -0.010287447832524776, -0.008253172039985657, 0.04354449361562729, -0.012352267280220985, -0.022639714181423187, -0.013830630108714104, 0.011490907520055771, 0.037826526910066605, 0.011619195342063904, 0.019169839099049568, -0.011613086797297001, 0.027587952092289925, 0.022236526012420654, -0.045523788779973984, -0.021356837823987007, -0.010311882942914963, -0.008680797182023525, 0.008754104375839233, 0.01862003467977047, 0.025462042540311813, -0.00010681091953301802, -0.020159486681222916, -0.019133185967803, 0.004829113371670246, 0.06856669485569, -0.005320882890373468, -0.0036103809252381325, -0.028565382584929466, -0.030373627319931984, -0.00468249898403883, -0.01731272228062153, 0.06221339851617813, 0.005748508498072624, -0.05072860047221184, 0.024802278727293015, 0.0015341064427047968, 0.00810655765235424, 0.016811789944767952, 0.0076422784477472305, 0.008949590846896172, -0.012089583091437817, -0.011564214713871479, 0.05586010590195656, 0.024851148948073387, 0.019634118303656578, 0.0012775311479344964, -0.005989811383187771, -0.001728828763589263, -0.014685881324112415, 0.013879501260817051, 0.022407574579119682, 0.009786514565348625, -0.02937176264822483, 0.02219987101852894, -0.05444283410906792, 0.006933641619980335, -0.01594432070851326, 0.015577785670757294, -0.000365008891094476, -0.018131321296095848, 0.003491256618872285, 0.01665295846760273, -0.0025626984424889088, -0.041540760546922684, -0.0020877288188785315, 0.01870555989444256, -0.02069707401096821, 0.00681146327406168, -0.014685881324112415, -0.009627682156860828, 0.014820277690887451, -0.006683175452053547, -0.032963816076517105, -0.00422432878986001, 0.0031644285190850496, -0.00014537357492372394, 0.0029842150397598743, 0.0063960556872189045, -0.01815575547516346, 0.020819252356886864, -0.020672637969255447, -0.012731021270155907, 0.015980975702404976, 0.016799572855234146, -0.0200128722935915, 0.00652434304356575, -0.02932289056479931, -0.018791085109114647, -0.028003361076116562, 0.007697258610278368, -0.038266371935606, -0.030446933582425117, 0.013231954537332058, -0.0069397506304085255, -0.027343595400452614, 0.006854225415736437, -0.012456119060516357, 0.02607293613255024, -0.027368031442165375, -0.02003730833530426, -0.012963160872459412, 0.02890748344361782, -0.03939041495323181, -0.0022221251856535673, 0.00588901387527585, 0.009713207371532917, 0.0018769704038277268, -0.015504478476941586, -0.006035628262907267, 0.02419138513505459, 0.01689731515944004, 0.0196829903870821, -0.01113658957183361, -0.0011561160208657384, 0.009810950607061386, -0.03611602634191513, -0.015431171283125877, -0.03208412975072861, 0.01049515139311552, -0.006194460671395063, -0.018607817590236664, -0.008112666197121143, 0.004716098308563232, 0.003585945116356015, -0.028589818626642227, 0.02607293613255024, 0.011631413362920284, -0.032304052263498306, -0.02724585309624672, -0.012456119060516357, -0.004642791114747524, 0.004832168109714985, 0.010458497330546379, -0.024961110204458237, -0.013390786945819855, -0.03682466223835945, 0.035969413816928864, -0.04474184289574623, 0.01187577098608017, -0.0049696192145347595, 0.004028842784464359, -0.0490914061665535, -0.021552324295043945, 0.003726450726389885, -0.004190729930996895, 0.011338184587657452, -0.03213300183415413, -0.005107069853693247, -0.024411305785179138, 0.053709760308265686, -0.010311882942914963, 0.0021320185624063015, 0.017239416018128395, 0.015577785670757294, 0.040636640042066574, -0.04308021441102028, 0.020489370450377464, 0.010324100963771343, 0.0027474937960505486, -0.01883995719254017, 0.011069390922784805, 0.0008262335322797298, 0.0014928710879758, 0.02140570990741253, -0.0035737273283302784, 0.016469690948724747, 0.00396469933912158, -0.030789034441113472, -0.016139807179570198, -0.008014922961592674, -0.006273876875638962, 0.03721563518047333, 0.04584145173430443, -0.000683818943798542, -0.03489423915743828, -0.005440006963908672, -0.016005411744117737, -0.0409054309129715, -0.008686906658113003, -0.02459457516670227, 0.02819884568452835, -0.035260774195194244, 0.0021976896096020937, -0.025804143399000168, 0.019450850784778595, 0.02306734025478363, 0.006432709284126759, -0.006560996640473604, 0.004465631674975157, 0.03191307932138443, -0.002823855495080352, -0.040392279624938965, 0.014563702046871185, 0.008143210783600807, -0.0200128722935915, 0.02961611934006214, 0.02751464582979679, 0.02372710593044758, -0.007611733395606279, -0.00698251323774457, -0.008882392197847366, -0.01818019151687622, -0.0062311142683029175, 0.0063349660485982895, 0.021955514326691628, -0.0022312887012958527, 0.018106885254383087, 0.021796680986881256, 0.024118077009916306, -0.04073438048362732, -0.02339722216129303, -0.0058065433986485004, 0.020916994661092758, 0.030813470482826233, 0.00935277994722128, -0.019634118303656578, -0.02260306105017662, 0.014722534455358982, -0.00955437496304512, 0.0049238018691539764, 0.008466984145343304, 0.003934154286980629, 0.014624791219830513, -0.003228572430089116, 0.002289323601871729, 0.008509746752679348, -0.020916994661092758, 0.0010186650324612856, 0.056299950927495956, 0.014637009240686893, 0.003298825118690729, -0.007911071181297302, 0.015333428047597408, 0.004166293889284134, -0.01722719892859459, 0.004181566182523966, -0.04613468050956726, 0.013268607668578625, 0.007226870860904455, -0.0023275043349713087, -0.012083474546670914, -0.023030687123537064, 0.001979295164346695, -0.015321210026741028, -0.0025962975341826677, 0.018131321296095848, -0.013574054464697838, 0.016261985525488853, 0.030789034441113472, -0.003903609700500965, 0.009444414637982845, -0.04943350702524185, 0.004206002224236727, 0.016714047640562057, 0.00990869291126728, -0.00027872019563801587, 0.02582857944071293, -0.0023198681883513927, 0.016995059326291084, -0.002329031703993678, 0.020135050639510155, -0.010782270692288876, -0.008143210783600807, 0.018913263455033302, -0.04075881838798523, 0.010354645550251007, -0.008375350385904312, 0.02983604185283184, -0.020330537110567093, 0.006298312451690435, -0.006316639482975006, -0.0033293699380010366, -0.012150672264397144, -0.03008039854466915, 0.0011293893912807107, -0.024985546246170998, -0.00761784240603447, -0.02047715149819851, -0.014979110099375248, -0.006200569681823254, -0.00745290145277977, -0.01771591231226921, -0.01826571673154831, 0.014368216507136822, -0.017923615872859955, 0.03298825025558472, 0.001783809158951044, -0.041785117238759995, 0.011680284515023232, 0.01434378046542406, 0.025730837136507034, 0.009646008722484112, -0.05102182924747467, 0.007116910070180893, 0.009951455518603325, 0.0015913776587694883, 0.021711157634854317, -0.03164428472518921, -0.0016921751666814089, -0.004621409811079502, -0.03508972376585007, 0.013268607668578625, 0.04454635828733444, 0.011240441352128983, -0.03677579015493393, -0.009053442627191544, -0.015101288445293903, -0.005687418859452009, -0.017618170008063316, 0.022322049364447594, 0.026390600949525833, -0.005827924236655235, -0.0007055820315144956, -0.002602406544610858, -0.013476312160491943, 0.008528074249625206, -0.019157622009515762, 0.013354132883250713, 0.009193947538733482, -0.007287960033863783, -0.038999445736408234, 0.01793583482503891, -0.002277105813845992, -0.01352518331259489, -0.006475471425801516, 0.015675527974963188, -0.006493798457086086, 0.001765482360497117, -0.03100895695388317, -0.030837906524538994, -0.009499394334852695, -0.01777700148522854, 0.02607293613255024, -0.0015264702960848808, 0.006658739876002073, -0.02424025535583496, 0.02817440964281559, 0.009273364208638668, 0.012492773123085499, 0.004951292183250189, -0.0075811888091266155, -0.011435926891863346, 0.002613097196444869, 0.009462741203606129, -0.020843688398599625, -0.03606715425848961, -0.009230601601302624, -0.01711723767220974, -0.0013584744883701205, -0.007410138845443726, 0.01665295846760273, 0.015199031680822372, -0.01239502988755703, 0.025730837136507034, -0.0068358988501131535, 0.07594628632068634, 0.00022564880782738328, -1.9567683921195567e-05, -0.015113506466150284, 0.00079263438237831, 0.025437606498599052, -0.005864578299224377, -0.005385026801377535, 0.002409975044429302, -0.00028597452910616994, -0.023959245532751083, -0.00020140396372880787, 0.016726264730095863, -0.017618170008063316, 0.008204299956560135, -0.033648017793893814, -0.010745617561042309, 0.0035004201345145702, 0.008796866983175278, 0.001050736871547997, 0.0200128722935915, -0.01113658957183361, 0.024509049952030182, -0.013366350904107094, -0.038779523223638535, 0.02014726959168911, 0.049311328679323196, 0.031766463071107864, -0.013537401333451271, -0.007465119007974863, 0.03445439785718918, 0.026488345116376877, 0.04520612210035324, -0.017276069149374962, 0.028223281726241112, 0.0034851476084440947, 0.02375154197216034, 0.014417087659239769, 0.0041113137267529964, 0.01888882927596569, -0.009450523182749748, -0.04044115170836449, 0.020073961466550827, -0.015846578404307365, -0.00085143290925771, 0.01791139878332615, -0.02045271545648575, -0.014966892078518867, -0.009798732586205006, -0.026415036991238594, 0.03675135597586632, -0.027319159358739853, -0.016371946781873703, 0.02437465265393257, -0.009511612355709076, 0.025681965053081512, 0.016665175557136536, -0.013121993280947208, 0.019316453486680984, -0.013684015721082687, 0.05077747255563736, -0.013598490506410599, -0.021234659478068352, -0.0038394660223275423, 0.014221602119505405], [0.06905214488506317, 0.0425914004445076, 0.026553185656666756, 0.017505690455436707, -0.013761898502707481, 0.006337868515402079, -0.006545857060700655, 0.002699516015127301, 0.0281708724796772, 0.02696916274726391, -0.009457694366574287, -0.026391416788101196, 0.0004105604311916977, 0.0157840084284544, -0.023548908531665802, 0.0004300593282096088, 0.013322812505066395, -0.012132656760513783, -0.00048061207053251565, 0.05232063680887222, 0.040650177747011185, 0.03526558727025986, -0.02738513983786106, 0.011202486231923103, 0.025004826486110687, -0.01056696567684412, 0.02664562501013279, -0.012513968162238598, -0.0021058826241642237, -0.03380966931581497, 0.03949468582868576, -0.019215816631913185, 0.014536078087985516, -0.061009928584098816, 0.06350579112768173, -0.005803454201668501, 0.007400920614600182, 0.023375585675239563, 0.010584298521280289, 0.02344491519033909, -0.045087262988090515, 0.010936723090708256, -0.013507691211998463, -0.04467128589749336, -0.03032008558511734, 0.05929980427026749, -0.00012620129564311355, -0.04104304313659668, -0.04430152848362923, 0.03367101028561592, 0.028725508600473404, 0.05819053202867508, -0.011890003457665443, -0.007655128370970488, 0.03145246580243111, 0.024242203682661057, -0.020879724994301796, 0.025998549535870552, -0.00948658213019371, -0.01773678883910179, 0.010249205864965916, -0.021168597042560577, -0.03540424630045891, 0.0008514525252394378, 0.02495860680937767, -0.005757234524935484, -0.01943536102771759, 0.03776144981384277, -0.0438162237405777, 0.04469439387321472, -0.01562223955988884, -0.013137933798134327, -0.03110582008957863, -0.012698846869170666, -0.07210264354944229, 0.030874721705913544, 0.05162734165787697, 0.02127259038388729, 0.03826986625790596, -0.016581296920776367, -0.009694570675492287, 0.009168822318315506, -0.0295343529433012, 0.020117100328207016, 0.00987944845110178, 0.02373378723859787, -0.05010209232568741, -0.045387689024209976, -0.003244041232392192, -0.015680015087127686, -0.004439974669367075, 0.01839541830122471, -0.03843163326382637, 0.053661007434129715, 0.004229097627103329, -0.01591111160814762, 0.01930825598537922, 0.010665182955563068, -0.033278144896030426, 0.051997099071741104, 0.005996998865157366, -0.00681739766150713, -0.08023729920387268, 0.05176600068807602, 0.09082160145044327, -0.015183152630925179, -0.05523247271776199, -0.014096991159021854, -0.017494134604930878, 0.0068578398786485195, 0.0536147877573967, 0.0032267088536173105, 0.015853337943553925, 0.05222819745540619, 0.02126103639602661, 0.0030793838668614626, 0.016003550961613655, -0.008712402544915676, -0.04071950539946556, -0.025767451152205467, -0.05148868262767792, 0.014131655916571617, 0.01729770191013813, -0.05874516814947128, 0.03510382026433945, 0.008348423056304455, 0.013230373151600361, 0.016176875680685043, -0.007152489852160215, -0.023075157776474953, 0.034364305436611176, -0.03494204953312874, 0.059946879744529724, -0.02298271842300892, -0.014374309219419956, 0.008775955066084862, 0.016916390508413315, 0.007984443567693233, -0.005768789444118738, -0.006170322652906179, 0.02800910361111164, 0.004694182425737381, 0.057035040110349655, 0.021203260868787766, -0.026899833232164383, -0.008440862409770489, -0.007476027589291334, 0.009694570675492287, 0.011404696851968765, 0.03843163326382637, -0.02588300034403801, -7.776996790198609e-05, 0.004523747600615025, 0.021700123324990273, -0.012063327245414257, -0.06748068332672119, 0.012201986275613308, 0.04765245318412781, -0.009457694366574287, 0.010572743602097034, -0.07658594846725464, -0.010896281339228153, -0.05342990905046463, -0.06017797812819481, 0.0037755670491605997, -0.047375135123729706, -0.032700397074222565, 0.025605682283639908, -0.016338644549250603, -0.01292994525283575, -0.012040217407047749, 0.0076493509113788605, -0.05056428909301758, -0.012028662487864494, -0.00819243211299181, -0.0361899808049202, 0.002647518878802657, 0.019319811835885048, -0.0023918666411191225, 0.015448915772140026, 0.02662251517176628, 0.04640452191233635, -0.012167321518063545, -0.046473853290081024, 0.026553185656666756, 0.05990066006779671, 0.009579021483659744, -0.06327468901872635, -0.048900384455919266, -0.029164595529437065, 0.009561688639223576, 0.018776729702949524, -0.00910526979714632, 0.06891348958015442, -0.03565845638513565, 0.005921891890466213, -0.03015831671655178, -0.0009756677900440991, 0.04344646632671356, -0.008071104995906353, 0.034710951149463654, -0.009197709150612354, -0.0013085936661809683, 0.01223665103316307, -0.05218197777867317, 0.013542355969548225, 0.057358577847480774, 0.035150039941072464, 0.015864891931414604, 0.030135206878185272, -0.007117825094610453, 0.000163032571435906, -0.05740479752421379, 0.05269039422273636, -0.04120481386780739, 0.005572355818003416, 0.027916664257645607, 0.018118100240826607, 0.0022936498280614614, 0.046936050057411194, -0.022150764241814613, -0.027616236358880997, 0.015691569074988365, -0.026090988889336586, -0.01834919862449169, -0.02237030677497387, -0.04487927258014679, -0.030689842998981476, -0.007221819367259741, -0.022404972463846207, 0.016107546165585518, 0.07274971902370453, -0.029511243104934692, -0.03616687282919884, 0.03348613157868385, 0.03274661675095558, -0.039263587445020676, -0.02038286253809929, 0.001541136298328638, -0.039725784212350845, -0.006060550920665264, 0.03196088224649429, -0.003972000442445278, -0.04178255796432495, 0.017089713364839554, 0.005063939839601517, 0.009885226376354694, -0.036213092505931854, 0.05384588614106178, -0.03979511186480522, -0.006488082464784384, -0.01056696567684412, 0.02632208727300167, -0.03995688259601593, 0.012860615737736225, 0.01141047477722168, 0.06868238747119904, -0.01957402005791664, -0.00041669898200780153, -0.022578295320272446, 0.01516004279255867, -0.030574293807148933, 0.0025189705193042755, -0.019989995285868645, -0.022150764241814613, -0.014420528896152973, -0.002872839802876115, -0.013057049363851547, -0.021642347797751427, 0.019666457548737526, -0.024080434814095497, 0.02064862661063671, 0.03394832834601402, -0.01623464934527874, -0.01853407733142376, 0.004832841455936432, 0.039887551218271255, -0.049085263162851334, 0.025166595354676247, 0.03489582985639572, -0.049362581223249435, -0.054585400968790054, -0.011202486231923103, -0.04349268600344658, 0.0063320910558104515, -0.02111082151532173, 0.028679288923740387, -0.011612685397267342, 0.009319035336375237, 0.00025186093989759684, 0.050934046506881714, -0.031128929927945137, -0.03956401348114014, -0.02098371833562851, 0.020452192053198814, -0.005474139004945755, -0.04802221059799194, 0.04779111221432686, -0.025605682283639908, -0.003818897996097803, -0.04848440736532211, 0.03914804011583328, 0.02860995940864086, 0.01700882986187935, -0.04963989928364754, 0.0352424792945385, 0.020914388820528984, 0.043700672686100006, -0.002898838371038437, -0.021053047850728035, -0.0333474725484848, 0.015113823115825653, 0.015472025610506535, -0.06345956772565842, -0.015737788751721382, 0.01915804296731949, -0.017863892018795013, 0.0180949904024601, -0.005615686532109976, 0.023144487291574478, 0.0342949740588665, 0.0006181877106428146, -0.011081160046160221, -0.01438586413860321, -0.005508803762495518, -0.020613960921764374, -0.014940500259399414, 0.015703124925494194, -0.013969887048006058, -0.06198054179549217, -0.023306256160140038, -0.012733511626720428, 0.03200710192322731, 0.008238651789724827, -0.020140210166573524, -0.013657905161380768, 0.04742135480046272, 0.009030163288116455, 0.01187844853848219, -0.03977200388908386, -0.00018885057943407446, -0.009238150902092457, 0.02544391341507435, 0.004003776703029871, -0.020405972376465797, 0.04751379415392876, 0.048900384455919266, 0.03078228235244751, 0.009607908315956593, 0.01973578706383705, -0.003469361923635006, -0.009521246887743473, -0.0813927948474884, 0.010301203466951847, -0.061194807291030884, -0.019054047763347626, 0.0018834504298865795, -0.033601682633161545, 0.00896083377301693, 0.02114548720419407, -0.0073489234782755375, -0.04811464995145798, 0.020937498658895493, 0.022555185481905937, -0.007470250129699707, 0.035912662744522095, -0.022936498746275902, 0.03371722996234894, 0.04917770251631737, -0.040927495807409286, 0.05731235817074776, -0.019319811835885048, 0.037715230137109756, -0.044948603957891464, -0.011670459993183613, 0.03244619071483612, -0.05024075135588646, 0.026599405333399773, 0.010838506743311882, 0.02572123147547245, -0.017401695251464844, -0.023849336430430412, 0.0010334423277527094, 0.03226131200790405, 0.009180376306176186, -0.005032163579016924, -0.021203260868787766, 0.0041713230311870575, -0.02999654971063137, 0.02770867571234703, -0.005635907873511314, 0.0066209640353918076, 0.03508070856332779, 0.05943846330046654, -0.012479303404688835, 0.04467128589749336, 0.04407043009996414, 0.03930980712175369, -0.022150764241814613, -0.039425354450941086, 0.03494204953312874, -0.045249029994010925, -0.005315259099006653, 0.007458695210516453, 0.024219093844294548, 0.03445674479007721, 0.00536436727270484, -0.033902108669281006, 0.02800910361111164, 0.035589125007390976, 0.0020943277049809694, -0.020290423184633255, 0.010150989517569542, 0.0005618575378321111, -0.012005552649497986, -0.010376309975981712, 0.025305254384875298, 0.016511967405676842, 0.004887727554887533, -0.029927220195531845, 0.0688672661781311, -0.0033133707474917173, -0.03783077746629715, -0.007920891046524048, 0.022485855966806412, 0.004523747600615025, 0.010358978062868118, -0.009590576402842999, -0.06600165367126465, -0.0511651448905468, -0.045711226761341095, 0.029649902135133743, 0.0538921058177948, -0.008833729662001133, -0.014073881320655346, -0.032538630068302155, -0.045087262988090515, -0.00489639351144433, 0.013981441967189312, -0.02833264134824276, -0.07302703708410263, -0.03136003017425537, -0.0030938275158405304, -0.0023124264553189278, -0.01554135512560606, -0.011312257498502731, 0.023826226592063904, -0.03903248906135559, 0.02833264134824276, -0.008602631278336048, -0.022381862625479698, 0.012999274767935276, -0.04453262686729431, 0.01807188056409359, -0.005069717299193144, -0.005780344363301992, 0.036051321774721146, -0.03748413175344467, 0.018302978947758675, 0.03168356418609619, 0.0002637769503053278, 0.02740824967622757, 0.03655973821878433, -0.012121101841330528, 0.01339214202016592, 0.04205987602472305, 0.015495135448873043, -0.012825950980186462, -0.022924942895770073, -0.04099682345986366, -0.027523797005414963, 0.004974388983100653, -0.001393088954500854, -0.007920891046524048, 0.029465023428201675, -0.01977045275270939, 0.03956401348114014, -0.008562188595533371, 0.01838386245071888, 0.014281869865953922, 0.00673651322722435, 0.055833328515291214, -0.06295115500688553, -0.03598199412226677, 0.05569466948509216, 0.029673011973500252, 0.01141047477722168, 0.03138313814997673, -0.005907448008656502, 0.03152179718017578, -0.02127259038388729, -0.01929670199751854, 0.007325813639909029, -0.009948777966201305, -0.010930946096777916, -0.07552289962768555, 0.012248205952346325, -0.006632518954575062, 0.0036831279285252094, -0.0008095659432001412, 0.029927220195531845, -0.008614186197519302, -0.014824951067566872, 0.006199209950864315, 0.022439636290073395, 0.015368031337857246, -0.005043718498200178, 0.0060894382186234, -0.018302978947758675, -0.01155491080135107, -0.012745066545903683, 0.03813120722770691, -0.003281594719737768, -0.01193622313439846, -0.004301315639168024, -0.048761725425720215, -0.03778455778956413, 0.006488082464784384, -0.028517520055174828, -0.015495135448873043, -0.0043793111108243465, 0.025628792122006416, -0.012837505899369717, 0.0037293476052582264, -0.039587125182151794, -0.019250482320785522, 0.015830228105187416, -0.02710782177746296, 0.03427186608314514, 0.0014508635504171252, -0.008123102597892284, -0.03230753168463707, -0.017713679000735283, 0.016881724819540977, 0.0003791455237660557, -0.017494134604930878, -0.04360823333263397, 0.024380862712860107, 0.04071950539946556, -0.0489928238093853, 0.02326003648340702, -0.011722457595169544, -0.029511243104934692, 0.010480304248631, 0.010231873951852322, 0.022890279069542885, 0.045572567731142044, -0.0029205037280917168, 0.011970887891948223, 0.0030389416497200727, 0.00639564311131835, -0.010306980460882187, -0.021665457636117935, 0.013103269040584564, 0.006141435354948044, 0.019943775609135628, 0.017944777384400368, -0.012594852596521378, 0.0029233924578875303, -0.010104769840836525, -0.005685016047209501, 0.002131880959495902, -0.019816672429442406, -0.003807343076914549, -0.014859615825116634, 0.04360823333263397, -0.012248205952346325, 0.016870170831680298, 0.004130880814045668, -0.033301252871751785, -0.023849336430430412, 0.012363755144178867, 0.010226096026599407, -0.06091748923063278, 0.023352475836873055, 0.0028771727811545134, 0.062396518886089325, -0.012352200224995613, -0.028055323287844658, 0.044185981154441833, -0.0055405800230801105, 0.03260795772075653, 0.018799839541316032, 0.006892504170536995, -0.03154490515589714, 0.019319811835885048, -0.031498685479164124, -0.004910837393254042, 0.005754345562309027, 0.0011901558609679341, 0.013958332128822803, -0.014790286310017109, 0.005904559511691332, -0.013981441967189312, -0.0028685065917670727, 0.01929670199751854, -0.02678428404033184, 0.03521936759352684, -0.04129725322127342, 0.007539579179137945, -0.011439361609518528, -0.0004044218803755939, -0.021214816719293594, -0.012340645305812359, -0.03981822356581688, -0.006505414843559265, 0.003119825851172209, -0.03380966931581497, -0.0029132820200175047, 0.012132656760513783, 0.01868429034948349, 0.004361978732049465, 0.02205832488834858, -0.020325088873505592, -0.01225976087152958, 0.0001109451986849308, -0.036513518542051315, -0.01807188056409359, 0.012606407515704632, -0.03152179718017578, -0.025467023253440857, 0.00524304062128067, 0.012825950980186462, 0.002072662115097046, -0.029141485691070557, -0.01025498379021883, -0.008221318945288658, -0.02143435925245285, -0.013068604283034801, 0.020117100328207016, 0.021029938012361526, -0.011364255100488663, -0.02895660698413849, -0.004159768112003803, -0.03110582008957863, -0.032561738044023514, -0.0345722921192646, 0.0015671347500756383, 0.007320036180317402, -0.0023355362936854362, 0.019169596955180168, 0.018603406846523285, 0.05356856808066368, -0.04642763361334801, 0.044347748160362244, 0.0022806506603956223, 0.021538354456424713, 0.021850336343050003, 0.01009321492165327, 0.0127912862226367, -0.02692294307053089, -0.008065328001976013, -0.018938498571515083, -0.029973439872264862, 0.0025334141682833433, -0.004942613188177347, -0.0022402084432542324, 0.04404732212424278, -0.011913113296031952, 0.02253207564353943, -0.018915388733148575, -0.015217817388474941, 0.03337058424949646, -0.025675011798739433, -0.0010558300418779254, 0.01287217065691948, 0.0459885448217392, -0.00540192099288106, -0.0035300252493470907, -0.0009691681480035186, -0.02309826761484146, -0.013369032181799412, 0.010873171500861645, -0.01117359846830368, -0.01064207311719656, -0.0011518801329657435, 0.0009561688639223576, -0.00773023534566164, -0.009255483746528625, 0.052597954869270325, -0.03755345940589905, -0.05393832549452782, -0.015991996973752975, 0.029811671003699303, -0.0090186083689332, -0.015703124925494194, -0.025536352768540382, -0.025351474061608315, -0.007886226288974285, 0.03205332159996033, 0.021064601838588715, 0.012906835414469242, -0.027662456035614014, -0.019412251189351082, 0.0180949904024601, 0.019874446094036102, 0.023780006915330887, -0.03142935782670975, 0.019262036308646202, 0.05953090265393257, -0.017863892018795013, -0.0074933599680662155, -0.044347748160362244, -0.05338368937373161, -0.05999309942126274, 0.018337644636631012, -0.020151764154434204, 0.011150488629937172, 0.010457194410264492, -0.0025767451152205467, -0.01744791492819786, 0.006020108703523874, -0.051211364567279816, 0.021006828173995018, -0.02740824967622757, -0.03840852528810501, 0.008053773082792759, -0.043261587619781494, -0.003010054351761937, -0.0019874447025358677, -0.015448915772140026, 0.05523247271776199, -0.03572778403759003, -0.011162043549120426, 0.03364790230989456, 0.01223665103316307, -0.010977165773510933, 0.021053047850728035, -0.036837056279182434, 0.037276141345500946, 0.010405197739601135, -0.039587125182151794, -0.019100267440080643, 0.05324503034353256, -0.03676772490143776, -0.021480578929185867, -0.036051321774721146, 0.03600510209798813, 0.017840782180428505, -0.027362029999494553, 0.014813396148383617, -0.03510382026433945, -0.013449916616082191, -0.020475301891565323, 0.006505414843559265, 0.05111892521381378, 0.022150764241814613, 0.04208298400044441, -0.0342949740588665, 0.01141625177115202, -0.025952329859137535, 0.007019608281552792, -0.021214816719293594, -0.0004358367878012359, -0.003495360491797328, -0.009844783693552017, -0.005962334107607603, 0.0028699510730803013, -0.046936050057411194, -0.009238150902092457, -0.003995110280811787, 0.008619963191449642, 0.00021954330441076308, 0.03371722996234894, 0.03078228235244751, 0.013912112452089787, -0.046635620296001434, -0.0058872271329164505, -0.043885551393032074, -0.039425354450941086, -0.009197709150612354, -0.00643608532845974, -0.012433084659278393, -0.01149135921150446, -0.007487582508474588, -0.025790560990571976, -0.01713593304157257, 0.0019600018858909607, -0.013577020727097988, -0.02602165937423706, 0.031313810497522354, -0.022740064188838005, -0.026691844686865807, 0.03625931218266487, -0.01047452725470066, -0.031914662569761276, 0.019851336255669594, 0.00033888386678881943, -0.00013197875523474067, -0.0035126928705722094, -0.0127912862226367, -0.02403421513736248, 0.0013844227651134133, -0.020336642861366272, -0.03616687282919884, 0.025975439697504044, 0.03124447911977768, -0.037299253046512604, -0.017239926382899284, 0.021630793809890747, -0.0038680064026266336, 0.027754895389080048, -0.02955746278166771, -0.018568741157650948, -0.005170822609215975, 0.0292570348829031, -0.04457884654402733, -0.014963610097765923, -0.029973439872264862, -0.009388364851474762, 0.012109546922147274, 0.030112098902463913, 0.010208764113485813, 0.027477579191327095, -0.02555946260690689, -0.009723457507789135, -0.02833264134824276, 0.005659017711877823, 0.015402696095407009, -0.004234875086694956, 0.013877447694540024, -0.023213816806674004, 0.011098491959273815, -0.016812395304441452, -0.001694238861091435, 0.004679739009588957, -0.034826502203941345, -0.004850173834711313, 0.014096991159021854, -0.013218818232417107, 0.022716954350471497, 0.014524523168802261, -0.006106770597398281, 0.010740289464592934, -0.004639296792447567, -0.0032613736111670732, -0.06248895823955536, 0.021838782355189323, -0.0060778832994401455, 0.02339869551360607, 0.056110646575689316, -0.028078433126211166, -0.04982477426528931, 0.007429807912558317, 0.015298701822757721, 0.0180372167378664, -0.02770867571234703, 0.0295343529433012, -0.019643349573016167, 0.02937258407473564, -0.011300702579319477, -0.01882294937968254, 0.009371032938361168, -0.011086937040090561, -0.005436585750430822, -0.03935602679848671, -0.03679083660244942, 0.002130436711013317, -0.017112823203206062, -0.0071582673117518425, 0.034849610179662704, 0.02008243463933468, -0.011398919858038425, 0.00231675966642797, 0.012641072273254395, -0.03249241039156914, 0.013761898502707481, -0.011786009185016155, -0.027916664257645607, 0.006251206621527672, 0.051719781011343, 0.0013194263447076082, 0.0015916889533400536, -0.04374689236283302, -0.014732511714100838, -0.019828226417303085, -0.00352135905995965, 0.012537078000605106, 0.039101820439100266, 0.003296038368716836, -0.005066828336566687, 0.006181877572089434, 0.017840782180428505, -0.013796563260257244, -0.02310982160270214, -0.04732891544699669, -0.021538354456424713, 0.051673561334609985, 0.03940224647521973, 0.027939774096012115, 0.0014667515642940998, -0.031175149604678154, -0.01744791492819786, 0.01039941981434822, 0.023456469178199768, -0.03748413175344467, -0.0015989107778295875, -0.003275817260146141, 0.020452192053198814, 0.004006665199995041, -0.03062051348388195, 0.0037611236330121756, -0.010133656673133373, 0.030759172514081, 0.021503688767552376, -0.01484806090593338, 0.003515581600368023, 0.006499637383967638, -0.043562013655900955, 0.00995455589145422, 0.03397144004702568, 0.015437360852956772, -0.028401970863342285, -0.004665295127779245, 0.04351579397916794, -0.004925280809402466, 0.004341757856309414, -0.004229097627103329, 0.023826226592063904, 0.000811010308098048, -0.024542631581425667, 0.01579556241631508, -0.01454763300716877, 0.0047144037671387196, -0.00596811156719923, -0.007984443567693233, 0.006592076737433672, -0.008793286979198456, 0.028702398762106895, -0.005676350090652704, 0.04009554162621498, 0.018892278894782066, -0.02738513983786106, 0.003018720541149378, 0.03399454802274704, 0.013126378878951073, -0.004188655409961939, 0.007967110723257065, 0.012964610010385513, 0.015483580529689789, 0.005760123021900654, 0.024403972551226616, -0.024542631581425667, -0.018302978947758675, 0.007008053362369537, 0.029141485691070557, -0.001472529023885727, 0.010850061662495136, -0.006112548056989908, -0.010364755056798458, -0.007845784537494183, 0.02373378723859787, 0.01957402005791664, 0.00133025913964957, -0.015402696095407009, -0.008770177140831947, 0.013704124838113785, -0.013103269040584564, 0.011006052605807781, 0.02357201837003231, 0.01430497970432043, 0.023005828261375427, 0.01004121731966734, -0.03907870873808861, 0.04499482363462448, 0.0172861460596323, -0.018441637977957726, -0.005124602932482958, -0.02877172827720642, -0.01400455180555582, 0.036975715309381485, -0.00910526979714632, 0.05255173519253731, 0.008296426385641098, -0.01974734291434288, 0.017031937837600708, -0.0042175427079200745, -0.006280093919485807, 0.0027428469620645046, -0.03900938108563423, -0.02662251517176628, 0.00498016644269228, 0.001310038031078875, 0.01141047477722168, 0.004070217255502939, 0.007418252993375063, 0.013345922343432903, -0.018014106899499893, 0.004012442659586668, -0.00493972422555089, -0.00803644023835659, 0.01500982977449894, -0.046312082558870316, -0.02113393135368824, -0.014720956794917583, 0.008729735389351845, 0.011959332972764969, 0.047213364392519, 0.03454918414354324, 0.00811732467263937, 0.021850336343050003, 0.0023066489957273006, 0.005087049677968025, -0.00356180127710104, 0.016962610185146332, -0.015472025610506535, 0.024866169318556786, -0.005546357482671738, -0.0021679901983588934, -0.0020394418388605118, 0.014824951067566872, 0.017101267352700233, -0.013114823959767818, -0.016199985519051552, -0.011450916528701782, -0.023387139663100243, 0.036028213798999786, 0.02326003648340702, -0.008302203379571438, 0.0029219482094049454, 0.009642573073506355, 0.022277867421507835, 0.003645574441179633, 0.030851611867547035, 0.0325155183672905, -0.008469750173389912, 0.022277867421507835, 0.02955746278166771, 0.011543355882167816, 0.02574434131383896, 0.021226370707154274, -0.014096991159021854, -0.01713593304157257, 0.03526558727025986, 0.003119825851172209, 0.02528214454650879, -0.013033939525485039, -0.022774729877710342, 0.014512968249619007, 0.01625775918364525, -0.03179911524057388, 0.004656629171222448, -0.011468249373137951, -0.020405972376465797, -0.007776455022394657, -0.004468861967325211, 0.008677737787365913, 0.0042724283412098885, 0.01727459207177162, 0.004720181226730347, -0.006950278766453266, 0.05176600068807602, -0.0015368032036349177, 0.025975439697504044, -0.005529025103896856, -0.014697846956551075, 0.011901558376848698, -0.024565741419792175, 0.022763174027204514, -0.00041706007323227823, -0.003131380770355463, -0.020405972376465797, -0.0005206931964494288, 0.00047302915481850505, 0.030112098902463913, -0.03078228235244751, -0.009994997642934322, 0.0031602680683135986, -0.02405732497572899, -0.01669684611260891, 0.023063601925969124, 0.030851611867547035, 0.03228441998362541, 0.023664457723498344, 0.021388139575719833, -0.005757234524935484, -0.04120481386780739, -0.03001965954899788, -0.005765900481492281, -0.014108546078205109, 0.02160768397152424, 0.021665457636117935, 0.008810619823634624, -0.005699459929019213, -0.00957324355840683, 0.024866169318556786, -0.02447330206632614, -0.022855613380670547, 0.05620308592915535, -0.018268315121531487, 0.00896661076694727, 0.00463640782982111, -0.050749167799949646, 0.06082504987716675, -0.014905835501849651, -0.016199985519051552, 0.009324813261628151, 0.0005214153788983822, 0.028401970863342285, -0.01697416417300701, 0.01866118051111698, 0.005448140669614077, -0.0269460529088974, -0.025027936324477196, 0.02234719693660736, 0.0051072705537080765, -0.018418528139591217, 0.015495135448873043, -0.02111082151532173, 0.04455573484301567, 0.00313715822994709, 0.03709126263856888, 0.013218818232417107, -0.048438187688589096, -0.001871895627118647, -0.026553185656666756, 0.0056503512896597385, 0.008007553406059742, 0.031128929927945137, 0.023352475836873055, -0.02604476921260357, -0.004058662336319685, 0.002826620126143098, 0.056711502373218536, 0.018002551048994064, -0.005503026302903891, -0.03431808575987816, 0.02893349714577198, -0.004876172635704279, -0.05065672844648361, -0.024288423359394073, 0.005214153788983822, -0.0058958930894732475, 0.029950330033898354, 0.0278935544192791, 0.0027688455302268267, 0.01056118868291378, -0.021781006827950478, -0.017956331372261047, 0.01593422144651413, 0.03219198063015938, 0.01927359215915203, 0.022693844512104988, -0.017702123150229454, -0.041736338287591934, 0.004151101689785719, -0.02909526601433754, 0.06378310918807983, -0.0029753895942121744, -0.03136003017425537, 0.01685861498117447, 0.0004351146053522825, -0.01733236573636532, 0.009989220649003983, -0.01852252148091793, 0.005069717299193144, -0.02054463140666485, -0.0036484631709754467, 0.04321536794304848, 0.028217092156410217, 0.0038824500516057014, -0.009030163288116455, 0.01636175438761711, 0.008949278853833675, -0.0026836281176656485, -0.002318203914910555, 3.651532460935414e-05, -0.02451952174305916, -0.057635895907878876, 0.013808118179440498, -0.05532491207122803, -0.008463972248136997, -0.02680739387869835, 0.025536352768540382, -0.016199985519051552, -0.018938498571515083, -0.006297426298260689, -0.010538078844547272, 0.002370201051235199, -0.03612065315246582, -0.022312533110380173, 0.038801390677690506, -0.03272350877523422, 0.008868394419550896, 0.0014515856746584177, -0.014062326401472092, 0.03364790230989456, -0.0425914004445076, -0.017725232988595963, -0.01774834282696247, 0.023826226592063904, -0.00833109114319086, -0.0065689668990671635, 0.01774834282696247, -0.02064862661063671, 0.0243577528744936, -0.025536352768540382, -0.016488857567310333, -0.007585798855870962, 0.03505760058760643, 0.01852252148091793, -0.01869584619998932, -0.00750491488724947, -0.0022142098750919104, -0.05481649935245514, 0.009937223047018051, -0.020752619951963425, 0.0004260873538441956, 0.03718370199203491, -0.034387413412332535, -0.0022344309836626053, -0.015703124925494194, -0.0047086263075470924, -0.022589851170778275, -0.039610233157873154, -0.032561738044023514, -0.04132036119699478, 0.04866928607225418, -0.030759172514081, 0.007406698074191809, -0.0021203262731432915, 0.02156146429479122, 0.026738064363598824, -0.03186844289302826, -0.0064303078688681126, -0.016049770638346672, -0.014455193653702736, -0.025929220020771027, -0.020625516772270203, 0.014536078087985516, 0.014281869865953922, -0.01231753546744585, 0.011422029696404934, -0.024542631581425667, 0.009550133720040321, 0.014224095270037651, 0.004023997578769922, 0.006892504170536995, 0.01438586413860321, 0.011670459993183613, -0.05033319070935249, 0.024681290611624718, 0.02310982160270214, -0.005358589813113213, -0.0006463528261519969, -0.015414251014590263, 0.00979278702288866, 0.024450192227959633, 0.023652901872992516, -0.015252482146024704, 0.007233374286442995, -0.03138313814997673, -0.006384088192135096, -0.05098026618361473, 0.023387139663100243, -0.02234719693660736, 0.006095215678215027, 0.005462584085762501, -0.0056965709663927555, -0.006672961171716452, -0.02632208727300167, -0.004006665199995041, -0.04973233863711357, -0.00996033288538456, -0.016130656003952026, 0.018256759271025658, -0.010971387848258018, 0.01653507724404335, -0.0071120476350188255, 0.02833264134824276, 0.007152489852160215, -0.032238200306892395, -0.01727459207177162, 0.012144211679697037, -0.024588851258158684, 0.006852062419056892, 0.01929670199751854, -0.004049996379762888, 0.01698572002351284, 0.016881724819540977, 0.004315759055316448, -0.03459540382027626, -0.019077157601714134, -0.02509726583957672, 0.013727234676480293, 0.018776729702949524, 0.011219818145036697, 0.037114374339580536, 0.03367101028561592, 0.021076157689094543, 0.008770177140831947, 0.02417287416756153, -0.0016032438725233078, -0.009769677184522152, -0.030204536393284798, -0.03905560076236725, 0.011658905074000359, -0.029025936499238014, 0.006262761540710926, 0.02539769373834133, 0.0140854362398386, 0.013461471535265446, -0.011502914130687714, -0.001687017036601901, -0.025998549535870552, 0.032677289098501205, 0.01416632067412138, -0.010035440325737, -0.01271040178835392, -0.006800065282732248, 0.019955331459641457, 0.015737788751721382, 0.027962883934378624, 0.04328469559550285, 0.005815009120851755, -0.0352424792945385, -0.008689292706549168, -0.04058084636926651, -0.012167321518063545, 0.0009251150768250227, 0.020128654316067696, -0.010670959949493408, 0.008793286979198456, 0.002026442438364029, 0.037738338112831116, -0.037715230137109756, -0.006638296414166689, 0.005381699651479721, -0.0013959776842966676, 0.014443638734519482, 0.013704124838113785, -0.015391141176223755, -0.012051772326231003, -0.009584798477590084, -0.008019108325242996, 0.007782232481986284, 0.015437360852956772, 0.008406197652220726, 0.004104882013052702, 0.018938498571515083, -0.005315259099006653, -0.015136932954192162, -0.04444018751382828, 0.0005568022606894374, 0.04182877764105797, 0.0018950053490698338, 7.722833106527105e-05, 0.010850061662495136, -0.014108546078205109, -0.010532300919294357, -0.0019426693907007575, 0.0008463972480967641, -0.009220818988978863, 0.03246929869055748, -0.0017780119087547064, 0.022000551223754883, 0.0005575244431383908, 0.004419753327965736, 0.012444638647139072, -0.02969612181186676, 0.02020953968167305, 0.011820673942565918, -0.0018141210312023759, 0.012502413243055344, 0.02144591510295868, 0.03166045621037483, -0.013669460080564022, -0.02405732497572899, 0.00669607101008296, 0.014651627279818058, 0.0003164962399750948, 0.0056416853331029415, 0.014593852683901787, -0.01201710756868124, 0.02544391341507435, 0.030366305261850357, 0.019828226417303085, 0.013519246131181717, 0.021977441385388374, -0.01852252148091793, 0.0029869445133954287, 0.03339369222521782, 0.008983943611383438, -0.004312870558351278, 0.007851562462747097, -0.045410800725221634, 0.010757622309029102, -0.00677695544436574, -0.007429807912558317, -0.005869894754141569, 0.02050996758043766, -0.03963334485888481, -0.010364755056798458, -0.02787044458091259, -0.030736062675714493, -0.007216041907668114, -0.012918390333652496, -0.01438586413860321, -0.005601243115961552, 0.003056274028494954, 0.020301979035139084, 0.03320881351828575, -0.0060778832994401455, -0.029603682458400726, 0.00746447267010808, 0.020637070760130882, 0.021492134779691696, 0.002718292875215411, -0.013345922343432903, 0.015391141176223755, 0.0018762287218123674, -0.01048608124256134, 0.016199985519051552, -0.030504964292049408, 0.026067879050970078, -0.019943775609135628, -0.004535302519798279, 0.02803221344947815, -0.004448640625923872, -0.00532103655859828, -0.006950278766453266, -0.0003639796923380345, -0.030712952837347984, -0.016488857567310333, 0.012074882164597511, 0.025651901960372925, 0.010278093628585339, -0.017702123150229454, 0.003183377906680107, -0.010977165773510933, -0.019666457548737526, -0.0053499238565564156, -0.0013447027886286378, 0.03616687282919884, 0.02819398231804371, -0.006782732903957367, -0.02542080357670784, 0.032815948128700256, -0.024681290611624718, 0.012121101841330528, -0.01432808954268694, -0.01714748702943325, 0.01292994525283575, 0.01468629203736782, -0.014836505986750126, -0.017182152718305588, -0.01942380517721176, 0.02341024950146675, -0.015610684640705585, -0.005162156652659178, 0.025628792122006416, -0.0011670460226014256, 0.021041492000222206, 0.010572743602097034, 0.02143435925245285, -0.03332436457276344, -0.0007525135879404843, -0.00455263489857316, 0.008816396817564964, 0.01653507724404335, -0.03875517100095749, -0.021376585587859154, 0.009994997642934322, 0.010410974733531475, -0.0035589125473052263, 0.0014277537120506167, -0.0005196098936721683, 0.002529081190004945, 0.01331125758588314, 0.032238200306892395, -0.023641347885131836, 0.027015382423996925, 0.02574434131383896, 0.007574243936687708, -0.03861651197075844, -0.03889383003115654, 0.019562464207410812, -0.022277867421507835, -0.035126928240060806, 0.033902108669281006, -0.03339369222521782, -0.02202366106212139, -0.0016725733876228333, 0.005245929583907127, -0.01973578706383705, -0.022069880738854408, -0.025975439697504044, -0.006551634520292282, -0.007198709528893232, 0.008042218163609505, 0.04189810901880264, 0.010977165773510933, 0.0013418140588328242, 0.031128929927945137, -0.00712360255420208, -0.03323192521929741, 0.02297116257250309, 0.031313810497522354, 0.03801565617322922, 0.008099992759525776, -0.0025753008667379618, 0.030967161059379578, -0.0068578398786485195, 0.049501240253448486, -0.03168356418609619, 0.020267313346266747, -0.022300977259874344, 0.012444638647139072, 0.036236200481653214, 0.013426806777715683, 0.018765175715088844, -0.006649851333349943, -0.03921736776828766, 0.05056428909301758, -0.027593126520514488, 0.018314534798264503, 0.054446741938591, -0.016916390508413315, -0.0011663237819448113, 0.008105769753456116, -0.006239651702344418, 0.03501138091087341, -0.00334803550504148, -0.02218542993068695, 0.024912387132644653, -0.00681739766150713, 0.0018877835245802999, -0.0007828451925888658, -0.04619653522968292, 0.004347535315901041, -0.029742341488599777, 0.022901833057403564, -0.0047172922641038895, -0.03348613157868385, -0.007088937796652317, 0.010653628036379814], [0.041973408311605453, 0.01047519687563181, 0.019655367359519005, 0.021107735112309456, -0.07102074474096298, 0.015310369431972504, -0.015600842423737049, 0.01925596594810486, 0.038632962852716446, 0.025900546461343765, 0.024157704785466194, 0.01856609247624874, -0.025682689622044563, -0.001453879871405661, -0.017888320609927177, -0.027352912351489067, -0.022753750905394554, 0.03795519098639488, -0.016956385225057602, 0.036309175193309784, -0.016544880345463753, 0.05489947274327278, -0.0169442817568779, 0.0367932990193367, -0.05751373618841171, -0.034493718296289444, 0.015322471968829632, -0.057271674275398254, 0.021422414109110832, -0.009204376488924026, 0.0789603516459465, -0.03299293667078018, 0.05998275801539421, 0.0120909558609128, 0.04461187496781349, 0.018505576997995377, -0.029918761923909187, -0.006426724139600992, -0.016690118238329887, -0.017162136733531952, -0.03836669772863388, 0.05092966929078102, -0.020732538774609566, -0.048630088567733765, -0.002338916063308716, 0.04509599506855011, 0.04485393688082695, -0.0471293106675148, -0.00108246726449579, 0.026602523401379585, -0.006163482554256916, 0.01769467256963253, 0.0011906384024769068, 0.012290655635297298, 0.025271186605095863, 4.708846245193854e-05, -0.001662657712586224, 0.011189277283847332, 0.05068761110305786, 0.012326965108513832, 0.07010091841220856, -0.025125950574874878, -0.0009024342871271074, 0.028635837137699127, 0.004075705073773861, -0.037882573902606964, 0.01777939312160015, 0.03814884275197983, 0.005670282989740372, -0.0169442817568779, 0.02541642263531685, 0.04858167842030525, 0.005561355501413345, -0.05732008442282677, -0.012550871819257736, 0.006789816077798605, 0.03935914859175682, 0.002293529687449336, -0.003851798363029957, -0.028054889291524887, 0.009331458248198032, -0.03560720011591911, 0.0005261048208922148, -0.006015220191329718, -0.013591734692454338, 0.014608391560614109, -0.059014514088630676, -0.005050001200288534, -0.02243907004594803, -0.0035552734043449163, -0.018747637048363686, 0.03541354835033417, 0.0003748165909200907, 0.03892343491315842, 0.006166508421301842, 0.0062149204313755035, 0.03691432997584343, -0.004178580828011036, -0.00842978060245514, 0.03797939792275429, -0.01343439519405365, -0.04509599506855011, -0.04439401999115944, -0.003909287974238396, 0.038705579936504364, -0.04066627845168114, -0.0192196574062109, 0.03485680744051933, -0.001721660140901804, -0.018360339105129242, 0.015479812398552895, -0.022269627079367638, -0.05751373618841171, 0.07373183220624924, 0.030185028910636902, 0.005640025250613689, 0.0225237924605608, -0.06651841104030609, 0.018384546041488647, -0.0050802589394152164, 0.0063117449171841145, -0.013398085720837116, -0.01570977084338665, -0.1198686957359314, 0.002293529687449336, 0.01407585758715868, -0.04233649745583534, 0.005267856176942587, -0.003158898325636983, 0.011376875452697277, 0.024072984233498573, -0.03604291006922722, 0.03662385419011116, -0.03328341245651245, 0.03456633538007736, 0.007885143160820007, 0.016254408285021782, -0.024278735741972923, 0.018324030563235283, 0.006644579116255045, 0.010184723883867264, 0.02009107731282711, 0.030354471877217293, -0.008460038341581821, -0.04574955999851227, -0.028466394171118736, -0.014015342108905315, 0.05591613054275513, 0.002721675205975771, 0.023867230862379074, 0.007709648460149765, -0.0252227745950222, 0.012157522141933441, -0.01673853024840355, -0.019122833386063576, 0.013640146702528, -0.007134753279387951, 0.0235646553337574, -0.013325467705726624, 0.04996142536401749, -0.056690726429224014, 0.003960725851356983, 0.0018699226202443242, -0.030862798914313316, 0.02318946085870266, -0.02154344506561756, 0.007963812910020351, -0.02757076732814312, -0.05736849829554558, -0.0003589313419070095, -0.043958310037851334, -0.02926519513130188, -0.0017367888940498233, -0.02943463809788227, 0.010396527126431465, -0.0008245208882726729, 0.019667470827698708, 0.015504018403589725, 0.027764417231082916, -0.04335315525531769, -0.006487239617854357, -0.014027444645762444, -0.01296237576752901, -0.003077202709391713, 0.007927503436803818, 0.013385983183979988, 0.027425531297922134, -0.0006187688559293747, -0.02385512925684452, -0.016762737184762955, 0.0032769031822681427, 0.006947155576199293, -0.013918517157435417, 0.012599283829331398, -0.028829485177993774, -0.0620160736143589, -0.003936519846320152, -0.015552430413663387, 0.07387707382440567, -0.035486169159412384, -0.007945657707750797, -0.030160821974277496, 0.0007814037380740047, -0.006596167106181383, -0.02260851301252842, 0.013628044165670872, -0.005301139783114195, -0.019485924392938614, 0.04807334765791893, -0.008211925625801086, 0.01896549202501774, 0.013543322682380676, -0.04124722257256508, 0.011703657917678356, 0.00630569364875555, 0.04165872931480408, 0.04906579852104187, 0.020526787266135216, -0.010886700823903084, 0.024787064641714096, -0.02199125848710537, 0.007122649811208248, 0.054173290729522705, 0.00996081717312336, 0.006795867346227169, 0.015104616992175579, 0.027280293405056, 0.016750633716583252, 0.02551324851810932, -0.033331822603940964, -0.05407646670937538, 0.028902104124426842, -0.03149215877056122, -0.03195207566022873, -0.01875974051654339, 0.011491854675114155, -0.01600024290382862, -0.047976523637771606, -0.02372199483215809, 0.015939727425575256, 0.035486169159412384, 0.010305754840373993, -0.011201380752027035, -7.138913497328758e-05, 0.026191018521785736, -0.000908485846593976, -0.00269746920093894, 0.06676047295331955, 0.033089760690927505, 0.010190775617957115, -0.030402883887290955, -0.020817261189222336, 0.05393122881650925, -0.036478620022535324, -0.015455606393516064, -0.005603716243058443, 0.0649208053946495, -0.0380278117954731, 0.026481492444872856, -0.030306058004498482, 0.008811026811599731, 0.00997897144407034, -0.0773143395781517, -0.028781073167920113, -0.03696274012327194, -0.012084904126822948, 0.07237628847360611, -0.04981619119644165, -0.05654548853635788, 0.034953635185956955, -0.0002793158928398043, 0.029991379007697105, 0.01624230481684208, -0.01026944536715746, -0.04579797387123108, 0.007419175002723932, 0.02488388866186142, -0.05988593399524689, -0.011534214951097965, 0.06342002749443054, -0.06482398509979248, -0.012405634857714176, 0.024242427200078964, -0.003078715642914176, 0.015685563907027245, 0.030523914843797684, 0.03178263083100319, -0.011673400178551674, 0.008151410147547722, 0.06056370586156845, 0.08171985298395157, 0.0026082091499119997, -0.015528224408626556, 0.07116598635911942, -0.006668785121291876, -0.029652493074536324, -0.021930743008852005, 0.013979032635688782, -0.03587346524000168, -0.0537375807762146, -0.00017880377708934247, 0.03657544404268265, 0.010711207054555416, -0.011364771984517574, -0.032968733459711075, 0.034372687339782715, 0.02715926431119442, 0.022414864972233772, -0.044127751141786575, -0.014681010507047176, -0.019498027861118317, -0.004154374822974205, -0.005873009096831083, -0.013531219214200974, -0.0049834344536066055, -0.01918334886431694, -0.01176417339593172, 0.03526831418275833, 0.017041105777025223, -0.031056448817253113, 0.07218264043331146, -0.0025991317816078663, 0.008109048940241337, 0.008575016632676125, 0.016920076683163643, 0.011921512894332409, 0.005997065454721451, 0.06056370586156845, -0.02820012718439102, -0.02720767632126808, -0.013833795674145222, -0.02137400209903717, 0.005252727307379246, -0.02798227220773697, -0.04945309832692146, -0.031032241880893707, 0.025948958471417427, 0.03187945485115051, -0.020974600687623024, 0.01182468794286251, 0.007764112204313278, 0.021640269085764885, 0.01926806941628456, -0.01926806941628456, -0.0015143952332437038, -0.010826186276972294, 0.0032466454431414604, 0.002735291374847293, 0.04817017540335655, 0.0002715623704716563, 0.016690118238329887, 0.019207553938031197, -0.04952571541070938, -0.024980712682008743, -0.044539254158735275, -0.003909287974238396, 0.001836639130488038, -0.009724807925522327, 0.01826351508498192, 0.012647696770727634, 0.009174118749797344, -0.013410189189016819, 0.051655855029821396, 0.0212892796844244, 0.0033374184276908636, 0.01296237576752901, -0.08612536638975143, -0.0471293106675148, 0.0027655488811433315, -0.0005370732396841049, 0.003349521430209279, 0.02364937588572502, 0.023843025788664818, -0.0026868791319429874, 0.01506830845028162, 0.05010666325688362, -0.03374332934617996, 0.04945309832692146, 0.004275405313819647, 0.02124086767435074, 0.014245299622416496, -0.01047519687563181, 0.03444530442357063, 0.0669541209936142, 0.04649995267391205, 0.07470007985830307, 0.0035340930335223675, -0.006910846568644047, 0.021967051550745964, 0.0005257265875115991, -0.031177479773759842, 0.0016732478979974985, 0.06385573744773865, 0.0049440995790064335, 0.001397903310135007, 0.03439689427614212, -0.0008562913862988353, 0.05088125914335251, -0.011001680046319962, -0.05010666325688362, -0.0023479934316128492, -0.04550750181078911, -0.001378235756419599, 0.02774021029472351, -0.00482609448954463, 0.004708089865744114, 0.0023101712577044964, -0.03415483236312866, 0.0504455491900444, -0.02223331853747368, 0.02132559008896351, 0.021507134661078453, 0.025150155648589134, -0.021555546671152115, 0.040787309408187866, 0.002125599654391408, 0.0463063009083271, 0.025489041581749916, -0.008732357062399387, -0.015516120940446854, 0.038052015006542206, 0.005528071895241737, -0.040787309408187866, 0.022463276982307434, 0.0021891407668590546, 0.021688681095838547, -0.002773113315925002, -0.005552278365939856, 0.03323499858379364, -0.05368916690349579, 0.0012617438333109021, 0.004426693543791771, 0.058433566242456436, 0.012671902775764465, -0.027764417231082916, -0.029991379007697105, -0.03812463581562042, -0.04199761524796486, -0.022802162915468216, -0.024811269715428352, -0.08312381058931351, -0.054173290729522705, 0.014196887612342834, -0.0033949080388993025, -0.04136825352907181, -0.02116824872791767, -0.03219413757324219, -0.0229473989456892, -0.015298265963792801, 0.006814022082835436, -0.007279989775270224, 0.001664170529693365, -0.010444940067827702, 0.05092966929078102, -0.031056448817253113, -0.028296951204538345, -0.00497133145108819, -0.02038155123591423, -0.002584002912044525, 0.011879151687026024, 0.05243045091629028, 0.06584063917398453, 0.06293590366840363, 0.052720922976732254, 0.01027549710124731, 0.061241477727890015, -0.019606955349445343, -0.002080213278532028, -0.012175677344202995, -0.019110729917883873, -0.030911212787032127, -0.04388568922877312, 0.057562146335840225, 0.01246615033596754, 0.0007866988307796419, -0.047347165644168854, 0.024605518206954002, 0.012417738325893879, -0.043135300278663635, 0.02628784254193306, -0.014160579070448875, 0.02327418141067028, -0.020163696259260178, 0.0008124178275465965, 0.05765897035598755, 0.05736849829554558, 0.055044710636138916, 0.0661311149597168, -0.07528102397918701, -0.020853569731116295, -0.014184785075485706, 0.00504394993185997, 0.024169808253645897, -0.012036492116749287, -0.0256342776119709, -0.03616394102573395, 0.03231516852974892, 0.011685502715408802, 0.03836669772863388, -0.02157975360751152, 0.04042421653866768, 0.0033616244327276945, -0.008720253594219685, 0.02868424914777279, 0.025827927514910698, 0.019812706857919693, -0.04691145569086075, 0.006686939857900143, 0.06617952138185501, -0.031927868723869324, -0.031564775854349136, 0.01727106422185898, 0.015358781442046165, -0.039286527782678604, -0.011739966459572315, -0.014196887612342834, 0.03751948103308678, 0.00348265515640378, -0.004544698633253574, -0.00390626210719347, 0.023988261818885803, 0.02082936465740204, 0.03497783839702606, 0.003709587501361966, -0.030185028910636902, -0.015080410987138748, 0.0026293895207345486, -0.08506029844284058, 0.014487361535429955, -0.003636969020590186, -0.001797304255887866, -0.013398085720837116, -0.021640269085764885, 0.022414864972233772, 0.004190684296190739, 0.007594669237732887, -0.024109292775392532, 0.003597634145990014, -0.017912527546286583, -0.019691675901412964, 0.037809956818819046, -0.029458845034241676, -0.010535712353885174, -0.02769179828464985, 0.017125828191637993, 0.009034933522343636, 0.0351230762898922, -0.006263332907110453, -0.003101408714428544, -0.015770286321640015, -0.03352547436952591, -0.006323848385363817, -0.02761917933821678, 0.021712888032197952, 0.005419144406914711, 0.01161893643438816, 0.01834823749959469, -0.01244194433093071, 0.019195450469851494, 0.004172529559582472, 0.02103511616587639, 0.0268687903881073, -0.0041664778254926205, -0.04579797387123108, -0.026675140485167503, 0.028079096227884293, 0.0454590879380703, -0.007570463232696056, 0.047395579516887665, -0.015963934361934662, -0.05930498614907265, 0.03459054231643677, 0.013180230744183064, -0.024908095598220825, 0.028587425127625465, 0.00041490799048915505, 0.028756868094205856, -0.0467178076505661, 0.0031256149522960186, 0.028514806181192398, 0.00581854535266757, 0.02195494808256626, 0.030741769820451736, 0.0033797791693359613, -0.0003589313419070095, 0.013156024739146233, 0.013979032635688782, -0.007921451702713966, 0.008248234167695045, -0.016520675271749496, -0.03311396762728691, -0.005376783665269613, -0.01194571889936924, 0.004729270003736019, 0.03766471892595291, 0.04107778146862984, -0.0003411549550946802, 0.025658484548330307, -0.02996717393398285, 0.023746201768517494, -0.008230079896748066, 0.0035250158980488777, -0.014874659478664398, -0.005525046493858099, -0.024339251220226288, -0.046693600714206696, 0.03359809145331383, -0.02861163020133972, 0.03112906776368618, 0.020030561834573746, 0.009682446718215942, -0.0070258257910609245, 0.02393984980881214, 0.008115100674331188, -0.019861118867993355, -0.005198263563215733, -0.010656743310391903, -0.023007914423942566, -0.013301261700689793, -0.005270882043987513, 0.013277055695652962, 0.005443350411951542, -0.01410006359219551, -0.02224542200565338, -0.03575243428349495, -0.012175677344202995, 0.02967670001089573, -0.0450475849211216, -0.03171001374721527, -0.014693113043904305, -0.02551324851810932, 0.006989516317844391, -0.007364711258560419, 0.0026505698915570974, -0.007836730219423771, 0.011092453263700008, 0.014003238640725613, 0.04461187496781349, -0.027667591348290443, -0.0225358959287405, 0.06584063917398453, -0.011528163217008114, 0.02125297114253044, -0.05199474096298218, 0.06351685523986816, 0.04253014922142029, -0.01112271100282669, 0.03572823107242584, 0.047758668661117554, -0.017162136733531952, -0.00731629878282547, -0.012084904126822948, 0.019703779369592667, -0.023455727845430374, 0.010366269387304783, -0.02703823335468769, -0.010396527126431465, 0.0053041656501591206, -0.010596227832138538, 0.015867110341787338, -0.03701115399599075, 0.011588678695261478, 0.019074421375989914, 0.0028805278707295656, -0.04519282281398773, 0.010142363607883453, 0.03304135054349899, -0.0479523167014122, -0.008066688664257526, -0.0018260489450767636, -0.045943211764097214, -0.013966930098831654, -0.012841344811022282, -0.010469146072864532, -0.01146764773875475, 0.025827927514910698, -0.04420037195086479, -0.0015749104786664248, -0.004084782209247351, 0.04352260008454323, 0.0274981502443552, 0.0017700723838061094, -0.02815171517431736, 0.008441883139312267, -0.00482609448954463, -0.00893205776810646, 0.01612127386033535, -0.03628496825695038, -0.014850452542304993, 0.013010787777602673, 0.0070560830645263195, 0.022136494517326355, 0.039334941655397415, 0.014620495028793812, -0.02045416831970215, -0.00024035917886067182, -0.026796171441674232, -0.000909998721908778, 0.005509917624294758, 0.027667591348290443, -0.0351230762898922, -0.018796050921082497, -0.02803068421781063, -0.0644850954413414, -0.04393410310149193, -3.7112895370228216e-05, -0.000957654498051852, 0.031104860827326775, 0.020611509680747986, -0.011909409426152706, -0.005742901470512152, 0.029870348051190376, -0.03243619576096535, -0.01827561855316162, 0.007582566235214472, -0.009888199158012867, -0.002394892740994692, -0.006102967541664839, 0.03906867280602455, -0.0026157735846936703, -0.04282062128186226, -0.003579479642212391, 0.001913796178996563, -0.009010727517306805, 0.010941165499389172, -0.028248539194464684, 0.008332955650985241, -0.005724746733903885, 0.006202817428857088, 0.005873009096831083, 0.010221033357083797, -0.035776641219854355, 0.0008752024150453508, 0.013047097250819206, 0.011001680046319962, 0.03393697738647461, -0.024545002728700638, 0.002205782337114215, 0.000507572025526315, -0.008605274371802807, 0.010444940067827702, -0.025489041581749916, 0.010469146072864532, -0.030596531927585602, 0.01715003326535225, -0.002529539167881012, -0.03669647499918938, 0.04405513405799866, 0.0045507499016821384, 0.0020514684729278088, -0.012387480586767197, 0.008466089144349098, -0.031056448817253113, 0.01707741618156433, 0.011879151687026024, -0.015733975917100906, 0.00960982870310545, 0.04238491132855415, 0.013119715265929699, 0.0017927655717357993, 0.004659677390009165, -0.01760995015501976, 0.011225586757063866, 0.019982149824500084, -0.0020968548487871885, -0.008877593092620373, -0.0347115732729435, 0.016097068786621094, 0.007860936224460602, 0.0018336133798584342, 0.023128945380449295, 0.0229352954775095, 0.03413062542676926, 0.02203967049717903, 0.010463094338774681, -0.02091408520936966, -0.04148928448557854, -0.005767107475548983, -0.010693052783608437, 0.002732265507802367, 0.006910846568644047, 0.022378554567694664, -0.015092514455318451, 0.04265118017792702, 0.025246979668736458, -0.045289646834135056, 0.0003804899170063436, 0.04829120263457298, 0.030887005850672722, 0.011340565979480743, -0.008859438821673393, -0.017876217141747475, -0.011915461160242558, -0.03790678083896637, 0.0023298386950045824, -0.044829729944467545, -0.0024190987460315228, -0.045652735978364944, 0.003119563451036811, 0.006015220191329718, -0.0010257342364639044, -0.002222424140200019, -0.002220911206677556, 0.014027444645762444, 0.028660042211413383, 0.02691720239818096, -0.06608270108699799, 0.023782510310411453, -0.007322350516915321, -0.02286267839372158, -0.03137112781405449, 0.03785836696624756, -0.004226993303745985, 0.044176165014505386, 0.0016535803442820907, -0.02240276150405407, -0.020611509680747986, 0.036381796002388, -0.031734220683574677, -0.03509886935353279, 0.0055764843709766865, -0.010366269387304783, 0.02364937588572502, 0.007951709441840649, 0.04398251697421074, -0.03534093126654625, -0.0027292396407574415, 0.018299825489521027, 0.0005851072492077947, 0.014172681607306004, 0.003558299271389842, 0.010112105868756771, -0.0076491329818964005, -0.03299293667078018, -0.010142363607883453, -0.01603655330836773, -0.0017882268875837326, 0.015104616992175579, -0.026191018521785736, 0.016799045726656914, 0.0425785593688488, -0.03253302350640297, -0.01706531271338463, -0.002930453047156334, -0.02488388866186142, 0.04148928448557854, 0.010699103586375713, -0.030935417860746384, -0.032339371740818024, 0.02839377522468567, -0.003903236472979188, -0.005146825686097145, 0.024956507608294487, 0.002054494107142091, 0.018045660108327866, -0.028660042211413383, 0.004093859810382128, -0.01144949346780777, -0.042772211134433746, 0.010995629243552685, -0.033138174563646317, -0.007382865995168686, 0.008248234167695045, -0.013264952227473259, -0.008514502085745335, -0.030911212787032127, 0.017912527546286583, 0.009561416693031788, -0.0005779210478067398, 0.00021501840092241764, 0.02897472307085991, -0.029071547091007233, 0.011994130909442902, -0.03246040269732475, -0.033259205520153046, -0.004381307400763035, 0.014245299622416496, 0.07712069153785706, 0.029918761923909187, 0.0029319659806787968, 0.006886640563607216, -0.0114736994728446, 0.004729270003736019, 0.004717167001217604, -0.02640887349843979, -0.005715669598430395, -0.0463063009083271, 0.011685502715408802, -0.0056884377263486385, -0.03071756288409233, 0.0196311604231596, 0.0392623208463192, 0.003576453775167465, -0.0032375683076679707, -0.01246615033596754, -0.017513126134872437, -0.01785201206803322, -0.024980712682008743, -0.023455727845430374, 0.025246979668736458, -0.018130382522940636, 0.00807879213243723, 0.005007640458643436, -0.011873100884258747, -0.03204889968037605, -0.01047519687563181, 0.002638466889038682, 0.00036138977156952024, -0.022850574925541878, 0.0015733976615592837, 0.02137400209903717, 0.006475136615335941, 0.012157522141933441, -0.0021846021991223097, 0.05063919723033905, 0.029942966997623444, -0.041271429508924484, 0.015806594863533974, 0.013446497730910778, -0.005352577660232782, 0.03960120677947998, 0.006916897837072611, 0.007031877059489489, -0.03541354835033417, 0.01345860119909048, -0.02447238378226757, -0.03287190571427345, 0.02873266115784645, -0.019994253292679787, -0.04870270937681198, -0.008151410147547722, 0.04887215048074722, -0.026118401437997818, 0.029652493074536324, 0.012901860289275646, -0.011037989519536495, -0.005413093138486147, -0.014233197085559368, 0.004529569763690233, -0.01644805632531643, 0.050493959337472916, -0.04996142536401749, -0.006227023899555206, -0.012562975287437439, -0.009597725234925747, 0.017839908599853516, 0.003942571580410004, 0.03744686394929886, 0.006414621137082577, -0.0007068942650221288, -0.0030650997068732977, -0.033912770450115204, 0.023455727845430374, 0.008677893318235874, -0.019316481426358223, 0.02248748391866684, 0.024460282176733017, 0.032218340784311295, 0.0044539254158735275, -0.0030696382746100426, 0.013349673710763454, 0.01615758426487446, 0.010190775617957115, -0.02757076732814312, 0.04773446172475815, 0.015939727425575256, -0.014463155530393124, -0.0239761583507061, 0.004408539272844791, 0.04388568922877312, -0.013773281127214432, -0.012853448279201984, 0.05998275801539421, 0.029410433024168015, -0.012926066294312477, -0.0033979336731135845, -0.010257341898977757, -0.0219065360724926, 0.0252227745950222, -0.012805036269128323, 0.012381428852677345, 0.0454832948744297, 0.003485680790618062, -0.007745957467705011, 0.00913780927658081, 0.0347115732729435, 0.010880650021135807, -0.002332864562049508, -0.01980060338973999, -0.01620599627494812, 0.005282985046505928, 0.0030938442796468735, 0.021967051550745964, -0.002550719538703561, -0.047226134687662125, 0.01031180564314127, 0.031976282596588135, 0.028490599244832993, 0.04083571955561638, 0.02414560131728649, 0.03316238150000572, 0.034203242510557175, -0.00546755688264966, 0.0202484168112278, -0.013337570242583752, -0.009531158953905106, -0.0023979186080396175, 0.010045538656413555, 0.009900301694869995, 0.007213423028588295, 0.019498027861118317, -0.010717258788645267, -0.014705216512084007, 0.028635837137699127, -0.014995689503848553, -0.03812463581562042, 0.015189338475465775, 0.013277055695652962, -0.02599737048149109, 0.0030681253410875797, 0.012060698121786118, 0.005951679311692715, 0.03475998342037201, 0.02385512925684452, -0.014148475602269173, -0.023758303374052048, 0.03713218495249748, 0.01506830845028162, 0.008696047589182854, 0.015382987447082996, 0.026796171441674232, -0.03468736633658409, -0.01325284969061613, 0.03783416002988815, 0.0005669526290148497, 0.019824810326099396, 0.007171062286943197, -0.03100803680717945, -0.001968259923160076, 0.03461474925279617, 0.008072740398347378, 0.03108065389096737, -0.015092514455318451, -0.019449615851044655, -0.035897672176361084, -0.00965218897908926, 0.030887005850672722, 0.021894432604312897, -0.002692930633202195, 0.015818698331713676, -0.007824627682566643, 0.01258718129247427, -0.023371005430817604, 0.002981891157105565, -0.01275662425905466, -0.011013783514499664, -0.006771661341190338, -0.029458845034241676, 0.007503896486014128, -0.006517496891319752, 0.016569087281823158, -0.02306842990219593, -0.0018260489450767636, -0.0032769031822681427, 0.041731346398591995, -0.02315315045416355, -0.03814884275197983, 0.026965614408254623, -0.017089519649744034, -0.010741464793682098, -0.016956385225057602, 0.016060758382081985, 0.005528071895241737, 0.034663159400224686, 0.025440629571676254, -0.010190775617957115, -0.03836669772863388, -0.027135057374835014, -0.01331336423754692, 0.025077536702156067, 0.004780708346515894, 0.0041422718204557896, 0.00715290755033493, 0.005839725956320763, -0.019691675901412964, -0.0076975454576313496, 0.009791374206542969, 0.00012887865887023509, 0.01345860119909048, 0.003183104330673814, 0.010995629243552685, -0.010360218584537506, -0.024956507608294487, 0.028539013117551804, -0.014487361535429955, -0.03667226806282997, -0.011401081457734108, 0.022330142557621002, 0.022911090403795242, -0.01198807917535305, 0.024085087701678276, -0.011255844496190548, -0.049622539430856705, -0.011788379400968552, 0.04190078750252724, 0.011358720250427723, -0.032145723700523376, -0.0029425560496747494, -0.01925596594810486, 0.03132271766662598, 0.016799045726656914, -0.005652128253132105, 0.0023116841912269592, -0.012381428852677345, 0.022342246025800705, -0.010033435188233852, -0.010166569612920284, -0.030233440920710564, 0.030790181830525398, -0.0018411778146401048, -0.021846020594239235, -0.02055099420249462, 0.0065296003594994545, 0.02996717393398285, -0.0021740118972957134, 0.0006819317350164056, -0.008060636930167675, 0.013059200718998909, 0.027231881394982338, -0.006783764343708754, -0.004226993303745985, -0.022209113463759422, 0.002567361341789365, -0.015552430413663387, -0.03054811991751194, -0.002054494107142091, 0.015080410987138748, -0.004145297687500715, -0.003827592357993126, 0.011340565979480743, 0.013918517157435417, 0.012199883349239826, 0.008060636930167675, 0.015976037830114365, -0.012145419605076313, 0.002276887884363532, -0.012926066294312477, 0.06753506511449814, 0.020393654704093933, -0.005755004473030567, -0.014499464072287083, 0.018505576997995377, -0.02009107731282711, 0.027522355318069458, -0.013761177659034729, 0.001136931125074625, -0.0012556923320516944, -0.008278491906821728, 0.028490599244832993, -0.016339128836989403, 0.023165253922343254, 0.016230201348662376, -0.04037580266594887, 0.010039486922323704, -0.006202817428857088, 0.039746444672346115, 0.011721812188625336, -0.008792872540652752, -0.026529904454946518, 0.04190078750252724, -0.04824279248714447, 0.0225237924605608, -0.03400959447026253, -0.029652493074536324, 0.017743084579706192, -0.01182468794286251, 0.033138174563646317, 0.003219413571059704, -0.016484366729855537, 0.001969772856682539, 0.0018805126892402768, 0.045652735978364944, -0.003177052829414606, -0.018408752977848053, 0.02392774634063244, 0.020139489322900772, -0.002217885572463274, -0.005906292703002691, -0.022136494517326355, 0.01649646833539009, 0.008036430925130844, 0.012708211317658424, 0.029749318957328796, -0.002431201981380582, -0.00015421943680848926, 0.010662795044481754, 0.020926188677549362, 0.022971605882048607, 0.014208991080522537, -0.013700662180781364, -0.0023116841912269592, 0.002375225303694606, -0.02529539354145527, -0.011975976638495922, -0.005812494084239006, 0.01777939312160015, 0.007673338986933231, -0.027110852301120758, 0.01114086527377367, -0.008514502085745335, 0.032508816570043564, -0.019606955349445343, 0.002239065943285823, -0.015249853953719139, 0.008792872540652752, -0.014850452542304993, -0.011752069927752018, 0.009543261490762234, 0.0017927655717357993, 0.0018245361279696226, 0.015443502925336361, 0.025973163545131683, -0.0212892796844244, -0.004611265379935503, 0.02368568629026413, -0.020236313343048096, -0.011068247258663177, -0.017743084579706192, 0.01161288470029831, 0.04269959032535553, 0.041440874338150024, 0.009349612519145012, -0.008012224920094013, -0.027086645364761353, 0.013071303255856037, 0.021628165617585182, 0.0012329991441220045, -0.012671902775764465, -0.004405513405799866, -0.013446497730910778, -0.015249853953719139, 0.0036490722559392452, -0.01407585758715868, -0.03149215877056122, -0.025489041581749916, -0.004009138327091932, -0.005588587373495102, -0.009367767721414566, -0.02154344506561756, -0.00959167443215847, 0.010420733131468296, -0.009531158953905106, -0.021422414109110832, 0.01834823749959469, 0.01091090776026249, -0.0022088082041591406, -0.01041468232870102, 0.000220124376937747, -0.005721720866858959, 0.004922918975353241, 0.0068805888295173645, -0.019498027861118317, -0.017948836088180542, 0.0019788499921560287, 0.010856444016098976, 0.010795928537845612, 0.014814144000411034, 0.011322411708533764, -0.005776184611022472, 0.028466394171118736, 0.01144949346780777, -0.0002161530574085191, -0.006989516317844391, -0.00037160172360017896, 0.017053209245204926, -0.0061120446771383286, -0.006898743566125631, -0.006989516317844391, 0.007951709441840649, 0.007758060470223427, 0.014850452542304993, -0.014402640052139759, -0.01196387317031622, -0.0054070414043962955, 0.0006093133706599474, 0.018324030563235283, 0.039334941655397415, 0.012986581772565842, 0.022342246025800705, -0.023951953276991844, -0.015455606393516064, -0.014547876082360744, 0.01144949346780777, -0.016520675271749496, -0.031153272837400436, 0.030354471877217293, 0.016932178288698196, -0.0400853306055069, 0.00882312934845686, 0.019159141927957535, 0.012218037620186806, -0.024048777297139168, -0.017222652211785316, 0.004505363758653402, 0.002060545841231942, 0.025803720578551292, -0.009240685030817986, -0.003521990031003952, -0.008792872540652752, -0.007988018915057182, 0.005065130069851875, -0.015637151896953583, -0.017137931659817696, 0.0023222744930535555, -0.012889757752418518, -0.004257251042872667, -0.0055371494963765144, -0.011576575227081776, -0.02272954396903515, -0.00022523035295307636, 0.015516120940446854, -0.007981967180967331, 0.010051590390503407, 0.0033737276680767536, 0.01587921380996704, -0.07663656771183014, 0.001376722939312458, 0.013398085720837116, 0.01992163434624672, 0.006578012369573116, -0.019437512382864952, 0.030039791017770767, 0.00032110928441397846, -0.005397964268922806, -0.01430581510066986, 0.03163739666342735, 0.002850270364433527, 0.019655367359519005, -0.01687166467308998, 0.03894764184951782, -0.0028048837557435036, -0.011092453263700008, 0.0069532073102891445, 0.009404076263308525, 0.01728316769003868, 0.00845398660749197, 0.000325269706081599, -0.023141048848628998, -0.02587633952498436, -0.019534336403012276, 0.012829242274165154, 0.001120289321988821, -0.03485680744051933, -0.01942540891468525, -0.052188389003276825, 0.0028623733669519424, -0.002181576332077384, 0.03108065389096737, 0.014051651582121849, 0.033259205520153046, 0.02099880762398243, 0.014765731990337372, -0.026021575555205345, 0.027256088331341743, 0.01395482663065195, -0.0006913872202858329, 0.002682340331375599, 0.00252651353366673, 0.003273877315223217, 0.020078973844647408, -0.008211925625801086, -0.009567467495799065, 0.03800360485911369, -0.0005786775145679712, -0.01175812166184187, 0.010245239362120628, -0.016302820295095444, -0.0252227745950222, 0.0057519786059856415, -0.008302697911858559, -0.022669028490781784, -0.005994039587676525, -0.005243650171905756, 0.015842903405427933, 0.026941409334540367, -0.03386435657739639, 0.0001880701893242076, -0.005488737020641565, -0.012877654284238815, 0.0031467953231185675, -0.008526604622602463, 0.005724746733903885, -0.0010779286967590451, -0.01872343197464943, 0.012363274581730366, 0.0326540507376194, -0.00959167443215847, 0.011134813539683819, 0.009295148774981499, -0.004121091682463884, -0.005095387808978558, 0.011401081457734108, -0.00977927166968584, 0.014378434047102928, -0.025900546461343765, -0.006426724139600992, -0.0446360819041729, 0.014511567540466785, -0.03626076504588127, 0.0007980454247444868, 0.012514562346041203, 0.004006112460047007, 0.021773401647806168, 0.0065296003594994545, -0.0019788499921560287, -0.022995810955762863, -0.024411870166659355, 0.009028881788253784, -0.029119959101080894, -0.013664353638887405, 0.0018593324348330498, -0.025368010625243187, 0.0018487422494217753, -0.0008071227348409593, 0.03231516852974892, -0.007068186067044735, -0.013712765648961067, 0.03558299317955971, 0.008133255876600742, 0.01587921380996704, -0.017549434676766396, -0.001409249845892191, 0.009143861010670662, 0.004674806259572506, 0.007068186067044735, 0.02633625641465187, -0.022414864972233772, 0.03601870313286781, -0.0024599467869848013, 0.012333016842603683, 0.002316222758963704, 0.00295012048445642, -0.00047844904474914074, 0.014063754118978977, -0.04804914444684982, -0.012575077824294567, 0.0010854931315407157, -0.0314195416867733, 0.0252227745950222, 0.0029138114769011736, 0.02839377522468567, -0.005694488994777203, 0.0025023072957992554, 0.042263880372047424, 0.012139367870986462, 0.02050258219242096, 0.004217916168272495, -0.00497133145108819, 0.003310186555609107, -0.010196827352046967, -0.03248460963368416, -0.026118401437997818, 0.0005192968528717756, -0.013736971653997898, -0.01629071682691574, -0.0047020381316542625, 0.0198369137942791, -0.019026007503271103, -0.007019774056971073, -0.017597846686840057, -0.009059139527380466, 0.029216783121228218, -0.002603670582175255, -0.024811269715428352, -0.029240990057587624, -0.010662795044481754, -0.05068761110305786, 0.011860997416079044, -0.018251411616802216, 0.016956385225057602, -0.02303212136030197, -0.0011671887477859855, 0.013773281127214432, -0.03587346524000168, -0.026263637468218803, 0.01360383816063404, -0.010856444016098976, 0.0019440538017079234, 0.01942540891468525, -0.010329960845410824, 0.025150155648589134, -0.014039548113942146, -0.004668754991143942, 0.018832359462976456, 0.0035159385297447443, -0.019147038459777832, 0.022705338895320892, 0.02827274426817894, -0.020442066714167595, -0.006024297326803207, 0.042602766305208206, 0.02075674571096897, -0.014862556010484695, 0.02195494808256626, -0.008411625400185585, 0.04170713946223259, -0.04311109334230423, 0.013507013209164143, -0.009289097972214222, -0.012060698121786118, -0.011007731780409813, 0.05184950307011604, -0.02820012718439102, 0.02219700999557972, -0.01527405995875597, 0.03475998342037201, 0.03149215877056122, -0.03229096159338951, -0.02104721963405609, 0.0076491329818964005, -0.01331336423754692, 0.036357589066028595, -0.023552551865577698, -0.01649646833539009, -0.017791496589779854, -0.032847702503204346, 0.02769179828464985, -0.0029017082415521145, -0.020393654704093933, 0.036938536912202835, -0.018130382522940636, 0.03200048580765724, -0.023334696888923645, -0.008302697911858559, -0.01570977084338665, -0.01345860119909048]], "input": ["ACIDS:ACIDS are classified as corrosives and are prohibited on aircraft due to their hazardous nature.", "ALKALIS:Alkalis are classified as corrosive substances and are prohibited on aircraft due to their hazardous nature and safety concerns.", "WET CELL BATTERIES:Wet cell batteries are classified as corrosive substances, which makes them hazardous in nature. Due to this classification, they are prohibited on aircraft to ensure safety during air travel.", "MATERIALS CONTAINING MERCURY:Materials containing mercury are classified as dangerous goods and are prohibited on aircraft due to their toxicity.", "LIGHT AMMUNITION:Light ammunition is restricted on aircraft and may be subject to specific regulations.", "FLAMMABLE SOLIDS:Flammable solids are classified as dangerous goods and are prohibited on aircraft due to their potential to ignite.", "BUTANE:", "DANGEROUS GOOD:\"DANGEROUS GOOD\" refers to items that pose a risk to health, safety, property, or the environment. These goods are subject to strict regulations to ensure safe handling, transportation, and disposal, reflecting their potential hazards.", "LIQUIDS IN CARRY-ON BAGS:Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.", "WHISKEY:A type of liquid that may be carried in carry-on bags, subject to restrictions.", "GELS:GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.", "COSMETICS:A type of liquid that may be carried in carry-on bags, subject to restrictions.", "BABY FOOD:Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.", "PRESCRIPTION MEDICATIONS:A type of liquid that may be carried in carry-on bags, subject to restrictions.", "CREAMS:CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.", "SECURITY CHECKPOINT:The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-3c3cfaaf1bdd233b383e7234dd762d6e b/cache/text_embedding/embedding-3c3cfaaf1bdd233b383e7234dd762d6e deleted file mode 100644 index 42b5eb47c977b404fe820a47eb0496600efd2c7d..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-3c3cfaaf1bdd233b383e7234dd762d6e +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.04764048010110855, -0.0037832886446267366, 0.05584914609789848, 0.03832389786839485, -0.008882230147719383, 0.02238498255610466, -0.034949783235788345, 0.05015847459435463, 0.0065656742081046104, 0.030392209067940712, -0.015284234657883644, 0.001247194828465581, 0.018872378394007683, 0.03552892059087753, -0.028327452018857002, 0.006420889403671026, 0.010197882540524006, 0.0026612067595124245, -0.010972166433930397, 0.018205109983682632, -0.017701510339975357, 0.041144050657749176, -0.02744615450501442, -0.0433095283806324, -0.01653064228594303, -0.0013778158463537693, 0.006125024985522032, 0.031072068959474564, 0.06400745362043381, -0.0779571533203125, 0.04842105880379677, -0.04212607070803642, 0.024437149986624718, -0.022284263744950294, 0.002796549117192626, -0.0018318418879061937, -0.016606181859970093, 0.0016744672320783138, 0.004482032731175423, -0.025079237297177315, -0.030744729563593864, -0.0015548623632639647, 0.027194354683160782, 0.005397953558713198, -0.02684183605015278, 0.06456141173839569, -0.0033363443799316883, -0.03978433459997177, 0.007572872564196587, 0.02910803072154522, -0.005734735634177923, 0.04003613442182541, 0.033287905156612396, -0.008265321142971516, -0.006203711964190006, 0.062395937740802765, 0.0063390545547008514, 0.03590662032365799, 0.03489942103624344, -0.03212962672114372, 0.00139434018637985, 0.010002737864851952, 0.008240140974521637, 0.039608072489500046, -0.0015210268320515752, 0.03789583593606949, -0.011268030852079391, 0.03051810897886753, -0.041395850479602814, -0.014440705999732018, 0.025733917951583862, 0.04230232909321785, -0.06582041084766388, 0.008857049979269505, -0.0023338673636317253, 0.008063881658017635, -0.04059009253978729, 0.030543288215994835, 0.0031364785972982645, -0.01791553944349289, -0.008573776111006737, 0.011198786087334156, 0.014969484880566597, 0.004976189229637384, -0.011330980807542801, -0.016165532171726227, -0.0399857722222805, -0.012098969891667366, 0.015133154578506947, -0.006540494039654732, 0.07120892405509949, 0.0326584056019783, -0.01904863864183426, 0.004079153295606375, 0.024097219109535217, 0.005999125074595213, 0.012571093626320362, -0.05192107334733009, 0.001746859634295106, 0.0532807894051075, -0.0030168737284839153, -0.029964150860905647, -0.05101459473371506, 0.0036070290952920914, -0.005722145549952984, -0.07624491304159164, -0.040539734065532684, 0.04071599245071411, 0.012690698727965355, 0.0003371753846295178, -0.026363415643572807, -0.03897857666015625, -0.012703289277851582, 0.07357583940029144, -0.04748940095305443, 0.013269837945699692, -0.0018932181410491467, 0.010197882540524006, -0.023027071729302406, 0.0007392678526230156, 0.02358102984726429, -0.009795003570616245, -0.010204178281128407, -0.08717301487922668, 0.013232068158686161, 0.020685335621237755, -0.04975559562444687, -0.010858857072889805, -0.037795115262269974, -0.01850726827979088, 0.023367000743746758, -0.03255768492817879, 0.056252025067806244, -0.054136909544467926, -0.01678244210779667, -0.009612448513507843, -0.0021119690500199795, -0.025834636762738228, 0.023732110857963562, -0.002006527967751026, 0.05877002328634262, -0.02817637287080288, -0.004044530913233757, 0.003141199704259634, -0.06133837625384331, 0.029410190880298615, 0.004585899878293276, 0.047338321805000305, -0.02050907537341118, -0.012325589545071125, -0.021075624972581863, 0.03210444748401642, -0.02905767224729061, -0.02131483517587185, -0.0353274792432785, 0.011696090921759605, 0.013181707821786404, 0.0020002329256385565, -0.042075708508491516, 0.0045764571987092495, 0.008567480370402336, -0.05982758104801178, 0.016492871567606926, 0.016039634123444557, 0.02570873685181141, 0.007818376645445824, -0.027018094435334206, 0.059273622930049896, -0.05217287316918373, -0.023341821506619453, -0.004708651918917894, -0.019275257363915443, -0.04910091683268547, 0.014768045395612717, -0.055597346276044846, -0.03975915536284447, 0.03615842014551163, 0.0017673183465376496, 0.01092810183763504, -0.043611686676740646, 0.013634947128593922, 0.013899336569011211, -0.060129739344120026, -0.016631362959742546, -0.023417361080646515, 0.004825109615921974, -0.03323754295706749, 0.021768074482679367, -0.027420973405241966, 0.012426309287548065, -0.012350769713521004, 0.008473055437207222, -0.0033520818687975407, 0.02845335192978382, -0.019929936155676842, -0.015070204623043537, -0.009769823402166367, -0.004862879402935505, 0.03625914081931114, 0.006373676937073469, -0.004746422171592712, -0.0466584637761116, 0.02671593613922596, 0.028755512088537216, -0.01382379699498415, 0.007289597764611244, -0.015070204623043537, 0.020219506695866585, -0.001301489071920514, -0.03220516815781593, 0.005634015426039696, -0.001506076194345951, -0.030996527522802353, 0.05161891505122185, -0.010147523134946823, -0.03364042565226555, 0.03751813620328903, -0.003367819357663393, -0.007623232435435057, 0.017273450270295143, -0.056000225245952606, 0.0015249612042680383, 0.048269979655742645, -0.0499822162091732, -0.04247858747839928, -0.027269894257187843, -0.04769084230065346, -0.06153981760144234, 0.012476669624447823, -0.031097248196601868, -0.03678791970014572, 0.014365166425704956, 0.014591786079108715, -0.024500099942088127, -0.009851658716797829, 0.04351096600294113, 0.01352163776755333, -0.01731122098863125, -0.0026832392904907465, 0.020760875195264816, -0.03444618359208107, -0.01378602720797062, -0.016291432082653046, 0.024877797812223434, 0.017348991706967354, -0.009127735160291195, -0.011639435775578022, -0.049277178943157196, 0.025343628600239754, 0.021831024438142776, 0.053331151604652405, 0.02651449665427208, 0.04008649289608002, -0.01592632383108139, 0.03024112991988659, 0.029938969761133194, -0.008869640529155731, -0.04691026359796524, 0.06551825255155563, -0.060331180691719055, -0.002664354396983981, -0.01851985976099968, -0.012608864344656467, -0.02525549754500389, -0.04225197061896324, -0.038072098046541214, 0.0014226676430553198, -0.04912609979510307, -0.004450557753443718, 0.02317815087735653, -0.06551825255155563, 0.02951091155409813, -0.00825902633368969, 0.009744644165039062, -0.029762709513306618, 0.016669131815433502, -0.008170896209776402, -0.04658292233943939, 0.021969513967633247, -0.027471333742141724, -0.06818732619285583, -0.019841806963086128, 0.03472316265106201, -0.03459726274013519, 0.02991379052400589, 0.0014840437797829509, 0.0066223288886249065, 0.0019782003946602345, 0.017625970765948296, 0.02638859674334526, 0.0799211859703064, -0.0048471419140696526, -0.02105044573545456, 0.00609669741243124, 0.005624573212116957, 0.002412554807960987, -0.005419985856860876, 0.022951532155275345, 0.023152971640229225, 0.01731122098863125, 0.039280734956264496, 0.019350796937942505, -0.025268087163567543, -0.01957741752266884, -0.05856858193874359, -0.0004953370080329478, 0.019741086289286613, -0.018759068101644516, -0.05192107334733009, -0.022019872441887856, -0.03542819991707802, 0.014629555866122246, -0.05640310421586037, -0.0459786020219326, -0.011482060886919498, -0.0139874666929245, -0.052072152495384216, -0.008630430325865746, 0.04716205969452858, 0.02319074049592018, 0.032331064343452454, 0.011437996290624142, 0.009203274734318256, 0.011142131872475147, 0.022145772352814674, -0.006181679666042328, -0.007988342083990574, 0.0030357586219906807, -0.009272519499063492, -0.0012322441907599568, -0.03736705705523491, -0.03150012716650963, -0.004903796594589949, 0.035352662205696106, -0.008655610494315624, -0.04688508063554764, -0.02538139745593071, 0.007937981747090816, -0.009832773357629776, 0.015875963494181633, -0.02638859674334526, 0.021818432956933975, -0.04602896422147751, 0.035277120769023895, -0.014176316559314728, 0.0625973790884018, 0.04059009253978729, 0.06637436896562576, 0.03648575767874718, 0.054741229861974716, 0.012042314745485783, 0.0068048834800720215, -0.01072666235268116, -0.022825632244348526, -0.04250377044081688, -0.0070189135149121284, 0.04149657115340233, -0.009492844343185425, -0.04285628721117973, 0.015674524009227753, -0.006370529532432556, -0.028831051662564278, 0.032003726810216904, 0.05277719348669052, 0.03348934277892113, -0.019275257363915443, -0.014591786079108715, -0.0025337333790957928, 0.006077812518924475, 0.013949696905910969, 0.022611603140830994, -0.026338236406445503, -0.016304023563861847, -0.01719791069626808, 0.05887074023485184, 0.01272217370569706, 0.021000085398554802, 0.02112598530948162, -0.001031591440550983, 0.007692477200180292, 0.02303966134786606, 0.005205956287682056, 0.018759068101644516, 0.021893974393606186, 0.01792813092470169, 0.04504694417119026, -0.03364042565226555, -0.005816570483148098, -0.015598984435200691, 0.03459726274013519, -0.00032183135044761, -0.03578072041273117, -0.01578783430159092, -0.01938856765627861, -0.023367000743746758, 0.016706902533769608, 0.029460551217198372, 0.022410161793231964, -0.02297671139240265, -0.0586189404129982, -0.013798616826534271, -0.07277008146047592, 0.00231340853497386, 0.022561242803931236, -0.029284290969371796, 0.005407395772635937, 0.021805843338370323, -0.005681227892637253, -0.01461696531623602, -0.039205193519592285, 0.039532534778118134, -0.0031947072129696608, 0.029863430187106133, 0.030392209067940712, -0.024739308282732964, 0.010720367543399334, -0.0025793719105422497, 0.011268030852079391, -0.021214114502072334, -0.017537841573357582, 0.011645730584859848, 0.01786518096923828, -0.008454171009361744, 0.02704327553510666, -0.021402964368462563, 0.07226648181676865, 0.017613381147384644, 0.014818405732512474, -0.023090021684765816, -0.012514439411461353, 0.005098941270262003, -0.004415934905409813, -0.021755483001470566, 0.05459015071392059, -0.011337276548147202, -0.017890360206365585, -0.036410219967365265, 0.00043907552026212215, -0.03668719902634621, -0.0054829358123242855, -0.02118893526494503, -0.037543319165706635, 0.0539858303964138, -0.005753620527684689, -0.03278430551290512, -0.04101815074682236, 0.006584559101611376, 0.009303994476795197, 0.0006373676587827504, 0.007421792484819889, 0.0019168242579326034, -0.02339218184351921, -0.06501465290784836, -0.0021119690500199795, -0.021138574928045273, -0.030492929741740227, -0.012010839767754078, -0.044543344527482986, 0.025834636762738228, -0.025935357436537743, 0.05015847459435463, 0.027370614930987358, 0.03452172130346298, 0.0017767607932910323, 0.037946198135614395, 0.03359006345272064, 0.0068489485420286655, -0.017563020810484886, -0.02991379052400589, -0.0459534227848053, 0.011979364790022373, -0.029687169939279556, 0.021289654076099396, -0.037744756788015366, -0.020899364724755287, -0.037291519343853, 0.04456852748990059, 0.01626625284552574, -0.020081017166376114, 0.01612776331603527, 0.046608101576566696, 0.06672688573598862, -0.056856345385313034, -0.02659003622829914, 0.061791617423295975, 0.014793225564062595, 0.08213702589273453, 0.012967678718268871, 0.021302243694663048, -0.020018067210912704, -0.04643184319138527, -0.0014785357052460313, 0.006433479487895966, -0.012501848861575127, 0.011878645047545433, 0.03603252023458481, -0.04557572305202484, -0.017814820632338524, 0.037795115262269974, 0.006254072301089764, 0.02139037474989891, -0.03323754295706749, 0.010046803392469883, 0.02238498255610466, 0.029410190880298615, 0.015624163672327995, -0.025645786896348, 0.014377756044268608, -0.01102882158011198, 0.013169118203222752, -0.03250732645392418, 0.030593648552894592, 0.02850371226668358, 0.01329501811414957, -0.0006188761326484382, -0.03419438377022743, 0.010638532228767872, -0.014138546772301197, -0.029536090791225433, -0.0006771048065274954, 0.003012152388691902, -0.022133182734251022, -0.006005419883877039, -0.02204505354166031, -0.018872378394007683, 0.03031666949391365, 0.0013101446675136685, -0.06803624331951141, -0.011337276548147202, -0.004472590051591396, -0.005690670572221279, -0.02305225096642971, -0.018419139087200165, -0.018419139087200165, 0.007012618239969015, 0.021503685042262077, 0.020357996225357056, 0.040791530162096024, -0.014402936212718487, -0.006244629621505737, -0.022611603140830994, -0.03842461481690407, 0.003245067084208131, -0.007975751534104347, 0.012149329297244549, 0.005432575941085815, -0.0022772124502807856, 0.01838137023150921, 0.01471768505871296, 0.029133211821317673, -0.01851985976099968, 0.00231340853497386, -0.0063925618305802345, 0.014151136390864849, 0.01036155316978693, 0.02410981059074402, 0.04323398694396019, -0.013647537678480148, -0.011897530406713486, 0.023694340139627457, 0.0009049047366715968, 0.030266309157013893, 0.016769852489233017, -0.020345406606793404, 0.007837262004613876, 0.029032491147518158, -0.008517120964825153, -0.03351452574133873, 0.008403810672461987, -0.036334678530693054, -0.06748228520154953, 0.03346416354179382, 0.015888553112745285, 0.015750063583254814, 0.030820269137620926, 0.007327367551624775, 0.02618715725839138, -0.02358102984726429, 0.0035126041620969772, 0.015548624098300934, 0.011777925305068493, 0.031474947929382324, 0.009851658716797829, -0.012168214656412601, -0.001409290824085474, 0.01035525742918253, -0.03275912627577782, -0.05348223075270653, 0.003093987237662077, 0.009310289286077023, -0.011387635953724384, 0.020672746002674103, -0.02277527190744877, -0.016744671389460564, -0.0005185497575439513, 0.044140465557575226, -0.005319266114383936, 0.004469442646950483, -0.041068512946367264, 0.023732110857963562, 0.016089992597699165, -0.01239483430981636, 0.00988942850381136, 0.04602896422147751, -0.0859140157699585, -0.03505050018429756, -0.03809727728366852, -0.03336344286799431, -0.011205080896615982, 0.005124121438711882, 0.001276309136301279, 0.008007226511836052, -0.0017122371355071664, -0.048798758536577225, -0.009618744254112244, -0.02005583606660366, -0.05957578122615814, -0.05781318247318268, -0.018935328349471092, -0.05124121531844139, -0.030593648552894592, 0.01123026106506586, -0.009599858894944191, -0.034672800451517105, -0.05615130811929703, 0.02870515175163746, 0.01853244937956333, -0.04172319173812866, -0.02390836924314499, -0.05237431451678276, 0.0074406773783266544, 0.011708680540323257, -0.00846046581864357, -0.012942498549818993, -0.03371596336364746, -0.00825902633368969, -2.345252369195805e-06, 0.0037297813687473536, 0.005120974034070969, 0.045323923230171204, 0.015674524009227753, 0.01072666235268116, 0.023404771462082863, -0.044341906905174255, 0.007289597764611244, 0.025935357436537743, 0.006329611875116825, -0.010330078192055225, 0.02123929373919964, -0.017411941662430763, 0.028805872425436974, 0.005964502692222595, 0.00120785110630095, -0.018028849735856056, 0.006974848452955484, -0.018960507586598396, -0.016606181859970093, 0.010959576815366745, 0.01705942116677761, 0.033816684037446976, -0.03912965580821037, 0.03648575767874718, 0.041672829538583755, 0.00236534234136343, 0.040741171687841415, 0.04577716439962387, 0.011179901659488678, -0.004592194687575102, -0.013685307465493679, 0.002379506127908826, 0.04403974488377571, 0.027496514841914177, -0.007125928066670895, -0.02045871503651142, -0.0006778916576877236, -0.021616993471980095, 0.016694312915205956, 0.04542464390397072, -0.0068300636485219, 0.03223034739494324, -0.005442018620669842, 0.0029649401549249887, -0.0289821308106184, 0.024034269154071808, 0.03172674775123596, -0.019300438463687897, -0.015536034479737282, -0.013672716915607452, 0.0032545095309615135, 0.039280734956264496, -0.008882230147719383, 0.05307935178279877, -0.01844431832432747, 0.029485730454325676, 0.02817637287080288, 0.014780635014176369, -0.006760818883776665, -0.03323754295706749, 0.01684539206326008, -0.032683584839105606, 0.0030861184932291508, -0.005460903514176607, -0.018822018057107925, -0.03505050018429756, -0.02405945025384426, -0.046255581080913544, -0.0001245227613253519, -0.00795686710625887, 0.026766294613480568, -0.015674524009227753, -0.03651094064116478, -0.01718532107770443, -0.04275557026267052, -0.02232203260064125, -0.040816713124513626, -0.008800395764410496, -0.03668719902634621, -0.0023527522571384907, 0.03172674775123596, 0.008189781568944454, -0.011022526770830154, 0.054791588336229324, -0.026287876069545746, 0.006102992221713066, 0.0019640368409454823, -0.0015587967354804277, 0.004286888055503368, -0.03348934277892113, -0.011752745136618614, 0.01396228652447462, 0.03925555571913719, -0.02591017633676529, -0.01605222374200821, 0.010896626859903336, -0.042654849588871, -0.0025290120393037796, -0.054993029683828354, 0.009171799756586552, -0.005171333905309439, -0.014465886168181896, 0.012942498549818993, -0.023744700476527214, 0.009883133694529533, -0.01339573785662651, -0.019627777859568596, 0.008668200112879276, 0.010588171891868114, 0.0039438107050955296, -0.013282427564263344, 0.018268059939146042, 0.029737530276179314, 0.01012863777577877, -0.03291020542383194, -0.004651997238397598, 0.011702385731041431, -0.013899336569011211, 0.0072958930395543575, -0.025733917951583862, -0.02784903347492218, 0.024210529401898384, 0.010103458538651466, -0.0030845447909086943, -0.012640339322388172, -0.006905603688210249, -0.012778828851878643, -0.016933521255850792, -0.01665654219686985, -0.02271232195198536, -0.008265321142971516, -0.018607988953590393, -0.02005583606660366, -0.029359830543398857, -0.02971235103905201, 0.03477352112531662, 0.017563020810484886, -0.03424474224448204, -0.030014509335160255, -0.014793225564062595, -0.012489259243011475, -0.006886718329042196, 0.031223148107528687, -0.002116690156981349, 0.009001835249364376, 0.026564855128526688, -0.020030656829476357, -0.04610450193285942, -0.008082766085863113, -0.010059393011033535, 0.013911927118897438, 0.024764489382505417, -0.023807650431990623, -0.0025353070814162493, 0.028428172692656517, -0.043284349143505096, -0.02598571591079235, -0.002914580050855875, 0.019841806963086128, -0.03739223629236221, -0.007037798408418894, -0.008246435783803463, 0.013370557688176632, 0.025670967996120453, -0.01811697892844677, 0.01838137023150921, 0.06486357003450394, 0.002012823009863496, -0.017084602266550064, -0.014805815182626247, 0.006235186941921711, -0.014428116381168365, -0.01906122826039791, -0.002340162405744195, 0.036813098937273026, 0.0029680875595659018, -0.019476696848869324, -0.0373166985809803, 0.01319429837167263, 0.014679915271699429, -0.01845690980553627, -0.04811890050768852, 0.04476996511220932, -0.003597586415708065, 0.008227551355957985, 0.0014281757175922394, 0.042805928736925125, -0.0007723165326751769, 0.010260832495987415, 0.013068398460745811, -0.017625970765948296, -0.008428990840911865, 0.049403078854084015, 0.010267128236591816, 0.015070204623043537, 0.0026155682280659676, -0.04776638001203537, -0.003899746108800173, -0.030543288215994835, -0.020496485754847527, 0.017147552222013474, -0.010468567721545696, 0.053734030574560165, 0.01586337387561798, -0.0016886309022083879, -0.014100776053965092, -0.0005803193198516965, 0.019073817878961563, 0.023341821506619453, 0.006005419883877039, -0.05761174485087395, 0.03185264766216278, 0.00091985531616956, -0.01611517369747162, -0.0028343191370368004, 0.004060268402099609, -0.009058489464223385, -0.018570218235254288, 0.008227551355957985, -0.02538139745593071, 0.010141228325664997, -0.007339957635849714, -0.008573776111006737, 0.02412240020930767, -0.013634947128593922, 0.022347211837768555, -0.03296056389808655, -0.0036510939244180918, -0.006723048631101847, -0.006603443995118141, 0.013509047217667103, 0.017160141840577126, -0.005794537719339132, -0.00909626018255949, 0.007012618239969015, -0.013156527653336525, -0.02392096072435379, -0.027219533920288086, 0.017953310161828995, 0.014037827029824257, -0.0024361610412597656, -0.014503655955195427, -0.01651805266737938, 0.020345406606793404, 0.03761885687708855, -0.012036019936203957, -0.0009591990383341908, 0.000355863623553887, -0.029359830543398857, 0.030140409246087074, 0.03416920453310013, -0.011110656894743443, 0.021415553987026215, -0.02711881510913372, 0.04154692962765694, -0.01215562503784895, 0.0038651234935969114, -0.007491037715226412, -0.0002315375895705074, -0.0050706141628324986, -0.00030353653710335493, -0.02452527917921543, -0.043334707617759705, -0.01149465050548315, -0.038072098046541214, -0.010506337508559227, 0.00556477066129446, 0.008529710583388805, -0.03789583593606949, 0.01931302808225155, -0.014629555866122246, -0.01791553944349289, -0.012036019936203957, -0.025003697723150253, -0.027395794168114662, 0.0016304022865369916, 0.028831051662564278, 0.002706845523789525, -0.012892138212919235, 0.010556697845458984, 0.018419139087200165, 0.03948217257857323, 0.05846786126494408, 0.015964092686772346, 0.016505463048815727, 0.008435285650193691, 0.005870077759027481, -0.001034738845191896, 0.004076005890965462, 0.012734763324260712, 0.028100833296775818, -0.01637956313788891, 0.011979364790022373, 0.03915483504533768, 0.005659195594489574, 0.020672746002674103, -0.0030420536641031504, -0.0119856595993042, 0.022863401100039482, -0.01288584340363741, 0.05801462382078171, -0.021302243694663048, -0.01685798168182373, -0.01805402897298336, 0.007875031791627407, -0.0659714862704277, 0.027345433831214905, 0.014893945306539536, 0.023467721417546272, 0.013018038123846054, 0.0017452858155593276, -0.009795003570616245, 0.043410249054431915, -0.015019845217466354, 0.049856316298246384, -0.001240112935192883, -0.0050234016962349415, -0.009329174645245075, 0.003597586415708065, -0.012143034487962723, -0.006125024985522032, 0.024072039872407913, -0.0028343191370368004, 0.02251088246703148, 0.012023430317640305, -0.0029476287309080362, 0.01382379699498415, 0.016429923474788666, 0.03379150480031967, -0.02792457304894924, 0.029485730454325676, 0.021906564012169838, -0.023429950699210167, 0.0072581227868795395, 0.0466584637761116, 0.026086436584591866, -0.028604432940483093, 0.031751926988363266, -0.02204505354166031, -0.00939841940999031, -0.0048471419140696526, -0.022070232778787613, -0.016669131815433502, 0.025431757792830467, -0.0034559492487460375, 0.01811697892844677, -0.0009835921227931976, 0.040262751281261444, 0.005794537719339132, 0.016291432082653046, -0.0026155682280659676, 0.007201468106359243, 0.02179325371980667, 0.018759068101644516, 0.009832773357629776, 0.006886718329042196, -0.010166408494114876, 0.037669215351343155, 0.0339929424226284, 0.017034241929650307, 0.005328708793967962, 0.017399350181221962, 0.022636782377958298, -0.0005236644647084177, -0.0027509103529155254, 0.009813888929784298, 0.002223704941570759, -0.005275201052427292, 0.02064756490290165, 0.001786203240044415, -0.03384186327457428, -0.005319266114383936, -0.0159892737865448, -0.051064953207969666, 0.02384542115032673, 0.04552536457777023, -0.035604462027549744, 0.004195610526949167, 0.01619071327149868, -0.03877713531255722, -0.009851658716797829, -0.014956895262002945, -9.565432992530987e-05, -0.0003834041999652982, 0.03719079867005348, 0.0359821617603302, 0.04043901339173317, -0.032003726810216904, 0.020156556740403175, 0.002340162405744195, 0.029208751395344734, -0.01945151761174202, 0.0033237545285373926, 0.006584559101611376, 0.03890303522348404, 0.004447409883141518, -0.002031707903370261, 0.01760079152882099, -0.014037827029824257, 0.004554424900561571, -0.01388674695044756, 0.022750092670321465, -0.02777349390089512, -0.01402523647993803, -0.03525194153189659, 0.039003755897283554, 0.003093987237662077, 0.005599393043667078, -0.02111339569091797, 0.009939788840711117, 0.012841778807342052, 0.011463175527751446, -0.00017193189705722034, 0.06390673667192459, -0.06405781209468842, -0.004768454469740391, 0.00035035551991313696, -0.00231498247012496, -0.0052563161589205265, -0.04071599245071411, 0.020962314680218697, 0.007012618239969015, -0.012375948950648308, -0.01952705718576908, -0.014919125474989414, -0.008252731524407864, 0.00667898403480649, -0.007503627333790064, -0.03160084784030914, 0.017437120899558067, 0.006741933990269899, 0.022800451144576073, 0.0008828722639009356, 0.026766294613480568, 0.039859872311353683, 0.005325560923665762, 0.0006554657593369484, -0.019023457542061806, 0.030392209067940712, 0.005275201052427292, -0.00176102330442518, 0.035075683146715164, 0.0004119283694308251, -0.018670938909053802, -0.018809428438544273, 0.006109287496656179, -0.020018067210912704, -0.014730275608599186, -0.005171333905309439, -0.017965899780392647, 0.0017641708254814148, -0.028025293722748756, -0.028604432940483093, 0.040539734065532684, 0.002458193339407444, -0.014377756044268608, 0.00689301360398531, 0.010348962619900703, 0.033741142600774765, -0.0007931686704978347, 0.001646139775402844, -0.00026537314988672733, 0.005048581399023533, 0.0412951298058033, 0.02412240020930767, -0.012344473972916603, 0.04059009253978729, -0.03630949929356575, 0.009385829791426659, 0.03243178501725197, -0.02424830012023449, 0.04678436368703842, -0.003745518857613206, -0.0035157515667378902, 0.035277120769023895, -0.024336429312825203, -0.0016445659566670656, -0.011098066344857216, -0.00468032481148839, -0.0273202545940876, 0.026036076247692108, -0.01259627379477024, -0.04028793424367905, -0.008265321142971516, -0.010959576815366745, 0.00893259048461914, 0.019741086289286613, 0.021566633135080338, -0.014000056311488152, -0.0005374347092583776, 0.03497496247291565, 0.007786902133375406, -0.025696147233247757, -0.02311520092189312, -0.04358650743961334, -0.042604487389326096, -0.0058889626525342464, 0.035151220858097076, -0.02264937199652195, -0.055395908653736115, -0.01068889256566763, 0.013735666871070862, 0.0017547283787280321, 0.004812519531697035, -0.015271644107997417, -0.0017987932078540325, -0.011003641411662102, 0.031122427433729172, 0.023266281932592392, 0.07186359912157059, 0.003676273860037327, -0.0346224419772625, 0.015259054489433765, 0.015498263761401176, -0.03202890604734421, 0.006609738804399967, 0.04348578676581383, 0.006691573653370142, 5.74909572605975e-05, -0.008120536804199219, 0.024197939783334732, 0.01386156678199768, 0.0008789378916844726, -0.017348991706967354, -0.0024865209124982357, 0.005102089140564203, -0.012300409376621246, 0.0012109986273571849, -0.007988342083990574, 0.017563020810484886, -0.06909380108118057, 0.011299505829811096, -0.014881354756653309, -0.0203076358884573, -0.020748285576701164, -0.002868941519409418, -0.007812081836163998, -0.048471421003341675, 0.03044256940484047, 0.006559378933161497, -0.006609738804399967, -0.046331122517585754, -0.00414839806035161, 0.040413834154605865, -0.028352633118629456, -0.038676414638757706, -0.009681694209575653, 0.019665546715259552, 0.013206887990236282, -0.012892138212919235, -0.011318391188979149, 0.004497770220041275, -0.01885978877544403, 0.008573776111006737, 0.0054860832169651985, -0.04290664941072464, -0.04801817983388901, 0.0199802964925766, -0.014667325653135777, 0.021679943427443504, 0.0293094702064991, -0.005404248367995024, -0.01029860321432352, -0.018091799691319466, 0.01345868781208992, 0.00419875793159008, -0.001167720532976091, -0.03870159387588501, -0.0043844603933393955, 0.0014777487376704812, 0.004834551829844713, -0.00813312642276287, 0.005508115980774164, 0.005917290225625038, -0.025809457525610924, -0.014277036301791668, -0.0003839943674392998, -0.0005854340270161629, -0.00021875087986700237, -0.0017232534009963274, 0.008756330236792564, -0.0013856845907866955, -0.0018963655456900597, 0.02631305530667305, 0.012533323839306831, -0.012143034487962723, -0.005517558194696903, -0.02558283694088459, 0.0010701481951400638, -0.043284349143505096, -0.01345868781208992, 0.028025293722748756, 0.05237431451678276, 0.018545038998126984, -0.024487508460879326, -0.006584559101611376, 0.04618004336953163, -0.003462244290858507, 0.022158363834023476, 0.02643895521759987, -0.007579167373478413, 0.022964121773838997, 0.009152914397418499, 0.017890360206365585, 0.005920437630265951, -0.018746478483080864, -0.009505433961749077, -0.02825191244482994, -0.004482032731175423, 0.012577389366924763, -0.04109369218349457, -0.03225552663207054, 0.024613408371806145, 0.00012039167631883174, 0.011437996290624142, -0.004500917624682188, 0.01035525742918253, 0.002113542752340436, -0.009417303837835789, -0.04781673848628998, 0.009738348424434662, 0.009857953526079655, -0.021818432956933975, -0.023694340139627457, -0.008145716041326523, 0.03646057844161987, -0.016480281949043274, -0.012451489455997944, 0.05428798869252205, 0.012080084532499313, -0.020206917077302933, 0.047791559249162674, -0.008384926244616508, -0.01099105179309845, 0.03613324090838432, 0.012822893448174, 0.03583107888698578, -0.012879548594355583, 0.012929907999932766, -0.004400197882205248, -0.011211376637220383, 0.010978461243212223, -0.007686182390898466, -0.01372307725250721, 0.014642145484685898, -0.021163754165172577, 0.0077554271556437016, 0.0008875935454852879, 0.022901171818375587, -0.0073021878488361835, 0.004607932176440954, 0.0030200211331248283, -0.042730387300252914, -0.014012646861374378, -0.025733917951583862, 0.0009442484006285667, -0.0033772618044167757, -0.020068425685167313, 0.004189315717667341, -0.012640339322388172, 0.026262696832418442, 0.03610805794596672, -0.004305772949010134, -0.00010583450784906745, 0.004327805247157812, -0.0032733946572989225, 0.0119856595993042, 0.0031711009796708822, -0.012728468514978886, -0.003141199704259634, 0.03092098794877529, 0.009373239241540432, 0.006062075030058622, 0.01352163776755333, -0.004696062300354242, 0.008712265640497208, -0.007100748363882303, -0.0116646159440279, -0.0018806280568242073, -0.01119249127805233, -0.002735172864049673, 0.011576485820114613, 0.016744671389460564, -0.04247858747839928, -0.012640339322388172, -0.004104332998394966, 0.04469442367553711, -0.028151193633675575, -0.014591786079108715, 0.008416401222348213, 0.049000199884176254, -0.023895779624581337, 0.002993267495185137, -0.004400197882205248, -0.004277445375919342, 0.009996443055570126, 0.017072010785341263, 0.003871418535709381, -0.007119633257389069, -0.014478475786745548, 0.007289597764611244, 0.02058461494743824, -0.006691573653370142, -0.005841750185936689, -0.03550374135375023, -0.0006263514515012503, 0.019841806963086128, -0.006452364381402731, -0.014478475786745548, -0.028277093544602394, 0.004409640096127987, 0.0012133591808378696, -0.028604432940483093, -0.024072039872407913, -0.01865834929049015, 0.0233292318880558, 0.021352604031562805, -0.005120974034070969, 0.002843761583790183, 0.022372392937541008, 0.0011795236496254802, 0.01957741752266884, 0.02611161582171917, 0.0216547641903162, -0.02752169407904148, -0.006723048631101847, 0.006294989492744207, -0.015347184613347054, -0.03351452574133873, -0.013534227386116982, -0.003474834142252803, 0.014302216470241547, -0.012149329297244549, 0.015775242820382118, 0.04623040184378624, 0.013899336569011211, -0.023467721417546272, 0.02623751573264599, -0.03545337915420532, -0.008303090929985046, 0.02112598530948162, 0.015133154578506947, 0.002637600526213646, -0.04441744461655617, -0.01425185613334179, 0.011576485820114613, -0.0169964712113142, 0.012652928940951824, -0.020395765081048012, -0.002469209721311927, -0.012300409376621246, 0.014201496727764606, -0.012237459421157837, 0.008882230147719383, 0.010676302015781403, -0.03502532094717026, -0.019438927993178368, -0.014893945306539536, -0.021956922486424446, -0.007598052266985178, 0.025129597634077072, -0.01985439658164978, -0.016291432082653046, 0.021893974393606186, -0.02404686063528061, -0.021226704120635986, 0.015901142731308937, -0.019426338374614716, -0.029762709513306618, 0.01151983067393303, -0.033539704978466034, 0.021705124527215958, 0.002936612581834197, 0.02437420003116131, 0.019678136333823204, -0.022158363834023476, 0.0014761750353500247, -0.02752169407904148, 0.009713169187307358, -0.05368367210030556, -0.0010119195794686675, -0.03313682600855827, -0.010965871624648571, -0.02524290792644024, 0.005734735634177923, 0.013370557688176632, 0.0499570369720459, -0.03371596336364746, -0.03489942103624344, -0.010248242877423763, 0.023555850610136986, 0.011387635953724384, -0.0035063091199845076, 0.02337959036231041, 0.0286547914147377, 0.006357939448207617, 0.03459726274013519, -0.0020978052634745836, -0.003108151024207473, 0.013219477608799934, -0.005643458105623722, -0.0035881439689546824, 0.01985439658164978, 0.00012196542229503393, 0.010273423045873642, 0.006216302048414946, 0.02825191244482994, -0.013282427564263344, -0.013937106356024742, 0.04356132820248604, 0.0433095283806324, -0.0033269019331783056, -0.004611079581081867, 0.020420946180820465, 0.03306128457188606, 0.0024361610412597656, 0.04935271665453911, 0.0041200704872608185, 0.005152449011802673, -0.022133182734251022, 0.02598571591079235, 0.02246052213013172, -0.018079210072755814, -0.02711881510913372, 0.01465473510324955, 0.0016083698719739914, 0.020143967121839523, 0.03270876407623291, 0.023744700476527214, 0.002390522276982665, -0.005737883038818836, -0.018897557631134987, -0.009851658716797829, 0.043259166181087494, 0.006071517243981361, 0.024424558505415916, -0.015838192775845528, -0.002321277279406786, -0.0022473111748695374, 0.02004324644804001, -0.00357240648008883, 0.015246464870870113, -0.02958645112812519, 0.026413775980472565, -0.011022526770830154, -0.019703317433595657, 0.014214086346328259, -0.002774516586214304, -0.011274326592683792, 0.0026486169081181288, -0.01272217370569706, -0.006232039537280798, 0.005268906243145466, 0.011771630495786667, 0.025733917951583862, 0.015422724187374115, 0.016958702355623245, -0.011110656894743443, 0.012338179163634777, -0.0003938302688766271, 0.016102584078907967, 0.01435257587581873, 0.010071983560919762, 0.03844979405403137, -0.011866055428981781, 0.01029860321432352, -0.001808235771022737, -0.0007007110398262739, -0.037996556609869, 0.0037675511557608843, 0.015183514915406704, -0.030895808711647987, 0.04142102971673012, 0.010978461243212223, -0.030467748641967773, -0.008945180103182793, -0.017172731459140778, 0.022750092670321465, 0.010411912575364113, -0.00925992988049984, -0.027874212712049484, -0.016203302890062332, -0.04403974488377571, 0.041395850479602814, -0.010821087285876274, -0.024928158149123192, -0.010097162798047066, -0.00709445308893919, 0.004963599145412445, -0.006735638715326786, 0.004976189229637384, 0.003120741108432412, -0.017575610429048538, 0.04006131365895271, -0.030946169048547745, -0.007629527244716883, -0.017839999869465828, 0.018872378394007683], [0.04942358657717705, 0.0379633754491806, 0.044210225343704224, 0.021795066073536873, -1.8301310774404556e-05, 0.022977832704782486, -0.018453462049365044, 0.059345047920942307, -9.464647882850841e-05, 0.036631327122449875, -0.025423748418688774, 0.018740542232990265, 0.027536652982234955, 0.0027444788720458746, -0.03240551799535751, -0.01899317093193531, -0.018637193366885185, 0.015800848603248596, -0.001867451355792582, -0.004874607548117638, 0.030131850391626358, 0.03968585282564163, -0.015697499737143517, -0.03495478630065918, -0.03454139083623886, 0.028271576389670372, -0.03973178565502167, 0.017511840909719467, 0.04384276270866394, -0.044715482741594315, 0.07652387768030167, -0.04051264002919197, 0.048367131501436234, -0.01408985536545515, -0.001571759581565857, 0.01838456280529499, 0.008221953175961971, -0.018441978842020035, 0.0005766706890426576, -0.042074352502822876, 0.015330038964748383, 0.008078414015471935, -0.0005644698394462466, 0.014560665935277939, -0.021645784378051758, 0.09939835965633392, -0.0032181597780436277, -0.05103122815489769, -0.010926241055130959, 0.02687062881886959, -0.021186457946896553, 0.07064449042081833, -0.011850636452436447, -0.05498144030570984, 0.0036372956819832325, 0.04138536378741264, -0.004633461125195026, 0.0133434496819973, 0.011758770793676376, -0.04878052696585655, -0.003918633330613375, 0.016995098441839218, 0.01980847679078579, 0.04659872502088547, 0.013883158564567566, 0.04322266951203346, 0.0020239094737917185, 0.04639202728867531, -0.04721881449222565, 0.0006139909964986145, 0.026526134461164474, 0.02981032244861126, -0.040971968322992325, -0.013515696860849857, 0.006424836348742247, 0.03070600889623165, -0.03332417458295822, 0.00020992678764741868, 0.019441016018390656, -0.03199212625622749, -0.03846863657236099, -0.002698546042665839, 0.01041523925960064, 0.02091086097061634, -0.02172616682946682, -0.0026109868194907904, -0.012137715704739094, -0.028156744316220284, 0.030958639457821846, -0.0006143498467281461, 0.03697582334280014, 0.0006685361149720848, 0.0028980663046240807, -0.00309471576474607, 0.027720384299755096, 0.014376934617757797, 0.008147312328219414, -0.04526667669415474, 0.008354010060429573, 0.043498266488313675, 0.015686016529798508, -0.018947238102555275, -0.04781594127416611, 0.0057588121853768826, 0.017833370715379715, -0.10656386613845825, -0.05181208625435829, 0.05475177988409996, 0.019946275278925896, 0.016237208619713783, -0.0033846658188849688, -0.04891832545399666, 0.021565401926636696, 0.03828490525484085, -0.025515614077448845, -0.005741587374359369, -0.03229068964719772, -0.023586440831422806, 0.014870711602270603, -0.025446714833378792, 0.016604671254754066, -0.04786187410354614, -0.0034822728484869003, -0.071517214179039, 0.005778907798230648, 0.018269730731844902, -0.04538150876760483, -0.015892714262008667, -0.04607049748301506, -0.06563782691955566, 0.025033321231603622, -0.04271741211414337, 0.02719215862452984, -0.010185576044023037, 0.028639039024710655, 0.0031779685523360968, 0.014618081972002983, -0.0008734390139579773, 0.03396723046898842, -0.02123239077627659, 0.03947915509343147, -0.01869460940361023, -0.0003732031909748912, -0.012195131741464138, -0.05888571962714195, 0.011598006822168827, 0.012665942311286926, 0.03199212625622749, -0.025194086134433746, 0.00984682235866785, -0.0011928147869184613, 0.008497549220919609, -0.0382160060107708, -0.005196136888116598, -0.006677466444671154, 0.022300325334072113, -0.004056431353092194, 0.0063387127593159676, 0.0009789406321942806, 0.014583632349967957, 0.009984620846807957, -0.04597863182425499, -0.010937724262475967, -0.006516702007502317, 0.037848543375730515, 0.0035081098321825266, -0.022059179842472076, 0.09636680781841278, -0.049974776804447174, -0.01689174957573414, -0.007125310134142637, -0.007900424301624298, -0.015398937277495861, 0.004001886583864689, -0.0533737987279892, -0.04166095703840256, 0.024528061971068382, 0.005253552459180355, 0.012057333253324032, -0.04427912086248398, 0.03506961464881897, 0.05544076859951019, -0.018040068447589874, -0.010133901610970497, 0.01668505370616913, 0.025997908785939217, -0.04030594229698181, -0.04303893819451332, -0.02413763292133808, 0.0006778661627322435, 0.014250620268285275, 0.01617979258298874, -0.01011093519628048, 0.023563474416732788, -0.0007212869240902364, -0.011402792297303677, -0.015915680676698685, -0.007044927682727575, -0.001953575061634183, -0.02102569304406643, 0.019647711887955666, -0.04487624764442444, 0.014847745187580585, 0.0339442640542984, -0.001929173362441361, 0.030430413782596588, 0.012803739868104458, 0.008796111680567265, -0.0004051407740917057, 0.012677425518631935, 0.009887013584375381, -0.00352533464320004, -0.04175282269716263, 0.030131850391626358, -0.021565401926636696, -0.036217935383319855, 0.05093936249613762, -0.027559619396924973, 0.034794021397829056, -0.0028306026943027973, -0.05341973155736923, -0.02981032244861126, 0.03467918932437897, -0.042487747967243195, -0.016730986535549164, -0.0331634096801281, -0.04657575860619545, -0.05548670142889023, -0.043383434414863586, -0.06742919981479645, -0.05034223943948746, 0.0012243934907019138, 0.026411302387714386, -0.04919392243027687, -0.0037262903060764074, 0.014468800276517868, 0.006327229551970959, 0.003192322561517358, -0.015146307647228241, 0.0519498847424984, -0.01809748448431492, -0.00985830556601286, -0.00214735371991992, 0.006637275218963623, 0.020991243422031403, -0.03890499845147133, -0.005856419447809458, -0.02797301486134529, -0.012872639112174511, 0.005735845770686865, 0.02595197595655918, 0.052501074969768524, 0.043704964220523834, 0.005276518873870373, 0.016639120876789093, 0.0415920615196228, -0.03897389397025108, -0.021335739642381668, 0.01040375605225563, -0.03635573014616966, 0.007159759756177664, -0.032267723232507706, -0.027628518640995026, -0.008767403662204742, -0.03382943198084831, -0.058242663741111755, 0.020566366612911224, -0.026043841615319252, 0.01577788218855858, 0.04604753106832504, -0.04232698306441307, 0.041982486844062805, -0.002095679519698024, -0.03787150979042053, -0.05948284640908241, 0.011873602867126465, 0.008836302906274796, -0.04584083333611488, 0.011041073128581047, -0.03049931302666664, -0.01627165824174881, 0.00016076445172075182, 0.012562593445181847, -0.038055241107940674, 0.00837697647511959, -0.020049624145030975, 0.04411835968494415, -0.019349150359630585, 0.012723357416689396, -0.00434638187289238, 0.045932698994874954, 0.0016176922945305705, -0.008974101394414902, 0.03382943198084831, -0.006160723511129618, 0.007636311464011669, 0.00013725981989409775, 0.013550146482884884, -0.0072401417419314384, 0.0017339594196528196, 0.02517111971974373, -0.012792256660759449, -0.008727213367819786, -0.012711874209344387, -0.02971845678985119, -0.009008551016449928, 0.007900424301624298, -0.004222937393933535, -0.03467918932437897, 0.0008612381061539054, -0.02343716099858284, 0.011023848317563534, -0.018005618825554848, -0.06706174463033676, 0.006154981907457113, -0.009875530377030373, -0.07381384819746017, -0.007676502224057913, 0.0650407001376152, 0.01585826463997364, 0.014181721024215221, 0.026824695989489555, 0.009513810276985168, 0.0174888763576746, -0.0017712797271087766, -0.007521479390561581, 0.014411384239792824, 0.025837143883109093, -0.01445731706917286, 0.016593188047409058, -0.023173047229647636, -0.057553671300411224, 0.00038935139309614897, -0.0010076486505568027, -0.020646749064326286, -0.035827506333589554, -0.015594151802361012, 0.011839153245091438, 0.015743432566523552, 0.032497383654117584, -3.754459976335056e-05, 0.03364570438861847, -0.010185576044023037, 0.0004995181225240231, -0.042694445699453354, 0.016857299953699112, 0.007435355801135302, 0.03738921880722046, -0.003453564830124378, 0.03568970784544945, 0.012941538356244564, 0.0039559537544846535, -0.030751941725611687, 0.0042746118269860744, -0.04402649402618408, -0.03688395768404007, 0.030797874554991722, 0.016329074278473854, -0.040765270590782166, 0.012769290246069431, 0.01565156690776348, -0.028340475633740425, 0.03961695358157158, 0.07234400510787964, 0.009370271116495132, -0.03649352863430977, -0.0224151574075222, 0.005810486618429422, 0.01899317093193531, 0.01090327464044094, 0.006378903519362211, -0.009427686221897602, -0.015996063128113747, -0.005486086942255497, 0.07046075910329819, -0.0022837163414806128, 0.008939651772379875, 0.008531998842954636, -0.037618882954120636, -0.0028062008786946535, -0.007814300246536732, 0.016650604084134102, -0.013021920807659626, -0.01313675194978714, -0.026916561648249626, 0.05397092178463936, -0.0400303490459919, -0.041982486844062805, -0.031142370775341988, 0.021795066073536873, 0.02131277322769165, -0.031877294182777405, -0.010541554540395737, -0.00783726666122675, -0.022794101387262344, 0.05121495947241783, 0.0016148214926943183, 0.03447249159216881, -0.012286997400224209, -0.04597863182425499, -0.03192322701215744, -0.08286259323358536, 0.020233353599905968, 0.006792298052459955, -0.017511840909719467, 0.026434268802404404, -0.006453544367104769, 0.01147169154137373, -0.028225643560290337, -0.06021776795387268, 0.014641048386693, 0.006453544367104769, 0.01758074015378952, 0.049561381340026855, -0.027444787323474884, 0.020945310592651367, -0.017397010698914528, 0.0018932884559035301, -0.002608116017654538, -0.01829269714653492, 0.025308918207883835, -0.010352082550525665, 0.024390263482928276, 0.031969159841537476, -0.024573994800448418, 0.03332417458295822, -0.0052449400536715984, 0.005201878026127815, 0.01136260200291872, -0.024482129141688347, -0.011488916352391243, -0.027398856356739998, -0.000753583328332752, 0.04655279219150543, 0.0036114584654569626, -0.038238972425460815, -0.008819078095257282, 0.020864928141236305, 0.007808559108525515, -0.043590132147073746, 0.010019070468842983, -0.03555190935730934, 0.0430159717798233, -0.003490885253995657, -0.028455307707190514, -0.025929009541869164, -0.009043000638484955, 0.02213956043124199, -0.011041073128581047, -0.014285069890320301, 0.01101810671389103, -0.02221994288265705, -0.06104455888271332, -0.02052043378353119, -0.015571185387670994, -0.043383434414863586, -0.016294624656438828, -0.021381672471761703, 0.02213956043124199, -0.030453380197286606, 0.06320339441299438, 0.05199581757187843, 0.030476346611976624, 0.004271741025149822, 0.03426579385995865, 0.023104147985577583, -0.02404576912522316, 0.011379826813936234, 0.0018200832419097424, -0.023402711376547813, 0.005879385396838188, 0.005308097694069147, 0.005288002081215382, 0.013286033645272255, 0.009783664718270302, -0.014342485927045345, 0.046828389167785645, 0.01297598797827959, -0.018522361293435097, 0.00949084386229515, 0.03265814855694771, 0.06540816277265549, -0.07973916828632355, -0.02808784507215023, 0.05181208625435829, 0.004518629517406225, 0.10206245630979538, -0.01206881646066904, 0.01034634094685316, -0.007108085323125124, -0.046943217515945435, -0.008543482050299644, -0.021852482110261917, -0.009226731024682522, 0.034587323665618896, 0.0066889491863548756, -0.058656059205532074, -0.0491020567715168, 0.034816987812519073, 0.015927163884043694, 0.017959685996174812, -0.07261960208415985, -0.007865974679589272, 0.0038899255450814962, 0.01716734655201435, 0.007647794671356678, -0.02930506318807602, 0.002085631713271141, -0.008755920454859734, 0.03467918932437897, -0.0331634096801281, 0.014262103475630283, -0.00452437112107873, -0.006040149834007025, 0.025607479736208916, -0.037527017295360565, 0.002069842303171754, 0.0173625610768795, -0.03706768900156021, -0.026595033705234528, 0.029948120936751366, -0.025699345394968987, 0.005678430199623108, -0.00444685947149992, 0.005902351811528206, 0.026411302387714386, 0.00808989629149437, -0.08786925673484802, -0.024895522743463516, 0.016432423144578934, -0.0018200832419097424, -0.03199212625622749, -0.03950212150812149, -0.03626386821269989, 0.024298397824168205, -0.006631533615291119, 0.018717575818300247, 0.03001702018082142, -0.03858346864581108, 0.0063559371046721935, 0.02273668721318245, -0.017511840909719467, 0.009800889529287815, 0.016352040693163872, -0.021840998902916908, 0.00021136218856554478, 0.021381672471761703, 0.028937600553035736, -0.0061377570964396, 0.013538663275539875, 0.03194619342684746, -0.025515614077448845, -0.02719215862452984, 0.029649557545781136, 0.009536776691675186, 0.033691633492708206, 0.03153279796242714, -0.0032554802019149065, -0.006470769178122282, 0.059666577726602554, -0.02019890397787094, 0.011976951733231544, -0.0017755859298631549, -0.02466586045920849, 0.010621936991810799, 0.04241884872317314, 0.015134824439883232, -0.02192138135433197, -0.017902269959449768, -0.004863124806433916, -0.04790780693292618, 0.009065967053174973, 0.010696577839553356, 0.003720548702403903, 0.02213956043124199, -0.01667357049882412, 0.04143129661679268, -0.025515614077448845, 0.019234318286180496, 0.0440494604408741, 0.025033321231603622, 0.03566674143075943, 0.002289457945153117, -0.010380790568888187, -0.022265875712037086, 0.010868825018405914, -0.05061783641576767, -0.04446285218000412, 0.0071023437194526196, -0.005658334586769342, 0.004128201398998499, -0.009559743106365204, -0.01041523925960064, -0.014744396321475506, 0.019326183944940567, 0.03001702018082142, -0.007314782589673996, 0.026250537484884262, -0.00909467414021492, -0.002441609976813197, 0.008244919590651989, -0.017018064856529236, 0.008463099598884583, 0.03417392820119858, -0.04666762426495552, -0.014893678016960621, -0.004019111394882202, -0.03392129763960838, 0.009674575179815292, 0.012298480607569218, 0.005658334586769342, 0.0021129040978848934, 0.004986568819731474, -0.04331453517079353, -0.0288916677236557, 0.003749256720766425, -0.0699555054306984, -0.041982486844062805, -0.0281797107309103, -0.05378719046711922, -0.005689913406968117, 0.03123423643410206, -0.003657391294836998, -0.03180839493870735, -0.05851826071739197, 0.03022371605038643, 0.0015789365861564875, -0.03980068489909172, -0.016329074278473854, -0.026020875200629234, 0.013125268742442131, -0.020543400198221207, -0.03486292064189911, 0.010484138503670692, -0.02052043378353119, 0.012045850977301598, -0.015065925195813179, 0.004309061449021101, 0.01046691369265318, 0.048550862818956375, 0.022656304761767387, -0.0066832080483436584, -0.011649681255221367, -0.03320934250950813, 0.009444911032915115, 0.007044927682727575, 0.005727233365178108, -0.027215125039219856, 0.025929009541869164, -0.014939610846340656, 0.0006186560494825244, 0.013044886291027069, 0.01445731706917286, -0.01313675194978714, -0.002389935776591301, -0.017959685996174812, -0.02233477495610714, 0.01577788218855858, 0.0009760698885656893, 0.02778928354382515, -0.03589640557765961, 0.02271372079849243, 0.022105112671852112, 0.00687268003821373, 0.039042793214321136, 0.0321299247443676, 0.025102220475673676, -0.01526113972067833, -0.03261221572756767, -0.005058338399976492, 0.00016695460362825543, 0.005078434012830257, 0.026732832193374634, -0.05231734365224838, -0.0037004530895501375, -0.019682161509990692, 0.02019890397787094, 0.030361514538526535, 0.017201796174049377, 0.017534807324409485, 0.0004510734579525888, -0.014641048386693, -0.01596161350607872, 0.032083991914987564, 0.028018947690725327, -0.009772181510925293, -0.03304857760667801, -0.01576639898121357, -0.025240018963813782, 0.016708020120859146, -0.010179834440350533, 0.06132015585899353, -0.0009007115149870515, -0.009984620846807957, 0.029741423204541206, 0.04283224418759346, -0.01990034244954586, -0.022794101387262344, -0.012355896644294262, -0.03711362183094025, 0.012045850977301598, 0.01919986866414547, -0.023678306490182877, -0.047035083174705505, -0.022863000631332397, -0.03539114445447922, 0.010300408117473125, 0.008514774031937122, 0.06104455888271332, 0.005382738076150417, -0.04618532955646515, 0.015387454070150852, -0.030269648879766464, -0.023104147985577583, -0.04528964310884476, -0.02618163824081421, -0.03284187987446785, 0.01243627816438675, 0.00621239747852087, -0.01055877935141325, 0.009622900746762753, 0.04009924829006195, -0.03851456940174103, 0.005382738076150417, 0.0004230832273606211, 0.008543482050299644, 0.006195172667503357, -0.010776959359645844, -0.017109930515289307, -0.009134865365922451, 0.019349150359630585, -0.05796706676483154, 0.004128201398998499, -0.01961326226592064, -0.012309963814914227, 0.011643939651548862, -0.028133777901530266, 0.014204687438905239, -0.007808559108525515, -0.02648020163178444, 0.03504664823412895, -0.03578157350420952, -0.018648676574230194, -0.0281797107309103, -0.035207413136959076, 0.011758770793676376, 0.032589249312877655, 0.01797116920351982, -0.03869830071926117, 0.00324686779640615, 0.013975024223327637, 0.006780814845114946, -0.03830787166953087, -0.012516660615801811, 0.0004600446845870465, -0.010185576044023037, 0.020382635295391083, -0.015881231054663658, -0.05980437621474266, 0.008675538934767246, 0.00975495669990778, 0.0112075787037611, 0.0010708060581237078, -0.010093710385262966, 0.0014504685532301664, -0.00979514792561531, -0.0019908954855054617, -0.016593188047409058, -0.0126314926892519, -0.01324010081589222, -0.042786311358213425, -0.02971845678985119, -0.00024778538499958813, 0.011908052489161491, -0.013929091393947601, -0.02021038718521595, -0.016007546335458755, -0.01667357049882412, -0.00939323753118515, -0.0115635572001338, 0.030384480953216553, -0.026503168046474457, -0.03513851389288902, 0.009720508009195328, 0.005623884964734316, -0.05240920931100845, -0.01645538955926895, 0.005954026244580746, 0.0036832282785326242, 0.0034966268576681614, -0.014732913114130497, -0.0034478232264518738, 0.015192240476608276, -0.014744396321475506, -0.014859228394925594, -0.024022802710533142, -0.002968400716781616, -0.01105829793959856, -0.007332007400691509, -0.01206881646066904, -0.001982283079996705, 0.014732913114130497, -0.019877376034855843, 0.02193286456167698, 0.03488588705658913, -0.004860254004597664, -0.004240162204951048, -0.008170278742909431, -0.0022765393368899822, -0.008669797331094742, -0.04891832545399666, 0.015996063128113747, 0.003132035955786705, 0.009043000638484955, 0.03738921880722046, -0.032083991914987564, -0.013527180068194866, 0.03334714099764824, 0.010656386613845825, -0.040260013192892075, -0.0019650582689791918, -0.0032526094000786543, 0.005095658823847771, -0.02909836545586586, 0.03010888397693634, -0.023839071393013, 0.0028334734961390495, 0.01646687276661396, -0.003671745304018259, -0.01988885924220085, 0.016512805595993996, 0.028616072610020638, 0.005695654544979334, 0.012091782875359058, -0.03727438673377037, -0.005747328978031874, -0.01349273044615984, -0.030269648879766464, 0.018809441477060318, -0.004532983526587486, 0.058150798082351685, 0.013952057808637619, -0.029925154522061348, -0.027927082031965256, 0.0037004530895501375, 0.01961326226592064, 0.015364487655460835, 0.003927245736122131, -0.02374720573425293, 0.03180839493870735, 0.035322245210409164, -0.016019029542803764, -0.005675559397786856, -0.005190395284444094, 0.04427912086248398, -0.02100272662937641, 0.022105112671852112, 0.007647794671356678, -0.01798265241086483, -0.0022794101387262344, 0.0038152849301695824, 0.037527017295360565, 0.009864047169685364, 0.02618163824081421, -0.04336046800017357, 0.0037779645062983036, 0.0005921011907048523, -0.015088891610503197, 0.012011401355266571, 0.008910943754017353, -0.003361699404194951, -0.005724362563341856, 0.001047839759849012, -0.0017138638067990541, -0.05002070963382721, -0.027605552226305008, 0.001853097346611321, -0.01869460940361023, -0.016397973522543907, -0.004059302154928446, -0.012769290246069431, 0.02799598127603531, 0.019521396607160568, 0.004251645412296057, -0.023104147985577583, 0.0028923247009515762, -0.020428568124771118, 0.030453380197286606, 0.01829269714653492, -0.010174092836678028, 0.034610290080308914, -0.01817786507308483, 0.034495458006858826, -0.04290114343166351, 0.0067291404120624065, 0.008612381294369698, -0.002361227758228779, 0.008348268456757069, 0.02728402428328991, -0.016122378408908844, -0.035528942942619324, -0.01778743788599968, -0.04253368079662323, 0.015134824439883232, 0.026526134461164474, 0.015398937277495861, -0.02749072015285492, -0.027100292965769768, 0.022805584594607353, 0.001560276374220848, -0.003843992715701461, -0.0029999795369803905, -0.04505997896194458, 0.003327250014990568, 0.04140833020210266, 0.019555846229195595, -0.001996637089177966, 0.015915680676698685, 0.015364487655460835, 0.022151043638586998, 0.03738921880722046, 0.015697499737143517, -0.009381754323840141, -0.0031349067576229572, 0.008095637895166874, 0.0013873110292479396, -0.01890130527317524, 0.008204728364944458, 0.0016908975085243583, -0.013056369498372078, -0.04919392243027687, 0.04466954991221428, 0.026549100875854492, 0.01737404428422451, -0.038537535816431046, -0.003605716861784458, 0.012516660615801811, -0.01829269714653492, 0.04969917982816696, -0.002440174575895071, 0.0019650582689791918, -0.01561711821705103, -0.009628642350435257, -0.03392129763960838, 0.020738614723086357, 0.016019029542803764, 0.020038140937685966, 0.03364570438861847, 0.027628518640995026, -0.042281050235033035, 0.037756677716970444, 0.013090819120407104, 0.010461172088980675, -0.0028176840860396624, -0.005925318226218224, -0.011494657956063747, 0.02081899531185627, 0.021140525117516518, -0.010168351233005524, 0.027329957112669945, 0.009381754323840141, 0.001675108098424971, 0.020577849820256233, 0.012677425518631935, 0.020991243422031403, -0.007108085323125124, 0.037641845643520355, -0.04071933776140213, 0.0005199725273996592, 0.01847642846405506, -0.01797116920351982, 0.005359772127121687, 0.029259130358695984, 0.024298397824168205, -0.021060142666101456, 0.028616072610020638, -0.027306990697979927, -0.02019890397787094, 0.00980663113296032, -0.00814157072454691, -0.022265875712037086, 0.00352533464320004, -0.009536776691675186, -0.007797075901180506, 0.03286484628915787, 0.03451842442154884, 0.0009868353372439742, 0.021393155679106712, -0.021048659458756447, -0.021037176251411438, 0.00656837597489357, -0.0034449524246156216, -0.02243812382221222, 0.01646687276661396, -0.017557773739099503, 0.03185432776808739, 0.014376934617757797, 0.011173129081726074, -0.03052227944135666, 0.003694711485877633, 0.013538663275539875, -0.01959029585123062, -0.005890868604183197, -0.005282260477542877, -0.043590132147073746, 0.0004424610815476626, 0.003628683276474476, -0.002540652407333255, -0.01576639898121357, 0.03635573014616966, -0.028156744316220284, -0.04094900190830231, 0.008204728364944458, 0.014353969134390354, -0.006275555118918419, -0.008153053931891918, 0.03826193884015083, -0.036309801042079926, -0.008055447600781918, 0.0035971044562757015, 0.004466955084353685, 0.004208583850413561, 0.041890621185302734, 0.02898353338241577, 0.011287961155176163, -0.012872639112174511, -0.0025105092208832502, 0.03093567304313183, 0.016627637669444084, -0.004188488237559795, 0.03605717048048973, -0.0020526174921542406, 0.017741505056619644, 0.005210490431636572, 0.0005415034829638898, 0.022564439103007317, 0.017006581649184227, 0.011488916352391243, -0.016627637669444084, 0.010530071333050728, -0.04175282269716263, 0.008549223653972149, -0.047724075615406036, 0.04035187512636185, -0.013446797616779804, 0.003907150123268366, -0.022105112671852112, -0.003602846059948206, -0.013630528934299946, 0.016294624656438828, 0.0046219779178500175, 0.04556523635983467, -0.044922180473804474, 0.0017454426269978285, 0.005856419447809458, 0.002968400716781616, -0.011305185966193676, -0.027651485055685043, 0.03231365606188774, 0.02142760530114174, -0.0115635572001338, -0.01829269714653492, -0.023563474416732788, -0.009335821494460106, 0.003582750679925084, 0.013573112897574902, -0.04071933776140213, 0.0017081223195418715, 0.005563598126173019, 0.031280167400836945, -0.013194167986512184, 0.01646687276661396, 0.029672523960471153, 0.01857977733016014, 0.005167428869754076, -0.01971661113202572, 0.016340557485818863, 0.02719215862452984, -0.028845734894275665, 0.011965468525886536, -0.013917608186602592, -0.01605347916483879, -0.005732974968850613, -0.016742469742894173, -0.04094900190830231, 0.00477700075134635, 0.006648758426308632, 0.008939651772379875, -0.0003118399763479829, -0.01689174957573414, -0.024688826873898506, 0.02285151742398739, 0.0011303750798106194, 0.005523407366126776, -0.0004037053731735796, 0.00017825834220275283, 0.022575922310352325, -0.0224151574075222, -0.0022291713394224644, -0.0030372997280210257, 0.024688826873898506, 0.041775789111852646, 0.02181803248822689, -0.004670781549066305, 0.028317509219050407, -0.015582668595016003, -0.00519900768995285, 0.023976869881153107, -0.018568294122815132, -0.0017081223195418715, -0.019016137346625328, -0.026847662404179573, 0.03132610023021698, -0.0030516537372022867, -0.02293189987540245, -0.01075973454862833, -0.01577788218855858, -0.01717882975935936, 0.030981605872511864, -0.011770254001021385, -0.01728217862546444, 0.0015286976704373956, -0.025745278224349022, 0.0071999505162239075, 0.03518444672226906, 0.012539627030491829, -0.021094592288136482, -0.00199520168825984, 0.030154816806316376, -0.007785592693835497, -0.015169274061918259, -0.06233067438006401, -0.02677876316010952, -0.01787930354475975, 0.0009172186255455017, 0.03608013689517975, 0.011609490029513836, -0.05603789538145065, 0.015238173305988312, 0.0007700904388912022, 0.006332971155643463, 0.023976869881153107, -0.0024889782071113586, 0.0006814546650275588, 0.015559702180325985, 0.022552955895662308, 0.03961695358157158, 0.07312485575675964, 0.003924374934285879, -0.007504255045205355, 0.02282855100929737, 0.033806465566158295, -0.021760616451501846, 0.010237250477075577, 0.017098447307944298, 0.03020074963569641, 0.009789406321942806, -0.003976049367338419, 0.015226690098643303, 0.028409374877810478, 0.01236737985163927, -0.008658314123749733, 0.005035371985286474, 0.008020997978746891, -0.011730062775313854, 0.004917669575661421, -0.0162601750344038, 0.024183565750718117, -0.046323128044605255, -0.015559702180325985, -0.013297516852617264, -0.033714599907398224, -0.02192138135433197, 0.006160723511129618, 0.011242028325796127, -0.044715482741594315, 0.017603706568479538, -0.005695654544979334, -0.005999959073960781, -0.015571185387670994, -0.002991367131471634, 0.0006947320653125644, -0.045726001262664795, -0.024183565750718117, -0.014411384239792824, 0.029557691887021065, -0.003387536620721221, -0.019119486212730408, -0.003872700734063983, -0.02061229944229126, 0.0032181597780436277, -0.00853774044662714, -0.0013966411352157593, -0.05185801908373833, -0.05332786589860916, 0.009628642350435257, -0.03332417458295822, -0.008239177986979485, 0.03500071540474892, -0.02941989339888096, -0.00692435447126627, -0.02728402428328991, 0.020646749064326286, 0.016834335401654243, 0.006614308804273605, -0.03215289115905762, 0.002029651077464223, 0.009525293484330177, 0.010845858603715897, -5.943440191913396e-05, -0.006298521533608437, 0.013194167986512184, -0.014686981216073036, 7.423693023156375e-05, -0.0022593147587031126, 0.025217052549123764, -0.021140525117516518, -0.002417208394035697, -0.021197941154241562, -0.02102569304406643, -0.028845734894275665, 0.03233662247657776, 0.01236737985163927, -0.0160649623721838, -0.028662005439400673, -3.7813737435499206e-05, 0.013194167986512184, -0.014675498008728027, 0.0037549983244389296, -0.0005099247209727764, 0.044187258929014206, -0.009921463206410408, -0.010742509737610817, -0.022196976467967033, 0.0331634096801281, -0.007601861841976643, 0.004667910747230053, 0.028753869235515594, -0.00903725903481245, 0.004510017111897469, -0.03952508792281151, 0.016788402572274208, -0.0007722435402683914, -0.016995098441839218, -0.006660241633653641, -0.03798634186387062, 0.01596161350607872, 0.02645723521709442, -0.029121331870555878, -0.018419012427330017, 0.04565710201859474, -0.001636352390050888, 0.004843029193580151, -0.00949084386229515, 0.009318596683442593, -0.003643037285655737, 7.316038681892678e-05, -0.020773064345121384, 0.0005860007950104773, 0.002645436441525817, -0.02891463413834572, -0.03325527533888817, 0.011850636452436447, 0.05341973155736923, -0.008595156483352184, -0.012091782875359058, 0.05861012637615204, 0.004972214810550213, -0.03711362183094025, 0.05240920931100845, -0.002221994334831834, 0.004998052027076483, 0.026732832193374634, -0.019762543961405754, 0.026020875200629234, 0.009766439907252789, -0.0012444891035556793, 0.009967396035790443, -0.007435355801135302, -0.018648676574230194, 0.011701355688273907, 0.010019070468842983, 0.01847642846405506, -0.01243627816438675, 0.0020052494946867228, 0.0011174564715474844, 0.03442655876278877, 0.033484939485788345, -0.00019449627143330872, 0.0003001773729920387, -0.028822768479585648, -0.001596161280758679, -0.039272457361221313, 0.004326286260038614, -0.025883076712489128, -0.015582668595016003, -0.0038181557320058346, 0.002174626337364316, 0.013952057808637619, 0.007021961268037558, -0.00401624059304595, 0.024596961215138435, 0.01595013029873371, 0.009203764609992504, -0.01131092756986618, 0.002478930400684476, -0.006126273889094591, -0.014813295565545559, 0.023701272904872894, 0.022162526845932007, -0.00844587478786707, 0.008428649976849556, -0.0015818073879927397, -0.005689913406968117, 0.015582668595016003, -0.02112904191017151, -0.0011404227698221803, -0.0174888763576746, 0.003691840684041381, 0.010036295279860497, 0.014882194809615612, -0.01526113972067833, -0.006459285970777273, 0.026595033705234528, 0.05286853760480881, -0.06458137929439545, -0.009381754323840141, 0.024895522743463516, 0.04901019111275673, -0.002506203018128872, 0.0049549899995327, -0.003172227181494236, -0.012229581363499165, -0.020428568124771118, 0.019934792071580887, -0.00762482825666666, 0.000998318544588983, -0.014686981216073036, -0.004423893056809902, 0.02636536955833435, -0.012872639112174511, -0.006545409560203552, -0.03229068964719772, 0.00434638187289238, 0.03052227944135666, 0.0015014251694083214, -0.007062152493745089, -0.04182172194123268, 0.012551110237836838, -0.018269730731844902, -0.008755920454859734, -0.03589640557765961, -0.009576967917382717, 0.0034219862427562475, 0.013194167986512184, -0.06343305855989456, -0.017626672983169556, 0.018441978842020035, -0.024390263482928276, -0.006241105496883392, 0.007257366552948952, 0.01041523925960064, -0.031372033059597015, 0.015398937277495861, 0.003528205445036292, -0.0189816877245903, -0.007733918260782957, -0.019659195095300674, 0.0122755141928792, 0.01786782033741474, -0.017764471471309662, 0.017833370715379715, 0.029833288863301277, 0.00601144228130579, 0.015881231054663658, -0.008055447600781918, -0.054705847054719925, 0.016133861616253853, -0.013768326491117477, 0.029328029602766037, -0.013894641771912575, -0.011448725126683712, -0.03412799537181854, 0.026916561648249626, -0.030361514538526535, -0.01005352009087801, -0.014813295565545559, -0.010082227177917957, -0.022070663049817085, 0.018614226952195168, -0.004469825886189938, -0.005643980577588081, 0.04021408036351204, -0.01217216532677412, -0.012401828542351723, -0.016512805595993996, 0.006154981907457113, 0.01040375605225563, -0.0005113601218909025, 0.010891791433095932, -0.008503290824592113, 0.031877294182777405, -0.03727438673377037, -0.0389968603849411, 0.015353004448115826, -0.034105028957128525, -0.02847827412188053, -0.003999015782028437, -0.051674287766218185, 0.030591178685426712, 0.010696577839553356, 0.03121127001941204, 0.015640083700418472, -0.040673404932022095, 0.017557773739099503, -0.017511840909719467, -0.016409456729888916, -0.028133777901530266, -0.006218139082193375, 0.0014633871614933014, -0.030797874554991722, -0.03442655876278877, 0.019774027168750763, -0.0038813131395727396, 0.035505976527929306, -0.04960731416940689, -0.017626672983169556, -0.020956793799996376, 0.010047778487205505, -0.001634916989132762, -0.01818934828042984, 0.02234625816345215, -0.002455963985994458, -0.0022334775421768427, 0.027398856356739998, 0.0196936447173357, -0.010179834440350533, 0.01658170484006405, -0.022690754383802414, -0.021450571715831757, -0.0008454487542621791, -0.02153095230460167, 0.008244919590651989, -0.006017183884978294, 0.0017454426269978285, -0.009002809412777424, -0.02618163824081421, 0.0252629853785038, 0.019532879814505577, -0.012953021563589573, -0.023161564022302628, 0.013906124979257584, 0.035322245210409164, -0.0017310886178165674, 0.0584263950586319, 0.004693747963756323, -0.02393093705177307, -0.028753869235515594, 0.010065003298223019, 0.027031393721699715, -0.010845858603715897, -0.018143417313694954, 0.04570303484797478, -0.0036631328985095024, 0.009519551880657673, 0.03010888397693634, 0.031785428524017334, -0.008026739582419395, 0.015421903692185879, -0.027031393721699715, -0.043383434414863586, 0.017661122605204582, -0.0061033074744045734, 0.03982365131378174, -0.016041995957493782, -0.0008705682121217251, 0.0187864750623703, 0.04110976681113243, 0.002478930400684476, 0.02565341256558895, -0.032704081386327744, 0.04271741211414337, -0.04138536378741264, 0.0050382427871227264, 0.015284106135368347, -0.012286997400224209, -0.00560378935188055, 0.014870711602270603, 0.008646830916404724, -0.0003972460690420121, -0.0156745333224535, -0.02363237366080284, 0.005463120527565479, 0.04740254580974579, -0.006149240303784609, -0.014216170646250248, -0.004323415458202362, 0.009330079890787601, 0.0020899379160255194, 0.017408493906259537, -0.017052514478564262, 0.010639161802828312, -0.003183710156008601, 0.026503168046474457, -0.027720384299755096, -0.0044956631027162075, -0.01769557222723961, 0.0062296222895383835, -0.0035224638413637877, 0.012252547778189182, 0.03215289115905762, -0.003734902711585164, -0.01869460940361023, -0.02990218810737133, -0.0008920991676859558, 0.033186376094818115, 0.007797075901180506, 0.017339594662189484, -0.040971968322992325, -0.05488957464694977, 0.008198986761271954, 0.03293374553322792, -0.01408985536545515, -0.024596961215138435, 0.007194208912551403, -0.0010894662700593472, 0.016639120876789093, 0.028271576389670372, 0.017844853922724724, -0.008905202150344849, -0.012895605526864529, 0.02838640846312046, -0.03275001421570778, -0.013286033645272255, -0.017052514478564262, 0.008491807617247105], [-0.02079674042761326, 0.0198263730853796, 0.09562531113624573, 0.0017518993699923158, -0.07463008165359497, 0.051253046840429306, -0.014555512927472591, 0.06100083142518997, 0.013518983498215675, 0.06197119876742363, 0.0045430841855704784, -0.005133023485541344, 0.01019437238574028, 0.023377036675810814, -0.07295399159193039, -0.005739503540098667, -0.012714019976556301, 0.05182644724845886, -0.0051854015327990055, -0.03689602017402649, 0.029133079573512077, 0.03674164414405823, -0.030213715508580208, 0.0011467980220913887, -0.02154657058417797, -0.027258506044745445, -0.02919924072921276, -0.03292633593082428, 0.03136051446199417, -0.09721318632364273, 0.035947706550359726, -0.033786434680223465, 0.03347767889499664, -0.014875292778015137, -0.0015120641328394413, -0.0226272065192461, 0.018414929509162903, -0.06466176360845566, 0.009405949153006077, -0.005982095375657082, -0.022693367674946785, -0.008126827888190746, -0.018657520413398743, -0.008667145855724812, -0.0310517605394125, 0.05107661709189415, -0.025383932515978813, -0.03557278960943222, -0.015812579542398453, -0.0019379783188924193, 0.021656839177012444, 0.03709450364112854, -0.009538271464407444, -0.0009910429362207651, 0.031823642551898956, -0.003988982178270817, -0.0013190933968871832, 0.02527366392314434, 0.006726411171257496, -0.015680257230997086, 0.02230742573738098, -0.007619590498507023, -0.008380446583032608, 0.0376458503305912, -0.01526123471558094, 0.03091943822801113, -0.005000700708478689, 0.014169570989906788, -0.012206782586872578, -0.030500415712594986, 0.035396359860897064, 0.030346039682626724, 0.006792572792619467, -0.04199044778943062, -0.019164757803082466, 0.03513171523809433, -0.005006214138120413, 0.023774003610014915, 0.021094467490911484, -0.0010482450015842915, -0.022097915410995483, 0.009830484166741371, -0.013055853545665741, -0.027809850871562958, -0.029375670477747917, 0.005334264598786831, -0.04935641959309578, 0.003470717929303646, -0.02439151145517826, 0.0036168245133012533, -0.005121996626257896, 0.040115874260663986, -0.04218893498182297, 0.026773322373628616, 0.018139256164431572, 0.00556858628988266, 0.010999336838722229, -0.027390828356146812, -0.014919400215148926, 0.007173000834882259, -0.05945706367492676, -0.022340506315231323, -0.04115240275859833, 0.0472833625972271, 0.018459036946296692, -0.05681060627102852, -0.015801552683115005, 0.05703114718198776, 0.03239704295992851, -0.010304641909897327, -0.042078662663698196, -0.021734027191996574, 0.019517619162797928, 0.014908373355865479, -0.011379764415323734, -0.007173000834882259, -0.0039641717448830605, -0.023024175316095352, 0.004711244720965624, -0.05553148686885834, -0.008220557123422623, 0.02928745560348034, 0.028868433088064194, -0.040998026728630066, 0.04940052703022957, 0.002602349268272519, -0.020719552412629128, -0.0011337035102769732, -0.02752315066754818, -0.013585145585238934, 0.03012550063431263, -0.02635429985821247, 0.0669112503528595, -0.02350935898721218, 0.015459719114005566, -0.03288222849369049, -0.004581678658723831, -0.03502144664525986, 0.008143368177115917, 0.017764341086149216, 0.06055975332856178, 0.03281606361269951, 0.0020578959956765175, 0.022891851142048836, -0.07282166928052902, -0.022825689986348152, -0.0472833625972271, 0.012449374422430992, 0.02026744931936264, -0.02527366392314434, -0.02127089723944664, 0.019131677225232124, -0.039277829229831696, -0.01143489871174097, 0.014048275537788868, 0.05628131702542305, 0.005667828489094973, 0.042960815131664276, -0.0006647155387327075, 0.013673360459506512, -0.04543084278702736, -0.018679574131965637, -0.005047565326094627, -0.016000038012862206, 0.015415611676871777, -0.019638914614915848, -0.011087551712989807, 0.045563165098428726, -0.016253655776381493, -0.04042463004589081, -0.020774686709046364, -0.025009017437696457, -0.0416596420109272, -0.02002485655248165, -0.0552668422460556, -0.04582781344652176, 0.03625645861029625, 0.041196513921022415, -0.007139920257031918, 0.014401135966181755, -0.019208867102861404, 0.014930428005754948, -0.0540759339928627, -0.0005696084699593484, 0.017797421663999557, 0.04190223291516304, -0.014235733076930046, -0.0013452823041006923, -0.04291670769453049, 0.03076506033539772, -0.02119370922446251, -0.028714057058095932, 0.0416596420109272, 0.024060703814029694, -0.009587892331182957, 0.026486622169613838, -0.05857491120696068, -0.014004168100655079, 0.026067599654197693, -0.034514207392930984, 0.014831185340881348, -0.07515937834978104, 0.03184569627046585, -0.02035566419363022, -0.07202773541212082, -0.044967714697122574, -0.027787797152996063, -0.027589313685894012, 0.054737549275159836, -0.01586771383881569, 0.04415172338485718, -0.017356347292661667, 0.0073604583740234375, 0.012228836305439472, -0.0016471437411382794, 0.007195054553449154, 0.009113735519349575, 0.03499939292669296, 0.0440635085105896, -0.0089097386226058, -0.04670996218919754, -0.011186793446540833, 0.01795179955661297, -0.03802076354622841, -0.007283269893378019, -0.007327377330511808, 0.0032639633864164352, -0.04435020685195923, -0.006301875226199627, -0.08274588733911514, 0.009042060934007168, 0.021965591236948967, 0.024126864969730377, -0.009168870747089386, -0.0071068392135202885, -0.03345562517642975, 0.027589313685894012, 0.008154395036399364, 0.026023492217063904, 0.012118566781282425, 0.03698423504829407, 0.004675406962633133, -0.0012715398333966732, -0.004217790439724922, 0.0368519127368927, -0.009405949153006077, 0.007790507283061743, -0.015371503308415413, 0.06276513636112213, 0.002697456395253539, -0.009102708660066128, -0.011010363698005676, 0.04701871797442436, -0.07546813040971756, 0.002985534258186817, 0.05050322040915489, -0.027809850871562958, -0.027214398607611656, -0.0012646480463445187, 0.028140658512711525, 0.0083087719976902, 0.006191606633365154, -0.031823642551898956, -0.009350813925266266, -0.046004243195056915, -0.0320441834628582, -0.013155096210539341, 0.00038042818778194487, -0.016893217340111732, 0.03305865824222565, -0.02580295503139496, 0.01246040128171444, 0.023244712501764297, -0.05804562196135521, -0.09015596657991409, 0.04609245806932449, 0.02516339346766472, -0.0048104869201779366, -0.024986963719129562, -0.007867695763707161, -0.03596976026892662, -0.02175608091056347, -0.04873891547322273, -0.05354664474725723, 0.04944463446736336, 0.015128911472856998, -0.00247829663567245, -0.033830542117357254, 0.012956611812114716, 0.019054489210247993, 0.07670313864946365, 0.021535543724894524, 0.019980749115347862, -0.0130227729678154, 0.07158666104078293, 0.05147358775138855, 0.04214482754468918, 0.0066712768748402596, 0.032705795019865036, 0.0021240573842078447, 0.023972488939762115, 0.04278438538312912, -0.021248843520879745, -0.053017351776361465, -0.06796983629465103, 0.007228135131299496, 0.0056843687780201435, 0.021039331331849098, -0.019330162554979324, -0.0005544464802369475, -0.0050255111418664455, 0.01280223485082388, -0.05989814177155495, -0.06894019991159439, 0.023663735017180443, 0.008744334802031517, -0.005199185106903315, -0.004807730205357075, 0.021888403221964836, -0.01153414137661457, 0.031713373959064484, 0.022561045363545418, 0.00014800172357354313, -0.013099961914122105, -0.011368737556040287, -0.04373269900679588, 0.0011357710463926196, 0.026685107499361038, -0.004113035276532173, 0.030698899179697037, 0.013949032872915268, -0.0027581043541431427, 0.004008279647678137, 0.019131677225232124, -0.02522955648601055, -0.007051704917103052, -0.007035164628177881, 0.029574155807495117, 0.033433571457862854, -0.018006933853030205, 0.005634747911244631, -0.016397004947066307, -0.029552102088928223, 0.0364549420773983, -0.01121436059474945, 0.04346805438399315, 0.053105566650629044, 0.052179306745529175, -0.008804982528090477, 0.062235843390226364, 0.014853239059448242, -0.011710572056472301, -0.040270254015922546, -0.034955285489559174, -0.037667904049158096, 0.0016843595076352358, 0.056942932307720184, 0.021557597443461418, -0.039233721792697906, 0.015294315293431282, -0.01678294688463211, 0.016639597713947296, 0.027611367404460907, 0.03870443254709244, 0.04461485147476196, -0.015724364668130875, 0.003831848967820406, -0.024104811251163483, -0.01807309500873089, -0.03173542767763138, 0.005210211966186762, -0.010955228470265865, -0.003098560031503439, -0.01690424419939518, 0.012427320703864098, -0.02776574343442917, 0.016816027462482452, 0.003098560031503439, -0.031911857426166534, 0.025053124874830246, -0.008700227364897728, 0.010618908330798149, 0.006985543295741081, 0.0011295684380456805, -0.004940052982419729, 0.019363243132829666, -0.06602910161018372, -0.022241264581680298, 0.0005578924319706857, 0.027699582278728485, 0.003950388170778751, -0.015922848135232925, -0.010199885815382004, 0.027942173182964325, -0.06677892804145813, 0.005645774770528078, -0.0496651753783226, 0.006505873054265976, 0.0014059302629902959, 0.001873195287771523, 0.016088252887129784, -0.02747904323041439, -0.01263683196157217, -0.004755352158099413, -0.03493323177099228, -0.0020303286146372557, -0.021281924098730087, -0.004289465490728617, 0.0006933165714144707, -0.03941015526652336, 0.02075263299047947, -0.013397688046097755, 0.009003466926515102, 0.053017351776361465, 0.02271542139351368, 0.024656156077980995, -0.013397688046097755, 0.038550056517124176, 0.017036566510796547, -0.051694124937057495, 0.0011095821391791105, 0.04843015968799591, 0.018051041290163994, -0.0088104959577322, -0.02439151145517826, -0.016286736354231834, 0.017852557823061943, -0.024986963719129562, -0.009224005043506622, 0.018326714634895325, -0.04181401804089546, -0.030390147119760513, -0.010806365869939327, 0.04785676300525665, -0.048165515065193176, -0.018955247476696968, 0.01025502011179924, -0.03169132024049759, -0.024656156077980995, 0.012614778243005276, 0.005629234481602907, -0.01586771383881569, 0.028228873386979103, 0.0025527281686663628, -0.023707842454314232, -0.03336741030216217, 0.01011718437075615, -0.0045761652290821075, 0.01894422061741352, -0.012592723593115807, 0.06814626604318619, -0.025780901312828064, -0.02335498109459877, -0.01734531857073307, -0.032507311552762985, -0.023774003610014915, -0.0180289875715971, -0.01153414137661457, 0.0200358834117651, -0.025692686438560486, -0.0022012456320226192, 0.05500219389796257, 0.03200007602572441, 0.017290184274315834, 0.017047593370079994, 0.0005616829148493707, -0.004192980006337166, -0.021932510659098625, -0.020609283819794655, -0.03131640702486038, 0.013827737420797348, 0.037712011486291885, -0.043203409761190414, -0.016319816932082176, -0.03519787639379501, -0.021359112113714218, -0.037359148263931274, -0.043688591569662094, -0.026221977546811104, -0.04357832297682762, 0.021480407565832138, 0.02139219269156456, -0.05412004142999649, -0.0472833625972271, 0.09324349462985992, -0.013221257366240025, 0.061397798359394073, 0.00973675586283207, -0.001819439115934074, 0.0014142004074528813, -0.02708207629621029, 0.01630879007279873, 0.0034652044996619225, -0.008678173646330833, 0.03180158883333206, 0.03180158883333206, -0.07118968665599823, 0.01626468263566494, 0.007393538951873779, 0.022296398878097534, 0.02600143849849701, -0.01766509935259819, 0.019297081977128983, 0.014169570989906788, 0.04948874190449715, 0.006114418152719736, 0.03237498924136162, 0.00868920050561428, -0.0028049685060977936, 0.017764341086149216, -0.0704839676618576, -0.00014696795551571995, -0.013210230506956577, 0.0008111665956676006, -0.0035534196067601442, 0.02154657058417797, 0.024413565173745155, -0.01970507763326168, -0.04834194481372833, 0.026817429810762405, 0.004339086823165417, -0.03012550063431263, -0.024964910000562668, 0.024104811251163483, 0.000951070454902947, 0.01726813055574894, -0.04322546347975731, 0.0001834945724112913, -0.007784993853420019, 0.00247829663567245, -0.014776051044464111, -0.04077748954296112, -0.036432888358831406, 0.004725028295069933, 0.023531412705779076, 0.026663053780794144, -0.010310155339539051, 0.03352178633213043, -0.029772639274597168, 0.0030103446915745735, 0.008226070553064346, 0.008325312286615372, 0.02291390672326088, 0.01145695336163044, 0.0025830522645264864, -0.019804319366812706, 0.011479007080197334, 0.03429367020726204, 0.005689882207661867, 0.0012563777854666114, -0.008937305770814419, 0.016077226027846336, -0.014224705286324024, 0.0004434882721398026, 0.003760174149647355, 0.02379605732858181, 0.008325312286615372, -0.04174785688519478, 0.017808448523283005, -0.024567941203713417, 0.021127548068761826, 0.07030753791332245, 0.031867749989032745, -0.022891851142048836, -0.010894580744206905, 0.002137840958312154, 0.027809850871562958, -0.0356610082089901, -0.03316892683506012, -0.015360476449131966, 0.014632700942456722, 0.015713337808847427, 0.0031040734611451626, 0.011523114517331123, 0.025582415983080864, 0.044923607259988785, 0.008992440067231655, -0.06108904629945755, 0.02536187879741192, 0.03100765310227871, -0.002511377213522792, 0.04626888781785965, -0.004060657229274511, -0.029177187010645866, -0.006395603995770216, 0.004035846795886755, -0.027126183733344078, -0.027655474841594696, 0.007134406827390194, 0.0592806339263916, -0.018558278679847717, -0.00283942767418921, -0.006505873054265976, -0.014621674083173275, 0.026817429810762405, 0.01630879007279873, 0.011115118861198425, 0.00029703721520490944, -0.005375615321099758, -0.005960041657090187, 0.007983478717505932, 0.0416596420109272, 0.04412966966629028, 0.019131677225232124, -0.05919241905212402, -0.01430189423263073, 0.013541038148105145, -0.05178233981132507, 0.022494884207844734, 0.007437646389007568, -0.005609937012195587, -0.0032998009119182825, 0.016154414042830467, -0.02275952883064747, -0.020807767286896706, 0.00841352716088295, -0.03257347270846367, -0.0380428172647953, -0.019539672881364822, 0.020201288163661957, -0.009389408864080906, 0.008341852575540543, 0.014489351771771908, -0.010982795618474483, -0.023046229034662247, 0.0042784386314451694, -0.00561820762231946, -0.03550662845373154, -0.010651988908648491, -0.04474717378616333, 0.0027594827115535736, -0.032904282212257385, 0.007139920257031918, -0.03303660452365875, 0.001860789954662323, -0.00841352716088295, 0.011208847165107727, -0.006406630855053663, 0.0025292960926890373, 0.029860856011509895, 0.0037519040051847696, 0.003953144885599613, 0.0026230246294289827, -0.05813383683562279, 0.03596976026892662, 0.016683705151081085, -0.032860174775123596, 0.018459036946296692, 0.03826335445046425, -0.0032612066715955734, -0.013684387318789959, -0.015889767557382584, -0.035749223083257675, -0.03116202913224697, 0.018569305539131165, 0.004782919306308031, -0.0010792581597343087, 0.0022508667316287756, 0.019892534241080284, 0.038792647421360016, -0.027501096948981285, 0.05760454386472702, 0.025736793875694275, 0.05284092202782631, 0.05548737943172455, -0.005466587375849485, 0.029662370681762695, -0.00989664625376463, 0.004642326384782791, 0.008187475614249706, -0.01731223799288273, 0.004399734549224377, 0.02350935898721218, -0.04922409728169441, 0.007773966994136572, -0.021447326987981796, -0.026949752122163773, 0.0034459074959158897, 0.024347404018044472, 0.03129435330629349, -0.0029827775433659554, -0.0006550669786520302, -0.03016960807144642, 0.04088775813579559, 0.0008084098808467388, -0.016088252887129784, 0.015569987706840038, -0.02919924072921276, 0.01751072332262993, 0.025494201108813286, 0.0031592079903930426, 0.05972171202301979, 0.03700628876686096, 0.018723681569099426, 0.008137854747474194, 0.07365971803665161, 0.00685873394832015, -0.00734943151473999, -0.01690424419939518, -0.05575202405452728, 0.04176991060376167, -0.0075148348696529865, 0.035352252423763275, -0.047768548130989075, -0.02399454265832901, -0.003294287482276559, -0.016760893166065216, -0.0021943538449704647, 0.03753558173775673, -0.01496350858360529, -0.020929062739014626, 0.005485884379595518, -0.041394997388124466, -0.01214062049984932, -0.007007597479969263, 0.0042122770100831985, 0.013144069351255894, -0.026111707091331482, -0.002905589062720537, 0.004102007951587439, -0.009025520645081997, 0.03153694421052933, -0.035308144986629486, -0.0158236064016819, 0.007150947116315365, -0.010205399245023727, 0.022935960441827774, -0.023729896172881126, 0.02078571356832981, -0.01795179955661297, 0.0028476978186517954, -0.025935277342796326, -0.005954527761787176, 0.010762258432805538, -0.008898710831999779, 0.02807449735701084, -0.020565174520015717, -0.04465895891189575, -0.027809850871562958, -0.03813103213906288, -0.016397004947066307, -0.01854725182056427, 0.012272943742573261, -0.030588630586862564, -0.029860856011509895, -0.006847707089036703, -0.014886319637298584, 0.005596153438091278, -0.005166104529052973, 0.003459691070020199, 0.02527366392314434, 0.005411453079432249, -0.01694835163652897, -0.006395603995770216, 0.008264664560556412, -0.027346720919013023, 0.02139219269156456, 0.00841352716088295, -0.01662857085466385, 0.021822242066264153, 0.005976581946015358, -0.04812140762805939, 0.01236115861684084, 0.018558278679847717, 0.04042463004589081, -0.0164190586656332, 0.0200358834117651, -0.004358383826911449, 0.014412162825465202, 0.025736793875694275, -0.02600143849849701, -0.004220547154545784, -0.01662857085466385, 0.0384397879242897, 0.027148237451910973, -0.026332246139645576, -0.011820840649306774, -0.004173683002591133, 0.03175748139619827, -0.0018552765250205994, 0.018492117524147034, -0.04291670769453049, -0.007950397208333015, -0.005535505712032318, -0.01871265470981598, 0.030346039682626724, -0.00011164740135427564, -0.004008279647678137, -0.00294969673268497, -0.007784993853420019, -0.01690424419939518, 0.0010130967712029815, -0.027942173182964325, -0.02320060506463051, -0.018403902649879456, -0.004744325298815966, 0.018602386116981506, -0.012967638671398163, -0.017775367945432663, -0.004102007951587439, -0.024810533970594406, -0.026751268655061722, 0.006130958441644907, 0.030059339478611946, 0.06183887645602226, -0.014577566646039486, 0.004396977834403515, 0.0037574174348264933, 0.004096494521945715, 0.005565829575061798, -0.026221977546811104, 0.01017783209681511, -0.023906327784061432, -0.018811898306012154, -0.0066381958313286304, -0.02066441811621189, -0.001983464229851961, -0.009323246777057648, 0.0003059965674765408, -0.04622478038072586, 0.02708207629621029, -0.03248525783419609, -0.0064176577143371105, 0.015878740698099136, 0.043931182473897934, -0.019738158211112022, -0.013541038148105145, -0.010999336838722229, -0.01705862022936344, 0.034315723925828934, 0.01874573715031147, -0.007145433686673641, -0.008027586154639721, -0.00047794735291972756, -0.007371485233306885, 0.0011530006304383278, -0.032220613211393356, -0.011286036111414433, -0.02035566419363022, -0.02688359096646309, 0.03916756063699722, -0.003818065393716097, -0.03541841357946396, -0.002933156443759799, -0.025780901312828064, 0.0051054563373327255, -0.025097232311964035, 0.003545149462297559, -0.010431450791656971, -0.022296398878097534, 0.0021006250753998756, -0.009422489441931248, -0.02536187879741192, 0.0067815459333360195, 0.03786638751626015, 0.00752034829929471, -0.0246341023594141, -0.032507311552762985, 0.01979329250752926, -0.008827036246657372, -0.05844258889555931, -0.0019241947447881103, 0.013971086591482162, -0.006004149094223976, 0.03705039620399475, 0.026574837043881416, 0.009929726831614971, -0.006665763445198536, 0.03592565283179283, 0.013552065007388592, 0.018017960712313652, -0.04342394694685936, 0.024457672610878944, -0.0012867017649114132, -0.00618057930842042, 0.027986280620098114, -0.016055172309279442, -0.015272261574864388, 0.008446608670055866, 0.0050448086112737656, 0.005750530399382114, 0.03616824373602867, 0.004498976748436689, 0.004537570755928755, -0.017279157415032387, 0.0017491425387561321, -0.013177149929106236, 0.031117921695113182, 0.034712694585323334, -0.004077197518199682, 0.01560306828469038, 0.02154657058417797, 0.051253046840429306, -0.02022334188222885, -0.01263683196157217, 0.00013947310799267143, -0.01847006380558014, 0.016694732010364532, 0.0009062736644409597, 0.005022754427045584, -0.02988290973007679, 0.007443159818649292, 0.0015920092118903995, -0.02948594093322754, 0.008816009387373924, -0.0018952491227537394, -0.029353616759181023, 0.012405266985297203, 0.0340510793030262, -0.006880787666887045, -0.020013829693198204, -0.01815028302371502, -0.02575884759426117, -0.04439431428909302, 0.021204736083745956, 0.014191624708473682, -0.022737475112080574, 0.01754380390048027, 0.003870443208143115, -0.038880862295627594, 0.047812655568122864, 0.04042463004589081, -0.007619590498507023, -0.01474297046661377, 0.00454584090039134, -0.04161553457379341, 0.021458353847265244, -0.009212978184223175, -0.014169570989906788, -0.013838764280080795, -0.0035782302729785442, 0.0072501893155276775, 0.013110988773405552, 0.03435983136296272, 0.01618749462068081, 0.006665763445198536, 0.006384577136486769, 0.004923512693494558, 0.034514207392930984, -0.039321936666965485, -0.01786358468234539, -0.010552747175097466, 0.023531412705779076, -0.036587268114089966, 0.014412162825465202, -0.00679808622226119, 0.012217809446156025, -0.01017783209681511, 0.004256384912878275, 0.007680238224565983, 0.02275952883064747, -0.019848426803946495, 0.03052246943116188, -0.037756118923425674, 0.0049565932713449, -0.0040275766514241695, 0.002509998856112361, -0.011556195095181465, 0.016110306605696678, -0.017532777041196823, 0.014346001669764519, 0.011743652634322643, 0.00729981018230319, -0.025935277342796326, 0.03720477223396301, 0.015294315293431282, 0.0364549420773983, -0.01017783209681511, -0.005477614235132933, 0.037800226360559464, -0.021303977817296982, 0.0017119267722591758, -0.001598900998942554, 0.007966937497258186, -0.022538991644978523, 0.002465891418978572, -0.006583061534911394, 0.007525861728936434, -0.006704357452690601, -0.022086888551712036, -0.010745717212557793, 0.03259552642703056, 0.02364168129861355, -0.012890450656414032, -0.0058387452736496925, 0.01717991568148136, 0.00623020064085722, -0.0380428172647953, 0.005146807059645653, -0.0003003108431585133, 0.030897384509444237, -0.015680257230997086, 0.011567221954464912, 0.015459719114005566, 0.0076251039281487465, 0.009323246777057648, 0.010883553884923458, 0.010718150064349174, 0.01469886302947998, 0.00032684431062079966, 0.03826335445046425, 0.012614778243005276, 0.0028449411038309336, -0.007757426705211401, 0.0032143425196409225, 0.02571474015712738, -0.02267131395637989, 0.031669266521930695, 0.002891805488616228, -0.010723663493990898, 0.006897328421473503, -0.03133846074342728, -0.012846343219280243, 0.016849108040332794, -0.0007353566470555961, -0.01646316796541214, 0.025869116187095642, -0.013463849201798439, -0.016683705151081085, 0.04529852047562599, 0.009290166199207306, 0.0015341179678216577, -0.0005503114080056548, -0.0011736761080101132, -0.012471428140997887, -0.0042784386314451694, 0.022329479455947876, 0.007376998662948608, 0.037403255701065063, -0.020895982161164284, -0.024523833766579628, -0.0012143377680331469, 0.03892496973276138, 0.026111707091331482, 0.01994766853749752, 0.028471466153860092, -0.007024137768894434, 0.008154395036399364, 0.008137854747474194, 0.0041378457099199295, -0.007288783323019743, -0.032308828085660934, -0.009918699972331524, 0.02664100006222725, 0.01386081799864769, -0.026266084983944893, -0.016816027462482452, -0.033102765679359436, 0.02107241377234459, 0.0036829859018325806, 0.014908373355865479, 0.016926297917962074, -0.028780218213796616, -0.006489332765340805, -0.0024975936394184828, -0.039277829229831696, 0.01774228736758232, -0.017973853275179863, -0.019958695396780968, 0.006836680229753256, 0.0068918149918317795, 0.027787797152996063, 0.004090981092303991, -0.006241227500140667, 0.01955069974064827, 0.004052387084811926, -0.019848426803946495, 0.04882713034749031, 0.0015272261807695031, 0.00969264842569828, -0.025450093671679497, -0.0022494883742183447, 0.013684387318789959, 0.03219855949282646, 0.013893898576498032, 0.004408004693686962, -0.004832540638744831, -0.02688359096646309, 0.010800852440297604, 0.026508675888180733, -0.0029028323478996754, 0.010596854612231255, 0.016441114246845245, -0.01650727540254593, -0.012934558093547821, -0.05535505712032318, 0.014235733076930046, 0.04022614285349846, 0.029993178322911263, 0.02752315066754818, -0.03354384005069733, 0.0248325876891613, 0.022097915410995483, 0.03376437723636627, 0.013342553749680519, -0.006963489577174187, 0.006136471871286631, 0.03782228007912636, 0.021359112113714218, 0.012702993117272854, 0.01810617558658123, 0.030103446915745735, 4.300923319533467e-05, 0.0027774013578891754, 0.011831867508590221, 0.010640962049365044, 0.019561726599931717, 0.02195456437766552, 0.00537837203592062, -0.0043225460685789585, 0.018326714634895325, -0.012173702009022236, 0.04670996218919754, -0.005221238825470209, 0.0048711346462368965, 0.007327377330511808, -0.020300529897212982, -0.010784312151372433, -0.007481754291802645, -0.003944874741137028, -0.003991739358752966, -0.004851837642490864, -0.0428726002573967, -0.009053087793290615, 0.02447972632944584, -0.0063129025511443615, -0.02331087365746498, 0.025450093671679497, 0.0408657044172287, -0.005422479938715696, 0.0014390109572559595, 0.007354944944381714, -0.019197838380932808, -0.007035164628177881, -0.011126145720481873, 0.029816746711730957, -0.013287418521940708, -0.0344480462372303, 0.013441795483231544, -0.018205417320132256, 0.0198263730853796, 0.028184765949845314, -0.00959340576082468, 0.01246040128171444, 0.0026147544849663973, -0.02635429985821247, -0.01071263663470745, 0.045960135757923126, 0.024016596376895905, -0.014555512927472591, -0.0025058637838810682, 0.07560045272111893, -0.005987608805298805, -0.01019437238574028, 0.019716104492545128, -0.010486585088074207, 0.0017670613015070558, -0.012824288569390774, 0.005634747911244631, 0.004518273752182722, -0.03537430614233017, 0.004860107786953449, -0.011164739727973938, 0.04543084278702736, 0.01790769211947918, -0.011887001805007458, 0.003652661805972457, 0.013320500031113625, -0.020124098286032677, 0.007884236052632332, -0.0218332689255476, -0.01690424419939518, -0.030434254556894302, 0.01726813055574894, 0.004752595443278551, 0.024126864969730377, 0.008441094309091568, -0.015680257230997086, 0.00973675586283207, -0.006384577136486769, 0.014004168100655079, 0.017356347292661667, -0.001807033782824874, 0.0013135798508301377, 0.006075824145227671, 0.003920064307749271, 0.02379605732858181, -0.00836941972374916, -0.003669202094897628, 0.009042060934007168, -0.028008336201310158, 0.017356347292661667, 0.0037684442941099405, -0.01754380390048027, 0.015581014566123486, -0.0018635466694831848, -0.010387343354523182, 0.011953163892030716, 0.044725120067596436, -0.031713373959064484, -0.02840530313551426, -0.011219874024391174, 0.035065554082393646, 0.0056044235825538635, -0.023178551346063614, -0.01666165143251419, -0.014853239059448242, 0.020399771630764008, -0.03155899792909622, 0.015426638536155224, 0.03896907716989517, -0.015161992982029915, 0.005816691555082798, -0.0344480462372303, -0.0001805655483622104, 0.004931782837957144, -0.029353616759181023, 0.007007597479969263, -0.014191624708473682, 0.02395043522119522, 0.011043444275856018, 0.014621674083173275, 0.009786376729607582, 0.020862901583313942, 0.03433777764439583, 0.005811178125441074, -0.019484538584947586, -0.003109586890786886, 0.021381165832281113, 0.02820681966841221, -0.0010351506061851978, -0.005463830661028624, 0.01085598673671484, -0.014555512927472591, 0.041439104825258255, 0.0022798122372478247, 0.027942173182964325, -0.016518302261829376, 0.008137854747474194, 0.020135127007961273, -0.03316892683506012, -0.0054197232238948345, 0.00432530278339982, -0.02836119569838047, 0.0019407350337132812, -0.02143630012869835, -0.01815028302371502, 0.021127548068761826, -0.01742250844836235, -0.011258468963205814, -0.0014348758850246668, -0.02384016662836075, -0.00723916245624423, -0.013066880404949188, -0.01469886302947998, 0.027456989511847496, -0.009648540988564491, 0.008457635529339314, -0.010591341182589531, -0.009053087793290615, -0.00517713138833642, -0.015790525823831558, -0.01197521761059761, 0.009979347698390484, -0.003112343605607748, 0.024986963719129562, 0.017720233649015427, 0.011622356250882149, -0.0015258478233590722, 0.019374269992113113, 0.013166123069822788, 0.01280223485082388, 0.01822747103869915, 0.008645092137157917, 0.031426675617694855, 0.023619627580046654, 0.01297866553068161, -0.00210751686245203, 0.01103241741657257, -0.01530534215271473, -0.011567221954464912, -0.003991739358752966, -0.006522413343191147, 0.011611329391598701, 0.014279840514063835, 0.010144751518964767, 0.01597798429429531, -0.035594843327999115, 0.006572034675627947, 0.01011718437075615, -0.016926297917962074, -0.025626523420214653, -0.023002121597528458, -0.0020068965386599302, 0.0032088288571685553, 0.008738821372389793, 0.010822906158864498, -0.027015913277864456, 0.025891169905662537, -0.00305996579118073, -0.000254997139563784, 0.012449374422430992, -0.0012239862699061632, 0.017973853275179863, 0.000624053820502013, -0.023487305268645287, -0.004226061049848795, -0.0005458317464217544, 0.024656156077980995, -0.013122015632689, 0.013960059732198715, -0.009268112480640411, -0.03614619001746178, 0.011732625775039196, 0.014500378631055355, 0.08287820965051651, -0.023928381502628326, -0.008617524988949299, -0.010062049143016338, 0.021337058395147324, 9.571007831254974e-05, -0.04988571256399155, 0.004237087909132242, -0.011512087658047676, 0.05892777442932129, -0.01666165143251419, -0.016408031806349754, 0.031117921695113182, 0.025582415983080864, -0.04130678251385689, -0.004079954233020544, 0.005662315059453249, 0.0024865667801350355, 0.007603050209581852, 0.011677490547299385, -0.02078571356832981, 0.0039476314559578896, 0.018811898306012154, -0.013518983498215675, 0.03634467348456383, 0.012074459344148636, 0.02038874477148056, -0.04569548740983009, 0.0404687374830246, -0.012306024320423603, 0.03797665610909462, -0.018999354913830757, -0.04267411679029465, -0.040755435824394226, -0.025626523420214653, 0.001301863812841475, 0.01079533901065588, -0.02364168129861355, -0.016286736354231834, -0.014004168100655079, 0.005926960613578558, -0.006825653370469809, 0.04229920357465744, -0.024369457736611366, 0.02875816449522972, 0.04470306634902954, -0.006643709260970354, -0.01818336360156536, -0.004793946165591478, -0.005461073946207762, 0.012625805102288723, -0.03449215367436409, -0.04591602832078934, 0.005174374673515558, 0.03003728576004505, -0.032264720648527145, 0.02019026130437851, 0.0015534150879830122, 0.0064672790467739105, -0.0024714048486202955, -0.0063735502772033215, -0.03372026979923248, 0.009990374557673931, 0.03129435330629349, -0.0013411471154540777, -0.04878302291035652, -0.017874611541628838, -0.03195596858859062, 0.002660240512341261, -0.03949837014079094, 0.014125463552772999, -0.004711244720965624, -0.011942137032747269, 0.004041360225528479, -0.0005096496897749603, 0.0007698156987316906, -0.010012428276240826, 0.002696078037843108, -0.033676162362098694, -0.02547214739024639, -0.020565174520015717, -0.0388588085770607, 0.020300529897212982, -0.009709188714623451, -0.036873966455459595, -0.03654315695166588, 0.0011082037817686796, -0.007641644217073917, 0.024170972406864166, -0.0004937985213473439, -0.016595490276813507, -0.021182682365179062, 0.024810533970594406, -0.0744977593421936, 0.01115371286869049, 0.013254337944090366, 0.04150526598095894, 0.0025403229519724846, -0.0055906400084495544, 0.02063133753836155, 0.006329442840069532, -0.006985543295741081, 0.012008298188447952, 0.008325312286615372, 0.004281195346266031, -0.02447972632944584, -0.025295717641711235, -0.009317733347415924, 0.010028968565165997, 0.015834633260965347, -0.001652657170780003, -0.015581014566123486, 0.013629253022372723, 0.02355346642434597, 0.019120650365948677, 0.03638878092169762, -0.026530729606747627, 0.014720916748046875, -0.010955228470265865, 0.021303977817296982, -0.01055826060473919, 0.001831844332627952, 0.026266084983944893, -0.010927661322057247, 0.021921483799815178, -2.6770392651087604e-05, -0.0340510793030262, 0.0268394835293293, 0.005367345176637173, 0.008617524988949299, 0.016694732010364532, 0.0014011058956384659, -0.005072375759482384, -0.008727794513106346, -0.0029993178322911263, 0.025847062468528748, 0.010833933018147945, 0.05059143528342247, 0.0031206137500703335, 0.013066880404949188, -0.02467820979654789, -0.009819457307457924, -0.015856686979532242, 0.03076506033539772, -0.015834633260965347, -0.017036566510796547, -0.0019365999614819884, -0.006323929410427809, -0.024016596376895905, 0.006566521245986223, 0.006075824145227671, 0.0352640375494957, 0.010525179095566273, 0.012438347563147545, 0.016683705151081085, -0.024060703814029694, 0.08742129057645798, 0.001447281101718545, -0.02114960178732872, -0.054737549275159836, -0.030941491946578026, -0.022605152800679207, -0.0013128906721249223, 0.01638597808778286, 0.0064672790467739105, -0.034271616488695145, 0.032860174775123596, 0.011479007080197334, -0.0035313658881932497, 0.024986963719129562, -0.003972441889345646, -0.008474175818264484, -0.013254337944090366, -0.01690424419939518, 0.028912540525197983, -0.01290147751569748, -0.01918681152164936, 0.020763659849762917, 0.011743652634322643, 0.030985599383711815, -0.018084121868014336, 0.012129593640565872, 0.015757445245981216, 0.026707161217927933, 0.001582360710017383, -0.022241264581680298, 0.005201941821724176, 0.0023073796182870865, -0.003321854630485177, 0.02478848025202751, 0.006086851004511118, -0.009643027558922768, -0.007283269893378019, -0.018977301195263863, -0.03127229958772659, 0.02399454265832901, 0.029155133292078972, -0.010326695628464222, -0.04895945265889168, -0.014290867373347282, 0.0006085472414270043, 0.032507311552762985, -0.014048275537788868, -0.00021347396250348538, -0.024545887485146523, -0.017797421663999557, 0.0036168245133012533, -0.04834194481372833, -0.007917316630482674, -0.0011233658296987414, -0.039961498230695724, 0.017334291711449623, 0.033587947487831116, 0.05844258889555931, -0.0019931127317249775, -0.04609245806932449, 0.015911821275949478, -0.014059302397072315, 0.043203409761190414, -0.03742530941963196, 0.016573436558246613], [-0.019212154671549797, 0.012023860588669777, 0.0380123108625412, 0.03031443990767002, -0.005380379501730204, 0.03100833296775818, -0.002664439845830202, 0.02476329728960991, 0.00729671586304903, 0.04640407860279083, 0.01873510517179966, 0.0654427632689476, 0.028644761070609093, -0.0033258062321692705, -0.013086383230984211, -0.019483206793665886, 0.012609332799911499, 0.03536684438586235, -0.002810807665809989, -0.010533074848353863, 0.018691735342144966, 0.02649802900850773, -0.02376582659780979, -0.01218649186193943, -0.020090363919734955, -0.019916890189051628, 0.002041020430624485, 0.024416351690888405, 0.019960258156061172, -0.05815688520669937, 0.025869188830256462, -0.025088559836149216, 0.038120731711387634, -0.04115651547908783, 0.06058550998568535, 0.011286599561572075, -0.031723909080028534, 0.01846405304968357, 0.012728595174849033, 0.010728232562541962, -0.05468742176890373, 0.003564331913366914, 0.014691011048853397, 0.02346224896609783, -0.013227330520749092, 0.09749193489551544, -0.04258766770362854, -0.03920494019985199, -0.00015856533718761057, 0.016978688538074493, -0.03348032385110855, 0.003008675528690219, 0.007822556421160698, -0.002997833536937833, 0.033155061304569244, 0.022041937336325645, 0.026823291555047035, -0.003008675528690219, 0.013953750021755695, -0.04169861599802971, -0.03634263202548027, -0.016588373109698296, 0.00590893067419529, 0.0029354915022850037, 0.007199137471616268, 0.012847857549786568, -0.04722807556390762, 0.02738707885146141, -0.06479223817586899, -0.04644744470715523, -0.0041714878752827644, 0.01632816344499588, -0.029663914814591408, -0.004727144259959459, 0.03890136256814003, -0.012175649404525757, -0.039161574095487595, 0.03590894863009453, 0.018572473898530006, -0.011319125071167946, -0.0338706411421299, -0.009036868810653687, -0.007827977649867535, 0.005355984903872013, -0.0015802322886884212, -0.01558006089180708, -0.015298167243599892, -0.0361257903277874, -0.017661739140748978, -0.036451052874326706, 0.02132635936141014, 0.04926638677716255, 0.007031084969639778, 0.06804485619068146, 0.002894833916798234, -0.0647488683462143, 0.034651268273591995, -0.07259853184223175, -0.020751729607582092, 0.03924831002950668, 0.005288221873342991, -0.00061223836382851, -0.03820747137069702, -0.002499098191037774, 0.00020430533913895488, -0.08534880727529526, -0.03926999121904373, 0.01659921556711197, -0.004277198109775782, -0.006488981656730175, -0.011015547439455986, -0.0316154882311821, 0.025630664080381393, 0.0864763855934143, 0.016642583534121513, -0.01979762688279152, 0.009600657038390636, -0.00956813059747219, 0.01392122358083725, 0.0019773233216255903, 0.005304484628140926, 0.010581864044070244, -0.001973257400095463, -0.06813159584999084, 0.0029869915451854467, -0.025370454415678978, 0.0025899005122482777, -0.020003626123070717, -0.018680894747376442, 0.0037893049884587526, 0.023223722353577614, -0.033979061990976334, 0.013856170699000359, -0.03716662898659706, -0.007453925907611847, -0.0372750498354435, 0.040983039885759354, -0.029295284301042557, -0.012457543052732944, -0.023527301847934723, -0.002344598527997732, -0.01155765075236559, 0.029056759551167488, 0.05681246891617775, -0.0662233904004097, -0.0496567003428936, -0.02664981782436371, 0.07632820308208466, 0.03139864653348923, -0.018876051530241966, -0.01836647465825081, 0.03966030851006508, -0.0218142531812191, 0.04341166466474533, 0.0005963140865787864, 0.032829802483320236, 0.012804489582777023, 0.06735096871852875, -0.020795097574591637, 0.010749916546046734, -0.04245756193995476, -0.05230216681957245, 0.025478875264525414, 0.012316596694290638, 0.034651268273591995, -0.019548259675502777, -0.017596686258912086, 0.028015919029712677, -0.05637878552079201, -0.028319498524069786, -0.02190098911523819, -0.051955219358205795, -0.04839901998639107, 0.01599206030368805, -0.02324540726840496, -0.04779186472296715, 0.00396006740629673, -0.00165070581715554, 0.020675836130976677, 0.02043730951845646, 0.01451753731817007, 0.009589814580976963, -0.07021327316761017, -0.01644742675125599, 0.02476329728960991, 0.029750652611255646, -0.009893393144011497, 0.0229635126888752, -0.026151083409786224, 0.01608963869512081, -0.027300342917442322, 0.032331064343452454, -0.016154691576957703, -0.010104813612997532, -0.02281172387301922, 0.023722458630800247, -0.03439106047153473, -0.008966395631432533, 0.02437298372387886, -0.06709075719118118, 0.047444917261600494, -0.05529457703232765, 0.023158671334385872, 0.01185038685798645, -0.07502715289592743, -0.012403332628309727, 0.006413086783140898, 0.004437118768692017, 0.030075913295149803, 0.013346593827009201, -0.00786050409078598, -0.006944348569959402, -0.024850035086274147, 0.032157592475414276, -0.03252622112631798, -0.013151436112821102, 0.017217213287949562, 0.07624146342277527, 0.026975080370903015, 0.0133574353531003, -0.024589823558926582, -0.017997844144701958, 0.02437298372387886, -0.02625950425863266, -0.0210769921541214, 0.012544279918074608, -0.04445250332355499, -0.052562374621629715, 0.0058059305883944035, -0.08183597773313522, -0.02649802900850773, 0.019179629161953926, 0.039313361048698425, -0.0334586426615715, 0.006277561187744141, -0.012782805599272251, 0.011980491690337658, -0.04048430547118187, 0.004629565868526697, 0.015103009529411793, -0.019396470859646797, -0.007871345616877079, -0.02543550543487072, -0.04159019514918327, -0.009557288140058517, 0.007453925907611847, 0.026736555621027946, -0.039703674614429474, 0.06405497342348099, 0.003306832630187273, 0.00801229290664196, -0.0012590358965098858, 0.013953750021755695, -0.02489340305328369, 0.0327213816344738, 0.003802857594564557, 0.03799062967300415, -0.0032336486037820578, 0.014972904697060585, 0.02348393201828003, 0.021467307582497597, -0.0013850750401616096, -0.012294911779463291, -0.010522233322262764, -0.07867009192705154, -0.02769065834581852, 0.024568140506744385, -0.0398554652929306, -0.016425741836428642, 0.02452477253973484, -0.01593784987926483, 0.04113483056426048, -0.01312975212931633, -0.009204921312630177, -0.03974704444408417, 0.0349765308201313, -0.016458269208669662, -0.021944358944892883, 0.011199862696230412, -0.027864130213856697, -0.012446701526641846, -0.031138436868786812, 0.030075913295149803, -0.037665367126464844, 0.021098677068948746, 0.019765101373195648, 0.007453925907611847, 0.01851826347410679, -0.0014121801359578967, 0.051651641726493835, 0.02354898490011692, 0.013617645017802715, -0.0182472113519907, -0.006532349623739719, 0.038857992738485336, 0.033220116049051285, 0.020339731127023697, -0.0023866116534918547, 0.016078796237707138, -0.019916890189051628, 0.019016997888684273, 0.0002991734945680946, -0.0316154882311821, 0.006635349243879318, -0.03380558639764786, -0.004277198109775782, -0.011514282785356045, -0.01376943476498127, 0.016620900481939316, -0.019656680524349213, -0.03718831390142441, 0.02226961962878704, -0.03395737707614899, -0.04787860065698624, 0.0033556220587342978, 0.016046270728111267, -0.0086519755423069, 0.018789315596222878, -0.0011512928176671267, 0.010240338742733002, 0.0021047177724540234, -0.0005993634113110602, 0.03512832149863243, 0.006185403559356928, 0.02677992358803749, -0.0104354964569211, -0.03786052390933037, 0.00880376435816288, -0.036320947110652924, 0.032396119087934494, -0.028341181576251984, -0.025999294593930244, 0.013932065106928349, -0.003035780740901828, 0.008857974782586098, 0.032244328409433365, 0.008375502191483974, -0.005190643016248941, -0.024329613894224167, -0.05056743323802948, -0.024199509993195534, -0.006765454541891813, 0.0010164444101974368, 0.010077708400785923, -0.004656671080738306, 0.002438111463561654, 0.047358181327581406, 0.05403689667582512, -0.02842791937291622, 0.052865952253341675, 0.03189738094806671, 0.018962787464261055, 0.014344064518809319, -0.017715949565172195, -0.07303221523761749, 0.03391400724649429, -0.008093608543276787, 0.026302872225642204, -0.021120360121130943, 0.01196965016424656, -0.009730761870741844, 0.004759670700877905, -0.006315508391708136, 0.07272863388061523, 0.004382908344268799, -0.008424291387200356, 0.001463680062443018, 0.01599206030368805, 0.033740535378456116, -0.020881835371255875, 0.030899912118911743, 0.02519698068499565, 0.02333214320242405, -0.017434054985642433, 0.04323819279670715, -0.004971091169863939, 0.018865209072828293, 0.0421539843082428, -0.0007935042958706617, 0.03508495166897774, 0.03825083747506142, 0.03805568069219589, 0.008364660665392876, 0.007871345616877079, -0.0018187579698860645, 0.0327213816344738, -0.02662813477218151, -0.021922674030065536, 0.02178172767162323, -0.014387432485818863, -0.004434408154338598, -0.04213229939341545, -0.012706911191344261, 0.0319841206073761, -0.04356345534324646, 0.020101206377148628, 0.042631037533283234, 0.04221903532743454, 0.0028189392760396004, -0.022920144721865654, 0.013487540185451508, -0.04230577498674393, -0.01553669199347496, -0.029295284301042557, -0.005426458083093166, -0.005681246984750032, -0.0003023922326974571, -0.03666789457201958, 0.007058190181851387, -0.020242152735590935, 0.04566681757569313, -0.020458994433283806, 0.03146370127797127, 0.05815688520669937, -0.020708361640572548, 0.004076620098203421, 0.0033366484567523003, 0.04198051244020462, 0.004689197055995464, -0.05846046283841133, 0.00801229290664196, 0.04471271485090256, -0.007345505524426699, 0.030639702454209328, -0.04115651547908783, 0.06006509065628052, 0.041655249893665314, 0.0391182042658329, -0.021651621907949448, 0.01681605726480484, -0.03694978728890419, -0.0023242696188390255, -0.00048653807607479393, 0.07064695656299591, -0.01684858277440071, -0.05807014927268028, 0.019851837307214737, -0.025001823902130127, -0.001292917411774397, -0.03994220122694969, -0.011362493969500065, -0.015135535970330238, 0.02393930032849312, -0.00707445340231061, -0.03237443417310715, -0.01076617930084467, 0.00951934140175581, 0.024026036262512207, 0.0220202524214983, -0.022247936576604843, -0.0026427556294947863, -0.00021565562929026783, -0.0691724345088005, 0.01620890013873577, -0.03267801180481911, -0.027734026312828064, -0.0018309552688151598, -0.018843524158000946, 0.04618723690509796, -0.006868454162031412, 0.020458994433283806, 0.046751026064157486, 0.05876404419541359, 0.03189738094806671, 0.037209998816251755, 0.02723529003560543, 0.008733291178941727, -0.033436957746744156, -0.006819664500653744, -0.054297108203172684, -0.007589451968669891, 0.02071920409798622, 0.0012664898531511426, -0.033155061304569244, -0.039616938680410385, -0.00519335363060236, -0.02235635742545128, -0.006581139285117388, -0.02498013898730278, 0.0028650180902332067, 0.027885815128684044, 0.0586773045361042, -0.05954467132687569, -0.014701852574944496, 0.024264562875032425, 0.02099025622010231, 0.027365395799279213, 0.04432240128517151, -0.010137339122593403, -0.0421106182038784, -0.00024648779071867466, 0.002635979326441884, 0.02117457054555416, -0.00737261027097702, -0.015927007421851158, -0.004483197815716267, -0.05221543088555336, -0.003653778927400708, 0.057983413338661194, -0.004689197055995464, -0.01486448384821415, -0.014409116469323635, 0.01380196027457714, -0.02649802900850773, 0.039920516312122345, 0.05108785256743431, 0.035627055913209915, 0.003924830816686153, -0.024026036262512207, 0.010809548199176788, -0.006575718056410551, 0.0030954121612012386, 0.018258053809404373, 0.015677640214562416, -0.028492970392107964, -0.0056432997807860374, 0.010890863835811615, -0.01226238626986742, -0.043975453823804855, -0.013682697899639606, 0.0072316634468734264, -0.013812802731990814, 0.004648539237678051, -0.010549338534474373, -0.03603905439376831, 0.007822556421160698, 0.0020545730367302895, -0.019689206033945084, 0.018355632200837135, -0.021434780210256577, -0.027300342917442322, -0.013487540185451508, -0.007459347136318684, -0.01967836543917656, 0.014625958167016506, 0.013097225688397884, 0.01584026962518692, 0.018474893644452095, -0.04015904292464256, 0.012359964661300182, -0.03655947372317314, -0.02242141030728817, 0.01140586193650961, 0.021792570129036903, 0.025674032047390938, 0.03380558639764786, 0.010842074640095234, 0.006255876738578081, -0.014701852574944496, -0.008554396219551563, -0.01264185830950737, -0.02120709791779518, 0.004664802458137274, 0.04579692333936691, 0.03955188766121864, -0.009470552206039429, 0.040809568017721176, -0.008603186346590519, -0.022226251661777496, -0.02333214320242405, -0.033306851983070374, 0.012446701526641846, -0.022855091840028763, -0.016675110906362534, -0.0009446156909689307, 0.04386703297495842, -0.03376222029328346, -0.036993157118558884, 0.020643308758735657, -0.03590894863009453, 0.0063805608078837395, 0.00511745922267437, -0.009969287551939487, 0.05702931061387062, 0.03176727890968323, 0.02897002175450325, 0.02942539006471634, -0.05108785256743431, -0.0032499118242412806, 0.04347671940922737, 0.021402254700660706, 0.026693187654018402, 0.007719556801021099, -0.049179647117853165, -0.0029354915022850037, 0.02656308189034462, -0.023071933537721634, -0.04800870642066002, -0.012912910431623459, 0.013476698659360409, 0.0032336486037820578, 0.007426820695400238, -0.012967120856046677, -0.011145652271807194, -0.008050240576267242, 0.02467656135559082, -0.009806656278669834, -0.0286013912409544, -0.03393569216132164, 0.03528010845184326, 0.005518615711480379, 0.0053153270855546, -0.015829429030418396, 0.025110244750976562, -0.03055296465754509, -0.011286599561572075, -0.010820389725267887, -0.028861600905656815, 0.042023878544569016, 0.0024503087624907494, 0.008912185207009315, -0.00747018912807107, -0.00983918271958828, -0.0024286245461553335, -0.004952117335051298, -0.011243230663239956, -0.009410920552909374, -0.012544279918074608, -0.01767258159816265, -0.01189375575631857, -0.03883631154894829, 0.020816782489418983, -0.003911278210580349, -0.044582609087228775, -0.0026237820275127888, -0.009589814580976963, -0.010343339294195175, -0.010928810574114323, -0.017965316772460938, -0.004618723411113024, -0.015200587920844555, -0.02041562646627426, 0.012631016783416271, -0.017629213631153107, -0.036320947110652924, -0.012425017543137074, -0.010581864044070244, -0.011340809985995293, -0.02942539006471634, 0.04083125293254852, 0.012923752889037132, 0.009665708988904953, 0.017921948805451393, -0.04852912575006485, 0.015439113602042198, 0.03647273778915405, -0.016924478113651276, 0.05447058007121086, 0.041655249893665314, 0.016707636415958405, 0.048052072525024414, 0.004626855254173279, 0.000943938095588237, 0.005282800644636154, 0.02309361845254898, 0.0003179777122568339, -0.021488990634679794, 0.0346079021692276, -0.00722082145512104, 0.046317342668771744, -0.017249740660190582, 0.01312975212931633, -0.01831226423382759, 0.007247926667332649, 0.00048687690286897123, 0.019504891708493233, 0.051955219358205795, 0.001253614784218371, 0.010711969807744026, -0.004567223601043224, -0.030596334487199783, 0.01690279319882393, 0.017835212871432304, -0.042631037533283234, -0.01858331449329853, -0.021152887493371964, 0.00494398595765233, 0.028623076155781746, 0.002217204077169299, 0.04544997587800026, -0.02805928885936737, -0.011915439739823341, -0.033979061990976334, 0.03671126440167427, 0.025327084586024284, -0.027799079194664955, 0.015243956819176674, -0.02339719608426094, 0.004933143965899944, 0.02333214320242405, 0.009150710888206959, 0.03335022181272507, -0.02135888673365116, 0.0035209637135267258, 0.017748475074768066, 0.006396824028342962, -0.003241780214011669, -0.010592706501483917, -0.014723536558449268, -0.027647288516163826, 0.021152887493371964, -6.0690203099511564e-05, -0.024850035086274147, -0.08313702791929245, -0.04319482296705246, -0.026953397318720818, 0.011199862696230412, -0.018420685082674026, 0.002771505154669285, 0.003992593847215176, -0.03707989305257797, 0.00420401431620121, 0.0012163452338427305, -0.030726438388228416, -0.009470552206039429, 0.05989161878824234, -0.009085658006370068, -0.013888697139918804, 0.028796549886465073, 0.02701844833791256, 0.0012102465843781829, 0.021619096398353577, -0.0044642239809036255, 0.007800872437655926, 0.00494398595765233, -0.014810273423790932, -0.005318037234246731, -0.007291295100003481, 0.0016127584967762232, 0.026151083409786224, 0.01684858277440071, -0.0016656136140227318, -0.02957717888057232, 0.003911278210580349, 0.011958807706832886, 0.012219017371535301, -0.04852912575006485, 0.011709440499544144, 0.02205277979373932, 0.00988797191530466, -0.020599940791726112, -0.030834859237074852, 0.03003254532814026, -0.03491147980093956, 0.027929183095693588, 0.036993157118558884, 0.012175649404525757, -0.00722082145512104, -0.015796901658177376, 0.00020091718761250377, 0.02038309909403324, 0.004976511932909489, -0.033827271312475204, -0.013520066626369953, 0.028926653787493706, -0.01693532057106495, 0.02333214320242405, 0.003328516846522689, 0.004282619338482618, 0.0045861974358558655, -0.015558376908302307, 0.009953023865818977, 0.01035960204899311, 0.023570669814944267, -2.871455581043847e-05, -0.01647995226085186, 0.001656126813031733, -0.0003916699206456542, -0.001973257400095463, -0.005789667833596468, -0.020448151975870132, -0.02376582659780979, -0.0015029825735837221, 0.034044113010168076, -0.005212326999753714, -0.008196608163416386, -0.03966030851006508, 0.011796176433563232, 0.006971453782171011, -0.005477957893162966, -0.02144562266767025, -0.0005085610318928957, -0.0180628951638937, -0.01846405304968357, -0.006982295773923397, 0.019483206793665886, -0.015796901658177376, 0.02406940422952175, -0.004705460276454687, 0.009508498944342136, -0.00011147007899126038, -0.0011662006145343184, -0.006564876064658165, -0.033892322331666946, -0.008321291767060757, 0.020578257739543915, 0.03642936795949936, -0.030531281605362892, -0.007453925907611847, 0.012067228555679321, -0.008809185586869717, 0.05698594078421593, -0.01595953293144703, -0.0016588373109698296, 0.08192270994186401, 0.03467295318841934, -0.054297108203172684, -0.005795088596642017, 0.0041443826630711555, -0.026996765285730362, 0.0011140231508761644, -0.0024462430737912655, 0.031485382467508316, 0.014279011636972427, -0.014560905285179615, -0.04536323994398117, -0.007876766845583916, 0.002393387956544757, -0.03324180096387863, -0.03436937555670738, 0.01305385772138834, -0.02461150847375393, 0.0267148707062006, -0.02393930032849312, 0.01590532250702381, -0.0076111359521746635, -0.006217929534614086, 0.012219017371535301, 0.0330900102853775, 0.042327456176280975, 0.006071561481803656, 0.017076266929507256, 0.011579335667192936, 0.0013606803258880973, -0.002574992598965764, 0.037058208137750626, 0.0014731668634340167, 0.021272148936986923, 0.004290750715881586, -0.0028026762884110212, 0.06522592157125473, 0.013671855442225933, -0.014821115881204605, -0.031095068901777267, -0.01961331255733967, 0.0237007737159729, 0.028406234458088875, -0.013780276291072369, -0.055945102125406265, 0.026432976126670837, 0.0021819674875587225, -0.0019000734901055694, -0.005892667453736067, 0.016317320987582207, -0.03159380331635475, -0.01328154094517231, 0.005876404233276844, 0.004564513452351093, -0.04317313805222511, -0.014344064518809319, -0.018691735342144966, 0.018301421776413918, -0.009649446234107018, -0.011720282025635242, 0.04425734654068947, 0.016675110906362534, 0.015374061651527882, 0.01509216707199812, -0.006396824028342962, -0.023050250485539436, 0.02376582659780979, 0.012869542464613914, -0.013606803491711617, 0.00808818731456995, -0.042782824486494064, -0.008592343889176846, 0.004361224360764027, -0.01855078898370266, 0.020274678245186806, -5.598914867732674e-05, 0.01105891540646553, 0.020762572064995766, -0.003236359218135476, -0.03241780027747154, -0.055121105164289474, -0.0154282720759511, -0.03152875229716301, 0.048789333552122116, 0.013151436112821102, 0.020339731127023697, 0.011991334147751331, -0.011221546679735184, 0.019233839586377144, -0.038792941719293594, -0.00015712536696810275, 0.009421762079000473, -0.0248283501714468, 0.011980491690337658, 0.0022253356873989105, -0.029078442603349686, -0.04423566162586212, -0.006451033987104893, -0.035540319979190826, 0.009226605296134949, 0.014105538837611675, 0.022551514208316803, -0.03040117584168911, -0.00048213350237347186, -0.0026224267203360796, 0.04011567309498787, -0.0005702253547497094, -0.0006559455068781972, -0.016306480392813683, 0.014550063759088516, 0.041199881583452225, -0.0041443826630711555, -0.012088912539184093, -0.0015748112928122282, 0.0003069662197958678, 0.013823644258081913, 0.05199858918786049, -0.0054373000748455524, 0.011286599561572075, -0.02762560546398163, 0.01575353369116783, -0.00016949210839811713, 0.0027186500374227762, 0.011828702874481678, -0.005198774393647909, -0.025153612717986107, 0.015243956819176674, 0.007703293580561876, 0.03920494019985199, 0.009237446822226048, 0.011687756516039371, 0.002222625305876136, 0.0053234584629535675, 0.023006880655884743, 0.021423939615488052, -0.030075913295149803, -0.01384532917290926, 0.015677640214562416, 0.022486461326479912, -0.011064336635172367, -0.011340809985995293, -0.00706903263926506, -0.007432241924107075, 0.018268894404172897, 0.03853273019194603, 0.0041037253104150295, 0.04005062207579613, -0.022833408787846565, 0.02016625739634037, -0.004396460950374603, -0.0036727527622133493, -0.041568513959646225, 0.007340084295719862, -0.01782437041401863, 0.014929535798728466, -0.03259127587080002, 0.00818034540861845, 0.022985197603702545, 0.00983918271958828, -0.034803058952093124, 0.03222264349460602, 0.02467656135559082, -0.03658115863800049, -0.022898461669683456, -0.010153602808713913, -0.0021548622753471136, -0.007627399172633886, 0.01392122358083725, 0.026454661041498184, 0.04408387467265129, -0.00051974190864712, 0.019634995609521866, -0.014625958167016506, 0.012002176605165005, 0.0006268073921091855, -0.014094696380198002, 0.018995314836502075, 0.007361768279224634, 0.033220116049051285, 0.009134447202086449, -0.008782080374658108, -0.015222271904349327, 0.007621978409588337, -0.016740161925554276, 0.01500543113797903, -0.008776659145951271, 0.0229635126888752, -0.010852916166186333, -0.001799784367904067, 0.02422119304537773, -0.0025207821745425463, 0.011752808466553688, 0.03220096230506897, 0.0005617549759335816, 0.019212154671549797, 0.04009399190545082, 0.01723889820277691, 0.02528371661901474, 0.0190061554312706, 0.04276113957166672, 0.007106979843229055, 4.40035764768254e-05, 0.023310460150241852, 0.01803036965429783, -0.005385800264775753, -0.021727517247200012, 0.026367925107479095, -0.013183962553739548, -0.025305401533842087, 0.0526491142809391, -0.05186848342418671, 0.037058208137750626, 0.026281187310814857, -0.06253708153963089, -0.007264189887791872, 0.00310354377143085, -0.014203117229044437, 0.019353102892637253, 0.015374061651527882, 0.026237819343805313, 0.047748494893312454, -0.02851465530693531, 0.01851826347410679, -0.02580413594841957, 0.019266365095973015, -0.013140593655407429, 0.0044723558239638805, 0.03439106047153473, 0.0631876066327095, 0.049396488815546036, -0.001381009235046804, 0.0451463982462883, -0.019114576280117035, -0.02805928885936737, -0.018203843384981155, 0.007031084969639778, -0.020101206377148628, -0.020513204857707024, -0.04974343627691269, 0.04031083360314369, 0.005168959032744169, 0.02708350121974945, -0.014723536558449268, -0.029056759551167488, 0.02491508610546589, -0.03324180096387863, -0.002669860841706395, 0.0564221553504467, -0.04501629248261452, -0.012208175845444202, 0.0037567787803709507, -0.015981217846274376, -0.016306480392813683, -0.03207085654139519, 0.03545358404517174, 0.02348393201828003, 0.01516806147992611, -0.0007223531720228493, 0.004613302648067474, 0.0015639691846445203, 0.0013105357065796852, -0.010749916546046734, -0.01003976073116064, -0.019049525260925293, 0.011286599561572075, 0.025869188830256462, 0.0018146921647712588, 0.004288040567189455, 0.00987170822918415, 0.051738377660512924, 0.016198059543967247, 0.023592352867126465, 0.02007952146232128, -0.012522595934569836, -0.009042290039360523, 0.01669679395854473, -0.025522243231534958, -0.013476698659360409, 0.0034803058952093124, 0.0003142507339362055, -0.03380558639764786, -0.030531281605362892, -0.0094000780954957, -0.004494039807468653, -0.02318035438656807, -0.020003626123070717, -0.053993530571460724, 0.03697147220373154, 0.012576806358993053, 0.02046983689069748, -0.008120713755488396, -0.010646916925907135, 0.041048094630241394, 0.00506595941260457, 0.008424291387200356, -0.005708352196961641, 0.020209627225995064, 0.053993530571460724, -0.006396824028342962, -0.01851826347410679, 0.03508495166897774, -0.05776657164096832, -0.01989520713686943, 0.03332853689789772, 0.02378751151263714, -0.014723536558449268, 0.021738359704613686, -1.1276180885033682e-05, 0.034716323018074036, -0.03426095470786095, -0.0015273771714419127, 0.010028918273746967, -0.015883639454841614, 0.0191904716193676, -0.01611132174730301, 0.026237819343805313, -0.03371885046362877, -0.02050236240029335, -0.03738347068428993, -0.02190098911523819, -0.002019336447119713, 0.02263825014233589, 0.009752445854246616, 0.04159019514918327, 0.032244328409433365, -0.026172766461968422, -0.03009759820997715, -0.008191186934709549, -0.03933504596352577, 0.001292917411774397, -0.007058190181851387, 0.017770159989595413, 0.006591981276869774, -0.03482474386692047, -0.009725340642035007, -0.012902067974209785, 0.044365767389535904, 0.009085658006370068, -0.015189746394753456, -0.0032932800240814686, 0.01515721995383501, 0.01897362992167473, -0.014506695792078972, 0.04371524229645729, 0.01672932133078575, -0.00947597250342369, 0.05087101086974144, 0.00831587053835392, -0.0203180480748415, -0.026454661041498184, 0.031940750777721405, -0.02573908492922783, -0.01587279699742794, -0.034954845905303955, 0.013444172218441963, 0.02942539006471634, 0.013856170699000359, 0.00030984616023488343, -0.0011377402115613222, 0.006228771526366472, -0.012891226448118687, 0.014018801972270012, 0.004859959706664085, 0.016165532171726227, -0.004201303701847792, 0.02004699595272541, -0.0075623467564582825, -0.035410214215517044, -0.008142397738993168, -0.005288221873342991, 0.0064672972075641155, 0.030964965000748634, 0.001231930684298277, 0.006548612844198942, -0.00581135181710124, -0.021890148520469666, -0.00976328831166029, 0.035778846591711044, 0.01060354895889759, -0.011568493209779263, -0.01031081285327673, -0.01839900016784668, 0.011731124483048916, 0.00987170822918415, 0.0005688701057806611, -0.012305754236876965, -0.012078071013092995, -0.027668973430991173, 0.03868452087044716, -0.02565234713256359, -0.07554757595062256, 0.0006088502123020589, -0.023136986419558525, 0.0662233904004097, 0.026172766461968422, 0.004101014696061611, -0.016978688538074493, 0.00529364263638854, 0.012522595934569836, 0.03662452846765518, -0.032612960785627365, 0.020296363160014153, -0.005158117040991783, 0.0034965688828378916, 0.012468385510146618, -0.016642583534121513, 0.01451753731817007, 0.008787501603364944, -0.02068667858839035, -0.034954845905303955, -0.02790750004351139, -0.018995314836502075, -0.012088912539184093, 0.01675100438296795, 0.021001098677515984, -0.00737261027097702, 0.0016493505099788308, 0.003979041241109371, 0.034954845905303955, -0.006494402419775724, 0.017249740660190582, 0.007741241250187159, 0.009421762079000473, -0.02573908492922783, 0.018962787464261055, -0.015027115121483803, 0.034434426575899124, -0.007529820781201124, -0.013704381883144379, -0.008895921520888805, 0.024134457111358643, 0.01515721995383501, 0.03417421877384186, 0.018442368134856224, -0.01647995226085186, 0.009129026904702187, -0.019700048491358757, 0.030054230242967606, -0.01651247963309288, -0.010852916166186333, -0.05395016074180603, -0.013541750609874725, 0.006895559374243021, 0.0007006690721027553, -0.019537417218089104, -0.005648720543831587, 0.02193351648747921, -0.00337730604223907, -0.014181433245539665, 0.0021521516609936953, -0.016436584293842316, 0.036082424223423004, -0.014831957407295704, -0.039465151727199554, 0.0017577712424099445, 0.020816782489418983, 0.010169865563511848, -0.015948690474033356, 0.018908577039837837, 0.010148181580007076, 0.0028812813106924295, -0.016826899722218513, 0.004667513072490692, 0.0024218482431024313, -0.02363572269678116, 0.06535602360963821, 0.03237443417310715, -0.0042284089140594006, 0.006667875684797764, 0.002465216675773263, 0.022703303024172783, 0.01572100818157196, -0.009882550686597824, -0.006109508685767651, 0.02430793084204197, -0.012858700007200241, -0.02135888673365116, -0.010950494557619095, 0.012284070253372192, -0.036754630506038666, 0.01882184110581875, 0.010457180440425873, 0.008223713375627995, 0.012164806947112083, 0.0035453583113849163, 0.037513576447963715, -0.020860150456428528, 0.016002900898456573, -0.013151436112821102, 0.01708710938692093, -0.009459709748625755, -0.01568848080933094, -0.004344961140304804, 0.01085833739489317, 0.004271777346730232, -0.004694618284702301, 0.012316596694290638, -0.003108964767307043, -0.029924124479293823, -0.028124339878559113, -0.02311530150473118, 0.01500543113797903, 0.0031713068019598722, -0.005854720249772072, 0.021369729191064835, -0.020112046971917152, -0.008776659145951271, -0.010684864595532417, 0.0031442015897482634, 0.025001823902130127, 0.006760033313184977, 0.020209627225995064, -0.024503087624907494, -0.03896641358733177, -0.035713791847229004, 0.0031170963775366545, 0.04935312271118164, -0.04558008164167404, -0.029143495485186577, -0.005434589926153421, 0.031788960099220276, -0.043823663145303726, -0.024091089144349098, 0.030531281605362892, 0.02141309715807438, -0.04122156649827957, 0.013183962553739548, -0.0016981399385258555, -0.010565601289272308, 0.007996030151844025, -0.029555493965744972, 0.02363572269678116, 0.011286599561572075, 0.014962062239646912, -0.027408763766288757, 0.03116012178361416, -0.015699323266744614, 0.0114709148183465, -0.03354537859559059, 0.007811714429408312, 0.02445971965789795, 0.004320566542446613, 0.00036490356433205307, 0.011243230663239956, -0.01155765075236559, 0.002332401229068637, 0.0017279555322602391, -0.03684137016534805, 0.006120351143181324, -0.0004502848896663636, 0.004740696866065264, 0.001530087785795331, -0.002938202116638422, 0.01421395968645811, -0.0197434164583683, -0.0010767534840852022, 0.0006915210396982729, -0.0020261125173419714, -0.027668973430991173, 0.012284070253372192, 0.014419958926737309, 3.887899947585538e-05, -0.04809544235467911, -0.012240702286362648, -0.012555122375488281, 0.009210342541337013, -0.031788960099220276, -0.002774215769022703, 0.043151456862688065, -0.022399725392460823, -0.00707445340231061, 0.015298167243599892, -0.02135888673365116, 0.0021494412794709206, 0.010863758623600006, 0.004583486821502447, 0.010939653031527996, -0.013400804251432419, 0.008310450240969658, 0.001904139295220375, -0.02050236240029335, -0.003862489014863968, -0.008391765877604485, -0.03573547676205635, -0.01885436661541462, -0.020751729607582092, -0.005746299400925636, 0.0015924297040328383, -0.041720300912857056, -0.02988075651228428, -0.007649083621799946, -0.015699323266744614, -0.020122889429330826, -0.0026441109366714954, 0.0014894299674779177, -0.028124339878559113, -0.02534876950085163, 0.0024218482431024313, -0.01590532250702381, 0.01700037159025669, -0.0002847738505806774, -0.003542647697031498, -0.010072287172079086, 0.025543926283717155, -0.01962415501475334, 0.007784609217196703, 0.01075533777475357, 0.05525121092796326, 0.03137696161866188, -0.03256959095597267, -0.007773767225444317, -0.033675484359264374, 0.03187569975852966, -0.017856895923614502, 0.006624507252126932, 0.008608606643974781, -0.013173120096325874, -0.04475608095526695, 0.01070654857903719, 0.013292383402585983, 0.015482482500374317, -0.009112763218581676, -0.019971100613474846, 0.0035399373155087233, -0.017921948805451393, -0.009877129457890987, -0.011828702874481678, 0.013932065106928349, 0.007285873871296644, 0.040224093943834305, 0.03393569216132164, -0.0012617463944479823, 0.022074462845921516, 0.029902441427111626, -0.015254798345267773, 0.0051255906000733376, 0.012425017543137074, -0.02619445137679577, -0.006299245171248913, -0.04544997587800026, -0.006185403559356928, -0.003119806759059429, 0.01154680922627449, 0.02114204503595829, 0.012078071013092995, 0.030140966176986694, -0.006472718436270952, 0.009784972295165062, 0.027040133252739906, -0.026541396975517273, -0.012804489582777023, -0.0013315422693267465, -0.013520066626369953, -0.028189392760396004, 0.014333222061395645, -0.008353818207979202, -0.013617645017802715, -0.024047721177339554, -0.03092159517109394, 0.005122879985719919, -0.0007935042958706617, 0.03228769823908806, 0.021087834611535072, 0.036819685250520706, 0.021337201818823814, -0.004729854874312878, -0.030639702454209328, 0.04304303601384163, -0.028015919029712677, 0.022594882175326347, -0.02760392054915428, -0.011199862696230412, -0.00722082145512104, 0.003450490068644285, 0.015916164964437485, -0.0014325090451166034, 0.004025120288133621, 0.011915439739823341, 0.032331064343452454, -0.013639329001307487, 0.012305754236876965, -0.006456455215811729, -0.013661013916134834, -0.016610058024525642, 0.007584030739963055, -0.03070475347340107, 0.006846769712865353, 0.014962062239646912, 0.0001481467770645395, 0.004117277916520834, 0.06631012260913849, -0.02019878476858139, -0.009242868050932884, 0.002366282744333148, 0.0394868329167366, 0.027300342917442322, -0.010468022897839546, 0.00739429472014308, -0.028037603944540024, 0.02506687492132187, -0.015287324786186218, 0.010722811333835125, -0.028774864971637726, -0.0012251543812453747, 0.009150710888206959, -0.0060227722860872746, 0.026541396975517273, 0.0327213816344738, -0.04015904292464256, -0.02881823293864727, -0.014452485367655754, 0.0037269629538059235, 0.07034337520599365, -0.020491519942879677, -0.026888344436883926, -0.020708361640572548, -0.017065424472093582, 0.0060498774982988834, -0.03747021034359932, -0.014701852574944496, -0.017466582357883453, 0.0010218655224889517, 0.02151067554950714, 0.0011695887660607696, -0.014615115709602833, 0.005103906616568565, -0.023288775235414505, 0.02565234713256359, -0.01632816344499588, 0.013021331280469894, -0.00299241254106164, 0.03265632688999176], [0.01796254701912403, 0.0003084963245783001, 0.060515161603689194, 0.03844656050205231, -0.046034086495637894, 0.013659863732755184, 0.00045759385102428496, 0.008911875076591969, -0.007807288784533739, 0.040968023240566254, 0.04955025762319565, 0.050845690071582794, -0.02463633380830288, 0.027898045256733894, -0.03541617467999458, -0.018899422138929367, 0.028198769316077232, 0.01678277924656868, -0.026995869353413582, -0.04293430596590042, 0.0277823805809021, 0.017939414829015732, -0.04224032163619995, -0.0020544736180454493, -0.04230972006917, -0.07638420164585114, 0.006205348763614893, -0.0019879669416695833, 0.009513325989246368, -0.08952357620000839, -0.0021672456059604883, -0.027666717767715454, -0.03185373917222023, -0.009698387235403061, 0.005060279741883278, 0.030720235779881477, -0.04249478131532669, -0.04779217392206192, -0.014226614497601986, -0.0005262690829113126, -0.033889416605234146, -0.024821395054459572, -0.004690156318247318, 0.0326402485370636, 0.015256020240485668, 0.06245831027626991, -0.06699232012033463, -0.07166512310504913, 0.005956672132015228, -0.005768718663603067, 0.01555674523115158, 0.04316563159227371, -0.0068067992106080055, -0.0325477197766304, 0.022195832803845406, 0.030581438913941383, 0.030766500160098076, -0.014723967760801315, -0.009842966683208942, 0.03375061973929405, -0.04126875102519989, 0.00850705336779356, 0.008709464222192764, -0.01003959495574236, -0.022785715758800507, -0.018124476075172424, 0.004947507753968239, -0.019350510090589523, 0.015857471153140068, 0.016389522701501846, 0.0039267768152058125, 0.03518484905362129, 0.004513769410550594, 0.022554390132427216, -0.01169358380138874, 0.0338200181722641, -0.036619074642658234, 0.08040928840637207, 0.009999112226068974, 0.020460879430174828, -0.062828429043293, 0.01578807272017002, -0.010560080409049988, -0.03203880041837692, -0.017083503305912018, 0.021710045635700226, -0.053020164370536804, -0.018783757463097572, -0.005653055384755135, -0.07023090124130249, 0.007269453257322311, 0.041638873517513275, -0.04899507388472557, 0.06726991385221481, 0.019096050411462784, 0.022681619971990585, -0.003143156645819545, 0.011387075297534466, 0.007824637927114964, 0.04170827195048332, -0.028106238692998886, -0.04554830119013786, -0.05098448693752289, -0.02199920453131199, 0.0014783245278522372, -0.01977846398949623, -0.05140087381005287, 0.05653633549809456, -0.0028135154861956835, -0.019790031015872955, -0.028337566182017326, -0.03458339720964432, 0.03164554387331009, -0.007876686751842499, -0.014700835570693016, -0.004239068366587162, 0.03576316684484482, -0.04945772886276245, -0.007859337143599987, -0.030072519555687904, -0.003785089123994112, 0.00024433922953903675, 0.02371102385222912, -0.032015666365623474, 0.014781800098717213, -0.012352865189313889, -0.01906135119497776, -0.01183237973600626, -0.011583702638745308, -0.0386778861284256, 0.02332933433353901, -0.04638107866048813, 0.07846613973379135, -0.06708484888076782, -0.022727884352207184, -0.0016756755067035556, -0.017789050936698914, -0.04244851693511009, 0.0045744930393993855, 0.04881001263856888, 0.015579878352582455, -0.00931091420352459, -0.0003571111592464149, 0.04207839444279671, -0.07106367498636246, -0.02199920453131199, -0.021582815796136856, 0.036341484636068344, 0.03580943122506142, -0.030859030783176422, -0.008431871421635151, 0.024058016017079353, -0.039001744240522385, -0.020738471299409866, 0.00032476152409799397, 0.020784737542271614, -0.002005316549912095, 0.04543263837695122, -0.0011291652917861938, 0.015741806477308273, -0.026278754696249962, -0.013162510469555855, 0.008495486341416836, -0.036341484636068344, 0.008385606110095978, -0.0031402648892253637, -0.002433271612972021, 0.02389608696103096, -0.04298057034611702, 0.00023096562654245645, -0.03525424376130104, -0.02683394029736519, -0.03592509403824806, -0.015603010542690754, -0.0277361162006855, -0.05116954818367958, 0.008871393278241158, 0.03113662451505661, 0.023364033550024033, -0.014029987156391144, -0.002009653951972723, 0.031252287328243256, -0.044044673442840576, -0.028337566182017326, -0.04448419436812401, 0.030743367969989777, 0.00048036512453109026, 0.04133814573287964, -0.01706037111580372, 0.014909029938280582, 0.04230972006917, -0.003553762100636959, -0.013324439525604248, -0.011225146241486073, 0.03210819885134697, -0.010085860267281532, -0.029262874275445938, -0.05436186119914055, 0.008397173136472702, -0.043859612196683884, 0.004701722878962755, -0.06370747834444046, 0.00990079902112484, 0.017673388123512268, -0.02461319975554943, -0.002574959537014365, -0.003949909936636686, -0.054685719311237335, 0.03816896677017212, -0.0349535197019577, 0.023606928065419197, -0.02683394029736519, 0.0012390456395223737, 0.03277904540300369, -0.012109972536563873, -0.023086441680788994, -0.009386096149682999, 0.025492243468761444, 0.03650341182947159, -0.024011749774217606, 0.008125362917780876, -0.010571647435426712, -8.3697932495852e-06, -0.04469238966703415, -0.039718858897686005, 0.010496465489268303, -0.0049619656056165695, -0.053714144974946976, -0.0003063276526518166, -0.09512168914079666, -0.02256595529615879, 0.03236265853047371, 0.009964413940906525, -0.014203482307493687, 0.013000581413507462, -0.024219945073127747, 0.04175453633069992, -0.021663779392838478, 0.0072058383375406265, -0.008697898127138615, 0.03229326009750366, -0.024798262864351273, -0.018124476075172424, -0.050105445086956024, 0.01824013888835907, 0.019177014008164406, 0.012052140198647976, -0.031529881060123444, 0.042610447853803635, -0.04126875102519989, 0.03715112805366516, 0.025792967528104782, 0.023340901359915733, -0.02919347584247589, 0.005340763833373785, -0.0063499282114207745, 0.02632502093911171, -0.030072519555687904, -0.014654570259153843, -0.005907515063881874, 0.007292585913091898, 0.03844656050205231, -0.006650653202086687, -0.015047825872898102, -0.02632502093911171, -0.011311893351376057, -0.010120559483766556, -0.0012433830415830016, -0.016030965372920036, 0.028453228995203972, -0.028892751783132553, 0.026394419372081757, -0.006558122579008341, -0.017129769548773766, -0.11196230351924896, 0.028823353350162506, 0.03865475207567215, 0.017580857500433922, 0.012040574103593826, 0.01156635396182537, -0.04448419436812401, -0.031206021085381508, -0.005450644064694643, -0.03715112805366516, 0.03266338258981705, 0.0374055877327919, -0.018737493082880974, -0.042610447853803635, 0.0037272574845701456, 0.02803684026002884, 0.021733177825808525, 0.002230860525742173, 0.04568709805607796, 0.01652831956744194, 0.033912546932697296, 0.0373593233525753, 0.0362720862030983, -0.017129769548773766, -0.0073157185688614845, -0.003134481841698289, 0.030743367969989777, 0.03583256155252457, -0.00419569481164217, -0.027365991845726967, -0.04027404263615608, 0.0211085956543684, -0.02059967629611492, -0.02164064720273018, -0.013035280629992485, 0.0045744930393993855, 0.03229326009750366, 0.008582234382629395, -0.03870102018117905, -0.04513191059231758, 0.06726991385221481, 0.015579878352582455, -0.02325993776321411, -0.004187020007520914, 0.036827269941568375, -0.0011168760247528553, -0.03446773439645767, -0.0021744745317846537, -0.026949603110551834, -0.002903154818341136, 0.018459899351000786, -0.018390502780675888, -0.012549493461847305, 0.04154634103178978, 0.033449895679950714, 0.03687353432178497, -0.036572810262441635, -0.003218337893486023, 0.010930203832685947, -0.005690645892173052, -0.011791897006332874, -0.015764940530061722, -0.033935680985450745, 0.02149028517305851, 0.03696606680750847, 0.02223053202033043, -0.02486765943467617, -0.048902541399002075, -0.038053303956985474, 0.04658927395939827, 0.019257979467511177, 0.06310602277517319, 0.024983324110507965, 0.00705547584220767, 0.021918239071965218, 0.060931552201509476, 0.011149965226650238, 0.008715247735381126, -0.0008371148142032325, -0.01952400431036949, -0.06884294003248215, -0.014804932288825512, 0.019581835716962814, -0.029586732387542725, -0.03215446323156357, 0.013914323411881924, 0.0033542425371706486, 0.00880199484527111, 0.020333649590611458, 0.025006456300616264, 0.007986566983163357, -0.01862182840704918, -0.00958272349089384, -0.038955479860305786, -0.0651417002081871, -0.0096694715321064, 0.023618493229150772, -0.0313679501414299, -0.011797680519521236, 0.02000979147851467, 0.04085236042737961, 0.03333422914147377, 0.019616534933447838, 0.013463235460221767, -0.0028221902903169394, 0.025723570957779884, 0.05269630625844002, 0.034421470016241074, 0.023549096658825874, 0.012271900661289692, 0.008790428750216961, 0.040181513875722885, -0.05329775810241699, -0.03331109881401062, -0.02098136581480503, 0.0007554274634458125, 0.027342859655618668, -0.040667299181222916, 0.0076569258235394955, 0.005424619652330875, -0.04881001263856888, 0.02387295290827751, 0.030234448611736298, 0.004938832949846983, 0.0028438770677894354, -0.0022973669692873955, -0.02005605772137642, -0.03481472283601761, -6.178511284815613e-06, 0.0016641090624034405, -0.008374040015041828, -0.00913163647055626, -0.02197607234120369, -0.02731972746551037, -0.0011255508288741112, -0.00777837261557579, 0.020067622885107994, -0.004828952718526125, 0.015498913824558258, 0.039973318576812744, -0.0063499282114207745, 0.0026501407846808434, 0.03111349046230316, 0.025978030636906624, -0.016123495995998383, -0.05413053557276726, 0.030257580801844597, 0.025422845035791397, 0.004878109786659479, 0.009698387235403061, -0.057600442320108414, -0.0053176311776041985, 0.056119948625564575, -0.011288761161267757, -0.0061186011880636215, -0.01969750039279461, -0.05496331304311752, -0.0011819367064163089, -0.014793366193771362, 0.0555647611618042, -0.03412074223160744, 0.0022380894515663385, -0.002168691251426935, -0.0013062750222161412, -0.027597319334745407, -0.03865475207567215, -0.02246185950934887, -0.06148673593997955, 0.03497665375471115, 0.0022800173610448837, -0.025908632203936577, -0.03772944584488869, 0.0064482418820261955, -0.013856492005288601, -0.012896483764052391, -0.010658394545316696, 0.012387564405798912, -0.020784737542271614, -0.011768764816224575, -0.001934472587890923, -0.012098405510187149, -0.041384413838386536, -0.005097870249301195, 0.013035280629992485, -0.012514794245362282, -0.011126832105219364, 0.004302683752030134, 0.0009281998500227928, 0.06222698092460632, 0.05403800308704376, 0.00573112815618515, -0.02187197469174862, -0.014828065410256386, -0.01880689151585102, -0.009073804132640362, -0.043119367212057114, 0.007975000888109207, -0.005991371348500252, -0.026417551562190056, 0.011901778168976307, -0.016516752541065216, -0.03384315222501755, -0.02353752963244915, 0.026255622506141663, -0.012676723301410675, -0.01080875750631094, 0.02302861027419567, 0.03860848769545555, -0.03095156140625477, -0.0002109052293235436, 0.06888920068740845, 0.06398506462574005, 0.017488326877355576, 0.01849459856748581, -0.04048223793506622, -0.001111815683543682, -0.02803684026002884, 0.012364432215690613, 0.01944304071366787, -0.010461767204105854, -0.003041950985789299, 0.0042737675830721855, -0.0014132638461887836, -0.023040175437927246, 0.013220341876149178, 0.0446692556142807, 0.008935008198022842, -0.03351929411292076, 0.008171629160642624, 0.0016135063488036394, -0.029286006465554237, 0.002693514572456479, -0.015579878352582455, 0.010270921513438225, 0.007385116536170244, 0.021085461601614952, -0.026371285319328308, 0.027389125898480415, -0.0018665202660486102, -0.015429515391588211, -0.02944793552160263, 0.0018954362021759152, 0.026718277484178543, 0.02149028517305851, -0.025284048169851303, -0.007813071832060814, -0.02087726816534996, 0.043605152517557144, -0.008258376270532608, 0.020784737542271614, -0.007859337143599987, -0.01798567920923233, -0.026024295017123222, -0.07786469161510468, -0.014469508081674576, 0.005184617824852467, -0.0008147050393745303, -0.02870768867433071, -0.003793763928115368, -0.045293841511011124, 0.02755105495452881, 0.02315584011375904, -0.009397662244737148, 0.010022245347499847, -0.07138753682374954, 0.0026111043989658356, 0.009096937254071236, -0.02634815312922001, 0.010294054634869099, -0.016563018783926964, 0.010022245347499847, -0.006014504004269838, 0.01775435358285904, 0.03400507941842079, 0.002366765169426799, -0.024497536942362785, -0.013451669365167618, 0.013671429827809334, 0.008564884774386883, 0.035369910299777985, 5.037688970332965e-05, 0.039001744240522385, -0.000256989907938987, -0.043813347816467285, -0.013602031394839287, -0.04367455095052719, -0.013949022628366947, 0.051539670675992966, 0.03261711820960045, -0.04459986090660095, -0.011629968881607056, 0.06338361650705338, 0.012052140198647976, -0.034421470016241074, -0.01657458394765854, -0.026741409674286842, -0.004704614169895649, 0.044067807495594025, -0.016597718000411987, 0.038770418614149094, 0.021929806098341942, 0.03842342644929886, 0.03650341182947159, -0.03546243906021118, 0.003331109881401062, -0.012480095028877258, -0.00724053755402565, 0.018078209832310677, -0.01734953001141548, -0.008090664632618427, -0.019153881818056107, 0.00700921006500721, -0.04062103480100632, -0.017974114045500755, -0.03365808725357056, 0.04760711267590523, -0.04779217392206192, 0.021328356117010117, -0.015672409906983376, 0.010710443370044231, 0.023491263389587402, 0.04110682010650635, 0.0028930341359227896, -0.003331109881401062, -0.020113889127969742, -0.012005874887108803, 0.01770808733999729, 0.030280712991952896, 0.03324170038104057, 0.021802576258778572, -0.0277823805809021, 0.0030390594620257616, 0.008992839604616165, -0.01185551192611456, 0.038539089262485504, 0.004730638582259417, 0.020102322101593018, -0.02849949523806572, -0.03428267315030098, 0.02028738334774971, 0.017222300171852112, 0.021478718146681786, -0.018818456679582596, 0.013844924978911877, -0.006355711258947849, -0.029794925823807716, -0.044530462473630905, 0.0241505466401577, -0.016817478463053703, 0.004655457101762295, -0.03916367143392563, -0.01413408387452364, 0.016181329265236855, 0.0024159220047295094, -0.028129372745752335, -0.009947064332664013, 0.00669691851362586, -0.055888619273900986, -0.008108014240860939, -0.012792387045919895, -0.019535571336746216, 0.008298859000205994, 0.01832110434770584, -0.007761023007333279, -0.01862182840704918, -0.001599048380739987, -0.028869617730379105, -0.008015482686460018, 0.00958272349089384, -0.05570355802774429, 0.013775527477264404, 0.04274924099445343, -0.025746703147888184, -0.002761466894298792, 0.014087818562984467, -0.02681080810725689, 0.0012824194272980094, 0.013278174214065075, -0.008906092494726181, -0.009866099804639816, 0.024451270699501038, 0.008998623117804527, -0.03893234580755234, -0.010392368771135807, 0.021224258467555046, 0.024451270699501038, -0.026510082185268402, 0.037544384598731995, -0.004953290801495314, 0.011311893351376057, 0.03569376841187477, 0.031992532312870026, 0.0175230260938406, 0.010652611963450909, 0.015140356495976448, -0.006193782202899456, -0.04540950432419777, 0.028083106502890587, 0.013278174214065075, -0.047653377056121826, 0.003553762100636959, -0.016181329265236855, -0.028175637125968933, 0.0070265596732497215, 0.040459103882312775, 0.035393040627241135, 0.013301306404173374, 0.0008110905182547867, 0.011751415207982063, 0.05019797384738922, 0.003730149008333683, -0.02368789166212082, 0.04177767038345337, 0.002212065039202571, -0.016123495995998383, 0.023653192445635796, 0.008570668287575245, -0.019847862422466278, 0.01916544698178768, 0.003542195772752166, 0.0385853536427021, 0.03833089396357536, 0.004233285319060087, -0.0068588475696742535, 0.00250989873893559, -0.03220072761178017, -0.010571647435426712, -0.016482053324580193, 0.016135063022375107, -0.05847948417067528, -0.013347571715712547, -0.010959119535982609, -0.059959977865219116, -0.0004850639379583299, 0.02315584011375904, 0.013208775781095028, -0.03349616006016731, -0.017742786556482315, -0.019038217142224312, -0.02072690613567829, 0.03041950985789299, 0.005609681364148855, 0.001195671851746738, -0.02297077886760235, -0.00965790543705225, -0.0037706312723457813, -0.01606566458940506, 0.009229949675500393, -0.019223280251026154, 0.019408341497182846, -0.011791897006332874, -0.007333068177103996, 0.05773923546075821, -0.008663198910653591, -0.009987546131014824, -0.003886294784024358, 0.029586732387542725, -0.025260915979743004, -0.0162738598883152, 3.57382268703077e-05, -0.038030169904232025, 0.004189911764115095, -0.016609283164143562, 0.013174076564610004, -0.025214651599526405, 0.015128790400922298, -0.014989994466304779, -0.05116954818367958, 0.012769253924489021, -0.0044501544907689095, -0.006083901971578598, -0.024289341643452644, -0.031529881060123444, -0.015394816175103188, 0.023676326498389244, 0.027204062789678574, 0.014469508081674576, 0.007043909281492233, -0.060746487230062485, -0.024266209453344345, 0.033195436000823975, -0.015082525089383125, 0.007564395200461149, -0.05112328380346298, -0.0014544689329341054, 0.004262201488018036, -0.023479698225855827, -8.245545177487656e-05, -0.008443438448011875, 0.0001446697860956192, 0.01739579625427723, 0.012989015318453312, 0.01056586392223835, -0.01045020017772913, 0.0033253266010433435, 0.014989994466304779, 0.02371102385222912, -0.022288363426923752, -0.008963923901319504, 0.043813347816467285, 0.012931182980537415, -0.02305174246430397, -0.008183195255696774, -0.008906092494726181, 0.021987637504935265, -0.0025691762566566467, 0.002044352935627103, -0.028869617730379105, -0.0434432253241539, -0.013093112036585808, -0.015996266156435013, 0.024751996621489525, -0.04441479593515396, 0.018841590732336044, 0.0038168965838849545, 0.005378354340791702, -0.021918239071965218, 0.02630188874900341, -0.02725032903254032, 0.006905112881213427, -0.020460879430174828, -0.013798659667372704, -0.004334491211920977, -0.03893234580755234, -0.06245831027626991, 0.015036259777843952, -0.010722009465098381, -0.013035280629992485, -0.03791450709104538, 0.0018217007163912058, 0.07046222686767578, -0.02072690613567829, -0.01842520199716091, 0.001841941848397255, -0.0056501636281609535, -0.02172161266207695, -0.0060434197075665, 0.007084391545504332, -0.0029899023938924074, -0.012283467687666416, -0.01105165109038353, -0.02583923377096653, -0.0014421796659007668, -0.005869924556463957, -0.04968905448913574, -0.02161751501262188, 0.0034380985889583826, -0.019269544631242752, -0.040944892913103104, -0.022138001397252083, 0.04034344106912613, -0.025792967528104782, -0.01874905824661255, 0.018864722922444344, -0.02727346122264862, 0.008709464222192764, -0.006668002810329199, 0.011358159594237804, -0.004140754695981741, -0.013706129044294357, 0.00534654688090086, 0.012109972536563873, -0.03715112805366516, -0.026186224073171616, -0.012341299094259739, -0.011173097416758537, 0.07101741433143616, -0.011867078952491283, -0.045525167137384415, -0.00863428320735693, -0.006315228994935751, 0.02210330218076706, 0.018031945452094078, 0.009351396933197975, -0.05135460942983627, 0.041407544165849686, -0.003822679864242673, 0.0002414476330159232, -0.00965790543705225, 0.009640555828809738, 0.020819436758756638, -0.01578807272017002, 0.005548958200961351, -0.036595944315195084, -0.01918858103454113, 0.008969707414507866, -0.014828065410256386, -9.22597391763702e-05, 0.0145042072981596, -0.00567329628393054, 0.03301037475466728, 0.0023421866353601217, -0.004915700294077396, -0.016204461455345154, 0.02256595529615879, 0.016563018783926964, -0.004594733938574791, -0.021189559251070023, -0.017812184989452362, 0.009571157395839691, -0.023653192445635796, 0.0001724109606584534, 0.008859827183187008, -0.000977356918156147, 0.043142497539520264, 0.03902487829327583, 0.0010431405389681458, 0.017488326877355576, -0.0015715783229097724, -0.004536902066320181, -0.04244851693511009, -0.028684556484222412, -0.030350111424922943, 0.036364614963531494, 0.0020212202798575163, -0.004213044419884682, 0.010392368771135807, 0.009397662244737148, 0.03798390552401543, -0.0029725527856498957, -0.004461721051484346, -0.0010142246028408408, -0.030257580801844597, -0.005320522468537092, -0.008842477574944496, -0.003909427672624588, -0.048393622040748596, -0.012722988612949848, 0.0026862856466323137, 0.02442813850939274, -0.007350417785346508, 0.004455937538295984, -0.025769835337996483, 0.01800881326198578, 0.03432893753051758, -3.7387333577498794e-05, -0.0056617301888763905, 0.002812069607898593, 0.008339340798556805, -0.026186224073171616, 0.048902541399002075, 0.013104678131639957, 0.0018983277259394526, -0.010988036170601845, -0.01893412135541439, -0.018055077642202377, 0.04992038011550903, -0.02016015350818634, -0.024474404752254486, -0.000639763951767236, 0.03467592969536781, -0.004473287146538496, -0.0076569258235394955, 0.029401671141386032, 0.023225238546729088, -0.03365808725357056, -0.0459415577352047, -0.018055077642202377, -0.002806286560371518, 0.04751458019018173, -0.020680639892816544, -0.0483010932803154, 0.0052626910619437695, 0.013104678131639957, 0.0162969920784235, -0.03284844383597374, 0.01056586392223835, -0.017846884205937386, 0.03180747106671333, -0.033889416605234146, -0.0020617025438696146, -0.0009563928470015526, 0.028129372745752335, 0.0009766339790076017, -0.011144181713461876, -0.031044092029333115, 0.0338200181722641, -0.0337737537920475, 0.025399712845683098, -0.0008320545312017202, 0.021478718146681786, -0.006829931866377592, 0.022912945598363876, -0.014885896816849709, -0.0025142361409962177, -0.03095156140625477, 0.007888252846896648, 0.03303350508213043, 0.029100945219397545, 0.0028756847605109215, 0.020206419751048088, 0.0181129090487957, 0.004693048074841499, 0.007107524201273918, -0.03428267315030098, 0.015348550863564014, -0.016586150974035263, 0.016724947839975357, 0.01157792005687952, -0.006494507659226656, 0.011398641392588615, -0.004930158145725727, 0.016007833182811737, -0.010074294172227383, 0.03604075685143471, -0.0018824239959940314, -0.014041553251445293, 0.004421238787472248, -0.00471907202154398, -0.0031373733654618263, -0.006922462489455938, 0.012688289396464825, 0.00510365329682827, -0.014342278242111206, 0.022276796400547028, 0.00015632649592589587, 0.056906457990407944, -0.020576542243361473, -0.00489256763830781, 0.038770418614149094, 0.016366390511393547, 0.0013937456533312798, -0.03937186673283577, -0.012954316101968288, 0.027898045256733894, 0.007836204953491688, 0.012561059556901455, 0.019616534933447838, -0.0071480064652860165, 0.041893333196640015, -0.007356200832873583, -0.0028641181997954845, 0.012757687829434872, 0.030280712991952896, -0.018737493082880974, -0.0013221787521615624, 0.04686686396598816, -0.009334047324955463, -0.01701410673558712, 0.01908448338508606, -0.010745142586529255, 0.029147211462259293, 0.007541262544691563, -0.05426933243870735, -0.03328796476125717, 0.003461231244727969, 0.0035219546407461166, 0.017095070332288742, 0.0008609704673290253, 0.01982473023235798, -0.02799057587981224, -0.02005605772137642, 0.03520797938108444, 0.03233952447772026, 0.01739579625427723, -0.021305223926901817, -0.010479115881025791, 0.03067396953701973, 0.04379021376371384, 0.020507145673036575, 0.002794720232486725, 0.03592509403824806, -0.02725032903254032, -0.0011103699216619134, -0.0031518314499408007, 0.022022336721420288, 0.008796212263405323, -0.026741409674286842, -0.007957651279866695, 0.04802349954843521, 0.005045821890234947, 0.016690248623490334, -0.02043774724006653, -0.039672594517469406, -0.0019951961003243923, -0.006673785857856274, -0.012179370038211346, 0.0277592483907938, -0.044299133121967316, 0.030303847044706345, -0.0052511245012283325, -0.03666533902287483, 0.0002334957680432126, -0.0198825616389513, -0.002275679958984256, 0.016597718000411987, -0.009177901782095432, -0.0005403655814006925, -0.017488326877355576, -0.020403048023581505, 0.0028886967338621616, -0.004409672226756811, -0.008408739231526852, 0.08767295628786087, -0.022045470774173737, 0.020449312403798103, 0.004568709526211023, 0.002945082727819681, -0.0004727747000288218, 0.01711820252239704, -0.008721030317246914, 0.017974114045500755, 0.032964106649160385, -0.0025489351246505976, 0.020217986777424812, -0.006587038282305002, -0.002177366055548191, -0.03493038937449455, -0.021097028627991676, 0.01716446876525879, -0.014585171826183796, -0.06861160695552826, 0.016470488160848618, 0.039996448904275894, -0.038238365203142166, 0.031090358272194862, -0.04955025762319565, 0.006355711258947849, 0.011057433672249317, 7.030174310784787e-05, 0.025723570957779884, -0.004403889179229736, 0.0037474986165761948, 0.027643585577607155, 0.006072335410863161, 0.015950001776218414, -0.0069687278009951115, 0.03550870716571808, -0.006199565716087818, -0.02049557864665985, 0.006563905626535416, 0.00798078440129757, 0.0029696612618863583, -0.015186621807515621, 0.002945082727819681, 0.026510082185268402, 0.017557725310325623, 0.008235244080424309, 0.050105445086956024, -0.03763691335916519, 0.00880199484527111, 0.0017841100925579667, -0.02463633380830288, -0.05172473192214966, 0.00027650812990032136, 0.001014947541989386, -0.022265231236815453, -0.025422845035791397, -0.03530051186680794, -0.03638774901628494, 0.01898038573563099, -0.004499311558902264, 0.001325793331488967, 0.044044673442840576, -0.004982206970453262, -0.0289621502161026, -0.00681258225813508, -0.009733086451888084, -0.010201524011790752, -0.037035465240478516, -0.02676454186439514, 0.027921177446842194, 0.01593843474984169, -0.008599583990871906, 0.005702212452888489, -0.022392461076378822, 0.035855695605278015, 0.02461319975554943, 0.007171139121055603, -0.00826415978372097, -0.014943729154765606, 0.0013062750222161412, 0.04663553833961487, 0.05505584180355072, -0.005632814019918442, -0.007275236304849386, 0.023017043247818947, 0.04029717668890953, -0.024104280397295952, -0.017002539709210396, 0.05630500987172127, -0.010120559483766556, -0.03518484905362129, -0.020842568948864937, -0.0037272574845701456, 0.0076048774644732475, -0.015163489617407322, 0.005066062789410353, -0.0032761695329099894, 0.022704752162098885, -0.012942750006914139, 0.010149475187063217, 0.018563997000455856, 0.03955692797899246, -0.017742786556482315, -0.0032414705492556095, -0.047213856130838394, 0.002366765169426799, -0.025260915979743004, -0.0057600438594818115, -0.0020703773479908705, 0.028106238692998886, 0.019200146198272705, 0.012352865189313889, 0.019200146198272705, -0.012052140198647976, -0.01399528793990612, -0.012989015318453312, -0.01182081364095211, 0.018587131053209305, 0.012364432215690613, -0.0015195297310128808, 0.026995869353413582, 0.013486368581652641, 0.007986566983163357, 0.007356200832873583, -0.018182307481765747, -0.01972063258290291, 0.028198769316077232, -0.026672011241316795, -0.02919347584247589, -0.021351488307118416, -0.005297389812767506, 0.008981273509562016, 0.03715112805366516, -0.009958630427718163, -0.013220341876149178, 8.304280345328152e-05, 0.009779351763427258, -0.0003294603375252336, -0.02100449800491333, 0.04052850231528282, -0.01171671599149704, 0.0038949695881456137, -0.01008007675409317, 4.4028951379004866e-05, 0.02231149561703205, 0.015626143664121628, 0.005222208797931671, 0.005054496694356203, 0.005864141043275595, -0.013544199988245964, -0.0036289433483034372, 0.01220250315964222, 0.029401671141386032, -0.005629922728985548, 0.012803953140974045, 0.015429515391588211, 0.008113796822726727, 0.012456962838768959, 0.03166867420077324, -0.030003121122717857, 0.03654967620968819, -0.015996266156435013, 0.013821792788803577, 0.02583923377096653, -0.01880689151585102, 0.009322481229901314, 0.00978513527661562, -0.024728864431381226, -0.0037619564682245255, 0.03395881503820419, 0.017765918746590614, 0.0026588155888020992, 0.003814005060121417, 0.007228970993310213, 0.013139377348124981, -0.003738823812454939, -0.007830421440303326, -0.024751996621489525, -0.020969798788428307, -0.017256999388337135, -0.032732781022787094, 0.008183195255696774, 0.00041928031714633107, -0.020044490694999695, 0.015429515391588211, -0.028915883973240852, -0.0277592483907938, 0.0056501636281609535, -0.02225366421043873, -0.006650653202086687, -0.005170159973204136, 0.005358113441616297, -0.010247789323329926, 0.003750390140339732, 0.015371683984994888, -0.020379915833473206, -0.006124384235590696, -0.012248768471181393, -0.009362963028252125, -0.010866588912904263, -0.014411676675081253, -0.02514525316655636, 0.004542685579508543, 0.045316971838474274, 0.01798567920923233, 0.002269896911457181, 0.019431473687291145, 0.03233952447772026, 0.04494684934616089, 0.0008797657792456448, -0.024173678830266, -0.0021976071875542402, 0.011468039825558662, -0.006309445947408676, 0.016597718000411987, 0.001502180122770369, 0.007668492384254932, -0.023421866819262505, 0.009744652546942234, 0.01339383702725172, -0.013775527477264404, 0.006546556018292904, -0.007928735576570034, -0.0025142361409962177, -0.029355404898524284, -0.008605367504060268, -0.03402821347117424, 0.00017855557962320745, -0.019385209307074547, -0.032478321343660355, 0.026949603110551834, 0.018413634970784187, 0.016643982380628586, 0.025260915979743004, 0.0003787980822380632, -0.015256020240485668, -0.016667114570736885, -0.018587131053209305, -0.02537657879292965, -0.023364033550024033, -0.011259845457971096, 0.01716446876525879, 0.0009636218310333788, -0.018818456679582596, 0.028059974312782288, -0.024196811020374298, -0.024335607886314392, 0.004947507753968239, -0.0038371377158910036, 0.055657293647527695, -0.02947106957435608, -0.009814050979912281, -0.02944793552160263, 0.027921177446842194, 0.01857556402683258, -0.028175637125968933, -0.004172562155872583, -0.0006784389261156321, 0.05024423822760582, -0.005112328100949526, -0.02149028517305851, 0.03194626793265343, -0.004736421629786491, -0.021420886740088463, 0.006315228994935751, 0.02824503555893898, 0.04085236042737961, 0.00591618986800313, -0.002345078159123659, 0.003099782858043909, 0.016366390511393547, 0.0020906184799969196, -0.018043510615825653, 0.0216984786093235, 0.008154279552400112, 0.0277592483907938, -0.03065083734691143, 0.005624139215797186, 0.015764940530061722, -0.014064686372876167, -0.03303350508213043, -0.030003121122717857, -0.02136305533349514, 0.006263180635869503, -0.008906092494726181, -0.009663688018918037, 0.010629478842020035, 0.003785089123994112, -0.019396774470806122, -0.01079719141125679, 0.01437697745859623, -0.002476645400747657, -0.028059974312782288, 0.011890211142599583, 0.026672011241316795, -0.0081369299441576, -0.0470750592648983, -0.007593310903757811, 0.012850218452513218, -0.006396193522959948, -0.040459103882312775, -0.03238578885793686, -0.014700835570693016, 0.021837275475263596, -0.02461319975554943, -0.020703772082924843, 0.012248768471181393, 0.02123582549393177, 0.007755239959806204, -0.005968238227069378, -0.020588109269738197, 0.004372081719338894, 0.0033426762092858553, 0.021293656900525093, -0.03044264204800129, -0.020680639892816544, -0.01946617290377617, -0.003469906048849225, -0.016262292861938477, 0.0003287374565843493, -0.006112817674875259, -0.015013126656413078, -0.02079630456864834, 0.014076252467930317, -0.007859337143599987, 0.028892751783132553, -0.0578780323266983, -0.0105542978271842, -0.01644735410809517, -0.03710486367344856, -0.010444417595863342, 0.02102763019502163, -0.001510854926891625, -0.0362720862030983, -0.04638107866048813, 0.0011710933176800609, 0.021120160818099976, 0.0033253266010433435, -0.011282977648079395, -0.0008595246472395957, 0.007633793167769909, 0.017222300171852112, -0.06685352325439453, 0.0181129090487957, 0.006494507659226656, 0.04196273162961006, 0.008027049712836742, 0.001959051238372922, 0.028661424294114113, -0.032015666365623474, 0.02054184302687645, 0.003273278009146452, 0.013162510469555855, 0.011375508271157742, -0.03166867420077324, -0.012029008008539677, -0.017997246235609055, 0.0014168783091008663, 0.026417551562190056, -0.02059967629611492, -0.04425286874175072, -0.005852574948221445, 0.01706037111580372, 0.04274924099445343, 0.013937455601990223, -0.01555674523115158, 0.001122659188695252, 0.02489079348742962, 0.009733086451888084, -1.898734444694128e-05, -0.009374529123306274, 0.021941373124718666, 0.021964505314826965, -0.02701900154352188, 0.0048520853742957115, -0.010265138931572437, 0.007014993578195572, -0.004762446042150259, 0.002791828475892544, 0.02947106957435608, 0.007414032705128193, 0.011433340609073639, -0.002882913686335087, 0.027204062789678574, 0.01400685403496027, 0.025978030636906624, 0.02279728278517723, -0.006425109226256609, 0.017719654366374016, -0.01857556402683258, -0.018413634970784187, -0.016736513003706932, 0.04365141689777374, 0.025723570957779884, 0.0010250681079924107, -0.011213580146431923, -0.025677304714918137, -0.03955692797899246, -0.01737266220152378, 0.03178434073925018, 0.025538507848978043, 0.02005605772137642, 0.019940393045544624, -0.020194852724671364, -0.0029899023938924074, 0.07083234935998917, -0.0004612083430401981, -0.0008255484863184392, -0.0337737537920475, -0.007963434793055058, -0.03305663913488388, 0.029632998630404472, 0.012456962838768959, 0.02921660989522934, -0.028383832424879074, 0.024543801322579384, 0.0025286939926445484, -0.00991236511617899, 0.00790560245513916, -0.011254061944782734, -0.005820767488330603, -0.032501451671123505, 0.012803953140974045, 0.008466570638120174, -0.009704170748591423, 0.005791851319372654, -0.004282442387193441, -0.007338851224631071, 0.020784737542271614, -0.023757290095090866, -0.002554718405008316, -0.019454605877399445, 0.015903735533356667, 0.03220072761178017, -0.008212110958993435, -0.037058595567941666, -0.0005038592498749495, 0.014029987156391144, 0.012040574103593826, 0.008755729533731937, -0.0016756755067035556, -0.01678277924656868, 0.012260334566235542, -0.008489703759551048, 0.02704213373363018, 0.021710045635700226, -0.005401486996561289, -0.01883002370595932, -0.024219945073127747, 0.021374620497226715, 0.052511245012283325, -0.03597135841846466, 0.032593984156847, -0.015614577569067478, -0.01426131371408701, 0.0017942305421456695, -0.0373593233525753, -0.01398372184485197, -0.006910896394401789, -0.026186224073171616, 0.0024159220047295094, 0.006211131811141968, 0.026972737163305283, 0.009634772315621376, -0.028430096805095673, 0.019662801176309586, -0.005979804787784815, 0.00018831469060387462, -0.044021543115377426, 0.029887458309531212], [0.02734651044011116, 0.014512448571622372, 0.04209393262863159, 0.0424296110868454, -0.00864369049668312, -0.0012105362256988883, -0.056528057903051376, 0.02077842503786087, -0.002998717362061143, -0.004481291864067316, -0.04146733507514, 0.010590619407594204, 0.013583741150796413, 0.04198203980922699, -0.02985290251672268, 0.00043148521217517555, 0.03614125773310661, 0.00028217872022651136, -0.013259253464639187, 0.017611868679523468, -0.004623954650014639, 0.047889962792396545, -0.06516615301370621, -0.02575763873755932, -0.036186013370752335, -0.02227778360247612, 0.015351641923189163, -0.054379723966121674, 0.05352934077382088, -0.010853566229343414, -0.0026840197388082743, -0.036700718104839325, 0.020129449665546417, -0.003046271624043584, 0.011284352280199528, 0.042720530182123184, 0.030546635389328003, 0.026160450652241707, -0.01522856019437313, 0.01765662617981434, -0.04099738970398903, -0.011038188822567463, 0.005362445022910833, -0.03585033491253853, -0.026160450652241707, 0.11090777814388275, 0.03226977959275246, -0.02171832136809826, -0.014702665619552135, 0.0017595085082575679, -0.01167038083076477, -0.0003430202486924827, 0.01726500317454338, -0.05124673619866371, -0.023542167618870735, -0.029159167781472206, 0.004215547349303961, 0.03645455464720726, 0.03038998506963253, -0.010260536335408688, -0.015139046125113964, -0.034216705709695816, 0.022523947060108185, 0.04155685007572174, 0.009460505098104477, -0.04556259885430336, 0.028085000813007355, 0.02383308857679367, -0.04968024045228958, -0.017085975036025047, 0.018473440781235695, -0.015888726338744164, -0.04618919640779495, -0.02387784607708454, 0.008889853954315186, 0.009617154486477375, 0.002402890007942915, 0.04663676768541336, 0.02275892160832882, -0.014960018917918205, -0.013371146284043789, 0.03448524698615074, 0.013695633970201015, 0.015967050567269325, -0.051425762474536896, 0.006377868819981813, -0.04968024045228958, 0.036700718104839325, -0.004906483460217714, -0.07613161206245422, 0.037170667201280594, -0.006540112663060427, -0.03589509427547455, -0.00023392512230202556, -0.03882667422294617, -0.0312851257622242, 0.027256997302174568, -0.04793471843004227, -0.0027133915573358536, 0.04549546539783478, -0.029159167781472206, -0.01545234490185976, -0.01924549974501133, -0.013908229768276215, 0.0001777166617102921, -0.04166874289512634, -0.04256388172507286, 0.0176790039986372, 0.0028868247754871845, -0.013785148039460182, 0.04189252853393555, -0.05755746737122536, 0.004609968513250351, 0.06615080684423447, -0.04207155480980873, 0.010629781521856785, -0.019077660515904427, 0.03593984991312027, -0.003700842382386327, -0.035178981721401215, 0.03278448432683945, 0.002086794003844261, -0.0033176105935126543, -0.08311370015144348, 0.011580866761505604, 0.03336632251739502, 0.04806898906826973, 0.01967068947851658, -0.025645745918154716, -0.01165919192135334, 0.0029595550149679184, -0.06991039216518402, 0.06095900014042854, -0.009784993715584278, -0.011273162439465523, 0.02642899379134178, 0.020856749266386032, -0.015541858971118927, 0.001815454801544547, -0.02122599445283413, 0.010853566229343414, 0.030792798846960068, -0.01188297662883997, -0.02083437144756317, -0.036678340286016464, 0.021584050729870796, 0.01663840562105179, 0.018507009372115135, -0.005751271266490221, 0.006646410562098026, -0.0054155937395989895, -0.01568731851875782, -0.009824155829846859, -0.020487504079937935, 0.006417030934244394, 0.012050814926624298, 0.02077842503786087, 0.04668152332305908, 0.0073457383550703526, -0.008425500243902206, -0.005049146246165037, -0.0008119194535538554, 0.03231453523039818, 0.01781327649950981, 0.02274773269891739, 0.01566494069993496, -0.023027462884783745, 0.03191172331571579, -0.04545070603489876, 0.01676148734986782, 0.006489761173725128, -0.04605492576956749, -0.0028224866837263107, -0.01287881936877966, -0.06615080684423447, -0.016392242163419724, 0.014344610273838043, 0.024191144853830338, 0.00373720726929605, -0.0004241422575432807, 0.014277474954724312, 0.06145132705569267, -0.03397054225206375, -0.015586616471409798, -0.009807371534407139, 0.05258944630622864, -0.02627234347164631, 0.005261741578578949, -0.03602936491370201, 0.04856131598353386, 0.0025077892933040857, -0.013617309741675854, 0.0018126574577763677, 0.02233373001217842, -0.045875899493694305, -0.0384686179459095, -0.010892728343605995, -0.017533544450998306, 0.011715138331055641, -0.019916852936148643, 0.009057692252099514, -0.02692132070660591, 0.02171832136809826, 0.03687974810600281, -0.0093765864148736, 0.01868603751063347, -0.022020431235432625, -0.004976416006684303, 0.016414619982242584, -0.04860607534646988, 0.008666069246828556, -0.01867484673857689, -0.0030966231133788824, -0.0033735570032149553, 0.04703957960009575, -0.02077842503786087, 0.011446596123278141, 0.014176771976053715, -0.012744548730552197, 0.021136481314897537, -0.06033240258693695, -0.0021553279366344213, 0.01677267625927925, 0.0036840583197772503, -0.010350050404667854, -0.002109172288328409, -0.01271098107099533, -0.05482729151844978, -0.019547607749700546, 0.039788950234651566, -0.06315208971500397, 0.023049840703606606, -0.010573835112154484, -0.015094289556145668, 0.04495837911963463, 0.03446286916732788, -0.021617619320750237, -0.03173269331455231, -0.015284506604075432, 0.024549201130867004, 0.011860597878694534, 0.0015539062442258, -0.009824155829846859, 0.005323282442986965, 0.03502233326435089, -0.017410462722182274, -0.029472466558218002, 0.019525229930877686, 0.025041526183485985, 0.008425500243902206, 0.016873378306627274, 0.04361567273736, 0.05263420194387436, -0.05988483130931854, -0.030591391026973724, 0.05214187502861023, -0.002741364762187004, -0.04417513310909271, 0.05321604385972023, -0.052365660667419434, -0.0002701153280213475, -0.017634248360991478, -0.010948674753308296, -0.044309403747320175, -0.04811374843120575, -0.054424479603767395, 0.013897040858864784, -0.011849408969283104, 0.028129758313298225, 0.04712909460067749, -0.054379723966121674, 0.019905664026737213, -0.012006058357656002, -0.02430303767323494, -0.010825593024492264, -0.008453473448753357, -0.013046657666563988, -0.055990975350141525, 0.02030847780406475, -0.031195610761642456, -0.039251867681741714, -0.043391887098550797, -0.013359956443309784, -0.04623395577073097, 0.031217988580465317, 0.03533563017845154, -0.027077969163656235, -0.007547144778072834, -0.00618765177205205, 0.009001746773719788, 0.051828574389219284, 0.0013804729096591473, -0.013852283358573914, 0.0557224340736866, 0.03249356150627136, 0.002246240619570017, -0.02329600416123867, 0.008520608767867088, -0.00735692773014307, -0.003832315793260932, 0.01626916043460369, 0.0297857653349638, 0.010098292492330074, -0.05831833556294441, -0.0861571729183197, -0.029092032462358475, 0.02479536272585392, -0.009309450164437294, -0.04797947779297829, -0.006159678567200899, -0.056438542902469635, 0.02833116427063942, -0.08329273015260696, -0.0587211512029171, 0.007647847756743431, -0.024638714268803596, -0.02633947879076004, 0.01244243886321783, 0.045316435396671295, -0.010059129446744919, 0.0343957357108593, 0.01614607870578766, -0.009717858396470547, 0.00220987549982965, -0.011200432665646076, -0.012688602320849895, -0.006321922410279512, 0.01920074224472046, -0.0037344100419431925, -0.006092543248087168, -0.005275728181004524, -0.05688611418008804, -0.03703639656305313, 0.023922601714730263, -0.023049840703606606, -0.059079207479953766, 0.006445004139095545, 0.03486568108201027, -0.023497411981225014, 0.004344223998486996, -0.03173269331455231, 0.011396244168281555, 0.017936358228325844, 0.04256388172507286, -0.04213869199156761, 0.06046667322516441, 0.04101976752281189, 0.026675157248973846, 0.0014504056889563799, 0.032157886773347855, 0.0027343714609742165, -0.023139355704188347, 0.00913601741194725, -0.0274360254406929, -0.02428065799176693, -0.003202921012416482, 0.043324749916791916, 0.0373944528400898, -0.018641280010342598, 0.0312851257622242, 0.026026180014014244, -0.04142257943749428, -0.009874507784843445, 0.02372119575738907, 0.017611868679523468, -0.00012552933185361326, 0.0018909821519628167, -0.008498230017721653, 0.02542196214199066, 0.006461787968873978, 0.042295340448617935, -0.02739126794040203, -0.014590773731470108, -0.02327362634241581, 0.03694688156247139, 0.01393060851842165, 6.027330891811289e-05, 0.014008932746946812, -0.005295309703797102, -0.031106097623705864, 0.009633938781917095, 0.029092032462358475, 0.059974346309900284, -0.007513577118515968, 0.025735260918736458, 0.05209711939096451, -0.05062013864517212, -0.013337578624486923, 0.001370682381093502, -0.004587589763104916, -0.043302372097969055, -0.018562955781817436, 0.03191172331571579, -0.0207896139472723, -0.0188091192394495, -0.003597341710701585, 0.04216106981039047, -0.012990711256861687, -0.04314572364091873, -0.0008259060559794307, -0.027189861983060837, -0.046860553324222565, -0.010417185723781586, 0.0028728381730616093, -0.04007986932992935, -0.0268989410251379, 0.02985290251672268, 0.030076686292886734, -0.007569523062556982, -0.06959709525108337, 0.016504134982824326, -0.021360265091061592, 0.019144795835018158, -0.006271570920944214, -0.0002435408823657781, 0.012990711256861687, 0.03285161778330803, -0.005879947450011969, 0.008459067903459072, -0.0152173712849617, 0.042765289545059204, 0.01617964543402195, -0.0364321768283844, 0.026451371610164642, -0.006355490535497665, 0.02692132070660591, 0.04618919640779495, 0.0023259639274328947, -0.017097163945436478, -0.015989428386092186, -0.031620800495147705, -0.010176616720855236, -0.02837592177093029, 0.015530670061707497, -0.04305620864033699, -0.03692450374364853, -0.038692403584718704, -0.019581176340579987, -0.04361567273736, -0.06892573833465576, 0.0013902635546401143, -0.05411118268966675, 0.0595715306699276, 0.04847180098295212, -0.020118258893489838, -0.012095572426915169, 0.009980805218219757, 0.03851337730884552, 0.026988456025719643, -0.025981422513723373, -0.0042267367243766785, 0.027995487675070763, -0.010042346082627773, -0.026675157248973846, 0.025936666876077652, -0.050396353006362915, -0.00023532377963420004, -0.043391887098550797, 0.04717385023832321, 0.0037875589914619923, 0.08244234323501587, 0.016851000487804413, 0.007502387743443251, 0.011267567984759808, 0.010596213862299919, 0.0039274245500564575, 0.003868680913001299, -0.017511166632175446, 0.007810092065483332, -0.04099738970398903, -0.00297354138456285, -0.008207309991121292, 0.005608608480542898, 0.022434433922171593, -0.026518506929278374, -0.03081517666578293, -0.0017595085082575679, -0.009594776667654514, -0.02226659469306469, -0.029203925281763077, 0.027480782940983772, 0.03204599395394325, -0.017488786950707436, -0.05984007567167282, 0.05876590684056282, 0.046815793961286545, 0.061003755778074265, 0.009343018755316734, -0.06337587535381317, -0.03757347911596298, -0.02179664559662342, -0.016078943386673927, 0.03338870406150818, -0.008347176015377045, -0.017578301951289177, 0.07313289493322372, 0.0009699675720185041, -0.03206837177276611, 0.0548720508813858, -0.005275728181004524, 0.03811056166887283, -0.018473440781235695, 0.05321604385972023, -0.022132324054837227, 0.03088231198489666, 0.0003337541420478374, 0.007731767371296883, -0.0006535217398777604, -0.0013084422098472714, 0.027570296078920364, -0.03884905204176903, -0.02277011051774025, 0.009113638661801815, -0.006601653527468443, 0.009930453263223171, -0.015407588332891464, -0.0014699868625029922, 0.015385209582746029, -0.01014304906129837, -0.003376354230567813, 0.022568704560399055, -0.02586953155696392, -0.009287072345614433, -0.02844305709004402, -0.029136789962649345, 0.01724262349307537, -0.02231135219335556, -0.0687914714217186, -0.008833907544612885, 0.010540267452597618, -0.025578610599040985, -0.017376895993947983, -0.030501877889037132, -0.008570960722863674, -0.01678386516869068, -0.005166633054614067, 0.007647847756743431, 0.008509419858455658, -0.016515323892235756, -0.01973782479763031, 0.003868680913001299, -0.0025581407826393843, -0.0034574761521071196, 0.02338551916182041, -0.005728892516344786, 0.008341580629348755, 0.009175179526209831, -0.008951394818723202, 0.01678386516869068, -0.004598779138177633, -0.017388084903359413, 0.008789150975644588, 0.02779408171772957, 0.02994241565465927, 0.037215422838926315, 0.0044085620902478695, 0.02221064828336239, -0.0029287845827639103, -0.009952832013368607, 0.004568008705973625, 0.016795054078102112, -0.000803527538664639, 0.0015245344256982207, 0.006372274365276098, -0.007709388621151447, -0.0004968723515048623, -0.019458094611763954, -0.07170066982507706, 0.011625624261796474, 0.004338629078119993, -0.03327681124210358, -0.006892574019730091, 0.012073193676769733, 0.013180929236114025, 0.029024897143244743, -0.0027315740007907152, -0.0016294335946440697, -0.011737516149878502, -0.002931581810116768, 0.012789305299520493, 0.02736889012157917, 0.011748705990612507, 0.006864600814878941, -0.01445650216192007, -0.010467537678778172, 0.02125956304371357, -0.034104812890291214, -0.05169430375099182, 0.019424526020884514, 0.010316482745110989, 0.014825747348368168, -0.013236874714493752, -0.004495278466492891, -0.020957453176379204, 0.0008203114266507328, 0.010495509952306747, 0.009885696694254875, -0.010982242412865162, -0.03681261092424393, 0.044398918747901917, 0.03385864943265915, -0.023609302937984467, 0.0025077892933040857, 0.025533853098750114, -0.06046667322516441, -0.019088849425315857, 0.00031469747773371637, -0.015105478465557098, 0.017388084903359413, 0.015284506604075432, 0.02477298490703106, 0.01967068947851658, -0.030233336612582207, -0.05317128449678421, -0.028756355866789818, -0.0177908968180418, -0.0655689686536789, -0.01466909795999527, -0.0018937794957309961, -0.021695943549275398, -0.006752708461135626, -0.0057232980616390705, -0.011558488942682743, -0.024146387353539467, -0.04699482396245003, -0.004621157422661781, 0.004064492881298065, -0.05455875024199486, -0.01415439322590828, -0.04623395577073097, 0.005874352995306253, 0.0047386446967720985, -0.0042043584398925304, -0.014691476710140705, -0.003960992209613323, -0.009024124592542648, -0.0016671973280608654, 0.0050939032807946205, -0.02685418352484703, 0.03081517666578293, 0.025556232780218124, 0.014255096204578876, 0.05831833556294441, -0.01727619208395481, -0.013829904608428478, 0.03289637714624405, 0.0308599341660738, 0.0237883310765028, 0.012800494208931923, -0.013527795672416687, 0.04464508220553398, 0.006299544125795364, 0.004735847469419241, 0.00026084925048053265, -0.018462251871824265, 0.03649931401014328, 0.0024896066170185804, -0.00985212903469801, 0.014993586577475071, 0.04057219624519348, -0.00860452838242054, 0.023542167618870735, 0.023497411981225014, -0.008369553834199905, -0.009919264353811741, 0.017600679770112038, -0.0031637586653232574, -0.004906483460217714, 0.005418390966951847, 0.00022430936223827302, 0.052410416305065155, 0.02376595325767994, 0.03562655299901962, -0.01572088710963726, -0.010971053503453732, -0.006562491413205862, 0.018641280010342598, 0.03940851613879204, -0.02273654192686081, 0.032762106508016586, 0.01882030814886093, -0.02580239623785019, 0.0020965845324099064, 0.022647028788924217, -0.01338233519345522, 0.005818406585603952, -0.009840939193964005, -0.005063132848590612, 0.01193892303854227, 0.05518534779548645, 0.010243752039968967, 0.0023007881827652454, 0.01765662617981434, -0.00259590451605618, 0.012487195432186127, 0.027033211663365364, -0.00259170844219625, -0.029517224058508873, -0.008296824060380459, -0.0042267367243766785, 0.018070628866553307, 0.016022996976971626, -0.009684289805591106, -0.04500313848257065, -0.03737207502126694, 0.012912387028336525, 0.007110764272511005, -0.00937099102884531, 0.022098755463957787, -0.024034494534134865, -0.02272535301744938, 0.002748357830569148, -0.011603245511651039, -0.033590108156204224, -0.014098446816205978, -0.018999336287379265, 0.02130432054400444, -0.005639378912746906, -0.0063051385805010796, 0.014825747348368168, -0.02781645953655243, 0.041243553161621094, 0.005362445022910833, -0.002528768964111805, -0.013136171735823154, -0.010428374633193016, 0.02484012022614479, -0.02835354395210743, -0.009488478302955627, 0.02372119575738907, 0.037215422838926315, -0.0033260027412325144, -0.004134425427764654, 0.02128194086253643, -0.039766572415828705, 0.003443489782512188, -0.027167482301592827, 0.01217389665544033, -0.008268850855529308, -0.021393833681941032, 0.009012935683131218, -0.0065904646180570126, 0.013057847507297993, 0.008733204565942287, 0.005320485215634108, 0.016436997801065445, -0.02739126794040203, -0.0023581329733133316, 0.0009329032036475837, 0.015004775486886501, 0.027212239801883698, 0.006528923753648996, -0.01926787756383419, -0.006075759418308735, 0.009214341640472412, -0.047800447791814804, 0.019458094611763954, 0.005575040355324745, 0.0385805107653141, 0.0009713661856949329, 0.026093315333127975, -0.0334334596991539, -0.022468000650405884, -0.0004563113325275481, 0.034776169806718826, -0.023184113204479218, -0.031038962304592133, -0.005197403486818075, -0.002611289732158184, -0.018451062962412834, 0.00015315276687033474, -0.020577019080519676, 0.004906483460217714, 0.036678340286016464, 0.004537238273769617, -0.027682188898324966, -0.023676440119743347, 0.007793308235704899, -0.005270133726298809, 0.005222579464316368, 0.03135225921869278, 0.01723143458366394, -0.014042500406503677, 0.00855977088212967, -0.030501877889037132, -0.03345583751797676, 0.002328761387616396, 0.004223939497023821, 0.017388084903359413, 0.028107380494475365, -0.04815850406885147, -0.03081517666578293, -0.020912695676088333, -0.054334964603185654, -0.04007986932992935, 0.004878510255366564, 0.0030294875614345074, -0.035223737359046936, 0.0022742138244211674, 0.028196893632411957, 0.01728738099336624, 0.016358673572540283, -0.028733978047966957, 0.0022224634885787964, 0.0373944528400898, 0.008319202810525894, -0.011396244168281555, -0.031643182039260864, -0.006954114884138107, -0.009040908887982368, -0.01215151883661747, 0.022635839879512787, 0.016313917934894562, 0.046815793961286545, -0.011312325485050678, -0.008822718635201454, -0.013695633970201015, 0.037685371935367584, -0.018495818600058556, -0.02383308857679367, 0.00782128144055605, -0.003298029536381364, 0.004791793413460255, 0.005275728181004524, 0.05684135854244232, 0.015094289556145668, -0.017634248360991478, -0.013639687560498714, -0.010976647958159447, -0.025981422513723373, 0.004900888539850712, -0.009986399672925472, 0.008582149632275105, 0.002381910104304552, -0.036118876188993454, -0.014691476710140705, -0.0031469748355448246, 0.0393190011382103, 0.004229533951729536, -0.006870195735245943, 0.04048268124461174, -0.013248064555227757, -0.019133606925606728, 0.003963789436966181, -0.03493281826376915, -0.005043551325798035, 0.014557206071913242, -0.001099343178793788, -0.06445004045963287, 0.03300826996564865, 0.005340066272765398, 0.033097781240940094, 0.01717548817396164, 0.020353233441710472, 0.015485912561416626, -0.026585642248392105, 0.03960992023348808, -0.022042809054255486, -0.03148652985692024, -0.0213266983628273, -0.015194992534816265, -0.0029959199018776417, -0.019044091925024986, 0.0013944595120847225, -0.0505753792822361, 0.0022014835849404335, -0.0004070087452419102, 0.009365396574139595, -0.005986245349049568, -0.005575040355324745, -0.00043218451901338995, -0.002607093658298254, 0.0177908968180418, 0.011536110192537308, -0.019100038334727287, 0.010713700205087662, -0.0006297446088865399, 0.015553048811852932, -0.003057460766285658, -0.006316327955573797, -0.004212750121951103, 0.0036812610924243927, 0.029673874378204346, 0.02779408171772957, -0.016000617295503616, -0.0040784794837236404, -0.03902808204293251, 0.04101976752281189, 0.03336632251739502, -0.008727610111236572, 0.0006727532600052655, -0.05715465545654297, 0.01388585101813078, 0.005734487436711788, -0.05482729151844978, -0.018104195594787598, -0.002849061042070389, -0.012744548730552197, 0.02020777389407158, -0.028174515813589096, -0.041713498532772064, -0.007491198368370533, -0.022501569241285324, 0.0010713700903579593, 0.0014615949476137757, -0.0032001235522329807, -0.0335453525185585, 0.0298976581543684, -0.005879947450011969, -0.03193410113453865, 0.01008710265159607, -0.002647654851898551, -0.01967068947851658, -0.029539603739976883, 0.01187178771942854, 0.0007993315812200308, -0.008341580629348755, 0.004058897960931063, -0.0032700563315302134, 0.0177908968180418, 0.07720577716827393, -0.0014175373362377286, 0.015788022428750992, 0.01544115599244833, 0.036208391189575195, 0.007351332809776068, 0.005930298939347267, 0.015855157747864723, 0.006506545003503561, -0.035469900816679, -0.030300471931695938, 0.027480782940983772, 0.014780990779399872, 0.018361547961831093, 0.01981615088880062, 0.007804497145116329, 0.014579583890736103, 0.01161443442106247, 0.036611203104257584, -0.012129140086472034, 0.03193410113453865, 0.004506467841565609, 0.03173269331455231, -0.026451371610164642, 0.0043526156805455685, -0.0046882932074368, -0.032157886773347855, 0.012185086496174335, -0.015407588332891464, -0.01621321402490139, 0.021528104320168495, -0.017388084903359413, 0.024414928629994392, 0.017041217535734177, -0.030076686292886734, -0.004802982788532972, -0.004593184683471918, -0.01193892303854227, 0.0020923884585499763, -0.037193045020103455, 0.010148643516004086, -0.006881384644657373, 0.05370836704969406, -0.026138072833418846, -0.013371146284043789, 0.006663194391876459, 0.023407896980643272, -0.022568704560399055, 0.0020070704631507397, 0.01395298633724451, -0.008889853954315186, -0.02886824868619442, 0.04307858645915985, 0.019055280834436417, -0.01931263506412506, -0.012565520592033863, -0.02777170203626156, 0.00832479726523161, -0.018831497058272362, -0.01522856019437313, -0.020979830995202065, 0.01422152854502201, 0.024571578949689865, 0.01980496011674404, -0.011206027120351791, 0.03947564959526062, 0.022557515650987625, -0.010154238902032375, 0.010277319699525833, 0.0037987481337040663, 0.029002519324421883, 0.022389676421880722, 0.044376540929079056, 0.01877555064857006, -0.027055591344833374, 0.02933819591999054, 0.03435097634792328, 0.01395298633724451, 0.026630399748682976, 0.017902789637446404, 0.001089552533812821, 0.02231135219335556, 0.008861880749464035, 0.02992003783583641, -0.024929635226726532, -0.03455238416790962, -0.006159678567200899, 0.010271725244820118, -0.031128475442528725, -0.036655962467193604, -0.023900223895907402, -0.012487195432186127, 0.033254433423280716, 0.07255105674266815, -0.042362477630376816, 0.014199149794876575, 0.03902808204293251, -0.0008832509047351778, -0.013617309741675854, 0.018876254558563232, -0.033254433423280716, 0.00958358682692051, 0.030054308474063873, 0.00722265662625432, 0.027189861983060837, -0.006545707583427429, 0.012017247267067432, 0.03186696395277977, 0.001288161613047123, 0.0029036086052656174, -0.013908229768276215, -0.0048337532207369804, 0.022143512964248657, 0.0760868564248085, -0.0018825902370736003, 0.010540267452597618, -0.008033877238631248, 0.010937485843896866, -0.0018797928933054209, 0.02687656320631504, -0.033612485975027084, -0.027212239801883698, 0.0010531875304877758, 0.026182830333709717, -0.015127857215702534, 0.00493165897205472, -0.00643940968438983, 0.0123753035441041, -0.002497998531907797, -0.014098446816205978, 0.00939896423369646, 0.058407850563526154, -0.042720530182123184, 0.02439255081117153, 0.033724378794431686, 0.022635839879512787, 0.01367325522005558, -0.013561363331973553, 0.020577019080519676, -0.02178545668721199, -0.0002879481762647629, -0.017555922269821167, 0.004181979689747095, -0.020856749266386032, 0.03406005725264549, -0.003983370494097471, -0.04976975545287132, 0.035604171454906464, 0.01188297662883997, 0.02481774240732193, -0.006422625854611397, -0.0003954698331654072, 0.035201359540224075, 0.02425828017294407, -0.023116977885365486, 0.024593956768512726, 0.009029719047248363, 0.003678463865071535, -0.029047276824712753, 0.021114101633429527, 0.004811374936252832, -0.00787722785025835, 0.0021763078402727842, -0.006120515987277031, 0.009913669899106026, 0.014579583890736103, -0.0022742138244211674, -0.004794590640813112, -0.02277011051774025, 0.01670554094016552, -0.003851897083222866, 0.04012462869286537, -0.0040784794837236404, -0.0021441387943923473, 0.030210956931114197, -0.019066471606492996, 0.028756355866789818, -0.027995487675070763, -0.016571270301938057, 0.0011427014833316207, -0.016101321205496788, 0.018562955781817436, -0.04312334582209587, -0.01672791875898838, 0.06342063099145889, -0.021953295916318893, -0.002114766975864768, 0.02882349118590355, -0.006954114884138107, 0.014780990779399872, -0.004467305261641741, -0.017063597217202187, 0.03177745267748833, -0.014176771976053715, -0.024929635226726532, -0.006713545881211758, -0.00938777532428503, -0.005284120328724384, 0.040773604065179825, -0.020565830171108246, -0.052902743220329285, 0.00047099721268750727, -0.00018794432980939746, 0.01979377120733261, 0.011038188822567463, 0.00940455961972475, -0.011536110192537308, 0.011681570671498775, 0.0181601420044899, -0.015967050567269325, -0.019390959292650223, -0.016470566391944885, -0.04775569215416908, -0.031173232942819595, -0.005049146246165037, 0.013281632214784622, -0.013583741150796413, -0.04460032284259796, -0.004470102954655886, -0.006176462396979332, -0.005295309703797102, 0.03898332267999649, -0.0037595857866108418, 0.0035665712784975767, -0.006489761173725128, 0.04274291172623634, -0.0031385826878249645, 0.06789632886648178, -0.006903763394802809, 0.007200278341770172, -0.013102604076266289, -0.003035082248970866, 0.0007363921031355858, 0.0014685882488265634, 0.035223737359046936, 0.022009242326021194, 0.013594930991530418, 0.011077350936830044, 0.012632655911147594, -0.005986245349049568, 0.02066653221845627, 0.005885541904717684, -0.04455556720495224, 0.006528923753648996, 0.023139355704188347, 0.006154084112495184, -0.022669406607747078, -0.0010273123625665903, -0.042362477630376816, 0.00015254085883498192, -0.02736889012157917, -0.019390959292650223, -0.019402148202061653, -0.02387784607708454, 0.014109635725617409, -0.01520618237555027, 0.0014685882488265634, 0.01877555064857006, -0.00010953220044029877, -0.009270288050174713, 0.011088539846241474, 0.01969306915998459, -0.00830801296979189, -0.026943698525428772, 0.010221374221146107, 0.012285789474844933, -0.0026350668631494045, -0.01972663588821888, -0.02980814501643181, -0.0046882932074368, 0.004492481239140034, 0.023005085065960884, 0.034619517624378204, -0.05603573098778725, -0.02828640677034855, 0.04419751092791557, -0.008727610111236572, 0.05075440928339958, 0.010579429566860199, -0.009796182624995708, -0.012531952932476997, 0.03383627161383629, 0.0072450353763997555, 0.0011790664866566658, -0.017835654318332672, 0.002579120686277747, -0.01671672984957695, -0.019525229930877686, 0.003465868066996336, -0.015306885354220867, 0.024661092087626457, 0.027525538578629494, -0.006998871918767691, -0.009550019167363644, 0.03701401874423027, -0.017522355541586876, -0.0042015607468783855, -0.0017161502037197351, 0.025735260918736458, -0.004142817575484514, 0.004369399510324001, 0.03338870406150818, 0.016604837030172348, -0.026943698525428772, 0.03341108188033104, -0.006310733500868082, 0.016604837030172348, -0.04153447225689888, -0.0034099218901246786, 0.025489097461104393, 0.03705877438187599, 0.03551466017961502, -0.05710989981889725, -0.04052744060754776, 0.001486770692281425, 0.02533244714140892, 0.028644463047385216, 0.021617619320750237, 0.01445650216192007, 0.030680906027555466, -0.00732895452529192, -0.004587589763104916, 0.008470257744193077, 8.120942948153242e-05, -0.043391887098550797, -0.02222183719277382, 0.0057232980616390705, -0.009343018755316734, -0.03144177421927452, -0.0655689686536789, 0.01879792846739292, -0.0010203191777691245, 0.033769138157367706, 0.017589490860700607, 0.001112630357965827, 0.006137300282716751, -0.03540276736021042, -0.01444531325250864, -0.004461710806936026, 0.01517261378467083, -0.012017247267067432, -0.025444339960813522, 0.01472504436969757, 0.009784993715584278, 0.014232717454433441, -0.01577683351933956, 0.010025561787188053, 0.0247506070882082, -0.03229215741157532, 0.07948838919401169, 0.02578001655638218, -0.021360265091061592, -0.011636813171207905, -0.018003493547439575, 0.06310733407735825, -0.0013986554695293307, 0.012017247267067432, -0.015922293066978455, 0.0008238080772571266, 0.02730175480246544, -0.006036596838384867, 0.00393581623211503, 0.011480163782835007, -0.01822727732360363, -0.008302418515086174, 0.033724378794431686, -0.021908538416028023, 0.028085000813007355, 0.006489761173725128, 0.02322886884212494, 0.00216092262417078, -0.02376595325767994, 0.02122599445283413, 0.015553048811852932, -0.043727561831474304, 0.0008384939283132553, 0.009454910643398762, -0.026451371610164642, 0.049859270453453064, -0.018909821286797523, 0.014020121656358242, -0.006176462396979332, 0.029964793473482132, 0.0007426860393024981, -0.014825747348368168, 0.019502852112054825, -0.001347604556940496, 0.0037595857866108418, -0.004520454443991184, -0.0006342902197502553, 0.005284120328724384, 0.009812966920435429, 0.022915570065379143, -0.021550482138991356, -0.01865246891975403, -0.00123291474301368, 0.0011972490465268493, -0.025668123736977577, -0.02275892160832882, 0.02889062650501728, 0.006355490535497665, -0.007882822304964066, -0.0273241326212883, -0.015967050567269325, 0.04359329119324684, -0.01664959453046322, 0.002553944941610098, 0.01931263506412506, 0.016593648120760918, -0.020028745755553246, -0.014590773731470108, -0.005846379790455103, -0.021091723814606667, 0.01217389665544033, 0.00028619988006539643, 0.03179983049631119, 0.014769801869988441, -0.01766781508922577, 0.019995179027318954, 0.0343957357108593, -0.03285161778330803, -0.02580239623785019, -0.029517224058508873, 0.02387784607708454, 0.03708115220069885, 0.023609302937984467, -0.009561209008097649, -0.01037242915481329, 0.004540035501122475, 0.033254433423280716, -0.01866365782916546, -0.01717548817396164, -0.009219937026500702, -0.01010388694703579, 0.0033371918834745884, -0.02692132070660591, 0.019983988255262375, 0.011838220059871674, 0.0010405996581539512, 0.0148928826674819, -0.000366447726264596, -0.011038188822567463, 0.004145614802837372, -0.003899451345205307, 0.007742956280708313, -0.04824801906943321, -0.02428065799176693, -0.02884586900472641, 0.006254787091165781, 0.030054308474063873, -0.0008517811656929553, -0.006540112663060427, 0.01818251982331276, 0.013863472267985344, 0.014792179688811302, 0.040258899331092834, -0.01140743400901556, 0.01266622357070446, -0.0027077968697994947, -0.007060412783175707, -0.01623559184372425, -0.030591391026973724, -0.000803527538664639, 0.0021707131527364254, -0.00091611931566149, 0.006528923753648996, -0.0011063364800065756, 0.0025665326975286007, 0.02338551916182041, 0.01764543727040291, -0.0034267057199031115, 0.015150235965847969, -0.005907920654863119, -0.0304347425699234, -0.024034494534134865, -0.010198995471000671, -0.06570323556661606, -0.0059750559739768505, 0.03195647895336151, 0.011771083809435368, -0.01393060851842165, 0.0373944528400898, -0.023586925119161606, -0.027122726663947105, 0.0027959123253822327, 0.005734487436711788, -0.030636148527264595, 0.01039480697363615, -0.028465434908866882, 0.01979377120733261, 0.019010525196790695, -0.00406169518828392, 0.007110764272511005, -0.015474723652005196, -0.0015329263405874372, -0.01422152854502201, 0.015922293066978455, -0.03347821533679962, -0.00012316909851506352, 0.02938295342028141, -0.005398809909820557, -0.04473459720611572, 0.0008363959495909512, 0.013751580379903316, 0.01619083620607853, 0.0052673364989459515, -0.006847816985100508, -0.010696916840970516, 0.02638423629105091, 0.009365396574139595, 0.002313376171514392, -0.003082636510953307, -0.007731767371296883, 0.005840785335749388, 0.045786384493112564, 0.01395298633724451, -0.014624341391026974, 0.02027490921318531, 0.020644154399633408, 0.009757020510733128, 0.014333421364426613, 0.007989119738340378, 0.011441001668572426, 0.01818251982331276, 0.017332138493657112, -0.01669435203075409, -0.019379770383238792, 0.03338870406150818, 0.008873069658875465, -0.004755428526550531, 0.006965304259210825, 0.029293440282344818, 0.043839454650878906, 0.025466717779636383, 0.04623395577073097, -0.0037651804741472006, 0.022535135969519615, -0.03381389379501343, 0.03444049134850502, -0.01625797152519226, 0.03397054225206375, -0.024974390864372253, -0.030188579112291336, -0.0035469902213662863, 0.022132324054837227, 0.006870195735245943, 0.026451371610164642, -0.0048645236529409885, 0.01723143458366394, -0.03703639656305313, 0.012308168224990368, 0.012520763091742992, -0.007541550323367119, 0.00882831308990717, -0.001112630357965827, -0.026563264429569244, 0.019077660515904427, 0.010109481401741505, -0.05308176949620247, -0.0033931380603462458, -0.0001977349165827036, 0.00297354138456285, 0.022065188735723495, -0.021416211500763893, 0.011289946734905243, -0.004548427648842335, -0.01924549974501133, -0.020935075357556343, -0.0088395019993186, 0.012274600565433502, -0.010993431322276592, 0.029114412143826485, 0.02739126794040203, 0.009667506441473961, 0.019581176340579987, -0.0029707441572099924, 0.03305302560329437, 0.028689220547676086, 0.023161733523011208, 0.0031581639777868986, -0.004654725082218647, 0.04088549688458443, 0.014232717454433441, -0.003947005607187748, -0.011217216961085796, -0.006803059950470924, 0.006003029178828001, 0.011547299101948738, -0.009012935683131218, 0.013628498651087284, 0.00707719661295414, 0.015955861657857895, -0.03307540342211723, 0.014132014475762844, -0.006170867942273617, -0.024526821449398994, 0.017555922269821167, -0.004741441924124956, 0.002637864090502262, -0.0467262826859951, -0.01267741248011589, 0.015273317694664001, 0.01777970790863037, -0.021863780915737152, -0.021114101633429527, -0.004291074816137552, 0.0004877810715697706, 0.016515323892235756, -0.0024882080033421516, 0.015318074263632298, -0.025242934003472328, 0.03385864943265915, -0.012990711256861687, 0.0036448959726840258, 0.015250938944518566, 0.015597805380821228], [0.022393224760890007, 0.021334469318389893, 0.05696781724691391, 0.02955404669046402, -0.036931175738573074, 0.018522508442401886, -0.017008377239108086, 0.01593823730945587, 0.036589641124010086, 0.021027090027928352, -0.056557975709438324, 0.013046585954725742, -0.016951454803347588, 0.03866161033511162, -0.02748207561671734, 0.030259883031249046, 0.01835174299776554, 0.004846931900829077, -0.021175088360905647, -0.026594087481498718, 0.009676787070930004, 0.044444914907217026, -0.02349751628935337, -0.04369354248046875, -0.017395447939634323, -0.008618032559752464, 0.027960222214460373, -0.030601417645812035, 0.0964491069316864, 0.0021872385405004025, 0.049271922558546066, -0.04608427733182907, 0.046858418732881546, -0.03533735126256943, 0.001276482129469514, -0.008447266183793545, -0.027891917154192924, -0.014048418030142784, -0.0166099201887846, -0.030237114056944847, -0.02834729477763176, 0.04342031478881836, -0.0062386817298829556, -0.011771527118980885, -0.024271659553050995, 0.016222849488258362, -0.0022285073064267635, -0.008521265350282192, -0.0007407011580653489, 0.014549334533512592, 0.009648325853049755, 0.03952683135867119, -0.014389951713383198, -0.024248890578746796, 0.03772808611392975, -0.031830936670303345, -0.027345461770892143, 0.021812617778778076, 0.02682177722454071, 0.0143216447904706, 0.05186757817864418, -0.031489405781030655, 0.04191756621003151, 0.003011188469827175, -0.011373070999979973, 0.012386287562549114, 0.06894426047801971, -0.00918156374245882, -0.05145774036645889, -0.019695108756422997, 0.045947663486003876, 0.008088655769824982, 0.03276446461677551, 0.05300602689385414, 0.025182416662573814, 0.021243393421173096, 0.007667430676519871, 0.008054502308368683, 4.558229193207808e-05, -0.010587544180452824, -0.014742869883775711, -0.0032417236361652613, 0.0008004695409908891, -0.034540437161922455, -0.004846931900829077, -0.006324064917862415, -0.05236849561333656, -0.02859775349497795, -0.033606912940740585, -0.015847161412239075, 0.008600955829024315, 0.038752686232328415, -0.03262785077095032, -0.00011188784992555156, -0.01022893376648426, 0.01683760993182659, 0.045924894511699677, -0.04460429772734642, -0.04077912122011185, 0.02227937988936901, -0.014993327669799328, -0.03217247128486633, -0.05013714358210564, 0.0004763683245982975, -0.016393616795539856, -0.06234128028154373, -0.016131773591041565, 0.05815180018544197, 0.0361797995865345, -0.02172154188156128, 0.05091128498315811, -0.000952736649196595, -0.052869413048028946, 0.08797907084226608, -0.03378906473517418, -0.02889374829828739, -0.09572049975395203, 0.0061532980762422085, 0.008714800700545311, 0.010564775206148624, 0.008504188619554043, -0.010217549279332161, 0.006449294276535511, -0.01870466023683548, -0.011185227893292904, -0.008008964359760284, 0.0006467793718911707, -0.015073019079864025, -0.054281085729599, -0.017418216913938522, 0.021846771240234375, -0.028552215546369553, 0.06580215692520142, -0.04166710749268532, 0.01358165591955185, -0.008936797268688679, 0.006460678763687611, 0.0030709567945450544, -0.009022180922329426, -0.015482859686017036, 0.01024601049721241, 0.02506857179105282, 0.008948181755840778, 0.045719973742961884, -0.04608427733182907, -0.01264812983572483, -0.00036038918187841773, 0.02323567308485508, -0.008595263585448265, 0.0391169898211956, -0.02679900825023651, 0.0452190563082695, -0.005709304474294186, 0.003608872415497899, 0.013080739416182041, 0.03472258895635605, 0.05186757817864418, 0.00301972683519125, -0.03265061974525452, 0.0056068445555865765, -0.006836365442723036, 0.019103117287158966, 0.022131381556391716, -0.036635179072618484, 0.057423193007707596, -0.007661738432943821, -0.010302932001650333, 0.02142554521560669, -0.016086235642433167, -0.0903925746679306, -0.03836561366915703, -0.05031929537653923, 0.0010473699076101184, -0.005359232425689697, -0.011162458918988705, -0.02349751628935337, 0.031216178089380264, 0.01720191165804863, 0.024658730253577232, 0.03740932047367096, 0.02768699638545513, 0.03738655149936676, -0.028210680931806564, 0.01992279663681984, -0.033288147300481796, -8.947470632847399e-05, -0.061020683497190475, 0.03376629576086998, -0.04064250737428665, -0.0020321253687143326, 0.024317197501659393, -0.039321910589933395, -0.010781079530715942, 0.005276695359498262, -0.007024209015071392, -0.03353860601782799, -0.0011654836125671864, 0.016484692692756653, -0.05245957151055336, -0.014492412097752094, 0.010502160526812077, -0.03854776546359062, -0.0031648785807192326, -0.028711596503853798, 0.016177311539649963, 0.009272638708353043, -0.02472703717648983, 0.007303128484636545, 0.04314708709716797, 0.04100681096315384, 0.006716828793287277, 0.014037033542990685, 0.02110678143799305, 0.007798352278769016, 0.016996992751955986, 0.005239695776253939, 0.0571955069899559, -0.033310916274785995, 0.027573151513934135, -0.0015767471631988883, -0.028165142983198166, -0.02891651727259159, 0.09681341052055359, 0.011378763243556023, -0.012135829776525497, -0.04155326262116432, 0.020036641508340836, -0.017919132485985756, 0.0016962839290499687, -0.07513740658760071, -0.08583879470825195, -0.019444650039076805, 0.01901204138994217, 0.03581549599766731, -0.009153102524578571, -0.0017233219696208835, 0.01931942068040371, 0.010080935433506966, -0.01593823730945587, -0.0038820994086563587, 0.024248890578746796, -0.0023366594687104225, -0.04383015260100365, 0.009893092326819897, -0.010035397484898567, -0.01688314788043499, -0.017418216913938522, -0.02891651727259159, 0.01871604472398758, 0.02588825300335884, 0.03563334792852402, 0.055920444428920746, 0.0511845126748085, -0.010690003633499146, 0.0286660585552454, 0.01746375486254692, 0.008771723136305809, -0.029098669067025185, 0.010633081197738647, -0.005279541481286287, -0.011651990003883839, 0.009648325853049755, -0.00046000315342098475, -0.02650301344692707, -0.02173292636871338, -0.07049255073070526, -0.02859775349497795, -0.02197199873626232, 0.012989663518965244, 0.01630254089832306, -0.033037688583135605, -0.0007556432392448187, -0.03397121652960777, -0.045423977077007294, -0.04610704630613327, 0.056831203401088715, -0.0004322535532992333, -0.00769589189440012, -0.027368230745196342, 0.020082179456949234, -0.0082821911200881, -0.02205169014632702, 0.040278203785419464, -0.048725470900535583, 0.006329757161438465, -0.00981909316033125, 0.018294820562005043, -0.0754561722278595, 0.009562943130731583, 0.010485083796083927, 0.04398953542113304, -0.03019157610833645, -0.011190920136868954, 0.0633431077003479, 0.005726381205022335, -0.0030908796470612288, -0.019364958629012108, 0.038502227514982224, -0.014799792319536209, -0.010980307124555111, 0.025706101208925247, -0.018328974023461342, -0.04089296609163284, -0.03980005532503128, 0.008026041090488434, 0.0006019530701451004, 0.025455642491579056, 0.0633431077003479, -0.020013872534036636, 0.011953677982091904, -0.013308428227901459, 0.0391852967441082, -0.010701388120651245, -0.02775530330836773, -0.006124837324023247, 0.014389951713383198, 0.021835386753082275, 0.01896650344133377, 0.04059696942567825, 0.03433551639318466, -0.03372075781226158, 0.015255170874297619, 0.005236849654465914, -0.02377074398100376, 0.0031278792303055525, -0.0331287644803524, 0.020685555413365364, 0.05145774036645889, -0.0037654086481779814, 0.0004439937765710056, 0.0007947772974148393, -0.0028888056986033916, -0.004240709822624922, 0.005857302341610193, -0.03413059934973717, -0.044467683881521225, -0.026298092678189278, 0.026138709858059883, 0.01265951432287693, -0.03524627536535263, -0.03501858562231064, -0.03970898315310478, -0.058060724288225174, 0.04423999413847923, -0.0031534943263977766, 0.003352722153067589, -0.005416154861450195, -0.029690660536289215, 0.02322428859770298, 0.03517796844244003, 0.02534179762005806, 0.06357079744338989, -0.03219524025917053, 0.024317197501659393, -0.04494583234190941, -0.03549673408269882, 0.015528397634625435, 0.040551431477069855, -0.016940070316195488, -0.012010600417852402, -0.0010317162377759814, -0.06534677743911743, -0.006859134417027235, 0.0391169898211956, 0.06493693590164185, 0.0019808951765298843, 0.0023750821128487587, 0.003705640323460102, -0.04376184567809105, -0.021630465984344482, 0.03677179291844368, 0.02595655806362629, 0.017008377239108086, 0.00044968599104322493, -0.02049202099442482, 0.03283277153968811, -0.04096127301454544, -0.016962839290499687, -0.03139832988381386, 0.014981943182647228, -0.0068762111477553844, 0.0361114926636219, -0.015892699360847473, 0.0007026343955658376, -0.045082446187734604, 0.02595655806362629, -0.0572865791618824, -0.06753259152173996, 0.004047174006700516, 0.006460678763687611, -0.00014666380593553185, -0.012295211665332317, -0.024931957945227623, -0.010115088894963264, -0.006676983088254929, 0.01294412650167942, -0.029007593169808388, 0.046858418732881546, -0.004556628409773111, -0.021357238292694092, -0.007024209015071392, -0.039595138281583786, -0.000551078817807138, 0.06147605925798416, -0.029690660536289215, -0.002671077847480774, -0.013319812715053558, -0.018465587869286537, 0.007883735932409763, -0.04046035557985306, 0.005891455803066492, -0.0009698133217170835, 0.00831065233796835, 0.027003929018974304, -0.014093955978751183, 0.03595210984349251, -0.02470426820218563, 0.0286660585552454, -0.03194478154182434, -0.021528005599975586, 0.020082179456949234, -0.021220624446868896, -0.01310350839048624, 0.037272706627845764, -0.026070402935147285, -0.0026853084564208984, -0.014640409499406815, -0.026115940883755684, -0.0016308232443407178, -0.046903956681489944, -0.019763415679335594, 0.007633277680724859, -0.015733318403363228, 0.050501443445682526, -0.059517934918403625, -0.03403952345252037, -0.03818346560001373, -0.017349909991025925, 0.019820338115096092, -0.021038474515080452, 0.02322428859770298, -0.06812458485364914, 0.055282916873693466, -0.0034352594520896673, -0.016940070316195488, -0.06001884862780571, -0.00980770867317915, 0.010684311389923096, 0.011281995102763176, -0.02316736802458763, -0.012750590220093727, -0.025136878713965416, -0.05751426890492439, 0.0030311113223433495, 0.025683332234621048, -0.05063805729150772, -0.00551007641479373, -0.002198623027652502, 0.05387124419212341, -0.019695108756422997, 0.028483908623456955, 0.012181367725133896, 0.004232171457260847, 0.01629115641117096, 0.00761050870642066, -0.03952683135867119, 0.01928526721894741, -0.04068804532289505, -0.0008730454137548804, -0.015835776925086975, 0.009517405182123184, -0.003016880713403225, 0.00812280923128128, 0.015300708822906017, 0.0024206198286265135, -0.008458650670945644, 0.02114093489944935, 0.03016880713403225, -0.05173096805810928, 0.012090291827917099, 0.0015554012497887015, 0.02930358797311783, -0.018784351646900177, -0.0241122767329216, 0.09216855466365814, -0.010137857869267464, 0.05223188176751137, 0.003902022261172533, -0.028734365478157997, -0.017987439408898354, -0.04130280390381813, 0.012716436758637428, 0.038502227514982224, -0.009010796435177326, 0.045674435794353485, 0.006079299375414848, 0.004038635641336441, 0.007747122086584568, 0.05195865407586098, -0.02379351295530796, 0.005029083229601383, 0.009540174156427383, 0.03704501688480377, 0.055647220462560654, 0.022438762709498405, 0.0018485509790480137, 0.019068963825702667, 0.014446874149143696, -0.023861819878220558, 0.03891206905245781, -0.0012551362160593271, -0.017384063452482224, 0.05277833715081215, 0.013149046339094639, -0.017998823896050453, -0.0013383850455284119, 0.04139387980103493, -0.0008716224110685289, -0.021197857335209846, -0.00872049294412136, 0.06202251464128494, 0.030965719372034073, 0.03187647461891174, 0.034176137298345566, -0.024544887244701385, 0.010177703574299812, 0.0017773981671780348, -0.017395447939634323, 0.012625360861420631, -0.012238290160894394, -0.018488356843590736, -0.019467419013381004, -0.02438550442457199, 0.04134834185242653, -0.022495685145258904, 0.026343630626797676, -0.002594232792034745, 0.0018855504458770156, -0.03203585743904114, 0.04125726595520973, 0.020947398617863655, -0.04009605199098587, -0.0028048453386873007, 0.0025800021830946207, 0.02233630232512951, -0.011953677982091904, 0.01564224250614643, 0.030624186620116234, -0.011048614047467709, 0.0027507690247148275, -0.01103153731673956, -0.007194975856691599, -0.004106942564249039, 0.0012878665002062917, 0.021562159061431885, 0.016040697693824768, 0.01867050677537918, -0.013524733483791351, -0.015881314873695374, 0.05068359524011612, -0.008452958427369595, 0.007132361643016338, 0.011304764077067375, 0.00301972683519125, -0.03652133420109749, 0.03861607238650322, 0.007969118654727936, -0.024795344099402428, -0.005399078130722046, -0.005088851787149906, -0.04587935656309128, -0.03073802962899208, 0.008703416213393211, 0.026002096012234688, 0.05341586470603943, 0.005083159543573856, -0.007502356078475714, -0.03189924359321594, 0.01780528947710991, 0.014742869883775711, 0.029690660536289215, 0.02054894156754017, 0.004932315554469824, -0.008948181755840778, -0.014902252703905106, 0.003144955961033702, -0.008236654102802277, -0.06079299375414848, 0.001211021444760263, 0.013661346398293972, -0.027231618762016296, 0.014947790652513504, 0.02349751628935337, 0.004593627993017435, 0.01538039930164814, 0.022461531683802605, -0.03463151305913925, 0.00046605116222053766, -0.004095558077096939, 0.03135279193520546, 0.013080739416182041, -0.03076079860329628, -0.00813988596200943, -0.003674332983791828, -0.042054180055856705, 0.0034921816550195217, -0.005640997551381588, 0.006676983088254929, 0.018829889595508575, 0.007769891060888767, -0.02229076437652111, -0.012841666117310524, -0.008344805799424648, -0.01779390498995781, -0.03101125732064247, -0.021334469318389893, -0.06980948150157928, -0.01478840783238411, 0.02775530330836773, -0.030373727902770042, -0.00029813044238835573, -0.027982991188764572, 0.008077271282672882, -0.013615809381008148, -0.03670348599553108, 0.02081078477203846, 0.013991495594382286, -0.018158206716179848, 0.013001048006117344, -0.041735414415597916, 0.00815696269273758, 0.0022526991087943316, -0.042304638773202896, -0.000439013063441962, -0.0165871512144804, 0.012545670382678509, 0.008418804965913296, -0.003216108772903681, -0.042350176721811295, 0.02078801579773426, -0.0015269401483237743, 0.005737765692174435, 0.016439154744148254, -0.0692630261182785, -0.007314512971788645, 0.02679900825023651, 0.008583879098296165, 0.01834035851061344, 0.0845637395977974, 0.01039400789886713, 0.03292384743690491, 0.0332426093518734, -0.04285109043121338, 0.034176137298345566, -0.001233078888617456, 0.013889036141335964, -0.016996992751955986, -0.012477363459765911, -0.014970559626817703, -0.005091697908937931, -0.048998698592185974, 0.013661346398293972, -0.007826813496649265, 0.0023679668083786964, 0.03775085508823395, 0.02529625967144966, 0.02415781468153, 0.003731255419552326, 0.02258675917983055, -0.035724420100450516, 0.0004262055444996804, -0.01313766185194254, 0.013604424893856049, 0.012636745348572731, 0.05551060661673546, -0.0036487181205302477, 0.006773751229047775, 0.031216178089380264, -0.005031929351389408, 0.028552215546369553, -0.02023017778992653, 0.008538342081010342, -0.036361951380968094, -0.001569631858728826, -0.016541613265872, 0.01594962179660797, -0.015835776925086975, -0.05364355444908142, -0.007348665967583656, 0.006682675331830978, 0.005857302341610193, 0.02657132036983967, 0.002742230659350753, 0.023998431861400604, 0.003569026943296194, 0.018636353313922882, -0.007587739732116461, -0.014002880081534386, 0.012249674648046494, 0.0013149046571925282, 0.029622353613376617, 0.009443406015634537, 0.014458258636295795, -0.0451507493853569, -0.013057970441877842, -0.02143692970275879, 0.014936406165361404, 0.009488943964242935, -0.005675151012837887, 0.011657682247459888, -0.003873561043292284, 0.011213689111173153, -0.011350302025675774, -0.03761424124240875, 0.023292595520615578, -0.034563206136226654, -0.013809344731271267, -0.0021772771142423153, 0.010325700975954533, -0.012841666117310524, -0.014481027610599995, -0.00019976162002421916, -0.027254387736320496, 0.01773698255419731, -0.0006766635924577713, -0.011817065067589283, 0.018249282613396645, -0.018328974023461342, 0.009318176656961441, 0.010473699308931828, -0.004309016279876232, -0.011429993435740471, 0.01099169161170721, -0.007758506573736668, -0.0421224869787693, 0.01024031825363636, -0.025523949414491653, 0.043238162994384766, -0.012477363459765911, -0.006762366741895676, 0.007576355244964361, -0.015164094977080822, -0.011213689111173153, 0.016678227111697197, -0.012875819578766823, 0.029144207015633583, -0.00218012323603034, 0.016689611598849297, 0.023338133469223976, -0.028574984520673752, 0.03337922319769859, 0.00647775549441576, -0.008811568841338158, -0.0391852967441082, 0.02079940028488636, 0.00012514006812125444, -0.013433657586574554, -0.004229325335472822, 0.0013768075732514262, -0.00011010903108399361, 0.07472756505012512, 0.007428357377648354, -0.018249282613396645, -0.03834284842014313, 0.02472703717648983, 0.01087215542793274, -0.01626838743686676, 0.00994432158768177, 0.013445042073726654, -0.015482859686017036, -0.033356454223394394, -0.04487752541899681, -0.013627193868160248, 0.005242541898041964, 0.020936014130711555, -0.02232491783797741, -0.023360902443528175, -0.016644073650240898, 0.006671290844678879, 0.008447266183793545, 0.026002096012234688, -0.007149438373744488, -0.006682675331830978, 0.01100307609885931, -0.006819288711994886, -0.013433657586574554, -0.028187911957502365, -0.009545866400003433, 0.00044008035911247134, 0.03369798883795738, -0.00813419371843338, 0.0037284092977643013, -0.009534481912851334, -0.055328454822301865, -0.012261059135198593, 0.0017816673498600721, 0.01475425437092781, -0.03674902394413948, -0.02438550442457199, 0.026890084147453308, 0.00656883092597127, 0.0049123927019536495, 0.0008581033325754106, -0.012465978972613811, 0.07381681352853775, 0.007547894027084112, -0.025091340765357018, 0.015334861353039742, 0.021926460787653923, -0.020002488046884537, -0.015744702890515327, 0.01565362699329853, 0.0057149967178702354, 0.0038536381907761097, 0.0020093563944101334, -0.02859775349497795, -0.034176137298345566, 0.01524378638714552, -0.003637333633378148, -0.00519415782764554, 0.029736198484897614, -0.013786575756967068, 0.009591403417289257, -0.036908406764268875, -0.018010208383202553, -0.018636353313922882, -0.009249870665371418, 0.0195471104234457, -0.008635109290480614, -0.03406229242682457, 0.005043313838541508, 0.011521069332957268, 0.011133997701108456, 0.0009890245273709297, -0.008532649837434292, -0.0011284841457381845, 0.01253428589552641, 0.0021787001751363277, 0.03579272702336311, -0.0009413521620444953, 0.04332923889160156, -0.01189675647765398, -0.0360887236893177, 0.025478411465883255, -0.02925805188715458, 0.042008642107248306, 0.02684454619884491, 0.00229254481382668, -0.008088655769824982, 0.030533110722899437, 0.011976446956396103, 0.010758310556411743, 0.03834284842014313, -0.0332198403775692, 0.011054306291043758, -0.027208849787712097, 0.034859202802181244, -0.03652133420109749, -0.016780687496066093, 0.006756674498319626, -0.013661346398293972, 0.004846931900829077, 0.011782911606132984, -0.03948129341006279, -0.011680451221764088, -0.016461923718452454, 0.014435489661991596, -0.04187202826142311, -0.012625360861420631, -0.004272017162293196, 0.02497749589383602, -0.0014913637423887849, -0.01102015282958746, 0.017623137682676315, -0.03497304767370224, -0.01714499108493328, 0.028574984520673752, 0.04310154914855957, 0.01358165591955185, 0.04619812220335007, -0.0038877916522324085, 0.0603831522166729, 0.05701335519552231, 0.01567639596760273, 0.001033850829117, -0.010701388120651245, -0.03556504100561142, 0.01840866543352604, -0.004997775889933109, 0.0010509275598451495, 0.04968176409602165, -0.038775455206632614, 0.026958391070365906, -0.005746304057538509, 0.008800184354186058, 0.015152710489928722, 0.011669066734611988, -0.00936940684914589, -0.021596312522888184, -0.007724353112280369, -0.021789848804473877, -0.010712772607803345, -0.03019157610833645, 0.014378567226231098, 0.013035201467573643, 0.011703220196068287, -0.018898196518421173, -0.0165643822401762, -0.015733318403363228, 0.008043117821216583, 0.0512300506234169, 0.004650549963116646, -0.011999215930700302, -0.005632459651678801, -0.014116724953055382, 0.004733087494969368, -0.006688367575407028, 0.037796393036842346, -0.01539178378880024, 0.008077271282672882, 0.04312431812286377, 0.0029400356579571962, -0.03522350639104843, -0.005043313838541508, 0.022814448922872543, -0.03686286881566048, 0.010035397484898567, 0.0017076682997867465, 0.019410496577620506, -0.04102957993745804, -0.019478803500533104, 0.02955404669046402, 0.014002880081534386, 0.04289662837982178, 0.0006044434267096221, 0.014230569824576378, 0.03071526065468788, 0.023861819878220558, 0.017338525503873825, 0.003401106223464012, -0.011965062469244003, 0.004291939549148083, -0.0017147836042568088, -0.022233841940760612, -9.97918687062338e-05, 0.03954960033297539, 0.052869413048028946, 0.0027635765727609396, 0.0037170248106122017, 0.03898037597537041, 0.03763701021671295, -0.021926460787653923, 0.03656687214970589, 0.02679900825023651, -0.008401728235185146, -0.036657948046922684, -0.025501180440187454, 0.015585320070385933, 0.016757918521761894, -0.029941119253635406, 0.027960222214460373, 0.032149702310562134, 0.0271633118391037, -0.023338133469223976, 0.033037688583135605, 0.005219772923737764, 0.017110837623476982, -0.014981943182647228, 0.002360851503908634, -0.0005485884612426162, -0.03672625496983528, -0.0005340021452866495, 0.04246401786804199, 0.025387335568666458, -0.0002547272015362978, 0.0362025685608387, 0.00011677961447276175, 0.03278723359107971, -0.007473895326256752, -0.00044221495045349, -0.017270218580961227, 0.04048312455415726, -0.005834533367305994, -0.008356190286576748, -0.01626838743686676, 0.02563779428601265, 0.009562943130731583, 0.009067718870937824, 0.016074851155281067, -0.011481223627924919, 0.024863651022315025, 0.0061817592941224575, 0.00815696269273758, 0.04394399747252464, -0.042350176721811295, 0.03549673408269882, 0.008959566242992878, -0.00415248004719615, 0.04339754581451416, 0.0046590883284807205, -0.0007104611722752452, 0.008174039423465729, -0.0241122767329216, 0.01416226290166378, -0.019820338115096092, 0.023588592186570168, 0.0002929718466475606, 0.007217744830995798, 0.025387335568666458, 0.003449490061029792, -0.018294820562005043, -0.024021200835704803, 0.007889428175985813, 0.04089296609163284, -0.024613192304968834, -0.016461923718452454, 0.04312431812286377, -0.03681733086705208, -0.02470426820218563, 0.021619081497192383, 0.011976446956396103, 0.03353860601782799, 0.039959438145160675, 0.02536456659436226, -0.005643843673169613, -0.017395447939634323, 0.006284219678491354, 0.029075900092720985, 0.012773359194397926, -0.009756478480994701, -0.009437713772058487, 0.0005421846872195601, 0.0603831522166729, -0.01520963292568922, -0.00018891080981120467, 0.026138709858059883, 0.01038831565529108, 2.7638434403343126e-05, -0.01929665170609951, 0.007325896993279457, -0.02506857179105282, -0.022176919505000114, -0.04676734283566475, 0.01839728094637394, -0.0055755372159183025, -0.0036629484966397285, -0.008976642973721027, 0.004331785254180431, 0.0014152301009744406, -0.013160430826246738, 0.020048025995492935, 0.0422818697988987, -0.06534677743911743, 0.011669066734611988, 0.0025045801885426044, -0.007752814330160618, -0.017349909991025925, -0.026753470301628113, -0.007912196218967438, -0.06056530401110649, -0.018454203382134438, 0.0017432448221370578, -0.00768450740724802, -0.010764002799987793, 0.036043185740709305, 0.009989859536290169, -0.03164878487586975, 0.010786771774291992, 0.005148619879037142, 0.009648325853049755, -0.016461923718452454, 0.024248890578746796, 0.037545934319496155, 0.019080348312854767, 0.005370616912841797, 0.01026308722794056, -0.0070697469636797905, 0.006267142947763205, -0.03879822418093681, 0.012568439356982708, -0.01896650344133377, -0.029758967459201813, -0.011116920970380306, -0.013319812715053558, -0.0036231030244380236, 0.020651401951909065, 0.050546981394290924, 0.02048063650727272, -0.020640017464756966, 0.008498496375977993, -0.03292384743690491, 0.03410783037543297, 0.0043260930106043816, 0.006284219678491354, 0.04492306336760521, 0.008242346346378326, 0.006927441339939833, -0.022108612582087517, -0.021038474515080452, -0.0033982601016759872, 0.0391169898211956, 0.01894373446702957, 0.020696939900517464, -0.006762366741895676, 0.011862603016197681, -0.03879822418093681, -0.0043858615681529045, -0.008048810064792633, -0.015482859686017036, -0.004932315554469824, -0.02143692970275879, -0.005458846688270569, 0.0009377945098094642, -0.004468398634344339, -0.0007641816046088934, 0.025478411465883255, -0.011116920970380306, -0.025273490697145462, 0.021015705540776253, -0.010524929501116276, 0.0014956328086555004, -0.0029684968758374453, -0.010946153663098812, -8.280413021566346e-05, -0.00919294822961092, -0.02021879330277443, 0.0012103099143132567, 0.016666842624545097, 0.006853442173451185, -0.022222457453608513, 0.0031705708242952824, 0.0018770120805129409, -0.03520073741674423, -0.001236636540852487, -0.023281211033463478, 0.010496468283236027, 0.00812280923128128, -0.06493693590164185, 0.00656883092597127, -0.005595460068434477, -0.0017176297260448337, 0.02777807228267193, -0.003569026943296194, -0.001821512938477099, 0.015756087377667427, -0.005179927218705416, -0.0027194619178771973, 0.07172206789255142, -0.00192397297360003, 0.005680843256413937, -0.015084403567016125, -0.0006542504415847361, 0.02354305423796177, 0.01524378638714552, 0.03276446461677551, -0.014276107773184776, -0.006358218379318714, -0.014890868216753006, 0.009915861301124096, -0.0033954139798879623, 0.015186863951385021, -0.02144831418991089, -0.007929272949695587, -0.00219150772318244, 0.008487111888825893, 0.00015529108350165188, -0.03347029909491539, -0.010342777706682682, -0.02775530330836773, 0.029417432844638824, -0.008669262751936913, 0.0040244050323963165, -0.007564970757812262, 0.00708113145083189, 0.005094544030725956, -0.016222849488258362, 0.013627193868160248, 0.009266946464776993, -0.006113452836871147, -0.006517600733786821, -0.018624968826770782, 0.009927245788276196, -0.026002096012234688, -0.015573935583233833, 0.025797177106142044, -0.01903481036424637, 0.02930358797311783, -0.007451126351952553, 0.002063432475551963, -0.01461764145642519, -0.006432217545807362, 0.026298092678189278, 0.03820623457431793, -0.030214345082640648, -0.007564970757812262, 0.027186080813407898, -0.005652382038533688, 0.02315598353743553, 0.02347474731504917, -0.05992777273058891, -0.01750929281115532, 0.01897788792848587, 0.019387727603316307, -0.005592613946646452, -0.022427378222346306, -0.00022662182163912803, -0.015073019079864025, -0.016518844291567802, -0.01778252050280571, -0.001656438340432942, 0.006637137848883867, 0.004343169741332531, 0.0143444137647748, -0.014572103507816792, 0.027322692796587944, -0.027345461770892143, 0.0018570893444120884, -0.01897788792848587, 0.012135829776525497, 0.002951420145109296, -0.0062386817298829556, 0.015573935583233833, 0.0332198403775692, -0.025728870183229446, 0.01294412650167942, 0.006523292977362871, -0.026639625430107117, -0.025182416662573814, 0.013672730885446072, 0.027641458436846733, 0.0007157976506277919, -0.01535763032734394, -0.025387335568666458, -0.03495027869939804, 0.028165142983198166, 0.01310350839048624, -0.012352134101092815, 0.017600368708372116, -0.011771527118980885, -0.007268975023180246, -0.0007478164043277502, -0.002248429926112294, 0.001672091893851757, -0.02078801579773426, 0.002437696559354663, -0.03836561366915703, -0.02020740881562233, 0.04681288078427315, -0.03522350639104843, -0.0241350457072258, 0.027891917154192924, -0.04735933616757393, 0.01869327574968338, 0.016780687496066093, -0.0016977069899439812, 0.0015383245190605521, -0.028438370674848557, 0.006540369708091021, -0.007832505740225315, -0.0038536381907761097, -0.023133214563131332, -0.018488356843590736, 0.023030754178762436, 0.02050340548157692, -0.03378906473517418, -0.004118327051401138, 0.028483908623456955, -0.013604424893856049, -0.013035201467573643, 0.046903956681489944, -0.010593236424028873, -0.02625255472958088, 0.04544674605131149, -0.04612981528043747, 0.02625255472958088, -0.0016052082646638155, -0.0020449329167604446, -0.012147214263677597, -0.012078907340765, 0.020309869199991226, -0.0035064122639596462, -0.0008118539699353278, -0.012386287562549114, 0.012204136699438095, 0.014230569824576378, 0.001133464858867228, -0.010929077863693237, 0.026389168575406075, 0.000632193055935204, -0.019979719072580338, -0.030350958928465843, -0.04918084666132927, -0.023099061101675034, -0.015471475198864937, 0.0007271820795722306, -0.010553390718996525, 0.02500026486814022, 0.003566180821508169, 0.011054306291043758, -0.042691707611083984, -0.0011910987086594105, 0.014424105174839497, -0.0037625625263899565, -0.010724157094955444, 0.01688314788043499, 0.009244178421795368, 0.010314316488802433, -0.018169591203331947, 0.01523240189999342, 0.005512922536581755, 0.013342581689357758, 0.006494831759482622, 0.020958783105015755, 7.270931382663548e-05, 0.020070794969797134, 0.025501180440187454, 0.004479783121496439, -0.03235462307929993, -0.006534677464514971, 0.005068928934633732, 0.00762189319357276, -0.014492412097752094, -0.0023907357826828957, -0.0009484674665145576, 0.04492306336760521, -0.020594479516148567, 0.012636745348572731, 0.009454790502786636, 0.012477363459765911, 0.01780528947710991, 0.006967287044972181, 0.013991495594382286, -0.003512104507535696, 0.02536456659436226, -0.018636353313922882, 0.0012850203784182668, -0.0026596933603286743, -0.007416972890496254, -0.022723373025655746, 0.0014999019913375378, -0.0011782911606132984, -0.0012288097059354186, -0.02079940028488636, 0.01477702334523201, 0.012864435091614723, 0.007451126351952553, -0.021334469318389893, -0.07372573763132095, 0.0035291812382638454, -0.002440542681142688, -0.020412329584360123, -0.015312093310058117, 0.02654855139553547, 0.022677835077047348, -0.023451978340744972, -0.013365350663661957, 0.009568635374307632, 0.009545866400003433, 0.016735149547457695, 0.027664227411150932, -0.001989433541893959, -0.021801233291625977, -0.0005005602724850178, -0.02354305423796177, -0.012272443622350693, -0.0026041942182928324, 0.005450308322906494, -0.013012432493269444, -0.02559225633740425, 0.007337281480431557, -0.027299923822283745, 0.005626767408102751, 0.03579272702336311, -0.01624561846256256, -0.0029314972925931215, 0.03356137499213219, -0.01843143440783024, 0.015482859686017036, 0.005535691510885954, 0.03939021751284599, -0.026981160044670105, -0.022677835077047348, -0.0033897217363119125, -0.009312484413385391, -0.02051478996872902, 0.01568778045475483, -0.003984559327363968, -0.0012295212363824248, -0.01749790832400322, -0.0026824623346328735, 0.005862994585186243, -0.016814840957522392, -0.001787359593436122, -0.02593378908932209, -0.003045341931283474, -0.03740932047367096, -0.027208849787712097, -0.009147410281002522, -0.015835776925086975, 0.005766226910054684, -0.01101446058601141, -0.005046159960329533, -0.02497749589383602, -0.009249870665371418, -0.023930124938488007, 0.004422861151397228, -0.020378176122903824, 0.0008645071065984666, -0.04483198747038841, 0.05510076507925987, 0.0392536036670208, -0.012409056536853313, 0.01774836704134941, 0.004018712788820267, -0.03199031949043274, -0.03586103394627571, 0.018875427544116974, 0.006295604165643454, 0.014526565559208393, 0.0064834472723305225, -0.04799686372280121, -0.02559225633740425, -0.018476972356438637, 0.0006499812589026988, 0.01625700294971466, -0.036589641124010086, -0.0020250100642442703, -0.012443209998309612, 0.031489405781030655, 0.02377074398100376, 0.007325896993279457, -0.009289715439081192, -0.006620061118155718, 0.03652133420109749, 0.024909188970923424, -0.0025800021830946207, -0.024522118270397186, -0.004513936582952738, -0.020879091694951057, 0.009158794768154621, -0.008948181755840778, -0.00997278280556202, 0.013171815313398838, 0.034540437161922455, 0.011071383021771908, 0.031466636806726456, -0.009033565409481525, 0.02800576016306877, 0.0032018781639635563, 0.03431275114417076, 0.027322692796587944, 0.0070412857457995415, 0.03861607238650322, 0.014219185337424278, 0.04005051404237747, 0.028119605034589767, -0.0060394536703825, -0.006147605832666159, 0.008783107623457909, -0.003352722153067589, 0.005601152312010527, -0.058698251843452454, 0.04437660798430443, -0.01898927241563797, 0.019786184653639793, 0.0195584949105978, 0.03898037597537041, 0.028757134452462196, 0.0165757667273283, -0.03866161033511162, -0.051412202417850494, 0.07290605455636978, 0.016154542565345764, 0.03765977919101715, -0.02559225633740425, 0.0010886385571211576, -0.00874895416200161, 0.04394399747252464, -0.0070128245279192924, 0.02167600393295288, -0.00012914241233374923, 0.010906308889389038, -0.0058516100980341434, 0.0032417236361652613, 0.015095788054168224, 0.013593040406703949, -0.005225465167313814, -0.00549869192764163, 0.020719708874821663, 8.800718205748126e-05, -0.01312627736479044, 0.017611753195524216, -0.013615809381008148, 0.015425937250256538, -0.0039475602097809315, -0.04612981528043747, 0.01774836704134941, -0.004021558910608292, 0.020913245156407356, 0.05095682293176651, -0.022848602384328842, 0.011691835708916187, -0.02618424780666828, 0.014537950046360493, -0.018841274082660675, -0.006722521036863327, -0.03891206905245781, -0.024590423330664635, -0.01144707016646862, -0.01870466023683548, 0.02686731517314911, 0.011401532217860222, -0.002416350645944476, -0.010439545847475529, -0.018807120621204376, 0.026912853121757507, 0.03460874408483505, 0.015289324335753918, -0.026935622096061707, -0.02654855139553547, -0.004343169741332531, -0.0072063603438436985, -0.036293644458055496, 0.009756478480994701, 0.007143746130168438, 0.020275715738534927, -0.00033228378742933273, 0.0026981160044670105, 0.014128109440207481, -0.0019154346082359552, -0.017349909991025925, 0.031147871166467667, -0.010115088894963264, 0.0020449329167604446, -0.02381628192961216, 0.0024618885945528746], [-0.029346654191613197, -0.035345934331417084, 0.04030562564730644, -0.03889785334467888, 0.011229697614908218, -0.00044263634481467307, -0.02776561677455902, 0.001149230170994997, 0.06458429992198944, 0.10517147928476334, 0.00016302756557706743, 0.007347492501139641, 0.025881366804242134, -0.008305860683321953, -0.08975094556808472, 0.0013651337940245867, -0.03469619154930115, -0.005176273174583912, 0.00921549927443266, 0.008711948990821838, 0.0028209607116878033, 0.012669957242906094, -0.018853329122066498, -0.004458850249648094, -0.04812417924404144, -0.03813982009887695, 0.02696426771581173, 0.022069549188017845, 0.030126342549920082, -0.04383588582277298, 0.0693923830986023, -0.03714355081319809, 0.05830346420407295, -0.023867167532444, 0.024950070306658745, -0.011467935517430305, -0.024516908451914787, -0.02295752987265587, 0.022870898246765137, -0.0038713759277015924, -0.043272778391838074, 0.024971727281808853, 0.011370474472641945, -0.034306347370147705, -0.02098664827644825, 0.051286254078149796, 0.004821622744202614, 0.03272530809044838, -0.03525929898023605, 0.043164487928152084, -0.025361573323607445, 0.0071363262832164764, -0.0019167371792718768, 0.04751775413751602, 0.0009813802316784859, 0.015290581621229649, 0.013980269432067871, 0.013958611525595188, -0.025448204949498177, -0.021246545016765594, -0.007439539302140474, -0.003478823695331812, 0.028112145140767097, 0.04626158997416496, -0.024213695898652077, 0.048600658774375916, 0.008452053181827068, 0.015463845804333687, -0.012637470848858356, -0.0048974258825182915, 0.029043441638350487, 0.0040473476983606815, -0.03190230205655098, -0.006638191640377045, 0.0021170740947127342, 0.007157984655350447, 0.021982917562127113, 0.01115389447659254, -0.0015485503245145082, -0.04383588582277298, -0.0028696912340819836, -0.007813140749931335, 0.023520639166235924, -0.03023463301360607, 0.04842739179730415, 0.003614186542108655, -0.06224522739648819, -0.02408374845981598, -0.026184579357504845, -0.03857298195362091, 0.014424259774386883, 0.021842140704393387, -0.028220435604453087, 0.031729038804769516, 0.007163398899137974, 0.030711110681295395, 0.03943930193781853, -0.022589342668652534, -0.05171941593289375, 0.010563712567090988, 0.030516188591718674, 0.005016545299440622, -0.05176273360848427, 0.036385517567396164, 0.01810612715780735, -0.09676815569400787, -0.06575383245944977, 0.045222003012895584, 0.04329443722963333, -0.01477078814059496, -0.03190230205655098, 0.003979666158556938, -0.012778247706592083, 0.0652773529291153, -0.004659187514334917, 0.011143065057694912, 0.0010246963938698173, 0.004337023943662643, 0.017900375649333, 0.012734931893646717, 0.009973530657589436, -0.00424497714266181, 0.030472872778773308, -0.07255445420742035, 0.02354229800403118, -0.030581163242459297, -0.033071838319301605, -0.03406810760498047, -0.020087838172912598, 0.02830706723034382, 0.041605107486248016, -0.05505475401878357, -0.001713693025521934, -0.07887860387563705, -0.011597883887588978, -0.035757437348365784, 0.023802192881703377, -0.0038876193575561047, -0.0009333264897577465, -0.024451935663819313, 0.02910841442644596, 0.005308928899466991, 0.008652389980852604, 0.017348095774650574, -0.011392132379114628, 0.023737220093607903, 0.0010267267934978008, 0.051199622452259064, -0.00931296031922102, -0.013763688504695892, 0.009648660197854042, 0.02984478883445263, -0.058693308383226395, 0.04030562564730644, 0.030429556965827942, 0.04372759535908699, 0.009746121242642403, 0.029454944655299187, 0.0012460144935175776, 0.012983999215066433, -0.04916376620531082, -0.01654674857854843, -0.00880399625748396, 0.016503430902957916, 0.013980269432067871, -0.005847672466188669, -0.03859464079141617, -0.023520639166235924, -0.02479846403002739, -0.056440871208906174, -0.06081579625606537, -0.012366744689643383, -0.06462761014699936, -0.007439539302140474, -0.015128145925700665, -0.050766460597515106, 0.03640717640519142, 0.022047892212867737, -0.034826140850782394, -0.020954160019755363, 0.0062050302512943745, -0.018257733434438705, -0.09260980784893036, -0.06224522739648819, -0.011121407151222229, 0.011933583766222, 0.017867889255285263, 0.05215257778763771, -0.02622789517045021, 0.01781374402344227, 0.02809048630297184, 0.02417038008570671, -0.023065820336341858, -0.005422633606940508, -0.002620623679831624, 0.02232944592833519, 0.004155637696385384, 0.007049694191664457, 0.018669236451387405, 0.013254724442958832, 0.00676813954487443, -0.01936229318380356, 0.01383949164301157, -0.023498980328440666, -0.021441467106342316, 0.010812779888510704, 0.009838167577981949, -0.018366023898124695, 0.017337266355752945, 0.004640236496925354, 0.0012575204018503428, -0.008603659458458424, 7.037807790766237e-06, 0.016124416142702103, -0.04929371550679207, 0.0027586936485022306, 0.043770913034677505, -0.01891830377280712, -0.005051739513874054, -0.007991819642484188, -0.011121407151222229, -0.05275900289416313, 0.023412348702549934, -0.03939598798751831, -0.03818313777446747, -0.005696066189557314, -0.0048974258825182915, -0.02460354194045067, 0.011088919825851917, -0.05908315256237984, -0.04730117321014404, 0.01840933971107006, 0.0166658665984869, -0.04673806577920914, -0.016720011830329895, -0.02488509565591812, -0.01716400310397148, -0.03660209849476814, -0.02603297308087349, 0.016091929748654366, -0.04227650910615921, 0.004889304284006357, -0.011511252261698246, -0.035562511533498764, -0.02871857024729252, -0.024343645200133324, -0.013969440013170242, -0.04344604164361954, 0.10482494533061981, 0.033786553889513016, 0.052629053592681885, 0.02252436801791191, 0.007959332317113876, -0.03129587695002556, 0.06679341942071915, -0.03227049112319946, 0.04764770343899727, -0.028350383043289185, 0.06246180832386017, 0.008062208071351051, -0.003126880619674921, 0.035540856420993805, 0.0052737342193722725, 0.04071712866425514, -0.052325841039419174, 0.006042595021426678, 0.03508603572845459, -0.007315005175769329, -0.05414511635899544, 0.0018233368173241615, -0.02252436801791191, 0.048514027148485184, -0.024213695898652077, -0.032876916229724884, -0.03982914984226227, 0.004767477512359619, -0.043467700481414795, -0.0234556645154953, 0.03551919758319855, -0.024343645200133324, 0.0013631032779812813, -0.047474440187215805, -0.007731922902166843, -0.06129227206110954, 0.008343762718141079, 0.0024121650494635105, 0.017434727400541306, -0.026271210983395576, -0.02635784260928631, 0.003259536111727357, -0.012085190042853355, 0.03774997591972351, 0.009080136194825172, 0.01203104481101036, 0.02839369885623455, 0.03125256299972534, 0.02778727374970913, 0.04132355377078056, 0.004967814311385155, 0.06566719710826874, -0.03673204779624939, -0.04043557494878769, -0.04112863168120384, -0.018073640763759613, -0.019459756091237068, 0.04721454158425331, 0.0004483892407733947, 0.024365302175283432, 0.009296717122197151, 0.00818674173206091, 0.027419088408350945, 0.02540488913655281, -0.027830589562654495, -0.024971727281808853, -0.029779814183712006, 0.0203693937510252, 0.016698354855179787, 0.027743957936763763, 0.003589821280911565, 0.032357122749090195, 0.006616533268243074, -0.053755272179841995, 0.032248832285404205, -0.022242814302444458, 0.005999279208481312, 0.00951871182769537, 0.01121886819601059, 0.028047170490026474, -0.028956808149814606, 0.03413308039307594, -0.003356997389346361, -0.024971727281808853, -0.0097731938585639, -0.05145952105522156, -0.0222211554646492, -0.0011587055632844567, 0.005853087175637484, 0.02707255817949772, 0.004892011173069477, -0.02149561233818531, -0.03816147893667221, -0.0374467633664608, -0.017207318916916847, 0.03144748508930206, -0.012355916202068329, 0.06380460411310196, 0.02068343572318554, 0.013709544204175472, -0.001516063348390162, 0.08801830559968948, -0.019059080630540848, 0.03974251449108124, -0.03577909246087074, 0.03839971870183945, -0.04331609234213829, -0.03473950922489166, 0.02458188310265541, -0.01203104481101036, -0.023585613816976547, -0.0012927147326990962, -0.003949886187911034, -0.05115630850195885, 0.016849961131811142, 0.05358200892806053, -0.061378903687000275, 0.0010774878319352865, -0.0073204198852181435, -0.007753580808639526, -0.006356636993587017, -0.029151732102036476, 0.051199622452259064, 0.00045515739475376904, 0.009913970716297626, -0.019221516326069832, -0.0032649505883455276, 0.021939601749181747, -0.018842501565814018, -0.018246904015541077, -0.017228975892066956, 0.006432440131902695, -0.006643605884164572, 0.04543858394026756, 0.02644447609782219, -0.003321802942082286, -0.01264829933643341, 0.029260020703077316, -0.05813019722700119, -0.02017447166144848, 0.03463121876120567, 0.04026230797171593, 0.025989657267928123, -0.02087835781276226, -0.010747806169092655, 0.028783544898033142, -0.04236314073204994, -5.4441225074697286e-05, 0.011457107029855251, 0.0641944482922554, 0.009708219207823277, -0.0362122543156147, -0.009599929675459862, -0.07147155702114105, 0.019015764817595482, -0.026097945868968964, -0.029195047914981842, 0.010303815826773643, 0.02128986082971096, -0.016535919159650803, -0.0019099690252915025, -0.0017028639558702707, 0.009367105551064014, -0.013438818044960499, 0.03023463301360607, 0.05566117912530899, -0.003218927187845111, 0.02880520187318325, 0.02056431584060192, -0.012691615149378777, -0.016005296260118484, -0.017348095774650574, 0.050853095948696136, 0.022502711042761803, 0.005566118285059929, 0.03612562268972397, -0.013514621183276176, 0.030321266502141953, 0.03917940706014633, 0.007704850286245346, -0.019503071904182434, -0.006925160530954599, -0.019817113876342773, 0.003893034067004919, 0.009805681183934212, 0.04167008399963379, -0.03963422775268555, -0.031425826251506805, -0.02408374845981598, -0.034934431314468384, -0.022459395229816437, -0.028566963970661163, 0.0039255209267139435, 0.006508243270218372, 0.06020937114953995, -0.00869570579379797, -0.06549393385648727, -0.008988089859485626, -0.027700642123818398, 0.02365058660507202, 0.0218096524477005, 0.005095055792480707, -0.012875708751380444, -0.0031133443117141724, -0.04015401750802994, 0.01163037121295929, -0.03014800138771534, -0.02490675449371338, -0.01080736517906189, -0.03434966132044792, 0.07775238901376724, -0.004469679668545723, 0.001961406785994768, 0.05007340386509895, 0.018571775406599045, 0.024646857753396034, 0.019210686907172203, 0.006957647390663624, 0.05223920941352844, -0.030906032770872116, -0.01635182462632656, -0.03764168545603752, -0.02501504495739937, -0.009599929675459862, 0.05895320326089859, -0.01809529773890972, -0.0218096524477005, 0.030061369761824608, -0.0009008393972180784, -0.022979188710451126, -0.01425099465996027, 0.0526723712682724, 0.02900012582540512, 0.04929371550679207, -0.03506437689065933, -0.0218096524477005, -0.006621947977691889, -0.02943328581750393, 0.03311515226960182, 0.0170773696154356, 0.018333537504076958, -0.03837805986404419, -0.03913608938455582, -0.02447359263896942, -0.0013373844558373094, -0.007694021333009005, -0.008322104811668396, -0.024148723110556602, -0.04147515818476677, 0.0002311319694854319, 0.03731681406497955, -0.015030684880912304, 0.009042235091328621, 0.007813140749931335, 0.01312477607280016, -0.012691615149378777, -0.0008162376470863819, 0.018495971336960793, 0.043619304895401, -0.03541090711951256, -0.03469619154930115, 0.006881844252347946, -0.01034171786159277, -0.004881182219833136, 0.034306347370147705, -0.005696066189557314, -0.00921549927443266, -0.007363736163824797, -0.001558025716803968, 0.02490675449371338, -0.02858862280845642, -0.015474674291908741, 0.030797742307186127, -0.018571775406599045, -0.013113947585225105, 0.006811455823481083, 0.0012372159399092197, 0.03185898810625076, -0.01012513693422079, -0.0325087271630764, 0.01626519300043583, -0.00890145730227232, -0.004133979789912701, -0.015712913125753403, -0.03077608533203602, 0.023498980328440666, -0.009464566595852375, 0.010309230536222458, -0.018680065870285034, 0.008202984929084778, -0.031685721129179, 0.0029482017271220684, -0.010764049366116524, -0.01862592063844204, -0.0014483819250017405, 0.004845988005399704, 0.030018053948879242, -0.008749851025640965, -0.02417038008570671, 0.012778247706592083, -0.019925402477383614, -0.0026463426183909178, 0.0037305986043065786, 0.0242786705493927, -0.01572374254465103, 0.007033450994640589, -0.004726868588477373, 0.03985080495476723, 0.025881366804242134, -0.046348221600055695, -0.02016364224255085, 0.012128506787121296, -0.007878114469349384, 0.016416799277067184, -0.025426547974348068, 0.01090482622385025, -0.02161473035812378, 0.003819938050583005, -0.009080136194825172, -0.005793527700006962, 0.0037712075281888247, -0.046348221600055695, -0.020726751536130905, -0.008771508932113647, 0.004410119727253914, 0.009177597239613533, 0.006372880190610886, 0.03118758834898472, 0.0032649505883455276, -0.017629649490118027, 0.018550116568803787, 0.05709061026573181, 0.00833293329924345, 0.013048972934484482, -0.011966071091592312, -0.04834076017141342, -0.001681205932982266, -0.006134641822427511, -0.00015558261657133698, -0.05245579034090042, -0.01986042968928814, 0.00021285799448378384, 0.001487637055106461, -0.01264829933643341, -0.02962820790708065, -0.03913608938455582, 0.02910841442644596, 0.0211923997849226, 0.011337988078594208, -0.0006355282966978848, -0.013514621183276176, 0.01736975461244583, -0.009448323398828506, -0.01121886819601059, 0.0007302822778001428, 0.011283842846751213, -0.06449766457080841, -0.01779208518564701, -0.010368789546191692, -0.020715922117233276, 0.03253038600087166, -0.013666227459907532, 0.007791482377797365, -0.028372041881084442, -0.011413791216909885, -0.024755148217082024, -0.0021170740947127342, -0.02581639215350151, -0.02182048186659813, -0.056744083762168884, -0.02271929197013378, -0.019784625619649887, 0.011164722964167595, -0.031317535787820816, 0.023715561255812645, -0.027029242366552353, -0.006546144839376211, -0.0018558239098638296, -0.0485573410987854, -0.004919083788990974, -0.0052520763128995895, -0.024018773809075356, -0.01255083829164505, 0.046131640672683716, -0.016914933919906616, 0.007352906744927168, 0.012085190042853355, -0.019427267834544182, 0.01074239145964384, -0.011446277610957623, -0.03645049408078194, -0.0012297709472477436, 0.015453016385436058, 0.017304779961705208, 0.03382986783981323, -0.012767418287694454, 0.05362532287836075, 0.005078812129795551, -0.008484539575874805, 0.03402479365468025, 0.04569847881793976, -0.010152209550142288, 0.05453496053814888, 0.013568766415119171, -0.007315005175769329, 0.017250634729862213, 0.028935151174664497, 0.003478823695331812, -0.03941764682531357, 0.012767418287694454, 0.0010693661170080304, 0.01902659423649311, -0.021571414545178413, 0.012290941551327705, 0.006383709143847227, -0.00791601650416851, 0.02058597281575203, 0.028870176523923874, 0.055184703320264816, -0.009697390720248222, -0.01987125724554062, -0.016839131712913513, -0.03551919758319855, -0.005027374252676964, 0.013622911646962166, -0.019297320395708084, -0.027938880026340485, -0.05206594616174698, -0.008836483582854271, 0.036667075008153915, 0.002620623679831624, 0.027310797944664955, -0.06046926602721214, -0.010422934778034687, -0.022199498489499092, 0.03166406601667404, 0.016232706606388092, -0.013980269432067871, -0.004667309112846851, -0.0341547392308712, 0.0013529511634260416, 0.020131153985857964, 0.010910240933299065, 0.04318614676594734, -0.052325841039419174, -0.0019586996641010046, -0.0030916861724108458, 0.008739021606743336, 0.004986765328794718, 0.01676332764327526, -0.005815185606479645, -0.02520996704697609, -0.016514260321855545, 0.023477323353290558, -0.009578270837664604, -0.07138492166996002, -0.024300329387187958, -0.029801473021507263, -0.00034720555413514376, 0.004845988005399704, 0.008798581548035145, -0.030212976038455963, -0.03508603572845459, -0.0019519315101206303, 0.01142461970448494, -0.023737220093607903, -0.005798941943794489, 0.026985926553606987, -0.01840933971107006, -0.027700642123818398, 0.010477080009877682, 0.015702083706855774, -0.0386812724173069, 0.006952233146876097, 0.008035135455429554, -0.010119722224771976, 0.016211047768592834, -0.01986042968928814, -0.017510531470179558, -0.03969920054078102, -0.005739382468163967, -0.0017001567175611854, -0.0025394060648977757, 0.0097731938585639, 0.005647335667163134, 0.03055950440466404, 0.007233787793666124, -0.03107929788529873, -0.045828428119421005, 0.0035573341883718967, 0.0030673209112137556, 0.016427628695964813, 0.000564462854526937, -0.00759114557877183, 0.033375050872564316, -0.026379501447081566, -0.009713633917272091, -0.0037116478197276592, 0.003708940465003252, 0.015398871153593063, 0.009811094962060452, -0.005706895608454943, 0.029086757451295853, 0.00472957594320178, -0.023715561255812645, -0.042038269340991974, 0.01718566007912159, 0.031729038804769516, -0.03972085937857628, 0.01717483066022396, -0.0016297680558636785, -1.0802585165947676e-05, 0.030516188591718674, -0.019882086664438248, -0.012009386904537678, -0.00020761268388014287, -0.0027465110179036856, -0.0004186094447504729, 0.022675976157188416, -0.01135964598506689, 0.012290941551327705, -0.023498980328440666, -0.02086752839386463, 0.01594032347202301, -0.003408435033634305, 0.03198893368244171, 0.01624353602528572, -0.01563710905611515, -0.030321266502141953, 0.027527377009391785, 0.01851763017475605, -0.006226688623428345, 0.009453737176954746, -0.025426547974348068, -0.01572374254465103, 0.01563710905611515, 0.01374203059822321, -0.016081100329756737, -0.02644447609782219, 0.014402600936591625, -0.03151245787739754, -0.012410060502588749, 0.01408855989575386, -0.0002683567290659994, -0.0030673209112137556, -0.058390095829963684, -0.012983999215066433, -0.021257372573018074, 0.03014800138771534, -0.046045009046792984, 0.019373122602701187, 0.004743112251162529, 0.010623272508382797, 0.008625317364931107, -0.0012473681708797812, 0.026985926553606987, 0.05228252708911896, 0.022264473140239716, -0.038919512182474136, 0.01105643343180418, 0.019730480387806892, -0.0203693937510252, 0.005842258222401142, 0.005178980529308319, 0.016535919159650803, 0.015777887776494026, 0.0018991399556398392, -0.04106365889310837, -0.032162200659513474, -0.011933583766222, -0.025339914485812187, -0.044918790459632874, 0.0493803471326828, 0.00440199812874198, 0.02726748026907444, -0.03571411967277527, -0.040089044719934464, 0.010731562040746212, -0.023477323353290558, 0.014175191521644592, 0.006811455823481083, -0.018236076459288597, -0.009475396014750004, 0.021647218614816666, 0.013557936996221542, 0.0062050302512943745, -0.011273013427853584, 0.01686078868806362, -0.008609073236584663, 0.01296234130859375, 0.019914574921131134, 0.02594633959233761, 0.052325841039419174, 0.027505720034241676, -0.05301889777183533, -0.003254121635109186, -0.0052466620691120625, 0.043272778391838074, 0.004304536618292332, 0.001987125724554062, -0.04333775117993355, 0.027505720034241676, -0.013417160138487816, -0.0037143551744520664, -0.005084226373583078, -0.006919745821505785, -0.010249670594930649, -0.005587776191532612, 0.0115220807492733, -0.010249670594930649, 0.01676332764327526, -0.001945163356140256, -0.004924498498439789, -0.006795212160795927, -0.011327158659696579, -0.014857420697808266, 0.02531825751066208, -0.019405610859394073, 0.0025854294653981924, 0.011803635396063328, -0.038832876831293106, -0.01646011509001255, 0.048514027148485184, 0.01728312112390995, 0.025383230298757553, -0.015366384759545326, -0.02326074242591858, -0.007120083086192608, -0.009291302412748337, 0.006394538562744856, 0.025967998430132866, 0.0127565898001194, -0.01708819903433323, 0.02058597281575203, 0.03593070060014725, -0.005604019854217768, -0.011511252261698246, 0.0016622551484033465, -0.013514621183276176, 0.051286254078149796, 0.003911984618753195, 0.002420286647975445, 0.023997116833925247, 0.0019032008713111281, 0.02828541025519371, -0.02488509565591812, 0.04314282909035683, 0.007937674410641193, -0.005295392591506243, -0.007098424714058638, -0.033786553889513016, 0.04509205371141434, -0.025838050991296768, 0.0022389006335288286, -0.030906032770872116, 0.018355194479227066, 0.005620263051241636, -0.010482494719326496, 0.0033055595122277737, 0.007645290810614824, -0.0005279149045236409, -0.004361389204859734, 0.03177235648036003, -0.02624955214560032, -0.028935151174664497, 0.0021698656491935253, 0.03684033825993538, -0.02025027386844158, -0.026791004464030266, 0.02284923940896988, 0.00576104037463665, 0.023888826370239258, 0.05661413446068764, -0.005885574501007795, -0.0341547392308712, -0.027180848643183708, -0.015312239527702332, -0.016947422176599503, 0.028112145140767097, -0.003032126696780324, 0.004659187514334917, -0.035345934331417084, -0.015918664634227753, 0.049337029457092285, -0.000968520762398839, 0.017651308327913284, 0.007461197208613157, -0.002427054801955819, -0.003592528635635972, 0.008462881669402122, -0.002950908849015832, -0.021766336634755135, -0.015453016385436058, -0.005409097298979759, 1.4540925121764303e-06, -0.02850198931992054, 0.018972449004650116, 0.02015281282365322, 0.021029964089393616, 0.011051018722355366, 0.00175565539393574, 0.00879316683858633, 0.04184334725141525, -0.01934063620865345, 0.019405610859394073, 0.016600893810391426, 0.012290941551327705, -0.01265912875533104, 0.036168940365314484, -0.004975936375558376, -0.001977650448679924, -0.015453016385436058, 0.010163038969039917, 0.03346168249845505, 0.020185299217700958, -0.046348221600055695, 0.03439297899603844, 0.016936592757701874, -0.009177597239613533, 0.0029833959415555, 0.022654317319393158, -0.0066002896055579185, -0.027700642123818398, 0.003056491957977414, 0.047474440187215805, 0.024300329387187958, 0.02789556421339512, 0.016091929748654366, -0.004152930341660976, 0.006567802745848894, 0.012973169796168804, -0.008879799395799637, -0.0006950879469513893, 0.0222211554646492, 0.020098667591810226, 0.01747804321348667, -0.033483341336250305, 0.030841058120131493, -1.80095958057791e-05, 0.014651669189333916, 0.0001988141011679545, -0.010888583026826382, 0.025469863787293434, 0.007472026161849499, 0.023520639166235924, -0.014121046289801598, 0.01861509121954441, 0.023997116833925247, 0.018246904015541077, -0.010412106290459633, 0.015258094295859337, -0.008809410966932774, 0.026184579357504845, 0.028653595596551895, -0.01326555386185646, 0.007661534007638693, 0.01388280838727951, 0.009118038229644299, 0.03298520669341087, 0.007082181517034769, -0.009962701238691807, 0.0010680124396458268, 0.012789077125489712, -0.0068872589617967606, -0.026011314243078232, 0.027743957936763763, -0.03227049112319946, 0.020640118047595024, 0.012431719340384007, -0.04894718527793884, -0.0123450867831707, 0.0012622580397874117, -0.031642407178878784, -0.005880159791558981, 0.01768379472196102, 0.02254602685570717, 0.010661173611879349, -0.03766334429383278, 0.006762725301086903, -0.0006747835432179272, 0.00900974776595831, 0.0028859346639364958, 0.016839131712913513, 0.014012756757438183, 0.06986886262893677, 0.028263751417398453, 0.00403922563418746, 0.03324510157108307, -0.00571230985224247, 0.011662858538329601, 0.002336361911147833, 0.015398871153593063, -0.03725184127688408, 0.016016125679016113, -0.04392252117395401, 0.005820600315928459, 0.01770545355975628, -0.011890267953276634, -0.007000963669270277, 0.009800266474485397, 0.017467215657234192, -0.02553483657538891, 0.005379317328333855, 0.020141983404755592, -0.0341547392308712, 0.0022185961715877056, 0.02271929197013378, -0.015420529060065746, -0.024321986362338066, -0.030689451843500137, 0.009545784443616867, -0.01852845959365368, -0.016070270910859108, -5.998263804940507e-05, 0.0033109739888459444, -0.013763688504695892, 0.010531225241720676, -0.01893996261060238, -0.010504152625799179, -0.026704372838139534, 0.021961260586977005, 0.036970287561416626, -0.013644569553434849, 0.019513899460434914, 0.023888826370239258, 0.003535676281899214, -0.01121886819601059, -0.009340032935142517, 0.015496332198381424, -0.006058838684111834, -0.010634100995957851, 0.03034292347729206, -0.005049032159149647, -0.018279392272233963, 0.059299733489751816, -0.011652029119431973, -0.016611721366643906, 0.0068006268702447414, -0.02069426327943802, 0.017922034487128258, 0.03233546391129494, -0.014099388383328915, -0.018192758783698082, 0.025838050991296768, 0.0039850808680057526, 0.009562027640640736, -0.006546144839376211, -0.00946998130530119, 0.025188308209180832, 0.017629649490118027, 0.023065820336341858, -0.0077156792394816875, 0.03465287387371063, 0.017153173685073853, 0.019199859350919724, -0.01363374013453722, 0.01688244752585888, -0.02776561677455902, 0.002562417648732662, 0.03469619154930115, -0.002508272649720311, 0.0044182417914271355, 0.021322347223758698, 0.0012060825247317553, 0.037403445690870285, -0.04452894628047943, -0.0035952357575297356, 0.004491337575018406, -0.002810131525620818, 0.026791004464030266, -0.011489594355225563, 0.028848519548773766, -0.018398510292172432, -0.02046685479581356, -0.0693923830986023, -0.0006690305890515447, 0.01738058216869831, 0.005097762681543827, -0.018560945987701416, 0.02932499535381794, 0.013352186419069767, -0.011007701978087425, -0.03086271695792675, -0.010114307515323162, -0.012377574108541012, -0.0038388888351619244, -0.0008006709394976497, 0.022654317319393158, -0.01203104481101036, -0.05648418515920639, 0.003118758788332343, 0.00848995428532362, 0.016644209623336792, 0.013687885366380215, -0.006741066928952932, 0.008641560561954975, -0.05362532287836075, -0.010861510410904884, 0.0101846968755126, 0.041193604469299316, 0.02107327990233898, -0.02254602685570717, 0.012280113063752651, 0.02046685479581356, -0.015821203589439392, 0.004867645911872387, 0.010260500013828278, -0.011273013427853584, -0.002525869756937027, -0.039655882865190506, 0.03149079903960228, 0.03376489505171776, 0.02210203744471073, 0.016308508813381195, 0.0002189493243349716, 0.01976296864449978, 0.015453016385436058, 0.008576586842536926, -0.004139394033700228, 0.010910240933299065, -0.02913007326424122, 0.029584892094135284, -0.030689451843500137, -0.0485573410987854, -0.024711832404136658, -0.023997116833925247, 0.024950070306658745, 0.017423897981643677, -0.0012710565933957696, 0.01564793847501278, -0.0033028521575033665, -0.02778727374970913, -0.019784625619649887, 0.04177837446331978, -0.041929978877305984, 0.0207808967679739, 0.009876069612801075, -0.009150524623692036, 0.04199495166540146, 0.008863556198775768, -0.003979666158556938, -0.008251715451478958, 0.010422934778034687, 0.005035495851188898, 0.01924317516386509, -0.016026955097913742, -0.010736976750195026, 0.021008305251598358, 0.0059722065925598145, 0.020521000027656555, 0.020910844206809998, -0.006643605884164572, -0.01034171786159277, 0.0021495611872524023, -0.021755509078502655, -0.0033678263425827026, -0.011478764936327934, 0.0046510654501616955, -0.007537000346928835, 0.010168452747166157, 0.014142705127596855, -0.010525810532271862, -0.014435088261961937, 0.010715318843722343, -0.032162200659513474, -0.02438696101307869, 0.0019235053332522511, 0.0016798522556200624, 0.01378534734249115, -0.00442636338993907, -0.0444423109292984, 0.005227711051702499, 0.01605944149196148, 0.006291662808507681, 0.013438818044960499, -0.06038263440132141, -0.0016216462245211005, -0.0072987619787454605, -0.031144272536039352, -0.032768625766038895, -0.010720733553171158, 0.020044522359967232, 0.022611001506447792, 0.012940683402121067, -0.016720011830329895, -0.025903023779392242, 0.02252436801791191, -0.0022389006335288286, 0.04379257187247276, 0.017218146473169327, 0.01156539749354124, 0.026920951902866364, -0.00642702542245388, 0.009015162475407124, 0.013222238048911095, -0.03365660458803177, -0.02767898328602314, -0.012724102474749088, 0.012355916202068329, 0.035735778510570526, -0.011381303891539574, -0.01820358820259571, 0.03346168249845505, -0.013233066536486149, 4.521963273873553e-05, -0.00905847828835249, 0.007379979360848665, 0.003995909821242094, -0.019524728879332542, -0.03560582920908928, -0.004082541912794113, -0.004209782928228378, -0.02611960470676422, 0.014218508265912533, 0.032552044838666916, 0.02839369885623455, 0.008630732074379921, -0.0034625802654772997, -0.0019911867566406727, 0.001367841032333672, -0.0251016765832901, 0.03692696988582611, -0.01801949553191662, -0.010401276871562004, 0.027202507480978966, -0.0012033752864226699, 0.026574423536658287, 0.03003971092402935, -0.030386239290237427, -0.04416075721383095, 0.008858141489326954, -0.026487791910767555, 0.013861150480806828, -0.030126342549920082, -0.005235832650214434, -0.008338348008692265, -0.004082541912794113, 0.023000845685601234, 0.035735778510570526, -0.005168151576071978, 0.01548550371080637, 0.013427989557385445, -0.061768751591444016, -0.0013421220937743783, -0.020737579092383385, 0.007185057271271944, -0.010152209550142288, -0.01687161810696125, 0.02406208962202072, 0.001941102440468967, -0.0048135011456906796, -0.002703194972127676, 0.008094695396721363, 0.0033055595122277737, 0.002620623679831624, -0.014922394417226315, -0.019611362367868423, 0.0047322832979261875, -0.0037035259883850813, 0.009973530657589436, 0.02479846403002739, 0.001656840555369854, -0.024040432646870613, 0.02046685479581356, 0.029606550931930542, -0.0005786759429611266, 0.0001332477550022304, -0.009145109914243221, -0.013557936996221542, -0.008132596500217915, -0.016806645318865776, 0.0362122543156147, 0.01264829933643341, -0.03723018243908882, -0.032660335302352905, -0.020304419100284576, 0.023910483345389366, -0.01517146173864603, -0.02787390723824501, 0.0006950879469513893, 0.020824212580919266, -0.00904764886945486, 0.021224886178970337, -0.047907598316669464, -0.011392132379114628, 0.01955721713602543, -0.012020216323435307, -0.021733850240707397, -0.00021235038002487272, 0.018983278423547745, -0.02880520187318325, 0.02282758243381977, -0.01759716309607029, 0.00149169797077775, -0.023000845685601234, -0.0018436412792652845, 0.0003082887560594827, 0.015767058357596397, -0.039266038686037064, -0.022892555221915245, 0.017727112397551537, -0.013016486540436745, 0.00028409267542883754, -0.04600169137120247, -0.017250634729862213, -0.010834437794983387, 0.011283842846751213, -0.015193119645118713, 0.013427989557385445, -0.016319338232278824, 0.012269283644855022, 0.02419203892350197, -0.005225003696978092, 0.0012372159399092197, 0.0010741037549450994, 0.013557936996221542, -0.0003358689427841455, 0.026097945868968964, 0.000222502596443519, -0.016492603346705437, -0.018560945987701416, 0.011587055400013924, -0.06506077200174332, 0.05418843403458595, 0.03402479365468025, -0.007509927731007338, 0.006724823731929064, 0.014207678847014904, -0.04543858394026756, 0.007450368255376816, 0.014998197555541992, -0.007147155702114105, -0.023953799158334732, 0.016016125679016113, 0.019113225862383842, 0.007055108901113272, 0.00931296031922102, 0.02993142046034336, 0.010255085304379463, 0.00681687006726861, -0.00759114557877183, -0.02726748026907444, 0.009285887703299522, -0.004142101388424635, -0.016817472875118256, -0.02161473035812378, -0.010839852504432201, -0.015030684880912304, -0.01994706131517887, 0.017044883221387863, -0.022567685693502426, -0.025989657267928123, -0.04764770343899727, 0.04751775413751602, -0.021040793508291245, 0.014131875708699226, 0.004079834558069706, -0.022167010232806206, -0.017131514847278595, 0.010357961058616638, -0.03036458231508732, 0.0034977744799107313, 0.004228733479976654, 0.03610396385192871, 0.02562147006392479, -0.032768625766038895, 0.0013563352404162288, -0.06545061618089676, 0.015030684880912304, -0.014121046289801598, 0.00483786640688777, -0.0329202301800251, -0.04621827229857445, -0.03774997591972351, -0.04929371550679207, 0.022242814302444458, 0.028220435604453087, -0.011879438534379005, -0.0018043860327452421, -0.023932142183184624, 0.0062050302512943745, 0.009865240193903446, -0.0005715693696402013, 0.01592949405312538, -0.004020275082439184, 0.025599811226129532, 0.03354831412434578, -0.022784264758229256, -0.000589504954405129, 0.02035856433212757, 0.008966431021690369, 0.010260500013828278, 0.006318735424429178, 0.013807005248963833, 0.013568766415119171, 0.009583685547113419, 0.017120685428380966, -0.0014348456170409918, -0.015009026974439621, 0.015019855462014675, 0.0006243608659133315, 0.0329202301800251, 0.03898448497056961, 0.0025976120959967375, 0.013969440013170242, -0.018246904015541077, 0.015052342787384987, -0.013774517923593521, -0.02735411375761032, 0.010812779888510704, -0.015474674291908741, 0.011500422842800617, -0.01809529773890972, -0.004277464468032122, -0.014630010351538658, -0.04504873603582382, -0.00828420277684927, 0.0016906813252717257, 0.03335339203476906, 0.0211923997849226, -0.013384672813117504, -0.015777887776494026, -0.041106972843408585, 0.0349777452647686, 0.0019586996641010046, 0.024928411468863487, -0.027007585391402245, -0.02943328581750393, 0.005100470036268234, -0.01347130537033081, 0.01832270808517933, 0.00408524926751852, -0.0028778130654245615, 0.010877754539251328, 0.03601733222603798, -0.0267476886510849, 0.009291302412748337, -0.007580316625535488, -0.0016392434481531382, -0.023412348702549934, -0.008230057545006275, -0.005387439392507076, -0.017532188445329666, -0.00837625004351139, 0.018571775406599045, -0.0006446653278544545, 0.035237643867731094, -0.015658767893910408, 0.020196128636598587, 0.002394567709416151, 0.019492242485284805, 0.002422994002699852, 0.002693719696253538, -0.0019424561178311706, -0.03963422775268555, 0.029086757451295853, -0.014034414663910866, 0.011099749244749546, -0.0353892482817173, -0.012875708751380444, 0.037706658244132996, -0.013612082228064537, 0.04543858394026756, 0.02830706723034382, -0.013417160138487816, -0.003094393527135253, -0.014391772449016571, 0.010764049366116524, 0.02653110772371292, -0.005907232407480478, -0.03352665528655052, 0.00782396923750639, -0.024408619850873947, 0.027007585391402245, -0.04756107181310654, -0.041929978877305984, 0.012529180385172367, -0.004642943851649761, 0.003021297510713339, -0.0064107817597687244, -0.03881122171878815, -0.009859825484454632, -0.025080017745494843, 0.05249910429120064, -0.024365302175283432, 0.04247143119573593, -0.017413070425391197, 0.018333537504076958], [0.013368066400289536, -0.004312765784561634, 0.024489272385835648, 0.05169287323951721, -0.0031403270550072193, 0.027278998866677284, -0.05139128118753433, 0.045419760048389435, -0.005643540993332863, 0.04991348087787628, 0.023840850219130516, 0.015516909770667553, 0.0034381491132080555, -0.022589242085814476, 0.011038267984986305, -0.008716009557247162, 0.0259369146078825, 0.006766971200704575, -0.014423638582229614, 0.04059428721666336, 0.029586177319288254, 0.01628596894443035, -0.0570310540497303, -0.03947839513421059, -0.008512435480952263, 0.0017661983147263527, -0.007140191271901131, -0.0073022968135774136, 0.05160239711403847, -0.003585175145417452, 0.05353258550167084, -0.05039602890610695, 0.03438149020075798, -0.05691041424870491, 0.04032285511493683, 0.04949125275015831, -0.025394048541784286, -0.012500989250838757, -0.03435133025050163, 0.018653467297554016, 0.017055029049515724, -0.02578611858189106, 0.012885519303381443, 0.01022396981716156, -0.006955466233193874, 0.0637565553188324, -0.0325719378888607, -0.045118167996406555, 0.0347735621035099, 0.014815708622336388, 0.01033706683665514, 0.03009888529777527, -0.0005259010940790176, 0.031003661453723907, 0.013699817471206188, -0.001809552195481956, -0.024338476359844208, 0.013933551497757435, -0.0055455234833061695, 0.0036209893878549337, -0.009191016666591167, 0.007558650337159634, 0.06616929173469543, 0.013609340414404869, -0.0348338782787323, 0.004075262229889631, -0.04249431565403938, -0.0015748759033158422, -0.015215317718684673, -0.01931696943938732, 0.02540912851691246, 0.0027595669962465763, -0.050184912979602814, 0.03525610640645027, 0.0333862379193306, 0.018532829359173775, -0.04044349119067192, 0.05992633476853371, 0.0009316366049461067, -0.014664912596344948, -0.01912093535065651, 0.010133491829037666, -0.0038471834268420935, -0.013096634298563004, 0.004512570798397064, -0.05615643411874771, -0.06496292352676392, -0.04297686368227005, -0.029450461268424988, -0.009417210705578327, 0.017507417127490044, 0.018261397257447243, -0.07787106186151505, 0.02786710299551487, 0.0019094545859843493, -0.011385099031031132, 0.015433971770107746, -0.04710867628455162, 0.00533817894756794, 0.01251606922596693, 0.0006705710547976196, -0.061132702976465225, -0.07781074196100235, 0.0031780260615050793, -0.022634482011198997, -0.008768788538873196, -0.01232757419347763, 0.011792248114943504, -0.01987491548061371, -0.033114805817604065, -0.032210029661655426, -0.010374765843153, 0.011377559043467045, 0.027429794892668724, 0.03516563028097153, 0.00378686492331326, -0.05736280232667923, -0.013865693472325802, -0.005138374399393797, -0.05220558121800423, -0.002097949618473649, 0.04026253521442413, 0.009364432655274868, -0.04415307193994522, 0.02889251708984375, -0.011950584128499031, -0.01289305929094553, -0.006152477581053972, 0.015471670776605606, -0.042313363403081894, -0.013390686362981796, -0.02854568511247635, 0.047349948436021805, -0.022483685985207558, -0.02283051609992981, -0.0005881044780835509, 0.0059941415674984455, -0.0003399979032110423, -0.007438013330101967, -0.011867646127939224, 0.09077920019626617, 0.015471670776605606, -0.009786661714315414, 0.056367550045251846, -0.06309305131435394, -0.04964204877614975, -0.03914664685726166, 0.01992015354335308, -0.003078123554587364, -0.016074854880571365, 0.016919312998652458, 0.019678879529237747, -0.025876596570014954, -0.006966775748878717, -0.007019554264843464, -0.012659325264394283, 0.0496722087264061, 0.0008317342726513743, -0.04677692428231239, -0.03389894589781761, -0.005624691490083933, -0.05660882219672203, -0.013827994465827942, 0.00744178332388401, 0.019090775400400162, 0.006020531058311462, -0.03314496576786041, 0.0199955515563488, -0.09138238430023193, -0.02358449622988701, -0.0059828320518136024, -0.03540690243244171, 0.008927123621106148, 0.011136285960674286, -0.041710179299116135, -0.031667161732912064, 0.03233066573739052, 0.00763027835637331, -0.03760852664709091, -0.07310590893030167, 0.020809849724173546, 0.07075349241495132, -0.03344655781984329, -0.022966232150793076, 0.004071492236107588, 0.033868785947561264, -0.027399634942412376, 0.024474192410707474, -0.04134826734662056, -0.0012195627205073833, 0.04593246430158615, -0.007117571774870157, 0.054015133529901505, 0.0025446827057749033, 0.0018783528357744217, -0.007999728433787823, 0.006250494625419378, 0.005021507386118174, -0.03775932267308235, 0.0008901677210815251, 0.007362615317106247, 0.00738523481413722, -0.007615198846906424, -0.0006069539813324809, -0.0035776353906840086, -0.024187680333852768, -0.04484673589468002, -0.004188359249383211, -0.015954218804836273, -0.04472609609365463, 0.043941959738731384, -0.0109402509406209, -0.024217840284109116, 0.00785647239536047, -0.019286809489130974, 0.0022619401570409536, 0.010970409959554672, 0.016828835010528564, 0.024247998371720314, 0.007946950383484364, -0.020945565775036812, -0.007841392420232296, 0.0680994838476181, 0.038603778928518295, -0.02847028709948063, 0.010616039857268333, -0.03365767002105713, -0.052235741168260574, 0.007750915363430977, -0.0830584466457367, -0.06049936264753342, 0.010359685868024826, -0.004806622862815857, -0.002297754166647792, -0.03540690243244171, 0.02563532255589962, -0.010932710953056812, 0.011256922036409378, -0.035798974335193634, -0.017220905050635338, 0.02124715782701969, 0.0027671067509800196, -0.024127362295985222, -0.0006201486103236675, -0.02976713329553604, -0.028409969061613083, -0.005424886476248503, -0.0060318405739963055, 0.013805375434458256, 0.024866262450814247, 0.06315337121486664, 0.04430386796593666, 0.005662390496581793, -0.008256081491708755, 0.01866854727268219, -0.018261397257447243, -0.02540912851691246, -0.009718802757561207, -0.015237937681376934, 0.01726614311337471, -0.01616533286869526, 0.010321986861526966, -0.047651540488004684, -0.05024523288011551, -0.042162567377090454, -0.003047964535653591, 0.021669387817382812, -0.020327303558588028, 0.007042173761874437, 0.028349651023745537, -0.0037529359105974436, 0.03791011869907379, 0.004407013300806284, -0.034291014075279236, -0.03245130181312561, 0.06797884404659271, -0.01957332342863083, 0.005737788509577513, -0.04680708423256874, 0.008783867582678795, -0.03896569088101387, -0.05277860537171364, 0.023192426189780235, -0.050576984882354736, -0.015743104740977287, 0.05395481362938881, 0.009025141596794128, -0.016180412843823433, 0.04207208752632141, -0.011075966991484165, 0.02388608828186989, 0.01541135273873806, 0.021790023893117905, -0.007581269834190607, 0.01673835702240467, 0.019136013463139534, 0.013473623432219028, 0.01605977490544319, 0.011151365004479885, 0.0034833878744393587, 0.01972411945462227, 0.021986057981848717, -0.03763868659734726, -0.01616533286869526, -0.02438371628522873, 0.02207653596997261, 0.008037427440285683, -0.04593246430158615, -0.01829155720770359, -0.00977158173918724, -0.005556832998991013, -0.0042185187339782715, -0.011603753082454205, -0.05470879375934601, 0.024217840284109116, -0.04367052763700485, -0.0008496412774547935, 0.000815712206531316, 0.039810147136449814, -0.014499036595225334, -0.028274253010749817, -0.023494018241763115, -0.010857312940061092, -0.011769629083573818, -0.018638387322425842, -0.05289924144744873, 0.0006691573071293533, 0.015456591732800007, 0.014325621537864208, 0.021533671766519547, 0.0069290767423808575, -0.03887521103024483, -0.01605977490544319, 0.027475032955408096, -0.01563754677772522, -0.03059651143848896, -0.00755488034337759, 0.02117175981402397, 0.022408287972211838, 0.006258034612983465, -0.043791163712739944, -0.03791011869907379, -0.052959561347961426, 0.035768814384937286, -0.025906754657626152, 0.013013696298003197, 0.03745773062109947, 0.02650993876159191, 0.001716247177682817, 0.07907743006944656, 0.04312765970826149, 0.05485958978533745, 0.0013458544854074717, -0.030852865427732468, -0.033416397869586945, -0.009424750693142414, 0.007189199794083834, -0.007796153891831636, -0.022845596075057983, 0.04403243586421013, -0.007596349343657494, 0.031124297529459, -0.03044571541249752, 0.046595968306064606, 0.0021865421440452337, 0.009417210705578327, -0.033838625997304916, 0.0011243728222325444, -0.039810147136449814, -0.012131539173424244, 0.014174825511872768, 0.017281223088502884, 0.003751050913706422, 0.0035493611358106136, 0.016798676922917366, 0.007600119337439537, 0.01897013932466507, 0.0400514230132103, 0.0004276480758562684, 0.018005043268203735, -0.016497084870934486, 0.039810147136449814, 0.03480371832847595, -0.03791011869907379, -0.0025880367029458284, 0.02681153081357479, -0.005006427876651287, -4.046752292197198e-05, -0.057875510305166245, -0.021895581856369972, -0.010344606824219227, -0.062308914959430695, -0.022860676050186157, 0.003080008551478386, 0.006578476168215275, -0.02806313894689083, -0.010125952772796154, 0.020734451711177826, -0.013526402413845062, -0.010842233896255493, -0.021141601726412773, -0.010043014772236347, -0.024398794397711754, -0.01681375503540039, -0.021533671766519547, 0.01771853119134903, -0.03248146176338196, 0.029179029166698456, 0.019678879529237747, -0.06291209906339645, 0.031124297529459, -0.03157668560743332, 0.017899487167596817, 0.04062444716691971, -0.016904233023524284, -0.019482845440506935, -0.01992015354335308, 0.013616880401968956, -0.03441165015101433, -0.04762138053774834, 0.003340131836012006, -0.012093840166926384, -0.03305448591709137, 0.00016622904513496906, -0.022619402036070824, 0.01621057093143463, 0.04753090441226959, -0.01931696943938732, -0.043640367686748505, 0.003581405384466052, 0.015056981705129147, 0.003666228149086237, -0.029179029166698456, 0.0637565553188324, -0.0033363618422299623, -0.06345496326684952, -0.0101862708106637, 0.01897013932466507, -0.014597054570913315, -0.000867077091243118, -0.0016361367888748646, -0.004712375346571207, 0.05597548186779022, -0.026178188621997833, -0.0600469745695591, -0.11327796429395676, -0.02949570119380951, 0.01814076118171215, -0.015954218804836273, -0.03748789057135582, 0.010095792822539806, -0.0010791339445859194, -0.003170486306771636, 0.005948902573436499, 0.007192969787865877, -0.008097746409475803, 0.03480371832847595, 0.005930053070187569, 0.026193268597126007, -0.0060506900772452354, 0.09258875250816345, 0.03435133025050163, 0.0054588159546256065, 0.02460991032421589, 0.032813213765621185, -0.011769629083573818, 0.03739741072058678, -0.0011611293302848935, -0.01874394528567791, -0.03269257768988609, 0.0027312927413731813, 0.016919312998652458, -0.04122763127088547, 0.0011130630737170577, -0.0429467037320137, 0.001966003095731139, 0.010043014772236347, 0.017733611166477203, -0.0047651538625359535, 0.010254128836095333, 0.01995031349360943, 0.0042863767594099045, -0.026826610788702965, 0.008678310550749302, 0.053110357373952866, 0.06785820424556732, 0.0665915235877037, 0.06725502014160156, 6.55020194244571e-05, -0.007094952277839184, -0.016858994960784912, 0.003641723655164242, 0.050003957003355026, -0.019889993593096733, -0.018638387322425842, -0.015237937681376934, 0.02022174559533596, -0.006638794671744108, 0.03495451435446739, 0.0151851586997509, 0.04192129150032997, -0.011008108966052532, -0.0003350499027874321, 0.062188275158405304, 0.03516563028097153, 0.043489571660757065, -0.005798106547445059, 0.03059651143848896, 0.003675652900710702, 0.059202514588832855, -0.01052556186914444, 0.006525697652250528, 0.022559083998203278, 0.004037563223391771, 0.005285400431603193, -0.01939236745238304, -0.040533967316150665, 0.002045170869678259, -0.021518591791391373, -0.02014634758234024, 0.031787801533937454, 0.051361121237277985, 0.015516909770667553, 0.0011441647075116634, 0.008112825453281403, -0.04475625604391098, -0.041257791221141815, -0.09295066446065903, -0.022996392101049423, -0.02029714360833168, -0.013903392478823662, 0.007151500787585974, -0.001650273916311562, 0.005862195044755936, -0.009183477610349655, 0.024896422401070595, -0.013322828337550163, 0.027354396879673004, 0.004584198817610741, -0.0016465040389448404, -0.014762929640710354, 0.0043052262626588345, -0.0151851586997509, 0.03175764158368111, -0.02090032771229744, 0.009432290680706501, 0.04529912397265434, 0.009145778603851795, -0.008437037467956543, 0.00785647239536047, 0.0036304141394793987, -0.03160684555768967, -0.0012902483576908708, 0.03902600705623627, 0.058629490435123444, -0.013013696298003197, 0.010872392915189266, -0.01067635789513588, 0.021669387817382812, 0.014853407628834248, -0.005541753489524126, 0.0101862708106637, 0.023373382166028023, -0.00992237776517868, -0.03570849448442459, -0.005922513548284769, 0.018804263323545456, -0.015245476737618446, -0.008881885558366776, 0.010962869971990585, -0.0636962354183197, -0.02866632305085659, -0.022091615945100784, 0.012847820296883583, 0.0050969053991138935, 0.014235143549740314, 0.014928805641829967, -0.012908139266073704, -0.022121775895357132, 0.004440942779183388, -0.009168397635221481, 0.022438446059823036, -0.00969618372619152, 0.003085663542151451, -0.03525610640645027, -0.0001192820054711774, -0.010804534889757633, -0.051662713289260864, 0.03543706238269806, 0.03248146176338196, 0.013812914490699768, 0.0010546296834945679, -0.01529825571924448, -0.023720212280750275, -0.02430831827223301, -0.003404220100492239, 0.012071221135556698, 0.009816820733249187, -0.04777217656373978, -0.021820183843374252, 0.012169238179922104, 0.004882020875811577, -0.007143961265683174, 0.017582815140485764, -0.0481642484664917, 0.008037427440285683, -0.022770198062062263, -0.0255599245429039, 0.020628895610570908, -0.01244067121297121, 0.01916617341339588, -0.014318081550300121, -0.006446529645472765, -0.029676655307412148, 0.006314583122730255, -0.025921834632754326, -0.055342137813568115, 0.003947085700929165, -0.01651216298341751, -0.025378968566656113, -0.02884727716445923, 0.006800900213420391, 0.02252892404794693, -0.011339860036969185, -0.010947790928184986, 0.011091046966612339, 0.01266686525195837, -0.019528083503246307, -0.014340700581669807, -0.039508555084466934, 0.03588945046067238, -0.02783694490790367, 0.013443464413285255, -0.009183477610349655, -0.013413305394351482, 0.03160684555768967, -0.017326461151242256, -0.011950584128499031, -0.006868758238852024, 0.033265601843595505, 0.011468037031590939, 0.0023486479185521603, 0.003694502403959632, -0.050456345081329346, 0.005390957463532686, 0.03971967101097107, 0.0003275100898463279, 0.03944823890924454, 0.023222586140036583, -0.008550133556127548, 0.009070380590856075, -0.003019690280780196, 0.007618968840688467, 0.013126793317496777, 0.008716009557247162, -0.028575845062732697, -0.025469446554780006, -0.0318179577589035, -0.02135271579027176, 0.01029936783015728, -0.02691708877682686, 0.01806536316871643, 0.03462276607751846, -0.024971820414066315, 0.01817091926932335, 0.04623405635356903, 0.01964872144162655, -0.020734451711177826, -0.009982695803046227, -0.006876298226416111, 0.0533817894756794, 0.037699002772569656, 0.03411005809903145, -0.02949570119380951, 0.0035229718778282404, -0.022272571921348572, 0.03619104251265526, -0.008753708563745022, -0.0025352579541504383, 0.033114805817604065, -0.010895011946558952, -0.008610452525317669, -0.0785948857665062, 0.021986057981848717, 0.012418052181601524, -0.04605310410261154, -0.02180510386824608, 0.012161698192358017, -0.00781877338886261, 0.019030457362532616, -0.014348240569233894, 0.028229013085365295, 0.004154430236667395, 0.0032609638292342424, 0.004927259869873524, -0.01082715392112732, 0.01942252740263939, -0.04584198817610741, -0.009515228681266308, -0.10097301006317139, 0.004689755849540234, -0.011400179006159306, -0.005643540993332863, -0.031094137579202652, -0.028711561113595963, 0.0006380556151270866, -0.022740038111805916, 0.0019113394664600492, -0.003219494828954339, 0.004075262229889631, -0.010005315765738487, 0.008188223466277122, -0.009017601609230042, -0.01995031349360943, -0.006046920083463192, 0.003153521567583084, -0.014619673602283001, 0.012093840166926384, 0.00789417140185833, 0.0037925196811556816, 0.042132407426834106, 0.02954093925654888, -0.026570258662104607, 0.011106126010417938, -0.02801789902150631, -0.02267972007393837, 0.022694800049066544, -0.03456244617700577, -0.021262237802147865, 0.001958463340997696, 0.005628461018204689, -0.018653467297554016, 0.000252112076850608, -0.014031569473445415, -0.012199397198855877, 0.001194115960970521, -0.011648992076516151, 0.025982152670621872, -0.03555769845843315, -0.019286809489130974, 0.009522768668830395, -0.010246588848531246, 0.012372813187539577, 0.008263621479272842, 0.01270456425845623, 0.03317512199282646, -0.009718802757561207, 0.03546722233295441, -0.0326322577893734, 0.0008472850895486772, 0.01636136695742607, 0.014348240569233894, -0.023448780179023743, -0.001034837681800127, -0.008693390525877476, -0.016979631036520004, -0.00246174493804574, -0.03821171075105667, -0.025047218427062035, 0.007664207369089127, 0.031063979491591454, -0.0255599245429039, -0.020945565775036812, -0.007750915363430977, 0.040232375264167786, 0.02215193398296833, 0.007038403768092394, -0.015773262828588486, -0.025650402531027794, -0.010359685868024826, -0.017055029049515724, -0.0333862379193306, -0.0034287243615835905, 0.02215193398296833, 0.012975997291505337, -0.013435924425721169, -0.027882182970643044, 0.0013496243627741933, -0.009281494654715061, 0.03917680308222771, 0.025469446554780006, -0.010420004837214947, -0.015381193719804287, -0.016044696792960167, -0.019603481516242027, -0.010819613933563232, 0.017085188999772072, -0.01658756099641323, -0.049129340797662735, 0.009123158641159534, -0.02135271579027176, -0.022619402036070824, 0.00507428590208292, -0.029133789241313934, 0.026344064623117447, -0.0018632732098922133, -0.0004728868661914021, -0.08311876654624939, 0.0005819783546030521, 0.0363418385386467, -0.016120094805955887, -0.01984475553035736, -0.012795042246580124, 0.05124048516154289, 0.047953132539987564, -0.004041333217173815, -0.001745463814586401, 0.03987046703696251, -0.0043165357783436775, 0.012063681147992611, -0.015351034700870514, 0.010397384874522686, 0.0037340864073485136, -0.003575750393792987, -0.034743402153253555, -0.023871008306741714, -0.03447197005152702, 0.018924899399280548, -0.006129858084022999, 0.0013873233692720532, 0.032964009791612625, -0.028304411098361015, 0.02791234292089939, -0.016783596947789192, 0.05507070571184158, 0.011686691083014011, -0.027384556829929352, 0.010993028990924358, 0.041740335524082184, -0.014642292633652687, 0.038302186876535416, -0.014913725666701794, -0.013126793317496777, -0.003969705197960138, -0.001604092656634748, -0.011008108966052532, 0.0014391595032066107, 0.02453451231122017, 0.010314447805285454, -0.004177049733698368, 0.05805646628141403, 0.020990805700421333, -0.011498196050524712, -0.020055869594216347, 0.011475577019155025, 0.0013647039886564016, 0.02147335186600685, 0.007984649389982224, -0.03462276607751846, 0.007984649389982224, 0.005745328031480312, -0.0016945701790973544, 0.0028029209934175014, 0.01703994907438755, -0.013021236285567284, -0.007257058285176754, 0.019136013463139534, -0.026102790609002113, 0.015049442648887634, 0.003274158574640751, -0.038603778928518295, -0.01731138303875923, -0.010593419894576073, -0.022332889959216118, -0.002454205183312297, 0.0068800682201981544, 0.011234303005039692, -0.001455181511119008, 0.010925170965492725, -0.023297984153032303, -0.025454366579651833, -0.011920425109565258, -0.027233760803937912, -0.003547476138919592, 0.005790567025542259, -0.022815436124801636, -0.007113801781088114, 0.021232079714536667, -0.009907297790050507, 0.022031297907233238, 0.009326733648777008, 0.031214775517582893, 0.01613517291843891, 0.0060431500896811485, -0.006216565612703562, 0.001007505925372243, -0.037125978618860245, 0.026902008801698685, -0.008753708563745022, 0.011747009120881557, 0.009077919647097588, -0.018427273258566856, 0.025439288467168808, -0.004855631850659847, -0.00490464037284255, 0.0030404245480895042, -0.009417210705578327, -3.9083264709915966e-05, 0.019709039479494095, -0.04264511168003082, -0.00965848471969366, -0.02252892404794693, -0.01809552125632763, 0.031154457479715347, 0.029978247359395027, 0.011664072051644325, -0.030656829476356506, -0.0005961154820397496, 0.0014146551256999373, 0.033567193895578384, 0.009145778603851795, -0.014431178569793701, 0.012274795211851597, 0.025831356644630432, -0.005896124057471752, -0.0007247633184306324, -0.004271297249943018, 0.0021130291279405355, 0.014024029485881329, -0.009718802757561207, 0.026555178686976433, -0.007826313376426697, 0.0036963874008506536, -0.005745328031480312, 0.0570310540497303, -0.003996094223111868, 0.01776377111673355, 0.04041333124041557, 0.039779987186193466, -0.01353394240140915, 0.03359735384583473, 0.019105855375528336, 0.007713216356933117, 0.02147335186600685, 0.010804534889757633, 0.01661772094666958, 0.03691486269235611, 0.008489815518260002, 0.010759295895695686, -0.04014189913868904, 0.006092159077525139, -0.015682784840464592, -0.015516909770667553, -0.02816869504749775, 0.01598437689244747, -0.019633641466498375, 0.013790295459330082, 0.009077919647097588, -0.02939014323055744, -0.027550430968403816, 0.047349948436021805, -0.03791011869907379, 0.04487689211964607, -0.014204984530806541, 0.0011620718287304044, -0.014046648517251015, 0.0006993165006861091, -0.0043240757659077644, 0.04086571931838989, -0.03573865443468094, 0.004949879366904497, 0.021036043763160706, -0.012923218309879303, -0.02007094956934452, -0.010472782887518406, 0.01658756099641323, 0.03601008653640747, -0.009447370655834675, 0.014612133614718914, 0.04605310410261154, -0.015577228739857674, 0.0019009722163900733, 0.0008105285814963281, 0.05157223716378212, 0.017432019114494324, -0.010291827842593193, -0.0015739334048703313, 0.031516365706920624, 0.011256922036409378, -0.0034664233680814505, -0.021232079714536667, 0.043640367686748505, -0.012086300179362297, 0.02540912851691246, 0.0013750711223110557, 0.02124715782701969, 0.012697024270892143, -0.008150524459779263, -0.006740581709891558, -0.01221447717398405, 0.035919610410928726, 0.012267256155610085, 0.004275066778063774, 0.02643454074859619, -0.01874394528567791, 0.008670770563185215, -0.0011620718287304044, 0.0021186841186136007, 0.0421927236020565, 0.04107683524489403, -0.004817932844161987, 0.007645357865840197, -0.011279541999101639, 0.019060615450143814, -0.0008741456549614668, 0.012123999185860157, -0.008731089532375336, 0.0014401018852367997, -0.03570849448442459, -0.008617992512881756, 0.02320750616490841, -0.006265574600547552, -2.6227315174764954e-05, 0.025378968566656113, -0.017597895115613937, 0.01666295900940895, -0.001455181511119008, -0.020387621596455574, -0.06327401101589203, -0.023237666115164757, 0.005032816901803017, -0.00734753580763936, 0.024051964282989502, 0.02650993876159191, 0.020945565775036812, -0.01477046962827444, 0.02180510386824608, -0.006537007167935371, 0.027746466919779778, -0.023117028176784515, 0.004768923856317997, 0.02124715782701969, 0.05570404604077339, 0.007324916310608387, 0.030355237424373627, 0.022890834137797356, -0.04270543158054352, 0.015531989745795727, -0.0063560521230101585, 0.009786661714315414, -0.026057550683617592, -0.008572753518819809, -0.011053347960114479, 0.018955059349536896, -0.04210224747657776, -0.013473623432219028, -0.015516909770667553, 0.0021318786311894655, 0.008738628588616848, 0.0018302865792065859, 0.025876596570014954, 0.02358449622988701, -0.029812371358275414, 0.00744178332388401, 0.008542594499886036, -0.0072532882913947105, 0.012923218309879303, -0.015328414738178253, 0.006220335606485605, 0.02275511808693409, -0.007901711389422417, -0.011294621042907238, 0.0010037359315901995, 0.0014250223757699132, 0.006831059232354164, 0.01761297509074211, -0.026178188621997833, -0.0021526131313294172, -0.008866805583238602, 0.04728962853550911, 0.005620921496301889, -0.02703772485256195, 0.027595670893788338, 0.03739741072058678, -0.011445417068898678, 0.01931696943938732, 0.014031569473445415, -0.006454069633036852, 0.017175665125250816, 0.014423638582229614, 0.028032978996634483, -0.019528083503246307, -0.02272495999932289, -0.006401290651410818, -0.008142984472215176, 0.007645357865840197, 0.027203600853681564, -0.017522497102618217, -0.03044571541249752, -0.004312765784561634, -0.05739296227693558, 0.025514686480164528, -0.034592606127262115, 0.01541135273873806, 0.01851775124669075, -0.01507206168025732, 0.004776463843882084, 0.029706815257668495, 0.019633641466498375, -0.011241842992603779, -0.009726342745125294, 0.04041333124041557, -0.011211683973670006, -0.011475577019155025, -0.005786797031760216, -0.004663366824388504, 0.022408287972211838, 0.022197173908352852, 0.0002095828967867419, 0.001053687185049057, -0.02272495999932289, -0.029586177319288254, 0.03353703394532204, -0.041589539498090744, -0.03863393887877464, -0.004210978746414185, -0.02200113795697689, -0.03679422661662102, -0.01851775124669075, 0.0151851586997509, -0.021639227867126465, -0.02620834670960903, 0.015064521692693233, 0.017447099089622498, 0.009688643738627434, 0.03851330280303955, -0.019829675555229187, 0.022046377882361412, 0.029314745217561722, 0.008648151531815529, -0.039629191160202026, -0.021216999739408493, -0.02423292025923729, -0.013624419458210468, -0.040353015065193176, 0.02946554124355316, 0.005568142980337143, -0.03944823890924454, -0.027218680828809738, -0.027520272880792618, 0.014815708622336388, -0.0029160180129110813, -0.010910091921687126, -0.03009888529777527, 0.010291827842593193, -0.030581431463360786, -0.004505030810832977, 0.11056363582611084, 0.008844186551868916, -0.025348810479044914, -0.0010838463203981519, 0.032059233635663986, -0.007502101827412844, 0.012146619148552418, -0.006770741194486618, -0.01052556186914444, -0.0013647039886564016, -0.026932168751955032, -0.014287922531366348, 0.017055029049515724, 0.0013892082497477531, -0.001426907256245613, -0.013285129331052303, -0.0055643729865550995, -0.0013835533754900098, 0.01802012324333191, -0.0007813118281774223, 0.009296574629843235, -0.009341812692582607, -0.0038415284361690283, -0.0022355508990585804, -0.006242955103516579, -0.003443803871050477, -0.007208049297332764, -0.013865693472325802, 0.005636001005768776, 0.026419462636113167, 0.021835263818502426, -0.009213636629283428, -0.027520272880792618, 0.012825201265513897, 0.0008637784048914909, -0.031667161732912064, -0.014755389653146267, 0.0006488941144198179, -0.028982993215322495, -0.012983537279069424, 0.020342381671071053, -0.00371146691031754, 0.009409671649336815, -0.013096634298563004, -0.004173279739916325, 0.025544844567775726, 0.00018849501793738455, -0.025831356644630432, 0.014385939575731754, -0.012244636192917824, 0.005605841986835003, 0.037578366696834564, -0.009168397635221481, -0.009711263701319695, -0.010163651779294014, 0.014755389653146267, -0.01992015354335308, 0.008610452525317669, 0.003272273577749729, -0.004863171372562647, -0.006046920083463192, 0.0047349948436021805, -0.003468308364972472, -0.008127905428409576, 0.02275511808693409, -0.007909251376986504, -0.02007094956934452, -0.008323940448462963, 0.005605841986835003, -0.014876026660203934, -0.009854519739747047, 0.021593989804387093, -0.01345854438841343, -0.024474192410707474, 0.018336795270442963, 0.0027633369900286198, -0.012712104246020317, 0.016632800921797752, 0.000844928901642561, 0.028907595202326775, 0.0007162810652516782, 0.028651243075728416, -0.004652056843042374, 0.007068563252687454, -0.00035177881363779306, -0.007675517350435257, -0.031516365706920624, 0.0043353852815926075, -0.004670906346291304, 0.02881711907684803, 0.0107517559081316, 0.01791456714272499, 0.004331615287810564, 0.004768923856317997, -0.004863171372562647, 0.008987442590296268, -0.03044571541249752, -0.017296303063631058, -0.031033819541335106, -0.013466084375977516, -0.0032025303225964308, -0.021563829854130745, -0.015381193719804287, 0.024624988436698914, -0.0033929103519767523, 0.005443735979497433, 0.010374765843153, -0.01643676497042179, 0.03447197005152702, -0.005496514495462179, 0.000989598804153502, -0.0047726938501000404, 0.011566054075956345, 0.0013260624837130308, -0.009289034642279148, 0.06321369111537933, 0.03145604953169823, -0.012847820296883583, 0.012689484283328056, 0.03601008653640747, 0.017281223088502884, -0.00034989387495443225, 0.05826757848262787, 0.011437878012657166, 0.02059873566031456, 0.011822407133877277, 0.039930783212184906, 0.02794250100851059, -0.016527242958545685, -0.000999023555777967, -0.03643231838941574, -0.008037427440285683, -0.012131539173424244, -0.004399473778903484, 0.011837487109005451, 0.026404382660984993, -0.02430831827223301, -0.0029876460321247578, -0.007294757291674614, -0.016120094805955887, 0.03290368989109993, -0.025348810479044914, -0.0004382509214337915, -0.04086571931838989, -0.0077584548853337765, -0.035346586257219315, -0.0025258332025259733, -0.02290591411292553, -0.03441165015101433, 0.005828266032040119, -0.013639499433338642, 0.033567193895578384, 0.013292668387293816, -0.010661277920007706, 0.019980471581220627, 0.03480371832847595, 0.006514387670904398, 0.00770567636936903, 0.025122616440057755, -0.03730693459510803, -0.013315288349986076, -0.02305671013891697, 0.006944156251847744, 0.0422530435025692, 0.014483957551419735, 0.01847251132130623, -0.011648992076516151, -0.0013986330013722181, 0.03821171075105667, -0.040835559368133545, -0.004912180360406637, -0.024549590423703194, -0.0096207857131958, -0.01060095988214016, -0.020161427557468414, -0.0032798133324831724, -0.008105285465717316, 0.061283499002456665, -0.054618317633867264, 0.014755389653146267, 0.020206665620207787, 0.0018397113308310509, -0.050335709005594254, 0.016421686857938766, -0.007174120284616947, 0.022393207997083664, -6.3028019212652e-05, -0.01726614311337471, 0.014574434608221054, -0.0051270644180476665, 0.0037812101654708385, -0.041137151420116425, -0.012991076335310936, 0.0054776654578745365, -0.020794769749045372, 0.006646334193646908, 0.01776377111673355, -0.005556832998991013, 0.0023806921672075987, -0.004094111733138561, -0.026057550683617592, -0.016376446932554245, 0.003984784707427025, 0.0076340483501553535, -0.019889993593096733, 0.008301320485770702, -0.013368066400289536, 0.013760136440396309, -0.034592606127262115, -0.017809009179472923, 0.017658213153481483, -0.013948631472885609, 0.0051157549023628235, 0.020779691636562347, 0.012885519303381443, -0.012485910207033157, -0.03582913428544998, -0.003228919580578804, -0.04560071602463722, 0.0010320101864635944, -0.023313064128160477, -0.03522595018148422, 0.025620242580771446, -0.027173440903425217, 0.0016248270403593779, -0.008663230575621128, 0.029902849346399307, -0.03269257768988609, -0.0031761410646140575, -0.016331208869814873, 0.015999456867575645, 0.015139919705688953, 0.040111739188432693, -0.004184589255601168, -0.013428385369479656, -0.01854790933430195, 0.0014730885159224272, -0.04354988783597946, 0.021216999739408493, 0.01608993485569954, -0.044213391840457916, -0.015441511757671833, 0.0010621694382280111, -0.0022544004023075104, -0.03938791900873184, 0.007566189859062433, 0.021141601726412773, 0.0015993802808225155, -0.03196875378489494, -0.02666073478758335, 0.0015013627707958221, 0.014378399588167667, 0.003939545713365078, -0.007170350290834904, 0.014551815576851368, -0.043338775634765625, 0.01090255193412304, 0.0013090978609398007, -0.017582815140485764, -0.031214775517582893, -0.004591738805174828, -0.04327845573425293, 0.017673293128609657, -0.02132255584001541, 0.025017058476805687, 0.02002571150660515, -0.025650402531027794, 0.001120602828450501, -0.02172970585525036, -0.00547012547031045, -0.004052642732858658, -0.0020753301214426756, -0.03272273391485214, -0.008519974537193775, -0.03893553093075752, -0.0008246657089330256, 0.004045103210955858, 0.0008651921525597572, 0.004018713720142841, -0.011302161030471325, 0.0024975589476525784, -0.015607387758791447, -0.02302655205130577, 0.0006488941144198179, 0.001949038472957909, 0.02007094956934452, 0.0004163383855484426, 0.031154457479715347, 0.011181524023413658, 0.01342084538191557, 0.004825472366064787, 0.031335413455963135, -0.03878473490476608, -0.014544275589287281, -0.008557673543691635, 0.009907297790050507, 0.004689755849540234, -0.029857611283659935, 0.005172303412109613, 0.011505736038088799, 0.0326322577893734, 0.014627213589847088, 0.01711534708738327, -0.016979631036520004, 0.01809552125632763, 0.044364187866449356, -0.0032232648227363825, 0.042162567377090454, -0.02741471491754055, 0.00522508192807436, 0.015366113744676113, 0.007083642762154341, -0.025228172540664673, -0.029480621218681335, -0.020508257672190666, -0.003950855694711208, -0.0011686690850183368, 0.016180412843823433, 0.0024768244475126266, 0.040684763342142105, 0.0051157549023628235, 0.014838327653706074, -0.010427544824779034, -0.032964009791612625, 0.11158905178308487, -0.0021394183859229088, 0.00958308670669794, 0.006525697652250528, -0.019754277542233467, -0.009092999622225761, 0.015924058854579926, 0.0036398388911038637, 0.0034023351036012173, 0.02007094956934452, 0.029148869216442108, -0.007068563252687454, -0.030626671388745308, 0.020282063633203506, -0.02117175981402397, -0.010141031816601753, -0.012116460129618645, 0.012847820296883583, 0.00041021229117177427, -0.012131539173424244, 0.00026907664141617715, 0.04237367957830429, 0.06104222685098648, 0.02222733199596405, -0.015728024765849113, -0.00026507111033424735, -0.007249518297612667, 0.018502671271562576, 0.020312223583459854, -0.043338775634765625, -0.015426432713866234, -0.03588945046067238, 0.030686989426612854, -0.007008244749158621, 0.013669658452272415, -0.027580590918660164, -0.03290368989109993, 4.847856325795874e-05, -0.01225217618048191, 0.033838625997304916, -0.008738628588616848, 0.026494860649108887, -0.010887471958994865, -0.020342381671071053, 0.014039108529686928, 0.011483116075396538, -0.028952835127711296, -0.0017944725695997477, -0.03736725077033043, -0.0008694332791492343, -0.005922513548284769, -0.020794769749045372, -0.03899585083127022, -0.0355878584086895, -0.0015833581564947963, 0.0060318405739963055, 0.01621057093143463, 0.019407447427511215, -0.02335830219089985, -0.012033522129058838, 0.02911871112883091, -0.01613517291843891, -0.025469446554780006, 0.007042173761874437, -0.013149412348866463], [0.02007269486784935, 0.021602798253297806, 0.052318211644887924, 0.03495436906814575, -0.04964336380362511, 0.043296270072460175, -0.040802765637636185, 0.038331933319568634, 0.023710940033197403, 0.024889687076210976, -0.04343227669596672, -0.02724718116223812, -0.013634924776852131, 0.02856193669140339, -0.053496960550546646, -0.020220037549734116, -0.0032670549117028713, 0.010393370874226093, 0.002867527771741152, 0.01898461952805519, 0.022044828161597252, 0.035566411912441254, -0.018803274258971214, 0.009724658913910389, -0.02194282039999962, -0.03463701531291008, 0.028380591422319412, 0.009123952127993107, 0.03305023908615112, -0.02139878459274769, 0.05032341182231903, -0.0339796356856823, 0.021523458883166313, 0.02527504600584507, -0.009832332842051983, -0.008999276906251907, 0.010518046095967293, -0.010212025605142117, 3.840755016426556e-05, 0.01564105972647667, 0.04322826489806175, -0.011198092252016068, 0.02282688021659851, 0.0010484043741598725, -0.02663513831794262, 0.10445508360862732, -0.04393097758293152, -0.03345826640725136, 0.0011482861591503024, 0.04429366812109947, 0.02337091788649559, 0.023824281990528107, -0.0006180627387948334, -0.054811716079711914, -0.004491137806326151, -0.0028561935760080814, -0.02423230931162834, 0.006964805535972118, 0.0209340862929821, -0.021772809326648712, 0.013226896524429321, -0.005120180547237396, 0.02801789902150631, 0.03957868367433548, 0.002003302564844489, -0.02254352904856205, 0.045155059546232224, 0.010523713193833828, -0.02414163574576378, -0.011464443989098072, 0.007661852519959211, 0.030352724716067314, 0.004802825395017862, -0.02940065972507, -0.05086744949221611, 0.0006541901966556907, -0.025365719571709633, 0.01788521185517311, 0.03055673837661743, -0.051502157002687454, -0.027700545266270638, 0.03690383583307266, 0.01925663836300373, 0.0269298255443573, -0.006381099112331867, -0.0061997538432478905, -0.05422234162688255, 0.01842924952507019, 0.06129482015967369, 0.009996677748858929, 0.01592441275715828, 0.0162417683750391, -0.018338575959205627, 0.02418697252869606, -0.010648388415575027, -0.004785824567079544, 0.02588708885014057, -0.017794540151953697, 0.037243857979774475, 0.048736635595560074, 0.012127488851547241, -0.03461434692144394, 0.004357961937785149, -0.007525843568146229, -0.017397847026586533, -0.0445883572101593, 0.013056885451078415, 0.034501004964113235, 0.07126883417367935, -0.00431829271838069, 0.027360521256923676, -0.07797861844301224, 0.013804935850203037, 0.03826392814517021, -0.01872393675148487, -0.032030172646045685, -0.0466964989900589, -0.015845073387026787, -0.005760557018220425, -0.0003348872996866703, 0.0049161664210259914, -0.054857052862644196, -0.00025165246916003525, -0.06823129206895828, 0.016604458913207054, -0.008115217089653015, -0.03261954337358475, 0.0055820452980697155, -0.027881890535354614, 0.007531510666012764, 0.0003391375648789108, -0.04157348349690437, 0.02332558110356331, -0.06700720638036728, 0.028811287134885788, 0.0077355243265628815, 0.04395364597439766, 0.005035174544900656, 0.015822406858205795, -0.006029742304235697, 0.02142145298421383, 0.034274324774742126, 0.03481835871934891, -0.02833525463938713, -0.04046274349093437, -0.0030148711521178484, -0.0335942767560482, 0.02638578787446022, 0.015119691379368305, 0.006148749962449074, -0.008421237580478191, 0.0019579660147428513, 0.007355832029134035, -0.02724718116223812, -0.01703515462577343, 0.010637054219841957, 0.0227928776293993, 0.09629452973604202, 0.01899595372378826, 0.01873527094721794, 0.008302229456603527, -0.00936763547360897, 0.023302912712097168, -0.00542903458699584, 0.014757000841200352, -0.010750395245850086, -0.008013210259377956, 0.005106012802571058, -0.0347050204873085, -0.009509311057627201, 0.02141011878848076, -0.01071639358997345, -0.006913802120834589, -0.006324428599327803, -0.04252554848790169, -0.011045082472264767, 0.050187401473522186, 0.016094423830509186, 0.015074355527758598, 0.024821681901812553, 0.0312594510614872, 0.032868895679712296, -0.034092977643013, 0.00990600511431694, 0.0015145193319767714, 0.04404431954026222, -0.028924627229571342, -0.0144509794190526, -0.0023050729651004076, 0.015346373431384563, -0.012932210229337215, -0.01953999139368534, 0.007304828613996506, 0.02776854857802391, 0.010416039265692234, 0.0069704726338386536, -0.027133839204907417, 0.008483574725687504, 0.017545189708471298, 0.030126042664051056, 0.02086608111858368, -0.014496316201984882, 0.014813670888543129, -0.012841537594795227, -0.023801613599061966, 0.04282023757696152, -0.02940065972507, -0.02944599650800228, 0.04556309059262276, -0.04007738456130028, 0.051502157002687454, 0.013396908529102802, -0.03547573834657669, 0.03332225978374481, 0.0565798357129097, -0.03810524940490723, -0.013918276876211166, -0.01595841534435749, 0.02450432814657688, -0.00605241023004055, -0.057078536599874496, -0.004556308966130018, -0.012195493094623089, 0.019449317827820778, 0.01867859996855259, -0.004408965352922678, -0.05766791105270386, -0.04601645469665527, -0.003836593357846141, -0.005706720054149628, -0.033412933349609375, 0.004584643989801407, 0.009713324718177319, -0.040553417056798935, 0.01727317087352276, -0.0069704726338386536, -0.019449317827820778, -0.06664451956748962, -0.03592910245060921, 0.06872998923063278, 0.007729857228696346, -0.004561976063996553, 0.011464443989098072, 0.01892795041203499, 0.005060676485300064, -0.014734332449734211, -0.005559376906603575, 0.006392433308064938, 0.02066206745803356, 0.04048541188240051, -0.002485001692548394, 0.03962402045726776, 0.020752741023898125, -0.040236059576272964, -0.014190295711159706, 0.02609110251069069, -0.04200417920947075, -0.016910480335354805, 0.030035369098186493, -0.06161217764019966, -0.026748480275273323, 0.006290426477789879, -0.021070094779133797, -0.010506711900234222, -0.04828327149152756, -0.030375393107533455, 0.034750357270240784, -0.0456990972161293, 0.0030998769216239452, 0.04254821687936783, -0.03626912459731102, 0.06233755871653557, -0.007531510666012764, -0.006205420475453138, -0.08477908372879028, 0.012002813629806042, 0.012025482021272182, -0.05050475895404816, -0.013226896524429321, -0.024300314486026764, 0.0023844116367399693, -0.022328181192278862, -0.02249819226562977, -0.04472436383366585, 0.014292302541434765, -0.007066812366247177, 0.0042984578758478165, 0.03597443923354149, -0.016593124717473984, 0.04089343920350075, 0.06079612299799919, -0.0062394230626523495, -0.010314032435417175, 0.031690146774053574, 0.03790123760700226, -0.010206358507275581, -0.00044557187356986105, 0.005006839521229267, 0.02142145298421383, -0.009475309401750565, 0.007639184594154358, 0.004485470708459616, 0.010518046095967293, -0.0790666937828064, -0.06469505280256271, 0.013702929019927979, 0.007922536693513393, 0.03685849905014038, 0.009696324355900288, 0.027133839204907417, -0.054313015192747116, -0.0003161151835229248, -0.08146952092647552, -0.06859398633241653, 0.018825942650437355, 0.014360306784510612, 0.0162417683750391, 0.0145756546407938, 0.02722451277077198, 0.021364782005548477, -0.013657592236995697, -0.007520176470279694, -0.031735483556985855, -0.014110956341028214, 0.0004427383537404239, -0.03708517923951149, 0.06682586669921875, 0.05354229733347893, -0.0010484043741598725, 0.00432962691411376, -0.01004768069833517, 0.01705782301723957, -0.01975533924996853, -0.005307192914187908, -0.022430187091231346, -0.02747386321425438, -0.015879075974225998, 0.0230422280728817, -0.02801789902150631, -0.020118029788136482, -0.0027641039341688156, -0.0069704726338386536, 0.02529771439731121, 0.0013664676807820797, -0.048781972378492355, -0.0069364700466394424, 0.015210364013910294, 0.05086744949221611, 0.013714263215661049, 0.002958200639113784, 0.011328434571623802, 0.03985070064663887, -0.014224297367036343, 0.055945124477148056, -0.06886599957942963, -0.000369775079889223, 0.04592578113079071, 0.054313015192747116, -0.04325093328952789, 0.004544974770396948, 0.0003988186945207417, -0.014813670888543129, 0.03026205115020275, 0.047421880066394806, 0.04152815043926239, -0.004723486956208944, -0.046333808451890945, 0.027383189648389816, 0.0184632521122694, 0.018859945237636566, 0.007871533744037151, 0.01058038417249918, 0.019415317103266716, -0.021342113614082336, 0.04535907506942749, 0.029037969186902046, 0.02475367859005928, 0.03601977601647377, 0.009316631592810154, 0.008092548698186874, 0.014190295711159706, 0.00797354057431221, -0.004655482247471809, -0.006913802120834589, -0.01841791532933712, 0.03771989047527313, -0.014394309371709824, -0.04510972648859024, -0.024005627259612083, 0.0016731967916712165, -0.04406698793172836, 0.0005946861347183585, 0.030670078471302986, 0.043862972408533096, -0.04982471093535423, -0.01816856488585472, 0.007712856400758028, -0.0011695376597344875, 0.0025756745599210262, -0.012048150412738323, -0.027927227318286896, -0.09774529188871384, -0.006511441431939602, -0.006511441431939602, -0.017987219616770744, -0.029241982847452164, -0.015063021332025528, 0.020469387993216515, -0.038331933319568634, -0.04182283580303192, 0.020820744335651398, -0.023166904225945473, 0.004068942274898291, 0.06600980460643768, -0.03431966155767441, 0.03046606481075287, -0.009282629005610943, 0.019131964072585106, -0.03744787350296974, 0.0028250247705727816, 0.020254040136933327, 0.060569439083337784, -0.017749203369021416, 0.04182283580303192, -0.004590311087667942, 0.02450432814657688, 0.020152032375335693, -0.01701248623430729, -0.011640122160315514, 0.023438923060894012, 0.009923006407916546, 0.014076954685151577, -0.05299825966358185, 0.014632325619459152, -0.016842475160956383, 0.03905731439590454, -0.029559336602687836, -0.042774900794029236, -0.010563382878899574, 0.0017369510605931282, -0.013011548668146133, 0.005273190792649984, 0.011776131577789783, 0.03599710762500763, -0.05821194499731064, -0.0069364700466394424, -0.027133839204907417, 0.08328297734260559, 0.022101499140262604, 0.01004201453179121, -0.01701248623430729, -0.04112011939287186, -0.02255486324429512, -0.06927403062582016, 0.0555824339389801, -0.06319895386695862, 0.021920152008533478, -0.02831258624792099, 0.04066675528883934, -0.01320422813296318, 0.004865163005888462, -0.020548725500702858, -0.004261622205376625, 0.04746721684932709, 0.020764075219631195, 0.017964551225304604, 0.007678853813558817, 0.02281554602086544, 0.009985343553125858, -0.05277157574892044, -0.00906161405146122, -0.040258727967739105, -0.008256892673671246, 0.008041544817388058, -0.0022994058672338724, 0.013022882863879204, -0.019585328176617622, -0.0345916785299778, -0.055083733052015305, -0.019925350323319435, 0.013578253798186779, -0.010081683285534382, -0.05186484754085541, -0.05612647160887718, 0.04914466664195061, -0.05766791105270386, 0.05363297089934349, 0.012002813629806042, -0.010189357213675976, -0.06836730241775513, -0.009526312351226807, 0.0269298255443573, 0.011787465773522854, -0.009129619225859642, 0.02364293672144413, -0.0029411993455141783, -0.009855001233518124, -0.0020118029788136482, 0.05327027663588524, -0.01141910720616579, -0.005681218579411507, -0.037515874952077866, 0.02006136067211628, 0.01348758116364479, -0.004570476710796356, -0.04093877598643303, -0.01361225638538599, -0.007151818368583918, -0.015085689723491669, -0.037266526371240616, 0.0005121597205288708, -0.02586442045867443, 0.007707189302891493, -0.010342367924749851, 0.01700115203857422, -0.004445801489055157, 0.016377776861190796, 0.045245733112096786, -0.029060637578368187, 0.015765735879540443, 0.021591464057564735, -0.013124889694154263, -0.02087741531431675, 0.026431124657392502, -0.012739530764520168, 0.03543040156364441, 0.01974400505423546, -0.048555292189121246, 0.01978934183716774, -0.006415101699531078, 0.0016859476454555988, 0.02091141790151596, -0.03334492817521095, -0.004564809612929821, -0.004598811734467745, -0.011481445282697678, -0.017159830778837204, 0.02586442045867443, -0.005463037174195051, -0.016162429004907608, 0.018825942650437355, 0.0032132177148014307, -0.017647195607423782, -0.02885662205517292, 0.001609442406333983, -0.020458053797483444, 0.018565258011221886, -0.006296093575656414, 0.005310026463121176, 0.0027499364223331213, -0.006233755964785814, 0.005820061080157757, 0.0021293943282216787, 0.02636312134563923, 0.01589041016995907, 0.03674515709280968, 0.020435385406017303, -0.024300314486026764, 0.02033337764441967, 0.023257575929164886, -2.6055151465698145e-05, 0.034251656383275986, 0.004697985015809536, -0.008177554234862328, -0.019381314516067505, 0.015799738466739655, -0.021636800840497017, -0.03966935724020004, -0.008415570482611656, 0.008013210259377956, 0.007729857228696346, -0.0002845922135747969, 0.022475523874163628, 0.021092763170599937, 0.026499129831790924, 0.011912140995264053, 0.05716921016573906, -0.04368162900209427, -0.00027060168213211, 0.03280089050531387, -0.0041652824729681015, 0.02443632297217846, 0.010784397833049297, -0.009339299984276295, -0.03221151605248451, 0.00727649312466383, -0.04431633651256561, -0.01358958799391985, -0.008307896554470062, -0.03153147175908089, 0.014042952097952366, -0.0004590311145875603, 0.019347311928868294, -0.047149863094091415, -0.00865925382822752, 0.008863267488777637, -0.0178512092679739, 0.019596662372350693, -0.014881675131618977, 0.06079612299799919, 0.008415570482611656, 0.006590780336409807, -0.010818400420248508, 0.037198521196842194, -0.02996736578643322, -0.01844058372080326, 0.018599260598421097, -0.02281554602086544, 0.06823129206895828, -0.02638578787446022, 0.0203220434486866, 0.004227620083838701, -0.017477184534072876, -0.023778945207595825, -0.03869462385773659, 0.018780605867505074, -0.05254489555954933, -0.02724718116223812, 0.016627127304673195, -0.018837276846170425, -0.012830203399062157, -0.003142379689961672, 0.014258299954235554, 0.00795087218284607, -0.05775858089327812, 0.056987863034009933, -0.017635861411690712, -0.028811287134885788, 0.0037260858807712793, -0.015063021332025528, -0.01956265978515148, 0.0008578498382121325, -0.008455240167677402, -0.025229711085557938, 0.026748480275273323, 0.015278369188308716, -0.03676782548427582, -0.036427803337574005, 0.006993140559643507, 0.006267758086323738, 0.01617376320064068, 0.0352037213742733, 0.03649580851197243, -0.0289019588381052, 0.009373301640152931, 0.03078342042863369, -0.006296093575656414, -0.006630449555814266, 0.039170656353235245, -0.027904558926820755, 0.032982237637043, 0.018769271671772003, -0.006709787994623184, -0.011753463186323643, -0.0015428545884788036, 0.012297499924898148, 0.022962890565395355, -0.0025034197606146336, 0.0015726066194474697, 0.0691833570599556, 0.000686421524733305, 0.04288823902606964, 0.005273190792649984, 0.010025013238191605, -0.025683075189590454, 0.023552263155579567, 0.026181774213910103, 0.003949934616684914, 0.010240361094474792, -0.016536453738808632, 0.05027807503938675, -0.002561507048085332, 0.010059014894068241, -0.029332654550671577, 0.016309771686792374, -0.03985070064663887, -0.004434467293322086, 0.016105758026242256, -0.018021222203969955, 0.011458776891231537, 0.006449103821069002, -0.013782267458736897, -0.0015386042650789022, 0.03499970585107803, 0.021920152008533478, -0.028969964012503624, -0.017148496583104134, 0.0034143980592489243, -0.01153244823217392, 0.040825434029102325, -0.0038677621632814407, 0.027088502421975136, 0.03400230407714844, 0.007559845689684153, 0.034501004964113235, 0.00782619696110487, -0.022668203338980675, 0.016593124717473984, -0.0018899614224210382, -0.0164911188185215, -0.001982050947844982, -0.02498036064207554, 0.01570906490087509, -0.02722451277077198, -0.009390302933752537, -0.0012991713592782617, 0.0219881571829319, 0.000666941050440073, 0.043862972408533096, 0.01867859996855259, -0.017103159800171852, 0.008324897848069668, -0.02801789902150631, -0.026748480275273323, 0.011181090958416462, -0.02661246992647648, 0.0064207687973976135, -0.020197369158267975, -0.0031820491421967745, 0.01651378534734249, -0.0070101418532431126, 0.033639613538980484, -0.006454770918935537, -0.014110956341028214, -0.019143298268318176, -0.017499852925539017, 0.03164481371641159, -0.011674124747514725, 0.006012741010636091, 0.020163366571068764, 0.035861097276210785, -0.03280089050531387, -0.0025218375958502293, 0.02112676575779915, -0.016581790521740913, 0.016003752127289772, -0.022328181192278862, 0.00033311633160337806, 2.7671147108776495e-05, -0.026793817058205605, 0.028403257951140404, -0.004040607251226902, 0.037221189588308334, -0.007990541867911816, -0.01619643159210682, 0.022464189678430557, 0.0028760284185409546, 0.010824067518115044, 0.020820744335651398, 0.004553475417196751, 0.006069411523640156, 0.0062110875733196735, -0.010512378998100758, -0.0050436751917004585, 0.008018877357244492, -0.0013600921956822276, 0.043590955436229706, 0.013804935850203037, 0.01757919229567051, -0.021784143522381783, -0.0064604380168020725, -0.014314970001578331, -0.01618509739637375, 0.013702929019927979, 0.01073339395225048, -0.008834931999444962, -0.01840658113360405, 0.0047688232734799385, -0.02749653160572052, -0.00918628927320242, -0.003003536956384778, -0.005672717932611704, -0.006364098284393549, 0.05680651590228081, 0.01330623496323824, -0.022770211100578308, -0.011096085421741009, 0.007304828613996506, 0.005375197622925043, -0.004765989724546671, 0.03987336903810501, 0.0219881571829319, -0.01618509739637375, 0.019732670858502388, 0.009815332479774952, -0.03162214532494545, -0.023302912712097168, 0.012954878620803356, 0.02066206745803356, 0.020548725500702858, -0.04705918952822685, -0.002118060365319252, 0.047376543283462524, -0.03157680854201317, -0.004927500616759062, 0.025116369128227234, 0.02697516232728958, -0.018497254699468613, 0.005916401278227568, 0.027677876874804497, 0.045744433999061584, 0.008409903384745121, 0.00282077444717288, 0.036949172616004944, 0.0790666937828064, 0.038875967264175415, -0.0269298255443573, -0.0363144613802433, -0.007707189302891493, -0.008126551285386086, 0.004601645283401012, 0.04202684760093689, 0.027700545266270638, 0.03905731439590454, -0.024844350293278694, -0.05667050927877426, 0.001708615804091096, 0.00017257941362913698, -0.021013423800468445, -0.002288071671500802, 0.0024680006317794323, 0.01059171836823225, -0.016615793108940125, 0.007956539280712605, 0.04322826489806175, -0.007554178591817617, -0.03960135206580162, -0.005859730765223503, -0.009968342259526253, -0.03815058618783951, 0.027677876874804497, 0.03785590082406998, -0.026861820369958878, 0.0044401343911886215, -0.050686102360486984, -0.013668926432728767, 0.02113809995353222, -0.026317784562706947, 0.0013459245674312115, 0.030602075159549713, 0.04592578113079071, 0.00013379553274717182, -0.026431124657392502, -0.019426649436354637, -0.013068219646811485, 0.02002735808491707, 0.02230551280081272, 0.019687334075570107, -0.025751078501343727, -0.015040352940559387, 0.017420513555407524, -0.023257575929164886, -0.013045551255345345, -0.005848396569490433, 0.01899595372378826, -0.05331561341881752, -0.001562689314596355, -0.00022384850308299065, -0.03166747838258743, -0.03499970585107803, -0.03073808364570141, -0.03522638976573944, 0.019959352910518646, -0.012886873446404934, -0.021104097366333008, -0.011821468360722065, 0.01759052649140358, 0.0030460397247225046, 0.005794559605419636, 0.0032302190084010363, 0.04832860827445984, 0.004845328629016876, -0.0047688232734799385, -0.0042049516923725605, -0.0021605631336569786, 0.007202821783721447, -0.03246086835861206, -0.0067891268990933895, 0.0011914974311366677, -0.005060676485300064, -0.016638461500406265, 0.02201082557439804, 0.036155782639980316, 0.01071639358997345, -0.025365719571709633, -0.002387245185673237, -0.03291423246264458, 0.008625251241028309, 0.03629179298877716, 0.00048311607679352164, 0.020764075219631195, 0.002721601165831089, 0.027632540091872215, -0.017205165699124336, 0.0041794502176344395, 0.005944736301898956, 0.007321829907596111, 0.014484982006251812, 0.010200691409409046, -0.0007515926263295114, -0.04012272134423256, -0.05136615037918091, -0.00047744903713464737, -0.026589803397655487, 0.005743556190282106, -0.019097961485385895, -0.0006722538964822888, 0.003255720715969801, 0.03930666297674179, -0.028176575899124146, -0.0010207775048911572, 0.02554706484079361, -0.023484257981181145, -0.04488304257392883, 0.03429699316620827, 0.0021775641944259405, 0.004015105310827494, 0.012467511929571629, -0.041664157062768936, 0.004136946983635426, 0.039170656353235245, -0.0022739041596651077, -0.011662790551781654, 0.024685673415660858, 0.031123442575335503, -0.02278154529631138, -0.0025289214681833982, -0.002368827350437641, -0.013396908529102802, 0.005420533940196037, -0.014745666645467281, 0.017545189708471298, -0.034206319600343704, 0.04037206992506981, 0.01456432044506073, -0.0020897251088172197, -0.012161491438746452, 0.021342113614082336, -0.0011369520798325539, -0.016967149451375008, 0.014178961515426636, 0.008024544455111027, 0.022430187091231346, -0.03135012462735176, 0.019721336662769318, 0.027133839204907417, 0.008761260658502579, 0.052363548427820206, 0.010076016187667847, -0.0009782746201381087, 0.03218884766101837, -0.004156781826168299, 0.010387703776359558, 0.007180153392255306, -0.009934339672327042, -0.05145682021975517, 0.02579641528427601, 0.004646981600672007, 0.017953217029571533, -0.022112831473350525, 0.012184158898890018, -0.003133879043161869, 0.00987200252711773, -0.04454302042722702, 0.000838723499327898, 0.01483633928000927, 0.015482382848858833, -0.014382975175976753, -0.011237761937081814, -0.00361274485476315, -0.049598030745983124, -0.012784866616129875, 0.03105543926358223, -0.010625720024108887, -0.007860199548304081, 0.009299630299210548, -0.020696070045232773, -0.022611532360315323, 0.0318714939057827, -0.012127488851547241, -0.061385493725538254, 0.019313309341669083, 0.005168350413441658, 0.016003752127289772, 0.008273893967270851, 0.01374826580286026, -0.020254040136933327, 0.012773532420396805, 0.00032107383594848216, -0.00868192221969366, 0.03438766300678253, -0.02609110251069069, 0.0018842944409698248, -0.00933363288640976, -0.027360521256923676, 0.03334492817521095, 0.03438766300678253, 0.005927735008299351, 0.0172958392649889, 0.02473101019859314, -0.018202567473053932, 0.032007504254579544, 0.010274362750351429, 0.00681179529055953, -0.019573993980884552, -0.018610594794154167, -0.041392140090465546, 0.0028930294793099165, -0.013759599067270756, -0.00666445167735219, -0.010999745689332485, -0.010229026898741722, 0.023756276816129684, 0.056171808391809464, -0.046605825424194336, 0.0012077902210876346, 0.036405134946107864, 0.003261387813836336, -0.01755652390420437, -0.011991479434072971, -0.004366462584584951, 0.016672464087605476, 0.04322826489806175, 0.015323705039918423, 0.018599260598421097, -0.019063958898186684, -0.0006421476718969643, 0.020526058971881866, 0.021546127274632454, 0.015720399096608162, 0.003995270933955908, -0.010841067880392075, 0.006233755964785814, 0.017386512830853462, 0.025388387963175774, 0.011821468360722065, -0.01732984185218811, -0.012569518759846687, -0.018497254699468613, 0.02974068373441696, -0.03382096067070961, -0.024254977703094482, -0.005287358537316322, 0.009684990160167217, -0.017148496583104134, 0.013782267458736897, 0.0025133369490504265, -1.69015365827363e-05, -0.024663005024194717, 0.011798799969255924, -0.01868993416428566, 0.034773025661706924, -0.013419575989246368, 0.04588044434785843, -0.018825942650437355, -0.0019933851435780525, -0.02144411951303482, 0.023733608424663544, 0.0073671662248671055, -0.006222421769052744, -0.013827604241669178, -0.019664665684103966, -0.02724718116223812, -0.01647978462278843, -0.003238719655200839, -0.004689484369009733, -0.05308893322944641, 0.04624313488602638, -0.004085943568497896, 0.013884274289011955, -0.030330056324601173, 0.005800226703286171, -0.01949465461075306, 0.015754401683807373, -0.009577316232025623, 0.005006839521229267, -0.01335157174617052, 0.010903405956923962, -0.03595177084207535, 0.05907333642244339, -0.0058030602522194386, -0.0195173230022192, -0.013510249555110931, 0.006352764088660479, -0.021047426387667656, -0.0230422280728817, 0.01870126836001873, 0.01873527094721794, -0.01208215206861496, 0.0017822874942794442, -0.0003325850411783904, -0.002309323288500309, -0.006454770918935537, -0.013272233307361603, -0.01335157174617052, -0.012909541837871075, 0.023461589589715004, -0.0055678775534033775, -0.015833739191293716, -0.020276708528399467, -0.00010855944128707051, -0.016026420518755913, 0.009163620881736279, -0.009520645253360271, 0.03955601528286934, 0.011322767473757267, -0.008817930705845356, 0.037810564041137695, 0.002286655129864812, 0.008585582487285137, -0.013238230720162392, 0.005797393154352903, 0.02334824949502945, -0.03375295549631119, -0.01953999139368534, -0.003292556619271636, -0.024005627259612083, -0.004661149345338345, -0.010954408906400204, 0.00906161405146122, 0.0015839406987652183, -0.027065834030508995, -0.03815058618783951, 0.005375197622925043, 0.03023938275873661, -0.001616526278667152, -0.03679049387574196, 0.006029742304235697, 0.01922263577580452, -0.013362905941903591, -0.0065397764556109905, -0.015131025575101376, -0.021104097366333008, -0.041369471698999405, -0.013578253798186779, -0.015516385436058044, -0.014654993079602718, -0.0921689122915268, 0.003116877982392907, -0.01840658113360405, -0.020684735849499702, 0.018202567473053932, 0.02749653160572052, -0.042230863124132156, 0.014813670888543129, 0.029604673385620117, -0.0009655237663537264, 0.07553045451641083, -0.013022882863879204, -0.00934496708214283, 0.010909073054790497, 0.01617376320064068, -0.012818869203329086, -0.013068219646811485, 0.04209485277533531, 0.04214018955826759, 0.023189572617411613, 0.015595723874866962, -0.011866804212331772, 0.013793601654469967, -0.016672464087605476, 0.012830203399062157, -0.018531255424022675, 0.032551538199186325, 0.00919762346893549, 0.025955092161893845, -0.016015086323022842, -0.001242500846274197, -0.030103374272584915, -0.0068968008272349834, -0.011617453768849373, 0.0033747288398444653, -0.01209348626434803, -0.02502569742500782, 0.041142787784338, -0.013691594824194908, -0.016547787934541702, 0.015233032405376434, -0.010393370874226093, 0.010013679042458534, -0.02063939906656742, 0.026816485449671745, 0.015233032405376434, -0.03053406998515129, 0.0008330564596690238, 0.0023447421845048666, 0.015255700796842575, 0.009690657258033752, 0.006024075206369162, -0.005528207868337631, 0.019664665684103966, -0.006908135022968054, 0.011900806799530983, -0.04123346135020256, -0.030012700706720352, -0.010370703414082527, -0.015029018744826317, 0.04563109204173088, 0.023688271641731262, -0.02697516232728958, 0.013566919602453709, -0.0025685906875878572, 0.008075547404587269, 0.0006754416390322149, -0.011538115330040455, -0.02498036064207554, -0.014881675131618977, -0.02066206745803356, 0.02334824949502945, 0.018338575959205627, 0.029332654550671577, -0.0016831140965223312, -0.02806323580443859, -0.006755124777555466, 0.03935199975967407, 0.011345435865223408, 0.008358900435268879, -0.004057608544826508, -0.012932210229337215, -0.005678385030478239, 0.005499872844666243, 0.011073417030274868, 0.029264651238918304, 9.279795631300658e-05, 0.0021463956218212843, -0.05191018432378769, 0.03334492817521095, -0.05218220502138138, 0.01842924952507019, 0.030080705881118774, 0.016105758026242256, 0.005256189499050379, -0.023030893877148628, -0.004499638453125954, -0.02006136067211628, 0.013272233307361603, 0.03740253672003746, 0.00336906174197793, -0.0044543021358549595, 0.00467815063893795, -0.030874092131853104, 0.017998553812503815, 0.02084341272711754, 0.011764797382056713, 0.0011985813034698367, 0.000327626388752833, 0.01319289393723011, 0.03735719993710518, 0.012886873446404934, -0.03821859136223793, 0.006012741010636091, -0.015097022987902164, 0.022951556369662285, -0.011062082834541798, -0.019415317103266716, -0.012195493094623089, -0.05322493985295296, -0.019948018714785576, 0.00230223941616714, 0.0025487560778856277, -0.03545306995511055, -0.019007287919521332, -0.04486037418246269, 0.003261387813836336, 0.011889472603797913, 0.012320168316364288, 0.00839856918901205, 0.01978934183716774, -0.020764075219631195, 0.04778457432985306, 0.001312630600295961, -0.011594786308705807, 0.0024680006317794323, 0.00795087218284607, 0.052363548427820206, -0.006001406814903021, -0.007786527741700411, 0.006018408108502626, 0.013011548668146133, 0.013918276876211166, 0.0016221932601183653, -0.027405858039855957, 0.022475523874163628, -0.011464443989098072, 0.01731850765645504, 0.021013423800468445, -0.007072479464113712, 0.022044828161597252, 0.002340492093935609, 0.01224082987755537, -0.02475367859005928, 0.016128426417708397, -0.012728196568787098, 0.005035174544900656, -0.011079084128141403, -0.018848611041903496, 0.024050964042544365, -0.004474136512726545, 0.031123442575335503, 0.01621909998357296, 0.03189416229724884, -0.003850761102512479, -0.011560783721506596, -0.0035815760493278503, -0.00434096110984683, 0.029037969186902046, -0.019358646124601364, -0.007497508078813553, 0.030126042664051056, -0.013782267458736897, -0.01867859996855259, 0.012830203399062157, 0.007633517496287823, 0.01652511954307556, -0.009775662794709206, -0.0098833367228508, -0.02116076834499836, -0.009730326011776924, 0.02337091788649559, 0.006409434601664543, 0.015618392266333103, 0.024572333320975304, -0.03107810765504837, 0.01919996738433838, 0.020208703354001045, -0.020390048623085022, 0.01760186068713665, 0.0319848358631134, 0.028788618743419647, 0.0027102669700980186, -0.019868679344654083, 0.005692552775144577, 0.029332654550671577, 0.009044612757861614, 0.00825122557580471, -0.009588650427758694, 0.0094809764996171, 0.013102221302688122, 0.03019404597580433, 0.048781972378492355, -0.008710256777703762, 0.007066812366247177, -0.03078342042863369, 0.0016604459378868341, -0.008789596147835255, 0.01923396997153759, -0.001151828095316887, -0.03595177084207535, -0.01334023755043745, -0.0005900816759094596, -0.015822406858205795, -0.00865925382822752, -0.01730717346072197, -0.007378500420600176, 0.015369041822850704, -0.008489241823554039, 0.029060637578368187, 0.016887811943888664, -0.00660211406648159, 0.027156507596373558, 0.005040841642767191, 0.009718991816043854, -0.0022583198733627796, 0.011651456356048584, 0.01208215206861496, 0.00826255977153778, -0.03658648207783699, -0.03495436906814575, 0.025139037519693375, 0.016015086323022842, 0.00508051086217165, 0.027632540091872215, 0.06319895386695862, -0.008732925169169903, 0.006692787166684866, 0.02226017601788044, 0.004536474123597145, 0.037198521196842194, 0.02036738023161888, -0.014076954685151577, -0.0335942767560482, -0.007497508078813553, 0.013759599067270756, -0.006012741010636091, -0.0052391886711120605, 0.005250522401183844, -0.002517587272450328, 0.02036738023161888, 0.020741406828165054, 0.02334824949502945, 0.026748480275273323, 0.04472436383366585, -0.001806372427381575, -0.032324858009815216, -0.033684950321912766, -0.008732925169169903, -0.027428526431322098, 0.00618841964751482, 0.03481835871934891, -0.0023064897395670414, -0.010682391002774239, 0.01702382043004036, 0.026045765727758408, 0.018315907567739487, -0.002691849134862423, 0.0019650498870760202, -0.025660406798124313, 0.005888065788894892, -0.02060539647936821, 0.03212084248661995, 0.01590174436569214, 0.02940065972507, 0.002766937483102083, 0.01003068033605814, 0.032891564071178436, 0.013136223889887333, 0.020990755409002304, -0.010552048683166504, -0.032279521226882935, 0.007327496539801359, -0.05331561341881752, -0.007752525620162487, 0.0506407655775547, 0.01866726577281952, 0.06020674854516983, -0.025388387963175774, -0.02554706484079361, -0.005888065788894892, 0.01706915721297264, -0.03051140159368515, 0.010892071761190891, -0.023506926372647285, 0.009911672212183475, -0.015391710214316845, 0.010512378998100758, 0.019041290506720543, 0.003575909184291959, 0.015097022987902164, -0.009679323062300682, 0.027315184473991394, -0.0010165272979065776, 0.02144411951303482, -0.00851191021502018, 0.007253825198858976, -0.022588863968849182, 0.008568581193685532, -0.0021152268163859844, 0.010914740152657032, 0.010098684579133987, 0.022112831473350525, -0.027859222143888474, 0.001639194437302649, 0.02475367859005928, 0.00936763547360897, 0.030148711055517197, 0.04374963417649269, -0.024050964042544365, -0.02552439644932747, 0.031440798193216324, -0.01030836533755064, 0.01626443676650524, -0.016151094809174538, 0.03567975386977196, -0.008092548698186874, 0.02670314349234104, 0.009112617932260036, 0.04982471093535423, -0.004865163005888462, 0.015301037579774857, -0.024912355467677116, 0.014507650397717953, 0.02278154529631138, -0.009135286323726177, 0.03139546141028404, -0.022770211100578308, -0.0017327008536085486, 0.008851933293044567, 0.03762921690940857, -0.01921130158007145, 0.04363629221916199, -0.0002502357237972319, 0.011504113674163818, -0.01596974954009056, -0.05603579804301262, -0.00597873842343688, -0.027405858039855957, -0.013895608484745026, 0.025365719571709633, 0.007673186715692282, 0.007174486294388771, -0.02362026832997799, 0.020809410139918327, 0.016275769099593163, -0.019630664959549904, 0.014099622145295143, -0.0034427333157509565, -0.004944501910358667, -0.004451468586921692, 0.005349696148186922, -0.008081214502453804, 0.03327692300081253, -0.0001379572640871629, -0.00564154889434576, -0.004094444215297699, 0.004020772408694029, 0.011730794794857502, 0.013170226477086544, -0.0062110875733196735, -0.03651847690343857, -0.009055946953594685, -0.011787465773522854, 0.02366560511291027, -0.038603950291872025, -0.00047390713007189333, 0.005344029050320387, 0.023506926372647285, 0.016910480335354805, -0.0015357708325609565, -0.025433724746108055, 0.006732456386089325, -0.004156781826168299, 0.039147987961769104, -0.02747386321425438, -0.04207218438386917, 0.031486134976148605, -0.008154885843396187, 0.03373028710484505, 0.0011404940159991384, 0.004034940153360367, -0.01652511954307556, -0.03223418444395065, 0.035022374242544174, 0.02199949137866497, 0.022588863968849182, 0.001882877666503191, 0.03021671436727047], [0.03792474791407585, 0.003999617416411638, 0.056986283510923386, 0.032239340245723724, -0.05037534609436989, 0.03283432498574257, -0.04830392077565193, 0.014411844313144684, 0.010930083692073822, 0.016714654862880707, -0.04215574637055397, -0.018841173499822617, 0.01402620691806078, 0.06593308597803116, -0.02152962051331997, 0.00883662048727274, -0.0012794919312000275, -0.0003071331593673676, 0.00851709209382534, 0.028096485882997513, 0.002082445425912738, 0.02287384495139122, -0.017882587388157845, -0.00175465305801481, -0.02714891918003559, -0.025077491998672485, 0.02498934604227543, -0.0069690304808318615, 0.04424921050667763, -0.01714436523616314, 0.05826440081000328, -0.04777504503726959, 0.024240106344223022, 0.037439946085214615, -0.016395125538110733, -0.021628785878419876, 0.019854851067066193, -0.00682028429582715, -0.013893987983465195, 0.001819385215640068, 0.010830920189619064, -0.05469449236989021, 0.017518986016511917, -0.037175506353378296, -0.0306086428463459, 0.07020816206932068, -0.029727185145020485, -0.04680544137954712, 0.0008484037243761122, 0.009685023687779903, 0.019656522199511528, 0.012637909501791, 0.025297855958342552, -0.09087835997343063, -0.011723396368324757, 0.017067238688468933, -0.013486313633620739, 0.04843613877892494, 0.03404632955789566, -0.023755304515361786, 0.00021003501024097204, -0.008880693465471268, 0.008610746823251247, 0.008935784921050072, -0.005905771162360907, -0.03234952315688133, 0.0206040907651186, 0.0412081815302372, -0.04438142850995064, 0.004173154477030039, 0.0036966160405427217, 0.03627201169729233, -0.03499389812350273, 0.010836428962647915, -0.01224125362932682, 0.021705912426114082, -0.04491030424833298, 0.03472946211695671, 0.032922472804784775, -0.040745414793491364, -0.01954633928835392, 0.00812594499439001, -0.010759301483631134, 0.009729096665978432, 0.01621883362531662, 0.03682292625308037, -0.012869292870163918, 0.044359393417835236, 0.03395818546414375, -0.01310067530721426, 0.02006419748067856, -0.009442622773349285, -0.028162594884634018, 0.02448250725865364, -0.01811397075653076, 0.03135788068175316, 0.004462383221834898, -0.023050136864185333, 0.001585247809998691, 0.07933125644922256, 0.009117585606873035, -0.014169443398714066, -0.03514815494418144, 0.006126136053353548, -3.193027168890694e-06, -0.06487533450126648, 0.0011018229415640235, -0.020504925400018692, 0.06575679779052734, -0.016053561121225357, 0.043037205934524536, -0.04510863497853279, 0.01011473499238491, 0.03206304833292961, -0.011866633780300617, -0.005751516204327345, -0.0028867763467133045, -0.0021568185184150934, -0.02100074663758278, -0.020560016855597496, -0.008214090019464493, -0.022785698994994164, -0.015535703860223293, -0.047422461211681366, -0.0015783613780513406, 0.022311914712190628, 0.0232705008238554, 0.014731373637914658, -0.0272811371833086, -0.024636762216687202, 0.046100273728370667, -0.026245424523949623, 0.045968055725097656, -0.03228341415524483, 0.011425903998315334, 0.013034566305577755, -0.007525451015681028, 0.0034211603924632072, 0.0018056124681606889, -0.007189394906163216, -0.012913365848362446, 0.03554480895400047, 0.013993152417242527, -0.008528109639883041, -0.01953532174229622, 0.039445262402296066, 0.003853625850751996, 0.043874591588974, 0.01917172037065029, -0.010511391796171665, -0.01510599348694086, 0.0096464604139328, -0.00938202254474163, 0.011547105386853218, 0.012693000957369804, -0.019094591960310936, 0.01996503211557865, 0.07100147008895874, 0.0219483133405447, 0.013607514090836048, 0.0017932169139385223, 0.018169060349464417, 0.016428180038928986, 0.006864357274025679, 0.007564014755189419, -0.001994299702346325, -0.03415651246905327, 0.0109686478972435, -0.026509860530495644, -0.013519368134438992, -0.009613405913114548, -0.0024859881959855556, 0.0039004534482955933, -0.02620135061442852, -0.05747108906507492, -0.0032916960772126913, 0.008776020258665085, 0.0024529334623366594, 0.02233395166695118, 0.004743347875773907, 0.021904241293668747, 0.07474767416715622, -0.045174743980169296, -0.031842686235904694, 0.015866251662373543, 0.05985102429986, -0.026399679481983185, -0.009095548652112484, -0.006340991239994764, 0.0139600969851017, -0.011133921332657337, -0.007354668341577053, 0.010660137049853802, 0.022631444036960602, -0.00029886947595514357, 0.0013841651380062103, -0.014698319137096405, -0.02485712617635727, 0.02593691274523735, -0.037307728081941605, 0.02048289030790329, -0.00011904853454325348, 0.022389043122529984, -0.02022946998476982, 0.015899306163191795, 0.07069296389818192, -0.013949079439043999, -0.002649884205311537, 0.05385710671544075, -0.024151960387825966, 0.04601212963461876, 0.01177848782390356, -0.04131836071610451, 0.024791017174720764, 0.04312535375356674, 0.012197180651128292, 0.0179707333445549, -0.03294450789690018, 0.0206040907651186, 0.014654246158897877, -0.030498459935188293, 0.021761003881692886, -0.016163744032382965, 0.002262868918478489, -0.035170190036296844, -0.03395818546414375, -0.04548325389623642, -0.04535103589296341, -0.036756813526153564, -0.0026333569549024105, -0.028294814750552177, 0.00949771422892809, 0.03179861232638359, -0.02977125719189644, 0.016835855320096016, -0.022389043122529984, 0.026421714574098587, -0.0584847629070282, -0.05275528505444527, 0.044623829424381256, 0.034244660288095474, -0.03605164960026741, 0.006032480858266354, -0.013695660047233105, -0.018697936087846756, -0.010742774233222008, -0.014544063247740269, -0.013001510873436928, 0.012505690567195415, 0.0399080291390419, 0.023094210773706436, 0.03766030818223953, 0.01913866586983204, -0.08224006742238998, -0.024129923433065414, 0.05636926367878914, -0.006605428643524647, -0.03261395916342735, 0.01468730065971613, -0.04358811676502228, -0.005600015167146921, 0.003848116844892502, -0.029727185145020485, -0.014015188440680504, -0.06813673675060272, -0.05306379497051239, -0.020152343437075615, -0.021937295794487, 0.01648327149450779, 0.03766030818223953, -0.04347793385386467, 0.03658052161335945, -0.03003569506108761, -0.0425303690135479, -0.06875375658273697, 0.008263672702014446, 0.005002276506274939, -0.06333278864622116, -0.008968839421868324, -0.03957748040556908, -0.03618386760354042, -0.018301280215382576, -0.020394744351506233, -0.03274618089199066, -0.014059261418879032, -0.01177848782390356, 0.00778437964618206, 0.05703035742044449, -0.022300897166132927, 0.025363964959979057, 0.06765193492174149, -0.00031470818794332445, 0.015734031796455383, 0.038762133568525314, 0.048876866698265076, 0.007382214069366455, -0.007486887276172638, -0.01502886600792408, 0.008147981017827988, -0.0006765881553292274, 0.03946730121970177, 0.012285326607525349, 0.029617002233862877, -0.0677400752902031, -0.03761623799800873, 0.030101804062724113, -0.008742965757846832, 0.012847255915403366, -0.03472946211695671, -0.023711230605840683, -0.046893585473299026, 0.017926659435033798, -0.08964432030916214, -0.06553643196821213, -0.01610865257680416, -0.015734031796455383, -0.003721407148987055, 0.0069965762086212635, 0.03155621141195297, 0.04592398181557655, -0.007145321927964687, -6.357001984724775e-05, -0.01170136034488678, 0.0018827400635927916, 0.007172867655754089, -0.02006419748067856, 0.03750605508685112, 0.04070134088397026, -0.020042160525918007, 0.029969586059451103, -0.013574459590017796, -0.01594337821006775, -0.04574768990278244, -0.0003728982119355351, -0.03964358940720558, -0.01822415180504322, -0.026355605572462082, 0.04312535375356674, -0.04292702302336693, -0.025738585740327835, 0.008037799037992954, -0.013475295156240463, -0.004602865781635046, 0.03415651246905327, -0.0032090593595057726, 0.025562293827533722, 0.04958203434944153, 0.017254548147320747, 0.018598772585392, -0.008886202238500118, 0.004192436579614878, 0.014808501116931438, -0.01635105349123478, 0.033186908811330795, -0.07523247599601746, -0.023468829691410065, 0.07117776572704315, 0.04720209538936615, -0.012549763545393944, 0.00910656712949276, -0.0012209576088935137, -0.0028482123743742704, 0.02765575796365738, 0.02368919365108013, 0.043279606848955154, 0.0024157469160854816, -0.029308492317795753, -0.02316031977534294, 0.04202352836728096, 0.0059112804010510445, 0.03818918392062187, 0.00917818583548069, 0.028360923752188683, -0.02075834572315216, 0.08082973212003708, -0.013056602329015732, 0.004467892460525036, 0.021166019141674042, 0.002126518404111266, -0.00488658482208848, -0.015216175466775894, 0.018708953633904457, 0.03428873047232628, -0.012395508587360382, 0.0037985348608344793, 0.050727929919958115, -0.019656522199511528, -0.03633812069892883, -0.008021271787583828, 0.0031897774897515774, -0.0027380301617085934, 0.01403722446411848, 0.006555846892297268, 0.04072337597608566, -0.03622794151306152, -0.016042543575167656, 0.02873554453253746, 0.027854084968566895, 0.00662195635959506, 0.013497332111001015, -0.017871569842100143, -0.07148627936840057, 0.017783423885703087, 0.0017560303676873446, 0.020504925400018692, 0.011458959430456161, 0.004343937151134014, 0.014709336683154106, -0.03774845600128174, -0.03979784622788429, 0.009398549795150757, -0.019116628915071487, 0.015458576381206512, 0.01488562859594822, 0.0066439928486943245, 0.01158015988767147, 0.00032142241252586246, -0.007172867655754089, -0.001359374145977199, -0.032635997980833054, 0.03111548162996769, 0.04138446971774101, -0.00042316887993365526, 0.07695131748914719, 0.0035423608496785164, 0.018697936087846756, 0.013927042484283447, -0.007630124222487211, -0.03307672590017319, 0.0061096083372831345, -0.031952865421772, -0.005266713909804821, -0.00010484534141141921, 0.038740094751119614, -0.03250377997756004, -0.0005154465907253325, -0.03221730515360832, -0.013310021720826626, -0.018532663583755493, -0.018962373957037926, -0.00019746733596548438, -0.025584330782294273, 0.019336992874741554, 0.02103380113840103, -0.05839661881327629, 0.021893223747611046, -0.010158807970583439, 0.08951210230588913, 0.015910323709249496, 0.01820211671292782, -0.022807735949754715, -0.012263289652764797, 0.0016830345848575234, -0.02593691274523735, -0.001940585789270699, -0.047951336950063705, -0.006131644826382399, -0.02419603243470192, 0.022014424204826355, -4.352415999164805e-06, -0.01155812293291092, 0.03270210698246956, 0.023446792736649513, 0.028515178710222244, 0.034244660288095474, 0.03071882575750351, 0.03098326176404953, 0.0027697074692696333, 0.016053561121225357, -0.052711211144924164, -0.010946611873805523, -0.04471197724342346, -0.008528109639883041, 0.021375365555286407, 0.022234788164496422, -0.004217227455228567, 0.015469594858586788, -0.027479466050863266, -0.022234788164496422, -0.03274618089199066, 0.053416378796100616, 0.03973173722624779, -0.08197563141584396, -0.0478631891310215, 0.0412081815302372, -0.03085104376077652, 0.07148627936840057, -0.010527919046580791, -0.017893604934215546, -0.06029175594449043, -0.013354094699025154, 0.006385064218193293, -0.00778437964618206, -0.007883543148636818, 0.007894561626017094, 0.028779616579413414, -0.03268006816506386, -0.01155812293291092, 0.040789488703012466, 0.00518958643078804, -0.008087380789220333, -0.05628111958503723, 0.018136005848646164, -0.015756068751215935, -0.03016791306436062, -0.035588882863521576, -0.012814201414585114, -0.03671274334192276, -0.016824837774038315, -0.024923235177993774, -0.016527345404028893, 0.004578074440360069, -0.007272031623870134, -0.0232705008238554, 0.002392333233729005, -0.01625188998878002, 0.005076649598777294, 0.042376112192869186, -0.04286091402173042, 0.009828261099755764, 0.02884572558104992, -0.04513067007064819, -0.02794223092496395, 0.003492778865620494, -0.06681454926729202, 0.04431531950831413, 0.0005347284604795277, -0.030234022065997124, 0.013034566305577755, 0.016130689531564713, 0.013475295156240463, -0.01004311628639698, -0.033848002552986145, 0.00041800408507697284, 0.014246570877730846, -0.026289496570825577, 0.002034240635111928, 0.019920960068702698, -0.020383724942803383, -0.029286455363035202, -0.0029501309618353844, 0.00438525527715683, -0.0001457333128200844, -0.00577906146645546, -0.0028619852382689714, -0.004484419710934162, 0.001216137083247304, 0.029749220237135887, 0.020394744351506233, -0.0035699065774679184, -0.020802417770028114, -0.002834439743310213, 0.007029630709439516, 0.01966753974556923, 0.034905754029750824, 0.02992551214993, 0.03488371521234512, -0.02342475764453411, -0.01873099058866501, 0.03283432498574257, 0.03483964130282402, 0.014004169963300228, 0.0026361115742474794, -0.018587753176689148, -0.019094591960310936, 0.024306215345859528, -0.00898536667227745, -0.03924693539738655, -0.00039734490565024316, -0.006737647578120232, 0.012946420349180698, 0.015260248444974422, 0.03316487371921539, 0.019502267241477966, 0.03481760621070862, 0.018708953633904457, 0.05094829574227333, -0.03362763673067093, 0.009607896208763123, 0.026531897485256195, -0.0022449642419815063, 0.04140650853514671, -0.022289879620075226, 0.010830920189619064, -0.03146806359291077, 0.015293302945792675, -0.05108051374554634, -0.035302408039569855, -0.023865485563874245, -0.0109686478972435, 0.023645121604204178, 0.0004303996101953089, 0.010274499654769897, -0.025033418089151382, 0.007079212926328182, 0.01383889652788639, -0.010941102169454098, 0.02140842005610466, -0.01953532174229622, 0.02421806938946247, 0.005495341960340738, 0.012307362630963326, -0.006726629566401243, 0.05147717148065567, -0.04136243462562561, -0.031159553676843643, 0.022444134578108788, -0.012208199128508568, 0.06945892423391342, -0.025165637955069542, 0.026972627267241478, -0.007145321927964687, -0.006131644826382399, -0.03821122273802757, -0.017199456691741943, 0.020515944808721542, -0.04799541085958481, -0.011172485537827015, -0.010285517200827599, -0.010682174004614353, -0.01097415667027235, -0.008847638964653015, -0.021353330463171005, -0.01608661562204361, -0.04372033476829529, 0.024835091084241867, -0.02048289030790329, -0.022521261125802994, 0.011034756898880005, -0.021937295794487, -0.02353493869304657, -0.01116146706044674, 0.002072804607450962, -0.011469976976513863, 0.011866633780300617, 0.013993152417242527, -0.022135624662041664, -0.043015170842409134, 0.006660520099103451, 0.02644375152885914, 0.02712688222527504, 0.025231746956706047, 0.0438966266810894, -0.029550893232226372, -0.003368823789060116, 0.02554025687277317, -0.004646938294172287, 0.02007521502673626, 0.06020360812544823, -0.0015356658259406686, 0.02206951379776001, 0.02979329414665699, -0.00785599835216999, -0.004996767267584801, 0.012252272106707096, 0.04270666092634201, 0.03528037294745445, 0.0346192792057991, -0.0019736404065042734, 0.05636926367878914, -0.01901746541261673, 0.0332970917224884, 0.011189012788236141, 0.023490866646170616, -0.03058660589158535, 0.011194521561264992, 0.02950681932270527, 0.020526962354779243, -0.014753409661352634, -0.02617931365966797, 0.025231746956706047, -0.0086438013240695, 0.017518986016511917, -0.030079767107963562, 0.015524686314165592, -0.02446047030389309, 0.005429232958704233, -0.015050902031362057, -0.004556037951260805, 0.010742774233222008, 0.02688448131084442, -0.010153299197554588, -0.02232293412089348, 0.04416106641292572, 0.024041777476668358, -0.009729096665978432, -0.03208508715033531, -0.027237065136432648, -0.03338523581624031, 0.07210329920053482, 0.004467892460525036, 0.015634868294000626, -0.006015953607857227, 0.025452110916376114, 0.014004169963300228, 0.011271649040281773, -0.010136771947145462, 0.0029749220702797174, -0.018036842346191406, -0.024636762216687202, -0.015370430424809456, -0.0077733611688017845, -0.04061319679021835, -0.02461472526192665, -0.015888286754488945, 0.009591368958353996, 0.011492013931274414, -0.0206040907651186, 0.05495893210172653, 0.0179707333445549, -0.03351745381951332, -0.017772404477000237, -0.026289496570825577, -0.029683111235499382, -0.008059835061430931, -0.01848858967423439, 0.016163744032382965, -0.027237065136432648, -0.015789123252034187, 0.01229634415358305, -0.024284178391098976, 0.024570653215050697, -0.02952885627746582, -0.012968456372618675, -0.00478466646745801, -0.006765193305909634, 0.0068423207849264145, 0.008616255596280098, 0.031071407720446587, 0.005258450284600258, 0.03100529871881008, -0.049405742436647415, 0.016979092732071877, 0.014841555617749691, -0.026553934440016747, 0.007272031623870134, -0.017772404477000237, 0.014720355160534382, 0.006407100707292557, -0.027038736268877983, 0.02167285792529583, 0.00030506725306622684, 0.005542169790714979, 0.02485712617635727, 0.016295962035655975, 0.054738566279411316, -0.022543298080563545, 0.01170136034488678, 0.004500946961343288, 0.007564014755189419, -0.00038770397077314556, 0.005569715052843094, -0.012142089195549488, 0.009277349337935448, 0.011392849497497082, 0.0003532719856593758, 0.028955908492207527, -0.004773647990077734, -0.010191862471401691, -0.013398167677223682, -0.005365877877920866, -0.023204391822218895, -0.008285708725452423, 0.0010481091449037194, 0.019612450152635574, -0.02260940708220005, -0.03686699643731117, -0.02311624586582184, -0.0014082675334066153, -0.03389207646250725, -0.004109799861907959, -0.02285180799663067, -3.499148806440644e-05, 0.04338978976011276, 0.011425903998315334, -0.032371558248996735, -0.0016912983264774084, -0.011392849497497082, 0.024504544213414192, 4.92807557748165e-05, 0.03439891338348389, 0.023755304515361786, -0.02739132009446621, 0.007878034375607967, 0.018708953633904457, -0.02858128771185875, -0.016857892274856567, 0.001240928191691637, -0.0005891309701837599, 0.034112438559532166, -0.05227048322558403, 0.0172765851020813, 0.03666866943240166, -0.028691470623016357, -0.04565954580903053, 0.01995401456952095, 0.018047859892249107, -0.011833579279482365, -0.0245926883071661, 0.023094210773706436, 0.02382141351699829, 0.013111693784594536, -0.020923618227243423, 0.042464256286621094, 0.05266713723540306, 0.009547295980155468, -0.02048289030790329, -0.03644830361008644, -0.0002506647433619946, -0.008809074759483337, -0.02432825230062008, 0.027060773223638535, 0.013276967220008373, 0.041692983359098434, -0.0192819032818079, -0.041450582444667816, -7.024121441645548e-05, 0.004759875126183033, 0.00949771422892809, -0.022653480991721153, -0.0033440326806157827, 0.0035781702026724815, -0.009156148880720139, -0.0079771988093853, 0.06099691987037659, -0.0036552976816892624, -0.023226428776979446, 0.00608757184818387, -0.02567247487604618, -0.04213371127843857, 0.008384873159229755, 0.04398477450013161, -0.020174378529191017, 0.011260630562901497, -0.02739132009446621, -0.0006710790912620723, 0.011800523847341537, -0.004291600547730923, 0.011469976976513863, 0.033319126814603806, 0.03790270909667015, -0.00851709209382534, -0.03799085691571236, -0.0002257015585200861, 0.005112458486109972, 0.002618206897750497, -0.007007594220340252, 0.009128603152930737, -0.0312476996332407, -0.0025534748565405607, 0.010401208885014057, -0.020813437178730965, -0.01570097729563713, -0.006032480858266354, 0.007872525602579117, -0.002784857526421547, 0.011211048811674118, 0.012571800500154495, -0.013706677593290806, -0.042904987931251526, -0.02139740251004696, -0.01662650890648365, 0.010241445153951645, -0.010930083692073822, 0.013133729808032513, -0.03232748806476593, 0.011001702398061752, -0.0070957401767373085, -0.005313541274517775, -0.004365973640233278, 0.024791017174720764, -0.003922489937394857, 0.00910656712949276, -0.013464276678860188, 0.0064621916972100735, 0.005379650741815567, -0.016593454405665398, -0.008456491865217686, -0.013541404157876968, -0.011271649040281773, -0.022300897166132927, 0.031159553676843643, 0.05376896262168884, 0.005470551084727049, -0.016384107992053032, -0.03098326176404953, -0.0232705008238554, 0.023446792736649513, 0.039026569575071335, -0.011910706758499146, 0.02232293412089348, -0.03058660589158535, 0.0332309827208519, -0.02139740251004696, -0.023182354867458344, -0.010709719732403755, 0.007189394906163216, 0.006104099564254284, 0.00969604216516018, -0.0452188141644001, -0.03164435550570488, -0.016527345404028893, 0.018323317170143127, 0.0004214473010506481, 0.017287602648139, -0.0045092105865478516, -0.022267842665314674, 0.01584421470761299, 0.018852191045880318, -0.01912764646112919, -0.0023937104269862175, 0.005801097955554724, -0.016152724623680115, -0.028493141755461693, 0.042772769927978516, 0.0070957401767373085, 0.015061920508742332, 0.029617002233862877, -0.029462747275829315, 0.027699830010533333, 0.027501501142978668, -0.009464659728109837, -0.0014833292225375772, 0.027082808315753937, 0.035853318870067596, -0.015656905248761177, -0.0006845075404271483, -0.004999521654099226, -0.016979092732071877, -0.006809266284108162, -0.0398639552295208, 0.02701669931411743, -0.020526962354779243, 0.040767449885606766, 0.018158042803406715, -0.035324446856975555, -0.0008174149552360177, -0.021077873185276985, 0.03241563215851784, -0.003834343980997801, -0.009662987664341927, 0.018576735630631447, 0.0047543663531541824, -0.010357135906815529, -0.0038839259650558233, 0.024945272132754326, 0.004930657800287008, 0.059366222470998764, 0.052182335406541824, 0.018147025257349014, 0.004936167038977146, -0.018808118999004364, -0.01170136034488678, -0.006175717804580927, -0.007475868798792362, -0.050199054181575775, 0.035037972033023834, -0.0109686478972435, 0.0018207625253126025, -0.005652351770550013, 0.0024295197799801826, -6.008378477417864e-05, 0.0025603612884879112, -0.040348757058382034, -0.01456610020250082, -0.011216558516025543, 0.006991066969931126, -0.020912600681185722, -0.014466935768723488, 0.010682174004614353, -0.03241563215851784, -0.008170017041265965, 0.04570361599326134, 0.01302354782819748, -0.03162232041358948, -0.012681982479989529, 0.007938634604215622, 0.00018421103595755994, 0.028801653534173965, -0.03964358940720558, -0.04272869601845741, 0.010516900569200516, 0.010742774233222008, -0.007200413383543491, 0.0019901678897440434, 0.05024312809109688, 0.017111310735344887, 0.012604855000972748, 0.0011520936386659741, 0.0040436903946101665, 0.026267459616065025, -0.015436540357768536, 0.006765193305909634, 0.007586051244288683, -0.011304703541100025, 0.016582436859607697, 0.03867398574948311, 0.016549380496144295, 0.03937915340065956, 0.022675517946481705, 0.001816630712710321, 0.006952503230422735, -0.011943761259317398, -0.0009165789815597236, -0.0014351244317367673, -0.02128721959888935, -0.030498459935188293, 0.007046157959848642, -0.017662223428487778, 0.008875183761119843, 0.003412896767258644, -0.011866633780300617, 0.00771276094019413, 0.048083554953336716, -0.03470742329955101, -0.0040712361223995686, 0.03338523581624031, -0.007949653081595898, -0.014665263704955578, -0.0032366050872951746, -0.007944143377244473, -0.004779157228767872, 0.010764810256659985, 0.026774298399686813, 0.018863210454583168, -0.027170954272150993, 0.0013008398236706853, 0.026377642527222633, 0.04883279651403427, 0.0186097901314497, 0.016317998990416527, -0.02844906970858574, -0.008070853538811207, 0.04601212963461876, 0.010935593396425247, 0.014455917291343212, 0.012527727521955967, -0.007729288190603256, -0.022587371990084648, 0.023028099909424782, -0.03514815494418144, -0.018158042803406715, 0.008506073616445065, -0.004500946961343288, -0.0013442240888252854, 0.02063714526593685, 0.004569810815155506, 0.029594965279102325, 0.011282667517662048, -0.010665646754205227, -0.007332631852477789, 0.029484782367944717, -0.03948933631181717, 0.07959569245576859, 0.0028399487491697073, 0.02289588190615177, 0.0024694607127457857, 0.011304703541100025, 0.023755304515361786, -0.00484802108258009, 0.002268378157168627, -0.02472490817308426, -0.01584421470761299, -0.02820666879415512, 0.009200221858918667, 0.01636207103729248, -0.023579012602567673, 0.030410313978791237, 0.0009275972261093557, 0.03909267857670784, -0.033054690808057785, 0.030013658106327057, 0.02472490817308426, 0.01686890982091427, -0.01889626495540142, 0.01741982065141201, -0.02271958999335766, 0.03417854756116867, -0.010803374461829662, 0.024548616260290146, -0.01966753974556923, -0.022917918860912323, -0.002432274166494608, -0.009596878662705421, -0.0399300642311573, -0.041538726538419724, 0.01714436523616314, -0.011844596825540066, 0.0013311399379745126, -0.018918300047516823, -0.0005295636947266757, 0.009866825304925442, 0.01714436523616314, 0.008682365529239178, 0.0166044719517231, -0.015128029510378838, 0.04645285755395889, -0.023204391822218895, -0.031049372628331184, -0.02098972722887993, -0.005153777077794075, -0.0006573062855750322, 0.016857892274856567, -0.04200149327516556, 0.054738566279411316, 0.004776402842253447, -0.008891711942851543, 0.02167285792529583, -0.009205731563270092, 0.022807735949754715, -0.029837366193532944, 0.008186545222997665, 0.04896501451730728, -0.030300132930278778, -0.03153417259454727, 0.004704784136265516, -0.01609763316810131, -0.009635441936552525, 0.006324463989585638, 0.014907664619386196, -0.014940720051527023, -0.008886202238500118, -0.011029248125851154, 0.019491247832775116, 0.0625835433602333, 0.00518958643078804, -0.0465850755572319, 0.026421714574098587, -0.0006851961952634156, -0.002903303597122431, -0.019204774871468544, -0.010566482320427895, -0.03911471739411354, -0.04477808624505997, -0.0029831856954842806, 0.011679323390126228, -0.03788067400455475, -0.07505618035793304, -0.02406381443142891, -0.02684040740132332, 0.003288941690698266, 0.004021653905510902, 0.03259192407131195, -0.03353949263691902, -0.002663657069206238, 0.01650530844926834, 0.004589092917740345, 0.06663825362920761, -0.03402429446578026, 0.0030052221845835447, 0.006340991239994764, 0.01542552188038826, -0.0059388261288404465, 0.02179405838251114, 0.04896501451730728, 0.010759301483631134, 0.025606365874409676, -0.004247527569532394, -0.012626891024410725, 0.03373781964182854, 0.008098399266600609, 0.00016234672511927783, -0.0032448687124997377, 0.03574313968420029, 0.008489546366035938, 0.01030755415558815, -0.005352105014026165, -0.005674388259649277, -0.028669433668255806, 0.007371195591986179, -0.03283432498574257, -0.004600110929459333, -0.01282521989196539, -0.013034566305577755, 0.04640878364443779, -0.010081680491566658, -0.01283623743802309, 0.009431605227291584, -0.012715036980807781, -0.0070406487211585045, 0.008296727202832699, 0.021628785878419876, -0.028823688626289368, -0.0412302166223526, 0.00671010185033083, 0.0006015264661982656, 0.02032863348722458, -0.012109034694731236, -0.02143045701086521, -0.01822415180504322, 0.010483846068382263, 0.001969508593901992, 0.029462747275829315, -0.017596112564206123, -0.03129177168011665, 0.006401591468602419, 0.007723778951913118, 0.04175909236073494, 0.0022215505596250296, -0.027038736268877983, -0.003060313407331705, -0.0063189547508955, 0.009437114000320435, 0.015546722337603569, -0.021342311054468155, 0.006831302773207426, -0.013552422635257244, -0.01037917286157608, 0.013376130722463131, -0.030013658106327057, 0.021243147552013397, 0.011745433323085308, -0.018686918541789055, -0.006555846892297268, 0.02351290173828602, 0.011932742781937122, 0.019976051524281502, 0.011943761259317398, -0.007900070399045944, -0.002922585466876626, 0.022785698994994164, 0.026950590312480927, 0.03160028159618378, -0.012792165391147137, 0.0031952867284417152, -0.05795589089393616, 0.024306215345859528, -0.0492294505238533, -0.005701933987438679, 0.045395106077194214, 0.020802417770028114, 0.022267842665314674, -0.001315989880822599, -0.021232128143310547, -0.014599154703319073, 0.011117394082248211, 0.010516900569200516, 0.0319087952375412, -0.026906518265604973, 0.009679514914751053, -0.03578720986843109, 0.029352564364671707, 0.015403485856950283, -0.015249229967594147, 0.026553934440016747, 0.001625188859179616, 0.004332919139415026, 0.04294906184077263, -0.03360560163855553, -0.05081607773900032, 0.01691298373043537, -0.006726629566401243, 0.016703637316823006, 0.0062638637609779835, -0.01290234737098217, 0.008098399266600609, -0.059101786464452744, -0.00810390803962946, -0.022653480991721153, 0.006555846892297268, -0.007833961397409439, -0.009668496437370777, -0.020295578986406326, 0.02113296464085579, 0.007861507125198841, 0.0023992196656763554, 0.01508395653218031, 0.021915258839726448, -0.03946730121970177, 0.033451344817876816, 0.002570002106949687, -0.01873099058866501, 0.0001264513994101435, -0.01822415180504322, 0.0598069503903389, 0.019909940659999847, -0.016835855320096016, 0.013772787526249886, 0.016130689531564713, 0.006721120327711105, 0.012064961716532707, 0.007558505516499281, 0.035037972033023834, -0.028691470623016357, 0.02648782543838024, 0.009855806827545166, -0.01324391271919012, 0.045174743980169296, -0.00701310345903039, 0.033032651990652084, -0.017199456691741943, -0.0012822465505450964, -0.02432825230062008, 0.018642844632267952, -0.002059031743556261, -0.02913220040500164, 0.01780545897781849, -0.02646578848361969, 0.014676282182335854, 0.0037158981431275606, 0.0116352504119277, 0.020317615941166878, -0.006473210174590349, -0.004294354934245348, -0.05024312809109688, 0.02274162694811821, -0.002349637448787689, -0.024636762216687202, 0.024526579305529594, -0.0016017751768231392, 0.0069965762086212635, -0.013321040198206902, 0.0057570249773561954, -0.013993152417242527, 0.011293685995042324, 0.0034459515009075403, -0.03393614664673805, -0.008037799037992954, 0.029044054448604584, -0.008946802467107773, 0.0033357690554112196, 0.012946420349180698, -0.013067620806396008, 0.006886393763124943, 0.03208508715033531, -0.03375985473394394, 0.011822560802102089, 0.042618513107299805, 0.03693310543894768, -0.018257206305861473, -0.014852574095129967, -0.018697936087846756, -0.021342311054468155, 0.006875375285744667, 0.017518986016511917, 0.009486695751547813, 0.008495055139064789, -0.012064961716532707, 0.0023110737092792988, 0.040348757058382034, -0.008709910325706005, -0.0078009068965911865, -0.054077472537755966, -0.011547105386853218, 0.010930083692073822, 0.04189131036400795, -0.012340417131781578, -0.030520496889948845, -0.00398859940469265, -0.00418692734092474, -0.014202498830854893, -0.015139047987759113, -0.014830537140369415, 0.013860933482646942, 0.005641333758831024, -0.030806971713900566, 0.001853817142546177, -0.011855615302920341, -0.020571034401655197, 0.026686152443289757, 0.03909267857670784, -0.021099910140037537, -0.03309876099228859, -0.007569523993879557, 0.0035891884472221136, -0.009921915829181671, -0.05368081480264664, -0.03268006816506386, 0.005900261923670769, 0.005993917118757963, 0.00339086027815938, 0.03761623799800873, 0.034509096294641495, -0.011403867974877357, 0.0015756068751215935, 0.017728332430124283, 0.020383724942803383, 0.034663353115320206, 0.012351435609161854, 0.004266809672117233, -0.041582800447940826, -0.008489546366035938, -0.00904045719653368, 0.012307362630963326, 0.02382141351699829, -0.009205731563270092, -0.019072556868195534, 0.021584711968898773, 0.03005773201584816, 0.035831283777952194, -0.0030823498964309692, 0.01383889652788639, 0.029044054448604584, -0.028559252619743347, -0.0219262782484293, -0.003914226312190294, -0.051389023661613464, 0.010616064071655273, 0.006952503230422735, -0.00944813247770071, 0.0003269315348006785, 0.014918683096766472, 0.01743084006011486, -0.012450600042939186, 0.006368536967784166, 0.006142663303762674, -0.009459150023758411, 0.023380683735013008, -0.020912600681185722, 0.0023234691470861435, 0.013310021720826626, 0.02073630876839161, 0.019480230286717415, -0.00844547338783741, 0.028647398576140404, 0.006853338796645403, 0.047819118946790695, -0.016736691817641258, -0.01422453485429287, 0.010753792710602283, -0.04059115797281265, -0.031049372628331184, 0.031313810497522354, 0.01050588209182024, 0.008627274073660374, -0.008511582389473915, -0.02222377061843872, -0.018554698675870895, 0.020537979900836945, 0.0004500258364714682, 0.018543681129813194, -0.0008318763575516641, 0.0023882014211267233, 0.0013662604615092278, -0.010753792710602283, 0.012957438826560974, -0.009062494151294231, -0.010594028048217297, -0.008307745680212975, -0.0008876561769284308, -0.01674770936369896, 0.010202880948781967, -0.016549380496144295, 0.017452877014875412, -0.00977316964417696, 0.014709336683154106, 0.0013573082396760583, 0.014654246158897877, 0.005712951999157667, 0.019513284787535667, -0.011734414845705032, 0.02498934604227543, 0.01849960722029209, 0.005602770019322634, 0.048744648694992065, -0.007150831166654825, -0.009585860185325146, -0.023380683735013008, 0.01650530844926834, -0.021166019141674042, 0.017320657148957253, -0.024438433349132538, 0.02366715855896473, -0.007949653081595898, -0.0024157469160854816, 0.013519368134438992, 0.02926441840827465, 0.010522409342229366, -0.00744281429797411, -0.01887422800064087, 0.012075980193912983, 0.031864721328020096, 0.01209801621735096, 0.03296654298901558, -0.033848002552986145, -0.010924574919044971, 0.013310021720826626, 0.01663752645254135, -0.004657956771552563, 0.005641333758831024, 0.0033633147832006216, 0.02939663827419281, -0.00484802108258009, -0.023204391822218895, 0.0012911987723782659, 0.008285708725452423, -0.016703637316823006, 0.013012529350817204, -0.007602578494697809, -0.009431605227291584, 0.009872334077954292, -0.005872716661542654, 0.02606913261115551, -0.02233395166695118, 0.004803948104381561, -0.015855232253670692, 0.017331676557660103, 0.029352564364671707, 0.033583566546440125, 0.021628785878419876, -0.004299864172935486, -0.009861315600574017, -0.012637909501791, 0.02063714526593685, 0.002250473480671644, 0.01849960722029209, 0.007690724451094866, 0.02209155075252056, -0.003501042490825057, 0.00552288768813014, 0.001138320891186595, -0.009861315600574017, -0.03314283490180969, 0.019491247832775116, -0.018158042803406715, 0.0039004534482955933, 0.03254785016179085, 0.002845457987859845, -0.024306215345859528, -0.010274499654769897, 0.003275168826803565, 0.05028720200061798, -0.02551821991801262, -0.037968821823596954, -0.01556875929236412, -0.03673477843403816, 0.04418310150504112, -0.0083242729306221, 0.010660137049853802, 0.020119287073612213, -0.04632063955068588, 0.024702871218323708, -0.021199073642492294, 0.007453832309693098, 0.007569523993879557, 0.03750605508685112], [0.027448564767837524, 0.0067850383929908276, 0.035555362701416016, 0.06921619921922684, -0.031127464026212692, 0.00436181016266346, -0.04247257858514786, 0.05119619891047478, 0.020960921421647072, 0.01287615206092596, -0.03725162148475647, 0.014880822971463203, 0.002877583261579275, 0.05000661313533783, -0.036899153143167496, -0.0062948851846158504, -0.004896021913737059, -0.0023516325745731592, 0.02848394215106964, 0.0003459295548964292, -0.006471120286732912, 0.02027801238000393, -0.023505311459302902, 0.019451912492513657, -0.03394722193479538, -0.02052033506333828, 0.0282856784760952, -0.019407853484153748, 0.05445653945207596, 0.009593780152499676, 0.05701194331049919, -0.0441027469933033, 0.03813279792666435, 0.008288540877401829, 0.009549721144139767, -0.001602634903974831, -0.0017857537604868412, -0.0002449043677188456, -0.03753800317645073, -0.028946559876203537, 0.004025863017886877, -0.029431205242872238, 0.020322071388363838, -0.010871482081711292, -0.017953915521502495, 0.07445918768644333, -0.044807687401771545, -0.04291316494345665, 0.0015957506839185953, 0.010574085637927055, -0.0072586690075695515, 0.05097590386867523, 0.02047627605497837, -0.10230427980422974, -0.01745825633406639, 0.01950698532164097, -0.010921048000454903, 0.015706922858953476, 0.01658809743821621, -0.018008990213274956, 0.031568050384521484, -0.03159008175134659, -0.006124157924205065, 0.0230206660926342, -0.020002644509077072, -0.011119311675429344, 0.03568753972649574, 0.027206240221858025, -0.03927832096815109, 0.02412213198840618, 0.019958587363362312, 0.022315725684165955, -0.030532673001289368, 0.030951229855418205, 0.0023846765980124474, -0.0022332249209284782, -0.052473898977041245, 0.03863947093486786, 0.04355201497673988, -0.06256333738565445, -0.03264749050140381, 0.03436577692627907, -0.005281535442918539, 0.014726617373526096, 0.01442922092974186, 0.02172093465924263, -0.028373796492815018, 0.03916817530989647, 0.013966605067253113, -0.03568753972649574, 0.010199586860835552, 0.030466584488749504, -0.033484604209661484, -0.00949464738368988, -0.046437859535217285, -0.01203903742134571, 0.01071176864206791, -0.02791118063032627, -0.008354629389941692, 0.0306868776679039, 0.028924530372023582, -0.02196325734257698, -0.06313610076904297, 0.031237611547112465, -0.012226286344230175, -0.03985108435153961, -0.0460413321852684, 0.03407939523458481, 0.04491783306002617, -0.0016549545107409358, 0.07846852391958237, -0.07489977031946182, -0.007038375828415155, 0.04286910593509674, -0.013526017777621746, -0.008525356650352478, -0.009632331319153309, -0.019198574125766754, -0.0044664498418569565, -0.005471538752317429, -0.001950973877683282, -0.015431555919349194, -0.013801384717226028, -0.0541921891272068, -0.010970613919198513, 0.04487377405166626, -0.006118650548160076, 0.03189849108457565, -0.05040314048528671, -0.037405826151371, 0.01720491796731949, -0.019782351329922676, 0.022668195888400078, -0.039630793035030365, 0.030136143788695335, -0.0004932507872581482, -0.002538881963118911, 0.016103452071547508, 0.006041547749191523, -0.019429882988333702, 0.01774463802576065, 0.01734810881316662, 0.04634974151849747, -0.01481473445892334, -0.052385780960321426, 0.03941049799323082, 0.015112130902707577, 0.009571750648319721, 0.03161210939288139, 0.02526765875518322, 0.020410187542438507, -0.00788650568574667, 0.007875490933656693, 0.009709433652460575, 0.00590937165543437, 0.009263339452445507, 0.029166853055357933, 0.06436974555253983, -0.0008687822846695781, 0.026258978992700577, -0.01273296121507883, 0.012810064479708672, 0.0032548357266932726, -0.01287615206092596, 0.06837908923625946, -0.032052695751190186, -0.02559809945523739, 0.013768340460956097, -0.021798036992549896, -0.021731948480010033, 0.008613473735749722, -0.017436226829886436, 0.01933075115084648, -0.02502533607184887, -0.05110808089375496, -0.023218929767608643, 0.04251663759350777, -0.00012193586735520512, -0.0237256046384573, 0.01846059039235115, 0.058994587510824203, 0.054544657468795776, -0.04405869171023369, -0.04152531549334526, 0.028307707980275154, 0.055734243243932724, -0.026192890480160713, -0.018581751734018326, 0.03198660910129547, 0.032206904143095016, 0.01157642062753439, -0.013845443725585938, -0.005391682032495737, 0.020817730575799942, -0.007660704664885998, -0.013603120110929012, -0.02047627605497837, -0.008112306706607342, 0.039344411343336105, -0.0613737553358078, 0.018449576571583748, -0.016312729567289352, 0.0076496899127960205, -0.004100211896002293, -0.02795523963868618, 0.054588716477155685, -0.012964269146323204, -0.0065041640773415565, 0.032581400126218796, -0.013658193871378899, 0.022976607084274292, 0.014043707400560379, -0.03551130369305611, 0.03586377203464508, 0.024805042892694473, -0.022381814196705818, 0.03247125446796417, -0.01136714220046997, -0.0001246895408257842, -0.008910870179533958, -0.04784773662686348, 0.014010663144290447, -0.005903864279389381, -0.002151991706341505, -0.013735296204686165, -0.026016656309366226, -0.05432436615228653, -0.051416490226984024, -0.027867121621966362, -0.0187029130756855, -0.044080719351768494, 0.010535534471273422, 0.030246291309595108, -0.03414548560976982, 0.015211262740194798, -0.01931973546743393, 0.010177557356655598, -0.03427766263484955, -0.053002603352069855, 0.04238446056842804, 0.03623827174305916, -0.010860467329621315, 0.015806054696440697, -0.026060715317726135, 0.003108891425654292, -0.01807507686316967, 0.00010136940545635298, -0.008707098662853241, 0.026347097009420395, 0.024871131405234337, 0.021831080317497253, 0.029717586934566498, -0.00894391443580389, -0.06886373460292816, -0.026192890480160713, 0.024540690705180168, -0.0009128410019911826, -0.04234040156006813, 0.04372825101017952, -0.033925190567970276, -0.01648896560072899, 0.002055613324046135, -0.031105434522032738, -0.03192052245140076, -0.03678900748491287, -0.04498392343521118, -0.01664317026734352, -0.027316387742757797, 0.00484370207414031, 0.03570956736803055, -0.031325727701187134, 0.051372431218624115, -0.007242147345095873, -0.018328415229916573, -0.06362074613571167, 0.006829096935689449, 0.008701590821146965, -0.0441247783601284, -0.018493635579943657, -0.06207869574427605, -0.04416883736848831, -0.009191744029521942, -0.01625765673816204, -0.05388377606868744, 0.016896506771445274, -0.013063401915133, -0.0032245453912764788, 0.02987179160118103, -0.0006880728178657591, 0.04319954663515091, 0.07657400518655777, 0.0017058973899111152, -0.015376483090221882, 0.027272328734397888, 0.05379566177725792, 0.013889501802623272, 0.0014553136425092816, 0.006950258277356625, -0.01308543048799038, -0.0007930564461275935, 0.030863111838698387, -0.02195224165916443, 0.0151011161506176, -0.05309072136878967, -0.011378156952559948, -0.014032692648470402, 0.011312068440020084, 0.03551130369305611, -0.021225273609161377, -0.00345860724337399, -0.056218888610601425, -0.01601533405482769, -0.06802661716938019, -0.0676300898194313, -0.004824426490813494, -0.007892012596130371, -0.02139049395918846, -0.01596026122570038, 0.0282856784760952, 0.023505311459302902, -0.008283033967018127, 0.018196238204836845, -0.016753317788243294, 0.004540798719972372, 0.01001784484833479, -0.03064281865954399, 0.05498524382710457, 0.048068031668663025, -0.03540115803480148, 0.03242719545960426, -0.04377231001853943, -0.049169499427080154, -0.02104903943836689, 0.0011207428760826588, -0.025443892925977707, -0.025774333626031876, -0.02967352792620659, 0.05309072136878967, -0.03822091221809387, -0.011840772815048695, -0.008712605573236942, -0.006399524863809347, 0.0008859927183948457, 0.022161521017551422, -0.01668722927570343, 0.04352998733520508, 0.03998326137661934, 0.04033572971820831, 0.0035742612089961767, 0.015839099884033203, 0.0022882982157170773, 0.03048861399292946, -0.01534343883395195, 0.010651187971234322, -0.058950528502464294, -0.02162180282175541, 0.06256333738565445, 0.05101996287703514, -0.019396837800741196, 0.025377806276082993, -0.003943252842873335, -0.025355776771903038, 0.024342427030205727, 0.00562023650854826, 0.04943384975194931, -0.015354453586041927, -0.03240516781806946, -0.021027009934186935, 0.03412345424294472, 0.0321187861263752, 0.02742653526365757, -0.004053399432450533, -0.015332424081861973, -0.04784773662686348, 0.08089175820350647, 0.016378818079829216, 0.02363748662173748, 0.012005993165075779, 0.007699256297200918, -0.0030538178980350494, -0.018449576571583748, -0.014737632125616074, 0.03251531347632408, 0.006570252124220133, 0.0034448388032615185, 0.058509938418865204, -0.02234877087175846, -0.01196193415671587, -0.014858793467283249, -0.0016508240951225162, 0.019308721646666527, 0.007748822215944529, 0.008459268137812614, 0.04824426397681236, -0.03696523979306221, -0.02843988500535488, 0.03040049597620964, 0.032008636742830276, -0.010854959487915039, 0.009869146160781384, -0.0321187861263752, -0.03784641623497009, 0.008932899683713913, 0.0029904835391789675, -0.014021677896380424, 0.030664848163723946, -0.006586774252355099, 0.01021610852330923, -0.030070055276155472, -0.014682558365166187, 0.025487951934337616, -0.005471538752317429, 0.026303038001060486, 0.03145790472626686, -0.00997378583997488, 0.0056505268439650536, -0.01234744768589735, -0.013415871188044548, -0.029739616438746452, -0.047010622918605804, 0.030048025771975517, 0.02641318552196026, -0.01397761981934309, 0.07371018826961517, -0.009274354204535484, 0.028087414801120758, 0.036128126084804535, 0.030598759651184082, 0.0022208334412425756, 0.013217606581747532, -0.035070717334747314, -0.0005300811026245356, -0.03150196373462677, 0.041745610535144806, -0.045953214168548584, -0.010100455023348331, -0.025245629251003265, -0.0030290349386632442, 0.0014704588102176785, 0.021599773317575455, 0.00571661489084363, -0.024871131405234337, -0.0022346016485244036, 0.008641010150313377, -0.020079748705029488, 0.000923855637665838, -0.0067409793846309185, 0.078644759953022, 0.01591620221734047, 0.024276338517665863, -0.017094772309064865, -0.01037582103163004, -0.01725999265909195, -0.03125964105129242, 0.03899193927645683, -0.039586734026670456, -0.011477288790047169, -0.027536680921912193, 0.00973146315664053, -0.0011744394432753325, 0.015574746765196323, 0.022668195888400078, -0.005309072323143482, 0.012699916958808899, 0.034211572259664536, 0.025201570242643356, 0.003992818761616945, -0.005477046128362417, -0.016896506771445274, -0.007390845101326704, -0.012149184010922909, -0.039873115718364716, 0.010865974240005016, 0.0029987446032464504, 0.00925232470035553, 0.00035315792774781585, 0.02550998143851757, -0.019209587946534157, -0.03469621762633324, -0.03674494847655296, 0.03361678123474121, 0.02445257268846035, -0.05317883938550949, -0.07996652275323868, 0.059038642793893814, -0.006085606757551432, 0.07089043408632278, 0.01974930800497532, -0.004681235644966364, -0.030620789155364037, -0.03678900748491287, 0.009378993883728981, 0.02291051857173443, -0.007831431925296783, 0.01026016753166914, 0.03277966380119324, -0.019628146663308144, -0.007308235391974449, 0.022998636588454247, 0.029210912063717842, 0.014968940056860447, -0.040688201785087585, 0.03198660910129547, -0.027602769434452057, -0.012259330600500107, -0.007170551922172308, -0.0049125440418720245, -0.02233775518834591, -0.017568401992321014, -0.021511655300855637, -0.01691853627562523, -0.010425387881696224, -0.00363208819180727, 0.007104463875293732, 0.023769663646817207, -0.026787683367729187, 0.023703575134277344, 0.02579636313021183, -0.03628233075141907, 0.019738292321562767, 0.03192052245140076, -0.017271006479859352, -0.011163370683789253, 0.0025994626339524984, -0.03493854030966759, 0.06873155385255814, 0.013889501802623272, -0.029651498422026634, 0.005242984276264906, 0.01562982052564621, -0.024276338517665863, -0.024342427030205727, -0.02243688702583313, -0.017282020300626755, 0.012832093052566051, -0.02449663169682026, -0.02219456434249878, 0.03145790472626686, 0.003970789257436991, -0.020388158038258553, 0.01624664105474949, -0.024342427030205727, 0.00020893456530757248, -0.024056045338511467, 0.015233292244374752, -0.0013362175086513162, 0.0004357679863460362, 0.04007137939333916, 0.027007976546883583, -0.011356127448379993, -0.03903599828481674, -0.018207253888249397, -0.00030634558061137795, 0.013636164367198944, 0.01292021106928587, 0.03390316292643547, 0.012898181565105915, -0.001106974552385509, 0.00043852164526470006, 0.028924530372023582, 0.02575230412185192, 0.031435877084732056, -0.009736970067024231, -0.010392343625426292, -0.0036375955678522587, 0.019484955817461014, 0.00624531926587224, -0.03590783104300499, -0.00935145653784275, -0.008503327146172523, 0.008448253385722637, -0.0037229591980576515, 0.03313213586807251, 0.026016656309366226, 0.02698594704270363, 0.0023929376620799303, 0.06837908923625946, -0.03471824899315834, 0.028373796492815018, 0.008277526125311852, -0.010777857154607773, 0.005565163213759661, -0.0024879390839487314, -0.01021610852330923, -0.02205137349665165, 0.00643807603046298, -0.02656739018857479, -0.005011675879359245, -0.03874961659312248, -0.009406530298292637, 0.011422215029597282, -0.01883509010076523, 0.01898929476737976, -0.019694235175848007, -0.01745825633406639, 0.02987179160118103, -0.01667621359229088, 0.0177336223423481, -0.027074065059423447, 0.02335110493004322, 0.0035302024334669113, 0.028704237192869186, -0.007093449123203754, 0.04771555960178375, -0.03154602274298668, -0.010640173219144344, 0.016433890908956528, -0.001872494351118803, 0.07648588716983795, -0.0335727222263813, 0.018570737913250923, -0.004042384680360556, -0.0037422350142151117, -0.043221574276685715, 0.013261665590107441, -0.0034668680746108294, -0.0681147351861, 0.007875490933656693, 0.002684826496988535, -0.010337269864976406, -0.0015585761284455657, 0.002675188472494483, -0.01630171574652195, -0.013437900692224503, -0.05661541596055031, 0.023989956825971603, -0.02445257268846035, -0.03859541192650795, -0.004678482189774513, -0.03150196373462677, -0.02995990961790085, -0.04262678325176239, -0.0048547168262302876, -0.04582103714346886, 0.004964863415807486, 0.004739062860608101, -0.04132705181837082, -0.005441248416900635, 0.02056439407169819, 0.017381154000759125, 0.025333747267723083, 0.013437900692224503, 0.036700889468193054, -0.04251663759350777, 0.0215777438133955, 0.020971937105059624, 0.013867472298443317, -0.004436159506440163, 0.03575362637639046, -0.006118650548160076, 0.050843726843595505, 0.015607791021466255, -0.016764331609010696, -0.017755651846528053, 0.006597789004445076, 0.020322071388363838, -0.01467154361307621, 0.028748294338583946, -0.009582765400409698, 0.03998326137661934, -0.003546724561601877, 0.0541921891272068, 0.021324405446648598, 0.03672291710972786, -0.008035203441977501, 0.009246817789971828, 0.008767679333686829, 0.013801384717226028, 0.0005311137647368014, -0.019683219492435455, 0.046393800526857376, 0.0015172711573541164, 0.008817245252430439, -0.026633478701114655, 0.004053399432450533, -0.035070717334747314, 0.01879103109240532, 0.013503988273441792, -0.013217606581747532, 0.007567080203443766, 0.01774463802576065, 0.0003793177893385291, -0.016477949917316437, 0.03035643696784973, 0.019209587946534157, -0.029717586934566498, -0.01653302274644375, -0.01706172712147236, -0.011994978412985802, 0.06071287393569946, -0.004860224202275276, 0.013184563256800175, -0.010408865287899971, 0.014605456031858921, 0.020145835354924202, 0.027977267280220985, 0.014484294690191746, 0.02229369804263115, -0.02694188803434372, -0.004970370791852474, -0.010419880039989948, -0.019738292321562767, -0.022646166384220123, -0.03896991163492203, -0.017557388171553612, 0.0019812642131000757, -0.010243645869195461, -0.007093449123203754, 0.05339913070201874, 0.003442085115239024, -0.03639247640967369, -0.015695909038186073, -0.022525005042552948, -0.021214259788393974, 0.00392122333869338, -0.021456582471728325, 0.004502247553318739, -0.004612394142895937, -0.0018614795990288258, 0.022469932213425636, -0.024827072396874428, -0.0056092217564582825, -0.017854783684015274, 0.00025918902247212827, -0.014043707400560379, 0.004094704519957304, 0.010348284617066383, -0.018735958263278008, 0.0070218537002801895, -0.011444244533777237, 0.04247257858514786, -0.02954135090112686, 0.007324757054448128, 0.00798563752323389, -0.03136978670954704, 0.01050249021500349, -0.011631494387984276, 0.007787373382598162, 0.014792704954743385, -0.021511655300855637, 0.007671719416975975, 0.010177557356655598, 0.018196238204836845, -0.0019248140743002295, -0.020542364567518234, 0.04018152505159378, 0.0007923680241219699, 0.01855972222983837, 0.024871131405234337, -0.00779288075864315, 0.01851566508412361, 0.005578931421041489, -0.02669956535100937, 0.006768516264855862, 0.04004934802651405, -0.014517338015139103, 0.028880471363663673, -0.004389347042888403, 0.007737807463854551, 0.01026016753166914, 0.002794973086565733, -0.0023943143896758556, -0.016037363559007645, 0.01687447912991047, 0.024584749713540077, -0.020300041884183884, -0.04943384975194931, -0.019253646954894066, -0.005799225065857172, -0.031237611547112465, 0.011262502521276474, -0.008106798864901066, -0.012854122556746006, 0.04035776108503342, 0.023747634142637253, -0.021027009934186935, -0.003778032725676894, -0.019815396517515182, 0.015365468338131905, 0.002995990915223956, 0.04679032787680626, 0.011730626225471497, -0.013988633640110493, 0.008035203441977501, -0.00040272396290674806, -0.04679032787680626, -0.022425873205065727, 0.002357139950618148, -0.00025092801661230624, 0.03709741681814194, -0.05476495251059532, -0.013537032529711723, 0.02791118063032627, -0.011708596721291542, -0.03667885810136795, 0.007060404866933823, 0.01292021106928587, -0.022998636588454247, -0.035026658326387405, 0.021731948480010033, 0.025487951934337616, 0.01817420870065689, -0.01951799914240837, 0.025377806276082993, 0.06340045481920242, 0.012149184010922909, -0.03960876166820526, -0.016048377379775047, 0.0029767153318971395, -0.005342116113752127, -0.02762479893863201, 0.03313213586807251, 0.01663215458393097, 0.06560339033603668, 0.0005345558165572584, -0.06243116408586502, -0.01597127504646778, 0.02033308520913124, 0.00836564414203167, 0.0014140085550025105, 0.0038028156850486994, 0.012160198763012886, -0.013129489496350288, -0.012005993165075779, 0.031083405017852783, 0.007401859853416681, -0.01937480829656124, 0.009081597439944744, -0.028175532817840576, -0.031435877084732056, 0.03317619487643242, 0.034167513251304626, -0.0038138304371386766, 0.013702252879738808, -0.03927832096815109, 0.007996652275323868, -0.0010945830726996064, -0.00019654305651783943, 0.002598085906356573, 0.015993304550647736, 0.024805042892694473, -0.008249989710748196, -0.03709741681814194, 0.009775522165000439, -0.008013173937797546, 0.023196900263428688, 0.018824074417352676, 0.007748822215944529, -0.02258007787168026, 0.01683042012155056, 0.01186280231922865, -0.0036568711511790752, -0.0019165530102327466, 0.012766005471348763, 0.020079748705029488, -0.03048861399292946, 0.0155857615172863, 0.004180068150162697, -0.025664186105132103, -0.02425430901348591, -0.03330836817622185, -0.001067046425305307, -0.006625325419008732, -0.009103626944124699, -0.001776115968823433, -0.03333039954304695, 0.0005304253427311778, 0.014109795913100243, -0.008134335279464722, 0.01989249885082245, 0.04952196776866913, -0.0155857615172863, 0.016037363559007645, -0.018614796921610832, 0.012435565702617168, -0.010133498348295689, -0.022139491513371468, -0.000549356802366674, -0.007523021195083857, 0.001418139087036252, -0.005452262703329325, 0.004097457975149155, 0.05855399742722511, -0.011218443512916565, -0.03073093667626381, -0.0068566338159143925, -0.03374895825982094, 0.023130811750888824, 0.023571399971842766, -0.04524827376008034, 0.030378466472029686, -0.020156851038336754, 0.027867121621966362, -0.03218487277626991, -0.014605456031858921, 0.021709918975830078, -0.021038023754954338, -0.0005101170390844345, 0.01787681318819523, -0.02152266912162304, -0.04524827376008034, -0.0282856784760952, -0.005077763926237822, -0.002150614745914936, 0.009582765400409698, 0.009423051960766315, -0.021588757634162903, 0.0037862935569137335, 0.04469754174351692, -0.04084240645170212, 0.009356964379549026, 0.001254984294064343, -0.011785699985921383, -0.03764814883470535, 0.05366348475217819, -0.02995990961790085, 0.01220425684005022, 0.00372846657410264, -0.03778032585978508, 0.021875139325857162, 0.03192052245140076, -0.0017141584539785981, -0.004683989565819502, 0.007154029794037342, 0.0373837985098362, -0.017524344846606255, 0.013459930196404457, 0.01568489335477352, -0.01951799914240837, -0.00449674017727375, -0.03456404060125351, 0.03335242718458176, -0.003185993991792202, 0.035885803401470184, 0.01050249021500349, -0.03035643696784973, -0.0016590850427746773, -0.021643832325935364, -0.001799522084183991, -0.04035776108503342, -0.001736187725327909, -0.008552893064916134, -0.007054897956550121, -0.021709918975830078, 0.0030703400261700153, 0.023130811750888824, 0.024827072396874428, 0.0633123368024826, 0.03731771185994148, -0.009285368956625462, 0.010111469775438309, -0.0006918591097928584, -0.010028859600424767, 0.02694188803434372, 0.0016769838985055685, -0.03465215861797333, 0.01581707037985325, 0.0218090508133173, 0.005171388853341341, 0.028924530372023582, 0.0067409793846309185, 0.0037146983668208122, -0.006069084629416466, -0.012655858881771564, -0.010574085637927055, 0.001736187725327909, 0.01990351267158985, -0.050711553543806076, 0.008145350031554699, -0.01320659276098013, -0.027404505759477615, -0.00019878041348420084, 0.03784641623497009, 0.01664317026734352, -0.008090277202427387, 0.02698594704270363, 0.002508591627702117, 0.01112481951713562, 0.023527340963482857, -0.010414373129606247, -0.040533993393182755, 0.015365468338131905, 0.0029519321396946907, 0.019617130979895592, 0.0014085012953728437, 0.030003968626260757, 0.013790369965136051, 0.007622153498232365, 0.010755827650427818, 0.0007744691683910787, 0.023218929767608643, -0.009428559802472591, 0.009296383708715439, 0.00726417638361454, -0.030664848163723946, 0.005229215603321791, 0.04165749251842499, 0.0369211807847023, 0.025201570242643356, 0.02465083636343479, -0.011686567217111588, 0.01436313334852457, -0.011025686748325825, 0.008205930702388287, -0.0007834185962565243, -0.0017595939571037889, 0.003758756909519434, -0.003577014897018671, 0.0065206862054765224, -0.011488303542137146, -0.011928889900445938, -0.008492312394082546, 0.0070714196190238, 0.04983037710189819, -0.0402696430683136, 0.011917876079678535, 0.022525005042552948, -0.029321057721972466, -0.025884481146931648, 0.000251272227615118, -0.010843944735825062, -0.0017802463844418526, 0.027272328734397888, 0.015993304550647736, 0.02722826972603798, -0.02057540789246559, 0.001521401689387858, 0.03965282067656517, 0.027734944596886635, 0.01918756030499935, 0.011455259285867214, -0.02738247625529766, 0.0042268806137144566, 0.04670220986008644, 0.011829758062958717, 0.012314403429627419, -0.02881438285112381, -0.015090101398527622, -0.010006830096244812, 0.03383707255125046, -0.011245980858802795, -0.01913248561322689, -0.005127329844981432, 0.014946910552680492, -0.00372846657410264, 0.0014429220464080572, -0.01980438083410263, 0.010447416454553604, -0.0075505580753088, 0.0054825530387461185, 0.016995640471577644, 0.021225273609161377, -0.03394722193479538, 0.06776226311922073, -0.00968740414828062, 0.01253469754010439, 0.012138169258832932, 0.012766005471348763, -0.007170551922172308, 0.006537208333611488, -0.014946910552680492, -0.012193242087960243, -0.028660178184509277, -0.014737632125616074, 0.026963917538523674, -0.011543376371264458, -0.03890382498502731, 0.03808873891830444, -0.00039859345997683704, 0.018207253888249397, -0.03280169516801834, -0.005212693940848112, -0.02070758491754532, -0.0014442988904193044, -0.008090277202427387, 0.012446579523384571, -0.013107459992170334, 0.04031370207667351, -0.008305063471198082, 0.03297793120145798, -0.0028720758855342865, -0.019628146663308144, 0.0024177206214517355, 0.004915297497063875, -0.02445257268846035, -0.04251663759350777, 0.040005289018154144, 0.021643832325935364, -0.02550998143851757, 0.005581685341894627, -0.0100674107670784, -0.013382826931774616, 0.015255321748554707, 0.026633478701114655, 0.004626162350177765, -0.020828746259212494, 0.041877783834934235, 0.0020982951391488314, -0.026545360684394836, -0.01898929476737976, -0.02258007787168026, 0.0037394813261926174, -0.012270345352590084, 0.006201260723173618, 0.04324360564351082, 0.009180729277431965, 0.006278363522142172, 0.03015817329287529, -0.01344891544431448, 0.020344100892543793, -0.019771337509155273, 0.012942240573465824, 0.03568753972649574, -0.009257832542061806, -0.03418954461812973, -0.010458431206643581, -0.0020969181787222624, -0.02162180282175541, 0.01253469754010439, -6.643224332947284e-05, -0.005113561637699604, -0.028109444305300713, -0.022381814196705818, 0.024011986330151558, 0.04767150431871414, 0.016180554404854774, -0.0321187861263752, 0.006845619063824415, -0.006625325419008732, 0.008349121548235416, -0.017634490504860878, 0.011334097944200039, -0.04608539119362831, -0.05877429246902466, 0.008987972512841225, 0.018581751734018326, -0.02162180282175541, -0.07089043408632278, -0.023285018280148506, -0.019936557859182358, -0.009814073331654072, 0.019341764971613884, 0.015563732013106346, -0.02718421258032322, 0.01923161745071411, 0.010276689194142818, -0.000980305834673345, 0.06802661716938019, -0.03626030310988426, 0.0034117947798222303, 0.008327092044055462, -0.00156132981646806, -0.005471538752317429, 0.010243645869195461, 0.06961272656917572, 0.016048377379775047, 0.031193552538752556, -0.014297044835984707, -0.013030357658863068, 0.04214213788509369, 0.012578755617141724, -0.005113561637699604, 0.001351362676359713, 0.051945194602012634, -0.0008384919492527843, 0.0024246047250926495, -0.0036238273605704308, -0.00028638148796744645, -0.04516015574336052, 0.014517338015139103, -0.043221574276685715, -0.014021677896380424, -0.04167952015995979, -0.02445257268846035, 0.051857076585292816, 0.0047996435314416885, 0.011444244533777237, 0.02579636313021183, -0.00571661489084363, 7.822138286428526e-05, -0.0028156256303191185, 0.018680885434150696, -0.02901264652609825, -0.03725162148475647, 0.006553729996085167, 0.02608274482190609, 0.024034015834331512, 0.00038689037319272757, -0.009764507412910461, -0.008585937321186066, -0.00027932520606555045, 0.003720205742865801, 0.020222939550876617, -0.018295371904969215, -0.027977267280220985, 0.01950698532164097, -0.017810724675655365, 0.025289688259363174, 0.018757987767457962, -0.03388113155961037, -0.00817839428782463, -0.009191744029521942, 0.02262413688004017, 0.009621316567063332, 0.005518350750207901, -0.002237355336546898, -0.008106798864901066, -0.013107459992170334, -0.005914879031479359, -0.012898181565105915, 0.005479799583554268, -0.005678063724189997, -0.014858793467283249, -0.0028472929261624813, 0.013823414221405983, 0.003331938525661826, 0.03432171791791916, -0.007655197288841009, 0.012028022669255733, -0.016268670558929443, 0.015508659183979034, 0.028219591826200485, 0.04815614968538284, -0.010050889104604721, 0.010414373129606247, -0.041635461151599884, 0.02738247625529766, -0.036700889468193054, 0.004138763062655926, 0.042076047509908676, 0.023945897817611694, 0.013669208623468876, 0.017006654292345047, -0.02018989436328411, -0.011884831823408604, 0.025686215609312057, 0.02326298877596855, 0.02685377188026905, -0.028638148680329323, 0.006972287781536579, -0.025664186105132103, 0.016654184088110924, -0.007032868452370167, -0.0026476518251001835, 0.011796713806688786, -0.011620479635894299, 0.01950698532164097, 0.02412213198840618, 0.0072035957127809525, -0.02819756232202053, 0.01477067545056343, -0.010348284617066383, 0.019793367013335228, 0.010673217475414276, -0.001186830922961235, -0.009323920123279095, -0.04035776108503342, -0.017282020300626755, -0.01922060362994671, 0.00934594962745905, -0.019628146663308144, -0.015563732013106346, -0.01990351267158985, 0.016709258779883385, -0.0025856944266706705, 0.016720272600650787, 0.01667621359229088, 0.04608539119362831, -0.015552717261016369, 0.04401463270187378, -0.0031584573443979025, -0.029453234747052193, -0.0020019167568534613, 0.0010746190091595054, 0.06547120958566666, 0.01206106599420309, -0.019694235175848007, -0.005700093228369951, -0.0007441788329742849, 0.010618144646286964, 0.0003641726216301322, -0.018824074417352676, 0.04066617041826248, -0.030466584488749504, 0.014616470783948898, 0.009814073331654072, -0.02694188803434372, 0.024364454671740532, -0.011218443512916565, 0.032955899834632874, -0.009792043827474117, 0.018097106367349625, -0.02559809945523739, 0.014803719706833363, 0.008007667027413845, 0.00449674017727375, 0.030598759651184082, -0.03381504490971565, 0.01854870840907097, 0.006790545769035816, 0.012105125002563, -0.008987972512841225, 0.0070714196190238, -0.006493149325251579, -0.06031634658575058, 0.03192052245140076, 0.017821740359067917, 0.007517513819038868, 0.016026347875595093, -0.00891637708991766, 0.017722608521580696, -0.024342427030205727, 0.014473279938101768, -0.012832093052566051, -0.005804732441902161, 0.003923977259546518, -0.009736970067024231, -0.006256334017962217, 0.05489712953567505, -0.001513140625320375, 0.018207253888249397, 0.017083756625652313, -0.015761995688080788, 0.00745693314820528, 0.026126803830266, -0.04568886011838913, 0.00014826781989540905, 0.03247125446796417, 0.024871131405234337, 0.004436159506440163, -0.0017788696568459272, 0.004648191854357719, -0.013735296204686165, -0.018196238204836845, 0.010183064267039299, -0.0018532186513766646, 0.016510993242263794, 0.005504582542926073, 0.005788210313767195, 0.06260740011930466, -0.019595101475715637, -0.0009328050655312836, -0.04789179563522339, -0.006889677606523037, 0.0071870735846459866, 0.005146605893969536, -0.005154866725206375, -0.04430101439356804, -0.02791118063032627, -0.004882253706455231, -0.007627660874277353, -0.0004557320789899677, -0.04238446056842804, 0.0018022757722064853, -0.0008825506083667278, -0.018008990213274956, 0.022844430059194565, 9.7292686405126e-06, -0.017414197325706482, 0.0167753454297781, 0.029034676030278206, -0.013823414221405983, -0.018207253888249397, -0.0077047632075846195, 0.011554391123354435, -0.0020418448839336634, -0.057364415377378464, -0.04463145136833191, 0.05110808089375496, 0.015839099884033203, -0.0421861968934536, 0.024430543184280396, 0.022602107375860214, -0.004138763062655926, -0.005622990429401398, 0.01989249885082245, 6.118306191638112e-05, 0.03674494847655296, 0.008932899683713913, 0.0051521132700145245, -0.06586774438619614, -0.02009076252579689, 0.00918623711913824, -0.007715777959674597, 0.023130811750888824, 0.017568401992321014, -0.0266114491969347, 0.007737807463854551, 0.01687447912991047, 0.020200910046696663, 0.0017141584539785981, 0.011345112696290016, -0.0056092217564582825, -0.03974093869328499, -0.026765653863549232, -0.02982773259282112, -0.03659074380993843, 0.023086752742528915, 0.01701766811311245, 0.00016040116315707564, 0.0035797685850411654, 0.02493721805512905, 0.00436181016266346, -0.017248976975679398, -0.009626823477447033, 0.007930563762784004, -0.04445521906018257, 0.022998636588454247, -0.020916862413287163, 0.030334407463669777, -0.0007242147112265229, 0.01908842660486698, 0.0037973083090037107, -0.015398512594401836, 0.044521305710077286, 0.0345199853181839, 0.030070055276155472, -0.015310394577682018, -0.007054897956550121, 0.01093206275254488, -0.034542012959718704, -0.003505419474095106, 0.04564480111002922, 0.014836763963103294, 0.03249328210949898, 0.004695004317909479, -0.018680885434150696, -0.009323920123279095, 0.009918713010847569, 0.010943077504634857, 0.015387497842311859, -0.02143455296754837, -0.02617086097598076, 0.03414548560976982, 0.0010298718698322773, 0.028131473809480667, -0.02857206016778946, -0.015784025192260742, -0.009147685952484608, -0.0032217917032539845, -0.02938714623451233, 0.012766005471348763, -0.01725999265909195, 0.004367317538708448, 0.0030786008574068546, 0.0052732746116817, -0.020883819088339806, 0.017634490504860878, 0.017006654292345047, 0.013371812179684639, -0.010590607300400734, 0.0359518900513649, 0.03844120725989342, 0.0033484604209661484, 0.032581400126218796, 0.015618805773556232, -0.01068974006921053, -0.0026875801850110292, 0.03912411630153656, -0.01505705714225769, 0.03341851755976677, -0.03302198648452759, 0.022998636588454247, -0.009142178110778332, 0.01933075115084648, 0.019011324271559715, 0.01874697208404541, 0.02003568969666958, -0.0016769838985055685, -0.02139049395918846, 0.0025127222761511803, 0.04560074582695961, -0.005518350750207901, 0.03183240443468094, -0.0141428392380476, -0.009599287062883377, -0.0029354102443903685, 0.02795523963868618, -0.027162183076143265, 0.017865799367427826, -0.00918623711913824, 0.0335506908595562, -0.016797374933958054, -0.012226286344230175, -0.011928889900445938, 0.013437900692224503, -0.002819756045937538, 0.024144161492586136, 0.005810239817947149, 0.0027192472480237484, -0.006707935594022274, 0.0009513923432677984, 0.029981939122080803, -0.018735958263278008, 0.01330572459846735, -0.03145790472626686, 0.017138831317424774, 0.02738247625529766, 0.016566067934036255, 0.005782702937722206, 0.0067299650982022285, -0.007396352477371693, 0.0016907522222027183, 0.00894391443580389, 0.008470282889902592, 0.01984843984246254, -0.03460809960961342, 0.008574922569096088, -0.013559062033891678, -0.0009424429154023528, -0.004381086211651564, -0.0035246952902525663, -0.020079748705029488, 0.007467947900295258, 0.004356302786618471, 0.028087414801120758, 0.019936557859182358, -0.0002936098608188331, -0.035357099026441574, -0.02584042213857174, -0.007418381981551647, 0.057364415377378464, -0.02142353728413582, -0.019473940134048462, 0.003271357621997595, -0.02056439407169819, 0.020289026200771332, -0.034740276634693146, 0.0006736160721629858, 0.009478125721216202, -0.03866150230169296, 0.02416619099676609, -0.0033154163975268602, 0.017370138317346573, -0.0038441207725554705, 0.009968278929591179], [0.006281510926783085, 0.005612717941403389, 0.038934048265218735, -0.0010951487347483635, -0.024611586704850197, 0.04514868184924126, -0.0068165455013513565, -0.004655829165130854, 0.006569606252014637, 0.059759240597486496, 0.03308982774615288, 0.03784340247511864, -0.03222554177045822, 0.03903694078326225, -0.010129643604159355, -0.01170902419835329, -0.007217821199446917, 0.057207535952329636, -0.01832493208348751, 0.014857497066259384, 0.03714374080300331, -0.0027291905134916306, 0.0016539768548682332, -0.04457249119877815, -0.004432040732353926, -0.029077067971229553, -0.03549748286604881, 0.02380903623998165, 0.03426278755068779, -0.09342525899410248, 0.008761189877986908, -0.014126968570053577, 0.01118427887558937, -0.006847412791103125, -0.014188704080879688, 0.03022944927215576, 0.02059882879257202, -0.07354667037725449, -0.0226978100836277, -0.014589979313313961, -0.03177281841635704, -0.03350139036774635, -0.004498919937759638, 0.009841548278927803, 0.02800699882209301, 0.04101245477795601, -0.017090236768126488, -0.07618068158626556, 0.007963783107697964, -0.03609425202012062, 0.009676922112703323, 0.028212781995534897, 0.039386771619319916, 0.008473094552755356, 0.06136434152722359, 0.023664988577365875, 0.04584834352135658, 0.0031098881736397743, 0.01215145643800497, -0.02469390071928501, -0.002069400390610099, 0.0010681397980079055, 0.00863257609307766, -0.005916247144341469, -0.021895257756114006, 0.003824982326477766, -0.005926535930484533, 0.014908942393958569, 0.03115547075867653, -0.03239016607403755, 0.02103097178041935, 0.00379925942979753, -0.002376787830144167, 0.019796276465058327, -0.0010572075843811035, 0.02312995307147503, 0.02119559794664383, 0.0564667209982872, -0.024879105389118195, -0.020351890474557877, -0.0014662003377452493, -0.005741331726312637, -0.010597798973321915, 0.010587509721517563, -0.0031767673790454865, 0.011657578870654106, -0.02895359881222248, -0.019240664318203926, 0.002038532868027687, -0.07725074887275696, 0.005468670278787613, 0.02253318391740322, 0.002457814756780863, 0.05045786872506142, 0.030311763286590576, -0.012861406430602074, -0.0014366190880537033, -0.011101965792477131, -0.02142195962369442, -0.014929520897567272, -0.0625167265534401, 0.012789382599294186, -0.044078610837459564, 7.029562402749434e-05, -0.013324417173862457, -0.0035677540581673384, -0.041650377213954926, 0.05790719762444496, 0.024714479222893715, -0.016905032098293304, -0.02751312032341957, -0.008997839875519276, 0.04634222015738487, -0.04416092485189438, -0.02240971475839615, 0.005633295979350805, -0.00023230916121974587, -0.05873032659292221, -0.04477827250957489, -0.04889392480254173, 0.00027169720851816237, 0.01876736432313919, 0.031093737110495567, -0.0564667209982872, 0.02673114649951458, -0.006080872844904661, -0.010762425139546394, -0.007176664657890797, -0.02728676050901413, -0.049017392098903656, 0.025990329682826996, -0.020187264308333397, 0.04831773042678833, -0.03105258010327816, -0.021051550284028053, -0.022841857746243477, -0.012954008765518665, -0.04068320244550705, -0.012254348024725914, 0.04889392480254173, 0.010376582853496075, 0.030743906274437904, 0.046753786504268646, -0.00404105382040143, -0.019333265721797943, -0.0282333604991436, -0.019230375066399574, 0.02119559794664383, 0.024776212871074677, -0.019405290484428406, -0.03776108846068382, 0.07556333392858505, -0.02335631474852562, -0.00032298205769620836, -0.014065233990550041, 0.01616421528160572, 0.01975512132048607, 0.053050730377435684, 0.04654800146818161, 0.027657167986035347, -0.04687725380063057, 0.009769524447619915, -0.00449634762480855, 0.006199197843670845, -0.02872723713517189, -0.0537092350423336, -0.010731557384133339, 0.06301060318946838, -0.012449841946363449, 0.013653669506311417, -0.024200022220611572, -0.012552732601761818, -0.03586789220571518, -0.01300545409321785, -0.03508591651916504, -0.06333985179662704, 0.04930548742413521, 0.02292417176067829, 0.016627226024866104, 0.006276366300880909, -0.004272559192031622, 0.03944850713014603, 0.0070017497055232525, -0.02905648946762085, 0.0010334140388295054, 0.06000617891550064, -0.03790513798594475, 0.04158864542841911, -0.08330075442790985, 0.014744316227734089, -0.020074082538485527, -0.031690504401922226, 0.0179853904992342, 0.042638134211301804, 0.007819735445082188, -0.0007954780012369156, -0.03607367351651192, -0.044078610837459564, -0.011029941961169243, -0.02662825584411621, 0.02042391337454319, -0.049799367785453796, 0.011770759709179401, -0.038892894983291626, -0.013663958758115768, -0.03403642773628235, -0.02817162498831749, -0.01516617089509964, 0.09013273566961288, -0.009429982863366604, 0.02522893436253071, -0.0063381013460457325, 0.022553762421011925, 0.03220496326684952, -0.032904621213674545, 0.008334191516041756, 0.005386357195675373, 0.04671262949705124, 0.03702027350664139, -0.030311763286590576, -0.004612100310623646, 0.03341908007860184, 0.02551702968776226, -0.04051857441663742, 0.0005848724395036697, -0.008833213709294796, -0.014425353147089481, -0.07074802368879318, -0.015814386308193207, -0.07395823299884796, -0.00846794992685318, 0.0012186182430014014, 0.023870769888162613, -0.018962858244776726, -0.006621052045375109, -0.0642452985048294, 0.027821794152259827, 0.004020475782454014, -0.009671777486801147, 0.009754090569913387, 0.0409712977707386, -0.007896903902292252, -0.004141373094171286, -0.03895462676882744, 0.025702234357595444, -0.0006913006072863936, 0.013705114834010601, -0.03891346976161003, 0.04239119589328766, 0.005077683366835117, 0.042432352900505066, -0.03331618756055832, 0.022594919428229332, -0.008359914645552635, -0.04002469778060913, 0.00431628804653883, -0.001810886082239449, -0.037061430513858795, 0.0016951333964243531, 0.018417533487081528, -0.011781048029661179, -0.029138803482055664, -0.04658915847539902, 0.006759955082088709, -0.04140343889594078, -0.015536579303443432, 0.008092396892607212, -0.011606133542954922, -0.023891348391771317, 0.024981996044516563, 0.00027973559917882085, 0.028747815638780594, 0.012058855034410954, -0.025763969868421555, -0.1129334419965744, 0.03294577822089195, 0.02967383712530136, 0.03498302400112152, 0.008812636137008667, 0.03586789220571518, -0.03714374080300331, 0.00819014385342598, -0.03125836327672005, -0.021607162430882454, 0.007799156941473484, 0.03282231092453003, -0.0437493622303009, -0.03553863987326622, 0.03854306414723396, 0.02662825584411621, 0.036341190338134766, 0.004324004985392094, 0.04383167251944542, -0.012110300362110138, -0.0010977210476994514, 0.028212781995534897, 0.049346644431352615, 0.015855541452765465, 0.014960387721657753, -0.0014301884220913053, 0.041753269731998444, 0.054820459336042404, -0.005792777519673109, 0.011585555039346218, -0.010618377476930618, -0.023953083902597427, -0.01118427887558937, -0.01677127368748188, -0.04288507252931595, -0.03679390996694565, 0.021936414763331413, 0.001715711667202413, -0.0024603870697319508, -0.005941969808191061, 0.031299520283937454, 0.001934355590492487, -0.03833727911114693, -0.04728882014751434, 0.06762012839317322, -0.006507871672511101, 9.437056723982096e-05, 0.00697602704167366, -0.02014610730111599, -0.007305278908461332, 0.0005433944170363247, -0.03448914736509323, -0.023479783907532692, 0.06572692841291428, 0.02561992220580578, 0.06617965549230576, -0.0006376042147167027, 0.03981891646981239, -0.03691738098859787, 0.0065953293815255165, -0.03630003333091736, 0.02097952552139759, -0.05412079766392708, 0.03331618756055832, 0.029488632455468178, -0.018026547506451607, -0.009429982863366604, -0.031855132430791855, -0.026381317526102066, 0.03677333518862724, -0.008287890814244747, 0.036114830523729324, 0.047453444451093674, 0.01236752886325121, -0.010721268132328987, 0.03553863987326622, -0.005499537568539381, -0.022430293262004852, -0.04909970611333847, -0.00467640720307827, -0.06268134713172913, 0.0028089312836527824, 0.0315670371055603, 0.0030250027775764465, -0.015752650797367096, -0.0007909765117801726, 0.013849162496626377, 0.008684021420776844, 0.004128511529415846, 0.054943930357694626, -0.011441507376730442, 0.008004939183592796, 0.003547176020219922, -0.03920156881213188, -0.04551909118890762, -0.027307339012622833, 0.02009466104209423, -0.006960593163967133, 0.0024848238099366426, 0.036732178181409836, 0.02712213434278965, -0.003413417376577854, -0.017851632088422775, -0.013705114834010601, -0.004792159888893366, 0.005432657897472382, 0.007346435450017452, 0.04778269678354263, 0.0027754914481192827, -0.017738452181220055, -0.002021813066676259, 0.01032513752579689, -0.035559218376874924, -0.01870562881231308, -0.023829614743590355, 0.009455705992877483, -0.001974225975573063, -0.012264637276530266, 0.01325239334255457, 0.008462805300951004, -0.0486881397664547, 0.026607677340507507, -0.001962650567293167, 0.03397469222545624, 0.007315568160265684, -0.014003499411046505, 0.009707789868116379, -0.010145077481865883, -0.015351374633610249, 0.03304867073893547, 0.01516617089509964, -0.0014559112023562193, -0.004745859187096357, -0.04584834352135658, 0.018294064328074455, 0.010289125144481659, 0.02866550348699093, -0.010335425846278667, 0.007305278908461332, 0.08276572078466415, -0.0022044451907277107, 0.013149501755833626, 0.02850087732076645, -0.0016153926262632012, 0.008159276098012924, -0.02253318391740322, -0.02080461196601391, 0.03897520527243614, -0.008473094552755356, 0.024446962401270866, -0.006564462091773748, -0.02302706241607666, 0.04601296782493591, -0.0083033237606287, -0.03774050995707512, 0.007130363956093788, -0.06622081249952316, 0.01593785546720028, -0.03175223991274834, 0.05605515465140343, -0.021236754953861237, -0.018304353579878807, 0.03206091374158859, -0.03269883990287781, -0.0034031281247735023, 0.012326371856033802, -0.01615392602980137, -0.024426383897662163, 0.013756560161709785, -0.009445416741073132, -0.027163291350007057, -0.009383682161569595, 0.037822823971509933, -0.001733717625029385, 0.05663134530186653, 0.011081388220191002, 0.051445625722408295, -0.01860273815691471, -0.04144459590315819, -0.03220496326684952, -0.03630003333091736, -0.050293244421482086, 0.008061530068516731, -0.006759955082088709, -0.015505711548030376, -0.002061683451756835, -0.00012274604523554444, 0.014785473234951496, -0.0031356108374893665, 0.009733512066304684, -0.006435847841203213, -0.028048155829310417, -0.018222041428089142, -0.02091779187321663, -0.024817369878292084, -0.011215146631002426, 0.043090857565402985, -0.006945159751921892, -0.030208870768547058, 0.012470419518649578, -0.02142195962369442, -0.007994649931788445, -0.043708205223083496, -0.0011459513334557414, -0.029694415628910065, -0.02401481755077839, -0.00388928921893239, -0.021113285794854164, -0.07099496573209763, -0.06737319380044937, 0.05910073593258858, 0.001939500099979341, 0.009589464403688908, 0.040209900587797165, 0.012449841946363449, -0.004465480335056782, -0.015104435384273529, 0.014157836325466633, 0.0009999743197113276, -0.005581850651651621, 0.014445931650698185, 0.03294577822089195, -0.034118738025426865, 0.015588024631142616, 0.020794322714209557, -0.007243544328957796, -0.02142195962369442, -0.011307748965919018, 0.020125528797507286, 0.0273896511644125, 0.050005149096250534, -0.0030558703001588583, 0.0054378025233745575, 0.057207535952329636, 0.0080255176872015, 0.05942998826503754, -0.02623726986348629, -0.01804712601006031, -0.02224508859217167, -0.02883012965321541, -0.03498302400112152, -0.016452310606837273, 0.025949174538254738, -0.0012070429511368275, -0.030352920293807983, 0.020845767110586166, -0.008848647587001324, 0.023335736244916916, 0.022265667095780373, -0.011914807371795177, -0.01837637834250927, 0.016843298450112343, -0.01126659195870161, -0.005273176822811365, -0.010073053650557995, -0.010525775142014027, -0.01611277088522911, -0.01726515218615532, -0.01143121812492609, -0.02994135394692421, 0.018890833482146263, 0.02257434092462063, -0.00020192407828290015, 0.014332751743495464, -0.024714479222893715, -0.01932297646999359, -0.024220600724220276, 0.004895051475614309, 0.02522893436253071, -0.003415989689528942, 1.934234933287371e-05, 0.010206812061369419, -0.0034468569792807102, -0.01386974100023508, 0.01560860313475132, -0.0008224869379773736, 0.011204857379198074, -0.012614467181265354, -0.012552732601761818, -0.0016372570535168052, -0.001825033570639789, 0.02718386799097061, 0.010037041269242764, -0.05552012100815773, -0.01870562881231308, -0.03337792307138443, -0.010294269770383835, 0.056590188294649124, 0.013808006420731544, -0.01475460547953844, -0.03399527072906494, 0.009620332159101963, -0.002196728251874447, -0.0210412610322237, -0.01704907976090908, 0.004197963047772646, -0.014281305484473705, 0.018859965726733208, -0.009764379821717739, 0.04101245477795601, 0.023047640919685364, 0.024364648386836052, 0.028315672650933266, -0.03557979688048363, -0.005535549484193325, 0.03049696795642376, 0.007685976568609476, 0.02224508859217167, 0.008287890814244747, -0.02971499413251877, -0.008478239178657532, -0.0015163598582148552, -0.03632061183452606, -0.006657063961029053, -0.03148472309112549, 0.031176049262285233, -0.0012919282307848334, 0.050005149096250534, -0.016781562939286232, 0.005972837097942829, 0.029241694137454033, -0.003526597749441862, 0.007084062788635492, -0.001961364410817623, -0.005540694110095501, 0.008560552261769772, 0.023150531575083733, 0.036402925848960876, 0.008673732168972492, 0.057536788284778595, -0.045971810817718506, 0.0006118814344517887, 0.0027060399297624826, -0.025661079213023186, -0.013077477924525738, 0.006312378216534853, 0.029262272641062737, -0.048523515462875366, -0.011143122799694538, 0.013386151753365993, 0.032472480088472366, 0.009898138232529163, -0.045477934181690216, -0.013458175584673882, -0.03656755015254021, -0.025393560528755188, -0.0514867827296257, 0.032513637095689774, -0.035415168851614, 0.02551702968776226, -0.03422163054347038, -0.010587509721517563, 0.011925095692276955, 0.005854512099176645, -0.022944748401641846, -0.0174297783523798, 0.014096101745963097, -0.04490174353122711, -0.002195442095398903, -0.025270091369748116, -0.0008765048696659505, 0.014425353147089481, -0.014281305484473705, 0.025928596034646034, -0.009949584491550922, -0.02535240538418293, -0.018633605912327766, -0.022821279242634773, -0.0015703777316957712, -0.015207326970994473, 0.005952259059995413, 0.03780224546790123, -0.04296738654375076, 0.008509106934070587, -0.013417019508779049, -0.0010224818252027035, -0.03206091374158859, 0.0014983539003878832, -0.03580615669488907, -0.018417533487081528, 0.007768289651721716, 0.015032411552965641, -0.03712316229939461, 0.014435642398893833, 0.022677231580018997, 0.01831464283168316, -0.033069249242544174, 0.03422163054347038, 0.035847313702106476, 0.010052475146949291, 0.03560037165880203, 0.021277910098433495, 0.032349009066820145, -0.009604898281395435, -0.01098878588527441, 0.006549028214067221, -0.04909970611333847, 0.019127484411001205, 0.015865830704569817, -0.005046816077083349, 0.015968723222613335, -0.013941764831542969, 0.0021658609621226788, 0.00796892773360014, 0.03632061183452606, 0.0282333604991436, 0.016905032098293304, -0.020413624122738838, -0.018026547506451607, 0.05123984441161156, 0.01976540870964527, 0.0030250027775764465, -0.024549853056669235, -0.02862434647977352, 0.0002131778164766729, 0.028747815638780594, -0.02623726986348629, 0.02522893436253071, 0.006086017470806837, -0.01115341205149889, 0.020907502621412277, 0.0404156856238842, 0.027657167986035347, -0.011719313450157642, 0.00907500833272934, -0.02590801753103733, 0.0017182838637381792, -0.010577220469713211, 0.005905957892537117, -0.03677333518862724, -0.0157732293009758, -0.0202078428119421, -0.02728676050901413, 0.0014057516818866134, 0.0011131546925753355, 0.027430808171629906, -0.01056693121790886, 0.012717358767986298, -0.03481839969754219, -0.01799567975103855, -0.0179853904992342, -0.008977261371910572, 0.02113386243581772, -0.01621566154062748, 0.0001872942375484854, -0.02091779187321663, -0.01870562881231308, 0.018252907320857048, -0.02905648946762085, -0.008642865344882011, 0.0026751726400107145, -0.0056230067275464535, 0.050787121057510376, 0.014435642398893833, -0.01876736432313919, -0.008812636137008667, -0.008704599924385548, -0.038831159472465515, 0.0009517440921626985, 0.006240354385226965, -0.018942279741168022, 0.020228419452905655, -0.0029298283625394106, 0.001961364410817623, -0.012655624188482761, -0.028912441805005074, -0.027595434337854385, -0.05683712661266327, 0.010803581215441227, -0.03453030437231064, -0.017121104523539543, 0.03702027350664139, -0.020681140944361687, 0.00882806908339262, 0.006765099707990885, 0.025969751179218292, 0.005167712923139334, 0.00381212099455297, -0.037287790328264236, -0.026257848367094994, 0.02915938012301922, -0.057207535952329636, 0.022224510088562965, -0.045807186514139175, -0.01405494473874569, 0.02374730072915554, -0.0021838669199496508, -0.025969751179218292, 0.03150530159473419, 0.0016462600324302912, 0.0027523410972207785, -0.024200022220611572, 0.0442843958735466, -0.0005755479214712977, 0.004928491078317165, 0.030702749267220497, 0.02434406988322735, -0.01799567975103855, 0.0005880878306925297, 0.019569916650652885, 0.0354357473552227, -0.013355284929275513, -0.01107109896838665, 0.00030545840854756534, 0.014826629310846329, 0.005905957892537117, 0.03784340247511864, -0.01876736432313919, -0.03800802677869797, -0.006430703215301037, -0.02164831943809986, 0.04354357719421387, -0.009440272115170956, -0.005869945976883173, -0.013633091002702713, -0.011173989623785019, -0.02364441007375717, -0.013777138665318489, -0.01920979656279087, 0.007048050872981548, -0.015979010611772537, -0.03868710994720459, 0.02015639655292034, -0.030373496934771538, -0.058154135942459106, -0.023664988577365875, -0.028048155829310417, 0.004913057200610638, -0.014960387721657753, 0.013581645675003529, 0.020393045619130135, 0.002493826672434807, 0.002124704420566559, -0.006348390132188797, -0.008560552261769772, -0.05045786872506142, -0.011883939616382122, 0.017903078347444534, -0.01721370592713356, -0.0034185617696493864, -0.0009266643319278955, -0.04942895844578743, -0.039386771619319916, -0.020351890474557877, -0.018643895164132118, -0.020074082538485527, 0.017121104523539543, -0.011811915785074234, -0.011297459714114666, -0.005319477524608374, 0.013180369511246681, -0.011739891953766346, -0.013880030252039433, 0.00366035639308393, -0.022512605413794518, 0.0029709849040955305, 0.009069863706827164, 0.015454266220331192, -0.03199917823076248, -0.006399835925549269, 0.01920979656279087, 0.02938574180006981, -0.04835888743400574, -0.0014250437961891294, -0.030044246464967728, -0.015968723222613335, 0.054614678025245667, -0.011811915785074234, -0.06440992653369904, 0.017460646107792854, -0.013663958758115768, 0.014147547073662281, -0.015577735379338264, 0.020125528797507286, -0.03475666418671608, -0.01827348582446575, -0.01582467369735241, 0.008565696887671947, -0.025167200714349747, 0.022944748401641846, 0.030538123100996017, -0.008359914645552635, 0.0023356315214186907, -0.028253937140107155, -0.06099393591284752, -0.00813355389982462, -0.014538533985614777, -0.015752650797367096, 0.0011530250776559114, -0.015402820892632008, 0.031176049262285233, -0.005080255679786205, -0.005921391770243645, 0.008370202966034412, 0.017738452181220055, 0.00528346560895443, 0.020629696547985077, -0.00046815519453957677, 0.01074184663593769, 0.02058853954076767, -0.050293244421482086, -8.753794827498496e-05, -0.022512605413794518, -0.019076038151979446, 0.01654491387307644, 0.013571356423199177, 0.026525365188717842, 0.010556642897427082, -0.016750695183873177, 0.004820455331355333, -0.02113386243581772, 0.002171005355194211, -0.030208870768547058, 0.03864595293998718, 0.02751312032341957, 0.026998665183782578, 0.006795966997742653, 0.01627739518880844, 0.024385226890444756, -0.01511472463607788, -0.01151353120803833, 0.0036655007861554623, -0.014240149408578873, -2.9199412892921828e-05, 0.001974225975573063, -0.008478239178657532, -0.04700072482228279, -0.019785987213253975, -0.017748741433024406, -0.012902563437819481, -0.010803581215441227, 0.015454266220331192, -0.016071613878011703, -0.008123264648020267, 0.04000411927700043, 0.0087148891761899, 0.015238194726407528, -0.0005720110493712127, -0.02142195962369442, -0.02889186330139637, 0.03477724269032478, -0.005916247144341469, 0.005386357195675373, 0.010865315794944763, 0.02247145026922226, -0.02224508859217167, 0.05774256959557533, -0.003547176020219922, -0.018798232078552246, 0.03298693522810936, 0.021216176450252533, -0.017563536763191223, 0.012542443349957466, -0.005962547846138477, 0.03609425202012062, 0.0010366293136030436, -0.04350242018699646, 0.007603663485497236, -0.011029941961169243, 0.020382756367325783, 0.014229860156774521, 0.015402820892632008, 0.00375038618221879, 0.007531639654189348, 0.01560860313475132, -0.048070792108774185, -0.029694415628910065, -0.01004218589514494, 0.013797717168927193, -0.03142298758029938, 0.025661079213023186, 0.006435847841203213, 0.003886717138811946, 0.008539973758161068, 0.01228521578013897, -0.020331311970949173, 0.04848235845565796, -0.03580615669488907, 0.06934870034456253, 0.00394330732524395, 0.04449017718434334, 0.01899372600018978, -0.0025002574548125267, 0.024488117545843124, 0.004396028816699982, -0.037328947335481644, -0.008817780762910843, 0.019364133477211, 0.011328326538205147, 0.004120794590562582, 0.040209900587797165, 0.03171108290553093, 0.002477106871083379, 0.013777138665318489, -0.05572590231895447, -0.012223481200635433, 0.007567651569843292, 0.006657063961029053, 0.00363977812230587, -0.009177899919450283, 0.03381006419658661, 0.00363977812230587, -0.030929110944271088, -0.011637000367045403, 0.03720547631382942, -0.02650478668510914, 0.029303427785634995, 0.02790410816669464, 0.006086017470806837, 0.030579280108213425, 0.004784443415701389, 0.017913367599248886, 0.006415269803255796, -0.0070377616211771965, 0.00919333379715681, -0.025496453046798706, 0.005566416773945093, -0.006590184755623341, 0.0029246837366372347, 0.03981891646981239, 0.01403436716645956, 0.016565492376685143, -0.005080255679786205, -0.03049696795642376, 0.006564462091773748, 0.021175019443035126, 0.011451796628534794, 0.002138851908966899, -0.006091162096709013, 0.02662825584411621, 0.015433687716722488, -0.0031304664444178343, -0.006075728219002485, 0.02479679137468338, -0.005314333364367485, -0.006075728219002485, 0.014857497066259384, -0.01892170123755932, -0.04160922393202782, 0.034633196890354156, -0.02773948200047016, 0.01694618910551071, 0.013571356423199177, -0.032410744577646255, -0.025043731555342674, 0.01683300919830799, -0.016699250787496567, 0.001889340579509735, 0.009388826787471771, -0.006538738962262869, -0.018366089090704918, 0.015680626034736633, 0.019888879731297493, -0.0051419902592897415, 0.03477724269032478, -0.026978086680173874, 0.005064821802079678, -0.028048155829310417, 0.0073361461982131, 0.03502418100833893, -0.013818294741213322, 0.008030662313103676, -0.023068219423294067, -0.002311194781213999, 0.0035523204132914543, 0.057372163981199265, 0.016925610601902008, -0.007727133110165596, -0.0018507563509047031, 0.053338825702667236, -0.0026185824535787106, -0.021566007286310196, 0.022903593257069588, -0.043708205223083496, -0.02308879792690277, -0.006101451348513365, 0.01937442272901535, 0.03753472864627838, -0.04379051551222801, 0.06901945173740387, -0.038831159472465515, -0.010006174445152283, 0.014044655486941338, -0.0026828893460333347, 0.0009658916387706995, 0.024508696049451828, -0.013993210159242153, 0.019353844225406647, -0.022450871765613556, -0.03366601839661598, -0.003601193893700838, 0.060129646211862564, -0.010088487528264523, 0.07609836757183075, 0.0015485133044421673, -0.03348081186413765, 0.008066673763096333, -0.04584834352135658, 0.017018213868141174, -0.016452310606837273, -0.015299929305911064, 0.032246120274066925, 0.0072229658253490925, 0.01248070877045393, 0.0006842268048785627, 0.011657578870654106, -0.020012348890304565, -0.025825703516602516, -0.006471859756857157, 0.011781048029661179, -0.02296532690525055, -0.034674350172281265, -0.002309908624738455, 0.019076038151979446, 0.0025156910996884108, 0.009399116039276123, -0.022203931584954262, -0.0053606340661644936, 0.0008334191516041756, 0.01737833209335804, 0.00786089152097702, -0.008046096190810204, -0.002014096360653639, 0.04068320244550705, 0.0069245812483131886, 0.014466510154306889, 0.019611071795225143, 0.05942998826503754, -0.03448914736509323, -0.013622801750898361, 0.0027291905134916306, -0.012007408775389194, 0.015968723222613335, 0.0011523819994181395, 0.009651199914515018, 0.005514970980584621, 0.026360739022493362, -0.00010803581244545057, 0.011287170462310314, -0.03022944927215576, -0.024673322215676308, 0.00877147912979126, 0.019467024132609367, -0.03477724269032478, -0.01627739518880844, 0.011647289618849754, -0.0376581996679306, -0.00762424198910594, -0.03625887632369995, -0.0011742464266717434, 0.012552732601761818, 0.01832493208348751, -0.022821279242634773, 0.030250027775764465, 0.010145077481865883, -0.013766849413514137, 0.005869945976883173, -0.024097131565213203, -0.018407244235277176, -0.0025414139963686466, -0.02872723713517189, 0.03800802677869797, 0.024323491379618645, -0.03942792862653732, -0.012635045684874058, 0.003760675201192498, 0.020629696547985077, 0.047412287443876266, -0.0067805335856974125, -0.016894742846488953, 0.010201667435467243, -0.02551702968776226, 0.021380802616477013, 0.04350242018699646, 0.006435847841203213, 0.008421649225056171, 0.022224510088562965, 0.037287790328264236, -0.02014610730111599, -0.012501287274062634, 0.01587611995637417, -0.034674350172281265, -0.029570946469902992, -0.027862951159477234, 0.013766849413514137, 0.02397366240620613, -0.02557876519858837, 0.011451796628534794, -0.004696985706686974, 0.021668897941708565, -0.02928285114467144, -0.017903078347444534, 0.015320507809519768, 0.010844738222658634, -0.03881058096885681, -0.008972116746008396, -0.0024500980507582426, 5.900170071981847e-05, -0.01815001666545868, 0.004866756033152342, 0.021895257756114006, 0.04737113416194916, 0.01308776717633009, 0.034900713711977005, 0.029653258621692657, -0.016349419951438904, 0.007994649931788445, 0.006513016298413277, -0.0150838578119874, 0.020557671785354614, -0.014980966225266457, -0.018242619931697845, 0.03590904548764229, 0.009733512066304684, -0.015176460146903992, 0.0007646105950698256, -0.009944439865648746, -0.011050520464777946, 0.0045529380440711975, -0.02689577266573906, -0.03957197442650795, -0.011101965792477131, 0.01032513752579689, 0.010319992899894714, 0.03776108846068382, 0.010937340557575226, -0.0073310015723109245, 0.008668587543070316, -0.037946294993162155, 0.013375862501561642, -0.03560037165880203, 0.03160819411277771, -0.002473248401656747, 0.01732688769698143, -0.0076293861493468285, -0.034242209047079086, 0.03197859972715378, 0.02080461196601391, -0.012542443349957466, -0.032184384763240814, -0.01755324751138687, 0.001837895018979907, -0.031299520283937454, 0.028048155829310417, 0.0009639624040573835, 0.014620847068727016, 0.006003704387694597, 0.01694618910551071, 0.01511472463607788, 0.046136438846588135, 0.020218130201101303, -0.025043731555342674, 0.007984361611306667, -0.01947731338441372, 0.017954522743821144, -0.014528244733810425, -0.0006372826755978167, -0.006790822837501764, 0.024323491379618645, -0.011040231212973595, 0.010752135887742043, -0.0034545736853033304, -0.0024976851418614388, 0.008148986846208572, 0.02080461196601391, -0.0008224869379773736, -0.013139212504029274, -0.025372982025146484, 0.005154851824045181, -0.012501287274062634, -0.009080152958631516, 0.018232330679893494, -0.01888054423034191, 0.04465480521321297, -0.0008096255478449166, -0.02810988947749138, 0.0029324006754904985, -0.008725178427994251, -0.02994135394692421, 0.012676202692091465, -0.013910897076129913, 0.021895257756114006, -0.022553762421011925, 0.006543883588165045, 0.0010347001953050494, -0.016349419951438904, -0.006199197843670845, -0.03276057541370392, 0.0025427001528441906, 0.017090236768126488, 0.016966767609119415, -0.025311248376965523, 0.020547382533550262, -0.009882704354822636, -0.0044783418998122215, 0.020732587203383446, 0.02662825584411621, -0.0031664783600717783, 0.013190658763051033, -0.004714991431683302, 0.061240874230861664, 0.01677127368748188, -0.0014957815874367952, 0.02473505772650242, 0.005530404858291149, -0.0033028090838342905, 0.011369483545422554, 0.023541519418358803, -0.007161231245845556, -0.02899475395679474, 0.008997839875519276, -0.018294064328074455, 0.009357959032058716, -0.039777759462594986, -0.020773744210600853, 0.009697500616312027, -0.0210412610322237, -0.020856056362390518, -0.03387179970741272, -0.011101965792477131, -0.007022327743470669, -0.03679390996694565, 0.02158658392727375, 0.0018314642366021872, 0.03284288942813873, 0.008277601562440395, 0.015227905474603176, 0.004115649964660406, -0.0409712977707386, -0.018108859658241272, -0.024220600724220276, -0.010649244301021099, -0.013046611100435257, -0.007526495028287172, 0.006240354385226965, -0.021113285794854164, 0.026545943692326546, -0.01788249984383583, -0.020176975056529045, 0.006178619805723429, 0.014343040995299816, 0.044202081859111786, -0.017244573682546616, -0.02401481755077839, -0.010031896643340588, 0.00827245693653822, 0.014096101745963097, -0.012851117178797722, 0.008184999227523804, -0.00031928441603668034, 0.03199917823076248, -0.013118634931743145, -0.013982920907437801, 0.04770038276910782, 0.04288507252931595, -0.03695853799581528, 0.03115547075867653, 0.007891759276390076, 0.026998665183782578, 0.031402409076690674, 0.001884196070022881, -0.01942586898803711, 0.018108859658241272, 0.03142298758029938, -0.04235003888607025, 0.021792367100715637, 0.008406215347349644, 0.0005102762952446938, -0.006698220502585173, -0.002095123054459691, 0.01397263165563345, -0.02922111563384533, -0.030126558616757393, -0.015855541452765465, -0.029653258621692657, -0.0009774669306352735, -0.0015755223575979471, -0.03206091374158859, 0.009728367440402508, -0.014662003144621849, -0.026381317526102066, -0.0005941969575360417, 0.0007941918447613716, 0.027821794152259827, -0.023047640919685364, 0.023500362411141396, 0.021771788597106934, -0.003562609665095806, -0.01703879050910473, -0.029591524973511696, -0.004254553467035294, 0.005298899486660957, -0.03304867073893547, -0.02070171944797039, -0.0070017497055232525, 0.01971396431326866, -0.012027987278997898, 0.04111534357070923, -0.012830539606511593, 0.014456220902502537, -0.004833316430449486, -0.0179853904992342, -0.0260109081864357, 0.0030018521938472986, 0.0007170233875513077, -0.015032411552965641, -0.04963473975658417, -0.01655520312488079, -0.016143636777997017, 0.0032410745043307543, -0.008035806939005852, 0.0013478754553943872, -0.009270502254366875, -0.027718903496861458, -0.0029143947176635265, 0.0033825498539954424, 0.028130467981100082, -0.002089978661388159, -0.031032001599669456, -0.012192613445222378, -0.02518777921795845, -0.030250027775764465, -0.011863361112773418, 0.05790719762444496, 0.017285730689764023, -0.022286245599389076, -0.05951229855418205, -0.012583600357174873, 0.006127174012362957, 0.013499332591891289, 0.009882704354822636, -0.011554687283933163, -0.022841857746243477, 0.01721370592713356, -0.040600888431072235, 0.010448606684803963, 0.0008855078485794365, 0.046465691179037094, -0.008503962308168411, -0.015042700804769993, 0.025825703516602516, -0.027163291350007057, -0.004267414566129446, 0.01026340201497078, 0.008730323053896427, 0.03757588565349579, -0.035065338015556335, -0.006132318638265133, 0.025558186694979668, -0.0074030254036188126, -0.005265459883958101, -0.007984361611306667, -0.026689991354942322, 0.009044141508638859, 0.03187571093440056, 0.018520426005125046, 0.03337792307138443, -0.012552732601761818, -0.006497582420706749, -0.03477724269032478, 0.04123881459236145, -0.004125939216464758, 0.017944233492016792, 0.008277601562440395, 0.01353019941598177, 0.0024681040085852146, -6.406588363461196e-05, -0.015865830704569817, 0.018798232078552246, -0.01516617089509964, -0.02634016051888466, 0.03675275668501854, -0.012912851758301258, -0.001745292916893959, -0.02065027505159378, 0.004781871102750301, 0.008601708337664604, 0.0032462188974022865, 0.018942279741168022, 0.013303838670253754, 0.010916762053966522, -0.030743906274437904, 0.01914806291460991, -0.026319582015275955, 0.005504682194441557, -0.0013748843921348453, 0.012974587269127369, -0.02479679137468338, -0.016349419951438904, -0.02950921095907688, -0.013941764831542969, 0.03477724269032478, -0.0014649141812697053, 0.031628772616386414, -0.02263607457280159, 0.017357753589749336, -0.0009858268313109875, 0.08309497684240341, 0.013705114834010601, -0.035394590348005295, -0.01317008025944233, -0.052556850016117096, -0.0005356775945983827, 0.009095586836338043, -0.021895257756114006, 0.013725693337619305, 0.009563742205500603, 0.02706039883196354, 0.01223376952111721, 0.01904517039656639, 0.01881881058216095, -0.001978084212169051, 0.004138800781220198, -0.02905648946762085, 0.011575265787541866, 0.004154234193265438, 0.006096306722611189, 0.008961828425526619, -0.0014597696717828512, 0.053668078035116196, -0.0015986728249117732, -0.013293549418449402, -0.022059883922338486, -0.02358267456293106, 0.011276881210505962, 0.01107109896838665, -0.010098776780068874, 0.013077477924525738, -0.008601708337664604, 0.02662825584411621, 0.016812430694699287, 0.011739891953766346, 0.0033516825642436743, 0.007824880070984364, 0.0026340160984545946, 0.002379360143095255, 0.02247145026922226, 0.025496453046798706, -0.0008057671366259456, -0.0348801352083683, -0.016483178362250328, 0.02734849415719509, -0.00010554392065387219, -0.02790410816669464, -0.024055974557995796, -0.02015639655292034, -0.0024230889976024628, 0.014950099401175976, -0.04416092485189438, 0.00348801352083683, -0.007094352040439844, -0.039325036108493805, 0.039716023951768875, -0.011225435882806778, 0.0470418818295002, 0.016009878367185593, -0.03039407543838024, -0.0023883632384240627, 0.0009118737070821226, 0.019137773662805557, -0.023335736244916916, 0.06947217136621475], [0.018907153978943825, 0.006678531412035227, 0.03495865687727928, 0.06130431592464447, -0.03880457207560539, 0.01667330041527748, -0.0001908923004521057, 0.008543914183974266, 0.010806554928421974, 0.05190831050276756, 0.01853868179023266, -0.017801741138100624, -0.02210824191570282, -0.005823564250022173, -0.02864859811961651, 0.035419248044490814, 0.007432745303958654, 0.016270285472273827, -0.016822990030050278, 0.01994347758591175, 0.03452109917998314, 0.021428875625133514, -0.019218049943447113, 0.011583797633647919, 0.004643306601792574, -0.04255836829543114, -0.004366953857243061, -0.04131477698683739, 0.038965776562690735, -0.04617398604750633, 0.047716956585645676, -0.03152727335691452, 0.045920662581920624, -0.010633834637701511, 0.006097038742154837, 0.017744166776537895, 0.029109185561537743, -0.0024670264683663845, 0.014635195955634117, -0.009372973814606667, -0.027428038418293, -0.013138283975422382, 0.022430654615163803, 0.017652049660682678, -0.038021571934223175, 0.03915001451969147, 0.025885067880153656, -0.012124989181756973, -0.025032978504896164, 0.008889355696737766, 0.020173771306872368, 0.032402392476797104, 0.02157856523990631, 0.026414744555950165, 0.0032788135576993227, 0.011244113557040691, 0.00966659840196371, 0.0012594213476404548, 0.013656445778906345, -0.04011724889278412, -0.014209152199327946, 0.03887366130948067, -0.023225169628858566, 0.0004947726847603917, 0.021256154403090477, -0.01931016892194748, 0.022534286603331566, 0.02376636117696762, -0.013760077767074108, -0.03083639219403267, -0.005368733312934637, 0.039518482983112335, 0.003989846911281347, -0.0174563005566597, -0.053980957716703415, 0.03696221858263016, -0.03219512850046158, 0.0009823486907407641, 0.047026075422763824, 0.00886632688343525, -0.07461532205343246, 0.04955931007862091, -0.003178059821948409, 0.02401968464255333, -1.8846341845346615e-05, 0.03000733256340027, -0.029823098331689835, -0.004208626225590706, -0.01714540272951126, 0.01850413903594017, 0.026714125648140907, 0.047141220420598984, -0.006672774441540241, 0.024226948618888855, 0.009729929268360138, -0.026668068021535873, 0.013552812859416008, -0.005659479647874832, -0.036524660885334015, 0.0283952746540308, -0.04076207056641579, 0.015233960933983326, -0.01275829877704382, -0.013978857547044754, 0.043640751391649246, -0.02224641852080822, -0.03726160153746605, 0.006528840400278568, 0.0008139460696838796, 0.004519523587077856, -0.028072861954569817, -0.020461639389395714, 0.03251754119992256, 0.035718630999326706, -0.001784779946319759, -0.0016926623648032546, -0.03178060054779053, -0.09718415141105652, -0.011272900737822056, -0.026668068021535873, 0.04214383661746979, 0.004128023516386747, 0.0278425682336092, -0.046496398746967316, -0.003281692275777459, 0.0005084464210085571, -0.034889571368694305, 0.014830945990979671, -0.02238459512591362, -0.05365854874253273, 0.02188946306705475, -0.019828330725431442, 0.053013723343610764, -0.03150424733757973, -0.004974354524165392, -0.0011831363663077354, 0.010990790091454983, -0.03210300952196121, -0.01803203485906124, 0.01728357933461666, -0.004234534688293934, 0.029846128076314926, 0.026645038276910782, -0.004893751814961433, -0.017272064462304115, -0.02415786124765873, -0.03548833355307579, -0.007236994802951813, 0.03604103997349739, 0.004683608189225197, -0.03014550916850567, 0.06084372475743294, -0.042374130338430405, -0.013679475523531437, -0.0362943634390831, 0.034590188413858414, 0.004033027216792107, 0.010438084602355957, 0.02202763967216015, 0.04873025044798851, -0.03359992429614067, 0.02277609519660473, -0.008526642806828022, 0.012424372136592865, 0.02074950747191906, -0.022822154685854912, 0.018181726336479187, -0.022568831220269203, -0.005052078980952501, 0.019713183864951134, -0.02933948114514351, -0.012666180729866028, -0.01522244606167078, -0.03111274540424347, -0.03362295404076576, -0.0038142476696521044, 0.055086370557546616, 0.01966712437570095, -0.009349944069981575, -0.006459752097725868, 0.021624624729156494, 0.05895531177520752, -0.03710039332509041, -0.004795876797288656, 0.029178274795413017, 0.016972681507468224, -0.034083541482686996, -0.016109079122543335, -0.05213860422372818, 0.03396839275956154, -0.015521829016506672, -0.02947765588760376, 0.024388154968619347, 0.018550196662545204, 0.017767196521162987, 0.005299645010381937, -0.04845389723777771, -0.03703130781650543, 0.016028475016355515, -0.0024468759074807167, 0.010340209119021893, -0.0786684975028038, -0.016063019633293152, -0.04366377741098404, -0.03484351187944412, -0.016224225983023643, 0.01181409228593111, 0.010697165504097939, 0.05177013576030731, -0.027428038418293, 0.008912385441362858, -0.005800534971058369, -0.05269131064414978, 0.03981786593794823, 0.032287247478961945, 0.030490951612591743, 0.042926836758852005, 0.048822369426488876, 0.06019890308380127, -0.022211875766515732, 0.004531038459390402, 0.03403748199343681, 0.04481524974107742, -0.029247362166643143, -0.030260657891631126, -0.037768248468637466, -0.03505077585577965, -0.053980957716703415, -0.0285334512591362, -0.09092015027999878, -0.023858478292822838, -0.011151996441185474, 0.005172983277589083, -0.07083849608898163, -0.05720507726073265, -0.011480165645480156, 0.038988806307315826, 0.025631744414567947, -0.0018610649276524782, -0.03290903940796852, 0.021924007683992386, 0.030260657891631126, 0.0277043916285038, -0.010150216519832611, -0.016615726053714752, -0.027612274512648582, 0.011031092144548893, -0.042926836758852005, 0.03564954176545143, 0.007070031948387623, -0.017295094206929207, -0.006390663795173168, 0.03839004039764404, -0.0914267972111702, -0.021233124658465385, 0.034175656735897064, 0.005377369467169046, -0.06125825643539429, -0.0074615320190787315, 0.06485084444284439, -0.013967342674732208, -0.019575007259845734, 0.0142667256295681, -0.06710772961378098, -0.04041663184762001, 0.00743850227445364, -0.020311947911977768, -0.045805513858795166, -0.038827601820230484, 0.04919084161520004, -0.00961478240787983, -0.004623156040906906, 0.044584956020116806, -0.03615618869662285, -0.08520884811878204, 0.01850413903594017, -0.005411913618445396, 0.03578771650791168, -0.013587357476353645, 0.005014656111598015, -0.038988806307315826, -0.013840680941939354, -0.03422171622514725, -0.06839737296104431, 0.03880457207560539, 0.006039465311914682, -0.016155138611793518, -0.020622845739126205, -0.016327857971191406, 0.0021604474168270826, 0.07254266738891602, 0.04276563227176666, 0.02581597864627838, 0.0013652127236127853, -0.001643724855966866, 0.02404271438717842, -0.019966507330536842, 0.05531666427850723, 0.02482571452856064, -0.019563492387533188, 0.013656445778906345, 0.04106145352125168, -0.006477024406194687, 0.027266832068562508, -0.06185701861977577, 0.011624099686741829, 0.02851042151451111, -0.02315608039498329, 0.026023244485259056, 0.006338847801089287, -0.013138283975422382, -0.016051504760980606, -0.07180573046207428, 0.02149796299636364, 0.03069821558892727, -0.004424527287483215, -0.04891448840498924, -0.001876897644251585, -0.0005868903826922178, 0.005103894975036383, 0.029592804610729218, 0.027243802323937416, -0.0066958037205040455, 0.005362975876778364, 0.002350440016016364, -0.02431906759738922, 0.004525281023234129, 0.049743544310331345, -0.020438609644770622, 0.009643569588661194, 0.006407936103641987, 0.06724590808153152, 0.022614890709519386, -0.014450960792601109, -0.03152727335691452, -0.0141976373270154, -0.04548310488462448, -0.0019373499089851975, 0.003229876048862934, -0.012723754160106182, 0.0005210406379774213, -0.012435886077582836, 0.004649064037948847, 0.05273737013339996, 0.011998327448964119, 0.030790334567427635, 0.016224225983023643, 0.06420601904392242, 0.003126243595033884, 0.005748718976974487, 0.022557316347956657, 0.01098503265529871, 0.015314564108848572, 0.010795040056109428, -0.046772751957178116, -0.03191877529025078, 0.03058306872844696, 0.020323462784290314, -0.016270285472273827, 0.030606098473072052, -0.0448843389749527, -0.05573119595646858, 0.026506861671805382, 0.07129908353090286, 0.03113577514886856, 0.006931855343282223, -0.05586937069892883, 0.012919504195451736, -0.016972681507468224, -0.009931436739861965, 0.0052276779897511005, -0.045644309371709824, -0.019563492387533188, -0.0540270172059536, 0.016327857971191406, -0.01576363667845726, 0.005276615731418133, 0.03138909861445427, 0.03343871608376503, 0.002835497260093689, 0.010812312364578247, 0.028303155675530434, -0.007260024547576904, 0.013875225558876991, 0.025769921019673347, 0.04414739832282066, -0.02636868506669998, -0.00037674690247513354, -0.015602431260049343, -0.015095784328877926, 0.046081867069005966, -0.027474097907543182, -0.010731709189713001, 0.0018308388534933329, -0.0013911208370700479, 0.022154301404953003, -0.007939392700791359, 0.023225169628858566, -0.011255628429353237, -0.015337592922151089, 0.007876061834394932, -0.026783214882016182, 0.006039465311914682, -0.0014055141946300864, 0.007570921443402767, 0.00513268169015646, -0.03928818926215172, 0.01255103386938572, -0.0008549672202207148, -0.005564483348280191, 0.005452215205878019, -0.012804357334971428, 0.015855755656957626, 0.039219100028276443, -0.00223673228174448, -0.0365707166492939, -0.0024612692650407553, 0.032955098897218704, 0.030398832634091377, -0.06250184774398804, 0.02329425700008869, 0.06876584887504578, -0.03730766102671623, -0.010150216519832611, 0.029523715376853943, -0.0002524240408092737, -0.0002105032908730209, -0.05232284218072891, -0.013978857547044754, -0.014750342816114426, -0.08285985141992569, -0.01480791624635458, -0.031320009380578995, 0.07143726199865341, -0.02579294890165329, 0.02287972904741764, 0.019068358466029167, -0.013023137114942074, 0.02758924476802349, 0.012942533940076828, -0.03792945295572281, 0.0015559251187369227, 0.012078930623829365, -0.041429925709962845, -0.014992152340710163, -0.005728567950427532, 0.021820375695824623, 0.018216270953416824, 0.031089715659618378, -0.009770231321454048, 0.044700104743242264, 0.005316917318850756, 0.015913328155875206, -0.005907046142965555, -0.0039293947629630566, -0.03097456879913807, -0.007260024547576904, -0.026806244626641273, -0.023063963279128075, -0.011278658173978329, -0.017191462218761444, 0.01755993254482746, 0.0360180102288723, 0.029984304681420326, 0.007565164472907782, 0.006724590435624123, -0.005221921019256115, -0.02553962543606758, -0.0049225385300815105, -0.01986287347972393, 0.012597092427313328, 0.024733595550060272, 0.030813362449407578, -0.0035062290262430906, 0.03944939374923706, -0.01195226889103651, 0.02360515482723713, -0.018158696591854095, -0.03645557165145874, 0.01609756425023079, -0.010616562329232693, 0.010495658032596111, -0.08138597011566162, -0.053474310785532, 0.07968179136514664, 0.0024958134163171053, 0.04642730951309204, -0.033369626849889755, -0.00038826162926852703, -0.03196483477950096, -0.017582962289452553, 0.00975295901298523, -0.008330892771482468, -0.010225062258541584, 0.02567780204117298, 0.010812312364578247, 0.0132994893938303, -0.001448694383725524, 0.003880457254126668, 0.02268397808074951, 0.015752123668789864, 0.010697165504097939, -0.011572283692657948, -0.012251650914549828, 0.05200042948126793, -0.004519523587077856, -0.015003666281700134, -0.008549671620130539, 0.023720301687717438, -0.020703447982668877, -0.023950595408678055, 0.020265888422727585, 0.0014638074208050966, 0.00565084395930171, -0.02254580147564411, -0.021820375695824623, 0.04106145352125168, 0.01848110929131508, -0.017306609079241753, 0.023179110139608383, -0.03396839275956154, 0.0011996887624263763, 0.004056056495755911, -0.015855755656957626, -0.022234903648495674, 0.02975400909781456, -0.02496389113366604, -0.03703130781650543, 0.013794622384011745, -0.018607771024107933, -0.01720297709107399, -0.023386375978589058, -0.006828222889453173, -0.025608714669942856, 0.02202763967216015, -0.023340316489338875, -0.013287974521517754, 0.021601594984531403, -0.03468230739235878, 0.016489064320921898, -0.02236156538128853, -0.016051504760980606, 0.04640427976846695, -0.018826549872756004, -0.001340024289675057, 0.014934578910470009, -0.006690046284347773, 0.02263791859149933, 0.018158696591854095, 0.0019071238348260522, -0.016086049377918243, -0.004176960792392492, -0.0019387892680242658, 0.010950488969683647, -0.014923064038157463, 0.04435466229915619, 0.029431598260998726, -0.025723861530423164, -0.018964726477861404, 0.014600652270019054, 0.026737155392766, -0.004643306601792574, -0.023950595408678055, -0.03224118798971176, -0.00815817154943943, 0.04218989610671997, -0.012504974380135536, -0.015130328945815563, -0.010633834637701511, -0.008486340753734112, 0.014105519279837608, 0.005230556707829237, -0.003028368577361107, -0.00671883299946785, 0.03627133369445801, 0.02390453778207302, 0.006741862744092941, -0.04011724889278412, 0.029869157820940018, 0.04536795616149902, 0.007876061834394932, 0.011791062541306019, -0.00229286658577621, -0.006413693074136972, 0.003132001031190157, 0.03168848156929016, -0.042374130338430405, -0.016615726053714752, 0.015660004690289497, 0.05121742933988571, -0.057803843170404434, 0.033507805317640305, -0.005504031199961901, -0.007121847942471504, 0.03919607028365135, 0.012792842462658882, -0.043180160224437714, 0.034083541482686996, -0.031343039125204086, 0.009165708906948566, 0.010737466625869274, 0.04083115980029106, 0.04218989610671997, 0.01792840287089348, -0.02689836174249649, -0.006010678596794605, 0.00196325802244246, -0.018412020057439804, 0.006603686138987541, -0.010000525042414665, -0.003805611515417695, -0.01939077116549015, -0.02418089099228382, -0.01889563910663128, 0.023697271943092346, -0.007455774582922459, -0.04840783774852753, -0.007841517217457294, -0.023409403860569, -0.007847274653613567, -0.008733907714486122, 0.04437769204378128, 0.004499373026192188, 0.0028829954098910093, -0.02138281613588333, 0.022891242057085037, -0.0045569464564323425, -0.016892079263925552, -0.05867896229028702, -0.014485504478216171, 0.0006516606081277132, -0.03521198406815529, -0.019068358466029167, -0.03548833355307579, 0.006292788777500391, 0.01681147702038288, -0.024779655039310455, -0.0038948506116867065, 0.013287974521517754, 0.005647965241223574, 0.013334034010767937, -0.005172983277589083, 0.037883393466472626, -0.06448237597942352, 0.06517325341701508, 0.0023648336064070463, -0.02066890336573124, -0.001124123577028513, 0.04205172136425972, 0.012240136042237282, 0.009620539844036102, 0.000735861889552325, -0.027059568092226982, -0.028211038559675217, 0.020450124517083168, -0.005437821615487337, 0.00922328233718872, 0.036248307675123215, -0.02224641852080822, 0.016938138753175735, -0.020979801192879677, 0.012044386006891727, 0.0385051891207695, 0.0029535230714827776, 0.041706278920173645, 0.02772742137312889, 0.007996966131031513, 0.009557208977639675, -0.011082908138632774, -0.048269663006067276, -0.007864546962082386, 0.01643148995935917, 0.008175443857908249, -0.06756831705570221, 0.013011622242629528, -0.008705120533704758, -0.025286301970481873, -0.019413800910115242, 0.02471056766808033, -0.005892652552574873, -0.0132994893938303, 0.0049714758060872555, -0.02163613960146904, 0.0404396615922451, -0.0017675079870969057, 0.005907046142965555, 0.026921391487121582, -0.016742387786507607, -0.026806244626641273, -0.012504974380135536, 0.019218049943447113, 0.01698419637978077, 0.029385538771748543, 0.018354447558522224, -0.004277714528143406, 0.04230504482984543, -0.012194077484309673, -0.006793678738176823, -0.013656445778906345, -0.023950595408678055, 0.028211038559675217, -0.03997907042503357, 0.006534597836434841, -0.05582331120967865, -0.039518482983112335, -0.010910187847912312, -0.011295930482447147, 0.014819431118667126, 0.019816815853118896, 0.006304303649812937, -0.03362295404076576, 0.04304198548197746, -0.05149378255009651, 0.0015372138004750013, 0.0034889569506049156, 0.022868214175105095, 0.0009801896521821618, 0.007329112850129604, 0.017053285613656044, 0.016281800344586372, 0.017272064462304115, 0.03136606886982918, -0.010852613486349583, -0.0031982106156647205, 0.015521829016506672, 0.01828535832464695, 0.0034371407236903906, 0.007962421514093876, 0.010962003841996193, -0.030398832634091377, -0.01886109448969364, -0.008952686563134193, -0.009637812152504921, -0.006707318592816591, -0.007242752239108086, 0.03290903940796852, -0.01897624135017395, -0.028234068304300308, -0.000684765400364995, -0.01044384203851223, 0.0008513688226230443, -0.022004609927535057, -0.034889571368694305, -0.012493460439145565, -0.03125092387199402, -0.005676751956343651, 0.0022971846628934145, 0.0139212841168046, 0.035419248044490814, -0.01656966656446457, 0.05204648897051811, 0.00671883299946785, -0.038689423352479935, -0.015752123668789864, 0.03251754119992256, -0.019966507330536842, 0.024249978363513947, -0.01188318058848381, -0.0135067543014884, 0.014427931047976017, 0.02401968464255333, 0.007968178950250149, 2.5255896616727114e-05, -0.004205747507512569, 0.014278239570558071, 0.005829321686178446, -0.030606098473072052, -0.019298654049634933, 0.0016307707410305738, 0.002756333677098155, -0.017744166776537895, -0.00334214442409575, 0.010179003700613976, 0.0033450231421738863, 0.04596672207117081, -0.00840573851019144, -0.04891448840498924, -0.02086465433239937, 0.011578040197491646, -0.00937873125076294, 0.03403748199343681, -0.06549566984176636, -0.03482048213481903, -0.0002414490736555308, -0.00937873125076294, 0.010881400667130947, -0.0078012156300246716, -0.0027764844708144665, 0.03030671551823616, -0.023409403860569, -0.00451664486899972, 0.02005862444639206, -0.020680418238043785, 0.005164347123354673, -0.03820580616593361, 0.011848635971546173, -0.009142679162323475, -0.06181096285581589, -0.02011619694530964, 0.0012392706703394651, -0.005947347730398178, -0.03178060054779053, 0.016385432332754135, -0.018964726477861404, 0.04734848439693451, 0.014013401232659817, -0.023063963279128075, -0.024894801899790764, -0.009770231321454048, 0.017226004973053932, 0.0074269878678023815, 0.030398832634091377, -0.007041244767606258, 0.014681254513561726, -0.00565084395930171, -0.04589763283729553, -0.007501833140850067, 0.020680418238043785, -0.009839319624006748, -0.026575949043035507, 0.029823098331689835, -0.021175550296902657, 0.018135666847229004, 0.003085942240431905, 0.004513766150921583, -0.02199309505522251, -0.008066054433584213, -0.02080707997083664, 0.004387104418128729, 0.01994347758591175, -0.006062494590878487, -0.006534597836434841, -0.009850834496319294, -0.004231655970215797, -0.0032788135576993227, -0.0032327547669410706, -0.024134831503033638, -0.003333508502691984, -0.04092327877879143, -0.02595415525138378, 0.04166021943092346, -0.010628077201545238, -0.04463101550936699, -0.00222377828322351, 0.015026696026325226, -0.002510206773877144, -0.013737048953771591, -0.01522244606167078, -0.0052535864524543285, 0.014623681083321571, 0.03171151131391525, -0.007622737903147936, -0.025608714669942856, -0.0020985559094697237, -0.01808960922062397, -0.02551659755408764, -0.02540144883096218, 0.01700722612440586, -0.027612274512648582, -0.011768033728003502, -0.01576363667845726, 0.03797551244497299, 0.02443421445786953, -0.006436722818762064, 0.02335183136165142, 0.010933216661214828, -0.021843403577804565, -0.0064482372254133224, -0.019678639248013496, -0.012574062682688236, 0.0028743594884872437, -0.011929239146411419, 0.02335183136165142, -0.02920130454003811, -0.0235475804656744, 0.013472210615873337, 0.009562966413795948, -0.036248307675123215, -0.016753902658820152, 0.005742961540818214, 0.027681361883878708, 0.013633416034281254, 0.006833980325609446, 0.020680418238043785, -0.013541298918426037, -0.015809696167707443, -0.006091281305998564, -0.00016795283590909094, -0.002618157071992755, 0.003799854079261422, 0.03482048213481903, -0.01081806980073452, -0.0025980062782764435, 0.0023015025071799755, -0.044561926275491714, 0.03346174582839012, -0.044838279485702515, 0.023386375978589058, 0.009850834496319294, 0.0004069730348419398, -0.07162149250507355, -0.0029132214840501547, -0.015245475806295872, -0.024111801758408546, 0.009349944069981575, -0.00025998055934906006, -0.011871665716171265, 0.002976552350446582, 0.038021571934223175, 0.019413800910115242, -0.02892495132982731, -0.03359992429614067, -0.05642207711935043, 0.007760914508253336, 0.046634573489427567, 0.02008165419101715, 0.0067994361743330956, 0.035695601254701614, 0.016385432332754135, -0.0025130854919552803, 0.01817021146416664, 0.029684921726584435, -0.006563384551554918, 0.03567257151007652, -0.016304828226566315, -0.04453889653086662, 0.00327305612154305, -0.024365125223994255, 0.003247148124501109, -0.03143515810370445, -0.01994347758591175, -0.0013378653675317764, -0.005077986977994442, 0.021739771589636803, -0.023950595408678055, -0.007818487472832203, -0.013598872348666191, 0.00886632688343525, 0.0312969796359539, -0.012044386006891727, -0.041568100452423096, -0.01825081557035446, -0.003984089475125074, -0.03567257151007652, -0.004217262379825115, 0.01803203485906124, 0.00801999494433403, 0.004102115519344807, 0.017110858112573624, -0.034452009946107864, -0.011428349651396275, 0.011290173046290874, 0.06614049524068832, 0.03355386480689049, -0.0005246389773674309, 0.009799017570912838, 0.016201196238398552, 0.03645557165145874, 0.011963783763349056, -0.004459071438759565, -0.04299592599272728, 0.04997384175658226, -0.004436041694134474, -0.008497855626046658, 0.037998542189598083, 0.043479543179273605, 0.03548833355307579, -0.011698945425450802, 0.002249686513096094, -0.004136659670621157, -0.03567257151007652, -0.00792212039232254, 0.02634565532207489, 0.000724347191862762, 0.018768977373838425, 0.029869157820940018, -0.03355386480689049, -0.005538575351238251, 0.03613315895199776, -0.00479299807921052, -0.002623914508149028, 0.010380511172115803, 0.0035551665350794792, 0.01508426945656538, -0.009470848366618156, 0.04863813519477844, 0.019045330584049225, 0.012861930765211582, 0.009286613203585148, -0.017985977232456207, 0.027750451117753983, -0.007271538954228163, -0.010173246264457703, 0.01792840287089348, 0.0036616777069866657, 0.01922956481575966, 0.014969122596085072, -0.016581181436777115, -0.0005699781468138099, 0.01012718677520752, 0.004600126296281815, 0.021670684218406677, 0.020185286179184914, 0.025194184854626656, -0.004372710827738047, 0.03825186565518379, -0.0046749720349907875, -0.010547474026679993, 0.0017833407036960125, 0.0412687212228775, 0.021233124658465385, -0.012804357334971428, 0.004885115660727024, 0.0037451593670994043, -0.0036328909918665886, 0.0013385850470513105, 0.0025994456373155117, 0.00829634815454483, -0.02207369916141033, 0.00933842919766903, 0.0068051936104893684, -0.011065635830163956, -0.0013364260084927082, 0.0021201458293944597, 0.016776932403445244, 0.0038948506116867065, 0.02717471495270729, 0.01986287347972393, 0.046058837324380875, -0.03700827807188034, -0.001386802876368165, -0.005213284865021706, -0.010921701788902283, 0.014853975735604763, -0.009436304681003094, 2.5975565222324803e-05, -0.005670994520187378, 0.01856171153485775, -0.004459071438759565, 0.039242129772901535, 0.020565271377563477, -0.017767196521162987, -0.004165446385741234, 0.04546007513999939, -0.00808908324688673, -0.026691097766160965, -0.019068358466029167, -0.037860363721847534, -0.004528159741312265, -0.006908825598657131, 0.012942533940076828, -0.00105071731377393, -0.004790119361132383, 0.05213860422372818, 0.004076207056641579, -0.028994038701057434, -0.005786141846328974, -0.021509477868676186, 0.007876061834394932, 0.01130168791860342, -0.005397520028054714, 0.003503350308164954, -0.009758716449141502, -2.896669138863217e-05, 0.02443421445786953, -0.032402392476797104, 0.014577622525393963, 0.0567905493080616, 0.008428767323493958, 0.019045330584049225, -0.018711403012275696, -0.0004792997788172215, 0.007398201152682304, -0.023812418803572655, 0.021624624729156494, 0.0263226255774498, -0.034590188413858414, 0.002887313487008214, 0.026714125648140907, 0.015095784328877926, -0.006701561156660318, 0.017099343240261078, -0.0078069730661809444, -0.010927459225058556, -0.03956454247236252, -0.01480791624635458, -0.003385324729606509, 0.014427931047976017, 0.0005778945051133633, 0.011802577413618565, -0.01848110929131508, 0.0005753756267949939, 0.03320842236280441, 0.0268753319978714, -0.01522244606167078, -0.025631744414567947, 0.01582121104001999, 0.01936774142086506, 0.013483725488185883, 0.0021316607017070055, 0.005354340188205242, 0.022062184289097786, -0.002384984167292714, -0.009643569588661194, 0.0012810115003958344, -0.004401498008519411, 0.005656600929796696, 0.0139212841168046, 0.013829166069626808, 0.007789701223373413, -0.00032493070466443896, -0.012171047739684582, 0.05121742933988571, -0.02127918414771557, 0.006281273905187845, -0.011146239005029202, -0.02254580147564411, -0.03286297991871834, 0.001649482175707817, 0.0061027961783111095, 0.015383652411401272, -0.01494609285145998, -0.0587250180542469, 0.02468753792345524, 0.0171799473464489, 0.020899198949337006, -0.01875746250152588, 0.011002304963767529, 0.026253538206219673, -0.0073233554139733315, -0.012919504195451736, -0.005432064179331064, 0.023651214316487312, -0.0382288359105587, 0.028164979070425034, 0.022338537499308586, 0.0007455774466507137, -0.053566429764032364, 0.0018121274188160896, 0.005596148781478405, 0.02207369916141033, -0.0025087674148380756, -0.022234903648495674, -0.011940754018723965, 0.0023015025071799755, -0.034475039690732956, 0.009574481286108494, 0.05462578311562538, 0.027105625718832016, 0.012424372136592865, 0.0006710916641168296, 0.05545484274625778, -0.03272480517625809, -0.007985451258718967, 0.04753272235393524, 0.00826756190508604, -0.016995711252093315, -0.025746891275048256, 0.00037170923314988613, 0.041153572499752045, -0.017916887998580933, -0.017329638823866844, 0.006315818056464195, 0.020150741562247276, -0.0065518696792423725, -0.008411495015025139, -0.030767304822802544, -0.0022784732282161713, -0.04290380701422691, -0.0016336494591087103, 0.013126769103109837, 0.011284415610134602, -0.021509477868676186, 0.007208208087831736, 0.0286716278642416, 0.010219304822385311, 0.035534393042325974, -0.004735424183309078, 0.019690154120326042, -0.010190517641603947, 0.002192112850025296, 0.020795565098524094, -0.045529160648584366, -0.04527583718299866, 0.0036069827619940042, 0.002937690354883671, 0.044423751533031464, 0.0043007442727684975, -0.04423951357603073, 0.02429603785276413, -0.0013191539328545332, -0.009862348437309265, 0.022488227114081383, -0.0050751082599163055, 0.001111889141611755, 0.011658643372356892, -0.019494403153657913, 0.029316451400518417, 0.03956454247236252, 0.011750761419534683, -0.0034831997472792864, -0.0016782688908278942, 0.0004706637701019645, 0.005325553007423878, -0.0024339216761291027, 0.018135666847229004, -0.010409297421574593, -0.0012716557830572128, -0.009954466484487057, 0.014047945849597454, -0.016466034576296806, 0.005624935496598482, 0.02008165419101715, 0.016063019633293152, -0.01952894777059555, -0.02205066941678524, 7.462071516783908e-05, 0.03484351187944412, -0.011295930482447147, 0.00210143462754786, 0.01692662388086319, -0.0055155460722744465, -5.860807141289115e-05, -0.008958443999290466, 0.021371301263570786, -0.03726160153746605, 0.0382288359105587, -0.01556788757443428, -0.005535696633160114, -0.014508534222841263, 0.012539518997073174, 0.007501833140850067, 0.012044386006891727, -0.013725534081459045, 0.0013817651197314262, 0.01268921047449112, -0.003247148124501109, 0.02593112550675869, 0.009942951612174511, 0.01789385825395584, -0.06061343103647232, -0.01033445168286562, 0.004988748114556074, -0.02717471495270729, -0.0003889812796842307, -0.03511986508965492, 0.014024916104972363, 0.02191249281167984, -0.004879358224570751, 0.00537449074909091, 0.0055990274995565414, -0.007329112850129604, -0.011716216802597046, 0.0033306297846138477, 0.006707318592816591, -0.002174840774387121, -0.033093277364969254, -0.030352775007486343, 0.028487391769886017, -0.03640951216220856, 0.012136504054069519, -0.03401445224881172, -0.020381035283207893, -0.004663457628339529, -0.01023657713085413, -0.0014911548933014274, 0.028740715235471725, -0.016016962006688118, -0.010155973955988884, -0.019563492387533188, 0.026990478858351707, 0.0066209579817950726, 0.02636868506669998, 0.014750342816114426, 0.023674242198467255, 0.0016854656860232353, -0.018469594419002533, 0.02063436061143875, 0.0017603111919015646, 0.0135067543014884, 0.03875851258635521, -0.011681673116981983, -0.023110022768378258, 0.002956401789560914, 0.007121847942471504, -0.0031118502374738455, -0.004772847052663565, -0.019908932968974113, -0.026691097766160965, -0.00966659840196371, -0.010288393124938011, -0.016212711110711098, -0.03247148171067238, -0.03152727335691452, 0.00617188448086381, -0.007265781983733177, -0.018607771024107933, -0.005230556707829237, 0.025332361459732056, 0.004280593246221542, -0.0047095161862671375, -0.002215142361819744, -0.04437769204378128, 4.030148556921631e-05, -0.0019891660194844007, -0.03244845196604729, -0.007830002345144749, -0.031619392335414886, 0.021820375695824623, -0.012435886077582836, 0.053290076553821564, -0.005293887574225664, 0.013621901161968708, -0.009522665292024612, 0.014024916104972363, 0.05504031106829643, -0.021256154403090477, 0.00857270136475563, 0.0019718939438462257, 0.03845912963151932, 0.019356226548552513, -0.062317609786987305, 0.0235475804656744, -0.02088768407702446, 0.03438292443752289, 0.008123627863824368, -0.023086993023753166, 0.004767089616507292, 0.024203918874263763, -0.03578771650791168, 0.0031118502374738455, -0.03155030310153961, -0.011641371063888073, 0.016005447134375572, 0.007691826205700636, -0.0010629516327753663, 0.011169268749654293, 0.016949651762843132, -0.009182981215417385, 0.018469594419002533, -0.00912540778517723, -0.009908407926559448, -0.016189681366086006, -0.019494403153657913, -0.00617188448086381, 0.009729929268360138, -0.027428038418293, -0.026138391345739365, -0.030537009239196777, -0.016166651621460915, 0.017985977232456207, -0.008900870569050312, 0.00774939963594079, 0.018377477303147316, -0.019690154120326042, -0.014047945849597454, -0.02540144883096218, 0.010190517641603947, -0.038574278354644775, 0.0360180102288723, 0.011272900737822056, -0.025194184854626656, -0.0019301532302051783, -0.014024916104972363, -0.04368680715560913, 0.028901921585202217, -0.021981580182909966, -0.023167595267295837, -0.0020726476795971394, 0.041452955454587936, -0.0282570980489254, 0.004410133697092533, 0.012320739217102528, 0.012401342391967773, 0.014070975594222546, -0.017410241067409515, -0.04338742792606354, 0.034613218158483505, 0.0042662001214921474, -0.014934578910470009, -0.03551136329770088, -0.024917831644415855, -0.004058935213834047, -0.024249978363513947, 0.004033027216792107, -0.005806292407214642, 0.0142667256295681, -0.01848110929131508, -0.028740715235471725, -0.010288393124938011, -0.019183507189154625, 0.028349215164780617, 0.0004109312139917165, -0.012067415751516819, -0.006281273905187845, -0.00973568670451641, -0.025839008390903473, 0.002959280274808407, 0.027796508744359016, -0.021947037428617477, -0.017467815428972244, -0.01112320926040411, -0.0025087674148380756, 0.009827804751694202, 0.005135560408234596, 0.01133047416806221, -0.03440595418214798, -0.006500053685158491, -0.04191354289650917, -0.012067415751516819, -0.012286195531487465, 0.04009421914815903, -0.024273008108139038, -0.004663457628339529, 0.02429603785276413, -0.005578876938670874, -0.014830945990979671, 0.006937612779438496, -0.013702504336833954, 0.014819431118667126, -0.026391714811325073, 0.0037307660095393658, 0.05186225101351738, -0.019218049943447113, 0.012401342391967773, 0.022234903648495674, -0.018768977373838425, 0.002442557830363512, -0.005106773693114519, 0.037215542048215866, 0.03523501008749008, -0.025009948760271072, 0.0030254898592829704, 0.02841830439865589, -0.0051844981499016285, -0.004018633626401424, 0.024226948618888855, -0.005826442968100309, -0.052507076412439346, 0.005575998220592737, 0.028740715235471725, -0.02936250902712345, -0.006810950580984354, 0.04262745380401611, 0.011595312505960464, 0.013460695743560791, -0.011065635830163956, -0.011313201859593391, -0.033645980060100555, -0.004061813931912184, -0.010927459225058556, 0.03592589497566223, 0.006845494732260704, 0.01825081557035446, -0.003915001172572374, -0.023029418662190437, -0.01842353492975235, -0.019344711676239967, 0.020599815994501114, 0.007415472995489836, -0.029800068587064743, -0.0066152005456388, 0.031020628288388252, -0.015164872631430626, 0.018412020057439804, 0.03429080545902252, 0.029800068587064743, 0.005774626974016428, -0.003385324729606509, 0.00554721150547266, -0.02249974198639393, 0.10280332714319229, 0.023144567385315895, -0.03673192486166954, -0.03155030310153961, -0.027543185278773308, -0.008054539561271667, -0.00799120869487524, -0.013495239429175854, -0.027819538488984108, -0.0006163967773318291, 0.04221292585134506, -0.03769915923476219, -0.023432433605194092, 0.013149798847734928, -0.03942636772990227, -0.00896420143544674, 0.002642625942826271, -0.02122160978615284, 0.0132304010912776, 0.0007894772570580244, -0.0529216043651104, 0.043755896389484406, 0.029385538771748543, -0.00896420143544674, -0.015303049236536026, -0.0008974276715889573, -0.017041770741343498, 0.010253848508000374, 0.017824770882725716, -0.006667017005383968, -0.004738302901387215, -0.03675495460629463, 0.001170182367786765, 0.01783628575503826, 0.05715901777148247, -0.03424474596977234, -0.008952686563134193, 0.011088665574789047, -0.032010894268751144, 0.030813362449407578, -0.017329638823866844, 0.011267143301665783, -0.035534393042325974, -0.024065744131803513, 0.027335921302437782, 0.0526452511548996, -0.015809696167707443, -0.014450960792601109, -8.766472456045449e-05, 0.022960331290960312, 0.02374333143234253, -0.023927567526698112, 0.010086885653436184, 0.013806137256324291, -0.025032978504896164, 0.02662200853228569, 0.02977703884243965, -0.022925786674022675, 0.007513348013162613, -0.045920662581920624, 0.010691408067941666, 0.006407936103641987, 0.03647860139608383, -0.04324924945831299, 0.036662835627794266], [0.050253987312316895, -0.015869101509451866, 0.06277355551719666, 0.026115380227565765, -0.013991166837513447, -0.009202980436384678, -0.023611467331647873, -0.035559967160224915, 0.018076499924063683, 0.007116386201232672, 0.020964786410331726, 0.040633685886859894, -0.02118442766368389, -0.05429539084434509, 0.027235552668571472, 0.047793999314308167, 0.028597328811883926, 0.015111338347196579, 0.014858750626444817, 0.024907352402806282, 0.02157978154718876, 0.00636411365121603, -0.021898262202739716, 0.005952286068350077, -0.020031308755278587, -0.0799495205283165, -0.006001705303788185, -0.04608079791069031, 0.006309203337877989, -0.05051755532622337, 0.034835148602724075, -0.0280921533703804, 0.02561020478606224, -0.01689043454825878, -0.00532356183975935, -0.0073799560777843, 0.03167231008410454, -0.024226462468504906, -0.002723555313423276, -0.011750822886824608, -0.06527746468782425, -0.05240647494792938, 0.01857069320976734, 0.0027894475497305393, 0.009071195498108864, 0.07252564281225204, -0.006929690949618816, 0.009373202919960022, -0.022084956988692284, 0.043115634471178055, 0.025083065032958984, 0.03085963800549507, 0.043269384652376175, 0.026708412915468216, 0.03182606026530266, 0.008143210783600807, -0.0031326375901699066, 0.032946232706308365, 0.0637839064002037, -0.019416313618421555, -0.04116082563996315, 0.021195409819483757, -0.050693269819021225, 0.014397503808140755, -0.021195409819483757, -0.028289832174777985, -0.04520222917199135, 0.020833000540733337, -0.042390819638967514, -0.02908054180443287, 0.023787179961800575, -0.0018518527504056692, -0.011619037948548794, 0.0005552812945097685, 0.0052411966025829315, 0.0006977050798013806, -0.014540270902216434, 0.03867887705564499, 0.030486246570944786, 0.01883426308631897, -0.05091290920972824, 0.03621889278292656, -0.015550621785223484, -0.002133268630132079, -0.014606162905693054, -0.02051451988518238, -0.04263242334127426, 0.03068392351269722, -0.025280741974711418, -0.014935625717043877, -0.0005178736173547804, -0.011366450227797031, -0.01929550990462303, 0.05772179737687111, -0.016286421567201614, -0.015759281814098358, -0.0019383366452530026, -0.049682918936014175, 0.0007399174501188099, 0.026378950104117393, -0.000871702388394624, 0.004381848964840174, -0.013727596960961819, -0.03386872634291649, -0.011739840731024742, -0.035428181290626526, -0.01412295177578926, -0.02574198879301548, 0.006100544240325689, -0.01433161087334156, -0.045026518404483795, 0.030947493389248848, 0.030618032440543175, 0.06031356751918793, 0.013354206457734108, 0.008165174163877964, 0.05728251487016678, -0.014748929999768734, -0.007934550754725933, -0.021404068917036057, 0.011267611756920815, -0.017406592145562172, -0.004431268200278282, -0.07814846187829971, -0.022216742858290672, 0.004996845033019781, -0.012563496828079224, -0.024490032345056534, 0.039359766989946365, 0.014584198594093323, 0.026576627045869827, -0.00745133962482214, 0.0895698219537735, -0.07502955198287964, -0.05029791593551636, 0.014661073684692383, -0.024621818214654922, -0.007599597796797752, -0.0024572398979216814, 0.03156249225139618, 0.040501900017261505, 0.023325933143496513, -0.0007639407413080335, -0.004675619304180145, -0.06554103642702103, 0.016539009287953377, -0.0004317329148761928, -0.010163912549614906, -0.006149963475763798, -0.030639996752142906, -0.03670210391283035, 0.02995910681784153, -0.04726685956120491, -0.021404068917036057, 0.023677358403801918, -0.007896113209426403, 0.010504357516765594, 0.004228099714964628, 0.007544687017798424, 0.006182909477502108, 0.021349158138036728, -0.011531181633472443, 0.07401920109987259, 0.004538343288004398, 0.010240787640213966, -0.009554407559335232, -0.01367268618196249, 0.0026906090788543224, -0.03683388605713844, -0.016747668385505676, -0.04814542829990387, 0.034549616277217865, -0.0325508788228035, -0.03995279595255852, -0.06229034438729286, -0.024511996656656265, 0.005979740992188454, -0.028267867863178253, 0.06360819190740585, -0.04810149967670441, 0.03305605426430702, 0.029783394187688828, 0.025544311851263046, -0.06453068554401398, 0.004318702034652233, 0.014386521652340889, -0.0004135438648518175, 0.026071451604366302, -0.02152487263083458, -0.0019246090669184923, 0.017779983580112457, 0.021206391975283623, 0.011816714890301228, -0.018790334463119507, 0.0329023040831089, 0.017549360170960426, -0.02398485690355301, 0.0055679134093225, 0.024050749838352203, -0.01937238499522209, 0.033539265394210815, -0.03650442510843277, -0.00930181983858347, 0.00661670183762908, -0.06822066754102707, 0.0008593475795350969, -0.020789071917533875, 0.004173189401626587, 0.03780031204223633, -0.05697501823306084, 0.02110755257308483, -0.03070588782429695, -0.024907352402806282, 0.020734163001179695, -0.006133490242063999, -0.007978479377925396, 0.015748299658298492, 0.053328968584537506, -0.002586279297247529, -5.641184179694392e-05, 0.014430449344217777, -0.005213741213083267, 0.04643222317099571, -0.03507675603032112, -0.02923429012298584, 0.0028114118613302708, -0.00967521034181118, -0.050825055688619614, -0.019097832962870598, -0.09769655764102936, 0.009461059235036373, 0.020580412819981575, 0.020316842943429947, -0.015715353190898895, 0.029344111680984497, -0.01367268618196249, -0.03389069065451622, -0.011575109325349331, -0.0131565285846591, -0.01002663653343916, 0.013694650493562222, -0.019624972715973854, -0.018362034112215042, -0.0718667134642601, -0.0002661437902133912, -0.018274176865816116, -0.0052878702990710735, -0.03217748552560806, 0.04669579491019249, 0.014342593029141426, 0.00893941055983305, -0.00034473426057957113, 0.025983594357967377, -0.05442717671394348, -0.03922798112034798, 0.023809144273400307, -0.006935182027518749, -0.056096453219652176, 0.03200177475810051, 0.013826435431838036, -0.0238750372081995, 0.007901604287326336, -0.02835572324693203, 0.004779949318617582, -0.06171927601099014, 0.0026425623800605536, 0.004173189401626587, -0.018460871651768684, -0.017197933048009872, 0.07081243395805359, -0.01790078543126583, 0.014726965688169003, 0.03244105726480484, -0.025807881727814674, -0.07024136930704117, 0.017263825982809067, 0.0033769886940717697, -0.024182533845305443, 0.030464282259345055, 0.013859381899237633, 0.009076686576008797, 0.027740728110074997, 0.00031573473825119436, -0.010949131101369858, -0.009038249962031841, -0.007841203361749649, 0.0238750372081995, 0.005666751880198717, 0.011673948727548122, 0.03507675603032112, 0.034681402146816254, -0.026444843038916588, 0.038459233939647675, -0.010432973504066467, 0.009631281718611717, 0.013123582117259502, 0.004554816521704197, -0.020997732877731323, 0.04465312510728836, 0.02413860708475113, -0.001060456852428615, 0.025061100721359253, 0.009307310916483402, -0.002531368751078844, -0.010630651377141476, -0.012925905175507069, -0.009142579510807991, -0.03593335673213005, 0.002704336540773511, -0.001290394109673798, 0.06277355551719666, 0.02194219082593918, -0.05596466735005379, 0.01958104409277439, -0.04041404649615288, -0.0059193396009504795, -0.019152743741869926, 0.00034765139571391046, -0.011245647445321083, -0.01572633534669876, 0.010032127611339092, 0.018438907340168953, 0.007083439733833075, -0.007050493732094765, -0.010696543380618095, 0.009801504202187061, -0.028421616181731224, 0.03226534277200699, -0.03417622670531273, 1.529340079287067e-05, -0.010751454159617424, 0.022886648774147034, 0.030354462563991547, -0.010394535958766937, 0.014079023152589798, 0.005754608660936356, -0.02175549603998661, 0.02572002448141575, -0.009186508134007454, -0.001203223830088973, -0.03894244506955147, -0.007264644373208284, -0.03487907722592354, -0.028992684558033943, 0.007819239050149918, 0.03369301185011864, 0.041797786951065063, 0.029563752934336662, 0.011586091481149197, 0.0324849858880043, 0.01852676458656788, 0.05306539684534073, 0.04337920621037483, 0.01702222041785717, -0.012860012240707874, 0.0149685712531209, 0.04436759278178215, -0.0059193396009504795, 0.016593918204307556, 0.04149029031395912, -0.023062363266944885, -0.047222934663295746, 0.011443324387073517, 0.0497707761824131, -0.013870364055037498, -0.006512371823191643, -0.0012938260333612561, -0.03244105726480484, 0.039359766989946365, 0.028860898688435555, 0.0742388442158699, -0.008456199429929256, -0.0361090712249279, -0.0012327381409704685, 0.006962636951357126, 0.008000443689525127, 0.010273733176290989, 0.014177861623466015, -0.03182606026530266, -0.0018532255198806524, 0.008417761884629726, 0.012277962639927864, -0.008994321338832378, 0.030420353636145592, 0.022732900455594063, 0.04770614579319954, -0.03272658959031105, 0.027169659733772278, 0.04832113906741142, 0.003385225310921669, 0.02209593914449215, -0.03604317829012871, 0.010147439315915108, 0.027828583493828773, -0.0031546016689389944, 0.02326004020869732, 0.04915577918291092, 0.026730377227067947, -0.010630651377141476, -0.03769049048423767, 0.0113444859161973, -0.034681402146816254, 0.012113231234252453, -0.033363550901412964, -0.03900833800435066, -0.01984461396932602, 0.03400051221251488, -0.010389044880867004, 0.027828583493828773, 0.010037618689239025, 0.017999624833464622, 0.03529639542102814, -0.004359884653240442, 0.01186064351350069, 0.025785917416214943, -0.001779096550308168, -0.036570318043231964, 0.052142903208732605, -0.013650721870362759, 0.023479681462049484, 0.058248937129974365, 0.018010606989264488, -0.015967940911650658, 0.01272822730243206, -0.03850316256284714, 0.014024113304913044, 0.007506249938160181, -0.0024874405935406685, -0.024775566533207893, -0.0437745600938797, -0.0389644093811512, 0.02354557439684868, 0.0073799560777843, 0.05543752759695053, -0.02201906591653824, 0.005161576438695192, -0.07182278484106064, 0.019570061936974525, -0.028158046305179596, 0.00905472319573164, -0.0006071029929444194, 0.01001016329973936, 0.04304974526166916, 0.009455569088459015, -0.05662359297275543, 0.0001820622564991936, -0.023325933143496513, 0.011454306542873383, -0.0015361180994659662, -0.001941082184202969, 0.03009089268743992, -0.001041238196194172, -0.010301188565790653, 0.013211439363658428, -0.025654133409261703, 0.01418884377926588, -0.004052386619150639, -0.046476151794195175, -0.0023007451090961695, -0.015210176818072796, -0.028421616181731224, -0.008802135474979877, 0.054163604974746704, -0.019756756722927094, -0.03872280567884445, 0.012881976552307606, -0.049111850559711456, -0.03292426839470863, -0.03303408995270729, -0.030574103817343712, -0.02036077156662941, -0.0035609386395663023, 0.018933100625872612, -0.030464282259345055, -0.016517044976353645, 0.01047690212726593, -0.025346634909510612, -0.025566276162862778, -0.01645115204155445, 0.01541883684694767, 0.019734792411327362, 0.04915577918291092, -0.062334273010492325, -0.04392831027507782, 0.023940928280353546, 0.027982333675026894, 0.056360021233558655, 0.006797906011343002, -0.07217421382665634, -0.04687150567770004, -0.01782391220331192, -0.016308385878801346, 0.03654835373163223, -0.008236558176577091, -0.02690608985722065, -0.020986750721931458, -0.015880083665251732, -0.009521461091935635, 0.02763090655207634, -0.004664637614041567, 0.004719547927379608, -0.04625650867819786, -0.007517232093960047, -0.02604948729276657, 0.028399651870131493, -0.04318152740597725, -0.0312989205121994, 0.029563752934336662, -0.02765287086367607, -0.010136457160115242, -0.04164403676986694, 0.01645115204155445, 0.02503913640975952, 0.004969390109181404, -0.018845245242118835, -0.024951279163360596, 0.036438532173633575, 0.031101243570446968, -0.062466055154800415, 0.018515782430768013, -0.02110755257308483, 0.0027263006195425987, 0.013431080617010593, -0.025192884728312492, 0.022601114585995674, 0.013409116305410862, -0.017889803275465965, -0.03549407422542572, 0.007676471956074238, -0.006182909477502108, 0.02253522351384163, -0.06193891540169716, -0.032221414148807526, -0.0113444859161973, 0.02201906591653824, 0.012563496828079224, -0.010021145455539227, -0.0005237078294157982, -0.03566978871822357, 0.002411938738077879, -0.01280510239303112, -0.02284272015094757, 0.04814542829990387, -0.014232772402465343, 0.0010192741174250841, -0.01418884377926588, 0.023633429780602455, -0.0071548232808709145, 0.018043553456664085, -0.008115755394101143, 0.018537746742367744, 0.028311796486377716, 0.01984461396932602, 0.015056428499519825, -0.02427039109170437, 0.031628381460905075, 0.03635067492723465, -0.028707150369882584, 1.994791455217637e-05, -0.005087447352707386, 0.03342944383621216, 0.0029212324880063534, -0.017790965735912323, -0.015243123285472393, 0.0073964293114840984, 0.041248682886362076, -0.022282635793089867, -0.022579150274395943, 0.014836786314845085, -0.00866485945880413, -0.03593335673213005, 0.008824098855257034, 0.019646937027573586, -0.006611210759729147, 0.02776269242167473, 0.006144472397863865, 0.06171927601099014, -0.034813184291124344, 0.010905202478170395, -0.0008305195951834321, -0.007066966965794563, -0.0012807847233489156, -0.05310932546854019, -0.014737947843968868, -0.037031564861536026, -0.0036570318043231964, 0.0057765725068748, -1.7073698472813703e-05, -0.017164986580610275, 0.014452413655817509, -0.047222934663295746, -0.03922798112034798, -0.022205760702490807, 0.004977626726031303, 0.011882607825100422, -0.001964419148862362, -0.012508586049079895, 0.008307941257953644, -0.014957589097321033, 0.006759468466043472, 0.0045905085280537605, 0.0005556244868785143, -0.01091618463397026, 0.06822066754102707, -0.03024464100599289, -0.04476294666528702, 0.0014304155483841896, -0.011805733665823936, 0.013782506808638573, 0.007797274738550186, 0.039491549134254456, -0.010531811974942684, -0.03241909295320511, -0.06198284402489662, -0.01527606975287199, -0.0037888167425990105, -0.021096570417284966, -0.009543425403535366, -0.016484098508954048, -0.008489145897328854, -0.04946327582001686, 0.049814704805612564, 0.04814542829990387, -0.03417622670531273, -0.02659859135746956, 0.017714090645313263, -0.018691495060920715, 0.012255998328328133, -0.08895482867956161, -0.008763697929680347, -0.02965160831809044, -0.05961071699857712, -0.007934550754725933, -0.039491549134254456, -0.013914291746914387, 0.019416313618421555, 0.01961399056017399, 0.002436648355796933, 0.005117648281157017, 0.002221125178039074, -0.0026480534579604864, 0.019778721034526825, 0.01898801140487194, -0.0538121797144413, 0.04709114879369736, -0.035252466797828674, -0.01808748207986355, 0.03494497016072273, 0.04381848871707916, 0.0296955369412899, 0.004785440396517515, 0.025214849039912224, 0.03459354490041733, -0.01652802713215351, 0.01614365354180336, -0.02444610372185707, -0.019009975716471672, 0.014891697093844414, 0.026971982792019844, 0.008489145897328854, -0.04713507741689682, -0.007083439733833075, 0.026730377227067947, -0.008450708352029324, 0.03303408995270729, 0.015506693162024021, 0.004650909919291735, -0.00239958381280303, 0.030178748071193695, -0.0006626997492276132, -0.02116246335208416, 0.007670980878174305, 0.009977217763662338, -0.04170992970466614, -0.006413533352315426, 0.032638732343912125, -0.04700329154729843, 0.008307941257953644, 0.015056428499519825, 0.013343224301934242, 0.0140460766851902, 0.008093791082501411, 0.0037833256646990776, -0.020865947008132935, -0.0015196449821814895, -0.00835736095905304, 0.057985369116067886, 0.007813747972249985, 0.02372128702700138, 0.0353403240442276, 0.01715400442481041, 0.0018916628323495388, 0.0006088188965804875, -0.011168772354722023, 0.04682757705450058, 0.011245647445321083, -0.022754864767193794, 0.007583124563097954, -0.01614365354180336, -0.026840196922421455, -0.0045520709827542305, -0.01169591210782528, 0.001779096550308168, -0.05921536311507225, -0.02574198879301548, -0.04612472653388977, -0.021722549572587013, 0.0274991225451231, 0.018537746742367744, 0.0022046519443392754, -0.007544687017798424, 0.02793840505182743, -0.048365067690610886, -0.00876918900758028, -0.019460240378975868, 0.008917447179555893, 0.0004138870572205633, 0.01870247721672058, -0.010180385783314705, 0.014002148993313313, -0.011608055792748928, 0.01016940362751484, -0.03356122970581055, -0.010054091922938824, 0.041841715574264526, -0.00959833525121212, 0.025698062032461166, 0.01214617770165205, -0.005002336110919714, 0.024094678461551666, 0.010070565156638622, 0.02427039109170437, 0.0097411023452878, 0.0037833256646990776, -0.024753602221608162, -0.017703108489513397, -0.03536228835582733, 0.028751078993082047, -0.008126737549901009, -0.02732340805232525, -0.030925530940294266, -0.0231062900274992, -0.013980184681713581, -0.033671047538518906, 0.013178492896258831, -0.01332125999033451, -0.01772507280111313, 0.03197981044650078, -0.006732013542205095, 0.014386521652340889, 0.012014392763376236, 0.005271397065371275, -0.04001868888735771, -0.01346402708441019, 0.03545014560222626, 0.028311796486377716, 0.016626864671707153, -0.0340883694589138, 0.004768967162817717, 0.022930577397346497, -0.02558824047446251, 0.00661670183762908, -0.01029569748789072, -0.006490407977253199, -0.0048870244063436985, -0.04717900604009628, -0.041995465755462646, 0.005403182003647089, 0.04959506168961525, -0.01891113817691803, -0.019910506904125214, -0.023523610085248947, 0.043445099145174026, 0.02240343764424324, 0.005103920586407185, -0.0021003223955631256, -0.0034291537012904882, 0.041226718574762344, 0.006935182027518749, -0.0494193471968174, 0.005375727079808712, -0.0494193471968174, 0.0019479460315778852, 0.03681192174553871, -0.0005806773551739752, 0.018427925184369087, -0.014814822003245354, 0.012157159857451916, -0.0006644157110713422, 0.014924643561244011, -0.030068928375840187, 0.015814190730452538, -0.028597328811883926, -0.012475639581680298, -0.007918077521026134, 0.019811667501926422, 0.03138677775859833, -0.014946606941521168, -0.03156249225139618, -0.0021950427908450365, 0.04052386432886124, -0.02013014815747738, 0.0038849099073559046, 0.03852512687444687, 0.03422015160322189, 0.02051451988518238, -0.03011285699903965, -0.015210176818072796, 0.01759328879415989, 0.016033833846449852, 0.011608055792748928, -0.0021099315490573645, 0.006336658727377653, 0.02664251998066902, 0.005661260802298784, -0.04012851044535637, 0.004851332865655422, 0.017263825982809067, -0.007039511576294899, -0.050253987312316895, 0.0015196449821814895, -0.03417622670531273, -0.001893035601824522, 0.008544056676328182, 0.01541883684694767, 0.024973243474960327, -0.03929387405514717, 0.03349533677101135, 0.005101175047457218, -0.0007653135107830167, -0.009774048812687397, 0.004472450818866491, -0.04234689101576805, 0.000376136158592999, -0.015089374035596848, 0.0131565285846591, -0.01272822730243206, -0.008544056676328182, -0.015869101509451866, -0.0020742397755384445, -0.008159683085978031, -0.013738579116761684, -0.024072714149951935, -0.036416567862033844, 0.0008607202908024192, -0.014628127217292786, -0.0035032827872782946, -0.00800593476742506, -0.023787179961800575, 0.0140460766851902, 0.0022485803347080946, -0.012750191614031792, -0.06136784702539444, -0.012794120237231255, -0.05117648094892502, 0.003390716388821602, -0.0024284119717776775, 0.0012849030317738652, -0.008675841614603996, -0.05007827281951904, 0.0018504800973460078, 0.012091266922652721, -0.009126106277108192, 0.014880714938044548, 0.016835523769259453, -0.02271093614399433, 0.015298034064471722, 0.015363926067948341, -0.022150849923491478, -0.00037339061964303255, 0.06492604315280914, 0.0038299995940178633, 0.02721358835697174, -0.010910693556070328, -0.013046707957983017, 0.013639739714562893, 0.006430006120353937, -0.007923568598926067, 0.004121024627238512, 0.027103766798973083, 0.04131457582116127, 0.016978291794657707, 0.023611467331647873, 0.041380468755960464, -0.0149685712531209, -0.02732340805232525, 0.01764819771051407, 0.005798536818474531, 0.0441918782889843, 0.013211439363658428, 0.0035993759520351887, -0.0021648420952260494, 0.0006795160588808358, -0.0070230383425951, -0.008802135474979877, 0.00501331826671958, -0.034110333770513535, 0.0037174331955611706, 0.010405518114566803, 0.00814870186150074, -0.028465544804930687, 0.01608874276280403, -0.017373645678162575, -0.006781432777643204, -0.004148479551076889, 0.020525502040982246, -0.00476622162386775, 0.000892980198841542, -0.01591303013265133, 0.023677358403801918, -0.006419024430215359, -0.0004931639414280653, 0.0003352965577505529, -0.024907352402806282, 0.09066803008317947, 0.053153254091739655, 0.0015786736039444804, -0.016099724918603897, 0.01447437796741724, -0.016044816002249718, 0.029607681557536125, 0.005710680037736893, 0.0029349601827561855, 0.013683668337762356, -0.016681775450706482, -0.01395822037011385, 0.02618127316236496, -0.00897784810513258, 0.03211159259080887, -0.05280182883143425, -0.045026518404483795, 0.008922938257455826, -0.000181375871761702, -0.0008243421907536685, -0.005809518974274397, 0.0030832181219011545, -0.013540901243686676, -0.005935812834650278, 0.003151856129989028, -0.016396241262555122, -0.019130779430270195, 0.030925530940294266, 0.06167534738779068, -0.03692174330353737, 0.0016253474168479443, -0.018252212554216385, 0.002424293663352728, -0.01095462217926979, 0.0485847108066082, 0.023831108585000038, 0.024116642773151398, -0.008428744040429592, 0.010032127611339092, 0.03646049648523331, -0.002304863417521119, 0.007297590374946594, 0.07766525447368622, -0.017527395859360695, -0.0031738204415887594, -0.01418884377926588, 0.00494193471968174, 0.024621818214654922, 0.0022307345643639565, -0.012969833798706532, 0.004099060315638781, 0.023457717150449753, -0.028707150369882584, -0.01808748207986355, -0.0026851180009543896, 0.012750191614031792, -0.0031683293636888266, -0.02615930885076523, 0.028399651870131493, 0.013540901243686676, -0.006775941699743271, 0.01221206970512867, -0.03211159259080887, -0.008373834192752838, 0.006907726638019085, -0.005298852454870939, 0.01627543941140175, 0.01235483679920435, 0.008088300004601479, 0.00709442188963294, 0.0005638610455207527, 0.02328200452029705, 0.03314391151070595, 0.020975768566131592, 0.02175549603998661, -0.02604948729276657, 0.022348526865243912, 0.03233123570680618, -0.0038107808213680983, 0.040370117872953415, 0.040216367691755295, 0.02354557439684868, 0.03762459754943848, -0.014298664405941963, 0.009378693997859955, 0.007830221205949783, 0.01287099439650774, 0.010872256942093372, 0.034988898783922195, 0.028136081993579865, -0.006748486775904894, 0.018405960872769356, 0.016824543476104736, -0.037580668926239014, -0.01645115204155445, -0.005842464976012707, 0.02356753870844841, -0.03158445283770561, -0.007550178095698357, 0.039799049496650696, -0.015583568252623081, -0.003426408162340522, -0.01468303706496954, -0.012321891263127327, -0.04425777122378349, 0.006979110185056925, -0.02100871503353119, 0.027894476428627968, -0.016615882515907288, 0.039184052497148514, -0.011300557292997837, -0.026686448603868484, -0.005765590816736221, 0.02271093614399433, 0.018252212554216385, 0.014452413655817509, 0.011882607825100422, 0.009038249962031841, 0.017143022269010544, 0.00842325296252966, 0.008505619131028652, 0.02998107112944126, -0.017834894359111786, -0.0005182167515158653, -0.02038273587822914, -0.0086264219135046, 0.008401289582252502, -0.016571955755352974, -0.01329929567873478, 0.025676097720861435, 0.024511996656656265, 0.0020495301578193903, -0.04463116079568863, 0.02688412554562092, 0.007401920389384031, 0.01082832831889391, -0.014375539496541023, 0.03632871061563492, -0.06659531593322754, 0.04581722617149353, 0.0023185911122709513, -0.009872887283563614, 0.002112677088007331, -0.009356729686260223, 0.06466247141361237, 0.006144472397863865, 0.03626282140612602, -0.011827697046101093, 0.030156783759593964, -0.00657826429232955, 0.06250998377799988, -0.03272658959031105, -0.014573216438293457, 0.02173353172838688, 0.018636586144566536, 0.024819495156407356, -0.04524615779519081, -0.007649017032235861, 0.01965791918337345, 0.018713459372520447, -0.018658550456166267, 0.012936887331306934, -0.0013343223836272955, -0.0006949595990590751, -0.009241417981684208, 0.0010419245809316635, -0.04364277422428131, -0.020997732877731323, -0.003527992404997349, -0.007698436267673969, -0.013639739714562893, -0.007001074496656656, -0.007517232093960047, -0.0069516547955572605, 0.03751477599143982, 0.0033110964577645063, 0.018065517768263817, -0.0016747667687013745, 0.0011689048260450363, 0.0066551389172673225, 0.011981446295976639, -0.006062106695026159, 0.03327569365501404, -0.02442413941025734, 0.01323340367525816, -0.009312801994383335, 0.004714056849479675, 0.0208769291639328, -0.0016157381469383836, -0.017417574301362038, 0.018823280930519104, -0.030464282259345055, -0.005282379221171141, 0.05284575745463371, 0.024533960968255997, -0.005782063584774733, -0.006786923855543137, -0.0036350677255541086, 0.034988898783922195, -0.01738462783396244, 0.04188564419746399, 0.05064934119582176, -0.009916815906763077, 0.04476294666528702, -0.017494449391961098, -0.00940614938735962, -0.004626200068742037, -0.004436759278178215, -0.04770614579319954, -0.001987755997106433, 0.005477311089634895, -0.015111338347196579, 0.0025643149856477976, 0.05543752759695053, 0.02982732281088829, -0.005098429508507252, -0.0024572398979216814, -0.023633429780602455, 0.009796013124287128, -0.01447437796741724, 0.020898893475532532, 0.013354206457734108, 0.015177231281995773, 0.010630651377141476, -0.004829368554055691, 0.010432973504066467, 0.010218823328614235, 0.01127859391272068, -0.04221510514616966, -0.002591770375147462, -0.025192884728312492, 0.024028785526752472, 0.028180010616779327, 0.06079678237438202, 2.0612844309653156e-05, 0.0052027590572834015, -0.005836974363774061, 0.012486621737480164, -0.020536484196782112, -0.004299483262002468, 0.002836121479049325, -0.010888730175793171, -0.0029459423385560513, 0.01696730963885784, 0.007198751904070377, 0.04144636169075966, 0.007649017032235861, 0.009378693997859955, -0.02013014815747738, 0.01272822730243206, -0.019284527748823166, -0.01805453561246395, -0.010443955659866333, 0.006550809368491173, -0.01942729577422142, -0.0047936770133674145, -0.003324823919683695, 0.008247540332376957, -0.02196415513753891, -0.02005327306687832, -0.007478794548660517, -0.011509217321872711, 0.0061884005554020405, 0.03167231008410454, 0.005469074472784996, 0.005589877255260944, 0.015671424567699432, 0.009472041390836239, -0.03705352917313576, -0.0036295766476541758, -0.026422878727316856, -0.014452413655817509, 0.009526952169835567, 0.029893213883042336, 0.03241909295320511, -0.03274855390191078, 0.016802579164505005, 0.003904128447175026, 0.03285837545990944, 0.03432997316122055, -0.010987568646669388, -0.0020385482348501682, -0.0010913439327850938, 0.04801364243030548, 0.011805733665823936, -0.0075282142497599125, 0.0060950531624257565, 0.010185876861214638, -0.010350608266890049, -0.0002481263072695583, -0.0009266127599403262, 0.012201088480651379, 0.010586722753942013, -0.014035094529390335, -0.0037174331955611706, -0.011311539448797703, 0.010729489848017693, 0.03755870461463928, 0.026378950104117393, -0.011075424961745739, -0.012673317454755306, -0.006979110185056925, 0.02824590355157852, 0.038766734302043915, -0.00012371996126603335, 0.0041704438626766205, 0.04608079791069031, -0.01761525310575962, 0.031935881823301315, 0.005021554883569479, -0.019756756722927094, -0.013760543428361416, 0.02072318084537983, -0.02675233967602253, 0.016571955755352974, 0.015440801158547401, 0.05587681010365486, -0.028158046305179596, 0.007242680061608553, -0.03604317829012871, 0.006342149805277586, -0.007270135451108217, -0.016978291794657707, 0.041841715574264526, 0.005180795211344957, 0.02343575283885002, 0.009812486357986927, 0.02587377466261387, 0.03808584436774254, -0.013112600892782211, -0.03815173730254173, 0.009274364449083805, -0.03233123570680618, 0.018482835963368416, -0.009049232117831707, 0.0031546016689389944, 0.015748299658298492, 0.012453676201403141, 0.017066149041056633, -0.011289575137197971, -0.0008868027362041175, -0.02056943066418171, -0.01658293604850769, 0.00640255119651556, -0.005765590816736221, 0.019394349306821823, -0.005902866832911968, 0.007649017032235861, -0.01271724607795477, 0.0389644093811512, 0.009049232117831707, 0.008900973945856094, 0.008340887725353241, 0.011575109325349331, -0.01499053556472063, 0.03841530531644821, 0.025214849039912224, -0.0005267965025268495, 0.03085963800549507, -0.028575366362929344, 0.0409192219376564, 0.01965791918337345, -0.0030255622696131468, 0.030288569629192352, 0.02677430398762226, 0.020470593124628067, -0.008346378803253174, -0.018922118470072746, 0.028158046305179596, -0.011564127169549465, -0.0009327902225777507, -0.0012855894165113568, 0.0006500016897916794, -0.007841203361749649, -0.0008531701168976724, 0.013936256058514118, -0.005705189425498247, -0.009483023546636105, 0.02312825433909893, -0.002763365162536502, -0.03167231008410454, -0.010246277786791325, 0.0045905085280537605, 0.02664251998066902, 0.0055679134093225, -0.0034071896225214005, -0.02514895796775818, -0.009719138965010643, -0.0038958920631557703, -0.007830221205949783, -0.03461550921201706, 0.027718763798475266, -0.03668013960123062, 0.0024956772103905678, 0.005710680037736893, -0.041226718574762344, 0.02064630575478077, 0.038327451795339584, -0.003374243387952447, 0.012321891263127327, -0.002822393784299493, 0.03406640514731407, 0.0018696986371651292, 0.004099060315638781, -0.028729114681482315, 0.024050749838352203, 0.03580157086253166, -0.05451503396034241, 0.014957589097321033, -0.017164986580610275, 0.010729489848017693, -0.004969390109181404, -0.043840453028678894, 0.012332872487604618, 0.01169591210782528, -0.018691495060920715, -0.012157159857451916, -0.022798793390393257, -0.01504544634371996, 0.027257516980171204, -0.011454306542873383, 0.015078391879796982, 0.013980184681713581, 0.06905530393123627, -0.00434615695849061, 0.014551252126693726, -0.01852676458656788, 0.006067597772926092, -0.016626864671707153, 0.004480687435716391, -0.01971282809972763, 0.0174615029245615, -0.01929550990462303, 0.016604900360107422, -0.01061966922134161, -0.030156783759593964, 0.044301699846982956, 0.014628127217292786, -0.016187582165002823, 0.008302450180053711, -0.008335396647453308, -0.009433604776859283, -0.0006194578018039465, -0.004818386398255825, -0.027982333675026894, 0.022425401955842972, 0.010367081500589848, 0.03285837545990944, 0.02282075770199299, -0.015803208574652672, -0.0006922140601091087, 0.04682757705450058, -0.021766478195786476, 0.005309834610670805, 0.008944901637732983, 0.03957940638065338, -0.0027661107014864683, -0.04381848871707916, 0.0425226055085659, 0.02604948729276657, -0.016055796295404434, 0.02517092227935791, -0.014672055840492249, -0.004563053138554096, 0.019646937027573586, -0.01243171188980341, 0.016187582165002823, -0.010740472003817558, -0.011135826818645, -0.022579150274395943, -0.004134752321988344, 0.020920857787132263, -0.02965160831809044, 0.01148725301027298, -0.027147695422172546, -0.02196415513753891, -0.0409192219376564, 0.03127695620059967, -0.006012687459588051, -0.015814190730452538, -0.018658550456166267, -0.010284715332090855, -0.041951537132263184, -0.0009362220880575478, 0.00988386943936348, -0.020185058936476707, -0.02369932271540165, 0.007934550754725933, 0.02372128702700138, 0.003898637369275093, 0.03299016132950783, -0.022359509021043777, 0.0027002182323485613, 0.009905833750963211, -0.03189195320010185, -0.006737504620105028, -0.002954178722575307, 0.006193891633301973, -0.004777203779667616, -0.01824123039841652, 0.006430006120353937, 0.006243310868740082, 0.054471105337142944, -0.008675841614603996, -0.01782391220331192, 0.011498235166072845, -0.034242115914821625, -0.04076547175645828, 0.006935182027518749, -0.017911767587065697, -0.014463395811617374, 0.028443580493330956, 0.0047277845442295074, 0.02009720169007778, -0.016473116353154182, 0.016681775450706482, 0.03173820301890373, -0.013628758490085602, 0.011926536448299885, -0.013859381899237633, 0.03650442510843277, -0.014650091528892517, 0.013980184681713581, 0.0147599121555686, -0.02545645460486412, 0.0037476338911801577, 0.011761805042624474, -0.013167510740458965, 0.017779983580112457, -0.008862536400556564, 0.01186064351350069, -0.023347897455096245, -0.02646680735051632, -0.018504800274968147, -0.006984601262956858, 0.0007975733606144786, 0.025368599221110344, 0.006490407977253199, 0.04232492670416832, 0.013211439363658428, 0.03448372334241867, -0.027674835175275803, -0.038766734302043915, -0.007066966965794563, 4.817528315470554e-05, -0.008472672663629055, -0.010707525536417961, -0.002347419038414955, 0.003950802143663168, -0.011992428451776505, -0.02763090655207634, 0.023325933143496513, 0.003558193100616336, 0.017186950892210007, -0.03096945770084858, 0.010482393205165863, -0.006353131961077452, 0.04814542829990387, 0.01287099439650774, -0.0023735014256089926, -0.006501389667391777, -0.002718064235523343, -0.005979740992188454, -0.03465943783521652, -0.0005020868266001344, -0.0052192322909832, -0.0149685712531209, -0.0065892464481294155, 0.019207652658224106, -0.020404700189828873, 0.020371753722429276, -0.003950802143663168, -0.024643782526254654, -0.015583568252623081, -0.01684650592505932, -0.0012814711080864072, -0.016055796295404434, 0.006193891633301973, 0.00908217765390873, -0.02240343764424324, 0.029036613181233406, -0.023831108585000038, -0.0016377023421227932, 0.007725891657173634, -0.0008133600931614637, -0.035252466797828674, -0.008747224695980549, 0.011597073636949062, -0.0036625228822231293, 0.020635323598980904, 0.003085963660851121, 0.01935042068362236, -0.018878191709518433, -0.03784423694014549, -0.0014496342046186328, -0.04155617952346802, 0.004285755567252636, 0.021920226514339447, -0.024973243474960327, -0.013475009240210056, -0.008555037900805473, 0.02848750911653042, 0.026422878727316856, -0.017626233398914337, -4.107554195798002e-05, -0.0034016985446214676, -0.007039511576294899, -0.0063201854936778545, -0.010680070146918297, 0.005540458019822836, 0.007846694439649582, 0.001468852860853076, 0.024248426780104637, 0.05649180710315704, 0.007171296514570713, 0.0186475683003664, -0.015451783314347267, 0.035735681653022766, -0.042544566094875336, 0.061016421765089035, -0.02165665663778782, 0.02765287086367607], [0.008970336057245731, -0.0025907545350492, 0.0781848356127739, 0.038776177912950516, -0.020057061687111855, 0.026734640821814537, -0.05157182738184929, 0.0777956172823906, 0.039822209626436234, 0.020957136526703835, -0.008550706319510937, -0.005555526353418827, 0.0022562674712389708, 0.015264774672687054, -0.04113582894206047, 0.032743245363235474, 0.030140327289700508, 0.01834205538034439, 0.011111052706837654, 0.012175329960882664, -0.012698346748948097, 0.03425147756934166, -0.07074098289012909, 0.012686182744801044, -0.0342271514236927, -0.0035090737510472536, 0.014474168419837952, -0.02690492570400238, 0.0641242191195488, -0.08616387844085693, 0.04536861181259155, -0.03651382774114609, 0.020689547061920166, 0.005078122019767761, -0.01413359958678484, -0.034981269389390945, -0.018901562318205833, -0.024958819150924683, 0.019132662564516068, -0.027732020244002342, -0.047022804617881775, -0.002522336784750223, 0.018378544598817825, -0.013111894018948078, -0.031770192086696625, 0.04911486804485321, -0.03551644831895828, -0.004339209757745266, 0.017539286985993385, 0.0092379255220294, 0.00200236146338284, 0.03213508799672127, -0.0031076890882104635, -0.01693112775683403, -0.0336189940571785, 0.048117488622665405, -0.02902131713926792, 0.020908484235405922, 0.020811177790164948, -0.019534045830368996, 0.03084579110145569, 0.010661016218364239, 0.0035394816659390926, 0.028996990993618965, -0.026369746774435043, 0.02897266298532486, -0.013634909875690937, 0.03999249264597893, -0.03031061217188835, -0.00037857858114875853, 0.02478853426873684, 0.026442725211381912, -0.048190467059612274, -0.019740819931030273, 0.004013845231384039, 0.017733898013830185, -0.017685245722532272, 0.03006734885275364, 0.0015660077333450317, -0.018037976697087288, -0.027002230286598206, 0.013780868612229824, 0.018767766654491425, 0.02736712619662285, -0.008325687609612942, 0.016821660101413727, -0.02928890660405159, -0.021845048293471336, 0.01589725911617279, -0.014109273441135883, 0.042400799691677094, 0.04364144429564476, -0.03371629863977432, -0.006847863085567951, 0.002792967250570655, 0.016529744490981102, 0.007005983963608742, -0.04395768418908119, -0.016517581418156624, 0.06285924464464188, 0.006695823278278112, -0.02846181020140648, -0.037438228726387024, 0.007814834825694561, -0.009900817647576332, -0.06928139925003052, -0.05556134507060051, 0.02253834903240204, 0.02078685164451599, -0.0007240885170176625, -0.02304920181632042, -0.03232969716191292, 0.007018147502094507, 0.06680011004209518, -0.017600102350115776, -0.031964801251888275, 0.012698346748948097, -0.007729692850261927, -0.016760844737291336, -0.03142962232232094, 0.02529938705265522, 0.012011127546429634, -0.017879854887723923, -0.1036301851272583, 0.015349917113780975, 0.014620127156376839, -0.03629488870501518, -0.018755603581666946, -0.03476233035326004, -0.009517678059637547, 0.01667570136487484, -0.037170637398958206, 0.07716313004493713, -0.04133044183254242, -0.03765716403722763, -0.015520201064646244, 0.012868630699813366, -0.012418593280017376, -0.013464625924825668, -0.045733507722616196, 0.07404936105012894, -0.01666353829205036, 0.005780545063316822, -0.03198912739753723, -0.09983527660369873, 0.016517581418156624, -0.01370788924396038, 0.025785913690924644, -0.02054358832538128, -0.023389769718050957, -0.046438973397016525, 0.016493255272507668, -0.038022059947252274, -0.04719308763742447, -0.008131077513098717, 0.02627244032919407, 0.024496618658304214, 0.007370879407972097, -0.031843170523643494, -0.0027944876346737146, 0.027026556432247162, -0.04196292534470558, 0.006178888957947493, 0.0020084429997950792, 0.020166531205177307, 0.030748486518859863, -0.0029039562214165926, 0.03957894444465637, -0.053080059587955475, -0.019473230466246605, 0.004375699441879988, 1.8422921129968017e-05, -0.05293410271406174, -0.001135735772550106, -0.06324847042560577, -0.04094121977686882, 0.03225671872496605, 0.0044578006491065025, 0.01513097994029522, -0.025907546281814575, 0.010472486726939678, -0.009840002283453941, -0.029897063970565796, -0.041354767978191376, -0.029580822214484215, 0.05264218524098396, -0.027245493605732918, 0.015885096043348312, -0.0054916697554290295, -0.023572217673063278, -0.007303981576114893, -0.01184692420065403, 0.0014671820681542158, 0.015264774672687054, -0.014194415882229805, 0.0003669855650514364, -0.014644453302025795, -0.02568860910832882, 0.004330087453126907, 0.011749619618058205, -0.009906899183988571, -0.05492886155843735, 0.019643515348434448, 0.040600650012493134, -0.01885290816426277, 0.004898715298622847, -0.02060440555214882, 0.015678321942687035, 0.0013592338655143976, -0.016262155026197433, 0.0388978086411953, 0.001423090579919517, -0.0014884675620123744, 0.05458829179406166, -0.016298644244670868, -0.04415229707956314, 0.01809879206120968, 0.022319411858916283, -0.0072614108212292194, 0.03288920223712921, -0.037754468619823456, -0.010697505436837673, 0.020421957597136497, -0.021346358582377434, -0.020519262179732323, 0.021918026730418205, -0.02278161235153675, -0.06504862010478973, 0.008021608926355839, -0.06115640327334404, -0.04765528813004494, 0.028413157910108566, 0.018633970990777016, -0.014522821642458439, -0.014437679201364517, 0.025761587545275688, 0.011573253199458122, -0.013111894018948078, -0.006178888957947493, 0.04566052928566933, -0.01860964484512806, -0.0005146539770066738, -0.011603660881519318, -0.012674019671976566, 0.042254842817783356, -0.008733154274523258, -0.011366479098796844, -0.03901943936944008, -0.011129298247396946, 0.01891372539103031, 0.013866010122001171, 0.01483906339854002, 0.015009348280727863, -0.057458799332380295, 0.009073722176253796, 0.01783120259642601, -0.006020767614245415, -0.030870117247104645, 0.08455833792686462, -0.0361732579767704, 0.00412027258425951, 0.001258127624168992, -0.011530682444572449, -0.025639956817030907, -0.04210888594388962, -0.03841128200292587, 0.01770957186818123, -0.05303140729665756, 0.009621065109968185, 0.04038171470165253, -0.07414666563272476, 0.026685988530516624, -0.002383980667218566, -0.0343974344432354, -0.04398201033473015, 0.01879209280014038, -0.011287419125437737, -0.045806486159563065, 0.01087995246052742, 0.00800944585353136, -0.0523989237844944, -0.022830264642834663, 0.02768336795270443, -0.029897063970565796, 0.03979788348078728, 0.005214957986027002, 0.02807259000837803, -0.012406430207192898, 0.010600199922919273, 0.024022255092859268, 0.06709203124046326, 0.014036295004189014, -0.0043422505259513855, 0.006695823278278112, 0.04130611568689346, -0.01661488600075245, 0.010594118386507034, -0.017016271129250526, 0.015690485015511513, 0.014206578955054283, 0.02387629635632038, -0.0130997309461236, -0.01783120259642601, 0.007249247748404741, -0.06037795916199684, 0.02168692648410797, 0.006555947009474039, -0.002529938705265522, -0.026394072920084, -0.023669522255659103, -0.010496812872588634, 0.03444609045982361, -0.07794157415628433, -0.04794720560312271, -0.02123688906431198, 0.0027260698843747377, -0.03870319575071335, -0.02079901471734047, 0.0052301618270576, 0.01423090510070324, 0.017040597274899483, 0.014437679201364517, -0.005072040483355522, -0.0019749943166971207, 0.0029480475932359695, -0.017417654395103455, -0.00436353636905551, 0.023000549525022507, -0.02110309526324272, -0.01994759403169155, -0.02678329311311245, 0.00457335077226162, -0.008252709172666073, 0.04668223485350609, -0.02194235287606716, -0.00833176914602518, 0.0052271210588514805, 0.03605162724852562, -0.006361336447298527, -0.02034897916018963, -0.008313524536788464, 0.019667841494083405, -0.05186374485492706, 0.013367320410907269, -0.0005309982807375491, 0.0451740026473999, 0.049674373120069504, 0.07453588396310806, 0.03315679356455803, 0.06675145775079727, 0.05016089975833893, 0.0024812861811369658, -0.024812860414385796, -0.04030873626470566, -0.053907155990600586, -0.003036230569705367, 0.037170637398958206, 0.031891822814941406, 0.0024645617231726646, 0.0312836654484272, -0.03661113232374191, -0.011500274762511253, 0.02819422073662281, 0.05093934386968613, 0.0463416650891304, 0.007413450162857771, -0.0069269235245883465, -0.019911104813218117, 0.04344683140516281, 0.013197036460042, 0.04395768418908119, -0.0006077782600186765, 0.02529938705265522, -0.0077722636051476, 0.02169908955693245, 0.004062497988343239, 0.0030514344107359648, 0.06480535119771957, -0.02129770629107952, -0.009542004205286503, 0.030675506219267845, 0.027586063370108604, 0.017040597274899483, 0.014413353055715561, 0.006707986816763878, 0.030334938317537308, -0.019655678421258926, 0.001961310626938939, 0.0035303591284900904, 0.030821464955806732, -0.02168692648410797, -0.03464069962501526, 0.01081913709640503, -0.022623490542173386, -0.022866753861308098, 0.01989894174039364, -0.0004283715388737619, 0.025129102170467377, -0.011627987958490849, -0.021735578775405884, -0.05235027149319649, -0.050306860357522964, 0.005737973842769861, -0.0047375536523759365, 0.002040371298789978, -0.012674019671976566, 0.012406430207192898, -0.0023353281430900097, -0.01448633149266243, -0.02960514836013317, 0.03770581632852554, -0.06855160742998123, -0.005449099000543356, 0.037170637398958206, -0.0022273799404501915, 0.018500177189707756, -0.02761038951575756, 0.024764208123087883, -0.0030088634230196476, -0.011013748124241829, 0.010314365848898888, 0.011834761127829552, -0.010137999430298805, 0.038459934294223785, -0.01891372539103031, 0.021930189803242683, 0.009177109226584435, 0.0308944433927536, -0.013634909875690937, 0.02324381284415722, -0.02529938705265522, 0.012759162113070488, -0.02065305784344673, 0.037949081510305405, -0.07132481038570404, 0.012059779837727547, -0.04191427305340767, -0.026880599558353424, -0.060669876635074615, 0.014194415882229805, -0.006610681302845478, -0.0410628505051136, 0.03605162724852562, 0.01673651859164238, -0.061253707855939865, -0.04176831617951393, 0.0052879368886351585, 0.011360397562384605, -0.026685988530516624, -0.016079707071185112, 0.00923184398561716, -0.010016367770731449, -0.04770394042134285, -0.011956392787396908, -0.022939732298254967, -0.01477824803441763, 0.034592047333717346, -0.04171966388821602, 0.014887716621160507, -0.008927764371037483, 0.022100474685430527, 0.024679066613316536, 0.044322580099105835, 0.05098799616098404, 0.003986477851867676, 0.008903438225388527, 0.015799954533576965, -0.009614983573555946, -0.032986510545015335, -0.02928890660405159, -0.029337558895349503, -0.00751683721318841, 0.040260083973407745, -0.017660917714238167, -0.00797903724014759, -0.024180375039577484, -0.003080321941524744, -0.006963413208723068, -0.015678321942687035, 0.0324513278901577, 0.048117488622665405, 0.04476045444607735, -0.06475669890642166, -0.02651570364832878, 0.08548273891210556, 0.029215926304459572, 0.09560249000787735, 0.015422895550727844, -0.006458641495555639, -0.032281044870615005, -0.028534790500998497, 0.006659334059804678, 0.0073283081874251366, -0.011567171663045883, 0.01775822415947914, 0.010545466095209122, -0.0414520725607872, -0.003396564396098256, 0.009031151421368122, 0.012880793772637844, 0.0353948175907135, 0.00904939603060484, 0.012540224939584732, -0.011865169741213322, 0.02941053733229637, -0.02736712619662285, -0.018378544598817825, -0.021212562918663025, 0.0020905444398522377, -0.03515155240893364, -0.041427746415138245, 0.020969299599528313, 0.0023125221487134695, 0.003135056234896183, -0.010588036850094795, -0.027002230286598206, 0.021540969610214233, -0.016833823174238205, -0.03490829095244408, -0.021358521655201912, -0.0065498654730618, -0.01458363700658083, -0.016785170882940292, -0.007413450162857771, -0.020750362426042557, 0.01790418103337288, -0.007766182068735361, -0.07434127479791641, -0.019594861194491386, -0.005455180536955595, -0.02259916439652443, -0.021589621901512146, -0.018560992553830147, -0.012029372155666351, 0.004153721500188112, 0.01873127743601799, 0.014437679201364517, 0.04191427305340767, -0.00031434185802936554, -0.016189174726605415, -0.024958819150924683, -0.023061364889144897, -0.005096367094665766, -0.011798271909356117, -0.006720149889588356, -0.0020266876090317965, -0.004956490360200405, 0.0046676155179739, 0.016979781910777092, 0.010575873777270317, -0.01483906339854002, 0.019534045830368996, 0.0045064534060657024, 0.0016891597770154476, 0.009122375398874283, 6.3607185438741e-06, 0.011062400415539742, -0.039165396243333817, 4.181088661425747e-05, 0.00197803508490324, -0.0045703100040555, 0.014705268666148186, -0.011390806175768375, -0.02889968454837799, 0.009779185988008976, 0.01062452606856823, 0.013975478708744049, -0.041233137249946594, 6.034070975147188e-05, -0.02709953673183918, -0.038070712238550186, 0.03631921485066414, 0.013938989490270615, -0.004372658673673868, 0.009730533696711063, 0.01528910081833601, 0.023134343326091766, -0.04680386558175087, 0.01699194498360157, 0.038532912731170654, 0.006616762839257717, 0.007449939846992493, -0.010411671362817287, -0.01264969352632761, -0.0061667258851230145, 0.02258700132369995, -0.023024875670671463, -0.039749231189489365, 0.017624428495764732, 0.011354316025972366, -0.034786656498909, 0.008264872245490551, -0.005865687504410744, -0.014656616374850273, 0.018512340262532234, 0.023547891527414322, -0.0128078144043684, 0.02498314529657364, -0.04505237191915512, 0.0377301424741745, 0.013780868612229824, -0.025639956817030907, -0.005689321551471949, 0.0463416650891304, -0.07915788888931274, -0.026491377502679825, -0.018743440508842468, -0.02285459078848362, 0.02233157493174076, -0.002107268664985895, 0.01354976836591959, 0.022672142833471298, 0.005725810769945383, -0.05653439834713936, -0.01142729539424181, -0.013501115143299103, -0.06461074203252792, -0.05930760130286217, -0.02607782930135727, -0.04191427305340767, -0.0132943419739604, 0.02014220505952835, 0.00032726521021686494, -0.02099362574517727, -0.042011577636003494, 0.027050882577896118, 0.01528910081833601, -0.05994008854031563, 0.0006054976838640869, -0.039238378405570984, -0.006677578669041395, 0.025834565982222557, 0.0014405751135200262, -0.0308944433927536, -0.038070712238550186, -0.000891712203156203, 0.01879209280014038, 0.00028868517256341875, 0.008842622861266136, 0.04539293795824051, 0.003992559388279915, 0.01796499826014042, 0.04746067896485329, -0.05580461025238037, 0.013464625924825668, 0.02651570364832878, 0.015155306085944176, -0.0016876393929123878, 0.027561737224459648, -0.029386211186647415, 0.015349917113780975, 9.175826676255383e-07, 0.013622746802866459, -0.003024067496880889, 0.013415973633527756, -0.01725953444838524, -0.009797430597245693, 0.023134343326091766, 0.014218742027878761, 0.053712546825408936, -0.014291721396148205, 0.06115640327334404, 0.03359466791152954, -0.010825218632817268, 0.02330462820827961, 0.05385850369930267, 0.030043022707104683, 0.013221362605690956, -0.01522828545421362, 0.0056680357083678246, 0.02768336795270443, 0.03121068701148033, 0.01055154763162136, -0.04656060412526131, 0.004001682158559561, -0.021309869363904, -0.022550512105226517, 0.0029617310501635075, 0.027926631271839142, 0.021407173946499825, 0.0016085788374766707, -0.008021608926355839, -0.00956024881452322, 0.03315679356455803, 0.052690837532281876, -0.01943674124777317, -0.02748875692486763, -0.013428136706352234, 0.009730533696711063, 0.027002230286598206, -0.008167566731572151, 0.01194422971457243, 0.017271697521209717, -0.004929123446345329, 0.0067019048146903515, 0.014997185207903385, 0.011652314104139805, 0.00461592199280858, -0.025664282962679863, -0.010344773530960083, -0.011555008590221405, 2.3007865820545703e-05, -0.0044517191126942635, -0.055853262543678284, -0.021808559074997902, -0.034665025770664215, -0.010290039703249931, -0.0018792093032971025, 0.039238378405570984, 0.017867691814899445, -0.010162325575947762, -0.016116196289658546, -0.03782745078206062, -0.009219680912792683, -0.005421731621026993, -0.0028385790064930916, -0.021358521655201912, 0.005309222266077995, 0.027975283563137054, -0.01415792666375637, -0.014303884468972683, 0.034081194549798965, -0.03738957643508911, -0.00859327707439661, 0.002345970831811428, -0.008648011833429337, 0.02234373800456524, -0.035954322665929794, 0.0028568238485604525, 0.01944890432059765, 0.03960327059030533, 0.00027519164723344147, -0.002730631036683917, 0.013038914650678635, -0.04390903189778328, 0.03605162724852562, -0.03045657090842724, -0.006920841988176107, -0.0072674923576414585, -0.014498495496809483, -0.008672337979078293, -0.04763096198439598, -0.002651570364832878, -0.02085983194410801, -0.02419253997504711, -0.0033387893345206976, -0.001185148605145514, -7.373919652309269e-05, -0.010673179291188717, 0.0008993141818791628, 0.015021511353552341, 0.008964254520833492, -0.024958819150924683, -0.019789472222328186, 0.013111894018948078, -0.02362086996436119, -0.005178468301892281, 0.009469025768339634, -0.01732034981250763, 0.030237633734941483, 0.03651382774114609, -0.014948531985282898, -0.02549399808049202, 0.0033874420914798975, -0.012515898793935776, -0.03641652315855026, -0.03488396108150482, -0.0053974054753780365, -0.0023809398990124464, -0.01152460090816021, -0.018573155626654625, -0.027050882577896118, -0.01597023755311966, 0.036732763051986694, 0.026685988530516624, -0.011804353445768356, -0.03953029215335846, -0.010642770677804947, 0.0061028688214719296, 0.010083265602588654, 0.021309869363904, -0.010423834435641766, 0.013051077723503113, 0.03084579110145569, -0.02085983194410801, -0.02459392324090004, -0.01036909967660904, 0.009073722176253796, -0.0067627206444740295, 0.025445345789194107, -0.008459482342004776, -0.01087995246052742, 0.03155125677585602, -0.04086824133992195, -0.033059488981962204, -0.023219486698508263, 0.04466314986348152, -0.03442176431417465, -0.009760941378772259, -0.011865169741213322, -0.01937592588365078, 0.0030225468799471855, -0.006908678915351629, 0.03471367806196213, 0.06665415316820145, -0.006090705748647451, -0.016310807317495346, -0.009773104451596737, 0.008477726951241493, -0.014985022135078907, -0.03308381512761116, 0.021212562918663025, 0.049917638301849365, 0.0025284183211624622, -0.007133697625249624, -0.01970433071255684, 0.00548862898722291, 0.049723025411367416, -0.016067543998360634, -0.05755610764026642, 0.011184032075107098, -0.006543783936649561, -0.006568110082298517, 0.010040693916380405, 0.03391090780496597, 0.011342152953147888, 0.014717431738972664, -0.0013022191124036908, 0.020434120669960976, -0.0023566135205328465, 0.028802379965782166, 0.02831585332751274, 0.030529549345374107, -0.0054977512918412685, -0.039554618299007416, -0.02124905213713646, -0.013270014896988869, -0.01648109033703804, 0.01493636891245842, -0.014340373687446117, 0.044833432883024216, -0.017016271129250526, -0.0068174549378454685, -0.017916344106197357, -0.02678329311311245, 0.01380519475787878, -0.007535081822425127, -0.003873968729749322, -0.06821104139089584, 0.017150064930319786, 0.010314365848898888, 0.0066471709869802, 0.0015416814712807536, 0.004734512884169817, -0.007930384948849678, -0.02258700132369995, 0.0102657126262784, -0.019582698121666908, 0.004728431347757578, 0.0003194731834810227, -0.022830264642834663, -0.010995502583682537, -9.440707799512893e-05, 0.016116196289658546, -0.014255231246352196, 0.0128078144043684, -0.024289844557642937, -0.004980816971510649, 0.04441988468170166, 0.012759162113070488, 0.020944973453879356, -0.006495131179690361, -0.02118823677301407, -0.005041632801294327, 0.002751916414126754, -0.02748875692486763, 0.01061844453215599, 0.011603660881519318, -0.012193574570119381, -0.003551644738763571, 0.005519037134945393, 0.0011950311018154025, 0.010253549553453922, 0.023511402308940887, -0.012157085351645947, 0.0028036099392920732, -0.012710509821772575, 0.05361523851752281, 0.01648109033703804, -0.009365638718008995, 0.013817357830703259, 0.00827095378190279, 0.039822209626436234, -0.013525441288948059, 0.0004914679448120296, 0.0004576391656883061, -0.001918739639222622, 0.021005788818001747, -0.009292659349739552, 0.0016389867523685098, -0.043227896094322205, 0.01123876590281725, -0.027829326689243317, -0.00033391694887541234, -0.014303884468972683, 0.013780868612229824, -0.021832885220646858, 0.004010804463177919, -0.0015660077333450317, 0.02105444297194481, -0.012351696379482746, -0.01840287074446678, -0.03709765896201134, -0.018001487478613853, 0.017685245722532272, -0.006060298066586256, -0.006677578669041395, 0.013561931438744068, 0.013793031685054302, 0.010898198001086712, 0.04505237191915512, 0.02329246513545513, -0.04137909412384033, 0.0012984180357307196, 0.020482772961258888, -0.026442725211381912, 0.012023290619254112, -0.010089347139000893, 0.006920841988176107, -0.032281044870615005, -0.001483906409703195, 0.028875358402729034, -0.00018985943461302668, 0.0015279978979378939, 0.02717251516878605, -0.002139196963980794, -0.0016830782406032085, 0.0028309770859777927, 0.02304920181632042, -0.023645196110010147, -0.009809594601392746, -0.003208035370334983, 0.015362080186605453, -0.07302765548229218, 0.024679066613316536, 0.014145763590931892, 0.025761587545275688, 0.014498495496809483, 0.01126309297978878, -0.023365443572402, 0.016845986247062683, -0.032670266926288605, 0.04609840363264084, -0.017600102350115776, 0.00492304190993309, -0.011512437835335732, 0.0261994618922472, 0.00011279436876066029, 0.0066471709869802, 0.004159803036600351, 0.014413353055715561, 0.013136220164597034, 0.04410364478826523, -0.034470416605472565, 0.01790418103337288, 0.02330462820827961, 0.007504674140363932, -0.02826719917356968, 0.05127991363406181, 0.019363760948181152, -0.0064039072021842, 0.02079901471734047, 0.03335140272974968, 0.016140522435307503, -0.01795283518731594, 0.0013250249903649092, -0.03432445600628853, 0.0005435415077954531, -0.012017209082841873, -0.021467989310622215, -0.0015781709225848317, 0.011682721786201, 0.0261994618922472, 0.01610403321683407, 0.014644453302025795, 0.0715680718421936, -0.018840745091438293, -0.01944890432059765, 0.008708827197551727, 0.027950957417488098, 0.056680358946323395, 0.010581955313682556, 0.031113380566239357, 0.015459385700523853, -0.02877805382013321, 0.01775822415947914, 0.0006914000259712338, 0.028340179473161697, 0.014449842274188995, 0.02761038951575756, 0.03527318313717842, 0.03651382774114609, -0.018500177189707756, 0.053907155990600586, -0.0006070180679671466, 0.01687031239271164, 0.016493255272507668, 0.030432242900133133, -0.03751120716333389, -0.024837186560034752, 0.004542943090200424, -0.02909429557621479, 0.03566240519285202, 0.04493073746562004, -0.03388658165931702, -0.00026055783382616937, 0.040260083973407745, -0.020251672714948654, 0.006428233813494444, -0.0033509524073451757, 0.01860964484512806, -0.012254390865564346, 0.019789472222328186, 0.027050882577896118, 0.03719496354460716, -0.03242700174450874, 0.022514022886753082, 0.009280496276915073, 0.03709765896201134, -0.006355254910886288, 0.004691941663622856, -0.010636689141392708, 0.026369746774435043, 0.007942548021674156, 0.004691941663622856, 0.012260472401976585, -0.01846368797123432, 0.03451906889677048, -0.004308802075684071, 0.0024037458933889866, -0.03410552069544792, -0.021005788818001747, -0.04227916896343231, 0.023401932790875435, 7.644740253454074e-05, -0.011676640249788761, -0.02104227803647518, 0.014121436513960361, 0.032986510545015335, -0.013209199532866478, -0.0011813476448878646, 0.04687684401869774, -0.028096916154026985, 0.0073283081874251366, -0.017296023666858673, 0.009906899183988571, 0.012053698301315308, -0.035954322665929794, 0.005972114857286215, -0.008988580666482449, -0.011664477176964283, -0.025129102170467377, 0.004260149318724871, 0.0013972438173368573, 0.010782647877931595, -0.005689321551471949, -0.02201533131301403, 0.006866107694804668, 0.01027179416269064, 0.02761038951575756, -0.007966874167323112, 0.030943097546696663, 0.023985765874385834, 0.02188153751194477, 0.009061559103429317, -0.005664994940161705, 0.012795651331543922, 0.0014899879461154342, -0.03230537101626396, 0.019643515348434448, 0.014121436513960361, -0.012710509821772575, -0.015082326717674732, 0.015872932970523834, -0.01724737137556076, -0.013124057091772556, 0.02291540615260601, -0.00287202768959105, -0.003353993408381939, 0.01892588846385479, -0.016189174726605415, 0.03437310829758644, 0.006531620863825083, 0.008422993123531342, -0.010466405190527439, 0.0035151552874594927, 0.04570918157696724, -0.0021969720255583525, 0.006555947009474039, 0.00041582828271202743, 0.0032475655898451805, 0.025591302663087845, 0.02374250255525112, -0.000616900622844696, 0.0535665862262249, -0.032670266926288605, 0.036148931831121445, -0.0020206060726195574, -0.011968555860221386, 0.01943674124777317, -0.02388845942914486, -0.01036909967660904, 0.06018334999680519, -0.0207260362803936, -0.024095233529806137, -0.018962377682328224, -0.0037249699234962463, 0.0072674923576414585, -0.0020996667444705963, -0.02477637119591236, -0.022197779268026352, -0.007620224263519049, -0.031040402129292488, 0.011323908343911171, 0.030116001144051552, 0.017356839030981064, -0.015471548773348331, 0.019144825637340546, 0.040454693138599396, -0.013342994265258312, -0.009517678059637547, -0.030675506219267845, -0.01655407063663006, -0.033181119710206985, -0.0037128066178411245, 0.018901562318205833, -0.008058098144829273, -0.04004114493727684, -0.003782744985073805, -0.0005952349747531116, -0.01123268436640501, 0.03257296234369278, -0.0049473680555820465, 0.005531200207769871, -0.013379483483731747, 0.015398569405078888, 0.013476788997650146, 0.07030310481786728, 0.005084204021841288, -0.04388470575213432, -0.024241192266345024, 0.025153430178761482, -0.013342994265258312, 0.019607024267315865, 0.044249601662158966, -0.006598518230021, -0.006458641495555639, -0.009529841132462025, 0.005269692279398441, -0.005859605502337217, -0.004774042870849371, -0.015593180432915688, -0.0207260362803936, 0.019935430958867073, -0.005543363280594349, 0.014644453302025795, -0.011652314104139805, 0.002602917840704322, -0.01072183158248663, 0.006714068353176117, -0.019461067393422127, -0.018001487478613853, -0.011536763980984688, 0.004205415025353432, 0.014644453302025795, -0.01860964484512806, 0.01891372539103031, 0.01194422971457243, 0.00897641759365797, -0.018719114363193512, -0.01885290816426277, 0.043933358043432236, -0.03430012986063957, -0.04488208517432213, -0.005406527779996395, 0.018329892307519913, 0.011086726561188698, 0.002491928869858384, -0.0008696664590388536, -0.0032536471262574196, 0.0007769222720526159, -0.004327046684920788, 0.0022212984040379524, -0.056485746055841446, -0.024362822994589806, 0.008374340832233429, -0.016882475465536118, 0.031259339302778244, 0.01725953444838524, -0.009353475645184517, 0.009645391255617142, -0.02065305784344673, 0.010563710704445839, -0.003819234436377883, 0.008301361463963985, -0.03468935191631317, -0.010113673284649849, -0.0004720829310826957, -0.015751300379633904, 0.012698346748948097, 0.04313059151172638, -0.002584672998636961, -0.011859088204801083, -0.014352536760270596, 0.01477824803441763, -0.02234373800456524, -0.00725532928481698, 0.023195158690214157, 0.003551644738763571, -0.014072784222662449, -0.0021589621901512146, -0.005835279356688261, 0.013403809629380703, -0.022805938497185707, -0.0154472216963768, -0.025518324226140976, -0.0014763043727725744, -0.022100474685430527, -0.008544624783098698, 0.03824099525809288, 0.04057632386684418, 0.026223788037896156, -0.02632109262049198, -0.01061844453215599, 0.04296030476689339, 0.008234463632106781, 0.015398569405078888, 0.013330831192433834, 0.00975485984236002, 0.013513278216123581, -0.008453400805592537, 0.022501859813928604, 0.01905968226492405, -0.017587939277291298, -0.007608060725033283, -0.010162325575947762, -0.017940672114491463, 0.011038074269890785, -0.043300874531269073, -0.03038359060883522, 0.027196841314435005, -0.03668411076068878, 0.006163684651255608, 0.001277132541872561, 0.010393425822257996, 0.029118621721863747, -0.013391646556556225, -0.018560992553830147, 0.006878270767629147, 0.004944327287375927, -0.025858892127871513, -0.01477824803441763, -0.0014945490984246135, 0.02189370058476925, -0.0132943419739604, 0.011925985105335712, 0.05142587050795555, 0.022380227223038673, -0.03152693063020706, 0.04770394042134285, 0.009018988348543644, -0.04057632386684418, 0.025639956817030907, -0.017283860594034195, 0.026953577995300293, 0.0023125221487134695, 0.03495694324374199, 0.008562869392335415, 0.0039013358764350414, 0.007687121629714966, 0.009219680912792683, -0.021139584481716156, 0.048822950571775436, -0.01705276034772396, 0.01898670382797718, 0.022684305906295776, 0.010119754821062088, -0.0198381245136261, -0.005379160400480032, 0.039165396243333817, -0.0641242191195488, -0.00030217866878956556, -0.010247468017041683, -0.020628731697797775, -0.021589621901512146, -0.0034999512135982513, 0.016493255272507668, 0.005829197820276022, 0.020628731697797775, -0.0038222752045840025, -0.0036215828731656075, -0.0005484828143380582, -0.0020449324510991573, 0.0036641540937125683, -0.01203545369207859, 0.03780312463641167, -0.019229967147111893, 0.013075404800474644, 0.012315206229686737, 0.001949147554114461, -0.018828582018613815, 0.00994947087019682, -0.015508037991821766, 0.00965147279202938, 0.008422993123531342, -0.009061559103429317, -0.0028811502270400524, -0.01622566394507885, -0.0062123374082148075, 0.016578396782279015, -0.008915601298213005, -0.04293597862124443, -0.01274699904024601, -0.0006617523031309247, 0.04108717665076256, -0.029118621721863747, -0.02059224247932434, 0.015349917113780975, 0.04600109905004501, -0.05016089975833893, -0.004865266848355532, 0.014547147788107395, -0.004418270196765661, 0.011707047931849957, 0.022246431559324265, 0.01756361313164234, -2.0264025806682184e-05, 0.018828582018613815, 0.013634909875690937, 0.011798271909356117, 0.01912049762904644, 0.0046828193590044975, -0.03162423521280289, 0.01294161006808281, 0.023535728454589844, 0.020093552768230438, -0.014498495496809483, -0.03347303718328476, -0.021601784974336624, -0.00019803155737463385, -0.002914598910138011, -0.03386225551366806, -0.022757286205887794, -0.0014147283509373665, -0.006562028545886278, -0.025858892127871513, 0.00128397427033633, 0.014267395250499249, 0.013075404800474644, 0.01885290816426277, -0.007790508680045605, 0.009894736111164093, -0.03931135684251785, -0.011828679591417313, 0.010077184066176414, -0.002206094330176711, -0.012017209082841873, -0.005208876449614763, 0.011123215779662132, 0.0008141719736158848, 0.009134538471698761, 0.017162228003144264, 0.02117607370018959, 0.01931510865688324, -0.035370491445064545, 0.01258887816220522, -0.05497751384973526, -0.006224500481039286, 0.01712573878467083, 0.0198381245136261, -0.011664477176964283, -0.024885838851332664, 1.0155768904951401e-05, -0.013756541535258293, -0.002023646840825677, 0.006841781549155712, -0.0028629053849726915, 0.008678419515490532, 0.0032931773457676172, 0.01238818559795618, -0.0005085724405944347, 0.028559116646647453, 0.00039492282667197287, -0.04716876149177551, -0.012965936213731766, -0.015106653794646263, -0.027586063370108604, -0.001833597430959344, 0.037365250289440155, -0.009535922668874264, 0.008702745661139488, 0.0410628505051136, -0.027342800050973892, -0.010873870924115181, -0.0011524601140990853, 0.002692621201276779, -0.006957331672310829, 0.01558101736009121, -0.031964801251888275, 0.030991749837994576, 0.0008985539898276329, 0.023778991773724556, 0.018719114363193512, -0.012771325185894966, -0.012339533306658268, -0.008441237732768059, 0.006306602153927088, -0.0044517191126942635, -0.024508781731128693, -3.337744055897929e-05, -0.005081162787973881, -0.05342062935233116, 0.02259916439652443, 0.009712289087474346, 0.03471367806196213, -0.0026911005843430758, -0.014741758815944195, -0.0051115709356963634, 0.010034612379968166, 0.016322970390319824, 0.007808753289282322, 0.0119746383279562, 0.007078963331878185, 0.012965936213731766, 0.035248856991529465, -0.0005918141105212271, -0.013671400025486946, -0.003703684313222766, 0.003983437083661556, 0.010788729414343834, 0.018110955134034157, -0.0025633873883634806, 0.008343932218849659, -0.01654190756380558, 0.01413359958678484, 0.00965755432844162, -0.0036033382639288902, 0.041549377143383026, 0.02303703874349594, -0.009614983573555946, 0.009529841132462025, 0.008088505826890469, 0.023851970210671425, 0.015167469158768654, 0.03347303718328476, 0.014109273441135883, 0.004764920566231012, -0.022745123133063316, 0.017356839030981064, -0.0009023549500852823, -0.030870117247104645, -0.025542650371789932, 0.0013394687557592988, 0.009286577813327312, 0.02683194726705551, 0.019655678421258926, 0.03213508799672127, 0.027318473905324936, 0.0047983694821596146, -0.023061364889144897, -0.03237834945321083, 0.06407556682825089, 0.003974314779043198, 0.022891080006957054, -0.04563620314002037, -0.030943097546696663, 0.003214116906747222, 0.0256156288087368, -0.0019552290905267, 0.008587195537984371, -0.05697227269411087, 0.034348782151937485, 0.027245493605732918, -0.04198725149035454, -0.0006412269431166351, 0.0054369354620575905, -0.014559310860931873, 0.0160310547798872, -0.01925429329276085, 0.013342994265258312, -0.016262155026197433, 0.008131077513098717, 0.015532364137470722, -0.010095428675413132, 0.03984653577208519, -0.0057927081361413, 0.032864876091480255, -0.0004196292720735073, 0.002352052368223667, 0.0130997309461236, 0.019023193046450615, -0.007103289477527142, -0.011889495886862278, -0.0028036099392920732, -0.004469963721930981, 0.012090187519788742, -0.03605162724852562, -0.016906801611185074, 0.01264969352632761, -0.02651570364832878, 0.02175990492105484, 0.01354976836591959, -0.0332297720015049, -0.03320544585585594, -0.026150809600949287, 0.017527123913168907, 0.018938051536679268, -0.02955649606883526, -0.010442079044878483, 0.008842622861266136, -0.0261994618922472, 0.04510102421045303, -0.025664282962679863, -0.022416716441512108, 0.025518324226140976, -0.008581114001572132, -0.012832141481339931, 0.002692621201276779, 0.013172709383070469, -0.015058000572025776, -0.024837186560034752, 0.05595056712627411, -0.018488014116883278, -0.005479506682604551, -0.006066379602998495, 0.024411475285887718]], "input": ["CABIN:The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.", "EXOTIC BIRDS:Exotic birds are among the pets that can be transported in the cabin with their owners.", "VETERINARY SERVICES:The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.", "TRANSPORTATION:Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.", "AUTHORIZATION PROCESS:The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.", "LUGGAGE COMPARTMENT:The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.", "SENSITIVITY:Some pets may develop sensitivity and breathing problems during flights, which is a concern for their health.", "FLIGHT:A flight is a journey made by an aircraft from one airport to another, encompassing various aspects of air travel. It involves specific baggage policies that passengers must adhere to, as well as regulations regarding the transportation of liquids. Additionally, the term \"flight\" also refers to the duration during which pets are transported, either in the cabin or in the cargo hold of the aircraft. Overall, a flight represents a comprehensive travel experience that includes considerations for luggage, pet transport, and compliance with aviation regulations.", "PETS:", "JOHANNESBURG:Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.", "LONDON:London is a destination where transporting animals in the aircraft cabin is not allowed.", "HONG KONG:Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.", "VETERINARIAN:Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.", "INTERNATIONAL CERTIFICATE OF GOOD HEALTH:An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.", "BILL OF LADING:A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.", "BUSINESS CABIN:The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-4034edd38cd75058c0a5e9559f2ab6e5 b/cache/text_embedding/embedding-4034edd38cd75058c0a5e9559f2ab6e5 deleted file mode 100644 index d414741c022615bd113b9497ace4fb3b117b4f37..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-4034edd38cd75058c0a5e9559f2ab6e5 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.0913403332233429, 0.03331029415130615, 0.01572377420961857, 0.003541958052664995, -0.06854908168315887, -0.03385816141963005, -0.007483859080821276, -0.012677635066211224, 0.06175553426146507, 0.02844523824751377, -0.03510729596018791, 0.002577712759375572, -0.009494530037045479, 0.0025681250263005495, -0.03821917995810509, -0.00013516898616217077, 0.013324118219316006, 0.027678225189447403, 0.03979703411459923, 0.0062785521149635315, 0.04707270488142967, 0.044179968535900116, -0.027393333613872528, 0.011417541652917862, 0.0006457978743128479, -0.00272289733402431, 0.02618802711367607, 0.029365655034780502, -0.011483285576105118, -0.06333339214324951, 0.044070396572351456, -0.0022667984012514353, -0.014211662113666534, -0.04229530692100525, 0.03870130330324173, 0.028905445709824562, 0.01906576007604599, -0.03598388284444809, 0.03295965865254402, -0.0013025529915466905, -0.05570708587765694, 0.0248293187469244, 0.012392744421958923, -0.08730803430080414, -0.00716609600931406, 0.07595624029636383, 0.03037372976541519, -0.0400819256901741, -0.020282024517655373, 0.03241179138422012, 0.004563729278743267, 0.012031152844429016, 0.011801048181951046, -0.0023613055236637592, 0.03223647549748421, 0.019558841362595558, -0.0019161637173965573, 0.02194753848016262, 0.0014847187558189034, -0.023733584210276604, -0.01432123500853777, -0.029036933556199074, -0.02458825707435608, 0.005086942110210657, -0.016162067651748657, 0.01593196392059326, -0.0066182296723127365, 0.04558250680565834, -0.02752482146024704, 0.054436035454273224, 0.03407730907201767, 0.014967718161642551, -0.027393333613872528, -0.03782471641898155, -0.02923416718840599, 0.011549029499292374, 0.04908885434269905, -0.007708484306931496, 0.030833937227725983, 0.010645049624145031, -0.014452722854912281, 0.0344279408454895, -0.014496552757918835, 0.026144199073314667, -0.010595741681754589, 0.03703578934073448, -0.042251478880643845, -0.0003742614353541285, -0.0047664400190114975, -0.01961362734436989, -0.01908767595887184, 0.008437147364020348, 0.00040336683741770685, 0.03574282303452492, 0.0030433994252234697, -0.0037090573459863663, 0.03225839138031006, 0.015712816268205643, -0.022637851536273956, 0.09773941338062286, 0.023076144978404045, -0.013159757480025291, -0.0332883782684803, 0.02664823643863201, 0.05662750080227852, -0.035041552037000656, -0.05938874930143356, -0.004434980917721987, 0.025004634633660316, 0.002729745814576745, -0.00035542852128855884, -0.0027502907905727625, 0.003311854088678956, 0.08051449060440063, 0.007352370768785477, -0.04196658730506897, 0.020051920786499977, 0.010234150104224682, -0.009998567402362823, -0.040892768651247025, 0.007938588038086891, -0.03510729596018791, 0.017257800325751305, -0.06570017337799072, 0.015143034979701042, 0.04104617238044739, -0.031403716653585434, 0.025311440229415894, -0.028116518631577492, -0.01517590694129467, 0.018616510555148125, -0.008585071191191673, 0.04001618176698685, 0.0005071191117167473, -0.012633806094527245, -0.011384669691324234, -0.017937155440449715, 0.014507509768009186, -0.011373712681233883, -0.026253771036863327, 0.028489068150520325, -0.022725509479641914, 0.03817535191774368, -0.03896427899599075, -0.026209942996501923, 0.017794709652662277, 0.008031725883483887, 0.021169569343328476, -0.01257901918143034, 0.022835083305835724, -0.015712816268205643, 0.01939447969198227, 0.0064703053794801235, 0.003270764136686921, -0.008059118874371052, -0.02172839269042015, -0.011351797729730606, 0.029760118573904037, -0.028401408344507217, 0.025793563574552536, -0.013411776162683964, -0.022615937516093254, -0.04759865626692772, -0.04667824134230614, 0.020084792748093605, -0.018561722710728645, 0.02673589438199997, 0.02866438403725624, -0.026911212131381035, -0.013674752786755562, -0.014584210701286793, 0.028182262554764748, -0.04284317418932915, -0.02246253378689289, -0.016227811574935913, -0.014858144335448742, 0.004544554278254509, 0.003377598011866212, -0.033134978264570236, -0.02382124401628971, 0.011417541652917862, 0.02227625995874405, -0.03317880630493164, -0.051718614995479584, -0.021224355325102806, 0.051411811262369156, -0.0118448780849576, 0.0014217140851542354, -0.02393081597983837, -0.031162656843662262, 0.01116552297025919, 0.00886448286473751, 0.022615937516093254, 0.0598270408809185, -0.035611335188150406, -0.01895618811249733, -0.04816843941807747, -0.0029420440550893545, 0.029716288670897484, -0.012261256575584412, 0.03580856695771217, -0.05044756457209587, 0.006212808191776276, -0.007861887104809284, -0.029475226998329163, -0.030768193304538727, 0.06337721645832062, 0.011691475287079811, 0.06955715268850327, 0.0014148657210171223, 0.019832773134112358, -0.006568921729922295, -0.04402656853199005, 0.06670824438333511, -0.041791271418333054, -0.021991368383169174, 0.04363210126757622, 0.003002309473231435, 0.03475666418671608, 0.03600579872727394, -0.010491646826267242, 0.005681377369910479, 0.0034899108577519655, -0.019997134804725647, -0.025640161707997322, -0.031162656843662262, -0.03642217814922333, -0.012622848153114319, 0.0231418889015913, -0.030965425074100494, -0.004865056369453669, 0.045538678765296936, 0.019021932035684586, -0.022725509479641914, 0.040564049035310745, 0.022550193592905998, -0.003796716220676899, -0.05903811380267143, -0.0220023263245821, -0.018287789076566696, 0.01189966406673193, 0.031644780188798904, 0.0005057494272477925, -0.025201868265867233, 0.01343369111418724, -0.020555958151817322, 0.008875439874827862, 0.015493669547140598, 0.07192394137382507, -0.0220023263245821, -0.016414085403084755, -0.030088838189840317, 0.003087228862568736, 0.0024969023652374744, 0.011023078113794327, -0.009615059942007065, 0.05018458887934685, -0.008190606720745564, 0.048256099224090576, -0.044289544224739075, 0.019646499305963516, -0.0037474080454558134, 0.009713676758110523, -0.027678225189447403, -0.06149255484342575, -0.029387569054961205, 0.035260699689388275, -0.017630349844694138, -0.016764720901846886, 0.020457342267036438, -0.022835083305835724, 0.03732067719101906, 0.014463680796325207, -0.025925051420927048, -0.04663441330194473, 0.02831375040113926, 0.02741524949669838, -0.009762984700500965, -0.011242223903536797, 0.012809122912585735, -0.049001194536685944, 0.0011594229144975543, 0.01950405351817608, -0.009379477240145206, -0.00172030134126544, -0.028752043843269348, -0.0005786842084489763, -0.0036323561798781157, 0.011149086989462376, 0.012480403296649456, 0.056233037263154984, -0.01879182644188404, -0.02833566442131996, 0.006788067985326052, -0.007708484306931496, 0.0014778703916817904, -0.06022150442004204, 0.01770705170929432, -0.00227775564417243, -0.04667824134230614, -0.025771649554371834, 0.02888353168964386, 0.007264712359756231, 0.0017463250551372766, -0.041221488267183304, 0.010743665508925915, 0.006914077326655388, 0.04794929176568985, -0.052858177572488785, -0.00010477950127096847, -0.028160346671938896, 0.06802313029766083, -0.009006928652524948, -0.02238583192229271, -0.009921865537762642, 0.03252136707305908, -0.03285008668899536, 0.01743311807513237, 0.04453060403466225, -0.0020243674516677856, 0.04391699284315109, 0.015986749902367592, 0.025070378556847572, 0.0005119129200465977, 0.019843731075525284, 0.012327000498771667, 0.03133797273039818, 0.04387316480278969, -0.025355270132422447, -0.028949275612831116, -0.06228148564696312, 0.004363758023828268, 0.0009779420215636492, -0.005108857061713934, -0.04650292545557022, -0.038197264075279236, 0.0077906642109155655, -0.020709360018372536, -0.02706461399793625, -0.013696666806936264, 0.02240774780511856, 0.011055950075387955, -0.002364044776186347, -0.005960789509117603, -0.019701285287737846, 0.03499772399663925, 0.03114074282348156, 0.05246371403336525, -0.018583638593554497, 0.03046138770878315, 0.03271859884262085, -0.012809122912585735, -0.04930800199508667, -0.006081320345401764, -0.07955024391412735, 0.017334502190351486, -0.013674752786755562, -0.04030107334256172, -0.0001116278363042511, -0.0016216853400692344, -0.00473356805741787, -0.004810269456356764, 0.04025724530220032, 0.009828728623688221, -0.0020586091559380293, 0.015767602249979973, 0.00424870615825057, 0.006683973595499992, 0.033814333379268646, 0.0012511905515566468, 0.06556868553161621, 0.009132937528192997, -0.001616206718608737, -0.016797592863440514, 0.024281451478600502, 0.03946831449866295, -0.056145377457141876, -0.012666678056120872, 0.0056539843790233135, -0.005977225489914417, 0.012337957508862019, -0.0012847473844885826, 0.020227238535881042, 0.08402083814144135, 0.040454477071762085, 0.04865056276321411, -0.03644409030675888, 0.010288936085999012, 0.03295965865254402, 0.028489068150520325, -0.0321926474571228, -0.0033474655356258154, 0.04084894061088562, 0.03195158392190933, -0.03133797273039818, 0.03916151076555252, 0.0665767565369606, 0.037517908960580826, -0.03022032603621483, -0.05136797949671745, -0.01653461717069149, -0.024566341191530228, 0.0017079743556678295, -0.013861027546226978, 0.04161595180630684, 0.024084219709038734, 0.05145563930273056, 0.016775676980614662, 0.046327605843544006, 0.0041336542926728725, 0.013740496709942818, -0.01387198455631733, 0.02080797590315342, 0.012721464037895203, 0.040235329419374466, 0.023996559903025627, 0.0191753339022398, -0.00015819650434423238, 0.007281148340553045, -0.03149137645959854, 0.03162286430597305, -0.011220309883356094, -0.040783196687698364, -0.02246253378689289, 0.00024020529235713184, -0.0012128398520871997, -0.0007505773683078587, -0.021794136613607407, 0.021958496421575546, -0.04240488260984421, -0.03872321546077728, 0.006420997437089682, 0.02279125340282917, -0.019241077825427055, -0.0756494328379631, -0.032324135303497314, -0.015526541508734226, -0.04255828261375427, -0.0050978995859622955, 0.004289796110242605, -0.019262991845607758, -0.027239931747317314, 0.005437576677650213, 0.006837376393377781, -0.023514438420534134, -0.014825272373855114, 0.009746548719704151, 0.007045565638691187, -0.011746261268854141, -0.021684562787413597, -0.046985045075416565, 0.007220882922410965, -0.025179952383041382, 0.039555974304676056, -0.0519377626478672, 0.03396773338317871, -0.011198394931852818, -0.09449604898691177, 0.018243961036205292, 0.0010142382234334946, 0.018616510555148125, 0.018309704959392548, 0.06289509683847427, -0.022769339382648468, -0.010234150104224682, 0.05908194184303284, 0.01052451878786087, -0.02325146272778511, -0.012600934132933617, -0.0677601546049118, -0.007089395076036453, -0.020983293652534485, 0.018134387210011482, 0.008968577720224857, 0.018024813383817673, -0.018145345151424408, 0.03206115961074829, -0.00129022600594908, -0.023865072056651115, -0.01914246194064617, 0.011833920143544674, 0.05776706337928772, -0.0597832128405571, -0.017739923670887947, 0.06298275291919708, 0.0518939308822155, 0.03837258368730545, 0.007511252071708441, -0.008053639903664589, -0.00679902546107769, -0.07709579914808273, -0.025092294439673424, -0.02664823643863201, -0.008371402509510517, 0.004117218311876059, -0.05776706337928772, -0.02279125340282917, -0.02110382542014122, 0.012403701432049274, -0.00950548704713583, 0.026144199073314667, -0.0006879151333123446, 0.0028790393844246864, -0.01914246194064617, 0.021520202979445457, -0.03212690353393555, -0.0019805380143225193, 0.00878230296075344, 0.0015408750623464584, -0.0045911227352917194, -0.03453751653432846, 0.0034022522158920765, 0.02189275249838829, -0.024084219709038734, -0.016709933057427406, -0.03587431088089943, -0.021684562787413597, 0.009609581902623177, -0.026998870074748993, -0.044289544224739075, -0.01060669869184494, 0.02150924690067768, -0.012524232268333435, -0.01680854894220829, -0.017586519941687584, -0.033003490418195724, 0.03951214626431465, -0.03664132207632065, 0.0005841628299094737, 0.01702769659459591, -0.0027270063292235136, -0.03532644361257553, -0.07464135438203812, -0.0056539843790233135, 0.009730112738907337, -0.0028598641511052847, -0.017476947978138924, 0.023667840287089348, 0.012261256575584412, -0.043281469494104385, -0.011088822036981583, -0.027218017727136612, 0.003032442182302475, -0.02461017109453678, 0.00800981093198061, 0.01721397042274475, 0.06175553426146507, -0.001935339067131281, -0.005333482287824154, -0.009121980518102646, -0.008809695951640606, 0.017038654536008835, 0.007478380110114813, -0.012732421979308128, -0.008404274471104145, -0.003229674184694886, 0.028708213940262794, -0.01161477342247963, 0.002069566398859024, -0.03149137645959854, 0.026341430842876434, 0.027722055092453957, 0.00159292237367481, -0.002309258095920086, 0.016666105017066002, 0.0445525199174881, 0.0016997563652694225, -0.03602771461009979, 0.009472615085542202, -0.027261845767498016, -0.04273360222578049, 0.03786854445934296, 0.024982720613479614, -0.05097351595759392, 0.011044992133975029, -0.007615346927195787, 0.03600579872727394, -0.015625158324837685, -0.02072031795978546, 0.004851359408348799, 0.0036433134227991104, 0.026100369170308113, 0.025421014055609703, -0.044070396572351456, -0.013773368671536446, 0.02763439528644085, -0.019701285287737846, -0.021498288959264755, -0.01376241073012352, 0.01901097409427166, 0.011231266893446445, -0.026670150458812714, -0.019756073132157326, -0.03092159517109394, -0.029869692400097847, 0.037298765033483505, 0.009363041259348392, 0.04071745276451111, -0.04808077961206436, 0.010015003383159637, -0.016567489132285118, -0.027327589690685272, 0.017586519941687584, 0.01500059012323618, -0.050842028111219406, -0.07652601599693298, 0.012447531335055828, -0.01145041361451149, -0.025092294439673424, 0.009828728623688221, 0.038438327610492706, -0.006212808191776276, 0.024171877652406693, -0.003662488888949156, -0.029058849439024925, 0.020654574036598206, -0.04093660041689873, 0.003089968115091324, -0.01851789467036724, -0.01313784345984459, 0.0045335968025028706, -0.007538645528256893, -0.002602366730570793, -0.00258045201189816, -0.03000118024647236, -0.022155728191137314, -0.006399082951247692, -0.03168860822916031, 0.0047828759998083115, -0.014869101345539093, 0.0019449266837909818, -0.009308255277574062, -0.011516157537698746, -0.03990660980343819, -0.036268774420022964, -0.009461658075451851, -0.024215707555413246, -0.0013847330119460821, 0.007659176364541054, -7.896984243416227e-06, 0.03079010732471943, 0.008656293153762817, 0.029080763459205627, -0.049483317881822586, 0.05588240176439285, -0.0033967734780162573, -0.015307394787669182, -0.0036268774420022964, 0.007516731042414904, -0.022725509479641914, 0.010929940268397331, 0.01833161897957325, -0.02515803836286068, -0.05597006157040596, 0.0010717641562223434, -0.03079010732471943, -0.019777987152338028, 0.04380742087960243, -0.0021065473556518555, 0.023492522537708282, -0.029760118573904037, 0.006530570797622204, 0.016567489132285118, -0.03179818391799927, -0.00877134595066309, 0.0033310295548290014, 0.04426762834191322, 0.006968864239752293, -0.009899950586259365, 0.0014929367462173104, -0.0006461402517743409, 0.011461370624601841, -0.03291583061218262, -0.0451442152261734, -0.012896781787276268, -0.014715699478983879, -0.0019312300719320774, -0.0028543854132294655, 0.0036241381894797087, 0.05408539995551109, -0.010787495411932468, -0.01517590694129467, -0.003314593341201544, 0.010486168786883354, 0.004895188845694065, 0.007253754884004593, 0.015833348035812378, -0.022769339382648468, -0.01529643777757883, 0.0019065761007368565, 0.0014641736634075642, 0.022254344075918198, -0.016041535884141922, 0.011768176220357418, 0.014967718161642551, 0.022429661825299263, 0.022210516035556793, -0.010414945892989635, 0.0027722055092453957, 0.03758365288376808, -0.004004905465990305, 0.008442625403404236, -0.03951214626431465, -0.06955715268850327, -0.06101043522357941, 0.005328003317117691, 0.01444176584482193, 0.00205313041806221, -0.003637834684923291, -0.026231857016682625, -0.03545793145895004, 0.012666678056120872, -0.05391008034348488, -0.0013272070791572332, -0.02279125340282917, -0.030943511053919792, 0.0445963479578495, -0.014145918190479279, 0.009308255277574062, 0.015515584498643875, -0.045845482498407364, 0.016786634922027588, -0.016720890998840332, -0.00014955048391129822, 0.02167360670864582, -0.015482712537050247, 0.020731275901198387, 0.027919286862015724, -0.018233003094792366, 0.028927361592650414, 0.04492506757378578, -0.022374875843524933, 0.0012696810299530625, 0.03758365288376808, -0.05259520187973976, -0.003010527463629842, -0.052858177572488785, 0.0017394766910001636, -0.006667537614703178, -0.03111882694065571, -0.012546147219836712, -0.05377859249711037, -0.01593196392059326, -0.04155020788311958, 0.006300467066466808, 0.00866177212446928, 0.0013409036910161376, 0.04030107334256172, -0.019131503999233246, 0.016140151768922806, -0.023382950574159622, 0.005393747705966234, 0.014430808834731579, 0.00991090852767229, 0.020687445998191833, 0.019887560978531837, -0.014397936873137951, 0.003111882833763957, -0.0035255220718681812, -0.007461944129317999, 0.013554221950471401, -0.0025927789974957705, -0.0007889280095696449, 0.03848215565085411, 0.018485022708773613, -0.0040021659806370735, -0.029299911111593246, 0.0039857299998402596, -0.010475210845470428, -0.02238583192229271, -0.014452722854912281, 0.012918696738779545, 0.006092277355492115, -0.021684562787413597, -0.009417828172445297, 0.007352370768785477, -0.02322954684495926, 0.00041535141644999385, 0.005437576677650213, -0.038986194878816605, 0.022013284265995026, 0.00548140611499548, -0.017630349844694138, 0.05724111199378967, -0.0010484798112884164, -0.03745216503739357, 0.001712083350867033, 0.030176496133208275, -0.004100782331079245, 0.01112169399857521, -0.016896208748221397, -0.001044370816089213, -0.0006396343815140426, -0.014145918190479279, -0.03878895938396454, 0.00037049484672024846, 0.026538662612438202, -0.041221488267183304, 0.0006581248599104583, 0.013773368671536446, -0.018649382516741753, -7.391920371446759e-05, -0.007308541797101498, 0.022024240344762802, 0.030549045652151108, -0.0025749735068529844, -0.025530587881803513, -0.011110736057162285, -0.010743665508925915, -0.011318925768136978, -0.013784325681626797, 0.021684562787413597, 0.012053066864609718, 0.03238987922668457, -0.04161595180630684, -0.010584784671664238, 0.00262839044444263, 0.02717418782413006, -0.022363917902112007, -0.03488815203309059, 0.04808077961206436, 0.013861027546226978, 0.01730163022875786, 0.007188010960817337, 0.06526187807321548, 0.010080747306346893, -0.03539218753576279, -0.01411304622888565, -0.002369523514062166, -0.03168860822916031, 0.009795856662094593, 0.03331029415130615, 0.028510982170701027, 0.001743585686199367, -0.01781662367284298, 0.005034894682466984, -0.027809713035821915, -0.014956760220229626, -0.003169408766552806, 0.021684562787413597, 0.03633451834321022, -0.02921225130558014, -0.008431668393313885, 0.029299911111593246, -0.007560560014098883, 0.017465990036725998, -0.0073578497394919395, -0.020030006766319275, -0.03451560065150261, 0.043369125574827194, -0.0011012119939550757, -0.011921579018235207, -0.005577282980084419, 0.011822963133454323, -0.006694931071251631, 0.0032351526897400618, -0.009379477240145206, -0.02159690484404564, 0.013630922883749008, 0.0011566835455596447, 0.023886987939476967, 0.005988182965666056, -0.009247989393770695, 0.004714392591267824, -0.0018257657065987587, -0.04196658730506897, 0.01091898325830698, -0.00310366484336555, -0.02023819461464882, -0.001282008015550673, 0.048694390803575516, 0.00868916604667902, 0.012535189278423786, -0.03352944180369377, -0.04185701534152031, -0.001959993038326502, -0.006886684335768223, 0.031644780188798904, 0.031184570863842964, 0.004802051465958357, -0.008163213729858398, 0.00461577670648694, 0.013061141595244408, -0.01908767595887184, -0.027371419593691826, -0.013806240633130074, -0.03024224005639553, 0.03870130330324173, 0.04957097768783569, -0.004218573682010174, 0.012436573393642902, -0.021235313266515732, 0.0057142493315041065, 0.03574282303452492, 0.046108461916446686, -0.016556531190872192, -0.00026075029745697975, -0.02743716351687908, 0.0034652568865567446, -0.006119670812040567, -0.005741642788052559, 0.0014449984300881624, -0.053077325224876404, 0.006108713336288929, -0.0074071576818823814, 0.012053066864609718, 0.006185414735227823, -0.006793546956032515, -0.03068053349852562, 0.0015381356934085488, 0.014989632181823254, -0.00810294784605503, -0.04387316480278969, -0.0017011261079460382, 0.05000926926732063, 0.00025287471362389624, -0.034252624958753586, 0.0066346656531095505, 0.023492522537708282, -0.0015819650143384933, 0.01936160773038864, 0.020840847864747047, -0.0021366800647228956, -0.0014737613964825869, -0.02121339738368988, 0.012874866835772991, -0.028927361592650414, 0.006355253513902426, 0.012403701432049274, -0.029606714844703674, 0.012316043488681316, 0.05434837564826012, -0.010935419239103794, 0.0343841128051281, 0.03973129019141197, 0.0072427974082529545, -0.03190775588154793, 0.006081320345401764, 0.018320661038160324, -0.01274337898939848, 0.02877395786345005, 0.02072031795978546, -0.040344901382923126, -0.03791237622499466, -0.007697526831179857, 0.00820156466215849, 0.022725509479641914, -0.016611317172646523, 0.021969454362988472, 0.0070017362013459206, -0.02047925628721714, -0.032784342765808105, -0.0028242527041584253, -0.009757505729794502, 0.01257901918143034, 0.031316060572862625, 0.03440602868795395, -0.024171877652406693, 0.03057096153497696, 0.02493889071047306, 0.02336103469133377, 0.05447986349463463, 0.024456769227981567, -0.010529997758567333, 0.05180627480149269, 0.027283761650323868, 0.004985586740076542, -0.02268168143928051, 0.013335075229406357, -0.021881794556975365, 0.002633869182318449, -0.00841523241251707, 0.05316498130559921, 0.01912054792046547, -0.008606985211372375, 0.00868916604667902, -0.02325146272778511, -0.018189173191785812, -0.006136106792837381, -0.002029845956712961, -0.0025599070359021425, 0.01246944535523653, 0.007127745542675257, 0.01120387390255928, -0.001697016996331513, 0.0066346656531095505, -0.00022856313444208354, -0.0014381500659510493, -0.0028406886849552393, -0.023755500093102455, -0.019646499305963516, 0.024128049612045288, -0.007900238037109375, -0.014365064911544323, -0.011987322941422462, 0.022046156227588654, 0.006311424076557159, 0.049001194536685944, 0.020084792748093605, 0.010195799171924591, 0.04409231245517731, -0.016446957364678383, -0.018068643286824226, 0.0485190749168396, 0.018506936728954315, -0.003095446852967143, 0.029036933556199074, 0.018649382516741753, 0.00865081511437893, -0.0058621736243367195, 0.018430234864354134, -0.03352944180369377, -0.0017408464336767793, -0.005475927609950304, 0.011505200527608395, -0.03692621365189552, 0.01754269190132618, 0.0080481618642807, 0.00942330714315176, 0.007379764225333929, -0.00694147078320384, 0.011417541652917862, 0.010327287018299103, 0.035151127725839615, 0.01778375171124935, -0.0036213987041264772, 0.018101515248417854, 0.009286340326070786, 0.027283761650323868, 0.0350196398794651, 0.048343755304813385, 0.01096281222999096, 0.007188010960817337, 0.04527570307254791, 0.012261256575584412, 0.020391598343849182, -0.00885352585464716, -0.029606714844703674, 0.001449107425287366, 0.025421014055609703, -0.029957350343465805, 0.0018326140707358718, -0.04466209188103676, -0.013269331306219101, -0.013466563075780869, -0.010694357566535473, 0.02139967307448387, 0.03236796334385872, -0.0007848190143704414, 0.005569064989686012, -0.004823965951800346, 0.042273394763469696, -0.03089968115091324, 0.017148226499557495, -0.013389862142503262, -0.021257227286696434, 0.017849497497081757, -0.020062878727912903, -0.011658603325486183, -0.03079010732471943, -0.003558394033461809, -0.015537499450147152, 0.015066334046423435, 0.015888134017586708, 0.004988326225429773, -0.03068053349852562, -0.013619965873658657, 0.020873719826340675, -0.012502317316830158, -0.011625731363892555, -0.008700123056769371, 0.00634977500885725, 0.03574282303452492, 0.03764939680695534, 0.020391598343849182, -0.017367374151945114, -0.016907166689634323, -0.020742231979966164, 0.008524805307388306, -0.0030844893772155046, -0.0017723487690091133, 0.016162067651748657, 0.01433219201862812, -0.002533883322030306, -0.011702432297170162, -0.040454477071762085, -0.015263565815985203, -0.0009649302228353918, 0.02036968246102333, 0.0039747729897499084, 0.009165809489786625, -0.006837376393377781, -0.029058849439024925, 0.06802313029766083, 0.002532513812184334, -0.028949275612831116, 0.003982990980148315, 0.011417541652917862, 0.03405539318919182, -0.01477048546075821, -0.023076144978404045, 0.019701285287737846, -0.02404038980603218, -0.003322811331599951, 0.0008320725173689425, -0.005960789509117603, -0.02040255442261696, -0.011768176220357418, 0.0022079027257859707, 0.032543279230594635, 0.012480403296649456, 0.03587431088089943, 0.017115354537963867, -0.036707065999507904, 0.01245848834514618, -0.00040473652188666165, 0.02765630930662155, 0.00022102997172623873, 0.004686999600380659, -0.03146946057677269, -0.02181605063378811, -0.0129844406619668, -0.03789046034216881, 0.005177340004593134, 0.011669560335576534, -0.005856694653630257, -0.03578665107488632, 0.03396773338317871, 0.0006663428503088653, -0.024675915017724037, 0.005201993975788355, -0.036509834229946136, 0.0018326140707358718, 0.013674752786755562, 0.02673589438199997, 0.006667537614703178, 0.0001628191239433363, -0.0011443565599620342, 0.01979990117251873, 0.04014766961336136, 0.057021964341402054, 0.019000016152858734, 0.00277083576656878, -0.012283170595765114, -0.03922725468873978, -0.012568062171339989, 0.0005060918629169464, 0.046765901148319244, 0.011965407989919186, -0.06955715268850327, 0.022725509479641914, 0.011888707056641579, -0.011439456604421139, 0.02559633180499077, -0.003265285398811102, -0.002036694437265396, 0.010436859913170338, -0.02662632055580616, 0.03429645299911499, 0.01089158933609724, 0.0016696237726137042, 0.0022311871871352196, 0.010058832354843616, 0.03361709788441658, -0.0118448780849576, 0.03760556876659393, 0.007944067008793354, -0.00159292237367481, -0.023755500093102455, 0.030505217611789703, -0.05066671222448349, 0.009965695440769196, -0.029299911111593246, 0.008152256719768047, 0.012600934132933617, -0.00942330714315176, 0.03940257057547569, 0.01399251539260149, 0.020249152556061745, -0.029979264363646507, -0.0003917246649507433, 0.040213413536548615, -0.030833937227725983, -0.005385529715567827, -0.007385242730379105, 0.020873719826340675, 0.03933682665228844, -0.01359805092215538, -0.00886448286473751, 0.0038186307065188885, 0.01792619749903679, -0.01145041361451149, -0.011516157537698746, 0.028072688728570938, -0.010316330008208752, 0.013367947190999985, -0.055356450378894806, -0.015975791960954666, -0.009593145921826363, -0.003503607353195548, -0.008645336143672466, 0.011976365931332111, 0.009938301518559456, -0.010272500105202198, -0.062106166034936905, -0.045100387185811996, -0.02322954684495926, 0.027480993419885635, -0.017685135826468468, -0.013784325681626797, 0.00010863169154617935, -0.032104987651109695, -0.0009409610065631568, -0.0028132954612374306, -0.02798503078520298, -0.0010121837258338928, -0.03133797273039818, 0.023295290768146515, -0.01901097409427166, 0.0058621736243367195, -0.01032180804759264, 0.04201041907072067, -0.0016381214372813702, -0.049351830035448074, 0.006114192306995392, -0.021092867478728294, -0.03350752592086792, -0.03326646611094475, -0.02526761218905449, -0.012524232268333435, 0.01593196392059326, -0.01789332553744316, -0.021903710439801216, -0.027042699977755547, 0.0236897561699152, -0.011417541652917862, 0.013861027546226978, -0.0022243387065827847, 0.005675898864865303, 0.0021640732884407043, -0.021827008575201035, 0.007938588038086891, 0.02322954684495926, 0.005889567080885172, -0.021498288959264755, -0.016227811574935913, 0.01456229668110609, 0.000851932680234313, 0.004215834196656942, -0.03127222880721092, -0.018178217113018036, -0.01637025736272335, 0.014781443402171135, -0.024128049612045288, 0.015482712537050247, -0.0115599874407053, -0.008886397816240788, -0.023098058998584747, -0.00679902546107769, 0.02036968246102333, -0.0028269921895116568, 0.01489101629704237, -0.007472901605069637, 0.01776183769106865, -0.0031803660094738007, 0.007215404417365789, 0.007801621686667204, 0.03361709788441658, -0.024106133729219437, 0.02290082722902298, 0.0045582507736980915, -0.007450987119227648, 0.02910267747938633, -0.004634952172636986, -0.005590979475528002, 0.015975791960954666, -0.00999308843165636, 0.01941639557480812, 0.005125293042510748, 0.008502891287207603, 0.012589976191520691, -0.013346032239496708, 0.004884231369942427, -0.0021709217689931393, -0.01347752008587122, 0.008590549230575562, 0.0020791541319340467, 0.034121137112379074, 0.010573826730251312, -0.023076144978404045, -0.005462230648845434, -0.011373712681233883, 0.009510966017842293, -0.006853812374174595, -0.017531733959913254, 0.012173597700893879, 0.014397936873137951, -0.018561722710728645, 0.02222147211432457, 0.02439102530479431, 0.02148733101785183, -0.004777397494763136, 0.01534026674926281, -0.00484040193259716, -0.01928490772843361, 0.036728981882333755, 0.004476070869714022, -0.0056375483982264996, 0.005264998879283667, 0.005048591643571854, -0.007987895980477333, -0.003846024163067341, 0.019810859113931656, 0.033332210034132004, -0.00023318575404118747, -0.03528261557221413, 0.0004807530203834176, -0.030066924169659615, -0.018474064767360687, -0.007620825432240963, 0.014507509768009186, -0.0010861457558348775, 0.01930682174861431, 0.031184570863842964, 0.05513730272650719, -0.016008663922548294, -0.018254917114973068, -0.012217426672577858, 0.033441781997680664, -0.015833348035812378, -0.005158165004104376, 0.020062878727912903, -0.026319514960050583, 0.010623134672641754, -0.019876603037118912, 0.024303365498781204, -0.017345460131764412, 0.0020750451367348433, -0.0129844406619668, 0.013269331306219101, -0.015756646171212196, -5.3117386414669454e-05, -0.021333929151296616, 0.009817770682275295, 0.029168421402573586, 0.01358709391206503, -0.0038405454251915216, -0.004867795389145613, 0.023382950574159622, -0.001664145034737885, -0.0093027763068676, 0.007653697393834591, -0.04334721341729164, 0.02401847578585148, 0.016282597556710243, -0.0011601076694205403, 0.016688019037246704, 0.007089395076036453, 0.008354966528713703, -0.01023962814360857, -0.006218286696821451, 0.01068887859582901, -0.023624012246727943, 0.022155728191137314, 0.018813742324709892, -0.002322954824194312, -0.013630922883749008, -0.019953304901719093, 0.013411776162683964, 0.047116536647081375, -0.0019490356789901853, -0.024500597268342972, 0.0236897561699152, -0.009061714634299278, 0.015493669547140598, 0.043829333037137985, 0.01500059012323618, -0.01759747788310051, 0.0019298604456707835, -0.011625731363892555, 0.004204876720905304, -0.0073742857202887535, -0.013061141595244408, -0.013554221950471401, 0.010316330008208752, -0.022528277710080147, -0.019482139497995377, -0.000151176966028288, -0.014288363046944141, -0.02238583192229271, -0.017608435824513435, -3.291480243206024e-05, -0.03699195757508278, -0.025442928075790405, -0.05281434953212738, -0.017400246113538742, -0.02866438403725624, 0.0013169345911592245, -0.005577282980084419, 0.002099699107930064, -0.015044419094920158, 0.023602096363902092, 0.0015805953880771995, -0.019438309594988823, 0.0003605647652875632, -0.028576726093888283, -0.00894666276872158, -0.018726082518696785, -0.015088248066604137, 0.04571399465203285, -0.0015340266982093453, -0.009083629585802555, 0.05689047649502754, -0.03986278176307678, -0.010179363191127777, -0.03585239499807358, -0.01404730137437582, 0.00979037769138813, 3.3251869808736956e-06, 0.00942330714315176, -0.02176126465201378, 0.002309258095920086, -0.006048448383808136, -0.0022476231679320335, 0.0064867413602769375, 0.012951568700373173, 0.01708248257637024, 0.025223782286047935, 0.0077577922493219376, -0.0023119973484426737, 0.00329815736040473, 0.007812579162418842, 0.0006485371850430965, 0.03011075221002102, 0.015701858326792717, 0.02102712355554104, -0.04262402653694153, 0.02616611309349537, -0.024193793535232544, 0.021224355325102806, 0.0026722196489572525, 0.010951855219900608, 0.0021544857881963253, 0.014551338739693165, 0.014134960249066353, -0.022210516035556793, -0.02774396911263466, 0.021772222593426704, 0.025355270132422447, 0.00792763102799654, 0.002427049446851015, -0.004848619922995567, 0.017575563862919807, 0.017937155440449715, 0.03933682665228844, -0.002724267076700926, -0.019383523613214493, -0.012250298634171486, 0.016446957364678383, 0.010886111296713352, -0.03127222880721092, -0.012535189278423786, 0.02018340863287449, -0.006979821715503931, -0.00011976023233728483, -0.006727803032845259, 0.010760101489722729, 0.009215117432177067, -0.001670993398874998, 0.01500059012323618, -0.012874866835772991, 0.0642538070678711, 0.00866177212446928, -0.012359872460365295, -0.006645622663199902, -0.041703611612319946, -0.01930682174861431, 0.01985468901693821, 0.004706174600869417, 0.05198159068822861, -0.03341986611485481, -0.011822963133454323, 0.024434853345155716, -0.00634977500885725, -0.026692064478993416, -0.0016682540299370885, -0.02594696544110775, -0.015975791960954666, -0.0030214847065508366, 0.03162286430597305, 0.025925051420927048, 0.00010888850374612957, 0.012206469662487507, 0.03569899499416351, 0.0006283345865085721, -0.04288700222969055, 0.025004634633660316, 0.01827683299779892, -0.003999426960945129, -0.014222619123756886, 0.0321926474571228, 0.029190337285399437, 0.018813742324709892, 0.026034625247120857, -0.017772795632481575, 0.0014080173568800092, -0.02719610184431076, 0.0208846777677536, 0.037758972495794296, -0.010332765989005566, 0.014901974238455296, 0.017235886305570602, -0.03675089776515961, 0.018528850749135017, 0.0034214274492114782, 0.02765630930662155, 0.02198041044175625, -0.018802784383296967, -0.016227811574935913, 0.020325854420661926, -0.009187724441289902, 0.032565195113420486, -0.04409231245517731, -0.0018202870851382613, -0.02172839269042015, -0.03653175011277199, 0.0388985350728035, -0.009823249652981758, -0.013444648124277592, 0.009280861355364323, -0.025223782286047935, 0.02303231507539749, 0.0055142780765891075, -0.02240774780511856, 0.003955597523599863, 0.003142015542834997], [0.04565134271979332, 0.03366513550281525, -0.028477482497692108, 0.0024948513600975275, -0.028777819126844406, 0.012334326282143593, -0.042183805257081985, 0.0005183386383578181, 0.00430029071867466, 0.08474986255168915, -0.0030767556745558977, -0.008436760865151882, -0.0011723411735147238, -0.05190382897853851, -0.027221523225307465, 0.03361052647233009, 0.020682351663708687, -0.02100999280810356, -0.007044286001473665, -0.011897471733391285, 0.04141930863261223, 0.055862825363874435, -0.03879817947745323, -0.0180202666670084, 0.02565157599747181, -0.00460062874481082, 0.017760884016752243, -0.012272893451154232, 0.010156877338886261, -0.009549375623464584, 0.06514599174261093, -0.039589978754520416, 0.036723118275403976, -0.005969213321805, 0.02774028852581978, 0.016764309257268906, 0.008621059358119965, -0.019904203712940216, -0.03189041092991829, -0.02588365599513054, 0.0032610539346933365, -0.022812018170952797, -0.025910958647727966, -0.005034070461988449, -0.028504785150289536, 0.04046368971467018, -0.032491087913513184, -0.01249814685434103, 0.0567365363240242, 0.009720022790133953, -0.04971955344080925, 0.014102223329246044, 0.03661390393972397, 0.020327406004071236, 0.03595862165093422, -0.007610832341015339, -0.009249038062989712, 0.03557637333869934, 0.004201315809041262, 0.0017986136954277754, -0.004112579859793186, -0.014894023537635803, 0.04535100236535072, 0.0059214322827756405, -0.02875051647424698, 0.014934978447854519, 0.027289781719446182, 0.021460499614477158, -0.02010897919535637, 0.009795106947422028, 0.05433383211493492, -0.00284296995960176, -0.038961999118328094, -0.018225042149424553, -0.050429441034793854, -0.01728307455778122, -0.012552754022181034, 0.00492144376039505, -0.03732379525899887, 0.006552824284881353, -0.022074826061725616, 0.01203398872166872, -0.03631356731057167, -0.005136458668857813, -0.027098657563328743, -0.03565828502178192, -0.05952148512005806, -0.003795177210122347, -0.03713266924023628, 0.021201116964221, -0.05968530476093292, 0.006853161845356226, -0.019631169736385345, 0.03759682923555374, -0.012266067788004875, 0.000801611749920994, 0.026675455272197723, -0.05149427801370621, 0.02845017798244953, 0.026566240936517715, 0.05201304331421852, -0.04019065573811531, -0.038661662489175797, 0.023276178166270256, 0.007242235820740461, -0.021460499614477158, -0.011249015107750893, 0.007972602732479572, 0.030743665993213654, -0.005167175084352493, 0.06689341366291046, -0.013228513300418854, 0.00856645219027996, 0.026962140575051308, 0.033228278160095215, 0.0016484447987750173, -0.036832332611083984, 0.03219074755907059, -0.029596922919154167, -0.02611573413014412, -0.018498076125979424, 0.002151851775124669, 0.008416283875703812, -0.002389050554484129, 0.047917526215314865, -0.004037495236843824, -0.01137187983840704, -0.02274375967681408, 0.0025801744777709246, -0.01848442479968071, 0.03208153322339058, -0.036450084298849106, -0.00935825239866972, -0.034511540085077286, 0.014566382393240929, 0.011487919837236404, 0.026825623586773872, 0.009904320351779461, 0.008525497280061245, 0.026416072621941566, 0.07027903944253922, 0.029869956895709038, 0.009781455621123314, 0.028532087802886963, -0.055207543075084686, -0.03827941417694092, -0.04436808079481125, 0.0029419451020658016, 0.013303598389029503, 0.042566053569316864, -0.017924703657627106, -0.00044922681991010904, 0.0008839486981742084, -0.007378752809017897, 0.02678466960787773, -0.062142614275217056, 0.007508444134145975, 0.010873592458665371, 0.00931729655712843, -0.018375210464000702, -0.02212943322956562, -0.006996504962444305, -0.012709748931229115, -0.044504597783088684, -0.01156983058899641, -0.038470540195703506, 0.009494769386947155, -0.013378682546317577, -0.05597203969955444, -0.01991785503923893, -0.06263408064842224, -0.04095515236258507, 0.010682468302547932, 0.018893975764513016, -0.03554907068610191, -0.0440131351351738, 0.014061268419027328, 0.038688965141773224, -0.030279507860541344, 0.018880324438214302, 0.06667498499155045, 0.07988984882831573, 0.02263454720377922, -0.03298254683613777, -0.004433394875377417, 0.012580057606101036, -0.020641395822167397, -0.0074401856400072575, -0.024163538590073586, 0.001298619550652802, 0.002175742294639349, -0.012252415530383587, -0.012839440256357193, 0.04406774416565895, -0.033037155866622925, -0.04657965898513794, -0.03287333622574806, 0.032026927918195724, 0.026716409251093864, 0.01879841461777687, 0.030061081051826477, -0.026293206959962845, 0.013242165558040142, -0.010307046584784985, -0.06618352234363556, 0.024982642382383347, 0.0156994741410017, -0.010259265080094337, 0.009262690320611, 0.010457214899361134, 0.02778124436736107, -0.025528710335493088, -0.019207965582609177, 0.011549352668225765, -0.035904016345739365, -0.00036987621570006013, 0.03224535658955574, 0.04002683237195015, 0.048381686210632324, 0.010880418121814728, -0.0680401548743248, -0.014812112785875797, 0.026675455272197723, 0.026866579428315163, 0.022388815879821777, 0.009037436917424202, -0.04515988007187843, -0.05766485258936882, -0.009829236194491386, -0.07202646136283875, -0.02084617130458355, 0.010047663934528828, -0.026033824309706688, 0.019972462207078934, -0.03467535972595215, 0.019972462207078934, -0.03494839370250702, 0.00864153727889061, -0.024709608405828476, -0.006658624857664108, -0.0167097020894289, -0.03792446851730347, 0.006904355715960264, 0.007597180549055338, -0.017911052331328392, 0.006662037689238787, 0.026061126962304115, 0.010566429235041142, 0.013917925767600536, -0.019863247871398926, 0.035822104662656784, -0.029542315751314163, 0.0025067965034395456, -0.008395805954933167, 0.02054583467543125, -0.014102223329246044, 0.032218050211668015, -0.03579480201005936, -0.014129526913166046, 0.038661662489175797, -0.026252251118421555, -0.019986113533377647, -0.006958962883800268, 0.020791564136743546, -0.0327095128595829, -0.016450319439172745, 0.02185639925301075, -0.040900543332099915, -0.004115992691367865, 0.01782914251089096, 0.01782914251089096, 0.037842560559511185, 0.029460405930876732, 0.0060204071924090385, -0.006399242207407951, 0.05629967898130417, 0.04060020670294762, 0.035630982369184494, -0.034593451768159866, 0.05646350234746933, 0.002127961488440633, -0.03595862165093422, 0.04016335308551788, -0.06656577438116074, -0.04518718272447586, 0.005703004542738199, -0.003069929778575897, -0.0005874504568055272, 0.018470773473381996, 0.010068140923976898, 0.05386967584490776, -0.04343976452946663, -0.01616363227367401, -0.014825765043497086, 0.008982829749584198, -0.006952136754989624, -0.011617611162364483, -0.003784938482567668, -0.007139848079532385, -0.06389003247022629, 0.032846029847860336, 0.020218193531036377, 0.002177448943257332, 0.005057961214333773, -0.0017405939288437366, 0.021460499614477158, 0.04215650260448456, 0.049856070429086685, -0.01515340618789196, -0.009194431826472282, 0.04567864537239075, 0.04267526790499687, 0.009740499779582024, -0.07634039968252182, 0.011351402848958969, 0.015672171488404274, -0.021255724132061005, 0.027726637199521065, 0.032108839601278305, -0.015180708840489388, -0.016914477571845055, -0.0215014535933733, 0.0283682681620121, -0.08824469894170761, 0.0034453519620001316, -0.04720763862133026, -0.0005319903721101582, 0.007242235820740461, 0.030825577676296234, -0.028259053826332092, -0.04174695163965225, -0.01743324287235737, 0.030252205207943916, 0.011365054175257683, 0.06880465149879456, 0.014934978447854519, 0.02801332250237465, -0.03754222020506859, 0.018375210464000702, -0.04952842742204666, -0.005102329421788454, -0.05608125403523445, -0.018033917993307114, 0.011829212307929993, 0.002563109854236245, -0.00445728562772274, 0.04360358417034149, 0.004556260537356138, 0.008982829749584198, 0.08070895075798035, -0.012982782907783985, 0.023453649133443832, -0.08819009363651276, -0.012457191944122314, -0.0014641466550529003, -0.01367902010679245, 0.024272752925753593, -0.05842934921383858, -0.023317132145166397, 0.005713243503123522, -0.00046031884266994894, 0.03568558767437935, 0.008955526165664196, -0.0024027021136134863, -0.01736498437821865, 0.02883242629468441, 0.015440091490745544, 0.025760790333151817, 0.004358310718089342, -0.024013370275497437, 0.07229949533939362, -0.016300149261951447, -0.014853067696094513, 0.011931600980460644, -0.0017388873966410756, 0.04526909440755844, -0.024928035214543343, -0.02107825130224228, 0.010361652821302414, 0.02727613039314747, 0.03311906382441521, 0.025528710335493088, -0.041555825620889664, -0.024736911058425903, -0.020518530160188675, -0.009453813545405865, -0.024750562384724617, 0.003576749935746193, -0.021487802267074585, -0.010730249807238579, -0.0029129351023584604, -0.054934509098529816, -0.019399089738726616, 0.06252486258745193, 0.03391086310148239, 0.04425886645913124, 0.028395570814609528, 0.04548751935362816, -0.018429817631840706, -0.021719882264733315, -0.007754175458103418, -0.0058941286988556385, -0.008846312761306763, 0.08234715461730957, 5.7059911341639236e-05, 0.05275023356080055, -0.018579985946416855, 0.02223864756524563, 0.032299961894750595, -0.026416072621941566, 0.00894870050251484, -0.017501501366496086, 0.02004072070121765, 0.07879771292209625, 0.005846347659826279, 0.021842747926712036, 0.017924703657627106, 0.004627931863069534, -7.348463259404525e-05, 0.02339904196560383, 0.010307046584784985, 0.003156959544867277, -0.027958717197179794, -0.009590331465005875, -0.041528522968292236, 0.033883560448884964, 0.014607337303459644, -0.028695909306406975, -0.045405611395835876, -0.021446848288178444, -0.03262760490179062, -0.0022303492296487093, -0.004416330251842737, 0.023958763107657433, -0.04327594116330147, -0.037050761282444, -0.06787633895874023, 0.013426464051008224, 0.024163538590073586, 0.006221769843250513, -0.01890762709081173, 0.02739899605512619, 0.014143179170787334, -0.03560367971658707, -0.09305009990930557, -0.04278448224067688, -0.050702475011348724, 0.010361652821302414, 0.006375351920723915, -0.039316944777965546, -0.009440162219107151, -0.023617470636963844, -0.01662779040634632, 0.005528945475816727, -6.633881275774911e-05, -0.014757505618035793, 0.034593451768159866, -0.017856445163488388, 0.058265529572963715, 0.020204540342092514, 0.0406821183860302, 0.03311906382441521, -0.024586742743849754, 0.0215014535933733, -0.01720116287469864, 0.0033736806362867355, 0.009856539778411388, -0.01918066293001175, -0.01909875124692917, 0.0031535467132925987, 0.012887220829725266, 0.0019163597607985139, -0.030634453520178795, -0.028259053826332092, 0.017842793837189674, -0.022484377026557922, 0.06809476763010025, -0.02526932768523693, -0.0010417966404929757, 0.02042296901345253, -0.014484471641480923, 0.011310447938740253, -0.054852597415447235, 0.0018037330592051148, 0.03901660814881325, 0.053378213196992874, 0.005962387192994356, 0.07623118907213211, -0.04758988693356514, -0.024231797084212303, -0.00891457125544548, -0.01542644016444683, 0.045050665736198425, -0.016382060945034027, -0.026361465454101562, -0.05119393765926361, -0.009706370532512665, 0.005481164436787367, 0.04010874405503273, -0.009767803363502026, 0.04971955344080925, -0.018702851608395576, -0.009685893543064594, 0.06050441041588783, 0.049774158746004105, 0.032108839601278305, -0.0012730226153507829, 0.028259053826332092, 0.018498076125979424, 0.0024692541919648647, -0.011460616253316402, 0.009945276193320751, -0.02956961840391159, -0.026825623586773872, -0.007494792807847261, -0.04076402634382248, -0.03197232261300087, -0.00047908994019962847, -0.0085050193592906, -0.020777912810444832, 0.020777912810444832, 0.02208847738802433, -0.015835991129279137, 0.002336150035262108, -0.01774723269045353, -0.025160115212202072, 0.02689388208091259, -0.1120532900094986, 0.005255911033600569, -0.0114333126693964, 0.00752892205491662, 0.0066517991945147514, -0.02162431925535202, 0.04592437669634819, -0.008812183514237404, 0.01437525823712349, -0.05081168934702873, 0.008225159719586372, 0.012928175739943981, -0.00047397054731845856, 0.014853067696094513, 0.026102082803845406, -0.06143272668123245, -0.004174012690782547, 0.005525532644242048, 0.0054231444373726845, 0.030743665993213654, -0.01770627684891224, 0.018265997990965843, 0.013590284623205662, -0.0007026367820799351, -0.01362441387027502, -0.02212943322956562, 0.03290063887834549, 0.023726684972643852, -0.03606783598661423, -0.0008976003737188876, 0.03770604357123375, 0.008621059358119965, -0.02339904196560383, -0.009187605232000351, -0.004494827706366777, 0.03808829188346863, -0.016054419800639153, -0.007051111664623022, 0.017569759860634804, 0.0130237378180027, 0.024054326117038727, -0.010382130742073059, -0.004853185266256332, -0.0393715500831604, -0.029323888942599297, -0.018347907811403275, 0.02615668997168541, 0.02352190762758255, -0.015289923176169395, 0.04316673055291176, -0.009597157128155231, -0.03614974766969681, 0.016368407756090164, 0.008429935202002525, 0.021992916241288185, 0.0033975711558014154, 0.026320509612560272, -0.012559579685330391, -0.020313754677772522, 0.0011433312902227044, -0.00819785613566637, -0.00229178206063807, -0.01778818666934967, 0.04002683237195015, 0.003627943806350231, 0.03344670683145523, -0.0002779404167085886, -0.02278471551835537, -0.0024214733857661486, 0.06749408692121506, 0.01937178708612919, -0.016054419800639153, 0.003784938482567668, 0.006320744752883911, -0.021610667929053307, -0.026074780151247978, -0.0042354450561106205, -0.00907156616449356, -0.007508444134145975, 0.014020313508808613, -0.005238846410065889, -0.021692577749490738, 0.011665391735732555, 0.018279649317264557, -0.0026518460363149643, -0.009351425804197788, -0.02464134991168976, -0.021870050579309464, 0.020586788654327393, -0.011173930019140244, -0.00010793389083119109, 0.018702851608395576, -0.01677796058356762, -0.0334194041788578, -0.03519412502646446, 0.01576773263514042, -0.004958986304700375, -0.03593131899833679, 0.024695955216884613, -0.0014385497197508812, -0.028887033462524414, 0.0015033953823149204, -0.008798531256616116, 0.021364936605095863, -0.010689293965697289, -0.01599981263279915, -0.015713125467300415, -0.02550140768289566, 0.007392404600977898, -0.02693483792245388, -0.00033702675136737525, -0.022211343050003052, 0.009931623935699463, 0.013842840678989887, -0.0005546010215766728, 0.03713266924023628, -0.009419684298336506, -0.027289781719446182, 0.02348095364868641, -0.015139753930270672, 0.011945252306759357, -0.00993844959884882, 0.005771263502538204, 0.011057890951633453, 0.028340963646769524, -0.02364477328956127, 0.014306999742984772, -0.002390756970271468, -0.00499994121491909, 0.014416213147342205, 0.02627955563366413, -0.030061081051826477, -0.012156854383647442, 0.018033917993307114, 0.018033917993307114, 0.02305774949491024, -0.00585999945178628, -0.004757623188197613, 0.021747184917330742, 0.027849502861499786, -0.033310189843177795, -0.021801792085170746, 0.011016936041414738, 0.048927754163742065, -0.015358181670308113, -0.023931460455060005, 0.020873475819826126, 0.021733533591032028, -0.0010981099912896752, 0.002448776736855507, -0.0064060683362185955, -0.033501312136650085, 0.037842560559511185, -0.011644914746284485, -0.007030634209513664, -0.05722799897193909, 0.01930352859199047, -0.015781383961439133, -0.024204494431614876, -0.0008715767762623727, 0.013173907063901424, -0.01650492660701275, 0.02910546027123928, -0.028859728947281837, 0.01909875124692917, 0.01856633462011814, -0.01230702269822359, 0.01147426851093769, -0.0031194172333925962, 0.018429817631840706, -0.01840251497924328, 0.002817373024299741, -0.05064786970615387, 0.004436808172613382, 0.053105179220438004, -0.026593545451760292, -0.023235222324728966, -0.025255676358938217, 0.009085217490792274, 0.003795177210122347, 0.021678926423192024, 0.028422875329852104, 0.01230702269822359, -0.022306906059384346, -0.008668839931488037, -0.03825211152434349, 0.006904355715960264, -0.04242953658103943, -0.005870238412171602, 0.034593451768159866, -0.0031006461940705776, -0.005426557268947363, -0.01922161690890789, -0.005815631244331598, 0.02057313732802868, -0.047917526215314865, 0.030252205207943916, -0.020859822630882263, -0.024354662746191025, -0.01860729046165943, -0.02697579190135002, -0.008627885021269321, -0.008518671616911888, 0.012778007425367832, -0.034975700080394745, 0.001015346497297287, -0.0033549093641340733, -0.019003190100193024, 0.02297583967447281, -0.011863342486321926, 0.03363782912492752, -0.019672123715281487, -0.0007226877496577799, 0.028887033462524414, -0.025474103167653084, 0.043849315494298935, -0.008416283875703812, -0.027958717197179794, 0.050238318741321564, -0.004068211652338505, 0.028504785150289536, -0.01743324287235737, 0.018620941787958145, -0.02046392299234867, 0.011098845861852169, -0.0004377081640996039, -0.0020016829948872328, -0.02181544341146946, -0.006464087869971991, -0.005726895295083523, -0.024149887263774872, 0.004815643187612295, -0.03260029852390289, 0.03639547899365425, 0.02767203003168106, -0.03628626465797424, 0.03781525418162346, 0.054661475121974945, -0.015235316008329391, -0.030552541837096214, 0.01286674290895462, -0.018033917993307114, -0.021692577749490738, -0.036914244294166565, -0.020955385640263557, -0.05313248187303543, 0.002600652165710926, -0.022020218893885612, 0.001553736045025289, -0.021228419616818428, 0.0127711808308959, -0.024968991056084633, 0.028968943282961845, 0.03642278164625168, -0.006447023246437311, -0.04761718958616257, 0.006631321739405394, -0.008184203878045082, -0.01501688826829195, -0.01053912565112114, -0.010341175831854343, 0.00997940544039011, -0.02820444665849209, 0.00931729655712843, -0.001057154848240316, 0.03216344490647316, -0.003474361961707473, 0.029542315751314163, 0.044695720076560974, 0.014975933358073235, -0.044395383447408676, 0.0024573090486228466, 0.04103706032037735, -0.018579985946416855, -0.009132998995482922, 0.0025102095678448677, 0.0060067554004490376, 0.03467535972595215, 0.024709608405828476, 0.023303480818867683, 0.02763107605278492, 0.00025085030938498676, -0.048572808504104614, -0.016996387392282486, 0.004511892329901457, 0.017037343233823776, 0.018156783655285835, -0.014074919745326042, -0.019207965582609177, -0.029269281774759293, -0.010225135833024979, -0.0050920904614031315, 0.008375328034162521, 0.017911052331328392, -0.01116027869284153, 0.014580033719539642, 0.0029675420373678207, 0.05597203969955444, 0.049200788140296936, -0.036914244294166565, -0.005208129994571209, 0.012627838179469109, -0.020873475819826126, 0.011597133241593838, 0.01778818666934967, -0.01474385429173708, 0.013890622183680534, 0.001708171097561717, -0.01552200224250555, -8.990935748443007e-05, 0.018129481002688408, 0.01187699381262064, 0.014702899381518364, 0.0013515199534595013, 0.0015008356422185898, -0.017733579501509666, 0.011365054175257683, 0.017023691907525063, -0.026265904307365417, -0.0005102329305373132, 0.024791518226265907, -0.03287333622574806, 0.024504831060767174, 0.00018013866792898625, -0.037678737193346024, 0.005259323865175247, -0.006286615505814552, -0.008272940292954445, -0.0061262077651917934, -0.020013416185975075, -0.015904249623417854, -0.013112474232912064, -0.005709830671548843, -0.009597157128155231, -0.015685822814702988, -0.04969225078821182, 0.006327570881694555, 0.007126196287572384, -0.025719834491610527, 0.006914594676345587, -0.028149839490652084, 0.011208059266209602, -0.02038201317191124, 0.02634781412780285, 0.019358133897185326, -0.009795106947422028, -0.003986301366239786, -0.03298254683613777, -0.015276270918548107, -0.01137187983840704, 0.006156924180686474, 0.02674371376633644, 0.024982642382383347, 0.015576609410345554, 0.03593131899833679, 0.023808594793081284, -0.0319996252655983, -0.00544362235814333, -0.03541255369782448, -0.012716574594378471, 0.03612244129180908, -0.014593685045838356, 0.06760330498218536, -0.0116858696565032, -0.027958717197179794, 0.013767756521701813, -0.01445716805756092, 0.0215014535933733, -0.018812065944075584, 0.015863295644521713, 0.013426464051008224, 0.015440091490745544, -0.02305774949491024, 0.015631215646862984, -0.00978828128427267, 0.01437525823712349, 0.0069692013785243034, -0.025023596361279488, 0.010853114537894726, 0.012095421552658081, 0.01755610853433609, -0.004743971861898899, -0.005873651243746281, 0.054579563438892365, -0.005593791138380766, 0.003819067729637027, -0.008846312761306763, 0.004825882147997618, -0.008839487098157406, -0.02678466960787773, -0.0005268709501251578, -0.00038822070928290486, -0.02088712714612484, 0.011815560981631279, 0.006662037689238787, -5.375363616622053e-05, -0.010115922428667545, 0.0201908890157938, -0.01696908473968506, -0.007344623561948538, 0.010859941132366657, 0.012914524413645267, -0.019399089738726616, 0.020368361845612526, 0.010778030380606651, -0.0028685671277344227, 0.017651669681072235, 0.007938473485410213, 0.0003387332253623754, 0.044122349470853806, 0.004433394875377417, -0.005010180175304413, -0.01635475642979145, -0.003337844740599394, 0.004139882978051901, -0.006180814933031797, -0.001585305668413639, 0.011194407939910889, -0.03123512864112854, -0.011767780408263206, -0.013160254806280136, -0.02356286346912384, 0.0098428875207901, 0.03213614225387573, -0.03584940731525421, 0.02356286346912384, 0.00381224206648767, 0.007747349329292774, -0.04780831187963486, 0.018812065944075584, 0.004668887238949537, 0.025323934853076935, -0.016996387392282486, 0.005887303035706282, 0.007098892703652382, -0.008225159719586372, -0.05146697163581848, -0.006474326830357313, 0.021678926423192024, -0.0018856434617191553, -0.007822433486580849, -0.030743665993213654, -0.021050946786999702, -0.02828635834157467, -0.039671890437603, 0.0017491262406110764, 0.00453578308224678, -0.01561756432056427, 0.018648246303200722, -0.0031979146879166365, -0.0330098532140255, -0.011330924928188324, -0.024313708767294884, -0.01646397076547146, 0.022429771721363068, -0.014934978447854519, 0.016600487753748894, 0.02565157599747181, 0.0026825624518096447, 0.03314637020230293, 0.019781338050961494, 0.012559579685330391, -0.003648421261459589, -0.015085147693753242, 0.01053912565112114, 0.029869956895709038, 0.016941780224442482, -0.027098657563328743, -0.007283191196620464, 0.02217038907110691, 0.04158312827348709, 0.019986113533377647, 0.03131704032421112, 0.007023808546364307, 0.037050761282444, -0.01778818666934967, -0.016382060945034027, 0.014129526913166046, -0.043112121522426605, -0.022265950217843056, 0.008675666525959969, -0.035822104662656784, -0.017801839858293533, 0.024982642382383347, 0.02883242629468441, -0.03541255369782448, -0.034429628401994705, -0.013822363689541817, -0.006071601063013077, -0.013173907063901424, -0.008737098425626755, -0.043576281517744064, 0.03647738695144653, 0.03410198912024498, 0.020177237689495087, 0.02061409316956997, -0.019863247871398926, 0.02546045184135437, -0.006389003712683916, 0.019508304074406624, 0.018689200282096863, -0.004433394875377417, 0.03980840742588043, 0.02124207094311714, 0.01511245034635067, 0.007877040654420853, -0.02712596207857132, 0.02193830907344818, -0.00391463004052639, 0.006924833636730909, 0.00440950458869338, -0.003283238038420677, 0.01055960264056921, -0.014580033719539642, 0.013276294805109501, -0.014593685045838356, 0.03363782912492752, -0.021050946786999702, -0.016218239441514015, 0.0052183689549565315, 0.006767838727682829, -0.01747419685125351, 0.0283682681620121, 0.05832013487815857, 0.028532087802886963, -0.036177050322294235, 0.00299313897266984, 0.02088712714612484, -0.01197255589067936, -0.028613999485969543, -0.013324075378477573, -0.007938473485410213, 0.0008779760682955384, -0.012361629866063595, 0.011016936041414738, -0.032846029847860336, 0.010996458120644093, -0.003092113882303238, 0.009549375623464584, -0.015221664682030678, -0.021378587931394577, -0.004931682720780373, 0.05275023356080055, 0.022265950217843056, -0.021992916241288185, 0.05157618597149849, -0.016750656068325043, -0.009433336555957794, 0.013849667273461819, -0.054306529462337494, 0.008730272762477398, 0.014443516731262207, -0.04728954657912254, 0.01580868847668171, 0.023317132145166397, -0.013330901972949505, -0.016982736065983772, -0.004880488850176334, 0.027344388887286186, 0.041337400674819946, -0.009965753182768822, 0.010184180922806263, -0.010266090743243694, -0.04242953658103943, -0.0049794637598097324, -0.016136329621076584, 0.010593732818961143, 0.0241771899163723, 0.02588365599513054, 0.013726801611483097, -0.007460663095116615, 0.024818820878863335, -0.003313954221084714, 0.0030272682197391987, 0.023617470636963844, 0.0013045922387391329, -0.043112121522426605, 0.009351425804197788, -0.04180155694484711, 0.01991785503923893, 0.0010281449649482965, -0.008702969178557396, 0.03595862165093422, -0.009037436917424202, 0.011863342486321926, -0.031207824125885963, -0.05141236633062363, -0.0029180545825511217, 0.0055494229309260845, -0.01492132619023323, -0.011713173240423203, 0.0020102153066545725, 0.011399183422327042, -0.013856492936611176, -0.03508491441607475, -0.02193830907344818, 0.03142625093460083, 0.028422875329852104, 0.0008442733669653535, -0.028122536838054657, 0.022921232506632805, 0.01662779040634632, -0.017815491184592247, -0.005607442930340767, 0.011010109446942806, 0.03500300273299217, 0.0076517872512340546, -0.0058804769068956375, 0.02197926491498947, 0.022102130576968193, -0.04335785284638405, -0.023958763107657433, -0.025282979011535645, 0.047835614532232285, -0.014525426551699638, -0.004460698459297419, -0.020477576181292534, -0.022989491000771523, -0.004365136381238699, -0.031016701832413673, 0.09796471893787384, -0.0012755823554471135, -0.031125914305448532, -0.007767826784402132, 0.009467465803027153, -0.011139800772070885, -0.0035221430007368326, -0.007105718832463026, -0.049200788140296936, -0.035248734056949615, 0.010115922428667545, 0.011071542277932167, 0.0017508326563984156, 0.009911146946251392, -0.00616033747792244, 0.00230031437240541, -0.0033941580913960934, -0.009139824658632278, -0.004730320069938898, -0.01337185688316822, -0.001668922370299697, -0.029132764786481857, 0.0072217583656311035, -0.03453884273767471, 0.010525473393499851, 0.0024573090486228466, 0.014661944471299648, 0.003290063701570034, 0.007447011768817902, -0.0011288262903690338, 0.006904355715960264, -0.0032951831817626953, -0.03224535658955574, 0.003665486117824912, 0.036750420928001404, -0.00530027924105525, 0.003105765674263239, -0.02185639925301075, -0.03426580876111984, 0.0012627837713807821, -0.019153358414769173, 0.020259147509932518, -0.03161737695336342, 0.024900732561945915, -0.009829236194491386, -0.009146650321781635, -0.014498122967779636, -0.03366513550281525, -0.0085050193592906, -0.0243819672614336, 0.0015477633569389582, 0.015713125467300415, -0.0011919655371457338, 0.01160395983606577, -0.01377458218485117, -0.031753893941640854, 0.007269539404660463, 0.00031505603692494333, 0.005737134255468845, -0.011262666434049606, -0.027057703584432602, -0.0074197081848979, -0.015972508117556572, 0.01311929989606142, -0.010361652821302414, 0.0024470703210681677, -0.005962387192994356, 0.009856539778411388, 0.023317132145166397, -0.011774606071412563, 0.010088618844747543, 0.005037483759224415, 0.00788386631757021, -0.02014993503689766, -0.012102247215807438, 0.028996245935559273, 0.023658424615859985, -0.010436737909913063, 0.006139859557151794, 0.05228607729077339, 0.017419591546058655, 0.027071354910731316, -0.01957656256854534, -0.0028788058552891016, -0.0036040532868355513, -0.02406797744333744, -0.007617658004164696, -0.020750610157847404, -0.02790411002933979, -0.03336479514837265, 0.002769591985270381, -0.05711878463625908, -0.02282567135989666, 0.00573372095823288, -0.029542315751314163, 0.020450271666049957, -0.02367207780480385, 0.008218334056437016, -0.003428287338465452, -0.018893975764513016, 0.013255816884338856, -0.0017312084091827273, 0.012716574594378471, 0.0042490968480706215, -0.0005098063265904784, -0.041337400674819946, -0.02457309141755104, 0.008266114629805088, 0.026265904307365417, -0.017160208895802498, 0.0009752445039339364, -0.018361559137701988, 0.028340963646769524, -0.0018276235787197948, -0.02343999780714512, 0.002650139620527625, 0.03057984635233879, 0.019153358414769173, -0.0023566277232021093, 0.027808547019958496, -0.0001791787799447775, -0.04289369657635689, 0.019426392391324043, -0.0025699357502162457, 0.0010307045886293054, -0.002885631751269102, -0.009624460712075233, -0.011228537186980247, -0.002513622399419546, 0.011849690228700638, -0.03464805707335472, -0.009897494688630104, 0.011296795681118965, -0.0330098532140255, 0.01767897419631481, -0.004191077314317226, 0.017119253054261208, 0.0071944547817111015, -0.008307069540023804, -0.02375398762524128, -0.0063378093764185905, 0.0012346270959824324, -0.015904249623417854, -0.017487850040197372, 0.018853021785616875, -0.035822104662656784, 0.017310377210378647, 0.012040814384818077, -0.011788257397711277, -0.0100954445078969, 0.0006292588077485561, 0.05657271668314934, -0.005027244798839092, 0.017692625522613525, -0.0033719739876687527, 0.032491087913513184, -0.018498076125979424, -0.018730156123638153, 0.05223146826028824, -0.006590366363525391, -0.023112356662750244, -0.0048463596031069756, 0.021719882264733315, -0.0011228537186980247, 0.03685963526368141, 0.034784574061632156, -0.007952124811708927, -0.010013534687459469, -0.025515059009194374, -0.015358181670308113, 0.0031262431293725967, -0.05406079813838005, -0.003034094115719199, 0.015713125467300415, -0.010593732818961143, -0.0036074661184102297, 0.0470438152551651, 0.03328288719058037, -0.055507879704236984, 0.01561756432056427, 0.019590213894844055, -0.002498264191672206, -0.003911216743290424, 0.044968754053115845, -0.018853021785616875, -0.03614974766969681, 0.0045801508240401745, -0.012327500618994236, 0.006924833636730909, 0.008368502371013165, -0.021733533591032028, -0.048299774527549744, 0.0016834273701533675, 0.013112474232912064, 0.03085288032889366, -0.015385485254228115, -0.004133057314902544, 0.012477668933570385, 0.021283026784658432, 0.01599981263279915, 0.025665227323770523, -0.008047686889767647, 0.0018259171629324555, -0.003573336871340871, 0.028859728947281837, 0.011037413030862808, 0.0030136164277791977, 0.01724211871623993, -0.013685846701264381, 0.017487850040197372, 0.03825211152434349, 0.00907156616449356, -0.014962282031774521, 0.012020336464047432, 0.014511775225400925, -0.020627744495868683, -0.0006369379116222262, 0.02883242629468441, -0.0014223383041098714, 0.012231938540935516, -0.04974685609340668, 0.0022320556454360485, 0.0034197550266981125, -0.018593639135360718, -0.02436831407248974, 0.018375210464000702, -0.031835805624723434, 0.01383601501584053, 0.03530333936214447, -0.005382189527153969, 0.012470843270421028, 0.023030446842312813, 0.003761047963052988, -0.027794895693659782, 0.0003003377642016858, -0.016409363597631454, -0.005511880852282047, -0.005498229060322046, 0.008655188605189323, 0.020914429798722267, 0.033883560448884964, -0.022852974012494087, -0.030661756172776222, -0.015590260736644268, -0.015795037150382996, 0.039589978754520416, 0.012218286283314228, -0.010846288874745369, -0.014702899381518364, 0.01941274106502533, -0.022757412865757942, 0.01650492660701275, -0.01580868847668171, -0.023180615156888962, -0.010846288874745369, -0.018129481002688408, 0.011644914746284485, 0.018839368596673012, 0.029596922919154167, 0.014798461459577084, -0.020764261484146118, 0.008580104447901249, 0.0340200774371624, 0.0031996211037039757, -0.022498030215501785, 0.04816325753927231, -0.019508304074406624, 0.00433100713416934, -0.009836061857640743, -0.0016595368506386876, 0.01759706251323223, 0.016423014923930168, -0.0072217583656311035, -0.04060020670294762, 0.003116004401817918, -0.019521955400705338, 0.0283682681620121, -0.01690082624554634, 0.012313848361372948, 0.010272917337715626, 0.005774676334112883, -0.027412647381424904, 0.0003052438551094383, -0.022648198530077934, 0.02360381931066513, -0.0032576408702880144, 0.013965706340968609, 0.01249814685434103, 0.015549305826425552, 0.014634640887379646, -0.016300149261951447, -0.011563003994524479, -0.027535513043403625, -0.015795037150382996, -0.02406797744333744, 0.021378587931394577, 0.011945252306759357, -0.03527603670954704, 0.014784809201955795, 0.008648362942039967, 0.006921420339494944, -0.0076790908351540565, -0.013597110286355019, 0.01848442479968071, -0.0005870238528586924, 0.05821092054247856, -0.014388909563422203, 0.03254569321870804, 0.0008839486981742084, -0.018975887447595596, -0.0037712869234383106, -0.023590166121721268, -0.04100975766777992, -0.023453649133443832, -0.023617470636963844, 0.015030540525913239, -0.033501312136650085, -0.03361052647233009, 0.003505078377202153, 0.011706347577273846, 0.0028907509986311197, 0.011044238694012165, 0.014853067696094513, -0.036258962005376816, 0.09774629026651382, 0.0004479469498619437, 9.268236317439005e-05, 0.007139848079532385, 0.006986266002058983, 0.0018719916697591543, 0.0009069859515875578, -0.03159007430076599, 0.013672194443643093, 0.014539078809320927, -0.00430029071867466, -0.026074780151247978, -0.014238741248846054, -0.0026296619325876236, -0.029924564063549042, -0.02697579190135002, 0.007262713275849819, -0.010853114537894726, 0.01356298103928566, -0.022566288709640503, 0.02143319509923458, 0.027494557201862335, 0.05662732198834419, 0.008614233694970608, -0.02158336527645588, 0.007303668651729822, -0.005402666982263327, 0.005788328126072884, 0.011658566072583199, -0.029351191595196724, -0.017405938357114792, 0.01399300992488861, 0.020491227507591248, -0.011870168149471283, -0.014798461459577084, -0.02038201317191124, -0.006515281740576029, 0.0040306695736944675, 0.00363818253390491, 0.05313248187303543, 0.012163680046796799, -0.010846288874745369, 0.0008357410551980138, -0.009255863726139069, -0.014347954653203487, -0.009194431826472282, -0.009098869748413563, -0.03699615225195885, 0.0033958645071834326, -0.009603982791304588, 0.017815491184592247, -0.03740570321679115, -0.005201304331421852, -0.01867554895579815, -0.04447729513049126, 0.013173907063901424, 0.03429311141371727, -0.039316944777965546, 0.0028736863750964403, 0.013358204625546932, 0.04368549585342407, -0.009146650321781635, -0.02240246720612049, 0.007556225173175335, -0.01075072679668665], [0.05139476805925369, 0.03634278103709221, -0.002035149373114109, -0.013254561461508274, 0.004505159333348274, 0.02801664173603058, -0.02952416054904461, 0.012790710665285587, 0.05482726916670799, -0.0062272087670862675, 0.01873960718512535, 0.00802463386207819, 0.00362384133040905, 0.004919726867228746, -0.005453156307339668, 0.012164510786533356, -0.012234088033437729, 0.013730010017752647, -0.019133882597088814, -0.009172666817903519, 0.04000720754265785, 0.042164117097854614, 0.0057517606765031815, -0.016014479100704193, -0.02490883506834507, 0.03126360476016998, 0.05547666177153587, 0.05148753523826599, 0.05218331515789032, -0.020200740545988083, -0.017046550288796425, -0.027344057336449623, 0.025047991424798965, -0.04285989701747894, 0.10742805153131485, 0.00923644658178091, -0.019736889749765396, 0.015005601570010185, 0.02968650870025158, -0.038406919687986374, 0.005821338854730129, -0.02104726992547512, -0.043509289622306824, -0.031704261898994446, -0.03694578632712364, 0.04564300552010536, 0.012581977061927319, -0.059558555483818054, -0.042280081659555435, 0.023981131613254547, 0.023633243516087532, 0.017208898440003395, 0.009155272506177425, -0.0072476826608181, 0.044042717665433884, 0.017150916159152985, -0.03351328521966934, 0.027900679036974907, 0.010297507047653198, 0.0009675656328909099, -0.0068128216080367565, -0.00321507197804749, -0.010662790387868881, 0.034440986812114716, -0.024444984272122383, -0.002645404078066349, 0.006569299381226301, 0.02968650870025158, -0.05213692784309387, 0.01320817694067955, 0.017684346064925194, -0.005357487127184868, 0.05250801146030426, -0.016350772231817245, -0.0004903057124465704, -0.021974973380565643, 0.00453704921528697, 0.007363645359873772, 0.05042067915201187, 0.01836852729320526, -0.016895797103643417, 0.020652996376156807, -0.01269793976098299, 0.04030871018767357, -0.04058702290058136, -0.023111410439014435, -0.03641235828399658, 0.0019032415002584457, -0.020038392394781113, -0.004861745517700911, -0.05241524055600166, -0.02878199703991413, 0.036528319120407104, 0.03425544872879982, 0.04531830921769142, 0.02678743563592434, 0.01433301717042923, -0.04800865054130554, -0.041259609162807465, 0.05928024649620056, -0.0017365447711199522, -0.017811905592679977, -0.05046706274151802, -0.025303108617663383, 0.058120615780353546, -0.03409310057759285, -0.07157231867313385, -0.0034411996603012085, -0.021441543474793434, -0.03887077048420906, -0.01414747629314661, -0.0017553886864334345, 0.01804383099079132, 0.06030071899294853, -0.023494087159633636, 0.01631598360836506, 0.019690504297614098, -0.004487765021622181, 0.009213253855705261, 0.004403691738843918, 0.014970812946557999, 0.0298952404409647, -0.0050298916175961494, -0.09467212855815887, -0.001795975724235177, 0.022346055135130882, -0.04466891661286354, -0.019354211166501045, -0.009885839186608791, -0.05380679666996002, 0.02340131811797619, -0.06039348989725113, 0.023691223934292793, -0.02748321183025837, 0.006946179084479809, -0.02776152268052101, -0.0408189482986927, -0.012002162635326385, -0.027738330885767937, 0.018403315916657448, 0.016976971179246902, 0.00045587922795675695, 0.0289907306432724, 0.02706574648618698, -0.0375719852745533, -0.018588855862617493, 0.0036035478115081787, 0.012268876656889915, 0.0028425410855561495, 0.012813902460038662, 0.004676204640418291, -0.030683789402246475, 0.0024961018934845924, 0.031704261898994446, -0.019562944769859314, -0.007804304827004671, -0.010529433377087116, 0.013509680517017841, 0.022682348266243935, -0.004583434667438269, -0.054038722068071365, -0.004766075871884823, -0.015643397346138954, 0.013648835942149162, 0.04513276740908623, -0.037548795342445374, -0.05018875375390053, -0.006331575568765402, -0.025163954123854637, -0.019736889749765396, -0.03557742387056351, -0.025790153071284294, -0.008732007816433907, 0.03400032967329025, 0.004081894643604755, -0.018971534445881844, 0.027575982734560966, 0.0035861532669514418, -0.02845730073750019, -0.04123641550540924, -0.04573577642440796, -0.03128679469227791, -0.06387237459421158, -0.013915550895035267, 0.02094290405511856, 0.045874930918216705, -0.016779834404587746, 0.02356366626918316, -0.003322337754070759, -0.01996881514787674, -0.011978969909250736, -0.03142595291137695, -0.007630360312759876, 0.038035839796066284, -0.02093130722641945, -0.008639237843453884, -0.03989124670624733, 0.024236250668764114, 0.03597169741988182, 0.030034396797418594, 0.030985292047262192, -0.03761837258934975, 0.0410044901072979, 0.027552790939807892, -0.06716572493314743, -0.002720779972150922, 0.003702116198837757, 0.08075657486915588, 0.02694978378713131, 0.029941625893115997, -0.010187342762947083, 0.010720771737396717, -0.014576539397239685, 0.026764241978526115, -0.030962100252509117, 0.03265515714883804, 0.03822137787938118, -0.0008617494604550302, 0.028805188834667206, 0.05863085389137268, -0.046408362686634064, 0.01786988601088524, -0.006424346007406712, 0.0006780207040719688, -0.030428670346736908, -0.007728928700089455, -0.013184984214603901, -0.02442179061472416, -0.02066459320485592, -0.11522075533866882, -0.036853015422821045, 0.020641399547457695, 0.008065220899879932, -0.005708274897187948, 0.00605326471850276, 0.0038847578689455986, -0.04870442673563957, -0.03226088359951973, -0.018101811408996582, -0.0298952404409647, 0.01251239888370037, 0.015376683324575424, 0.006035869941115379, 0.03618043288588524, -0.017730731517076492, 0.007305664010345936, -0.007149114273488522, -0.032191306352615356, 0.01141075138002634, 0.009787270799279213, 0.037131328135728836, -0.025326302275061607, -0.01803223416209221, -0.003073017345741391, 0.03773433342576027, -0.015260720625519753, 0.01224568486213684, -0.009624922648072243, 0.009996003471314907, -0.017301667481660843, 0.0013582156971096992, -0.03135637566447258, -0.04408910125494003, -0.007931863889098167, -0.07532951235771179, 0.014901235699653625, 0.01616523042321205, -0.02996481955051422, -0.006986766122281551, 0.018287353217601776, 0.004838552791625261, 0.06011517718434334, -0.01030910387635231, -0.03699217364192009, 0.0018307645805180073, 0.028318146243691444, 0.026184428483247757, -0.02205614745616913, 0.009195859543979168, 0.017545189708471298, -0.0003527809458319098, -0.005406771320849657, 0.0005048011080361903, -0.04306862875819206, -0.018484489992260933, -0.027715139091014862, -0.024120287969708443, -0.015028794296085835, -0.02690339833498001, 0.02511756867170334, 0.04719690978527069, -0.0030353295151144266, -0.0017843794776126742, 0.009282832033932209, 0.03608766198158264, -0.012871883809566498, -0.030799752101302147, -0.007491204887628555, -0.005844531115144491, -0.07922586798667908, 0.0013415460707619786, 0.01237324345856905, 0.038337342441082, 0.06201697140932083, -0.032446425408124924, 0.0222184956073761, 0.012593572959303856, 0.028526877984404564, 0.027738330885767937, -0.013590854592621326, 0.01559701282531023, 0.045550234615802765, -0.025535035878419876, -0.030266322195529938, -0.006111246068030596, -0.011341174133121967, -0.04613004997372627, -0.007531791925430298, 0.05315740406513214, -0.0410044901072979, -0.018380122259259224, 0.02442179061472416, 0.03284069895744324, -0.04580535367131233, 0.03184341639280319, -0.01718570478260517, 0.005937301553785801, 0.028480492532253265, -0.045016806572675705, -0.017092933878302574, -0.025256725028157234, 0.01992242969572544, -0.0667482540011406, 0.028573263436555862, 0.04953936114907265, -0.0085116783156991, 0.05603328347206116, 0.0029237151611596346, -0.02425944246351719, -0.04012317210435867, -0.0009733637562021613, 0.009845252148807049, -0.001938030356541276, 0.03912588953971863, -0.0005780027131550014, -0.014275035820901394, -0.014344613067805767, 0.01771913468837738, -0.05329655855894089, 0.03887077048420906, -0.0012364547001197934, 0.0056126052513718605, -0.01675664260983467, 0.021070463582873344, -0.07727769017219543, -0.03875480964779854, -0.007920267060399055, -0.026972975581884384, -0.030730174854397774, -0.017266878858208656, 0.010645396076142788, 0.01572457142174244, 0.0221721101552248, 0.03446418046951294, -0.002126469975337386, 0.01776552014052868, -0.015341894701123238, 0.06540308892726898, 0.02957054413855076, -0.02572057582437992, 0.023957939818501472, 0.03198257461190224, -0.04589812457561493, -0.009392996318638325, 0.038198187947273254, 0.01579415053129196, 0.023644840344786644, 0.019899237900972366, -0.04613004997372627, -0.004757378716021776, 0.027413634583353996, -0.02211412973701954, -0.016710257157683372, -0.03520634397864342, 0.050977300852537155, 0.03409310057759285, -0.01030910387635231, 0.02604527212679386, 0.014634520746767521, 0.002190249739214778, -0.02314619906246662, -0.04401952400803566, -0.026972975581884384, -0.0076767452992498875, 0.015481050126254559, 0.013602450489997864, 0.05761037766933441, 0.020954499021172523, 0.00560970650985837, -0.045874930918216705, -0.026555508375167847, -0.0580742321908474, 0.029454581439495087, -0.030730174854397774, -0.006882399320602417, 0.004061601124703884, -0.006876601371914148, 0.02323896996676922, -0.0006671492010354996, -0.0054473583586514, 0.0460604727268219, 0.03253919631242752, 0.0212676003575325, 0.030266322195529938, 0.02813260443508625, -0.01949336752295494, 0.01680302806198597, -0.00652291439473629, 0.002142414916306734, -0.02931542694568634, 0.04986405745148659, -0.05556943267583847, -0.02539587952196598, 0.02357526123523712, -0.011393357068300247, 0.0020134062506258488, -0.006435941904783249, -0.040726177394390106, -0.003980427049100399, 0.03434821590781212, -0.012025355361402035, -0.04123641550540924, 0.07941140979528427, -0.00596049427986145, -0.048565272241830826, -0.020467456430196762, 0.010024994611740112, 0.003557162592187524, 0.008221771568059921, 0.0008936392841860652, 0.02495522052049637, 0.03376840427517891, -0.024607332423329353, 0.04650112986564636, -0.03682982549071312, -0.007699938025325537, -0.021441543474793434, 0.03627320006489754, -0.023389721289277077, -1.535602677904535e-05, 0.017695941030979156, 0.01643194630742073, -0.045341502875089645, -0.012755921110510826, -0.0036325384862720966, -0.0073114619590342045, 0.016617486253380775, -0.015225932002067566, 0.018762800842523575, 0.034069906920194626, 0.019296230748295784, 0.051023684442043304, 0.050374291837215424, -0.008604449220001698, 0.007375241722911596, 0.05431703105568886, 0.03214492276310921, -0.024630524218082428, -0.011874603107571602, -0.06586693972349167, -0.021000884473323822, -0.025326302275061607, 0.016617486253380775, 0.0022424329072237015, 0.0144953653216362, -0.00409349100664258, 0.022090936079621315, 0.0020597914699465036, -0.007421627175062895, 0.022253284230828285, 0.005400972906500101, 0.007885478436946869, -0.046686671674251556, -0.00683021591976285, 0.011074459180235863, 0.007850689813494682, 0.04898273944854736, 0.010140957310795784, -0.03657470643520355, -0.015237527899444103, -0.04650112986564636, -0.03209853544831276, 0.03066059574484825, -0.010477249510586262, -0.006807023659348488, -0.018380122259259224, -0.0358557365834713, -0.00032125352299772203, 0.018125005066394806, 0.025094376876950264, 0.05042067915201187, -0.011155633255839348, -0.042813509702682495, -0.02425944246351719, 0.03912588953971863, -0.0031744849402457476, -0.00560970650985837, -0.002646853681653738, 0.017846694216132164, -0.04207134619355202, -0.012813902460038662, -0.0018075720872730017, 0.020757362246513367, 0.009630721062421799, -0.008824778720736504, -0.057471223175525665, -0.06373322010040283, 0.02276352234184742, -0.03017355129122734, -0.008198578841984272, -0.01194418128579855, -0.02878199703991413, -0.0027512202505022287, 0.022021358832716942, 0.003023733152076602, -0.005606807302683592, 0.01708133891224861, -0.06957775354385376, -0.012268876656889915, -0.03845330327749252, -0.029779277741909027, -0.029593737795948982, -0.03402351960539818, -0.02232286147773266, -0.019678907468914986, 0.007740525063127279, 0.0013103809906169772, 0.031147640198469162, -0.010082975961267948, 0.01868162676692009, -0.0010125013068318367, 0.03597169741988182, 0.006406951230019331, 0.00961332581937313, 0.022798310965299606, 0.03311901167035103, -0.0014821510994806886, 0.017116127535700798, -0.005438661202788353, -0.01792786829173565, -0.022264881059527397, -0.007723130751401186, 0.008946539834141731, 0.018496086820960045, 0.007236086297780275, 0.0596049427986145, 0.025187145918607712, -0.031333182007074356, -0.023911554366350174, 0.009282832033932209, 0.012292069382965565, 0.008129000663757324, 0.006493923719972372, 0.04884358122944832, -0.006505520083010197, 0.06340852379798889, -0.008789989165961742, -0.02630039118230343, -0.007740525063127279, 0.005519835278391838, -0.029292233288288116, 0.041259609162807465, 0.012593572959303856, 0.000937125354539603, 0.014286631718277931, 0.04953936114907265, 0.04865804314613342, -0.04427464306354523, -0.003765895962715149, 0.030985292047262192, 0.02271713688969612, 0.004942919593304396, 0.03142595291137695, -0.005093671381473541, -0.038522884249687195, 0.015167949721217155, -0.014692502096295357, 0.005882219411432743, -0.006893995683640242, 0.010268516838550568, 0.002865733578801155, -0.021998167037963867, -0.027900679036974907, 0.0047486815601587296, 0.014286631718277931, 0.020003603771328926, 0.0113237788900733, 0.017695941030979156, -0.03246961906552315, 0.013451699167490005, 0.022508403286337852, -0.01302263606339693, 0.017672749236226082, 0.00036347127752378583, -0.039056312292814255, -0.03441779688000679, 0.023366529494524002, 0.007508599199354649, 0.014182264916598797, 0.016953779384493828, 0.013324139639735222, 0.00306142121553421, -0.009752481244504452, 0.0006287364521995187, -0.03161149099469185, 5.499179314938374e-05, -0.011004881002008915, -0.014205457642674446, -0.017939463257789612, -0.013300946913659573, -0.03381478786468506, 0.005769155453890562, 0.03028951585292816, 0.011689062230288982, 0.013544469140470028, -0.0007262178114615381, -0.003513676580041647, -0.01906430348753929, 0.052322469651699066, -0.012454417534172535, 0.008360926993191242, -0.0011835466139018536, 0.019690504297614098, -0.0325160026550293, -0.06526393443346024, 0.012755921110510826, 0.004183362238109112, -0.007131719496101141, 0.01761476695537567, 0.04139876365661621, 0.01631598360836506, 0.003386117285117507, 0.029292233288288116, -0.022624365985393524, 0.055059194564819336, 0.021325580775737762, -0.025047991424798965, 0.04397314041852951, 0.03532230481505394, 0.0264627393335104, 0.019284633919596672, 0.03351328521966934, -0.017753923311829567, -0.03502080217003822, 0.013138598762452602, 0.008418908342719078, 0.03527592122554779, 0.01739443838596344, -0.02539587952196598, 0.006076456978917122, -0.04074937105178833, 0.0021467634942382574, -0.0030962100718170404, -0.018171390518546104, 0.035299114882946014, 0.031495530158281326, 0.04190899804234505, 0.0029222655575722456, -0.017846694216132164, -0.0008450797758996487, -0.029918434098362923, -0.0029382104985415936, -0.038244571536779404, -0.01734805293381214, 0.02400432527065277, -0.006099649704992771, 0.015504242852330208, 0.01751040108501911, -0.0017234989209100604, 0.05705375596880913, -0.030985292047262192, -0.012987847439944744, -0.043300554156303406, 0.01224568486213684, 0.0008697219309397042, -0.015910113230347633, 0.014622923918068409, 0.011416549794375896, 0.006569299381226301, 0.004499361384660006, 0.006401153281331062, 0.01588691957294941, 0.011439742520451546, 0.01349808368831873, 0.0027033856604248285, 0.034069906920194626, 0.012176106683909893, -0.0023221576120704412, -0.03933462128043175, -0.02050224505364895, -0.01369522139430046, 0.049632132053375244, -0.0038992532063275576, -0.07755599915981293, -0.04197857901453972, 0.0011661520693451166, 0.00230186409316957, 7.700662536080927e-05, 0.050698988139629364, 0.007207095623016357, -0.004383398219943047, -0.011312182992696762, -0.02817898988723755, -0.03560061752796173, -8.9599474449642e-05, 0.020479051396250725, 0.01980646699666977, 0.005438661202788353, 0.028155798092484474, 0.008917548693716526, -0.031333182007074356, -0.00939879473298788, -0.03676024451851845, 0.014750483445823193, -0.0033368330914527178, -0.020038392394781113, -0.008592852391302586, 0.019562944769859314, -0.03205215185880661, 0.03963612765073776, 0.02400432527065277, -0.004250041209161282, -0.005018295254558325, 0.011909391731023788, -0.010140957310795784, -0.02759917452931404, -0.02882838249206543, 0.009735086932778358, -0.01204854715615511, -0.04390356317162514, 0.05399233475327492, -0.031866610050201416, 0.009132079780101776, -0.03281750530004501, 0.003858666168525815, -0.02260117419064045, -0.00519223976880312, 0.017475612461566925, 0.003183182096108794, -0.010767157189548016, 0.001907590078189969, 0.006604088470339775, -0.012964654713869095, -0.00797245092689991, 0.029222656041383743, -0.017324861139059067, 0.002533789724111557, 0.02184741385281086, -0.0002770426799543202, -0.03898673504590988, 0.005499541759490967, -0.017382841557264328, 0.025650998577475548, 0.05631159618496895, 0.031124448403716087, -0.036041274666786194, -0.04332374781370163, 0.00869721919298172, -0.021511122584342957, -0.005647394340485334, 0.0021511123050004244, 0.020305108278989792, 0.0136604318395257, -0.012895076535642147, -0.0017843794776126742, 0.0013002342311665416, -0.006163429468870163, 0.009503161534667015, -0.00762456189841032, -0.0027483212761580944, -0.024560946971178055, -0.03033589944243431, -0.014553346671164036, 0.01510996837168932, -0.01302263606339693, 0.018449701368808746, 0.01895993761718273, 0.043509289622306824, -0.008737806230783463, -0.009503161534667015, 0.0013415460707619786, -0.0511164553463459, -0.02276352234184742, -0.026810627430677414, -0.033281359821558, -0.024468176066875458, -0.003989124670624733, -0.037989452481269836, 0.03759517893195152, 0.02555822767317295, -0.01510996837168932, 0.028364529833197594, -0.03838372603058815, -0.032608773559331894, 0.06057903170585632, 0.032028958201408386, -0.055105581879615784, -0.016768237575888634, 0.008656632155179977, -0.03778072074055672, -0.004853048361837864, 0.03682982549071312, -0.006731647532433271, -0.0020119566470384598, 0.02829495258629322, -0.04112045094370842, -0.03849969059228897, 0.05125560984015465, 0.02298385091125965, -0.015492646023631096, -0.01739443838596344, -0.04865804314613342, 0.025303108617663383, -0.02351728081703186, 0.02690339833498001, -0.002690339693799615, -0.024653717875480652, -0.0033890162594616413, 0.01831054501235485, -0.03789668157696724, 0.01286028791218996, 0.008581256493926048, 0.03847649693489075, 0.00821017473936081, -0.022775117307901382, 0.036528319120407104, -0.00294690765440464, 0.027877485379576683, 0.03676024451851845, 0.008036230690777302, 0.016072461381554604, -0.00526181748136878, -0.008273954503238201, -0.04842611774802208, 0.0027309267316013575, 0.0359485037624836, 0.01980646699666977, 0.012813902460038662, -0.05663629248738289, 0.0027758623473346233, 0.032075345516204834, -0.010425066575407982, -0.020850133150815964, 0.007386838085949421, -0.02878199703991413, -0.027877485379576683, 0.0017350951675325632, -0.005551724694669247, -0.04833334684371948, 0.0012364547001197934, 0.003548465436324477, 0.005482146982103586, 0.007844891399145126, -0.0033629247918725014, 0.0073114619590342045, 0.001173399854451418, 0.026532316580414772, 0.02185901068150997, -0.0217894334346056, -0.013776395469903946, 0.024282636120915413, -0.04214092716574669, 0.010413470678031445, -0.03831414878368378, -0.06243443861603737, -0.018159793689846992, 0.012755921110510826, 0.032446425408124924, 0.024398598819971085, -0.007189701311290264, 0.018658433109521866, -0.002129369182512164, 0.009456776082515717, -0.035623811185359955, 0.015167949721217155, -0.022311266511678696, 0.008401514030992985, 0.0290371160954237, 0.0038847578689455986, 0.019307825714349747, 0.023180987685918808, -0.006001081317663193, 0.007044747471809387, -0.011288990266621113, -0.009978609159588814, -0.0045283520594239235, -0.016559505835175514, 0.010651194490492344, 0.035345498472452164, 0.02421305887401104, -0.012616765685379505, -0.009555344469845295, 0.011990565806627274, 0.0013582156971096992, 0.010819340124726295, -0.020258722826838493, -0.015353490598499775, 0.02282150276005268, 0.0014328667894005775, 0.03383798152208328, 0.03956655040383339, -0.029176270589232445, -0.02082694135606289, -0.006024273578077555, 0.030521441251039505, -0.0016887100646272302, -0.0349048376083374, 0.007415828760713339, 0.019087497144937515, -0.01766115240752697, 0.036319587379693985, 0.02223009243607521, 0.004809562116861343, -0.015017198398709297, -0.011857208795845509, -0.02539587952196598, 0.02711213007569313, -0.016884202137589455, 0.008540669456124306, 0.01723209023475647, -0.006511318031698465, 0.01992242969572544, 0.013057424686849117, 0.00668526254594326, 0.0006044566980563104, 0.017591575160622597, -0.003310741391032934, 0.016837816685438156, 0.008395715616643429, 0.003304943209514022, -0.017429227009415627, 0.02706574648618698, 0.01933101937174797, -0.002364194020628929, -0.005305303726345301, -0.007357847411185503, 0.006250401493161917, -0.0003464392211753875, 0.0060880533419549465, -0.007363645359873772, 0.019412193447351456, 0.017092933878302574, -0.007265076972544193, -0.0417698435485363, -0.012500802986323833, -0.013242965564131737, -0.0035020802170038223, -0.004209454171359539, -0.011526714079082012, -0.04684901982545853, 0.02393474616110325, 0.002032250165939331, 0.02674105018377304, -0.03151872381567955, 0.005287909414619207, 0.04156111180782318, -0.022589577361941338, -0.007804304827004671, -0.0018554067937657237, -0.02087332494556904, -0.014390998519957066, -0.0026367069222033024, 0.02973289228975773, 0.03998401388525963, -0.011080256663262844, -0.007160710170865059, -0.015689782798290253, 0.0018945442279800773, -0.05914108827710152, 0.0174524188041687, 0.027019361034035683, 0.02711213007569313, 0.04374121502041817, 0.01255878433585167, -0.015550627373158932, 0.022531595081090927, 0.03993763029575348, 0.0020829839631915092, 0.0063141812570393085, 0.012906673364341259, -0.016872605308890343, 0.0037079143803566694, 0.0010342443129047751, -0.010674387216567993, -0.02699616737663746, 0.02040947414934635, 0.02776152268052101, 0.004925525281578302, -0.006488125305622816, 0.010558423586189747, -0.007873882539570332, -0.01900632306933403, -0.027529597282409668, 0.01194418128579855, -0.0009298776858486235, 0.0008487036102451384, 0.009572738781571388, -0.002977347932755947, 0.009132079780101776, 0.007102728821337223, 0.005580715369433165, -0.004545746371150017, -0.03887077048420906, -0.006789628881961107, 0.030405478551983833, -0.03977528214454651, 0.04172345995903015, -0.015202739275991917, 0.015365087427198887, 0.003432502504438162, -0.05315740406513214, 0.01589851640164852, 0.02185901068150997, 0.04643155261874199, -0.00020094199862796813, -0.018646838143467903, 0.015179546549916267, 0.00199891091324389, 0.01643194630742073, -0.011752841994166374, -0.02759917452931404, 0.02748321183025837, 0.008755200542509556, 0.045341502875089645, 0.02400432527065277, 0.02694978378713131, 0.004194958601146936, -0.03759517893195152, -0.0035542636178433895, 0.0019481771159917116, -0.0052531203255057335, 0.010558423586189747, -0.02067618817090988, 0.0213139858096838, -0.007583974860608578, 0.025163954123854637, 0.022891080006957054, 0.029431389644742012, 0.006720051169395447, 0.011932584457099438, -0.003528171917423606, 0.02232286147773266, -0.040447868406772614, -0.028526877984404564, -0.01033229660242796, -0.00610544765368104, -0.021708259359002113, -0.00781010277569294, -0.007728928700089455, -0.006633079145103693, 0.010204737074673176, 0.024282636120915413, 0.010216332972049713, 0.0009784371359273791, 0.01017574593424797, 0.010720771737396717, -0.03021993674337864, -0.01836852729320526, -0.008204376325011253, -0.00885956734418869, 0.016362369060516357, 0.024978412315249443, 0.08627641201019287, -0.028526877984404564, -0.0039108493365347385, -0.021940184757113457, -0.02008477784693241, -4.572834586724639e-05, -0.02511756867170334, 0.0289443451911211, 0.004366003908216953, 0.007352048996835947, 0.011138238944113255, 0.006221410818397999, -0.02067618817090988, 3.891099549946375e-05, -0.031541913747787476, 0.02667147107422352, 0.028596457093954086, -0.03425544872879982, -0.021325580775737762, 0.03214492276310921, 0.002675844356417656, 0.045225538313388824, 0.0038035837933421135, 0.020908115431666374, 0.017464015632867813, 0.010570020414888859, 0.009694499894976616, -0.013869165442883968, 0.06967052072286606, 0.02442179061472416, 0.028642840683460236, -0.01110924780368805, 0.014356209896504879, -0.028155798092484474, -0.044251449406147, 0.023169390857219696, 0.013150195591151714, 0.018067022785544395, 0.012593572959303856, 0.0264163538813591, -0.0013002342311665416, -0.01447217259556055, 0.026648279279470444, -0.0011697759618982673, 0.0331885889172554, 0.035670194774866104, -0.0165942944586277, 0.002661349019035697, -0.017058145254850388, 0.006308382842689753, -0.038569267839193344, -0.008395715616643429, -0.028712419793009758, -0.0031223015394061804, -0.03066059574484825, 0.03560061752796173, 0.004258738365024328, -0.007937662303447723, -0.0014611327787861228, -0.025906115770339966, -0.03536869212985039, -0.02706574648618698, 0.005687981378287077, -0.0012871883809566498, 0.015307105146348476, -0.03555423021316528, 0.01889036037027836, 0.03028951585292816, 0.015527435578405857, 0.023818783462047577, -0.00794925820082426, -0.004061601124703884, -0.00762456189841032, -0.0007921716896817088, -0.03474248945713043, 0.05603328347206116, 0.03458014130592346, -0.02817898988723755, 0.002645404078066349, 0.04912189394235611, -0.00909729115664959, 0.024189865216612816, 0.021661873906850815, 0.006279392167925835, 0.0045312512665987015, -0.01626959815621376, 0.01237324345856905, 0.05255439504981041, -0.0009479968575760722, -0.005641595926135778, -0.009856848046183586, 0.0005830760346725583, -0.021024078130722046, -0.008836374618113041, 0.0030208341777324677, 0.013996724970638752, -0.03643554821610451, 0.003525272710248828, 0.007305664010345936, -0.015225932002067566, -0.035786159336566925, 0.011932584457099438, -0.008824778720736504, -0.016304386779665947, 0.02722809463739395, 0.009723491035401821, -0.014043109491467476, -0.018391719087958336, 0.0026859911158680916, 0.007868084125220776, 0.019528156146407127, -0.026485931128263474, -0.0452951155602932, 0.005954695865511894, 0.0470113679766655, -0.00605326471850276, 0.003826776286587119, -0.0032701543532311916, -0.0016771137015894055, 0.002958504017442465, 0.012431224808096886, 0.019075900316238403, -0.011370164342224598, 0.03731686621904373, -0.03759517893195152, 0.014101090840995312, 0.004795067012310028, 0.00321507197804749, -0.014425787143409252, -0.026926590129733086, -0.032075345516204834, -0.0009856848046183586, 0.01825256459414959, -0.006018475629389286, -0.014159073121845722, -0.01820617914199829, -0.009340813383460045, -0.019203459843993187, 0.02035149186849594, -0.007850689813494682, -0.016350772231817245, -0.005386477801948786, -0.060532644391059875, 0.03124041110277176, 0.003702116198837757, 0.008679824881255627, 0.007757919374853373, 0.017046550288796425, -0.005264716688543558, -0.0013893807772547007, 0.021024078130722046, 0.0050298916175961494, 0.00566188944503665, -0.0170233566313982, -0.02572057582437992, 0.029269041493535042, -0.030614210292696953, 0.0062330071814358234, 0.06447538733482361, -0.01931942254304886, 0.001112519297748804, -0.03230727091431618, 0.042813509702682495, 0.04267435520887375, 0.031866610050201416, 0.021731451153755188, -0.027993449941277504, -0.0025105972308665514, -0.027947064489126205, 0.024514561519026756, 0.012500802986323833, 0.009410390630364418, -0.025906115770339966, 0.0132313696667552, -0.015770956873893738, -0.004171765875071287, 0.005795246921479702, -0.015063583850860596, 0.010343892499804497, -0.013115406036376953, -0.001968470634892583, 0.002854137448593974, -0.0055894129909574986, 0.03972889855504036, 0.012813902460038662, 0.021499525755643845, 0.011120843701064587, 0.002345350105315447, -0.03778072074055672, 0.010256920009851456, -0.0010842533083632588, 0.003780391300097108, -0.007224489934742451, 0.020363088697195053, 0.01339371781796217, 0.020966095849871635, -0.04258158430457115, -0.006030071992427111, 0.018078619614243507, -0.018820781260728836, 0.006917188409715891, -0.022520000115036964, 0.006934582721441984, 0.01879758946597576, 0.009219052270054817, 0.011080256663262844, 0.012060143984854221, -0.010859927162528038, -0.0029034216422587633, 0.02298385091125965, -0.0062272087670862675, 0.0005591587396338582, -0.025210339576005936, 0.022833099588751793, -0.0030440266709774733, 0.001211812486872077, 0.0019119386561214924, -0.013521276414394379, -0.013753202743828297, -0.00786228571087122, -0.015376683324575424, -0.02119802124798298, -0.0033600255846977234, 0.00036999420262873173, -0.00539807416498661, -0.017579978331923485, -0.015654994174838066, -0.004435581620782614, -0.006621482782065868, 0.02613804303109646, 0.025859732180833817, -0.0033020442351698875, -0.007299866061657667, 0.028689226135611534, 0.011120843701064587, -0.027552790939807892, 0.02442179061472416, -0.01414747629314661, 0.016791431233286858, 0.01433301717042923, -0.014738887548446655, 0.030938906595110893, 0.03267835080623627, -0.010140957310795784, 0.02792387083172798, -0.009781472384929657, -0.03135637566447258, 0.013648835942149162, 0.02829495258629322, -0.042975857853889465, -0.01653631217777729, 0.01643194630742073, 0.04439060762524605, -0.024468176066875458, -0.03434821590781212, 0.01675664260983467, 0.030080782249569893, -0.0062272087670862675, -0.0011545558227226138, 0.006633079145103693, -0.025187145918607712, 0.012280473485589027, -0.019725292921066284, -0.018762800842523575, 0.016292789950966835, 0.01937740482389927, -0.016466734930872917, 0.004360205959528685, -0.032933469861745834, -0.014066302217543125, -0.03066059574484825, -0.013730010017752647, 0.011242604814469814, 0.03866203874349594, -0.01127159595489502, -0.014599732123315334, 0.007821698673069477, -0.025859732180833817, -0.009967013262212276, -0.005487945396453142, -0.0022815705742686987, -0.018217774108052254, 0.010784551501274109, 0.008030432276427746, 0.015921708196401596, 0.014611328020691872, 0.033420514315366745, -0.005966292228549719, 0.023957939818501472, 0.021337177604436874, 0.004539948422461748, 0.0006214887835085392, 0.0038673633243888617, 0.009967013262212276, -0.030683789402246475, -0.018426507711410522, 0.004618223290890455, 0.01792786829173565, -0.007352048996835947, 0.00998440757393837, 0.02072257362306118, 0.01414747629314661, 0.015005601570010185, 0.05756399407982826, -0.011874603107571602, 0.001401701825670898, 0.018716415390372276, -0.010517836548388004, -0.009851050563156605, 0.03198257461190224, -0.004913928918540478, -0.021082058548927307, -0.023865168914198875, 0.004855947103351355, -0.004815360531210899, -0.00594309950247407, -0.01141075138002634, -0.02341291308403015, -0.002397533506155014, -0.015063583850860596, 0.010883119888603687, 0.00488493824377656, 0.019736889749765396, 0.0170697420835495, -0.03687620908021927, 0.03281750530004501, -0.006876601371914148, -0.015330297872424126, -0.016350772231817245, 0.058862779289484024, -0.004647213965654373, 0.0221257247030735, 0.02195178158581257, -0.06841812282800674, -0.022044550627470016, -0.003992023412138224, -0.007607167586684227, 0.02792387083172798, 0.002713532419875264, 0.015098372474312782, 0.012152913957834244, -0.01949336752295494, 0.015492646023631096, -0.03773433342576027, 0.0027657155878841877, 0.0015959397424012423, 0.028967536985874176, -0.007636158261448145, -0.026972975581884384, -0.015133161097764969, -0.0035049791913479567, 0.0016582697862759233, -0.0054792482405900955, 0.011665869504213333, 0.021650277078151703, 0.0002630908857099712, -0.019087497144937515, -0.02141835168004036, 0.009340813383460045, 0.021082058548927307, -0.016037672758102417, -0.015770956873893738, 0.07277832925319672, 0.022253284230828285, 0.0017945262370631099, 0.015956498682498932, -0.006134438328444958, -0.012002162635326385, -0.0038818588946014643, -0.011497723869979382, -0.0013227020390331745, -0.03801264613866806, -0.0027019360568374395, -0.009277033619582653, -0.040076784789562225, 0.027877485379576683, -0.019736889749765396, 0.0003573107533156872, -0.012500802986323833, 0.010517836548388004, 0.00799564365297556, -0.012767517939209938, 0.006070659030228853, -0.012419628910720348, 0.01224568486213684, 0.010100370272994041, 0.021916992962360382, -0.03515995666384697, -0.04149153456091881, -0.005444459151476622, 0.014356209896504879, 0.010645396076142788, -0.0021322681568562984, -0.007746323011815548, 0.023065024986863136, -0.0015394077636301517, 0.009920627810060978, -0.0002850151213351637, -0.00573146715760231, 0.01786988601088524, 0.02356366626918316, -0.023389721289277077, -0.027506405487656593, -0.016026075929403305, 0.024282636120915413, -0.009172666817903519, 0.020490648224949837, -0.00668526254594326, -0.008302944712340832, -0.03924185410141945, -0.015539031475782394, -0.033745210617780685, 0.0011059963144361973, -0.013776395469903946, -0.0036180431488901377, 0.0123500507324934, 0.010575818829238415, 0.013950339518487453, 0.012466014362871647, -0.012315262109041214, 0.03625001013278961, 0.034765683114528656, 0.013579257763922215, 0.010703377425670624, -0.0006975894211791456, -0.004157270770519972, -9.675656474428251e-05, -0.0015176647575572133, -0.01717410795390606, 0.022346055135130882, -0.0007769515505060554, 0.025998886674642563, -0.009056704118847847, 0.04448337480425835, -0.035090379416942596, 0.030034396797418594, 0.026230812072753906, 0.00797245092689991, 0.02255478873848915, 0.0037600977811962366, -0.06902112811803818, -0.023007042706012726, 0.0005881494143977761, 0.029338618740439415, 0.0174524188041687, -0.01110924780368805, -0.0002052906056633219, 0.008975530043244362, -0.006963573396205902, 0.020861729979515076, -0.012848692014813423, -0.009793068282306194, 0.007914469577372074, -0.01033229660242796, 0.011897795833647251, -0.012222492136061192, -0.07449457794427872, -0.013161791488528252, -0.027877485379576683, 0.02657870203256607, -0.036968979984521866, 0.01218770258128643, 0.014622923918068409, 0.03291027620434761], [0.0029329638928174973, 0.004433619324117899, 0.030595537275075912, -0.013550471514463425, 0.029311809688806534, 0.03860695660114288, -0.00785689614713192, 0.07883046567440033, 0.033305633813142776, 0.014786655083298683, -0.007922271266579628, -0.050208061933517456, -0.016331883147358894, 0.061238620430231094, 0.0011381207732483745, 0.03589686378836632, 0.00977060291916132, 0.0002676292497199029, 0.0028958190232515335, 0.019125182181596756, 0.005583626218140125, 0.028028080239892006, -0.018566522747278214, -0.03069062903523445, 0.005250807851552963, -0.03216454014182091, 0.0010073705343529582, 0.016450747847557068, -0.0022881277836859226, -0.03584931790828705, 0.06508980691432953, -0.018816137686371803, 0.025674577802419662, -0.033638451248407364, 0.056626707315444946, -0.03696663677692413, -0.018471432849764824, 0.004430647473782301, 0.04799719527363777, -0.02008797973394394, -0.025389304384589195, 0.010020216926932335, -0.011054332368075848, -0.06190425902605057, -0.03176040202379227, 0.01582076959311962, 0.026245122775435448, -0.03083326667547226, 0.003577800001949072, 0.02411746233701706, -0.007720202673226595, 0.0006968389498069882, 0.013288971036672592, -0.03432786092162132, -0.0199928879737854, 0.001241383608430624, -0.006680144928395748, 0.030476674437522888, 0.013467267155647278, -0.012623334303498268, 0.05210988223552704, 0.015511724166572094, 0.013538585044443607, 0.08643774688243866, -0.0009457099949941039, 0.04949488118290901, 0.005654944572597742, 0.017829567193984985, -0.024676121771335602, 0.04887678846716881, -0.011791286990046501, -0.031807947903871536, -0.01607038453221321, -0.03164153918623924, -0.009622023440897465, 0.0031736630480736494, -0.009467500261962414, -0.04459769278764725, 0.03306790441274643, 0.028384672477841377, 0.00925354566425085, 0.03092835657298565, -0.04709383100271225, 0.0356115885078907, 0.027267351746559143, -0.039415232837200165, -0.04043745994567871, -0.01820993237197399, -0.02392728067934513, 0.025627031922340393, -0.031213629990816116, -0.04012841358780861, 0.022964483126997948, 0.042006462812423706, 0.04022350534796715, -0.006852497346699238, -0.007155600003898144, -0.03425654396414757, -0.030357809737324715, 0.06489962339401245, 0.014441950246691704, -0.013704994693398476, 0.015606814995408058, -0.008736488409340382, 0.03853563964366913, -0.02352314256131649, -0.09119229763746262, -0.0012346975272521377, 0.036277227103710175, 0.023142779245972633, -0.04371809959411621, -0.0002583430032245815, -0.008641397580504417, 0.052442703396081924, 0.009491273202002048, 0.005934274289757013, 0.010246057994663715, 0.0010170282330363989, -0.008159998804330826, 0.0014397376216948032, -0.010079649277031422, -0.038511864840984344, 0.006923815235495567, -0.053488701581954956, -0.0476406067609787, -0.01121479831635952, -0.03537386283278465, 0.003244981402531266, -0.02605494111776352, -0.008789977058768272, 0.03425654396414757, -0.0023059574887156487, 0.011963640339672565, 0.02272675558924675, -0.03197435662150383, 0.01760372705757618, -0.010240115225315094, 0.010697741061449051, -0.006163087207823992, -0.043385282158851624, 0.043741874396800995, -0.010454069823026657, 0.016474520787596703, -0.00415428914129734, -0.004882330074906349, 0.002827472286298871, 0.012563901953399181, 0.04307623580098152, -0.03216454014182091, 0.03746586665511131, 0.020527776330709457, 0.0006359212566167116, 0.004968506284058094, -0.035540271550416946, -0.017330339178442955, -0.0223345048725605, 0.00969928503036499, 0.02605494111776352, -0.006317610386759043, 0.014750995673239231, 0.014358744956552982, 0.0016195190837606788, -0.027719033882021904, 0.0032628108747303486, 0.013681221753358841, -0.013217653147876263, -0.04507314786314964, -0.03939145803451538, -0.07070017606019974, -0.002237610751762986, -0.018067294731736183, 0.03133249282836914, -0.012920493260025978, 0.03656249865889549, -0.017924658954143524, -0.03268754109740257, -0.033995043486356735, 0.01771070435643196, 0.0007830151589587331, -0.026245122775435448, 0.020527776330709457, -0.021870937198400497, -0.026934534311294556, -0.049257151782512665, -0.015987178310751915, 0.044692784547805786, 0.0011997813126072288, -0.006127428263425827, -0.01700940728187561, -0.005033881403505802, -0.02527044154703617, -0.01459647249430418, -0.011749684810638428, 0.03756095468997955, -0.017734477296471596, 0.04554860293865204, -0.02695830725133419, -0.008118396624922752, 0.024331416934728622, 0.026173805817961693, -0.006632599048316479, 0.009455613791942596, 0.05386906862258911, -0.01019851304590702, 0.006287894211709499, 0.02527044154703617, 0.020813047885894775, 0.03884468600153923, 0.016082270070910454, 0.038369230926036835, 0.0009479387081228197, 0.005904558580368757, -0.051254063844680786, 0.049352243542671204, -0.05073106288909912, -0.020967571064829826, 0.015321541577577591, 0.01250447053462267, 0.023535029962658882, 0.09047911316156387, -0.05924171209335327, -0.006347326096147299, 0.02878880873322487, -0.040152184665203094, 0.0026150033809244633, -0.02859862707555294, -0.029002763330936432, -0.029026536270976067, -0.01964818313717842, -0.05115897208452225, -0.0015868315240368247, 0.018388226628303528, -0.02933558262884617, -0.0036520897410809994, -0.007916328497231007, 0.05881379917263985, 0.010757172480225563, -0.040603868663311005, -0.04664215072989464, -0.035873088985681534, -0.02363011986017227, 0.007803407497704029, -0.03430408984422684, 0.016177361831068993, 0.002314872108399868, 0.016248678788542747, -0.003824442159384489, -0.03970050439238548, -0.009009874425828457, -0.007524077780544758, 0.05386906862258911, 0.0027724977117031813, 0.02710094302892685, -0.030357809737324715, 0.029121628031134605, 0.003925476688891649, 0.04476410150527954, -0.019660070538520813, 0.03584931790828705, -0.020563434809446335, 0.01849520578980446, -0.010709626600146294, 0.0388922318816185, 0.013598017394542694, -0.012944266200065613, -0.06366344541311264, 0.020111752673983574, -0.05206233635544777, -0.04043745994567871, -0.015392860397696495, -0.02286939136683941, -0.020658526569604874, -0.028455989435315132, -0.03649118170142174, -0.005117085762321949, 0.010121251456439495, 0.0038779310416430235, -0.0071912589482963085, -0.009378352202475071, 0.03565913438796997, -0.054677341133356094, -0.023344846442341805, 0.03256867825984955, 0.016771679744124413, -0.006810894701629877, 0.0086295111104846, 0.045334648340940475, 0.012813515961170197, -0.00047248354530893266, 0.016640929505228996, 0.07188881933689117, -0.03696663677692413, 0.02550816908478737, -0.023404279723763466, 0.03435163199901581, -0.03977182134985924, -0.013776312582194805, -0.03708549961447716, 0.023047687485814095, -0.0013609903398901224, 0.025698350742459297, 0.015119473449885845, 0.010008330456912518, 0.03466067835688591, -0.024509713053703308, 0.03934391215443611, 0.07883046567440033, -0.0007837580633349717, -0.00144568074028939, -0.0292880367487669, -0.011119707487523556, 0.07003454118967056, -0.028765035793185234, -0.015892088413238525, -0.02282184734940529, -0.004564369563013315, -0.04799719527363777, 0.008486874401569366, 0.02919294498860836, -0.009277318604290485, 0.04302868992090225, -0.021027004346251488, 0.03173663094639778, -0.02705339714884758, 0.02769526094198227, 0.04022350534796715, -0.04331396147608757, 0.02441462129354477, -0.03829791024327278, -0.027362443506717682, -0.04882924258708954, -0.02072984352707863, 0.010513502173125744, -0.01631999760866165, 0.01121479831635952, 0.05377397686243057, 0.012361833825707436, 0.0011180625297129154, 0.013740653172135353, 0.033947497606277466, 0.025127803906798363, -0.018828023225069046, -0.01869727298617363, 0.013978380709886551, -0.0013193880440667272, -0.006270064506679773, 0.02332107536494732, 0.04222041741013527, 0.01626056618988514, 0.0788780078291893, -0.016141701489686966, -0.010935468599200249, -0.062046896666288376, 0.0073457821272313595, -0.05548561364412308, -0.031308721750974655, 0.021264731884002686, 0.016533952206373215, -0.025484396144747734, 0.028218261897563934, 0.021704526618123055, -0.047973424196243286, 0.008290749043226242, 0.028812581673264503, -0.010709626600146294, -0.018673500046133995, -0.03152267634868622, 0.0012636706233024597, -0.01330085750669241, -0.06314044445753098, 0.03546895459294319, -0.0015987178776413202, 0.01582076959311962, -0.045524828135967255, 0.02203734591603279, -0.03009631112217903, -0.01514324638992548, 0.0392012745141983, -0.011809117160737514, 0.004989307373762131, -0.012563901953399181, 0.02686321549117565, -0.02078927680850029, 0.011571389622986317, 0.02198980003595352, 0.056626707315444946, -0.03306790441274643, -0.04581010341644287, -0.010364921763539314, 0.012141935527324677, 0.01509570050984621, 0.02357068844139576, -0.0074943616054952145, -0.04081782326102257, 0.012658992782235146, -0.004683233331888914, 0.02705339714884758, 0.016236793249845505, 0.027837898582220078, -0.019065750762820244, 0.02089625410735607, -0.027338670566678047, 0.011452525854110718, -0.05624634400010109, -0.018685387447476387, -0.05177706480026245, 0.006662315223366022, -0.017472976818680763, 0.016438862308859825, 0.04490673914551735, 0.04455014690756798, -0.007167486008256674, 0.017484862357378006, 0.023285415023565292, -0.0026892931200563908, 0.01885179616510868, -0.002579344203695655, 0.007060508709400892, 0.01935102418065071, 0.01352669857442379, 0.014382517896592617, -0.004026510752737522, -0.024652348831295967, 0.05491506680846214, 0.032592449337244034, 0.03703795373439789, -0.008296691812574863, 0.010555104352533817, -0.018721045926213264, -0.018839910626411438, 0.011571389622986317, 0.00215737777762115, 0.0142517676576972, 0.04445505514740944, -0.03159399330615997, -0.00043088122038170695, -0.001053430256433785, -0.050303153693675995, 0.00954476185142994, -0.01854274980723858, -0.010192569345235825, -0.005102227907627821, 0.009758716449141502, 0.014382517896592617, 0.024581030011177063, 0.0029433644376695156, -0.02855108119547367, 0.012141935527324677, -0.004273152910172939, 0.011761571280658245, -0.020361365750432014, 0.0629502609372139, -0.06637353450059891, 0.03813150152564049, -0.027267351746559143, -0.02223941497504711, 0.01864972710609436, -0.008736488409340382, -0.007732089143246412, -0.010507558472454548, 0.011238571256399155, 0.03506481647491455, 0.03577800095081329, 0.017877113074064255, 0.028337126597762108, 0.07921082526445389, 0.02664926089346409, -0.03337695077061653, 0.005764893721789122, -0.008552249521017075, -0.02790921740233898, 0.01824559085071087, 0.019172728061676025, -0.009794375859200954, 0.06043034791946411, 0.022607892751693726, 0.016082270070910454, 0.0011841804953292012, -0.007381441071629524, 0.015226450748741627, 0.0045584263280034065, 0.026673033833503723, -0.06932135671377182, -0.023546915501356125, -0.005069540347903967, -0.01280162949115038, 0.024699894711375237, -0.092476025223732, -0.028028080239892006, -0.004285039380192757, -0.024628575891256332, -0.02013552561402321, 0.019767047837376595, -0.010436240583658218, 0.010150967165827751, -0.051349155604839325, -0.025246668606996536, 0.00589267211034894, 0.039011094719171524, -0.03625345602631569, 0.014667791314423084, -0.012896720319986343, -0.012153821997344494, -0.022489028051495552, 0.005931302905082703, 0.010460013523697853, -0.009205999784171581, -0.0407702773809433, 0.018019748851656914, -0.014727222733199596, -0.053346067667007446, -0.003559970296919346, 0.002029599156230688, -0.004240465350449085, 0.0080827372148633, -0.03078572079539299, -0.009681454859673977, -0.004944733344018459, -0.0026462050154805183, -0.018828023225069046, 0.0076786004938185215, 0.00930109154433012, 0.016890544444322586, 0.011119707487523556, -0.03176040202379227, 0.026791896671056747, 0.013930835761129856, -0.026482852175831795, -0.02078927680850029, 0.01395460870116949, -0.012242970056831837, -0.04241059720516205, -0.031950585544109344, -0.0051765176467597485, -0.0014865401899442077, -0.02527044154703617, -0.003934391308575869, 0.011226684786379337, 0.030452901497483253, -0.010477842763066292, 0.012658992782235146, -0.002842330140992999, -0.01375253964215517, 0.017437316477298737, 0.009681454859673977, 0.052632883191108704, -0.011553559452295303, 0.029811037704348564, 0.00280369957908988, -0.032354723662137985, 0.02099134400486946, -0.021407367661595345, -0.014560814015567303, -0.024604802951216698, -0.020076092332601547, 0.04604782909154892, 0.01919650100171566, 0.009907296858727932, 0.012623334303498268, 0.020278161391615868, -0.02113398164510727, 0.02909785509109497, 0.013407834805548191, 0.00774397561326623, 0.009283261373639107, 0.004647573921829462, 0.003212293842807412, 0.002253954531624913, -0.004109715577214956, -0.03218831121921539, -0.02038513869047165, -0.00016947375843301415, -0.0027279239147901535, -0.026292668655514717, 0.0326399952173233, -0.013776312582194805, -0.005898615345358849, -0.0030087395571172237, -0.0027279239147901535, 0.0017591840587556362, -0.0002193408290622756, 0.016545839607715607, 0.020076092332601547, -0.014929291792213917, -0.03275885805487633, -0.000573146331589669, 0.008647340349853039, -0.008986102417111397, -0.03323431313037872, 0.02914539910852909, -0.013598017394542694, -0.011826946400105953, -0.0058837574906647205, 0.02391539327800274, -0.02745753340423107, 0.023451825603842735, 0.027362443506717682, 0.04968506097793579, -0.024581030011177063, 0.019814593717455864, 0.039415232837200165, -0.020813047885894775, -0.023142779245972633, 0.006579110398888588, -0.06261744350194931, -0.016926202923059464, 0.004192919936031103, 0.01780579425394535, 0.01869727298617363, -0.003851186716929078, 0.012302401475608349, 0.02149057202041149, 0.007785577792674303, -0.017829567193984985, -0.05714970827102661, 0.002099431585520506, -0.0004368243971839547, -0.03839300200343132, -0.005637114867568016, -0.024676121771335602, 0.010656137950718403, -0.02371332421898842, 0.0017844425747171044, 0.017734477296471596, 0.0035035100299865007, -0.019505547359585762, -0.008956385776400566, -0.03865450248122215, 0.053488701581954956, -0.0033727597910910845, 0.0050576538778841496, 0.06960663199424744, -0.018614068627357483, -0.003060742514207959, -0.03758472949266434, 0.01630811206996441, 0.009610136970877647, -0.0055063646286726, -0.024509713053703308, -0.0033103565219789743, 0.00070092489477247, -0.00037386376061476767, -0.010246057994663715, -0.030001219362020493, 0.01409724447876215, 0.04136459529399872, 0.014774768613278866, -0.007738032378256321, -0.0038482150994241238, -0.004923932254314423, 0.011018672958016396, 0.004017596133053303, -0.021359821781516075, -0.02878880873322487, 0.024581030011177063, 0.010929524898529053, 0.035136133432388306, 0.039462774991989136, -0.01675979420542717, 0.00801141932606697, -0.029573310166597366, 0.01409724447876215, 0.02317843772470951, -0.015202677808701992, 0.034137677401304245, 0.024438394233584404, 0.02088436670601368, 0.024652348831295967, -0.03466067835688591, 0.0013260741252452135, -0.00014839399955235422, 0.008373953402042389, -0.0009806262096390128, -0.017912771552801132, 0.01514324638992548, -0.02422443963587284, -0.01032331958413124, 0.04043745994567871, -0.010531331412494183, -0.0010630879551172256, -0.03435163199901581, -0.026530396193265915, 0.027671489864587784, 0.03439917787909508, 0.03092835657298565, -0.052442703396081924, -0.04198268800973892, -0.01494117733091116, 0.004210749641060829, 0.016082270070910454, -0.01099490001797676, 0.04416978359222412, 0.006608826573938131, 0.014620245434343815, 0.01860218308866024, 0.025389304384589195, 0.0413883700966835, -0.0205396618694067, -0.02371332421898842, 0.006091768853366375, 0.013051243498921394, 0.033995043486356735, -0.04041368514299393, -0.025769667699933052, -0.031023448333144188, 0.005339955445379019, -0.035041045397520065, -0.0035629419144243, 0.04747419431805611, -0.01646263338625431, -0.0036223737988620996, -0.02710094302892685, -0.02774280682206154, -0.02039702609181404, -0.001692323130555451, 0.04778324067592621, -0.018293136730790138, 0.002843816066160798, 0.00875431764870882, -0.030524220317602158, -0.016141701489686966, 0.04340905323624611, -0.024093689396977425, -0.006846554111689329, -0.007434929721057415, 0.007803407497704029, 0.00178147095721215, 0.015642473474144936, -0.06299780309200287, 0.021205298602581024, 0.04495428502559662, -0.018293136730790138, 0.019683843478560448, 0.01894688792526722, -0.055723343044519424, 0.008237260393798351, -0.02531798556447029, 0.0005315439775586128, -0.00897421594709158, -0.010424354113638401, 0.031855493783950806, -0.011244514025747776, 0.03492217883467674, -0.04628555849194527, -0.005990734789520502, -0.00785689614713192, -0.010881979949772358, 0.009556648321449757, -0.01735411211848259, 0.010602649301290512, -0.020123638212680817, 0.008023305796086788, -0.026435306295752525, 0.0066860876977443695, 0.017782021313905716, -0.041649870574474335, -0.0003445192414801568, 0.010234171524643898, 0.01899443194270134, -0.012254856526851654, -0.00022546974651049823, 0.02426009811460972, -0.020076092332601547, 0.007393327541649342, 0.011232627555727959, -0.02541307732462883, -0.019434228539466858, -0.04695119336247444, -0.00830857828259468, -0.0323309488594532, -0.03206944838166237, 0.061095986515283585, -0.024581030011177063, -0.0036461465060710907, -0.00835612416267395, 0.01049567200243473, -0.02724357880651951, -0.00795793067663908, -0.021668868139386177, -0.029216717928647995, 0.00865328311920166, -0.02695830725133419, -0.009919182397425175, 0.021407367661595345, -0.0172590222209692, 0.04017595946788788, 0.062332168221473694, 0.008516590110957623, -0.00421372102573514, -0.015357200987637043, 0.015678133815526962, -0.04376564547419548, -0.011571389622986317, 0.010911695659160614, -0.03927259519696236, -0.044431284070014954, 0.0013245883164927363, -0.01429931353777647, -0.015701906755566597, -0.00662665581330657, -0.016533952206373215, 0.0348270907998085, 0.00690004276111722, 0.030999675393104553, 0.019267819821834564, 0.02505648508667946, -0.023392392322421074, -0.03934391215443611, -0.03784622997045517, -0.019909683614969254, -0.006959474645555019, 0.028408445417881012, 0.031498901546001434, 0.023404279723763466, 0.050350699573755264, 0.00246790936216712, -0.0027264379896223545, 0.018031636252999306, -0.004915017634630203, -0.016747906804084778, -0.00426423829048872, -0.014667791314423084, 0.05206233635544777, 0.00959825050085783, 0.0360870435833931, 0.01021634228527546, -0.034185223281383514, -0.014857972972095013, -0.027433762326836586, 0.010899809189140797, -0.028812581673264503, -0.008439328521490097, 0.05063597112894058, 0.017544293776154518, -0.007803407497704029, -0.0004594828060362488, -0.04554860293865204, 0.02869371697306633, 0.022370165213942528, 0.0013231025077402592, 0.03228340297937393, -0.0022970426362007856, -0.02541307732462883, -0.010780945420265198, 0.01576133817434311, -0.012742198072373867, -0.0019671956542879343, 0.01710449904203415, -0.009051477536559105, 0.014430063776671886, -0.004695119336247444, -0.03953409567475319, 0.008035192266106606, 0.0025109974667429924, 0.03302035853266716, 0.022144323214888573, -0.035635363310575485, -0.04978015273809433, -0.0285035353153944, 0.0011284630745649338, 0.0005839183577336371, -0.016248678788542747, -0.012670879252254963, 0.015404746867716312, 0.03252113237977028, 0.0026788925752043724, 0.02193036861717701, 0.03575422614812851, -0.0013921920908614993, -0.041507232934236526, 0.030024992302060127, 0.0019909683614969254, -0.025484396144747734, -0.00241293478757143, 0.022857505828142166, -0.02372521162033081, 0.010162853635847569, -0.011464412324130535, -0.024628575891256332, 0.01979082077741623, 0.017889000475406647, 0.014964950270950794, 0.009134681895375252, 0.005105199757963419, 0.03646741062402725, 0.005693575367331505, 0.017627499997615814, 0.03009631112217903, 0.02764771692454815, -0.029620856046676636, -0.016949975863099098, -0.0029478217475116253, 0.025294212624430656, 0.027528852224349976, 0.005265665706247091, -0.029359355568885803, -0.006365155801177025, 0.0009769117459654808, 0.0037471808027476072, 0.06333062797784805, 0.018661614507436752, 0.010139080695807934, -0.031094765290617943, 0.03808395564556122, 0.014121017418801785, 0.013170107267796993, -0.026150032877922058, -0.02103888988494873, -0.024794984608888626, 0.04828247055411339, 0.06019262224435806, -0.040199730545282364, -0.02814694494009018, -0.013395948335528374, 0.011755628511309624, 0.006495906040072441, -0.014762882143259048, 0.013859516941010952, 0.03123740293085575, 0.01744920387864113, -0.0015177419409155846, 0.027719033882021904, -0.05610370635986328, 0.022893164306879044, -0.012623334303498268, -0.03432786092162132, -0.014441950246691704, 0.0047426652163267136, 0.009408068843185902, 0.006472133100032806, 0.01710449904203415, 0.025698350742459297, -0.02536553144454956, 0.010287660174071789, 0.0038541583344340324, 0.03042912855744362, -0.022940710186958313, 0.01536908745765686, -0.018768591806292534, 0.021157754585146904, 0.022370165213942528, 0.0018319881055504084, 0.024153120815753937, 0.0026164890732616186, 0.035635363310575485, 0.004276124760508537, 0.011547616682946682, -3.222322993678972e-05, 0.011143479496240616, -0.0045376247726380825, -0.009051477536559105, -0.01375253964215517, 0.012599561363458633, 0.03088081069290638, 0.02188282273709774, -0.01066802442073822, 0.014560814015567303, 0.028907671570777893, 0.02347559668123722, 0.01544040534645319, -0.008944500237703323, 0.02855108119547367, 0.011963640339672565, -0.026387760415673256, 0.047022514045238495, 0.055913522839546204, -0.028860127553343773, -0.006965417880564928, 0.0036194021813571453, 0.0069891903549432755, 0.007951986975967884, 0.0026551198679953814, 0.011826946400105953, 0.05448715761303902, 0.013704994693398476, -0.006276007741689682, -0.02992990054190159, 0.010709626600146294, 0.008094623684883118, 0.01939857006072998, 0.015238337218761444, -0.008635453879833221, 0.007553793489933014, 0.02426009811460972, -0.00213211914524436, 0.03867827728390694, 0.010644251480698586, 0.00509925652295351, 0.017568066716194153, 0.00930109154433012, 0.004103772342205048, 0.03651495650410652, -0.025246668606996536, 0.0015229422133415937, -0.049352243542671204, 0.021561890840530396, 0.05082615464925766, 0.01290860679000616, -0.0029270206578075886, 0.010792831890285015, 0.0005200290470384061, -0.024937622249126434, -0.017579954117536545, 0.022049231454730034, 0.018376341089606285, 0.03829791024327278, -0.011309889145195484, 0.006192803382873535, -0.006882213056087494, -0.008498760871589184, 0.018293136730790138, 0.007791521027684212, -0.04507314786314964, -0.002307443181052804, -0.022762414067983627, -0.014584586024284363, 0.006311667151749134, -0.029501991346478462, -0.026530396193265915, 0.023285415023565292, 0.010620479471981525, -0.022203754633665085, 0.02824203483760357, 0.05914662033319473, 0.035088587552309036, 0.018423886969685555, 0.019719501957297325, 0.019172728061676025, 0.031855493783950806, 0.003209322225302458, 0.021621322259306908, -0.02650662325322628, 0.018459545448422432, -0.00010261287388857454, -0.004347443114966154, -0.0017844425747171044, -0.02760017104446888, -0.003179606283083558, -0.024652348831295967, -0.011779401451349258, -0.018923114985227585, -0.03979559615254402, -0.02143114060163498, 0.013277084566652775, -0.0018943916074931622, -0.009223829954862595, 0.015262110158801079, 0.030999675393104553, 0.022964483126997948, -0.004778324160724878, -0.0031974357552826405, 0.009509102441370487, -0.021609436720609665, -0.022346392273902893, -0.029525764286518097, 0.009229772724211216, 0.0065553379245102406, 0.02058720774948597, 0.021573776379227638, -0.003497566794976592, 0.0010846320074051619, -0.012480697594583035, 0.04241059720516205, 0.0056816888973116875, 0.04414600878953934, -0.002466423436999321, -0.017282795161008835, -0.010983013547956944, 0.030262719839811325, 0.0396767295897007, 0.013966495171189308, 0.04290982708334923, 0.022049231454730034, 0.01591586135327816, -0.016224905848503113, -0.004359329119324684, -0.04300491884350777, -0.022500913590192795, 0.0025065401569008827, 0.015701906755566597, -0.013776312582194805, 0.037370774894952774, 0.05496261268854141, -0.04740287736058235, -0.039605412632226944, 0.0254606232047081, -0.0018973631085827947, 0.018091067671775818, -0.0024084774777293205, 0.018376341089606285, -0.011095934547483921, 0.03630099818110466, -0.01302747055888176, 0.04583387449383736, 0.016272451728582382, 0.017318453639745712, 0.0367051362991333, 0.01690242998301983, 0.01591586135327816, 0.010834434069693089, 0.027837898582220078, 0.03428031504154205, 0.033139221370220184, -0.03684777393937111, 0.03720436617732048, -0.03316299617290497, 0.024937622249126434, -0.007274463772773743, 0.008718658238649368, 0.0013387033250182867, -0.03853563964366913, 0.00246790936216712, -0.007755862083286047, -0.029573310166597366, -0.005500421859323978, -0.025341758504509926, 0.016771679744124413, 0.02710094302892685, -0.009348636493086815, 0.035136133432388306, -0.03351958841085434, 0.015606814995408058, -0.02472366765141487, 0.0028542166110128164, -0.010590762831270695, 0.0024084774777293205, 0.008546305820345879, 0.051586881279945374, 0.03962918743491173, -0.012171651236712933, 0.023202210664749146, -0.000854333455208689, -0.0012517842696979642, 0.03684777393937111, -0.012658992782235146, -0.02560325898230076, 0.01630811206996441, -0.035278771072626114, -0.006662315223366022, 0.0027561539318412542, 0.014465722255408764, -0.013395948335528374, 0.007595395669341087, 0.005961018614470959, 0.00741115678101778, 0.007333895657211542, -0.021859049797058105, 0.06261744350194931, -0.010305490344762802, -0.013063129968941212, 0.0007815294084139168, 0.02283373288810253, 0.03161776810884476, 0.01794843189418316, 0.010150967165827751, 0.0353025458753109, 0.040960460901260376, -0.019874025136232376, 0.0026328328531235456, 0.03302035853266716, 0.013098789379000664, -0.01084037683904171, 0.008522533811628819, 0.016224905848503113, -0.03406636044383049, 0.010257944464683533, -0.006365155801177025, -0.021015116944909096, -0.00476346630603075, 0.010008330456912518, 0.004760494455695152, -0.004941761959344149, -0.019909683614969254, -0.024485940113663673, -1.5171383893175516e-05, -0.026815669611096382, 0.021347936242818832, -0.013122561387717724, 0.01790088601410389, -0.004074056167155504, -0.005105199757963419, 0.03164153918623924, -0.03411390632390976, -0.02099134400486946, -0.006053138058632612, 0.015678133815526962, -0.003224180079996586, -0.03922504931688309, 0.0021172610577195883, -0.03661004453897476, -0.036324772983789444, -0.02691076137125492, 0.03197435662150383, 0.027029624208807945, -0.0035629419144243, 0.005542024038732052, -0.009752773679792881, -0.016343770548701286, -0.01571379229426384, 0.02869371697306633, 0.0037382659502327442, -0.03366222232580185, -0.005518251098692417, 0.019707616418600082, 0.03216454014182091, 0.010804718360304832, -0.04939978942275047, 0.023653892800211906, -0.008819692768156528, -0.048068515956401825, 0.009520988911390305, 0.029597083106637, -0.042695872485637665, -0.014715336263179779, -0.027932990342378616, -0.004454420413821936, 8.594409155193716e-05, 0.020527776330709457, 0.0038303853943943977, 0.038820911198854446, -0.00010261287388857454, -0.02973971888422966, 0.015844542533159256, -0.03893977403640747, 0.0037917548324912786, -0.004198863171041012, -0.03033403865993023, -0.020658526569604874, -0.014192336238920689, -0.01908952370285988, 0.032853949815034866, 0.0048734149895608425, 0.004864500369876623, -0.00261054583825171, 0.03159399330615997, 0.012094389647245407, 0.022001687437295914, -0.0013617331860587, 0.007690486963838339, -0.010501615703105927, -0.010257944464683533, 0.025722123682498932, 0.017425430938601494, 0.013835744932293892, 0.0026818641927093267, -0.022049231454730034, 0.002054857788607478, -0.0053934440948069096, 0.0020474286284297705, -0.01944611594080925, 0.008617624640464783, -0.015404746867716312, -0.010020216926932335, -0.0003393189690541476, 0.014715336263179779, -0.0075121913105249405, 0.02878880873322487, -0.004656488541513681, 0.0036788340657949448, -0.013978380709886551, -0.011256400495767593, -0.015547382645308971, -0.03948654979467392, 0.00739927077665925, -0.0563889779150486, 0.03939145803451538, -0.013265198096632957, 0.01607038453221321, -0.014655904844403267, 0.028313353657722473, -0.004941761959344149, -0.00033597592846490443, 0.019707616418600082, 0.009093079715967178, 0.002050400245934725, 0.007369554601609707, 0.00498633598908782, 0.022964483126997948, 0.01145846862345934, -0.03142758458852768, 0.02691076137125492, 0.019660070538520813, -0.007636998314410448, -0.033947497606277466, -0.004882330074906349, 0.037370774894952774, 0.034185223281383514, -0.006715803872793913, -0.0013060158817097545, -0.01541663333773613, -0.006127428263425827, -0.0298348106443882, 0.02422443963587284, 0.007280407007783651, 0.004739693365991116, 0.004246408585458994, 0.032901495695114136, -0.010876036249101162, 0.025674577802419662, 0.019731387495994568, 0.009877580218017101, -0.004929875489324331, 0.008159998804330826, -0.014049699530005455, -0.04730778560042381, 0.030571766197681427, 0.021847164258360863, 0.005702489987015724, 0.03903486579656601, -0.033305633813142776, -0.03223585709929466, 0.022144323214888573, 0.02422443963587284, 0.003993823193013668, 0.025793440639972687, -0.0331154502928257, 0.03273508697748184, -0.014929291792213917, -0.005949132610112429, 0.009853808209300041, 0.03515990823507309, 0.016973748803138733, 0.0032538960222154856, 0.01670036092400551, 0.013015584088861942, -0.03118985705077648, -0.025436850264668465, -0.029977446421980858, 0.021217186003923416, -0.04376564547419548, 0.013479153625667095, -0.0050130803138017654, -0.01666470244526863, -0.0007889583939686418, -0.020504003390669823, 0.0004899416817352176, -0.0036877489183098078, 0.0179603174328804, -0.0048615289852023125, 0.025674577802419662, -0.019671956077218056, -0.02764771692454815, -0.017045067623257637, -0.009960785508155823, -0.0016967805568128824, 0.05082615464925766, 0.009015818126499653, -0.0037947262171655893, -0.04445505514740944, 0.002395105315372348, -0.030999675393104553, -0.013764426112174988, -0.0063532693311572075, 0.02422443963587284, 0.025294212624430656, -0.002044457010924816, 0.004169147461652756, 0.032402269542217255, -0.010204455815255642, 0.00741115678101778, -0.008177828043699265, 0.033139221370220184, 0.007137770298868418, 0.005152745172381401, 0.017817681655287743, 0.007809350732713938, 0.0009642824297770858, -0.0252228956669569, -0.03042912855744362, 0.019909683614969254, -0.03542140871286392, 0.04673723876476288, 0.013740653172135353, 0.04628555849194527, 0.00589267211034894, 0.015404746867716312, -0.02352314256131649, -0.017270907759666443, 0.01566624641418457, 0.0019790821243077517, -0.012278628535568714, -0.007613225374370813, 0.003889817278832197, -5.3720857977168635e-05, -0.0031439471058547497, 0.010899809189140797, -0.01178534422069788, -0.04053255170583725, 0.011767514981329441, -0.03385240584611893, -0.01691431738436222, -0.002066744025796652, 0.013657448813319206, 0.012290515005588531, -0.025793440639972687, -0.016331883147358894, -0.03325808793306351, 0.02261977829039097, -0.0022168096620589495, -0.012849175371229649, 0.021906595677137375, -0.002904733642935753, -0.005660887807607651, -0.027980534359812737, -0.000595061806961894, -0.01690242998301983, -0.0007971302838996053, 0.017686931416392326, 0.0012785285944119096, -0.012825402431190014, -0.018816137686371803, 0.02422443963587284, 0.018828023225069046, -0.0014285941142588854, 0.012153821997344494, -0.024283871054649353, 0.01250447053462267, -0.0451444648206234, -0.0052121770568192005, -0.0015378001844510436, 0.007084281649440527, -0.05191970244050026, 0.03216454014182091, -0.014014040119946003, 0.024794984608888626, 0.013693108223378658, 0.02406991645693779, 0.01736599951982498, -0.010061819106340408, 0.004980392754077911, -0.03620591014623642, 0.006091768853366375, 0.012635220773518085, 0.02477121353149414, 0.03401881456375122, 0.008344237692654133, -0.053441159427165985, 0.020278161391615868, 0.027814125642180443, 0.023832188919186592, -0.015606814995408058, 0.012094389647245407, -0.00842744205147028, 0.009122795425355434, -0.015880201011896133, 0.0019939399790018797, -0.021502459421753883, 0.03601572662591934, -0.007619168609380722, -0.016593383625149727, 0.029264263808727264, -0.008944500237703323, -0.02455725707113743, 0.031023448333144188, -0.007631055079400539, 0.01238560676574707, 0.028218261897563934, 0.0003630917053669691, -0.019874025136232376, -0.013883289881050587, -0.0011143479496240616, -0.014750995673239231, 0.036134589463472366, -0.00194936606567353, 0.017187703400850296, 0.0008966786554083228, 0.021704526618123055, -0.02029004879295826, 0.04181627929210663, 0.003616430563852191, -0.012563901953399181, 0.05206233635544777, 0.004766437690705061, 0.0022866420913487673, -0.041602324694395065, -0.03708549961447716, 0.03893977403640747, 0.0010014274157583714, 0.020765503868460655, 0.016272451728582382, -0.018031636252999306, -0.020599093288183212, 0.019267819821834564, -0.017865227535367012, -0.029216717928647995, 0.003714493243023753, -0.016248678788542747, 0.005503393243998289, -0.0099964439868927, 0.0613812580704689, 0.013788199052214622, -0.030357809737324715, 0.005004165228456259, 0.03178417682647705, 0.013015584088861942, 0.034589361399412155, 0.02581721358001232, 0.03680022805929184, -0.0008981644641608, -0.007440872956067324, -0.01766315847635269, 0.020278161391615868, -0.03428031504154205, -0.015250223688781261, -0.02814694494009018, 0.009859750978648663, -0.05548561364412308, 0.010798774659633636, 0.050350699573755264, 0.004267209675163031, 0.02152623049914837, -0.007987646386027336, -0.01989779807627201, -0.008641397580504417, -0.009669569320976734, 0.04426487162709236, 0.03256867825984955, 0.011185082606971264, -0.018780477344989777, -0.009437784552574158, -0.023059574887156487, 0.01414479035884142, 0.04778324067592621, 0.004210749641060829, 0.002701179590076208, -0.005301324650645256, -0.04847265034914017, -0.016486406326293945, -0.07336273044347763, -0.0024367074947804213, -0.008659226819872856, 0.000803073460701853, -0.025175349786877632, 0.021550003439188004, 0.03275885805487633, 0.0018364455318078399], [0.03506628796458244, 0.01883462257683277, 0.020541280508041382, -0.015359917655587196, 0.01109941303730011, 0.042605046182870865, -0.008551704697310925, 0.050340257585048676, 0.06418997049331665, 0.02556302770972252, 0.007293198257684708, -0.025170128792524338, 0.000996061833575368, 0.05122428014874458, -0.02353714033961296, 0.011412505060434341, 0.0065933456644415855, 0.021167464554309845, -0.005755364894866943, 0.05348345264792442, 0.018527669832110405, 0.042040254920721054, -0.005046303849667311, -0.0009446471813134849, 0.006789795588701963, -0.023451192304491997, -0.007047635968774557, -0.015003852546215057, 0.04952990263700485, -0.0016959141939878464, 0.06369884312152863, -0.015237136743962765, 0.06094854697585106, -0.004463093355298042, 0.01898195967078209, -0.06600712984800339, -0.04059143736958504, 0.05608641356229782, 0.03103906661272049, 0.0007240248960442841, -0.02593137137591839, 0.026790838688611984, -0.02240755409002304, -0.042457710951566696, -0.04501155763864517, 0.0485476516187191, 0.022088322788476944, -0.0334455743432045, -0.02821510098874569, 0.07278464734554291, 0.008465757593512535, -0.0030296240001916885, 0.02202693186700344, 0.0026060291565954685, 0.0010167810833081603, 0.003729476360604167, -0.02482634223997593, 0.031137291342020035, 0.006323227193206549, -0.015703704208135605, 0.010902962647378445, -0.015936989337205887, 0.02218654751777649, 0.05490771308541298, -0.015445863828063011, -0.0068573253229260445, -0.02216199040412903, 0.005104624666273594, -0.008760432712733746, 0.021732257679104805, 0.016072047874331474, 0.008078997023403645, -0.02784675732254982, -0.02914823591709137, -0.02408965490758419, 0.03126007318496704, 0.016661398112773895, -0.0159615445882082, 0.06188168376684189, 0.033789362758398056, -0.017582256346940994, 0.04135267809033394, -0.037718359380960464, 0.08029884845018387, -0.016600007191300392, -0.010104885324835777, -0.030547941103577614, -0.019816871732473373, -0.024212436750531197, -0.026054153218865395, -0.00019817639258690178, -0.0069248550571501255, 0.02880444936454296, 0.06448464095592499, 0.031726639717817307, 0.011621232144534588, 0.02448255382478237, -0.02353714033961296, -0.08869707584381104, 0.06355150789022446, 0.024003708735108376, -0.007231807801872492, -0.01822071708738804, 0.025489360094070435, 0.032659776508808136, -0.046386703848838806, -0.06861008703708649, 0.03256155177950859, 0.035802971571683884, 0.010964353568851948, -0.015458142384886742, 0.005101555492728949, -0.03486983850598335, 0.048817772418260574, -0.002145600039511919, 0.011621232144534588, -0.010896824300289154, -0.021916428580880165, 0.0056540705263614655, -0.018183883279561996, -0.001199417980387807, -0.011940463446080685, 0.009233139455318451, -0.10205566138029099, -0.01748403161764145, -0.0060960822738707066, -0.048081085085868835, 0.0019476154120638967, -0.015138911083340645, -0.0019123158417642117, 0.005095416214317083, -0.029467467218637466, 0.061636120080947876, 0.008723597973585129, -0.01769275777041912, 0.001800278085283935, 0.004100889433175325, -0.004420120269060135, -0.005212058313190937, -0.053336117416620255, 0.023561695590615273, -0.03486983850598335, 0.004905105568468571, -0.014868793077766895, -0.022898677736520767, -0.010786321014165878, -0.005150667857378721, 0.03221776336431503, -0.06369884312152863, 0.027944982051849365, -0.05092960596084595, 0.010645122267305851, -0.0045705270022153854, -0.01279379241168499, -0.019092462956905365, 0.03484528139233589, 0.026790838688611984, 0.041671909391880035, -0.03155474737286568, 0.031358297914266586, 0.0039781080558896065, -0.0235125832259655, 0.0001204789659823291, -0.009730403311550617, 0.06394440680742264, -0.032438769936561584, -0.014930183999240398, -0.012904294766485691, -0.0779905617237091, -0.014512727968394756, 0.0028055484872311354, 0.0024648308753967285, -0.01655089482665062, 0.03747279569506645, 0.021511251106858253, -0.05436747893691063, -0.00912263710051775, 0.0005057047237642109, -0.009920714423060417, -0.03275800123810768, 0.010571453720331192, -0.011387948878109455, 0.004739351104944944, -0.005985579453408718, -0.04896510764956474, 0.04614114388823509, -0.011541425250470638, 0.017226191237568855, 0.00044930214062333107, 0.01748403161764145, 0.038676049560308456, -0.02482634223997593, 0.011590537615120411, 0.027601195499300957, -0.036785222589969635, -0.017631368711590767, -0.018515391275286674, -0.008913909085094929, -0.028902674093842506, 0.012327224016189575, -0.016096604987978935, -0.041279010474681854, 0.025685809552669525, 0.013125301338732243, 0.011252889409661293, 0.004309616982936859, 0.05318877846002579, 0.022149713709950447, 0.018908292055130005, 0.013788319192826748, 0.008852518163621426, -0.011731735430657864, -0.023573974147439003, 0.055988188832998276, -0.03211953863501549, -0.01355503499507904, 0.009619900025427341, 0.023365246132016182, -0.005239684134721756, 0.07111482322216034, -0.025464802980422974, -0.028902674093842506, -0.013604147359728813, -0.04896510764956474, -0.006126777734607458, -0.001651406055316329, 0.0009515536366961896, -0.0005195175763219595, -0.02504734694957733, -0.05338522791862488, -0.00040325921145267785, 0.031702082604169846, -0.026275157928466797, -0.035802971571683884, -0.012977964244782925, 0.04174558073282242, 0.020541280508041382, -0.006200446281582117, -0.0009032085654325783, -0.04162279888987541, -0.033961255103349686, 0.014291721396148205, -0.013579591177403927, 0.050880495458841324, 0.013334029354155064, -0.015175745822489262, -0.02706095762550831, -0.03157930448651314, 0.016280775889754295, 0.012486839666962624, 0.05348345264792442, -0.02311968430876732, 0.032291434705257416, -0.04218759015202522, 0.02278817445039749, 0.008668346330523491, 0.020762287080287933, -0.012456144206225872, 0.010737208649516106, -0.00968743022531271, -0.005043234210461378, -0.02315651811659336, 0.027552083134651184, -0.0054852464236319065, -0.023758145049214363, -0.0338875874876976, 0.02501051314175129, -0.027429301291704178, -0.011995715089142323, -0.006660875398665667, -0.05230475589632988, -0.0027902007568627596, -0.017962876707315445, -0.046558599919080734, -0.019129298627376556, -0.0008817219058983028, 0.035655636340379715, -0.004926592111587524, 0.025268353521823883, 0.033396463841199875, -0.05043848231434822, -0.021879594773054123, 0.028141431510448456, -0.019804593175649643, 0.012621898204088211, 0.004300408530980349, 0.04817930981516838, 0.022444387897849083, -0.03599942475557327, -0.02369675599038601, 0.045257117599248886, -0.010915241204202175, 0.008336837403476238, -0.02801864966750145, 0.013211248442530632, -0.0006162077188491821, -0.031898532062768936, -0.006372340023517609, 0.027159182354807854, -0.019804593175649643, 0.0013621030375361443, 0.047123391181230545, 0.011891351081430912, 0.014365390874445438, -0.026078708469867706, 0.06502487510442734, 0.05436747893691063, 0.0061912378296256065, -0.0428997203707695, -0.05657753720879555, -0.010510063730180264, 0.04540445655584335, -0.03457516059279442, -0.029639361426234245, -0.03391214460134506, -0.01865045167505741, -0.03747279569506645, 0.008619233965873718, 0.0044968584552407265, -0.006446008570492268, 0.06600712984800339, 0.001787999994121492, 0.022542612627148628, -0.009730403311550617, 0.011375670321285725, 0.03430504351854324, -0.04329262301325798, 0.036048535257577896, 0.004819158930331469, -0.017790984362363815, -0.030547941103577614, -0.019067907705903053, 0.010375004261732101, -0.013960212469100952, 0.014647787436842918, 0.04795830324292183, -0.011068717576563358, 0.025538472458720207, -0.030523385852575302, -0.0037509631365537643, 0.010135580785572529, 0.004177627619355917, -0.02654527686536312, 0.04867043346166611, -0.008717459626495838, 0.029074568301439285, 0.01992737501859665, 0.07013257592916489, 0.007446674630045891, 0.038823388516902924, -0.008140387944877148, 0.014954740181565285, 0.0005287262029014528, 0.05196096748113632, -0.02956569194793701, -0.04653404280543327, 0.05927872285246849, 0.025145571678876877, -0.06875742226839066, 0.01752086542546749, -0.0160229355096817, -0.011682623066008091, -0.022996902465820312, 0.04024764895439148, -0.011234471574425697, -0.01691923849284649, -0.035459186881780624, 0.011412505060434341, -0.004217531532049179, -0.04189291596412659, -0.005104624666273594, 0.03916717693209648, 0.07381600886583328, -0.040370430797338486, -0.03165297210216522, -0.008521009236574173, -0.006980106234550476, 0.029860367998480797, -0.019657256081700325, -0.03666244074702263, 0.0021901081781834364, 0.03818492591381073, 0.03784114122390747, 0.04022309184074402, 0.015924710780382156, 0.056331977248191833, -0.02504734694957733, -0.04046865552663803, -0.016059769317507744, 0.037718359380960464, -0.03216865286231041, 0.034354157745838165, 0.017336692661046982, -0.030179597437381744, 0.005123042035847902, 0.02504734694957733, 0.03428048640489578, 0.04660771042108536, -0.0023236325941979885, -0.027331076562404633, 0.0040916805155575275, -0.0402967631816864, -0.00968743022531271, -0.03850415721535683, -4.160649041295983e-05, -0.03462427482008934, 0.013088466599583626, -0.023426637053489685, 0.02260400354862213, 0.024887731298804283, 0.03612220287322998, 0.018147049471735954, 0.03626954182982445, 0.039412736892700195, 0.015642313286662102, 0.03405947983264923, -0.00036412273766472936, 0.027159182354807854, -0.001651406055316329, -0.004456954542547464, 0.014979296363890171, 0.014070715755224228, -0.00441398099064827, 0.06296215951442719, -0.00737914489582181, -0.005819824989885092, 0.030621610581874847, -0.02035710960626602, -0.018134770914912224, -0.02838699333369732, -0.022149713709950447, 0.02486317604780197, 0.05205919221043587, 0.0406159944832325, -0.03874972090125084, 0.016624562442302704, -0.006722265854477882, -0.036785222589969635, -0.007403701078146696, -0.011400226503610611, -0.007569455541670322, -0.04496244341135025, 0.0009369733743369579, -0.003275186289101839, 0.024703560397028923, 0.005847450811415911, -0.028067762032151222, 0.032070428133010864, -0.012965685687959194, -0.010442533530294895, -0.04100889340043068, 0.06345327943563461, -0.07474914193153381, 0.012818348594009876, -0.0334455743432045, -0.01120377704501152, -0.03963374346494675, 0.002728810301050544, 0.017999712377786636, -0.0272574070841074, 0.012683289125561714, 0.034329600632190704, 0.025268353521823883, 0.008398228324949741, 0.008742015808820724, 0.060310084372758865, -0.00046963777276687324, -0.018945125862956047, -0.01016627624630928, -0.0586402602493763, -0.026962732896208763, -0.0027794574853032827, -0.01690695993602276, -0.001956823980435729, 0.07312843203544617, -0.011744013987481594, -0.014340834692120552, 0.00681435177102685, -0.008889352902770042, 0.03211953863501549, -0.0008187965722754598, 0.0062925321981310844, -0.009920714423060417, -0.020762287080287933, -0.01636672206223011, 0.013861987739801407, 0.04422575607895851, -0.054269254207611084, -0.038283150643110275, -0.013211248442530632, -0.06418997049331665, -0.007231807801872492, 0.03307723253965378, -0.011952742002904415, -0.010172415524721146, -0.03762013465166092, -0.018552226945757866, 0.0035391657147556543, 0.0395355187356472, -0.0406159944832325, 0.0529923290014267, -0.035680193454027176, -0.0023082848638296127, -0.05431836470961571, 0.03607309237122536, -0.012634176760911942, -0.008269308134913445, 7.697800174355507e-05, 0.01447589322924614, -0.01841716654598713, -0.05471126362681389, 0.0017081922851502895, 0.0015347639564424753, 0.009890018962323666, -5.856083589605987e-05, -0.013972491025924683, 0.016612285748124123, 0.0002827802672982216, -0.006221932824701071, -0.001255436916835606, 0.02934468723833561, 0.007508065085858107, -0.010780181735754013, -0.009337503463029861, -0.04464321210980415, 0.023794980719685555, 0.0031078970059752464, -0.0606047585606575, -0.008300003595650196, -0.011793126352131367, -0.02424927055835724, -0.04857220873236656, -0.03447693586349487, -0.02466672658920288, -0.010362725704908371, -0.016121160238981247, 0.02561214007437229, 0.017582256346940994, 0.01807337999343872, -0.003262908197939396, 0.003548374166712165, 0.007397562265396118, 0.00560188852250576, 0.01617027260363102, 0.020725451409816742, 0.030989954248070717, 0.04427487030625343, 0.02331613376736641, -0.0077659054659307, 0.0006181261851452291, -0.0024172530975192785, 0.007937799207866192, 0.005021747667342424, -0.006660875398665667, -0.008177222684025764, 0.024703560397028923, 0.021020127460360527, 0.045797355473041534, -0.0008640721207484603, 0.021363914012908936, 0.0038062145467847586, 0.005218197591602802, 0.0005049373139627278, -0.003548374166712165, -0.003293603425845504, 0.014709177426993847, -0.0028178265783935785, -0.016514059156179428, -0.00209495285525918, -0.023794980719685555, -0.018515391275286674, 0.018171604722738266, 0.011909767985343933, -0.051617179065942764, 0.07686097919940948, 0.004607361275702715, -0.015642313286662102, -0.0248140636831522, 0.010485507547855377, -0.016305333003401756, 0.015703704208135605, 0.02330385521054268, 0.035631079226732254, 0.000633473799098283, -0.008066719397902489, -0.005267309956252575, 0.011418643407523632, -0.043390847742557526, -0.02255489118397236, 0.07023079693317413, -0.03194764629006386, -0.03651510179042816, 0.008066719397902489, 0.00258914683945477, 0.009932992048561573, 0.028902674093842506, -0.010847711935639381, 0.031309183686971664, -0.02257944643497467, 0.04250682145357132, 0.03310178965330124, -0.024777229875326157, -0.03175119683146477, 0.006384618114680052, -0.06173434481024742, 0.003204587148502469, -0.016808735206723213, -0.0005559682613238692, 0.008244751952588558, 0.011971158906817436, 0.01804882474243641, -0.0023190283682197332, -0.008913909085094929, -0.017238467931747437, -0.05790357291698456, -0.02013610303401947, -0.018208438530564308, -0.04174558073282242, 0.0008625373593531549, -0.023647643625736237, 0.02201465331017971, -0.005420786328613758, 0.002226942451670766, 0.021904150024056435, -0.008502592332661152, 0.0059825098142027855, -0.0069248550571501255, -0.05245209112763405, 0.04255593568086624, -0.004269713070243597, 0.03747279569506645, 0.040173981338739395, -0.008987577632069588, -0.009380477480590343, -0.034133151173591614, 0.019816871732473373, 0.029123680666089058, -0.0047577680088579655, 0.003861465957015753, -0.005838241893798113, 0.033617470413446426, 0.025342023000121117, -0.011038022115826607, -0.03398581221699715, 0.03506628796458244, 0.04292427748441696, 0.026422496885061264, 0.0056939744390547276, 0.03852871432900429, -0.025464802980422974, 0.0008095880039036274, 0.011498451232910156, -0.020086990669369698, -0.03425592929124832, 0.0028485218062996864, -0.006347783841192722, 0.030376048758625984, 0.0545148141682148, -0.014561840333044529, 0.018932847306132317, -0.04022309184074402, 0.011074856854975224, 0.0074221184477210045, -0.003968899603933096, 0.03317545726895332, 0.006795934867113829, 0.034894391894340515, 0.02390548400580883, -0.05122428014874458, 0.00606231763958931, 0.0011641184100881219, 0.007170417346060276, -0.009448006749153137, 0.005445342510938644, 0.005939536262303591, -0.04361185058951378, -0.01750858686864376, 0.033961255103349686, -0.027011845260858536, 0.027036402374505997, -0.03148107975721359, -0.04022309184074402, -0.014586396515369415, 0.031505633145570755, 0.018920570611953735, -0.01101346593350172, -0.008514869958162308, -0.03253699466586113, 0.0039105783216655254, 0.012173747643828392, 0.0038921614177525043, 0.012977964244782925, -0.015924710780382156, -0.007090609520673752, -0.0015339965466409922, 0.01691923849284649, -0.009288391098380089, -0.004060985520482063, -0.003361132927238941, 0.010706513188779354, 0.0013191296020522714, 0.006059248000383377, -0.06870831549167633, -0.042236704379320145, -0.01127744559198618, -0.009576926939189434, -0.021584920585155487, -0.007587872911244631, 0.029786698520183563, 0.01841716654598713, -0.0029774419963359833, -0.005657139699906111, -0.027994094416499138, -0.02617693319916725, 0.004097819793969393, 0.05544795095920563, -0.001964497845619917, 0.02255489118397236, 0.0007831132970750332, -0.014881070703268051, -0.013370863161981106, 0.04248226433992386, -0.008066719397902489, 0.015544089488685131, 0.025096459314227104, -0.006900298874825239, -0.002771783620119095, 0.030916284769773483, -0.04739351198077202, 0.07361955940723419, 0.06099765747785568, -0.04142634943127632, -0.009656734764575958, 0.021940985694527626, -0.030989954248070717, 0.04068966209888458, -0.008969160728156567, 0.01860133931040764, 0.005816755350679159, -0.008643790148198605, 0.05441658943891525, -0.03398581221699715, 0.01881006732583046, -0.05358167737722397, 0.026373382657766342, -0.020725451409816742, 0.000492275517899543, 0.024384329095482826, -0.019301190972328186, 0.0003712210163939744, -0.04368552193045616, 0.00885865744203329, -0.019509918987751007, -0.01136953104287386, 0.014144384302198887, -0.036023978143930435, 0.005064721219241619, 0.021732257679104805, 0.009705847129225731, -0.0025876120198518038, 0.00244794855825603, 0.011406365782022476, 0.022284772247076035, 0.006685431580990553, -0.007084470242261887, -0.01355503499507904, -0.04756540432572365, -0.021388471126556396, -0.0038246316835284233, -0.039781082421541214, -0.018318941816687584, 0.016047492623329163, 0.001807951950468123, 0.011799264699220657, -0.013874266296625137, -0.00977951567620039, -0.04383285716176033, -0.007913243025541306, -0.03165297210216522, -0.009104219265282154, 0.02498595602810383, -0.01127744559198618, -0.014881070703268051, 0.006679292768239975, -0.006258767563849688, -0.0042605046182870865, 0.05790357291698456, -0.005098485853523016, 0.013542757369577885, 0.02089734561741352, 0.012554368935525417, -0.053876351565122604, -0.0015286249108612537, 0.013297194615006447, -0.008625373244285583, -0.024384329095482826, 0.013861987739801407, -0.014168940484523773, -0.0072133904322981834, -0.01006191223859787, -0.012007992714643478, 0.0038369097746908665, -0.015188024379312992, 0.0338875874876976, 0.007176556158810854, -0.006378478836268187, -0.05102783069014549, 0.012830626219511032, -0.01973092555999756, -0.007612429093569517, 0.0021747604478150606, 0.028116876259446144, -0.010043495334684849, 0.012431588023900986, 0.04331717640161514, -0.02222338132560253, -0.03590119630098343, 0.0219900980591774, -0.02159719727933407, -0.013530478812754154, 0.02052900195121765, -0.0439801961183548, 0.04859676584601402, 0.017005184665322304, 0.0028577304910868406, -0.031088178977370262, -0.03157930448651314, -0.008674485608935356, -0.001384357106871903, 0.0067836567759513855, 0.010902962647378445, 0.0009546231594868004, 0.03570474684238434, 0.014574117958545685, -0.028657112270593643, 0.050536707043647766, -0.04992280155420303, 0.027895869687199593, 0.024691281840205193, 0.012443865649402142, 0.03238965943455696, -0.02127796784043312, 0.006703848950564861, 0.01844172365963459, -0.031726639717817307, 0.007403701078146696, 0.00010158219083677977, -0.025906816124916077, -0.020614949986338615, 0.019288912415504456, -0.00023692917602602392, 0.005301074590533972, -0.002340514911338687, -0.02951657958328724, 0.009853184223175049, -0.005070860031992197, -0.010952075012028217, -0.011897490359842777, -0.032291434705257416, -0.003490053117275238, -0.021965540945529938, -0.01658772863447666, -0.013370863161981106, -0.0044753714464604855, 0.013616425916552544, 0.012585064396262169, 0.026987290009856224, 0.04174558073282242, -0.007716793101280928, -0.02688906341791153, 0.04535534232854843, -0.005727739073336124, -0.0039044395089149475, -0.005537428427487612, -0.010596009902656078, -0.019276635721325874, -0.005893493536859751, 0.022714506834745407, -0.041328124701976776, -0.006396896205842495, -0.0027057889383286238, 0.0023942317347973585, 0.0068573253229260445, -0.017999712377786636, 0.0029544206336140633, -0.007102887611836195, -0.0032322127372026443, 0.04491333290934563, 0.027895869687199593, -0.023021459579467773, 0.011351114138960838, -4.592301411321387e-05, 0.004242087714374065, 0.009619900025427341, 0.0016176411882042885, -0.008312281221151352, 0.0026919760275632143, -0.012769236229360104, 0.014893349260091782, 0.03892161324620247, -0.03683433309197426, -0.006470564752817154, -0.04869499057531357, 0.009398894384503365, 0.015126633457839489, 0.007059914059937, -0.0178646519780159, -0.019595865160226822, -0.01731213741004467, 0.03430504351854324, 0.04005119949579239, -0.01898195967078209, -0.03332279622554779, -0.0060285525396466255, 0.03180030733346939, 0.008993716910481453, -0.01448817178606987, 0.010503924451768398, 0.04275238513946533, -0.01306391041725874, -0.019841428846120834, 0.03558196872472763, -0.03310178965330124, -0.014365390874445438, -0.012327224016189575, -0.01335858553647995, -0.0019430111860856414, -0.019485363736748695, 0.009748820215463638, -0.009202444925904274, 0.010632844641804695, 0.06075209751725197, -0.01787693053483963, 0.031112734228372574, -0.001603828277438879, 0.021744536235928535, -0.0077781835570931435, 0.0032168652396649122, 0.021584920585155487, 0.024789506569504738, 0.014525005593895912, 0.03626954182982445, -0.0009546231594868004, -0.01639127917587757, 0.015482698567211628, 0.017177078872919083, 0.012904294766485691, -0.0010520806536078453, 0.010976632125675678, -0.005730808712542057, 0.025734921917319298, -0.03521362319588661, 0.009607622399926186, 0.012756957672536373, -0.019338024780154228, 0.0021394609939306974, 0.022702228277921677, 0.006022413726896048, 0.015642313286662102, 0.036490548402071, -0.02035710960626602, 0.020639505237340927, 0.0295411366969347, -0.03044971637427807, 0.037914808839559555, 0.025440247729420662, -0.018011989071965218, -0.003738685045391321, -0.004917383659631014, 0.010859989561140537, -0.026373382657766342, 0.007127443794161081, 0.053336117416620255, 0.035852085798978806, 0.0010490111308172345, -0.006221932824701071, -0.014218052849173546, -0.0005402368842624128, 0.01841716654598713, 0.016121160238981247, 0.030179597437381744, 0.01016627624630928, 0.024126488715410233, 0.022530334070324898, 0.012621898204088211, 0.025317465886473656, 0.01691923849284649, 0.00977951567620039, 0.001337546738795936, 0.015188024379312992, -0.015642313286662102, 0.007109026424586773, -0.010724930092692375, 0.01560547947883606, -0.018576782196760178, 0.012179886922240257, 0.03327368199825287, 0.010282918810844421, 0.007299337070435286, -0.024052821099758148, 0.01578965224325657, -0.014647787436842918, -0.019104741513729095, -0.0063109491020441055, -0.021584920585155487, 0.02184276096522808, -0.008600817061960697, 0.01750858686864376, -0.020835954695940018, -0.011498451232910156, -0.0018831553170457482, -0.021498972550034523, -0.031088178977370262, -0.005227406043559313, -0.0013352446258068085, 0.006550372578203678, 0.036957114934921265, -0.03369113802909851, -0.0014043089468032122, 0.034329600632190704, -0.006722265854477882, 0.010632844641804695, 0.010276779532432556, 0.033371906727552414, 0.03251243755221367, 0.026864508166909218, 0.023930039256811142, 0.011523007415235043, 0.015679148957133293, -0.010632844641804695, 0.03273344412446022, -0.04005119949579239, -0.002216199180111289, 0.009282252751290798, 0.013113022781908512, 0.016035214066505432, -0.03673610836267471, -0.004122375976294279, -0.008023746311664581, 0.003219934646040201, 0.0006768308812752366, -0.014893349260091782, -0.029393799602985382, 0.00041975794010795653, -0.001306084101088345, -0.0059364670887589455, -0.00013668990868609399, 0.005740017164498568, 0.013726928271353245, -0.020099269226193428, -0.014721455983817577, 0.013788319192826748, -0.04100889340043068, -0.013100745156407356, -0.012327224016189575, -0.006083804182708263, 0.003141661873087287, -0.007722931914031506, 0.015887876972556114, 0.009853184223175049, -0.008821822702884674, -0.002145600039511919, 0.016207106411457062, 0.0005770712159574032, 0.04817930981516838, -0.023070571944117546, -0.026815395802259445, -0.008422784507274628, 0.03199675679206848, 0.005052442662417889, 0.009828628040850163, 0.031112734228372574, -0.004324964713305235, 0.023181075230240822, 0.008680624887347221, -0.006003996357321739, -0.032463327050209045, -0.027920424938201904, 0.010663540102541447, 0.021891873329877853, -0.011173081584274769, 0.017213912680745125, 0.038676049560308456, -0.011707179248332977, -0.038847945630550385, -0.006949411239475012, -0.01044867280870676, 0.0008686764049343765, 0.015765095129609108, -0.005448412150144577, 0.01383743155747652, 0.04557634890079498, -0.00836753286421299, 0.021388471126556396, 0.009276113472878933, 0.006519677117466927, 0.020725451409816742, 0.041450902819633484, 0.015114354901015759, 0.03258610889315605, 0.07185150682926178, 0.01533536147326231, 0.015507254749536514, -0.03533640503883362, 0.019497640430927277, -0.014218052849173546, -0.021781370043754578, -0.023365246132016182, -0.011437061242759228, -0.04122989997267723, -0.01619482971727848, 0.008017607033252716, 0.02674172632396221, -0.003074132138863206, -0.0044017028994858265, -0.014893349260091782, 0.009085802361369133, 0.008870935998857021, -0.011080995202064514, -0.017594533041119576, -0.010264500975608826, 0.03126007318496704, -0.023402079939842224, 0.004306547809392214, -0.006845047231763601, 0.02956569194793701, -0.01750858686864376, 0.041450902819633484, 0.02841155044734478, -0.01477056834846735, -0.003919787239283323, -0.012818348594009876, 0.011461617425084114, -0.0026919760275632143, -0.023242464289069176, -0.01747175306081772, -0.0019476154120638967, -0.028460662811994553, -0.011498451232910156, 0.024949122220277786, -0.015703704208135605, -0.012210581451654434, -0.010491645894944668, 0.009711986407637596, -0.003058784641325474, -0.0059763710014522076, -0.041303567588329315, 0.06089943274855614, 0.002348188776522875, -0.011148525401949883, 0.004291200079023838, 0.014991573989391327, 0.026422496885061264, 0.03194764629006386, -0.0023328412789851427, 0.048449426889419556, 0.0493088960647583, -0.0009415776585228741, 0.027527526021003723, 0.0421384796500206, 0.0027656445745378733, -0.008588539436459541, -0.003447079798206687, 0.00394434342160821, -0.026938175782561302, 0.026643501594662666, -0.03870060667395592, -0.017078852280974388, -0.010841572657227516, 0.013039354234933853, 0.012308807112276554, 0.004579735454171896, -0.014303999952971935, -0.03121095895767212, 0.0023558626417070627, -0.0477864108979702, 0.007538760546594858, -0.0013221991248428822, 0.02615237794816494, 0.002035096986219287, 0.010196971707046032, 0.02595592848956585, -0.03816036880016327, -0.02391776069998741, -0.013653259724378586, 0.037006229162216187, -0.005264240317046642, -0.01617027260363102, -0.015851041302084923, -0.010417977347970009, -0.004125445615500212, -0.024961400777101517, 0.002771783620119095, -0.023586252704262733, -0.00856398232281208, -0.0014480497920885682, -0.03987930715084076, -0.007931659929454327, -0.011633510701358318, 0.009785654954612255, 0.0041929748840630054, 0.00876657199114561, 0.020565837621688843, -0.005865867715328932, 0.015237136743962765, -0.01826982945203781, -0.018343498930335045, -0.004782324656844139, -0.0035391657147556543, -0.038062144070863724, -0.02350030466914177, 0.023782702162861824, -0.020099269226193428, -0.020430777221918106, -0.030572498217225075, -0.04668138176202774, 0.010829294100403786, 0.022063765674829483, 0.028067762032151222, 0.021548084914684296, 0.006789795588701963, -0.02464216947555542, -0.017422640696167946, -0.027944982051849365, 0.03010592982172966, -0.0019660326652228832, -0.03506628796458244, -0.033003564924001694, -0.020750008523464203, -0.014009324833750725, 0.055939074605703354, -0.0054637594148516655, -0.005153737496584654, -0.0267171710729599, 0.03261066600680351, 0.007594012189656496, 0.002791735576465726, -0.007428257260471582, 0.010841572657227516, 0.017164800316095352, -0.0334455743432045, 0.0014618627028539777, 0.03010592982172966, 0.0017496309010311961, -0.01728758029639721, 0.00011856051423819736, 0.006759100593626499, -0.0071397218853235245, -0.0034255930222570896, -0.020393943414092064, 0.029074568301439285, -0.02804320678114891, -0.006568789482116699, -0.0043740770779550076, 0.028067762032151222, -0.022628558799624443, -0.021142907440662384, -0.015887876972556114, -0.017422640696167946, 0.010037356056272984, -0.022653115913271904, -0.005715460982173681, -0.02654527686536312, -0.002681232523173094, -0.021523529663681984, 0.015359917655587196, -0.015138911083340645, 0.03440326824784279, -0.02617693319916725, 0.03418226167559624, -0.0021901081781834364, -0.022272493690252304, 0.0005567356129176915, -0.0007704515010118484, -0.009533953852951527, 0.011639649979770184, 0.020234327763319016, 0.007655402645468712, 0.02765030786395073, -0.0025507777463644743, 0.024764951318502426, 0.012554368935525417, -0.004840645473450422, -0.011670345440506935, -0.011252889409661293, 0.03477161005139351, 0.03067072294652462, -0.012100079096853733, 0.016231663525104523, 0.003058784641325474, 0.0013513596495613456, -0.010510063730180264, 0.00027529828366823494, -0.02367219887673855, -0.02730651944875717, 0.00039481802377849817, 0.04142634943127632, -0.020418498665094376, 0.013518201187252998, 0.0004408609529491514, 0.009822488762438297, 0.006200446281582117, -0.01807337999343872, -0.006003996357321739, -0.03202131390571594, 0.0178646519780159, -0.021376192569732666, 0.01392337866127491, 0.030965397134423256, 0.0008103553554974496, -0.016317609697580338, -0.00799918919801712, 0.03253699466586113, 0.03067072294652462, -0.01806110143661499, -0.009773376397788525, 0.003965829964727163, -0.00723794661462307, -0.019522197544574738, 0.017459474503993988, 0.02669261395931244, -0.04464321210980415, 0.019853705540299416, 0.0029943245463073254, 0.0272574070841074, -0.04813019558787346, -0.021535808220505714, -0.00882796198129654, 0.014746012166142464, -0.045821912586688995, -0.008680624887347221, -0.01025836169719696, -0.0295411366969347, 0.014807402156293392, -0.017938321456313133, -0.009920714423060417, 0.025710364803671837, 0.011621232144534588, -0.01306391041725874, 0.02730651944875717, -0.04265416041016579, -0.006973967421799898, -0.007913243025541306, -0.014782845973968506, 0.03651510179042816, 0.03914261981844902, -0.001250832574442029, -0.0011541424319148064, -0.03423137590289116, -0.006759100593626499, -0.01937486045062542, -0.022542612627148628, -0.028239656239748, 0.03447693586349487, 0.012744680047035217, 0.004122375976294279, -0.00225917249917984, 0.028288768604397774, 0.017913764342665672, -0.014831958338618279, -0.012523673474788666, 0.0447414368391037, -0.01862589456140995, 0.01975548081099987, 0.005614166613668203, -0.011283584870398045, -0.03570474684238434, -0.003975038416683674, -0.02049216814339161, 0.012597342021763325, -0.04068966209888458, -0.001792604336515069, 0.03351924568414688, 0.003919787239283323, 0.004530623089522123, 0.014868793077766895, -0.00649512093514204, -0.013395419344305992, 0.00331815960817039, 0.02070089615881443, -0.03121095895767212, -0.01861361786723137, 0.002369675552472472, -0.01653861626982689, 0.008551704697310925, -0.0035514438059180975, -0.0017158660339191556, -0.036957114934921265, 0.0063539226539433, -0.039805635809898376, -0.03958463296294212, 0.005611096974462271, 0.01505296491086483, -0.0025246867444366217, -0.004902035929262638, -0.01563003659248352, -0.029271017760038376, 0.008091275580227375, 0.01563003659248352, -0.011197637766599655, 0.027331076562404633, 0.03933906927704811, -0.02050444670021534, -0.012965685687959194, -0.00930066965520382, -0.004389424808323383, -0.005282657686620951, 0.018539948388934135, -0.003993455786257982, 0.037521909922361374, -0.0022484292276203632, 0.022518057376146317, 0.04064054787158966, -0.027699420228600502, 0.0045429011806845665, -0.01709113083779812, -0.012597342021763325, -0.0519118569791317, -0.015703704208135605, 0.0025446387007832527, -0.0058873542584478855, -0.04454498738050461, 0.02034483104944229, -0.03288078308105469, 0.006630180403590202, 0.014574117958545685, 0.028657112270593643, 0.0024141836911439896, 0.01769275777041912, -0.0029068428557366133, -0.026201490312814713, 0.003858396550640464, 0.026226045563817024, 0.04425031319260597, 0.03391214460134506, 0.00781501829624176, -0.04314528405666351, 0.037890251725912094, 0.015003852546215057, 0.017373528331518173, 0.010761764831840992, 0.026029596105217934, -0.004533692728728056, -0.008017607033252716, -0.012063244357705116, -0.03951096162199974, 0.0035667913034558296, 0.004456954542547464, 0.013960212469100952, -0.00011779313354054466, 0.010325891897082329, -0.01419349666684866, 0.022444387897849083, 0.034722499549388885, 0.0013321751030161977, 0.014831958338618279, -0.0017327484674751759, -0.024187879636883736, -0.012904294766485691, -0.004788463469594717, -0.0024034404195845127, -0.0030066026374697685, 0.05436747893691063, -0.007833435200154781, 0.004441606812179089, 0.01533536147326231, 0.03486983850598335, 0.003560652257874608, 0.021216576918959618, 0.011731735430657864, -0.00232977163977921, 0.009644456207752228, 0.020946457982063293, -0.00012230149877723306, 0.003686503041535616, -0.041843805462121964, -0.0015746677527204156, -0.0017465613782405853, 0.013972491025924683, 0.031898532062768936, -0.049235228449106216, -0.02313196286559105, 0.024777229875326157, -0.011314279399812222, -0.025685809552669525, 0.014647787436842918, -0.042040254920721054, 0.0025661252439022064, -0.02144986018538475, 0.014365390874445438, 0.03499261662364006, 0.010295196436345577, 0.005436134058982134, 0.02388092689216137, -0.002289867727085948, 0.025071904063224792, 0.01731213741004467, 0.020086990669369698, 0.023107405751943588, -0.018552226945757866, 0.017042018473148346, 0.05009469389915466, -0.030204154551029205, -0.012646454386413097, -0.03749735280871391, -0.01695607230067253, -0.026397939771413803, 0.007305476348847151, 0.03798847645521164, 0.011375670321285725, 0.0216094758361578, -0.010829294100403786, -0.04248226433992386, -0.013493645004928112, 0.0006645527901127934, 0.05294321849942207, -0.003729476360604167, 0.013469087891280651, -0.020418498665094376, -0.002922190586104989, -0.01770503632724285, 0.02162175439298153, 0.035655636340379715, 0.0065749287605285645, 0.02144986018538475, 0.015765095129609108, 0.004874410107731819, -0.030965397134423256, -0.06355150789022446, 0.01729985885322094, -0.020823678001761436, -0.005500594154000282, -0.023794980719685555, 0.0244334414601326, 0.021719979122281075, -0.003861465957015753], [0.023556988686323166, 0.033277347683906555, 0.03335173800587654, -0.011809490621089935, 0.006447175983339548, 0.03208709880709648, -0.02144925855100155, 0.03759199380874634, 0.05643758550286293, 0.005827255081385374, -0.012807562947273254, -0.012733172625303268, -0.01362585835158825, 0.028813917189836502, -0.00349015393294394, 0.04277453199028969, 0.01934152841567993, 0.026359030976891518, -0.018027296289801598, 0.012615387327969074, 0.031764738261699677, 0.04453510791063309, 0.011146175675094128, -0.004990362096577883, -0.02400333248078823, -0.005941940471529961, -0.008455718867480755, -0.03850947692990303, 0.039302974939346313, -0.03746801242232323, 0.08812793344259262, -0.0038993016351014376, 0.060305893421173096, 0.0066331522539258, 0.025416752323508263, -0.04723796248435974, -0.039079803973436356, 0.017878515645861626, 0.04304729774594307, 0.0020116427913308144, -0.04738674312829971, -0.0002958184340968728, -0.009813345968723297, -0.051329437643289566, -0.04039403796195984, 0.0679929107427597, -0.010761824436485767, -0.026830170303583145, -0.025354759767651558, 0.05445383861660957, 0.010272087529301643, 0.0022813084069639444, 0.013055531308054924, 0.0060287294909358025, -0.006986507214605808, 0.027350904420018196, -0.030847257003188133, 0.028714729472994804, 0.006992706097662449, -0.02411491796374321, 0.009373201988637447, 0.0019434515852481127, -0.012956343591213226, 0.03905500844120979, -0.019750675186514854, 0.008871066384017467, 0.0006249576108530164, 0.01981266774237156, -0.02463565208017826, 0.018659615889191628, 0.00425885571166873, -0.005557589698582888, 0.0037288235034793615, -0.030971242114901543, -0.017990101128816605, 0.027474887669086456, -0.005588585510849953, -0.016576681286096573, 0.05718149244785309, 0.010402270592749119, -0.022689100354909897, 0.02335861511528492, -0.025912687182426453, 0.09125233441591263, -0.030772866681218147, -0.01968868263065815, -0.033773284405469894, -0.022044382989406586, -0.02586309425532818, -0.006289096083492041, 0.0018101686146110296, -0.028764324262738228, 0.026954155415296555, 0.06333110481500626, 0.02854115143418312, -0.02158564142882824, 0.025354759767651558, -0.019118355587124825, -0.060801830142736435, 0.0611489862203598, 0.025838296860456467, -0.00019779347348958254, -0.006180610042065382, 0.02359418384730816, 0.02968180552124977, -0.06511647999286652, -0.044510312378406525, 0.005074051674455404, 0.03714565187692642, 0.02044498734176159, -0.04138591140508652, -0.002670308807864785, 0.004137970972806215, 0.05088309571146965, -0.0195894967764616, 0.009769950993359089, -0.011034589260816574, -0.028070012107491493, -0.001434341655112803, -0.011127578094601631, 0.019849862903356552, 0.012224837206304073, -0.016613876447081566, -0.10236131399869919, -0.030004164204001427, 0.018833192065358162, -0.055743277072906494, 0.008114762604236603, -0.0033692694269120693, -0.017890913411974907, 0.017023025080561638, -0.019998643547296524, 0.044138357043266296, 0.003930297680199146, -0.008623098023235798, -0.008009376004338264, -0.021188892424106598, 0.019651487469673157, -0.009583975188434124, -0.05445383861660957, 0.033649299293756485, -0.0032359864562749863, 0.00624570157378912, -0.047163572162389755, -0.06561241298913956, -0.007984579540789127, 0.004748593084514141, 0.03459157794713974, -0.05822295695543289, 0.03645133972167969, -0.04453510791063309, 0.014493747614324093, -0.01470452081412077, -0.025317564606666565, 0.010786620900034904, -0.017196601256728172, 0.028491558507084846, 0.05227172002196312, -0.0363769493997097, 0.0033289745915681124, 0.04877536743879318, -0.01971348002552986, -0.0009430544450879097, -0.022825483232736588, 0.027226919308304787, 0.01629151776432991, -0.004698999226093292, -0.017233796417713165, -0.0661083534359932, -0.03005375899374485, -0.012479005381464958, 0.010706031695008278, -0.006010131910443306, 0.026061469689011574, -0.004723796155303717, -0.04272494092583656, -0.003707126248627901, -0.017481764778494835, 0.00287333270534873, -0.026086265221238136, 0.024772033095359802, -0.03974932059645653, 0.0024874319788068533, -0.0509822852909565, -0.05514815077185631, 0.06913356482982635, -0.013055531308054924, 0.006812929175794125, 0.01918034814298153, -0.012956343591213226, 0.027747653424739838, 0.004748593084514141, -0.0038962019607424736, 0.036823295056819916, -0.02135007083415985, 0.02283788099884987, -0.006912116426974535, -0.005783860571682453, -0.036178577691316605, 0.03583142161369324, 0.01830006018280983, -0.03828630596399307, 0.03999728709459305, 0.010569648817181587, -0.015584807842969894, -0.010427067056298256, 0.05529693141579628, 0.03382287546992302, 0.01794050633907318, 0.03640174865722656, 0.013923420570790768, 0.005154641345143318, -0.04064200446009636, 0.059413205832242966, -0.02814440242946148, -0.01192727591842413, -0.003626536577939987, 0.0404188334941864, -0.00022123422240838408, 0.0657116025686264, -0.003651333274319768, -0.012733172625303268, 0.013700248673558235, -0.05142862722277641, -0.01971348002552986, 0.016725461930036545, -0.0033103767782449722, -0.014630130492150784, -0.012503801845014095, -0.06769534945487976, 0.00015343038830906153, 0.021288078278303146, 0.013948217034339905, -0.0351371094584465, 0.003666831413283944, 0.03092164732515812, 0.01223723590373993, -0.01407220121473074, -0.012324024923145771, -0.02789643406867981, -0.03245905041694641, -0.0012266682460904121, -0.00877187866717577, 0.010811418294906616, 0.020271409302949905, 0.001390947261825204, -0.03193831816315651, -0.031516771763563156, 0.0004874127043876797, -0.009075639769434929, 0.0325334407389164, -0.020110229030251503, 0.009900134988129139, -0.042625751346349716, 0.005511095747351646, 0.01420858409255743, 0.015175660140812397, 0.006651749834418297, 0.051081471145153046, -0.010464262217283249, 0.005424306727945805, -0.0034095642622560263, 0.006465773563832045, -0.003524249652400613, -0.025280369445681572, -0.04183225333690643, 0.04098916053771973, -0.04914731904864311, 0.010941601358354092, 0.007060897536575794, -0.07022462785243988, 0.02410252019762993, -0.018014896661043167, -0.06209126487374306, -0.026185452938079834, -0.0035893411841243505, 0.0009934230474755168, -0.015832776203751564, 0.0024719340726733208, 0.03312856703996658, -0.033252548426389694, -7.28891245671548e-05, 0.023135442286729813, -0.010278286412358284, 0.012516200542449951, -0.0010368174407631159, 0.02965700998902321, 0.030152946710586548, -0.02182121016085148, -0.013898623175919056, 0.04443592205643654, 0.016055947169661522, 0.005132943857461214, -0.03841029107570648, 0.02638382837176323, -0.019242340698838234, -0.03178953751921654, -0.025565532967448235, 0.028243590146303177, 0.004872577264904976, 0.008604500442743301, 0.018275264650583267, 0.012782766483724117, 0.04183225333690643, -0.03412044048309326, 0.07176202535629272, 0.056387994438409805, 0.015274847857654095, -0.025416752323508263, -0.04012127220630646, -0.015683995559811592, 0.07493602484464645, -0.03464117273688316, -0.03483954817056656, -0.07359699159860611, -0.010086110793054104, -0.028070012107491493, -0.00698030786588788, -0.011648311279714108, 0.00870988704264164, 0.060801830142736435, 0.021784014999866486, -0.0022332645021378994, -0.004150369670242071, 0.029136275872588158, 0.022552717477083206, -0.03082245960831642, 0.04203062877058983, -0.015324441716074944, -0.026061469689011574, -0.03144238144159317, 0.004835382103919983, 0.005641278810799122, -0.013749842531979084, 0.009924931451678276, 0.02955782227218151, 0.0210897047072649, 0.03910460323095322, -0.03203750401735306, -0.00991253275424242, 0.02071775123476982, 0.0041100746020674706, -0.0391789935529232, 0.025689516216516495, -0.00019333779346197844, 0.020283807069063187, 0.056140024214982986, 0.06352947652339935, -0.014828504994511604, 0.04986642673611641, 0.02095332182943821, 0.0046339076943695545, -0.00807136856019497, 0.012658782303333282, -0.033252548426389694, -0.04379120469093323, 0.03045050799846649, 0.03828630596399307, -0.03017774224281311, 0.02930985391139984, -0.021808812394738197, 0.0021077306009829044, -0.005039955954998732, 0.022441131994128227, -0.002735400339588523, -0.005628880579024553, -0.01420858409255743, 0.02236674167215824, 0.022899873554706573, -0.01906876266002655, 0.00998692400753498, 0.015584807842969894, 0.05693352222442627, -0.030599288642406464, -0.02208157815039158, -0.016341110691428185, -0.009013648144900799, 0.03999728709459305, -0.034418001770973206, -0.011815689504146576, 0.01401020959019661, 0.032012708485126495, 0.030624086037278175, 0.024945611134171486, 0.01755615696310997, 0.04079078510403633, 0.0022813084069639444, -0.018981974571943283, 0.008914460428059101, 0.01681225188076496, -0.012658782303333282, 0.011394144035875797, 0.011598717421293259, -0.039302974939346313, -0.007947384379804134, 0.006577359512448311, 0.04190664365887642, 0.022069178521633148, -0.014952489174902439, -0.022143570706248283, -0.008492914959788322, -0.04384079575538635, -0.027698060497641563, -0.04770910367369652, 0.010017919354140759, -0.06268639117479324, 0.005526593420654535, -0.0265326090157032, -0.003452958771958947, 0.02613586001098156, 0.020792143419384956, 0.029210666194558144, 0.011257761158049107, 0.02702854573726654, 0.03067367896437645, 0.025788703933358192, 0.002053487580269575, 0.03367409482598305, -0.0018520132871344686, 0.017853718250989914, 0.025156384333968163, 0.005914044100791216, -0.0210897047072649, 0.04594852775335312, -0.00435804296284914, -0.00476099131628871, 0.016700664535164833, 0.004308449104428291, -0.008728484623134136, -0.012045060284435749, -0.02234194427728653, 0.03558345139026642, 0.03697207570075989, 0.02348259836435318, -0.0910043716430664, 0.050337567925453186, -0.02625984326004982, -0.044262342154979706, -0.03082245960831642, -0.00016631311154924333, 0.0011631263187155128, -0.03154156729578972, -0.013675452210009098, 0.029731400310993195, -0.008319336920976639, -0.005002760794013739, -0.028193997219204903, 0.01967628486454487, 0.0018365152645856142, -0.04183225333690643, -0.0005548290791921318, 0.03736882284283638, -0.09834422916173935, 0.0031135519966483116, -0.0588676743209362, 0.011177171021699905, 0.015993956476449966, -0.0406172089278698, -0.002523077419027686, -0.02161043882369995, -0.010867211036384106, 0.03345092386007309, 0.06531485170125961, 0.011164773255586624, -0.0071290889754891396, 0.06893518567085266, 0.02323463000357151, -0.0032173888757824898, 0.00985674001276493, -0.041733067482709885, -0.017630547285079956, 0.011437538079917431, 0.020854134112596512, -0.006416179705411196, 0.06675306707620621, -0.017134610563516617, -0.0012444909662008286, 0.014741715975105762, -0.010067513212561607, 0.031615957617759705, 0.006313893012702465, 0.020482182502746582, -0.04989122226834297, -0.03104563243687153, -0.0019512006547302008, 0.034517187625169754, 0.04751072824001312, -0.043890390545129776, -0.024920815601944923, -0.04406396672129631, -0.06367826461791992, -0.015188058838248253, 0.03811272978782654, -0.012262032367289066, -0.013650654815137386, -0.029508229345083237, -0.023073451593518257, -0.001389397424645722, 0.02539195492863655, -0.04126192629337311, 0.04522942006587982, -0.02551593817770481, -0.0112949563190341, -0.06179370358586311, 0.039699725806713104, -0.030103351920843124, -0.01756855472922325, -0.016229525208473206, 0.0056443787179887295, -0.041361112147569656, -0.0507839098572731, -0.02018461935222149, -0.0024548862129449844, 0.011902478523552418, -0.01765534281730652, -0.03521149978041649, 0.022540319710969925, 0.006329391151666641, -0.012410813942551613, 0.009800947271287441, -7.531068604293978e-06, 0.013712647370994091, -0.03345092386007309, 0.021945195272564888, -0.03788955882191658, 0.02422650344669819, 0.02400333248078823, -0.03486434370279312, -0.025168783962726593, -0.005359215196222067, -0.03419483080506325, -0.04381600022315979, -0.042352985590696335, -0.01281996164470911, -0.01982506550848484, -0.01382423285394907, 0.010997394099831581, 0.02816919982433319, 0.017332984134554863, 0.015498018823564053, -0.014146591536700726, -0.0031414483673870564, -0.0012793614296242595, -0.0030624086502939463, 0.006422379054129124, 0.04656844958662987, 0.05088309571146965, 0.019998643547296524, -0.017605749890208244, 0.005749765317887068, 0.003102703485637903, 0.018771201372146606, 0.0011166322510689497, -0.009639767929911613, -0.00023595734091941267, 0.012671180069446564, 0.021052509546279907, 0.01968868263065815, 0.006695144344121218, 0.01054485235363245, 0.007978380657732487, 0.007234475575387478, -0.0015560011379420757, -0.009819544851779938, 0.00435494352132082, 0.005514195188879967, -0.0068625230342149734, -0.0036203372292220592, -0.002267360221594572, -0.014369763433933258, -0.0432208776473999, 0.04230339452624321, 0.014084599912166595, -0.03436840698122978, 0.038063134998083115, 0.015101269818842411, -0.0019419017480686307, -0.033153362572193146, 0.014927691780030727, 0.012169044464826584, 0.0020116427913308144, 0.008945456705987453, 0.0119954664260149, -0.003088755300268531, -0.019750675186514854, -0.007265471387654543, 0.022242756560444832, -0.04126192629337311, -0.007098092697560787, 0.047287557274103165, -0.03231026977300644, -0.022391537204384804, 0.01920514553785324, 0.0005757514154538512, 0.02018461935222149, 0.019874660298228264, -0.01034647785127163, 0.030128149315714836, -0.04064200446009636, 0.050436753779649734, 0.011338350363075733, -0.039476554840803146, -0.025416752323508263, 0.02184600755572319, -0.050833504647016525, 0.00030976664857007563, 0.01614273712038994, -0.01401020959019661, 0.007290268316864967, 0.009645966812968254, 0.028764324262738228, 0.01891998201608658, -0.0059853349812328815, -0.026830170303583145, -0.06476932018995285, -0.020097831264138222, -0.041485097259283066, -0.061049796640872955, 0.010259688831865788, -0.02211877331137657, 0.004224759992212057, 0.0041472697630524635, 0.03104563243687153, 0.014791309833526611, -0.015993956476449966, 0.021784014999866486, -0.010830015875399113, -0.04976724088191986, 0.04098916053771973, -0.006298394873738289, 0.007153885439038277, 0.03526109457015991, 0.005207334645092487, -0.02413971535861492, -0.03459157794713974, 0.006248801480978727, 0.015225253999233246, 0.020928524434566498, -0.0025494240690022707, 0.0007656021625734866, 0.017878515645861626, 0.009255416691303253, 0.0071724834851920605, -0.0289131049066782, 0.03560825064778328, 0.044634293764829636, -0.00960257276892662, -0.016093142330646515, -0.000566840055398643, -0.023271825164556503, 0.0021077306009829044, 0.008629296906292439, 0.004342544823884964, -0.01401020959019661, 0.01578318327665329, 0.00294927298091352, -0.00048043858259916306, 0.0393773652613163, 0.00991253275424242, 0.03905500844120979, -0.028863510116934776, 0.050932690501213074, 0.008641695603728294, -0.014580536633729935, 0.03841029107570648, 0.011003593914210796, 0.02777245081961155, 0.03005375899374485, -0.04056761413812637, 0.014220982789993286, -0.007147686555981636, 0.001738877734169364, 0.014679723419249058, -0.004717596806585789, 0.0034994527231901884, -0.012733172625303268, -0.039451759308576584, 0.03421962633728981, -0.017605749890208244, 0.02273869328200817, -0.03424442186951637, -0.018895184621214867, 0.012454207986593246, 0.022527920082211494, 0.0358562171459198, -0.01578318327665329, -0.034665968269109726, -0.002836137544363737, 0.0007191080949269235, 0.026111062616109848, -0.014096998609602451, 0.015956761315464973, 0.0011220566229894757, -0.012671180069446564, 0.0233710128813982, -0.007612626999616623, 0.019130755215883255, 0.018089288845658302, -0.037096057087183, 0.0025757707189768553, 0.011852884665131569, 0.009540580213069916, -0.06189288944005966, -0.04379120469093323, -0.030772866681218147, -0.00827594194561243, -0.03474035859107971, -0.0021852205973118544, 0.029210666194558144, 0.03786475956439972, -0.0004176716029178351, -0.0008454169728793204, -0.03350051864981651, -0.016589079052209854, 0.01803969405591488, 0.0325334407389164, -0.0007772256503812969, 0.02893790230154991, -0.006825327407568693, -0.023780161514878273, -0.019502706825733185, 0.03531068563461304, -0.007079495117068291, -0.012193841859698296, 0.019502706825733185, -0.008449519984424114, 0.002171272411942482, 0.02081693895161152, -0.043419249355793, 0.05931401997804642, 0.043518438935279846, 0.010433266870677471, -0.005514195188879967, 0.007191081065684557, -0.04205542430281639, 0.03372368961572647, -0.009447592310607433, 0.000738093163818121, -0.00499346200376749, -0.008350332267582417, 0.02690456062555313, -0.05544571205973625, 0.001217369455844164, -0.0729522779583931, 0.015993956476449966, -0.020407792180776596, 0.0015598756726831198, 0.010036516934633255, -0.005247629247605801, 0.015733588486909866, -0.04884975776076317, 0.009292611852288246, -0.03476515784859657, -0.006354188080877066, 0.031491976231336594, -0.029260260984301567, -0.0008678890881128609, 0.030500100925564766, 0.0010213194182142615, 0.003307277336716652, 0.00583965377882123, 0.005793159361928701, 0.00757543183863163, -0.01614273712038994, -0.020544175058603287, -0.023817356675863266, -0.05212293937802315, -0.005966737400740385, -0.004860179033130407, -0.008120962418615818, -0.02096571959555149, -0.0010972598101943731, -0.011666908860206604, 0.006614554673433304, 0.0022487626411020756, -0.005015159025788307, -0.044386327266693115, -0.012534798122942448, -0.016725461930036545, -0.0011042339028790593, 0.027326107025146484, -0.01679985225200653, 0.002363448031246662, 0.013787037692964077, -0.0066331522539258, -0.013365491293370724, 0.0451798252761364, 0.010513856075704098, 0.0031925919465720654, 0.015225253999233246, 0.026235047727823257, -0.01521285530179739, 0.0023340017069131136, 1.0031335477833636e-05, -0.02488362044095993, -0.02161043882369995, 0.026606999337673187, -0.021932797506451607, -0.013501874171197414, 0.002918276935815811, -0.014332568272948265, -0.01053865347057581, -0.010439465753734112, 0.04069159924983978, 0.01983746513724327, 0.0021108302753418684, -0.03017774224281311, 0.0005377812776714563, -0.015262449160218239, -0.0224907249212265, 0.007463845890015364, 0.020668158307671547, 0.026978950947523117, 0.014493747614324093, 0.048527397215366364, -0.00534061761572957, -0.04483266919851303, 0.04334485903382301, -0.008430922403931618, -0.028317980468273163, 0.01174749806523323, -0.0233710128813982, 0.022825483232736588, 0.014134193770587444, 0.008542507886886597, -0.007048499304801226, -0.01703542284667492, 0.009243018925189972, 0.02625984326004982, -0.009999321773648262, 0.0067881322465837, 0.011834287084639072, 0.05847092717885971, 0.013191914185881615, -0.025218376889824867, 0.028193997219204903, -0.04671723023056984, 0.010079911909997463, 0.017233796417713165, -0.004649405833333731, 0.026854967698454857, -0.017630547285079956, 0.008635496720671654, -0.013973014429211617, -0.04138591140508652, 0.01559720654040575, -0.022267553955316544, -0.02184600755572319, -0.05251968652009964, -0.003180193481966853, 0.0031151019502431154, 0.007736611180007458, 0.004674202762544155, -0.015361636877059937, -0.012981140986084938, -0.0048973741941154, -0.0179281085729599, -0.020903728902339935, -0.01956469938158989, -0.017382578924298286, -0.035161904990673065, -0.014803707599639893, -0.019527504220604897, 0.004407636821269989, 0.013105125166475773, 0.004271253943443298, 0.030896851792931557, 0.027499685063958168, -0.013563866727054119, 0.008114762604236603, 0.06233923137187958, 0.001218144316226244, -0.009565377607941628, 0.007755208760499954, 0.004103875253349543, -0.014754114672541618, -0.007110491394996643, 0.015832776203751564, -0.021015314385294914, 0.00915622990578413, 0.028094809502363205, -0.00479818694293499, 0.01521285530179739, -0.011790893040597439, 0.006137215532362461, 0.014059802517294884, 0.0023587984032928944, 0.05896686390042305, 0.029880180954933167, -0.008505312725901604, 0.007308865897357464, 0.008561105467379093, 0.012169044464826584, 0.004779588896781206, -0.011325952596962452, -0.00603492883965373, 0.008058969862759113, -0.0002524239826016128, -0.0025509740225970745, 0.03783996403217316, -0.016589079052209854, 0.01679985225200653, -0.057379867881536484, 0.011983068659901619, -0.013601061888039112, -0.002884181449189782, -0.023928942158818245, -0.018523233011364937, -0.01806449145078659, 0.07260511815547943, 0.019366323947906494, -0.01693623512983322, -0.03811272978782654, 0.002702854573726654, 0.033401329070329666, 0.0024548862129449844, -0.014778911136090755, 0.028317980468273163, 0.03493873402476311, -0.01331589836627245, 0.0032173888757824898, 0.037046466022729874, -0.028466761112213135, 0.011418940499424934, -0.02665659226477146, -0.022304749116301537, 0.0019372523529455066, -0.029086682945489883, 0.022007187828421593, -0.011257761158049107, 0.010631641373038292, 0.04255136102437973, -0.01630391553044319, -0.003480855142697692, 0.006502968724817038, 0.02371816895902157, -0.0005726517993025482, 0.026730982586741447, -0.002013192744925618, 0.0009236819460056722, 0.01154912356287241, 0.03538507595658302, 0.0081333601847291, -0.0289131049066782, -0.011077984236180782, 0.010445664636790752, 0.012169044464826584, 0.014927691780030727, 0.021312875673174858, -0.013055531308054924, 0.01930433325469494, -0.025441547855734825, 0.013774638995528221, 0.010997394099831581, -0.012361220084130764, -0.004556417465209961, 0.02903708815574646, -0.000525382871273905, 0.02524317428469658, 0.006152713671326637, 0.002657910343259573, 0.0195894967764616, 0.03979891166090965, -0.0266317967325449, 0.03320295736193657, 0.028714729472994804, -0.017444569617509842, -0.0024595356080681086, 0.012807562947273254, 0.0005129844066686928, -0.027202123776078224, 0.00802177470177412, 0.03496352955698967, 0.03583142161369324, -0.014369763433933258, -0.008728484623134136, -0.012299228459596634, -0.003930297680199146, 0.0008616898558102548, 0.00757543183863163, 0.025689516216516495, -0.0016737860860303044, 0.04118753597140312, 0.027450092136859894, 0.04279933124780655, 0.0411379411816597, 0.015237652696669102, -0.01029068510979414, 0.0068191285245120525, 0.038583867251873016, -0.014729317277669907, 0.018882786855101585, 0.006109319161623716, 0.011307355016469955, -0.027822043746709824, 0.016217127442359924, 0.009627369232475758, 0.0188083965331316, -0.009416596032679081, -0.02144925855100155, 0.02777245081961155, 0.0035831420682370663, -0.027474887669086456, 0.025342360138893127, -0.027450092136859894, 0.01110278069972992, 0.015076473355293274, 0.03342612832784653, -0.010954000055789948, -0.03942696005105972, 0.016217127442359924, -0.04545259103178978, -0.027226919308304787, 0.010495258495211601, -0.0012940845917910337, 0.003125950461253524, 0.040468428283929825, -0.046642839908599854, 0.012906750664114952, 0.039972491562366486, -0.0017729733372107148, -0.0005311946151778102, -0.011561522260308266, 0.053213998675346375, 0.04632047936320305, 0.0058520520105957985, 0.027946028858423233, 0.03399645537137985, 0.03131839632987976, -0.0004296825791243464, 0.016241924837231636, -0.022131171077489853, 0.003012815024703741, -0.0049500674940645695, 0.02537955529987812, 0.0027493485249578953, -0.02965700998902321, -0.003747421083971858, -0.014307770878076553, -0.013588663190603256, -0.01867201365530491, -0.029136275872588158, -0.03684809058904648, 0.00339406612329185, 0.004327047150582075, -0.02120129019021988, 0.0026796075981110334, 0.03786475956439972, 0.037294432520866394, -0.016886642202734947, 0.0026718585286289454, 0.011028390377759933, -0.02930985391139984, -0.02650781162083149, -0.01577078364789486, 0.014084599912166595, 0.007897790521383286, -0.01198926754295826, 0.005585486069321632, 0.003088755300268531, -0.0038962019607424736, -0.014258177950978279, 0.018374452367424965, 0.009776150807738304, 0.027474887669086456, -0.04396478086709976, -0.017518959939479828, -0.015026879496872425, 0.022577514871954918, 0.00031557842157781124, 0.00748244347050786, 0.030252132564783096, -0.009422795847058296, 0.016353510320186615, 0.00910043716430664, -0.0012553395936265588, -0.025156384333968163, -0.01715940609574318, 0.008542507886886597, 0.023904144763946533, -0.005861350800842047, 0.0014056703075766563, 0.0311944130808115, -0.008982651866972446, -0.027598872780799866, -0.0015180310001596808, -0.0018024196615442634, 0.0049872626550495625, 0.008592101745307446, 0.000456416659289971, 0.01154292467981577, 0.03002896159887314, 0.006502968724817038, 0.04205542430281639, -0.006478171795606613, 0.02422650344669819, 0.03317815810441971, 0.016341110691428185, 0.01830006018280983, 0.016365908086299896, 0.05251968652009964, 0.009050843305885792, 0.013787037692964077, -0.037071261554956436, 0.04979203641414642, -0.03702166676521301, 0.015274847857654095, -0.03171514719724655, 0.008306938223540783, -0.013799436390399933, -0.0409395657479763, -0.010055114515125751, 0.04696519672870636, -0.004159668460488319, 0.0001674754748819396, -0.02198239043354988, 0.0028097908943891525, 0.03697207570075989, -0.02866513654589653, -0.045750152319669724, -0.02727651409804821, 0.023767761886119843, -0.031219210475683212, 0.0094041982665658, -0.0025044798385351896, 0.0266317967325449, 0.0021542245522141457, 0.04914731904864311, 0.03702166676521301, -0.021374868229031563, 0.00952198263257742, -0.03156636655330658, 0.0007318939315155149, -0.011480933055281639, -0.03967493027448654, 0.0011112079955637455, 0.00945999100804329, -0.01904396526515484, 0.016502290964126587, 0.008802874945104122, -0.018101686611771584, 0.014940090477466583, -0.005511095747351646, 0.00105076574254781, 0.00832553580403328, -0.0018954077968373895, -0.02298666164278984, 0.06586038321256638, 0.013539069332182407, -0.020234214141964912, -0.03002896159887314, 0.012646383605897427, 0.009181026369333267, 0.02475963532924652, -0.0027261015493422747, 0.014047404751181602, 0.044138357043266296, -0.015138464979827404, 0.01124536246061325, 0.007637423928827047, -0.007377057336270809, -0.003924098331481218, 0.008982651866972446, -0.01791571080684662, -0.033153362572193146, 0.020754946395754814, -0.016130337491631508, -0.002662559738382697, 0.003344472497701645, 0.0038993016351014376, 0.000914383155759424, -0.01806449145078659, -0.01968868263065815, 6.547912926180288e-05, -0.0008337934268638492, -0.026433421298861504, 0.012565793469548225, -0.01174129918217659, 0.03469076752662659, -0.013117523863911629, -0.004032584372907877, 0.022639505565166473, -0.03774077445268631, -0.03590581193566322, -0.007792403921484947, 0.051081471145153046, 0.0016164433909580112, -0.007042299956083298, 0.006905917543917894, -0.01143133919686079, 0.013030734844505787, -0.019775472581386566, -0.003474655793979764, -0.02576390653848648, 0.008356532081961632, 0.00870988704264164, -0.0502631738781929, 0.005771462339907885, -0.02182121016085148, 0.007866794243454933, 0.014840902760624886, -0.014183786697685719, 0.019415918737649918, 0.011090382933616638, 0.017630547285079956, -0.015175660140812397, -0.010805219411849976, 0.025156384333968163, -0.012733172625303268, -0.026606999337673187, 0.008840070106089115, 0.012664981186389923, -0.019515106454491615, -0.022428734228014946, -0.014382162131369114, -0.019031567499041557, 0.006695144344121218, 0.02097811922430992, 0.007903989404439926, 0.012255833484232426, -0.020234214141964912, -0.03660012036561966, -0.008114762604236603, -0.03496352955698967, 0.004590513184666634, -0.03295498713850975, -0.03734402731060982, -0.041609082370996475, -0.015436027199029922, -0.0017264793859794736, 0.05316440388560295, 0.010588246397674084, -0.009435193613171577, -0.01604354940354824, 0.0328558012843132, 0.01996144838631153, 0.0011972220381721854, 0.012534798122942448, 0.002433188958093524, 0.012522399425506592, -0.02878911979496479, 0.008114762604236603, 0.03203750401735306, -0.003163145622238517, -0.020804541185498238, -0.002647061599418521, -0.013018336147069931, -0.01630391553044319, -0.01262778602540493, -0.029954571276903152, 0.023916542530059814, -0.029210666194558144, 0.01944071613252163, -0.005309621337801218, 0.01817607693374157, -0.02246592938899994, -0.005167039576917887, -0.015634402632713318, -0.010315481573343277, 0.01577078364789486, -0.012045060284435749, 0.012807562947273254, -0.03002896159887314, -0.004689700435847044, -0.011282557621598244, 0.006558761931955814, 0.00476099131628871, 0.021164095029234886, -0.025689516216516495, 0.048180241137742996, 0.002216216642409563, -0.0266317967325449, 0.018349654972553253, -0.04190664365887642, 0.003772217780351639, 0.01967628486454487, 0.026458218693733215, 0.020754946395754814, 0.034145236015319824, -0.005402609705924988, 0.025689516216516495, 0.02411491796374321, 0.006202307064086199, -0.01351427286863327, 0.007470045238733292, 0.03054969571530819, 0.02650781162083149, -0.029607415199279785, 0.007600228767842054, 0.00035025522811338305, -0.02839237079024315, -0.012404614128172398, 0.009844341315329075, -0.009813345968723297, -0.0194283165037632, 0.009379400871694088, 0.02690456062555313, 0.017841320484876633, 0.013105125166475773, 0.013638257049024105, -0.0020147424656897783, 0.014816106297075748, -0.006298394873738289, 0.022044382989406586, -0.027499685063958168, 0.022912271320819855, -0.009887736290693283, 0.010005521588027477, 0.024548862129449844, -0.02084173634648323, -0.04265054687857628, 0.018634818494319916, 0.012441810220479965, 0.029582619667053223, 0.012553395703434944, -0.026160655543208122, 0.001478511025197804, -0.030400915071368217, -0.019378723576664925, 0.0050833504647016525, 0.02854115143418312, -0.028863510116934776, 0.013055531308054924, 0.00035122386179864407, 0.007122889626771212, -0.03483954817056656, -0.028838714584708214, 0.002388244727626443, 0.03952614963054657, -0.06070264056324959, -0.006924515124410391, 0.0075134397484362125, -0.02122608758509159, 0.020407792180776596, -0.018014896661043167, 0.002746249083429575, 0.040344443172216415, 0.029458634555339813, 0.0013754492392763495, 0.018101686611771584, -0.021672429516911507, -0.01546082366257906, -0.028094809502363205, 0.0071290889754891396, 0.04178265854716301, 0.029731400310993195, 0.011716502718627453, 0.00807136856019497, -0.03925338387489319, 0.001652088831178844, -0.003917899448424578, -0.02437528409063816, -0.03384767472743988, 0.008288340643048286, -0.0015846724854782224, 0.020494580268859863, -0.011908678337931633, 0.022937068715691566, 0.0075506349094212055, 0.0022828581277281046, -0.033550113439559937, 0.03379807993769646, -0.00435804296284914, -0.0030562093015760183, 0.018771201372146606, 0.009397998452186584, -0.025094391778111458, 0.01766774244606495, -0.015225253999233246, 0.013043132610619068, -0.020296206697821617, -0.007649822160601616, 0.03493873402476311, 0.012119450606405735, -0.014853301458060741, 0.024536464363336563, -0.02576390653848648, -0.013179515488445759, 0.014258177950978279, 0.0030283129308372736, -0.019267138093709946, -0.014183786697685719, -0.0004998111398890615, -0.02563992328941822, 0.0011181820882484317, -0.01740737445652485, -0.011189569719135761, -0.030376117676496506, 0.016378305852413177, -0.05073431506752968, -0.029086682945489883, 0.026036672294139862, -0.004187564831227064, -0.01715940609574318, -0.01068123523145914, -0.00039500577258877456, -0.021436860784888268, 0.011022191494703293, 0.027946028858423233, -0.02447447180747986, 0.03645133972167969, 0.03456678241491318, -0.01332829613238573, -0.010439465753734112, -0.005910944659262896, 0.0006226329132914543, -0.00026695337146520615, -0.007104292046278715, 0.01521285530179739, 0.050064802169799805, -0.009342205710709095, 0.016713064163923264, 0.02928505651652813, -0.02120129019021988, -0.0024238901678472757, -0.029185868799686432, -0.025937484577298164, -0.02373056672513485, -0.03221108391880989, 0.012119450606405735, 0.0017528259195387363, -0.04825463145971298, 0.017270993441343307, -0.020606165751814842, 0.012807562947273254, 0.034889139235019684, 0.03610418364405632, 0.0018179176840931177, 0.0016861844342201948, -0.010365075431764126, -0.018411647528409958, 0.007922586984932423, 0.02436288632452488, 0.029185868799686432, 0.04889934882521629, -0.005982235539704561, -0.029334651306271553, 0.024164510890841484, 0.009887736290693283, 0.031095225363969803, 0.01331589836627245, 0.016204729676246643, -0.012677379883825779, -0.02968180552124977, -0.008151957765221596, -0.02220556139945984, 0.0021557745058089495, 0.024970408529043198, -0.0068935188464820385, 0.008120962418615818, 0.0031894922722131014, 0.0011189569486305118, 0.0162667203694582, 0.028714729472994804, 0.01715940609574318, 0.011276358738541603, 0.015138464979827404, -0.03141758590936661, 0.002519977977499366, -0.020097831264138222, -0.01817607693374157, -0.004723796155303717, 0.03203750401735306, 0.009955927729606628, 0.024722440168261528, 0.015485621057450771, 0.03868305683135986, 0.014989684335887432, 0.01331589836627245, 0.012212439440190792, -0.02286267839372158, 0.024263698607683182, 0.008573504164814949, -0.007922586984932423, -0.009546780027449131, -0.036153778433799744, 0.003172444412484765, 0.01402260735630989, 3.714681588462554e-05, 0.051081471145153046, -0.07230755686759949, 0.008474316447973251, 0.03317815810441971, -0.038335900753736496, -0.009367003105580807, -0.00460911076515913, -0.02906188555061817, 0.01931673102080822, -0.025590328499674797, 0.03166555240750313, 0.014580536633729935, 0.009862939827144146, 0.008995050564408302, 0.029904978349804878, 0.021052509546279907, 0.022912271320819855, 0.016229525208473206, 0.020928524434566498, 0.014084599912166595, -0.030872054398059845, 0.005129844415932894, 0.02094092406332493, -0.012175244279205799, -0.0018768100999295712, -0.018895184621214867, -0.00738325621932745, -0.03295498713850975, -0.012144248001277447, 0.028714729472994804, -0.001434341655112803, -2.3125950974645093e-05, -0.0005881498218514025, -0.04934569448232651, -0.026978950947523117, -0.01281996164470911, 0.04493185877799988, 0.0116049163043499, -0.00896405428647995, -0.028739526867866516, 0.0009825744200497866, -0.026706187054514885, 0.036029793322086334, 0.019254738464951515, 0.004999660886824131, 0.03094644472002983, 0.01091060508042574, -0.0005238330340944231, -0.016874242573976517, -0.04845300689339638, 0.01104698795825243, -0.01401020959019661, -0.01857282593846321, -0.012584391981363297, 0.02412731572985649, 0.025168783962726593, 0.008554906584322453], [0.0471937358379364, -0.0039901649579405785, 0.08529830724000931, 0.005579676013439894, -0.03878188878297806, 0.005467700306326151, 0.009826566092669964, -0.05366102606058121, 0.00519185746088624, 0.0627501904964447, -0.02973642386496067, -0.017828745767474174, -0.061045970767736435, -0.004339748062193394, 0.002063360530883074, 0.015709396451711655, -0.002102961763739586, 0.0071063716895878315, 0.03775499016046524, 0.011863981373608112, 0.032729730010032654, 0.04232142120599747, 0.012945503927767277, 0.009864801540970802, -0.002621874213218689, 0.01261776965111494, 0.059866130352020264, -0.003157173516228795, 0.08337560296058655, -0.006647543516010046, 0.02124810591340065, -0.012137092649936676, -0.017588406801223755, -0.053879514336586, 0.03327595442533493, 0.0055933319963514805, -0.01720605045557022, 0.008471931330859661, 0.01013791374862194, 0.01795983873307705, -0.06497878581285477, 0.06406112760305405, -0.011274059303104877, -0.02641538344323635, -0.03425915539264679, 0.028447335585951805, 0.01191860344260931, -0.010225309990346432, -0.022854004055261612, 0.029212048277258873, -0.011765660718083382, 0.009132862091064453, 0.040923088788986206, 0.05894847214221954, 0.00767990667372942, 0.019467417150735855, 0.0026901522651314735, 0.002145294100046158, 0.035570092499256134, -0.0200464129447937, -0.0057845101691782475, -0.02597840502858162, -0.045445822179317474, 0.020024564117193222, -0.033144861459732056, 0.005680727772414684, 0.007281163241714239, 0.03913147374987602, -0.014890060760080814, -0.021575840190052986, 0.05060217157006264, 0.03185577318072319, -0.0007879278273321688, -0.04101048409938812, 0.04509623721241951, -0.012530374340713024, 0.04985930770635605, 0.036706238985061646, -0.009040003642439842, 0.04457186162471771, -1.1863297913805582e-05, 0.05733165144920349, -0.0358104333281517, 0.0188447218388319, -0.033865876495838165, 0.054185401648283005, -0.01121943723410368, -0.014081649482250214, 0.008357224054634571, -0.006002999842166901, -0.018975814804434776, -0.035788584500551224, 0.0188447218388319, 0.035329755395650864, -0.04227772355079651, 0.01040556374937296, 0.011721963062882423, 0.008952608332037926, -0.0675569623708725, 0.043326471000909805, 0.02311619184911251, 0.03803902491927147, -0.01533796451985836, 0.020461544394493103, 0.004997947718948126, -0.061745140701532364, -0.07293180376291275, -0.02337837964296341, 0.009001768194139004, 0.024274185299873352, -0.01795983873307705, 0.008783278986811638, 0.010771533474326134, 0.06344936043024063, -0.013830387033522129, 0.00518912635743618, -0.007521501742303371, 0.01190767902880907, 0.009651774540543556, 0.0021398316603153944, 0.00642359210178256, -0.009531605057418346, 0.012158941477537155, -0.04358866065740585, -0.011437926441431046, 0.014474931173026562, -0.034040667116642, -0.0017274328274652362, -0.032227203249931335, 0.01653965748846531, 0.04675675928592682, 0.0169657114893198, 0.03723061457276344, -0.05235008895397186, -0.02995491400361061, -0.03399696946144104, -0.013535425998270512, -0.009471520781517029, -0.007488728500902653, -0.03491462394595146, 0.022264081984758377, 0.01673629693686962, 0.03139694407582283, 0.021827103570103645, -0.007876547053456306, 0.04312983155250549, -0.0034794455859810114, 0.0976211205124855, 0.010498421266674995, -0.012410204857587814, -0.031200304627418518, -0.009056390263140202, 0.021805254742503166, -0.04315168038010597, 0.013600972481071949, -0.026939757168293, 0.05117024481296539, 0.018746400251984596, 0.004967905580997467, 0.014376610517501831, -0.022613665089011192, -0.022701062262058258, -0.007352172397077084, -0.02144474722445011, 0.04400378838181496, 0.0020142002031207085, 0.01795983873307705, -0.035723038017749786, -0.047587018460035324, -0.02835994027554989, -0.02267921157181263, 0.0013280066195875406, -0.012333733960986137, -0.03823566809296608, 0.001566296792589128, -0.0001609653263585642, -0.002759795868769288, 0.01601528190076351, 0.005309295374900103, -0.034106213599443436, -0.014737118035554886, -0.018833797425031662, -0.04500884190201759, -0.03399696946144104, -0.007854698225855827, 0.021204408258199692, -0.0017765929223969579, -0.0015130399260669947, 0.06305607408285141, -0.00590467918664217, 0.009968584403395653, 0.014573250897228718, 0.00029479016666300595, 0.028403637930750847, -0.02739858627319336, -0.0134698785841465, -0.00560971861705184, -0.023684265092015266, 0.008974457159638405, -0.007947556674480438, 0.05099545419216156, -0.02146659605205059, 0.03830121457576752, 0.003916424699127674, -0.0635804533958435, -0.0325767882168293, 0.026961607858538628, 0.01547998283058405, -0.014027027413249016, -0.008351761847734451, -0.031047360971570015, -0.008892523124814034, -0.009608076885342598, 0.011339605785906315, -0.04706264287233353, 0.02451452426612377, 0.004845004994422197, -0.03688102960586548, -0.025781763717532158, 0.00600846204906702, -0.022285930812358856, 0.006620232481509447, 0.028600279241800308, -0.04253990948200226, -0.06628972291946411, -0.03428100422024727, -0.03797347843647003, -0.0009586227824911475, 0.0019049554830417037, -0.035548243671655655, -0.014693420380353928, 0.03856340050697327, -0.04937863349914551, 0.007854698225855827, -0.01913968287408352, -0.005839132703840733, 0.016572430729866028, -0.041665952652692795, -0.026109497994184494, -0.026153195649385452, 0.026830513030290604, 0.004642902407795191, -0.032948218286037445, 0.05554003641009331, -0.020876673981547356, -0.0005018431111238897, -0.00038645335007458925, 0.0015813178615644574, 0.0013478072360157967, -0.018025385215878487, -0.009138324297964573, -0.03969954699277878, 0.0023979225661605597, -0.02078927867114544, 0.028665825724601746, 0.018265724182128906, -0.0235968679189682, 0.014682495966553688, 0.017664877697825432, -0.00861941184848547, -0.014070725068449974, -0.01773042418062687, -0.049466028809547424, 0.019292624667286873, -0.022351477295160294, 0.005281984340399504, 0.04863576591014862, -0.02289770171046257, -0.006860570982098579, -0.009679085575044155, 0.01680184341967106, -0.00140379520598799, -0.027704471722245216, -0.018571609631180763, -0.04815509170293808, 0.012377431616187096, 0.01108834333717823, 0.017763197422027588, 0.010596741922199726, -0.028250696137547493, -0.0188993439078331, 0.01747916266322136, 0.03611631691455841, -0.0066366191022098064, -0.04653826728463173, -0.008122348226606846, 0.030370043590664864, 0.024711165577173233, -0.009804717265069485, 0.021564915776252747, 0.014748042449355125, 0.015949735417962074, -0.02811960130929947, -0.01697663590312004, -0.017118653282523155, -0.03635665774345398, -0.07109648734331131, -0.0038481466472148895, 0.008100499399006367, -0.026590174064040184, 0.007395870517939329, 0.06458549946546555, 0.011055570095777512, 0.03465243801474571, -0.04358866065740585, 0.05851149559020996, 0.03849785402417183, 0.07061581313610077, 0.004539120011031628, -0.047324828803539276, 0.015119475312530994, 0.0447903536260128, -0.01934724673628807, 0.01866992935538292, -0.049203839153051376, 0.015895113348960876, 0.018943041563034058, 0.0254758782684803, -0.01672537252306938, -0.028862465173006058, 0.03889113664627075, -0.008428233675658703, -0.006767712999135256, -0.0514761321246624, 0.07013513892889023, -0.004298781510442495, -0.015774942934513092, 0.03349444270133972, -0.03819196671247482, -0.029343143105506897, -0.017053106799721718, 0.01813463121652603, 0.0014270097017288208, 0.042802099138498306, 0.010055980645120144, -0.023247284814715385, -0.01679091900587082, -0.0023146234452724457, -0.010230772197246552, 0.030064158141613007, -0.028512882068753242, -0.02477671205997467, -0.014551402069628239, 0.011339605785906315, 0.012410204857587814, -0.020210281014442444, 0.00016804916958790272, 0.04160040616989136, 0.0009640849893912673, 0.02340022847056389, 0.003299191826954484, -0.006549223326146603, -0.020701881498098373, -0.002225862117484212, -0.06309977173805237, 0.011416077613830566, 0.004364327993243933, -0.011874905787408352, -0.03371293470263481, -0.021411973983049393, -0.014977457001805305, -0.011842132546007633, 0.021335501223802567, 0.009018154814839363, -0.048504672944545746, -0.030260799452662468, -0.020614486187696457, 0.00045268298708833754, -0.002718829084187746, -0.01509762555360794, 0.039786942303180695, 0.008237054571509361, -0.046887852251529694, -0.019543888047337532, -0.029845668002963066, 0.005104461684823036, -0.004976098891347647, 0.005284715443849564, -0.012377431616187096, -0.008067725226283073, 0.01821110211312771, 0.033144861459732056, 0.005680727772414684, 0.043326471000909805, 0.028687674552202225, 0.03366923704743385, -0.0014939220855012536, 0.017304370179772377, 0.05003410205245018, 0.027464132755994797, -0.0331011638045311, 0.027049003168940544, 0.0595165453851223, -0.0019049554830417037, -0.037886083126068115, -0.02571621723473072, 0.04929123446345329, 0.02265736274421215, -0.011372379958629608, -0.05737534910440445, 0.006166866980493069, -0.019543888047337532, -0.005975688342005014, -0.036684390157461166, 0.03181207552552223, 0.01866992935538292, 0.04889795556664467, -0.011339605785906315, 0.031287699937820435, 0.005871905945241451, 0.0010303145973011851, -0.0020251248497515917, 0.007942094467580318, 0.016911089420318604, 0.022701062262058258, 0.006128631066530943, 0.010919013991951942, -0.007155532017350197, 0.032445695251226425, 0.027005305513739586, -0.029212048277258873, 0.007051749154925346, -0.06074008718132973, 0.015545529313385487, -0.013753915205597878, 0.04680045694112778, -0.021553991362452507, 0.009875725954771042, 0.00875050574541092, -0.03203056380152702, -0.06628972291946411, 0.012115243822336197, 0.1200818419456482, 0.008067725226283073, -0.0777822732925415, -0.027770018205046654, 0.012530374340713024, -0.014179970137774944, 0.012464826926589012, 0.004137645475566387, 0.01380853820592165, 0.008865212090313435, 0.030064158141613007, 0.005942915100604296, -0.02951793372631073, 0.015665698796510696, -0.04129451885819435, 0.04964081943035126, 0.033909574151039124, -0.02905910648405552, 0.03657514601945877, 0.03135324642062187, -0.05007779970765114, -0.012912730686366558, -0.05436019226908684, 0.008581176400184631, -0.04066089913249016, -0.03880373761057854, 0.036444053053855896, -0.030086006969213486, 0.03417176008224487, 0.019980866461992264, 0.047324828803539276, -0.004596473183482885, -0.009149248711764812, 0.024623768404126167, 0.03567934036254883, 0.005260135047137737, -0.03609446808695793, -0.040202073752880096, -0.01771949976682663, 0.016113601624965668, 0.04859206825494766, 0.009892113506793976, 0.054884567856788635, 0.010695061646401882, 0.010121527127921581, -0.06213841959834099, 0.004413488321006298, 0.0017356261378154159, 0.0037416331470012665, -0.012508525513112545, -0.03611631691455841, -0.031549885869026184, 0.03570118919014931, 0.04881056025624275, -0.003544992534443736, -0.024143092334270477, -0.004489959683269262, -0.036859180778265, -0.05208790302276611, -0.030522985383868217, -0.0024061158765107393, -0.007865622639656067, -0.006347120739519596, 0.0039055002853274345, 0.02499520219862461, 0.011711038649082184, 0.012399280443787575, -0.0009217526530846953, 0.09403789043426514, -0.01463879831135273, 0.051607225090265274, -0.007805538363754749, 0.051126547157764435, -0.01462787389755249, -0.0009238010388799012, -0.007882009260356426, -0.05475347489118576, 0.009580765850841999, -0.02479856088757515, 0.023443926125764847, 0.03194316849112511, 0.036444053053855896, 0.00942782312631607, -0.005011603236198425, -0.007805538363754749, -0.008996305987238884, -0.01579679176211357, 0.024645617231726646, -0.02075650542974472, 0.0003874775138683617, -0.013011051341891289, 0.01839681714773178, 0.007652595639228821, -0.0029987685848027468, 0.005306564271450043, -0.0153488889336586, -0.009242107160389423, -0.010793382301926613, -0.002038780367001891, -0.033188559114933014, -0.04446261748671532, 0.0200464129447937, 0.015316115692257881, -0.02551957592368126, 0.015589226968586445, 0.030391892418265343, 0.04081384092569351, -0.0358104333281517, 0.028381789103150368, 0.009094626642763615, 0.032729730010032654, -0.021411973983049393, -0.002658744342625141, 0.03513311594724655, 0.017184201627969742, 0.0552341528236866, -0.0012651908909901977, -0.025847310200333595, -0.00591014139354229, -0.0050389147363603115, 0.007384945638477802, -0.013491728343069553, -0.004003820475190878, 0.02619689330458641, 0.007783689070492983, 0.008925297297537327, -0.014453082345426083, -0.02291955053806305, 0.0017247016075998545, 0.050383683294057846, 0.03323225677013397, 0.016637977212667465, 0.005697114393115044, 0.010334554128348827, -0.024208638817071915, -0.004140376579016447, 0.006554685533046722, -0.047805506736040115, -0.050427380949258804, 0.02263551391661167, 0.037143219262361526, -0.048242487013339996, 0.030129704624414444, 0.009761019609868526, 0.02294139936566353, -0.01450770441442728, -0.014354761689901352, -0.018276648595929146, 0.019882546737790108, 0.013732066377997398, 0.034324705600738525, -0.04832988232374191, -0.022832155227661133, 0.028250696137547493, 0.003138055792078376, -0.03331965208053589, -0.005404884461313486, 0.04430967569351196, -0.01265054289251566, -0.007182843051850796, 0.006920655723661184, 0.017817821353673935, -0.011896754615008831, 0.05047107860445976, -0.008258904330432415, 0.0391533225774765, -0.040464259684085846, 0.016222847625613213, 0.024864107370376587, -0.0026519165839999914, 0.013404332101345062, -0.011416077613830566, -0.03847600519657135, -0.007150069810450077, 0.02148844487965107, -0.03454319387674332, -0.02241702564060688, 0.0015922423917800188, 0.005265597254037857, 0.0019322667503729463, 0.01544720958918333, -0.01345895417034626, -0.020210281014442444, 0.004285125527530909, -0.0010159763041883707, -0.01216986682265997, 0.011743811890482903, -0.029845668002963066, -0.018473289906978607, -0.007854698225855827, 0.005658878479152918, 0.01344802975654602, 0.014988381415605545, -0.02527923695743084, -0.012814410030841827, -0.06270649284124374, 0.030763324350118637, -0.031287699937820435, -0.03327595442533493, -0.0010228040628135204, 0.04981561005115509, -0.026852361857891083, -0.004711180459707975, 0.02477671205997467, 0.02523553930222988, -0.0339314229786396, -0.026764966547489166, 0.018560685217380524, 0.030413741245865822, 0.03865079581737518, 0.02809775248169899, -0.04098863527178764, 0.03613816574215889, -0.0006506891222670674, 0.0010050517739728093, -0.004233234561979771, -0.026109497994184494, -0.00684964656829834, -0.0027953002136200666, 0.02171785943210125, -0.015534604899585247, 0.017795970663428307, 0.012279110960662365, 6.405327440006658e-05, 0.0024470826610922813, 0.008007640950381756, -0.029823819175362587, 0.01768672652542591, -0.010312705300748348, 0.019456492736935616, 0.023727962747216225, -0.03661884367465973, 0.005317488685250282, 0.009739170782268047, 0.016408562660217285, -0.035985223948955536, 0.03605077043175697, -0.02102961577475071, -0.007909320294857025, -0.002619143109768629, -0.007079060655087233, 0.020101036876440048, 0.007789151277393103, -0.03677178546786308, -0.0477181114256382, 0.018014460802078247, 0.008586638607084751, 0.06100227311253548, -0.009941273368895054, -0.009225720539689064, 0.0069971270859241486, 0.028687674552202225, -0.002789838006719947, 0.015174097381532192, 0.05361732840538025, 0.014769891276955605, 0.014201818965375423, 0.02405569702386856, 0.012366507202386856, 0.03019525110721588, -0.01521779503673315, -0.01275978796184063, 0.015425359830260277, 0.012071546167135239, 0.019915319979190826, 0.004768533632159233, -0.007892933674156666, -0.026327988132834435, 0.016943862661719322, 0.008226130157709122, -0.043064285069704056, -0.07974867522716522, -0.01546905841678381, -0.01580771617591381, -0.02055986411869526, -0.00754881277680397, 0.05789972469210625, -0.012672392651438713, -0.029823819175362587, 0.008149659261107445, -0.04350126534700394, -0.020395996049046516, 0.013524501584470272, -0.018822873011231422, 0.031091058626770973, 0.025825461372733116, -0.02619689330458641, -0.0025740796700119972, -0.04151301085948944, -0.04059535264968872, -0.05313665047287941, 0.001630478072911501, 0.04358866065740585, 0.00031407870119437575, 0.02097499370574951, -0.015283342450857162, 0.024733014404773712, 0.01980607584118843, 0.008777816779911518, 0.004946056753396988, -0.00946059636771679, 0.03880373761057854, -0.0002601390879135579, 0.010290856473147869, 0.010514807887375355, 0.009826566092669964, -0.008127810433506966, 0.024208638817071915, -0.004694793839007616, -0.031025512143969536, 0.0015417167451232672, -0.052743371576070786, 0.013142144307494164, -0.02453637309372425, 0.0045445822179317474, -0.0052055129781365395, -0.011667340062558651, 0.02405569702386856, -0.012115243822336197, 0.0053939600475132465, -0.044025637209415436, -0.026939757168293, 0.04500884190201759, -0.0072975498624145985, -0.017293445765972137, 0.0016728104092180729, 0.01014337595552206, 0.019532963633537292, 0.018571609631180763, -0.009504294022917747, -0.009700934402644634, 0.03443394973874092, 0.009378662332892418, -0.026065800338983536, -0.02475486323237419, 0.0024429860059171915, -0.010891702957451344, -0.0038290289230644703, 0.01100094709545374, 0.004506346303969622, 0.020428771153092384, -0.003995627164840698, 0.033647388219833374, -0.007177380844950676, -0.022701062262058258, -0.0186371561139822, -0.01774134859442711, -0.0339314229786396, 0.0014720731414854527, -0.007177380844950676, 0.020690957084298134, 0.06642081588506699, 0.013797612860798836, -0.013611896894872189, 0.01178750954568386, 0.0037607508711516857, 0.023487623780965805, 0.0018639886984601617, -0.021324576810002327, 0.0014980187406763434, -0.009608076885342598, -0.004926938563585281, -0.021204408258199692, -0.0032172582577914, 0.015622001141309738, -0.03893483430147171, 0.01356819923967123, 0.03133139759302139, -0.004309705924242735, -0.021401049569249153, -0.004287857096642256, 0.0025727141182869673, 0.03797347843647003, -0.023006945848464966, -0.03423730656504631, -0.05082066357135773, 0.0024853183422237635, 0.017588406801223755, 0.003088895697146654, 0.0186917781829834, -0.01720605045557022, -0.015195946209132671, 0.004763071425259113, 0.006805948447436094, -0.04492144659161568, 0.022056518122553825, 0.0017151427455246449, -0.016856467351317406, 0.09237737208604813, 0.003692472819238901, 0.019478341564536095, 0.0020715538412332535, -0.007854698225855827, 0.018222026526927948, -0.043763451278209686, 0.0019650401081889868, 0.020701881498098373, -0.002143928548321128, 0.03323225677013397, -0.005396691150963306, 0.012508525513112545, 0.01813463121652603, -0.007532426156103611, 0.018025385215878487, -0.016616128385066986, 0.024121243506669998, -0.0034111677668988705, 0.03731800988316536, 0.031702831387519836, -0.02554142475128174, -0.008242516778409481, -0.002870406024158001, 0.019500190392136574, 0.0304355900734663, 0.016441335901618004, 0.007477804087102413, -0.020701881498098373, 0.007221078500151634, -0.02501705102622509, -0.010826155543327332, -0.007428643759340048, 0.019456492736935616, -0.023793509230017662, 0.013480803929269314, 0.004465379752218723, -0.01679091900587082, -0.013251389376819134, -0.023531321436166763, -0.006155942101031542, -0.03463058918714523, -0.015490907244384289, 0.0007681272109039128, -0.01216986682265997, 0.009537067264318466, 0.031003663316369057, 0.0072702388279139996, 0.015676623210310936, 0.014813589863479137, 0.02663387358188629, -0.008269828744232655, 0.01265054289251566, -0.021422898396849632, -0.035526394844055176, 0.005301102064549923, 0.00362692610360682, 0.00943328533321619, 0.013906857930123806, 0.03657514601945877, 0.016419487074017525, 0.030086006969213486, 0.032270900905132294, -0.004894165322184563, 0.011579944752156734, -0.05339884012937546, -0.02128087915480137, 0.05121394246816635, 0.01651780866086483, -0.007625284139066935, 0.02173970825970173, -0.019183380529284477, -0.010716911405324936, 0.014562326483428478, -0.03209611028432846, 0.014879136346280575, -0.011295908130705357, -0.016867391765117645, -0.015043003484606743, 0.016594279557466507, -0.03605077043175697, -0.031986866146326065, -0.01649595983326435, 0.004580086562782526, -0.034040667116642, 0.02144474722445011, 0.010842542164027691, -0.02949608489871025, -0.010689599439501762, 0.035329755395650864, 0.02458007074892521, -0.02220945991575718, 0.0013710217317566276, 0.00015831955533940345, 0.026524627581238747, 0.03179022669792175, -0.05505935847759247, -0.01892119273543358, 0.0042933193035423756, -0.012584996409714222, 0.03517681360244751, 0.0012440247228369117, 0.021641386672854424, 0.011361455544829369, -0.020395996049046516, -0.029670877382159233, -0.029124652966856956, 0.007275701034814119, -0.005178201477974653, -0.01380853820592165, 0.023006945848464966, 0.03148433938622475, 0.022832155227661133, 0.0353953018784523, 0.02971457503736019, 0.009023617021739483, -0.022569967433810234, 0.014780816622078419, 0.020253978669643402, 0.03157173469662666, -0.010749684646725655, 0.0285565797239542, -0.0015103088226169348, -0.022482572123408318, -0.016627052798867226, 0.014114422723650932, -0.008461006917059422, 0.00014193284732755274, -0.011284983716905117, 0.00426054559648037, 0.02099684253334999, 0.035045720636844635, 0.027660774067044258, 0.0029441462829709053, -0.008335375227034092, -0.0004533657629508525, 0.020636335015296936, -0.002619143109768629, 0.0002529699122533202, -0.015490907244384289, 0.02405569702386856, 0.026065800338983536, 0.011252210475504398, -0.04007097706198692, 0.04618868604302406, 0.0038508777506649494, -0.007871084846556187, 0.04999040439724922, 0.02409939467906952, -0.03253309056162834, -0.026546476408839226, 0.006685779429972172, 0.06987294554710388, 0.011700114235281944, -0.017643028870224953, -0.0027529678773134947, -0.02479856088757515, -0.015927886590361595, -0.0037825999315828085, 0.009187484160065651, -0.011295908130705357, 0.010520270094275475, 0.01892119273543358, 0.026983456686139107, -0.006898806430399418, 0.027966659516096115, 0.033909574151039124, -0.011481624096632004, 0.013153069652616978, 0.022504420951008797, -0.04011467471718788, 0.02123718149960041, -0.012191715650260448, 0.01014337595552206, 0.0021971852984279394, 0.04798029735684395, 0.0006981422775425017, 0.025606971234083176, 0.021313652396202087, -0.048985350877046585, 0.020002715289592743, -0.009870263747870922, -0.019183380529284477, 0.007871084846556187, 0.020964069291949272, 0.0011402422096580267, 0.06205102428793907, 0.033428896218538284, 0.020155658945441246, 0.005448582582175732, 0.0056752655655145645, 0.0033183095511049032, -0.027704471722245216, 0.02149936929345131, 0.011252210475504398, -0.008592100813984871, -0.004227772355079651, -0.011765660718083382, -0.003968316130340099, 0.03655329719185829, 0.002335106721147895, 0.01194045227020979, 0.015064852312207222, 0.04601389169692993, 0.022526269778609276, -0.039087776094675064, 0.029321294277906418, 0.037405405193567276, 0.010105140507221222, 0.002559058601036668, 0.02742043510079384, -0.0017028526635840535, 0.03950290381908417, 0.05829300358891487, 0.014758966863155365, 0.033144861459732056, -0.028228845447301865, -0.028228845447301865, -0.02949608489871025, -0.017850594595074654, -0.010951787233352661, -0.026306139305233955, -0.03917517140507698, 0.010607666335999966, -0.00019664056890178472, 0.0030014999210834503, -0.0028185148257762194, 0.03449949622154236, -0.004080291837453842, 1.7602915249881335e-05, -0.02405569702386856, 0.04039871320128441, -0.004317899234592915, -0.010334554128348827, 0.01656150631606579, -0.023225435987114906, -0.013185842894017696, -0.009619001299142838, 0.020024564117193222, -0.01368836872279644, 0.0038863823283463717, -0.01960943453013897, 0.012158941477537155, 0.005647954065352678, -0.0033073851373046637, -0.0038181045092642307, 0.012683317065238953, 0.003872726811096072, -0.00041376453009434044, -0.02929944545030594, -0.026502778753638268, 0.016485033556818962, 0.030151553452014923, 0.010798844508826733, 0.019445568323135376, -0.017402689903974533, -0.03286082297563553, -0.04680045694112778, 0.02007918618619442, 0.018801024183630943, -0.004413488321006298, 0.022340552881360054, -0.002497608307749033, 0.005574213806539774, 0.003919155802577734, 0.020177507773041725, -0.013404332101345062, -0.012093394994735718, 0.010460185818374157, -0.015927886590361595, 0.007597973104566336, 0.03187762200832367, -0.011885830201208591, 0.0200464129447937, 0.008308064192533493, -0.026131346821784973, 0.007516039535403252, -0.007226541172713041, 0.009766481816768646, -0.03677178546786308, -0.019511114805936813, 0.018975814804434776, -0.022373327985405922, -0.012781636789441109, 0.018320346251130104, -0.028709523379802704, 0.042124778032302856, 0.0017861519008874893, -0.024011999368667603, 0.04697524756193161, 0.03782053664326668, 0.05689467117190361, -0.016834618523716927, -0.025628820061683655, 0.03233645111322403, 0.007974867708981037, 0.06899899244308472, -0.0003108354867435992, 0.01651780866086483, 0.0010767437051981688, -0.010536657646298409, -0.01719512604176998, -0.05243748426437378, 0.028381789103150368, 0.009351351298391819, -0.0007257948745973408, -0.022067442536354065, 0.026808664202690125, -0.010492959059774876, -0.021838027983903885, -0.04391639307141304, -0.04459371045231819, -0.019292624667286873, 0.008116886019706726, -0.028425486758351326, 0.00591014139354229, 0.0009736439096741378, -0.0056752655655145645, 0.0235968679189682, 0.02853473089635372, 0.03729616105556488, 0.010432874783873558, -0.001566296792589128, -0.012333733960986137, 0.009373200125992298, -0.03478353098034859, 0.03185577318072319, 0.03993988409638405, 0.04278024658560753, 0.007630746345967054, 0.024951502680778503, 0.022744759917259216, -0.013196767307817936, 0.00838999729603529, -0.00519185746088624, -0.013906857930123806, -0.004162225406616926, -0.009547991678118706, 0.04033316671848297, 0.0043206303380429745, -0.003509487956762314, 0.0010043689981102943, 0.01603713072836399, 0.019063210114836693, -0.020210281014442444, 0.006549223326146603, 0.014606024138629436, 0.01261776965111494, -0.013983329758048058, 0.02313804067671299, 0.00033729319693520665, -0.04035501554608345, -0.05597701668739319, 0.0017151427455246449, 0.014584175311028957, 0.013273238204419613, 0.021117012947797775, 0.011492548510432243, 0.021302727982401848, -0.0007121392991393805, 0.01037279050797224, 0.03611631691455841, -0.0273548886179924, 0.016627052798867226, 0.03618186339735985, 0.0471937358379364, -0.003402974223718047, -0.0037307085003703833, -0.019412793219089508, 0.006046697497367859, 0.026830513030290604, -0.0016987560084089637, 0.01677999459207058, 0.000824115180876106, -0.03301376849412918, 0.03183392435312271, -0.03194316849112511, -0.0025617897044867277, 0.019008588045835495, 0.007051749154925346, -0.006571072153747082, -0.010662288405001163, -0.012519449926912785, 0.012781636789441109, -0.001502115512266755, -0.04090123996138573, 0.00919294636696577, 0.026131346821784973, -0.00424142787232995, -0.053966913372278214, 0.00478218961507082, -0.018779175356030464, -0.02879691869020462, -0.003566841362044215, -0.02052709087729454, -0.019653132185339928, -0.0142782898619771, 0.021564915776252747, -0.02074558101594448, 0.03425915539264679, -0.0329919196665287, -0.0075433505699038506, 0.00852109119296074, -0.008461006917059422, 0.023006945848464966, -0.04201553389430046, 0.0044599175453186035, -0.02033044956624508, -0.00672401487827301, -0.00946059636771679, 0.032729730010032654, -0.009116475470364094, -0.013251389376819134, -0.005637029651552439, 0.025454029440879822, 0.027922961860895157, 0.06305607408285141, 0.031003663316369057, 0.0050880745984613895, -0.018549760803580284, -0.0005291543202474713, 0.002789838006719947, 0.032948218286037445, 0.014835438691079617, -0.047106340527534485, 0.0034357476979494095, -0.0023446655832231045, 0.00016992681776173413, -0.00792024563997984, -0.0072702388279139996, 0.0010036862222477794, 0.01533796451985836, 0.009274880401790142, 0.0203086007386446, -0.012453902512788773, 0.01798168756067753, -0.017020333558321, -0.023771660402417183, -0.009941273368895054, 0.01632116734981537, 0.000108135245682206, 0.02098591811954975, -0.020931296050548553, -0.012956428341567516, -0.005762661341577768, 0.0010344113688915968, -0.005383035633713007, 0.043523114174604416, -0.002164411824196577, 0.0011402422096580267, 0.0010958615457639098, -0.0008828342542983592, 0.029933065176010132, -0.021543066948652267, 0.0042386967688798904, 0.024842258542776108, -0.008897985331714153, 0.023006945848464966, 0.0029031794983893633, 0.0025617897044867277, 0.03587597981095314, -0.03733985871076584, -0.011558095924556255, -0.007193767465651035, -0.015753094106912613, 0.03336334973573685, -0.01821110211312771, -0.006068546324968338, 0.017795970663428307, -0.05025259032845497, -0.04846097528934479, -0.026043951511383057, -0.014289215207099915, -0.02641538344323635, 0.007980329915881157, -0.0031271313782781363, 0.009974046610295773, -0.019511114805936813, -0.016845542937517166, 0.007854698225855827, 0.0017834206810221076, -0.025169992819428444, -0.0012194446753710508, -0.0019213422201573849, 0.004022938199341297, 0.006822335533797741, -0.032467544078826904, -0.016157299280166626, 0.03421545773744583, -0.006106782238930464, -0.00478492071852088, 0.01955481246113777, 0.012180791236460209, 0.021422898396849632, -0.02099684253334999, -0.03511126711964607, -0.027049003168940544, -0.026306139305233955, -0.03508941829204559, 0.02829439379274845, -0.016627052798867226, -0.050908058881759644, -0.016583355143666267, 0.0023665146436542273, -0.0019827925134450197, -0.010924476198852062, -0.016179149970412254, -0.005986612755805254, 0.018374968320131302, -0.013994254171848297, 0.005290177650749683, -0.00010403856867924333, 0.00424962118268013, 0.020363222807645798, -0.008657647296786308, 0.00019100763893220574, 0.0057571991346776485, 0.00280759041197598, -0.020024564117193222, 0.005708038806915283, -0.021357350051403046, -0.005377573426812887, -0.033625535666942596, -0.01109380554407835, 0.008903448469936848, 0.013371558859944344, -0.01677999459207058, 0.022264081984758377, -0.00301242433488369, -0.015753094106912613, -0.020680032670497894, 0.008182432502508163, -0.02429603412747383, 0.001195547403767705, 0.014332912862300873, 0.03851970285177231, 0.011689189821481705, -0.0007469610427506268, 0.0026027564890682697, -0.013939631171524525, 0.003056122222915292, 0.027682622894644737, 0.0057571991346776485, -0.0015963390469551086, 0.005686189979314804, -0.022854004055261612, -0.0285565797239542, -0.03626926243305206, -0.011427002027630806, 0.02663387358188629, -0.010558506473898888, -0.01002320647239685, -0.013546350412070751, 0.008947146125137806, 0.015075776726007462, 0.03203056380152702, -0.025803612545132637, -0.037907931953668594, -0.02691790834069252, -0.042146630585193634, -0.00591014139354229, -0.01605897955596447, -0.011022796854376793, -0.02076742984354496, 0.026087649166584015, -0.0031817536801099777, 0.002747505670413375, -0.021433822810649872, 0.0009654505993239582, -0.03168098255991936, -0.022701062262058258, -0.0010494324378669262, -0.001588145736604929, 0.02315988950431347, -0.02078927867114544, -0.019707754254341125, -0.05138873681426048, 0.0010030034463852644, -0.007761840242892504, 0.009040003642439842, -0.009903037920594215, 0.018265724182128906, 0.023924602195620537, 0.018003536388278008, -0.016222847625613213, -0.03616001456975937, 0.006904269102960825, -0.04312983155250549, 0.0028349014464765787, 0.025891007855534554, -0.02029767632484436, 0.0004898944753222167, 0.0363348089158535, -0.027791867032647133, -0.024885956197977066, -0.048023998737335205, 0.0072156162932515144, -0.007150069810450077, -0.014813589863479137, -0.006745864171534777, -0.01121943723410368, -0.002706538885831833, -0.0057517364621162415, 0.036749936640262604, -0.002758430317044258, 0.029408689588308334, 0.013251389376819134, 0.0036160016898065805, -0.0023596868850290775, -0.00862487405538559, -0.0069151935167610645, 0.008723193779587746, 0.01024715881794691, 0.019500190392136574, -0.015294266864657402, 0.02026490308344364, -0.04068274796009064, 0.024427128955721855, -0.006767712999135256, 0.019740527495741844, 0.011547171510756016, 0.02172878384590149, 0.03421545773744583, -0.008930759504437447, 0.030741475522518158, -0.01653965748846531, -0.0238590557128191, 0.026961607858538628, 0.008848825469613075, 0.00425508338958025, -0.0026054875925183296, 0.0011627739295363426, 0.012224488891661167, 0.01581864058971405, 0.025104446336627007, -0.005475893616676331, 0.023312831297516823, -0.021324576810002327, 0.019948093220591545, -0.02075650542974472, -0.01024715881794691, -0.011667340062558651, 0.006893344223499298, -0.010837079957127571, -0.023990148678421974, 0.02879691869020462, 0.026327988132834435, -0.001731529482640326, -0.0005906044971197844, -0.015185021795332432, 0.013174918480217457, 0.08119070529937744, -0.006756788585335016, -0.013546350412070751, 0.00019595779303926975, -0.026808664202690125, -0.0016837348230183125, 0.026262439787387848, -0.019085058942437172, 0.017632104456424713, -0.06323086470365524, -0.009520680643618107, -0.011732887476682663, -0.00519731966778636, -0.0036214638967067003, 0.0038262978196144104, -0.002666937652975321, -0.018702702596783638, 0.003566841362044215, -0.007821924984455109, 0.020690957084298134, 0.02200189419090748, 0.01014883816242218, 0.023902753368020058, -0.01014883816242218, -0.013196767307817936, -0.006822335533797741, 0.02479856088757515, 0.016692599281668663, -0.04601389169692993, -0.01911783404648304, 0.03605077043175697, -0.01038371492177248, -0.032948218286037445, -0.017588406801223755, -0.021127937361598015, -0.014584175311028957, 0.01201692409813404, 0.014584175311028957, -0.01609175279736519, 0.02617504447698593, 0.041185274720191956, -0.02995491400361061, 0.04035501554608345, 0.020188432186841965, 0.03449949622154236, 0.018069082871079445, 0.009132862091064453, -0.005926528479903936, -0.0021521218586713076, -0.03725246340036392, 0.03473983332514763, 0.008717731572687626, -0.01861530728638172, 0.012311884202063084, 0.015960659831762314, 0.02669942006468773, -0.011863981373608112, -0.019969942048192024, -0.008777816779911518, -0.00436979066580534, 0.011416077613830566, -0.0034302854910492897, -0.007630746345967054, 0.024405280128121376, 0.012300959788262844], [0.02410367876291275, -0.010515027679502964, 0.05843617394566536, -0.0030487356707453728, -0.021017611026763916, 0.04858066886663437, -0.024526767432689667, 0.05276179313659668, -0.003860695054754615, 0.011983398348093033, 0.00874178297817707, -0.01045903004705906, 0.034992020577192307, 0.022361543029546738, -0.012207387015223503, 0.05042235553264618, 0.02181401476264, 0.014484605751931667, -0.02442721650004387, -0.01238782238215208, 0.02921808697283268, -0.0018852385692298412, -0.005777043290436268, -0.0019070153357461095, -0.04843134433031082, -0.005497056990861893, 0.007242302875965834, 0.004968194756656885, 0.03260280564427376, -0.09238291531801224, 0.06585269421339035, -0.049401961266994476, 0.05325954779982567, -0.016562722623348236, 0.02032075636088848, -0.0007349631050601602, -0.0009535076678730547, 0.04151258245110512, 0.014484605751931667, -0.0023876577615737915, -0.00021660022321157157, 0.03302589803934097, 0.0042433422058820724, -0.00039100812864489853, 0.009538187645375729, 0.01814308948814869, 0.011137218214571476, -0.03155752643942833, 0.01902659982442856, 0.053408872336149216, 0.02799859270453453, 0.026405785232782364, -0.007298300042748451, 0.03349876031279564, 0.02076873369514942, 0.01085101068019867, -0.015890756621956825, 0.024402329698204994, 0.061522241681814194, -0.033249884843826294, -0.036037299782037735, 0.009544409811496735, -0.031980615109205246, 0.06739572435617447, -0.014521936886012554, -0.010819900780916214, -0.04123881831765175, 0.03056202083826065, -0.024004127830266953, -0.005316621623933315, -0.02687864936888218, 0.001397596439346671, 0.013812639750540257, -0.08093459904193878, -0.019412357360124588, -0.002543205628171563, -0.02210022322833538, -0.016102302819490433, 0.0011137218680232763, 0.024290334433317184, -0.02259797602891922, 0.04417555779218674, 0.00429933937266469, 0.015517442487180233, 0.040765952318906784, -0.02487519569694996, -0.05121875926852226, 0.015940532088279724, -0.009177316911518574, -0.0031731738708913326, -0.05823707580566406, -0.008828889578580856, 0.0004954195464961231, 0.06649976968765259, 0.02048252709209919, 0.0341707281768322, 0.038202524185180664, -0.007192527409642935, -0.003120287787169218, 0.048331793397665024, -0.021079830825328827, -0.013302442617714405, 0.01658761128783226, -0.0070494236424565315, 0.003387829754501581, -0.05370752513408661, -0.023419268429279327, 0.02182645909488201, 0.024750756099820137, -0.01585342548787594, -0.002834079787135124, -0.03618662804365158, -0.00022923848882783204, 0.05490213260054588, 0.002014343161135912, -0.001064724288880825, -0.011398538947105408, -0.010060828179121017, 0.009108875878155231, 0.010788790881633759, -0.026579998433589935, 0.005671270657330751, 0.03307567164301872, -0.09148696064949036, -0.03952157124876976, -0.026480447500944138, -0.00993638951331377, -0.043379154056310654, -0.03962112218141556, 0.011989619582891464, 0.01781954988837242, -0.036311063915491104, 0.020407862961292267, -0.03245348110795021, -0.010471474379301071, 0.003241614904254675, -0.005269957706332207, -0.04676387459039688, -0.007186305709183216, 0.003748700488358736, 0.032702356576919556, -0.011578974314033985, -0.004678876139223576, -0.0015095907729119062, -0.060476962476968765, 0.00032081722747534513, 0.01993499882519245, 0.015281010419130325, 0.008281361311674118, -0.011261656880378723, -0.04554437845945358, 0.010782569646835327, -0.018342189490795135, -0.01870306022465229, -0.01869061589241028, 0.05704246833920479, -0.004016242455691099, 0.02198822796344757, 0.0176951102912426, -0.02492496930062771, -0.03347387537360191, -0.034270279109478, -0.01618940941989422, 0.0029802946373820305, 0.01724713295698166, -0.025273397564888, -0.029566515237092972, 0.02203800342977047, -0.06988448649644852, -0.029591402038931847, -0.06615134328603745, -0.03412095084786415, -0.04392668232321739, -0.021627357229590416, -0.002292773686349392, -0.05415550246834755, 0.002768749836832285, 0.0003616485046222806, -0.009992387145757675, 0.01764533668756485, -0.0016239184187725186, 0.005077078472822905, -0.026132021099328995, -0.016575166955590248, -0.04858066886663437, 0.026754211634397507, 0.006305905524641275, 0.025957807898521423, -0.011858959682285786, 0.028571009635925293, 0.0012303825933486223, 0.028147919103503227, 0.014061516150832176, 0.05838640034198761, -0.03466847911477089, 0.028222581371665, -0.002701864344999194, 0.022336656227707863, -0.001897682435810566, -0.007236080709844828, 0.04103971645236015, -0.020582078024744987, 0.06644999235868454, 0.041213929653167725, -0.04676387459039688, -0.008505350910127163, 0.01758311688899994, 0.04295606538653374, 0.02911853790283203, -0.05734112113714218, 0.013513987883925438, -0.049053534865379333, -0.050347693264484406, 0.041388142853975296, -0.0241534523665905, 0.00693120714277029, -0.00265675550326705, 0.006713440641760826, 0.0009955056011676788, 0.046614546328783035, -0.007839606143534184, -0.018379520624876022, -0.03168196231126785, -0.04649011045694351, -0.031258873641490936, -0.003306945087388158, 0.011927400715649128, -0.05883437767624855, -0.004887309856712818, -0.05689314007759094, 0.008331136777997017, 0.04415066912770271, -0.012518482282757759, -0.008642232976853848, -0.028023481369018555, 0.01796887442469597, -0.0446484237909317, -0.04156235605478287, 0.013825083151459694, 0.03088556043803692, -0.006427232641726732, -0.01819286309182644, 0.028595896437764168, -0.00516418507322669, -3.943378487747395e-06, -0.00915865134447813, -0.006144135724753141, -0.006589002441614866, 0.06435943394899368, 0.04178634658455849, 0.01514412835240364, -0.05042235553264618, 0.04915308579802513, -0.0871565118432045, 0.016488060355186462, 0.03845140337944031, 0.007273412309587002, -0.06585269421339035, 0.03491735830903053, -0.022237105295062065, 0.007578285876661539, 0.005895259324461222, -0.016114745289087296, 0.035813312977552414, -0.04113926738500595, 0.009643959812819958, 0.054354604333639145, -0.019561683759093285, -0.023643257096409798, 0.04975039139389992, -0.0705813467502594, -0.0019770117942243814, 0.02427789196372032, -0.002137226052582264, 0.0017810215940698981, 0.03461870551109314, 0.008020041510462761, -0.05276179313659668, -0.0004600324318744242, 0.014472161419689655, -0.058187298476696014, 0.0009597295429557562, -0.021789127960801125, -0.03332454711198807, 0.023904576897621155, 0.004793981555849314, -0.0029600735288113356, -0.02492496930062771, -0.025509828701615334, 0.012431375682353973, 0.07471269369125366, -0.004296228755265474, 0.006943651009351015, -0.029292751103639603, 0.02331971749663353, 0.012362934648990631, -0.05679359287023544, -0.00532906549051404, 0.003400273621082306, -0.022187329828739166, -0.011616305448114872, 0.04151258245110512, 0.05704246833920479, -0.021975785493850708, -0.01152297668159008, -0.000338899641064927, -0.02509918436408043, 0.040815725922584534, 0.003098510904237628, -0.0025929808616638184, -0.010508805513381958, 0.07610639929771423, -0.025982694700360298, -0.01585342548787594, -0.03947179391980171, -0.030263368040323257, -0.052114713937044144, -0.027027975767850876, 0.027077751234173775, -0.01216383371502161, 0.03536533564329147, 0.03511645644903183, 0.0013921522768214345, -0.03601241484284401, 0.010197710245847702, -0.013538875617086887, 0.03628617897629738, 0.06251774728298187, -0.04910331219434738, -0.05325954779982567, -0.04671409726142883, -0.003159174695611, 0.03957134485244751, -0.0027703053783625364, 0.03561421111226082, 0.002354992786422372, 0.0002228221419500187, 0.030039379373192787, 0.030512245371937752, -0.006150357890874147, 0.038600727915763855, 0.010029718279838562, -0.0027049751952290535, -0.01819286309182644, 0.007173861842602491, 0.010869676247239113, 0.05923258140683174, 0.08183055371046066, 0.010776347480714321, 0.02867056056857109, -0.012375378049910069, 0.026853762567043304, -0.016824044287204742, -0.014409942552447319, -0.03006426803767681, -0.026455560699105263, -0.029093649238348007, 0.004871755372732878, -0.001134720747359097, 0.022025560960173607, 0.04168679565191269, 0.016836486756801605, 0.020843397825956345, 0.03212993964552879, 0.05014859139919281, -0.013364661484956741, -0.02192601002752781, 0.03947179391980171, 0.07227370142936707, -0.04320494085550308, 0.028869660571217537, 0.0633639246225357, 0.028371907770633698, 0.020221207290887833, -0.012026951648294926, -0.030462469905614853, 0.05096988379955292, 0.016127189621329308, -0.03491735830903053, 0.015542330220341682, 0.008324915543198586, 0.003338054521009326, 0.005724156741052866, 0.010303482413291931, 0.03501690924167633, 0.03862561658024788, -0.07735078036785126, 0.01676182448863983, -0.014248172752559185, 0.0034096064046025276, -0.0014395943144336343, -0.007435182109475136, -0.01781954988837242, 0.021117161959409714, -0.03723190724849701, 0.0306615699082613, 0.06321460008621216, 0.009227092377841473, 0.0020936725195497274, 0.01021015364676714, 0.0063401260413229465, -0.045619040727615356, 0.0002893187920562923, -0.028471458703279495, -0.001606808160431683, 0.00831869337707758, -0.015343229286372662, 0.010259929113090038, 0.03272724524140358, -0.022125110030174255, 0.04795847833156586, 0.020743846893310547, 0.06475763767957687, 0.0217642392963171, -0.011205659247934818, -0.019910110160708427, -0.026181796565651894, 0.04653988406062126, 0.007111642509698868, -0.014845476485788822, 0.019300363957881927, 0.043827131390571594, 0.010197710245847702, 0.029765615239739418, -0.023357048630714417, 0.01607741415500641, 0.02030831389129162, 0.03870027884840965, -0.019275475293397903, -0.07316965609788895, 0.027575504034757614, 0.01653783582150936, 0.03695814311504364, 0.021079830825328827, -0.038426514714956284, -0.01088211964815855, 0.02465120516717434, 0.015069465152919292, -0.04335426539182663, -0.00859867874532938, -0.01585342548787594, 0.02705286256968975, 0.02259797602891922, -0.007316965609788895, -0.0034593818709254265, 0.04541993886232376, -0.016736937686800957, 0.009395083412528038, -0.04061662778258324, 0.03178151324391365, -0.005070856306701899, -0.009283089078962803, -0.09039190411567688, 0.0188150554895401, -0.04011887311935425, 0.02737640216946602, -0.040765952318906784, -0.05554920807480812, 0.036311063915491104, -0.005083300173282623, -0.003546488471329212, 0.05490213260054588, 0.0495264008641243, 0.05619628727436066, 0.003062735078856349, 0.023730363696813583, -0.04691319912672043, -0.02677909843623638, 0.008356024511158466, 0.010110603645443916, 0.004949529189616442, 0.01467126328498125, -0.0056246062740683556, -0.01925058849155903, 0.044275108724832535, 0.011759409680962563, -0.0070494236424565315, -0.06973516196012497, -0.016463173553347588, -0.0242032278329134, 0.020109212026000023, 0.020246094092726707, -0.03606218844652176, -0.04370269179344177, 0.048729997128248215, 0.03235393017530441, 0.03128376230597496, -0.018802611157298088, -0.03011404350399971, -0.005176628939807415, -0.00610991520807147, -0.002815414220094681, 0.046340782195329666, -0.012226052582263947, -0.006231242325156927, 0.015231234952807426, -0.034320052713155746, 0.006912541575729847, 0.002087450586259365, -0.014559268951416016, 0.028844773769378662, -0.04131348058581352, 0.025136515498161316, -0.033822301775217056, 0.04245831072330475, -0.009152429178357124, 0.00036223180359229445, -0.026729322969913483, 0.0034469380043447018, -0.026356009766459465, -0.026853762567043304, 0.05594741180539131, 0.017844436690211296, -0.005089521873742342, -0.027351515367627144, -0.0259329192340374, 0.00946352444589138, -0.006004143040627241, -0.013800195418298244, -0.015828538686037064, 0.006924985442310572, -0.04019353538751602, -0.021054942160844803, -0.009625294245779514, -0.030636683106422424, 0.007540954276919365, -0.00918353907763958, -0.043379154056310654, -0.00826891791075468, 0.0399695485830307, -0.01830485835671425, -0.053956400603055954, -0.01814308948814869, 0.009892836213111877, 0.007341853342950344, -0.0006463008467108011, 0.00485620042309165, 0.012736248783767223, 0.007752499543130398, -0.035539548844099045, 0.02504940889775753, 0.010645687580108643, 0.011236769147217274, 0.028819885104894638, 0.008007598109543324, 0.005739711690694094, 0.013066010549664497, 0.01438505481928587, 0.002823191462084651, 0.008455575443804264, -0.004277562722563744, 0.021726908162236214, -0.014260617084801197, -0.0282723568379879, -0.00859867874532938, 0.01372553315013647, 0.0013929300475865602, -0.02242376282811165, 0.028023481369018555, -0.013078453950583935, 0.003338054521009326, 0.018628397956490517, -0.01316556055098772, 0.011560307815670967, 0.029740728437900543, 0.004622878972440958, 0.00605080695822835, -0.012250940315425396, -0.012866909615695477, -0.006243686191737652, -0.015181459486484528, 0.03984510898590088, 0.0026816430035978556, -0.016102302819490433, 0.046440333127975464, 0.028147919103503227, 0.013551319018006325, -0.012530925683677197, 0.04375246912240982, -0.004663321189582348, 0.0068876538425683975, 0.040541961789131165, -0.026928424835205078, 0.007702724076807499, -0.007690280210226774, -0.005913925357162952, -0.01386241428554058, -0.0306615699082613, -0.009419971145689487, 0.03606218844652176, 0.005052190739661455, 0.02304595336318016, 0.00932042021304369, 0.0038046976551413536, -0.013563763350248337, 0.05042235553264618, -0.007316965609788895, -0.0022414429113268852, 0.01485791988670826, 0.02065674029290676, 0.030412694439291954, -0.019275475293397903, -0.01368820108473301, 0.007814718410372734, -0.03700792044401169, -0.04051707684993744, 0.025509828701615334, -0.005139297340065241, 0.005764599423855543, 0.01697336882352829, 0.04375246912240982, 0.020694071426987648, 0.0017328017856925726, -0.05933213233947754, -0.03272724524140358, 0.00918353907763958, -0.006060140207409859, -0.03352364897727966, -0.0015718098729848862, 0.00024129344092216343, -0.028819885104894638, 0.0026614218950271606, 0.034867580980062485, 0.008362246677279472, -0.017172470688819885, -0.014011740684509277, -0.007671614643186331, -0.028347020968794823, 0.0007334076217375696, 0.011249212548136711, -0.02993982844054699, 0.02809814363718033, -0.0047255405224859715, -0.016836486756801605, 0.008119592443108559, -0.03145797550678253, 0.03618662804365158, -0.007379184942692518, 0.028222581371665, 0.009619072079658508, 0.011019001714885235, 0.02710263803601265, 0.007043201941996813, -0.02093050442636013, 0.028620785102248192, 0.010060828179121017, 0.03061179630458355, 0.028919436037540436, 0.007323187775909901, 0.013028678484261036, 0.023232610896229744, -0.0034936023876070976, 0.0069685387425124645, -0.026629773899912834, 0.02376769483089447, -0.008642232976853848, -0.01796887442469597, 0.029690952971577644, 0.030985109508037567, 0.027525728568434715, -0.025410279631614685, 0.010558580979704857, 0.0004814202548004687, 0.01725957728922367, 0.03947179391980171, -0.016848931089043617, 0.021776683628559113, -0.002620979445055127, -0.004178012255579233, 0.024725869297981262, -0.01748356595635414, 0.0283221323043108, 0.012792246416211128, -0.005714823957532644, -0.029690952971577644, -0.014434830285608768, -0.034369830042123795, 0.03541510924696922, -0.029068762436509132, -0.0011207214556634426, -0.03282679617404938, -0.029790503904223442, -0.013501543551683426, 0.004551326856017113, -0.011068777181208134, -0.011678524315357208, 0.031532637774944305, -0.01541789248585701, -0.0020812288857996464, -0.012524704448878765, -0.017458679154515266, 0.0364106148481369, 0.005111298989504576, -0.018454184755682945, 0.020557189360260963, 0.048232242465019226, -0.020246094092726707, -0.029516739770770073, -0.028645671904087067, -0.03613685071468353, 0.018466627225279808, 0.002711197128519416, -0.007889381609857082, -0.03606218844652176, -0.03827718645334244, -0.018217751756310463, -0.026903538033366203, 0.009034212678670883, 0.05121875926852226, 0.026082245633006096, -0.015990307554602623, -0.01819286309182644, -0.03929758071899414, -0.025236066430807114, -0.02677909843623638, 0.029815390706062317, -0.010116824880242348, -0.009220870211720467, 0.0011020557722076774, -0.0008819556678645313, -0.010546136647462845, 0.029641177505254745, -0.027575504034757614, -0.006713440641760826, 0.005836151074618101, 0.0015235901810228825, -0.01926303282380104, 0.014833033084869385, -0.0045637707225978374, 0.03379741311073303, 0.06406078487634659, -0.02081850916147232, -0.0015041466103866696, -0.011659858748316765, 0.005503279156982899, 0.010539915412664413, -0.025372948497533798, 0.02126648649573326, -0.02270996943116188, -0.013066010549664497, 0.015467667020857334, -0.0306615699082613, 0.011560307815670967, -0.029690952971577644, -0.005238847807049751, -0.04079084098339081, 0.015281010419130325, 0.01467126328498125, -0.012362934648990631, 0.039048705250024796, -0.0146961510181427, 0.009494634345173836, -0.013489100150763988, -0.024962302297353745, -0.03591286391019821, -0.009706178680062294, -0.0021745574194937944, 0.037654995918273926, 0.0019225700525566936, 0.007883159443736076, 0.015940532088279724, 0.014521936886012554, 0.012058060616254807, 0.04387690871953964, 0.005686825606971979, -0.01202072948217392, -0.026480447500944138, -0.007024535909295082, 0.022971291095018387, -0.024501880630850792, -0.002714307978749275, 0.03534044697880745, 0.06057651340961456, 0.009662625379860401, -0.007379184942692518, 0.006937429308891296, -0.006862766575068235, -0.018852386623620987, -0.024564098566770554, -0.027227075770497322, 0.02809814363718033, 0.0018727948190644383, -0.003194950520992279, 0.006949873175472021, 0.02993982844054699, -0.01129898801445961, 0.022635307163000107, 0.004921530373394489, 0.039098478853702545, -0.01820530742406845, -0.017620448023080826, -0.01931280829012394, -0.014335280284285545, -0.003338054521009326, -0.003916691988706589, -0.0010553913889452815, 0.02610713243484497, -0.03491735830903053, -0.03942202031612396, 0.009892836213111877, -0.04273207485675812, 0.0011199436848983169, -0.017844436690211296, 0.011516754515469074, 0.08730583637952805, -0.01082612294703722, -0.014783257618546486, 0.021838903427124023, -0.03444449231028557, -0.0038669167552143335, -0.03290145844221115, 0.02715241350233555, -0.028247470036149025, 0.007167640142142773, 0.015778763219714165, -0.047834042459726334, 0.0038980264216661453, 0.01971101015806198, -0.002536983694881201, 0.009830617345869541, -0.0032820573542267084, -0.03563909977674484, 0.000700742588378489, 0.0049650841392576694, -0.005503279156982899, -0.014571712352335453, -0.0068876538425683975, -0.00518907280638814, 0.0021652246359735727, 0.006868988275527954, -0.00709919910877943, -0.014472161419689655, 0.01920081302523613, -0.010197710245847702, -0.017931543290615082, 0.0019505686359480023, -0.006330793257802725, -0.021726908162236214, 0.007883159443736076, -0.004750428255647421, 0.05082055926322937, -0.04308050125837326, -0.02098027989268303, -0.023182835429906845, -0.036535054445266724, 0.013750419951975346, 0.002908742753788829, 0.007105420809239149, -0.07172617316246033, 0.005353953223675489, 0.0048810881562530994, -0.0293923020362854, -0.029317637905478477, -0.03088556043803692, 0.023083284497261047, 0.004417555872350931, 0.0024529879447072744, -0.025410279631614685, -0.006924985442310572, 0.008387134410440922, -0.018553733825683594, 0.008107148110866547, 0.00854268204420805, -0.027251964434981346, 0.02376769483089447, -0.004983749706298113, 0.018230196088552475, 0.010564802214503288, 0.022573087364435196, -0.03329966217279434, 0.003751811571419239, -0.005923258140683174, 0.0008547348552383482, -0.00993638951331377, -0.01908881962299347, -0.03078600950539112, -0.02854612097144127, 0.003674037754535675, 0.027799492701888084, 0.006212576758116484, -0.018951937556266785, 0.0019847892690449953, -0.007086755242198706, -0.008511572144925594, -0.007453847676515579, -0.03484269231557846, -0.029765615239739418, 0.06082538887858391, 0.03215482831001282, 0.01764533668756485, 0.006053918041288853, 0.01363842561841011, 0.010303482413291931, 0.015728987753391266, -0.01679915562272072, -0.01397440955042839, -0.01647561602294445, -0.013937077485024929, -0.0015546997310593724, 0.02961629070341587, -0.02620668336749077, -0.031134435907006264, -0.024240560829639435, -0.022286880761384964, -0.03636084124445915, -0.007335631642490625, -0.002711197128519416, -0.007111642509698868, 0.02232421189546585, -0.018454184755682945, 0.053359098732471466, 0.0021823348943144083, 0.004184234421700239, -0.07008358836174011, 0.0085177943110466, 0.012394043616950512, -0.02492496930062771, -0.001281713368371129, 0.040765952318906784, -0.005963700357824564, 0.03678392991423607, -0.007715167943388224, 0.01162874884903431, -0.014932583086192608, -0.0023129950277507305, 0.0059450347907841206, -0.013153117150068283, 0.01514412835240364, 0.015679212287068367, 0.003543377621099353, 0.01586586982011795, 0.05455370247364044, 0.041885897517204285, 0.051467638462781906, -0.002106116386130452, 0.007609395310282707, 0.007111642509698868, 0.002207222394645214, 0.017682667821645737, 0.0016721382271498442, 0.018628397956490517, 0.020855840295553207, 0.007727611809968948, -0.004918419755995274, 0.006943651009351015, -0.005649494007229805, -0.0058579277247190475, -0.02037053182721138, 0.010048383846879005, -0.008387134410440922, 0.014098847284913063, -0.025360504165291786, 0.022834409028291702, -0.025758706033229828, -0.007646726910024881, 0.024128565564751625, 0.04529550299048424, -0.0164258424192667, 0.013016235083341599, -0.002683198545128107, 0.021291375160217285, 0.011504311114549637, 0.03439471498131752, -0.043155163526535034, 0.034593816846609116, 0.03043758124113083, -0.03215482831001282, -0.020569633692502975, 0.0060974713414907455, 0.027351515367627144, -0.020519858226180077, -0.025024520233273506, 0.03551466017961502, 0.03633595257997513, 0.01948702149093151, -0.008063594810664654, 0.028819885104894638, 0.009550631046295166, 0.006669887341558933, 0.02193845435976982, 0.012618033215403557, -0.009307976812124252, 0.02961629070341587, 0.009556853212416172, -0.02465120516717434, 0.025733819231390953, 0.011261656880378723, -0.013650869950652122, 0.0012031617807224393, -0.0031000664457678795, -0.006063250824809074, 0.003670926671475172, 0.03449426591396332, 0.0064147887751460075, -0.007889381609857082, 0.009469746612012386, 0.03573865070939064, 0.003779810154810548, 0.02732662670314312, 0.02460143156349659, 0.046440333127975464, 0.008984437212347984, 0.004115793388336897, 0.008443131111562252, 0.003356720320880413, 0.008262695744633675, 0.03680881857872009, 0.0030845117289572954, -0.028819885104894638, -0.0069747609086334705, 0.025858256965875626, -0.007416516542434692, -0.015156571753323078, 0.01224471814930439, -0.014409942552447319, 0.0030300701037049294, -0.02081850916147232, -0.02804836817085743, -0.026928424835205078, 0.027675054967403412, -0.037729661911726, 0.0121016139164567, 0.02154025062918663, 0.006682330742478371, 0.011261656880378723, 0.003222949104383588, 0.018342189490795135, 0.012356712482869625, 0.02165224589407444, 0.00996127724647522, 0.0029180755373090506, -0.019835447892546654, -0.028197694569826126, 0.01615207828581333, 0.018180420622229576, 0.0010133935138583183, -0.018230196088552475, -0.032478369772434235, 0.005814374424517155, 0.02993982844054699, 0.0033162778709083796, -0.019063930958509445, -0.02633112110197544, 0.012157611548900604, 0.00893466267734766, -0.009233313612639904, 0.03021359257400036, 0.015791207551956177, 0.0006011920049786568, 0.013762864284217358, 0.010714128613471985, 0.03583819791674614, -0.03389696404337883, -0.0259329192340374, 0.007298300042748451, -0.025173846632242203, -0.0022243326529860497, -0.03897404298186302, -0.005450393073260784, 0.010502583347260952, 0.00010392533295089379, -0.02160247042775154, -0.001777910627424717, 0.014310392551124096, -0.011697189882397652, 0.017110250890254974, -0.04074106365442276, 0.005758377257734537, 0.016052527353167534, -0.012736248783767223, 0.011417204514145851, 0.02232421189546585, 0.01519390381872654, 0.06211954727768898, 0.02216244302690029, 0.0008648454677313566, -0.039446908980607986, -0.04069129005074501, -0.008928440511226654, -0.014235729351639748, -0.0057832649908959866, 0.008841333910822868, 0.010222597979009151, -0.036485277116298676, -0.021291375160217285, 0.0051206317730247974, -0.019101262092590332, -0.008038707077503204, -0.0030565131455659866, -0.007372962776571512, -0.009780841879546642, 0.03655993938446045, 0.018130645155906677, -0.0033318325877189636, -0.028620785102248192, 0.01294157188385725, 0.0051206317730247974, 0.013563763350248337, -0.002098339144140482, 0.002804525662213564, 0.02214999869465828, 0.02809814363718033, -0.011311431415379047, -0.03825230151414871, 0.026704436168074608, -0.020905615761876106, 0.02381747029721737, 0.023531261831521988, 0.038326963782310486, 0.029068762436509132, 0.007460069842636585, 0.007354297209531069, 0.01981056109070778, -0.004697541706264019, 0.05004904046654701, 0.0014450384769588709, 0.008430687710642815, 0.021191824227571487, 0.011149662546813488, 0.026953313499689102, -0.03043758124113083, -0.022672638297080994, -0.03690836951136589, 0.004868644289672375, 0.033249884843826294, 0.007839606143534184, -0.02961629070341587, 0.06485718488693237, 0.006763215642422438, 0.02076873369514942, -0.0010476140305399895, -0.0253231730312109, 0.018715504556894302, -0.029417188838124275, -0.0012008285848423839, -0.004003799054771662, 0.0011129440972581506, -0.01444727461785078, 8.778725896263495e-05, 0.016463173553347588, 0.013240223750472069, -0.0050428579561412334, 0.006240575574338436, 0.02043275162577629, -0.029964717105031013, 0.04123881831765175, -0.008629788644611835, 0.06177112087607384, 0.012014507316052914, -0.015094352886080742, -0.013178004883229733, 0.0366097167134285, -0.010259929113090038, -0.023220166563987732, -0.007634283043444157, 0.014372611418366432, 0.024812975898385048, -0.021677132695913315, 0.04579325392842293, 0.005665048956871033, 0.02620668336749077, 0.025534717366099358, -0.005814374424517155, 0.013227780349552631, 0.03825230151414871, 0.010135490447282791, 0.018379520624876022, -0.008611123077571392, -0.008461796678602695, 0.015206347219645977, -0.0005728045362047851, -0.011460757814347744, -0.03168196231126785, 0.013364661484956741, -0.008947106078267097, -0.02477564476430416, 0.02326994203031063, -0.003387829754501581, 0.008001375943422318, 0.0023409936111420393, 0.009046657010912895, -0.0012677140766754746, -0.025559604167938232, -0.0234939306974411, -0.024962302297353745, 0.02471342496573925, 0.014235729351639748, -0.03123398683965206, 0.025111626833677292, -0.0217144638299942, -0.002571204211562872, -0.008878665044903755, 0.007777387276291847, -0.0011813851306214929, -0.035141345113515854, 0.01697336882352829, -0.011578974314033985, 0.02126648649573326, 0.013501543551683426, -0.03914825618267059, -0.021303819492459297, -0.01859106682240963, 0.018055981025099754, -0.00510507682338357, 0.0031078439205884933, -0.03984510898590088, -0.00035348223173059523, -0.0034936023876070976, 0.021030055359005928, -0.034643594175577164, 0.039322469383478165, -0.00034473268897272646, 0.004793981555849314, -0.012487372383475304, -0.026057356968522072, 0.0021792238112539053, 0.01585342548787594, -0.0015788095770403743, 0.0022289990447461605, 0.0010818345472216606, -0.02961629070341587, -0.03230415657162666, 0.02065674029290676, -0.010334592312574387, 0.020731402561068535, 0.003450048854574561, 0.005605940707027912, -0.016127189621329308, -0.005988588090986013, 0.05024814233183861, 0.025534717366099358, -0.010253706946969032, 0.0043242271058261395, 0.00021971118985675275, 0.046291008591651917, -0.022921515628695488, 0.024066345766186714, -0.020893173292279243, -0.012605588883161545, 0.006744550075381994, 0.01249359454959631, 0.014808145351707935, 0.004713096655905247, -0.03740612044930458, -0.028919436037540436, 0.02427789196372032, -0.02509918436408043, 0.02737640216946602, -0.020507413893938065, -0.01724713295698166, 0.02277218922972679, -0.0029102982953190804, -0.024452105164527893, 0.006781881675124168, -0.0004942529485560954, 0.0007695724489167333, -0.01105011161416769, -0.02299617789685726, -0.009189760312438011, 0.00809470470994711, -0.0023721030447632074, -0.027675054967403412, -0.028969211503863335, 0.018578622490167618, -0.0010515027679502964, 0.0045668818056583405, 0.0071303085424005985, 0.0036024856381118298, 0.0015764763811603189, 0.011211881414055824, 0.034643594175577164, 0.0038700278382748365, 0.00757206417620182, -0.03578842431306839, 0.04245831072330475, 0.03190595284104347, -0.004349114838987589, 0.01702314428985119, 0.008237808011472225, 0.037878986448049545, -0.020445195958018303, -0.0034376049879938364, -0.023867245763540268, -0.025036964565515518, -0.017558228224515915, 0.019001713022589684, 0.0108572319149971, -0.020992722362279892, 0.0077649434097111225, -0.004837534856051207, -0.0018774612108245492, -0.029541626572608948, 0.024626318365335464, -0.0030534020625054836, -0.031184211373329163, 0.027127526700496674, -0.0035371556878089905, -0.0076840585097670555, 0.010334592312574387, -0.0012148278765380383, -0.015567217953503132, 0.025186290964484215, -0.0003443438035901636, 0.0049588619731366634, -0.01870306022465229, 0.037157244980335236, 0.0004903642693534493, -0.021614914759993553, 0.0074414038099348545, 0.0031436197459697723, -0.03879982978105545, 0.004293117672204971, 0.015878314152359962, 0.004277562722563744, 0.0021698910277336836, -0.02248598076403141, -0.021191824227571487, -0.014397499151527882, -0.01796887442469597, 0.043777357786893845, -0.008928440511226654, -0.04370269179344177, -0.023394379764795303, -0.00016565834812354296, 0.025733819231390953, -0.02894432283937931, -0.005456614773720503, 0.014409942552447319, 0.006819212809205055, -0.008418243378400803, -0.0007913491572253406, -0.01012926921248436, 0.01786932535469532, 0.03516623377799988, 0.002404768019914627, -0.016687162220478058, 0.010894563980400562, 0.02665466070175171, 0.004184234421700239, 0.015019689686596394, -0.044723086059093475, -0.0041655683889985085, -0.06321460008621216, 0.03578842431306839, 0.023693032562732697, 0.052911121398210526, -0.00772139010950923, 0.030238481238484383, 0.0006509672966785729, 0.000909954309463501, -0.008996881544589996, -0.0064956736750900745, -0.039596233516931534, 0.012313159182667732, -0.01221983041614294, 0.0018836831441149116, 0.010987892746925354, 0.0684410035610199, 0.020905615761876106, -0.007858271710574627, 0.04569370299577713, 0.016848931089043617, -0.03312544524669647, 0.0012513815890997648, 0.0064210109412670135, -0.013078453950583935, -0.03227926790714264, 0.004193567205220461, -0.004150013905018568, 0.04524572566151619, -0.016500504687428474, 0.006389901041984558, 0.01841685175895691, -0.018441740423440933, -0.0011277211597189307, 0.02966606616973877, -0.03028825670480728, -0.01759556122124195, 0.007335631642490625, 0.00963151641190052, -0.003390940837562084, -0.027923930436372757, -0.004016242455691099, 0.0023223278112709522, -0.023021066561341286, 0.008206699043512344, -0.012306937016546726, 0.003863805904984474, 0.012051839381456375, -0.011616305448114872, -0.02998960390686989, 0.005319732706993818, 0.024464549496769905, -0.030711345374584198, -0.02844657003879547, 0.012879353016614914, -0.03708258271217346, -0.007279634475708008, 0.009339086711406708, -0.017993763089179993, 0.015903200954198837, 0.014882807619869709, -0.037157244980335236, -0.0027811937034130096, 0.02543516643345356, 0.02275974489748478, -0.02331971749663353, 0.012624254450201988, -0.03240370377898216, 0.028247470036149025, -0.008449353277683258, -0.021005166694521904, 0.035713762044906616, 0.008903552778065205, -0.006663665175437927, -0.003593152854591608, -0.014932583086192608, -0.04532039165496826, 0.03964600712060928, -0.0009045100887306035, -0.019213257357478142, -0.04813269153237343, -0.01539300475269556, -0.037157244980335236, 0.004181123338639736, -0.017719998955726624, 0.014372611418366432, 0.015480111353099346, 0.057142019271850586, -0.000484142336063087, 0.0019132372690364718, 0.017234690487384796, 0.018441740423440933, -0.022697526961565018, 0.023357048630714417, 0.002830968936905265, -0.003450048854574561, 0.03740612044930458, 0.015218790620565414, 0.018242638558149338, 0.01903904415667057, -0.002795192878693342, 0.034544043242931366, -0.024588987231254578, 0.015032134018838406, -0.0013400438474491239, -0.04218454658985138, -0.03616173937916756, -0.011946066282689571, -0.005425505340099335, 0.005207738373428583, -0.003689592471346259, 0.021030055359005928, 0.02348148636519909, 0.0032633915543556213, 0.004153124522417784, -0.034270279109478, -0.010440364480018616, -0.00395091250538826, 0.003782921005040407, -0.00023273831175174564, 0.004579325672239065, 0.009625294245779514, -0.021677132695913315, -0.038376737385988235, 0.020606964826583862, 0.018902162089943886, -0.001350932172499597, 0.010938117280602455, -0.03449426591396332, -0.019798116758465767, 0.03618662804365158, -0.014098847284913063, 0.008580013178288937, -0.009625294245779514, -0.006508117541670799, 0.017234690487384796, -0.013986852951347828, -0.01953679695725441, 0.010502583347260952, -0.049725502729415894, -0.00812581367790699, 0.030860671773552895, -0.002568093128502369, -0.008748005144298077, 0.0007349631050601602, -0.015368117019534111, -0.020022105425596237, 0.02088072896003723, -0.014982358552515507, 0.02620668336749077, 0.017172470688819885, 0.008387134410440922, 0.008492906577885151, 0.03429516777396202, 0.005207738373428583, -0.006206355057656765, 0.03257792070508003, -0.008897330611944199, 0.0023627702612429857, 0.005885926540941, 0.0049619730561971664, -0.0187652800232172, -0.002272552577778697, 0.0435284785926342, 0.02137848176062107, -0.008331136777997017, -0.009034212678670883, 0.033150333911180496, -0.029093649238348007, 0.030586907640099525, -0.012058060616254807, 0.012642920017242432, -0.02098027989268303, 0.024962302297353745, 0.011286543682217598, 0.014372611418366432, -0.016164520755410194, 0.005207738373428583, 0.03673415631055832, -0.005717935040593147, 0.0242032278329134, -0.06211954727768898, 0.0010787235805764794, 0.014845476485788822, -0.010465252213180065, -0.01898926869034767, 0.00010898063919739798, -0.022025560960173607, 0.0012941572349518538, -0.006676109042018652, 0.02498718909919262, -0.015878314152359962, 0.02304595336318016, -0.009967499412596226, 0.018964380025863647], [0.011140686459839344, -0.006409143563359976, 0.043806642293930054, 0.03988436609506607, -0.041538339108228683, -0.005599878262728453, -0.02889726310968399, 0.06053539365530014, 0.02471507526934147, 0.05458109453320503, 0.010532260872423649, 0.026747098192572594, -0.021064521744847298, 0.020934566855430603, -0.03792322799563408, 0.041538339108228683, 0.01807555742561817, 0.02107633464038372, -0.00916773360222578, -0.013928811065852642, 0.0011961765121668577, 0.029015403240919113, -0.010821705684065819, -0.006184675730764866, -0.021407129243016243, -0.00377755519002676, 0.018784401938319206, -0.013243594206869602, 0.006426864769309759, -0.0348515622317791, 0.05921221524477005, -0.029393455013632774, 0.01301912683993578, -0.0020379305351525545, -0.011784554459154606, 0.00458386680111289, 0.016043532639741898, -0.0010913264704868197, 0.005127314943820238, -0.009711181744933128, -0.0465947687625885, 0.012664703652262688, 0.0384666733443737, 0.03976622596383095, -0.04900484159588814, 0.058928679674863815, 0.01844179444015026, -0.003541273297742009, 0.017602993175387383, 0.0051391287706792355, -0.009486713446676731, 0.027975764125585556, 0.04527159035205841, -0.0048231021501123905, 0.019883112981915474, 0.042861517518758774, 0.011760925874114037, -0.016811449080705643, 0.04201090335845947, -0.021879693493247032, 0.001206513843499124, 0.005901137832552195, -0.011376967653632164, -0.01231028139591217, -0.011128872632980347, -0.022883892059326172, 0.02877912111580372, 0.0470200777053833, -0.03175627067685127, 0.005174571182578802, 0.010408212430775166, 0.049052100628614426, -0.020946379750967026, -0.02334464155137539, -0.013574388809502125, 0.06280370056629181, 0.012971870601177216, 0.008110372349619865, 0.02514038234949112, -0.04876856133341789, 0.0018799169920384884, 0.015441014431416988, -0.04543698951601982, 0.043239567428827286, 0.020792797207832336, -0.00019308652554173023, -0.03830127790570259, -0.010650401934981346, -0.015086592175066471, -0.006036999635398388, 0.029440710321068764, 0.02235225774347782, 0.02462056279182434, 0.043664876371622086, 0.03397732228040695, 0.013668901287019253, -0.009817508049309254, -0.018949799239635468, 0.0016820309683680534, 0.011441946029663086, -0.0030096392147243023, -0.018949799239635468, 0.03444988653063774, 0.004888079594820738, 0.04657113924622536, -0.051745712757110596, -0.020615585148334503, 0.028708238154649734, 0.021418944001197815, 0.009262246079742908, -0.06006282940506935, -0.03244148939847946, -0.055431708693504333, 0.046831049025058746, 0.013196337968111038, 0.009043685160577297, 0.03908100724220276, -0.039529941976070404, 0.004099489189684391, -0.02138350158929825, 0.025801971554756165, 0.017189500853419304, 0.0012146360240876675, -0.06218936666846275, 0.0005320032360032201, 0.030622119084000587, -0.002246153773739934, 0.0046517979353666306, -0.047469012439250946, 0.031992554664611816, 0.007336549460887909, -0.03130733594298363, 0.04416106641292572, -0.028282929211854935, -0.009333130903542042, 0.00923861749470234, -0.03437900170683861, -0.018937984481453896, 0.0005445556598715484, -0.029275313019752502, 0.02599099650979042, 0.029086288064718246, -0.005655995104461908, 0.008647913113236427, -0.0007369038066826761, -0.03501696139574051, -0.020166650414466858, 0.04172736406326294, 0.01955231837928295, 0.01653972454369068, -0.03447351232171059, 0.02450242079794407, 0.004982592072337866, -0.04853228107094765, -0.011760925874114037, -0.00821079220622778, -0.0010056743631139398, 0.021986020728945732, -0.005280897952616215, 0.03650553524494171, -0.02145438641309738, -0.028235673904418945, 0.020993636921048164, -0.023120172321796417, 0.021891508251428604, -0.012357537634670734, -0.02086368203163147, 0.03296130895614624, -0.0534469410777092, -0.009900206699967384, 0.019942183047533035, -0.035631295293569565, -0.035843946039676666, -0.0008565214811824262, -0.08180075883865356, -0.02847195602953434, 0.005201152991503477, -0.007625994738191366, 0.01447225920855999, -0.012079906649887562, 0.02176155336201191, 0.007342456374317408, 0.000779729918576777, -0.03664730489253998, -0.05028076469898224, 0.02323831431567669, 0.03260688856244087, 0.024762330576777458, 0.006090163253247738, 0.052690837532281876, -0.005617599468678236, -0.0034703887067735195, 0.007094360888004303, 0.02710152044892311, -0.06308723986148834, 0.026439931243658066, -0.020887309685349464, -0.025329407304525375, -0.03615111485123634, -0.007679158356040716, -0.0056648557074368, -0.022635795176029205, 0.04924112558364868, 0.01842997968196869, -0.04839051142334938, -0.030338581651449203, 0.025187639519572258, -0.011784554459154606, 0.033882807940244675, 0.009226803667843342, 0.015381944365799427, -0.053116146475076675, 0.0028117531910538673, 0.058456115424633026, 0.011554179713129997, -5.370564849727089e-06, 0.015417386777698994, 0.043664876371622086, 0.0010787739884108305, 0.03444988653063774, 0.006940777413547039, 0.007584645412862301, -0.0046990541741251945, -0.018240954726934433, -0.010077417828142643, -0.003307945095002651, 0.03305582329630852, -0.004580913111567497, 0.019032498821616173, -0.005127314943820238, -0.006480027921497822, 0.015771809965372086, 0.04470451548695564, -0.01769750565290451, 0.012440236285328865, 0.006273281294852495, 0.014283234253525734, -0.00019364031322766095, -0.01896161399781704, -0.041018519550561905, 0.03849030286073685, 0.0030052089132368565, -0.015122034586966038, -0.031354594975709915, 0.001590471831150353, 0.0029889645520597696, 0.02071009948849678, -0.026817983016371727, 0.05188748240470886, 0.008080837316811085, 0.03095291368663311, -0.015700925141572952, 0.00698803411796689, -0.06237839162349701, 0.005440388340502977, 0.023261941969394684, 0.02398260124027729, -0.036576420068740845, 0.07466504722833633, -0.06389059871435165, 0.02804664894938469, -0.0388919822871685, 0.0076200878247618675, 0.003328619757667184, -0.00038395790033973753, -0.005582157056778669, 0.055857013911008835, -0.026558073237538338, -0.048248741775751114, 0.03307944908738136, -0.07211320102214813, 0.0094040147960186, 0.031449105590581894, 0.04711458832025528, -0.022789377719163895, 0.017154058441519737, 0.011028452776372433, -0.01596083492040634, 0.020509259775280952, 0.028377443552017212, -0.07216046005487442, -0.02349822409451008, 0.013846112415194511, -0.032725028693675995, 0.008789682760834694, -0.01652791164815426, -0.05098960921168327, 0.02462056279182434, -0.02080461196601391, 0.06341803073883057, 0.03919914737343788, -0.015582784079015255, -0.020556515082716942, -0.02045018970966339, 0.023380082100629807, -0.003130733733996749, -0.0012810903135687113, -0.01954050362110138, 0.0487213060259819, -0.02080461196601391, 0.005195245612412691, 0.02915717288851738, 0.004554331302642822, 0.0016539725475013256, 0.0012382642598822713, 0.030362209305167198, 0.007968603633344173, 0.02371087670326233, -0.054014015942811966, -0.07471229881048203, -0.03685995936393738, 0.05831434577703476, 0.007129802834242582, -0.011879066936671734, 0.005762322340160608, -0.029180800542235374, -0.021796995773911476, 0.0017322408966720104, -0.003340433817356825, 0.015500085428357124, 0.06908879429101944, 0.004075861070305109, 0.002751206047832966, -0.016102604568004608, 0.03300856426358223, -0.02877912111580372, 0.02376994863152504, 0.04876856133341789, -0.010603145696222782, 0.0018105092458426952, -0.01822913996875286, 0.017284013330936432, 0.058975934982299805, -0.035938460379838943, 0.0267234705388546, 0.0384666733443737, -0.03934091702103615, 0.016598796471953392, -0.004146745428442955, -0.03752154856920242, 0.027125149965286255, -0.01386974100023508, -0.012735588476061821, 0.0027984625194221735, 0.006923056207597256, 0.021099964156746864, 0.06568633764982224, 0.05888142064213753, 0.018630819395184517, 0.0658281072974205, -0.05061155930161476, -0.048579536378383636, 0.00659226207062602, -0.016965031623840332, -0.016397956758737564, -0.024337023496627808, -0.06790738552808762, -0.00741924811154604, -0.026794355362653732, -0.0012604156509041786, -0.02684161067008972, 0.032252464443445206, -0.018689889460802078, 0.03317396342754364, 0.0013512364821508527, 0.00549355149269104, -0.01848904974758625, -0.0525963269174099, 0.02049744501709938, 0.006846264936029911, -0.029298942536115646, -0.03461528196930885, -0.01616167463362217, -0.01101073157042265, -0.03069300390779972, -0.0018252767622470856, 0.010225094854831696, -0.014755797572433949, -0.052265532314777374, -0.000374358962289989, 0.022328628227114677, -0.026817983016371727, 0.030882028862833977, 0.02091093920171261, 0.021856065839529037, 0.03539501130580902, -0.06644243746995926, 0.04066409543156624, -0.009764345362782478, -0.02868460863828659, 0.0013763414463028312, 0.0005179739673621953, 0.01590176485478878, -0.047469012439250946, 0.009847043082118034, 0.0363401398062706, 0.034993331879377365, 0.030834773555397987, -0.02398260124027729, -0.020426560193300247, 0.021856065839529037, -0.013456247746944427, -0.0354895256459713, 0.04113665968179703, -0.020202092826366425, -0.054061274975538254, -0.007602366618812084, -0.02889726310968399, 0.03960082679986954, -0.017945602536201477, 0.05519542470574379, -0.015984462574124336, 0.04633485898375511, 0.02740868739783764, 0.010455469600856304, 0.01753210835158825, -0.043499477207660675, 0.038797467947006226, -0.02471507526934147, -0.04002613574266434, 0.04463363066315651, 0.0555734783411026, 0.02133624628186226, 0.03560766577720642, -0.05103686451911926, -0.007236129604279995, -0.018146442249417305, -0.005549668334424496, -0.02308472990989685, -0.006621797103434801, -0.01876077428460121, 0.013196337968111038, 0.03248874470591545, 0.03865570202469826, -0.026345418766140938, -0.00012330955360084772, 0.016291629523038864, -0.011896788142621517, 0.011577807366847992, -0.034048207104206085, -0.05788903683423996, -0.023639993742108345, 0.005277944263070822, 0.03638739511370659, 0.009433550760149956, 0.02293114736676216, 0.00897870771586895, 0.03440262749791145, 0.010414119809865952, 0.026558073237538338, 0.0065627265721559525, -0.029984159395098686, -0.02873186580836773, 0.023061102256178856, -0.06658420711755753, 0.006633611395955086, -0.030362209305167198, -0.001485621789470315, 0.02714877761900425, -0.005977929104119539, 0.01483849622309208, 0.001687937998212874, 0.04118391498923302, 0.03433174267411232, 0.012983684428036213, 0.012251210398972034, -0.028448326513171196, 0.02514038234949112, -0.022635795176029205, 0.015181104652583599, 0.04716184362769127, 0.006149233318865299, 0.044562745839357376, 0.008955080062150955, -0.01169594842940569, -0.04779980704188347, 0.020946379750967026, 0.008393910713493824, -0.030409466475248337, -0.0352768711745739, 0.06384333968162537, 0.002312608063220978, -0.022045090794563293, -0.021986020728945732, 0.05595152825117111, 0.007041197270154953, 0.04770529270172119, 0.009433550760149956, -0.02229318767786026, -0.015429200604557991, -0.032205209136009216, -0.002029069932177663, 0.031992554664611816, -0.010006533935666084, 0.0085534006357193, -0.02599099650979042, -0.02492772787809372, 0.00014241515600588173, -0.018926171585917473, -0.011365153826773167, 0.01848904974758625, -0.05462834984064102, 0.025471176952123642, -0.010396398603916168, 0.06195308640599251, 0.02773948200047016, -0.02847195602953434, 0.013290850445628166, 0.02573108673095703, -0.017402153462171555, -0.013149081729352474, 0.0371907539665699, -0.017343083396553993, 0.0026581701822578907, -0.01684689149260521, -0.000441182404756546, 0.017579365521669388, -0.0007716077379882336, -0.0063441661186516285, -0.021088149398565292, -0.00418809475377202, 0.0012559853494167328, -0.03893923759460449, 0.02514038234949112, -0.038372162729501724, 0.01632707193493843, -0.0267234705388546, -0.040593210607767105, 0.004752217326313257, 0.0076437159441411495, 0.02402985841035843, -0.015122034586966038, -0.0049412427470088005, 0.015972649678587914, 0.03416634723544121, 0.023911716416478157, 0.0013660041149705648, 0.039435431361198425, -0.027692224830389023, -0.030929286032915115, -0.004690193571150303, -0.020166650414466858, 0.009415829554200172, -0.002758589806035161, 0.01637432724237442, -0.014011509716510773, 0.017969230189919472, 0.01231028139591217, 0.006799008697271347, 0.010207373648881912, -0.023155614733695984, -0.0463821142911911, 0.025423919782042503, -0.020840054377913475, -0.016279814764857292, -0.010490911081433296, 0.030078671872615814, -0.04881581664085388, 0.014413189142942429, -0.034142717719078064, 0.031992554664611816, 0.02762134186923504, -0.010922125540673733, -0.009463085792958736, 0.002727577928453684, 0.027597712352871895, -0.025542061775922775, -0.0037834621034562588, 0.02060377225279808, -0.01753210835158825, -0.061669547110795975, 0.06833269447088242, 0.013645273633301258, 0.012109441682696342, 0.07660255581140518, 0.010733100585639477, 0.013172709383070469, -0.028070276603102684, -0.0006782025448046625, -0.018051927909255028, 0.028188416734337807, -0.011495108716189861, 0.009604854509234428, -0.023911716416478157, 0.004055186174809933, 0.010910311713814735, -0.002382015809416771, -0.00046961006592027843, -0.007271572016179562, 0.05571524426341057, 0.00271281017921865, 0.020379304885864258, 0.014696727506816387, 0.01679963432252407, -0.011837717145681381, 0.03440262749791145, -0.03263051435351372, 0.032984938472509384, 0.021466201171278954, 0.026747098192572594, 0.015830880030989647, 0.0008026196737773716, 0.015181104652583599, 0.007998138666152954, -0.016504282131791115, 0.005207059904932976, -0.032087065279483795, 0.003712577512487769, 0.017886530607938766, 0.007153430953621864, 0.002932847710326314, -0.008092651143670082, 0.04184550419449806, 0.018181882798671722, 0.01138287503272295, -0.012487492524087429, -0.03898649662733078, -0.0217024814337492, -0.01206809189170599, 0.019942183047533035, 0.007939067669212818, -0.0005523086874745786, 0.019363293424248695, -0.027243290096521378, -0.0363401398062706, 0.012983684428036213, 0.014673098921775818, -0.033150333911180496, 0.028660980984568596, -0.012452050112187862, -0.0027866484597325325, 0.0003309790918137878, 0.017319455742836, 0.017709320411086082, -0.01584269478917122, -0.03170901536941528, 0.02731417492032051, -0.014295048080384731, -0.006869893055409193, 0.02530577965080738, -0.021785181015729904, -0.008541586808860302, 0.025376664474606514, -0.04198727384209633, 0.039222776889801025, 0.04364124685525894, 0.003440853441134095, -0.015015707351267338, -0.000903777836356312, -0.020934566855430603, 0.022576725110411644, -0.03971896693110466, 0.002727577928453684, -0.025542061775922775, -0.008027673698961735, -0.02582559920847416, -0.04269611835479736, 0.04090037941932678, 0.011359247379004955, 0.03322121873497963, -0.04378301650285721, 0.0036800887901335955, 0.02366362139582634, -0.0019138824427500367, 0.020462002605199814, 0.00539017841219902, 0.012723774649202824, -0.010236908681690693, 0.030858401209115982, -0.023061102256178856, -0.023970788344740868, -0.007720507215708494, 0.007939067669212818, -0.02436065301299095, 0.023120172321796417, -0.007312921341508627, -0.0227657500654459, -0.014425002969801426, -0.03461528196930885, 0.019953997805714607, -0.0012692762538790703, -0.03544226661324501, -0.02984238974750042, 0.03329210355877876, 0.006533191539347172, -0.0005740909255109727, 0.036269254982471466, 0.001492267125286162, 0.018453607335686684, 0.023356454446911812, -0.004356445278972387, 0.008458888158202171, -0.0012102058390155435, 0.004353492055088282, -0.009581226855516434, 0.03839579224586487, 0.004397794604301453, -0.017390340566635132, -0.014708541333675385, -0.003996115643531084, 0.008872381411492825, -0.03291405364871025, 0.005744601134210825, -0.028826378285884857, -0.03078751638531685, -0.03194529935717583, 0.008015859872102737, -0.0009584180079400539, 0.040805865079164505, 0.028826378285884857, -0.009155918844044209, 0.010733100585639477, -0.01564185507595539, -0.023592736572027206, -0.007454690523445606, 0.03267776966094971, -0.02329738438129425, -0.0035442267544567585, 0.026014624163508415, -0.0017558690160512924, -0.015417386777698994, 0.05250181257724762, 0.009279967285692692, 0.005174571182578802, 0.02075735479593277, 0.01807555742561817, 0.019930368289351463, -0.0022520606871694326, -0.015393758192658424, 0.01112296525388956, 0.013349921442568302, 0.00995927769690752, -0.022316815331578255, 0.01801648549735546, 0.012641075998544693, 0.0025784249883145094, -0.0628509521484375, -0.01722494326531887, 0.0038543466944247484, -0.0024115510750561953, -0.003848439548164606, -0.026605328544974327, 0.014602214097976685, -0.05193473771214485, 0.01075082179158926, -0.018831659108400345, 0.01447225920855999, -0.020828239619731903, -0.04071135073900223, -0.011270641349256039, 0.0025355990510433912, 0.00800404604524374, 0.003981348127126694, 0.0361274853348732, 0.05113137885928154, -0.0463821142911911, 0.012900985777378082, -0.008931451477110386, 0.008647913113236427, -0.009362665936350822, -0.017083173617720604, -0.007177059538662434, 0.02984238974750042, 0.014436817727982998, 0.013456247746944427, -0.025896484032273293, -0.047941576689481735, 8.168335625668988e-05, 0.024974985048174858, 0.005393131636083126, -0.020686469972133636, -0.008163535967469215, 0.028826378285884857, 0.006728123873472214, -0.0085534006357193, -0.049193866550922394, -0.022647609934210777, -0.06190582737326622, 0.01019555889070034, -0.02783399447798729, 0.037639688700437546, 0.007425155024975538, 0.006403236649930477, 0.021418944001197815, 0.024904100224375725, -0.00693487050011754, 0.013716157525777817, 0.014176907017827034, 0.05373048037290573, 0.0018016486428678036, -0.01620892994105816, 0.03213432431221008, -0.0006826328462921083, -0.022742122411727905, 0.028377443552017212, 0.026321791112422943, 0.00977025181055069, -0.025471176952123642, -0.016350699588656425, 0.028755493462085724, 0.011601435951888561, 0.019953997805714607, -0.01769750565290451, 0.014165093190968037, 0.049099355936050415, 0.004176280461251736, -0.025494804605841637, -0.015559155493974686, 0.04976094514131546, -0.019623203203082085, -0.017685692757368088, -0.00587455602362752, 0.04699644818902016, -0.00942764338105917, -0.004220583476126194, -0.06313449144363403, 0.02514038234949112, 0.045295219868421555, -0.03688358888030052, -0.011630970984697342, 0.020060323178768158, -0.015169290825724602, 0.008216699585318565, -0.0051686642691493034, 0.020568329840898514, 6.050106094335206e-05, -0.031779900193214417, -0.012133070267736912, 0.021040894091129303, -0.008388003334403038, 0.019729528576135635, 0.009250432252883911, 0.015181104652583599, 0.010786263272166252, 0.0029417083133012056, -0.02967699244618416, -0.004149699117988348, -0.033670153468847275, -0.013692529872059822, 0.04536610469222069, 0.04125479981303215, -0.01404695212841034, 0.028873635455965996, 0.009646204300224781, -0.02166704088449478, 0.022883892059326172, -0.005325200967490673, -0.007625994738191366, -0.03111831098794937, 0.03196892514824867, -0.0076141804456710815, -0.03192166984081268, 0.018819844350218773, -0.005133221857249737, 0.018134627491235733, 0.019457805901765823, -0.0010448085376992822, -0.011654599569737911, -0.01876077428460121, -0.020414747297763824, -0.021879693493247032, -0.023793576285243034, -0.01169594842940569, -0.022375885397195816, 0.034993331879377365, 0.006799008697271347, 0.02139531634747982, -0.0016081929206848145, 0.0012951195240020752, 0.010567703284323215, 0.027715854346752167, 0.01492119487375021, 0.007011662237346172, -0.011075709015130997, -0.0021590248215943575, -0.015523713082075119, 0.03305582329630852, 0.004929428920149803, -0.014070580713450909, -0.049099355936050415, 0.009037778712809086, -0.022836634889245033, 0.023533666506409645, 0.008872381411492825, -0.012948242016136646, -0.041538339108228683, -0.008311212062835693, 0.02894451841711998, 0.00767325097694993, -0.014117836952209473, 0.016728751361370087, -0.0005168663919903338, 0.01455495785921812, -0.0006626966060139239, -0.004211722873151302, 0.009120477363467216, -0.007425155024975538, -0.019186081364750862, 0.0032931773457676172, -0.00014564556477125734, -0.014814868569374084, 0.03052760660648346, -0.029818762093782425, -0.010443654842674732, 0.00781502015888691, 0.02830655872821808, -0.0191270112991333, 0.0016303443117067218, -0.005818439181894064, -0.035725805908441544, 0.017827460542321205, -0.03556041046977043, -0.03650553524494171, -0.008695170283317566, 0.07031746208667755, 0.004114256706088781, 0.0008698123274371028, 0.01695321872830391, 0.0074487836100161076, 0.03189804032444954, -0.014543144032359123, 0.019375106319785118, -0.017732948064804077, -0.0031602689996361732, 0.003550133900716901, 0.016492469236254692, -0.02303747460246086, 0.02599099650979042, 0.015724552795290947, 0.008204884827136993, -0.01643339917063713, 0.014176907017827034, 0.06389059871435165, 0.004935335833579302, 0.02667621336877346, -0.033197592943906784, -0.014365932904183865, -0.011678227223455906, 0.009994720108807087, 0.008890102617442608, 0.02260035276412964, -0.01733126863837242, -0.012818287126719952, -0.018772587180137634, -0.0178510881960392, 0.0023598643019795418, 0.03492244705557823, 0.01035504974424839, -0.022269558161497116, 0.00525431614369154, 0.02603825367987156, -0.022222302854061127, 0.036529164761304855, -0.009658018127083778, 0.005505365785211325, 0.018252767622470856, 0.02351003885269165, -0.029913274571299553, 0.0018208465771749616, 0.04843776673078537, -0.014909381046891212, -0.05396676063537598, -0.014814868569374084, -0.019942183047533035, 0.06767110526561737, 0.03449714183807373, 0.00022114499006420374, -0.02165522612631321, 0.015441014431416988, 0.004043371882289648, 3.605373990467342e-07, -0.010000626556575298, 0.03778145834803581, 0.01483849622309208, -0.008305304683744907, 0.011713669635355473, -0.015807252377271652, -0.014023324474692345, 0.053068891167640686, -0.004285560920834541, -0.018158255144953728, 0.014200535602867603, 0.01483849622309208, 0.035205986350774765, 0.006911242380738258, 0.004787659738212824, 0.004758124705404043, -0.0014752844581380486, 0.034780681133270264, -0.03369378298521042, -0.016386142000555992, -0.004654751159250736, 1.5644438462913968e-05, 0.026487188413739204, 0.031071055680513382, 0.009528063237667084, 0.01568911038339138, -0.02962973713874817, 0.027030637487769127, 0.01344443392008543, 0.003107105614617467, 0.02118266187608242, -0.016244372352957726, -0.012522934935986996, 0.008807403966784477, -0.05788903683423996, 0.0018636726308614016, 0.03437900170683861, -0.014826682396233082, -0.05236004292964935, 0.02967699244618416, -0.07579919695854187, -0.026061881333589554, 0.022576725110411644, -0.06308723986148834, 0.02608550898730755, 0.005564436316490173, -0.02133624628186226, 0.002444039797410369, 0.02629816345870495, 0.023096544668078423, 0.04137293994426727, -0.00033264045487158, -0.00021376117365434766, 0.014176907017827034, -0.017614807933568954, 0.032299719750881195, -0.04007339105010033, 0.02953522279858589, 0.010691750794649124, -0.0059040910564363, -0.00922089722007513, -0.00916773360222578, 0.05425029993057251, -0.026652585715055466, 0.031094683334231377, 0.013952439650893211, -0.007909532636404037, 0.013078196905553341, 0.030456721782684326, 0.019505061209201813, 0.001010842970572412, -0.009073221124708652, -0.007460597436875105, 0.02636904828250408, -0.026912495493888855, 0.03513510152697563, -0.005520133301615715, -0.004084721207618713, 0.007047104183584452, 0.003491063369438052, 0.017473038285970688, -0.03723800927400589, 0.002548889722675085, -0.027290547266602516, -0.010160116478800774, -0.0015565062640234828, -0.02646356076002121, -0.011790460906922817, -0.004814241547137499, 0.03660004958510399, -0.045295219868421555, -0.0029653364326804876, -0.020036695525050163, -0.017614807933568954, -0.016835076734423637, -0.03078751638531685, 0.000519819906912744, 0.005080058239400387, 0.011932230554521084, -0.008328933268785477, 0.021064521744847298, -0.02693612314760685, 0.04231806844472885, 0.027810366824269295, -0.01969408616423607, -0.022009648382663727, -0.013160895556211472, 0.00026046374114230275, 0.02773948200047016, 0.004303282126784325, 0.022045090794563293, 0.034733422100543976, 0.01964683085680008, -0.01578362286090851, -0.04253072291612625, 0.0030052089132368565, -0.01917426660656929, 0.04520070552825928, -0.05339968577027321, 0.01985948346555233, 0.03882109746336937, -0.00521887419745326, -0.012381165288388729, 0.018689889460802078, 0.0031632224563509226, 0.040120646357536316, 0.03978985175490379, 0.019883112981915474, 0.0001368773082504049, -0.012582005001604557, -0.008512051776051521, 0.007850462570786476, -0.020367490127682686, 0.03960082679986954, -0.024856844916939735, -0.003600343829020858, -0.03792322799563408, 0.019977625459432602, 0.015334688127040863, 0.024053486064076424, 0.037048984318971634, 0.05330517143011093, -0.020745541900396347, -0.00727747892960906, -0.007490132469683886, -0.004905800800770521, -0.016976846382021904, -0.03052760660648346, 0.016078975051641464, -0.03052760660648346, -0.01560641173273325, -0.038419418036937714, 0.06407961994409561, 0.01457858644425869, 0.006940777413547039, -0.013657087460160255, 0.027644969522953033, -0.005632366985082626, 0.003987255040556192, -0.020001253113150597, -0.04035693034529686, -0.03544226661324501, -0.008919637650251389, 4.566422285279259e-05, 0.01231028139591217, -0.020887309685349464, -0.015570970252156258, 0.001301764976233244, -0.00016927375691011548, 0.014992079697549343, 0.011258827522397041, -0.010656308382749557, 0.007082546595484018, -0.02033204771578312, 0.02065102756023407, 0.005080058239400387, 0.07263302057981491, 0.005156849976629019, 0.01811099983751774, 0.01378704234957695, 0.004507075063884258, -0.0227657500654459, -0.0037539268378168344, 0.027455944567918777, 0.006302816793322563, 0.018146442249417305, -0.027503199875354767, 0.013007312081754208, 0.005159803666174412, -0.005180478096008301, -0.010408212430775166, -0.011784554459154606, 0.013739786110818386, -0.0076673440635204315, 0.002591715892776847, 0.0022328628692775965, -0.003674181876704097, -0.05013899505138397, -0.0015963788609951735, -0.025447549298405647, 0.005245455540716648, -0.02260035276412964, 0.009315409697592258, 0.012688332237303257, -0.041916389018297195, 0.03801773861050606, -0.005753461737185717, 0.012948242016136646, -0.020899124443531036, 0.0046517979353666306, 0.016716936603188515, -0.0063146306201815605, -0.01711861602962017, -0.01492119487375021, 0.04097126051783562, 0.03586757555603981, -0.05013899505138397, 0.027479572221636772, -0.0008447074214927852, 0.006161047611385584, -0.025423919782042503, 0.024785960093140602, -0.0376160591840744, -0.009817508049309254, 0.004577959422022104, 0.007070732302963734, 0.01492119487375021, -0.024904100224375725, -0.006976219825446606, -0.02171429619193077, -0.024904100224375725, 0.005059383809566498, -0.023368269205093384, -0.010839426890015602, -0.012735588476061821, 0.023899903520941734, 0.014448631554841995, 0.006928963586688042, -0.04092400521039963, 0.012948242016136646, 0.0461694598197937, -0.0382540225982666, -0.017768390476703644, 0.015464643016457558, -0.026959752663969994, -0.02208053320646286, -0.009658018127083778, -0.008057208731770515, 0.015819065272808075, -0.0024617607705295086, 0.025896484032273293, 0.016705121845006943, -0.03671818971633911, 0.021537084132432938, -0.008884195238351822, -0.01124701276421547, -0.026109138503670692, 0.01212125550955534, 0.04021516069769859, 0.05292712152004242, -0.010544074699282646, -0.05070607364177704, 0.026321791112422943, 0.04236532375216484, -0.02488047257065773, -0.01858356222510338, 0.023309199139475822, -0.0013239163672551513, -0.025920111685991287, -0.012239396572113037, 0.01759117841720581, 0.017130428925156593, -0.01545282918959856, -0.05165119841694832, -0.013090010732412338, -0.015181104652583599, 0.013432620093226433, -0.027077892795205116, -0.023049289360642433, 0.0015638901386409998, 0.004235350992530584, -0.003945905715227127, -0.003018499817699194, -0.02293114736676216, -0.00485854409635067, -0.007336549460887909, -0.038632072508335114, -0.011796368286013603, 0.029062660411000252, -0.00668086763471365, -0.004923521541059017, -0.016882333904504776, 0.03619837015867233, 0.026487188413739204, 0.017555736005306244, -0.016787821426987648, -0.0028324278537184, -0.012534748762845993, 0.015677297487854958, -0.0025444594211876392, -0.004264886491000652, -0.009339037351310253, -0.0033049914054572582, 0.03728526458144188, 0.017768390476703644, 0.023096544668078423, 0.021584341302514076, 0.015074778348207474, 0.013030940666794777, 0.03300856426358223, -0.030078671872615814, 0.05349419638514519, -0.054722860455513, 0.002978627337142825, 0.04449186101555824, 0.022423142567276955, -0.02154889889061451, 0.037686944007873535, 0.015878135338425636, -0.013550760224461555, -0.03359926864504814, -0.004400748293846846, -0.020792797207832336, -0.0236163642257452, 0.028448326513171196, 0.013290850445628166, 0.0023303290363401175, 0.0006386992172338068, -0.014436817727982998, -0.009132291190326214, 0.00023941991094034165, -0.020851867273449898, 0.026345418766140938, -0.025660201907157898, -0.023628178983926773, -0.013456247746944427, -0.011601435951888561, 0.009362665936350822, -0.02599099650979042, 0.006645425222814083, -0.016303444281220436, -0.011837717145681381, 0.0076673440635204315, -0.006302816793322563, -0.014176907017827034, 0.001955231884494424, -0.027503199875354767, -0.0391046367585659, -0.007324735634028912, 0.016468841582536697, -0.003476295853033662, 0.0015624132938683033, 0.03385918214917183, -0.008866474032402039, -0.02809390425682068, -0.011164314113557339, -0.01534650195389986, 0.01859537698328495, 0.01066812314093113, -0.005564436316490173, 0.03530050069093704, 0.019717715680599213, -0.007649622857570648, 0.005847974214702845, 0.010579517111182213, 0.018926171585917473, 0.007253850810229778, -0.0015181105118244886, 0.003990208730101585, -0.015157476998865604, -0.01923333667218685, -0.019103381782770157, 0.008027673698961735, 0.02608550898730755, -0.016551539301872253, -0.04409018158912659, 0.02920442819595337, 0.01568911038339138, -0.004492307547479868, -0.024384280666708946, -0.021844251081347466, -0.0172131285071373, 0.013940625824034214, 0.00800404604524374, 0.03797048330307007, -0.0005619076546281576, 0.07570468634366989, 0.00530747976154089, -0.005210013594478369, 0.03851393237709999, -0.00202611624263227, -0.022009648382663727, 0.005248409230262041, 0.01291279960423708, -0.01811099983751774, 0.004690193571150303, 0.011731390841305256, 0.014743983745574951, 0.03052760660648346, -0.035513151437044144, -0.0062673743814229965, 0.016610609367489815, -0.0009266676497645676, -0.012014929205179214, 0.020261162891983986, -0.04160922393202782, -0.009929741732776165, 0.009339037351310253, -0.01563004031777382, -0.009392200969159603, -0.05240730196237564, -0.004693146795034409, -0.0016849845414981246, 0.0024957263376563787, 0.0008380619692616165, -0.007484225556254387, -0.010106953792273998, 0.015157476998865604, -0.02620365098118782, -0.03629288449883461, -0.006869893055409193, -0.029818762093782425, -0.03539501130580902, -0.013775228522717953, 0.0028855912387371063, -0.01874895952641964, -0.0038100439123809338, -0.006019278429448605, -0.016575166955590248, -0.01789834536612034, 0.0075905523262917995, -0.007755949627608061, 0.017248570919036865, 0.012392980046570301, 0.027668597176671028, 0.00010632680641720071, -0.02039111778140068, -0.013456247746944427, -0.002774834167212248, -0.016397956758737564, -0.003449714044108987, 0.034993331879377365, -0.00024661910720169544, -0.0026463561225682497, 0.0021088148932904005, 0.004202862270176411, 0.011542364954948425, 0.054911889135837555, -0.014637656509876251, 0.030834773555397987, -0.015996277332305908, 0.03163813054561615, -0.019635016098618507, 0.005809578578919172, 0.015015707351267338, -0.014956637285649776, 0.03043309412896633, 0.021631598472595215, 0.015618226490914822, 0.00588932354003191, -0.01301912683993578, 0.006669053342193365, 0.06488297879695892, 0.007283386308699846, -0.0017115662340074778, -0.025211267173290253, 0.021407129243016243, 0.009581226855516434, 0.015712738037109375, 0.00800404604524374, 0.0085534006357193, 0.002099954290315509, -0.04309779778122902, 0.008754240348935127, -0.013609831221401691, -0.02408892847597599, -0.011376967653632164, -0.008204884827136993, 0.008943265303969383, 0.007035290356725454, 0.011896788142621517, -0.02710152044892311, 0.04108940437436104, 0.02424251101911068, 0.01763843558728695, -0.0015040813013911247, -0.02958247996866703, 0.01573636755347252, 0.026439931243658066, -0.009492620825767517, -0.008086743764579296, 0.02303747460246086, -0.00787409022450447, 0.008919637650251389, -0.02514038234949112, 0.02355729416012764, -0.027266917750239372, 0.010077417828142643, -0.032559629529714584, -0.049193866550922394, 0.06422138959169388, 0.0024366560392081738, 0.0023687249049544334, 0.009528063237667084, -0.007289293222129345, 0.00226535159163177, 0.007135710213333368, -0.015807252377271652, -0.018926171585917473, -0.037852343171834946, -0.021643411368131638, 0.00707663968205452, -0.005921812262386084, -0.009941556490957737, 0.00900824274867773, -0.013007312081754208, -0.020213907584547997, -0.018571749329566956, -0.04784706234931946, 0.03300856426358223, 0.003011116059496999, 0.03685995936393738, -0.026274535804986954, 0.040333300828933716, -0.005540807731449604, 0.027715854346752167, -0.011819996871054173, 0.022529467940330505, -0.005277944263070822, 0.012924613431096077, 0.01626800186932087, 0.014696727506816387, -0.007637809030711651, 0.010496818460524082, 0.006574540864676237, -0.04274337738752365, 0.006385515443980694, 0.018051927909255028, 0.00530747976154089, 0.0008831031736917794, 0.041916389018297195, -0.0220214631408453, -0.006952591706067324, -0.011235198937356472, 0.016338884830474854, 0.02165522612631321, -0.02022572048008442, -0.005230688024312258, 0.024951357394456863, -0.01101073157042265, 0.061764057725667953, -0.017827460542321205, 0.01502752210944891, -0.026392675936222076, -0.018040115013718605, -0.005416760221123695, -0.0026788448449224234, -0.026061881333589554, 0.021537084132432938, -0.017154058441519737, 0.03650553524494171, -0.018666261807084084, -0.0026197743136435747, 0.01844179444015026, 0.0374034084379673], [0.022621996700763702, 0.006582909729331732, 0.022690271958708763, 0.021882344037294388, -0.05917222425341606, 0.012710648588836193, -0.002557491883635521, -0.0048959325067698956, 0.015236848033964634, 0.027993014082312584, -0.025148194283246994, 0.054620515555143356, -0.06408806890249252, -0.004588691983371973, -0.03236265480518341, 0.05657774955034256, 0.014747538603842258, 0.03557160869240761, -0.017922356724739075, -0.022246479988098145, 0.01507753785699606, 0.03418333828449249, -0.00800531916320324, 0.0009871519869193435, -0.031019899994134903, -0.015248226933181286, 0.03695988282561302, -0.020312003791332245, 0.05011432245373726, -0.012869958765804768, 0.011032206006348133, -0.015327882021665573, 0.05320948362350464, -0.01621546596288681, 0.039167460054159164, 0.008858764544129372, -0.00813618116080761, 0.02299751155078411, 0.061903249472379684, -0.0008207301143556833, -0.04294537752866745, 0.016613740473985672, 0.023464063182473183, -0.0036897296085953712, -0.03145231306552887, 0.07651423662900925, 0.037756431847810745, -0.018320631235837936, -0.040009528398513794, -0.001476460718549788, 0.003803522326052189, 0.03766539692878723, -0.02106303535401821, 0.029677145183086395, 0.04622260853648186, 0.017387529835104942, 0.019026145339012146, 0.0020269332453608513, 0.003621453884989023, -0.017478564754128456, -0.01220996119081974, 0.008249973878264427, -0.00366412615403533, 0.0016485722735524178, -0.027993014082312584, -0.03131576254963875, -0.000602034677285701, 0.02421509474515915, -0.038917116820812225, 0.006742219906300306, 0.02797025442123413, 0.023168200626969337, 0.00657153083011508, -0.046791572123765945, 0.013347888365387917, 0.019162697717547417, 0.04592674970626831, 0.012198581360280514, 0.03429713100194931, -0.0213019996881485, -0.05753360688686371, 0.02267889305949211, -0.018138563260436058, 0.02892611362040043, 0.01043479423969984, 0.02564888261258602, -0.04080607742071152, -0.01055996585637331, -0.03240817040205002, -0.013029268011450768, 0.009348073042929173, -0.021518206223845482, 0.00510075967758894, 0.0639059990644455, -0.013803059235215187, -0.006491875741630793, 0.018388906493782997, -0.009700831025838852, -0.010025139898061752, 0.054802581667900085, 0.0034251613542437553, 0.032385412603616714, 0.04035090655088425, 0.030701281502842903, 0.013859955593943596, -0.10195828974246979, -0.05302741751074791, 0.007168942596763372, 0.04501640796661377, -0.037437811493873596, -0.0006141251651570201, 0.0029216285329312086, -0.06604530662298203, 0.05917222425341606, -0.007550148293375969, 0.007510320749133825, -0.02248544432222843, 0.014804434962570667, 0.03350058197975159, -0.04437916725873947, 0.0080792848020792, 0.01426960900425911, 0.013313750736415386, -0.11051550507545471, -0.003624298609793186, 0.02719646506011486, -0.036140572279691696, 0.02621784619987011, -0.0013982282252982259, -0.01628374122083187, 0.050933629274368286, -0.03513919562101364, 0.044925373047590256, -0.04528950899839401, -0.03664126247167587, 0.005240155383944511, 0.023088546469807625, -9.939084702637047e-05, -0.018502699211239815, -0.017012014985084534, 0.023873716592788696, -0.016226844862103462, 0.001100944704376161, 0.0027409824542701244, -0.05826188251376152, 0.020778553560376167, 0.026900602504611015, 0.017330633476376534, 0.010707896202802658, 0.010423414409160614, -0.022121308371424675, 0.03054197132587433, -0.0017296496080234647, -0.002750939456745982, 0.011345135979354382, -0.0075273895636200905, 0.009074971079826355, 0.05785222724080086, 0.015657881274819374, 0.013052026741206646, -0.05762464180588722, -0.036777812987565994, 0.02815232239663601, -0.013234095647931099, 0.05575844272971153, 0.016329258680343628, -0.015976499766111374, 0.014372022822499275, -0.02674129419028759, -0.042467448860406876, -0.038393668830394745, 0.002841973677277565, -0.008375145494937897, -0.024579230695962906, -0.03197576105594635, -0.03702815622091293, -0.0017367616528645158, 0.016192706301808357, 0.03218058496713638, -0.04230814054608345, 0.009632554836571217, -0.01898062787950039, -0.03718746826052666, -0.03441092371940613, -0.03741505369544029, 0.03384196013212204, 0.026832327246665955, -0.0017026237910613418, 0.02190510183572769, 0.03689160570502281, 0.03493437170982361, 0.014258230105042458, 0.01899200864136219, 0.0031435242854058743, -0.02614957094192505, -0.0006105691427364945, -0.02712818793952465, -0.003006973071023822, -0.01314306166023016, -0.0027566291391849518, -0.004440761636942625, -0.040919870138168335, 0.0439012385904789, 0.017205461859703064, -0.051115699112415314, -0.04335503280162811, 0.05566740781068802, 0.040919870138168335, 0.046928126364946365, -0.002930162940174341, 0.0030012833885848522, -0.05084259435534477, -0.006508944556117058, 0.04114745557308197, -0.0019757263362407684, -0.03345506638288498, 0.043559860438108444, -0.0026855086907744408, 0.012062029913067818, 0.042285382747650146, 0.024260612204670906, -0.00917169451713562, -0.02983645536005497, -0.01944717951118946, -0.013086165301501751, -0.03641367703676224, 0.013734783045947552, 0.0033682649955153465, -0.01426960900425911, -0.03470678627490997, -0.020425796508789062, 0.05662326514720917, -0.002540422836318612, -0.03370540961623192, 0.027560601010918617, 0.028766803443431854, -0.0019472782732918859, -0.030951624736189842, -0.002584517467767, -0.004272917285561562, 0.004833346698433161, 0.03757436200976372, -0.017922356724739075, 0.004233089741319418, -0.037938497960567474, 0.01010479498654604, -0.00644066883251071, -0.007242907769978046, 0.028516460210084915, -0.002228915225714445, 0.010577035136520863, -0.04126124829053879, 0.017774425446987152, -0.04258124157786369, 0.006383772473782301, -0.005126362666487694, 0.014394781552255154, -0.010531517677009106, 0.02719646506011486, -0.03049645386636257, -0.003732401877641678, -0.008016698062419891, -0.004864639602601528, 0.018320631235837936, -0.013063406571745872, -0.013382025994360447, 0.07610458135604858, -0.019014766439795494, -0.029335767030715942, 0.04128400608897209, -0.040715042501688004, 0.021427173167467117, 0.014872711151838303, -0.023873716592788696, -0.011561342515051365, 0.03243093192577362, 0.02719646506011486, -0.025102678686380386, -0.019003387540578842, -0.03067852184176445, -0.0568508505821228, -0.02008441835641861, -0.012266857549548149, -0.04688260704278946, -0.011282550171017647, -0.04205779731273651, -0.037756431847810745, 0.01866200938820839, 0.011328066699206829, 0.03145231306552887, 0.038075048476457596, 0.0008441998506896198, 0.00233417353592813, 0.006013946142047644, 0.020710278302431107, -0.010531517677009106, -0.02530750446021557, -0.011242722161114216, 0.04242193326354027, -0.02965438738465309, 0.010093416087329388, 0.06427013874053955, 0.009689451195299625, 0.04494813084602356, -0.010150312446057796, 0.0016912445425987244, -0.00012819463154301047, 0.026172330603003502, -0.04315020516514778, -0.02667301706969738, -0.02117682807147503, 0.03434264659881592, -0.02769715152680874, 0.009325315244495869, -0.03434264659881592, 0.018320631235837936, -0.03313644602894783, 0.0464957132935524, -0.004793519154191017, 0.0177630465477705, 0.025808192789554596, 0.05439293012022972, -0.0038461945950984955, -0.03131576254963875, 0.05289086326956749, 0.00487886369228363, 0.016511326655745506, 0.06290462613105774, -0.031156452372670174, -0.01507753785699606, -0.036914363503456116, 0.034979887306690216, 0.018058907240629196, -0.013279612176120281, -0.0075899758376181126, -0.007100666873157024, -0.02072165720164776, 0.02628612332046032, 0.003513350849971175, 0.0022573634050786495, -0.011959617026150227, -0.019970625638961792, 0.030473696067929268, -0.016966497525572777, 0.03035990335047245, 0.0024365868885070086, 0.03384196013212204, 0.04021435230970383, -0.0184116642922163, 0.04151159152388573, 0.017933735623955727, 0.007339631672948599, -0.005407999735325575, -0.003396713174879551, -0.03520747274160385, -0.02111993171274662, -0.0025361557491123676, -0.009234280325472355, -0.024510955438017845, 0.020061660557985306, -0.022519582882523537, 0.0018918042769655585, -0.005732309073209763, 0.06604530662298203, -0.0016414602287113667, -0.01417857501655817, 0.019287869334220886, -0.014838572591543198, 0.005439292639493942, -0.019208213314414024, 0.013780300505459309, 0.016841325908899307, -0.04114745557308197, -0.02881232090294361, -0.006309807300567627, 0.004873173777014017, -0.005962739232927561, -0.012437546625733376, -0.015168571844696999, 0.03067852184176445, 0.027628876268863678, 0.023464063182473183, 0.042922619730234146, 0.018900973722338676, 0.020391657948493958, 0.06153911352157593, -0.05348258838057518, 0.014861331321299076, 0.012938234023749828, 0.000157265123561956, -0.030519211664795876, 0.049568116664886475, -0.024784058332443237, -0.025216471403837204, -0.018115803599357605, 0.010019450448453426, 0.051434315741062164, 0.009797554463148117, 0.0161585696041584, -0.032977133989334106, 0.00159878795966506, -0.01363237015902996, -0.021745791658759117, -0.05198052152991295, 0.010087726637721062, -0.02849370241165161, 0.030837832018733025, -0.0006066575297154486, 0.041761934757232666, -0.00644066883251071, 0.02492060884833336, 0.0007631225744262338, 0.02041441760957241, 0.002898870036005974, 0.009160315617918968, 0.02228061854839325, 0.024966126307845116, 0.02765163592994213, -0.02053958922624588, -0.02849370241165161, 0.03149782866239548, 0.03215782716870308, -0.04820260405540466, 0.0465184710919857, -0.03074679709970951, -0.008904282003641129, -0.0023526649456471205, -0.023623371496796608, 0.00994548574090004, -0.05980946123600006, -0.028835080564022064, -0.006116359494626522, 0.05994601547718048, 0.0025347331538796425, -0.050797078758478165, 0.006787736900150776, 0.01511167548596859, -0.04515295848250389, 0.005957049783319235, -0.012039272114634514, -0.041807450354099274, -0.023327510803937912, 0.008733592927455902, 0.03177093341946602, 0.0010682293213903904, 0.0036186091601848602, -0.01665925607085228, 0.05084259435534477, 0.037619877606630325, 0.025944743305444717, -0.014713400974869728, -0.020949242636561394, -0.048157088458538055, -0.027993014082312584, -0.0380978100001812, -0.014201333746314049, -0.020505450665950775, -0.05826188251376152, 0.034843336790800095, -0.04044193774461746, 0.033113688230514526, 0.040396422147750854, 0.044083308428525925, 0.003078093519434333, 0.023737164214253426, 0.04381020367145538, 0.00975772738456726, 0.0036840399261564016, -0.009922727011144161, -0.03256748244166374, 0.01602201722562313, -0.023555096238851547, 0.01962924748659134, 0.014872711151838303, 0.01569201797246933, -0.05207155644893646, -0.0010852982522919774, -0.02014131471514702, -0.021984757855534554, -0.0014501461992040277, 0.006662564817816019, 0.0019401662284508348, -0.012858578935265541, -0.07023287564516068, 0.039417803287506104, 0.03855298087000847, 0.04576743766665459, -0.02299751155078411, -0.023782681673765182, -0.04451571777462959, -0.057260505855083466, -0.028402667492628098, 0.04251296818256378, -0.009348073042929173, -0.020232349634170532, -0.03482057899236679, -0.03463850915431976, -0.026650259271264076, 0.05029638856649399, -0.030655764043331146, 0.05430189520120621, -0.08129353076219559, -0.0008157516713254154, -0.06691013276576996, 0.06836667656898499, -0.04351434111595154, -0.0034223166294395924, 0.019344765692949295, -0.031293001025915146, 0.017603736370801926, -0.06058325245976448, -0.008864453993737698, 0.03718746826052666, 0.022769926115870476, -0.039099182933568954, -0.025079919025301933, 0.024966126307845116, 0.01989097148180008, 0.013131681829690933, -0.025466814637184143, -0.021734412759542465, -0.0016357706626877189, -0.06295014172792435, 0.0030240421183407307, -0.030473696067929268, 0.0003239536890760064, 0.00900669489055872, -0.03429713100194931, 0.0067649781703948975, 0.02860749512910843, 0.005479120183736086, -0.03666402027010918, -0.014235471375286579, 0.0017012014286592603, 0.019720280542969704, -0.006634116638451815, 0.015350640751421452, 0.013609611429274082, 0.01602201722562313, -0.006776357535272837, -0.006110670045018196, -0.012357891537249088, 0.016943737864494324, 0.012574097141623497, 0.0022402945905923843, 0.011305308900773525, 0.056668784469366074, 0.03363713249564171, 0.003021197160705924, 0.00017957916134037077, -0.006577220279723406, -0.0034763680305331945, 0.03559437021613121, -0.013279612176120281, -0.056350164115428925, 0.02195061929523945, 0.011868582107126713, -0.0034706785809248686, 0.002841973677277565, -0.005407999735325575, 0.033614374697208405, -0.004619985353201628, -0.045630887150764465, 0.01279030367732048, -0.010082036256790161, 0.006031014956533909, -0.03648195043206215, -0.015032020397484303, 0.04883984476327896, 0.004765070974826813, -0.03472954407334328, 0.007629802916198969, 0.011788927949965, -0.026263363659381866, 0.03520747274160385, 0.018366148695349693, 0.05348258838057518, -0.045426059514284134, 0.007607044652104378, -0.0074591138400137424, 0.0001788679655874148, 0.029221974313259125, 0.005561619997024536, -0.03186196833848953, -0.004093693569302559, 0.011504446156322956, -0.011384963057935238, -0.02325923554599285, -0.017535461112856865, 0.060674287378787994, 0.017535461112856865, -0.008471868932247162, 0.009029453620314598, -0.011054964736104012, -0.0023825354874134064, 0.050023287534713745, -0.04688260704278946, -0.006503255106508732, -0.020573727786540985, 0.040851593017578125, 0.017546840012073517, -0.02208716981112957, 0.010383587330579758, -0.010565655305981636, -0.041306763887405396, -0.006315496750175953, -0.024715783074498177, -0.009700831025838852, 0.01577167399227619, 0.014360643923282623, 0.01878718100488186, 0.001250297762453556, 0.0026599052362143993, -0.013894093222916126, -0.02144993096590042, 0.002631457056850195, -0.0355033352971077, -0.010901344008743763, -0.007607044652104378, -0.008028077892959118, 0.004483433905988932, 0.011174446903169155, 0.02144993096590042, -0.029221974313259125, -0.007288424763828516, 0.006247221492230892, -0.006389462389051914, -0.029677145183086395, 0.04016883671283722, -0.0046825711615383625, -0.00962686538696289, -0.013006510213017464, 0.011640996672213078, 0.011214273981750011, -0.011572721414268017, -0.005831877700984478, 0.012608235701918602, 0.0032971445471048355, 0.006878770887851715, -0.0034962818026542664, 0.004144900478422642, -0.011595480144023895, 0.037301260977983475, -0.021097173914313316, 0.04157986491918564, 0.0010148889850825071, -0.024556472897529602, -0.01191409956663847, 0.015965120866894722, 0.005433603189885616, 0.023896474391222, -0.0033085239119827747, -0.01956097222864628, -0.0025461125187575817, 0.006110670045018196, -0.04107917845249176, -0.0329543761909008, 0.04089710861444473, -0.006673944182693958, 0.04160262644290924, -0.034069545567035675, -0.015646500512957573, 0.0030951625667512417, -0.022621996700763702, 0.027219222858548164, 0.02164337784051895, 0.014872711151838303, 0.0023355958983302116, 0.002096631098538637, -0.025603365153074265, 0.0005412267055362463, 0.013928230851888657, 0.005257224664092064, -0.017785804346203804, -0.010463242419064045, -0.019162697717547417, -0.035161957144737244, 0.009490313939750195, -0.026399916037917137, 0.05503016710281372, -0.01609029248356819, -0.025466814637184143, -0.020528210327029228, 0.03805229067802429, 0.005823343526571989, 0.021597862243652344, 0.045426059514284134, -0.033932995051145554, 0.011003757826983929, -0.03334127366542816, 0.00424731383100152, 0.005917222239077091, -0.029881972819566727, 0.005188948940485716, 0.009444797411561012, 0.06763840466737747, -0.010468931868672371, -0.013359267264604568, -0.03340954706072807, 0.00975772738456726, 0.02849370241165161, 0.029017148539423943, -0.034274373203516006, -0.05962739512324333, -0.049568116664886475, -0.012949613854289055, -0.001866200938820839, 0.028243357315659523, 0.047792948782444, 0.007919974625110626, -0.0029643008019775152, -0.0038319705054163933, -0.015191330574452877, -0.03905366733670235, -0.03345506638288498, 0.028561977669596672, -0.003078093519434333, 0.0014721935149282217, 0.015646500512957573, 0.004472054541110992, -0.007931353524327278, 0.03830263391137123, -0.01853683777153492, 0.018366148695349693, 0.031679898500442505, -0.007618424016982317, -0.008602730929851532, 0.014087541028857231, -0.02790197916328907, 0.022587858140468597, 0.029290251433849335, 0.008289800956845284, -0.022883718833327293, 0.008153249509632587, -0.022883718833327293, 0.03996400907635689, -0.014929607510566711, -0.028561977669596672, 0.015327882021665573, 0.00025656705838628113, 0.01094686146825552, -0.040396422147750854, 0.010008071549236774, -0.0445612370967865, 0.017672011628746986, 0.014315126463770866, 0.008579972200095654, 0.0072372183203697205, -0.02726474031805992, -0.00041036505717784166, -0.025466814637184143, 0.006480496376752853, -0.01220996119081974, -0.00025550025748088956, 0.03538954257965088, -0.011020827107131481, 0.03131576254963875, 0.038712289184331894, 0.021609241142868996, -0.017546840012073517, -0.016317877918481827, -0.003109386656433344, 0.004787829238921404, 0.04237641394138336, -0.005669723264873028, 0.007089287508279085, -0.04558537155389786, 0.015350640751421452, 0.011788927949965, -0.019071662798523903, -0.019686143845319748, 0.02441992238163948, 0.06281359493732452, -0.0012467417400330305, -0.008511696942150593, -0.016568223014473915, -0.034001268446445465, -0.04792949929833412, -0.00429283082485199, -0.041056420654058456, 0.005012569949030876, -0.015544087626039982, -0.01769477128982544, 0.032908860594034195, 0.0026158106047660112, 0.020448554307222366, 0.014804434962570667, 0.025079919025301933, 0.02364613115787506, 0.034592993557453156, -0.03195299953222275, -0.03664126247167587, -0.004250158555805683, -0.025239229202270508, 0.008130490779876709, 0.019196834415197372, 0.0016229689354076982, -0.02480681613087654, 0.0063553242944180965, 0.024943368509411812, -0.01563512161374092, -0.034843336790800095, 0.002457923023030162, 0.027879221364855766, 0.03784746304154396, 0.0044692098163068295, -0.02797025442123413, -0.012016513384878635, 0.014167196117341518, -0.039486080408096313, 0.007937043905258179, 0.014838572591543198, 0.027560601010918617, -0.005470586009323597, 0.021017517894506454, -0.03841642662882805, -0.0098487613722682, 0.02357785589993, -0.0033824890851974487, -0.008904282003641129, 0.010389276780188084, -0.020255107432603836, 0.01498650386929512, -0.011310998350381851, 0.01723960041999817, 0.01893511228263378, -0.05953636020421982, 0.022041654214262962, 0.0014302324270829558, -0.010588414035737514, -0.004301365464925766, 0.03695988282561302, 0.019595108926296234, 0.02292923629283905, -0.006008256692439318, 0.009746347554028034, -0.022007515653967857, -0.003109386656433344, 0.011123239994049072, 0.04251296818256378, 0.05949084460735321, -0.030337143689393997, 0.04360537603497505, 0.02350957877933979, -0.05011432245373726, -0.0002076717501040548, 0.004261537920683622, -0.028516460210084915, -0.02144993096590042, 0.02544405683875084, 0.008181697688996792, -0.022621996700763702, -0.013154440559446812, 0.01540753711014986, -0.004813432693481445, -0.023896474391222, 0.017330633476376534, -0.021222345530986786, -0.013905472122132778, -0.015384778380393982, 0.0027281809598207474, -0.017603736370801926, -0.02234889380633831, 0.033159203827381134, 0.030405418947339058, -0.019424419850111008, 0.006417910568416119, 0.02533026412129402, -0.0439239963889122, 0.011811685748398304, 0.044401925057172775, -0.0033796443603932858, 0.031019899994134903, -0.024442680180072784, -0.05594050884246826, 0.008517386391758919, -0.015327882021665573, 0.0445612370967865, 0.012346511706709862, -0.0018164166249334812, 0.01846856065094471, 0.013222715817391872, 0.0465184710919857, 0.007419286295771599, 0.0060708425007760525, -0.02248544432222843, -0.0026855086907744408, 0.0574880912899971, 0.033614374697208405, 0.006247221492230892, 0.007248597219586372, 0.019356144592165947, -0.027856461703777313, 0.0064292894676327705, -0.019925108179450035, -0.00884169526398182, 0.0025276211090385914, -0.010173071175813675, 0.013768921606242657, -0.0015219778288155794, -0.018047528341412544, -0.0044692098163068295, -0.04604054242372513, -0.009518762119114399, -0.020050279796123505, 0.026968879625201225, 0.005197483114898205, 0.0017452960601076484, -0.004904467146843672, -0.020915105938911438, 0.022314755246043205, -0.0006439957651309669, -0.028880596160888672, -0.028630252927541733, 0.029176458716392517, 0.015487191267311573, 0.012016513384878635, 0.0035645575262606144, 0.01602201722562313, 0.012642373330891132, 0.02965438738465309, 0.015453053638339043, -0.0022573634050786495, -0.0024294748436659575, -0.039872974157333374, 0.010440483689308167, -0.005038173403590918, 0.015521329827606678, -0.005550240632146597, -0.015396157279610634, -0.005570154637098312, 0.02533026412129402, 0.03202127665281296, -0.005490499548614025, 0.04237641394138336, 0.023987509310245514, -0.008790489286184311, 0.005510413553565741, -0.003299989504739642, 0.023691648617386818, 0.010827379301190376, 0.04112469404935837, 0.010531517677009106, -0.028516460210084915, -0.058671534061431885, 0.018650630488991737, 0.00770376855507493, 0.016943737864494324, -0.028402667492628098, -0.006178945768624544, 0.021745791658759117, 0.0016983565874397755, 0.042854346334934235, 0.002564603928476572, 0.014815814793109894, -0.005200328305363655, 0.04437916725873947, -0.014246851205825806, -0.010685138404369354, 0.02138165570795536, 0.010423414409160614, -0.006457737646996975, 0.04490261524915695, -0.0015874087112024426, 0.05762464180588722, 0.051707420498132706, 0.019424419850111008, -0.014497194439172745, -0.018969248980283737, -0.0020169762428849936, 0.0005462051485665143, -0.019265109673142433, 0.07132528722286224, 0.0082385940477252, -0.012960992753505707, 0.009035143069922924, -0.020494071766734123, 0.019970625638961792, 0.00933669414371252, 0.006349634844809771, 0.01601063832640648, -0.0008050836040638387, 0.015874087810516357, 0.0018846922321245074, 0.009985312819480896, -0.007407907396554947, 0.026331638917326927, 0.0002458989911247045, 0.01198237482458353, 0.013086165301501751, -0.012414787895977497, -0.016192706301808357, -0.01317719928920269, -0.002743827411904931, 0.03149782866239548, 0.03541230037808418, 0.017205461859703064, 0.020767174661159515, 0.0069811842404305935, -0.0015589605318382382, 0.008944109082221985, 0.005860325880348682, 0.01917407661676407, 0.03179369121789932, -0.01802477054297924, -0.024078544229269028, 0.029085423797369003, 0.02628612332046032, 0.005046708043664694, -0.04378744587302208, 0.01030393224209547, -0.05503016710281372, -0.025944743305444717, 0.023486820980906487, -0.004952828865498304, -0.006059463135898113, 0.004216020926833153, -0.02298613265156746, -0.00884169526398182, 0.0034365407191216946, -0.0066853235475718975, 0.0030098180286586285, 0.0012965260539203882, -0.0078118713572621346, 0.0355033352971077, 0.011834444478154182, 0.03015507571399212, 0.006378083024173975, 0.006469117011874914, 0.0018235286697745323, 0.016192706301808357, -0.019617868587374687, 0.03418333828449249, 0.04506192356348038, 0.008267042227089405, 0.037301260977983475, -0.010315312072634697, -0.052344661206007004, -0.014622366987168789, 0.020198211073875427, -0.020380279049277306, -0.024169577285647392, -0.041830211877822876, 0.001120858476497233, 0.011754789389669895, -0.030132316052913666, 0.0030837832018733025, 0.010907033458352089, -0.006850322708487511, 0.005459206644445658, 0.0027338704094290733, 0.027310257777571678, -0.04358261823654175, -0.0015589605318382382, 0.018229596316814423, -0.001302215619944036, -0.00214783800765872, 0.00408515939489007, -0.008739282377064228, -0.019265109673142433, 0.025603365153074265, -0.03657298535108566, 0.011544273234903812, -0.002810680540278554, -0.0006535970605909824, -0.028175082057714462, -0.024943368509411812, -0.0003419116255827248, 0.004261537920683622, -0.03345506638288498, -0.02164337784051895, 0.013950989581644535, 0.021620620042085648, 0.03086058981716633, 0.032977133989334106, -0.018946491181850433, -0.013222715817391872, -0.0355033352971077, 0.01763787493109703, -0.001486417604610324, -0.028311632573604584, 0.02027786523103714, 0.030701281502842903, 0.014167196117341518, -0.007464803755283356, -0.03921297565102577, 0.0222919974476099, -0.002473569707944989, 0.02492060884833336, -0.006486185826361179, -0.001086720614694059, 0.055894993245601654, 0.003257317002862692, 0.003038266208022833, 0.009774795733392239, -0.010633931495249271, 0.04838467389345169, 0.004816277418285608, 0.05107017979025841, -0.0032715413253754377, -0.003499126760289073, 0.04021435230970383, -0.01133375708013773, -0.0439239963889122, 0.028129564598202705, -0.01878718100488186, -0.009854450821876526, 0.0019046060042455792, 0.015350640751421452, 0.011299618519842625, 0.00365843647159636, 0.019139938056468964, -0.006577220279723406, -0.02512543648481369, 0.021165449172258377, -0.0062813591212034225, -0.010542897507548332, 0.010776172392070293, 0.004491968546062708, -0.012699269689619541, -0.00933669414371252, -0.0030297315679490566, -0.037164706736803055, 0.022371651604771614, 0.000696269329637289, -0.025990260764956474, -0.006076532416045666, 0.03454747423529625, -0.00547343073412776, -0.018252355977892876, -0.01956097222864628, -0.04540330171585083, -0.0140534033998847, -0.013438922353088856, -0.003041110932826996, 0.003038266208022833, -0.00778342317789793, -0.017478564754128456, -0.004563088994473219, 0.05161638557910919, 0.03211231157183647, 0.0071917008608579636, -0.02150682732462883, -0.03757436200976372, -0.04396951571106911, -0.005905842874199152, -0.0008840273367241025, 0.06345082819461823, 0.008676696568727493, 0.0035816263407468796, 0.017091669142246246, 0.01094686146825552, -0.03868953138589859, 0.028857838362455368, 0.029039906337857246, -0.01072496548295021, 0.022849582135677338, -0.012574097141623497, 0.010662379674613476, 0.013279612176120281, -0.010286863893270493, -0.00497274287045002, 0.0060651530511677265, -0.007800491992384195, 0.014667883515357971, 0.00959272775799036, 0.02569440007209778, -0.019196834415197372, -0.031998518854379654, 0.005578688811510801, -0.010053588077425957, -0.01187996193766594, -0.03527574986219406, 0.011959617026150227, 0.023270614445209503, -0.0014238316798582673, 0.009399279952049255, 0.008619800209999084, 0.02317958138883114, -0.02047131396830082, 0.027310257777571678, 0.009166005067527294, -0.031019899994134903, -0.02751508355140686, 0.001792235649190843, 0.038393668830394745, 0.03261299803853035, -0.006668254267424345, 0.009319624863564968, -0.010156001895666122, 0.0167844295501709, -0.002075294964015484, 0.02533026412129402, -0.01878718100488186, -0.009604106657207012, 0.004625674802809954, -0.017546840012073517, -0.0080792848020792, -0.011248412542045116, -0.0014252540422603488, -0.020755795761942863, 0.006554461549967527, 0.025626124814152718, -0.01995924673974514, -0.020687520503997803, -0.033682651817798615, -0.009661003015935421, 0.05380120500922203, 0.016488566994667053, -0.05015983805060387, 0.010457552969455719, 0.024055784568190575, 0.012130306102335453, -0.009035143069922924, -0.014246851205825806, -0.019583730027079582, -0.018229596316814423, 0.01004789862781763, -0.020653381943702698, 0.0014181419974192977, 0.00618463521823287, 0.009615486487746239, 0.021233724430203438, -0.056486714631319046, 0.03998676687479019, 0.007794802542775869, 0.012164443731307983, -0.021290620788931847, -0.044083308428525925, 0.006093601230531931, 0.05348258838057518, -0.012414787895977497, -0.023168200626969337, -0.008221525698900223, 0.048930875957012177, -0.025148194283246994, -0.008551524020731449, 0.023896474391222, 0.00930255651473999, -0.0039912802167236805, -0.013017889112234116, 0.022394411265850067, 0.011891340836882591, 0.0011194361140951514, -0.039099182933568954, -0.0038661083672195673, -0.008927040733397007, -0.011845824308693409, 0.0012695002369582653, -0.03261299803853035, 0.01101513672620058, 0.008961178362369537, 0.009450486861169338, 0.00011708206147886813, -0.0076696304604411125, -0.01359823253005743, -0.0012175822630524635, -0.048794325441122055, -0.0013164397096261382, 0.03673229739069939, -0.02705991268157959, -0.009069281630218029, -0.00681618507951498, 0.048475705087184906, 0.013507197611033916, 0.001615856890566647, -0.00182921823579818, 0.02014131471514702, 0.007675320375710726, 0.03015507571399212, 0.012153064832091331, -0.01820683851838112, 0.003888866864144802, -0.01560098398476839, 0.03133852034807205, 0.009666693396866322, -0.014042023569345474, 0.031019899994134903, 0.01628374122083187, 0.008113422431051731, 0.012027892284095287, -0.023395786061882973, 0.0177630465477705, -0.005029639229178429, -0.004941449500620365, 0.020118556916713715, -0.014201333746314049, 0.009029453620314598, 0.03177093341946602, -0.007624113466590643, -0.028311632573604584, -0.041693657636642456, -0.006252910941839218, -0.011345135979354382, -0.01546443346887827, 0.022496825084090233, 0.00858566164970398, -0.011225653812289238, 0.016932358965277672, -0.011834444478154182, -0.017580978572368622, 0.013700645416975021, 0.0054478272795677185, 0.002241716952994466, -0.016352016478776932, -0.004011194221675396, -0.03898539021611214, 0.00913755688816309, 0.01456547062844038, -0.003806367050856352, 0.010480310767889023, 0.011151688173413277, 0.0014088962925598025, 0.00904652290046215, -0.004116452299058437, -0.025785434991121292, -0.015339260920882225, -0.029108181595802307, -0.05006880313158035, 0.02674129419028759, 0.02267889305949211, -0.03741505369544029, 0.027150947600603104, 0.02596750296652317, 0.018969248980283737, -0.008284111507236958, -0.009752037934958935, 0.0076696304604411125, -0.0030951625667512417, -0.02828887477517128, -0.017000634223222733, 0.02099476009607315, -0.01878718100488186, 0.052026040852069855, -0.006508944556117058, 0.02228061854839325, 0.004304210189729929, 0.027105430141091347, -3.6804838600801304e-05, 0.011299618519842625, -0.05521223694086075, -0.01569201797246933, -0.01602201722562313, -0.012892717495560646, 0.020437175408005714, -0.005541706457734108, -0.025853710249066353, 0.0031349898781627417, -0.007863078266382217, 0.00702670169994235, 0.001564650097861886, -0.010349449701607227, -0.033113688230514526, -0.014451677910983562, 0.018354767933487892, 0.028175082057714462, -0.027037154883146286, 0.021040277555584908, -0.022781306877732277, 0.006031014956533909, 0.009956864640116692, 0.02699163742363453, 0.006958425976336002, 0.01814994215965271, 0.00038902892265468836, -0.015202709473669529, -0.023600613698363304, -0.009359452873468399, -0.017262358218431473, 0.05630464479327202, -0.000295505509711802, -0.003971366677433252, 0.007863078266382217, -0.022496825084090233, 0.016306499019265175, 0.046017784625291824, -0.008909971453249454, -0.008289800956845284, 0.005388086196035147, -0.016613740473985672, -0.017421668395400047, -0.052481211721897125, 0.017478564754128456, -0.0413295216858387, 0.027037154883146286, 0.018263734877109528, -0.002346975263208151, -0.016420291736721992, -0.00787445716559887, -0.027173705399036407, -0.023668888956308365, -0.004984121769666672, -0.0406922847032547, -0.011697893030941486, -0.057260505855083466, -0.02414681948721409, -0.03966814652085304, 0.013814438134431839, -0.003644212381914258, -0.012596855871379375, -0.014906848780810833, 0.0035759368911385536, -0.011845824308693409, -0.023805441334843636, 0.017489943653345108, -0.025421297177672386, -0.001287280349060893, -0.020710278302431107, -0.03436540812253952, 0.012346511706709862, 0.016966497525572777, 0.00787445716559887, 0.07141632586717606, -0.010753413662314415, -0.009939795359969139, -0.0329543761909008, -0.009177383966743946, -0.02014131471514702, 0.02705991268157959, -0.04230814054608345, -0.005968429148197174, -0.02092648483812809, -0.01834338903427124, -0.006247221492230892, 0.005166190210729837, -0.022701650857925415, 0.02815232239663601, 0.004389554727822542, 0.007322562858462334, -0.008676696568727493, 0.010793240740895271, -0.04114745557308197, -0.003610074520111084, 0.02680956944823265, 0.00884738564491272, 0.00017531194316688925, -0.037301260977983475, 0.02533026412129402, -0.0056640333496034145, 0.004696795251220465, -0.014451677910983562, 0.011419101618230343, 0.014019264839589596, -0.03500264510512352, 0.03384196013212204, -0.030633004382252693, -0.028402667492628098, 0.0014963744906708598, 0.027037154883146286, 0.022178204730153084, 0.008756350725889206, -0.0021193898282945156, -0.0004825523355975747, 0.018297871574759483, 0.021222345530986786, 0.019071662798523903, -0.002457923023030162, -0.01789959706366062, 0.02319096028804779, -0.007487562019377947, -0.02969990484416485, 0.006378083024173975, 0.01879855990409851, 0.006298427935689688, 0.012653752230107784, -0.01456547062844038, 0.030450936406850815, -0.010622551664710045, -0.010616862215101719, -0.028698528185486794, -0.008733592927455902, 0.031088175252079964, -0.016443051397800446, -0.006890150252729654, 0.026695776730775833, -0.03998676687479019, 0.025079919025301933, 0.0016016328008845448, -0.0322716198861599, 0.032135069370269775, -0.056941885501146317, -0.03029162622988224, 0.007231528405100107, -0.01898062787950039, -0.006196014583110809, 0.02072165720164776, -0.026195088401436806, -0.03718746826052666, 0.015589605085551739, 0.014554090797901154, 0.02170027419924736, -0.0025830951053649187, 0.005945670418441296, 0.022451307624578476, 0.013552715070545673, -0.013290992006659508, 0.0030951625667512417, -0.005985497962683439, 0.028379909694194794, -0.011248412542045116, -0.028243357315659523, 0.02783370390534401, 0.005225931294262409, -0.027150947600603104, 1.3457324712362606e-05, 0.033614374697208405, -0.012278236448764801, 0.009962554089725018, 0.04057849198579788, -0.01469064224511385, -0.004309900104999542, 0.02628612332046032, -0.033090926706790924, 0.010338069871068, -0.027219222858548164, 0.010076346807181835, 0.0096837617456913, -0.011083412915468216, 0.0137234041467309, 0.0012495864648371935, -0.03919021785259247, 0.0329543761909008, -0.01116875745356083, 0.034206096082925797, -0.0030354212503880262, -0.00576644716784358, 0.01052582822740078, -0.014360643923282623, -0.022826822474598885, 0.0055929129011929035, -0.030837832018733025, 0.026581984013319016, -0.004725243430584669, 0.008523075841367245, 0.010315312072634697, 0.012562718242406845], [0.03404013067483902, 0.023048527538776398, 0.017032597213983536, 0.0166440699249506, -0.01626807451248169, 0.015202753245830536, -0.008604031056165695, -0.005683799274265766, 0.03564437851309776, -0.010314811021089554, -0.015290485695004463, 0.010521608404815197, -0.02492850460112095, -0.004088951740413904, 0.010571741499006748, 0.02551756426692009, -0.007382045965641737, -0.029478050768375397, -0.020441625267267227, 0.02925245277583599, 0.044643204659223557, 0.07209087908267975, -0.008773229084908962, -0.0073256464675068855, -0.0041140178218483925, 0.01443822868168354, 0.02514156885445118, 0.019714700058102608, 0.047951966524124146, -0.04672371223568916, -0.006655121222138405, -0.026344753801822662, 0.044618137180805206, -0.030806567519903183, 0.061663269996643066, 0.004725010599941015, -0.0018408115720376372, 0.018862443044781685, 0.02495357021689415, -0.017095264047384262, -0.0004151617467869073, -0.01018947921693325, -0.0033839598763734102, 0.005223204847425222, -0.0481775626540184, 0.028650861233472824, 0.011073068715631962, -0.051586586982011795, -0.0667266771197319, 0.04058245196938515, 0.03439106047153473, 0.008159102872014046, 0.019326170906424522, -0.007093782536685467, 0.033463604748249054, 0.006980984006077051, -0.020667221397161484, 0.04702451080083847, 0.0021275081671774387, -0.02390078268945217, -0.02143174596130848, 0.017333393916487694, -0.0004151617467869073, 0.018298448994755745, -0.033889733254909515, -0.009888682514429092, -0.010296011343598366, 0.051987651735544205, -0.05243884399533272, 0.04404161125421524, -0.005442535504698753, 0.0041234176605939865, 0.0016434139106422663, -0.05003247410058975, -0.004565212409943342, 0.01760912500321865, 0.014124899171292782, 0.01645607128739357, 0.04023152217268944, 0.03075643628835678, 0.005373603198677301, 0.029127120971679688, 0.008729362860321999, 0.01718299649655819, -0.022735197097063065, -0.016393406316637993, -0.06732826679944992, -0.008754429407417774, -0.032009754329919815, 0.0023390057031065226, -0.029352718964219093, -0.05243884399533272, 0.03393986448645592, 0.04963141307234764, -0.02314879186451435, 0.02927752025425434, 0.027272209525108337, -0.027146877720952034, -0.034190528094768524, 0.08422300219535828, -0.024903438985347748, -0.031658824533224106, -0.025693029165267944, -0.011919058859348297, 0.07184021174907684, -0.03246095031499863, -0.06933357566595078, 0.0027682671789079905, 0.014400629326701164, -0.033062539994716644, -0.04689917713403702, 0.004555812571197748, 0.007920973002910614, 0.027447674423456192, -0.012495584785938263, 0.012833980843424797, 0.019589368253946304, -0.019100572913885117, -0.01567901484668255, -0.01443822868168354, 0.011054269038140774, 0.03727369010448456, -0.00038833290454931557, -0.08397233486175537, 0.016305673867464066, 0.02509143576025963, -0.053040437400341034, -0.010778538882732391, -0.0369979627430439, -0.05334123596549034, 0.07830733805894852, -0.0443173423409462, 0.011743593961000443, -0.06141260638833046, -0.008071371354162693, -0.01873711124062538, -0.022484533488750458, 0.003665956435725093, -0.05078446492552757, -0.06422004103660583, 0.04376588016748428, -0.005010140594094992, 0.020880285650491714, 0.023537321016192436, -0.027121812105178833, -0.005545934196561575, 0.02131894789636135, 0.01212585624307394, 0.0010817705187946558, 0.002854432910680771, -0.026495153084397316, 0.018160585314035416, -0.009901216253638268, -0.02279786393046379, -0.025580229237675667, -0.026495153084397316, 0.005564733874052763, 0.019163239747285843, 0.01099787000566721, -0.015265419147908688, -0.023838117718696594, -0.02253466658294201, -0.008610297925770283, 0.005508334841579199, 0.06707760691642761, -0.006510989274829626, -0.04887942224740982, -0.020993083715438843, -0.05619880184531212, -0.012432918883860111, -0.05299030616879463, -0.027623139321804047, -0.010358677245676517, -0.0026100357063114643, 0.030982032418251038, -0.027197010815143585, 0.0018235783791169524, 0.043866146355867386, -0.025793293491005898, -0.03777501732110977, -0.008604031056165695, -0.005758998449891806, -0.054995615035295486, 0.04186083748936653, -0.007845773361623287, 0.031658824533224106, 0.007726708427071571, 0.03070630319416523, 0.023762919008731842, -0.007513644173741341, 0.030530838295817375, -0.02540476620197296, 0.01389930211007595, 0.027121812105178833, -0.0129467798396945, -0.0008890727767720819, -0.030906833708286285, -0.007231647614389658, 0.021344013512134552, 0.008265634998679161, 0.05574760586023331, -0.0462474524974823, 0.04098351299762726, 0.049405813217163086, -0.059808358550071716, -0.04098351299762726, 0.006611254997551441, 0.07314366847276688, 0.052338581532239914, 0.009324689395725727, 0.014826757833361626, -0.018298448994755745, -0.046473048627376556, 0.054193489253520966, -0.024264246225357056, 0.02777353674173355, 0.025291966274380684, -0.025968758389353752, -0.0029233654495328665, 0.04186083748936653, -0.03955473005771637, 0.013072111643850803, 0.002067975467070937, 0.03113243170082569, -0.035293448716402054, -0.004214283544570208, -0.029302585870027542, -0.008033771067857742, -0.04120911285281181, -0.0813654363155365, -0.04579625651240349, 0.02253466658294201, -0.03762461990118027, -0.00982601661235094, -0.013410507701337337, 0.0369979627430439, -0.01852404698729515, -0.03028017468750477, -0.014713958837091923, 0.011235999874770641, 0.07630202919244766, -0.0029249319341033697, 0.021682409569621086, 0.038351546972990036, -0.04000592604279518, -0.003979286178946495, -0.012483051978051662, -0.003922886680811644, 0.025241835042834282, -0.0046341451816260815, 0.040131255984306335, -0.029528183862566948, 0.017295794561505318, -0.006460856646299362, 0.030154842883348465, -0.03584490716457367, 0.023512255400419235, -0.014513428322970867, -0.03815101459622383, -0.007570043671876192, 0.01555368211120367, -0.02885139174759388, -0.030505772680044174, -0.016380872577428818, -0.03409026190638542, 0.034641724079847336, 0.058304376900196075, -0.02509143576025963, 0.003935419954359531, 0.028926590457558632, -0.004186083562672138, 0.035694509744644165, 0.004797076340764761, -0.03288707509636879, -0.022246403619647026, 0.029001789167523384, 0.0029766312800347805, -0.022497067227959633, 0.03955473005771637, 0.016756867989897728, -0.024828238412737846, -0.03000444360077381, 0.0019724098965525627, -0.02554262988269329, 0.0038539543747901917, -0.04178563877940178, 0.01265225000679493, 0.0013050178531557322, -0.00788963958621025, 0.010195746086537838, 0.01659393683075905, -0.008842161856591702, 0.020780019462108612, -0.01421263162046671, 0.03774995356798172, -0.03038043901324272, -0.03802568092942238, -0.014237698167562485, 0.000764524273108691, -0.033413469791412354, 0.008917360566556454, 0.05519614741206169, 0.031583625823259354, 0.040482185781002045, 0.003584490856155753, 0.015265419147908688, 0.012846514582633972, 0.03486732020974159, 0.008434833027422428, -0.02669568359851837, 0.04537012800574303, 0.011342532001435757, -0.039755262434482574, -0.023374389857053757, -0.011367598548531532, 0.024264246225357056, -0.060811012983322144, -0.007532443851232529, 0.036822497844696045, -0.009631752967834473, 0.009055226109921932, 0.051787119358778, 0.010672006756067276, -0.03870247304439545, 0.0592568963766098, -0.004853475838899612, -0.005220071412622929, 0.045721057802438736, -0.04882928729057312, -0.03153349459171295, -0.03070630319416523, 0.013222509995102882, -0.027247143909335136, 0.01772192306816578, 0.023023460060358047, -0.01661900244653225, 0.039379265159368515, -0.0006368424510583282, 0.020830152556300163, -0.0333884060382843, -0.008685496635735035, -0.007745508104562759, -0.009625486098229885, 0.019689632579684258, 0.023324256762862206, -0.02326159179210663, -0.007319380063563585, 0.039028339087963104, -0.05464468523859978, 0.07123862206935883, 0.01602994278073311, 0.017170462757349014, -0.0029766312800347805, -0.010195746086537838, -0.07840760052204132, -0.03912860155105591, -0.0014193832175806165, -0.018047785386443138, -0.02509143576025963, -0.007125115487724543, 0.00011377781629562378, 0.04815249517560005, 0.02032882533967495, 0.0193637702614069, -0.002113408176228404, 0.02584342658519745, -0.008284435607492924, 0.051937516778707504, -0.005220071412622929, -0.0230735931545496, -0.00035464996472001076, 0.03000444360077381, -0.027598073706030846, -0.008729362860321999, -0.004568345844745636, 0.03734888881444931, 0.031658824533224106, 0.047876764088869095, -0.03737395629286766, -0.006818052381277084, 0.04178563877940178, 0.01107933558523655, 0.008854694664478302, 0.0014209498185664415, 0.07600123435258865, 0.03371426835656166, -0.05484521761536598, 0.038301412016153336, -0.021732542663812637, 0.017997654154896736, -0.019213372841477394, -0.0258684940636158, -0.02737247571349144, -0.03509291633963585, -0.0045025465078651905, 0.033538803458213806, 0.05770278349518776, 0.02188294008374214, 0.028350064530968666, -0.02511650323867798, -0.013573438860476017, -0.010659473948180676, -0.005336003378033638, -0.06171340122818947, 0.023086126893758774, 0.007469777949154377, 0.023274123668670654, 0.030856700614094734, 0.01984003186225891, -0.012758782133460045, 0.03599530830979347, -0.0014076333027333021, 0.026043957099318504, 0.04033178836107254, 0.006128727458417416, -0.0008890727767720819, 0.03852701187133789, -0.004956874530762434, -0.02697141282260418, -0.04186083748936653, 0.05664999410510063, -0.015152620151638985, -0.030054576694965363, 0.010866271331906319, -0.024991169571876526, -0.006485923193395138, -0.02880125865340233, -0.01898777484893799, -0.01369877066463232, -0.004399147816002369, -0.03586997464299202, -0.00449628010392189, 0.08357127755880356, 0.0027526007033884525, -0.0388779379427433, -0.012075723148882389, 0.014500894583761692, -0.009581619873642921, -0.01828591711819172, 0.011380131356418133, 0.010621873661875725, 0.014839290641248226, 0.0034748255275189877, 0.059708092361688614, -0.044618137180805206, -0.0193637702614069, -0.05765264853835106, 0.053491633385419846, -0.0157792791724205, 0.036095570772886276, -0.020316293463110924, 0.048703957349061966, -0.0776054784655571, 0.03807581588625908, 0.006962184328585863, -0.006968450732529163, 0.014914490282535553, -0.006044128444045782, 0.02455250918865204, 0.013811569660902023, 0.03692276403307915, 0.04000592604279518, 0.04471840336918831, -0.03697289526462555, -0.0020209760405123234, 0.04176057130098343, 0.007914706133306026, 0.0010880371555685997, -0.002796466927975416, -0.04852849245071411, -0.016255540773272514, -0.0014037167420610785, 0.026119157671928406, 0.026545286178588867, 0.01718299649655819, -0.024677840992808342, -0.009117892012000084, -0.013773970305919647, 0.006749120075255632, 0.04145977646112442, -0.006623788271099329, 0.018862443044781685, -0.039780329912900925, -0.03662196546792984, -0.007049916312098503, 0.02293572761118412, 0.0500575415790081, -0.017696857452392578, -0.04810236394405365, -0.028274863958358765, -0.03469185531139374, -0.025530098006129265, 0.031232696026563644, -0.012802648358047009, -0.019752299413084984, 0.007701641879975796, -0.03441612422466278, -0.028700992465019226, 0.01720806211233139, 0.03148335963487625, 0.029828980565071106, -0.0351681150496006, -0.02516663447022438, -0.020053096115589142, 0.020090695470571518, -0.03110736422240734, -0.015603815205395222, -0.004856609273701906, 0.0027714003808796406, 0.001348883961327374, -0.009324689395725727, -0.004198616836220026, 0.03143322840332985, 0.011492930352687836, -0.02621942199766636, -0.036120638251304626, -0.03404013067483902, 0.014851824380457401, 0.015691546723246574, -0.004931807983666658, -0.007068715989589691, 0.016180342063307762, -0.012006791308522224, 0.0276983380317688, 0.021193616092205048, -0.03541877865791321, -0.012996912933886051, -0.07194048166275024, -9.042496822075918e-05, -0.008804562501609325, -0.05223831534385681, -0.02845032885670662, -0.008422300219535828, -0.025693029165267944, 0.008961226791143417, -0.013372908346354961, 0.007256714161485434, 0.040156323462724686, -0.004847209434956312, -0.022384267300367355, 0.01516515389084816, 0.03586997464299202, 0.016017410904169083, -0.006116194184869528, 0.02925245277583599, 0.025693029165267944, 0.028951656073331833, 0.009030159562826157, -0.019664566963911057, -0.004518213216215372, -0.029678581282496452, -0.0014984989538788795, 0.004270682577043772, -0.006742853205651045, -0.000518952205311507, 0.05740198493003845, 0.011129467748105526, -0.021143482998013496, 0.01047147624194622, -0.009913749061524868, 0.03000444360077381, 0.0018862442811951041, -0.01442569587379694, 0.01314731128513813, 0.007551243994385004, 0.07570043951272964, -0.009268290363252163, -0.019163239747285843, 0.029503116384148598, -0.00445554731413722, -0.017634190618991852, 0.03363906964659691, -0.0030956966802477837, -0.020441625267267227, 0.007394579239189625, 0.029703648760914803, 0.047500770539045334, -0.04782663285732269, 0.002649202011525631, -0.0008647897629998624, 0.011267333291471004, 0.023775450885295868, 0.008152836933732033, -0.003618957009166479, -0.023211458697915077, 0.03266147896647453, -0.002498803660273552, 0.030204975977540016, -0.006053528282791376, 0.02514156885445118, -0.011637061834335327, -0.004182950593531132, -0.008679230697453022, -0.003985552582889795, 0.006203926634043455, 0.03669716417789459, -0.027197010815143585, 0.006210193037986755, -0.01737099327147007, 0.018486447632312775, 0.035293448716402054, -0.019714700058102608, 0.019589368253946304, -0.026394886896014214, -0.037875283509492874, -0.020629622042179108, 0.04364055022597313, -0.009782150387763977, 0.019188305363059044, 0.01158692967146635, 0.023161325603723526, 0.02516663447022438, -0.010722139850258827, -0.006288525648415089, -0.05289003998041153, -0.02113094925880432, -0.013548372313380241, -0.019777365028858185, -0.012338920496404171, 0.0027855003718286753, -0.009418688714504242, 0.008635364472866058, 0.015252886340022087, 0.02417651377618313, 0.012013057246804237, 0.014500894583761692, -0.00010379043669672683, -0.029678581282496452, 0.043866146355867386, -0.023737851530313492, -0.020993083715438843, 0.015039822086691856, 0.020955484360456467, -0.021118415519595146, -0.05990862473845482, 0.022847995162010193, -0.000671308720484376, -0.02164481021463871, 0.009525220841169357, 0.01720806211233139, 0.0007457244792021811, 0.002530136611312628, 0.01965203322470188, -0.02011576108634472, 0.039053402841091156, 0.002646068576723337, -0.01196292508393526, 0.004223683383315802, 0.03481718897819519, 0.0007711825310252607, 0.007858307100832462, 0.026369821280241013, 0.0014052833430469036, -0.014475828036665916, 0.016205407679080963, -0.019326170906424522, 0.020880285650491714, 0.026846081018447876, -0.017997654154896736, -0.025229301303625107, -0.04722503945231438, -0.027573006227612495, -0.0013340008445084095, -0.050157804042100906, 0.028926590457558632, 0.036471568048000336, 0.05030820518732071, 0.022860528901219368, -0.0041140178218483925, 0.0047124773263931274, -0.019865097478032112, 0.002124374732375145, -0.02213360369205475, 0.00011593195813475177, 0.04592159017920494, -0.019564300775527954, 0.00766404252499342, 0.018837377429008484, -0.016944866627454758, 0.029528183862566948, -0.0011922192061319947, -0.037248626351356506, -0.02511650323867798, 0.01817311719059944, 0.018373649567365646, -0.018298448994755745, 0.023787984624505043, 0.017859788611531258, 0.013184910640120506, 0.009174291044473648, 0.008146570064127445, -0.008735629729926586, 0.020241092890501022, -0.017120329663157463, 0.013949434272944927, 0.0387275405228138, -0.002483137184754014, -0.0106344074010849, -0.03030524030327797, -0.01984003186225891, -0.018060319125652313, 0.02667061798274517, -0.011517996899783611, -0.0592067651450634, -0.06321738660335541, -0.012094523757696152, 0.022284002974629402, 0.0296284481883049, 0.06727813929319382, -0.0018110452219843864, 0.010458942502737045, -0.016731802374124527, -0.0313078947365284, -0.014726492576301098, 0.0002649593516252935, 0.011317465454339981, 0.013623571954667568, 0.011737327091395855, 0.01688219979405403, 0.0007425912190228701, -0.020065627992153168, -0.017320862039923668, -0.023888250812888145, 0.0129467798396945, -0.039404332637786865, 0.002074242103844881, 0.00953148677945137, 0.00953148677945137, 0.003205362008884549, 0.03258628025650978, 0.02847539633512497, -0.005292137153446674, -0.01232638768851757, 0.01368623785674572, 0.0071564484387636185, 0.007407112047076225, -0.014413162134587765, -0.003998085856437683, -0.012526918202638626, -0.012658516876399517, 0.06572402268648148, -0.05319083482027054, 0.042662959545850754, -0.04361548274755478, 0.026419954374432564, -0.029127120971679688, -0.013260109350085258, 0.02336185611784458, -0.02509143576025963, 0.0010198878590017557, -0.011875192634761333, 0.009644285775721073, -0.016556337475776672, -0.021720008924603462, 0.007419645320624113, -0.026871148496866226, 0.026846081018447876, 0.019865097478032112, 0.007902173325419426, -0.007469777949154377, -0.0013810002710670233, -0.017245661467313766, 0.015127553604543209, 0.04449280723929405, 0.020980551838874817, -0.00795857235789299, -0.06030968576669693, -0.03075643628835678, -0.01347317360341549, 0.028224732726812363, 0.013799036853015423, 0.02694634720683098, 0.04318935424089432, -0.012620917521417141, 0.0077141751535236835, -0.017170462757349014, -0.024151446297764778, -0.012144655920565128, 0.013172376900911331, -0.05429375544190407, -0.012884113937616348, -0.01744619384407997, -0.021005617454648018, 0.04958127811551094, -0.006523522548377514, -0.0004649028123822063, 0.02511650323867798, -0.0031348627526313066, 0.02521676756441593, -0.015290485695004463, 0.0011052702320739627, -0.06366857886314392, 0.010151879861950874, -0.0498570092022419, -0.008115237578749657, -0.015227819792926311, 0.01266478281468153, -0.025103969499468803, 0.016205407679080963, 0.03108229860663414, -0.00605666171759367, 0.0051918718963861465, -0.029327651485800743, 0.010164412669837475, 0.07304339855909348, 0.02885139174759388, -0.06452083587646484, -0.00416728388518095, -0.01750885881483555, -0.014952089637517929, 0.016280606389045715, 0.008071371354162693, 0.012752515263855457, -0.014037166722118855, 0.039755262434482574, -0.038326479494571686, -0.04118404537439346, 0.05389269441366196, 0.01772192306816578, -0.022973326966166496, 0.01685713417828083, -0.03213508427143097, 0.05820411071181297, -0.027171945199370384, 0.009399889037013054, -0.02333679050207138, -0.0369979627430439, -2.3157017494668253e-05, 0.03657183423638344, -0.021281348541378975, 0.016531269997358322, 0.00449628010392189, 0.015140087343752384, 0.009362288750708103, -0.007632709573954344, 0.02842526324093342, 0.0023170725908130407, 0.02484077215194702, -0.010521608404815197, 0.034265726804733276, 0.039755262434482574, -0.030154842883348465, -0.005144872236996889, -0.012445452623069286, 0.008309501223266125, 0.023324256762862206, 0.02175760827958584, 0.007726708427071571, -0.025893559679389, 0.02272266335785389, 0.02814953215420246, -0.0016105142422020435, -0.01250185165554285, 0.012577051296830177, 0.015503549948334694, -0.04138457775115967, 0.029753779992461205, -0.006181993521749973, -0.050458602607250214, 0.005442535504698753, -0.02667061798274517, 0.004969407804310322, 0.012313853949308395, -0.007250447291880846, 0.004646678455173969, 0.02333679050207138, 0.041284311562776566, 0.0038539543747901917, -0.0029296318534761667, -0.005937596317380667, 0.014901956543326378, -0.024264246225357056, 0.008347101509571075, -0.0276983380317688, -0.05060900002717972, 0.02732234261929989, -0.011618262156844139, 0.055296409875154495, 0.013134777545928955, -0.03474198654294014, 0.0038946871645748615, -0.0010277210967615247, 0.01626807451248169, -0.058254241943359375, -0.0006219592760317028, 0.0018047785852104425, 0.01517768669873476, 0.05075939744710922, -0.006203926634043455, 0.03391479700803757, 0.0008843728573992848, -0.027999134734272957, -0.005696332547813654, -0.014876889996230602, -0.03439106047153473, 0.0018016452668234706, -0.005843597464263439, 0.006874451879411936, 0.020128294825553894, 0.03634623438119888, -0.012426652945578098, -0.021569611504673958, 0.001905044075101614, -0.021958140656352043, -0.004392881412059069, -0.0041234176605939865, 0.0019943430088460445, -0.004129684530198574, -0.006498456466943026, 0.0175339262932539, 0.033538803458213806, -0.0012227687984704971, 0.007106315810233355, -0.016706734895706177, 0.01925097219645977, 0.006316725164651871, -0.03190948814153671, -0.00877949595451355, 0.009099092334508896, -0.03431586176156998, 0.020053096115589142, 0.01613020896911621, -0.001026937854476273, -0.02108081616461277, -0.004170417319983244, 0.007143915165215731, 0.02121868170797825, 0.02812446653842926, 0.03805074840784073, -0.01517768669873476, -0.006623788271099329, 0.033538803458213806, -0.0019849431701004505, 0.0014773492002859712, -0.018962709233164787, 0.015516082756221294, 0.0056305332109332085, -0.004806476179510355, -0.005157405510544777, 0.01707019843161106, -0.012508118525147438, 0.01739606074988842, 0.03326307237148285, -0.020391492173075676, -0.012752515263855457, -0.002276339801028371, 0.003640890121459961, 0.0016324473544955254, 0.010051614604890347, -0.01101040281355381, -0.008597765117883682, 0.025592762976884842, 0.02457757480442524, -0.033488668501377106, -0.0015689980937168002, -0.038953136652708054, 0.024214113131165504, -0.019150706008076668, 0.004142217803746462, -0.022860528901219368, 0.024489842355251312, 0.007043649908155203, 0.022973326966166496, -0.021870408207178116, -0.0022246402222663164, 0.05075939744710922, -0.010364944115281105, -0.001042604329995811, 0.024138914421200752, -0.02140668034553528, 0.011705994606018066, 0.01367370504885912, 0.0296284481883049, 0.0221837367862463, -0.009462554939091206, -0.014676359482109547, -0.01772192306816578, -0.013410507701337337, -0.03659689798951149, 0.018248317763209343, 0.02420157939195633, 0.02164481021463871, 0.029503116384148598, 0.023650119081139565, -0.01884990930557251, 0.02885139174759388, 0.04261282831430435, -0.022634930908679962, -0.01352330669760704, -0.0004762610187754035, -0.01725819520652294, 0.019125640392303467, 0.0008749729604460299, -0.006156926974654198, -0.027197010815143585, 0.021256281062960625, 7.603139238199219e-05, 0.0350678525865078, 0.0025677361991256475, 0.03211002051830292, -0.007707908749580383, -0.010527875274419785, 0.017245661467313766, 0.018812309950590134, -0.013811569660902023, -0.00935602281242609, 0.023236524313688278, 0.01774699054658413, -0.012909180484712124, -0.005310936830937862, 0.014701426029205322, -0.02842526324093342, -0.026720749214291573, -0.0006039428408257663, 0.05695079267024994, -0.018536580726504326, 0.034616656601428986, -0.013961968012154102, 0.009493887424468994, 0.019564300775527954, -0.018536580726504326, 0.03368920087814331, 0.014952089637517929, 0.0406576506793499, -0.00894242711365223, -0.02086775191128254, 0.01516515389084816, 0.012627183459699154, 0.008008705452084541, -0.023963449522852898, 0.007964839227497578, 0.03293721005320549, 0.022221336141228676, 0.026043957099318504, 0.01645607128739357, -0.007275513838976622, -0.01836111582815647, -0.06401950865983963, -0.004768876824527979, 0.010045347735285759, -0.024489842355251312, -0.0003481875464785844, -0.023950915783643723, 0.010076680220663548, -0.004471213556826115, -0.00420801667496562, 0.013247576542198658, -0.0006294008926488459, -0.01517768669873476, 0.02669568359851837, 0.012401586398482323, 0.00824056938290596, -0.030530838295817375, -0.01920083910226822, 0.0034936252050101757, -0.01831098273396492, -0.013999567367136478, -0.010283478535711765, 0.005884330254048109, -0.0041328174993395805, 0.011261066421866417, -0.016894733533263206, 0.009111625142395496, 0.015628881752490997, -0.011574395932257175, 0.005383003037422895, 0.0037818884011358023, -0.010903870686888695, -0.010007748380303383, -0.006949651055037975, 0.02014082856476307, 0.016355806961655617, 0.06406964361667633, 0.004449280444532633, -0.004649811424314976, -0.03258628025650978, -0.004690544214099646, -0.02584342658519745, -0.01480169128626585, 0.012338920496404171, -0.01962696760892868, 0.016894733533263206, 0.02067975513637066, 0.011267333291471004, 0.004746943712234497, -0.026094090193510056, -0.006949651055037975, 0.03301240876317024, 0.017659258097410202, -0.0023123726714402437, -0.007776841055601835, 0.04486880078911781, -0.010076680220663548, 0.05690065771341324, 0.01613020896911621, 0.03739902377128601, 0.01744619384407997, 0.026745816692709923, 0.009857350029051304, -0.02847539633512497, 0.051636721938848495, 0.038301412016153336, 0.03454145789146423, -0.02288559451699257, 0.017433660104870796, -0.02817459963262081, -0.02145681157708168, -0.0005365769611671567, -0.002237173495814204, 0.020103229209780693, 0.008773229084908962, 0.019188305363059044, -0.017245661467313766, -0.03246095031499863, 0.026419954374432564, -0.025429831817746162, 0.035343579947948456, 0.033413469791412354, -0.008115237578749657, 0.023625053465366364, -0.007100049406290054, -0.01406223326921463, -0.040156323462724686, -0.011110668070614338, -0.02213360369205475, 0.006031595170497894, -0.019263505935668945, 0.03857714310288429, 0.02234666794538498, -0.03396493196487427, -0.00014373996236827224, -0.0352182500064373, -0.005458201747387648, -0.047199975699186325, -0.0115367965772748, -0.019589368253946304, 0.0175339262932539, -0.002442404394969344, 0.008447366766631603, 0.03744915500283241, 0.009769617579877377, 0.023161325603723526, -0.005633666645735502, -0.003806954948231578, -0.011430264450609684, -0.02113094925880432, -0.013548372313380241, 0.06171340122818947, 0.024615174159407616, -0.008597765117883682, 0.020955484360456467, 0.029803913086652756, -0.003640890121459961, 0.0011679361341521144, 0.022258935496211052, 0.015127553604543209, 0.013598505407571793, -0.009594152681529522, 0.024477310478687286, 0.04998233914375305, 0.021344013512134552, -0.0014460162492468953, 0.00639192434027791, 0.010076680220663548, 0.0023076727520674467, 0.01699499785900116, 0.011355065740644932, 0.02054188959300518, -0.023750385269522667, 0.01460115984082222, 0.017759522423148155, 0.008704297244548798, -0.036496635526418686, 0.027272209525108337, 0.018411248922348022, 0.012971846386790276, 0.02075495384633541, 0.02387571707367897, 0.036396369338035583, 0.003252361435443163, 0.014463295228779316, 0.007382045965641737, 0.016167808324098587, -0.0035218249540776014, -0.02519170194864273, -0.004110884387046099, 0.01984003186225891, 0.0025176035705953836, -0.006122460588812828, -0.016731802374124527, 0.008998827077448368, -0.011104402132332325, 0.02349972166121006, 0.011699727736413479, -0.014751558192074299, 0.02742260880768299, -0.03777501732110977, -0.009594152681529522, 0.01707019843161106, -0.013811569660902023, -0.020366424694657326, 0.0006211759755387902, 0.001892510917969048, -0.017145397141575813, 0.020366424694657326, -0.028224732726812363, -0.00041947001591324806, -6.24700915068388e-05, -0.010133080184459686, -0.03429079428315163, 0.01890004239976406, 0.008760696277022362, -0.014889423735439777, -0.042688027024269104, -0.050884731113910675, 0.0069183181039988995, 0.012896646745502949, -0.00953148677945137, -0.021908007562160492, 0.024126380681991577, 0.002453370951116085, -0.03707316145300865, 0.008228035643696785, -0.015829412266612053, 0.019050441682338715, 0.00915549136698246, -0.011806259863078594, 0.013172376900911331, -0.037173427641391754, 0.02202080562710762, 0.039053402841091156, -0.014701426029205322, -0.002495670458301902, -0.033488668501377106, 0.05223831534385681, 0.0036753565073013306, 0.011687194928526878, 0.018674444407224655, -0.04597172141075134, -0.008954960852861404, -0.026545286178588867, 0.039078470319509506, 0.013335308991372585, -0.00935602281242609, -0.029377784579992294, -0.0031834288965910673, -0.017483793199062347, -0.004903608467429876, -0.007463511545211077, -0.03261134773492813, 0.016769401729106903, -0.01973976567387581, 0.0046341451816260815, 0.013861702755093575, -0.0044336142018437386, 0.006561122369021177, 0.02336185611784458, 0.01125479955226183, 0.000871839642059058, -0.005445668939501047, -0.03988059237599373, -0.01331024244427681, -0.00020816836331505328, 0.005495801568031311, 0.00341842626221478, 0.0053422702476382256, 0.033463604748249054, 0.01842378079891205, -0.008491232991218567, 0.014739025384187698, 0.004443014040589333, 0.004668611101806164, 0.01826084963977337, -0.02624448947608471, 0.0014953656354919076, 0.025367166846990585, 0.004192350432276726, 0.0138491690158844, 0.00284346635453403, 0.010114280506968498, 0.017847254872322083, 0.01591714471578598, 0.0031176297925412655, 0.018950175493955612, -0.03366413339972496, 0.028600728139281273, -0.021958140656352043, -0.012508118525147438, 0.0035280915908515453, -0.026520218700170517, 0.00758257694542408, -0.014688892289996147, -0.012163455598056316, -0.03409026190638542, -0.020717354491353035, 0.007745508104562759, 0.013097178190946579, -0.00383515446446836, -0.012921713292598724, -0.023161325603723526, -0.015428350307047367, 0.013598505407571793, 0.006360591389238834, 0.0295783169567585, 0.005492668133229017, 0.0175589919090271, 0.006742853205651045, -0.030054576694965363, 0.004345881752669811, -0.002105575054883957, -0.005054006818681955, 0.020341359078884125, -0.022973326966166496, 0.005220071412622929, 0.01868697814643383, -0.013034512288868427, 0.020078161731362343, -0.010321077890694141, -0.043139223009347916, -0.010578008368611336, 0.028700992465019226, -0.03739902377128601, -0.0050226738676428795, 0.013748903758823872, 0.05258924514055252, -0.021181082352995872, -0.00936855562031269, -0.013335308991372585, 0.008347101509571075, -0.01555368211120367, 0.002223073737695813, 0.006949651055037975, -0.0013402674812823534, 0.032310549169778824, -0.01938883773982525, -0.011160801164805889, 0.019689632579684258, 0.031157497316598892, -0.03584490716457367, -0.002909265458583832, -0.03519318252801895, -0.026795949786901474, -0.009876149706542492, 0.0083345677703619, 0.006517256144434214, 0.03627103567123413, -0.021745076403021812, 0.005044606979936361, 0.015854477882385254, -0.023950915783643723, 0.00802750512957573, 0.006579922046512365, 0.0006928500952199101, -0.0031990953721106052, 0.018624313175678253, -0.018198184669017792, 0.00011789026757469401, 0.01130493264645338, 0.01873711124062538, 0.006404457613825798, -0.01184385921806097, 0.0008209235966205597, -0.013122244738042355, 0.013548372313380241, 0.013924368657171726, 0.0033714266028255224, -0.036421436816453934, -0.023198924958705902, -0.032711613923311234, 0.029302585870027542, -0.0012603683862835169, 0.003108229720965028, 0.015002221800386906, 0.01463876012712717, 0.02626955509185791, 0.02890152484178543, 0.010571741499006748, -0.0106469402089715, -0.02253466658294201, -0.022923195734620094, -0.001418599858880043, 0.02850046195089817, -0.008353367447853088, -0.030906833708286285, -0.0351681150496006, -0.007432178594172001, 0.006081727799028158, -0.004781410098075867, 0.0014655992854386568, -0.024001048877835274, -0.0006670004222542048, 0.006673920899629593, -0.0015776146901771426, 0.01010801363736391, -0.011110668070614338, -0.0042738160118460655, -0.05023300647735596, 0.0009360722615383565, -0.020955484360456467, 0.003293094225227833, -0.007356979418545961, 0.019313637167215347, -0.021193616092205048, 0.005376736167818308, 0.009211890399456024, -0.03817608207464218, -0.0023750385735183954, -0.009957615286111832, -0.017358461394906044, 0.03622090443968773, -0.0005890596657991409, -0.017521392554044724, 0.044568005949258804, -0.016355806961655617, -0.0166691355407238, -0.024665307253599167, -0.0040450855158269405, -0.008002438582479954, 0.03321294113993645, -0.02086775191128254, -0.043139223009347916, 0.0017734456341713667, -0.00965055264532566, -0.009475087746977806, 0.000616867677308619, -0.005878063850104809, 0.02326159179210663, -0.004399147816002369, -0.003211628645658493, -0.0025458030868321657, -0.027999134734272957, -0.0037004228215664625, -0.0005295270821079612, -0.014713958837091923, 0.06517256051301956, 0.03822621330618858, -0.025103969499468803, 0.005204405169934034, 0.006047261878848076, -0.003293094225227833, -0.022847995162010193, -0.02420157939195633, 0.012188522145152092, -0.04394134506583214, -0.029302585870027542, -0.02842526324093342, -0.01648113876581192, -0.0033870930783450603, -0.002644502092152834, 0.006191393360495567, 0.0021901740692555904, -0.00017105838924180716, 0.022785330191254616, -0.0076765757985413074, 0.017308328300714493, -0.012627183459699154, 0.01702006533741951, 0.025993825867772102, 0.004367814864963293, -0.03589504212141037, -0.036095570772886276, -0.03436599299311638, 0.012971846386790276, 0.01836111582815647, -0.026720749214291573, -0.007795640733093023, 0.02809940092265606, 0.0030800302047282457, 0.03952966630458832, -0.007739241700619459, -0.0031943954527378082, 0.015879545360803604, -0.012382786720991135, -0.02000296302139759, -0.019501635804772377, -0.030806567519903183, 0.014876889996230602, -0.0056493328884243965, 0.02403864823281765, 0.0068055191077291965, -0.038978204131126404, -0.03634623438119888, -0.0006517256260849535, -0.019175773486495018, -0.00309256324544549, -0.0038727540522813797, -0.019288571551442146, 0.011655861511826515, 0.02131894789636135, -0.0024032380897551775, 0.02852552942931652, 0.008622830733656883, 0.016142742708325386, 0.04058245196938515, 0.0024298711214214563, 0.003001697827130556, -0.006244659423828125, -0.020241092890501022, -0.0073068467900156975, -0.013736370950937271, -0.025204233825206757, 0.013836636207997799, -0.012884113937616348, -0.014726492576301098, -0.005151139106601477, 0.044943999499082565, -0.026720749214291573, 0.0021839074324816465, 0.037173427641391754, 0.0002677009906619787, 0.019589368253946304, -0.003015797585248947, -0.015616348013281822, -0.017483793199062347, -0.014488361775875092, 0.03812594711780548, 0.021770142018795013, -0.0052514043636620045, 0.005464468616992235, 0.018561646342277527, -0.012457985430955887, 0.04045712202787399, -0.02704661339521408, -0.004211150109767914, 0.003929153550416231, 0.007789374329149723, 0.012495584785938263, -0.01678193360567093, -0.057201456278562546, 0.0034998918417841196, -0.021181082352995872, 0.023813050240278244, -0.014914490282535553, 0.018035253509879112, 0.01890004239976406, 0.032009754329919815], [0.036419276148080826, 0.06215426325798035, 0.014087161980569363, -0.006159321870654821, -0.03063805215060711, 0.020380645990371704, -0.030320938676595688, 0.02373473346233368, 0.01668505370616913, 0.019209766760468483, 0.01777055859565735, 0.005982469767332077, -0.03380918875336647, -0.0053177508525550365, -0.0033754303585737944, 0.023868896067142487, 0.02946717105805874, -0.012105201371014118, -0.06849654018878937, 0.013611490838229656, 0.018136458471417427, 0.018160851672291756, 0.00160843669436872, 0.02177106775343418, -0.007879053242504597, 0.01278211735188961, 0.040785688906908035, -0.04459105059504509, 0.01663626730442047, -0.03197968751192093, 0.03544354438781738, 0.009049934335052967, 0.025710593909025192, -0.029833070933818817, 0.04544481635093689, -0.06756959110498428, -0.040980834513902664, 0.05776346102356911, 0.00042612140532583, 0.0010611108737066388, -0.013684671372175217, 0.008324231952428818, -0.02213696762919426, -0.01372126117348671, -0.031735751777887344, 0.05737316608428955, -0.010958714410662651, -0.020563596859574318, -0.02778402902185917, 0.010867238976061344, 0.014257915318012238, -0.009781735017895699, 0.03668760508298874, 0.011501465924084187, 0.06825260072946548, 0.06137367710471153, 0.0042840829119086266, 0.04278594255447388, 0.0018493210664018989, -0.0321260467171669, -0.02790599688887596, -0.028832944110035896, -0.010306191630661488, 0.04110280051827431, -0.03685835748910904, -0.018624326214194298, -0.016587480902671814, 0.06278849393129349, -0.025686200708150864, 0.04385925084352493, -0.035589903593063354, 0.030589265748858452, 0.0076290215365588665, -0.030198970809578896, -0.0358826220035553, -0.021100251004099846, -0.007244825828820467, -0.04359092190861702, 0.05200662836432457, 0.012251561507582664, -0.048689134418964386, 0.013904211111366749, -0.010605010204017162, 0.07439972460269928, -0.005488504655659199, -0.020270876586437225, -0.01977081224322319, 0.0011586842592805624, -0.054250817745923996, -0.0067142704501748085, -0.05815375596284866, -0.046201013028621674, 0.029369598254561424, 0.046030256897211075, 0.021271003410220146, -0.0009528653463348746, 0.04664009064435959, -0.0008773984154686332, -0.057324379682540894, 0.04437151178717613, -0.00242866319604218, 0.03134546056389809, 0.003161988453939557, 0.034394629299640656, 0.016855807974934578, -0.004997588228434324, -0.04581071808934212, 0.01646551303565502, 0.03378479555249214, -0.009476818144321442, -0.013135820627212524, -0.011037992313504219, -0.013135820627212524, 0.06864289939403534, -0.0016511251451447606, -0.02060018666088581, -0.015184862539172173, 0.021331988275051117, 0.0030293494928628206, -0.0048725721426308155, 0.017758361995220184, -0.02558862790465355, -0.03959041088819504, -0.08401071280241013, -0.030906379222869873, 0.04959168657660484, -0.055080194026231766, 0.06147124990820885, -0.045371636748313904, -0.008397411555051804, 0.03805363178253174, -0.017050953581929207, 0.03517521545290947, -0.018502358347177505, 0.006616697181016207, -0.012989460490643978, -0.023807913064956665, -0.004445688799023628, 0.015184862539172173, -0.04354213550686836, -0.002201500115916133, -0.016441119834780693, 0.015758106485009193, -0.007019187323749065, -0.07054557651281357, 0.03634609654545784, -0.010104946792125702, 0.07420457899570465, -0.003954772371798754, 0.0024561057798564434, -0.06044673174619675, 0.015038502402603626, 0.001217380748130381, -0.025125153362751007, -0.0026893671602010727, 0.0042535909451544285, 0.049372147768735886, 0.04159066826105118, 0.009007246233522892, 0.014575028792023659, 0.0036833963822573423, -0.022929752245545387, 0.04532285034656525, 0.029589137062430382, 0.006107485853135586, 0.024978794157505035, -0.019039012491703033, -0.0019819599110633135, -0.0518602691590786, -0.029833070933818817, -0.009690259583294392, 0.006110535003244877, 0.009129212237894535, -0.022429687902331352, -0.037077896296978, 0.008562067523598671, 0.007476562634110451, 0.01740465685725212, -0.009281670674681664, -0.04207853600382805, -0.006128829903900623, -0.05649500712752342, -0.013648081570863724, -0.035272788256406784, -0.053421445190906525, 0.047347500920295715, 0.007165547460317612, -0.0016160596860572696, -0.023502996191382408, 0.007677807938307524, 0.04712795838713646, 0.007958331145346165, 0.008452297188341618, 0.00915970467031002, 0.01902681589126587, -0.010397667065262794, 0.003793166484683752, -0.011940546333789825, -0.00958658754825592, -0.004534114617854357, 0.019673239439725876, -0.0247348602861166, 0.05395809933543205, -0.008604755625128746, -0.03151621297001839, -0.03973677381873131, 0.04151748865842819, 0.045688752084970474, 0.01657528430223465, 0.03449220210313797, 0.03466295450925827, 0.005784274078905582, -0.04022464156150818, 0.0336628295481205, 0.024429943412542343, 0.03717546910047531, 0.04437151178717613, -0.003485200461000204, -0.022954145446419716, 0.017160724848508835, 0.0025262366980314255, 0.02060018666088581, 0.001858468633145094, -0.03654124215245247, -0.07444851845502853, 0.006946007255464792, 0.008226658217608929, 0.003046120051294565, 0.03454098850488663, -0.040273427963256836, -0.02627164125442505, -0.00895845890045166, 0.006952105555683374, -0.05581199377775192, -0.008031511679291725, 0.012684543617069721, -0.038590285927057266, -4.8977279220707715e-05, -0.02627164125442505, -0.03163817897439003, -0.017307084053754807, 0.019136585295200348, 0.0237957164645195, 0.016111809760332108, -0.024527516216039658, -0.03549233078956604, -0.03385797515511513, -0.0026283839251846075, -0.0053451936691999435, -0.0032016276381909847, 0.008647443726658821, -0.03698032349348068, 0.04317623749375343, -0.06708171963691711, 0.01072697713971138, 0.01731928065419197, 0.0035583805292844772, -0.00011196167906746268, 0.074155792593956, -0.027344949543476105, 0.04100522771477699, -0.017160724848508835, -0.021527133882045746, -0.019904976710677147, -0.04271276295185089, 0.010086651891469955, 0.044859375804662704, -0.011391696520149708, -0.03646806254982948, -0.02573498710989952, -0.036419276148080826, 0.009549997746944427, 0.024954400956630707, -0.0501527339220047, -0.011714908294379711, 0.014562832191586494, -0.004839031491428614, -0.025881348177790642, -0.015160469338297844, 0.026344820857048035, -0.038980577141046524, 0.011763694696128368, 0.00129437237046659, -0.05371416360139847, 0.026125282049179077, -0.006415451876819134, -0.016209382563829422, 0.05986129119992256, -0.018465768545866013, -0.013148017227649689, 0.09567072987556458, 0.03217483311891556, 0.02324686571955681, 0.0026725968345999718, 0.007220432627946138, 0.0017929114401340485, -0.057129234075546265, 0.024551909416913986, 0.028735371306538582, -0.025539841502904892, 0.006897220853716135, 0.07566818594932556, -0.005040276795625687, -0.008647443726658821, -0.07332642376422882, 0.022002805024385452, 0.04405439645051956, 0.04925018176436424, -0.025954527780413628, -0.006421550177037716, -0.012769920751452446, 0.0659596249461174, -0.020978283137083054, 0.01657528430223465, -0.0909872055053711, -0.00955609604716301, 0.017136331647634506, -0.005406177137047052, -0.019441502168774605, 0.04059053957462311, 0.09567072987556458, -0.0182828176766634, 0.03700471669435501, -0.01996595971286297, 0.03293102607131004, 0.02824750356376171, -0.009452424943447113, 0.014782371930778027, 0.027027836069464684, -0.04961607977747917, -0.03200408071279526, 0.026783902198076248, -0.008976753801107407, 0.01825842447578907, -0.0051408992148935795, -0.008312035351991653, -0.013928605243563652, 0.045664358884096146, -0.0005484693101607263, 0.012074709869921207, 0.017307084053754807, 0.0245641078799963, -0.02202719822525978, 0.00870232842862606, -0.00041278128628619015, 0.024381157010793686, 0.058300115168094635, 0.013770048506557941, 0.022002805024385452, 0.02724737673997879, 0.015062895603477955, 0.00489391665905714, -0.05512898042798042, -0.01126972958445549, -0.015319026075303555, -0.06786230951547623, 0.02467387728393078, 0.0009513407712802291, -0.024637287482619286, 0.015514172613620758, -0.03907815366983414, 0.03780969977378845, 0.028003569692373276, 0.05298236384987831, -0.04032221436500549, -0.015599549748003483, -0.04344456270337105, 0.004710966255515814, 0.024381157010793686, -0.011336810886859894, 0.0030415463261306286, 0.012294250540435314, 0.022332115098834038, -0.017819344997406006, -0.002245713025331497, -0.0077753812074661255, 0.010391568765044212, 0.05586078017950058, 0.001028332277201116, -0.01413594838231802, 0.05820254236459732, 0.03819999098777771, 0.06088580936193466, 0.011495367623865604, 0.023929879069328308, 0.021380774676799774, -0.027393735945224762, 0.024600697681307793, -0.009793931618332863, 0.019758615642786026, -0.009934193454682827, 0.018014492467045784, -0.011190450750291348, -0.04959168657660484, 0.04783536493778229, 0.01857553794980049, 0.05751952901482582, 0.01239792164415121, -0.016416726633906364, -0.03444341570138931, 0.01600204035639763, -0.0242225993424654, 0.005668405443429947, -0.047689005732536316, 0.012806510552763939, -0.017551017925143242, -0.007744889706373215, 0.012599167414009571, 0.03183332458138466, -0.012410118244588375, 0.04593268409371376, 0.01985619030892849, 0.026125282049179077, 0.001118282787501812, 0.0511772558093071, -0.00971465278416872, 0.027198588475584984, 0.05517776682972908, -0.020417237654328346, -0.03168696537613869, 0.02034405618906021, -0.0037474290002137423, -0.0491282157599926, -0.0026725968345999718, 0.007787578273564577, 0.013245590962469578, 0.015123879536986351, 0.017563214525580406, 0.008970655500888824, -0.04261519014835358, -0.04120037332177162, 0.012093004770576954, 0.05078696087002754, -0.0071167610585689545, -0.052396923303604126, 0.03327253460884094, 0.0018112064572051167, -0.019478091970086098, -0.025125153362751007, -0.0013484950177371502, 0.0014879945665597916, -0.012757724151015282, 0.007653414737433195, 0.035077642649412155, -0.032882239669561386, 0.044347114861011505, -0.038809824734926224, 0.03334571421146393, 0.038956183940172195, -0.028198717162013054, 0.009641473181545734, 0.0050067356787621975, -0.04578632488846779, -0.004960998427122831, -0.03312617540359497, -0.02294194884598255, 0.020587990060448647, -0.058787982910871506, 0.030881986021995544, 0.021356381475925446, 0.015758106485009193, 0.038761038333177567, 0.048030514270067215, -0.010836747474968433, -0.010824550874531269, 0.04088326171040535, 0.003555331379175186, 0.006488631945103407, -0.0010885534575209022, -0.05449475347995758, -0.004646933637559414, -0.01631915383040905, -0.014233522117137909, 0.0053147017024457455, 0.047225531190633774, -0.016050826758146286, -0.004518868867307901, -0.010476944968104362, 0.006921614054590464, 0.021466150879859924, 0.016843611374497414, 0.02878415770828724, -0.02775963582098484, -0.028832944110035896, -0.0048725721426308155, 0.03973677381873131, 0.0358826220035553, 0.0008804476237855852, -0.021210020408034325, -0.024686073884367943, -0.07410700619220734, -0.0019072553841397166, 0.046152226626873016, -0.012324742041528225, -0.002568925032392144, 0.01496532279998064, 0.013940801844000816, -0.03495567664504051, -0.003649855498224497, -0.030174577608704567, 0.023929879069328308, -0.0360533781349659, 0.025710593909025192, -0.021356381475925446, 0.07020407170057297, -0.006519123911857605, 0.02147834748029709, -0.008995048701763153, -0.022612638771533966, -0.03276027366518974, -0.0309307724237442, -5.0358936277916655e-05, 0.010178126394748688, -0.005220177583396435, -0.022685818374156952, -0.0018889603670686483, -0.0006704360712319613, 0.01625817082822323, -0.018038885667920113, 0.015575156547129154, -0.02707662247121334, 0.03683396428823471, -0.08259589225053787, -0.008769410662353039, -0.04085886850953102, 0.01574590988457203, 0.014538438990712166, -0.019904976710677147, 0.010007373057305813, -0.020990481600165367, -0.012068611569702625, -0.0326383076608181, -0.03534596785902977, -0.018965832889080048, -0.05088453367352486, -0.02927202358841896, 0.04473740980029106, -0.00542752118781209, 0.023698143661022186, -0.010531830601394176, -0.02336883172392845, -0.016526497900485992, 0.018868258222937584, -0.008177871815860271, 0.009879307821393013, 0.02810114249587059, 0.06410573422908783, 0.04010267183184624, -0.01979520544409752, 0.004210902843624353, -0.012391823343932629, -0.003533987095579505, -0.004823785740882158, -0.01403837464749813, 0.000983357080258429, -0.0012829379411414266, 0.01866091601550579, 0.0252471212297678, -0.00769610283896327, 0.0084583954885602, 0.03012579120695591, 0.009934193454682827, 0.008336428552865982, 0.00039486741297878325, -0.008940163999795914, -0.0084583954885602, -0.011733203195035458, -0.010702583938837051, 0.0013385852798819542, -0.005543389357626438, -0.0235395859926939, 0.023002931848168373, 0.009921996854245663, -0.03210165351629257, 0.04100522771477699, 0.007683906238526106, -0.008482788689434528, -0.012843100354075432, 0.009726849384605885, -0.0162337776273489, -0.015514172613620758, -0.004168214276432991, 0.008586460724473, -0.027540097013115883, -0.0126235606148839, -0.007647316437214613, 0.0007123621762730181, -0.034419022500514984, -0.04461544379591942, 0.019807403907179832, 0.00400965753942728, -0.027174195274710655, 0.007135055959224701, -0.0012364380527287722, 0.023466406390070915, -0.0031924801878631115, 0.004531065467745066, 3.2945321436272934e-05, -0.03190650790929794, 0.027979176491498947, 0.0021999755408614874, -0.007952232845127583, -0.03471174091100693, 0.00643984554335475, -0.005110407713800669, -0.021527133882045746, 0.018880454823374748, -0.009793931618332863, 0.01648990623652935, 0.0450301319360733, 0.028979303315281868, -0.0013492574216797948, -0.051079683005809784, 0.008104691281914711, -0.03722425922751427, -0.025320300832390785, -0.021844247356057167, -0.015197059139609337, 0.014818962663412094, -0.012086906470358372, 0.012904084287583828, -0.003963919822126627, 0.011873465031385422, -0.029052484780550003, 0.0014117653481662273, 0.01885606162250042, -0.0021954018156975508, -0.03580944240093231, 0.009476818144321442, -0.03568747639656067, -7.608629675814882e-05, -0.009232884272933006, -0.002780842361971736, -0.02824750356376171, -0.018843865022063255, -0.011056287214159966, -0.0032504142727702856, -0.0027930389624089003, 0.016697250306606293, -0.01239792164415121, 0.03234558552503586, -0.003033923450857401, 0.007891249842941761, -0.04207853600382805, 0.04139552265405655, 0.02068556286394596, -0.03688275068998337, -0.01851455494761467, 0.02336883172392845, -0.009318261407315731, 0.019929369911551476, 0.013843228109180927, 1.7508900782559067e-05, -0.02202719822525978, -0.008970655500888824, -0.009025541134178638, -0.014184734784066677, 0.005183587782084942, 0.00441519683226943, 0.06644749641418457, -0.03973677381873131, 0.019441502168774605, 0.022893162444233894, -0.02196621522307396, 0.014270111918449402, -0.02230772189795971, 0.022075984627008438, -0.012989460490643978, -0.01067209243774414, -0.017136331647634506, -0.011501465924084187, 0.025539841502904892, -0.015880072489380836, -0.017294887453317642, -0.019807403907179832, 0.0014148144982755184, -0.07308248430490494, 0.02978428453207016, -0.030052611604332924, 0.029906250536441803, -0.006150174420326948, -0.03149181976914406, -0.001409478485584259, -0.01849016174674034, -0.0001752319367369637, -0.014879945665597916, 0.03629731014370918, 0.004875621758401394, 0.027003442868590355, -0.004558507818728685, 0.00035503762774169445, 0.0040523456409573555, -0.019978156313300133, -0.019807403907179832, -0.019697632640600204, 0.014501848258078098, -0.016843611374497414, -0.006043453235179186, -0.035419147461652756, -0.012806510552763939, -0.004241394344717264, 0.04139552265405655, -0.05112846940755844, -0.04322502389550209, -0.04307866096496582, -0.026369215920567513, -0.010147634893655777, -0.0259301345795393, 0.05605592578649521, 0.02085631713271141, -0.012574773281812668, -0.0021450906060636044, -0.019014619290828705, -0.041834600269794464, -0.010056160390377045, 0.033589646220207214, -0.011806382797658443, 0.03190650790929794, 0.02807674929499626, -0.0076290215365588665, -0.020319662988185883, 0.028174323961138725, 0.0017761409981176257, 0.0065374188125133514, 0.029223237186670303, 0.007214334327727556, 0.010830649174749851, -0.00814738031476736, -0.02051481045782566, 0.016111809760332108, 0.03668760508298874, 0.013452934101223946, -0.014428668655455112, 0.000692161382175982, -0.03337010741233826, 0.011800284497439861, -0.056934088468551636, 0.022417491301894188, -0.03285784646868706, -0.021356381475925446, 0.00829983875155449, -0.04944532737135887, -0.013806638307869434, -0.031003952026367188, 0.012318643741309643, -0.030198970809578896, -0.0053451936691999435, -0.02727176994085312, 0.005354341119527817, 0.016587480902671814, -0.014977519400417805, 0.008592559024691582, 0.003774871351197362, 0.012513790279626846, 0.03227240592241287, -0.02975989133119583, 0.0025994167663156986, -0.004271885845810175, 0.009665866382420063, 0.026979049667716026, -0.011922251433134079, -0.027027836069464684, 0.04471301659941673, 0.018612129613757133, 0.016075219959020615, 0.0045646061189472675, -0.0525432825088501, -0.0021328937727957964, 0.02399086393415928, -0.002797612687572837, 0.033906761556863785, 0.013355361297726631, 0.019039012491703033, 0.020417237654328346, -0.01215398870408535, -0.009104819037020206, -0.04681084677577019, -0.03646806254982948, 0.002361581427976489, 0.027344949543476105, 0.028881730511784554, 0.002745776902884245, 0.0164045300334692, 0.002649727975949645, -0.0021572872065007687, -0.04739628732204437, 0.02727176994085312, 0.031857721507549286, -0.004701818805187941, 0.02288096584379673, -0.010324486531317234, 0.015160469338297844, 0.020417237654328346, 0.013587097637355328, -0.020527007058262825, 0.0254178736358881, -0.0033662826754152775, -0.04471301659941673, 0.004976244177669287, 0.006872827187180519, 0.018904849886894226, 0.01885606162250042, 0.00299885799176991, 0.025003187358379364, 0.024942204356193542, 0.004049296490848064, -0.04268836975097656, 0.005482406355440617, -0.012160087004303932, -0.022344311699271202, 0.03902936726808548, 0.010269601829349995, 0.009732947684824467, 0.010745272040367126, 0.01802668906748295, -0.021636905148625374, -0.01723390445113182, 0.054592326283454895, 0.009007246233522892, -0.004582901485264301, 0.032394371926784515, -0.0025841707829385996, 0.005259817000478506, 0.0353703610599041, 0.0182828176766634, 0.01985619030892849, -0.0486159548163414, -0.001477322424761951, 0.015440993010997772, -0.003296151990070939, 0.031028345227241516, -0.007378989364951849, -0.0029881857335567474, 0.0027503506280481815, -0.011037992313504219, 0.05537291243672371, -0.02458850108087063, 0.013477328233420849, 0.0026588754262775183, 0.023637158796191216, 0.01960005983710289, -0.024064043536782265, 0.018648719415068626, 0.0033723812084645033, 0.001957566710188985, 0.034053120762109756, -0.02388109266757965, 0.020331859588623047, -0.029589137062430382, 0.018734095618128777, -0.02693026140332222, -0.007153350859880447, 0.011971037834882736, 0.015843482688069344, -0.013757850974798203, -0.024954400956630707, -0.0011060860706493258, -0.012050316669046879, -0.02710101567208767, -0.06434966623783112, 0.007104563992470503, -0.001701436354778707, -0.015989843755960464, 0.0266131479293108, 0.009293867275118828, 0.007013089023530483, 0.01725829765200615, 0.022588245570659637, -0.024039650335907936, 0.011684415861964226, 0.04220050200819969, -0.01849016174674034, 0.02213696762919426, -0.03773651644587517, -0.004768900573253632, -0.006513025611639023, -0.023844502866268158, -0.0036376588977873325, -0.007250924129039049, -0.011903956532478333, 0.00413772277534008, -0.01098310761153698, 0.015111682936549187, 0.004061493556946516, -0.007452169433236122, -0.04437151178717613, -0.02510076016187668, 0.07113102078437805, 0.033418893814086914, 0.009848816320300102, 0.028540223836898804, 0.012294250540435314, -0.006293485406786203, 0.028906123712658882, -0.028369469568133354, 0.003402872709557414, -0.007976626977324486, -0.025613021105527878, 0.00042726483661681414, 0.014575028792023659, -0.016416726633906364, 0.017099739983677864, -0.06191033124923706, 0.008513280190527439, 0.003341889474540949, 0.02610088884830475, -0.030369725078344345, -0.0012791265035048127, -0.0040797884576022625, 0.014940928667783737, 0.059129487723112106, 0.018538948148489, 0.021246610209345818, -0.0046316878870129585, 0.0173436738550663, -0.01244061067700386, -0.010970911011099815, -0.023112703114748, 0.04041978716850281, -0.014196931384503841, 0.02639360912144184, 0.007452169433236122, 0.05303115025162697, 0.0018325506243854761, -0.015587353147566319, -0.02573498710989952, 0.01631915383040905, -0.002979038283228874, 0.02296634204685688, 0.009098720736801624, 0.0266131479293108, 0.048225659877061844, -0.016136202961206436, 0.009732947684824467, 0.005458012688905001, 0.030394118279218674, -0.00391513342037797, 0.03834635019302368, 0.006793548818677664, -0.0036468063481152058, 0.008647443726658821, 0.04649373143911362, -0.005948929116129875, -0.03258952125906944, -0.029198843985795975, 0.010281798429787159, -0.00659840228036046, 0.0008194642141461372, -0.012721133418381214, -0.006391058675944805, 0.03905376046895981, -0.017050953581929207, 0.018038885667920113, 0.006452042143791914, 0.022612638771533966, -0.00744607113301754, 0.04156627506017685, -0.029369598254561424, -0.0028433501720428467, 0.008037609979510307, 0.02288096584379673, -0.008507181890308857, 0.033394500613212585, -0.02028307318687439, 0.026369215920567513, 0.006262993440032005, 0.0016313055530190468, -0.0322967991232872, -0.015172665938735008, 0.015965450555086136, -0.017221707850694656, 0.028662189841270447, 0.05698287487030029, 0.021844247356057167, -0.047054778784513474, 0.005052473396062851, -0.01406276784837246, 0.007622922770678997, -0.00032302134786732495, 0.0032534634228795767, 0.010287896730005741, 0.02807674929499626, 0.0030415463261306286, 0.014245718717575073, 0.010178126394748688, 0.036443669348955154, 0.04968925938010216, -0.015928860753774643, 0.01566053368151188, 0.031882114708423615, -0.030077004805207253, 0.03737061843276024, -0.011690515093505383, 0.016136202961206436, 0.003771822201088071, 0.032565128058195114, 0.023344438523054123, 0.0025155646726489067, -0.014331094920635223, -0.040297821164131165, 0.016306957229971886, 0.0051012602634727955, 0.022161360830068588, 0.010361077263951302, -0.010293995030224323, -0.029662318527698517, 0.020466024056077003, 0.002521662972867489, -0.009409735910594463, -0.018880454823374748, 0.014526242390275002, -0.02975989133119583, -0.016794823110103607, -0.007086269091814756, 0.0006307968869805336, -0.003610216313973069, 0.0042810337617993355, -0.033248141407966614, 0.014221325516700745, 0.011946644634008408, -0.035077642649412155, 0.0024271386209875345, -0.01035497896373272, 0.034101907163858414, 0.010842845775187016, 0.014514045789837837, 0.04693281278014183, 0.025954527780413628, 0.009909800253808498, -0.014501848258078098, 0.015123879536986351, -0.03046729788184166, -0.019502487033605576, 0.024295780807733536, 0.013587097637355328, 0.011251434683799744, 0.0041895583271980286, -0.035907015204429626, -0.00971465278416872, 0.0054793572053313255, 0.0012661674991250038, -0.03800484538078308, -0.017026560381054878, -0.00955609604716301, 0.04851837828755379, -0.035711869597435, 0.008494985289871693, 0.02590574137866497, 0.0011045614955946803, -0.00659840228036046, -0.006037354934960604, 0.014404275454580784, -0.02893051691353321, 0.000913226162083447, -0.0030583166517317295, 0.01379444170743227, 0.027320556342601776, -0.0061379773542284966, -0.013550507836043835, 0.00950121134519577, 0.01629476062953472, -0.017026560381054878, -0.0011785038514062762, -0.012172283604741096, -0.011178254149854183, -0.0046316878870129585, -0.02690586820244789, -0.0247348602861166, 0.03317496180534363, -0.03863907232880592, 0.006897220853716135, 0.0021954018156975508, -0.02205159142613411, 0.04412757605314255, 0.01025740522891283, 0.02162470854818821, 0.00804370827972889, -0.0460546500980854, 0.0071167610585689545, 0.014245718717575073, -0.013574901036918163, -0.013587097637355328, 0.011751498095691204, 0.008379116654396057, -0.016270367428660393, -0.008677935227751732, -0.026954656466841698, -0.02727176994085312, -0.003939526621252298, 0.008848688565194607, 0.015428796410560608, 0.032028473913669586, -0.0015779450768604875, 0.01603863015770912, -0.02778402902185917, 0.00023993149807211012, 0.018953636288642883, -0.025637414306402206, 0.016026433557271957, 0.011031894013285637, 0.01840478554368019, 0.003399823559448123, 0.030223365873098373, -0.025271514430642128, 0.0457131452858448, -0.007488759700208902, 0.009476818144321442, 0.01842917874455452, 0.007726594805717468, 0.005485455505549908, -0.03529718145728111, 0.0021054514218121767, 0.037077896296978, -0.001284462516196072, 0.03210165351629257, 0.01270893681794405, 0.0173436738550663, 0.025149546563625336, -0.014843355864286423, -0.037419404834508896, -0.014026178047060966, 0.009080425836145878, -0.059178274124860764, 0.002754924353212118, -0.007147252559661865, 0.008537673391401768, -0.010153733193874359, 0.030077004805207253, 4.15925751440227e-05, -0.027149802073836327, 0.011519760824739933, -0.047713398933410645, -0.0009582014172337949, -0.007372891064733267, -0.036955930292606354, -0.012989460490643978, 0.009391441009938717, 0.0020200745202600956, -0.028174323961138725, 0.003213824238628149, -0.0237957164645195, 0.004771949723362923, -0.01270893681794405, -0.01646551303565502, -0.0030674641020596027, 0.007635119836777449, -0.015209255740046501, 0.05454353988170624, -0.0006971163093112409, -0.021124644204974174, -0.001969763310626149, 0.013855424709618092, 0.022161360830068588, 0.01902681589126587, 0.014757978729903698, -0.00022125533723738045, 0.030881986021995544, -0.01000127475708723, 0.004006608389317989, 0.017099739983677864, 0.005497652105987072, -0.0029820874333381653, 0.0014689372619614005, -0.0026543017011135817, 0.013050444424152374, 0.0164045300334692, 0.0018798128003254533, -0.0087145259603858, -0.027027836069464684, -0.00040249034645967185, -0.007074072491377592, -0.038761038333177567, -0.031735751777887344, 0.007525349501520395, -0.004649982787668705, 0.014453061856329441, -0.0064703370444476604, -0.006543517112731934, 0.009604883380234241, 0.013672474771738052, 0.03734622523188591, 0.019502487033605576, 0.0008591033983975649, -0.045152097940444946, -0.00031234926427714527, 0.04512770473957062, 0.0041468702256679535, 0.0010519634233787656, 0.010111045092344284, 0.009647571481764317, 0.021319791674613953, -0.015611746348440647, -0.001153348246589303, 0.028027962893247604, -0.028710976243019104, 0.0009658243507146835, -0.026637541130185127, -0.009769538417458534, -0.00482988404110074, 0.02171008475124836, 0.013209001161158085, 0.024027453735470772, 0.00825714971870184, -0.004375557880848646, 0.012227168306708336, -0.03380918875336647, -0.01749003492295742, 0.01659967750310898, -0.023295652121305466, -0.035272788256406784, 0.018953636288642883, -0.005631815642118454, 0.0008644394692964852, -0.030418511480093002, -0.0182828176766634, 0.007976626977324486, -0.015672730281949043, 0.019270749762654305, -0.03129667416214943, 0.02147834748029709, -0.005238472484052181, -0.02467387728393078, 0.008062003180384636, -0.016111809760332108, 0.0044975243508815765, -0.03871225193142891, -0.020185500383377075, -0.04405439645051956, -0.036272916942834854, 0.017307084053754807, 0.07020407170057297, 0.004201754927635193, 0.00258874474093318, 0.004268836695700884, 0.022319918498396873, 0.007037482690066099, 0.01834380254149437, 0.010403765365481377, -0.011849071830511093, -0.00072913256008178, -0.010556223802268505, -0.00258874474093318, 0.02558862790465355, 0.00890357419848442, -0.03668760508298874, -0.0007706775213591754, 0.02070995792746544, 0.0038053630851209164, -0.008860886096954346, -0.018795078620314598, 0.0048725721426308155, 0.019551273435354233, 0.008769410662353039, -0.010458650067448616, 0.03334571421146393, 0.0034547087270766497, -0.01642892323434353, -0.016392333433032036, 0.020148910582065582, 0.0029363499488681555, -0.014575028792023659, -0.0017807148396968842, -0.012843100354075432, 0.019209766760468483, 0.006372763775289059, -0.0034333644434809685, 0.009696357883512974, 0.04173702746629715, 0.026174068450927734, 0.024551909416913986, 0.015501976013183594, -0.018185244873166084, 0.0230273250490427, -0.009549997746944427, 0.0074643660336732864, 0.0169167909771204, -0.021588118746876717, 0.037419404834508896, 0.036077771335840225, 0.004305426962673664, 0.025173941627144814, 0.03790727257728577, -0.007653414737433195, -0.017355870455503464, -0.04122476652264595, -0.003594970563426614, 0.03671199828386307, -0.001195274293422699, 0.022258935496211052, 0.004662179853767157, -0.008525476790964603, -0.0170875433832407, 0.02893051691353321, -0.01891704648733139, -0.03215043991804123, 0.017782755196094513, -0.00659840228036046, -0.004622540436685085, 0.00783026684075594, 0.007879053242504597, 0.017697377130389214, -0.00589709309861064, -0.027857210487127304, 0.009531702846288681, -0.00467132730409503, -0.007080170791596174, -0.002495744964107871, 0.006061748135834932, 0.016965577378869057, -0.006519123911857605, 0.0010656845988705754, 0.041322339326143265, 0.003075087210163474, 0.00838521495461464, 0.016563087701797485, -0.003530937945470214, -0.0066045005805790424, -0.009830521419644356, -0.021295398473739624, 0.012611364014446735, 0.010617206804454327, -0.02993064559996128, -0.02211257442831993, 0.014367685653269291, 0.03463856130838394, -0.01919756829738617, -0.002632957650348544, 0.02094169333577156, 0.014855552464723587, -0.018868258222937584, -0.046518124639987946, -0.010903828777372837, -0.00447922945022583, 0.015258043073117733, -0.025491055101156235, 0.013111427426338196, 0.01397739164531231, 0.020075729116797447, -0.007110662758350372, 0.020234286785125732, -0.051079683005809784, -0.012434512376785278, -0.027686456218361855, -0.019490288570523262, 0.05986129119992256, 0.04495695233345032, -0.0057598804123699665, 0.025539841502904892, -0.01439207885414362, -0.020490417256951332, -0.025783775374293327, 0.00934265460819006, -0.02388109266757965, -0.004335918463766575, -0.0006590017001144588, 0.023442013189196587, -0.041663847863674164, 0.020502613857388496, 0.005836109630763531, -0.009220687672495842, 0.010178126394748688, -0.005732438061386347, -0.021636905148625374, -0.0018173048738390207, -0.007946134544909, -0.006726467050611973, -0.047225531190633774, 0.015611746348440647, 0.012135693803429604, 0.020636776462197304, -0.022637031972408295, 0.012190578505396843, 0.017050953581929207, -0.009275572374463081, 0.003418118692934513, 0.04254200682044029, -0.019587863236665726, 0.0070252856239676476, -0.009385342709720135, 0.020892906934022903, -0.025539841502904892, -0.030906379222869873, -0.03027215227484703, -0.03737061843276024, 0.03734622523188591, -0.00211459887214005, -0.014611618593335152, -0.03168696537613869, 0.025661807507276535, -0.024112829938530922, -0.012818707153201103, 0.01953907683491707, -0.033589646220207214, -0.0009360949625261128, -0.011172155849635601, 0.004531065467745066, -0.017648590728640556, 0.007208236027508974, 0.005229325033724308, -0.00942803081125021, -0.0032565128058195114, 0.024381157010793686, 0.004302377812564373, -0.005162243265658617, -0.0029973334167152643, 0.0015809942269697785, -0.0324675552546978, -0.03193090111017227, 0.004537163767963648, 0.03619973734021187, -0.00561352027580142, 0.021441757678985596, 0.03029654547572136, -0.0133065739646554, 0.014196931384503841, -0.01161123625934124, -0.008086396381258965, 0.0010633977362886071, -0.0031894310377538204, 0.0023341390769928694, 0.019063405692577362, -0.014428668655455112, 0.026783902198076248, 0.009598784148693085, 0.006513025611639023, 0.017587607726454735, 0.012099103070795536, 0.009403637610375881, -0.002230467274785042, -0.002285352209582925, -0.024015257135033607, -0.012818707153201103, 0.011684415861964226, 0.003857199102640152, 0.02858901023864746, -0.0026741214096546173, 0.0076290215365588665, 0.012160087004303932, -0.014916535466909409, 0.015782499685883522, -0.00201854994520545, 0.003354086074978113, 0.014013981446623802, -0.012721133418381214, -0.006281288340687752, 0.015989843755960464, -0.0023112702183425426, 0.00517748948186636, 0.035077642649412155, -0.007006990723311901, 0.0067142704501748085, -0.004954900126904249, 0.01823403127491474, 0.03646806254982948, 0.006061748135834932, 0.010690387338399887, 0.01505069900304079, -0.031101524829864502, 0.01994156651198864, -0.030198970809578896, -0.07205796986818314, -0.000732181768398732, 0.022978538647294044, 0.01025740522891283, 0.011434384621679783, -0.01672164350748062, 0.03807802498340607, -0.007415579631924629, -0.008366920053958893, -1.5233935300784651e-05, -0.024747056886553764, 0.010720878839492798, 0.0066471886821091175, -0.01161123625934124, 0.007013089023530483, -0.04661569744348526, -0.014526242390275002, 0.021295398473739624, 0.003854149952530861, 0.04764021933078766, -0.059129487723112106, -0.0322967991232872, 0.014453061856329441, -0.009678062982857227, -0.006427648477256298, 0.017172921448946, -0.01711193658411503, 0.004363361280411482, -0.004619491286575794, 0.003120824694633484, 0.003369332058355212, 0.00978783331811428, 0.007921741344034672, 0.026149675250053406, 0.03920011967420578, 0.0018310260493308306, 0.001733452663756907, 0.005470209289342165, 0.014196931384503841, -0.013611490838229656, -0.012013726867735386, 0.019490288570523262, 0.011690515093505383, -0.0026512525510042906, -0.030686838552355766, 0.02177106775343418, -0.041663847863674164, -0.013989588245749474, 0.013611490838229656, 0.01849016174674034, 0.005558635573834181, 0.04942093417048454, -0.06415452063083649, -0.019404912367463112, 0.0054488652385771275, 0.025783775374293327, -0.004707917105406523, -0.023759126663208008, 0.0034912987612187862, 0.025198334828019142, -0.002562826732173562, 0.041639454662799835, -0.007409481331706047, -0.01808767206966877, -0.039980705827474594, -0.009574390947818756, 0.006799647118896246, -0.021746674552559853, -0.015575156547129154, 0.008141282014548779, -0.023942075669765472, -0.022978538647294044, 0.000642231258098036, 0.011214843951165676, 0.024600697681307793, 0.0341750867664814], [0.05467823147773743, 0.0417090579867363, 0.003737392369657755, -0.005500426981598139, -0.00623099971562624, 0.032435011118650436, -0.008597813546657562, 0.04878534749150276, 0.024827394634485245, 0.02108396403491497, -0.014623528346419334, -0.025793440639972687, -0.03253161534667015, 0.025793440639972687, -0.0007075535831972957, 0.010107261128723621, 0.002298888750374317, -0.01808921992778778, -0.050379324704408646, 0.02659042924642563, 0.036589011549949646, 0.05013781413435936, -0.015782784670591354, 0.014744284562766552, -0.006128357257694006, 7.452897989423946e-05, 0.041443392634391785, -0.04965478926897049, 0.04117773100733757, -0.01754581928253174, 0.04096037149429321, 0.008730645291507244, 0.029440267011523247, -0.032121047377586365, 0.02416323684155941, -0.08114790171384811, -0.05134537070989609, 0.054823137819767, 0.01887413300573826, -0.010771417990326881, -0.004458908457309008, 0.014913342893123627, -0.021796423941850662, -0.03835204616189003, -0.04569399729371071, 0.0766557902097702, 0.015082400292158127, -0.02384927310049534, -0.01659184880554676, 0.03154141828417778, 0.012558604590594769, 0.008368377573788166, 0.02789459191262722, -0.022533034905791283, 0.03451200947165489, 0.03323199972510338, 0.005790241062641144, 0.0697968602180481, -0.00580835435539484, -0.04801250994205475, 0.007963845506310463, -0.05965337157249451, -0.01137519720941782, 0.03818298876285553, -0.02521381340920925, -0.033135395497083664, -0.0019834141712635756, 0.03755505755543709, -0.011556331068277359, 0.020142069086432457, -0.019151872023940086, 0.03434295207262039, -0.0003294369380455464, -0.03414974361658096, -0.03120330162346363, -0.00816913042217493, 0.011181987822055817, -0.045766450464725494, 0.027363266795873642, 0.032966338098049164, -0.04861629009246826, 0.020166220143437386, -0.003631731029599905, 0.08737890422344208, -0.0009177441825158894, -0.0258900448679924, -0.041950568556785583, -0.0034747484605759382, -0.061005834490060806, 0.006321566645056009, -0.036275044083595276, -0.07105272263288498, 0.05395369604229927, 0.022424353286623955, 0.04100867360830307, -0.0019275646191090345, 0.0541469044983387, -0.012800116091966629, -0.03738600015640259, 0.09496236592531204, -0.027194209396839142, 0.012449923902750015, -0.0072815753519535065, 0.04554909095168114, 0.03591277822852135, -0.013597104698419571, -0.0524563230574131, 0.00943706650286913, 0.06173036992549896, 0.022315673530101776, -0.007184970658272505, -0.004618909675627947, -0.01593976654112339, 0.07061799615621567, -0.028594976291060448, 0.008628002367913723, -0.03533314913511276, 0.0019743575248867273, 0.0027471946086734533, -0.04448644071817398, -0.010892174206674099, -0.04168490692973137, -0.01286049373447895, -0.08370792865753174, -0.028305161744356155, 0.037096183747053146, -0.04004262760281563, 0.06965195387601852, -0.055161252617836, 0.013512575067579746, 0.05390539392828941, -0.028015347197651863, 0.03055121935904026, -0.0263972207903862, 0.03439125418663025, -0.017533743754029274, -0.024948149919509888, 0.014043901115655899, -0.015082400292158127, -0.034270498901605606, -0.0016030333936214447, -0.009606124833226204, 0.009823485277593136, 0.005741938948631287, -0.03301464021205902, 0.0009456689585931599, -0.03154141828417778, 0.06317944079637527, -0.024465126916766167, -0.0038339970633387566, -0.06037790700793266, 0.004555513150990009, -0.01754581928253174, -0.01969527266919613, 0.008513284847140312, -0.010378962382674217, 0.06651230156421661, 0.03216934949159622, -0.012570680119097233, 0.011544255539774895, -0.01286049373447895, -0.02447720244526863, 0.019719423726201057, 0.007782712113112211, 0.0016498262993991375, 0.027242511510849, -0.020709620788693428, -0.003127575386315584, -0.04388266056776047, -0.03137236088514328, 0.010994816198945045, 0.010167639702558517, -0.00280908215790987, 0.00614043278619647, -0.044752102345228195, 0.023124737665057182, -0.0037555056624114513, 0.015372214838862419, 0.0057087307795882225, -0.03482597693800926, -0.0019079417688772082, -0.024706639349460602, -0.03335275501012802, -0.01794431358575821, -0.0428924635052681, 0.04402756690979004, -0.014394092373549938, -0.009292159229516983, -0.05235971882939339, 0.0384969525039196, 0.04236113652586937, -0.0400184765458107, -0.005470238160341978, 0.007076290436089039, -0.008247622288763523, -0.009352537803351879, -0.0034928617533296347, -0.011894447728991508, 0.0014852965250611305, 0.030961789190769196, 0.013343516737222672, -0.011459726840257645, 0.06622248888015747, -0.0026053066831082106, -0.030816882848739624, -0.02475494146347046, 0.059701673686504364, 0.001900394563563168, 0.07008667290210724, 0.05226311460137367, 0.036444105207920074, 0.012353319674730301, -0.020637167617678642, 0.030019894242286682, 0.013850691728293896, 0.006575153674930334, 0.02032320201396942, -0.014225034043192863, -0.01562580280005932, 0.024718714877963066, 0.015215232037007809, 0.028353463858366013, 0.04004262760281563, -0.05723825469613075, -0.0194175336509943, -0.00864611566066742, 0.013488424010574818, 0.008555549196898937, 0.01568618044257164, -0.028667429462075233, -0.01998508721590042, 0.025696836411952972, -0.03272482380270958, -0.03487427905201912, -0.00813894160091877, 0.013802389614284039, 0.005255896598100662, -0.03431880101561546, -0.018016766756772995, -0.018922435119748116, 0.003139651147648692, 0.029440267011523247, 0.047263823449611664, 0.02509305812418461, -0.01792016252875328, -0.02314888872206211, -0.026276463642716408, 0.009950279258191586, -0.005594012793153524, 0.018886208534240723, 0.029802534729242325, -0.037144485861063004, 0.05762467160820961, -0.04844723269343376, 0.016664301976561546, 0.026010802015662193, -0.012932946905493736, -0.028691580519080162, 0.02314888872206211, 0.004353247117251158, 0.016688453033566475, -0.009147252887487411, 0.007637804839760065, 0.007009875029325485, 0.01038500014692545, 0.006955534685403109, 0.03622674196958542, -0.00013302007573656738, -0.008120828308165073, 0.003393238177523017, -0.03190368413925171, -0.021059812977910042, 0.0213617030531168, -0.03376332297921181, -0.019284702837467194, 0.010674813762307167, 0.005494389217346907, 0.015722407028079033, -0.03441540524363518, 0.018886208534240723, -0.02407870814204216, -0.000947178399655968, -0.001394729595631361, -0.054195206612348557, 0.025479476898908615, -0.01436994131654501, 0.008760834112763405, 0.057721275836229324, -0.023619836196303368, -0.016145052388310432, 0.07448218762874603, 0.01910356990993023, 0.03557466343045235, -0.0017373742302879691, 0.03301464021205902, -0.01699034310877323, -0.040090929716825485, 0.03373917192220688, 0.014490697532892227, -0.04627362638711929, 0.030261406674981117, 0.07482030242681503, -0.01752166822552681, -0.01802884228527546, -0.056175604462623596, 0.04436568543314934, 0.06501492857933044, 0.023523231968283653, -0.031468965113162994, -0.001507938141003251, 0.02108396403491497, 0.06095753237605095, -0.014357865788042545, 0.01394729595631361, -0.08356302231550217, -0.0002003791742026806, 0.01819790154695511, 0.008042337372899055, 0.0006339679821394384, 0.03588862717151642, 0.07399915903806686, -0.0035622965078800917, 0.0196711216121912, -0.004380417056381702, 0.00885743834078312, -0.014007673598825932, -0.023776819929480553, 0.007390255574136972, -0.0005271745612844825, -0.048881951719522476, -0.04185396432876587, 0.015867313370108604, 0.0025011547841131687, 0.018970737233757973, -0.004060414154082537, 0.03506748750805855, -0.00213435897603631, 0.0186567734926939, -0.01034273486584425, 0.01794431358575821, -0.009998581372201443, 0.017557894811034203, -0.048084963113069534, 0.024453051388263702, -0.014720133505761623, 0.020105842500925064, 0.037144485861063004, -0.0026988922618329525, 0.015058249235153198, 0.0374826043844223, 0.01636241190135479, -0.0017796388128772378, -0.045573242008686066, 0.0018309599254280329, -0.021301325410604477, -0.0753033235669136, 0.02840176597237587, 0.004289850126951933, -0.03018895350396633, -0.0045645697973668575, -0.049558185040950775, 0.004800043534487486, -0.016072599217295647, 0.05260122939944267, -0.024283993989229202, 0.008809136226773262, -0.03902827948331833, -0.016519395634531975, -0.012244638986885548, -0.02707345224916935, -0.026517976075410843, 0.01769072562456131, 0.017461290583014488, -0.024453051388263702, -0.00435928488150239, -0.007963845506310463, -0.013464272953569889, 0.03535730019211769, -0.01707487180829048, -0.024235691875219345, 0.023040208965539932, -0.0020936038345098495, 0.04364114999771118, 0.04081546515226364, 0.010397075675427914, 0.03385993093252182, -0.041105277836322784, -0.0019275646191090345, -0.02028697542846203, 0.014877116307616234, -0.005536654032766819, 0.03224180266261101, -0.0017796388128772378, -0.03187953308224678, 0.02806365117430687, 0.023583609610795975, 0.054243508726358414, 0.03052706830203533, 0.01709902286529541, -0.033280301839113235, 0.020250748842954636, 0.018753377720713615, 0.01503409817814827, -0.037965625524520874, -0.0258900448679924, -0.005331369116902351, -0.01608467474579811, 0.00988990068435669, 0.019538290798664093, 0.009364613331854343, 0.018161673098802567, 0.02509305812418461, 0.02557608112692833, 0.02142208069562912, 0.034608613699674606, 0.00795780774205923, 0.014478622004389763, 0.03439125418663025, -0.016519395634531975, -0.04054979979991913, 0.0003673618193715811, 0.031010091304779053, -0.012413697317242622, 0.0025539854541420937, 0.004748722072690725, 0.008893665857613087, 0.004449851810932159, 0.0021388872992247343, 0.029633475467562675, -0.04902685806155205, -0.006695909891277552, -0.003006819635629654, 0.046563439071178436, -0.010638587176799774, -0.011242366395890713, 0.029657626524567604, -0.0055577862076461315, -0.012993325479328632, -0.000947933120187372, -0.0023064359556883574, -0.028329312801361084, -0.042771708220243454, 0.0209390576928854, 0.04752948880195618, -0.042747557163238525, 0.03895582631230354, -0.03757920861244202, 0.05564427748322487, 0.02382512204349041, 0.002237001433968544, 0.015009947121143341, 0.009280083701014519, -0.05960506945848465, 0.0018520922167226672, -0.040622252970933914, -0.05525786057114601, 0.02142208069562912, -0.04767439514398575, 0.047553639858961105, 0.035284847021102905, 0.000390946923289448, 0.017956389114260674, 0.04016338288784027, 0.008114790543913841, 0.006726098712533712, 0.04494531452655792, 0.02755647525191307, -0.0070219505578279495, -0.004664193373173475, -0.031444814056158066, -0.0070642149075865746, -0.015372214838862419, 0.003079273272305727, 0.009207630529999733, 0.03786902129650116, -0.011417461559176445, -0.0043140011839568615, -0.02314888872206211, 0.030841033905744553, 0.012335206381976604, 0.0047577787190675735, 0.020021313801407814, -0.037144485861063004, -0.03598523139953613, 0.014225034043192863, 0.046249475330114365, 0.03301464021205902, -0.04163660481572151, -0.02133755199611187, -0.011109534651041031, -0.03277312591671944, -0.006925345864146948, 0.014225034043192863, -0.011870295740664005, 0.020045464858412743, -0.007094403728842735, 0.01670052856206894, -0.012154072523117065, 0.022931529209017754, -0.03656486049294472, 0.056030694395303726, -0.05260122939944267, 0.004905704874545336, -0.028812335804104805, 0.051586881279945374, 9.688767022453249e-05, 0.01808921992778778, -0.0024317200295627117, -0.005693636368960142, 0.0127759650349617, -0.022617563605308533, -0.024803243577480316, 0.01596391759812832, -0.006629494018852711, -0.015553348697721958, 0.003006819635629654, -0.02540702186524868, 0.013838616199791431, -0.0017011475283652544, 0.04564569517970085, -0.013258988037705421, 0.031807079911231995, -0.048398930579423904, 0.0027487040497362614, -0.025503627955913544, 0.011870295740664005, 0.023535307496786118, -0.02405455708503723, 0.013585028238594532, -0.021880952641367912, -0.0100468834862113, -0.0393422432243824, -0.035284847021102905, -0.0024271917063742876, -0.03837619721889496, -0.025117209181189537, 0.03813468664884567, 0.00901442114263773, 0.03207274153828621, -0.006375906988978386, 0.0038822994101792574, -0.0005467974115163088, 0.03132405877113342, -0.006557040382176638, 0.01792016252875328, 0.03919733688235283, 0.05308425426483154, 0.04426908120512962, -0.012220487929880619, 0.0062189241871237755, -0.01828243024647236, -0.0004637777747120708, -0.004166075494140387, -0.027846289798617363, -0.028788184747099876, 0.008320075459778309, 0.025672685354948044, 0.03069612756371498, 0.01102500595152378, 0.010071034543216228, 0.015323912724852562, 0.01370578445494175, 0.02430814504623413, 0.01726808026432991, -0.002950970083475113, -0.004724571015685797, -0.011435574851930141, -0.01370578445494175, -0.014840888790786266, 0.0009320839308202267, -0.005050611682236195, 0.03504333645105362, 0.020818302407860756, -0.04719137027859688, 0.06119904667139053, 0.025117209181189537, -0.004920799285173416, -0.00635175546631217, 0.015843162313103676, 0.0009947259677574039, 0.0034505974035710096, 0.0012166147353127599, 0.01661599986255169, -0.008863476105034351, -0.017147324979305267, -0.0036679578479379416, -0.005331369116902351, -0.02213454060256481, -0.06284132599830627, 0.034753523766994476, 0.006369869224727154, -0.027653081342577934, 0.009418953210115433, 0.0024136067368090153, 0.019465835765004158, -0.003172858851030469, 0.011175950057804585, 0.007541200146079063, -0.020794151350855827, 0.018306581303477287, 0.028836486861109734, -0.01253445353358984, -0.02218284271657467, 0.0012468037893995643, -0.020166220143437386, -0.013258988037705421, -0.006279302295297384, 0.016712604090571404, -0.0006664211396127939, 0.03702373057603836, 0.02397002838551998, -0.0024362485855817795, -0.039438847452402115, 0.003526069689542055, -0.03803807869553566, -0.022231144830584526, -0.005346463527530432, -0.006049866322427988, -0.004483059514313936, -0.013717859983444214, 0.008567624725401402, -0.005690617486834526, 0.008966119028627872, -0.028305161744356155, -0.023813046514987946, 0.015094476751983166, 0.010360848158597946, -0.031468965113162994, 0.03221765160560608, -0.0374826043844223, -0.009068761020898819, -0.003680033376440406, -0.023185115307569504, -0.024706639349460602, -0.0011690672254189849, 0.021325476467609406, -0.007903467863798141, -0.01701449416577816, 0.019489988684654236, -0.0059985448606312275, 0.02789459191262722, 0.005612126085907221, -0.004848345648497343, -0.04371360316872597, 0.037458453327417374, 0.034753523766994476, -0.05052423104643822, -0.026928545907139778, 0.03605768457055092, -0.03202443942427635, 0.04463134706020355, 0.026493825018405914, -0.0383278951048851, -0.01574655808508396, -0.012836342677474022, 0.004990234039723873, -0.041370939463377, 0.03407729044556618, -0.024428900331258774, 0.04801250994205475, -0.046563439071178436, 0.009388764388859272, 0.03018895350396633, -0.01116387452930212, 0.0037192790769040585, -0.023293795064091682, 0.02184472605586052, -0.009968392550945282, -0.01144765131175518, -0.017473366111516953, 0.003411351703107357, 0.02523796446621418, -0.024779092520475388, -0.02410285919904709, 0.013669557869434357, -0.024875696748495102, -0.032652370631694794, 0.052891045808792114, -0.024525504559278488, 0.029971592128276825, -0.02543117292225361, -0.03236255794763565, -0.016495244577527046, 0.006466473452746868, -0.0035955042112618685, -0.02173604629933834, 0.03871431201696396, 0.00959404930472374, 0.01958659291267395, 0.015988068655133247, -0.005757033359259367, 0.007438558153808117, -0.01485296431928873, 0.008809136226773262, -0.0057359011843800545, 0.014007673598825932, -0.030647825449705124, -0.0059592993929982185, -0.00393663952127099, -0.014333714731037617, -0.0019320929422974586, 0.016652226448059082, -0.04064640402793884, -0.04762609302997589, -0.04214377701282501, -0.017763180658221245, 0.015215232037007809, -0.0267353355884552, 0.057045046240091324, 0.021542835980653763, -0.009189517237246037, -0.00925593264400959, -0.029947441071271896, -0.03255576640367508, 0.00883328728377819, 0.011749540455639362, 0.005479294806718826, 0.03120330162346363, -0.0017071852926164865, 0.00017094494251068681, -4.79957161587663e-05, 0.0417090579867363, 0.0002839648223016411, 0.01853601634502411, 0.03441540524363518, -0.009026496671140194, 0.024549655616283417, -5.415143459686078e-05, -0.01137519720941782, 0.021144341677427292, 0.05859071761369705, -0.012510301545262337, 0.002273228019475937, -0.007547238375991583, -0.03639580309391022, 0.009799334220588207, -0.05501634627580643, 0.008018185384571552, -0.005180424079298973, -0.02003338932991028, 0.027653081342577934, -0.043930962681770325, 0.00019962445367127657, -0.04885780066251755, 0.030164800584316254, 0.0004535890184342861, -0.0022762471344321966, -0.012292941100895405, -0.00022358693240676075, 0.008489133790135384, -0.027242511510849, 0.008332150988280773, 0.00535552017390728, 0.011465764604508877, 0.04694985970854759, -0.03185538202524185, 0.01211180817335844, 0.00871856976300478, 0.01312615629285574, 0.00829592440277338, 0.002561532659456134, -0.019936785101890564, 0.035961080342531204, 0.027653081342577934, 0.007293650880455971, 0.008954043500125408, -0.058687325567007065, -0.01017367746680975, 0.03055121935904026, -0.018379034474492073, 0.008187243714928627, 0.014816737733781338, 0.024875696748495102, 0.0028302143327891827, -0.0274115689098835, -0.013790313154459, -0.06631909310817719, -0.025938348844647408, -0.0033992761746048927, -0.008954043500125408, 0.011604633182287216, -0.007438558153808117, 0.005530616268515587, 0.005240802187472582, 0.0014769944828003645, -0.01975565031170845, 0.037144485861063004, 0.009799334220588207, -0.009986505843698978, 0.01686958596110344, -0.0007871769485063851, -0.0030943676829338074, 0.023462854325771332, 0.027339115738868713, -0.033280301839113235, 0.033618416637182236, -0.0024996453430503607, -0.0388350673019886, -0.0011109535116702318, 0.01044537778943777, 0.02376474440097809, -0.001227180939167738, -0.017280155792832375, 0.0016920907655730844, 0.00970876682549715, 0.008609889075160027, -0.05361558124423027, 0.0013003891799598932, -0.023052284494042397, -0.02091490663588047, 0.028136104345321655, 0.021120190620422363, -0.0037856947164982557, 0.01792016252875328, 0.017461290583014488, -0.005201556719839573, -0.009702729061245918, 0.03523654490709305, -0.011767653748393059, 0.0142129585146904, 0.03417389467358589, -0.009744994342327118, 0.032628219574689865, 0.02538287080824375, 0.02608325518667698, -0.023112662136554718, -0.04711891710758209, -0.011423499323427677, -0.00502344174310565, 0.024356447160243988, 0.03622674196958542, -0.02888478897511959, 0.007269499823451042, -0.0038672047667205334, -0.019465835765004158, 0.03485012799501419, -0.024453051388263702, -0.0016483168583363295, 0.007414406631141901, 0.034753523766994476, 0.010336697101593018, -0.03598523139953613, 0.004531361628323793, -0.0023290778044611216, -0.0017494497587904334, -0.0003564183134585619, 0.0008686871151439846, 0.0029917252250015736, -0.0024588902015239, 0.004329095594584942, -0.008301962167024612, -0.026179859414696693, -0.011912561021745205, 0.009684615768492222, 0.017449215054512024, -0.027484022080898285, -0.0010445377556607127, -0.025334568694233894, -0.030140649527311325, -0.0701349750161171, -0.0070219505578279495, -0.007046101614832878, -0.020987359806895256, 0.039607904851436615, 0.008314037695527077, 0.006454397924244404, 0.01659184880554676, 0.018523940816521645, -0.01752166822552681, 0.022967755794525146, 0.0531325563788414, -0.03424634784460068, 0.003529088571667671, -0.03830374404788017, 0.008670267648994923, 0.0020815283060073853, -0.029633475467562675, 0.007577427197247744, -0.024453051388263702, 0.03291803225874901, 0.00623099971562624, 0.026517976075410843, 0.0094129154458642, 0.0025585137773305178, -0.015927691012620926, -0.037241093814373016, -0.02803950011730194, 0.046587590128183365, 0.030961789190769196, 0.0047819302417337894, 0.01794431358575821, 0.002510211430490017, 0.006273264531046152, 0.024211540818214417, -0.0019788858480751514, 0.004833251237869263, -0.00759554049000144, -0.017388837411999702, 0.005690617486834526, 0.004929855931550264, -0.0040936218574643135, 0.02184472605586052, -0.05004120618104935, -0.02099943533539772, -0.0017268081428483129, 0.03301464021205902, -0.01771487668156624, -0.007396293338388205, -0.015589575283229351, 0.019659046083688736, 0.06689871847629547, 0.005391746759414673, 0.01510655228048563, -0.002173604676499963, 0.049558185040950775, -0.006701947655528784, 0.008205357007682323, -0.004181169904768467, 0.02642137184739113, -0.03690297529101372, 0.010910287499427795, 0.005053630564361811, 0.03190368413925171, 0.0007969883736222982, -0.011091421358287334, -0.018270354717969894, 0.01401975005865097, 0.028836486861109734, 0.0189948882907629, 0.000501136586535722, 0.0045373993925750256, 0.03791732341051102, -0.01910356990993023, 0.013790313154459, -0.008724607527256012, 0.02348700538277626, -0.022617563605308533, 0.00853743590414524, 0.012317093089222908, 0.00027245530509389937, 0.0002918894460890442, 0.051586881279945374, -0.004280793480575085, -0.003966828342527151, -0.023160964250564575, 0.02397002838551998, 0.007885354571044445, 0.008881590329110622, 0.01859639398753643, 0.002614363329485059, 0.037941474467515945, -0.015372214838862419, 0.01969527266919613, -0.0036407876759767532, 0.006028733681887388, -0.019381307065486908, 0.020456034690141678, -0.011803880333900452, -0.006756287533789873, 0.027145905420184135, 0.005207594484090805, -0.004332114476710558, 0.0386660099029541, -0.013838616199791431, 0.029464418068528175, -0.019139796495437622, 0.02854667417705059, -0.0096242381259799, 0.021059812977910042, 0.018475638702511787, -0.01800469122827053, 0.026276463642716408, 0.05429181084036827, 0.01831865683197975, -0.037289395928382874, -0.007661956362426281, -0.008108752779662609, 0.010946514084935188, -0.009159328415989876, 0.006333642173558474, -0.0001031141437124461, 0.03149311617016792, 0.007058177143335342, 0.030164800584316254, 0.009062723256647587, 0.009557822719216347, 0.047070614993572235, 0.004489097278565168, 0.009901976212859154, 0.017050720751285553, 0.005198537837713957, 0.037603359669446945, -0.024996452033519745, 0.015130703337490559, 0.011972938664257526, 0.04666004702448845, 0.041950568556785583, 0.027508173137903214, -0.001451333868317306, -0.05641711503267288, 0.02085452899336815, -0.04354454576969147, -0.0005377407069317997, 0.0006615153979510069, -0.009268008172512054, 0.0023034170735627413, 0.012498226016759872, -0.009557822719216347, -0.021711895242333412, 0.01113368570804596, 0.02028697542846203, -0.03847280144691467, -0.05641711503267288, -0.0037645623087882996, -0.00992008950561285, -0.00411173515021801, 0.028136104345321655, -0.04040489345788956, 0.00988990068435669, 0.017968464642763138, -0.01670052856206894, 0.03439125418663025, 0.0075049735605716705, 0.008543473668396473, 0.026034953072667122, 0.03472937270998955, 0.03006819635629654, 0.0076136537827551365, 0.01386276725679636, -0.021554911509156227, 0.031613871455192566, -0.011061232537031174, -0.014937493950128555, 0.027991196140646935, 0.042916614562273026, 0.032121047377586365, 0.02340247668325901, -0.03086518496274948, 0.003513994161039591, -0.001678505796007812, -0.012981249950826168, -0.03632334619760513, -0.020166220143437386, -0.0023683232720941305, 0.017280155792832375, -0.023752668872475624, -0.00044981538667343557, 0.013790313154459, -0.015649953857064247, -0.010807645507156849, 0.008996307849884033, 0.021385854110121727, -0.028498372063040733, 0.0014120882842689753, -2.2688884200761095e-05, 0.01741298846900463, 0.016398638486862183, 0.011550293304026127, -0.00771629624068737, -0.00311549985781312, 0.004157018847763538, -0.010167639702558517, 0.021856801584362984, -0.012800116091966629, 0.011852182447910309, -0.004516267217695713, -0.024694563820958138, -0.004543437156826258, 0.050572533160448074, -0.016833359375596046, 0.009147252887487411, 0.017062796279788017, 0.010777455754578114, 0.0504276268184185, -0.0038702236488461494, 0.013138231821358204, 0.007287613116204739, -0.030116498470306396, 0.012751813977956772, 0.01729223132133484, -0.017328457906842232, -0.0002905686560552567, 0.02148245833814144, -0.008905741386115551, 0.02591419778764248, -0.010789531283080578, -0.027797987684607506, -0.020649243146181107, 0.0018188843969255686, 0.024803243577480316, 0.007529124617576599, 0.045066069811582565, 0.0036136177368462086, 0.013512575067579746, -0.010366885922849178, 0.00943706650286913, 0.0043140011839568615, -0.0002628325601108372, 0.028160255402326584, 0.015891464427113533, 0.030744429677724838, 0.0038611670024693012, 0.023668138310313225, -0.03666146472096443, 0.032459162175655365, -0.007987996563315392, 0.004815137945115566, 0.02167566865682602, -0.014357865788042545, -0.013778237625956535, 0.0058898646384477615, 0.011417461559176445, 0.012335206381976604, 0.0005901940166950226, 0.02218284271657467, -0.01916394755244255, 0.02297983132302761, 0.031010091304779053, -0.013802389614284039, -0.051200464367866516, 0.00938272662460804, 0.01161670871078968, -0.05979827791452408, 0.012800116091966629, -0.01013141218572855, 0.0012490679509937763, -0.0035502207465469837, 0.032459162175655365, 0.009316311217844486, -0.022110389545559883, 0.009189517237246037, -0.030261406674981117, -0.008398566395044327, 0.007335915695875883, -0.030430464074015617, -0.005141178611665964, -0.008356302045285702, -0.02258133701980114, -0.0209390576928854, 0.0002983045997098088, -0.013512575067579746, -0.021554911509156227, -0.00978122092783451, -0.009461217559874058, -0.008060450665652752, -0.008422717452049255, -0.007450633682310581, 0.05409860238432884, -0.02176019735634327, -0.02659042924642563, 0.0074627092108130455, 0.028015347197651863, 0.022653790190815926, 0.03359426558017731, 0.013391819782555103, 0.005391746759414673, 0.03149311617016792, -0.026517976075410843, 0.025841742753982544, 0.032604068517684937, 0.012739738449454308, -0.013560877181589603, -0.0055547673255205154, 0.026010802015662193, 0.019260551780462265, 0.009744994342327118, -0.008736683055758476, -0.012208412401378155, -0.03407729044556618, 0.014164656400680542, -0.006744212005287409, -0.01519108098000288, -0.027967045083642006, -0.007027988322079182, 0.001445296104066074, -0.021639442071318626, 0.024851545691490173, 0.0006732136243954301, 0.01958659291267395, 0.018523940816521645, 0.03219350054860115, 0.033956535160541534, -0.006243075244128704, -0.02625231258571148, 0.0034838051069527864, 0.03912488371133804, -0.002190208528190851, -0.021301325410604477, 0.02382512204349041, -0.008259697817265987, 0.023197190836071968, -0.0001397182495566085, 0.0013109552673995495, 0.03538145124912262, -0.01044537778943777, 0.007885354571044445, -0.04236113652586937, -0.024380598217248917, 0.005681560840457678, -0.0023713421542197466, 0.0051140086725354195, 0.008724607527256012, 0.007692145183682442, -0.03154141828417778, 0.02255718596279621, -0.04634607955813408, -0.019308853894472122, 0.02011791802942753, -0.017557894811034203, -0.0531325563788414, 0.016012219712138176, -0.0017524687573313713, 0.014889191836118698, -0.041081126779317856, -0.011803880333900452, -0.014913342893123627, -0.011815955862402916, -0.004519286099821329, -0.02006961591541767, 0.002849837066605687, 0.007058177143335342, 0.017002418637275696, -0.0023834179155528545, -0.023450778797268867, 0.0022007746156305075, -0.01766657456755638, -0.022508883848786354, -0.04410002380609512, -0.035767871886491776, 0.004670231137424707, 0.06564285606145859, 0.018077144399285316, 0.0258900448679924, -0.020166220143437386, 0.028667429462075233, -0.0026520995888859034, 0.020649243146181107, 0.0021464345045387745, -0.0199247095733881, 0.0038430537097156048, -0.004190226551145315, -0.008144979365170002, 0.04499361664056778, -0.011749540455639362, -0.027942894026637077, -0.006647607311606407, 0.02368021383881569, -0.0029887063428759575, -0.014514848589897156, -0.022255295887589455, 0.003909469582140446, 0.005799297709017992, -0.0009426500182598829, -0.03673391789197922, 0.009092912077903748, 0.006345717702060938, -0.022206993773579597, -0.02526211552321911, 0.010348772630095482, 0.009883862920105457, -0.020782075822353363, 0.01083783432841301, -0.011640859767794609, 0.04426908120512962, 0.02226737141609192, 0.0021494533866643906, 0.009932165034115314, 0.042288683354854584, 0.008911779150366783, 0.01775110326707363, 0.005986469332128763, -0.020359430462121964, 0.030261406674981117, -0.005424954928457737, -0.015674104914069176, 0.0391731858253479, 0.0019743575248867273, 0.01246199943125248, 0.04023583605885506, -0.010107261128723621, 0.014985796064138412, 0.03550220653414726, -0.010258206166327, 0.00399097939953208, -0.002960026729851961, 0.00925593264400959, 0.02690439485013485, 0.024404749274253845, 0.021772272884845734, 0.02102358639240265, -0.008036299608647823, -0.030841033905744553, 0.03190368413925171, -0.011894447728991508, -0.00336003047414124, 0.020190371200442314, 0.0023577571846544743, 0.002963045611977577, 0.017171476036310196, -0.0026505901478230953, 0.0005430238088592887, -0.0009260461083613336, -0.029754232615232468, 0.005017403978854418, -0.0027743647806346416, -0.005171367432922125, 0.007951769977807999, 0.011701238341629505, 0.019828103482723236, 0.010324621573090553, -0.00012047278869431466, 0.03835204616189003, 0.0022234164644032717, 0.006532889325171709, 0.02922290563583374, 0.013464272953569889, 0.011568406596779823, 0.0038913560565561056, -0.0026339860633015633, 0.0022792660165578127, 0.01904319040477276, -0.0182341281324625, -0.01007707230746746, -0.00432305783033371, 0.041370939463377, -0.020395657047629356, 0.023535307496786118, -0.0009856693213805556, 0.011417461559176445, -0.0060408092103898525, -0.02787044085562229, 0.004775892477482557, -0.021663593128323555, 0.03791732341051102, -0.006255150772631168, 0.008760834112763405, 0.0035955042112618685, 0.02232774905860424, -0.015239383094012737, 0.017557894811034203, -0.05728655681014061, -0.006714023184031248, -0.02919875457882881, -0.005548729561269283, 0.040767163038253784, 0.03997017443180084, 0.0010807644575834274, 0.01494956947863102, 0.0023894556798040867, -0.020516412332654, -0.025696836411952972, -0.013114080764353275, -0.026807790622115135, 0.013029552064836025, 0.016229581087827682, 0.014732209034264088, -0.04151584953069687, 0.03835204616189003, -0.004129848908632994, 0.005295142065733671, 0.02707345224916935, 0.04030828922986984, -0.01715940050780773, -0.013548801653087139, 0.0074325199238955975, -0.01174350269138813, -0.03830374404788017, -0.025938348844647408, -0.008634040132164955, 0.016966192051768303, -0.03767581284046173, 0.015227307565510273, 0.026155708357691765, -0.015335988253355026, 0.016966192051768303, 0.028836486861109734, 0.0038973938208073378, 0.008797060698270798, -0.0031547455582767725, 0.01715940050780773, -0.011139723472297192, -0.021856801584362984, -0.019803952425718307, -0.01986433006823063, 0.03274897485971451, 0.0016075617168098688, -0.013657482340931892, -0.04943742975592613, 0.00672006094828248, -0.03125160560011864, -0.028860637918114662, -0.007523086853325367, -0.04634607955813408, -0.000335286051267758, -0.036613162606954575, 0.012981249950826168, -0.022231144830584526, 0.0203473549336195, -0.016217505559325218, 0.0035441829822957516, 0.005968356039375067, 0.021434156224131584, 0.020975284278392792, -0.023921726271510124, -0.009358575567603111, 0.015082400292158127, -0.025189662352204323, -0.03284557908773422, -0.017147324979305267, 0.040453195571899414, -0.007486860267817974, 0.00901442114263773, 0.048737045377492905, -0.02608325518667698, 0.011338970623910427, -0.0024407769087702036, -0.0001364163326798007, -0.027653081342577934, 0.007148744072765112, 0.006726098712533712, 0.003357011592015624, 0.0021509628277271986, 0.04327888414263725, -0.004736646544188261, 0.033787474036216736, -0.0023773799184709787, 0.013669557869434357, 0.02091490663588047, -0.009431028738617897, -0.010457453317940235, -0.022025858983397484, -0.017908087000250816, -0.00020792640862055123, 0.035792022943496704, 0.01386276725679636, -0.013536726124584675, -0.0032604068983346224, 0.053035952150821686, -0.010300470516085625, 0.007287613116204739, 0.0016724680317565799, -0.006943459156900644, 0.040936220437288284, -0.008519322611391544, -0.005304199177771807, -0.019115645438432693, -0.004573626443743706, 0.015215232037007809, 0.013597104698419571, 0.007184970658272505, -0.013452197425067425, -0.029754232615232468, -0.016483169049024582, 0.03719278797507286, 0.0054038227535784245, 0.029657626524567604, -0.005684579722583294, -0.019320929422974586, 0.021047737449407578, -0.022677941247820854, -0.057866185903549194, 0.003190972376614809, 0.05284274369478226, -0.0054460871033370495, 0.012727661989629269, 0.0014860512455925345, 0.02987498790025711, -0.007360066752880812, 0.008277811110019684, 0.017147324979305267, -0.0274115689098835, 0.032265953719615936, 0.031613871455192566, -0.017654499039053917, -0.0003509465605020523, -0.04047734662890434, -0.017726952210068703, 0.002560023218393326, 0.030985940247774124, 0.0378207191824913, -0.04327888414263725, -0.033787474036216736, -0.003299652598798275, -0.020214522257447243, -0.003924563992768526, 0.009974430315196514, -0.027797987684607506, 0.007740447297692299, -0.007710258476436138, 0.0027653081342577934, 0.005920053459703922, 0.005237783305346966, 0.011471802368760109, 0.042433593422174454, 0.01071104034781456, -0.004887591581791639, 0.016289958730340004, 0.02015414461493492, 0.02325756847858429, -0.0064423223957419395, -0.005530616268515587, 0.03267652168869972, -0.004836270119994879, -0.017147324979305267, -0.02704930119216442, 0.01261898223310709, -0.03791732341051102, 0.007517049089074135, 0.017400912940502167, 0.01891035959124565, 0.016289958730340004, 0.031154999509453773, -0.07341953366994858, -0.009600087068974972, 0.011978976428508759, 0.008827249519526958, -0.01200916524976492, -0.0041600377298891544, 0.0014875606866553426, 0.006309491116553545, -0.02608325518667698, 0.023535307496786118, -0.005053630564361811, 0.022931529209017754, -0.03091348707675934, -0.013512575067579746, 0.036782220005989075, -0.03274897485971451, -0.022702092304825783, -0.006816665641963482, -0.032652370631694794, 0.0030204046051949263, -0.011073308065533638, 0.036613162606954575, 0.048254020512104034, 0.017799407243728638], [0.0489640012383461, 0.050926804542541504, 0.06668228656053543, 0.03586095944046974, -0.03302285075187683, 0.03493260592222214, 0.015543284825980663, -0.035436566919088364, 0.022479409351944923, 0.030052119866013527, 0.015742218121886253, 0.003952132072299719, -0.04678900167346001, 0.019826972857117653, 0.025781694799661636, 0.044614002108573914, 0.01579526625573635, -0.027691449970006943, -0.023938249796628952, -0.005841994192451239, 0.03413687273859978, 0.06578045338392258, 0.006375797092914581, -0.01908428966999054, -0.012784750200808048, 0.011677357368171215, 0.03607315197587013, 0.028009742498397827, 0.047213390469551086, -0.03509175032377243, 0.04037010297179222, -0.01835486851632595, -0.015569809824228287, -0.05777009204030037, 0.030556082725524902, -0.02094099670648575, -0.03999876230955124, 0.04373869672417641, 0.014429260976612568, 0.02793016843497753, -0.038433823734521866, 0.024985963478684425, -0.0025479979813098907, 0.009794126264750957, -0.0135075394064188, 0.024070871993899345, 8.672227704664692e-05, 0.006956018041819334, -0.030874375253915787, 0.022426361218094826, 0.04095363989472389, -0.011776823550462723, 0.04750515893101692, 0.03235974162817001, 0.054162777960300446, 0.0489640012383461, 0.015118895098567009, 0.05596643686294556, 0.03530394658446312, -0.02750577963888645, -0.0025247891899198294, -0.04140455275774002, -0.05219997465610504, 0.02314251847565174, -0.011531473137438297, -0.02110014297068119, -0.016113558784127235, 0.035012178122997284, -0.0031746362801641226, -0.014933224767446518, -0.0017323733773082495, 0.018102888017892838, -0.004144433885812759, -0.029256388545036316, 0.009091230109333992, -0.010132311843335629, -0.013328499160706997, -0.02652437798678875, 0.026113249361515045, 0.016232918947935104, 0.012539398856461048, 0.04222681000828743, -0.011829872615635395, 0.008812724612653255, -0.0026176245883107185, 0.03148443624377251, 0.0003835673560388386, -0.0006593794678337872, -0.0029276281129568815, 0.0051490445621311665, -0.019933069124817848, -0.03241278976202011, 0.008925452828407288, 0.030290838330984116, 0.017612187191843987, -0.03758504241704941, 0.011577890254557133, -0.0017754754517227411, -0.03392468020319939, 0.05548899620771408, -0.016975602135062218, 0.033128947019577026, 0.015224992297589779, 0.025450140237808228, 0.025158371776342392, -0.020450294017791748, -0.043897844851017, -0.007261048071086407, 0.0009755997452884912, -0.006478579249233007, -0.010085894726216793, 0.0010501996148377657, -0.015556546859443188, 0.08959934860467911, 0.024535048753023148, 0.01680319383740425, -0.016590997576713562, 0.03098047338426113, 0.01936279609799385, 0.014084444381296635, 0.004253847058862448, 0.010755634866654873, -0.015954412519931793, -0.09538166224956512, -0.029335960745811462, -0.005384448450058699, -0.03731979802250862, 0.022068282589316368, -0.039256077259778976, -0.0012880900176241994, 0.037850286811590195, -0.048460036516189575, 0.05623168125748634, -0.05124509707093239, -0.05055546388030052, -0.040078334510326385, -0.019628038629889488, -0.017572399228811264, -0.026166297495365143, -0.02737315744161606, 0.0030353835318237543, 0.0030486455652862787, 0.019349534064531326, 0.0020970834884792566, -0.005112573504447937, 0.004456095397472382, -0.04246552661061287, 0.07028959691524506, 0.00629622396081686, -0.01936279609799385, -0.06413594633340836, -0.015742218121886253, -0.025198157876729965, -0.038858212530612946, 0.02685593254864216, -0.03037041239440441, 0.01926996000111103, 0.018699685111641884, -0.004568824078887701, -0.008898928761482239, -0.03673626109957695, -0.019800446927547455, -0.035807907581329346, 0.0007319070282392204, 0.047425586730241776, 0.012804643251001835, -0.07177496701478958, 0.004061545245349407, -0.056603021919727325, -0.00524519570171833, -0.003207791829481721, -0.011756930500268936, -0.0326249822974205, -0.029282912611961365, -0.006922862492501736, -0.02332819066941738, 0.011438637971878052, -0.011259597726166248, -0.0017075068317353725, -0.0054739685729146, -0.004592032637447119, 0.00693612452596426, -0.03530394658446312, 0.012572554871439934, -0.034349068999290466, 0.044375281780958176, 0.01143200695514679, 0.012473088689148426, 0.025967365130782127, 0.01312293577939272, -0.02518489584326744, -0.0055336481891572475, 0.030662180855870247, 0.006233228836208582, -0.03853992000222206, -0.037876810878515244, 0.007148319855332375, -0.01240677759051323, 0.03352681174874306, -0.05127162113785744, 0.02063596621155739, -0.02267834171652794, 0.06291582435369492, 0.01795700378715992, -0.09400239586830139, -0.028062790632247925, -0.0063293795101344585, 0.04392436891794205, -0.002795006148517132, 0.014986272901296616, -0.007135057356208563, 0.029839923605322838, 0.006511734798550606, 0.03137833997607231, -0.023832153528928757, 0.022267214953899384, 0.02619282156229019, -0.002773455111309886, -0.06599265336990356, -0.0043533132411539555, -0.03636492043733597, 0.037240225821733475, -0.0038692434318363667, -0.017612187191843987, -0.037850286811590195, -0.008971870876848698, -0.020503344014286995, 0.017877429723739624, 0.02652437798678875, -0.029521631076931953, -0.0031564009841531515, 0.005487230606377125, -0.01765197329223156, -0.016537949442863464, -0.0003732062759809196, 0.02798321843147278, -0.03326156735420227, 0.001386727555654943, -0.0734194740653038, -0.024641146883368492, 0.026842670515179634, 0.01722758263349533, 0.03896430879831314, 0.03771766275167465, 0.016590997576713562, -0.026670260354876518, -0.021073617041110992, 0.015861578285694122, -0.0008284723153337836, -0.008507694117724895, 0.015211730264127254, 0.00018411647761240602, -0.005958038382232189, -0.03798290714621544, 0.01706843636929989, 0.010589857585728168, -0.010311352089047432, 0.015317827463150024, 0.03413687273859978, 0.018036575987935066, 0.004469357430934906, 0.007977206259965897, -0.07628411054611206, -0.029707303270697594, -0.013560587540268898, 0.004243900533765554, 0.026577426120638847, -0.009827281348407269, -0.008182770572602749, -0.008070041425526142, 0.00016235820658039302, 0.012154796160757542, 0.028407607227563858, -0.03525089845061302, -0.039866138249635696, 0.01911081373691559, 0.0020689014345407486, -0.013474383391439915, 0.016020724549889565, -0.0010452262358739972, -0.04859266057610512, 0.03235974162817001, 0.018646636977791786, -0.035993579775094986, 0.006123815663158894, -0.0048904321156442165, 0.017081698402762413, 0.027691449970006943, 0.0094360476359725, -0.017148010432720184, 0.04042315110564232, -0.0033586493227630854, -0.0023673006799072027, -0.012937264516949654, 0.011226442642509937, 0.014270114712417126, -0.05424235016107559, -0.009310056455433369, -0.014853651635348797, -0.03429602086544037, -0.044401805847883224, 0.0876895934343338, 0.011113714426755905, -0.012804643251001835, -0.027094651013612747, 0.06652313470840454, 0.014840388670563698, 0.01793047972023487, -0.03021126613020897, -0.031696632504463196, -0.015662644058465958, 0.05633777752518654, -0.04002528637647629, -0.03342071548104286, -0.045011866837739944, -0.025224681943655014, 0.016723619773983955, 0.006631094496697187, 0.01304999366402626, 0.03145791217684746, 0.10286153107881546, -0.017996789887547493, 0.012035435996949673, -0.025264469906687737, 0.029495107010006905, 0.010523546487092972, -0.04267772287130356, 0.02110014297068119, -0.015331090427935123, -0.039919186383485794, -0.037823762744665146, 0.047027722001075745, 0.021962184458971024, -0.01437621284276247, 0.008202663622796535, 0.015437187626957893, 0.04912314563989639, 0.023341452702879906, 0.02816888876259327, 0.023275140672922134, -0.0026706731878221035, 0.00679024076089263, 0.021484745666384697, 0.04567497596144676, -0.004913640674203634, -0.008129721507430077, 0.02271812967956066, 0.021378647536039352, 0.034959129989147186, 0.021723464131355286, -0.0388316884636879, -0.020264623686671257, -0.008375071920454502, -0.004210744984447956, -0.018182460218667984, -0.01044397335499525, 0.015118895098567009, 0.021365385502576828, -0.036232300102710724, -0.024588096886873245, -0.010264934040606022, 0.011604415252804756, 0.05036979168653488, 0.009562037885189056, -0.021378647536039352, 0.0029873079620301723, -0.022917062044143677, 0.024375902488827705, 0.05485241115093231, -0.046019796282052994, -0.027824072167277336, 0.02359343320131302, -0.003405066905543208, -0.03217406943440437, 0.006760400719940662, 0.039070408791303635, -0.0056629544124007225, 0.057823143899440765, -0.0010717506520450115, -0.017307156696915627, 0.08074020594358444, 0.0013535721227526665, 0.0376911386847496, 0.021564317867159843, 0.04331430792808533, 0.037240225821733475, -0.0017423200188204646, 0.018938405439257622, 0.007532923016697168, -0.0019097551703453064, -0.02579495683312416, 0.018938405439257622, 0.03692193329334259, -0.023805629462003708, 0.0047113923355937, 0.010510284453630447, 0.114373117685318, -0.0003182925283908844, -0.012526136822998524, -0.02469419501721859, 0.017453040927648544, -0.01621965691447258, 0.028062790632247925, -0.01499953493475914, 0.0006519194575957954, 0.014137493446469307, 0.0035509509034454823, 0.016789929941296577, 0.014495572075247765, -0.014906699769198895, 0.023500598967075348, 0.014734291471540928, 0.032121021300554276, 0.019773922860622406, 0.024561572819948196, -0.003975341096520424, 0.017705021426081657, 0.025039011612534523, -0.01920364983379841, -0.007983837276697159, -0.004558877553790808, -0.0011272859992459416, -0.04148412495851517, 0.016378803178668022, -0.023062946274876595, 0.021511269733309746, 0.005881780758500099, 0.020052429288625717, 0.018102888017892838, -0.031166143715381622, 0.00010469875996932387, 0.01158452220261097, 0.09447982907295227, 0.0168297179043293, -0.030662180855870247, 0.02082163654267788, 0.0040947007946670055, -0.021789776161313057, -0.017399990931153297, -4.6702589315827936e-05, 0.013136197812855244, -0.001737346756272018, -0.02009221538901329, -0.004051598720252514, 0.014349687844514847, 0.028407607227563858, -0.014760815538465977, 0.08344569057226181, 0.036232300102710724, -0.002206496661528945, -0.0005487230373546481, -0.018341606482863426, -0.028062790632247925, 0.017903953790664673, -0.06816764920949936, 0.010569964535534382, 0.03350028768181801, -0.05676216632127762, 0.05586033686995506, 0.010536808520555496, 0.03493260592222214, 0.036444492638111115, 0.09755665808916092, -0.028911571949720383, 0.0017588977934792638, 0.03137833997607231, 0.009595193900167942, -0.014959748834371567, -0.0030735121108591557, -0.0592024102807045, 0.005122520495206118, -0.031351812183856964, 0.03689540922641754, 0.011531473137438297, 0.0469481460750103, -0.02079511247575283, 0.012725070118904114, -0.013408072292804718, 0.025596024468541145, -0.0387786403298378, 0.019283222034573555, -0.020808374509215355, -0.0218958742916584, -0.029627729207277298, 0.01828855834901333, 0.04883137717843056, 0.021988708525896072, -0.01948215439915657, -0.017705021426081657, 0.007314097136259079, -0.025649072602391243, -0.019230173900723457, -0.002998912474140525, -0.014641456305980682, -0.003347044810652733, -0.023460811004042625, 0.013136197812855244, -0.026351967826485634, 0.003541004378348589, -0.0037896702997386456, 0.020781850442290306, -0.028646327555179596, 0.02420349419116974, -0.012081854045391083, 0.05750485137104988, -0.014959748834371567, 0.010729110799729824, -0.03551614284515381, -0.024216756224632263, -0.008315391838550568, -0.017094960436224937, 0.03238626569509506, 0.006007771473377943, 0.01945563033223152, -0.0055535417050123215, 0.012572554871439934, -0.003776408266276121, 0.006047558039426804, -0.0010659483959898353, 0.02271812967956066, -0.028858521953225136, 0.01655121147632599, -0.00928353238850832, 0.045197539031505585, -0.015622857958078384, -0.02633870579302311, 0.0112330736592412, -0.03639144450426102, -0.02877894975244999, -0.024747243151068687, -0.00847453810274601, -0.017214320600032806, 0.0002298088656971231, 0.0003829456982202828, -0.029707303270697594, -0.013819200918078423, 0.019535204395651817, 0.03429602086544037, 0.022757915779948235, -0.018739473074674606, -0.0014273429987952113, -0.03466736152768135, 0.01588810235261917, 0.019376058131456375, -0.008753044530749321, 0.008799462579190731, 0.03700150549411774, 0.04729296639561653, 0.02030441164970398, -0.006107237655669451, -0.03795638307929039, -0.02978687547147274, -0.037452422082424164, -0.01875273510813713, -0.02180303819477558, 0.009091230109333992, 0.02302316017448902, -0.011332539841532707, 0.008965239860117435, -0.014270114712417126, -0.0014936539810150862, 0.011942600831389427, 0.01755913719534874, 0.014495572075247765, 0.002932601375505328, 0.019946331158280373, -0.02621934749186039, 0.006133762188255787, 0.01266539003700018, -0.010576595552265644, -0.04246552661061287, 0.05291613191366196, 0.02509206160902977, -0.03808900713920593, 0.011213180609047413, 0.03814205527305603, 0.006127131171524525, -0.0018567064544185996, -0.001622960320673883, -0.039070408791303635, -0.01673688180744648, 0.034163396805524826, 0.049096621572971344, -0.025463402271270752, -0.0020771902054548264, 0.03143138810992241, -0.014614932239055634, -0.01631249114871025, -0.03750547021627426, 0.015768742188811302, 0.007884371094405651, -0.0260071512311697, 0.007327359169721603, 0.007605865132063627, -0.011544735170900822, 0.02838108316063881, 0.0015558204613626003, 0.016789929941296577, -0.033765532076358795, 0.013938560150563717, 0.05185515806078911, -0.01240677759051323, 0.013646791689097881, 0.0034548002295196056, -0.007831322029232979, -0.01777133345603943, -0.008076672442257404, -0.003338756039738655, -0.012930633500218391, 0.023765841498970985, -0.002286069793626666, 0.03734632208943367, -0.004190851468592882, -0.007486505433917046, -0.015065846033394337, 0.007300834637135267, 0.0022297054529190063, -0.027479255571961403, 0.012426670640707016, 0.019561728462576866, -0.004436201881617308, -0.008494432084262371, 0.01643185131251812, -0.004651712719351053, -0.007791535928845406, 0.0034879555460065603, 0.019097551703453064, -0.03936217725276947, 0.0021998656447976828, -0.008646947331726551, -0.030715228989720345, -0.029044192284345627, 0.0028314772062003613, -0.049070097506046295, -0.012187951244413853, 0.005576750263571739, 0.019402582198381424, 0.008322023786604404, -0.00512915151193738, 0.005082733929157257, 0.03296980261802673, 0.039309125393629074, 0.008839248679578304, -0.050714608281850815, 0.04954753816127777, -0.004227322526276112, -0.005543594714254141, 0.0014953117351979017, -0.020715538412332535, -0.01187628973275423, 0.021325599402189255, -0.0006614516605623066, -0.020596178248524666, 0.004074807278811932, -0.007857847027480602, -0.03289022669196129, -0.02232026308774948, -0.01755913719534874, -0.036205776035785675, 0.057239606976509094, -0.03331461921334267, 0.025025749579072, 0.022731391713023186, -0.028195412829518318, 1.0646014743542764e-05, 0.005722634494304657, 0.021670415997505188, -0.028407607227563858, -0.0009946641512215137, 0.006717298645526171, 0.02387193962931633, 0.028513705357909203, -0.020556392148137093, 0.019349534064531326, 0.026630474254488945, -4.5951412175782025e-05, -0.04983930289745331, 0.03861949220299721, -0.026988552883267403, 0.017665235325694084, 0.01624618098139763, -0.013083148747682571, 0.0002006942086154595, -0.00020494226191658527, -0.040529247373342514, 0.006856551393866539, 0.025980627164244652, 0.02795669436454773, 0.0077119627967476845, 0.03161705657839775, 0.0017290578689426184, 0.036205776035785675, 0.003015490248799324, -0.0024402427952736616, 0.0387255921959877, 0.004316842183470726, -0.029919497668743134, -0.0058917272835969925, -0.014256852678954601, -0.04636461287736893, 0.007373776752501726, 0.02316904440522194, -0.06795545667409897, -0.04243900254368782, -0.02436264045536518, -0.030503034591674805, 0.0002720820775721222, 0.0018882041331380606, 0.0796261802315712, 0.03432254493236542, -0.006982542108744383, -0.009615086950361729, -0.023248616605997086, -0.037876810878515244, 0.0006519194575957954, 0.026683524250984192, 0.0071217953227460384, 0.014137493446469307, 0.009111123159527779, -0.009714553132653236, 0.008560743182897568, -0.031060045585036278, -0.028062790632247925, 0.028089314699172974, 0.037054553627967834, 0.005911620799452066, 0.011193287558853626, 0.00693612452596426, 0.035595715045928955, -0.003013832261785865, 0.01758566126227379, -0.019442368298768997, 0.003078485606238246, 0.03445516526699066, 0.007997099310159683, 0.0055535417050123215, -0.0008052635239437222, 0.002261203248053789, -0.01758566126227379, -0.002251256490126252, 0.007758380379527807, -0.03331461921334267, -0.014734291471540928, -0.05814143642783165, 0.044003941118717194, 0.0006560639012604952, -0.024428950622677803, 0.004054914228618145, -0.020039167255163193, 0.02649785205721855, -0.015848316252231598, 0.011737036518752575, -0.03514479845762253, -0.0024352692998945713, 0.020383983850479126, -0.018275296315550804, -0.010908150114119053, 0.0052253021858632565, 0.008156245574355125, 0.009210590273141861, 0.011935969814658165, -0.014362949877977371, 0.01826203428208828, 0.0570804588496685, 0.019442368298768997, -0.021789776161313057, -0.047637782990932465, -0.0010750661604106426, -0.007605865132063627, -0.006302854977548122, 0.02560928650200367, 0.005782314110547304, 0.0006494328263215721, 0.001309641171246767, 0.001456354046240449, -0.008792830631136894, -0.02472071908414364, -0.010092525742948055, -0.008653578348457813, -0.009091230109333992, 0.014813864603638649, 0.011345802806317806, -0.0249727014452219, 0.035569190979003906, 0.003713412908837199, -0.0224130991846323, 0.015543284825980663, 0.010967830196022987, 0.016325755044817924, -0.022280476987361908, -0.0249727014452219, 0.00821592565625906, 0.020781850442290306, -0.025025749579072, -0.008746413514018059, 0.021988708525896072, 0.016590997576713562, -0.08615117520093918, 0.005613221321254969, 0.0168297179043293, 0.008580636233091354, -0.006246490869671106, -0.017519351094961166, 0.0031646897550672293, 0.02915029041469097, 0.028301510959863663, -0.042916443198919296, -0.028672851622104645, 0.023222092539072037, -0.017598925158381462, -0.006544889882206917, 0.018010051921010017, 0.01633901707828045, -0.013149459846317768, 0.003603999735787511, -0.02737315744161606, -0.013169352896511555, 0.04198808968067169, -0.014336425811052322, -0.001448894152417779, 0.052969180047512054, -0.02271812967956066, 0.02011873945593834, -0.024932915344834328, 0.00934321153908968, 0.02539709024131298, -0.06461337953805923, 0.006236544344574213, 0.03835424780845642, 0.008746413514018059, 0.025078797712922096, -0.009416153654456139, 0.001556649338454008, -0.003061907831579447, -0.023726055398583412, 0.016896028071641922, -0.014018133282661438, -0.006949387025088072, -0.01755913719534874, 0.03554266691207886, 0.005056209396570921, -0.026749834418296814, -0.01624618098139763, -0.009475833736360073, 0.02180303819477558, 0.009336580522358418, -0.021842824295163155, -0.009641611017286777, -0.04514449089765549, 0.016723619773983955, -0.028407607227563858, 0.00016981818771455437, 0.0018882041331380606, -0.026537640020251274, -0.020848160609602928, 0.0067106676287949085, 0.022917062044143677, -0.03259845823049545, -0.04304906353354454, -0.04424266144633293, -0.024680932983756065, -0.004903694149106741, -0.013547325506806374, -0.023275140672922134, 0.02173672802746296, 0.007917526178061962, 0.03588748350739479, 0.014694505371153355, -0.02814236469566822, 0.003607315244153142, 0.010331245139241219, -0.029733827337622643, 0.03448168933391571, -0.029707303270697594, -0.02816888876259327, -0.008361809886991978, -0.01929648406803608, 0.003905714489519596, 0.0064818947575986385, -0.022519195452332497, 0.013713102787733078, -0.01732041873037815, 0.0168297179043293, -0.023314926773309708, -0.019548466429114342, -0.05819448456168175, -0.02899114415049553, 0.03517132252454758, 0.044746626168489456, 0.0059480913914740086, 0.010298089124262333, 0.015874840319156647, -0.037876810878515244, -0.002304305322468281, -0.06249143183231354, 0.028009742498397827, -0.02039724588394165, -0.006654303055256605, -0.010695954784750938, 0.0006005284958519042, -0.02511858567595482, -0.010874995030462742, -0.051749058067798615, -0.014217066578567028, -0.020476819947361946, 0.04185546562075615, 0.01600746251642704, 0.009661504067480564, -0.0010858416790142655, 0.01789069175720215, 0.014880175702273846, 0.007758380379527807, -0.0017903954721987247, -0.0013461121125146747, 0.04856613650918007, 0.008713257499039173, -0.014429260976612568, 0.006700720638036728, 0.04551583155989647, 0.009329949505627155, 0.02478703111410141, 0.0033105737529695034, 0.07798166573047638, -0.015675906091928482, -0.008686733432114124, -0.00410796282812953, -0.013673316687345505, -0.008985132910311222, 0.04631156101822853, 0.008865772746503353, 0.03952132165431976, 0.019442368298768997, -0.004731285851448774, -0.002723722020164132, -0.006462001241743565, -0.013421335257589817, -0.018620112910866737, 0.021816300228238106, 0.03997223824262619, 0.037876810878515244, -0.026776358485221863, 0.05249174311757088, 0.019429106265306473, -0.04360607638955116, -0.026789620518684387, -0.01755913719534874, -0.01676340587437153, 0.002050665905699134, -0.01210174709558487, 0.008865772746503353, 0.04360607638955116, -0.024866603314876556, 0.01133917085826397, -0.0024170337710529566, -0.012015542946755886, -0.03652406856417656, -0.0034382224548608065, -0.007884371094405651, -0.0014712740667164326, 0.0015375849325209856, 0.06493167579174042, 0.010112418793141842, 0.029017668217420578, -0.036603640764951706, 0.015211730264127254, -0.03400425240397453, 0.03185577690601349, 0.003531057620421052, -0.02645806595683098, -0.023739317432045937, -0.012519505806267262, -0.012154796160757542, 0.021723464131355286, 0.04185546562075615, -0.029495107010006905, -0.0021236080210655928, -0.01704191230237484, -0.007526291999965906, -0.0010933016892522573, -0.026696786284446716, 0.014137493446469307, 0.014880175702273846, 0.03747894614934921, 0.00013987463898956776, 0.005590012297034264, 0.02368626929819584, 0.052544791251420975, -0.02814236469566822, 0.0023026475682854652, 0.025741908699274063, -0.004104647319763899, 0.0295746810734272, -0.0022429677192121744, -0.03326156735420227, -0.005023053847253323, -0.0193893201649189, -0.004293633624911308, 0.005832047667354345, 0.03222711756825447, -0.023978037759661674, 0.01112697646021843, -0.010961199179291725, 0.034587789326906204, 0.007360514719039202, 0.013235663995146751, -0.039494797587394714, 0.016352279111742973, 0.04485272243618965, -0.0036006842274218798, -0.03387162834405899, -0.011073927395045757, 0.004558877553790808, -0.051351193338632584, 0.03901736065745354, 0.02426980435848236, 0.0173469427973032, 0.023341452702879906, -0.020238099619746208, 0.015530022792518139, 0.019031241536140442, -0.0010816972935572267, 0.0255429744720459, 0.011717143468558788, 0.024535048753023148, 0.01945563033223152, -0.004296949133276939, 0.030847851186990738, 0.0035807909443974495, 0.015039321966469288, -0.005265088751912117, -0.02533078007400036, -0.01899145357310772, -0.009595193900167942, 0.05490545928478241, -0.005265088751912117, 0.014734291471540928, -0.03798290714621544, -0.02716096304357052, 0.0012068591313436627, -0.016179870814085007, -0.0017937109805643559, -0.027028340846300125, -0.05082070827484131, -0.011438637971878052, 0.036603640764951706, -0.00998642761260271, 0.030503034591674805, 0.025370566174387932, -0.02164389193058014, 0.014084444381296635, -0.008328654803335667, 0.023407762870192528, -0.01889861933887005, 0.0017555821686983109, 0.013845724985003471, 0.0147873405367136, 0.01005936972796917, -0.04342040419578552, 0.00841485895216465, 0.009276901371777058, 0.03692193329334259, -0.014628194272518158, 0.0036537330597639084, -0.004552246071398258, -0.014044657349586487, 0.014827126637101173, -0.018487490713596344, -0.008633684366941452, 0.0068963379599153996, -0.0459667444229126, -0.030927423387765884, 0.011730405502021313, -0.024853341281414032, 0.02591431699693203, -0.012154796160757542, -0.021020568907260895, -0.007658913731575012, -0.050900280475616455, 0.013845724985003471, 0.01950868032872677, -0.03575485944747925, -0.003842719132080674, 0.025901054963469505, 0.010709217749536037, -0.007513029966503382, 0.0023888517171144485, -0.018182460218667984, 0.002824846189469099, -0.018089625984430313, -0.009117755107581615, 0.022307001054286957, 0.03302285075187683, -0.016962340101599693, 0.0060243490152060986, -0.008859141729772091, 0.0091906962916255, 0.03103352151811123, -0.014389474876224995, -0.009489095769822598, 0.0005134953535161912, -0.0071019018068909645, 0.03220059350132942, 0.01655121147632599, -0.026139773428440094, 0.025834742933511734, -0.029256388545036316, 0.0086734713986516, 0.011226442642509937, 0.02058291621506214, 0.004578770603984594, 0.0173469427973032, 0.037664614617824554, 0.01704191230237484, -0.013607005588710308, 0.04307558760046959, 0.0017804488306865096, 0.038884736597537994, 0.013215770944952965, -0.0005959696136415005, -5.562607384490548e-06, -0.025463402271270752, 0.0050197383388876915, -0.025927579030394554, -0.0018252086592838168, -0.015397400595247746, 0.007824691012501717, -0.017426514998078346, 0.02490638941526413, 0.021776514127850533, -0.017996789887547493, -0.012963789515197277, -0.0397600419819355, -0.022200902923941612, 0.008467907086014748, -0.03891126066446304, -0.01743977889418602, 0.024588096886873245, 0.014522096142172813, 0.009336580522358418, 0.004525722004473209, 0.008408227935433388, 0.005069471430033445, 0.0022263899445533752, -0.01133917085826397, -0.00949572678655386, -0.019495416432619095, -0.011478424072265625, 0.05787619203329086, 0.00531150633469224, 0.0017157956026494503, 0.03729327395558357, 0.009243745356798172, 0.015171944163739681, -0.018116150051355362, 0.04795607551932335, 0.008434752002358437, -0.012307311408221722, -0.015370876528322697, 0.03238626569509506, 0.004389784298837185, -0.00328073394484818, -0.008268974721431732, -0.018222246319055557, -0.015808528289198875, -0.016113558784127235, 0.011272860690951347, 0.035383518785238266, 0.04148412495851517, -0.08530239760875702, 0.01429663971066475, 0.004913640674203634, -0.01865989901125431, -0.049892354756593704, 0.01767849735915661, -3.141998968203552e-05, -0.022055020555853844, 0.02619282156229019, -0.015224992297589779, 0.014137493446469307, 0.01169061940163374, 0.017267368733882904, 0.03249236196279526, -0.0006361706182360649, -0.008845879696309566, 0.009402891620993614, 0.029070718213915825, -0.011166762560606003, -0.009111123159527779, -0.0032857072073966265, 0.011750299483537674, 0.02411065809428692, 0.016697095707058907, 0.02051660604774952, 0.004393099807202816, -0.03241278976202011, 0.045011866837739944, -0.01624618098139763, 0.009091230109333992, -0.029733827337622643, -0.0028298194520175457, 0.0012425013119354844, 0.0048108589835464954, 0.01789069175720215, 0.019044503569602966, 0.043977417051792145, -0.008514325134456158, 0.005649692378938198, 0.025967365130782127, -0.000520955363754183, -0.05267741158604622, 0.0006991660338826478, -0.03230668976902962, -0.02039724588394165, -0.0397069938480854, -0.020715538412332535, -0.020450294017791748, -0.025370566174387932, 0.00017593121447134763, 0.0008454645285382867, 0.01610029675066471, 0.0024899758864194155, -0.02030441164970398, 0.002441900549456477, 0.0017738176975399256, 0.03649754449725151, -0.024375902488827705, 0.006428845692425966, -0.0004138217191211879, -0.01619313284754753, 0.029442058876156807, 0.06201399490237236, 0.02051660604774952, -0.0015268094139173627, -0.003693519625812769, 0.030264314264059067, 0.0018318397924304008, 0.04729296639561653, 0.01865989901125431, 0.013096410781145096, -0.0001921981165651232, -0.02716096304357052, -0.006670881062746048, 0.030131692066788673, 0.004588717129081488, -0.03551614284515381, 0.007433456834405661, -0.016896028071641922, 0.006717298645526171, -0.01676340587437153, 0.0015757137443870306, -0.0032724449411034584, 7.009274122538045e-05, 0.01765197329223156, 0.008189401589334011, 0.006869813892990351, 0.010994354262948036, -0.011378957889974117, -0.010603119619190693, -0.00949572678655386, 0.016789929941296577, -0.009979796595871449, -0.010417449288070202, -0.020927732810378075, 0.014389474876224995, 0.005924882832914591, 0.004588717129081488, 0.008494432084262371, 0.0229833722114563, -0.014906699769198895, 0.008859141729772091, 0.012002280913293362, -0.009522251784801483, 0.004853961057960987, -0.0531018041074276, -0.013030100613832474, 0.022094806656241417, 0.017758071422576904, 0.02621934749186039, 0.021232763305306435, 0.007665545213967562, 0.023832153528928757, 0.02011873945593834, -0.01997285522520542, -0.023129256442189217, -0.030105167999863625, 0.027399681508541107, 0.04018443077802658, -0.012048698030412197, 0.022890537977218628, -0.003832772606983781, -0.016564473509788513, 0.006004455965012312, 0.022917062044143677, -0.024866603314876556, -0.02387193962931633, 0.0020440348889678717, 0.00599782494828105, -0.05225302278995514, 0.007214630488306284, -0.0006817593821324408, -0.02354038506746292, -0.042783819139003754, 0.000458788825199008, 0.003255867399275303, -0.0025562867522239685, -0.014508834108710289, 0.018023313954472542, 0.0009200643398799002, 0.002184945624321699, -0.015171944163739681, -0.003018805757164955, 0.04209418594837189, 0.016259443014860153, 0.03514479845762253, 0.008361809886991978, -0.013912036083638668, -0.011803347617387772, -0.021259289234876633, -0.03591400757431984, 0.027293583378195763, -0.01645837537944317, -0.014959748834371567, -0.04013138264417648, 0.025025749579072, 0.028858521953225136, -0.04243900254368782, -0.0013577165082097054, 0.01131264679133892, 0.013175983913242817, -0.03530394658446312, -0.024137184023857117, 0.029839923605322838, -0.028089314699172974, 0.0347469337284565, -0.004704761318862438, 0.013374917209148407, -0.0013403099728748202, 0.0020854792091995478, -0.030503034591674805, 0.009555406868457794, -0.026511114090681076, -0.006471948232501745, -0.04304906353354454, 7.273481605807319e-05, 0.01358048152178526, 0.011564628221094608, -0.019747398793697357, 0.02441568858921528, -0.020012643188238144, -0.02649785205721855, 0.0034415379632264376, 0.03021126613020897, -0.029335960745811462, -0.012884216383099556, 0.015331090427935123, 0.014522096142172813, -0.016166608780622482, 0.021153191104531288, 0.005924882832914591, 0.009091230109333992, 0.018885357305407524, -0.006491841282695532, -0.04148412495851517, -0.030847851186990738, 0.02460135892033577, -0.01417727954685688, -0.04161674901843071, -0.025290993973612785, 0.02936248481273651, 0.014164017513394356, -0.030900899320840836, -0.01957499049603939, 0.032333217561244965, 0.0038460346404463053, -0.03320851922035217, 0.023248616605997086, -0.008872403763234615, -0.03328809514641762, -0.02180303819477558, -0.008288867771625519, 0.01795700378715992, 0.001740662264637649, -0.029415534809231758, -0.013726364821195602, 0.0008284723153337836, 0.0015815160004422069, -0.016657309606671333, -0.03551614284515381, 0.0037863547913730145, -0.01092804316431284, -0.013474383391439915, 0.02103383094072342, -0.001077552791684866, -0.004044967703521252, 0.003590737469494343, 0.0024518470745533705, -0.05628472939133644, -0.017479564994573593, 0.020410507917404175, 0.01297042053192854, -0.019641300663352013, -0.006823395844548941, 0.012267524376511574, 0.004469357430934906, -0.03808900713920593, -0.009581930935382843, -0.010417449288070202, -0.019548466429114342, 0.004243900533765554, 0.0208879467099905, -0.028089314699172974, -0.004708076827228069, 0.026113249361515045, -0.0068167648278176785, -0.017360204830765724, 0.002359011908993125, 0.005497177131474018, -0.026988552883267403, -0.00949572678655386, -0.02499922551214695, -0.0132754510268569, -0.0035244266036897898, 0.032518886029720306, 0.0030801433604210615, -0.008149614557623863, -0.021020568907260895, 0.018580326810479164, 0.031696632504463196, -0.010510284453630447, -0.003683572867885232, -0.02164389193058014, -0.005255142226815224, -0.008892297744750977, 0.0070488532073795795, 0.0219489224255085, 0.015331090427935123, 0.016511425375938416, 0.030449984595179558, -0.026351967826485634, 0.005798892118036747, -0.009024919010698795, 0.00048738543409854174, 0.026908980682492256, -0.029415534809231758, 0.001261565717868507, 0.014469048008322716, 0.006574729923158884, 0.011000985279679298, 0.01795700378715992, -0.019309746101498604, -0.0012366990558803082, -9.366420999867842e-05, -0.019336270168423653, 0.028725899755954742, 0.021789776161313057, 0.04506491869688034, 0.004960058722645044, -0.015835052356123924, 0.026285657659173012, 0.0015409005573019385, -0.02307620830833912, -0.034773457795381546, 0.02997254580259323, 0.00038170235347934067, 0.013374917209148407, -0.006160286720842123, 0.0158217903226614, 0.008991763927042484, -0.02067575231194496, -0.014004871249198914, 0.01854053884744644, 0.022121330723166466, 0.008706626482307911, -0.01066943071782589, -0.014389474876224995, -0.04472009837627411, -0.007758380379527807, 0.01828855834901333, -0.010662799701094627, -0.012844429351389408, -0.05819448456168175, -0.03249236196279526, 0.008607160300016403, 0.0037233594339340925, -0.0008661866886541247, 0.02225395292043686, -0.03424297273159027, 0.02079511247575283, -0.009747708216309547, -0.014004871249198914, 0.015211730264127254, 0.011153500527143478, 0.009568668901920319, 0.028911571949720383, 0.01281790528446436, -0.004343366716057062, 0.012546030804514885, 0.01292400248348713, -0.0019197018118575215, -0.0347469337284565, -0.008142983540892601, 0.032757606357336044, 0.005613221321254969, -0.00984717532992363, -0.01105403434485197, 0.012446563690900803, -0.015967674553394318, 0.021378647536039352, 0.029017668217420578, -0.010158836841583252, 0.005178884603083134, 0.0357283353805542, -0.0590963140130043, 0.017850905656814575, 0.03220059350132942, 0.03148443624377251, 0.03220059350132942, 0.0032956539653241634, 0.009310056455433369, 0.005218671169131994, -0.00964824203401804, 0.023885201662778854, -0.009044812992215157, -0.03657711669802666, -0.006004455965012312, -0.005712687969207764, 0.016511425375938416, -0.02255898341536522, -0.023089470341801643, -0.011982387863099575, -0.02243962325155735, -0.004078122787177563, 0.006660934071987867, -0.006166917737573385, 0.03058260679244995, 0.040502723306417465], [0.03654291108250618, 0.02616024576127529, 0.05506884679198265, 0.0033018405083566904, 0.010478095151484013, 0.034227170050144196, -0.024048086255788803, -0.012679321691393852, 0.03142792358994484, 0.01702451892197132, -0.015955714508891106, -0.036212094128131866, -0.0315806083381176, 0.032344039529561996, 0.0390876829624176, 0.017622539773583412, 0.006756367161870003, -0.005439448170363903, 0.006387375295162201, 0.028094273060560226, 0.03710276260972023, 0.07278045266866684, 0.0013956478796899319, -0.053745564073324203, 0.009542891755700111, 0.020281825214624405, 0.04537326842546463, 0.009014851413667202, 0.06336479634046555, -0.002942391438409686, 0.028654122725129128, -0.034150827676057816, 0.0008342077489942312, -0.06708016246557236, 0.024366183206439018, -0.06814897060394287, -0.009975502267479897, 0.0212361142039299, 0.0432356595993042, -0.01781339757144451, -0.01381810661405325, 0.010656229220330715, -0.02755987085402012, -0.010834363289177418, -0.04117439687252045, 0.01965835690498352, 0.015014149248600006, -0.01582847535610199, -0.06672389805316925, 0.03450709581375122, 0.027356289327144623, 0.008913060650229454, 0.03303112834692001, -0.035728584975004196, 0.01136876456439495, 0.04196327552199364, 0.015739409253001213, 0.05135348066687584, 0.03705186769366264, -0.010287237353622913, -0.0193657074123621, -0.02300473116338253, -0.012590254656970501, 0.027763452380895615, -0.006737281568348408, 0.017787950113415718, 0.017546197399497032, 0.02079077996313572, 0.016973622143268585, -0.021134324371814728, -0.0013542954111471772, -0.04875781387090683, -0.016362877562642097, -0.03931671380996704, 0.002851734170690179, -0.013423667289316654, -0.01642649807035923, -0.007093549240380526, 0.045729536563158035, 0.03850238770246506, -0.022317642346024513, 0.029417553916573524, -0.038247909396886826, 0.057766303420066833, -0.017826121300458908, 0.010261788964271545, -0.024633383378386497, 0.005388552788645029, 0.006365108769387007, -0.003075991990044713, -0.021070703864097595, -0.04829975590109825, 0.05267675966024399, 0.01830962859094143, -0.006985396612435579, -0.0276362132281065, 0.0041066245175898075, -0.013500010594725609, -0.06372106820344925, 0.03661925718188286, 0.011572346091270447, 0.04104715585708618, 0.034379858523607254, 0.01556127518415451, 0.0405890978872776, 0.0058720591478049755, -0.05995480716228485, -0.012443930841982365, -0.003036229871213436, 0.007367112208157778, -0.018449589610099792, -0.02465883083641529, 0.002002416644245386, 0.04145431891083717, 0.0017511205514892936, -0.03702642023563385, -0.020536301657557487, 0.014823291450738907, 0.01906033605337143, -0.00226961774751544, 0.04789259284734726, -0.00907847099006176, -0.01856410503387451, -0.09441100805997849, -0.04868147149682045, 0.016032056882977486, -0.041937828063964844, 0.0263129323720932, -0.05634123086929321, -0.008804908022284508, -0.005989755038172007, -0.03850238770246506, 0.023844504728913307, -0.022928386926651, -0.02804337814450264, 0.007774275727570057, 0.008594964630901814, 0.01763526350259781, 0.003451345721259713, -0.08484266698360443, 0.0101472744718194, 0.022902939468622208, 0.0028008385561406612, -0.028934046626091003, 0.004326110705733299, 0.030817177146673203, -0.011069754138588905, 0.05018288642168045, -0.036364778876304626, 0.0005654162960126996, -0.04799438267946243, -0.03730634227395058, -0.0045487782917916775, -0.04318476468324661, 0.03392179682850838, -0.024684280157089233, 0.023768162354826927, 0.02733084186911583, 0.007697932422161102, -0.011139735579490662, 0.0071444446220994, 0.00817507691681385, -0.04944490268826485, 0.0013511143624782562, 0.046442072838544846, 0.02177051641047001, -0.04796893522143364, -0.006800900679081678, -0.0759359672665596, -0.011699585244059563, 0.015624894760549068, 0.028399644419550896, 0.013474563136696815, 0.010198170319199562, 0.03995290398597717, 0.02567674033343792, -0.008913060650229454, 0.021643277257680893, 0.004978208336979151, -0.026440171524882317, 0.0020103692077100277, -0.00982917845249176, -0.013296429067850113, 0.005172247067093849, -0.022533947601914406, 0.042421333491802216, -0.025918493047356606, 0.027610765770077705, 0.03455799072980881, -0.0029248963110148907, -0.004526511766016483, -0.018551381304860115, 0.011597794480621815, -0.012456654570996761, -0.020688988268375397, -0.04532237350940704, -0.016172019764780998, -0.010726209729909897, 0.0387314148247242, 0.007621589582413435, 0.02446797303855419, -0.02262301556766033, 0.05914048105478287, -0.021592382341623306, -0.04985206574201584, 0.0038775948341935873, -0.015230454504489899, 0.03575403243303299, -0.009415652602910995, 0.030104640871286392, -0.00328911654651165, 0.0266946479678154, -0.029188524931669235, 0.043770063668489456, -0.04158155992627144, -0.003610393963754177, 0.0360848531126976, -0.016095677390694618, -0.03432896360754967, 0.02929031476378441, -0.05522153154015541, 0.011457831598818302, -0.007825170643627644, -0.04427901655435562, -0.035881273448467255, 0.005824344698339701, -0.01105066854506731, 0.031707849353551865, -0.024786069989204407, -0.03865507245063782, -0.03094441629946232, -0.025803979486227036, -0.04827430844306946, -0.0033304691314697266, -0.006422366015613079, 0.03239493444561958, -0.0020262738689780235, -0.021083427593111992, -0.059751223772764206, -0.023399170488119125, 0.04354103282094002, 0.005334476474672556, 0.0657568871974945, 0.050844527781009674, -0.006781815085560083, -0.026796439662575722, -0.034227170050144196, -0.023246483877301216, -0.00033738097408786416, -0.021643277257680893, 0.029672030359506607, 0.020994361490011215, -0.022572118788957596, -0.03224224969744682, 0.01759709231555462, 0.02157965861260891, -0.0432356595993042, -0.003969843033701181, 0.01377993542701006, -0.007933324202895164, -0.0163501538336277, 0.008474087342619896, -0.05491615831851959, -0.00292807724326849, 0.0035976700019091368, -0.006966311018913984, 0.0027244954835623503, -0.01029996108263731, -0.0011849090224131942, -0.0016366059426218271, 0.0026910954620689154, 0.011642327532172203, -0.02000190131366253, -0.04374461621046066, -0.03511784225702286, -0.002490694634616375, 0.03236948698759079, 0.011496003717184067, 6.158147152746096e-05, 0.012672959826886654, -0.03733179345726967, 0.019823767244815826, 0.005687563214451075, -0.04275215417146683, 0.010255427099764347, 0.0011538945836946368, 0.0010544895194470882, 0.02623658999800682, -0.004532873630523682, -0.01095523964613676, 0.024124430492520332, -0.001760663464665413, -0.004876417573541403, -0.020167311653494835, 0.024875137954950333, 0.009033937007188797, -0.010026398114860058, 0.0225593950599432, -0.03781529888510704, -0.0503864660859108, -0.018729515373706818, 0.06397554278373718, 0.04071633890271187, -0.007042653858661652, -0.03837514668703079, 0.04639117792248726, 0.08728564530611038, 0.04440625384449959, -0.0025829426012933254, -0.043362900614738464, -0.025065995752811432, 0.06570599228143692, -0.05394914746284485, -0.025664016604423523, -0.0688106119632721, -0.015777580440044403, 0.017508024349808693, -0.022266747429966927, 0.02492603287100792, -0.01362724881619215, 0.08575878292322159, -0.025104166939854622, 0.004084357526153326, -0.0065655093640089035, 0.013131018728017807, -0.013576353900134563, -0.03521963208913803, 0.0125966165214777, -0.003909404389560223, -0.04852878302335739, -0.03939305618405342, 0.024378906935453415, 0.005608039442449808, -0.011381488293409348, 0.01509049255400896, 0.057918988168239594, 0.008334125392138958, 0.006979034747928381, 0.04244678094983101, 0.01642649807035923, 0.0026147523894906044, 0.005503067281097174, -0.026923678815364838, 0.06361927837133408, -0.0235009603202343, -0.011165183037519455, 0.016006609424948692, 0.015484931878745556, 0.022762976586818695, 0.02131245844066143, -0.02271208167076111, -0.008906698785722256, -0.009142089635133743, 0.029672030359506607, -0.0133473239839077, -0.026033008471131325, 0.04341379553079605, 0.02315741591155529, -0.05491615831851959, -0.03206411376595497, -0.023475512862205505, -0.02977382205426693, -0.016744593158364296, 0.00535674300044775, -0.0345834381878376, 0.006139260251075029, -0.02044723555445671, 0.04766356199979782, 0.021185219287872314, -0.0187931340187788, -0.024595212191343307, 0.036899179220199585, -0.0047364551573991776, -0.0515061654150486, -0.023106520995497704, -0.014263441786170006, -0.010611695237457752, 0.05168430134654045, -0.015446760691702366, -0.0462384894490242, 0.018144218251109123, 0.008785822428762913, 0.006040650419890881, 0.0466202050447464, -0.004943217616528273, 0.02954479306936264, 0.014416128396987915, 0.003934852313250303, 0.009638320654630661, -0.011483279056847095, -0.021210666745901108, 0.013220085762441158, 0.03298023343086243, 0.011031582951545715, -0.003546774620190263, -0.009994588792324066, 0.09517443925142288, -0.005674839485436678, -0.010382666252553463, -0.013919897377490997, -0.0016684154979884624, -0.045017000287771225, 0.011286059394478798, 0.010096379555761814, -0.012806560844182968, -0.03259851783514023, 0.012291244231164455, 0.0470019206404686, 0.0013622477417811751, 0.012698407284915447, 0.01528135035187006, 0.001102203968912363, 0.022088613361120224, 0.0088367173448205, 0.0019022163469344378, 0.01531952153891325, 0.013080122880637646, -0.015688514336943626, -0.022114060819149017, -0.008283229544758797, -0.014594262465834618, 0.03371821716427803, -0.06657121330499649, 0.005961126182228327, -0.022012269124388695, 0.01755892112851143, 0.008219610899686813, -0.0030028298497200012, -0.018067874014377594, 0.0278143472969532, 0.007513436488807201, -0.028170615434646606, 0.11349678784608841, 0.019912833347916603, -0.044380806386470795, 0.026134798303246498, -0.010681676678359509, -0.023882675915956497, 0.0060915458016097546, -0.01552310399711132, 0.014314337633550167, -0.019378431141376495, -0.0227502528578043, -0.011788652278482914, 0.030664490535855293, 0.03931671380996704, -0.036517463624477386, 0.0879472866654396, 0.0035785844083875418, 0.0266946479678154, 0.028475988656282425, 0.01950567029416561, -0.04819796234369278, 0.001073575345799327, -0.04303207993507385, -0.006991758476942778, 0.022317642346024513, -0.019569288939237595, 0.008531345054507256, 0.01571396179497242, 0.03641567379236221, 0.04537326842546463, 0.05008109286427498, -0.025244129821658134, 0.022928386926651, 0.04995385557413101, 0.026109350845217705, 0.0005272447597235441, -0.0007888790569268167, -0.05389825254678726, -0.05333840101957321, -0.018398694694042206, 0.0545089952647686, 0.010249065235257149, 0.07110090553760529, 0.00935839582234621, 0.011165183037519455, -0.036822836846113205, 0.025727635249495506, -0.007284407038241625, 0.0001747541973600164, -0.006947224959731102, -0.03173329681158066, -0.03104620799422264, 0.01946749910712242, 0.03483791649341583, 0.0037026419304311275, -0.058173466473817825, -0.030918968841433525, -0.0030569061636924744, -0.009803730994462967, -0.018971268087625504, 0.01255844533443451, -0.01274294126778841, 0.010350855998694897, -0.014174374751746655, 0.03473612666130066, -0.02804337814450264, -0.026058455929160118, -0.018551381304860115, 0.030740834772586823, -0.017800673842430115, 0.0023109703324735165, -0.02939210645854473, -0.0025749902706593275, -0.02334827370941639, -0.017240824177861214, -0.03173329681158066, 0.0061615267768502235, 0.017724329605698586, -0.047612667083740234, 0.03527052700519562, 0.007704294286668301, -0.002786524360999465, 0.015993885695934296, 0.027839794754981995, -0.020701711997389793, 0.024378906935453415, 0.0067181955091655254, 0.05741003528237343, -0.01137512642890215, 0.014517919160425663, -0.0142888892441988, 0.030308224260807037, -0.015154112130403519, 0.020854398608207703, 0.01500142551958561, -0.06158345937728882, -0.026363829150795937, -0.016261087730526924, 0.003871232969686389, -0.049037739634513855, -0.03267486020922661, 0.0025908949319273233, -0.029519343748688698, -0.012927437201142311, 0.015179559588432312, 0.060921818017959595, 0.014899634756147861, -0.01669369824230671, 0.02131245844066143, -0.025244129821658134, 0.028501436114311218, 0.012946522794663906, -0.012787474319338799, 0.01665552705526352, 0.009008489549160004, 0.050284676253795624, 0.000262031884631142, -0.008773098699748516, -0.014505195431411266, -0.01623564027249813, -0.03562679514288902, -0.010598971508443356, 0.006896329578012228, 0.016146572306752205, 0.007437093649059534, 0.035397764295339584, -0.019938280805945396, -0.00169863470364362, -0.005334476474672556, 0.02044723555445671, 0.013614525087177753, 0.0011634374968707561, 0.003896680660545826, 0.024747898802161217, -0.024264391511678696, -0.0073289405554533005, -0.004911408293992281, -0.014785120263695717, -0.02694912627339363, 0.03786619380116463, 0.0311988927423954, -0.011266973800957203, 0.030511805787682533, 0.01940387859940529, 0.01067531481385231, 0.004335653502494097, 0.028475988656282425, -0.015497655607759953, -0.02169417403638363, 0.022126784548163414, 0.05690108239650726, -0.016133848577737808, -0.0053122094832360744, 0.022419434040784836, -0.026363829150795937, -0.005181789863854647, -0.037764403969049454, 0.010796191170811653, 0.012342140078544617, -0.030664490535855293, 0.009091194719076157, 0.03875686228275299, -0.014212546870112419, 0.006291946396231651, 0.013703592121601105, 0.031860534101724625, -0.011585070751607418, 0.007443455513566732, 0.06448449939489365, -0.0287559125572443, 0.020854398608207703, 0.0019690166227519512, -0.015179559588432312, -0.024188049137592316, 0.005407638382166624, 0.033820006996393204, 0.0051404377445578575, 0.01567579060792923, 0.011915890499949455, 0.03285299614071846, -0.015141387470066547, 1.0189024806095404e-06, -0.0545089952647686, 0.014365232549607754, -0.01819511316716671, -0.022152232006192207, -0.004758721683174372, 0.007437093649059534, -0.015370417386293411, -0.0019674261566251516, -0.009065747261047363, 0.012437568977475166, -0.031147997826337814, -0.006979034747928381, 0.012672959826886654, -0.04560229927301407, 0.030740834772586823, -0.015103216283023357, 0.020956190302968025, -0.0040939003229141235, 0.030817177146673203, -0.029901059344410896, -0.019823767244815826, 0.01217672973871231, 0.0278143472969532, -0.009759197011590004, -0.017278995364904404, 0.019709251821041107, 0.03142792358994484, 0.014988701790571213, 0.0030775824561715126, -0.04575498402118683, 0.025345919653773308, 0.0223685372620821, 0.012851093895733356, -0.004370644222944975, -0.0131564661860466, -0.010185446590185165, 0.01857682876288891, 0.03356552869081497, -0.009810092858970165, 0.0017018156358972192, -0.010344494134187698, 0.01969652809202671, 0.002707000123336911, 0.01928936503827572, -0.01061805710196495, 0.019861938431859016, -0.01481056772172451, 0.02796703390777111, 0.019607461988925934, -0.0178515687584877, 0.007118997164070606, -0.005945221520960331, 0.023526407778263092, -0.012545721605420113, -0.023017454892396927, -0.008843079209327698, 0.03962208703160286, 0.013220085762441158, -0.03310747072100639, -0.004265672527253628, 0.046747446060180664, -0.018996715545654297, -0.02157965861260891, 0.023666370660066605, -0.012170367874205112, 0.009313861839473248, 0.016566459089517593, -0.01684638485312462, -0.008124182000756264, -0.004978208336979151, -0.021630553528666496, -0.011343317106366158, -0.0030346394050866365, 0.033361949026584625, 0.009428377263247967, 0.030511805787682533, -0.01815694198012352, 0.03071538731455803, -0.01752074807882309, -0.005709830205887556, 0.025651292875409126, -0.008474087342619896, -0.03641567379236221, -0.011947699822485447, -0.016184743493795395, -0.07756461948156357, -0.003252535592764616, 0.011585070751607418, -0.058275256305933, -0.020854398608207703, -0.047689009457826614, -0.0011101564159616828, 0.0061424411833286285, -0.009485634043812752, 0.07323851436376572, 0.01657918281853199, -0.035346869379282, -0.02040906436741352, -0.03348918631672859, -0.026898229494690895, 0.020650817081332207, 0.029035838320851326, 0.019594736397266388, 0.025345919653773308, -0.0013646334409713745, -0.023691818118095398, 0.002077169483527541, -0.025053272023797035, -0.04720550402998924, 0.030053745955228806, -0.009721025824546814, 0.007163530681282282, 0.049266766756772995, 0.015955714508891106, 0.0015729865990579128, -0.010668952949345112, 0.03544865921139717, -0.01619746722280979, -0.0033527358900755644, 0.026491066440939903, -0.010611695237457752, -0.008238696493208408, 0.04018193483352661, 0.011585070751607418, -0.02544771134853363, -0.025231406092643738, 0.051786091178655624, -0.034710679203271866, -0.019073059782385826, -0.030740834772586823, 0.017724329605698586, -0.021401524543762207, -0.010643504559993744, 0.014467023313045502, 0.009326585568487644, 0.011317869648337364, -0.023844504728913307, 0.010688038542866707, -0.028857704252004623, -0.017724329605698586, 0.017698882147669792, -0.028552331030368805, 0.00688996771350503, 0.021325182169675827, -0.010140912607312202, 0.007564331870526075, 0.03198777139186859, -0.028883151710033417, 0.003941214177757502, -0.0006946430075913668, -0.00547761982306838, -0.03560134768486023, -0.05364377424120903, -0.022203126922249794, 0.005175427999347448, -0.02300473116338253, -0.0002602426102384925, -0.016553735360503197, 0.00651143305003643, -0.012208539061248302, -0.015701238065958023, -0.004147976636886597, -0.023437341675162315, 0.009498357772827148, 0.000531220983248204, -0.0161592960357666, 0.03455799072980881, 0.004297482315450907, -0.016604632139205933, 0.046900130808353424, 0.020765332505106926, -0.01883130520582199, 0.01556127518415451, -0.007456179242581129, 0.018780410289764404, -0.01500142551958561, -0.006540061440318823, -0.028425093740224838, 0.018805857747793198, -0.015154112130403519, -0.026287484914064407, 0.01792791299521923, 0.009415652602910995, -0.0319623239338398, 0.005636667832732201, 0.03135158121585846, 0.0174825768917799, 0.006947224959731102, -0.013181914575397968, -0.00264497147873044, 0.0033272881992161274, 0.02677099220454693, -0.0334637388586998, -0.030206432566046715, -0.023882675915956497, -0.016108401119709015, -0.026872782036662102, 0.006053374148905277, -0.02044723555445671, 0.01594299077987671, 0.015052320435643196, -0.007818808779120445, -0.007583417929708958, -0.004119348246604204, -0.020014625042676926, -0.004669655114412308, 0.06850523501634598, -0.018373247236013412, 0.007074463646858931, 0.013894449919462204, -0.000968603475484997, 0.008130543865263462, -0.026262037456035614, -0.013487286865711212, 0.035397764295339584, 0.016922727227211, 0.05237139016389847, -0.021477866917848587, -0.007138082757592201, 0.003718546824529767, -0.01838597096502781, 0.02804337814450264, -0.02269935794174671, -0.0017368062399327755, 0.0238699521869421, 0.059038687497377396, 0.008117820136249065, -0.019569288939237595, -0.028017928823828697, -0.00911664217710495, 0.011031582951545715, -0.0034131743013858795, -0.006053374148905277, 0.010478095151484013, -0.04443170130252838, 0.015892095863819122, 0.014785120263695717, 0.0067181955091655254, -0.0065464237704873085, -0.011317869648337364, -0.011057030409574509, -0.011413298547267914, 0.019518394023180008, -0.004431082401424646, -0.039596639573574066, -0.024518869817256927, -0.04972482845187187, 0.0073289405554533005, -0.0057511827908456326, -0.0011300373589619994, 0.0059865741059184074, 0.03404903784394264, 0.01913667842745781, 0.03631388396024704, -0.011311507783830166, -0.015484931878745556, 0.05593406781554222, -0.006985396612435579, 0.029010390862822533, -0.0023189226631075144, -0.0189839918166399, 0.03018098510801792, -0.001337595283985138, -0.018882201984524727, 0.003075991990044713, -0.009046660736203194, 0.0021630553528666496, 0.010662591084837914, 0.016477392986416817, -0.007933324202895164, -0.006450994871556759, -0.025180509313941002, -0.044635284692049026, 0.03544865921139717, 0.029443001374602318, 0.016528287902474403, 0.010834363289177418, -0.007290768902748823, -0.026643753051757812, 0.01913667842745781, -0.03980021923780441, 0.01657918281853199, -0.017571644857525826, -0.009129365906119347, 0.013220085762441158, 0.027229050174355507, 0.002757895737886429, -0.008264143951237202, -0.02119794301688671, 0.014327061362564564, -0.022572118788957596, 0.0053122094832360744, -0.0008079648250713944, -0.03845148906111717, -0.007786999456584454, 0.06865792721509933, 0.040767233818769455, -0.003871232969686389, 0.010891620069742203, -0.011260611936450005, 0.018551381304860115, 0.014797843992710114, 0.00779972318559885, 0.008855802938342094, 0.03371821716427803, -0.03537231683731079, -0.0004906636895611882, -0.008944869972765446, 0.013996240682899952, 0.005977030843496323, -0.004765084013342857, -0.020688988268375397, -0.023335549980401993, 0.0017892922041937709, 0.01638832502067089, -0.005035465583205223, 0.001203199615702033, 0.03781529888510704, -0.0022934749722480774, 0.0029248963110148907, 0.011909528635442257, -0.0034036312717944384, -0.019480222836136818, 0.010948877781629562, 0.03361642733216286, 0.005471257958561182, -0.03425261750817299, 0.029799269512295723, 0.004380187019705772, -0.03710276260972023, -0.0007594551425427198, -0.0007137287757359445, 0.017418958246707916, 0.010064569301903248, 0.027229050174355507, -0.0131564661860466, 0.015344969928264618, -0.018131494522094727, 0.02533319592475891, 0.02052357792854309, -0.008016028441488743, -0.057308245450258255, 0.008219610899686813, 0.018449589610099792, -0.0095874248072505, 0.007742465939372778, 0.04326110705733299, 0.02296655811369419, 0.017724329605698586, -0.025854874402284622, 0.010090017691254616, -0.005162704270333052, 0.0171008612960577, 0.00273880991153419, 0.0013558858772739768, -0.019594736397266388, -0.02446797303855419, -0.013220085762441158, 0.014543366618454456, 0.052116911858320236, -0.0005013994523324072, -0.0008851031889207661, -0.011037944816052914, -0.0028278769459575415, -0.0036262988578528166, 0.0020040071103721857, -0.003845785278826952, 0.008766735903918743, 0.009555615484714508, 0.020968914031982422, -3.253032627981156e-05, 0.008766735903918743, 0.020307272672653198, 0.008804908022284508, 0.016553735360503197, 0.03715365752577782, -0.011680499650537968, 0.04270125925540924, -0.004313386976718903, -0.0023268749937415123, -0.021299734711647034, 0.016757316887378693, 0.007729742210358381, 0.0010560799855738878, 0.015026872977614403, -0.03298023343086243, -0.016973622143268585, -0.017355339601635933, -0.010764381848275661, -0.005938859656453133, -0.004965484607964754, -0.0059229545295238495, -0.014581537805497646, 0.05781719833612442, -0.016261087730526924, -0.026033008471131325, -0.023780886083841324, 0.031300682574510574, -0.050920870155096054, 0.04504244774580002, 0.03435441106557846, 0.006552785634994507, 0.0439736433327198, -0.023526407778263092, 0.0014401813969016075, 0.028017928823828697, -0.00320959254167974, 0.04056365042924881, 0.01856410503387451, 0.04130163416266441, 0.03364187479019165, 0.024913309141993523, 0.03303112834692001, 0.02748352847993374, 0.012106748297810555, -0.008804908022284508, 0.016604632139205933, -0.018016979098320007, -0.018106047064065933, 0.04458438977599144, 0.012233986519277096, -0.00441835867241025, -0.003823518520221114, -0.002778572030365467, -0.01815694198012352, -0.0302573274821043, -0.0004846993542741984, -0.017609816044569016, -0.02109615132212639, 0.0034545266535133123, 0.011012496426701546, 0.013245533220469952, 0.005363104864954948, 0.031097102910280228, -0.024671556428074837, 0.016248364001512527, -5.333084845915437e-05, 0.0027308573480695486, -0.004084357526153326, -0.004316567908972502, -0.015573998913168907, 0.023437341675162315, 0.01886947825551033, -0.022343089804053307, 0.01871679164469242, -0.003734451485797763, 0.03394724428653717, 0.017533471807837486, 0.0155994463711977, 0.003311383305117488, -0.015917543321847916, 0.009065747261047363, 0.02346278913319111, -0.024366183206439018, 0.021897755563259125, -0.014606986194849014, -0.0009876892436295748, 0.04114894941449165, -0.015764856711030006, 0.009065747261047363, -0.012901989743113518, -0.016006609424948692, -0.04262491688132286, -0.016999071463942528, 0.011534174904227257, 0.0334637388586998, -0.04771445691585541, 0.02398446761071682, 0.016922727227211, 0.01958201266825199, -0.0014918720116838813, -0.007697932422161102, -0.009860987775027752, 0.027432631701231003, -0.030613595619797707, -0.0178515687584877, 0.03577947989106178, 0.028170615434646606, -0.019632909446954727, 0.010166360065340996, 0.010249065235257149, 0.032013218849897385, 0.04153066501021385, 0.015077768824994564, -0.023513684049248695, -0.019200297072529793, 0.015192283317446709, 0.03277665004134178, 0.012157644145190716, -0.04010559245944023, 0.019492946565151215, -0.024595212191343307, 0.022724805399775505, -0.005678020417690277, -0.015777580440044403, -0.008951231837272644, 0.015739409253001213, 0.0248115174472332, 0.018691344186663628, -0.015777580440044403, 0.03259851783514023, -0.0059547643177211285, 0.031478818506002426, 0.014606986194849014, -0.0002862867549993098, -0.011235164478421211, -0.023971743881702423, -0.0026211142539978027, -0.011572346091270447, -0.007233511656522751, 0.0063269371166825294, 0.02323376014828682, -0.03216590732336044, 0.02694912627339363, 0.011960424482822418, -0.01099341083317995, -0.036593809723854065, -0.03483791649341583, -0.022584842517971992, 0.02229219488799572, -0.03203866630792618, -0.021974097937345505, 0.004488340113312006, -0.012991056777536869, -0.0006063712062314153, 0.0033082023728638887, -0.016566459089517593, -0.013881726190447807, 0.0023300559259951115, -0.020994361490011215, 0.007220787927508354, -0.016222914680838585, -0.017431681975722313, 0.06819986552000046, -0.006336479913443327, -0.005929316394031048, 0.0345834381878376, 0.015688514336943626, 0.05420362204313278, 0.0038076136261224747, 0.01677004061639309, 0.033361949026584625, 0.04827430844306946, 0.018933096900582314, 0.026185695081949234, -0.004758721683174372, 0.007246235851198435, -0.009542891755700111, -0.02390812337398529, 0.006209241226315498, -0.03404903784394264, -0.0066673001274466515, -0.00738619826734066, 0.008556792512536049, -0.06372106820344925, 0.013258256949484348, 0.025129614397883415, -0.002436618320643902, -0.029035838320851326, -0.01330915279686451, 0.005608039442449808, 0.0029439821373671293, 0.03931671380996704, -0.013321876525878906, 0.03812067210674286, 0.013258256949484348, 0.023895399644970894, 0.04756177216768265, -0.00911664217710495, -0.02281387336552143, 0.003499060170724988, 0.030308224260807037, 0.008690393529832363, -0.023221036419272423, -0.015548551455140114, 0.0034290789626538754, 0.008531345054507256, -0.008480449207127094, 0.0071762544102966785, -0.015701238065958023, -0.033514633774757385, 0.03801887854933739, -0.05618854612112045, 0.003747175447642803, -0.04183603823184967, 0.0021232934668660164, -0.003252535592764616, 0.008804908022284508, 0.004389730282127857, 0.026287484914064407, 0.050997212529182434, -0.003718546824529767, 0.008684031665325165, 0.01763526350259781, -0.03827335685491562, -0.040919918566942215, -0.009402928873896599, -0.011406936682760715, -0.0225593950599432, -0.04427901655435562, -0.024302564561367035, -0.022546671330928802, -0.011451469734311104, -0.0008994175004772842, 0.023322826251387596, 0.0004576611681841314, -0.030053745955228806, -0.0189839918166399, 0.014225270599126816, -0.010548075661063194, 0.024048086255788803, -0.03313291817903519, 0.0019197117071598768, -0.0022489414550364017, -0.027585318312048912, -0.01932753622531891, 0.055323321372270584, 0.028857704252004623, 0.020879846066236496, -0.005620763171464205, 0.024607935920357704, 0.01773705519735813, 0.024569764733314514, 0.033438291400671005, -0.006460537668317556, -0.015968438237905502, -0.020930742844939232, -0.009740111418068409, 0.04198872298002243, 0.004933674819767475, -0.007615227252244949, -0.00026739976601675153, 0.006266498938202858, 0.012520273216068745, 0.00482234125956893, -0.0028469625394791365, 0.01029996108263731, 0.020892569795250893, 0.03152971342206001, -0.007055377587676048, 0.024302564561367035, 0.013232809491455555, -0.02109615132212639, -0.02616024576127529, -0.0066482145339250565, 0.017660710960626602, 0.0073607503436505795, 0.024786069989204407, -0.008690393529832363, -0.009040298871695995, 0.016324706375598907, 0.02733084186911583, -0.015484931878745556, 0.04845244064927101, 0.005267675966024399, 0.03173329681158066, -0.012348501943051815, 0.0204854067414999, 0.036212094128131866, -0.0319623239338398, -0.022953834384679794, 0.030995311215519905, 0.011540536768734455, -0.00013837192091159523, 0.023806333541870117, -0.016910003498196602, 0.0255622249096632, 0.009784644469618797, -0.004434263799339533, -0.0005431495956145227, -0.01551037933677435, 0.015573998913168907, 2.358386518608313e-05, 0.0019547021947801113, 0.014683329500257969, -0.015192283317446709, -0.006864519789814949, -0.022343089804053307, 0.0075197983533144, -0.017609816044569016, -0.004014376550912857, 0.019874662160873413, 0.025880321860313416, -0.04784169793128967, -0.011235164478421211, 0.012628426775336266, -0.013398219831287861, -0.02101980894804001, -0.013436391018331051, 0.007837895303964615, 0.004217958077788353, -0.005309028550982475, -0.008378658443689346, -0.0025972570292651653, 0.01005820743739605, 0.004122529178857803, -0.0009439510176889598, 0.020612645894289017, 0.0005908640450797975, 0.021821411326527596, 0.010929792188107967, -0.042497675865888596, 0.013767211697995663, -0.0018560923635959625, 0.0042593106627464294, 0.04262491688132286, 0.03305657580494881, 0.0009717844659462571, -0.019798319786787033, 0.013131018728017807, 0.029366659000515938, -0.044940657913684845, 0.003502241102978587, 0.003524507861584425, 0.006991758476942778, -0.04354103282094002, 0.0029376200400292873, 0.006858157925307751, -0.0455005057156086, -0.0007876861491240561, -0.0013940574135631323, 0.004090719390660524, 0.0105289900675416, -0.023526407778263092, -0.0026481524109840393, -0.0027817529626190662, -0.019938280805945396, -0.037840746343135834, -0.03071538731455803, -0.005366285797208548, 0.012011319398880005, 0.028017928823828697, -0.01105066854506731, 0.013258256949484348, -0.03733179345726967, -0.026134798303246498, 0.002854915102943778, 0.027279945090413094, -0.014836015179753304, -0.002670419169589877, 0.04244678094983101, 0.016642803326249123, 0.009332948364317417, 0.0036899179685860872, 0.01925119385123253, -0.021935926750302315, 0.007589779794216156, 0.009180261753499508, -0.05209146440029144, -0.014975978061556816, 0.03191142901778221, -0.006972672883421183, -0.03969842940568924, -0.030104640871286392, 0.007647037040442228, 0.003042591968551278, -0.03735724091529846, -0.0003244583203922957, 0.022495776414871216, -0.003712184727191925, 0.00785698089748621, -0.002414351562038064, -0.03376911208033562, -0.01928936503827572, -0.044304464012384415, -0.018742239102721214, -0.009504719637334347, 0.016299258917570114, -0.036364778876304626, -0.02890859916806221, 0.004459711257368326, -0.000272966455668211, -0.000460842129541561, -0.06346659362316132, 0.035728584975004196, -0.022902939468622208, -0.03600851073861122, 0.03664470463991165, -0.009746473282575607, -0.005630305968225002, 0.02390812337398529, 0.01152145117521286, -0.028628675267100334, 0.029901059344410896, 0.032267697155475616, 0.02740718424320221, 0.01773705519735813, -0.002102617174386978, -0.004551959224045277, -0.017317166551947594, 0.0005773449083790183, -0.017622539773583412, -0.02115977182984352, -0.007958771660923958, 0.021643277257680893, 0.024595212191343307, -0.013270980678498745, -0.016515564173460007, 0.034456200897693634, -0.017571644857525826, -0.030435461550951004, 0.006085183937102556, -0.011845909059047699, -0.024875137954950333, -0.03679738938808441, -0.002931258175522089, -0.012997418642044067, -0.027534423395991325, 0.030155537649989128, -0.0015045958571135998, 0.00926932878792286, -0.009803730994462967, 0.014008964411914349, 0.004711007233709097, -0.009950054809451103, 0.018513210117816925, -0.033667322248220444, 0.003896680660545826, -0.0099627785384655, 0.01965835690498352, 0.03702642023563385, 0.023475512862205505, -0.031326133757829666, 0.017037242650985718, 0.008855802938342094, 0.02082895115017891, 0.007774275727570057, 0.012889265082776546, 0.03247128054499626, -0.025816703215241432, -0.004733274225145578, 0.0035531367175281048, -0.022826597094535828, 0.015230454504489899, 0.019391154870390892, -0.02138880081474781, 0.006352384574711323, -0.014237994328141212, -0.0035785844083875418, 0.03969842940568924, 0.009498357772827148, 0.028628675267100334, 0.015446760691702366, -0.004911408293992281, -0.0003990121476817876, -0.014212546870112419, 0.007920599542558193, -0.005423543509095907, 0.049190424382686615, -0.015446760691702366, -0.01531952153891325, 0.009072109125554562, 0.04860512912273407, 0.0006258546491153538, 0.012641150504350662, -0.02492603287100792, 0.0167318694293499, 0.0197346992790699, 0.02529502473771572, 0.006132898386567831, 0.007704294286668301, -0.049495797604322433, -0.005016379989683628, 0.01850048638880253, -0.01962018571794033, -0.0187931340187788, -0.019938280805945396, -0.03590672090649605, -0.0073607503436505795, 0.0020040071103721857, -0.004927312955260277, -0.0052104187197983265, -0.02604573220014572, 0.04102170839905739, -0.007577056065201759, -0.012081300839781761, 0.007163530681282282, 0.013334600254893303, 0.03631388396024704, 0.027432631701231003, -0.03326015919446945, 0.0011515088845044374, 0.025282301008701324, -0.0013582715764641762, 0.011680499650537968, -0.036670152097940445, -0.003715365659445524, 0.04318476468324661, 0.002808791119605303, -0.019200297072529793, -0.03865507245063782, -0.009740111418068409, -0.03387090191245079, 0.014505195431411266, 0.02439163066446781, 0.0024350278545171022, -0.008334125392138958, 0.038782309740781784, -0.03972387686371803, 0.008639497682452202, 0.03613574802875519, 0.017647987231612206, 0.0014465432614088058, 0.010115465149283409, -0.004310206044465303, -0.026287484914064407, -0.03519418463110924, 0.008213249035179615, 0.046442072838544846, -0.008773098699748516, -0.0003383750154171139, -0.0140980314463377, -0.009479272179305553, -0.028017928823828697, -0.040461860597133636, -0.003610393963754177, -0.01696089841425419, -0.00879854615777731, 0.006902691442519426, 0.03224224969744682, 0.05461078882217407, 0.008779460564255714], [-0.014998056925833225, -0.020576879382133484, 0.036040786653757095, -0.03095053695142269, 0.005448157899081707, -0.003934149630367756, -0.0441533699631691, 0.03481367230415344, 0.06567331403493881, 0.02572394162416458, -0.007970558479428291, -0.035745371133089066, -0.007266104221343994, 0.026542017236351967, 0.002974046627059579, 0.0096237538382411, 0.008896575309336185, -0.0031075519509613514, -0.02215622179210186, 0.01888391748070717, 0.060719408094882965, 0.023144729435443878, -0.02205396071076393, -0.017690889537334442, 0.006840023212134838, -0.04813012853264809, -0.004649966023862362, -0.023633303120732307, -0.00755015853792429, -0.018452154472470284, 0.04265356436371803, -0.019213421270251274, 0.06699132174253464, -0.02999611385166645, 0.025701217353343964, 0.022303929552435875, 0.022224394604563713, 0.022599345073103905, 0.06885471940040588, -0.02756461128592491, -0.07208157330751419, -0.005391347222030163, -0.0008216265123337507, -0.05194781720638275, 0.012930143624544144, 0.02797365002334118, 0.07635374367237091, 0.004292057827115059, -0.016384242102503777, 0.03067784383893013, -0.023451507091522217, -0.029064416885375977, 0.02776912972331047, 0.01485034916549921, 0.004720979370176792, 0.02254253439605236, -0.009163585491478443, 0.031291402876377106, 0.07085445523262024, 0.0016148476861417294, 0.004681211896240711, 0.006004903931170702, -0.005439636297523975, 0.07703547924757004, -0.021042728796601295, 0.0449259988963604, -0.026292048394680023, 0.03163226693868637, -0.044948723167181015, 0.07076355814933777, -0.00539418775588274, -0.014873073436319828, 0.01461174339056015, -0.046993911266326904, -0.0015594570431858301, 0.03306389972567558, 0.036631617695093155, -0.007328595966100693, 0.029677974060177803, 0.010828142985701561, 0.03524543344974518, 0.05890146270394325, -0.06017402559518814, 0.02379237301647663, 0.01495260838419199, -0.03213220089673996, -0.06281004846096039, -0.009339699521660805, -0.00812394730746746, -0.002675789874047041, -0.007953515276312828, -0.0330866239964962, -0.02215622179210186, 0.014577656984329224, -0.004252289887517691, 0.025178557261824608, -0.010265715420246124, -0.03251851350069046, -0.05276589095592499, 0.04547138139605522, 0.030632395297288895, -0.005260682199150324, -0.0005865717539563775, 0.02756461128592491, 0.04972083121538162, 0.0002634601842146367, -0.055220119655132294, -0.00597649859264493, 0.07089990377426147, 0.002863265573978424, -0.036722514778375626, 0.008038731291890144, 0.0111690079793334, 0.0607648566365242, 0.014043635688722134, 0.025042211636900902, -0.0077603585086762905, 0.01847488060593605, 0.03076874278485775, -0.013691408559679985, -0.02351967990398407, -0.004360230639576912, 0.037495143711566925, -0.019690630957484245, -0.029109865427017212, -0.007300190627574921, -0.021031366661190987, 0.008294380269944668, 0.016702381893992424, -0.039154019206762314, 0.07208157330751419, -0.03515453636646271, 0.040017545223236084, 0.0036699792835861444, -0.032745759934186935, 0.02284931391477585, -0.0427444651722908, -0.014623105525970459, -0.0007030339329503477, -0.05253864824771881, 5.703273927792907e-05, -0.00895338598638773, 0.0937151312828064, 0.022372102364897728, 0.024724069982767105, -0.01721367985010147, 0.0029229167848825455, 0.01485034916549921, -0.002069334266707301, 0.031995855271816254, 0.007101352792233229, -0.01665693335235119, -0.004130146931856871, -0.011214456520974636, -0.05299313738942146, -0.03267758712172508, 0.015043506398797035, -0.028769001364707947, -0.026155702769756317, 0.025133108720183372, -0.01474808994680643, -0.02167901024222374, -0.03185950964689255, 0.012782434932887554, 0.0319276824593544, -0.05440204590559006, -0.01615699753165245, -0.05167512595653534, -0.09221532940864563, 0.010163456201553345, -0.03542722761631012, 0.017122782766819, -0.004570430610328913, -0.0205996036529541, -0.018122652545571327, -0.0654006227850914, -0.004036408849060535, 0.009339699521660805, -0.012884695082902908, -0.014543570578098297, -0.00320413033477962, 0.012589278630912304, -0.01869076117873192, 0.0013520976062864065, -0.012566554360091686, 0.03288210555911064, 0.005487925373017788, 0.0018974815029650927, 0.019315680488944054, -0.04247177019715309, -0.06390081346035004, 0.004769268445670605, -0.002205680124461651, 0.030450601130723953, -0.01721367985010147, 0.02147449180483818, -0.0015622976934537292, -0.009510131552815437, 0.0053260144777596, 0.03531360626220703, -0.009652159176766872, -0.025087660178542137, 0.04374433308839798, 0.007510391063988209, 0.0015608774265274405, 0.007504709530621767, 0.012362034991383553, 0.01856577768921852, 0.026542017236351967, 0.026951054111123085, 0.007516072131693363, 0.07317233830690384, -0.0009856678079813719, 0.01011800765991211, -0.04151735082268715, 0.002123304409906268, 0.013520975597202778, -0.023678751662373543, 0.03490456938743591, 0.059674087911844254, -0.031405024230480194, -0.02426958456635475, 0.030427876859903336, 0.01040774304419756, 0.006220784969627857, -0.00794215314090252, -0.012566554360091686, -0.027132848277688026, -0.04849371686577797, -0.043289847671985626, -0.003962554968893528, 0.006896833889186382, -0.0654006227850914, -0.017759064212441444, -0.00918630976229906, 0.021519940346479416, -0.05158422887325287, -0.07821714133024216, -0.008129628375172615, -0.030746016651391983, -0.03833594173192978, -0.03076874278485775, -0.02004285901784897, -0.01711142063140869, 0.01349825132638216, -0.029178038239479065, 0.004854484926909208, -0.03174588829278946, 0.01984970085322857, -0.01770225167274475, 0.0961693599820137, -0.026292048394680023, 0.0006231437437236309, -0.05862876772880554, 0.007817169651389122, 0.02215622179210186, 0.05217505991458893, -0.0014657191932201385, 0.06058306246995926, -0.04249449446797371, -0.009890764020383358, -0.006482115015387535, 0.026564741507172585, 0.01510031707584858, -0.012305224314332008, -0.05049346014857292, -0.008095541968941689, 0.027132848277688026, -0.009822591207921505, 0.03279120847582817, -0.015509354881942272, 0.00029843434458598495, -0.024405930191278458, -0.028087271377444267, 0.012316586449742317, 0.0009615232120268047, 0.05194781720638275, -0.015066230669617653, 0.014975332655012608, 0.04297170788049698, -0.0431307777762413, -0.010623623616993427, 0.004263652488589287, -0.03195040673017502, -0.013111937791109085, -0.0029342789202928543, 0.026587465777993202, 0.0017980625852942467, 0.0057861823588609695, 0.011134921573102474, 0.033518385142087936, -0.031041434034705162, 0.028428135439753532, -0.044744204729795456, 0.06612779945135117, -0.006862747482955456, 0.041858214884996414, -0.035540852695703506, 0.011515554040670395, 0.01723640412092209, 0.0396539531648159, -0.02833723835647106, 0.005368622951209545, -0.05312948301434517, 0.02467862144112587, 0.034313738346099854, 0.04633490741252899, 0.015713874250650406, -0.01103266142308712, -0.04226725175976753, 0.005593025591224432, 0.07539932429790497, -0.022303929552435875, -0.03551812842488289, -0.021610837429761887, 0.005107292905449867, -0.04226725175976753, -0.023951442912220955, 0.0012803738936781883, -0.007567201741039753, 0.019588371738791466, -0.012896057218313217, 0.031973131000995636, 0.0034398953430354595, 0.036836136132478714, 0.001959973480552435, -0.030814191326498985, 0.0007598447846248746, -0.05112973973155022, -0.03020063415169716, -0.020838210359215736, -0.027541887015104294, -0.016486501321196556, -0.01838398166000843, -0.015145765617489815, 0.0057322122156620026, -0.006271915044635534, 0.015918392688035965, -0.01363459788262844, 0.008260293863713741, 0.04308532923460007, -0.04056292772293091, -0.07194522768259048, 0.03901767358183861, 0.0007896704482845962, 0.0003270173037890345, 0.024315033107995987, -0.009896445088088512, 0.01817946322262287, 0.0790352150797844, -0.04190366342663765, -0.008959067054092884, -0.011379207484424114, -0.05785614252090454, -0.04944813996553421, -0.03174588829278946, 0.06212831661105156, -0.043017156422138214, -0.01888391748070717, 0.03815414756536484, -0.004442606586962938, -0.01772497594356537, -0.004084698390215635, 0.009441958740353584, -0.02679198421537876, -0.00852162390947342, -0.0006795994704589248, -0.02234937809407711, -0.01644105277955532, -0.028950795531272888, 0.0365634448826313, 0.020929107442498207, 0.03301845118403435, 0.0018023233860731125, 0.04008571803569794, -0.01005551591515541, 0.0009863779414445162, 0.033336590975522995, -0.04538048431277275, 0.03297300264239311, -0.001808004453778267, 0.010237310081720352, 0.008016007021069527, 0.01605473831295967, 0.011163326911628246, 0.044085197150707245, -0.02649656869471073, -0.027678232640028, -0.008311423473060131, 0.011907548643648624, 0.017440922558307648, 0.0034995467867702246, -0.013861840590834618, -0.03067784383893013, 0.028814449906349182, -0.01759999245405197, 0.061401136219501495, 0.053084034472703934, 0.0012171718990430236, -0.02139495685696602, 0.018895279616117477, -0.023951442912220955, 0.006624142173677683, -0.026723811402916908, -0.0014671394601464272, -0.02572394162416458, 0.050448011606931686, -0.0071752071380615234, 0.029087141156196594, 0.009703288786113262, 0.020076945424079895, 0.02012239396572113, 0.027791853994131088, 0.02972342260181904, 0.004931179340928793, 0.0032069708686321974, 0.01093040220439434, 0.007283147424459457, 0.016327431425452232, -0.008811358362436295, 0.04256266728043556, -0.017861323431134224, 0.02331516146659851, 0.006090120412409306, 0.01306648924946785, 0.0010701739229261875, -0.0004811166727449745, 0.026292048394680023, -0.01964518241584301, -0.07848983258008957, -0.018247636035084724, 0.01983833871781826, 0.004564749542623758, 0.03181406110525131, -0.017645440995693207, 0.0028547439724206924, 0.006544606760144234, -0.04419882223010063, -0.018065841868519783, -0.04104013741016388, 0.02699650265276432, 0.00035364736686460674, 0.039722125977277756, 0.0020494505297392607, -0.013134662061929703, -0.012032532133162022, -0.007976239547133446, 0.014464035630226135, 0.001171013107523322, -0.007413812447339296, -0.009112455882132053, 0.047766540199518204, -0.01934976689517498, -0.00866365060210228, -0.014020911417901516, -0.034972742199897766, 0.001839250442571938, -0.02399689145386219, 0.018633950501680374, -0.0008471913752146065, 0.007107033859938383, 0.04247177019715309, 0.04085834324359894, 0.0019713356159627438, 0.040199339389801025, 0.030155185610055923, 0.04190366342663765, -0.06558241695165634, 0.030791467055678368, -0.01886119320988655, -0.0456986278295517, 0.011362164281308651, 0.026632914319634438, 0.011918910779058933, 0.04713026061654091, 0.013339181430637836, 0.027314644306898117, -0.050947945564985275, 0.018145376816391945, 0.009975980967283249, 0.03524543344974518, 0.03867680951952934, -0.03544995188713074, -0.03374562785029411, 0.001665977411903441, 0.03938126191496849, 0.06653683632612228, -0.042449045926332474, -0.05740165710449219, -0.03254123777151108, -0.021622199565172195, -0.042903535068035126, 0.011117878369987011, -0.009021558798849583, -0.03279120847582817, -0.025473972782492638, -0.05349307134747505, -0.0006387666799128056, 0.019997410476207733, -0.056174542754888535, 0.01035661343485117, 0.002190057188272476, -0.009748737327754498, -0.004309101030230522, 0.028791725635528564, 0.014782176353037357, 0.02515583299100399, -0.035858992487192154, -0.011112197302281857, -0.023837821558117867, -0.04258539155125618, 0.008300061337649822, -0.01991787552833557, -0.0144185870885849, 0.017122782766819, -0.010691797360777855, -0.05217505991458893, 0.014020911417901516, -0.015793409198522568, -0.0002242252230644226, -0.00447101192548871, 0.017588630318641663, 0.014873073436319828, -0.0029996114317327738, -0.0006618460756726563, 0.015941116958856583, 0.02411051280796528, -0.04142645373940468, -0.012373397126793861, -0.03715427964925766, -0.001502646249718964, -0.035563576966524124, -0.04228997603058815, 0.01340735424309969, 0.0026502248365432024, -0.00019510967831593007, 0.02253117226064205, -0.008396639488637447, 0.01026003435254097, -0.05453839153051376, 0.0008273076382465661, 0.00046833421220071614, 0.0026615869719535112, 0.021747183054685593, -0.0023022585082799196, 0.02622387558221817, -0.015452544204890728, -0.00252666138112545, 0.0009153643622994423, -0.03917674347758293, 0.023474231362342834, -0.009157904423773289, 0.022417550906538963, -0.025678491219878197, -0.017736339941620827, 0.004723819904029369, -0.003644414246082306, -0.005499287508428097, -0.016611484810709953, 0.023474231362342834, -0.007220655679702759, 0.0058571957051754, -0.0074024503119289875, 0.006419622804969549, -0.00013643474085256457, 0.013282370753586292, -0.0159638412296772, 0.0005503548309206963, -0.014827624894678593, -0.03456370532512665, -0.01927023194730282, -0.0012256935006007552, 0.01811129041016102, 0.016020651906728745, -0.0005645575583912432, -0.0024144600611180067, 0.01635015569627285, -0.00953853689134121, -0.0018250476568937302, 0.005664038937538862, 0.02592846006155014, -0.00894202385097742, -0.01185073796659708, -0.008339828811585903, -0.009277207776904106, -0.014770814217627048, -0.012952867895364761, -0.02274705283343792, -0.019804252311587334, 0.01965654455125332, -0.016804641112685204, -0.0031302764546126127, -0.014770814217627048, 0.026882881298661232, -0.02476951852440834, -0.008317104540765285, 0.061310239136219025, 0.032268546521663666, -0.02053143084049225, 0.01316874846816063, 0.029087141156196594, -0.0303824283182621, -0.03483639657497406, 0.004186957608908415, -0.06362812221050262, -0.02420140989124775, 0.01474808994680643, -0.006016266066581011, 0.008890894241631031, -0.016770554706454277, 0.018156738951802254, 0.030450601130723953, 0.008748866617679596, -0.06703677028417587, -0.04676666855812073, -0.022497085854411125, -0.02120179869234562, -0.03544995188713074, 0.004496576730161905, -0.026178427040576935, -0.023860545828938484, -0.026542017236351967, 0.014145894907414913, 0.022724328562617302, 0.02583756297826767, -0.016304707154631615, -0.004865847062319517, -0.0404265820980072, 0.008618202060461044, -0.02979159541428089, 0.023542406037449837, 0.028950795531272888, 0.05372031405568123, -0.011248542927205563, -0.0218835286796093, -0.003692703554406762, 0.005061844363808632, 0.009459001943469048, -0.016429690644145012, 0.011725753545761108, 0.028973519802093506, 0.0009061326272785664, 0.025860287249088287, -0.05122063681483269, -0.0009608130203559995, -0.0010815360583364964, 0.019611096009612083, -0.02681470848619938, 0.009833953343331814, 0.002976887160912156, 0.04731205478310585, 0.00894202385097742, -0.02040644735097885, -0.010248672217130661, 0.02865538001060486, 0.029927941039204597, 0.0569017194211483, 0.05372031405568123, 0.0032836655154824257, -0.0017142666038125753, -0.016611484810709953, 0.015827495604753494, 0.024996763095259666, 0.013566424138844013, 0.01819082535803318, -0.007964877411723137, 0.06471888720989227, 0.04324439913034439, -0.011634856462478638, -0.027632784098386765, 0.034677326679229736, 0.019906513392925262, 0.005419752560555935, -0.029927941039204597, -0.023587854579091072, -0.004681211896240711, -0.022235756739974022, 0.005672560539096594, -0.022712966427206993, 0.009015877731144428, -0.024746794253587723, 0.0033092305529862642, -0.0035364737268537283, 0.012134792283177376, 0.0026999344117939472, -0.0180885661393404, -0.008913618512451649, -0.009453320875763893, 0.024405930191278458, -0.0021346667781472206, -0.005306130740791559, 0.018168101087212563, 0.020474620163440704, -0.026655638590455055, 0.016759192571043968, 0.006118525750935078, -0.006834342144429684, -0.010828142985701561, -0.0062605529092252254, -0.00251671951264143, -0.009754418395459652, 0.016566036269068718, 0.0019045828375965357, -0.013861840590834618, -0.0021417681127786636, 0.013964100740849972, -0.021906252950429916, 0.0005123626324348152, 0.021985787898302078, -0.002059392398223281, -0.019395215436816216, -0.03242761641740799, -0.010742926970124245, -0.0064877960830926895, -0.008555710315704346, 0.0576743483543396, 0.0029257573187351227, -0.008158034645020962, 0.00832278560847044, -0.018940728157758713, -0.008618202060461044, 0.041562799364328384, -0.002945641288533807, 0.014134532772004604, -0.021235885098576546, -0.008680693805217743, -0.01936112903058529, 0.030268806964159012, -0.028200892731547356, -0.010606580413877964, 0.044357892125844955, -0.005510649643838406, 0.006448028609156609, 0.035563576966524124, -0.045607730746269226, -0.027791853994131088, -0.013827754184603691, 0.009316975250840187, -0.020963193848729134, -0.00488289026543498, 0.05453839153051376, -0.01934976689517498, 0.04740295186638832, -0.03326841816306114, 0.008118266239762306, -0.0029825682286173105, -0.03204130381345749, -0.0202132910490036, -0.01170302927494049, 0.00423240615054965, 0.010606580413877964, 0.006879790686070919, 0.016509225592017174, 0.002685731742531061, 0.03515453636646271, -0.032473064959049225, 0.014089084230363369, 0.015134403482079506, 0.021338144317269325, 0.0009253062889911234, -0.002701354678720236, 0.017827237024903297, 0.0047948332503438, -0.021644923835992813, 0.015691149979829788, 0.0128733329474926, 0.0015495151747018099, -0.05817428231239319, -0.016713744029402733, -0.03213220089673996, -0.016997797414660454, 0.02835996262729168, -0.019781528040766716, -0.03201857954263687, 0.004431243985891342, -0.022781139239668846, -0.015145765617489815, -0.01417998131364584, 0.004817557986825705, 0.0044994172640144825, 0.02108817733824253, -0.03588171675801277, -0.003874498186632991, 0.0013364746700972319, -0.004539184737950563, 0.0069763693027198315, 0.024042339995503426, 0.004172754939645529, 0.01566842570900917, -0.010413424111902714, -0.005953774321824312, -0.03751786798238754, -0.0006742734694853425, -0.011595088988542557, -0.028700828552246094, 0.009356742724776268, -0.009424915537238121, -0.0180885661393404, -0.007663779892027378, 0.010220266878604889, -0.005834471434354782, 0.02583756297826767, 0.004439766053110361, 0.0654006227850914, 0.025973908603191376, 0.04133555665612221, -0.04626673460006714, 0.007629693485796452, -0.020167842507362366, -0.010913359001278877, -0.0010822461917996407, 0.019190696999430656, 0.030518773943185806, 0.005266363266855478, 0.009067007340490818, 0.008885213173925877, -0.012100704945623875, -0.007374044973403215, -0.004681211896240711, -0.030109737068414688, 0.006419622804969549, 0.0029513223562389612, 0.024360481649637222, -0.028405411168932915, 0.01878165826201439, -0.02447410300374031, -0.04565317928791046, 0.009708969853818417, -0.04333529621362686, -0.007902385666966438, -0.038290493190288544, 0.016191083937883377, 0.04210818186402321, -0.0009721752139739692, 0.004411360248923302, 0.028178168460726738, 0.027064675465226173, -0.004797674249857664, 0.03201857954263687, -0.009453320875763893, 0.060628511011600494, -0.03806325048208237, -0.012521105818450451, -0.01428224053233862, 0.010572494007647038, 0.0159638412296772, -0.026678362861275673, 0.0027453829534351826, -0.025405799970030785, 0.031109606847167015, -0.010186180472373962, -0.03145047277212143, 0.005527693312615156, 0.005723690614104271, 0.013850478455424309, 0.017963582649827003, -0.007595607079565525, -0.02901896834373474, -0.02572394162416458, -0.03115505538880825, -0.04826647415757179, 0.006430985406041145, 0.0005116524989716709, 0.007061585318297148, 0.030791467055678368, -0.010828142985701561, 0.011600770056247711, 0.06880927085876465, -0.005811747163534164, -0.031495921313762665, 0.03076874278485775, 0.01991787552833557, -0.018440792337059975, 0.0036870224867016077, 0.0003841831930913031, 0.0169296246021986, 0.00462156068533659, -0.006232147105038166, -0.028178168460726738, -0.00013607967412099242, -0.014793538488447666, 0.01800903119146824, 0.015929754823446274, 0.03374562785029411, 0.04167642071843147, -0.0029342789202928543, 0.023951442912220955, 0.04154007509350777, 0.04967538267374039, -0.0186680369079113, -0.0056668794713914394, -0.02062232792377472, 0.00039021935663186014, 0.046584874391555786, 0.007686504162847996, -0.07399041950702667, -0.01034525129944086, 0.019815614446997643, 0.006959325633943081, 0.023065194487571716, 0.00823188852518797, 0.02717829868197441, -0.011481467634439468, 0.017827237024903297, 0.013441440649330616, 0.004922657739371061, -0.026110254228115082, 0.019770165905356407, -0.02554214559495449, 0.04315350204706192, 0.0499480776488781, -0.043017156422138214, -0.035381779074668884, -0.015418457798659801, 0.001357778673991561, 0.025133108720183372, -0.01450948417186737, -0.0037551955319941044, 0.03335931524634361, -0.0034285332076251507, 0.02245163731276989, 0.023451507091522217, -0.019963324069976807, 0.008998834528028965, -0.015066230669617653, 0.0015012259827926755, -0.009362423792481422, 0.008390958420932293, -0.014600381255149841, 0.0196338202804327, 0.0075615206733345985, 0.07689913362264633, -0.015986565500497818, 0.02622387558221817, 0.019883787259459496, 0.033245693892240524, 0.010032791644334793, -0.005019236356019974, -0.0013457064051181078, 0.019395215436816216, 0.022610707208514214, 0.041267383843660355, 0.009720331989228725, -0.019406577572226524, 0.02726919576525688, 0.0013158806832507253, -0.0037949630059301853, -0.012952867895364761, 0.005575982388108969, 0.009799866937100887, -0.021417681127786636, 0.0096237538382411, 0.01740683615207672, 0.025587594136595726, -0.0013300833525136113, -0.011884824372828007, 0.020872296765446663, 0.02738281711935997, 0.017202317714691162, 0.011998445726931095, 0.003616008907556534, 0.037199728190898895, 0.011453062295913696, -0.045539554208517075, 0.02138359472155571, 0.05467473715543747, -0.02756461128592491, -0.005828790366649628, 0.007220655679702759, 0.009583985432982445, 0.02486041560769081, 0.01788404770195484, 0.010089602321386337, -0.0029825682286173105, 0.022201670333743095, 0.0022340856958180666, -0.04267628863453865, 0.00847617443650961, 0.022497085854411125, 0.02758733555674553, 0.03938126191496849, 0.0028575845062732697, 0.0067548067308962345, 0.026382945477962494, -0.027314644306898117, 0.01282788347452879, 0.0061696553602814674, -0.005405549891293049, 0.028814449906349182, 0.014498122036457062, 0.010663391090929508, 0.026587465777993202, -0.02244027517735958, 0.02128133364021778, -0.023633303120732307, -0.008782953023910522, 0.04953903704881668, -0.019315680488944054, 0.02215622179210186, 0.014452673494815826, 0.014123170636594296, 0.00128889549523592, -0.005141379311680794, 0.016872813925147057, -0.00244144513271749, 0.03215492516756058, -0.0050561632961034775, -0.011873462237417698, -0.006283277180045843, 0.0013975462643429637, -0.014725365675985813, 0.027610059827566147, -0.014248154126107693, 0.007368363905698061, -0.016304707154631615, -0.008885213173925877, 0.007419493515044451, -0.013657322153449059, -0.034404635429382324, 0.02264479361474514, -0.015816133469343185, 0.01994059979915619, -0.004928338807076216, 0.0442897193133831, 0.020065583288669586, -0.0033774033654481173, 0.02572394162416458, 0.013430078513920307, 0.024792242795228958, 0.03106415830552578, 0.01702052354812622, -0.021440405398607254, 0.05367486551403999, 0.0032382169738411903, -0.00794215314090252, 0.009356742724776268, -0.015225300565361977, 0.008254612796008587, -0.020565517246723175, 0.0036529358476400375, -0.027723681181669235, -0.0014273719862103462, -0.015179852023720741, 0.021247247233986855, -0.021894890815019608, -0.004746544174849987, 0.020463258028030396, 0.032086752355098724, 0.039244916290044785, 0.012952867895364761, -0.0015821814304217696, 0.0030990303494036198, 0.001114202314056456, 0.003331954823806882, -0.014498122036457062, 0.04478965327143669, 0.03245034068822861, -0.03370017930865288, 0.04065382480621338, 0.01655467413365841, -0.018622588366270065, -0.01759999245405197, 0.01606610044836998, -0.015702512115240097, 0.021349506452679634, -0.010390699841082096, 0.001587862498126924, -0.0002540508867241442, 0.016429690644145012, 0.0538112111389637, 0.005209552589803934, 0.03049604967236519, 0.04163097217679024, 0.006834342144429684, -0.039722125977277756, 0.004828920122236013, -0.004201160278171301, -0.029337109997868538, -0.010038472712039948, 0.014043635688722134, 0.012589278630912304, 0.009118136949837208, 0.040994688868522644, -0.0197588037699461, -0.045812249183654785, 0.01316874846816063, -0.004769268445670605, -0.009084050543606281, -0.009072688408195972, 0.018031755462288857, -0.03224582225084305, 0.031041434034705162, -0.03790418058633804, 0.0396539531648159, 0.024746794253587723, 0.005791863426566124, 0.013520975597202778, 0.029927941039204597, 0.03485912084579468, 0.02536035142838955, 0.010350932367146015, -0.0002973691443912685, 0.030064288526773453, -0.030427876859903336, 0.02679198421537876, -0.014873073436319828, 0.019679268822073936, 0.026769259944558144, 0.0009352481574751437, 0.02488313987851143, 0.007266104221343994, 0.008987472392618656, 0.0037211088929325342, -0.039813026785850525, -0.027360092848539352, 0.004667009226977825, 0.0008166555780917406, 0.042040009051561356, 0.011589407920837402, 0.016759192571043968, -0.03606351092457771, -0.0012143313651904464, 0.011873462237417698, 0.0008329887059517205, 0.004238087218254805, 0.021531302481889725, -0.01417998131364584, 0.0876704603433609, 0.056174542754888535, -0.019792890176177025, 0.03840411826968193, 0.0038006440736353397, -0.008646607398986816, 0.025087660178542137, 0.007237698882818222, -0.03135957568883896, 0.002353388350456953, 0.005226595792919397, 0.03049604967236519, 0.007391088176518679, 0.013202834874391556, -0.02447410300374031, -0.02447410300374031, -0.011316715739667416, -0.025996632874011993, -0.011276948265731335, -0.00464144442230463, 0.05435659736394882, -0.01510031707584858, 0.020338274538517, 0.005513490177690983, -0.0006124916835688055, 0.03345021232962608, 0.004439766053110361, -0.010095283389091492, 0.0026459640357643366, 0.05158422887325287, -0.020497344434261322, 0.038449566811323166, 0.034972742199897766, 0.02901896834373474, 0.01946338824927807, 0.02129269577562809, 0.012702899985015392, -0.014895797707140446, 0.020360998809337616, -0.010510002262890339, 0.00275816535577178, -0.01672510616481304, 0.022417550906538963, -0.010725883767008781, 0.008976110257208347, -0.03017790988087654, -0.013339181430637836, 0.0033120710868388414, 0.0026502248365432024, -0.0069138770923018456, 0.0013783725444227457, 0.009157904423773289, 0.0015012259827926755, 0.0008322785724885762, -0.011112197302281857, -0.017156869173049927, 0.016429690644145012, -0.025087660178542137, 0.05812883377075195, 0.0015836016973480582, -0.03115505538880825, -0.0042096818797290325, -0.05517467111349106, 0.0011269847163930535, -0.003743833163753152, 0.05440204590559006, 0.004533503670245409, -0.011464424431324005, 0.009368104860186577, -0.004152871202677488, -0.02090638317167759, -0.0009821171406656504, 0.011975721456110477, 0.003743833163753152, 0.0012256935006007552, 0.0020750153344124556, 0.00871478021144867, -0.011049705557525158, -0.025587594136595726, -0.03674523904919624, 0.017770426347851753, -0.03306389972567558, -0.031177779659628868, 0.0038574549835175276, 0.024337757378816605, 0.003576241433620453, -0.019577009603381157, -0.012225689366459846, 0.003172884462401271, -0.01089063473045826, 0.012237051501870155, -0.038654085248708725, 0.014361776411533356, 0.01817946322262287, -0.009652159176766872, 0.008595477789640427, -0.024655897170305252, 0.005348739214241505, -0.023883270099759102, -0.03147319704294205, 0.008589796721935272, 0.007680823095142841, 0.008862487971782684, 0.003508068388327956, 0.0058571957051754, 0.009288569912314415, -0.02099728025496006, 0.014589019119739532, 0.005408390425145626, 0.0066184611059725285, 0.004931179340928793, 0.01878165826201439, 0.017156869173049927, -0.019099798053503036, 0.0074422177858650684, 0.03531360626220703, 0.01542981993407011, -0.012850608676671982, 0.02795092575252056, 0.00488289026543498, 0.013282370753586292, -0.02109953947365284, -0.003300708718597889, -0.0037836008705198765, 0.0012484178878366947, -0.019883787259459496, -0.01001574844121933, -0.02711012400686741, 0.02205396071076393, -0.008743185549974442, -0.02756461128592491, -0.03379107639193535, 0.002570689655840397, -0.03147319704294205, 0.0004800514434464276, -0.005487925373017788, -0.008214845322072506, 0.0011220137821510434, 0.02747371420264244, -0.0006171075510792434, 0.014202705584466457, -0.0037097467575222254, 0.04813012853264809, -0.0009402191499248147, 0.011106516234576702, 0.03360928222537041, 0.000375661562429741, 0.022883400321006775, -0.007873980328440666, -0.014827624894678593, 0.014009549282491207, 0.0023775328882038593, -0.009067007340490818, 0.023269712924957275, 0.0012413164367899299, -0.010061196982860565, -0.007976239547133446, -0.01857713982462883, 0.029587076976895332, 0.007436536718159914, -0.013623235747218132, 0.008016007021069527, 0.01316874846816063, -0.003945511765778065, -0.017747702077031136, -0.0032098114024847746, 0.00390574405901134, -0.0006149771506898105, -0.010481596924364567, -0.037108831107616425, -0.014225429855287075, 0.020201928913593292, 0.023883270099759102, 0.015168489888310432, 0.030064288526773453, 0.008430725894868374, -0.020485982298851013, -0.040290236473083496, 0.023053832352161407, 0.04303988069295883, -0.028700828552246094, 0.013293732888996601, -0.013702770695090294, -0.003320592688396573, 0.0021275654435157776, 0.03317752107977867, -0.03131412714719772, 0.028041822835803032, -0.03858591243624687, 0.049493588507175446, -0.03504091501235962, -0.02726919576525688, 0.007050223182886839, 0.013316457159817219, -0.024315033107995987, 0.0016716584796085954, -0.008203483186662197, 0.007964877411723137, -0.009106774814426899, -0.00030447050812654197, -0.025405799970030785, -0.0025152992457151413, -0.014020911417901516, 0.018429430201649666, 0.012350672855973244, -0.04499417170882225, 0.0009778563398867846, -0.018247636035084724, -0.007919428870081902, -0.021735820919275284, 0.023769648745656013, 0.001587862498126924, 0.007095671724528074, -0.025133108720183372, -0.01562297623604536, -0.02797365002334118, -0.003902903525158763, 0.03160954266786575, 0.025383075699210167, -0.013861840590834618, -0.00852162390947342, -0.012543830089271069, 0.0007300190627574921, -0.019417939707636833, -0.03892677649855614, -0.01565706357359886, 0.0031103924848139286, 0.03665434196591377, -0.04094924032688141, 0.022088048979640007, -2.0405293980729766e-05, 0.027814578264951706, -0.009118136949837208, -0.007612650282680988, 0.05108429118990898, 0.0011369265848770738, 0.013055127114057541, 0.030836915597319603, 0.007635374553501606, -0.027837302535772324, -0.00016350865189451724, -0.004854484926909208, -0.0030677844770252705, -0.01565706357359886, 0.033927422016859055, 0.0028874101117253304, 0.03576809540390968, -2.922650492109824e-05, 0.011163326911628246, -0.015327559784054756, -0.005607228260487318, 0.022599345073103905, -0.024655897170305252, 0.010464553721249104, 0.0009423495503142476, 0.0066468664444983006, -0.005130017176270485, 0.02447410300374031, 0.010623623616993427, 0.018849831074476242, 0.00900451559573412, -0.01973607949912548, -0.02951890416443348, -0.029564352706074715, -0.043198950588703156, 0.02661019004881382, 0.02255389653146267, -0.009731694124639034, -0.020860934630036354, -0.02100864239037037, -0.0034569385461509228, -0.04667577147483826, -0.00793079100549221, 0.0045221415348351, -0.007578563876450062, -0.01363459788262844, -0.012134792283177376, 0.027996374294161797, -0.009248802438378334, 0.0003220463404431939, 0.03483639657497406, -0.019679268822073936, -0.009112455882132053, -0.01762271672487259, 0.010504321195185184, 0.017350025475025177, -0.012407483533024788, -0.00764105562120676, 0.0008443508413620293, -0.00474370364099741, -0.04074472188949585, 0.01936112903058529, -0.02631477266550064, 0.005777660757303238, -0.025133108720183372, -0.03704065829515457, -0.015497992746531963, -0.025292178615927696, -0.014736727811396122, 0.01945202611386776, 0.007578563876450062, 0.036995209753513336, -0.001871916581876576, -0.029677974060177803, 0.01132239680737257, 0.0012306644348427653, 0.016134273260831833, 0.03908584639430046, -0.006357131060212851, -0.029746146872639656, 0.014202705584466457, 0.031995855271816254, 0.019611096009612083, -0.01228250004351139, -0.028996244072914124, 0.013021040707826614, -0.0016063260845839977, -0.018815744668245316, 0.01646377705037594, -0.01363459788262844, 0.027632784098386765, -0.028405411168932915, -0.013657322153449059, 0.0446760319173336, -0.008112585172057152, -0.019417939707636833, -0.0012924462789669633, -0.009850996546447277, 0.02138359472155571, 0.028905346989631653, 0.02062232792377472, -0.013055127114057541, -0.03224582225084305, 0.009663521312177181, 0.012157516553997993, 0.037017934024333954, 0.00172988954000175, 0.011237180791795254, -0.024519551545381546, 0.008390958420932293, -0.01672510616481304, 0.040994688868522644, 0.03590444102883339, -0.006010584998875856, 0.04926634579896927, 0.012134792283177376, 0.005919687915593386, -0.02333788573741913, -0.015077592805027962, 0.030246082693338394, -0.001187346177175641, 0.00803305022418499, -0.008834082633256912, -0.01364596001803875, -0.03813142329454422, -0.0008479015086777508, -0.017634078860282898, -0.030109737068414688, 0.002452807268127799, -0.02872355282306671, -0.014725365675985813, -0.0050703659653663635, 0.01682736538350582, 0.002038088394328952, 0.0035023873206228018, 0.02207668498158455, -0.0014238212024793029, 0.009885082952678204, 0.0031245953869074583, 0.002464169403538108, 0.031223228201270103, 0.031791336834430695, -0.01528211124241352, -0.005280565936118364, -0.003394446801394224, 0.009248802438378334, 0.007453579921275377, -0.036449823528528214, -0.016963711008429527, -0.053765762597322464, 0.01015777513384819, 0.04374433308839798, -0.0010041312780231237, 0.03240489214658737, 0.022565258666872978, -0.03076874278485775, 0.0002620399172883481, -0.011203094385564327, 0.0020792761351913214, 0.019599733874201775, 0.006271915044635534, -0.01636151783168316, 0.012555192224681377, -0.045721352100372314, 0.015520717017352581, 0.03658616915345192, 0.01262336503714323, 0.006947963498532772, -0.011839375831186771, -0.024928588420152664, 0.004436925519257784, -0.04122193157672882, 0.0016404124908149242, -0.002803614130243659, 0.028109995648264885, -0.028109995648264885, 0.03297300264239311, 0.002102000406011939, -3.02917087537935e-05]], "input": ["CARRY-ON BAGS:CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.", "AEROSOLS:", "SPORTING EQUIPMENT:Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.", "ECONOMY CLASS:Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.", "PREMIUM CLASS:Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.", "BUSINESS CLASS:Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.", "DIMENSIONS:Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.", "EL AL CARGO DIVISION:The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.", "CALL CENTER:The call center is a service location where passengers can contact for approval regarding overweight baggage.", "OVERWEIGHT BAGGAGE:Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline's specified weight restrictions.", "ADDITIONAL SPORTS EQUIPMENT:Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.", "32 KG:The entity \"32 KG\" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.", "30 KG:The entity \"30 KG\" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.", "277 CM:The entity \"277 CM\" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.", "190 CM:190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.", "LITE FARES:LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-4bb6078aad6196a107ec3754ce1bb5bd b/cache/text_embedding/embedding-4bb6078aad6196a107ec3754ce1bb5bd deleted file mode 100644 index 6b1f0018639b752f8507ca4b1a42cd59f29d8731..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-4bb6078aad6196a107ec3754ce1bb5bd +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.009294134564697742, -0.03619656339287758, -0.011050794273614883, -0.022747954353690147, -0.011301000602543354, -0.007021424360573292, -0.03928244486451149, 0.02343602292239666, 0.025458527728915215, 0.06409460306167603, 0.016617892310023308, 0.028002293780446053, 0.018880177289247513, -0.0014543262077495456, -0.060841917991638184, 0.029190776869654655, -0.038198214024305344, 0.012750114314258099, -0.0046366420574486256, 0.01618003100156784, 0.011071644723415375, 0.008819784969091415, -0.027418479323387146, -0.03392385318875313, -0.03106732666492462, -0.03928244486451149, 0.007000573445111513, -0.019516119733452797, 0.04407807067036629, -0.02668870985507965, 0.04057518020272255, -0.024499401450157166, 0.02958693727850914, -0.04545420780777931, 0.01721213199198246, 0.007495774421840906, -0.02326921932399273, -0.031630292534828186, 0.012322677299380302, -0.031171578913927078, -0.08527876436710358, 0.04155515506863594, 0.02341517247259617, 0.017566591501235962, -0.02456195279955864, 0.04591292142868042, 0.007944061420857906, 0.049415815621614456, -0.04929070919752121, 0.02077757753431797, -0.01957867108285427, -0.007172590587288141, 0.0034872551914304495, 0.09207604825496674, 0.017983602359890938, 0.02101735956966877, -0.011551206931471825, 0.014574537053704262, -0.015252180397510529, -0.012864791788160801, -0.0289614200592041, 0.01704532839357853, 0.016315558925271034, 0.040971338748931885, -0.030921371653676033, 0.047956276684999466, 0.0010666361777111888, 0.007511412259191275, -0.010769311338663101, 0.0179523266851902, 0.05045834183692932, 0.0009780213003978133, -0.01632598415017128, 0.012291401624679565, 0.014741341583430767, 0.024019839242100716, 0.022122438997030258, 0.012864791788160801, -0.006307292729616165, -0.006156126037240028, 0.00414144154638052, -0.0014126250753179193, -0.028690362349152565, 0.0013292228104546666, 0.019714199006557465, -0.019693348556756973, -0.08965738117694855, -0.03373619541525841, -0.024687055498361588, -0.04708055034279823, -0.007224717177450657, 0.03607146069407463, -0.012416505254805088, 0.06313548237085342, 0.037572700530290604, 0.017868924885988235, 0.013542435131967068, -0.024833010509610176, -0.0471639558672905, -0.007693854626268148, 0.0005561233847402036, 0.02345687337219715, -0.061175525188446045, 0.007146527525037527, 0.03892798349261284, -0.047747768461704254, -0.05104215815663338, 0.010081242769956589, 0.029795441776514053, 0.00451153889298439, -0.06513713300228119, 0.02616744488477707, 0.012812665663659573, 0.05959088355302811, -0.009304559789597988, -0.017243407666683197, 0.006635688710957766, -0.037093136459589005, 0.013156699948012829, 0.007438435219228268, 0.008793720975518227, -0.0025346456095576286, 0.010237622074782848, -0.03976200893521309, 0.011207172647118568, -0.03021245263516903, -0.08765573054552078, -0.04366106167435646, -0.041617706418037415, 0.021455220878124237, 0.038239914923906326, -0.02439514920115471, 0.05271020159125328, -0.03721823915839195, -0.013448607176542282, -0.02875291369855404, 0.015575364232063293, 0.017107879742980003, 0.02408239059150219, -0.03219325467944145, 0.03828161954879761, 0.0035550196189433336, -0.023144114762544632, 0.029795441776514053, -0.02489556185901165, 0.019286762923002243, 0.017076604068279266, 0.0258546881377697, -0.03540424257516861, -0.011301000602543354, -0.020402267575263977, 0.003969424404203892, -0.032568566501140594, 0.0006085755303502083, 0.009002226404845715, 0.03281877189874649, 0.004553239792585373, 0.011999494396150112, -0.02075672708451748, 0.04645503684878349, -0.050875354558229446, -0.028085697442293167, -0.009387962520122528, 0.04708055034279823, 0.009210732765495777, -0.0035680511500686407, -0.0023183210287243128, -0.02762698382139206, -0.02389473468065262, -0.02164287492632866, -0.0481230802834034, -0.029774591326713562, -0.06864002346992493, -0.035133183002471924, -0.006531435996294022, -0.0581730455160141, 0.024770459160208702, 0.03657187148928642, 0.011436529457569122, -0.04038752242922783, 0.0005124675226397812, 0.015950674191117287, -0.04507889971137047, -0.04295214265584946, -0.02341517247259617, 0.0240615401417017, 0.017889775335788727, 0.011540781706571579, -0.012791815213859081, 0.013542435131967068, 0.013980296440422535, 0.010727610439062119, -0.027564432471990585, -0.0024499401915818453, -0.0028773765079677105, 0.04799797758460045, 0.004730469547212124, -0.03586295247077942, -0.00385735253803432, 0.030420958995819092, -0.005926770158112049, -0.01006560493260622, -0.032089002430438995, 0.005011952016502619, -0.04624652862548828, -0.007959699258208275, -0.011353126727044582, -0.04101303964853287, 0.00876244530081749, 0.028669511899352074, 0.03592550382018089, 0.03023330308496952, -0.0058120922185480595, 0.008011825382709503, -0.058089643716812134, 0.035821251571178436, 0.038406722247600555, 0.0051396614871919155, -0.00020019790099468082, 0.004180536139756441, -0.022581150755286217, -0.035341691225767136, 0.01187439076602459, -0.0014152313815429807, -0.03071286715567112, 0.00025998035562224686, 0.021434370428323746, -0.049207307398319244, -0.030775418505072594, -0.08673830330371857, -0.07210122048854828, 0.05396123602986336, 0.028502708300948143, -0.033402588218450546, -0.005911132320761681, -0.011853540316224098, -0.031109027564525604, -0.029232477769255638, -0.04155515506863594, -0.019849726930260658, -5.693178536603227e-05, 0.003552413312718272, -0.03786460682749748, 0.019849726930260658, -0.0198705792427063, -0.03315238282084465, -0.016513638198375702, -0.021319691091775894, 0.0993320420384407, 0.040179017931222916, 0.07151740044355392, 0.03396555408835411, 0.02197648398578167, 0.0023287462536245584, 0.04328574985265732, -0.009377537295222282, 0.03972030431032181, -0.01835891231894493, 0.07022466510534286, 0.02180968038737774, 0.024207493290305138, 0.009038715623319149, -0.04441168159246445, 0.029169926419854164, -0.058756861835718155, 0.02020418643951416, 0.03238091245293617, 0.026626158505678177, -0.02602149173617363, 0.019380589947104454, -0.0211841631680727, 0.04270193353295326, -0.038886282593011856, -0.03023330308496952, -0.07760576158761978, 0.03653017058968544, -0.049707721918821335, -0.02362367883324623, 0.017253832891583443, -0.0010920477798208594, -0.011144621297717094, -0.04916560649871826, -0.0023196241818368435, -0.052459996193647385, -0.00775640644133091, 0.00466270511969924, 0.026146594434976578, -0.030754568055272102, -0.011186322197318077, 0.018379762768745422, 0.049374110996723175, 0.016909800469875336, 0.022435195744037628, 0.014042848721146584, -0.003695760853588581, 0.0323183611035347, 0.04916560649871826, 0.0119682177901268, 0.029169926419854164, 0.02472875826060772, -0.02247689850628376, -0.036947183310985565, -0.042430877685546875, 0.019453566521406174, 0.0027209974359720945, 0.03185964748263359, 0.006943234708160162, 0.012228850275278091, 0.012937769293785095, -0.0037061860784888268, 0.053419120609760284, -0.01047219056636095, -0.05996619537472725, -0.03400725498795509, -0.020402267575263977, -0.010242834687232971, 0.023707080632448196, 0.01859869435429573, 0.007052700035274029, -0.0052074259147048, 0.013083722442388535, -0.026250848546624184, 0.02197648398578167, 0.006760792341083288, -0.000505625968798995, 0.004579302854835987, -0.0005271280533634126, 0.053127214312553406, -0.06421970576047897, 0.024353448301553726, 0.005838155280798674, -0.01560663990676403, -0.0058433678932487965, -0.039219893515110016, -0.04105474054813385, 0.015460685826838017, 0.0018296361668035388, 0.04286874085664749, -0.007626090198755264, -0.01606535166501999, 0.002788761630654335, -0.05979939177632332, -0.07556241005659103, 0.0008744201040826738, -0.005389868281781673, 0.02151777222752571, 0.008705106563866138, 0.016701294109225273, 0.027230823412537575, 0.10383576154708862, 0.018087856471538544, 0.05400293692946434, -0.0033882150892168283, 0.022539449855685234, -0.05500376224517822, -0.0414092019200325, 0.021705426275730133, -0.008778083138167858, 0.008866698481142521, -0.00614048819988966, 0.0036201775074005127, -0.032234955579042435, 0.007130889687687159, 0.06813961267471313, -0.021413519978523254, 0.01245820615440607, -0.025938089936971664, 0.0010249350452795625, -0.05258509889245033, -0.013532009907066822, 0.050833649933338165, -0.01445985957980156, 0.026751261204481125, -0.012218425050377846, 0.015585789456963539, -0.011697161011397839, 0.010706759989261627, 0.0017605687025934458, -0.008616491220891476, 0.0007603936828672886, 0.014991548843681812, 0.0073810964822769165, 0.01745191402733326, -0.0028487069066613913, -0.006766004953533411, 0.014105400070548058, -0.05296040698885918, -0.012479056604206562, 0.05462845414876938, 0.022059885784983635, 0.013844768516719341, -0.03200560063123703, 0.00394336087629199, 0.016398960724473, 0.010800587013363838, 0.030024798586964607, -0.008037888444960117, 0.0471639558672905, -0.025917239487171173, -0.049540918320417404, -0.011029942892491817, -0.044870391488075256, 0.020360566675662994, -0.002087661763653159, -0.024353448301553726, -0.007146527525037527, 0.018275510519742966, -0.013323504477739334, 0.017608292400836945, -0.0048868488520383835, 0.0020550827030092478, 0.00804310105741024, -0.00602581026032567, 0.0497911237180233, 0.020381417125463486, 0.02827335149049759, 0.03561274707317352, 0.017670845612883568, -0.018702946603298187, -0.02408239059150219, 0.005494120996445417, 0.024311745539307594, 0.00711525185033679, 0.0244159996509552, -0.00893967505544424, 0.008063951507210732, 0.0426185317337513, 0.0011187625350430608, -0.02439514920115471, -0.004188355058431625, 0.013062871992588043, -0.03265196830034256, 0.001937798340804875, 0.05483695864677429, -0.04574611783027649, 0.006307292729616165, -0.013709239661693573, -0.027856340631842613, -0.052626799792051315, 0.010560805909335613, -0.0008196874405257404, 0.017587441951036453, 0.06572094559669495, -0.011248874478042126, -0.078523188829422, -0.005686988588422537, 0.013313079252839088, 0.019828876480460167, 0.0056557129137218, 0.017608292400836945, -0.0017475370550528169, 0.028669511899352074, -0.021121611818671227, -0.002594590885564685, -0.013302654027938843, -0.029816292226314545, 0.004219630733132362, 0.0011441741371527314, 0.04222237318754196, -0.026605308055877686, -0.031109027564525604, 0.0066461144015192986, 0.002628473099321127, 0.04180536046624184, -0.006109212525188923, -0.024332597851753235, 0.04778946936130524, -0.05379442870616913, 0.013792641460895538, -0.058464955538511276, -0.06351079046726227, 0.0014152313815429807, 0.023144114762544632, 0.007193441037088633, -0.02489556185901165, 0.027898041531443596, 0.012677136808633804, -0.022018184885382652, -0.0024799127131700516, 0.004005912691354752, 0.04537080600857735, 0.032902173697948456, -0.05621309578418732, -0.0390113890171051, 0.016774270683526993, 0.004829509649425745, 0.05750582739710808, -0.022914759814739227, -0.02135096676647663, -0.030149901285767555, -0.02764783427119255, -0.01713915541768074, -0.01828593574464321, -0.006286442279815674, -0.017743822187185287, 0.004052826669067144, -0.012708412483334541, -0.007938848808407784, 0.046496737748384476, -0.005043227691203356, -0.014699640683829784, 0.015690041705965996, 0.00703706219792366, -0.002788761630654335, 0.03215155377984047, 0.015085375867784023, 0.0387820303440094, -0.020402267575263977, 0.0004447032406460494, 0.00755832577124238, 0.00400330638512969, 0.009341048076748848, 0.05137576535344124, 0.008710319176316261, -0.011697161011397839, -0.01776467263698578, 0.037113986909389496, 0.03703058511018753, -0.025771284475922585, -0.01351115945726633, -0.008778083138167858, -0.005905919708311558, -0.014856019988656044, -0.009685082361102104, -0.008001400157809258, 0.05304380878806114, -0.0018947941716760397, -0.0289614200592041, -0.03621741384267807, -0.011759712360799313, -0.005838155280798674, -0.035174883902072906, -0.009638168849050999, -0.0026519298553466797, 0.015908973291516304, 0.004185748752206564, 0.008642555214464664, 0.035154033452272415, -0.042118120938539505, 0.0378229059278965, -0.03283962234854698, -0.012750114314258099, 0.02295646071434021, -0.02910737320780754, 0.02247689850628376, 0.016534490510821342, -0.0072351424023509026, -0.008267245255410671, -0.01511665154248476, 0.01156163215637207, 0.003005086211487651, 0.04174280911684036, 0.020506519824266434, 0.028210800141096115, 0.010315812192857265, 0.015637915581464767, 0.05629649758338928, -0.026125743985176086, 0.0006411545327864587, -0.0166387427598238, 0.004269151017069817, -0.00042483003926463425, -0.03705143555998802, 0.008058738894760609, -0.03236006200313568, 0.03179709613323212, -0.036446768790483475, -0.008470538072288036, 0.012791815213859081, -0.0378229059278965, -0.02439514920115471, 0.022018184885382652, 0.0036462408024817705, -0.013240101747214794, 0.009085629135370255, 0.017055753618478775, 0.005713052116334438, -0.03980370983481407, -0.02247689850628376, 0.0600912980735302, 0.013167125172913074, 0.030170751735568047, -0.006865045055747032, -0.013646687380969524, 0.02123628929257393, 0.011665885336697102, 0.02683466300368309, -0.030024798586964607, -0.027585282921791077, 0.03598805516958237, -0.010008266195654869, -0.023665379732847214, -0.027043169364333153, -0.021538622677326202, 0.02079842798411846, 0.02844015695154667, -0.026063192635774612, 0.023561125621199608, -0.016680443659424782, 0.014991548843681812, -0.00014676836144644767, 0.02424919418990612, 0.009653806686401367, 0.015033249743282795, -0.027522731572389603, 0.02520832046866417, -0.013114999048411846, -0.0033491202630102634, -0.007396734319627285, -0.015804721042513847, 0.01821295917034149, -0.0152000542730093, 0.018828051164746284, -0.01809828169643879, -0.007610452361404896, -0.043077245354652405, -0.049874525517225266, -0.033861301839351654, -0.04186791181564331, 0.025458527728915215, -0.016534490510821342, 0.019985256716609, 0.016461512073874474, -0.050041329115629196, -0.019015705212950706, 0.03329833596944809, 0.006964085157960653, -0.001863518264144659, -0.03778120502829552, -0.013417331501841545, -0.01845274120569229, 0.017649995163083076, -0.004430742934346199, -0.011373977176845074, -0.03607146069407463, -0.011134196072816849, 0.016961926594376564, -0.01092569064348936, -0.022247541695833206, 0.000152958367834799, 0.021121611818671227, 0.020569071173667908, 0.01486644521355629, -0.00028213407495059073, 0.02063162438571453, -0.010420064441859722, 0.0031406148336827755, 0.046496737748384476, 0.03909479081630707, 0.007579176686704159, 0.02939928136765957, 0.009242008440196514, -0.008871911093592644, -0.009705932810902596, 0.029857993125915527, -0.0016498001059517264, -0.0074853491969406605, 0.0035602322313934565, 0.014449434354901314, -0.003098913701251149, -0.024290895089507103, 0.03342343866825104, 0.0019742869772017, 0.002352203242480755, -0.005478483159095049, 0.062176354229450226, 0.022602001205086708, -0.007146527525037527, -0.009523490443825722, -0.030108200386166573, -0.03536254167556763, 0.013125424273312092, -0.013448607176542282, -0.03348599001765251, 0.016982777044177055, -0.018379762768745422, -0.01570046693086624, 0.014595388434827328, -0.003800013568252325, 0.028356753289699554, -0.05162597447633743, -0.00793363619595766, -0.0015716105699539185, 0.03459107130765915, 0.0175978671759367, -0.024332597851753235, 0.010018691420555115, -0.008361072279512882, 0.030129050835967064, 0.027918891981244087, -0.02013120986521244, 0.028732063248753548, -0.021298840641975403, -0.0008920127875171602, 0.011478230357170105, -0.0027991868555545807, 0.004657492507249117, 0.011248874478042126, -0.009242008440196514, -0.010383576154708862, -0.00868946872651577, 0.01658661663532257, -0.033048126846551895, -0.08932377398014069, -0.004894667770713568, -0.028544409200549126, 0.01979760080575943, 0.011248874478042126, 0.027376778423786163, -0.03179709613323212, -0.02504151500761509, 0.0070944009348750114, 0.025771284475922585, -0.030754568055272102, 0.008553939871490002, 0.03315238282084465, -0.004284788854420185, 0.038406722247600555, 0.016482362523674965, 0.022351793944835663, -0.00942966341972351, 0.0028330690693110228, 0.037927158176898956, -0.014689215458929539, 0.001449113478884101, -0.02635510079562664, 0.0013813492842018604, -0.020506519824266434, -0.015074950642883778, 0.0009799760300666094, 0.004910305608063936, -0.006786855403333902, -0.012729263864457607, 0.007360245566815138, 0.001039269845932722, -0.016127903014421463, -0.04899880290031433, 0.022602001205086708, -0.019568245857954025, -0.011113345623016357, 0.014751766808331013, -0.03217240422964096, 0.0289614200592041, -0.037614401429891586, 0.0169932022690773, -0.008074376732110977, -0.005629649851471186, -0.010013478808104992, -0.012645861133933067, -0.00037042313488200307, 0.051459167152643204, 0.003740068292245269, -0.019109532237052917, -0.0462048277258873, 0.00711525185033679, 0.004016337916254997, -0.02891971915960312, -0.029315879568457603, 0.0029816292226314545, 0.03863607719540596, 0.030504360795021057, -0.015460685826838017, -0.0052986470982432365, -0.003078063018620014, -0.012072470970451832, -0.017681270837783813, -0.017389362677931786, 0.014543261379003525, 0.005006739404052496, -0.009580830112099648, -0.016461512073874474, -0.03363194316625595, -0.011905666440725327, 0.0271682720631361, 0.02214328944683075, -0.005587948486208916, -0.042451728135347366, 0.004232662729918957, 0.0018974004779011011, -0.013646687380969524, -0.006322930566966534, -0.03586295247077942, -0.024457700550556183, -0.023060712963342667, -0.006573137361556292, -0.009904013015329838, -0.029190776869654655, 0.020120784640312195, -0.006849407218396664, 0.009476576931774616, 0.005324710160493851, -0.0007467104587703943, -0.019088681787252426, -0.04399466887116432, -0.011832689866423607, 0.00031145516550168395, 0.009075203910470009, -0.02310241386294365, -0.006979722995311022, -0.0073706707917153835, 0.020256314426660538, 0.017274685204029083, -0.01115504652261734, 0.05154256895184517, 0.03815651312470436, 0.038406722247600555, -0.027439329773187637, -0.011728436686098576, 0.039219893515110016, -0.015064525417983532, 0.0033256635069847107, 0.012145447544753551, 0.036446768790483475, 0.0010692424839362502, 0.021559473127126694, -0.028815466910600662, -0.029670339077711105, -0.008262031711637974, -0.018254660069942474, -0.050500042736530304, 0.03796885907649994, -0.045162301510572433, 0.02180968038737774, -0.024457700550556183, 0.01981845125555992, 0.008178629912436008, -0.048581790179014206, 0.010112518444657326, -0.021048635244369507, -0.006635688710957766, 0.008069164119660854, 0.005838155280798674, 0.034695323556661606, -0.01591939851641655, -0.01671171933412552, 0.029169926419854164, -0.011321851052343845, 0.021559473127126694, 0.0034820425789803267, 9.708539437269792e-05, 0.04924900829792023, 0.015106226317584515, -0.05608799308538437, -0.014511985704302788, -0.021340541541576385, 0.01965164765715599, -0.0006691724993288517, -0.01108206994831562, -0.0012145447544753551, 0.02487471140921116, 2.596138438093476e-05, -0.010049967095255852, -0.03992881253361702, -0.000456105888588354, 0.0070631252601742744, -0.00423787534236908, 0.01292734406888485, 0.004008518997579813, -0.0011422194074839354, -0.003138008527457714, -0.01608620211482048, -0.010446127504110336, 0.010117731057107449, 0.0014751767739653587, 0.029628638178110123, 0.006802493240684271, -0.016398960724473, 0.02793974243104458, -0.021267564967274666, -0.011790988966822624, 0.03227665647864342, 0.03427831083536148, -0.028878018260002136, -0.006672177463769913, -0.022706253454089165, -0.00515269348397851, 0.007042274810373783, 0.014616238884627819, -0.01284394133836031, 0.003289174987003207, -0.008434048853814602, 0.01342775672674179, 0.020099934190511703, 0.014470284804701805, 0.0009708539582788944, 0.01780637353658676, -0.014605813659727573, 0.04699714854359627, 0.026104893535375595, -0.009982203133404255, 0.01570046693086624, -0.0032266234047710896, 0.04311894625425339, -0.04753926396369934, 0.008032675832509995, -0.011040368117392063, -0.036467619240283966, 0.03346513956785202, -0.024937262758612633, 0.01689937524497509, -0.04391126707196236, -0.014042848721146584, -0.012823090888559818, 0.009987415745854378, -0.009372323751449585, -0.00231310841627419, -0.011936942115426064, -0.004610578995198011, -0.014449434354901314, 0.04053347930312157, 0.004832115955650806, -0.03938669711351395, -0.03219325467944145, 0.013187975622713566, 0.0197454746812582, -0.01641981117427349, -0.034340862184762955, 0.01613832823932171, 0.019599521532654762, 0.009148180484771729, 0.03502893075346947, -0.0013474670704454184, -0.030149901285767555, -0.03292302414774895, -0.010545168071985245, 0.010717185214161873, 0.04299384355545044, 0.014251354150474072, 0.014011572115123272, 0.009528703056275845, -0.014981123618781567, 0.03621741384267807, -0.007798107340931892, 0.006870257668197155, -0.007683429401367903, 0.016628317534923553, -0.02151777222752571, -0.0026349888648837805, -0.008970950730144978, -0.05629649758338928, -0.007433222606778145, 0.023519424721598625, -0.00618218956515193, 0.002117634518072009, -0.006620050873607397, 0.032401762902736664, 0.031442634761333466, 0.017983602359890938, 0.03413235768675804, 0.01180141419172287, 0.0488319993019104, -0.016096627339720726, 0.039219893515110016, 0.007683429401367903, 0.0179523266851902, -0.01074846088886261, 0.0414092019200325, -0.00837671011686325, -0.024040689691901207, -0.026605308055877686, 0.017149580642580986, 0.03605061024427414, 0.012864791788160801, -0.04837328568100929, 0.037906307727098465, 0.0113114258274436, -0.011092495173215866, 0.025416824966669083, 0.015147928148508072, 0.016054926440119743, -0.0349455289542675, -0.0090960543602705, 0.010769311338663101, 0.011509506031870842, 0.02862781099975109, 0.03361109271645546, -0.003656666027382016, -0.033527690917253494, 0.01898442953824997, -0.005322103854268789, 0.00013919374032411724, 0.019140809774398804, 0.008866698481142521, 0.007495774421840906, 0.0030676377937197685, 0.03198475018143654, -0.0005860960809513927, -0.003972030710428953, -0.023519424721598625, -0.003990274854004383, 0.030837969854474068, 0.03361109271645546, 0.022914759814739227, 0.02539597451686859, 0.004892061464488506, 0.012291401624679565, 0.007975337095558643, 0.005827730055898428, 0.024707907810807228, -0.02003738284111023, 0.02424919418990612, 0.010201133787631989, -0.02168457582592964, 0.016409385949373245, -0.0003404504677746445, 0.03365279361605644, 0.013844768516719341, -0.0032709306105971336, -0.01463708933442831, 0.014418158680200577, 0.02166372537612915, 0.007302906829863787, -0.03248516470193863, 0.03859437629580498, -0.03976200893521309, 0.004673130344599485, 0.010347087867558002, -0.06292697042226791, -0.03909479081630707, -0.012708412483334541, -0.036279965192079544, 0.009690294973552227, 0.017889775335788727, 0.033861301839351654, 0.015064525417983532, -0.020079083740711212, 0.007553113158792257, -0.0015077557181939483, 0.027731237933039665, -0.007318544667214155, 0.014605813659727573, 0.021747129037976265, 0.06672177463769913, 0.037593550980091095, -0.0031797096598893404, 0.030504360795021057, -0.005838155280798674, -0.024603653699159622, 0.007506199646741152, 0.03605061024427414, -0.01941186562180519, -0.01407412439584732, -0.025833837687969208, 0.033027276396751404, 0.036613572388887405, -0.001469964045099914, -0.018880177289247513, 0.028043996542692184, 0.027856340631842613, -0.03557104617357254, -0.02013120986521244, 0.029795441776514053, -0.0449954979121685, 0.00797012448310852, -0.009440088644623756, -0.028231650590896606, -0.02958693727850914, -0.020715026184916496, 0.0032631116919219494, -0.0015051494119688869, -0.01739978790283203, -0.0007102219969965518, 0.0001790215610526502, -0.025124918669462204, 0.030587762594223022, -0.017420638352632523, -0.030441809445619583, -0.0032787497621029615, 0.004793021362274885, 0.062468260526657104, -0.028002293780446053, -0.003057212568819523, 0.023978138342499733, 0.021434370428323746, -0.010852713137865067, 0.0065366486087441444, 0.009335835464298725, -0.0072351424023509026, -0.02249774895608425, 0.03392385318875313, -0.0032188042532652617, 0.002775730099529028, 0.034340862184762955, 0.017107879742980003, -0.0004707664193119854, -0.01333392970263958, -0.022268392145633698, 0.021580323576927185, -0.006317717954516411, 0.01366753876209259, -0.02147607132792473, 0.021059060469269753, 0.009820611216127872, 0.012604160234332085, 0.01817125827074051, -0.018014879897236824, 0.027898041531443596, 0.020527370274066925, 0.0517093762755394, -0.017722971737384796, 0.027043169364333153, 0.047747768461704254, 0.028210800141096115, -0.023227518424391747, 0.029524385929107666, -0.016315558925271034, 0.013917745091021061, 0.04912390559911728, -0.008788508363068104, 0.025312572717666626, 0.027585282921791077, 0.0013670144835487008, 0.030191602185368538, -0.0209443811327219, -0.01018549595028162, 0.036154862493276596, -0.021048635244369507, 0.02522917091846466, -0.0016354653052985668, 0.010738035663962364, -0.04024156928062439, -0.004462018609046936, -0.012468631379306316, 0.0015364252030849457, 0.00993528962135315, -0.0011949973413720727, -0.007740768138319254, 0.03586295247077942, 0.015325157903134823, -0.0119682177901268, 0.010915265418589115, -0.0006623308872804046, -0.020506519824266434, -0.019109532237052917, 0.007511412259191275, 0.013146274723112583, 0.0025620118249207735, -0.040179017931222916, 0.006583562586456537, 0.006901533342897892, 0.04007476568222046, 0.006526223383843899, -0.01900527998805046, 0.00501455832272768, -0.028356753289699554, -0.027084870263934135, 0.030775418505072594, 0.045829519629478455, -0.0013839555904269218, 0.014605813659727573, 0.0240615401417017, 0.03767695277929306, -0.010216771624982357, 0.014272204600274563, 0.033548541367053986, 0.024541102349758148, 0.011686735786497593, -0.03406980633735657, 0.025604480877518654, 0.0008229453233070672, 0.011759712360799313, -0.036613572388887405, 0.011290575377643108, 0.011196747422218323, -0.021413519978523254, 0.0038078324869275093, -0.0208297036588192, 0.004928549751639366, -0.013750940561294556, 0.011301000602543354, -0.013688389211893082, -0.015346008352935314, -0.02568788267672062, -0.029169926419854164, 0.0052856155671179295, 0.018463166430592537, -0.00752183748409152, -0.0051474804058671, 0.024624504148960114, -0.022727103903889656, -0.01658661663532257, 0.007396734319627285, -0.047289058566093445, -0.015001974068582058, 0.008887548930943012, -0.003661878639832139, 0.03221410512924194, 0.029357580468058586, 0.002801793161779642, -0.014042848721146584, 0.011624184437096119, 0.02109033614397049, 0.0416594073176384, -0.03763525187969208, -0.014261779375374317, 0.034695323556661606, -0.01747276447713375, 0.03406980633735657, 0.019881004467606544, -0.015325157903134823, -0.0018361519323661923, -0.002152819652110338, -0.007719917688518763, -0.011332276277244091, -0.029211627319455147, 0.017420638352632523, 0.027606133371591568, 0.021392669528722763, -0.010717185214161873, 0.01711830496788025, -0.01302117109298706, 0.009356685914099216, -0.02731422707438469, -0.0066461144015192986, -0.011916091665625572, -0.006838981993496418, 0.012145447544753551, -0.011665885336697102, -0.03252686560153961, 0.009976990520954132, 0.008183842524886131, -0.004347340669482946, 0.019140809774398804, -0.005806879606097937, 0.017295535653829575, -0.012562459334731102, -0.01589854806661606, -0.026459353044629097, -0.008731169626116753, 0.015137502923607826, 0.03179709613323212, -0.007391521707177162, 0.0018400613917037845, -0.03509148210287094, 0.025416824966669083, 0.0074436478316783905, 0.028523558750748634, 0.03217240422964096, 0.025625331327319145, 0.03538339212536812, -0.002165851416066289, 0.022539449855685234, 0.007964911870658398, -0.01623215712606907, -0.023540275171399117, 0.003912085201591253, 0.00396681809797883, 0.009950927458703518, -0.03200560063123703, 0.014188801869750023, 0.03356939181685448, -0.01090484019368887, 0.006484522484242916, -0.004852966405451298, 6.499508890556172e-05, 0.02520832046866417, -0.01747276447713375, -0.016461512073874474, -0.022122438997030258, -0.015408559702336788, -0.03511233255267143, 0.004563665017485619, 0.025812987238168716, 0.03344428911805153, 0.0029894481413066387, 0.014814319089055061, 0.01761871762573719, -0.01955782063305378, -0.02796059288084507, 0.03815651312470436, -0.012239275500178337, 0.016117477789521217, 0.010779736563563347, -0.007391521707177162, 0.049999628216028214, 0.023561125621199608, -0.02046481892466545, -0.007938848808407784, 0.01996440626680851, -0.0175978671759367, 0.019422290846705437, -0.011749287135899067, 0.008381922729313374, -0.0011572057846933603, -0.012072470970451832, 0.004631429444998503, 0.03409065678715706, -0.015721317380666733, 0.0023847820702940226, -0.015783870592713356, -0.03978285938501358, -0.023978138342499733, -0.008037888444960117, -0.021048635244369507, -0.015001974068582058, 0.00417792983353138, 0.005806879606097937, 0.010018691420555115, 0.009335835464298725, 0.00946615170687437, 0.006849407218396664, 0.0017462339019402862, 0.0015572757693007588, -0.006333355791866779, -0.04653843864798546, 0.01641981117427349, 0.00598932197317481, -0.01732681132853031, 0.014470284804701805, -0.006766004953533411, -0.012499907054007053, 0.005973683670163155, 0.0015051494119688869, 0.003341301344335079, 0.005551460199058056, 0.022873058915138245, -0.027126571163535118, 0.028023144230246544, -0.01606535166501999, 0.003661878639832139, 0.006041448097676039, -0.04578781872987747, -0.023227518424391747, -0.024040689691901207, 0.009122117422521114, 0.006057085935026407, 0.01697235181927681, 0.00228313566185534, 0.003747887210920453, -0.013073297217488289, 0.0244159996509552, -0.02183053083717823, -0.004230056423693895, -0.02827335149049759, -0.015564939007163048, -0.007605239748954773, 0.009163818322122097, 0.02973289042711258, -0.005100566893815994, 0.026584457606077194, -0.020715026184916496, -0.025771284475922585, -0.019140809774398804, 0.0020485669374465942, 0.025625331327319145, 0.012416505254805088, -0.03988711163401604, -0.036279965192079544, -0.012197574600577354, -0.023873884230852127, 0.0001545058621559292, -0.03361109271645546, 0.004571483936160803, -0.031109027564525604, 0.0009083022596314549, -0.021027784794569016, 0.009930076077580452, -0.015054100193083286, 0.02051694504916668, 0.04416147246956825, -0.008387135341763496, 0.05475355684757233, -0.03071286715567112, 0.01905740611255169, 0.0008060042164288461, -0.0005378791247494519, -0.026146594434976578, -0.0005649197264574468, -0.0012080289889127016, -0.00027903905720449984, -0.043244048953056335, -0.018775925040245056, 0.010190708562731743, 0.01205162052065134, -0.0193910151720047, 0.03667612373828888, -0.053085509687662125, 0.008778083138167858, -0.0014478103257715702, 0.0024968539364635944, -0.01123844925314188, 0.010180283337831497, -0.005535822361707687, -0.006364631932228804, 0.036947183310985565, 0.026292549446225166, -0.0015142714837566018, 0.010482615791261196, 0.00026649615028873086, -0.011697161011397839, 0.037885457277297974, -0.014522410929203033, 0.0005730644334107637, -0.010644207708537579, -0.008168204687535763, -0.008397560566663742, -0.002455152804031968, 0.007709492463618517, -0.03511233255267143, -0.0383024699985981, -0.037113986909389496, 0.005723477341234684, 0.006729516200721264, 0.022602001205086708, 0.025729583576321602, -0.04336915165185928, -0.019995681941509247, 0.005853793118149042, -0.055545877665281296, 0.003445554058998823, 0.023519424721598625, 0.04687204584479332, 0.017087029293179512, 0.0028851954266428947, 0.004832115955650806, -0.06426140666007996, 0.0193910151720047, 0.025750434026122093, -0.008345434442162514, -0.021455220878124237, -0.015335583128035069, -0.033048126846551895, -0.015366858802735806, 0.02168457582592964, -0.001979499589651823, -0.027397628873586655, 0.0052439142018556595, -0.01613832823932171, -0.00331263174302876, 0.03552934527397156, -0.016576191410422325, -0.006317717954516411, -0.0033699709456413984, -0.00040560844354331493, 0.028565259650349617, -0.023352621123194695, -0.026918064802885056, 0.0209443811327219, -0.00940881296992302, 0.015585789456963539, -0.009069991298019886, -0.0017279896419495344, -0.003727036528289318, -0.004649673588573933, 0.02341517247259617, -0.013552860356867313, -0.028857167810201645, 0.022247541695833206, -0.005105779506266117, 0.014564111828804016, 0.01671171933412552, 0.0025659212842583656, -0.008824997581541538, -0.014042848721146584, -0.000500739086419344, 0.007839808240532875, -0.010623357258737087, -0.012479056604206562, 0.01123844925314188, 0.007975337095558643, -0.03442426398396492, -0.0052439142018556595, -0.014282629825174809, -0.010049967095255852, -0.012020344845950603, 0.013803066685795784, 0.014657939784228802, 0.035133183002471924, 0.0067816427908837795, -0.02506236545741558, -0.04203471913933754, 0.03313153237104416, 0.01511665154248476, 0.009669444523751736, -0.0004411195404827595, -0.012604160234332085, 0.001217802637256682, 0.030483510345220566, 0.027522731572389603, -0.010347087867558002, -0.027835490182042122, 0.026292549446225166, 0.004777383059263229, -0.02079842798411846, 0.007250780239701271, -0.02939928136765957, -0.010513892397284508, -0.022685403004288673, 0.001660225447267294, 0.008147354237735271, -0.015335583128035069, -0.017629142850637436, 0.013563285581767559, -0.015241755172610283, 0.005358592607080936, 8.279136091005057e-05, 0.013792641460895538, 0.01268756203353405, 0.01551281288266182, 0.016211306676268578, -0.03277707099914551, 0.02245604619383812, -0.032589416950941086, 0.005796453915536404, -0.022080736234784126, 0.019620371982455254, -0.031109027564525604, -0.001617221161723137, 0.026584457606077194, -0.027585282921791077, 0.04157600551843643, 0.00800661277025938, -0.028815466910600662, -0.03930329531431198, -0.011843115091323853, 0.03778120502829552, 0.011519931256771088, 0.010326237417757511, -0.024999814108014107, -0.0240615401417017, -0.018442315980792046, 0.025437677279114723, -0.022080736234784126, -0.014282629825174809, 0.009127330034971237, -0.008022250607609749, 0.01037836354225874, 0.028398454189300537, 0.003471617354080081, -0.01845274120569229, -0.03874032944440842, 0.0418887622654438, -0.053085509687662125, 0.03479957580566406, -0.008720744401216507, -0.001089441473595798], [0.019318457692861557, -0.0006529835518449545, 0.005558984819799662, 0.03956059738993645, -0.002837222535163164, 0.0374879464507103, -0.03591093048453331, -0.006657264195382595, 0.028679179027676582, 0.024443762376904488, -0.00032543574343435466, 0.003182194894179702, 0.02175156958401203, 0.03705989941954613, -0.02244996279478073, -0.014767637476325035, 0.0014432520838454366, 0.011534752324223518, 0.013269471004605293, 0.004390302579849958, 0.021053176373243332, 0.037240128964185715, -0.03629392012953758, -0.031202407553792, -0.0028527111280709505, -0.031022176146507263, 0.01352855283766985, -0.012773836962878704, 0.03802863880991936, -0.05992664396762848, 0.008149798028171062, -0.030481485649943352, 0.03399597853422165, -0.00042452733032405376, 0.06366642564535141, 0.022562606260180473, -0.022235939279198647, 0.01533085759729147, 0.012526020407676697, 0.017527416348457336, -0.01676143705844879, -0.04190359264612198, 0.03341022878885269, 0.012458434328436852, -0.010064747184515, 0.05226684734225273, -0.0270571056753397, -0.036001045256853104, 0.011106705293059349, 0.030323782935738564, -0.012514756061136723, 0.05312294140458107, 0.03911001980304718, 0.009208652190864086, 0.02872423641383648, 0.022945595905184746, 0.035978514701128006, 0.014193152077496052, 0.05460984259843826, -0.038749560713768005, -0.057763878256082535, -0.004950706847012043, 0.004742315039038658, 0.03399597853422165, -0.006324964575469494, 8.998325210995972e-05, -0.026561470702290535, 0.032531607896089554, -0.047220394015312195, -0.045710962265729904, 0.03701484203338623, 0.03440149873495102, 0.003210355993360281, -0.034446556121110916, 0.007457037456333637, -0.01926213502883911, -0.001775552169419825, 0.03651920706033707, 0.018406040966510773, 0.024916868656873703, -0.05852985754609108, 0.027778027579188347, -0.05253719165921211, -0.05186132714152336, 0.015984192490577698, -0.015308328904211521, -0.030301254242658615, 0.009811297990381718, 0.006251745857298374, -0.030143553391098976, 0.05641214922070503, 0.01448602695018053, -0.027980785816907883, -0.0030216770246624947, 0.016400976106524467, 0.006657264195382595, 0.017842819914221764, -0.03136010840535164, -0.021267199888825417, 0.021852949634194374, -0.03787093609571457, -0.03289206698536873, -0.014587407000362873, 0.014576142653822899, 0.004145301878452301, -0.038321513682603836, -0.03859185799956322, -0.005885652732104063, 0.010515323840081692, 0.0086679607629776, 0.05479007586836815, -0.02175156958401203, 0.028926996514201164, 0.044043831527233124, -0.024488819763064384, -0.009743711911141872, 0.026809288188815117, -0.022968124598264694, 0.013990392908453941, -0.02067018672823906, -0.03717254102230072, 0.03451414406299591, -0.006741747260093689, -0.055556055158376694, -0.00686565600335598, 0.06970415264368057, -0.018101900815963745, -0.017133163288235664, -0.0596562996506691, 0.013472230173647404, 0.06497310101985931, 0.006477033719420433, 0.043773483484983444, -0.060377221554517746, -0.02315961942076683, -0.040574394166469574, 0.009591642767190933, -0.03555046766996384, 0.016738908365368843, 0.004652199801057577, 0.009901413694024086, -0.012221881188452244, 0.002540123648941517, 0.001512246555648744, -0.00991830974817276, -0.025998251512646675, -0.035415295511484146, 0.02107570506632328, 0.027417566627264023, 0.007721750997006893, 0.010560381226241589, 0.043345436453819275, -0.024736637249588966, 0.006043354049324989, 0.019205814227461815, 0.004128404892981052, -0.0037961050402373075, 0.020197080448269844, 0.0319233275949955, 0.04228658229112625, -0.0180343147367239, 0.0026316470466554165, 0.004595878068357706, 0.016727644950151443, -0.014170623384416103, 0.02094053290784359, 0.0030751831363886595, 0.015578674152493477, -0.029918264597654343, -0.0014291716506704688, -0.0013179356465116143, -0.03911001980304718, -0.03771323338150978, -0.003618690650910139, -0.04645441472530365, -0.06348619610071182, 0.01373131200671196, 0.030977118760347366, 0.023407436907291412, -0.014688786119222641, 0.03131505101919174, 0.05920572206377983, -0.015274535864591599, -0.040709566324949265, -0.009383250959217548, -0.02924240007996559, 0.014350853860378265, -0.027372509241104126, -0.008510258980095387, 0.01323567796498537, 0.017865348607301712, -0.014260739088058472, 0.011895213276147842, 0.0035313914995640516, -0.0014418440405279398, -0.00259785377420485, -0.02189800702035427, -0.02453387714922428, 0.04866223782300949, -0.044854868203401566, 0.03532518073916435, -0.07168668508529663, -0.012289468199014664, -0.047896258533000946, -0.05005902424454689, 0.025142155587673187, 0.019994322210550308, -0.03787093609571457, 0.03341022878885269, -0.0720471441745758, 0.022157087922096252, -0.03489713370800018, -0.02800331450998783, 0.019735241308808327, -0.006263010203838348, -0.03136010840535164, 0.008206120692193508, 0.0004977459902875125, 0.022145824506878853, 0.024511348456144333, -0.026246067136526108, 0.02579549141228199, 0.003936910070478916, -0.03674449399113655, -0.05488019064068794, -0.018822824582457542, -0.034333910793066025, -0.06407194584608078, -0.009101640433073044, -0.06501815468072891, -0.029355043545365334, 0.017989257350564003, -0.0149028105661273, -0.024083301424980164, 0.039312779903411865, -0.014722580090165138, -0.0017980809789150953, -0.052492134273052216, -0.019329721108078957, 0.0009778912644833326, 0.019104434177279472, 0.006212320178747177, 0.030999647453427315, -0.01073497999459505, 0.027124691754579544, -0.0002254641440231353, 0.01997179351747036, -0.02301318384706974, 0.009890149347484112, 0.02051248401403427, 0.036969784647226334, 0.005902549251914024, 0.06339608132839203, -0.05920572206377983, -0.01442970521748066, 0.008200488053262234, -0.01805684342980385, -0.059836529195308685, -0.0038327143993228674, 0.028070902451872826, -0.00874117948114872, 0.026155952364206314, 0.02899458259344101, 0.011010957881808281, -0.0678567886352539, -0.01869891583919525, 0.0735791027545929, -0.0016094021266326308, -0.008177959360182285, 0.059431008994579315, -0.04318773373961449, 0.01830466091632843, -0.012807630933821201, -0.037510473281145096, -0.07168668508529663, -0.00613346928730607, -0.0016798046417534351, 0.016299596056342125, -0.010368886403739452, -0.060106873512268066, -0.03892979025840759, 0.009124169126152992, 0.03408609330654144, -0.026291124522686005, 0.028386304154992104, -0.01296533178538084, 0.034604258835315704, -0.027687910944223404, -0.012244409881532192, 0.017809027805924416, 0.057763878256082535, -0.010442105121910572, -0.005539271980524063, 0.011602339334785938, 0.03926772251725197, -0.013145562261343002, 0.010273138992488384, 0.00627990672364831, -0.006212320178747177, 0.0077386475168168545, 0.018135694786906242, 0.04309761896729469, -0.06114320084452629, -0.015984192490577698, -0.05519559234380722, 0.014373383484780788, 0.0277554988861084, 0.005237949080765247, 0.0022303524892777205, -0.03381574898958206, -0.010943370871245861, 0.053213056176900864, -0.05005902424454689, 0.02649388462305069, -0.023384908214211464, 0.0214812234044075, -0.011681189760565758, 0.018135694786906242, 0.04559831693768501, -0.00776680838316679, 0.013021654449403286, 0.0018684834940358996, -0.002179662697017193, -0.01596166379749775, 0.010312564671039581, 0.01346096582710743, -0.0013996025081723928, 0.001389042125083506, -0.010937739163637161, -0.011095440946519375, -0.006921977736055851, -0.01385522074997425, 0.01913822628557682, 0.011669925414025784, 0.0006998012540861964, 0.00037700560642406344, -0.037240128964185715, 0.0610080286860466, -0.006814965978264809, 0.024443762376904488, -0.03647414967417717, -0.004669096786528826, -0.030030908063054085, -0.0011151762446388602, -0.06263010203838348, 0.043638311326503754, -0.029985850676894188, -0.0017037414945662022, -0.023339850828051567, -0.0037792085204273462, 0.017685119062662125, -0.02428606152534485, 0.013674990274012089, -0.0018769317539408803, -0.01413683034479618, 0.007288071326911449, 0.039988644421100616, 0.015398443676531315, -0.04780614376068115, 0.06353125721216202, 0.0035792652051895857, -0.026719173416495323, -0.012435904704034328, 0.04206129536032677, -0.009096008725464344, -0.03063918650150299, -0.05050960183143616, -0.004364957567304373, 0.0333201140165329, -0.030729301273822784, 0.027530210092663765, 0.020208345726132393, -0.02274283766746521, 0.015398443676531315, 0.056367091834545135, 0.025570202618837357, 0.019487423822283745, 0.012785101309418678, -0.00471978634595871, 0.03172057121992111, 0.0027992050163447857, -0.006837495137006044, 0.023677783086895943, 0.03685713931918144, -0.012706250883638859, 0.04726545140147209, -0.04052933678030968, -0.006854391656816006, 0.01691913977265358, -0.020433634519577026, -0.003193459240719676, -0.05384386330842972, -0.015758905559778214, 0.02065892145037651, -0.06046733632683754, 0.03246401995420456, 0.012402111664414406, -0.0017150059575214982, -0.010306932032108307, -0.01776397041976452, -0.012706250883638859, -0.04233163967728615, 0.028048373758792877, -0.018789030611515045, -0.04645441472530365, 0.052086617797613144, -0.02383548393845558, -0.02358766831457615, -0.021402372047305107, 0.028453892096877098, 0.03410862386226654, -0.020760301500558853, 0.023925600573420525, 0.03897484764456749, 0.01927340030670166, 0.020557543262839317, -0.040574394166469574, 0.01814696006476879, -0.02415088750422001, -0.013956599868834019, 0.035009775310754776, 0.01860879920423031, -0.03568563982844353, 0.01276257261633873, -0.0235651396214962, 0.06546872854232788, 0.0443817637860775, 0.04316520690917969, 0.013066711835563183, -0.021830420941114426, 0.02315961942076683, 0.012424640357494354, -0.01829339750111103, 0.0012806222075596452, 0.019081905484199524, -0.04217394068837166, -0.03217114508152008, -0.0034018508158624172, 0.02248375676572323, -0.0024288876447826624, -0.0610530860722065, -0.0242635328322649, 0.018259603530168533, 0.0024443762376904488, -0.05460984259843826, -0.0013848179951310158, 0.013787633739411831, 0.04546314477920532, 0.011895213276147842, -0.013280735351145267, 0.005919445771723986, 0.013472230173647404, -0.06623471528291702, -0.009907045401632786, -0.012379582971334457, -0.041520603001117706, 0.012390847317874432, -0.03672196716070175, 0.03066171519458294, -0.01483522355556488, 0.026291124522686005, -0.018259603530168533, 0.006082779727876186, 0.01171498280018568, 0.007772440556436777, 0.010864520445466042, 0.012458434328436852, 4.556914518616395e-06, -0.033207472413778305, 0.0015052063390612602, -0.022945595905184746, 0.018079372122883797, -0.004150934051722288, 0.013945335522294044, 0.005801169667392969, -0.008606006391346455, 0.028206074610352516, -0.021819155663251877, 0.017955465242266655, -0.011895213276147842, -0.01830466091632843, 0.029873207211494446, -0.020354783162474632, -0.01762879639863968, 0.07272300869226456, -0.011624868027865887, 0.05618686228990555, 0.016468562185764313, -0.039019905030727386, -0.047220394015312195, -0.029467688873410225, 0.004212887957692146, 0.03645161911845207, -0.008690489456057549, 0.010977164842188358, 0.02151501737535, 0.0050323735922575, -0.01774143986403942, -0.0013228637399151921, -0.01533085759729147, -0.00999152846634388, -0.056502263993024826, 0.0001722222223179415, -0.008527155965566635, 0.0430300347507, -0.006454505026340485, -0.006077147554606199, 0.009850723668932915, -0.015026718378067017, -0.01666005700826645, -0.012435904704034328, 0.016017986461520195, 0.03077435865998268, 0.008842559531331062, -0.02608836628496647, -0.061098143458366394, 0.052717424929142, -0.016322124749422073, -0.039177607744932175, 0.04645441472530365, 0.005536456126719713, -0.01773017644882202, 0.01081383042037487, -0.019217077642679214, -0.00963670015335083, 0.05366363376379013, 0.019194548949599266, -0.050149139016866684, -0.0032244364265352488, 0.030143553391098976, -0.015206948854029179, -0.0031652983743697405, -0.010926474817097187, 0.03160792589187622, 0.005221052560955286, 0.005806801840662956, 0.036001045256853104, -0.002531675389036536, 0.00923118181526661, 0.0005100663984194398, -0.015173155814409256, -0.018090637400746346, 0.008048418909311295, -0.022551342844963074, 0.017865348607301712, -0.03850174322724342, 0.00374541524797678, 0.007006460800766945, 0.021582603454589844, -0.01040831208229065, 0.003632771084085107, 0.05231190472841263, -0.009445205330848694, 0.008104740642011166, -0.010774404741823673, 0.03262172266840935, 0.014745108783245087, -0.044877395033836365, -0.03361298888921738, -0.038884732872247696, -0.01787661388516426, 0.0416107177734375, 9.53954440774396e-05, -0.015195684507489204, 0.008104740642011166, 0.048617180436849594, -0.014395912177860737, -0.0373978316783905, 0.004778924398124218, -0.012818895280361176, -0.005970135796815157, 0.00921428482979536, -0.02397065795958042, 0.016614999622106552, 0.006189791485667229, 0.034852076321840286, 0.02455640770494938, -0.027214806526899338, 0.024759165942668915, -0.005161914508789778, 0.015150627121329308, 0.018518684431910515, -0.02220214530825615, -0.022844217717647552, -0.011760041117668152, 0.010774404741823673, -0.007028989959508181, 0.0054632374085485935, -0.03093206137418747, 0.020073173567652702, 0.005254845600575209, 0.027282392606139183, -0.020749038085341454, 0.008234281092882156, 0.0016798046417534351, 0.005609674379229546, -0.0027090897783637047, -0.020884210243821144, -0.011827627196907997, -0.008330028504133224, 0.027214806526899338, -0.04012381657958031, 0.011151762679219246, 0.051906388252973557, -0.04174588993191719, -0.009845091961324215, -0.02955780364573002, -0.03007596544921398, 0.06578413397073746, -0.021109499037265778, 0.04825671762228012, -0.023497551679611206, -0.02762032486498356, -0.044854868203401566, -0.02415088750422001, -0.00042452733032405376, -0.0749308317899704, -0.01984788477420807, 0.006685425527393818, -0.016862817108631134, -0.041543133556842804, 0.03809622302651405, 0.021582603454589844, -0.007620371412485838, -0.02466905117034912, 0.014328325167298317, 0.001451700460165739, -0.0039453585632145405, -0.029219871386885643, 0.010622335597872734, -0.023745369166135788, -0.01401292160153389, -0.031382638961076736, 0.00398478377610445, 0.0006160222692415118, -0.011427740566432476, -0.04134037345647812, -0.0006110940594226122, 0.010768773034214973, 0.010329460725188255, -0.01221061684191227, 0.03498724848031998, 0.05798916518688202, -0.002351444913074374, 0.06997449696063995, 0.025209741666913033, 0.0013644013088196516, 0.014407176524400711, 0.014395912177860737, 0.0017600635765120387, 0.028341246768832207, 0.006302435416728258, -0.030323782935738564, 0.0166375283151865, -0.0007476750179193914, 0.016310861334204674, -0.023610197007656097, 0.018406040966510773, 0.00022229603200685233, 0.04384107142686844, -0.025615261867642403, 0.010656128637492657, 0.01510556973516941, 0.0011954351793974638, 0.01831592619419098, 0.030999647453427315, 0.032509077340364456, -0.02633618377149105, 0.002557020401582122, -0.0045705330558121204, 0.0002569692733231932, -0.01997179351747036, 0.028634121641516685, -0.03021113947033882, 0.01608557254076004, -0.03392839431762695, -0.021683983504772186, 0.013021654449403286, -0.004539555869996548, 0.03453667089343071, -0.010076011531054974, -0.006229217164218426, -0.02220214530825615, 0.032779425382614136, 0.017932934686541557, -0.02412835881114006, 0.011072912253439426, 0.006212320178747177, -0.009462101384997368, 0.00839198287576437, -0.013269471004605293, 0.013674990274012089, -0.0026851529255509377, 0.023384908214211464, 0.01268372219055891, 0.054024096578359604, 0.039853472262620926, -0.0228667464107275, -0.007034622132778168, -0.025953194126486778, 0.017809027805924416, -0.0029202974401414394, -0.027845613658428192, -0.06483792513608932, -0.040416691452264786, -0.019160756841301918, -0.005114040803164244, -0.012435904704034328, 0.023204678669571877, 0.024173416197299957, 0.008988996967673302, -0.009732447564601898, -0.04866223782300949, 0.003182194894179702, -0.0024570487439632416, -0.012751308269798756, -0.015274535864591599, -0.0029202974401414394, 0.004657831974327564, 0.012052915059030056, -0.03232884779572487, 0.0068938168697059155, -0.028115959838032722, 0.0021205246448516846, -0.011078543961048126, -0.015871549025177956, -0.03924519196152687, -0.010121069848537445, -0.03983094170689583, 0.020061908289790154, 0.024781694635748863, -0.012323261238634586, 0.005190075375139713, -0.014305796474218369, -0.059836529195308685, 0.01352855283766985, -0.025908134877681732, 0.029625389724969864, 0.00683186249807477, -0.01666005700826645, 0.0039819679223001, -0.02773297019302845, -0.012841423973441124, -0.016344653442502022, 0.002407766878604889, 0.001812161412090063, 0.0019769032951444387, -0.017009254544973373, 0.03275689482688904, 0.020489955320954323, -0.003517311066389084, 0.006696689873933792, -0.019588803872466087, -0.00991830974817276, 0.03273436427116394, -0.018113166093826294, 0.009349457919597626, 0.021661454811692238, -0.00858911033719778, 0.022100765258073807, 0.01679523102939129, 0.008290603756904602, -0.009208652190864086, 0.03259919211268425, 0.0035116788931190968, -0.03951554000377655, -0.031269993633031845, 0.0005449156742542982, -0.0007716118707321584, -0.018090637400746346, 0.008099108934402466, 0.008515891619026661, -0.01760626770555973, 0.018417304381728172, 0.020467426627874374, -9.812354255700484e-05, -0.04061945155262947, 0.01525200717151165, 0.0007856923621147871, -0.036541733890771866, -0.009884516708552837, 0.001155305770225823, -0.018068108707666397, 0.03415368124842644, -0.0035820812918245792, 0.005567432846873999, 0.005347777158021927, -0.015499823726713657, 0.0023979106917977333, 0.02831871807575226, -0.0305040143430233, -0.022821689024567604, -0.03104470483958721, -0.0007448588730767369, -0.018394775688648224, -0.028791824355721474, 0.016603736206889153, -0.04553073272109032, -0.046950045973062515, 0.010875784792006016, 0.02622353844344616, -6.09422022535e-05, -0.050554659217596054, 0.04467463865876198, 0.07191197574138641, -1.615958353795577e-05, -0.01801178604364395, -0.020444897934794426, -0.036541733890771866, 0.00044494407484307885, -0.006054618861526251, -0.0002553852100390941, 0.015466030687093735, -0.025029512122273445, -0.014812694862484932, 0.004165014252066612, -0.004514210857450962, -0.014418440870940685, -0.013708783313632011, 0.009574745781719685, 0.0073781865648925304, 0.007930142804980278, 0.03525759279727936, 0.0029118491802364588, 0.007124737370759249, 0.02816101722419262, -0.0025936297606676817, 0.03311735764145851, -0.01331452839076519, 0.002658399986103177, -0.009518424049019814, 0.005556168500334024, -0.01074061170220375, 0.002064202446490526, 0.006493930704891682, 0.01311176922172308, -0.04839188978075981, 0.009174859151244164, -0.03519000858068466, 0.004900016821920872, 0.05370869114995003, 0.007462669629603624, -0.06168389320373535, -0.013967864215373993, -0.02012949436903, -0.00600392883643508, -0.0006301027606241405, 0.008713019080460072, -0.04330037906765938, 0.04131784290075302, -0.014621200039982796, 0.004328348208218813, -0.028341246768832207, 0.016299596056342125, 0.002544347895309329, -0.007907613180577755, -0.014170623384416103, -0.001122216577641666, 0.025164684280753136, 0.03163045272231102, 0.01774143986403942, 0.00811037328094244, -0.008510258980095387, 0.05510547757148743, 0.006820598151534796, -0.0058743879199028015, 0.020895473659038544, -0.0159391351044178, -0.006409447640180588, -0.04451693594455719, 0.023069504648447037, -0.02552514523267746, -0.031112290918827057, -0.02831871807575226, -0.039200134575366974, -0.008369454182684422, -0.04447187855839729, 0.04839188978075981, 0.010870152153074741, -0.0016516436589881778, -0.007485198322683573, 0.011467166244983673, 0.0319233275949955, -0.014609935693442822, -0.01582649163901806, -0.004432544112205505, -0.018237074837088585, 0.009321296587586403, 0.03304976969957352, -0.003475069534033537, -0.016997989267110825, -0.03379322215914726, 0.022968124598264694, -0.02178536355495453, 0.018924202769994736, 0.016952931880950928, -0.016693850979208946, 0.00789634883403778, 0.0060884119011461735, -0.02674170210957527, -0.02692193165421486, 0.022280996665358543, -0.009203020483255386, -0.0031005279161036015, -0.04327785223722458, 0.011320728808641434, 0.018653858453035355, 0.0007990688318386674, -0.01788787730038166, 0.022100765258073807, -0.019870413467288017, -0.04649947211146355, -0.02247249148786068, 0.0068037016317248344, 0.024781694635748863, -0.000822301721200347, 0.005257661920040846, 0.0019783114548772573, 0.019487423822283745, 0.011568545363843441, 0.04645441472530365, -0.0180343147367239, -0.01503798272460699, 0.002430295804515481, 0.0086623290553689, -0.013123033568263054, -0.011850155889987946, 0.0015826491871848702, 0.01816948875784874, -0.052762482315301895, -0.01477890182286501, 0.03458172827959061, 0.01857500709593296, 0.05866502970457077, 0.03361298888921738, -0.03453667089343071, 0.023610197007656097, -0.023497551679611206, 0.03651920706033707, 0.018811559304594994, -0.022123295813798904, -0.026876874268054962, 0.0004340316809248179, -0.021402372047305107, -0.012188088148832321, 0.0020613863598555326, 0.01385522074997425, 0.04088979586958885, 0.0010145006235688925, 0.00956911314278841, -0.011624868027865887, -0.0011602338636294007, 0.038907259702682495, -0.0318557433784008, -0.007586577907204628, -0.016412241384387016, 0.0032610457856208086, 0.01619821786880493, -0.0035370236728340387, -0.029062168672680855, -0.01581522636115551, 0.03989852964878082, 0.018068108707666397, -0.02674170210957527, 0.03199091553688049, -0.002227536402642727, 0.01096026785671711, -0.03246401995420456, -0.010250610299408436, -0.007654164452105761, -0.030729301273822784, 0.0017811843426898122, 0.01261613517999649, 0.003917197231203318, 0.0002402486716164276, -0.011061647906899452, 0.0024443762376904488, 0.032373905181884766, 0.021537546068429947, -0.005299903452396393, -0.012109237723052502, 0.014474762603640556, 0.033072296530008316, 0.05226684734225273, -0.010284403339028358, 0.0072937035001814365, 0.04330037906765938, -0.02092926762998104, 0.009963368065655231, 0.0014953500358387828, 0.027124691754579544, -0.002417623298242688, 0.02275410108268261, 0.034176211804151535, 0.029062168672680855, 0.05866502970457077, -0.009107273072004318, -0.012807630933821201, 0.015972929075360298, 0.008380718529224396, 0.004432544112205505, 0.012807630933821201, 0.035595525056123734, 0.046544529497623444, -0.002328915987163782, -0.0039819679223001, 0.027372509241104126, -0.013393379747867584, -0.02054627798497677, -0.002352853072807193, -0.02177409827709198, 0.005975767970085144, 0.006736115086823702, 0.039583124220371246, -0.023632725700736046, 0.02581802010536194, 0.03701484203338623, -0.049428217113018036, -0.043345436453819275, -0.009253710508346558, -0.020771566778421402, 0.02383548393845558, 0.059160664677619934, 0.02399318665266037, 0.024331118911504745, -0.06141354516148567, -0.010351989418268204, 0.02345249429345131, 0.029783092439174652, -0.010982796549797058, 0.047761086374521255, 0.04034910351037979, 0.00706841517239809, 0.02678675949573517, 0.030323782935738564, 0.03090953268110752, -0.01773017644882202, -0.024623993784189224, -0.007620371412485838, 0.01150659192353487, -0.02080535888671875, -0.026291124522686005, -0.014350853860378265, 0.048617180436849594, -0.012740043923258781, -0.00956911314278841, -0.009005893021821976, 0.0022416168358176947, -0.00471697049215436, 0.023632725700736046, 0.005482949782162905, 0.05217673256993294, -0.01040831208229065, 0.011681189760565758, 0.0052435812540352345, -0.010841991752386093, -0.016952931880950928, 0.002568284748122096, 0.014305796474218369, 0.01428326778113842, 0.007620371412485838, -0.025885606184601784, 0.001225004205480218, 0.002431703731417656, 0.019769033417105675, -0.02856653556227684, -0.0008969283662736416, 0.03926772251725197, 0.02151501737535, 0.024511348456144333, 0.018406040966510773, 0.027913199737668037, 0.03117987886071205, 0.02151501737535, -0.01311176922172308, 0.022911803796887398, -0.0024471923243254423, -0.0006941690808162093, 0.003660932183265686, 0.013776369392871857, -0.006572781130671501, -0.023790426552295685, -0.03897484764456749, -0.03480701521039009, -0.0035820812918245792, -0.013190620578825474, -0.009664860554039478, -0.031698040664196014, -0.009253710508346558, -0.004973235540091991, -0.006009561009705067, -0.0013010390102863312, -0.0010588542791083455, 0.017121898010373116, 0.008104740642011166, -0.004328348208218813, -0.0027879406698048115, -0.007338760886341333, 0.005525191314518452, 0.0007385226781480014, 0.009135433472692966, 0.057763878256082535, 0.01311176922172308, -0.0017023334512487054, 0.037375301122665405, -0.011258774437010288, 0.0007008573156781495, 0.01040831208229065, 0.0036299549974501133, 0.04129531607031822, 0.03108976222574711, 0.01096589956432581, 0.01503798272460699, -0.038749560713768005, 0.035437822341918945, 0.0021768466103821993, 0.021165819838643074, -0.03136010840535164, 0.0049788677133619785, 0.032689306885004044, 0.000349548616213724, 0.0059982966631650925, -0.05880020186305046, 0.007845659740269184, 0.04489992558956146, 0.020737772807478905, -0.020174551755189896, 0.002328915987163782, 0.010216817259788513, -0.0024288876447826624, -0.0018037131521850824, -0.0049788677133619785, -0.03719507157802582, -0.059701357036828995, 0.018372246995568275, 0.01858627051115036, -0.02315961942076683, -0.02024213969707489, -0.014959132298827171, -0.004446624778211117, 0.029039639979600906, 0.0017206381307914853, 0.016333390027284622, 0.014947867952287197, 0.007552784867584705, 0.01677270233631134, 0.012728779576718807, 0.058439742773771286, -0.00838635116815567, -0.03401850908994675, 0.018529949709773064, 0.010447736829519272, -0.022021915763616562, -0.0011510815238580108, 0.006347493268549442, 0.01651361957192421, -0.03892979025840759, 0.0027175380382686853, 0.010216817259788513, -0.0032188042532652617, 0.006043354049324989, -0.014914074912667274, -0.03295965492725372, 0.029918264597654343, -0.009777504950761795, 0.018372246995568275, 0.0002075114898616448, 0.02550261653959751, -0.031224936246871948, 0.019104434177279472, -0.013370851054787636, 0.005204156041145325, -0.019205814227461815, -0.01323567796498537, 0.02955780364573002, 0.016434770077466965, 0.004359325394034386, -0.001548855914734304, 0.013055447489023209, -0.004677544813603163, 0.008008993230760098, 0.0027316187042742968, -0.03259919211268425, -0.013889013789594173, -0.04064197838306427, -0.0006857207627035677, -0.010447736829519272, -0.006854391656816006, -0.02563779056072235, -0.0100591154769063, 0.007231749128550291, 0.02080535888671875, 0.04785120114684105, -0.007057150825858116, -0.07028989493846893, 0.015646260231733322, -0.027237335219979286, 0.02800331450998783, 0.05479007586836815, 0.0033877703826874495, 0.004159382078796625, -0.004809901583939791, 0.00901715736836195, -0.018935468047857285, -0.03117987886071205, 0.008966467343270779, -0.00769358966499567, 0.02092926762998104, 0.012030386365950108, 0.0004312155651859939, -0.004776108544319868, -0.006234849337488413, -0.03201344236731529, -0.00041255890391767025, -0.009101640433073044, -0.01619821786880493, -0.005677260924130678, -0.0019135411130264401, -0.008746812120079994, -0.0005987736512906849, -0.020050644874572754, 0.010374519042670727, 0.005161914508789778, -0.018372246995568275, -0.0055139269679784775, 0.0026936011854559183, 0.06019698828458786, -0.018203280866146088, -0.004674728959798813, 0.014215681701898575, 0.02786814235150814, 0.011416476219892502, -0.0077048540115356445, -0.03802863880991936, 0.012402111664414406, 0.023610197007656097, 0.022495020180940628, 0.04586866497993469, 0.011872684583067894, 0.023767897859215736, 0.007811866234987974, 0.011805098503828049, 0.019036848098039627, -0.0291072279214859, -0.03519000858068466, -0.03399597853422165, 0.0019839436281472445, 0.032126087695360184, 0.006037721876055002, -0.031112290918827057, 0.038614384829998016, 0.010673025622963905, 0.01636718213558197, -0.009107273072004318, 0.004573349375277758, 0.01885661669075489, -0.010047851130366325, -0.04323279485106468, 0.041520603001117706, 0.016153158619999886, -0.01538717932999134, -0.010470266453921795, -0.0032807583920657635, 0.006493930704891682, 0.017797762528061867, -0.008994628675282001, 0.037510473281145096, -0.010605438612401485, -0.00928750354796648, 0.03949300944805145, 0.03214861825108528, 0.016299596056342125, 0.0346943736076355, 0.009225549176335335, 0.047896258533000946, 0.0010715266689658165, -0.0009884516475722194, -0.02054627798497677, 0.016964197158813477, 0.009811297990381718, -0.01596166379749775, 0.0016277068061754107, 0.028183545917272568, 0.010864520445466042, 0.01010980550199747, 0.0031709305476397276, 8.549508493160829e-05, 0.014046715572476387, -0.011427740566432476, 0.03424379602074623, -0.023204678669571877, 0.0072937035001814365, -0.01565752550959587, -0.004224152769893408, 0.0035398397594690323, 0.0035454719327390194, 0.03318494185805321, 0.006431976333260536, 0.012649929150938988, 0.0026260148733854294, 0.017662590369582176, -0.0022782261949032545, -0.0024894338566809893, 0.0006005336763337255, -0.0430300347507, 0.011286935769021511, -0.028949525207281113, 0.003655300009995699, 0.005387202370911837, -0.0004692329384852201, 0.03534770756959915, -0.002245841082185507, -0.001206699525937438, -0.016952931880950928, -0.003162482287734747, -0.009000261314213276, -0.01832718960940838, -0.0207828301936388, -0.015691319480538368, 0.022832952439785004, 0.04257945716381073, -0.061368487775325775, -0.04798637330532074, -0.0029090330936014652, 0.0007342984899878502, -0.04188106581568718, -0.0018206097884103656, 0.012492227368056774, 0.031562868505716324, -0.010447736829519272, 0.013506024144589901, 0.010881416499614716, -0.01276257261633873, 0.036406561732292175, -0.0027034576050937176, -0.013089240528643131, -0.0012102196924388409, 0.030143553391098976, -0.002251473255455494, 0.020692715421319008, 0.007259909994900227, -0.015905342996120453, -0.017583739012479782, 0.004818350076675415, 0.023384908214211464, 0.00426076166331768, -0.018529949709773064, -0.030413897708058357, 0.0007100096554495394, 0.0103914150968194, 0.021661454811692238, -0.030954590067267418, -0.012931538745760918, 0.0038327143993228674, -0.012785101309418678, 0.011692454107105732, 0.010780037380754948, 0.013190620578825474, -0.025863077491521835, 0.0013270878698676825, -0.009557848796248436, -0.00651645939797163, -0.01886788196861744, 0.007502094842493534, -0.0018910123035311699, -0.019780298694968224, -0.004945074673742056, 0.005116856656968594, -0.026426298543810844, 0.04318773373961449, -0.03399597853422165, -0.029985850676894188, -0.0038073693867772818, 0.012942803092300892, 0.014947867952287197, 0.03009849414229393, -0.005629387218505144, 0.00010560381633695215, 0.01846236363053322, 0.024083301424980164, -0.010915210470557213, -0.042354170233011246, -0.01151222363114357, -0.009264974854886532, 0.04246681183576584, -0.012030386365950108, -0.016682585701346397, -0.022585134953260422, 0.0022064156364649534, 0.003173746634274721, -0.013213149271905422, -0.006747379433363676, -0.006910713389515877, -0.049428217113018036, -0.029197342693805695, -0.031292520463466644, 0.013742576353251934, 0.023137090727686882, 0.013629931956529617, -0.020906738936901093, -0.03577575460076332, 0.0007540112128481269, 0.022945595905184746, -0.024353647604584694, 0.03163045272231102, -0.021560074761509895, -0.006381286308169365, 0.0033286320976912975, -0.04731050878763199, 0.008206120692193508, 0.022416168823838234, 0.019926736131310463, 0.033635519444942474, -0.010520955547690392, -0.016153158619999886, -0.015128098428249359, 0.013517288491129875, -0.024511348456144333, 0.01034072507172823, 0.021030647680163383, -0.017955465242266655, -0.02689940296113491, -0.019104434177279472, 0.041948650032281876, 0.02831871807575226, -0.020343517884612083, 0.0026851529255509377, 0.008544052951037884, -0.009845091961324215, 0.0033398966770619154, 0.034469082951545715, 0.0005716686719097197, -0.004004496615380049, 0.005274558439850807, 0.03965071216225624, -0.022844217717647552, -0.005007029045373201, 0.014519819989800453, 0.008532787673175335, -0.014801430515944958, -0.007676693145185709, 0.026043308898806572, 0.03079688735306263, -0.00569134159013629, 0.010949003510177135, 0.0025964458473026752, -0.00010595582716632634, 0.01346096582710743, -0.017944199964404106, 0.012931538745760918, 0.018417304381728172, 0.0011637540301308036, 0.05253719165921211, -0.006144734099507332, 0.022652722895145416, -0.0057279509492218494, -0.041926123201847076, -0.006527723744511604, 0.02246122620999813, 0.017155691981315613, -0.025164684280753136, -0.021807892248034477, 0.013551081530749798, -0.031945858150720596, -0.00028125816606916487, 0.012458434328436852, 0.022911803796887398, -0.023632725700736046, 0.0050689829513430595, -0.022292261943221092, -0.021154556423425674, 0.11615855991840363, 0.01323567796498537, -0.0159391351044178, -0.00686565600335598, -0.030571600422263145, 0.023520082235336304, 0.012661193497478962, 0.017234541475772858, 0.03548287972807884, 0.020456163212656975, 0.007879452779889107, 0.013889013789594173, -0.053618576377630234, 0.01565752550959587, -0.009980264119803905, 0.019160756841301918, -0.022585134953260422, -0.02924240007996559, 0.0026752965059131384, 0.007986464537680149, -0.005328064318746328, 0.034761957824230194, -0.011286935769021511, 0.0038693237584084272, -0.00949026271700859, 0.014373383484780788, 0.013945335522294044, 0.013359586708247662, 0.025480087846517563, -0.04406635835766792, -0.0007821722538210452, -0.03642909228801727, 0.010166127234697342, -0.027395037934184074, 0.003559552598744631, -0.005477317608892918, 0.028228603303432465, -0.02385801263153553, -0.02719227783381939, 0.011450269259512424, -0.00714163389056921, -0.03577575460076332, -0.019036848098039627, -0.030030908063054085, -0.0009074887493625283, 0.03852427005767822, 0.011827627196907997, -0.022213410586118698, -0.01717822067439556, -0.03354540467262268, 0.03455920144915581, -0.03167551010847092, -0.006381286308169365, 0.016952931880950928, 0.0006712882313877344, 0.00858911033719778, 0.012143030762672424, -0.002231760649010539, 0.012852688319981098, -0.006026457529515028, 0.045170269906520844, -0.05019419640302658, 0.015747640281915665, -0.01705431193113327, 0.01268372219055891], [-0.0190518070012331, 0.008033770136535168, 0.04836783930659294, -0.023729566484689713, -0.02596002258360386, -0.011276191100478172, -0.006804954260587692, 0.041428644210100174, 0.010326182469725609, 0.06757453829050064, -0.030297018587589264, -0.007873713970184326, 0.015685470774769783, 0.04233734682202339, -0.025464365258812904, -0.030710065737366676, -0.0019013083074241877, 0.01974366046488285, -0.015117530710995197, 0.022283900529146194, -0.045022156089544296, 0.028582872822880745, -0.06158535182476044, 0.023770872503519058, 0.0025854178238660097, 0.027839386835694313, -0.0201670341193676, -0.05572007969021797, 0.05245700478553772, -0.015282750129699707, 0.018896913155913353, -0.020755626261234283, 0.02928505279123783, 0.06088317185640335, 0.018587127327919006, -0.05803314596414566, -0.02265564352273941, 0.011307169683277607, 0.0051192049868404865, 0.02538175694644451, -0.024328485131263733, -0.009200628846883774, -0.010852817445993423, -0.05018524453043938, -0.022159988060593605, 0.03327095881104469, 0.00621119886636734, -0.03636881336569786, -0.012670225463807583, 0.019464854151010513, -0.013362079858779907, -0.005323146935552359, 0.01172021683305502, 0.005287005566060543, 0.016459934413433075, 0.0331883504986763, 0.015891995280981064, 0.06877237558364868, 0.02544371411204338, 0.0004549974109977484, 0.0304622370749712, 0.010852817445993423, -0.0035625328309834003, -0.03853731229901314, -0.002590581076219678, -0.03471662476658821, -0.00844681728631258, 0.01407458633184433, -0.020032793283462524, -0.011172928847372532, 0.04671564698219299, 0.046674344688653946, 0.02503066509962082, 0.008260945789515972, 0.0008338392362929881, -0.003673539264127612, -0.006603593472391367, 0.01752353087067604, 0.024328485131263733, -0.011338148266077042, -0.034737277776002884, -0.0017825572285801172, -0.04006558656692505, -0.04012754559516907, 0.007274795323610306, 0.004791348706930876, -0.05861141160130501, -0.0034850866068154573, -0.015189814381301403, 0.017100157216191292, 0.07282023876905441, 0.03907427564263344, 0.008379696868360043, 0.03700903803110123, -0.03601772338151932, -0.010181616060435772, 0.02034257911145687, -0.0724484920501709, -0.015096878632903099, 0.04407214745879173, 0.006691365968436003, -0.004063352942466736, -0.04465041309595108, 0.0025028083473443985, -3.9832440961617976e-05, -0.07265502214431763, -0.029987232759594917, 0.03205246850848198, 0.011472388170659542, -0.023812176659703255, -0.04973089322447777, -0.0014185593463480473, 0.011131624691188335, 0.010604988783597946, 0.008844375610351562, 0.024596966803073883, 0.00718702282756567, -0.03219703584909439, -0.0021633352153003216, -0.018143102526664734, -0.00864301435649395, -0.011090319603681564, -0.01689363457262516, 0.014993616379797459, 0.023956742137670517, 0.0017180185532197356, 0.013031641952693462, -0.0008080237894318998, -0.01848386600613594, -0.003340519964694977, 0.013465342111885548, -0.006490005645900965, 0.08698775619268417, 0.022490425035357475, 0.03579054772853851, -0.03337422013282776, -0.01800886169075966, 0.014363719150424004, -0.004747462458908558, -0.030111147090792656, -0.019991489127278328, 0.022944776341319084, 0.01611917093396187, 0.02629045955836773, -0.07558765262365341, 0.06270057708024979, -0.03892970830202103, 0.05357223376631737, -0.02127193473279476, 0.025340450927615166, -0.03285791352391243, 0.03432422876358032, 0.00790469255298376, 0.006768812425434589, -0.026641549542546272, 0.005756846629083157, 0.022221945226192474, 0.04465041309595108, -0.03515032306313515, -0.011544671840965748, -0.06600495427846909, -0.005968533456325531, -0.007729147560894489, 0.015737101435661316, 0.012474028393626213, -0.022304553538560867, 0.0351090207695961, -0.017812663689255714, -0.04659173637628555, -0.020724648609757423, -0.012587616220116615, -0.0392601452767849, 0.0438656210899353, 0.0271578598767519, -0.005829129833728075, 0.0036683762446045876, 0.032279644161462784, 0.03252747282385826, 0.005844619125127792, -0.008307414129376411, -0.03981775790452957, 0.07810724526643753, 0.0015153673011809587, -0.010367486625909805, -0.034799233078956604, 0.025485018268227577, 0.015644166618585587, -0.014353393577039242, -0.026125241070985794, 0.00488428445532918, 0.01764744520187378, -0.01974366046488285, 0.03952862694859505, 0.02980136126279831, 0.001746415626257658, -0.02284151501953602, -0.01890723966062069, -0.019433874636888504, -0.0005944008589722216, -0.042791698127985, -0.014405024237930775, -0.022304553538560867, -0.05121786519885063, -0.03760795667767525, 0.020838236436247826, 0.016738740727305412, -0.0073522417806088924, -0.003185627283528447, 0.08979648351669312, -0.043287355452775955, 0.024596966803073883, -0.06381580978631973, 0.00072476890636608, 0.015974603593349457, 0.024493703618645668, 0.054274413734674454, 0.03616229072213173, -0.029264399781823158, 0.06484842300415039, 0.003309541381895542, -0.020394209772348404, 0.02097247540950775, 0.019991489127278328, -0.0035289728548377752, -0.02178824506700039, -0.010145474225282669, 0.01584036275744438, 0.0036761208903044462, 0.014590895734727383, -0.03141224756836891, -0.036389466375112534, 0.0290785301476717, 0.022159988060593605, -0.047996096312999725, -0.01788494735956192, -0.021075738593935966, 0.04184168949723244, -0.06121360883116722, -0.0020123147405683994, -0.03490249440073967, 0.0375666506588459, -0.04849175363779068, -0.02709590271115303, 0.017771359533071518, 0.017110483720898628, -0.0021142857149243355, 0.02796330116689205, -0.03484053909778595, 0.040850378572940826, 0.027715472504496574, 0.02556762658059597, 0.0018871098291128874, 0.017151789739727974, -0.0631549283862114, 0.008539753034710884, 0.03721556067466736, 0.014353393577039242, -0.01974366046488285, 0.020580081269145012, -0.02025996893644333, 0.018803978338837624, -0.01311425119638443, 0.02178824506700039, -0.012566964142024517, -0.04638521000742912, -0.06716149300336838, 0.004551264923065901, -0.018587127327919006, -0.016315368935465813, 0.017781686037778854, -0.03715360537171364, 0.034406840801239014, 0.03886774927377701, -0.017502879723906517, -0.045269984751939774, 0.013485994189977646, 0.01719309389591217, -0.022965429350733757, -0.042791698127985, 0.007125065661966801, -0.026992641389369965, 0.0019219607347622514, 0.02955353446304798, -0.03601772338151932, 0.01423980575054884, 0.028582872822880745, 0.04312213882803917, 0.011152276769280434, -0.04948306456208229, 0.06873106956481934, 0.019640399143099785, -0.03915688395500183, 8.60784130054526e-05, -0.017812663689255714, 0.011441409587860107, 0.038330789655447006, 0.013506646268069744, 0.006428048480302095, 0.030482890084385872, 0.029161138460040092, 0.013506646268069744, 0.032754648476839066, -0.02955353446304798, -0.0233165193349123, -0.055885300040245056, 0.049772199243307114, 0.0047784410417079926, 0.02940896712243557, -0.0032191872596740723, -0.029966581612825394, -0.01321751344949007, 0.009396825917065144, -0.07009412348270416, -0.014322414994239807, -0.015375685878098011, 0.01381643209606409, 0.0059014130383729935, 0.03888840228319168, 0.005705215502530336, -0.02994592860341072, 0.004417024552822113, 0.020001815631985664, -0.01116260327398777, -0.010078353807330132, 0.05200265347957611, -0.013207186944782734, 0.046261295676231384, 0.005509018432348967, -0.01182347908616066, 0.0032475844491273165, -0.0263524167239666, -0.018174080178141594, -0.002031676471233368, -0.015241445042192936, -0.045146070420742035, 0.006464190315455198, -0.049111321568489075, -0.016883308067917824, -0.021499112248420715, 0.003709681099280715, 0.011978371068835258, -0.05505920574069023, -0.018205059692263603, 0.01848386600613594, 0.012804466299712658, 0.057000525295734406, 0.03674055635929108, -0.02676546387374401, -0.012969684787094593, 0.027901344001293182, -0.041697125881910324, 0.023027386516332626, 0.004037537146359682, 0.01869039051234722, -0.05138308182358742, -0.03397313877940178, 0.03804165497422218, 0.026682855561375618, 0.018504519015550613, 0.03826883062720299, -0.037318821996450424, 0.016067540273070335, 0.014456654898822308, 0.010914774611592293, 0.047128695994615555, -0.010506890714168549, -0.03021441027522087, -0.009562044404447079, -0.00038465028046630323, 0.003911041654646397, -0.019371917471289635, 0.011348474770784378, 0.04989611357450485, -0.010708251036703587, 0.004071097355335951, -0.02788069285452366, 0.03826883062720299, 0.014549590647220612, 0.016305042430758476, 0.01493165921419859, 0.032362256199121475, 0.004670016001909971, 0.02364695817232132, -0.01116260327398777, 0.021705634891986847, 0.014301762916147709, -0.06373319774866104, -0.028830701485276222, 0.0233165193349123, -0.017843643203377724, -0.005243118852376938, -0.009634328074753284, 0.021148022264242172, -0.007192186079919338, -0.07253110408782959, -0.01680069789290428, -0.018711041659116745, 0.049524370580911636, -0.03399379178881645, -0.02688937820494175, -0.024204570800065994, -0.049648284912109375, 0.025257842615246773, -0.0063299499452114105, 0.01986757479608059, -0.021375197917222977, -0.025980675593018532, 0.017802339047193527, 0.03448944911360741, -0.021623026579618454, -0.01950615830719471, -0.008421001955866814, 0.0323416031897068, 0.008353881537914276, 0.025216536596417427, 0.03087528422474861, -0.026662202551960945, 0.04173842817544937, 0.007445177529007196, -0.07533982396125793, 0.0051192049868404865, 0.0189382191747427, 0.009742752648890018, 0.011637607589364052, -0.046798259019851685, -0.015768080949783325, 0.003448945004492998, -0.03717425465583801, -0.02622850239276886, -0.019557788968086243, -0.03888840228319168, -0.021478459239006042, 0.015768080949783325, 0.07401807606220245, -0.06179187446832657, -0.015613188035786152, -0.03027636744081974, -0.007078597787767649, 0.009293563663959503, 0.03624489903450012, 0.011214233934879303, -0.03378726914525032, 0.020445840433239937, -0.011699564754962921, -0.027467645704746246, 0.022469772025942802, 0.004073678981512785, 0.043824318796396255, 0.011214233934879303, 0.04522867873311043, 0.025877412408590317, -0.026393722742795944, -0.022614339366555214, -0.014756114222109318, 0.0018445142777636647, -0.03996232524514198, -0.02019801177084446, -0.009531065821647644, -0.008049258962273598, -0.007321263197809458, -0.019908878952264786, 0.029243748635053635, -0.00197617313824594, 0.012804466299712658, 0.07125065475702286, 0.010821838863193989, 0.014022955670952797, 0.012040328234434128, -0.047541745007038116, -0.06765714287757874, -0.0008609454380348325, -0.00486105028539896, 0.014064260758459568, -0.018225712701678276, -0.015293075703084469, -0.01159630250185728, 0.018401257693767548, -0.038847096264362335, -0.041098207235336304, -0.08405512571334839, 0.007620722521096468, 0.032961174845695496, -0.04828522726893425, 0.009701448492705822, 0.0998748317360878, -0.013826757669448853, 0.06513755768537521, -0.006247340235859156, -0.027901344001293182, -0.01593329943716526, -0.05704183131456375, 0.053035274147987366, 0.023068690672516823, -0.006748160347342491, -0.0011203908361494541, 0.04198625683784485, -0.009618839249014854, 0.008421001955866814, 0.02397739514708519, -0.01641863025724888, -0.006169893778860569, -0.03436553478240967, -0.0050417585298419, 0.025980675593018532, 0.00882372260093689, 0.031102461740374565, -0.014022955670952797, 0.0028706786688417196, 0.03797969967126846, -0.058528799563646317, -0.03870253264904022, 0.0037716380320489407, -0.01335175335407257, 0.026063283905386925, -0.0014559917617589235, 0.013465342111885548, 0.04882219061255455, 0.013506646268069744, -0.05006133019924164, 0.02277955785393715, 0.029202444478869438, 0.0037045178469270468, -0.0028267924208194017, -0.019970836117863655, 0.0006963718915358186, 0.042791698127985, -0.040891680866479874, -0.0408710278570652, 0.006913378834724426, 0.002692552050575614, -0.04605477303266525, -0.030358975753188133, -0.018359951674938202, 0.018649084493517876, 0.007816920056939125, -0.005524507723748684, 0.008777255192399025, 0.02808721549808979, -0.05299396812915802, 0.02094149775803089, -0.02544371411204338, 0.010708251036703587, 0.0038878077175468206, -0.047996096312999725, -0.008498447947204113, 0.003740659449249506, 0.01341371051967144, 0.022283900529146194, 0.006433211732655764, 0.020652364939451218, 0.01875234767794609, 0.005823967047035694, 0.0015450550708919764, -0.023770872503519058, 0.005369614809751511, 0.02556762658059597, 0.012463701888918877, -0.02728177420794964, -0.012401744723320007, 0.009727263823151588, -0.023151300847530365, 0.02337847650051117, 0.0024382697883993387, -0.01394034642726183, -0.02185020223259926, 0.005369614809751511, 0.014632199890911579, -0.04692217335104942, 0.016573522239923477, -0.05134177953004837, -0.010604988783597946, -0.004812000785022974, 0.023894784972071648, 0.0072593060322105885, 0.06406363844871521, 0.0192066989839077, 0.02583610825240612, -0.015386011451482773, 0.03205246850848198, 0.05993316322565079, 0.027446992695331573, 0.02019801177084446, -0.009319379925727844, 0.0033482646103948355, -0.0011720217298716307, 0.02226324938237667, -0.014849049970507622, 0.006861748173832893, -0.034943800419569016, 0.022469772025942802, -0.004450584761798382, 0.02596002258360386, 0.04051993787288666, -0.030317671597003937, -0.0029610327910631895, 0.023171953856945038, -0.03498510643839836, 0.00748648215085268, -0.009314216673374176, 0.03386987745761871, -0.013145229779183865, 0.021168673411011696, 0.018473539501428604, 0.007434851489961147, -0.05311788246035576, 0.003229513531550765, -0.016057213768363, -0.040375374257564545, 0.05225048214197159, -0.009050899185240269, 0.016284389421343803, -0.027116553857922554, -0.05497659370303154, -0.02544371411204338, 0.003988488111644983, 0.017833316698670387, -0.08054421842098236, -0.05220917612314224, 0.009443293325603008, 0.01917572133243084, 0.020352905616164207, 0.008276435546576977, -0.024886099621653557, -0.02370891533792019, -0.01815342903137207, -0.0019942440558224916, 0.0018032095395028591, 0.0090457359328866, -0.022634992375969887, -0.008921821601688862, -0.017812663689255714, -0.005297331605106592, -0.01159630250185728, -0.03771121799945831, -0.008782418444752693, -0.015747427940368652, -0.03343617916107178, -0.03502640873193741, -0.0003627071564551443, 0.007171533536165953, 0.02010507695376873, 0.01878332532942295, 0.03331226482987404, -0.011131624691188335, 0.03814491629600525, 0.04312213882803917, 0.0024150358512997627, 0.004623548127710819, 0.049193933606147766, 0.008591383695602417, 0.02211868204176426, 0.014642526395618916, -0.019753986969590187, 0.007775615435093641, 0.008983778767287731, 0.002819047775119543, 0.00196197465993464, 0.042956918478012085, 0.006206035614013672, 0.029264399781823158, -0.016511565074324608, -0.003319867653772235, -0.01172021683305502, -0.007465829607099295, 0.014115891419351101, 0.0007099250215105712, 0.0680701956152916, -0.018742021173238754, -0.010873469524085522, -0.04062320291996002, -0.05006133019924164, 0.0233165193349123, 0.040974292904138565, -0.028789395466446877, 0.03684381768107414, -0.04737652465701103, -0.008312576450407505, 0.005483202636241913, -0.008596546947956085, 0.020569754764437675, -0.007584580685943365, -0.01577840745449066, -0.03000788576900959, 0.013134904205799103, 0.0046287113800644875, -0.008126705884933472, 0.016666458919644356, -0.04035472124814987, -0.008235130459070206, 0.012164242565631866, 0.0020278040319681168, -0.02166433073580265, 0.019454527646303177, -0.004117565229535103, 0.0003520582686178386, 0.014683831483125687, -0.0030204083304852247, 0.020270295441150665, -0.015406664460897446, -0.045476507395505905, 0.0032217688858509064, 0.044939544051885605, -0.012701204046607018, -0.055678773671388626, 0.023130647838115692, 0.04008623957633972, -0.011018036864697933, -0.010253898799419403, 0.03543945774435997, 0.003980743233114481, -0.008663667365908623, -0.005493529140949249, -0.008885679766535759, -0.011844131164252758, -0.012040328234434128, -0.00586010841652751, 0.006262829527258873, 0.01755451038479805, -0.003593511413782835, 0.020879540592432022, -0.05576138570904732, 0.014198500663042068, -0.002554439241066575, -0.013289796188473701, 0.016305042430758476, -0.005694889463484287, -0.007527786772698164, -0.016645805910229683, -0.014126216992735863, 0.005292168352752924, 0.003970417194068432, 0.004781022202223539, 0.009649817831814289, -0.004579661879688501, 0.0028577710036188364, 0.024080656468868256, -0.040106892585754395, -0.009133508428931236, 0.007347078528255224, -0.034613363444805145, 0.03797969967126846, -0.02589806541800499, -0.026579592376947403, 0.013165882788598537, 0.010708251036703587, 0.005436734762042761, -0.004135636147111654, 0.06571582704782486, -0.0005863335682079196, -0.0375666506588459, 0.024018699303269386, 0.0030152453109622, -0.011565323919057846, -0.006200872361660004, 0.0027235306333750486, -0.004367975052446127, 0.0131762083619833, 0.0172860287129879, 0.003696773201227188, 0.03643077239394188, 0.022036073729395866, 0.00615956773981452, 0.018979523330926895, -0.007202512118965387, 0.035005759447813034, 0.00844681728631258, -0.05204395949840546, 0.004233734682202339, -0.023481737822294235, -0.00317013799212873, -0.028066564351320267, -0.04134603217244148, 0.001538601121865213, 0.008235130459070206, 0.03205246850848198, -0.04101559519767761, -0.006841095630079508, -0.018432235345244408, 0.03744273632764816, -0.021643677726387978, 0.020776279270648956, -0.016790373250842094, 0.010052538476884365, -0.00024556953576393425, 0.01947518065571785, -0.03184594586491585, -0.009417477995157242, 0.0312676802277565, 0.035604678094387054, 0.005922065582126379, -0.02284151501953602, 0.03537750244140625, 0.031432900577783585, -0.010604988783597946, 0.0036941918078809977, -0.0013617653166875243, -0.02602197974920273, -0.006433211732655764, -0.019723007455468178, 0.023874133825302124, 0.0034747603349387646, -0.04012754559516907, 0.023027386516332626, 0.009128345176577568, 0.07889202982187271, -0.02346108667552471, -0.021230630576610565, 0.0002528301265556365, 0.013248492032289505, -0.03936340659856796, -0.007279958575963974, -0.029326356947422028, 0.019619746133685112, 0.025051318109035492, 0.01051721628755331, -0.012494680471718311, -0.0361829437315464, -0.00024363335978705436, 0.00543157197535038, -0.0027183673810213804, -0.0009003140148706734, 0.037132952362298965, -0.00567940017208457, 0.011513693258166313, 0.0006015000981278718, -0.001494714873842895, -0.0006186028476804495, -0.0131762083619833, -0.020807256922125816, -0.012845770455896854, 0.002602197928354144, 0.011431084014475346, 0.011110972613096237, -0.00948459841310978, 0.05584399402141571, 0.0222012922167778, -0.016738740727305412, -0.009949276223778725, 0.006381580606102943, -0.008482959121465683, 0.032362256199121475, 0.004726809915155172, 0.003900715382769704, 0.0030049190390855074, -0.04204821586608887, 0.012887075543403625, -0.017781686037778854, 0.01099738385528326, -0.0027183673810213804, 0.029057877138257027, 0.015489273704588413, -0.04128407686948776, 0.020290948450565338, -0.005782661959528923, 0.019485505297780037, -0.016129497438669205, -0.0026873890310525894, -0.017265377566218376, 0.000593755510635674, -0.0035883483942598104, 0.015251771546900272, -0.008152521215379238, 0.028913309797644615, 0.005617443006485701, 0.025195885449647903, -0.013465342111885548, 0.0009971220279112458, -0.020745299756526947, 0.03444814309477806, -0.00820931512862444, 0.024060005322098732, -0.02947092428803444, 0.008555241860449314, -0.00928840134292841, -0.02151976339519024, 0.04973089322447777, -0.02226324938237667, 0.02436979115009308, 0.03114376589655876, 0.01231913547962904, -0.03073071874678135, 0.026455679908394814, 0.01027971412986517, 0.015489273704588413, 0.00013343364116735756, -0.013661539182066917, -0.030152453109622, 0.008390023373067379, 0.002634467324241996, -0.010987058281898499, 0.02218063920736313, 0.02721981704235077, 0.015478947199881077, 0.0022872493136674166, -0.006195709574967623, -0.004073678981512785, 0.04221343249082565, 0.005421245936304331, -0.02583610825240612, -0.006861748173832893, -0.01683167740702629, -0.0019219607347622514, -0.02676546387374401, 0.026579592376947403, -0.013186534866690636, 0.009159323759377003, -0.0315774641931057, 0.016583848744630814, 0.017451247200369835, -0.011968045495450497, -0.030751371756196022, -0.009076714515686035, -0.022634992375969887, -0.026393722742795944, 0.005395430140197277, 0.02763286419212818, 0.011389778926968575, 0.03717425465583801, -0.016305042430758476, 0.0548526793718338, 0.03700903803110123, -0.012525659054517746, -0.026992641389369965, 0.020425189286470413, 0.020414862781763077, -0.01974366046488285, -0.0111006461083889, 0.02244912087917328, 0.02319260500371456, 0.0031804642640054226, 0.0034153847955167294, 0.04605477303266525, 0.027983954176306725, 0.026744812726974487, 0.03661664202809334, -0.06509625166654587, -0.0067171817645430565, 0.014570243656635284, 0.015045247972011566, 0.01995018497109413, 0.014559917151927948, -0.00876176543533802, 0.01764744520187378, -0.042419955134391785, -0.012938706204295158, -0.003722588764503598, 0.026930684223771095, 0.002979103708639741, 0.013847410678863525, -0.031432900577783585, -0.024989360943436623, 0.013702844269573689, 0.016852330416440964, 0.001506331842392683, 0.012401744723320007, 0.0023440434597432613, -0.0006628117989748716, 0.007507134694606066, 0.026538288220763206, 0.024142613634467125, 0.012267504818737507, 0.01638765074312687, 0.01896919682621956, 0.0189382191747427, 0.037256866693496704, 0.011503366753458977, -0.017533857375383377, -0.03006984293460846, 0.034943800419569016, 0.04411344975233078, -0.042502567172050476, -0.0009551718831062317, 0.03828948363661766, -0.006975336000323296, 0.00029671640368178487, -0.024679575115442276, 0.023564347997307777, 0.022758906707167625, 0.031185070052742958, 0.02503066509962082, -0.02637306973338127, 0.011699564754962921, 0.045146070420742035, 0.005243118852376938, -0.024989360943436623, 0.027199164032936096, 0.03973514959216118, -0.024390442296862602, 0.0006912088138051331, -0.01596427708864212, -0.003960090689361095, -0.00018441915744915605, 0.011885436251759529, 0.07562895864248276, -0.02430783398449421, 0.0201670341193676, 0.002362114144489169, 0.01851484552025795, 0.011007710359990597, 0.009959602728486061, 0.0044944710098207, 3.116006337222643e-05, 0.0031675563659518957, 0.02961549162864685, -0.03481988608837128, -0.010351997800171375, 0.0028500263579189777, -0.003942020237445831, -0.01986757479608059, 0.02517523244023323, 0.012030002661049366, -0.03331226482987404, 0.016098517924547195, 0.022428467869758606, -0.02286216802895069, 0.014745788648724556, 0.0014456654898822308, -0.027508949860930443, -0.0021852783393114805, 0.012339787557721138, 0.039507973939180374, 0.007192186079919338, 0.03576989471912384, 0.0182463638484478, 0.004812000785022974, -0.010475912131369114, 0.029450271278619766, 0.03814491629600525, 0.01656319573521614, 0.017337659373879433, -0.0027880691923201084, 0.026600245386362076, -0.0050236876122653484, 0.014281109906733036, 0.013341427780687809, 0.0004666143504437059, 0.019196372479200363, -0.02583610825240612, 0.005870434455573559, -0.0032450028229504824, -0.020631711930036545, -0.021623026579618454, -0.015003942884504795, -0.01176152192056179, -0.03546011075377464, 0.009696285240352154, -0.00543157197535038, 0.017998535186052322, 0.029636142775416374, -0.013455015607178211, -0.002945543499663472, -0.0007215419900603592, -0.03006984293460846, 0.027839386835694313, 0.02059040777385235, -0.009618839249014854, -0.02470022812485695, -0.0008164137834683061, 0.010832165367901325, -0.013651212677359581, 0.012990337796509266, -0.018803978338837624, -0.018793651834130287, -0.03529489040374756, 0.011286517605185509, -0.036802515387535095, -0.0008848247234709561, 0.013310449197888374, -0.015189814381301403, 0.027570907026529312, -0.014487633481621742, -0.014229479245841503, 0.004053026437759399, 0.00355995143763721, 0.015076226554811, 0.05287005379796028, -0.016852330416440964, 0.019991489127278328, -0.01626373641192913, -0.002932635834440589, -0.032031819224357605, 0.02536110393702984, 0.0008480377146042883, -0.022221945226192474, -0.011875109747052193, -0.0190518070012331, 0.030482890084385872, -0.0033069599885493517, 0.013465342111885548, -0.014105564914643764, 0.012535985559225082, 0.014962637796998024, 0.01002155989408493, 0.046674344688653946, -0.01773005537688732, -0.033622048795223236, 0.03876448795199394, 0.010780534707009792, 0.010429443791508675, -0.008297087624669075, 0.014900680631399155, 0.0394873209297657, 0.01896919682621956, -0.01689363457262516, 0.0006486133206635714, 0.006273155566304922, 0.007832408882677555, -0.033229656517505646, -0.030648108571767807, -0.002604779554530978, 0.018267016857862473, -0.03442749008536339, 0.035542719066143036, -0.028603525832295418, -0.011978371068835258, -0.014694157056510448, -0.01172021683305502, -0.01995018497109413, 0.0161708015948534, -0.003309541381895542, 0.036657948046922684, 0.01039846520870924, -0.04138733819127083, -0.013506646268069744, 0.021643677726387978, 0.006582941394299269, -0.018297994509339333, 0.004781022202223539, -0.007940834388136864, -0.0017606141045689583, 0.017337659373879433, -0.004799093119800091, -0.016160475090146065, -0.04138733819127083, 0.01275283470749855, 0.00998025480657816, -0.0031133440788835287, -0.03351878747344017, -0.0014985871966928244, -0.019155068323016167, 0.020683342590928078, -0.011585976928472519, 0.016067540273070335, 0.002203349256888032, 0.008591383695602417, -0.03831013664603233, -0.01142075750976801, 0.0647658184170723, -0.0026977150700986385, -0.006877237465232611, -0.01875234767794609, 0.034613363444805145, -0.022098030894994736, 0.018649084493517876, 0.02536110393702984, -0.007481318898499012, 0.006474516354501247, -0.03333291783928871, 0.005772335920482874, -0.02385348081588745, -0.011038688942790031, -0.0020962150301784277, 0.0052121407352387905, 0.01580938510596752, 0.02953288145363331, 0.02284151501953602, 0.003185627283528447, -0.008586220443248749, -0.029491577297449112, -0.01261859480291605, -0.01977463997900486, 0.004138217773288488, 0.016036560758948326, -0.029264399781823158, 0.054811377078294754, 0.017306681722402573, -0.0008951509371399879, -0.00982536282390356, 0.002087179571390152, -0.015799058601260185, 0.024328485131263733, 0.00976856891065836, -0.036472074687480927, -0.02736438252031803, 0.006582941394299269, 0.00519923260435462, 0.011110972613096237, -0.01069792453199625, -0.016480587422847748, -0.008617199026048183, 0.00936068408191204, 0.005268934648483992, 0.017606141045689583, -0.0334981344640255, -0.012329461984336376, -0.004853305872529745, 0.0069185420870780945, 0.02037355862557888, 0.01830832101404667, 0.028562219813466072, -0.001506331842392683, 0.015551230870187283, 0.038661226630210876, 0.02509262226521969, -0.05200265347957611, 0.0041950116865336895, 0.010666945949196815, -0.0006095674470998347, -0.004602895583957434, -0.02193281054496765, -0.009654980152845383, -0.00429052859544754, -0.0027235306333750486, -0.011864783242344856, 0.052291788160800934, -0.018287668004631996, 0.01692461222410202, 0.009608512744307518, -0.014064260758459568, 0.001561835058964789, -0.027715472504496574, 0.01896919682621956, -0.001335949869826436, -0.026517637073993683, 0.040251459926366806, -0.016439281404018402, 0.004618384875357151, -0.017141463235020638, -0.028789395466446877, 0.04861566796898842, 0.013795780017971992, -0.0016973662422969937, -0.02763286419212818, -0.00988731998950243, 0.013145229779183865, 0.05365484207868576, 0.023729566484689713, 0.029037224128842354, 0.027116553857922554, -0.003136577783152461, -0.034220967441797256, 0.004551264923065901, 0.010718577541410923, -0.03376661613583565, 0.015706123784184456, -0.029264399781823158, 0.005545159801840782, 0.025650236755609512, 0.0007112158345989883, -0.03636881336569786, 0.009691121987998486, 0.009918298572301865, 0.008245456963777542, 0.029822014272212982, 0.013568603433668613, -0.012628921307623386, -0.05650486797094345, -0.020394209772348404, -0.02577415108680725, 0.023089343681931496, -0.018401257693767548, -0.004708738997578621, -0.011926740407943726, 0.01791592687368393, 0.015623513609170914, 0.008415838703513145, 0.005302494391798973, 0.013207186944782734, -0.032031819224357605, 0.012030002661049366, 0.001608302933163941, -0.013971325010061264, 0.021168673411011696, 0.003059131558984518, 0.0230480395257473, 0.023213258013129234, -0.014704483561217785, 0.020538777112960815, 0.02091052010655403, 0.0007344497134909034, 0.03178399056196213, -0.02914048731327057, 0.02889265865087509, 0.0019013083074241877, 0.03766991198062897, 0.040313415229320526, -0.03033832274377346, 0.022676296532154083, 0.0036115823313593864, -0.002017477760091424, 0.004277620930224657, -0.015654493123292923, -0.004213082604110241, -0.013083272613584995, 0.01758548803627491, 0.009892482310533524, 0.024989360943436623, 0.017058853060007095, -0.029574185609817505, -0.0009125763899646699, 0.010372649878263474, 0.008219640702009201, -0.020115403458476067, 0.010770208202302456, -0.03345683217048645, -0.015891995280981064, -0.029388314113020897, -0.013145229779183865, -0.02988397143781185, 0.001573452027514577, 0.010011233389377594, -0.014962637796998024, 0.038062307983636856, -0.02847961150109768, 0.019454527646303177, 0.0477069616317749, -0.011348474770784378, 0.021912159398198128, -0.038186222314834595, 0.02980136126279831, 0.002829374046996236, -0.023130647838115692, 0.0026202688459306955, -0.021643677726387978, 0.00960334949195385, -0.022407814860343933, 0.03442749008536339, -0.00786338746547699, 0.013960998505353928, -0.01357892993837595, 0.020383883267641068, 0.022242596372961998, -0.016336020082235336, 0.010749556124210358, -0.004974638111889362, 0.005999512039124966, 0.023812176659703255, 0.011771847493946552, 0.005674237385392189, 0.03694707900285721, -0.008013117127120495, -0.008245456963777542, -0.026992641389369965, 0.013455015607178211, 0.020156707614660263, 0.0037509857211261988, -0.055802688002586365, -0.026001326739788055, 0.015447968617081642, 0.0001511010923422873, -0.013021315447986126, 0.010104169137775898, -0.006123425904661417, -0.007822083309292793, -0.0048765395767986774, -0.0337253101170063, 0.0011126461904495955, 0.02040453627705574, -0.036864470690488815, 0.02344043366611004, 0.015055573545396328, 0.02145780622959137, 0.030565500259399414, -0.0230480395257473, 0.0014688994269818068, 0.0007267050677910447, -0.04873958230018616, -0.020187687128782272, 4.412829366629012e-05, 0.02211868204176426, -0.012907727621495724, 0.010073190554976463, -0.010615315288305283, -0.012628921307623386, 0.00870497152209282, 0.030193757265806198, -0.0003836821997538209, 0.005457387305796146, -0.02158172056078911, 0.041573211550712585, -0.012835444882512093, -0.018112123012542725, 0.0047371359542012215, -0.024948056787252426, 0.018927892670035362, -0.014219152741134167, 0.04345257580280304, -0.0027002966962754726, -0.01467350497841835, -0.02629045955836773, -0.0037819643039256334, 0.002842281712219119, 0.016903961077332497, -0.015355032868683338, 0.022965429350733757, 0.03310574218630791, -0.03159811720252037, 0.008539753034710884, -0.02655894123017788, -0.027199164032936096, -0.052952662110328674, 0.029512228444218636, 0.008049258962273598, -0.0003152712597511709, -0.012391419149935246, 0.014229479245841503, -0.02364695817232132, 0.015158835798501968, -0.026992641389369965, 0.015065900050103664, 0.03624489903450012, 0.02364695817232132, 0.017874620854854584, -0.005452224053442478, 0.01755451038479805, -0.010811513289809227, 0.04316344112157822, 0.009944113902747631, 0.027508949860930443, 0.018711041659116745, -0.03634816035628319, -0.009231607429683208, 0.01218489557504654, 0.0024008373729884624, -0.00970661174505949, 0.00022588523279409856, -0.003092691535130143, -0.014714810065925121, -0.000658616831060499, 0.0011997732799500227, 0.020208338275551796, -0.017988208681344986, 0.04014819860458374, 0.03141224756836891, -0.016934938728809357, 0.019588768482208252, -0.011864783242344856, 0.007094087079167366, -0.005194069817662239, 0.011038688942790031, -0.01341371051967144, 0.029822014272212982, 0.008772091940045357, 0.0073625678196549416, 0.018742021173238754, 0.005632932297885418, 0.01884528249502182, 0.01080118678510189, -0.007770452182739973, 0.014714810065925121, 0.0122158732265234, 0.02682742103934288, 0.0032011165749281645, 0.025794804096221924, 0.021746939048171043, -0.02703394554555416, -0.0171311367303133, -0.045269984751939774, 0.0015450550708919764, -0.009278074838221073, -0.004788767080754042, -0.015427316538989544, 0.0074555035680532455, -0.02358500100672245, 0.010811513289809227, 0.04696347564458847, 0.034675318747758865, 0.01737896539270878, -0.017058853060007095, -0.01572677493095398, -0.010728903114795685, 0.03256877884268761, -0.01676972024142742, 0.008539753034710884, -0.02436979115009308, -0.04588955268263817, -0.011999024078249931, 0.032362256199121475, -0.0027338566724210978, 0.02082790993154049, -0.008575894869863987, 0.031949207186698914, 0.011389778926968575, -0.011069667525589466, -0.004848142620176077, -0.008854701183736324, -0.020084423944354057, -0.006877237465232611, -0.0015953951515257359, -0.013671865686774254, 0.0052121407352387905, -0.01453926507383585, 0.012143590487539768, -0.007440014276653528, -0.019702356308698654, 0.010073190554976463, 0.019888227805495262, 0.014219152741134167, 0.010434607043862343, 0.06042882055044174, -0.0304622370749712, -0.003988488111644983, -0.0028009768575429916, -0.021623026579618454, -0.011451736092567444, -0.02352304384112358, -0.006681039929389954, 0.01026422530412674, -0.010584336705505848, 0.0025867086369544268, 0.007636211812496185, -0.000359480211045593, -0.03709164634346962, -0.02076595276594162, -0.02655894123017788, 0.028045911341905594, 0.05563747137784958, 0.0005605180631391704, -0.0011391070438548923, -0.01341371051967144, -0.007816920056939125, 0.016872981563210487, -0.03744273632764816, 0.013589255511760712, -0.008467469364404678, -0.02391543798148632, 0.03246551752090454, 0.020745299756526947, -0.010770208202302456, 0.030895937234163284, -0.014828397892415524, 0.013227839954197407, -0.03742208331823349, -0.008069911040365696, -0.021044759079813957, 0.03310574218630791], [0.01777009665966034, -0.0008395759505219758, 0.06138356402516365, 0.04634903743863106, -0.01679151877760887, 0.006427481770515442, -0.03344959393143654, 0.014912202954292297, 0.01922684535384178, 0.05186466500163078, -0.029312876984477043, 0.0020336084999144077, 0.008201155811548233, 0.037586312741041183, -0.03336063399910927, -0.018403949216008186, 0.002344974549487233, 0.03654101490974426, 0.00011189711949555203, -0.030447138473391533, -0.004367462825030088, 0.036718934774398804, -0.039654672145843506, 0.022929875180125237, 0.015779579058289528, -0.013010647147893906, -0.015123486518859863, -0.0175921730697155, 0.02813413366675377, -0.003811452304944396, -0.013388734310865402, -0.020405586808919907, 0.01942700892686844, -0.057602692395448685, 0.039676912128925323, 0.018403949216008186, -0.027756046503782272, 0.017903540283441544, 0.016947202384471893, 0.055867940187454224, -0.011998707428574562, -0.030491618439555168, 0.03838696703314781, -0.005804750137031078, -0.032871343195438385, 0.05884815752506256, -0.010875565931200981, -0.028690144419670105, -0.034606095403432846, 0.02811189368367195, 0.018748676404356956, 0.03912090137600899, 0.015824060887098312, 0.0076395850628614426, -0.002921835519373417, -0.0027272317092865705, 0.030358176678419113, 0.011031249538064003, 0.06369657069444656, -0.023730529472231865, -0.0012517187278717756, -0.027311237528920174, -0.008907289244234562, 0.012888324446976185, -0.011976467445492744, -0.014378433115780354, -0.020939357578754425, 0.016413431614637375, -0.05302116647362709, -0.009724624454975128, 0.015067885629832745, 0.04492565244436264, 0.05146433785557747, 0.024308782070875168, 0.014967803843319416, 0.03175932168960571, 0.006577604915946722, 0.02924615517258644, 0.024219820275902748, -0.01916012354195118, -0.07690738141536713, -0.02795621007680893, -0.0381200835108757, -0.017191845923662186, -0.04403603449463844, 0.025443043559789658, -0.008317917585372925, -0.010525279678404331, 0.03293806314468384, -0.010530839674174786, 0.07005733251571655, -6.819816917413846e-05, -0.03453937545418739, 0.016747036948800087, 0.014089307747781277, 0.003080298425629735, 0.033049266785383224, -0.039209865033626556, 0.009947028942406178, 0.03222637251019478, -0.05773613601922989, -0.0395212285220623, -0.039832595735788345, 0.020071981474757195, 0.008484721183776855, -0.03367199748754501, -0.043858110904693604, 0.05270979925990105, 0.020494548603892326, 0.012999526225030422, 0.061339084059000015, -0.000731153879314661, 0.006477522663772106, 0.009001811034977436, -0.0038142323028296232, 0.003630748949944973, -0.02846774086356163, -0.050975047051906586, 0.023641567677259445, 0.009607862681150436, -0.01559053547680378, -0.0199496578425169, 0.005732468795031309, -0.03694134205579758, -0.008462480269372463, 0.0031386795453727245, -0.0012600589543581009, 0.004840071778744459, -0.05012991279363632, 0.022974355146288872, 0.025287359952926636, -0.028756866231560707, 0.08811654895544052, -0.016824878752231598, 0.0009584231884218752, -0.03393888473510742, -0.04821723327040672, -0.03413904830813408, -0.0018654153682291508, 0.049685101956129074, 0.006989052519202232, 0.00871268566697836, 0.026243697851896286, 0.051064006984233856, -0.036718934774398804, -0.028156373649835587, -0.027911730110645294, 0.054889362305402756, 0.005207038950175047, 0.0012538038427010179, -0.013310892507433891, 0.033471833914518356, 0.02506495639681816, -0.01593526266515255, -0.01680263876914978, -0.007217017002403736, 0.0033221631310880184, 0.021117281168699265, 0.020683592185378075, 0.029757684096693993, -0.02873462438583374, -0.003855933202430606, -0.01584630087018013, -0.026666264981031418, -0.0006300294771790504, -0.014222749508917332, 0.006377440877258778, -0.0065831649117171764, -0.015690617263317108, -0.057068921625614166, -0.007289298344403505, -0.06147252768278122, 0.011487177573144436, 0.006716607604175806, -0.019215725362300873, -0.03500642254948616, 0.025532003492116928, 0.05444455146789551, 0.031915005296468735, -0.007722986396402121, -0.006900090724229813, 0.020172063261270523, -0.059693291783332825, -0.01942700892686844, -0.01471203938126564, 0.015612776391208172, -0.013399854302406311, -0.03151467815041542, -0.027222275733947754, -0.011431576684117317, 0.015301410108804703, -0.04056653007864952, -0.00313311954960227, -0.008662644773721695, 0.024419983848929405, 0.009296496398746967, -0.050708163529634476, -0.042101118713617325, 0.0266440249979496, -0.06018258258700371, -0.011887505650520325, -0.004531485959887505, -0.004759450443089008, -0.009263135492801666, -0.0446142852306366, -0.028779106214642525, -0.029134953394532204, -0.03985483571887016, 0.05275427922606468, -0.029023749753832817, -0.027978450059890747, -0.025576485320925713, -0.03516210615634918, 0.04626007750630379, 0.019604932516813278, 0.0026799708139151335, -0.031025389209389687, 0.017303047701716423, 0.05199810490012169, 0.01740312948822975, -0.023441404104232788, 0.01480100117623806, -0.00926869548857212, -0.02125072292983532, -0.062139738351106644, 0.031069869175553322, 0.00029016801272518933, -0.036185167729854584, -0.029001509770751, -0.04021068289875984, -0.03031369484961033, 0.043746910989284515, 0.012165511026978493, -0.004687169101089239, -0.011487177573144436, 1.432378758181585e-05, 0.012521357275545597, -0.038186803460121155, 0.007528382819145918, -0.014522995799779892, 0.028267575427889824, -0.026888670399785042, 0.0034639458172023296, 0.01933804713189602, 0.03634084761142731, -0.020227663218975067, 0.02047230862081051, -0.014945563860237598, 0.009335417300462723, 0.028401019051671028, -0.017114004120230675, -0.002547918353229761, 0.04830619692802429, -0.06614301353693008, 0.01723632775247097, 0.07072453945875168, 0.04403603449463844, -0.02446446381509304, 0.04848412051796913, -0.003786431858316064, -0.013166329823434353, 0.023886213079094887, 0.03264893963932991, -0.025887850672006607, -0.07103590667247772, -0.04763898253440857, 0.024709109216928482, -0.042368002235889435, 0.003917094320058823, 0.03614068403840065, -0.015379251912236214, 0.021028319373726845, -0.02062799222767353, 0.008901729248464108, -0.05657963454723358, 0.02021654322743416, 0.0200163796544075, -0.003764191409572959, 0.010430757887661457, -0.040344126522541046, -0.03780871629714966, -0.016691436991095543, 0.0077452268451452255, -0.049329254776239395, 0.03567363694310188, 0.006638765800744295, 0.011292573995888233, 0.0076284646056592464, -0.03055834025144577, 0.01672479696571827, 0.047327619045972824, -0.00944661907851696, -0.03651877120137215, -0.006711047142744064, 0.03298254683613777, 0.017914660274982452, -0.0010501649230718613, 0.021384166553616524, 0.0207169521600008, 0.046793848276138306, -0.017781216651201248, 0.03204844892024994, -0.03874281421303749, -0.018770916387438774, -0.04626007750630379, 0.02751140110194683, 0.030358176678419113, 0.012888324446976185, 0.011798543855547905, -0.02404189668595791, -0.04107806086540222, -0.01149829849600792, -0.02255178801715374, -0.013044007122516632, -0.008084393106400967, -0.025376321747899055, -0.0414339043200016, 0.03158139809966087, -0.004542605951428413, -0.01031955610960722, 0.01696944236755371, 0.03358303755521774, -0.014511874876916409, 0.017036162316799164, 0.011676221154630184, -0.016958322376012802, 0.03611844405531883, 0.025354081764817238, -0.023018836975097656, -0.0058992719277739525, 0.009246455505490303, 0.005771389696747065, 0.015012284740805626, 0.012343434616923332, 0.023975174874067307, -0.0404108464717865, -0.019527090713381767, 0.018048102036118507, 0.0037224905099719763, -0.014011465944349766, -0.007689625956118107, -0.026710746809840202, 0.01907116174697876, -0.013777941465377808, -0.04016620293259621, 0.022095859050750732, 0.01959381252527237, 0.00988586712628603, -0.017303047701716423, 0.011854144744575024, 0.003989375662058592, -0.024798071011900902, -0.008351278491318226, -0.025443043559789658, -0.02855670265853405, 0.019126763567328453, 0.05880367383360863, 0.028000691905617714, -0.012788242660462856, 0.0025910092517733574, 0.030958667397499084, 0.004562066402286291, -0.014445153996348381, 0.02315227873623371, 0.012810482643544674, -0.014812121167778969, -0.061161160469055176, 0.003261001780629158, 0.04405827447772026, -0.011214733123779297, -0.003766971407458186, 0.0075228228233754635, 0.021439766511321068, 0.010174993425607681, 0.04528149962425232, 0.03020249307155609, -0.01341097429394722, 0.012810482643544674, 0.025665447115898132, -0.003600168274715543, -0.0014032316394150257, 0.01750321127474308, 0.0295130405575037, 0.005073596257716417, 0.002185121411457658, 0.04234576225280762, -0.004773350432515144, -0.023641567677259445, 0.033916644752025604, -0.07188104093074799, -0.00030771709862165153, 0.015646137297153473, 0.011248093098402023, 0.009730184450745583, -0.033738721162080765, 0.020172063261270523, 0.003077518427744508, 0.04552614316344261, 0.014156028628349304, -0.03351631760597229, 0.014222749508917332, -0.06525339931249619, 0.02437550202012062, -0.007011292967945337, -0.017358649522066116, 0.004545386414974928, -0.03605172410607338, -0.03046937845647335, -0.032515496015548706, 0.007289298344403505, 0.047327619045972824, 0.0030246973037719727, 0.034183528274297714, -0.007667385507375002, -0.007556183263659477, 0.007511702366173267, -0.030780743807554245, 0.02802293188869953, 0.026354899629950523, -0.04205663874745369, 0.06316279619932175, 0.02177337370812893, -0.006633205804973841, -0.008784966543316841, -0.025109436362981796, 0.005084716249257326, 0.034339211881160736, 0.018659714609384537, 0.008000992238521576, -0.010958967730402946, -0.03293806314468384, -0.023041076958179474, -0.01636894978582859, 0.0114093367010355, -0.04207887873053551, -0.04112254083156586, -0.027889488264918327, -0.0021892916411161423, 0.05084160342812538, -0.0313589945435524, 0.002595179248601198, -0.029290635138750076, 0.019204603508114815, -0.0008562562288716435, -0.017036162316799164, -0.008573682978749275, 0.012387914583086967, 0.05119745060801506, 0.04216783866286278, 0.04552614316344261, 0.003222081111744046, -0.008896168321371078, -0.07112486660480499, -0.004603767301887274, -0.001719462568871677, -0.03789767995476723, 0.007572863716632128, -0.023441404104232788, -0.017625534906983376, 0.01986069604754448, 0.036718934774398804, 0.02455342561006546, 0.058047499507665634, 0.03178156167268753, 0.0027327919378876686, 0.007806388195604086, -0.0173364095389843, -0.03198172524571419, -0.07001284509897232, -0.04639352113008499, -0.010903366841375828, 0.012109910137951374, 0.007861989550292492, 0.009808026254177094, 0.06084979325532913, -0.04101133719086647, 0.009552260860800743, -0.01219887100160122, 0.007734106853604317, 0.018581872805953026, -0.007589544169604778, 0.03369423747062683, -0.07770803570747375, -0.008301237598061562, 0.07970967143774033, 0.002624369692057371, 0.04634903743863106, 0.04076669365167618, -0.022418344393372536, 0.018326107412576675, -0.0522649921476841, 0.0009862236911430955, 0.04626007750630379, -0.008968450129032135, 0.010069350712001324, 0.03834248706698418, 0.025643207132816315, -0.012643679976463318, -0.0365854948759079, 0.03387216106057167, -0.013399854302406311, -0.09296496212482452, -0.03538450971245766, -0.023441404104232788, 0.010069350712001324, 0.01318856980651617, -0.014422914013266563, 0.003422244917601347, -0.045592863112688065, 0.010458558797836304, -0.03858713060617447, 0.0270888339728117, 0.020005259662866592, 0.024686869233846664, 0.0024047456681728363, -0.019838456064462662, 0.03654101490974426, -0.02350812591612339, -0.030580580234527588, 0.022863153368234634, 0.017169605940580368, 0.007283738348633051, 0.03396112471818924, 0.0003250924055464566, 0.019015559926629066, 0.03763079270720482, -0.006755528040230274, -0.05764717236161232, 0.016124306246638298, 0.025042714551091194, -0.035295549780130386, -0.042456965893507004, -0.027466921135783195, -0.0073838201351463795, 0.00914081372320652, -0.008206715807318687, 0.023396924138069153, 0.010870005935430527, 0.011136891320347786, 0.021439766511321068, -0.020305505022406578, -0.00551006430760026, 0.03031369484961033, -0.02020542323589325, 0.014244990423321724, 4.08754640375264e-05, 0.014378433115780354, 0.030269214883446693, -0.0017305827932432294, -0.031737081706523895, 0.0054238829761743546, 0.038275767117738724, -0.01602422446012497, 0.021806733682751656, 0.011976467445492744, -0.0032804622314870358, 0.008334598504006863, -0.0465269610285759, -0.0103584760800004, -0.016491273418068886, -0.023730529472231865, 0.022418344393372536, -0.030447138473391533, 0.004976294469088316, -0.0023880652152001858, 0.03249325603246689, 0.021751131862401962, -0.05266531929373741, -0.06236214190721512, 0.004400823265314102, 0.001053640036843717, -0.017536573112010956, 0.002617419697344303, -0.010597561486065388, 0.007645145058631897, 0.03516210615634918, 0.02021654322743416, -0.04599319398403168, 0.01993853785097599, 0.02524287812411785, -0.004461984615772963, 0.02717779576778412, 0.005579565651714802, -0.04065549001097679, -0.0011453817132860422, -0.011765182949602604, -0.03482849895954132, -0.030246973037719727, -0.0010348745854571462, 0.03489522263407707, 0.03193724527955055, 0.018704194575548172, -0.006477522663772106, -0.006927891634404659, 0.018915478140115738, 0.020349986851215363, -0.05302116647362709, 0.004859532229602337, -0.03622964769601822, 0.004709409549832344, -0.012877204455435276, -0.022329384461045265, 0.02264074981212616, -0.011642861180007458, -0.06867842376232147, -0.03362751752138138, -0.017258567735552788, -0.05448903515934944, 0.01923796534538269, 0.014912202954292297, 0.01713624596595764, -0.00944661907851696, -0.01227671280503273, -0.027911730110645294, -0.017781216651201248, 0.001105070929042995, -0.07343786954879761, -0.022885393351316452, 0.000634894531685859, 0.008746045641601086, -0.03560691699385643, 0.0006984882638789713, 0.007556183263659477, -0.006405241321772337, -0.021840093657374382, -0.012654799968004227, -0.01750321127474308, -0.0005657407455146313, -0.025443043559789658, -0.03213740885257721, -0.041322704404592514, 0.004915133118629456, -0.01592414267361164, -0.031381234526634216, 0.0034583855886012316, -0.012977286241948605, -0.021795613691210747, 0.015379251912236214, 0.015490453690290451, 0.009719064459204674, 0.01457859668880701, -0.019827336072921753, 0.04047756642103195, -0.055334169417619705, 0.01236567460000515, 0.05528968945145607, -0.00310253887437284, 0.0010619801469147205, 0.0395212285220623, -0.0040449765510857105, -0.001111326040700078, -0.02733347937464714, -0.03213740885257721, 0.013711219653487206, 0.02804517187178135, 0.014611957594752312, -0.0029079350642859936, 0.0207169521600008, 0.024842550978064537, 0.017392009496688843, -0.02499823458492756, 0.012043188326060772, -0.03449489548802376, -0.01454523578286171, 0.0674329623579979, -0.000683892983943224, 0.04603767395019531, 0.0077674672938883305, 0.035139866173267365, -0.007923150435090065, -0.03691910207271576, 0.0251761581748724, 0.0103584760800004, -0.0313589945435524, 0.028623422607779503, -0.016424551606178284, 0.008951770141720772, -0.007066893856972456, -0.002037778729572892, 0.007044653873890638, 0.006149476859718561, -0.01908228173851967, -0.02802293188869953, 0.023752771317958832, 0.011398215778172016, -0.006822249386459589, -0.0145341157913208, 0.008540322072803974, -0.025042714551091194, 0.008562562055885792, 0.009830266237258911, 0.017981380224227905, -0.005437782965600491, 0.029201673343777657, -0.0038225725293159485, 0.01899331994354725, 0.0381200835108757, 0.02811189368367195, -0.016313349828124046, -0.034183528274297714, -0.01348881609737873, 0.021895695477724075, 0.007761907298117876, -0.09069643914699554, -0.0419454351067543, -0.00360294827260077, -0.007572863716632128, -0.04781690612435341, 0.016346709802746773, 0.015557175502181053, 0.0015109586529433727, -0.0021573209669440985, -0.05564553663134575, -0.026799708604812622, -0.010553080588579178, -0.03300478681921959, 0.0061772773042321205, -0.002185121411457658, -0.0014928883174434304, -0.00961342267692089, -0.04875100404024124, 0.017881298437714577, 0.01576845906674862, 0.0011905576102435589, 0.0005719958571717143, -0.014567476697266102, -0.06258454918861389, -0.023797251284122467, -0.0114093367010355, 0.0077674672938883305, 0.005182018503546715, -0.010441877879202366, -0.006299599539488554, 0.025643207132816315, -0.03527330979704857, 0.014956683851778507, 0.035473473370075226, 0.014356192201375961, -0.021139521151781082, -0.01109797041863203, 0.013310892507433891, -0.004175639245659113, -0.03307150676846504, -0.01149829849600792, 0.006761088036000729, 0.01445627398788929, -0.004128378350287676, -0.0034083446953445673, 0.012766001746058464, -0.02256290800869465, -0.01723632775247097, 0.005651846993714571, -0.012665919959545135, 0.010892246849834919, 0.0007652094936929643, -0.011337054893374443, 0.025198398157954216, -0.0012260032817721367, 0.007556183263659477, 0.028979269787669182, 0.011620620265603065, 0.018570752814412117, -0.018559632822871208, -0.002111450070515275, 0.023041076958179474, -0.01977173425257206, -0.039476748555898666, 0.022440586239099503, -0.0009674583561718464, -0.014289471320807934, -0.03629636764526367, -0.004662148654460907, -0.023997414857149124, 0.024175338447093964, 0.020005259662866592, -0.014745399355888367, -0.04692729189991951, -0.017625534906983376, 0.028423259034752846, -0.03358303755521774, 0.041233740746974945, -0.007834188640117645, 0.004064437001943588, 0.024709109216928482, -0.008501401171088219, 0.00532936118543148, 0.0030246973037719727, 0.009385458193719387, 0.04023292288184166, 0.013777941465377808, -0.013522176072001457, 0.025265119969844818, -0.017781216651201248, -0.021217362955212593, -0.0608053132891655, 0.017202965915203094, 0.03698582202196121, -0.02699987217783928, -0.028000691905617714, 0.015423732809722424, -0.02211809903383255, 0.003180380444973707, -0.0021990216337144375, -0.0009264525724574924, 0.08575906604528427, -0.05755821242928505, -0.04038860648870468, -0.01223223190754652, -0.006833369843661785, -0.028623422607779503, -0.01209878921508789, 0.036185167729854584, -0.0006682552048005164, -0.032693419605493546, -0.04728313535451889, -0.03656325489282608, -0.039387788623571396, -0.002691091038286686, -0.014978923834860325, 0.009135253727436066, -0.00012440736463759094, 0.009735744446516037, 0.04348002374172211, -0.012565838173031807, -0.015001164749264717, -0.02194017544388771, -0.007678505498915911, 0.0040533170104026794, -0.008462480269372463, -0.01802586205303669, -0.018003622069954872, 0.01713624596595764, 0.00301357707940042, 0.0039615752175450325, -0.0018765355926007032, -0.026510583236813545, -0.04167855158448219, 0.014233870431780815, -0.009796906262636185, -0.016924960538744926, 0.011175812222063541, -0.014022585935890675, -0.014834361150860786, -0.005154217593371868, -0.04799482971429825, -0.0054461234249174595, -0.011264774017035961, -0.0011307864915579557, -0.01353329699486494, 0.02437550202012062, -0.02125072292983532, -0.00607163505628705, -0.013010647147893906, 0.01357777789235115, 0.00452592596411705, 0.007506142370402813, -0.003942114766687155, 0.014611957594752312, -0.018048102036118507, -0.008228955790400505, 0.026399381458759308, 0.00897401012480259, 0.00775078684091568, 0.007200336549431086, 0.004603767301887274, 0.03751959279179573, -0.0157462190836668, -0.006077195517718792, 0.0040672169998288155, -0.032604459673166275, 0.03596276044845581, -0.014189389534294605, 0.006649886257946491, -0.008217835798859596, -0.03144795820116997, 0.024864790961146355, -0.042012158781290054, 0.020761433988809586, -0.004612107295542955, -0.04390259459614754, 0.025443043559789658, 0.031559158116579056, 0.03700806200504303, 0.054978322237730026, -0.025754408910870552, -0.004389703273773193, -0.024953752756118774, 0.0423235222697258, 0.0266440249979496, 0.0004416808660607785, 0.017013922333717346, 0.0015679497737437487, 0.03073626384139061, -0.04118926078081131, 0.00733933923766017, 0.012154391035437584, -0.009952588938176632, 0.02229602262377739, -0.009302056394517422, -0.029045991599559784, -0.036007244139909744, -0.0016916621243581176, -0.0395212285220623, 0.02891254797577858, -0.03456161543726921, 0.012554718181490898, -0.012065429240465164, 0.005632387008517981, 0.008729365654289722, 0.005440563429147005, -0.02211809903383255, -0.011103530414402485, 0.007300418335944414, 0.005487824324518442, 0.040277402848005295, 0.02029438503086567, 0.031225552782416344, 0.0018570752581581473, -0.027578122913837433, 0.01645791158080101, 0.05858127027750015, -0.05649067088961601, -0.014923322945833206, 0.015201328322291374, 0.01040295697748661, -0.03184828534722328, 0.00507081625983119, 0.04839515686035156, 0.008340158499777317, -0.033316150307655334, -0.03749735280871391, 0.018870998173952103, 0.009724624454975128, 0.054889362305402756, 0.009991509839892387, -0.04136718437075615, 0.019871817901730537, -0.0029385157395154238, -0.006344080436974764, 0.031136590987443924, 0.0004628787864930928, 0.0007269837660714984, 0.013310892507433891, -0.04781690612435341, -0.014211629517376423, -0.000535160128492862, 0.014267230406403542, 0.01236567460000515, -0.005393302533775568, -0.0011405166005715728, -0.021550968289375305, 0.058625753968954086, -0.020672472193837166, 0.010425197891891003, -0.03978811576962471, 0.005282100290060043, 0.04879548400640488, -0.012977286241948605, 0.014244990423321724, -0.017303047701716423, -0.00014708215894643217, 0.025265119969844818, 0.01353329699486494, 0.008173354901373386, 0.013744580559432507, -0.018782036378979683, 0.05826990678906441, -0.029468558728694916, 0.011059049516916275, 0.01627998799085617, -0.014089307747781277, 0.040277402848005295, 0.06747744232416153, 0.009952588938176632, -0.014700918458402157, 0.02264074981212616, 0.019894057884812355, 0.030002329498529434, -0.000883361732121557, 0.0019265766022726893, -0.025554245337843895, 0.03976587578654289, 0.03262669965624809, 0.017959140241146088, -0.01249911729246378, 0.02019430324435234, 0.03880953788757324, -0.0038698334246873856, 0.019371407106518745, 0.011831904761493206, 0.06138356402516365, -0.004662148654460907, 0.01349993608891964, 0.025843370705842972, -0.004353562369942665, 0.046882808208465576, 0.002988556632772088, 0.010136072523891926, 0.03013577125966549, 0.006510883569717407, 0.024709109216928482, 0.00922421459108591, 0.01715848594903946, 0.047505542635917664, -0.002902375068515539, 0.0025062174536287785, 0.0015401492128148675, -0.005843671038746834, 0.008862808346748352, 0.028512220829725266, 0.0016096505569294095, -0.028512220829725266, 0.021439766511321068, 0.03880953788757324, -0.015156847424805164, -0.010247274301946163, 0.00988586712628603, -0.028845828026533127, -0.025843370705842972, 0.004175639245659113, -0.012421275489032269, -0.0016096505569294095, -0.007433861028403044, -0.008301237598061562, 0.040366366505622864, -0.039209865033626556, 0.009602301754057407, 0.05319909006357193, 0.041411664336919785, 0.03162588179111481, 0.018559632822871208, 0.022407224401831627, 0.02751140110194683, 0.03336063399910927, 0.029824405908584595, 0.026666264981031418, -0.013655618764460087, 0.004984634462743998, 0.00017366641259286553, 0.004517585504800081, -0.011720702052116394, 0.0010307045886293054, -0.02265186980366707, 0.032782383263111115, -0.018570752814412117, 0.012287832796573639, -0.00866820476949215, -0.007194776553660631, -0.019527090713381767, -0.015423732809722424, -0.02055015042424202, 0.019738374277949333, -0.038787294179201126, 0.037408389151096344, -0.0023602647706866264, -0.008417999371886253, -0.009869187138974667, 0.003789211856201291, -0.014745399355888367, -0.011047929525375366, 0.006655446253716946, -0.026243697851896286, -0.002985776634886861, -0.015234689228236675, 0.01941588893532753, -0.027889488264918327, -0.028623422607779503, 0.00725037744268775, 0.010558640584349632, 0.016591355204582214, 0.008412439376115799, 0.0010168042499572039, 0.041589587926864624, 0.01462307758629322, -0.009085211902856827, 0.017892420291900635, -0.003258221782743931, -0.02368604950606823, -0.0026771908160299063, 0.0173364095389843, -0.007600664161145687, 0.0065831649117171764, -0.03909866139292717, -0.01445627398788929, 0.015434852801263332, -0.025732168927788734, -0.013866903260350227, 0.00032161734998226166, -0.008262316696345806, 0.0313589945435524, -0.015990862622857094, -0.004851192235946655, 0.02891254797577858, 0.019482608884572983, 0.003836472751572728, 0.009457739070057869, 0.014100427739322186, 0.01219887100160122, -0.006077195517718792, 0.004917913116514683, 0.022618509829044342, 0.019894057884812355, 0.015067885629832745, -0.004211779683828354, -0.010808845050632954, 0.03929882496595383, -0.02056127041578293, 0.019805096089839935, -0.0157462190836668, 0.015735099092125893, 0.01358889788389206, 0.017959140241146088, 0.018759796395897865, -0.0200163796544075, -0.002393625443801284, -0.003903194097802043, 0.03389440476894379, -0.015790699049830437, -0.0271555557847023, 0.016513513401150703, -0.029802165925502777, 0.0029996768571436405, -0.04032188653945923, -0.0060049137100577354, 0.01679151877760887, 0.017525453120470047, -0.024508945643901825, -0.028623422607779503, 0.014422914013266563, -0.017469851300120354, 0.03055834025144577, -0.013177449814975262, -0.037230465561151505, -0.025398561730980873, -0.010475238785147667, 0.012710400857031345, 0.004556506406515837, -0.03542899340391159, -0.007283738348633051, -0.004915133118629456, 0.007450541481375694, 0.055601052939891815, 0.00018348348385188729, 0.009012931026518345, 0.010225034318864346, -0.005173678044229746, 0.035317789763212204, 0.05502280220389366, -0.027111073955893517, -0.021740011870861053, 0.009035171009600163, 0.015490453690290451, -0.012632559984922409, -0.008039912208914757, 0.018604112789034843, 0.02882358618080616, -0.015490453690290451, -0.00831235758960247, -0.002564598573371768, -0.01585742086172104, 0.009135253727436066, 0.026488343253731728, 0.0009737134678289294, 0.042101118713617325, 0.008462480269372463, -0.0145341157913208, -0.011809663847088814, 0.02542080171406269, -0.026265937834978104, 0.013399854302406311, -0.011431576684117317, 0.02455342561006546, 0.03402784466743469, -0.009046291932463646, 0.04225680232048035, 0.021306324750185013, -0.00840131938457489, -0.002871794393286109, -0.011464937590062618, 4.72174579044804e-05, -0.021272962912917137, 0.008329037576913834, -0.016480153426527977, -0.007489461917430162, -0.01066984236240387, 0.004514805506914854, 0.028401019051671028, 0.005954872816801071, -0.030536098405718803, -0.006149476859718561, 0.005468363873660564, -0.007984311319887638, 0.019182363525032997, -0.01475652027875185, -0.03680789843201637, 0.012298953719437122, 0.02882358618080616, -0.01253247819840908, 0.039676912128925323, 0.030358176678419113, -0.007611784618347883, 0.013688979670405388, 0.012176631018519402, 0.0018723654793575406, -0.016324469819664955, 0.017959140241146088, -0.026866430416703224, 0.02315227873623371, 0.005471143871545792, -0.0016708116745576262, 0.013933624140918255, -0.010786605067551136, 0.010302875190973282, -0.05502280220389366, -0.0006369795883074403, -0.038253527134656906, -0.0058992719277739525, 0.005624046549201012, -0.01907116174697876, -0.017291927710175514, 0.0023116138763725758, 0.03867609426379204, 0.010920046828687191, -0.003978255670517683, 0.028089653700590134, -0.028690144419670105, 0.02935735695064068, -0.03362751752138138, -0.004792810883373022, 0.04074445366859436, -0.002153150737285614, -0.01205430831760168, 0.0005900661926716566, -0.024331022053956985, 0.04301297664642334, 0.032515496015548706, -0.02106167934834957, 0.004336882382631302, 0.022818673402071, 0.018648594617843628, -0.01917124353349209, -0.017981380224227905, 0.01467867847532034, -0.007406060583889484, -0.030758503824472427, -0.004756670445203781, -0.0041923196986317635, 0.011876385658979416, -0.023307962343096733, -0.03789767995476723, 0.04145614802837372, 0.011776302941143513, 0.004334102384746075, -0.011920866556465626, -0.01349993608891964, 0.029490798711776733, -0.016335589811205864, 0.0007415790460072458, 0.0005358551861718297, -0.0016374511178582907, -0.0266440249979496, -0.004047757014632225, -0.021695531904697418, -0.038008879870176315, -0.019749494269490242, -0.00019964254170190543, 0.028067411854863167, 0.003533446928486228, -0.019738374277949333, 0.04134494438767433, 0.024775829166173935, 0.002802293049171567, 0.01698056235909462, -0.01244351640343666, 0.01760329306125641, -0.010892246849834919, -0.004442524164915085, 0.006610965356230736, 0.0334051139652729, 0.015012284740805626, 0.018337227404117584, 0.0021642709616571665, 0.011553899385035038, 0.000394072470953688, -0.0038253525272011757, 0.008206715807318687, 0.013900263234972954, 0.031136590987443924, 0.030335934832692146, 0.015812940895557404, 0.004175639245659113, 0.0036112884990870953, 0.015167967416346073, -0.02733347937464714, -0.004495345056056976, -0.03411680832505226, -0.0018501251470297575, 0.01827050745487213, 0.03482849895954132, 0.016268867999315262, 0.0342947319149971, 0.01610206626355648, 0.0063385204412043095, -0.009252015501260757, -0.02499823458492756, 0.004142278805375099, -0.0035195467062294483, 0.005518404766917229, 0.009113012813031673, -0.03449489548802376, 0.014611957594752312, -0.007328219246119261, 0.021528728306293488, -0.011898625642061234, -0.012154391035437584, 0.00021302154345903546, -0.0036224087234586477, -0.013611137866973877, -0.01699168235063553, 0.02439774200320244, 0.0379866398870945, -0.0694790780544281, -0.03562915697693825, -0.025309599936008453, 0.011337054893374443, -0.02828981727361679, -0.011976467445492744, -0.0026480001397430897, 0.019115641713142395, -0.01576845906674862, -0.0034361451398581266, 0.024686869233846664, -0.0103584760800004, 0.019649412482976913, -0.014956683851778507, 0.01645791158080101, 0.0016040904447436333, -0.0045064655132591724, 0.002218482084572315, 0.012209991924464703, -0.03509538620710373, -0.003049717750400305, 0.009168613702058792, 0.01986069604754448, 0.032960306853055954, -0.006822249386459589, -7.197730155894533e-05, 0.001117581152357161, -0.020349986851215363, 0.01109797041863203, -0.0017764536896720529, -0.0043313223868608475, -0.012621439062058926, 0.01432283129543066, 0.012421275489032269, -0.002443666337057948, 0.03300478681921959, 0.022840913385152817, 0.014289471320807934, 0.03267117962241173, 0.008957330137491226, 0.030958667397499084, -0.0067833284847438335, -0.020149821415543556, -0.03880953788757324, 0.021840093657374382, -0.03022473305463791, 0.01014163251966238, -0.004000496119260788, 0.010174993425607681, -0.0211617611348629, -0.027822768315672874, 0.00431186193600297, 0.021562088280916214, -0.006277359090745449, 0.05039679631590843, -0.0036863498389720917, 0.02021654322743416, 0.006021594163030386, 0.008329037576913834, -0.019738374277949333, -0.042701609432697296, 0.0033861042466014624, 0.0031303393188863993, -0.015979742631316185, 0.01932692714035511, -0.00676664849743247, -0.025843370705842972, 0.03309374675154686, -0.011676221154630184, 0.01941588893532753, 0.009302056394517422, 0.00040658272337168455, -0.03845369070768356, -0.006416361778974533, -0.021806733682751656, -0.03100314736366272, 0.015067885629832745, -0.027400199323892593, -0.005579565651714802, -0.046971771866083145, 0.015690617263317108, 0.010152752511203289, 0.006505323573946953, 0.0033305031247437, -0.0008743265643715858, 4.6088061935734004e-05, 0.02595457248389721, -0.049685101956129074, 0.02176225371658802, -0.007895349524915218, 0.023908453062176704, -0.006232878193259239, -0.011754062958061695, 0.01593526266515255, 0.007834188640117645, 0.032604459673166275, -0.03124779276549816, 0.012165511026978493, 0.012766001746058464, -0.035651396960020065, 0.0006891055963933468, -0.029312876984477043, -0.010653162375092506, 0.0009646783000789583, 0.03716374561190605, 0.006366320885717869, -0.03602948412299156, 0.0027175014838576317, 0.0168916005641222, 0.009074091911315918, -0.0019043361535295844, -0.023130038753151894, -0.004592647310346365, 0.028779106214642525, -0.03476177901029587, -0.019905177876353264, -0.018170423805713654, 0.00935765728354454, -0.02176225371658802, -0.004670488648116589, 0.00953558087348938, 0.008434680290520191, 0.030002329498529434, 0.008518081158399582, 0.01847067102789879, 0.004600987304002047, 0.003914314322173595, -0.03215964883565903, 0.016691436991095543, 0.025665447115898132, -0.00155126943718642, 0.042723849415779114, 0.01432283129543066, -0.0010487749241292477, -0.02682194858789444, -0.019782856106758118, -0.04285729303956032, 0.02117288112640381, -0.0008923969580791891, -0.0005424577975645661, -0.016046464443206787, -0.006010474171489477, 0.0019224064890295267, 0.04521477594971657, 0.035918280482292175, 0.009841387160122395, -0.014445153996348381, 0.0029996768571436405, -0.02595457248389721, -0.019527090713381767, 0.0362074077129364, -0.003994935657829046, 0.0010863055940717459, -0.0419454351067543, -0.015290290117263794, -0.04848412051796913, 0.01454523578286171, -0.018137063831090927, 0.03978811576962471, -0.012576958164572716, 0.030246973037719727, -0.0010598951485008001, -0.027044352144002914, -0.0016735917888581753, -0.031136590987443924, -0.013755700550973415, -0.0199496578425169, 0.015690617263317108, -0.03231533244252205, -0.009040731936693192, 0.003719710512086749, -0.0035445671528577805, 0.0003579317999538034, -0.01890435814857483, 0.022751951590180397, 0.036696694791316986, 0.028779106214642525, 0.008907289244234562, 0.006032714620232582, -0.023130038753151894, -0.011976467445492744, -0.004998534917831421, 0.002500657457858324, -0.023819491267204285, 0.008423559367656708, -0.01680263876914978, -0.010241714306175709, 0.0008145554456859827, -0.022440586239099503, 0.02682194858789444, 0.01236567460000515, -0.0076395850628614426, -0.006471962668001652, -0.028623422607779503, 0.00367800984531641, 0.07001284509897232, -0.013377613388001919, 0.027733806520700455, -0.015646137297153473, 0.0013872463023290038, 0.029023749753832817, -0.03578484058380127, -0.008139993995428085, 0.020338864997029305, 0.028334297239780426, 0.025398561730980873, 0.034517135471105576, -0.044881172478199005, 0.011476057581603527, -0.01236567460000515, 0.026088014245033264, -0.041656311601400375, 0.02099495753645897, -0.04125598445534706, -0.0035417871549725533], [0.019068226218223572, -0.00026147515745833516, 0.04646702855825424, 0.04192497953772545, -0.03633637726306915, 0.02398703247308731, -0.048350825905799866, 0.029784945771098137, 0.050150901079177856, 0.04776475578546524, -0.012548190541565418, 0.03960162773728371, 0.03947604075074196, -0.018618207424879074, -0.021360181272029877, -0.02603827975690365, 0.011752809397876263, 0.023505618795752525, -0.005083639174699783, -0.02442658692598343, -0.003411768237128854, 0.020606661215424538, -0.062207210808992386, -0.026582488790154457, -0.003346358658745885, -0.021914854645729065, 0.016137873753905296, 0.005667093675583601, 0.03420140594244003, -0.051783524453639984, 0.06735625863075256, -0.022040441632270813, 0.04592281952500343, -0.02294047921895981, 0.03302926570177078, -0.004986832849681377, -0.010387055575847626, -0.018377499654889107, 0.0016116942279040813, 0.005026078782975674, 0.030684983357787132, -0.007137503009289503, 0.021381111815571785, -0.032568782567977905, 0.0039245798252522945, 0.06940750777721405, -0.03189898654818535, -0.05396036058664322, 0.006493871565908194, 0.014421523548662663, -0.01909962296485901, 0.03271529823541641, -0.007367745041847229, -0.022333476692438126, 0.022689305245876312, 0.0358131006360054, 0.014976197853684425, 0.017435600981116295, 0.008173592388629913, -0.033238574862480164, -0.01962289959192276, 0.007069476880133152, 0.033092059195041656, 0.016033217310905457, 0.015949493274092674, 0.0034170011058449745, 0.008021841756999493, 0.00423854636028409, -0.06049086153507233, -0.016556495800614357, 0.03719455376267433, 0.013584279455244541, -0.008341040462255478, 0.005452550016343594, 0.013019139878451824, -0.011690015904605389, -0.05299752950668335, 0.04893689602613449, 0.04437391832470894, 0.0006220459472388029, -0.025619657710194588, 0.029177945107221603, 0.00036040725535713136, -0.031919918954372406, 0.005264170002192259, -0.009199216030538082, -0.040145836770534515, -0.022961409762501717, -0.0358131006360054, 0.022668374702334404, 0.024133550003170967, 0.010418451391160488, -0.008921878412365913, 0.020114781334996223, 0.0144529202952981, -0.011993516236543655, 0.03895276412367821, -0.03809459134936333, 0.021255524829030037, 0.04588095843791962, -0.025828968733549118, -0.029910532757639885, -0.03049660287797451, 0.03164781257510185, -0.002367829903960228, -0.05936058238148689, 0.004853397142142057, 0.009968433529138565, 0.05002531409263611, 0.01769723929464817, -0.02004152163863182, -0.020324092358350754, 0.01961243525147438, 0.07016102224588394, -0.019235674291849136, 0.009675397537648678, -0.01856588013470173, -0.0042542447336018085, -0.014923869632184505, 0.03637824207544327, 0.021035749465227127, 0.009507949464023113, 0.017299549654126167, -0.04071097820997238, 0.04956483095884323, -0.018628673627972603, -0.02739880234003067, -0.011972585693001747, -0.011459773406386375, -0.048141516745090485, 0.049313656985759735, -0.015939027070999146, 0.02848721854388714, -0.023526549339294434, -0.02016710862517357, -0.03809459134936333, -0.004005688242614269, -0.017634445801377296, -0.007132269907742739, 0.020010124891996384, 0.01780189573764801, 0.03997838869690895, 0.011878395453095436, -0.004929272457957268, -0.06111879274249077, -0.027273215353488922, -0.006441543810069561, 0.007195063401013613, 6.38153069303371e-05, -0.034054890275001526, -0.04449950531125069, 0.03093615546822548, -0.04943924397230148, 0.015436681918799877, -0.017937947064638138, 0.06321190297603607, 0.017760032787919044, 0.013531952165067196, 0.0067869070917367935, -0.032045505940914154, -0.023966101929545403, -0.021349715068936348, 0.008639308623969555, 0.031710606068372726, -0.028654666617512703, 0.0061537413857877254, -0.048350825905799866, 0.03445257991552353, -0.040899354964494705, -0.04960669204592705, -0.019978728145360947, -0.059444304555654526, -0.05617905408143997, -0.004897875711321831, -0.0742216557264328, -0.07958001643419266, 0.02624759078025818, 0.029491910710930824, -0.02710576541721821, -0.004424309823662043, 0.008388135582208633, 0.03489213436841965, -0.00018020362767856568, -0.014411058276891708, -0.01188886072486639, 0.027356939390301704, -0.05509063974022865, -0.0040213861502707005, -0.03926673159003258, 0.0006217188783921301, 0.008456162177026272, -0.001208770670928061, 0.006619458552449942, 0.03478747606277466, 0.008869551122188568, 0.02859187312424183, -0.05513250082731247, -0.025975486263632774, 0.012820295058190823, -0.04470881447196007, 0.035666584968566895, -0.06266769766807556, -0.019591502845287323, -0.016933254897594452, -0.03104081191122532, 0.0033306602854281664, 0.0029669825453311205, 0.009565509855747223, 0.06480266898870468, -0.01108301430940628, 0.039308592677116394, -0.01963336579501629, 0.023191651329398155, 0.007257856894284487, -0.02804766595363617, -0.08225920051336288, -0.025201037526130676, 0.04008304327726364, 0.026708075776696205, -0.004978983663022518, -0.04424833133816719, 0.0049214232712984085, 0.015855303034186363, -0.0064886389300227165, -0.056555815041065216, 0.018639137968420982, -0.015342491678893566, -0.0700354352593422, -0.00986901018768549, -0.08121263980865479, -0.00799567811191082, 0.026415040716528893, 0.039517905563116074, -0.021245060488581657, -0.02559872716665268, -0.043578535318374634, 0.0017346644308418036, -0.006179905496537685, 0.0010210449108853936, 0.01577157899737358, 0.00974865723401308, -0.006064784247428179, 0.01854494959115982, -0.01535295695066452, 0.03060125932097435, -0.0019112704321742058, -0.0009582516504451632, -0.03558285906910896, 0.005347894504666328, 0.026938317343592644, 0.03761317580938339, 0.04171567037701607, 0.033008333295583725, -0.04362040013074875, 0.04169473797082901, -0.00805847067385912, 0.004767056554555893, -0.04311805218458176, -0.01621113158762455, 0.007545659318566322, 0.010036459192633629, 0.008409067057073116, 0.0056199985556304455, -0.013448227196931839, -0.0494811050593853, -0.05421153083443642, -0.002367829903960228, -0.007608452346175909, 0.02344282530248165, 0.08527327328920364, -0.04445764422416687, 0.01556226797401905, -0.02698018029332161, -0.06526315212249756, -0.05919313430786133, 0.054965052753686905, 0.012328414246439934, -0.028947701677680016, -0.00021716009359806776, -0.00034372779191471636, -0.037675969302654266, -0.03200364112854004, 0.0070851752534508705, -0.06580735743045807, 0.027126697823405266, -0.0039193471893668175, 0.03604334220290184, -0.022207889705896378, -0.01961243525147438, 0.004871712066233158, 0.06241651996970177, -0.00906839594244957, 0.021726474165916443, -0.018377499654889107, 0.03376185521483421, 0.006227000150829554, -0.02557779662311077, -0.006635156460106373, 0.03805272653698921, -0.026163866743445396, 0.05638836696743965, -0.006195603869855404, -0.0650957003235817, -0.01854494959115982, -0.018848448991775513, 0.015823906287550926, -0.034180477261543274, -0.02131831832230091, -0.0002106191241182387, -0.008958508260548115, 0.030684983357787132, 0.05429525673389435, -0.01643090881407261, -0.0411505289375782, -0.026394108310341835, -0.014683161862194538, 0.005667093675583601, -0.017341410741209984, 0.027022041380405426, -0.004214998800307512, 0.012495863251388073, -0.011669084429740906, 0.030161704868078232, -0.01493433490395546, 0.00023678300203755498, 0.003759747603908181, -0.025033587589859962, 0.014086625538766384, -0.02333816885948181, 0.01540528517216444, -0.03292461112141609, -0.02344282530248165, -0.0024018429685384035, -0.010648693889379501, -0.009937036782503128, -0.014620368368923664, -0.005177829414606094, -0.041004013270139694, -0.037048034369945526, -0.04320177808403969, -0.03221295401453972, -0.01919381320476532, 0.007069476880133152, 0.04085749387741089, 0.008142195641994476, 0.03091522492468357, 0.0554673969745636, 0.04125518351793289, -0.0320245735347271, 0.06944936513900757, 0.021454371511936188, 0.047094959765672684, -0.006677018944174051, -0.020972955971956253, -0.07853346318006516, -0.008498024195432663, 0.03539447858929634, 0.0384085550904274, -0.03744572773575783, 0.02674993686378002, -0.002435856033116579, 0.01502852514386177, -0.006797372829169035, 0.01556226797401905, 0.04433205723762512, -0.004471404943615198, -0.028738390654325485, 0.03589682653546333, 0.009821915999054909, -0.0578116811811924, 0.017226289957761765, 0.041527289897203445, -0.015719251707196236, 0.010413219220936298, 0.06132810562849045, 0.0027105766348540783, 0.03434792533516884, -0.005324346944689751, 0.00383823923766613, 0.016933254897594452, 0.024928933009505272, 0.021705543622374535, 0.00027700993814505637, 0.003746665781363845, -0.024761483073234558, 0.02025083266198635, -0.03265250474214554, -0.010842306539416313, -0.01611694134771824, 0.028926771134138107, 0.028424425050616264, -0.02497079409658909, -0.012862157076597214, -0.00047193074715323746, -0.044792540371418, 0.032903678715229034, 0.0039245798252522945, 0.008215454407036304, -0.005316497758030891, -0.008712567389011383, -0.012276086024940014, -0.04449950531125069, -0.025619657710194588, 0.0028230813331902027, -0.01589716598391533, 0.02088923193514347, -0.020857835188508034, 0.005688024684786797, -0.026959247887134552, -0.012297017499804497, 0.03595962002873421, -0.0716262012720108, 0.013479623943567276, 0.060197826474905014, -0.002229161560535431, 0.01738327369093895, -0.040250491350889206, 0.02857094258069992, -0.018304241821169853, -0.04106680676341057, 0.017090238630771637, 0.026729006320238113, 0.0350177176296711, -0.000746978388633579, -0.04272036254405975, 0.025724314153194427, 0.04083656519651413, -0.008252083323895931, -0.02229161374270916, 0.0065200356766581535, -0.006504337303340435, 0.006588061805814505, -0.01481921412050724, 0.025640590116381645, -0.04797406494617462, -0.013354037888348103, 0.012276086024940014, -0.0270848348736763, 0.007639849092811346, -0.01822051778435707, -0.027963940054178238, -0.005567670799791813, 0.026394108310341835, -0.038241107016801834, -0.059025682508945465, -0.033092059195041656, -0.02666621282696724, 0.05169980227947235, 0.005593834910541773, -0.017550721764564514, 0.048685722053050995, -0.01173187792301178, -0.05086255818605423, 0.052285872399806976, -0.031208259984850883, -0.0012918409192934632, 0.024887070059776306, -0.024049825966358185, 0.0599047914147377, -0.023526549339294434, 0.02494986355304718, 0.004842931870371103, 0.017958877608180046, 0.012213293462991714, 0.020062454044818878, -0.015865769237279892, 0.013762193731963634, -0.045797232538461685, -0.02099388651549816, -0.022752098739147186, 0.008121264167129993, 0.018429826945066452, -0.029805876314640045, -0.0010092711308971047, -0.020533403381705284, -0.015447147190570831, 0.025828968733549118, -0.0132179856300354, -0.03974814713001251, 0.011103944852948189, 0.02155902609229088, 0.022647442296147346, -0.0833476111292839, -0.022563718259334564, 0.060407135635614395, -0.0005461707478389144, 0.018408896401524544, 0.031710606068372726, 0.010544038377702236, -0.05023462325334549, -0.030036119744181633, 0.033845577389001846, 0.026896454393863678, -0.006886329967528582, 0.0026817964389920235, 0.02432193048298359, -0.02995239570736885, -0.008780593983829021, 0.0170588418841362, -0.012652846053242683, -0.003916731104254723, -0.06141182780265808, -0.035247962921857834, 0.022752098739147186, 0.027168558910489082, -0.021360181272029877, 0.002932969480752945, 0.01876472495496273, 0.005766516085714102, 0.023945171386003494, -0.00953934621065855, 0.03656661882996559, -0.0022487842943519354, -0.011669084429740906, -0.03334323316812515, -0.020983422175049782, 0.01697511598467827, 0.015332026407122612, -0.03792714327573776, 0.005829309578984976, -0.0008751813438721001, -0.018817052245140076, -0.007336348295211792, 0.0010079629719257355, -0.017466997727751732, 0.008681170642375946, -0.007299718912690878, -0.07158433645963669, -0.01034519262611866, -0.0033672896679490805, -0.011187669821083546, -0.013563348911702633, -0.023003272712230682, 0.012914484366774559, 0.0021951484959572554, -0.019005432724952698, 0.001220544334501028, 0.025870831683278084, -0.038241107016801834, 0.00477228919044137, -0.0007293177768588066, 0.007791599724441767, -0.0073206499218940735, 0.0035739841405302286, 0.018408896401524544, -0.010894633829593658, 0.012454000301659107, 0.03552006557583809, 0.009926571510732174, 0.006085715256631374, -0.01018820982426405, 0.004403378814458847, 0.011313255876302719, 0.014055229723453522, 0.0062479316256940365, 0.00040194240864366293, 0.025452209636569023, -0.013092398643493652, -0.009382362477481365, -0.017770498991012573, -0.015761112794280052, 0.027252282947301865, -0.0020133096259087324, -0.00358444987796247, 0.020543867722153664, 0.012181896716356277, -0.007441003806889057, 0.003874868620187044, -0.025012657046318054, 0.002896340098232031, 0.012757501564919949, -9.598868928151205e-05, -0.018932174891233444, 0.04211336001753807, 0.04253198206424713, 0.04596468061208725, 0.0017739101313054562, -0.048476412892341614, 0.012234224006533623, 0.050820693373680115, -0.0007515570614486933, 0.056346502155065536, -0.006111879367381334, -0.01444245409220457, -0.010842306539416313, -0.01694372110068798, -0.05463015288114548, -0.02664528228342533, 0.008142195641994476, 0.03648289665579796, 0.023505618795752525, 0.011051617562770844, -0.013301709666848183, -0.019675228744745255, -0.03995745629072189, 0.02281489223241806, 0.005845007952302694, 0.005044393707066774, 0.0037309674080461264, 0.007189830765128136, 0.020502006635069847, 0.003621079260483384, 0.014327333308756351, 0.06132810562849045, -0.047178685665130615, -0.02518010511994362, 0.004481870215386152, -0.021192731335759163, 0.04508557543158531, -0.00519876042380929, 0.01466223131865263, -0.01039752084761858, -0.027356939390301704, -0.02580803819000721, 0.02471962198615074, 0.017310013994574547, -0.0987110361456871, -0.0013101556105539203, -0.005005147773772478, -0.015478543937206268, -0.03265250474214554, 0.013081933371722698, 0.005452550016343594, -0.005329579580575228, -0.013238917104899883, 0.005436851643025875, -0.014714558608829975, 0.008482325822114944, -0.05596974492073059, -0.005109803285449743, -0.007692176848649979, 0.0006511532119475305, -0.02430099993944168, -0.012788898311555386, -0.008712567389011383, -0.029680291190743446, -0.019999660551548004, -0.013029606081545353, -0.024803346022963524, 0.02291954681277275, -0.00776020297780633, 0.005104570649564266, 0.015248301438987255, -0.03101988136768341, 0.04171567037701607, -0.02549407258629799, 0.002731507644057274, 0.017425134778022766, 0.046090267598629, 0.009518414735794067, 0.016347184777259827, 0.01337496843189001, -0.030036119744181633, -0.001875949208624661, 0.003181526204571128, 0.0138668492436409, 0.009293405339121819, -0.020188039168715477, 0.0002317137405043468, 0.03627358376979828, -0.02836163155734539, 0.03093615546822548, 0.02365213632583618, 0.020439213141798973, 0.029261669144034386, 0.019151950255036354, 0.049313656985759735, 0.0005265478393994272, 0.004542047157883644, 0.0006776441587135196, -0.001524045248515904, 0.015447147190570831, 0.0126319145783782, -0.014840145595371723, 0.0028440123423933983, -0.045797232538461685, 0.02654062584042549, 0.023861447349190712, 0.03964349254965782, 0.013668004423379898, -0.0033201947808265686, 0.012600518763065338, -0.05044393613934517, 0.04642516374588013, 0.02133925072848797, -0.02027176320552826, 0.005002531222999096, -0.025305692106485367, -0.0046807159669697285, 0.012924950569868088, -0.011114411056041718, 0.025033587589859962, 0.015206439420580864, 0.021663682535290718, 0.054546430706977844, 0.03803179785609245, -0.019863607361912727, 0.008979438804090023, -0.026896454393863678, -0.05450456589460373, 0.03390837088227272, 0.0019165033008903265, -0.009110258892178535, -0.06869585067033768, -0.039392318576574326, -0.026205729693174362, 0.011595825664699078, -0.01045508123934269, 0.013259847648441792, -0.017990274354815483, -0.027273215353488922, -0.006881096865981817, -0.04039701074361801, 0.0012218526098877192, -0.013144726864993572, 0.003516423748806119, 0.025075450539588928, -0.01375172846019268, -0.04159008339047432, -0.017550721764564514, 0.016577426344156265, 0.03826203942298889, -0.016232062131166458, 0.007686944212764502, -0.002854477846994996, -0.009293405339121819, -0.005646162666380405, -0.025096381083130836, 0.013699401170015335, -0.012767966836690903, -0.0034640959929674864, -0.012579587288200855, 0.0007764127221889794, -0.00221477122977376, -0.030412878841161728, 0.017016978934407234, -0.029617497697472572, -0.022542787715792656, -0.01487154234200716, -0.005740352440625429, 0.012370276264846325, -0.03317578509449959, -0.011166738346219063, -0.03464096039533615, -0.014829679392278194, 0.032359469681978226, 0.004191451705992222, -0.017425134778022766, 0.030768707394599915, 0.013835452497005463, 0.017854223027825356, 0.003989989869296551, -0.012307482771575451, 0.0006992293638177216, -0.012495863251388073, -0.010224838741123676, -0.000645266380161047, -0.018178654834628105, 0.010209141299128532, 0.026603419333696365, 0.023819584399461746, -0.005907800979912281, -0.03212922811508179, 0.016818134114146233, 0.013584279455244541, 0.009251543320715427, -0.00418098596855998, -0.005531041417270899, -0.0036289284471422434, -0.012809828855097294, -0.03114546649158001, -0.02258465066552162, -0.014034298248589039, 0.027356939390301704, 0.0056199985556304455, -0.020229902118444443, -0.012370276264846325, 0.01854494959115982, 0.0020381652284413576, 0.004458323121070862, -0.007147968281060457, 0.014902938157320023, -0.024573104456067085, 0.011836533434689045, 0.0001614801149116829, -0.0031841425225138664, 0.014107557013630867, -0.01481921412050724, -0.012370276264846325, 0.01864960417151451, -0.00901083555072546, -0.005067940801382065, 0.005531041417270899, -0.013437761925160885, -0.03166874498128891, -0.02260558120906353, 0.015719251707196236, -0.028424425050616264, -0.02932446263730526, 0.008142195641994476, 0.005756050813943148, 0.009900406934320927, -0.002314194105565548, 0.001060290727764368, 0.10046924650669098, 0.0009464778704568744, -0.036629412323236465, 0.05253704637289047, -0.0029251202940940857, -0.03562472015619278, -0.037571314722299576, -0.0075875213369727135, 0.02656155824661255, -0.023170720785856247, -0.0023822200018912554, -0.036085207015275955, 0.002647783374413848, 0.009021301753818989, -0.014756420627236366, 0.006938657723367214, 0.05023462325334549, -0.0354154109954834, 0.02398703247308731, -0.012673777528107166, 0.044792540371418, -0.03665034472942352, 0.01205630972981453, 0.015290163457393646, -0.015007593668997288, 0.005287717562168837, -0.0003545203944668174, 0.0010897250613197684, 0.010182976722717285, 0.01514364592730999, -0.003874868620187044, -0.007132269907742739, -0.044959988445043564, -0.01644137315452099, 0.0044530900195240974, 0.011627222411334515, 0.03537354990839958, 0.009324802085757256, -0.048895034939050674, -0.01994733139872551, -0.039496973156929016, 0.0020577881950885057, -0.01045508123934269, 0.001567215658724308, -0.024928933009505272, 0.010261468589305878, 0.012077241204679012, 0.004542047157883644, -0.013437761925160885, -0.014149419032037258, -0.004440008196979761, -0.018147258087992668, -0.010748116299510002, -0.018000740557909012, -0.009173051454126835, -0.011669084429740906, -0.0005729887052439153, 0.002878025406971574, 0.007969513535499573, -0.01876472495496273, 0.03868066146969795, 0.013322641141712666, 0.003521656384691596, -0.007372977677732706, 0.01396103948354721, -0.0311245359480381, 0.02400796487927437, 0.030998948961496353, 0.000835281447507441, -0.016692547127604485, -0.04734613373875618, -0.032254815101623535, -0.003309729276224971, 0.001493956777267158, 0.025766175240278244, 0.02229161374270916, -0.024761483073234558, 0.024384723976254463, -0.007681711111217737, 0.018921708688139915, -0.027754630893468857, -0.0069909850135445595, -0.0061851381324231625, 0.04127611592411995, 0.03185712546110153, 0.024552172049880028, -0.004644086584448814, 0.00016859341121744365, 0.050067175179719925, -0.0007888405816629529, -0.003953360486775637, -0.0028937237802892923, -0.011386514641344547, 0.06312818080186844, 0.004071097820997238, 0.0003162557550240308, -0.018701931461691856, -0.007807298097759485, -0.019256606698036194, -0.020439213141798973, 0.009235844947397709, 0.0012460541911423206, 0.006854933220893145, -0.001390609540976584, 4.32112610724289e-05, 0.014651765115559101, 0.01285169180482626, -0.0020800274796783924, -0.07489145547151566, -0.007242158520966768, 0.053164977580308914, -0.02260558120906353, 0.002063020830973983, 0.008864318020641804, -0.018063534051179886, 0.0008974206284619868, 0.056053467094898224, 0.011135341599583626, -0.005525808781385422, -0.01728908345103264, 0.022228822112083435, -0.022856753319501877, 0.016064614057540894, 1.760950908646919e-05, 0.02014617808163166, -0.04860199987888336, 0.0027916845865547657, 0.04521116241812706, 0.023400962352752686, 0.002301112050190568, -0.009675397537648678, 0.015625061467289925, -0.00533219613134861, -0.0058554732240736485, 0.03958069905638695, -0.029240736737847328, -0.04822523891925812, 0.018712397664785385, -0.002447629813104868, -0.060825757682323456, 0.005928732454776764, 0.008105565793812275, -0.017466997727751732, 0.007964281365275383, 0.02781742252409458, -0.0067502777092158794, 0.044792540371418, -0.04353667423129082, 0.03091522492468357, -0.031836193054914474, -0.006734579335898161, -0.014097091741859913, -0.0029748317319899797, 0.0011976510286331177, 0.003351591294631362, 0.00202377513051033, 0.006373518146574497, 0.02390330843627453, 0.011794671416282654, -0.02762904390692711, 0.03893183544278145, 0.02100435271859169, 0.0006459204596467316, -0.003144896822050214, -0.012736570090055466, -0.013814521953463554, -0.03420140594244003, -0.02752438746392727, 0.015373888425529003, 0.024594034999608994, -0.012077241204679012, -0.007420072797685862, -0.011784205213189125, 0.014683161862194538, 0.01114580687135458, -0.013699401170015335, 0.008691636845469475, 0.025117311626672745, 0.00019704662554431707, -0.0029277366120368242, 0.031919918954372406, 0.037152692675590515, 0.023505618795752525, -0.02088923193514347, 0.00242408225312829, -0.0252638291567564, 0.041317977011203766, 0.005028695333749056, 0.015216904692351818, 0.02367306686937809, -0.009188749827444553, 0.020188039168715477, 0.008184057660400867, 0.005169980227947235, -0.007524728309363127, 0.03708989918231964, 0.03049660287797451, 0.011846998706459999, 0.0035792170092463493, 0.02442658692598343, -0.013699401170015335, 0.009439922869205475, -0.001220544334501028, -0.0022186958231031895, 0.011271393857896328, -0.013981970027089119, 0.0017359725898131728, -0.014431988820433617, -0.019267071038484573, 0.03127105534076691, -0.01519597414880991, 0.0046545518562197685, 0.02718949131667614, -0.0507788322865963, -0.04022956266999245, -0.0015279698418453336, 0.013793590478599072, 0.010680090636014938, 0.018189121037721634, 0.006064784247428179, 0.025347555056214333, -0.0013513637240976095, 0.0072892531752586365, 0.0037675967905670404, 0.05136490240693092, -0.004780138377100229, 0.022145096212625504, 0.009638768620789051, 0.020721781998872757, 0.024866139516234398, 0.015729716047644615, 0.030622189864516258, -0.00024234282318502665, -0.0001443100773030892, 0.02066945470869541, 0.015384353697299957, -0.022731168195605278, -0.006101413629949093, -0.053583599627017975, 0.027587180957198143, 0.019601969048380852, 0.015572733245790005, -0.018513552844524384, -0.02176833711564541, -0.011365584097802639, 0.003474561497569084, 0.04188311845064163, 0.00722646014764905, -0.0650957003235817, -0.0014730256516486406, 0.0033018800895661116, -0.023819584399461746, -0.009052697569131851, -0.019800813868641853, -0.021684613078832626, 0.029994256794452667, -0.0012859540292993188, -0.00471472879871726, 0.006227000150829554, 0.019151950255036354, 0.003867019433528185, 0.0002972869260702282, 0.013940108008682728, 0.015834372490644455, -0.007315417286008596, 0.05023462325334549, 0.0046179224736988544, 0.035122375935316086, 0.017247220501303673, 0.023589342832565308, 0.040773771703243256, 0.013259847648441792, -0.01279936358332634, 0.007268322166055441, -0.018837984651327133, -0.0025849901139736176, -0.02398703247308731, 0.025619657710194588, 0.025033587589859962, -0.00944515597075224, -0.02664528228342533, -0.015708785504102707, 0.0015018059639260173, 0.020334556698799133, 0.003503341693431139, -0.025033587589859962, -0.04169473797082901, 0.011124876327812672, 0.023296307772397995, 0.026184797286987305, -0.017006512731313705, 0.001730739837512374, 0.03786434978246689, 0.012119103223085403, -0.00277075357735157, 0.016368115320801735, 0.04701123759150505, 0.06003037467598915, 0.011679550632834435, -0.029387256130576134, 0.013155192136764526, -0.012757501564919949, -0.016933254897594452, 0.005436851643025875, 0.01013064943253994, 0.018911242485046387, 0.006729346700012684, -0.023798653855919838, 0.029701221734285355, -0.03721548244357109, -0.0313757099211216, -0.006070017348974943, -0.023170720785856247, -0.010727185755968094, -0.009340500459074974, 0.02497079409658909, -0.014055229723453522, -0.010240537114441395, -0.04159008339047432, -0.005227540619671345, 0.02294047921895981, -0.0009981514886021614, -0.0024083838798105717, 0.03187805414199829, 0.03861786797642708, -0.03401302546262741, 0.03382464870810509, -0.0177077054977417, -0.020972955971956253, -0.005604300182312727, 0.013824987225234509, 0.016043683513998985, -0.00022991497826296836, -0.03537354990839958, -0.014212212525308132, -0.02836163155734539, 0.03254785016179085, 0.010690555907785892, 0.0036812559701502323, -0.025096381083130836, 0.02400796487927437, 0.008257316425442696, -0.0028518615290522575, 0.045797232538461685, 6.630904681514949e-05, 0.022459063678979874, 0.0011257004225626588, 0.031061742454767227, -0.02048107422888279, -0.020533403381705284, 0.03798993304371834, -0.009947502054274082, -0.018429826945066452, -0.015604129992425442, -0.0033437421079725027, 0.03639917075634003, -0.02815232053399086, -0.04230174049735069, -0.002789068268612027, 0.03796900436282158, -0.024384723976254463, 0.027356939390301704, -0.005975827109068632, -0.020114781334996223, -0.031836193054914474, 0.026687143370509148, -0.01247493177652359, -0.01984267681837082, -0.009000370278954506, -0.005151665303856134, 0.02792207896709442, 0.027587180957198143, 0.006635156460106373, 0.014965731650590897, 0.009026533924043179, -0.014578506350517273, 0.00040913745760917664, 0.03135477751493454, -0.0009883401216939092, -0.05023462325334549, -0.034703753888607025, -0.011093479581177235, 0.04763916879892349, -0.01642044261097908, 0.0015750648453831673, -0.02325444482266903, -0.024866139516234398, 0.004892643075436354, 0.02187299355864525, -0.009110258892178535, -0.03378278389573097, 0.011637687683105469, -0.038220178335905075, 0.022752098739147186, 0.028005803003907204, -0.027356939390301704, -0.018932174891233444, -0.007069476880133152, 0.011260928586125374, -0.007027614861726761, 0.004442624747753143, 0.013552882708609104, -0.02601734921336174, 0.027001110836863518, -0.03495492786169052, -0.0011315871961414814, 0.0156878549605608, 0.020407816395163536, 0.003668174147605896, -0.015436681918799877, -0.017205359414219856, 0.0016365498304367065, -0.02911515161395073, 0.007430538069456816, -0.008351506665349007, 0.016054147854447365, -0.02752438746392727, 0.00776020297780633, 0.01876472495496273, 0.015970423817634583, 0.012673777528107166, 0.0026085374411195517, -0.019476382061839104, -0.044625092297792435, 0.040690045803785324, 0.020208971574902534, 0.024677759036421776, -0.04370412230491638, -0.008623610250651836, -0.009644001722335815, 0.01673441007733345, 0.008759662508964539, 0.014944801107048988, -0.00901083555072546, -0.019915934652090073, 0.016493702307343483, 0.02398703247308731, 0.011815601959824562, 0.0056827920489013195, -0.04575537145137787, 0.007870091125369072, -0.03330136835575104, 0.025535933673381805, 0.037048034369945526, -0.014798283576965332, -0.025515003129839897, 0.025075450539588928, -0.027063904330134392, -0.005096721462905407, -0.02518010511994362, 0.024070758372545242, 0.033845577389001846, -0.02281489223241806, -0.016284391283988953, -0.007765435613691807, 0.014997128397226334, -0.032464124262332916, 0.005698490422219038, 0.0172576867043972, 0.048769447952508926, 0.010716719552874565, 0.004476637579500675, 0.02069038525223732, 0.009398060850799084, -0.028738390654325485, 0.07731945812702179, 0.006274095270782709, 0.009858544915914536, 0.021255524829030037, -0.010905100032687187, 0.04416460916399956, -0.016284391283988953, -0.004003071691840887, -0.029261669144034386, -0.007247391156852245, 0.029910532757639885, -0.017519325017929077, 0.0035007253754884005, 0.018733328208327293, 0.0046231551095843315, 0.03478747606277466, 0.011679550632834435, 0.008409067057073116, -0.024991726502776146, -0.011428376659750938, 0.0041548218578100204, -0.015708785504102707, 0.021914854645729065, -0.03122919239103794, 0.005960128735750914, 0.01493433490395546, 0.0023468988947570324, -0.0011394363828003407, -0.027482526376843452, 0.022647442296147346, -0.0009294713963754475, 0.0073520466685295105, -0.0011100020492449403, -0.008974206633865833, -0.02601734921336174, -0.0277336984872818, 0.011020220816135406, -0.020125245675444603, -0.012883087620139122, 0.014034298248589039, 0.010690555907785892, 0.0009399369009770453, 0.005183062050491571, -0.014798283576965332, -0.022542787715792656, 0.001979296561330557, 0.03369906172156334, -0.016252994537353516, -0.014568041078746319, -0.02027176320552826, 0.008560817688703537, 0.024698689579963684, -0.03771783038973808, -0.02227068319916725, -0.01487154234200716, 0.026959247887134552, -0.04133890941739082, -0.002914654789492488, 0.024614965543150902, 0.01846122369170189, -0.04066911339759827, 0.02100435271859169, 0.010209141299128532, -0.005099337548017502, 0.03658755123615265, -0.010789978317916393, -0.01928800344467163, 0.008963740430772305, -0.0008300486952066422, 0.00042679806938394904, 0.011344652622938156, 0.01173187792301178, 0.022124165669083595, -0.03681779280304909, 8.674956916365772e-05, 0.006881096865981817, 0.020931093022227287, 6.410147034330294e-05, -0.006718880962580442, 0.0030140774324536324, -0.0015816057566553354, -0.010789978317916393, -0.020104315131902695, 0.014714558608829975, 0.000458521768450737, 0.016996048390865326, -0.013029606081545353, 0.003814691910520196, 0.012788898311555386, -0.03131291642785072, 0.013950574211776257, 0.001065523480065167, -0.007147968281060457, -0.04403902217745781, -0.020522937178611755, -0.0067555103451013565, -0.027859285473823547, -0.029073288664221764, -0.005431618541479111, -0.011815601959824562, 0.02003105729818344, -0.013814521953463554, -0.0036760233342647552, 0.021265991032123566, 0.013688934966921806, -0.005405454896390438, 0.004345818422734737, -0.00557290343567729, 0.0003980178153142333, 0.016577426344156265, 0.018073998391628265, -0.02024036832153797, -0.02058573067188263, -0.020177574828267097, 0.01264238078147173, -0.018042603507637978, 0.016378581523895264, 0.001943975337781012, -0.0165355633944273, -0.008948042057454586, 0.015216904692351818, -0.010601598769426346, 0.01971708983182907, -0.012024912983179092, -0.017100702971220016, -0.056681402027606964, -0.030684983357787132, -0.017896084114909172, 0.04081563279032707, 0.0025483607314527035, -0.03229667618870735, -0.021475302055478096, 0.025012657046318054, -0.03208736702799797, 0.002416233066469431, 0.017739102244377136, -0.01440059207379818, 0.012663311325013638, 0.024614965543150902, -0.04416460916399956, 0.01579250954091549, 0.009518414735794067, 0.03817831352353096, 0.031082672998309135, -0.025661520659923553, 0.005355743691325188, -0.008681170642375946, 0.008382903411984444, -0.026101073250174522, -0.007472400553524494, -0.01672394387423992, -0.05345801264047623, -0.03187805414199829, -0.009319568984210491, 0.012087706476449966, 0.00879629235714674, -0.023798653855919838, -0.00933003518730402, 0.0054159206338226795, 0.0030533233657479286, -7.21959222573787e-05, -0.007069476880133152, -0.00014005844423081726, -0.0079433498904109, 0.006467707920819521, 0.01460990309715271, -0.007331115659326315, -0.010915565304458141, 0.03288274630904198, 0.0032521686516702175, -0.014923869632184505, 0.0009974974673241377, -0.022793961688876152, -0.010402753949165344, -0.008832921274006367, -0.008016608655452728, 0.007367745041847229, -0.025891762226819992, 0.03162688389420509, -0.005292950198054314, 0.0004850126861128956, 0.003346358658745885, 0.004549896344542503, 0.04412274435162544, -0.01546807773411274, 0.025870831683278084, -0.023317238315939903, 8.29067503218539e-05, -0.018628673627972603, 0.006200836505740881, -0.0030690215062350035, -0.020596196874976158, -0.014515713788568974, 0.027210421860218048, 0.005452550016343594, 0.017404204234480858, 0.03807365894317627, -0.0046859486028552055, 0.011784205213189125, 0.012223758734762669, -0.002592839300632477, -0.0295547042042017, 0.09209681302309036, 0.02260558120906353, 0.014965731650590897, -0.01077951304614544, -0.0012349345488473773, -0.0026386259123682976, 0.03602241352200508, 0.002752438886091113, 0.013793590478599072, 0.001333703170530498, 0.022752098739147186, -0.010863237082958221, -0.031940847635269165, 0.0045211161486804485, -0.0070851752534508705, -0.016587892547249794, -0.005489179398864508, -0.003029775805771351, -0.007723573595285416, 0.002180758398026228, 0.020941559225320816, 0.021789267659187317, 0.02367306686937809, 0.02718949131667614, -0.016912324354052544, 0.022040441632270813, 0.014756420627236366, 0.021663682535290718, 0.02741973288357258, -0.003055939683690667, 0.005292950198054314, -0.028633736073970795, -0.00578221445903182, -0.012736570090055466, -0.022207889705896378, -0.018053067848086357, 0.01908915676176548, 0.012328414246439934, -0.00472257798537612, 0.036524757742881775, -0.0045865257270634174, -0.02131831832230091, -0.02945004776120186, 0.0018026904435828328, -0.0039507439360022545, 0.03702710568904877, 0.0021428207401186228, -0.028424425050616264, -0.011020220816135406, -0.004474021028727293, 0.005463015288114548, -0.053374286741018295, -0.009523647837340832, 0.04650888964533806, -0.03746665641665459, 0.022982340306043625, -0.0007822996121831238, 0.03007798083126545, 0.007686944212764502, -0.026310384273529053, 0.046006545424461365, -0.01684953086078167, 0.022124165669083595, -0.02739880234003067, 0.035875894129276276], [0.028109854087233543, 0.03849988803267479, 0.013067750260233879, 0.006265486590564251, -0.00040451105451211333, 0.04118994623422623, -0.044422946870326996, 0.03677232936024666, 0.0319104865193367, 0.04518800973892212, -0.027714984491467476, -0.02143407240509987, 0.04849505051970482, 0.021989358589053154, -0.03368740156292915, -0.01621437631547451, 0.00482791056856513, 0.03245343267917633, -0.0005082417046651244, 0.014869348146021366, -0.03968450054526329, 0.03141689673066139, -0.034403104335069656, 0.03119478188455105, -0.03783354535698891, -0.012685219757258892, 0.01848488301038742, -0.02377861738204956, 0.0834164246916771, -0.015967581421136856, 0.053998563438653946, -0.03632809966802597, 0.02951658144593239, -0.001178442151285708, -0.0036432987544685602, 0.0042849634774029255, -0.015486333519220352, -0.010217278264462948, 0.007076822686940432, -0.01730027049779892, -0.026579730212688446, -0.030479079112410545, 0.0352175273001194, -0.027813700959086418, -0.013956209644675255, 0.04363320767879486, 0.015794826671481133, -0.020977502688765526, 0.0072619179263710976, -0.0015825675800442696, 0.007397654931992292, 0.021915322169661522, 0.022705063223838806, -0.015473993495106697, 0.007187879644334316, -0.0016735729295760393, 0.007891243323683739, 0.013043071143329144, 0.04037552326917648, 0.014425118453800678, 0.006521535571664572, -0.013314545154571533, 0.026703128591179848, 0.02956593967974186, -0.028307290747761726, 0.003843819024041295, -0.007872733287513256, 0.020619651302695274, -0.016325432807207108, -0.03738931566476822, 0.059526752680540085, 0.021113241091370583, -0.02455601841211319, 0.002250454155728221, -0.015634410083293915, 0.002168703591451049, 0.01675732247531414, -0.003226833650842309, -0.006154429167509079, 0.0031327432952821255, -0.06046456843614578, -0.012808617204427719, 0.0009864054154604673, -0.024259865283966064, -0.014104286208748817, 0.006978104822337627, -0.09817471355199814, -0.0015671428991481662, -0.00046273905900307, -0.01074171531945467, 0.014585535041987896, 0.021261317655444145, -0.03961046412587166, 0.013400922529399395, 0.029936131089925766, 0.04748319461941719, 0.06786839663982391, -0.03578515350818634, -0.001024966943077743, 0.016029279679059982, 0.005623822100460529, -0.0319104865193367, -0.05083959549665451, -0.02280377969145775, 0.003035568166524172, -0.049358829855918884, -0.01232736837118864, 0.03973386064171791, 0.015239539556205273, -0.017707480117678642, 0.043904680758714676, -0.007298937067389488, -0.016362452879548073, 0.044373590499162674, 0.026110822334885597, -0.029417863115668297, -0.026036784052848816, -0.0470389649271965, -0.012037385255098343, -0.0361553430557251, 0.05079023912549019, -0.012352047488093376, -0.033810798078775406, -0.03958578407764435, -0.005225866101682186, 0.0034088443499058485, -0.01649818941950798, 0.0018586685182526708, -0.04175757244229317, 0.016078639775514603, 0.012308858335018158, -0.04190564900636673, 0.0791715681552887, -0.04474378004670143, -0.023161631077528, -0.010260467417538166, -0.04118994623422623, -0.0614517442882061, -0.004753872286528349, 0.04030148684978485, 0.002327577443793416, 0.009822407737374306, 0.024161148816347122, 0.01680668257176876, -0.043263014405965805, 0.0010627573356032372, 0.00101185601670295, 0.026703128591179848, 0.016337772831320763, -0.033884838223457336, -0.04188096895813942, 0.006509196013212204, -0.007662958465516567, -0.01928696408867836, -0.019916288554668427, 0.030577795580029488, 0.009020326659083366, 0.02512364462018013, 0.009624972008168697, 0.04511397331953049, -0.012308858335018158, 0.02089112624526024, 0.0009995163418352604, -0.019200585782527924, -0.00855758786201477, -0.0278877392411232, 0.0006262401584535837, 0.0423005186021328, -0.05523253232240677, -0.04232519865036011, 0.007570410612970591, -0.04237455874681473, 0.020076705142855644, -0.022236153483390808, -0.0184355229139328, -0.016819022595882416, 0.04257199168205261, 0.058440856635570526, 0.009402857162058353, -0.016300754621624947, 0.025321081280708313, 0.06456135213375092, -0.053998563438653946, -0.007718487177044153, -0.0723106861114502, 0.04701428860425949, -0.005592972505837679, 0.03353932499885559, -0.04516332969069481, 0.020224781706929207, -0.0012170036789029837, -0.03573579341173172, -0.014388099312782288, -0.010149409994482994, 0.021952340379357338, 0.017695141956210136, -0.03585918992757797, -0.023581182584166527, 0.021705545485019684, -0.016954759135842323, -0.00017747969832271338, 0.008471209555864334, -0.007348296232521534, -0.04795210435986519, 0.0245806984603405, -0.007397654931992292, -0.07418632507324219, -0.01949673891067505, 0.03536560386419296, -0.04180692881345749, 0.015227199532091618, -0.03896879777312279, -0.03447714447975159, -0.021076221019029617, -0.009853256866335869, 0.03348996862769127, 0.05957610905170441, -0.03136753663420677, 0.021002182736992836, -0.023630540817975998, -0.03573579341173172, -0.016670946031808853, 0.08706898242235184, 1.8292652384843677e-05, -0.04575563594698906, -0.002273591235280037, 0.040498919785022736, 0.0005232807598076761, 0.0032360884360969067, -0.03502009063959122, -0.05937867611646652, 0.0080948481336236, 0.021964680403470993, -0.04030148684978485, -0.02065667137503624, -0.005528189241886139, 0.0038900929503142834, 0.010001333430409431, 0.03134285658597946, 0.018275108188390732, 0.02226083353161812, -0.031564973294734955, -0.035464320331811905, 0.0033564006444066763, 0.029714016243815422, -0.02070602960884571, -0.015535692684352398, 0.01009388081729412, 0.03556303679943085, 0.029269786551594734, 0.037216559052467346, 0.044916536659002304, 0.05464022606611252, -0.04738447815179825, 0.0028458451852202415, 0.060612645000219345, 0.06317930668592453, -0.04696492850780487, 0.054936379194259644, -0.02623421885073185, -0.005469575524330139, 0.006237722467631102, -0.01588120497763157, -0.03953642398118973, -0.08326835185289383, -0.042152442038059235, 0.018756356090307236, -0.047828707844018936, -0.020718369632959366, 0.06317930668592453, -0.04422551393508911, 0.043386414647102356, -0.014548515900969505, 0.006515365559607744, -0.05735496059060097, -0.017571743577718735, 0.015190180391073227, 0.002777976682409644, 0.008205905556678772, -0.0005159540451131761, -0.021026862785220146, -0.020237121731042862, 0.013006052002310753, -0.05686137452721596, 0.032058559358119965, 0.046594735234975815, -0.03126882016658783, -0.05518317222595215, -0.03393419831991196, 0.03840117156505585, 0.04674281179904938, -0.008477379567921162, -0.001472281408496201, 0.011216794140636921, 0.020619651302695274, 0.016905399039387703, 0.04743383824825287, 0.04691556841135025, -0.002887491602450609, 0.040967829525470734, 0.0040628486312925816, 0.023025894537568092, -0.04091847315430641, -0.03509413078427315, -0.04020276665687561, 0.03472393751144409, 0.020520934835076332, 0.015942903235554695, -0.022162115201354027, -0.03576047345995903, -0.03245343267917633, 0.014610214158892632, -0.047853387892246246, -0.012944353744387627, -0.014425118453800678, -0.018546581268310547, -0.04123930260539055, 0.04118994623422623, 0.021668527275323868, -0.04202904552221298, 0.016411811113357544, -0.006317930296063423, -0.0002897903323173523, -0.0139438696205616, -0.027492869645357132, -0.014227683655917645, 0.02625889889895916, 0.04410211741924286, 0.00811952818185091, -0.0006987359374761581, 0.004161566495895386, 0.0017167618498206139, 0.012012705206871033, -0.005673180799931288, 0.005580632947385311, -0.03810501843690872, -0.0442008338868618, 0.024420281872153282, 0.011611665599048138, 0.03576047345995903, 0.028381329029798508, -0.02630825713276863, -0.015560371801257133, 0.026974601671099663, -0.039955973625183105, 0.00644132774323225, -0.020496254786849022, -0.03341592848300934, 0.026974601671099663, 0.04037552326917648, 0.01241991575807333, 0.034255027770996094, -0.05646650493144989, 0.003649468533694744, -0.05765111371874809, -0.014363420195877552, 0.032650865614414215, 0.0015709990402683616, -0.01200653612613678, 0.02569127269089222, 0.0176087636500597, -0.020619651302695274, 0.01562207005918026, 0.0150667829439044, -0.005065449979156256, 0.02519768290221691, -0.024407941848039627, -0.006854707840830088, -0.0026746317744255066, -0.014597874134778976, 0.03077523224055767, 0.022519966587424278, 0.037216559052467346, 0.019126547500491142, 0.026579730212688446, 0.0328483022749424, 0.001065842225216329, 0.00407827366143465, 0.030281642451882362, -0.01600460149347782, -0.005978588480502367, -0.03075055219233036, 0.037117842584848404, 0.010032182559370995, -0.010100050829350948, 0.04464506357908249, -0.022865477949380875, -0.028381329029798508, 0.03864796459674835, -0.00952625460922718, -0.02620953880250454, 0.0012054352555423975, 0.007033633533865213, 0.015313577838242054, -0.0008799754432402551, -0.020249459892511368, 0.006194533314555883, 0.03082459047436714, 0.014264702796936035, -0.004676749464124441, -0.002298270585015416, -0.061254311352968216, 0.007181710097938776, 0.0016874551074579358, -0.051678698509931564, -0.028282610699534416, -0.05022261291742325, -0.02205105870962143, -0.014721271581947803, 0.014264702796936035, 0.026629090309143066, 0.06016841530799866, 0.013684735633432865, 0.022890157997608185, 0.04074571654200554, -0.005808917339891195, -0.009575613774359226, 0.019743531942367554, -0.0018154794815927744, -0.007774015888571739, 0.01477063074707985, -0.008606946095824242, -0.042127761989831924, 0.03726591914892197, -0.018571261316537857, 0.04691556841135025, 0.0401780903339386, -0.0032700225710868835, 0.011562306433916092, -0.02349480427801609, 0.030947986990213394, -0.017547065392136574, 0.004661324433982372, 0.01590588316321373, -0.027517547830939293, -0.011185945011675358, -0.031589653342962265, -0.03808033838868141, -0.009939635172486305, -0.027542227879166603, 0.027023959904909134, -0.05567676201462746, 0.015992261469364166, 0.0036155343987047672, -0.003034025663509965, -0.01959545537829399, -0.06515365839004517, 0.01781853847205639, -0.004433040041476488, 0.03240407258272171, -0.002157906536012888, 0.0010026012314483523, -0.0330950953066349, 0.026110822334885597, 0.0032515130005776882, -0.036550216376781464, -0.005485000088810921, -0.013684735633432865, 0.03368740156292915, 0.03255214914679527, 0.026703128591179848, 0.04698960855603218, 0.028948955237865448, 0.05138254538178444, 0.012561822310090065, 0.029442543163895607, -0.010414713062345982, -0.0020884955301880836, -0.0256419125944376, -0.03220663592219353, -0.005873701069504023, -0.0069719348102808, 0.03228067606687546, -0.01509146299213171, 0.011611665599048138, -0.025135984644293785, 0.034872014075517654, -0.054985739290714264, -0.03188580647110939, -0.013289865106344223, -0.04094314947724342, 0.02687588334083557, -0.01396854966878891, 0.0076814680360257626, 0.06841134279966354, 0.015449314378201962, 0.0806029736995697, 0.024161148816347122, -0.06110623478889465, -0.039931293576955795, -0.04020276665687561, 0.004991411697119474, 0.026653768494725227, -0.01200653612613678, 0.0006354949437081814, 0.03065183386206627, 0.0278877392411232, -0.013252845965325832, 0.01791725680232048, -0.013857492245733738, -0.026036784052848816, -0.027073320001363754, -0.005247460678219795, -0.009143723174929619, 0.04355916753411293, 0.022297851741313934, -0.023939033970236778, -0.022273173555731773, 0.030010169371962547, -0.013252845965325832, -0.029788054525852203, 0.009119044058024883, 0.03018292598426342, 0.01815170980989933, -0.01569610834121704, -0.024667076766490936, 0.024753453209996223, -0.022322531789541245, -0.03279894217848778, 0.011192115023732185, 0.031589653342962265, 0.006928746122866869, 0.05429471656680107, 0.0052875648252666, 0.023396085947752, 0.03220663592219353, -0.0184355229139328, -0.04807550087571144, -0.020385198295116425, 0.013265185989439487, -0.03460054099559784, -0.04706364497542381, -0.03311977535486221, 0.02351948246359825, 0.0017892576288431883, 0.025913387537002563, 0.015634410083293915, 0.024728775024414062, -0.03847520798444748, 0.017522385343909264, 0.007767846342176199, 0.013956209644675255, 0.01310476940125227, -0.040449563413858414, 0.030429719015955925, -0.020212441682815552, -0.006135919596999884, -0.01696709915995598, 0.005410961806774139, -0.01241991575807333, -0.020570293068885803, 0.004433040041476488, -0.023507144302129745, -0.009624972008168697, -0.000603874446824193, 0.04977838322520256, 0.006240807473659515, -0.08381129801273346, 0.024494320154190063, 0.015757806599140167, -0.01725091226398945, 0.027073320001363754, -0.016621585935354233, -0.013869831338524818, -0.04696492850780487, 0.0034150141291320324, -0.0007060626521706581, -0.03171304985880852, 0.004979072138667107, -0.013043071143329144, -0.03442778438329697, 0.017028797417879105, 0.001881805481389165, 0.02687588334083557, 0.03418099135160446, 0.006200703326612711, 0.02493854984641075, -0.028751518577337265, 0.029467223212122917, 0.016794342547655106, -0.011494438163936138, 0.0002095822273986414, -0.010100050829350948, -0.00897096749395132, -0.016917739063501358, 0.002774891909211874, -0.002330662216991186, -0.03590855002403259, -0.034822653979063034, 0.021100901067256927, 0.029812734574079514, -0.01869465783238411, -0.0009493862744420767, 0.02509896643459797, -0.008946288377046585, 0.03511880710721016, -0.016436491161584854, 0.03358868509531021, 0.010118560865521431, -0.0060186926275491714, 0.0026252728421241045, 0.00482174102216959, -0.020298819988965988, 0.02119961753487587, -0.030503757297992706, -0.028208572417497635, -0.0037975450977683067, -0.018916772678494453, 0.06826326251029968, 0.040005333721637726, 0.016819022595882416, -0.020274139940738678, 0.03842585161328316, -0.01572078838944435, -0.012142272666096687, -0.017287930473685265, -0.012506294064223766, -0.012870315462350845, 0.012512464076280594, 0.012259500101208687, -0.013265185989439487, -0.0025774564128369093, 0.015597390942275524, -0.042127761989831924, -0.038277775049209595, -0.007348296232521534, 0.017473027110099792, -0.04802614450454712, -0.008946288377046585, -0.04906268045306206, -0.03699444606900215, 0.0015794825740158558, 0.0024355498608201742, -0.04474378004670143, -0.006354949437081814, -0.034279707819223404, -0.004578031599521637, 0.008397171273827553, 0.004898863844573498, 0.0328483022749424, 0.023556502535939217, -0.0413626991212368, -0.003344060853123665, -0.047729991376399994, 0.06071136146783829, 0.034872014075517654, 0.008748852647840977, 0.027023959904909134, 0.032650865614414215, 0.010828093625605106, 0.01755940355360508, -0.04689088836312294, -0.007422334514558315, -0.004787806887179613, 0.014141305349767208, 0.013758773915469646, -0.026530371978878975, 0.037167198956012726, 0.03798162192106247, -0.0043867663480341434, -0.013783453963696957, 0.032774265855550766, 0.005191931966692209, 0.0032114090863615274, 0.013154128566384315, 0.010303656570613384, 0.03849988803267479, -0.02422284707427025, 0.0361553430557251, -0.04197968542575836, -0.01145124901086092, 0.012117593549191952, 0.009896446019411087, -0.035513680428266525, 0.014671912416815758, -0.003452033270150423, -0.031071385368704796, 0.0280111376196146, -0.006583234295248985, 0.023050574585795403, 0.002856642473489046, -0.025370439514517784, -0.031022025272250175, -0.003985725808888674, -0.010673847049474716, -0.025839349254965782, 0.024950889870524406, -0.015683768317103386, 0.005744134075939655, 0.005241291131824255, -0.0010504176607355475, 0.04689088836312294, 0.017497705295681953, 0.014227683655917645, -0.019977986812591553, 0.017978955060243607, -0.01611565798521042, 0.02382797561585903, 0.013919190503656864, -0.006142089609056711, -0.0032052390743047, -0.0016057045431807637, 0.02741883136332035, -0.037611428648233414, -0.014795309863984585, -0.02732011303305626, 0.0007079907227307558, -0.008489718660712242, -0.0006736709037795663, -0.01393153052777052, -0.030306322500109673, -0.0055436138063669205, -0.03341592848300934, -0.011364870704710484, -0.006308675743639469, -0.03985725715756416, -0.03531624376773834, -0.006614083424210548, 0.0014715101569890976, 0.012049724347889423, -0.06648634374141693, 0.005574462935328484, -0.009162233211100101, -0.020274139940738678, 0.0005495026125572622, -0.0151284821331501, 0.0045286729000508785, -0.028356648981571198, -0.011907817795872688, 0.008884590119123459, -0.01928696408867836, 0.013869831338524818, 0.005932314787060022, 0.01253714319318533, -0.011506777256727219, 0.028134534135460854, -0.023346727713942528, 0.01900315098464489, -0.03252746909856796, -0.03849988803267479, 0.019114207476377487, -0.020150743424892426, -0.004337407182902098, 0.01864529773592949, -0.013240506872534752, -0.004362086765468121, -0.007613599766045809, 0.0335640050470829, 0.007508712355047464, -0.011531457304954529, 0.005966248922049999, 0.008878420107066631, -0.017497705295681953, -0.02367989905178547, -0.0012841008137911558, -0.015585050918161869, 0.00977304857224226, -0.02356884256005287, 0.01926228404045105, 0.025789989158511162, 0.008890759199857712, -0.009236271493136883, -0.012364387512207031, -0.014684252440929413, 0.003115776227787137, -0.039980653673410416, -0.04953158646821976, 0.020385198295116425, 0.025839349254965782, 0.023790957406163216, -0.03953642398118973, 0.01257416233420372, -0.008859910070896149, 0.03729059547185898, 0.010464072227478027, -0.00968050118535757, -0.03556303679943085, -0.024827491492033005, 0.038203734904527664, -0.0035044769756495953, 0.04536076635122299, -0.0025913387071341276, 0.006472176872193813, 0.029491901397705078, -0.02342076599597931, 0.003340975847095251, -0.030849270522594452, 0.01992862857878208, 0.020496254786849022, 0.028776198625564575, -0.015436974354088306, 0.0009115959401242435, 0.002779519185423851, -0.05232036113739014, -0.008711833506822586, 0.013820473104715347, -0.0161896962672472, -0.048840563744306564, -0.04790274798870087, -0.0013257473474368453, 0.010994679294526577, -0.005207356531172991, 0.016621585935354233, 0.021088561043143272, 0.06549917161464691, 0.024691754952073097, -0.03650085628032684, 0.034279707819223404, 0.03314445540308952, -0.018164049834012985, -0.008045489899814129, 0.037734825164079666, 0.015264218673110008, 0.009458386339247227, -0.0006948797963559628, 0.008409511297941208, -0.05143190175294876, 0.016276074573397636, -0.04289282485842705, -0.02070602960884571, 0.034847334027290344, 0.04079507291316986, -0.020274139940738678, -0.01838616468012333, 0.03462522104382515, -0.010828093625605106, 0.015116142109036446, 0.012129932641983032, -0.020052025094628334, -0.008637795224785805, 0.025296401232481003, -0.002526555210351944, 0.0068670473992824554, -0.021026862785220146, -0.023124612867832184, -0.019731193780899048, -0.009075854904949665, 0.025518516078591347, 0.0221004169434309, 0.0005498882383108139, 0.01933632232248783, -0.00025373525568284094, 0.012055894359946251, -0.010951491072773933, -0.03566175699234009, 0.033292531967163086, 0.004099867772310972, 0.029812734574079514, -0.0012154611758887768, 0.036081306636333466, -0.029491901397705078, -0.035982586443424225, -0.014548515900969505, -0.011827610433101654, 0.024383263662457466, -0.015967581421136856, 0.009896446019411087, -0.01871933601796627, -0.0067559899762272835, 0.008323132991790771, -0.02902299351990223, 0.018916772678494453, -0.013857492245733738, 0.00740382494404912, -0.0038067998830229044, -0.028233252465724945, 0.0015578881138935685, 0.013734094798564911, -0.013067750260233879, 0.004210925195366144, 0.01678200252354145, -0.022939516231417656, -0.023902013897895813, -0.014277041889727116, -0.00895862840116024, 0.018028313294053078, -0.012956693768501282, 0.06076072156429291, 0.0016350112855434418, 0.02367989905178547, 0.0016427235677838326, 0.020977502688765526, 0.03563707694411278, 0.01204355526715517, -0.01421534363180399, -0.03186112642288208, -0.026481013745069504, 0.03077523224055767, 0.02150811068713665, -0.014634893275797367, -0.00045811166637577116, 0.03457586094737053, 0.05236972123384476, -0.0008645507623441517, -0.004991411697119474, 0.03395887464284897, -0.009951974265277386, -0.002463314216583967, -0.037191879004240036, -0.005845936480909586, -0.0021764158736914396, 0.030405040830373764, -0.019410360604524612, 0.00644132774323225, -0.028702160343527794, 0.010167919099330902, -0.006663442123681307, 0.003529156558215618, 0.008643965236842632, -0.00258208392187953, 0.01673264428973198, -0.021261317655444145, -0.00550659466534853, -0.0015841099666431546, 0.021940000355243683, 0.02798645757138729, 0.008859910070896149, 0.004368256777524948, 0.003957961220294237, 0.02493854984641075, 0.0673748031258583, -0.020792407914996147, -0.04190564900636673, 0.006780669558793306, 0.0012031215010210872, -0.038253095000982285, 0.0029368505347520113, 0.034921374171972275, -0.0007357550784945488, -0.03462522104382515, -0.04965498298406601, 0.042103081941604614, -0.0034921374171972275, 0.06466007232666016, 0.009304139763116837, -0.026357615366578102, 0.012284179218113422, -0.004241774789988995, -0.002924510743469, -0.017954275012016296, 0.018521901220083237, -0.017164533957839012, -0.012339707463979721, -0.020878786221146584, -0.005525104235857725, -0.0052999043837189674, 0.020594973117113113, 0.035439640283584595, 0.03119478188455105, -0.004772381857037544, 0.025987423956394196, 0.016461171209812164, 0.022297851741313934, 0.0059168897569179535, -0.033243171870708466, 0.002575914142653346, -0.0026175605598837137, 0.0027101084124296904, -0.010069201700389385, -0.03556303679943085, 0.028652802109718323, 0.020693689584732056, 0.03363804519176483, -0.035489000380039215, 0.03462522104382515, 0.01029131654649973, 0.017744500190019608, -0.020027345046401024, 0.03919091075658798, 0.023902013897895813, -0.04067167639732361, -0.009174573235213757, 0.05182677507400513, 0.0032083240803331137, 0.010248127393424511, 0.025271721184253693, 0.016695624217391014, 0.007187879644334316, 0.048914603888988495, 0.010568959638476372, 0.008045489899814129, 0.03415631130337715, 0.0033872497733682394, 0.000672514084726572, -0.04763127118349075, 0.021360034123063087, 0.04360852763056755, -0.00041068089194595814, -0.000589221075642854, 0.004075188655406237, 0.0020869530271738768, 0.014030247926712036, -0.014338740147650242, 0.035439640283584595, -0.011500608175992966, 0.009057345800101757, 0.018632959574460983, 0.006583234295248985, 0.04193032905459404, 0.008545247837901115, 0.019385680556297302, 0.04022744670510292, -0.001596449757926166, 0.019410360604524612, -0.033786121755838394, -0.008903099223971367, 0.02514832466840744, -0.0030479079578071833, -0.022939516231417656, 0.0206813495606184, -0.0019789806101471186, -0.021940000355243683, 0.001486934837885201, 0.049383509904146194, -0.05286330729722977, -0.021421732380986214, 0.0008360152132809162, -0.04170821234583855, -0.028257930651307106, 0.02323566935956478, -0.010272806510329247, 0.016251394525170326, 0.0268265251070261, -0.014918707311153412, -0.010501091368496418, -0.024778133258223534, 0.009785388596355915, 0.05286330729722977, 0.013030731119215488, -0.004007319919764996, -0.015733128413558006, 0.003652553539723158, -0.0038314792327582836, 0.0316636897623539, 0.007996130734682083, 0.04242391511797905, 0.028331968933343887, -0.007107671815901995, 0.004013489931821823, 0.023951373994350433, 0.021754905581474304, 0.016461171209812164, -0.023840315639972687, 0.024111788719892502, 0.01954609714448452, -0.007922092452645302, 0.007860394194722176, -0.010673847049474716, -0.015486333519220352, -0.005882955621927977, 0.02628357708454132, -0.01009388081729412, -0.04425019398331642, 0.013721754774451256, 0.015177840366959572, 0.02086644619703293, 0.011580815538764, 0.0033471458591520786, -0.0032175788655877113, -0.009119044058024883, 0.004923543427139521, -0.02744350954890251, -0.010069201700389385, -0.03536560386419296, 0.04353449121117592, 0.0150667829439044, -0.023655220866203308, 0.03462522104382515, -0.02145875245332718, 0.0010288232006132603, 0.006842367816716433, 0.014079607091844082, 0.043263014405965805, -0.006379629019647837, -0.006058796774595976, 0.0151284821331501, -0.0060186926275491714, -0.021915322169661522, -0.05355433374643326, 0.030306322500109673, 0.01947205886244774, 0.0003987268137279898, -0.009402857162058353, 0.001266362494789064, 0.02396371215581894, -0.030010169371962547, 0.004803231451660395, -0.0015949072549119592, -0.016856040805578232, 0.013265185989439487, 0.0032977869268506765, 0.0007639050600118935, -0.013857492245733738, 0.00622846744954586, 0.02158214896917343, -0.01895379088819027, 0.02261868491768837, -0.0008437275537289679, -0.006157514173537493, -0.031022025272250175, 0.009353498928248882, 0.0031959842890501022, -0.013302205130457878, -0.01755940355360508, 0.012216310948133469, 0.028307290747761726, 0.013462621718645096, -0.006577064283192158, 0.0021193448919802904, 0.006978104822337627, 0.013499640859663486, -0.0151284821331501, 0.014227683655917645, -0.006490686442703009, 0.0032299186568707228, 0.0268265251070261, -0.0007380687748081982, -0.004781636875122786, -0.0016658605309203267, 0.007477863226085901, 0.003905517514795065, 0.009797727689146996, -0.005022261291742325, -0.0023738513700664043, 0.017238572239875793, -0.012907334603369236, 0.005765728652477264, -0.013289865106344223, 0.0163130946457386, -0.028874916955828667, -0.002828878117725253, -0.000940131489187479, -0.03348996862769127, -0.02524704299867153, -0.026012104004621506, 0.006941085681319237, 0.013437941670417786, -0.03464990109205246, -0.030923308804631233, 0.0008892302284948528, -0.00035303132608532906, 0.05241907760500908, 0.01921292580664158, -0.00488652428612113, -0.020755387842655182, -0.0028489299584180117, -0.015745466575026512, 0.07976387441158295, -0.016917739063501358, -0.014918707311153412, -0.006990444380789995, 0.040992509573698044, 0.0034921374171972275, 0.005617652088403702, 0.031022025272250175, 0.012635860592126846, 0.007996130734682083, -0.00853290781378746, 0.006731310859322548, -0.0037481861654669046, 0.016387132927775383, 0.013018392026424408, -0.006293251179158688, 0.014240022748708725, 0.009193082340061665, -0.0007496372563764453, 0.01133402157574892, 0.028899595141410828, -0.017756840214133263, -0.017176873981952667, -0.023889673873782158, 0.01734962873160839, -0.03506945073604584, -0.042127761989831924, -0.0008005385752767324, -0.0026329851243644953, 0.03872200474143028, 0.019768211990594864, 0.013635377399623394, -0.0020915805362164974, -0.027023959904909134, 0.006614083424210548, -0.03023228421807289, -0.022791439667344093, 0.0005375485052354634, 0.0059168897569179535, 0.009069684892892838, -0.0011745858937501907, -0.029714016243815422, -0.00920542236417532, -0.010618318803608418, 0.026999281719326973, 0.01704113744199276, -0.026110822334885597, -0.001854041125625372, 0.018892092630267143, 0.004423785489052534, 0.004297303501516581, 0.027048639953136444, -0.013289865106344223, -0.021878302097320557, 0.006577064283192158, 0.033786121755838394, -0.0323793925344944, -0.034822653979063034, -0.0027378727681934834, -0.0043312376365065575, -0.03842585161328316, 0.01284563634544611, 0.00013400151510722935, 0.024074770510196686, -0.012981372885406017, 0.024420281872153282, -0.023889673873782158, 0.036673612892627716, 0.012228650972247124, 0.011938667856156826, -0.003430438693612814, -0.010063031688332558, -0.024457301944494247, 0.00036382858525030315, 0.05301138386130333, -0.0016427235677838326, -0.007817205041646957, 0.03627873957157135, -0.040622320026159286, -0.015659090131521225, 0.0057410490699112415, 0.00032777347951196134, 0.05853957310318947, 0.0163130946457386, 0.011747402139008045, 0.005392452236264944, -0.018916772678494453, 0.03282362222671509, 0.022137435153126717, -0.004251029342412949, 0.02512364462018013, -0.026431653648614883, -0.002747127553448081, 0.0009285630076192319, 0.004004235379397869, 0.01481998898088932, -0.02174256555736065, 0.006135919596999884, -0.022865477949380875, -0.0290723517537117, 0.029171070083975792, -0.033193815499544144, -0.057256244122982025, 0.011371040716767311, -0.001997490180656314, -0.016843700781464577, 0.018213408067822456, -0.019040169194340706, 0.009877935983240604, 0.007545731496065855, -0.032181959599256516, 0.008983307518064976, 0.02119961753487587, -0.006453667301684618, -0.02042221650481224, -0.012783937156200409, 0.0070644826628267765, 0.012635860592126846, 0.01560973096638918, 0.018571261316537857, 0.014067267067730427, -0.0316636897623539, 0.01161783467978239, 0.03477329760789871, -0.024358583614230156, -0.005586802959442139, -0.007422334514558315, 0.03477329760789871, 0.01730027049779892, 0.028381329029798508, -0.025469157844781876, -0.0060495417565107346, 0.000191169063327834, -0.016251394525170326, -0.014338740147650242, -0.0028273356147110462, 0.010840433649718761, 0.015486333519220352, 0.005873701069504023, -0.0015509470831602812, 0.013437941670417786, 0.0068978965282440186, -0.013326884247362614, -0.01310476940125227, 0.0002734016452450305, 0.03613066300749779, -0.014141305349767208, -0.00036016522790305316, -0.03119478188455105, 0.05197484791278839, 0.008008470758795738, 0.006891726981848478, 0.005898380186408758, 0.038277775049209595, 0.02857876382768154, -0.042670708149671555, 0.021594488993287086, -0.00040142613579519093, 0.010852772742509842, -0.04649601876735687, -0.010069201700389385, 0.00026819584309123456, -0.03079991042613983, 0.01918824575841427, -0.012117593549191952, -0.009186912328004837, 0.007169370073825121, 0.022519966587424278, 0.011099567636847496, 0.009797727689146996, -0.00813186727464199, -0.008693324401974678, -0.00918074231594801, 0.0003200611681677401, -0.028109854087233543, -0.05187613144516945, -0.02961529977619648, -0.007632109336555004, -0.026012104004621506, 0.009057345800101757, 0.041560135781764984, 0.01675732247531414, 0.0003073358384426683, 0.012518634088337421, -0.009840916842222214, -0.03005952760577202, -0.01074171531945467, -0.007878903299570084, 0.023025894537568092, 0.005898380186408758, 0.03452650457620621, -0.028948955237865448, -0.0014229225926101208, -0.004710683599114418, 0.013228166848421097, -0.028159214183688164, 0.004627390298992395, 0.004281878471374512, 0.03452650457620621, -0.02951658144593239, -0.014116626232862473, 0.00432506762444973, -0.002808826044201851, 0.0022581664379686117, -0.0041091227903962135, -0.01421534363180399, 0.005793492775410414, -0.015424635261297226, -0.008995646610856056, 0.020755387842655182, 0.023593520745635033, 0.007878903299570084, 0.021335354074835777, -0.005719454493373632, 0.012426085770130157, -0.014363420195877552, 0.008292283862829208, -0.005910720210522413, 0.018731676042079926, -0.058885086327791214, -0.024827491492033005, 0.028183892369270325, 0.02016308344900608, -0.032132599502801895, -0.021520450711250305, 0.005139488261193037, -0.006466006860136986, -0.0027610096149146557, 0.026974601671099663, -0.03203388303518295, 0.011556136421859264, 0.020792407914996147, 0.029269786551594734, -0.04020276665687561, -0.023223331198096275, 0.00572562450543046, 0.005537443794310093, -0.009045005775988102, 0.02798645757138729, -0.011340191587805748, -0.012648200616240501, -0.008927778340876102, 0.00030405810684897006, 0.039955973625183105, 0.01562207005918026, 0.00834164209663868, -0.03279894217848778, 0.0280111376196146, -0.005713284946978092, -0.01701645739376545, -0.0071755400858819485, -0.03961046412587166, -0.025814669206738472, -0.029269786551594734, -0.008853740058839321, -0.020360518246889114, 0.02150811068713665, -0.004615050740540028, -0.015449314378201962, -0.031096063554286957, 0.02094048447906971, -0.033786121755838394, 0.07310043275356293, 0.025765310972929, 0.019632475450634956, 0.02285313978791237, 0.011753572151064873, 0.01616501808166504, -0.0024540594313293695, 0.01838616468012333, -0.0010319080902263522, -0.044867176562547684, 0.007761676330119371, -0.027023959904909134, -0.0011792132863774896, -0.013055411167442799, -0.012629691511392593, 0.024420281872153282, 0.02625889889895916, -0.01042088307440281, -0.008730343542993069, 0.002191840671002865, 0.023889673873782158, 0.002973869675770402, -0.014017907902598381, -0.005380112677812576, -0.008039319887757301, 0.02372925914824009, 0.015659090131521225, -0.04242391511797905, -0.01341326255351305, 0.009711350314319134, 0.003680317895486951, 0.0064474972896277905, 0.015486333519220352, -0.0018000549171119928, 0.031515613198280334, 0.01177208125591278, 0.02155746892094612, -0.011710382997989655, 0.013425602577626705, 0.02032349817454815, 0.03743867203593254, 0.018065331503748894, 0.012228650972247124, 0.04928479343652725, 0.020335838198661804, 0.02741883136332035, -0.009421367198228836, -0.027246074751019478, 0.004905033856630325, 0.020878786221146584, 0.0072619179263710976, -0.006348779890686274, -0.010871282778680325, -0.001052731298841536, -0.04980305954813957, 0.0003214108292013407, 0.002750212326645851, 0.024741115048527718, -0.012783937156200409, -0.00414305692538619, -0.05572612211108208, -0.02625889889895916, 0.05774983391165733, 0.02207573689520359, -0.010809584520757198, -0.01739898882806301, -0.010828093625605106, -0.004318897612392902, 0.012796277180314064, -0.008218245580792427, 0.034872014075517654, -0.004402190912514925, 0.008829060941934586, 0.02403775043785572, 0.016387132927775383, 0.02202637866139412, 0.02796177752315998, -0.006830028258264065, -0.04072103649377823, 0.02616018056869507, 0.01398088876157999, -0.0008537535322830081, 0.006015607621520758, 0.03176240995526314, -0.0361553430557251, 0.011068717576563358, -0.008915439248085022, 0.018966130912303925, -0.011241474188864231, 0.01316646859049797, 0.008458869531750679, -0.02966465801000595, -0.014560854993760586, -0.01428938191384077, 0.012617351487278938, -0.0021501940209418535, 0.019558437168598175, -0.000940131489187479, 0.0013195775682106614, -0.007243408355861902, 0.015868864953517914, 0.00805782899260521, 0.004155396483838558, 0.011512947268784046, -0.009168403223156929, 0.006817688699811697, 0.016016941517591476, 0.0678190365433693, -0.01670796424150467, -0.004136886913329363, -0.012771598063409328, -0.02153279073536396, 0.02228551171720028, -0.014548515900969505, -0.0038037148769944906, -0.01120445504784584, -0.004136886913329363, 0.005528189241886139, 0.017102835699915886, -0.03408227488398552, 0.013721754774451256, -0.028677480295300484, 0.030553117394447327, -0.014560854993760586, 0.016658606007695198, -0.024407941848039627, -0.021211957558989525], [0.022494347766041756, 0.044222407042980194, 0.024237042292952538, 0.03018197789788246, -0.0016669918550178409, -0.012378071434795856, -0.042714543640613556, 0.030008943751454353, 0.03327186033129692, 0.01726626604795456, -0.02489209733903408, -0.0015318095684051514, 0.039550501853227615, 0.011315152049064636, 0.0030280854552984238, -0.02227187715470791, 0.008194370195269585, 0.017785366624593735, -0.018255028873682022, 0.02439771592617035, -0.03191231191158295, 0.029415687546133995, -0.01292807050049305, 0.005685384850949049, -0.015486493706703186, 0.030157258734107018, 0.02406401000916958, -0.0025506983511149883, 0.06916394084692001, -0.014868517406284809, 0.05106958746910095, -0.01779772713780403, 0.021332552656531334, 0.009794929064810276, 0.061896536499261856, 0.01905839890241623, -0.03517523035407066, 0.021258395165205002, -0.016190987080335617, 0.0425415113568306, 0.006884259637445211, -0.05186059698462486, 0.020084239542484283, -0.031121302396059036, -0.008231448009610176, 0.039847131818532944, 0.04496397823095322, -0.030874110758304596, -0.035298824310302734, 0.05240441486239433, 0.0014653770485892892, -0.005194093566387892, 0.02647411823272705, -0.006216844543814659, -0.03589208051562309, -0.0009084256016649306, -0.017624692991375923, -0.02227187715470791, 0.03843814507126808, -0.01523930300027132, 0.02389097586274147, -0.02864939533174038, -0.009856726974248886, 0.032629165798425674, -0.005116846412420273, -0.0045204986818134785, -0.006853360682725906, -0.007687629200518131, -0.04971003904938698, 0.01635166071355343, 0.09071896970272064, 0.005966564174741507, 0.06258866935968399, 0.021505586802959442, -0.025114569813013077, 0.00294002378359437, 0.004260948859155178, 0.03653477877378464, -0.0471145361661911, 0.019317949190735817, -0.036213427782058716, -0.015251662582159042, -0.037721291184425354, 0.0010150265879929066, -0.044172968715429306, 0.022197719663381577, -0.08829649537801743, -0.012229757383465767, 0.0030914279632270336, -0.03898196294903755, 0.044469598680734634, 0.01596851646900177, -0.042096566408872604, 0.0329505130648613, -0.01622806489467621, -0.008837065659463406, 0.04966060072183609, -0.03915499895811081, -0.009658974595367908, 0.043431397527456284, 0.012248296290636063, -0.009393244050443172, -0.0646156370639801, -0.006871900055557489, -0.018316825851798058, -0.05176172032952309, -0.029737034812569618, 0.015066269785165787, -0.005741002503782511, -0.01444829348474741, 0.03522466868162155, -0.026004455983638763, 0.00439999345690012, 0.030083101242780685, 0.0471145361661911, -0.020912328734993935, -0.036584217101335526, -0.0375235415995121, -0.008620773442089558, -0.014213462360203266, -0.015214583836495876, -0.02701793797314167, -0.036337025463581085, -0.003148590913042426, 0.006053080782294273, 0.010320208966732025, -0.006538192741572857, 0.038092076778411865, -0.028451643884181976, -0.007112910971045494, -0.026424679905176163, -0.005626677069813013, 0.08369874954223633, -0.006779203657060862, -0.009448862634599209, -0.021357271820306778, -0.03435949981212616, -0.030256135389208794, 0.010073019191622734, 0.024830300360918045, -0.017921321094036102, -0.028031419962644577, 0.01057357992976904, 0.019256150349974632, -0.045631393790245056, -0.049017906188964844, -0.003537916112691164, 0.04983363300561905, 0.0016453627031296492, -0.025633670389652252, -0.04056398570537567, 0.0011239449959248304, -0.001265307073481381, 0.027116814628243446, -0.05166284367442131, -0.03416174650192261, -0.01700671575963497, 0.03898196294903755, -0.008268526755273342, 0.0013587761204689741, -0.010728074237704277, 0.023544909432530403, -0.002189182210713625, -0.016734806820750237, 0.012600542977452278, -0.03747410327196121, 0.009158412925899029, -0.0007956448826007545, -0.036510057747364044, 0.015214583836495876, 0.04036623239517212, -0.029885349795222282, -0.008472459390759468, 0.025534793734550476, -0.03468084707856178, 0.00018886910402216017, 0.00020740840409416705, 0.03060220181941986, 0.0026217657141387463, -0.026572994887828827, 0.06239091977477074, 0.07905156910419464, -0.01946626417338848, -0.0005770356510765851, -0.06659316271543503, 0.031121302396059036, -0.029885349795222282, -0.02067749761044979, -0.035842642188072205, 0.015956155955791473, -0.02109772153198719, -0.028822429478168488, -0.0021799125242978334, -0.009176952764391899, 0.02292693220078945, -0.011247173883020878, -0.05986957252025604, -0.014473012648522854, 0.015783121809363365, -0.01326177828013897, -0.00550308171659708, -0.03915499895811081, 0.02067749761044979, -0.061154965311288834, -0.003661511465907097, -0.009176952764391899, -0.06199541315436363, -0.03413702920079231, 0.05542014166712761, -0.04654599726200104, 0.030676359310746193, 0.005462913308292627, -0.02046738564968109, 0.020628059282898903, 0.01580784097313881, 0.01767413131892681, 0.0038839830085635185, 0.004820217378437519, 0.030206697061657906, -0.01544941496104002, -0.050970710813999176, 0.03225838020443916, 0.016784245148301125, 0.000855125137604773, -0.027413442730903625, 0.011160657741129398, 0.005808980204164982, -0.01759997382760048, 0.005734823178499937, -0.02260558493435383, -0.05690328776836395, -2.0422196030267514e-05, 0.0179336816072464, -0.011877510696649551, -0.03134377300739288, 0.024990973994135857, 0.004208420868963003, -0.0038592638447880745, 0.016116829589009285, 0.0033401635009795427, 0.021295474842190742, -0.036930281668901443, -0.0019033679272979498, -0.0005913263885304332, 0.03161568194627762, -0.00681628193706274, -0.007860662415623665, 0.007458977866917849, 0.02944040484726429, 0.037795450538396835, 0.03848758339881897, 0.0375235415995121, 0.05779317393898964, -0.03826511278748512, -0.00566993560642004, 0.06748304516077042, 0.028031419962644577, -0.0208505317568779, 0.032381974160671234, -0.022160641849040985, 0.01663593016564846, 0.029761753976345062, 0.00825616717338562, -0.0358673632144928, -0.07677741348743439, -0.03198646754026413, 0.03552129492163658, -0.06560439616441727, -0.024212323129177094, 0.05136621743440628, -0.0027067374903708696, 0.05650778114795685, -0.0325302891433239, 0.007125270552933216, -0.12774813175201416, 0.010202793404459953, 0.020294351503252983, -0.011599420569837093, 0.001815306255593896, -0.007551674265414476, -0.0012135516153648496, -0.04036623239517212, 0.009127514436841011, -0.02368086390197277, 0.055815648287534714, 0.03280219808220863, 0.011166837066411972, -0.039847131818532944, -0.022383112460374832, 0.01426289975643158, 0.049512285739183426, -0.016858402639627457, -0.01432469766587019, 0.00757639342918992, 0.03947634622454643, -0.007205607369542122, 0.04842464625835419, 0.007156169041991234, 0.0124027905985713, -0.014299978502094746, -0.03161568194627762, 0.06179765984416008, -0.03843814507126808, -0.008509538136422634, -0.04340667650103569, 0.007236506324261427, 0.028006700798869133, 0.011994926258921623, -0.00611796835437417, -0.05596396327018738, -0.03801792114973068, 0.016104470938444138, -0.06273698806762695, 0.008682571351528168, -0.01023987215012312, -0.037177473306655884, -0.015004471875727177, 0.01872469112277031, 0.045013416558504105, -0.025213446468114853, 0.0170932337641716, 0.008490998297929764, 0.0032505569979548454, -0.03443365544080734, 0.006426956970244646, -0.030453886836767197, 0.005768811795860529, 0.019367387518286705, -0.00681628193706274, 0.014003350399434566, -0.009232570417225361, 0.014905596151947975, 0.019416825845837593, -0.007910100743174553, -0.019898846745491028, -0.0458538644015789, -0.034804441034793854, 0.017834804952144623, 0.005589598324149847, -0.004220780450850725, 0.00971459224820137, -0.016042672097682953, -0.04261566698551178, -0.013360654003918171, -0.04904262349009514, 0.030256135389208794, -0.00552471075206995, -0.02113479934632778, -0.016623571515083313, 0.04928981512784958, -0.007551674265414476, -0.010864028707146645, -0.033667366951704025, -0.00015449414786417037, -0.08246280252933502, 0.03811679780483246, 0.03428534418344498, 0.009974142536520958, -0.007699988782405853, -0.0005106031894683838, 0.00659999018535018, 0.004449431784451008, -0.02597973681986332, 0.016648290678858757, -0.010511782020330429, 0.025510074570775032, -0.029514562338590622, 0.03638646379113197, -0.003630612511187792, -0.014646045863628387, 0.04412353038787842, 0.036460619419813156, 0.054728008806705475, 0.02018311619758606, 0.03023141622543335, 0.022296596318483353, 0.010462343692779541, -0.019664015620946884, 0.024113446474075317, -0.025176366791129112, -0.018910083919763565, -0.00836122315376997, 0.05991901084780693, -0.003945780452340841, -0.029959505423903465, 0.057892050594091415, 0.00520336301997304, -0.022123562172055244, 0.026746027171611786, -0.03606511652469635, -0.003862353740260005, -0.0014228911604732275, -0.02527524344623089, 0.0053640371188521385, -0.04370330646634102, -0.025831421837210655, 0.006145777180790901, 0.00692133791744709, -1.266127856069943e-05, -0.005886227358132601, -0.030676359310746193, -0.0604628324508667, -0.02039322815835476, 0.019293230026960373, -0.002473451429978013, -0.016252784058451653, -0.030132539570331573, -0.012396611273288727, -0.004332016222178936, 0.005543250124901533, 0.024051649495959282, 0.04281342029571533, 0.015276381745934486, 0.018255028873682022, 0.021999968215823174, 0.004353645257651806, -0.025089850649237633, 0.04048982635140419, -0.023359516635537148, -0.02055390179157257, -0.0013796327402815223, -0.017538176849484444, -0.04600217938423157, 0.012625262141227722, -0.02113479934632778, 0.03613927215337753, 0.027166251093149185, -0.033790960907936096, 0.015325820073485374, -0.00412808358669281, -0.008015156723558903, 0.04681790992617607, -0.03267860412597656, 0.005036509595811367, -0.019713453948497772, -0.03201118856668472, 0.01714267209172249, -0.009362345561385155, 0.035026915371418, 0.017068514600396156, 0.011617960408329964, -0.0646156370639801, 0.012637621723115444, 0.0013889024266973138, -0.012965149246156216, -0.0333460196852684, -0.0056297667324543, 0.028006700798869133, -0.02155502513051033, 0.016771884635090828, -0.03161568194627762, 0.025880860164761543, -0.04723813384771347, -0.0023390415590256453, 0.004486510064452887, -0.024360638111829758, -0.02009660005569458, -0.018737051635980606, -0.009516839869320393, 0.033667366951704025, 0.025510074570775032, 0.015696605667471886, -0.02455839142203331, 0.02485501952469349, 0.017983119934797287, 0.042220160365104675, -0.01600559428334236, -0.04607633501291275, -0.008855604566633701, -0.0400201641023159, -0.0006990860565565526, 0.010690995492041111, 0.04140443354845047, -0.022160641849040985, 0.042714543640613556, -0.023001089692115784, -0.00010225582082057372, -0.0061334180645644665, -0.011092680506408215, -0.023816818371415138, -0.06456619501113892, -0.00879998691380024, -0.061352718621492386, -0.008478638716042042, 0.11084028333425522, 0.03369208425283432, 0.08305605500936508, 0.020368508994579315, 0.017068514600396156, -0.0354471392929554, -0.03230781853199005, -0.010820770636200905, 0.03186287358403206, -0.012106161564588547, 0.01444829348474741, 0.016747165471315384, 0.03747410327196121, -0.019083118066191673, -0.015461774542927742, 0.01154998317360878, -0.03589208051562309, -0.07168528437614441, -0.003615163266658783, -0.006451675668358803, 0.033247143030166626, 0.032381974160671234, -0.018749410286545753, -0.002124294638633728, -0.02426176145672798, 0.02380445972084999, -0.04036623239517212, -0.00497162202373147, 0.00469971215352416, 0.017414581030607224, -0.028550518676638603, -0.0554695799946785, 0.05937519297003746, -0.009405603632330894, -0.012903351336717606, 0.05020441859960556, 0.002099575474858284, 0.024286480620503426, 0.039847131818532944, 0.0022571596782654524, 0.018737051635980606, 0.021777495741844177, -0.008008976466953754, -0.040390949696302414, -0.002142834011465311, -0.010023580864071846, -0.048894308507442474, -0.0166730098426342, -0.009603356942534447, 0.010653916746377945, 0.0017411491135135293, 0.023050528019666672, -0.00815111119300127, 0.030750516802072525, 0.00778650538995862, 0.03458197042346001, -0.0287729911506176, 0.027339285239577293, -0.010221333242952824, -0.021171879023313522, 0.023841537535190582, -0.014312338083982468, 0.015103348530828953, 0.007934819906949997, 0.003519376739859581, -0.0112595334649086, -0.031047144904732704, 0.007984258234500885, 0.008293245919048786, 0.01630222238600254, 0.00827470701187849, 0.01609211042523384, 0.03386511653661728, -0.05220666527748108, 0.022383112460374832, 0.03685612604022026, -0.010555040091276169, 0.04637296497821808, 0.0066741472110152245, -0.002087215892970562, -0.03519994765520096, 0.008175830356776714, 0.00023656917619518936, -0.0392044372856617, -0.0073848203755915165, -0.02347075194120407, -0.03537297993898392, -0.005787351168692112, 0.0137561596930027, 0.031220179051160812, 0.031220179051160812, -0.017019076272845268, 0.022778617218136787, -0.024199964478611946, 0.02364378422498703, 0.022284235805273056, -0.006040721200406551, -0.023359516635537148, 0.013546047732234001, -0.01023987215012312, -0.0496358796954155, 0.011407848447561264, 0.022580865770578384, -0.04998194798827171, -0.047683075070381165, 0.025633670389652252, 0.04026735574007034, -0.015486493706703186, 0.016153909265995026, 0.010647737421095371, 0.0016484525986015797, 0.005926395766437054, -0.027537038549780846, 0.013521328568458557, -0.038635898381471634, 0.007119090761989355, 0.02030671201646328, -0.033420175313949585, 0.0036800506059080362, -0.001917272456921637, -0.04582914710044861, -0.03270332142710686, -0.00159746955614537, -0.03623814880847931, 0.046892065554857254, 0.02206176519393921, 0.02864939533174038, -0.007242686115205288, 0.01609211042523384, -0.011747735552489758, -0.03522466868162155, 0.003816005541011691, -0.03720219060778618, -0.015264022164046764, 0.01626514457166195, 0.02485501952469349, 0.005808980204164982, 0.0028844058979302645, -0.0030790683813393116, -0.03146737068891525, -0.037721291184425354, 0.013471890240907669, 0.015770763158798218, -0.023025808855891228, -0.02944040484726429, -0.05942463129758835, -0.024175245314836502, -0.03690556436777115, -0.0022942381910979748, -0.04306061193346977, 0.003222747938707471, -0.01369436178356409, -0.03828983008861542, 0.018081994727253914, 0.007329202722758055, 0.0035471857991069555, -0.019874127581715584, -0.028328048065304756, 0.018242670223116875, -0.0016299133421853185, 0.018279748037457466, 0.036584217101335526, 0.014398855157196522, 0.031961750239133835, 0.025052770972251892, -0.015226943418383598, 0.009374705143272877, -0.0056297667324543, -0.03060220181941986, 0.0010397456353530288, 0.013101103715598583, -0.0039921291172504425, -0.030429167672991753, 0.004066286142915487, 0.006324990652501583, 0.008997739292681217, -0.009455041959881783, 0.01984940841794014, 0.005533980671316385, -0.025337040424346924, 0.03880893066525459, -0.013682002201676369, 0.06659316271543503, 0.013817956671118736, 0.02047974430024624, -0.035002194344997406, -0.008608413860201836, -0.020912328734993935, 0.04439543932676315, -0.03188759461045265, 0.03964937850832939, 0.006071620155125856, -0.003951960243284702, 0.03186287358403206, 0.005790440831333399, 0.021653899922966957, -0.005787351168692112, 0.01298986840993166, -0.027883104979991913, 0.016586491838097572, -0.003846904495730996, 0.005635946523398161, 0.01390447374433279, 0.002082581166177988, 0.013743800111114979, 0.029217934235930443, -0.017204469069838524, 0.01169829722493887, -0.0059418450109660625, 0.0137561596930027, 0.002485811011865735, 0.021035924553871155, -0.004832576960325241, 0.007001675199717283, 0.012427509762346745, -0.008670211769640446, -0.028748271986842155, 0.010592118836939335, 0.029737034812569618, -0.025250524282455444, -0.0067359451204538345, -0.01984940841794014, -0.017649412155151367, 0.002006879076361656, 0.017946040257811546, -0.007149989251047373, -0.0074280789121985435, -0.009312907233834267, -0.024484233930706978, -0.009022458456456661, 0.02376738004386425, -0.02719097025692463, 0.0004495779867284, -0.018489859998226166, 0.01784716546535492, 0.0005720146000385284, -0.0243853572756052, 0.00977639015763998, -0.026424679905176163, -0.014856157824397087, -0.024076368659734726, -0.0033587028738111258, -0.0011455741478130221, -0.013397732749581337, -0.025534793734550476, 0.0011726106749847531, -0.00253833900205791, -0.004162072669714689, 0.03507635369896889, 0.025831421837210655, -0.0011695207795128226, 0.019775250926613808, 0.01572132483124733, 0.043258361518383026, -0.014843798242509365, -0.034087590873241425, 0.03386511653661728, -0.031294334679841995, 0.007489876355975866, -0.02018311619758606, 0.02047974430024624, 0.030948268249630928, -0.027537038549780846, 0.022123562172055244, 0.0325302891433239, 0.0032783658243715763, -0.00821290910243988, 0.009362345561385155, -0.003228927729651332, 0.019206713885068893, 0.014139304868876934, -0.025608951225876808, 0.04273926094174385, 0.012279195711016655, 0.05067408084869385, -0.01133987121284008, 0.009115154854953289, 0.014398855157196522, -0.0173033457249403, -0.019750531762838364, 0.01305166631937027, -0.0025337040424346924, -0.04172578081488609, 0.022037046030163765, 0.0021567384246736765, 0.006612349767237902, -0.015115708112716675, -0.003921061754226685, -0.02143142931163311, 0.03072579763829708, 0.017575254663825035, 0.016858402639627457, -0.04642240330576897, -0.03413702920079231, 0.013014587573707104, -0.010270771570503712, 0.01884828694164753, -0.0011440292000770569, 0.007069652434438467, 0.036757249385118484, -0.05457969382405281, -0.02072693593800068, -0.039179716259241104, 0.0035162868443876505, 0.037671852856874466, 0.014794359914958477, -0.016586491838097572, -0.00702639389783144, 0.009195491671562195, -0.053393177688121796, -0.014028068631887436, -0.00036479931441135705, 0.007533134892582893, -0.03374152258038521, -0.050179701298475266, 0.030849391594529152, 0.009764030575752258, -0.014782000333070755, -0.010629197582602501, 0.02597973681986332, 0.057101037353277206, 0.011797173880040646, -0.003970499616116285, 0.01630222238600254, 0.02455839142203331, -0.02481793984770775, 0.020529182627797127, 0.03618871048092842, 0.02968759648501873, -0.010684815235435963, -0.0019914295990020037, -0.001177245401777327, -0.05235498026013374, 0.03557073324918747, -0.05744710564613342, 0.012693239375948906, 0.012328633107244968, 0.033296581357717514, -0.015041550621390343, -0.013953912071883678, -0.001585109974257648, -0.01897188276052475, -0.009961782954633236, -0.012940430082380772, -0.033840399235486984, -0.01426289975643158, 0.029737034812569618, 0.0052249920554459095, 5.011404209653847e-05, -0.002277243882417679, -0.042516790330410004, -0.0036337024066597223, -0.009584817104041576, 0.004217690322548151, 0.021913450211286545, -0.0033556129783391953, 0.020924687385559082, -0.02460782788693905, 0.005456733517348766, 0.0015588459791615605, -0.030799955129623413, 0.014250541105866432, -0.0061025191098451614, -0.016042672097682953, -0.015610089525580406, 0.021962888538837433, -0.02234603464603424, -0.04244263470172882, -0.03705387935042381, 0.01357076596468687, 0.02397749200463295, -0.03564489260315895, -0.011543802917003632, -0.010690995492041111, -0.024570750072598457, 0.02555951289832592, -0.02689434215426445, 0.016537053510546684, -0.02639996074140072, 0.0061025191098451614, -0.02322356030344963, -0.0007805817294865847, 0.02143142931163311, -0.015795482322573662, -0.016499975696206093, -0.021962888538837433, 0.028303328901529312, 0.005153925158083439, 0.016944918781518936, 0.014522450044751167, 0.004196061287075281, 0.040094323456287384, -0.016574133187532425, 0.07455269992351532, -0.014683124609291553, 0.019046038389205933, 0.017958400771021843, 0.03720219060778618, -0.006297181826084852, -0.0052558910101652145, -0.02322356030344963, 0.010833130218088627, -0.0038778032176196575, 0.006575271021574736, 0.010419085621833801, 0.00389325269497931, -0.009146054275333881, 0.02143142931163311, 0.005132295656949282, 0.010474703274667263, 0.022247157990932465, 0.03005838207900524, -0.00886178482323885, -0.000250859884545207, -0.04286285862326622, -0.01332357618957758, -0.010103917680680752, -0.029465124011039734, -0.03139321133494377, 0.0017318794270977378, -0.011142117902636528, 0.014089866541326046, -0.015956155955791473, -0.003590444102883339, 0.025831421837210655, 0.03136849403381348, -0.0412808358669281, -0.010493243113160133, 0.0035595453809946775, -0.006785382982343435, 0.03035501204431057, -0.008670211769640446, -0.005123026203364134, 0.01860109530389309, -0.013434811495244503, 0.0016021043993532658, 0.073366180062294, -0.017204469069838524, -0.05566733330488205, 0.01767413131892681, 0.011648858897387981, -0.010709534399211407, 0.005200273357331753, 0.029786473140120506, 0.022407831624150276, -0.037548258900642395, -0.03134377300739288, 0.016104470938444138, 0.002893675584346056, 0.04558195546269417, -0.003905612276867032, -0.03270332142710686, 0.025164008140563965, 0.023001089692115784, -0.004798588342964649, -0.02852579951286316, 0.021332552656531334, -0.04118196293711662, 0.012755037285387516, -0.03156624361872673, 0.009770209901034832, 0.02780894748866558, 0.0019929746631532907, 0.02243255078792572, 0.02944040484726429, 0.0023591257631778717, 0.021740417927503586, 9.757271618582308e-05, 0.01588199846446514, 0.01255110464990139, -0.02998422458767891, -0.0034297702368348837, 0.005135385785251856, -0.03423590585589409, 0.000612569332588464, -0.038833651691675186, 0.03312354534864426, 0.025880860164761543, 0.04432128369808197, -0.01638874039053917, 0.013274137862026691, 0.024051649495959282, 0.009282008744776249, -0.04120668023824692, -0.0262763649225235, -0.02093704789876938, -0.034087590873241425, 0.012816835194826126, 0.03302466869354248, 0.010060659609735012, 0.029292091727256775, 0.014435933902859688, 0.01839098334312439, -0.014769640751183033, 0.012538745068013668, 0.034458376467227936, -0.029193215072155, 0.03453253209590912, 0.028328048065304756, 0.01960221864283085, -0.04560667276382446, 0.007533134892582893, 0.03673252835869789, -0.013311216607689857, 0.018749410286545753, -0.01305166631937027, 0.016487615182995796, 0.020714575424790382, -0.010221333242952824, 0.019317949190735817, -0.01617862842977047, 0.0011996470857411623, 0.018947163596749306, -0.018687613308429718, 0.024780862033367157, 0.017624692991375923, 0.004542128182947636, 0.02568310871720314, 0.010740433819591999, 0.03735050559043884, -0.033296581357717514, 0.0074218991212546825, 0.04016847908496857, 0.01138312928378582, -0.006185946054756641, 0.0036769609432667494, -0.027833666652441025, -0.023792099207639694, 0.026424679905176163, 0.054480817168951035, -0.025608951225876808, 0.03245612978935242, 0.03606511652469635, -0.034507814794778824, 0.0054196547716856, 0.013397732749581337, -0.029193215072155, 0.013484249822795391, 0.0019249971956014633, 0.011896049603819847, 0.019280869513750076, -0.038339268416166306, 0.008398301899433136, 0.060561709105968475, 0.012396611273288727, 0.02471906505525112, 0.0006179765914566815, 0.010999984107911587, 0.0014151664217934012, 0.03515050932765007, 0.03272804245352745, 0.028155013918876648, 0.007891560904681683, 0.017080873250961304, 0.005645216442644596, 0.027092095464468002, -0.007687629200518131, 0.0053702169097959995, -0.028624676167964935, 0.0567055344581604, -0.03604039549827576, 0.0039921291172504425, 0.0010073018493130803, -0.002170642837882042, 0.005055048502981663, 0.02081345207989216, 0.02248198911547661, 0.01502919103950262, -0.02476850338280201, 0.018131433054804802, -0.007662910036742687, 0.004384544212371111, -0.0018353905761614442, 0.012501667253673077, 0.0013935372699052095, -0.00666178809478879, 0.008725829422473907, -0.005673025269061327, -0.004205330740660429, -0.030874110758304596, 0.06936169415712357, 0.011889870278537273, -0.0214685071259737, 0.030626920983195305, 0.0006423094309866428, -0.016240425407886505, 0.023124685510993004, -0.022790977731347084, 0.03848758339881897, -0.005187913775444031, 0.0004615512734744698, 0.041256118565797806, -0.021567383781075478, -0.00488819507881999, -0.0371033139526844, 0.029662877321243286, 0.014905596151947975, 0.009127514436841011, 0.0031285067088901997, -0.004433982074260712, 0.023149404674768448, -0.018749410286545753, 0.03641118109226227, 0.008583694696426392, -0.042467352002859116, 0.03131905570626259, -0.030206697061657906, -0.04704038053750992, -0.009980321861803532, -0.019169634208083153, 0.014757281169295311, 0.018650533631443977, 0.03569433093070984, -0.014089866541326046, -0.0026217657141387463, -0.006970776244997978, 0.006476394832134247, 0.025460636243224144, -0.005354767199605703, -0.005666845478117466, -0.007137629669159651, 0.01963929645717144, -0.013101103715598583, 0.012408969923853874, 0.006791562773287296, 0.01946626417338848, 0.028278609737753868, -0.0021443788427859545, 0.00886178482323885, -0.007020214106887579, -0.004304206930100918, 0.016747165471315384, 0.0038716234266757965, -0.017773007974028587, 0.011772454716265202, 0.01426289975643158, 0.0012058268766850233, -0.0006538964807987213, -0.039550501853227615, -0.0026696589775383472, 0.006927517708390951, -0.022865135222673416, -0.018242670223116875, -0.025633670389652252, 0.04649655893445015, -0.007866842672228813, 0.017204469069838524, -0.011753914877772331, -0.0248055811971426, -0.041923534125089645, -0.008342684246599674, 0.0003109194803982973, 0.014065147377550602, -0.04825161397457123, 0.00768144940957427, -0.0066803270019590855, 0.007798864971846342, 0.04286285862326622, -0.004730611108243465, -0.031590964645147324, 0.016944918781518936, -0.020875249058008194, -0.00815111119300127, 0.07099315524101257, -0.006291002035140991, -0.024830300360918045, -0.014720202423632145, 0.02076401375234127, -0.0002477699890732765, 0.017290985211730003, 0.039303313940763474, 0.01900896057486534, -0.01523930300027132, -0.010623018257319927, -0.014337057247757912, -0.02047974430024624, 0.031170740723609924, 0.0026279455050826073, -0.014571888372302055, 0.02143142931163311, -0.014794359914958477, -0.013669642619788647, 0.001946626347489655, 0.010097737424075603, -0.015264022164046764, 0.003649151884019375, 0.0005055821384303272, 0.016994357109069824, -0.011451106518507004, -0.027957262471318245, 0.028253890573978424, 0.015696605667471886, 0.03678196668624878, 0.02426176145672798, 0.014917955733835697, -0.011574702337384224, -0.0214685071259737, -0.0038314550183713436, 0.003287635510787368, -0.021023564040660858, -0.026128051802515984, -0.0005337772890925407, -0.006164316553622484, -0.002187637146562338, -0.029737034812569618, -0.00977639015763998, 0.0034359500277787447, -0.01174155529588461, 0.02555951289832592, -0.012637621723115444, -0.019120195880532265, 0.020838171243667603, -0.010419085621833801, 0.007897741161286831, 0.04778195172548294, -0.01271795853972435, -0.011945487931370735, 0.0021150249522179365, 0.01654941402375698, -0.009856726974248886, -0.012186498381197453, -0.014287618920207024, 0.002145923674106598, 0.0012035093968734145, 0.0007574075716547668, 0.017501097172498703, 0.00012658865307457745, -0.015535932034254074, 0.004162072669714689, -0.016203347593545914, 0.039303313940763474, 0.011908409185707569, 0.008262347429990768, -0.0052311718463897705, 0.01680896431207657, 0.022716820240020752, -0.005367126781493425, 0.051217902451753616, 0.004523588810116053, 0.008707290515303612, 0.02338423579931259, -0.03035501204431057, -0.0225190669298172, -0.01872469112277031, 0.009937063790857792, 0.01942918449640274, 0.015980875119566917, -0.019614577293395996, 0.0358673632144928, -0.003253646893426776, 0.03114602155983448, 0.028328048065304756, 0.008262347429990768, 0.02143142931163311, 0.004906734451651573, 0.022284235805273056, -0.010678635910153389, -0.008126392029225826, 0.016870761290192604, -0.020084239542484283, 0.005292969755828381, -0.021295474842190742, -0.007947179488837719, 0.01530110090970993, -0.008385942317545414, -0.05200891196727753, -0.007032573688775301, -0.02426176145672798, 0.0053763967007398605, 0.01784716546535492, 0.007496056146919727, 0.011809533461928368, -0.008033695630729198, -0.023495471104979515, -0.005126115866005421, 0.03230781853199005, -0.017562896013259888, -0.009214031510055065, -0.02339659444987774, 0.010894927196204662, 0.007304483558982611, 0.01600559428334236, 0.024113446474075317, 0.00975785031914711, -0.040217917412519455, 0.034260623157024384, 0.046644873917102814, -0.016944918781518936, 0.0073848203755915165, -0.02531232126057148, 0.04652127996087074, 0.0383639894425869, 0.020207835361361504, -0.0181437935680151, 0.020319070667028427, 0.013558407314121723, -0.012124701403081417, -0.005567969288676977, -0.013434811495244503, 0.014188743196427822, 0.015659527853131294, 0.017649412155151367, -0.0027839846443384886, 0.022494347766041756, 0.014917955733835697, -0.02322356030344963, 0.006952236872166395, -0.005914036184549332, 0.018687613308429718, -0.007737067062407732, -0.008070774376392365, -0.03801792114973068, 0.015041550621390343, 0.03655949607491493, 0.02201232686638832, -0.0010899562621489167, 0.030676359310746193, 0.02706737630069256, -0.035669609904289246, 0.03534826263785362, -0.0013773153768852353, 0.030330292880535126, -0.03240669518709183, -0.014398855157196522, 0.011784814298152924, -0.04194825142621994, 0.040638141334056854, 0.008830885402858257, -0.007928639650344849, 0.02394041419029236, -0.006451675668358803, 0.0013510513817891479, 0.012149420566856861, 0.002385389758273959, -0.0216786190867424, -0.003744938177987933, 0.005561789497733116, -0.004335105884820223, -0.040390949696302414, -0.012408969923853874, 0.0018245759420096874, -0.0075887530110776424, 0.016314582899212837, 0.02968759648501873, 0.016537053510546684, 0.00772470748052001, -0.01884828694164753, -0.013879754580557346, -0.012792116031050682, 0.0007964173564687371, -0.020899968221783638, 0.0073848203755915165, 0.0036337024066597223, 0.004335105884820223, -0.01776064746081829, 0.01758761517703533, -0.007458977866917849, -0.013224699534475803, -0.017822446301579475, 0.0015148151433095336, 0.032752759754657745, -0.008497178554534912, -0.022358393296599388, -0.03569433093070984, 0.008101673796772957, 0.02155502513051033, -0.015313460491597652, -0.009739311411976814, -0.019713453948497772, 0.01246458850800991, 0.0037140394560992718, 0.011562342755496502, 0.029292091727256775, 0.011673578061163425, -0.017711209133267403, 0.034804441034793854, -0.011401668190956116, 0.02039322815835476, -0.0032845456153154373, 0.010993803851306438, 0.027116814628243446, 0.009646615013480186, -0.06634596735239029, -0.01997300423681736, 0.015696605667471886, 0.006155047100037336, 0.0011540713021531701, -0.03413702920079231, -0.012248296290636063, 0.02072693593800068, -0.027635913342237473, 0.03720219060778618, -0.02025727368891239, 0.019540419802069664, -0.02202468551695347, 0.012001105584204197, -0.020146038383245468, -0.02468198537826538, -0.022655023261904716, -0.023371875286102295, 0.012940430082380772, 0.033049389719963074, -0.002436372684314847, -0.02431119978427887, 0.00994324404746294, -0.012050543911755085, 0.028402205556631088, 0.010579759255051613, 0.0223089549690485, -0.009560097940266132, 0.013162901625037193, -0.025584232062101364, 0.006569091230630875, -0.010870208963751793, -0.022383112460374832, -0.02677074633538723, -0.0245954692363739, 0.005323868710547686, 0.016833683475852013, 0.04523588716983795, 0.01551121287047863, -0.002620220882818103, -0.014126945286989212, 0.0005503854481503367, -0.03089882992208004, 0.07025158405303955, 0.016438178718090057, 0.01884828694164753, -0.019626937806606293, 0.01805727742612362, 0.008521897718310356, -0.004962352104485035, 0.019787611439824104, -0.03576848655939102, -0.014868517406284809, 0.013088745065033436, -0.040390949696302414, 0.016487615182995796, -0.009658974595367908, -0.021703338250517845, 0.01863817498087883, 0.004390724003314972, 0.001591289765201509, -0.012371892109513283, -0.03431006148457527, -0.005673025269061327, 0.014374135993421078, 0.036633651703596115, 0.007471337448805571, -0.003414320759475231, 0.012365711852908134, -0.006779203657060862, -0.011494364589452744, -0.03346961364150047, 0.015004471875727177, 0.0037480280734598637, 0.0223089549690485, 0.03228309750556946, 0.015325820073485374, 0.027240408584475517, 0.026572994887828827, 0.0258561410009861, -0.0092758284881711, 0.02292693220078945, 0.00852807704359293, 0.018279748037457466, 0.011179196648299694, 0.024298841133713722, 0.05477744713425636, -0.00016115671314764768, 0.039253875613212585, -0.017896601930260658, -0.015202224254608154, -0.008565155789256096, 0.013508968986570835, 0.02513928897678852, -0.006300271488726139, -0.023087605834007263, 0.03206062689423561, -0.020986486226320267, 0.012804475612938404, 0.0045575774274766445, 0.008960660547018051, 0.007174708414822817, -0.026029175147414207, -0.021258395165205002, -0.004780048970133066, 0.051020149141550064, 0.012316273525357246, -0.02080109342932701, 0.0010428355308249593, -0.0036769609432667494, 0.004705891944468021, 0.0014777365140616894, -0.005169374402612448, 0.04387633875012398, 0.0425415113568306, -0.00848481897264719, -0.003065163968130946, -0.02664715237915516, -0.017278626561164856, 0.034458376467227936, -0.01444829348474741, -0.02139434963464737, 0.009455041959881783, 0.014201102778315544, 0.01142638735473156, 0.009244929999113083, 0.01721682772040367, -0.007082012016326189, -0.019738173112273216, -0.00022594770416617393, -0.000410954438848421, 0.005537070333957672, 0.023989852517843246, 0.014089866541326046, 0.002881316002458334, -0.013039306737482548, -0.015486493706703186, 0.013929192908108234, 0.00041558928205631673, -0.011630319990217686, -0.016710087656974792, -0.008144931867718697, -0.014757281169295311, -0.021122440695762634, 0.007279764395207167, 0.0059418450109660625, -0.004143533296883106, -0.007020214106887579, 0.02443479560315609, 0.016623571515083313, 0.022333674132823944, -0.04162690415978432, 0.013706721365451813, -0.02798198163509369, -0.009232570417225361, 0.0471145361661911, -0.019206713885068893, -0.003432860132306814, -0.026325803250074387, -0.011685937643051147, -0.01572132483124733, -0.004063196014612913, -0.03594151884317398, 0.021159518510103226, -0.03181343525648117, -0.0014228911604732275, -0.020417947322130203, 0.002879770938307047, -0.031788717955350876, -0.022877493873238564], [0.009748690761625767, -0.01762905716896057, 0.0377422571182251, -0.02327578328549862, 0.01577116921544075, 0.02256602793931961, -0.029475700110197067, -0.016647925600409508, 0.029580075293779373, 0.06074666231870651, 0.011523078195750713, 0.03761700540781021, 0.025405047461390495, 0.004357685800641775, -0.047762323170900345, -0.0003636841138359159, -0.05523562431335449, -0.00016072228027042001, -0.006351261865347624, 0.013433153741061687, -0.014664786867797375, 0.05118584632873535, -0.056905634701251984, -0.002598955063149333, -0.015708543360233307, -0.010160975158214569, 0.012890399433672428, -0.011345638893544674, 0.06032915785908699, -0.01704455353319645, 0.022127650678157806, -0.028160566464066505, 0.05022558942437172, -0.03728300333023071, 0.0385146364569664, -0.007723802234977484, -0.04442230239510536, -0.014591723680496216, -0.017117615789175034, 0.014758724719285965, -0.020363699644804, -0.011658766306936741, 0.014706537127494812, 0.012629460543394089, -0.025968676432967186, 0.0443805493414402, -0.0026394007727503777, -0.00573544530197978, -0.0020548966713249683, 0.036218371242284775, -0.009091123938560486, -0.006215573288500309, -0.020217575132846832, 0.05151984840631485, -0.0048404233530163765, -0.02181452326476574, 0.02050982601940632, 0.0421677865087986, 0.005075268913060427, -0.026323553174734116, -0.004602968692779541, -0.0020053181797266006, 0.041562408208847046, 0.004248091485351324, -0.028724195435643196, 0.008193492889404297, 0.018380561843514442, 0.02565554901957512, -0.03314972296357155, -0.00961300265043974, 0.04709431901574135, 0.05448411777615547, 0.006810514722019434, -0.0017587306210771203, 0.019904447719454765, -0.007118423003703356, 0.04563305899500847, 0.023714160546660423, -0.0016321750590577722, -0.038410261273384094, -0.014612599276006222, 0.0015330181922763586, -0.020280199125409126, -0.03709512576460838, 0.014184658415615559, -0.023359283804893494, -0.05707263574004173, -0.018798064440488815, 0.004780407529324293, 0.0013621029211208224, 0.061665166169404984, 0.0031521462369710207, -0.015291040763258934, 0.023547159507870674, 0.024173414334654808, 0.024089913815259933, 0.019841821864247322, -0.05151984840631485, -0.030185453593730927, 0.004681250546127558, -0.0014795257011428475, -0.007034922484308481, -0.03682374954223633, 0.015614605508744717, 0.017733432352542877, -0.05318985879421234, -0.02290003001689911, 0.03173021599650383, 0.008950216695666313, 0.0016334798419848084, -0.028473692014813423, 0.010056599043309689, -0.004292450845241547, 0.05761539191007614, -0.00963387731462717, -0.0020588107872754335, 0.013109588995575905, -0.04642631486058235, 0.029830576851963997, -0.0061894794926047325, -0.035132862627506256, -0.009409469552338123, -0.01797349750995636, -0.031437963247299194, -0.02457004226744175, -0.017190678045153618, -0.029642701148986816, -0.0425017885863781, -0.049766335636377335, 0.01758730597794056, -0.006914890371263027, -0.01238939631730318, 0.06204092130064964, -0.05536087602376938, -0.03646887093782425, -0.06475468724966049, -0.015384979546070099, 0.0026224395260214806, 0.009127655997872353, -0.018453624099493027, -0.008068242110311985, 0.05076834559440613, 0.04175028204917908, 0.04164590686559677, 0.007332393433898687, 0.033295851200819016, -0.012629460543394089, 0.01401765737682581, -0.01666880026459694, 0.025592923164367676, -0.027179434895515442, 0.023046156391501427, 0.009242468513548374, 0.011450015008449554, 0.031208336353302002, 0.013725405558943748, 0.005237051285803318, 0.002812925260514021, 0.019340818747878075, 0.020812515169382095, -0.03208509087562561, -0.0055841002613306046, -0.0053544738329946995, 0.026845430955290794, -0.003431351389735937, 0.01848493702709675, -0.006147729232907295, -0.017378555610775948, -0.04488155245780945, -0.028473692014813423, 0.0044568427838385105, -0.034590110182762146, -0.018777189776301384, -0.03352547809481621, -0.02843194268643856, -0.02106301672756672, 0.08208105713129044, 0.05686388537287712, -0.006074666045606136, -0.04509030655026436, 0.000702578981872648, 0.03195984289050102, -0.05043433979153633, -0.05502687394618988, -0.042272161692380905, 0.0033034910447895527, -0.009320750832557678, 0.023067031055688858, -0.007160173263400793, 0.03427698090672493, 0.02038457617163658, -0.024486541748046875, -0.007661176845431328, -0.017368117347359657, 0.028849445283412933, 0.006502606440335512, -0.007989960722625256, -0.051269348710775375, 0.007483738008886576, -0.016011232510209084, -0.03555036708712578, -0.01962263323366642, -0.05085184425115585, -0.029851451516151428, 0.026135677471756935, 0.012420709244906902, -0.04367079585790634, -0.0410614013671875, 0.05853389576077461, 0.014716974459588528, 0.013516654260456562, 0.03957926854491234, -0.01978963427245617, 0.0028311910573393106, 0.018391000106930733, -0.014497785829007626, -0.0015486745396628976, -0.028557192534208298, 0.03193896636366844, -0.0031025679782032967, -0.0042272163555026054, 0.0024567432701587677, 0.011815330013632774, -0.02128220722079277, -0.020666390657424927, -0.006789639592170715, 0.03335847705602646, -0.030832583084702492, -0.036385372281074524, -0.04709431901574135, -0.06304292380809784, -0.003340022638440132, 0.03736650198698044, -0.0042741852812469006, 0.004164590500295162, 0.0022727809846401215, -0.03484060987830162, -0.05227135494351387, -0.012900837697088718, 0.037512630224227905, -0.013057400472462177, 0.012963462620973587, -0.026553180068731308, 0.021417895331978798, 0.01833881251513958, -0.008454432711005211, -0.001761340070515871, -0.04127015545964241, 0.046885568648576736, 0.0579911433160305, 0.045173805207014084, 0.029621826484799385, -0.005401442758738995, -0.041374530643224716, 0.015875544399023056, 0.018975503742694855, 0.04045602306723595, -0.016731426119804382, 0.05281410738825798, -0.015061414800584316, 0.01705498993396759, 0.0370742492377758, 0.025947799906134605, 0.031417086720466614, -0.07172698527574539, -0.03413085639476776, 0.04918183386325836, -0.0008200016454793513, -0.0348614864051342, -0.013360090553760529, -0.009853066876530647, 0.04926533252000809, -0.03903651610016823, 0.014977914281189442, -0.06755195558071136, -0.004529905505478382, -0.05227135494351387, 0.018808502703905106, -0.004443795885890722, -0.07456600666046143, -0.021188268437981606, -0.025238046422600746, -0.01357927918434143, -0.05506862327456474, 0.048680830746889114, 0.016094734892249107, 0.029580075293779373, -0.04350379481911659, -0.017858684062957764, -0.006883577909320593, -0.018370123580098152, -0.0370742492377758, -0.0012596843298524618, -0.007598551455885172, 0.011554391123354435, 0.028306690976023674, 0.038389384746551514, 0.03465273603796959, 0.006638295017182827, 0.06667520105838776, -0.009571252390742302, -0.046468064188957214, -0.035633865743875504, -0.006982734892517328, 0.0049500176683068275, 0.044297050684690475, 0.011032512411475182, 0.021376144140958786, 0.010098349303007126, -0.004764751065522432, -0.019935760647058487, 0.0052240039221942425, -0.03701162710785866, -0.044130049645900726, -0.011136887595057487, 0.038598135113716125, 0.025530297309160233, 0.05832514539361, -0.0027424716390669346, -0.02657405473291874, -0.006126854103058577, -0.01474828738719225, -0.00033400225220248103, 0.015353666618466377, 0.009947004728019238, 0.010990762151777744, 0.0021788429003208876, -0.003720993874594569, -0.027367310598492622, 0.014435159973800182, -0.03849375993013382, -0.03536248952150345, 0.03699075058102608, 0.011335201561450958, -0.04175028204917908, 0.010260132141411304, -0.03421435505151749, 0.019132066518068314, -0.010479320771992207, 0.009560815058648586, -0.0011285623768344522, -0.05222960188984871, -0.07026572525501251, -0.0007984741823747754, -0.04442230239510536, 0.06471294164657593, -0.004926533438265324, -0.008386587724089622, 0.0038671200163662434, 0.06813646107912064, -0.030853459611535072, 0.032711345702409744, -0.007008828688412905, 0.03632274642586708, -0.03930789232254028, -0.051603350788354874, 0.04012202098965645, 0.00024218425096478313, -0.01083419844508171, 0.0009582994389347732, -0.011543952859938145, -0.018558001145720482, -0.0020431545563042164, 0.041541531682014465, -0.030686458572745323, -0.001959653804078698, -0.030018452554941177, 0.010949011892080307, -0.0034783203154802322, -0.029246073216199875, -0.004916095640510321, 0.009226812049746513, 0.026845430955290794, -0.00619469815865159, -0.03534161299467087, 0.026135677471756935, 0.011335201561450958, -0.03323322534561157, -0.0006177737377583981, 0.03559211641550064, -0.001112253637984395, 0.0022036321461200714, 0.011554391123354435, -0.03204334154725075, -0.006862702779471874, 0.016794051975011826, -0.061498165130615234, -0.013182652182877064, 0.054400619119405746, -0.010171412490308285, 0.007332393433898687, -0.012671210803091526, 0.0018148325616493821, 0.006606982089579105, -0.07343874871730804, 0.01761861890554428, -0.014769162982702255, 0.04110315442085266, 0.0033817728981375694, -0.0666334480047226, -0.00696185976266861, -0.04671856760978699, 0.025196295231580734, 0.01202408131211996, -0.050350841134786606, -0.012128457427024841, -0.012608584947884083, 0.0022727809846401215, -0.03653149679303169, 0.03974626958370209, 0.006711357738822699, -0.005933758802711964, 0.014351659454405308, 0.00039140888839028776, -0.008631871081888676, 0.026135677471756935, -0.02515454590320587, 0.03202246502041817, 0.012932149693369865, -0.04387954622507095, 0.03390122950077057, -0.023964662104845047, 0.012817337177693844, -0.013412278145551682, -0.024966668337583542, 0.05185385048389435, 0.03306622430682182, 0.02200239896774292, 0.03703249990940094, 0.007671614643186331, -0.012973899953067303, -0.02275390364229679, -0.016355672851204872, 0.03941226750612259, -0.05665513500571251, -0.039161764085292816, -0.03515373915433884, -0.05172859877347946, 0.016439173370599747, 0.04206341132521629, -0.007588113658130169, -0.00816739909350872, 0.04772057384252548, -0.022336401045322418, -0.05131109803915024, 0.005678038578480482, 0.006147729232907295, 0.02072901464998722, 0.0077916462905704975, 0.07089198380708694, -0.012712961062788963, -0.029621826484799385, -0.008047367446124554, -0.013172213919460773, 0.01612604595720768, -0.0716017335653305, -0.058617398142814636, -0.05314810946583748, 0.053649112582206726, -0.004315935540944338, 0.002246687188744545, -0.006257323548197746, -0.02803531475365162, 0.006403449457138777, 0.008668402209877968, 0.0056571634486317635, 0.01759774424135685, -0.010265350341796875, -0.017148928716778755, -0.024340415373444557, -0.007462862879037857, 0.02419428899884224, 0.07377275079488754, -0.016355672851204872, -0.005192691460251808, 0.020802078768610954, -0.002378461416810751, -0.053440362215042114, -0.0049500176683068275, 0.01816137321293354, -0.026448804885149002, 0.037700504064559937, -0.05172859877347946, 0.036218371242284775, 0.03763787820935249, -0.006022478453814983, 0.08567158132791519, 0.006152947898954153, -0.015061414800584316, -0.010327976197004318, -0.021522270515561104, 0.008130867965519428, 0.008282212540507317, -0.006747889332473278, -0.03534161299467087, 0.01780649647116661, 0.007608989253640175, 0.003812322625890374, 0.005725007504224777, -0.02768043801188469, -0.020092323422431946, 0.00935728196054697, 0.04112402722239494, -0.0035931337624788284, 0.020843828096985817, 0.00945121981203556, 0.023067031055688858, -0.004874345380812883, -0.0399550199508667, -0.009659972041845322, 0.019330380484461784, 0.023505408316850662, 0.02786831371486187, 0.007285424508154392, 0.0029851451981812716, -0.008772778324782848, 0.029433948919177055, 0.010599353350698948, -0.030936960130929947, 0.04104052856564522, 0.024695292115211487, 0.01100119948387146, -0.01136651448905468, -0.009920910932123661, -0.014466472901403904, 0.04197990894317627, -0.03248171880841255, -0.039140891283750534, -0.010782010853290558, -0.000139357871375978, -0.02034282498061657, -0.016240859404206276, -0.00842311978340149, 0.01724286749958992, -0.010855073109269142, -0.003770572366192937, 0.010672415606677532, 0.01110557559877634, -0.027095934376120567, 0.02179364673793316, -0.018276186659932137, 0.003843635320663452, 0.03335847705602646, -0.041729409247636795, 0.01924687996506691, -0.010098349303007126, -0.020071448758244514, 0.04433880001306534, -0.008344837464392185, -0.015124039724469185, 0.001442994107492268, 0.037512630224227905, -0.018391000106930733, 0.0058763520792126656, -0.01631392352283001, 0.02256602793931961, 0.023359283804893494, -0.05377436429262161, -0.015416291542351246, -0.01074026059359312, -0.007989960722625256, 0.0017208944773301482, -0.0053544738329946995, 0.03314972296357155, -0.003556602168828249, 0.020102761685848236, 0.01795262098312378, -0.04220953583717346, -0.009576471522450447, -0.014069844968616962, -0.037512630224227905, -0.007092329207807779, 0.015458041802048683, 0.028285816311836243, 0.028452817350625992, 0.028285816311836243, -0.0034130855929106474, -0.031980715692043304, 0.005881571210920811, 0.04127015545964241, 0.006862702779471874, 0.009498189203441143, -0.02989320270717144, -0.012806898914277554, -0.02202327363193035, 0.03388035297393799, 0.008887591771781445, -0.04454755038022995, -0.01982094720005989, 0.017848245799541473, 0.004608187358826399, 0.015812920406460762, -0.009665190242230892, -0.019894009456038475, 0.03294097259640694, 0.026344427838921547, -0.02018626220524311, 0.04127015545964241, -0.020123636350035667, -0.010458446107804775, 0.0030295047909021378, -0.021209143102169037, 0.00825611874461174, 0.00824046228080988, -0.017858684062957764, -0.00127273122780025, 0.025008419528603554, -0.012399833649396896, 0.0049526272341609, 0.007849053479731083, -0.0011298670433461666, -0.02254515327513218, -0.016251297667622566, -0.037679631263017654, 0.03644799813628197, -0.010296663269400597, -0.05373261496424675, -0.04454755038022995, -0.015322353690862656, 0.030331579968333244, -0.02899557165801525, -0.02363066002726555, 0.01089682336896658, -0.03832675889134407, -0.014195095747709274, 0.00373665033839643, 0.004649937618523836, -0.011658766306936741, -0.022816529497504234, -0.023902036249637604, -0.008120429702103138, -0.020405450835824013, -0.03269047290086746, -0.01705498993396759, 0.018631063401699066, -0.02532154694199562, 0.02035326324403286, 0.015050976537168026, -0.007770771160721779, -0.026720181107521057, 0.004028902389109135, 0.00806302297860384, 0.030310705304145813, -0.0030790832825005054, 0.0388486385345459, -0.0027633467689156532, -0.0043263728730380535, -0.0046395002864301205, 0.014351659454405308, 0.00017776487220544368, 0.007426331751048565, -0.013934156857430935, -0.024528291076421738, 0.029371323063969612, 0.028536317870020866, 0.0014103767462074757, -0.011512640863656998, 0.03997589647769928, 0.005458849482238293, 0.018317935988307, -0.019539132714271545, 0.0030164578929543495, -0.010448007844388485, 0.0012459850404411554, 0.022607777267694473, 0.04164590686559677, 0.03920351713895798, -0.023902036249637604, 0.012347646057605743, -0.025175420567393303, -0.03909913823008537, 0.005573662929236889, 0.003645321587100625, -0.02859894372522831, -0.010813322849571705, -0.038598135113716125, -0.015238853171467781, 0.022628653794527054, 0.003559211501851678, 0.01923644356429577, -0.043921299278736115, -0.03580086678266525, -0.008856278844177723, -0.0036087899934500456, 0.012326771393418312, -0.02454916574060917, 0.002674627583473921, -0.031458839774131775, 0.00012663708184845746, 0.01964350789785385, 0.00934162549674511, 0.032189469784498215, 0.0004886087845079601, 0.016178235411643982, 0.02511279471218586, 0.01063588447868824, 0.014518660493195057, 0.01868325099349022, -0.01760818250477314, -0.004394217394292355, -0.0013412277912721038, 0.026448804885149002, -0.01338096521794796, -0.061873920261859894, -0.0034443982876837254, -0.03114571049809456, 0.001953130355104804, -0.049432333558797836, 0.003462664084509015, -0.003660977818071842, 0.0038853855803608894, -0.0161573588848114, -0.015322353690862656, -0.009044154547154903, 0.017566431313753128, -0.02791006490588188, -0.020687265321612358, 0.028891196474432945, -0.012577272951602936, 0.017900433391332626, -0.033295851200819016, -0.01083419844508171, 0.021584896370768547, -0.012316333130002022, 0.007922115735709667, -0.005792851559817791, -0.04195903241634369, -0.027012433856725693, -0.023943787440657616, -0.02857806906104088, 0.005693695042282343, -0.007358487229794264, 0.006627857219427824, -0.002050982555374503, -0.009586908854544163, -0.023943787440657616, -0.020969079807400703, 0.016219984740018845, -0.015061414800584316, 0.006497387774288654, 0.031041335314512253, -0.01162745337933302, -0.022503402084112167, -0.04147890582680702, -0.010442789644002914, 0.005070049781352282, -0.004503811709582806, 0.0034704923164099455, -0.0030895208474248648, -0.00835005659610033, 0.03248171880841255, 0.0035305083729326725, -0.016084296628832817, -0.03373422846198082, -0.0035357270389795303, 0.028473692014813423, 0.004916095640510321, 0.026866307482123375, -0.0024345633573830128, 0.025008419528603554, 0.02256602793931961, -0.0061894794926047325, 0.002099256496876478, -0.007916897535324097, 0.0022140697110444307, -0.017848245799541473, -0.03615574538707733, 0.03463185951113701, -0.01309915166348219, 0.017326368018984795, -0.04093615338206291, 0.016251297667622566, -0.04763707146048546, 0.031604964286088943, 0.03433960676193237, 0.009560815058648586, -0.052897609770298004, -0.002583298832178116, 0.004203731659799814, -0.0002529479970689863, 0.008490963838994503, -0.015906857326626778, 0.016084296628832817, 0.006810514722019434, -0.0033765542320907116, -0.02088557928800583, -0.014936164021492004, 0.009727816097438335, 0.01872500218451023, -0.01080288551747799, -0.011408264748752117, 0.01597992144525051, -0.0030790832825005054, -0.022586902603507042, 0.007535926066339016, -0.028661569580435753, 0.01575029455125332, -0.05114409700036049, -0.036406245082616806, 0.01575029455125332, 0.029433948919177055, 0.0008532713982276618, -0.011053387075662613, 0.03536248952150345, 0.0690549686551094, -0.004313325975090265, -0.0700569748878479, -0.005226613488048315, 0.018098747357726097, -0.016084296628832817, 0.0043081073090434074, 0.012201519683003426, 0.007175829727202654, -0.005860696081072092, -0.0027711750008165836, -0.021417895331978798, -0.045591309666633606, -0.029955828562378883, -0.017639493569731712, -0.040414273738861084, 0.03667762503027916, 0.024486541748046875, 0.01090726163238287, -0.02271215431392193, -0.03250259533524513, 0.028640693053603172, -0.0017874339828267694, 0.022649528458714485, -0.04346204549074173, 0.028097940608859062, 0.01019228808581829, 6.531635881401598e-05, 0.049975089728832245, -0.024236038327217102, -0.031270962208509445, -0.013694092631340027, -0.00619469815865159, 0.015050976537168026, -0.017931746318936348, 0.01062022801488638, 0.02640705369412899, 0.01942431926727295, -0.02697068266570568, 0.006758327130228281, -0.05306461080908775, 0.00871537160128355, -0.030018452554941177, -0.0037575254682451487, -0.0057145701721310616, 0.040727399289608, 0.008564027026295662, -0.039892394095659256, -0.02680368162691593, 0.013433153741061687, 0.00916940625756979, -0.018599750474095345, -0.01467522419989109, -0.0015578074380755424, 0.01136651448905468, 0.003614008892327547, 0.01980007067322731, -0.004370732698589563, 0.014257721602916718, 0.011554391123354435, 0.017295055091381073, -0.01072982233017683, -0.020833391696214676, -0.015186665579676628, -0.019831383600831032, 0.002313226694241166, 0.006800077389925718, -0.0025180638767778873, 0.02071857824921608, -0.014758724719285965, -0.018777189776301384, 0.00431071687489748, -0.0031886778306216, 0.02143876999616623, 0.027743062004446983, 0.017295055091381073, -0.014539536088705063, 0.0014038532972335815, 0.05753188952803612, 0.030686458572745323, -0.024716166779398918, 0.015071852132678032, -0.03855638578534126, 0.035487741231918335, 0.015259728766977787, -0.01779605820775032, 0.016585299745202065, 0.015875544399023056, 0.03507023677229881, -0.03886951506137848, 0.00177699641790241, 0.003037333022803068, 0.013704529963433743, 0.008407463319599628, -0.04838857799768448, -0.008162179961800575, -0.04271053895354271, 0.024653542786836624, -0.022419901564717293, 0.001966177485883236, -0.05907665193080902, -0.025029294192790985, 0.007081891875714064, 0.011283013969659805, 0.010761135257780552, 0.0005965724121779203, 0.006497387774288654, -0.007525488268584013, -0.020770765841007233, -0.012378958985209465, -0.007019266486167908, 0.00926856230944395, -0.009769566357135773, 0.01653311215341091, -0.00439682649448514, 0.01818224787712097, 0.08692409098148346, -0.02918344736099243, -0.056571632623672485, 0.035111986100673676, -0.020102761685848236, -0.0399550199508667, 0.0374082550406456, 0.017879558727145195, 0.006659170147031546, -0.018798064440488815, -0.019768759608268738, 0.05060134455561638, 0.0003181828069500625, 0.02730468474328518, 0.003843635320663452, -0.002160577103495598, 0.015155352652072906, -0.006032915785908699, 0.004702125675976276, -0.004321154206991196, 0.0017248085932806134, 0.026699306443333626, 0.01193014346063137, -0.013422715477645397, -0.007201923988759518, 0.024256914854049683, 0.024131663143634796, -0.011815330013632774, 0.017879558727145195, 0.011971893720328808, -0.0022349448408931494, 0.025008419528603554, 0.0377422571182251, -0.009132874198257923, 0.003251303220167756, -0.008600558154284954, 0.014633473940193653, 0.003770572366192937, -0.027179434895515442, -0.022879155352711678, 0.009759129025042057, 0.04093615338206291, -0.003812322625890374, -0.02050982601940632, 0.060412660241127014, -0.033629853278398514, 0.018985942006111145, 0.011230826377868652, 0.012274582870304585, 0.04248091205954552, -0.053273361176252365, 0.021021267399191856, 0.027179434895515442, 0.004655156750231981, 0.019518258050084114, 0.01905900426208973, 0.02310878224670887, -0.016773175448179245, -0.014038532972335815, 0.038076259195804596, -0.016428736969828606, 0.04542430862784386, 0.027805687859654427, 0.02659492939710617, -0.03882776200771332, 0.020228011533617973, 0.019925322383642197, -0.018098747357726097, 0.014351659454405308, -0.008271775208413601, 0.0304359570145607, -0.0056571634486317635, 0.03615574538707733, 0.010625447146594524, 0.025906050577759743, 0.006883577909320593, -0.01127257663756609, -0.007885584607720375, -0.007222799118608236, -0.03350460156798363, 0.04546605795621872, 0.03703249990940094, 0.00040086795343086123, 0.0323147177696228, -0.02275390364229679, -0.011376951821148396, 0.036782000213861465, -0.0450485534965992, -0.001275993068702519, 0.008120429702103138, 0.0009680846706032753, 0.007530707400292158, 0.011241263709962368, 0.054024867713451385, -0.015416291542351246, 0.0019713961519300938, 0.007191486191004515, -0.025238046422600746, -0.006930546835064888, -0.00669048260897398, -0.00807346124202013, 0.024966668337583542, 0.008903248235583305, -0.00500481529161334, 0.017702119424939156, -0.025342421606183052, 0.006549575831741095, 0.027221184223890305, 0.006773983594030142, -0.009179843589663506, -0.008172618225216866, 0.012639897875487804, 0.03653149679303169, -0.007828177884221077, -0.006758327130228281, 0.04104052856564522, -0.010312319733202457, 0.005907665006816387, 0.010688072070479393, 0.025780798867344856, -0.02129264362156391, -0.00843877624720335, -0.006132072769105434, 0.022065024822950363, 0.028682444244623184, 0.013610592111945152, -0.007608989253640175, 0.007222799118608236, 0.017201116308569908, -0.033087100833654404, -0.013401840813457966, 0.0008624042966403067, -0.015019664540886879, 0.027805687859654427, 0.00206011557020247, -0.022294651716947556, -0.02807706594467163, -0.011815330013632774, 0.00013128506543580443, -0.011376951821148396, -0.005808508023619652, -0.03175108879804611, -0.015645919367671013, -0.010484539903700352, 0.03252347186207771, -0.005938977934420109, -0.02857806906104088, 6.605025555472821e-05, 0.014362097717821598, 0.03463185951113701, -0.016366111114621162, -0.0210838932543993, 0.03062383271753788, 0.009727816097438335, 0.013464465737342834, 0.03557123988866806, -0.017858684062957764, 0.0013112197630107403, -0.06212441995739937, 0.03252347186207771, -0.015729419887065887, -0.020603764802217484, 0.027221184223890305, -0.0179839339107275, 0.0012786024017259479, -0.012608584947884083, -0.002776393899694085, 0.01579204387962818, -0.006267761345952749, 0.016595738008618355, -0.014226408675312996, 0.008965873159468174, 0.01255639735609293, 0.014988351613283157, -0.027388185262680054, -0.016961053013801575, -0.006137291435152292, 0.02897469699382782, 0.02310878224670887, -0.009331188164651394, 0.017190678045153618, 0.033274974673986435, 0.016971489414572716, 0.010421914048492908, 0.0185371246188879, 0.018985942006111145, 0.0002785526739899069, 0.012608584947884083, -0.047595322132110596, 0.04909833148121834, 0.01813006028532982, -0.0016687066527083516, 0.009806097485125065, -0.011042949743568897, -0.005568443797528744, 0.024319538846611977, -0.012786024250090122, 0.022273775190114975, 0.005043955985456705, 0.0006520220194943249, 0.013046963140368462, -0.0053544738329946995, -0.056404631584882736, 0.007588113658130169, 0.030352454632520676, 0.007348049897700548, -0.02991407737135887, -0.02459091693162918, -0.002705940278246999, -0.03982976824045181, 0.015614605508744717, 0.016428736969828606, -0.015708543360233307, -0.002661580452695489, 0.022858280688524246, 0.013360090553760529, -0.011032512411475182, -0.06183216720819473, -0.008287430740892887, -0.006727014202624559, 0.010004411451518536, 0.012671210803091526, -1.2415001037879847e-05, 0.020447200164198875, 0.014028094708919525, -0.016773175448179245, 0.020854266360402107, 0.04755357280373573, -0.01392371952533722, -0.0035487739369273186, -0.014810913242399693, 0.014518660493195057, -0.02457004226744175, 0.001821356127038598, 0.018850252032279968, 0.010719384998083115, 0.008402244187891483, -0.011168200522661209, 0.03542511537671089, -0.009764347225427628, 0.03022720478475094, 0.00943034514784813, -0.0007397628505714238, 0.019580882042646408, 0.009879160672426224, 0.000127534061903134, -0.006935765501111746, 0.009879160672426224, -0.02273302897810936, 0.011585703119635582, -0.022315526381134987, 0.007608989253640175, -0.015687668696045876, -0.009983536787331104, 0.04220953583717346, 0.008741465397179127, 0.003066036384552717, -0.003976714331656694, 0.020676827058196068, 0.015228415839374065, -0.02145964466035366, 0.03413085639476776, -0.048138074576854706, -0.020426325500011444, 0.017869120463728905, -0.0010150537127628922, 0.010181849822402, -0.006220791954547167, -0.01909031718969345, 0.016637487336993217, 0.03081170842051506, 0.006695701740682125, -0.0046003591269254684, -0.042272161692380905, -0.013474904000759125, 0.015729419887065887, -0.007645520381629467, -0.00334524130448699, 0.020290637388825417, 0.0015551979886367917, -0.013694092631340027, -0.0019609585870057344, 0.01072982233017683, 0.0255094226449728, -0.01282777450978756, -0.006205135956406593, 1.1263198757660575e-05, -0.00107767921872437, -0.0016086905961856246, -0.006220791954547167, -0.006768764462321997, 0.010615009814500809, -0.016439173370599747, -0.006539138033986092, 0.014414285309612751, -0.011815330013632774, -0.005604975391179323, -0.0016556596383452415, -0.025050168856978416, -0.0024463057052344084, -0.02166839689016342, 0.008464870043098927, 0.021355269476771355, -0.023004405200481415, 0.004107184242457151, -0.029392199590802193, -0.008913685567677021, -0.0322103425860405, 0.00935728196054697, 0.049432333558797836, 0.014069844968616962, -0.01722199097275734, -0.030018452554941177, -0.03337934985756874, 0.03930789232254028, -0.0014260330935940146, 0.013349653221666813, 0.036782000213861465, 0.03173021599650383, 0.00879365298897028, -0.0198105089366436, -0.013422715477645397, 0.013892406597733498, -0.03941226750612259, -0.010552383959293365, -0.015124039724469185, 0.02747168578207493, 0.034757111221551895, -0.00899196695536375, -0.04049777612090111, 0.05043433979153633, -0.004978721030056477, 0.018965065479278564, -0.010197506286203861, -0.007520269602537155, 0.00714451726526022, -0.02183539792895317, -0.03498673811554909, -0.005537131335586309, 0.0046395002864301205, -0.035967867821455, -0.014299471862614155, 0.01686711423099041, 0.027805687859654427, 0.010207944549620152, -0.01053150836378336, 0.015875544399023056, -0.017869120463728905, -0.014643911272287369, 0.023609785363078117, -0.0030738646164536476, -0.013474904000759125, 0.016971489414572716, -0.005359692499041557, 0.02145964466035366, 0.03874426335096359, -0.012838211841881275, -0.025363296270370483, -0.0014012438477948308, -0.0012205434031784534, 0.024507416412234306, -0.011961456388235092, 0.0001568897278048098, 0.03388035297393799, -0.0015943389153108, 0.015531104989349842, 0.07661177217960358, -0.05072659254074097, 0.04362904652953148, -0.005589318927377462, -0.02038457617163658, -0.020468076691031456, -0.0021723194513469934, -0.009639096446335316, -0.006064228713512421, 0.003277397248893976, 0.04546605795621872, 0.03114571049809456, -0.009028499014675617, 0.010239256545901299, 0.05778239294886589, -0.00042924509034492075, 0.029225198552012444, 0.006356480531394482, -0.020113198086619377, 0.009179843589663506, 0.0014169001951813698, -0.0011142106959596276, -0.004733438137918711, 0.006163385696709156, 0.015384979546070099, -0.001968786818906665, 0.009211156517267227, -0.025530297309160233, -0.001855278154835105, -0.0012577272718772292, -0.00476996973156929, 0.02143876999616623, -0.03269047290086746, 0.03577999398112297, 0.021689271554350853, -0.0370742492377758, -0.03431873396039009, -0.038932137191295624, 0.047052569687366486, -0.008136086165904999, 0.012347646057605743, 0.0117318294942379, 0.03006020374596119, 0.01795262098312378, 0.0029877545312047005, -0.007102767005562782, -0.020457638427615166, -0.021960649639368057, -0.018234435468912125, 0.017931746318936348, -0.004156762734055519, 0.015322353690862656, -0.006246886216104031, 0.013996782712638378, 0.004655156750231981, -0.005033518653362989, -0.02127176895737648, -0.02292090468108654, 0.003115614876151085, -0.002088818931952119, -0.04442230239510536, -0.02676193043589592, 0.01651223748922348, -0.013172213919460773, -0.011147325858473778, 0.00337133533321321, 0.001099206623621285, -0.000633103889413178, -0.034924112260341644, -0.029621826484799385, 0.05172859877347946, 0.008282212540507317, 0.04033077135682106, 0.04801282659173012, 0.01089682336896658, 0.002473704284057021, -0.0074993944726884365, 0.011898830533027649, -0.001572159118950367, 0.03471536189317703, -0.012838211841881275, 0.01146045234054327, -0.004887392278760672, -0.00023468225845135748, -0.052187852561473846, -0.006972297094762325, -0.015562417916953564, 0.018965065479278564, 0.017503805458545685, 0.03964189440011978, -0.011679641902446747, 0.012013643980026245, -0.00422199722379446, 0.006142510566860437, -0.04638456553220749, -0.0021540536545217037, 0.009148530662059784, 0.018265748396515846, 0.009957442060112953, 0.0021775381173938513, -0.004816938657313585, -0.03922438994050026, 0.013036525808274746, -0.017002802342176437, 0.04642631486058235, -0.008777996525168419, 0.026344427838921547, -0.020989954471588135, 0.0077916462905704975, 0.00789602193981409, 0.0016647925367578864, 0.00030709290876984596, -0.040226396173238754, -0.022252900525927544, -0.0538996160030365, 0.003493976779282093, -0.014101157896220684, 0.00019619370868895203, 0.008099555037915707, 0.005615413188934326, -0.010792448185384274, 0.026365304365754128, -0.03212684392929077, 0.01964350789785385, 0.03118746168911457, -0.0009876551339402795, 0.019664382562041283, -0.010098349303007126, -0.0041437153704464436, -0.014883975498378277, 0.03559211641550064, 0.0012361997505649924, -0.015468480065464973, 0.006038134451955557, -0.037658754736185074, -0.024089913815259933, 0.006930546835064888, 0.018213560804724693, 0.024716166779398918, 0.0323147177696228, -0.00924768764525652, -0.02089601568877697, -0.024862293154001236, 0.037157751619815826, 0.006539138033986092, 0.017566431313753128, -0.026553180068731308, 0.007405456621199846, 0.044631052762269974, -0.03325410187244415, 0.008016054518520832, -0.034402232617139816, 0.013360090553760529, 0.0076194265857338905, -0.018766751512885094, 0.012305895797908306, 0.02237815223634243, 0.038201507180929184, 0.0369698740541935, 0.00403151148930192, -0.023046156391501427, 0.027075057849287987, -0.0388486385345459, 0.027283810079097748, 0.051269348710775375, -0.013307902961969376, 0.029830576851963997, 0.026260927319526672, -0.040727399289608, -0.022607777267694473, -0.034402232617139816, -0.029851451516151428, 0.029600949957966805, 0.015019664540886879, 0.00281553459353745, 0.014226408675312996, 0.008109992370009422, -0.004130668472498655, 0.02454916574060917, 0.018276186659932137, 0.013307902961969376, -0.03690724819898605, -0.010171412490308285, -0.012900837697088718, -0.01665836200118065, 0.08049454540014267, 0.040977902710437775, 0.03398473188281059, -0.004002808127552271, -0.01633479818701744, -0.01633479818701744, 0.023171406239271164, 0.011554391123354435, -0.008543151430785656, -0.02567642368376255, 0.06233317032456398, 0.04346204549074173, -0.027805687859654427, -0.0036061806604266167, 0.009759129025042057, -0.0002025541034527123, -0.020426325500011444, -0.006471293978393078, -0.0016595737542957067, 0.009242468513548374, -0.040998779237270355, 0.023380158469080925, -0.005088315811008215, 0.008177836425602436, -0.0073793623596429825, 0.019946197047829628, 0.016783613711595535, 0.003068645717576146, 0.019393006339669228, -0.028181441128253937, 0.03097870945930481, -0.030373331159353256, -0.010416695848107338, 0.00357225863263011, 0.011126450262963772, -0.003021676791831851, 0.0037470879033207893, 0.016564425081014633, -0.02200239896774292, 0.0413954071700573, 0.0004964369582012296, -0.023317532613873482, -0.009205937385559082, -0.030352454632520676, 0.021376144140958786, 0.06312642991542816, 0.007807302754372358, -0.0074993944726884365, -0.01063588447868824, -0.03686549887061119, 0.04239741340279579, -0.036406245082616806, -0.018965065479278564, 0.0255094226449728, -0.007953428663313389, -0.005244879052042961, -0.017482930794358253, -0.014894413761794567, 0.0141115952283144, -0.005933758802711964, 0.05494337156414986, -0.05890964716672897, 0.03195984289050102, -0.012441583909094334, -0.009733034297823906], [0.027450257912278175, 0.002267097122967243, 0.07288186997175217, 0.03644093498587608, -0.04060151427984238, 0.01920083351433277, -0.027521992102265358, 0.012888230383396149, 0.04375781491398811, 0.01739552430808544, -0.020384445786476135, 0.04368608072400093, 0.011459525674581528, 0.028024129569530487, -0.04815750569105148, -0.00934336893260479, 0.0004591731121763587, 0.03835384547710419, -0.012170889414846897, 0.0045043048448860645, -0.008524404838681221, 0.05150509998202324, -0.016809696331620216, 0.01672600582242012, -0.00346117140725255, -0.012469781562685966, 0.0010416392469778657, -0.05800899490714073, 0.03572359308600426, -0.007986399345099926, -0.0190095417201519, -0.021018097177147865, 0.027450257912278175, -0.019153010100126266, 0.009241745807230473, 0.02106592059135437, -0.056526489555835724, -0.0141914002597332, 0.009193923324346542, 0.02091049589216709, -0.013737084344029427, -0.04428386315703392, 0.023205988109111786, -0.01783788576722145, -0.030295711010694504, 0.05188767984509468, 0.0272111427038908, -0.010652516968548298, -0.03864077851176262, 0.0016483903164044023, 0.004638806451112032, 0.04327958822250366, -0.0009900802979245782, -0.03421717509627342, 0.0019711938221007586, -0.015602171421051025, -0.023528791964054108, 0.014789184555411339, 0.02477218396961689, 0.021687615662813187, 0.046364154666662216, -0.008494515903294086, 0.041294943541288376, -0.0006560683250427246, -0.04206010699272156, -0.007747285068035126, 0.00016775322728790343, 0.04342305660247803, -0.039262477308511734, -0.008960787206888199, 0.04342305660247803, 0.03842557966709137, 0.03285422921180725, -0.011447570286691189, 0.01682165078818798, 0.040529780089855194, 0.039453767240047455, 0.01409575529396534, 0.0008316674502566457, 0.012374135665595531, -0.06231303885579109, -0.025967752560973167, 0.014860918745398521, -0.01941603608429432, -0.004486371763050556, 0.0220462866127491, -0.06853000074625015, 0.026685092598199844, -0.0006172123248688877, -0.028334978967905045, 0.03849731385707855, -1.2072441677446477e-05, -0.014299001544713974, 0.0043369256891310215, 0.017574859783053398, 0.05059646815061569, 0.024796094745397568, -0.013366458006203175, 0.0018785373540595174, 0.0443555973470211, -0.03835384547710419, -0.039740703999996185, -0.0132588567212224, 0.039166830480098724, 0.02556125819683075, -0.03617790713906288, -0.02467653714120388, 0.04612503945827484, 0.017311835661530495, 0.017873752862215042, 0.04954436793923378, 0.012170889414846897, -0.05107469484210014, -0.028645826503634453, -0.011501370929181576, -0.009146100841462612, -0.03407370671629906, -0.01482505165040493, -0.017813973128795624, -0.0003422315348871052, 0.013103432953357697, 0.011190523393452168, 0.017275968566536903, -0.040338486433029175, 0.033595480024814606, 0.01177037414163351, -0.04741625487804413, 0.0066951848566532135, -0.04679455980658531, -0.024509157985448837, 0.029482724145054817, -0.016702095046639442, 0.08096390962600708, -0.0431361198425293, -0.0032160799019038677, -0.038879893720149994, -0.033212900161743164, -0.051935505121946335, -0.04122320935130119, -0.01998990774154663, 0.030893495306372643, 0.009941154159605503, 0.05571350082755089, 0.04622068628668785, -0.06346078962087631, 0.005018399562686682, 0.0027796973008662462, 0.035269275307655334, 0.0044684382155537605, -0.025824284180998802, -0.036536578088998795, 0.050979048013687134, 0.004160579293966293, -0.03012833185493946, -0.012326313182711601, 0.010204179212450981, -0.01998990774154663, 0.04799012839794159, 0.019487770274281502, 0.026278600096702576, -0.039549414068460464, -0.028502358123660088, -0.007675550878047943, -0.007376658730208874, 0.02556125819683075, -0.006049577612429857, 0.0138446856290102, 0.01710858754813671, -0.053513653576374054, -0.06814741343259811, -0.02857409231364727, -0.03842557966709137, 0.01355774886906147, -0.042777448892593384, -0.03338027745485306, -0.03022397682070732, 0.02214193157851696, 0.07680333405733109, 0.007203301414847374, -0.007896731607615948, -0.026302510872483253, 0.01211708877235651, -0.023672260344028473, 0.024473290890455246, -0.057196006178855896, -0.004061944782733917, -0.0004610411706380546, 0.0051887682639062405, -0.011800263077020645, 0.0661388635635376, 0.021328944712877274, -0.06618668138980865, 0.026159042492508888, -0.011112811043858528, -0.018603049218654633, 0.022034330293536186, -0.041055828332901, -0.032232530415058136, 0.010909564793109894, -0.056813426315784454, 0.016199955716729164, -0.04799012839794159, 0.027641547843813896, -0.005284413695335388, 0.01507612131536007, -0.03931029886007309, -0.02584819495677948, -0.03003268502652645, 0.06762136518955231, -0.03852122277021408, 0.0036434954963624477, -0.06628233194351196, -0.06293473392724991, 0.011489415541291237, -0.005601239390671253, 0.03192168474197388, 0.01995404250919819, -0.044929470866918564, 0.030582647770643234, -0.020133376121520996, 0.0009900802979245782, -0.013282768428325653, 0.01703685335814953, -0.021305033937096596, -0.041701436042785645, 0.0033087364863604307, -0.012816496193408966, -0.027545902878046036, -0.04308829456567764, -0.07044290751218796, -0.049496542662382126, 0.008327135816216469, -0.003353570122271776, -0.0024195320438593626, -0.04729669913649559, 0.04571854695677757, 0.02360052615404129, -0.03120434284210205, 0.002788664074614644, 0.02993704006075859, 0.05375276878476143, -0.02385159581899643, 0.015207634307444096, 0.01976275071501732, -0.02553734742105007, -0.003332647727802396, 0.006982121150940657, -0.01564999483525753, 0.05293978378176689, 0.013772951439023018, 0.019750794395804405, 0.02486782893538475, 0.05523527413606644, -0.015554348938167095, 0.00400814414024353, 0.012314357794821262, 0.039358120411634445, -0.01710858754813671, 0.01920083351433277, -0.017132500186562538, 0.022751672193408012, -0.017275968566536903, 0.01647493615746498, -0.04610113054513931, -0.040338486433029175, -0.04722496494650841, 0.05050082132220268, 0.005338214337825775, 0.000794305931776762, 0.028167597949504852, -0.01957145892083645, 0.013760996051132679, 0.010311780497431755, -0.0050811669789254665, -0.06929516047239304, 0.015422835946083069, 0.01005473267287016, 0.04488164931535721, 0.028598003089427948, -0.006004743743687868, -0.052318084985017776, 1.2177521057310514e-05, 0.012457826174795628, -0.04115147516131401, 0.007370681036263704, 0.011286168359220028, 0.02898058481514454, -0.031132608652114868, -0.024939563125371933, 0.018901940435171127, 0.045407697558403015, -0.020898541435599327, -0.01764659397304058, -0.009773774072527885, 0.05050082132220268, -0.003407370764762163, -0.012362180277705193, 0.01263716071844101, 0.05236591026186943, 0.057578589767217636, -0.011118789203464985, 0.04818141832947731, -0.030773937702178955, -0.01287627499550581, -0.00772935152053833, 0.04318394139409065, 0.0053770700469613075, 0.04251442477107048, -0.004937698598951101, -0.023803772404789925, -0.037684325128793716, -0.003562794765457511, -0.03665613755583763, -0.03378676995635033, 0.025609081611037254, 0.00658160587772727, -0.019655149430036545, 0.047057583928108215, -0.009020566008985043, 0.005263491068035364, 0.024843918159604073, 0.049974773079156876, 0.014717450365424156, -0.014550071209669113, 0.003050194587558508, -0.0321129746735096, 0.0407928042113781, 0.054565753787755966, 0.023803772404789925, 0.014035976491868496, -0.02527432143688202, 0.0032878138590604067, 0.025011297315359116, -0.030271800234913826, -0.0035209497436881065, -0.04590983688831329, -0.0314195454120636, -0.016809696331620216, 0.004471426829695702, -0.009391192346811295, 0.01970297284424305, -0.021424591541290283, 0.021305033937096596, 0.016929252073168755, -0.005640095565468073, 0.021245256066322327, 0.019057365134358406, 0.019117143005132675, -0.018483491614460945, 0.019045408815145493, 0.026948118582367897, 0.0009138628374785185, -0.020671382546424866, -0.016714049503207207, -0.04545552283525467, 0.00293362676165998, 0.026182955130934715, 0.0014062876580283046, -0.004806186072528362, 0.03395415097475052, 0.024186354130506516, 0.04060151427984238, 0.014705494977533817, 0.023528791964054108, -0.0009878386044874787, 0.039549414068460464, -0.02888493984937668, 0.053609300404787064, 0.019714927300810814, -0.012266535311937332, -0.014227267354726791, -0.004725485108792782, 0.013067565858364105, 0.02711549773812294, 0.012816496193408966, 0.010150378569960594, 0.016498848795890808, 0.007585883606225252, 0.026972029358148575, -0.04727278649806976, 0.004898842889815569, 0.008153778500854969, 0.02536996826529503, 0.03352374583482742, 0.021747395396232605, 0.02857409231364727, -0.03990808501839638, -0.030176153406500816, 0.025106942281126976, -0.017491169273853302, -0.017096633091568947, -0.030391355976462364, 0.00904447678476572, 0.009887353517115116, -0.04557507857680321, 0.0037361520808190107, -0.01089760847389698, 0.052126795053482056, 0.012218711897730827, -0.01026395708322525, -0.012206756509840488, -0.042084019631147385, 0.026565536856651306, -0.03620181977748871, -0.016857517883181572, -0.013689261861145496, 0.004408659413456917, -0.007962487637996674, 0.012481736950576305, -0.012840407900512218, 0.07063420116901398, 0.0023986096493899822, 0.033810682594776154, -0.011913842521607876, -0.008859164081513882, -0.016008665785193443, -0.033595480024814606, 0.06413030624389648, 0.03883207216858864, -0.03734956681728363, 0.06154787540435791, 0.015207634307444096, -0.0054727159440517426, 0.012983876280486584, -0.03041526861488819, -0.03314116597175598, 0.016929252073168755, 0.017252055928111076, 0.012009487487375736, -0.031945597380399704, -0.024652626365423203, -0.0006272999453358352, -0.028598003089427948, -0.006330536212772131, -0.029889216646552086, -0.0373256541788578, -0.02312229946255684, -0.010485137812793255, 0.04007546231150627, -0.036632224917411804, 0.011495392769575119, -0.05432664230465889, 0.04727278649806976, 0.022823406383395195, -0.0628390908241272, -0.020133376121520996, -0.031180432066321373, 0.03558012470602989, 0.01891389675438404, 0.04203619435429573, 0.007938575930893421, -0.004259213339537382, -0.06652144342660904, 0.006252824328839779, -0.014837007969617844, -0.09124580025672913, -0.0045790281146764755, -0.012200778350234032, 0.012900186702609062, -0.008691783994436264, 0.06962992250919342, 0.049783479422330856, 0.032328177243471146, 0.036345288157463074, -0.012170889414846897, 0.027282876893877983, -0.028239332139492035, 0.04954436793923378, -0.019714927300810814, -0.026995941996574402, 0.016199955716729164, 0.029865305870771408, 0.0239113736897707, 0.009875397197902203, -0.0016304567689076066, -0.037206098437309265, 0.0009228296112269163, -0.06269562244415283, -0.021747395396232605, -0.004845042247325182, -0.048827026039361954, 0.018411757424473763, -0.02093440853059292, -0.008123889565467834, 0.04954436793923378, -0.005613195244222879, 0.049974773079156876, 0.019487770274281502, -0.018949763849377632, -0.006772896740585566, -0.028024129569530487, 0.01603257656097412, 0.0530354268848896, -0.011477459222078323, -0.021723482757806778, 0.04327958822250366, 0.017060765996575356, 0.015602171421051025, 0.014669627882540226, 0.005873231217265129, -0.046770647168159485, -0.06843435019254684, -0.00582839734852314, -0.038090817630290985, -0.006037621758878231, -0.006647361908107996, -0.0480857715010643, 0.015877151861786842, -0.015733683481812477, 0.01802917569875717, -0.03345201164484024, 0.004366814624518156, -0.002101212041452527, 0.028550179675221443, -0.013916419818997383, -0.041749257594347, 0.02905231900513172, -0.016080398112535477, -0.017849840223789215, 0.025083031505346298, 0.06417812407016754, 0.01985839568078518, 0.04139058664441109, -0.004073900170624256, 0.0283828005194664, -0.002832003403455019, -0.02382768504321575, -0.07355138659477234, 0.0026631292421370745, 0.0253460556268692, -0.03656049072742462, -0.03782779350876808, -0.02144850231707096, 0.006157178897410631, 0.020898541435599327, -0.01452615950256586, 0.025298234075307846, 0.010658495128154755, -0.013414280489087105, 0.024939563125371933, 0.006199023686349392, 0.009696061722934246, 0.0038078862708061934, -0.022859273478388786, 0.04437950998544693, -0.027880661189556122, 0.05666995793581009, 0.012959964573383331, 0.004791241604834795, -0.01830415613949299, -0.004725485108792782, 0.012553471140563488, -0.0017828918062150478, -0.012350224889814854, -0.003323680954053998, 0.024186354130506516, 0.029506634920835495, -0.027569813653826714, 0.017240101471543312, -0.03129998967051506, -0.001622984535060823, 0.015255456790328026, -0.05270066857337952, -0.018196554854512215, -0.02527432143688202, 0.024533070623874664, 0.0326390266418457, -0.034982338547706604, -0.01878238469362259, 0.02137676812708378, 0.011728528887033463, -0.013282768428325653, -0.017682461068034172, 0.009875397197902203, 0.022548425942659378, 0.01568586193025112, 0.04638806730508804, -0.030558735132217407, 0.03538883477449417, 0.031084787100553513, 0.014741362072527409, 0.013976197689771652, -0.0033744927495718002, 0.011393769644200802, 0.021902818232774734, -0.004417626187205315, 0.003703274065628648, -0.017538992688059807, -0.017084676772356033, 0.020611604675650597, 0.0045581054873764515, 0.03990808501839638, 0.016929252073168755, -0.0043727923184633255, 0.011447570286691189, 0.029697926715016365, -0.04473818093538284, 0.024066798388957977, -0.01472940668463707, 0.002217779867351055, 0.017252055928111076, 0.0005783563829027116, 0.0005805980763398111, 0.022751672193408012, -0.029482724145054817, -0.0049705770798027515, -0.008177690207958221, -0.049783479422330856, 0.032734669744968414, 0.008769496344029903, 0.024317868053913116, -0.006952232215553522, -0.010664472356438637, -0.014418558217585087, 0.0015572282718494534, 0.007227212656289339, -0.07469913363456726, 0.00663540605455637, 0.005601239390671253, 0.016582537442445755, -0.016164088621735573, -0.02565690502524376, -0.0016528737032786012, 0.0017320801271125674, -0.008279313333332539, 0.0039662993513047695, -0.017718328163027763, -0.014932652935385704, 0.0010812424588948488, -0.049783479422330856, -0.028717560693621635, 0.008560271933674812, 0.0064560710452497005, -0.018160687759518623, 0.012170889414846897, -0.00646204873919487, -0.025776460766792297, -0.01140572503209114, 0.026876384392380714, 0.022464735433459282, 0.007544038351625204, -0.04571854695677757, 0.03208906203508377, -0.053609300404787064, 0.012649117037653923, 0.026661181822419167, -0.010060710832476616, 0.008285291492938995, 0.0614522323012352, -0.0075679500587284565, 0.019930129870772362, -0.024700449779629707, -0.005956921260803938, 0.01385664101690054, 0.00038332922849804163, -0.010479159653186798, -0.004725485108792782, 0.01618799939751625, -0.031849950551986694, 0.011680706404149532, -0.0069582099094986916, 0.0036434954963624477, -0.01887802965939045, 0.00848853774368763, 0.0497356578707695, 0.011274212971329689, 0.041414499282836914, -0.003727185307070613, 0.007950532250106335, -0.02413853257894516, -0.04041022062301636, 0.042562246322631836, 0.016462981700897217, -0.008046177215874195, 0.026254689320921898, -0.021771306172013283, -0.014000109396874905, 0.019535591825842857, -0.005511571653187275, 0.026876384392380714, -0.0013427730882540345, -0.024126576259732246, -0.016140177845954895, 0.02467653714120388, 0.013151255436241627, -0.008022265508770943, -0.014466381631791592, -0.024210266768932343, -0.007275035604834557, 0.008685806766152382, -0.008374958299100399, 0.012553471140563488, 0.015578259713947773, -0.012601294554769993, 0.010114511474967003, 0.008428758941590786, -0.015948886051774025, 0.0006187068065628409, 0.01073620654642582, -0.03390632942318916, 0.007998354732990265, 0.028837116435170174, 0.004160579293966293, -0.10540133714675903, -0.040147196501493454, -0.010401447303593159, 8.331619028467685e-05, -0.020229022949934006, 0.01697707548737526, 0.001896470901556313, 0.012146977707743645, -0.0394059456884861, -0.04689020290970802, 0.003786963876336813, -0.009164034388959408, -0.01697707548737526, -0.00953466072678566, -0.004582017194479704, -0.016941208392381668, -0.027330700308084488, -0.01511198841035366, 0.003284825012087822, 0.020790940150618553, -0.004546150099486113, 0.001262072240933776, -0.01148343738168478, -0.0017799029592424631, -0.03859295696020126, 0.011465503834187984, -0.015088076703250408, -0.03455193713307381, -0.020551826804876328, -0.004106778651475906, 0.008458648808300495, -0.03206515312194824, 0.041892725974321365, 0.009397169575095177, 0.01643906906247139, -0.04191663861274719, -0.009223812259733677, 0.039645057171583176, -0.021902818232774734, -0.009654217399656773, -0.0055833058431744576, -0.02233322337269783, 0.01764659397304058, -0.02122134529054165, -0.010449270717799664, 0.007532082963734865, 0.008757540956139565, -0.0007098689093254507, 0.0075141494162380695, -0.010784029960632324, -0.03933421149849892, -0.006181090138852596, 0.0014974498189985752, 0.029434900730848312, 0.000462909258203581, 0.014466381631791592, 0.010305802337825298, -0.006551716476678848, 0.019726883620023727, 0.013414280489087105, -0.0021191455889493227, 0.025489524006843567, -0.0073886145837605, -0.03581923991441727, -0.02030075713992119, 0.016331467777490616, 0.029434900730848312, -0.04012328386306763, 0.010718272998929024, 0.00847658235579729, 0.02974575012922287, 0.0019562493544071913, -0.03455193713307381, -0.023457057774066925, -0.03462367132306099, 0.02091049589216709, -0.04428386315703392, 0.051839858293533325, -0.01666622795164585, -0.017491169273853302, -0.0032130908221006393, -0.02388746291399002, 0.015817373991012573, -0.02097027562558651, -0.004408659413456917, 0.04944872111082077, 0.016797740012407303, 0.01252956036478281, -0.01697707548737526, 0.029482724145054817, -0.035938795655965805, -0.023014698177576065, 0.006067511159926653, -0.008679828606545925, -0.020994186401367188, -0.030845671892166138, -0.000270497432211414, 0.024114619940519333, -0.018256334587931633, -0.01409575529396534, 0.0034581825602799654, 0.07345574349164963, -0.024700449779629707, -0.026995941996574402, -0.0035687724594026804, 0.018399802967905998, -0.020515959709882736, 0.008010310120880604, 0.005753674544394016, 0.011842108331620693, -0.00870971754193306, 0.008428758941590786, -0.014932652935385704, -0.07780761271715164, 0.010281890630722046, -0.019439946860074997, -0.02340923435986042, 0.03605835139751434, 0.03206515312194824, 0.0138446856290102, -0.026780739426612854, -0.010622628033161163, -0.02866973727941513, -0.001957743661478162, 0.025896018370985985, -0.006306624971330166, 0.004985521547496319, -0.018447624519467354, 0.015088076703250408, 0.017000986263155937, 0.0011141205905005336, -0.013832730241119862, -0.028526268899440765, -0.02780892886221409, 0.028048042207956314, -0.03247164562344551, 0.0017963419668376446, 0.03899944946169853, -0.014932652935385704, -0.004148623440414667, 0.0063365139067173, -0.04925743117928505, 0.023612482473254204, 0.0073826368898153305, 0.012601294554769993, 0.022345179691910744, 0.01657058298587799, -0.009038499556481838, -0.01951168105006218, -0.03373894840478897, 0.0007816030411049724, 0.05623955279588699, -0.018351979553699493, 0.02936316654086113, 0.026469891890883446, -0.036225732415914536, -0.0025271333288401365, 0.03297378495335579, -0.02388746291399002, 0.006856586318463087, 0.022990785539150238, 0.008906986564397812, 0.01452615950256586, -0.012553471140563488, -0.0061392453499138355, 0.017156410962343216, -0.008966765366494656, 0.02195064164698124, -0.0330694317817688, -0.005012421868741512, 0.016427114605903625, -0.02809586375951767, 0.03230426460504532, -0.01735965721309185, 0.04301656037569046, 0.030367445200681686, -9.55987925408408e-05, 0.013689261861145496, 0.04301656037569046, 0.05117034167051315, -0.011495392769575119, 0.00438773725181818, -0.01200350932776928, -0.02546561323106289, 0.03677569329738617, 0.0012321829563006759, 0.02366030402481556, 0.023732038214802742, 0.0008391398005187511, 0.04282527044415474, -0.046172864735126495, -0.01657058298587799, 0.03938203305006027, 0.006438137497752905, 0.02242886833846569, -0.024509157985448837, 0.001900954288430512, -0.029506634920835495, 0.011453548446297646, -0.00967812817543745, -0.0019726883620023727, -0.04827706515789032, -0.003975266125053167, 0.024556981399655342, -0.02198650874197483, 0.008153778500854969, 0.02093440853059292, 0.03218470886349678, -0.0040768892504274845, 0.042873091995716095, -0.02701985277235508, 0.015661949291825294, 0.031060874462127686, 0.013234945945441723, -0.009277612902224064, -0.03919074311852455, 0.00023612481891177595, 0.04368608072400093, -0.01726401224732399, -0.027856750413775444, -0.0036195842549204826, -0.020767027512192726, -0.0314195454120636, -0.019272567704319954, 0.05753076449036598, -0.0037510967813432217, -0.009923220612108707, -0.00772935152053833, 0.037899527698755264, -0.0027856749948114157, 0.06040013208985329, -0.016199955716729164, 0.01564999483525753, 0.05054864287376404, -0.011543216183781624, -0.020515959709882736, 0.03754085674881935, 0.011166611686348915, 0.004190468229353428, 0.0045581054873764515, -0.03259120136499405, -0.017873752862215042, -0.016773829236626625, 0.029147963970899582, -0.004567072261124849, 0.01691729761660099, 0.0024822994600981474, -0.023935284465551376, 0.00801628828048706, -0.016702095046639442, -0.015315234661102295, 0.010192222893238068, -0.008960787206888199, 0.03483887016773224, -0.01173450704663992, 0.04612503945827484, -0.002231230027973652, 0.024628715589642525, 0.02262016013264656, 0.01920083351433277, -0.012792585417628288, -0.011429636739194393, -0.017192278057336807, 0.033499833196401596, -0.0021415625233203173, 0.002144551370292902, 0.022990785539150238, 0.007663595490157604, 0.040338486433029175, 0.06929516047239304, 0.016749916598200798, 0.007735329680144787, 0.0126730278134346, -0.016295600682497025, -0.0006542002665810287, 0.04007546231150627, 0.043351322412490845, -0.02575254999101162, 0.02780892886221409, 0.01741943508386612, 0.021591970697045326, -0.04887484759092331, 0.02477218396961689, 0.018459580838680267, -0.026780739426612854, -0.0014466381398960948, -0.010281890630722046, -0.001092450926080346, 0.031563013792037964, 0.015865197405219078, 0.013916419818997383, -0.012983876280486584, 0.02417439967393875, 0.003930432256311178, 0.011094877496361732, 0.0033475924283266068, 0.027928484603762627, 0.02074311673641205, 0.0018800317775458097, 0.0007177148363552988, 0.032997697591781616, -0.029817482456564903, 0.008219534531235695, 0.001827725674957037, 0.015243500471115112, -0.016498848795890808, 0.019714927300810814, 0.02565690502524376, -0.02467653714120388, 0.031443458050489426, 0.016702095046639442, 0.005571349989622831, -0.021388724446296692, -0.005406959448009729, -0.05021388456225395, -0.010795985348522663, 0.023038608953356743, 0.013414280489087105, 0.019870351999998093, 0.0016409180825576186, -0.03589097410440445, 0.010873697698116302, -0.021783262491226196, -0.002944087842479348, 0.04265788942575455, 0.01603257656097412, -0.01910518854856491, 0.028598003089427948, -0.008805363439023495, 0.01695316471159458, -0.013354502618312836, 0.03170648217201233, 0.026469891890883446, 0.005819430574774742, -0.022213665768504143, 0.0037212076131254435, -0.006796807982027531, -0.005968876648694277, 0.01113672275096178, -0.01676187291741371, 0.01603257656097412, 0.004976554773747921, 0.016678184270858765, 0.0077891298569738865, -0.0008809847058728337, -0.015757596120238304, 0.019284524023532867, 0.01327081210911274, 0.007358725182712078, -0.037779971957206726, 0.03378676995635033, 0.031730394810438156, 0.004904820583760738, 0.0028036085423082113, -0.004313013982027769, -0.0050034550949931145, -0.022094110026955605, 0.0213528573513031, -0.02945881336927414, -0.01786179654300213, -0.014848963357508183, 0.0077891298569738865, -0.025393879041075706, 0.001881526201032102, 0.03228035569190979, 0.011238345876336098, -0.001120845670811832, -0.004886887036263943, 0.007950532250106335, 0.0553787425160408, 0.011202478781342506, -0.014681583270430565, 0.010742184706032276, -0.012948009185492992, -0.012200778350234032, -0.03122825361788273, 0.01258933823555708, -0.03529318794608116, 0.011543216183781624, -0.027091586962342262, -0.004707551561295986, 0.012374135665595531, -0.021866951137781143, 0.02584819495677948, 0.00887111946940422, -0.004274158272892237, 0.03615399822592735, 0.005000466015189886, -0.007006032392382622, -0.004274158272892237, 0.026469891890883446, 0.019774707034230232, -0.015052209608256817, 0.01843567006289959, 0.026087308302521706, 0.009265657514333725, -0.011471481993794441, 0.005063233431428671, 0.0165347158908844, 0.010473181493580341, -0.013450147584080696, 0.011931776069104671, -0.004593972582370043, 0.00929554644972086, -0.003679362591356039, -0.016486892476677895, 0.014251179061830044, 0.0032549358438700438, -0.0022401968017220497, 0.015375013463199139, -0.03632137551903725, 0.01511198841035366, 0.011812218464910984, 0.014299001544713974, -0.018615005537867546, -0.02024097740650177, 0.019248656928539276, -0.009259679354727268, 0.02623077668249607, -0.03773214668035507, 0.010275913402438164, 0.016008665785193443, 0.005311314016580582, -0.01568586193025112, -0.010999231599271297, -0.003906520549207926, -0.013342546299099922, 0.026589447632431984, -0.029626192525029182, -0.0002641459577716887, -0.05093122646212578, -0.030558735132217407, -0.009056433103978634, 0.013545793481171131, -0.010664472356438637, -0.01080196350812912, 0.015040254220366478, -0.006240868475288153, 0.03990808501839638, 0.01062860619276762, -0.004731463268399239, 0.02210606448352337, -0.027641547843813896, 0.005015410482883453, 0.08043786138296127, -0.010114511474967003, 0.034982338547706604, 0.004163567908108234, 0.033021606504917145, -0.001388354110531509, 0.03758867830038071, 0.026995941996574402, 0.00866189505904913, -0.0323759987950325, -0.010574805550277233, -0.014848963357508183, 0.015721729025244713, 0.02654162421822548, -0.0010027831885963678, 0.026159042492508888, 0.04437950998544693, 0.026756826788187027, 0.004399692639708519, -0.0023403256200253963, 0.021053964272141457, -0.01976275071501732, 0.004106778651475906, 0.0004800955648534, 0.02701985277235508, 0.013988154008984566, -0.0019413046538829803, 0.042873091995716095, 0.02730678953230381, 0.009403147734701633, 0.019284524023532867, 0.002817058702930808, 0.017694417387247086, -0.006497915834188461, 0.014884830452501774, -0.03469540551304817, 0.012021442875266075, 0.007502193562686443, 0.007185367867350578, 0.009821596555411816, -0.01818460039794445, -0.02037249132990837, -0.012852363288402557, -0.002202835399657488, -0.015614126808941364, 0.034982338547706604, -0.02556125819683075, -0.01818460039794445, 0.007131567224860191, 0.006097400560975075, -0.02004968747496605, 0.015386968851089478, 0.010347646661102772, -0.009893330745398998, 0.009433036670088768, 0.030056597664952278, -0.023732038214802742, -0.01612822152674198, -0.0011701628100126982, -0.0048719425685703754, -0.020157288759946823, -0.018351979553699493, -0.0047105406410992146, 0.024449380114674568, 0.0011245817877352238, -0.005239579826593399, -0.033212900161743164, 0.004886887036263943, -0.019045408815145493, 0.00426818011328578, -0.02331358939409256, -0.030176153406500816, -0.006420203950256109, 0.004199435003101826, 0.01073620654642582, 0.014789184555411339, -0.02536996826529503, 0.04586201533675194, -0.013079521246254444, 0.032615114003419876, -0.02097027562558651, -0.021364811807870865, 0.04084062576293945, 0.008751562796533108, 0.0010535948676988482, -0.006874519865959883, -0.02039640210568905, 0.01856718212366104, -0.009229790419340134, -0.04253833368420601, 0.0035060052759945393, -0.031036963686347008, 0.0016080399509519339, 0.0013980681542307138, 0.02866973727941513, 0.014765273779630661, 0.0001560777600388974, -0.025417789816856384, -0.01774223893880844, -0.0276893712580204, -0.0023463035468012094, -0.015183722600340843, -0.04935307428240776, 0.011363880708813667, 0.023971151560544968, 0.00490183150395751, 0.01976275071501732, -0.017491169273853302, -0.0015318223740905523, -0.008022265508770943, -0.005891164764761925, 0.0027662471402436495, 0.009749862365424633, -0.02398310787975788, -0.01893780753016472, -0.0026212844531983137, 0.0017201245063915849, -0.005795519333332777, 0.005332236178219318, 0.008506471291184425, 0.0006269263103604317, 0.013426236808300018, 0.026852473616600037, 0.04029066488146782, -0.0022446801885962486, 0.022381046786904335, 0.004432571120560169, 0.031132608652114868, 0.013904464431107044, 0.008482559584081173, -0.005520538426935673, -0.004304047208279371, -0.00455511687323451, -0.002295491984114051, -0.0001864340010797605, 0.01849544793367386, 0.0031413568649441004, 0.0055593946017324924, 0.01830415613949299, -0.012756718322634697, 0.008847208693623543, 0.0344562903046608, -0.012141000479459763, -0.009092300198972225, -0.014334868639707565, -0.005950943101197481, -0.025393879041075706, -0.02208215370774269, -0.03890380635857582, 0.008291268721222878, 0.03483887016773224, 0.02156805992126465, -0.02965010330080986, 0.028861029073596, 0.00037996668834239244, -0.02185499668121338, 0.02446133643388748, -0.0193562563508749, -0.012445869855582714, -0.036823514848947525, -0.0056371064856648445, 0.006701162550598383, -0.029124053195118904, -0.001296444796025753, -0.02761763706803322, 0.01893780753016472, -0.02544170245528221, 0.0003201882354915142, 0.02091049589216709, -0.004067922476679087, 0.013545793481171131, -0.020994186401367188, 0.0330694317817688, 0.029387079179286957, -0.01964319311082363, -0.010305802337825298, -0.01802917569875717, 0.012744762003421783, -0.03550839051604271, 0.01026395708322525, 0.0005447309813462198, -0.008972743526101112, -0.015183722600340843, 0.034193266183137894, 0.02334945648908615, 0.004453493282198906, 0.02603948675096035, -0.02116156555712223, 0.014741362072527409, -0.01140572503209114, 0.032734669744968414, -0.019977953284978867, -0.0023717093281447887, -0.003431282239034772, 0.00887111946940422, -0.002769235987216234, -0.014860918745398521, 0.012888230383396149, -0.016176044940948486, -0.04280135780572891, -0.01170461717993021, -0.00026657446869648993, 0.004480393603444099, -0.01545870304107666, -0.006450093351304531, -0.002743830205872655, 0.011220412328839302, -0.019272567704319954, -0.013151255436241627, 0.014538115821778774, 0.008512449450790882, 0.001593095250427723, 0.03842557966709137, -0.022129977121949196, 0.011620927602052689, -0.03727783262729645, -0.010568827390670776, -0.007412525825202465, 0.010257979854941368, -0.029913129284977913, -0.018794339150190353, -0.019750794395804405, 0.01951168105006218, -0.00038034029421396554, -0.01720423437654972, -3.9509810449089855e-05, 0.025632992386817932, 0.024114619940519333, 0.016331467777490616, 0.011812218464910984, 0.010921520181000233, -0.01960732601583004, 0.021878907456994057, 0.01233826857060194, -0.0478227473795414, -0.027641547843813896, -0.02242886833846569, -0.006844630930572748, 0.018579138442873955, 0.010287868790328503, 0.004324969835579395, 0.008093999698758125, 0.008554293774068356, 0.009725951589643955, 0.0006411237409338355, -0.0168814305216074, -0.01143561489880085, -0.01786179654300213, -0.017120543867349625, -0.03742130100727081, -0.0016259733820334077, -0.0058762202970683575, -0.018650872632861137, -0.012744762003421783, 0.013653394766151905, 0.0001302983146160841, 0.0069223428145051, -0.011794284917414188, 0.003237002296373248, -0.014765273779630661, 0.023923330008983612, -0.038664691150188446, 0.031060874462127686, 0.006342492066323757, -0.0024778160732239485, 0.020097509026527405, -0.015924975275993347, -0.0012702917447313666, -0.007017988245934248, 0.032997697591781616, -0.043542612344026566, 0.008219534531235695, 0.0016349401557818055, -0.032543379813432693, 0.029865305870771408, -0.02214193157851696, -0.024210266768932343, 0.015351101756095886, 0.0009377741953358054, -0.005956921260803938, 0.002325381152331829, 0.006106367334723473, -0.007017988245934248, -0.013378413394093513, -0.032423824071884155, -0.014801140874624252, 0.005308324936777353, 0.022763628512620926, 0.0026616347022354603, -0.002232724567875266, -0.038760337978601456, 0.0157097727060318, -0.02156805992126465, -0.04289700463414192, 0.02742634527385235, -0.0026930184103548527, -0.007705440279096365, -2.7460719138616696e-05, 0.002146045910194516, 0.012983876280486584, 0.0032160799019038677, -0.025632992386817932, 0.02262016013264656, 0.034767135977745056, -0.012254578992724419, 0.045598991215229034, 0.03225644305348396, 0.0070120105519890785, -0.053226716816425323, -0.018794339150190353, -0.040242843329906464, 0.021400678902864456, -0.0013435203582048416, 0.008434737101197243, -0.01414357777684927, -0.0016737962141633034, -0.014012064784765244, -0.00841082539409399, 0.028502358123660088, 0.02166370488703251, -0.020061641931533813, 0.018901940435171127, -0.04378172755241394, -0.025919929146766663, 0.054470110684633255, -0.02394724078476429, -0.024449380114674568, -0.015339146368205547, -0.03668004646897316, -0.006372381001710892, 0.0037062629126012325, -0.03361939266324043, 0.03383459523320198, -0.029482724145054817, 0.019332345575094223, -0.013294723816215992, 0.014299001544713974, -0.01663036085665226, -0.005167845636606216, -0.02869364805519581, -0.01148343738168478, 0.053800590336322784, -0.04177317023277283, -0.0017888696165755391, 0.01966710574924946, 0.0198344849050045, -0.023492924869060516, -0.00933141354471445, 0.0035717615392059088, 0.03656049072742462, 0.0032728693913668394, -0.00929554644972086, 0.0011253290576860309, -0.040338486433029175, -0.028526268899440765, -0.0126730278134346, -0.002929143374785781, 0.0031742348801344633, 0.026876384392380714, 0.016462981700897217, -0.008416803553700447, -0.0022641082759946585, -0.003523938823491335, 0.017491169273853302, -0.002150529297068715, 0.03849731385707855, -0.025226499885320663, -0.008123889565467834, 0.018100909888744354, 0.049018315970897675, 0.013414280489087105, 0.0037839750293642282, -0.021902818232774734, -0.011393769644200802, 0.05375276878476143, -0.020695293322205544, 0.01682165078818798, 0.022476691752672195, 0.007071788888424635, 0.023803772404789925, 0.010742184706032276, -0.033499833196401596, 0.026015574112534523, -0.008291268721222878, 0.02917187660932541, -0.006342492066323757, 0.003494049422442913, -0.01774223893880844, 0.002657151548191905], [-0.017015237361192703, 0.0018422356806695461, 0.05994272232055664, 0.012873525731265545, -0.03334609046578407, -0.00581137603148818, -0.0018658351618796587, 0.025770651176571846, 0.04080352932214737, 0.04885095730423927, -0.004519303794950247, 0.01238973531872034, 0.013734906911849976, 0.011664051562547684, -0.055175624787807465, -0.009528296999633312, -0.03216611221432686, 0.027635009959340096, 0.04318707808852196, 0.015268874354660511, -0.0044544050469994545, 0.03808958828449249, -0.035375647246837616, 0.03370008245110512, -0.0026342938654124737, 0.027941804379224777, -0.023977087810635567, -0.03938756138086319, 0.05597800761461258, -0.028272196650505066, -0.0050856913439929485, -0.013015122152864933, 0.031599726527929306, 0.016885438933968544, 0.05040852352976799, 0.006159468553960323, -0.028460992500185966, 0.005843825172632933, 0.0010155158815905452, -0.010259881615638733, -0.024378279224038124, 0.0672585666179657, -0.022395921871066093, -0.08665735274553299, -0.07027930021286011, 0.03643762320280075, 0.046207815408706665, -0.042998284101486206, -0.0017139133997261524, 0.029758965596556664, -0.05843235179781914, 0.05206048861145973, 0.005770076997578144, 0.027257418259978294, 0.013793906196951866, 0.032638102769851685, -0.01702703721821308, 0.030372552573680878, 0.03126933425664902, -0.020130369812250137, 0.038585178554058075, 0.00608277041465044, 0.03561164066195488, 0.041841909289360046, -0.03900996968150139, -0.031812120229005814, -0.007498740218579769, 0.037310805171728134, -0.022974109277129173, -0.018561003729701042, 0.08642135560512543, 0.06376583874225616, -0.01644884981215, -0.004000114742666483, -0.00758723821491003, 0.006306965369731188, 0.02011856995522976, 0.019681980833411217, 0.009044507518410683, 0.021664338186383247, -0.03400687500834465, -0.0036343224346637726, -0.014714285731315613, -0.01760522462427616, 0.030207356438040733, -0.0026652682572603226, -0.06268025934696198, 0.007776034064590931, -0.02408328652381897, -0.04571222513914108, 0.012059343047440052, 0.0721200630068779, 0.008141825906932354, 0.053004469722509384, 0.01627185381948948, -0.003858517622575164, 0.028767786920070648, -0.012566732242703438, -0.03934036195278168, 0.04219590127468109, 0.006489861756563187, -0.027776608243584633, -0.0017360380152240396, -0.011728949844837189, 0.0379243902862072, -0.04752938449382782, -0.018667202442884445, 0.01813621260225773, -0.0035546740982681513, -0.0070385499857366085, -0.010383778251707554, -0.010395578108727932, -0.04004834592342377, 0.029357774183154106, 0.01255493238568306, -0.00265051843598485, -0.02043716423213482, -0.03690961375832558, -0.002603319473564625, -0.031670525670051575, 0.032638102769851685, 0.015056478790938854, -0.009728892706334591, -0.04965334013104439, -0.006088670343160629, 0.006448562256991863, -0.04292748495936394, -0.011310058645904064, -0.02855539135634899, -0.010259881615638733, 0.015858862549066544, -0.09199083596467972, 0.04594821855425835, -0.009787891060113907, -0.012436934746801853, -0.02990056201815605, 0.0007393279811367393, 0.004360007122159004, -0.02780020795762539, -0.006950051989406347, -0.0008127076434902847, -0.0014417817583307624, 0.03837278112769127, -0.021888533607125282, -0.057299576699733734, 0.01576446369290352, -0.034242868423461914, 0.03601283207535744, 0.03964715451002121, -0.0003149057738482952, -0.008584316819906235, 0.015622866339981556, 0.02088555507361889, -0.036154430359601974, -0.008413220755755901, 0.1005338579416275, 0.03388887643814087, 0.0008466319413855672, -0.01133365835994482, 0.03591843321919441, -0.037310805171728134, -0.06258586794137955, 0.005542931612581015, 0.006666857749223709, 0.0011821872321888804, -0.027682209387421608, -0.027753008529543877, 0.012684729881584644, -0.046797800809144974, 0.018348608165979385, -0.005191889125853777, -0.004655000753700733, 0.00778193399310112, 0.004938194528222084, -0.006153568625450134, -0.03277970105409622, -0.013097720220685005, 0.06220827251672745, -0.0021446042228490114, 0.005306936800479889, -0.02267911657691002, -0.021215947344899178, 0.014513690024614334, -0.029428571462631226, 0.004655000753700733, 0.030655745416879654, 0.015481269918382168, -0.014265895821154118, -0.026242639869451523, 0.01702703721821308, 0.02011856995522976, -0.0163426510989666, -0.00739844236522913, 0.03277970105409622, -0.00140564504545182, -0.03360568359494209, -0.03126933425664902, -0.015917859971523285, 0.018419407308101654, -0.019563982263207436, -0.037240006029605865, -0.053712453693151474, -0.004814297426491976, 0.04899255558848381, -0.01319211907684803, -0.005463283509016037, -0.014726085588335991, 0.0008355696918442845, 0.039033565670251846, 0.015658266842365265, 0.0046343510039150715, -0.023788291960954666, -0.02600664459168911, 0.0015752663603052497, -0.002594469580799341, 0.03985954821109772, 0.030986139550805092, 0.03011295758187771, -0.022053729742765427, -0.010377878323197365, -0.030584948137402534, 0.033794477581977844, 0.039552755653858185, -0.010130084119737148, 0.015103678219020367, 0.04118112102150917, 0.03735800459980965, -0.006826154422014952, 0.004056163597851992, -0.046727001667022705, -0.03582403436303139, 0.02221892587840557, 0.060178715735673904, -0.04738778993487358, -0.007304043974727392, 0.032307710498571396, -0.0012308612931519747, -0.028201399371027946, 0.010112384334206581, -0.01741642877459526, -0.001976457890123129, -0.019162790849804878, -0.02298590913414955, 0.004121061880141497, -0.04075632989406586, 0.007203746121376753, -0.016566846519708633, -0.013546111062169075, 0.03438446670770645, 0.013876504264771938, -0.0015590417897328734, 0.016885438933968544, 0.026431435719132423, -0.056969184428453445, 0.01754622533917427, 0.02978256531059742, 0.06513460725545883, -0.01882059872150421, 0.06740016490221024, 0.028791386634111404, 0.009528296999633312, -0.021251346915960312, -0.04540543258190155, -0.004478004295378923, -0.0747160091996193, -0.041605912148952484, -0.007740634959191084, -0.009032707661390305, -0.06938251852989197, 0.01926898956298828, -0.07976629585027695, 0.025204261764883995, 0.04760018363595009, 0.006165368482470512, -0.04061473533511162, -0.025157064199447632, 0.011062264442443848, 0.0020059572998434305, 0.036862414330244064, 0.02069675922393799, -0.06013151630759239, -0.0008650690433569252, 0.03169412538409233, 0.026879826560616493, 0.008908810093998909, -0.012484134174883366, -0.00222572754137218, 0.017145033925771713, 0.005932323634624481, 0.08425020426511765, 0.07207286357879639, -0.0060326214879751205, -0.026620231568813324, 0.019563982263207436, -0.010165482759475708, -0.008478119038045406, -0.00899730809032917, 0.01405350025743246, -0.012613930739462376, -0.013463512994349003, 0.0010125659173354506, 0.004059113562107086, -0.03693321347236633, -0.009203803725540638, -0.05092771351337433, 0.03244930878281593, 0.006224367301911116, 0.034927256405353546, 0.010395578108727932, -0.039104364812374115, -0.027776608243584633, -0.037806395441293716, -0.01479688473045826, 0.01601225882768631, -0.013121319934725761, -0.004601901862770319, -5.876827708561905e-05, 0.05092771351337433, 0.041794709861278534, -0.010590273886919022, 0.03606003150343895, -0.006460362114012241, 0.01889139786362648, 0.03742880001664162, -0.0009845414897426963, 0.005047342274338007, 0.03535204753279686, 0.044414252042770386, -0.010318879969418049, -0.01508007850497961, -0.006253866478800774, 0.0048644463531672955, 0.037499599158763885, 0.02146374247968197, -0.04257349297404289, -0.012377936393022537, -0.016602246090769768, 0.01920999027788639, -0.046656206250190735, 0.014431091956794262, 0.01069647166877985, -0.012956123799085617, 0.023788291960954666, 0.004973594099283218, -0.010991465300321579, 0.039293162524700165, 0.008607916533946991, 0.04266788810491562, 0.03202451765537262, 0.03879757225513458, -0.009351300075650215, 0.015504869632422924, 0.01683824136853218, -0.04380066692829132, -0.04660900682210922, 0.009015007875859737, 0.004513403866440058, 0.01332191564142704, -0.0006873353268019855, 0.03577683866024017, -0.01780582033097744, -0.016507847234606743, 0.02855539135634899, 0.01229533739387989, 0.031245732679963112, -0.033912476152181625, -0.023162905126810074, -0.05003093183040619, 0.015410471707582474, -0.017215833067893982, -0.010720071382820606, 0.014560889452695847, 0.006354164332151413, -0.007404342293739319, 0.026337038725614548, 0.04252629354596138, 0.024307481944561005, 0.025794249027967453, 0.029027380049228668, 0.04413105919957161, 0.04656180739402771, 0.0016372150275856256, 0.015032879076898098, 0.002122479723766446, 0.03672081604599953, 0.046089816838502884, -0.022950509563088417, -0.008059227839112282, -0.014431091956794262, 0.013970902189612389, -0.030514148995280266, -0.03259090334177017, 0.02343429997563362, 0.0076344371773302555, -0.010472276248037815, -0.0047847977839410305, -0.004056163597851992, 0.04417825862765312, -0.028744187206029892, -0.011009165085852146, -0.03318089246749878, -0.05361805483698845, 0.009398499503731728, 0.013982702046632767, 0.011882346123456955, -0.007233245763927698, 0.004657950717955828, 0.0016622894909232855, 0.05885714292526245, 0.00832472275942564, 0.04188910499215126, -0.00646626204252243, 0.02959376946091652, 0.0025605454575270414, -0.023776492103934288, 0.01595325954258442, -0.010631573386490345, 0.02159353904426098, 0.020897354930639267, -0.058762747794389725, 0.01722763292491436, 0.038065988570451736, -0.008991408161818981, 0.029381373897194862, -0.032118916511535645, 0.011740749701857567, -0.025157064199447632, -0.005932323634624481, 0.021853134036064148, -0.048709362745285034, -0.027446214109659195, -0.015622866339981556, 0.013746706768870354, 0.04866216331720352, -0.06697537004947662, -0.006301065441220999, 0.002271451521664858, -0.03773559629917145, 0.0064721619710326195, 0.002193278167396784, -0.05135250464081764, -0.0014078575186431408, 0.005360035691410303, -0.017510825768113136, -0.03386527672410011, -0.03086814098060131, -0.019434185698628426, -0.0064721619710326195, 0.035446442663669586, -0.00021350169845391065, -0.004165311343967915, -0.04129911959171295, -0.0092923017218709, 0.0215817391872406, -0.035635240375995636, -0.024567075073719025, 0.013085921294987202, 0.007144747767597437, 0.017758620902895927, -0.0006375551456585526, -0.01556386798620224, 0.05437324196100235, 0.0011733374558389187, 0.05862114951014519, 0.03808958828449249, 0.08240944147109985, -0.04686859995126724, 0.04087432846426964, 0.014242296107113361, -0.048709362745285034, -0.005174189805984497, -0.020059572532773018, 9.928381768986583e-05, 0.02451987750828266, -0.040189944207668304, -0.036343224346637726, 0.04177111014723778, -0.017817620187997818, -0.05640279874205589, 0.012613930739462376, -0.01386470440775156, -0.02107435092329979, -0.03209531679749489, -0.01479688473045826, 0.06348264962434769, -0.024354681372642517, 0.030773743987083435, 0.02061416022479534, -0.03834918141365051, -0.02940497361123562, -0.06971291452646255, 0.035399243235588074, 0.02921617589890957, -0.010832169093191624, -0.005834975745528936, -0.005764177069067955, 0.036602817475795746, 0.03860877826809883, 0.013758506625890732, -0.0008289323304779828, -0.019257189705967903, -0.009256902150809765, 0.0057317279279232025, 0.04899255558848381, 0.07745354622602463, 0.04174751043319702, -0.03075014427304268, 0.013900103978812695, 0.03178852051496506, -0.05522282049059868, -0.028083400800824165, 0.022950509563088417, -0.014313094317913055, 0.01341631356626749, -0.021345743909478188, -0.002407148713245988, 0.034998051822185516, 0.005451483651995659, -0.03690961375832558, 0.008153625763952732, 0.043328676372766495, -0.025959447026252747, -0.006914652418345213, -0.011864647269248962, 0.020083172246813774, 0.018395807594060898, -0.013982702046632767, -0.062349870800971985, -0.01050177589058876, 0.018266011029481888, -0.0349508561193943, -0.031410928815603256, -0.018348608165979385, 0.032567303627729416, -0.00265051843598485, 0.019068393856287003, 0.0057907262817025185, 0.0341956689953804, -0.024991866201162338, -0.03773559629917145, 0.04731699079275131, -0.0025487456005066633, 0.006926452275365591, -0.0489453561604023, 0.007610837463289499, 0.008737714029848576, -0.007722935173660517, 0.0032567305024713278, 0.0070385499857366085, 4.2059647967107594e-05, -0.03657922148704529, -0.006696357391774654, 0.009392599575221539, 0.0044839042238891125, -0.01085576880723238, 0.014136098325252533, 0.03976515308022499, -0.03808958828449249, 0.025463856756687164, -0.01576446369290352, -0.0012279113288968801, -0.015268874354660511, -0.024803070351481438, 0.002349624875932932, -0.02253752015531063, 0.03030175343155861, 0.018596403300762177, -0.01502107921987772, 0.04136991873383522, -0.03431366756558418, -0.04965334013104439, -0.0036608718801289797, -0.02440187893807888, -0.04221950098872185, 0.048190172761678696, 0.02081475593149662, 0.010277580469846725, -0.021086150780320168, -0.0017758620670065284, 0.04734059050679207, 0.005513432435691357, 0.014808684587478638, 0.029829762876033783, -0.004070912953466177, 0.00675535574555397, 0.024755872786045074, -0.0006688982248306274, -0.015351472422480583, 0.02208912931382656, 0.02016576938331127, 0.016437049955129623, 0.04417825862765312, -0.0012994472635909915, -0.029192578047513962, 0.002656418364495039, 0.05550601705908775, -0.04233749583363533, 0.035068850964307785, -0.003144633024930954, 0.023233704268932343, -0.00967579334974289, 0.01965838111937046, -0.009121205657720566, -0.0057907262817025185, -0.017723221331834793, 0.004354107193648815, -0.01508007850497961, -0.019611181691288948, 0.0031416830606758595, 0.02210092917084694, 0.004781847819685936, -0.025723451748490334, 0.022266125306487083, -0.016885438933968544, -0.004952944349497557, 0.00832472275942564, -0.06485141813755035, -0.014490091241896152, -0.03464405983686447, 0.023009508848190308, -0.011492954567074776, 0.0005284074577502906, -0.01780582033097744, -0.024047886952757835, -0.02299770899116993, 0.005891024135053158, 0.011746649630367756, -0.04238469526171684, -0.04033153876662254, -0.03728720545768738, -0.033062893897295, 0.03598923236131668, 0.0036844713613390923, -0.0019218840170651674, -0.015717264264822006, -0.020649559795856476, 0.010619773529469967, 0.03535204753279686, 0.0017212883103638887, 0.027115821838378906, 0.04427265748381615, -0.025015465915203094, 0.01595325954258442, -0.02690342627465725, 0.059848323464393616, 0.05527001991868019, 0.05918753892183304, 0.02971176616847515, 0.03785359114408493, -0.0012876475229859352, 0.01095606666058302, -0.016625845804810524, -0.005008993204683065, -0.01620105467736721, 0.0021755786146968603, -0.029876962304115295, -0.03773559629917145, 0.012519532814621925, -0.01985897682607174, 0.01118026115000248, -0.007569538429379463, 0.035517241805791855, 0.009498797357082367, -0.03207171708345413, -0.011357258073985577, 0.034478865563869476, 0.007829133421182632, -0.007062149234116077, -0.011699450202286243, 0.0019690829794853926, -0.055364418774843216, 0.02581784874200821, 0.01871440000832081, -0.013251117430627346, 0.0031151336152106524, 0.00864921510219574, -0.008124127052724361, 0.026691030710935593, -0.004947044420987368, -0.003548774402588606, 0.0034514262806624174, -0.001061239861883223, -0.025959447026252747, 0.025204261764883995, -0.0029278125148266554, -0.01595325954258442, 0.01415969803929329, -0.026809027418494225, -0.0070385499857366085, -0.01774682104587555, 0.02204192988574505, 0.02330450341105461, 0.02030736766755581, 0.017145033925771713, -0.04847336560487747, -0.0011777624022215605, -0.006902852561324835, -0.011487054638564587, 0.005256787873804569, -0.008029729127883911, 0.012861725874245167, 0.008318822830915451, 0.0014152323128655553, -0.07561279088258743, -0.0034042273182421923, 0.01358151063323021, 0.01909199357032776, 0.009911788627505302, -0.001424082089215517, 0.02836659550666809, -0.012377936393022537, -0.0005107078468427062, -0.026596631854772568, -0.028224997222423553, -0.03466765955090523, 0.0029071629978716373, -0.03676801547408104, 0.024685073643922806, 0.005994271952658892, 0.0021519791334867477, -0.03875037282705307, 0.026030244305729866, 0.02249032072722912, -0.02191213332116604, 0.019434185698628426, -0.017274832352995872, 0.026502234861254692, -0.05970672518014908, -0.03336968645453453, 0.007463340647518635, -0.023269103839993477, -0.005454433616250753, -0.005619630217552185, -0.001040590344928205, -0.017463628202676773, 0.031930118799209595, -0.06744736433029175, 0.003191831987351179, -0.0030384352430701256, 0.0007669836631976068, -0.013829304836690426, -0.004752348642796278, 0.01909199357032776, -0.050125330686569214, -0.02990056201815605, -0.010938366875052452, -0.035068850964307785, 0.011658151634037495, -0.02338710054755211, -0.0067376564256846905, 0.022266125306487083, 0.007457440719008446, 0.00034551139106042683, -0.014584489166736603, 0.009056306444108486, -0.004952944349497557, 0.02191213332116604, -0.03502165153622627, 0.015906060114502907, 0.03400687500834465, 0.01685004122555256, 0.023092107847332954, 0.006944152060896158, 0.02664383128285408, 0.03931676223874092, -0.0001410438708262518, -0.04158231243491173, 0.007734735030680895, -0.002781790681183338, 0.0431634783744812, -0.015929659828543663, -0.01819521188735962, 0.00870821438729763, -0.007469240576028824, 0.03771199658513069, -0.018041815608739853, -0.025794249027967453, 0.0026342938654124737, -0.012023943476378918, -0.005778926890343428, 0.00501194316893816, -0.0007002413040027022, -0.029168978333473206, 0.0033275289461016655, 0.01928078942000866, -0.02146374247968197, 0.009858689270913601, 0.022525720298290253, 0.045122236013412476, 0.009935388341546059, 0.0048644463531672955, -0.022844312712550163, 0.01031298004090786, -0.019257189705967903, -0.028744187206029892, -0.009062206372618675, -0.0010295280953869224, -0.04330507665872574, -0.023422500118613243, 0.019481385126709938, 0.03650842234492302, 0.0014771809801459312, 0.022690916433930397, 0.01328651700168848, 0.035399243235588074, -0.023233704268932343, -0.026596631854772568, -0.017086034640669823, 0.060745105147361755, -0.044154658913612366, -0.034998051822185516, 0.02754061296582222, -0.00944569893181324, 0.010773169808089733, 0.020413564518094063, -0.033204492181539536, -0.017239432781934738, 0.05168289691209793, -0.014667087234556675, -0.02652583457529545, 0.03329889103770256, -0.0163426510989666, -0.02407148666679859, -0.0009970787214115262, 0.01729843020439148, -0.004265609197318554, -0.002100355224683881, -0.010843968950212002, -0.026950625702738762, 0.008938309736549854, 0.029806165024638176, 0.013085921294987202, 0.03336968645453453, 0.007404342293739319, -0.015622866339981556, -0.007079849019646645, -0.01657864637672901, -0.0016475399024784565, -0.002957311924546957, -0.018679002299904823, 0.016755642369389534, 0.011292358860373497, 0.00835422147065401, -0.004492754116654396, -0.04552342742681503, 0.004613701719790697, 0.0038172185886651278, -0.008961908519268036, -0.027375416830182076, 0.016059458255767822, 0.018785199150443077, -0.01113896258175373, 0.035399243235588074, -0.025723451748490334, 0.057535573840141296, -0.0007662461721338332, -0.007799633778631687, -0.002623968990519643, -0.027328217402100563, 0.005820225924253464, 0.008543017320334911, -0.004831996746361256, -0.0083601213991642, 0.04040233790874481, -0.004534053150564432, -0.0001690682693151757, 0.004215460270643234, 0.018879598006606102, 0.0032449308782815933, -0.005138790234923363, 0.004091562703251839, -0.023481499403715134, 0.020330965518951416, -0.02459067478775978, -0.03990674763917923, -0.011870547197759151, 0.021227747201919556, 0.020094972103834152, -0.003212481504306197, 0.024944668635725975, -0.0007367467624135315, -0.0032036316115409136, 0.004976544063538313, 0.015209876000881195, -0.02204192988574505, 0.001382783055305481, -0.01444289181381464, 0.03367648273706436, -0.0007655086810700595, -0.008867510594427586, 0.028130600228905678, 0.052296485751867294, 0.03485645726323128, -0.005100441165268421, -0.019032994285225868, 0.004572402685880661, 0.01978817768394947, 0.0003609985578805208, -0.03591843321919441, 0.013074121437966824, -0.04339947551488876, 0.025062665343284607, -0.017463628202676773, 0.004994243383407593, -0.021558139473199844, 0.004879195708781481, 0.005649129394441843, 0.02074395678937435, 0.028224997222423553, -0.00855481717735529, -0.0022345774341374636, -0.021416543051600456, -0.015198076143860817, -0.02305670827627182, 0.027587812393903732, 0.0040738629177212715, -0.018030015751719475, 0.009604995138943195, 0.010973765514791012, 0.01692083850502968, 0.01613025553524494, 0.041865505278110504, -0.02824859693646431, 0.023481499403715134, -0.004097462631762028, 0.00539543479681015, -0.03580043464899063, 0.021534539759159088, -0.011705350130796432, -0.005976572632789612, 0.016484247520565987, 0.02451987750828266, -0.0004266346513759345, 0.04861496388912201, 0.028862183913588524, -0.0053098867647349834, 0.024095086380839348, -0.002831939607858658, 0.002874713623896241, -0.04677420109510422, 0.0012522483011707664, -0.04606621712446213, -0.003575323848053813, -0.027753008529543877, -0.03067934513092041, -0.004380656406283379, -0.0001493405579822138, 0.01608305610716343, 0.004395406227558851, 0.03459686040878296, -0.016755642369389534, -0.013015122152864933, 0.03348768502473831, -0.03752319887280464, -0.020507963374257088, 0.03804238885641098, 0.04566502571105957, -0.0022242525592446327, 0.00305023486725986, 0.013935502618551254, 0.018726199865341187, 0.021404743194580078, 0.025794249027967453, -0.022372322157025337, 0.04767098277807236, -0.0028629139997065067, -0.01274372823536396, 0.01021858211606741, 0.018360408022999763, 0.02657303400337696, -0.013333715498447418, 0.02338710054755211, 0.0646626204252243, 0.03152892738580704, -0.00010158845543628559, -0.013522511348128319, -0.0059411730617284775, -0.0317649208009243, 0.052107688039541245, 0.007557738572359085, -0.002821614732965827, 0.03606003150343895, 0.02375289425253868, 0.022006530314683914, 0.0029750114772468805, 0.019717378541827202, -0.010283480398356915, 0.025983044877648354, -0.01780582033097744, 0.0326853021979332, 0.01511547714471817, -0.03811318799853325, 0.01997697353363037, 0.00983509048819542, -0.009416199289262295, 0.017050636932253838, 0.025983044877648354, -0.011445756070315838, 0.023623095825314522, -0.007433841470628977, 0.04988933727145195, 0.020472563803195953, -0.010743671096861362, 0.020507963374257088, -0.013487112708389759, -0.03849077969789505, 0.017310230061411858, -0.0005250888061709702, -0.0005118140834383667, 0.0027198418974876404, 0.039175163954496384, 0.02676182985305786, 0.04021354392170906, 0.010348379611968994, -0.03938756138086319, -0.01857280358672142, 0.015268874354660511, -0.012177340686321259, -0.016035858541727066, 0.009156604297459126, 0.02709222212433815, 0.0006312865298241377, -0.00026088504819199443, -0.01569366455078125, 0.005814325995743275, -0.02746981382369995, 0.04514583572745323, 0.0345732644200325, 0.036791615188121796, 0.017204033210873604, -0.006112269591540098, -0.001983832800760865, 0.029050979763269424, 0.06083950400352478, 0.013487112708389759, 0.03657922148704529, -0.012802726589143276, -0.001491930685006082, 0.011439856141805649, -0.02171153761446476, -0.0061830682680010796, -0.0050502922385931015, -0.02612464316189289, -0.004295108374208212, 0.007776034064590931, 0.004923445172607899, 0.00947519764304161, 0.028036201372742653, -0.0032862299121916294, 0.024991866201162338, 0.003631372470408678, 0.008307022973895073, -0.018018215894699097, 0.008814412169158459, -0.007156547158956528, -0.023847291246056557, -0.0048644463531672955, -0.009463397786021233, 0.0044603049755096436, 0.00928640179336071, 0.035139650106430054, -0.03804238885641098, -0.027210218831896782, -0.004486854188144207, 0.006749455817043781, -0.042809486389160156, -0.03761759772896767, 0.012625730596482754, -0.0033806278370320797, 0.03145812824368477, -0.01729843020439148, 0.007304043974727392, 0.00209003034979105, 0.0014889807207509875, 0.012484134174883366, -0.00610046973451972, -0.027941804379224777, -0.015776263549923897, 0.006106369663029909, 0.03202451765537262, -0.005507532507181168, 0.015504869632422924, 0.02657303400337696, -0.01117436122149229, -0.03863237425684929, 0.0005402072565630078, -0.010926567018032074, 0.00986458919942379, 0.0024646723177284002, 0.0031298832036554813, 0.017510825768113136, 0.022761713713407516, -0.03388887643814087, 0.028602590784430504, -0.02228972502052784, -0.021239547058939934, -0.003858517622575164, 0.013616909272968769, 0.013498911634087563, 0.004250859376043081, -0.003542874474078417, 0.019516782835125923, 0.010861668735742569, 0.008956008590757847, 0.004852646496146917, -0.011392656713724136, -0.026879826560616493, -0.013664108701050282, -0.023457899689674377, 0.019233589991927147, 0.008059227839112282, -0.011947245337069035, 0.024755872786045074, -0.014230496250092983, -0.0094810975715518, -0.017404628917574883, 0.009581395424902439, -0.015835262835025787, 0.016024058684706688, 0.0010671397903934121, 0.006997250951826572, -0.012956123799085617, -0.02626623958349228, -0.0015081553719937801, -0.00432460755109787, 0.013605109415948391, 0.01470248680561781, 0.0007223658612929285, -0.004941144492477179, -0.0003919728915207088, -0.030089357867836952, -0.03547004237771034, 0.0014727560337632895, -0.013168519362807274, 0.022254325449466705, 0.02036636509001255, 0.04552342742681503, 0.001592966029420495, 0.032496508210897446, 0.03908076509833336, -0.015504869632422924, 0.06102829799056053, 0.01489128265529871, 0.009197903797030449, -0.006489861756563187, -0.029924161732196808, 0.008684614673256874, 0.07037369906902313, -0.01274372823536396, -0.007091648876667023, 0.00938079971820116, 0.06098109856247902, 0.0037021711468696594, 0.04410745948553085, 0.0016357401618734002, 0.0186908021569252, -0.039222363382577896, -0.008242123760282993, 0.013628709129989147, -0.009427999146282673, 0.014973880723118782, -0.0169090386480093, 0.010961966589093208, 0.026856226846575737, 0.014136098325252533, 0.025086265057325363, -0.019422385841608047, 0.012519532814621925, -0.017204033210873604, 0.011569653637707233, -0.00964039471000433, 0.02492106892168522, -0.023398900404572487, -0.022372322157025337, 0.012507732957601547, 0.00842502061277628, 0.02477947063744068, 0.012731928378343582, -0.0034632261376827955, -0.030325353145599365, -0.010242181830108166, 0.013841104693710804, -0.038514379411935806, -0.037759196013212204, 0.03023095428943634, -0.01210654154419899, 0.0047257994301617146, 0.015646466985344887, -0.0058821747079491615, -0.009522397071123123, -0.038325581699609756, -0.004758248571306467, 0.015434070490300655, -0.024236682802438736, 0.007899931631982327, 0.0024366481229662895, 0.0017979866825044155, 0.002615119330585003, 0.009398499503731728, 0.014277695678174496, -0.015835262835025787, -0.012731928378343582, 0.006383663974702358, 0.01582346297800541, 0.01922179013490677, 0.010189082473516464, 0.02735181711614132, -0.03197731822729111, -0.005655029322952032, -0.011693550273776054, 0.018148012459278107, 0.00629516551271081, 0.01216554082930088, -0.02074395678937435, 0.008720014244318008, -0.02966456674039364, -0.023009508848190308, 0.004949994385242462, -0.021381143480539322, 0.016283651813864708, 0.0362488254904747, 0.00637186411768198, 0.004203660413622856, -0.012897124513983727, 0.00813592690974474, -0.021180547773838043, -0.00024576662690378726, -0.028224997222423553, -0.02985336259007454, 0.043517470359802246, 0.005873324815183878, -0.02428388223052025, -0.0004974331241101027, 0.003324578981846571, 0.02652583457529545, 0.016307251527905464, 0.03681521490216255, -0.0014314569998532534, -0.01546947006136179, -0.0036077729891985655, -0.02119234763085842, 0.02421308308839798, -0.012779127806425095, -0.008584316819906235, -0.004938194528222084, -0.005126990843564272, -0.0011372007429599762, -0.016283651813864708, -0.01453728973865509, -0.0358712337911129, 0.017086034640669823, 0.020201168954372406, -0.011728949844837189, 0.014773285016417503, 0.014714285731315613, -0.008489918895065784, -0.045759424567222595, -0.021109750494360924, -0.008572516962885857, -7.07063009031117e-05, -0.006070970557630062, -0.00600607180967927, -0.030915340408682823, 0.018419407308101654, -0.006714056711643934, 0.0041594114154577255, 0.019257189705967903, 0.048520565032958984, -0.020826555788517, -0.006318765226751566, 0.00035933920298703015, 0.02626623958349228, -0.014643487520515919, 0.02169973775744438, 0.005271537695080042, 0.025062665343284607, -0.006519360933452845, 0.003958815708756447, -0.007020850200206041, -0.001222011400386691, 0.009168404154479504, -0.03745239973068237, 0.022938711568713188, -0.01322751771658659, 0.018266011029481888, 0.025463856756687164, 0.029475770890712738, 0.012271738611161709, 0.04554702714085579, -0.018277810886502266, -0.03197731822729111, -0.003062034724280238, 0.0007559213554486632, -0.011646351777017117, 0.006141768768429756, -0.01143395621329546, 0.021381143480539322, -0.0012765852734446526, -0.01692083850502968, 0.007905831560492516, 0.03898636996746063, -0.002365849446505308, -0.03582403436303139, 0.00515649002045393, -0.00675535574555397, 0.002159354044124484, -0.015009280294179916, -0.008525318466126919, -0.014147898182272911, -0.009722992777824402, 0.007581338286399841, -0.03733440488576889, 0.018348608165979385, -0.015516669489443302, 0.01939878612756729, 0.012779127806425095, -0.020389964804053307, 0.031363729387521744, -0.007964829914271832, 0.01293252408504486, 0.0058821747079491615, -0.019717378541827202, -0.022903311997652054, -0.0008370446739718318, 0.0041181123815476894, -0.03164692595601082, 0.02011856995522976, 0.012436934746801853, 0.027682209387421608, -0.008283423259854317, 0.015209876000881195, 0.005312836728990078, -0.011964945122599602, -0.041157521307468414, -0.013557910919189453, 0.040709130465984344, 0.029876962304115295, 0.016696643084287643, -0.0011821872321888804, 0.02862618863582611, -0.0038791673723608255, -0.013746706768870354, -0.008867510594427586, -0.019953373819589615, -0.0016829391242936254, 0.010737771168351173, -0.013498911634087563, 0.0008348322007805109, -0.015398671850562096, -0.01716863363981247, -0.015221674926578999, -0.027328217402100563, -0.0029927112627774477, 0.005259737838059664, -0.016767442226409912, 0.025770651176571846, 0.006944152060896158, 0.02164073847234249, 0.007699335925281048, 0.04533463343977928, 0.03521044924855232, 0.02921617589890957, -0.007581338286399841, 0.023103907704353333, -0.0030590847600251436, -0.0076344371773302555, -0.023328103125095367, -0.001535442192107439, 0.022018330171704292, -0.007534139323979616, -0.04363546893000603, 0.008773112669587135, -0.010820369236171246, -0.006985451094806194, -0.02056696079671383, 0.016696643084287643, -0.05937633290886879, 0.02985336259007454, -0.004174160771071911, -0.021357543766498566, -0.004920495208352804, -0.05116370692849159, 0.021180547773838043, 0.0023687994107604027, 0.009363099932670593, 0.004050263669341803, 0.03924596309661865, -0.011363158002495766, 0.007817333564162254, 0.000706878665369004, -0.01556386798620224, -0.003233131021261215, 4.226130386086879e-06, -0.040897928178310394, 0.015540268272161484, 0.019032994285225868, -0.039623554795980453, 0.027776608243584633, -0.018289610743522644, -0.022584717720746994, -0.009127105586230755, 0.008897010236978531, -0.02690342627465725, 0.02657303400337696, 0.0032714803237468004, -0.007528239395469427, -0.0538068525493145, -0.02272631600499153, -0.011292358860373497, 0.010643373243510723, 0.03978875279426575, 0.03164692595601082, 0.014478291384875774, -0.0053098867647349834, 0.025345860049128532, -0.05276847630739212, 0.046207815408706665, -0.0044898041523993015, -0.00813002698123455, 0.011669951491057873, 0.02485026977956295, -0.00833062268793583, 0.017664223909378052, -0.005997221916913986, 0.006725856568664312, -0.010383778251707554, -0.009127105586230755, 0.03367648273706436, -0.0017035886412486434, 0.01283812616020441, 0.008253923617303371, -0.019835377112030983, 0.018478406593203545, 0.025204261764883995, 0.016472449526190758, 0.0170978344976902, -0.019009394571185112, 0.035068850964307785, 0.015351472422480583, 0.024826670065522194, 0.017652424052357674, 0.008926509879529476, -0.02330450341105461, -0.00855481717735529, -0.00861381646245718, -0.0012478233547881246, 0.006997250951826572, 0.008159525692462921, 0.0048644463531672955, 0.008596116676926613, 0.022832512855529785, 0.009858689270913601, 0.0013790955999866128, 0.013180319219827652, 0.009009107947349548, 0.0007334281108342111, -8.080062252702191e-05, -0.0465146079659462, 0.003631372470408678, 0.01767602376639843, -0.02787100523710251, -0.011162562295794487, -0.015233474783599377, -0.015127277001738548, 0.020224768668413162, 0.03971795365214348, 0.026101043447852135, -0.014678887091577053, 0.005563581362366676, -0.044485051184892654, -0.004539953079074621, 0.038136787712574005, 0.020012373104691505, -0.018903197720646858, -0.010159583762288094, -0.04540543258190155, -0.03277970105409622, 0.033912476152181625, -0.02586504817008972, -0.0031888820230960846, -0.04771818220615387, 0.016378050670027733, 0.016153855249285698, -0.00014989367628004402, -0.026289839297533035, 0.01747542805969715, -0.01613025553524494, 0.0025074465665966272, 0.008448619395494461, -0.02402428723871708, 0.03547004237771034, -0.019516782835125923, 0.04273868724703789, 0.009486997500061989, 0.01225993875414133, -0.02451987750828266, 0.03244930878281593, 0.00846041925251484, -0.024260282516479492, 0.01722763292491436, 0.011858747340738773, 0.014065300114452839, -0.0017979866825044155, -0.00547803333029151, -0.022820712998509407, 0.01985897682607174, -0.011923645623028278, 0.017440028488636017, -0.029876962304115295, -0.015658266842365265, 0.013817504979670048, 0.02042536437511444, 0.020212968811392784, -0.0064780618995428085, -0.019563982263207436, 0.025888647884130478, 0.04245549440383911, 0.0036756217014044523, -0.00138499541208148, 0.006324665155261755, 0.01328651700168848, 0.04099232703447342, -0.005908723920583725, 0.011109462939202785, 0.026879826560616493, -0.011687650345265865, 0.0004624026478268206, 0.027564212679862976, -0.030466949567198753, 0.05125810578465462, -0.011386756785213947, 0.034691259264945984, -0.0073630427941679955, -0.0004240534617565572, -0.02805980108678341, 0.029475770890712738], [0.03521361202001572, 0.0022190145682543516, 0.03303395211696625, 0.025380924344062805, -0.012036564759910107, 0.021554410457611084, -0.005427957978099585, 0.0268340315669775, 0.0346323698759079, 0.0536196269094944, -0.019980212673544884, -0.0221235454082489, 0.002539908979088068, 0.017098218202590942, -0.02998242899775505, 0.020597783848643303, 0.007653026841580868, 0.028771506622433662, -0.025332488119602203, 0.011649069376289845, 0.0013986148405820131, 0.03870106488466263, -0.03693312034010887, -0.0001375531719531864, -0.015015432611107826, -0.013828729279339314, 0.04233383387327194, -0.01982279308140278, 0.08248800784349442, -0.033881597220897675, 0.010686386376619339, -0.02076731249690056, 0.03310660645365715, -0.005724633578211069, 0.03867684677243233, 0.044271308928728104, -0.025066085159778595, -0.00852489098906517, 0.008500671945512295, 0.012581479735672474, -0.03904012590646744, -0.040202610194683075, 0.01229691319167614, -0.029376966878771782, 0.008464344777166843, 0.029909772798419, 0.012896318919956684, 0.009275662712752819, -0.021045824512839317, -0.012163711711764336, 0.01701345480978489, 0.05734926462173462, 0.015354490838944912, -0.057203955948352814, 0.022862207144498825, -0.024400077760219574, -0.00931198988109827, -0.004438029136508703, 0.015681440010666847, -0.02613169699907303, 0.052505578845739365, -0.01824859343469143, 0.011067827232182026, 0.02272900566458702, -0.01698923483490944, -0.030975384637713432, 0.02396414615213871, 0.029498059302568436, -0.024509061127901077, -0.016904471442103386, 0.06829600036144257, 0.039911989122629166, 0.02076731249690056, -0.012581479735672474, -0.028795724734663963, -0.027972297742962837, 0.048073604702949524, -0.013961930759251118, -0.015051760710775852, -0.00993561465293169, -0.06417886167764664, -0.017158765345811844, 0.009372536092996597, 0.008076849393546581, -0.014434190467000008, 0.004410783294588327, -0.1008455827832222, -0.022874316200613976, -0.015197071246802807, 0.028529321774840355, 0.05415243282914162, 0.04344788193702698, -0.04320569708943367, -0.016480648890137672, 0.027948079630732536, 0.04165571555495262, 0.05192433297634125, -0.01703767292201519, -0.01897514797747135, 0.00027302507078275084, 0.003054550616070628, -0.05134309083223343, -0.044125996530056, 0.007986030541360378, -0.0035510286688804626, -0.0410744734108448, -0.02240205742418766, 0.02427898533642292, 0.013852947391569614, -0.009378590621054173, 0.06122421473264694, 0.005866916850209236, 0.015209180302917957, 0.025962166488170624, -0.021820813417434692, 0.026567628607153893, -0.03884637728333473, -0.016177916899323463, 0.002937999553978443, -0.008809457533061504, 0.01950795389711857, -0.023092282935976982, -0.05139153078198433, -0.048993904143571854, -0.03087851032614708, -0.020743094384670258, -0.007301859557628632, -0.010831696912646294, -0.05211808159947395, -0.02930431254208088, 0.021845033392310143, -0.0236129779368639, 0.07633652538061142, -0.04163149744272232, 0.005857835058122873, -0.0017391867004334927, -0.03693312034010887, -0.038313571363687515, -0.0141920056194067, 0.015996279194951057, -1.4651683159172535e-05, 0.016601741313934326, 0.04974467679858208, -0.00359341106377542, -0.013877165503799915, -0.03303395211696625, 0.001946557080373168, 0.022862207144498825, -0.029570715501904488, -0.009808467701077461, -0.025695765390992165, 0.046838462352752686, 0.01982279308140278, -0.02082785777747631, -0.026737157255411148, -0.02114269696176052, 0.0299339909106493, 0.040929164737463, 0.012351403944194317, 0.020682547241449356, 0.00244606239721179, 0.018212266266345978, -0.01830914057791233, -0.011388720944523811, 0.024012582376599312, -0.014155678451061249, 0.03753858059644699, 0.030200393870472908, -0.023455558344721794, -0.06049766391515732, 0.002582291141152382, -0.014034586027264595, 0.01008697971701622, -0.021251680329442024, -0.04315726086497307, -0.016529085114598274, 0.0566711500287056, 0.003759912680834532, -0.0220387801527977, 0.009209061972796917, 0.018224375322461128, 0.0758521556854248, -0.009971942752599716, -0.03531048446893692, -0.0662132129073143, 0.04703221097588539, -0.04572441428899765, 0.03279176726937294, -0.029812898486852646, -0.0008597546257078648, -0.0029077264480292797, -0.07381780445575714, 0.01437364425510168, -0.02455749735236168, -0.007683299947530031, -0.003399663371965289, -0.03596438467502594, -0.0504227913916111, 0.01294475607573986, 0.01200023666024208, -0.01057740394026041, -0.0059759002178907394, -0.028456667438149452, -0.039863552898168564, -0.0038779776077717543, -0.008712584152817726, -0.05909299477934837, -0.05197277292609215, 0.027221526950597763, -0.019629046320915222, 0.009124296717345715, 0.014022476971149445, -0.02265634946525097, 0.009475464932620525, -0.02085207588970661, 0.016613850370049477, 0.015838859602808952, 0.00960866641253233, 0.018781399354338646, -0.025477798655629158, -0.028819942846894264, -0.004214008338749409, 0.040929164737463, 0.014107241295278072, -0.03746592625975609, 0.03092694841325283, 0.0014712702250108123, -0.016783379018306732, 0.001263899845071137, -0.08428017050027847, -0.042091649025678635, 0.0055036405101418495, -0.024375859647989273, 0.0005422660033218563, -0.011497704312205315, 0.030660545453429222, -0.013683418743312359, 0.007804392371326685, 0.02271689660847187, 0.04514317214488983, 0.027027778327465057, 0.011624851264059544, -0.011273683980107307, 0.01767946034669876, 0.030200393870472908, -0.006266521289944649, -0.018805619329214096, -0.006581360939890146, 0.006502651143819094, -0.02487233839929104, 0.014349425211548805, 0.02618013322353363, 0.02901369147002697, -0.06185389682650566, -0.021033715456724167, 0.04356897249817848, 0.011818598955869675, -0.03339722752571106, 0.06873193383216858, -0.030176175758242607, -0.030466796830296516, 0.0035873563028872013, 0.014882231131196022, -0.04441661760210991, -0.053668063133955, -0.06185389682650566, 0.00931198988109827, -0.03022461198270321, -0.026640282943844795, 0.06112734228372574, -0.033590976148843765, 0.05608990788459778, -0.0035177282989025116, 0.0015514937695115805, -0.04325413331389427, 0.003251325571909547, 0.009245389141142368, 0.028190264478325844, -0.016783379018306732, -0.04356897249817848, -0.024024691432714462, -0.029788680374622345, 0.03603703901171684, -0.007156549021601677, 0.02484811842441559, 0.02333446592092514, 0.007229204289615154, -0.02773011289536953, 0.013961930759251118, 0.03506829962134361, 0.03615812957286835, 0.008246378973126411, -0.014773248694837093, 0.014228333719074726, 0.017740007489919662, 0.008530945517122746, 0.006551087833940983, 0.04262445494532585, 0.007961812429130077, 0.012048673816025257, 0.009832686744630337, 0.04197055473923683, -0.0442470908164978, 0.007628808729350567, -0.026979342103004456, 0.04514317214488983, 0.022293074056506157, 0.004680213518440723, 0.002035862533375621, -0.03029726818203926, -0.009542065672576427, 0.03254958242177963, -0.02487233839929104, 0.010341273620724678, 0.014870122075080872, -0.004689295310527086, -0.03906434401869774, 0.049647800624370575, 0.027342619374394417, -0.045554883778095245, 0.014337316155433655, 0.010825642384588718, 0.006829599849879742, -0.007749900687485933, 0.002256855834275484, -0.006278630346059799, 0.03940340131521225, 0.03751436248421669, 0.0012737385695800185, -0.0037962403148412704, 0.017110327258706093, -0.02177237719297409, 0.024654371663928032, 0.03620656579732895, 0.005167609546333551, -0.03845888376235962, -0.0018390878103673458, 0.012200038880109787, 0.023213375359773636, -0.006654016207903624, -0.0070172930136322975, -0.03618234768509865, -0.010014324449002743, 0.021554410457611084, -0.03090272843837738, 0.017291966825723648, -0.003817431628704071, -0.01293264701962471, 0.010238345712423325, 0.05870549753308296, 0.020561454817652702, 0.019980212673544884, -0.03596438467502594, 0.021651284769177437, -0.08868792653083801, -0.028480885550379753, 0.05633208900690079, 0.004389591980725527, -0.026688721030950546, 0.011128373444080353, 0.040541667491197586, -0.0022084189113229513, 0.03189568594098091, 0.005116145592182875, 0.004398674238473177, 0.03724795952439308, -0.035794854164123535, -0.008470399305224419, -0.030757417902350426, 0.004162544384598732, -0.030394142493605614, 0.017836879938840866, 0.04005729779601097, -0.000790126621723175, -0.014579501003026962, 0.03501986339688301, -0.030999602749943733, -0.011679342947900295, -0.001952611724846065, -0.000288918410660699, -0.012030510231852531, -0.006744835525751114, 0.0204524714499712, 0.0034844279289245605, 0.016831815242767334, 0.0600132942199707, -0.05962579697370529, -0.008452235721051693, 0.010886188596487045, 0.0045530665665864944, -0.012993193231523037, -0.023419231176376343, 0.027512148022651672, 0.04475567489862442, -0.033857379108667374, 0.005197882652282715, -0.000449554790975526, 0.042140085250139236, -0.019096240401268005, 0.0006803867872804403, -0.019762245938181877, -0.03499564528465271, 0.016892362385988235, 0.012036564759910107, -0.02552623488008976, -0.0036600118037313223, -0.0629195049405098, -0.02555045299232006, -0.01766735129058361, -0.015269726514816284, 0.006429995875805616, -0.0034753461368381977, 0.00024634692817926407, 0.02906212769448757, 0.02264424040913582, -0.03346988186240196, -0.026664502918720245, 0.027245745062828064, -0.005421902984380722, -0.02651919238269329, 0.01388927549123764, 0.01958060823380947, -0.015899404883384705, -0.01118286419659853, -0.011927581392228603, 0.025405142456293106, -0.019411079585552216, -0.0036176294088363647, -0.011982073076069355, -0.012690462172031403, -0.025647327303886414, -0.03722374141216278, -0.03252536430954933, -0.013271705247461796, -0.04155884310603142, -0.04313304275274277, -0.01572987623512745, -0.054443053901195526, 0.001669558696448803, -0.009959833696484566, -0.015572456642985344, -0.05865706130862236, 0.03649718686938286, -0.01132212020456791, -0.021614957600831985, -0.032622236758470535, -0.004486465826630592, 0.01673494093120098, -0.010686386376619339, 0.027294181287288666, 0.019943885505199432, 0.013925602659583092, -0.030055083334445953, 0.017497822642326355, 0.0205372367054224, -0.03351832181215286, -0.0029516222421079874, -0.04293929412961006, 0.04349631816148758, 0.037029992789030075, 0.03216208890080452, 0.027003560215234756, 0.013852947391569614, 0.032622236758470535, 0.015923624858260155, 0.026398099958896637, -0.013211159035563469, 0.01244827825576067, -0.031387098133563995, -0.026034822687506676, -0.021360663697123528, -0.002865344053134322, 0.02023450657725334, 0.009142461232841015, 0.020270833745598793, -0.015705658122897148, 0.03395425155758858, -0.03940340131521225, -0.007192876655608416, 0.02396414615213871, -0.03414800018072128, 0.009475464932620525, -0.06713351607322693, 0.007204985711723566, 0.1008455827832222, -0.007198931183665991, 0.06253200769424438, 0.01738883927464485, -0.02935274876654148, -0.02202667109668255, -0.028166044503450394, 0.017449386417865753, 0.008306925185024738, -0.011176809668540955, -0.0018754154443740845, 0.011521922424435616, 0.035504233092069626, 0.0535711869597435, 0.001507597859017551, -0.0001665017771301791, 0.0028093389701098204, -0.030442578718066216, 0.00362368393689394, 0.027851205319166183, 0.04708064720034599, -0.016589630395174026, -0.008700474165380001, 0.02651919238269329, 0.007992085069417953, -0.017897427082061768, -0.02360086888074875, 0.026398099958896637, 0.029449623078107834, -0.003257380099967122, -0.0013819647720083594, -0.02179659530520439, 0.05071341246366501, -0.002715492621064186, -0.05952892452478409, 0.027584802359342575, 0.048436880111694336, 0.0028002571780234575, 0.06146639958024025, 0.0032815986778587103, 0.011437158100306988, 0.01437364425510168, -0.01763102412223816, -0.06151483580470085, 0.013598653487861156, 0.00881551206111908, -0.01889038272202015, -0.029110563918948174, -0.04124400392174721, 0.019338423386216164, 0.02425476722419262, -0.02461804449558258, 0.01666228659451008, 0.03368784859776497, -0.02804495394229889, 0.024509061127901077, 0.0316292829811573, 0.03058788925409317, 0.01436153519898653, -0.025041867047548294, 0.029788680374622345, -0.01832124963402748, -0.011509813368320465, 0.007029402069747448, 0.010026434436440468, -0.032598018646240234, -0.02966758795082569, 0.0030651462730020285, -0.036085475236177444, 0.008452235721051693, -0.004471329506486654, 0.02867463231086731, 0.010686386376619339, -0.03521361202001572, 0.009251443669199944, 0.018987257033586502, -0.008270597085356712, 0.006502651143819094, -0.00034113944275304675, -0.016299009323120117, -0.030176175758242607, 0.02393992803990841, 0.01823648437857628, -0.046838462352752686, 0.006339176557958126, -0.02705199643969536, -0.024351641535758972, -0.02872307039797306, 0.025356706231832504, -0.01857554353773594, 0.02678559347987175, 0.0062423027120530605, 0.02052512764930725, -0.029110563918948174, 0.01604471541941166, 0.028941035270690918, -0.016226354986429214, -0.010916462168097496, 0.005948654375970364, -0.027972297742962837, -0.023225484415888786, 0.026010604575276375, 0.010989117436110973, -0.012193984352052212, 0.0019859119784086943, -0.013949821703135967, 0.014870122075080872, 0.0074895522557199, -0.023564541712403297, 0.010849861428141594, 0.026979342103004456, 0.02432742342352867, -0.009523901157081127, 0.04516739025712013, 0.007102057337760925, 0.021070042625069618, 0.0008196427952498198, -0.0316292829811573, -0.019459515810012817, 0.0030666599050164223, -0.03821669891476631, 0.008682310581207275, -0.009681321680545807, -0.023092282935976982, 0.0347776785492897, 0.009251443669199944, 0.010129362344741821, -0.011903363279998302, 0.011867035180330276, -0.030975384637713432, -0.0059577361680567265, -0.02047669142484665, -0.07221938669681549, -0.03538313880562782, 0.006030391436070204, 0.0067145624198019505, 0.002102463273331523, -0.002650405513122678, 0.00323013449087739, -0.014603719115257263, -0.0205130185931921, 0.0003309222811367363, -0.018345467746257782, -0.03744170814752579, -0.014070913195610046, -0.03303395211696625, -0.02454538829624653, -0.001507597859017551, -0.005249346606433392, -0.029401184991002083, -0.01920522190630436, 0.035140957683324814, 0.035140957683324814, 0.0134049067273736, 0.025962166488170624, -0.006744835525751114, 0.03598860278725624, -0.02649497240781784, 0.02013763226568699, -0.06708507984876633, 0.03378472477197647, 0.02961915172636509, -0.006750890053808689, 0.01926576904952526, 0.05415243282914162, -0.015293944627046585, -0.001074693282134831, -0.05173058807849884, -0.058463312685489655, 0.022317292168736458, 0.006136347074061632, 0.01736462116241455, -0.03814404085278511, -0.0016241491539403796, 0.006641907151788473, 0.0011435644701123238, 0.001932934275828302, 0.023225484415888786, 0.006666125729680061, 0.022571586072444916, 0.02433953247964382, -0.01611737161874771, 0.048388443887233734, -0.0346808061003685, 0.01197601854801178, -0.02775433100759983, 0.006938582751899958, 0.007180767599493265, 0.004792223684489727, -0.027366837486624718, 0.04926030710339546, 0.0058820536360144615, -0.0005869187298230827, -0.0021842005662620068, 0.01734040305018425, 0.031144913285970688, -0.005467312876135111, -0.021929796785116196, -0.026277007535099983, 0.02964336983859539, -0.022898534312844276, -0.039572931826114655, -0.010135416872799397, -0.013295923359692097, -0.022232526913285255, 0.04003307968378067, -0.00064178864704445, 0.03305817022919655, 0.011443212628364563, -0.008597546257078648, 0.01799430139362812, 0.0409049428999424, 0.00536438450217247, 0.009081915020942688, 0.017195092514157295, -0.017219310626387596, -0.0001345258642686531, 0.016190027818083763, 0.04029948264360428, -0.05386181175708771, -0.03681202977895737, -0.00036668230313807726, 0.02236572839319706, -0.029134783893823624, -0.010722714476287365, 0.0026261871680617332, -0.010056707076728344, -0.0050919270142912865, -0.03431753069162369, 0.0006754674250259995, 0.013150612823665142, -0.04313304275274277, 0.003968796692788601, -0.0094633549451828, -0.0005093440413475037, -0.005930490326136351, -0.045240044593811035, -0.013634981587529182, -0.019108349457383156, 0.008561218157410622, -0.010462366044521332, -0.003702393965795636, -0.026640282943844795, -0.05420086905360222, 0.007622753735631704, -0.025041867047548294, 0.021360663697123528, -0.009536010213196278, 0.0024748218711465597, 0.011709615588188171, -0.02804495394229889, 0.041752591729164124, 0.0022265827283263206, 0.0408807247877121, -0.010480529628694057, -0.009154570288956165, 0.016952907666563988, -0.01861187070608139, -0.007822556421160698, 0.02331024780869484, -0.00487093348056078, -0.005673169624060392, -0.0013698554830625653, 0.034487057477235794, 0.007053620647639036, -0.03221052512526512, 0.020912623032927513, 0.008500671945512295, 0.014058804139494896, -0.0379018597304821, 0.02935274876654148, -0.03414800018072128, 0.014882231131196022, 0.04441661760210991, 0.025719983503222466, 0.014724811539053917, 0.0409533828496933, 0.03429330885410309, -0.03882215917110443, -0.0347050242125988, 0.004362346604466438, -0.032646458595991135, -0.03722374141216278, 0.005800316110253334, 0.03339722752571106, 0.00853700004518032, -0.06073984503746033, 0.005058626644313335, -0.0173767302185297, 0.02618013322353363, 0.025308270007371902, -0.014555281959474087, -0.03204099461436272, -0.024799682199954987, 0.03339722752571106, -0.0010989117436110973, 0.021675502881407738, -0.006581360939890146, 0.004761950578540564, 0.01276311744004488, -0.028553539887070656, -0.002748792991042137, -0.020997386425733566, 0.026664502918720245, 0.02178448624908924, 0.01562089379876852, -0.029231656342744827, 0.013102175667881966, 0.036133911460638046, 0.002810852602124214, -0.022268855944275856, -4.1152425183099695e-06, 0.021348554641008377, -0.031411316245794296, -0.052844636142253876, 0.013925602659583092, 0.029473841190338135, 0.0003301654360257089, 0.0023431340232491493, -0.0025383951142430305, 0.056574273854494095, -0.014543172903358936, -0.009529955685138702, 0.007653026841580868, 0.017522040754556656, -0.019435297697782516, -0.011273683980107307, 0.04342366382479668, 0.009862959384918213, -0.00251569040119648, -0.028626196086406708, 0.007313968613743782, -0.04034791886806488, -0.025792637839913368, -0.029716026037931442, 0.000695523340255022, 0.04545801132917404, 0.03441440314054489, 0.002904699184000492, -0.001263899845071137, -0.007544043939560652, 0.015221289359033108, -0.015039650723338127, -0.009578392840921879, -0.01707400009036064, -0.02969180792570114, 0.001823951257392764, -0.023419231176376343, -0.030369922518730164, -0.012872100807726383, 0.002502067480236292, -0.027027778327465057, -0.020634111016988754, 0.02710043452680111, 0.0018330331658944488, -0.001512895687483251, 0.01925365999341011, -0.009348317980766296, -0.044900987297296524, -0.0220872163772583, -0.0505196638405323, -0.01212738361209631, 0.004531875718384981, 0.012702571228146553, 0.006109101232141256, 0.022837989032268524, -0.0009006232139654458, -0.020634111016988754, -0.010304946452379227, -0.024702807888388634, 0.036400314420461655, -0.026591846719384193, 0.014761138707399368, -0.024157892912626266, -0.019665373489260674, 0.03414800018072128, -0.03402690961956978, 0.019423188641667366, -0.01513652503490448, -0.012042619287967682, -0.010946734808385372, -0.012496714480221272, -0.013477561995387077, -0.048025164753198624, 0.026955123990774155, 0.0005589161883108318, 0.03131444379687309, 0.006920419167727232, 0.006520814727991819, -0.021954014897346497, -0.030466796830296516, 0.007598535623401403, -0.01324748620390892, 0.06059453636407852, 0.0014039126690477133, 0.023104391992092133, -0.002147872932255268, 0.0472259558737278, 0.02928009442985058, 0.011600632220506668, -0.005742797628045082, -0.046208783984184265, -0.011969964019954205, -0.004383537452667952, -0.0019026611698791385, -3.9946233300725e-05, 0.02898947149515152, 0.025986386463046074, 0.055653974413871765, 0.000207748802495189, 0.009723703376948833, 6.792515341658145e-05, 0.002836584812030196, -0.008101068437099457, -0.01769156940281391, -0.002088840352371335, -0.05410399287939072, 0.030660545453429222, -0.024678589776158333, 0.016795488074421883, -0.018854055553674698, -0.008833675645291805, -0.0011723238276317716, -0.0009028937201946974, 0.03882215917110443, 0.011406885460019112, -0.012236366979777813, -0.029788680374622345, -0.04192211851477623, -0.013513889163732529, 0.05749457702040672, -0.004550039302557707, 0.007259477395564318, 0.024739136919379234, 0.009063751436769962, 0.011473486199975014, 0.048049382865428925, -0.030684763565659523, -0.07197720557451248, -0.006205975078046322, 0.018079064786434174, -0.02178448624908924, -0.0033572812099009752, 0.011067827232182026, 0.01088013406842947, -0.05836644023656845, -0.017848990857601166, 0.009233280085027218, 0.04071119800209999, 0.053425878286361694, 0.004689295310527086, -0.021929796785116196, 0.012690462172031403, -0.00026034822803922, 0.01323537714779377, -0.04470723867416382, 0.0205130185931921, -0.017752116546034813, -0.013150612823665142, -0.019398970529437065, 0.0058971899561584, 0.016843924298882484, 0.017170874401926994, 0.025623109191656113, -0.004023288376629353, 0.019471624866127968, 0.002176632173359394, 0.0027942024171352386, 0.007798337377607822, -0.037078432738780975, -0.027536366134881973, -0.01165512390434742, 0.012981083244085312, -0.003756885416805744, 0.03971824049949646, -0.036690935492515564, 0.01227874867618084, 0.04570019617676735, -0.004301800392568111, -0.03850731998682022, 0.0693131759762764, 0.01071665994822979, -0.023116501048207283, -0.005997091066092253, 0.02518717758357525, 0.030442578718066216, -0.04395646974444389, -0.007992085069417953, 0.046233002096414566, -0.01858765259385109, 0.033566758036613464, 0.03189568594098091, 0.007089948281645775, 0.017207201570272446, -0.002857775893062353, 0.0006224896060302854, -0.04664471372961998, 0.045579101890325546, 0.028505103662610054, 0.015984170138835907, -0.01959271728992462, 0.0057549066841602325, 0.021518083289265633, -0.024533279240131378, -0.01829703152179718, -0.020355599001049995, 0.03676358982920647, -0.001000524265691638, 0.0026413234882056713, 0.052457138895988464, 0.015197071246802807, 0.0347776785492897, 0.02241416648030281, 0.007132330443710089, 0.03213787078857422, -0.0034450730308890343, 0.027366837486624718, 0.027221526950597763, 0.007798337377607822, 0.027318399399518967, -0.01369552779942751, -0.01401036698371172, -0.019604826346039772, -0.007011238485574722, -0.005170636810362339, 0.014821684919297695, -0.01926576904952526, 0.013441233895719051, 0.021941905841231346, 0.04223695769906044, -0.024739136919379234, -0.02022239752113819, 0.0036267114337533712, -0.009965888224542141, -0.010056707076728344, -0.0102686183527112, -0.011104154400527477, -0.0005381034570746124, 0.02620435133576393, -0.027996515855193138, 0.005300811026245356, -0.03300973400473595, 0.003378472290933132, 0.04000886157155037, 0.030200393870472908, 0.0053431931883096695, 0.005500613246113062, -0.0009218143532052636, 0.033857379108667374, 0.016807597130537033, 0.01449473574757576, 0.055944595485925674, -0.009269608184695244, 0.020355599001049995, -0.012811554595828056, 0.05105246976017952, -0.013065848499536514, -0.016601741313934326, -0.012533042579889297, 0.022232526913285255, -0.006581360939890146, -0.010165690444409847, -0.01352599821984768, -0.01390138454735279, -0.004435001872479916, -0.006678234785795212, 0.0006005416507832706, 0.013077957555651665, -0.03271911293268204, 0.012666244059801102, -0.011079936288297176, 0.020948950201272964, 0.006272575818002224, -0.008325088769197464, -0.02108215168118477, -0.022511038929224014, 0.004547012038528919, -0.01150375884026289, -0.02959493361413479, -0.02019817940890789, 0.027609020471572876, -0.017861099913716316, 0.004035397432744503, 0.017800552770495415, -0.003526810323819518, 0.006314957980066538, 0.026567628607153893, 0.025017648935317993, 0.04969623684883118, 0.00228410167619586, 0.010341273620724678, 0.008670201525092125, -0.04015417397022247, -0.025623109191656113, -0.04826734960079193, 0.04625722020864487, 0.010674277320504189, 0.020864184945821762, -0.007023347541689873, -0.013283814303576946, -0.003772021969780326, -0.008645983412861824, 0.017522040754556656, -0.006272575818002224, -0.038628410547971725, 0.026107478886842728, 0.009893232956528664, 0.0023537296801805496, 0.02618013322353363, 0.005651978310197592, 0.014809575863182545, 0.0028017708100378513, 0.005206964444369078, 0.0010194448987022042, -0.0047286502085626125, -0.012030510231852531, 0.031968340277671814, 0.02299540862441063, -0.011691452004015446, 0.0020721901673823595, 0.01420411467552185, 0.04010573774576187, 0.010038543492555618, -0.01467637438327074, -0.026712939143180847, 0.0141920056194067, 0.018369685858488083, 0.0118125444278121, 0.008004194125533104, -0.009433082304894924, 0.002337079495191574, 0.01823648437857628, -0.010686386376619339, 0.00037633185274899006, -0.014894340187311172, 0.01136450283229351, -0.007404787931591272, -0.021021606400609016, -0.03807138651609421, -0.0012661702930927277, 0.02964336983859539, -0.00598800927400589, -0.01466426532715559, 0.024194221943616867, 0.004607558250427246, -0.02454538829624653, -0.010153580456972122, -0.007562207989394665, 0.007822556421160698, -0.0299582090228796, -0.007380569353699684, 0.018745072185993195, 0.009578392840921879, -0.05487898364663124, -0.015499801374971867, -0.019931776449084282, 0.026107478886842728, 0.04042057693004608, -0.013465452939271927, -0.014034586027264595, 0.025719983503222466, -0.00853700004518032, -0.0037084484938532114, 0.07846774160861969, -0.010650059208273888, -0.01513652503490448, -0.024424295872449875, 0.03492299094796181, -0.011067827232182026, 0.009881122969090939, 0.01608104445040226, 0.020246615633368492, 0.010189908556640148, -0.01926576904952526, 0.040832288563251495, -0.03116913139820099, -0.006429995875805616, 0.006902255117893219, -0.022135654464364052, 0.01496699545532465, 0.002836584812030196, 0.01792164519429207, 0.005818480160087347, 0.003871923079714179, -0.026930905878543854, -0.0032089431770145893, -0.028117608278989792, 0.03366363048553467, 0.012533042579889297, -0.026664502918720245, 0.010801424272358418, 0.019762245938181877, 0.05100403353571892, 0.013586544431746006, -0.00043366142199374735, -0.004949643742293119, -0.010438147932291031, 0.006617688573896885, -0.022777441889047623, -0.016165807843208313, 0.007168658077716827, -0.0035903837997466326, 0.015899404883384705, 0.01770368032157421, -0.027899643406271935, -0.008543054573237896, 0.00481038773432374, 0.01801851950585842, 0.023540323600172997, -0.03535892069339752, -0.0189630389213562, 0.0059577361680567265, 0.008670201525092125, 0.017582587897777557, 0.029231656342744827, -0.01230902224779129, -0.013477561995387077, 0.004946616478264332, 0.0141677875071764, 0.017134545370936394, -0.023721961304545403, 0.00038673821836709976, -0.00417768070474267, 0.0017876236233860254, -0.010329164564609528, -0.011346339248120785, 0.01341701578348875, -0.02964336983859539, 0.049042340368032455, -0.02023450657725334, 0.04003307968378067, -0.0037992678117007017, -0.010329164564609528, 0.02487233839929104, -0.0094815194606781, 0.003923387266695499, -0.008936604484915733, 0.0299582090228796, 0.023455558344721794, 0.0001792732218746096, 0.037078432738780975, -0.029183220118284225, 0.001958666369318962, -0.0015590620459988713, -0.003793213050812483, 0.039887771010398865, -0.004192817490547895, 0.009408864192664623, 0.002980381716042757, -0.028480885550379753, 0.02773011289536953, 0.02804495394229889, -0.0015181933995336294, -0.0036206566728651524, -0.01010514423251152, 0.005255401600152254, -0.031387098133563995, -0.019665373489260674, 0.03904012590646744, -0.012799445539712906, -0.013756074011325836, -0.015390818007290363, -0.01275100838392973, 0.00094603281468153, -0.02651919238269329, -0.06233826279640198, 0.0189267098903656, -0.03380894288420677, 0.0003540054603945464, 0.014288878999650478, 0.011576414108276367, 0.00836747046560049, 0.004786169156432152, -0.02932853065431118, 0.0032876532059162855, 0.014155678451061249, -0.01858765259385109, -0.011225246824324131, 0.018757181242108345, 0.01200023666024208, -0.006750890053808689, 0.02079153060913086, 0.045893944799900055, -0.009856904856860638, -0.014119350351393223, 0.027269963175058365, 0.019120458513498306, -0.040517449378967285, 0.002358270576223731, -0.015947842970490456, 0.0252840518951416, 0.016868142411112785, 0.008246378973126411, -0.024194221943616867, -0.030079301446676254, 0.005927463062107563, -0.015511910431087017, -0.02456960640847683, 0.016153698787093163, 0.010613731108605862, 0.007422951981425285, -0.008125286549329758, -0.02523561380803585, -0.0069083101116120815, 0.004011178854852915, 0.006045528221875429, 0.009887178428471088, 0.015887295827269554, -0.010928571224212646, -0.025986386463046074, 0.009245389141142368, -0.016299009323120117, 0.04659627750515938, 0.03615812957286835, 0.01897514797747135, -0.010928571224212646, 0.06524447351694107, 0.013550217263400555, -0.008621764369308949, 0.013199049979448318, -0.023782508447766304, 0.014446299523115158, 0.0015106251230463386, 0.004764977842569351, 0.008155559189617634, 0.00646026898175478, 0.014470517635345459, -0.021203244104981422, 0.02492077462375164, -0.02303173579275608, 0.01698923483490944, 0.00851278193295002, 0.017413057386875153, -0.021348554641008377, -0.008361415937542915, 0.014034586027264595, 0.015160743147134781, -0.022523149847984314, -0.02117902599275112, -0.005984982009977102, 0.024993428960442543, -0.048049382865428925, -0.01054713036864996, 0.03676358982920647, 0.056913334876298904, 0.009893232956528664, 0.01417989656329155, -0.0038688958156853914, -0.0069083101116120815, 0.022147763520479202, -0.004522793460637331, 0.005833616480231285, -0.006974910851567984, 0.021009497344493866, -0.023140719160437584, -0.005661060102283955, -0.006526869721710682, 0.008119232021272182, -0.014894340187311172, 0.02644653618335724, 0.009051641449332237, 0.01606893539428711, -0.025356706231832504, -0.05395868420600891, -0.006345231086015701, -0.025138741359114647, -0.009699485264718533, -0.01889038272202015, -0.0189267098903656, 0.016843924298882484, -0.037393271923065186, -0.002235664753243327, 0.05148840323090553, 0.0054703401401638985, 0.02398836426436901, 0.007622753735631704, -0.02234151028096676, 0.0060092005878686905, -0.012254530563950539, -0.03763545677065849, -0.0075379894115030766, 0.02044036239385605, -0.027366837486624718, -0.015390818007290363, -0.012085000984370708, -0.005806371103972197, -0.007223149761557579, -0.0315081886947155, 0.0029152946081012487, 0.00528567424044013, 0.0033663632348179817, 0.027851205319166183, -0.026616064831614494, 0.02115480788052082, 0.009366481564939022, 0.01991966739296913, -0.029546497389674187, -0.008797348476946354, 0.011237355880439281, 0.008058685809373856, -0.0003214619355276227, -0.0078891571611166, -0.005933517590165138, -0.005915354005992413, -0.02237783744931221, 0.0031998613849282265, 0.013768183067440987, -1.3161681636120193e-05, 0.015838859602808952, -0.03337300941348076, 0.026858249679207802, -0.029401184991002083, -0.01215765718370676, 0.03681202977895737, -0.02557467296719551, 0.010813533328473568, -0.017776334658265114, -0.005379520822316408, 0.004513711668550968, 0.005969845224171877, -0.012175820767879486, 0.03661828115582466, -0.02117902599275112, 0.019738027825951576, -0.036061257123947144, 0.058753933757543564, 0.02898947149515152, 0.009705539792776108, -0.015645112842321396, -0.010498693212866783, 0.003729639807716012, -0.012230312451720238, 0.030345704406499863, -0.0345597118139267, 0.0038416499737650156, 0.007671190891414881, -0.058463312685489655, -0.00771962758153677, -0.02928009442985058, -0.030466796830296516, 0.02809339016675949, 0.03279176726937294, -0.0010330678196623921, -0.011558250524103642, 0.0003973337879870087, 0.023879380896687508, 0.018757181242108345, 0.012702571228146553, -0.01669861376285553, 0.016456428915262222, 0.00849461741745472, 0.012315076775848866, -0.01514863409101963, -0.044634584337472916, 0.010353382676839828, -0.012230312451720238, -0.002783606993034482, 0.026010604575276375, -0.003899168688803911, 0.025138741359114647, 0.005673169624060392, 0.016335338354110718, -0.021905578672885895, 0.042115867137908936, -0.00896687712520361, 0.011697506532073021, 0.03129022568464279, -0.002243232913315296, 0.026664502918720245, 0.030442578718066216, -0.0102262357249856, -0.005812425632029772, -0.009838741272687912, 0.0010830183746293187, 0.0070838937535882, 0.003696339437738061, -0.009360427036881447, -0.020706765353679657, 0.051246218383312225, -0.040178392082452774, -0.006036445964127779, 0.008773129433393478, 0.012896318919956684, -0.032307397574186325, -0.019096240401268005, -0.030321486294269562, -0.035140957683324814, 0.05957736074924469, 0.014736920595169067, 0.010413928888738155, -0.01165512390434742, -0.02012552320957184, -0.01794586330652237, 0.021203244104981422, -0.028456667438149452, 0.0067024533636868, 0.010946734808385372, 0.0283597931265831, -0.007156549021601677, -0.006142401602119207, 0.013174830935895443, -0.0036993667017668486, -0.01799430139362812, -0.02806917205452919, -0.0013940739445388317, 0.0006062178290449083, -0.015850968658924103, -0.009487573988735676, 0.02460593543946743, -0.007701463997364044, 0.0046196673065423965, 0.014325207099318504, 0.014591610059142113, -0.00043782396824099123, -0.0076651363633573055, 0.017727898433804512, -0.04942983388900757, -0.04630565643310547, -0.017740007489919662, 0.015911515802145004, -0.019762245938181877, -0.012072891928255558, -0.014107241295278072, 0.014518954791128635, -0.006926473695784807, -0.017400948330760002, 0.04342366382479668, -0.031362880021333694, -0.010450256988406181, 0.01323537714779377, 0.007047566119581461, -0.0010557726491242647, 0.061369527131319046, -0.011739888228476048, -0.0025050947442650795, -0.013090066611766815, -0.01666228659451008, 0.04134087637066841, -0.055024296045303345, 0.018115393817424774, 0.017497822642326355, -0.00833114329725504, 0.021348554641008377, 0.008845784701406956, -0.02109426073729992, 0.01292053796350956, -0.03116913139820099, 0.04194633662700653, 0.006962801329791546, 0.016952907666563988, -0.01581464149057865, -0.008500671945512295], [0.019794311374425888, -0.041075851768255234, 0.05523993819952011, -0.0001714260142762214, -0.0016082139918580651, 0.02457468956708908, -0.041146669536828995, 0.02887113019824028, 0.019038893282413483, 0.04091060161590576, -0.0005746782990172505, -0.02084481343626976, 0.036071207374334335, 0.025400929152965546, -0.06123606860637665, 0.0066689238883554935, 0.002171826548874378, 0.009011900052428246, -0.004502999130636454, 0.001078536151908338, 0.029602941125631332, 0.046670664101839066, -0.05467337369918823, 0.013432275503873825, -0.03444233536720276, -0.026416020467877388, -0.009507643058896065, 0.05151006206870079, 0.03810139372944832, -0.06010293960571289, 0.0433657132089138, -0.024385835975408554, 0.03430069610476494, -0.00422561913728714, 0.015202785842120647, -0.017941176891326904, -0.05028250813484192, 0.0009900106815621257, -0.0013677196111530066, 0.0198651310056448, -0.019735293462872505, 0.025377321988344193, -0.009088622406125069, -0.002366582863032818, 0.0054030087776482105, 0.03482004627585411, 0.025046825408935547, -0.057553403079509735, 0.011726683005690575, 0.04815789312124252, 0.013078173622488976, 0.01640673354268074, 0.016147058457136154, 0.05958358943462372, 0.05571207404136658, -0.0026705204509198666, 0.04600967466831207, 0.004125290084630251, 0.040485680103302, -0.016819853335618973, -0.008209268562495708, 0.002545109251514077, 0.001907725352793932, 0.009259771555662155, 0.01746903918683529, 0.046670664101839066, -0.003310855245217681, 0.030570819973945618, -0.032270509749650955, 0.01257062703371048, 0.04475851356983185, 0.03784171864390373, -0.021812694147229195, -0.021824495866894722, -0.019522832706570625, 0.0049928403459489346, 0.016099844127893448, -0.002961179241538048, 0.022910410538315773, 0.04464047774672508, 0.0013839493039995432, 0.013042762875556946, 0.01711493730545044, -0.0026897010393440723, 0.005196449346840382, -0.010941756889224052, -0.04662344977259636, -0.01995955780148506, 0.03080688789486885, -0.029957043007016182, 0.018720200285315514, 0.0034879064187407494, -0.007211880758404732, 0.03574071079492569, 0.037794504314661026, 0.027619969099760056, 0.026463234797120094, -0.051604487001895905, -0.03826664015650749, 0.034418731927871704, 0.014305727556347847, -0.0709148570895195, -0.0053764511831104755, 0.017480842769145966, 0.006515479646623135, -0.095229871571064, -0.034985292702913284, 0.03451315686106682, 0.041807662695646286, 0.0015137867303565145, 0.006291215308010578, 0.009230262599885464, 0.01785855181515217, 0.06642956286668777, -0.013042762875556946, 0.004680050071328878, -0.01798838935792446, -0.0336633138358593, 0.021210718899965286, 0.02606191858649254, -0.012712267227470875, 0.02743111364543438, 0.04742608219385147, -0.0444280169904232, 0.008510255254805088, 0.005541699007153511, -0.059347521513700485, -0.006362035404890776, -0.0630773976445198, -0.009147639386355877, 0.024527477100491524, -0.052832040935754776, 0.03935255482792854, -0.021883513778448105, 0.005754160229116678, -0.054484520107507706, 0.04383784905076027, -0.0018132982077077031, -0.007200077176094055, -0.03486726060509682, 0.023146478459239006, -0.02210777811706066, -0.013550309464335442, 0.006025638431310654, -0.026486841961741447, -0.021458590403199196, -0.012358165346086025, 0.03425348177552223, -0.018212653696537018, 0.02345336601138115, -0.016630997881293297, 0.05235990509390831, -0.029697367921471596, 0.016878869384527206, -0.002500846516340971, 0.023476973176002502, 0.038006965070962906, 0.015899186953902245, -0.01640673354268074, 0.02787964418530464, -0.055476006120443344, -0.035646285861730576, 0.009041409008204937, -0.008510255254805088, 0.018932662904262543, 0.009218459948897362, 0.0042167664505541325, -0.015462460927665234, -0.04518343508243561, -0.03052360564470291, -0.0358351394534111, -0.04848838970065117, -0.07629721611738205, 0.002320844680070877, 0.0034997097682207823, -0.08078251034021378, 0.025896672159433365, 0.032624613493680954, -0.006190886255353689, -0.016571981832385063, -0.03673219680786133, 0.040650926530361176, -0.06883746385574341, -0.052265480160713196, -0.04027321934700012, 0.009212558157742023, -0.004485294222831726, 0.0024388786405324936, -0.02880030870437622, -0.018118226900696754, 0.014175890013575554, -0.013809984549880028, 0.03817221149802208, -0.012629644013941288, -0.013373258523643017, 0.006120065692812204, -0.002115760464221239, -0.006657120771706104, 0.003030524356290698, 0.006757449824362993, 0.041595201939344406, -0.027596361935138702, 0.042374227195978165, -0.013290634378790855, -0.05736454948782921, 0.012045375071465969, 0.02324090525507927, -0.024338621646165848, 0.030051469802856445, -0.026817336678504944, 0.011177824810147285, -0.018613969907164574, -0.023335332050919533, -0.0030452786013484, -0.02872948907315731, 0.026888158172369003, 0.010770607739686966, 0.021954333409667015, 0.019274961203336716, 0.049668729305267334, -0.023831075057387352, 0.01278308779001236, -0.004355456680059433, -0.008073529228568077, -0.015167376026511192, 0.003030524356290698, 0.002022808650508523, -0.020443499088287354, -0.028564240783452988, -0.07082043588161469, -0.029909828677773476, 0.02324090525507927, -0.025259288027882576, 0.0009413216030225158, 0.012440789490938187, -0.02584945783019066, -0.014105069451034069, -0.0558537133038044, -0.02400812692940235, -0.014069659635424614, 0.005842685699462891, 0.0002543264999985695, 0.01130176056176424, 0.031987227499485016, 0.023146478459239006, -0.005217105150222778, -0.012960138730704784, 0.0017513303318992257, 0.04900773987174034, 0.009855843149125576, 0.03611842170357704, 0.0007469342672266066, 0.03052360564470291, -0.04357817396521568, 0.01622968167066574, 0.039281733334064484, 0.016489356756210327, -0.03732236847281456, 0.053115323185920715, -0.015545085072517395, -0.00506071001291275, 0.05467337369918823, 0.0015285409754142165, 0.05113235116004944, -0.09707120805978775, -0.016808049753308296, 0.0397774763405323, -0.009283378720283508, -0.01547426450997591, 0.02341795712709427, -0.03014589659869671, 0.04397948831319809, -0.025259288027882576, -0.03397019952535629, -0.03772368282079697, 0.05845046415925026, 0.00536169670522213, -0.0311609897762537, 0.0007834510179236531, -0.01816544122993946, -0.056845199316740036, -0.0024728134740144014, 0.013644736260175705, -0.04589163884520531, 0.029248839244246483, 0.02880030870437622, 0.04506540298461914, -0.042374227195978165, -0.018826432526111603, 0.017964782193303108, 0.041288312524557114, -0.023854682222008705, 0.03210526332259178, 0.02577863819897175, 0.042940787971019745, 0.04124109819531441, 0.023229101672768593, -0.01869659498333931, -0.006580398418009281, 0.0027531443629413843, 0.0004518491041380912, 0.0039541409350931644, -0.021316949278116226, -0.015604102052748203, -0.052265480160713196, 0.021423181518912315, 0.013845394365489483, 0.017020510509610176, -0.0029434743337333202, -0.037487614899873734, -0.01912151649594307, 0.027974070981144905, -0.028682274743914604, -0.046458203345537186, -0.003803647356107831, 0.006993517745286226, -0.014589008875191212, 0.020467104390263557, 0.04877167195081711, 0.0031013446860015392, 0.020537925884127617, 0.03859713673591614, 0.014636222273111343, 0.0020596941467374563, 0.011148316785693169, -0.0009346821461804211, 0.018968071788549423, 0.030334752053022385, -0.020927438512444496, -0.020443499088287354, -0.010056501254439354, -0.04685952141880989, 0.017421826720237732, 0.03123181127011776, -0.033852167427539825, -0.0029538022354245186, -0.0390220582485199, 0.06548529118299484, -0.011738486588001251, 0.004151847679167986, -0.02592027746140957, -0.010026993229985237, -0.05915866792201996, 0.017764125019311905, -0.036850232630968094, 0.005698094144463539, 0.009861744940280914, 0.028894737362861633, 0.020573334768414497, 0.04891331121325493, 0.04010797291994095, 0.009914860129356384, -0.02828095853328705, -0.005462025757879019, -0.014990325085818768, -0.0018206753302365541, 0.044734906405210495, 0.009466331452131271, -0.03404102101922035, 0.02528289519250393, 0.0051669408567249775, -0.026746517047286034, -0.012806694954633713, 0.04055650159716606, -0.0016805098857730627, -0.022863196209073067, -0.03746400773525238, -0.02137596718966961, 0.003579382784664631, -0.03984829783439636, 0.01887364499270916, 0.027383901178836823, 0.039376161992549896, 0.026486841961741447, 0.008002708666026592, -0.011112906038761139, -0.012842104770243168, 0.007837461307644844, -0.036921050399541855, 0.02601470611989498, -0.027454720810055733, 0.01951102912425995, 0.027549147605895996, 0.0027900298591703176, 0.003479053732007742, 0.06534365564584732, -0.07152863591909409, -0.0480162538588047, -0.00963157881051302, 0.005689241457730532, 0.008049922063946724, -0.019688080996274948, -0.02988622337579727, 0.005438419058918953, -0.022556308656930923, 0.019463814795017242, -0.01300735305994749, 0.03175115957856178, -0.009607971645891666, -0.01761068031191826, -0.012464395724236965, -0.04346013814210892, 0.03231772407889366, -0.041429951786994934, -0.041500773280858994, 0.008958784863352776, -0.05250154808163643, -0.01905069686472416, 0.012901121750473976, 0.0036885642912238836, -0.0029331461992114782, 0.04572639241814613, 0.03380495309829712, 0.044805727899074554, 0.010274864733219147, 0.001183291431516409, -0.03373413160443306, 0.025400929152965546, -0.020726779475808144, 0.0031190498266369104, 0.030901314690709114, 0.004747919738292694, -0.017020510509610176, 0.008315498940646648, -0.015604102052748203, 0.037062693387269974, 0.05401238426566124, 0.006102360785007477, -0.007064338307827711, -0.004795133601874113, 0.03300232067704201, 0.007613196503371, 0.006167279556393623, -0.018118226900696754, -0.03179837390780449, -0.07105650007724762, -0.0007598442025482655, 0.0022706801537424326, -0.013998839072883129, -0.01489589735865593, 0.012098490260541439, -0.001993300160393119, 0.01961725950241089, 0.002561338944360614, -0.032270509749650955, -0.03696826472878456, 0.002649864414706826, 0.016560178250074387, -0.017976585775613785, 0.006456462666392326, -0.06930959969758987, 0.03493807837367058, -0.015556888654828072, -0.04648181051015854, -0.014305727556347847, 0.0026115034706890583, -0.019097909331321716, -0.008545665070414543, 0.021647445857524872, -0.0376056507229805, 0.02119891531765461, -0.003676760708913207, 0.006964009255170822, 0.01936938799917698, 0.014529991894960403, 0.016147058457136154, -0.018318885937333107, 0.001083700219169259, -0.018613969907164574, -0.015568691305816174, -0.016996903344988823, 0.010333881713449955, -0.006214492954313755, -0.014777863398194313, 0.015261802822351456, -0.008498451672494411, -0.029768189415335655, -0.0376056507229805, -0.024244194850325584, -0.04400309547781944, 0.018047407269477844, 0.025259288027882576, -0.010806017555296421, 0.001319768256507814, 0.06605185568332672, -0.006845975294709206, 0.0687902495265007, -0.012606036849319935, -0.026888158172369003, -0.030027862638235092, -0.025660604238510132, -0.03914009407162666, 0.049668729305267334, -0.010935855098068714, -0.004606279078871012, -0.00559776509180665, -0.032553791999816895, 0.010451915673911572, 0.04615131393074989, 0.007353521417826414, 0.00407512579113245, -0.040509287267923355, -0.011413892731070518, 0.016288699582219124, 0.010428308509290218, -0.008209268562495708, -0.0013920641504228115, -0.013420471921563148, -0.040013544261455536, -0.00811484083533287, -0.06147213652729988, 0.027596361935138702, 0.024338621646165848, -0.026392415165901184, -0.029555726796388626, -0.04780379310250282, 0.0017528056632727385, -0.016040828078985214, -0.031113777309656143, 0.013632933609187603, 0.03236493840813637, -0.01478966698050499, 0.009301083162426949, -0.0027856037486344576, -0.016383126378059387, 0.03762925788760185, -0.002205761382356286, -0.05396516993641853, -0.0012459970312193036, 0.004249225836247206, -0.012393576093018055, -0.03316757082939148, -0.05202941223978996, 0.009590267203748226, 0.017232971265912056, 0.002205761382356286, -0.015167376026511192, 0.01086503453552723, -0.007625000085681677, -0.0551455095410347, 0.02027825079858303, -0.020301857963204384, -0.009448626078665257, 0.0070525347255170345, 0.026109132915735245, -5.431410681921989e-05, 0.02787964418530464, 0.03208165615797043, 0.003901025513187051, 0.019983164966106415, -0.046245742589235306, 0.056986842304468155, -0.02013660967350006, 0.0060905572026968, -0.00878173392266035, -0.006456462666392326, 0.0198651310056448, -0.04534868523478508, 0.008882062509655952, -0.021104488521814346, -0.004865953698754311, 0.04933823645114899, -0.010794213972985744, -0.009560758247971535, 0.023193690925836563, 0.026038313284516335, 0.00756008131429553, -0.05665634572505951, -0.00579252140596509, -0.009360100142657757, -0.03840827941894531, 0.009442724287509918, -0.007082043215632439, -0.016241485252976418, 0.06038622185587883, -0.006273509934544563, 0.0016214927891269326, 0.0007181634427979589, -0.005326286889612675, 0.019168730825185776, -0.0022736310493201017, 0.04168962687253952, -0.01972348988056183, -0.011177824810147285, -0.007996806874871254, -0.006356133613735437, -0.011289956979453564, -0.04553753882646561, -0.02556617558002472, 0.024102553725242615, 0.00211280956864357, 0.0029434743337333202, -0.017681501805782318, -0.0025849458761513233, 0.013137190602719784, 0.03397019952535629, 0.015273606404662132, -0.025613389909267426, -0.026840943843126297, -0.003659055568277836, 0.0077253286726772785, -0.02450386993587017, -0.008162055164575577, 0.014175890013575554, -0.0411938838660717, -0.023783862590789795, -0.020042182877659798, -0.014388350769877434, 0.02302844449877739, -0.014341137371957302, 0.032058048993349075, -0.028682274743914604, -0.004863003268837929, -0.05037693306803703, -0.05401238426566124, -0.01693788729608059, -0.06260526180267334, -0.06109442561864853, -0.03569349646568298, 0.04185487702488899, -0.043224070221185684, 0.01947561837732792, 0.02764357626438141, 0.00043414399260655046, -0.009678792208433151, 0.0045679179020226, -0.01257062703371048, -0.025613389909267426, 0.013054566457867622, -0.002590847434476018, -0.019711686298251152, 0.01834249123930931, -0.022934015840291977, -0.006114163901656866, 0.0011958325048908591, 0.020077591761946678, 0.01859036274254322, -0.0014009167207404971, -0.0008240252500399947, -0.004680050071328878, 0.003942337352782488, 0.04976315796375275, 0.028210138902068138, -0.016465751454234123, 0.044876545667648315, 0.028564240783452988, -0.0025436338037252426, 0.02549535594880581, 0.014825076796114445, -0.013656539842486382, -0.009460429660975933, 0.012169310823082924, -0.018495935946702957, -0.05429566651582718, 0.026557661592960358, 0.006084655411541462, -0.021505804732441902, 0.036991871893405914, 0.022697947919368744, 0.03503250703215599, -0.038856811821460724, 0.023004837334156036, -0.01130176056176424, 0.010062403045594692, 0.031113777309656143, 0.01848413236439228, 0.03215247765183449, 3.241325612179935e-05, -0.03300232067704201, -0.01961725950241089, -0.012912925332784653, -0.007058436516672373, 0.03687383979558945, -0.04518343508243561, 0.005228908732533455, -0.04792182520031929, -0.07034830003976822, 0.020821206271648407, -0.002940523438155651, 0.03630727529525757, -0.038785990327596664, -0.006125967483967543, -0.019558243453502655, 0.0184487234801054, 0.001634771702811122, -0.008581075817346573, -0.005833833012729883, -0.040721748024225235, -0.020301857963204384, -0.008197464980185032, -0.009112228639423847, 0.04379063472151756, -0.004927921574562788, 0.014364744536578655, 0.029130805283784866, 0.04763854295015335, 0.011325367726385593, -0.02027825079858303, -0.005426615476608276, -0.02549535594880581, 0.0036708591505885124, -0.0013404241763055325, -0.026958977803587914, -0.07412538677453995, -0.025235680863261223, -0.0011213235557079315, -0.0067161377519369125, -0.00864599458873272, 0.0011803405359387398, 0.025684209540486336, -0.025259288027882576, -0.005252515431493521, -0.04629295691847801, -0.010558146052062511, 0.012971942313015461, 0.014872291125357151, -0.015013931319117546, -0.013928018510341644, -0.00751876924186945, 0.0039275833405554295, -0.04612770676612854, 0.025400929152965546, -0.00451480271294713, -0.013042762875556946, 0.0051462845876812935, -0.016749031841754913, -0.05826161056756973, -0.006167279556393623, -0.02492879144847393, 0.014659829437732697, 0.06109442561864853, -0.019074304029345512, 0.008988292887806892, -0.0003624014207161963, -0.03024032525718212, -0.018920859321951866, -0.009478134103119373, -0.010829624719917774, -0.0069226971827447414, -0.017315596342086792, 0.0051462845876812935, -0.05080185830593109, -0.0029124903958290815, -0.03965944051742554, 0.00756008131429553, -0.005370549391955137, 0.0035469233989715576, 0.01866118423640728, 0.014034248888492584, -0.017480842769145966, -0.00947223324328661, 0.007347620092332363, 0.005854489281773567, -0.021977940574288368, 0.00515808816999197, -0.010516834445297718, -0.024067142978310585, 0.007359423208981752, 0.0036413506604731083, 0.02915441058576107, 0.047827400267124176, 0.004317095503211021, 0.0017454285407438874, 0.04039125517010689, 0.013774573802947998, -0.009401412680745125, 0.0011818159837275743, 0.008970588445663452, 0.014034248888492584, -0.03389938175678253, -0.003493807977065444, 0.01848413236439228, 0.009625677019357681, 0.027242260053753853, 0.03014589659869671, 0.015922794118523598, -0.010788312181830406, -0.024763545021414757, -0.016996903344988823, -0.021753676235675812, 0.021612035110592842, -0.0065331850200891495, 0.02109268493950367, -0.006539086811244488, -0.007743034046143293, -0.0037298761308193207, 0.006562693510204554, 0.0023282216861844063, -0.010682081803679466, -0.0002487936581019312, -0.033049535006284714, -0.028611455112695694, -0.016524767503142357, -0.023299923166632652, -0.004895462188869715, -0.02986261621117592, 0.02338254638016224, -0.0422561913728714, -0.0037829915527254343, 0.018330689519643784, -0.006161377765238285, -0.019735293462872505, -0.02450386993587017, 0.07964938133955002, 0.0838041752576828, -0.003520365571603179, -0.010150928981602192, 0.025991098955273628, 0.009973878040909767, 0.003210526192560792, -0.029957043007016182, -0.006539086811244488, -0.024669118225574493, -0.0003640612994786352, -0.003992502111941576, -0.0023193692322820425, -0.006840073503553867, -0.0004286111507099122, -0.022367453202605247, -0.010274864733219147, -0.009590267203748226, -0.03038196638226509, 0.021257933229207993, -0.011726683005690575, 0.014966717921197414, -0.001354440813884139, -0.01965267024934292, 0.005580059718340635, -0.008162055164575577, -0.021812694147229195, -0.003995452541857958, -0.0002578306302893907, 0.05094349756836891, 0.0028018334414809942, -0.037204332649707794, -0.002164449542760849, -0.030358359217643738, -0.030570819973945618, 0.0025657652877271175, -0.008563370443880558, 0.06614628434181213, 0.02693537063896656, -0.033427245914936066, -0.029130805283784866, -0.004331849981099367, 0.010351586155593395, 0.022697947919368744, -0.03160952031612396, -0.06572136282920837, 0.03873877599835396, -0.007536474149674177, -0.03243575990200043, -0.021293343976140022, -0.008386319503188133, 0.04055650159716606, -0.002661667997017503, 0.0171857587993145, -0.030547212809324265, 0.025117646902799606, 0.008893866091966629, -0.01165586244314909, -0.01140799093991518, -0.0002668676315806806, 0.016064435243606567, 0.0031898703891783953, -0.0032783958595246077, 0.03194001689553261, -0.01512016262859106, -0.006946303881704807, -0.0038243033923208714, 0.018826432526111603, -0.005854489281773567, -0.03781811147928238, 0.00574825843796134, -0.02203695848584175, -0.0397774763405323, -0.010032895021140575, 0.05703405663371086, 0.03101934865117073, 0.0030836397781968117, -0.036212846636772156, 0.03569349646568298, 0.015226393006742, 0.01761068031191826, -0.04511261731386185, 0.006084655411541462, -0.02091563493013382, 0.042728327214717865, 0.01683165691792965, -0.003523316467180848, -0.002925769193097949, -0.0005237761070020497, 0.05264318734407425, 0.0043997191824018955, 0.040296826511621475, -0.004196110647171736, -0.010086010210216045, -0.02386648580431938, -0.014116873033344746, -0.02880030870437622, -0.022934015840291977, -0.005270220339298248, -0.029414085671305656, 0.013975231908261776, -0.009419117122888565, -0.0021113341208547354, 0.006208591163158417, 0.01100077386945486, -0.005054808221757412, -0.007837461307644844, -0.0017808388220146298, -0.022308437153697014, -0.027974070981144905, 0.006704334169626236, 0.012688660994172096, -0.010676180012524128, -0.008516157045960426, 0.0032636416144669056, 0.025164861232042313, 0.021824495866894722, 0.05608978122472763, 0.009755514562129974, 0.004744968842715025, 0.003930534236133099, 0.009761416353285313, 0.015792956575751305, 0.012948336079716682, 0.01242898590862751, 0.025377321988344193, -0.02592027746140957, -0.018885448575019836, 0.055476006120443344, 0.026958977803587914, 0.051982197910547256, 0.02858784794807434, 0.011821110732853413, -0.0016067385440692306, -0.00795549526810646, 0.008545665070414543, -0.018141834065318108, 0.022650735452771187, 0.0008786160033196211, -0.001627394580282271, -0.02405533939599991, 0.004747919738292694, 0.01859036274254322, -0.002885932568460703, 0.01837790198624134, -0.006615808699280024, -0.007235487457364798, 0.008026315830647945, -0.04010797291994095, 0.017764125019311905, -0.009236164391040802, 0.00633842870593071, -0.02134055644273758, 0.01820085197687149, -2.0436951672309078e-05, 0.006161377765238285, -0.017634287476539612, 0.044947367161512375, 0.01633591391146183, 0.013762771151959896, -0.023677632212638855, 0.04863002896308899, 0.005751209333539009, -0.006851876620203257, -0.00010069780546473339, 0.008893866091966629, 0.02887113019824028, -0.05764783173799515, -0.017587075009942055, 0.04388505965471268, 0.029815401881933212, 0.013054566457867622, -0.00924206618219614, 0.004945626948028803, 0.002444780431687832, 0.03380495309829712, 0.01894446648657322, 0.004833494313061237, 0.0037003676407039165, 0.015013931319117546, 0.021399574354290962, -0.022084170952439308, 0.017823142930865288, -0.00023127297754399478, -0.02010119892656803, -0.019345780834555626, 0.03791253641247749, 0.010168633423745632, 0.01569852977991104, 0.012629644013941288, 0.04124109819531441, 0.004821691196411848, 0.050093650817871094, -0.010888641700148582, -0.017197562381625175, 0.019806114956736565, 0.0009140262263827026, 0.05070742964744568, -0.011366679333150387, 0.0070525347255170345, 0.02249729074537754, -0.02464551106095314, -0.015238196589052677, 0.032199688255786896, -0.0013109156861901283, -0.0386679545044899, 0.016985099762678146, 0.023181887343525887, 0.010540440678596497, -0.025731423869729042, 0.034418731927871704, -0.0004079552018083632, 0.03361609950661659, 0.02397271618247032, -0.04133552685379982, -0.01385719794780016, -0.012057178653776646, 0.008350909687578678, 0.02809210494160652, 0.04277554154396057, -0.002463960787281394, 0.02643962763249874, -0.02384287863969803, -6.436544208554551e-05, 0.03673219680786133, 0.024173375219106674, -0.013208010233938694, 0.02693537063896656, 0.024480262771248817, 0.02806849777698517, 0.000578366860281676, 0.05037693306803703, 0.024456655606627464, -0.014589008875191212, -0.015970008447766304, -0.0034082334022969007, 0.0051197269931435585, -0.017964782193303108, -0.0032488873694092035, -0.05264318734407425, 0.013656539842486382, -0.014943111687898636, -0.008386319503188133, 0.013184404000639915, 0.017445433884859085, 0.013267028145492077, 0.01267685741186142, -0.009448626078665257, 0.07044272124767303, -0.05165170133113861, -0.021812694147229195, -0.00011711191473295912, -0.03883320465683937, -0.062274765223264694, -0.010516834445297718, 0.017622483894228935, 0.009714202955365181, -0.0017232971731573343, -0.014565402641892433, -0.006539086811244488, 0.0141522828489542, 0.033568885177373886, 0.005187596660107374, -0.046670664101839066, 0.012169310823082924, 0.010623064823448658, 0.027171438559889793, -0.018000192940235138, 0.008049922063946724, 0.014825076796114445, 0.03101934865117073, 0.010929953306913376, 0.024090750142931938, -0.002781177405267954, -0.024126160889863968, -0.036921050399541855, 0.012369968928396702, -0.02278057299554348, -0.012712267227470875, 0.037204332649707794, -0.020821206271648407, -0.010646671988070011, -0.028493421152234077, -0.017893962562084198, -0.007642704993486404, -0.015533281490206718, -0.009141737595200539, -0.014553599059581757, 0.005901702679693699, 0.02957933396100998, -0.001612640218809247, 0.02404353767633438, 0.008091234602034092, -0.0012120621977373958, 0.02587306499481201, 0.023677632212638855, -0.003995452541857958, 0.025755031034350395, 0.030618034303188324, -0.01464802585542202, -4.013619036413729e-05, 0.030901314690709114, -0.007784345652908087, -0.01753986068069935, 0.033922988921403885, 0.003735777921974659, 0.013054566457867622, -0.000665048137307167, -0.0011574714444577694, 0.01967627741396427, -0.030618034303188324, 0.023583203554153442, 0.019357584416866302, 0.004603328183293343, -0.011921439319849014, 0.013267028145492077, -0.01745723746716976, -0.013550309464335442, -0.002134941052645445, -0.036283668130636215, 0.024905186146497726, 0.022308437153697014, 0.000370147405192256, -0.014364744536578655, 0.0372515469789505, 0.0005761537468060851, 0.007294504437595606, -0.010664376430213451, -0.03710990771651268, -0.018578561022877693, -0.037487614899873734, 0.0040633222088217735, -0.001349276746623218, -0.01704411767423153, -0.05122677981853485, 0.0024801904801279306, 0.02278057299554348, 0.038431886583566666, 0.010209945961833, 0.0015728038270026445, 0.023335332050919533, -0.011856520548462868, -0.00899419467896223, 0.008545665070414543, 0.056703560054302216, -0.005296778399497271, -0.026817336678504944, -0.0005990228382870555, 0.01936938799917698, -0.0007155814673751593, 0.03316757082939148, -0.024338621646165848, 0.021848103031516075, 0.0007100485963746905, -0.0218362994492054, 0.04475851356983185, -0.005925309378653765, 0.022898606956005096, -0.006609906908124685, 0.006645317189395428, 0.025306500494480133, 0.017421826720237732, 0.0078728711232543, -0.005305630620568991, 0.002168875653296709, 0.0023193692322820425, 0.028635062277317047, 0.005706946365535259, 0.0016082139918580651, -0.02348877675831318, -0.008480747230350971, -0.0002108014450641349, -0.0184487234801054, 0.03781811147928238, -0.004302341490983963, 0.00982633512467146, -0.02450386993587017, 6.404269515769556e-05, 0.010062403045594692, -0.033993806689977646, 0.0003150033880956471, -0.014423761516809464, 0.018153637647628784, 0.012488002888858318, -0.010145027190446854, -0.015462460927665234, 0.0005189809598959982, 0.018425116315484047, 0.0005588174681179225, 0.028682274743914604, -0.007306308019906282, -0.008215170353651047, 0.0029051131568849087, -0.033781345933675766, -0.02736029401421547, 0.04711919277906418, -0.028611455112695694, -0.006131869275122881, -0.0066335140727460384, 0.013373258523643017, -0.02601470611989498, -0.016147058457136154, -0.04456965997815132, -0.005883997771888971, -0.001907725352793932, 0.03810139372944832, -0.03302592784166336, 0.025164861232042313, 0.0037151218857616186, -0.028162924572825432, 0.0005448009469546378, 0.008197464980185032, 0.007176470477133989, 0.01985332742333412, -0.012192917987704277, -2.8102247597416863e-05, 0.009076818823814392, -0.0279268566519022, 0.01605263166129589, 0.006651218980550766, 0.001156733720563352, 0.018495935946702957, -0.005718749947845936, -0.020892027765512466, -0.015013931319117546, -0.03368691727519035, 0.011573239229619503, 0.02809210494160652, 0.02189531736075878, -0.016855262219905853, -0.02196613699197769, 0.04929102212190628, -0.003930534236133099, 0.06614628434181213, 0.006350232288241386, 0.019274961203336716, -0.005609568208456039, 0.0017675599083304405, 0.0033315112814307213, 0.011112906038761139, -0.03229411691427231, -0.022934015840291977, 0.03340363875031471, 0.010935855098068714, 0.02400812692940235, -0.0175634678453207, -0.004246274940669537, 0.04600967466831207, 0.01563951186835766, 0.004924971144646406, -0.0034997097682207823, -0.004210864659398794, 0.023252708837389946, -0.013632933609187603, 0.003721023676916957, -0.0121811144053936, 0.014034248888492584, -0.033427245914936066, -0.01188602950423956, -0.009678792208433151, 0.02736029401421547, 0.009212558157742023, -0.002154121408239007, 0.02080940455198288, -0.0015432952204719186, 0.0013064894592389464, 0.040650926530361176, -0.010741098783910275, -0.004104634281247854, 0.03817221149802208, -0.011762093752622604, 0.031633127480745316, 0.0024093701504170895, 0.001483540516346693, -0.008463041856884956, 0.024126160889863968, 0.011366679333150387, -0.013727360405027866, -0.01761068031191826, -0.011608649045228958, 0.0013116534100845456, 0.004320046398788691, -0.0014341137139126658, 0.019983164966106415, -0.013585719279944897, 0.007931888103485107, 0.004060371313244104, -0.007524671033024788, -0.027029799297451973, 0.017138544470071793, -0.014140479266643524, -0.03321478143334389, 0.0060964589938521385, 0.005022348836064339, -0.011667666025459766, 0.02736029401421547, -0.010145027190446854, 0.016749031841754913, 0.02151760831475258, -0.006291215308010578, -0.014884094707667828, -0.015084751881659031, 0.03430069610476494, 0.0019992017187178135, -0.015179179608821869, 0.010634868405759335, -0.004798084497451782, -0.025825850665569305, -0.014128676615655422, 0.00042123402818106115, -0.003172165248543024, 0.014565402641892433, 0.003183968598023057, -0.023937305435538292, -0.022367453202605247, -0.04747329652309418, 0.02400812692940235, 0.01739821955561638, -0.034017413854599, -0.009271575137972832, -0.017799535766243935, 0.04794543236494064, -0.031987227499485016, 0.0064859711565077305, 0.020856617018580437, -0.0018678889609873295, 0.008870258927345276, -0.019062500447034836, 0.009112228639423847, -0.00412824098020792, 0.00525546632707119, -0.00880534015595913, -0.017964782193303108, -0.02196613699197769, 0.015651315450668335, -0.015250000171363354, 0.03302592784166336, -0.01045781746506691, -0.012759481556713581, -0.0376056507229805, 0.011791601777076721, -0.006314822006970644, 0.03375773876905441, -0.022485487163066864, -0.023913700133562088, -0.010050599463284016, -0.009000096470117569, 0.019711686298251152, -0.06057507544755936, -0.036708589643239975, -0.032837074249982834, -0.034277088940143585, -0.01766969822347164, -0.0068223681300878525, 0.028493421152234077, 0.002744291676208377, -0.0024993710685521364, 0.01975890062749386, 0.022863196209073067, -0.038431886583566666, 0.0184487234801054, 0.01785855181515217, -0.019605455920100212, -0.028918342664837837, 0.014907700940966606, -0.0018605118384584785, 0.0300750769674778, -0.030193110927939415, 0.007861068472266197, 0.02492879144847393, -0.015013931319117546, -0.020892027765512466, 0.03602399304509163, -0.02993343584239483, 0.021777283400297165, 0.019983164966106415, 0.03729876130819321, -0.02373664826154709, -0.04095781594514847, -0.007565983105450869, 0.026203559711575508, 0.0006263182149268687, 0.008421729318797588, -0.01743363030254841, -0.008333204314112663, 0.021800890564918518, -0.005848587490618229, 0.0021482198499143124, -0.02615634724497795, 0.003027573460713029, -0.030924921855330467, -0.036142028868198395, -0.02535371482372284, -0.0006071376847103238, 0.011620452627539635, -0.023476973176002502, -0.013125387020409107, -0.026982584968209267, 0.0329551063477993, -0.003523316467180848, 0.00820336677134037, 0.022509094327688217, -0.016985099762678146, -0.020325463265180588, 0.008575174026191235, -0.07554179430007935, 0.03411184251308441, 0.0023164183367043734, 0.026770124211907387, 0.027808822691440582, 0.002679373137652874, -0.01654837466776371, -0.04700116068124771, 0.01045781746506691, -0.006810565013438463, 0.022261222824454308, 0.001907725352793932, -0.00614367239177227, -0.029461300000548363, -0.019558243453502655, -0.021080881357192993, 0.008823045529425144, -0.0030983940232545137, -0.006078753620386124, 0.0075423759408295155, 0.035363003611564636, 0.023689433932304382, 0.00287412921898067, 0.024976005777716637, 0.01736280880868435, -0.007861068472266197, 0.011219136416912079, -0.014766059815883636, -0.009590267203748226, 0.022721555083990097, -0.0069226971827447414, 0.028611455112695694, 0.019357584416866302, 0.014388350769877434, 0.037416793406009674, 0.01887364499270916, 0.01750444993376732, 0.01207488402724266, -0.028989164158701897, -0.00014496057701762766, -0.015002128668129444, 0.015958204865455627, 0.027997678145766258, -0.006208591163158417, 0.02464551106095314, 0.00218215468339622, 0.011596845462918282, 0.001256324932910502, -0.03236493840813637, 0.01165586244314909, -0.00218215468339622, -0.019747097045183182, -0.02422058768570423, 0.027808822691440582, 0.011962751857936382, -0.06133049353957176, 0.01311358343809843, 0.004919069353491068, 0.034702010452747345, 0.008339106105268002, 0.006904992274940014, 0.007383029907941818, 0.010800115764141083, 0.04685952141880989, -0.021977940574288368, 0.03918730467557907, -0.01253521628677845, -0.029626548290252686, 0.0035852843429893255, 0.010534538887441158, 0.013491292484104633, 0.041595201939344406, -0.03989551216363907, 0.01761068031191826, 0.02017202042043209, -0.025117646902799606, -0.016772639006376266, -0.016347715631127357, -0.011720781214535236, -0.013385062105953693, 0.011242743581533432, 0.0009700923692435026, 0.0019018236780539155, -0.00864599458873272, 0.010127321816980839, -0.01165586244314909, 0.0012452593073248863, -0.008049922063946724, -0.0035144640132784843, 0.013314241543412209, 0.01784674823284149, 0.008970588445663452, -0.013184404000639915, 0.02771439589560032, -0.01894446648657322, 0.010599457658827305, 0.010764705948531628, 0.007689918857067823, -0.01619427278637886, -0.0007439833716489375, -0.006002031732350588, -0.04081617668271065, 0.01658378541469574, 0.017232971265912056, -0.010776509530842304, -0.024692723527550697, -0.007359423208981752, 0.013691950589418411, 0.019310371950268745, -0.013573916628956795, 0.003490857081487775, 0.0092243617400527, -0.011567337438464165, 0.001642148825339973, -0.05151006206870079, -0.025613389909267426, -0.026699302718043327, -0.001015092828311026, 0.006214492954313755, -0.009212558157742023, -0.013562113046646118, 0.00829189270734787, -0.02359500713646412, 0.041075851768255234, -0.06968730688095093, 0.020431695505976677, -0.011809307150542736, 0.011555533856153488], [0.03552361577749252, 0.019503161311149597, 0.03738106042146683, 0.01847945712506771, -0.06598147749900818, 0.07227145880460739, -0.014648478478193283, 0.0002884117129724473, 0.01588325761258602, 0.038373105227947235, -0.05838284268975258, -0.019619252532720566, 0.01117632444947958, 0.03258970007300377, -0.03406720981001854, -0.02302808314561844, -0.008495695888996124, 0.052050646394491196, 0.030120141804218292, -0.012105046771466732, 0.01521837618201971, 0.040652696043252945, -0.04542294889688492, 0.031492117792367935, -0.05622989311814308, -0.015492771752178669, 0.06906314194202423, 0.01923931948840618, 0.010015422478318214, -0.03643123060464859, 0.07041401416063309, -0.03961843624711037, 0.00510005559772253, 0.0008990398491732776, 0.0186377614736557, -0.019724788144230843, -0.0420035645365715, -0.00911836139857769, -0.01595713198184967, -0.0072081489488482475, -0.005936433095484972, 0.0028310189954936504, 0.0014128710608929396, -0.0022703558206558228, -0.005184485111385584, 0.022014932706952095, 0.0010151300812140107, -0.05910049006342888, 0.0014352976577356458, 0.03172430023550987, 0.031048864126205444, -0.010801670141518116, 0.008353221230208874, 0.03552361577749252, 0.005247807130217552, 0.03875303640961647, 0.012780481018126011, 0.034172747284173965, 0.023977912962436676, -0.017181357368826866, -0.0009867671178653836, -0.01967201940715313, -0.04126480594277382, 0.012242244556546211, 0.03075336292386055, -0.026764079928398132, 0.005429857410490513, 0.013825293630361557, -0.03522811457514763, -0.010901929810643196, 0.03862639144062996, -0.024885527789592743, 0.030732255429029465, -0.010954697616398335, -0.0073981150053441525, -0.009540507569909096, 0.0013106325641274452, 0.03708555921912193, 0.03537586331367493, -0.029486922547221184, -0.01155625656247139, 0.023724624887108803, -0.0035460293292999268, 0.01783568412065506, -0.031935371458530426, 0.012928232550621033, -0.05981813743710518, -0.01403636671602726, 0.0070340135134756565, 0.021339498460292816, -0.01847945712506771, 0.03843642771244049, -0.03227308765053749, 0.01767737790942192, 0.026067538186907768, -0.0010138108627870679, 0.06370188295841217, -0.03862639144062996, -0.015524432063102722, 0.057327475398778915, -0.012854356318712234, -0.05221950635313988, -0.044452011585235596, 0.02302808314561844, 0.017297446727752686, -0.052050646394491196, -0.027523942291736603, 0.011841204948723316, 0.026489684358239174, -0.006173890549689531, 0.028368234634399414, -0.02632082626223564, 0.042847856879234314, 0.05855169892311096, 0.005989201366901398, -0.017846237868070602, -0.022057147696614265, -0.01792011223733425, 0.015028410591185093, 0.020495206117630005, -0.004197717644274235, -0.011197431944310665, 0.0075722504407167435, -0.07459326088428497, 0.0016991391312330961, -0.020748494192957878, -0.04196134954690933, -0.005667314864695072, -0.03651566058397293, 0.014289653860032558, 0.06648804992437363, -0.0546257384121418, 0.04386100545525551, -0.049602195620536804, 0.016970284283161163, -0.0477447547018528, 0.004939112346619368, -0.004263678099960089, 0.00489953625947237, 0.0183528121560812, 0.023450229316949844, 0.05766519159078598, 0.018088972195982933, -0.012601069174706936, -0.04685824736952782, -0.039175182580947876, -0.04196134954690933, 0.061928872019052505, -0.0019458308815956116, 0.009023378603160381, 0.012653836980462074, 0.043692149221897125, -0.010759455151855946, 0.02440005913376808, 0.007255640346556902, -0.003232058137655258, -0.017687931656837463, 0.03191426396369934, 0.03982950747013092, 0.054963454604148865, -0.010659195482730865, 0.03911186009645462, -0.022901440039277077, -0.034489355981349945, 0.00945607852190733, -0.03518589958548546, 0.005221422761678696, -0.002852126257494092, -0.03822535276412964, -0.03951289877295494, -0.01331871747970581, -0.04001947492361069, -0.021445035934448242, -0.025223245844244957, -0.05234614759683609, -0.03505925461649895, 0.013709203340113163, 0.027481727302074432, -0.007255640346556902, -0.007239810191094875, 0.026447469368577003, -0.008743706159293652, -0.07252474129199982, -3.4278778912266716e-05, 0.016505923122167587, 0.03463710844516754, -0.0062002744525671005, -0.01998862996697426, -0.0041871643625199795, -0.02695404551923275, 0.018806619569659233, -0.005173931363970041, -0.00888090394437313, -0.006131676025688648, 0.00775693915784359, 0.014859551563858986, -0.05487902835011482, -0.03619905188679695, 0.034890398383140564, -0.03071114793419838, 0.04529630392789841, -0.055005669593811035, 0.008754259906709194, -0.025940893217921257, -0.04183470457792282, -0.0070920586585998535, -0.03634680062532425, -0.03062671795487404, 0.04196134954690933, 0.011609025299549103, 0.026890723034739494, 0.029803533107042313, -0.021487249061465263, -0.003770294599235058, 0.02395680546760559, 0.021529464051127434, 0.01888049580156803, 0.009762134402990341, 0.025012170895934105, -0.021888289600610733, -0.023977912962436676, -0.024526704102754593, 0.03615683689713478, -0.03543918579816818, -0.030457859858870506, 0.02530767396092415, 0.003276911098510027, -0.017899004742503166, 0.00029072031611576676, -0.07552198320627213, -0.03518589958548546, 0.005329597741365433, 0.0010065552778542042, 0.007693617604672909, -0.0028072732966393232, -0.022859225049614906, 0.0005075650406070054, -0.03227308765053749, -0.0019906838424503803, 0.029085883870720863, 0.031238829717040062, 0.030457859858870506, -0.029972391203045845, 0.02347133681178093, 0.024864420294761658, 0.004820383619517088, 0.02699626050889492, 0.0047887228429317474, 0.028621522709727287, 0.0316820852458477, 0.01047450676560402, 0.016505923122167587, 0.06568597257137299, -0.06201329827308655, 0.006675189360976219, -0.003295379923656583, 0.016220973804593086, -0.05859391391277313, -0.0032056740019470453, -0.022542616352438927, -0.027924980968236923, 0.0006282725371420383, -0.01886994205415249, -0.00823713093996048, -0.05614546686410904, 0.008854519575834274, 0.023682409897446632, -0.010353139601647854, 0.0026529261376708746, 0.04082155227661133, -0.008722599595785141, 0.025687605142593384, -0.022247113287448883, -0.03976618871092796, -0.07919465750455856, 0.049686625599861145, 0.007836091332137585, 0.0032056740019470453, 0.0016793509712442756, -0.011007466353476048, -0.014289653860032558, 0.0003016037808265537, 0.05297936871647835, -0.06154894083738327, 0.014764568768441677, 0.007271470967680216, -0.01624208129942417, -0.02995128370821476, -0.020664064213633537, 0.03932293504476547, 0.046773817390203476, 0.0016081137582659721, 0.0041212039068341255, 0.01361421961337328, 0.008611786179244518, 0.011661793105304241, 0.03543918579816818, 0.050530917942523956, -0.025539854541420937, -0.00023910633171908557, 0.02383016236126423, 0.0224370788782835, -0.014131349511444569, -0.0006328897434286773, -0.02404123544692993, 0.02762947976589203, 0.021824967116117477, 0.010558935813605785, -0.013761971145868301, -0.012558854185044765, 0.025603177025914192, 0.0022954207379370928, -0.03619905188679695, -0.02834712713956833, -0.044452011585235596, 0.018215615302324295, -0.0017030966700986028, 0.04685824736952782, 0.04179248958826065, -0.025940893217921257, 0.026384146884083748, -0.02315472811460495, 0.016263188794255257, -0.031175509095191956, 0.03324402496218681, -0.04580288007855415, -0.015239483676850796, 0.05069977790117264, -0.0014128710608929396, -0.014173563569784164, 0.02099122852087021, -0.0503198467195034, 0.015925470739603043, -0.01998862996697426, -0.029740210622549057, -0.011841204948723316, 0.0013640604447573423, 0.024843312799930573, -0.02323915623128414, -0.024695562198758125, -0.012622175738215446, -0.014616817235946655, -0.03031010925769806, 0.009239728562533855, -0.035692475736141205, 0.0020381754729896784, -0.018563885241746902, -0.003933876287192106, 0.037972066551446915, 0.07362232357263565, 0.043206680566072464, 0.03472153842449188, -0.04077933728694916, 0.003770294599235058, -0.0738333985209465, -0.017825130373239517, 0.036452338099479675, -0.010801670141518116, -0.01759294979274273, 0.006775449030101299, -0.022542616352438927, -0.018806619569659233, 0.03733884543180466, 0.05264165252447128, 0.0213606059551239, -0.022542616352438927, -0.05690532922744751, 0.00040466684731654823, 0.022985870018601418, -0.03128104656934738, -0.009688259102404118, 0.03318070247769356, 0.013434807769954205, -0.003907492384314537, 0.0283893421292305, 0.01882772706449032, -0.03102775663137436, 0.012907125055789948, -0.015070624649524689, 0.024378951638936996, 0.02570871263742447, 0.03334956243634224, -0.001153646851889789, 0.03638901561498642, 0.024505596607923508, 0.03611462190747261, -0.015893809497356415, -0.045971740037202835, 0.049602195620536804, 0.029824640601873398, -0.006907369941473007, -0.0148384440690279, -0.0014036366483196616, 0.03315959498286247, -0.031576547771692276, -0.0028705953154712915, 0.02699626050889492, 0.043565504252910614, -0.006838771048933268, -0.04998213052749634, 0.026025323197245598, -0.046731602400541306, 0.008421819657087326, 0.036177944391965866, -0.026932938024401665, 0.0143740838393569, -0.008891457691788673, -0.029486922547221184, 0.007355900481343269, 0.01081750076264143, -0.01020011119544506, -0.0064324550330638885, 0.03588243946433067, 0.017381876707077026, 0.004081627819687128, 0.010126235894858837, 0.0076302955858409405, 0.010068190284073353, -0.035776905715465546, -0.002418107120320201, 0.048842333257198334, 0.0091764060780406, -0.000464690790977329, 0.02378794737160206, -0.02275368943810463, 0.030162356793880463, 0.01497564185410738, -0.03106997162103653, 0.04240460321307182, -0.012896571308374405, 0.007102612406015396, 0.016147097572684288, 0.025181030854582787, 0.04394543543457985, -0.007783323526382446, -0.011535149067640305, -0.0224370788782835, -0.02307029813528061, 0.008785921148955822, 0.004759700037539005, -0.008247684687376022, -0.015471664257347584, 0.04179248958826065, -0.005115886218845844, -0.007830815389752388, -0.035966869443655014, -0.024737777188420296, 0.02815716154873371, 0.01385695394128561, 0.0044826664961874485, 0.008073548786342144, 0.003978729248046875, -0.04411429539322853, -0.00198408798314631, -0.027481727302074432, -0.04955998435616493, 0.005107970908284187, -0.03807760030031204, 0.008553740568459034, 0.012822696007788181, 0.061042364686727524, 0.05627210810780525, 0.03313848748803139, 0.033328454941511154, 0.0056725917384028435, -0.020801261067390442, -0.02307029813528061, -0.005989201366901398, -0.023281371220946312, -0.03951289877295494, -0.03280077129602432, -0.01783568412065506, -0.004796638153493404, -0.009165853261947632, 0.031808726489543915, -0.011545702815055847, -0.008464034646749496, -0.059691496193408966, -0.01767737790942192, 0.025687605142593384, 0.015102285891771317, 0.048166900873184204, -0.049011193215847015, -0.0367056243121624, 0.03735995292663574, -0.0009076146525330842, 0.08341611921787262, 0.016980838030576706, -0.015440003015100956, -0.04635167121887207, 0.001009193598292768, 0.011830652132630348, 0.06340638548135757, -0.007007629610598087, -0.020706279203295708, -0.01831059902906418, 0.015566647052764893, 0.004213548265397549, 0.022458186373114586, 0.01750851981341839, 0.00660659046843648, -0.010601150803267956, -0.04054715856909752, 0.012886017560958862, 0.005862557329237461, -0.011482381261885166, -0.01922876574099064, 0.008923118934035301, -0.010611704550683498, -0.018173400312662125, 0.005751743912696838, 0.027967195957899094, 0.004567096009850502, 0.003292741486802697, -0.00484940642490983, -0.022563721984624863, 0.03142879530787468, -0.017371322959661484, -0.049053408205509186, 0.008147425018250942, 0.020463544875383377, -0.019323749467730522, 0.05926935002207756, -0.010690856724977493, -0.02855820208787918, 0.02440005913376808, 0.018046757206320763, -0.052768293768167496, 0.00436921464279294, -0.030289001762866974, -0.015228929929435253, -0.01551387831568718, -0.01847945712506771, 0.013149859383702278, 0.030985543504357338, 0.017856791615486145, -0.017814576625823975, 0.0345526784658432, -0.03594576194882393, 0.008099933154881, 0.01220002956688404, -0.0273128692060709, 0.035608045756816864, -0.013867507688701153, 0.007530035451054573, 0.006844047922641039, 0.013888615183532238, 0.01623152755200863, -0.006263596471399069, -0.03951289877295494, -0.003076391527429223, 0.0311121866106987, -0.012389996089041233, 0.027418406680226326, -0.010390077717602253, -0.002910171402618289, 0.021054549142718315, -0.016748657450079918, -0.020178595557808876, 0.022985870018601418, -0.008369051851332188, 0.0296768881380558, -0.01331871747970581, -0.040652696043252945, -0.03816203027963638, 0.03155544027686119, -0.034616000950336456, -0.0006074950215406716, 0.017445199191570282, -0.014859551563858986, -0.002352146664634347, -0.005260998848825693, 0.023386908695101738, -0.00606835400685668, -0.006516884546726942, 0.011007466353476048, 0.004881067201495171, -0.04113816097378731, 0.002833657432347536, 0.025286566466093063, -0.007165934424847364, 0.013276503421366215, 0.00840071216225624, -0.03318070247769356, -0.03695891425013542, 0.01097580511122942, -0.03102775663137436, -0.021571679040789604, -0.03951289877295494, 0.024294523522257805, 0.0031951202545315027, 0.006105291657149792, -0.003002515994012356, -0.01812063157558441, 0.025455424562096596, 0.038816358894109726, -0.0017426729900762439, -0.0065485453233122826, -0.018859388306736946, 0.03362395614385605, 0.011767329648137093, -0.05027763172984123, 0.004271593410521746, 0.034172747284173965, -0.02323915623128414, -0.039006322622299194, 0.0011358375195413828, -0.03835199773311615, 0.042489029467105865, -0.009239728562533855, 0.018173400312662125, 0.013888615183532238, -0.03322291746735573, -0.019292088225483894, -0.01939762569963932, 0.00022228644229471684, -0.023766839876770973, -0.0325474850833416, -0.004348107613623142, 0.008627615869045258, -0.04084265977144241, 0.019450392574071884, 0.012389996089041233, -0.00653799157589674, -0.027017366141080856, -0.013424254022538662, -0.0015962409088388085, -0.0014761930797249079, -0.018901603296399117, -0.01964036002755165, -0.04219352826476097, 0.0031898433808237314, -0.027460619807243347, -0.06441953778266907, -0.014511280693113804, 0.019365964457392693, -0.013181519694626331, 0.014585156925022602, -0.001305355690419674, 0.00803661160171032, 0.05542781576514244, 0.02003084495663643, 0.03176651522517204, -0.06741677224636078, 0.02262704446911812, 0.012632729485630989, 0.00020859966753050685, 0.0021186470985412598, 0.019703680649399757, 0.011039127595722675, 0.0008297814638353884, -0.0047808075323700905, -0.06129565089941025, -0.007070951629430056, 0.0019524268573150039, 0.0030869452748447657, -0.0016358171124011278, 0.012411102652549744, 0.023661304265260696, 0.031534332782030106, -0.05099527910351753, 0.01687530055642128, 0.013371486216783524, 0.018331706523895264, 0.024526704102754593, 0.020695725455880165, 0.06488389521837234, -0.017381876707077026, 0.030225679278373718, -0.023450229316949844, -0.04147588089108467, -0.0235135518014431, -0.0068546016700565815, -0.012041725218296051, -0.02199382521212101, -0.018447795882821083, -0.028241591528058052, 0.010611704550683498, 0.019482053816318512, 0.06416624784469604, -0.005089501850306988, -0.0023218048736453056, -0.025582069531083107, 0.011376844719052315, 0.006126399151980877, 0.000763161457143724, 0.003617266658693552, -0.011946741491556168, -0.01675921119749546, 0.036811161786317825, 0.02203604020178318, 0.03347620740532875, 0.01687530055642128, 0.02378794737160206, 0.013181519694626331, 0.036726731806993484, 9.927035716827959e-05, -0.008326836861670017, 0.015239483676850796, -0.058847203850746155, 0.0045327963307499886, 0.02779833786189556, 0.013941383920609951, -0.05306379869580269, -0.042214635759592056, -0.000808674143627286, -0.012938786298036575, -0.0197142343968153, 0.03432049974799156, -0.002841572742909193, -0.0028943410143256187, -0.0035961593966931105, -0.06340638548135757, -0.022289328277111053, 0.008289898745715618, -0.007239810191094875, 0.01115521788597107, -0.00748782092705369, 0.040969304740428925, 0.00416869530454278, -0.05998699739575386, -0.006886262446641922, -0.028452664613723755, -0.020463544875383377, -0.02610975317656994, -0.022057147696614265, -0.03366617113351822, -0.02583535760641098, -0.0214344821870327, 0.017497966066002846, 0.0187116377055645, -0.0016226250445470214, 0.02195161022245884, 0.03714887797832489, -0.006954861339181662, -0.0015276421327143908, -0.03347620740532875, 0.03938625380396843, 0.0013271225616335869, -0.007197595201432705, 0.0035381142515689135, -0.01159847155213356, 0.0007592038600705564, -0.0024405336007475853, 0.007160657551139593, 0.03702223673462868, 0.006036692764610052, 0.03147101029753685, 0.05082642287015915, 0.01155625656247139, 0.0007822899497114122, 0.0037571026477962732, -0.036177944391965866, -0.03543918579816818, 0.01962980628013611, -0.0017228848300874233, 0.0021476696711033583, 0.02703847363591194, -0.009909885935485363, 0.02275368943810463, 0.016347616910934448, -0.02355576679110527, -0.00501826498657465, 0.011967848986387253, 0.024294523522257805, 0.008928395807743073, -0.014205224812030792, 0.011682900600135326, 0.0029787702951580286, 0.016326511278748512, -0.018817173317074776, 0.006569652818143368, -0.04723817855119705, 0.04008279740810394, 0.01365643460303545, 0.008617062121629715, -0.04191913455724716, 0.010374247096478939, -0.011746222153306007, -0.0065063307993113995, -0.027903873473405838, 0.00019590229203458875, 0.02038966864347458, 0.05521674454212189, 0.007039290387183428, -0.017582396045327187, 0.011229093186557293, 0.001982768764719367, 0.027777230367064476, -0.01771959289908409, -0.01795177347958088, 0.017297446727752686, -0.009851840324699879, -0.019724788144230843, -0.02807273343205452, -0.03482707589864731, 0.02235264889895916, -0.03510146960616112, -0.007841368205845356, 0.0034853459801524878, 0.04601395130157471, 0.03465821593999863, -0.009609106928110123, 0.03862639144062996, 0.05314822494983673, -0.012864910066127777, -0.04863126203417778, 0.02914920635521412, 0.003057922702282667, -0.02203604020178318, -0.02275368943810463, 0.03246305510401726, -0.007508928421884775, 0.04259456694126129, -0.026489684358239174, -0.0052451686933636665, -0.006822940427809954, -0.016379278153181076, 0.007767492905259132, 5.466465518111363e-05, 0.0354180783033371, 0.021540017798542976, 0.008490419015288353, 0.0001787525980034843, 0.027249546721577644, -0.016368724405765533, 0.0022545254323631525, 0.010126235894858837, -0.022859225049614906, 0.005772851407527924, 0.021603340283036232, 0.020062506198883057, -0.0105747664347291, -0.018205061554908752, -0.0019695765804499388, -0.01719191111624241, 8.731503476155922e-05, 0.0012011383660137653, -0.013582559302449226, 0.015102285891771317, 0.03588243946433067, 0.014785676263272762, -0.045127443969249725, -0.03537586331367493, -0.005334874615073204, 0.02583535760641098, 0.0009471909143030643, 0.013941383920609951, -0.024083450436592102, 0.0023864461109042168, -0.003706972813233733, -0.021529464051127434, -0.021054549142718315, -0.005535393953323364, -0.003725441638380289, -0.02011527307331562, 0.008923118934035301, -0.006896816194057465, -0.00883868895471096, -0.004131757654249668, -0.006421901285648346, 0.022922547534108162, 0.012442763894796371, -0.010268710553646088, 0.006511607673019171, -0.005263637285679579, 0.014046920463442802, -0.004152864683419466, -0.011746222153306007, -0.02771390788257122, 0.03128104656934738, -0.017846237868070602, 0.010242326185107231, -0.02963467501103878, -0.05766519159078598, -0.026004215702414513, -0.020526867359876633, 0.06361745297908783, 0.01655868999660015, 0.033771708607673645, -0.03925961256027222, 0.009788518771529198, 0.02587757259607315, 0.019144337624311447, 0.00396817596629262, 0.003659481182694435, -0.011851758696138859, 0.011397951282560825, 0.029845748096704483, 0.007107889279723167, 0.016938623040914536, 0.01736076921224594, 0.04411429539322853, 0.002841572742909193, 0.004801915027201176, 0.011915081180632114, -0.04563402011990547, 0.008458757773041725, -0.018648315221071243, 0.010115682147443295, -0.045127443969249725, -0.0011899250093847513, 0.015482218004763126, -0.024801097810268402, -0.005941709969192743, -0.02570871263742447, 0.005371812265366316, -0.025582069531083107, -0.0023033360484987497, 0.03961843624711037, 0.009788518771529198, 0.021371159702539444, -0.03974508121609688, -0.013371486216783524, 0.040167227387428284, -0.020326348021626472, -0.01077528577297926, 0.012326673604547977, -0.005076310131698847, -0.023302478715777397, 0.07822372019290924, -0.028262699022889137, -0.014912320300936699, -0.005340151488780975, 0.023576874285936356, -0.023365801200270653, 0.016305403783917427, -0.006015585735440254, -0.03459489345550537, -0.025012170895934105, -0.02543431892991066, 0.039365146309137344, 0.014152457006275654, 0.05762297660112381, -0.011028573848307133, -0.012727712281048298, -0.0051422701217234135, 0.00935581885278225, 0.01583048887550831, -0.029085883870720863, 0.007830815389752388, -0.025181030854582787, 0.00843765027821064, -0.031935371458530426, -0.0015381957637146115, 0.00830045249313116, 0.007403391879051924, 0.01660090498626232, 0.014226332306861877, -0.02383016236126423, 0.011640685610473156, -0.027545049786567688, 0.03759213164448738, -0.007693617604672909, 0.001092303660698235, -0.0172763392329216, -0.015112839639186859, 0.006574929691851139, 0.01555609330534935, -0.0187116377055645, 0.027165118604898453, 0.015862150117754936, 0.03746549040079117, -0.039449576288461685, 0.05458352342247963, 0.034257177263498306, -0.007846645079553127, 0.0047808075323700905, -0.025012170895934105, 0.01803620345890522, -0.03235751762986183, -0.030204571783542633, 0.018247276544570923, 0.005978647619485855, -0.007904690690338612, 0.0035750519018620253, 0.004105373285710812, 0.009482462890446186, -0.010622257366776466, 0.010258156806230545, 0.015081178396940231, 0.03849974647164345, 0.0002849487937055528, 0.011440166272222996, -0.019682573154568672, 0.017930665984749794, 0.027777230367064476, -0.011429612524807453, -0.0048467679880559444, -0.026932938024401665, 0.02583535760641098, -0.0063163647428154945, 0.01751907356083393, 0.014511280693113804, -0.022289328277111053, 0.045971740037202835, 0.015503324568271637, 0.016052115708589554, 0.023218050599098206, -0.0238723773509264, 0.0434388592839241, 0.024611132219433784, 0.020579634234309196, 0.036578983068466187, 0.01564052328467369, 0.0027545050252228975, -0.006759618408977985, -0.02307029813528061, 0.0011213262332603335, -0.011535149067640305, -0.02364019677042961, -0.004184525925666094, 0.0016885853838175535, 0.061802227050065994, -0.0172763392329216, -0.01097580511122942, 0.05796069651842117, -0.02851598709821701, -0.028938133269548416, 0.00925555918365717, -0.014173563569784164, 0.03252637758851051, 0.04563402011990547, -0.01812063157558441, 0.008247684687376022, -0.022014932706952095, -0.008495695888996124, 0.029655782505869865, 0.046689387410879135, 0.015693290159106255, 0.010179003700613976, 0.02023136429488659, 0.006617144215852022, 0.015387235209345818, 0.007772769778966904, 0.03318070247769356, 0.012178922072052956, -0.03501703962683678, -0.017930665984749794, -0.003057922702282667, -0.016379278153181076, -0.010485060513019562, -0.000550109485629946, 0.014564049430191517, 8.323373913299292e-05, -0.0009709366131573915, -0.00515018543228507, 0.006105291657149792, -0.03934403881430626, 0.006458839401602745, 0.010722517967224121, 0.03733884543180466, -0.018331706523895264, 0.015038964338600636, 0.009234451688826084, -0.010052360594272614, -0.011081341654062271, -0.0050710332579910755, 0.011281860992312431, 0.010912483558058739, 0.01155625656247139, 0.010226495563983917, -0.0008931033662520349, -0.003543390892446041, 0.050488702952861786, -0.015936024487018585, -0.027861660346388817, 0.01691751554608345, -0.017424091696739197, -0.02414677105844021, -0.029529137536883354, 0.01271715946495533, 0.011049681343138218, 0.02034745365381241, 0.003931237850338221, 0.027903873473405838, -0.029022561386227608, -0.017972880974411964, -0.02359798178076744, 0.012495532631874084, -0.024969957768917084, -0.012516639195382595, 0.023386908695101738, -0.012052278965711594, -0.026130858808755875, -0.012611622922122478, -0.019935861229896545, -0.008252961561083794, 0.006358579732477665, -0.022415971383452415, -0.026721864938735962, -0.012484978884458542, -0.012453317642211914, 0.008047165349125862, -0.027924980968236923, 0.020906798541545868, -0.0050050728023052216, -0.01477512251585722, 0.0005092140636406839, -0.026088645681738853, 0.02771390788257122, 0.003226781263947487, -0.02575092762708664, -0.005545947700738907, 0.02855820208787918, 0.013709203340113163, -0.030732255429029465, 0.03976618871092796, -0.02739729918539524, 0.016885854303836823, 0.011007466353476048, -0.017466304823756218, 0.007197595201432705, -0.013223734684288502, -0.012959892861545086, 0.006585482973605394, -0.0034958994947373867, 0.009276666678488255, 0.02570871263742447, 0.024969957768917084, -0.016706442460417747, -0.024104557931423187, -0.04880011826753616, -0.0038758311420679092, -0.01736076921224594, -0.015112839639186859, -0.009049762971699238, 0.01624208129942417, 0.05466795340180397, -0.016463708132505417, 0.009424417279660702, -0.00043434902909211814, 0.010463953018188477, 0.00043533844291232526, -0.006553822197020054, 0.013044322840869427, -2.7146814318257384e-05, -0.0662347599864006, -0.03195647895336151, -0.03334956243634224, 0.05006655678153038, 0.024948850274086, 0.0020949013996869326, -0.012854356318712234, 0.0008898053783923388, -0.028136054053902626, 0.010242326185107231, 0.06897871196269989, 0.04850461706519127, -0.0003296369395684451, 0.024210093542933464, 0.024378951638936996, -0.04058937355875969, 0.021803859621286392, 0.034088317304849625, 0.01291767880320549, -0.012178922072052956, -0.0094613553956151, 0.015133947134017944, -0.01655868999660015, 0.0176351647824049, 0.002833657432347536, -0.009704089723527431, 0.008004950359463692, 0.016410939395427704, 0.0038626391906291246, -0.01771959289908409, 0.0036330970469862223, -0.03959732875227928, 0.018110079690814018, -0.0294658150523901, 0.0009148702956736088, -0.014912320300936699, -0.03313848748803139, 0.02646857686340809, 0.03695891425013542, 0.041328128427267075, 0.017339661717414856, 0.020748494192957878, -0.010590597055852413, -0.012791034765541553, 0.04023054614663124, -0.0020817092154175043, -0.022901440039277077, 0.0012519278097897768, -0.016453154385089874, 0.01635817065834999, -0.02503327839076519, -0.036768946796655655, 0.0022162683308124542, 0.005089501850306988, 0.022120468318462372, 0.012769927270710468, -0.020305240526795387, -0.04993991553783417, 0.03811981528997421, 0.01273826602846384, 0.059480421245098114, 0.03915407508611679, -0.02950803004205227, -0.01886994205415249, -0.02018914930522442, 0.0016556052723899484, 0.0010316201951354742, -0.014352976344525814, 0.02615196630358696, -0.004414068069308996, -0.0005860578967258334, -0.005205592140555382, 0.012157815508544445, 0.017972880974411964, -0.03170319274067879, 0.009387480095028877, -0.01447962038218975, 0.009783241897821426, -0.01311819814145565, -0.01751907356083393, 0.020811814814805984, -0.018532225862145424, 0.00558816222473979, 0.02575092762708664, 0.024611132219433784, 0.02695404551923275, 0.002809911733493209, 0.027481727302074432, -0.026363039389252663, 0.0023640196304768324, -0.03776099160313606, 0.013920276425778866, 0.018373919650912285, 0.009234451688826084, -0.004881067201495171, -0.022183790802955627, -0.017941219732165337, 0.0352703295648098, 0.00170177745167166, 0.017044158652424812, 0.01951371505856514, -0.012632729485630989, -0.005321682430803776, 0.006574929691851139, 0.01081750076264143, 0.03216755390167236, -0.04331221804022789, -0.005472072400152683, -0.013593113049864769, 0.00421882513910532, 0.04004058241844177, -0.0009854478994384408, -0.025286566466093063, 0.04871568828821182, -0.059522636234760284, 0.005625100340694189, -0.011440166272222996, -0.014722354710102081, 0.015693290159106255, -0.01667478121817112, -0.02015748806297779, -0.0013126113917678595, -0.005313767120242119, -0.009303050115704536, -0.01951371505856514, 0.010047083720564842, -0.008026057854294777, -0.026088645681738853, 0.0003505793574731797, 0.018848834559321404, 0.009587999433279037, -0.02530767396092415, 0.03651566058397293, -0.012083939276635647, -0.009345265105366707, -0.018289491534233093, -0.026004215702414513, 0.03191426396369934, 0.014922874048352242, -0.009033932350575924, -0.003590882522985339, -0.006838771048933268, 0.0069179232232272625, 0.002532878192141652, 0.006152783054858446, -0.016685334965586662, -0.010210664942860603, 0.010004868730902672, 0.010548382066190243, 0.03273744881153107, -0.024568917229771614, 0.005698975641280413, -0.01847945712506771, -0.03216755390167236, -0.01647426187992096, -0.020748494192957878, -0.008754259906709194, -0.01159847155213356, 0.022057147696614265, -0.009577445685863495, -0.04278453439474106, 0.0007493097800761461, 0.0010725156171247363, 0.051248569041490555, 0.015007303096354008, -0.026173073798418045, -0.002757143462076783, -0.019102122634649277, 0.024484489113092422, 0.015788273885846138, -0.00658020656555891, 0.02699626050889492, -0.01564052328467369, 0.013878061436116695, 0.022542616352438927, -0.025012170895934105, 0.005192400421947241, 0.0001238405966432765, -0.005250445567071438, 5.166036771697691e-06, -0.0378454215824604, -0.0359879769384861, 0.03849974647164345, 0.031492117792367935, -0.03360284864902496, -0.021244514733552933, 0.00897588673979044, 0.02199382521212101, -0.0640818178653717, -0.005535393953323364, 0.042045775800943375, 0.017571842297911644, -0.028093840926885605, -0.030500074848532677, 0.018975479528307915, -0.017529627308249474, -0.004857321735471487, -0.006822940427809954, 0.016864746809005737, -0.009202790446579456, 0.017255231738090515, -0.025729820132255554, 0.010078744031488895, -0.0007987800636328757, 0.00728730158880353, -0.01902824640274048, 0.005110609345138073, 0.01872219145298004, 0.005105332471430302, 0.025370996445417404, -0.031618762761354446, 0.0004980007652193308, 0.013550898060202599, 0.011788437142968178, 0.004395599011331797, -0.022605936974287033, -0.005036733578890562, -0.008933672681450844, -0.00036871846532449126, 0.022859225049614906, 0.020980674773454666, -0.022563721984624863, 0.02619418129324913, 0.02819937653839588, -0.008511525578796864, -0.010052360594272614, -0.002918086713179946, -0.02283811755478382, 0.01097580511122942, -0.005073671694844961, -0.00794162880629301, -0.01799398846924305, 0.01175677590072155, -0.015651077032089233, 0.004881067201495171, 0.03216755390167236, -0.01607322320342064, 0.002526282100006938, 0.025181030854582787, -0.0183528121560812, 0.02231043577194214, 0.02135005220770836, -0.001032939413562417, 0.004925920162349939, -0.010685579851269722, -0.0028969794511795044, -0.015038964338600636, 0.014342422597110271, -0.0392807200551033, -0.008210746571421623, -0.0024906634353101254, -0.00326899578794837, -0.014120795764029026, 0.016854193061590195, 0.009271389804780483, 0.027186226099729538, -0.017381876707077026, 0.0023191666696220636, -0.035734690725803375, -0.014447959139943123, 0.01115521788597107, -0.019809218123555183, -0.011777883395552635, -0.04390322044491768, 0.03324402496218681, -0.009867670945823193, 0.02847377210855484, 0.0011747541138902307, -0.004596118349581957, -0.0012479701545089483, 0.007355900481343269, -0.035966869443655014, 0.03438382223248482, 0.012822696007788181, -0.0008007588912732899, 0.026658542454242706, -0.0059047723188996315, -0.015746058896183968, 0.015239483676850796, -0.01521837618201971, -0.010944144800305367, -0.046604957431554794, -0.03987172245979309, -0.016104884445667267, -0.043734364211559296, -0.02167721465229988, 0.045211873948574066, 0.01903880015015602, -7.692627696087584e-05, -0.013002107851207256, 0.021888289600610733, -0.0018363366834819317, 0.0013139304937794805, 0.012062831781804562, -0.004047328140586615, 0.015239483676850796, 0.021466141566634178, 0.0235135518014431, 0.00921862106770277, -0.0015052156522870064, 0.02575092762708664, -0.0014049558667466044, 0.008147425018250942, -0.004981326870620251, -0.029529137536883354, -0.0020949013996869326, 0.04694267362356186, -0.02323915623128414, 0.043164465576410294, 0.004759700037539005, 0.014110242016613483, -0.015629969537258148, 0.027333976700901985, 0.026363039389252663, -0.01776180788874626, 0.030415644869208336, -0.005852004047483206, 0.01755073480308056, 0.012991554103791714, -0.02323915623128414, 0.005292660091072321, -0.0044826664961874485, -0.015988793224096298, -0.0262363962829113, -0.005503733176738024, 0.02959246002137661, -0.019893646240234375, 0.024294523522257805, 0.00047524445108138025, 0.041855812072753906, -0.007788600400090218, -0.016495369374752045, -0.016885854303836823, -0.007735832128673792, 0.10646530985832214, 0.0020104721188545227, 0.002217587549239397, -0.014743461273610592, -0.032209768891334534, -0.017930665984749794, -0.0034906226210296154, -0.018690530210733414, 0.010923037305474281, 0.025181030854582787, -0.0019141698721796274, 0.031175509095191956, -0.03554472327232361, -0.01663256622850895, 0.014384637586772442, 0.007023460231721401, -0.01115521788597107, 0.0047148470766842365, 0.018289491534233093, 0.01939762569963932, -0.025012170895934105, -0.010400630533695221, 0.004023582674562931, -0.00837960559874773, 0.005603992845863104, -0.0032241428270936012, 0.008089379407465458, 0.0007321601151488721, 0.027101796120405197, 0.029212528839707375, 0.04791361093521118, -0.030246786773204803, 0.023133620619773865, -0.010901929810643196, 0.0238723773509264, -0.04985548555850983, 0.00448794336989522, 0.008464034646749496, 4.6172259317245334e-05, 0.022648151963949203, 0.03548140078783035, -0.03674783930182457, -0.011440166272222996, 0.0028943410143256187, 0.027882767841219902, 0.03955511376261711, -0.003783486783504486, -0.03163987025618553, -0.018975479528307915, -0.022985870018601418, 0.04474751278758049, -0.05779183655977249, -0.024463381618261337, 0.01423688605427742, -0.0003466217312961817, 0.02511770837008953, -0.0019207659643143415, 0.000705116312019527, 0.014416297897696495, -0.03438382223248482, 0.03402499482035637, -0.037887636572122574, 0.028537094593048096, 0.00159228325355798, 0.004023582674562931], [0.028908275067806244, 0.02190232463181019, 0.029629819095134735, -0.010404186323285103, -0.00915894191712141, 0.02711605466902256, -0.033377185463905334, 0.015571365132927895, 0.00401794770732522, 0.04126761108636856, -0.011242106556892395, -0.0012023294111713767, 0.04841321334242821, 0.010503106750547886, -0.04380464926362038, 0.03235306218266487, -0.0031276566442102194, 0.023426875472068787, -0.010217981413006783, -0.015210594050586224, 0.014942924492061138, 0.04056934267282486, -0.05339419096708298, -0.022263096645474434, -0.009263682179152966, -0.02283334732055664, -0.014733444899320602, -0.05949239060282707, 0.0416400209069252, -0.08463001996278763, 0.0374271385371685, -0.038055580109357834, 0.04971664771437645, 0.009385879151523113, -0.012056752108037472, 0.014617066830396652, -0.03230651095509529, -0.010532201267778873, -0.002091892994940281, 0.016129979863762856, 0.005655966699123383, 0.009880485013127327, 0.017375223338603973, -0.007483100052922964, 0.001969696255400777, 0.05558209493756294, 0.012289508245885372, -0.0416400209069252, 0.0004218699468765408, 0.017223931849002838, 0.03491337597370148, 0.053580392152071, 0.01845753751695156, 0.00017256663704756647, 0.021192418411374092, 0.0029094479978084564, -0.0016671137418597937, 0.021820859983563423, 0.03663576766848564, -0.016060153022408485, -0.01569938100874424, -0.039056431502103806, 0.018213143572211266, 0.014977837912738323, 0.0077391318045556545, -0.004736581351608038, -0.030141880735754967, 0.03267892077565193, -0.012661917135119438, -0.005271919537335634, 0.05944583937525749, 0.01346492487937212, 0.04401412978768349, -0.01820150576531887, 0.0010306719923391938, 0.007488918956369162, -0.019248908385634422, 0.0020453420002013445, -0.0002825801493600011, 0.015257145278155804, -0.03973142057657242, 0.03223668411374092, -0.015920499339699745, -0.052416615188121796, 0.0018300428055226803, -0.01001431979238987, -0.09608160704374313, -0.01953985169529915, -0.0270229522138834, -0.023729458451271057, -0.01155632734298706, 0.00877489522099495, -0.04638823866844177, 0.05362694337964058, 0.028372935950756073, 0.03495992720127106, 0.051345936954021454, -0.019493302330374718, -0.04883217439055443, 0.014361035078763962, -0.01143994927406311, -0.052835576236248016, -0.051764898002147675, -0.00886799767613411, 0.011690162122249603, -0.0160252396017313, -0.02253076434135437, 0.034261658787727356, 0.01336018554866314, -0.014081728644669056, 0.028791896998882294, -0.018003664910793304, 0.03191082552075386, 0.03763661906123161, -0.02690657414495945, -0.012696830555796623, -0.03756679221987724, -0.07010605931282043, -0.0052253687754273415, -0.022821709513664246, -0.033703044056892395, -0.013057602569460869, 0.02690657414495945, -0.034098729491233826, 0.01993553712964058, 0.002682510996237397, -0.01782909780740738, -0.005263191182166338, -0.08551449328660965, 0.014779996126890182, 0.026068653911352158, -0.056699320673942566, 0.07285257428884506, -0.02332213521003723, -0.03198065236210823, 0.0018809580942615867, 0.00497224647551775, -0.029443614184856415, 0.018003664910793304, 0.02648761495947838, 0.020179931074380875, 0.00980483926832676, -0.008478131145238876, 0.026208307594060898, -0.04122105985879898, 0.03973142057657242, -0.012894673272967339, 0.038707297295331955, 0.03526251018047333, -0.024276433512568474, -0.0026650542858988047, 0.04522445797920227, -0.002241729758679867, 0.007203793153166771, 0.034028902649879456, 0.017538152635097504, 0.01393043715506792, 0.02697640098631382, 0.015396798960864544, 0.028186732903122902, -0.006854659412056208, -0.020948026329278946, 0.007099052891135216, -0.004093593452125788, -0.012429161928594112, -0.00016720233543310314, 0.038078855723142624, 0.008204643614590168, -0.05060112103819847, -0.017130829393863678, -0.013371823355555534, -0.033726319670677185, -0.05395280197262764, -0.021844135597348213, -0.034098729491233826, -0.016898073256015778, 0.031049629673361778, 0.013732594437897205, -0.0015056392876431346, 0.011469043791294098, 0.0006920849555172026, 0.06233201175928116, -0.06838366389274597, -0.01003759540617466, -0.06824401021003723, 0.018492450937628746, 0.034028902649879456, 0.014884735457599163, -0.0031276566442102194, 0.010380910709500313, -0.014128278940916061, -0.04408395662903786, 0.019272183999419212, -0.017421774566173553, 0.013278720900416374, 0.007459824439138174, -0.014884735457599163, -0.04943734034895897, -0.0019420565804466605, 0.019085979089140892, 0.015408436767756939, -0.02044760063290596, -0.016967900097370148, -0.019353648647665977, -0.05804930627346039, 0.012405886314809322, -0.022263096645474434, -0.03137548640370369, 0.029536716639995575, -0.060563068836927414, 0.009601178579032421, -0.005606506485491991, -0.03223668411374092, 0.014500688761472702, -0.01365112978965044, 0.06852331757545471, 0.010776595212519169, 0.015641191974282265, 0.02190232463181019, 0.0355650931596756, -0.019830796867609024, 0.011265382170677185, 0.05539589002728462, -0.04976319894194603, -0.02727898396551609, 0.007785682566463947, -0.0044369082897901535, -0.038288336247205734, -0.03179444745182991, -0.06898882985115051, -0.008379209786653519, 0.02720915712416172, -0.005289376247674227, 0.015385161153972149, 0.018701931461691856, 0.009630273096263409, 0.0045911087654531, -0.01029362715780735, -0.00031803903402760625, -0.006447336636483669, 0.025440212339162827, -0.008227919228374958, -0.025603141635656357, 0.04019693285226822, 0.030281534418463707, -0.00903092697262764, -0.03260909393429756, -0.011928737163543701, 0.04664427042007446, -0.0059178173542022705, 0.04082537442445755, 0.0203544981777668, 0.06712678074836731, -0.07331808656454086, -0.009385879151523113, 0.031119454652071, 0.008425761014223099, -0.0395452156662941, 0.021017851307988167, -0.006109840702265501, -0.015094215981662273, 0.0018882317235693336, -0.025510039180517197, 0.019528215751051903, -0.07564564794301987, 0.010421643033623695, -0.0266738198697567, 0.03756679221987724, -0.010043414309620857, 0.07513358443975449, -0.0538131482899189, 0.05749069154262543, -0.0034651525784283876, 0.007448186632245779, -0.07778700441122055, 0.004049951676279306, -0.0055774119682610035, 0.006028376054018736, 0.011684343218803406, -0.004480550065636635, -0.0017834915779531002, 0.019423475489020348, -0.011422492563724518, -0.042152080684900284, 0.05758379399776459, 0.01998208835721016, 0.03132893517613411, -0.0032003927044570446, -0.042105529457330704, 0.01887649856507778, 0.07578530162572861, -0.028512589633464813, 0.024555740877985954, -0.011998563073575497, 0.015734294429421425, 0.017282120883464813, 0.006045832764357328, -0.02236783690750599, 0.011207194067537785, 0.03242288902401924, -0.033749595284461975, 0.009915398433804512, -0.008385028690099716, -0.033819422125816345, -0.060935478657484055, 0.052882127463817596, -0.010217981413006783, -0.01125374436378479, 0.012289508245885372, -0.028768621385097504, -0.0162579957395792, -0.02709277905523777, -0.09542989730834961, -0.033516839146614075, 0.02262386679649353, -0.02201870270073414, -0.01614161767065525, 0.047435641288757324, 0.03919608145952225, -0.033330634236335754, 0.018376072868704796, 0.010991894640028477, 0.021297158673405647, -0.02023812010884285, -0.04594600200653076, -0.004829683806747198, 0.008123178966343403, 0.03682197257876396, -0.010602028109133244, -0.006168029736727476, -0.010258713737130165, -0.03309788182377815, 0.03975469619035721, 0.0024497550912201405, -0.013546389527618885, 0.0005826169508509338, -0.05032181367278099, 0.05041491612792015, 0.014628704637289047, 0.04150036722421646, 0.028326384723186493, -0.04068572074174881, -0.03521595895290375, 0.014093366451561451, -0.01576920785009861, 0.012533902190625668, 0.028093630447983742, 0.03637973591685295, 0.009833933785557747, 0.005865447223186493, 0.007355084642767906, 0.0315849669277668, -0.006453155539929867, 0.028256557881832123, -0.028815172612667084, -0.015501539222896099, 0.04589945077896118, -0.020342860370874405, -0.00893782451748848, 0.033633217215538025, 0.003951030317693949, 0.019016152247786522, 0.024416087195277214, 0.024183331057429314, 0.03195737674832344, -0.0009135666768997908, -0.012429161928594112, -0.011975287459790707, -0.0074423677287995815, -0.029559992253780365, 0.008274470455944538, -0.017130829393863678, 0.012650280259549618, 0.022379474714398384, -0.024788497015833855, -0.02194887585937977, 0.03724093362689018, 0.004372900351881981, -0.002638869220390916, -0.014337759464979172, -0.021157504990696907, 0.007139785215258598, -0.018189867958426476, 0.013592940755188465, -0.004172148182988167, 0.0007622753619216383, -0.04827355965971947, -0.005839262157678604, -0.0031683887355029583, 0.008547957986593246, -0.013499838300049305, -0.016851522028446198, -0.01834115944802761, 0.0032876762561500072, -0.024555740877985954, 0.018329521641135216, 0.019272183999419212, 0.016409287229180336, -0.01815495453774929, -0.014116641134023666, -0.038730572909116745, -0.025160906836390495, 0.019760970026254654, 0.018608829006552696, -0.051392488181591034, -0.020552340894937515, -0.012173130176961422, -0.0036717234179377556, -0.0007506375550292432, 0.015466625802218914, 0.005495947320014238, 0.03202720358967781, 0.034354761242866516, 0.019016152247786522, 0.02232128567993641, 0.01820150576531887, -0.02248421311378479, 0.05916653573513031, -0.02194887585937977, -0.042152080684900284, 0.025277284905314445, 0.03940556198358536, -0.012743381783366203, 0.009566265158355236, -0.033516839146614075, 0.00016729325579944998, 0.0320504792034626, -0.034145280718803406, 0.018026940524578094, -0.04587617516517639, 0.0006833566003479064, -0.021599741652607918, 0.042920175939798355, 0.018213143572211266, -0.038381438702344894, -0.0654974952340126, -0.010136516764760017, 0.004643478896468878, 0.014209743589162827, -0.015268783085048199, -0.010049233213067055, 0.007605297025293112, 0.020982937887310982, -0.015780845656991005, -0.06237856298685074, -0.02651089057326317, -0.014814909547567368, 0.008996013551950455, 0.0014860006049275398, 0.018073491752147675, -0.007907879538834095, 0.026161756366491318, -0.0654974952340126, -0.03644956275820732, -0.007227068766951561, -0.022263096645474434, 0.0018765939166769385, -0.03116600587964058, 0.024416087195277214, -0.006744100246578455, 0.030607393011450768, 0.03246944025158882, 0.02325230836868286, 0.02665054425597191, -0.001373259467072785, -0.009554627351462841, -0.04573652148246765, -0.013278720900416374, 0.0074307299219071865, -0.04559686779975891, -0.008187186904251575, -0.000887381611391902, -0.038846950978040695, -0.0011856000637635589, 0.019411837682127953, -0.0003687725402414799, 0.010555476881563663, -0.07583185285329819, 0.022519126534461975, 0.003645538352429867, 0.01820150576531887, 0.034517690539360046, -0.03514613211154938, 0.002858532592654228, 0.08202315866947174, 0.021785946562886238, 0.05432521179318428, -0.002134080044925213, 0.015524814836680889, -0.056187260895967484, -0.0021529914811253548, 0.00013774418039247394, 0.021460087969899178, -0.010357635095715523, 0.001870775013230741, 0.019900623708963394, -0.006028376054018736, 0.01029362715780735, 0.029420338571071625, 0.0052922856993973255, -0.01027035154402256, -0.004663845058530569, 0.007407454773783684, 0.019237270578742027, 0.04599255323410034, -0.008379209786653519, -0.028838448226451874, -0.0008211917011067271, -0.015117491595447063, -0.01817823015153408, -0.003729912219569087, 0.028675518929958344, 0.03263236954808235, -0.0008211917011067271, -0.0547441728413105, -0.010136516764760017, 0.0411745086312294, -0.01734030991792679, -0.05716483294963837, 0.03223668411374092, -0.007349265739321709, -0.02033122256398201, -0.00010410368849989027, 0.0015012751100584865, 0.022030340507626534, 0.005140994675457478, 0.024346260353922844, -0.07224741578102112, -0.012021838687360287, 0.023101016879081726, -0.022612228989601135, -0.025207458063960075, -0.033563390374183655, -0.004500916227698326, 0.02026139572262764, -0.002579225692898035, -0.017154105007648468, 0.03221340849995613, 0.00668009277433157, 0.0054581244476139545, 0.014512326568365097, 0.022076891735196114, 0.02313593029975891, -0.019120892509818077, 0.02727898396551609, -0.01614161767065525, 0.025998827069997787, 0.015943774953484535, 0.002406113548204303, 0.016688592731952667, -0.04808735474944115, 0.03710127994418144, -0.0055890497751533985, -0.008297746069729328, -0.006133116316050291, 0.043664995580911636, 0.021390261128544807, -0.03982452303171158, 0.025510039180517197, -0.021553190425038338, -0.0091822175309062, 0.0038404713850468397, 0.0049402425065636635, -0.004454365000128746, 0.008309383876621723, 0.03491337597370148, 0.00021438994735945016, -0.04971664771437645, 0.004323439672589302, 0.009810658171772957, -0.030700495466589928, -0.013034326955676079, -0.0017194837564602494, 0.02774449624121189, 0.05060112103819847, -0.011608697474002838, 0.016083428636193275, -0.0011652339017018676, 0.003823014674708247, 0.001633655047044158, 0.010020138695836067, 0.022519126534461975, -0.06517163664102554, -0.0007513649179600179, -0.013592940755188465, 0.018399348482489586, 0.00939169805496931, -0.0404762402176857, -0.025254009291529655, 0.025696244090795517, 0.0057636164128780365, 0.029653094708919525, -0.01799202710390091, -0.004893691278994083, 0.04478222504258156, 0.04056934267282486, -0.012452437542378902, 0.010078327730298042, -0.0037124555092304945, -0.0027305169496685266, 0.011853091418743134, 0.005597778130322695, 0.030165156349539757, 0.015967050567269325, -0.01355802733451128, -0.008978556841611862, 0.021378623321652412, -0.013988626189529896, 0.01880667172372341, 0.017677806317806244, 0.005772344768047333, 0.009816477075219154, -0.02692984975874424, -0.05325453728437424, -0.025533314794301987, -0.005298104602843523, -0.056652769446372986, -0.006604447029531002, -0.021250607445836067, 0.021867411211133003, -0.024695394560694695, 0.015920499339699745, 0.021017851307988167, -0.0021471725776791573, -0.038660746067762375, 0.030351361259818077, -0.00511190015822649, -0.022658780217170715, -0.04836666211485863, -0.02692984975874424, -0.037915926426649094, -0.004867506679147482, -0.0017383951926603913, -0.02000536397099495, -0.002988002961501479, 0.0208200104534626, 0.020878199487924576, -0.010258713737130165, 3.789101538131945e-05, 0.018422624096274376, 0.006138935219496489, -0.02037777379155159, 0.030118605121970177, -0.008024257607758045, 0.03286512568593025, 0.025393661111593246, -0.017957113683223724, 0.029490165412425995, 0.006394966505467892, 0.013430011458694935, -0.0056210532784461975, -0.006662636063992977, -0.025370385497808456, 0.006412423215806484, 0.020226482301950455, 0.012068389914929867, -0.04180295020341873, 0.014884735457599163, 0.022356199100613594, -0.0017965841107070446, -0.02774449624121189, 0.03153841570019722, 0.0016496570315212011, 0.01597868837416172, 0.014605429023504257, 0.029746195301413536, 0.04990285262465477, -0.009170579724013805, 0.0014896374195814133, -0.012755019590258598, -0.021704481914639473, -0.03693835064768791, 0.03747368976473808, -0.05967859551310539, 0.014244657009840012, -0.030304810032248497, -0.05446486547589302, 0.030677219852805138, -0.01738686114549637, 0.004672573413699865, -0.02718588151037693, -0.03640301153063774, 0.0012357879895716906, -0.0020409778226166964, -0.005443577188998461, -0.029978951439261436, 0.0371943823993206, -0.024928150698542595, -0.006668454967439175, 0.02290317416191101, -0.020645443350076675, 0.046993404626846313, 0.015198956243693829, 0.0021137138828635216, 0.006354234181344509, 0.04790114983916283, 0.019667867571115494, -0.03733403608202934, 0.010677673853933811, -0.05590795353055, 0.028791896998882294, -0.00128379394300282, 0.006581171415746212, -0.056652769446372986, -0.030584117397665977, -0.008943643420934677, -0.05018215999007225, -0.006674273870885372, 0.04119778424501419, -0.00985139049589634, -0.011405035853385925, -0.024858323857188225, -0.05008905753493309, -0.012405886314809322, 0.012731743976473808, -0.013371823355555534, -0.02236783690750599, 0.011434130370616913, -0.02804707922041416, 0.01324380747973919, -0.01348820049315691, -0.011451587080955505, -0.007541289087384939, -0.0465511679649353, 0.007448186632245779, -0.0018765939166769385, -0.00016383829643018544, -0.021716119721531868, -0.009845571592450142, -0.033493563532829285, 0.043083105236291885, 0.014442499727010727, 0.005522132385522127, 0.01734030991792679, -0.017724357545375824, 0.013057602569460869, -0.030234983190894127, 0.0025894087739288807, -0.0016802061581984162, -0.009147304110229015, 0.021646292880177498, -0.04424688592553139, 0.0035669831559062004, 0.011137367226183414, -0.014407586306333542, -0.019598040729761124, -0.0226936936378479, -0.005146813578903675, 0.001269974047318101, 0.04494515061378479, -0.0003811376809608191, 0.006627722643315792, -0.023217394948005676, -0.02260059118270874, -0.00046078383456915617, 0.010625303722918034, -0.017177380621433258, 0.0060807461850345135, -0.0068721161223948, 0.03293495252728462, 0.019190719351172447, 0.02274024486541748, -0.0057636164128780365, 0.00939169805496931, -0.010089965537190437, -0.023729458451271057, -0.052044205367565155, -0.0055890497751533985, 0.03156169131398201, -0.007337627932429314, -0.02758156694471836, -0.02075018361210823, -0.01595541276037693, 0.014640342444181442, 0.03558836877346039, -0.010380910709500313, -0.03144531324505806, -0.00276979454793036, 0.003278947900980711, -0.008693430572748184, 0.041965875774621964, -0.033400461077690125, 0.004236156120896339, -0.025952275842428207, -0.012336059473454952, 0.01794547587633133, -0.026091929525136948, -0.0094149736687541, 0.010136516764760017, -0.0038928412832319736, -0.042920175939798355, -0.0015172770945355296, -0.025230733677744865, -0.010805689729750156, 0.01796875149011612, -0.018096765503287315, -0.005568683613091707, -0.04427016153931618, -0.04869252070784569, 0.025929000228643417, -0.006371690891683102, -0.030514290556311607, -0.012138216756284237, 0.028512589633464813, 0.06289062649011612, -0.02769794501364231, -0.00780313927680254, -0.015164042823016644, 0.0018387711606919765, 0.02220490761101246, -0.02313593029975891, 0.047575294971466064, -0.0013943529920652509, 0.028326384723186493, 0.009735013358294964, 0.0181316789239645, -0.026115205138921738, 0.01857391558587551, -0.01991226151585579, -0.008297746069729328, 0.0047424002550542355, -0.0196562297642231, 0.01637437380850315, -0.009577902965247631, -0.008326839655637741, 0.019423475489020348, -0.017142467200756073, 0.012661917135119438, -0.004387447610497475, 0.005402844864875078, 0.02334541082382202, 0.006325140129774809, -0.0028905365616083145, -0.019027790054678917, -0.007907879538834095, -0.05376659706234932, -0.024346260353922844, -0.004946061410009861, -0.004727852996438742, -0.029978951439261436, 0.033679768443107605, 0.005344655830413103, -0.022123442962765694, -0.021646292880177498, -0.017142467200756073, -8.732890273677185e-05, 0.001702027046121657, 0.023647993803024292, -0.047854598611593246, 0.03153841570019722, 0.019784245640039444, -0.04147709161043167, -0.04496842622756958, -0.02783759869635105, 0.011457405984401703, -0.01820150576531887, 0.002011883305385709, -0.03502975404262543, 0.004876235034316778, 0.024253157898783684, 0.00043387143523432314, 0.006086565088480711, -0.015501539222896099, -0.003732821671292186, -0.029606543481349945, -0.005667604506015778, 0.022123442962765694, 0.009060020558536053, 0.014500688761472702, -0.008338477462530136, 0.006074927281588316, -0.021378623321652412, -0.010369272902607918, -0.009141485206782818, -0.013045964762568474, -0.02655744180083275, 0.0012707014102488756, 0.028442762792110443, 0.047295987606048584, 0.034215107560157776, -0.022844985127449036, 0.03612370789051056, 0.03116600587964058, 0.028396211564540863, -0.02007519081234932, -0.012080027721822262, -0.024346260353922844, 0.010648579336702824, 0.01873684488236904, 0.008350115269422531, 0.010357635095715523, -0.018515726551413536, 0.03577457368373871, -0.006150573026388884, -0.01808512955904007, 0.017107553780078888, -0.01848081313073635, -0.01123046875, -0.017445050179958344, 0.002333377255126834, -0.018841585144400597, -0.0028628967702388763, 0.007343446835875511, -0.005952730774879456, -0.025254009291529655, -0.03267892077565193, 0.002638869220390916, 0.019551489502191544, 0.006907029543071985, 0.007640210445970297, -0.00903092697262764, -0.03128238394856453, -0.03146858885884285, -0.02681347168982029, 0.028512589633464813, 0.014745082706212997, -0.010020138695836067, 0.023240670561790466, 0.04603910446166992, 0.013162342831492424, 0.04897182807326317, -0.030141880735754967, 0.002184995450079441, 0.022076891735196114, 0.025044528767466545, -0.021553190425038338, -0.011963649652898312, 0.01738686114549637, 0.01047983206808567, -0.021832497790455818, -0.02313593029975891, 0.034098729491233826, 0.019970450550317764, 0.06652162224054337, 0.014489050954580307, -0.019225632771849632, 0.004486368969082832, -0.0012787024024873972, 0.016642041504383087, -0.010485650971531868, 0.029722919687628746, -0.0014983656583353877, -0.012487350963056087, -0.03137548640370369, 0.007582021411508322, 0.014011901803314686, -0.01956312730908394, 0.023729458451271057, 0.04550376534461975, -0.020808372646570206, -0.009903760626912117, 0.00247448543086648, 0.005449396092444658, -0.01764289289712906, -0.03523923456668854, -0.012952862307429314, 0.03752024099230766, -0.008204643614590168, 0.00808244664222002, -0.0418727770447731, 0.03779954835772514, 0.010631122626364231, 0.020063553005456924, -0.019237270578742027, 0.024462638422846794, 0.024904875084757805, -0.00338950683362782, -0.01027035154402256, -0.006168029736727476, 0.04638823866844177, -0.051764898002147675, -0.03926590830087662, 0.03118928149342537, -0.0008968373294919729, 0.02075018361210823, -0.003703727386891842, 0.011765807867050171, -0.03624008223414421, 0.03735731169581413, 0.02079673483967781, -0.028698794543743134, -0.0052806478925049305, 0.024835048243403435, 0.04012710601091385, -0.020971301943063736, 0.025696244090795517, 0.011038445867598057, -0.005722884088754654, -0.02648761495947838, -0.0009041109587997198, 0.018911411985754967, 0.00798934418708086, 0.016129979863762856, 0.02257731556892395, -0.0006728098378516734, 0.028652243316173553, 0.010980256833136082, 0.012685192748904228, 0.01852736435830593, 0.006691730581223965, 0.03479699790477753, 0.02047087624669075, 0.03705472871661186, 0.022565677762031555, -0.009118209592998028, 0.012405886314809322, 0.013057602569460869, 0.005053711123764515, -0.033703044056892395, 0.023217394948005676, 0.017119191586971283, 0.01841098628938198, 0.009286957792937756, 0.0035029754508286715, -0.004337986931204796, -0.015129129402339458, 0.030677219852805138, -0.015233869664371014, -0.03495992720127106, -0.0036280816420912743, 0.01604851521551609, 0.023566529154777527, 0.02686002291738987, -0.014896373264491558, -0.004442727193236351, -1.262654950551223e-05, 0.008582871407270432, 0.04038313776254654, 0.038590919226408005, -0.013709318824112415, -0.0011652339017018676, 0.03225995972752571, -0.0014379946514964104, -0.008134816773235798, 0.01358130294829607, 0.024648843333125114, -0.006901210639625788, -0.012231319211423397, 0.0001006487145787105, 0.042315009981393814, 0.006272769998759031, -0.023240670561790466, -0.030584117397665977, 0.0545114167034626, 0.00668009277433157, -0.0030549203511327505, -0.0060923839919269085, 0.024602292105555534, -0.00025384934269823134, 0.009263682179152966, 0.0005815259064547718, 0.029303960502147675, -0.029909124597907066, -0.00680228928104043, -0.013686043210327625, -0.04143054038286209, -0.019062703475356102, -0.00877489522099495, -0.006569533608853817, 0.009705918841063976, 0.002643233397975564, -0.021250607445836067, -0.016129979863762856, -0.009769925847649574, 0.033935800194740295, 0.0049402425065636635, -0.0067499191500246525, 0.04906493052840233, 0.01745668798685074, 0.05953894183039665, 0.01001431979238987, -0.004957699216902256, 0.04084865003824234, 0.017421774566173553, -0.02014501765370369, 0.04524773359298706, 0.00023311951372306794, -0.02348506450653076, -0.029676368460059166, 0.0444563664495945, -0.015594640746712685, -0.0001264700695173815, -0.015454987995326519, -0.043199483305215836, -0.014105004258453846, -0.03549526631832123, 0.011178099550306797, 0.005923636257648468, -0.04182622581720352, 0.022868260741233826, -0.02021484449505806, -0.014337759464979172, 0.019714418798685074, -0.03479699790477753, 0.030467739328742027, 0.023647993803024292, 0.006191305350512266, 0.017107553780078888, -0.0013303450541570783, -0.0024468456394970417, -0.005743250250816345, 0.0025879540480673313, 0.01956312730908394, -0.0010474012233316898, 0.026394512504339218, 0.025975551456212997, 0.002774158725515008, 0.025347109884023666, -0.005653057247400284, 0.018888136371970177, 0.001760216080583632, -0.0036164438351988792, 0.03132893517613411, -0.022495850920677185, 0.05958549305796623, 0.019737694412469864, -0.017887286841869354, -0.0047540380619466305, 0.011399216949939728, 0.006889572832733393, -0.007075777277350426, -0.024439362809062004, -0.02804707922041416, 0.013523113913834095, 0.02727898396551609, 0.021029489114880562, -0.017107553780078888, 0.014116641134023666, 0.007756588514894247, -0.0007200883701443672, 0.00522827822715044, -0.020040277391672134, -0.006505525670945644, -0.04953044280409813, 0.02208852954208851, 0.016700230538845062, -0.00896110013127327, -0.060563068836927414, -0.0021937238052487373, -0.0353323370218277, 0.010875516571104527, -0.008897092193365097, 0.004768585320562124, 0.003974305931478739, -0.03554181754589081, -0.0019042337080463767, -0.006109840702265501, 0.07969559729099274, -0.008722525089979172, -0.005981824826449156, -0.008419942110776901, 0.06447336822748184, -0.004189604893326759, 0.01338346116244793, 0.010299446061253548, 0.020412687212228775, 0.014186467975378036, -0.011882185935974121, 0.033400461077690125, -0.00896110013127327, 0.016921348869800568, -0.01637437380850315, -0.016409287229180336, 0.02658071741461754, 0.019237270578742027, 0.00677901366725564, 0.011405035853385925, 0.038125406950712204, -0.037822823971509933, 6.150754779810086e-05, 0.008699249476194382, 0.005484309513121843, -0.029862573370337486, -0.028791896998882294, -0.0018038577400147915, -0.00932187121361494, 0.030258258804678917, -0.01338346116244793, -0.002574861515313387, -0.021076040342450142, -0.014116641134023666, -0.018725207075476646, -0.0390797033905983, -0.015617916360497475, 0.009671005420386791, 0.002314465818926692, -0.01745668798685074, -0.00996776856482029, -0.008024257607758045, -0.014081728644669056, -0.009612816385924816, 0.017305396497249603, 0.02222818322479725, -0.013208894059062004, -0.005932364612817764, -0.0011856000637635589, -0.023973850533366203, 0.014896373264491558, 0.033982351422309875, -0.029769470915198326, -0.015105853788554668, 0.006232037674635649, -0.014395948499441147, -0.013185618445277214, -0.05060112103819847, -0.023997126147150993, 0.02061052992939949, 0.0041081407107412815, 0.01336018554866314, -0.010124878957867622, 0.02206525392830372, -0.020948026329278946, 0.023810923099517822, -0.019039427861571312, 0.021797584369778633, 0.0030898337718099356, 0.013325272127985954, 0.005341746378690004, -0.015315334312617779, 0.010642760433256626, 0.02658071741461754, -0.021890686824917793, 0.025649692863225937, 0.028559140861034393, 0.024835048243403435, -0.007366722449660301, 0.010031776502728462, -0.009956130757927895, -0.021332072094082832, 0.05930618941783905, 0.01766616851091385, 0.02250748872756958, 0.02274024486541748, -0.023810923099517822, 0.006074927281588316, 0.025789346545934677, 0.04485205188393593, 0.017840735614299774, 0.0031131093855947256, 0.025416936725378036, -0.006924486253410578, 0.019760970026254654, 0.00884472206234932, -0.024066952988505363, -0.023776009678840637, 0.0047889514826238155, -0.010369272902607918, 0.038427989929914474, -0.0008866542484611273, -0.00831520278006792, 0.05022871121764183, 0.014093366451561451, -0.007529651280492544, -0.0024613928981125355, -0.0175497904419899, 0.012161492370069027, -0.03193410113453865, -0.011963649652898312, -0.01029362715780735, 0.016479114070534706, -0.015175680629909039, -0.02706950344145298, -0.026138480752706528, 0.011067540384829044, 0.010724225081503391, -0.0032760384492576122, 0.023624718189239502, -0.02695312537252903, -0.010171430185437202, 0.02720915712416172, 0.006197124253958464, 0.010002681985497475, 0.03698490187525749, 0.00549303786829114, 0.04459602013230324, 0.023717820644378662, 0.003424420254305005, -0.0010975892655551434, -0.011218830943107605, 0.021250607445836067, -0.04005727916955948, -0.0014758175238966942, -0.01829460822045803, -0.0032731289975345135, 0.0014394493773579597, -0.006627722643315792, -0.017747633159160614, -0.00817554909735918, 0.010613665916025639, -0.01630454696714878, 0.0027145149651914835, -0.017235569655895233, 0.02206525392830372, -0.0014707259833812714, -0.02225145883858204, 0.0029181763529777527, 0.030840149149298668, -0.003834652481600642, 0.0066102659329771996, -0.02739536203444004, 0.021634655073285103, 0.03707800433039665, 0.029001377522945404, 0.010305264964699745, 0.006959399674087763, 0.030816873535513878, -0.005536679644137621, -0.017561428248882294, 0.018445899710059166, 0.008920367807149887, 0.005475581157952547, -0.02225145883858204, -0.017933838069438934, -0.020854923874139786, 0.003086924320086837, 0.04582962393760681, -0.018306246027350426, 0.01572265662252903, -0.024229882284998894, 0.024951426312327385, -1.3683497854799498e-05, -0.04901837930083275, -0.030467739328742027, -0.020878199487924576, 0.029536716639995575, -0.033563390374183655, 0.014558877795934677, 0.0329815037548542, 0.020529065281152725, 0.01632782258093357, 0.009048382751643658, 0.010351816192269325, -0.02346178889274597, 0.0072561632841825485, -0.003290585707873106, 0.004291435703635216, -0.005440667737275362, 0.0353323370218277, 0.04101157933473587, 0.033470287919044495, -0.015687743201851845, -0.0018853222718462348, -0.047086507081985474, -0.008862178772687912, -0.005699608474969864, 0.012883035466074944, -0.01595541276037693, -0.025370385497808456, -0.0054115732200443745, -0.006715005729347467, -0.005914907902479172, -0.021797584369778633, -0.024904875084757805, -0.026045378297567368, -0.034564241766929626, -0.004983884282410145, 0.02005191519856453, 0.020552340894937515, 0.008117360062897205, 0.033912524580955505, 0.017677806317806244, 0.008123178966343403, -0.005999281536787748, 0.021495001390576363, 0.009176398627460003, 0.014710169285535812, -0.015001113526523113, -0.02658071741461754, 0.005047892220318317, 0.03733403608202934, -0.017049364745616913, -0.024602292105555534, 0.014011901803314686, -0.008163911290466785, 0.010334359481930733, 0.039033155888319016, -0.019342010840773582, 0.022914811968803406, -0.00868179276585579, 0.009746651165187359, 0.005309742409735918, -0.007064139470458031, -0.03316770866513252, -0.005495947320014238, -0.018992876634001732, -0.021506639197468758, -0.021541552618145943, -0.0139769883826375, -0.012277870438992977, 0.000193660132936202, 0.001417628489434719, -0.006278588902205229, 0.03612370789051056, -0.028372935950756073, 0.01395371276885271, 0.0007211794145405293, -0.015804121270775795, -0.028698794543743134, -0.012720106169581413, -0.004483459517359734, -0.010305264964699745, -0.0022897354792803526, -0.0027567020151764154, 0.01153305172920227, 0.01656057871878147, 0.008932005614042282, -0.00468421122059226, 0.02690657414495945, -0.07210776209831238, 0.04392102733254433, 0.024322984740138054, 0.03991762548685074, 0.00499552208930254, 0.009880485013127327, -0.017421774566173553, -0.01395371276885271, 0.024276433512568474, -0.019272183999419212, -0.0029749106615781784, 0.029699644073843956, -0.015117491595447063, -0.016642041504383087, -0.017026089131832123, -0.016991175711154938, 0.023706182837486267, -0.0074307299219071865, -0.030141880735754967, 0.002448300365358591, 0.008577052503824234, 0.08407140523195267, 0.038218509405851364, 0.003569892607629299, 0.03575129806995392, -0.021634655073285103, -0.0006226218538358808, -0.023857474327087402, -0.015920499339699745, 0.018864860758185387, 0.004602746572345495, 0.021913962438702583, 0.02788414992392063, -0.004617293830960989, 0.02783759869635105, 0.023554891347885132, 0.016991175711154938, 0.020040277391672134, -0.025323834270238876, -0.0224609375, -0.01331363432109356, 0.013127429410815239, 0.01871356926858425, 0.010602028109133244, 0.056745871901512146, 0.0026374144945293665, -0.007110690698027611, 0.0005898905801586807, -0.042035702615976334, -0.0029749106615781784, 0.0009070204105228186, 0.0049169668927788734, -0.02306610345840454, 0.017282120883464813, 0.008745800703763962, -0.05069421976804733, -0.04403740540146828, 0.028466038405895233, 0.03244616463780403, -0.0076925805769860744, -0.01003759540617466, -0.023403599858283997, -0.021495001390576363, 0.08355934917926788, 0.011876367032527924, 0.003142203902825713, 0.002138444222509861, -0.011661067605018616, -0.0005240642931312323, 0.011544689536094666, -0.0047307624481618404, -0.003316770773380995, -0.030072053894400597, 0.021029489114880562, 0.033423736691474915, -0.026208307594060898, 0.04031331092119217, -0.01834115944802761, -0.011888004839420319, -0.005140994675457478, 1.517231680736586e-06, -0.017002813518047333, -0.026208307594060898, -0.0099444929510355, 0.03489010035991669, -0.02709277905523777, -0.003642628900706768, 0.016839884221553802, -0.01388388592749834, 0.01339509803801775, 0.016223082318902016, 0.023496702313423157, -0.03265564516186714, -0.008507225662469864, -0.024090228602290154, -0.014721807092428207, 0.03477372229099274, 0.010392548516392708, 0.004512554034590721, -0.016316184774041176, 0.022146718576550484, -0.021332072094082832, 0.024299709126353264, 0.0028628967702388763, 0.004076136741787195, -0.024392811581492424, -0.003572802059352398, -0.015687743201851845, 0.033959075808525085, -0.005827624350786209, 0.015827396884560585, -0.023973850533366203, -0.00499552208930254, 0.03235306218266487, -0.04669082164764404, -0.011975287459790707, -0.0029472708702087402, -0.010852240957319736, 0.02014501765370369, 0.03121255710721016, -1.557009227326489e-06, 0.006226218771189451, -0.01977260783314705, 0.04124433547258377, -0.05534933879971504, 0.020878199487924576, -0.010497287847101688, -0.003174207638949156], [0.0034236195497214794, 0.021831776946783066, 0.006764543242752552, 0.036201056092977524, -0.04488084092736244, 0.01792852021753788, -0.01106143370270729, -0.004968383349478245, -0.018232841044664383, 0.06340477615594864, -0.01460744347423315, 0.019079649820923805, -0.00966552272439003, 0.033528316766023636, 0.003321076277643442, 0.04114959016442299, 0.011564225889742374, -0.002422996563836932, -0.020945275202393532, 0.025536563247442245, 0.0005805267719551921, 0.05221102386713028, -0.024358971044421196, 0.011160668917000294, -0.0230755265802145, -0.005616720765829086, 0.023551857098937035, -0.010075695812702179, 0.05041155964136124, -0.00735003175213933, 0.03188762441277504, -0.025549795478582382, 0.05917073041200638, -0.01802114024758339, 0.041070204228162766, 0.03342246636748314, -0.02086588554084301, 0.004938612692058086, 0.004157961346209049, 0.009407510980963707, -0.012126559391617775, -0.05107312649488449, 0.01643337309360504, -0.009248734451830387, -0.032496269792318344, 0.050332169979810715, -0.012364724650979042, -0.038450390100479126, 0.013509239070117474, -0.0024593828711658716, -0.020257242023944855, 0.022837361320853233, -0.015057310461997986, 0.028394540771842003, 0.024213425815105438, -0.014263427816331387, -0.013443082571029663, 0.0477917455136776, -0.0010047579417005181, -0.02303583174943924, -0.009473668411374092, 0.012000861577689648, 0.05324307456612587, -0.0031176439952105284, -0.02533809281885624, -0.020693877711892128, 0.01802114024758339, 0.03969414159655571, 0.012979983352124691, -0.009797836653888226, 0.0484003871679306, 0.023909103125333786, -0.01811375841498375, 0.005491022486239672, 0.04485437646508217, 0.0054645598866045475, 0.04877086728811264, -0.04750065505504608, -0.01454128697514534, -0.026661230251193047, -0.0037378647830337286, -0.019092882052063942, 0.006430450826883316, 0.01438251044601202, 0.00042877939995378256, 0.0012859246926382184, -0.10421034693717957, -0.03368709236383438, 0.021209903061389923, -0.08526301383972168, 0.03884733095765114, 0.026859700679779053, -0.02180531434714794, 0.031728848814964294, 0.00817037746310234, -0.03334307670593262, 0.05980583652853966, -0.010591719299554825, 0.009295044466853142, 0.03061741404235363, -0.010651260614395142, -0.04009108245372772, -0.0423668771982193, -0.010380017571151257, -0.001027085818350315, -0.06097019836306572, -0.05848269909620285, 0.022546270862221718, 0.023723864927887917, -0.010611566714942455, 0.07642444968223572, -0.025999661535024643, -0.031675923615694046, 0.03463975340127945, -0.021871471777558327, -0.034480977803468704, -0.022837361320853233, -0.037682969123125076, 0.024464821442961693, -0.0337664820253849, -0.02627752162516117, 0.0049584596417844296, -0.0020227471832185984, -0.027150791138410568, 0.004885687027126551, -0.009076726622879505, -0.027600659057497978, 0.0064039877615869045, -0.06509838998317719, -0.006781082134693861, 0.03215225413441658, -0.00930166058242321, 0.012027324177324772, -0.05880025401711464, -0.049749989062547684, -0.0454365573823452, -0.007230949122458696, -0.021567149087786674, -0.007899133488535881, 0.015255780890583992, -0.004492053296416998, 0.003909872844815254, 0.01630106009542942, 0.006728156935423613, -0.054989613592624664, -0.0015662646619603038, 0.0014413935132324696, 0.01153776329010725, 0.031993478536605835, -0.02099820040166378, -0.0024329200387001038, 0.02704494073987007, 0.02479560673236847, -0.007085403893142939, 0.04321368783712387, -0.00790574960410595, 0.045489486306905746, 0.020032308995723724, -0.024134038016200066, -0.019622135907411575, -0.031411297619342804, -0.018087295815348625, -0.01697586104273796, -0.021778851747512817, 0.025933504104614258, -0.020826192572712898, 0.040726188570261, 0.04813576117157936, -0.03826515004038811, -0.05170823261141777, -0.05062326043844223, -0.05636567994952202, -0.05043802037835121, -0.017994677647948265, -0.04755358025431633, 0.0008145568426698446, 0.002586734713986516, -0.0030250241979956627, 0.03778882324695587, 6.315916834864765e-05, 0.0331578366458416, 0.08695662766695023, -0.03924427181482315, -0.013171838596463203, -0.026661230251193047, 0.027785897254943848, -0.031543608754873276, 0.04588642716407776, -0.012457344681024551, 0.0447220653295517, 0.0086467070505023, -0.02361801266670227, -0.0030101388692855835, -0.0029704447370022535, -0.007978522218763828, -0.023631244897842407, 0.000497003726195544, 0.01978091336786747, 0.017174331471323967, -0.01364155299961567, -0.005573718808591366, -0.032628584653139114, -0.013985568657517433, -0.032813820987939835, -0.01630106009542942, -0.014872071333229542, -0.05059679597616196, -0.020310169085860252, 0.018166685476899147, 0.003976029809564352, 0.029188424348831177, -0.01951628550887108, -0.009943381883203983, 0.008494545705616474, -0.001220594858750701, -0.0052793207578361034, 0.04810929670929909, 0.024451591074466705, -0.007998369634151459, 0.04506608098745346, -0.011405449360609055, 0.022096404805779457, 0.024358971044421196, -0.01034032367169857, -0.032443344593048096, -0.008812098763883114, -0.013853254728019238, -0.06996753811836243, 0.004088496323674917, -0.04845331236720085, -0.045992277562618256, 0.015679186210036278, 0.028870871290564537, -0.024372201412916183, 0.017412496730685234, 0.02691262774169445, 0.005328938364982605, -0.0012991561088711023, -0.016248134896159172, 0.028870871290564537, 0.027891749516129494, 0.011484838090837002, -0.006050048395991325, -0.01139883417636156, 0.016406910493969917, 0.01438251044601202, 0.0027173946145921946, 0.0331578366458416, -0.021884702146053314, -0.0080843735486269, 0.016790620982646942, 0.018748866394162178, 0.011934705078601837, -0.0439017191529274, -0.01634075492620468, 0.011332676745951176, 0.02064095251262188, -0.053534165024757385, -0.031146667897701263, 0.028738558292388916, -0.012761666439473629, 0.020204316824674606, -0.012179485522210598, 0.012430881150066853, -0.05514839291572571, -0.05758296698331833, 0.023816484957933426, -0.013310768641531467, -0.009639060124754906, 0.03043217398226261, -0.042022861540317535, 0.026171669363975525, -0.03503669425845146, -0.01406495738774538, -0.06012339144945145, -0.007197870872914791, -0.002621467225253582, -0.013065988197922707, 0.023313691839575768, -0.03471914306282997, -0.007627890445291996, -0.02519254758954048, 0.014078188687562943, -0.05342831090092659, 0.0036849393509328365, 0.0016026508528739214, 0.017214026302099228, 0.010069080628454685, 0.006453605834394693, 0.0423668771982193, 0.05043802037835121, -0.017558041960000992, -0.02380325272679329, 0.029426589608192444, 0.03440158814191818, -0.0453307069838047, 0.018537163734436035, 0.036597996950149536, 0.03553948551416397, 0.017319876700639725, 0.045992277562618256, 0.012609505094587803, -0.039350125938653946, -0.007058941293507814, -0.03374001756310463, -0.011246672831475735, 0.06732126325368881, 0.000989872612990439, -0.022030247375369072, -0.03561887517571449, -0.014594212174415588, 0.01147160679101944, -0.0769537091255188, -0.020310169085860252, -0.005709340330213308, 0.01725371927022934, -0.005143698770552874, 0.0599646158516407, 0.042922597378492355, -0.00926196575164795, 0.025457175448536873, 0.005907811224460602, 0.03246980533003807, -0.006089742761105299, 0.004915457684546709, -0.041202519088983536, 0.03477206826210022, 0.03379294276237488, 0.008004984818398952, 0.02569534070789814, -0.047394804656505585, 0.0021385217551141977, 0.023816484957933426, 0.04951182380318642, -0.022281644865870476, -0.04538363218307495, -0.03411049768328667, 0.03432219848036766, 0.013105682097375393, -0.0035195471718907356, 0.01589088700711727, -0.023882640525698662, 0.031358372420072556, -0.005729187745600939, -0.047262489795684814, 0.03016754612326622, -0.009010570123791695, -0.021977322176098824, 0.006701693870127201, 0.04255211725831032, -0.01652599312365055, 0.005061002913862467, -0.028288690373301506, -0.014395741745829582, -0.05599519982933998, 0.010188162326812744, 0.022228717803955078, 0.01820637844502926, -0.015348400920629501, 0.019476590678095818, 0.026475992053747177, 0.00840192660689354, -0.007885902188718319, 0.014501592144370079, -0.00035642029251903296, 0.015282243490219116, 0.0033227303065359592, -0.030643876641988754, 0.019436897709965706, -0.057053711265325546, -0.0009691985906101763, 0.004310122225433588, -0.007859439589083195, -0.007773435674607754, 0.008534240536391735, 0.01603643223643303, 0.015123466961085796, -0.008752557449042797, 0.03143775835633278, 0.031993478536605835, 0.04376940429210663, -0.036121666431427, -0.009605982340872288, -0.013800329528748989, -0.005147006828337908, 0.04887671768665314, -0.060811422765254974, -0.012073634192347527, -0.0026561995036900043, -0.00701263127848506, 0.025986431166529655, -0.047765281051397324, -0.008368847891688347, 0.04149360954761505, -0.0677446648478508, -0.016406910493969917, -0.01743895933032036, 0.03712725266814232, 0.015507177449762821, 0.011438528075814247, 0.010631414130330086, -0.017822669818997383, -0.022572733461856842, 0.03617459163069725, -0.024358971044421196, 0.013892948627471924, 0.03725956752896309, -0.013476160354912281, -0.0172934141010046, -0.01698909141123295, 0.029294274747371674, -0.025391018018126488, 0.022652123123407364, 0.015533640049397945, 0.0086467070505023, -0.0059838914312422276, 0.025761496275663376, 0.013535701669752598, -0.015070541761815548, 0.021209903061389923, 0.018219610676169395, -0.023194609209895134, -0.05117897689342499, 0.0415465347468853, -0.06552179157733917, 0.05446036159992218, -0.012146406807005405, 0.008176992647349834, 0.07361939549446106, -0.03374001756310463, 0.0004912149743176997, 0.021024663001298904, 0.01665830798447132, 0.03389879688620567, -0.0269655529409647, -0.03964121639728546, -0.033131375908851624, -0.047077249735593796, -0.0030498330015689135, -0.025417480617761612, -0.06377524882555008, -0.030246933922171593, 0.03130544349551201, 0.03699493780732155, -0.013615090399980545, 0.02556302584707737, 0.014514823444187641, 0.038582704961299896, 0.04654799401760101, -0.014475129544734955, 0.013185069896280766, -0.008315922692418098, -0.04204932600259781, -0.014991153962910175, -0.03501022979617119, -0.018643014132976532, 0.03395172208547592, -0.05387818068265915, 0.05911780521273613, 0.0032731126993894577, 0.04009108245372772, 0.0346926786005497, 0.025443943217396736, 0.05488376319408417, -0.0004511073639150709, 0.013026293367147446, 0.00711186695843935, -0.0011453413171693683, -0.03228456899523735, -0.020561564713716507, -0.02470298670232296, 0.024822069332003593, 0.059858761727809906, -0.008223302662372589, -0.018179915845394135, 0.006880317814648151, 0.07192578166723251, -0.04051448404788971, -0.0016009969403967261, 0.025007307529449463, -0.013615090399980545, 0.05178762227296829, -0.00021749081497546285, 0.0052859364077448845, 0.09436620026826859, 0.03299906104803085, 0.01602320186793804, 0.05625982955098152, -0.07346062362194061, -0.0018623167416080832, -0.013747403398156166, -0.004478821996599436, 0.03342246636748314, -0.014872071333229542, 0.007336800452321768, 0.012106712907552719, 0.009056879207491875, 0.06880317628383636, 0.04252565652132034, -0.040726188570261, -0.013945874758064747, -0.01802114024758339, 0.0005743245710618794, -0.05625982955098152, 0.02294321358203888, -0.02818283997476101, 0.0034236195497214794, -0.005226395092904568, 0.006532994098961353, -0.001651441678404808, 0.011418680660426617, 0.001180900726467371, 0.02212286740541458, 0.03074972704052925, -0.037868209183216095, -0.010962198488414288, 0.02027047425508499, -0.01787559501826763, -0.02529839798808098, 0.006370909512042999, 0.027124328538775444, -0.00589457992464304, -0.031993478536605835, 0.010896041058003902, 0.018907641991972923, -0.00703247869387269, -0.019344277679920197, -0.05541301891207695, -0.0030498330015689135, 0.013079219497740269, -0.01559979747980833, -0.008117451332509518, -0.018669476732611656, 0.01851070113480091, 0.03450743854045868, -0.03498376905918121, -0.011954551562666893, 0.007555117830634117, -0.014012031257152557, 0.010671108029782772, 0.03643922135233879, -0.003102758666500449, -0.006711617577821016, 0.004852608777582645, 0.02958536520600319, -0.0010287398472428322, 0.004634290933609009, -0.00709201954305172, 0.0028464007191359997, 0.01671123318374157, -0.02592027373611927, 0.039270736277103424, -0.0018705863039940596, -0.000638827565126121, 0.02099820040166378, 0.03572472557425499, 0.015044079162180424, -0.04480145126581192, -0.014157576486468315, -0.007105251308530569, -0.001840815762989223, -0.016406910493969917, 0.023723864927887917, -0.028235765174031258, -0.031093742698431015, 0.04556887224316597, -0.0038371002301573753, -0.011650229804217815, 0.03641275689005852, 0.027309568598866463, -0.04538363218307495, -0.017359571531414986, 0.005795344244688749, 0.042657967656850815, 0.04437804967164993, -0.017650660127401352, 0.07054971903562546, -0.02406788058578968, 0.042287491261959076, -0.00396279850974679, 0.006781082134693861, -0.006453605834394693, -0.01364155299961567, 0.009850762784481049, -0.010492484085261822, 0.004071957431733608, -0.013919412158429623, -0.05948828533291817, -0.0316229984164238, 0.014819145202636719, 0.0027967828791588545, 0.014951459132134914, 0.0042836591601371765, 0.012563195079565048, 0.016115820035338402, 0.03350185602903366, 0.0053719403222203255, 0.0018590089166536927, -0.022691816091537476, 0.02876502089202404, 0.008514393121004105, -0.035513024777173996, -0.008937797509133816, 0.022678585723042488, -0.025576258078217506, -0.02236103266477585, 0.010055848397314548, -0.02281089872121811, 0.03022047132253647, 0.02700524590909481, 0.013932643458247185, -0.010300629772245884, -0.020892350003123283, -0.01698909141123295, -0.006367601454257965, -0.021712694317102432, -0.048665016889572144, -0.04088496416807175, 0.015044079162180424, 0.004415973089635372, -0.006658691912889481, -0.010532178916037083, 0.010896041058003902, -0.01634075492620468, -0.042975522577762604, 0.03720664232969284, -0.024782374501228333, -0.017624197527766228, 0.03188762441277504, -0.022599197924137115, -0.06853854656219482, -0.03215225413441658, -0.008970875293016434, -0.04331953823566437, 0.006880317814648151, -0.001414103782735765, -0.008752557449042797, -0.0007194562931545079, -0.011742849834263325, 0.00448213005438447, 0.016499530524015427, 0.023221071809530258, 0.013429850339889526, -0.04146714508533478, 0.006212132982909679, -0.008276227861642838, -0.007184639573097229, 0.02736249379813671, 0.042287491261959076, -0.0069332430139184, 0.04403403401374817, 0.001687000971287489, -0.007019246928393841, -0.01688324101269245, 0.002128598280251026, 0.009678754955530167, -0.03789467364549637, 0.012880748137831688, -0.014633906073868275, 0.00977799016982317, 0.021117283031344414, 0.043293073773384094, -0.0028579779900610447, -0.0038734865374863148, 0.005527408793568611, 0.010452790185809135, 0.028262227773666382, 0.003039909526705742, 0.027918212115764618, -0.010856347158551216, 0.04384879395365715, 0.012702125124633312, 0.025642413645982742, -0.03823868930339813, 0.018682708963751793, -0.009956613183021545, 0.007952059619128704, 0.02204347960650921, 0.004756681155413389, 0.014633906073868275, -0.011008508503437042, -0.010009539313614368, -0.017862362787127495, 0.03948243707418442, 0.02475591190159321, 0.014872071333229542, 0.011881778948009014, -0.0010791844688355923, -0.02326076664030552, 0.03995876759290695, 0.007224333472549915, 0.02850039303302765, 0.01428989041596651, 0.003913180436939001, 0.021249596029520035, 0.038767945021390915, -0.012609505094587803, 0.0063179838471114635, 0.01643337309360504, -0.01492499653249979, 0.0250205397605896, 0.021289290860295296, -0.024464821442961693, -0.04673323407769203, -0.04252565652132034, -0.012397803366184235, 0.03503669425845146, -0.01665830798447132, 0.016631845384836197, 0.0005395922344177961, -0.020826192572712898, -0.015044079162180424, -0.022136099636554718, -0.0021302520763128996, -0.008362231776118279, -0.023247534409165382, 0.008547471836209297, 0.00037047863588668406, 0.006202209275215864, -0.01796821318566799, 0.0035592413041740656, 0.027918212115764618, -0.00766758481040597, -0.024279583245515823, 0.004988230299204588, -0.012027324177324772, 0.00468390854075551, -0.024504516273736954, -0.0023105298168957233, -0.029770605266094208, -0.0032367263920605183, 0.028394540771842003, 0.02032339945435524, 0.01185531634837389, -0.05657738074660301, 0.029109036549925804, 0.010327092371881008, 0.007594812195748091, 0.012291952036321163, 0.008831946179270744, 0.026383372023701668, -0.0234327744692564, 0.008421773090958595, -0.000316726160235703, -0.0020707109943032265, 0.016049664467573166, -0.016737695783376694, 0.0188811793923378, -5.282214988255873e-05, 0.022969676181674004, -0.0011924781138077378, 0.010770343244075775, -0.02520577982068062, 0.005004769656807184, 0.017584504559636116, -0.020918812602758408, 0.021686231717467308, 0.013032909482717514, 0.03670384734869003, 0.03471914306282997, 0.02118343859910965, -0.0038238689303398132, -0.007694047410041094, 0.014144345186650753, -0.01761096715927124, 0.0003694449260365218, -0.059276580810546875, 0.019754450768232346, 0.022096404805779457, 0.028341615572571754, -0.02154068648815155, 0.006314676254987717, -0.031226057559251785, 0.01833869330585003, 0.02086588554084301, -0.00926196575164795, -0.0003731662582140416, 0.023591550067067146, 0.010571872815489769, -0.01815345324575901, -0.0038238689303398132, -7.969838770804927e-05, -0.04885025694966316, 0.011173900216817856, -0.04117605462670326, 0.049061957746744156, -0.016909703612327576, -0.01040648017078638, 0.02180531434714794, 0.00817037746310234, -0.031040817499160767, -0.018007908016443253, 0.000589623348787427, -0.0238958727568388, 0.0004444916849024594, -0.033845871686935425, 0.010803421959280968, -0.0692795068025589, -0.008183608762919903, 0.036783237010240555, 0.029056111350655556, -0.004528439603745937, -0.00871286354959011, 0.04914134368300438, 0.034348662942647934, 0.015004385262727737, -0.006549532990902662, -0.023790020495653152, -0.005745726637542248, 0.0037974060978740454, 0.0011866893619298935, 0.060811422765254974, 0.035698264837265015, 0.009215655736625195, -0.009361200965940952, -0.027256643399596214, -0.04660091921687126, 0.021249596029520035, -0.028156377375125885, -0.041572995483875275, 0.014078188687562943, 0.008937797509133816, 0.06001754105091095, -0.020786497741937637, -0.010750495828688145, -0.0015761881368234754, -0.0031093743164092302, 0.04162592068314552, -0.027944674715399742, 0.003648553043603897, 0.02191116474568844, 0.019476590678095818, -0.004915457684546709, -0.009050264023244381, 0.019291352480649948, -0.039667677134275436, -0.025999661535024643, -0.00211205892264843, -0.012523501180112362, -0.0022112943697720766, 0.021686231717467308, 0.014528055675327778, -0.042605042457580566, 0.004138113930821419, -0.0362275168299675, 0.00358570390380919, -0.012358108535408974, -0.006926627364009619, -0.021487761288881302, 0.003708094358444214, -0.03363416716456413, -0.00026628150953911245, 0.0036386295687407255, -0.004654137883335352, 0.019026724621653557, -0.01820637844502926, 0.001093242783099413, -0.006321291904896498, -0.014686832204461098, 0.006546225398778915, -0.024094343185424805, 0.025893811136484146, -0.009381048381328583, -5.8610879932530224e-05, -0.02189793437719345, -0.0005925177247263491, 0.014263427816331387, 0.016314292326569557, -0.018682708963751793, -0.0052793207578361034, 0.057741742581129074, -0.0017432343447580934, 0.017544809728860855, -0.009076726622879505, 0.002960521262139082, 0.016605382785201073, -0.01589088700711727, 0.05694786086678505, 0.034745603799819946, 0.00043208725401200354, -0.010141853243112564, 0.0292148869484663, 0.031173130497336388, -0.018537163734436035, -0.0064899916760623455, 0.00021625036606565118, -0.009070111438632011, 0.019675062969326973, 0.015573333948850632, 0.01097542978823185, -0.00014461485261563212, -0.011147437617182732, 0.04075264930725098, -0.04517193138599396, -0.013449697755277157, 0.005352093372493982, 0.027838824316859245, 0.003794098272919655, -0.004654137883335352, -0.02953244000673294, -0.005067618563771248, 0.00026566130691207945, -0.0016059587942436337, 0.009314891882240772, -0.025099927559494972, 0.026899395510554314, 0.02520577982068062, 0.009678754955530167, -0.0261452067643404, -0.011206978932023048, 0.005070926621556282, -0.007515423931181431, -0.01734633930027485, -0.023697402328252792, 0.044060494750738144, -0.007555117830634117, -0.002074018819257617, 0.01937074027955532, -0.005722572095692158, 0.008997338823974133, 0.06097019836306572, -0.010393248870968819, 0.005491022486239672, 0.0086467070505023, 0.005560487508773804, -0.019304582849144936, 0.0029373662546277046, 0.010366786271333694, 0.011028354987502098, -0.046997860074043274, 0.01099527720361948, 0.05573057383298874, 0.00024498728453181684, 0.025404250249266624, 0.034295737743377686, 0.0056431833654642105, 0.044827915728092194, 0.005024616606533527, 0.018126990646123886, 0.002573503414168954, 0.022705048322677612, -0.030141083523631096, 0.008739326149225235, -0.016155514866113663, -0.021792082116007805, -0.008441620506346226, 0.012126559391617775, 0.06652738153934479, 0.028976721689105034, 0.010585104115307331, -0.02131575345993042, -0.0017696970608085394, 0.0026843161322176456, 0.021977322176098824, 0.001557168085128069, -0.01697586104273796, 0.009341354481875896, 0.03744480386376381, 0.00290759583003819, -0.02429281361401081, 0.012225795537233353, 0.0408320389688015, 0.02208317257463932, -0.028024062514305115, 0.028288690373301506, 0.0016208440065383911, 0.011736233718693256, -0.03890025615692139, -0.023565087467432022, 0.019622135907411575, -0.03516900911927223, 0.008143914863467216, 0.03643922135233879, -0.004650830291211605, -0.008362231776118279, -0.020124929025769234, -0.025761496275663376, 0.006913396064192057, 0.010690955445170403, 0.01675092801451683, -0.044457435607910156, -0.010611566714942455, 0.039720602333545685, 0.019317815080285072, -0.0038172530476003885, 0.007621274795383215, 0.02126282826066017, 0.018034370616078377, 0.02528516761958599, 0.014303121715784073, 0.04263150691986084, -0.0011668422957882285, 0.017862362787127495, -0.001297502196393907, -0.007488961331546307, 0.0009609289700165391, 0.015308707021176815, -0.013019678182899952, 0.041837625205516815, 0.012404418550431728, 0.014303121715784073, 0.014303121715784073, 0.025324860587716103, 0.031278982758522034, -0.015824731439352036, -0.025417480617761612, 0.006470144726336002, -0.004501977004110813, 0.032231640070676804, 0.014369279146194458, -0.014911765232682228, 0.051919933408498764, 0.036148130893707275, 0.04316076263785362, -0.037365417927503586, -0.015321938320994377, 0.024081110954284668, -0.03392525762319565, -0.04313429817557335, 0.017015554010868073, 0.036280445754528046, 0.037550657987594604, 0.0030316398479044437, -0.06218748539686203, 0.03043217398226261, -0.0158114992082119, -0.024544209241867065, 0.04858562722802162, 0.027336031198501587, -0.01725371927022934, 0.015904119238257408, -0.015269012190401554, 0.011994246393442154, 0.021964089944958687, 0.0034566980320960283, 0.03821222484111786, -0.01237134076654911, -0.009996308013796806, -0.028553318232297897, 0.03164946287870407, -0.039350125938653946, -0.037365417927503586, -0.05446036159992218, 0.04567472264170647, 0.012920442968606949, 0.03260212019085884, -0.01088280975818634, 0.0051933168433606625, 0.011531148105859756, 0.0017316568410024047, 0.005166853778064251, 0.016817083582282066, -0.019529517740011215, 0.010552025400102139, 0.015732111409306526, 0.0008298556203953922, -0.026449529454112053, -0.017505114898085594, 0.01770358718931675, -0.013151992112398148, 0.030246933922171593, -0.04593935236334801, -0.0030250241979956627, -0.011464990675449371, 0.01099527720361948, -0.020429249852895737, -0.022996138781309128, 0.011352524161338806, 0.008997338823974133, 0.03718017786741257, 0.009870609268546104, 0.019992616027593613, 0.024081110954284668, 0.023234304040670395, -0.0016448259120807052, 0.012708740308880806, -0.001753157819621265, 0.004442435689270496, -0.026806775480508804, 0.010618182830512524, 0.002905941801145673, 0.013840023428201675, -0.008057910017669201, 0.012993215583264828, -0.0013719287235289812, -0.03445451334118843, 0.028791483491659164, -0.002186485566198826, -0.037735894322395325, 0.022427188232541084, -0.0017548117320984602, 0.014395741745829582, -0.019251657649874687, -0.0022162562236189842, 0.013429850339889526, 0.020111696794629097, 0.010783574543893337, -0.011564225889742374, -0.0021964090410619974, -0.014964690431952477, -0.005881348624825478, -0.0046111359260976315, 0.017214026302099228, -0.03604228049516678, 0.06562764197587967, -0.025457175448536873, 0.020984968170523643, -0.004528439603745937, 0.00903041660785675, 0.044007569551467896, -0.003259881166741252, 0.012748434208333492, 0.03577765077352524, -0.03074972704052925, 0.011524531990289688, 0.003393848892301321, -0.0013049448607489467, 0.01680385321378708, -0.012450728565454483, 0.018126990646123886, -0.03924427181482315, -0.005696109030395746, -0.03125251829624176, -0.02651568502187729, 0.029744142666459084, -0.025761496275663376, -0.008395310491323471, 0.008593780919909477, -0.0015224356902763247, -0.0036518608685582876, -0.04210225120186806, -0.00358570390380919, -0.027971137315034866, -0.03437512367963791, 0.00011804871610365808, 0.022929981350898743, 0.0238958727568388, -0.03797405958175659, -0.011087896302342415, -0.009017185308039188, -0.006410603411495686, -0.002452766988426447, 0.03061741404235363, -0.02019108645617962, 0.00014327104145195335, 0.011240057647228241, 0.003767635440453887, 0.09399572014808655, -0.02122313342988491, -0.002834823215380311, 0.023472467437386513, -0.01047925278544426, -0.01743895933032036, 0.013562164269387722, 0.03580411523580551, -0.0269655529409647, -0.02073357254266739, -0.02691262774169445, 0.02397526055574417, -0.013522470369935036, 0.040435098111629486, -0.01798144541680813, 0.017809437587857246, 0.025576258078217506, 0.02768004685640335, 0.025814423337578773, -0.02470298670232296, 0.028659168630838394, -0.02294321358203888, 0.019039954990148544, -0.017465421929955482, -0.0013537355698645115, -0.02234780043363571, -0.007912365719676018, 0.0277329720556736, 0.010717418044805527, 0.010300629772245884, 0.0027306261472404003, -0.005094081163406372, -0.01273520290851593, -0.009539824910461903, -0.01594381220638752, -0.008335769176483154, 0.018087295815348625, 0.0008840215741656721, -0.010922504588961601, -0.006003738846629858, -0.009215655736625195, -0.017174331471323967, -0.026303984224796295, 0.021302521228790283, 0.0013016370357945561, 0.030008770525455475, -0.029797067865729332, -0.021553918719291687, -0.00010269824997521937, -0.005031232256442308, 0.015097004361450672, 0.013972337357699871, 0.000853424018714577, -0.011762697249650955, 0.0008509431499987841, -0.010644645430147648, -0.0076477378606796265, -0.04009108245372772, -0.02077326737344265, -0.003314460627734661, -0.034480977803468704, 0.03204640373587608, 0.010049233213067055, 0.027084635570645332, -0.0015811498742550611, 0.003999184817075729, -0.019833838567137718, 0.008296075277030468, -0.012424265965819359, 0.016327522695064545, 0.023684170097112656, -0.00993676669895649, -0.0005710167461074889, 1.1512851415318437e-05, -0.0006074030534364283, 0.015652721747756004, -0.02005877159535885, 0.030141083523631096, -0.0004916284815408289, 0.03890025615692139, -0.01305275596678257, -0.016499530524015427, 0.04249919205904007, 0.0008997338591143489, 0.012497038580477238, 0.00029584538424387574, -0.06366939842700958, 0.003595627611503005, 0.002661161357536912, 0.022030247375369072, 0.02475591190159321, -0.0028464007191359997, -0.0238958727568388, -0.022162562236189842, 0.005755650345236063, 0.011577457189559937, -0.008739326149225235, -0.02913549914956093, -0.008223302662372589, -0.011868547648191452, 0.012153022922575474, -0.018312230706214905, -0.05753004178404808, 0.021209903061389923, -0.01266904640942812, 0.019939688965678215, 0.03138483315706253, -0.015229318290948868, -0.008891487494111061, -0.0184180811047554, -0.038450390100479126, -0.00790574960410595, 0.025867348536849022, -0.01524254959076643, -0.017994677647948265, 0.00766758481040597, 0.02704494073987007, -0.0068935491144657135, -0.004908842034637928, 0.024954382330179214, -0.004740141797810793, -0.010042617097496986, 0.02990291826426983, 0.027018478140234947, 0.009400895796716213, 0.015070541761815548, -0.02637013979256153, 0.02876502089202404, 0.04421927034854889, 0.030088158324360847, -0.010525562800467014, 0.017650660127401352, 0.009248734451830387, -0.02344600483775139, -0.015771804377436638, 0.03477206826210022, -0.014422204345464706, 0.03347539156675339, 0.0007194562931545079, -0.036333370953798294, 0.023234304040670395, 0.010651260614395142, 0.027018478140234947, -0.04813576117157936, -0.0076477378606796265, -0.0377623587846756, 0.018907641991972923, 0.009731680154800415, -0.001396737527102232, 0.017637429758906364, 0.01634075492620468, -0.014210502617061138, -0.040726188570261, 0.020310169085860252, -0.00029253753018565476, 0.014157576486468315, -0.01602320186793804, 0.005682877730578184, 0.025099927559494972, -0.023684170097112656, 0.008587165735661983, 0.007885902188718319, 0.0005247069057077169, 0.00946043711155653, -0.0030233704019337893, 0.028473930433392525, -0.013436466455459595, 0.011385602876543999, 0.036068741232156754, -0.003754404140636325, -0.0165789183229208, -0.029955845326185226, 0.015467483550310135, 0.003054794855415821, -0.004707063548266888, -0.020918812602758408, -0.014303121715784073, 0.008415157906711102, -0.006261750590056181, 0.029426589608192444, 0.0008782328222878277, 0.010717418044805527, -0.02674061991274357, -0.0072441804222762585, 0.012040555477142334, 0.0021649845875799656, 0.021699463948607445, -0.013277689926326275, 0.016764158383011818, -0.0376565083861351, 0.01856362633407116, -0.03209932893514633, 0.013813560828566551, -0.009890456683933735, 0.023869410157203674, -0.02416050061583519, -0.0469713993370533, 0.00986399408429861, -0.028712093830108643, -0.03029986098408699, -0.01626136526465416, -0.01244411338120699, 0.009559672325849533, -0.010532178916037083, -0.021567149087786674, -0.02627752162516117, -0.01671123318374157, -0.04141421988606453, -0.01743895933032036, -0.03016754612326622, -0.017266951501369476, -0.0092090405523777, 0.022956443950533867, -0.0184180811047554, -0.0003245823027100414, -0.011173900216817856, -0.0023254151456058025, -0.0046872165985405445, -0.024226656183600426, 0.013959106057882309, -0.013158607296645641, 0.0014595866668969393, 0.003608858911320567, -0.011445144191384315, -0.014580980874598026, 0.013654784299433231, 0.003125913441181183, -0.0036650921683758497, 0.04212871566414833, -0.02249334566295147, 0.02610551193356514, 0.04268443211913109, -0.014475129544734955, -0.004455667454749346, -0.01751834712922573, -0.0042836591601371765, -0.007436035666614771, -0.008157146163284779, 0.003061410505324602, -0.022003784775733948, 0.01792852021753788, 0.021699463948607445, -0.012622736394405365, -0.005722572095692158, -0.0056266444735229015, 0.001453797915019095, -0.022546270862221718, 0.005874732509255409, -0.033528316766023636, -0.03246980533003807, -0.0014223733451217413, -0.02588057890534401, -0.006794313434511423, 0.0006284905248321593, -0.01847100630402565, -0.013800329528748989, -0.049379508942365646, -0.036783237010240555, 0.007369878701865673, -0.0002726904640439898, 0.0016175361815840006, -0.03982645273208618, 0.03329015150666237, 0.031014354899525642, 0.0032962674740701914, 0.013026293367147446, -0.005047771614044905, -0.011782543733716011, -0.0017432343447580934, 0.03246980533003807, 4.101211015949957e-05, 0.030696801841259003, -0.028103450313210487, -0.03501022979617119, -0.0150176165625453, 0.006966321729123592, 0.01032047625631094, 0.02619813196361065, -0.005514177493751049, 0.0020177855622023344, 0.0018044294556602836, -0.005156930536031723, 0.0017432343447580934, 0.02384294755756855, -0.023948797956109047, 0.00797190610319376, -0.001084146206267178, 0.0017515039071440697, 0.005163546185940504, -0.01937074027955532, -0.008421773090958595, 0.006992784328758717, -0.012629352509975433, 0.0019020108738914132, 0.024491284042596817, 0.014303121715784073, -0.008296075277030468, 0.004554902669042349, -0.009989691898226738, -0.012774897739291191, 0.0011974398512393236, -0.022030247375369072, 0.036280445754528046, 0.008759173564612865, -0.012463959865272045, 0.03278736025094986, 0.01485884003341198, -0.004974998999387026, -0.013932643458247185, 0.001460413564927876, -0.015586565248668194, 0.015613028779625893, 0.024279583245515823, 0.006999399978667498, -0.006648768670856953, 0.015097004361450672, -0.01927812024950981, -0.010750495828688145, 0.0161687470972538, 0.007178023457527161, -0.020336631685495377, 0.021686231717467308, -0.03839746490120888, -0.038371000438928604, 0.11156699806451797, -0.0022046787198632956, 0.00649329973384738, -0.022559503093361855, -0.03146422281861305, -0.010036001913249493, 0.012424265965819359, -0.019092882052063942, 0.018854716792702675, 0.0002224525815108791, -0.0011916512157768011, 0.030405711382627487, 0.007356647402048111, 0.007707278709858656, 0.000510235084220767, -0.0338723324239254, -0.002647929824888706, -0.0038569471798837185, 0.014977922663092613, -0.005047771614044905, -0.010545410215854645, 0.04255211725831032, -0.04503961652517319, 0.022691816091537476, 0.006394064519554377, 0.008071142248809338, -0.019675062969326973, -0.009400895796716213, -0.003734556958079338, -0.044457435607910156, -0.006665307562798262, -0.0006330388132482767, 0.01937074027955532, 0.019675062969326973, 0.0032516117207705975, 0.012067019008100033, -0.00797190610319376, 0.0035526256542652845, -0.035513024777173996, 0.009096574038267136, -0.014805913902819157, 0.026383372023701668, -0.0008567318436689675, -0.030405711382627487, -0.024186963215470314, 0.05922365561127663, -0.03707432746887207, 0.012344877235591412, -0.005395095329731703, -0.002652891678735614, 0.028156377375125885, -0.043875254690647125, 0.014435435645282269, 0.002401495585218072, -0.011928088963031769, 0.006675231270492077, 0.01282782293856144, -0.014250196516513824, 0.0035360862966626883, -0.04371647909283638, 0.03932366147637367, 0.021342216059565544, 0.02674061991274357, -0.011577457189559937, 0.020786497741937637], [0.007074431981891394, 0.013801275752484798, 0.01887878216803074, 0.03399543836712837, -0.04574526846408844, 0.0023734786082059145, -0.024494709447026253, 0.010066412389278412, -0.02254549227654934, 0.04803525656461716, 0.00821942649781704, 0.022818109020590782, 0.016629686579108238, 0.03366829827427864, 0.002732993336394429, -0.03448615223169327, 0.03770304098725319, 0.0036462631542235613, 0.014271541498601437, 0.018415331840515137, 0.02917010523378849, 0.04939834401011467, -0.01946491003036499, 0.019751159474253654, -0.009930103085935116, 0.04296456649899483, 0.051552027463912964, -0.042310282588005066, 0.055205103009939194, 0.00040977864409796894, 0.02659386582672596, -0.01844259351491928, 0.027588920667767525, -0.013794460333883762, 0.04623597860336304, 0.01098649762570858, -0.031132953241467476, 0.0601394884288311, -0.0076741911470890045, -0.0034383919555693865, 0.018715212121605873, -0.04386420547962189, 0.024876374751329422, 0.03759399428963661, -0.057849496603012085, 0.012806220911443233, 0.0028607831336557865, -0.05664997920393944, 0.015389274805784225, -0.013651336543262005, 0.013521842658519745, 0.00022405775962397456, -0.0034690615721046925, 0.01374675240367651, -0.05861282721161842, -0.009234927594661713, -0.0025949806440621614, 0.020718952640891075, 0.045390862971544266, -0.0317327119410038, -0.024249352514743805, -0.04026564955711365, 0.004954828415066004, 0.05035250633955002, -0.017556585371494293, -0.06079376861453056, -0.006788183003664017, 0.04111076518893242, -0.01484403945505619, -0.03552209958434105, 0.04716287925839424, 0.02600773796439171, 0.0045390864834189415, 0.02472643367946148, -0.0015402905410155654, -0.008628353476524353, 0.014898562803864479, -0.015593738295137882, -0.018210869282484055, -0.012199646793305874, -0.012151938863098621, 0.00539442477747798, -0.014407850801944733, -0.007960439659655094, -0.04081088304519653, -0.011327269487082958, -0.11875231564044952, -0.026103153824806213, -0.0017788311233744025, -0.035440314561128616, -0.0055409567430615425, 0.02607589215040207, 0.00681203743442893, 0.0006440595607273281, -0.02595321461558342, 0.012799405492842197, 0.06286566704511642, -0.011313638649880886, -0.0018112044781446457, 0.029088318347930908, -0.01831991598010063, -0.03693971037864685, -0.040183864533901215, -1.1667456419672817e-05, 0.01979205198585987, -0.04086540639400482, -0.019573958590626717, 0.047571804374456406, 0.023431500419974327, -0.02827046625316143, 0.0819489136338234, -0.04765359312295914, 0.010216351598501205, 0.05332404002547264, -0.010045966133475304, -0.024508340284228325, 0.0069926464930176735, -0.04130159690976143, 0.007122139912098646, 0.0034486150834709406, -0.03631269186735153, -0.01301068440079689, 0.0040926747024059296, -0.024631017819046974, 0.014666837640106678, -0.013078838586807251, -0.025094468146562576, -0.0042460220865905285, -0.05376023054122925, -0.01134090032428503, 0.05310594663023949, -0.023022573441267014, 0.019546696916222572, -0.0028471520636230707, 0.0011092136846855283, -0.02555791847407818, 0.029715340584516525, -0.03734863921999931, -0.0038882114458829165, 0.0017413462046533823, -0.016793256625533104, -0.0165751613676548, 0.017583848908543587, 0.021986626088619232, -0.014653206802904606, -0.020337287336587906, -0.023267928510904312, 0.0117225656285882, 0.04620871692895889, -0.02255912311375141, 0.0025404570624232292, 0.05198821425437927, 0.010775218717753887, 6.964532803976908e-05, -0.011443132534623146, -0.02576238289475441, 0.007912731729447842, 0.057522356510162354, -0.0036667094100266695, -0.022572753950953484, -0.024194829165935516, -0.021550437435507774, -0.0024109636433422565, 0.024003997445106506, 0.019683005288243294, 0.02968807891011238, 0.01671147160232067, 0.033831868320703506, -0.03803018480539322, -0.02518988400697708, -0.034077223390340805, -0.01281303633004427, -0.03437710553407669, -0.019124139100313187, -0.048335134983062744, -0.005268339067697525, 0.011115990579128265, 0.015266596339643002, 0.020977940410375595, -0.01747480034828186, 0.037621255964040756, 0.10266786068677902, -0.04465479403734207, -0.004801481030881405, -0.01889241300523281, 0.005506879650056362, 0.0042494297958910465, 0.0189469363540411, -0.013903507962822914, 0.04162873700261116, 0.010032335296273232, -0.013378718867897987, 0.02050085924565792, -0.0672275498509407, 0.0023802942596375942, -0.01887878216803074, -0.006096415687352419, 0.007708268240094185, 0.05152476578950882, -0.027139101177453995, 0.0606301985681057, -0.027997847646474838, -0.025966845452785492, -0.026307618245482445, -0.03822101652622223, 0.004136974923312664, -0.019642112776637077, -0.005752235651016235, 0.0049309744499623775, -0.005251300521194935, 0.029715340584516525, -0.03612186014652252, -0.0194103866815567, 0.021536806598305702, 0.01317425537854433, -0.018456224352121353, 0.026048630475997925, -0.00030137045541778207, 0.005626149941235781, 0.05362392216920853, -0.026934638619422913, 0.012949345633387566, 0.012935714796185493, 0.0014559493865817785, -0.05594117194414139, 0.0012012221850454807, 0.005721566267311573, -0.013003868982195854, 0.015171180479228497, -0.03287770599126816, -0.024262983351945877, -0.011865689419209957, 0.022313766181468964, -0.05452356114983559, -0.018551642075181007, 0.03914791718125343, 0.004818519577383995, -0.02358143962919712, 0.025162622332572937, -0.013085654005408287, 0.015239334665238857, -0.0023649593349546194, 0.014203387312591076, -0.025980476289987564, -0.002300212625414133, 7.273357914527878e-05, 0.013958031311631203, 0.004971866961568594, -0.04094719514250755, 0.040511004626750946, 0.029006533324718475, 0.024903636425733566, 0.04045648127794266, -0.036530785262584686, -0.023486023768782616, 0.022177457809448242, 0.006266801618039608, -0.030287837609648705, 0.006341771688312292, 0.023540547117590904, 0.019996516406536102, 0.03306853771209717, 0.01600266434252262, -0.020977940410375595, -0.069626584649086, -0.019969254732131958, 0.03565840795636177, 0.003411130281165242, 0.004177867900580168, 0.10424904525279999, 0.004058597609400749, 0.017393015325069427, -0.017556585371494293, -0.017883727326989174, -0.09857859462499619, -0.005183145869523287, 0.045200031250715256, 0.011954290792346, -0.003145327791571617, -0.021168772131204605, -0.0293609369546175, -0.0007462912471964955, 0.034976862370967865, -0.06668231636285782, 0.008812370710074902, -0.009194035083055496, 0.0020122600253671408, -0.007394757587462664, -0.034404367208480835, 0.028897486627101898, 0.03873898833990097, 0.003932511899620295, -0.00886689405888319, -0.007749160751700401, 0.02022824063897133, -0.009943733923137188, 0.013923954218626022, 0.017379384487867355, -0.00037250667810440063, 0.006055522710084915, 0.02499905228614807, 0.03282318264245987, -0.05506879463791847, -0.038330063223838806, -0.026757437735795975, 0.0022184273693710566, 0.05801306664943695, 0.004266468342393637, -0.0402383878827095, -0.06902682781219482, -0.04383694380521774, 0.03361377492547035, -0.05523236468434334, -0.004116528667509556, 0.01818360760807991, 0.011225038208067417, 0.01631617546081543, 0.035358529537916183, 0.018837889656424522, 0.008158087730407715, 0.02518988400697708, 0.011075098067522049, 0.0040211123414337635, -0.0040824515745043755, 0.009275821037590504, -0.01619349792599678, 0.03977493569254875, 0.0286521315574646, 0.04697204753756523, 0.025162622332572937, -0.030287837609648705, 0.018415331840515137, 0.018551642075181007, 0.0012710804585367441, -0.056704502552747726, -0.08838269114494324, -0.051552027463912964, 0.008880524896085262, 0.004048374481499195, -0.015961771830916405, -0.006461041979491711, -0.0012991941766813397, 0.01844259351491928, 0.011313638649880886, -0.032659612596035004, 0.033504728227853775, -0.03252330422401428, -0.02673017606139183, 0.016016295179724693, 0.027725230902433395, -0.018592534586787224, -0.029906172305345535, -0.034349843859672546, -0.0024092597886919975, -0.05615926533937454, 0.00507750641554594, 0.015402905642986298, 0.024699172005057335, -0.006726844236254692, 0.047053832560777664, -0.033695559948682785, 0.004055189900100231, -0.022845370694994926, 0.037239592522382736, 0.003973404411226511, 0.015539214946329594, -0.035249482840299606, -0.028815701603889465, 0.020064670592546463, -0.025653334334492683, 0.0011978144757449627, 0.019287709146738052, -0.002698916243389249, 0.01335827261209488, 0.045718006789684296, 0.01752932369709015, 0.04100171849131584, -0.0028658946976065636, 0.061066385358572006, 0.02813415601849556, -0.003412834135815501, -0.04822608828544617, 0.005203592125326395, -0.0038813960272818804, -0.018360808491706848, 0.04817156493663788, -0.06117543578147888, -0.05594117194414139, 0.014503266662359238, 0.0010453189024701715, 0.06390161067247391, -0.061448052525520325, -0.007892285473644733, 0.022504599764943123, -0.08701959997415543, -0.005339900963008404, -0.0234451312571764, 0.05594117194414139, 0.010345845483243465, 0.0008510787156410515, -0.03661257028579712, -0.017638372257351875, -0.024113044142723083, -0.001363940886221826, -0.020446335896849632, 0.013535473495721817, 0.010802480392158031, -0.004113120958209038, -0.04836239665746689, -0.015103026293218136, 0.033313896507024765, -0.002317251404747367, 0.02788880094885826, 0.02202751860022545, 0.017433907836675644, 0.008928232826292515, 0.00963703915476799, 0.02993343397974968, -0.030424145981669426, 0.011783904395997524, 0.018524380400776863, -0.02878843992948532, -0.03020605258643627, 0.043209921568632126, -0.023908581584692, 0.062156859785318375, 0.03933874890208244, 0.023295190185308456, 0.08009511232376099, -0.023526916280388832, -0.028924748301506042, 0.023976735770702362, -0.006846114527434111, 0.045963361859321594, -0.023417869582772255, -0.019478540867567062, -0.030533192679286003, -0.01709313690662384, -0.006890414748340845, -0.007905916310846806, -0.04509098455309868, -0.04187409579753876, 0.03083307296037674, 0.005050244741141796, -0.0134945809841156, -0.004327807575464249, 0.010413999669253826, 0.026171308010816574, -0.00983468722552061, -0.03443162888288498, -0.011422685347497463, 0.008751031011343002, -0.04367337003350258, 0.011320454068481922, -0.02619856968522072, -0.049371082335710526, 0.011995183303952217, -0.026293987408280373, 0.017311230301856995, 0.012792590074241161, 0.04261016100645065, 0.0036667094100266695, -0.008498859591782093, -0.002893156372010708, -0.03631269186735153, 0.0015011017676442862, 0.018592534586787224, -0.0046958415769040585, -0.021250557154417038, -0.020391810685396194, -0.012022444978356361, 0.03841184824705124, 0.018974198028445244, -0.015784570947289467, 0.011463578790426254, 0.021945733577013016, 0.04579979181289673, -0.029142843559384346, 0.022191088646650314, 0.036912448704242706, 0.0161117110401392, 0.015457428991794586, -0.016943195834755898, 0.0021690153516829014, 0.07344323396682739, 0.041846830397844315, 0.002491045044735074, 0.07028087228536606, -0.038902558386325836, -0.009480283595621586, 0.009821056388318539, -0.0013767199125140905, 0.08418437838554382, -0.015770940110087395, 0.016984088346362114, 0.015593738295137882, 0.012717620469629765, 0.02807963266968727, 0.04618145525455475, -0.022272873669862747, 0.016329806298017502, -0.04094719514250755, 0.01676599495112896, -0.04389146715402603, 0.03936601057648659, 0.004443670157343149, 0.016806887462735176, 0.01631617546081543, -0.023976735770702362, 0.018169976770877838, -0.007394757587462664, 0.016629686579108238, 0.01863342709839344, 0.02589869126677513, -0.03301401436328888, -0.025067206472158432, 0.019628481939435005, 0.020255502313375473, -0.03737590089440346, 0.02300894260406494, 0.04599062353372574, -8.641771273687482e-05, -0.010066412389278412, 0.012295062653720379, -0.008805555291473866, -0.002922122133895755, -0.009739270433783531, -0.04784442484378815, -0.0014900267124176025, 0.002489341190084815, -0.014026185497641563, 0.002317251404747367, 0.00870332308113575, 0.02634851075708866, 0.004406185355037451, -0.025735119357705116, 0.007333418820053339, 0.0013077134499326348, -0.022763585671782494, -0.003772348864004016, 0.023281559348106384, -0.0033821645192801952, 0.025298932567238808, -0.014407850801944733, 0.027316303923726082, 0.0056977118365466595, -0.01558010745793581, -0.015348382294178009, 0.004218760412186384, -0.00883281696587801, -0.02306346595287323, 0.02255912311375141, 0.006403110455721617, 0.00618160841986537, 0.02562607266008854, 0.002741512842476368, 0.024562863633036613, -0.04304635152220726, 0.007074431981891394, -0.003218594007194042, -0.0194103866815567, -0.005687488708645105, 0.007953624241054058, -0.013412795960903168, -0.020596275106072426, 0.030887596309185028, 0.00043150284909643233, -0.017488431185483932, 0.03372282162308693, -0.0023547362070530653, -0.03159640356898308, -0.014925824478268623, -0.012997053563594818, 0.03974767401814461, 0.05408737063407898, -0.0002193721302319318, 0.062102336436510086, -0.023145250976085663, 0.020718952640891075, 0.004068820737302303, -0.0007479951018467546, -0.014803146943449974, -0.014803146943449974, -0.004624279215931892, 0.028706654906272888, -0.000560144369956106, -0.008880524896085262, -0.06237495318055153, -0.045963361859321594, 0.007190294563770294, 0.014026185497641563, 0.012703989632427692, 0.0012301878305152059, -0.00290678720921278, 0.0040211123414337635, 0.036912448704242706, -0.019737528637051582, -0.007510620169341564, -0.018551642075181007, 0.03230521082878113, 0.02086889185011387, -0.034022700041532516, 0.005145661067217588, -0.01015501283109188, -0.022368289530277252, 0.011170513927936554, 0.003344679716974497, -0.042746469378471375, 0.025012683123350143, 0.011572625488042831, 0.015539214946329594, -0.02255912311375141, -0.007926362566649914, -0.02737082727253437, 0.015116657130420208, -0.014762253500521183, -0.02486274391412735, -0.0036155935376882553, 0.037239592522382736, 0.010107304900884628, -0.011858874000608921, -0.013201517052948475, 0.03666709363460541, -0.014598683454096317, -0.06880873441696167, 0.00903046503663063, -0.0018060929141938686, -0.04618145525455475, 0.016629686579108238, -0.03590376302599907, -0.0573042631149292, -0.02787517011165619, -0.018210869282484055, -0.00938486773520708, 0.007047170307487249, 0.006086192559450865, -0.025939583778381348, -0.0116612259298563, -0.0063111018389463425, -0.021891210228204727, 0.0020156679674983025, 0.03178723528981209, 0.013317379169166088, -0.04206492751836777, 0.028679393231868744, 0.0071494015865027905, -0.008355735801160336, -0.010025519877672195, 0.03685792535543442, -0.002855671336874366, 0.0132628558203578, 0.024971790611743927, -0.020337287336587906, -0.0003345957666169852, 0.007960439659655094, -0.024249352514743805, -0.04980727285146713, 0.019192293286323547, -0.016207128763198853, 0.026416664943099022, 0.0007654596702195704, 0.01143631711602211, 0.017556585371494293, -0.0024484486784785986, -0.012751697562634945, 0.018538011237978935, 0.027738861739635468, 0.010045966133475304, -0.010127751156687737, -0.038193754851818085, 0.00410971324890852, -0.003738271538168192, 0.03372282162308693, 0.009650669991970062, 0.02955176867544651, -0.023690486326813698, -0.01804729923605919, -0.002516603097319603, -0.031896281987428665, 0.023908581584692, -0.020650798454880714, -0.014530528336763382, 0.008607907220721245, 0.011633964255452156, 0.02518988400697708, 0.007135770749300718, 0.011190961115062237, 0.017011350020766258, -0.009773348458111286, 0.02120966464281082, -0.01187932025641203, 0.03045140765607357, 0.0187015812844038, 0.008676061406731606, -0.0187015812844038, 0.011967921629548073, 0.008260319009423256, 0.009964180178940296, -0.016915934160351753, -0.03064224123954773, 0.01484403945505619, 0.010966051369905472, -0.017297599464654922, -0.0293609369546175, -0.030669502913951874, -0.03451341390609741, 0.01378082949668169, -0.028106894344091415, 0.008519305847585201, -0.008785109035670757, -0.033886391669511795, -0.012881191447377205, -0.04015660285949707, -0.0050809141248464584, 0.013112916611135006, -0.014039816334843636, -0.0031998513732105494, 0.008921417407691479, 0.00010750299406936392, -0.03661257028579712, -0.016466114670038223, 0.001877655042335391, -0.03268687427043915, -0.015307489782571793, 0.003693971084430814, 0.008860078640282154, 0.004988905508071184, -0.02287263423204422, 0.01818360760807991, -0.034649722278118134, 0.0048560043796896935, -0.022368289530277252, 0.0197784211486578, 0.004804888740181923, -0.05981234461069107, 0.013767198659479618, 0.0007650337065570056, 0.03713054582476616, 0.00938486773520708, 0.005632965359836817, 0.05970329791307449, -0.012990238144993782, 0.0109524205327034, 0.004965051542967558, 0.019819313660264015, -0.0008076302474364638, -0.019546696916222572, 0.03140557184815407, -0.017134029418230057, 0.020991571247577667, -6.703629333060235e-05, 0.011729381047189236, -0.034458890557289124, -0.015171180479228497, -0.0011875913478434086, -0.035631146281957626, 0.001156069803982973, -0.001171404612250626, 0.010577570647001266, 0.0433189682662487, -0.02005103975534439, -0.025721488520503044, 0.0005213815602473915, -0.013072023168206215, 0.0020241872407495975, -0.026171308010816574, -0.027002792805433273, 0.02563970349729061, 0.021727638319134712, 0.019928360357880592, 0.0057011195458471775, 0.002976645715534687, -0.026552973315119743, 0.02255912311375141, 0.024562863633036613, 0.00412675179541111, -0.04370063170790672, 0.028434036299586296, 0.0023547362070530653, -0.04045648127794266, 0.004239206667989492, -0.016684209927916527, -0.03353198990225792, 0.01309928484261036, -0.0007607740699313581, 0.020664429292082787, -0.014639575965702534, 0.009977811016142368, 0.02067806012928486, 0.033641036599874496, -0.04492741450667381, 0.0020753031130880117, -0.005196776706725359, 0.006072561256587505, 0.000977164483629167, -0.007422019727528095, 0.018388070166110992, -0.0772053599357605, -0.018292654305696487, 0.015402905642986298, 0.012772143818438053, 0.01960122026503086, -0.020800737664103508, 0.03841184824705124, 0.04176504537463188, -0.005397832486778498, -0.04749001935124397, -0.03609459847211838, 0.010652540251612663, -0.005285377614200115, -0.0009303082479164004, 0.035249482840299606, 0.006045299582183361, -0.003915473353117704, -0.030996643006801605, 0.004910528194159269, -0.03625816851854324, -0.002693804679438472, -0.028434036299586296, -0.022981680929660797, 0.019355863332748413, 0.006723436526954174, 0.04645407199859619, -0.019873837009072304, -0.010618463158607483, -0.005046837031841278, 0.004750365391373634, 0.0686451643705368, -0.022981680929660797, -0.0161117110401392, 0.03050593100488186, 0.015048502944409847, -0.018347177654504776, -0.016098080202937126, -0.020705321803689003, 0.005063875578343868, 0.00024727286654524505, 0.027316303923726082, -0.02176853083074093, 0.02434477023780346, 0.03644900023937225, -0.006965384818613529, -0.053214993327856064, -6.511944957310334e-05, -0.039993032813072205, 0.014721360988914967, -0.02922462858259678, -0.0006811185157857835, -0.00032479854417033494, -0.0023871096782386303, -0.033041276037693024, 0.0030993237160146236, 0.009746086783707142, 0.004913935903459787, 0.05449629947543144, -0.027057316154241562, -0.01159307174384594, -0.01574367843568325, -0.04201040416955948, 0.0015292154857888818, -0.005663634743541479, 0.02427661418914795, -0.010332214646041393, 0.015089395456016064, 0.003506546374410391, -0.004562940448522568, 0.025094468146562576, 0.021550437435507774, 0.0001903000083984807, -0.02775249257683754, 0.03121473826467991, -0.0015607369132339954, 0.009112250059843063, -0.01811545342206955, -0.01733849197626114, -0.01593451015651226, -0.00010814194683916867, 0.08963673561811447, 0.011388608254492283, 0.012410925701260567, 0.009698377922177315, 0.030914857983589172, 0.013555919751524925, -0.012165569700300694, -0.006045299582183361, -0.028406774625182152, -0.02364959381520748, 0.00703353900462389, -0.013031130656599998, 0.0019662559498101473, 0.015280228108167648, -0.023813165724277496, -0.007108509074896574, -0.008907786570489407, -0.026443926617503166, 0.0010896192397922277, 0.004498193506151438, 0.014816777780652046, -0.00022448372328653932, -0.03110569156706333, -0.014257910661399364, 0.011429501697421074, -0.023417869582772255, 0.006471265107393265, 0.0019492172868922353, 0.01631617546081543, 0.003329344792291522, 0.00379961053840816, -0.0028744139708578587, 0.0085806455463171, -0.028624869883060455, 0.014503266662359238, -0.03050593100488186, -0.01792461983859539, 0.03631269186735153, -0.013971662148833275, -0.03775756433606148, 0.015116657130420208, 0.013399165123701096, -0.03287770599126816, 0.053869277238845825, -0.014939455315470695, 0.005353532265871763, 0.014503266662359238, 0.010257245041429996, -0.03756673261523247, -0.03334115818142891, 0.00020606072212103754, 0.009684747084975243, -0.0440550372004509, -0.0291155818849802, 0.04735371097922325, 0.020091932266950607, 0.034976862370967865, 0.013576366007328033, -0.028052370995283127, 0.05215178430080414, -0.005183145869523287, 0.01664331741631031, 0.023049835115671158, -0.006651874165982008, -0.03230521082878113, 0.0003818779077846557, -0.0035235851537436247, -0.024590125307440758, 0.0028267058078199625, 0.052315354347229004, 0.031950805336236954, 0.04350979998707771, 0.028679393231868744, -0.025353455916047096, 0.009500730782747269, 0.033504728227853775, 0.008601091802120209, 0.005339900963008404, -0.05757687985897064, 0.011940659955143929, 0.024576494470238686, -0.010005073621869087, -0.027534397318959236, 0.02363596297800541, 0.04206492751836777, 0.020773475989699364, -0.006859745364636183, 0.04983453452587128, -0.01856527291238308, 0.02100520208477974, -0.018742473796010017, -0.017188552767038345, -0.0006691915332339704, -0.04601788520812988, -0.0050877295434474945, 0.05035250633955002, 0.005551179870963097, -0.0016340028960257769, -0.020896153524518013, -0.008260319009423256, 0.02493089810013771, 0.026689281687140465, 0.011783904395997524, -0.021345973014831543, 0.011088728904724121, 0.013692229054868221, 0.005980553105473518, -0.013733121566474438, 0.0076128519140183926, 0.007135770749300718, 0.01811545342206955, -0.0026903969701379538, -0.001284711412154138, 0.011988367885351181, 0.020528120920062065, -0.016670579090714455, 0.013739936985075474, -0.011068282648921013, 0.014912193641066551, -0.007837762124836445, -0.004331215284764767, 0.025925952941179276, 0.022436445578932762, 0.017229445278644562, 0.003820057027041912, 0.03121473826467991, 0.05948520451784134, -0.020255502313375473, 0.015266596339643002, 0.055995695292949677, 0.0018180198967456818, 0.000290295371087268, -0.020282763987779617, -0.022763585671782494, 0.023240666836500168, 0.04266468435525894, 0.043264444917440414, -0.022259242832660675, 0.0009737567161209881, 0.020255502313375473, -0.029960695654153824, -0.042119450867176056, 0.021482283249497414, 0.05286059156060219, 0.021100617945194244, 0.015143918804824352, 0.011654410511255264, -0.00028965642559342086, -0.034022700041532516, -0.013521842658519745, 0.010523047298192978, 0.05692259594798088, 0.0008506527519784868, 0.0182381309568882, 0.007428835146129131, 0.010972866788506508, 0.028761178255081177, 0.00793317798525095, -0.0016178162768483162, 0.014448743313550949, 0.014135233126580715, -0.03576745465397835, 0.026961900293827057, -0.037103284150362015, -0.02941546030342579, -0.0019015091238543391, 0.02435840107500553, -0.007333418820053339, 0.02955176867544651, -0.014189756475389004, -0.009691562503576279, -0.014176125638186932, -0.003946142736822367, -0.0029715339187532663, 0.0343225821852684, -0.03527674451470375, 0.045908838510513306, 0.011259115301072598, -0.0016518934862688184, -0.013596813194453716, -0.0040926747024059296, 0.01600266434252262, -0.026880115270614624, 0.02036454901099205, -0.03674887865781784, 0.003993850667029619, -0.0003446059417910874, 0.017747418954968452, 0.0012284839758649468, 0.008935048244893551, 0.030015219002962112, 0.005547772161662579, -0.027725230902433395, 0.023349715396761894, 0.029715340584516525, 0.0048662275075912476, 0.03083307296037674, 0.009044095873832703, 0.031323786824941635, 0.018224500119686127, 0.015716416761279106, -0.07562417536973953, -0.012697174213826656, 0.01932860165834427, -0.008935048244893551, 0.03353198990225792, 0.016166236251592636, 0.001334975240752101, -0.027030054479837418, 0.013221963308751583, -0.0022116119507700205, -0.022150196135044098, -0.00877147726714611, -0.01187932025641203, -0.005483025684952736, -0.03230521082878113, -0.0002587739145383239, 0.0038507264107465744, 0.007183479145169258, -0.005241077393293381, -0.0034332803916186094, 1.4975343276546482e-07, -0.007578774821013212, -0.00044257796253077686, 0.026743806898593903, -0.0026324656791985035, 0.0004570607852656394, 0.041655998677015305, 0.017297599464654922, 0.0027670706622302532, 0.004835558123886585, -0.0056943041272461414, 0.03391365334391594, 0.0032151860650628805, -0.006096415687352419, 0.009214481338858604, 0.0002084035222651437, 0.013303748331964016, 0.007088062819093466, 0.010550308972597122, -0.030696764588356018, -0.03617638349533081, 0.0364762619137764, -0.009200850501656532, 0.002664838917553425, -0.01778831146657467, 0.026689281687140465, 0.0404837429523468, -0.002976645715534687, -0.010972866788506508, -0.04484562948346138, 0.028924748301506042, -0.023813165724277496, -0.011927029117941856, 0.0286521315574646, -0.05626831203699112, -0.03683066368103027, 0.012567680329084396, -0.008744215592741966, -0.0007905916427262127, -0.034458890557289124, -0.006069153547286987, -0.015770940110087395, 0.008573830127716064, 0.0026409849524497986, 0.010645724833011627, 0.0005324566154740751, 0.008519305847585201, 0.014503266662359238, -0.0161117110401392, 0.10021430253982544, -0.0359855480492115, -0.02679833024740219, 0.03827553987503052, -0.009446206502616405, -0.0043141767382621765, 0.0017123805591836572, 0.036203645169734955, -0.011647595092654228, -0.0018248354317620397, -0.020637167617678642, -0.001578627503477037, 0.003312306245788932, 0.04059278964996338, -0.010795664973556995, -0.003591739572584629, 0.025148991495370865, -0.001058097812347114, 0.025094468146562576, -0.013637705706059933, 0.009166773408651352, -0.005615926813334227, 0.021114248782396317, 0.0041540139354765415, 0.0233224518597126, -0.014653206802904606, -0.008689692243933678, 0.022136565297842026, 0.009139511734247208, -0.02337697707116604, -0.006416741292923689, -0.004481154959648848, -0.001867431914433837, 0.001898101414553821, 0.00014887488214299083, 0.001399722066707909, -0.0063792564906179905, 0.016397960484027863, -0.002295101061463356, 0.018851520493626595, -0.019614851102232933, -0.03770304098725319, -0.007878654636442661, 0.016234390437602997, 0.04920751228928566, 0.03522222116589546, -0.029960695654153824, -0.039066132158041, 0.014585052616894245, 0.0015300674131140113, 0.0036769325379282236, 0.026171308010816574, -0.01915140077471733, -0.010434445925056934, 0.003092508064582944, -0.007251633331179619, -0.007905916310846806, -0.04773537814617157, 0.01451689749956131, 0.027997847646474838, 0.009289451874792576, 0.020923415198922157, -0.004668579902499914, 0.01754295453429222, -0.007142586167901754, 0.01020953617990017, -0.01394440047442913, -0.012138307094573975, -0.025939583778381348, 0.012738066725432873, 0.014721360988914967, -0.012629020027816296, 0.0001742198073770851, -0.04029291123151779, 0.012049706652760506, 0.018333546817302704, -0.004436854738742113, 0.03077854961156845, -0.0419013574719429, 0.028434036299586296, -0.014544159173965454, 0.006426964420825243, 0.03753947094082832, -0.008676061406731606, 0.004106305539608002, -0.007306157145649195, -0.06270209699869156, -0.009125880897045135, 0.019928360357880592, 0.021863946691155434, 0.03058771789073944, -0.0008425593841820955, -0.0028011479880660772, -0.012158754281699657, 0.028161419555544853, -0.009275821037590504, -0.007571959402412176, -0.046999309211969376, -0.03527674451470375, -0.008362551219761372, 0.011763458140194416, -0.029061056673526764, -0.014298803173005581, 0.004879858810454607, -0.005731789395213127, 0.009425760246813297, 0.025980476289987564, -0.016220759600400925, -0.009868764318525791, -0.056322839111089706, -0.04271920770406723, 0.0017720157047733665, 0.03805744647979736, -0.010386737994849682, -0.015539214946329594, -0.0013119732029736042, 0.006576904561370611, 0.018524380400776863, 0.018796997144818306, 0.03418627381324768, -0.016629686579108238, -0.015362013131380081, 0.032359734177589417, 0.01979205198585987, 0.001333271386101842, 0.03533126786351204, -0.028924748301506042, 0.041928619146347046, 0.02794332429766655, 0.021700376644730568, -0.025080837309360504, -0.005588664673268795, 0.015389274805784225, -0.020010147243738174, -0.01558010745793581, 0.015184811316430569, -0.032986752688884735, 0.0233224518597126, 0.023935843259096146, -0.031705450266599655, 0.004740141797810793, -0.013889877125620842, -0.003135104663670063, -0.019165031611919403, 0.004228983540087938, -0.02878843992948532, 0.0016399665037170053, -0.0165751613676548, 0.004937789868563414, 0.020200978964567184, -0.013446873053908348, 0.009575700387358665, -0.04517276957631111, 0.011197776533663273, -0.02356780879199505, -0.0018282431410625577, -0.00467539532110095, 0.006355402525514364, -0.013896692544221878, -0.027002792805433273, -0.003516769502311945, -0.0031044352799654007, 0.008526121266186237, 0.009534807875752449, 0.0004378923331387341, 0.014203387312591076, 0.00023491987667512149, 6.815444794483483e-05, 0.029960695654153824, -0.008894155733287334, -0.026825591921806335, -0.016138974577188492, -0.0003897582646459341, -0.024644648656249046, -0.017379384487867355, -0.043646108359098434, -0.015430167317390442, -0.02292715758085251, -0.014925824478268623, 0.0027755899354815483, 0.007510620169341564, 0.001956032821908593, 0.0021945731714367867, 0.0063622179441154, 0.012703989632427692, 0.017870096489787102, -0.010434445925056934, -0.01114325225353241, 0.0034486150834709406, -0.014448743313550949, 0.03083307296037674, -0.020446335896849632, 0.00866924598813057, 0.024372031912207603, -0.011259115301072598, -0.010080043226480484, -0.007626482751220465, 0.04299182817339897, 0.006389479618519545, -0.02479458972811699, -0.02268180064857006, -0.014953086152672768, 0.014080709777772427, 8.742938371142372e-05, -0.027807015925645828, -0.014653206802904606, 0.0210733562707901, -0.04394599050283432, -0.0030260575003921986, -0.022409183904528618, -0.030178790912032127, -0.008321658708155155, 0.017433907836675644, -0.009814240969717503, 0.01573004759848118, -0.011409054510295391, 0.00024045741884037852, -0.011041020974516869, -0.008164903149008751, -0.05076143518090248, -0.03077854961156845, -0.014217018149793148, 0.01690230332314968, 0.029851648956537247, -0.015975402668118477, 0.011061467230319977, 0.02095067873597145, 0.0032782291527837515, 0.04266468435525894, 0.003639447735622525, 0.016738733276724815, 0.014939455315470695, 0.015525584109127522, 0.0076128519140183926, -0.017624741420149803, -0.027152732014656067, -0.006495119072496891, -0.012833482585847378, -0.02145502157509327, -0.008308027870953083, -0.01863342709839344, -1.6439598766737618e-05, -0.0314873568713665, -0.019260447472333908, -0.032605089247226715, -0.0072175562381744385, -0.019260447472333908, 0.008144456893205643, -0.028679393231868744, 0.011967921629548073, -0.013753567822277546, -0.021086987107992172, -0.029769863933324814, -0.0019287709146738052, -0.028052370995283127, -0.013535473495721817, -0.029497245326638222, -0.005033206194639206, -0.012410925701260567, -0.00041936285560950637, -0.01423064898699522, -0.02846129797399044, 0.025857798755168915, 0.015375643968582153, -0.012547234073281288, -0.0031112506985664368, -0.0093507906422019, 0.011184144765138626, -0.017433907836675644, 0.0233224518597126, 0.008178533986210823, 0.026811961084604263, -0.01598903350532055, -0.02897927165031433, -0.021373234689235687, 0.0019219554960727692, 0.0034503189381211996, 0.030914857983589172, 0.005227446090430021, -0.011245484463870525, -0.015648262575268745, 0.010911527089774609, 0.012370032258331776, 0.01574367843568325, -0.0032969715539366007, -0.008505675010383129, 0.0273571964353323, 0.011422685347497463, -0.015321120619773865, -0.020132824778556824, -0.028679393231868744, -0.016479745507240295, 0.03211437538266182, -0.0037178252823650837, 0.012540418654680252, 0.01799277402460575, 0.01579820178449154, 0.017638372257351875, 0.003112954553216696, -0.0030703579541295767, -0.018715212121605873, -0.0044709318317472935, 0.02832498960196972, 0.03846637159585953, -0.031378310173749924, 0.027220888063311577, 0.014789515174925327, -0.007469727657735348, -0.007469727657735348, -0.029579030349850655, 0.006726844236254692, 0.019969254732131958, 0.01754295453429222, 0.01887878216803074, -0.02769796922802925, 0.02621220052242279, 0.005108175799250603, -0.01857890374958515, 0.035358529537916183, -0.010134566575288773, -0.02562607266008854, -0.001475543831475079, -0.025721488520503044, -0.022150196135044098, 0.12496799975633621, 0.014257910661399364, 0.014489635825157166, 0.02031002566218376, 0.0028386327903717756, 0.011967921629548073, 0.029388198629021645, 0.001702157431282103, 0.023417869582772255, -0.0033889799378812313, 0.020582644268870354, 0.01747480034828186, -0.006781367585062981, 0.0053842016495764256, 0.01053667813539505, -0.006457634270191193, -0.011743011884391308, 0.02036454901099205, -0.003591739572584629, 0.015143918804824352, 0.01342642679810524, 0.021823054179549217, -0.019819313660264015, 0.03162366524338722, -0.023077096790075302, -0.02827046625316143, -0.0014712841948494315, 0.0004481155192479491, 0.019492173567414284, -0.045718006789684296, -0.011892951093614101, -0.014148863963782787, 0.027316303923726082, -0.01069343276321888, -0.0017617925768718123, -0.006300878711044788, 0.011763458140194416, -0.005667042452841997, -0.027970585972070694, 0.007203925400972366, 0.003157255006954074, -0.013644521124660969, -0.02120966464281082, -0.013753567822277546, 0.0028590792790055275, 0.06782730668783188, -0.020078301429748535, 0.008485228754580021, 0.009446206502616405, -0.02659386582672596, 0.029960695654153824, -0.00983468722552061, -0.014448743313550949, 0.005905583035200834, 0.007422019727528095, -0.0008246688521467149, -0.0005388461286202073, 0.0024654872249811888, 0.001350310049019754, -0.04233754426240921, 0.013446873053908348, -0.025857798755168915, 0.01965574361383915, -0.01915140077471733, -0.00494460528716445]], "input": ["FLIGHT TICKET:A flight ticket is a document that confirms a passenger's reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.", "DOG:A dog is an animal that may be transported by passengers under certain conditions and regulations.", "HEATHROW AIRPORT:Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.", "UNITED STATES:The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.", "ANIMAL AIR TRANSPORT COMPANIES:Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.", "LEASH:A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.", "HARNESSES:Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.", "FLIGHT DATE:The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.", "ADDITIONAL CHARGES:Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.", "CHECK-IN COUNTERS:Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.", "SANITARY CONDITIONS:Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.", "PASSENGER:The term \"PASSENGER\" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline's baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline's policies regarding baggage and services, ensuring a standardized travel experience.", "SAFETY AND SECURITY REGULATIONS:Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.", "FORMS:Necessary documentation that passengers must provide to transport a dog on EL AL flights.", "DISTURBANCE:A situation where the dog's behavior causes disruption on the aircraft, leading to potential refusal of transport.", "DIRECT THREAT:A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-561f25320dd7426db3494534b53334a6 b/cache/text_embedding/embedding-561f25320dd7426db3494534b53334a6 deleted file mode 100644 index 1e988ad2ca3c241c7c752733f16e2c7eb1c484ea..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-561f25320dd7426db3494534b53334a6 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.01365756057202816, -0.03927851840853691, 0.009141964837908745, 0.00466872239485383, -0.019495906308293343, 0.028696516528725624, -0.019717451184988022, 0.020225699990987778, 0.012491194531321526, 0.015482043847441673, 0.035394974052906036, 0.026767775416374207, 0.007161096669733524, 0.00042598426807671785, 0.02188076823949814, 0.0007016930030658841, -0.028514066711068153, 0.008073338307440281, 0.009311380796134472, 0.024057114496827126, 0.02754969708621502, -0.015377787873148918, -0.021711351349949837, 0.015104115009307861, -0.05293608084321022, -0.017541103065013885, 0.00519977742806077, -0.027210865169763565, 0.011201024055480957, -0.021150974556803703, 0.023157905787229538, -0.019495906308293343, 0.03966948017477989, -0.03586412966251373, -0.027445441111922264, -0.009949949570000172, -0.05150255560874939, 0.030729511752724648, 0.0057568964548408985, -0.028097042813897133, -0.003961734939366579, -0.016146676614880562, 0.04621155560016632, -0.013116731308400631, -0.020486341789364815, 0.010366974398493767, 0.02667655237019062, 0.0032156517263501883, -0.009956466034054756, 0.058122824877500534, -0.019834740087389946, -0.004717592615634203, 0.01333827618509531, -0.019013721495866776, 0.002666677813977003, 0.04582059383392334, -0.014478578232228756, 0.014413418248295784, 0.057080261409282684, 0.007174129132181406, 0.024317756295204163, -0.029269924387335777, 0.03258005902171135, 0.005176971200853586, -0.04204130917787552, -0.01679827831685543, -0.017371688038110733, 0.0672452375292778, -0.021137941628694534, 0.02607707865536213, -0.009630665183067322, 0.006789684295654297, -0.009115900844335556, -0.04709773138165474, 0.027575761079788208, 0.016107581555843353, 0.05530790612101555, -0.02814917080104351, 0.014100649394094944, -0.007969082333147526, 0.005848120432347059, -0.045716337859630585, -0.002210556995123625, -0.03278857097029686, 0.038183826953172684, -0.03487369418144226, -0.08142407983541489, 0.0012771382462233305, -0.019000690430402756, -0.001940142479725182, 0.005864410661160946, -0.0054115476086735725, -0.011422568932175636, 0.012803963385522366, -0.014335225336253643, 0.008281851187348366, 0.012556354515254498, -0.00530077563598752, 0.002293636091053486, 0.0512419156730175, 0.060833483934402466, 0.0004935878678224981, -0.013370855711400509, 0.012530290521681309, 0.043188124895095825, -0.03023429401218891, -0.0651601180434227, 0.04959988221526146, -0.018857337534427643, -0.027888530865311623, -0.0030853315256536007, 0.025347284972667694, -0.033075276762247086, 0.02018660493195057, 0.02984333410859108, 0.010151945985853672, -0.03615083172917366, 0.006486689671874046, -0.05152862146496773, 0.010425618849694729, 0.011767917312681675, -0.01146166492253542, 0.011598500423133373, -0.019091913476586342, 0.01470012217760086, -0.035838063806295395, -0.050981275737285614, 0.04397004842758179, -0.016915567219257355, -0.035421039909124374, 0.07214528322219849, -0.0054115476086735725, -0.015234434977173805, -0.0584355928003788, 0.0026031467132270336, 0.004701302386820316, -0.0041930535808205605, -0.02924386039376259, -0.05483875423669815, -0.08126769959926605, 0.02814917080104351, -0.007421737536787987, 0.03797531500458717, 0.020238732919096947, -0.0059165386483073235, 0.028878964483737946, -0.04555995389819145, 0.03190239518880844, -0.02078607678413391, -0.03547316789627075, -0.05817495286464691, 0.02039511688053608, 0.013103699311614037, -0.008881323970854282, -0.008327462710440159, -0.011103283613920212, -0.029999718070030212, -0.006066407077014446, 0.011631080880761147, 0.045090802013874054, -0.025725213810801506, 0.020069316029548645, -0.009637181647121906, -0.0478796549141407, 0.009076803922653198, -0.044647712260484695, -0.03682849928736687, -0.03213696926832199, -0.06312712281942368, -0.03380506858229637, -0.03862691670656204, -0.01574268378317356, -0.008959515951573849, -0.044621650129556656, 0.020512405782938004, -0.0651601180434227, -0.015469011850655079, 0.01386607252061367, -0.02164619043469429, 0.013038539327681065, 0.06156327947974205, 0.04639400169253349, -0.0006120978505350649, 0.0007570791058242321, -0.003375294152647257, 0.025933725759387016, 0.005131359212100506, 0.022428112104535103, 0.01000207755714655, 0.031615689396858215, 0.03445667028427124, -0.030312485992908478, 0.02246720902621746, -0.001734888064675033, -0.012836542911827564, 0.00956550519913435, 0.04535144194960594, 0.015677524730563164, 0.0011150524951517582, 0.01386607252061367, -0.005049908999353647, -0.0004086761036887765, 0.03398751839995384, 0.009057256393134594, 0.009161512367427349, -0.028227362781763077, -0.01593816466629505, -0.05650685355067253, 0.06922610849142075, -0.01503895502537489, 0.024839036166667938, -0.034769438207149506, -0.03130292147397995, 0.0216201264411211, -0.05343129485845566, 0.010243170894682407, 0.0051443912088871, -0.023183969780802727, 0.02396589145064354, 0.007095936685800552, 0.03800138086080551, -0.04642006754875183, 0.014960763044655323, -0.0018929013749584556, -0.0049423947930336, 0.029504500329494476, -0.014752250164747238, 0.001734888064675033, 0.001524746767245233, -0.028253426775336266, -0.0016892760759219527, 0.012530290521681309, -0.036489665508270264, -0.03171994537115097, -0.0749080702662468, 0.012745318934321404, 0.007441285531967878, 0.01374878454953432, -0.0032237968407571316, -0.033961452543735504, -0.004026895388960838, 0.022532368078827858, 0.023861635476350784, 0.008783583529293537, -0.002443504286929965, -0.018948562443256378, -0.013787880539894104, -9.733292245073244e-05, 0.01123360451310873, -0.012647578492760658, 0.05713238939642906, 0.05277969315648079, -0.012725770473480225, -0.03742797300219536, -0.01556023582816124, 0.002567308722063899, 0.053691934794187546, -0.02079910971224308, 0.06521224230527878, -0.05134617164731026, 0.0007566718850284815, 0.044230688363313675, -0.06078135594725609, -0.0292177964001894, -0.020668789744377136, -0.0008022839319892228, 0.05504726618528366, 0.03112047165632248, 0.0037434487603604794, 0.06604629755020142, -0.01124012004584074, -0.0013887250097468495, 0.04910466447472572, 0.009578537195920944, -0.03284069895744324, 0.020030220970511436, 0.007310965098440647, -0.0036652565468102694, 0.006600719876587391, -0.004150699358433485, -0.02352280169725418, -0.03158962354063988, 0.015312627889215946, -0.03302314877510071, -0.018740050494670868, -0.03125079348683357, 0.01935255527496338, 0.021581031382083893, 0.02060362882912159, 0.003093476640060544, 0.04894828051328659, 0.017371688038110733, 0.0052747116424143314, -0.0609898678958416, 0.03672424331307411, 0.0082036592066288, 0.0146088982000947, 0.0011240120511502028, 0.06078135594725609, 0.028097042813897133, 0.0038770269602537155, 0.05004296824336052, -0.04308386892080307, 0.01071883924305439, -0.007832245901226997, 0.053900450468063354, -0.028409810736775398, -0.004994522780179977, 0.016237901523709297, -0.059582412242889404, 0.0011060929391533136, 0.028852900490164757, -0.05236266925930977, -0.02502148412168026, 0.03742797300219536, 0.006946068722754717, -0.012217521667480469, 0.03612476959824562, -0.015638427808880806, -0.0007212410564534366, 0.058122824877500534, 0.03891362249851227, 0.008607651107013226, -0.015899067744612694, 0.026129206642508507, 0.0012233811430633068, -0.0031570077408105135, 0.0457945317029953, 0.025972822681069374, 0.003502356354147196, -0.008373075164854527, -0.006978648714721203, 0.02668958343565464, -0.08251877129077911, -0.0445173904299736, 0.010946899652481079, -0.04165034741163254, 0.006737556308507919, -0.029374180361628532, -0.05358767881989479, 0.07224953919649124, -0.017488975077867508, -0.026402879506349564, 0.018023287877440453, -0.009910853579640388, 0.009304864332079887, 0.03870511054992676, 0.028279490768909454, 0.05134617164731026, 0.01230223011225462, -0.025086645036935806, -0.013155827298760414, -0.0035121303517371416, -0.004456952214241028, 0.00275953090749681, -0.014374322257936, 0.07668042927980423, -0.022558432072401047, -0.04691528528928757, 0.01746291108429432, -0.022949393838644028, 0.03549923002719879, 0.007877858355641365, 0.010138913989067078, -0.03427422046661377, 0.03909606859087944, -0.05572493374347687, 0.01513017900288105, -0.0336226187646389, -0.01262151449918747, 0.020642725750803947, -9.646752005210146e-06, 0.022766945883631706, -0.017515039071440697, 0.008223206736147404, -0.011376956477761269, 0.035812001675367355, 0.02205018326640129, 0.009728405624628067, -0.0437094084918499, 0.003896574955433607, -0.029374180361628532, 0.02078607678413391, 0.011904753744602203, 0.038131698966026306, 0.0268980972468853, -0.03948703035712242, -0.022219600155949593, 0.02880077250301838, -0.038157764822244644, 0.009910853579640388, -0.029556628316640854, 0.04097268357872963, -0.010705807246267796, 0.04748869314789772, 0.0007872156566008925, 0.06093773990869522, 0.07840065658092499, 0.01996506005525589, -0.0292177964001894, 0.005141133442521095, 0.004658948164433241, 0.005580964032560587, -0.017541103065013885, 0.0051183272153139114, 0.005330097395926714, 0.008255787193775177, -0.013175375759601593, -0.026845967397093773, -0.020329955965280533, 0.034586988389492035, 0.01636822149157524, 0.034169964492321014, -0.002327845199033618, 0.02287120185792446, -0.027706081047654152, 0.010386522859334946, 0.016290029510855675, 0.03784499689936638, 0.033700812608003616, 0.04490835219621658, -0.010679743252694607, -0.026585327461361885, 0.029530564323067665, -0.01996506005525589, 0.011389988474547863, 0.021124910563230515, -0.013409951701760292, -0.02420046739280224, -0.0683920606970787, -0.0028230620082467794, 0.028878964483737946, 0.02125523053109646, 0.014348258264362812, 0.003186329733580351, -0.018205735832452774, -0.005049908999353647, -0.07522083818912506, -0.001546738320030272, -0.021046718582510948, 0.005163939204066992, -0.016459446400403976, -0.006900456268340349, -0.002955011324957013, -0.05603770166635513, -0.03323166072368622, -0.01553417183458805, 0.03237154707312584, 0.02796672284603119, 0.008438235148787498, -0.055151522159576416, 0.03695881739258766, -0.032501865178346634, 0.041910987347364426, -0.0449865460395813, -0.021971991285681725, 0.010138913989067078, 0.020903365686535835, -0.020955493673682213, 0.009011643938720226, 0.05567280575633049, 0.04006044194102287, -0.005398515611886978, -0.013396919704973698, 0.0033166499342769384, 0.0013879104517400265, -0.020108412951231003, 0.02413530834019184, -0.00987827405333519, -0.02521696500480175, -0.0318763293325901, 0.014374322257936, 0.03672424331307411, -0.03085983172059059, 0.02708054520189762, -0.004277761559933424, -0.018375152722001076, -0.044022176414728165, 0.0055679320357739925, 0.010477746836841106, -0.01522140298038721, -0.021698318421840668, -0.011507276445627213, 0.00027733773458749056, 0.0015214887680485845, 0.0454556979238987, 0.047827526926994324, -0.014230969361960888, -0.059321772307157516, -0.03935671225190163, 0.0281752347946167, -0.0003659147769212723, 0.01293428335338831, -0.01408761739730835, -0.0328146368265152, 0.02100762166082859, -0.009044224396348, 0.03659392148256302, -0.002277346095070243, -0.022415081039071083, 0.014843475073575974, -0.04576846584677696, 0.007552057504653931, -0.04983445629477501, 0.03211090713739395, -0.01701982319355011, -0.0034893243573606014, -0.003587064566090703, -0.012452098540961742, -0.014322193339467049, -0.03946096822619438, 0.017736583948135376, -0.02102065458893776, -0.021177038550376892, -0.028488002717494965, -0.025086645036935806, 0.006284693256020546, 0.007727989926934242, -0.005499513819813728, 0.021958960220217705, 0.006757104303687811, 0.0315374955534935, 0.007193677127361298, -0.013240535743534565, 0.0059165386483073235, 0.029322052374482155, 0.0071024526841938496, -0.09883486479520798, -0.013944265432655811, -0.056194085627794266, -0.003082073526456952, -0.0033019890543073416, -0.03258005902171135, -0.02293636091053486, 0.01721530221402645, 0.0034339381381869316, 0.0025135516189038754, 0.012562870979309082, -0.004206085577607155, -0.013325244188308716, 0.005890474654734135, 0.02163315936923027, 0.01178094930946827, -0.0038770269602537155, 0.024304723367094994, -0.00870539154857397, 0.023848602548241615, -0.010868707671761513, -0.009839178062975407, -0.011859141290187836, -0.005492997821420431, -0.01344904862344265, 0.007656313944607973, -0.016094548627734184, -0.013103699311614037, 0.02606404758989811, 0.04582059383392334, -0.05121585354208946, 0.01290821935981512, 0.0006959915044717491, 0.0006943625048734248, -0.027132673189044, -0.044439200311899185, -0.01681130938231945, -0.029374180361628532, -0.026220431551337242, -0.023014552891254425, -0.005307291634380817, 0.02667655237019062, 0.004124635364860296, -0.016342157498002052, 0.02648107148706913, -0.006128308828920126, 0.024031050503253937, 0.019222235307097435, 0.0016827600775286555, 0.04469984024763107, 0.01218494214117527, -0.005558157805353403, -0.00041865374078042805, 0.008653263561427593, 0.013722720555961132, 0.017071951180696487, 0.011025091633200645, 0.005587480030953884, 0.042171627283096313, 0.016485510393977165, -0.020082348957657814, -0.05546429008245468, 0.0289832204580307, -0.0037076107691973448, 0.018805209547281265, 0.016889503225684166, 0.0076237334869802, -0.05400470644235611, 0.048244550824165344, -0.016055453568696976, 0.0019857545848935843, 0.010582002811133862, 0.03278857097029686, -0.007760569918900728, -0.016889503225684166, -0.03325772285461426, 0.06896546483039856, -0.03508220613002777, 0.027262993156909943, -0.02143767848610878, -0.00023925981076899916, -0.013696656562387943, 0.0029908493161201477, 0.03450879827141762, 0.011839593760669231, -0.007962565869092941, 0.00034962475183419883, 0.002099784789606929, 0.031433239579200745, -0.029061412438750267, -0.021750446408987045, -0.01850547268986702, 0.022115344181656837, -0.0034437121357768774, -0.023653121665120125, -0.0037564807571470737, -0.018231801688671112, -0.0035512263420969248, 0.01703285425901413, -0.02478690817952156, -0.02586856670677662, 0.07496020197868347, -0.028201298788189888, -0.006027310620993376, 0.03007791005074978, 0.02963482216000557, -0.007838762365281582, 0.016654925420880318, -0.014204905368387699, 0.01579481177031994, -0.04284929484128952, 0.04436100646853447, -0.03661998733878136, 0.029999718070030212, -0.031641751527786255, -0.0020965267904102802, -0.011637597344815731, 0.020525436848402023, -0.015051987022161484, -0.0015524397604167461, -0.006245597265660763, -0.008464299142360687, -0.016485510393977165, 0.0504339300096035, 0.010582002811133862, 0.0012991297990083694, -0.04204130917787552, 0.004114861600100994, -0.015912100672721863, -0.014713154174387455, 0.06291861087083817, -0.031172599643468857, -0.0021600578911602497, -0.02078607678413391, 0.007688893936574459, 0.0002789667632896453, -0.020916396751999855, -0.015273531898856163, -0.0014082730049267411, -0.00012431328650563955, 0.0026634198147803545, -0.00197272258810699, 0.006281435489654541, 0.0281752347946167, 0.044048238545656204, -0.00577644445002079, 0.012882155366241932, -0.010347426868975163, 0.004238665569573641, -0.013683624565601349, -0.00010710694186855108, -0.013670592568814754, -0.006496463902294636, -0.051971711218357086, -0.02459142915904522, 0.004437403753399849, -0.0005257606972008944, 0.013149311766028404, -0.010340910404920578, 0.013527240604162216, -0.02773214504122734, 0.006711491849273443, 0.003831414971500635, -0.028644386678934097, 0.040034376084804535, 0.00682878028601408, -0.038991812616586685, -0.016329124569892883, -0.007923469878733158, -0.007004712708294392, 0.009865242056548595, -0.030390677973628044, -0.016498541459441185, 0.010849159210920334, -0.03925245627760887, 0.013038539327681065, -0.061250511556863785, -0.053900450468063354, 0.02960875816643238, -0.018779145553708076, 0.012497710064053535, -0.013813944533467293, 0.017958128824830055, -0.012843059375882149, -0.020225699990987778, 0.0004516410699579865, -0.0006976205040700734, 0.008431719616055489, 0.05926964432001114, -0.049469560384750366, -0.014022457413375378, 0.022779976949095726, -0.02838374674320221, -0.007271869108080864, 0.03383113443851471, 0.013110215775668621, -0.0026308398228138685, -0.006027310620993376, 0.028878964483737946, -0.0028686742298305035, -0.0036000965628772974, -0.007200193125754595, 0.015403851866722107, 0.02438291534781456, -0.013038539327681065, -0.02460446022450924, 0.004994522780179977, -0.011917785741388798, 0.029739078134298325, 0.0028458682354539633, 0.004219117574393749, -0.027784274891018867, -0.016928598284721375, 0.013188407756388187, -0.02314487285912037, 0.03893968462944031, -0.0017397751798853278, 0.02812310680747032, 0.0015980518655851483, -0.03252793103456497, -0.014739218167960644, -0.07370912283658981, 0.03302314877510071, 0.008809647522866726, 0.010575487278401852, 0.007969082333147526, -0.004176763352006674, 0.02413530834019184, 0.0011850995942950249, 0.017371688038110733, -0.02812310680747032, 0.015925131738185883, 0.033283788710832596, 0.014778314158320427, 0.015338691882789135, -0.0032303128391504288, -0.015260499902069569, -0.0067766522988677025, 0.010340910404920578, 0.005108552984893322, -0.040633849799633026, -0.004694786388427019, 0.019860804080963135, -0.03174600750207901, 0.013957297429442406, 0.026324687525629997, 0.02013447694480419, 0.01743684709072113, 0.0020818656776100397, -0.02313184179365635, 0.004134409595280886, -0.03927851840853691, -0.03612476959824562, 0.0445173904299736, -0.008953000418841839, 0.004720850382000208, -0.020760012790560722, -0.027210865169763565, 0.008679327555000782, 0.02438291534781456, -0.0011622935999184847, 0.026793839409947395, 4.301585795474239e-05, 0.007539025507867336, -0.020760012790560722, -0.007115484680980444, -0.007486897520720959, -0.008633715100586414, 0.02481297217309475, -0.009181060828268528, -0.04983445629477501, 0.03549923002719879, 0.012269649654626846, -0.010992512106895447, -0.0005025474238209426, 0.004189795348793268, 0.010125881992280483, 0.011741853319108486, 0.029791206121444702, -0.03359655663371086, 0.022819073870778084, 0.06682821363210678, -0.013722720555961132, 0.03513433411717415, -0.011578952893614769, 0.015091083012521267, 0.013722720555961132, 0.005176971200853586, -0.005405031610280275, -0.07084207981824875, 0.031224727630615234, -0.03526465594768524, -0.056194085627794266, 0.03727158531546593, 0.006656106095761061, 0.013383887708187103, -0.014413418248295784, -0.040868423879146576, 0.027158737182617188, -0.06458670645952225, 0.0491567924618721, 0.03680243343114853, 0.020486341789364815, 0.01890946552157402, 0.026428943499922752, 0.023249130696058273, -0.02859225869178772, -0.04563814774155617, 0.013631496578454971, -0.006317273247987032, 0.00967627763748169, -0.028409810736775398, 0.03607264161109924, 0.07829639315605164, 0.012830027379095554, -0.006053375080227852, -0.0016257449751719832, 0.0026080335956066847, 0.0292177964001894, -0.006053375080227852, -0.019300427287817, -0.0011736965971067548, -0.0061674052849411964, 0.001108536496758461, -0.0281752347946167, 7.274516246980056e-05, -0.02519090101122856, 0.010125881992280483, -0.009663245640695095, 0.01847940869629383, 0.029139604419469833, 0.013175375759601593, 0.006972132716327906, -0.010686258785426617, 0.017541103065013885, -0.009187576361000538, -0.018948562443256378, 0.038131698966026306, -0.020668789744377136, 0.04582059383392334, 0.02397892251610756, 0.03312740474939346, -0.0006365329027175903, 0.03935671225190163, -0.023001521825790405, 0.003831414971500635, 0.008014694787561893, -0.014322193339467049, -0.011018576100468636, -0.025529734790325165, 0.02775820903480053, 0.012582418508827686, 0.022740880027413368, -0.03231941908597946, -0.014048521406948566, 0.0357077457010746, -0.038131698966026306, -0.01167017687112093, -0.004401565995067358, -0.044856224209070206, 0.05173713341355324, -0.01492166705429554, 0.029322052374482155, -0.024917228147387505, 0.02986939810216427, 0.02248024009168148, -0.01322750374674797, -0.01810147985816002, 0.01996506005525589, -0.01804935187101364, 0.03323166072368622, -0.004434145987033844, -0.0034209061414003372, -0.03589019179344177, 0.007525993511080742, -0.026324687525629997, -0.049521688371896744, -0.013409951701760292, 0.028696516528725624, -0.005688478238880634, -0.038783300668001175, -0.011207540519535542, 0.01725439913570881, 0.029322052374482155, 0.021124910563230515, 0.024669621139764786, -0.06620267778635025, 0.015912100672721863, -0.0002840573724824935, 0.0010604809504002333, -0.023614026606082916, -0.00640849769115448, 0.02353583462536335, 0.025112709030508995, -0.031198663637042046, -0.019065849483013153, -0.010373490862548351, 0.01764535903930664, -0.003815124975517392, -0.028540130704641342, 0.0013838380109518766, 0.00024781207321211696, 0.03151143342256546, 0.037115201354026794, 0.04368334263563156, 0.007773601915687323, 0.017814775928854942, -0.024500204250216484, 0.009207124821841717, 0.040034376084804535, -0.017071951180696487, -0.020434211939573288, -0.015625396743416786, 0.0072914171032607555, -0.004281019791960716, -0.016263965517282486, 0.0005831830203533173, -0.004509080201387405, -0.02146374247968197, 0.037297651171684265, -0.018635792657732964, 0.05363980680704117, 0.020238732919096947, 0.007180645130574703, -0.026819903403520584, 0.0038053507450968027, -0.008555523119866848, 0.006245597265660763, -0.003619644558057189, 0.010933867655694485, 0.00010420528269605711, 0.042354077100753784, 0.028018850833177567, -0.0037401907611638308, 0.006757104303687811, 0.01828392967581749, 3.6296220059739426e-05, 0.015364755876362324, -0.027940658852458, -0.016680989414453506, 0.01365756057202816, -0.010790515691041946, -0.005773186217993498, -0.002606404712423682, 0.001912449486553669, 0.04287535697221756, 0.03565561771392822, 0.010497295297682285, -0.0017039370723068714, -0.03388326242566109, 0.0007640023832209408, 0.016954662278294563, 0.00746083352714777, -0.009936917573213577, -0.01167017687112093, 0.014270065352320671, 0.005365935619920492, -0.024956325069069862, 0.036176897585392, 0.02248024009168148, -0.017098015174269676, 0.004890266805887222, -0.005225841421633959, -0.008105918765068054, 0.03612476959824562, -0.008353526704013348, 0.013077635318040848, -0.021776510402560234, -0.007043808698654175, 0.006147857289761305, -0.011846109293401241, 0.006698459852486849, 0.012992927804589272, 0.0021519127767533064, -0.013357823714613914, 0.01579481177031994, 0.0031570077408105135, -0.0010767709463834763, 0.015377787873148918, 0.005551641806960106, 0.0019499164773151278, -0.04748869314789772, -0.022571465000510216, 0.03755829110741615, -0.017293494194746017, -0.016915567219257355, 0.012569386512041092, -0.03255399316549301, 0.020030220970511436, 0.0012347842566668987, -0.019078882411122322, -0.02354886569082737, -0.024226531386375427, 0.03070344775915146, 0.03263218700885773, -0.017580199986696243, -0.02396589145064354, 0.008770551532506943, 0.018375152722001076, 0.02373131550848484, 0.005483224056661129, 0.016237901523709297, -0.037740740925073624, 0.02877470850944519, -0.035838063806295395, -0.00039544046740047634, -0.005336613394320011, 0.0066495900973677635, 0.010327878408133984, -0.007200193125754595, -0.01721530221402645, -0.032006651163101196, 0.018088448792696, 0.004059475380927324, 0.03914819657802582, -0.0014123455621302128, -0.015469011850655079, 0.020668789744377136, 0.029973654076457024, 0.034378476440906525, -0.0031895877327769995, 0.016146676614880562, 0.04201524332165718, -0.005046651232987642, 0.00019761841394938529, -0.006789684295654297, 0.015625396743416786, 0.02307971380650997, 0.021177038550376892, 0.016694022342562675, -0.03734977915883064, 0.005685220006853342, -0.0023734571877866983, -0.0063987234607338905, 0.0024011502973735332, -0.0025135516189038754, -0.0012877268018200994, -0.0034990983549505472, -0.023236097767949104, -0.010217105969786644, 0.022024119272828102, 0.011168444529175758, -0.007219741120934486, 0.0038281569723039865, 0.00797559879720211, 0.004447177983820438, 0.01767142303287983, -0.0191310103982687, 0.011631080880761147, 0.02856619469821453, -0.01599029265344143, -0.024839036166667938, -0.02292332984507084, -0.03218909725546837, 0.01532565988600254, 0.014986827038228512, -0.006300983484834433, -0.0005599697469733655, -0.024539299309253693, 0.04808816686272621, 0.030130038037896156, -0.031198663637042046, 0.03505614399909973, 0.019196171313524246, 0.027445441111922264, -0.010321362875401974, 0.012230553664267063, -0.025373348966240883, -0.010907803662121296, 0.04240620508790016, 0.021124910563230515, 0.03357049077749252, 0.017593231052160263, 0.023001521825790405, 0.00038179755210876465, 0.0003099178138654679, -0.004180021584033966, 0.00850339513272047, -0.019235266372561455, 0.028097042813897133, -4.306676419219002e-05, -0.0013789510121569037, -0.0204081479460001, -0.014556770212948322, 0.040685977786779404, -0.002427214290946722, -0.01810147985816002, -0.014465546235442162, 0.01660279743373394, -0.015286563895642757, 0.026363782584667206, 0.02062969282269478, 0.03213696926832199, -0.014856507070362568, -0.011624565348029137, -0.03599444776773453, 0.044048238545656204, 0.036698177456855774, 0.05309246480464935, -0.013553304597735405, 0.023470673710107803, 0.022793009877204895, -0.02210231125354767, -0.007343545090407133, -0.0011443746043369174, 0.001424563117325306, -0.045716337859630585, -0.003815124975517392, -0.010979480110108852, 0.02880077250301838, 0.014647994190454483, -0.010262718424201012, -0.008223206736147404, -0.01829696074128151, -0.01553417183458805, 0.015091083012521267, 0.004456952214241028, 0.003077186644077301, -0.016016356647014618, 0.017723551020026207, 0.08413474261760712, 0.029765142127871513, 0.03380506858229637, 0.025477604940533638, 0.02499542012810707, 0.01218494214117527, -0.002555905608460307, 0.02371828258037567, 0.020877301692962646, -0.023809507489204407, -0.05374406650662422, 0.006574655883014202, 0.011174960061907768, 0.008698876015841961, -0.01083612721413374, 0.031850263476371765, 0.014165809378027916, -0.0200041551142931, -0.0049619427882134914, 0.0018261122750118375, 0.004873976577073336, -0.031146535649895668, 0.024278659373521805, -0.0044439202174544334, 0.010132398456335068, -0.026741711422801018, 0.0022252181079238653, 0.02919173240661621, 0.005447385832667351, 0.013305695727467537, 0.0012836543610319495, -0.013514208607375622, 0.0008650005329400301, -0.001889643375761807, 0.014830443076789379, -0.008281851187348366, -0.02984333410859108, 0.0008454525377601385, 0.03628115355968475, 0.003220538841560483, -0.025764310732483864, 0.0057601542212069035, 0.0063042412512004375, 0.022571465000510216, -0.016680989414453506, -0.007402189541608095, -0.014257033355534077, -0.021150974556803703, 0.006261887494474649, 0.016641894355416298, 0.028201298788189888, -0.007793149910867214, 0.0011394876055419445, -0.011898237280547619, -0.005561416037380695, 0.028253426775336266, 0.0022187018766999245, -0.014048521406948566, -0.014817411080002785, 0.04954775422811508, -0.0024255854077637196, 0.00703077670186758, 0.026207398623228073, -0.0027693049050867558, 0.026845967397093773, -0.008451267145574093, -0.03294495493173599, -0.017723551020026207, 0.013396919704973698, 0.0034437121357768774, -0.0001673800579737872, -0.01535172387957573, 0.0014424821129068732, 0.010790515691041946, 0.005678704008460045, 0.011631080880761147, -0.02143767848610878, 0.01636822149157524, -0.04558601975440979, -0.015677524730563164, 0.05353555083274841, -0.0005102851428091526, 0.0069656167179346085, 0.022011088207364082, -0.018870370462536812, 0.0023897471837699413, -0.02019963599741459, 0.008542491123080254, -0.011676693335175514, 0.0027220638003200293, 0.0032400868367403746, -0.010999027639627457, -0.00037955769221298397, -0.01853153668344021, 0.033101338893175125, 0.007825730368494987, 0.00789089035242796, -0.014999859035015106, 0.013422983698546886, -0.01726743020117283, 0.021724382415413857, -0.011546372435986996, -0.03680243343114853, -0.0034990983549505472, -0.004528628196567297, -0.008920419961214066, 0.0012958717998117208, -0.008073338307440281, -0.02397892251610756, -0.032267291098833084, -0.05384832248091698, -0.018349088728427887, 0.021359486505389214, -0.011363924480974674, -0.010849159210920334, -0.006219533272087574, 0.0027236929163336754, 0.019795643165707588, 0.00022439516033045948, -0.01683737337589264, 0.0020818656776100397, -0.022167472168803215, 0.013090667314827442, -0.008464299142360687, 0.008268819190561771, 0.033518362790346146, -0.012901702895760536, 0.04344876483082771, 0.01679827831685543, 0.013077635318040848, 0.025099677965044975, 0.017319560050964355, 0.004815332591533661, 0.004245181567966938, -0.030416741967201233, 0.021098846569657326, -0.00999556202441454, 0.006489947903901339, 0.03695881739258766, -0.008581587113440037, -0.020942462608218193, 0.028826836496591568, -0.03607264161109924, -0.011207540519535542, -0.02125523053109646, 0.025516701862215996, -0.016107581555843353, -0.011520308442413807, -0.018088448792696, -0.001912449486553669, 0.005913280416280031, 0.02370525151491165, 0.005040135234594345, 0.04850519075989723, -0.017723551020026207, -0.022154439240694046, 0.010067238472402096, -0.00746083352714777, 0.0056624142453074455, -0.021698318421840668, 0.0023930054157972336, -0.0007823286578059196, -0.03148536756634712, -0.030833767727017403, -0.014973795041441917, 0.013618464581668377, -0.015208370983600616, -0.004173505585640669, -0.00987827405333519, -0.02271481603384018, 0.007037292700260878, -0.02207624725997448, -0.020460275933146477, -0.01480437908321619, -0.01803632080554962, -0.006893940269947052, -0.005981698632240295, -0.0005937715759500861, 0.008562039583921432, -0.012061137706041336, -0.00965672917664051, -0.030625255778431892, -0.007369609083980322, -0.001513343770056963, 0.009643697179853916, 0.005971924867480993, -0.0019710934720933437, -0.009428668767213821, 0.021685287356376648, 0.02560792677104473, 0.055203650146722794, -0.020329955965280533, 0.02330125868320465, -0.005717800464481115, 0.008575071580708027, -0.057497289031744, -0.015846939757466316, 0.04691528528928757, -0.04459558427333832, -0.016042420640587807, -0.00905073992908001, -0.0036457085516303778, 0.03487369418144226, 0.0029240602161735296, -0.06135476753115654, -0.008679327555000782, -0.004593788180500269, -0.03672424331307411, -0.0012852833606302738, -0.012790931388735771, 0.008216691203415394, -0.02224566414952278, 0.044647712260484695, -0.020095380023121834, 0.03273644298315048, -0.016928598284721375, -0.01784083992242813, 0.031146535649895668, 0.012751835398375988, -0.052675437182188034, 0.0474105030298233, 0.011513792909681797, 0.000534720194991678, 0.02541244588792324, -0.022819073870778084, 0.029061412438750267, 0.019847771152853966, -0.004476500209420919, 0.019613195210695267, -0.024878133088350296, 0.030625255778431892, -0.030103974044322968, 0.019912932068109512, 0.0195350032299757, 0.0043494380079209805, -0.032006651163101196, -0.02228475920855999, 0.008861775510013103, -0.02671564742922783, 0.009487313218414783, 0.021945927292108536, -0.038366276770830154, -0.029322052374482155, -0.021815607324242592, -0.011767917312681675, -0.019469842314720154, 0.033075276762247086, -0.03255399316549301, -0.04959988221526146, -0.0032580059487372637, 0.009435185231268406, 0.020499372854828835, 0.021281294524669647, -0.011422568932175636, 0.034977950155735016, -0.038991812616586685, 0.013214471749961376, -0.010301814414560795, 0.0016558815259486437, 0.00031439756276085973, -0.011507276445627213, -0.004013863392174244, 0.004469984211027622, -0.033101338893175125, 0.0009285316918976605, 0.03432634845376015, -0.03138111159205437, -0.004030153155326843, 0.0007908809348009527, 0.043579086661338806, -0.000590106297750026, 0.01767142303287983, -0.007988630793988705, -0.012732286937534809, -0.007838762365281582, 0.0195350032299757, 0.00540177384391427, -0.0021030427888035774, 0.001290984801016748, 0.01440038625150919, 0.02734118513762951, 0.05040786787867546, -0.004153957590460777, -0.025594893842935562, -0.006170663051307201, 0.004170247353613377, 0.04368334263563156, 0.02436988428235054, 0.0021258487831801176, -0.015625396743416786, -0.051189787685871124, 0.01251074206084013, -0.000476890621939674, -0.03179813548922539, -0.005541868042200804, -0.0006243153475224972, 0.008112434297800064, -0.029686950147151947, -0.0011403020471334457, -0.0015842053107917309, -0.001568729872815311, -0.041728537529706955, 0.0007049510022625327, 0.024448076263070107, 0.00913544837385416, 0.0025526476092636585, 0.012862606905400753, 0.023431578651070595, -0.0029582693241536617, -0.033518362790346146, -0.014283097349107265, -0.006913488265126944, -0.01143560092896223, 0.050303611904382706, -0.0030902186408638954, -0.022532368078827858, 0.012784414924681187, 0.006271661259233952, 0.015416883863508701, 0.0040985713712871075, 0.018114512786269188, -0.029973654076457024, 0.027419377118349075, -0.026741711422801018, 0.09346567094326019, -0.02205018326640129, 0.007441285531967878, 0.028070978820323944, -0.03461305424571037, 0.0013919830089434981, -0.03007791005074978, -0.002177977003157139, 0.0048642028123140335, 0.0016387769719585776, -0.01850547268986702, -0.010979480110108852, 0.03208484128117561, -0.02752363309264183, 0.02477387711405754, -0.01198294572532177, 0.00022052627173252404, -0.01028226688504219, -0.001014868845231831, 0.004746914375573397, 0.03547316789627075, 0.018088448792696, -0.026546232402324677, 0.03109440766274929, -0.028696516528725624, 0.0005933642969466746, -0.015091083012521267, 0.012015525251626968, -0.007317481096833944, 0.022806040942668915, 0.007122000679373741, 0.008803131990134716, 0.03925245627760887, -0.0005632277461700141, 0.011311796493828297, 0.01705891825258732, 0.004043185152113438, 0.02812310680747032, -0.0012013897066935897, -0.0023473931942135096, 0.0016200434183701873, 0.017528071999549866, -0.016290029510855675, -0.003114653518423438, 0.005952376872301102, 0.022219600155949593, 0.025360317900776863, -0.021763479337096214, 0.04785358905792236, -0.0289832204580307, 0.02692416124045849, 0.013097183778882027, 0.0302603580057621, 0.005049908999353647, -0.014244001358747482, 0.025516701862215996, 0.0281752347946167, -0.023587962612509727, 0.029322052374482155, -0.013722720555961132, 0.0035219043493270874, 0.0030511224176734686, 0.0030804446432739496, 0.009467764757573605, -6.607643445022404e-05], [0.015644116327166557, 0.031600262969732285, 0.010502690449357033, 0.0036167267244309187, -0.0657535120844841, 0.02429589256644249, -0.0283381175249815, 0.028139552101492882, 0.009892811067402363, -0.012424520216882229, 0.014225791208446026, -0.014977503567934036, -0.020026737824082375, 0.01293511688709259, 0.04731529578566551, 0.059002287685871124, -0.02565748430788517, 0.01833893172442913, 0.0010965418769046664, 0.07068927586078644, 0.007056162692606449, 0.05114477127790451, -0.008134089410305023, -0.017658136785030365, 0.008829068392515182, -0.03290512040257454, -0.0014174376847222447, -0.02618226408958435, 0.0602504126727581, 0.02171454392373562, 0.0578676275908947, -0.02984154038131237, 0.01843821443617344, -0.054151616990566254, -0.0092049241065979, 0.012204679660499096, -0.017473753541707993, 0.027246007695794106, -0.014041409827768803, -0.026721227914094925, -0.034777309745550156, -0.03426671400666237, 0.04169873148202896, 0.05369775369763374, 0.004045769572257996, 0.10302706807851791, -0.0069639720022678375, -0.006737039890140295, 0.015317901037633419, 0.0045138169080019, -0.031912293285131454, -0.018707696348428726, -0.004446446429938078, 0.0346638448536396, -0.027146724984049797, -0.0035706311464309692, -0.0012667408445850015, 0.02457955852150917, 0.010679980739951134, -0.014906587079167366, 0.0040209488943219185, -0.021118847653269768, 0.04172709956765175, -0.031458429992198944, -0.034635476768016815, 0.00955241359770298, -0.0018615504959598184, 0.03043723665177822, -0.00012343852722551674, 0.004996046889573336, -0.04887545108795166, 0.015700848773121834, -0.02680632658302784, 0.009538230486214161, -0.0027373656630516052, 0.00868014432489872, 0.040705904364585876, 0.011268585920333862, 0.005857679061591625, 0.007283094804733992, 0.012637268751859665, 0.015360451303422451, 0.015275351703166962, 0.010956554673612118, 0.014473997987806797, 0.0015034236712381244, -0.12367787212133408, 0.023161234334111214, 0.006573932711035013, 0.06609390676021576, 0.004162781406193972, 0.033273886889219284, -0.041783832013607025, 0.043514184653759, 0.042549725621938705, -0.028820347040891647, 0.028536682948470116, -0.025912782177329063, 0.0255865678191185, 0.01833893172442913, 0.04359928518533707, -0.04462048038840294, -0.020211119204759598, -0.011424601078033447, 0.0028703336138278246, 0.003666368080303073, -0.04938604682683945, 0.006705127656459808, -0.03942941129207611, -0.0010664025321602821, 0.022423705086112022, -0.016537660732865334, -0.013927944004535675, -0.00408831937238574, 0.007900065742433071, -0.03148679807782173, -0.03613889962434769, -0.04257809370756149, -0.03168536350131035, 0.0010371495736762881, 0.021742910146713257, -0.0056874798610806465, -0.0010389224626123905, -0.036649495363235474, 0.014977503567934036, -0.020764267072081566, -0.01305567380040884, 0.032961852848529816, 0.002150533953681588, -0.022012392058968544, -0.011318227276206017, 0.0033933406230062246, 0.012204679660499096, -0.05088947340846062, -0.01903391070663929, 0.02541637048125267, -0.04172709956765175, 0.021203946322202682, -0.0377841554582119, 0.006290267687290907, 0.018466580659151077, 0.01575758121907711, 0.0394577793776989, 0.016608577221632004, -0.03863514959812164, -0.015020052902400494, 0.0019306938629597425, 0.011247310787439346, 0.056874800473451614, 0.043315619230270386, 0.019161559641361237, 0.01387830264866352, 0.015246985480189323, -0.03043723665177822, 0.016466744244098663, -0.018906261771917343, 0.0054747313261032104, 0.04147179797291756, -0.025614934042096138, -0.03253635764122009, 0.006985246669501066, -0.0033188785891979933, 0.021274862810969353, -0.006460466887801886, 0.062179334461688995, -0.04515944421291351, 0.004386167507618666, 0.023728564381599426, -0.10739550739526749, -0.0008022396359592676, -0.006038515362888575, -0.021984025835990906, -0.029330944642424583, 0.013722286559641361, -0.06212259829044342, 0.020934464409947395, 0.028593415394425392, -0.022366972640156746, 0.03001173958182335, -0.021728726103901863, 0.0406491719186306, 0.08158200979232788, 0.0068469601683318615, -0.03452201187610626, -0.03182719647884369, -0.013374797068536282, -0.03074926882982254, 0.06461884826421738, -0.01172954123467207, 0.014091051183640957, 0.031600262969732285, -0.033727750182151794, 0.004322343040257692, 0.023686014115810394, -0.023700198158621788, -0.02001255378127098, -0.004978317767381668, 0.004106048494577408, -0.002717863768339157, -0.013651370070874691, -0.026621945202350616, 0.01016229297965765, 0.018041083589196205, 0.054577115923166275, -0.004208877217024565, -0.039826542139053345, -0.009701337665319443, -0.0029075646307319403, 0.05327225849032402, 0.011736632324755192, 0.07142680883407593, 0.009779345244169235, -0.033103685826063156, 0.017998533323407173, -0.010041735135018826, 0.026721227914094925, -0.030040105804800987, -0.016197262331843376, 0.02126067876815796, 0.015615749172866344, -0.033444084227085114, -0.027742421254515648, 0.00316818174906075, 0.03866351768374443, -0.009325481951236725, -0.024622108787298203, -0.006261901464313269, -0.0016558935167267919, -0.03684806078672409, -0.03001173958182335, -0.04294685646891594, 0.025217805057764053, 0.02283501997590065, 0.0233172494918108, -0.017402837052941322, -0.029416043311357498, 0.007417835760861635, -0.014261249452829361, -0.021913109347224236, -0.015488100238144398, 0.011679899878799915, -0.037358660250902176, -0.019119009375572205, 0.024522826075553894, -0.0192466601729393, 0.034209977835416794, 0.012694001197814941, -0.048818718641996384, -0.0009325481369160116, 0.04308868944644928, 0.044819045811891556, 0.07307206094264984, -0.03239452466368675, -0.012041572481393814, -0.03162863105535507, 0.015601566061377525, 0.029302578419446945, 0.006183893419802189, 0.025997882708907127, -0.01575758121907711, 0.0004232811334077269, -0.008517037145793438, -0.022891752421855927, -0.004680469632148743, 0.0010344901820644736, 0.0163816437125206, 0.05128660425543785, -0.00860922783613205, 0.026933977380394936, 0.03866351768374443, -0.04249299317598343, 0.020438050851225853, -0.027061626315116882, 0.04515944421291351, -0.026891427114605904, 0.039798177778720856, -0.0054640937596559525, 0.07534138113260269, -0.022324422374367714, 0.0118359150364995, -0.011013287119567394, -0.031316597014665604, 0.014949137344956398, -0.04257809370756149, -0.01061615627259016, 0.030806001275777817, 0.0023437808267772198, 0.011261493898928165, 0.005634292960166931, -0.022537171840667725, 0.024849040433764458, -0.05843495577573776, -0.03792598843574524, -0.03213922679424286, 0.017204271629452705, 0.02694815956056118, 0.020906098186969757, 0.0023402348160743713, 0.009311297908425331, 0.031032932922244072, 0.028848713263869286, 0.03415324538946152, -0.01941685751080513, -0.002630991395562887, -0.014651289209723473, 0.06819302588701248, 0.0346638448536396, 0.031174765899777412, -0.040876101702451706, -0.024480275809764862, -0.020168570801615715, 0.038890451192855835, -0.08203586935997009, -0.019757255911827087, 0.03880535066127777, -0.03755722567439079, -0.027004892006516457, -0.016991524025797844, 0.024253344163298607, -0.008396479301154613, 0.04796772450208664, -0.021175580099225044, -0.04022367298603058, 0.004964134655892849, -0.0032958309166133404, -0.03171372786164284, 0.03137332946062088, -0.007361102383583784, 0.02628154680132866, 0.005836403928697109, -0.047882623970508575, -0.044365182518959045, 0.019913271069526672, -0.005783217027783394, 0.007630584295839071, 0.044251713901758194, -0.05222269520163536, 0.002081390703096986, 0.02042386867105961, -0.01931757479906082, 0.03335898369550705, -0.035259541124105453, 0.004116686061024666, 0.009779345244169235, 0.007361102383583784, -0.025217805057764053, 0.015601566061377525, -0.025813499465584755, 0.03557157143950462, 0.05057743936777115, -0.05378285422921181, -0.0032851933501660824, -0.054577115923166275, 0.015473917126655579, 0.006201622541993856, 0.023331433534622192, 0.07085947692394257, -0.024792306125164032, 0.008481578901410103, 0.02921747788786888, -0.017799967899918556, 0.010126834735274315, -0.025118522346019745, 0.0030139388982206583, -0.021501794457435608, 0.046038802713155746, -0.05928594991564751, -0.008517037145793438, -0.009772254154086113, -0.0380110889673233, 0.02955787628889084, -0.04524454101920128, -0.003045851131901145, 0.013672645203769207, -0.04019530862569809, -0.016296545043587685, -0.02775660529732704, 0.02245207130908966, 0.05693153291940689, -0.04549983888864517, 0.02077844925224781, -0.07687316834926605, -0.024324260652065277, -0.00027745967963710427, -0.022480439394712448, 0.022083308547735214, -0.05539974197745323, 0.0012578762834891677, 0.0161405298858881, -0.018466580659151077, 0.05043561011552811, -0.046691231429576874, 0.013644278980791569, -0.004017403349280357, 0.027345290407538414, -0.004279793240129948, 0.027104174718260765, 0.032025761902332306, -0.001254330505616963, -0.01460873894393444, 0.0030671260319650173, 0.04062080383300781, -0.012140855193138123, 0.01764395274221897, -0.033557549118995667, -0.017303554341197014, 0.007403652183711529, 0.031770460307598114, 0.03287675604224205, 0.0007339827716350555, -0.009587871842086315, -0.02252298779785633, 0.05375448614358902, 0.00046317148371599615, -0.00022715349041391164, -0.017104988917708397, 0.03594033420085907, -0.018466580659151077, 0.003304695477709174, -0.015332084149122238, -0.01955869048833847, 0.010623248293995857, -0.015587382949888706, 0.006042060907930136, -0.05097457021474838, 0.023969678208231926, 0.019899088889360428, 0.02472139149904251, -0.010282850824296474, -0.041783832013607025, -0.03744375705718994, 0.00365218473598361, -0.03012520633637905, 0.04842158779501915, -0.015743399038910866, -0.011098386719822884, -0.04325888678431511, 0.03900391608476639, -0.023203784599900246, 0.00946731399744749, -0.04201076179742813, 0.0153037179261446, 0.00598887400701642, -0.02080681547522545, 0.009857352823019028, -0.0015947282081469893, 0.010921096429228783, -0.005680388305336237, -0.007942615076899529, 0.011984839104115963, -0.022679002955555916, -0.019076460972428322, -0.022466255351901054, -0.0012649678392335773, -0.07329899072647095, -0.022054940462112427, -0.01209830492734909, 0.00791424885392189, 0.025090154260396957, -0.007751141674816608, 0.03185556083917618, 0.0012915615225210786, 0.0040528615936636925, 0.03350081667304039, -0.005921503528952599, 0.0008589726057834923, 0.03775579109787941, 0.04374111816287041, -0.023132868111133575, -0.019615422934293747, -0.013771927915513515, 0.03307532146573067, 0.04504597559571266, 0.03182719647884369, -0.008722693659365177, 0.02663612924516201, -0.0020104744471609592, -0.019374309107661247, -0.0013084040256217122, -0.018239649012684822, 0.006375367287546396, -0.008048989810049534, -0.013743561692535877, 0.028990546241402626, 0.025884415954351425, 0.0635976567864418, 0.023061951622366905, 0.03596870228648186, -0.0765327736735344, 0.02164362743496895, 0.08578024804592133, -0.004939313977956772, 0.0010761534795165062, -0.016792958602309227, -0.054718948900699615, -0.04093283787369728, 0.031742095947265625, 0.008914167992770672, 0.04152853414416313, -0.029898274689912796, -0.020579883828759193, -0.049698080867528915, 0.02865014784038067, -0.04053570702672005, 0.049556247889995575, 0.027274373918771744, -0.07426345348358154, -0.020523151382803917, 0.011970655992627144, 0.00670158164575696, 0.02847995050251484, -0.010048827156424522, -0.003772742347791791, -0.033103685826063156, -0.0033241973724216223, 0.014708021655678749, -0.024693023413419724, 0.02255135402083397, -0.03497587516903877, -0.004301067907363176, 0.008134089410305023, 0.043315619230270386, -0.012750734575092793, -0.02137414552271366, -0.0005296554300002754, -0.004648557398468256, 0.01611216366291046, -0.12549331784248352, 0.024877406656742096, -0.02231024019420147, 0.008758151903748512, -0.018041083589196205, -0.00868014432489872, 0.025983698666095734, 0.04640756919980049, 0.015530649572610855, -0.022820835933089256, 0.006910784635692835, 0.0017667000647634268, 0.005230070557445288, 0.0014059138484299183, -0.024877406656742096, 0.026763778179883957, -0.013679737225174904, -0.018764428794384003, -0.008112814277410507, 0.04110303521156311, -0.008779427036643028, 0.002636310178786516, 0.03625236824154854, -0.03364264965057373, 0.015473917126655579, 0.009034724906086922, -0.00010305011528544128, -0.008063172921538353, -0.026168081909418106, 0.026650311425328255, -0.015573199838399887, 0.02056570164859295, -0.020835181698203087, -0.015587382949888706, 0.004081227816641331, 0.01523280143737793, -0.007194449659436941, -0.022579722106456757, 0.011261493898928165, -0.02324633300304413, 0.014977503567934036, -0.0042443349957466125, 0.026749594137072563, -0.043315619230270386, 0.02352999895811081, -0.008531220257282257, 0.07369612157344818, 0.06320052593946457, 0.021133029833436012, 0.0017986124148592353, 0.0021487611811608076, -0.032366156578063965, -0.03333061933517456, 0.006903693079948425, -0.010559423826634884, 0.001361591275781393, 0.03256472200155258, -0.030947834253311157, 0.024139877408742905, -0.006159072741866112, -0.022466255351901054, -0.05985328182578087, 0.0025689397007226944, -0.014963320456445217, -0.01826801523566246, 0.00010847963858395815, -0.015176068991422653, 0.005130787845700979, 0.0018296382622793317, 0.031912293285131454, 0.02816791832447052, -0.004492541775107384, -0.0012631949502974749, 0.02137414552271366, 0.0045492746867239475, -0.003322424367070198, 0.0037018260918557644, 0.02269318699836731, 0.015559016726911068, 0.0019236021908000112, -0.006006603129208088, 0.02537382021546364, -0.00845321174710989, 0.04649266600608826, 0.019913271069526672, 0.038918815553188324, -0.013084040954709053, 0.029614608734846115, -0.0344369113445282, -0.020934464409947395, -0.02195565775036812, -0.01719008944928646, 0.008892892859876156, 0.020196937024593353, 0.010637431405484676, -0.008517037145793438, 0.0043471637181937695, 0.0050776004791259766, -0.006538474466651678, -0.02126067876815796, -0.03696152940392494, -0.0056981174275279045, -0.00426915567368269, 0.01836729794740677, 0.02443772554397583, -0.00017097455565817654, -0.008836159482598305, -0.010190659202635288, -0.02967134304344654, 0.00565556762740016, -0.01355917938053608, 0.028437400236725807, -0.051853932440280914, -0.006332817487418652, -0.007276003248989582, -0.006690944544970989, -0.04720183089375496, 0.013084040954709053, 0.0010336037958040833, 0.022437889128923416, 0.013658462092280388, -0.003304695477709174, 0.004474812652915716, 0.04289012402296066, -0.016296545043587685, 0.0029217477422207594, -0.02429589256644249, 0.006552657578140497, -0.020126020535826683, 0.0010761534795165062, 0.022721553221344948, -0.007123533170670271, -0.012311054393649101, -0.01893462799489498, 0.04249299317598343, -0.009921177290380001, -0.012509619817137718, -0.004460629541426897, 0.012233045883476734, -0.017204271629452705, -0.014906587079167366, -0.0097438869997859, 0.009056000038981438, 0.004779752343893051, 0.01146715134382248, -0.010935279540717602, 0.0007867267122492194, -0.006116522941738367, 0.028295567259192467, 0.0023171871434897184, -0.02771405503153801, 0.016537660732865334, -0.0021718088537454605, -0.019431041553616524, 0.012956391088664532, 0.0004848895769100636, 0.02572840079665184, -0.02004092000424862, -0.01872187852859497, -0.0007158105145208538, 0.019530324265360832, 0.0011922788107767701, 0.043797850608825684, -0.0004418966418597847, 0.00015823179273866117, 0.015729214996099472, -0.012069938704371452, 0.01795598492026329, -0.051371701061725616, 0.02838066779077053, 0.018778612837195396, 0.0035865872632712126, -0.12583371996879578, -0.01423997525125742, 0.02460792474448681, 0.014750571921467781, 0.008034806698560715, 0.008290104568004608, 0.005010230001062155, -0.00256716669537127, 0.003134496510028839, -0.011942289769649506, -0.01662275940179825, 0.011247310787439346, -0.0344369113445282, -0.038918815553188324, -0.0118359150364995, -0.005400269292294979, 0.004996046889573336, -0.00040533047285862267, 0.025841867551207542, 0.01979980617761612, -0.02921747788786888, 0.028891263529658318, 0.030380504205822945, -0.005800946149975061, -0.003331288928166032, -0.027870070189237595, 0.027983536943793297, 0.007432018872350454, 0.025529835373163223, -0.032507989555597305, 0.013445713557302952, -0.012594718486070633, -0.026338281109929085, -0.007488751783967018, -0.009084366261959076, 0.005839949939399958, 0.006442737765610218, -0.012807467021048069, 0.012615993618965149, -0.012736551463603973, -0.01843821443617344, 0.018523313105106354, -0.03806782141327858, 0.0736393928527832, -0.016750408336520195, -0.008488669991493225, 0.02785588800907135, -0.0066058449447155, 0.0073752859607338905, -0.04487577825784683, 0.03057906962931156, 0.016027063131332397, 0.012048663571476936, -0.00941058062016964, 0.013013124465942383, 0.007084529381245375, -0.022480439394712448, 0.008992175571620464, 0.013509538024663925, 0.004084773827344179, -0.018424030393362045, 0.0012578762834891677, 0.002242725109681487, 0.024593740701675415, 0.04062080383300781, 0.011169303208589554, -0.007871699519455433, -0.06728529930114746, 0.014041409827768803, 0.007673134095966816, 0.037245191633701324, 0.012481252662837505, -0.019119009375572205, -0.014523639343678951, 0.0478258915245533, -0.004375529941171408, 0.02099119871854782, 0.005758396349847317, -0.02845158241689205, 0.007134170737117529, 0.028635965660214424, 0.06093120574951172, 0.0029217477422207594, -0.031032932922244072, 0.0030245762318372726, -0.022352788597345352, -0.028579233214259148, -0.0032231416553258896, -0.01802690140902996, -0.007871699519455433, -0.008162455633282661, -0.03625236824154854, -0.009963727556169033, 0.0036220455076545477, -0.03625236824154854, 0.05707336589694023, 0.0033933406230062246, -0.010126834735274315, -0.057640694081783295, 0.020126020535826683, 0.03469220921397209, 0.022125856950879097, -0.015715032815933228, -0.003551129251718521, -0.02178546041250229, 0.030181938782334328, 0.04186892881989479, -0.024522826075553894, 0.03230942413210869, 0.06995175033807755, -0.04618063569068909, -0.02060825005173683, 0.01771486923098564, -0.020664984360337257, 0.012665634974837303, 0.0161405298858881, -0.02718927524983883, 0.0153037179261446, 0.024395175278186798, 0.009715520776808262, -0.04827975481748581, 0.01232523750513792, 0.005779671017080545, 0.019119009375572205, 0.0014342803042382002, 0.00791424885392189, 0.000722015684004873, -0.016537660732865334, 0.03455037623643875, -0.013984676450490952, 0.007197995204478502, 0.028153736144304276, 0.02377111278474331, -0.010176476091146469, -0.032479625195264816, -0.00591795751824975, -0.04147179797291756, -0.030635802075266838, 0.02116139605641365, -0.0029855724424123764, 0.010360858403146267, 0.040734272450208664, -0.03619563207030296, 0.004659194964915514, 0.0008306060917675495, -0.007063254714012146, 0.03134496510028839, -0.004141506738960743, -0.010665797628462315, 0.0061307065188884735, -0.0003284307022113353, -0.03653603047132492, -0.015332084149122238, 0.0003962443151976913, -0.011594800278544426, 0.011332410387694836, -0.012885475531220436, -0.0007282208534888923, -0.0025689397007226944, 0.02649429626762867, -0.02168617770075798, -0.03764232248067856, 0.0062264432199299335, -0.030862733721733093, -0.046350833028554916, 0.01707662269473076, -0.017870884388685226, -0.01697733998298645, 0.017090806737542152, 0.018679330125451088, -0.04215259477496147, -0.00982898660004139, 0.0069426968693733215, -0.0377841554582119, 0.012474161572754383, 0.006595207378268242, 0.027586406096816063, 0.018764428794384003, 0.006843414157629013, 0.0255865678191185, -0.005354173947125673, 0.02646593004465103, 0.004049315582960844, 0.013715194538235664, -0.025614934042096138, 0.0116586247459054, -0.037840887904167175, -0.05449201539158821, 0.03148679807782173, -0.0012968801893293858, 0.03216759115457535, -0.020594067871570587, 0.010474324226379395, -0.005680388305336237, -0.019743071869015694, -0.006690944544970989, -0.03151516243815422, -0.02266482077538967, 0.03077763505280018, 0.015956146642565727, -0.021898925304412842, 0.006042060907930136, -0.008658869192004204, -0.04291848838329315, 0.0015796585939824581, -0.005878953728824854, 0.022111674770712852, 0.018395664170384407, 0.008297196589410305, -0.022111674770712852, 0.022338606417179108, 0.013225873000919819, -0.012282687239348888, 0.0022409523371607065, 0.01427543256431818, 0.01764395274221897, -0.004403896629810333, -0.012828742153942585, -0.01068707276135683, 0.02345908246934414, -0.011608983390033245, 0.003405750961974263, -0.0027036804240196943, -0.0007938183262012899, 0.03565667197108269, -0.0005478277453221381, 0.01604124717414379, 0.014523639343678951, 0.004045769572257996, 0.009240382350981236, -0.003357882611453533, 0.02733110636472702, 0.04532964155077934, 0.01822546496987343, 0.0008208551444113255, 0.00024377446970902383, 0.010190659202635288, 0.007297277916222811, -0.005084692034870386, -0.031004566699266434, -0.04138670116662979, 0.011218944564461708, 0.019530324265360832, -0.024551192298531532, 0.019927455112338066, 0.014963320456445217, -0.02806863561272621, 0.04203912988305092, -0.0062158056534826756, 0.012147946283221245, -0.011899740435183048, -0.016395827755331993, -0.025501469150185585, 0.02293430268764496, 0.030068472027778625, 0.010141017846763134, -0.03469220921397209, 0.01441726554185152, 0.0025707127060741186, -0.013084040954709053, -0.048790350556373596, 0.009240382350981236, 0.0023650554940104485, 0.004067044705152512, -0.05157026648521423, 0.0010539921931922436, -0.0222393237054348, -0.023515814915299416, -0.022225139662623405, -0.033897947520017624, 0.005020867567509413, 0.0033295161556452513, -0.03528790548443794, 0.001031830906867981, 0.007566759362816811, -0.023473264649510384, 0.016154712066054344, -0.012006114237010479, -0.026451746001839638, -0.0051591540686786175, 0.0044429004192352295, -0.03137332946062088, 0.005113058723509312, 0.028323933482170105, 0.018324747681617737, 0.002689497312530875, -0.0002581793232820928, 0.028749430552124977, 0.017459571361541748, 0.03364264965057373, -0.01538881752640009, -0.009836078621447086, 0.021218130365014076, 0.01354499626904726, -0.009538230486214161, -0.0001287572376895696, -0.02967134304344654, -0.003380930284038186, 0.0008908848976716399, 0.020594067871570587, 0.011346593499183655, 0.024324260652065277, 0.02632409706711769, -0.004889672622084618, 0.031146399676799774, 0.0439964160323143, -0.0038046545814722776, -0.02541637048125267, 0.017544670030474663, -0.006687398534268141, -0.018353115767240524, 0.013396072201430798, 0.02412569522857666, -0.003288739128038287, -0.0014404854737222195, -0.021076297387480736, -0.019757255911827087, -0.011062928475439548, -0.01136786863207817, -0.019884904846549034, -0.0030086201149970293, 0.0382663868367672, 0.006995884235948324, -0.003464256878942251, -0.04791099205613136, 0.02474975772202015, -0.007251182571053505, -0.008843251504004002, 0.014722204767167568, 0.014190333895385265, -0.010814721696078777, -0.0024253344163298607, -0.028820347040891647, -0.005020867567509413, 0.0052761659026145935, -0.022352788597345352, 0.028749430552124977, -0.027416206896305084, 0.03469220921397209, -0.020650800317525864, -0.009793528355658054, 0.0184098482131958, 0.013445713557302952, 0.017303554341197014, 0.002528162905946374, 0.024239160120487213, -0.004552820697426796, 0.001428961637429893, 0.010226117447018623, 0.05730029568076134, -0.004673378076404333, 0.010155200958251953, -0.00014715113502461463, -0.026990709826350212, 0.04450701177120209, -0.030068472027778625, -0.006077519152313471, 0.0020849364809691906, -0.0192466601729393, -0.008403570391237736, -0.023090317845344543, -0.021345779299736023, -0.017374470829963684, 0.005428635980933905, -0.03900391608476639, 0.01771486923098564, -0.008878709748387337, -0.039656344801187515, 0.02596951648592949, -0.007900065742433071, 0.04019530862569809, -0.004067044705152512, -0.002992663998156786, 0.013509538024663925, -0.0018562318291515112, 0.016395827755331993, -0.0022870476823300123, -0.0021434423979371786, 0.01987072266638279, 0.0025547563564032316, -0.022778285667300224, -0.0038152921479195356, -0.0010823586490005255, -0.020409684628248215, 0.03369938209652901, -0.02446609176695347, 0.02496250532567501, 0.027912620455026627, -0.015658298507332802, -0.014722204767167568, 0.0032071855384856462, 0.004893218632787466, -0.010084285400807858, -0.029018912464380264, 0.005375448614358902, -0.008637594059109688, -0.02381366305053234, 0.0286926981061697, 0.014495273120701313, 0.013573362492024899, -0.012289779260754585, 0.016097979620099068, -0.018424030393362045, 0.022225139662623405, -0.016012880951166153, 0.009871535934507847, -0.03273492306470871, 0.028465766459703445, -0.008098631165921688, -0.012857108376920223, 0.016197262331843376, 0.01521861832588911, 0.027515489608049393, -0.004425171297043562, 0.02060825005173683, 0.021898925304412842, -0.002891608513891697, -0.0026965888682752848, -0.01063033938407898, -0.01642419397830963, 0.02070753276348114, -0.014665472321212292, -0.01958705671131611, -0.023629281669855118, 0.01836729794740677, 0.01528953481465578, -0.018636779859662056, 0.020367136225104332, 0.0012366013834252954, 0.004070590250194073, 0.01781415194272995, -0.010027552023530006, 0.05866188928484917, 0.0061909849755465984, -0.028536682948470116, -0.016154712066054344, 0.0027728239074349403, 0.022920118644833565, -0.02381366305053234, 0.0037337385583668947, -0.017842518165707588, 0.0066377571783959866, -0.023090317845344543, 0.015275351703166962, -0.00031779325217939913, -0.012623085640370846, -0.022253505885601044, -0.01260181050747633, 0.12072775512933731, -0.04737202823162079, 0.015729214996099472, 0.025302903726696968, 0.00021053249656688422, 0.007006521336734295, -0.01659439317882061, 0.0072582741267979145, -0.017445387318730354, 0.0036202725023031235, -0.00548182288184762, -0.005254891235381365, 0.0026416287291795015, 0.0163816437125206, -0.002203721320256591, 0.006112977396696806, -0.014317982830107212, 0.013240056112408638, -0.004191148094832897, -0.012133763171732426, -0.008424845524132252, 0.005272620357573032, 0.012403245083987713, -0.038606785237789154, 0.01934594288468361, -0.016438378021121025, -0.013417347334325314, -0.012055755592882633, 0.006914330646395683, 0.039798177778720856, 0.05086110532283783, 0.01070125587284565, -0.05888881906867027, -0.012573444284498692, -0.026792144402861595, 0.0029962097760289907, 0.037670690566301346, 0.00652783690020442, -0.0016603257972747087, -0.01268691010773182, -0.012353603728115559, -0.026026248931884766, -0.006467558443546295, 0.0012419201666489244, 0.005237162113189697, 0.030352137982845306, -0.04532964155077934, -0.04445027932524681, 0.019147377461194992, 0.003903937293216586, 0.046379201114177704, -0.0019041001796722412, -0.010658706538379192, 0.002978480886667967, -0.040876101702451706, 0.012672726996243, -0.009261656552553177, 0.008226280100643635, 0.02360091544687748, 0.007495843339711428, -0.0055598309263587, 0.007595126051455736, 0.03321715444326401, 0.034635476768016815, -0.012459978461265564, -0.04141506552696228, -0.01575758121907711, -0.022792469710111618, -0.017346104606986046, 0.024380993098020554, -0.012651451863348484, 0.02795517072081566, -0.011814640834927559, -0.024310076609253883, -0.028891263529658318, 0.032507989555597305, -0.026721227914094925, 0.004081227816641331, -0.021700359880924225, 0.027969352900981903, -0.00213103205896914, 0.02060825005173683, 0.028366483747959137, 0.009176557883620262, 0.0019466499797999859, 0.03168536350131035, -0.019218292087316513, -0.00887161772698164, -0.005425089970231056, -0.039230845868587494, 0.04572677239775658, -0.005609472282230854, -0.03350081667304039, -0.04121650010347366, -0.0013713422231376171, -0.010148109868168831, -0.036479298025369644, -0.017090806737542152, -0.014523639343678951, 0.012381969951093197, 0.02747293934226036, 0.010828904807567596, -0.03900391608476639, 0.03222432732582092, 0.008772335015237331, 0.0033135598059743643, 0.0022586812265217304, -0.014105234295129776, -0.005719392094761133, 0.0014254158595576882, 0.006187439430505037, -0.035259541124105453, 0.008559586480259895, 0.005371903069317341, 0.012084121815860271, 0.007580942939966917, 0.055796872824430466, -0.03307532146573067, -0.002944795647636056, 0.0050740549340844154, -0.0011000876547768712, -0.006854051724076271, 0.020679166540503502, -0.017615586519241333, -0.004691107198596001, 0.002682405523955822, 0.02164362743496895, 0.037074994295835495, 0.03948614373803139, -0.006644848734140396, -0.016395827755331993, 0.0004093195020686835, -0.025345453992486, -0.003134496510028839, -0.005251345224678516, 0.0389755479991436, -0.03948614373803139, 0.0064143710769712925, 0.01750211976468563, 0.002418242860585451, -0.017402837052941322, -0.012956391088664532, -0.0267779603600502, 0.008708510547876358, -0.02209749072790146, 0.019856538623571396, -0.012892566621303558, -0.03125986456871033, -0.00880070123821497, -0.02687724307179451, 0.01843821443617344, 0.008821976371109486, -0.03222432732582092, 0.0075525762513279915, -0.006861143279820681, -0.011608983390033245, 0.021033747121691704, 0.02426752634346485, 0.03457874432206154, -0.01328260637819767, -0.02374274656176567, -0.02826720103621483, 0.0024288801942020655, 0.016367461532354355, 0.022409522905945778, 0.022749919444322586, -0.012403245083987713, 0.006676760967820883, 0.025614934042096138, -0.006988792680203915, -0.0222393237054348, -0.0020938010420650244, -0.033585917204618454, 0.02266482077538967, 0.03469220921397209, -0.0021966295316815376, -0.006006603129208088, 0.0020317493472248316, -0.022679002955555916, 0.005928595084697008, -0.00975807011127472, -0.04359928518533707, -0.01544555090367794, -0.0014520094264298677, -0.0006165278027765453, 0.005531464237719774, -0.014091051183640957, -0.018154550343751907, 0.011481334455311298, 0.005652022082358599, 0.00024532576208002865, -0.01268691010773182, 0.025231987237930298, 0.02589859999716282, -0.007318553049117327, -0.026621945202350616, 0.03574176877737045, 0.029642974957823753, -0.015516466461122036, 0.006765406578779221, 0.02185637503862381, 0.009729703888297081, 0.00826173834502697, 0.011963564902544022, 0.016083795577287674, 0.003336607711389661, -0.005081146489828825, -0.001482148771174252, -0.007162536960095167, 0.012211771681904793, 0.009474406018853188, 0.007864607498049736, 0.009240382350981236, -0.0163816437125206, 0.019672157242894173, -0.002446609316393733, 0.029033096507191658, 0.03301858901977539, -0.005910865962505341, 0.003911029081791639, -0.027969352900981903, 0.000929888803511858, 0.023161234334111214, -0.020792633295059204, -0.020750083029270172, 0.013013124465942383, 0.022636454552412033, -0.010148109868168831, 0.026338281109929085, 0.013970493339002132, 0.0018119091400876641, 0.023756930604577065, -0.026168081909418106, -0.03704662621021271, -0.005974690895527601, -0.02757222205400467, -0.016268178820610046, -0.003903937293216586, 0.0015025371685624123, -0.02865014784038067, 0.024707207456231117, -0.01077217236161232, -0.0009919404983520508, -0.02718927524983883, -0.027231823652982712, 0.01628236100077629, 0.01172954123467207, -0.012998941354453564, -0.010942371562123299, 0.019303392618894577, -0.05035050958395004, 0.010885638184845448, 0.021813826635479927, -0.011743724346160889, -0.03423834592103958, 0.003182364860549569, 0.007715683430433273, -0.004680469632148743, 0.031146399676799774, 0.0016035927692428231, -0.0051697916351258755, -0.036479298025369644, 0.04107466712594032, 0.003138042287901044, -0.017317738384008408, 0.013346430845558643, 0.010070101357996464, 0.0033171058166772127, 0.03534463793039322, 0.00369118875823915, 0.004786844365298748, 0.01085727196186781, -0.021842192858457565, -0.0007503821398131549, -0.0030050743371248245, 0.040252041071653366, -0.013339338824152946, -0.010644523426890373, 0.03301858901977539, -0.00013241385750006884, 0.005864770617336035, 0.005453456658869982, 0.003405750961974263, -0.015601566061377525, -0.011722449213266373, 0.018736062571406364, 0.006428554188460112, 0.0021097571589052677, 0.008701418526470661, 0.01061615627259016, -0.028281385079026222, 0.0019891997799277306, 0.004120231606066227, 0.004801027476787567, 0.007325644604861736, 0.03293348848819733, -0.007907157763838768, 0.0052974410355091095, 0.019842354580760002, 0.005361265502870083, -0.0175730362534523, -0.01484985463321209, 0.016722042113542557, -0.013218781910836697, -0.0018074768595397472, 0.01575758121907711, -8.321573841385543e-05, 0.032507989555597305, 0.007233453448861837, -0.005166246090084314, -0.005623655393719673, 0.02673541195690632, -0.0022001753095537424, 0.0377841554582119, -0.006276084575802088, 0.0028224652633070946, 0.023019401356577873, -0.002992663998156786, 0.00772277545183897, 0.02506178803741932, -0.0020033828914165497, 0.014268341474235058, -0.023714380338788033, -0.008268830366432667, 0.10489925742149353, -0.012502527795732021, -0.010389224626123905, 0.0116586247459054, -0.0009254565229639411, 0.015644116327166557, -0.014665472321212292, -0.034947507083415985, -0.04839321970939636, 0.009240382350981236, -0.014027226716279984, -0.0203245859593153, -0.012403245083987713, -0.03406814858317375, -0.003946486860513687, -0.0012481253361329436, -0.015119335614144802, 0.018182916566729546, 0.020381318405270576, 0.006031423807144165, -0.018182916566729546, 0.035713404417037964, -0.0014981048880144954, 0.033444084227085114, 0.004893218632787466, -0.024239160120487213, -0.06785263121128082, -0.02216840721666813, -0.00860922783613205, 0.0030618072487413883, 0.014197424985468388, 0.009233290329575539, 0.03089110180735588, 0.04124486818909645, 0.05097457021474838, 0.01138205174356699, -0.015729214996099472, 0.019062276929616928, -0.0046414658427238464, -0.007502934895455837, -0.03500423952937126, 0.005010230001062155, -0.014821487478911877, -0.0033632011618465185, -0.0011195896659046412, 0.04947114735841751, -0.01697733998298645, -0.015246985480189323, -0.018877895548939705, -0.015984512865543365, -0.002155852736905217, 0.012672726996243, 0.02245207130908966, -0.005758396349847317, -0.03971307724714279, 0.006180347874760628, 0.009112732484936714, -0.013346430845558643, 0.01347407978028059, -0.0013713422231376171, 0.010474324226379395, -0.026933977380394936, -0.005247799679636955, 0.008460303768515587, -0.02321796678006649], [0.04400229454040527, -0.03347635269165039, 0.01834830828011036, 0.01267679501324892, -0.03328409790992737, 0.029030460864305496, -0.03489422798156738, 0.01799984648823738, 0.029150620102882385, -0.004247627221047878, -0.012881065718829632, -0.02602648176252842, -0.004815379623323679, 0.008032642304897308, -0.016942445188760757, 0.03369263932108879, 0.004232607316225767, 0.026483086869120598, 0.012520588003098965, 0.027035817503929138, 0.02251783199608326, 0.019477805122733116, 0.03446165472269058, 0.0013052292633801699, -0.018288228660821915, -0.012436476536095142, 0.009600719437003136, 0.006566700059920549, 0.0489528551697731, -0.016978492960333824, 0.056282564997673035, -0.010447842068970203, -0.01301324088126421, -0.008248928934335709, 0.02602648176252842, 0.009492576122283936, 0.021051891148090363, -0.01857661083340645, 0.005311036482453346, -0.016077300533652306, -0.055946119129657745, -0.023671360686421394, -0.024969080463051796, -0.03821062296628952, -0.022698070853948593, 0.039147865027189255, 0.03169799596071243, -0.03703306242823601, 0.012953161261975765, 0.05536935478448868, 0.031121231615543365, 0.041791368275880814, -0.0035056443884968758, 0.051428135484457016, 0.02854982390999794, 0.00042956910328939557, -0.01987433061003685, 0.011697497218847275, -0.007786315865814686, -0.02612260915338993, -0.02778080478310585, 0.02007860131561756, 0.031025104224681854, 0.018636690452694893, -0.019357645884156227, 0.01213607843965292, -0.014322975650429726, 0.08021827787160873, -0.03328409790992737, 0.011667457409203053, 0.023911679163575172, 0.02174881286919117, -0.00916213821619749, 0.00851327832788229, -0.00928229745477438, 0.021496480330824852, 0.08622623980045319, -0.006879113614559174, 0.04883269593119621, 0.03700903058052063, -0.031361550092697144, 0.03864319622516632, -0.0006529901293106377, 0.029030460864305496, -0.050226543098688126, 0.018961120396852493, -0.03186621889472008, 0.012628731317818165, -0.0399649478495121, -0.0036738673225045204, -0.0474388487637043, -0.03818659111857414, 0.011589353904128075, 0.021664703264832497, -0.009841037914156914, 0.015428440645337105, 0.0028447688091546297, -0.02404385432600975, -0.020018521696329117, 0.08069891482591629, -0.01887700892984867, 0.006963225081562996, -0.07055747509002686, -0.017435098066926003, 0.03282749280333519, -0.05839736759662628, 0.005476254969835281, 0.03052043542265892, 0.014106689020991325, 0.020222792401909828, 0.007533981464803219, -0.026651307940483093, -0.017927750945091248, 0.04840012267231941, -0.019742155447602272, 0.011168796569108963, -0.019189422950148582, 0.009774950332939625, 0.025858258828520775, -0.019261518493294716, 0.010423810221254826, 0.03095300868153572, 0.040133170783519745, -0.03700903058052063, 0.02252984791994095, -0.022674039006233215, -4.876773527939804e-05, -0.03818659111857414, 0.04405035823583603, -0.012520588003098965, 0.06637594103813171, -0.039243992418050766, 0.057580284774303436, -0.03885948285460472, 0.004487945698201656, 0.0072095515206456184, -0.04729465767741203, -0.024776825681328773, -0.039796724915504456, 0.026483086869120598, 0.060560233891010284, -0.005737601313740015, 0.0487365685403347, 0.0021117976866662502, -0.02744435891509056, -0.02185695618391037, 0.019513852894306183, -0.00501965032890439, -0.07171100378036499, -0.003235286334529519, -0.0032923619728535414, 0.013085336424410343, -0.02501714415848255, 0.060896679759025574, 0.007341726683080196, 0.008272960782051086, -0.03186621889472008, 0.03943624719977379, -0.02263799123466015, -0.0044098421931266785, -0.04861640930175781, 0.0039682574570178986, -0.022337593138217926, -0.025762131437659264, -0.01246050838381052, -0.023214755579829216, -0.02504117600619793, -0.02415199764072895, -0.06200214475393295, -0.021820908412337303, -0.05075524374842644, -0.05214909091591835, -0.04030139371752739, -0.033548448234796524, -0.02578616328537464, -0.05436001718044281, 0.019910378381609917, -0.0031752067152410746, -0.05147619917988777, 0.0042235953733325005, 0.009798982180655003, -0.02581019513309002, -0.0812276154756546, -0.019850298762321472, -0.00993115734308958, 0.04405035823583603, -0.02590632252395153, 0.015007883310317993, -0.03744160383939743, 0.0011768090771511197, 0.02173679694533348, -0.01899716816842556, -0.038378845900297165, 0.013758227229118347, -0.009432496502995491, 0.0030159957241266966, -0.05171651765704155, -0.01206999085843563, 0.04332940652966499, 0.010315666906535625, -0.010477881878614426, -0.024079902097582817, 0.03371667116880417, 0.05570580065250397, -0.03513454645872116, -0.007155479863286018, 0.006782986223697662, 0.010598041117191315, 0.046285320073366165, -0.025497781112790108, 0.018925072625279427, -0.01669011265039444, 0.02242170460522175, -0.02007860131561756, -0.003157182829454541, 0.008711541071534157, 0.06647206842899323, -0.013325653970241547, 0.011505242437124252, -0.01857661083340645, -0.0551290363073349, -0.04578065127134323, 0.011397099122405052, 0.027300167828798294, -0.028405632823705673, -0.017050588503479958, 0.0036618513986468315, -0.0043978262692689896, -0.005422183778136969, -0.016377698630094528, -0.051764581352472305, 0.009168146178126335, 0.009426488541066647, -0.02304653264582157, -0.01866072230041027, -0.003547700121998787, 0.012941145338118076, -0.024872953072190285, 0.00083735934458673, -0.006560692097991705, 0.013746211305260658, 0.059550896286964417, -0.031217359006404877, 0.03556711971759796, 0.009973213076591492, -0.003640823531895876, -0.005647481884807348, -0.011355043388903141, 0.02252984791994095, 0.011493226513266563, 0.005160837434232235, -0.043665848672389984, 0.032995715737342834, -0.02744435891509056, 0.01822814904153347, 0.00036517129046842456, 0.007924498990178108, -0.0045300014317035675, 0.05820511281490326, -0.0028672986663877964, -0.06392469257116318, 0.027180008590221405, 0.0027771792374551296, -0.021328257396817207, -0.0683465451002121, -0.029559161514043808, 0.01482764445245266, -0.01822814904153347, 0.005713569466024637, -0.028141282498836517, -0.019345629960298538, 0.04159911349415779, 0.005827720742672682, -0.06113699823617935, -0.035759374499320984, 0.030448339879512787, -0.002706585917621851, -0.040349457412958145, -0.027372263371944427, 0.06829848140478134, -0.0019300570711493492, -0.03347635269165039, -0.007455877959728241, -0.06344405561685562, 0.0047162482514977455, -0.0071975355967879295, 0.03691290318965912, 0.03318797051906586, 0.02691565826535225, -0.00939044076949358, 0.014671437442302704, -0.008411143906414509, 0.02790096402168274, -0.00024820383987389505, 0.03261120617389679, -0.013650083914399147, -0.012400428764522076, -0.0009665305260568857, -0.034221336245536804, -0.015440456569194794, -0.003962249495089054, 0.0744025707244873, 0.023130644112825394, -0.013037272728979588, -0.002572908764705062, -0.014731517061591148, -0.049890097230672836, 0.01213607843965292, -0.029895607382059097, 0.01009337231516838, 0.0015012389048933983, -0.02293838933110237, -0.023755472153425217, -0.05258166417479515, -0.0018369336612522602, 0.007137455977499485, -0.030015766620635986, -0.052629727870225906, 0.008531302213668823, -0.035855501890182495, 0.02153252810239792, 0.006993264891207218, 0.011144764721393585, -0.04412245377898216, 0.03549502417445183, -0.013878386467695236, 0.007419830188155174, 0.09343578666448593, -0.05657094717025757, -0.005512302741408348, -0.04503566399216652, 0.005914836190640926, 0.028573855757713318, -0.0419115275144577, -0.05411969870328903, -0.03873932361602783, 0.029126588255167007, -0.0035537080839276314, -0.040565744042396545, -0.01268881093710661, 0.003157182829454541, 0.004644152708351612, 0.0022364628966897726, -0.007065360434353352, 0.010928478091955185, 0.0003294990456197411, -0.016053268685936928, 0.027420327067375183, 0.00978095829486847, 0.04844818636775017, 0.01667809672653675, 0.04051768034696579, -0.020787540823221207, -0.07123036682605743, -0.05503290891647339, -0.008032642304897308, 0.05878187716007233, -0.022686054930090904, 0.011318995617330074, 0.02317870780825615, 0.02645905502140522, -0.007377774454653263, 0.023743456229567528, 0.03448568657040596, 0.031049136072397232, 0.022974437102675438, 0.026531148701906204, 0.017002524808049202, -0.027516454458236694, 0.012172126211225986, 0.01834830828011036, 0.015524568036198616, 0.024896984919905663, -0.016377698630094528, -0.01878088153898716, 0.01158334594219923, 5.599606083706021e-05, 0.011186820454895496, -0.006897137500345707, -0.021111970767378807, 0.017326954752206802, -0.04426664486527443, -0.009853053838014603, 0.000903446925804019, 0.027180008590221405, 0.0416952408850193, -0.04054171219468117, -0.015356345102190971, -0.023791519924998283, -4.0671071474207565e-05, -0.04316118359565735, 0.0015335317002609372, 0.030544467270374298, -0.002161363372579217, -0.020006505772471428, 0.04417051747441292, -0.0069452011957764626, 0.04753497615456581, 0.0006469821673817933, -0.030832849442958832, -0.00028331283829174936, 0.006290333811193705, -0.03929205611348152, 0.019273534417152405, 0.025305526331067085, 0.016209475696086884, 0.04217587783932686, -0.014034593477845192, 0.032779429107904434, -0.01756727322936058, 0.020571254193782806, 0.006386461202055216, 0.033788762986660004, 0.03467794135212898, 0.04931333288550377, 0.0003781259583774954, 0.030808817595243454, 0.010952509939670563, -0.011523266322910786, -0.013806290924549103, -0.003869126085191965, -0.0373695082962513, -0.054840654134750366, 0.0009515106212347746, -0.018600642681121826, 0.021556559950113297, -0.05777253955602646, -0.04844818636775017, 0.04402632638812065, -0.1000685766339302, -0.048135772347450256, 0.016497857868671417, 0.031217359006404877, 0.009865069761872292, -0.04393019899725914, -0.0331399068236351, 0.016293587163090706, -0.018720801919698715, -0.06104087084531784, -0.02392369508743286, 0.03131348639726639, -0.026531148701906204, 0.04097428545355797, 0.05666707456111908, -0.0318421870470047, -0.0324910469353199, -0.032659269869327545, -0.0009079528972506523, 0.026507118716835976, 0.009576687589287758, -0.00895786751061678, -0.005497282836586237, -0.030280116945505142, -0.01256865169852972, 0.005695545580238104, -0.01854056306183338, 0.010273611173033714, -0.0320584736764431, 0.04580468311905861, 0.014959819614887238, 0.025329558178782463, 0.0465737022459507, 0.02041504718363285, -0.005740605294704437, 0.04974590614438057, 0.006578715983778238, 0.01659398525953293, 0.0018459456041455269, -0.022601943463087082, -0.02756451815366745, 0.03580743819475174, -0.02295040525496006, -0.020366983488202095, -0.0018534555565565825, 0.0075820451602339745, -0.004698224365711212, 0.01810798980295658, 0.00401031319051981, -0.04054171219468117, -0.010309658944606781, -0.02285427786409855, 0.0032833500299602747, -0.04926526919007301, -0.051764581352472305, 0.05080330744385719, 0.04075799882411957, 0.09386835992336273, -0.012484540231525898, -0.08113148808479309, -0.03369263932108879, -0.05113975331187248, -0.015969157218933105, -0.001206848886795342, -0.011090693064033985, 0.02274613454937935, -0.005968907848000526, -0.0005114275845699012, -0.023803535848855972, 0.06070442497730255, 0.0019315590616315603, 0.050995562225580215, 0.032755397260189056, -0.028814174234867096, 0.031025104224681854, 0.03338022530078888, -0.023250803351402283, 0.02537762187421322, 0.015224169939756393, -0.027924995869398117, -0.03547099232673645, -0.03436552733182907, -0.03929205611348152, 0.011451170779764652, -0.01644979417324066, -0.02525746263563633, -0.03720128536224365, 0.016858335584402084, 0.009798982180655003, -0.014575310051441193, -0.010369738563895226, 0.01967005990445614, -0.01922547072172165, 0.009991236962378025, 0.0035567120648920536, 0.005749617237597704, -0.009829021990299225, 0.0041394843719899654, -0.07296065986156464, -0.03811449557542801, -0.030015766620635986, -0.033308129757642746, -0.01932159811258316, -0.03489422798156738, -0.012616715393960476, 0.02097979560494423, -0.00639246916398406, -0.004412846174091101, 0.04510775953531265, -0.034221336245536804, -0.009450520388782024, 0.05008235201239586, 0.030448339879512787, -0.014250880107283592, 0.014779580757021904, -0.01669011265039444, -0.01779557578265667, 0.029246747493743896, -0.0075820451602339745, -0.03667258471250534, 0.008122761733829975, 0.018816929310560226, -0.026555180549621582, 0.00757603719830513, -0.049890097230672836, -0.00639246916398406, 0.03587953373789787, 0.007870427332818508, -0.03763385862112045, 0.03513454645872116, 0.013025256805121899, -0.02965528890490532, 0.01634165085852146, 0.0008553832303732634, -0.01174556091427803, -0.006578715983778238, 0.03328409790992737, -0.007125440053641796, 0.03424536809325218, 0.003721931017935276, -0.009005931206047535, -0.023443058133125305, 0.024127965793013573, 0.013049288652837276, -0.03962850198149681, 0.017206795513629913, 0.005187873262912035, -0.0018444436136633158, -0.051860708743333817, -0.031241390854120255, 0.016401730477809906, 0.010772272013127804, 0.009810998104512691, 0.0005929105100221932, 0.008591381832957268, -0.009330361150205135, 0.003679875284433365, -0.012316317297518253, -0.01086839847266674, -0.006782986223697662, -0.023250803351402283, -0.025666004046797752, -0.002376148011535406, 0.014803612604737282, -0.01953788474202156, 0.002281522611156106, 0.05527322739362717, 0.007419830188155174, 0.00966079905629158, -0.053302615880966187, 0.03369263932108879, -0.02428417280316353, -0.017519209533929825, -0.008429167792201042, 0.021364305168390274, -0.040133170783519745, -0.010826343670487404, -0.0017888699658215046, -0.004632136784493923, 0.007642124779522419, -0.0014486692380160093, 0.006674842908978462, 0.020451094955205917, 0.010459857992827892, -0.020030537620186806, -0.024440379813313484, -0.007443862035870552, -0.02556987665593624, -0.01060404907912016, -0.01659398525953293, 0.00087791308760643, -0.004460909869521856, 0.006296341773122549, -0.018973136320710182, -0.005347084254026413, -0.024067886173725128, 0.03018398955464363, -0.004235611297190189, -0.03515857830643654, 0.02600244991481304, -0.011625401675701141, -0.009156130254268646, -0.014407087117433548, -0.006572708021849394, -0.03539889678359032, -0.05652288347482681, 0.053302615880966187, -0.006909153424203396, 0.017759528011083603, 0.019525868818163872, 0.03386085852980614, 0.008759604766964912, -0.03857110068202019, 0.013169447891414165, -0.04604500159621239, -0.0019450769759714603, -0.007107416167855263, 0.010513929650187492, 0.03064059466123581, 0.05094749853014946, 0.022361624985933304, 0.028573855757713318, 0.04037348926067352, 0.0010078352643176913, 0.01115077268332243, -0.00046636787010356784, -0.004983602557331324, 0.009096050634980202, 0.010357722640037537, 0.006831049919128418, -0.009342377074062824, -0.012977193109691143, -0.02590632252395153, 0.015272233635187149, -0.05733996629714966, -0.010183491744101048, -0.017266875132918358, 0.06637594103813171, -0.025449717417359352, 0.012274261564016342, 0.0019075272139161825, -0.011162788607180119, 0.010952509939670563, 0.004508973564952612, -0.030808817595243454, -0.014671437442302704, 0.0035386881791055202, -0.03722531720995903, 0.007347734645009041, 0.006152150686830282, 0.015212154015898705, -0.002586426679044962, -0.048135772347450256, -0.03241895139217377, 0.036071788519620895, -0.0020697421859949827, -0.006470572669059038, 0.012989209033548832, -0.008056674152612686, -0.00811675377190113, -0.004196560010313988, -0.009798982180655003, 0.02633889578282833, 0.015356345102190971, 0.009480560198426247, 0.00020258089352864772, 0.010862390510737896, 0.02612260915338993, -0.001662702765315771, -0.002283024601638317, 0.00791248306632042, -0.043185215443372726, -0.0052209170535206795, 0.0012398926774039865, -0.023791519924998283, -0.03645629808306694, -0.021592607721686363, 0.01169148925691843, 0.016978492960333824, -0.01997045800089836, 0.00036723652738146484, 0.010099380277097225, -0.009967205114662647, -0.029463034123182297, -0.0019751167856156826, -0.014455150812864304, 0.003520664293318987, -0.00802062638103962, 0.019465789198875427, -0.017278891056776047, -0.019718123599886894, -0.04359375312924385, 0.02142438478767872, -0.042199909687042236, 0.008993915282189846, 0.014995867386460304, -0.003103111172094941, -0.00741382222622633, -0.0020412043668329716, -0.031145263463258743, 0.013109368272125721, 0.01854056306183338, -0.006152150686830282, 0.01404660940170288, 0.0066087557934224606, 0.0059298560954630375, -0.008555334061384201, -0.047174498438835144, -0.006158158648759127, 0.019814250990748405, -0.011775600723922253, 0.01670212857425213, -0.01536836102604866, 0.023334914818406105, -0.013349685817956924, 0.02150849625468254, 0.0014937289524823427, -0.05272585526108742, 0.04904898256063461, -0.0314096137881279, -0.036840807646512985, -0.04666982963681221, 0.008633437566459179, 0.01932159811258316, 0.007497933693230152, 0.021051891148090363, -0.037513699382543564, -0.014587325975298882, 0.03215460106730461, 0.022361624985933304, 0.02657921239733696, -0.0066387951374053955, -0.008885771967470646, 0.0013427790254354477, -0.0025533828884363174, 0.004548025317490101, 0.0006758954841643572, -0.05041879788041115, 0.004220591392368078, 0.0004806367796845734, -0.01899716816842556, -0.036840807646512985, -0.005326056387275457, 0.03537486493587494, 0.007984578609466553, 0.001969108823686838, 0.012508572079241276, -0.007119432091712952, -0.027420327067375183, 0.007984578609466553, -0.033428288996219635, -0.006909153424203396, 0.012051966972649097, -0.004487945698201656, 0.05335067957639694, 0.004542017355561256, 0.007293662987649441, -0.002295040525496006, 0.007810347713530064, -0.011553306132555008, -0.023238787427544594, 0.02250581607222557, -0.03638420253992081, 0.007239591330289841, -0.02667533978819847, -0.004605100955814123, -0.01005131658166647, 0.007984578609466553, -0.05493678152561188, 0.000122881552670151, 0.015957141295075417, -0.04731868952512741, -0.015524568036198616, -0.01213607843965292, 0.019525868818163872, 0.049024950712919235, 0.009756926447153091, -0.04373794421553612, -0.012424460612237453, 0.020366983488202095, -0.005644477903842926, -0.0033434294164180756, -0.002491801278665662, 0.04866447299718857, 0.04075799882411957, -0.002216937020421028, -0.007780307903885841, -0.047727230936288834, 0.011282947845757008, 0.030496403574943542, -0.03436552733182907, 0.020679397508502007, -0.00461411289870739, 0.01998247392475605, -0.02186897210776806, 0.020066585391759872, -0.03811449557542801, -0.0030310156289488077, 0.024728761985898018, 0.007696196436882019, -0.04885672777891159, 0.022890325635671616, -0.014563294127583504, 0.03196234628558159, 0.011114724911749363, 0.008549326099455357, 0.05421582609415054, 0.001611635205335915, 0.0380183681845665, 0.021148018538951874, 0.05205296352505684, 0.057580284774303436, -0.02787693217396736, -0.04030139371752739, 0.012712842784821987, 0.013061304576694965, 0.013517908751964569, -0.010862390510737896, -0.0045690531842410564, -0.02516133524477482, 0.042320068925619125, -0.00639246916398406, -0.0020667382050305605, -0.019585948437452316, 0.016293587163090706, 0.0410463809967041, 0.0004934036987833679, 0.03482213243842125, 0.027516454458236694, -0.002084762090817094, -0.0014336493331938982, 0.0023115624208003283, 0.012009911239147186, 0.0008756601018831134, -0.0005226925131864846, -0.01967005990445614, -0.013602020218968391, 0.018756849691271782, -0.004247627221047878, -0.02612260915338993, 0.019081279635429382, 0.04554033279418945, -0.014743532985448837, 0.02283024601638317, -0.03636017069220543, -0.03258717432618141, 0.003679875284433365, -0.002521841088309884, 0.036191947758197784, 0.013049288652837276, -0.016077300533652306, -0.023455074056982994, 0.022217433899641037, 0.06267503648996353, 0.008759604766964912, 0.025281494483351707, 0.006146142724901438, -0.0014809620333835483, 0.03282749280333519, 0.031217359006404877, -0.012977193109691143, -0.006004955619573593, -0.00017657768330536783, 0.029030460864305496, 0.009294313378632069, 0.026651307940483093, -0.005548350512981415, 0.019489821046590805, 0.02339499443769455, 0.015392392873764038, 0.01876886561512947, -0.01987433061003685, 0.004373794421553612, -0.05570580065250397, 0.0007885447121225297, -0.007425838150084019, -0.006722906604409218, -0.0011129744816571474, 0.024728761985898018, -0.002005156595259905, 0.031673964112997055, 0.024188045412302017, 0.013674115762114525, 0.024896984919905663, -0.02600244991481304, 0.04174330458045006, 0.011505242437124252, -0.041671209037303925, -0.00019713617803063244, -0.003574735950678587, -0.031217359006404877, -0.0013991035521030426, 0.015392392873764038, -0.01678624004125595, -0.01235236506909132, 0.012448492459952831, 0.014094673097133636, 0.003971261437982321, 0.058926068246364594, 0.04515582323074341, -0.007828371599316597, -0.04532404616475105, 0.04054171219468117, 0.026843562722206116, 0.008411143906414509, 0.013169447891414165, 0.04282473772764206, -0.025089239701628685, -0.011877736076712608, 0.010964525863528252, -0.005395147949457169, 0.032659269869327545, -0.007750268094241619, 0.003235286334529519, 0.012652763165533543, 0.006662826985120773, -0.012532603926956654, -0.001120484434068203, 0.0062482780776917934, 0.0009515106212347746, -0.013686131685972214, 0.004307706840336323, 0.0016446789959445596, 0.027516454458236694, 0.002084762090817094, 0.022313561290502548, 0.00949858408421278, 0.038931578397750854, -0.03746563568711281, 0.022914357483386993, 0.02987157553434372, 0.013325653970241547, -0.0025804187171161175, 0.026266800239682198, -0.00609507504850626, -0.0033314134925603867, 0.01757928915321827, -0.011252908036112785, 0.0007393545238301158, -0.001993140671402216, 0.008933835662901402, 0.0005985429743304849, -0.01954990066587925, 0.012640747241675854, 0.005470247007906437, -0.02131624147295952, 0.01328960619866848, -0.011325003579258919, 0.012544619850814342, 0.00730567891150713, 0.022445736452937126, 0.02845369651913643, -0.005536334589123726, 0.02381555177271366, -0.004367786459624767, -0.006410493049770594, 0.044651154428720474, -0.011024605482816696, 0.011769592761993408, 0.006849073804914951, 0.011619393713772297, 0.014803612604737282, 0.03789820894598961, -0.001166295143775642, 0.029583193361759186, -0.014515230432152748, 0.027973059564828873, -0.000752496940549463, -0.02161663956940174, -0.0036978991702198982, 0.02197711542248726, 0.046381447464227676, -0.003893157932907343, -0.006326381582766771, -0.013674115762114525, -0.011883744038641453, 0.024452395737171173, 0.013457829132676125, 0.02866998314857483, -0.02501714415848255, -0.005965903867036104, 0.02141236886382103, -0.017747512087225914, -0.022794198244810104, 0.028525792062282562, 0.005662501789629459, -0.034750036895275116, 0.01712268404662609, -0.023443058133125305, -0.026314863935112953, 0.008843716233968735, -0.01911732740700245, 0.003842090256512165, 0.031097199767827988, 0.0533987432718277, -0.014587325975298882, -0.010501913726329803, 0.014779580757021904, 0.004406838212162256, 0.009853053838014603, 0.026987753808498383, 0.02063133381307125, -0.015656743198633194, 0.029679320752620697, 0.01879289746284485, 0.012388412840664387, -0.0333561934530735, -0.005479258950799704, -0.03631210699677467, -0.019081279635429382, 0.022914357483386993, -0.02821337804198265, -0.001088191638700664, -0.03732144460082054, 0.01910531148314476, -0.008056674152612686, 0.014347007498145103, 0.009306329302489758, 0.022710086777806282, 0.0008200865122489631, -0.013169447891414165, -0.022145338356494904, 0.05411969870328903, -0.042872801423072815, 0.05085137113928795, 0.021880988031625748, 0.001767842099070549, -0.001794877927750349, 0.00084411830175668, 0.011264923959970474, 0.01471950113773346, 0.021436400711536407, -0.01515207439661026, 0.015500536188483238, -0.014635389670729637, 0.02547374926507473, -0.016329634934663773, -0.0577244758605957, -0.01636568270623684, 0.022361624985933304, -0.020895684137940407, -0.016425762325525284, -0.02799709141254425, -0.001542543643154204, -0.0011422632960602641, -0.011577337980270386, -0.02931884303689003, -0.024308204650878906, -0.038258686661720276, -0.011180812492966652, 0.009564671665430069, 0.006722906604409218, -0.005091745872050524, -0.01964602805674076, -0.018264196813106537, 0.0031842186581343412, 0.0004930282011628151, 0.009480560198426247, 0.0403975211083889, 0.014347007498145103, 0.018696770071983337, 0.00022173125762492418, -0.001954088918864727, -0.0022244469728320837, 0.00013067312829662114, 0.029294811189174652, -0.005268980748951435, -0.012953161261975765, -0.014359023422002792, 0.010285627096891403, -0.01010538823902607, 0.06450145691633224, 0.010730216279625893, 0.015836982056498528, -0.01256865169852972, 0.007852403447031975, -0.030928976833820343, -0.007461885921657085, -0.011144764721393585, -0.019573932513594627, -0.0015725834527984262, 0.011355043388903141, 0.008693517185747623, -0.02602648176252842, 0.005926852114498615, -0.051235880702733994, 0.032346855849027634, 0.006903145462274551, 0.01279695425182581, 0.011276939883828163, 0.011847696267068386, -0.012833002023398876, 0.0024707734119147062, -0.008044658228754997, 0.0013097352348268032, -0.027155976742506027, -0.021712765097618103, 0.005731593351811171, 0.03217863291501999, 0.02710791304707527, -0.0448434092104435, -0.016293587163090706, -0.022914357483386993, -0.013169447891414165, -0.005512302741408348, 0.0057165734469890594, -0.012021927163004875, 0.036528393626213074, -0.007419830188155174, -0.007497933693230152, 0.005398151930421591, 0.03818659111857414, 0.04229603707790375, -0.0006905398331582546, -0.012364380992949009, -0.02513730339705944, -0.028477728366851807, -0.0022634987253695726, 0.054071635007858276, 0.02250581607222557, 0.00802062638103962, -0.010357722640037537, 0.027949027717113495, -0.013421781361103058, 0.010862390510737896, -0.035206642001867294, -0.024848921224474907, 0.025065207853913307, -0.019129343330860138, 0.00916213821619749, 0.04063783958554268, -0.02186897210776806, 0.0012646755203604698, 0.001491475966759026, 0.005944876000285149, -0.009138106368482113, 0.011090693064033985, -0.03568727895617485, 0.013806290924549103, -0.004725260194391012, 0.025521812960505486, 0.013037272728979588, -0.0001841815101215616, -0.007275639101862907, 0.013553956523537636, -0.005575386341661215, -0.013109368272125721, 0.029294811189174652, 0.015548599883913994, 0.014755548909306526, -0.029583193361759186, 0.016846319660544395, 0.03239491954445839, -0.03186621889472008, -0.010970533825457096, 0.011391091160476208, 0.009252257645130157, 0.024680698290467262, -0.02052319049835205, -0.01821613311767578, -0.014010561630129814, 0.007594061084091663, -0.013565972447395325, 0.028189346194267273, 0.026266800239682198, 4.771164822159335e-05, 0.009528623893857002, 0.011180812492966652, 0.019369661808013916, 0.007804339751601219, 0.02470473013818264, -0.005142813548445702, 0.008272960782051086, 0.019081279635429382, -0.018168069422245026, -0.0036888872273266315, -0.009372416883707047, 0.018732817843556404, -0.02578616328537464, 0.009306329302489758, 0.015140058472752571, 0.0036498354747891426, 0.02766064554452896, -0.01933361403644085, 0.035951629281044006, -0.050562988966703415, 0.01267679501324892, -0.02394772693514824, -0.035422928631305695, -0.022361624985933304, -0.011036621406674385, 0.010303650982677937, 0.020991811528801918, -0.018204117193818092, -0.025738099589943886, 0.000742358504794538, 0.01733897067606449, -0.028790142387151718, 0.005719577427953482, -0.038378845900297165, 0.028477728366851807, 0.01559666357934475, -0.00944451242685318, -0.03328409790992737, 0.002281522611156106, 0.04325731098651886, 0.020030537620186806, 0.009342377074062824, 0.022589927539229393, 0.007167495787143707, -0.0035296762362122536, -0.018156053498387337, 0.010904446244239807, -0.010886422358453274, -0.022265497595071793, -0.007552005350589752, 0.016317619010806084, -0.013313638046383858, 0.031794123351573944, -0.023310882970690727, -0.0705094113945961, -0.0077562760561704636, 0.015296265482902527, 0.003262322163209319, -0.0029108563903719187, -0.024079902097582817, -0.008627429604530334, 0.026386959478259087, -0.02535359002649784, -0.01644979417324066, -0.00791248306632042, 0.01821613311767578, -0.0016777226701378822, -0.022674039006233215, 0.01647382602095604, 0.014419103041291237, 0.0049295308999717236, 0.04587677866220474, 0.014395071193575859, -0.0038721300661563873, 0.02108793891966343, -0.002099781995639205, -0.008056674152612686, 0.006963225081562996, -0.028958365321159363, 0.020883668214082718, 0.0017963799182325602, -0.01997045800089836, -0.007065360434353352, 0.023443058133125305, 0.0010018273023888469, 0.03438955917954445, 0.010525945574045181, -0.03955640643835068, -0.0014471672475337982, 0.015464488416910172, 0.04703030735254288, -0.01570480689406395, -0.013469845056533813, -0.015620695427060127, 0.005416175816208124, -0.005070718005299568, 0.013878386467695236, 0.00348461652174592, -0.03873932361602783, -0.009492576122283936, -0.005605426151305437, 0.006764962337911129, -0.013361701741814613, -0.02063133381307125, -0.02778080478310585, 0.020487142726778984, -0.016954461112618446, 0.0055843982845544815, -0.009408464655280113, 0.024752793833613396, 0.009750918485224247, -0.013049288652837276, -0.023671360686421394, 0.011391091160476208, 0.015079978853464127, -0.005256964825093746, -0.0028808165807276964, 0.00304753752425313, -0.023635312914848328, -0.014443134889006615, -0.03193831443786621, -0.002347610192373395, -0.003926201723515987, -0.02413998171687126, -0.013133400119841099, -0.0007044332451187074, -0.009708862751722336, -0.021652687340974808, -0.005953887943178415, 0.030880913138389587, -0.031025104224681854, -0.02043907903134823, -0.003439556807279587, 0.02898239716887474, 0.020066585391759872, -0.03052043542265892, -0.04378600791096687, -0.005578390322625637, -0.01482764445245266, -0.017615336924791336, 0.02689162641763687, -0.021015843376517296, 0.02537762187421322, -0.04340149834752083, -0.013349685817956924, -0.008687509223818779, 0.022241465747356415, -0.004914510995149612, 0.011439154855906963, -0.0035837478935718536, 0.009798982180655003, -0.011739552952349186, -0.039027705788612366, -0.018300244584679604, 0.019285550341010094, 0.03261120617389679, -0.023202739655971527, -0.017531225457787514, -0.008206873200833797, -0.01756727322936058, 0.031241390854120255, 0.012316317297518253, 0.023106612265110016, 0.02359926514327526, 0.009426488541066647, -0.0017077624797821045, 0.010363730601966381, -0.018144037574529648, 0.008813676424324512, 5.740417691413313e-05, -0.024993112310767174, -0.046405479311943054, -0.04181540012359619, 0.004815379623323679, 0.03686483949422836, 0.02734823152422905, -0.04417051747441292, -0.01911732740700245, 0.021448416635394096, 0.010850374586880207, 0.0029919638764113188, -0.0072636231780052185, 0.03655242547392845, -0.0012346357107162476, -0.018168069422245026, 0.005926852114498615, -0.004070392809808254, 0.00297994795255363, 0.025089239701628685, -0.02383958362042904, -0.012628731317818165, 0.008471222594380379, 0.0309770405292511, -0.028261441737413406, -0.021232130005955696, -0.026603244245052338, 0.002452749526128173, -0.008921819739043713, 0.03938818350434303, -0.025449717417359352, -0.011090693064033985, -0.03282749280333519, -0.026651307940483093, -0.033981017768383026, -0.00972688663750887, 0.014262896031141281, 0.04921720549464226, -0.030544467270374298, 0.02590632252395153, -0.01570480689406395, -0.028261441737413406, -0.023322898894548416, 0.007600069046020508, -0.034557782113552094, 0.023238787427544594, -0.016654064878821373, -0.016281571239233017, 0.024752793833613396, -0.013590004295110703, -0.015067962929606438, -0.017158731818199158, 0.01449119858443737, -0.0013675617519766092, -0.022133322432637215, -0.0016687107272446156, -0.02778080478310585, -0.015728838741779327, 0.0006931683165021241, -0.02142438478767872, -0.002795203123241663, -0.021796876564621925, 0.03371667116880417, 0.024752793833613396, 0.00023074320051819086, -0.017747512087225914, -0.004415850155055523, 0.018961120396852493, 0.00862142164260149, 0.00461411289870739, 0.04270457848906517, 0.019910378381609917, 0.0022079250775277615, -0.01208200678229332, -0.013602020218968391, -8.045033609960228e-05, -0.008134777657687664, 0.018624674528837204, 0.029150620102882385, 0.005593410227447748, 0.013409765437245369, -0.01998247392475605, -0.01559666357934475, 0.005965903867036104, 0.007972562685608864, -0.020174728706479073, 0.016714144498109818, -0.014971835538744926, -0.01954990066587925, 0.00604100339114666, 0.0019315590616315603, -0.0010446340311318636, 0.018864993005990982, 0.0031511748675256968, -0.001610133214853704, -0.014262896031141281, -0.022926373407244682, 0.034437622874975204, 0.021796876564621925, 0.024224093183875084, -0.029583193361759186, -0.020559238269925117, 0.01670212857425213, -0.005785665009170771, 0.0031331509817391634, 0.013169447891414165, -0.004418854136019945, 0.026435023173689842, -0.03676871210336685, -0.012051966972649097, -0.039027705788612366, -0.04378600791096687, 0.036960966885089874, -0.0011685481294989586, -0.012592683546245098, 0.03186621889472008, -0.02578616328537464, -0.010910454206168652, -0.0006969232927076519, 0.006686858832836151, -0.018744833767414093, 0.013698147609829903, -0.016161412000656128, 0.0024197057355195284, 0.03390892222523689, -0.0010348710929974914, -0.0071314480155706406, -0.007353742606937885, 0.005311036482453346, 0.03513454645872116, 0.019718123599886894, -0.03645629808306694, 0.0011024605482816696, 0.04666982963681221, -0.006101083010435104, 0.020691413432359695, 0.024019822478294373, 0.012021927163004875, -0.006065035238862038, -0.015560615807771683, -0.029511097818613052, 0.04602096974849701, -0.02371942438185215, 0.027372263371944427, -0.0017588301561772823, -0.01268881093710661, 0.017543241381645203, 0.034317463636398315, -0.013469845056533813, 0.014743532985448837, -0.010315666906535625, 0.0012601695489138365, -0.013145416043698788, -0.008266952820122242, -0.003947229590266943, 0.009222217835485935, -0.026963721960783005, 0.022794198244810104, -0.0005700051551684737, 0.02097979560494423, 0.004187548067420721, 0.02614664100110531, 0.041887495666742325, 0.010970533825457096, -0.026194704696536064, 0.022902341559529305, -0.03821062296628952, 0.015885045751929283, -0.018144037574529648, -0.008405135944485664, 0.01279695425182581, 0.024548523128032684], [0.06357760727405548, 0.007344543002545834, 0.04951934143900871, 0.032712504267692566, 0.0023162909783422947, 0.01136601809412241, -0.02991887554526329, -0.015961989760398865, 0.0096312640234828, 0.0027175936847925186, -0.009405971504747868, -0.01886826567351818, 0.03338838368654251, 0.03027934394776821, 0.029738640412688255, 0.026133956387639046, 0.022878477349877357, 0.02771100588142872, -0.007733173202723265, -0.00037630926817655563, 0.007276955526322126, 0.0008948345785029233, -0.014722879976034164, -0.046500422060489655, 0.024917377158999443, -0.015184730291366577, 0.01837262324988842, -0.003162546781823039, 0.06375784426927567, -0.05141180381178856, 0.01204189658164978, -0.044517844915390015, -0.01118578389286995, -0.04794229567050934, 0.03861517459154129, 0.033951614052057266, -0.002203644486144185, -0.03455990552902222, 0.009963571093976498, -0.00487477146089077, -0.01662660390138626, -0.02320515178143978, -0.001447505783289671, -0.0682637020945549, -0.051096390932798386, 0.036677658557891846, -0.0007490983698517084, -0.01315709576010704, -0.0030949588399380445, 0.043391380459070206, 0.04075545445084572, 0.03066234104335308, 0.022765830159187317, 0.00713614746928215, 0.029265526682138443, -0.008831474930047989, 0.006820737384259701, 0.00393980648368597, 0.010031159035861492, 0.010098746977746487, -0.019285058602690697, 0.008882165886461735, 0.006753149908035994, 0.004424185957759619, 0.016232341527938843, 0.013664004392921925, -0.027373068034648895, 0.03926852345466614, -0.01935264654457569, -0.0006406762404367328, -0.00018885867029894143, -0.03030187264084816, 0.02804894559085369, -0.025773489847779274, 0.005730884149670601, 0.013382388278841972, 0.026111427694559097, -0.047987353056669235, -0.018924590200185776, 0.059297047555446625, -0.08250220119953156, 0.021819600835442543, -0.028612177819013596, 0.020907165482640266, 0.0005530232447199523, 0.02397114783525467, -0.043774377554655075, -0.02159430831670761, -0.040282342582941055, -0.014047002419829369, -0.07709517329931259, -0.03314056247472763, 0.000929332512896508, 0.03534843027591705, -0.0012024999596178532, 0.03291526809334755, -0.023036181926727295, -0.000746282166801393, -0.013585152104496956, 0.026404308155179024, 0.0013123301323503256, 0.006595444865524769, 0.01080278679728508, 0.05934210494160652, 0.02435414493083954, 0.018158594146370888, -0.022946065291762352, 0.010673243552446365, -0.044517844915390015, 0.028995174914598465, -0.00552248815074563, 0.0038722187746316195, 0.030256815254688263, 0.04494589939713478, -0.03688042238354683, -0.02446679025888443, 0.004697353579103947, -0.020321404561400414, 0.004162283148616552, -0.019656790420413017, -0.010222657583653927, 0.002558480715379119, 0.03998946025967598, -0.06794828921556473, 0.00036715675378218293, 0.008499168790876865, 0.00593083119019866, -0.010554964654147625, -0.009456662461161613, 0.000319106038659811, 0.0335460901260376, -0.036835361272096634, 0.05316908657550812, 0.012807891704142094, -0.02198857069015503, 0.058440934866666794, -0.01651395671069622, 0.0015826814342290163, -0.012379835359752178, 0.03027934394776821, 0.09119849652051926, -0.01786571368575096, 0.02892758697271347, 0.03368126228451729, -0.005598524585366249, -0.0035314636770635843, 0.03674524649977684, -0.0022571515291929245, -0.00375675642862916, 0.008848371915519238, -0.026111427694559097, -0.010673243552446365, 0.007806393317878246, 0.009124355390667915, 0.012447423301637173, -0.001685471273958683, 0.0023740222677588463, 0.04816758632659912, -0.008442845195531845, 0.028409413993358612, -0.028116533532738686, -0.0009096194407902658, -0.015105878002941608, -0.01827124133706093, -0.05316908657550812, -0.004044004715979099, -0.02248421497642994, -0.030977750197052956, -0.03169868886470795, 0.00393980648368597, -0.02148166298866272, -0.01951035112142563, -0.03129316121339798, -0.05596271529793739, -0.0471762977540493, -0.024759670719504356, 0.05920692905783653, 0.008262610994279385, -0.05600777268409729, 0.02009611204266548, 0.012571334838867188, 0.020287610590457916, -0.040417518466711044, -0.046139951795339584, -0.00047487483243457973, 0.012706510722637177, -0.009642529301345348, 0.0010546515695750713, -0.031833864748477936, -0.030121639370918274, 0.040169693529605865, 0.002897827886044979, -0.038795407861471176, 0.02273203618824482, -0.05533189699053764, -0.03519072383642197, -0.017978360876441002, 0.006623606197535992, 0.0384799987077713, -0.019071029499173164, 0.03737606480717659, -0.04084557294845581, 0.04312102869153023, 0.02435414493083954, -0.05659353360533714, 0.017561567947268486, 0.04397714138031006, -0.002330371644347906, 0.04744664952158928, -0.05785517394542694, 0.038930583745241165, -0.001675614737905562, -0.03440219908952713, 0.025120139122009277, -0.02433161623775959, -0.02457943744957447, 0.035844072699546814, -0.03685789182782173, 0.012233395129442215, -0.04386449605226517, -0.046770770102739334, -0.008302037604153156, -0.006758782081305981, 0.027485713362693787, -0.04920393228530884, -0.02633672021329403, -0.036294661462306976, -0.008617446757853031, 0.039155878126621246, -0.023881029337644577, -0.036317188292741776, 0.011174519546329975, -0.01876688562333584, -0.035821545869112015, -0.0099241454154253, 0.010053688660264015, -0.028477001935243607, -0.010526803322136402, 0.004027107730507851, 0.010295878164470196, -0.004291826393455267, 0.0707869753241539, -0.02036646381020546, 0.018068477511405945, 0.043391380459070206, -0.0022824970073997974, 0.014339882880449295, -0.01613095961511135, 0.040282342582941055, -0.036948010325431824, -0.000619555008597672, -0.03832229599356651, 0.029242996126413345, -0.010211393237113953, 0.01676177978515625, 0.00440447311848402, 0.009619999676942825, -0.031473394483327866, 0.04771700128912926, -0.011456135660409927, -0.03388402611017227, -0.015241053886711597, 0.037691473960876465, -0.04332379251718521, -0.049834754317998886, -0.04023728147149086, 0.04050763323903084, -0.024917377158999443, -0.02944575995206833, -0.016694191843271255, -0.04731147363781929, 0.05028533935546875, -0.001843176200054586, -0.03958393260836601, 0.01173775177448988, 0.0062518734484910965, 0.01951035112142563, -0.04478819668292999, 0.0027077370323240757, 0.03467255085706711, -0.033726323395967484, 0.04285067692399025, 0.03043704852461815, -0.04767194390296936, -0.03455990552902222, 0.010588758625090122, 0.004460796248167753, 0.013134566135704517, -0.002061428502202034, 0.004945175722241402, 0.02047910913825035, -0.021425338461995125, 0.0016530854627490044, 0.001650269259698689, 0.008685034699738026, -0.03811953216791153, -0.039313580840826035, 0.01987081952393055, -0.04681583121418953, -0.02469208464026451, 0.028972646221518517, 0.04510360583662987, 0.030504636466503143, -0.028837470337748528, -0.028589647263288498, 0.025548195466399193, -0.04048510268330574, 0.016221076250076294, 0.002690840046852827, -0.00422423891723156, 0.021166251972317696, 0.01687442511320114, 0.008347095921635628, -0.03811953216791153, 0.0003176979662384838, 0.018226182088255882, -0.028589647263288498, -0.031248101964592934, 0.026990069076418877, -0.03365873545408249, 0.08989179879426956, -0.008578021079301834, 0.020693138241767883, -0.05312402546405792, 0.04460796341300011, -0.01813606545329094, 0.03857011720538139, 0.04704112187027931, -0.033591147512197495, -0.022923536598682404, -0.07484224438667297, 0.02224765717983246, 0.010667610913515091, 0.008273875340819359, -0.05623306706547737, 0.011084402911365032, 0.03255480155348778, 0.017933301627635956, -0.03149592503905296, 0.001451730029657483, 0.0008877941872924566, -0.003945439122617245, 0.031721215695142746, -0.011906720697879791, -0.04481072351336479, 0.0186204444617033, 0.02656201273202896, 0.006229344289749861, -0.0347176119685173, 0.007637423928827047, 0.006629238836467266, 0.01359641645103693, -0.012965597212314606, -0.05447578430175781, -0.06650641560554504, -0.03773653134703636, -0.008409051224589348, -0.020174965262413025, -0.02469208464026451, 0.01566910929977894, 0.0608740970492363, -0.00020452355965971947, 0.010678875260055065, 0.04212974011898041, 0.10381489247083664, 0.020017258822917938, -0.036182012408971786, -0.019713114947080612, 0.013945620507001877, 0.01267271675169468, 0.06506454199552536, -0.02273203618824482, 0.07254426181316376, 0.016592809930443764, 0.0022374384570866823, 0.019701849669218063, 0.010053688660264015, -0.020298875868320465, 0.025796018540859222, -0.028859999030828476, -0.0053647831082344055, -0.01575922593474388, 0.022765830159187317, 0.004567810334265232, 0.04316608980298042, 0.03212674334645271, -0.0409356914460659, -0.0347176119685173, -0.020400257781147957, 0.024647025391459465, 0.03838988393545151, 0.011095667257905006, -0.018958384171128273, 0.006150491535663605, -0.03534843027591705, 0.034830257296562195, 0.021673161536455154, 0.029355643317103386, 0.012334777042269707, -0.06109939143061638, 0.030482107773423195, -0.009304589591920376, 0.011309695430099964, 0.013348594307899475, 0.04143133386969566, 0.026539484038949013, -0.015398758463561535, -0.030234284698963165, 0.05488131195306778, -0.015162200666964054, -0.0033174355048686266, 0.009270795620977879, 0.026539484038949013, 0.002838688436895609, -0.01563531532883644, 0.011647634208202362, -0.00586887588724494, 0.0026514139026403427, -0.0021740749944001436, 0.006736252922564745, 0.01292053796350956, -0.047987353056669235, -0.03018922731280327, -0.03753377124667168, -0.02870229445397854, 0.0043340688571333885, -0.05348449572920799, -0.024038735777139664, 0.005953360348939896, -0.06722734868526459, 0.008183758705854416, 0.028251709416508675, 0.01851906254887581, -0.011495562270283699, -0.017708009108901024, -0.05474613606929779, 0.004539648536592722, -0.0471762977540493, -0.039065759629011154, -0.013821708969771862, -0.0211211945861578, -0.009000444784760475, -0.0108647421002388, 0.02334032766520977, -0.021571779623627663, -0.004410105291754007, -0.060513630509376526, -0.01285295095294714, 0.006764414254575968, -0.017178570851683617, 0.004911381751298904, 0.030820045620203018, -0.021549250930547714, -0.0026176199316978455, -0.010312775149941444, 0.029580935835838318, 0.05316908657550812, -0.05871128663420677, 0.025525666773319244, -0.002604947192594409, 0.02829676680266857, -0.004787470679730177, 0.04359414428472519, 0.028612177819013596, 0.03325320780277252, 0.02036646381020546, 0.012154542841017246, 0.03586660325527191, 0.017561567947268486, -0.06556018441915512, 0.007930303923785686, 0.018597915768623352, -0.034604962915182114, -0.004063717555254698, 0.012255924753844738, -0.018586650490760803, 0.041679155081510544, 0.026269132271409035, -0.022506743669509888, -0.03165362775325775, -0.022641919553279877, 0.013844238594174385, -0.03784918040037155, -0.061640091240406036, 0.0484379380941391, 0.02123383991420269, 0.03550613671541214, -0.03127063065767288, -0.0521327406167984, -0.003624396864324808, -0.03388402611017227, -0.015804285183548927, -0.015567728318274021, -0.009022974409162998, -0.008538594469428062, 0.003356861649081111, -0.017415128648281097, 0.04059775173664093, 0.017437657341361046, -0.02135775052011013, 0.003903196658939123, -0.005376047920435667, 0.03278009220957756, 0.0198820848017931, 0.0012024999596178532, -0.002569745294749737, 0.05177227035164833, 0.021053606644272804, 0.0059477281756699085, -0.036565009504556656, 0.013720327988266945, -0.038908056914806366, -0.013731592334806919, -0.04172421619296074, -0.000398486532503739, -0.04478819668292999, 0.021143723279237747, 0.01876688562333584, -0.027485713362693787, -0.021830866113305092, 0.008442845195531845, 0.010723934508860111, 0.010785889811813831, -0.015173465944826603, -0.02608889900147915, -0.0060491100884974, -0.0020543881691992283, -0.0335686169564724, -0.021504191681742668, 0.010797154158353806, -0.016119694337248802, 0.01018323190510273, -0.061640091240406036, 0.02881494164466858, -0.0032780093606561422, -0.02593119442462921, 0.004762125201523304, 0.07804140448570251, 0.011557517573237419, -0.0359792485833168, 0.050735924392938614, 0.009856557473540306, -0.024804729968309402, -0.012695245444774628, 0.017336275428533554, -0.018778149038553238, -0.002999209566041827, -0.0004072870360687375, 0.012965597212314606, 0.0007005195948295295, 0.013235948048532009, 0.004046820569783449, -0.04668065533041954, -0.05533189699053764, 0.02507508173584938, 0.04285067692399025, -0.01329227164387703, -0.03751124069094658, -0.003534279763698578, -0.011625105515122414, 0.024804729968309402, 0.00443545076996088, 0.01713351160287857, -0.010763360187411308, 0.011512458324432373, 0.019927142187952995, 0.01421597134321928, -0.006522224750369787, -0.01484679151326418, 0.02221386320888996, -0.03192397952079773, 0.017088454216718674, -0.01458770502358675, -0.05871128663420677, 0.017674215137958527, 0.03712824359536171, -0.023137563839554787, 0.015488875098526478, -0.004559361841529608, 0.018913324922323227, 0.003661006921902299, 0.024647025391459465, -0.009524250403046608, -0.019645527005195618, -0.03838988393545151, -0.0011109748156741261, 0.007412130944430828, -0.04037245735526085, 0.003359677968546748, -0.027012599632143974, -0.015973255038261414, -0.0198482908308506, -0.012447423301637173, 0.006201182492077351, -0.014463793486356735, 0.046770770102739334, 0.0006885509355925024, 0.0347626693546772, -0.0372859463095665, -0.0039989459328353405, -0.0021332406904548407, -0.010132540948688984, -0.01813606545329094, 0.04681583121418953, -0.040304869413375854, -0.02149292640388012, 0.026111427694559097, -0.011703957803547382, -0.03987681493163109, 0.017415128648281097, 0.005646399222314358, -0.03541601821780205, -0.01688569039106369, -0.008561124093830585, -0.025638313964009285, 0.037804119288921356, -0.017110982909798622, 0.03399667516350746, -0.030211756005883217, -0.03300538659095764, -0.03735353425145149, 0.01973564364016056, -0.015038290061056614, -0.004117224831134081, -0.012909273616969585, 0.010042423382401466, -0.003162546781823039, -0.01502702571451664, 0.009834027849137783, -0.03253227099776268, -0.03305044397711754, -0.01042542140930891, -0.034830257296562195, -0.03239709511399269, -0.002558480715379119, 0.008504800498485565, 0.0179896242916584, -0.041408803313970566, 0.016615338623523712, -0.002005105372518301, -0.006910854484885931, 1.870105705847891e-07, 0.03688042238354683, -0.01465529203414917, -0.006403945852071047, 0.030707400292158127, 0.016119694337248802, -0.0048156320117414, -0.00011678260489134118, -0.01439620554447174, 0.00584071408957243, 0.038299765437841415, 0.021920982748270035, 0.0033737586345523596, -0.01080278679728508, 0.002285313094034791, -0.004427002277225256, -0.005471797194331884, 0.005297195632010698, 0.03266744688153267, 0.010853477753698826, -0.023565620183944702, -0.003016106551513076, -0.02161683887243271, -0.020895902067422867, -0.024399202316999435, 0.04744664952158928, -0.030459577217698097, -0.013258477672934532, -0.006263138260692358, -0.005992786958813667, -0.004632581956684589, -0.018789414316415787, -0.023137563839554787, 0.0031597306951880455, -0.01217707246541977, 0.023160092532634735, 0.0323295071721077, -0.021188782528042793, 0.030572224408388138, 0.01253754086792469, -0.01839515194296837, 0.0024711797013878822, 0.01329227164387703, -0.01624360680580139, -0.023678267374634743, 0.02170695550739765, -0.011219577863812447, -0.0008363992674276233, -0.0008258387097157538, 0.020659344270825386, 0.010149437934160233, -0.036812834441661835, 0.038795407861471176, 0.026967540383338928, 0.01690821908414364, 0.02969358302652836, -0.03154098242521286, -0.009518617764115334, 0.00611106539145112, -0.03699306771159172, -0.036565009504556656, 0.0008589285425841808, -0.032352037727832794, -0.032712504267692566, -0.014249765314161777, 0.004365046974271536, -0.009546780027449131, 0.020524168387055397, -0.0038862996734678745, 0.0013968149432912469, -0.005773126147687435, -0.03440219908952713, 0.0014742593048140407, -0.022878477349877357, -0.05253826454281807, 0.010887271724641323, 0.002979496493935585, -0.02285594865679741, -0.028274238109588623, -0.028972646221518517, 0.02633672021329403, -0.026156486943364143, -0.0017643236787989736, -0.009118723683059216, -0.012019367888569832, -0.030752457678318024, -0.0016530854627490044, -0.051456861197948456, 0.03138327971100807, 0.02345297299325466, -0.020535433664917946, 0.0061392271891236305, 0.0120982201769948, -0.050826042890548706, -0.016108430922031403, -0.03131569176912308, 0.02471461333334446, -0.009546780027449131, -0.00710798567160964, 0.007592365145683289, -0.0372634194791317, 0.0018417681567370892, -0.03586660325527191, -0.022889742627739906, -0.012683981098234653, -0.013427446596324444, 0.0167505145072937, -0.04740159213542938, 0.009062400087714195, -0.03489784523844719, 0.005992786958813667, -0.027778593823313713, 0.008206288330256939, 0.01975817233324051, 0.0014531381893903017, 0.024782201275229454, 0.023115035146474838, -0.021177517250180244, 0.01172648649662733, -0.0015010128263384104, 0.00863434374332428, 0.02171821892261505, 0.034942902624607086, 0.031225573271512985, 0.003421633504331112, -0.03661007061600685, 0.03428955376148224, 0.0005304939695633948, 0.011951779946684837, -0.04199456423521042, 0.00637015188112855, 0.005263401661068201, -0.008763886988162994, 0.003675087820738554, -0.0068657961674034595, 0.01148429699242115, -0.012830421328544617, -0.015083348378539085, -0.03516819700598717, -0.02121131122112274, -0.0335010290145874, 0.0028767066542059183, 0.04780711978673935, 0.019465291872620583, -0.03895311430096626, 0.015804285183548927, 0.03241962566971779, 0.023137563839554787, -0.012943067587912083, -0.011591311544179916, -0.036452364176511765, 0.0396965816617012, 0.01385550294071436, -0.011512458324432373, -0.041025806218385696, 0.029242996126413345, -0.04233250394463539, 0.016818102449178696, 0.012075690552592278, -0.058350820094347, 0.0017220813315361738, -0.019330115988850594, -0.0014686270151287317, 0.054205432534217834, -0.007778231520205736, -0.03611442446708679, -0.02991887554526329, 0.004162283148616552, 0.010859109461307526, -0.008989180438220501, -0.004238319583237171, 0.029107822105288506, 0.04296332597732544, -0.04672571271657944, 0.01639004610478878, -0.00994104240089655, 0.031833864748477936, -0.017156042158603668, -0.0057787587866187096, 0.004308723378926516, 0.02136901579797268, -0.0048860362730920315, -0.018428945913910866, 0.032239388674497604, 0.001954414416104555, -0.03561878204345703, 0.012875479646027088, 0.00795283354818821, -0.0410032793879509, -0.009124355390667915, 0.0015615603188052773, 0.00031664190464653075, -0.007823290303349495, 0.007552939001470804, -0.005539385136216879, -0.02097475342452526, 0.02484978921711445, -0.0004963480751030147, 0.040417518466711044, 0.01863170973956585, -0.007490983232855797, -0.02186466008424759, 0.0023641656152904034, 0.010211393237113953, 0.022506743669509888, 0.006561650894582272, 0.011281534098088741, -0.03118051402270794, 0.05267344042658806, -0.005528120324015617, 0.0009286284912377596, 0.014745409600436687, -0.009603102691471577, 0.022529274225234985, -0.03165362775325775, 0.04478819668292999, 0.00378773408010602, -0.02347550354897976, -0.0335235595703125, 0.02595372311770916, 0.00751351285725832, 0.02457943744957447, -0.017730537801980972, 0.019949670881032944, -0.023543091490864754, 0.035821545869112015, -0.025187727063894272, -0.005083167459815741, -0.011388547718524933, 0.013393653556704521, -0.0037652049213647842, -0.0013848462840542197, -0.018226182088255882, -0.048482995480298996, -0.029873816296458244, 0.030391989275813103, 0.044134847819805145, 0.02658454328775406, -0.012695245444774628, -0.0434139110147953, 0.015860607847571373, 0.030256815254688263, 0.00014133598597254604, 0.005297195632010698, -0.025886135175824165, -0.040800515562295914, 0.019679320976138115, 0.016491428017616272, 0.02234903909265995, 0.04172421619296074, 0.0027908137999475002, 0.011715222150087357, 0.009850924834609032, 0.0037595725152641535, 0.013709062710404396, -0.013404917903244495, -0.014936908148229122, 0.03703812509775162, 0.0013587968423962593, -0.026179015636444092, 0.006544753909111023, -0.02919793874025345, 0.007479718886315823, -0.06848899275064468, 0.0037933664862066507, 0.01787697896361351, 0.027981357648968697, 0.0075867329724133015, -0.0005980817950330675, -0.006510959938168526, 0.004767757374793291, 0.03115798532962799, -0.03924599289894104, 0.06145985797047615, 0.008977915160357952, -0.019521616399288177, -0.016344988718628883, 0.009963571093976498, -0.025750959292054176, 0.0022965779062360525, -0.02134648710489273, 0.02656201273202896, -0.008065479807555676, -0.01910482347011566, 0.0025570725556463003, -0.028229178860783577, 0.06898463517427444, 0.06263138353824615, -0.0167730450630188, -0.0033371485769748688, 0.026967540383338928, 0.0011116788955405354, 0.03820964694023132, 0.04325620457530022, -0.006685561966150999, -0.011501193977892399, -0.045126136392354965, -0.002193788066506386, 0.019442763179540634, 0.010081849992275238, -0.00305553269572556, -0.017482716590166092, -0.007964097894728184, 0.015556463040411472, 0.006539121735841036, -0.03386149927973747, 0.00783455464988947, -0.01365274004638195, -0.013089507818222046, 0.009282060898840427, -0.008026054129004478, 0.038682762533426285, 0.01752777397632599, 0.013528828509151936, 0.027035128325223923, 0.04767194390296936, -0.010166334919631481, 0.018710561096668243, 0.019341381266713142, 0.00639831367880106, 0.0012243251549080014, -0.017831919714808464, -0.022686978802084923, 0.0152072599157691, 0.02496243454515934, -0.013168360106647015, 0.0015671926084905863, 0.01074646320194006, 0.0210874006152153, -0.018811943009495735, -0.03302791342139244, 0.02433161623775959, 0.010661978274583817, -0.030144168063998222, -0.0014299048343673348, 0.017178570851683617, -0.012988125905394554, 0.029851287603378296, 0.02410632185637951, -0.028364354744553566, 0.0035201990976929665, 0.018530327826738358, 0.014677821658551693, -0.009113091044127941, 0.042783088982105255, -0.005685825366526842, -0.008893431164324284, 0.021053606644272804, -0.013934355229139328, 0.0026119877584278584, 0.006832002196460962, 0.018327564001083374, 0.022574331611394882, 0.010937962681055069, 0.02732800878584385, 0.0011454727500677109, 0.04632018506526947, 0.006522224750369787, 0.009963571093976498, 0.031135456636548042, -0.012762833386659622, 0.006505327764898539, -0.006510959938168526, -0.003990497440099716, 0.043278735131025314, 0.04149892181158066, 0.015263582579791546, 0.011377283371984959, 0.00719810277223587, 0.02584107592701912, -0.0304145198315382, -0.0058350819163024426, 0.0180121548473835, 0.012695245444774628, -0.016604075208306313, 0.017967095598578453, -0.026246603578329086, -0.03863770514726639, -0.019296322017908096, 0.022315245121717453, 0.03417690843343735, 0.046139951795339584, 0.053709786385297775, 0.032982856035232544, 0.003920093644410372, -0.006234976463019848, 0.018316298723220825, 0.0120982201769948, 0.0059477281756699085, 0.023137563839554787, 0.01574796251952648, 0.013979414477944374, -0.0010863334173336625, 0.011951779946684837, 0.02110992930829525, -0.019093560054898262, -0.0372183583676815, 0.03836735337972641, 0.03027934394776821, -0.004714250564575195, -0.03575395792722702, -0.004621317144483328, 0.00880894623696804, -0.025300374254584312, 0.029851287603378296, 0.01873309165239334, 0.007305116858333349, -0.03519072383642197, 0.010143805295228958, 0.014137119054794312, 0.00555346580222249, -0.03712824359536171, 0.028747353702783585, 0.017606627196073532, -0.014520117081701756, 0.028522061184048653, -0.015117142349481583, -0.0016361884772777557, -0.006595444865524769, 0.0006730620516464114, -0.025638313964009285, -0.005384496413171291, 0.0009413012303411961, -0.0014249765081331134, 0.0027781410608440638, -0.020918430760502815, -0.007930303923785686, 0.017482716590166092, 0.005094431806355715, -0.014925643801689148, -0.03115798532962799, 0.014576439745724201, 0.01938644051551819, -0.01497070211917162, -0.03314056247472763, -0.028905058279633522, -0.03462749347090721, -0.019465291872620583, -0.01789950765669346, -0.00022775687102694064, -0.0005100768175907433, -0.030842576175928116, -0.017662949860095978, -0.026742247864603996, 0.016198547556996346, -0.029513347893953323, 0.023655736818909645, 0.007569835986942053, -0.014903114177286625, 0.01006495300680399, -0.02991887554526329, 0.009400339797139168, 0.01147866528481245, 0.018068477511405945, 0.005575995426625013, -0.008746990002691746, -0.014238500967621803, 0.02780112437903881, -0.00936654582619667, 0.03219433128833771, 0.039538875222206116, -0.03054969571530819, -0.012909273616969585, 0.009912880137562752, 0.008639976382255554, 0.013731592334806919, -0.023520560935139656, -0.017662949860095978, 0.015229788608849049, 0.02879241108894348, 0.02394861727952957, -0.05298884958028793, -0.013664004392921925, 0.018214916810393333, -0.016716720536351204, 0.0013052897993475199, -0.00015524077753070742, 0.006696826778352261, 0.021177517250180244, -0.00046677837963216007, 0.017854448407888412, 0.005040924996137619, 0.01365274004638195, -0.0065165925770998, 0.00692775147035718, -0.020163699984550476, 0.007676850073039532, -0.004384759813547134, -0.0291754100471735, -0.01563531532883644, -0.02928805537521839, -0.03165362775325775, -0.005238056182861328, 0.031248101964592934, -0.006544753909111023, 0.031833864748477936, -0.011985573917627335, -0.06637123972177505, -0.003638477763161063, 0.039719108492136, 0.020265081897377968, 0.007096721325069666, 0.0012560070026665926, -0.032081685960292816, 0.009760808199644089, -0.014812997542321682, 0.06501948088407516, 0.018316298723220825, 0.0002742235083132982, 0.008639976382255554, 0.009698851965367794, -0.03701559826731682, -0.028612177819013596, -0.033230677247047424, -0.006381416693329811, 0.035213254392147064, -0.011568781919777393, 0.03363620489835739, 0.015725433826446533, -0.019194941967725754, -0.011805339716374874, -0.024421732872724533, 0.00040130267734639347, -0.022281451150774956, -0.0060829040594398975, 0.009028606116771698, -0.0011257596779614687, -0.04147639125585556, -0.008307669311761856, -0.007958466187119484, -0.00912998802959919, -0.026742247864603996, 0.02086210809648037, 0.012864215299487114, -0.03156351298093796, 0.015342434868216515, -0.03615948557853699, -0.0254806075245142, 0.0016390046803280711, 0.01590566709637642, 0.026742247864603996, -0.023385385051369667, -0.005438003223389387, 0.01004805602133274, 0.017696743831038475, 0.013664004392921925, -0.045509133487939835, -0.01690821908414364, 0.01489184983074665, 0.02274330146610737, 0.0033061709254980087, 0.017843184992671013, 0.03293779864907265, -0.02532290294766426, 0.018350092694163322, -0.023768384009599686, 0.024421732872724533, 0.0005023324047215283, -0.019713114947080612, -0.013731592334806919, 0.025548195466399193, 0.008780783973634243, -0.001260935328900814, 0.0037539401091635227, -0.003951071295887232, -0.0037736534141004086, -0.004824080504477024, -0.011450503021478653, 0.009817130863666534, -0.009603102691471577, 0.001081405091099441, -0.01235730666667223, 0.023272739723324776, -0.018811943009495735, -0.02135775052011013, -0.04325620457530022, -0.022033629938960075, -0.015252318233251572, -0.008279507979750633, 0.0047480445355176926, 0.014418735168874264, -0.0007589549059048295, -0.019183676689863205, -0.021819600835442543, 0.012086954899132252, 0.03712824359536171, -0.0012785362778231502, -0.02843194268643856, 0.005339437630027533, 6.022840352670755e-06, 0.0003338908718433231, -0.02372332476079464, 0.00704603036865592, 0.019915876910090446, 0.025638313964009285, 0.00012971933756489307, -0.0015573360724374652, 0.018169859424233437, -0.017077188938856125, -0.0006230752333067358, 0.024151381105184555, -0.005497142672538757, -0.007220632396638393, -0.011534987948834896, -0.005170468240976334, -0.02521025761961937, 0.01453138142824173, -0.03343344107270241, -0.05289873480796814, -0.004641030449420214, 0.02843194268643856, 0.01837262324988842, -0.012807891704142094, -0.04866323247551918, 0.008211920037865639, 0.06889452040195465, 0.0254355501383543, 0.00328927394002676, 0.022315245121717453, 0.021312693133950233, 0.013145831413567066, -0.032464683055877686, 0.001720673288218677, -0.00781765766441822, 0.03884046897292137, 0.015961989760398865, -0.00931022223085165, 0.023610679432749748, 0.0068657961674034595, 0.03820964694023132, -0.0061166975647211075, -0.0056126052513718605, -0.006505327764898539, 0.02221386320888996, -0.01737006939947605, -0.015838079154491425, 0.0006202590884640813, 0.013585152104496956, 0.0304145198315382, 0.043301261961460114, 0.03275756537914276, -0.03989934176206589, -0.003263928461819887, -0.009619999676942825, 0.021515456959605217, -0.021684424951672554, 0.01963426172733307, 0.0030836942605674267, -0.020929696038365364, -0.01923999935388565, 0.009451029822230339, -0.006347622722387314, -0.032960325479507446, 0.005505591165274382, 0.014452529139816761, 0.022822154685854912, -0.02171821892261505, 0.03987681493163109, -0.02642683871090412, 0.020828314125537872, -0.015826813876628876, 0.0192625280469656, -0.005719619337469339, -0.013371123932301998, 0.03897564485669136, -0.011332224123179913, -0.040800515562295914, 0.0047480445355176926, 0.011771545745432377, 0.006781311240047216, -0.019059766083955765, -0.013709062710404396, 6.793984357500449e-05, -0.0020783254876732826, -0.013968149200081825, -0.03374885022640228, -0.016052108258008957, -0.04280561953783035, -0.02284468337893486, 0.0018671135185286403, -0.007429027929902077, -0.010656346566975117, 0.01813606545329094, 0.040530163794755936, -0.015973255038261414, -0.027620889246463776, -0.003021738724783063, 0.01827124133706093, 0.00177699641790241, 0.006572915706783533, -0.027147775515913963, -0.03926852345466614, 0.010476112365722656, 0.010273348540067673, 0.028409413993358612, 0.0030752457678318024, -0.00029921691748313606, -0.0036131322849541903, 0.004652294795960188, -0.01898091286420822, 0.003385023446753621, -0.012695245444774628, -0.022664448246359825, 0.024241497740149498, 0.02385850064456463, 0.026494424790143967, 0.00025433438713662326, -0.0002819679502863437, -0.018699297681450844, -0.0009631264256313443, -0.01578175649046898, -0.02507508173584938, 0.014486323110759258, -0.010763360187411308, 0.01489184983074665, 0.006341990549117327, 0.025615783408284187, 0.006770046893507242, -0.006657400168478489, 0.01590566709637642, -0.0105662290006876, -0.012515011243522167, 0.03255480155348778, 0.016176018863916397, -0.006803840398788452, -0.0013334513641893864, -0.04632018506526947, -0.0012693837052211165, 0.021391544491052628, -0.0017938934033736587, -0.01963426172733307, -0.012650187127292156, 0.009394707158207893, 0.004508670885115862, 0.03859264403581619, 0.031473394483327866, -0.003832792630419135, 0.009591838344931602, 0.011906720697879791, 0.001144064706750214, -0.030504636466503143, -0.04233250394463539, 0.023407915607094765, -0.04082304239273071, -0.03138327971100807, 0.009237002581357956, -0.0061955503188073635, -0.013866768218576908, 0.0018614812288433313, -0.010205760598182678, -0.019059766083955765, -0.018564121797680855, 0.0006149787805043161, -0.04208468273282051, 0.0064433724619448185, -0.040913160890340805, -0.03219433128833771, -0.010600022971630096, 0.0028499530162662268, -0.006353255361318588, 0.024534378200769424, -0.033455971628427505, -0.013990678824484348, -0.008555491454899311, -0.00900607742369175, 0.00800915714353323, -0.008093641139566898, -0.02061428502202034, 0.029963932931423187, 0.002603539265692234, 0.010115643963217735, 0.007592365145683289, -0.016344988718628883, 0.029738640412688255, -0.015286112204194069, -0.002786589553579688, 0.010200128890573978, 0.014125854708254337, 0.013247212395071983, -0.013618946075439453, -0.02309250459074974, 0.0022346223704516888, -0.006077271420508623, -0.02584107592701912, 0.02186466008424759, 0.03498796001076698, -0.006798208225518465, -0.005119777284562588, -0.03093269281089306, -0.01136601809412241, -0.003446978749707341, -0.019927142187952995, -0.014080796390771866, 0.007676850073039532, 0.004573442507535219, -0.004410105291754007, -0.004587523173540831, 0.012424894608557224, 0.01577049121260643, -0.005561914294958115, 0.00837525725364685, 0.010295878164470196, 0.0033484133891761303, -0.016446368768811226, -0.01577049121260643, -0.023385385051369667, 0.00431435601785779, -0.001192643423564732, -0.03534843027591705, 0.003438530256971717, -0.03181133419275284, -0.001679838984273374, 0.007541674189269543, 0.015984520316123962, 0.0007469862466678023, -0.01440747082233429, -0.02484978921711445, 0.03325320780277252, -0.004044004715979099, -0.028026416897773743, 0.00039250217378139496, -0.010211393237113953, 0.017955830320715904, -0.0033089870121330023, 0.006077271420508623, 0.007750070188194513, -0.039291054010391235, 0.005533752962946892, -0.040147166699171066, -0.03365873545408249, 0.0359792485833168, -0.0068601639941334724, -0.0359792485833168, 0.022450421005487442, -0.030707400292158127, 0.03142833709716797, 0.019341381266713142, -0.002478220034390688, 0.06389302015304565, -0.039719108492136, 0.02010737732052803, 0.004060901701450348, -0.006905222311615944, -0.027846181765198708, 0.0029935771599411964, -0.030482107773423195, -0.009715748950839043, 0.02680983580648899, 0.0161422248929739, 0.007958466187119484, -0.016671663150191307, -0.011703957803547382, 0.016581544652581215, 0.00956930872052908, -0.021695690229535103, 0.04704112187027931, 0.01546634640544653, 0.015578992664813995, 0.012526276521384716, 0.03138327971100807, 0.023407915607094765, -0.005398577079176903, 0.016818102449178696, -0.003751124022528529, 0.02721536159515381, -0.0055253044702112675, 0.06966051459312439, 0.016840631142258644, -0.015443816781044006, 0.031721215695142746, 0.0022205414716154337, -0.006144859362393618, 0.057674940675497055, 0.0031540982890874147, 0.018947118893265724, 0.0052465046755969524, -0.02220259979367256, -0.0022050526458770037, -0.007812025491148233, -0.007186838425695896, 0.04668065533041954, -0.03314056247472763, -0.006972810253500938, -0.013224683701992035, -0.025548195466399193, 0.01752777397632599, -0.009417236782610416, -0.038164589554071426, 0.017820654436945915, -0.03257732838392258, 0.029738640412688255, -0.023407915607094765, -0.0304145198315382, 0.0007730356883257627, 0.039448756724596024], [0.036346446722745895, -0.03330639749765396, 0.047925449907779694, -0.009947213344275951, -0.029483987018465996, 0.01640731282532215, -0.043991271406412125, 0.002745263045653701, 0.008835136890411377, -0.0006873636157251894, -0.010053391568362713, 0.0007299745338968933, -0.03648056462407112, 0.019425006583333015, -0.013758448883891106, 0.019179120659828186, 0.0060242111794650555, 0.012473134323954582, -0.03547466918826103, -0.010735166259109974, 0.03377581760287285, 0.008013653568923473, 0.017402034252882004, -0.006197448819875717, -0.017402034252882004, -0.008667487651109695, -0.013769625686109066, 0.0020201783627271652, 0.010494868271052837, -0.036860570311546326, 0.04394656419754028, -0.006711574736982584, -0.01280843373388052, -0.06567396223545074, 0.005501702893525362, -0.02110150456428528, 0.022532114759087563, -0.005918032955378294, 0.03162990137934685, 0.012081951834261417, -0.047433678060770035, -0.017469095066189766, 0.0003529374662321061, -0.018866175785660744, -0.05829737335443497, 0.04014650359749794, -0.009053081274032593, 9.238194616045803e-05, 0.0032132850028574467, 0.051904335618019104, 0.03321698680520058, 0.024253318086266518, 0.0027801902033388615, 0.0085110142827034, 0.022766822949051857, 0.017279092222452164, -0.003654762636870146, 0.05056313797831535, -0.0012007906334474683, 0.008097478188574314, 0.01792733743786812, 0.021649159491062164, 0.042918313294649124, 0.022431524470448494, -0.022554466500878334, 0.006812164559960365, 0.013501386158168316, 0.027807490900158882, -0.010053391568362713, 0.01098664104938507, 0.014317280612885952, 0.022040341049432755, -0.01098664104938507, -0.004615954123437405, 0.007533058058470488, 0.01611671969294548, 0.05847620218992233, -0.05883385241031647, 0.02532627433538437, 0.06674692034721375, -0.01743556372821331, 0.03310522064566612, -0.032099321484565735, 0.0200509000569582, -0.01704438216984272, 0.04881957918405533, -0.008030418306589127, -0.02829926274716854, -0.03390993922948837, -0.01958147995173931, -0.06044328957796097, -0.032904040068387985, 0.024141550064086914, 0.027852196246385574, -0.022889766842126846, 0.017200855538249016, 0.00041667924961075187, 0.02275564707815647, -0.027069831266999245, 0.06849047541618347, -0.022330934181809425, 0.013378443196415901, -0.008807195350527763, 0.015054939314723015, 0.007270406931638718, -0.04287360608577728, -0.007834827527403831, 0.029193393886089325, 0.0003464759502094239, 0.043208904564380646, 0.040861811488866806, -0.008561309427022934, -0.010919581167399883, 0.01889970526099205, -0.018575582653284073, -0.021816808730363846, -0.014462577179074287, 0.023850958794355392, -0.026019226759672165, -0.010042214766144753, 0.02432037703692913, 0.007767767645418644, 0.029461633414030075, -0.03873824700713158, 0.0261086393147707, -0.022118577733635902, 0.0014739199541509151, -0.02850044146180153, 0.0235380120575428, -0.01943618431687355, 0.025013329461216927, -0.05127844214439392, 0.06545042991638184, -0.05664323270320892, -0.028187496587634087, 0.00021322940301615745, 0.008365717716515064, 0.0058509730733931065, -0.019302064552903175, -0.050831377506256104, 0.04604777321219444, 0.013311383314430714, 0.05337965115904808, 0.03303815796971321, 0.0008214833214879036, 0.016396136954426765, 0.02402978390455246, 0.018229106441140175, -0.049803126603364944, 0.03724057599902153, 0.022643880918622017, -0.020028546452522278, -0.018687348812818527, 0.023202713578939438, 0.021157387644052505, -0.01334491278976202, 0.006052152719348669, 0.06209743395447731, -0.008388071320950985, -0.0086060157045722, -0.004314184654504061, -0.01281961053609848, -0.027673371136188507, -0.03435700386762619, -0.0164855495095253, 0.015267295762896538, -0.020185017958283424, -0.026578059419989586, -0.060130342841148376, -0.03491583466529846, -0.03306051343679428, -0.05633028596639633, -0.003450788790360093, -0.05056313797831535, -0.008734547533094883, -0.029796931892633438, 0.011567826382815838, 0.024633323773741722, -0.025974519550800323, 0.035318195819854736, 0.006968637462705374, -0.006912754382938147, -0.08561309427022934, -0.048461928963661194, -0.027896903455257416, 0.05177021399140358, -0.018575582653284073, 0.027025124058127403, -0.028947507962584496, -0.034982893615961075, 0.02588510699570179, 0.0023638601414859295, -0.03627938777208328, 0.02955104596912861, 0.01807263307273388, -0.009963978081941605, -0.018989117816090584, 0.012506664730608463, 0.011014582589268684, -0.03178637474775314, 1.4789407032367308e-05, -0.03802294284105301, 0.0317416675388813, 0.020822087302803993, -0.010472515597939491, -0.010209864005446434, 0.02143680304288864, 0.009740444831550121, 0.04622659832239151, -0.012227248400449753, 0.009919271804392338, -0.0038755012210458517, 0.008550132624804974, -0.022744471207261086, 0.02112385630607605, 0.00016904673248063773, 0.04148770123720169, -0.024901563301682472, 0.014239043928682804, -0.02351565845310688, -0.0235380120575428, -0.004839486908167601, -0.01090281642973423, -0.020576201379299164, -0.008952491916716099, 0.002919898135587573, -0.03377581760287285, -0.01813969388604164, -0.010992228984832764, -0.008617192506790161, -0.029975758865475655, -0.03612291440367699, -0.013020790182054043, -0.034468770027160645, 0.01811734028160572, -0.024767443537712097, 0.011880772188305855, -0.038470007479190826, -0.01150076650083065, -0.0322781465947628, 0.018430285155773163, 0.0486854612827301, -0.008080713450908661, 0.002013192977756262, 7.666479359613732e-05, -0.02273329347372055, -0.0064321584068238735, 0.006767457816749811, 0.03911825269460678, -0.01441787090152502, -0.018284989520907402, -0.041666530072689056, 0.026488646864891052, -0.023672131821513176, 0.011036936193704605, 0.008483072742819786, 0.00773982610553503, 0.02483450248837471, 0.07032344490289688, 0.01840793341398239, -0.04146534949541092, 0.02613099291920662, -0.0009751621983014047, 0.01308785006403923, -0.04931135103106499, -0.05360318347811699, 0.00990250613540411, 0.019089708104729652, -0.004333743825554848, -0.0011295395670458674, -0.06880342215299606, -0.009282202459871769, -0.0035457902122288942, -0.05869973450899124, -0.02481214888393879, 0.02153739333152771, 0.00799688883125782, -0.03824647516012192, -0.04271713271737099, 0.06661279499530792, -0.01892205886542797, 0.027673371136188507, 0.005035078153014183, -0.03809000179171562, -0.026801591739058495, 0.004149328917264938, 0.02832161635160446, 0.01437316369265318, 0.02021854929625988, -0.024968622252345085, 0.040571216493844986, 0.007862769067287445, 0.007326290011405945, -0.03585467487573624, 0.03983356058597565, -0.029148686677217484, -0.02356036566197872, 0.021157387644052505, -0.01019309926778078, -0.001619216287508607, 0.007544234395027161, 0.013445502147078514, -0.003579320153221488, -0.09281085431575775, -0.01227195467799902, 0.07099404186010361, -0.0068177529610693455, 0.038179416209459305, 0.010729578323662281, 0.017279092222452164, 0.035787612199783325, 0.020140312612056732, 0.023940371349453926, -0.036860570311546326, -0.054542023688554764, 0.02881338819861412, -0.02478979527950287, -0.02563922107219696, 0.014540813863277435, -0.005951562896370888, 0.07479409873485565, -0.003618438495323062, 0.05279846489429474, -0.03679351136088371, 0.022386817261576653, 0.0005445121205411851, 0.011891948990523815, 0.05472084879875183, -0.008734547533094883, -0.030489884316921234, -0.04752308875322342, 0.004652278032153845, 0.026891004294157028, -0.03563114255666733, -0.01743556372821331, -0.03520642966032028, -0.011947832070291042, 0.011813712306320667, -0.06875871121883392, 0.04801486060023308, 0.024968622252345085, -0.01634025387465954, 0.009002787061035633, -0.00035346136428415775, -0.004188447259366512, -0.004805956967175007, 0.019056178629398346, 0.013289029709994793, 0.01704438216984272, 0.024186257272958755, -0.010422220453619957, -0.003869913052767515, -0.026309819892048836, -0.07998006045818329, -0.012629607692360878, -0.044728927314281464, 0.08078478276729584, -0.019626187160611153, -0.002358271973207593, -0.0014285148354247212, -0.000952110334765166, -0.008488660678267479, 0.009617501869797707, 0.05154668167233467, -0.011646063067018986, -0.007365408353507519, -0.017659097909927368, 0.037888821214437485, -0.043723031878471375, 0.00037581464857794344, 0.07470468431711197, -0.008293069899082184, 0.041062988340854645, 0.012618430890142918, -0.007080404087901115, 0.01336726639419794, -0.007046874146908522, 0.011333117261528969, -0.008393659256398678, -0.005065813660621643, -0.010343983769416809, -0.020263254642486572, -0.007097168825566769, 0.022934474050998688, 0.017223209142684937, 0.02937222085893154, -0.04021356627345085, -0.01599377766251564, -0.026891004294157028, 0.0019279710249975324, 0.02285623736679554, 0.015636125579476357, 0.044997166842222214, -0.021347390487790108, 0.008589250966906548, 0.014809053391218185, 0.0213920958340168, 0.05194903910160065, 0.009416322223842144, -0.04949017986655235, -0.0007516292971558869, -0.009801916778087616, 0.024387437850236893, -0.0154684754088521, 0.019603833556175232, -0.012484311126172543, 0.0027243068907409906, -0.029796931892633438, 0.04021356627345085, -0.024454496800899506, 0.015524358488619328, 0.024119198322296143, 0.019156767055392265, 0.021794455125927925, 0.03969943895936012, -0.002425331622362137, 0.024365084245800972, -0.006046564318239689, -0.0016303929733112454, 0.007359819952398539, 0.0007802694453857839, -0.025214508175849915, -0.07278230786323547, -0.03835824131965637, -0.006096859462559223, 0.005116108804941177, -0.019257357344031334, -0.03460288792848587, 0.00773982610553503, -0.05995151773095131, -0.027315717190504074, 0.018720878288149834, 0.05601733922958374, -0.007650412619113922, -0.046628959476947784, -0.019995015114545822, 0.0013705359306186438, -0.023068593814969063, -0.017748510465025902, -0.007846004329621792, 0.048730168491601944, -0.014317280612885952, 0.05467614158987999, 0.016440842300653458, 0.01140576507896185, -0.05458672717213631, -0.04998195171356201, 0.02774043008685112, 0.0318981409072876, -0.015267295762896538, -0.023627424612641335, 0.03985591232776642, 0.02405213750898838, -0.055614981800317764, -0.012372544966638088, -0.017122618854045868, 0.03540760651230812, -0.0686245933175087, -0.021470332518219948, -0.02666747197508812, -0.008209245279431343, 0.022230343893170357, 0.04658425226807594, -0.020162666216492653, 0.019246181473135948, 0.016764964908361435, 0.04461716115474701, 0.007773356046527624, 0.012428428046405315, -0.07018932700157166, 0.01279725693166256, -0.030534591525793076, -0.04099592939019203, -0.01875440776348114, 0.04417009651660919, 0.016373783349990845, 0.033418163657188416, -0.005297729279845953, -0.025013329461216927, -0.040034737437963486, -0.023314479738473892, 0.03207696974277496, -0.042650073766708374, -0.03585467487573624, 0.06571866571903229, 0.04233712702989578, 0.033664051443338394, -0.04618189111351967, -0.06545042991638184, -0.011623709462583065, -0.05230669304728508, -0.022476231679320335, -0.011836065910756588, -0.009075434878468513, -0.005957151297479868, 0.02248740755021572, -0.05530203506350517, -0.014607873745262623, -0.006180684082210064, -0.01584848016500473, 0.04671837016940117, 0.01780439354479313, -0.011154290288686752, 0.027583956718444824, -0.011612532660365105, -0.032613445073366165, 0.023672131821513176, 0.0020523113198578358, -0.042381834238767624, -0.04577953368425369, 0.0021640777122229338, -0.03706175088882446, 0.0014948761090636253, 0.01440669409930706, -0.02964046038687229, -0.037933528423309326, 0.00982985831797123, 0.026287466287612915, -0.017033204436302185, 0.009237496182322502, 0.033708758652210236, -0.0015591417904943228, 0.002415552269667387, 0.005222287029027939, -0.01516670547425747, 0.015814950689673424, 0.014317280612885952, -0.06312568485736847, -0.01308785006403923, -0.016049660742282867, -0.021850338205695152, -0.0031154893804341555, -0.09611913561820984, -0.029260452836751938, -0.0023638601414859295, -0.017156148329377174, -0.022152109071612358, 0.02242034673690796, -0.01936912350356579, -0.0015856863465160131, 0.04280654713511467, 0.02302388660609722, -0.0406382754445076, 0.0073989382945001125, -0.01063457690179348, -0.010036625899374485, 0.017346151173114777, -0.023448599502444267, -0.01256254781037569, 0.0095839723944664, 0.02376154437661171, 0.020296785980463028, 0.02910398133099079, -0.05141256004571915, -0.022431524470448494, 0.00833777617663145, 0.029707519337534904, -0.015021409839391708, 0.02668982557952404, 0.03572055324912071, -0.005314494017511606, 0.024409789592027664, -0.013378443196415901, 0.0035485844127833843, -0.030780477449297905, 0.04725484922528267, 0.009796327911317348, 0.018027925863862038, -0.00639862846583128, 0.011891948990523815, -0.04917723312973976, -0.012674313969910145, 0.06589749455451965, -0.013512562029063702, 0.03938649222254753, 0.006448923610150814, 0.009500146843492985, -0.03428994491696358, 0.009271025657653809, 0.025818048045039177, 0.006040975917130709, 0.006957460660487413, 0.003978885244578123, -0.01663084700703621, 0.0009122935589402914, -0.03326169401407242, -0.041398290544748306, -0.019816190004348755, -0.015256118960678577, 0.002715924521908164, -0.017837923020124435, 0.0055380272679030895, -0.011260468512773514, -0.007605706341564655, -0.0166755523532629, 0.05248551815748215, 0.036301739513874054, 0.028992215171456337, -0.04837251454591751, 0.04358891025185585, -0.03348522633314133, -0.009896918199956417, 0.00692393071949482, 0.040034737437963486, -0.05042901635169983, -0.0066948095336556435, 0.03203226253390312, 0.006560689769685268, -0.022252697497606277, 0.021772101521492004, 0.00613597733899951, -0.010947522707283497, 0.013199616223573685, -0.0037246164865791798, -0.04367832466959953, 0.011690769344568253, 0.021671513095498085, -0.01679849624633789, -0.02231975831091404, -0.010075744241476059, -0.020229725167155266, -0.00870660599321127, -0.006124801002442837, 0.00046452926471829414, -0.014429047703742981, -0.0011232526740059257, -0.031607549637556076, -0.061426833271980286, 0.010265747085213661, -0.0052306693978607655, 0.0002476325025781989, 0.0004785000637639314, -0.0019894426222890615, -0.024365084245800972, -0.03587702661752701, 0.011456060223281384, -0.014730816707015038, 0.03364169970154762, -0.009354851208627224, 0.006845694500952959, 0.026823945343494415, -0.03652527183294296, 0.008796018548309803, -0.041353583335876465, -0.0026474674232304096, 0.020419728010892868, -0.052440814673900604, -0.018441462889313698, 0.04443833604454994, -0.008013653568923473, 0.01414963137358427, 0.020665613934397697, 0.02143680304288864, 0.025974519550800323, 0.0057615600526332855, 0.02129150740802288, 0.005823031533509493, -0.005990681238472462, -0.0016723053995519876, 0.015513181686401367, -0.0068177529610693455, -0.03095930442214012, 0.0251474492251873, -0.038671188056468964, 0.017692627385258675, 0.0017002469394356012, 0.043968915939331055, -0.03569820150732994, 0.000614016898907721, 0.011791359633207321, -0.013993158005177975, 0.0246109701693058, 0.02347095124423504, -0.0460030660033226, -0.038447655737400055, -0.009064258076250553, -0.03931943327188492, 0.03963238000869751, 0.010690459981560707, 0.02561686746776104, 0.01665319874882698, -0.021816808730363846, -0.0335075780749321, 0.04077239707112312, 0.012048422358930111, 0.0016932615544646978, 0.014607873745262623, -0.03703939914703369, 0.0019447359954938293, 0.04443833604454994, 0.017390858381986618, 0.0271815974265337, -0.024722736328840256, 0.0195144210010767, -0.005856561474502087, -0.00478080939501524, 0.00858366210013628, 0.031294602900743484, -0.021995635703206062, 0.007292760070413351, -0.05807384103536606, -0.004043151158839464, -0.009919271804392338, -0.06419864296913147, -0.0203191377222538, 0.003129460383206606, -0.016150251030921936, -0.01687673293054104, 0.02715924382209778, 0.01743556372821331, 0.01675378903746605, -0.016083190217614174, 0.0006220500799827278, 0.005957151297479868, 0.0014222279423847795, 0.0117690060287714, 0.026891004294157028, 0.02876868098974228, -0.025952167809009552, -0.023359185084700584, -0.03122754395008087, 0.0077118840999901295, -0.0054346430115401745, 0.0027662194333970547, 0.012383721768856049, -0.0031769610941410065, 0.010869286023080349, 0.01926853321492672, -0.010103685781359673, 0.016396136954426765, 0.03276991844177246, 0.0015172293642535806, 0.008762489072978497, 0.00964544340968132, -0.01673143543303013, -0.004940076731145382, -0.036346446722745895, -0.021649159491062164, -0.0039621200412511826, 0.0018860585987567902, -0.008773665875196457, -0.05065254867076874, 0.014294927939772606, -0.04016885906457901, 0.03625703230500221, -0.0005584829486906528, -0.02537098154425621, 0.04537717252969742, -0.02928280644118786, -0.03567584604024887, -0.03245697543025017, 0.005722441710531712, 0.00042576028499752283, -0.006113624200224876, 0.012249602004885674, -0.02087797038257122, -0.0133225591853261, -0.015043762512505054, 0.0030987244099378586, -0.003084753639996052, -0.01147841289639473, -0.0009262643870897591, 0.012093128636479378, -0.0240744911134243, -0.008164538070559502, -0.016742613166570663, -0.04984783008694649, -0.008974844589829445, 0.0005787406116724014, -0.008879843167960644, -0.02180563285946846, -0.004453892819583416, 0.04119710996747017, -0.0037944705691188574, 0.0022870206739753485, -0.004465069156140089, -0.016966145485639572, -0.018765585497021675, 0.03444641828536987, -0.02832161635160446, 0.008142185397446156, 0.010343983769416809, 0.019670892506837845, 0.017178501933813095, 0.0049987537786364555, -0.03276991844177246, -0.007773356046527624, 0.026063933968544006, 0.014082571491599083, -0.025728633627295494, -0.013020790182054043, -0.014004334807395935, 0.019626187160611153, -0.0021934164687991142, -0.04273948445916176, 0.01467493362724781, -0.0010631782934069633, -0.03750881552696228, 0.02149268612265587, 0.00876807700842619, -0.02615334652364254, -0.021649159491062164, -0.0203191377222538, 0.02048678882420063, 0.03692763298749924, -0.007639236282557249, -0.027025124058127403, 0.0034563771914690733, -0.004283448681235313, -0.0060242111794650555, -0.003808441339060664, -0.02116856351494789, 0.04195712134242058, 0.05078667029738426, -0.026756886392831802, 0.030534591525793076, -0.011947832070291042, -0.029662812128663063, 0.03909590095281601, -0.035497020930051804, 0.018743231892585754, 0.020989736542105675, 0.017279092222452164, -0.012182542122900486, 0.05342435836791992, -0.019570304080843925, 0.002352683572098613, 0.020430905744433403, -0.006985402200371027, -0.027874549850821495, 0.025192154571413994, 0.011556649580597878, 0.03323933854699135, 0.014239043928682804, 0.004096239805221558, 0.009366028010845184, 0.0016289958730340004, -0.00640421686694026, 0.014529637061059475, 0.01980501227080822, 0.04405833035707474, -0.00373299908824265, -0.04738897085189819, 0.006270097102969885, 0.010003096424043179, 0.025773340836167336, -0.007074815686792135, 0.008443954400718212, -0.014283751137554646, 0.048461928963661194, 0.0004243631847202778, -0.015345532447099686, 2.57586707448354e-05, 0.007706296164542437, 0.04432656988501549, -0.012897847220301628, 0.04917723312973976, 0.01675378903746605, 0.018944410607218742, -0.04229241982102394, 0.016843201592564583, 0.010461338795721531, -0.022275051102042198, 0.0032468149438500404, 0.013445502147078514, -0.031585194170475006, 0.01758086122572422, 0.020799733698368073, 0.0016988498391583562, 0.01663084700703621, 0.03706175088882446, 0.03355228528380394, 0.020810911431908607, -0.012149011716246605, -0.037352342158555984, 0.020106783136725426, 0.009164848364889622, 0.027136892080307007, 0.031093424186110497, 0.0029171041678637266, -0.018575582653284073, 0.0213920958340168, 0.05154668167233467, 0.008432777598500252, 0.01706673577427864, 0.006990990601480007, -0.032345209270715714, 0.007896298542618752, 0.019737953320145607, -4.793732296093367e-05, 0.0058118547312915325, 0.006448923610150814, 0.03985591232776642, 0.009785152040421963, 0.04618189111351967, -0.010388690046966076, 0.01228313148021698, 0.0019531184807419777, -0.021794455125927925, 0.03138401731848717, -0.0064712767489254475, -0.0029310749378055334, -0.09026257693767548, 0.003428435418754816, -0.018329696729779243, 0.021839162334799767, -0.009762798435986042, 0.011187820695340633, -0.003635203465819359, -8.103066647890955e-05, 0.0383358895778656, -0.0028151171281933784, 0.02613099291920662, -0.030020466074347496, 0.03891707584261894, 0.021056797355413437, -0.011467237025499344, 0.004694190341979265, -0.008723370730876923, -0.021615630015730858, -0.009963978081941605, 0.004674631170928478, 0.017301443964242935, 0.026756886392831802, 0.018251460045576096, 0.01308785006403923, -0.027092184871435165, 0.04881957918405533, 0.04180064797401428, -0.0006712971953675151, -0.015535535290837288, 0.02961810678243637, 0.0012399089755490422, 0.029998112469911575, 0.006013034377247095, 0.037374697625637054, -0.009718092158436775, 0.003696674946695566, 0.0079745352268219, -0.00012355430226307362, 0.014049041084945202, -0.01412727776914835, -0.020419728010892868, -0.017759686335921288, 0.006448923610150814, -0.014361987821757793, 0.0018888527993112803, -0.010360748507082462, 0.0202409029006958, 0.004951253067702055, 0.021067973226308823, -0.03359699249267578, 0.018787939101457596, 0.017234385013580322, 0.02400743030011654, 0.04309713840484619, 0.058789145201444626, -0.0035318194422870874, 0.011556649580597878, 0.031875789165496826, 0.039453551173210144, 0.023918017745018005, -0.003883883822709322, -0.024700382724404335, -0.014898465946316719, -0.010019861161708832, 0.01018192246556282, -0.002953428076580167, 0.01516670547425747, -0.025259215384721756, -0.011338705196976662, -0.0143955172970891, 0.02073267474770546, 0.02742748335003853, 0.018832644447684288, 0.011634886264801025, -0.036324091255664825, 0.022576820105314255, 0.05449731647968292, -0.014060217887163162, 0.0013328148052096367, 0.03614526614546776, 0.021850338205695152, -0.021190917119383812, 0.008153361268341541, 0.04577953368425369, -0.020408552139997482, -0.023850958794355392, 0.014104924164712429, 0.009628678672015667, -0.010081333108246326, 0.044237155467271805, -0.0271815974265337, 0.06482453644275665, -0.0010848329402506351, 0.025974519550800323, 0.008840725757181644, 0.030758123844861984, 0.03361934423446655, -0.0035904969554394484, 0.026600413024425507, -0.0261086393147707, -0.0033949054777622223, 0.00024221882631536573, -0.02195092849433422, 0.008902196772396564, 0.0032635799143463373, 0.02329212613403797, 0.023895664140582085, -0.008818372152745724, 0.05592792481184006, -0.0007083198288455606, -0.02297917939722538, 0.039230018854141235, 0.008740135468542576, -0.017882630228996277, -0.012372544966638088, -0.017770864069461823, -0.03437935560941696, 0.014451400376856327, 0.04016885906457901, 0.016027307137846947, -0.0005022504483349621, 0.06245508790016174, -0.0008151964866556227, 0.017904983833432198, 0.017737334594130516, 0.0195144210010767, -0.02021854929625988, 0.019860895350575447, 0.015021409839391708, -0.028589855879545212, 0.015915540978312492, 0.005772736389189959, -1.0696397794163204e-06, -0.007762179244309664, -0.005431849043816328, -0.015736714005470276, 0.02166033536195755, 0.021570922806859016, -0.00028046389343217015, -0.03180873021483421, -0.005789501592516899, 0.016329076141119003, -0.03900648653507233, 0.012953730300068855, 0.005185962654650211, 0.031607549637556076, 0.01307667326182127, 0.002641879254952073, -0.011869595386087894, 0.05883385241031647, -0.0497584193944931, 0.044304218143224716, 0.028187496587634087, 0.02129150740802288, 0.011634886264801025, 0.006443335209041834, 0.035251133143901825, -0.022476231679320335, 0.018821468576788902, -0.0066053965128958225, 0.025952167809009552, -0.03703939914703369, 0.012428428046405315, 0.016619669273495674, -0.04334302619099617, -0.021984457969665527, -0.0009542059851810336, -0.008661898784339428, -0.03690527752041817, -0.0433206707239151, 0.016966145485639572, 0.0010813402477651834, -0.011400177143514156, -0.028209848329424858, -0.02075502835214138, -0.0554361529648304, 0.0011379220522940159, -0.020531494170427322, 0.001290203770622611, -0.015502004884183407, -0.02373919077217579, -0.022397994995117188, -0.00799688883125782, -0.01518905907869339, 0.006281273905187845, 0.017390858381986618, 0.013490209355950356, 0.028343968093395233, 0.01813969388604164, -0.002471435349434614, 0.02566157467663288, 0.014283751137554646, 0.01570318453013897, 0.020788557827472687, 0.02957339957356453, 0.009986331686377525, 0.03679351136088371, -0.010573104955255985, 0.03167460858821869, -0.009980742819607258, 0.020889148116111755, -0.03216638043522835, 0.004314184654504061, -0.03154049068689346, 0.032144028693437576, -0.011282822117209435, 0.002639085054397583, 0.0024965829215943813, -0.017390858381986618, 0.01307667326182127, -0.015423768199980259, 0.0019461330957710743, -0.035541728138923645, 0.02176092565059662, -0.0026348938699811697, 0.005021107383072376, 4.442279532668181e-05, -0.009975154884159565, -0.022498583421111107, 0.038671188056468964, -0.009606325067579746, 0.012629607692360878, -0.0006335760117508471, -0.011590179987251759, -0.006722751073539257, 0.029685165733098984, 0.020028546452522278, -0.04229241982102394, -0.01252901740372181, -0.03967708721756935, -0.03223343938589096, 0.015133175998926163, 0.011025759391486645, 0.012596077285706997, 0.02876868098974228, -0.0012420045677572489, -0.01673143543303013, 0.017893806099891663, 0.00041912414599210024, 0.026265112683176994, 0.007968947291374207, -0.019860895350575447, 0.004451098386198282, -0.005473761353641748, -0.0016737023834139109, 0.04486304894089699, 0.019357947632670403, -0.026086287572979927, 0.02021854929625988, 0.027382778003811836, 0.01813969388604164, 0.01692143827676773, -0.013434326276183128, -0.02850044146180153, 0.025795694440603256, -0.04077239707112312, 0.02034149132668972, 0.024119198322296143, -0.003769323229789734, -0.013803155161440372, 0.005138461943715811, 0.04801486060023308, 0.0009849417256191373, 0.009354851208627224, -0.008796018548309803, 0.013188439421355724, -0.009181613102555275, 0.011422529816627502, -0.010103685781359673, 0.016720259562134743, -0.006728339474648237, -0.007533058058470488, 0.02073267474770546, -0.001546568120829761, 0.0029841638170182705, -0.019279710948467255, -0.005032283719629049, -0.009343674406409264, 0.02205151878297329, 0.039744146168231964, 0.004121387377381325, 0.007991299964487553, 0.03534054756164551, 0.035273488610982895, 0.028656914830207825, 0.009874564595520496, 0.011679592542350292, -0.0066445148549973965, 0.015412592329084873, -0.01628437079489231, 0.017279092222452164, -0.02852279506623745, 0.007980124093592167, 0.01178018283098936, -0.0018567199585959315, -0.019469713792204857, 0.022364463657140732, 0.026510998606681824, 0.008404836058616638, 0.007415703032165766, -1.162414628197439e-05, 0.010148392990231514, 0.02539333514869213, -0.019346769899129868, 0.01875440776348114, -0.01873205602169037, 0.015792597085237503, -0.028165142983198166, -0.0011155687971040606, 0.03357463702559471, -0.024208610877394676, 0.029238101094961166, 0.0067786346189677715, -0.016306722536683083, -0.03757587820291519, -8.862729009706527e-05, -0.02258799783885479, 0.002436508424580097, 0.021079150959849358, 0.0021696658805012703, 0.016563786193728447, -0.024901563301682472, -0.014049041084945202, 0.0031043128110468388, -0.0009332497720606625, -0.003936972934752703, -0.004727720282971859, -0.0017854688921943307, 0.03753117099404335, -0.02981928549706936, -0.013568446040153503, 0.016273193061351776, 0.021347390487790108, -0.00402917992323637, 0.04148770123720169, 0.005213904194533825, 0.038470007479190826, 0.007326290011405945, -0.014306103810667992, -0.008002476766705513, -0.01943618431687355, -0.030780477449297905, -0.03276991844177246, -0.02102326788008213, -0.03507230803370476, 0.015658477321267128, -0.014987879432737827, -0.017625566571950912, 0.021872691810131073, 0.02275564707815647, 0.023314479738473892, 0.005510085262358189, -0.048193689435720444, -0.0025887901429086924, 0.014741993509232998, -0.01731262169778347, -0.020039722323417664, 0.02673453278839588, -0.011165467090904713, 0.023582719266414642, -0.034781716763973236, 0.013400795869529247, -0.000989831518381834, 0.015781421214342117, 0.00107435486279428, -0.009013962931931019, 0.005923621356487274, 0.027315717190504074, 0.02485685609281063, 0.015423768199980259, 0.030020466074347496, 0.0035737319849431515, -0.007242465391755104, 0.0017128207255154848, -0.029774580150842667, 0.04175594076514244, 0.01545729860663414, -0.018810290843248367, 0.04227006807923317, 0.0021808426827192307, -0.041331227868795395, -0.006577454973012209, 0.012238425202667713, 0.04577953368425369, -0.006225390825420618, -0.009706915356218815, 0.01865381933748722, -0.00040480407187715173, -0.008298657834529877, -0.006784223020076752, 0.011338705196976662, -0.03648056462407112, 0.02742748335003853, 0.012964907102286816, -0.0020117959938943386, -0.03621232509613037, 0.028701622039079666, -0.01333373598754406, 0.014853759668767452, 0.001433404628187418, 0.025683928281068802, -0.009539265185594559, 0.010142804123461246, 0.027941608801484108, -0.011601356789469719, -0.011858419515192509, 0.005716853309422731, 0.03469230234622955, -0.017569683492183685, 0.04075004532933235, 3.938020745408721e-05, -0.002735483692958951, -0.003713439917191863, -0.02592981420457363, -0.002319153631106019, -0.008131008595228195, -0.010187511332333088, 0.005146844312548637, -0.03636879846453667, 0.02017384208738804, 0.009667797014117241, 0.014730816707015038, 0.027047477662563324, -0.0015689213760197163, -0.017770864069461823, -0.029439279809594154, 0.03835824131965637, -0.002225549193099141, -0.014987879432737827, -0.04564541205763817, -0.009276614524424076, -0.0032104910351336002, -0.012193718925118446, 0.02380625158548355, -0.03167460858821869, 0.0035010837018489838, -0.006510395091027021, -0.008198068477213383, -0.02202916517853737, 0.021045619621872902, 0.0085110142827034, -0.019447360187768936, 0.04039239138364792, 0.014574343338608742, 0.006175095681101084, -0.02034149132668972, -0.007119521964341402, 0.0009108964586630464, 0.008611604571342468, -0.021794455125927925, -0.015982599928975105, 0.033172279596328735, 0.007348643150180578, 0.029215747490525246, -0.013400795869529247, -0.005498908925801516, -0.00479757459834218, -0.018866175785660744, 0.029796931892633438, 0.016105543822050095, -0.017491446807980537, 0.0016988498391583562, -0.00929337926208973, -0.026019226759672165, -0.036055851727724075, -0.03509466350078583, -0.004484628327190876, 0.018542051315307617, 0.01140576507896185, 0.004870222415775061, -0.007896298542618752, 0.03033341094851494, -0.005789501592516899, 0.008516602218151093, 0.028142789378762245, 0.019335594028234482, 0.013903745450079441, -0.018251460045576096, 0.010019861161708832, -0.028679268434643745, -0.007560999598354101, 0.027092184871435165, 0.007767767645418644, -0.01729026809334755, 0.0076224710792303085, 0.016194956377148628, -0.00912014115601778, -0.036033499985933304, -0.02749454416334629, 0.0008717782329767942, -0.0033613755367696285, 0.05476555600762367, -0.01665319874882698, -0.008147773332893848, 0.004182858858257532, 0.005071402061730623, -0.025035683065652847, -0.020039722323417664, 0.008734547533094883, 0.05530203506350517, -0.006068917457014322, 0.004199624061584473, 0.014898465946316719, -0.01388139184564352, -0.027047477662563324, 0.01202606875449419, -0.022867413237690926, 0.012361368164420128, -0.018027925863862038, 0.012059599161148071, 0.013523738831281662, -0.035586435347795486, 0.0022465053480118513, -0.03838059678673744, 0.012428428046405315, 0.008600427769124508, 0.0047444854862987995, 0.011260468512773514, -0.0008312629070132971, -0.010299277491867542, 0.002376433927565813, -0.00720893545076251, -0.0394088476896286, 0.017111441120505333, 0.024186257272958755, -0.020576201379299164, 0.0271815974265337, -0.008527779020369053, -0.00615274254232645, 0.005728030111640692, -0.007158640306442976, -0.003693880746141076, 0.00876807700842619, 0.010779873467981815, -0.03089224360883236, 0.001753336051478982, -0.0023638601414859295, 0.027092184871435165, 0.007426879834383726, 0.02749454416334629, 0.027025124058127403, -0.0004582424007821828, 0.03585467487573624, 0.014976702630519867, -0.024633323773741722, -0.00719775864854455, -0.008974844589829445, -0.02063208445906639, 0.015781421214342117, -0.0042638895101845264, -0.011321940459311008, -0.0019698834512382746, 0.03835824131965637, 0.008298657834529877, 0.006163918878883123, -0.004973606672137976, -0.002527318662032485, -0.022621527314186096, -0.005504497326910496, 0.014015511609613895, 0.021302683278918266, 0.006851282902061939, 0.005278170108795166, 0.018251460045576096, 0.027047477662563324, -0.0039509437046945095, -0.013814331963658333, 0.0086060157045722, 0.003755352459847927, 0.05320082604885101, -0.03194284811615944, 0.0123054850846529, 0.02512509562075138, -0.021179739385843277, 0.03878295421600342, 0.03936414048075676, -0.0004956143093295395, 0.03274756669998169, -0.04779132828116417, -0.02143680304288864, -0.014250220730900764, -0.014194337651133537, -0.01834087260067463, 0.0009982140036299825, -0.010433397255837917, 0.015066116116940975, 0.015099645592272282, 0.023068593814969063, -0.005169197916984558, -0.00957279559224844, 0.01784910075366497, 0.03010987862944603, -0.002190622268244624, -0.04148770123720169, -0.011053700931370258, 0.06866929680109024, 0.036569979041814804, 0.006236567161977291, 0.039207667112350464, 0.04989253729581833, 0.023649778217077255, 0.009002787061035633, -0.02644393965601921, 0.000617160287220031, -0.022867413237690926, 0.018184399232268333, 0.009623090736567974, -0.0051915510557591915, -0.004607571288943291, 0.01834087260067463, -0.002113782800734043, 0.02046443521976471, -0.009952801279723644, 0.006583043374121189, 0.02036384493112564, 0.008030418306589127, 0.029483987018465996, -0.0058509730733931065, -0.03967708721756935, 0.05212786793708801, -0.012909024022519588, -0.0026502616237848997, -0.017379680648446083, -0.013143733143806458, 0.05525732785463333, 0.015502004884183407, -0.028701622039079666, -0.0015325973508879542, -0.034982893615961075, 0.03149578347802162, -0.0208556167781353, 0.003881089622154832, -0.0060745058581233025, 0.04998195171356201], [0.029394812881946564, -0.02803272195160389, -0.0039929053746163845, 0.018992388620972633, -0.02007986418902874, 0.05492304265499115, -0.05422002822160721, 0.0030290058348327875, 0.04723381623625755, 0.013807653449475765, -0.024869155138731003, 0.020585156977176666, 0.0019552602898329496, 0.027813030406832695, -0.022035125643014908, -0.0011039532255381346, 0.02987813577055931, -0.0010806109057739377, -0.017641281709074974, 0.020024942234158516, 0.028955429792404175, 0.03754539415240288, 0.052462492138147354, -0.0105671938508749, -0.02948269061744213, 0.004731620196253061, -0.007996795699000359, -0.0003020767471753061, 0.04881560057401657, 0.024451740086078644, 0.0424884669482708, -0.003591967048123479, -0.03664465621113777, -0.01775112748146057, 0.033568963408470154, 0.01378568448126316, 0.007864980027079582, -0.015960637480020523, 0.01816854253411293, -0.0055472273379564285, -0.027549399062991142, -0.00219829473644495, -0.001833056565374136, -0.015103837475180626, -0.019816234707832336, 0.05074889212846756, 0.02614336833357811, -0.0004266834002919495, -0.003968189936131239, 0.01812460459768772, -0.004970535635948181, 0.041104406118392944, 0.0014293722342699766, 0.017267804592847824, 0.013346299529075623, 0.02574792318046093, -0.003243205836042762, 0.004566851072013378, 0.0036853363271802664, 0.005407173652201891, -0.03266822546720505, 0.0014025972923263907, 0.026648661121726036, 0.0698181763291359, -0.016103437170386314, -0.003858343930914998, -0.07315749675035477, 0.03060312010347843, -0.027088046073913574, -0.02954859845340252, 0.0037594824098050594, 0.023309340700507164, 0.026736538857221603, -0.03495302423834801, -0.006497396156191826, 0.005140796769410372, 0.04200514405965805, -0.013489099219441414, 0.0795285701751709, 0.04402631148695946, -0.04956255480647087, 0.020947648212313652, -0.03407425805926323, 0.01802574284374714, -0.03414016589522362, 0.04692624881863594, -0.04231271147727966, -0.024363862350583076, -0.024517646059393883, -0.01987115666270256, -0.025132784619927406, 0.009194117970764637, -0.012599346227943897, 0.023594940081238747, 0.0006168544641695917, 0.06617128103971481, 0.005256135482341051, 0.01898140460252762, -0.018640881404280663, 0.0428619422018528, 0.002998798154294491, -0.012588361278176308, -0.03295382484793663, 0.010034440085291862, 0.027088046073913574, -0.0544397197663784, -0.055845752358436584, 0.04969437047839165, -0.028120597824454308, 0.002100806450471282, 0.06357891857624054, -0.00516002019867301, -0.018618911504745483, 0.07025755941867828, -0.005280850920826197, -0.013005777262151241, 0.004800274036824703, 0.03482120856642723, -0.03451364114880562, -0.02390250936150551, -0.004904627799987793, -0.003328336402773857, 0.05751541256904602, -0.061909254640340805, 0.026297153905034065, 0.03321745619177818, -0.044883113354444504, 0.009924594312906265, 0.014642483554780483, -0.027395615354180336, -6.414840026991442e-05, -0.04365283623337746, 0.04916710779070854, -0.0499580018222332, 0.018058696761727333, -0.0272198598831892, -0.015015960671007633, -0.0681045725941658, -0.014104237779974937, -0.03444773331284523, 0.03785296157002449, -0.007348703220486641, 0.046223234385252, 0.013873561285436153, -0.048244401812553406, 0.019860172644257545, 0.05553818121552467, 0.009847701527178288, 0.00032335941796191037, -0.009847701527178288, -0.010874763131141663, -0.008320841006934643, 0.008419702760875225, 0.025198692455887794, 0.014741345308721066, 0.01831134222447872, 0.011259224265813828, 0.061557747423648834, -0.012950853444635868, 0.01067154761403799, -0.015081867575645447, -0.002357571618631482, -0.038028717041015625, -0.039149146527051926, -0.004231820348650217, -0.010655070655047894, 0.004116482101380825, -0.0067115961574018, -0.03251444175839424, 0.02429795451462269, -0.04661868140101433, -0.02145294100046158, -0.03515074774622917, -0.003380513284355402, 0.001364837633445859, -0.0583941824734211, 0.030559182167053223, -0.005744950380176306, -0.014170145615935326, 0.03723782300949097, 0.005580181255936623, 0.027505461126565933, -0.021749526262283325, -0.04455357417464256, -0.010759424418210983, 0.07346506416797638, -0.009523656219244003, 0.04587172716856003, -0.03286594897508621, -0.010331024415791035, -0.003465644083917141, -0.03174551948904991, -0.03317352011799812, 0.052067045122385025, -0.03398637846112251, -0.0034381826408207417, -0.01951964944601059, -0.008677841164171696, 0.033129580318927765, -0.030427366495132446, 0.007535441778600216, -0.050089817494153976, 0.024693401530385017, 0.05751541256904602, 0.006513873115181923, 0.011863377876579762, 0.020793864503502846, -0.01860792748630047, 0.03754539415240288, -0.029966013506054878, 0.025088846683502197, -0.030471304431557655, -0.04609141871333122, -0.007002688013017178, 0.007722179871052504, -0.009710393846035004, 0.025550199672579765, -0.01024863962084055, 0.006612734403461218, -0.05329732224345207, -0.03071296587586403, 0.015620113350450993, -0.013203499838709831, -0.01089124009013176, -0.014378853142261505, -0.0017396874027326703, -0.04582778736948967, -0.04224680736660957, 0.005783396773040295, -0.009183133020997047, -0.03394244238734245, -0.005794381257146597, -0.030427366495132446, -0.029241029173135757, 0.01196223869919777, 0.008996394462883472, 0.01609245128929615, -0.04081880673766136, -0.015070883557200432, 0.008903025649487972, -0.030537212267518044, 0.0544397197663784, -0.01916814222931862, -0.012269807979464531, -0.0022339948918670416, -0.022287771105766296, -0.004476228263229132, 0.030031921342015266, 0.08379059284925461, -0.04385055974125862, -0.028889521956443787, 0.008353794924914837, 0.027439553290605545, 0.0040780361741781235, 0.023375248536467552, 0.0040945131331682205, 0.013159560970962048, -0.010056409053504467, 0.07284992933273315, -0.03633708506822586, -0.025066876783967018, 0.023968417197465897, 0.0019072027644142509, -0.010034440085291862, -0.062260761857032776, -0.06898334622383118, 0.012434577569365501, -0.020859772339463234, -0.05878962576389313, 0.03308564051985741, -0.022628294304013252, -0.007689226418733597, 0.021002572029829025, -0.04382858797907829, -0.05342913791537285, -0.011259224265813828, 0.0025031177792698145, -0.044905081391334534, -0.03295382484793663, 0.03668859228491783, -0.04119228199124336, 0.017366666346788406, 0.0070411344058811665, -0.04327935725450516, -0.0006230332655832171, 0.0053000738844275475, 0.043411172926425934, 0.017509466037154198, 0.013192514888942242, -0.013192514888942242, 0.040247607976198196, 0.0032981287222355604, 9.165282972389832e-05, -0.004220835864543915, 0.05769116431474686, -0.013203499838709831, -0.02845013700425625, 0.039896100759506226, -0.01362091489136219, -0.012401623651385307, -0.0046959202736616135, 0.058877501636743546, -0.01304971519857645, -0.023111617192626, -0.04666261747479439, 0.028647860512137413, -0.012094054371118546, 0.03526059538125992, -0.011511869728565216, 0.008013271726667881, -0.013752730563282967, 0.00457783555611968, 0.022584356367588043, -0.0802755206823349, -0.018080666661262512, 0.029834197834134102, -0.04426797479391098, -0.018014758825302124, 0.0022861717734485865, 0.019563589245080948, 0.05224280059337616, 0.022188909351825714, 0.05830630287528038, -0.026253215968608856, -0.018278388306498528, -0.024913093075156212, 0.03939080610871315, 0.0728059858083725, -0.006058011669665575, 0.019673435017466545, -0.05364882946014404, -0.041895296424627304, 0.04850803315639496, -0.00728279585018754, -0.020068880170583725, -0.028867552056908607, 0.005217689089477062, 0.018553003668785095, -0.06889546662569046, -0.022046109661459923, 0.05334126204252243, -0.013236453756690025, 0.017432574182748795, 0.019464727491140366, -0.020508265122771263, -0.019816234707832336, -0.0031333595979958773, 0.06507281959056854, -0.00811762548983097, 0.00416865898296237, -0.006947765126824379, 0.01800377480685711, -0.03299776464700699, -0.04723381623625755, -0.04552021995186806, -0.03154779598116875, 0.007310257293283939, -0.011017562821507454, -0.034689392894506454, 0.015499282628297806, 0.04534446448087692, -0.00448446674272418, -0.002014302648603916, 0.03207505866885185, -0.01497202180325985, -0.011720577254891396, -0.028538012877106667, 0.023594940081238747, -0.009084271267056465, -0.023704785853624344, 0.013302361592650414, 0.015817835927009583, 0.0529458150267601, -0.047145940363407135, 0.00983122456818819, 0.010457348078489304, -0.026341091841459274, -0.00020115564984735101, 0.04591566324234009, 0.013159560970962048, 0.0058328271843492985, -0.015103837475180626, 0.006612734403461218, 0.013873561285436153, 0.02724182978272438, 0.02805469185113907, -0.048991356045007706, -0.025813831016421318, -0.010160762816667557, 0.01763029769062996, -0.010858286172151566, 0.0006058698054403067, 0.016411006450653076, -0.009243547916412354, 0.01107797771692276, 0.06199713051319122, 0.014851191081106663, 0.03396441042423248, -0.003825390012934804, -0.062216825783252716, -0.01982721872627735, -0.027439553290605545, 0.004242805298417807, 0.014290976338088512, 0.044070251286029816, -0.03556816279888153, -0.01492808386683464, -0.00807917956262827, 0.015587160363793373, -0.013335315510630608, 0.0413680374622345, -0.025945646688342094, 0.004948566202074289, 0.010968131944537163, 0.03176748752593994, -0.02388053946197033, -0.003973682411015034, -0.006793980486690998, 0.005269865971058607, -0.022628294304013252, 0.0214309711009264, -0.0660834088921547, -0.043411172926425934, 0.021288171410560608, -0.021024541929364204, -0.002424852456897497, 0.03064705803990364, -0.0268463846296072, 0.021211279556155205, -0.04798077046871185, 0.004105497617274523, -0.02028857171535492, 0.0027763599064201117, -0.01744355820119381, 0.004533897154033184, -0.009056810289621353, 0.009100748226046562, -0.04055517539381981, 0.015037929639220238, -0.0211343877017498, 0.003237713361158967, -0.013434176333248615, 0.04327935725450516, 0.003608444007113576, -0.02880164422094822, -0.04631111025810242, -0.03455758094787598, 0.0016998682403936982, 0.016806451603770256, -0.012522454373538494, -0.02273814007639885, -0.01512580644339323, -0.006398534867912531, -0.011478915810585022, -0.00985319446772337, -0.030822811648249626, 0.009292978793382645, -0.02919709123671055, -0.00823296420276165, -0.006058011669665575, 0.036952223628759384, 0.05566999688744545, 0.029416782781481743, 0.009232563897967339, 0.031613703817129135, 0.01516974437981844, 0.01772915944457054, -0.012017162516713142, 0.004248297307640314, -0.05566999688744545, 0.008611933328211308, -0.03154779598116875, -0.05971233546733856, 0.013522053137421608, 0.06502888351678848, -0.03774311766028404, 0.04433388262987137, 0.009875163435935974, 0.00021917728008702397, -0.04578385129570961, -0.024781277403235435, 0.005684535019099712, -0.024429770186543465, -0.04319148138165474, 0.04767320305109024, 0.03679843991994858, 0.055494245141744614, 0.02456158585846424, -0.08664659410715103, -0.006629211362451315, -0.05637301132082939, -0.029614506289362907, -0.0059646423906087875, -0.008573487401008606, -0.0221779253333807, -0.0036359054502099752, -0.04466341808438301, 0.034623488783836365, 0.010946162976324558, -0.014126206748187542, 0.04591566324234009, -0.0058328271843492985, -0.02649487741291523, 0.010589162819087505, 0.04508083313703537, 0.00013267347821965814, 0.011995192617177963, 0.02350706234574318, -0.02232072502374649, -0.04088471457362175, -0.015894729644060135, -0.017487498000264168, -0.02346312440931797, 0.0074750264175236225, -0.03178945928812027, -0.047541387379169464, 0.009556610137224197, 0.021145371720194817, -0.017366666346788406, 0.01700417511165142, 0.04308163747191429, -0.028999367728829384, 0.0064369807951152325, -0.008051718585193157, -0.048244401812553406, 0.04466341808438301, 0.0010284340241923928, -0.04165363684296608, -0.01569700613617897, -0.031152350828051567, -0.04079683870077133, -0.009617025032639503, -0.07104845345020294, -0.0012680357322096825, 0.0007558783981949091, 0.007139995694160461, -0.006810457445681095, 0.01113839354366064, -0.03178945928812027, -0.022441556677222252, 0.016564790159463882, -0.00829338002949953, -0.03033948875963688, 0.024012355133891106, 0.0021667140536010265, -0.0001446878886781633, 0.04343314468860626, -0.010885747149586678, -0.011775501072406769, 0.007540933787822723, 0.0037539901677519083, -0.007200411055237055, 0.0051160817965865135, -0.01964048109948635, 0.015037929639220238, 0.04198317602276802, 0.04947467893362045, -0.024781277403235435, 0.002728302264586091, -0.005297327414155006, -0.0052643739618361, 0.02068401873111725, -0.005074889399111271, 0.010440871119499207, -0.03247050195932388, 0.07096057385206223, 0.0013593453913927078, -0.01190731581300497, 0.00614039646461606, -0.029262997210025787, -0.02152983285486698, 0.005302819889038801, 0.04644292593002319, -0.036930255591869354, 0.05408821254968643, 0.04037942364811897, 0.015729960054159164, -0.04538840427994728, 0.015356482937932014, 0.029658444225788116, -0.000665255356580019, 0.019717372953891754, 0.031635671854019165, -0.00466571282595396, -0.004877166356891394, -0.023199493065476418, -0.02842816710472107, -0.016345098614692688, -0.00651936512440443, -0.01175353117287159, -0.01175353117287159, 9.276845230488107e-05, -0.020629094913601875, -0.036139361560344696, -0.028559982776641846, 0.059932027012109756, -0.0020348988473415375, 0.004424051381647587, -0.028867552056908607, 0.002479775343090296, -0.025264600291848183, -0.010210193693637848, -0.008002287708222866, 0.037281762808561325, -0.04688230901956558, -0.02421007864177227, 9.92047498584725e-05, -0.03222884237766266, -0.030888719484210014, 0.024781277403235435, 0.02605549246072769, -0.009545625187456608, 0.004283997230231762, 0.0013112876331433654, 0.004075289703905582, -0.005909719504415989, -0.02140900306403637, 0.005821842700242996, -0.016619713976979256, -0.01134710106998682, -0.05211098492145538, 0.008622918277978897, -0.003847359213978052, 0.0249790009111166, -0.025110816583037376, 0.02379266358911991, -0.008600948378443718, -0.04956255480647087, 0.03969837725162506, -0.022079063579440117, 0.016180329024791718, -0.011198808439075947, -0.011555808596313, -0.021914293989539146, -0.012225870043039322, -0.0068708728067576885, -0.016707589849829674, 0.010083870962262154, 0.025616107508540154, 0.00585479661822319, -0.007628811057657003, -0.012434577569365501, 0.00823296420276165, -0.03945671394467354, 0.00567355053499341, 0.020156757906079292, -0.020299557596445084, -0.004888150840997696, 0.027549399062991142, 0.008848102763295174, 0.01477429922670126, 0.007755133789032698, 0.003589221043512225, -0.018047712743282318, -0.00957308616489172, 0.010166255757212639, -0.004275759216398001, 0.021650664508342743, -0.05936082452535629, 0.03572194650769234, -0.0063216425478458405, -0.020332511514425278, 0.018421189859509468, -0.03475530073046684, -0.007442072499543428, -0.013335315510630608, 0.03602951765060425, 0.008551518432796001, -0.005555465817451477, -0.018849588930606842, -0.030075859278440475, 0.020442357286810875, -0.021892325952649117, -0.055889688432216644, -0.02456158585846424, -0.019508665427565575, -0.024737339466810226, 0.02057417295873165, -0.003575490089133382, 0.009095256216824055, -0.009880655445158482, -0.009402825497090816, -0.0636228546500206, 0.05606544390320778, 0.016520852223038673, 0.013434176333248615, 0.006662165280431509, -0.022913893684744835, -0.005986611824482679, 0.0202006958425045, 0.01746552810072899, 0.04235665127635002, -0.010468332096934319, 0.0049293432384729385, 0.001929171965457499, 0.00984220951795578, 0.0007284168968908489, 0.00021969217050354928, -0.006360088475048542, 0.04149985313415527, -0.03225081041455269, -0.00234658713452518, 0.012456546537578106, -0.07311355322599411, -0.0443558506667614, -0.0062667191959917545, -0.008870071731507778, -0.013192514888942242, 0.0024481946602463722, 0.009595056064426899, 0.0049293432384729385, 0.0018522796453908086, 0.010468332096934319, -0.004871673882007599, 0.01665266789495945, 0.004621773958206177, 0.018816635012626648, 0.02686835266649723, 0.013950453139841557, -0.014796268194913864, -0.031108412891626358, 0.026648661121726036, 0.02096961811184883, 0.0134231923148036, 0.0014540875563398004, -0.015806851908564568, -0.026385029777884483, 0.016707589849829674, -0.03559013083577156, 0.007733164820820093, 0.024825215339660645, -0.04343314468860626, 0.00737616466358304, 0.008474625647068024, 0.0015392183559015393, 0.0004163853300269693, -0.021167341619729996, 0.029438750818371773, -0.010243147611618042, -0.010902224108576775, 0.020211679860949516, -0.008260426111519337, 0.03798477724194527, -0.03932489827275276, 0.019695403054356575, 0.003053721273317933, -0.032009150832891464, 0.044487666338682175, -0.03438182547688484, -0.03717191517353058, -0.005107843317091465, 0.005236912053078413, 0.006025057751685381, -0.01667463593184948, 0.0033530518412590027, -0.045168712735176086, 0.0042098513804376125, 0.021562786772847176, 0.009814747609198093, -0.01650986634194851, -0.018926480785012245, 0.005047427956014872, -0.0008870071615092456, 0.02076091058552265, 0.005788888782262802, -0.015554206445813179, -0.026253215968608856, -0.012445561587810516, -0.0299440436065197, -0.004487212747335434, -0.02155180275440216, 0.023397216573357582, 0.02537444606423378, -0.0036221747286617756, -0.0016051259590312839, -0.00699719600379467, -0.012533438391983509, -0.05487910658121109, 0.01548829860985279, -0.04191726818680763, -0.0011437723878771067, 0.0020760910119861364, -0.03174551948904991, 0.03660071641206741, -0.0025552946608513594, -0.014532637782394886, -0.005181989166885614, 0.04762926325201988, -0.015279591083526611, 0.0012714684708043933, -0.005536242853850126, -0.022309741005301476, 0.03222884237766266, -0.005376966204494238, -0.007046626415103674, 0.0008265918004326522, 0.0058328271843492985, -0.04573991149663925, 0.004948566202074289, -0.0007956976187415421, -0.010325532406568527, 0.0002907488669734448, -0.020442357286810875, 0.010512270964682102, 0.06107442453503609, 0.00340248248539865, -0.03407425805926323, -0.030954627320170403, -0.008518564514815807, -0.02232072502374649, 0.011248239316046238, 0.015642082318663597, 0.029065275564789772, 0.04156576097011566, -0.03247050195932388, 0.025572169572114944, -0.019981004297733307, 0.02066204883158207, 0.008952456526458263, 0.001786372042261064, -0.005799873266369104, -0.006750042084604502, 0.013642883859574795, -0.009150179103016853, 0.03216293454170227, 0.005986611824482679, -0.001500772195868194, 0.03334927186369896, 0.019464727491140366, -0.03365684300661087, 0.015312545001506805, -0.0041109900921583176, 0.010605639778077602, 0.0019044565269723535, -0.012247839011251926, 0.03664465621113777, -0.015510267578065395, 0.015587160363793373, 0.017619311809539795, 0.005816350225359201, 0.05523061379790306, -0.023704785853624344, -0.028208475559949875, -0.02959253638982773, 0.010583670809864998, 0.0219911877065897, -0.0012996165314689279, 0.01663069799542427, -0.046223234385252, 0.06393042206764221, 0.027834998443722725, 0.03264625743031502, -0.031174320727586746, 0.009496194310486317, 0.036117393523454666, 0.0048140049912035465, 0.032778073102235794, 0.02341918647289276, -0.010276101529598236, -0.001478802994824946, -0.01891549676656723, -0.005522511899471283, -0.011775501072406769, 0.00812861043959856, -0.004473481792956591, -0.01139103900641203, 0.02122226357460022, 0.0007545053376816213, -0.0019195603672415018, 0.017476512119174004, 0.049782246351242065, -0.014510667882859707, 0.023309340700507164, 0.007030149456113577, -0.049738310277462006, 0.01783900521695614, 0.012028146535158157, 0.038380224257707596, 0.014950052835047245, 0.01982721872627735, -0.0175863578915596, 0.03493105620145798, 0.05944870412349701, 0.010863778181374073, -0.010407917201519012, -0.044927049428224564, -0.03341517969965935, 0.020255617797374725, 0.04013776034116745, -0.001947021926753223, 0.010770409367978573, 0.011852392926812172, 0.04310360550880432, 0.0014348644763231277, 0.010720978491008282, -0.012258823029696941, 0.0028752214275300503, 0.0019895872101187706, -0.01681743562221527, 0.011132900603115559, -0.030581150203943253, -0.004879912361502647, -0.05769116431474686, 0.016520852223038673, -0.02076091058552265, -0.0033860057592391968, -0.020299557596445084, 0.014697406440973282, 0.004555866587907076, 0.012094054371118546, 0.034228041768074036, 0.01133611612021923, 0.01497202180325985, -0.05180341377854347, 0.04382858797907829, 0.005000743083655834, -0.00803524162620306, -0.027153953909873962, -0.022847985848784447, 0.012181931175291538, -0.014950052835047245, 0.020002972334623337, -0.007958348840475082, 0.008584471419453621, 0.0002577950363047421, -0.017915897071361542, -0.015070883557200432, 0.028472106903791428, -0.007969333790242672, -0.005308312363922596, 0.024473708122968674, 0.048683784902095795, -0.01735568232834339, 0.022957831621170044, 0.01285199262201786, -0.008331825956702232, 0.010693516582250595, -0.020519249141216278, 0.004448766354471445, 0.023309340700507164, 0.006107442546635866, 0.0183333121240139, -0.03831431642174721, 0.005173750687390566, 0.004470735788345337, -0.011380054987967014, -0.012731161899864674, -0.003677097847685218, 0.0075738877058029175, -0.007299272809177637, 0.015510267578065395, -0.036974191665649414, 0.005393443163484335, 0.011984208598732948, 0.06164562329649925, -0.016872359439730644, 0.059668395668268204, -0.03145992010831833, 0.029460720717906952, 0.0359196700155735, 0.03859991580247879, 0.0069697340950369835, 0.02227678708732128, -0.019959034398198128, -0.00307019823230803, 0.0096884248778224, 0.020420387387275696, -0.0042235818691551685, -0.02719789184629917, 0.006524857599288225, 0.004429543390870094, -0.034667424857616425, 0.03723782300949097, 0.038819607347249985, -0.00766176450997591, 0.0003827449691016227, -0.032009150832891464, -0.003138852072879672, 0.02689032256603241, -0.007744149304926395, -0.02458355389535427, 0.03745751455426216, 0.05298975482583046, -0.005816350225359201, 0.01306070014834404, 0.023397216573357582, -0.03135007247328758, -0.020629094913601875, 0.017882943153381348, 0.033546995371580124, -0.028472106903791428, 0.024913093075156212, -0.010072886012494564, 0.02757136896252632, -0.03249247372150421, 0.03240459784865379, 0.03295382484793663, 0.027000168338418007, 0.017915897071361542, 0.03337123990058899, 0.053956396877765656, -0.03528256341814995, -0.0043114591389894485, 0.029746320098638535, -0.02572595328092575, 0.01398340705782175, 0.023309340700507164, 0.028889521956443787, 0.00197036424651742, -0.0008883802220225334, 0.0249790009111166, 0.01384060736745596, -0.008106641471385956, 0.005242404527962208, -0.007293780334293842, -0.03363487124443054, 0.015202698297798634, 0.005651581101119518, -0.02605549246072769, -0.0006834486266598105, -0.026385029777884483, 0.029306937009096146, 0.00915567111223936, 0.04431191086769104, 0.014862176030874252, 0.010484809055924416, 0.014027345925569534, -0.011121916584670544, -0.019761310890316963, 0.038819607347249985, 0.017718173563480377, -0.06059110164642334, -0.013115623034536839, 0.025286570191383362, 0.015114821493625641, 0.006415011361241341, -0.01993706449866295, -0.02728576771914959, 0.007744149304926395, 0.03870976343750954, -0.011852392926812172, -0.019552603363990784, 0.003429944161325693, 0.0015776643995195627, -0.03156976401805878, 0.017784081399440765, 0.007656272500753403, 0.0032953827176243067, 0.022496478632092476, 0.006409519352018833, -0.016037529334425926, 0.045212648808956146, -0.036974191665649414, 0.02381463162600994, 0.022584356367588043, -0.007469533942639828, 0.03888551518321037, 0.005267119966447353, -0.0024015100207179785, -0.008227472193539143, -0.01403832994401455, -0.002084329491481185, 0.014104237779974937, -0.031591735780239105, 0.014345899224281311, -0.00660724239423871, -0.059272948652505875, 0.008282395079731941, -0.004012128338217735, -0.002265575574710965, -0.011017562821507454, -0.011165854521095753, 0.0299440436065197, 0.040665023028850555, 0.01170959323644638, -0.010429886169731617, -0.01688334345817566, -0.04503689706325531, -0.00886457972228527, -0.007436580024659634, 0.005937180947512388, -0.010254132561385632, -0.007722179871052504, -0.03528256341814995, -0.024671431630849838, -0.01621328294277191, -0.013533038087189198, 0.007019164972007275, 0.002814806066453457, -0.005302819889038801, 0.001471937634050846, -0.02344115450978279, -0.018014758825302124, 0.015279591083526611, 0.035370439291000366, -0.0077057029120624065, 0.040686991065740585, -0.01086927019059658, 0.019574573263525963, 0.0009721379028633237, 0.01671857386827469, 0.005695519503206015, -0.0219911877065897, -0.03644693270325661, 0.020211679860949516, -0.005503288935869932, 0.01607048325240612, -0.03831431642174721, -0.015609129332005978, -0.03396441042423248, 0.025154754519462585, 0.026802444830536842, 0.005607642699033022, -0.042532406747341156, -0.03486514836549759, 0.007980318740010262, 0.0009659590432420373, -0.009880655445158482, -0.012335715815424919, -0.001500772195868194, -0.02985616773366928, 0.012401623651385307, 0.01289593055844307, 0.003981920890510082, 0.013708791695535183, 0.016916297376155853, -0.015993591398000717, 0.0028587444685399532, -0.007683733943849802, -0.02161771059036255, 0.011885346844792366, -0.02176051028072834, -0.021321125328540802, -0.014444760978221893, 0.0010675666853785515, -0.007656272500753403, 0.017553405836224556, -0.006618226878345013, -0.014247037470340729, 0.03365684300661087, 0.03266822546720505, 0.0013524799142032862, 0.01363189984112978, -0.0064699347130954266, -0.002169460291042924, 0.0077057029120624065, -0.0351727157831192, 0.049738310277462006, 0.0052451505325734615, 0.00014657586871180683, 0.044180095195770264, 0.01650986634194851, -0.0057779042981565, 0.001455460675060749, -0.01578488200902939, 0.011012070812284946, 0.011687624268233776, -0.0340522862970829, 0.009485209360718727, 0.02612140029668808, -0.008617425337433815, -0.005722981411963701, -0.0013051088899374008, 0.03903929889202118, -0.0009659590432420373, 0.017707189545035362, 0.006700611207634211, 0.04123622179031372, -0.005948165897279978, 0.02306767925620079, -0.010078378953039646, 0.013708791695535183, -0.011248239316046238, -0.007815549150109291, 0.0072718109004199505, -0.0242320466786623, 0.005706504452973604, -0.00938634853810072, -0.012170946225523949, 0.0012700953520834446, 0.0036798438522964716, 0.02464946173131466, 0.009759824723005295, -0.014236053451895714, 0.01611442118883133, 0.008990902453660965, 0.028977397829294205, -0.008002287708222866, 0.002746152225881815, -0.008853594772517681, -0.030493274331092834, -0.038468100130558014, 0.018432173877954483, -0.018421189859509468, -0.0009048571810126305, 0.03139401227235794, -6.371931522153318e-05, 0.019991988316178322, 0.03260231763124466, 0.019223066046833992, -0.009759824723005295, 0.024122200906276703, 0.017663251608610153, -0.030207674950361252, -0.020211679860949516, 0.005635104142129421, 0.00538795068860054, -0.005420904606580734, 0.009649978950619698, -0.0009831225033849478, 0.015620113350450993, 0.019387833774089813, -0.00663470383733511, 0.024495678022503853, -0.0260994303971529, -0.012555408291518688, -0.028516044840216637, 0.0006450025248341262, -0.037699177861213684, -0.028625890612602234, 0.034315917640924454, 0.029812227934598923, 0.00660724239423871, -0.022913893684744835, -0.005442873574793339, -0.0034271979238837957, -0.0003834314993582666, -0.02383660152554512, -0.05417609214782715, 0.005187481641769409, 0.038424160331487656, -0.03635905683040619, -0.0028230445459485054, -0.02308964729309082, 0.02759333699941635, 0.021112417802214622, 0.00251272926107049, 0.0387536995112896, -0.01363189984112978, -0.009243547916412354, -0.0424884669482708, 0.006673149764537811, 0.017289774492383003, -0.003756736172363162, -0.018487095832824707, 0.02159574069082737, -0.004923850763589144, 0.0124895004555583, 0.009677440859377384, -0.06195319443941116, 0.002283425536006689, 0.017531435936689377, 0.024715369567275047, -0.006211796309798956, -0.015059898607432842, 0.0016339605208486319, -0.006612734403461218, -0.010094855912029743, -0.008298872038722038, 0.008513071574270725, 0.0007716687978245318, 0.0065523190423846245, -0.04396040365099907, 0.018651865422725677, 0.010627608746290207, 0.010688024573028088, 0.01642199046909809, 0.02873573638498783, 0.013137592002749443, 0.019783280789852142, 0.03646890074014664, -0.021650664508342743, -0.009995994158089161, 0.03862188383936882, 0.04358692839741707, 0.00023548255558125675, -0.0077057029120624065, 0.017300758510828018, -0.0023095139767974615, 0.005234166048467159, 0.04793683439493179, 0.0020815834868699312, -0.010720978491008282, -0.017157958820462227, 0.010539731942117214, 0.049738310277462006, 0.008655872195959091, 0.00928199477493763, 0.025572169572114944, -0.006305165588855743, -0.0029905596747994423, 0.02178248018026352, 0.010808855295181274, -0.031218258664011955, 0.004750843159854412, -0.035765886306762695, 0.023111617192626, -0.027088046073913574, 0.041060466319322586, -0.0033640365581959486, 0.032734133303165436, -0.010363978333771229, 0.03714994713664055, -0.021727556362748146, -0.01686137542128563, 0.031108412891626358, -0.026582753285765648, -0.013939468190073967, 0.005286342930048704, 0.030141767114400864, -0.022463524714112282, 0.005302819889038801, 0.031591735780239105, 0.013587960973381996, -0.0020513758063316345, -0.0031196288764476776, -0.01029807049781084, -0.02642896957695484, -0.002099433448165655, -0.01403832994401455, -0.04209301993250847, 0.009078779257833958, -0.001193203148432076, 0.015620113350450993, 0.027834998443722725, -0.047892894595861435, -0.022331709042191505, -0.010797870345413685, 0.020024942234158516, -0.008084672503173351, -0.020607126876711845, -0.04960649460554123, 0.01403832994401455, -0.0011485781287774444, -0.015795867890119553, 0.0052643739618361, 0.0004922478110529482, -0.005278104450553656, -0.0387536995112896, 0.010814347304403782, -0.021837402135133743, 0.008227472193539143, -0.009803763590753078, -0.022935863584280014, 0.03644693270325661, 0.0202006958425045, -0.003141598077490926, -0.025220662355422974, 0.003237713361158967, -0.0034519133623689413, -0.0014925337163731456, -0.015971621498465538, 0.0018234450835734606, 0.029043305665254593, -0.006217288784682751, 0.02388053946197033, -0.005036443006247282, 0.01760832779109478, -0.0014774298761039972, -0.019299957901239395, -0.005050173960626125, 0.01306070014834404, -0.011143885552883148, 0.025154754519462585, 0.004866181872785091, -0.0067390576004981995, -0.05874568969011307, -0.025835800915956497, 0.01154482364654541, 0.03886354714632034, 0.031613703817129135, -0.0007462668581865728, 0.04354298859834671, 0.027373645454645157, -0.01686137542128563, 0.011072485707700253, 0.018344296142458916, 0.010748439468443394, 0.0050282045267522335, -0.01213799323886633, -0.002636306220665574, -0.018882542848587036, -0.026187308132648468, 0.0024989985395222902, 0.026582753285765648, -0.005371473729610443, -0.001175353187136352, 0.012621315196156502, 0.00911722518503666, -0.012720176950097084, -0.022474510595202446, -0.007727672345936298, 0.00272281002253294, 0.002894444391131401, -0.04321344941854477, -0.0014705645153298974, -0.06010777875781059, 0.015070883557200432, 0.016619713976979256, -0.025506261736154556, 0.009979517199099064, 0.044883113354444504, -0.017476512119174004, -0.0023067679721862078, -0.0026157100219279528, -0.03668859228491783, -0.014433776028454304, 0.01211602333933115, -0.025594139471650124, 0.013555007055401802, -0.007134503219276667, 0.0038555976934731007, 0.03668859228491783, -0.043301329016685486, 0.017904913052916527, -0.041038498282432556, 0.0011169974459335208, -0.0010455974843353033, -0.0012659761123359203, 0.030053889378905296, -0.005269865971058607, -0.03304170444607735, -0.005887750536203384, -0.006958749610930681, -0.026385029777884483, 0.006733565125614405, 0.035084839910268784, -0.011863377876579762, 0.021046509966254234, -0.026714568957686424, 0.004805766511708498, -0.009474225342273712, -0.01648789830505848, 0.014719375409185886, 0.005338519811630249, 0.00510235084220767, -0.011599746532738209, -0.01719091273844242, -0.005382458213716745, -0.003086675191298127, -0.003237713361158967, 0.01798180490732193, 0.01247851550579071, -0.011292178183794022, 0.030405396595597267, -0.019596541300415993, -0.032778073102235794, -0.0008053091587498784, -0.015773897990584373, -0.01268722303211689, 0.02502293884754181, -0.006508380640298128, -0.014378853142261505, 0.01010034792125225, 0.01933291181921959, 0.0006793293869122863, -0.00901287142187357, -0.029636474326252937, 0.022540416568517685, 0.022188909351825714, -0.024407800287008286, 0.01134710106998682, 0.004344412591308355, 0.01533451396971941, -0.00011284969514235854, 0.03337123990058899, 0.027088046073913574, 0.006508380640298128, -0.006695119198411703, -0.004382858984172344, -0.021562786772847176, 0.021628694608807564, -0.0124895004555583, -0.02425401657819748, -0.0004201612900942564, -0.027373645454645157, 0.010490301065146923, 0.013236453756690025, -0.004778305068612099, 0.023572970181703568, -0.050177693367004395, -0.001986841205507517, -0.008924994617700577, 0.0022985294926911592, -0.004506435710936785, -0.0027420329861342907, 0.0019621257670223713, 0.016949251294136047, 0.02500096894800663, -0.010830824263393879, -0.0017204643227159977, 0.025923676788806915, 0.021002572029829025, 0.023551002144813538, 0.01190731581300497, -0.027878936380147934, 0.031174320727586746, 0.023353278636932373, 0.01916814222931862, -0.00911722518503666, 0.003863836172968149, 0.0432354211807251, 0.009847701527178288, 0.004489958751946688, 0.006239257752895355, 0.0048442124389112, -0.03664465621113777, 0.031943242996931076, 0.01304971519857645, -0.020629094913601875, 0.018805650994181633, -0.0105671938508749, -0.019739342853426933, -0.0041768974624574184, 0.010177239775657654, -0.005489558447152376, 0.02381463162600994, -0.01403832994401455, -0.008238456211984158, -0.004514674190431833, 0.011874361895024776, 0.038072653114795685, -0.0018934719264507294, -0.004822243470698595, -0.019651465117931366, 0.009518163278698921, 0.026692599058151245, -0.013544023036956787, -0.015301560051739216, 0.035062871873378754, -0.02533050812780857, -0.003243205836042762, -0.019816234707832336, -0.013071684166789055, -0.006931288167834282, 0.0484640933573246], [0.02722017467021942, 0.047323040664196014, 0.03240497037768364, -0.006018486805260181, -0.02674883045256138, 0.03047245554625988, -0.03742479532957077, -0.0003754189528990537, 0.019124824553728104, 0.024368537589907646, -0.023555468767881393, -0.002611546078696847, 0.031368013471364975, 0.019148392602801323, -0.014340672641992569, 0.040323566645383835, 0.05142374336719513, -0.006321915425360203, -0.01336263120174408, 0.035303741693496704, 0.03483239933848381, 0.08413508534431458, -0.0031727412715554237, 0.03299415111541748, -0.003800219390541315, -0.0007850840920582414, 0.0032139839604496956, -0.008737558498978615, 0.07145590335130692, 0.012608479708433151, 0.0668838620185852, -0.0241328664124012, 0.021823273971676826, 0.021139824762940407, -0.0019737572874873877, 0.01048742700368166, 0.01265561394393444, 0.007859678007662296, -0.029977543279528618, -0.06433859467506409, -0.045909006148576736, 0.010016081854701042, 0.03728339076042175, -0.04996257275342941, -0.04374082013964653, 0.05797543749213219, -0.021010205149650574, -0.021729005500674248, 0.012243187054991722, 0.006604722235351801, 0.02190575934946537, 0.042208947241306305, 0.00546465627849102, -0.006675424054265022, 0.006215862464159727, -0.02542906440794468, -0.03959298133850098, 0.027102340012788773, -0.004197916481643915, 0.02788005769252777, 0.007211579009890556, -0.033276960253715515, -0.07310561090707779, 0.01933692954480648, -0.01494163740426302, -0.00016828491061460227, -0.0021519847214221954, -0.01492985337972641, -0.03617573156952858, 0.02731444500386715, 0.01037548203021288, -0.003001878736540675, 0.030590292066335678, -0.04840713366866112, -0.030236784368753433, -0.002811867743730545, -0.005102309864014387, 0.022459590807557106, -0.013786842115223408, 0.0052083623595535755, -0.04185543954372406, 0.010617046616971493, -0.013409766368567944, 0.021670088171958923, -0.047959357500076294, 0.046663157641887665, -0.05161228030920029, -0.009421008639037609, -0.004598559811711311, -0.03231070190668106, -0.10237614065408707, -0.045319825410842896, -0.0024730884470045567, 0.020786315202713013, -0.019525468349456787, -0.004215592052787542, -0.018241053447127342, -0.00840761698782444, -0.021257661283016205, 0.05533590540289879, 0.047275908291339874, 5.058673559688032e-05, -0.00635726610198617, -0.013551170006394386, 0.021387280896306038, -0.066271111369133, -0.060567837208509445, 0.015035906806588173, -0.021128041669726372, -0.002747057704254985, 0.0684392973780632, -0.035916492342948914, -0.03443175554275513, 0.09610725194215775, -0.02738514542579651, 0.01114731002599001, -0.03605789318680763, 0.03153298422694206, 0.004610343370586634, -0.005632573273032904, -0.006569371558725834, -0.022848449647426605, 0.018264619633555412, -0.06702526658773422, -0.026937369257211685, 0.0027205445803701878, -0.0009559466270729899, 0.008678640238940716, -0.011506710201501846, -0.0228131003677845, 0.008077675476670265, -0.039757952094078064, 0.03987579047679901, -0.03615216538310051, 0.00389743410050869, 0.035209473222494125, 0.002495182678103447, -0.023296227678656578, -0.015389415435492992, 0.008884853683412075, 0.01624961942434311, -0.0005932319327257574, 0.012855935841798782, 0.0103401318192482, -0.04963263124227524, -0.01960795372724533, -0.006186403334140778, 0.02660742774605751, -0.0005085371085442603, -0.01838245615363121, -0.012455292046070099, -0.0008174890535883605, -0.003912163898348808, -0.0007224835571832955, 0.016626695170998573, 0.024274269118905067, 0.07640502601861954, 0.03919233754277229, -0.009585979394614697, -0.004009378608316183, -0.017345497384667397, 0.02990684285759926, -0.02597111091017723, -0.0543932169675827, 0.025617603212594986, -0.007724166847765446, 0.009061608463525772, -0.011188552714884281, -0.009591870941221714, -0.027644386515021324, -0.054204680025577545, 0.0037118420004844666, 0.002664572326466441, -0.02531122788786888, -0.06349017471075058, 0.006598830223083496, 0.01828818768262863, 0.009857002645730972, -0.024604210630059242, 0.02738514542579651, 0.04138409346342087, 0.03921590745449066, -0.05821111053228378, -0.02092771977186203, -0.02606537938117981, 0.02599467895925045, -0.05316771939396858, -0.0067873685620725155, -0.036552805453538895, 0.013645438477396965, 0.013068040832877159, -0.023319795727729797, 0.009503494016826153, 0.03153298422694206, -0.01674453169107437, 0.005880029406398535, -0.01911304146051407, 0.003116769017651677, 0.04550836235284805, -0.007671140134334564, 0.025099122896790504, -0.02217678353190422, -0.022824883460998535, 0.037118420004844666, -0.03952227905392647, -0.007836110889911652, 0.02178792469203472, 0.04077134653925896, 0.012325672432780266, 0.0023832384031265974, 0.03688274696469307, 0.01032834779471159, -0.044070761650800705, 0.03815538063645363, 0.026253918185830116, 0.019985029473900795, 0.024073947221040726, -0.02736157923936844, 0.01877131499350071, -0.0157900582998991, -0.0336776040494442, 0.003579276381060481, -0.010128025896847248, -0.008089459501206875, -0.047181636095047, -0.001507567591033876, -0.025122690945863724, -0.006410292349755764, -0.007735950406640768, -0.002421535085886717, -0.032004326581954956, -0.012914854101836681, 0.02004394680261612, -0.029058421030640602, 0.01524801179766655, 0.043434444814920425, 0.007900920696556568, -0.03799040988087654, -0.0413605272769928, 0.04692239686846733, 0.0026395320892333984, 0.021552251651883125, -0.02542906440794468, -0.036552805453538895, -0.011353523470461369, -0.02547619864344597, -0.010958772152662277, 0.007129093632102013, 0.03558655083179474, 0.008519561029970646, 0.00890842080116272, 0.02722017467021942, 0.0030342836398631334, -0.006015541031956673, -0.004224429838359356, -0.008484210819005966, 0.0037766520399600267, 0.005927163641899824, 0.03539801016449928, -0.017439765855669975, -0.01488271914422512, 0.04770011827349663, -0.027597252279520035, -0.0133272809907794, -0.06372585147619247, -0.010628830641508102, 0.015684006735682487, -0.021210527047514915, 0.010010190308094025, 0.007417792454361916, -0.018936285749077797, 0.000651781796477735, 0.024121081456542015, -0.027644386515021324, -0.09639006108045578, 0.014753099530935287, 0.009179444052278996, -0.011777734383940697, 0.0026351131964474916, -0.013350848108530045, -0.00866685714572668, -0.02369687147438526, 0.04362298175692558, -0.04385865479707718, -0.00962133053690195, 0.0029149744659662247, 0.021128041669726372, 0.003420197404921055, 0.00681093567982316, 0.003976973704993725, 0.07541520148515701, -0.002828070195391774, 0.03483239933848381, -0.013845760375261307, 0.015306930057704449, -0.0016438157763332129, -0.01654420979321003, 0.010946988128125668, -0.0910167247056961, -0.07381263375282288, -0.05161228030920029, 0.03174508735537529, 0.00019811220408882946, -0.019266227260231972, -0.007659356575459242, 0.009639006108045578, 0.02486344985663891, -0.001071573467925191, -0.050999533385038376, -0.023272661492228508, 0.01398716401308775, -0.04906701669096947, -0.01402251422405243, -0.07004187256097794, 0.02849280647933483, 0.010016081854701042, -0.03256994113326073, -0.0028840424492955208, 0.04576760157942772, 0.010110351257026196, 0.04621538147330284, 0.01494163740426302, 0.030095379799604416, -0.03247567266225815, 0.0020636075641959906, -0.028917018324136734, 0.009026257321238518, 0.021375497803092003, -0.04070064425468445, -0.04062994197010994, -0.045319825410842896, 0.010564020834863186, 0.013751490972936153, -0.0020223648753017187, 0.02722017467021942, -0.02722017467021942, 0.021870410069823265, -0.02465134486556053, -0.042138244956731796, 0.008820043876767159, 0.0644799992442131, -0.013221228495240211, 0.045626200735569, 0.03513877093791962, -0.02846924029290676, -0.031415145844221115, -0.029435496777296066, 0.02381470799446106, 0.016662046313285828, 0.023508332669734955, -0.035775087773799896, -0.008154269307851791, -0.028209999203681946, 0.020232485607266426, -0.061887603253126144, -0.03558655083179474, 0.018323538824915886, 0.02156403474509716, 0.0042538889683783054, 0.024580642580986023, -0.028940584510564804, -0.015165526419878006, 0.00681093567982316, 0.004430643282830715, 0.07400117069482803, 0.015966812148690224, -0.02224748581647873, -0.03231070190668106, 0.04626251384615898, -0.00953295361250639, 0.042774561792612076, -0.031344443559646606, -0.008808259852230549, -0.05382760241627693, -0.008118918165564537, 0.023732222616672516, -0.020197134464979172, -0.023366929963231087, 0.0381789468228817, -0.029977543279528618, 0.025876842439174652, -0.03702415153384209, -0.00032791620469652116, 0.017510468140244484, 0.00029477477073669434, 0.004012324381619692, -0.037849005311727524, -0.03040175512433052, 0.010628830641508102, -0.0392630398273468, 0.01518909353762865, 0.04458924010396004, 0.017003772780299187, 0.020102865993976593, -0.04110128805041313, 0.020821666345000267, 0.018146783113479614, 0.05585438758134842, 0.014352455735206604, 0.0024509942159056664, -0.018712397664785385, -0.02075096406042576, -0.009014473296701908, 0.03193362429738045, 0.013562953099608421, -0.0016909502446651459, 0.013044473715126514, 0.021210527047514915, -0.00030306013650260866, -0.0493498258292675, -0.005226037930697203, 0.001739557716064155, 0.014093216508626938, 0.02342584729194641, -0.02036210522055626, 0.012502427212893963, 0.03537444397807121, -0.019219093024730682, -0.01708625815808773, -0.0583525151014328, 0.01965508796274662, 0.0024524671025574207, -0.0019398793810978532, 0.042161811143159866, 0.013504034839570522, -0.024934152141213417, 0.007011257112026215, -0.015094824135303497, 0.04897274821996689, -0.04836000129580498, -0.051140934228897095, 0.01754581928253174, -0.005049283616244793, 0.05269637331366539, -0.03306485339999199, -0.003694166662171483, -0.07169158011674881, -0.015295146033167839, -0.003921001683920622, 0.004639802500605583, -0.008242646232247353, -0.017486900091171265, 0.002075391123071313, 0.02161116898059845, 0.00438056280836463, -0.0405828058719635, -0.02971830405294895, 0.016709180548787117, 0.0355394147336483, -0.059955086559057236, 0.036411404609680176, -0.018299970775842667, -0.032687779515981674, -0.009992514736950397, 0.025570467114448547, -0.03231070190668106, -0.008472426794469357, -0.06575263291597366, -0.007329415064305067, -0.030755262821912766, 0.03381900489330292, 0.05203649029135704, 0.018889151513576508, 0.023708654567599297, -0.05415754392743111, 0.003608735278248787, 0.010911636985838413, 0.010964663699269295, 0.02469847910106182, -0.056137192994356155, 0.007429576013237238, -0.03165081888437271, 0.028162864968180656, 0.03827321529388428, 0.06240608170628548, -0.0016732749063521624, 0.04317520558834076, 0.01397537998855114, 0.016013948246836662, 0.0046722074039280415, -0.008590263314545155, 0.04133695736527443, -0.0644799992442131, -0.030613860115408897, 0.0023773463908582926, 0.06344304233789444, 0.00714676920324564, 0.0344553217291832, -0.024097515270113945, -0.011111958883702755, -0.009185336530208588, -0.0016379239968955517, -0.008331023156642914, -0.010670073330402374, 0.030613860115408897, -0.04972689971327782, -0.01718052662909031, -0.023378713056445122, 0.04546122997999191, -0.01733371429145336, 0.03325339034199715, -0.08931988477706909, 0.016320321708917618, -0.04744087904691696, 0.0023110636975616217, -0.0026498427614569664, 0.008254430256783962, -0.010982339270412922, 0.0007191693875938654, 0.030755262821912766, 0.015507251024246216, -0.009527061134576797, -0.0005228983936831355, -0.027479415759444237, -0.02467491291463375, -0.042798127979040146, 0.0222710520029068, 0.032664209604263306, -0.01454099453985691, 0.017970029264688492, 0.03193362429738045, 0.01654420979321003, 0.02161116898059845, 0.008696315810084343, -0.01801716350018978, -0.012914854101836681, 0.03605789318680763, -0.060567837208509445, 0.03424321487545967, -0.0061510526575148106, -0.011447792872786522, 0.014493859373033047, -0.03796684369444847, 0.01874774880707264, -0.025806140154600143, -0.009426900185644627, -0.02195289544761181, 0.0291762575507164, -0.00010384320194134489, -0.013833976350724697, 0.05387473851442337, -0.008513669483363628, -0.006215862464159727, -0.008006974123418331, 0.0291762575507164, -0.0037766520399600267, 0.023072339594364166, 0.018806666135787964, -0.010481535457074642, -0.006628289353102446, -0.011536169797182083, -0.03690631687641144, -0.020892368629574776, -0.025641169399023056, -0.00950938556343317, 0.0241328664124012, 0.03674134612083435, 0.011182661168277264, -0.01549546793103218, -0.008949663490056992, 0.0027986110653728247, 0.005641411058604717, -0.009456359781324863, 0.041572630405426025, -0.003199254395440221, 0.015566169284284115, -0.024121081456542015, -0.0031226607970893383, -0.03414894640445709, 0.0066930996254086494, -0.0005376279004849494, -0.043458011001348495, 0.04260959103703499, -0.019124824553728104, 0.03125017508864403, -0.014694181270897388, 0.0411248542368412, -0.05387473851442337, -0.00465747807174921, 0.04253888875246048, -0.01586076058447361, 0.02154046855866909, 0.020809883251786232, -0.014199269004166126, -0.03506806865334511, -0.008230862207710743, -0.0050934720784425735, -0.013845760375261307, -0.005759247113019228, -0.030024677515029907, 0.02254207618534565, -0.019230877980589867, 0.04206754267215729, -0.021764356642961502, -0.0021357822697609663, 0.023260876536369324, 0.010770234279334545, 0.028162864968180656, -0.030213216319680214, 0.021257661283016205, 0.00506695918738842, -0.003814948722720146, -0.018959853798151016, -0.0132683627307415, -0.009267821907997131, -0.008878962136805058, 0.035233039408922195, 0.012525994330644608, 0.018347105011343956, 0.014104999601840973, -0.03294701874256134, 0.013103391975164413, 0.03153298422694206, -0.009032148867845535, -0.004925555549561977, -0.03700058534741402, 0.008348698727786541, 0.0019222039263695478, 0.0040005408227443695, -0.0006992845446802676, -0.012879502959549427, 0.0072999559342861176, -0.005712112411856651, -0.003929839003831148, -0.029435496777296066, 0.025122690945863724, -0.012926637195050716, -0.030213216319680214, 0.024462807923555374, -0.00395340658724308, -0.03565725311636925, -0.03311198949813843, -0.0025894518475979567, -0.01642637513577938, 0.008596154861152172, 0.012001622468233109, 0.004669261630624533, -0.007924488745629787, -0.01897163689136505, 0.023366929963231087, -0.012950204312801361, 0.05656140297651291, 0.006911096628755331, -0.04051210358738899, 0.015742924064397812, 0.025900408625602722, -0.0032022004015743732, 0.014965204522013664, 0.0039062718860805035, -0.004050621297210455, 0.034031111747026443, 0.05147087574005127, -0.05915380269289017, -0.04574403539299965, 0.011901462450623512, -0.009203012101352215, -0.044070761650800705, 0.01588432677090168, -0.023390498012304306, 0.0061510526575148106, -0.0040005408227443695, 0.000704071659129113, 0.0064751021564006805, -0.01615535095334053, 0.009880569763481617, 0.011418333277106285, 0.019419414922595024, -0.00018623651703819633, 0.023237310349941254, -0.009692031890153885, 0.015990380197763443, -0.02158760279417038, -0.008266213349997997, -0.03605789318680763, 0.03492666780948639, -0.014847368001937866, -0.000659514800645411, 0.015000555664300919, -0.04873707517981529, 0.023048771545290947, -0.007129093632102013, -0.028162864968180656, -0.02981257252395153, -0.0010413778945803642, -0.01742798276245594, 0.002375873504206538, -0.03513877093791962, -0.016037514433264732, -0.012514210306107998, 0.053544797003269196, 0.00952116958796978, 0.009267821907997131, 0.029977543279528618, -0.014647047035396099, -0.02163473702967167, 0.02601824514567852, 0.011989839375019073, 0.017463333904743195, -0.016025731340050697, -0.03999362513422966, -0.006575263105332851, 0.013397982344031334, -0.03862672671675682, -0.009538845159113407, -0.041572630405426025, -0.02026783674955368, 0.02978900633752346, 0.03233426809310913, 0.05411040782928467, -0.012207835912704468, 0.020232485607266426, 0.03485596552491188, -0.032687779515981674, 0.019961461424827576, -0.02168187126517296, 0.01652064360678196, 0.02085701748728752, -0.014163917861878872, -0.004713450092822313, 0.010346023365855217, -0.012013406492769718, 0.03231070190668106, -0.02981257252395153, 0.008478318341076374, -0.012290321290493011, -0.011707032099366188, -0.01063472218811512, 0.025641169399023056, -0.02547619864344597, -7.76062224758789e-05, 0.02254207618534565, 0.005953676998615265, -0.0017631249502301216, 0.015990380197763443, -0.036505673080682755, 0.007535628508776426, 0.01738084852695465, 0.0008528399048373103, 0.034054677933454514, 0.013810409232974052, 0.007565087638795376, -0.0008012865437194705, 0.04433000087738037, -0.04840713366866112, -0.0029459064826369286, 0.03287631645798683, -0.047299474477767944, -0.010516885668039322, -0.04260959103703499, 0.011547952890396118, -0.03659994155168533, 0.007411900442093611, -0.027432281523942947, 0.019030556082725525, 0.02667812816798687, -0.06306596845388412, -0.004374671261757612, 0.005827003158628941, -0.012514210306107998, -0.01870061457157135, 0.003317090682685375, 0.002804502844810486, -0.02058599330484867, -0.004392346367239952, 0.037731170654296875, -0.02415643259882927, -0.02908198907971382, 0.029411930590867996, -0.022011812776327133, -0.013303713873028755, -0.02912912331521511, -0.016308538615703583, 0.016662046313285828, -0.01205464918166399, 0.021870410069823265, -0.00451018288731575, -0.003084364114329219, -0.009892353788018227, 0.008295672945678234, -0.007258713245391846, 0.0026778290048241615, -0.0020724451169371605, -0.016673831269145012, 0.061274852603673935, 0.033182691782712936, -0.012125350534915924, -0.012278538197278976, 0.028115730732679367, 0.006074459291994572, -0.002875204663723707, -0.005005095154047012, -0.013103391975164413, -0.013504034839570522, -0.029317660257220268, -0.03883882984519005, -0.048501402139663696, 0.026819532737135887, -0.04171403497457504, -0.047959357500076294, 0.03537444397807121, -0.0011253362754359841, 0.017439765855669975, -0.007341198623180389, -0.021575817838311195, 0.06264175474643707, 0.03700058534741402, -0.01588432677090168, 0.004085972439497709, 0.00055677630007267, 0.006333698984235525, 0.018488509580492973, 0.010982339270412922, 0.05448748543858528, 0.008254430256783962, 0.00021818120148964226, -0.017392631620168686, -0.01845315843820572, 0.004725234117358923, 0.005323253106325865, -0.013185877352952957, 0.012596695683896542, 0.003923947457224131, 0.002811867743730545, 0.00841940101236105, 0.04258602485060692, -0.0019428252708166838, -0.007824327796697617, 0.01740441471338272, -0.008525453507900238, -0.007453143130987883, 0.009809868410229683, -0.006174619775265455, -0.028304269537329674, -0.0035262499004602432, -0.031344443559646606, -0.0027411659248173237, 0.007830219343304634, 0.0064986697398126125, 0.016709180548787117, -0.0020591886714100838, 0.01588432677090168, -0.01576649211347103, -0.0074590351432561874, -0.019006988033652306, -0.02535836212337017, 0.005105255637317896, -0.02865777723491192, -0.03226356580853462, -0.004548479337245226, 0.02788005769252777, -0.016214268282055855, 0.02731444500386715, -0.0042686183005571365, -0.011436008848249912, 0.020868800580501556, -0.03806111216545105, -0.00711731007322669, -0.005850570276379585, -0.007288172375410795, -0.007005365565419197, -0.02476918138563633, -0.001355853397399187, -0.02149333246052265, -0.026772398501634598, -0.010287105105817318, -0.022718830034136772, 0.011995730921626091, 0.008590263314545155, -0.04114842042326927, -0.005013932939618826, 0.025570467114448547, -0.007883246056735516, -0.002097485354170203, -0.030024677515029907, -0.013244795612990856, 0.008171944878995419, 0.0053468202240765095, -0.016850585117936134, 0.025688303634524345, 0.013397982344031334, 0.0004212646163068712, 0.03374830260872841, 0.059295203536748886, 0.004507236648350954, -0.018417807295918465, -0.0033760087098926306, -0.042892396450042725, 0.011271038092672825, 0.000740895455237478, 0.0029385415837168694, -0.00668131560087204, 0.011683464981615543, 0.02479274943470955, -0.028209999203681946, -0.014305321499705315, -0.030920233577489853, 0.02178792469203472, -0.008342807181179523, 0.021528683602809906, 0.02124587632715702, -0.037165556102991104, 0.02670169621706009, -0.005149444565176964, -0.009332631714642048, 0.0003632670850493014, 0.007535628508776426, 0.00282659730874002, -0.019914327189326286, 0.031462281942367554, 0.010016081854701042, 0.0004904934321530163, 0.00600375747308135, -0.020892368629574776, -0.025594035163521767, 0.0458618700504303, -0.02192932739853859, -0.025264093652367592, 0.003037229645997286, -0.009639006108045578, 0.010151593945920467, 0.027502981945872307, -0.00860204640775919, -0.01940763182938099, 0.028257135301828384, 0.03674134612083435, 0.01997324638068676, -0.035751521587371826, -0.008295672945678234, 0.012113567441701889, -0.018806666135787964, -0.03233426809310913, 0.0533091239631176, -0.015224444679915905, 0.01745154894888401, -0.007529736962169409, -0.035185907036066055, -0.011919137090444565, 0.018983421847224236, 0.024957720190286636, -0.006746125873178244, -0.0074943858198821545, -0.017922895029187202, -0.009244254790246487, -0.019831841811537743, 0.021457983180880547, 0.011111958883702755, -0.005240767728537321, 0.047181636095047, 0.04079491272568703, 0.005980189889669418, -0.0033877925015985966, 0.007429576013237238, 0.035751521587371826, 0.01366900559514761, -0.02420356683433056, -0.027078771963715553, -0.001995851518586278, 0.0167209655046463, -0.005909488536417484, -0.028186433017253876, -0.012254971079528332, -0.010334239341318607, 0.01426997035741806, -0.01781684160232544, 0.030637426301836967, 0.014399590902030468, 0.04836000129580498, 0.0005987554905004799, 0.012584912590682507, -0.013339064083993435, -0.006321915425360203, -0.04819503054022789, 0.04581473767757416, 0.017286578193306923, -0.037754736840724945, 0.038367483764886856, 0.012302105315029621, -0.03921590745449066, -0.028327835723757744, -0.012950204312801361, -0.03808467835187912, 0.03867385908961296, 0.03419608250260353, 0.025051988661289215, -0.009915920905768871, 0.04897274821996689, 0.02288380078971386, 0.013940028846263885, 5.321043499861844e-05, -0.001256429124623537, -0.002548209158703685, 0.015295146033167839, -0.03862672671675682, 0.02053885906934738, 0.010175161063671112, -0.0003393316001165658, 0.033394794911146164, 0.05844678357243538, 0.019278012216091156, 0.015153742395341396, 0.0054410891607403755, -0.022600993514060974, -0.04249175265431404, 0.0065340204164385796, -0.01688593626022339, -0.007058391813188791, 0.045909006148576736, 0.012302105315029621, 0.004368779249489307, 0.0029090826865285635, -0.022058947011828423, -0.006805043667554855, 0.0033642251510173082, 0.01518909353762865, -0.012903070077300072, -0.04204397648572922, 0.017710790038108826, -0.03504450246691704, 0.00035976883373223245, 0.03478526324033737, -0.0067284503020346165, -0.003278793767094612, 0.03827321529388428, 0.0072999559342861176, 0.018076082691550255, 0.02974187210202217, 0.006516344845294952, 0.012573128566145897, 0.01454099453985691, 0.019914327189326286, 0.0004798145091626793, -0.025759005919098854, -0.024957720190286636, -0.011765950359404087, 0.02974187210202217, 0.01392824575304985, 0.014859152026474476, 0.005750409327447414, -0.010016081854701042, 0.018028946593403816, -0.042868830263614655, 0.001723355264402926, -0.03994649276137352, 0.014199269004166126, 0.013892894610762596, -0.015047689899802208, -0.028964152559638023, 0.012596695683896542, 0.018347105011343956, 0.008949663490056992, 0.015695789828896523, 0.012001622468233109, -0.04711093753576279, 0.03636426851153374, -0.002526114694774151, 0.01139476615935564, -0.016167134046554565, 0.011972163803875446, 0.013562953099608421, -0.028398538008332253, 0.005927163641899824, -0.027715086936950684, -0.02022070251405239, 0.0048843128606677055, 0.011683464981615543, 0.010711316019296646, -0.042256083339452744, -0.01124747097492218, -0.0014353928854689002, -0.04194970801472664, -0.013751490972936153, -0.01576649211347103, 0.01904233917593956, -0.023319795727729797, 0.02462777867913246, -0.021069122478365898, -0.04371725022792816, -0.013798626139760017, -0.02070382982492447, 0.011854327283799648, 0.010593479499220848, 0.009585979394614697, 0.011512602679431438, -0.0002054769720416516, -0.02033853717148304, 0.00953295361250639, -0.012160701677203178, 0.026442456990480423, -0.025806140154600143, -0.020762749016284943, -0.03252280876040459, 0.03176865354180336, -0.0004245787567924708, -0.005983136128634214, -0.005128823220729828, 0.019160175696015358, 0.0032876315526664257, -0.052319299429655075, 0.0013897313037887216, -0.025169825181365013, 0.005544195882976055, 0.0023464143741875887, -0.03813181445002556, 0.00931495614349842, 0.017922895029187202, -0.007865570485591888, 0.026489591225981712, 0.04296309873461723, -0.0005321043427102268, 0.012337456457316875, -0.018806666135787964, 0.01271453220397234, 0.0017351389396935701, -0.037141989916563034, -0.0011150256032124162, 0.006516344845294952, -0.015577953308820724, 0.03570438548922539, -0.017805058509111404, -0.002374400617554784, -0.038532454520463943, -0.012855935841798782, 0.009468142874538898, -0.0054617105051875114, 0.011430117301642895, 0.00025297972024418414, -0.018665263429284096, -0.0002065816952381283, -0.0028545833192765713, -0.05415754392743111, -0.030896667391061783, 0.012219619937241077, -0.022459590807557106, -0.011064824648201466, 0.011206228286027908, -0.009845219552516937, -0.011123742908239365, -0.04242105409502983, -0.009250146336853504, 0.01331549696624279, 0.031297311186790466, -0.000872724805958569, -0.004754692781716585, -0.006928771734237671, 0.00711731007322669, 0.010917529463768005, -0.028115730732679367, 0.07654643058776855, 0.040252864360809326, -0.04553192853927612, 0.012785233557224274, 0.013727923855185509, 0.015153742395341396, 0.024509942159056664, 0.03561011701822281, 0.0008874543127603829, -2.7295664040138945e-05, 0.009892353788018227, 0.005712112411856651, 0.026230350136756897, 0.040936317294836044, -0.022695263847708702, 0.009774517267942429, -0.01331549696624279, 0.000788029981777072, 0.006433859467506409, 0.012525994330644608, 0.02379113994538784, -0.034620292484760284, -0.00618051178753376, -0.02288380078971386, 0.010740774683654308, -0.0098157599568367, 0.013504034839570522, 0.021163390949368477, -0.022153215482831, -0.01874774880707264, 0.030708128586411476, 0.042845264077186584, -0.005732733756303787, -0.013857543468475342, 0.008619721978902817, -0.0056738159619271755, -0.01742798276245594, -0.020432807505130768, 0.018264619633555412, 0.007364766206592321, -0.005199525039643049, 0.014647047035396099, -0.0363171361386776, -0.005264334846287966, -0.007871462032198906, 0.013833976350724697, -0.003317090682685375, -0.01999681256711483, 0.02217678353190422, -0.005293793976306915, 0.009497602470219135, -0.020397456362843513, -0.023201959207654, -0.006616505794227123, -0.013515818864107132, 0.02858707681298256, -0.026843098923563957, 0.005933055654168129, -0.0010259118862450123, 0.007329415064305067, -0.011005906388163567, -0.009945380501449108, -0.0009552101837471128, 0.003912163898348808, 0.001298408256843686, 0.028775613754987717, -0.0004555107734631747, -0.03867385908961296, 0.04687526449561119, -0.02347298339009285, 0.020786315202713013, -0.008814152330160141, 0.03278204798698425, 0.007211579009890556, 0.019985029473900795, 0.019867192953824997, -0.02861064299941063, -0.004018216393887997, 0.003358333371579647, 0.03355976566672325, 0.01130638923496008, -0.026866666972637177, -0.0046722074039280415, 0.01818213425576687, -0.002023837761953473, -0.009585979394614697, -0.018783099949359894, -0.027149474248290062, 0.018299970775842667, -0.024097515270113945, 0.030566725879907608, -0.0184295903891325, 0.0008115972159430385, -0.04001719132065773, 0.007188011892139912, 0.03110877238214016, -0.015660438686609268, 0.02731444500386715, 0.03789614140987396, 0.0028810964431613684, 0.015471900813281536, -0.002305171685293317, -0.01799359731376171, 0.018323538824915886, -0.02608894743025303, -0.011141418479382992, 0.019890761002898216, 0.03374830260872841, -0.0387209951877594, -0.0021681871730834246, -0.028799181804060936, -0.027526549994945526, -0.02102198824286461, -0.025099122896790504, -0.006752017419785261, -0.03372473642230034, 0.022117866203188896, -0.00884950254112482, -0.02244780771434307, 0.008277997374534607, 0.03301772102713585, -0.017581170424818993, 0.0037030044477432966, 0.014705965295433998, -0.030637426301836967, -0.00033012565108947456, -0.018712397664785385, -0.03299415111541748, 0.0015421820571646094, -0.01026942953467369, -0.0031904166098684072, 0.010787908919155598, 0.01624961942434311, 0.0053821709007024765, -0.005385117139667273, 0.009733274579048157, -0.005046337842941284, 0.02242423966526985, 0.027173040434718132, 0.01048742700368166, 0.031438712030649185, 0.0016835855785757303, -0.008242646232247353, -0.037801872938871384, -0.0003925420460291207, 0.020739180967211723, -0.04444783553481102, 0.0031344443559646606, -0.040229298174381256, -0.030118947848677635, -0.012455292046070099, 0.039734385907649994, -0.02317839115858078, -0.004112485330551863, -0.019643304869532585, 0.025900408625602722, -0.005617843475192785, -0.004748801235109568, 0.04270385950803757, -0.004689882975071669, -0.020114649087190628, 0.018323538824915886, -0.004032945726066828, -0.0336776040494442, 0.03414894640445709, 0.04074777662754059, 0.008501886390149593, 0.00884950254112482, 0.008926096372306347, -0.020444590598344803, -0.030684560537338257, 0.011883786879479885, 0.03669421002268791, -0.0024141704197973013, 0.015471900813281536, -0.03483239933848381, 0.042892396450042725, 0.020786315202713013, -0.028846316039562225, -0.004754692781716585, 0.00521425437182188, 0.00966846477240324, 0.04451853781938553, -0.012573128566145897, -0.024533508345484734, -0.019937895238399506, -0.003361279144883156, -0.011771841906011105, 0.0192426610738039, -0.031320877373218536, -0.028728479519486427, -0.003264064434915781, 0.02197646163403988, 0.016461724415421486, 0.016379239037632942, -0.0374012291431427, 0.01489450316876173, 0.02804502844810486, 0.0042686183005571365, -0.007358874194324017, -0.0145881287753582, 0.015742924064397812, -0.007948055863380432, 0.01362187135964632, -9.887198393698782e-05, -0.007152660749852657, 0.037118420004844666, 0.008442968130111694, -0.014387806877493858, 0.005944839213043451, 0.006398508790880442, -4.453381916391663e-05, -0.0010362225584685802, 0.021717222407460213, 0.017852192744612694, 0.026277486234903336, 0.031368013471364975, 0.016555994749069214, 0.012278538197278976, 0.011494927108287811, -0.045390527695417404, 0.03997005894780159, 0.028257135301828384, -0.00565319461748004, -0.016438158228993416, 0.010204619728028774, -0.03605789318680763, 0.00036731769796460867, 0.030684560537338257, 0.006156944669783115, 0.058635320514440536, -0.027125906199216843, -0.017852192744612694, -0.021328361704945564, 0.02290736883878708, -0.02286023460328579, 0.022282836958765984, 0.001492838142439723, -0.0028604750987142324, -0.014140350744128227, 0.006710774730890989, -0.014482076279819012, -0.011182661168277264, 0.01361008733510971, -0.005868245847523212, 0.013586520217359066, -0.01706269010901451, -0.022848449647426605, 0.008985014632344246, -0.03285275027155876, -0.0012019298737868667, -0.02283666655421257, 0.01495342142879963, -0.0014368658885359764, 0.0366235077381134, -0.011683464981615543, -0.023296227678656578, -0.001802894752472639, -0.0006344746216200292, -0.0445421040058136, -0.029482631012797356, -0.021670088171958923, 0.04699309915304184, 0.019619736820459366, 0.014364239759743214, 0.023048771545290947, -0.005809327587485313, 0.03511520475149155, 0.012514210306107998, -0.02136371284723282, 0.020774532109498978, 0.016461724415421486, -0.021964678540825844, -0.015483683906495571, -0.02249494194984436, 0.006557587534189224, -0.006233538035303354, -0.001392677309922874, -0.0060921343974769115, 0.05976654961705208, 0.004778260365128517, -0.002258037216961384, -0.00824853777885437, 0.01114731002599001, 0.023013420403003693, -0.0055795470252633095, 0.03414894640445709, -0.02608894743025303, 0.02344941534101963, -0.027078771963715553, -0.03756619989871979, -0.0098746782168746, -0.002853110432624817, 0.00014573031512554735, 0.018641695380210876, 0.03928660973906517, -0.01270274817943573, 0.01271453220397234, -0.005046337842941284, -0.04397648945450783, 0.00022683478891849518, -0.009980730712413788, 0.008242646232247353, -0.017757924273610115, -0.006445643492043018, -0.01713339239358902, -0.010463859885931015, 0.02192932739853859, 0.051753684878349304, -0.019030556082725525, 0.003015135182067752, 0.03214573115110397, 0.0006830820348113775, -0.028681345283985138, -0.011983947828412056, 0.02356725186109543, -0.001250537228770554, -0.027550116181373596, 0.04513128846883774, 0.023190176114439964, 0.02283666655421257, 0.017781490460038185, 0.01266739796847105, -0.0068227192386984825, 0.07494386285543442, -0.0055795470252633095, 0.0014840003568679094, -0.001995851518586278, -0.0013477521715685725, 0.008778801187872887, -0.00019129979773424566, -0.023025205358862877, 0.01747511699795723, -0.02408573031425476, -0.004784151911735535, -0.012844151817262173, -0.019961461424827576, -0.007011257112026215, 0.007541520521044731, -0.006793260108679533, -0.008095351047813892, 0.010770234279334545, 0.007871462032198906, -0.012207835912704468, 0.011259254068136215, 0.029977543279528618, 0.029459064826369286, -0.009756841696798801, -0.03815538063645363, 0.004707558546215296, 0.038532454520463943, 0.017687221989035606, 0.009309064596891403, -0.005273172631859779, 0.029294094070792198, 0.010493318550288677, 0.037094853818416595, -0.0098746782168746, 0.023979678750038147, -0.023649737238883972, -0.007753625512123108, 0.0253347959369421, -0.007488494273275137, 0.04390579089522362, -0.010316564701497555, -0.010310672223567963, 0.012608479708433151, 0.021151607856154442, -0.00034135690657421947, 0.038956668227910995, -0.0057887062430381775, -0.024462807923555374, -0.018547426909208298, -0.0033494955860078335, 0.005933055654168129, -0.03933374211192131, -0.012773450464010239, -0.012950204312801361, -0.02922339178621769, -0.004085972439497709, -0.0027897735126316547, -0.018547426909208298, -0.006828611250966787, -0.0448484793305397, 0.003311198903247714, -0.03294701874256134, -0.005199525039643049, -0.0009323793929070234, 0.002926758024841547], [0.019117601215839386, 0.021666614338755608, 0.0322415754199028, 0.012618765234947205, -0.05176104977726936, 0.021345118060708046, -0.025857560336589813, -0.003674253821372986, 0.015340009704232216, 0.016522658988833427, 0.004096218850463629, 0.01563854329288006, 0.025122709572315216, 0.030611125752329826, -0.02470935694873333, -0.030289629474282265, 0.031116336584091187, 0.01733788475394249, -0.02918735332787037, 0.011304071173071861, 0.03258603811264038, 0.047260086983442307, -0.03412463143467903, 0.03793666884303093, -0.017556043341755867, -0.024778248742222786, 0.01357177458703518, -0.017636418342590332, 0.06191117689013481, -0.023090388625860214, 0.058925844728946686, -0.02884289249777794, 0.03171340376138687, -0.008215401321649551, 0.002775783883407712, 0.023285582661628723, 0.004581335000693798, 0.010752933099865913, 0.011510748416185379, -0.014639604836702347, 0.0007122454699128866, -0.022860746830701828, -0.0040502906776964664, -0.03203490003943443, -0.038189273327589035, 0.0621408149600029, -0.01954243704676628, -0.05084248632192612, -0.010236240923404694, 0.013525846414268017, -0.00044779968447983265, 0.0029996836092323065, -0.01682119257748127, -0.01576484553515911, 0.00804891251027584, -0.0013670807238668203, -0.016384875401854515, 0.047811225056648254, -0.04000343754887581, -0.03710996359586716, 0.04165685176849365, -0.0062117851339280605, -0.0366736464202404, 0.0019950049463659525, -0.015718916431069374, -0.01972614973783493, -0.034239452332258224, 0.010069751180708408, -0.05373596027493477, 0.020449519157409668, 0.011367222294211388, 0.012905816547572613, 0.01749863289296627, -0.030312594026327133, -0.047260086983442307, 0.01390475407242775, -0.02232109196484089, 0.014788871631026268, -0.00025188730796799064, -0.030151844024658203, -0.03828113153576851, 0.01751011610031128, 0.007882422767579556, 0.04216206073760986, -0.029026605188846588, 0.05644572153687477, -0.06397794187068939, -0.00557166151702404, 0.004064643289893866, -0.017027869820594788, -0.06227860227227211, 0.0483623631298542, -0.013020636513829231, 0.02039210870862007, -0.058420635759830475, 0.003901024116203189, 0.024158218875527382, -0.0007370036328211427, -0.0353187657892704, 0.04461921751499176, 0.029302174225449562, -0.017085280269384384, -0.04576742276549339, 0.013066564686596394, 0.02881992794573307, -0.04905128851532936, -0.07059159874916077, 0.019462062045931816, -0.01579929143190384, -0.016086341813206673, 0.09461203217506409, -0.0329764261841774, 0.01192984264343977, 0.08005280047655106, -0.02143697440624237, 0.008892842568457127, -0.03070298209786415, -0.004254097118973732, -0.011085912585258484, -0.011987253092229366, -0.006200303323566914, 0.0023380310740321875, -0.010092715732753277, -0.08064986765384674, -0.023434849455952644, -0.004300025291740894, 0.02333151176571846, 0.0017725403886288404, -0.0339638814330101, -0.06893818825483322, 0.037684064358472824, -0.05111805349588394, 0.02317076176404953, -0.004558370914310217, -0.0009709502337500453, 0.04758158698678017, 0.00030499175773002207, 0.012412087991833687, -0.0249160323292017, 0.0010829002130776644, 0.015041476115584373, -0.0005156155093573034, 0.04510146379470825, -0.0010520422365516424, -0.03141487017273903, -0.024571571499109268, -0.018290894106030464, 0.01114906370639801, 0.0190142635256052, -0.02109251357614994, -0.022860746830701828, 0.03933747857809067, 0.01697045937180519, 0.026454627513885498, -0.018072735518217087, -0.004265578929334879, 0.04154203087091446, 0.045399997383356094, 0.007692968938499689, -0.00842207856476307, -0.022171825170516968, -0.0015170648694038391, -0.00033136457204818726, -0.04071532562375069, -0.00177971669472754, -0.01097109168767929, 0.009076555259525776, -0.017268992960453033, 0.02057582139968872, -0.03862559050321579, -0.021149922162294388, -0.004165111109614372, -0.02574273943901062, -0.017900504171848297, -0.06420758366584778, -0.02985331229865551, 0.030817802995443344, 0.02542124316096306, -0.015110368840396404, -0.013445472344756126, 0.04335619509220123, 0.055619016289711, -0.02627091482281685, -0.0366736464202404, -0.008209660649299622, 0.005095156375318766, -0.0036455485969781876, 0.0049344077706336975, -0.05240404233336449, -0.009122483432292938, 0.02109251357614994, -0.028406573459506035, 0.010913682170212269, 0.03368831425905228, 0.011614086106419563, 0.026385733857750893, -0.045055534690618515, -0.013353615999221802, 0.07536812871694565, -0.01987541653215885, 0.03070298209786415, -0.015271116979420185, -0.01631598360836506, -0.00349628203548491, -0.05658350884914398, -0.0318741500377655, 0.03497430309653282, 0.09102963656187057, 0.044688109308481216, 0.022068485617637634, 0.02659241110086441, -0.012572837062180042, -0.03653585910797119, -0.01312397513538599, 0.0073255435563623905, 0.02212589606642723, 0.04303469508886337, 0.0008826820412650704, 0.001458937069401145, 0.024250075221061707, -0.04868386313319206, -0.06517207622528076, -0.03400981053709984, 0.009667879901826382, -0.003438871819525957, -0.007302579469978809, -0.05272554233670235, -0.01630450040102005, -0.008600050583481789, -0.0019548179116100073, 0.009346382692456245, -0.027005765587091446, 0.0038005562964826822, -0.056537579745054245, -0.031460799276828766, 0.0579613521695137, 0.01054625678807497, -0.03279271349310875, -0.0329764261841774, 0.0521744042634964, 0.012515426613390446, 0.011217955499887466, -0.012079109437763691, -0.008513934910297394, 0.026569446548819542, -0.041473139077425, 0.015546686016023159, 0.010161607526242733, 0.0001016340174828656, 0.0019031486008316278, -9.508567018201575e-05, -0.01768234558403492, 0.056721292436122894, -0.033206067979335785, -0.011734647676348686, -0.04748972877860069, 0.006292159669101238, -0.07330136001110077, 0.030151844024658203, -0.00096520921215415, -0.014880727976560593, 0.028085077181458473, -0.04014122113585472, -0.01594855822622776, -0.0614059641957283, -0.035984721034765244, 0.016545623540878296, 0.0027370320167392492, 0.02438785880804062, 0.002860463922843337, -0.018761657178401947, -0.013032118789851665, 0.05966069549322128, -0.053138893097639084, -0.06402387470006943, 0.004544018302112818, 0.028521394357085228, -0.005316185764968395, 0.010770156048238277, -0.0045038312673568726, -0.014892209321260452, -0.020472481846809387, 0.0274420827627182, -0.06834112107753754, -0.03497430309653282, 0.017383813858032227, 0.0039383405819535255, 0.008508194237947464, 0.008249848149716854, -0.00725091015920043, 0.06039554625749588, -0.0027915716636925936, -0.022079968824982643, -0.039727866649627686, 0.06650399416685104, 0.003602490993216634, -0.01234319619834423, 0.05745614320039749, -0.05267961323261261, -0.06158967688679695, -0.024273037910461426, -0.01699342392385006, 0.025673847645521164, 0.017579007893800735, -0.04631856083869934, 0.06076297163963318, 0.028245825320482254, 0.035755082964897156, -0.026454627513885498, -0.040600504726171494, 0.009202857501804829, 0.005164048634469509, -0.04891350120306015, -0.05819099396467209, 0.005861582700163126, 0.039865653961896896, -0.025099745020270348, -0.021023619920015335, -0.0011704507051035762, 0.01390475407242775, 0.05065877363085747, 0.023997468873858452, 0.041955385357141495, -0.021689578890800476, -0.016247089952230453, -0.005037746392190456, 0.05355224758386612, 0.03072594664990902, -0.03157561644911766, -0.026454627513885498, -0.03550247848033905, 0.0339638814330101, 0.020323215052485466, 0.01784309558570385, 0.003875189460813999, -0.04443550482392311, 0.00039756574551574886, -0.016580069437623024, -0.03522690758109093, -0.023974506184458733, 0.006280677393078804, 0.007113125640898943, 0.06333494931459427, 0.013009154237806797, -0.016201162710785866, -0.0069064488634467125, -0.03791370615363121, 0.0291643887758255, -0.005077933426946402, 0.02332002855837345, -0.03809741884469986, -0.00411918293684721, -0.04544592648744583, 0.018107181414961815, -0.02383672073483467, -0.06733070313930511, 0.019772076979279518, 0.0041938163340091705, 0.014478855766355991, 0.010201795026659966, -0.01458219438791275, -0.015512240119278431, 0.027235405519604683, 0.04032493382692337, 0.04790308326482773, 0.01380141545087099, -0.023928577080368996, -0.05125584080815315, 0.038372986018657684, -0.002714067930355668, 0.03619140014052391, -0.03674253821372986, -0.006051036529242992, -0.06200303137302399, 0.02503085322678089, -0.0009888909989967942, -0.018566463142633438, -0.0034130371641367674, 0.033734243363142014, 0.01666044443845749, 0.04514739289879799, 9.22151593840681e-05, 0.012251339852809906, 0.013560292311012745, 0.019703185185790062, 0.027740616351366043, -0.025352351367473602, -0.03368831425905228, 0.031323011964559555, 0.0207365695387125, 0.030588163062930107, 0.012630247510969639, 0.0032321950420737267, 0.04703044891357422, -0.05116398259997368, 0.015535203740000725, 0.006716995034366846, 0.05125584080815315, 0.005020523443818092, 0.029462922364473343, -0.009593246504664421, -0.028751036152243614, -0.037408497184515, -0.00216292985714972, 0.03134597837924957, 0.010999796912074089, 0.04822457954287529, 0.01853201724588871, 0.013502882793545723, -0.017395295202732086, 0.02023135870695114, 0.005669258534908295, -0.011315553449094296, 0.009610469453036785, -0.00678588729351759, -0.013112492859363556, 0.008025947958230972, -0.028383610770106316, 0.0013362227473407984, 0.013479918241500854, 0.040577538311481476, -0.021861810237169266, 0.007532220333814621, -0.0021901996806263924, 0.004601428750902414, -0.02675315923988819, 0.01294026244431734, 0.018474606797099113, 0.029026605188846588, -0.018807586282491684, -0.016890084370970726, 0.009197115898132324, -0.014800352975726128, 0.002985331229865551, -0.03566322475671768, 0.004368917550891638, -0.03476762771606445, -0.04703044891357422, -0.025995345786213875, -0.004986077081412077, 0.007273874245584011, -0.004782270640134811, -0.01800384372472763, 0.033389780670404434, 0.003051352920010686, 0.003203490050509572, -0.01718861795961857, 0.017889022827148438, 0.02677612379193306, -0.025099745020270348, -0.011137581430375576, -0.007193499710410833, -0.04252948611974716, -0.01747567020356655, -0.01184946857392788, -0.05470045283436775, 0.001094382256269455, -0.06981082260608673, 0.013284723274409771, -0.012320231646299362, 0.02129918895661831, 0.058742132037878036, -0.024479715153574944, 0.024778248742222786, -0.020024683326482773, 0.014961102046072483, 0.024273037910461426, -0.02438785880804062, 0.03669660910964012, -0.027901364490389824, -0.013445472344756126, -0.0460200272500515, 0.006303641479462385, 0.041450176388025284, 0.03791370615363121, -0.000996067188680172, 0.06328902393579483, -0.016074860468506813, -0.003625455079600215, -0.0073370253667235374, -0.01733788475394249, 0.05456266924738884, -0.05166919156908989, -0.02008209377527237, 0.024456750601530075, 0.04167981445789337, 0.042667269706726074, 0.008456524461507797, 0.0066136568784713745, -0.03651289641857147, -0.009220080450177193, -0.015558168292045593, -0.0249160323292017, -0.009811406023800373, 0.015328527428209782, -0.024824175983667374, -0.007945573888719082, 0.014800352975726128, 0.029439957812428474, -0.007497773971408606, 0.007847975939512253, 0.0019347242778167129, -0.026316842064261436, -0.0442977212369442, 0.059293270111083984, -0.014364035800099373, 0.022872230038046837, 0.01442144624888897, 0.012148001231253147, 0.01628153771162033, 0.01872721128165722, -0.02606423757970333, 0.0016003097407519817, -0.026638340204954147, 0.001979217166081071, -0.037500351667404175, -0.01345695462077856, 0.014536266215145588, -0.03345867246389389, -0.007939832285046577, 0.0360536128282547, -0.014467374421656132, 0.002615035278722644, -7.463328074663877e-05, -0.010442918166518211, -0.006165856961160898, 0.02748801000416279, -0.030312594026327133, 0.03203490003943443, -0.04105978459119797, -0.01749863289296627, 0.0011639920994639397, -0.03072594664990902, 0.015317045152187347, 0.00831299927085638, 0.02971552684903145, -0.027717651799321175, 0.03446909412741661, 0.01013290323317051, -0.013250277377665043, 0.024617500603199005, 0.019312795251607895, -0.00875505805015564, 0.005600366275757551, 0.01597152091562748, 0.011286848224699497, 0.01941613480448723, -0.02160920388996601, -0.023974506184458733, -0.032172683626413345, -0.008393373340368271, -0.00699256407096982, -0.009719549678266048, -0.0024313225876539946, 0.028865855187177658, 0.050704702734947205, 0.013927717693150043, -0.002923615276813507, -0.019312795251607895, 0.002510261721909046, 0.0063323467038571835, -0.02730429731309414, -0.004882738925516605, -0.010064010508358479, 0.014892209321260452, 0.020564338192343712, -0.0032982167322188616, -0.012584319338202477, -0.0035881383810192347, 0.0305192694067955, -0.025099745020270348, -0.034239452332258224, 0.03609954193234444, 0.006584951654076576, 0.01751011610031128, -0.013020636513829231, 0.028406573459506035, -0.06328902393579483, 0.0014194675022736192, 0.01886499673128128, 0.017716791480779648, -0.015385937876999378, 0.010224759578704834, -0.01502999383956194, 0.007153312675654888, -0.005896029062569141, -0.014800352975726128, -4.98302724736277e-05, -0.022229235619306564, -0.02695983648300171, 0.02383672073483467, 0.010867753997445107, 0.03582397475838661, -0.01731492020189762, -0.0021026490721851587, 0.031851187348365784, 0.042460594326257706, 0.011137581430375576, -0.020851390436291695, 0.014685533009469509, 0.006929412949830294, -0.0006239772774279118, -0.021333634853363037, -0.006958118174225092, 0.006958118174225092, -0.0039297291077673435, 0.009248785674571991, -0.0028776871040463448, 0.02537531405687332, -0.01149352453649044, 0.01528259925544262, -0.011987253092229366, 0.0164882130920887, -0.029738491401076317, -0.031185228377580643, -0.009375087916851044, -0.016568588092923164, -0.02229812741279602, 0.0011037114309147, -0.029554778710007668, -0.0377759225666523, -0.010879235342144966, -0.013250277377665043, -0.014455892145633698, -0.054470811039209366, 0.02764876000583172, -0.010356802493333817, -0.054838236421346664, 0.015133332461118698, 0.009231562726199627, -0.02365300804376602, -0.0005145390750840306, -0.022562215104699135, -0.034721698611974716, 0.02369893714785576, -0.004018715117126703, -0.023078905418515205, -0.026845015585422516, 0.004093348514288664, 0.02023135870695114, 0.016040414571762085, 0.05520566180348396, 0.024847140535712242, -0.045583710074424744, 0.03651289641857147, 0.003648419165983796, -0.030680019408464432, -0.0039211176335811615, 0.03710996359586716, -0.00420816894620657, 0.043516941368579865, 0.05419524386525154, -0.023997468873858452, -0.042437631636857986, -0.010689781978726387, -0.015684470534324646, -0.035272836685180664, 0.016706371679902077, -0.023274101316928864, 0.018244966864585876, 0.01543186604976654, 0.0069064488634467125, 0.036444004625082016, 0.014926656149327755, -0.013514364138245583, -0.017050834372639656, 0.042276881635189056, 0.021586241200566292, 0.004015844315290451, -0.01837126910686493, 0.027878399938344955, -0.0064758723601698875, 0.003206360386684537, -0.05382781848311424, 0.0214714203029871, -0.007423140574246645, 0.006079741753637791, -0.0017423999961465597, -0.00771593302488327, 0.016901567578315735, -0.008617273531854153, -0.0008690471295267344, -0.024801213294267654, 0.015064440667629242, -0.0002965596504509449, -0.008978957310318947, -0.008445042185485363, -0.010752933099865913, -0.032700859010219574, 0.013502882793545723, 0.0025217437651008368, 0.02762579545378685, 0.027212440967559814, -0.03295346349477768, 0.007084420416504145, 0.03609954193234444, -0.005970662459731102, -0.011011279188096523, 0.00035199636477045715, -0.025949416682124138, -0.00961621105670929, 0.006378274876624346, -0.015753362327814102, -0.053781889379024506, -0.021058065816760063, -0.01320434920489788, -0.0007814965210855007, 0.017062315717339516, 0.028039148077368736, 0.002523178933188319, 0.0014223380712792277, 0.04960242658853531, -0.0063323467038571835, -0.006142892874777317, -0.03639807552099228, -0.017900504171848297, 0.019783560186624527, -0.017636418342590332, 0.013881789520382881, -0.013319170102477074, -0.004366046749055386, 0.030657054856419563, -0.018589427694678307, -0.007072938606142998, 0.019932826980948448, -0.014203286729753017, -0.02969256229698658, 0.0197491142898798, 0.03155265375971794, -0.0012816829839721322, 0.021907737478613853, -0.0032092309556901455, -0.002907827263697982, -0.008565603755414486, -0.02746504731476307, -0.003197748912498355, -0.018095700070261955, 0.009667879901826382, -0.0037086999509483576, 0.005867323838174343, 0.022757409140467644, -0.026293877512216568, 0.007750378921627998, -0.0037747216410934925, -0.0353187657892704, 0.03035852126777172, -0.05153140798211098, -0.00445790309458971, -0.0019203716656193137, 0.02330854721367359, -0.04941871389746666, 0.006929412949830294, -0.043011732399463654, -0.02473231963813305, 0.04388436675071716, -0.011803540401160717, -0.008869878016412258, 0.029761455953121185, -0.02468639239668846, -0.00751499691978097, 0.008462266065180302, -0.013158421032130718, 0.012928780168294907, -0.016901567578315735, 0.0257197767496109, -0.03210379183292389, -0.05125584080815315, 0.01902574487030506, -0.01939317025244236, 0.017096761614084244, -0.05272554233670235, -0.018577944487333298, -0.031116336584091187, 0.006188821047544479, 0.028590286150574684, -0.02383672073483467, -0.04101385548710823, -0.023434849455952644, 0.0073829535394907, -0.02452564425766468, -0.025122709572315216, -0.001445302157662809, -0.007968537509441376, 0.04618077725172043, 0.006372533738613129, -0.0006756464717909694, -0.0011855209013447165, 0.005232940893620253, -0.00026731632533483207, 0.007842235267162323, 0.0029738491866737604, -0.004719119518995285, 0.002277750289067626, 0.00012746862194035202, -0.017119726166129112, -0.04498664289712906, 0.04018715023994446, -0.05814506486058235, -0.05855841934680939, 0.04992392286658287, 0.02948588691651821, 0.011401668190956116, -0.045744460076093674, -0.007027010433375835, 0.019129082560539246, 0.056170154362916946, -0.020036164671182632, -0.0009594681905582547, -0.004523925017565489, 0.003002554178237915, 0.01209059078246355, 0.016913048923015594, 0.028567323461174965, 0.04119756817817688, -0.022412948310375214, -0.00249016797170043, -0.04308062419295311, -0.0005888135056011379, 0.0034130371641367674, -0.01390475407242775, 0.04305766150355339, 0.024318967014551163, 0.0003521757898852229, -0.003932599909603596, 0.0023911353200674057, -0.00048152817180380225, -0.013411026448011398, 0.012216893956065178, -0.021207332611083984, -0.015868183225393295, 0.036421038210392, 0.012561354786157608, -0.035066157579422, 0.00678588729351759, -0.051393624395132065, -0.000179676033440046, -0.023767828941345215, 0.011883914470672607, 0.005531474016606808, 0.013847343623638153, 0.012894334271550179, -0.04271319881081581, -0.013250277377665043, -0.009679362177848816, -0.02503085322678089, 0.014386999420821667, -0.0579613521695137, -0.0005310444976203144, -0.0211039949208498, 0.02452564425766468, -0.002708326792344451, 0.0007951314910314977, 0.024938996881246567, -0.015156297013163567, 0.029646635055541992, -0.02109251357614994, -0.004816717002540827, 0.018474606797099113, -0.004575593862682581, 0.017406776547431946, -0.015110368840396404, 0.01114332303404808, -0.001178344595246017, 0.017533078789711, 0.011918360367417336, -0.05391967296600342, 0.026018308475613594, -0.0035881383810192347, -0.01357177458703518, 0.02695983648300171, 0.028383610770106316, 0.004153628833591938, 0.03637511283159256, -0.014742943458259106, -0.042437631636857986, 0.011975770816206932, -0.0011503571877256036, 0.0019031486008316278, 0.005844359751790762, -0.0008970345952548087, -0.02505381777882576, 0.030496306717395782, 0.0590636283159256, 0.012882851995527744, -0.013847343623638153, -0.010930905118584633, -0.013192866928875446, 0.02898067608475685, -0.03038148581981659, -0.009059331379830837, 0.020208396017551422, -0.011177768930792809, -0.017108244821429253, -0.03001406043767929, -0.01749863289296627, -0.033711276948451996, 0.004087607376277447, 0.009673621505498886, 0.00751499691978097, 0.018945369869470596, -0.04078421741724014, -0.01338806189596653, -0.01509888656437397, 0.01380141545087099, -0.013146938756108284, 0.008037430234253407, -0.0040675136260688305, 0.016212644055485725, 0.04078421741724014, -0.005083674564957619, 0.01784309558570385, 0.0038235203828662634, -0.03345867246389389, -0.04721416160464287, 0.05639979615807533, -0.023790793493390083, -0.02934810146689415, -0.0033326628617942333, -0.0032723823096603155, -0.009409533813595772, 0.038166310638189316, 0.01577632687985897, -0.006843297742307186, 0.005359243601560593, 0.030404450371861458, 0.005623330362141132, -0.03288457170128822, -0.03072594664990902, 0.0041966866701841354, -0.010201795026659966, -0.037500351667404175, 0.016419321298599243, -0.0088296914473176, -0.007405917625874281, 0.007882422767579556, -0.021861810237169266, -0.011883914470672607, 0.013238795101642609, 0.0214714203029871, -0.008749316446483135, 0.017246028408408165, -0.007256651297211647, 0.005095156375318766, -0.014191805385053158, 0.014972584322094917, 0.008324481546878815, -0.015305562876164913, 0.011860949918627739, 0.023377439007163048, -7.431931589962915e-05, 0.0003444612957537174, 0.00925452634692192, 0.04475700482726097, -0.004661709535866976, -0.026179058477282524, -0.07224501669406891, 0.032172683626413345, 0.024984925985336304, -0.015500757843255997, -0.037661101669073105, -0.010907940566539764, -0.002757125534117222, 0.010597925633192062, -0.03329792618751526, 0.0022002465557307005, 0.021379563957452774, 0.018933888524770737, 0.0006953811971470714, 0.006791628431528807, 0.011120358482003212, -0.003415907733142376, -0.042644307017326355, 0.07004046440124512, -0.01088497694581747, -0.017280474305152893, 0.017280474305152893, -0.012802477926015854, -0.022596661001443863, -0.002305020112544298, -0.009604728780686855, -0.0682951882481575, 0.029302174225449562, 0.03293050080537796, 0.0008740705088712275, -0.007847975939512253, 0.05612422525882721, 0.011723165400326252, -0.0031116337049752474, -0.023790793493390083, 0.014995547942817211, 0.01003530528396368, -0.0025360961444675922, -0.031644511967897415, 0.012297268025577068, -0.0003304675337858498, 0.018830550834536552, 0.02198811247944832, 0.029256245121359825, 0.014191805385053158, -0.005864453501999378, 0.01201021671295166, 7.46781297493726e-05, 0.01099405623972416, 0.03603065013885498, 0.01390475407242775, 0.028062112629413605, 0.011309811845421791, 0.027074657380580902, 0.03756924346089363, -0.017383813858032227, 0.005718057509511709, 0.0034331309143453836, 0.0023825238458812237, 0.017429741099476814, -0.003398684784770012, -0.035961758345365524, -0.007095902692526579, -0.031001515686511993, 0.003705829381942749, 0.020541375502943993, 0.01769382879137993, 0.0018744434928521514, -0.002485862234607339, -0.015328527428209782, 0.009886038489639759, -0.0006085482891649008, 0.0018141628243029118, 0.042644307017326355, 0.009294713847339153, 0.023744864389300346, 0.005227200221270323, -0.031024480238556862, -0.026638340204954147, 0.01345695462077856, 0.03648993372917175, 0.025995345786213875, 0.013755487278103828, 0.004667450208216906, -0.006671066861599684, 0.02176995389163494, -0.05800728127360344, -0.0018069865182042122, -0.021058065816760063, 0.03651289641857147, -0.042988769710063934, 0.039544153958559036, -0.0027011504862457514, 0.007015528157353401, -0.003309698775410652, 0.0027111973613500595, 0.012917297892272472, 0.031988970935344696, -0.02299853228032589, 0.04964835196733475, 0.010362544097006321, 0.012423570267856121, -0.024502679705619812, 0.0020222747698426247, -0.0095358369871974, -0.0312541201710701, 0.018658319488167763, -0.0022978438064455986, -0.02590348944067955, 0.003611102467402816, 0.02714354917407036, 0.008594308979809284, -0.007296838331967592, 0.01114332303404808, 0.006320864427834749, -0.010356802493333817, -0.002317937323823571, -0.0061773392371833324, 0.034721698611974716, 0.003625455079600215, 0.0038464844692498446, -0.021505866199731827, -0.04053161293268204, -0.040233079344034195, -0.04172574356198311, -0.036283254623413086, 0.00062720658024773, -0.003866577986627817, 0.026179058477282524, 0.004931537434458733, -0.026684267446398735, 0.005551567766815424, 0.004566982388496399, 0.03502023220062256, -0.0003563021309673786, -0.019163530319929123, -0.023078905418515205, -0.005907510872930288, -0.007486292161047459, 0.022699998691678047, 0.003536469303071499, 0.042139098048210144, 0.030680019408464432, -0.014524783939123154, 0.002633693628013134, -0.011269625276327133, 0.002824582625180483, -0.0015443348092958331, -0.033366817981004715, 0.004799494054168463, 0.008330222219228745, 0.00876079872250557, 0.02284926548600197, 0.017383813858032227, -0.004363176412880421, 0.014226251281797886, -0.004366046749055386, 0.001996440114453435, 0.01357177458703518, -0.019668739289045334, 0.001890231273137033, 0.01646525040268898, -0.01684415712952614, 0.012722103856503963, -0.018486088141798973, -0.0030197773594409227, -0.02865917980670929, 0.002050979994237423, 0.009593246504664421, 0.014697015285491943, 0.02505381777882576, -0.0039125061593949795, -0.013078046962618828, 0.045560747385025024, -0.010448658838868141, -0.034928373992443085, -0.0102132773026824, -0.015374455600976944, 0.0034360012505203485, -0.004489478655159473, 0.02232109196484089, -0.023228172212839127, 0.019496507942676544, -0.0442977212369442, -0.045055534690618515, 0.002117001684382558, 0.03017480857670307, 0.019255386665463448, -0.0067514413967728615, -0.026224985718727112, 0.00686052069067955, -0.01115480437874794, -0.032540109008550644, 0.06475872546434402, 0.044159937649965286, -0.014949619770050049, 0.00493727857246995, -0.00970232579857111, 0.006481613032519817, 0.026523519307374954, 0.029256245121359825, 0.005680740810930729, 0.006516059394925833, 0.010264946147799492, 0.031139301136136055, 0.034560948610305786, 0.026202021166682243, -0.0016921660862863064, -0.005270257592201233, 0.015213706530630589, 0.0046416157856583595, -0.028957711532711983, 0.015110368840396404, 0.03564026206731796, -0.00467893248423934, -0.022688517346978188, -0.03844187781214714, -0.006694030947983265, -0.008531157858669758, 0.03325199708342552, 0.02881992794573307, 0.0071877590380609035, -0.017969397827982903, -0.018807586282491684, 0.013411026448011398, 0.0002500932605471462, -0.020725088194012642, 0.009472684934735298, -0.009685102850198746, -0.04654820263385773, -0.016545623540878296, -0.010603666305541992, 0.02574273943901062, -0.011860949918627739, -0.01609782502055168, -0.055527158081531525, -0.010207535699009895, 0.002606423804536462, 0.0043488238006830215, -0.024433787912130356, -0.03874041140079498, 0.02934810146689415, -0.026982801035046577, 0.014719978906214237, 0.005709446035325527, -0.014777389355003834, -0.010310874320566654, 0.008519675582647324, 0.0020983433350920677, -0.0014381258515641093, -0.012974708341062069, -0.01501851249486208, -0.002869075397029519, -0.04340212047100067, -0.008112063631415367, -0.004842551425099373, 0.00652754120528698, -0.006917930673807859, 0.02693687193095684, -0.00583574827760458, -0.04507850110530853, 0.026523519307374954, -0.02695983648300171, 0.023905612528324127, -0.021379563957452774, 0.016706371679902077, -0.017360849305987358, -0.010701264254748821, 0.023411884903907776, -0.04002640023827553, -0.01132703572511673, -0.012400606647133827, 0.032999392598867416, -0.013893271796405315, -0.008439301513135433, 0.017739756032824516, 0.0061371517367661, 0.0012874240055680275, 0.0003485876368358731, -0.022068485617637634, 0.002985331229865551, 0.001841432647779584, -0.022171825170516968, 0.0073427665047347546, -0.03844187781214714, 0.014880727976560593, -0.03552544116973877, 0.02247035875916481, 0.010643853805959225, 0.004644486121833324, -0.002837499836459756, 0.014375518076121807, 0.01906019076704979, -0.0060567776672542095, -0.019680220633745193, -0.009817146696150303, 0.024227110669016838, -0.025788668543100357, 0.02521456591784954, -0.02007061056792736, -0.002356689190492034, -0.019358724355697632, -0.005126731935888529, -0.02659241110086441, -0.02212589606642723, -0.0009106695069931448, 0.004744954407215118, -0.01593707501888275, -0.016763782128691673, -0.008743575774133205, -0.015294081531465054, -0.01802680641412735, 0.016005968675017357, -0.013755487278103828, -0.028613250702619553, 0.014076984487473965, 0.03256307542324066, -0.010534774512052536, 0.005347761325538158, -0.017372330650687218, -0.0018758787773549557, 0.0029594965744763613, 0.008410596288740635, 0.013422507792711258, 0.00041120065725408494, 0.019473545253276825, 0.011975770816206932, -0.015385937876999378, -0.009013403207063675, -0.014432927593588829, 0.007038492243736982, 0.003967045806348324, -0.019772076979279518, 0.012435052543878555, -0.011045725084841251, 0.009334900416433811, -0.012664693407714367, 0.011447596363723278, 0.009122483432292938, -0.03244825452566147, 0.0034761885181069374, -0.009851592592895031, -0.016706371679902077, 0.006894966587424278, 0.033734243363142014, -0.04324137419462204, 0.014777389355003834, 0.014157358556985855, 0.0161207877099514, 0.002728420542553067, 0.010127161629498005, 0.043700654059648514, 0.018428679555654526, -0.0008173779351636767, 0.004610040225088596, 0.02640869840979576, -0.01902574487030506, 0.030312594026327133, 0.007647040765732527, -0.0102132773026824, 0.003481929423287511, -0.01683267578482628, 0.0020308862440288067, -0.05419524386525154, -0.021919220685958862, 0.03460687771439552, 0.0039383405819535255, 0.0030800579115748405, -0.025122709572315216, 0.044688109308481216, 0.047765299677848816, -0.04344804957509041, -0.015305562876164913, 0.01021901797503233, 0.022585177794098854, 0.015604096464812756, -0.02436489425599575, -0.021414009854197502, -0.005270257592201233, 0.0022849265951663256, -0.010707004927098751, -0.016855638474225998, -0.03821223974227905, -0.00891006551682949, -0.005964921321719885, 0.010379767045378685, 0.008938770741224289, 0.022872230038046837, -0.03883226960897446, -0.002419840544462204, 0.040738288313150406, 0.0510721281170845, 0.0025834597181528807, -0.01615523360669613, 0.012745067477226257, -0.025467170402407646, -0.01312397513538599, -0.00027198088355362415, -0.02712058462202549, 0.002224645810201764, -0.021138440817594528, 0.008008725009858608, -0.01365214865654707, -0.0019103249069303274, 0.022906675934791565, -0.012354678474366665, -0.006883484777063131, 0.00883543211966753, -0.012756549753248692, 0.031323011964559555, 0.01682119257748127, 0.02216034196317196, -0.0158107727766037, -0.017211582511663437, 0.028085077181458473, 0.01904870942234993, -0.015500757843255997, 0.02196514792740345, 0.02128770761191845, -0.006498836446553469, 0.006935154087841511, 0.005399430636316538, 0.007285356055945158, 0.014811835251748562, 0.020690640434622765, -0.0318741500377655, -0.038694486021995544, 0.018589427694678307, -0.01695897802710533, 0.016499696299433708, -0.0035795269068330526, -0.0012780949473381042, -0.014283661730587482, 0.004225391894578934, 0.001369951292872429, -0.015695951879024506, 0.026018308475613594, -0.005422394722700119, 0.004007232841104269, -0.03003702498972416, -0.0077216736972332, -0.023365957662463188, -0.05754799768328667, 0.004544018302112818, -0.006297900341451168, 0.015305562876164913, -0.018141627311706543, 0.006033813580870628, -0.03180525824427605, -0.019519472494721413, -0.009828628972172737, 0.008887100964784622, -0.0435628704726696, -0.05042913183569908, -0.021655132994055748, 0.04167981445789337, 0.03981972485780716, -0.007658522576093674, 0.011108876205980778, -0.016499696299433708, 0.02232109196484089, -0.016166716814041138, -0.004707637708634138, 0.035801008343696594, 0.025168638676404953, -0.03632918372750282, -0.03908487409353256, -0.025513099506497383, 0.027074657380580902, 0.025444207713007927, -0.008565603755414486, 0.0353187657892704, 0.028728071600198746, 0.007882422767579556, -0.001472571981139481, -0.0013677983079105616, 0.021402528509497643, 0.025650883093476295, -0.029394030570983887, 0.018830550834536552, 0.019645774737000465, -0.003292475827038288, -0.02969256229698658, -0.03518097847700119, -0.008783763274550438, 0.028865855187177658, -0.0007294685347005725, 0.00402445625513792, 0.03924562409520149, -0.0007685792515985668, 0.023400403559207916, -0.015500757843255997, -0.053598176687955856, 0.021574757993221283, -0.02160920388996601, 0.04342508688569069, 0.018830550834536552, -0.014375518076121807, 0.018819067627191544, 0.019657257944345474, -0.008668942376971245, 0.011286848224699497, -0.01803828962147236, -0.01853201724588871, -0.0031833963003009558, -0.0024270168505609035, -0.015236671082675457, -0.01382438000291586, 0.04259837791323662, 0.005953439045697451, -0.02402043342590332, 0.032540109008550644, 0.023721899837255478, -0.010827566497027874, 0.02884289249777794, 0.0049344077706336975, -0.036283254623413086, 0.10499180108308792, -0.0007190629257820547, 0.025145674124360085, -0.006274936255067587, -0.015546686016023159, 0.012722103856503963, -0.0031145040411502123, -0.03412463143467903, -0.017131207510828972, -0.008129286579787731, 0.006648102775216103, -0.038855232298374176, -0.0007542266976088285, 0.012549872510135174, 0.009398052468895912, -0.016384875401854515, 0.0005590319633483887, -0.015397419221699238, 0.02179291658103466, -0.026179058477282524, -0.013135457411408424, 0.02725837007164955, 0.002870510797947645, 0.0016189680900424719, -0.021069549024105072, -0.007141830865293741, 0.009070813655853271, 0.028544358909130096, 0.005316185764968395, -0.0008747881511226296, 0.014926656149327755, -0.012205411680042744, 0.028360646218061447, -0.017383813858032227, 0.026684267446398735, -0.02661537565290928, -9.51753681874834e-05, 0.002015098463743925, -0.01839423179626465, 0.020713604986667633, 0.0019404652994126081, -0.026500554755330086, -0.014961102046072483, -0.0009379393886774778, -0.001240778248757124, -0.0010168784065172076, -0.01148778386414051, -0.026018308475613594, 0.027028728276491165, -0.023216690868139267, 0.0470074824988842, -0.05134769529104233, -0.050566915422677994, 0.006229008082300425, -0.03159858286380768, 0.015420383773744106, -0.0044148457236588, -0.021563276648521423, 0.00909951888024807, -0.044343650341033936, 0.03926858678460121, -0.026822052896022797, 0.028613250702619553, -0.016752300783991814, 0.022022558376193047], [0.05403633043169975, 0.04225568100810051, 0.025130532681941986, 0.03445498272776604, -0.04100484028458595, 0.024789392948150635, -0.058311931788921356, -0.011268939822912216, -0.0002741545031312853, -0.02401614561676979, -0.004670754075050354, -0.021616805344820023, -0.0035762679763138294, 0.028632886707782745, -0.009523448534309864, 0.02581280842423439, 0.030133895576000214, -0.039526574313640594, 0.04976072907447815, -0.018364619463682175, 0.016658928245306015, 0.044029600918293, -0.017818797379732132, 0.02408437430858612, -0.03534194454550743, 0.02037733606994152, 0.04593997821211815, 0.030747944489121437, 0.056037675589323044, 0.02019539661705494, 0.08396553993225098, -0.028200777247548103, -0.02569909580051899, 0.0015209089033305645, 0.0002631385577842593, -0.0024050259962677956, -0.008568260818719864, -0.014225472696125507, -0.00416757445782423, -0.022560622543096542, -0.03939012065529823, -0.035842280834913254, 0.014555240049958229, -0.02385694906115532, -0.05230789631605148, 0.05221692472696304, -0.034250300377607346, -0.03502354770898819, 0.024971334263682365, 0.004747509956359863, -0.011104056611657143, -0.021582692861557007, -0.0212301816791296, -0.009745188057422638, 0.01302011776715517, 0.03115731105208397, -0.014839522540569305, 0.034318529069423676, -0.007721100002527237, -0.0036302816588431597, 0.013042859733104706, 0.03281752020120621, -0.01630641706287861, 0.013963934034109116, 0.00411071814596653, 0.018068965524435043, 0.02417534403502941, -0.005901695229113102, 0.005969922989606857, 0.03443223983049393, 0.036092448979616165, -0.006873939651995897, 0.01584019511938095, -0.01556728407740593, -0.018410105258226395, -0.0258355513215065, 0.005526443012058735, -0.011484994553029537, 0.002319741528481245, 0.0027902282308787107, -0.01673852652311325, 0.010569605976343155, 0.004807209130376577, 0.04271053150296211, -0.05585573613643646, 0.04619014635682106, -0.03554662689566612, -0.0035620538983494043, -0.010387665592133999, -0.02116195484995842, -0.06822768598794937, 0.004565569572150707, 0.019695060327649117, 0.012303726747632027, -0.015499056316912174, 0.025085046887397766, 0.011285996995866299, -0.01646561548113823, 0.00697628129273653, 0.04848714545369148, -0.005597513169050217, -0.005233632400631905, -0.02244690991938114, 0.0006087188958190382, 0.020638875663280487, -0.037638939917087555, -0.02136663720011711, 0.0455988384783268, -0.020616132766008377, -0.014725809916853905, 0.07150261849164963, -0.045030273497104645, 0.0017710770480334759, 0.09842981398105621, -0.04275601729750633, -0.013293027877807617, -0.04068644344806671, 0.025176016613841057, 0.03490983322262764, -0.020115796476602554, -0.03456869721412659, -0.014919121749699116, 0.02940613403916359, -0.050852369517087936, 0.013486339710652828, 0.010376294143497944, -0.02947436086833477, 0.004656539764255285, -0.028996767476201057, 0.006817083340138197, 0.015464942902326584, -0.008551203645765781, 0.052353378385305405, -0.03313591331243515, 0.006817083340138197, 0.0330222025513649, 0.007175278849899769, -0.03470515087246895, -0.024289056658744812, -0.003041817806661129, 0.024834878742694855, -0.012326468713581562, 0.06991063803434372, 0.022856276482343674, -0.02049104869365692, -0.004068076144903898, 0.04593997821211815, 0.011746534146368504, 0.05176207423210144, 0.0036956665571779013, 0.024721166118979454, 0.021468980237841606, 0.015078319236636162, 0.04803229123353958, 0.009540504775941372, -0.028405461460351944, 0.06595343351364136, 0.05485506355762482, -0.01469169557094574, -0.038025565445423126, 0.023220157250761986, 0.022526508197188377, -0.005628784187138081, -0.03329511359333992, 0.017420804128050804, 0.017966624349355698, -0.028519174084067345, 0.016590699553489685, -0.0366155281662941, -0.05676543712615967, -0.01370239444077015, -0.004508713260293007, -0.04000416770577431, 0.005017578136175871, -0.03545565530657768, 0.023606780916452408, 0.024698423221707344, -0.03479612246155739, -0.008261236362159252, 0.030270351096987724, 0.039799485355615616, 0.07791601866483688, -0.06495276093482971, -0.003908878192305565, -0.019262950867414474, 0.06981966644525528, -0.037729911506175995, 0.004497341811656952, -0.04748647287487984, -0.0013361255405470729, -0.016545213758945465, -0.02597200684249401, -0.021014127880334854, -0.011621450074017048, 0.004730453249067068, -0.01486226450651884, -0.008926455862820148, -0.02574458159506321, 0.045053016394376755, -0.026767997071146965, 0.02136663720011711, -0.009614418260753155, 0.0014256744179874659, 0.01307697407901287, -0.050943341106176376, 0.04789583757519722, 0.005574770737439394, -0.00227994192391634, 0.041345980018377304, 0.01943352073431015, 0.05158013105392456, 0.02383420616388321, -0.015942536294460297, -0.0010177296353504062, 0.032385408878326416, -0.011610078625380993, 0.0275185015052557, -0.04191454499959946, -0.0116271348670125, 0.009148196317255497, -0.02951984666287899, -0.013509082607924938, -0.030293093994259834, 0.0889689028263092, -0.04205099865794182, -0.002443404169753194, -0.013861591927707195, 0.02558538317680359, 0.0238114632666111, 0.017943881452083588, -0.046849679201841354, -0.026335887610912323, 0.039549317210912704, 0.0022216641809791327, 0.013611423783004284, 0.0071980212815105915, -0.0002585189649835229, -0.0375252291560173, -0.02581280842423439, 0.04182357341051102, 0.02961081638932228, 0.017284348607063293, -0.024311799556016922, 0.005395673215389252, -0.02387969195842743, 0.018410105258226395, -0.010472950525581837, 0.024311799556016922, 0.011212083511054516, -0.014214102178812027, 0.052398864179849625, 0.028496431186795235, -0.006009722128510475, -0.023447582498192787, 0.02788238227367401, 0.03281752020120621, -0.003218072699382901, 0.02963355928659439, 0.020002083852887154, 0.0020212451927363873, -0.028109807521104813, 0.06463436037302017, -0.024857621639966965, -0.021935202181339264, -0.01482815109193325, 0.02929242141544819, 0.04816874861717224, -0.014077646657824516, 0.03329511359333992, -0.0008521354175172746, -0.012451552785933018, -0.01385022047907114, 0.026404116302728653, -0.0370703786611557, -0.04926039278507233, -0.010461579076945782, 0.02327701263129711, 0.011939845979213715, 0.0003191065916325897, -0.0003379402623977512, 0.004250016529113054, 0.00743113225325942, 0.05026106536388397, -0.04916942119598389, -0.06399757415056229, 0.018910441547632217, 0.009585990570485592, 0.024561967700719833, -0.020479677245020866, -0.023538552224636078, 0.06431596726179123, -0.012565266340970993, 0.009267594665288925, 0.024743909016251564, 0.03452321141958237, -0.032544609159231186, -0.010740174911916256, 0.007340162061154842, -0.04771389812231064, -0.021480349823832512, 0.0004896757891401649, 0.03675198182463646, 0.017466288059949875, -0.03907172381877899, -0.01657932810485363, 0.03259009122848511, 0.036024220287799835, -0.01855793222784996, -0.04771389812231064, -0.032226212322711945, -0.0007462403737008572, -0.030588747933506966, -0.02792786806821823, -0.05462763458490372, -0.011138170026242733, 0.00010518435738049448, -0.0005685640498995781, 0.005293331574648619, -0.006083635613322258, -0.021787375211715698, 0.04468913748860359, -0.007698357570916414, 0.05467312037944794, -0.08510266989469528, -0.011428138241171837, -0.0028911482077091932, 0.02217399887740612, 0.05462763458490372, -0.011621450074017048, -0.02295861765742302, -0.05339953675866127, 0.009665588848292828, 0.014259587042033672, -0.03331785649061203, -0.020252251997590065, -0.047122590243816376, -0.0068909963592886925, -0.016408760100603104, -0.052535321563482285, -0.024698423221707344, 0.04093661159276962, -0.021503092721104622, 0.018887698650360107, 0.043256353586912155, -0.032317180186510086, -0.01198533084243536, -0.04266504943370819, -0.008067924529314041, 0.035978734493255615, 0.05285371467471123, -0.021685034036636353, 0.007436817977577448, -0.07832538336515427, -0.0025130531284958124, -0.0442570261657238, -0.056128647178411484, 0.027154620736837387, 0.04052724689245224, 0.011229140684008598, 0.010421779938042164, 0.0006748145096935332, 0.01725023426115513, 0.012872290797531605, 0.009654218330979347, 0.024766651913523674, 0.021787375211715698, -0.054445695132017136, -0.02030910924077034, 0.006333803758025169, -0.02754124440252781, 0.020024826750159264, 0.011155227199196815, -0.026358630508184433, -0.028291748836636543, 0.015192031860351562, 0.034113842993974686, -0.009767930954694748, -0.025153275579214096, 0.0219010878354311, -0.02790512517094612, 0.021594064310193062, -0.03277203440666199, -0.0018336190842092037, -0.03193055838346481, 0.014396042563021183, 0.050579458475112915, -0.010347866453230381, -0.022674335166811943, -0.009483648464083672, 0.00035019993083551526, 0.03559211269021034, 0.0017767627723515034, -0.00320670148357749, 0.03720683231949806, -0.019467633217573166, 0.01299737486988306, -0.01927432231605053, 0.07163907587528229, -0.011735162697732449, 0.006504373159259558, -0.009000369347631931, -0.05003364011645317, -0.0032891430892050266, 0.06431596726179123, 0.010905059054493904, -0.006100692320615053, 0.026972679421305656, 0.026745254173874855, 0.005205204244703054, -0.050397519022226334, 0.05026106536388397, -0.019490376114845276, 0.004045333247631788, 0.06090458482503891, -0.0034852977842092514, -0.021685034036636353, -0.00040332513162866235, -0.010353552177548409, -0.03434126824140549, -0.03939012065529823, -0.037502486258745193, -0.002531531499698758, -0.0057282829657197, 0.03352253884077072, 0.00925622321665287, 0.002395076211541891, -0.012190014123916626, -0.022139884531497955, 0.052808232605457306, -0.06367917358875275, -0.03495531901717186, 0.023515809327363968, 0.03490983322262764, 0.011519107967615128, -0.03659278526902199, -0.038048308342695236, -0.045234959572553635, -0.01934254914522171, -0.024380028247833252, -0.014407414011657238, 0.03500080481171608, -0.05171658843755722, 0.0019572817254811525, 0.038093794137239456, 0.028064323589205742, -0.03634261712431908, -0.02143486589193344, 0.030224865302443504, -0.027109134942293167, -0.06959224492311478, -0.017056921496987343, -0.012178642675280571, 0.037434257566928864, -0.010740174911916256, 0.03345431014895439, -0.012224127538502216, -0.00251873885281384, -0.03352253884077072, -0.023356612771749496, -0.007823442108929157, 0.0698651522397995, 0.03152119368314743, -0.024812135845422745, -0.0022898917086422443, -0.024971334263682365, -0.014373299665749073, 0.00908565428107977, 0.012428810819983482, 0.03158941864967346, -0.04077741503715515, 0.012565266340970993, -0.007215077988803387, -0.014543868601322174, -0.01775057055056095, 0.03709312155842781, -0.0019388034706935287, 0.06954675912857056, -0.020877672359347343, 0.005506542976945639, -0.003519411664456129, 0.01599939353764057, 0.03868509829044342, -0.03265831992030144, -0.03727506101131439, 0.01765960082411766, 0.07295814156532288, 0.03634261712431908, 0.04057273268699646, -0.035751309245824814, -0.0022259282413870096, -0.01642012968659401, -0.032226212322711945, -0.006254205014556646, -0.009438163600862026, 0.013111087493598461, -0.018023481592535973, -0.02424357272684574, -0.0037553657311946154, 0.06208719685673714, 0.01853518933057785, 0.024675680324435234, -0.05394535884261131, 0.011496366001665592, -0.028314491733908653, 0.0115134222432971, 0.020832188427448273, -0.015430828556418419, -0.012349211610853672, -0.023538552224636078, 0.016988694667816162, 0.04639482870697975, 0.018694385886192322, -0.00875020120292902, -0.0274047888815403, 0.0006055207340978086, -0.02569909580051899, 0.007777956314384937, 0.06076812744140625, -0.013463597744703293, 0.02005894109606743, 0.056174129247665405, -0.01678401231765747, -0.007942840456962585, 0.05790256708860397, -0.020547905936837196, -0.014418784528970718, -0.008210064843297005, -0.07455012202262878, -0.00973950233310461, -0.016613442450761795, -0.003960048779845238, 0.009517762809991837, -0.03202152997255325, 0.02567635290324688, 0.02588103711605072, -0.010910744778811932, -0.022526508197188377, 0.017977995797991753, 0.0007796434802003205, -0.03531920164823532, 0.052580807358026505, 0.008909398689866066, -0.0058846380561590195, -0.011701048351824284, 0.009944185614585876, 0.020741216838359833, 0.008022438734769821, 0.016056248918175697, -0.028655629605054855, -0.01584019511938095, -0.020138539373874664, -0.009017426520586014, 0.013497711159288883, -0.007175278849899769, 0.029133222997188568, 0.05285371467471123, 0.018694385886192322, -0.02237868122756481, 0.01853518933057785, 0.020923158153891563, -0.01602213643491268, -0.035955991595983505, -0.01299737486988306, 0.019854256883263588, 0.012053558602929115, 0.010217096656560898, -0.006100692320615053, -0.009767930954694748, 0.0048669083043932915, 0.008551203645765781, -0.030747944489121437, -0.04966975748538971, 0.039708513766527176, 0.034022875130176544, 0.025266988202929497, -0.009489334188401699, 0.026608798652887344, -0.032385408878326416, -0.011564592830836773, 0.01570373959839344, -0.024698423221707344, 0.0035904820542782545, 0.0050516920164227486, -0.0004125643172301352, 0.0010525542311370373, 0.006328118033707142, -0.025448927655816078, -0.020343221724033356, -0.024357285350561142, -0.03118005394935608, 0.010586663149297237, -0.027040908113121986, 0.005526443012058735, -0.024493740871548653, 0.001798083889298141, 0.04441622644662857, 0.026313144713640213, 0.039458345621824265, -0.03099811263382435, 0.013611423783004284, 0.018751243129372597, -0.03556936979293823, -0.015078319236636162, -0.012258241884410381, 0.05722028762102127, -0.015180660411715508, 0.007442503701895475, 0.014407414011657238, 0.019797401502728462, 0.02309507317841053, -0.02028636634349823, 0.03356802463531494, -0.0028598771896213293, 0.005415572784841061, 0.013486339710652828, -0.001901846844702959, 0.012622122652828693, 0.008409062400460243, -0.023424839600920677, 0.012724463827908039, -0.03832121938467026, -0.03848041594028473, 0.003533625742420554, -0.01161576434969902, -0.04632660001516342, -0.0008478711824864149, -0.014930492267012596, -0.039572060108184814, 0.018068965524435043, -0.0095461905002594, -0.018273649737238884, -0.0406637042760849, 0.015248888172209263, -0.006015407852828503, 0.0012927725911140442, 0.021605435758829117, -0.002848505973815918, -0.02008168399333954, 0.021696405485272408, -0.02286764793097973, 0.009614418260753155, -0.0016246718587353826, -0.003010546788573265, -0.04039079323410988, 0.026472343131899834, -0.0011769275879487395, 0.0064532021060585976, -0.0096030468121171, 0.0054468438029289246, -0.02005894109606743, 0.0330222025513649, 0.056083161383867264, -0.0662718266248703, -0.016954580321907997, -0.021753260865807533, 0.013258914463222027, -0.0005667873192578554, -0.013111087493598461, -0.006555543746799231, 0.02228771150112152, -0.01777331344783306, 0.030156638473272324, 0.01046726480126381, -0.0036530240904539824, -0.013418111950159073, -0.005208047106862068, 0.029110480099916458, 0.026313144713640213, -0.004025433678179979, -0.002770328428596258, 0.022526508197188377, -0.019911114126443863, -0.019035525619983673, 0.011024457402527332, 0.034000132232904434, -0.0327947773039341, -0.0257218386977911, 0.026722511276602745, -0.014145874418318272, 0.004707710351794958, 0.009756559506058693, -0.032226212322711945, 0.004304029978811741, 0.002623923122882843, -0.021594064310193062, 0.0039031924679875374, -0.022571993991732597, 0.00776658533141017, -0.030452292412519455, 0.030543262138962746, -0.020604761317372322, 0.007089993916451931, 0.028564659878611565, -0.010319437831640244, 0.0008834064356051385, 0.023106444627046585, -0.030907142907381058, 0.0070047094486653805, -0.02378872036933899, -0.0020752588752657175, 0.0007839077152311802, 0.019649574533104897, -0.024812135845422745, -0.018876327201724052, -0.02406163141131401, -0.04007239639759064, 0.023254269734025, 0.0017326989909633994, 0.03536468371748924, 0.011678306385874748, 0.020479677245020866, -0.0030645604711025953, -0.02289038896560669, 0.011723791249096394, -0.010182982310652733, 0.009637161158025265, 0.03438675403594971, -0.0011811918811872602, -0.020343221724033356, -0.010472950525581837, -0.039435602724552155, 0.005748183000832796, -0.018705757334828377, -0.001347496872767806, -0.019103752449154854, 0.006066578906029463, 0.012155899778008461, 0.019797401502728462, 0.004636640194803476, -0.02093452960252762, 0.030793430283665657, -0.005532128270715475, -0.01772782765328884, 0.010609406046569347, 0.005370087455958128, 0.012451552785933018, 0.03318139910697937, -0.016454244032502174, 0.0026750939432531595, 0.009654218330979347, 0.003175430465489626, 0.015328487381339073, 0.033909160643815994, -0.0008933562785387039, -0.013202058151364326, 0.04985169693827629, -0.04039079323410988, -0.008880970999598503, -0.006743169855326414, 0.000951634137891233, -0.05671995133161545, 0.006532801315188408, -0.01655658520758152, 0.013884334824979305, 0.017113778740167618, -0.0030901457648724318, -0.005594670306891203, 0.019695060327649117, -0.01945626176893711, -0.03825299069285393, 0.014464270323514938, 0.02742753177881241, -0.010592348873615265, -0.028496431186795235, 0.005787982139736414, 0.008465918712317944, -0.039822228252887726, -0.013463597744703293, 0.0047674099914729595, 0.02926967851817608, 0.0006282632821239531, -0.023402096703648567, 0.008488661609590054, 0.013963934034109116, 0.022537879645824432, -0.007755213882774115, -0.009182309731841087, -0.01206493005156517, 0.0017966624582186341, 0.0032010157592594624, 0.012155899778008461, 0.003911721054464579, -0.014145874418318272, 0.02118469774723053, 0.005327445454895496, -0.05312662571668625, 0.012030815705657005, 0.01639738865196705, 8.177550625987351e-05, -0.003701352048665285, -0.0032294439151883125, 0.010495692491531372, -0.011359910480678082, -0.007925783284008503, -0.01657932810485363, -0.04671322554349899, 0.014270958490669727, -0.06563504040241241, -0.006828454323112965, 0.0420055128633976, 0.010609406046569347, -0.0036331245210021734, -0.0028826198540627956, 0.025176016613841057, 0.047168076038360596, 0.06026779115200043, -0.048669084906578064, 0.02053653448820114, 0.047122590243816376, -0.019103752449154854, 0.03359076380729675, 0.010922116227447987, -0.00569985480979085, 0.045439641922712326, -0.020388707518577576, 0.011939845979213715, -0.016567956656217575, -0.0017142207361757755, -0.01671578362584114, -0.022230856120586395, -0.007920097559690475, 0.02588103711605072, -0.00739701883867383, -0.0012842441210523248, 0.04273327440023422, -0.00437510060146451, -0.015453571453690529, -0.015101062133908272, -0.022435538470745087, -0.02770044095814228, 0.050806887447834015, 0.01147930882871151, -0.024493740871548653, 0.016363274306058884, -0.0295425895601511, 0.0016729998169466853, 0.00196296744979918, 0.003149844938889146, 0.013543196022510529, -0.016067620366811752, 0.020650247111916542, -0.004483127500861883, 0.0027518500573933125, 0.0032550294417887926, -0.05367244780063629, 0.012610751204192638, -0.01682949624955654, -0.011803390458226204, -0.012542523443698883, 0.02113921195268631, -0.018864955753087997, -0.03682021051645279, -0.024812135845422745, -0.01731846109032631, 0.041323237121105194, -0.018501074984669685, 0.011644192039966583, -0.00914251059293747, 0.008420433849096298, -0.00288972700946033, -0.014100388623774052, -0.0012742942199110985, -0.013202058151364326, 0.012212756089866161, -0.00125936942640692, -0.04084564372897148, -0.004372257739305496, 0.005154033191502094, -0.0014924807474017143, -0.03272654861211777, 0.07418624311685562, 0.010961915366351604, 0.020661618560552597, -0.0012771370820701122, -0.00320670148357749, 0.022344568744301796, -0.012337840162217617, 0.02615394815802574, 0.0013766357442364097, 0.03882155567407608, -0.021594064310193062, 0.052444349974393845, 0.032067012041807175, -0.007556216325610876, -0.013338512741029263, -0.01103014312684536, -0.02765495702624321, 0.009711074642837048, -0.0010312331141903996, 0.0033516851253807545, -0.016226818785071373, -0.026608798652887344, 0.030588747933506966, -0.003852021647617221, 0.008039495907723904, -0.0061802915297448635, 0.010228468105196953, 0.006691999267786741, 0.0034142271615564823, -0.012030815705657005, -0.005620256066322327, -0.00973950233310461, -0.024948591366410255, -0.030952628701925278, -0.022708449512720108, 0.014964606612920761, -0.00036850059404969215, 0.007721100002527237, 0.024812135845422745, -0.032135240733623505, -0.02008168399333954, 0.02107098512351513, 0.005461058113723993, -0.04073192924261093, 0.023106444627046585, 0.0062712617218494415, -0.026313144713640213, 0.017818797379732132, -0.056356072425842285, -0.018910441547632217, 0.030679717659950256, -0.0026893080212175846, -0.0330222025513649, 0.0116271348670125, 0.04261956363916397, -0.0018620473565533757, -0.014555240049958229, 0.03513725847005844, -0.018034853041172028, -0.02938339114189148, -0.04193728789687157, 0.047168076038360596, -0.007920097559690475, 0.01556728407740593, 0.01060372032225132, -0.022526508197188377, 0.010393351316452026, 0.016044877469539642, 0.009688331745564938, -0.005384301766753197, 0.00818732287734747, -0.01588568091392517, 0.002965061692520976, 0.006777283735573292, -0.00214775069616735, -0.01387296337634325, -0.010876630432903767, 0.010330809280276299, 0.048851024359464645, 0.018569301813840866, -0.004710553213953972, -0.043074414134025574, -0.011792019009590149, -0.019262950867414474, 0.002787385368719697, -0.05499151721596718, 0.021696405485272408, 0.02579006552696228, -0.02134389616549015, -0.03313591331243515, -0.004901022184640169, -0.019763287156820297, 0.01026826724410057, 0.006220091134309769, 0.007510731462389231, 0.015453571453690529, 0.01956997625529766, -0.033977389335632324, -0.0011158069828525186, -0.005620256066322327, -0.018819469958543777, -0.03759345784783363, 0.02597200684249401, 0.0444844514131546, -0.04921490699052811, -0.00818732287734747, -0.014703067019581795, -0.014396042563021183, -0.01288366224616766, -0.019763287156820297, -0.034318529069423676, 0.028723856434226036, 0.01639738865196705, 0.008028124459087849, -0.032453637570142746, 0.0480777770280838, 0.00962578970938921, 0.00737427594140172, 0.009051539935171604, -0.001159160048700869, 0.008147522807121277, 0.02095727249979973, -0.0348188653588295, 0.02776866964995861, 0.019240207970142365, 0.005210889969021082, 0.03618341684341431, 0.010944858193397522, 0.03502354770898819, 0.004250016529113054, 0.014930492267012596, 0.01010906882584095, -0.03306768834590912, -0.004753195680677891, 0.022503765299916267, -0.03823024779558182, 0.03759345784783363, 0.021309781819581985, 0.01288366224616766, -0.0352737158536911, -0.01722749136388302, 0.02938339114189148, 0.01114385575056076, 0.022344568744301796, -0.00832377839833498, -0.04939684644341469, 0.026813481003046036, -0.016840867698192596, 0.006845511496067047, 0.005526443012058735, 0.009489334188401699, 0.004736138973385096, 0.019876999780535698, -0.014680324122309685, 0.0027802782133221626, 0.023538552224636078, -0.011075627990067005, 0.006726113148033619, -0.007914411835372448, 0.029064996168017387, 0.01288366224616766, 0.006754541303962469, -0.004557040985673666, -0.006714741699397564, 0.038093794137239456, 0.03834396228194237, 0.017841540277004242, -0.015499056316912174, -0.03124828077852726, -0.0002864141424652189, -0.041345980018377304, -0.011837503872811794, -0.004451856482774019, 0.02979275770485401, 0.017580000683665276, 0.007033137604594231, -0.026358630508184433, -0.0025414815172553062, 0.021082356572151184, 0.00018869219638872892, 0.015601398423314095, 0.013861591927707195, -0.005338816437870264, 0.041186779737472534, 0.013247543014585972, -0.0012636336032301188, 0.02235594019293785, -0.01052412111312151, -0.01278132013976574, -0.02093452960252762, 0.026404116302728653, 0.003556368174031377, -0.012633494101464748, -0.0043580434285104275, 0.011325796134769917, 0.009563247673213482, -0.03675198182463646, -0.02378872036933899, 0.011519107967615128, -0.0455988384783268, 0.009017426520586014, -0.019729172810912132, 0.019729172810912132, -0.016613442450761795, 0.021707776933908463, -0.004079447127878666, -0.04450719431042671, -0.007743842899799347, -0.048941995948553085, -0.004872594028711319, 0.005674269516021013, -0.041255008429288864, 0.03297671675682068, -0.00639066006988287, -0.00020805891836062074, -0.026972679421305656, 0.002217399887740612, -0.0005397805362008512, -0.0074709318578243256, 0.002608287613838911, 0.008124780841171741, 0.0002693572314456105, -0.00010536202898947522, -0.024948591366410255, 0.0032692435197532177, -0.006231462117284536, 0.016613442450761795, -0.017398061230778694, 0.015066947788000107, -0.03556936979293823, 0.0275185015052557, -0.017284348607063293, -0.05471860617399216, -0.010575291700661182, 0.010512749664485455, 0.0011079892283305526, 0.022094400599598885, 0.003465397981926799, -0.019240207970142365, -0.0012906404444947839, -0.014987348578870296, 0.0316803902387619, 0.008608059957623482, -0.013167943805456161, -0.00964853260666132, -0.004630954470485449, -0.019331177696585655, 0.04248310625553131, -0.02783689647912979, 0.012008072808384895, -0.028382718563079834, -0.020138539373874664, 0.016590699553489685, -0.014452898874878883, 0.002857034560292959, -0.005930123385041952, -0.012269612401723862, -0.027291076257824898, 0.02417534403502941, -0.0221285130828619, -0.03265831992030144, 0.005583299323916435, -0.008238493464887142, -0.016181332990527153, 0.0021946572232991457, -0.021309781819581985, 0.022276340052485466, -0.05289920046925545, -0.01860341615974903, 0.01486226450651884, 0.029019510373473167, 0.006737484131008387, 0.021150583401322365, 0.0032777718733996153, -0.0105582345277071, 0.016181332990527153, -0.02316330000758171, 0.07677889615297318, 0.0073685902170836926, -0.009585990570485592, 0.02378872036933899, 0.02742753177881241, 0.00927896611392498, 0.032248955219984055, 0.039708513766527176, 0.01646561548113823, 0.005648684222251177, 0.012246870435774326, -0.024925848469138145, 0.028473688289523125, 0.004417743068188429, -0.02601749263703823, 0.012167271226644516, -0.0026310302782803774, 0.004275601822882891, 0.0007519259816035628, -0.001177638303488493, 0.0034398126881569624, 0.0003532204427756369, 0.029133222997188568, -0.027950609102845192, 0.03334059566259384, -0.025426184758543968, 0.01846696063876152, 0.0348188653588295, -0.016522472724318504, -0.013497711159288883, 0.012678978964686394, 0.015044205822050571, -0.006544172298163176, -0.01209904346615076, -0.01482815109193325, 0.016613442450761795, -0.0274047888815403, -0.01759137213230133, 0.005068748723715544, 0.004619583021849394, -0.0180803369730711, -0.0051824613474309444, -0.016317788511514664, -0.013247543014585972, 0.02765495702624321, -0.012030815705657005, -0.025403443723917007, -0.02615394815802574, 0.01729572005569935, -0.015010091476142406, 0.006254205014556646, -0.028246263042092323, -0.01775057055056095, -0.01736394688487053, 0.017761941999197006, 0.041391465812921524, -0.0007583223632536829, -0.00781775638461113, -0.0015834509395062923, 0.0028257635422050953, -0.02590378001332283, 0.005833467468619347, -0.02053653448820114, -0.005799353588372469, 0.00371556612662971, -0.0009630054119043052, -0.01570373959839344, -0.011013085953891277, 0.009944185614585876, 0.0190923810005188, 0.02613120526075363, -0.00694785313680768, 0.005969922989606857, 0.015453571453690529, 0.022515136748552322, 0.02749575860798359, -0.03202152997255325, -0.021173326298594475, -0.0028456631116569042, 0.00593580910935998, 0.01124619785696268, 0.003991319797933102, -0.011303054168820381, 0.020945901051163673, -0.017955252900719643, 0.03161216154694557, -0.02615394815802574, -0.02936064824461937, 0.007567587774246931, -0.026517828926444054, 0.010512749664485455, -0.009989670477807522, -0.027973352000117302, 0.009284650906920433, -0.004753195680677891, -0.00833514891564846, -0.04202825576066971, 0.008261236362159252, 0.024766651913523674, 0.009972614236176014, 0.011746534146368504, -0.018569301813840866, -0.03306768834590912, -0.008494347333908081, -0.028519174084067345, 0.028769342228770256, 0.005856209900230169, -0.021582692861557007, 0.005441158078610897, 0.000997119233943522, -0.02408437430858612, -0.009267594665288925, 0.0312255397439003, -0.02033185213804245, -0.0022600421216338873, -0.0355011411011219, 0.06081361323595047, 0.0004978489014320076, 0.0018250907305628061, -0.00395436305552721, 0.016044877469539642, -0.0004356622230261564, 0.04985169693827629, -0.01381610706448555, -0.006851197220385075, 0.00010820484749274328, -0.021866973489522934, -0.0003214163880329579, 0.032248955219984055, -0.018853584304451942, -0.0016061934875324368, 0.017091035842895508, 0.01747765950858593, -0.0005742497160099447, -0.00824417918920517, -0.002454775385558605, 0.019581345841288567, 0.0274047888815403, 0.008238493464887142, -0.03352253884077072, 0.030452292412519455, 0.017284348607063293, -0.002726264763623476, -0.0061689200811088085, -0.00039835021016187966, 0.017966624349355698, -0.00012588364188559353, -0.009517762809991837, -0.001483952277339995, 0.003937306348234415, -0.014600725844502449, 0.04427976906299591, -0.048805538564920425, -0.003328942693769932, -0.037479743361473083, 0.028974024578928947, -0.02936064824461937, 0.001513801864348352, 0.04637208580970764, 0.009057225659489632, -0.008204380050301552, -0.0030901457648724318, 0.013167943805456161, -0.0062712617218494415, 0.012246870435774326, 0.003488140646368265, 0.011712419800460339, 0.005873267073184252, 0.0022969988640397787, -0.010706061497330666, -0.03447772562503815, 0.0077154142782092094, 0.002109372755512595, -0.008630802854895592, -0.008619431406259537, -0.04243762418627739, 0.048760056495666504, 0.029019510373473167, -0.045416899025440216, 0.00013370139640755951, 0.015283002518117428, 0.007442503701895475, -0.0020127168390899897, -0.030452292412519455, 0.0008734565344639122, -0.0011634242255240679, -0.00011433468171162531, -0.013247543014585972, 0.03675198182463646, -0.026949936524033546, -0.036001477390527725, -0.035774052143096924, 0.02091178670525551, 0.014941863715648651, 0.0014256744179874659, -0.021571321412920952, -0.007141164969652891, 0.0038321218453347683, 0.0068113976158201694, 0.020184025168418884, -0.020184025168418884, -0.008983312174677849, 0.014123131521046162, -0.025085046887397766, -0.00019775368855334818, -0.02019539661705494, 0.000681566190905869, -0.0035449969582259655, 0.02579006552696228, -0.024380028247833252, -0.013156572356820107, -0.012212756089866161, 0.008482975885272026, 0.0017298562452197075, 0.016317788511514664, 0.004886808339506388, 0.02141212299466133, 0.009563247673213482, -0.018637530505657196, -0.014816779643297195, -0.04004965350031853, 0.0316803902387619, 0.024948591366410255, -0.014464270323514938, -0.04794132336974144, 0.024903105571866035, -0.021616805344820023, -0.000800964655354619, 0.01685223914682865, 0.02590378001332283, 0.03152119368314743, -0.01943352073431015, -0.010728804394602776, 0.012610751204192638, 0.019820144400000572, -0.03306768834590912, -0.006134806200861931, -0.009978299960494041, 0.005040320567786694, -0.005392830353230238, -0.0013894285075366497, -0.0014612097293138504, -0.009961242787539959, 0.01198533084243536, -0.015112432651221752, 0.012303726747632027, 0.0057510253973305225, -0.026426857337355614, -0.005631627049297094, -0.005219418089836836, 0.010518435388803482, 1.1948729479627218e-05, 0.0180803369730711, 0.01469169557094574, 0.04452993720769882, 0.002470410894602537, -0.004488813225179911, 0.005637312773615122, -0.028359975665807724, -0.056356072425842285, -0.020024826750159264, -0.04275601729750633, 0.035887762904167175, 0.017625486478209496, -0.04009513929486275, 0.03913995251059532, 0.010012413375079632, 0.03850315883755684, 0.00970538891851902, -0.026972679421305656, 0.006197348237037659, -0.04562158137559891, -0.012986003421247005, 0.0057851392775774, -0.02426631562411785, 0.007999696768820286, 0.03147570788860321, -0.015055576339364052, 0.002352433744817972, 0.03493257611989975, -0.001709956442937255, -0.023515809327363968, -0.017216119915246964, 0.01584019511938095, 0.029042253270745277, -0.027040908113121986, 0.022321825847029686, -0.00745387515053153, 0.02399340458214283, -0.043392810970544815, -0.030770687386393547, 0.020729845389723778, -0.005034634843468666, -0.010779974982142448, 0.03127102553844452, 0.014282329939305782, -0.00012108637747587636, 0.02979275770485401, 0.030543262138962746, -0.0518985278904438, -0.02417534403502941, -0.003505197586491704, 0.04430251196026802, 0.0004218034737277776, 0.005947180092334747, -0.026199432089924812, 0.011598707176744938, 0.00594149436801672, 0.029951956123113632, -0.01848970353603363, 0.017977995797991753, -0.0037383087910711765, -0.01463483925908804, -0.014964606612920761, -0.013202058151364326, 0.03686569631099701, -0.008181637153029442, -0.002788806799799204, 0.028178036212921143, 0.0033772706519812346, 0.005722597241401672, -0.01922883652150631, 0.004312558565288782, 0.0009033061796799302, 0.1325436532497406, 0.00832377839833498, 0.028041580691933632, 0.004377943463623524, -0.00347392656840384, 0.0016772639937698841, -0.002741900272667408, -0.018410105258226395, -0.003490983508527279, -0.008158894255757332, 0.002911048009991646, -0.025266988202929497, -0.03727506101131439, -0.017113778740167618, 0.01632915996015072, -0.00641908822581172, -0.012622122652828693, 0.009580304846167564, 0.030770687386393547, 0.036092448979616165, 0.020741216838359833, 0.007124107796698809, 0.04966975748538971, 0.027086392045021057, -0.032180726528167725, -0.017898397520184517, 0.02419808693230152, -0.011217769235372543, -0.019865628331899643, -0.005839153192937374, 0.013270285911858082, -6.5795743466878776e-06, 0.022879017516970634, -0.004991992376744747, 0.036024220287799835, -0.030793430283665657, 0.004741824232041836, 0.013554567471146584, 0.005856209900230169, 0.017932510003447533, -0.007885984145104885, -0.018864955753087997, 0.02742753177881241, 0.012417439371347427, -0.0006719716475345194, 0.011939845979213715, -0.03536468371748924, -0.0029991755727678537, -0.018728500232100487, -0.000651716545689851, 0.01383884996175766, -0.004517241381108761, -0.004312558565288782, 0.000824417918920517, -0.02924693562090397, 0.002102265600115061, 0.00020539377874229103, -0.008892342448234558, -0.016181332990527153, -0.04744098708033562, 0.011951216496527195, -0.01563551276922226, -0.018091708421707153, 0.023197414353489876, -0.0012238341150805354], [0.05537320300936699, -0.01004896778613329, 0.014641531743109226, -0.016008365899324417, -0.02654939517378807, -0.013504325412213802, -0.02412189543247223, 0.017954738810658455, -0.0035565034486353397, -0.05392982438206673, -0.007872967049479485, -0.03715603053569794, -0.0025956188328564167, -0.009781068190932274, 0.007856565527617931, 0.02479984611272812, -0.027664732187986374, -0.0027623726055026054, -0.022120850160717964, 0.00436840346083045, 0.0616278350353241, 0.013209089636802673, 0.02549966610968113, -0.01089093741029501, 0.0015103522455319762, 0.013187220320105553, -0.012235903181135654, -0.028583243489265442, -0.0038872775621712208, -0.010776123963296413, 0.03118569776415825, -0.008496243506669998, -0.024668630212545395, -0.04820005223155022, -0.009398354217410088, 0.02416563592851162, 0.05939716100692749, -0.0450071282684803, 0.0160958431661129, 0.00862199254333973, -0.06447084993124008, -0.018326517194509506, -0.01141580194234848, -0.02814585715532303, -0.04474469646811485, 0.03647807985544205, 0.020076066255569458, 0.013897974044084549, 0.014335361309349537, 0.03026718460023403, 0.010333268903195858, 0.010043499991297722, 0.02447180636227131, 0.04456974193453789, 0.0017208447679877281, -0.014893029816448689, 0.008004182949662209, 0.012968526221811771, 0.005552081856876612, 0.008173670619726181, 0.00714034354314208, -0.0241437666118145, 0.057910047471523285, 0.023903202265501022, -0.049468476325273514, 0.009879480116069317, -0.008195539936423302, 0.013143480755388737, -0.010338736698031425, 0.01155795343220234, 0.011328324675559998, -0.02119140326976776, -0.003605709644034505, 0.008671198040246964, -0.023706378415226936, 0.031338781118392944, 0.027249213308095932, -0.020546257495880127, 0.0044039408676326275, 0.07597412914037704, -0.029436148703098297, 0.017582960426807404, -0.02584957517683506, 0.026461917906999588, -0.025937052443623543, 0.022066177800297737, -0.015866216272115707, -0.028102118521928787, -0.03938670456409454, -0.02657126449048519, -0.07960444688796997, -0.06818864494562149, 0.013034134171903133, 0.05563563480973244, -0.017364265397191048, 0.019398115575313568, -0.008293951861560345, -0.010038033127784729, -0.02615574561059475, 0.09167632460594177, -0.03940857574343681, 0.005997669883072376, -0.0036959205754101276, -0.04131120815873146, -0.004926071967929602, -0.015603783540427685, 0.03315393999218941, 0.0018096889834851027, -0.007610534783452749, 0.05204905942082405, 0.02816772647202015, -0.029654841870069504, -0.01008177176117897, 0.02231767401099205, -0.01833745278418064, -0.02851763553917408, 0.0006294273189269006, 0.04192354902625084, -0.017276788130402565, -0.0025573475286364555, 0.023618901148438454, 0.044154223054647446, 0.04605685919523239, -0.053842347115278244, 0.05134924128651619, -0.03593134880065918, 0.014040124602615833, 0.006298373453319073, 0.028801938518881798, -0.02681182697415352, 0.05331748351454735, -0.020174477249383926, 0.01969335228204727, -0.08371588587760925, -0.018042216077446938, 0.02245982550084591, -0.00821194238960743, -0.03682798892259598, -0.045838162302970886, -0.028320811688899994, 0.05204905942082405, -0.018654558807611465, 0.03433488309383392, 0.039080534130334854, 0.002925025997683406, -0.007900304161012173, 0.016533231362700462, 0.029020631685853004, -0.014171340502798557, 0.03223542496562004, 0.032432250678539276, -0.03868688642978668, 0.00034444232005625963, 0.04205476492643356, -0.002721367636695504, -0.005234976299107075, 0.006396785844117403, 0.054192256182432175, -0.010841731913387775, -0.013548064045608044, 0.013023199513554573, -0.010743319988250732, 0.013110676780343056, -0.02648378722369671, -0.021913092583417892, -0.00908671598881483, -0.003750594099983573, -0.007889369502663612, -0.016544165089726448, -0.014007320627570152, -0.0211257953196764, -0.042404673993587494, 0.0040403627790510654, -0.05712274834513664, -0.06267756223678589, -0.024690499529242516, 0.03297898545861244, -0.004680041689425707, -0.039430443197488785, 0.05043072625994682, 0.01191879715770483, 0.010934676043689251, -0.06084053963422775, -0.0024849053006619215, -0.02552153542637825, 0.04898735135793686, -0.017889130860567093, 0.02921745553612709, -0.030048491433262825, -0.005144765134900808, -0.010136445052921772, 0.013263762928545475, -0.046844154596328735, -0.009392887353897095, -0.007796424441039562, -0.008873489685356617, 0.005338856019079685, 0.021114859730005264, 0.017681371420621872, -0.038818102329969406, 0.029283063486218452, -0.015319481492042542, 0.03969287499785423, 0.04367309808731079, -0.05003707855939865, 0.0038708755746483803, 0.01658790372312069, 0.008829751051962376, 0.03660929575562477, -0.02252543345093727, 0.007998716086149216, -0.012629551813006401, 0.020786819979548454, -0.017353331670165062, 0.03715603053569794, 0.018796708434820175, 0.009130454622209072, -0.05965959653258324, -0.003138252068310976, 0.000427819206379354, -0.03429114446043968, -0.01477274764329195, 0.013788627460598946, 0.00405949866399169, -0.031054481863975525, 0.014903964474797249, -0.013613671995699406, -0.0018438597908243537, -0.02219739370048046, -0.030310923233628273, -0.013602737337350845, -0.04358562082052231, -0.041092514991760254, -0.0089609669521451, 0.02032756432890892, -0.01642388477921486, -0.036390602588653564, -0.03315393999218941, 0.012793571688234806, -0.022350478917360306, 0.0016005632933229208, 0.04472282528877258, -0.028320811688899994, -0.0025423122569918633, -0.007867500185966492, -0.008534515276551247, -0.005926594603806734, 0.02554340474307537, 0.05602928251028061, -0.0053689260967075825, -0.017736045643687248, -0.04968716949224472, -0.0072004846297204494, -0.02315964549779892, 0.005511077120900154, 0.006566273048520088, -0.01581154204905033, 0.05476085841655731, 0.024078156799077988, -0.017648568376898766, 0.002993367612361908, 0.026330700144171715, 0.006467861123383045, -0.04846248775720596, -0.05008081719279289, -0.043148234486579895, 0.010726917535066605, 0.018796708434820175, 0.01005990244448185, 0.0013975882902741432, -0.04067699611186981, -0.001714010490104556, -0.014029189944267273, -0.06775125861167908, 0.009278072975575924, -0.0017973874928429723, 0.033788152039051056, -0.040764473378658295, -0.029129978269338608, 0.07120661437511444, -0.011295520700514317, -0.003824403043836355, -0.011470475234091282, -0.023334600031375885, -0.03630312532186508, 0.004105971194803715, 0.0336788035929203, -0.008108062669634819, 0.03094513528048992, -0.04798135906457901, 0.02447180636227131, -0.024296851828694344, -0.006784966681152582, -0.004045830108225346, 0.019726157188415527, -0.04058951884508133, -0.02455928362905979, 0.012060947716236115, -0.046537984162569046, -0.02201150357723236, -0.008649328723549843, 0.013209089636802673, 0.006123418919742107, -0.08975182473659515, 0.007348102517426014, 0.03455357626080513, -0.03566891327500343, 0.004674574360251427, -0.03717790171504021, -0.009234334342181683, 0.02849576622247696, -0.002025648718699813, 0.017408005893230438, -0.0418798103928566, -0.016041170805692673, 0.051480457186698914, -0.04990586265921593, -0.010803460143506527, 0.017703240737318993, -0.04959969222545624, 0.05327374488115311, -0.010743319988250732, 0.004961609374731779, -0.04758771136403084, -0.01812969334423542, -0.014794616959989071, -0.01343871746212244, 0.025280972942709923, -0.017528286203742027, -0.012301511131227016, -0.044176094233989716, 0.0044039408676326275, 0.035056572407484055, -0.04089568927884102, 0.0037697297520935535, -0.01815156266093254, 0.05882855877280235, 0.012859179638326168, -0.04833127185702324, 0.04990586265921593, 0.07754872739315033, -0.012837310321629047, -0.008600123226642609, 0.01794380322098732, 0.016205189749598503, 0.009283540770411491, -0.0013367641950026155, 0.016380146145820618, -0.027117997407913208, -0.020240087062120438, 0.0019176688510924578, -0.018403060734272003, -0.015877149999141693, -0.08367214351892471, 0.007878434844315052, 0.01547256764024496, 0.021814679726958275, -0.019190357998013496, 0.023662639781832695, 0.01443377323448658, 0.005407197400927544, 0.005532946437597275, -0.018982598558068275, 0.03792145848274231, 0.004805790260434151, -0.007102072238922119, -0.021300749853253365, -0.004835860803723335, -0.04894361272454262, 0.009387419559061527, 0.07234381884336472, -0.012290576472878456, 0.02648378722369671, 0.03702481463551521, 0.0025518801994621754, -0.004097769968211651, 0.038140151649713516, -0.0067302933894097805, 0.031098220497369766, -0.04968716949224472, -0.0027254680171608925, -0.015428828075528145, -0.0015650255372747779, -0.0025874178390949965, 0.01342778280377388, 0.02049158327281475, -0.058259956538677216, 0.026352569460868835, -0.045094605535268784, -0.008578253909945488, 0.046844154596328735, -0.0020898899529129267, 0.02683369629085064, -0.029807928949594498, 0.0071458108723163605, 0.04933726042509079, 0.018916990607976913, 0.03332889452576637, -0.008179138414561749, -0.050474464893341064, 0.003438955871388316, 0.03503470495343208, -0.03125130385160446, 0.022000569850206375, 0.03315393999218941, -0.011000284925103188, 0.027402298524975777, -0.01529761217534542, 0.03792145848274231, -0.027730340138077736, 0.04671293869614601, 0.010945611633360386, 0.01751735247671604, 0.05567937344312668, 0.013318436220288277, -0.016336407512426376, 0.049206044524908066, 0.021595986559987068, 0.003890011226758361, -0.00407043332234025, 0.0006987941451370716, -0.0091468570753932, -0.03147000074386597, -0.031010743230581284, 0.02781781740486622, 0.004904202185571194, -0.023072168231010437, -0.03492535650730133, -0.002248442964628339, -0.07763620465993881, -0.05939716100692749, 0.02484358474612236, 0.035056572407484055, 0.0023085835855454206, -0.013099742121994495, -0.02042597532272339, -0.007063800934702158, -0.027708470821380615, -0.03555956855416298, -0.02746790647506714, 0.03636873513460159, 0.0007346735801547766, 0.03282589837908745, 0.03853379935026169, 0.017112769186496735, -0.05974707379937172, -0.036762382835149765, -0.0026612267829477787, 0.06377103179693222, -0.0040403627790510654, 0.0160958431661129, 0.039452314376831055, 0.05200532078742981, -0.0550670325756073, 0.02683369629085064, -0.007337167859077454, 0.035100311040878296, -0.06355234235525131, -0.011962535791099072, -0.020524388179183006, -0.015199200250208378, 0.03916801139712334, 0.024384329095482826, -0.012192164547741413, 0.034816011786460876, 0.0031983929220587015, 0.025018539279699326, 0.04356374964118004, 0.011864123865962029, -0.07523057609796524, 0.02888941578567028, -0.0003290654276497662, -0.050824377685785294, -0.005899257957935333, 0.019124750047922134, -0.0036986542399972677, 0.02026195637881756, 0.02311590686440468, -0.023006560280919075, -0.02917371690273285, 0.02412189543247223, -0.0022867142688483, -0.031754299998283386, -0.07216886430978775, 0.021606920287013054, 0.04085195064544678, 0.03192925453186035, -0.009305410087108612, -0.04802509769797325, -0.006046876311302185, -0.024406198412179947, -0.03149186819791794, 0.013307501561939716, -0.0081408666446805, 0.006276504136621952, -0.0008002816466614604, -0.06000950559973717, -0.02685556560754776, 0.000572020246181637, -0.02250356413424015, 0.016970617696642876, -0.0011918797390535474, -0.005262312944978476, 0.06617666035890579, 0.015341350808739662, -0.016084909439086914, 0.03048587776720524, 0.013712083920836449, 0.0012759400997310877, -0.015232004225254059, 0.04557573050260544, -0.014718074351549149, -0.013832366093993187, 0.004518755245953798, -0.014521250501275063, -0.021945895627141, -0.005921127274632454, 0.018938859924674034, -0.015363220125436783, 0.03601882606744766, 0.026593133807182312, 0.03453170880675316, -0.002957829972729087, -0.011667300015687943, 0.0017878195503726602, -0.010475420393049717, 0.014226013794541359, -0.05865360423922539, -0.022656649351119995, -0.0056914989836514, -0.0071676806546747684, 0.018687361851334572, -0.055591896176338196, -0.009491299279034138, 0.0025846841745078564, -0.012192164547741413, -0.04723780229687691, 0.021158598363399506, -0.031360652297735214, 0.006888846401125193, 0.03929922729730606, 0.031360652297735214, -0.021574117243289948, 0.03488161787390709, -0.032366640865802765, -0.0045898305252194405, 0.017790718004107475, -0.030442139133810997, -0.009409288875758648, 0.023334600031375885, 0.04238280653953552, -0.012487400323152542, 0.004406674765050411, -0.04273271560668945, -0.0038353377021849155, 0.01491489913314581, 0.03582200035452843, -0.01524293888360262, 0.022383281961083412, 0.01833745278418064, 0.021486639976501465, -0.013985451310873032, -0.027992771938443184, 0.028692591935396194, -0.042426545172929764, -0.0029168250039219856, 0.007599600125104189, 0.020808689296245575, -0.020393172279000282, 0.015396024100482464, -0.030726440250873566, 0.008375962264835835, 0.025390319526195526, -0.005560283083468676, -0.0017577492399141192, -0.004937006626278162, -0.0014010054292157292, -0.029129978269338608, -0.005893790628761053, 0.012760767713189125, 0.014980507083237171, -0.021595986559987068, 0.0037423931062221527, 0.0024808046873658895, -0.03131691366434097, -0.001144040492363274, -0.0497746467590332, -0.025455927476286888, 0.003851739689707756, -0.014313491992652416, -0.017342396080493927, 0.009289007633924484, -0.02919558621942997, 0.004360202234238386, -0.007829228416085243, 0.04876865819096565, 0.044416654855012894, 0.02657126449048519, -0.054235994815826416, 0.0497746467590332, -0.018742036074399948, 0.010256726294755936, 0.009119519963860512, 0.04793762043118477, -0.02198963426053524, 0.006331177894026041, 0.043760575354099274, -0.004764785058796406, -0.040808212012052536, -0.007539459504187107, -0.007408243138343096, 0.018545212224125862, 0.017768848687410355, -0.043082624673843384, -0.04257962852716446, -0.00036631166585721076, 0.04074260592460632, 0.005768042057752609, -0.01208281796425581, 0.010863601230084896, -0.003469026181846857, -0.011864123865962029, -0.006068745627999306, 0.012028143741190434, 0.007036464288830757, -0.00335147837176919, -0.057253967970609665, -0.0510430708527565, -0.019594939425587654, -0.009764665737748146, 0.00816273596137762, -0.014586858451366425, 0.010508224368095398, -0.03999904543161392, -0.01847960241138935, 0.02180374413728714, -0.008731339126825333, 0.027402298524975777, 6.892903911648318e-06, 0.025958921760320663, 0.0238813329488039, -0.0678824707865715, 0.004084101878106594, -0.04771892726421356, -0.006276504136621952, -0.009759198874235153, -0.033350761979818344, -0.01572406478226185, 0.030310923233628273, 0.02552153542637825, 0.0295454952865839, 0.005910192616283894, 0.0072660925798118114, -0.00249994033947587, -0.01599743217229843, 0.023618901148438454, -0.0017768848920240998, 0.010426213964819908, 0.009217931888997555, -0.0024056287948042154, 0.00904297735542059, -0.023400207981467247, 0.0238813329488039, -0.02161785587668419, -0.01808595471084118, -0.010158314369618893, 0.036784250289201736, -0.05406104028224945, -0.002001045737415552, 0.013635541312396526, 0.0005949147162027657, 0.008310354314744473, -0.002423397731035948, 0.006932585034519434, -0.03284776955842972, 0.0026912973262369633, 0.013723018579185009, 0.01730959303677082, -0.01660977303981781, -0.005060021765530109, 0.03179803863167763, -0.03704668581485748, -0.041486162692308426, 0.00407043332234025, 0.004043096676468849, -0.011459540575742722, 0.016905009746551514, -0.005839117337018251, 0.00020878398208878934, 0.03960539773106575, -0.0004606232396326959, -0.0067959013395011425, -0.020743081346154213, 0.01089093741029501, -0.004237187094986439, -0.02423124387860298, 0.023028429597616196, 0.029304932802915573, -0.002394694136455655, 0.0010852665873244405, -0.053230006247758865, -0.010109108872711658, -0.006429589819163084, -0.01677379384636879, -0.009972425177693367, 0.016084909439086914, -0.004838594235479832, 0.002069387584924698, -0.006025006528943777, 0.020732145756483078, 0.011459540575742722, -0.04710658639669418, 0.010940143838524818, 0.013263762928545475, 0.006806835997849703, 0.004731981083750725, 0.012542073614895344, 0.009666253812611103, -0.024296851828694344, -0.0032339305616915226, -0.024756107479333878, 0.009923218749463558, -0.013602737337350845, -0.006894313730299473, 0.01139393262565136, -0.03831510618329048, -0.00528691615909338, 0.04872491955757141, -0.027664732187986374, 0.0032585335429757833, 0.01726585440337658, 0.009163258597254753, -0.00580631336197257, -0.006992725655436516, 0.002631156472489238, -0.035362742841243744, -0.02379385568201542, -0.02084149420261383, 0.016205189749598503, -0.016533231362700462, -0.007386373821645975, -0.0072988965548574924, 0.02517162449657917, -0.026702480390667915, 0.04806883633136749, 0.016369210556149483, -0.014510315842926502, 0.04157363995909691, -0.026658741757273674, -0.019398115575313568, -0.04872491955757141, 0.005357991438359022, -0.007878434844315052, -0.023290861397981644, 0.02447180636227131, -0.045138344168663025, -0.012837310321629047, -0.003851739689707756, -0.009753731079399586, -0.02851763553917408, -0.004439478740096092, 0.008381429128348827, -0.005057287868112326, 0.00997789204120636, -0.01342778280377388, -0.021836549043655396, -0.06595797091722488, -0.0227659959346056, -0.010229390114545822, -0.035756390541791916, -0.025915183126926422, -0.00947489682585001, 0.04999333992600441, -0.019201291725039482, -0.010519159026443958, 0.007282494567334652, 0.003780664410442114, 0.005839117337018251, 0.01342778280377388, 0.006407720502465963, 0.012553008273243904, 0.0103770075365901, 0.034028712660074234, -0.015756869688630104, -0.008660263381898403, -0.033110201358795166, 0.004308262374252081, -0.021421032026410103, -0.019037270918488503, -0.016664447262883186, -0.0016579703660681844, -0.029654841870069504, 0.04833127185702324, -0.005322453565895557, -0.03024531528353691, 0.046537984162569046, 0.007249690592288971, -0.05200532078742981, 0.04833127185702324, 0.003668583929538727, -0.035734523087739944, -0.0019012668635696173, -0.008124464191496372, 0.012673290446400642, 0.021792810410261154, 0.009961490519344807, -0.057297706604003906, 0.011536084115505219, 0.014226013794541359, 0.015483502298593521, 0.012060947716236115, -0.02311590686440468, 0.05209279805421829, 0.028320811688899994, -0.025958921760320663, 0.033744413405656815, 0.0003847639309242368, -0.029698580503463745, 0.05126176401972771, -0.03503470495343208, 0.0022634780034422874, -0.008370494470000267, 0.004521488677710295, -0.013865170069038868, 0.04491965100169182, -0.0063475798815488815, -0.009677188470959663, 0.04610059782862663, -0.0006328443996608257, -0.041814204305410385, 0.006992725655436516, -0.011027621105313301, 0.028714461252093315, 0.009786535054445267, 0.01374488789588213, 0.019026337191462517, 0.016434818506240845, 0.020218217745423317, 0.026899304240942, 0.018326517194509506, 0.04133307561278343, 0.002703598700463772, -0.01528667751699686, 0.022066177800297737, 0.014597793109714985, 0.011437671259045601, 0.00022586941486224532, 0.007036464288830757, 0.026374440640211105, 0.018709231168031693, -0.0007756786071695387, 0.0047538504004478455, -0.009092183783650398, -0.007829228416085243, 0.021442901343107224, -0.03418179973959923, 0.07120661437511444, -0.01478368230164051, 0.012542073614895344, -0.040458302944898605, -0.000964985229074955, -0.012782637029886246, -0.02615574561059475, -0.01597556285560131, 0.0028812873642891645, -0.03354758769273758, 0.009852143935859203, 0.021606920287013054, 0.01878577470779419, 0.0028457494918257, 0.03459731489419937, 0.015560044907033443, 0.0026584931183606386, 0.003072644118219614, -0.012968526221811771, 0.016500426456332207, 0.013493390753865242, -0.01100575178861618, 0.02580583654344082, -0.000821467547211796, -0.007424645125865936, 0.03179803863167763, 0.05703527107834816, -0.018960729241371155, 0.039102401584386826, 0.004854996223002672, -0.0105628976598382, 0.013843300752341747, 0.004529689904302359, 0.025434058159589767, -0.005828182678669691, 0.023400207981467247, 0.010726917535066605, -0.01782352291047573, 0.013056003488600254, 0.005259579513221979, 0.02410002611577511, 0.011951601132750511, -0.017582960426807404, 0.012717029079794884, -0.0008754575392231345, 0.01917942240834236, -0.055941805243492126, -0.031426262110471725, -0.012596746906638145, 0.03433488309383392, -0.04356374964118004, 0.002528643934056163, -0.01944185420870781, 0.006784966681152582, 0.027730340138077736, -0.012388988398015499, 0.03566891327500343, -0.0356907844543457, 0.027730340138077736, 0.044132355600595474, -0.004300061613321304, -0.021071121096611023, -0.031076351180672646, -0.04026147723197937, -0.00437387079000473, -0.01491489913314581, 0.038052674382925034, 0.032060470432043076, 0.025040408596396446, 0.0024931062944233418, -0.015166396275162697, 0.07588665187358856, 0.04072073474526405, -0.0015308547299355268, -0.0060632782988250256, 0.03499096632003784, -0.00023082418192643672, 0.02037130296230316, 0.03085765615105629, 0.043848052620887756, 0.00957877654582262, 0.029042501002550125, 0.01800941303372383, 0.007156745996326208, 0.020666537806391716, -0.05165541172027588, -0.015899019315838814, 0.0016169652808457613, 0.00995602272450924, -0.01967148296535015, -0.010251259431242943, -0.00044080414227209985, 0.02051345258951187, 0.007687077391892672, 0.0305514857172966, -0.024646760895848274, 0.0027049656491726637, 0.008272082544863224, 0.02657126449048519, 0.00550834322348237, 0.04091756045818329, -0.00948583148419857, 0.012203099206089973, 0.023946940898895264, 0.023378338664770126, 0.012738898396492004, -0.005073689855635166, 0.00039809057489037514, -0.02484358474612236, -0.02617761492729187, 0.018326517194509506, 0.012498334981501102, 0.009316344745457172, -0.006303840782493353, -0.007107539568096399, -0.01944185420870781, 0.019168488681316376, 0.03921175003051758, 0.0041852472350001335, -0.010021630674600601, -0.03490348905324936, 0.011820385232567787, 0.05034324899315834, -0.01695968396961689, 0.017506416887044907, 0.024406198412179947, -0.011218978092074394, -0.016216125339269638, -0.024056287482380867, 0.02514975517988205, -0.01160169206559658, -0.012257772497832775, 0.01207188330590725, 0.012367119081318378, -0.024581152945756912, 0.04645050689578056, -0.0024329654406756163, 0.02685556560754776, -0.007162213325500488, -0.00806979089975357, 0.0015308547299355268, 0.02102738246321678, 0.04408861696720123, 0.021563181653618813, -0.0077745551243424416, -0.013362174853682518, -0.0028402821626514196, 0.022306740283966064, -0.013799562118947506, 0.006686554756015539, 0.03687172755599022, 0.005289649590849876, -0.00621089618653059, -0.0442635715007782, 0.03352571651339531, -0.02720547467470169, -0.005185770336538553, 0.02484358474612236, 0.007271559908986092, -0.0006519801099784672, -0.0333070233464241, 0.016555100679397583, -0.03446609899401665, 0.015581914223730564, 0.03529713675379753, 0.001144040492363274, 0.02320338413119316, 0.05764761567115784, -0.0005040202522650361, 0.029436148703098297, 0.020808689296245575, 0.03461918607354164, 0.004141508601605892, 0.04260149970650673, -0.005590353161096573, -0.017790718004107475, 0.009906817227602005, 0.002312683966010809, -0.005915659945458174, 0.018818577751517296, -0.0055794185027480125, -0.028386419638991356, 0.00764880608767271, 0.003813468385487795, -0.024603022262454033, -0.02320338413119316, 0.012804506346583366, -0.0009068947401829064, -0.04846248775720596, -0.011372063308954239, 0.0006161006749607623, 0.012159360572695732, 0.01714557223021984, -0.015002376399934292, 0.015210134908556938, 0.0490310899913311, -0.03551582992076874, 0.02451554499566555, 0.01665351167321205, 0.04767518863081932, 0.015417893417179585, 0.003277669195085764, 0.059178467839956284, -0.002326352521777153, 0.007309831213206053, -0.012957591563463211, 0.01857801526784897, 0.007353569846600294, 0.01529761217534542, 0.03523152694106102, -0.027052389457821846, -0.02521536312997341, -0.00192997045814991, -0.009316344745457172, -0.0455319918692112, -0.0124436616897583, 0.025280972942709923, -0.0014447441790252924, -0.03750593960285187, -0.0010114575270563364, 0.004595297854393721, -0.04190168157219887, -0.017418939620256424, -0.013241893611848354, -0.008698535151779652, -0.018818577751517296, -0.018884185701608658, -0.04157363995909691, -0.0036549156066030264, 0.011776646599173546, 0.004138775169849396, -5.7065342843998224e-05, -0.004434011410921812, 0.016762858256697655, -0.006675620097666979, -0.01155795343220234, 0.0020830559078603983, 0.003917347639799118, 0.014860224910080433, 0.010601168498396873, 0.018184367567300797, -0.010371540673077106, 0.03724350780248642, -0.016248928382992744, 0.03862127661705017, -0.0017755180597305298, -0.008365027606487274, -0.02823333442211151, 0.010661309584975243, -0.036412473767995834, 0.008288484998047352, 0.014400969259440899, 0.005549348425120115, -0.00995602272450924, -0.017812587320804596, 0.018217170611023903, 0.005746172275394201, -0.004316463600844145, -0.041442424058914185, 0.03588760644197464, 0.02423124387860298, -0.0003208644047845155, -0.03523152694106102, -0.031776171177625656, -0.014171340502798557, 0.009267138317227364, 0.060884278267621994, 0.0004326031485106796, 9.46532964007929e-05, -0.011273651383817196, 0.008299419656395912, 0.029392410069704056, 0.03429114446043968, -0.02654939517378807, 0.022919081151485443, -0.012356184422969818, -0.015221069566905499, 0.008343158289790154, -0.005664162337779999, -0.010076303966343403, 0.028277073055505753, 0.01644575409591198, -0.03886184096336365, 0.009174193255603313, 0.013274697586894035, 0.015024245716631413, -0.014291621744632721, 0.003605709644034505, 0.008441570214927197, 0.0018055884866043925, -0.016281733289361, 0.05362365394830704, -0.013701149262487888, 0.0029851666186004877, 0.009310876950621605, -0.0035756391007453203, 0.004477750044316053, -0.03026718460023403, 0.0015048847999423742, -0.017790718004107475, 0.03212608024477959, -0.03514404967427254, 0.021727202460169792, 0.010797993279993534, -0.0024821716360747814, -0.012279641814529896, -0.012454596348106861, 0.0031191164162009954, 0.0005996986874379218, 0.017112769186496735, -0.001640201429836452, 0.021749071776866913, -0.005440001375973225, 0.011273651383817196, -0.006495197769254446, -0.004018493462353945, 0.0006130252731963992, 0.004034895449876785, 0.015133592300117016, -0.014346295967698097, 0.0029058903455734253, -0.00107296509668231, 0.0046144332736730576, -0.013482456095516682, 0.031010743230581284, 0.02517162449657917, -0.0160958431661129, 0.003529166802763939, 0.012214033864438534, 0.0065772077068686485, -0.012509269639849663, 0.02110392600297928, 0.00018981915491167456, -0.016172386705875397, 0.018075020983815193, -0.026265092194080353, 0.03221355751156807, -0.010940143838524818, -0.0023386538960039616, 0.007714414037764072, 0.03792145848274231, -0.01798754371702671, -0.006303840782493353, 0.03765902668237686, -0.010087238624691963, 0.012695159763097763, 0.01373395323753357, 0.0014474778436124325, 0.012968526221811771, -0.02318151481449604, 0.025630882009863853, -0.014575923793017864, 0.03356945514678955, -0.02385946363210678, -0.00030155788408592343, 0.06762003898620605, 0.0006113167619332671, 0.04894361272454262, 0.00506548909470439, 0.0007756786071695387, -0.032432250678539276, -0.004242654424160719, -0.01373395323753357, -0.008578253909945488, 0.025302842259407043, -0.00619996152818203, -0.00013164326082915068, 0.011027621105313301, -0.01090187206864357, 0.015505371615290642, -0.02250356413424015, 0.013766758143901825, -0.0027309353463351727, -0.016686316579580307, 0.025018539279699326, -0.032060470432043076, -0.01644575409591198, -0.004447679501026869, -0.02713986672461033, -0.025302842259407043, -0.0004216684610582888, -0.005240443628281355, 0.04837501049041748, -0.00107296509668231, 0.0054153986275196075, 0.007834695279598236, -0.011721973307430744, -0.02084149420261383, -0.011853189207613468, -0.00013992968888487667, -0.03665303438901901, 0.010721450671553612, -0.007293429225683212, -0.012837310321629047, -0.005125629715621471, 0.010103641077876091, 0.02685556560754776, -0.002255277009680867, -0.02989540621638298, -0.00284848315641284, -0.0005245227366685867, -0.020065130665898323, -0.015527240931987762, 0.026286961510777473, 0.014127601869404316, 0.006593610160052776, -0.02722734399139881, -0.0008112163050100207, 0.02322525344789028, -0.0030125032644718885, -0.018359322100877762, 0.026746219024062157, 0.011372063308954239, 0.002821146510541439, 0.030048491433262825, 0.020568126812577248, 0.027424167841672897, -0.005177569109946489, -0.008775077760219574, -0.01605210453271866, -0.028933154419064522, 0.017462678253650665, 0.011645430698990822, -0.005811780691146851, 0.0160958431661129, 0.009376484900712967, -0.06280878186225891, 0.0007052866276353598, -0.0209399051964283, 0.06307121366262436, -0.02884567715227604, 0.017550155520439148, 0.01293572224676609, -0.0010989350266754627, 0.021716266870498657, -0.008802414871752262, 0.004166111815720797, -0.0475439727306366, 0.03958353027701378, -0.01683940179646015, 0.012891983613371849, -0.022678518667817116, 0.0373309850692749, -0.026243222877383232, 0.02219739370048046, -0.033088330179452896, 0.0365874283015728, -0.0144556425511837, 0.014586858451366425, 0.012498334981501102, -0.044832173734903336, -0.018938859924674034, 0.001569126034155488, 0.02921745553612709, -0.005735237617045641, 0.0314481295645237, 0.004532423336058855, -0.024449937045574188, 0.0040868353098630905, -0.0523114912211895, -0.005855519324541092, -0.024712368845939636, 0.010338736698031425, -0.007539459504187107, -0.01581154204905033, 0.013252828270196915, 0.008097128011286259, -0.024690499529242516, 0.010333268903195858, -0.00858372077345848, -0.040458302944898605, -0.01897166296839714, 0.029020631685853004, -0.00015804024587851018, -0.00958971120417118, -0.03262907639145851, -0.004693709779530764, -0.006538936402648687, -0.028626983985304832, 0.029742320999503136, -0.00957877654582262, -0.006987258326262236, -0.0005234976415522397, -0.030310923233628273, -0.015363220125436783, 0.017036225646734238, 0.007610534783452749, -0.022263001650571823, 0.019879242405295372, 0.013537129387259483, -0.003999358043074608, 0.0010681812418624759, -0.0018151563126593828, -0.011492344550788403, 0.030376531183719635, -0.013220024295151234, 0.0008358193445019424, 0.010404344648122787, 0.02049158327281475, 0.01925596594810486, 0.008704002946615219, -0.00012079400767106563, -0.020393172279000282, -0.034050583839416504, 0.043104495853185654, 0.000999156036414206, -0.016719119623303413, -0.018545212224125862, -0.013580868020653725, -0.025040408596396446, -0.017867261543869972, -0.030682701617479324, -0.005259579513221979, 0.0031546540558338165, 0.019573070108890533, -0.016205189749598503, -0.03398497402667999, 0.02923932485282421, -0.017189310863614082, 0.025324711576104164, 0.03052961640059948, 0.0227659959346056, -0.016030235216021538, -0.01477274764329195, 0.030376531183719635, -0.006692022085189819, -0.017090899869799614, 0.014882095158100128, -0.032082341611385345, -0.028080249205231667, -0.015964627265930176, 0.012607681564986706, -0.017736045643687248, -0.023990679532289505, -0.025062277913093567, -0.02049158327281475, -0.008862555027008057, 0.061977747827768326, -0.02985166758298874, 0.0037615287583321333, -0.01046995259821415, -0.014477511867880821, 0.0018793975468724966, -0.021628789603710175, 0.005068222526460886, 0.041748594492673874, -0.008518112823367119, 0.0199339147657156, 0.03967100754380226, -0.0014775481540709734, -0.0062601021490991116, 0.013384044170379639, -0.02917371690273285, 0.03765902668237686, -0.02580583654344082, 0.011126033030450344, 0.020546257495880127, -0.017418939620256424, 0.002357789548113942, -0.015057049691677094, -0.0008891258621588349, -0.022022439166903496, -0.008474374189972878, -0.0013511159922927618, 0.01632547192275524, 0.016708185896277428, -0.006331177894026041, 0.007583198137581348, -0.05239896848797798, -0.009420223534107208, 0.010005229152739048, 0.018960729241371155, 0.010437148623168468, -0.039124272763729095, 0.0012301511596888304, 0.015735000371932983, -0.00872587226331234, -0.014488446526229382, 0.00407043332234025, -0.024274982511997223, -0.012826375663280487, -0.013307501561939716, -0.0017386135878041387, -0.001955940155312419, -0.017408005893230438, 0.03835884481668472, 0.02227393537759781, -0.011229912750422955, -0.015888085588812828, 0.015100788325071335, -0.01745174452662468, -0.022678518667817116, 0.005027217324823141, -0.00406496599316597, 0.0027323022950440645, -0.011678234674036503, 0.004813991487026215, -0.006642816122621298, 0.015199200250208378, 0.006287438794970512, 0.005224041640758514, 0.0030097695998847485, -0.012039078399538994, -0.02521536312997341, -0.012815441004931927, 0.004160644486546516, -0.018774839118123055, 0.03291337564587593, 0.013635541312396526, -0.000962934922426939, 0.02100551314651966, 0.01210468728095293, -0.022547302767634392, 0.028080249205231667, -0.006806835997849703, 0.07474944740533829, -0.04491965100169182, -0.019212227314710617, -0.012542073614895344, -0.007528524845838547, 0.061977747827768326, 0.025040408596396446, -0.010103641077876091, -0.0005508343456313014, -0.00528691615909338, -0.009813872165977955, 0.00506548909470439, 0.0002894272329285741, -0.014696205034852028, 0.010196586139500141, -0.0054673380218446255, 0.014368165284395218, 0.006249167490750551, 0.018424930050969124, -0.008616524748504162, 0.014499381184577942, 0.014072928577661514, 0.04723780229687691, 0.013580868020653725, -0.034816011786460876, -0.0011467741569504142, 0.0550670325756073, 0.019037270918488503, 0.005215840879827738, 0.021410096436738968, 0.02418750524520874, 0.03503470495343208, 0.010705048218369484, -0.0020106136798858643, 0.006145288236439228, -0.005273247603327036, 0.024384329095482826, 0.005543881095945835, -0.010027098469436169, -0.011875058524310589, 0.0013538496568799019, 0.002573749516159296, 0.01726585440337658, -0.020229151472449303, 0.016861271113157272, 0.030026622116565704, -0.026680611073970795, 0.0201198048889637, -0.010803460143506527, -0.021344488486647606, 0.022875342518091202, -0.0006574474391527474, 0.013887039385735989, -0.04406674578785896, 0.0044176094233989716, 0.0406113900244236, 0.04404487833380699, -0.008742273785173893, 0.0069489870220422745, -0.03682798892259598, 0.01578967273235321, -0.01827184483408928, 0.0054345340467989445, -0.02919558621942997, 0.04806883633136749], [0.022214658558368683, -0.00893173087388277, 0.003452445613220334, 0.013041195459663868, -0.047131773084402084, -0.011020553298294544, -0.015470923855900764, -0.014466800726950169, 0.037660788744688034, -0.01526018138974905, -0.0040660761296749115, -0.007171417586505413, -0.052214365452528, 0.03391702473163605, 0.006923486012965441, 0.053751543164253235, 0.026107182726264, 0.046908631920814514, -0.015458527021110058, -0.018681636080145836, 0.049487121403217316, -0.004967927001416683, -0.008894541300833225, -0.0006186664686538279, 0.016189925372600555, -0.0307930875569582, -0.006532994098961353, -0.016871735453605652, 0.018384117633104324, -0.010016431100666523, 0.06956957280635834, -0.01628909818828106, 0.0022933660075068474, -0.043016109615564346, 0.011435839347541332, 0.005724117625504732, 0.04502435401082039, 0.02717328816652298, -0.020008068531751633, -0.011510218493640423, -0.04971025884151459, -0.025437768548727036, -0.005612548440694809, -0.017900651320815086, 0.022995643317699432, 0.054892025887966156, -0.019598983228206635, 0.021396486088633537, 0.017342805862426758, 0.005129082128405571, 0.02603280358016491, 0.03892524167895317, -0.008528842590749264, -0.0031254859641194344, -0.00220659002661705, 0.008497850969433784, 0.029206326231360435, 0.022301435470581055, -0.009297429583966732, -0.03480957821011543, -0.023008039221167564, -0.000959184835664928, 0.011163114570081234, -0.031561676412820816, 0.015570095740258694, -0.010679648257791996, 0.003489635419100523, 0.07185053825378418, -0.009694119915366173, 0.02759477309882641, 0.04068555310368538, 0.02396257594227791, 0.01871882565319538, 0.012359383516013622, -0.012142444029450417, 0.048073910176754, 0.016388269141316414, -0.07561909407377243, -0.011646580882370472, 0.025227027013897896, -0.057024236768484116, 0.0038398385513573885, -0.05578457936644554, -0.010871795006096363, -0.007518521510064602, 0.03158646821975708, -0.006371838506311178, -0.014962663874030113, -0.03203274682164192, -0.003195216879248619, -0.05236312747001648, -0.0276691522449255, 0.03195836767554283, 0.022871678695082664, -0.039867378771305084, -0.014962663874030113, -0.028859222307801247, -0.014615559950470924, -0.04430535435676575, 0.05469368025660515, -0.0649084597826004, 0.010574277490377426, -0.008101160638034344, 0.0029333392158150673, 0.04482600837945938, -0.0314377099275589, -0.04824746400117874, 0.017665116116404533, -0.027867496013641357, 0.052115194499492645, 0.04968546703457832, -0.02873525768518448, 0.004664210602641106, 0.041652485728263855, 0.009167266078293324, -0.057371340692043304, -0.045991286635398865, 0.0042582228779792786, -0.002356898505240679, -0.013289126567542553, 0.02106177806854248, 0.025784872472286224, 0.014851095154881477, -0.053106918931007385, 0.02838815376162529, 0.038528550416231155, -0.03168564289808273, 0.04658632352948189, 0.04616484045982361, 0.008206531405448914, 0.02945425920188427, -0.04135496914386749, 0.05910686030983925, -0.058809343725442886, -0.0014713183045387268, 0.008404877036809921, -0.033743470907211304, -0.018954360857605934, 0.012167236767709255, 0.012142444029450417, 0.06411507725715637, 0.02709890902042389, 0.02533859573304653, 0.01607835479080677, -0.023925386369228363, 0.00829330738633871, 0.020875830203294754, -0.016846943646669388, -0.06218121200799942, 0.014256059192121029, -0.0015766891883686185, 0.009725111536681652, -0.01658661477267742, 0.022499781101942062, 0.01295441947877407, 0.0036445925943553448, 0.018656842410564423, 0.08424711227416992, 0.021656813099980354, -0.018334532156586647, -0.0469830147922039, 0.01433043833822012, -0.014454404823482037, -0.030892260372638702, -0.06684232503175735, -0.01614033803343773, -0.02240060828626156, -0.028983188793063164, -0.037611205130815506, -0.005851182620972395, -0.01827254891395569, 0.0006124682258814573, -0.008968920446932316, -0.04993339627981186, -0.019375843927264214, -0.08087524771690369, 0.02355348877608776, 0.01871882565319538, -0.0361236147582531, 0.009836681187152863, 0.02375183440744877, 0.015669269487261772, -0.03865251690149307, -0.021247725933790207, -0.02796666882932186, 0.05107388272881508, 0.0005919364048168063, 0.039445895701646805, 0.012210624292492867, -0.033272404223680496, -0.023243574425578117, -0.013846972025930882, -0.001193170202895999, -0.0022902670316398144, 0.016028769314289093, -0.0026668128557503223, -0.019946087151765823, 0.015458527021110058, 0.028363360092043877, -0.02930549904704094, -0.02240060828626156, -0.031115399673581123, 0.007171417586505413, 0.052611056715250015, -0.02460719831287861, 0.03825582563877106, 0.004772680811583996, 0.003001520410180092, 0.012458556331694126, -0.04594169929623604, 0.03443768247961998, 0.031214572489261627, 0.020962605252861977, -0.026850977912545204, -0.014553576707839966, 0.015768440440297127, 0.0172808226197958, -0.019189896062016487, 0.004540245048701763, -0.024867525324225426, -0.025884045287966728, -0.04403262957930565, -0.00970651675015688, 0.025165043771266937, -0.04135496914386749, 0.003412156831473112, 0.006582580506801605, -0.0035640147980302572, -0.024706371128559113, 0.008181738667190075, -0.03684261441230774, -0.006526795681566, -0.008063971064984798, -0.03622278571128845, -0.03753682225942612, -0.0059472559951245785, 0.014181680046021938, 0.0014790662098675966, 0.01095237210392952, -0.01855766959488392, 0.013189953751862049, 0.04879291355609894, -0.04581773653626442, -0.0026544162537902594, 0.005789199844002724, 0.009483378380537033, -0.00718381442129612, -0.00058225158136338, 0.025239422917366028, 0.011956495232880116, -0.009774697944521904, -0.03875168785452843, 0.0345616452395916, 0.008367687463760376, -0.004580534063279629, -0.004493757616728544, 0.012464754283428192, -0.033198025077581406, 0.022016314789652824, -0.03337157517671585, -0.0044999560341238976, 0.03265257552266121, 0.03066912293434143, 0.0036755839828401804, -0.06133824586868286, -0.022140279412269592, 0.03835499659180641, -0.015979183837771416, 0.012241615913808346, -0.003099143272265792, -0.03964424133300781, 0.012334590777754784, -0.009973043575882912, -0.05251188576221466, -0.01636347733438015, 0.033049263060092926, -0.0010552583262324333, -0.04296652227640152, -0.03230547159910202, 0.052214365452528, -0.04046241566538811, -0.010189983062446117, -0.02460719831287861, -0.02404935285449028, -0.004611525218933821, 0.010902786627411842, 0.027545185759663582, 0.0212849173694849, 0.035602957010269165, -0.04137976095080376, 0.01849568821489811, 0.014937871135771275, 0.025586526840925217, 0.0026513170450925827, 0.0009258690988644958, -0.033619508147239685, -0.009105282835662365, 0.06624728441238403, -0.019760137423872948, -0.05543747544288635, -0.027495600283145905, 0.044156596064567566, -0.024532819166779518, -0.031264159828424454, 0.0009150220430456102, -0.0007077668560668826, -0.012588719837367535, -0.019735345616936684, -0.02041715569794178, -0.015210595913231373, -0.01778908260166645, -0.03414016216993332, 0.0008197234128601849, -0.02796666882932186, -0.01771470345556736, 0.01920229196548462, -0.034040991216897964, -0.019512206315994263, 0.029925327748060226, -0.06084238365292549, 0.0761149600148201, -0.021012192592024803, 0.015495716594159603, -0.07442902773618698, 0.017379995435476303, -0.004623922053724527, -0.003010817803442478, 0.07452820241451263, -0.018867583945393562, -0.03371867910027504, -0.06515639275312424, -0.016537029296159744, 0.009340818040072918, -0.04737970232963562, -0.0392475500702858, -0.06733818352222443, 0.04135496914386749, 0.009743706323206425, -0.034958336502313614, -0.005287138745188713, -0.017132064327597618, 0.013041195459663868, 0.018532877787947655, -0.005603251047432423, 0.03158646821975708, 0.009371809661388397, -0.014491594396531582, 0.0006136304000392556, 0.0368674099445343, 0.046065665781497955, -0.03892524167895317, 0.018185773864388466, 0.011758149601519108, -0.05504078418016434, -0.007270590402185917, -0.014404818415641785, 0.058809343725442886, -0.035751719027757645, 0.022673333063721657, 0.02019401825964451, 0.03875168785452843, 0.02489231899380684, -0.004630120005458593, 0.04554501175880432, 0.025363389402627945, 0.004072274547070265, -0.04765242710709572, 0.005934859625995159, -0.028363360092043877, 0.010704440996050835, 0.0566275455057621, 0.019946087151765823, 0.025437768548727036, 0.03146250173449516, -0.024086542427539825, 0.014751922339200974, 0.01291722897440195, 0.03138812258839607, 0.004704499617218971, -0.0324542298913002, 0.013004005886614323, -0.024061748757958412, -0.021966727450489998, 0.018830394372344017, 0.01933865435421467, 0.020181620493531227, -0.004121860489249229, 0.03270215913653374, -0.01998327672481537, 0.0009204456000588834, 0.01202467642724514, -0.010270561091601849, 0.0036817824002355337, -0.0273964274674654, 0.010270561091601849, 0.02297084964811802, -0.011256088502705097, -0.008820162154734135, -0.005060900934040546, -0.03168564289808273, -0.014132093638181686, 0.00790281593799591, -0.05776803195476532, 0.016673391684889793, 0.03213191777467728, 0.030346810817718506, 0.027991462498903275, -0.013028798624873161, 0.030470777302980423, -0.052115194499492645, -0.009408999234437943, 0.05985065549612045, 0.011516416445374489, 0.019536999985575676, 0.010276759043335915, 0.0044131800532341, 0.04224752262234688, -0.026231149211525917, 0.00012280355440452695, 0.03195836767554283, -0.022884074598550797, -0.031487297266721725, -0.046834252774715424, -0.027049323543906212, 0.007512323558330536, -0.03602444380521774, -0.030495570972561836, -0.03882606700062752, 0.014404818415641785, -0.07066046446561813, -0.03158646821975708, 0.06401590257883072, 0.019822120666503906, 0.026627840474247932, -0.03161126375198364, -0.006749934051185846, 0.011869719251990318, -0.016400666907429695, -0.008132152259349823, -0.021644417196512222, -0.007977195084095001, -0.019735345616936684, 0.02340473048388958, 0.03513189032673836, -0.0061332047916948795, -0.03572692349553108, -0.055239129811525345, -0.023094816133379936, 0.03379305824637413, -0.03421454131603241, 0.03433850780129433, 0.04923918843269348, 0.006911089643836021, -0.05613168329000473, 0.0016084554372355342, -0.016400666907429695, 0.011473028920590878, -0.02497909590601921, 0.002349150599911809, 0.0075557115487754345, 0.034611232578754425, -0.02028079330921173, 0.021036984398961067, -0.020094845443964005, 0.014417215250432491, 0.0054637896828353405, -0.005575358867645264, -0.02781791053712368, 0.008274712599813938, -0.02533859573304653, 0.03833020478487015, 0.0058914716355502605, 0.009594948031008244, 0.012117650359869003, 0.04772680625319481, 0.010078414343297482, 0.0509251244366169, 0.030892260372638702, -0.029131947085261345, -0.007648685947060585, -0.024793146178126335, -0.007871824316680431, -0.08841235935688019, -0.06322252750396729, 0.0465119443833828, 0.03704096004366875, 0.0535036101937294, 0.007642487529665232, -0.10423038899898529, -0.025239422917366028, -0.02484273351728916, -0.018669240176677704, 0.021297313272953033, -0.0122044263407588, -0.017243633046746254, -0.017020495608448982, -0.03872689604759216, -0.03366909176111221, 0.01678496040403843, 0.008671402931213379, 0.05548706278204918, -0.01863205060362816, -0.0052003622986376286, 0.02055351808667183, 0.06991667300462723, -0.012167236767709255, 0.007171417586505413, 0.016524631530046463, -0.02640470117330551, -0.025586526840925217, 0.00832429900765419, -0.0267518050968647, -0.025028681382536888, -0.007828435860574245, -0.029702190309762955, -0.03220629692077637, 0.016537029296159744, 0.028140220791101456, -0.0054885828867554665, -0.04363593831658363, -0.01729322038590908, 0.002029938856139779, -0.001763412612490356, -0.0188427921384573, 0.009613542817533016, -0.013264333829283714, 0.013970938511192799, -0.06872659921646118, -0.00738215958699584, -0.008758178912103176, -0.02645428664982319, 0.012818057090044022, -0.05841265246272087, -0.008380083367228508, -0.015632079914212227, -0.012942022643983364, -0.01451638713479042, 0.049834225326776505, -0.004072274547070265, 0.014739525504410267, 0.05191684886813164, 0.021024588495492935, -0.016896529123187065, 0.0033811654429882765, 0.0016285998281091452, -0.007251995615661144, 0.0340161956846714, -0.008169341832399368, -0.023603076115250587, 0.005144577939063311, 0.00537391472607851, -0.03577651083469391, 0.0037096745800226927, -0.06074320897459984, -0.026156770065426826, -0.012892436236143112, -0.008621816523373127, 0.000481916795251891, 0.027371633797883987, 0.015966786071658134, 0.00632845051586628, -8.149778295774013e-05, 0.0188427921384573, 0.012322193942964077, -0.015210595913231373, -0.0028062742203474045, -0.016487441956996918, 0.03515668213367462, -0.03215670958161354, -0.011857322417199612, -0.07229681313037872, 0.0006101438193581998, 0.03438809514045715, -0.08960243314504623, 0.0223386250436306, 0.015570095740258694, -0.004013390745967627, -0.023231178522109985, 0.008101160638034344, 0.028636084869503975, 0.005618746858090162, 0.01900394633412361, -0.014615559950470924, -0.004388386849313974, -0.02346671372652054, -0.018334532156586647, -0.030322019010782242, -0.0026993537321686745, 0.012619711458683014, -0.011125924997031689, -0.040809519588947296, -0.011256088502705097, 0.025512147694826126, -0.0029782766941934824, -0.008181738667190075, 0.03228067606687546, 0.05102429538965225, 0.004236529115587473, -0.04274338483810425, 0.01045650988817215, -0.04291693866252899, -0.005987545009702444, -0.0047695813700556755, 4.324273322708905e-05, -0.02747080661356449, 0.012303599156439304, -0.005593953654170036, -0.010444113053381443, 0.0004354296252131462, 0.0047943745739758015, 0.01020857784897089, 0.020392363891005516, -0.007394555956125259, -0.021433675661683083, -0.0270245298743248, 0.01693371869623661, -0.04668549448251724, -0.018173376098275185, 0.007196210790425539, 0.007710668724030256, -0.00336257042363286, 0.0020237406715750694, -0.006235476583242416, 0.010307750664651394, -0.03161126375198364, 0.032479021698236465, -0.019115516915917397, -0.03535502776503563, -0.005953454412519932, -0.011107329279184341, -0.008572230115532875, -0.029826154932379723, 0.0018424406880512834, -0.027495600283145905, -0.032553400844335556, 0.0024746658746153116, 0.012669297866523266, 0.000980104086920619, 0.011634184047579765, -0.01643785648047924, -0.006127006374299526, -0.015632079914212227, 0.011039149016141891, -0.029627811163663864, 0.017553547397255898, 0.007915211841464043, -0.03309885039925575, -0.012532935477793217, 0.014417215250432491, 0.005445194896310568, 0.026801392436027527, 0.019313860684633255, -0.011088734492659569, -0.003010817803442478, -0.019908897578716278, -0.005091892555356026, -0.0002915131626650691, -0.005191064905375242, -0.01849568821489811, 0.014206472784280777, 0.02489231899380684, -0.02475595660507679, 0.0172808226197958, -0.01694611646234989, 0.010202379897236824, -0.01607835479080677, 0.032974883913993835, -0.041156623512506485, 0.020789053291082382, -0.008187936618924141, -0.002279419917613268, -0.032751746475696564, -0.03009887970983982, -0.014751922339200974, -0.003452445613220334, 0.0005531971110031009, -0.03146250173449516, 0.014082507230341434, -0.021582433953881264, 0.005064000375568867, 0.0011172412196174264, 0.0012117649894207716, -0.03498312830924988, 0.0008088764152489603, -0.025239422917366028, -0.002501008566468954, 0.018408911302685738, 0.0011908458545804024, 0.006477209739387035, -0.019660964608192444, 0.029850948601961136, -0.006275765132158995, 0.01842130720615387, 0.0311649851500988, 0.0029736279975622892, 0.007816039957106113, 0.027371633797883987, 0.014603163115680218, -0.015681665390729904, 0.005993743427097797, -0.014256059192121029, -0.026776598766446114, -0.01948741264641285, -0.011423442512750626, -0.02019401825964451, 0.014689939096570015, 0.009439990855753422, 0.018892377614974976, -0.00999783631414175, 0.0020454346667975187, 0.003923515323549509, 0.010202379897236824, -0.004010291304439306, 0.012136245146393776, 0.00748753035441041, -0.014727129600942135, 0.009340818040072918, 0.025289010256528854, -0.002941087121143937, 0.0058945706114172935, -0.024012163281440735, 0.011336666531860828, -0.05647878721356392, -0.006551588885486126, -0.01977253518998623, 0.02831377275288105, -0.009849077090620995, 0.016177527606487274, 0.011125924997031689, 0.0188427921384573, 0.008906938135623932, -0.01023956947028637, -0.006892494857311249, -0.01983451656997204, -0.016165131703019142, 0.004909043200314045, 0.01411969680339098, -0.0011552056530490518, 0.009303628467023373, -0.04048720747232437, 0.0005485483561642468, -0.0026513170450925827, 0.05206560716032982, -0.020404759794473648, -0.0007964798132888973, -0.007444142363965511, -0.021681606769561768, 0.01594199426472187, -0.04061117395758629, -0.03565254434943199, -0.03771037608385086, 0.009260240010917187, 0.008380083367228508, 0.005064000375568867, -0.0016270502237603068, -0.024582404643297195, -0.030222846195101738, -0.0028806538321077824, 0.014454404823482037, 0.01963617280125618, 0.004149753134697676, -0.0035082302056252956, 0.018458498641848564, 0.024074144661426544, -0.014218869619071484, -0.03163605555891991, 0.002378592500463128, 0.006787124089896679, -0.013970938511192799, -0.02481793984770775, -0.02652866765856743, -0.016747770830988884, -0.021508054807782173, 0.02355348877608776, -0.012470953166484833, -0.020107241347432137, -0.005231353919953108, -0.022388212382793427, -0.021160950884222984, -0.007190012373030186, -0.022574160248041153, -0.004915241152048111, 0.01066725142300129, 0.019041135907173157, -0.016549425199627876, -0.029429465532302856, 0.01202467642724514, 0.010332544334232807, 0.023727040737867355, -0.07988351583480835, 0.0012582521885633469, -0.04289214313030243, 0.01537175104022026, -0.0033160834573209286, -0.005116685759276152, -0.00885735172778368, -0.00010924480011453852, -0.05137139931321144, -0.02517743967473507, -0.019512206315994263, -0.07988351583480835, -0.020144430920481682, 0.003071251092478633, 0.002857410116121173, 0.00927883479744196, 0.02595842443406582, -0.020008068531751633, 0.012322193942964077, 0.00821892824023962, 0.0068305120803415775, 0.014553576707839966, -0.017962634563446045, 0.03932192921638489, 0.012706487439572811, -0.020379966124892235, 0.029404671862721443, -0.024272490292787552, -0.011175510473549366, -0.005064000375568867, -0.03763599693775177, 0.020293191075325012, -0.01592959649860859, 0.038950033485889435, -0.007140426430851221, 0.024718767032027245, -0.02112376131117344, 0.01023956947028637, 0.024136127904057503, -0.017900651320815086, -0.019313860684633255, 0.004995819181203842, -0.0008879045490175486, -0.0368674099445343, 0.012192029505968094, 0.0004362044273875654, 0.01714446023106575, -0.003703476395457983, 0.0280410498380661, 0.0057024238631129265, 0.023528696969151497, 0.044007834047079086, -0.03656988963484764, -0.02034277655184269, 0.010506096296012402, 0.0012807209277525544, -0.029652602970600128, -0.0314377099275589, -0.001221837243065238, -0.006371838506311178, 0.05290857329964638, -0.03555337339639664, -0.013115574605762959, 0.006508200895041227, 0.021297313272953033, 0.029479051008820534, 0.015173405408859253, 0.04579294100403786, 0.0025072069838643074, 0.012297401204705238, -0.013078385032713413, -0.023206384852528572, -0.009477180428802967, -0.01010940596461296, 0.014714732766151428, 0.02154524438083172, -0.018743619322776794, 0.008634213358163834, 0.033743470907211304, -0.0023646464105695486, -0.0035857087932527065, 0.022797297686338425, -0.0040970672853291035, -0.003083647694438696, -0.024433646351099014, -0.03208233043551445, -0.012650703079998493, 0.03550378605723381, 0.003374967025592923, -0.011125924997031689, -0.03431371599435806, -0.015619682148098946, 0.0035640147980302572, 0.06852825731039047, 0.038528550416231155, 0.025710493326187134, -0.0009584100916981697, -0.025437768548727036, 0.015322164632380009, 0.013549454510211945, -0.014318042434751987, -0.008937929756939411, 0.023293161764740944, 0.042371489107608795, 0.005442095920443535, 0.0018703329842537642, 0.021607227623462677, 0.025983218103647232, 0.027619564905762672, 0.010797414928674698, -0.0005636566784232855, -0.02660304680466652, -0.017987428233027458, -0.0829082801938057, 0.02709890902042389, 0.012501943856477737, 0.01592959649860859, 0.01834692806005478, 0.029330292716622353, 0.00535531947389245, -0.026082390919327736, 0.022722918540239334, 0.026850977912545204, 0.020937811583280563, -0.03857813775539398, 0.047702014446258545, 0.020379966124892235, -0.0017804577946662903, -0.005615647882223129, 0.006089816801249981, -0.03180960565805435, -0.030421191826462746, -0.0016255007358267903, 0.007809841074049473, -0.0017432681052014232, 0.01992129348218441, 0.026950150728225708, -0.011125924997031689, 0.02220226265490055, 0.02283448725938797, -0.015632079914212227, -0.02511545829474926, 0.016524631530046463, -0.00242662918753922, 0.012080460786819458, 0.016537029296159744, 0.03235505521297455, 0.010332544334232807, -0.038801275193691254, -0.02355348877608776, 0.033545129001140594, -0.006198286544531584, -0.012991609051823616, -0.017268426716327667, -0.03009887970983982, 0.020243603736162186, 0.0305203627794981, 0.02049153484404087, -0.027718737721443176, -0.024284888058900833, -0.05905727669596672, 0.015024647116661072, -0.021098967641592026, 0.046487148851156235, 0.01678496040403843, 0.006046428810805082, 0.010177587158977985, 0.057520098984241486, -0.01843370497226715, -0.00031436936114914715, 0.03748723864555359, 0.014801508747041225, 0.020727070048451424, 0.002674560761079192, -0.04167728126049042, -0.000533052661921829, -0.011572200804948807, 0.00019175949273630977, -0.011968891136348248, 0.00022972399892751127, 0.011423442512750626, 0.003567114006727934, -0.019747741520404816, 0.006058825179934502, -0.00839867815375328, -0.032479021698236465, 0.004912142176181078, -0.032751746475696564, 0.021582433953881264, 0.02112376131117344, 0.03178481385111809, 0.013239540159702301, 0.025437768548727036, 0.0371401347219944, -0.006068122573196888, 0.0276691522449255, 0.025028681382536888, -0.02595842443406582, -0.027123702690005302, 0.02717328816652298, -0.01928906887769699, 0.006334648933261633, 0.04604087397456169, 0.001935414969921112, -0.012142444029450417, -0.013264333829283714, 0.02789228968322277, 0.013673420064151287, 0.0636192113161087, -0.029503844678401947, -0.006083618383854628, -0.009607343934476376, -0.0340161956846714, 0.006929684430360794, -0.0267518050968647, -0.02028079330921173, -0.0001015937959891744, 0.010877992957830429, 0.04658632352948189, -0.018966756761074066, -0.03409057855606079, 0.011448235251009464, -0.002573838457465172, 0.006096014752984047, 0.045495424419641495, 0.012223021127283573, -0.01786346174776554, -0.003954506944864988, 0.001209440641105175, -0.03493354469537735, -0.011070139706134796, -0.020665088668465614, 0.003694178769364953, -0.0007620018441230059, 0.012198228389024734, -0.010165190324187279, 0.016958512365818024, 0.011851124465465546, -0.003780954983085394, 0.004654913209378719, 0.04576814919710159, 0.006477209739387035, -0.02062789723277092, -0.02923111990094185, -0.00020706151553895324, -0.005311931483447552, -0.007543314713984728, -0.0032850918360054493, -0.017169253900647163, 0.007871824316680431, 0.014280852861702442, -0.006780925672501326, -0.007890419103205204, -0.024136127904057503, 0.0011559805134311318, -0.025710493326187134, 0.017479168251156807, 0.008442066609859467, 0.008937929756939411, -0.00642142491415143, 0.026008011773228645, -0.023590678349137306, 0.031041020527482033, -0.02861129119992256, 0.046834252774715424, 0.03285092115402222, 0.03203274682164192, 0.02910715341567993, 0.023156799376010895, 0.01537175104022026, 0.008479256182909012, -0.0016828348161652684, -0.012619711458683014, 0.034462474286556244, 0.002037686761468649, -0.0029627811163663864, 0.012743677012622356, -0.05727216973900795, -0.005618746858090162, 0.011262286454439163, 0.006532994098961353, -0.0164998397231102, -0.048272255808115005, -0.011082536540925503, -0.014268456026911736, -0.00665076170116663, -0.026553459465503693, -0.0071032363921403885, -0.025512147694826126, -0.0077912462875247, -0.0007476683240383863, -0.02625594288110733, 0.009743706323206425, -0.012334590777754784, -0.04316486790776253, -0.00957015436142683, 0.02490471675992012, -0.0025242522824555635, 0.024309679865837097, 0.018458498641848564, -0.021966727450489998, 0.006043329369276762, -0.05137139931321144, -0.0017665117047727108, 0.016103148460388184, 0.02133450284600258, -0.004103265702724457, -0.004481361247599125, -0.00036957283737137914, 0.04767722263932228, -0.007574306335300207, 0.029974915087223053, -0.017665116116404533, -0.004441072233021259, -0.02809063531458378, -0.01060526818037033, -0.01821056567132473, 0.00485325837507844, -0.007251995615661144, -0.01914030872285366, 0.006663158070296049, 0.01885518804192543, 0.002734994050115347, -0.006632166914641857, 0.031115399673581123, -0.04988381266593933, 0.015780838206410408, 0.01863205060362816, 0.008770575746893883, -0.007623892743140459, 0.006229278165847063, -0.030322019010782242, 0.009117679670453072, -0.013710610568523407, 0.02952863834798336, -0.016239510849118233, -0.004989620763808489, 0.005665233824402094, 0.003489635419100523, 0.022859280928969383, -0.04353676736354828, -0.017466772347688675, 0.0061332047916948795, -0.042495451867580414, -0.007654883898794651, 0.010499897412955761, -0.006539192516356707, 0.03421454131603241, -0.004462766461074352, -0.025710493326187134, 0.00547618605196476, -0.006898693274706602, 0.03220629692077637, -0.012049469165503979, -0.05156974494457245, 0.0030975937843322754, -0.011156915687024593, 0.004661111626774073, 0.05935479328036308, 0.008305704221129417, 0.001386091811582446, -0.004434874281287193, -0.002575388178229332, -0.021594829857349396, -0.003001520410180092, -0.04760284349322319, -0.020107241347432137, 0.01490068156272173, 0.006142502184957266, 0.0037220711819827557, 0.024743560701608658, -0.024855129420757294, -0.017739497125148773, -0.003678683191537857, -0.028834430500864983, -0.009650732390582561, -0.03823103383183479, -0.02268572896718979, -0.024805543944239616, -0.037611205130815506, -0.0013310820795595646, -0.008485454134643078, -0.007878022268414497, 0.02404935285449028, 0.004190041683614254, -0.009625939652323723, 0.012458556331694126, 0.005773704033344984, -0.0006903341854922473, -0.015594889409840107, -0.009948249906301498, 0.02903277426958084, 0.04529707878828049, -0.003010817803442478, -0.02930549904704094, 0.011727157980203629, 0.04120621085166931, 0.024384059011936188, -0.010022629983723164, -0.00602783402428031, -0.017764288932085037, 0.024098938331007957, 0.015880011022090912, 0.008863549679517746, -0.006607373710721731, -0.02481793984770775, 0.017826272174715996, 0.01159699447453022, -0.01451638713479042, 0.011305674910545349, 0.010121801868081093, -0.0120184775441885, 0.022103089839220047, 0.024954302236437798, -0.01656182110309601, 0.0045216502621769905, -0.006712744478136301, 0.01914030872285366, -0.0027613367419689894, -0.008609420619904995, 0.01444200798869133, 0.005352220498025417, 0.031412918120622635, -0.0043388004414737225, 0.03711533918976784, -0.018941964954137802, 0.0028388153295964003, -0.035478994250297546, -0.018532877787947655, -0.0002339853235753253, -4.4525972043629736e-05, 1.982967478397768e-05, 0.02853691205382347, -0.029330292716622353, -0.026652632281184196, 0.017107270658016205, 0.008603221736848354, -0.02781791053712368, -0.0075805047526955605, -0.04519790783524513, -0.013859368860721588, 0.0008561383583582938, 0.027545185759663582, -0.018545273691415787, 0.008975119329988956, 0.031487297266721725, 0.018793204799294472, -0.01167137362062931, 0.0073449695482850075, 0.01672297716140747, -0.03642113134264946, -0.017702307552099228, -0.0025490454863756895, 0.020863432437181473, -0.028908809646964073, -0.01191310677677393, 0.02752039209008217, -0.020330380648374557, 0.05236312747001648, -0.046859048306941986, -0.060644038021564484, 0.00047416891902685165, 0.01736759953200817, -0.005804695654660463, -0.014615559950470924, -0.03381785377860069, 0.006557787302881479, 0.03877647966146469, -0.014429611153900623, -0.005110487341880798, 0.0004947007400915027, 0.02349150739610195, 0.03607402741909027, -0.041231002658605576, -0.0005450618336908519, -0.0072891851887106895, 0.02747080661356449, 0.02945425920188427, 0.004351197276264429, 0.0047633834183216095, 0.008442066609859467, 0.0015557699371129274, 0.008497850969433784, 0.008820162154734135, -0.018470894545316696, 0.010010233148932457, -0.02199152112007141, -0.042792972177267075, -0.0025521444622427225, 0.033966612070798874, 0.020900622010231018, 0.01843370497226715, -0.005045405123382807, -0.027569979429244995, 0.006625968497246504, 0.013599040918052197, 0.016760166734457016, -0.030346810817718506, -0.014677543193101883, -0.02113615721464157, -0.00442867586389184, -0.0019075226737186313, 0.009669327177107334, -0.006526795681566, -0.04187562316656113, 0.019227085635066032, 0.009322223253548145, 0.01291722897440195, -0.02098739892244339, 0.00716521916911006, -0.0232559721916914, 0.02212788350880146, -0.017318012192845345, 0.020441949367523193, -0.039594653993844986, 0.005091892555356026, 0.039941757917404175, -0.005981346592307091, -0.02447083592414856, 0.009086688049137592, 0.014689939096570015, 0.030966639518737793, 0.01813618652522564, -0.050776366144418716, -0.008361488580703735, -0.00200049695558846, -0.005643540062010288, -0.009774697944521904, -0.03550378605723381, 0.0032912902534008026, 0.012247814796864986, -0.02690056338906288, -0.02227664180099964, -0.004121860489249229, -0.014181680046021938, 0.029479051008820534, -0.01821056567132473, -0.02149565890431404, 0.01927667111158371, 0.04715656489133835, -0.0014573720982298255, -0.01600397564470768, -0.0004764932964462787, -0.035751719027757645, -0.018334532156586647, -0.015880011022090912, 0.0535036101937294, -0.03146250173449516, 0.024210507050156593, -0.029404671862721443, 0.0014294799184426665, -0.007109434809535742, 0.008063971064984798, -0.003641493385657668, 0.014169283211231232, 0.05419781804084778, 0.0024219804909080267, 0.02460719831287861, -0.002964330604299903, -0.019239481538534164, 0.0321815051138401, 0.014789111912250519, -0.004772680811583996, 0.015545303001999855, -0.007661082316190004, 0.004403882659971714, 0.013784989714622498, -0.015247785486280918, -0.007859427481889725, 0.013599040918052197, 0.011714762076735497, 0.001169151859357953, 0.018817998468875885, -0.005259246099740267, -0.002090372145175934, -0.025165043771266937, -0.04011531174182892, -0.0449499748647213, -0.02042955346405506, 0.0029023478273302317, 0.05206560716032982, 0.02484273351728916, -0.04978463798761368, -0.020503932610154152, 0.02861129119992256, 0.004723094403743744, 0.010258164256811142, 0.005377013701945543, 0.0018951261881738901, 0.008628015406429768, -0.01827254891395569, -0.004530947655439377, -0.038528550416231155, -0.022078298032283783, 0.03847896307706833, -0.0063470457680523396, -0.044156596064567566, -0.0005512601346708834, 0.01138625293970108, -0.02218986675143242, -0.030148467049002647, -0.006880098022520542, -0.0004416279261931777, -0.027768325060606003, 0.03934672474861145, -0.03180960565805435, -0.01564447581768036, -0.01138625293970108, -0.052611056715250015, -0.0056528374552726746, 4.442912540980615e-05, 0.018904773518443108, 0.015012250281870365, -0.03523106127977371, -0.015074233524501324, -0.004450369626283646, 0.01010320708155632, -0.025884045287966728, -0.03158646821975708, -0.025239422917366028, 0.02517743967473507, 0.028214601799845695, -0.013846972025930882, 0.015173405408859253, -0.009483378380537033, 0.027867496013641357, -0.0023150600027292967, 0.008367687463760376, 0.008076367899775505, -0.03736327216029167, 0.007803643122315407, 0.002445224206894636, -0.04103265702724457, -0.0004420153272803873, 0.02937987819314003, -0.018049411475658417, 0.006285062525421381, 0.0061579979956150055, 0.0016100049251690507, 0.015756044536828995, -0.03885086253285408, 0.014454404823482037, 0.011727157980203629, 0.004909043200314045, -0.01735520176589489, 0.004075373522937298, 0.02910715341567993, 0.001041312119923532, -0.00854123942553997, 0.008125953376293182, -0.03691699728369713, 0.019822120666503906, 0.021805573254823685, 0.05747051537036896, 0.01565687172114849, 0.026231149211525917, -0.00938420556485653, -0.01586761325597763, -0.0004071499570272863, -0.006458614487200975, -0.04242107272148132, -0.003982399124652147, -0.0050361077301204205, 0.0010606817668303847, -0.0022809694055467844, 0.011510218493640423, 0.0025072069838643074, -0.00874578207731247, 0.005872876849025488, -0.01255772914737463, -0.01177674438804388, -0.033321987837553024, 0.003771657356992364, 0.02297084964811802, 0.017627926543354988, -0.03642113134264946, -0.018024617806077003, -0.011082536540925503, 0.00136904651299119, 0.004800572991371155, 0.024743560701608658, 0.030569950118660927, 0.03577651083469391, -0.03433850780129433, -0.01842130720615387, 0.017875859513878822, -0.03671865165233612, 0.013462678529322147, 0.008386282250285149, -0.02134689874947071, 0.025512147694826126, -0.055883754044771194, 0.018260153010487556, 0.0038646317552775145, 0.0023925385903567076, -0.010016431100666523, 0.02106177806854248, -0.006842908449470997, -0.009470982477068901, 0.02895839512348175, 0.005556764081120491, -0.019251879304647446, -0.00547618605196476, -0.016239510849118233, 0.03783434256911278, 0.001283820136450231, -0.02838815376162529, -0.00412495993077755, 0.029404671862721443, 0.003867730963975191, 0.006502002943307161, 0.03961944952607155, 0.03592526912689209, -0.006415226496756077, -0.006334648933261633, -0.033049263060092926, 0.026503873988986015, 0.002324357395991683, 0.03371867910027504, 0.03934672474861145, -0.022958453744649887, -0.006768528837710619, 0.030644329264760017, -0.035107094794511795, 0.013784989714622498, -0.027569979429244995, -0.007406952790915966, -0.009340818040072918, 0.0003608565020840615, 0.0135122649371624, -0.001812998903915286, -0.03302447125315666, 0.03736327216029167, 0.008956524543464184, 0.01031394861638546, -0.027693944051861763, 0.035454198718070984, 0.0750240609049797, 0.009774697944521904, -0.03562775254249573, 0.008045376278460026, -0.01573125086724758, 0.0015673917951062322, -0.02076425962150097, -0.0018579363822937012, -0.011535011231899261, 0.0368674099445343], [0.04522886872291565, 0.019970551133155823, -0.0012074251426383853, 0.021200263872742653, -0.008737116120755672, 0.06438780575990677, -0.05951814353466034, 0.011952817440032959, 0.05209067091345787, -0.013244016095995903, -0.006708088330924511, -0.02062229812145233, 0.051500409841537476, 0.05996083840727806, 0.015703443437814713, 0.014031033031642437, 0.026143712922930717, -0.019847579300403595, -0.01476886123418808, 0.03002960793673992, 0.05459928885102272, 0.01990906521677971, 0.07304499298334122, -0.03332524001598358, -0.018531784415245056, -0.013022667728364468, -0.0008177596027962863, -0.017302071675658226, 0.014830347150564194, 0.015371421352028847, 0.014744266867637634, -0.01792922616004944, 0.01226024515926838, -0.04321213811635971, -0.0036122838500887156, -0.007943950593471527, -0.016060059890151024, 0.013354690745472908, 0.02909502573311329, 0.0427202545106411, -0.017166802659630775, -0.013662119396030903, -0.021655257791280746, 0.02919340319931507, -0.04308916628360748, 0.04328592121601105, 0.037825994193553925, -0.040113259106874466, -0.014608998782932758, 0.0032402954529970884, 0.036424119025468826, 0.012094234116375446, 0.008380498737096786, -0.006548225414007902, -0.027373427525162697, 0.04097405821084976, -0.029660694301128387, 0.022848080843687057, 0.03440738841891289, -0.012124977074563503, -0.031111756339669228, -0.029660694301128387, 0.023635096848011017, -0.02980826050043106, 0.01008980069309473, -0.009093732573091984, 0.011301068589091301, 0.014006438665091991, -0.05204148218035698, 0.0021812047343701124, -0.026438843458890915, 0.006333025638014078, 0.03696519508957863, -0.044245097786188126, -0.015396015718579292, 0.01990906521677971, 0.03863760456442833, 0.02057310938835144, -0.015076289884746075, 0.02651262655854225, -0.06606022268533707, -0.02948853373527527, -0.03829328343272209, 0.001801530597731471, -0.07993139326572418, 0.049336113035678864, 0.024729542434215546, -0.029119620099663734, -0.023893337696790695, -0.02100350894033909, -0.012450851500034332, -0.006071711424738169, -0.009069138206541538, 0.02690613456070423, 0.01973690465092659, 0.01617073453962803, -0.01775706559419632, -0.031849585473537445, -0.0055029685609042645, 0.04370402544736862, -0.008232933469116688, 0.0019613932818174362, -0.033743344247341156, -0.008933870121836662, 0.06296133995056152, -0.034973058849573135, -0.02224552072584629, 0.013502256013453007, -0.05553387105464935, -0.005764282774180174, 0.04904098063707352, -0.05622250959277153, -0.018494894728064537, 0.07270067185163498, 0.0061116768047213554, -0.0011121223215013742, -0.0002930177142843604, -0.003424752503633499, -0.0021181819029152393, -0.00750740198418498, 0.027152078226208687, 0.0018952962709590793, 0.015199260786175728, -0.06689642369747162, 0.052484180778265, 0.0027376501820981503, -0.018654756247997284, 0.0038459296338260174, -0.00999757181853056, -0.02228241227567196, 0.029685288667678833, -0.030447710305452347, 0.07461902499198914, -0.028234226629137993, 0.02048702910542488, 0.027791529893875122, 0.017744768410921097, -0.04306457191705704, -0.001952170510776341, -0.006751128006726503, 0.011122760362923145, 0.006689642556011677, 0.01424008421599865, 0.0410478413105011, -0.02528291381895542, -0.014461432583630085, 0.05902625620365143, 0.012444702908396721, 0.006886396557092667, 0.005481448955833912, -0.00863873865455389, -0.038785170763731, -0.0033417469821870327, 0.03170201927423477, -0.02729964442551136, -0.006597414147108793, -0.015002506785094738, 0.07678332179784775, 0.0008254452841356397, -0.025000078603625298, -0.03455495461821556, -0.056370075792074203, -0.010981343686580658, -0.06468293815851212, -0.02381955459713936, 0.0005921840202063322, -0.0432613268494606, 0.03627655282616615, -0.028504762798547745, -0.005816545803099871, -0.03578466922044754, -0.029685288667678833, -0.015617364086210728, -0.023229291662573814, 0.005598271731287241, -0.019663121551275253, 0.0546976663172245, 0.01903596706688404, 0.02786531299352646, -0.002889827126637101, 0.061977569013834, 0.0046052779071033, -0.0018276619957759976, 0.009179812856018543, -0.031579047441482544, 0.04672912135720253, 0.02461886778473854, -0.019933659583330154, -0.017289774492383003, 0.0003122320049442351, 0.008091515861451626, 0.014584404416382313, -0.01890069991350174, 0.04478617385029793, 0.043679431080818176, 0.0026869243010878563, -0.04124459624290466, -0.009733184240758419, 0.05755060166120529, -0.05612413212656975, 0.00646214559674263, -0.02475413680076599, 0.03942462056875229, 0.00019867561059072614, -0.04744235426187515, 0.009259743615984917, 0.011934371665120125, 0.01042182371020317, 0.028012877330183983, -0.029955824837088585, -0.0021412388887256384, -0.003437049686908722, 0.009235150180757046, 0.03450576588511467, -0.0017215991392731667, 0.0011182709131389856, -0.004789734724909067, -0.023807257413864136, 0.05651764199137688, -0.016760997474193573, -0.06783100962638855, -0.024163873866200447, -0.04040839150547981, 0.0340384766459465, -9.131585102295503e-05, 0.047098033130168915, -0.011448634788393974, -0.045425623655319214, -0.04717181622982025, 0.023758068680763245, -0.04527805745601654, 0.0005349254352040589, -0.002636198652908206, -0.029463939368724823, 0.0039627524092793465, -0.0005560611607506871, 0.010784588754177094, -0.042080800980329514, 0.025307508185505867, -0.009585618041455746, 0.01521155796945095, 0.05819005146622658, -0.02030257321894169, -0.04680290445685387, -0.011233434081077576, -0.04545021802186966, 0.0025777872651815414, -0.00887853279709816, 0.035809263586997986, -0.0368422232568264, -5.168640200281516e-05, 0.019712310284376144, 0.016244517639279366, 0.013280907645821571, -0.02734883315861225, 0.047540731728076935, 0.011460931971669197, -0.0035139068495482206, 0.028504762798547745, -0.01802760176360607, -0.025504261255264282, 0.03792437165975571, 0.033915504813194275, -0.01635519228875637, -0.040949467569589615, -0.04311376065015793, 0.0184211116284132, -0.036153580993413925, -0.008103813044726849, 0.039891913533210754, -0.024409817531704903, 0.022393086925148964, 0.007458213716745377, -0.007070853840559721, -0.04540102928876877, 0.042400527745485306, 0.020769864320755005, -0.029119620099663734, -0.016625728458166122, -0.019503258168697357, -0.002563952933996916, 0.0030604498460888863, 0.018962185829877853, -0.02100350894033909, 0.006148568354547024, 0.03625195845961571, -0.00295592425391078, 0.026266684755682945, 0.004774363245815039, -0.05587818846106529, -0.015137775801122189, 0.012727536261081696, -0.02347523346543312, -0.027545586228370667, 0.03976894170045853, 0.00586880836635828, -0.021126480773091316, -0.029267186298966408, 0.02127404697239399, 0.01336698792874813, -0.01143018901348114, 0.053172819316387177, -0.018310436978936195, -0.03625195845961571, 0.0009530280949547887, -0.009431904181838036, -0.05671439692378044, -0.02892286516726017, -0.022798892110586166, -0.01999514363706112, -0.036817628890275955, 0.008657184429466724, -0.03802274540066719, -0.05034447833895683, -0.022171737626194954, 0.013772793114185333, -0.034751709550619125, -0.004479232244193554, 0.04699965566396713, -0.019417179748415947, 0.03639952465891838, 0.016195328906178474, -0.009149069897830486, -0.04220377281308174, 0.007950099185109138, -0.0129857761785388, 0.011245731264352798, 0.05878031253814697, -0.010427972301840782, 0.0010583223775029182, -0.06551914662122726, -0.008700224570930004, 0.036645468324422836, 0.0012243336532264948, 0.030275551602244377, -0.05484522879123688, 0.001600164920091629, 0.016982346773147583, -0.004420820623636246, -0.012764427810907364, 0.014719672501087189, -0.010102097876369953, 0.002411775989457965, 0.00834975577890873, 0.003372489707544446, -0.02707829512655735, -0.022208629176020622, 0.011682280339300632, -0.008097664453089237, -0.003286409890279174, 0.021655257791280746, -0.012168017216026783, -0.0017800105269998312, -0.023229291662573814, -0.023758068680763245, -0.016367489472031593, 0.005899551324546337, 0.03775221109390259, -0.051057711243629456, 0.023856446146965027, -0.027373427525162697, 0.013809684664011002, -0.04291700944304466, 0.0320955254137516, 0.03394009917974472, 0.0022657474037259817, -0.037432484328746796, 0.06433861702680588, -0.007206122390925884, 0.05784573033452034, 0.019011372700333595, -0.007445916533470154, 0.031898774206638336, 0.009444201365113258, -0.004940374754369259, 0.012346325442194939, 0.004565312061458826, 0.00697862496599555, 0.01558047253638506, -0.052287425845861435, -0.0068679507821798325, -0.007581185083836317, -0.014301570132374763, -0.020597703754901886, 0.005432260222733021, 0.022958753630518913, 4.003774665761739e-05, 0.016650322824716568, -0.042966194450855255, -0.018876105546951294, -0.05833761766552925, -0.01376049593091011, -0.02211025170981884, 0.006050191354006529, -0.036989789456129074, 0.03713735193014145, 0.02311861701309681, 0.00706470524892211, 0.010212772525846958, -0.042843226343393326, -0.0042947749607264996, -0.011085868813097477, -0.01143018901348114, 0.013637525029480457, 0.024827919900417328, -0.01118424627929926, -0.015592769719660282, -0.034309010952711105, -0.030865812674164772, 0.010575537569820881, 0.03204634040594101, -0.011282622814178467, -0.007181528024375439, -0.011725319549441338, -0.006246945355087519, -0.04016244783997536, -0.029390156269073486, 0.024606570601463318, -0.006188534200191498, -0.01864245906472206, -0.01992136240005493, -0.0006874867831356823, -0.043408893048763275, -0.005908774212002754, -0.029267186298966408, 0.004623723682016134, 0.03357118368148804, 0.01770787686109543, -0.0008292881539091468, -0.0156419575214386, -0.026758570224046707, 0.02289726957678795, -0.0160477627068758, 0.01393265649676323, -0.013293204829096794, -0.027373427525162697, 0.011842142790555954, -0.02504926733672619, 0.002119719050824642, -0.054796040058135986, 0.012008153833448887, -0.05617332085967064, 0.08347296714782715, 0.026119118556380272, -0.021729040890932083, -0.06669966876506805, -0.010065206326544285, 0.016601134091615677, 0.020364059135317802, -0.009727035649120808, 0.013354690745472908, 0.03239065781235695, -0.013895764946937561, -0.03433360531926155, -0.007415173575282097, -0.006757276598364115, 0.014645890332758427, -0.06266620755195618, -0.04761451482772827, 0.008030029945075512, 0.045253463089466095, 0.07073312997817993, 0.034530360251665115, 0.03639952465891838, 0.01679788902401924, 0.017265180125832558, 0.005705871619284153, -0.0078025334514677525, -0.03908029943704605, -0.02764396369457245, 0.04729478806257248, 0.024889405816793442, -0.011842142790555954, -0.00868177879601717, 0.046532366424798965, -0.011239582672715187, 0.00839894451200962, 0.0040027182549238205, -0.030300145968794823, -0.026930728927254677, -0.041293784976005554, 0.021089589223265648, -0.06783100962638855, -0.04540102928876877, 0.049434490501880646, 0.05371389538049698, 0.05213985964655876, 0.03780139982700348, -0.08509618788957596, -0.010649320669472218, -0.04702425003051758, -0.009554875083267689, -0.004088798072189093, -0.012229502201080322, 0.013453067280352116, -0.005210911855101585, -0.020806755870580673, -0.05046745017170906, -0.029045837000012398, 0.022220926359295845, -0.005241654813289642, -0.03418603911995888, -0.018089087679982185, 0.004528420511633158, -0.008036178536713123, 0.031357698142528534, -0.035710886120796204, 0.04557318985462189, -0.012616862542927265, -0.0032894841860979795, 0.008872384205460548, -0.029021242633461952, -0.0154943922534585, 0.02185201272368431, -0.012174165807664394, -0.004303997848182917, 0.0304231159389019, -0.004522271919995546, 0.00035450339782983065, 0.010163583792746067, -0.012899696826934814, -0.007027813699096441, 0.013895764946937561, -0.020118115469813347, 0.01982298493385315, 0.03197255730628967, 0.01978609338402748, -0.08755561709403992, -0.020241087302565575, -0.028185037896037102, -0.03925246000289917, 0.016428975388407707, -0.054746855050325394, -0.0401870422065258, -0.009960681200027466, -0.005158648826181889, 0.005678202956914902, 0.042744848877191544, -0.01586330682039261, -0.01197741087526083, -0.00019137418712489307, 0.021384721621870995, 0.016453569754958153, 0.05029528960585594, 0.012911994010210037, 0.012272542342543602, 0.03253822401165962, -0.015174667350947857, -0.0128382109105587, -0.008177596144378185, -0.0040027182549238205, -0.0013680565170943737, -0.007003219332545996, -0.007126190699636936, -0.001061396673321724, 0.0396459698677063, 0.004334740806370974, -0.02233160100877285, -0.024545084685087204, 0.012536930851638317, 0.010237366892397404, -0.0014956393279135227, -0.01134410873055458, -0.0037414038088172674, 0.007698007859289646, 0.046089667826890945, -0.004869666416198015, 0.027570180594921112, -0.03467792645096779, -0.010747697204351425, -0.043630242347717285, 0.011135057546198368, -0.005035677459090948, 0.0008654110133647919, 0.008798601105809212, -0.00162322202231735, 0.017252882942557335, -0.02975907176733017, 0.012377068400382996, 0.00973933283239603, 0.017388151958584785, 0.008036178536713123, -0.015728037804365158, -0.01046486385166645, -0.006609710864722729, 0.012948885560035706, -0.043581053614616394, -0.045425623655319214, -0.0029943527188152075, -0.019048264250159264, -0.0026946100406348705, 0.0139572499319911, 0.01215572003275156, 0.006542076822370291, -0.017068425193428993, 0.03312848508358002, 0.009745481424033642, -0.005878031253814697, -0.025946957990527153, -0.015666551887989044, 0.00714463647454977, -0.03487468138337135, 0.0071630822494626045, -0.0034155298490077257, -0.036030612885951996, -0.013834279030561447, 0.011891331523656845, 0.005232431925833225, 0.023155508562922478, 0.023942524567246437, 0.03170201927423477, 0.03622736409306526, 0.01885151118040085, -0.020659189671278, -0.004912706092000008, 0.01770787686109543, -0.07058556377887726, -0.018568675965070724, 0.002099736128002405, 0.005733540281653404, 0.007765641901642084, 0.024409817531704903, -0.03192336857318878, 0.021372424438595772, -0.05209067091345787, 0.01872853934764862, 0.04013785347342491, -0.04645858332514763, 0.013723604381084442, 0.014080221764743328, 0.014276975765824318, -0.022762000560760498, 0.003252592636272311, 0.0007213039207272232, -0.0017431190935894847, 0.008159150369465351, -0.02246686816215515, -0.00936426967382431, -0.010083652101457119, 0.012377068400382996, 0.006634305231273174, -0.049778811633586884, 0.00755044212564826, -0.02545507252216339, -0.01037263497710228, 0.028996648266911507, 0.009302783757448196, -0.004829700570553541, -0.0032987070735543966, 0.0009023024467751384, 0.025332102552056313, 0.01859327033162117, -0.01457210723310709, 0.02272510901093483, -0.02413927949965, -0.026119118556380272, 0.009179812856018543, 0.009954532608389854, -0.024065496399998665, 0.03539115935564041, -0.027004512026906013, -0.013305502012372017, -0.012911994010210037, -0.036866817623376846, 0.021569177508354187, -0.006794168148189783, 0.003904341021552682, -0.02557804435491562, 0.03814571723341942, 0.0010391080286353827, 0.007575036492198706, -0.017117613926529884, -0.010716955177485943, 0.004405449144542217, -0.0041472092270851135, 0.006997070740908384, 0.017265180125832558, 0.01158390287309885, -0.03152985870838165, -0.0030681355856359005, 0.021064994856715202, -0.015617364086210728, -0.017511123791337013, 0.0023856444749981165, 0.014842644333839417, -0.008817046880722046, 0.01644127257168293, 0.016146140173077583, 0.017609499394893646, 0.029119620099663734, 0.01767098531126976, -0.0025455073919147253, 0.0010521737858653069, 0.003953529521822929, -0.044023748487234116, 0.02250375971198082, 0.044417258352041245, 0.0002899434184655547, -0.007679562084376812, -0.026660192757844925, -0.03671925142407417, 0.006050191354006529, 0.044023748487234116, -0.03334983438253403, -0.02496318705379963, -0.01824895106256008, 0.010157435201108456, -0.0075934818014502525, -0.006351471412926912, -0.01956474408507347, -0.02835719846189022, -0.02528291381895542, -0.023844148963689804, 0.008601847104728222, -0.003403232665732503, -0.016096951439976692, 0.014916427433490753, 0.021642960608005524, 0.011639240197837353, -0.03339902311563492, -0.00401194067671895, -0.002165833255276084, -0.014018735848367214, 0.03999028727412224, -0.0015817192615941167, -0.026881542056798935, -0.058485183864831924, 0.04840153083205223, -0.006486739497631788, -0.013662119396030903, 0.03912948817014694, -0.05691114813089371, -0.019048264250159264, -4.532167440629564e-05, -0.014449135400354862, 0.0200935211032629, -0.017437340691685677, 0.00045998976565897465, -0.005810397211462259, -0.0259715523570776, 0.014326164498925209, -0.030792031437158585, 0.026537220925092697, -0.018617864698171616, -0.006197757087647915, 0.0312839150428772, -0.009419606998562813, 0.04348267614841461, -0.016318300738930702, -0.038219500333070755, -0.01021892111748457, 0.008614144288003445, -0.009204407222568989, -0.02193809300661087, -0.02606992982327938, -0.03344821184873581, 0.037161946296691895, -0.009185961447656155, 0.001370362238958478, -0.03957218676805496, -0.026315873488783836, 0.02193809300661087, -0.02803747169673443, -0.011608497239649296, -0.002620827406644821, -0.016847077757120132, -0.048770446330308914, -0.02286037802696228, -0.03730951249599457, 0.022516056895256042, -0.019306505098938942, -0.042129989713430405, 0.023143211379647255, -0.003008187049999833, 0.004851220641285181, -0.0010368023067712784, 0.024508193135261536, -0.008632590062916279, 0.02333996631205082, -0.03753086179494858, -0.0059364428743720055, 0.008540361188352108, -0.025996146723628044, 0.00714463647454977, -0.02668478712439537, -0.013489958830177784, -0.006117825396358967, 0.018925294280052185, 0.024102387949824333, -0.03667006269097328, -0.028652328997850418, -0.03054608777165413, 0.023684285581111908, -0.012340176850557327, -0.02436062879860401, 0.010907560586929321, 0.0471964105963707, -0.027225861325860023, 0.026438843458890915, -0.006689642556011677, -0.02685694769024849, -0.014781158417463303, 0.00020290275278966874, 0.0006655825418420136, 0.06192838028073311, -0.008478876203298569, -0.06571590155363083, -0.010846074670553207, 0.0057981000281870365, -0.028455574065446854, 0.018580973148345947, -4.063819505972788e-05, 0.018519487231969833, -0.014301570132374763, -0.03974434733390808, 0.021212561056017876, -0.03310389071702957, -0.010274257510900497, 0.019613932818174362, -0.005109460558742285, 0.018482597544789314, -0.041121624410152435, 0.003274112707003951, -0.012303285300731659, 0.008823195472359657, -0.0010137452045455575, -0.006960179656744003, 0.0432613268494606, 0.009087583981454372, -0.014449135400354862, 0.018125979229807854, 0.0010391080286353827, 0.017117613926529884, 0.011116611771285534, -0.02919340319931507, 0.00782712735235691, -0.0019029818940907717, 0.03300551697611809, 0.023905634880065918, 0.0035169811453670263, 0.0256764218211174, -0.0530252531170845, -0.03519440442323685, 0.0061516426503658295, -0.023413749411702156, 0.010938303545117378, -0.038834359496831894, -0.004531494807451963, -0.015764929354190826, 0.009474944323301315, 0.01775706559419632, 0.0247049480676651, 0.0016370563535019755, -0.014916427433490753, -0.00085311388829723, -0.011128908954560757, 0.03037392720580101, 0.03812112286686897, 0.0003881283919326961, -0.004620649386197329, -0.02241768129169941, 0.005361551884561777, 0.008288269862532616, -0.012998073361814022, -0.02188890427350998, 0.0004396226431708783, 0.05130365490913391, -0.008872384205460548, 0.027373427525162697, -0.03625195845961571, 0.025701016187667847, -0.043359704315662384, -0.008706373162567616, -0.010790737345814705, -0.05509117245674133, -0.024889405816793442, 0.014522918500006199, -0.027496397495269775, 0.00148872216232121, -0.027324238792061806, -0.005967185832560062, 0.015543580986559391, 0.05843599513173103, -0.003092729952186346, 0.0029313298873603344, -0.015629660338163376, -0.05828842893242836, 0.03940002620220184, 0.035366564989089966, 0.0262420903891325, -0.00629613408818841, -0.00411954103037715, 0.013342393562197685, -0.022848080843687057, 0.02031487040221691, 0.03411225602030754, 0.005250877235084772, 0.02774234116077423, 0.0013165621785447001, 0.013219421729445457, -0.03898192569613457, 0.00903224665671587, -0.015887901186943054, -0.0019875247962772846, -0.03607979789376259, 0.004008866846561432, -0.023967118933796883, 0.005167871713638306, -0.014264678582549095, 0.010034463368356228, 0.027594774961471558, 0.008362052962183952, 0.05287768691778183, -0.01586330682039261, 0.029955824837088585, 0.025823988020420074, -0.0054753003641963005, -0.004746695049107075, -0.04695046693086624, 0.0200935211032629, 0.0017569534247741103, -0.014387650415301323, 0.0031419184524565935, 0.00046882833703421056, -0.0011236509308218956, 0.007679562084376812, -0.020548515021800995, 0.034923870116472244, 0.0191220473498106, 0.0037629238795489073, -0.005761208478361368, 0.017031533643603325, 0.003178809769451618, 0.017375854775309563, -0.03863760456442833, -0.017609499394893646, 0.015322232618927956, -0.020560812205076218, 0.01867935061454773, 0.01158390287309885, -0.0010160509264096618, 0.025922363623976707, -0.005539860110729933, -0.011565457098186016, 0.0032618155237287283, 0.01129491999745369, 0.03354658931493759, -0.04333510994911194, -0.021876607090234756, -0.0020736046135425568, 0.019835282117128372, -0.021151075139641762, 0.02993123047053814, 0.024680353701114655, 0.010538646019995213, 0.04070352390408516, 0.052484180778265, -0.02764396369457245, 0.052238237112760544, -0.00755044212564826, 0.024102387949824333, -0.01697004958987236, 0.026045335456728935, -0.024385223165154457, -0.022184034809470177, -0.005991779733449221, 0.033866316080093384, 0.011596200056374073, -1.5179278307186905e-05, -0.008073070086538792, -0.004669837653636932, 0.009536429308354855, 0.005921071395277977, 0.04741775989532471, -0.03239065781235695, 0.023057131096720695, 0.02021649293601513, 0.005536785814911127, -0.0032802612986415625, -0.04589291661977768, 0.005124831572175026, 0.030177174136042595, 0.050270695239305496, -0.03507143259048462, -0.005109460558742285, -0.0005379997310228646, 0.020634595304727554, -0.029685288667678833, 0.05459928885102272, 0.007243013475090265, -0.0033448212780058384, 0.04417131468653679, -0.016158437356352806, 0.024864811450242996, -0.016773294657468796, 0.038440849632024765, 0.016711808741092682, 0.026438843458890915, 0.01239551417529583, 0.016539648175239563, -0.01794152334332466, -0.025651827454566956, 0.010311149060726166, 0.013416176661849022, -0.02461886778473854, -0.009776223450899124, 0.0035507981665432453, 0.03792437165975571, -0.04517967998981476, -0.004368558060377836, 0.02528291381895542, 0.0025132272858172655, -0.02175363525748253, 0.03984272480010986, -0.02250375971198082, -0.010237366892397404, 0.02061000093817711, -0.008454281836748123, -0.04166270047426224, -0.005198614671826363, -0.03428441658616066, 0.013342393562197685, 0.01393265649676323, -0.02241768129169941, -0.005948740057647228, 0.012254096567630768, 0.0117191718891263, 0.026881542056798935, -0.027447208762168884, 0.005705871619284153, 0.027963688597083092, -0.028996648266911507, -0.014621295966207981, -0.004181026481091976, 0.018162870779633522, -0.0014426078414544463, -0.0005084097501821816, -0.021151075139641762, 0.013194828294217587, 0.03984272480010986, -0.014264678582549095, 0.027201266959309578, 0.020659189671278, 0.06414186954498291, -0.012401662766933441, -0.02267592027783394, -0.00697862496599555, -0.01797841489315033, -0.019663121551275253, 0.016650322824716568, -0.003065061289817095, 0.07299580425024033, -0.0675850659608841, 0.06940504163503647, 0.03371874988079071, 0.012469296343624592, 0.008368201553821564, 0.0036122838500887156, -0.008509619161486626, -0.006646602414548397, -0.02870151773095131, -0.01371130719780922, -0.013354690745472908, 0.01264145690947771, -0.00661585945636034, -0.01173761673271656, -0.026365062221884727, 0.00949953868985176, 0.022220926359295845, 0.011854439973831177, 0.029021242633461952, -0.02813584916293621, 0.014461432583630085, 0.022405384108424187, -0.001675484934821725, -0.006775722373276949, -0.021114183589816093, -0.017904631793498993, 0.001382659305818379, 0.013883467763662338, -0.004663689061999321, 0.0027161301113665104, -0.047885049134492874, -0.012629159726202488, -0.006216202862560749, -0.001590942032635212, -0.012653754092752934, 0.009425755590200424, -0.010649320669472218, 0.029070431366562843, -0.0038121123798191547, -0.008884681388735771, 0.010360337793827057, 0.006634305231273174, -0.025823988020420074, 0.03212011978030205, 0.009093732573091984, -0.008884681388735771, 0.047712892293930054, -0.005662831477820873, 0.01890069991350174, 0.017203694209456444, 0.010667766444385052, -0.04060514643788338, 0.0034339753910899162, 0.02504926733672619, 0.0021689075510948896, -0.013280907645821571, 0.02079445868730545, 0.013489958830177784, -0.017646390944719315, 0.03777680546045303, -0.013772793114185333, -0.03612898662686348, 0.00685565359890461, 0.010514051653444767, 0.015309935435652733, 0.006203905679285526, -0.015752632170915604, 0.019527852535247803, -0.026340467855334282, -0.00595488864928484, -0.010606280528008938, -0.0029820557683706284, 0.005340031813830137, -0.019638527184724808, 0.0006578968022949994, 0.017486529424786568, 0.015334529802203178, -0.010059057734906673, 0.003138844156637788, 0.007169230841100216, -0.046753715723752975, -0.026611004024744034, 0.01960163563489914, -0.006880247965455055, 0.006068637128919363, -0.01412941049784422, -0.010913709178566933, 0.010630874894559383, 0.02241768129169941, -0.0012220279313623905, 0.01965082436800003, -0.010520200245082378, -0.02734883315861225, 0.0077717904932796955, 0.018962185829877853, 0.07388120144605637, 0.01732666604220867, 0.0049034832045435905, 0.036596279591321945, 0.03802274540066719, 0.002145850332453847, 0.016896266490221024, -0.0209297277033329, -0.020769864320755005, 0.036424119025468826, 0.02342604659497738, 0.006677345372736454, 0.012241799384355545, -0.02953772246837616, -0.029414750635623932, -0.007759493310004473, -0.013170233927667141, -0.018298139795660973, -0.04040839150547981, 0.020855944603681564, 0.011208840645849705, -0.0234383437782526, -0.029611505568027496, -0.016318300738930702, 0.001801530597731471, 0.004128763917833567, 0.024114685133099556, 0.014387650415301323, 0.019085155799984932, 0.0334974005818367, -0.014363056048750877, -0.010870669037103653, 0.01652735285460949, -0.003181884065270424, 0.010686212219297886, 0.027816124260425568, 0.002422536024823785, -0.03037392720580101, -0.0067695737816393375, 0.016010873019695282, -0.00045998976565897465, 0.027102889493107796, 0.003532352624461055, -0.000259969150647521, -0.023684285581111908, 0.0020951246842741966, -0.013477661646902561, -0.05381226912140846, 0.02215944044291973, 0.006972476374357939, -0.00010001030750572681, 0.042744848877191544, -0.006732682231813669, -0.003532352624461055, -0.013342393562197685, 0.020769864320755005, -0.008288269862532616, -0.011547011323273182, -0.013047262094914913, 0.013600633479654789, 0.0045038266107439995, -0.00815300177782774, 0.011042828671634197, -0.010630874894559383, 0.014670484699308872, -0.00868177879601717, -0.03534197062253952, 0.009622509591281414, -0.037825994193553925, -0.018912997096776962, -0.01428927294909954, -0.0185563787817955, -0.022934161126613617, 0.007488956209272146, 0.014018735848367214, 0.0014556735986843705, 0.003063524141907692, -0.0017984563019126654, 0.005801174324005842, 0.0664537250995636, 0.009837709367275238, -0.031849585473537445, -0.018175167962908745, 0.048770446330308914, -0.02813584916293621, -0.0052201347425580025, -0.003455495461821556, 0.02914421446621418, 0.029562316834926605, -0.03339902311563492, 0.03607979789376259, 0.013391582295298576, -0.04483536258339882, -0.031849585473537445, -0.005712020210921764, 0.0025009301025420427, 0.0001076960179489106, 0.0071630822494626045, 0.015900198370218277, 0.006788019556552172, 0.03728491812944412, -0.017818551510572433, -0.06655210256576538, 0.003701438196003437, 0.03303011134266853, 0.0312839150428772, 0.0029820557683706284, -0.04254809394478798, -0.0025439702440053225, 0.019835282117128372, -0.024065496399998665, -0.01586330682039261, 0.008810898289084435, -0.009081435389816761, -6.936353747732937e-05, -0.05218904837965965, 0.003975049592554569, 0.01762179657816887, 0.02484021708369255, 0.025873176753520966, -0.001428005052730441, -0.03226768597960472, 0.03125932067632675, 0.04060514643788338, -0.00718767661601305, 0.026340467855334282, 0.016650322824716568, 0.026709381490945816, -0.0031157871708273888, 0.0028944385703653097, -0.02545507252216339, 0.018212059512734413, -0.000587188289500773, 0.020646892488002777, 0.010169732384383678, -0.00912447553128004, 0.005266248714178801, 0.024717245250940323, 0.007347539067268372, -0.03932624310255051, 0.0017738620517775416, 0.00940730981528759, 0.008651035837829113, 0.04695046693086624, 0.0023087875451892614, 0.006886396557092667, -0.02113877795636654, 0.010495605878531933, -0.009487241506576538, 0.00980081781744957, -0.003895118134096265, 0.04517967998981476, 0.010114395059645176, 0.023278480395674706, -0.02562723308801651, 0.03812112286686897, -0.01784314587712288, -0.017634093761444092, 0.0051647974178195, -0.02062229812145233, -0.04065433517098427, 0.013133342377841473, 0.002528598764911294, 0.03125932067632675, 0.013674416579306126, -0.02364739403128624, 0.00949339009821415, 0.03266119584441185, -0.0315544530749321, -0.000509178324136883, -0.021126480773091316, -0.01586330682039261, -0.011208840645849705, -0.03625195845961571, 0.02321699447929859, -0.01042182371020317, 0.0174496378749609, 0.003904341021552682, -0.007156933657824993, -0.01863016188144684, -0.015543580986559391, 0.027619369328022003, -0.003895118134096265, -0.022257817909121513, -0.006277688313275576, -0.01424008421599865, 0.04766370356082916, -0.012936588376760483, -0.0015847935574129224, 0.016859374940395355, -0.04643398895859718, -0.023130914196372032, -0.009481092914938927, -0.03339902311563492, 0.017523419111967087, 0.009616360999643803, -0.04043298587203026, 0.06458456069231033, 0.012407811358571053, -0.014055627398192883, -0.010114395059645176, -0.018384220078587532, 0.023585908114910126, 0.00019271919154562056, 0.0075934818014502525, 0.01917123608291149, -0.00424251239746809, 0.019896768033504486, -0.007864018902182579, -0.0003596912429202348, -0.009524132125079632, -0.01090141199529171, -0.0011374851455911994, -0.007101596333086491, 0.03708816319704056, 0.0064928880892694, -0.020253384485840797, -0.005761208478361368, -0.016232220456004143, -0.058829501271247864, -0.02980826050043106, 9.491852688370273e-05, 0.0023395302705466747, -0.0020613076630979776, -0.021064994856715202, -0.029414750635623932, -0.0034063069615513086, 0.020056629553437233, 0.01640438102185726, -0.001995210535824299, 0.0033048554323613644, 0.03563710302114487, -0.02369658276438713, -0.0008861624519340694, -0.007439767941832542, -0.03406306728720665, 0.026143712922930717, 0.019355693832039833, -0.0074090249836444855, -0.006326877046376467, -0.008042327128350735, 0.01978609338402748, -0.033915504813194275, -0.004712877795100212, -0.04488455131649971, 0.010120543651282787, 0.006333025638014078, -0.014928724616765976, -0.031898774206638336, -0.02909502573311329, -0.0032987070735543966, 0.0018584048375487328, 0.006016374099999666, -0.015764929354190826, 0.04422050341963768, 0.01824895106256008, 0.02404090203344822, 0.0025516559835523367, -0.011301068589091301, 0.012124977074563503, -0.0399165078997612, -0.037604644894599915, 0.036374930292367935, -0.008737116120755672, 0.03566169738769531, 0.0007962395902723074, -0.047983426600694656, 0.01066161785274744, 0.021163372322916985, -0.006425254046916962, 0.005662831477820873, 0.009241298772394657, 0.03093959577381611, -0.02540588565170765, -0.02193809300661087, 0.017880037426948547, -0.022516056895256042, -0.002465575933456421, -0.008337458595633507, 0.012407811358571053, 0.002711518667638302, 0.00405498081818223, -0.024237656965851784, -0.004254809580743313, 0.027102889493107796, -0.022270115092396736, -0.042572688311338425, -0.00229187891818583, 0.015223855152726173, 0.011676131747663021, -0.035046838223934174, -0.001481804996728897, -0.015039398334920406, -0.00872481893748045, -0.0024163874331861734, 0.04394996538758278, -0.014473729766905308, -0.01630600355565548, 0.004122615326195955, -0.027275050058960915, 0.025873176753520966, -0.02589777112007141, -0.005967185832560062, 0.0035046839620918036, -0.0004991869209334254, -0.002720741555094719, -0.014252381399273872, 0.007458213716745377, 0.024422114714980125, -0.021028103306889534, -0.03081662580370903, -0.009972978383302689, -0.006566671188920736, -0.01960163563489914, -0.01582641527056694, 0.00514327734708786, 0.025528855621814728, -0.03143148124217987, 0.02641424909234047, 0.04567156732082367, 0.011165800504386425, -0.022958753630518913, -0.006566671188920736, 0.018839213997125626, 0.03969515860080719, -0.0037782953586429358, -0.013047262094914913, 0.014154004864394665, -0.008374350145459175, -0.004808180499821901, 0.009708589874207973, -0.007206122390925884, -0.0012904307805001736, -0.015838712453842163, 0.017461935058236122, -0.023143211379647255, -0.00830671563744545, -0.007390579208731651, -0.004448489286005497, -0.008730967529118061, -0.002637735800817609, 0.033202268183231354, -0.032021746039390564, -0.03204634040594101, 0.03418603911995888, 0.015752632170915604, 0.026340467855334282, 0.006206979975104332, -0.01336698792874813, -0.004700580611824989, 0.03758005052804947, 0.027176672592759132, 0.026119118556380272, 0.01004676055163145, -0.0010913709411397576, 0.03194796293973923, 0.02417617104947567, -0.022712811827659607, 0.01947866566479206, 0.0033263755030930042, -0.003572318237274885, -0.010077503509819508, -0.02589777112007141, 0.0023841073270887136, 0.01114735472947359, -0.03748167306184769, -0.007421322166919708, -0.018003009259700775, -0.02417617104947567, 0.013244016095995903, -0.006234648171812296, -0.006929436698555946, 0.0009776223450899124, -0.041957829147577286, 0.005318511743098497, 0.011848291382193565, 0.012014302425086498, -0.026389656588435173, 0.012420108541846275, 0.05878031253814697, 0.010932154953479767, -0.05912463366985321, 0.015260746702551842, -0.016724105924367905, -0.023376857861876488, 0.007206122390925884, 0.007335242349654436, -0.03423522785305977, 0.012487742118537426], [0.06508327275514603, -0.012501351535320282, -0.014106296002864838, 0.01650448888540268, -0.03165614977478981, 0.017783526331186295, -0.03286139667034149, 0.009488236159086227, 0.041790056973695755, 0.013638955540955067, -0.021153295412659645, 0.007280668709427118, 0.0021476128604263067, -0.0009085463243536651, -0.02986058034002781, 0.010053964331746101, 0.00847361609339714, 0.03876464068889618, 0.003252933965995908, 0.01780812256038189, 0.019837362691760063, 0.013073228299617767, 0.03699366748332977, -0.015422227792441845, -0.023526890203356743, -0.044766273349523544, 0.032713815569877625, -0.007957082241773605, 0.028630739077925682, -0.039551742374897, 0.048800159245729446, -0.017574451863765717, -0.024781331419944763, -0.06080342456698418, 0.0053651886992156506, 0.028384769335389137, 0.011886429972946644, -0.02400652877986431, 0.0129256471991539, 0.004467403516173363, -0.05534292012453079, 0.008055469952523708, 0.006044676993042231, -0.04503684118390083, -0.04324126988649368, 0.05854051187634468, 0.01834925264120102, -0.01650448888540268, -0.020292405039072037, 0.04169166833162308, 0.04370861127972603, -0.006235302425920963, 0.0032498594373464584, 0.0035788423847407103, -0.011031689122319221, -0.01585267297923565, 0.015237751416862011, 0.04122432693839073, 0.03856786713004112, -0.0071515352465212345, -0.005540441256016493, -0.03714124858379364, 0.0027056538965553045, 0.010638139210641384, -0.050423551350831985, 0.021263981238007545, -0.016934935003519058, 0.05273565649986267, -0.043634820729494095, 0.03664931282401085, -0.005967811681330204, 0.006309092976152897, 0.0015250049764290452, -0.045971520245075226, -0.008639644831418991, 0.017180902883410454, 0.03886302933096886, -0.004943967796862125, 0.035714633762836456, 0.014376861043274403, -0.05642518401145935, 0.0044182101264595985, -0.04063400253653526, 0.03359930217266083, -0.03382067382335663, 0.01544682402163744, -0.02280128374695778, -0.013159316964447498, -0.02411721646785736, -0.02715492621064186, -0.028360173106193542, -0.016332311555743217, 0.020169420167803764, 0.03382067382335663, 0.005051578860729933, 0.019099457189440727, 0.018373850733041763, -0.020120225846767426, -0.01830006018280983, 0.07993977516889572, -0.01704562082886696, -0.0009946352802217007, -0.022985760122537613, -0.000793248531408608, 0.03753479942679405, 0.013663552701473236, -0.059868741780519485, 0.0272041205316782, -0.014303070493042469, 0.009851040318608284, 0.021030310541391373, -0.021682126447558403, 0.03261542692780495, 0.10527453571557999, 0.0022060303017497063, -0.03583761677145958, 0.01769743673503399, -0.002495043445378542, -0.02047688141465187, -0.036846086382865906, -0.004479702096432447, -0.032664623111486435, 0.058294545859098434, -0.0890406146645546, 0.01814018003642559, -0.01501637976616621, 0.010090859606862068, -0.001107627060264349, -0.04208521917462349, -0.022075677290558815, 0.05376872420310974, -0.02981138788163662, 0.0607050359249115, -0.03807593137025833, -0.011333000846207142, 0.013147018849849701, -0.0034589325077831745, -0.029516225680708885, -0.007016252726316452, -0.029958968982100487, 0.04333965852856636, -0.0018632117426022887, 0.07152765244245529, 0.013749641366302967, -0.023489994928240776, -3.6781184462597594e-06, 0.00582330534234643, 0.02117789164185524, 0.001654138439334929, 0.02590048685669899, -0.0030346368439495564, 0.0013482150388881564, -0.010718079283833504, 0.03394366055727005, 0.006241451948881149, -0.0065181665122509, -0.03746100887656212, 0.07934945076704025, 0.014438353478908539, 0.00917462632060051, 0.0039231982082128525, 0.002754847751930356, -0.04164247587323189, -0.03475535660982132, 0.030475502833724022, -0.008959404192864895, 0.016811950132250786, 0.0020661356393247843, -0.06345988065004349, -0.006561210844665766, -0.065181665122509, -0.04144569858908653, -0.021706724539399147, -0.030647680163383484, -0.013319196179509163, -0.008694987744092941, 0.03318115696310997, 0.0019354649120941758, -0.036624714732170105, 0.010238440707325935, 0.029737597331404686, 0.020489180460572243, -0.027671460062265396, -0.0027302508242428303, -0.03942875564098358, 0.05549050122499466, -0.009783398360013962, 0.020710552111268044, -0.038149721920490265, -0.03229567036032677, 0.02895049750804901, -0.00022252467169892043, -0.0204645823687315, 0.06055745482444763, -0.01569279283285141, -0.0057126195169985294, -0.032664623111486435, 0.00833833310753107, 0.02986058034002781, -0.009402147494256496, 0.016221625730395317, -0.03701826557517052, 0.0057372162118554115, 0.0422573946416378, -0.035813018679618835, -0.013319196179509163, 0.025703713297843933, 0.008319885469973087, 0.06311552971601486, -0.03849407657980919, 0.009482087567448616, -0.03886302933096886, -0.02014482393860817, 0.03849407657980919, -0.018644414842128754, -0.012206189334392548, 0.050202179700136185, -0.022444630041718483, 0.03153316676616669, 0.018066389486193657, -0.03650173172354698, -0.004304449539631605, -0.0039262729696929455, -0.012999437749385834, -0.010017069056630135, 0.0010638139210641384, -0.05740905925631523, -0.05534292012453079, 0.0346323698759079, -0.03057388961315155, -0.027892833575606346, 0.008590451441705227, -0.015102468430995941, -0.045799341052770615, 0.04882475733757019, 0.009408297017216682, 0.0022398510482162237, -0.05647437646985054, -0.007465145085006952, -0.016959531232714653, 0.017094813287258148, 0.054113078862428665, -0.017685137689113617, -0.012851856648921967, 0.039231982082128525, -0.016750458627939224, 0.0051991599611938, 0.02688436210155487, 0.03810052573680878, -0.033107366412878036, -0.020021839067339897, -0.04717676714062691, 0.010988644324243069, -0.0352964848279953, -0.02752387896180153, 0.011640461161732674, 0.01569279283285141, -0.024670645594596863, 0.03913359344005585, -0.05027597025036812, -0.009328356944024563, 0.02084583416581154, 0.0054574268870055676, -0.0451844222843647, -0.06867441534996033, -0.07344620674848557, 0.022174064069986343, -0.017476065084338188, -0.0451844222843647, 0.027499282732605934, -0.03443559631705284, 0.03200050815939903, -0.005420531611889601, -0.019124053418636322, -0.033107366412878036, 0.03960093483328819, 0.03323034942150116, -0.008953254669904709, -0.015864970162510872, 0.04897233843803406, -0.04186384752392769, 0.00855355616658926, 0.004350568633526564, -0.07305265963077545, -0.015496018342673779, 0.0025457744486629963, 0.0039201234467327595, 0.020132524892687798, 0.011099330149590969, -0.00582330534234643, 0.034017451107501984, -0.01579117961227894, 0.009998621419072151, 0.010964048095047474, 0.02138696424663067, -0.010687333531677723, -0.032885994762182236, 0.022506121546030045, -0.026244843378663063, -0.0011137763503938913, -0.013208510354161263, 0.0674445778131485, 0.014315369538962841, -0.0476687029004097, -0.014831903390586376, 0.024744436144828796, -0.008276841603219509, -0.027376297861337662, -0.045799341052770615, 0.021682126447558403, -0.01634460873901844, 0.025826696306467056, -0.025064194574952126, -0.027622267603874207, 0.016799651086330414, 0.04230659082531929, -0.03436180576682091, -0.002387432148680091, 0.04528280720114708, -0.004833281971514225, 0.06690344214439392, 0.004024660214781761, 0.017476065084338188, -0.039010610431432724, -0.0016418399754911661, 0.010158500634133816, 0.03246784582734108, 0.07049458473920822, -0.01580347865819931, -0.022715194150805473, -0.0424787662923336, 0.003188367234542966, 0.014401458203792572, -0.017340783029794693, -0.0007233012584038079, -0.021817410364747047, 0.008055469952523708, 0.014462950639426708, -0.02959001623094082, 0.009580474346876144, 0.05499856546521187, 0.012587440200150013, 0.019074860960245132, -0.024953508749604225, -0.03350091725587845, 0.006764134857803583, 0.029663806781172752, 0.005288323853164911, -0.011997115798294544, 0.0020246284548193216, 0.030819857493042946, 0.006044676993042231, -0.026097262278199196, -0.01384802907705307, -0.03854326903820038, -0.018865786492824554, 0.004987012129276991, -0.02671218290925026, -0.005761812906712294, -0.0021476128604263067, 0.007631173823028803, 0.0022967313416302204, 0.03854326903820038, 0.04415135458111763, -0.0076127261854708195, -0.01993574947118759, -0.011148524470627308, 0.019861958920955658, -0.0017663616454228759, 0.004458179697394371, 0.07561072707176208, -0.015299242921173573, 0.02329322136938572, -0.007686516735702753, 0.025605324655771255, 0.01823856681585312, -0.014733515679836273, -0.017476065084338188, 0.031041229143738747, -0.026023471727967262, 0.010263037867844105, -0.01335609145462513, 0.020403090864419937, 0.08505592495203018, 0.01058894582092762, 0.025629922747612, -0.04272473603487015, -0.0016572130843997002, 0.003892452223226428, -0.0006533539271913469, -0.03436180576682091, -0.01884119026362896, 0.02020631544291973, 0.009543579071760178, -0.025383953005075455, 0.06464052945375443, 0.06513246893882751, 0.04936588555574417, 0.026244843378663063, -0.040855374187231064, -0.006438226439058781, -0.0460699088871479, -0.019234739243984222, 0.0032621577847748995, 0.05263726785778999, 0.008596600964665413, 0.03035251796245575, -0.020120225846767426, 0.015569808892905712, -0.0022337017580866814, -0.005232980940490961, -0.015065573155879974, 0.02545774355530739, -0.011505178175866604, 0.03790375217795372, -0.018164776265621185, 0.008166155777871609, 0.015163960866630077, -0.019898854196071625, -0.040929164737463, 0.030869051814079285, -0.03106582723557949, -0.04083077982068062, -0.04051101952791214, 0.006081572268158197, 0.0004823289345949888, 0.008811823092401028, -0.05603163316845894, 0.04272473603487015, -0.0584421269595623, -0.027081135660409927, 0.00616151187568903, 0.023969633504748344, 0.001778659992851317, -0.021522248163819313, -0.0478900745511055, -0.0196651853621006, -0.006862522102892399, 0.005193010903894901, -0.03546866402029991, 0.006395182106643915, -0.012507500126957893, 0.03460777550935745, 0.0422573946416378, -0.012538246810436249, -0.042109813541173935, -0.030918246135115623, 0.01398331206291914, 0.030180340632796288, 0.022198660299181938, -0.0047871628776192665, 0.014253877103328705, -0.018066389486193657, 0.003849407657980919, -0.013589762151241302, -0.002198343863710761, 0.015151661820709705, -0.09976483881473541, 0.044126756489276886, 0.02230934612452984, 0.028483157977461815, 0.042011428624391556, 0.04311828687787056, -0.006770283915102482, 0.007772605866193771, 0.03406664356589317, 0.027400895953178406, -0.020280105993151665, -0.018779698759317398, -0.04638966545462608, 0.019738975912332535, 0.00833833310753107, -0.02492891252040863, 0.01857062429189682, 0.025334760546684265, 0.029344046488404274, 0.024191007018089294, 0.005331368185579777, -0.009863338433206081, -0.046242084354162216, -0.028360173106193542, 0.03913359344005585, -0.06464052945375443, -0.03957633674144745, 0.06916635483503342, 0.05371952801942825, 0.04611910134553909, 0.020218614488840103, -0.040092870593070984, -0.04215900972485542, -0.04513522610068321, -0.013159316964447498, -0.02361297979950905, -0.012163144536316395, 0.006899417378008366, -0.015323840081691742, -0.02243233099579811, 0.004156868439167738, 0.026417020708322525, -0.011954071000218391, 0.044397320598363876, 0.01901336759328842, 0.030967438593506813, 0.0008893299964256585, 0.011412939988076687, -0.02612185850739479, -0.00035396410385146737, 0.023760560899972916, -0.011007091961801052, -0.027056539431214333, 0.0009761876426637173, -0.027351701632142067, 0.0025488489773124456, -0.03246784582734108, -0.02850775420665741, -0.04016666114330292, 0.005774111486971378, 0.018017195165157318, -0.0034035895951092243, -0.019480708986520767, 0.011074733920395374, 0.02297346107661724, -0.012778066098690033, -0.032664623111486435, 0.0025934309232980013, 0.016934935003519058, 0.049882419407367706, -0.06449294835329056, -0.024990404024720192, -0.004436657764017582, -0.02291196957230568, -0.017402274534106255, -0.11098100244998932, -0.04513522610068321, 0.03229567036032677, 0.0031222631223499775, -0.005211458541452885, 0.021054906770586967, -0.011074733920395374, 4.208368045510724e-05, 0.008805673569440842, -0.0032775308936834335, 0.011043987236917019, 0.02486741915345192, -0.013159316964447498, -0.020329300314188004, 0.0411505363881588, -0.05426065996289253, 0.007114639971405268, -0.015668196603655815, 0.019788168370723724, -0.009223820641636848, 0.020895028486847878, -0.036403343081474304, 0.002078434219583869, 0.030967438593506813, 0.03650173172354698, -0.01720549911260605, 0.0010822615586221218, -0.011615864001214504, 0.01159126777201891, 0.01574198715388775, 0.003492753254249692, -0.012286128476262093, -0.013282300904393196, 0.028433963656425476, 0.009801845997571945, -0.010545901022851467, -0.011130076833069324, -0.015434525907039642, -0.03362390026450157, 0.0127042755484581, 0.017955703660845757, -0.005915543530136347, 0.02580210007727146, 0.010933301411569118, -0.010884108021855354, -0.012353770434856415, -0.0051591903902590275, 0.012255382724106312, 0.020538372918963432, 0.014807306230068207, -0.00917462632060051, -0.034460194408893585, -0.016418399289250374, 0.008787225931882858, -0.025334760546684265, -0.05490017682313919, -0.016160132363438606, -0.010158500634133816, -0.011136225424706936, -0.0007202266133390367, -0.0019600617233663797, 0.00944519229233265, -0.03861705958843231, 0.03699366748332977, 0.01126535888761282, 0.024203304201364517, -0.06778892874717712, 0.03546866402029991, -0.021374667063355446, -0.03694447502493858, 0.0037387218326330185, 0.04297070577740669, -0.04582393914461136, -0.04545498639345169, 0.03431261330842972, -0.013786536641418934, -0.01205860823392868, 0.013319196179509163, 0.0017171679064631462, -0.012937945313751698, 0.01841074600815773, -0.01056434866040945, -0.030008161440491676, 0.014143191277980804, -0.007514338940382004, 0.007299116346985102, 0.0012137009762227535, -0.026638392359018326, 0.003268307074904442, 0.010859510861337185, -0.0029500850941985846, -0.0008047783048823476, -0.024904314428567886, 0.002923951018601656, -0.0018555251881480217, -0.05180097371339798, 0.005850976798683405, 0.016467593610286713, 0.009383699856698513, -0.004359792452305555, -0.003996988758444786, -0.021534545347094536, -0.030549293383955956, 0.015102468430995941, -0.025051895529031754, -0.012107801623642445, 1.6405909263994545e-05, 0.024781331419944763, 0.02226015366613865, -0.03251704201102257, 0.016713563352823257, -0.07379056513309479, 0.023096445947885513, 0.015434525907039642, -0.016639770939946175, 0.015680493786931038, 0.028753722086548805, -0.00014911842299625278, 0.01151132769882679, 0.024080319330096245, -0.008178453892469406, -0.0077357105910778046, -0.004169166553765535, -0.01845993846654892, -0.00149733352009207, 0.01993574947118759, -0.0016049447003751993, 0.021325472742319107, -0.018054090440273285, -0.042331185191869736, -0.005100772716104984, -0.028212592005729675, -0.0012705812696367502, -0.0017525259172543883, 0.044938452541828156, -0.020513776689767838, 0.0018570624524727464, 0.00426140520721674, 0.01628311723470688, 0.03404204547405243, 0.00042698602192103863, -0.055638086050748825, -0.015385332517325878, 0.010988644324243069, -0.0026334007270634174, 0.02639242447912693, -0.008738032542169094, 0.030180340632796288, 0.0015365347499027848, -0.03561624512076378, -0.011394492350518703, 0.001167581882327795, 0.014819604344666004, 0.004353643395006657, -0.004498149733990431, -0.017242394387722015, -0.0006179959746077657, 0.024350885301828384, 0.005955513101071119, 0.006622702814638615, -0.01574198715388775, 0.0006817940738983452, 0.004983937367796898, 0.02372366562485695, 0.0472259595990181, -0.03035251796245575, -0.018213970586657524, 0.01645529456436634, -0.03512430936098099, -0.005426681134849787, -0.0012921035522595048, -0.06626392155885696, -0.04653724655508995, -0.03414043411612511, -0.018041793256998062, -0.023145640268921852, 0.0078033520840108395, 0.004528895951807499, -0.01574198715388775, -0.02302265539765358, -0.029147272929549217, -0.009217671118676662, -0.0054297554306685925, -0.015139363706111908, 0.030155742540955544, -0.012999437749385834, 0.013171615079045296, -0.0053098457865417, -0.026417020708322525, 0.0016556757036596537, -0.02226015366613865, -0.00578333530575037, -0.0008524347213096917, -0.03318115696310997, 0.00680103013291955, 0.021276278421282768, -0.008928658440709114, 0.014561337418854237, 0.03431261330842972, -0.04619289189577103, 0.01971437782049179, 0.015102468430995941, -0.0380021408200264, -0.00838752742856741, -0.03345172107219696, 0.003455857979133725, -0.005537366960197687, -0.025506937876343727, 0.008811823092401028, -0.029171869158744812, -0.014192384667694569, -0.014622829854488373, 0.01981276646256447, 0.00044850827543996274, 0.0020338522735983133, 0.038740046322345734, -0.026146456599235535, 0.008430572226643562, -0.016369206830859184, 0.009205373004078865, -0.01715630665421486, 0.002679519820958376, 0.036526329815387726, -0.026810571551322937, -0.017623646184802055, 0.021091802045702934, 0.0033420976251363754, -0.017144007608294487, -0.03448478877544403, -0.014130893163383007, -0.0035665438044816256, 0.0073421611450612545, 0.02515028417110443, -0.004089226946234703, -0.04240497574210167, -0.019357724115252495, -0.0061984071508049965, -0.03827270492911339, 0.0076188757084310055, -0.0073421611450612545, 0.0043259719386696815, -0.014167788438498974, -0.0127042755484581, 0.005709544755518436, -0.007317563984543085, 0.000983105506747961, 0.03903520852327347, -0.05017758160829544, 0.008313736878335476, 0.005257577635347843, -0.008129260502755642, 0.04538119584321976, 0.013183914124965668, -0.040265049785375595, -0.01732848398387432, 0.04560256749391556, 0.0005549665074795485, -0.00852895900607109, -0.03318115696310997, -0.029712999239563942, 0.00849821325391531, -0.003452783450484276, -0.029245659708976746, 0.031360987573862076, 0.01009700819849968, -0.037829961627721786, 0.0017509885365143418, -0.0024689091369509697, -0.02106720581650734, -0.02133777178823948, -0.03025413118302822, -0.0025580727960914373, 0.05583485960960388, -0.010207694955170155, -0.047865476459264755, -0.007852545939385891, -0.030229533091187477, -0.006721090525388718, 0.015496018342673779, -0.001317469053901732, 0.023908142000436783, 0.03177913650870323, -0.042921509593725204, 0.01634460873901844, -0.017291588708758354, 0.029147272929549217, -0.011074733920395374, -0.03355010971426964, 0.04326586797833443, -0.0024658346083015203, 0.0033728436101228, -0.009236118756234646, 0.05849131941795349, -0.0025903561618179083, 0.0031975910533219576, 0.023428503423929214, -0.0013758864952251315, -0.023981932550668716, -0.005085399374365807, 0.019087158143520355, 0.02976219356060028, 0.0050608026795089245, 0.0037264234852045774, -0.009660414420068264, -0.009685011580586433, 0.020157121121883392, 0.014696620404720306, 0.038740046322345734, 0.06100019812583923, -0.018705908209085464, -0.021251682192087173, 0.011173120699822903, 0.012962542474269867, 0.031729940325021744, 0.003560394747182727, 0.007538935635238886, -0.03200050815939903, 0.02421560324728489, -0.023096445947885513, 0.018201671540737152, -0.016197027638554573, 0.002415103605017066, 0.00911928340792656, 0.0029178017284721136, 0.038912221789360046, 0.020489180460572243, -0.0067518362775444984, -0.008787225931882858, 0.02313334122300148, -0.0038524821866303682, 0.002013867488130927, -0.023157937452197075, -0.004953191615641117, -0.017525259405374527, 0.03591140732169151, -0.0066595980897545815, -0.0014327667886391282, -0.010238440707325935, 0.03200050815939903, -0.014487546868622303, -0.011904877610504627, -0.03731342777609825, -0.06365665793418884, -0.007932485081255436, 0.0004731051158159971, 0.04631587490439415, 0.035542454570531845, 0.002565759466961026, 0.014229279942810535, 0.012525947764515877, 0.044938452541828156, -0.0018324656412005424, 0.0007870993576943874, -0.0314839743077755, -0.04356103017926216, 0.029294854030013084, 0.03470616042613983, 0.033746883273124695, -0.026958152651786804, -0.02030470222234726, 0.02693355455994606, 0.02291196957230568, 0.0314839743077755, -0.014585934579372406, 0.0013682000571861863, 0.00227982085198164, 0.012421411462128162, -0.0073360116221010685, -0.035813018679618835, -0.009525131434202194, -0.04068319499492645, -0.014007908292114735, -0.029565418139100075, 0.00906394049525261, -0.008959404192864895, -0.00969730969518423, -0.018177075311541557, 0.00568802235648036, 0.031410183757543564, -0.0052452790550887585, -0.008621197193861008, -0.04174086079001427, 0.07477443665266037, 0.035714633762836456, -0.04095376282930374, 0.026687586680054665, 0.016602875664830208, 0.007791053503751755, 0.0034189627040177584, -0.0003806747554335743, 0.00504850409924984, -0.017131708562374115, -0.025506937876343727, -0.010742676444351673, -0.018152479082345963, 0.0328122042119503, 0.04329046234488487, -0.025777503848075867, -0.01064428873360157, 0.06208245828747749, -0.01077957171946764, 0.038469478487968445, 0.012452157214283943, 0.024424675852060318, -0.009648116305470467, 0.01639380306005478, 0.03453398495912552, 0.015889568254351616, 0.026589199900627136, 0.01162201352417469, -0.01834925264120102, -0.01409399788826704, -0.0027056538965553045, 0.010035516694188118, 0.014057102613151073, -0.017094813287258148, 0.011203867383301258, 0.0016403027111664414, 0.009014747105538845, -0.02904888428747654, 0.044126756489276886, 0.008738032542169094, 0.020612163469195366, 0.02855694852769375, 0.03637874871492386, -0.008110812865197659, 0.038149721920490265, -0.00934065505862236, 0.039551742374897, 0.015385332517325878, 0.03817431628704071, -0.01145598478615284, 0.013663552701473236, 0.010386021807789803, 0.018423043191432953, -0.03219728171825409, -0.008596600964665413, -0.014758112840354443, 0.001910868100821972, -0.010306081734597683, 0.03261542692780495, -0.007366757839918137, -0.0022060303017497063, 0.004159942734986544, -0.015459123067557812, -0.00841827318072319, 0.0044182101264595985, -0.002871682634577155, -0.0015457585686817765, 0.035271890461444855, 0.02981138788163662, 0.02899969182908535, -0.01398331206291914, 0.0015004080487415195, -0.020021839067339897, -0.02214946784079075, 0.01454903930425644, -0.02453536167740822, 0.005085399374365807, 0.04555337503552437, 0.0019416142022237182, 0.04056021198630333, -0.006370585411787033, 0.02052607573568821, 0.00789558980613947, 0.030770665034651756, 0.03111501969397068, 0.018964175134897232, 0.01590186543762684, 0.00527910003438592, 0.007545085158199072, 0.0647389218211174, 0.004541194066405296, -0.0002515412634238601, 0.009672712534666061, 0.01981276646256447, -0.028975093737244606, 0.007483592722564936, 0.03790375217795372, -0.052538879215717316, -0.009014747105538845, 0.017291588708758354, -0.005964736919850111, -0.033476319164037704, -0.0036587819922715425, -0.021657530218362808, -0.006714941002428532, 0.007920186966657639, -0.018312357366085052, 0.004421284422278404, 0.01678735390305519, 0.06734618544578552, 0.006164586637169123, 0.0078033520840108395, -0.010496707633137703, -0.004224509932100773, 0.023600680753588676, 0.027376297861337662, 0.03138558566570282, -0.012446008622646332, 0.009930979460477829, 0.025383953005075455, -0.00241049169562757, -0.0005299853510223329, -0.002143000951036811, -0.024018827825784683, 0.006339839193969965, 0.04299530014395714, -0.013565164990723133, -0.019628290086984634, -0.0194438137114048, 0.02008333057165146, -0.012999437749385834, -0.007286818232387304, 0.019148651510477066, 0.01153592485934496, -0.021842006593942642, 0.015987955033779144, -0.0045104483142495155, 0.06823167204856873, -0.034189626574516296, 0.05544130876660347, 0.02084583416581154, 0.007465145085006952, 0.02872912585735321, -0.026564601808786392, 0.013971013016998768, 0.0036311105359345675, -0.0006725702551193535, -0.016442997381091118, 0.0036587819922715425, 0.00482098339125514, 0.033205751329660416, -0.016320012509822845, -0.005724917631596327, 0.005850976798683405, -0.00048770950525067747, -0.009605071507394314, 0.009518982842564583, -0.01960369199514389, 0.03332873806357384, 0.031852927058935165, -0.0002759459603112191, -0.021054906770586967, -0.02922106347978115, -0.05057113245129585, -0.009371401742100716, 0.008479765616357327, 0.01575428433716297, -0.01121001597493887, -0.028852110728621483, -0.011984816752374172, -0.042872317135334015, -0.01884119026362896, -0.005703395698219538, -0.0018170926487073302, 0.004824058152735233, 0.01715630665421486, 0.007938634604215622, -0.018804294988512993, -0.0011214627884328365, 0.022825879976153374, 0.019074860960245132, 0.003535797819495201, -0.009623519144952297, -0.008135409094393253, 0.016110939905047417, -0.01992345228791237, 0.03534568101167679, -0.010515155270695686, 0.006837925408035517, -0.02286277525126934, 0.023809755221009254, -0.03758399188518524, 0.004095376003533602, -0.039453353732824326, 0.004913221579045057, 0.003877079114317894, 0.0008770315907895565, 0.04907072335481644, -0.008037022314965725, -0.0330335758626461, 0.010921003296971321, 0.01617243140935898, 0.010650438256561756, 0.0076127261854708195, -0.004851729609072208, -0.0019247038289904594, -0.005226831417530775, -0.019591394811868668, -0.0005272950511425734, 0.008651943877339363, 0.017783526331186295, 0.00022713658108841628, -0.03350091725587845, 0.007323713507503271, 0.009162328206002712, -0.0059216925874352455, 0.002455073408782482, -0.036895282566547394, -0.008645794354379177, 0.0051561156287789345, 0.013971013016998768, -0.015606704168021679, 0.013811133801937103, -0.012150846421718597, -0.03295978531241417, 0.015532913617789745, 0.047275152057409286, -0.001090716803446412, 0.01699642650783062, -0.0029208764899522066, -0.03780536353588104, 0.011837235651910305, -0.011412939988076687, 0.055736470967531204, 0.005491247866302729, -0.01775892823934555, 0.03512430936098099, 0.016713563352823257, -0.019148651510477066, -0.012476754374802113, -0.01850913278758526, -0.01965288631618023, 0.037436410784721375, -0.03736262023448944, 0.02187890186905861, 0.030204936861991882, -0.010773422196507454, 0.00540515873581171, -0.01441375631839037, 0.0077972025610506535, -0.02243233099579811, 0.010373723693192005, 0.005017758347094059, 0.02307184971868992, -0.04068319499492645, 0.024670645594596863, -0.040265049785375595, 0.008947106078267097, -0.0065181665122509, 0.003031562315300107, 0.024953508749604225, -0.03155776485800743, 0.038444884121418, 0.007827948778867722, -0.009494385682046413, 0.0070654465816915035, 0.00868883915245533, 0.04095376282930374, -0.020292405039072037, 0.007901739329099655, 0.008350632153451443, 0.025334760546684265, 0.009051642380654812, -0.032123491168022156, -0.02009562961757183, -0.020624462515115738, 0.019222442060709, -0.03497672826051712, 0.019259337335824966, -0.020772043615579605, -0.027302507311105728, 0.0077111138962209225, -0.00777875492349267, 0.01590186543762684, -0.0020692104008048773, 0.0017725108191370964, -0.00476564047858119, 0.008485915139317513, 0.0013143944088369608, 0.009408297017216682, -0.02882751263678074, -0.03935496509075165, -0.006269123405218124, -0.0005914774956181645, -0.006985506508499384, -0.029885178431868553, 0.0028455485589802265, -0.01575428433716297, -0.009629668667912483, 0.03300897777080536, -0.010275335982441902, 0.009623519144952297, -0.02850775420665741, -0.00550047168508172, -0.029885178431868553, -0.02308414690196514, -0.003929347265511751, 0.03345172107219696, -0.0011929473839700222, -0.01143138762563467, 0.008885613642632961, -0.004673402290791273, -0.005085399374365807, 0.004907072521746159, -0.022493822500109673, 0.01474581379443407, 0.0447416789829731, -0.025777503848075867, -0.013651253655552864, -0.017279289662837982, 0.015840373933315277, 0.019222442060709, 0.021915797144174576, 0.01971437782049179, 0.036796893924474716, 0.001469662063755095, -0.03719044476747513, 0.0042306589893996716, -0.008239946328103542, 0.0003874004469253123, -0.03741181641817093, -0.015532913617789745, -0.0019016442820429802, 0.03355010971426964, 0.0021476128604263067, -0.045750148594379425, 0.0033021275885403156, 0.020427687093615532, -0.004756416659802198, 0.013294599950313568, -0.033254947513341904, 0.0011645073536783457, 0.03350091725587845, -0.020649058744311333, 0.0206859540194273, 0.026761377230286598, -0.016086341813206673, 0.003987764939665794, -0.05155500769615173, 0.015299242921173573, -0.02710573375225067, 0.0012990214163437486, 0.01786961406469345, 0.004605760797858238, -0.019505305215716362, 0.03731342777609825, 0.04186384752392769, 0.004255255684256554, 0.03691987693309784, 0.005666500423103571, -0.002270597033202648, 0.01490569394081831, -0.0033543959725648165, 0.02818799577653408, 0.015163960866630077, -0.0006579658365808427, 0.03482914716005325, 0.01699642650783062, -0.019677482545375824, -0.026195649057626724, 0.0010730377398431301, 0.04056021198630333, -0.02286277525126934, 0.0043259719386696815, -0.023428503423929214, -0.00014786937390454113, 0.004704148508608341, -0.007256072014570236, 0.029467031359672546, -0.03660012036561966, 0.0017002575332298875, 0.0014258489245548844, 0.034337207674980164, -0.033254947513341904, 0.028655335307121277, -0.012156995013356209, 0.027425492182374, -0.023489994928240776, 0.030647680163383484, -0.005297547671943903, 0.004163017496466637, 0.038149721920490265, -0.009728055447340012, -0.019628290086984634, -0.0036895282100886106, 0.0038186616729944944, -0.01211395114660263, 0.0038094378542155027, 0.009930979460477829, 0.013725044205784798, -0.005531217437237501, -0.01710711233317852, -0.03327954187989235, -0.014598232693970203, -0.024068022146821022, -0.0020046436693519354, -0.02036619558930397, -0.0012390664778649807, -0.0001549793960293755, 0.014610531739890575, 0.025433147326111794, -0.027573073282837868, -0.02383435145020485, -0.0024781329557299614, 0.00732986256480217, 0.0038832284044474363, -0.0011468282900750637, -0.006001632194966078, -0.011357597075402737, 0.01267967838793993, -0.025925084948539734, 0.0357392281293869, -0.014450651593506336, 0.006149213761091232, -0.013540567830204964, -0.012778066098690033, -0.046512652188539505, 0.006628852337598801, -0.012206189334392548, -0.006635001394897699, 0.03283679857850075, -0.006936312653124332, -0.014561337418854237, -0.015028677880764008, 0.017512960359454155, 0.028532350435853004, -0.009789547882974148, 0.009082388132810593, -0.02329322136938572, 0.03079526126384735, -0.005531217437237501, -0.015729688107967377, 0.005491247866302729, 0.028483157977461815, 0.01976357214152813, -0.02904888428747654, 0.0038094378542155027, 0.024572256952524185, -0.017795823514461517, 0.025383953005075455, -0.013909521512687206, 0.002013867488130927, -0.02998356521129608, -0.049710243940353394, -0.015483719296753407, 0.02526096999645233, 0.0007279131677933037, -0.02069825306534767, -0.0012951780809089541, 0.007766456808894873, 0.02475673332810402, 0.023502293974161148, 0.021460754796862602, -0.0024443124420940876, 0.010238440707325935, -0.0015680494252592325, 0.019025666639208794, -0.007096192333847284, -0.04365941509604454, 0.012279979884624481, -0.020808938890695572, -0.015065573155879974, -0.01928393356502056, -0.0009100835886783898, -0.019037965685129166, -0.016701264306902885, -0.02003413811326027, -0.0051591903902590275, -0.0072499229572713375, -0.004581164103001356, -0.043856192380189896, -0.02318253554403782, -0.04599611833691597, -0.04110134392976761, -0.006794881075620651, 0.005890946369618177, -0.02111640013754368, 0.00811696145683527, -0.01034297700971365, -0.00777875492349267, -0.012864154763519764, -0.007422100752592087, -0.024141812697052956, -0.007071595638990402, -0.03719044476747513, 0.03898601233959198, -0.014733515679836273, 0.02264140360057354, 0.0069732083939015865, -0.028581544756889343, -0.012950243428349495, 0.0014873410109430552, 0.018004897981882095, 0.0029485479462891817, -0.0021153294946998358, 0.004452030640095472, -0.011443686671555042, -0.01558210700750351, 0.02096881903707981, -0.0036034390795975924, -0.03694447502493858, 0.006450525019317865, 0.018755100667476654, -0.002744086552411318, 0.019074860960245132, -0.016479892656207085, -0.008184603415429592, 0.02139926329255104, 0.0015349974855780602, 0.00699165603145957, 0.0188903845846653, 0.023108744993805885, -0.009869487956166267, 0.004150718916207552, -0.001734078163281083, -0.0019354649120941758, -0.006425928324460983, 0.0205752681940794, 0.011695804074406624, 0.002290582051500678, 0.009857188910245895, -0.019628290086984634, -0.00738520547747612, -0.00019350806542206556, 0.015545211732387543, -0.01971437782049179, 0.0025319387204945087, -0.013011735863983631, 0.01905026286840439, 0.01081031747162342, 0.0314839743077755, -0.00849821325391531, -0.035591647028923035, -0.04284771904349327, 0.02303495444357395, -0.018115583807229996, -0.034460194408893585, -0.0005280637415125966, 0.013147018849849701, -0.0032867547124624252, -0.01267967838793993, 0.004811759572476149, 0.01987425796687603, 0.004996235948055983, -0.016590578481554985, -0.008289139717817307, -0.026908958330750465, 0.08933577686548233, -0.025383953005075455, -0.03534568101167679, -0.010269186459481716, 0.0004039264749735594, 0.010429066605865955, 0.02535935677587986, -0.00031668448355048895, 0.02617105282843113, -0.03768238052725792, -0.01705791801214218, 0.005411307793110609, -0.0012705812696367502, -0.022297048941254616, 0.0015426839236170053, -0.01590186543762684, -0.0009577400051057339, 0.018054090440273285, -0.01971437782049179, -0.006542763207107782, -0.0026011173613369465, 0.014708918519318104, 0.031016632914543152, 0.007563532795757055, -0.03674770146608353, 0.018152479082345963, 0.036034390330314636, 0.022887373343110085, -0.007286818232387304, 0.015987955033779144, 0.014893394894897938, 0.028212592005729675, 0.016270818188786507, -0.0034374103415757418, 0.0016249297186732292, -0.015483719296753407, 0.008012425154447556, 0.0052514285780489445, 0.005208383779972792, -0.009648116305470467, 0.024990404024720192, -0.022272450849413872, 0.021054906770586967, -0.02769605815410614, 0.007028551306575537, 0.016541384160518646, -0.015594405122101307, -0.02269059792160988, 0.002582669723778963, -0.005973960738629103, 0.01590186543762684, 0.0021399264223873615, -0.002487356774508953, -0.016529085114598274, -0.039551742374897, 0.04220820218324661, -0.00020273188420105726, -0.026318633928894997, 0.014438353478908539, -0.05086629465222359, 0.014032505452632904, -0.007213027682155371, -0.018816594034433365, 0.014143191277980804, 0.01916094869375229], [0.019559606909751892, 0.029171276837587357, 0.006007293239235878, 0.042790140956640244, -0.005832153372466564, 0.016435112804174423, -0.04730174317955971, 0.06316240131855011, 0.0055449241772294044, -0.00444854935631156, 0.040464285761117935, -0.007937333546578884, 0.02643909677863121, 0.036821380257606506, 0.030320191755890846, 0.06080852076411247, 0.05001991242170334, -0.006094863172620535, -0.02300635725259781, 0.05834255367517471, 0.0689910501241684, 0.06758993119001389, -0.0024484535679221153, 0.0002607392962090671, 0.01864887960255146, -0.01681341603398323, -0.04746987670660019, -0.004413521382957697, 0.04780614376068115, 0.005170125048607588, 0.055960651487112045, -0.036541156470775604, 0.05806232988834381, -0.03951152786612511, 0.009730764664709568, 0.04654514044523239, 0.020792590454220772, -0.017738154157996178, 0.02013406530022621, -0.02380499430000782, 0.01919531635940075, -0.033851008862257004, -0.009100261144340038, 0.03096470609307289, 0.016309013590216637, 0.09516393393278122, -0.010024999268352985, -0.004529113881289959, -0.007117679342627525, 0.004914421122521162, -0.0031560182105749846, -0.011047814972698689, 0.00803541112691164, 0.042790140956640244, -0.05240181088447571, -0.015132074244320393, -0.03376694396138191, 0.024561597034335136, -0.026691297069191933, -0.041837383061647415, 0.01913927122950554, -0.015650488436222076, 0.022726133465766907, -0.004136800765991211, -0.04096869006752968, 0.03757798299193382, 0.023903071880340576, 0.034047167748212814, -0.0010911206481978297, 0.0079513443633914, 0.0057410807348787785, 0.011257982812821865, 0.0027584510389715433, 0.004732275847345591, 0.01584664359688759, 0.033038362860679626, 0.02594870515167713, 0.01532823033630848, -0.006935534067451954, -0.01005302183330059, -0.014879873022437096, 0.0335707850754261, -0.004917923826724291, -0.011370072141289711, 0.008925121277570724, 0.013829033821821213, -0.07874283194541931, 0.040296152234077454, -0.002247042953968048, 0.029031164944171906, -0.007573042530566454, -0.013170508667826653, -0.04996386542916298, 0.040576376020908356, -0.006858472246676683, 0.011124876327812672, 0.0003909994848072529, -0.02328658103942871, -0.01941949501633644, 0.04654514044523239, 0.022586021572351456, -0.048170436173677444, -0.020820612087845802, -0.028835007920861244, 0.06719762086868286, 0.025766558945178986, -0.050776515156030655, -0.02586463838815689, -0.01223175972700119, -0.014018185436725616, 0.015538398176431656, -0.04620886966586113, 0.027602024376392365, 0.041585180908441544, 0.005418823566287756, -0.015580431558191776, -0.06478769332170486, -0.014060218818485737, -0.001597274444065988, -0.012077637016773224, 0.04138902574777603, 0.011888486333191395, -0.0030947192572057247, -0.07308231294155121, 0.0386708565056324, 0.028750941157341003, -0.03951152786612511, 0.030320191755890846, -0.026383051648736, -0.04152913764119148, 0.042790140956640244, -0.017541997134685516, 0.06153710186481476, -0.026761353015899658, -0.0037269736640155315, 0.035224106162786484, -0.00739790266379714, -0.016196923330426216, -0.02062445692718029, -0.00932443980127573, 0.05150509625673294, 0.020498355850577354, 0.0065572322346270084, 0.04735778644680977, -0.011447133496403694, 0.0016664547147229314, 0.001195328775793314, -0.012266787700355053, 0.04365883395075798, 0.03704555705189705, 0.006434634327888489, -0.004332957323640585, -0.024421485140919685, 0.014823827892541885, -0.004014202859252691, -0.049543529748916626, 0.027854224666953087, 0.03351474180817604, 0.0006620282074436545, 0.014893883839249611, -0.019643673673272133, -0.029955901205539703, 0.019867852330207825, -0.001365214353427291, 0.01098476443439722, -0.006312036421149969, -0.0032488422002643347, -0.014305414631962776, -0.07240977883338928, -0.005772606004029512, -0.03306638449430466, 0.011054820381104946, 0.002085914369672537, 0.010564429685473442, -0.017457930371165276, -0.03194548934698105, 0.05526009202003479, 0.015776587650179863, 0.015272186137735844, -0.06338657438755035, 0.052205655723810196, 0.044219281524419785, -0.008175523020327091, -0.003709459910169244, -0.009492574259638786, -0.030348215252161026, 0.0049844770692288876, 0.011727357283234596, -0.019377460703253746, 0.04581655561923981, 0.019615652039647102, -0.021647272631525993, -0.007748182397335768, 0.005804131273180246, 0.05287819355726242, -0.004658717196434736, 0.004199851304292679, 0.009947937913239002, -0.0479462556540966, -0.01689748279750347, -0.009947937913239002, -0.027924280613660812, 0.03617686405777931, 0.03872689977288246, -0.017345840111374855, 0.025766558945178986, 0.024169284850358963, 0.010431323200464249, 0.017373863607645035, -0.038082387298345566, 0.025220124050974846, -0.006826947443187237, -0.024155274033546448, 0.034187279641628265, 0.008448741398751736, 0.01862085796892643, 0.028975119814276695, -0.020007964223623276, 0.0842912569642067, 0.05542822554707527, -0.04800230264663696, 0.0461808480322361, 0.000932619150262326, 0.05761396884918213, 0.03953954949975014, 0.019433505833148956, -0.08238573372364044, -0.0204002782702446, -0.05750188231468201, -0.03323451802134514, -0.05189741030335426, 0.015916699543595314, -0.027826203033328056, -0.03320649638772011, 0.01755600795149803, 0.040548354387283325, -0.005681533366441727, -0.030208103358745575, -0.04987980052828789, 0.026256950572133064, -0.02440747432410717, -0.006266499869525433, -0.0268454197794199, -0.0009142294875346124, -0.009527602232992649, -0.025332212448120117, 0.03244989365339279, -0.029955901205539703, 0.04968364164233208, 0.025794582441449165, 0.030544372275471687, 0.028652861714363098, -0.0425659641623497, -0.041613202542066574, -0.08042417466640472, 0.0019142774399369955, 0.01971372961997986, 0.002289076568558812, 0.004588661249727011, 0.016659293323755264, -0.034019142389297485, -0.030544372275471687, -0.0014930663164705038, -0.027826203033328056, 0.004662219900637865, 0.02575254812836647, 0.049487486481666565, -0.016575224697589874, 0.0452561117708683, 0.05640900880098343, 0.003719968255609274, 0.04634898155927658, 0.00501950504258275, -0.030432282015681267, -0.07257790863513947, 0.041613202542066574, -0.005975767970085144, 0.04085659980773926, -0.004641203209757805, -0.008728965185582638, -0.00933845154941082, -0.014032196253538132, -0.007236774079501629, -0.03435541316866875, -0.011972553096711636, 0.0044030132703483105, 0.026859430596232414, -0.018284589052200317, 0.028120437636971474, -0.08916714787483215, 0.0017067368607968092, -0.01242091041058302, -0.0034292361233383417, -0.031413063406944275, 0.03320649638772011, 0.0187329463660717, 0.013324631378054619, -0.017037594690918922, 0.025192100554704666, 0.0017846740083768964, -0.008735970593988895, 0.07162515074014664, 0.00023578188847750425, 0.0100390100851655, 0.004889901727437973, 0.04211760684847832, 0.02641107328236103, 0.0013109210412949324, -0.027545979246497154, 0.005226170178502798, -0.028750941157341003, -0.00033145197085104883, -0.06075247377157211, -0.012280798517167568, 0.04091264307498932, -0.030124036595225334, -0.0440511479973793, 0.012308821082115173, 0.07672522217035294, -0.021521171554923058, 0.019517572596669197, -0.05811837315559387, -0.022277776151895523, -0.011755379848182201, -0.0004297491395846009, -0.009562630206346512, -0.0076430984772741795, 0.0007347112405113876, 0.004045728128403425, -0.006126388441771269, -0.036765336990356445, -0.029339410364627838, 0.03373892232775688, 0.015033995732665062, 0.028722917661070824, -0.031497132033109665, -0.007180729415267706, 0.03096470609307289, 0.0479462556540966, 0.008539813570678234, -0.005250689573585987, -0.014242364093661308, -0.009737770073115826, -0.013051413930952549, 0.0031192388851195574, 0.016196923330426216, -0.003261102130636573, 0.0039791748858988285, 0.04211760684847832, 0.04346267879009247, 0.00766411516815424, -0.03878294676542282, -0.05772605910897255, -0.01815848797559738, -0.0019913387950509787, -0.021563205868005753, 0.04248189553618431, -0.04096869006752968, -0.004907415714114904, 0.0425659641623497, -0.03897910192608833, -0.025570401921868324, -0.004059739410877228, 0.014102252200245857, -0.025976726785302162, 0.030152058228850365, -0.0295355673879385, 0.03211362287402153, 0.0031402555759996176, 0.012911302037537098, 0.014417503960430622, 0.008756986819207668, 0.01747194118797779, -0.03721369430422783, 0.025850625708699226, 0.010543412528932095, 2.4013301299419254e-05, 0.04769405722618103, 0.03757798299193382, -0.0536908395588398, 0.01405321341007948, 0.012070631608366966, 0.006728868931531906, -0.008883087895810604, 0.044163238257169724, 0.041977494955062866, 0.031637243926525116, -0.015118062496185303, 0.0001339818991255015, -0.002143710386008024, 0.032870225608348846, -0.029283365234732628, 0.018494756892323494, -0.013646888546645641, 0.007229768671095371, 0.005138600245118141, -0.017121661454439163, 0.04155715927481651, 0.022670088335871696, -0.016855448484420776, -0.021156881004571915, -0.0017268778756260872, 0.035224106162786484, -0.018340634182095528, 0.004360979422926903, 0.015272186137735844, -0.01993790827691555, 0.0172477625310421, 0.01132803875952959, 0.004059739410877228, 0.012168709188699722, -0.019783785566687584, 0.009359467774629593, -0.005446846131235361, -0.029031164944171906, -0.018873058259487152, 0.009842853993177414, 0.017808210104703903, -0.03738182783126831, -0.03953954949975014, 0.00843473058193922, -0.03348672017455101, -0.013373671099543571, -0.006445142440497875, -0.009436529129743576, 0.002669129753485322, 0.029787767678499222, -0.006662315689027309, 0.04267805442214012, -0.0153702637180686, -0.019699718803167343, -0.007804227061569691, -0.027924280613660812, 0.051028717309236526, -0.015454331412911415, -0.034075189381837845, -0.004564141854643822, 0.029199298471212387, 0.01194453053176403, 0.015804611146450043, -0.04598469287157059, -0.029983924701809883, 0.026635251939296722, -0.04847868159413338, -0.05153311789035797, -0.014333437196910381, -0.05946344509720802, -0.050860583782196045, -0.003085962263867259, -0.002303087618201971, 0.015412298031151295, 0.023048389703035355, 0.007257791236042976, -0.03216966986656189, 0.0036674262955784798, -0.026607230305671692, -0.017023583874106407, 0.009030205197632313, 0.008918115869164467, 0.0010701038409024477, 0.040576376020908356, 0.008042417466640472, 0.011692329309880733, 0.026775363832712173, 0.007790215779095888, -0.021703317761421204, -0.0027181687764823437, 0.020190110430121422, 0.0002870102471206337, -0.003916124813258648, 0.03096470609307289, 0.043126411736011505, 0.02010604366660118, 0.03499992564320564, -0.001658573397435248, -0.015888677909970284, -0.03749391809105873, -0.045480288565158844, 0.011951535940170288, -0.039091192185878754, -0.012168709188699722, -0.022011563181877136, -0.04539622366428375, -0.03816645219922066, 0.05951949208974838, 0.08759789168834686, 0.0689910501241684, 0.044219281524419785, -0.024939900264143944, -0.0062174610793590546, 0.034047167748212814, -0.01982581987977028, 0.03359881043434143, -0.01755600795149803, 0.0010595954954624176, -0.05834255367517471, 0.0057095554657280445, 0.010291211307048798, 0.009905903600156307, -0.029283365234732628, -0.029059186577796936, -0.046965472400188446, 0.0005678906454704702, -0.013913101516664028, 0.012140687555074692, 0.012112664990127087, -0.06058434024453163, 0.048338569700717926, 0.032561980187892914, 0.024939900264143944, 0.006609774194657803, -0.013625872321426868, -0.01944751664996147, -0.0028215013444423676, 0.012799212709069252, -0.018971137702465057, -0.03469168022274971, -0.004143806174397469, -0.022698111832141876, -0.019727740436792374, 0.02449154108762741, 0.023398669436573982, -0.009933926165103912, -0.014011180028319359, -0.006361075676977634, 0.015216141007840633, 0.017738154157996178, -0.1713847517967224, 0.008161512203514576, -0.0008730716072022915, -0.0013783498434349895, -0.02964765578508377, -0.0021769870072603226, 0.009604663588106632, 0.04634898155927658, 0.020218132063746452, -0.011580239981412888, 0.005065041594207287, 0.016995560377836227, 0.006620282307267189, -0.006893500220030546, 0.01850876770913601, -0.012434922158718109, 0.009331445209681988, 0.004115784075111151, 0.010557424277067184, 0.02517808973789215, -0.0102001391351223, -0.016435112804174423, -0.008014394901692867, -0.03239384666085243, -0.014151290990412235, 0.017107650637626648, -0.01124397199600935, 0.009373479522764683, 0.03892305865883827, -0.014403492212295532, 0.023622848093509674, 0.00315426685847342, 0.009464551694691181, -0.01686946116387844, -0.00353432004339993, 0.01681341603398323, -0.007030109409242868, -0.01151718944311142, 0.03827854245901108, 0.0028267554007470608, -0.015580431558191776, -0.01785024255514145, 0.02125495858490467, -0.022039584815502167, 0.029871834442019463, -0.02185744047164917, -0.004101772792637348, 0.023959117010235786, -0.02641107328236103, 0.05234576761722565, 0.007839255034923553, 0.0007981993840076029, -0.018873058259487152, 0.0035238116979599, 0.0344955250620842, -0.014158297330141068, 0.01604280062019825, -0.03071250580251217, 0.013723950833082199, -0.017345840111374855, -0.011811424046754837, -0.04102473333477974, -0.02529017999768257, 0.0004925805260427296, 0.009205345064401627, -0.002648112829774618, 0.003772510215640068, 0.010718552395701408, 0.03693347051739693, 0.03564444184303284, 0.010473356582224369, -0.028050381690263748, -0.03443947806954384, 0.017976343631744385, -0.020035987719893456, -0.0018021879950538278, 0.004294426646083593, -0.0016200426034629345, -0.005226170178502798, -0.015916699543595314, -0.024715721607208252, 0.00833665207028389, -0.019587628543376923, 0.04096869006752968, 0.022936301305890083, -0.006185935810208321, -0.019951919093728065, 0.0010779851581901312, 0.024673687294125557, -0.015398286283016205, -0.024225329980254173, -0.028148459270596504, 0.00514210294932127, 0.04096869006752968, -0.006136896554380655, -0.01593071036040783, 0.014739761129021645, -0.008196540176868439, 0.019433505833148956, -0.0006366329616867006, -0.026481129229068756, 0.017079627141356468, -0.004273409955203533, 0.011797413229942322, -0.015832632780075073, -0.0172477625310421, 0.001195328775793314, 0.00692502548918128, -0.016365056857466698, -0.022992346435785294, 0.008469757623970509, 0.0035518340300768614, -0.0044030132703483105, 0.028610829263925552, -0.017457930371165276, 0.022670088335871696, -0.004287420772016048, 0.002698903437703848, 0.03684940189123154, 0.021437104791402817, -0.025346223264932632, -0.03099272958934307, -0.010697535239160061, 0.03595268726348877, 0.015706531703472137, -0.01864887960255146, 0.004697247873991728, 0.01815848797559738, -0.047133609652519226, 0.023272570222616196, 0.025906670838594437, 0.010417312383651733, 0.01848074607551098, -0.02013406530022621, 0.0028512750286608934, -0.009863870218396187, -0.011895491741597652, 0.017457930371165276, 0.040380220860242844, 0.0010937476763501763, -0.017079627141356468, -0.007432930637151003, -0.008182528428733349, -0.0068864948116242886, 0.003311892505735159, 0.03704555705189705, -0.013723950833082199, 0.02245992049574852, -0.03376694396138191, 0.017051605507731438, -0.009674719534814358, -0.020862646400928497, -0.008483769372105598, 0.012596050277352333, -0.020204121246933937, -0.021871451288461685, 0.006403109058737755, -0.04360279068350792, -0.03822249919176102, 0.00643113162368536, 0.0179903544485569, -0.01408123504370451, -0.004595667123794556, -0.0015105803031474352, -0.011054820381104946, 0.0985826626420021, -0.028232526034116745, 0.006914516910910606, -0.006851466838270426, 0.02555639110505581, -0.0021980036981403828, -0.010298216715455055, -0.12329838424921036, -0.021268971264362335, 0.007986372336745262, 0.01227379310876131, -0.008890093304216862, -0.02117089182138443, -0.017570018768310547, -0.01911124959588051, 0.0037584989331662655, 0.008175523020327091, -0.036429066210985184, 0.008525802753865719, 0.0033574288245290518, -0.029843812808394432, -0.01290429662913084, -0.003849571570754051, -0.03368287533521652, -0.007474964484572411, 0.011468150652945042, 0.020792590454220772, -0.010648496448993683, 0.013822028413414955, 0.006059835199266672, -0.01779419742524624, 0.00956963561475277, 0.006963556166738272, 0.00590220931917429, -0.036597199738025665, -0.004364482592791319, -0.023356636986136436, 0.02652316354215145, 0.03368287533521652, -0.05660516396164894, -0.02975974604487419, 0.014074229635298252, 0.00961166899651289, 0.027055587619543076, -0.007937333546578884, 0.04987980052828789, -0.003285621525719762, -0.029171276837587357, 0.01542630884796381, -0.016337035223841667, 0.03701753541827202, 0.02237585373222828, -0.019643673673272133, 0.010060027241706848, -0.03738182783126831, 0.0016305510653182864, -0.009443535469472408, 0.014375470578670502, 0.01370993908494711, 0.012049614451825619, -0.00172074802685529, -0.00045317408512346447, 0.013955134898424149, -0.03592466562986374, 0.009800819680094719, 0.008595858700573444, -0.03312242776155472, -0.014879873022437096, 0.006396103650331497, 0.018578823655843735, 0.013198531232774258, 0.014403492212295532, -0.016309013590216637, -0.011895491741597652, -0.03990383818745613, -0.024883855134248734, -0.013002375140786171, -0.054671622812747955, 0.0023766462691128254, 0.0007977615459822118, -0.016252968460321426, 0.008574841544032097, -0.0003905616176780313, 0.02558441460132599, 0.0083226403221488, -0.018901081755757332, -0.0009229864808730781, 0.007135193329304457, 0.040660444647073746, -0.014501570723950863, -0.024701708927750587, 0.004059739410877228, -0.03485981374979019, -0.005954751279205084, -0.019895875826478004, 0.017037594690918922, -0.004336460027843714, -0.020806601271033287, 0.017892276868224144, -0.011236965656280518, 0.0033872027415782213, -0.004164823330938816, 0.01479580532759428, -0.0016612004255875945, -0.00866591464728117, -0.10446735471487045, 0.00518413633108139, 0.0020386266987770796, 0.01595873385667801, -0.017836231738328934, -0.021521171554923058, -0.005068544298410416, 0.028008347377181053, 0.009058227762579918, -0.04735778644680977, -0.0179903544485569, 0.008014394901692867, 0.007692137733101845, -0.039315368980169296, 0.012077637016773224, 0.0047392817214131355, 0.011194932274520397, 0.033038362860679626, -0.02813444845378399, 0.01801837608218193, 0.017527986317873, -0.026060793548822403, -0.020007964223623276, -0.024939900264143944, -0.014697727747261524, 0.028919074684381485, -0.027882248163223267, 0.00023008983407635242, 0.02956358902156353, -0.03259000554680824, 0.02196952886879444, 0.021591227501630783, -0.00383205758407712, -0.011727357283234596, 0.010277200490236282, -0.014921906404197216, -0.023622848093509674, -0.006658812984824181, -0.004210359416902065, -0.004385499283671379, 0.017163695767521858, -0.024589620530605316, -0.0033101411536335945, 0.029227320104837418, -0.05772605910897255, 0.00530673423781991, -0.014669705182313919, 0.049375396221876144, 0.016995560377836227, -0.01475377194583416, -0.010585445910692215, -0.030011946335434914, 0.017093639820814133, 0.013934117741882801, -0.012490966357290745, 0.011293010786175728, 0.0041613201610744, 0.025374246761202812, -0.040324173867702484, -0.031385041773319244, -0.025710513815283775, -0.011110865511000156, 0.017570018768310547, -0.018438711762428284, -0.011937525123357773, -0.010312228463590145, -0.006234975066035986, -0.015496364794671535, -0.020078020170331, 0.012350854463875294, 0.011629278771579266, -0.004066744819283485, -0.03071250580251217, -0.01475377194583416, -0.012182720936834812, -0.008658909238874912, -0.003292627166956663, -0.026228928938508034, -0.02775614708662033, 0.0060213045217096806, 0.011433122679591179, -0.02243189886212349, 0.023496748879551888, 0.016084834933280945, 0.014949928969144821, 0.04088462144136429, 0.0020473836921155453, 0.013583838939666748, -0.00165944907348603, -0.03186142072081566, 0.031497132033109665, -0.01284825149923563, -0.011447133496403694, 0.01153120119124651, -0.0031857918947935104, 0.008371680043637753, -0.045480288565158844, -0.03701753541827202, -0.0229503121227026, -0.026284972205758095, -0.00347302109003067, 0.008518797345459461, -0.017373863607645035, -0.026537174358963966, -0.03373892232775688, -0.018873058259487152, -0.006686835549771786, -0.010010987520217896, -0.0008227189537137747, -0.029283365234732628, 0.02772812359035015, -0.015412298031151295, 0.033963099122047424, 0.002926585031673312, -0.00407375069335103, -0.007086154073476791, -0.029227320104837418, 0.013457737863063812, 0.007657109759747982, -0.01465569343417883, -0.008890093304216862, 0.006893500220030546, -0.021983541548252106, 0.020344233140349388, -0.010067032650113106, -0.037886228412389755, 0.027447901666164398, 0.025388257578015327, 0.0019860847387462854, -0.004494085907936096, 0.01538427546620369, 0.017640074715018272, -0.04116484522819519, -0.025878649204969406, 0.013226553797721863, -0.0032313282135874033, 0.005786617286503315, -0.021549195051193237, 0.010718552395701408, -0.03172130882740021, 0.007285813335329294, -0.011790407821536064, 0.0271256435662508, 0.016323024407029152, -0.014249369502067566, -0.020190110430121422, 0.006252489052712917, 0.044219281524419785, -0.009275401011109352, 0.01317751407623291, -0.025570401921868324, -0.019895875826478004, -0.004826851189136505, -0.039091192185878754, 0.003818046534433961, 0.013885078951716423, 0.03244989365339279, 0.008813031949102879, -0.017429906874895096, 0.039315368980169296, -0.008119478821754456, 0.010417312383651733, -0.04024010896682739, 0.0014965691370889544, -0.039203278720378876, -0.013737961649894714, -0.04410719498991966, -0.0034870323725044727, 0.00401770556345582, 0.007516997866332531, 0.009891892783343792, 0.0019300399580970407, 0.002133202040567994, 0.0045921639539301395, 0.006182433106005192, 0.030152058228850365, -0.0018424701411277056, 0.010522396303713322, 0.016575224697589874, 0.019657684490084648, -0.00970974750816822, 0.010648496448993683, -0.023244546726346016, -0.017373863607645035, 0.039147235453128815, 0.030124036595225334, 0.05612878501415253, -0.018382668495178223, 0.03228175640106201, -0.0017041097162291408, 0.025402268394827843, 0.045452266931533813, -0.003147261217236519, -0.011005781590938568, -0.0036604206543415785, 0.013303615152835846, -0.006224466487765312, -0.009072238579392433, 0.003926632925868034, 0.0014002422103658319, 0.005194644909352064, 4.61794252260006e-06, 0.024113239720463753, -0.016196923330426216, -0.01347875501960516, 0.0029528560116887093, 0.0075310091488063335, -0.004399510566145182, -0.012021591886878014, 0.01621093414723873, -0.011103860102593899, -0.04494786262512207, 0.021212926134467125, -0.008301624096930027, -0.013352653943002224, 0.0003874966932926327, -0.03497190400958061, 0.0118464520201087, 0.010403300635516644, 0.02552836947143078, 0.029871834442019463, -0.01735985092818737, 0.04836659133434296, 0.01413728017359972, -0.004311940632760525, 0.015832632780075073, -0.001875746645964682, 0.013506777584552765, 0.021381059661507607, -0.004861879162490368, 0.012385882437229156, 0.0033819484524428844, 0.013170508667826653, 0.01853679120540619, -0.011664306744933128, -0.003098222194239497, 0.022768167778849602, 0.026144860312342644, -0.0013214293867349625, 0.008728965185582638, 0.024645665660500526, -0.013338643126189709, 0.009758786298334599, -0.02243189886212349, 0.022936301305890083, 0.007481969892978668, 0.042930252850055695, -0.001066601020283997, -0.01813046634197235, -0.005583454854786396, 0.0075800479389727116, 0.02956358902156353, 0.02202557399868965, 0.013289603404700756, 0.023819005116820335, -0.013794006779789925, 0.04623689129948616, 0.003537822747603059, 0.004438041243702173, 0.01593071036040783, -0.016000766307115555, 0.005646505393087864, -0.006984572857618332, -0.014991962350904942, -0.0030316689517349005, 0.00891111046075821, -0.01919531635940075, 0.017598042264580727, -0.014627671800553799, 0.006508192978799343, 0.004028214141726494, 0.0036253926809877157, 0.033935077488422394, 0.030039969831705093, 0.003271610476076603, 0.05433535575866699, 0.004830354359000921, 0.007215757388621569, 0.021325014531612396, -0.032842203974723816, -0.001473800977692008, -0.012554016895592213, -0.008637892082333565, 0.030320191755890846, -0.04248189553618431, -0.0307405274361372, -0.014991962350904942, -0.026158872991800308, 0.026999542489647865, 0.03567246347665787, -0.007860272191464901, 0.007748182397335768, 0.022123653441667557, -0.0036253926809877157, -0.0006248110439628363, -0.010452340357005596, -0.01719171740114689, -0.030039969831705093, 0.0002504498406779021, 0.017513973638415337, -0.0036674262955784798, 0.034131232649087906, 0.004707756452262402, -0.0035973703488707542, 0.016224946826696396, 0.017037594690918922, -0.03612082079052925, 0.003348671831190586, -0.017598042264580727, -0.014319425448775291, 0.01755600795149803, -0.034243322908878326, -0.010137088596820831, 0.0004437603347469121, 0.005362778902053833, 0.01801837608218193, -0.008357668295502663, 0.004861879162490368, -0.008427724242210388, 0.014158297330141068, -0.027195699512958527, -0.010690529830753803, 0.012413905002176762, -0.011047814972698689, -0.04410719498991966, -0.0029948896262794733, 0.023847028613090515, 0.005565940868109465, -0.01032623928040266, -0.026677286252379417, 0.010151099413633347, 0.011881479993462563, 0.016000766307115555, 0.015412298031151295, 0.03060041554272175, 0.02185744047164917, -0.05778210610151291, -0.03693347051739693, 0.007720159832388163, 0.018494756892323494, -0.053410615772008896, -0.019265372306108475, 0.01747194118797779, -0.012448932975530624, 0.01475377194583416, -0.012077637016773224, -0.026369040831923485, -0.0023170989006757736, -0.02678937464952469, -0.002560543129220605, 0.10682123154401779, -0.007159712724387646, -0.0046482086181640625, 0.01939147338271141, 0.011825435794889927, -0.0052436841651797295, 0.022782178595662117, 0.000711067346855998, 0.009786808863282204, 0.04007197543978691, 0.007278807926923037, -0.011580239981412888, 0.015019984915852547, 0.013247570022940636, -0.02073654532432556, -0.018144477158784866, -0.024855833500623703, 0.011363066732883453, -0.010417312383651733, 0.039007123559713364, 0.006063337903469801, 0.006063337903469801, 0.01018612738698721, -0.027854224666953087, -0.0030579399317502975, -0.03343067318201065, 0.0013625872088596225, 0.013829033821821213, 0.02031620964407921, -0.013268587179481983, 0.03233780339360237, -0.011019792407751083, -0.007187735289335251, -0.00497747166082263, -0.015356252901256084, -0.024141263216733932, 0.018410690128803253, -0.02418329566717148, -0.00351330335251987, 0.0005376790068112314, -0.02363686077296734, 0.00985686480998993, 0.01818651147186756, 0.004494085907936096, 0.005583454854786396, 0.011503178626298904, -0.039231304079294205, -0.01661725901067257, -0.02500995621085167, 0.02775614708662033, -0.009478563442826271, 0.020120054483413696, -0.025402268394827843, 0.007699143141508102, -0.008770998567342758, -0.007362874690443277, 0.0045431251637637615, 0.03197351098060608, 0.036821380257606506, 0.0015342241385951638, 0.022067608311772346, -0.01380801759660244, 0.01919531635940075, 0.006522204261273146, 0.01988186314702034, -0.045648422092199326, -0.01804639957845211, -0.002261054003611207, 0.012778195552527905, 0.0017295050201937556, 0.02059643343091011, 0.019601639360189438, -0.009394495747983456, -0.007509992457926273, -0.02931138686835766, 0.024533575400710106, -0.03359881043434143, 0.00606684060767293, -0.016687314957380295, 0.05366281792521477, 0.03906317055225372, 0.0058006285689771175, 0.019867852330207825, 0.04760998860001564, -0.02936743199825287, 0.014893883839249611, -0.05800628289580345, 0.0036253926809877157, 0.012659100815653801, -0.020750556141138077, 0.0030124036129564047, 0.001349451718851924, -0.024127250537276268, -0.012778195552527905, -0.014935917221009731, -0.01686946116387844, -0.003807537956163287, -0.03603675216436386, 0.006448645610362291, 0.007306830026209354, 0.031637243926525116, -0.01976977474987507, -0.030348215252161026, 0.01859283447265625, -0.009247378446161747, -0.006588757038116455, -0.009961948730051517, 0.014585638418793678, -0.017808210104703903, 0.027966314926743507, -0.01953158527612686, -0.012343849055469036, 0.005940739996731281, -0.021759361028671265, -0.019685707986354828, -0.0018197019817307591, 0.022137664258480072, -0.015636475756764412, 0.005107074975967407, 0.013772989623248577, 0.006553729064762592, -0.023160479962825775, 0.027055587619543076, 0.004931935109198093, 0.009870875626802444, 0.026663275435566902, 0.021675294265151024, 0.03060041554272175, 0.029031164944171906, -0.0026305990759283304, 0.006396103650331497, 0.0048513710498809814, 0.0003224760584998876, -0.017612053081393242, 0.018004365265369415, -0.012680117972195148, -0.01621093414723873, -0.00989889819175005, 0.005001991055905819, -0.03889503329992294, -0.0069180200807750225, -0.011089848354458809, -0.005516902077943087, 0.01881701499223709, 0.003297881456092, 0.003982677590101957, -0.039119213819503784, -0.018410690128803253, -0.015258174389600754, -0.022936301305890083, 0.023538781329989433, 0.02586463838815689, -0.022095629945397377, -0.0005521280691027641, -0.011215949431061745, 0.021437104791402817, 0.024799788370728493, -0.026046782732009888, 0.022235741838812828, 0.006038818508386612, -0.041893426328897476, -0.010214149951934814, -0.00036647991510108113, 0.020778579637408257, 0.027349822223186493, -0.0039231302216649055, 0.007229768671095371, 0.005485376808792353, 0.030320191755890846, 0.012532999739050865, -0.03712962567806244, -0.05150509625673294, 0.016981549561023712, -0.01584664359688759, -0.014256374910473824, 0.0012408650945872068, 0.013247570022940636, 0.023847028613090515, -0.060920607298612595, -0.022642066702246666, 0.004893404431641102, -0.026453107595443726, 0.004868885036557913, 0.009604663588106632, 0.005110577680170536, -0.004553633276373148, 0.03345869854092598, -0.016252968460321426, 0.009457546286284924, 0.03749391809105873, 0.022473931312561035, -0.01689748279750347, -0.014130274765193462, -0.005793622694909573, 0.007881288416683674, 0.00694604218006134, 0.01982581987977028, 0.020162086933851242, 0.007128187455236912, 0.0009256135672330856, 0.005835656076669693, -0.011930519714951515, -0.0026288474909961224, -0.00032488422584719956, 0.001375722698867321, -0.005888198036700487, 0.009982965886592865, 0.0295355673879385, -0.015748566016554832, -0.006711354944854975, -0.0033854511566460133, 0.005149108357727528, 0.01403920166194439, -0.01941949501633644, 0.01807442121207714, 0.06030411645770073, -0.011832441203296185, -0.0027496940456330776, -0.0428461879491806, -0.018662890419363976, -0.034215301275253296, 0.007079148665070534, 0.03306638449430466, -0.011307021602988243, 0.015440319664776325, 0.001324932207353413, 0.002627096138894558, 0.017051605507731438, 0.0033556774724274874, 0.0031139845959842205, -0.0008638767758384347, -0.014270386658608913, -0.002555288840085268, -0.036821380257606506, 0.01881701499223709, -0.01376598421484232, 0.0036183870397508144, -0.022992346435785294, -0.004459057934582233, -0.007285813335329294, 0.011594250798225403, -0.014725749380886555, -0.019657684490084648, -0.0004641203267965466, -0.04102473333477974, 0.02174535021185875, 0.013100452721118927, -0.02004999853670597, 0.0023503752890974283, 0.0161829125136137, -0.01317751407623291, 0.029815789312124252, -0.0019755763933062553, -0.01124397199600935, 0.03365485370159149, -0.056072741746902466, -0.032561980187892914, -0.030124036595225334, 0.025136055424809456, -0.010410306043922901, -0.00870794802904129, -0.01623895764350891, 0.01566449925303459, 0.0008494277717545629, 0.005607974715530872, -0.008371680043637753, -0.0071386960335075855, 0.03777414187788963, 0.005951248575001955, -0.006669321563094854, -0.007797221653163433, 0.005222667008638382, 0.02031620964407921, -0.036681268364191055, -0.024141263216733932, 0.03337462991476059, -0.0049599576741456985, 0.012413905002176762, -0.016351046040654182, 0.008862070739269257, -0.02561243623495102, 0.025682492181658745, 0.005194644909352064, -0.0025360235013067722, -0.00013912664144299924, -0.004406515974551439, -0.002043880755081773, 0.018971137702465057, 0.011566229164600372, -0.007888293825089931, -0.031132841482758522, 0.006070343777537346, -0.030404260382056236, -0.02950754389166832, -0.010949736461043358, 0.009233367629349232, 0.01626697927713394, -0.03197351098060608, -0.010088048875331879, -0.02613084949553013, 0.009002182632684708, -0.022866245359182358, 0.024057194590568542, -0.012014586478471756, 0.002796981716528535, 0.014361458830535412, -0.015314219519495964, 0.010676519013941288, 0.05374688655138016, -0.04909517243504524, -0.005611477419734001, -0.005079052411019802, -0.002502746880054474, -0.022824211046099663, -0.019685707986354828, 0.007481969892978668, 0.03726973757147789, -0.012042609043419361, 0.04620886966586113, 0.0461808480322361, 0.010585445910692215, 0.014725749380886555, -0.02830258198082447, -0.0034800267312675714, 0.11926315724849701, -0.0295355673879385, 0.007299824617803097, 0.02317449077963829, 0.004410018678754568, -0.005625488702207804, 0.0021717329509556293, -0.035420261323451996, -0.010102060623466969, -0.02838665060698986, 0.04517204314470291, -0.054587554186582565, -0.020120054483413696, -0.011993569321930408, 0.005145605653524399, -0.0034187277778983116, -0.003436241764575243, 0.006259494461119175, -0.010690529830753803, -0.009835847653448582, 0.009296417236328125, 0.027349822223186493, 0.04402312636375427, 0.008042417466640472, 0.015776587650179863, -0.02166128344833851, -0.03712962567806244, -0.009156306274235249, -0.003632398322224617, -0.017107650637626648, -0.008532808162271976, 0.009947937913239002, 0.04004395008087158, 0.006171924527734518, 0.039315368980169296, -0.02328658103942871, -0.0075800479389727116, 0.021100835874676704, -0.016463136300444603, 0.017598042264580727, 0.010921714827418327, 0.025051988661289215, -0.011363066732883453, -0.015356252901256084, -0.0018512271344661713, 0.018803002312779427, -0.020834624767303467, -0.025164078921079636, -0.04012801870703697, 0.013051413930952549, 0.008946138434112072, 0.015608454123139381, 0.005474868230521679, 0.001675211708061397, 0.02065247856080532, 0.01609884575009346, -0.005874187219887972, -0.02237585373222828, 0.014515582472085953, -0.024365441873669624, -0.020862646400928497, 0.0016944770468398929, -0.005222667008638382, 0.0017540245316922665, 0.01908322609961033], [-0.03123215027153492, -0.020469415932893753, 0.042129699140787125, 0.03615289926528931, 0.0013790454249829054, -0.011773846112191677, 0.01284113246947527, 0.006869949400424957, 0.075226791203022, -0.017514720559120178, 0.003569789696484804, 0.0069542089477181435, -0.05909392237663269, -0.057026758790016174, 0.03810771554708481, 0.014470146968960762, 0.006886801216751337, 0.0123580452054739, 0.021233368664979935, 0.0040921978652477264, 0.0035079994704574347, -0.03662475198507309, -0.014897061511874199, 0.04705044627189636, -0.016874348744750023, 6.310677417786792e-05, -0.017806818708777428, 0.013571380637586117, 0.045500073581933975, -0.029502023011446, 0.004648310132324696, -0.025929424911737442, 0.009796558879315853, -0.0395682118833065, 0.02487337402999401, -0.02590695582330227, -0.03700672835111618, 0.03662475198507309, -0.011560388840734959, -0.013099527917802334, -0.05401588976383209, 0.03078276664018631, -0.015941878780722618, -0.03547882288694382, -0.03049066662788391, 0.021817566826939583, 0.006398096680641174, 0.02299719862639904, 0.022132134065032005, 0.017930399626493454, 0.011217734776437283, 0.05549885705113411, -0.02570473402738571, 0.02905263938009739, 0.03206351026892662, 0.014447677880525589, 0.0032327522058039904, 0.0325353629887104, 0.000489757745526731, 0.012829897925257683, 0.007426061667501926, 0.004314081277698278, 0.009116866625845432, -0.031097333878278732, 0.01354891061782837, -0.024019544944167137, 0.04419686272740364, 0.035388946533203125, -0.025210412219166756, 0.0500163771212101, 0.015683481469750404, 0.08727026730775833, -0.017334965988993645, 0.005420688074082136, 0.011931130662560463, 0.03318696841597557, -0.0028297114185988903, -0.047454893589019775, -0.0058195157907903194, 0.004693248309195042, -0.02606423944234848, 0.02635633945465088, -0.062059853225946426, -0.02180633135139942, 0.02734498307108879, 0.012099649757146835, 0.013987059704959393, -0.023704977706074715, -0.02088509500026703, -0.040624264627695084, -0.024693621322512627, 0.022143369540572166, 0.050375886261463165, -0.03386104106903076, -0.057116635143756866, -0.012605206109583378, -0.015211629681289196, 0.0018382591661065817, -0.039141297340393066, 0.018896574154496193, 0.035905737429857254, 0.023255594074726105, -0.013211873359978199, 0.04907267168164253, -0.020491885021328926, -0.04682575538754463, -0.05621786788105965, 0.061520595103502274, -0.014324097894132137, 0.01706533692777157, 0.0272551067173481, -0.024985719472169876, -0.05639762431383133, 0.06844110041856766, -0.005313959438353777, -0.011706438846886158, -0.02180633135139942, 0.0012568692909553647, 0.011436808854341507, 0.005212848074734211, 0.01266137883067131, 0.01307705882936716, 0.02554744854569435, -0.05433046072721481, 0.0407366082072258, 0.0029322269838303328, -0.023323001340031624, 0.021626578643918037, -0.0011185434414073825, 0.0359506756067276, 0.02268262952566147, -0.014593727886676788, -0.005926244426518679, -0.0691601112484932, -0.003373184474185109, -0.058689478784799576, 0.013796071521937847, 0.016964225098490715, -0.01685187965631485, -0.03851216286420822, 0.053656384348869324, 0.0014619005378335714, 0.05563367158174515, 0.019975094124674797, -0.016908051446080208, 0.029322270303964615, 0.0077406298369169235, 0.01985151320695877, -0.005563928745687008, -0.02321065589785576, -0.014548788778483868, -0.00324960402213037, -0.031726472079753876, -0.029007701203227043, 0.039141297340393066, 0.01813262142241001, 0.01580706238746643, 0.037635862827301025, -0.050061315298080444, 0.01224569883197546, -0.009347176179289818, 0.0049993908032774925, -0.015413852408528328, 0.003701796056702733, 0.000554005557205528, 0.01767200417816639, -0.011695204302668571, -0.04619661718606949, -0.060936395078897476, -0.06372257322072983, -0.07257542759180069, -0.010846992954611778, 0.007892296649515629, -0.04866822808980942, -0.003465869929641485, -0.031793877482414246, 0.025749672204256058, 0.031052395701408386, -0.046241555362939835, -0.00936402752995491, 0.024985719472169876, -0.016986694186925888, -0.03941093012690544, -0.021750159561634064, -0.00619587441906333, -0.01611039601266384, -0.0018452807562425733, 0.07886679470539093, 0.008937112987041473, -0.010060572065412998, -0.0076170493848621845, 0.020312132313847542, 0.010650387965142727, -0.0006063165492378175, 0.011706438846886158, 0.012133353389799595, 0.006527294404804707, 0.018705585971474648, 0.02808646485209465, -0.02570473402738571, -0.03720894828438759, -0.0004806296492461115, -0.01894151233136654, 0.007841740734875202, -0.03909635916352272, -0.005954330787062645, 0.025143003091216087, -0.011706438846886158, -0.01953694596886635, 0.01272878609597683, -0.008796680718660355, 0.019907686859369278, 0.005033094435930252, -0.028423503041267395, -0.002114910865202546, -0.0005076628876850009, 0.011066067032516003, 0.028401033952832222, -0.024401521310210228, -0.037860557436943054, -0.030423259362578392, 0.03781561553478241, 0.04372501000761986, -0.0213457141071558, -0.04705044627189636, -0.02410942129790783, -0.03925364464521408, 0.024356583133339882, 0.030872642993927002, -0.04260155186057091, -0.04545513540506363, 0.006364393047988415, -0.01978410594165325, -0.055678609758615494, -0.0645764023065567, 0.010459399782121181, 0.06853097677230835, -0.02898523211479187, -0.00954378116875887, -0.05545391887426376, 0.00202222540974617, -0.005791429430246353, -0.0003330001491121948, 0.008785446174442768, 0.0077406298369169235, -0.004409574903547764, -0.004864575807005167, -0.005510564427822828, 0.030445728451013565, -0.01018976978957653, -0.0066284057684242725, 0.013807306066155434, -0.012110884301364422, -0.02142435684800148, 0.0053673237562179565, 0.012492859736084938, -2.964438681374304e-05, 0.033883512020111084, 0.06098133325576782, -0.015380148775875568, 0.01107730157673359, 0.014065701514482498, -0.0449383445084095, 0.02404201403260231, -0.015031876042485237, 0.021929912269115448, -0.008392236195504665, -0.013099527917802334, -0.06273392587900162, 0.009116866625845432, -0.07280012220144272, 0.028423503041267395, 0.04772452265024185, -0.0229073204100132, -0.0334116593003273, 0.019357191398739815, 0.016200274229049683, 0.00834729801863432, -0.07217098027467728, 0.06358775496482849, -0.010785202495753765, -0.016436200588941574, 0.035748451948165894, 0.014099406078457832, -0.009723534807562828, 0.018694352358579636, 0.028266219422221184, 0.0561729297041893, 0.026873130351305008, -0.025749672204256058, 0.012268167920410633, 0.02283991314470768, 0.03329931199550629, -0.03334425017237663, 0.015604840591549873, 0.007532790303230286, -0.010959339328110218, 0.0356585755944252, 0.016863113269209862, -0.019492007791996002, 0.001634632353670895, 0.009150570258498192, -0.024536335840821266, -0.04853341355919838, 0.008493347093462944, 0.029299801215529442, -0.014402739703655243, 0.012234464287757874, 0.029344739392399788, 0.023412877693772316, 0.05927367880940437, 0.0062351953238248825, -0.062194667756557465, -0.0040669203735888, -0.0488479807972908, 0.03309709206223488, 0.01617780327796936, 0.015998050570487976, 0.01821126416325569, -0.034332893788814545, 0.007156431209295988, -0.013526441529393196, 0.016986694186925888, -0.09144952893257141, 0.004701674450188875, -0.00453034695237875, 0.0011796315666288137, 0.05235317349433899, -0.013773602433502674, -0.02583954855799675, -0.030603012070059776, 0.03669215738773346, 0.024963250383734703, -0.028333626687526703, -0.013425330631434917, -0.04502822086215019, 0.004243865143507719, -0.004816828761249781, -0.05976799875497818, -0.005235317163169384, -0.0044825999066233635, -0.019975094124674797, -0.01879546232521534, 0.006145318504422903, 0.01715521328151226, -0.005339236930012703, 0.010167300701141357, -0.01790793053805828, -0.013301749713718891, 0.021300775930285454, -0.013312984257936478, 0.007499086204916239, 0.018143856897950172, -0.012425452470779419, -0.0545102134346962, -0.038984015583992004, 0.06835122406482697, -0.05433046072721481, -0.006926122587174177, -0.0011964833829551935, -0.03720894828438759, 0.029704246670007706, 0.004740995354950428, 0.03851216286420822, -0.0007014594739302993, 0.027075352147221565, 0.004347784910351038, 0.03675956651568413, -0.038691915571689606, 0.007437296211719513, 0.0015391382621601224, -0.015526197850704193, -0.012256933376193047, -0.04082648456096649, 0.0019435833673924208, 0.020087439566850662, 0.02554744854569435, 0.012301871553063393, -0.02772695943713188, -0.009555015712976456, -0.0058644539676606655, -0.026019301265478134, -0.03437783569097519, 0.025951894000172615, 0.01781805418431759, -0.02299719862639904, -5.880603566765785e-06, 0.004788742400705814, -0.03235560655593872, -0.025637324899435043, 0.02763708122074604, 0.02905263938009739, 0.014986937865614891, -0.04462377727031708, -0.028401033952832222, -0.018963981419801712, 0.023727446794509888, 0.034782279282808304, -0.011228969320654869, -0.019649291411042213, -0.02756967395544052, -0.016368791460990906, -0.015548666939139366, 0.00488985376432538, 0.03244548663496971, -0.01434656698256731, -0.01939089596271515, -0.017885461449623108, 0.033658821135759354, 0.02321065589785576, 0.010021250694990158, -0.007588963024318218, 0.030445728451013565, 0.024671152234077454, 0.014110640622675419, -0.008549519814550877, 0.02187373861670494, -0.016739534214138985, -0.004777507856488228, -0.007942852564156055, -0.0494321808218956, 0.0033113942481577396, -0.04307340458035469, 0.030063752084970474, -0.008583223447203636, -0.01354891061782837, -0.019289784133434296, -0.03839981555938721, 0.011639031581580639, -0.04496081545948982, 0.004909513983875513, 0.04147809371352196, 0.04455636814236641, 0.0808890238404274, -0.020424477756023407, -0.002659788355231285, 0.008746125735342503, 0.0065834675915539265, 0.03260276839137077, 0.0365348756313324, 0.03938845917582512, -0.011436808854341507, 0.01708780601620674, -0.03143437206745148, -0.02330053225159645, -0.059138860553503036, -0.005131397396326065, 0.0014998172409832478, 0.020626699551939964, -0.03736623376607895, 0.024805966764688492, 0.03192869573831558, 0.012155822478234768, -0.07010381668806076, -0.031726472079753876, -0.014840888790786266, 0.005058372393250465, -0.038152653723955154, -0.016874348744750023, -0.005735256243497133, -0.030895112082362175, -0.009734769351780415, 0.04979168623685837, 0.02509806491434574, 0.00535608921200037, 0.012021007016301155, 0.04412945359945297, -0.030063752084970474, -0.0028606064151972532, -0.05064551532268524, 0.02126707136631012, -0.0014534746296703815, 0.015144222415983677, -0.00816192664206028, 0.027816835790872574, 0.013234342448413372, 0.03213091567158699, 0.02599683217704296, 0.009043841622769833, -0.03190622478723526, 0.01707657054066658, -0.04237686097621918, -0.05662231519818306, -0.0030333383474498987, 0.036130428314208984, 0.07374382764101028, 0.025300288572907448, -0.03543388471007347, -0.013616318814456463, -0.06776702404022217, -0.040938831865787506, -0.012167057022452354, -0.020480651408433914, -0.008982052095234394, 0.008072050288319588, 0.008403470739722252, -0.04696056991815567, -0.006920505315065384, 0.01430162787437439, -0.03228820115327835, -0.002988399937748909, -0.006443035323172808, 0.008875323459506035, 0.019975094124674797, 0.03934352099895477, 0.01639126054942608, 0.007313715759664774, 0.019525710493326187, -0.07257542759180069, -0.04430920630693436, -0.031861286610364914, -0.015930643305182457, -0.013852245174348354, 0.026828192174434662, -0.02509806491434574, -0.029075108468532562, 0.025727203115820885, 0.0244239903986454, -0.005791429430246353, 0.01471730787307024, -0.0028353286907076836, 0.045657359063625336, -0.009757238440215588, -0.005650996696203947, -0.005858836695551872, 0.015896938741207123, 0.005507756024599075, -0.043253157287836075, 0.04008500277996063, -0.03413067385554314, -0.025727203115820885, -0.02545757219195366, -0.05761095881462097, -0.029636839404702187, -0.04615167900919914, 0.021884974092245102, -0.015672247856855392, 0.037770677357912064, -0.014537554234266281, 0.034490179270505905, 0.0337037593126297, -0.021458059549331665, -0.03460252657532692, 0.0016205890569835901, 0.042511675506830215, -0.016278915107250214, -0.019379660487174988, -0.02673831582069397, -0.0027370259631425142, -0.020806454122066498, 0.016132865101099014, -0.017413608729839325, -0.012268167920410633, -0.03141190484166145, -0.032175853848457336, 0.017267558723688126, 0.0024098188150674105, 0.002124741207808256, -0.015436321496963501, 0.017728177830576897, -0.005586397834122181, 0.010790820233523846, 0.0024463310837745667, 0.006038590334355831, -0.027367452159523964, 0.00888094026595354, -0.015323976054787636, 0.008319211192429066, -0.0022033832501620054, -0.03475980833172798, -0.026131646707654, -0.006027355324476957, 0.04244426637887955, -0.014481381513178349, 0.030984988436102867, 0.01115594431757927, 0.03329931199550629, 0.02554744854569435, -0.009796558879315853, 0.04439908638596535, 0.018009042367339134, 0.04246673732995987, 0.015335210599005222, -0.01677323691546917, -0.04001759737730026, 0.003111980389803648, -0.010167300701141357, 0.015908174216747284, -0.003519234247505665, 0.0027300044894218445, -0.009998781606554985, 0.009717917069792747, 0.02060423046350479, -0.03947833552956581, -0.034849684685468674, 0.010431312955915928, 0.019413365051150322, 0.011919896118342876, -0.04365760087966919, 0.0432756245136261, -0.0426914282143116, -0.015458790585398674, 0.008718038909137249, 0.03338919207453728, -0.030063752084970474, 0.003432166064158082, -0.01908756233751774, 0.019345957785844803, -0.02487337402999401, 0.02792918123304844, 0.010144831612706184, 0.02404201403260231, -0.012672613374888897, -0.01018976978957653, 0.0014197708806023002, 0.03586079925298691, -0.021974850445985794, -0.01939089596271515, -0.004316889680922031, 0.0014562832657247782, -0.013661256991326809, -0.015256567858159542, -0.0009303641854785383, 0.0007386740180663764, -0.057700835168361664, 0.024693621322512627, -0.03316449746489525, -0.006094763055443764, 0.03379363566637039, -0.018379783257842064, -0.00789791438728571, -0.014807184226810932, 0.01104921568185091, -0.023929668590426445, -0.031097333878278732, -0.005825133062899113, -0.028356095775961876, -0.01887410506606102, 0.023323001340031624, 0.0036034935619682074, 0.03026597574353218, -0.013346688821911812, 0.007796803023666143, -0.004844915121793747, 0.03415314108133316, -0.02651362307369709, -0.04024228826165199, 0.005165101028978825, 0.03970302641391754, -0.023704977706074715, 0.044017110019922256, 0.027659552171826363, -0.00816192664206028, 0.037613395601511, 0.001730126328766346, -0.010111127980053425, -0.020783985033631325, -0.0040669203735888, -0.05042082443833351, -0.0011740142945200205, 0.002979974029585719, -0.01872805505990982, 0.019604353234171867, -0.044533900916576385, 0.033591412007808685, 0.011639031581580639, 0.03738870471715927, -0.013470268808305264, 0.01596434786915779, -0.010785202495753765, -0.022064726799726486, -0.005875688511878252, 0.0019604351837188005, -0.019963860511779785, -0.013728664256632328, 0.013841010630130768, -0.001390982186421752, 0.03255783021450043, -0.012481625191867352, 0.02988399937748909, -0.039882782846689224, 0.00690927030518651, -0.03318696841597557, 0.03368128836154938, 0.007729395292699337, 0.026333870366215706, 0.02426670677959919, -0.030018813908100128, -0.006735134404152632, 0.016683360561728477, 0.011431191116571426, 0.016683360561728477, -0.032018572092056274, -0.0012140375329181552, 0.018930278718471527, -0.04433167725801468, 0.008976434357464314, 0.015840766951441765, -0.014548788778483868, 0.03788302466273308, -0.01969422958791256, 0.023615099489688873, -0.011071684770286083, -0.05122971162199974, -0.015694716945290565, 0.015998050570487976, -0.0029715481214225292, 0.022064726799726486, 0.0211996641010046, 0.017964104190468788, -0.01790793053805828, 0.01700916327536106, -0.004288803320378065, 0.011594093404710293, -0.016952991485595703, 0.01731249690055847, 0.016301384195685387, 0.03199610114097595, -0.00775186438113451, 0.01513298787176609, -1.2112288459320553e-05, 0.0027384303975850344, -0.041073646396398544, -0.014571258798241615, -0.016593484207987785, -0.005982417147606611, 0.02268262952566147, 0.0017638300778344274, 0.019357191398739815, 0.02658103033900261, 0.03413067385554314, -0.0123580452054739, 0.03280499204993248, -0.013470268808305264, -0.014425208792090416, 0.020503120496869087, -0.03318696841597557, -0.00014095894584897906, 0.03161412477493286, 0.009925756603479385, -0.007336184848099947, 0.01239174883812666, 0.006600319407880306, -0.06304849684238434, -0.034422773867845535, -0.01985151320695877, 0.01056612841784954, 0.00651605986058712, -0.049701809883117676, -0.03788302466273308, 0.022356826812028885, 0.00613970123231411, -0.023907199501991272, -0.01887410506606102, 0.01736867055296898, -0.03323190659284592, -0.0037354999221861362, -0.01691928692162037, 0.01924484595656395, 0.01386347971856594, -0.019986329600214958, 0.008976434357464314, -0.012256933376193047, -0.020166082307696342, -0.03125461935997009, 0.003474295837804675, -0.014436443336308002, -0.005007816944271326, -0.009594337083399296, -0.03010869026184082, -0.04125339910387993, -0.00649920804426074, -0.0033338635694235563, 0.009201126173138618, -0.005825133062899113, -0.023997075855731964, -0.0005206528585404158, -0.03619783744215965, -0.008869705721735954, -0.003022103803232312, -0.0016037372406572104, -0.037411171942949295, -0.01863817870616913, 0.023570161312818527, -0.022727567702531815, -0.04368007183074951, 0.018750524148344994, 0.02374991588294506, 0.04275883361697197, -0.022413000464439392, -0.020503120496869087, -0.018593240529298782, 0.011369401589035988, -0.029187455773353577, -0.010026868432760239, 0.004726951941847801, 0.017649535089731216, -0.027749428525567055, -0.029906468465924263, 0.012672613374888897, -0.042893651872873306, -0.006650874856859446, 0.019211143255233765, 0.007426061667501926, 0.030580542981624603, 0.01863817870616913, -0.011223351582884789, 0.02792918123304844, 0.005791429430246353, -0.009313471615314484, 0.006409331224858761, -0.014649900607764721, 0.037770677357912064, 0.00035757580189965665, 0.009038224816322327, 0.008583223447203636, 0.010139213874936104, -0.011037981137633324, 0.014986937865614891, -0.013526441529393196, 0.011172795668244362, 0.012886070646345615, 0.03100745752453804, -0.03107486478984356, 0.02104238048195839, 0.019143734127283096, -0.02067163959145546, 0.015301506035029888, 0.029704246670007706, -0.0026836618781089783, -0.0069542089477181435, -0.030355852097272873, 0.025120534002780914, -0.01284113246947527, -0.03601808473467827, 0.009083162993192673, -0.016222743317484856, -0.012043476104736328, -0.01564977876842022, 0.001724508940242231, 0.02330053225159645, -0.00022574496688321233, -0.021705221384763718, -0.0018312375759705901, -0.008622544817626476, 0.03974796459078789, -0.020840156823396683, -0.010498721152544022, -0.00899328663945198, 0.031883757561445236, -0.0009050863445736468, -0.024221768602728844, 0.007004764396697283, 0.02014361321926117, 0.014099406078457832, -0.0009212360600940883, 0.009201126173138618, -0.01587446965277195, 0.012436687014997005, -0.015368914231657982, -0.011245820671319962, 0.014537554234266281, 0.004330933094024658, -0.011683969758450985, 0.022671395912766457, 0.010442547500133514, 0.05257786437869072, 0.031029926612973213, 0.03127708658576012, 0.02232312224805355, 0.019435834139585495, 0.02912004664540291, -0.013335454277694225, -0.017256325110793114, -0.02291855588555336, 0.011683969758450985, 0.01426792424172163, 0.03734376281499863, -0.016368791460990906, 0.0064374180510640144, -0.021997319534420967, 0.015818297863006592, 0.07657493650913239, 0.007909148931503296, 0.042062290012836456, -0.024154361337423325, -0.008588841184973717, 0.022345591336488724, 0.010723412968218327, -0.009661744348704815, 0.04208476096391678, 0.010835758410394192, 0.030760297551751137, 0.014784715138375759, 0.014616196975111961, 0.027884243056178093, 0.014436443336308002, 0.02015484683215618, -0.03451265022158623, 0.035006970167160034, -0.003308585612103343, -0.012402983382344246, -0.06781196594238281, -0.0011283737840130925, -0.005628527607768774, 0.02110978774726391, 0.0091337189078331, -0.022424234077334404, -0.0013432352570816875, -0.02366003952920437, 0.037613395601511, -0.00531957671046257, 0.02792918123304844, -0.020199786871671677, 0.01354891061782837, -0.03714154288172722, -0.025030657649040222, -0.01407693699002266, -0.0013425330398604274, 0.0033113942481577396, -0.032400548458099365, 0.02801905758678913, 0.008212482556700706, 0.009296620264649391, 0.022559048607945442, 0.028063995763659477, -0.014492616057395935, -0.0075945802964270115, 0.032175853848457336, -0.001391684403643012, -0.010757116600871086, -0.0006621384527534246, 0.008072050288319588, 0.02158164046704769, 0.015672247856855392, -0.004061303101480007, 0.005035903304815292, -0.0005048541934229434, 0.022873617708683014, -0.009717917069792747, -0.006487973500043154, -0.03237807750701904, -0.009285385720431805, -0.013020885176956654, 0.037770677357912064, 0.031142273917794228, 0.00022170753800310194, -0.04089389368891716, -0.006510442588478327, 0.005926244426518679, 0.01775064691901207, -0.008352914825081825, 0.05370132252573967, 0.023952137678861618, 0.02965930849313736, 1.2287829122215044e-05, 0.0435677245259285, -0.003780438331887126, 0.006296985782682896, 0.04448896273970604, 0.015189160592854023, 0.02110978774726391, 0.005086458753794432, -0.029704246670007706, 0.04336550459265709, -0.001098882989026606, -0.00444047013297677, -0.0011192456586286426, 0.04448896273970604, -0.006218343507498503, -0.00864501390606165, 0.01354891061782837, 0.028940293937921524, 0.021143490448594093, -0.00454719876870513, 0.0015910982619971037, -0.017694473266601562, 0.018368547782301903, 0.009257298894226551, 0.024918312206864357, 0.012504094280302525, 0.041298337280750275, 0.06659862399101257, 0.007830506190657616, -0.015256567858159542, 0.018514597788453102, -0.023457815870642662, 0.0035725983325392008, 0.01516669150441885, 0.005724021699279547, 0.024154361337423325, 0.04478105902671814, -0.023188186809420586, 0.007544024847447872, 0.005813898518681526, 0.007381123024970293, 0.0035164253786206245, 0.021289540454745293, 0.011268289759755135, 0.0006217641057446599, -0.007296863943338394, -0.013650022447109222, -0.0008292528800666332, -0.013537676073610783, 0.016222743317484856, -0.016492372378706932, 0.007083406671881676, 0.026266463100910187, 0.018694352358579636, -0.01633508875966072, 0.026378808543086052, -0.03446771204471588, -0.017851756885647774, 0.01314446609467268, -0.027884243056178093, 0.0182674378156662, -0.03918623551726341, -0.01284113246947527, -0.02709782123565674, -0.008498964831233025, 0.0073249503038823605, 0.03197363391518593, -0.01547002512961626, 0.033726226538419724, -0.002595189493149519, -0.014739776961505413, 0.03604055196046829, -0.017177682369947433, -0.024603743106126785, 0.029007701203227043, 0.014324097894132137, -0.016312619671225548, 0.01993015594780445, 0.001349554629996419, -0.009903287515044212, -0.012571501545608044, -0.014166813343763351, 0.01663842238485813, 0.010465017519891262, 0.011886192485690117, 0.03152424842119217, -0.03608549013733864, -0.013582615181803703, 0.030153630301356316, 0.006881183944642544, 0.0020460989326238632, 0.004418001044541597, 0.04091636463999748, -0.0247160904109478, 0.01378483697772026, -0.03165906295180321, 0.02786177396774292, -0.050600577145814896, 0.04397217184305191, 0.039141297340393066, 0.01933472231030464, -0.004123093094676733, -0.010493103414773941, 0.038152653723955154, 0.007302481215447187, 0.01547002512961626, 0.025480041280388832, 0.026311401277780533, -0.019649291411042213, -0.00488704489544034, 0.010515572503209114, -0.032400548458099365, -0.009841497987508774, -0.0002559379208832979, 0.017885461449623108, -0.03417561203241348, -0.015773359686136246, 0.010274029336869717, -0.01303211972117424, 0.010279646143317223, 0.014245455153286457, -0.009768472984433174, -0.028266219422221184, -0.008678717538714409, -0.008021494373679161, -0.03745611011981964, 0.022671395912766457, 0.029749184846878052, -0.014009528793394566, 0.005080841481685638, 0.0018270246218889952, 0.025187943130731583, 0.014110640622675419, -0.0020671638194471598, 0.028198812156915665, 0.0061902571469545364, -0.040938831865787506, -0.010408843867480755, -0.02756967395544052, -0.006639640312641859, 0.015279036946594715, 0.02223324589431286, 0.023053370416164398, 0.05504947155714035, 0.008701186627149582, -0.026423746719956398, -0.0070777893997728825, 0.0065329116769135, 0.013121997006237507, 0.006684578955173492, -0.046106740832328796, 0.03123215027153492, -0.02239052951335907, -0.016941756010055542, 0.01940212957561016, 0.012155822478234768, 0.0034068883396685123, -0.021177195012569427, 0.033658821135759354, -0.023255594074726105, 0.0036737096961587667, 0.010684091597795486, 0.004740995354950428, -0.009998781606554985, -0.017132744193077087, -0.027749428525567055, 0.018885338678956032, -0.02118843048810959, 0.029906468465924263, -0.015335210599005222, 0.011341314762830734, 0.013223107904195786, -0.02404201403260231, 0.005853219423443079, -0.0188066978007555, 0.001464709173887968, -0.02186250500380993, -0.015975581482052803, -0.01961558684706688, -0.009150570258498192, 0.029457084834575653, 0.009959460236132145, -0.03520919382572174, 0.009914522059261799, -0.0005108225741423666, 0.0019000493921339512, -0.01025717705488205, 0.0021163150668144226, -0.044826000928878784, -0.008116988465189934, -0.02500818856060505, 0.02307583950459957, 0.04799415171146393, 0.045500073581933975, 0.00690927030518651, -0.008751742541790009, 0.0016262063290923834, 0.017784349620342255, 0.03347906842827797, -0.018705585971474648, -0.027367452159523964, -0.035388946533203125, 0.014357801526784897, -0.0043365503661334515, 0.017559658735990524, 0.007178900763392448, -0.048803042620420456, 0.031726472079753876, 0.0356585755944252, -0.030805235728621483, -0.010953721590340137, -0.00947075616568327, -0.024828435853123665, -0.03141190484166145, -0.023278063163161278, -0.007055320311337709, 0.004696057178080082, 0.00872365664690733, 0.0038731235545128584, 0.01661595329642296, 0.017582127824425697, -0.020772749558091164, 0.012796193361282349, 0.0022932598367333412, -0.00490670558065176, -0.009274151176214218, 0.03408573567867279, 0.0004946728586219251, -0.005954330787062645, 0.03961315006017685, 0.04021981731057167, 0.027884243056178093, 0.016042988747358322, 0.010049337521195412, -0.006083528511226177, 0.02104238048195839, -0.017885461449623108, 0.0041315192356705666, -0.024401521310210228, -0.03446771204471588, -0.0005691020051017404, -0.007622666656970978, -0.033591412007808685, 0.052982307970523834, 0.02366003952920437, -0.005443157162517309, 0.017346201464533806, 0.027884243056178093, 0.012470390647649765, -0.01671706512570381, -0.0063812448643147945, 0.005117353983223438, 0.009088779799640179, 0.008156309835612774, -0.025367695838212967, -0.008218100294470787, 0.007313715759664774, -0.016795706003904343, 0.0004511388542596251, 0.0016936138272285461, -0.001880388823337853, -0.01066723931580782, 0.000732354586943984, -0.003811333328485489, -0.005061181262135506, 0.010161682963371277, 0.02568226493895054, -0.0002038024103967473, -0.06039713695645332, -0.013245576992630959, -0.012402983382344246, -0.016132865101099014, 0.015908174216747284, -0.009111249819397926, -0.028041526675224304, 0.0423993282020092, -0.010302115231752396, -0.03377116471529007, 0.03019856847822666, 0.042511675506830215, 0.012301871553063393, 0.026109177619218826, 0.04606180265545845, 0.03900648280978203, -0.029232393950223923, -0.00966736115515232, -0.0076170493848621845, 0.01564977876842022, -0.02772695943713188, 0.0016641230322420597, 0.01603175513446331, -0.021929912269115448, 0.005266212392598391, -0.009425817988812923, 0.011998537927865982, 0.02455880492925644, 0.025210412219166756, -0.005937478970736265, 0.04066920280456543, -0.020626699551939964, -0.022109664976596832, 0.00206014234572649, -0.05100502073764801, -0.007982173934578896, 0.013189404271543026, -0.03107486478984356, -0.004763464443385601, -0.04799415171146393, 0.06498084962368011, -0.03700672835111618, -0.00780803756788373, 0.02081768773496151, -0.007566493935883045, -0.01090316567569971, 0.006038590334355831, 0.0002529537305235863, 0.015211629681289196, 0.04597192630171776, 0.03547882288694382, -0.021255837753415108, 0.013256811536848545, 0.0004880023479927331, 0.04066920280456543, 0.04740995541214943, -0.014751011505723, 0.016144100576639175, 0.0014843697426840663, -0.017110275104641914, -0.013571380637586117, 0.019570648670196533, 0.0413208082318306, -0.024356583133339882, -0.023704977706074715, 0.002568507334217429, -0.026603499427437782, -0.05019612982869148, -0.010627918876707554, -0.002016608137637377, -0.006341923959553242, 0.043253157287836075, 0.03325437381863594, 0.0018424721201881766, -0.02321065589785576, -0.0028353286907076836, 0.03161412477493286, -0.004266334231942892, -0.006431800778955221, 0.0007976556080393493, -0.013661256991326809, 0.014481381513178349, -0.014425208792090416, -0.0012477412819862366, 0.019514476880431175, 0.0004637777747120708, 0.01977287232875824, -0.013650022447109222, 0.002520760288462043, 0.013874714262783527, -0.01381854061037302, 0.0030052517540752888, 0.015672247856855392, -0.006291368510574102, 0.015076815150678158, -0.008004643023014069, 0.022120900452136993, -0.039365991950035095, 0.0038731235545128584, -0.005589206703007221, 0.008375383913516998, -0.006128466688096523, -0.06120602414011955, -0.009925756603479385, 0.023727446794509888, 0.016503607854247093, -0.025884486734867096, 0.005903774872422218, -0.025120534002780914, -0.0356585755944252, -0.013043354265391827, -0.009083162993192673, 0.04952205717563629, -0.015818297863006592, 0.005499329883605242, -0.01596434786915779, -0.013841010630130768, -0.024154361337423325, 0.021165959537029266, -0.0029771653935313225, 0.00868433527648449, 0.018548302352428436, -0.00865063164383173, 0.002951887436211109, -0.026985475793480873, 0.0017048484878614545, 0.01887410506606102, -0.02876054123044014, -0.024536335840821266, -0.02523288130760193, 0.005417879205197096, -0.012234464287757874, 0.03215338662266731, -0.009897670708596706, -0.000393561611417681, 0.004766273312270641, -0.0012940838932991028, 0.019503241404891014, 0.02478349767625332, 0.015896938741207123, -0.009526928886771202, -0.02110978774726391, -0.005038711708039045, -0.027277575805783272, -0.05244304984807968, 0.034782279282808304, 0.0381975919008255, -0.0024238619953393936, 0.005521798972040415, 0.02615411765873432, -0.0036961787845939398, -0.021828800439834595, 0.025502510368824005, -0.003446209244430065, 0.017211386933922768, -0.006077911239117384, -0.007156431209295988, 0.01011674478650093, -0.05019612982869148, -0.007656370289623737, -0.011560388840734959, 0.0018986450741067529, -0.005465626250952482, 0.040848955512046814, -0.01978410594165325, -0.033007215708494186, -0.025817079469561577, -0.021255837753415108, 0.004005129914730787, -0.011071684770286083, 0.031951162964105606, -0.010650387965142727, 0.0075721112079918385, -0.01149859931319952, -0.01179631520062685, -0.014178047887980938, -0.012043476104736328, -0.03642252832651138, 0.03350153565406799, -0.008105753920972347, 0.015290271490812302, -0.011549154296517372, 0.006032972596585751, -0.0033142028842121363, -0.036961790174245834, 0.01857077144086361, 0.03768080100417137, -0.021469295024871826, 0.024536335840821266, 0.027592143043875694, -0.0471852608025074, 0.007847358472645283, -0.04471365362405777, 0.026558561250567436, 0.006937357131391764, -0.010925634764134884, 0.007656370289623737, 0.012021007016301155, -0.04736501723527908, 0.023997075855731964, 0.02323312498629093, -0.009914522059261799, 0.008100137114524841, 0.005541459657251835, -0.013503972440958023, -0.012402983382344246, 0.00042305237730033696, 0.009661744348704815, 0.026625968515872955, 0.0323331393301487, 0.03347906842827797, -0.0065048253163695335, 0.019873982295393944, -0.014391505159437656, 0.009521312080323696, -0.011307611130177975, 0.012796193361282349, 0.004934791941195726, 0.005976799875497818, 0.03698425740003586, 0.01190866157412529, 0.06565491855144501, 0.015481259673833847, -0.012167057022452354, 0.004611797630786896, -0.0018087683711200953, -0.06241936236619949, 0.008678717538714409, 0.013290515169501305, -0.02936720848083496, -0.007982173934578896, 0.031052395701408386, 0.010240325704216957, -0.012953477911651134, 0.0012470390647649765, -0.014537554234266281, 0.004429235588759184, -0.02172769047319889, -0.002124741207808256, 0.0038338026497513056, 0.002878862665966153, 0.002619063016027212, 0.023929668590426445, 0.01776188053190708, 0.03316449746489525, -0.012470390647649765, 0.020615465939044952, 0.0054937126114964485, 0.0882139727473259, -0.02052558958530426, -0.004291611723601818, 0.013414096087217331, -0.04920748621225357, 0.007914765737950802, 0.004308464005589485, 0.010195386596024036, 0.004507877863943577, -0.03817512467503548, 0.005628527607768774, -0.02307583950459957, -0.05181391164660454, -0.011032363399863243, 0.016290150582790375, -0.018334845080971718, 0.02532275766134262, 0.013852245174348354, -0.0008201248128898442, -0.01849212870001793, 0.021525466814637184, 0.009633657522499561, 0.02860325574874878, -0.012223229743540287, -0.05639762431383133, 0.0004356912977527827, -0.002232874045148492, 0.03267017751932144, 0.024289175868034363, 0.04388229548931122, 0.025367695838212967, 0.01314446609467268, -0.0016767620109021664, 0.030153630301356316, 0.04592698812484741, -0.028221281245350838, 0.01609916239976883, -0.00970106478780508, -0.004682013764977455, 0.0013305962784215808, 0.019379660487174988, 0.0014534746296703815, 0.00531957671046257, -0.024019544944167137, 0.037051666527986526, 0.015346445143222809, 0.012886070646345615, 0.05518428608775139, -0.011200882494449615, -0.019795341417193413, 0.026558561250567436, -0.030018813908100128, 0.021750159561634064, -0.005948713514953852, -0.01962682232260704, 0.058689478784799576, -0.006858714856207371, -0.046241555362939835, -0.021165959537029266, 0.022716334089636803, 0.012481625191867352, -0.033748697489500046, -0.01693052053451538, 0.024086952209472656, 0.021165959537029266], [-0.004350055940449238, -0.030677827075123787, 0.03694237023591995, 0.030862078070640564, 0.01271333359181881, -0.014014608226716518, 0.007416111417114735, 0.008147358894348145, 0.060572586953639984, -0.025887295603752136, 0.007715519517660141, 0.017365677282214165, -0.06923239678144455, -0.02706189826130867, 0.042585063725709915, 0.02756858803331852, -0.010652023367583752, 0.015534680336713791, 0.005184944253414869, 0.012333315797150135, -0.01460190862417221, -0.02489694580435753, 0.017342645674943924, 0.03231305629014969, -0.0213155634701252, 0.02206408418715, 0.019046969711780548, -0.036228395998477936, 0.04134136810898781, -0.05490686371922493, 0.003129391698166728, -0.022202271968126297, 0.007997654378414154, -0.039406727999448776, 0.03553745523095131, -0.008112811483442783, -0.03360281512141228, 0.00702457781881094, -0.0028861225582659245, 0.007041851058602333, -0.08351186662912369, 0.00934499129652977, -0.0033971318043768406, -0.023135043680667877, -0.03180636465549469, 0.027223117649555206, 0.022743510082364082, 0.013864903710782528, 0.0196688175201416, 0.04410513490438461, 0.05375529080629349, 0.0330500602722168, -0.002497467678040266, 0.018528763204813004, 0.022593805566430092, -0.003805939108133316, 0.045717332512140274, 0.027937090024352074, 0.0023247322533279657, 0.0036879032850265503, 0.017826305702328682, -0.0199221633374691, -0.0011522897984832525, -0.004482486750930548, 0.014889801852405071, -0.019703363999724388, 0.02867409586906433, 0.04428938776254654, -0.02888137847185135, 0.030977236106991768, -0.0009673188906162977, 0.06927845627069473, 0.019553661346435547, -0.006535160355269909, 0.0027148264925926924, 0.014337047934532166, -0.003661992959678173, -0.05140608921647072, 0.04108802229166031, 0.048642322421073914, -0.04065042361617088, 0.04051223769783974, -0.0466616190969944, 0.00968470424413681, 0.007467932067811489, 0.024459348991513252, -0.011429333128035069, -0.031184518709778786, -0.03613626956939697, -0.03526107594370842, -0.02680855244398117, -0.00024452872457914054, 0.0504387691617012, -0.012241190299391747, -0.03129967674612999, -0.013035773299634457, -0.027453431859612465, 0.019231220707297325, -0.03132270649075508, 0.045463986694812775, 0.038877006620168686, 0.03818606585264206, 0.018356027081608772, 0.03021720051765442, -0.025104228407144547, -0.026417018845677376, -0.02918078564107418, 0.029848696663975716, -0.003595777554437518, 0.035376232117414474, 0.0005102895083837211, -0.010231700725853443, -0.028259530663490295, 0.030148105695843697, 0.0008392067393288016, -0.03526107594370842, -0.00475310580804944, 0.004960388410836458, -0.009719251655042171, -0.002241243375465274, 0.0010227381717413664, 0.004442181903868914, 0.040212828665971756, -0.045717332512140274, 0.015500133857131004, -0.022110145539045334, -0.009897745214402676, 0.022340459749102592, 0.01596076227724552, -0.004226262215524912, 0.029779603704810143, -0.004666737746447325, 0.04827382043004036, -0.07241072505712509, -0.024505412206053734, -0.029618382453918457, 0.027637682855129242, 0.021476782858371735, -0.0020022925455123186, -0.04447363689541817, 0.03477741777896881, 0.01272484939545393, 0.07554300129413605, 0.0297565720975399, -0.0016309111379086971, 0.013024257495999336, 0.031138455495238304, 0.05513717606663704, -0.013220025226473808, 0.015154662542045116, 0.002110252156853676, -0.009275897406041622, -0.006494855508208275, -0.0018295570043846965, 0.040742550045251846, -0.017411740496754646, 0.0017374313902109861, 0.05311041325330734, -0.03268155828118324, -0.008631017990410328, -0.03316522017121315, 0.015431039035320282, 0.008135843090713024, -0.013887935318052769, -0.00630484614521265, 0.02118889056146145, -0.0052597965113818645, -0.02494300901889801, -0.059789519757032394, -0.04562520608305931, -0.05214309319853783, -0.035629577934741974, 0.032197900116443634, -0.06467217952013016, -0.006546676158905029, -0.0421244353055954, 0.008014927618205547, 0.02227136678993702, -0.05002420395612717, -0.003068934427574277, 0.031230581924319267, -0.014509783126413822, -0.03931460529565811, -0.024459348991513252, 0.01028927881270647, -0.02166103385388851, -0.000238051128690131, 0.05007026717066765, 0.0010119422804564238, -0.01692808046936989, 0.0032934905029833317, -0.0015531801618635654, 0.01271333359181881, 0.024735726416110992, 0.009126192890107632, 0.0008190542575903237, 0.017331130802631378, 0.005559204611927271, 0.01098597887903452, -0.021499814465641975, -0.024989072233438492, 0.003005597973242402, 0.02310049720108509, 0.00017102615674957633, -0.014314016327261925, -0.01682443916797638, 0.02673945762217045, -0.0128630381077528, 0.039360664784908295, 0.017826305702328682, -0.00283718085847795, 0.012287252582609653, 0.00040520873153582215, -0.0047847735695540905, -0.01813722960650921, 0.01193026639521122, 0.050300583243370056, 0.014763128943741322, -0.00244996533729136, -0.027499495074152946, -0.021879831328988075, 0.03044751286506653, 0.019841553643345833, -0.023676281794905663, -0.0368272103369236, -0.031967587769031525, -0.0595131441950798, 0.00875193253159523, 0.008815268985927105, -0.01854027807712555, -0.0330500602722168, 0.02100463956594467, -0.046569496393203735, -0.07637213170528412, -0.030125074088573456, -0.001842512167058885, 0.04451970010995865, -0.019553661346435547, -0.010030175559222698, -0.058499760925769806, 0.0395909808576107, 0.0360671766102314, 0.026992803439497948, 0.031967587769031525, 0.02441328577697277, -0.011095377616584301, 0.002576638013124466, -0.013738231733441353, 0.0252193845808506, -0.061954472213983536, -0.0033769793808460236, 0.0059824069030582905, -0.01497041154652834, -0.04028192162513733, 0.0055476888082921505, 0.022593805566430092, 0.01642138883471489, 0.041525617241859436, 0.0499320812523365, 0.0086367754265666, 0.007185797672718763, 0.032796718180179596, -0.04873444512486458, 0.0025464093778282404, -0.036735087633132935, -0.014014608226716518, -0.014014608226716518, 0.009592578746378422, -0.041732899844646454, -0.006846084259450436, -0.08489374816417694, 0.01854027807712555, 0.021730128675699234, -0.018954843282699585, -0.021937411278486252, -0.013369728811085224, 0.023768406361341476, 0.015465586446225643, -0.046845871955156326, 0.0673438161611557, 0.0032416698522865772, 0.02057855762541294, 0.010767180472612381, -0.020382791757583618, -0.03208274394273758, 0.012494536116719246, 0.024090847000479698, 0.045717332512140274, 0.02360718697309494, -0.012494536116719246, 0.013876419514417648, -0.009091646410524845, 0.0398443266749382, -0.03334946930408478, 0.03664296120405197, 0.0006459588767029345, -0.023572640493512154, 0.03309612348675728, -0.007087913807481527, -0.01879362389445305, -0.003339553251862526, -0.00044047556002624333, -0.00018209202971775085, -0.06665287911891937, -0.00445081852376461, 0.07402292639017105, -0.0023132164496928453, 0.012436957098543644, 0.02860500104725361, 0.019334862008690834, 0.04316084831953049, 0.008797995746135712, -0.022282881662249565, -0.006788505706936121, -0.0673438161611557, 0.029318975284695625, 0.01987610012292862, 0.006241510156542063, 0.009362264536321163, -0.05034664645791054, 0.05007026717066765, -0.008861332200467587, 0.02676248922944069, -0.0953500047326088, 0.010962947271764278, -0.006661833263933659, 0.02731524221599102, 0.04403604194521904, -0.01813722960650921, -0.029318975284695625, -0.038301222026348114, 0.02299685589969158, 0.02948019467294216, -0.027614651247859, -0.026578238233923912, -0.045786429196596146, -0.009310443885624409, 0.004531428217887878, -0.05020845681428909, -0.004548701923340559, 0.0031581809744238853, -0.02027915045619011, -0.006074532400816679, -0.006500613410025835, -0.007594604976475239, 0.00427520414814353, 0.01654806174337864, -0.0027234633453190327, -0.026877645403146744, 0.020163992419838905, -0.014440689235925674, -0.015154662542045116, 0.022731993347406387, -0.028282562270760536, -0.031069360673427582, -0.036988433450460434, 0.0643036738038063, -0.03763331100344658, -0.012598177418112755, 0.0045717335306108, -0.007738551124930382, 0.026923708617687225, 0.009270139038562775, 0.05085333436727524, -0.014613424427807331, -0.005176307633519173, 0.00027835607761517167, 0.014820707030594349, 0.0024686784017831087, -0.009540758095681667, 0.015949245542287827, -0.026877645403146744, 0.001733112963847816, -0.03519198298454285, -0.017308099195361137, 0.02971050888299942, 0.022386522963643074, -0.012252706103026867, 0.0076233940199017525, 0.0022945033852010965, 0.023273231461644173, -0.03079298511147499, -0.03417859971523285, 0.023538092151284218, 0.021327078342437744, -0.0013509356649592519, -0.008970730938017368, 0.020544011145830154, -0.019415471702814102, -0.024505412206053734, 0.028236499056220055, 0.01122205052524805, 0.03387919440865517, -0.02966444566845894, -0.021131310611963272, -0.0034201631788164377, 0.05656512454152107, 0.019691849127411842, 0.002897638361901045, -0.027476463466882706, -0.02197195775806904, -0.03721874579787254, 0.009068614803254604, -0.027407368645071983, 0.03371797129511833, -0.017043238505721092, -0.014786160551011562, -0.017181426286697388, 0.05495292693376541, 0.02568001300096512, -0.001946153468452394, 0.0009234152967110276, 0.01843663677573204, -0.008510103449225426, 0.03021720051765442, -0.02994082309305668, 0.035928986966609955, -0.01627168618142605, -0.020440369844436646, -0.023768406361341476, -0.03076995350420475, 0.014889801852405071, -0.05799306929111481, 0.0002223969786427915, 0.004004585091024637, 0.0022714720107614994, -0.018379058688879013, -0.03155302256345749, 0.0019519113702699542, -0.036412645131349564, -0.014797675423324108, 0.0348004475235939, 0.07236466556787491, 0.05172852799296379, -0.029088661074638367, 0.0004807805235031992, 0.00010031255078502, 0.0016424268251284957, 0.021223437041044235, 0.017895398661494255, 0.09143466502428055, -0.026094578206539154, -0.00012460348079912364, -0.00798038113862276, -0.022616837173700333, -0.0796886533498764, 0.0009637202601879835, 0.0005980966961942613, 0.0428844690322876, -0.03051660768687725, 0.05214309319853783, 0.03360281512141228, 0.011521458625793457, -0.07227253913879395, -0.0620465986430645, -0.017619023099541664, -0.00967318844050169, -0.05859188735485077, -0.005988164339214563, -0.0065927389077842236, -0.028443781659007072, -0.0203021802008152, 0.019783973693847656, -0.008924668654799461, 0.02161497063934803, 0.013139414601027966, 0.027775870636105537, -0.010093512013554573, -0.02570304460823536, -0.0232041385024786, 0.04776712879538536, 0.011417817324399948, 0.009195287711918354, 0.003028629347681999, 0.03440891578793526, 0.03148392587900162, 0.014682519249618053, 0.01132569182664156, -0.0039038227405399084, -0.008642533794045448, -8.641274325782433e-05, -0.025587888434529305, -0.05854582414031029, -0.0018079651053994894, 0.0610332153737545, 0.05932889133691788, 0.02577213943004608, -0.025795171037316322, -0.006183931604027748, -0.042562030255794525, -0.05808519572019577, -0.0029912034515291452, -0.024850882589817047, -0.010041691362857819, 0.021545875817537308, 0.01180359348654747, -0.008003411814570427, -0.006615770049393177, 0.013761262409389019, -0.03638961538672447, 0.015465586446225643, -0.006759716663509607, 0.008815268985927105, 0.013611558824777603, 0.038623660802841187, 0.003112118225544691, -0.006869115866720676, 0.01581105776131153, -0.06540918350219727, -0.02913472428917885, -0.041755933314561844, 0.00199509528465569, -0.011181745678186417, 0.009373780339956284, -0.036965399980545044, -0.04456576332449913, 0.02996385470032692, 0.019783973693847656, 0.0016798528376966715, 0.017918430268764496, 0.0032647012267261744, 0.03952188789844513, -0.034063443541526794, -0.005864370614290237, 0.017849337309598923, 0.015592259354889393, 0.0177802424877882, -0.03615930303931236, 0.014440689235925674, -0.020647652447223663, -0.01574196293950081, -0.013427307829260826, -0.08268273621797562, -0.042515967041254044, -0.022858666256070137, 0.01485525444149971, -0.006241510156542063, 0.010105027817189693, -0.018390575423836708, 0.0365738682448864, 0.030171137303113937, 0.004632190801203251, -0.004237778019160032, 0.02413691021502018, 0.005346164107322693, -0.029042597860097885, 0.03452407196164131, -0.02703886665403843, -0.006920936517417431, -0.012644239701330662, 0.03401738032698631, -0.0024600415490567684, -0.0020152477081865072, -0.041249241679906845, -0.03450104221701622, 0.028812283650040627, 0.028858346864581108, 0.019657302647829056, -0.010565655305981636, 0.028558937832713127, 0.0005365596734918654, 0.023722345009446144, 0.014187343418598175, -0.0015531801618635654, -0.013623074628412724, 0.01997974142432213, -0.025288479402661324, 0.009638641960918903, -0.0030343872494995594, -0.018448153510689735, -0.03367190808057785, 0.020900998264551163, 0.04933326318860054, 0.016916565597057343, 0.029111692681908607, 0.009293170645833015, 0.02915775589644909, 0.0348004475235939, -8.942661952460185e-05, 0.018425121903419495, 0.010485045611858368, 0.016352295875549316, 0.009632883593440056, -0.011170229874551296, -0.04426635429263115, 0.0012645679526031017, -0.00015681146760471165, -0.005115850362926722, -0.03284277766942978, 0.012598177418112755, 0.0002664805215317756, 0.015246788039803505, 0.01856330968439579, -0.021177373826503754, -0.04348328709602356, 0.022616837173700333, 0.027914060279726982, -0.009379538707435131, -0.03687327355146408, 0.014555846340954304, -0.04295356571674347, -0.004511275794357061, 0.01926576718688011, 0.056104496121406555, -0.030171137303113937, -0.0035065310075879097, -0.007300954312086105, 0.012390894815325737, -0.013438822701573372, 0.019415471702814102, -0.0003316162037663162, 0.00491144647821784, 0.012114517390727997, -0.020866449922323227, -0.01767660118639469, 0.04217049852013588, -0.014901316724717617, -0.024781789630651474, -0.0015978035517036915, 0.004845231305807829, 0.0022239696700125933, -0.03180636465549469, -0.001055126078426838, 0.00367926643230021, -0.027798902243375778, 0.015281335450708866, -0.009178013540804386, -0.04405907168984413, 0.02386053279042244, -0.010824758559465408, -0.023445967584848404, -0.0008780722273513675, 0.012897585518658161, -0.021096764132380486, -0.059835582971572876, 0.009759556502103806, -0.02627882920205593, 0.004908567760139704, 0.029295943677425385, 0.011884203180670738, 0.04544095695018768, -0.035652611404657364, 0.022870182991027832, -0.031967587769031525, 0.03100026771426201, -0.00014115730300545692, -0.039429761469364166, -0.006961241364479065, 0.020877966657280922, -0.009362264536321163, 0.029894759878516197, 0.03765634074807167, -0.005277070216834545, 0.03447800874710083, -0.0008802313823252916, 0.00795734953135252, 0.009592578746378422, -0.012275737710297108, -0.015419524163007736, 0.01073263306170702, 0.00702457781881094, -0.027660714462399483, 0.01873604580760002, -0.02733827382326126, 0.017388708889484406, 0.004295356571674347, 0.035422295331954956, -0.041801996529102325, 0.008135843090713024, -0.008941941894590855, -0.0023995842784643173, 0.012298768386244774, 0.03049357607960701, -0.03917641565203667, -0.039383698254823685, 0.013150930404663086, -0.031691208481788635, 0.014394626021385193, -0.005824065767228603, 0.01790691539645195, -0.003964280243963003, -0.010035933926701546, -0.0023995842784643173, 0.025933358818292618, 0.025334542617201805, 0.026117609813809395, 0.05642693489789963, -0.020233087241649628, 0.011964813806116581, 0.0529722236096859, 0.020106414332985878, 0.029848696663975716, -0.04392088204622269, -0.009114677086472511, 0.04194018244743347, -0.034915607422590256, 0.004701285157352686, -0.0014329850673675537, -0.03364887833595276, 0.018655436113476753, -0.015177694149315357, -0.0069497255608439445, -0.01366913691163063, -0.028029216453433037, -0.03825515881180763, 0.030194168910384178, 0.0009457269334234297, -0.015569227747619152, 0.04580945894122124, 0.0064315190538764, -0.016375327482819557, -0.011659647338092327, -0.016202591359615326, -0.0036965401377528906, -0.00015717132191639394, 0.031967587769031525, 0.019426988437771797, 0.02100463956594467, -0.002101615536957979, -0.018045103177428246, 0.0189202968031168, -0.001501359511166811, -0.041548650711774826, -0.023929627612233162, -0.014429173432290554, 0.0021260862704366446, 0.01758447475731373, -0.028535908088088036, 0.010128059424459934, 0.037310872226953506, 0.0128630381077528, -0.0037368449848145247, -0.00338561600074172, -0.015523165464401245, 0.004396118689328432, 0.01574196293950081, -0.011705710552632809, 0.0015574985882267356, -0.0039729168638587, -0.005849976092576981, -0.005469957832247019, -0.004692648071795702, -0.004540065303444862, -0.05412379652261734, -0.009425600990653038, -0.043874822556972504, 0.016455937176942825, 0.019357893615961075, -0.026854615658521652, -0.027430400252342224, 0.0033712214790284634, 0.0065524340607225895, -0.014014608226716518, -0.012655755504965782, 0.021672548726201057, -0.026578238233923912, 0.0171468798071146, -0.01288606971502304, 0.024758758023381233, 0.016640188172459602, -0.011659647338092327, 0.0015992430271580815, 0.008855573832988739, -0.0028443781193345785, 0.01985306851565838, 0.00037569974665530026, -0.04721437394618988, -0.0021865437738597393, -0.03498470038175583, -0.006972757168114185, 0.002791118109598756, -0.015281335450708866, 0.0057808817364275455, -0.008671322837471962, 0.0025680013932287693, -0.012690302915871143, 0.00655819196254015, -0.02496604062616825, 0.0069785150699317455, -0.03450104221701622, 0.005354801192879677, -0.019288798794150352, 0.0031553020235151052, 0.017492350190877914, -0.010646265931427479, -0.08249848335981369, 0.007456416264176369, 0.02360718697309494, 0.020601589232683182, -0.01936940848827362, -0.030839048326015472, -0.03136876970529556, 0.007041851058602333, -0.012448472902178764, -0.024067815393209457, 0.011429333128035069, -0.00537783233448863, -0.011987844482064247, -0.021557392552495003, 0.0119187505915761, -0.030148105695843697, -0.024229034781455994, 0.0015402249991893768, 0.004180199466645718, 0.025610920041799545, 0.012966679409146309, -0.027706777676939964, 0.0150049589574337, -0.005435410887002945, -0.006039984989911318, 0.0150049589574337, -0.01642138883471489, 0.034846510738134384, -0.004361571744084358, 0.002306019188836217, 0.017722664400935173, -0.020693715661764145, -0.003002719022333622, 0.005251159891486168, 0.0012868796475231647, 0.021983472630381584, 0.013588527217507362, 0.028558937832713127, -0.02148829773068428, 0.018747560679912567, 0.019334862008690834, -0.01858634129166603, -2.4448372641927563e-05, 0.014129765331745148, -0.004076558165252209, 0.0022182120010256767, -0.018874233588576317, 0.028858346864581108, -0.012529082596302032, -0.005438289605081081, 0.007565815467387438, -0.0210622176527977, -0.005887402221560478, -0.029848696663975716, 0.01053110882639885, 0.035399265587329865, -0.010450499132275581, -0.019035452976822853, 0.0006204083911143243, -0.0035180465783923864, 0.06301391869783401, -0.012678787112236023, -0.0049862987361848354, -0.02070523053407669, 0.036412645131349564, 0.006132110953330994, -0.010237458162009716, 0.014337047934532166, 0.03390222415328026, 0.002216772409155965, -0.01206845510751009, 0.021695580333471298, 0.019783973693847656, 0.0057808817364275455, -0.0456482395529747, 0.014187343418598175, -0.001943274517543614, 0.009730767458677292, -0.003828970715403557, 0.020820386707782745, 0.013461854308843613, 0.04297659546136856, 0.0252193845808506, 0.0297565720975399, 0.016283201053738594, 0.02489694580435753, 0.00994956586509943, 0.005544810090214014, -0.022962307557463646, -0.016386842355132103, 0.028789252042770386, 0.002876046346500516, 0.026463080197572708, 0.0060227117501199245, 0.012667271308600903, -0.01131417602300644, 0.039660073816776276, 0.08480162173509598, 0.012103001587092876, 0.02390659600496292, -0.024781789630651474, -0.01568438485264778, 0.0235841553658247, 0.02436722256243229, -0.010669296607375145, 0.03245124593377113, 0.008498587645590305, 0.0038836700841784477, 0.018632404506206512, 0.003656235057860613, 0.022328944876790047, 0.011383270844817162, -0.012333315797150135, -0.01027776300907135, 0.009108919650316238, 0.0009953883709385991, -0.016306232661008835, -0.07651031762361526, -0.027729807421565056, 0.0013185477582737803, 0.02918078564107418, -0.01568438485264778, -0.016732312738895416, -0.0010414512362331152, -0.023768406361341476, 0.02971050888299942, 0.012494536116719246, 0.02888137847185135, -0.030885109677910805, 0.0342937596142292, -0.0029912034515291452, -0.04739862680435181, -0.00936802290380001, 0.021925894543528557, 0.004203231073915958, -0.032197900116443634, 0.010156848467886448, 0.024067815393209457, 0.014636456035077572, -0.028190435841679573, -0.0175268966704607, -0.02680855244398117, 0.013496401719748974, 0.02436722256243229, 0.006776989903301001, -0.0020454763434827328, 0.03286581113934517, 0.01873604580760002, 0.031714241951704025, 0.010634750127792358, -0.00199221633374691, -0.017434772104024887, 0.006299088709056377, 0.034846510738134384, -0.02602548524737358, 0.017239004373550415, -0.04739862680435181, -0.005415258463472128, 0.0017950099427253008, 0.017619023099541664, 0.0011091060005128384, 0.005602388642728329, -0.03150695934891701, 0.017434772104024887, 0.0088901212438941, 0.030079010874032974, -0.0035813830327242613, 0.047628939151763916, 0.03705752640962601, 0.025841232389211655, 0.017688116058707237, 0.051083650439977646, 0.00034745028824545443, -0.00014448606816586107, 0.018655436113476753, 0.014751613140106201, 0.02676248922944069, 0.017561445012688637, -0.015166178345680237, 0.02305443398654461, -0.011849656701087952, 0.0069785150699317455, -0.006299088709056377, 0.025334542617201805, -0.022835634648799896, -0.012678787112236023, -0.014763128943741322, 0.014003092423081398, 0.014152796939015388, 0.009517726488411427, 0.025265447795391083, -0.02254774235188961, 0.012298768386244774, 0.021580424159765244, 0.03258943557739258, 0.017814788967370987, 0.05670331045985222, 0.04343722388148308, 0.01404915563762188, -0.0034806206822395325, 0.008089779876172543, -0.011596310883760452, -0.020567042753100395, 0.027660714462399483, 0.02045188471674919, -0.007283681072294712, 0.05932889133691788, -0.014371595345437527, 0.025081196799874306, 0.008176147937774658, -0.0015978035517036915, 0.004586128052324057, 0.014498267322778702, 0.0322900265455246, -0.010174121707677841, -0.018229354172945023, -0.004229141399264336, 0.028766220435500145, -0.015442554838955402, -0.0077673401683568954, -0.025127260014414787, 0.015845604240894318, 0.02257077395915985, 0.008746175095438957, -0.036205362528562546, 0.049149010330438614, -0.029618382453918457, -0.017515381798148155, 0.034593164920806885, -0.01102052628993988, 0.025841232389211655, -0.031714241951704025, -0.01959972269833088, -0.022536227479577065, 0.025864263996481895, 0.021269500255584717, 0.020417338237166405, -0.0156383216381073, 0.07508236914873123, 0.0014322652714326978, -0.01089385338127613, 0.04320691153407097, 0.01758447475731373, -0.024482380598783493, 0.0358138307929039, 0.02706189826130867, -0.028167404234409332, 0.013496401719748974, 0.002680279314517975, -0.015880152583122253, -0.016283201053738594, -0.005539052188396454, -0.008884363807737827, 0.004885536152869463, 0.01939244009554386, 0.02443631738424301, -0.031460896134376526, -0.022812603041529655, 0.01788388378918171, -0.018482699990272522, -0.005867249798029661, 0.011751772835850716, 0.01881665550172329, -0.031092392280697823, 0.029549289494752884, -0.028190435841679573, 0.0055563258938491344, -0.03072389028966427, 0.05863795056939125, 0.038047876209020615, 0.03528410941362381, 0.012287252582609653, -0.023722345009446144, 0.0476750023663044, -0.006995788309723139, 0.00014727501547895372, 0.03689630702137947, 0.030631765723228455, -0.03231305629014969, -0.009909261018037796, 0.0009320520330220461, 0.021960441023111343, -0.022743510082364082, 0.006621527951210737, 0.0119187505915761, -0.03242821246385574, -0.024873914197087288, 0.023572640493512154, 0.012402409687638283, 0.00992653425782919, 0.011101135984063148, -0.028512876480817795, -0.022639868780970573, 0.015488618053495884, -0.001460334868170321, -0.01873604580760002, 0.030977236106991768, 0.02464359998703003, -0.0189202968031168, -0.01284000650048256, -0.006460308097302914, 0.018724529072642326, 0.010824758559465408, -0.006368182599544525, 0.04106498882174492, 0.0403510183095932, -0.041755933314561844, -0.0016913686413317919, -0.02570304460823536, 0.0026558085810393095, -0.010312310419976711, 0.023169590160250664, 0.006287572905421257, 0.0342937596142292, -5.951278217253275e-05, -0.02176467515528202, -0.00921831838786602, 0.005593752022832632, -0.014175827614963055, -0.007329743821173906, -0.04878050833940506, 0.037264809012413025, -0.0061263530515134335, -0.010634750127792358, 0.008521619252860546, 0.003299248404800892, 0.01722748950123787, -0.015166178345680237, 0.015718931332230568, -0.00274937367066741, 0.011711467988789082, -0.0028602122329175472, 0.007727035321295261, -0.003428800031542778, -0.020601589232683182, -0.021476782858371735, 0.02519635483622551, -0.015592259354889393, 0.02731524221599102, -0.0022714720107614994, 0.00784219242632389, -0.00198357948102057, 0.022110145539045334, -0.004232020117342472, 0.0059824069030582905, -0.0177802424877882, -0.03786362335085869, -0.031944554299116135, -0.018229354172945023, 0.0037339660339057446, -0.006183931604027748, 0.020417338237166405, -0.019438503310084343, 0.021453751251101494, -0.011728741228580475, 0.006408487446606159, -0.028697127476334572, 0.0006671909359283745, -0.032220929861068726, -0.002092978684231639, -0.02186831645667553, 0.008394946344196796, 0.05366316810250282, 0.0213155634701252, -0.007525510620325804, -0.0025852748658508062, 0.024850882589817047, 0.01606440357863903, 0.011175988242030144, -0.005072666332125664, -0.016202591359615326, -0.006656075362116098, -0.004373087547719479, -0.004712800495326519, 0.01788388378918171, -0.0005383590469136834, -0.015626806765794754, 0.015085568651556969, 0.03818606585264206, -0.025887295603752136, 0.0017863730899989605, 0.016905048862099648, 0.008320094086229801, -0.020590074360370636, 0.0017503865528851748, -0.01924273557960987, -0.006869115866720676, -0.020198538899421692, -0.007560057565569878, 0.046016741544008255, 0.009903502650558949, 0.0006196886533871293, 0.006414245348423719, -0.014486751519143581, 0.006333635654300451, 0.0018065256299450994, 0.03208274394273758, -0.010957189835608006, 0.01027776300907135, 0.05057695880532265, 0.04859625920653343, 0.01510860025882721, 0.008020685985684395, -0.000571826531086117, -0.017492350190877914, 0.025357574224472046, -0.023215653374791145, 0.006034227553755045, -0.043368130922317505, -0.0320366807281971, -0.002198059344664216, -0.012413925491273403, -0.013300634920597076, 0.01805661991238594, 0.03270459175109863, -0.0044968812726438046, 0.01391096692532301, -0.014532814733684063, 0.030286293476819992, 0.001774857402779162, -0.021292531862854958, 0.010225942358374596, -0.01722748950123787, 0.0044277869164943695, -0.03770240396261215, 0.006730927154421806, 0.010962947271764278, -0.03841637820005417, 0.017215972766280174, -0.010508077219128609, -0.023699313402175903, -0.05389348044991493, -0.013070320710539818, -0.008020685985684395, -0.023538092151284218, -0.005089940037578344, 0.023572640493512154, 0.005484352819621563, -0.02941109985113144, 0.007640667725354433, -0.014164312742650509, 0.022881697863340378, 0.002713387133553624, -0.0023779922630637884, -0.014267954044044018, 0.05762456730008125, -0.004681132268160582, -0.03493863716721535, 0.02943413145840168, 0.028835315257310867, 0.025334542617201805, 0.022236818447709084, 0.06130959093570709, 0.06315210461616516, -0.0075197527185082436, -0.028305593878030777, -0.0031639388762414455, -0.004796289373189211, -0.03793272003531456, -0.0032675801776349545, 0.0006812256760895252, -0.016306232661008835, -0.008383430540561676, 0.017538413405418396, -0.00947166420519352, 0.027729807421565056, 0.035399265587329865, -0.018091166391968727, 0.05214309319853783, -0.018805140629410744, 0.008780722506344318, 0.005688756238669157, -0.0529722236096859, -0.0010205790167674422, 0.021707097068428993, -0.009840166196227074, 0.03583686053752899, -0.07236466556787491, 0.01629471778869629, -0.03387919440865517, 0.010444740764796734, -0.009523484855890274, -0.01485525444149971, -0.0038232128135859966, 0.026140641421079636, 0.01616804488003254, 0.015431039035320282, 0.024344192817807198, 0.025380605831742287, -0.021476782858371735, 0.010433224961161613, -0.01896636001765728, 0.057394254952669144, 0.03899216279387474, -0.008809511549770832, 0.027130991220474243, -0.017215972766280174, -0.0043126302771270275, -0.01974942721426487, 0.02568001300096512, 0.02093554474413395, 0.0025320148561149836, -0.028029216453433037, -0.0009320520330220461, 0.0063393935561180115, -0.022225303575396538, -0.00876344833523035, 0.022916244342923164, -0.020083382725715637, 0.026071546599268913, 0.0600198358297348, 0.01858634129166603, -0.05380135402083397, -0.00199509528465569, 0.014901316724717617, 0.01760750636458397, -0.006448792759329081, -0.004249293822795153, -0.009477421641349792, -0.0038174549117684364, -0.01168843638151884, -0.00855040829628706, 0.01471706572920084, -0.03500773012638092, 0.024597536772489548, -0.007847949862480164, 0.016110464930534363, 0.02201802097260952, -0.022478649392724037, -0.008625260554254055, -0.000888148439116776, -0.02468966320157051, 0.025403637439012527, -0.0036274457816034555, 0.03081601671874523, -0.038047876209020615, -0.008446766994893551, -0.0032618222758173943, 0.013600043021142483, -0.0015503012109547853, -0.040420111268758774, -0.015051021240651608, 0.018114197999238968, 0.02462056837975979, -0.04491123557090759, 0.017538413405418396, -0.028489844873547554, -0.03212880715727806, -0.0180335883051157, -0.009057098999619484, 0.056242685765028, 0.004560217726975679, 0.004177320748567581, 0.004479607567191124, -0.0053288908675313, -0.031645145267248154, -0.01661715656518936, -0.017112331464886665, -0.00933347549289465, 0.0499320812523365, -2.5752885903784772e-06, 0.007991896942257881, -0.003993069287389517, 0.00028051529079675674, 0.0017259157029911876, -0.011838140897452831, 0.012655755504965782, -0.025357574224472046, 0.02250167913734913, -0.020601589232683182, 0.018851201981306076, -0.009391054511070251, 0.022858666256070137, -0.003405768657103181, -0.015384976752102375, 0.009477421641349792, 0.03906125947833061, 0.001820920268073678, -0.006615770049393177, -0.00981137715280056, 0.0028227863367646933, -0.043874822556972504, -0.05389348044991493, -0.0004901370266452432, 0.02918078564107418, 0.0012947965878993273, 0.00127032573800534, 0.02595639042556286, 0.02178770676255226, -0.014659487642347813, 0.011659647338092327, 0.0045515806414186954, 0.014060671441257, 0.0036274457816034555, 0.008475556038320065, 0.0044565764255821705, -0.036758117377758026, 0.009511969052255154, -0.008147358894348145, 0.022179240360856056, 0.0013243056600913405, 0.039107322692871094, -0.020520979538559914, -0.02782193385064602, -0.03790968656539917, -0.048365943133831024, 0.008711627684533596, -0.020187024027109146, 0.049747828394174576, 0.007870981469750404, -0.006638801656663418, 0.005277070216834545, 0.007427627220749855, -0.018114197999238968, 0.005875886417925358, -0.04198624566197395, 0.022133177146315575, 0.00902830995619297, 0.006414245348423719, -0.01989913173019886, 0.005786639638245106, 0.007444900926202536, -0.04544095695018768, -0.001080316724255681, 0.005268433131277561, -0.032773684710264206, 0.018620887771248817, 0.013530949130654335, -0.02973354049026966, -0.0014279469614848495, -0.03155302256345749, 0.0001864104124251753, 0.01099749468266964, 0.012793944217264652, 0.017999039962887764, 0.0073470170609653, -0.04394391551613808, 0.03155302256345749, -0.0002770965511444956, -0.03125361353158951, 0.006178173702210188, -0.002962414175271988, -0.043414194136857986, 0.007991896942257881, -0.009725009091198444, -0.022616837173700333, -0.0004016100720036775, 0.015051021240651608, 0.044174227863550186, 0.002029642229899764, 0.02842075005173683, -0.00490568857640028, 0.006281815003603697, 0.020037319511175156, 0.026578238233923912, -0.0008212134125642478, 0.025633949786424637, 0.02867409586906433, 0.030125074088573456, 0.0428844690322876, 0.009615610353648663, -0.021534360945224762, -5.8568137319525704e-05, -0.018632404506206512, -0.07015365362167358, 0.014360079541802406, 0.008377672173082829, -0.003995948471128941, 0.006448792759329081, 0.010830516926944256, 0.00867708120495081, -0.0116020692512393, -0.021119795739650726, 0.008199179545044899, -0.012506050989031792, -0.01687050238251686, 0.007611878216266632, -0.010398678481578827, 0.0041945939883589745, -0.0008809511200524867, 0.009362264536321163, 0.0012652876321226358, 0.0031840912997722626, -0.020037319511175156, 0.006961241364479065, 0.006782747805118561, 0.04532580077648163, -0.04831987991929054, -0.005593752022832632, 0.019058484584093094, -0.05357104167342186, 0.023411421105265617, -0.005029482301324606, -0.0006643119850195944, -0.0010508077684789896, -0.055321428924798965, -0.010007143951952457, -0.013404276221990585, -0.033787067979574203, -0.027130991220474243, 0.012540598399937153, -0.020486433058977127, 0.03208274394273758, 0.03360281512141228, -0.006823053117841482, -0.01707778498530388, 0.0057607293128967285, 0.0022340461146086454, 0.01775721088051796, -0.01195329800248146, -0.04244687408208847, 0.012586661614477634, 0.021119795739650726, 0.035698674619197845, -0.016766861081123352, 0.030079010874032974, 0.03371797129511833, 0.03288884088397026, -0.015373460948467255, 0.026186704635620117, 0.02133859321475029, -0.022213786840438843, 0.002118889009580016, -0.013588527217507362, -0.0008125766762532294, -0.007393080275505781, 0.023952657356858253, 0.0059536173939704895, 0.024804819375276566, -0.022478649392724037, 0.04104195907711983, 0.006995788309723139, 0.015822572633624077, 0.04663858935236931, -0.003235911950469017, -0.0325433723628521, 0.04449667036533356, -0.004652343224734068, 0.014267954044044018, -0.013507917523384094, -0.05062302201986313, 0.029272912070155144, 0.0063106040470302105, -0.048642322421073914, -0.017043238505721092, 0.009114677086472511, 0.011746015399694443, -0.015845604240894318, -0.009535000659525394, 0.012897585518658161, 0.03507682681083679]], "input": ["FULL CHARGE:Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.", "CANCELLATION:", "SPARE BATTERIES:Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.", "DRY CELL ALKALINE BATTERIES:Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.", "LITHIUM-ION BATTERIES:Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.", "PORTABLE CHARGERS:Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.", "ITEMS CONTAINING MERCURY:Items containing mercury are classified as dangerous goods and are prohibited on aircraft.", "INFECTIOUS SUBSTANCES:Infectious substances, including live virus materials, are classified as dangerous goods and are prohibited on aircraft.", "MAGNETIC MATERIALS:Magnetic materials that can harm people or the environment are prohibited on aircraft.", "LITHIUM METAL BATTERIES:Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.", "NON-SPILLABLE WET BATTERIES:Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.", "MOTORIZED WHEELCHAIRS:Motorized wheelchairs have separate exceptions regarding the transport of batteries.", "CARRY-ON:Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.", "EXEMPTION:", "100 WATT-HOURS:100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.", "160 WATT-HOURS:160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-5e5debd51960bae8b88819866c545f26 b/cache/text_embedding/embedding-5e5debd51960bae8b88819866c545f26 deleted file mode 100644 index acd477d980afcfede453cb5e23927a72eb077ede..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-5e5debd51960bae8b88819866c545f26 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.01280238013714552, 0.012865809723734856, 0.06106238067150116, 0.03406215459108353, -0.016417915001511574, 0.034611884504556656, -0.011988355778157711, 0.032095808535814285, -0.021080054342746735, 0.030214039608836174, 0.0069350628182291985, -0.01614305004477501, 0.011523199267685413, 0.02325783297419548, -0.03647251054644585, -0.0036578227300196886, -0.014504429884254932, -0.0018870559288188815, 0.02757110260426998, -0.004326485563069582, 0.03317412734031677, 0.05082893744111061, -0.01776052638888359, -0.0034992466680705547, -0.01408156007528305, -0.04824943095445633, -0.04524705559015274, -0.041250936686992645, 0.04091264307498932, -0.06228870525956154, 0.012390081770718098, -0.02571047656238079, 0.030658051371574402, -0.053535301238298416, 0.05319700762629509, -0.03127121180295944, 0.03192666172981262, -0.038819435983896255, 0.008071525022387505, 0.03771997615695, -0.016766782850027084, -0.025562472641468048, -0.014779295772314072, 0.012760092504322529, -0.01651306077837944, 0.03915773332118988, -0.0189657062292099, 0.0018289113650098443, 0.00640647578984499, -0.024082427844405174, 0.04228696972131729, 0.030066033825278282, 0.014144990593194962, -0.015202165581285954, 0.021259773522615433, 0.019113710150122643, 0.03905201703310013, 0.026704220101237297, -0.007347360718995333, -0.016988789662718773, -0.002983874175697565, -0.007447792217135429, -0.01929342932999134, 0.010355021804571152, 0.01947314850986004, -0.0038745435886085033, -0.006665483582764864, -0.017971960827708244, -0.018077678978443146, -0.05438104271888733, 0.02262352779507637, 0.031461503356695175, 0.001052549108862877, -0.03979203850030899, -0.008039809763431549, -0.0027248666156083345, -0.011681774631142616, -0.028987716883420944, 0.02511845901608467, 0.03537305071949959, -0.03710681572556496, 0.008420392870903015, -0.03220152482390404, -0.07040780037641525, -0.03972860798239708, -0.010344449430704117, -0.0563262403011322, -0.0018566622165963054, -0.019367432221770287, 3.402779475436546e-05, 0.03376614302396774, 0.006739485543221235, -0.027148233726620674, 0.024907024577260017, 0.024907024577260017, -0.015202165581285954, 0.010561170056462288, -0.05171696096658707, 0.0009825113229453564, 0.035732489079236984, -0.043026991188526154, -0.04051091521978378, -0.039390310645103455, 0.04896830767393112, -0.020445749163627625, -0.030763769522309303, -0.024949312210083008, 0.009694287553429604, 0.02258124202489853, -0.009884579107165337, 0.0006686627166345716, -0.024040142074227333, -0.013034958392381668, -0.004574921447783709, -0.010455452837049961, -0.011406909674406052, -0.02017088420689106, 0.009202701970934868, 0.01855340786278248, -0.05509991943836212, -0.029706595465540886, 0.03801598399877548, -0.019663440063595772, -0.008060953579843044, 0.056453101336956024, -0.010053726844489574, -0.010333877988159657, 0.017686525359749794, -0.06461448967456818, 0.008964837528765202, 0.05247812718153, -0.022348662838339806, 0.04575449973344803, 0.009731288999319077, -0.0052409409545362, -0.027993973344564438, -0.0016809069784358144, -0.03619764372706413, 0.03002374805510044, 0.0015831183409318328, 0.06651739776134491, -0.0033221698831766844, -0.01626991108059883, 0.03968631848692894, -0.035753630101680756, -0.006993207614868879, -0.016618778929114342, 0.0007723979069851339, 0.05852516368031502, -0.04230811074376106, 0.02201036736369133, 0.01282352302223444, -0.03501360863447189, -0.018912846222519875, 0.011227190494537354, 0.03951717168092728, -0.012104644440114498, -0.013944127596914768, 0.010846607387065887, 0.004918503109365702, -0.03896744176745415, -0.01743280328810215, 0.0051008653827011585, 0.0011959283147007227, 0.0017337657045572996, 0.02037174627184868, -0.015825897455215454, 0.05556507781147957, -0.012464083731174469, -0.007447792217135429, -0.053408440202474594, -0.0119249252602458, -0.06990035623311996, 0.025477899238467216, -0.05192839726805687, -0.021513495594263077, 0.024230433627963066, 0.04397844895720482, -0.002044310560449958, -0.020879190415143967, 0.003414672799408436, 0.009414136409759521, -0.07933035492897034, -0.007690942380577326, 0.03224381431937218, 0.028332268819212914, 0.006908633280545473, -0.007135925814509392, -0.05142095312476158, 0.02444186806678772, -0.03125007078051567, -0.02807854674756527, 0.022369805723428726, -0.016608206555247307, 0.0049607898108661175, 0.011861494742333889, -0.04786884784698486, -0.001608226215466857, 0.05256270244717598, -0.0213549192994833, 0.016069047152996063, -0.02562590315937996, 0.023426979780197144, 0.002665400505065918, -0.06897004693746567, -0.019399147480726242, -0.00419433880597353, -0.056537676602602005, 0.02744424343109131, -0.020657183602452278, 0.010503025725483894, -0.026704220101237297, 0.011977783404290676, 0.025351038202643394, 0.004699139390140772, -6.44628526060842e-05, -0.012072929181158543, 0.031588364392519, 0.04761512577533722, 0.041779525578022, -0.054127320647239685, -2.754434353846591e-05, 0.008864405564963818, -0.0032957405783236027, -0.01053474098443985, 0.010175301693379879, 0.03418901562690735, -0.008975408971309662, -0.011850923299789429, -0.05937090516090393, 0.019748013466596603, 0.0204986073076725, 0.012749521061778069, -0.0012388760223984718, 0.029643164947628975, -0.032159239053726196, 0.027127090841531754, 0.018384259194135666, 0.05065978690981865, 0.0036683944053947926, 0.035119328647851944, 0.010455452837049961, -0.02450529858469963, -0.01712622307240963, 0.007849518209695816, 0.004598707892000675, 0.01949429325759411, 0.010053726844489574, 0.012590944766998291, -0.011184902861714363, -0.0008404534892179072, -0.002415643073618412, 0.05865202471613884, -0.10047383606433868, -0.02056203782558441, 0.05332386866211891, -0.009599141776561737, -0.012464083731174469, -0.02080518938601017, 0.043132707476615906, -0.019441433250904083, 0.02080518938601017, 0.012738949619233608, -0.04101835936307907, -0.054719336330890656, -0.033850718289613724, -0.009741860441863537, -0.010888894088566303, -0.04524705559015274, 0.02575276419520378, -0.023997854441404343, 0.012252649292349815, 0.017443373799324036, -0.03108092211186886, -0.06820888072252274, 0.013944127596914768, -0.016724495217204094, 0.008145526982843876, 0.0011206046910956502, -0.01494844350963831, -0.0465579517185688, -0.03581706061959267, -0.017094507813453674, -0.04524705559015274, 0.07979550957679749, 0.021820075809955597, 0.004115050658583641, -0.03974974900484085, 0.009784147143363953, 0.008309389464557171, 0.029178008437156677, -0.016650494188070297, 0.016661064699292183, -0.007009065244346857, 0.044993333518505096, -0.006919205188751221, 0.006887489929795265, -0.008806261233985424, 0.010460739023983479, 0.015223308466374874, 0.007009065244346857, 0.019155995920300484, -0.04334414377808571, -0.06677111983299255, -0.054592475295066833, 0.009271417744457722, -0.01555103249847889, 0.0035283188335597515, -0.021587496623396873, -0.00625847140327096, -0.014324710704386234, 0.0490528829395771, -0.062034983187913895, -0.04820714518427849, -0.0157941821962595, -0.0022874607238918543, -0.0367896631360054, -0.010159444063901901, 0.02998146042227745, -0.007463649846613407, 0.015931615605950356, 0.03169408440589905, -0.024695590138435364, -0.0116394879296422, -0.03662051633000374, -0.03530962020158768, -0.008108526468276978, 0.0050110057927668095, -0.05032149329781532, 0.010825463570654392, 0.034527309238910675, 0.009863435290753841, 0.029474016278982162, 0.008467965759336948, -0.035838205367326736, 0.008415106683969498, -0.01922999881207943, 0.011819208040833473, 0.050998084247112274, -0.002604612847790122, 0.012263220734894276, -0.03831199184060097, -0.04402073472738266, 0.009588570334017277, -0.015931615605950356, 0.019790301099419594, 0.036282218992710114, 0.04820714518427849, -0.024716733023524284, 0.03805826976895332, 0.057256557047367096, -0.00625847140327096, 0.0005470876349136233, -0.04239268600940704, -0.03799484297633171, 0.00987929292023182, 0.0293048694729805, 0.04222353920340538, -0.003250810783356428, 0.031567223370075226, -0.025224177166819572, -0.01567789353430271, -0.0032851689029484987, 0.006380046252161264, 0.00855253916233778, -0.012083501555025578, -0.0209637638181448, 0.013922984711825848, -0.018183397129178047, -0.02109062485396862, 0.0013624333078041673, -0.020984908565878868, -0.013309823349118233, -0.03917887806892395, 0.038882866501808167, -0.02025545760989189, 0.028268838301301003, 0.035690199583768845, -0.025816194713115692, 0.006337759550660849, -0.014694721437990665, 0.007167641073465347, 0.007738515269011259, -0.012178647331893444, 0.005830315873026848, 0.012548658065497875, -0.06279614567756653, -0.029579734429717064, -0.007527080364525318, 0.011819208040833473, 0.043851587921381, -0.001077656983397901, -0.02509731613099575, 0.03607078269124031, -0.07214156538248062, 0.0052779424004256725, -0.0633881688117981, -0.03435816243290901, 0.011237761937081814, 9.365902951685712e-05, 0.02382870763540268, 6.627987022511661e-05, -0.012738949619233608, 0.0026918298099189997, -0.015170450322329998, 0.029748883098363876, -0.03421015664935112, -0.009139271453022957, -0.007077781483530998, -0.016026761382818222, 0.05674911290407181, -0.004881502129137516, 0.022940680384635925, 0.037593115121126175, 0.0021156698931008577, 0.0009772253688424826, -0.025541329756379128, 0.05370445176959038, 0.02258124202489853, -0.09709087759256363, 0.009916294366121292, 0.046050507575273514, 0.021862363442778587, -0.03283583000302315, -0.013235821388661861, 0.026196777820587158, 0.07797717303037643, -0.012009498663246632, -0.0025900767650455236, 0.02332126349210739, -0.02626020833849907, -0.021841218695044518, -0.006522764917463064, 0.01822568289935589, -0.0463465191423893, -0.0463465191423893, 0.018796557560563087, -0.016967646777629852, -0.012633231468498707, -0.05023691803216934, 0.01253808569163084, -0.008230101317167282, 0.058482877910137177, -0.024568729102611542, -0.009112841449677944, -0.0010459417244419456, 0.02387099340558052, -0.021714357659220695, -0.005941319279372692, -0.02056203782558441, 0.03738167881965637, -0.014155562967061996, -0.03970746323466301, 0.028311125934123993, 0.0043714153580367565, -0.000841114204376936, -0.03114435262978077, -0.0031080921180546284, 0.009165700525045395, 0.0005470876349136233, 0.025266462936997414, 0.016238195821642876, 0.05438104271888733, 0.021122340112924576, -0.014504429884254932, -0.0092872753739357, 0.012072929181158543, -0.025372181087732315, -0.04087035357952118, -0.007474221754819155, 0.032074663788080215, 0.031461503356695175, -0.06423390656709671, 0.012326651252806187, -0.008975408971309662, -0.030954061076045036, -0.016079619526863098, -0.027063660323619843, 0.006945634726434946, -0.0783577561378479, 0.014208421111106873, 0.018479404971003532, -0.046177368611097336, -0.02685222588479519, 0.07806174457073212, -0.036345649510622025, 0.03594392165541649, 0.00765394140034914, -0.003771468997001648, -0.007527080364525318, -0.026704220101237297, 0.005714026745408773, 0.035246189683675766, -0.007056637667119503, 0.04091264307498932, 0.04774198681116104, -0.05053292587399483, 0.005079722031950951, 0.003538890741765499, 0.003837542375549674, 0.026619646698236465, -0.054042745381593704, 0.006099895108491182, 0.01684078574180603, 0.018521692603826523, -0.01704164780676365, 0.00751122273504734, -0.02820540778338909, -0.01841597445309162, 0.0008847226854413748, -0.07446735352277756, -0.004744069185107946, -0.010725032538175583, -0.002722223522141576, 0.0008569718338549137, 0.011005183681845665, 0.04264640808105469, -0.03966517746448517, -0.013299251906573772, 0.05455018952488899, -0.013616403564810753, -0.026577359065413475, -0.028247695416212082, 0.009038839489221573, 0.014726436696946621, 0.02818426489830017, -0.020361175760626793, 0.029495161026716232, -0.006654911674559116, 0.027719108387827873, -0.0007545580738224089, -0.03748739883303642, -0.029178008437156677, 4.094485120731406e-05, 0.00889083556830883, 0.024864736944437027, 0.01894456148147583, 0.011110900901257992, -0.006982635706663132, -0.014631290920078754, 0.021883506327867508, 0.010672173462808132, 0.0019478434696793556, 0.0561148077249527, -0.0062954723834991455, -0.002777725225314498, -0.0020125953014940023, 0.022369805723428726, 0.004910574294626713, 0.005650596227496862, -0.013352110050618649, 0.028289981186389923, 0.00011884950799867511, -0.003752968506887555, -0.014240136370062828, 0.025308750569820404, -0.00582502968609333, -0.01984315924346447, -0.0038719004951417446, -0.016978217288851738, -0.0049475752748548985, 0.04820714518427849, -0.00537044508382678, -0.03053119033575058, -0.0009322955156676471, 0.009620285592973232, 0.008330532349646091, -0.04867229983210564, -0.0513363778591156, 0.003216452430933714, 0.026408212259411812, -0.016988789662718773, 0.001121265348047018, 0.014874441549181938, 0.014800438657402992, 0.04782656207680702, 0.025943055748939514, -0.044232167303562164, 0.049222029745578766, 0.03463302552700043, 0.005534307099878788, 0.029685452580451965, -0.010920609347522259, -0.025921911001205444, -0.006771200802177191, -0.005111437290906906, -0.023469267413020134, -0.015498174354434013, -0.0030314470641314983, 0.06410704553127289, 0.006607338786125183, -0.0043079848401248455, 0.016016189008951187, -0.016893643885850906, 0.031440362334251404, 0.009694287553429604, -0.0015461172442883253, 0.009641428478062153, 0.00023654273536521941, -0.01348954252898693, 0.021841218695044518, 0.029748883098363876, 0.06512193381786346, 0.0035124612040817738, -0.043724726885557175, -0.023511555045843124, -0.0011153187369927764, -0.04218124970793724, 0.03482331708073616, 0.0066971988417208195, -0.013394397683441639, 0.0058673168532550335, 0.017728811129927635, -0.018711984157562256, 0.0004912556614726782, -0.010080155916512012, -0.03467531502246857, -0.01712622307240963, -0.004844500683248043, 0.009525139816105366, -0.03165179491043091, 0.032751258462667465, 0.03304726630449295, -0.02084747515618801, -0.05455018952488899, -0.01496958639472723, -0.02573161944746971, -0.022200658917427063, -0.0440630204975605, -0.06491049379110336, -0.0134049691259861, -0.014980158768594265, -0.032011233270168304, -0.03442159295082092, 0.006882204208523035, -0.021291488781571388, 0.0052277264185249805, -0.007231071591377258, 0.014567860402166843, 0.04482418671250343, 0.008647684939205647, 0.008335818536579609, 0.008462679572403431, -0.04528934136033058, 0.03681080788373947, 0.003126592840999365, -0.01925114169716835, 0.015329025685787201, 0.03304726630449295, -0.024188145995140076, 0.002183064818382263, -0.012749521061778069, -0.055903371423482895, -0.009229131042957306, -0.012252649292349815, 0.03484446182847023, -0.0016214409843087196, 0.011121472343802452, 0.03292040526866913, -0.0028015116695314646, -0.036493655294179916, 0.06182354688644409, 0.024251576513051987, 0.015868185088038445, 0.055945660918951035, -0.014567860402166843, 0.03469645604491234, 0.007431934587657452, 0.02201036736369133, 0.024040142074227333, -0.013267536647617817, -0.021672071889042854, 0.019219426438212395, -0.006728913635015488, -0.0017258368898183107, -0.020773474127054214, -0.039538316428661346, 0.015128162689507008, -0.020244885236024857, 0.006052322220057249, 0.010931181721389294, -0.031567223370075226, -0.01526559516787529, -0.0009395635570399463, 0.0005560075514949858, -0.016935931518673897, 0.05192839726805687, 0.007606368511915207, 0.0329415500164032, 0.004738783463835716, -0.03167293965816498, 0.043048132210969925, 0.015847042202949524, -0.018500547856092453, 0.02100605145096779, 0.06719399243593216, 0.02503388561308384, -0.01222093403339386, -0.012125788256525993, -0.023955566808581352, 0.016502490267157555, -0.01598447374999523, 0.035774774849414825, -0.0367896631360054, -0.0216403566300869, -0.010434309020638466, -0.024611014872789383, -0.010127728804945946, 0.055903371423482895, 0.001487972680479288, -0.023955566808581352, -0.013891269452869892, -0.04850315302610397, -0.007194070611149073, 0.0008582933223806322, 0.003039375878870487, 0.016016189008951187, -0.04230811074376106, -0.023722989484667778, -0.008800975047051907, -0.020551467314362526, 0.01833140105009079, -0.0371491014957428, -0.021862363442778587, 0.019483720883727074, -0.011417481116950512, -0.001773409778252244, -0.016005616635084152, 0.025943055748939514, -0.030277470126748085, -0.005634738598018885, -0.0014562574215233326, -0.025266462936997414, 0.027930542826652527, -0.0090018380433321, 0.005946605000644922, -0.005899032112210989, -0.01191435381770134, -0.010386737063527107, -0.03306841105222702, -0.00276186759583652, -0.012199790216982365, -0.009070554748177528, -0.006580909248441458, -0.024040142074227333, -0.002925729611888528, -0.01986430399119854, -0.007849518209695816, -0.001970308367162943, -0.0003534926217980683, 0.03308955207467079, 0.0040701208636164665, -0.024040142074227333, 0.026598503813147545, -0.011005183681845665, -0.001128533505834639, -0.022750388830900192, -0.024928167462348938, -0.02879742532968521, 0.035795919597148895, 0.02558361552655697, -0.02119634300470352, -0.006533336825668812, 0.03788912296295166, 0.011195475235581398, -0.0022821747697889805, -0.01346839964389801, 0.004873573314398527, 0.021302061155438423, 0.002005988033488393, -0.04812256991863251, 0.012157503515481949, -0.00566645385697484, 0.015952758491039276, 0.0034226016141474247, -0.004958147183060646, 0.005127294920384884, 0.006623196415603161, 0.03541533648967743, -0.024293864145874977, 0.02139720693230629, -0.03478103131055832, -0.0008199707372114062, 0.02934715524315834, -0.016026761382818222, 0.0016584420809522271, 0.019769158214330673, -0.018320828676223755, 0.0071517834439873695, -0.014039273373782635, -0.03490789234638214, 0.007770230527967215, -0.0027433671057224274, -0.01712622307240963, -0.01684078574180603, 0.002973302500322461, 0.04714997112751007, -0.015445315279066563, -0.022454380989074707, -0.013151247054338455, -0.004717640113085508, -0.007564081344753504, -0.004551135003566742, 0.029748883098363876, 0.07188784331083298, -0.019504863768815994, -0.013278108090162277, 0.004548491910099983, -0.005724598187953234, 0.007283930201083422, -0.01133290771394968, 0.036261074244976044, -0.021037766709923744, -0.023004110902547836, -0.020276600494980812, -0.02190464921295643, 0.010487168096005917, -0.010296876542270184, -0.020466892048716545, -0.01888113096356392, 0.018775414675474167, -0.021344346925616264, -0.01804596371948719, -0.009250273928046227, 0.028268838301301003, -0.0006676716147921979, 0.011015755124390125, 0.02323669008910656, -0.015910472720861435, 0.05970919877290726, 0.02693679928779602, -0.02161921188235283, -0.01133290771394968, 0.001044620294123888, 0.007463649846613407, -0.02387099340558052, -0.040574345737695694, -0.019240571185946465, -0.0029310155659914017, -0.03674737736582756, 0.018838845193386078, -0.012781236320734024, -0.041250936686992645, -0.008309389464557171, -0.014282424002885818, -0.02389213629066944, -0.049137458205223083, 0.012347795069217682, -0.012865809723734856, 0.02814197726547718, -0.005433875601738691, -0.0032375960145145655, -0.005708740558475256, 0.01925114169716835, 0.025858480483293533, 0.012485227547585964, -0.023997854441404343, -0.023405836895108223, 0.03676851838827133, -0.0016174765769392252, -0.03296269103884697, 0.02695794217288494, 0.02632363699376583, 0.0011384445242583752, 0.03854457288980484, 0.04829171672463417, 0.007595796603709459, 0.0004879519692622125, 0.007828375324606895, -0.0039934758096933365, 0.007294502109289169, -0.023722989484667778, 0.01406041719019413, -0.006543908268213272, -0.008721686899662018, 0.037593115121126175, -0.04461275041103363, 0.003287811763584614, -0.013700977899134159, 0.013637547381222248, 0.009488138370215893, 0.020974336192011833, -0.0030076606199145317, -0.015477030538022518, -0.018775414675474167, -0.013056101277470589, -0.000835828366689384, 0.02687336876988411, 0.05924404412508011, 0.006876918021589518, 0.007305074017494917, -0.02928372472524643, 0.04452817887067795, -0.02076290175318718, -0.003634036285802722, 0.030362043529748917, -0.014049844816327095, -0.011311763897538185, 0.006475192029029131, 0.02008631080389023, -0.009614999406039715, 0.03966517746448517, 0.008494394831359386, 0.006089323665946722, 0.008282960392534733, 0.006052322220057249, 0.006147467996925116, 0.01567789353430271, 0.027676820755004883, 0.016111334785819054, 0.007368504069745541, -0.030700339004397392, -0.03723367676138878, -0.06304986774921417, -0.0024024283047765493, -0.007521794643253088, 0.006179183255881071, 0.015117591246962547, 0.0004724247264675796, -0.021206915378570557, 0.05945547670125961, 0.048714589327573776, -0.010656315833330154, -0.007595796603709459, 0.014398712664842606, -0.04080692306160927, 0.020297745242714882, 0.009324276819825172, -0.018246827647089958, -0.026640789583325386, 0.016343913972377777, 0.0016703353030607104, 0.02752881683409214, 0.04600822180509567, 0.009112841449677944, -0.009773575700819492, 0.019367432221770287, -0.0006392600480467081, 0.05801771953701973, -0.02573161944746971, -0.018437117338180542, -0.003697466803714633, 0.027888255193829536, -0.040658921003341675, 0.010941753163933754, -0.02571047656238079, -0.005111437290906906, -0.010629886761307716, -0.012686090543866158, 0.043682437390089035, 0.023511555045843124, 0.012960955500602722, 0.016005616635084152, -0.03127121180295944, -0.012855238281190395, 0.028332268819212914, 0.012178647331893444, -0.02628135122358799, -0.01651306077837944, -0.005645310506224632, 0.00072614656528458, 0.012760092504322529, 0.00028428074438124895, -0.010867751203477383, 0.04947575181722641, 0.024103572592139244, 0.024145858362317085, 0.008769259788095951, 0.01193549670279026, 0.03306841105222702, -0.008293531835079193, 0.010106585919857025, 0.01098403986543417, 0.02934715524315834, -0.03807941451668739, -0.018341973423957825, -0.0012626624666154385, -0.0005252834525890648, 0.014684149995446205, -0.03898858651518822, -0.018711984157562256, 0.02317325957119465, 0.022834962233901024, -0.003953831735998392, -0.025921911001205444, 0.024357294663786888, 0.030890630558133125, -0.04710768163204193, -0.010888894088566303, 0.005148438271135092, 0.040997214615345, -0.038142845034599304, 0.01280238013714552, -0.015910472720861435, 0.03549991175532341, 0.01721079647541046, 0.01902913488447666, -0.005444447044283152, 0.049898624420166016, 0.018437117338180542, 0.013140675611793995, 0.01833140105009079, 0.040701206773519516, -0.0027830111794173717, 0.003634036285802722, 0.04562763869762421, 0.009689001366496086, 0.020509179681539536, -0.026196777820587158, 0.00033631353289820254, -0.0012507692445069551, 0.0064857639372348785, -0.0008708472596481442, 0.004313270561397076, -0.0055025918409228325, -0.0026535072829574347, 0.006448762491345406, -0.020001735538244247, -0.03184208646416664, 0.03175751492381096, -0.0065703378058969975, -0.0025649690069258213, 0.007812517695128918, -0.01347897108644247, -0.02871285192668438, -0.022517811506986618, 0.023342406377196312, 0.030192894861102104, 0.041314367204904556, -0.013510686345398426, 0.003044661832973361, 0.04461275041103363, 0.030256325379014015, 0.02272924594581127, 0.007268072571605444, 0.0419275276362896, -0.02037174627184868, -0.014705292880535126, 0.021862363442778587, -0.013996986672282219, -0.017612522467970848, -0.0094299940392375, -0.012104644440114498, 0.045035623013973236, 0.005161653272807598, -0.02008631080389023, -0.0216403566300869, -0.06220412999391556, 0.02448415383696556, 0.01690421625971794, -0.009123413823544979, 0.015424171462655067, -0.027655677869915962, -0.002220065798610449, 0.002479073591530323, -0.029199151322245598, 0.0035098183434456587, -0.003985546994954348, -0.004963432904332876, 0.002711651846766472, -0.013278108090162277, -0.0030050177592784166, 0.008182528428733349, -0.023405836895108223, 0.0348656065762043, -0.032751258462667465, 0.007934092544019222, 0.045416202396154404, 0.008943693712353706, 0.016460202634334564, -0.026640789583325386, 0.007188784424215555, 0.027042515575885773, 0.04583907499909401, 0.019991165027022362, -0.02253895439207554, -0.01669277995824814, -0.0219257939606905, -0.003848114050924778, 0.018098821863532066, -0.002434143563732505, -0.00017294709687121212, 0.019547151401638985, 0.0019002706976607442, 0.0005778117920272052, -0.06347274035215378, 0.006781772710382938, 0.02750767208635807, 0.030784912407398224, 0.030277470126748085, -0.05505763366818428, 0.02626020833849907, -0.0019914519507437944, 0.018479404971003532, -0.00450091902166605, -0.00264954287558794, 0.009710145182907581, 0.008732259273529053, 0.004085978493094444, 0.007585225161164999, 0.010619315318763256, 0.032645538449287415, -0.013679834082722664, 0.0035706060007214546, -0.010090728290379047, 0.032370675355196, -0.00977886188775301, 0.009038839489221573, 0.030129464343190193, 0.002130205975845456, 0.0024962525349110365, 0.008430964313447475, 0.030763769522309303, -0.0008021309040486813, 0.022242944687604904, -0.0060206069611012936, -0.0515478141605854, 0.002102455124258995, -0.018648553639650345, -0.0059307473711669445, -0.003486031899228692, -0.010254589840769768, -0.05488848686218262, -0.023659558966755867, 0.022750388830900192, -0.03308955207467079, -0.03979203850030899, 0.009091698564589024, 0.015751896426081657, -0.005238298326730728, -0.002923086751252413, 0.020382318645715714, -0.007701514288783073, -0.014324710704386234, -0.0024315007030963898, 0.006459334399551153, -0.020974336192011833, -0.032159239053726196, 0.012273792177438736, -0.018563978374004364, 0.024716733023524284, 0.005904317833483219, -0.035732489079236984, 0.010735603980720043, -0.009181558154523373, -0.008008094504475594, -0.01778167113661766, 0.05027920380234718, -0.005275299306958914, -0.019938305020332336, 0.003216452430933714, 0.058905746787786484, -0.02069947123527527, -0.009974438697099686, 0.024230433627963066, -0.007479507476091385, -0.011184902861714363, 0.0021500280126929283, 0.002709008986130357, 0.017379943281412125, -0.020604325458407402, -0.010328591801226139, -0.03497132286429405, 0.03592278063297272, 0.027655677869915962, -0.004974004812538624, 0.018489977344870567, 0.020657183602452278, 0.005492019932717085, 0.008145526982843876, -0.005003076978027821, 0.005132580641657114, -0.03894629701972008, 0.008610683493316174, -0.011417481116950512, 0.02558361552655697, 0.012495798990130424, -0.027169376611709595, 0.005470876581966877, -0.013320394791662693, -0.0008589540375396609, 0.021862363442778587, 0.01769709587097168, 0.0032428819686174393, -0.036366794258356094, 0.010878322646021843, 0.012104644440114498, -0.0023997854441404343, -0.013552973046898842, -0.005497306119650602, 0.005449733231216669, 0.010571742430329323, 0.02137606218457222, 0.0022980323992669582, -0.0402149073779583, -0.016111334785819054, 0.023088684305548668, 0.014324710704386234, 0.02998146042227745, -0.02084747515618801, -0.015138735063374043, -0.0005536950193345547, 0.046727098524570465, -0.0010789784137159586, -0.0049898624420166016, -0.005645310506224632, -0.018320828676223755, 0.014916728250682354, -0.027317382395267487, 0.01806710660457611, 0.03298383578658104, -0.024103572592139244, 0.0055660223588347435, -0.041842956095933914, -0.0031001633033156395, -0.018056536093354225, 0.004955504089593887, 0.0018645910313352942, -0.03357585147023201, 0.022898392751812935, -0.007442506495863199, 0.02131263166666031, 0.027359668165445328, 0.014409284107387066, 0.01161834504455328, 0.020657183602452278, -0.0072363573126494884, -0.01622762344777584, 0.011375194415450096, 0.03245524689555168, -0.005460304673761129, -0.00595717690885067, -0.009741860441863537, -0.04359786584973335, 0.030108321458101273, 0.008589540608227253, 0.014779295772314072, 0.006755343172699213, 0.005608309060335159, 0.015202165581285954, -0.012284364551305771, 0.01437756884843111, 0.01024930365383625, -0.02143949270248413, 0.00625318568199873, -0.0026244348846375942, -0.014123847708106041, 0.005941319279372692, 0.017485661432147026, -0.01835254393517971, -0.008489108644425869, 0.0018368401797488332, -0.0015500816516578197, -0.01865912415087223, -0.01467357762157917, 0.016639921814203262, -0.015033016912639141, -8.271562546724454e-05, -0.0022597098723053932, -0.0009243667009286582, 0.00811381172388792, -0.013521257787942886, -0.00805038120597601, -0.011544342152774334, -0.0038983297999948263, 0.013531830161809921, -0.001995416358113289, 0.008066238835453987, -0.00010150524030905217, 0.02507617138326168, 0.024843594059348106, 0.007918234914541245, 0.018711984157562256, -0.001383576774969697, 0.027676820755004883, 0.029241438955068588, 0.021249201148748398, -0.02012859657406807, 0.030467761680483818, -0.008018665947020054, -0.018458262085914612, -0.00655448017641902, -0.01859569363296032, 0.023405836895108223, 0.019304001703858376, 0.0028940143529325724, 0.010555884800851345, -0.020445749163627625, 0.01406041719019413, 0.01377497985959053, 0.007981665432453156, -0.01435642596334219, 0.00950399599969387, 0.0011206046910956502, 0.014641862362623215, 0.0017033719923347235, 0.018764842301607132, -0.022179514169692993, 0.010413166135549545, 0.01587875746190548, -0.005119366105645895, -0.0038904009852558374, 0.010450166650116444, 0.008948979899287224, 0.032730113714933395, -0.020403461530804634, -0.006517479196190834, 0.000759183254558593, 0.009229131042957306, -0.032053522765636444, 0.026746507734060287, 0.001156945014372468, -0.019103137776255608, -0.018912846222519875, 0.0008834011969156563, 0.05869431048631668, -0.033935293555259705, 0.00853139627724886, -0.0019174497574567795, 0.02700022980570793, 0.0013730049831792712, -0.04651566594839096, -0.018363116309046745, -0.05328157916665077, 0.044316742569208145, -0.03788912296295166, 0.01216807495802641, -0.009620285592973232, -0.009070554748177528, -0.03262439742684364, -0.010434309020638466, 0.010148872621357441, -0.004075406584888697, 0.018606266006827354, 0.01616419292986393, -0.030996348708868027, 0.030996348708868027, 0.010323306545615196, 0.005455018952488899, 0.030806057155132294, 0.0001810410903999582, 0.0026165060698986053, -0.041821811348199844, 0.02203151024878025, -0.01741165854036808, 0.051632389426231384, -0.010439595207571983, -0.04393615946173668, -0.019039707258343697, -0.01377497985959053, 0.02319440245628357, 0.01187206618487835, 0.011364622972905636, 0.007373790256679058, -0.006750057451426983, 0.005148438271135092, -0.0104818819090724, 0.03232838585972786, -0.013542401604354382, -0.0006756003713235259, 0.04533163085579872, -0.02996031753718853, -0.015952758491039276, -0.030277470126748085, -0.014705292880535126, 0.0010307448683306575, -0.041250936686992645, -0.05298557132482529, -0.02617563307285309, 0.0312289260327816, -0.02448415383696556, -0.013901840895414352, 0.010312734171748161, -0.01794024556875229, 0.008637113496661186, 0.005661167670041323, -0.04414759576320648, 0.027909399941563606, 0.028903143480420113, -0.008092668838799, -0.04220239445567131, -0.01765481010079384, -0.0036102498415857553, -0.00819309987127781, -0.029072290286421776, 0.0017958746757358313, -0.0002882451517507434, -0.0232789758592844, 0.02621792070567608, 0.013595260679721832, 0.008293531835079193, -0.004212839063256979, 0.015709608793258667, -0.032730113714933395, -0.013510686345398426, -0.01377497985959053, -0.019917162135243416, 0.006374760530889034, -0.012020071037113667, -0.00965728610754013, -0.02560476027429104, 0.004514134023338556, 0.0036102498415857553, 0.028522560372948647, 0.013130104169249535, -0.014737008139491081, 0.011702918447554111, 0.013753836043179035, -0.04218124970793724, 0.02201036736369133, 0.017887387424707413, 0.03615535795688629, 0.013891269452869892, -0.040109191089868546, 0.00036307328264229, 0.00898069515824318, -0.0043582008220255375, 0.0020852761808782816, -0.013510686345398426, 0.002267638687044382, -0.033216413110494614, -0.018363116309046745, -0.002107741078361869, -0.016333341598510742, 0.044316742569208145, -0.0017919102683663368, -0.02757110260426998, 0.0013901840429753065, -0.008732259273529053, 0.00890140701085329, 0.014536145143210888, -0.028437986969947815, 0.0013690405758097768, -0.0238498505204916, 0.009477566927671432, -0.024780163541436195, 0.0036683944053947926, 0.028268838301301003, 0.006052322220057249, 0.02037174627184868, -0.01745394617319107, -0.02632363699376583, 0.04664252698421478, 0.03535190597176552, 0.008198386058211327, 0.03613421320915222, -0.0013056101743131876, 0.005246227141469717, -0.004463918041437864, -0.0009210630087181926, 0.019462577998638153, 0.008462679572403431, 0.07577824592590332, 0.012358366511762142, 0.018785985186696053, -0.02313097193837166, -0.02928372472524643, -0.028564848005771637, 0.027803681790828705, 0.0013208070304244757, -0.00450091902166605, 0.0037899694871157408, -0.012865809723734856, -0.027401955798268318, 0.009704858995974064, 0.018648553639650345, 0.020995479077100754, -0.004664781037718058, 0.008457393385469913, -0.007320931181311607, -0.02818426489830017, 0.05400045961141586, 0.006575623527169228, -0.00367896631360054, -0.025308750569820404, -0.03473874554038048, -0.03856571391224861, -0.008954265154898167, -0.004112407565116882, 0.021798932924866676, -0.010286305099725723, 0.044993333518505096, 0.006491049658507109, -0.024145858362317085, 0.03055233508348465, -0.019547151401638985, -0.014388141222298145, -0.03805826976895332, -0.03972860798239708, 0.027740251272916794, -0.008134955540299416, -0.007283930201083422, 0.02871285192668438, 0.0031715226359665394, 0.035838205367326736, -0.011977783404290676, 0.018606266006827354, 0.016809070482850075, 0.02505502849817276, 0.02082633227109909, -0.016090191900730133, 0.0019452004926279187, -0.009911008179187775, 0.016639921814203262, 0.0037318249233067036, 0.027803681790828705, 0.005539592821151018, -0.017263654619455338, -0.014102703891694546, -0.016946502029895782, 0.04723454266786575, 0.004202267620712519, -0.021291488781571388, -0.020836902782320976, -0.009958581067621708, -0.011459768749773502, 0.05734112858772278, -0.01288695354014635, 0.017845099791884422, -0.01833140105009079, -0.007326217368245125, -0.01714736595749855, -0.03190551698207855, 0.00582502968609333, 0.007072495296597481, -0.023617271333932877, 0.01341554056853056, 0.019124280661344528, 0.028543703258037567, -0.009630857035517693, -0.013341538608074188, 0.009149842895567417, -0.02389213629066944, 0.02759224735200405, -0.05670682340860367, 0.026535073295235634], [0.01321184542030096, -0.01904645375907421, 0.04904057830572128, 0.020352710038423538, -0.02157188206911087, 0.05205118656158447, -0.030305135995149612, 0.04374090954661369, -0.0015301854582503438, 0.05200142413377762, -0.009162452071905136, -0.033091817051172256, 0.027568219229578972, 0.0006546829827129841, -0.0643424317240715, 0.009050487540662289, -0.0035486617125570774, 0.030628589913249016, -0.0179392471909523, -0.013361131772398949, 0.0603117011487484, 0.030927162617444992, -0.05210094898939133, -0.009772038087248802, -0.03906327113509178, -0.027095478028059006, 0.026896430179476738, -0.012963034212589264, 0.06090884655714035, -0.06513862311840057, 0.07240390032529831, -0.02828977070748806, 0.024259038269519806, -0.04137720912694931, 0.030927162617444992, 0.009908883832395077, -0.029011320322752, 0.010443827137351036, 0.03334062546491623, 0.0244829673320055, -0.012477853335440159, 0.02001681551337242, -0.018237819895148277, -0.02731940895318985, 0.0034677982330322266, 0.04747306928038597, 0.03704790398478508, -0.04792093113064766, 0.010101712308824062, 0.03244490921497345, 0.04147673398256302, 0.03431098908185959, 0.013784109614789486, 0.026373928412795067, 0.027095478028059006, -0.001286040060222149, 0.010785941034555435, 0.030255373567342758, 0.02935965545475483, -0.01516500860452652, -0.02060152031481266, -0.009529447183012962, -0.010642874985933304, 0.0313003771007061, -0.00915623176842928, -0.028065839782357216, -0.0232015922665596, 0.025005469098687172, -0.026025593280792236, -0.02118622697889805, 0.014754471369087696, 0.020526878535747528, 0.03662492707371712, -0.05254880711436272, -0.03704790398478508, 0.013099879957735538, -0.001777441008016467, -0.015575545839965343, -0.003701058216392994, 0.0019484983058646321, -0.02794143557548523, 0.02108670212328434, -0.0030432650819420815, 0.018362225964665413, 0.03174823895096779, -0.00331540172919631, -0.07220485061407089, -0.01613537035882473, -0.01873544044792652, -0.007887297309935093, -0.01925794407725334, -0.0001238221739185974, -0.02866298519074917, 0.05623120442032814, 0.043716028332710266, 0.008807896636426449, 0.059913601726293564, -0.015140127390623093, -0.01949431374669075, 0.025391126051545143, -0.018026331439614296, -0.03595313802361488, -0.016160251572728157, 0.023363320156931877, -0.0033620537724345922, -0.0497870109975338, -0.025527972728013992, 0.03475884720683098, 0.03172335773706436, -0.002348150359466672, 0.04369114711880684, -0.036376114934682846, -0.009722275659441948, 0.06648220121860504, -0.009181112982332706, -0.003027714556083083, -0.03525646775960922, -0.01255249697715044, 0.026821786537766457, 0.00753896264359355, -0.047970689833164215, 0.007825094275176525, 0.054589055478572845, -0.09887734800577164, 0.01842442713677883, -0.03662492707371712, 0.013759228400886059, -0.0192206222563982, -0.07723082602024078, -0.01476691197603941, 0.03617706894874573, -0.04899081587791443, 0.007234169170260429, -0.051055945456027985, 0.017964128404855728, -0.01019501592963934, -0.008807896636426449, -0.031001806259155273, 0.00656860088929534, -0.01191180944442749, 0.03237026557326317, 0.012179280631244183, 0.005109948571771383, 0.022181468084454536, -0.07379723340272903, -0.008397359400987625, 0.013112320564687252, 0.0116007961332798, 0.021235987544059753, -0.014057801105082035, 0.004114706069231033, 0.02011634036898613, 0.002654498443007469, 0.02697107382118702, -0.009025606326758862, 0.04379067197442055, 0.014903757721185684, 0.019991934299468994, 0.015936322510242462, -0.007358574774116278, -0.05533548817038536, -0.039113033562898636, -0.026772024109959602, -0.02236807718873024, 0.003203436965122819, 0.012148179113864899, -0.010568232275545597, 0.02562749572098255, -0.050782252103090286, -0.057873353362083435, -0.05483786389231682, 0.01182472612708807, -0.05205118656158447, -0.02724476531147957, 0.004858027677983046, -0.07912178337574005, 0.051951661705970764, 0.010387844406068325, -0.008938522078096867, 0.0011243131011724472, -0.02201974205672741, 0.01388363353908062, -0.07474271953105927, -0.04588068276643753, -0.03729671612381935, 0.046552471816539764, -0.00221596984192729, 0.013435774482786655, -0.06777601689100266, -0.008758134208619595, -0.003218987723812461, 0.01360994204878807, 0.008397359400987625, 0.004702521022409201, -0.03580385074019432, 0.02073836699128151, -0.014692268334329128, 0.004808265715837479, -0.01959383860230446, -0.004391507711261511, 0.0477716438472271, -0.02714524045586586, 0.03622682765126228, 0.02562749572098255, -0.05085689574480057, 0.015339176170527935, 0.004005851224064827, -0.010537130758166313, 0.024744218215346336, -0.06797506660223007, 0.008440900593996048, -0.025353804230690002, -0.023413080722093582, 0.017217695713043213, -0.018847405910491943, 0.040108274668455124, -0.030703233554959297, 0.009747156873345375, 0.010182575322687626, 0.05374309793114662, -0.031001806259155273, -0.023002544417977333, -0.01797656901180744, -0.013473096303641796, -0.05523596331477165, 0.020452234894037247, 0.006363332271575928, -0.0284639373421669, -0.017167935147881508, -0.07603653520345688, -0.0027042606379836798, 0.04003363102674484, -0.008652389980852604, 0.0073647950775921345, -0.02371165342628956, -0.008733253926038742, -0.01582435704767704, -0.03154918923974037, 0.0310266874730587, -0.0010722184088081121, 0.02776726707816124, -0.015115246176719666, 0.004176908638328314, 0.013398452661931515, 0.03652540221810341, 0.0010317866690456867, -0.017080850899219513, -0.01634685881435871, 0.04789604991674423, 0.015612867660820484, 0.01244675274938345, -0.018200498074293137, 0.0705626979470253, -0.07190627604722977, 0.020178543403744698, 0.03883934020996094, -0.014965959824621677, -0.05314595252275467, 0.019469432532787323, -0.04966260492801666, -0.024358561262488365, 0.011240020394325256, 0.0042142304591834545, 0.017180373892188072, -0.08992016315460205, 0.012938152998685837, 0.02219390869140625, -0.01352285873144865, -0.017255017533898354, 0.06304861605167389, -0.06658172607421875, 0.028712747618556023, -0.01321184542030096, -0.014567863196134567, -0.008391139097511768, 0.0321214534342289, -0.010947667993605137, -0.0412776842713356, 0.005050856154412031, 0.010431386530399323, -0.050707608461380005, -0.01161945704370737, -0.02580166421830654, -0.04824438318610191, 0.013062559068202972, 0.04458686709403992, 0.002200419083237648, -0.05508667603135109, -0.0259011872112751, -0.014356373809278011, 0.06429266929626465, -0.004015181679278612, 0.024084869772195816, 0.005508045665919781, 0.05443976819515228, 0.007395896129310131, -0.013012796640396118, 0.02364945225417614, -0.0049637723714113235, -0.006935596466064453, 0.0223307553678751, 0.0103194210678339, 0.00035125063732266426, -0.04799557104706764, -0.04207387939095497, 0.024321239441633224, 0.006854732986539602, 0.04709985479712486, -0.015799475833773613, 0.009131350554525852, -0.008944742381572723, 0.038690052926540375, -0.04598020762205124, -0.04219828546047211, -0.03207169100642204, -0.05886859819293022, -0.0398097038269043, -0.00865861028432846, 0.026722263544797897, -0.030553946271538734, 0.039113033562898636, 0.010362963192164898, 0.031001806259155273, -0.010288320481777191, -0.01414488535374403, -0.024594932794570923, 0.032768361270427704, 0.056280966848134995, -0.04615437239408493, -0.026946192607283592, -0.03455979749560356, -0.012925712391734123, 0.0372469536960125, -0.007849975489079952, -0.009809359908103943, -0.021497240290045738, 0.000446304096840322, 0.03299229219555855, 0.0022564015816897154, 0.011065852828323841, 0.016682753339409828, -0.008695932105183601, -0.01897181198000908, 0.00495133176445961, -0.02475665882229805, 0.01295059360563755, 0.018548833206295967, 0.04491031914949417, -0.014480778947472572, 0.06767649203538895, 0.012975474819540977, 0.021932657808065414, -0.04321840777993202, -0.009983526542782784, -0.04207387939095497, -0.018548833206295967, -0.009436143562197685, -0.00955432839691639, -0.005660442169755697, 0.009411262348294258, 0.048766884952783585, 0.009268196299672127, 0.02409731037914753, 0.0461294911801815, 0.04687592387199402, -0.030130969360470772, -0.03580385074019432, -0.004630987998098135, 0.025304041802883148, -0.04197435453534126, 0.01357262022793293, 0.02240539900958538, 0.04772188141942024, 0.0027742385864257812, -0.0013925620587542653, -0.02126086875796318, 0.013647263869643211, 0.029210370033979416, -0.03147454559803009, -0.00426710257306695, -0.027742385864257812, 0.02004169672727585, 0.015326735563576221, -0.009168672375380993, 0.025465769693255424, 0.024731777608394623, -0.06070979684591293, -0.009535667486488819, -0.018362225964665413, 0.029832396656274796, 0.004469261039048433, 0.0075949449092149734, -0.03316645696759224, 0.034410510212183, -0.03826707601547241, 0.007458099164068699, -0.016110489144921303, 0.014866435900330544, 0.007333693560212851, 0.001606383710168302, 0.00153251807205379, -0.04598020762205124, 0.018100975081324577, -0.028613224625587463, -0.03174823895096779, 0.0010823262855410576, -0.04602997004985809, -0.009454804472625256, 0.008366257883608341, -0.016670312732458115, 0.027617981657385826, 0.023325998336076736, 0.0574752576649189, -0.010499808937311172, 0.009716055355966091, -0.017839722335338593, -0.04065565764904022, 0.03207169100642204, -0.005396080669015646, -0.02070104517042637, 0.05453929305076599, 0.010947667993605137, -0.007650927174836397, -0.0034024855121970177, -0.02811560221016407, -0.010226117447018623, 0.025428447872400284, 0.008876319974660873, -0.016073167324066162, -0.06528791040182114, 0.02555285207927227, 0.01357262022793293, 0.0021833134815096855, 0.009162452071905136, -0.02731940895318985, -0.051055945456027985, 0.0026824898086488247, 0.003144344547763467, -0.024458086118102074, -0.028961557894945145, 0.005256124772131443, 0.012527615763247013, 0.032220978289842606, -0.008403579704463482, -0.038242194801568985, -0.0063882130198180676, -0.02323891408741474, 0.017055969685316086, -0.029135726392269135, -0.011942910961806774, -0.017441626638174057, 0.008627508766949177, -0.0694679319858551, -0.0018116524443030357, 0.010139033198356628, 0.005924803204834461, 0.0051037282682955265, -0.06180456280708313, 0.014269290491938591, -0.016259774565696716, 0.00022703970898874104, 0.03781921789050102, 0.054688580334186554, 0.057077161967754364, 0.028862034901976585, 0.0044630407355725765, -0.02264176867902279, -0.008453341200947762, -0.003962309565395117, -0.02004169672727585, -0.00936772022396326, 0.0008070795447565615, -0.014281731098890305, -0.023226473480463028, 0.03281812369823456, 0.0015620642807334661, -0.00431064423173666, -0.059017885476350784, -0.0031412343960255384, -0.02160920388996601, 0.029832396656274796, 0.030429542064666748, -0.026921311393380165, -0.03179800137877464, 0.0711100846529007, -0.02085033245384693, 0.045407943427562714, 0.0033278423361480236, -0.020862773060798645, -0.012583598494529724, -0.031773120164871216, -0.01648370549082756, 0.036823976784944534, -0.012148179113864899, 0.0051939222030341625, 0.00884521845728159, -0.038142669945955276, 0.020837891846895218, 0.03274348005652428, 0.009075367823243141, 0.007588724605739117, -0.025005469098687172, -8.207835344364867e-05, 0.020576640963554382, 0.02081301063299179, -0.007682028692215681, -0.006167393643409014, -0.03627659007906914, -0.02250492200255394, -0.0072590503841638565, -0.026398809626698494, 0.018275141716003418, 0.02299010381102562, 0.0055329264141619205, -0.02271641232073307, -0.04020779952406883, 0.01400803867727518, -0.012148179113864899, -0.047697000205516815, 0.009597870521247387, 0.014082682318985462, -0.03207169100642204, -0.02087521366775036, 0.0010799936717376113, 0.00017241800378542393, 0.02697107382118702, -0.009405042044818401, -0.022069504484534264, -0.008938522078096867, 0.01859859563410282, -0.003545551560819149, -0.02697107382118702, -0.04742330685257912, 0.018959371373057365, -0.013995599001646042, 0.005865710787475109, -0.015189889818429947, 0.036724451929330826, 0.019606279209256172, -0.05667906254529953, 0.04287007451057434, 0.00794950034469366, 0.016869360581040382, 0.014878876507282257, 0.017155494540929794, -0.002676269505172968, 0.005523596424609423, 0.041949473321437836, 0.042297810316085815, 0.013510418124496937, 0.007395896129310131, 0.033912889659404755, -0.013908514752984047, -0.01759091205894947, -0.004910900257527828, 0.023413080722093582, -0.005296556744724512, -0.03722207248210907, 0.023325998336076736, -0.013435774482786655, -0.006210935767740011, 0.02147235907614231, -0.013348691165447235, 0.02326379530131817, 0.015314294956624508, -0.0009851346258074045, 0.015936322510242462, 0.002275062259286642, -0.034435391426086426, 0.01883496530354023, -0.027095478028059006, 0.0064939577132463455, 0.005517376121133566, -0.015214771032333374, 0.022554684430360794, 0.029334774240851402, 0.006792530417442322, -0.013199404813349247, 0.03368896245956421, -0.005377419758588076, -0.011992672458291054, 0.031972166150808334, -0.05100618302822113, -0.0056542218662798405, -0.003383824834600091, 0.01257115788757801, -0.008478222414851189, -0.04647782817482948, -0.008229412138462067, 0.017354542389512062, 0.01589900068938732, 0.009722275659441948, -0.015140127390623093, -0.006425534840673208, -0.0063882130198180676, 0.039312079548835754, 0.0008008592412807047, 0.00729015190154314, 0.01116537768393755, 0.01085436437278986, 0.0038316838908940554, -0.012023773975670338, 0.007632266264408827, 0.01990485191345215, -0.045507464557886124, -0.014729590155184269, 0.006220266222953796, -0.013087439350783825, 0.005794177763164043, 0.009585429914295673, 0.027070598676800728, 0.025851424783468246, -0.0013746788026764989, -0.0392623208463192, -0.023052306845784187, 0.010717518627643585, -0.02881227247416973, -0.03075299598276615, -0.014717149548232555, 0.01114671677350998, -0.033639200031757355, 5.3406816732604057e-05, 0.029135726392269135, 0.007371015381067991, -0.015525784343481064, -0.049015697091817856, -0.016384180635213852, -0.03764504939317703, 0.0025518641341477633, -0.021621644496917725, -0.04050637409090996, 0.028364412486553192, -0.017466507852077484, 0.006400653626769781, -0.0045843361876904964, 0.0067241075448691845, 0.022741293534636497, -0.015040603466331959, 0.012396990321576595, -0.00040548358811065555, 0.028961557894945145, 0.024022666737437248, 0.025478210300207138, -0.023102067410945892, 0.02662273868918419, 0.019506754353642464, -0.007725570350885391, 0.027344290167093277, 0.015836797654628754, 0.010655315592885017, 0.023002544417977333, -0.004789604805409908, 0.0032438687048852444, -0.023985344916582108, 0.02856346219778061, 0.015028162859380245, -0.029508942738175392, 0.031598951667547226, 0.013672145083546638, 0.013858752325177193, -0.034783728420734406, 0.0038254635874181986, -0.013970717787742615, 0.02147235907614231, 0.041327446699142456, -0.0046589793637394905, 0.030006563290953636, -0.019444551318883896, -0.021422596648335457, -0.008304054848849773, -0.036550283432006836, -0.025366244837641716, 0.010984989814460278, -0.03423634544014931, -0.009031826630234718, -0.026995955035090446, -0.026722263544797897, 0.023537486791610718, -0.05384262278676033, 0.0030681462958455086, -0.04436293616890907, -0.023761415854096413, -0.016433943063020706, -0.0054458430968225, -0.01782728172838688, -0.014704708941280842, 0.019432110711932182, -0.01445589866489172, -0.014804232865571976, -0.00967873353511095, -0.010568232275545597, 0.04874200373888016, -0.0210493803024292, 0.00043969505350105464, 0.019743124023079872, 0.06503909826278687, 0.023114508017897606, -0.028513699769973755, -0.02056420035660267, -0.05966479331254959, 0.009205994196236134, 0.006549939978867769, 0.02122354693710804, -0.04784628748893738, -0.01634685881435871, 0.0018396436935290694, -0.01458030380308628, -0.008061464875936508, 0.03968529775738716, 0.0032594194635748863, -0.011376866139471531, -0.027518456801772118, -0.04473615437746048, -0.015811916440725327, -0.011774963699281216, -0.0018629697151482105, 0.0017463397234678268, -0.02430879883468151, 0.0013116985792294145, -0.0012355003273114562, -0.01914597861468792, 0.02891179732978344, -0.050185106694698334, -0.017541149631142616, 0.022728852927684784, -0.016048286110162735, -0.008030363358557224, -0.0035922036040574312, -0.004204900003969669, -0.0004268657648935914, 0.030529065057635307, -0.019618719816207886, 0.007688248995691538, -0.009181112982332706, -0.025975830852985382, -0.020265627652406693, 0.0011546368477866054, -0.022417839616537094, -0.026846667751669884, -0.013373572379350662, 0.019034013152122498, -0.013249166309833527, -0.0029017541091889143, -0.03306693583726883, -0.013933395966887474, -0.03167359530925751, 0.026398809626698494, 0.02118622697889805, 0.005620010197162628, 0.02918548882007599, -0.010381624102592468, 0.009604090824723244, -0.014928638935089111, -0.02226855233311653, -0.027817029505968094, 0.02170872874557972, -0.02312694862484932, 0.007507861126214266, -0.023537486791610718, 0.0032469788566231728, 0.03237026557326317, 0.0018629697151482105, 0.000750319566577673, 0.028862034901976585, 0.006742768455296755, -0.008832777850329876, -0.0039001067634671926, 0.0048735784366726875, 0.039113033562898636, -0.011532372795045376, -0.014804232865571976, -0.0026125116273760796, 0.02908596396446228, 0.03167359530925751, 0.024358561262488365, -0.009249535389244556, -0.0017338991165161133, -0.0022688419558107853, -0.022280992940068245, -0.04110351949930191, 0.02430879883468151, -0.024196835234761238, 0.018810084089636803, 0.00946724507957697, 0.014244409278035164, 0.008907420560717583, 0.009181112982332706, 0.005576468538492918, 0.00445682043209672, -0.0002301498461747542, -0.0338631272315979, -0.027443813160061836, -0.01737942360341549, -0.020414913073182106, 0.0032811902929097414, -0.016110489144921303, 0.009790698997676373, -0.035778969526290894, -0.03759528696537018, 0.018710561096668243, -0.034883253276348114, -0.017155494540929794, -0.021335512399673462, 0.011774963699281216, 0.09429923444986343, -0.01357262022793293, -0.019195741042494774, 0.01481667347252369, -0.02209438569843769, -0.021808253601193428, -0.04232269152998924, 0.029135726392269135, -0.03622682765126228, 0.003016829025000334, -0.036550283432006836, 0.0003263695980422199, -0.0032718598376959562, 0.01949431374669075, 0.00862128846347332, 0.00959165021777153, -0.012838629074394703, -0.04247197508811951, 0.016981326043605804, -0.011215140111744404, 0.014418576844036579, -0.011569694615900517, 0.001820982899516821, -0.016508586704730988, -0.008391139097511768, -0.0183497853577137, 0.010848144069314003, -0.008384918794035912, 0.002890868578106165, 0.01348553691059351, -0.009529447183012962, -0.03794362396001816, -0.015177449211478233, 0.0004342523170635104, 0.014742030762135983, 0.0030059434939175844, 0.06309837847948074, -0.02714524045586586, -0.0518023744225502, -0.028140483424067497, -0.025391126051545143, -0.0024119082372635603, 0.0021024500019848347, -0.010045729577541351, -0.031001806259155273, 0.011992672458291054, 0.0022937231697142124, -0.04140209034085274, -0.010673976503312588, -0.04453710466623306, 0.025316482409834862, -0.017304779961705208, 0.0346842035651207, -0.0546388179063797, 0.008341376669704914, -0.012067316100001335, -0.016558347269892693, -0.02118622697889805, 0.023562368005514145, -0.023624571040272713, 0.01603584550321102, -0.007700689136981964, 0.022392958402633667, 0.003495789598673582, 0.02891179732978344, -0.033017173409461975, 0.008807896636426449, 0.006705446634441614, -0.013896074146032333, 0.0006923933397047222, -0.013647263869643211, -0.021148905158042908, -0.0248935054987669, 0.03565456345677376, 0.04175042733550072, -0.009653853252530098, -0.008783015422523022, 0.014306612312793732, 0.014418576844036579, 0.004547014366835356, -0.01683204062283039, -0.01800145022571087, -0.014070241712033749, 0.04625389724969864, 0.028240008279681206, 0.029285011813044548, 0.019867530092597008, 0.009330399334430695, 0.022965222597122192, 0.005710204131901264, 0.008248073048889637, 0.005172151140868664, 0.007769112475216389, -0.02056420035660267, 0.005551587324589491, 0.015662629157304764, -0.017180373892188072, 0.0027322517707943916, 0.0007188295130617917, 0.007283931598067284, 0.0032376484014093876, 0.009286857210099697, -0.014281731098890305, -0.024818861857056618, 0.03209657222032547, -0.013199404813349247, 0.03401241451501846, -0.010033288970589638, -0.015936322510242462, -0.035480398684740067, 0.005620010197162628, 0.012415651232004166, -0.027170121669769287, -0.0020324718207120895, 0.02652321383357048, -0.00397475017234683, 0.0458558015525341, 0.002963956678286195, 0.0010698857950046659, -0.005588909145444632, 0.013821431435644627, 0.0006609032861888409, -0.00731503264978528, 0.03219609707593918, 0.011072073131799698, -0.03164871409535408, 0.0038845562376081944, 0.04889129102230072, 0.0369732603430748, 0.059764314442873, 0.027717504650354385, 0.008559086360037327, 0.006854732986539602, 0.009566769003868103, 0.01831246353685856, -0.019892411306500435, 0.028936676681041718, -0.005750636104494333, 0.004319974686950445, -0.01797656901180744, 0.005536036565899849, -0.0076695880852639675, -0.003887666156515479, -0.0018551943358033895, 0.005200142506510019, -0.016384180635213852, 0.031524308025836945, -0.030205611139535904, -0.004565675277262926, -0.01383387204259634, -0.0364258773624897, 0.009492126293480396, 0.033116694539785385, -0.008982064202427864, 0.025092553347349167, -0.023898262530565262, 0.05657954141497612, 0.01862347684800625, 0.029011320322752, -0.03040466085076332, 0.04289495572447777, 0.030205611139535904, 0.0054738339968025684, -6.798556569265202e-05, -0.02634904719889164, 0.04005851224064827, -0.03891398385167122, -0.022280992940068245, 0.04931426793336868, 0.024333680048584938, -0.0009485905757173896, -0.008938522078096867, 0.026921311393380165, 0.01939478889107704, 0.020240746438503265, 0.016558347269892693, -0.005856380332261324, 0.02510499395430088, 0.04436293616890907, 0.0044630407355725765, -0.015015722252428532, 0.03500765562057495, 0.021235987544059753, -0.012788866646587849, -0.004522133618593216, 0.009199773892760277, -0.0022579566575586796, 0.03224585950374603, 0.02600071206688881, 0.009454804472625256, -0.005859490483999252, 0.049563080072402954, 0.00791217852383852, 2.6727706426754594e-05, 0.030976925045251846, 0.012141959741711617, 0.05842074006795883, -0.00412092637270689, 0.005679103080183268, 0.00412092637270689, 0.003598423907533288, 0.01213573943823576, 0.04687592387199402, 0.0018489740323275328, -0.04262126237154007, 0.013249166309833527, 0.004357296507805586, 0.016433943063020706, -0.004447490442544222, 0.025677258148789406, -0.007327473256736994, -0.027294527739286423, -0.011296003125607967, -0.02926013059914112, -0.040456611663103104, 0.01226014457643032, -0.021385274827480316, 0.0027742385864257812, 0.03023049235343933, -0.0010932117002084851, 0.033713843673467636, -0.0016405951464548707, 0.011109394952654839, 0.024109750986099243, 0.038864221423864365, 0.0015807250747457147, -0.005290336441248655, 0.007725570350885391, 0.010114152915775776, 0.021994860842823982, 0.022144146263599396, 0.020551759749650955, -0.00410226546227932, -0.005840830039232969, -0.031051568686962128, 0.017043529078364372, -0.013709465973079205, -0.009541887789964676, -0.03873981535434723, 0.0432930514216423, -0.012173060327768326, -0.01724257692694664, -0.0033340626396238804, 0.011594575829803944, -0.003753930563107133, 0.014692268334329128, 0.013547739014029503, 0.05083201453089714, -0.04107863828539848, -0.036102425307035446, 0.01528941374272108, -0.02724476531147957, -0.040357086807489395, -0.023811178281903267, -0.004282653331756592, 0.003203436965122819, 0.01414488535374403, -0.02776726707816124, 0.006487737409770489, 0.007470539305359125, 0.013958277180790901, 0.005526706576347351, -0.05349428951740265, 0.01679471880197525, 0.011078293435275555, 0.015575545839965343, 0.0003055705747101456, 0.0018754102056846023, 0.023176711052656174, 0.04102887585759163, 0.03600290045142174, 0.027518456801772118, -0.0346842035651207, -0.024607371538877487, -0.013249166309833527, -0.002721366472542286, -0.015488462522625923, 0.005784847307950258, 0.0170684102922678, -0.02953382395207882, 0.002108670072630048, -0.007924619130790234, -0.027866791933774948, 0.015364057384431362, -0.006285578943789005, 0.0009532557451166213, -0.025751901790499687, 0.012776426039636135, 0.023948024958372116, 0.016632990911602974, -0.008509323932230473, 0.00993998534977436, 0.013808990828692913, 0.007750451564788818, -0.00042492192005738616, -0.00789351761341095, 0.025017909705638885, 0.014070241712033749, -0.008111227303743362, -0.02160920388996601, 0.02562749572098255, 0.006500178016722202, 0.015040603466331959, -0.002915749792009592, 0.03149942681193352, 0.008266733959317207, -0.013398452661931515, 0.015364057384431362, 0.017130613327026367, -0.009461024776101112, 0.03958577290177345, 0.02714524045586586, -0.026572976261377335, 0.0018178727477788925, -0.004886019043624401, 0.021074261516332626, -0.019991934299468994, -0.014020479284226894, -0.026125118136405945, -0.0033558334689587355, 0.034261226654052734, -0.017391864210367203, -0.00124871835578233, 0.038167551159858704, 0.009877782315015793, 0.011638117954134941, -0.004509693011641502, -0.0223307553678751, 0.003324732184410095, -0.025478210300207138, -0.004036952741444111, 0.0028675426729023457, -0.0002602792519610375, -0.05244928225874901, -0.00831027515232563, 0.017354542389512062, 0.015115246176719666, 0.003256309311836958, 0.006581041496247053, 0.007632266264408827, -0.03033001720905304, 0.02562749572098255, -0.005044635850936174, 0.05832121521234512, 0.010412725619971752, -0.03306693583726883, -0.03162383288145065, 0.04809509590268135, -0.0013194739585742354, 0.008671050891280174, -0.029732871800661087, 0.01290083210915327, 0.029061082750558853, -0.03650052100419998, 0.045756276696920395, 0.003287410596385598, 0.011140496470034122, 0.024594932794570923, 0.004861137829720974, 0.03162383288145065, 0.046378303319215775, 0.017578471451997757, 0.017603352665901184, -0.0032625296153128147, -0.017578471451997757, 0.008751913905143738, -0.013908514752984047, -0.01613537035882473, -0.018586155027151108, -0.01286351028829813, 0.021235987544059753, -0.011942910961806774, 0.011669219471514225, -0.02811560221016407, 0.0021366614382714033, -0.015836797654628754, 0.0015970532549545169, -0.01199889276176691, -0.03667468950152397, 0.022169027477502823, -0.007837534882128239, 0.01980532705783844, 0.01606072671711445, -0.014157325960695744, -0.004830036778002977, -0.009317958727478981, 0.010487368330359459, 0.025677258148789406, 0.012645800597965717, -0.02555285207927227, -0.014269290491938591, 0.010642874985933304, 8.110643830150366e-05, 0.006425534840673208, 0.015351616777479649, -0.049737248569726944, -0.013970717787742615, -0.02254224382340908, 0.027269646525382996, -0.016981326043605804, -0.0125151751562953, -0.048941053450107574, -0.025950949639081955, 0.008509323932230473, 0.023537486791610718, -0.037968505173921585, 0.025179637596011162, -0.005825279280543327, 0.006322900298982859, -0.007296372205018997, -0.020613960921764374, -0.012085977010428905, 0.015214771032333374, -0.0026000712532550097, -0.015152567997574806, 0.015637747943401337, -0.01572483219206333, -0.014393695630133152, 0.016919123008847237, -0.0006488515064120293, 0.02669738233089447, 0.00297328713349998, -0.010686417110264301, -0.02184557355940342, -0.026373928412795067, 0.0449352003633976, 0.014169765636324883, 0.008664830587804317, 0.009125130251049995, -0.002617176854982972, 0.01772775873541832, -0.015301854349672794, 0.05374309793114662, -0.020352710038423538, -0.002303053392097354, 0.012484073638916016, -0.00919355358928442, 0.007532742340117693, -0.0009540332830511034, -0.04826926440000534, -0.030976925045251846, 0.016010964289307594, -0.031151091679930687, 0.02019098401069641, -0.016769837588071823, -0.02042735368013382, 0.016334418207406998, -0.01033808197826147, -0.00962897203862667, -0.01980532705783844, -0.015040603466331959, 0.013535299338400364, 0.00884521845728159, 0.01114671677350998, 0.0012075091945007443, 0.030827637761831284, -0.01910865679383278, -0.020240746438503265, -0.023039866238832474, 0.003458468010649085, -0.019034013152122498, 0.01244675274938345, 0.01360994204878807, -0.004761613439768553, 0.004571895580738783, 0.02731940895318985, 0.012166840024292469, 0.004752283450216055, 0.043367695063352585, -0.03660004585981369, 0.049015697091817856, -0.008142327889800072, -0.0031350140925496817, -0.01538893859833479, -0.00020876768394373357, 0.04090446978807449, -0.033738721162080765, -0.007650927174836397, -0.02697107382118702, -0.010599332861602306, -0.0028893135022372007, -0.010418945923447609, -0.00015259090287145227, 0.0022424058988690376, -0.0005777071928605437, -0.013846312649548054, -0.02828977070748806, -0.03137502074241638, 0.010991210117936134, -0.005675992928445339, -0.02101205848157406, 0.006699226330965757, 0.007738010957837105, -0.03503253683447838, 0.04247197508811951, 0.004960662219673395, 0.019544076174497604, 0.05205118656158447, 0.014804232865571976, 0.015401378273963928, -0.005467613693326712, 0.028588343411684036, 0.00033433930366300046, -0.018996693193912506, 0.016259774565696716, -0.009660073556005955, -0.005682213231921196, -0.008745693601667881, 0.007041341159492731, -0.002296833321452141, 0.011140496470034122, -0.00279600964859128, -0.01751626841723919, -0.01565018855035305, -0.019606279209256172, 0.04048149287700653, 0.010076831094920635, -0.040182918310165405, -0.02617487870156765, -0.025702139362692833, 0.03936184197664261, -0.05807240307331085, 0.009274416603147984, 0.0270457174628973, 0.029757753014564514, 0.002668494125828147, -0.0020775687880814075, -0.010107932612299919, -0.013274047523736954, 0.02662273868918419, -0.004319974686950445, 0.002303053392097354, -0.0027928994968533516, 0.040630776435136795, -0.0060647595673799515, 0.017478948459029198, -0.023562368005514145, -0.013858752325177193, -0.054788101464509964, 0.035778969526290894, 0.014169765636324883, 0.03978482261300087, -0.009342839941382408, 0.010107932612299919, -0.005610679741948843, 0.017889484763145447, -0.012975474819540977, -0.020800570026040077, -0.033216219395399094, -0.030728114768862724, -0.011868267320096493, -0.01568751037120819, 0.011818505823612213, 0.0275931004434824, 0.009877782315015793, -0.01662055030465126, 0.0412776842713356, 0.028712747618556023, -0.04192459210753441, 0.010767280124127865, -0.015811916440725327, 0.0011118726106360555, -0.02926013059914112, 0.009660073556005955, -0.007750451564788818, 0.04247197508811951, -0.013597501441836357, 0.021795812994241714, -0.015637747943401337, -0.009709835052490234, 0.008086346089839935, 0.05677858740091324, -0.05394214764237404, 0.024881064891815186, 0.0020091459155082703, 0.0031878864392638206, -0.03376360237598419, -0.02960846573114395, -0.01476691197603941, -0.00242434861138463, -0.02652321383357048, -0.015836797654628754, 0.0026420580688863993, 0.0014788683038204908, 0.026747144758701324, -0.021634085103869438, -0.012179280631244183, 0.0033060715068131685, 0.04227292910218239, -0.0237489752471447, -0.03057882748544216, -0.01083570346236229, -0.03137502074241638, 0.006266918033361435, -0.014866435900330544, 0.002825555857270956, -0.02354992739856243, 0.033216219395399094, -0.018785202875733376, 0.020340269431471825, 0.01392095535993576, 0.0001650314370635897, -0.015040603466331959, 0.014256849884986877, -0.05498715117573738, 0.03582873195409775, 0.014256849884986877, 0.009772038087248802, 0.04147673398256302, 0.0024492298252880573, -0.005772406700998545, -0.046826161444187164, -0.008857659064233303, -0.022106826305389404, 0.024333680048584938, -0.012875950895249844, -0.03261907398700714, -0.0563804917037487, -0.028687866404652596, -0.02801607735455036, 0.009305518120527267, 0.011706540361046791, 0.01128978282213211, 0.011899368837475777, 0.044338054955005646, 0.017354542389512062, 0.003293630899861455, 0.0192206222563982, 0.016744956374168396, -0.011314664036035538, -0.00691693602129817, -0.0018598595634102821, -0.01321184542030096, 0.035579923540353775, 0.009977307170629501, 0.02891179732978344, 0.023363320156931877, 0.021036939695477486, 0.04040684923529625, 0.007849975489079952, 0.015986083075404167, 0.014120004139840603, -0.026224641129374504, -0.03438562899827957, -0.017429186031222343, 0.006437975447624922, 0.026448572054505348, -0.008894980885088444, 0.030305135995149612, 0.002251736354082823, 0.006929376162588596, -0.017491387203335762, -0.03172335773706436, 0.004276433028280735, -0.004008961375802755, -0.023350879549980164, -0.016956444829702377, 0.02257956564426422, 0.019432110711932182, -0.023500164970755577, -0.01745406724512577, 0.018635917454957962, 0.03829195722937584, 0.003114798106253147, 0.0064939577132463455, -0.011519933119416237, -0.023898262530565262, 0.02136039361357689, -0.013435774482786655, -0.006108301226049662, 0.0016825819620862603, -0.0105246901512146, 0.030006563290953636, -0.013896074146032333, 0.0014221082674339414, 0.024706896394491196, -0.042297810316085815, 0.012434312142431736, 0.034410510212183, -0.01525209192186594, 0.009684953838586807, -0.006133182439953089, -0.008789235725998878, -0.01765311509370804, 0.017877044156193733, -0.03057882748544216, 0.0034988997504115105, -0.0067738695070147514, 0.014804232865571976, -0.002043357351794839, 0.027070598676800728, -0.00831027515232563, -0.0003094582352787256, 0.05058320239186287, 0.022654209285974503, 0.004307534079998732, -0.013858752325177193, 0.004711851477622986, -0.02004169672727585, 0.006018107291311026, 0.028588343411684036, 0.013945836573839188, -0.013050118461251259, 0.0009524782653898001, 0.016807159408926964, -0.02499302849173546, 0.035778969526290894, -0.00896962359547615, -0.006500178016722202, 0.0023465952835977077, 0.007576283998787403, -0.0018147625960409641, 0.023848500102758408, -0.001509192050434649, 0.005828389432281256, 0.011115615256130695, -0.011538593098521233, 0.012322346679866314, -0.061754800379276276, -0.027070598676800728, 0.0013039233162999153, -0.017292339354753494, 0.011992672458291054, 0.02434612065553665, -0.01147639099508524, 0.007825094275176525, -0.025403566658496857, 0.04874200373888016, -0.04145185276865959, 0.020489556714892387, -0.017615793272852898, 0.015625309199094772], [0.03614243119955063, -0.001312321168370545, 0.019539782777428627, 0.009484024718403816, -0.011098327115178108, 0.026299672201275826, -0.0677110031247139, 0.027151664718985558, 0.04331710562109947, 0.061074431985616684, -0.00897955521941185, 0.0012128285598009825, 0.030963212251663208, 0.025178629904985428, -0.02405758574604988, 0.013295571319758892, -0.008704899810254574, 0.03833967447280884, 0.009803522378206253, -0.03759978711605072, 0.030963212251663208, 0.042353011667728424, -0.0365460067987442, 0.022163022309541702, -0.015728235244750977, -0.002823627321049571, 0.0014629613142460585, 0.032913826406002045, 0.04636634513735771, -0.05363070219755173, 0.02710682339966297, -0.01484261080622673, 0.015627341344952583, -0.01705106534063816, 0.036187272518873215, 0.006546891760081053, -0.0035256806295365095, -0.017477063462138176, 0.008895477280020714, 0.03441602364182472, -0.019887305796146393, -0.011782163754105568, -0.001569460378959775, -0.015178924426436424, 0.0003219495702069253, 0.04230816662311554, 0.02107561193406582, -0.009573708288371563, -0.049819156527519226, 0.033070772886276245, -0.01034722849726677, 0.056276366114616394, 0.036792635917663574, 0.03569401428103447, 0.016613859683275223, -0.009898810647428036, 0.005445466842502356, -0.006776705849915743, -0.005467887967824936, -0.04217364266514778, -0.0005345974350348115, 0.004355252720415592, 0.02062719315290451, 0.02594093792140484, -0.012645366601645947, 0.013609463348984718, -0.013217099010944366, 0.03699442371726036, -0.05618668347597122, -0.01627754606306553, 0.05367554724216461, 0.028295129537582397, 0.05533469095826149, -0.017140749841928482, -0.010868513025343418, -0.002781588351354003, 0.035649172961711884, 0.00959052424877882, 0.018743840977549553, 0.014853822067379951, -0.032308463007211685, -0.0009038410498760641, -0.025896096602082253, -0.01605333760380745, -0.0306717399507761, -0.020761718973517418, -0.052868396043777466, -0.025223471224308014, -0.0033659320324659348, -0.015178924426436424, 0.06416851282119751, -0.021254977211356163, -0.015885181725025177, 0.046321503818035126, 0.00631707813590765, 0.0011252471012994647, 0.046007610857486725, -0.03919166699051857, -0.00010579844820313156, 0.04712865501642227, -0.02847449667751789, -0.015862761065363884, -0.05766645818948746, 0.022028498351573944, 0.02223028615117073, -0.07425789535045624, -0.015212555415928364, 0.014158775098621845, 0.05676962435245514, 0.009893205948174, 0.01682685688138008, -0.011064696125686169, -0.0009907218627631664, 0.01392335630953312, -0.021669764071702957, -0.001685768598690629, -0.014696875587105751, -0.051029883325099945, 0.006490839645266533, -0.003761099651455879, 0.012802313081920147, 0.01304894220083952, -0.014539930038154125, -0.027353452518582344, -0.00441410718485713, 0.022645071148872375, -0.03627695515751839, -0.02342980168759823, -0.027577660977840424, 0.00015554473793599755, 0.008447060361504555, 0.01581791788339615, 0.07255391031503677, -0.007006519474089146, 0.0009199560154229403, -0.03219635784626007, -0.05919107794761658, -0.055379532277584076, -0.014820190146565437, 0.03134436532855034, 0.015268607996404171, -0.006350709591060877, 0.029505856335163116, 0.027375873178243637, -0.022633861750364304, -0.0470389686524868, 0.005700504407286644, 0.012006372213363647, -0.05981886386871338, -0.020335722714662552, -0.04694928601384163, 0.005535150412470102, -0.014573561027646065, 0.020492669194936752, -0.026905035600066185, 0.025514941662549973, 0.007152255158871412, 0.021793078631162643, 0.003309879917651415, 0.026456618681550026, -0.048967164009809494, -0.05591763183474541, -0.010038941167294979, -0.00013181015674490482, 0.005644452292472124, -0.0036574031691998243, 0.02374369464814663, 0.024483582004904747, -0.016243916004896164, -0.05793550983071327, 0.015997285023331642, 0.00030425810837186873, -0.026882614940404892, -0.0019380033481866121, -0.02647903934121132, -0.05515532195568085, 0.03647874295711517, 0.031837623566389084, -0.007600672543048859, -0.08179131150245667, 0.00648523448035121, 0.023788535967469215, 0.00445334380492568, -0.00860400591045618, -0.03356403112411499, 0.03782399743795395, -0.033676136285066605, -0.009921232238411903, -0.023183172568678856, 0.0508505180478096, 0.004324424080550671, -0.042128801345825195, 0.013116205111145973, -0.007337227463722229, -0.010240728966891766, 0.027958815917372704, -0.033608872443437576, 0.00631707813590765, 0.021748237311840057, 0.0030464348383247852, 0.03006637655198574, -0.03125468268990517, -0.014169985428452492, -0.05107472464442253, -0.019461309537291527, -0.041657961905002594, -0.01628875732421875, -0.037868838757276535, 0.029662800952792168, -0.07102929055690765, 0.014259668998420238, -0.03201699256896973, 0.0033491163048893213, 0.01557128969579935, 0.003335103392601013, 0.00485131423920393, 0.03876567259430885, -0.0002818372449837625, 0.051792193204164505, 0.004405699670314789, -0.05493111535906792, 0.028496917337179184, 0.025402838364243507, -0.01503318827599287, -0.022566597908735275, 0.00420671422034502, -0.008957134559750557, -0.0356043316423893, -0.03029058501124382, -0.030178481712937355, -0.03979703038930893, 0.011546744033694267, 0.0309856329113245, -0.011871847324073315, 0.0007756217382848263, 0.00610968517139554, -0.021064400672912598, 0.0027787857688963413, 0.007477357983589172, -0.027958815917372704, -0.005986370611935854, -0.0004547231364995241, 0.012129686772823334, 0.012040003202855587, -0.005812608636915684, -0.02230875939130783, 0.012566893361508846, -0.014326930977404118, 0.021333450451493263, 0.019920935854315758, 0.04058176279067993, -0.03546980395913124, 0.026837773621082306, -0.06098474562168121, 0.005322152283042669, 0.021041980013251305, 0.04407941550016403, -0.02268991246819496, 0.018149688839912415, 0.03452812880277634, -0.01651296578347683, 0.012051213532686234, 0.015885181725025177, -0.004949405323714018, -0.09515414386987686, -0.03486444056034088, 0.0389450378715992, -0.03562675043940544, -0.028676284477114677, 0.07336106151342392, 0.010520990006625652, 0.04073870927095413, 0.001877747243270278, -0.020380564033985138, -0.08286751061677933, 0.012051213532686234, -0.0016731568612158298, -0.003912440501153469, 0.029035016894340515, -0.03416939452290535, -0.03455055132508278, -0.010431306436657906, 0.02473021112382412, -0.037779152393341064, 0.03300350904464722, 0.029954273253679276, 0.02520105056464672, -0.04838422313332558, -0.025918517261743546, -0.019046522676944733, 0.06093990430235863, -0.013004100881516933, 0.0007342832395806909, -0.0306717399507761, 0.026299672201275826, 0.0012044206960126758, 0.0065412865951657295, 0.054527539759874344, 0.0185084231197834, 0.008032274432480335, 0.0049998522736132145, 0.04757707193493843, -0.031613416969776154, 0.0019337994745001197, -0.03995397686958313, 0.0321066752076149, 0.01726406440138817, 0.026591142639517784, -0.019831253215670586, -0.03376581892371178, 0.00259661627933383, 0.02746555767953396, -0.02381095662713051, 0.0316358357667923, -0.01240994781255722, -0.035043809562921524, -0.0028208247385919094, 0.015851549804210663, 0.040828391909599304, -0.03708410635590553, 0.002096350770443678, 0.023272855207324028, 0.00301560596562922, 0.02555978298187256, 0.018934419378638268, -0.04154586046934128, -0.00405537337064743, 0.03950555995106697, -0.02053751051425934, 0.0028390418738126755, -0.013329203240573406, 0.012645366601645947, 0.01802637428045273, 0.02421453222632408, -0.011412219144403934, -0.027981236577033997, -0.03800336271524429, 0.03073900379240513, 0.00020336423767730594, 0.0013179263332858682, -0.02085140161216259, 0.01797032169997692, -0.055603738874197006, 0.016793226823210716, -0.013665515929460526, 0.040447235107421875, 0.007942590862512589, 0.028362391516566277, -0.007174676284193993, 0.05358586087822914, 0.044415730983018875, 0.03219635784626007, -0.020817771553993225, -0.037487681955099106, -0.05515532195568085, 0.0005966051248833537, 0.01605333760380745, 0.0023247632198035717, -0.006821547634899616, 0.02108682133257389, 0.014652034267783165, -0.01221937034279108, -0.010038941167294979, 0.04170280322432518, -0.009041212499141693, 0.03201699256896973, -0.029819747433066368, 0.01719680242240429, 0.007522199302911758, -0.027667345479130745, -0.028183024376630783, 0.033451925963163376, 0.06179189682006836, 0.014988346956670284, 0.015291028656065464, 0.015470395796000957, -0.007499778643250465, 0.04901200532913208, 0.000623580242972821, 0.02358674816787243, 0.021367082372307777, 0.02419211156666279, 0.018553264439105988, -0.01597486436367035, -0.0021355871576815844, 0.05493111535906792, -0.049594949930906296, -0.0035368911921977997, 0.041747648268938065, 0.01557128969579935, -0.012163317762315273, -0.021411923691630363, -0.00607044855132699, 0.021669764071702957, -0.04824969545006752, 0.024640528485178947, -0.031008053570985794, 0.008088326081633568, -0.0029427383560687304, -0.034146975725889206, -0.0008414830081164837, -0.04726317897439003, 0.02755524031817913, -0.03363129496574402, -0.011636427603662014, -0.004705578554421663, -0.03645632416009903, -0.01758916676044464, -0.02634451352059841, 0.016378439962863922, 0.06663480401039124, 0.013587042689323425, 0.021064400672912598, 0.029864588752388954, -0.02580641396343708, 0.025380417704582214, -0.025783991441130638, 0.06703837960958481, 0.017925480380654335, -0.01519013475626707, 0.027263769879937172, -0.0025531756691634655, -0.01864294707775116, 0.005490308627486229, -0.0046691447496414185, 0.03221878036856651, 0.008850635960698128, 0.05273386836051941, 0.035268016159534454, -0.017914269119501114, -0.009881995618343353, -0.007942590862512589, -0.01045933272689581, -0.012611735612154007, -0.051567982882261276, -0.032375726848840714, -0.020974718034267426, -0.03795852139592171, 0.006003186106681824, 0.009192553348839283, -0.02504410408437252, -0.030402690172195435, 0.022275127470493317, -0.036120008677244186, -0.020761718973517418, -0.04127680882811546, 0.005700504407286644, 0.03143404796719551, 0.012129686772823334, 0.04210637882351875, 0.006642180494964123, 0.011793374083936214, -0.06434787809848785, 0.00940555240958929, 0.010240728966891766, -0.07972858846187592, -0.02258901856839657, -0.061388321220874786, 0.03842936083674431, 0.0020641207229346037, 0.008021064102649689, 0.021176505833864212, 0.012196949683129787, 0.021041980013251305, 0.01354220137000084, 0.007953801192343235, 0.02854175865650177, -0.03804820403456688, -0.039079565554857254, -0.01788063906133175, -0.01236510556191206, 0.011770953424274921, 0.049056846648454666, -0.009299052879214287, -0.013788830488920212, -0.054751746356487274, 0.005319349933415651, -0.034146975725889206, -0.010162255726754665, 0.018968049436807632, -0.018138477578759193, 0.02336253970861435, -0.045245300978422165, -0.018060004338622093, 0.10098356753587723, -0.009657786227762699, 0.05336165428161621, -0.004159070085734129, 0.0066365753300487995, 0.0044981855899095535, -0.0842127576470375, -0.016625069081783295, 0.0467250794172287, -0.0090187918394804, 0.008486296981573105, 0.014394193887710571, -0.002679293043911457, 0.010666725225746632, -0.03495412692427635, 0.025514941662549973, -0.017992742359638214, -0.05591763183474541, -0.028138183057308197, 0.00471678888425231, 0.025021683424711227, -0.003850783221423626, 0.0034023658372461796, 0.00612650066614151, -0.00849190168082714, -0.012981679290533066, -0.025021683424711227, 0.001960424240678549, 0.013900934718549252, 0.0047111837193369865, -0.013889724388718605, -0.036792635917663574, 0.04367583990097046, -0.005039088893681765, -0.039909135550260544, 0.0013985013356432319, 0.008032274432480335, -0.0009774095378816128, 0.041209544986486435, 0.022544177249073982, 0.01697259396314621, 0.011221641674637794, -0.0076567246578633785, -0.0065412865951657295, -0.002589609706774354, 0.016546597704291344, -0.05138861760497093, -0.04096291586756706, -0.011883057653903961, -0.0006354913348332047, 0.017757322639226913, -0.01895684003829956, 0.02885564975440502, 0.027913974598050117, -0.019954567775130272, 0.01682685688138008, -0.013497359119355679, 0.02990943193435669, 0.0038143491838127375, -0.02015635557472706, 0.053765229880809784, -0.0018805498257279396, -0.0014097117818892002, 0.0134300971403718, 0.0027325425762683153, -0.027510398998856544, -0.018665367737412453, 0.01285836473107338, -0.0054034278728067875, 0.003971295431256294, -0.021568870171904564, 0.03629937767982483, 0.015593710355460644, -0.03372097760438919, 0.0049045635387301445, -0.02138950303196907, -0.008901082910597324, 0.035649172961711884, -0.01514529250562191, -0.004896156024187803, -0.01297046896070242, 0.015156503766775131, 0.016165442764759064, -0.03804820403456688, -0.006625365000218153, -0.010038941167294979, -0.04824969545006752, 0.014539930038154125, 0.01533586997538805, -0.06703837960958481, 0.04923621565103531, 0.02168097533285618, 0.022488124668598175, -0.05641089007258415, 0.02999911457300186, 0.05161282792687416, 0.0005629738443531096, 0.022846858948469162, -0.015425553545355797, -0.02329527586698532, -0.016042128205299377, -0.016008496284484863, -0.02191639319062233, -0.02138950303196907, 0.026905035600066185, 0.016378439962863922, -0.00022525960230268538, 0.017140749841928482, 0.0036153641995042562, -0.02679293043911457, 0.022084549069404602, -0.008934713900089264, -0.0015386317390948534, 0.017477063462138176, -0.002679293043911457, -0.007729592267423868, -0.0012674793833866715, -0.048742957413196564, 0.005341770593076944, 0.00841342844069004, -0.05771129950881004, -0.022207865491509438, -0.026994718238711357, -0.04517803713679314, 0.050491783767938614, -0.007028940599411726, 0.04838422313332558, -0.024102427065372467, -0.010010914877057076, -0.05739741027355194, -0.01576186716556549, -0.017521904781460762, -0.07138802856206894, -0.03224119916558266, -0.002582603134214878, 0.01612059958279133, -0.02329527586698532, -0.02313833124935627, 0.016154231503605843, -0.022633861750364304, -0.024909578263759613, 0.0029147120658308268, -0.01948373019695282, -0.019786411896348, -0.03145647048950195, -0.03692715987563133, -0.021938813850283623, 0.02146797627210617, -0.008021064102649689, -0.032375726848840714, 0.01742101088166237, 0.009786706417798996, -0.0022911319974809885, 0.03125468268990517, 0.020133934915065765, 0.009069238789379597, -0.006591733545064926, -0.0026820956263691187, 0.026770509779453278, -0.0352904386818409, 0.047308020293712616, 0.03206183388829231, -0.002603622619062662, 0.002376611577346921, 0.03620969504117966, -0.014696875587105751, 0.015291028656065464, -0.02266749180853367, -0.025761570781469345, 0.0090972650796175, 0.01698380336165428, 0.02946101315319538, -0.017151959240436554, -0.011636427603662014, 0.009119685739278793, 0.02504410408437252, -0.011714900843799114, 0.022263916209340096, 0.00656370772048831, 0.0002823627437464893, 0.057800985872745514, 0.011479482054710388, 0.05327197164297104, -0.029169542714953423, 0.02374369464814663, -0.03981945291161537, -0.026366934180259705, -0.011546744033694267, 0.027734607458114624, -0.025088945403695107, 0.025761570781469345, -0.004259963985532522, -0.01282473374158144, 0.014898663386702538, -0.00028954443405382335, 0.03105289489030838, -0.029707644134759903, -0.009999704547226429, -0.041366491466760635, 0.012185739353299141, 0.006417972035706043, -0.0249544195830822, -0.002404637634754181, -0.00936631578952074, -0.01549281645566225, 0.015156503766775131, -0.009074844419956207, 0.013407675549387932, 0.015425553545355797, 0.011490692384541035, 0.00473921000957489, 0.024169690907001495, 0.0017362155485898256, 0.01697259396314621, -0.011714900843799114, 0.030918369069695473, -0.016468124464154243, 0.02031330205500126, -0.00849190168082714, -0.06582765281200409, -0.039998818188905716, -0.03407971188426018, -0.0004718890995718539, -0.03479718044400215, 0.014775348827242851, 0.016176652163267136, -0.021602502092719078, -0.021826710551977158, -0.04605245217680931, -0.027757028117775917, -0.00012611736019607633, -0.03730831667780876, 0.003920848481357098, 0.012376315891742706, -0.0056920964270830154, -0.015593710355460644, -0.03730831667780876, 0.011793374083936214, -0.022196654230356216, -0.012656576931476593, 0.000931867107283324, -0.0027381479740142822, -0.040536921471357346, -0.01979762129485607, -0.018687788397073746, -0.007191491778939962, 0.01865415833890438, -0.004618697799742222, 0.0063563147559762, 0.01774611324071884, -0.003775112796574831, -0.0039993212558329105, -0.02596335858106613, 0.01895684003829956, -0.013575832359492779, -0.0354473851621151, 0.03378824144601822, -0.03295866772532463, 0.016378439962863922, -0.03197215124964714, -0.0025475705042481422, -0.012006372213363647, -0.035873379558324814, 0.0032762486953288317, 0.023698851466178894, -0.04201669618487358, -0.008845030330121517, 0.005891081877052784, 0.02746555767953396, -0.01172611117362976, -0.013385254889726639, -0.012208160012960434, -0.0008043484413065016, 0.00567247811704874, 0.012791101820766926, 0.03022332303225994, 0.011501902714371681, 0.013194677419960499, 0.0010096394689753652, 0.037420421838760376, 0.0006789317703805864, -0.028339970856904984, -0.03712894767522812, 0.03134436532855034, 0.0099716791883111, -0.02694987691938877, -0.05618668347597122, -0.002487314399331808, -0.021131662651896477, 0.04116470366716385, 0.004416910000145435, -0.0005209347582422197, -0.04246511310338974, -0.02131102979183197, 0.027308611199259758, -0.03759978711605072, 0.010050151497125626, -0.007836091332137585, 0.004840103909373283, 0.03533528000116348, -0.017712481319904327, 0.015873970463871956, -0.01681564748287201, 0.021378293633461, 0.03706168755888939, -0.0037302710115909576, -0.0033743397798389196, 0.003870401531457901, -0.0007097604684531689, 3.06535221170634e-05, -0.0352904386818409, -0.008783373050391674, 0.024416320025920868, -0.04042481631040573, -0.04085081070661545, 0.01749948412179947, -0.012376315891742706, -0.0015932825626805425, 0.01621028408408165, 0.0689665749669075, 0.05295807868242264, -0.00047118845395743847, -0.030649319291114807, -0.010683541186153889, 0.010874118655920029, -0.013833672739565372, -0.026053043082356453, 0.019450098276138306, 0.004750420339405537, -0.03143404796719551, -0.03120984137058258, -0.038788091391325, -0.050357259809970856, 0.019842464476823807, -0.03896746039390564, -0.017252853140234947, 0.02609788440167904, 0.0040918076410889626, 0.023497063666582108, -0.01841873861849308, 0.0025559784844517708, 0.0006498547154478729, -0.012645366601645947, 0.003130513010546565, -0.02032451145350933, -0.03594064339995384, 0.024169690907001495, 0.020515089854598045, 0.007382069248706102, 0.006395550910383463, -0.017062276601791382, -0.0012163318460807204, -0.034505706280469894, 0.006440392695367336, -0.010414490476250648, 0.007522199302911758, 0.01696138270199299, 0.0011511711636558175, -0.05421364679932594, -0.010515384376049042, -0.029707644134759903, 0.0023317697923630476, -0.010924565605819225, -0.03228604421019554, 0.0182730033993721, 0.02191639319062233, -0.012847154401242733, -0.02959553897380829, -0.013990618288516998, 0.011860636062920094, 0.011389798484742641, 0.01244357880204916, -0.01979762129485607, -0.014506298117339611, 0.002714325673878193, 0.013037731871008873, -0.030649319291114807, 0.014136354438960552, -0.009259816259145737, 0.022779596969485283, -0.00017744011711329222, 0.020414195954799652, -0.01674838550388813, -0.02459568716585636, 0.008912293240427971, -0.023497063666582108, 0.03804820403456688, -0.014293299987912178, -0.0023317697923630476, -0.012914417311549187, -0.03638906031847, -0.004086202476173639, -0.02457326650619507, 0.025671888142824173, -0.007208307273685932, -0.010179071687161922, 0.0033210902474820614, 0.02032451145350933, 0.019068943336606026, -0.0124772097915411, 0.017409799620509148, 0.010902144946157932, 0.0047868541441857815, 0.03813788667321205, 0.016075758263468742, 0.002858659951016307, 0.0006137711461633444, 0.004781248979270458, 0.04847390577197075, -0.03392276540398598, 0.015705814585089684, 0.022432073950767517, 0.002505531534552574, 0.02564946748316288, -0.002033292083069682, -0.018407529219985008, -0.03959524258971214, 0.017174381762742996, -0.03035784885287285, 0.004657934419810772, -0.010666725225746632, 0.02672566846013069, -0.02175944671034813, 0.0252683125436306, 0.003898427588865161, 0.015515237115323544, -0.026523880660533905, -0.06156769022345543, -0.04694928601384163, -0.008917897939682007, 0.06340619921684265, 0.0022841254249215126, 0.006743074394762516, -0.004641118459403515, 0.0061152903363108635, 0.0029006991535425186, 0.08475086092948914, -0.008346166461706161, -0.02191639319062233, 0.011216036975383759, 0.018362686038017273, -0.03105289489030838, 0.028048498556017876, 0.0013186270371079445, 0.03950555995106697, -0.020716877654194832, -0.01697259396314621, 0.04497624933719635, 0.017779745161533356, 0.03952798247337341, 0.013452517800033092, -0.0090187918394804, 0.009719444438815117, -0.01658022776246071, 0.0031361181754618883, -0.0038928224239498377, 0.011860636062920094, -0.011513113044202328, -0.019831253215670586, -0.01666991226375103, 0.013463728129863739, 0.04513319581747055, 0.01560492068529129, -0.006216184236109257, 0.014629612676799297, -0.0033491163048893213, 0.005445466842502356, 0.008312534540891647, 0.015952443704009056, -0.003951677121222019, -0.006042422726750374, -0.007718381937593222, -0.0014755730517208576, -0.006154526956379414, 0.0050727203488349915, -0.013104994781315327, 0.010532200336456299, 0.021142873913049698, 0.02100834809243679, -0.028115762397646904, 0.02822786569595337, -0.014382983557879925, 0.03105289489030838, -0.008368587121367455, 0.04161312058568001, 0.012241791002452374, -0.06497566401958466, 0.014562350697815418, 0.027981236577033997, -0.007695961277931929, 0.0016325190663337708, 0.013138625770807266, 0.015459184534847736, 0.006787916179746389, -0.00048555180546827614, 0.02261144109070301, -0.028183024376630783, 0.04033513367176056, 0.019304363057017326, 0.003990913741290569, -0.023541906848549843, 0.00648523448035121, 0.03616484999656677, -0.015089240856468678, 0.01804879494011402, 0.0007237734971567988, 0.01666991226375103, 0.006042422726750374, 0.004419712815433741, 0.033900342881679535, 0.010818066075444221, 0.021288609132170677, 0.009870785288512707, -0.019909726455807686, -0.0015806708252057433, -0.0034696285147219896, 0.01924831047654152, -0.008957134559750557, -0.005773372016847134, 0.026613565161824226, -0.017331326380372047, -0.01621028408408165, 0.010969406925141811, -0.013441307470202446, 0.000315293378662318, 0.03598548471927643, 0.021647343412041664, -0.027218926697969437, 0.010033336468040943, 0.04663539305329323, -0.005885476712137461, 0.006586128380149603, 0.0038956250064074993, -0.019976988434791565, -0.01556007843464613, 0.007460542023181915, -0.012656576931476593, 0.005515532102435827, 0.01977520063519478, 0.026591142639517784, 0.048742957413196564, -0.06730742752552032, -0.003870401531457901, 0.05699383467435837, 0.029124701395630836, 0.0031277104280889034, 0.02594093792140484, -0.00883382000029087, 0.014696875587105751, 0.02793639525771141, 0.019147416576743126, 0.046321503818035126, -0.009495235048234463, -0.004203911870718002, 0.007791250012814999, 0.007309201173484325, -0.02816060371696949, 0.000338239740813151, -0.020358143374323845, 0.03784641623497009, -0.019371625036001205, 0.011031064204871655, -0.008362981490790844, 0.004327226430177689, 0.0182730033993721, -0.013598253019154072, 0.016625069081783295, 0.02170339599251747, -0.05744225159287453, 0.023945482447743416, 0.009994099847972393, -0.018284212797880173, -0.01696138270199299, 0.00026379546034149826, -0.0063282884657382965, -0.002302342327311635, 0.004837301094084978, -0.043877627700567245, -0.008222851902246475, -0.006776705849915743, 0.0254252590239048, -0.023026226088404655, -0.020515089854598045, 0.01582912914454937, 0.009898810647428036, 0.022432073950767517, 0.018542053177952766, 0.01834026537835598, 0.06080538034439087, 0.008693689480423927, 0.003859190968796611, 0.018239371478557587, -0.022129392251372337, 0.0013788830256089568, -0.032846562564373016, 0.02313833124935627, 0.007976221852004528, 0.009612944908440113, -0.014461456798017025, 0.0019968580454587936, 0.011501902714371681, -0.01266778726130724, 0.004705578554421663, 0.01627754606306553, 0.009203764609992504, 0.004733604844659567, -0.02207333967089653, 0.010666725225746632, 0.005840634927153587, 0.03282414376735687, -0.003870401531457901, -0.008783373050391674, 0.019080154597759247, -0.0016619464149698615, 0.02047024853527546, 0.011210431344807148, 0.04650086909532547, 0.05959465354681015, 0.014192406088113785, -0.011462666094303131, -0.018149688839912415, 0.027981236577033997, -0.021367082372307777, 0.004136649426072836, -0.004195503890514374, 0.030178481712937355, 0.012981679290533066, -0.009231789968907833, 0.021669764071702957, -0.02816060371696949, 0.0249544195830822, 0.023026226088404655, 0.018979260697960854, -0.003794731106609106, -0.03363129496574402, 0.015784287825226784, -0.027801869437098503, 0.011871847324073315, -0.03775673359632492, 0.00864324253052473, 0.01719680242240429, -0.010369649156928062, -0.026008201763033867, 0.007247543893754482, 0.02169218473136425, -0.018553264439105988, 0.02040298469364643, -0.019651886075735092, -0.023990323767066002, -0.044639937579631805, 0.008155588991940022, 0.02641177736222744, -0.01665870100259781, -0.060626015067100525, -0.00966899748891592, 0.006059238221496344, 0.020503878593444824, 0.0505366250872612, 0.011103932745754719, 0.006843968294560909, 0.020122723653912544, -0.013777620159089565, 0.02443874068558216, 0.05457238107919693, -0.0021271794103085995, -0.004226332530379295, -0.015347080305218697, 0.025783991441130638, 0.0018847538158297539, -0.00420671422034502, -0.008323745802044868, 0.021781867370009422, 0.0009080449235625565, -0.023340119048953056, 0.004983036778867245, 0.00048520148266106844, 0.023183172568678856, -0.010745198465883732, -0.0011196418199688196, 0.021557658910751343, -0.010302386246621609, -0.012073635123670101, -0.011316930875182152, 0.0062329997308552265, 0.004299200605601072, 0.018228162080049515, -0.008783373050391674, 0.002753562293946743, -0.009562497958540916, -0.005445466842502356, 0.03217393904924393, 0.032599933445453644, 0.0118382154032588, -0.019607044756412506, 0.01556007843464613, 0.0005503621068783104, -0.014405404217541218, 0.030043955892324448, -0.03719621151685715, -0.013979407958686352, -0.02497684210538864, 0.004310410935431719, 0.024864736944437027, 0.011350561864674091, -0.02154644951224327, -0.018676578998565674, 0.012948048301041126, 0.019976988434791565, 0.0306717399507761, -0.0051119569689035416, -0.014158775098621845, 0.021120453253388405, 0.0006018600543029606, -0.012813523411750793, 0.022880490869283676, 0.00905802845954895, -0.016243916004896164, -0.0006666703266091645, 0.012084845453500748, -0.0182730033993721, -0.02221907489001751, -0.02237602137029171, -0.02656872197985649, 0.01810484752058983, -0.012163317762315273, 0.004013334400951862, 0.015044398605823517, -0.013418886810541153, -0.007886538282036781, -0.027824290096759796, 0.01312741544097662, -0.024775054305791855, 0.00338555034250021, 0.021882761269807816, -0.012690208852291107, 0.017779745161533356, -0.019293151795864105, 0.017308905720710754, -0.0036489954218268394, -0.004554237704724073, 0.011232852004468441, -0.020952295511960983, -0.006361919920891523, -0.03022332303225994, -0.014394193887710571, 0.04605245217680931, 0.023474643006920815, -0.02039177529513836, -0.004526211880147457, -0.03715137019753456, 0.04919137433171272, 0.006591733545064926, -0.006249815691262484, 0.008105142042040825, -0.005347375757992268, -0.011451455764472485, 0.016759594902396202, -0.006154526956379414, 0.028519337996840477, -0.019461309537291527, -0.02091866545379162, -0.017219223082065582, -0.030178481712937355, 0.015021977946162224, -0.029483433812856674, -0.04390005022287369, 0.034124553203582764, -0.001959022833034396, 0.02800365723669529, -0.02609788440167904, 0.008329350501298904, 0.028945334255695343, -0.0011848025023937225, -0.013766409829258919, -0.002697510179132223, 0.0038143491838127375, -0.026209989562630653, -0.022353600710630417, 0.007959405891597271, -0.0013907941756770015, 0.026815351098775864, 0.0267032478004694, 0.021580081433057785, 0.015728235244750977, -0.018766261637210846, 0.04396731033921242, 0.0021117650903761387, -0.03073900379240513, 0.0124772097915411, -0.011681269854307175, 0.030806265771389008, 0.002261704532429576, 0.00405537337064743, -0.0033070773351937532, 3.166071110172197e-05, 0.00646841898560524, 0.0034724310971796513, -0.001904372009448707, 0.012925627641379833, 0.000627083529252559, 0.00028796796686947346, 0.022734755650162697, 0.0306717399507761, -0.01977520063519478, 0.018979260697960854, 0.0106891468167305, -0.020212408155202866, -0.00252935360185802, -0.011283298954367638, -0.014472667127847672, 0.014562350697815418, -0.02032451145350933, 0.009753075428307056, 0.019046522676944733, 0.020649613812565804, 0.02002182975411415, 0.028496917337179184, 0.00913650169968605, -0.004733604844659567, 0.0017250051023438573, -0.04129922762513161, 0.001007537473924458, 0.0010187479201704264, -0.025828834623098373, 0.025223471224308014, -0.029707644134759903, 0.016849277541041374, -0.001361366710625589, 0.024685369804501534, -0.007101808208972216, 0.04587308689951897, 0.014528718777000904, 0.017219223082065582, -0.02198365516960621, -0.042285747826099396, 0.023407381027936935, 0.010448122397065163, -0.059101395308971405, -0.03188246861100197, -0.023115908727049828, 0.013396465219557285, -0.011047880165278912, 0.008402218110859394, 0.020582351833581924, 0.04513319581747055, 0.006855178624391556, -0.01698380336165428, 0.0072307283990085125, -0.0033042747527360916, 0.021815499290823936, -0.00917013268917799, -0.032756879925727844, 0.0069448621943593025, 0.026120305061340332, -0.011288904584944248, 0.0005051700863987207, 0.011188010685145855, -0.005266100168228149, -0.012320264242589474, 0.023384960368275642, -0.002438268857076764, 0.011804584413766861, -0.045693717896938324, -0.031478893011808395, -0.00017402443336322904, -0.029931852594017982, -0.003158539067953825, -0.027958815917372704, -0.01774611324071884, -0.00028446470969356596, -0.010717172175645828, 0.002911909483373165, 0.011115143075585365, -0.002822226146236062, 0.012342684902250767, 0.02641177736222744, -0.00504189170897007, 0.033676136285066605, -0.011288904584944248, 0.010997433215379715, -0.01635601930320263, -0.017398590222001076, -0.05394459515810013, 0.0019478125032037497, 0.0013655707007274032, 0.018093636259436607, 0.00030180581961758435, -0.0322636216878891, -0.0011147372424602509, -0.0009654983878135681, -0.0028124169912189245, 0.03538012132048607, -0.035133492201566696, 0.0126341562718153, 0.01949493959546089, 0.009943652898073196, -0.039617665112018585, -0.044169098138809204, 0.027308611199259758, 0.027263769879937172, -0.00017875383491627872, 0.012073635123670101, -0.02587367594242096, -0.005778977181762457, 0.004279582295566797, -0.046456027776002884, 0.016400860622525215, -0.008430244401097298, 0.020571142435073853, -0.03280172124505043, 0.008665663190186024, -0.010571436956524849, -0.004935392644256353, 0.01214089710265398, -0.0196294654160738, -0.04374310374259949, -0.024550843983888626, -0.0037695076316595078, 0.002801206661388278, 0.00048625245108269155, 0.014887453056871891, 0.005664070602506399, 0.004335634410381317, 0.02123255655169487, -0.03419181704521179, 0.07111898064613342, -0.00032562800333835185, 0.014338142238557339, -0.0010292577790096402, -0.03470749408006668, -0.002815219573676586, -0.02342980168759823, 0.015010767616331577, -0.022510547190904617, -0.008934713900089264, 0.014674454927444458, -0.03800336271524429, -0.01233147457242012, -0.026882614940404892, -0.00982033833861351, 0.010072573088109493, -0.001974437152966857, 0.023115908727049828, -0.020649613812565804, -0.0030940789729356766, 0.010577041655778885, -0.008710505440831184, 0.0124772097915411, -0.006434787530452013, 0.01736495830118656, 0.03201699256896973, -0.010257544927299023, -0.03616484999656677, -0.020660825073719025, 0.0026891021989285946, 0.007051361259073019, 0.0118382154032588, 0.005851845256984234, 0.037487681955099106, 0.028250286355614662, 0.028810808435082436, 0.002309348899871111, -0.009618550539016724, 0.027981236577033997, -0.027600081637501717, 0.018598105758428574, 0.029191963374614716, 0.0067318640649318695, 0.0660967007279396, 0.032913826406002045, -0.011625217273831367, -0.0316358357667923, -0.007124229334294796, -0.012589314952492714, 0.027420714497566223, 0.02001062035560608, -0.0126341562718153, -0.0077520133927464485, 0.06049148738384247, 0.0016871698899194598, -0.004290792625397444, 0.03156857565045357, 0.0070177302695810795, -0.0021411923225969076, 0.0007700165151618421, -0.026972297579050064, -0.02053751051425934, 0.08282266557216644, 0.030716581270098686, -0.005515532102435827, -0.042756587266922, -0.03300350904464722, -0.00890668760985136, 0.035738855600357056, 0.003534088609740138, 0.046231817454099655, -0.02032451145350933, 0.04147859662771225, 0.010072573088109493, -0.014472667127847672, 0.009069238789379597, 0.008878661319613457, -0.01797032169997692, -0.028676284477114677, 0.0238333772867918, 0.01153553370386362, 0.004814880434423685, 0.0009907218627631664, 0.02078413963317871, -0.003985308576375246, -0.008626426570117474, -0.011064696125686169, 0.011440245434641838, 0.0007024036021903157, 0.006871994584798813, 0.02558220364153385, -0.04910168796777725, -0.01788063906133175, 0.0024999261368066072, -0.010212702676653862, -0.026008201763033867, -0.021512817591428757, -0.010274359956383705, 0.014528718777000904, -0.013631884939968586, -0.03881051391363144, 0.054527539759874344, 0.013575832359492779, -0.00462710577994585, -0.03385550156235695, -0.0319497287273407, 0.0035789301618933678, 0.05546921491622925, -0.013486148789525032, 0.00424595084041357, -0.013934566639363766, -0.010599463246762753, 0.02793639525771141, -0.038855355232954025, 0.02244328334927559, 0.01622149348258972, 0.04087323322892189, 0.03340708464384079, 0.02198365516960621, -0.029348909854888916, 0.018228162080049515, -0.024864736944437027, 0.020033041015267372, -0.015279818326234818, 0.023990323767066002, -0.011849425733089447, 0.016871700063347816], [0.03757593408226967, 0.002611355157569051, 0.002970452420413494, 0.015444054268300533, -0.03934556618332863, 0.04309166967868805, -0.05295104160904884, -0.020971279591321945, 0.007928866893053055, 0.030727233737707138, 0.009600823745131493, 0.013628458604216576, 0.004383859224617481, 0.04157484322786331, -0.002832559170201421, -0.019672783091664314, -0.0066303713247179985, -0.0011476747458800673, -0.012169087305665016, 0.00787715706974268, 0.01694938912987709, 0.09542219340801239, -0.012743642553687096, 0.01752394624054432, 0.007946103811264038, 0.000558755302336067, 0.008986049331724644, -0.02801533043384552, 0.06278743594884872, -0.0018874150700867176, 0.009922575205564499, -0.005676609463989735, 0.02303967997431755, -0.05432997643947601, 0.01843174360692501, 0.00021168783132452518, 0.01824788562953472, 0.0021445287857204676, 0.008221890777349472, -0.010939538478851318, 0.004912450443953276, -0.028934620320796967, -0.003128455253317952, 0.014949936419725418, -1.1838987120427191e-05, 0.033829834312200546, 0.026015877723693848, -0.05970781669020653, -0.004220110829919577, -0.020764438435435295, 0.019408488646149635, 0.046516019850969315, 0.011450893245637417, 0.03550753369927406, -0.010221343487501144, -0.012778116390109062, 0.037920668721199036, 0.038288384675979614, 0.011663478799164295, -0.026981130242347717, -0.02371765486896038, -0.03569139167666435, -0.02760164998471737, 0.03171546757221222, 0.002823940711095929, -0.022304248064756393, -0.04548181965947151, -0.021304521709680557, -0.02626868151128292, -0.028681814670562744, 0.017926134169101715, 0.0250965878367424, 0.032450899481773376, -0.003093981882557273, 0.0333242230117321, -0.007618607021868229, 0.03233598917722702, 0.031278807669878006, 0.006348839495331049, 0.026682361960411072, -0.03212914988398552, 0.054008226841688156, -0.07257786393165588, -0.0055157337337732315, -0.05056089162826538, -0.013869771733880043, -0.08792998641729355, -0.05295104160904884, 0.020454179495573044, -0.05584680289030075, -0.01072695292532444, -0.014547747559845448, -0.03819645568728447, 0.02723393589258194, -0.06844106316566467, -0.03642682358622551, 0.030221624299883842, 0.03821943700313568, 0.016570182517170906, 0.01760438270866871, -0.0458725169301033, -0.0419655404984951, 0.021695218980312347, 0.01046840287744999, 0.027119023725390434, -0.04640110954642296, -0.026337629184126854, 0.0248897485435009, 0.018075518310070038, -0.002744939411059022, 0.05938606709241867, -0.014926954172551632, 0.005768537987023592, 0.06099482253193855, -0.01382380723953247, -0.03621998429298401, 0.03371492028236389, -0.03548455238342285, -0.0015584820648655295, -0.0014766078675165772, -0.022407667711377144, 0.010071959346532822, 0.014260469935834408, -0.02048865146934986, -0.01517975889146328, 0.01736306957900524, 0.018293850123882294, 0.008963067084550858, -0.03210616484284401, -0.02665937878191471, 0.03337018936872482, -0.016133520752191544, 0.030405482277274132, -0.009135433472692966, -0.03858715295791626, 0.01682298816740513, 0.002237894106656313, -0.010589059442281723, 0.006756773684173822, 0.02135048620402813, 0.0029302334878593683, -0.002887141890823841, -0.01884542405605316, 0.032772649079561234, -0.04803284630179405, -0.0018831059569492936, -0.0125482939183712, -0.015122302807867527, 0.05304297059774399, -0.04527498036623001, 0.031416699290275574, 0.012881536036729813, 0.02213188074529171, 0.00773351825773716, 0.019052263349294662, 0.019488925114274025, 0.021097680553793907, 0.03861013427376747, 0.0006190836429595947, 0.005553079769015312, -0.023970458656549454, -0.012686187401413918, 0.01863858290016651, -0.021316012367606163, 0.027532704174518585, 0.024407122284173965, 0.028520939871668816, 0.019592344760894775, -0.018374288454651833, -0.005446786992251873, 0.02215486392378807, 0.0003224693355150521, -0.04647005721926689, -0.004742956254631281, -0.06131657212972641, -0.048676349222660065, 0.016604656353592873, 0.03433544188737869, -0.001679138746112585, -0.039069779217243195, 0.013191795907914639, 0.058282919228076935, -0.07046350091695786, -0.024154316633939743, -0.018477708101272583, -0.012100140564143658, 0.017041318118572235, -0.008198908530175686, 0.022097408771514893, 0.009371001273393631, -0.023292483761906624, -0.020810402929782867, -0.02028181217610836, 0.014984410256147385, 0.010031740181148052, -0.005604789592325687, -0.0357833206653595, 0.009618060663342476, 0.047343380749225616, -0.03975924849510193, 0.06136253848671913, -0.07046350091695786, -0.020212866365909576, 0.01812148280441761, -0.07119892537593842, 0.012778116390109062, -0.010089196264743805, -0.004513134248554707, 0.01781122386455536, -0.0501931756734848, 0.030796179547905922, -0.02976197935640812, -0.0010744190076366067, 0.020477160811424255, 0.01919015683233738, -0.00798057671636343, 0.02135048620402813, 0.005458278115838766, 0.03366895765066147, 0.05000931769609451, -0.036151036620140076, 0.00601559691131115, 0.005785774905234575, 0.021097680553793907, -0.06435022503137589, -0.008773463778197765, 0.0033898779656738043, -0.008583860471844673, -0.006452259141951799, -0.008055269718170166, -0.0025811910163611174, -0.0032146384473890066, 0.017041318118572235, -0.03994310647249222, 0.03304843604564667, 0.015225723385810852, 0.02725691720843315, 0.009100960567593575, 0.02567114308476448, 0.011606022715568542, -0.012513821013271809, 0.000879070081282407, -0.055754873901605606, 0.00020306948863435537, 0.021522851660847664, 0.010054722428321838, 0.047343380749225616, 0.003033653600141406, -0.018374288454651833, -0.01084186416119337, -0.03058934025466442, 0.009767444804310799, 0.08048374950885773, -0.10250071436166763, -0.034588247537612915, 0.032060202211141586, -0.03256580978631973, -0.04040274769067764, -0.004573462530970573, 0.03389877825975418, -0.01018112525343895, 0.017719294875860214, 0.014559238217771053, -0.011198088526725769, -0.08636719733476639, 0.001390424557030201, -0.004696991760283709, -0.006101780571043491, 0.004671136848628521, 0.025234481319785118, -0.00514227245002985, 0.008658552542328835, 0.003343913471326232, -0.0208793506026268, -0.06641862541437149, 0.0049900151789188385, 0.050836678594350815, 0.02244214154779911, -0.02682025544345379, -0.03962135314941406, -0.008101234212517738, 0.011479620821774006, -0.028888655826449394, -0.04596444591879845, 0.07340522110462189, 0.00872175395488739, -0.02059207297861576, -0.03038249909877777, -0.03564542904496193, 0.008583860471844673, 0.0783693790435791, -0.02645253948867321, -0.027762526646256447, -0.03883995860815048, 0.03038249909877777, -0.004478660877794027, 0.005096307955682278, -0.002551026875153184, -0.05010124668478966, -0.01647825352847576, -0.0006891076336614788, 0.045757606625556946, -0.04251711443066597, -0.05423804745078087, -0.07478415220975876, 0.0014335161540657282, 0.02642955631017685, 0.024384139105677605, -0.04499919340014458, -0.025510268285870552, 0.001370315090753138, 0.028750762343406677, -0.039483461529016495, -0.03215213119983673, 0.0026759926695376635, -0.028061294928193092, -0.03626595064997673, 0.02624570019543171, 0.017661839723587036, -0.02085636742413044, 0.01978769525885582, 0.02106320858001709, -0.015340634621679783, 0.01939699612557888, -0.03148564696311951, -0.021879076957702637, 0.0057369377464056015, 0.01887989602982998, 0.006532697007060051, -0.005173873156309128, -0.012341453693807125, -0.011606022715568542, 0.02413133531808853, 0.023832565173506737, -0.03916170820593834, -0.07317540049552917, -0.045343928039073944, 0.008779209107160568, -0.0034243513364344835, 0.0021086190827190876, -0.023809583857655525, -0.01666211150586605, 0.006814229302108288, 0.02205144427716732, -0.023671690374612808, 0.024177299812436104, -0.015041865408420563, 0.021005751565098763, -0.008325310423970222, 0.006957868114113808, 0.006320111453533173, -0.04405692219734192, -0.023970458656549454, -0.04251711443066597, 0.021982496604323387, 0.010451165959239006, 0.009210126474499702, 0.023085644468665123, -0.03307142108678818, 0.04325254634022713, -0.004191383253782988, 0.0018902878509834409, -0.030037766322493553, 0.0580071322619915, -0.003470315830782056, 0.018868405371904373, -0.021488379687070847, -0.03766786307096481, 0.034932978451251984, -0.036518752574920654, 0.011226816102862358, 0.008733244612812996, -0.030658286064863205, -0.00868153478950262, 0.03355404734611511, 0.014099594205617905, 0.02585500106215477, 0.00975020881742239, 0.03075021505355835, 0.01968427374958992, -0.003102600108832121, 0.017386052757501602, -0.006963613908737898, -0.022281264886260033, -0.004987142514437437, 0.048860207200050354, -0.07804763317108154, -0.05961588770151138, -0.00945143960416317, -0.015593438409268856, 0.07193435728549957, -0.005225582979619503, -0.023809583857655525, 0.04761916771531105, -0.05938606709241867, -0.008158689364790916, -0.01002599485218525, -0.04111519828438759, -0.004771684296429157, 0.02289029397070408, -0.01400766521692276, -0.02861286886036396, -0.022039951756596565, -0.006452259141951799, -0.025533249601721764, 0.04973353073000908, 0.032611776143312454, -0.014961428008973598, -0.020477160811424255, 0.0028684688732028008, 0.02505062334239483, 0.026360610499978065, 0.032427918165922165, 0.032198093831539154, 0.03355404734611511, -0.018087010830640793, -0.003935705870389938, 0.005323257762938738, -0.03240493685007095, -0.02233872190117836, 0.034174565225839615, 0.00602134270593524, -0.053962260484695435, -0.022315738722682, -0.02252257987856865, 0.048308633267879486, 0.0588344931602478, -0.0010880646295845509, 0.050836678594350815, -0.04345938563346863, 0.01661614701151848, 0.03362299129366875, 0.01303092110902071, 0.029670050367712975, -0.0188224408775568, -0.03610507398843765, -0.02147688716650009, -0.017121756449341774, -0.02371765486896038, -0.01879945956170559, -0.0415518619120121, -0.004895213525742292, 0.014329416677355766, 0.0007095761829987168, -0.0022795493714511395, -0.004605063237249851, 0.030497411265969276, 0.034565262496471405, 0.011697951704263687, -0.01158878579735756, -0.01557045616209507, 0.024384139105677605, -0.03707032650709152, -0.012950482778251171, -0.02842901088297367, -0.029830927029252052, -0.03502490743994713, -0.049641601741313934, -0.004748702049255371, -0.010031740181148052, 0.010893573984503746, 0.022200828418135643, 0.02803831361234188, 8.048267045523971e-05, -0.01411108486354351, -0.028704797849059105, 0.026567449793219566, 0.024223264306783676, 0.0009810536867007613, -0.02569412626326084, 0.02285582199692726, -0.013341180980205536, -0.0464930385351181, 0.0003402446454856545, 0.05092860758304596, -0.017638856545090675, -0.002742066513746977, -0.04228729009628296, 0.026567449793219566, -0.011117651127278805, -0.028543921187520027, -0.010255817323923111, -0.0318763442337513, -0.03962135314941406, 0.07505994290113449, -0.0017595764948055148, 0.03530069440603256, 0.03056635707616806, -0.027279898524284363, -0.01694938912987709, -0.012502329424023628, -0.02642955631017685, 0.047527238726615906, -0.009899592958390713, 0.015892207622528076, 0.02587798424065113, -0.04233325645327568, -0.017903152853250504, 0.041436947882175446, 5.1754890591837466e-05, 0.029118476435542107, -0.07253190129995346, -0.03385281562805176, -0.005420932080596685, 0.03778277710080147, -0.019822167232632637, 0.006578661501407623, -0.0070727793499827385, -0.024981677532196045, -0.006239673588424921, -0.030405482277274132, 0.004337894730269909, -0.0180985014885664, -0.008635570295155048, -0.012536803260445595, -0.02921040542423725, 0.049090027809143066, -0.008124216459691525, -0.0501931756734848, 0.04088537395000458, 0.02158030867576599, -0.026107806712388992, -0.006957868114113808, -0.009319291450083256, 0.019626818597316742, 0.014812042936682701, 0.020821895450353622, -0.013226269744336605, -0.02978496253490448, 0.02241915836930275, -0.03971328213810921, -0.021591799333691597, -0.013789334334433079, 0.025602197274565697, -0.01692640781402588, -0.005780029110610485, -0.009916829876601696, 0.025625178590416908, -0.016501236706972122, -0.03355404734611511, 0.019569363445043564, 0.02525746449828148, 0.03178441524505615, -0.011094668880105019, 0.012582767754793167, -0.00758987944573164, -0.0004919632337987423, 0.02028181217610836, -0.01713324710726738, -0.013088376261293888, 0.007302601356059313, 0.02608482353389263, -0.046125322580337524, -0.01879945956170559, 0.0005332594155333936, 0.04550480097532272, 0.019442960619926453, -0.041230108588933945, -0.023809583857655525, -0.015444054268300533, -0.019052263349294662, 0.001025581732392311, 0.008083997294306755, -0.002401642268523574, 0.03148564696311951, 0.020212866365909576, -0.015524491667747498, -0.03484104946255684, -0.010342000983655453, 0.007400276139378548, -0.01323776040226221, -0.008445966988801956, 0.02020137384533882, -0.04561971500515938, 0.04316061735153198, -0.003093981882557273, 0.031186876818537712, -0.04481533542275429, 0.040632572025060654, -0.0033927508629858494, -0.015892207622528076, 0.02085636742413044, -0.04097730293869972, -0.016282904893159866, -0.023832565173506737, -0.0020296175498515368, -0.025717107579112053, -0.02392449416220188, -0.019052263349294662, 0.013754860498011112, 0.02587798424065113, 0.007474968209862709, 0.010382219217717648, -0.0028023947961628437, 0.0012654586462303996, 0.013295216485857964, 0.030612321570515633, -0.033967725932598114, -0.02921040542423725, 0.009865119121968746, 0.024223264306783676, -0.02647552080452442, 0.04697566479444504, 0.003927087411284447, -0.05607662722468376, -0.014317925088107586, 0.004168401006609201, -0.0464930385351181, 0.0732213631272316, -0.009462930262088776, 0.007451985962688923, 0.006302875000983477, 0.017477981746196747, -0.02452203258872032, 0.010680988430976868, -0.0006657663034275174, -0.05056089162826538, -0.018960334360599518, 0.007021069526672363, -0.004507388453930616, -0.047894954681396484, 0.022959241643548012, 0.03153160959482193, 0.002490698592737317, -0.02764761447906494, 0.017466489225625992, -0.021419432014226913, -0.0481247752904892, -0.02067250944674015, -0.03148564696311951, -0.031071966513991356, -0.05134228616952896, -0.04150589555501938, -0.03465719148516655, 0.029486192390322685, -0.01577729731798172, -0.0266363974660635, -0.016099046915769577, -0.015926681458950043, 0.04743530973792076, 0.0030020528938621283, 0.026797272264957428, 0.032060202211141586, -0.02999180182814598, 0.02879672683775425, 0.0009358074166812003, -0.02020137384533882, -0.004866485949605703, 0.005150890909135342, -0.004478660877794027, 0.03621998429298401, 0.026498503983020782, -0.043574295938014984, -0.04451656714081764, 0.023786600679159164, 0.026958148926496506, -0.02744077518582344, -0.003200274659320712, -0.036725591868162155, 0.034542281180620193, -0.010376473888754845, 0.03098003752529621, 0.03541560843586922, 0.02530342899262905, 0.008394257165491581, -0.03226704150438309, 0.034542281180620193, -0.005745555739849806, 0.007653080392628908, 0.002242203103378415, -0.01781122386455536, -0.017489472404122353, 0.030267588794231415, -0.0421723797917366, 0.0006485296180471778, -0.033967725932598114, -0.019247611984610558, -0.007032560650259256, -0.04054064303636551, 0.03192230686545372, 0.009319291450083256, -0.009399729780852795, -0.027325863018631935, 0.010956775397062302, -0.004234474617987871, 0.027923401445150375, 0.02413133531808853, 0.02221231907606125, 0.006383312400430441, 0.014789060689508915, -0.01676553301513195, 0.01916717365384102, 0.014363889582455158, -0.012410400435328484, 0.03403667360544205, 0.047113560140132904, 0.01843174360692501, 0.00011051217734348029, 0.0019779077265411615, -0.023085644468665123, 0.02155732549726963, 0.015225723385810852, -0.02824515290558338, -0.05111246556043625, -0.003964433446526527, -0.011123396456241608, -0.024016423150897026, -0.0024332429748028517, 0.034404389560222626, 0.0024174426216632128, -0.02067250944674015, -0.0006237518973648548, -0.03196827322244644, -0.026199735701084137, 0.0070900158025324345, -0.025372374802827835, 0.013007938861846924, 0.005647881422191858, -0.013053903356194496, -0.04863038659095764, -0.03171546757221222, -0.0029445975087583065, -0.060213424265384674, -0.019672783091664314, 0.0085378959774971, 0.018006572499871254, 0.005762792658060789, 0.027325863018631935, -0.018006572499871254, -0.034197550266981125, 0.0007576951757073402, -0.023855548352003098, -0.00257400912232697, 0.019799185916781425, -0.04941178113222122, 0.027371827512979507, 0.012490838766098022, -0.002170383697375655, 0.024154316633939743, -0.016604656353592873, 0.006498223636299372, -0.0027549939695745707, 0.008015050552785397, -0.008940084837377071, 0.017064301297068596, 0.004559098742902279, -0.02124706655740738, -0.014662658795714378, 0.008773463778197765, 0.004797539208084345, -0.027164988219738007, 0.006785501725971699, -0.05111246556043625, 0.02093680575489998, 0.0010981194209307432, -0.04798688367009163, -0.007756500504910946, 0.004019016399979591, -0.015306160785257816, 0.02686621993780136, 0.006187963765114546, -0.012134614400565624, -0.0007275310344994068, 0.030451446771621704, -0.002642955631017685, -0.05074474960565567, -0.04244816675782204, 0.02976197935640812, 0.00784842949360609, 0.018454724922776222, -0.039667319506406784, 0.018282359465956688, -0.020511634647846222, 0.017248159274458885, 0.01372038759291172, 0.0054611507803201675, -0.02280985750257969, 0.006877430249005556, 0.002704720478504896, 0.0014643985778093338, -0.014134067110717297, -0.040035031735897064, -0.015478527173399925, 0.028268134221434593, 0.011657732538878918, -0.002464843448251486, 0.028061294928193092, -0.018914369866251945, -0.0025524632073938847, -0.016880443319678307, -0.013375653885304928, -0.021304521709680557, -0.01489248126745224, 0.014088102616369724, -0.011996720917522907, -0.01950041763484478, 0.0004987860447727144, -0.05745555832982063, -0.032818615436553955, -0.00816443469375372, 0.009508894756436348, 0.012502329424023628, -0.02939426340162754, 0.017018336802721024, 0.02507360652089119, -0.01637483388185501, -0.03077319823205471, -0.018673056736588478, -0.01598413661122322, 0.03904679790139198, -0.0003066690405830741, 0.01390424557030201, -0.008273600600659847, -0.00019103974045719951, -0.03994310647249222, 0.002661628881469369, -0.019144192337989807, -0.027142006903886795, -0.01343310996890068, -0.02244214154779911, 0.004177019000053406, -0.01477757003158331, 0.03817347437143326, -0.0062971292063593864, 0.00027004111325368285, -0.017684821039438248, 0.036334894597530365, 0.006986596155911684, -0.03539262339472771, 0.023556780070066452, 0.016489746049046516, -0.007118743844330311, -0.061592359095811844, -0.004188510123640299, -0.019236121326684952, -0.003105473006144166, -0.05442190542817116, 0.026337629184126854, -0.027877436950802803, -0.004027634859085083, 0.026682361960411072, -0.02114364504814148, -0.04720548912882805, -0.005354858003556728, -0.01937401480972767, -0.013628458604216576, -0.02817620523273945, 0.010227089747786522, -0.004898086190223694, 0.04132203757762909, -0.017684821039438248, 0.006262655835598707, 0.01569685898721218, 0.020086463540792465, 0.06177621707320213, -0.010433929972350597, -0.0021301647648215294, -0.02817620523273945, 0.017064301297068596, -0.011261289939284325, -0.019075244665145874, 0.02015540935099125, 0.004329276271164417, -0.0013358417199924588, 0.0028469229582697153, 0.012950482778251171, 0.01692640781402588, 0.009462930262088776, -0.005745555739849806, -0.01105444971472025, 0.010744189843535423, -0.005487005691975355, 0.0051824916154146194, 0.0006952122785151005, -0.03688646852970123, 0.03863311931490898, -0.02275240048766136, 0.025786055251955986, -0.0029876891057938337, -0.023556780070066452, 0.0380585640668869, 0.0333242230117321, 0.007026814855635166, -0.00995704811066389, 0.01705281063914299, 0.004297676030546427, -0.02351081557571888, 0.017949117347598076, 0.02721095271408558, -0.0024059514980763197, 0.010485639795660973, -0.023625725880265236, 0.0034961707424372435, -0.01331819873303175, -0.020971279591321945, 0.015455544926226139, -0.005426677409559488, -0.010732698254287243, 0.014766078442335129, -0.010077704675495625, 0.002447606762871146, 0.03433544188737869, -0.010117923840880394, -0.02343037724494934, 0.0038523953408002853, 0.015317652374505997, 0.0012446310138329864, 0.03838031366467476, 0.014260469935834408, -0.009641042910516262, -0.01214610505849123, -0.03297949209809303, -0.019799185916781425, -0.04922792315483093, 0.00229822238907218, 0.023395903408527374, -0.012938992120325565, -0.026751307770609856, 0.034565262496471405, -0.047527238726615906, 0.07198032736778259, 0.011186596937477589, 0.026015877723693848, 0.030497411265969276, 0.006888921372592449, -0.03932258486747742, -0.008359784260392189, -0.0061707268469035625, -0.0037719574756920338, -0.02293625846505165, -0.028360063210129738, 0.03192230686545372, 0.015823261812329292, 0.06885474175214767, 0.029876891523599625, -0.028911637142300606, 0.04973353073000908, -0.025326410308480263, 0.0372312031686306, 0.0376448817551136, -0.01440985407680273, -0.03265773877501488, 0.02007497288286686, -0.019718747586011887, -0.02174118347465992, 0.012743642553687096, -0.0006043606554158032, 0.02028181217610836, -0.004001779481768608, 0.019465943798422813, 0.016110539436340332, 0.03054337576031685, 0.01411108486354351, 0.010749935172498226, -0.022557051852345467, -0.025418339297175407, 0.03543858975172043, 0.008227636106312275, -0.002365732565522194, -0.01509932056069374, 0.0006273429025895894, 0.02799234911799431, -0.0010514367604628205, -0.012640222907066345, 0.03851820528507233, -0.007130234967917204, 0.04959563910961151, -0.01244487427175045, -0.025326410308480263, 0.013766352087259293, -0.04316061735153198, 0.012996447272598743, 0.02431519329547882, 0.011611768044531345, -0.017535436898469925, -0.012421892024576664, -0.013789334334433079, -0.01469713170081377, 0.026981130242347717, -0.01215759664773941, -0.0226259995251894, 0.008445966988801956, 0.04610234126448631, -0.003932833205908537, 0.0011239743325859308, 0.030474428087472916, 0.03410562127828598, -0.003461697371676564, -0.01062353327870369, 0.007250891532748938, 0.01902928203344345, -0.028451992198824883, -0.030290570110082626, -0.009342273697257042, 0.02285582199692726, 0.028888655826449394, -0.01843174360692501, 0.0013688786420971155, 0.01705281063914299, 0.008382766507565975, 0.01997155323624611, -0.0019305067835375667, 0.0501931756734848, 0.040862392634153366, -0.027946384623646736, 0.05915624275803566, 0.0637526884675026, -0.0012245215475559235, -0.02233872190117836, -0.005386458709836006, 0.0019175793277099729, 0.030727233737707138, 0.008417239412665367, 0.02762463316321373, -0.03509385511279106, -0.011146378703415394, 0.003295076312497258, 0.0052284556441009045, -0.02842901088297367, 0.033393170684576035, 0.00657291617244482, 0.013398636132478714, 0.007664571516215801, 0.026705343276262283, 0.007158962544053793, -0.02033926732838154, -0.0061247628182172775, 0.061408501118421555, 0.035185784101486206, 0.009089468978345394, 0.020626544952392578, 0.0014327979879453778, -0.0027248298283666372, 0.03934556618332863, 0.005306020844727755, 0.028727779164910316, 0.023085644468665123, -0.0407245010137558, -0.01713324710726738, 0.025004658848047256, -0.014800552278757095, -0.017742276191711426, -0.02244214154779911, 0.029830927029252052, -0.0311638955026865, 0.011973738670349121, -0.02348783239722252, -0.03148564696311951, 0.012490838766098022, 0.033990707248449326, 0.00787715706974268, 0.03385281562805176, -0.04663093015551567, 0.018868405371904373, 0.017972098663449287, 0.0027305753901600838, -0.011508348397910595, -0.0034444606862962246, 0.013812316581606865, -0.020396724343299866, 0.019672783091664314, -0.02525746449828148, 0.01477757003158331, 0.011261289939284325, 0.043206579983234406, 0.0025912458077073097, -0.022097408771514893, 0.040058016777038574, 0.01736306957900524, -0.0011950755724683404, -0.017190704122185707, -0.0020353631116449833, 0.048676349222660065, 0.024820800870656967, 0.025556232780218124, 0.024751855060458183, -0.00642353156581521, -0.016800004988908768, -0.028314098715782166, 0.021752674132585526, -0.010347746312618256, 0.001881669508293271, 0.020913822576403618, -0.004760193172842264, -0.007808210328221321, -0.041643790900707245, 0.0017883043037727475, 0.008112724870443344, 0.02030479535460472, 0.005667991004884243, -0.02293625846505165, 0.013938718475401402, -0.02468290738761425, -0.014260469935834408, 0.049457743763923645, 0.005021615885198116, 0.004220110829919577, 0.008997540920972824, 0.015501509420573711, -0.014835025183856487, 0.0007849865942262113, 0.016489746049046516, -0.0054496596567332745, -0.010054722428321838, 0.01196224708110094, 0.024338174611330032, 0.009095215238630772, 0.03038249909877777, 0.02468290738761425, 0.027946384623646736, 0.01637483388185501, -0.0035105347633361816, 0.023740636184811592, -0.01016963366419077, 0.007951849140226841, 0.02645253948867321, -0.02587798424065113, -0.011393437162041664, -0.028842691332101822, 0.006210946012288332, -0.04635514318943024, -0.005834612064063549, -0.02025883086025715, 0.011646241880953312, 0.0294172465801239, 0.00784842949360609, -0.030796179547905922, -0.01057182252407074, 0.021959515288472176, -0.02168372832238674, -0.002779412781819701, 0.004366622306406498, -0.02918742410838604, -0.03762190043926239, 0.018213411793112755, -0.009060741402208805, -0.01645527221262455, -0.042034488171339035, 0.009233108721673489, 0.0017883043037727475, 0.02626868151128292, 0.007474968209862709, -0.02665937878191471, -0.018627092242240906, 0.0021488380152732134, -0.014088102616369724, -0.03392176330089569, 0.0683031678199768, -0.01908673718571663, -0.012605750001966953, 0.021993987262248993, 0.004567716736346483, -0.003754720790311694, -0.005397949833422899, 0.019121209159493446, -0.017294123768806458, 0.03058934025466442, 0.0070900158025324345, -0.01770780421793461, -0.0022034207358956337, 0.0020813276059925556, 0.008388511836528778, -0.01458222046494484, 0.05069878697395325, 0.007779482752084732, -0.018868405371904373, 0.01822490245103836, 0.024912729859352112, -0.025786055251955986, 0.0012920318404212594, 0.005406568292528391, -0.010761425830423832, -0.011996720917522907, -0.00514227245002985, 0.0036426824517548084, 0.0070727793499827385, -0.01084186416119337, -0.028268134221434593, 0.028865672647953033, -0.0049727787263691425, 0.0009709989535622299, 0.0007307628984563053, -0.004286184906959534, -0.016570182517170906, -0.013582494109869003, -0.012169087305665016, -0.008532150648534298, -0.0240623876452446, -0.03160055726766586, 0.0022953494917601347, 0.005438168533146381, 0.025372374802827835, 0.032198093831539154, -0.01262873224914074, -0.019052263349294662, 0.006009851582348347, -0.006883176043629646, -0.01102572213858366, 0.01647825352847576, 0.009704244323074818, -0.011146378703415394, 0.011646241880953312, 0.012238034047186375, -0.004564844071865082, -0.03700137883424759, 0.01215759664773941, -0.004358004312962294, -0.0033151856623589993, 0.012640222907066345, 0.0134216183796525, 0.042815882712602615, -0.00657291617244482, 0.015903698280453682, -0.013973192311823368, -0.034588247537612915, -0.0030020528938621283, -0.011893300339579582, 0.02033926732838154, -0.012674696743488312, 0.03015267662703991, -0.016719568520784378, 0.00970998965203762, 0.01411108486354351, -0.017386052757501602, 0.012674696743488312, -0.03523175045847893, 0.018167447298765182, -0.031462665647268295, -0.034197550266981125, 0.031003018841147423, 0.007722027134150267, 0.033783867955207825, 0.031048983335494995, -0.021982496604323387, 0.027578668668866158, 0.01715623028576374, 0.02275240048766136, 0.025625178590416908, 0.01577729731798172, 0.02994583733379841, -0.042402204126119614, 0.015513001009821892, 0.004024761728942394, -0.014042139053344727, -0.01838577911257744, -0.0038839958142489195, -0.025579214096069336, 0.003562244586646557, -0.01389275398105383, -0.03355404734611511, 0.01014090608805418, 0.025809036567807198, 0.018937353044748306, -0.0005670145619660616, -0.0072106728330254555, 0.0055444613099098206, -0.0528591126203537, -0.02330397441983223, 0.0024346793070435524, 0.006452259141951799, -0.0003957251610700041, -0.011789880692958832, -0.012215051800012589, -0.024154316633939743, 0.01284706313163042, 0.012490838766098022, 0.030520392581820488, -0.013513547368347645, -0.02686621993780136, 0.013203287497162819, 0.024200281128287315, 0.026406574994325638, 0.02583201974630356, -0.022430650889873505, 0.00587195809930563, 0.000897024932783097, 0.01323776040226221, -0.005814502481371164, 0.014467310160398483, 0.015133794397115707, -0.010376473888754845, 0.003283585188910365, -0.0013932973379269242, 0.000849624106194824, 0.005613408051431179, 0.01262873224914074, -0.009778936393558979, -0.00027865945594385266, -0.019615327939391136, 0.01411108486354351, 0.0011333109578117728, -0.008589605800807476, 0.004211492370814085, -0.007894393987953663, -0.018052536994218826, -0.019511908292770386, -0.003763339016586542, -0.0034444606862962246, 0.014800552278757095, -0.016420798376202583, 0.006348839495331049, -0.001782558741979301, 0.024430103600025177, 0.0027707943227142096, -0.0076818084344267845, -0.01575431413948536, -0.04683777317404747, -0.009302055463194847, 0.009210126474499702, 0.020902331918478012, 0.016708076000213623, -0.009215871803462505, -0.02994583733379841, -0.013973192311823368, 0.0077105360105633736, 0.04362025856971741, -0.013099867850542068, 0.001478044199757278, -0.005642136093229055, 0.053364723920822144, -0.0058374847285449505, -0.026958148926496506, -0.038862939924001694, -0.02585500106215477, 0.01330670714378357, -0.02410835213959217, 0.009095215238630772, 0.012123122811317444, 0.0058374847285449505, 0.001509644789621234, -0.023062661290168762, 0.00238871481269598, -0.02705007791519165, 0.02249959670007229, -0.006940631661564112, -0.008152944035828114, -0.038679081946611404, 0.010336254723370075, 0.030037766322493553, 0.021993987262248993, 0.0011017103679478168, -0.023602744564414024, -0.008744736202061176, 0.009089468978345394, 0.005179618485271931, 0.03286457806825638, 0.006107525900006294, -0.027004113420844078, -0.020477160811424255, 0.019799185916781425, 0.009911083616316319, -0.03569139167666435, -0.0333242230117321, -0.018787967041134834, -0.01991409622132778, 0.018753495067358017, -0.03520876541733742, 0.02223530225455761, -0.01921313814818859, -0.015156776644289494, 0.007819701917469501, -0.0024375522043555975, 0.010175379924476147, -0.0051939827390015125, -0.03865610063076019, -0.009589333087205887, -0.025027642026543617, -0.016282904893159866, 0.008141452446579933, 0.030911089852452278, 0.005917922593653202, -0.030727233737707138, 0.020063480362296104, 0.01084186416119337, 0.016122030094265938, 0.028451992198824883, -0.019431469962000847, 0.03874802961945534, 0.011686461046338081, 0.011835845187306404, -0.023212045431137085, -0.041804663836956024, -0.014363889582455158, 0.011111904866993427, 0.00459644477814436, -0.009146925061941147, -0.0073945303447544575, -0.017880169674754143, 0.015329143032431602, 0.001588646206073463, -0.011031467467546463, -0.034174565225839615, 0.014065121300518513, -0.02645253948867321, -0.001360978581942618, -0.04580357298254967, -0.008583860471844673, -0.007607115898281336, 0.01273215189576149, 0.015110812149941921, -0.016099046915769577, -0.054375942796468735, -0.015662385150790215, -0.02842901088297367, -0.0021761292591691017, -0.024912729859352112, 0.016903424635529518, -0.0160415917634964, -0.03955240547657013, 0.04056362435221672, 0.0460793599486351, 0.015903698280453682, -0.01313434075564146, -0.015386599116027355, 0.009480167180299759, 0.00970998965203762, -0.017788240686058998, 0.0018026682082563639, 0.018282359465956688, 0.0007979140500538051, -0.02075294777750969, 0.003901232499629259, 0.01128427218645811, -0.007882902398705482, 0.030842144042253494, -0.005389331374317408, -0.006526951678097248, 0.012617240659892559, -0.010531604290008545, -0.0017294123535975814, 0.0022723672445863485, -0.008624079637229443, 0.01458222046494484, -0.008216144517064095, 0.01832832396030426, -0.035944197326898575, 0.0066303713247179985, -0.0031227096915245056, -0.01528317853808403, 0.027509720996022224, 0.007635843940079212, 0.0052772932685911655, 0.04973353073000908, 0.023258009925484657, 0.037484005093574524, 0.015524491667747498, -0.007078524678945541, -0.0004761629388667643, -0.016995353624224663, 0.00015881075523793697, 0.03863311931490898, -0.005874830763787031, 0.03992012143135071, 0.008331055752933025, 0.0031629286240786314, 0.009014776907861233, -0.025602197274565697, -0.03169248625636101, 0.025946930050849915, 0.010071959346532822, -0.015535983256995678, -0.00843447633087635, 0.020109444856643677, -0.014260469935834408, -0.03265773877501488, 0.008233381435275078, -0.008629824966192245, -0.005041725467890501, -0.0016949389828369021, 0.011939264833927155, -0.025786055251955986, 0.05561698228120804, -0.014685641042888165, -0.004110945388674736, 0.004372368101030588, -0.024567997083067894, 0.0031830379739403725, -0.007423258386552334, -0.008250618353486061, 0.037300147116184235, -0.013593985699117184, 0.030681269243359566, 0.02900356613099575, -0.001937688677571714, 0.02762463316321373, 0.019178666174411774, 0.0013846789952367544, -0.015110812149941921, -0.008974558673799038, 0.01892586052417755, 0.003513407427817583, -0.017454998567700386, 0.0018400142434984446, -0.005024488549679518, 0.013191795907914639, -0.011881809681653976, -7.841786282369867e-05, 0.00860684271901846, -0.022786874324083328, 0.005952395964413881, -0.023499323055148125, 0.023786600679159164, -0.0009085159981623292, 0.023280993103981018, -0.0030595085117965937, 0.03265773877501488, 0.003731738543137908, 0.005535843316465616, 0.020902331918478012, -0.037093307822942734, 0.02098277024924755, -0.0027506849728524685, -0.008497676812112331, -0.027279898524284363, -0.013996174558997154, -0.026406574994325638, 0.03902381658554077, -0.0046021901071071625, 0.020143918693065643, -0.023154590278863907, -0.026176752522587776, 0.01859261840581894, -0.054192084819078445, 0.0012712042080238461, -0.02622271701693535, -0.0009013341041281819, -0.009732971899211407, 0.03210616484284401, 0.010003012605011463, -0.006923394743353128, -0.036932434886693954, 0.0006740255048498511, -0.03718523681163788, 0.04054064303636551, -0.010606296360492706, -0.009985776618123055], [0.04105009511113167, 0.0009204025845974684, 0.06958328187465668, 0.03286251053214073, -0.01576951891183853, 0.014961974695324898, -0.0435175895690918, 0.030080972239375114, 0.02028951421380043, 0.07792788743972778, 0.001578634139150381, 0.01638639159500599, 0.0028418218716979027, 0.04665803164243698, -0.06285375356674194, -0.009404510259628296, 0.0038554565981030464, 0.034589752554893494, -0.018909962847828865, -0.019941823557019234, 0.006207985803484917, 0.05473346263170242, -0.044863492250442505, -0.04795907437801361, -0.03261575847864151, 0.002599278697744012, -0.011473838239908218, 0.031090401113033295, 0.08474714308977127, -0.04540185630321503, 0.04423540458083153, -0.02189338579773903, 0.0016150857554748654, -0.03118012845516205, -0.0004202447598800063, 0.03965932875871658, -0.030821220949292183, 0.0061294748447835445, -0.009612003341317177, -0.014210511930286884, -0.026267575100064278, 0.006224809680134058, -0.0020875544287264347, -0.02404683269560337, -0.0200091190636158, 0.09977640956640244, -0.01968385837972164, -0.03781992569565773, -0.021130705252289772, 0.03221198916435242, 0.00757632264867425, 0.04813852906227112, 0.016980832442641258, -0.018573487177491188, 0.03537486493587494, 0.02927342988550663, 0.01911184750497341, 0.016274232417345047, -0.002274018246680498, -0.03669833764433861, -0.012101927772164345, 0.013391752727329731, 0.011855178512632847, 0.03140444681048393, -0.01970629021525383, 0.04145386815071106, -0.0312698557972908, 0.027792934328317642, -0.03553188592195511, -0.02128772810101509, 0.02781536616384983, 0.050920065492391586, -0.03349059820175171, -0.011092498898506165, 0.000980687909759581, 0.005162105895578861, -0.005293892230838537, 0.031942807137966156, 0.048632025718688965, -0.0035554319620132446, -0.028062114492058754, -0.0008881569956429303, 0.015264803543686867, 0.007475379854440689, -0.016431255266070366, -5.4677384468959644e-05, -0.02377765253186226, -0.019661426544189453, -0.012258949689567089, -0.020042765885591507, 0.02839859202504158, 0.007026744540780783, -0.030619334429502487, 0.014244159683585167, 0.029183702543377876, 0.021186785772442818, 0.031382013112306595, -0.04472890496253967, -0.005349971819669008, 0.040085531771183014, -0.016352742910385132, -0.02534787356853485, -0.06473802030086517, 0.034769207239151, 0.011911257170140743, -0.08501631766557693, -0.035576749593019485, 0.042687613517045975, 0.02579650841653347, -0.024966534227132797, 0.02335144765675068, -0.024405740201473236, 0.00790719036012888, 0.07599876075983047, -0.015320883132517338, -0.009757810272276402, -0.017429467290639877, -0.012214086018502712, 0.004018086474388838, -0.01238232385367155, 0.002625916386023164, -0.0016487333923578262, -0.004553644452244043, -0.07326208800077438, 0.006959449499845505, 0.030619334429502487, -0.0489460714161396, -0.01812485232949257, 0.011008379980921745, -0.018584702163934708, 0.025617055594921112, -0.016453687101602554, 0.05450914427638054, -0.028376160189509392, -0.023508470505475998, -0.04170061647891998, 0.024876806885004044, 0.013672149740159512, 0.032952237874269485, -0.008860539644956589, 0.06859628111124039, 0.0017805199604481459, -0.011664507910609245, 0.024607626721262932, -0.050785474479198456, -0.0015197508037090302, 0.001845011138357222, 0.05307351425290108, 0.001292629400268197, -0.008400688879191875, 0.014165648259222507, 0.039726622402668, -0.03070906177163124, 0.001877256785519421, 0.010638255625963211, 0.034836504608392715, 0.034724343568086624, 0.009595179930329323, -0.027456458657979965, 0.011142970062792301, -0.010649471543729305, -0.030529607087373734, 0.0015001230640336871, -0.013088923878967762, 0.04172305017709732, 0.005302303936332464, -0.0055013857781887054, 0.04129684716463089, -0.03734885901212692, -0.03436543792486191, -0.03734885901212692, -0.025572191923856735, -0.015040486119687557, -0.0015477904817089438, -0.03162876144051552, -0.050920065492391586, 0.04190250486135483, 0.0018534230766817927, -0.0016150857554748654, -0.04867688938975334, -0.009168976917862892, 0.020513832569122314, -0.02954261004924774, -0.049215253442525864, -0.0017693040426820517, 0.03990607708692551, -0.0032918588258326054, -0.0063257524743676186, -0.04782448336482048, -0.001916512381285429, 0.02958747372031212, -0.0006848692428320646, -0.027591047808527946, 0.011754235252737999, -0.021254079416394234, -0.007329573389142752, -0.027344299480319023, -0.016857458278536797, 0.02319442667067051, -0.0327279195189476, 0.037461016327142715, -0.051548153162002563, 0.020839093253016472, 0.032391443848609924, -0.020536264404654503, 0.007985701784491539, 0.003294662805274129, -0.015242371708154678, -0.0016347134951502085, -0.012393539771437645, -0.0015772321494296193, -0.013290810398757458, -0.0565280020236969, 0.023844946175813675, -0.013447832316160202, -0.020805444568395615, 0.033378440886735916, 0.019807232543826103, 0.02637973427772522, 0.005243420600891113, -0.051368698477745056, -0.005543445236980915, 0.04158845916390419, -0.028757499530911446, -0.06747469305992126, -0.02346360683441162, -0.0324363075196743, -0.04163332283496857, 0.003451684955507517, -0.0728583112359047, -0.03423084691166878, 0.01727244444191456, 0.02436087653040886, -0.014333886094391346, 0.016184505075216293, 0.01610599458217621, -0.024674922227859497, -0.01144579891115427, -0.05172760784626007, 0.0042311884462833405, -0.010038206353783607, -0.010318603366613388, -0.00017139255942311138, 0.004590096417814493, 0.01326837856322527, -0.021792441606521606, 0.005672427825629711, -0.031045537441968918, 0.03212226182222366, -0.0015674183377996087, 0.0368104949593544, 0.0010858367895707488, 0.036294564604759216, 0.0017174306558445096, 0.03169605880975723, 0.02433844469487667, 0.010127933695912361, -0.03292980417609215, 0.015825597569346428, -0.01144579891115427, -0.0063762241043150425, 0.019672641530632973, -0.02174757793545723, -0.019190359860658646, -0.05334269255399704, -0.04607480764389038, 0.008019349537789822, -0.01708177477121353, -0.018629565834999084, 0.038178831338882446, -0.03129228577017784, 0.0373937226831913, 0.004360170569270849, -0.05621395632624626, -0.03748345002532005, 0.046747758984565735, 0.009011954069137573, -0.03741615265607834, 0.01260664127767086, -0.020827876403927803, -0.07209563255310059, -0.021814873442053795, 0.02911640703678131, -0.0530286505818367, 0.024428172037005424, 0.005192949436604977, 0.027164844796061516, -0.023014971986413002, 0.033984094858169556, 0.007834287360310555, 0.04728612303733826, 0.0276807751506567, 0.0038638683035969734, 0.012752448208630085, 0.01882023550570011, 0.038649898022413254, -0.024158991873264313, 0.03974905610084534, 0.014031057246029377, -0.02550489641726017, 0.00970173068344593, 0.03358032554388046, -0.022364452481269836, 0.00796326994895935, -0.06958328187465668, 0.008176371455192566, 0.028039682656526566, -0.0058098225854337215, -0.03378221020102501, -0.015332099050283432, -0.0016122817760333419, 0.013481480069458485, -0.028084546327590942, -0.06711578369140625, -0.006959449499845505, -0.008069820702075958, -0.02781536616384983, 0.008748381398618221, 0.06321266293525696, 0.0016333116218447685, 0.016599493101239204, 0.0061967698857188225, 0.011238304898142815, 0.025863803923130035, 0.00019767976482398808, -0.022644847631454468, -0.00721180671826005, 0.03779749199748039, -0.007335181348025799, 0.01610599458217621, -0.031785786151885986, -0.033557891845703125, -0.01043076254427433, 0.02202797494828701, -0.020951252430677414, -0.018663212656974792, -0.019784800708293915, 0.0154442572966218, 0.0034797247499227524, 0.0305969025939703, -0.05482318997383118, 0.010256916284561157, -0.017732296139001846, 0.019672641530632973, -0.039210692048072815, 0.04580562561750412, 0.017025696113705635, 0.035128116607666016, -0.0023931870236992836, 0.04567103832960129, 0.013481480069458485, 0.027725638821721077, -0.004772353917360306, -0.025280578061938286, -0.04827312007546425, -0.010335427708923817, 0.024024400860071182, -0.002520767506211996, -0.03842558339238167, 0.0178220234811306, 0.014524555765092373, -0.027209708467125893, 0.019818447530269623, 0.05724581703543663, 0.014389965683221817, -0.022958893328905106, -0.04800393804907799, 0.011619645170867443, -0.017485545948147774, -0.021085841581225395, 0.036720771342515945, 0.0031292287167161703, -0.0020889565348625183, -0.005638780537992716, 0.06025167182087898, -0.0072678858414292336, -0.02797238901257515, 0.02797238901257515, -0.00620237784460187, 0.023889809846878052, 0.01982966437935829, 0.011042027734220028, 0.017507977783679962, 0.02275700680911541, -0.036002952605485916, 0.07236481457948685, -0.025101125240325928, -0.012337461113929749, -0.014165648259222507, 0.028488319367170334, -0.00030370481545105577, -0.026783505454659462, -0.01912306435406208, 0.004326523281633854, -0.018921177834272385, 0.030372586101293564, 0.005616348702460527, 0.016005052253603935, -0.031808216124773026, -0.0588609054684639, -0.03598052263259888, -0.05132383853197098, 0.027209708467125893, -0.0170929916203022, -0.0030703453812748194, -7.312223897315562e-05, -0.012561778537929058, -0.010116717778146267, -0.024966534227132797, -0.048362847417593, 0.018349168822169304, 0.0028936953749507666, 0.013660933822393417, 0.05670745670795441, 0.005162105895578861, 0.016577061265707016, 0.008955874480307102, -0.0006389542832039297, -0.035015955567359924, -0.031090401113033295, 0.03086608275771141, -0.025392737239599228, -0.015556416474282742, 0.017732296139001846, -0.05639341101050377, 0.01406470499932766, 0.027187276631593704, 0.019672641530632973, -0.02348603866994381, -0.007727736607193947, -0.016835026443004608, -0.0020763385109603405, -0.011171010322868824, 0.03517298027873039, -0.017339739948511124, -0.03113526478409767, 0.008428729139268398, -0.004534016828984022, -0.012169222347438335, -0.02115313708782196, -0.010918652638792992, -0.05338755622506142, 0.05518209561705589, 0.0037264740094542503, -0.017586490139365196, -0.0642893835902214, -0.002546003321185708, 0.025325441733002663, -0.0015758301597088575, -0.01883145235478878, -0.004483545199036598, -0.02055869624018669, -0.040220122784376144, -0.01129999291151762, -0.00413304939866066, -0.04046687111258507, 0.0159265398979187, -0.022689711302518845, 0.031067969277501106, -0.017597705125808716, 0.026895664632320404, 0.03358032554388046, 0.06734010577201843, 0.001254074857570231, 0.010509273037314415, 0.05738040804862976, 0.018438896164298058, -0.04257545620203018, -0.027613479644060135, -0.04638885334134102, -0.014973190613090992, -0.020468968898057938, 0.004015282727777958, -0.006101435050368309, -0.01842767931520939, -0.0327279195189476, 0.018438896164298058, 0.0156349278986454, -0.012202870100736618, 0.008720341138541698, 0.04419054090976715, 0.02291402965784073, -0.05235569551587105, -0.02783779799938202, 0.03407382220029831, -0.004749922547489405, 0.07806248217821121, 0.0025894648861140013, 0.010021382942795753, -0.0076940893195569515, -0.09636678546667099, -0.006050963886082172, 0.004332131240516901, -0.008574535138905048, -0.002676387783139944, 0.0009912027744576335, -0.06496234238147736, -0.02364306151866913, 0.034858934581279755, 0.025145988911390305, 0.03842558339238167, -0.025908667594194412, 0.005204165354371071, -0.00482282554730773, 0.007727736607193947, 0.024226287379860878, -0.0012190252309665084, 0.02552732825279236, -0.010049422271549702, 0.024674922227859497, -0.025908667594194412, 0.0037713374476879835, 0.03288494050502777, 0.01311135571449995, -0.014760089106857777, -0.03450002521276474, 0.013088923878967762, 0.010733590461313725, -0.0501125231385231, -0.012662720866501331, 0.008765204809606075, -0.011154185980558395, 0.016341527923941612, -0.005540641490370035, -0.017216365784406662, 0.008389472961425781, 0.0069426256231963634, -0.03539729490876198, -0.006275281310081482, -0.009993343614041805, -0.00474151037633419, -0.02537030540406704, -0.03620484098792076, -0.022229861468076706, -0.004191932734102011, 0.014905896037817001, 0.009684906341135502, 0.04183520749211311, -0.020053980872035027, -1.790815804270096e-05, -0.004895728547126055, -0.030529607087373734, 0.01576951891183853, -0.0008657252183184028, 0.00463776383548975, 0.0023357055615633726, 0.013761877082288265, 0.050067659467458725, 0.002768918639048934, -0.010733590461313725, -0.016879890114068985, 0.00335354614071548, -0.027770502492785454, 0.03221198916435242, 0.01694718562066555, 0.03169605880975723, 0.027052687481045723, -0.029654769226908684, -0.006404263898730278, 2.451281761750579e-05, 0.016285447403788567, 0.03959203138947487, -0.0028081743512302637, -0.01051488146185875, -0.0029329508543014526, 0.03952473774552345, -0.004290071781724691, -0.06038626283407211, -0.01870807632803917, -0.000484035030240193, -0.04493078961968422, 0.00012363748101051897, 0.00899513065814972, -0.05388105660676956, 0.031785786151885986, 0.034410297870635986, 0.011428974568843842, -0.03308682516217232, -0.00423399219289422, 0.040354713797569275, 0.003398409578949213, 0.06029653549194336, 0.012662720866501331, -0.023149562999606133, -0.00031036423752084374, 0.005787390749901533, -0.04710666835308075, -0.051548153162002563, 0.013122571632266045, 0.03580106794834137, 0.0122365178540349, -0.009185800328850746, -0.043697044253349304, -0.018225794658064842, 0.004932180512696505, 0.02273457497358322, -0.012079495936632156, -0.001755284145474434, -0.03559918329119682, -0.007873543538153172, -0.010268132202327251, 0.0014412397285923362, 0.022521473467350006, 0.04625426232814789, -0.08066456019878387, -0.014883464202284813, -0.0136945815756917, -0.04885634407401085, 0.023082267493009567, -0.02523571439087391, 0.01897725835442543, -0.01637517474591732, -0.01333567313849926, -0.039210692048072815, -0.005439698696136475, -0.01449090801179409, -0.0670260563492775, -0.01781080663204193, -0.015433041378855705, -0.047465577721595764, -0.0262227114289999, 0.031112832948565483, 0.008798852562904358, -0.03393923118710518, -0.03858260437846184, -0.0024983359035104513, 0.016734082251787186, -0.01953805238008499, -0.0006256354390643537, -0.04044444113969803, 0.009393294341862202, -0.01926887035369873, -0.007593146525323391, -0.005666819866746664, -0.018304305151104927, 0.008866148069500923, 0.01094108447432518, 0.007452948018908501, 0.010559745132923126, 0.031942807137966156, 0.0217587947845459, -0.0016431254334747791, 0.011866394430398941, -0.05666259303689003, 0.02104097791016102, 0.0008846520213410258, -0.017642568796873093, 0.022072838619351387, 0.037752628326416016, -0.014277806505560875, 0.024226287379860878, 0.0195716992020607, -0.0154442572966218, 0.009881184436380863, 0.016162073239684105, -0.02794995717704296, -0.037102110683918, 0.000610914605204016, -0.015724655240774155, 0.038896650075912476, -0.04638885334134102, 0.020211003720760345, 0.021915815770626068, 0.019885743036866188, 0.04333813488483429, 0.02969963289797306, 0.015175077132880688, 0.0009056817507371306, -0.017507977783679962, -0.0051144384779036045, -0.013795523904263973, 0.025684349238872528, -0.011496270075440407, -0.03423084691166878, 0.014446045272052288, -0.03752831369638443, 0.00431811111047864, 0.04463917762041092, -0.018001476302742958, 0.060072217136621475, -0.02552732825279236, 0.008742772974073887, -0.0518621988594532, 0.02725457213819027, 0.02680593729019165, -0.01593775674700737, -0.01971750520169735, -0.020076412707567215, -0.011933689005672932, 0.02156812511384487, 0.012079495936632156, 0.06689146906137466, -0.016464902088046074, 0.009253095835447311, 0.014457261189818382, 0.04360731691122055, 0.010817710310220718, -0.03236901015043259, -0.01071115955710411, 0.0030114620458334684, -0.005170517601072788, 0.0034797247499227524, -0.014412397518754005, -0.06128353253006935, -0.037909653037786484, -0.02725457213819027, 0.004382602404803038, -0.0062528494745492935, 0.015477905049920082, 0.010784062556922436, -0.02507869340479374, 0.01268515270203352, -0.03781992569565773, -0.043697044253349304, -0.03012583591043949, -0.009965303353965282, -0.01507413387298584, -0.0029049112927168608, 0.018382815644145012, -0.007593146525323391, -0.010890613310039043, 0.04161088913679123, -0.01901090517640114, 0.01579194888472557, 0.009387685917317867, -0.017418252304196358, -0.020491400733590126, -0.01912306435406208, -0.011142970062792301, 0.016162073239684105, 0.02420385554432869, -0.033535461872816086, 0.0005607936764135957, 0.00841190479695797, -0.030260426923632622, -0.014143216423690319, -0.04304652288556099, 0.0015085350023582578, -0.005921981297433376, -0.02002033405005932, 0.013660933822393417, -0.03912096470594406, -0.019908174872398376, -0.020042765885591507, 0.00882689282298088, 0.02741159498691559, -0.012359892949461937, 0.007509027142077684, 0.009180192835628986, 0.02027829922735691, 0.004626547917723656, 0.006224809680134058, -0.034724343568086624, -0.009079249575734138, 0.010901829227805138, -0.01347026415169239, -0.011686939746141434, -0.0023819711059331894, -0.025863803923130035, 0.019650209695100784, 0.027927525341510773, -0.007744560483843088, -0.00478076608851552, 0.0110252033919096, -0.0036283349618315697, -0.02943045273423195, 0.007049176376312971, -0.013077707961201668, 0.009684906341135502, -0.01521993987262249, -0.03916582837700844, -0.0026595639064908028, 0.0036535707768052816, 0.026155415922403336, 0.00698748929426074, -0.010240092873573303, -0.031247423961758614, 0.008131507784128189, -0.0016585473204031587, -0.02406926453113556, 0.021276511251926422, -0.018046339973807335, -0.019739937037229538, 0.020031549036502838, -0.009382078424096107, -0.014277806505560875, -0.034993525594472885, 0.01740703545510769, 0.0025333852972835302, 0.027007823809981346, -0.03118012845516205, -0.021355023607611656, -0.005523817613720894, -0.03216712549328804, -0.032705485820770264, -0.014726441353559494, 0.01896604150533676, -0.04849743843078613, -0.01769864745438099, 0.011608429253101349, -0.02449546754360199, 0.028219137340784073, -0.029026679694652557, 0.03873962536454201, 0.06482774764299393, -0.012202870100736618, -0.024248719215393066, 0.004528408870100975, 0.01566857472062111, -0.012427187524735928, -0.0382685586810112, 0.016296664252877235, 0.028443455696105957, -0.010784062556922436, -0.012371107935905457, -0.015320883132517338, -0.009174584411084652, 0.02794995717704296, -0.0016571453306823969, -0.0341859832406044, 0.03028285875916481, -0.022005543112754822, 0.007166943047195673, -0.012247733771800995, 0.02550489641726017, -0.01695840060710907, -0.024966534227132797, 9.813889482757077e-05, -0.015040486119687557, -0.023418743163347244, 0.018012693151831627, 0.011787883006036282, 0.023104699328541756, 0.01203463226556778, -0.02362062968313694, -0.0032273675315082073, -0.038358286023139954, 0.012169222347438335, 0.027635911479592323, 0.009180192835628986, 0.05415023863315582, -0.004536820575594902, -0.020794229581952095, -0.02548246458172798, -0.023014971986413002, 0.03192037716507912, 0.011507485993206501, -0.006981881335377693, -0.04188007116317749, 0.033266279846429825, 0.033692482858896255, 0.02581894025206566, -0.0003294662747066468, -0.008602574467658997, 0.01311135571449995, 0.0176762156188488, 0.008254882879555225, -0.012797311879694462, 0.013201083056628704, 0.0007591744069941342, -0.011642077006399632, 0.008871755562722683, 0.007632401771843433, 0.006533246487379074, -0.009819497354328632, -0.0009218045743182302, -0.0018365993164479733, -0.013032845221459866, -0.013896467164158821, 0.004946200177073479, 0.02359819784760475, -0.02682836912572384, -0.011187833733856678, -0.024114128202199936, -0.02812940999865532, -0.023418743163347244, 0.0017819218337535858, 0.0014524556463584304, 0.014446045272052288, -0.027501322329044342, 0.011574781499803066, 0.012774880044162273, 0.02925099804997444, 0.00899513065814972, -0.022970108315348625, -0.0066285813227295876, -0.012629073113203049, 0.014322670176625252, 0.03813397139310837, -0.010475626215338707, 0.035150546580553055, -0.027030255645513535, 0.05087520182132721, -0.019044553861021996, 0.030305290594697, -0.005582700949162245, -0.007368828635662794, -0.010335427708923817, 0.008013741113245487, -0.04405594989657402, -0.06016194447875023, -0.0044190539047122, -0.029206134378910065, 0.01797904446721077, 0.0014251169050112367, 0.00795766245573759, -0.030484743416309357, 0.01693596877157688, 0.000344362371833995, 0.041207119822502136, 0.007161335088312626, -0.017070559784770012, -0.020973682403564453, 0.0324363075196743, 0.0373937226831913, 0.0037517095915973186, -0.007834287360310555, 0.0015688203275203705, 0.01796782948076725, 0.02291402965784073, 0.048317983746528625, 0.012124359607696533, 0.010397114790976048, -0.02188216894865036, 0.006841682828962803, -0.011316816322505474, -0.010901829227805138, 0.012617857195436954, -0.003886300139129162, -0.0308885145932436, -0.010784062556922436, 0.03288494050502777, 0.023957105353474617, 0.04098280146718025, -0.009241879917681217, 0.013851603493094444, -0.00684729078784585, -0.011496270075440407, 0.044123247265815735, 0.002320283791050315, -0.01087939739227295, 0.02842102386057377, -0.002403000835329294, -0.03259332850575447, 0.003059129463508725, 0.04551401361823082, 0.023844946175813675, 0.026850800961256027, 0.0060061002150177956, -0.004242403898388147, 0.0321446917951107, -0.005966844502836466, 0.019481971859931946, -0.00979145709425211, -0.002125408034771681, -0.037887219339609146, 0.025998394936323166, -0.0095671396702528, 0.0017707060324028134, -0.00020679266890510917, 0.006718308199197054, 0.030641766265034676, 0.01608356274664402, -0.021781226620078087, 0.027456458657979965, 0.01195612084120512, 0.048452574759721756, -0.04728612303733826, -0.00561074074357748, 0.017283661291003227, -0.032974667847156525, 0.0029133232310414314, 0.03880692273378372, 0.05329782888293266, -0.03315412253141403, 0.02635730244219303, -0.042396001517772675, -0.016139641404151917, -0.004643371794372797, 0.0008201607270166278, -0.018057556822896004, 0.013302026316523552, 0.012270165607333183, 0.002638534177094698, 0.04134171083569527, 0.04262031987309456, 0.00029143746360205114, 0.010099894367158413, -0.0178220234811306, 0.012068280018866062, 0.04472890496253967, 0.011866394430398941, -0.011406543664634228, 0.008731557056307793, -0.022936461493372917, 0.04795907437801361, 0.003207739908248186, 0.021108273416757584, 0.0015632123686373234, 0.004228384234011173, 0.04598508030176163, -0.027007823809981346, -0.017878102138638496, 0.020951252430677414, -0.040489304810762405, 0.020816661417484283, 0.010615823790431023, -0.001526760752312839, 0.00583786191418767, -0.0029974421486258507, -0.0011405141558498144, -0.03974905610084534, -0.023867378011345863, 0.029789360240101814, -0.012057064101099968, 0.0059500206261873245, 0.03829099237918854, -0.049663886427879333, -0.022241076454520226, -0.022577553987503052, -0.026267575100064278, -0.005260244477540255, 0.045267265290021896, 0.048317983746528625, 0.04277734085917473, -0.018214577808976173, 0.004618135746568441, 0.009819497354328632, 0.052804332226514816, -0.016038699075579643, 0.01507413387298584, 0.007464163936674595, 0.04248572885990143, 0.016745299100875854, 0.0159265398979187, 0.03642915561795235, -0.009163368493318558, -0.007991310209035873, -0.003656374756246805, 0.020962467417120934, -0.02433844469487667, -0.017631353810429573, -0.054284825921058655, 0.02420385554432869, -0.03445516154170036, -0.00846798438578844, -0.03162876144051552, 0.00970733817666769, 0.0063257524743676186, -0.004691039212048054, 0.014524555765092373, 0.07658198475837708, -0.04493078961968422, -0.007009920664131641, -0.00014992468641139567, -0.028892090544104576, -0.02216256596148014, -0.025706781074404716, 0.00855210330337286, 0.018898745998740196, 0.01564614288508892, -0.019358597695827484, -0.0033619580790400505, -0.006028532050549984, 0.018584702163934708, -0.0006939821760170162, -0.02958747372031212, 0.001507133012637496, 0.001025551464408636, 0.007295925635844469, -0.009572748094797134, 0.016633139923214912, 0.05684204772114754, 0.018450111150741577, 0.009527884423732758, -0.013066492974758148, 0.02478707954287529, 0.0014153029769659042, 0.0035638436675071716, 0.015264803543686867, 0.00510322256013751, -0.0241814237087965, -0.006802427116781473, -0.003976027015596628, -0.052535150200128555, -0.023216858506202698, -0.01972872205078602, 0.014558203518390656, -0.012864606454968452, -0.0060565718449652195, -0.0426427498459816, 0.029789360240101814, 0.0035442160442471504, 0.012225301936268806, 0.011978552676737309, -0.002227752935141325, 0.029161270707845688, -0.0036928262561559677, -0.008585751056671143, 0.014255374670028687, 0.0059331972151994705, 0.03806667402386665, 0.019481971859931946, -0.021983111277222633, 0.022386882454156876, -0.011075674556195736, 0.012976765632629395, 0.03568891063332558, 0.0020973682403564453, 0.0017777159810066223, -0.020670855417847633, 0.0001876906317193061, 0.03530757129192352, -0.026581620797514915, -0.01621815375983715, 0.008653046563267708, 0.010256916284561157, -0.022386882454156876, 0.011058851145207882, 0.0006403562729246914, -0.011187833733856678, 0.0022950482089072466, -0.020603559911251068, 0.004158284980803728, -0.0027324671391397715, 0.030664198100566864, -0.0046153319999575615, 0.010610216297209263, 0.028353728353977203, 0.002202517120167613, -0.02071571908891201, -0.03640672564506531, -0.03342330455780029, -0.020749365910887718, -0.011709371581673622, 0.025908667594194412, -0.0035946874413639307, -0.03656374663114548, 0.00528548052534461, 0.015388178639113903, 0.03277278319001198, 0.02375522069633007, -0.016835026443004608, 0.01377309300005436, -0.00804178137332201, -0.0018309913575649261, -0.0033367222640663385, 0.046299125999212265, 0.01290947012603283, -0.03133714944124222, 0.015231155790388584, 0.03216712549328804, 0.004592900164425373, 0.019392244517803192, 0.011843962594866753, 0.022700928151607513, -0.012808527797460556, -0.023822514340281487, 0.019953038543462753, 0.0028221942484378815, 0.002268410287797451, -0.004584488458931446, -0.005666819866746664, 0.03656374663114548, -0.009477413259446621, 0.011821530759334564, -0.0033423302229493856, -0.00024745019618421793, -0.036451589316129684, 0.013672149740159512, -0.012326245196163654, -0.024988966062664986, -0.03844801336526871, -0.0043769944459199905, -0.01712663844227791, -0.027478890493512154, 0.02391224168241024, -0.0012253341265022755, -0.022846734151244164, -0.021691499277949333, 0.004452701658010483, -0.0014847012935206294, -0.034836504608392715, -0.028151841834187508, 0.011518701910972595, 0.00561354449018836, 0.02274579182267189, -0.004710666835308075, -0.032997097820043564, -0.006454735063016415, -0.011799098923802376, 0.003547020023688674, 0.022644847631454468, -0.029901519417762756, -0.01355999056249857, 0.004525605123490095, -0.048048801720142365, 0.013088923878967762, 0.032817646861076355, -0.015691006556153297, -0.01809120364487171, -0.00979145709425211, 0.02958747372031212, -0.002286636270582676, -0.009976519271731377, -0.015006838366389275, -0.02765834331512451, 0.00688654650002718, 0.004082577768713236, -0.012730016373097897, 0.00749781122431159, -0.003412429476156831, -0.020771797746419907, -0.006168730556964874, -0.028017252683639526, -0.0017650980735197663, -0.018909962847828865, 0.012191654182970524, -0.005420070607215166, -0.0022249489556998014, -0.0009463393362239003, 0.006213593762367964, 0.024719785898923874, -0.02330658584833145, 0.0046798232942819595, -0.0021240059286355972, -0.0011706567602232099, -0.03375978022813797, -0.01898847334086895, 0.003019873984158039, 0.03553188592195511, 0.012662720866501331, -0.018472542986273766, -0.03203253448009491, 0.038044244050979614, 0.0032385834492743015, 0.032952237874269485, 0.018180930987000465, 0.014782520942389965, 0.030798789113759995, -0.022229861468076706, 0.01218043826520443, -0.005955628585070372, -0.01954926736652851, -0.04039957746863365, -0.025303009897470474, -0.007166943047195673, -0.007839895784854889, -0.012337461113929749, -0.009028778411448002, 0.031942807137966156, -0.010234484449028969, 0.015253587625920773, -0.00431811111047864, 0.00846798438578844, 0.03959203138947487, -0.0039199478924274445, -0.021512044593691826, 0.019919391721487045, -0.005748135037720203, -0.020121276378631592, -0.035128116607666016, -0.009045601822435856, 0.033266279846429825, -0.013178651221096516, -0.013279594480991364, 0.058322541415691376, 0.016150858253240585, -0.005921981297433376, 0.05029197782278061, 0.010032598860561848, -0.005487366113811731, 0.03755074366927147, -0.003112404840067029, 0.02783779799938202, -0.016319096088409424, -0.00638183206319809, 0.0005618451396003366, -0.0022642044350504875, -0.011002771556377411, 0.010122326202690601, 0.007234238553792238, -0.0031264247372746468, -0.01813606731593609, 0.0015435846289619803, -0.004629351664334536, 0.008625006303191185, 0.02143353410065174, -0.009370862506330013, 0.0015435846289619803, -0.04073605313897133, -0.003877888200804591, -0.03815640136599541, -0.0071389032527804375, -0.004646175540983677, -0.002428236650303006, 0.015118997544050217, -0.009589571505784988, 0.037887219339609146, 0.031494174152612686, -0.0010360663291066885, 0.006723916158080101, 0.008529671467840672, -0.02089517191052437, -0.03140444681048393, 0.004971435759216547, -0.014861032366752625, -0.005734115373343229, 0.02794995717704296, 0.018932394683361053, 0.01753040961921215, -0.006718308199197054, 0.0032974667847156525, 0.01972872205078602, 0.016476118937134743, 0.0029974421486258507, -0.005484561901539564, -0.014300238341093063, -0.0288472268730402, 0.008081036619842052, 0.025706781074404716, -0.033243849873542786, -0.007800640072673559, 0.00804178137332201, 0.05621395632624626, -0.05450914427638054, -0.023508470505475998, 0.019448325037956238, 0.02637973427772522, -0.023687925189733505, 0.0034012135583907366, 0.0026076906360685825, 0.014961974695324898, -0.0075651067309081554, 0.004845257382839918, -0.004719078540802002, -0.004461113829165697, -0.01579194888472557, -0.019953038543462753, 0.01682380959391594, -0.015421826392412186, -0.006465950980782509, -0.031942807137966156, 0.006651013158261776, 0.028892090544104576, 0.03510568290948868, -0.03553188592195511, -0.05177247151732445, -0.018326736986637115, -0.011277561075985432, 0.001526760752312839, -0.058457132428884506, -0.0014790933346375823, 0.010890613310039043, 0.016868673264980316, -0.018943609669804573, 0.0028740675188601017, 0.02085030823945999, -0.010840141214430332, 0.012247733771800995, 0.02595353126525879, 0.028376160189509392, -0.039188262075185776, 0.0008327785762958229, -0.018337953835725784, -0.01810242049396038, -0.02929586172103882, -0.0013213701313361526, 0.004881708882749081, 0.04461674392223358, -0.016599493101239204, -0.004452701658010483, 0.020042765885591507, 0.028084546327590942, -0.011978552676737309, 0.04004066810011864, -0.03452245891094208, 0.0034993526060134172, -0.0016669591423124075, 0.01682380959391594, -0.02055869624018669, -0.025863803923130035, -0.018035124987363815, 0.037730198353528976, -0.0021352218464016914, 0.012427187524735928, -0.01809120364487171, 0.001539378659799695, -0.025033829733729362, 0.003866672283038497, 0.010043814778327942, -0.02449546754360199, 0.007755776401609182, -0.012326245196163654, -0.01447969302535057, -0.010346643626689911, -0.024988966062664986, 0.021971896290779114, 0.00818758737295866, -0.04161088913679123, -0.0247646477073431, 0.018192145973443985, -0.013021629303693771, -0.00877081323415041, 0.005832253955304623, -0.034141119569540024, -0.03057447075843811, 0.029520178213715553, -0.04495321959257126, 0.024585194885730743, 0.007649225648492575, 0.04652344435453415, 0.024988966062664986, -0.030484743416309357, 0.02188216894865036, -0.04764502868056297, 0.029385589063167572, -0.017216365784406662, -0.004119029734283686, -0.007682873401790857, -0.0019081004429608583, -0.0305969025939703, -0.024854375049471855, 0.009236271493136883, 0.012864606454968452, -0.02765834331512451, -0.014950759708881378, 0.016577061265707016, 0.006673444528132677, 0.00832217838615179, 0.009970911778509617, 0.0022249489556998014, 0.01899969018995762, 0.0022095269523561, 0.03764047101140022, 0.009387685917317867, -0.0010409732349216938, 0.023441174998879433, -0.00905681774020195, -0.013683365657925606, 0.008765204809606075, 0.0016739690909162164, 0.0032722309697419405, 0.006712700240314007, 0.011507485993206501, -0.011176617816090584, -0.024271149188280106, 0.04490835592150688, 0.007251061964780092, -0.0008972698706202209, -0.004713470581918955, 0.008849323727190495, 0.036002952605485916, -0.028914522379636765, 0.023979537189006805, 0.010464410297572613, 0.004225580487400293, -0.03070906177163124, 0.03577863797545433, 0.02042410522699356, -0.034858934581279755, 0.0005064667784608901, 0.026716209948062897, -0.022431746125221252, 0.009269919246435165, 0.023530902341008186, 0.011187833733856678, -0.007436124142259359, 0.02319442667067051, -0.016980832442641258, -0.02548246458172798, 0.039188262075185776, -0.01664435677230358, 0.011339248158037663, -0.02566191926598549, -0.03927798941731453, -0.017922965809702873, 0.018472542986273766, -0.008075429126620293, 0.05464373528957367, -0.036765631288290024, 0.02824156917631626, -0.0055126016959548, -0.013156219385564327, 0.013795523904263973, -0.02144474908709526, -0.005490169860422611, 0.006241633556783199, 0.001480495324358344, -0.015758302062749863, -0.015904108062386513, -0.020805444568395615, 0.013728229328989983, 0.0336027555167675, 0.0009428343619219959, -0.02480951137840748, 0.018741725012660027, 0.03261575847864151, 0.005832253955304623, 0.0102961715310812, -0.046882349997758865, 0.00877642072737217, -0.03867233172059059, 0.023508470505475998, -0.034275710582733154, 0.02494410239160061, -0.048452574759721756, 0.01856227032840252, 0.010845749638974667, -0.02015492506325245, 0.04378677159547806, 0.0049994755536317825, -0.036765631288290024, -0.015388178639113903, -0.019358597695827484, 0.012561778537929058, 0.029744496569037437, -0.005748135037720203, -0.01131120789796114, -0.02523571439087391, -0.01681259460747242, 0.018192145973443985, -0.01499562244862318, -0.013302026316523552, -0.001755284145474434, -0.005240616854280233, 0.015511552803218365, 0.01681259460747242, 0.0037601215299218893, -0.012898254208266735, -0.028331296518445015, 0.033378440886735916, -0.03277278319001198, -0.002304862020537257, -0.012651504948735237, 0.025886235758662224], [0.027858922258019447, 0.034127745777368546, 0.004101892467588186, -0.002711492357775569, -0.04408544301986694, 0.030959386378526688, 0.009974670596420765, 0.007898264564573765, 0.03480667993426323, 0.05264000967144966, -0.01901014894247055, 0.049109552055597305, 0.011677663773298264, -0.00850930530577898, -0.0263878982514143, 0.027881553396582603, -0.03059728816151619, 0.020639590919017792, -0.005372064653784037, -0.005462589208036661, 0.03200041875243187, 0.032204098999500275, 0.014732865616679192, 0.0035078253131359816, -0.0505579449236393, -0.019575927406549454, 0.016396254301071167, -0.013397629372775555, 0.057120975106954575, -0.027406299486756325, 0.018591472879052162, -0.016362307593226433, 0.02216719277203083, -0.005773767363280058, 0.04517173767089844, 0.012005814351141453, -0.012594223953783512, 0.029397837817668915, 0.02966941148042679, -0.03496509790420532, -0.062145084142684937, 0.05440523847937584, -0.022212455049157143, -0.046529605984687805, -0.05666835233569145, 0.044243860989809036, 0.003858607728034258, -0.00810194481164217, -0.03679822012782097, 0.036594539880752563, -0.01260553952306509, 0.021329840645194054, 0.004087748005986214, 0.009007190354168415, 0.03774872422218323, 0.03093675523996353, -0.01830858550965786, 0.008503647521138191, 0.013884198851883411, -0.008226416073739529, -0.02953362464904785, 0.018093589693307877, -0.022608499974012375, 0.04193548485636711, -0.02006249688565731, -0.029216788709163666, -0.015015754848718643, 0.019089357927441597, -0.025550546124577522, -0.0010671992786228657, 0.02573159523308277, 0.013737096451222897, -0.04478700831532478, -0.04089445248246193, -0.0003559098986443132, -0.0187272597104311, 0.03568929433822632, 0.024170046672225, 0.04200337827205658, 0.03408248350024223, -0.026659471914172173, 0.018319901078939438, 0.0035842054057866335, 0.009465469978749752, -0.000594420765992254, 0.0013408944942057133, -0.005038255359977484, 0.02013039030134678, -0.0150383859872818, -0.034716155380010605, -0.01365788746625185, 0.026591578498482704, 0.022902704775333405, 0.06920599937438965, 0.013725780881941319, -0.007445641793310642, 0.0065517122857272625, -0.020673537626862526, -0.020435910671949387, 0.06345769017934799, 0.03435405716300011, 0.03037097677588463, -0.0005707288510166109, 0.010093484073877335, 0.02849259413778782, -0.08418780565261841, -0.05974618345499039, 0.022325610741972923, 0.025233710184693336, -0.025369497016072273, 0.029986247420310974, 0.0067271036095917225, -0.01977960765361786, 0.07472798973321915, -0.0017864449182525277, -0.003405985189601779, 0.021952196955680847, -0.021725885570049286, -0.005872778594493866, 0.0005265274085104465, 0.018093589693307877, -0.005145753268152475, -0.00017415362526662648, -0.10681893676519394, -0.0005201624007895589, 0.03347144275903702, -0.030348345637321472, 0.0005053107161074877, 0.009572967886924744, -0.0030863203573971987, 0.0060255383141338825, -0.01330710481852293, 0.0389481745660305, -0.014517870731651783, -0.007705899886786938, -0.01555890217423439, 0.016690459102392197, -0.014212350361049175, -0.011790819466114044, -0.016939401626586914, 0.014031301252543926, -0.018444372341036797, 0.021544836461544037, 0.013827621005475521, -0.05639677867293358, 0.010229270905256271, 0.01766359806060791, 0.07966157793998718, 0.025935275480151176, 0.008548909798264503, -0.04066814109683037, 0.02251797541975975, 0.01742597110569477, 0.002087721833959222, 0.015592848882079124, 0.057302024215459824, 0.005137266591191292, 0.028175758197903633, -0.004939244128763676, 0.012809219770133495, -0.046936966478824615, -0.037296101450920105, 0.009261790663003922, -0.014461292885243893, 0.055717844516038895, -0.02883206121623516, -0.02152220532298088, -0.013126055710017681, -0.036820851266384125, -0.036345597356557846, -0.03935553506016731, 0.01954198069870472, 0.020458541810512543, -0.005394695792347193, -0.0010240586707368493, -0.02561843954026699, 0.0067214458249509335, -0.014959177002310753, 0.02498476766049862, -0.05368104204535484, -0.017278868705034256, -0.04838535562157631, -0.05042215809226036, -0.04720854014158249, -0.024464251473546028, 0.0472538024187088, 0.0494716502726078, 0.000203680174308829, -0.022427450865507126, -0.00042504092562012374, 0.006749734748154879, 0.01718834415078163, -0.04087182134389877, 0.020254861563444138, -0.01412182580679655, 0.0010862943017855287, -0.012854482047259808, 0.002799188019707799, 0.04528489336371422, -0.016520725563168526, 0.03768083080649376, -0.029239419847726822, -0.006048169452697039, 0.05082951858639717, -0.03485194221138954, -0.010082168504595757, 0.03175147622823715, 0.04207127168774605, 0.03417300805449486, -0.008548909798264503, -0.009731385856866837, -0.05327368155121803, -0.07106175273656845, 0.0263878982514143, -0.02760997973382473, 0.016588618978857994, 0.049697961658239365, 0.033833540976047516, -0.020956426858901978, 0.00821510050445795, -0.007564455270767212, -0.0354403518140316, 0.0033267762046307325, -0.010506502352654934, -0.052323173731565475, -0.008067998103797436, -0.020447226241230965, -0.0031004648189991713, -0.015309959650039673, -0.06757655739784241, -0.026998938992619514, 0.03614191710948944, 0.01994934119284153, -0.019904078915715218, 0.038223978132009506, 0.02742893062531948, -0.009148634970188141, -0.028107864782214165, 0.00010900072084041312, 0.018681997433304787, -0.023468483239412308, -0.011655032634735107, -0.023604270070791245, -0.02713472582399845, -0.0406002476811409, -0.008475358597934246, -0.004314059391617775, 0.0011930848704650998, 0.06323137879371643, 0.04340650886297226, 0.01395209226757288, -0.02561843954026699, 0.0441080741584301, -0.02772313542664051, 0.01736939325928688, 0.0035361142363399267, 0.034716155380010605, -0.026749996468424797, 0.032498303800821304, -0.014223665930330753, -0.0073098549619317055, -0.009505074471235275, -0.06123983860015869, 0.00953902117908001, -0.0856361985206604, -0.0205830130726099, 0.07812266051769257, -0.055717844516038895, -0.034648261964321136, 0.04247863218188286, -0.02000591903924942, 0.045895934104919434, 0.038178715854883194, -0.029963616281747818, -0.008407465182244778, -0.002827476942911744, 0.005997249390929937, -0.0332225002348423, -0.018342532217502594, -0.0013684761943295598, -0.049924273043870926, -0.0008571540820412338, 0.022732971236109734, -0.014902599155902863, 0.0010763931786641479, -0.00639329431578517, 0.008458385244011879, -0.006359347607940435, 0.010308479890227318, 0.04960743710398674, 0.06323137879371643, -0.00494207302108407, -0.028356807306408882, 0.019643820822238922, -0.0018684826791286469, -0.00036775588523596525, -0.014823390170931816, 0.00941454991698265, -0.015524955466389656, -0.0424560010433197, -0.014382083900272846, 0.037884511053562164, 0.0006354397046379745, 0.04662013053894043, -0.044424910098314285, -0.013929461129009724, 0.0218729879707098, 0.028515225276350975, -0.02568633295595646, -0.014732865616679192, -0.03281513974070549, 0.021974828094244003, -0.03426353260874748, -0.037409257143735886, -0.0350782535970211, 0.007717215456068516, -0.04268231242895126, 0.0260258000344038, 0.01515154168009758, 0.010812022723257542, 0.0026704734191298485, 0.03270198404788971, 0.01878383755683899, 0.012775273062288761, 0.013499469496309757, 0.018817784264683723, 0.004707274958491325, 0.051508452743291855, -0.03697926923632622, 0.007332486100494862, -0.017177028581500053, 0.03433142602443695, 0.016339676454663277, -0.017629651352763176, -0.015943631529808044, -0.00019183418771717697, -0.009408892132341862, 0.03657190874218941, -0.02035670168697834, -0.001210058224387467, 0.009233501739799976, 0.029058372601866722, 0.023830581456422806, 0.013341051526367664, 0.0006739833625033498, 0.02093379572033882, 0.03018992766737938, 0.05657782778143883, 0.0034201296512037516, 0.0223369263112545, 0.032611459493637085, 0.010370715521275997, -0.003954790066927671, -0.022676393389701843, -0.04897376522421837, -0.014879968017339706, -0.021454311907291412, 0.029081003740429878, -0.011151489801704884, 0.02217850834131241, 0.024056890979409218, -0.012209494598209858, 0.048702191561460495, 0.06549449265003204, -0.013442891649901867, 0.0005898238159716129, -0.00970875471830368, 0.004970361944288015, 0.023004544898867607, -0.030574657022953033, 0.04539804905653, 0.02697630785405636, -0.022257717326283455, -0.05227791145443916, 0.01538916863501072, -0.002844450296834111, 0.017618335783481598, 0.050105322152376175, -0.006529081147164106, 0.017697544768452644, 0.02303849160671234, -0.00941454991698265, 0.037522412836551666, 0.010908205062150955, 0.06490608304738998, 0.05639677867293358, -0.03908396139740944, 0.001115997671149671, 0.009544678963720798, 0.007971815764904022, -0.05825253203511238, 0.004622408654540777, 0.004786483943462372, -0.0033380917739123106, -0.008254704996943474, -0.002055189572274685, 0.044900164008140564, 0.0332225002348423, 0.0034738786052912474, -0.04037393629550934, 0.005804885178804398, -0.05657782778143883, -0.015536271035671234, -0.0897098034620285, 0.03134411573410034, 0.012333965860307217, 0.008107602596282959, -0.02135247178375721, 0.016520725563168526, -0.016973348334431648, 0.05327368155121803, 0.003700189758092165, 0.025414759293198586, -0.005564429331570864, 0.011779503896832466, 0.01766359806060791, 0.03326776251196861, 0.04793273285031319, 0.014959177002310753, -0.023785319179296494, 0.04017025604844093, -0.023559007793664932, -0.041799698024988174, 0.047299064695835114, -0.01836516335606575, 0.0006297819199971855, 0.022970598191022873, 0.03620981052517891, 0.006166982930153608, -0.062326133251190186, -0.034535106271505356, -0.0019123305100947618, 0.017244921997189522, 0.02790418453514576, -0.03134411573410034, -0.0029929669108241796, 0.0027652413118630648, -0.03942342847585678, -0.027858922258019447, -0.012911059893667698, -0.043429140001535416, -0.008769563399255276, 0.004200903698801994, 0.044605959206819534, -0.027451561763882637, 0.02111484482884407, -0.008130233734846115, 0.011191094294190407, 0.015072332695126534, -0.019055411219596863, -0.006794997025281191, -0.034127745777368546, -0.03222673013806343, 0.003609665436670184, -0.031095173209905624, 0.0016478291945531964, -0.008079313673079014, -0.043021779507398605, 0.02978256717324257, -0.03480667993426323, 0.036051392555236816, 0.06694288551807404, 0.06513239443302155, 0.043315984308719635, 0.02380795031785965, 0.08835193514823914, 0.02204272150993347, -0.0350782535970211, -0.00011430488666519523, -0.06006301939487457, -0.003372038481757045, -0.0319325253367424, 0.016633881255984306, -0.010336768813431263, -0.012526330538094044, -0.02989572286605835, -0.022314295172691345, -0.02432846464216709, -0.027972077950835228, 0.010597026906907558, 0.024305833503603935, 0.033539336174726486, -0.04037393629550934, -0.02112616039812565, 0.031321484595537186, -0.020696168765425682, 0.040034469217061996, 0.002253212034702301, -0.014947861433029175, -0.02006249688565731, -0.07916369289159775, -0.006308427546173334, 0.014099194668233395, -0.00904113706201315, -0.005547455977648497, -0.03365249186754227, -0.0205830130726099, -0.0013974723406136036, 0.03620981052517891, -0.013510785065591335, 0.031434640288352966, -0.0063763209618628025, 0.009318367578089237, -0.006342374254018068, 0.060515642166137695, -0.020039865747094154, -0.01644151657819748, 0.007389063946902752, 0.004384781699627638, -0.04793273285031319, -0.056939925998449326, 0.0015884224558249116, 0.028402069583535194, 0.021839041262865067, -0.018636735156178474, -0.04834009334445, 0.02013039030134678, 0.014698918908834457, -0.039989206939935684, -0.0060198805294930935, -0.007100517395883799, -0.02643316052854061, -0.03697926923632622, -0.025595808401703835, -0.040283411741256714, 0.013703149743378162, 0.011858712881803513, -0.03351670503616333, 0.0013027044478803873, 0.007038281764835119, -0.027655242010951042, -0.052685271948575974, -0.004794970620423555, -0.022087983787059784, 0.01480075903236866, -0.014597078785300255, 0.012763957493007183, 0.011666348204016685, -0.012967637740075588, -0.020922480151057243, 0.033199869096279144, -0.025346865877509117, 0.006766708102077246, -0.016758352518081665, 0.02457740716636181, 0.02568633295595646, 0.03978552669286728, -0.001629441394470632, 0.013182633556425571, -0.024011628702282906, 0.007202357519418001, 0.0007468272815458477, 0.011275961063802242, 0.020368017256259918, 0.002050946233794093, 0.001444149063900113, 0.03702453151345253, -0.030846230685710907, 0.002056604018434882, -0.010625315830111504, -0.00040559229091741145, 0.009329683147370815, -0.02561843954026699, 0.009182581678032875, 0.0075191929936409, 0.0501958467066288, -0.012594223953783512, -0.030167296528816223, 0.037884511053562164, -0.006161325145512819, -0.011258987709879875, 0.025052661076188087, 0.015309959650039673, -0.03333565592765808, 0.049924273043870926, 0.015819160267710686, 0.011655032634735107, -0.0479779951274395, -0.02065090648829937, 0.033833540976047516, 0.016102049499750137, 0.03736399486660957, 0.04155075550079346, -0.029081003740429878, -0.014846021309494972, 0.0004929343122057617, 0.0032617116812616587, -0.03942342847585678, -0.0013670617481693625, 0.019349616020917892, 0.01924777589738369, -0.026410529389977455, -0.014382083900272846, -0.011892659589648247, -0.006749734748154879, 0.058478839695453644, -0.03779398649930954, 0.012424490414559841, -0.04415333643555641, 0.028696274384856224, 0.00026078842347487807, 0.022484028711915016, -0.0017581559950485826, 0.005015624221414328, -0.023027176037430763, -0.025075292214751244, 0.007179726380854845, -0.03204568102955818, 0.012288703583180904, 0.020503804087638855, 0.022484028711915016, 0.0009342413395643234, 0.013533416204154491, -0.00891666579991579, -0.018104905262589455, -0.0026209678035229445, -0.03184200078248978, -0.03485194221138954, -0.03485194221138954, -0.024305833503603935, -0.02613895572721958, 0.003722820896655321, 0.006319743115454912, -0.022201139479875565, -0.002176831942051649, -0.005058057606220245, 0.016124680638313293, -0.02532423473894596, 0.023083753883838654, -0.027225250378251076, 0.002990138018503785, 0.028741536661982536, -0.007705899886786938, -0.0163283608853817, -0.035304564982652664, 0.0003042826137971133, 0.019813554361462593, 0.014234981499612331, -0.006596974562853575, 0.04227495193481445, 0.038993436843156815, -0.003428616328164935, 0.003988736774772406, -0.04241073876619339, 0.02550528384745121, -0.016973348334431648, 0.018942255526781082, 0.012730010785162449, 0.028651012107729912, 0.01902146451175213, 0.0164302010089159, -0.004339519422501326, 0.024011628702282906, -0.02894521690905094, 0.009985986165702343, -0.042840730398893356, 0.005335289053618908, 0.030031509697437286, 0.015049701556563377, 0.027406299486756325, -0.009782305918633938, 0.018591472879052162, -0.009527705609798431, -0.023536376655101776, -0.005295684561133385, 0.041731804609298706, 0.0020962085109204054, -0.009352314285933971, 0.01058571133762598, -0.002661986742168665, -0.01901014894247055, -0.011338196694850922, -0.023027176037430763, -0.025957906618714333, -0.007100517395883799, 0.017097819596529007, -0.0358024500310421, 0.018150167539715767, -0.00763234868645668, 0.06576606631278992, -0.030959386378526688, -0.0315704271197319, -0.030280452221632004, 0.026591578498482704, -0.003120267065241933, -0.010195324197411537, 0.022914020344614983, -0.01029716432094574, -0.003264540573582053, -0.016418885439634323, 0.0236269012093544, 0.03385617211461067, -0.02000591903924942, 0.012911059893667698, -0.018693313002586365, 0.02708946354687214, -0.01783333159983158, -0.01620388962328434, -0.03566666319966316, 0.017063872888684273, -0.0014278829330578446, 0.017516495659947395, -0.015411799773573875, -0.10030116885900497, -0.03514614701271057, -0.008944954723119736, 0.002476694295182824, 0.02164667658507824, 0.01447260845452547, 0.008237731643021107, -0.014280243776738644, -0.006212245207279921, -0.028922585770487785, -0.0350782535970211, -0.04465122148394585, -0.0006145766237750649, -0.023083753883838654, -0.013103424571454525, 0.028922585770487785, 0.015083648264408112, -0.0472538024187088, 0.025369497016072273, 0.005516338162124157, -0.010053879581391811, 0.02960151806473732, -0.031095173209905624, 0.0055191670544445515, -0.016418885439634323, -0.03000887855887413, 0.03976289555430412, 0.022597184404730797, -0.0057879118248820305, 0.0196551363915205, 0.012831850908696651, -0.001810490502975881, 0.010614000260829926, -0.051101092249155045, 0.0028515225276350975, 0.028288913890719414, 0.009126003831624985, -0.02053775079548359, -0.015083648264408112, 4.6455701522063464e-05, -0.038472920656204224, 0.002595507772639394, 0.009058110415935516, 0.0065630278550088406, 0.0007998690125532448, -0.04112076386809349, -0.003422958543524146, 0.011355170048773289, 0.006404609885066748, -0.03568929433822632, -0.023377958685159683, 0.006710130255669355, -0.0036351254675537348, 0.00035873879096470773, 0.02561843954026699, 0.038223978132009506, 0.011666348204016685, 0.005332460161298513, -0.016995979472994804, 0.0054258136078715324, 0.04965269938111305, 0.018557526171207428, -0.01561548002064228, -0.019790923222899437, 6.099796883063391e-05, 0.017063872888684273, -0.03691137582063675, -0.0008507890743203461, -0.0023904130794107914, 0.041324444115161896, 0.011010045185685158, 0.0049873352982103825, 0.007796424441039562, -0.006138694006949663, -0.026772627606987953, -0.025595808401703835, -0.01719965972006321, 0.019904078915715218, 0.005284368991851807, -0.017154397442936897, 0.04585067182779312, 0.00926744844764471, 0.013522100634872913, 0.026365267112851143, 0.04071340337395668, 0.010523475706577301, 0.012243441306054592, 0.003722820896655321, -0.026636840775609016, -0.004777997266501188, -0.02309506945312023, -0.03245304152369499, -0.003521969774737954, 0.012039761058986187, -0.058705151081085205, 0.008492331951856613, 0.028877323493361473, -0.027655242010951042, 0.010053879581391811, -0.011994498781859875, 0.019802238792181015, 0.060923002660274506, -0.00988980382680893, -0.07142385095357895, -0.027519455179572105, 0.011145832017064095, -0.034240901470184326, -0.009901119396090508, 0.01690545491874218, 0.017991749569773674, 0.04938112571835518, 0.006002907175570726, -0.04428912326693535, -0.017301499843597412, 0.04367808252573013, 0.004670499358326197, -0.03254356607794762, 0.023174278438091278, -0.023072438314557076, 0.0025120554491877556, -0.01515154168009758, 0.04748011380434036, 0.006461187731474638, -0.04743485152721405, 0.011802135035395622, 0.0046365526504814625, 0.0011195337865501642, 0.01365788746625185, -0.000839473505038768, 0.014167088083922863, 0.0015219434862956405, -0.01116846315562725, 0.016894139349460602, -0.023423220962285995, 0.022359557449817657, 0.010138746351003647, 0.025188447907567024, 0.043791238218545914, -0.028221020475029945, 0.009346656501293182, 0.00598027603700757, -0.016950717195868492, 0.014902599155902863, 0.005363577976822853, 0.0018656537868082523, -0.022506659850478172, 0.040622878819704056, 0.014597078785300255, 0.015253381803631783, -0.0065573700703680515, -0.0010141575476154685, -0.006806312594562769, -0.016814930364489555, 0.020956426858901978, -0.011688979342579842, -0.040736034512519836, -0.0044102417305111885, -0.006574343424290419, -0.011038334108889103, 0.0011089254403486848, 0.024962136521935463, 0.02292533591389656, -0.004840232897549868, -0.0031994760502129793, 0.03129885345697403, -0.017527811229228973, 0.005974618252366781, 0.02194088138639927, -0.005974618252366781, 0.011621085926890373, -0.04347440227866173, -0.042614419013261795, -0.015332590788602829, -0.003372038481757045, 0.012945006601512432, 0.022099299356341362, 0.0049052974209189415, 0.001760984887368977, 0.01825200766324997, 0.012809219770133495, 0.019326984882354736, -0.023491114377975464, -0.026772627606987953, -0.011836081743240356, 0.045420680195093155, 0.024351095780730247, -0.010348084382712841, 0.04394965618848801, 0.028107864782214165, 0.010495186783373356, -0.017244921997189522, -0.02146562747657299, -0.011247672140598297, 0.001913744956254959, -0.017301499843597412, -0.016928086057305336, 0.03315460681915283, -0.03059728816151619, 0.006964730564504862, -0.020107759162783623, -0.002694519003853202, -0.029103634878993034, 0.015773897990584373, -0.021488258615136147, -0.003383354051038623, -0.005239106714725494, 0.014936545863747597, 0.02527897246181965, 0.003270198358222842, -0.0016280269483104348, 0.0019858817104250193, 0.040917083621025085, 0.007722873240709305, -0.02779102884232998, 0.011247672140598297, 0.007626690901815891, 0.03485194221138954, 0.026478422805666924, 0.028628380969166756, 0.005779425147920847, -0.01225475687533617, -0.024939505383372307, -0.014053932391107082, -0.004172614775598049, 0.0005756794125773013, -0.022947967052459717, -0.022834811359643936, -0.005176871083676815, 0.022416135296225548, -0.0019872961565852165, 0.011077938601374626, 0.015106279402971268, 0.041324444115161896, -0.0062009296379983425, 0.008956270292401314, 0.012888428755104542, -0.010778076015412807, 0.02268770895898342, 0.016158627346158028, -0.02041327953338623, -0.010891231708228588, -0.05521995946764946, -0.0011598453857004642, 0.036232441663742065, 0.015649426728487015, -0.012266072444617748, 0.016747036948800087, 0.014879968017339706, -0.003439931897446513, 0.0024554776027798653, -0.011666348204016685, -0.0032984872814267874, -0.00880351010710001, 0.052142124623060226, -0.02532423473894596, -0.01076676044613123, -0.014902599155902863, 0.0389481745660305, 0.028560487553477287, 0.050738994032144547, -0.03276987746357918, 0.061285100877285004, 0.01748254895210266, 0.010031248442828655, -0.023785319179296494, -0.07957105338573456, 0.022891389206051826, -0.00988414604216814, -0.006144351791590452, 0.07576902210712433, 0.036051392555236816, -0.046009089797735214, 0.014370768330991268, -0.032136205583810806, 0.0029618493281304836, -0.005318315699696541, -0.014925230294466019, 0.021782463416457176, 0.037409257143735886, 0.015491008758544922, -0.0016025669174268842, 0.001289974432438612, 0.02919415757060051, 0.018037011846899986, -0.011881344020366669, 0.005326802376657724, 0.0009604085935279727, -0.0022786720655858517, -0.0014625368639826775, -0.003705847542732954, -0.0022546264808624983, -0.00868469662964344, 0.0300767719745636, 0.03270198404788971, 0.012424490414559841, 0.023377958685159683, 0.011779503896832466, 0.01631704531610012, 0.019994603469967842, 0.0045743174850940704, 0.05304737016558647, -0.005052399821579456, 0.0013804989866912365, 0.01538916863501072, 0.014676287770271301, 0.004681814927607775, -0.040917083621025085, 0.0018175627337768674, -0.019813554361462593, -0.016339676454663277, 0.031434640288352966, 0.002800602465867996, -0.03421827033162117, 0.0036634141579270363, -0.025120554491877556, -0.008424438536167145, -0.004014196805655956, -0.037771355360746384, -0.007836028933525085, 0.05336420610547066, 0.05101056769490242, 0.03573455661535263, -0.029035741463303566, 0.01702992618083954, 0.033788278698921204, 0.020141705870628357, 0.015592848882079124, 0.00340032740496099, -0.023966366425156593, 0.025957906618714333, 0.06119457632303238, 0.007247619796544313, 0.032611459493637085, -0.005307000130414963, -0.028560487553477287, -0.02403425984084606, -0.002531857695430517, -0.018410425633192062, -0.018444372341036797, -0.038925543427467346, -0.007768135517835617, -0.014823390170931816, 0.003705847542732954, 0.003841634374111891, 0.018976202234625816, 0.0007256106473505497, -0.013850252144038677, -0.024418989196419716, 0.03783924877643585, -0.05159897729754448, -0.007886948995292187, -0.0016747036715969443, -0.02374005690217018, -0.0024243597872555256, -0.016520725563168526, -0.010523475706577301, -0.0030184269417077303, 0.019496718421578407, -0.02960151806473732, 0.015128910541534424, -0.005397524684667587, 0.041618648916482925, -0.026116324588656425, -0.05119161680340767, -0.013114740140736103, 0.0001585063146194443, -0.011915290728211403, 0.0008111845818348229, 0.0009398991242051125, 0.03831450268626213, 0.03568929433822632, 0.017233606427907944, -0.002570047741755843, -0.006059485021978617, -0.038699232041835785, -0.009284420870244503, 0.0020764062646776438, -0.008696012198925018, -0.008492331951856613, 0.009550336748361588, -0.0021895619574934244, -0.024667931720614433, -0.0196551363915205, -0.015049701556563377, -0.005901067517697811, 0.010302822105586529, 0.006008564960211515, 0.008599829860031605, 0.03347144275903702, 0.0034484185744076967, 0.020254861563444138, -0.011496614664793015, -0.01117412094026804, 0.043791238218545914, -0.02159009873867035, 0.02953362464904785, 0.014551817439496517, -0.0011598453857004642, 0.03695663809776306, -0.011609770357608795, -0.008260362781584263, 0.05001479759812355, -0.0062744808383286, -0.022155877202749252, 0.00497319083660841, 0.008543252013623714, 0.02672736532986164, -0.008181153796613216, 0.012152916751801968, 0.010438608936965466, -0.010325453244149685, 0.004851548466831446, 0.0018034182721748948, -0.0009512146934866905, 0.009499416686594486, -0.0033861829433590174, -0.017097819596529007, -0.028288913890719414, 0.011219383217394352, -0.03233988583087921, -0.028696274384856224, -0.010314137674868107, 0.004158470313996077, -0.006291454192250967, 0.008854430168867111, 0.005538969300687313, -0.011060965247452259, -0.015117594972252846, -0.032023049890995026, -0.018795153126120567, -0.028175758197903633, 0.0049929930828511715, 0.00833391398191452, 0.025595808401703835, -0.004195245914161205, 0.002236238680779934, 0.018500950187444687, 0.013703149743378162, 0.02650105394423008, 0.002480937633663416, 0.015524955466389656, -0.0402381494641304, -0.011281618848443031, -0.027179988101124763, 0.04802325740456581, 0.02480371855199337, -0.010608342476189137, 0.016102049499750137, 0.027632610872387886, -0.02292533591389656, 0.024079522117972374, 0.020334070548415184, -0.0010601270478218794, 0.009969012811779976, -0.021782463416457176, 0.03566666319966316, 0.01942882500588894, 0.0027355379424989223, 0.0035615742672234774, -0.015638111159205437, -0.012345281429588795, 0.010483871214091778, 0.02713472582399845, 0.006404609885066748, 0.001345137832686305, -0.01231133472174406, 0.027044201269745827, -0.027858922258019447, -0.04779694601893425, -0.03720557689666748, -0.005884094163775444, 0.0008062340202741325, -0.007960500195622444, 0.02258586883544922, 0.005363577976822853, 0.001973151694983244, -0.03317723795771599, 0.009686123579740524, 0.02024354599416256, -0.020899849012494087, -0.04064550995826721, 0.0172562375664711, 0.014133141376078129, 0.015287328511476517, 0.024532144889235497, -0.0052362778224051, 0.0007821884355507791, 0.01187002845108509, 0.014879968017339706, 0.025482652708888054, 0.001635099179111421, -0.007411695085465908, 0.01602284051477909, -0.012390543706715107, 0.017765438184142113, 0.007162753026932478, -0.020798008888959885, -0.001557304640300572, 0.008848772384226322, -0.015751266852021217, -0.0273157749325037, -0.03806556016206741, 0.0025771199725568295, -0.0060311960987746716, 0.011926605366170406, 0.014370768330991268, -0.04075866565108299, 0.014495239593088627, 0.003841634374111891, -0.014348137192428112, -0.003306973958387971, -0.022314295172691345, -0.013816305436193943, -0.028334176167845726, 0.014348137192428112, -0.0011612598318606615, 0.013635256327688694, 0.008232073858380318, -0.0038388054817914963, 0.016339676454663277, -0.04254652559757233, 0.017063872888684273, -0.0188290998339653, -0.001782201579771936, -0.027858922258019447, -0.01567205786705017, 0.010625315830111504, 0.044945426285266876, -0.029397837817668915, -0.008130233734846115, -0.008130233734846115, 0.042026009410619736, 0.018467003479599953, 0.017052557319402695, 0.021431680768728256, -0.003306973958387971, -0.007439984008669853, -0.002608237788081169, 0.03602876141667366, -0.00340032740496099, -0.009748359210789204, -0.04648434370756149, 0.002789286896586418, -0.038812387734651566, -0.0003014537214767188, -0.003142898203805089, -0.023853210732340813, 0.0036351254675537348, 0.014031301252543926, -0.007604059763252735, -0.0026874467730522156, 0.02491687424480915, 0.017210975289344788, -0.005258908960968256, -0.05200633779168129, 0.014789443463087082, -0.004687472712248564, -0.0250979233533144, -0.024848980829119682, -0.009058110415935516, 0.017120450735092163, -0.014993123710155487, 0.0007160631357692182, 0.01342026051133871, 0.02557317726314068, -0.026931045576930046, 0.012967637740075588, 0.025188447907567024, -0.01485733687877655, -0.02439635805785656, -0.009442838840186596, 0.039989206939935684, 0.007841686718165874, 0.0009745530551299453, 0.002001440618187189, 0.004090576898306608, -0.0005130901699885726, 0.01614731177687645, -0.0023041320964694023, -0.00833391398191452, -0.034489843994379044, -0.020515119656920433, 0.005253251176327467, -0.0029109292663633823, 0.021454311907291412, 0.017799384891986847, 0.0020580184645950794, -0.04619013890624046, -0.004650697112083435, 0.0022715998347848654, 0.008843114599585533, -0.021013004705309868, 0.007406037300825119, 0.02561843954026699, -0.004933586344122887, -0.0027129068039357662, -0.0015007267938926816, 0.002425774233415723, -0.013442891649901867, 0.014133141376078129, 0.0019957828335464, -0.04478700831532478, 0.0222350861877203, -0.010919520631432533, -0.014506555162370205, 0.03369775414466858, -0.018568841740489006, 0.004659183789044619, 0.021442996338009834, -0.009075083769857883, 0.02304980717599392, 0.020277492702007294, -0.03813345357775688, -0.003089149249717593, -0.01607941836118698, -0.021748516708612442, 0.026184218004345894, 0.015581533312797546, -0.03403722122311592, -0.003988736774772406, 0.03000887855887413, 0.033946696668863297, -0.03786187991499901, -0.010478213429450989, 0.024305833503603935, -6.568332173628733e-05, -0.024418989196419716, 0.0025884355418384075, -0.03566666319966316, -0.004775168374180794, 0.005720018409192562, -0.02613895572721958, 0.012594223953783512, 0.018319901078939438, 0.03154779598116875, -0.024441620334982872, 0.03573455661535263, -0.03428616374731064, -0.005946329794824123, -0.02328743413090706, -0.0088600879535079, 0.00948244333267212, -0.0049166129902005196, -0.023151647299528122, 0.005544627085328102, -0.008792194537818432, -0.01573995128273964, -0.015875738114118576, -0.013374998234212399, -0.0322946235537529, -0.0041528125293552876, 0.006653552409261465, 0.03498772904276848, -0.0005410254816524684, 0.007971815764904022, -0.019383562728762627, -0.002193805295974016, 0.014257612638175488, 0.02246139757335186, -0.02720261923968792, 0.0196551363915205, -0.0024964965414255857, -0.0055135092698037624, -0.050920043140649796, -0.01260553952306509, 0.0036124943289905787, 0.03743188828229904, 0.0005866413121111691, 0.0048289173282682896, 0.04657486826181412, 0.01976829208433628, -0.007683268748223782, 0.030212558805942535, -0.024781087413430214, -0.007038281764835119, -0.0008543251897208393, -0.004062287975102663, -0.03661717101931572, -0.04587330296635628, 0.014099194668233395, -0.027745766565203667, 0.011485299095511436, 0.017290184274315834, -0.010953467339277267, -0.012152916751801968, -0.0011039748787879944, -0.01801438070833683, -0.005125951021909714, 0.028062602505087852, 0.009844541549682617, -0.02257455326616764, -0.0341503769159317, 0.00384729215875268, -0.06105878949165344, 0.0008458385127596557, 0.0322946235537529, -0.012345281429588795, -0.023898473009467125, 0.010772418230772018, -0.02690841443836689, 0.02153352089226246, -0.011106227524578571, -0.038291871547698975, -0.03288303315639496, -0.00044448956032283604, -0.017946487292647362, 0.01696203276515007, 0.02216719277203083, 0.004628066439181566, 0.04619013890624046, -0.037296101450920105, 0.02239350415766239, -0.04784220829606056, 0.010783733800053596, -0.014846021309494972, -0.012175547890365124, -0.02153352089226246, -0.006002907175570726, -0.019938025623559952, 0.02779102884232998, -0.017459917813539505, -0.01284316647797823, 0.009720070287585258, 0.012413174845278263, 0.02070748433470726, -0.006150009576231241, 0.001973151694983244, -0.020368017256259918, -0.0007043939549475908, 0.007168410811573267, -0.0016874336870387197, 0.02557317726314068, 0.030846230685710907, -0.0012715866323560476, 6.214720633579418e-05, -0.0017015781486406922, 0.01638493873178959, 0.013431576080620289, 0.007060912903398275, -0.015468377619981766, -0.024848980829119682, 0.01983618550002575, -0.04388176277279854, -0.00680065480992198, 0.004124523606151342, 0.007615375332534313, 0.006359347607940435, -0.00921652838587761, 0.00138898566365242, -0.006150009576231241, 0.00027404885622672737, 0.006053827237337828, 0.005649296101182699, 0.022302979603409767, -0.01906672678887844, 0.02398899756371975, -0.002531857695430517, -0.042795468121767044, -0.029918354004621506, -0.00909205712378025, -0.018568841740489006, -0.0150383859872818, 0.009793621487915516, 0.02275560237467289, 0.00016823063197080046, 0.0120850233361125, -0.02808523364365101, -0.040690772235393524, 0.008271678350865841, -0.011994498781859875, -0.027157356962561607, -0.01777675375342369, -0.041098132729530334, 0.006811970379203558, 0.001028302009217441, -0.024600038304924965, 0.05304737016558647, -0.0572114996612072, -0.013284473679959774, 0.010223613120615482, -0.018037011846899986, -0.006240534130483866, 0.004874179605394602, -0.006845917087048292, -0.011326881125569344, -0.002919415943324566, 0.030846230685710907, 0.03306408226490021, 0.007338143885135651, 0.021216684952378273, 0.028221020475029945, 0.029850460588932037, -0.025595808401703835, -0.010421635583043098, 0.023264802992343903, 0.008526278659701347, 0.005439958069473505, 0.003753938712179661, 0.03267935290932655, 0.0045856330543756485, 0.029329944401979446, 0.003439931897446513, 0.0406002476811409, -0.038110822439193726, 0.007592744193971157, 0.014664972200989723, -0.017674913629889488, 0.023061122745275497, 0.03405985236167908, -0.027451561763882637, -0.0005827515851706266, -0.006749734748154879, 0.04406281188130379, 0.04938112571835518, -0.016011524945497513, -0.002475279849022627, 0.01418971922248602, 0.007875633426010609, 0.009906777180731297, -0.014868652448058128, 0.024554776027798653, -0.0036520985886454582, 0.0029618493281304836, 0.013397629372775555, -0.0013953506713733077, -0.05861462652683258, 0.007626690901815891, -0.02819838933646679, 0.03403722122311592, -0.016452832147479057, -0.009052452631294727, 0.001782201579771936, 0.005790740717202425], [0.061302416026592255, 0.004387377295643091, 0.04418801888823509, 0.024898063391447067, -0.02530900202691555, 0.04660530760884285, -0.0008694681455381215, 0.014854232780635357, 0.017718719318509102, 0.05791821330785751, 0.0045988899655640125, 0.042350880801677704, 0.01468502264469862, 0.004701624624431133, -0.007874314673244953, 0.02008766122162342, -0.010992615483701229, 0.009892749600112438, -0.01603870466351509, -0.004553565755486488, 0.029128316789865494, 0.00604624068364501, -0.03959517180919647, -0.00042453614878468215, 0.00011359363270457834, -0.010762973688542843, -0.005532567389309406, 0.02813722938299179, 0.049215976148843765, -0.07208351790904999, 0.03285093978047371, -0.032464172691106796, 0.014733368530869484, -0.02420913614332676, -0.0028508887626230717, -0.02997436746954918, 0.008387988433241844, 0.03916006162762642, -0.00037543498910963535, 0.016788063570857048, -0.04998951032757759, 0.011850752867758274, 0.042278360575437546, 0.015615678392350674, -0.0006621102220378816, 0.06231767684221268, -0.02707362174987793, -0.029611773788928986, -0.003807228058576584, 0.04537248983979225, -0.03575168550014496, 0.011343122459948063, 0.01725943386554718, -0.014805886894464493, -0.003704493399709463, 0.04365621507167816, 0.031448911875486374, 0.029780983924865723, 0.02011183276772499, -0.053083635866642, -0.030965454876422882, -0.009385119192302227, -0.0333343967795372, -0.007584240287542343, 0.003656147513538599, -0.006496460642665625, -0.042955201119184494, 0.02883824147284031, -0.035896722227334976, -0.011542548425495625, -0.0072276899591088295, -0.010303689166903496, 0.01009821891784668, -0.019169092178344727, 0.027291178703308105, -0.026638509705662727, -0.02126004546880722, 0.04612185060977936, 0.02119961380958557, 0.01953168399631977, -0.03512319177389145, 0.026155052706599236, -0.031207183375954628, -0.04106971621513367, 0.026324262842535973, -0.056081075221300125, -0.01949542574584484, -0.031183011829853058, 0.026010015979409218, 0.01660676673054695, 0.013911490328609943, 0.008406117558479309, 0.015748629346489906, 0.06705556064844131, 0.007173301186412573, -0.031908199191093445, 0.016788063570857048, -0.04602515697479248, 0.016860581934452057, 0.09495106339454651, 0.012303994037210941, 0.0035715424455702305, 0.036041758954524994, -0.028354784473776817, 0.0029974367935210466, -0.033020149916410446, -0.033165186643600464, 0.004722775891423225, 0.027315350249409676, -0.04203663393855095, 0.0416015200316906, -0.023326825350522995, 0.01499927043914795, 0.02470467984676361, 0.01180845033377409, 0.014600417576730251, -0.011276647448539734, -0.004441766068339348, -0.02937004528939724, -0.013355514034628868, -0.02465633489191532, 0.027798809111118317, 0.013838971965014935, -0.0804956778883934, 0.029805157333612442, -0.01211061142385006, -0.05463070049881935, -0.0027677942998707294, 0.050424620509147644, 0.0005382242379710078, 0.007735320366919041, -0.005735015030950308, 0.0608673021197319, -0.04890172928571701, -0.061882562935352325, -0.014032354578375816, 0.027242831885814667, -0.034277141094207764, -0.019821759313344955, -0.011107437312602997, 0.01959211751818657, -0.024994755163788795, 0.015724455937743187, 0.022190701216459274, -0.06961788237094879, 0.011288733221590519, -0.02944256365299225, 0.056661222130060196, 0.0011587872868403792, 0.001769152469933033, -0.0333343967795372, 0.055500924587249756, -0.02886241488158703, 0.004626084119081497, -0.012436944991350174, 0.013730194419622421, 0.016993531957268715, 0.027242831885814667, -0.010285559110343456, -0.013440119102597237, -0.028644859790802002, 0.0028040537144988775, 0.031424738466739655, -0.0008309426484629512, 0.055645961314439774, -0.04609767720103264, 0.00028629752341657877, -0.02528482861816883, -0.058498360216617584, -0.00616106204688549, -0.006242645438760519, -0.012872057035565376, -0.03787889704108238, -0.007983092218637466, -0.04196411371231079, -0.05409889668226242, -0.010666281916201115, 0.03870077431201935, 0.0031122579239308834, -0.00036108234780840576, 0.02063154987990856, -0.005553718656301498, -0.06782909482717514, -0.01958003081381321, 0.031980715692043304, 0.05066635087132454, 0.036525215953588486, -0.023967407643795013, -0.015664024278521538, 0.009252168238162994, -0.017440730705857277, 0.04162569344043732, 0.042205844074487686, 0.03466390445828438, -0.022287392988801003, 0.0017887928988784552, -0.003937157336622477, 0.024994755163788795, 0.00018960599845740944, -0.04762056842446327, -0.0003988524549640715, -0.041359793394804, 0.034228794276714325, 0.004934288561344147, -0.030796244740486145, -0.019120745360851288, 0.027992190793156624, 0.0807374119758606, 0.026759374886751175, -0.014249910600483418, 0.0461701937019825, -0.02770211733877659, -0.03570333868265152, 0.010956356301903725, 0.014008182100951672, -0.02251703478395939, 0.04090050607919693, 0.03546161204576492, 0.00921590905636549, 0.0021332562901079655, -0.021030403673648834, -0.02987767569720745, -0.020039314404129982, -0.06836089491844177, -0.040078628808259964, -0.027871327474713326, -0.023350998759269714, -0.039981938898563385, -0.020486513152718544, -0.049747779965400696, -0.03176315873861313, 0.05859505385160446, 0.0218522809445858, -0.06038384512066841, -0.011874925345182419, 0.02651764638721943, -0.018540596589446068, -0.04841827228665352, 0.009904836304485798, 0.026880238205194473, -0.013162131421267986, -0.022311564534902573, -0.01672763004899025, -0.0446956492960453, -0.0299985408782959, 0.011977660469710827, 0.025550730526447296, -0.00803143810480833, 0.06304286420345306, 0.025454038754105568, -0.0004437988973222673, -0.007088696118444204, 0.03171481564640999, -0.06028715521097183, 0.011645283550024033, 0.01381479948759079, -0.008484680205583572, -0.021525947377085686, 0.03181150555610657, -0.010466855950653553, 0.011010745540261269, -0.006514590233564377, -0.02354438230395317, 0.003347943536937237, -0.04696790128946304, -0.02138090878725052, 0.033576127141714096, -0.04435722902417183, -0.022891715168952942, 0.03374533727765083, -0.010533330962061882, -0.0034385917242616415, 0.042882684618234634, -0.0026590165216475725, -0.050424620509147644, 0.07343719899654388, 0.018226349726319313, -0.021755589172244072, 0.01899988204240799, -0.03161812201142311, -0.03514736145734787, 0.0028780831489712, 0.026831893250346184, -0.03410793095827103, 0.012310037389397621, -0.006145954132080078, -0.007934747263789177, 0.015410209074616432, 0.020885365083813667, 0.04931266978383064, 0.08842438459396362, -0.03490563482046127, 0.015736542642116547, -0.019157005473971367, 0.006000916473567486, -0.025188136845827103, 0.015688197687268257, 0.0016377123538404703, 0.005843793042004108, -0.01328299567103386, -0.023399345576763153, 0.0738239660859108, -0.02762959897518158, -0.008140216581523418, -0.04965109005570412, -0.007481505163013935, -0.017561595886945724, -0.06981126964092255, 0.00033804256236180663, -0.012449031695723534, -0.029805157333612442, 0.034784771502017975, -0.05414724349975586, -0.023363085463643074, -0.030965454876422882, 0.019338302314281464, -0.04566256329417229, -0.01261824183166027, 0.03833818435668945, 0.029539255425333977, 0.013548897579312325, 0.012581982649862766, 0.027242831885814667, -0.015700284391641617, 0.02136882394552231, -0.008400075137615204, -0.0608673021197319, 0.004943353123962879, 0.01093822717666626, -0.0029823286458849907, -0.03911171481013298, 0.0033358570653945208, 0.017742890864610672, 0.01719900220632553, 0.0160507895052433, -0.004879899322986603, -0.008400075137615204, -0.007179344538599253, 0.009360946714878082, -0.02134465053677559, 0.0024762090761214495, 0.0002088687615469098, 0.01964046247303486, 0.016256259754300117, -0.007203517481684685, 0.021042488515377045, 0.04438140243291855, 0.0940808355808258, -0.002275272039696574, 0.009995484724640846, -0.004895007703453302, 0.019193263724446297, 0.01152441930025816, -0.0029641990549862385, -7.067733531584963e-05, -0.011536505073308945, 0.02194897271692753, -0.006901356391608715, -0.009004396386444569, 0.028548168018460274, 0.007789709605276585, 0.003707515075802803, 0.003357008332386613, 0.052696872502565384, 0.003004990750923753, -0.014274084009230137, -0.017368212342262268, -0.009185693226754665, 0.06710390746593475, -0.032004889100790024, 0.050956424325704575, 0.057773176580667496, -0.0179000161588192, -0.004118453711271286, 0.02538152039051056, 0.016993531957268715, 0.020921625196933746, 0.05231010541319847, -0.0042544263415038586, 0.025574903935194016, 0.056612879037857056, 0.015011356212198734, -0.004118453711271286, 0.0235806405544281, 0.00951807014644146, 0.06705556064844131, -0.030095230787992477, 0.00126303278375417, -1.4364448361448012e-05, 0.003704493399709463, -0.029660120606422424, -0.007445245981216431, -0.0004509752325247973, -0.01960420235991478, -0.030240269377827644, 0.01179032027721405, 0.08281627297401428, -0.0019413841655477881, 0.02533317543566227, -0.02138090878725052, -0.03323770686984062, -0.029249180108308792, 0.0038132714107632637, -0.043414488434791565, 0.03156977891921997, 0.04191576689481735, 0.023205962032079697, -0.0023477906361222267, 0.0004147159052081406, 0.016921013593673706, 0.019410820677876472, 0.015398122370243073, 0.05525919795036316, 0.035364918410778046, -0.02593749761581421, 0.023121356964111328, 0.0006643764209002256, 0.05134319141507149, -0.02818557433784008, 0.016316691413521767, 0.041770730167627335, 0.008116043172776699, -0.03611427918076515, 0.040537916123867035, -0.014286169782280922, 0.03229496255517006, 0.04387377202510834, 0.008835186250507832, -0.026807719841599464, -0.01733195222914219, 0.007904530502855778, 0.01904822699725628, 0.00417284294962883, 0.011621110141277313, -0.03606593236327171, -0.010956356301903725, -0.03974020853638649, 0.010472899302840233, -0.025018926709890366, 0.009324687533080578, -0.035945069044828415, -0.0016951230354607105, -0.0021453427616506815, -0.01601453125476837, 0.01408070046454668, -0.012811624445021152, 0.0014058038359507918, 0.03127970173954964, 0.024390432983636856, 0.020426081493496895, -0.009886706247925758, -0.028330611065030098, -0.05994873493909836, -0.02418496273458004, -0.026179226115345955, 0.002559303306043148, -0.016401296481490135, -0.011578807607293129, -0.0015606613596901298, -0.02941839024424553, 0.019338302314281464, 0.04491320624947548, 0.05356709659099579, 0.0032603167928755283, 0.011905142106115818, 0.005369400139898062, -0.0027813916094601154, -0.003071466227993369, -0.008962093852460384, -0.04155317693948746, 0.01069649774581194, -0.05279356241226196, -0.022311564534902573, -0.03916006162762642, 0.001257744967006147, 0.01948333904147148, -0.015809061005711555, -0.03727457672357559, 0.014552071690559387, 0.02366524562239647, 0.005617172457277775, 0.0774015486240387, -0.030917109921574593, -0.017742890864610672, 0.051971685141325, 0.05134319141507149, 0.04029618576169014, -0.012739106081426144, -0.011101393960416317, 0.012056222185492516, -0.04607350379228592, 0.0050642178393900394, 0.02074032835662365, -0.011572765186429024, -0.004617019556462765, -0.07541937381029129, -0.019737154245376587, -0.04832158237695694, 0.008158345706760883, 0.003925071097910404, 0.005807533860206604, -0.04471982270479202, -0.013633502647280693, -0.0332135334610939, 0.03855573758482933, 0.03277841955423355, -0.030095230787992477, 0.04619436711072922, 0.003221035934984684, -0.019664635881781578, -0.003057868918403983, 0.060722265392541885, 0.01667928509414196, 0.013633502647280693, -0.0018492250237613916, -0.02762959897518158, 0.022335737943649292, -0.02423330955207348, -0.02007557451725006, -0.019821759313344955, 0.019386647269129753, -0.015071788802742958, 0.006720059551298618, -0.0027572186663746834, -0.06284947693347931, 0.010491028428077698, 0.011264560744166374, -0.023375172168016434, 0.027750462293624878, -0.04073129594326019, -0.04667782410979271, -0.0470404177904129, 0.012140827253460884, -0.003843487473204732, 0.0017933252966031432, -0.009487854316830635, 0.0003299220115877688, 0.0196283757686615, 0.00012284731201361865, -0.019845932722091675, -0.03219827264547348, -0.030071059241890907, -0.0023009558208286762, 0.005118606612086296, 0.023991581052541733, 0.031424738466739655, 0.032004889100790024, -0.018770238384604454, 0.005027958191931248, -0.007118912413716316, 0.0053784651681780815, -0.017464904114603996, -0.016872668638825417, -0.011754061095416546, 0.006544806528836489, 0.0037437742576003075, -7.110225124051794e-05, -0.017440730705857277, 0.009342816658318043, -0.020413994789123535, -0.017090223729610443, 0.003647082718089223, -0.019809672608971596, -0.013609329238533974, -0.005798468831926584, 0.002717937808483839, -0.021538034081459045, -0.025163965299725533, 0.024946408346295357, -0.001580301788635552, -0.004583781585097313, 0.017561595886945724, 0.013996095396578312, -0.02581663243472576, 0.04254426434636116, 0.006484374403953552, 0.027871327474713326, -0.03280259296298027, 0.006381639279425144, 0.025163965299725533, 0.006496460642665625, 0.037758033722639084, 0.03930509835481644, -0.03149725869297981, -0.0236410740762949, 0.03381785377860069, -0.013681848533451557, -0.04034453257918358, -0.007070566527545452, 0.029490910470485687, 0.022541208192706108, 0.023810284212231636, 0.006998047698289156, -0.030336961150169373, -0.03219827264547348, 0.032560866326093674, -0.02934587188065052, -0.015386035665869713, -0.03343109041452408, 0.04897424951195717, 0.036549389362335205, 0.017392385751008987, -0.016860581934452057, -0.0024731874000281096, -0.022915886715054512, -0.02426956780254841, -0.027968019247055054, -0.026130879297852516, 0.03439800441265106, -0.00036032695788890123, 0.02482554502785206, 0.019700894132256508, -0.005121628288179636, -0.03966769203543663, -0.013838971965014935, -0.010877794586122036, -0.030095230787992477, -0.048176541924476624, -0.01904822699725628, -0.021719329059123993, -0.0495060533285141, 0.012811624445021152, -0.010714627802371979, -0.005357313901185989, -0.006532719824463129, 0.0017842605011537671, 0.000563907902687788, 0.015845321118831635, -0.03171481564640999, 0.011711758561432362, -0.012364426627755165, -0.01061793603003025, -0.012497377581894398, -0.033721163868904114, 0.009016483090817928, -0.008563241921365261, -0.00013531144941225648, 0.006236602086573839, 0.011578807607293129, 0.0073969000950455666, 0.04660530760884285, 0.041698213666677475, 0.030264440923929214, -0.050424620509147644, 0.04682286083698273, -0.015821147710084915, 0.013307169079780579, 0.0021136158611625433, 0.03853156417608261, 0.020305216312408447, 0.021115008741617203, -0.000980512355454266, -0.005311989691108465, -0.015724455937743187, -0.012775365263223648, -0.0401269756257534, 0.03531657159328461, 0.04218167066574097, -0.011258517391979694, 0.060093771666288376, -0.01562776416540146, -0.021054575219750404, 0.004496155306696892, -0.03239165619015694, -0.012267734855413437, 0.012932488694787025, 0.029249180108308792, 0.015712369233369827, -0.003828379325568676, 0.0005843037506565452, 0.004589824937283993, 0.016860581934452057, 0.017029792070388794, -0.03855573758482933, -0.01733195222914219, -0.01841973140835762, -0.0035957153886556625, 0.04677451774477959, 0.000986555591225624, 0.03495398163795471, -0.004248382989317179, -0.012727019377052784, 0.0012592558050528169, 0.000963138067163527, -0.024873889982700348, -0.02353229559957981, 0.02765377052128315, -0.013101698830723763, -0.003378159599378705, 0.027170313522219658, 0.008587414398789406, 0.029539255425333977, -0.0013551919255405664, -0.004707667976617813, 0.005230406299233437, 0.04193994030356407, -0.022178614512085915, -0.04875669255852699, 0.005203211680054665, -0.017706632614135742, 0.02700110338628292, 0.0038888114504516125, -0.04433305561542511, -0.05192333832383156, -0.030723726376891136, -0.026711028069257736, -0.03154560551047325, -0.03273007646203041, 0.04769308492541313, 0.020909538492560387, -0.015325604006648064, -0.014177392236888409, -0.04266512766480446, -0.01497509703040123, -0.05516250431537628, 0.03048199787735939, 0.01614748127758503, -0.015736542642116547, -0.0019353409297764301, 0.030361132696270943, 0.0008415182819589972, 0.0380239337682724, -0.020679896697402, -0.009681236930191517, 0.02412453107535839, 0.0377822071313858, 0.009064828976988792, 0.019712980836629868, -0.04099719971418381, 0.01670345850288868, 0.030240269377827644, -0.029225008562207222, -0.015059702098369598, 0.011077220551669598, -0.008756624534726143, 0.0069376155734062195, -0.0450582429766655, 0.035389091819524765, 0.02695275843143463, 0.007940789684653282, -0.001601453055627644, -0.054920777678489685, -0.004106367472559214, -0.022565379738807678, 0.002438439056277275, 0.014769627712666988, 0.0034265052527189255, 0.009258211590349674, -0.004381333943456411, -0.006532719824463129, 0.009971311315894127, 0.008297340013086796, -0.0323433093726635, -0.005006806924939156, 0.03698450326919556, -0.025139791890978813, -0.0059616356156766415, 0.013754366897046566, -0.035364918410778046, 0.030167751014232635, -0.0401269756257534, -0.009385119192302227, 0.014854232780635357, 0.022106096148490906, 0.0027964997570961714, -0.010188867338001728, -0.019374560564756393, -0.01843181811273098, -0.04138396680355072, -0.045203279703855515, -0.030119404196739197, -0.022009404376149178, -0.0039673736318945885, 0.008720365352928638, 0.003015566384419799, -0.021610552445054054, 0.0013113785535097122, -0.014600417576730251, -0.019350387156009674, -0.01357307005673647, 0.007354597561061382, -0.015083875507116318, 0.004734862130135298, 0.03572751209139824, -2.9649543648702092e-05, -0.003502045525237918, 0.0037105365190654993, -0.011089307256042957, 0.005067239515483379, -0.009651021100580692, -0.03268172964453697, -0.015954099595546722, -0.01240068580955267, -0.0032482303213328123, -0.009578502736985683, 0.024873889982700348, 0.023761937394738197, -0.03335857018828392, -0.02309718355536461, -0.007971006445586681, -0.015664024278521538, 0.020498599857091904, 0.015023442916572094, 0.019362473860383034, 0.03618679568171501, 0.01776706427335739, -0.04563838988542557, -0.0012297951616346836, -0.023870715871453285, -0.00982627458870411, -0.022649984806776047, 0.0066717141307890415, 0.015458554960787296, 0.02765377052128315, 0.01002570055425167, -0.06106068566441536, -0.020921625196933746, -0.015349776484072208, -0.007983092218637466, -0.022202787920832634, 0.03398706391453743, -0.006290991324931383, -0.012207303196191788, 0.007693017832934856, -0.01269076019525528, 0.01896362192928791, -0.013706021010875702, 0.027267005294561386, -0.00980814453214407, 0.0608673021197319, 0.01734403893351555, 0.004496155306696892, 0.001303069177083671, -0.005305946338921785, -0.02182810753583908, 0.034228794276714325, -0.006399769335985184, -0.0022027534432709217, -0.017513249069452286, 0.006429985165596008, 0.05414724349975586, -0.026324262842535973, 0.012183129787445068, 0.006599195301532745, -0.0026922542601823807, -0.002388582332059741, -0.005632280372083187, 0.014274084009230137, -0.057241372764110565, 0.01669137179851532, -0.020003056153655052, 0.010472899302840233, 0.01719900220632553, -0.022855455055832863, 0.0016256259987130761, 0.00920986570417881, -0.026856066659092903, -0.024571729823946953, -0.027943845838308334, -0.03287511318922043, 0.027218658477067947, 0.02762959897518158, -0.006091564893722534, 0.017996706068515778, 0.007777622900903225, 0.03857991099357605, -0.010805276222527027, 0.016485901549458504, -0.030868763104081154, -0.05869174376130104, 0.02886241488158703, -0.013633502647280693, 0.0033811810426414013, -0.0010349012445658445, -0.03928092494606972, -0.020921625196933746, -0.019990969449281693, -0.006417898926883936, 0.011983703821897507, 0.02294006012380123, -0.04307606816291809, -0.0064239418134093285, 0.012056222185492516, -0.01211061142385006, -0.01673971675336361, -0.035896722227334976, 0.003056358080357313, 0.042254187166690826, 0.026686856523156166, -0.006176169961690903, -0.004819467198103666, 0.001920232898555696, -0.006575022358447313, 0.011476073414087296, -0.02878989651799202, 0.012497377581894398, -0.0241970494389534, -0.00039092072984203696, 0.014793800190091133, 0.007499635219573975, -0.03609010577201843, 0.00042038143146783113, -0.031448911875486374, -0.0012947596842423081, 0.01719900220632553, 0.017718719318509102, -0.005901203490793705, 0.0437045618891716, 0.014950924552977085, -0.017646200954914093, -0.006840924266725779, 0.021683070808649063, -0.031400568783283234, -0.0053542922250926495, 0.01730778068304062, -0.016425469890236855, 0.03166646882891655, 0.0026665704790502787, 0.016933100298047066, 0.035485781729221344, 0.048104025423526764, 0.0022163507528603077, -0.009415335953235626, 0.022891715168952942, 0.013838971965014935, 0.018709806725382805, -0.0029883719980716705, -0.016872668638825417, 0.01040642336010933, 0.0063030775636434555, 0.023314740508794785, 0.022142354398965836, 0.012189173139631748, 0.0727120116353035, 0.010285559110343456, -0.006006959825754166, -0.012050178833305836, -0.0012441477738320827, 0.033624470233917236, 0.01848016493022442, 0.0023402366787195206, 0.033624470233917236, 0.05047296732664108, -0.059078510850667953, -0.019725067541003227, 0.0026031166780740023, 0.02649347297847271, 0.005420767702162266, -0.0007538915961049497, 0.009596631862223148, 2.4054845198406838e-05, -0.009675193578004837, 0.07512930035591125, 0.0010069514391943812, 0.008170432411134243, -0.026807719841599464, 0.026251744478940964, -0.02184019424021244, 0.006726102903485298, 0.0023493014741688967, -0.0011829601135104895, 0.016352951526641846, 0.01621999964118004, -0.030312787741422653, 0.01665511168539524, -0.0031213227193802595, -0.027412042021751404, -0.05854670703411102, -0.0460493303835392, 0.011053048074245453, 0.009385119192302227, 0.013766453601419926, 0.04527579993009567, 0.007221647072583437, 0.008369858376681805, 0.037733860313892365, -0.015821147710084915, 0.0011300819460302591, 0.016365038231015205, -0.011022832244634628, 0.03273007646203041, 0.03050617128610611, 0.0344463512301445, -0.00980814453214407, -0.01321047730743885, 0.02135673724114895, 0.038217317312955856, -0.05100477114319801, 0.029079969972372055, 0.001596920657902956, 0.015470640733838081, 0.012521550059318542, -0.0017041878309100866, 0.012666587717831135, -0.006568979471921921, 0.00487083476036787, 0.019906364381313324, -0.004293707199394703, -0.0188911035656929, 0.03224661946296692, 0.013234649784862995, 0.014733368530869484, 0.030772071331739426, 0.060238808393478394, -0.010575633496046066, 0.0025895193684846163, 0.011663412675261497, -0.002278293715789914, -0.013295082375407219, -0.030095230787992477, 0.008744537830352783, -0.02581663243472576, -0.011675499379634857, 0.020281042903661728, -0.0073304250836372375, 0.023290567100048065, -0.010992615483701229, -0.016836408525705338, -0.023810284212231636, -0.0021800913382321596, 0.0013582134852185845, 0.014213651418685913, 0.02944256365299225, -0.015929926186800003, 0.04658113420009613, -0.007928703911602497, 0.016304604709148407, 0.02995019406080246, 0.02078867331147194, -0.007940789684653282, 0.01723526045680046, 0.011324992403388023, -0.031352221965789795, 0.03352778032422066, 0.016848495230078697, 0.033648643642663956, -0.02468050643801689, -0.007995178923010826, -0.03236748278141022, -0.02194897271692753, -0.027968019247055054, -0.02414870448410511, -0.0014941859990358353, -0.0036108235362917185, 0.006321207154542208, 0.006901356391608715, -0.0037619038484990597, 0.0047711217775940895, -0.00022680957044940442, 0.02367733232676983, -0.04252009093761444, 0.04087633639574051, -0.028910759836435318, 0.031956542283296585, -0.014286169782280922, -0.008158345706760883, 0.0152772581204772, -0.032609209418296814, 0.0334552600979805, 0.022239046171307564, -0.001276630093343556, -0.005148822907358408, -0.0071370420046150684, 0.007771580014377832, 0.026058360934257507, -0.017996706068515778, -0.03285093978047371, 0.006109694484621286, -0.008811013773083687, -0.024559643119573593, -0.022746676579117775, 0.03243999928236008, 0.01725943386554718, 0.025719940662384033, 0.011874925345182419, 0.00019319416605867445, 0.0161112230271101, -0.025188136845827103, -0.010805276222527027, -0.007547980640083551, -0.020559031516313553, -0.0077413637191057205, 0.012219388969242573, -0.0034718294627964497, -0.021115008741617203, 0.0014579265844076872, -0.000569951138459146, -0.012606155127286911, 0.0024988711811602116, -0.014153219759464264, 0.0014579265844076872, 0.03928092494606972, 0.010551461018621922, 0.006532719824463129, -0.023145530372858047, 0.0344463512301445, 0.04969943314790726, 0.01241277251392603, -0.0031575821340084076, -0.004607954528182745, -0.004487090278416872, 0.04539666324853897, -0.0030744876712560654, -0.015881579369306564, 0.027339523658156395, -0.019966796040534973, -0.012370469979941845, 0.03273007646203041, 0.017150655388832092, 0.017984621226787567, 0.0049191806465387344, 0.001111952355131507, -0.00047477040789090097, -0.034204620867967606, 0.03546161204576492, -0.02186436764895916, 0.007602369878441095, 0.006605238653719425, 0.014709195122122765, 0.005142779555171728, -0.04387377202510834, 0.001445084810256958, -0.03611427918076515, -0.01606287620961666, 0.006853010505437851, 0.034784771502017975, 0.00352319679223001, 0.03331022337079048, 0.018613114953041077, -0.04097302630543709, -0.0018688655691221356, 0.0022148399148136377, -0.003795141587033868, -0.008285253308713436, 0.01496301032602787, 0.019664635881781578, -0.00288110482506454, -0.033721163868904114, -0.0070584798231720924, -0.0017812388250604272, -0.00862971693277359, -0.0018718871288001537, -0.006985961459577084, -0.010182823985815048, -0.013029180467128754, -0.0024641226045787334, -0.012811624445021152, 0.057773176580667496, 0.01724734716117382, -0.015942012891173363, 0.025188136845827103, 0.0006039442378096282, -0.033721163868904114, 0.014213651418685913, 0.030892936512827873, -0.0109261404722929, 0.00810999982059002, 0.01270284689962864, 0.016836408525705338, 0.01664302498102188, 0.012424858286976814, -0.003638017922639847, -0.018093397840857506, 0.005562783218920231, 0.019434992223978043, -0.01039433665573597, -0.002107572741806507, 0.012485290877521038, -0.015337690711021423, 0.04503406956791878, -0.029515082016587257, -0.024523383006453514, -0.005242492537945509, 0.017053965479135513, -0.004846661817282438, -0.027218658477067947, 0.021586379036307335, 0.03181150555610657, 0.02770211733877659, -0.019966796040534973, 0.0264209546148777, 0.0005174506222829223, -0.03243999928236008, -0.026638509705662727, -0.029152490198612213, 0.014213651418685913, 0.0218522809445858, 0.0013121339725330472, -0.0069617885164916515, 0.0007387835648842156, 0.004825510550290346, -0.01091405376791954, 0.01439494825899601, -0.0134884649887681, -0.057821519672870636, -0.0034718294627964497, -0.018806498497724533, 0.029152490198612213, 0.010895924642682076, 0.026348436251282692, -0.014854232780635357, 0.0014080700930207968, 0.009638934396207333, -0.003184776520356536, -0.01212269812822342, 0.015531073324382305, -0.01893944852054119, 0.016389209777116776, 0.005976743996143341, -0.016413383185863495, 0.01954377070069313, 0.022734589874744415, -0.0008400074439123273, -0.030336961150169373, -0.04019949585199356, 0.009113174863159657, -0.02422122284770012, 0.01792418770492077, 0.003988524898886681, 0.009076915681362152, -0.00020282554032746702, -0.024547556415200233, 0.026058360934257507, -0.03751630336046219, 0.02987767569720745, -0.018709806725382805, 0.03606593236327171, -0.015893666073679924, -0.012497377581894398, 0.018262607976794243, 0.0470404177904129, -0.0403687059879303, 0.022214874625205994, -0.004323923494666815, 0.04488903284072876, 0.0034960024058818817, 0.012594068422913551, 0.01468502264469862, -0.0013098677154630423, -0.0007803306798450649, 0.0025094468146562576, 0.03461556136608124, 0.026638509705662727, -0.018141744658350945, -0.01670345850288868, -0.014793800190091133, -0.005686669144779444, 0.02423330955207348, 0.0009880663128569722, -0.017416557297110558, 0.014527899213135242, -0.006136889103800058, -0.0036078018601983786, -0.0003795897064264864, 0.008569285273551941, -0.0029188748449087143, -0.040054455399513245, -0.07474253326654434, -0.014612504281103611, 0.00982627458870411, -0.012896229512989521, -0.00616408372297883, -0.03575168550014496, 0.021405082195997238, 0.021538034081459045, 0.0070524369366467, -0.0003080153255723417, 0.023350998759269714, 0.01734403893351555, 0.033141013234853745, 0.00635142344981432, -0.019253697246313095, -0.002899234415963292, 0.0007825968787074089, 0.012231475673615932, 0.03229496255517006, 0.014201564714312553, 0.021163353696465492, 0.020256871357560158, 0.004895007703453302, 0.0016346907941624522, -0.030385306105017662, 0.009705410338938236, -0.050424620509147644, 0.0009873108938336372, 0.025695767253637314, -0.000711211352609098, 0.030167751014232635, 0.012872057035565376, 0.022239046171307564, -0.013621415942907333, -0.005387529730796814, 0.015651937574148178, -0.007402943447232246, -0.034808941185474396, -0.004151691682636738, 0.007729277480393648, 0.003843487473204732, 0.00775345042347908, -0.016546335071325302, 0.010853622108697891, 0.03507484495639801, -0.02300049178302288, -0.018782325088977814, -0.08078575134277344, 0.02523648366332054, -0.03792724385857582, -0.013899404555559158, 0.0007455821614712477, -0.0034536998718976974, 0.005834728013724089, 0.035437438637018204, 0.010732756927609444, 0.03466390445828438, 0.015748629346489906, -0.026735201478004456, 0.001590877422131598, -0.027387868613004684, -0.05709633603692055, 0.05409889668226242, 0.01724734716117382, -0.05124649778008461, -0.0346880778670311, 0.0029641990549862385, 0.027774635702371597, -0.018298868089914322, 0.001421667286194861, 0.005390551406890154, 0.019205350428819656, -0.05356709659099579, 0.004308815114200115, 0.0016830365639179945, -0.01606287620961666, 0.03758882358670235, 0.0042574480175971985, 0.0013415946159511805, 0.004895007703453302, 0.03546161204576492, 0.015929926186800003, 0.04720962792634964, -0.021622639149427414, 0.0034506781958043575, -0.014636676758527756, 0.02586497738957405, 0.019930537790060043, -0.008285253308713436, -0.005877030547708273, 0.013693934306502342, 0.005375443492084742, -0.003329813713207841, 0.0050340015441179276, -0.008883532136678696, -0.026058360934257507, 0.02886241488158703, 0.02306092530488968, 0.014552071690559387, -0.0018174981232732534, 0.023846542462706566, -0.046919554471969604, 0.008545111864805222, 0.030336961150169373, 0.003906941041350365, 0.008587414398789406, -0.027943845838308334, 0.02596166916191578, -0.00835172925144434, -0.01151837594807148, -0.012594068422913551, -0.0017887928988784552, 0.0470404177904129, -0.005744080059230328, -0.011602981016039848, 0.035437438637018204, -0.007517764810472727, -0.004139604978263378, 0.007372727617621422, 0.008188562467694283, -0.006206386256963015, 0.009107131510972977, 0.0021030402276664972, -0.013621415942907333, -0.028572339564561844, 0.01838347315788269, -0.012449031695723534, 0.02013600617647171, -0.0063574668020009995, -0.013669761829078197, -0.011040961369872093, -0.019737154245376587, -0.0014095809310674667, -0.019289955496788025, 0.005849836394190788, -0.010194910690188408, -0.039425961673259735, -0.012062265537679195, -0.024039926007390022, -0.05574265494942665, -0.02704944834113121, 0.006242645438760519, -0.03780638054013252, -0.03609010577201843, -0.012364426627755165, -0.06686218082904816, 0.01380271278321743, 0.009415335953235626, -0.009904836304485798, -0.013319254852831364, 0.017029792070388794, -0.019906364381313324, 0.026275917887687683, 0.025623248890042305, 0.005315011367201805, 0.02406409941613674, 0.005242492537945509, 0.0240761861205101, 0.019253697246313095, -0.011772191151976585, -0.008103957399725914, 0.019362473860383034, -0.017162742093205452, -0.017138570547103882, -0.030071059241890907, -0.004650257062166929, 0.004048957023769617, -0.01562776416540146, -0.0035896722692996264, 0.0077171907760202885, -0.00832151249051094, -0.017452817410230637, -0.024039926007390022, 0.00832755584269762, 0.015120134688913822, 0.022746676579117775, 0.00487385643646121, 0.027508733794093132, 0.005133714526891708, 0.010956356301903725, 0.008811013773083687, -0.0021740482188761234, 0.0007584239938296378, 0.00027968775248155, -0.011119523085653782, -0.006562936119735241, -0.025115618482232094, -0.0034416134003549814, -0.013428033329546452, -0.015168480575084686, 0.012485290877521038, 0.019181177020072937, 0.023314740508794785, -0.0016331799561157823, 0.007735320366919041, -0.0017419579671695828, 0.007759493310004473, 0.008273167535662651, -0.008696192875504494, -0.014286169782280922, -0.01608704961836338, 0.016534248366951942, 0.004097302444279194, -0.032609209418296814, 0.003728666342794895, 0.0023523231502622366, 0.008394031785428524, -0.008998353034257889, 0.006405812222510576, 0.019894277676939964, 0.02292797341942787, 0.0011497224913910031, 0.001099865883588791, 0.01232816744595766, 0.029611773788928986, -0.004308815114200115, 0.006732146255671978, -0.023955320939421654, -0.03577585890889168, -0.010418510064482689, -0.014237824827432632, -0.00693157222121954, 0.03447052091360092, -0.03688780963420868, 0.003399310866370797, 0.006496460642665625, -0.013585156761109829, -0.03546161204576492, 0.011699672788381577, -0.0018718871288001537, -0.03628348931670189, 0.01269076019525528, 0.0022828259970992804, 0.0224082563072443, 0.009632891044020653, -0.01782749593257904, 0.0008830653969198465, 0.018190089613199234, 0.026082534343004227, 0.005586956162005663, 0.0016256259987130761, 0.013524724170565605, 0.02362898737192154, 0.02482554502785206, 0.01439494825899601, -0.022637899965047836, 0.0017026769928634167, 0.022662071511149406, -0.006689843721687794, -0.0051699741743505, 0.0067925783805549145, 0.03002271242439747, -0.03268172964453697, 0.014624590054154396, 0.006200342904776335, -0.03292346000671387, -0.013766453601419926, -0.00025929187540896237, 0.054969120770692825, 0.039353445172309875, -0.013597243465483189, -0.016969360411167145, 0.009880663827061653, -0.0005895915674045682, 0.016884755343198776, -0.02360481396317482, 0.015180566348135471, -0.00476507842540741, -0.002038075588643551, -0.005336162634193897, -0.02420913614332676, -0.02014809288084507, 0.0037981632631272078, -0.02135673724114895, -0.0016271367203444242, -0.03609010577201843, 0.014648763462901115, 0.009729582816362381, 0.012001832947134972], [0.048462092876434326, 0.020388392731547356, 0.047098949551582336, 0.019542304798960686, -0.00349305453710258, 0.013513920828700066, -0.03842654079198837, 0.06519585102796555, 0.006422049831598997, 0.016580993309617043, -0.0363113172352314, -0.0036928255576640368, -0.01105791237205267, 0.028955044224858284, -0.02257412299513817, 0.014477522112429142, 0.0188019759953022, -0.02702784165740013, -0.04065927490592003, -0.007332770619541407, -0.028626007959246635, 0.017521090805530548, -0.05053031072020531, -0.0006503573968075216, 0.00784982554614544, -0.015523381531238556, 0.01582891307771206, 0.001094333827495575, 0.046511389315128326, -0.04268048703670502, 0.027967939153313637, -0.004841508809477091, 0.023878509178757668, -0.037180908024311066, 0.014971073716878891, -0.049825236201286316, -0.02839098498225212, 0.027309870347380638, -0.011187176220119, -0.007597173564136028, -0.015476376749575138, -0.008073098957538605, -0.015370615758001804, -0.030036156997084618, -0.05147041007876396, 0.0771821141242981, 0.01011193823069334, -0.040424250066280365, -0.025453174486756325, 0.022668132558465004, 0.015347112901508808, 0.022280341014266014, 0.007561919745057821, 0.008355128578841686, 0.057016994804143906, 0.02949560061097145, -0.008807551115751266, 0.04517174884676933, -0.019554056227207184, -0.032198384404182434, -0.00036740972427651286, -0.04655839502811432, 0.011645474471151829, 0.027991442009806633, -0.01801464334130287, 0.02121097967028618, -0.005840363912284374, 0.04350307211279869, -0.053773652762174606, 0.013572677038609982, -0.013995721004903316, 0.02430155500769615, -0.0408472940325737, -0.03884958475828171, -0.029871638864278793, -0.004444904625415802, 0.008190610446035862, -0.022421356290578842, 0.028437988832592964, -0.02613474614918232, -0.049120161682367325, 0.012374050915241241, 0.0074855368584394455, 0.009054326452314854, 0.0017744365613907576, 0.005534831900149584, -0.02171628177165985, -0.0017200870206579566, -0.03706339746713638, 0.026463782414793968, 0.023960769176483154, -0.017074543982744217, -0.03852054849267006, 0.012468060478568077, 0.03797999024391174, -0.01719205640256405, 0.06491382420063019, -0.0009658046183176339, -0.012027389369904995, 0.06684102863073349, -0.012926358729600906, 0.012409304268658161, -0.014418765902519226, 0.0544787272810936, 0.008049596101045609, -0.036405324935913086, -0.05490177124738693, 0.02580571174621582, 0.04944919794797897, -0.0021078777499496937, 0.039648666977882385, -0.01452452689409256, 0.0003512517723720521, 0.08592503517866135, -0.047498494386672974, -0.005182294640690088, -0.03165782615542412, 0.01614619791507721, 0.013431661762297153, -0.008836928755044937, 0.008613655343651772, -0.018237916752696037, -0.04164637625217438, -0.06477280706167221, -0.004521287512034178, 0.02827347256243229, -0.020893696695566177, 0.032832950353622437, -0.0395781584084034, 0.008319874294102192, 0.03515969589352608, -0.05499577894806862, 0.05946125090122223, -0.0068215918727219105, 0.0005846239509992301, -0.016839519143104553, -0.019601060077548027, -0.011228305287659168, -0.007744064088910818, 0.019178016111254692, 0.05541882663965225, 0.009089580737054348, -0.0027512579690665007, 0.020564662292599678, -0.03048270381987095, 0.026040736585855484, -0.018978245556354523, 0.04312703385949135, -0.03793298825621605, 0.005849177483469248, -0.03591177612543106, 0.028626007959246635, -0.0427979975938797, -0.032456912100315094, 0.007091870531439781, 0.011604344472289085, 0.041669879108667374, 0.02458358369767666, -0.04818006232380867, 0.027967939153313637, -0.04293901473283768, -0.009265849366784096, 0.03313848376274109, 0.042045921087265015, 0.004888514056801796, 0.046581897884607315, -0.031140772625803947, 0.006545437965542078, -0.04244546219706535, -0.02477160282433033, -0.014536278322339058, 0.008343377150595188, -0.04582981765270233, -0.020799687132239342, -0.06340966373682022, 0.008431510999798775, 0.04103531315922737, 0.04467819631099701, -0.020776184275746346, -0.022997166961431503, -0.00651605986058712, 0.004776876885443926, -0.051705434918403625, -0.01588767021894455, -0.04597083106637001, 0.04371459409594536, -0.010587862692773342, -0.011486832052469254, -0.04195190966129303, 0.027215860784053802, 0.034337110817432404, -0.019048752263188362, 0.03184584900736809, 0.01615794748067856, -0.011557339690625668, -0.004588857293128967, -0.022198082879185677, 0.018919488415122032, 0.014677292667329311, -0.004794504027813673, 0.036076292395591736, -0.026628298684954643, 0.07802820205688477, -0.03487766534090042, -0.025124140083789825, -0.026698805391788483, -0.004439028911292553, -0.006380920764058828, 0.00426569813862443, -0.0035782509949058294, 0.031070265918970108, 0.0031287663150578737, -0.030294684693217278, 0.0031522689387202263, 0.038026995956897736, 0.008678287267684937, 0.03687537461519241, -0.02094070054590702, -0.02930757962167263, 0.00014964463480282575, -0.03332650288939476, 0.02808545157313347, 0.026275761425495148, -0.03821501508355141, -0.060260333120822906, -0.04456068202853203, -0.012080269865691662, -0.003369666635990143, 0.021093467250466347, -0.03859105706214905, -0.04077678546309471, 0.02879052609205246, 0.014841809868812561, -0.03849704563617706, -0.0059843165799975395, -0.029542604461312294, -0.04378510266542435, 0.004027735907584429, -0.04124683514237404, 0.01763860322535038, -0.030952753499150276, 0.02164577506482601, 0.024489574134349823, 0.04296251758933067, 0.008196486160159111, -0.028038447722792625, -0.0041334968991577625, -0.015206098556518555, 0.006416174583137035, 0.013925213366746902, 0.017720863223075867, -0.011651349253952503, 0.08470290154218674, -0.028414485976099968, 0.0272393636405468, 0.0017656231066212058, 0.010664246045053005, -0.020846690982580185, 0.0635506808757782, 0.024278052151203156, 0.01970682106912136, -0.01559388916939497, 0.0008967661415226758, -0.03645233064889908, -0.05744003877043724, 0.004159937147051096, 0.026040736585855484, -0.005255740135908127, -0.04275099188089371, -0.0004292873200029135, -0.04209292307496071, 0.013043871149420738, 0.021363746374845505, -0.056828971952199936, -0.04228094592690468, 0.07403278350830078, -0.0009430366335436702, -0.03468964621424675, 0.002433974528685212, -0.030835241079330444, -0.06101241335272789, 0.012656080536544323, 0.03196335956454277, -0.04907315969467163, 0.027897432446479797, -0.004641737788915634, 0.014030974358320236, 0.03572375327348709, 0.008319874294102192, 0.006674701347947121, 0.10416294634342194, 0.019918343052268028, 0.026228757575154305, 0.014383511617779732, 0.0288610327988863, 0.016874773427844048, -0.03934313356876373, 0.028508497402071953, 0.014442267827689648, -0.026557791978120804, 0.009812281467020512, 0.04174038767814636, -0.026557791978120804, -0.04174038767814636, -0.09499698877334595, 0.041270337998867035, 0.060918401926755905, 0.030835241079330444, -0.06975533068180084, 0.04397312179207802, -0.00998267438262701, 0.037180908024311066, -0.06383270770311356, 0.00833162572234869, -0.055794864892959595, 0.00303181866183877, 0.01108729001134634, 0.02158701978623867, 0.014113233424723148, 0.03412558510899544, 0.06397372484207153, -0.019283777102828026, 0.00468286732211709, -0.034196093678474426, 0.011134295724332333, -0.013866457156836987, -0.024278052151203156, 0.013643183745443821, 0.0006705548730678856, -0.011040285229682922, -0.006780462805181742, 0.025077136233448982, -0.0003106732910964638, 0.02495962381362915, -0.025500180199742317, -0.02521815150976181, -0.055465828627347946, 0.026557791978120804, 0.01860220544040203, 0.02262112684547901, -0.015864167362451553, 0.023584729060530663, -0.040753282606601715, -0.00653368653729558, -0.03837953507900238, 0.04028323292732239, 0.03130529075860977, -0.0025235777720808983, 0.04002470523118973, 0.022480113431811333, 0.03986018896102905, 0.01769736036658287, -0.05861515924334526, -0.01855519972741604, -0.008255242370069027, -0.029002048075199127, 0.007990839891135693, 0.014536278322339058, -0.018884234130382538, 0.021963058039546013, -0.055089790374040604, -0.00205059046857059, 0.023384958505630493, 0.05602988973259926, -0.00280560739338398, -0.013043871149420738, -0.03830902650952339, -0.00742678064852953, 0.007344522047787905, 0.009753525257110596, 0.029519103467464447, 0.0027204109355807304, 0.030882246792316437, -0.022832650691270828, 0.026158249005675316, 0.0015673210145905614, -0.014536278322339058, 0.040048208087682724, -0.015523381531238556, -0.015535132959485054, 0.06105941906571388, 0.01685127057135105, 0.06340966373682022, 0.03960166126489639, 0.010687747970223427, 0.028155960142612457, -0.06016632542014122, 0.0032550920732319355, -0.02373749576508999, 0.02839098498225212, -0.011034409515559673, 0.0097300224006176, -0.009841659106314182, -0.039202120155096054, -0.000627956644166261, 0.019236771389842033, 0.03060021623969078, 0.010834638960659504, -0.0063280402682721615, -0.04007171094417572, 0.026158249005675316, -0.05607689544558525, 0.023831505328416824, -0.04406713321805, -0.004183439537882805, -0.05147041007876396, -0.021175725385546684, 0.02780342288315296, 0.009471495635807514, -0.026416776701807976, 0.05795709043741226, 0.03276244178414345, 0.015123839490115643, 0.015993431210517883, -0.006568940356373787, 0.0053497496992349625, 0.03736892715096474, 0.05161142349243164, -0.05856815725564957, -0.04416114091873169, 0.0029995026998221874, 0.01443051639944315, -0.015229600481688976, -0.01242105569690466, -0.014042725786566734, 0.027474388480186462, 0.016698505729436874, 0.02023562602698803, 0.05043630301952362, -0.010781758464872837, -0.011345817707479, 0.006527811288833618, 0.02709834836423397, 0.0074855368584394455, -0.029401591047644615, -0.011386946775019169, -0.02411353401839733, -0.0278739295899868, -0.02385500818490982, 0.011698354966938496, 0.009436242282390594, -0.035300709307193756, 0.04778052121400833, 0.011757111176848412, -0.02580571174621582, 0.022867903113365173, -0.010258828289806843, 0.036076292395591736, 0.02275039069354534, -0.005194046068936586, -0.013478666543960571, -0.004929643124341965, -0.02890803851187229, -0.006527811288833618, -0.02327919751405716, -0.07873327285051346, 0.018978245556354523, -0.0492611788213253, 0.06035434454679489, -0.020729178562760353, 0.01614619791507721, 0.014947570860385895, 0.012150777503848076, 0.019530553370714188, 0.0188137274235487, 0.010035554878413677, 0.024677593261003494, 0.017615102231502533, -0.026463782414793968, -0.03882608190178871, -0.007984964177012444, -0.03739243000745773, 0.010822887532413006, -0.024395564571022987, 0.009189466014504433, 1.2267646525288e-05, 0.008813426829874516, 0.0136196818202734, 0.011063788086175919, 0.0024207544047385454, 0.011522086337208748, 0.005655281711369753, -0.023431962355971336, -0.04014221951365471, 0.03687537461519241, -0.01147508155554533, 0.05814511328935623, -0.013960467651486397, -0.009036700241267681, -0.008678287267684937, -0.06533686816692352, -0.0007491412688978016, 0.040095213800668716, -0.01092277280986309, 0.01031170878559351, 0.004362646024674177, -0.016651500016450882, -0.03734542429447174, -0.003581188851967454, -0.010123688727617264, -0.0033814178314059973, -0.024983126670122147, 0.040236230939626694, -0.021152222529053688, -0.011110792867839336, -0.03295046463608742, 0.020282631739974022, -0.0017009912990033627, -0.049778230488300323, 0.019354283809661865, -0.03189285099506378, -0.0057052248157560825, 0.014982825145125389, -0.0015482251765206456, 0.005138227716088295, 0.0004432419082149863, 0.01569965109229088, -0.001158231170848012, -0.016675002872943878, 0.01607568934559822, -0.011956881731748581, 0.01646348088979721, -0.010770007036626339, -0.0025984919629991055, -0.040236230939626694, -4.802628609468229e-06, 0.005617090500891209, -0.03544172644615173, 0.0006705548730678856, 0.008737043477594852, -0.017650354653596878, -0.05560684576630592, -0.02930757962167263, 0.023643484339118004, -0.041199829429388046, -0.013431661762297153, 0.021998312324285507, 0.009630137123167515, 0.02458358369767666, -0.0024589458480477333, -0.017685608938336372, -0.03821501508355141, 0.004186377394944429, -0.003375542350113392, 0.016486983746290207, 0.030764734372496605, 0.028108954429626465, 0.02159876935184002, -0.012844099663197994, -0.008055471815168858, -0.02132849209010601, 0.00621052784845233, -0.006768711376935244, 0.013114378787577152, -0.017861876636743546, 0.030647221952676773, 0.04369109123945236, 0.022679883986711502, 0.008725292049348354, 0.004618235398083925, 0.03720441088080406, 0.026369770988821983, 0.013431661762297153, -0.0006767977029085159, -0.04162287339568138, -0.020000603049993515, 0.01581716164946556, -0.010534982196986675, -0.004676991607993841, -0.0007186614675447345, -0.03877907618880272, 0.030365191400051117, 0.012538568116724491, -0.04206942021846771, 0.04188140109181404, 0.028249969705939293, -0.020247377455234528, -0.008284620940685272, 0.027568398043513298, -0.003055321052670479, 0.002953966846689582, 0.016052186489105225, 0.013960467651486397, -0.04681692272424698, -0.01349041797220707, 0.006621820852160454, -0.024090031161904335, -0.033420514315366745, -0.013643183745443821, 0.033350005745887756, 0.01958930864930153, -0.03022417612373829, 0.009612509980797768, -0.018049897626042366, 0.027121851220726967, 0.025523683056235313, 0.007597173564136028, 0.014442267827689648, -0.03525370731949806, -0.0090719535946846, 0.02561769261956215, -0.013643183745443821, -0.02566469833254814, 0.023326201364398003, -0.03125828504562378, -0.015417620539665222, -0.0021416626404970884, -0.029190069064497948, 0.03034168854355812, 0.02683982066810131, 0.023690490052103996, 0.0018375994404777884, -0.07539592683315277, -0.024466071277856827, -0.036076292395591736, -0.037509944289922714, -0.034266602247953415, -0.004606483969837427, -0.004632924683392048, 0.0012096427381038666, 0.007561919745057821, -0.009265849366784096, 0.023044172674417496, -0.05471375212073326, -0.03412558510899544, 0.009829908609390259, -0.027521392330527306, -0.03668735548853874, -0.03377304971218109, -0.06528986245393753, -0.012597324326634407, -0.021822044625878334, -0.034783657640218735, -0.02813245728611946, 0.004950207658112049, 0.017074543982744217, -0.008272869512438774, -0.02620525471866131, 9.905923798214644e-05, 0.005620028357952833, 0.0421399287879467, -0.008737043477594852, 0.011956881731748581, -0.06261058151721954, 0.04293901473283768, 0.013784199021756649, -0.005023653153330088, 0.016063937917351723, 0.04063577204942703, -0.01137519534677267, 0.03165782615542412, -0.012620826251804829, -0.0012030326761305332, -0.0269103292375803, -0.007796944584697485, -0.013443413190543652, -0.049120161682367325, -0.02620525471866131, 0.004953145515173674, 0.05617090314626694, -0.036593347787857056, 0.02068217471241951, 0.04545377939939499, 0.0058550527319312096, 0.019695069640874863, 0.014712546020746231, 0.021892551332712173, -0.021692780777812004, -0.011386946775019169, -0.009918042458593845, 0.008513770066201687, 0.031093768775463104, -0.0095596294850111, -0.03389056399464607, 0.01769736036658287, 0.009048450738191605, -0.03790948539972305, 0.029284078627824783, -0.022397853434085846, 0.033937565982341766, 0.007232885342091322, 0.0025940851774066687, -0.012891105376183987, 0.020576411858201027, 0.020834939554333687, -0.03584126755595207, 0.01075825560837984, -0.015664396807551384, 0.02846149168908596, 0.014418765902519226, -0.0013109971769154072, 0.007033114321529865, -0.01640472374856472, 0.018261419609189034, 0.010211823508143425, 0.014489272609353065, -0.02451307699084282, -0.011715981177985668, -0.0004674788215197623, 0.01406622864305973, -0.017791369929909706, 0.01736832596361637, -0.006204652134329081, -0.05913221463561058, -0.03085874393582344, -0.026957333087921143, -0.0021916052792221308, -0.02904905378818512, 0.07017837464809418, -0.011099041439592838, -0.0174975898116827, 0.006962606683373451, -0.005411443766206503, -0.03736892715096474, 0.004389086272567511, -0.0009268786525353789, 0.00021831590856891125, 0.019483547657728195, 0.01306737307459116, -0.009318729862570763, 0.01769736036658287, 0.033161986619234085, -0.02094070054590702, -2.283687354065478e-05, 0.033867061138153076, 0.0048650112003088, -0.018825478851795197, -0.010652494616806507, -0.015288356691598892, -0.0031140772625803947, 0.03208087384700775, -0.004018922336399555, 0.009348107501864433, 0.016710257157683372, -0.04597083106637001, 0.008261118084192276, -0.06331565231084824, 0.021751536056399345, -0.025523683056235313, -0.021257983520627022, 0.005517204757779837, -0.02418404258787632, -0.008930938318371773, -0.02263287827372551, -0.0068509699776768684, 0.010511480271816254, 0.013960467651486397, -0.0021078777499496937, -0.0046975561417639256, -0.0050354041159152985, 0.017673857510089874, 0.007661805488169193, -0.02827347256243229, 0.012961612083017826, 0.02068217471241951, -0.007015487179160118, 0.014747800305485725, 0.0050706579349935055, 0.0188019759953022, 0.04413763806223869, -0.014136736281216145, -0.02495962381362915, 0.022386103868484497, 0.029942147433757782, -0.00046637715422548354, 0.013243641704320908, -0.030388694256544113, -0.0022562372032552958, 0.029942147433757782, -0.002400189870968461, -0.006874472368508577, 0.015217849984765053, 0.011128420010209084, 0.041528865694999695, -0.010699499398469925, -0.02463058941066265, -0.047357477247714996, -0.02709834836423397, 0.013419910334050655, 0.0068215918727219105, 0.03706339746713638, 0.006427925545722246, 0.012150777503848076, 0.0009246753179468215, -0.013772447593510151, -0.024348558858036995, 0.028955044224858284, 0.026416776701807976, -0.018331926316022873, 0.008695914410054684, -0.023772748187184334, 0.021798541769385338, -0.0026660615112632513, 0.003340288531035185, -0.029589610174298286, 0.008525521494448185, -0.007315143942832947, -0.046205855906009674, 0.01568789966404438, 0.010053182020783424, 0.014677292667329311, 0.03678136691451073, -0.011862872168421745, 0.020176870748400688, 0.04524225369095802, -0.013090875931084156, -0.029472097754478455, -0.006386796478182077, 0.013525671325623989, 0.007749939803034067, 0.028955044224858284, 0.014207242988049984, 0.020435398444533348, 0.00820236187428236, -0.009160087443888187, -0.027262866497039795, -0.01886073313653469, 0.039836686104536057, 0.008108352310955524, -0.007180004846304655, 0.025523683056235313, -0.006286910735070705, 0.012526816688477993, 0.004650551360100508, 0.03819151595234871, 0.04380860552191734, -0.033232491463422775, -0.005155854392796755, -0.03398457169532776, 0.027779920026659966, 0.025077136233448982, -0.005787483416497707, 0.0013161383103579283, -0.001501954742707312, -0.023420210927724838, 0.015488128177821636, -0.017861876636743546, 0.027638904750347137, 0.02106996439397335, 0.015605640597641468, 0.024865614250302315, -0.014277750626206398, 0.0116748521104455, -0.011157797649502754, 0.007826322689652443, 0.038802579045295715, 0.01574665494263172, -0.009647764265537262, -0.004647613503038883, 0.022938411682844162, -0.03736892715096474, -0.018590454012155533, 0.006874472368508577, 0.011116668581962585, -0.0025676449295133352, -0.03461913764476776, 0.004418464377522469, -0.039460647851228714, 0.003783897729590535, -0.05659394711256027, 0.018790224567055702, -0.0029304642230272293, -0.004988399334251881, 0.0427979975938797, -0.023843256756663322, 0.005329185165464878, -0.009306978434324265, -0.012938110157847404, -0.018437687307596207, 0.0010414532152935863, 0.008390381932258606, -0.029213570058345795, 0.02385500818490982, -0.02132849209010601, 0.009841659106314182, -0.019107507541775703, 0.0024868552573025227, -0.008831053040921688, -0.026440279558300972, -0.0015526319621130824, -0.015123839490115643, -0.008872182108461857, 0.03978968411684036, 0.029096057638525963, -0.003895534435287118, -0.008208237588405609, -0.033350005745887756, 0.048979148268699646, 0.026299264281988144, -0.005229299422353506, 0.05349162220954895, -0.00026293389964848757, 0.01102265901863575, 0.026087742298841476, -0.00015561205509584397, 0.0005141165456734598, -0.010188320651650429, -0.001752402982674539, -0.03137579932808876, -0.01898999512195587, -0.038097504526376724, 0.008090725168585777, -0.03748644143342972, -0.0018508195644244552, -0.0174975898116827, 0.04446667432785034, -0.04380860552191734, 0.009500873275101185, 0.00546432426199317, 0.002783573931083083, 0.019142761826515198, -0.005722851492464542, 0.015652645379304886, 0.0038485294207930565, 0.046464383602142334, -0.01626371033489704, -0.0034871790558099747, -0.014030974358320236, 0.0025735204108059406, 0.011469205841422081, 0.06387971341609955, 0.005114725325256586, 0.03483065962791443, -0.012327046133577824, 0.016193201765418053, -0.00013605726417154074, 0.020470650866627693, 0.025523683056235313, 0.04902615398168564, -0.016416475176811218, 0.0067628356628119946, 0.007338646333664656, -0.010393967851996422, 0.038802579045295715, -0.003528308356180787, 0.0032169006299227476, -0.01118130050599575, 0.01270308531820774, 0.011151921935379505, -0.004080616403371096, -0.02106996439397335, 0.013748944737017155, -0.028437988832592964, -0.019354283809661865, -0.0004410385445225984, 0.05142340436577797, -0.014665541239082813, 0.028555501252412796, -0.020799687132239342, 0.0035165571607649326, 0.05156442150473595, -0.012027389369904995, 0.016439978033304214, 0.023525971919298172, 0.020270880311727524, 0.005667033139616251, 0.018378932029008865, -0.013584427535533905, -0.024818608537316322, 0.014912317506968975, 0.0047915661707520485, -0.0021754472982138395, 0.012855851091444492, -0.032903458923101425, 0.011569091118872166, -0.00044911750592291355, 0.03412558510899544, -0.027568398043513298, 0.025453174486756325, 0.021504759788513184, -0.028955044224858284, 0.028743520379066467, 0.03746293857693672, 0.004615297541022301, -0.04944919794797897, 0.0004975913907401264, -0.024677593261003494, -0.00011558441474335268, -0.007232885342091322, -0.008214113302528858, -0.029025550931692123, 0.05137639865279198, -0.02197480946779251, 0.01225653849542141, 0.0007403278141282499, 0.014642039313912392, 0.06590092927217484, -0.025453174486756325, 0.005719913635402918, 0.00477981474250555, 0.020259128883481026, 0.02003585547208786, 0.005323309451341629, -0.00709774624556303, 0.014794805087149143, 0.04803904891014099, 0.015029829926788807, 0.03652283921837807, 0.008243491873145103, -0.004212817642837763, 0.03579426184296608, -0.002597023034468293, 0.031939856708049774, -0.0005075064837001264, -0.013596178963780403, 0.005596525967121124, -0.0008336032624356449, 0.005191108211874962, -0.04143485426902771, 0.009777028113603592, -0.0023179310373961926, -0.05010726675391197, 0.004013046622276306, 0.01795588806271553, -0.0030964503530412912, 0.016769012436270714, -0.0034254849888384342, -0.03146980702877045, 0.0004131293680984527, -0.0025984919629991055, -0.008731167763471603, 0.01647523231804371, 0.021375495940446854, 0.03788598254323006, 0.03978968411684036, -0.000446546939201653, 0.034924671053886414, 0.015840664505958557, 0.03558273985981941, -0.01468904409557581, 0.001398397027514875, 0.004436091054230928, 0.0311172716319561, 0.019859587773680687, 0.011980384588241577, 0.04253946989774704, -0.0027218798641115427, -0.014113233424723148, 0.014947570860385895, 0.02484211139380932, -0.01166897639632225, -0.02287965454161167, -0.048932142555713654, -0.005079471506178379, 0.022691635414958, -0.015640893951058388, -0.02547667734324932, 0.012244787067174911, -0.009624261409044266, -0.01587591879069805, -0.009876913391053677, 0.028837531805038452, -0.04590032622218132, 0.022785644978284836, 0.006545437965542078, -0.00910720694810152, 0.006427925545722246, -0.003061196766793728, 0.007085994817316532, -0.028061948716640472, 0.01163959875702858, -0.031681329011917114, -0.012015637941658497, -0.0056640952825546265, 0.007168253418058157, -0.006686452776193619, -0.032057370990514755, 0.008184735663235188, 0.028437988832592964, -0.02568819932639599, -0.005188170354813337, 0.016063937917351723, 0.006733457557857037, 0.03534771502017975, 0.003971917554736137, 0.018625708296895027, 0.019530553370714188, -0.02632276713848114, 0.0006184087251313031, 0.02275039069354534, -0.008907436393201351, -0.010581986978650093, -0.020776184275746346, 0.011210678145289421, 0.012585572898387909, 0.01971857249736786, -0.016122695058584213, 0.005053031258285046, -0.01303211972117424, 0.02458358369767666, 0.005308620631694794, 0.0311172716319561, 0.028696516528725624, -0.005857990588992834, -0.015582137741148472, 0.016933530569076538, 0.0069214776158332825, -0.012679582461714745, 0.020200373604893684, -0.001781781087629497, 0.011275310069322586, 0.029942147433757782, 0.027544895187020302, -0.021892551332712173, 0.028767023235559464, -0.003252154216170311, 0.024207543581724167, 0.021046461537480354, -0.01926027424633503, 0.032644931226968765, -0.008466765284538269, -0.0051999217830598354, 0.02249186486005783, -0.017544593662023544, 0.018002891913056374, 0.006081264000386, 0.021116970106959343, 0.004345019347965717, -0.021622272208333015, -0.021822044625878334, -0.015840664505958557, 0.005799234379082918, -0.04298601672053337, -0.004709307570010424, -0.010117813013494015, 0.007050740998238325, -0.018108652904629707, 0.00820236187428236, 0.01743883267045021, -0.015840664505958557, 0.012009762227535248, -0.018167410045862198, -0.012515065260231495, -0.02911956049501896, -0.0026028985157608986, -0.0028584878891706467, -0.0059549384750425816, -0.046769917011260986, -0.031422801315784454, -0.005860928446054459, -0.009447992779314518, 0.021316740661859512, -0.0031140772625803947, -0.014924068935215473, -0.012985114939510822, -0.009318729862570763, -0.00193307816516608, 0.055089790374040604, -0.01646348088979721, -0.010258828289806843, 0.004859135951846838, 0.019354283809661865, -0.0015893545933067799, 0.026369770988821983, 0.033561527729034424, 0.011557339690625668, 0.0018963555339723825, -0.019812582060694695, 0.0005137493135407567, 0.023749247193336487, 0.012726587243378162, -0.027521392330527306, -0.003930788021534681, 0.0178266242146492, 0.01513559091836214, -0.0030846991576254368, -0.012773592956364155, -0.003346164245158434, -0.05729902163147926, 0.007802820298820734, -0.008983819745481014, -0.04305652529001236, -0.028955044224858284, 0.00604601064696908, 0.0021020022686570883, -0.0181439071893692, 0.018190912902355194, -0.003140517510473728, -0.02580571174621582, 0.019471796229481697, 0.03993069753050804, 0.03816801309585571, -0.019295528531074524, -0.019730323925614357, 0.016028685495257378, 0.009794654324650764, 0.016710257157683372, -0.002354653785005212, -0.005461386404931545, 0.017779618501663208, 0.01607568934559822, 0.029918644577264786, -0.004453718196600676, 0.027897432446479797, -0.030882246792316437, 0.030200675129890442, -0.03513619303703308, 0.0023722806945443153, 0.01633421704173088, -0.013243641704320908, -0.01044097263365984, 0.028108954429626465, 0.031164275482296944, -0.012374050915241241, 0.00035051730810664594, -0.0324334092438221, -0.03739243000745773, 0.008219989016652107, -0.004350894596427679, -0.022656381130218506, 0.021410750225186348, -0.00829637236893177, -0.00866066012531519, -0.006839219015091658, 0.00910720694810152, -0.0015878856647759676, 0.003910223487764597, 0.00800846703350544, -0.017756115645170212, 0.02327919751405716, 0.007009611930698156, 0.023949017748236656, 0.006310413125902414, -0.01562914252281189, 0.02198656089603901, -0.021892551332712173, -0.016522236168384552, -0.05259852856397629, -0.015123839490115643, 0.025923224166035652, 0.029331082478165627, 0.04037724435329437, -0.024489574134349823, -0.03172833472490311, 0.029683619737625122, 0.013925213366746902, 0.018825478851795197, 0.021551765501499176, -0.030506206676363945, 0.009019073098897934, 0.0006246516131795943, 0.011069663800299168, 0.0074150292202830315, 0.0018904799362644553, -0.044748704880476, -0.025570686906576157, 0.008537271991372108, -0.01710979826748371, -0.002275332808494568, 0.013819452375173569, 0.0038250270299613476, 0.032644931226968765, 0.020071109756827354, -0.02827347256243229, 0.007297517266124487, 0.01455978024750948, 0.00162901496514678, -0.003090574871748686, 0.02036488987505436, -0.013231891207396984, -0.028696516528725624, -0.015112088061869144, 0.011721856892108917, 0.03788598254323006, 6.408095214283094e-05, 0.004876762628555298, 0.040095213800668716, 0.056123897433280945, 0.004424340091645718, 0.032785944640636444, 0.004906140733510256, -0.023913763463497162, 0.0074914125725626945, -0.011257682926952839, 0.016804266721010208, 0.00012146003427915275, -0.020646920427680016, 0.014794805087149143, 0.021175725385546684, -0.0007623613928444684, 0.02385500818490982, 0.025077136233448982, -0.012221284210681915, -0.008725292049348354, -0.02210407331585884, 0.021257983520627022, 0.052551522850990295, 0.01996534876525402, 0.016381220892071724, 0.0022195144556462765, -0.029801132157444954, -0.04096480458974838, 0.004315641243010759, -0.0068509699776768684, -0.020964203402400017, 0.008860431611537933, -0.017356574535369873, 7.211402407847345e-05, 0.015664396807551384, 0.009336356073617935, -0.0009268786525353789, -0.02613474614918232, -0.03675786405801773, -0.002811483107507229, -0.0006558658205904067, 0.005843301769345999, 0.0035253704991191626, 0.0009055795380845666, 0.024724598973989487, 0.00340492045506835, -0.011651349253952503, 0.018895985558629036, 0.0025088887196034193, -0.008925063535571098, 0.0191310103982687, 0.018566951155662537, 0.0018860732670873404, -0.009489122778177261, -0.014254248701035976, -0.009782902896404266, 0.017991140484809875, -0.04063577204942703, -0.016580993309617043, 0.004027735907584429, 0.07788718491792679, -0.023960769176483154, 0.016933530569076538, 0.019154513254761696, 0.025758707895874977, -0.017485838383436203, -0.015041581355035305, 0.010576111264526844, -0.0142659991979599, 0.00923647079616785, -0.0054202573373913765, 0.008067223243415356, -0.017603350803256035, 0.005058906506747007, -0.012280040420591831, 0.024489574134349823, -0.027591900900006294, 0.009483247064054012, -0.03125828504562378, -0.0009202685905620456, 0.023702241480350494, 0.017227310687303543, 0.0038015246391296387, -0.024231046438217163, 0.024536579847335815, -0.020964203402400017, -0.029848137870430946, -0.014207242988049984, -0.017662106081843376, 0.007050740998238325, -0.01827317103743553, 0.003316786140203476, -0.021187476813793182, 0.038544051349163055, 0.0037251415196806192, 0.0014652321115136147, 0.03671085834503174, -0.026017233729362488, -0.038614559918642044, 0.008560774847865105, -0.01712154969573021, 0.008560774847865105, -0.05386766046285629, -0.008272869512438774, 0.012562070041894913, 0.016827769577503204, -0.04500722885131836, 0.02326744608581066, 0.006751084700226784, 0.011263558641076088, -0.0001648845209274441, 0.03715740516781807, -0.008977944031357765, 0.013772447593510151, 0.022997166961431503, 0.022092321887612343, -0.02970712259411812, -0.05283355340361595, -0.026886826381087303, -0.01924852281808853, 0.010775882750749588, 0.007638302631676197, -0.019565805792808533, -0.021798541769385338, -0.027474388480186462, -0.00016552716260775924, -0.013090875931084156, -0.004753374494612217, -0.03421959653496742, -0.008519645780324936, -0.014982825145125389, -0.011704230681061745, -0.04420814663171768, -0.011334066279232502, -0.02099945768713951, 0.0035312462132424116, -0.017685608938336372, 0.018061649054288864, 0.01769736036658287, -0.026181751862168312, 0.022374352440238, -0.015112088061869144, -0.03600578382611275, -0.022327346727252007, -0.016392972320318222, 0.03708689659833908, 0.009395112283527851, 0.03652283921837807, 0.027004338800907135, -0.03788598254323006, 0.029143063351511955, -0.02982463501393795, 0.005622966215014458, -0.012244787067174911, -0.006163523066788912, 0.0029701245948672295, -0.0031111394055187702, 0.012891105376183987, 0.03962516412138939, 0.019554056227207184, 0.02801494486629963, -0.021563516929745674, 0.0110167833045125, 0.0011560277780517936, -0.005302744917571545, 0.0055700852535665035, -0.012362299486994743, -0.0175093412399292, 0.02982463501393795, 0.021563516929745674, 0.009001445956528187, -0.0048209442757070065, -0.0035400595515966415, 0.003161082277074456, -0.027991442009806633, 0.008014342747628689, 0.001540880766697228, -0.010687747970223427, 0.024607086554169655, 0.021963058039546013, -0.0034107959363609552, 0.015417620539665222, -0.03276244178414345, 0.017979389056563377, 0.02190430276095867, -0.0041569992899894714, -0.005258677527308464, -0.011892249807715416, 0.011856996454298496, 0.035770758986473083, -0.004112932365387678, 0.0007777848513796926, 0.0052909934893250465, -0.03645233064889908, 0.01513559091836214, -0.024654092267155647, -0.048791129142045975, -0.013795950450003147, 0.021998312324285507, -0.010135440155863762, 0.010834638960659504, -0.0009129240643233061, 0.018496444448828697, -0.006398547440767288, 0.00816710852086544, -0.007885078899562359, -0.025782210752367973, 0.053256597369909286, 0.021504759788513184, 0.01736832596361637, -0.012808846309781075, -0.038685064762830734, -0.014007472433149815, 0.026698805391788483, -0.003375542350113392, 0.04072977975010872, -0.031046763062477112, 0.0018757908837869763, 0.0007296782569028437, -0.025970229879021645, 0.007038990035653114, 0.021175725385546684, -0.03041219711303711, -0.013384656980633736, -0.01821441389620304, 0.0009981205221265554, -0.009212967939674854, -0.0014395263278856874, -0.0005541442078538239, 0.018754972144961357, -0.01105203665792942, -0.010787634178996086, 0.02309117652475834, 0.00022584405087400228, -0.007015487179160118, 0.022538868710398674, -0.01575840637087822, 0.029072556644678116, -0.01517084427177906, -0.009359858930110931, -0.01842593587934971, 0.031234782189130783, -0.03424309939146042, 0.006774587091058493, -0.006422049831598997, 0.004080616403371096, 0.023749247193336487, 0.04157587140798569, -0.05913221463561058, 0.016122695058584213, 0.008020218461751938, 0.019542304798960686, 0.003930788021534681, -0.026863323524594307, 0.007068368140608072, -0.021481258794665337, -0.01057023648172617, 0.029871638864278793, -0.01893123984336853, -0.022456610575318336, -0.01745058409869671, -0.02780342288315296, 0.004092367831617594, -0.0027439133264124393, -0.008502018637955189, 0.0068979752250015736, -0.021481258794665337, 0.03208087384700775, -0.012750090099871159, 0.028508497402071953, 0.015159093774855137, 0.035559237003326416], [0.017534678801894188, 0.012142793275415897, 0.05064837634563446, 0.03367719054222107, -0.03767691180109978, 0.04468194395303726, -0.005162620451301336, 0.008402724750339985, -0.011093143373727798, 0.03789788857102394, 0.01457356195896864, 2.5658589947852306e-05, 0.00882258452475071, 0.022318873554468155, -0.037279147654771805, -0.005582480691373348, 0.0286609698086977, 0.040372852236032486, -0.012551603838801384, -0.02585453726351261, 0.06368613243103027, 0.04821760579943657, -0.03564390540122986, -0.01159034576267004, -0.018374400213360786, -0.0590013787150383, -0.015700554475188255, -0.028395794332027435, 0.03833984583616257, -0.11561618745326996, 0.0016283385921269655, -0.02718041092157364, 0.02251775562763214, -0.030561387538909912, 0.002490156562998891, -0.01824181154370308, 0.023048104718327522, -0.03878180682659149, 0.01125887781381607, 0.01129202451556921, -0.032395511865615845, -0.01901523768901825, -0.0003518399316817522, 0.05113452672958374, -0.008701045997440815, 0.04035075753927231, -0.02669425681233406, -0.04684753715991974, -0.022451460361480713, -0.03434012830257416, 0.03993089497089386, 0.03940054774284363, -0.002596502657979727, -0.005654298700392246, -0.0008024298003874719, 0.013976918533444405, 0.021976355463266373, 0.023313278332352638, 0.010474402457475662, -0.020153280347585678, -0.03003103844821453, -0.02140181139111519, -0.03502516448497772, -0.008021535351872444, 0.020484749227762222, 0.01487188320606947, 0.021247126162052155, -0.0032925864215940237, -0.0034086003433912992, -0.042759425938129425, -0.007977340370416641, 0.04715690761804581, 0.028285305947065353, -0.02349006198346615, -0.023379571735858917, 0.013236639089882374, -0.0329921580851078, 0.022550901398062706, 0.03166628256440163, 0.02729089930653572, -0.05869200825691223, 0.015269645489752293, -0.0381188690662384, -0.035135652869939804, -0.032925862818956375, 0.01341342180967331, -0.04415159299969673, 0.003289824118837714, 0.0026987052988260984, -0.012441114522516727, -0.02049579657614231, 0.023379571735858917, -0.03277117758989334, 0.025235796347260475, 0.013181393966078758, 0.006579648237675428, 0.01585523970425129, -0.039533134549856186, -0.006380767095834017, 0.022628244012594223, -0.06624948978424072, -0.03451691195368767, -0.03009733185172081, 0.023688944056630135, 0.005239963065832853, -0.007159717846661806, -0.009314262308180332, 0.02406460791826248, 0.01823076233267784, -0.029898451641201973, 0.005353215150535107, -0.02901453524827957, 0.01836335100233555, 0.003242866136133671, -0.016595518216490746, -0.009883283637464046, -0.007480137515813112, -0.03188726305961609, -0.02020852454006672, -0.03469369560480118, -0.005170907359570265, 0.02855047956109047, 0.027224605903029442, -0.031003346666693687, 0.03752222657203674, -0.019291462376713753, -0.025125306099653244, 0.008529786951839924, -0.029368102550506592, -0.016672860831022263, 0.03184306621551514, -0.03769901022315025, 0.06903382390737534, -0.02388782426714897, -0.01763411983847618, -0.0196671262383461, 0.01631929539144039, -0.034649498760700226, 0.004607411101460457, 0.021059293299913406, 0.044372573494911194, 0.01883845590054989, -0.004403005354106426, 0.029102927073836327, -0.063199982047081, -0.0009032514644786716, -0.022219432517886162, -0.008933073841035366, 0.05528893321752548, -0.05285816267132759, -0.009148528799414635, 0.040859006345272064, -0.0054526557214558125, -0.018993141129612923, 0.004739998374134302, 0.028992438688874245, -0.0051515717059373856, 0.015424330718815327, 0.02897034026682377, 0.030185723677277565, -0.03836194425821304, -0.017015378922224045, 0.009601535275578499, -0.03674880042672157, 0.02109244093298912, -0.014429925009608269, -0.018750064074993134, 0.024926425889134407, -0.019081532955169678, -0.0014363632071763277, -0.05113452672958374, -0.018993141129612923, -0.054272428154945374, -0.008369578048586845, -0.047819845378398895, -0.04804082214832306, 0.02342376857995987, 0.03946683928370476, 0.010938458144664764, 0.013070904649794102, -0.016054119914770126, 0.028815655037760735, -0.07548640668392181, -0.0006201221840456128, 0.034826282411813736, 0.024418173357844353, 0.004753809422254562, -0.003057796275243163, -0.030472997575998306, 0.014131603762507439, -0.010800345800817013, -0.015026568435132504, 0.0067343334667384624, 0.007109997794032097, 0.019203070551156998, -0.0004205505538266152, -0.06213928014039993, -0.025169502943754196, 0.042162783443927765, -0.05166487768292427, 0.032749079167842865, -0.0598411001265049, 0.0181755181401968, 0.009463423863053322, -0.08887773007154465, -0.02406460791826248, -0.013766988180577755, -0.020705727860331535, 0.040682222694158554, -0.02503691427409649, 0.021655937656760216, -0.025434676557779312, 0.006364193744957447, 0.02753397636115551, 0.02086041308939457, 0.015236498787999153, -0.0017567826434969902, 0.0414777472615242, 0.04134516045451164, 0.007745312061160803, -0.04375383257865906, -0.003458320628851652, 0.003129614284262061, -0.023622648790478706, -0.03586488217115402, -0.029346004128456116, 0.01573370024561882, -0.039135370403528214, -0.02455076016485691, -0.0744699016213417, 0.0220426507294178, 0.009474472142755985, 0.022694537416100502, -0.028020130470395088, -0.0007250871858559549, -0.02890404686331749, 0.027732858434319496, 0.00554104708135128, 0.03266068920493126, 0.021600691601634026, 0.0427815243601799, -0.00027121714083477855, 0.004693040158599615, -0.023445867002010345, 0.0010075258323922753, 0.007198389153927565, 0.019578734412789345, -0.029544884338974953, 0.018904749304056168, -0.019932301715016365, -0.007159717846661806, 0.016838595271110535, 0.04759886488318443, -0.10182709991931915, -0.034539010375738144, 0.03484838083386421, -0.030119430273771286, -0.020396357402205467, -0.012827827595174313, 0.02605341747403145, -0.015490624122321606, 0.03115803189575672, 0.006491256412118673, -0.02182167023420334, -0.04010767862200737, -0.0048836348578333855, -0.020606286823749542, -0.006463634315878153, -0.013170345686376095, 0.03319103643298149, -0.031622085720300674, 0.0042759426869452, 0.019236218184232712, -0.04941089078783989, -0.10492080450057983, 0.027998032048344612, 0.025655655190348625, 0.0012374820653349161, 0.007811605930328369, 0.019888104870915413, -0.03259439393877983, -0.02753397636115551, -0.04680334031581879, -0.04417369142174721, 0.06249284744262695, 0.026804747059941292, -0.02103719487786293, -0.010706430301070213, -0.010076640173792839, 0.021766426041722298, 0.05493536591529846, 0.027092019096016884, 0.04552166163921356, -0.012805730104446411, 0.04134516045451164, 0.014706148765981197, 0.015081813558936119, 0.000374628376448527, 0.015424330718815327, -0.015523770824074745, 0.042516350746154785, 0.045433271676301956, 0.004472061526030302, -0.05524473637342453, -0.05718935281038284, 0.000453697401098907, -0.007126571144908667, -0.02503691427409649, -0.018750064074993134, -0.002468058606609702, -0.0016159085789695382, 0.02205369807779789, -0.0838836058974266, -0.050913549959659576, 0.011546149849891663, -0.010347339324653149, -0.035135652869939804, 0.006695662159472704, 0.04282572120428085, -0.025611460208892822, 0.0019639504607766867, 0.030472997575998306, -0.028572577983140945, -0.016462931409478188, -0.020904608070850372, -0.046626556664705276, -0.01308195386081934, 0.044659845530986786, -0.013258736580610275, 0.00426213163882494, -0.001568950479850173, -0.0015799994580447674, 0.04196390137076378, -0.004762096330523491, -0.02199845388531685, -0.0002734614536166191, -0.015335938893258572, 0.021899012848734856, 0.0512671172618866, -0.0015951917739585042, 0.004637795500457287, -0.034649498760700226, -0.03747802972793579, 0.02126922458410263, -0.014142652973532677, 0.03389817103743553, 0.03027411550283432, 0.03544502332806587, -0.010899786837399006, 0.029058732092380524, 0.03020782209932804, -0.019866006448864937, -0.021180832758545876, -0.04888054355978966, -0.06527718156576157, -0.00456045288592577, 0.04286991432309151, 0.007424892392009497, -0.019678175449371338, 0.01661761663854122, -0.0024666774552315474, -0.017711462453007698, 0.015324889682233334, 0.03175467625260353, 0.039069078862667084, -0.017689364030957222, -0.008225941099226475, -0.006071396637707949, -0.02943439595401287, -0.04178711771965027, 0.011314122006297112, -0.02879355661571026, -0.023335376754403114, -0.019656077027320862, 0.03283747285604477, -0.019888104870915413, 0.021534398198127747, 0.013004611246287823, -0.0017208735225722194, 0.022506706416606903, -0.005107375793159008, 0.020462650805711746, 0.0002449758758302778, 0.006010627374053001, -0.002582691377028823, 0.021611740812659264, -0.06837088614702225, -0.022595098242163658, -0.005425033159554005, 0.022716635838150978, 0.028506284579634666, 0.00031938363099470735, -0.02795383706688881, 0.049543481320142746, -0.0659843161702156, 0.011424611322581768, -0.017435239627957344, -0.018926847726106644, 0.006579648237675428, 0.009982723742723465, 0.004662655759602785, -0.01656237244606018, -0.010253422893583775, -0.00506594218313694, -0.021655937656760216, 0.015446428209543228, -0.013523911125957966, -0.005640487652271986, -0.006176361348479986, 0.006651466246694326, 0.005060418043285608, -0.008861255832016468, 0.02539048157632351, 0.05016222223639488, 0.017125869169831276, 0.012794680893421173, 0.008955172263085842, 0.04200809821486473, 0.015203351154923439, -0.06567494571208954, 0.029456494376063347, 0.06602851301431656, -0.005949858110398054, -0.028528381139039993, -0.015004470944404602, -0.005107375793159008, 0.058426834642887115, -0.014860833995044231, -0.012297478504478931, -0.018153419718146324, -0.0564822182059288, -0.020307965576648712, -0.009717549197375774, 0.0260976143181324, -0.04152194410562515, -0.04284781962633133, 0.02110349014401436, -0.0172916017472744, -0.026384886354207993, -0.029412297531962395, -0.006342095788568258, -0.03045089915394783, 0.027136214077472687, -0.01715901494026184, 0.0031765722669661045, -0.00980041641741991, 0.025611460208892822, 0.0009439944406040013, 0.0036875861696898937, -0.023799432441592216, 0.02150125242769718, -0.01597677730023861, -0.044195789843797684, -0.0056846835650503635, -0.007783983368426561, -0.02711411751806736, -0.03491467237472534, -0.008695521391928196, -0.002146258018910885, 0.004104684107005596, -0.012595799751579762, 0.03431802988052368, 0.0787568986415863, 0.016308246180415154, -0.001160139450803399, -0.02711411751806736, -0.010082164779305458, -0.036152154207229614, -0.013833282515406609, -0.032682787626981735, 0.033876072615385056, 0.0042731803841888905, -0.06894543021917343, -0.004728949628770351, 0.01882740668952465, -0.02782125025987625, -0.022694537416100502, -0.04196390137076378, -0.0008224560297094285, -0.0363510362803936, 0.020407406613230705, 0.02585453726351261, -0.05268138274550438, -0.0423174686729908, 0.08189480006694794, 0.00786685012280941, 0.03988669812679291, 0.004234509076923132, -0.02282712608575821, -0.02103719487786293, -0.027688661590218544, -0.00018368875316809863, -0.009717549197375774, -0.008562934584915638, 0.023445867002010345, 0.021423909813165665, -0.04273732751607895, 0.007938669063150883, 0.0006791650084778666, 0.02735719457268715, 0.0247938372194767, -0.03473788872361183, 0.013037757948040962, 0.018131323158740997, -0.004635033197700977, 0.0027967647183686495, 0.01829705759882927, -0.008469018153846264, -0.01763411983847618, 0.008728668093681335, -0.07946402579545975, 0.0004174430505372584, 0.012297478504478931, 0.001206406974233687, -0.025235796347260475, 0.010667758993804455, 0.03098124824464321, -0.015236498787999153, -0.03451691195368767, 0.05117872357368469, -0.027202507480978966, -0.024992719292640686, -0.01487188320606947, 0.003961047623306513, -0.0019459958421066403, 0.002566118026152253, -0.010955031029880047, -0.0010441255290061235, -0.007275731768459082, 0.017379993572831154, -0.016761252656579018, -0.03027411550283432, -0.027688661590218544, -0.00807125587016344, 0.02198740467429161, 0.03648362308740616, -0.011667688377201557, 0.03323523327708244, -0.0350472591817379, 0.004657131154090166, 0.01254055555909872, -0.008701045997440815, 0.015523770824074745, 0.024661250412464142, -0.00263655511662364, -0.006866920739412308, 0.026362787932157516, 0.018794259056448936, 0.0007071326253935695, 0.00025378051213920116, -0.01947929337620735, 0.02102614752948284, -0.025721948593854904, -0.01334712840616703, -0.014374680817127228, 0.04172082617878914, -0.006121116690337658, -0.03456110879778862, -0.016131462529301643, -0.020539993420243263, -0.006640417501330376, 0.062448650598526, 0.026804747059941292, -0.027312997728586197, 0.00019801784947048873, 0.0016159085789695382, 0.010656709782779217, -0.04653816670179367, -0.035732295364141464, 0.009148528799414635, 0.03860502317547798, 0.004353285301476717, 0.020816216245293617, -0.00655755028128624, 0.019357755780220032, 0.029368102550506592, 0.025523068383336067, -0.045079704374074936, 0.02056209184229374, 0.026186006143689156, -0.007159717846661806, 0.051576487720012665, -0.0044389148242771626, -0.005784124135971069, -0.009761745110154152, 0.015446428209543228, -0.05838263779878616, -0.012474261224269867, -0.019214119762182236, 0.05100193992257118, -0.025965025648474693, -0.00015563478518743068, 0.0014170275535434484, -0.00911538116633892, 0.052769772708415985, 0.01793244108557701, 0.0029694046825170517, -0.010982654057443142, -0.0005469229072332382, -0.009601535275578499, 0.022595098242163658, 0.014882932417094707, 0.05365368723869324, 0.005784124135971069, -0.04755466803908348, 0.002039911923930049, 0.020871462300419807, -0.05016222223639488, 0.04605201259255409, 0.0024155760183930397, 0.008618178777396679, -0.006441536359488964, -0.004947165958583355, -0.013457617722451687, -0.005198529921472073, 0.0115571990609169, -0.024992719292640686, -0.0308044645935297, -0.017545728012919426, 0.018982091918587685, -0.03736754134297371, 0.04021816700696945, -0.0015993351116776466, -0.00018558779265731573, -0.04963187128305435, -0.010413632728159428, -0.028285305947065353, -0.03380977734923363, -0.0427815243601799, -0.028528381139039993, -0.007148669101297855, -0.044836629182100296, -0.009855660609900951, -0.044483061879873276, 0.00783370342105627, -0.01698223128914833, 0.007750836666673422, -0.013457617722451687, 0.0003017743874806911, 0.03283747285604477, 0.009546290151774883, -0.001814789604395628, 0.025235796347260475, -0.05201844498515129, 0.03069397620856762, 0.014142652973532677, -0.02682684361934662, 0.005579718388617039, 0.019578734412789345, -0.020164329558610916, -0.006651466246694326, 0.004383669700473547, -0.02121397852897644, -0.031732577830553055, 0.025434676557779312, 0.023512160405516624, 0.0018686532275751233, 0.009303214028477669, 0.03522404283285141, 0.009850136935710907, -0.0320640467107296, 0.050383199006319046, 0.0256335586309433, 0.04861536994576454, 0.055686693638563156, -0.01572265289723873, 0.014352582395076752, 0.012407967820763588, 0.002095156582072377, 0.004900208208709955, -0.030914954841136932, -0.00861265417188406, 0.014242093078792095, -0.03451691195368767, -0.014860833995044231, -0.038825999945402145, -0.04295830801129341, 0.015114960260689259, -0.001426695380359888, 0.0035329009406268597, 0.008739717304706573, -0.011413563042879105, 0.007005032617598772, 0.02437397837638855, -0.0048477258533239365, -0.005668110214173794, 0.058426834642887115, 0.0013231114717200398, 0.01787719689309597, 0.03325733169913292, -0.017711462453007698, 0.027732858434319496, 0.028395794332027435, -0.008999367244541645, 0.022097894921898842, 0.06434907019138336, 0.004742760676890612, -0.0033284954261034727, -0.0074469903483986855, -0.022252580150961876, 0.02437397837638855, -0.02293761447072029, 0.04702432081103325, -0.03736754134297371, -0.022009503096342087, -0.0009619490010663867, -0.03263859078288078, 0.002173880347982049, 0.05064837634563446, 0.0016214330680668354, -0.04046124592423439, -0.004720662720501423, -0.05166487768292427, -0.0164960790425539, 0.004864299204200506, 1.4102513887337409e-05, 0.02056209184229374, -0.04768725857138634, -0.01907048374414444, -0.007502235472202301, -0.015446428209543228, 0.025103207677602768, -0.041146278381347656, -0.001338994363322854, 0.003977620974183083, -0.007220487110316753, 0.005977480672299862, -0.004447201266884804, 0.024948522448539734, -0.02830740250647068, -0.0015233736485242844, -0.038759708404541016, -0.03330152854323387, 0.009811465628445148, 0.002596502657979727, 0.013336079195141792, -0.02806432545185089, -0.018506987020373344, -0.022263629361987114, -0.026208102703094482, -0.012717338278889656, -0.04488082230091095, -0.003883705008774996, 0.003922376316040754, -0.001448793220333755, -0.015446428209543228, -0.005234438925981522, -0.006380767095834017, 0.022385166957974434, 0.017623070627450943, 0.01645188219845295, 0.005507900379598141, -0.0325281023979187, 0.008120976388454437, 0.0008141692960634828, -0.03438432514667511, 0.0024362928234040737, -0.018076077103614807, -0.03964362293481827, 0.020175378769636154, 0.007065801881253719, -0.02007593773305416, -0.004284229129552841, 0.016672860831022263, 0.012441114522516727, -0.004206886515021324, -0.016473980620503426, -0.010165031999349594, 0.010242374613881111, 0.01061251387000084, -0.03279327601194382, 0.00851873867213726, -0.007662444841116667, 0.02049579657614231, 0.035135652869939804, -0.007054752670228481, -0.014010065235197544, -0.006872445344924927, 0.02014223113656044, -0.008794962428510189, 0.023048104718327522, -0.05453760549426079, -0.028152717277407646, 0.010242374613881111, 0.006717760115861893, 0.006833774037659168, -0.01692698709666729, -0.023512160405516624, 0.0043919566087424755, -0.025721948593854904, -0.03003103844821453, 0.0048062922433018684, -0.025788243860006332, -0.017247406765818596, -0.02020852454006672, 0.004378145560622215, 0.02455076016485691, 0.0004633652279153466, -0.031180130317807198, -0.0014584610471501946, -0.008419297635555267, -0.023445867002010345, -0.0035135652869939804, 0.03226292505860329, 0.0795082226395607, -0.014054261147975922, -0.005850417539477348, 0.002448722952976823, -0.00403839023783803, 0.017435239627957344, -0.021434957161545753, 0.017357897013425827, -0.02919131889939308, -0.0055299983359873295, -0.006590696983039379, -0.02974376641213894, 0.0068116760812699795, -0.012518457137048244, 0.003129614284262061, -0.0345832034945488, 0.01764516904950142, -0.02293761447072029, -0.019236218184232712, 0.002581310225650668, 0.026473278179764748, -0.03270488232374191, -0.012651044875383377, 0.0023327090311795473, -0.03449481353163719, 0.02693733386695385, 0.03266068920493126, -0.0019874293357133865, -0.031202226877212524, -0.0035135652869939804, 0.005889088846743107, -0.00783922802656889, -0.043532852083444595, -0.016286147758364677, -0.010584891773760319, -0.018739014863967896, 0.0487479567527771, -0.026141809299588203, -0.041102085262537, -0.02132446877658367, -0.01254055555909872, -0.015623211860656738, -0.025876633822917938, 0.021169783547520638, -0.018971042707562447, 0.011634541675448418, -0.009098808281123638, -0.005861466750502586, -0.017302650958299637, 0.005626676604151726, 0.013512862846255302, 0.012463212944567204, -0.018197616562247276, -0.032329220324754715, 0.0007119665388017893, 0.006480207666754723, -0.03462740033864975, 0.01865062303841114, 0.01782195270061493, -0.01669495925307274, 0.024705445393919945, 0.03838404268026352, 0.0038063623942434788, -0.011667688377201557, 0.03833984583616257, -0.0011180153815075755, 0.01608726754784584, -0.025545166805386543, 0.01162349246442318, 0.005469229072332382, -0.008667899295687675, 0.022009503096342087, -0.023026006296277046, -0.0016352442326024175, 0.0076072001829743385, 0.005419508554041386, 0.018385447561740875, 0.018076077103614807, -0.005480277817696333, 0.006877969950437546, -0.0020509609021246433, -0.02235202118754387, -0.009612584486603737, 0.02061733603477478, 0.02932390570640564, 0.01848488859832287, 0.008673423901200294, -0.013534960336983204, 0.033942367881536484, -0.012452163733541965, -0.015479574911296368, 0.03115803189575672, -0.036196351051330566, -0.006353144533932209, 0.0006964289350435138, 0.017247406765818596, -0.030406702309846878, 0.02897034026682377, 0.00300807598978281, -0.01388852670788765, 0.011170485988259315, 0.012805730104446411, -0.01308195386081934, 0.017600972205400467, 0.029169220477342606, 0.00950209517031908, 0.006054823286831379, -0.003961047623306513, -0.018562231212854385, -0.05148809403181076, 0.021611740812659264, 0.022672440856695175, 0.003179334569722414, 0.0013894051080569625, 0.023048104718327522, -0.045786838978528976, 0.04393061622977257, 0.037455931305885315, -0.0034500337205827236, 0.0010641517583280802, 0.01331398170441389, -0.039842505007982254, 0.010739577002823353, -0.01009873766452074, -0.009159577079117298, -0.019346706569194794, -0.019987545907497406, 0.005422270856797695, 0.024152999743819237, 0.06863605976104736, -0.0022180762607604265, -0.028219010680913925, -0.006430487148463726, 0.011678737588226795, 0.04207438975572586, -0.026119710877537727, -0.02687104046344757, -0.0005382908857427537, 0.030141528695821762, -0.033876072615385056, 0.015943631529808044, 0.0003742830886039883, 0.020153280347585678, -0.022484607994556427, -0.010165031999349594, 0.03319103643298149, 0.011391464620828629, 0.008452444337308407, 0.034295931458473206, -0.012684191577136517, 0.0062426552176475525, 0.013811184093356133, 0.023733139038085938, -0.0080160116776824, 0.014905029907822609, -0.02437397837638855, -0.010247898288071156, 0.010225800797343254, 0.004585313145071268, -0.02406460791826248, 0.03800838068127632, 0.027975935488939285, 0.03319103643298149, -0.007248109672218561, -0.02349006198346615, 0.026186006143689156, -0.013899575918912888, -0.006308949086815119, 0.010391535237431526, -0.006690137553960085, -0.017722511664032936, 0.007673494052141905, -0.012474261224269867, 0.0009267304558306932, 0.00682272482663393, -0.017888246104121208, -0.03758851811289787, 0.020639434456825256, 0.03157789260149002, 0.0029583557043224573, 0.0027940026484429836, 0.030185723677277565, 0.020296916365623474, -0.03199775144457817, -0.0008390294387936592, 0.001017193659208715, 0.03586488217115402, -0.023092299699783325, -0.007408319041132927, -0.011402513831853867, 0.01776670664548874, 0.020661531016230583, 0.018197616562247276, -0.008888877928256989, 0.03776530176401138, 0.020871462300419807, 0.03235131874680519, 0.017589924857020378, 0.01415370125323534, 0.004800767637789249, -0.003961047623306513, 0.05316753312945366, 0.0024459606502205133, 0.0389585867524147, -0.02760026976466179, 0.004146117717027664, 0.02658376656472683, -0.012275380082428455, -0.013490764424204826, 0.0032870618160814047, -0.010292094200849533, 0.018794259056448936, 0.03199775144457817, -0.007938669063150883, -0.017954539507627487, 0.016286147758364677, -0.004041152540594339, -0.011071044951677322, 0.005701256915926933, 0.01364544965326786, -0.011126290075480938, -0.009408178739249706, 0.01591048389673233, 0.03051719255745411, 0.03414124622941017, -0.029058732092380524, -0.0021918348502367735, 0.01631929539144039, 0.021954258903861046, 0.006441536359488964, -0.002632411662489176, 0.04207438975572586, -0.03164418414235115, 0.0009833562653511763, 0.00030574508127756417, 0.02539048157632351, 0.0038919916842132807, -0.03193145617842674, -0.008397200144827366, 0.045742642134428024, 0.015037617646157742, -0.010203703306615353, -0.01185552030801773, -0.058073267340660095, 0.00980041641741991, 0.00885020662099123, 0.0005455417558550835, 0.03297005966305733, -0.019468246027827263, 0.025191599503159523, 0.0012250520521774888, -0.033279430121183395, 0.00403562793508172, 0.0016835833666846156, -0.009844612330198288, 0.0002506729797460139, -0.0024597719311714172, 0.0005817961064167321, 0.007159717846661806, -0.02486013062298298, 0.030959149822592735, -0.015048665925860405, 0.0004385050851851702, 0.0777403935790062, 0.015700554475188255, 0.0181755181401968, -0.016352441161870956, -0.008529786951839924, 0.028329500928521156, 0.014739295467734337, 0.010739577002823353, -0.013755939900875092, 0.0013244925066828728, -0.023512160405516624, -0.01633034460246563, 0.018805308267474174, -0.015623211860656738, -0.0015951917739585042, 0.017910344526171684, 0.010524122044444084, -0.022086845710873604, -0.07287885993719101, 0.007618249393999577, 0.044659845530986786, 0.009584961459040642, 0.035378728061914444, -0.036262646317481995, 0.02044055238366127, 0.01793244108557701, 0.007999437861144543, 0.02402041107416153, -0.0037455931305885315, 0.0018230762798339128, 0.027246704325079918, 0.001708443509414792, 0.017689364030957222, -0.0049609774723649025, 0.027622368186712265, -0.0044748238287866116, 0.0011090381303802133, 0.012761534191668034, 0.026672158390283585, 0.0005103232688270509, 0.012352722696959972, 0.04123467206954956, 0.012220135889947414, 0.01338027510792017, 0.0024542473256587982, 0.04010767862200737, -0.014076358638703823, 0.015413281507790089, 0.024108802899718285, -0.040306560695171356, -0.01751258224248886, -0.014927128329873085, -0.008899927139282227, -0.007795032579451799, -0.017424190416932106, -0.05833844095468521, -0.01180027611553669, 0.01661761663854122, -0.010695381090044975, -0.02795383706688881, 0.021423909813165665, 0.04024026542901993, -0.009767269715666771, -0.013800134882330894, 0.019744468852877617, -0.023799432441592216, -0.008701045997440815, 0.004096397198736668, 0.027511879801750183, -0.02426348812878132, -0.04649396985769272, 0.015523770824074745, -0.028528381139039993, 0.030141528695821762, 0.007706640753895044, -0.03246180713176727, 0.010203703306615353, -0.010159507393836975, -0.010082164779305458, -0.013203492388129234, 0.047466278076171875, 0.01799873448908329, -0.011369367130100727, 0.021015098318457603, 0.05347690358757973, -0.02377733401954174, -0.014308386482298374, 0.04225117340683937, -0.010430206544697285, -0.00977279432117939, -0.014960275031626225, -0.011921814642846584, 0.031025445088744164, -0.012209086678922176, -0.004137830808758736, -0.03093705326318741, 0.04477033391594887, 0.00834195502102375, -0.01810922473669052, 0.04300250485539436, 0.019048385322093964, -0.012319575995206833, 0.0012609611731022596, -0.021180832758545876, -0.0007478756015188992, -0.031909361481666565, 0.008457968942821026, 0.0012858211994171143, 0.04667075350880623, 0.03261649236083031, 0.0018161707557737827, -0.0027484255842864513, -0.007480137515813112, 0.004872585646808147, 0.003833984723314643, -0.014540414325892925, 0.012474261224269867, -0.015148106962442398, 0.009397129528224468, 0.022020552307367325, -0.004621222149580717, -0.01823076233267784, 0.0160320233553648, -0.014893980696797371, 0.005646012257784605, 0.012220135889947414, -0.01078377291560173, 0.0017871672753244638, -0.009468947537243366, 0.010711954906582832, 0.009319786913692951, 0.03915746882557869, -0.01740209199488163, -0.02144600637257099, -0.02098195068538189, 0.034715794026851654, 0.001024099299684167, -0.004093634895980358, 0.009021465666592121, -0.027909640222787857, 0.02144600637257099, -0.027379291132092476, 0.024042509496212006, 0.03654991835355759, -0.031246423721313477, 0.020042790099978447, -0.016131462529301643, -0.008988318964838982, -0.0181755181401968, -0.022385166957974434, 0.02151229977607727, -0.02229677513241768, 0.027445584535598755, 0.010292094200849533, 0.0073033543303608894, 0.022208383306860924, 0.005132236052304506, 0.022738734260201454, -0.014485170133411884, -0.0037953134160488844, -0.006645941641181707, 0.004933354910463095, 0.034052856266498566, -0.00013698967813979834, 0.00628685113042593, 0.026738451793789864, -0.02307020127773285, 0.025832438841462135, 0.018429644405841827, 0.02605341747403145, 0.004626746755093336, 0.005505138076841831, 0.02746768295764923, -0.03769901022315025, 0.013711743988096714, -0.0010800346499308944, -0.026141809299588203, 0.008402724750339985, -0.0011794751044362783, -0.03639523312449455, 0.0031544745434075594, 0.0035770966205745935, -0.010181604884564877, -0.0038091246969997883, -0.009557339362800121, -0.01567845605313778, -0.009165101684629917, -0.02550096996128559, 0.030008941888809204, -0.006402865052223206, 0.01608726754784584, -0.012341674417257309, -0.0166839100420475, 0.019169922918081284, -0.014938176609575748, -0.017081672325730324, -0.011015800759196281, -0.005063180346041918, 0.004135068506002426, 0.012076499871909618, -0.019998595118522644, -0.006110067944973707, 0.026561670005321503, 0.0231143981218338, 0.010706430301070213, 0.01415370125323534, 0.0031130409333854914, 0.04512390121817589, 0.029876353219151497, 0.005789648275822401, -0.0061708372086286545, 0.017788805067539215, -0.014485170133411884, 0.007899997755885124, 0.006485732272267342, -0.010286569595336914, -0.0010330765508115292, 0.01257370226085186, 0.003524614265188575, -0.013435520231723785, -0.011756080202758312, -0.0013244925066828728, 0.017844049260020256, -0.011656639166176319, -0.02168908342719078, -0.006596221588551998, -0.009673353284597397, 0.0008997986442409456, -0.009607059881091118, 0.011899716220796108, -0.0043449983932077885, 0.007944192737340927, 0.011612443253397942, 0.0014066691510379314, 0.015512722544372082, 0.001428076415322721, 0.006132165901362896, 0.0032456282060593367, -0.03533453494310379, -0.0034362226724624634, -0.0141205545514822, 0.021059293299913406, -0.015391184017062187, 0.016816498711705208, -0.0016145274275913835, -0.03372138738632202, -0.0074635641649365425, 0.006949787959456444, 0.04835019260644913, -0.03734544292092323, -0.007336501032114029, -0.01858432963490486, 0.05082515627145767, 0.0032539148814976215, -0.062360260635614395, 0.006695662159472704, -0.0282411091029644, 0.050736766308546066, -0.014684051275253296, -0.01949034258723259, 0.030296213924884796, 0.004430627916008234, -0.03272698074579239, -0.00956838857382536, 0.009640206582844257, 0.002129684668034315, 0.006905592046678066, 0.006436011753976345, -0.035422924906015396, 0.023799432441592216, 0.010446779429912567, -0.00036012663622386754, 0.044969215989112854, 0.00977279432117939, 0.015623211860656738, -0.0381188690662384, 0.033367820084095, -0.00824803952127695, 0.035776492208242416, -0.008772864006459713, -0.044195789843797684, -0.03716865926980972, -0.017556777223944664, -0.00527587253600359, 0.005872515495866537, -0.006474683061242104, 0.012286429293453693, -0.007071326486766338, -0.0042372713796794415, -0.006187410559505224, 0.018639573827385902, -0.030472997575998306, 0.033279430121183395, 0.040306560695171356, -0.01313719805330038, -0.02144600637257099, -0.01912572793662548, -0.011275450699031353, 0.013733841478824615, -0.040792714804410934, -0.03354460373520851, 0.006491256412118673, 0.04410739615559578, -0.03341201692819595, -0.004742760676890612, 0.004104684107005596, -0.009209297597408295, 0.003314684145152569, -0.00289758644066751, -0.03774320334196091, 0.017733560875058174, 0.039732012897729874, -0.011700835078954697, -0.05718935281038284, -0.019214119762182236, -0.02388782426714897, 0.010330765508115292, -0.022506706416606903, 0.02419719472527504, -0.00018955850100610405, -0.016816498711705208, -0.005604578647762537, 0.010966080240905285, -0.009678877890110016, 0.012496359646320343, 0.004383669700473547, -0.034185443073511124, -0.014043211936950684, -0.023556355386972427, -0.026075515896081924, 0.004507970530539751, -0.005162620451301336, -0.018937895074486732, -0.040859006345272064, -0.013247688300907612, 0.004875347949564457, 0.013192443177103996, 0.007706640753895044, -0.007623773533850908, 0.006060347426682711, 0.02623020112514496, -0.06306739151477814, 0.009883283637464046, 0.0005020365351811051, 0.03975411131978035, -0.014518316835165024, -0.026981528848409653, 0.02198740467429161, 0.016595518216490746, -0.020992999896407127, 0.008877829648554325, -0.0026558907702565193, 0.00709342397749424, -0.012054401449859142, -0.020528944209218025, -0.014418876729905605, -0.000356673845089972, 0.018263909965753555, 0.00479800533503294, -0.03610796108841896, -0.008275661617517471, 0.0033588800579309464, 0.04291411116719246, 0.034782085567712784, -0.026384886354207993, -0.002440436277538538, -0.026848942041397095, 0.010424681939184666, 0.011159436777234077, 0.009336360730230808, 0.02950068935751915, -6.543048220919445e-05, 0.0164960790425539, 0.007203913759440184, -0.05131131038069725, 0.047996629029512405, 0.020462650805711746, 0.01592153310775757, 0.04351075366139412, -0.008955172263085842, -0.004430627916008234, -0.015556917525827885, 0.0043035647831857204, 0.008629227988421917, 0.004148879554122686, 0.05453760549426079, 0.005695732310414314, 0.027224605903029442, -0.020131181925535202, -0.022981811314821243, -0.02353425696492195, 0.0325281023979187, 0.0019308035261929035, -0.021070342510938644, -0.0050687044858932495, -0.006645941641181707, -0.019689224660396576, -0.004284229129552841, 0.012054401449859142, 0.029301809147000313, 0.0038588447496294975, 0.011314122006297112, 0.006607270333915949, -0.015987826511263847, 0.07641451805830002, -0.007226011715829372, -0.01433048490434885, -0.04777564853429794, -0.03308054804801941, -0.01746838539838791, -0.0030412226915359497, 0.008203843608498573, 0.014673002064228058, -0.02592083066701889, 0.05166487768292427, -0.005773074924945831, -0.009181675501167774, 0.01947929337620735, -0.014474120922386646, -0.01359020546078682, -0.028152717277407646, -0.01592153310775757, 0.03663830831646919, -0.016816498711705208, -0.025279991328716278, 0.010176080279052258, 0.007745312061160803, 0.021423909813165665, -0.018672721460461617, -0.009452374652028084, 0.01657342165708542, 0.04169872775673866, -0.005215103272348642, -0.006900067441165447, -0.01236377190798521, -0.012419017031788826, 0.010076640173792839, 0.020517894998192787, 0.035179849714040756, -0.0007181816035881639, -0.01812027394771576, 0.012175939977169037, -0.03964362293481827, 0.028285305947065353, 0.029699569568037987, -0.007800556719303131, -0.04331187531352043, -0.02402041107416153, -0.013844330795109272, 0.0615205392241478, -0.015777897089719772, 0.01108209416270256, -0.01457356195896864, -0.018694818019866943, -0.00454664183780551, -0.05559830367565155, -0.001132517121732235, -0.014584610238671303, -0.05166487768292427, 0.01007111556828022, 0.02307020127773285, 0.04658236354589462, -0.008098877966403961, -0.031091738492250443, 0.010623563081026077, -0.01752362959086895, 0.03166628256440163, -0.04720110446214676, 0.017844049260020256], [0.01603584736585617, 0.0006451592780649662, 0.054345715790987015, 0.015492872335016727, -0.046092502772808075, 0.009713210165500641, -0.04131432622671127, -0.0009381392737850547, 0.007915361784398556, 0.0621645487844944, 0.028379466384649277, 0.038297802209854126, -0.033109378069639206, 0.031854502856731415, -0.04652688279747963, -0.03438838571310043, 0.016675349324941635, 0.026569552719593048, -0.0322406180202961, -0.022418813779950142, 0.04884357377886772, 0.035570863634347916, -0.04705778881907463, -0.019438486546278, -0.023806415498256683, -0.0880342647433281, 0.012971057556569576, -0.01453965064138174, 0.023589225485920906, -0.07876750081777573, 0.015022294595837593, -0.017338985577225685, -0.016458161175251007, -0.018195679411292076, -0.007306023500859737, 0.010931886732578278, -0.025942115113139153, -0.03607763722538948, -0.00043475665734149516, -0.010829324834048748, -0.04307597875595093, -0.021429393440485, 0.003948631230741739, 0.023456498980522156, 0.009628747589886189, 0.05410439148545265, -0.03216822072863579, -0.07316882908344269, -0.011643786914646626, -0.01444312185049057, 0.021912038326263428, 0.0423278771340847, 0.01204800046980381, -0.01241601724177599, 0.022816995158791542, 0.04918142408132553, 0.007993791252374649, -0.012391884811222553, 0.0006202729418873787, -0.00942362379282713, -0.01916096732020378, -0.0016394812846556306, 0.003613797016441822, -0.003993879072368145, -0.026666080579161644, -0.013598494231700897, -0.011631720699369907, -0.018617991358041763, 0.01643402874469757, -0.004781192168593407, 0.019402287900447845, 0.03320590779185295, -0.01777336560189724, 0.028862111270427704, -0.03798408433794975, 0.03281979262828827, -0.025604264810681343, 0.06129578873515129, 0.010008829645812511, 0.012488413602113724, -0.05965479835867882, 0.03499168902635574, -0.010575936175882816, -0.026473022997379303, 0.007499081082642078, 0.03846672549843788, -0.06052355840802193, -0.02150179073214531, -0.015010228380560875, -0.06023397296667099, -0.0050255306996405125, 0.006238173693418503, -0.05395960062742233, 0.04447564482688904, -0.0006685373373329639, -0.0029049136210232973, 0.01677187904715538, -0.022816995158791542, -3.8578527892241254e-05, 0.04592357575893402, -0.03530540689826012, -0.019921131432056427, -0.0637572705745697, 0.008011890575289726, 0.02982739917933941, -0.036029376089572906, -0.017447579652071, 0.05130505561828613, 0.01669948175549507, 0.0009441723232157528, 0.00040685379644855857, -0.01571006141602993, 0.024614844471216202, 0.012500479817390442, -0.014527584426105022, -0.005785694811493158, 0.03646375238895416, -0.05830339342355728, 0.015553202480077744, -0.024880297482013702, 0.011058581061661243, 0.0073422216810286045, 0.0367533415555954, -0.06148884445428848, 0.024638976901769638, -0.024373522028326988, -0.024482116103172302, -0.0203675776720047, -0.01669948175549507, -0.01976427249610424, 0.01604791358113289, -0.03175797685980797, 0.0717208981513977, -0.0420624241232872, -0.008440236561000347, -0.01404494047164917, -0.005725364666432142, -0.05005018413066864, -0.00587317394092679, 0.06452950090169907, 0.012192794121801853, 0.0010022404603660107, 0.0012254632310941815, 0.03407466784119606, -0.06752189248800278, -0.02536294236779213, -0.006011934485286474, 0.037308380007743835, 0.05589017644524574, -0.012681471183896065, -0.00848246831446886, 0.05806207284331322, -0.03508821874856949, -0.007523213513195515, -0.005182390101253986, -0.015299814753234386, 0.01910063624382019, 0.05091894045472145, -0.0023905960842967033, -0.00384305277839303, -0.0025821453891694546, 0.007161230314522982, -0.010992216877639294, -0.02210509590804577, 0.004379994235932827, 0.02415633201599121, -0.0030798721127212048, 0.006889743264764547, -0.02874145098030567, -0.01517915353178978, -0.018955843523144722, -0.0019607413560152054, -0.017954356968402863, -0.027245253324508667, -0.03559499606490135, -0.05246340110898018, 0.007553378585726023, 0.01910063624382019, 0.0018627041717991233, 0.006974205840379, -0.009459822438657284, 0.017013201490044594, -0.053476955741643906, -0.05140158534049988, -0.04247267171740532, 0.028644921258091927, -0.009670979343354702, 0.03540193662047386, -0.03718772158026695, -0.010346680879592896, 0.03820127248764038, -0.0029335706494748592, 0.006108463276177645, 0.0004362649342510849, 0.03168557956814766, -0.014865434728562832, -0.041169531643390656, -0.04348622262477875, 0.01291072741150856, -0.04452390968799591, -0.0005260065663605928, -0.06211628392338753, 0.01923336274921894, 0.0018038819544017315, -0.02801748365163803, 0.01612030901014805, -0.00988213624805212, -0.021248402073979378, 0.022394681349396706, -0.0330369807779789, 0.028331203386187553, -0.004431275185197592, 0.007637841161340475, 0.07567857950925827, -0.00951411947607994, -0.011722216382622719, -0.003607763908803463, 0.04155564680695534, 0.04558572545647621, 0.03615003451704979, -0.008247178979218006, -0.0023016086779534817, 0.03631896153092384, -0.049229688942432404, -0.0756303146481514, 0.014020808041095734, -0.01181874517351389, -0.04428258538246155, -0.013682957738637924, -0.09754235297441483, -0.025000959634780884, 0.021743111312389374, 0.004916935693472624, -0.029127566143870354, 0.004585118032991886, -0.013634692877531052, 0.027969220653176308, -0.012500479817390442, -0.009574450552463531, -0.022937655448913574, 0.024880297482013702, 0.009972631931304932, 0.010244118981063366, -0.05053282529115677, 0.02763136848807335, -0.0011771988356485963, 0.010551804676651955, -0.025242282077670097, 0.04920555651187897, -0.03313351050019264, 0.014153535477817059, -0.00635883491486311, 0.0449824221432209, -0.05782075226306915, 0.007680072449147701, -0.006017967592924833, 0.037308380007743835, -0.042231351137161255, -0.011106844991445541, 0.02210509590804577, 0.002105534542351961, 0.0356915220618248, -0.010147590190172195, -0.02275666408240795, -0.05589017644524574, -0.019655676558613777, 0.006141644902527332, 0.0023604307789355516, 0.0005248753586784005, 0.0367533415555954, -0.0003016525006387383, 0.031371861696243286, -0.0008868583245202899, -0.026135172694921494, -0.10627821087837219, 0.03779102489352226, 0.019788403064012527, 0.018147414550185204, 0.017218325287103653, -0.01012345775961876, -0.05955826863646507, -0.015227418392896652, -0.015106757171452045, -0.05458703637123108, 0.02350476197898388, 0.010310482233762741, -0.00595763698220253, -0.02683500573039055, 0.020886419340968132, 0.020681295543909073, 0.011438663117587566, 0.00516127422451973, 0.05159464478492737, -0.0003212599258404225, 0.03935961797833443, 0.041024740785360336, 0.027317650616168976, -0.003873218083754182, -0.020415840670466423, -0.03373681381344795, 0.044306717813014984, 0.03400227054953575, 0.007722304202616215, -0.014093204401433468, -0.029923927038908005, 0.02223782241344452, -0.0024946662597358227, -0.005725364666432142, -0.03576391935348511, 0.009073707275092602, 0.018738653510808945, 0.027269385755062103, -0.025845585390925407, -0.04799894616007805, 0.035908713936805725, 0.0013054012088105083, -0.01324857771396637, 0.000857447215821594, 0.048819441348314285, 0.00921849999576807, 0.004386027343571186, -0.014201799407601357, 0.006551892496645451, 0.01497402973473072, 0.004995365161448717, -0.020319312810897827, -0.01224709115922451, 0.04951927438378334, 0.018135348334908485, 0.03183037042617798, -0.053476955741643906, 0.028451863676309586, 0.0005410891608335078, -0.010461308993399143, -0.010008829645812511, -0.022587738931179047, -0.041434988379478455, 0.012035935185849667, -0.004778175614774227, 0.030840951949357986, -0.041097138077020645, -0.022044764831662178, -0.024856165051460266, 0.034774500876665115, 0.02250327728688717, 0.056276291608810425, 0.0338333435356617, 0.005094910506159067, 0.015661798417568207, 0.07220353931188583, 0.024976827204227448, -0.009453789331018925, -0.017423449084162712, -0.023456498980522156, -0.06573611497879028, -0.018014688044786453, -0.015878988429903984, -0.0012397917453199625, 0.0008340691565535963, 0.013924279250204563, 0.0063528018072247505, 0.0012910726945847273, 0.02661781571805477, 0.04331729933619499, 0.03453317657113075, -0.015468739904463291, -0.04990538954734802, -0.04322076961398125, -0.061199259012937546, -0.01493783202022314, 0.027124593034386635, 0.0045519364066421986, 0.01750791072845459, 0.005912389140576124, 0.031589049845933914, 0.04459630697965622, 0.0093210618942976, 0.01771303452551365, 0.023251375183463097, 0.02490442991256714, 0.04990538954734802, 0.05395960062742233, 0.04746803641319275, 0.01527568232268095, 0.008910815231502056, 0.03002045676112175, -0.031589049845933914, -0.019872866570949554, -0.024047737941145897, 0.019052371382713318, 0.016421962529420853, -0.039045900106430054, -0.012035935185849667, 0.016530556604266167, -0.0417969711124897, 0.024976827204227448, 0.01969187520444393, 0.026135172694921494, 0.012096265330910683, -0.030430704355239868, -0.024180464446544647, -0.0407351553440094, -0.02144145965576172, 0.010105358436703682, -0.01012345775961876, 0.021079476922750473, -0.03907003253698349, -0.0105156060308218, -0.005625819321721792, 0.012753867544233799, 0.027317650616168976, -0.016192706301808357, 0.031926900148391724, 0.05830339342355728, 0.0005105468444526196, 0.012681471183896065, 0.018871380016207695, 0.015722127631306648, -0.01977633871138096, -0.04112127050757408, 0.005791727919131517, 0.02389087714254856, -0.003728424897417426, 6.721194949932396e-05, -0.04966406896710396, 0.002099501434713602, 0.06105446442961693, -0.014310394413769245, 0.01563766598701477, -0.0040662758983671665, -0.047347377985715866, 0.003321194089949131, -0.007879163138568401, 0.04459630697965622, -0.035233013331890106, -0.01061213482171297, 0.023854680359363556, 0.00020719756139442325, -0.02982739917933941, -0.013176181353628635, -0.020995013415813446, -0.06361247599124908, 0.028258806094527245, -0.0039968956261873245, -0.042569201439619064, -0.02835533581674099, -0.0047389608807861805, 0.024783769622445107, 0.021586252376437187, -0.004054209683090448, 0.021067410707473755, -0.03253020718693733, -0.03629482910037041, -0.014250064268708229, -0.0035323507618159056, -0.04080754891037941, -0.015251550823450089, -0.03209582716226578, 0.001021093688905239, -0.014551716856658459, 0.013670891523361206, 0.015746260061860085, 0.05646934732794762, 0.04971233010292053, 0.0011636244598776102, -0.011094778776168823, 0.02816227823495865, -0.027655500918626785, 0.005692182574421167, -0.05130505561828613, 0.018726587295532227, -0.0238184817135334, -0.02355302684009075, -0.0026123106945306063, -0.011903207749128342, -0.04585117846727371, -0.007137098349630833, 0.017351051792502403, -0.02702806331217289, -0.005414662417024374, -0.0014743265928700566, 0.0399387925863266, -0.04587531089782715, -0.03629482910037041, 0.07080387324094772, 0.05941347777843475, 0.032771527767181396, 0.023335836827754974, -0.030261779204010963, -0.007028503343462944, -0.030696159228682518, 0.01175238098949194, 0.00627437187358737, -0.012120397761464119, 0.002972785383462906, 0.026979800313711166, 0.01527568232268095, -0.021212203428149223, 0.002693756716325879, 0.013055520132184029, -0.006063215434551239, -0.01563766598701477, 0.014262130483984947, 0.0052487533539533615, 0.01204800046980381, 0.0033392931800335646, -0.001929067773744464, 0.030503101646900177, -0.0011342134093865752, 0.01703733392059803, -0.04129019379615784, 0.022937655448913574, -0.009103872813284397, -0.023540960624814034, -0.03952854499220848, -0.012138496153056622, 0.030768554657697678, 0.026593685150146484, -0.017532043159008026, -0.004992349073290825, -0.01630130037665367, 0.029972191900014877, 0.010654366575181484, 0.01776129938662052, -0.006407099310308695, -0.027124593034386635, -0.016337499022483826, -0.06288851052522659, -0.005013464484363794, -0.012084199115633965, -0.018690388649702072, -0.022189557552337646, 0.005390529986470938, -0.03576391935348511, 0.0047449939884245396, -0.0014961963752284646, -0.0038611521013081074, 0.008669492788612843, -0.05589017644524574, -0.0033845410216599703, 0.008313543163239956, -0.022008566185832024, 0.010256185196340084, -0.018738653510808945, 0.0032699131406843662, 0.010075193829834461, 0.009435690008103848, 0.024928562343120575, 0.012584942393004894, -0.04242440685629845, -0.00494408467784524, 0.0024886331520974636, 0.009453789331018925, 0.022117162123322487, 0.015396343544125557, 0.02029518038034439, 0.0071189990267157555, -0.052559930831193924, -0.014201799407601357, -0.03434012085199356, -0.01736311800777912, 0.04565812274813652, 0.023999473080039024, -0.029175829142332077, -0.005812843795865774, 0.05159464478492737, 0.010159656405448914, -0.0305513646453619, 0.004790241830050945, -0.0063467686995863914, 0.007420651614665985, 0.031589049845933914, -0.026183437556028366, 0.033447228372097015, 0.01383981667459011, 0.04691299796104431, 0.04085581377148628, -0.04254506900906563, 0.011704117059707642, 0.005037596914917231, -0.01008122693747282, 0.01487750094383955, -0.023070383816957474, 0.01696493662893772, -0.023456498980522156, 0.01344163529574871, -0.023999473080039024, -0.02104327827692032, -0.027438310906291008, 0.06626702100038528, -0.018883446231484413, 0.019595345482230186, -0.008971145376563072, -0.01111891120672226, 0.02736591547727585, 0.03207169473171234, -0.0151429558172822, -0.019824601709842682, -0.031202934682369232, -0.013948411680758, 0.02290145866572857, 0.017785431817173958, 0.024482116103172302, 0.02276873029768467, -0.05178770050406456, -0.010901721194386482, -0.001671154866926372, -0.026907403022050858, 0.029730869457125664, 0.0015746260760352015, 0.03195103257894516, -0.02801748365163803, -0.030334174633026123, 0.0032457809429615736, 0.031854502856731415, 0.013067586347460747, -0.03593284636735916, -0.003441855078563094, -0.006606189534068108, -0.03417119383811951, -0.06988684833049774, 0.03680160641670227, 0.0024886331520974636, -0.024783769622445107, -0.03663267940282822, -0.013586428947746754, 0.02144145965576172, 0.014406923204660416, -0.02741417847573757, -0.010600068606436253, -0.015203285962343216, -0.04413779452443123, -0.008180815726518631, -0.023927075788378716, -0.02362542413175106, 0.01091982051730156, 0.0076740398071706295, 0.015468739904463291, -0.028717318549752235, -0.00977957434952259, -0.007064701523631811, 0.02203269861638546, 0.01577039249241352, -0.059606533497571945, 0.0203675776720047, 0.034122928977012634, -0.020934684202075005, -0.00898321159183979, 0.013176181353628635, -0.01697700284421444, -0.018087083473801613, 0.0008159700082615018, -0.030044589191675186, -0.009761475026607513, 0.011028415523469448, -0.0056047034449875355, -0.06255066394805908, -0.019052371382713318, 0.013091718778014183, 0.029175829142332077, -0.018955843523144722, 0.048819441348314285, 0.021755177527666092, 0.001820472883991897, 0.022551540285348892, 0.03207169473171234, 0.013079652562737465, 0.0027872691862285137, 0.00746891601011157, -0.012572876177728176, -0.05376654118299484, 0.010775026865303516, 0.023661622777581215, -0.0364878848195076, 0.02189997211098671, -0.015987582504749298, -0.031444255262613297, -0.01584278978407383, 0.006684619467705488, 0.04411366209387779, 0.015951383858919144, 0.006750982720404863, -0.018992042168974876, 0.0238184817135334, 0.00595462042838335, -0.0143465930595994, 0.02823467366397381, 0.0028144177049398422, -0.024192530661821365, 0.03849085792899132, -0.005444827489554882, 0.0038611521013081074, -0.0020240882877260447, 0.025242282077670097, 0.030454836785793304, 0.03846672549843788, 0.0042894985526800156, -0.008168749511241913, -0.005079828202724457, -0.022213689982891083, 0.0022397697903215885, -0.010551804676651955, 0.004208052530884743, -0.05531100183725357, -0.04273812472820282, -0.029272358864545822, -0.02243087999522686, 0.008500567637383938, 0.02529054507613182, 0.017326919361948967, -0.03774276003241539, -0.013996675610542297, -0.028910376131534576, -0.009140070527791977, 0.01414146926254034, -0.004150738473981619, 0.013429569080471992, -0.029055168852210045, -0.0015271158190444112, 0.00839197263121605, -0.009140070527791977, 0.025338809937238693, -0.01527568232268095, 0.025000959634780884, -0.0006870135548524559, -0.02122426964342594, 0.02782442606985569, 0.009894201532006264, -0.018979975953698158, -0.025073355063796043, -0.0016605970449745655, -0.03882870823144913, -0.011987670324742794, -0.0036318961065262556, -0.03506408631801605, 0.005818876903504133, -0.0057283807545900345, 0.01294692512601614, -0.012271223589777946, -0.0031251199543476105, -0.025797322392463684, -0.03846672549843788, 0.008500567637383938, -0.028041616082191467, 0.01072072982788086, 0.007963625714182854, -0.04293118417263031, -0.007209494709968567, 0.026135172694921494, -0.0022729516495019197, 0.0046454486437141895, 0.008192881941795349, -0.05202902480959892, -0.01990906521677971, 0.01616857387125492, -0.027317650616168976, 0.005073795095086098, -0.038901105523109436, 0.01383981667459011, 0.028644921258091927, -0.0099183339625597, -0.015311880968511105, -0.009833871386945248, 0.009864036925137043, -0.004226151388138533, 0.0037706561852246523, 0.009152136743068695, -0.006859577726572752, 0.019269561395049095, 0.01863005757331848, 0.02748657576739788, -0.005306067410856485, -0.004364911466836929, 0.02343236654996872, 0.021212203428149223, -0.008023956790566444, -0.03255433589220047, 0.008959079161286354, 0.025145752355456352, -0.008959079161286354, -0.008156683295965195, -0.02862078882753849, -0.025990379974246025, 0.00017231899255421013, -0.013393371365964413, 0.006811313331127167, -0.041965894401073456, 0.012035935185849667, -0.01334510650485754, 0.0019818569999188185, -0.023721951991319656, 0.008271311409771442, -0.02169484831392765, 0.013453701511025429, -0.01709766313433647, -0.010968084447085857, 0.004413175862282515, -0.04884357377886772, -0.03672920912504196, -0.0029184878803789616, -0.032650865614414215, -0.004250283818691969, -0.028596656396985054, 0.0012269715080037713, 0.08986831456422806, -0.005984785500913858, -0.00378573895432055, 0.02362542413175106, -0.012403951026499271, -0.009809738956391811, -0.02002972550690174, 0.02256360650062561, -0.001728468807414174, -0.002894355682656169, -0.02615930512547493, -0.022660136222839355, 0.0025323727168142796, 0.004295531660318375, -0.00888064969331026, -0.01184890978038311, -0.0023181994911283255, -0.023878812789916992, -0.0028415664564818144, -0.022455012425780296, 0.018617991358041763, -0.026183437556028366, -0.014527584426105022, -0.0028868145309388638, -0.016023781150579453, 0.01224709115922451, -0.015191219747066498, 0.014237998053431511, -0.023673688992857933, -0.012295356020331383, 0.01364675909280777, 0.005402596201747656, -0.04278638958930969, -0.03289218991994858, -0.005613753106445074, -0.006126562133431435, 0.061392318457365036, -0.012657338753342628, -0.07017643749713898, -0.022382615134119987, -0.0021824557334184647, 0.006557925138622522, -0.013031387701630592, -0.008669492788612843, -0.042376141995191574, -0.0003691472520586103, 0.017990555614233017, -0.005652967840433121, -0.014491385780274868, 0.025049222633242607, 0.010756928473711014, -0.003972763195633888, 0.017013201490044594, -0.03733251243829727, -0.0007760010776109993, -0.008023956790566444, -0.01161362137645483, 0.011529158800840378, 0.002085926942527294, -0.026376495137810707, 0.04182110354304314, 0.004105490632355213, -0.010527672246098518, -0.009399492293596268, 0.017073530703783035, 0.0030738390050828457, 0.009073707275092602, -0.010575936175882816, -0.01964361034333706, 0.00019626265566330403, -0.017954356968402863, -0.016747746616601944, -0.0029018970672041178, 0.0019471668638288975, 0.0415315143764019, 0.035981111228466034, 0.005405612755566835, 0.01849733106791973, 0.009701143950223923, 0.010286349803209305, -0.030454836785793304, -0.007975691929459572, -0.0380806103348732, 0.04377581179141998, 0.03660854697227478, 0.014069072902202606, 0.03240954503417015, -0.004690696485340595, 0.022141292691230774, -0.0006078297737985849, -0.011046514846384525, 0.014201799407601357, -0.03540193662047386, 0.011987670324742794, 0.0015195744344964623, -0.004114540293812752, -0.04884357377886772, -0.004808340687304735, -0.012277256697416306, 0.010165689513087273, -0.0035745820496231318, 0.01155329030007124, -0.0354260690510273, 0.026448890566825867, 0.01690460555255413, 0.02862078882753849, -0.011161142028868198, -0.015504938550293446, -0.005969703197479248, -0.0030979712028056383, 0.04377581179141998, 0.008868583478033543, 0.005490075331181288, -0.0017737166490405798, 0.008609162643551826, -0.04322076961398125, 0.057000257074832916, -0.028982771560549736, -0.002043695654720068, -0.027583103626966476, 0.020198650658130646, -0.0047691259533166885, 0.02669021300971508, 0.03762209787964821, 0.006974205840379, -0.0465751476585865, -0.042303744703531265, -0.011879075318574905, 0.008844451047480106, 0.04920555651187897, -0.00207235268317163, -0.042569201439619064, 0.005719331558793783, 0.008048088289797306, 0.0017495844513177872, -0.026448890566825867, -0.003695243038237095, -0.01916096732020378, 0.006594123784452677, -0.055407531559467316, -0.007818832993507385, 0.02010212279856205, 0.004515737760812044, 0.004232184495776892, 0.007396519184112549, -0.009797672741115093, 0.042834654450416565, -0.057675957679748535, 0.03175797685980797, 0.008971145376563072, 0.007245692890137434, -0.023577159270644188, 0.01537221111357212, -0.02216542512178421, 0.00023962520936038345, -0.024638976901769638, 0.018593860790133476, 0.04618903249502182, 0.022382615134119987, -0.023178977891802788, 0.03532953932881355, 0.027655500918626785, 0.03388160839676857, 3.883775934809819e-05, -0.013236511498689651, 0.016820143908262253, -0.022913523018360138, -0.008319576270878315, 0.016204772517085075, 0.0019456585869193077, 0.008168749511241913, -0.004790241830050945, 0.0023272489197552204, 0.009707177057862282, 0.03566739335656166, -0.003351359162479639, -0.012657338753342628, 0.0297550018876791, -0.0179784893989563, 0.014732708223164082, 0.0011455253697931767, 0.028982771560549736, 0.023734018206596375, -0.02410806715488434, 0.01618064008653164, 0.005839992314577103, 0.050484564155340195, -0.014998162165284157, -0.021151872351765633, 0.036777473986148834, -0.014177667908370495, 0.008953046053647995, -0.028596656396985054, -0.0016349565703421831, 0.035377804189920425, 0.023311704397201538, 0.018931711092591286, 0.018062951043248177, -0.0075352792628109455, 0.04894009977579117, -0.00918230228126049, 0.01032254844903946, 0.021670715883374214, 0.028596656396985054, -0.0037314414512366056, -0.004473506473004818, 0.03960093855857849, -0.008156683295965195, -0.02509748749434948, 0.01631336659193039, -0.018087083473801613, 0.022937655448913574, 0.012572876177728176, -0.04437911510467529, -0.043703414499759674, 0.006515693850815296, -0.0009735834319144487, 0.012307422235608101, 0.004826440010219812, 0.028307070955634117, -0.010026928968727589, -0.009972631931304932, 0.0302859116345644, 0.03190276771783829, 0.041024740785360336, -0.006407099310308695, 0.02148972451686859, 0.023384101688861847, 0.03376094624400139, 0.033254172652959824, 0.011854942888021469, 0.048891838639974594, -0.016759812831878662, -0.016952870413661003, -0.008615195751190186, 0.03547433391213417, 0.017616506665945053, -0.024313190951943398, -0.01271766982972622, 0.057675957679748535, 0.011788579635322094, 0.007046602200716734, -0.013393371365964413, -0.034364253282547, -0.002399645745754242, -0.002422269666567445, -0.006467429455369711, 0.01951088383793831, -0.05569711700081825, 0.02057269960641861, 0.010545771569013596, -0.04348622262477875, 0.006847511511296034, -0.020126255229115486, 0.00637090066447854, 0.010292382910847664, 0.006666520144790411, -0.002055761869996786, -0.025942115113139153, -0.0020844186656177044, -0.005453877151012421, 0.00828337762504816, -0.008554864674806595, 0.0809393972158432, 0.0018943777540698647, 0.022587738931179047, 0.03508821874856949, 0.0025278478860855103, 0.01889551244676113, 0.028114013373851776, 0.005324166733771563, 0.025049222633242607, 0.02109154313802719, -0.006220074370503426, 0.015130889602005482, -0.016144441440701485, -0.010207920335233212, -0.011535191908478737, -0.01937815733253956, 0.01008726004511118, -0.018545595929026604, -0.051691170781850815, 0.022068897262215614, 0.01497402973473072, -0.027124593034386635, 0.0310822743922472, -0.047371506690979004, 0.0031824337784200907, 0.019197165966033936, 0.0020844186656177044, 0.013912213034927845, 0.02536294236779213, 0.004684663377702236, 0.037163589149713516, 0.0015520021552219987, 0.021284600719809532, 0.0043830107897520065, 0.03149252012372017, -0.004455407615751028, -0.040228378027677536, -0.021067410707473755, 0.011722216382622719, 0.010310482233762741, 0.0038973502814769745, 0.01684427633881569, 0.009550318121910095, 0.01231345534324646, 0.0035715654958039522, 0.03735664486885071, -0.034098800271749496, -0.011161142028868198, -0.01260907482355833, -0.007661973591893911, -0.04640622064471245, -0.019221296533942223, -0.004702762234956026, -0.02076575718820095, -0.03339896351099014, -0.00030768555006943643, -0.00982180517166853, 0.003972763195633888, 0.007420651614665985, -0.010986183770000935, 0.04568225517868996, 0.016144441440701485, -0.018328405916690826, -0.013610560446977615, -0.0034539210610091686, 0.004766109399497509, -0.020415840670466423, -0.016072046011686325, 0.019209230318665504, 0.009845937602221966, -0.028644921258091927, 0.006310570519417524, -0.011571389622986317, 0.034315988421440125, 0.030503101646900177, -0.02383054792881012, -0.019812535494565964, -0.0286931861191988, -0.012705603614449501, 0.03359202295541763, 0.06124752387404442, 0.01201783586293459, 0.003450904507189989, 0.025604264810681343, 0.03289218991994858, -0.020584765821695328, 0.0017601423896849155, 0.05376654118299484, -0.012693537399172783, -0.014660311862826347, -0.02929649129509926, 0.012337586842477322, 0.009725276380777359, -0.009791640564799309, -0.007613709196448326, 0.013779486529529095, 0.02257567271590233, -0.012307422235608101, 0.002734479960054159, 0.018617991358041763, 0.01830427348613739, -0.01750791072845459, 0.017869893461465836, -0.018473198637366295, 0.0029697688296437263, -0.02574905753135681, 0.0021236336324363947, -0.0003333260247018188, 0.03446078300476074, 0.029199961572885513, 0.008669492788612843, 0.008476435206830502, -0.007812799885869026, 0.006437264382839203, 0.021284600719809532, -0.021079476922750473, -0.020729560405015945, 0.004983299411833286, -0.013019321486353874, 0.0178457610309124, 0.005432761739939451, 0.0021477658301591873, -0.002278984524309635, -0.020476171746850014, 0.0063528018072247505, 0.029586076736450195, -0.003131152829155326, -0.030382439494132996, 0.012367752380669117, -0.001993922982364893, -3.150854536215775e-05, 0.03448491543531418, -0.020681295543909073, -0.010588002391159534, 0.017290720716118813, -0.0005354331806302071, 0.0016440061153843999, -0.03520888090133667, 0.04112127050757408, -0.03788755461573601, 0.02961020916700363, -0.029658474028110504, -0.013212379068136215, 0.01669948175549507, 0.0033996235579252243, 0.0063467686995863914, 0.015022294595837593, -0.017218325287103653, -0.026111040264368057, -0.010895688086748123, 0.033109378069639206, 0.015685930848121643, -0.002450926462188363, 0.008036023005843163, 0.023878812789916992, 0.01254874374717474, 0.013876015320420265, 0.03376094624400139, -0.027920955792069435, 0.033302437514066696, -0.01803881861269474, 0.010539738461375237, 0.01963154412806034, -0.006443297490477562, 0.0020467122085392475, 0.02016245387494564, -0.020017659291625023, -0.005073795095086098, 0.024880297482013702, 0.018581794574856758, 0.01717006042599678, -0.019884932786226273, 0.017676835879683495, -0.00018165136862080544, 0.005619786214083433, 0.007921394892036915, -0.031106404960155487, -0.011999736540019512, -0.015818657353520393, -0.04133845865726471, 0.01610824279487133, 0.0030120001174509525, -0.024783769622445107, 0.027655500918626785, -0.03446078300476074, -0.00454288674518466, -0.02903103642165661, -0.0010595544008538127, 0.02129666693508625, 0.0008272819686681032, 0.0014894092455506325, 0.007432717364281416, -0.004711811896413565, 0.029441284015774727, -0.022141292691230774, -0.0099183339625597, -0.01936609111726284, 0.01937815733253956, -0.026376495137810707, -0.0010173229966312647, -0.009345194324851036, -0.009260731749236584, 0.05038803443312645, 0.03279566019773483, 0.0005576800322160125, 0.024976827204227448, 0.005330199841409922, 0.055021416395902634, -0.012156595475971699, -0.020053857937455177, -0.0004456915776245296, -0.007004370912909508, 0.007613709196448326, -0.006757015828043222, 0.00026074086781591177, -0.008500567637383938, -0.012186761014163494, -0.013176181353628635, 0.005284951999783516, 0.0057977610267698765, 0.014201799407601357, -0.0015391819179058075, -0.0073723872192204, -0.03668094426393509, -0.00968907866626978, -0.02642475813627243, -0.010931886732578278, -0.03161318227648735, -0.020995013415813446, 0.0310822743922472, 0.003158301580697298, 0.027003930881619453, 0.01650642417371273, -0.003137185936793685, -0.012597008608281612, -0.020319312810897827, -0.015794524922966957, -0.04227961599826813, -0.006913875229656696, -0.00888064969331026, 0.006280404981225729, 0.004431275185197592, 0.0093210618942976, 0.04746803641319275, -0.007752469275146723, -0.011673951521515846, 0.004847555886954069, 0.011450729332864285, 0.03812887519598007, -0.030044589191675186, -0.028331203386187553, -0.04766109585762024, 0.04744390398263931, 0.0016741714207455516, -0.03952854499220848, -0.014237998053431511, -0.006630321964621544, 0.047830019146203995, -0.03501582145690918, -0.022322284057736397, 0.056951992213726044, 0.01736311800777912, -0.027727898210287094, -0.0034267723094671965, 0.026738477870821953, 0.012476347386837006, 0.013719155453145504, -0.0048385062254965305, 0.009351227432489395, 0.018087083473801613, 0.017013201490044594, -0.02816227823495865, 0.026400627568364143, 0.0009140070760622621, 0.011293869465589523, -0.015697995200753212, 0.011342134326696396, 0.028403598815202713, 0.005622802767902613, -0.032650865614414215, -0.036512017250061035, -0.013622626662254333, -0.009164202958345413, 0.013200313784182072, -0.016989069059491158, 0.002363447332754731, -0.009200401604175568, 0.0010391928954049945, -0.025845585390925407, 0.027317650616168976, 0.015215352177619934, -0.03735664486885071, 0.005453877151012421, 0.0028249756433069706, 0.023456498980522156, -0.027993351221084595, -0.013453701511025429, -0.005571521818637848, -0.018135348334908485, -0.028500128537416458, -0.011040481738746166, -0.007384452968835831, 0.030937479808926582, -0.026593685150146484, -0.008114452473819256, 0.0056559843942523, 0.02017452009022236, 0.00040685379644855857, -0.0004471998254302889, -0.02148972451686859, 0.019547082483768463, 0.013103784993290901, 0.015891052782535553, -0.014901633374392986, -0.02469930611550808, -0.014865434728562832, 0.003236731281504035, -0.0021417327225208282, -0.004199002869427204, -0.014672377146780491, -0.0271004606038332, -0.0061838761903345585, -0.0034056566655635834, 0.017857827246189117, 0.01304345391690731, -0.04481349512934685, -0.015287748537957668, -0.008566930890083313, -0.026111040264368057, -0.023927075788378716, 0.011209406889975071, 0.012277256697416306, -0.03996292129158974, -0.04691299796104431, -0.005450860597193241, 0.014636179432272911, 0.013103784993290901, -0.0022759682033210993, -0.008446269668638706, -0.023878812789916992, 0.012440148741006851, -0.05777248740196228, 0.02623170055449009, 0.020596832036972046, 0.05637281760573387, -0.004256316926330328, -0.007842965424060822, 0.026279965415596962, -0.03253020718693733, 0.015203285962343216, -0.015167087316513062, -0.0005188423092477024, -0.0020316296722739935, -0.022985920310020447, -0.003321194089949131, -0.003378507914021611, 0.009948499500751495, 0.010799159295856953, -0.022720465436577797, -0.037766892462968826, 0.005948587320744991, -0.0009102364419959486, 0.020874353125691414, 0.024482116103172302, -0.02596624754369259, 0.008940979838371277, 0.015866922214627266, 0.024856165051460266, 0.00046906963689252734, -0.0017857827479019761, -0.003456937614828348, -0.010111391544342041, -0.006129578687250614, 0.014286261983215809, -0.01863005757331848, 0.008204948157072067, 0.014805104583501816, -0.011028415523469448, 0.011251638643443584, -0.008910815231502056, 0.0035836317110806704, -0.00839197263121605, 0.0186421237885952, 0.01155329030007124, 0.023516828194260597, 0.03161318227648735, 0.012922792695462704, 0.03665681183338165, -0.024011539295315742, -0.006129578687250614, -0.009876103140413761, 0.04066275805234909, 0.01610824279487133, -0.022117162123322487, -0.01955914869904518, -0.003640945767983794, -0.040445566177368164, -0.002500699134543538, 0.012633206322789192, 0.019716007634997368, 0.006654453929513693, 0.005830942653119564, -0.027438310906291008, -0.03472623601555824, 0.07524419575929642, 0.01896790973842144, -0.002680182456970215, -0.03009285405278206, -0.01870245486497879, -0.017930224537849426, 0.027196988463401794, -0.0031251199543476105, 0.022346416488289833, -0.026738477870821953, 0.03938375040888786, 0.02284112758934498, -0.02315484546124935, 0.01061816792935133, 0.0026967732701450586, -0.013755354098975658, -0.04307597875595093, 0.012367752380669117, 0.0027043146546930075, 0.009351227432489395, -0.014322460629045963, -0.0005244982894510031, 0.02369781956076622, 0.0182439424097538, -0.010781059972941875, -0.007185362745076418, -0.00719139538705349, 0.012090232223272324, 0.03933548554778099, -0.01843699999153614, -0.03841846063733101, -0.0045760683715343475, 0.026641948148608208, 0.01241601724177599, 0.010672465898096561, -0.022044764831662178, 0.00647346256300807, 0.024530380964279175, 0.00515825767070055, 0.03487103059887886, 0.01890757866203785, -0.03180623799562454, -0.026279965415596962, 0.006678586360067129, 0.013972544111311436, 0.05053282529115677, -0.034581441432237625, 0.024373522028326988, -0.02249121107161045, -0.0025761122815310955, 0.015106757171452045, -0.04599597305059433, -0.020524436607956886, -0.0218275748193264, -0.03421945869922638, 0.0013853390701115131, 0.001929067773744464, 0.01765270344913006, 0.013960477896034718, -0.03668094426393509, 0.03448491543531418, -0.010226019658148289, 0.02536294236779213, -0.05323563143610954, 0.03619829937815666], [-0.008636855520308018, 0.0006764575373381376, 0.05152618885040283, 0.02339068241417408, -0.01858174428343773, 0.006264445371925831, -0.00045244107604958117, 0.04106193408370018, 0.031213225796818733, 0.04054898023605347, 0.020441200584173203, 0.0403950959444046, 0.004225455224514008, 0.006524128373712301, -0.04526815190911293, -0.030212966725230217, -0.032085247337818146, 0.030033431947231293, 0.04647359624505043, 0.01202234998345375, -0.0007594117196276784, 0.02987954579293728, -0.00729035260155797, 0.0030520737636834383, -0.02767384611070156, 0.014965420588850975, -0.015068011358380318, -0.023480450734496117, 0.04437048360705376, -0.04603758454322815, 0.022300656884908676, -0.02380104549229145, 0.025981098413467407, 0.002673770533874631, 0.047755979001522064, 0.016363218426704407, -0.037779029458761215, 0.0003388298791833222, -0.013465031050145626, -0.0035265558399260044, -0.04747385531663895, 0.05596323683857918, 0.0003031635715160519, -0.05401401221752167, -0.08622749894857407, 0.04157488793134689, 0.021479930728673935, -0.04644794762134552, 0.012112116441130638, 0.029366591945290565, -0.046576183289289474, 0.01976153627038002, 0.006867166142910719, -0.027930323034524918, 0.03526555746793747, 0.040497686713933945, 0.005802787374705076, 0.013093139976263046, 0.04767903685569763, 0.005248156376183033, 0.029366591945290565, 0.0013985999394208193, 0.028597163036465645, 0.04347281530499458, -0.019453763961791992, -0.02685311995446682, 0.003153061494231224, 0.03865105286240578, -0.025019310414791107, -0.019966717809438705, 0.05519380420446396, 0.06570935249328613, -0.047012194991111755, -0.001939605688676238, -0.017145473510026932, 0.019915422424674034, 0.007976428605616093, 0.021197807043790817, 0.013259850442409515, 0.03254690393805504, -0.010990030132234097, -0.014644824899733067, 0.010316778905689716, -0.010336014442145824, 0.01531166397035122, -0.014888477511703968, -0.0374969057738781, -0.008181609213352203, -0.040061675012111664, -0.04747385531663895, 0.023159854114055634, 0.07571195065975189, -0.0020486083813011646, 0.04998732730746269, 0.0423186719417572, -0.0033758757635951042, 0.012669953517615795, -0.03344457224011421, -0.03177747502923012, 0.033572811633348465, -0.0025407231878489256, -0.04219043254852295, -0.021364517509937286, -0.02644275687634945, 0.022364776581525803, -0.0591435469686985, -0.02190311811864376, 0.02122345380485058, -0.00454284530133009, -0.024839777499437332, -0.032059598714113235, -0.004546050913631916, -0.03724043071269989, 0.04806375131011009, 0.00017292145639657974, -0.008662503212690353, -0.003177106147632003, -0.021620992571115494, -0.013093139976263046, -0.027160892263054848, 0.03960001468658447, -0.003411141224205494, -0.02009495720267296, -0.05178266391158104, -0.004023479763418436, -0.014606352895498276, -0.0514492429792881, -0.01577332243323326, -0.02086438611149788, -0.023352211341261864, 0.007649420294910669, -0.09079278260469437, 0.026596643030643463, -0.032059598714113235, -0.027443015947937965, -0.013298321515321732, 0.00595667352899909, -0.0027988029178231955, -0.016529928892850876, -0.006158648990094662, 0.014260109513998032, -0.0036804419942200184, -0.014542234130203724, -0.02146710827946663, -0.06817153096199036, 0.015734851360321045, -0.028520219027996063, 0.034752603620290756, 0.014503762125968933, 0.0015140145551413298, 0.006892813835293055, -0.0013112375745549798, 0.016965940594673157, -0.0567326657474041, -0.01239424105733633, 0.09617879986763, 0.025442497804760933, -0.0003095754946116358, -0.0066427490673959255, 0.027109596878290176, -0.027519959956407547, -0.057707276195287704, 0.02319832518696785, -0.0016478634206578135, 0.024673067033290863, -0.018722806125879288, -0.05380883067846298, 0.02457047626376152, -0.0665813758969307, 0.011483748443424702, -0.0016719080740585923, -0.028853638097643852, -0.007149290759116411, 0.015183426439762115, 0.0016558782663196325, -0.02959742210805416, -0.04288291931152344, 0.023095734417438507, 0.0053828065283596516, 0.010310366749763489, -0.004921148531138897, -0.0010555622866377234, 0.01591438427567482, -0.03572721779346466, -0.013849746435880661, 0.007412179373204708, 0.00373494322411716, 0.0029270413797348738, -0.04172877222299576, 0.03572721779346466, 0.012702013365924358, 0.016247805207967758, -0.006168266758322716, 0.03644535318017006, -0.02154405042529106, -0.00251186965033412, 0.002428514650091529, -0.02322397381067276, 0.019774360582232475, -0.03062332794070244, -0.007566065527498722, -0.0507311075925827, 0.02492954395711422, 0.05714302882552147, -0.007931544445455074, -0.035547684878110886, -0.02512190118432045, -0.0005634474218823016, 0.02509625442326069, 0.005822022911161184, -0.011265742592513561, -0.024583300575613976, -0.021774878725409508, 0.018889514729380608, -0.013554798439145088, 0.036214523017406464, 0.02462177164852619, 0.07442956417798996, -0.04457566514611244, -0.006854342296719551, -0.014529409818351269, 0.0250064879655838, 0.05678396299481392, -0.03418835625052452, 0.012490419670939445, 0.042421262711286545, 0.02473718672990799, -0.053911421447992325, 0.0015100070741027594, -0.03562462702393532, -0.042010899633169174, 0.01690182089805603, 0.04524250701069832, -0.04413965716958046, 0.005235332529991865, 0.014478114433586597, 0.003388699609786272, -0.019248582422733307, -0.0032556522637605667, 0.017183944582939148, 0.001257537747733295, 0.0009257209021598101, -0.01978718489408493, 0.006879989989101887, -0.022634075954556465, -0.001177388709038496, -0.03026426210999489, 0.006937697064131498, 0.035829808562994, 0.02091568149626255, 0.031700532883405685, 0.022929025813937187, 0.037035249173641205, -0.04308810085058212, 0.00777124660089612, 0.05062851682305336, 0.06565805524587631, -0.02242889441549778, 0.07986687123775482, 0.03539379686117172, 0.00011571511276997626, 0.0025487381499260664, -0.06488862633705139, -0.006052852142602205, -0.06052852421998978, -0.05329587683081627, 0.004927560221403837, -0.007457062602043152, -0.0699668675661087, 0.029264001175761223, -0.05898966267704964, 0.005107094068080187, 0.03618887439370155, 0.014362700283527374, -0.04106193408370018, 0.006052852142602205, -0.013041844591498375, 0.001468329573981464, 0.02264690026640892, 0.02723783440887928, -0.06463214755058289, -0.01874845288693905, 0.03570156916975975, 0.008290612138807774, 0.0070466999895870686, 0.02278796210885048, 0.002285849303007126, -0.00646642129868269, -0.004950001835823059, 0.09648656845092773, 0.06365753710269928, 0.020159075036644936, -0.021967237815260887, 0.040882401168346405, 0.0015484786126762629, 0.0023659984581172466, 0.00314664957113564, -0.009572995826601982, 0.0008543882868252695, 0.00022441719193011522, 0.02492954395711422, 0.011047737672924995, -0.05070546269416809, -0.015209074132144451, -0.05591193959116936, 0.027802083641290665, 0.01971024088561535, 0.009572995826601982, -0.014349875971674919, -0.029648717492818832, -0.0552963949739933, -0.035137321799993515, -0.015452726744115353, -0.00943834614008665, -0.02764819748699665, -0.009175457060337067, 0.008322671987116337, 0.010053889825940132, 0.012650717981159687, 0.008700975216925144, 0.048935770988464355, -0.01841503381729126, 0.023070087656378746, 0.03480390086770058, 0.02262125350534916, -0.004799321759492159, 0.010874615982174873, 0.02346762642264366, -0.01517060212790966, 0.025596383959054947, 0.0029703218024224043, -0.02190311811864376, 0.01594003289937973, 0.020492495968937874, -0.05555287376046181, -0.005543104838579893, -0.0010659816907718778, 0.024121642112731934, -0.027083948254585266, 0.021954413503408432, 0.009156221523880959, -0.0005710616242140532, -0.008540676906704903, 0.005251362454146147, -0.027340425178408623, 0.028597163036465645, 0.029417887330055237, 0.03567592054605484, 0.031649235635995865, 0.052013494074344635, -0.014439643360674381, 0.033162448555231094, 0.02457047626376152, -0.059246137738227844, -0.03218783810734749, 0.016888996586203575, 0.016914645209908485, 0.030777214094996452, -0.013747155666351318, 0.019992366433143616, -0.022634075954556465, -0.03144405409693718, 0.0211593359708786, 0.023134207352995872, 0.018209852278232574, -0.010887439362704754, -0.017555836588144302, -0.03826633840799332, 0.009572995826601982, 0.0023708073422312737, 0.007162114139646292, 0.016247805207967758, 0.008284199982881546, -0.016529928892850876, 0.03331633657217026, 0.01951788365840912, 0.023647159337997437, 0.045473333448171616, 0.011419628746807575, 0.02872540056705475, 0.06478603929281235, 0.0188766922801733, 0.048140693455934525, -0.024775657802820206, 0.04265208914875984, 0.049628257751464844, -0.009502464905381203, -0.01006030198186636, -0.02548096887767315, 0.009765353985130787, -0.025429673492908478, -0.04798680916428566, 0.03141840547323227, -0.0012583392672240734, 0.007732775062322617, 0.007643008138984442, 0.012977725826203823, 0.059246137738227844, -0.005591194145381451, -0.010714317671954632, -0.011849227361381054, -0.07089018821716309, -0.02201853320002556, 0.001421041670255363, -0.013099552132189274, 0.004754438530653715, -0.022916201502084732, -0.026365814730525017, 0.05898966267704964, -0.0013953940942883492, 0.04403706640005112, 0.025327082723379135, 0.02685311995446682, 0.011381157673895359, 0.01009877398610115, 0.008130313828587532, 0.0008026922005228698, 0.010477077215909958, 0.009861532598733902, -0.04790986329317093, 0.026981357485055923, 0.05142359808087349, -0.016812054440379143, 0.03926659747958183, -0.02575027011334896, -0.002838877495378256, -0.012817427515983582, 0.0039978320710361, -0.003792650531977415, -0.04757644608616829, -0.010175717063248158, -0.017196768894791603, -0.003302138764411211, 0.06832541525363922, -0.05565546452999115, -0.0017167915357276797, 0.0013633344788104296, -0.02089003473520279, -0.0029751306865364313, -0.01202234998345375, -0.026417110115289688, -0.02000518888235092, 0.017196768894791603, 0.00454284530133009, -0.028904933482408524, -0.023877989500761032, -0.002603239379823208, 0.0394204817712307, 0.015619436278939247, -0.007668655831366777, -0.00194281165022403, -0.02539120241999626, -0.0060945297591388226, 0.029315296560525894, -0.031649235635995865, 0.007187761832028627, -0.002333938842639327, -0.002183258766308427, 0.014426819048821926, -0.020851563662290573, -0.0006291696336120367, 0.04493473470211029, 0.032418664544820786, 0.0584254115819931, 0.017850784584879875, 0.05060287192463875, -0.029776955023407936, 0.003911271225661039, 0.007219821680337191, -0.0353425033390522, -0.012407064437866211, -0.01690182089805603, 0.035906750708818436, 0.009162633679807186, -0.04842281714081764, -0.02795596979558468, 0.0031963419169187546, 0.008290612138807774, -0.09079278260469437, -0.012977725826203823, 0.01701723411679268, -0.02457047626376152, -0.017158297821879387, -0.030956748872995377, 0.055860646069049835, -0.006892813835293055, 0.02952047809958458, 0.026724882423877716, -0.030879804864525795, -0.05062851682305336, -0.02680182456970215, 0.03836892917752266, 0.04501167684793472, -0.01342655997723341, -0.017735369503498077, 0.00861761998385191, 0.036214523017406464, -0.0007117231143638492, 0.010957971215248108, 0.006200326606631279, 0.008252141065895557, 0.00698899244889617, 0.0188766922801733, 0.03954872116446495, 0.09058760106563568, 0.05416789650917053, -0.02841762825846672, 0.004709554836153984, 0.03157229349017143, -0.021095216274261475, -0.04883318021893501, 0.029392240568995476, 0.016004152595996857, 0.020236019045114517, -0.032803382724523544, -0.014324228279292583, 0.05221867561340332, 0.0017392332665622234, -0.031649235635995865, 0.006460009142756462, 0.0567326657474041, -0.018543271347880363, 0.0043793413788080215, -0.001949223573319614, -0.00157332478556782, 0.011015677824616432, -0.025634855031967163, -0.07996946573257446, -0.014042104594409466, -0.003558615455403924, -0.017209593206644058, -0.00795719213783741, -0.007065935526043177, 0.05062851682305336, 0.004126070532947779, -0.00024164922069758177, -0.0012046394404023886, 0.02569897472858429, -0.035060375928878784, -0.023903636261820793, 0.021749231964349747, -0.010893851518630981, 0.018504800274968147, -0.034290947020053864, 0.0003274086629971862, 0.027160892263054848, -0.010150069370865822, 0.002925438340753317, 0.007841777987778187, 0.002192876534536481, -0.03367540240287781, 8.490784239256755e-06, 0.021800527349114418, 0.02993084117770195, 0.0030344410333782434, -0.009303695522248745, 0.03634276241064072, -0.035906750708818436, 0.033983174711465836, -0.017850784584879875, -0.0003344216966070235, 0.01210570428520441, -0.01844068057835102, 0.0003384291485417634, -0.02805856056511402, 0.033162448555231094, 0.009957711212337017, -0.020825915038585663, 0.023070087656378746, -0.03875364363193512, -0.04026685655117035, 0.015119306743144989, -0.011727401055395603, -0.03559897840023041, 0.04598628729581833, 0.02047967165708542, -0.0026817854959517717, -0.04036944732069969, -0.013388088904321194, 0.02149275504052639, 0.010970794595777988, 0.0011164755560457706, 0.03600934147834778, -0.0036836478393524885, 0.011182388290762901, 0.018120085820555687, -0.0018722806125879288, -0.03457307070493698, 0.018402209505438805, 0.03926659747958183, 0.0015348532469943166, 0.02394210919737816, 0.013965161517262459, -0.004453078377991915, 0.004536433145403862, 0.05421919375658035, -0.05786116421222687, 0.030238613486289978, -0.006373448297381401, 0.03177747502923012, -0.01788925565779209, 0.04452437162399292, -0.01764560304582119, 0.012221119366586208, -0.017325006425380707, -0.008816389366984367, 0.007392943371087313, -0.013747155666351318, 0.0032396225724369287, 0.020710499957203865, 0.006732515525072813, -0.03177747502923012, 0.009983358904719353, -0.011849227361381054, -0.016247805207967758, 0.0032396225724369287, -0.06422179192304611, -0.01305466890335083, -0.03888188302516937, 0.0036868539173156023, -0.009239576756954193, 0.014170343056321144, 0.0003378280089236796, -0.05375753343105316, -0.03177747502923012, 0.009072866290807724, 0.009175457060337067, -0.044703904539346695, -0.04978214576840401, -0.03295726701617241, -0.01627345196902752, 0.030059080570936203, -8.305440132971853e-05, -0.008771506138145924, -0.012727661058306694, -0.016581224277615547, 0.039728254079818726, 0.02423705719411373, -0.014657648280262947, 0.019004929810762405, 0.029443535953760147, -0.010688669979572296, 0.01591438427567482, -0.035881102085113525, 0.031623587012290955, 0.06847929954528809, 0.035932399332523346, 0.04998732730746269, 0.04719172790646553, -0.009047218598425388, 0.001131703844293952, -0.016260627657175064, 0.035906750708818436, -0.02550661750137806, 0.018017495051026344, -0.021608170121908188, -0.03311115503311157, 0.011118268594145775, 0.0022409658413380384, 0.024095995351672173, -0.03190571442246437, 0.05632230266928673, -0.00314344372600317, -0.004731996916234493, -0.0050654164515435696, 0.01997954212129116, 0.0023788223043084145, -0.011124680750072002, 0.0013096346519887447, -0.0037413551472127438, -0.04293421655893326, 0.0365479439496994, 0.0377533845603466, -0.008675327524542809, -0.013298321515321732, 0.03336763009428978, 0.0038567697629332542, 0.024121642112731934, -0.009585820138454437, 0.00019185665587428957, 0.01858174428343773, -0.005264186300337315, -0.010194952599704266, 0.037830326706171036, 0.013035432435572147, -0.008611207827925682, 0.009457581676542759, -0.05180831253528595, -0.013644564896821976, -0.011618399061262608, 0.007219821680337191, 0.03411141410470009, 0.03983084484934807, 0.027007006108760834, -0.03105933964252472, 0.0195948276668787, -0.009791001677513123, -0.017337830737233162, -0.009072866290807724, -0.02498083934187889, 0.026173455640673637, -0.024416590109467506, -0.012516067363321781, -0.06283681094646454, 0.003395111532881856, -0.011272154748439789, 0.009675586596131325, 0.003558615455403924, 0.006427949760109186, 0.02805856056511402, -0.0016606872668489814, 0.0036547943018376827, -0.011894111521542072, -0.031649235635995865, -0.0068479301407933235, 0.020466847345232964, -0.03639405593276024, 0.01904340088367462, 0.017248064279556274, 0.0034399949945509434, -0.00836755521595478, 0.031213225796818733, 0.021646641194820404, -0.010701494291424751, 0.011810756288468838, -0.014067752286791801, 0.03500908240675926, -0.02240324765443802, -0.005427690222859383, 0.02303161658346653, -0.014119047671556473, -0.021197807043790817, 0.009111338295042515, -0.003058485686779022, -0.008829213678836823, 0.027853379026055336, -0.07150573283433914, 0.016670990735292435, -0.02401905134320259, 0.00662351306527853, -0.033572811633348465, -0.014888477511703968, -0.007457062602043152, -0.03721478208899498, -0.013099552132189274, -0.0073095886036753654, -0.020402729511260986, 0.026147808879613876, -0.03382929041981697, -0.012323710136115551, 0.021287573501467705, 0.010393721982836723, -0.00902798306196928, 0.001612597843632102, 0.018517624586820602, -0.0017328213434666395, 0.019120344892144203, -0.028545867651700974, 0.02012060396373272, 0.04575546085834503, 0.01239424105733633, 0.0029222324956208467, 0.008534264750778675, 0.010739965364336967, 0.02240324765443802, 0.0033790816087275743, -0.0025375173427164555, 0.013541974127292633, -0.004001038148999214, 0.010419369675219059, 0.017530187964439392, -0.02476283349096775, 0.01365738920867443, 0.008713798597455025, 0.005892554298043251, -0.03447047993540764, -0.03136711195111275, 0.0001125091512221843, -0.00728394091129303, 0.006145825143903494, 0.013772803358733654, 0.0049019125290215015, -0.0046614655293524265, -0.007982839830219746, 0.028315037488937378, -0.0037381493020802736, 0.015593788586556911, 0.028161151334643364, 0.02168511226773262, 0.01632474735379219, -0.020082132890820503, -0.029366591945290565, 0.0015701188240200281, -0.030982395634055138, -0.03000778518617153, -0.002274628495797515, -0.004812145605683327, -0.0584254115819931, -0.01157351490110159, 0.019235759973526, 0.03103369101881981, 0.017632778733968735, 0.017876433208584785, 0.03636840730905533, 0.022582780569791794, -0.01180434413254261, -0.022172419354319572, -0.0176712516695261, 0.04842281714081764, -0.030982395634055138, -0.018902339041233063, 0.056271009147167206, -0.006976168602705002, 0.013990809209644794, 0.027468664571642876, -0.030905453488230705, -0.0015059997094795108, 0.0507311075925827, -0.02916141040623188, -0.04154923930764198, 0.02800726518034935, -0.04516556113958359, -0.00872662290930748, 0.011111857369542122, 0.022249361500144005, -0.01865868642926216, -0.025622030720114708, 0.008912568911910057, -0.009976946748793125, 0.026263223960995674, 0.028956228867173195, -0.0003087740042246878, 0.043934475630521774, 0.0072326455265283585, -0.017107002437114716, 0.0007650221814401448, -0.00646642129868269, -0.0003861177829094231, 0.006777399219572544, 0.008938216604292393, 0.023403506726026535, 0.012124939821660519, 0.0036195286083966494, -0.01682487688958645, -0.0567326657474041, 0.033547163009643555, 0.02478848211467266, -0.014144695363938808, -0.03300856426358223, 0.0016053844010457397, 0.008034135214984417, 0.01077202521264553, 0.03141840547323227, -0.015593788586556911, 0.03326503932476044, 0.015080835670232773, -0.006815870758146048, -0.007553241681307554, -0.04921789467334747, 0.0038599756080657244, -0.0329316183924675, 0.0009882370941340923, 0.002987954532727599, 0.01942811720073223, 0.004719173070043325, 0.022826435044407845, 0.021043920889496803, 0.018132908269762993, 0.008636855520308018, 0.009374226443469524, -0.009412698447704315, -0.018427858129143715, 0.030956748872995377, -0.030828509479761124, -0.025224491953849792, -0.03577851131558418, 0.027545606717467308, -0.0011685723438858986, -0.032059598714113235, 0.013811275362968445, 0.013298321515321732, -0.004956413991749287, -0.011740225367248058, 0.020274490118026733, -0.03811245039105415, 0.0036547943018376827, -0.05611712113022804, 0.026930062100291252, -0.008085430599749088, -0.01515777874737978, 0.007854601368308067, 0.04370364546775818, 0.04914095252752304, -0.009380638599395752, -0.004283162299543619, 0.013131611980497837, 0.0057675219140946865, -0.004113246686756611, -0.031290169805288315, 0.007392943371087313, -0.057348210364580154, 0.0030168083030730486, -0.030469441786408424, 0.008707387372851372, -0.005879730451852083, 0.013721507973968983, -0.01935117319226265, 0.0007870631525292993, 0.017773842439055443, -0.018453504890203476, -0.011413217522203922, -0.011477336287498474, -0.025109076872467995, 0.0013889821711927652, 0.035060375928878784, -0.0002634898410178721, -0.02380104549229145, -0.0018995312275364995, 0.017107002437114716, 0.034701310098171234, 0.01913316920399666, 0.041626181453466415, -0.013112375512719154, -0.00146191765088588, 0.030212966725230217, 0.012708424590528011, -0.015286016277968884, 0.013388088904321194, 0.020556615665555, -0.01084255613386631, -0.0016262230928987265, 0.014285757206380367, 0.013683036901056767, 0.03347022086381912, 0.012650717981159687, -0.0011878081131726503, 0.015196249820291996, 0.006001556757837534, 0.02209547534584999, -0.06765858083963394, 0.0013160465750843287, -0.024121642112731934, 0.0031819152645766735, -0.028956228867173195, -0.025596383959054947, -0.006033616606146097, -0.0016895408043637872, 0.013875394128262997, 0.01591438427567482, 0.03031555749475956, 0.008944627828896046, -0.03480390086770058, 0.020018013194203377, -0.02844327688217163, -0.046653129160404205, 0.06483732908964157, 0.025134725496172905, -0.010656611062586308, -0.0003087740042246878, -0.0031867241486907005, 0.00022662128321826458, 0.013708684593439102, 0.01997954212129116, -0.02132604457437992, 0.055039919912815094, 0.006758163217455149, -0.03523991256952286, 0.005427690222859383, 0.010143657214939594, 0.027340425178408623, -0.019120344892144203, 0.019684594124555588, 0.028597163036465645, 0.03290597349405289, 0.00988076813519001, -0.0008391599985770881, 0.0015284413238987327, -0.028571514412760735, 0.028520219027996063, -0.003407935379073024, 0.003795856609940529, 0.047371264547109604, 0.03793291747570038, 0.037830326706171036, -0.004671083763241768, 0.04190830886363983, 0.005501427222043276, 0.03529120609164238, -0.01846632920205593, 0.02430117502808571, 0.018209852278232574, -0.024634595960378647, 0.03347022086381912, 0.025442497804760933, -0.009964123368263245, 0.010630963370203972, 0.0176712516695261, -0.024660242721438408, 0.03034120425581932, 0.016145214438438416, 0.02622475102543831, 0.023954931646585464, -0.014478114433586597, 0.01627345196902752, -0.02248018980026245, -0.03770208731293678, -0.006296505220234394, -0.0016815259587019682, -0.030161671340465546, 0.00085038086399436, 0.03608628362417221, 0.011990290135145187, 0.03182876855134964, 0.030469441786408424, -0.056578781455755234, 0.013529150746762753, 0.020018013194203377, -0.021672287955880165, -0.026622291654348373, 0.010143657214939594, 0.008694563060998917, 0.0009112940751947463, 0.005049386993050575, 0.0009016761905513704, 0.01615803688764572, -0.023185502737760544, 0.04216478392481804, 0.0163503959774971, 0.01654275320470333, 0.011272154748439789, -0.005014121066778898, 0.007463474757969379, 0.03595804423093796, 0.06863319128751755, 0.010400134138762951, 0.028238095343112946, -0.016978763043880463, -0.009111338295042515, -0.001861059688962996, -4.010580596514046e-06, 0.012496831826865673, -0.001705570612102747, -0.020851563662290573, 0.000845571921672672, 0.020056484267115593, 0.016478633508086205, 0.013734332285821438, -0.005485397297888994, 0.015273192897439003, 0.025929803028702736, 0.01591438427567482, 0.027083948254585266, -0.04221608117222786, -0.011400393210351467, -0.01855609565973282, -0.036624886095523834, 0.0065658059902489185, -0.0043440754525363445, 0.011528631672263145, 0.024814128875732422, 0.019697416573762894, -0.03403446823358536, -0.025352731347084045, -0.02377539873123169, 0.013849746435880661, 0.0014346670359373093, -0.05203913897275925, 0.02399340458214283, 0.004225455224514008, 0.025814389809966087, -0.018722806125879288, 0.009412698447704315, -0.0070787593722343445, 0.02324962057173252, 0.01109262090176344, 0.006062469910830259, -0.00625162199139595, -0.014285757206380367, 0.010791260749101639, 0.013824098743498325, 0.0062484159134328365, 0.005975909065455198, 0.013061080127954483, 0.0025311054196208715, -0.03718913346529007, 0.0055366926826536655, -0.021608170121908188, 0.01668381504714489, 0.0012647511903196573, -0.0004889089032076299, 0.006043234374374151, 0.03636840730905533, -0.016363218426704407, 0.04349846392869949, 8.004881237866357e-05, -0.021620992571115494, 0.0028725401498377323, 0.016145214438438416, 0.01383692305535078, 0.0064023020677268505, -0.0093165198341012, 0.016427338123321533, 0.004222249146550894, -0.0008255346911028028, 0.016940291970968246, -0.020492495968937874, -0.02165946550667286, -0.0004171755281277001, -0.013631741516292095, -0.00872662290930748, 0.00012883951421827078, -0.021428635343909264, 0.038163747638463974, 0.0027683463413268328, -0.011349097825586796, -0.008271376602351665, -0.02132604457437992, -0.010861791670322418, 0.014119047671556473, 0.005642489530146122, 0.0002250183024443686, -0.010457840748131275, -0.03867670148611069, 0.002755522495135665, -0.0004384150088299066, 0.020069308578968048, 0.0075596533715724945, 0.013400912284851074, 0.023262444883584976, -0.003289314918220043, -0.03236737102270126, -0.05303940176963806, -0.02990519441664219, 0.0005141558358445764, -0.009060042910277843, 0.02283925749361515, 0.03523991256952286, 0.0029687187634408474, 0.020736148580908775, 0.025775916874408722, 0.0010707905748859048, 0.039779551327228546, 0.0028837609570473433, 0.0016286276513710618, -0.009944887831807137, -0.009079278446733952, 0.013349616900086403, 0.07160831987857819, -0.0034464069176465273, -0.005007709376513958, 0.0020598291885107756, 0.03793291747570038, -0.012419888749718666, 0.0221211239695549, 0.0025182815734297037, 0.03305985778570175, -0.03734302148222923, -0.027853379026055336, 0.018094437196850777, -0.0017135855741798878, 0.018043141812086105, 0.01169534120708704, -0.0021399781107902527, 0.0009040806908160448, 0.006431155372411013, 0.019107520580291748, -0.016196509823203087, 0.021980060264468193, -0.02374975010752678, -0.0059214080683887005, -0.014465291053056717, 0.00902798306196928, -0.024583300575613976, -0.021915942430496216, -0.015901561826467514, -0.005075034685432911, 0.026724882423877716, 0.02146710827946663, 0.008861273527145386, -0.029802603647112846, -0.0017248063813894987, -0.0028533043805509806, -0.034650012850761414, -0.04442178085446358, 0.033598460257053375, -0.006835106294602156, -0.015439902432262897, 0.03329068794846535, 0.005831641145050526, 0.006982580758631229, -0.02682747319340706, 0.0029414682649075985, 0.021608170121908188, -0.013567621819674969, 0.0004857029125560075, 0.028238095343112946, 0.0003748969465959817, 0.030802862718701363, 0.012375005520880222, -0.002689800225198269, -0.01269560120999813, -0.022762315347790718, -0.0022329511120915413, 0.01221470721065998, 0.021531226113438606, 0.003641970455646515, 0.022057004272937775, -0.024865424260497093, 0.025416849181056023, -0.00891898013651371, 0.022031355649232864, 0.003212371841073036, 0.002346762688830495, -0.02457047626376152, 0.010746377520263195, -0.025711799040436745, -0.0003977394080720842, -0.004273544531315565, 0.009175457060337067, 0.01778666488826275, 0.030982395634055138, 0.00850861705839634, 0.01935117319226265, -0.014157518744468689, 0.009130573831498623, -0.02726348303258419, -0.030212966725230217, -0.013772803358733654, -0.007861013524234295, 0.03559897840023041, 0.026673587039113045, -0.02380104549229145, 0.008463733829557896, -0.004757644608616829, 0.027930323034524918, 0.030110375955700874, 0.04113887622952461, 0.005309069529175758, -0.007450650911778212, 0.010656611062586308, -0.010598903521895409, 0.030802862718701363, 0.0037798266857862473, -0.005151977296918631, -0.017299359664320946, -0.019248582422733307, -0.0035041142255067825, -0.010445017367601395, -0.0317261777818203, -0.01819702796638012, 0.017581483349204063, 0.0013048256514593959, -0.012811015360057354, 0.014093399979174137, 0.01797902211546898, -0.005809199530631304, -0.04180571809411049, -0.025044959038496017, -0.011099033057689667, 0.0012719646329060197, 0.006995404604822397, -0.021813351660966873, -0.018068790435791016, 0.003869593609124422, -0.00017101792036555707, -0.0031210018787533045, 0.01992824673652649, 0.04526815190911293, -0.010041066445410252, 0.012291650287806988, 0.015580965206027031, 0.03734302148222923, 0.002696212148293853, -0.00013555199257098138, 0.018376562744379044, 0.01048348844051361, -0.014914125204086304, 0.013529150746762753, 0.0008087033638730645, -0.013170083053410053, 0.011195211671292782, -0.02731477841734886, 0.03344457224011421, -0.011785108596086502, 0.014054927974939346, 0.001694349804893136, 0.01901775412261486, 0.005825228989124298, 0.018915163353085518, -0.0018770894967019558, -0.028699751943349838, -0.004161335993558168, -0.0038471517618745565, -0.0201975479722023, -0.014901301823556423, -0.0006792627391405404, 0.0004885081434622407, -0.00059190031606704, 0.0005221707397140563, 0.016093919053673744, 0.014067752286791801, -0.0086560919880867, -0.045806754380464554, 0.0004865044029429555, -0.0010291130747646093, 0.005597605835646391, -0.01048348844051361, -0.0019524295348674059, -0.005892554298043251, -0.021172158420085907, 0.01306749228388071, -0.028930582106113434, 0.006242003757506609, 0.0037605909164994955, 0.005042974837124348, 0.004465902224183083, -0.03844587132334709, 0.007950780913233757, -0.006174678914248943, -0.004097216762602329, 0.015183426439762115, -0.02163381688296795, -0.019479412585496902, 0.004709554836153984, 0.027802083641290665, -0.03985649347305298, -0.013541974127292633, 0.027058301493525505, 0.0367787703871727, -0.01976153627038002, 0.0009601849596947432, 0.006937697064131498, 0.0008018907392397523, -0.037035249173641205, -0.02303161658346653, 0.025250140577554703, 0.035137321799993515, 0.011759460903704166, -0.0221211239695549, 0.04439613223075867, -0.006604277528822422, -0.02957177348434925, -0.017273711040616035, -8.861473179422319e-05, -0.0031851211097091436, 0.013009784743189812, -0.02990519441664219, -0.006440773606300354, -0.030110375955700874, -0.01978718489408493, -0.015414254739880562, -0.013452207669615746, -0.006283681374043226, 0.009002335369586945, -0.027930323034524918, 0.02089003473520279, 0.010797672905027866, 0.033957526087760925, -0.0062804752960801125, 0.03146970272064209, 0.028468923643231392, 0.017799489200115204, -0.009476817212998867, 0.029623068869113922, 0.00939987413585186, -0.01402928028255701, -0.04226737469434738, -0.005119917914271355, 0.0006744537968188524, -0.011778696440160275, -0.04367799684405327, -0.0017536600353196263, 0.02165946550667286, 0.00548219121992588, -0.028545867651700974, 0.003382287686690688, -0.06447826325893402, 0.025622030720114708, 0.007899485528469086, 0.004578110761940479, -0.005940643604844809, -0.043934475630521774, 0.015068011358380318, 0.009630703367292881, -0.013965161517262459, 0.0038599756080657244, 0.027930323034524918, -0.02110804058611393, 0.01365738920867443, 0.014349875971674919, -0.012445536442101002, 0.012714836746454239, -0.0010603712871670723, -0.026596643030643463, 0.021800527349114418, -0.00042839639354497194, -0.03618887439370155, 0.016773581504821777, -0.002991160610690713, -0.028263742104172707, 0.0013240614207461476, 0.006168266758322716, -0.020787443965673447, 0.04095934331417084, 0.005924613680690527, -0.007130054756999016, -0.05437307804822922, -0.026417110115289688, -0.034008823335170746, 0.006059264298528433, 0.013759979978203773, 0.03565027564764023, 0.02685311995446682, -0.01343938335776329, 0.01915881596505642, -0.06432437896728516, 0.036624886095523834, 0.002979939803481102, -0.0105796679854393, 0.015388607047498226, 0.02498083934187889, -0.02110804058611393, 0.027007006108760834, -0.011079797521233559, 0.018299618735909462, 0.0057579041458666325, -0.01456788182258606, 0.01054119598120451, 0.01800467073917389, 0.024801306426525116, -0.00554631045088172, -0.015811793506145477, 0.024532005190849304, 0.012887958437204361, 0.03500908240675926, 0.020300138741731644, -0.024313999339938164, 0.051269710063934326, 0.024006227031350136, 0.020620733499526978, 0.02171076089143753, -0.010566843673586845, -0.01899210549890995, -0.006546569988131523, -0.023839518427848816, -0.01458070520311594, 0.0030200141482055187, 0.022390423342585564, 0.006078499834984541, 0.004437048453837633, 0.008284199982881546, 0.024660242721438408, 0.006636336911469698, 0.018479153513908386, 0.02764819748699665, 0.004950001835823059, 0.02959742210805416, -0.04144664853811264, 0.005555928684771061, 0.00956658460199833, -0.013144435361027718, -0.03190571442246437, -0.03388058394193649, -0.023954931646585464, 0.011720988899469376, 0.02682747319340706, 0.029469182714819908, -0.005632871296256781, 0.009265224449336529, -0.04539639130234718, 0.004603758454322815, 0.012964901514351368, -0.0008139130659401417, 0.006222768221050501, -0.008874096907675266, -0.035496387630701065, -0.029853899031877518, 0.03136711195111275, -0.014452466741204262, -0.0018241911893710494, -0.04878188669681549, 0.011297802440822124, 0.022531485185027122, -0.01499106828123331, -0.017914904281497, 0.008143138140439987, -0.00469352537766099, -0.0023483657278120518, -0.010124421678483486, -0.02680182456970215, 0.029238354414701462, -0.017517365515232086, 0.03647099807858467, -0.0027234628796577454, 0.028109855949878693, -0.02800726518034935, 0.016055447980761528, 0.018543271347880363, 0.010464252904057503, 0.012471184134483337, 0.022351952269673347, 0.03493214026093483, -0.003484878456220031, 0.018863867968320847, -0.02916141040623188, 0.02649405226111412, -0.01269560120999813, -0.007905896753072739, -0.02836633287370205, -0.02949483133852482, 0.0029430710710585117, 0.03803550824522972, 0.023890813812613487, -0.008040547370910645, -0.009111338295042515, 0.0186330396682024, 0.021095216274261475, -0.0021896706894040108, 0.0031177960336208344, 0.009572995826601982, 0.012593010440468788, 0.014683295972645283, 0.0030921483412384987, -0.015516845509409904, -0.0015132130356505513, -0.003220386803150177, -0.008495793677866459, 0.00975894182920456, 0.0003470451629254967, 0.044703904539346695, -0.020710499957203865, 0.029674364253878593, -0.003088942263275385, 0.0020710499957203865, -0.015593788586556911, 0.031264521181583405], [-0.010211224667727947, 0.015049993060529232, 0.06100643426179886, 0.01597505249083042, -0.05341620743274689, -0.015856454148888588, -0.008521213196218014, 0.03451180458068848, 0.007821490056812763, 0.0489095114171505, -0.02658950723707676, 0.02292485162615776, 0.014872097410261631, 0.0005262753693386912, -0.07063653320074081, 0.010525506921112537, 0.018773946911096573, 0.034013696014881134, -0.012079131789505482, 0.02739596739411354, 0.025877922773361206, 0.037998564541339874, -0.049146708101034164, 0.01219179853796959, -0.011337898671627045, -0.00784520898014307, -0.02768060192465782, -0.03588753193616867, 0.02732481062412262, -0.03825947642326355, 0.03553174063563347, -0.02533237636089325, 0.06840690225362778, 0.022308144718408585, 0.045304156839847565, 0.008201001212000847, -0.030740411952137947, -0.02976791374385357, -0.049289021641016006, 0.009944380261003971, -0.03612472862005234, 0.04399958625435829, -0.030455777421593666, -0.012547590769827366, -0.036077287048101425, 0.020624063909053802, 0.016722213476896286, -0.026091398671269417, 0.02488170564174652, 0.022972289472818375, 0.0036616905126720667, 0.03531826660037041, 0.004841733258217573, 0.017279621213674545, 0.01656803861260414, -0.011100703850388527, 4.181016993243247e-05, 0.028534501791000366, 0.034298330545425415, -0.030099986121058464, 0.04845884069800377, 0.011735199019312859, 0.024407317861914635, 0.012571309693157673, 0.011290459893643856, 0.031119922176003456, -0.03643307834863663, 0.011948673985898495, 0.015986911952495575, -0.018192820250988007, 0.056831810623407364, 0.04558878764510155, 0.008954093791544437, -0.033278390765190125, -0.042955927550792694, 0.008675389923155308, 0.0041301497258245945, 0.023683873936533928, 0.019734585657715797, 0.010092627257108688, -0.017244042828679085, -0.018323278054594994, -0.02124077081680298, -0.02243860252201557, 0.00798752624541521, -0.03927941247820854, -0.05944094806909561, -0.0068786414340138435, -0.019224615767598152, -0.007228503469377756, 0.02323320508003235, 0.007578365039080381, -0.04210202768445015, 0.0072107138112187386, -0.01666291616857052, -0.008450055494904518, 0.0506647527217865, -0.04165136069059372, -0.030028827488422394, 0.04217318817973137, -0.017338920384645462, -0.03854411095380783, -0.016710354015231133, 0.009891011752188206, 0.00955893937498331, -0.10844533890485764, -0.02438359707593918, 0.05768571048974991, 0.032851442694664, -0.003498619422316551, -0.016164807602763176, -0.0262099951505661, -0.023921068757772446, 0.0461343377828598, -0.013140576891601086, -0.002787035657092929, 0.03299375995993614, -0.03308863565325737, 0.013721703551709652, -0.023529697209596634, 0.034298330545425415, 0.04134300723671913, 0.008912584744393826, -0.033705342561006546, -0.00258542038500309, -0.02519005909562111, -0.021608421579003334, 0.009060830809175968, -0.06171801686286926, -0.019343214109539986, 0.014231671579182148, -0.03833063691854477, 0.01285594329237938, -0.04748634621500969, -0.02960187755525112, -0.01576157659292221, -0.003878130577504635, -0.03875758498907089, 0.001271955668926239, -0.018963702023029327, 0.04335916042327881, 0.01189530547708273, -0.024276860058307648, -0.02711133472621441, -0.0562625415623188, 0.036077287048101425, -0.01177670806646347, 0.014338409528136253, 0.023387379944324493, -0.008064613677561283, -0.02435987815260887, 0.036290764808654785, -0.010632244870066643, -0.030526936054229736, 0.014540025033056736, 0.09003904461860657, 0.016224104911088943, -0.012666188180446625, -0.0022666901350021362, 0.03714466467499733, -0.0583498552441597, -0.046632446348667145, 0.016010630875825882, 0.0063627432100474834, 0.03368162363767624, -0.010276452638208866, -0.024857986718416214, 0.013970757834613323, -0.04010959342122078, -0.007186994422227144, -0.022877411916851997, 0.005227174609899521, -0.02519005909562111, 0.02033943124115467, 0.008367037400603294, 0.0040174825116992, 0.03764277324080467, 0.02547469176352024, -0.024763109162449837, 0.006095899268984795, 0.007519066799432039, 0.00328810908831656, -0.020635923370718956, -0.08088333159685135, 0.009950310923159122, -0.0029352824203670025, -0.023873629048466682, 0.02955443784594536, -0.009386973455548286, 0.027229931205511093, 0.0009673089371062815, -0.038354355841875076, 0.0012890039943158627, 0.0242887195199728, -0.01848931424319744, -0.007062467280775309, -0.034227170050144196, -0.013437069952487946, 0.04599202051758766, -0.03868642821907997, -0.0013238419778645039, -0.048624876886606216, 0.020635923370718956, 0.03742929548025131, -0.03332583233714104, 0.011628462001681328, -0.006475410889834166, -0.007376749999821186, 0.049953166395425797, -0.00899560283869505, 0.04070258140563965, -0.06190777197480202, -0.03244820982217789, 0.026992738246917725, -0.021288208663463593, 0.015192309394478798, 0.033349551260471344, 0.07258152961730957, -0.013211735524237156, 0.009357323870062828, -0.03235333412885666, 0.008954093791544437, 0.03472527861595154, -0.0017982310382649302, -0.012102850712835789, -0.012025762349367142, 0.05056987330317497, -0.04025191068649292, 0.015049993060529232, -0.05408035218715668, -0.0096063781529665, 0.03923197463154793, -0.0121443597599864, -0.02886657416820526, 0.016923829913139343, 0.018738368526101112, 0.006926080211997032, -0.01329475361853838, 0.0022815149277448654, 0.020114095881581306, 0.0100451884791255, -0.01521602924913168, 0.006054390221834183, 0.025071462616324425, 0.008242510259151459, -0.025071462616324425, 0.01743379794061184, 0.0010733052622526884, 0.0632360652089119, 0.008005315437912941, -0.03783252835273743, 0.02827358804643154, 0.07718309760093689, -0.06053204461932182, -0.010068907402455807, 0.03244820982217789, -0.05559839680790901, -0.03771393001079559, -0.00955893937498331, -0.01754053495824337, 0.04836396500468254, -0.017350779846310616, -0.012689907103776932, 0.04025191068649292, -0.045897141098976135, -0.03863899037241936, 0.02037500962615013, 0.013354051858186722, -0.059346072375774384, 0.05194560065865517, -0.06684141606092453, -0.01509743183851242, 0.02791779674589634, -0.022308144718408585, -0.023256924003362656, 0.0314519964158535, 0.022165829315781593, -0.03935057297348976, -0.00472610117867589, 0.021537262946367264, -0.0646592304110527, 0.009742765687406063, -0.02037500962615013, -0.04162764176726341, 0.044568851590156555, 0.024976583197712898, 0.009161639027297497, -0.030740411952137947, 0.0012045034673064947, 0.06124362722039223, 0.06342581659555435, -0.029127487912774086, 0.01443328708410263, 0.0017389324493706226, 0.007714752107858658, 0.0440233051776886, 0.013864019885659218, -0.00551180774345994, -0.0015640014316886663, -0.020991716533899307, 0.038876183331012726, 0.017421938478946686, 0.017030566930770874, -0.020291991531848907, -0.09483037143945694, 0.0014846895355731249, 0.004898067098110914, 0.048411402851343155, 0.01366240531206131, -0.004764644894748926, -0.01544136367738247, 0.009807993657886982, -0.06048460677266121, -0.041105810552835464, -0.006837132386863232, 0.003098353510722518, -0.022343724966049194, 0.03197382390499115, 0.019699005410075188, 0.007109906058758497, 0.04214946925640106, 0.008450055494904518, 0.02438359707593918, -0.000908010290004313, -0.013342192396521568, -0.013804721646010876, 0.02526121772825718, -0.005052243359386921, -0.03847295418381691, 0.028676819056272507, -0.011314178816974163, -0.04565994814038277, -0.003282179357483983, 0.005399140529334545, 0.007192924153059721, -0.013164296746253967, -0.01953296922147274, 0.0014513339847326279, -0.0010733052622526884, 0.0025602185633033514, 0.007886718027293682, -0.035270825028419495, -0.04025191068649292, 0.020493607968091965, -0.012405273504555225, 0.020813820883631706, 0.05156609043478966, 0.04433165863156319, -0.026186276227235794, 0.044497694820165634, 0.00010386526264483109, -0.025450972840189934, -0.01789632812142372, -0.042054589837789536, -0.02016153559088707, -0.0023348836693912745, 0.05668949335813522, 0.023707592859864235, -0.0009035629336722195, 0.0527520626783371, -0.02495286427438259, -0.013282893225550652, 0.029222365468740463, 0.03882874548435211, 0.04539903253316879, -0.012500151991844177, -0.00344228558242321, -0.02910376898944378, 0.0300525464117527, 0.00938104372471571, -0.017184743657708168, -0.017528675496578217, 0.006582148373126984, -0.01123116072267294, 0.014990693889558315, 0.006333094090223312, 0.0758073702454567, -0.0011600295547395945, 0.0032584599684923887, 0.05991533771157265, 0.013935178518295288, 0.020327571779489517, 0.025166340172290802, -0.013045699335634708, 0.028321027755737305, 0.03463040292263031, -0.07500091195106506, -0.014089355245232582, -0.012891522608697414, 0.03299375995993614, -0.015773436054587364, -0.023944787681102753, -0.0015402819262817502, 0.010875369422137737, -0.03187894448637962, -0.04665616527199745, -0.03591125085949898, -0.00843819510191679, -0.016864530742168427, -0.01757611520588398, -0.012061341665685177, -0.0636155754327774, -0.011794498190283775, -0.04743890464305878, 0.006570288445800543, -0.01669849455356598, -0.027419688180088997, -0.01586831361055374, 0.03766649216413498, -0.04414190351963043, -0.004245782271027565, 0.023458538576960564, 0.03645680099725723, 0.007542786188423634, 0.00636867294088006, 0.021157752722501755, 0.003857376053929329, 0.03524710610508919, -0.010472138412296772, -0.03088272735476494, 0.03731070086359978, 0.06556056439876556, -0.05692668631672859, 0.030337180942296982, -0.06968775391578674, 0.013057558797299862, 0.02732481062412262, -0.004749820567667484, 0.0033800220116972923, -0.02827358804643154, -0.02571188658475876, -0.020624063909053802, 0.0009976994479075074, 0.04933646321296692, -0.03510478883981705, 0.009410693310201168, 0.012761065736413002, 0.0014935842482373118, -0.042505260556936264, -0.006202636752277613, -0.004518555942922831, -0.031855225563049316, 0.033634185791015625, 0.011385337449610233, -0.05094938352704048, 0.00497812032699585, -0.02858194150030613, 0.014907675795257092, -0.005520702805370092, 0.02445475570857525, 0.001369057223200798, -0.031641751527786255, -0.020137814804911613, 0.002970861503854394, -0.020707082003355026, -0.0055295974016189575, -0.009576729498803616, 0.030242303386330605, 0.05479193478822708, -0.0066177272237837315, 0.019651567563414574, 0.017030566930770874, 0.021928634494543076, 0.03626704216003418, 0.02910376898944378, 0.04307452589273453, -0.02096799574792385, -0.002781105926260352, -0.008871075697243214, -0.048174209892749786, -0.03332583233714104, -0.008106122724711895, -0.0022800324950367212, -0.025213778018951416, -0.02271137572824955, -0.0044325729832053185, -0.027965234592556953, -0.021442385390400887, -0.06774275749921799, -0.05123401805758476, 0.025972800329327583, 0.0230671688914299, -0.036290764808654785, -0.06271423399448395, 0.07462140172719955, 0.0013208769960328937, 0.0380934402346611, -0.006404252257198095, -0.035413142293691635, -0.038662709295749664, -0.04217318817973137, 0.008657600730657578, 0.00472610117867589, -0.01081607025116682, 0.03671771287918091, 0.018536752089858055, -0.016093648970127106, -0.0016737038968130946, 0.053653404116630554, 0.003240670310333371, -0.011385337449610233, -0.0429796501994133, 0.05094938352704048, 0.00901339203119278, 0.054839376360177994, 0.011029545217752457, -0.025379814207553864, -0.014053775928914547, 0.021572843194007874, -0.005010734312236309, -0.06057948246598244, 0.03337327018380165, -0.00636867294088006, 0.022687656804919243, -0.012168079614639282, 0.005265718791633844, 0.06195520982146263, -0.018536752089858055, -0.041912272572517395, 0.041983433067798615, 0.014528164640069008, -0.011764848604798317, -0.01994805969297886, -0.012761065736413002, 0.0026565787848085165, 0.053795717656612396, -0.04416562244296074, -0.042647577822208405, -0.021572843194007874, 0.008183211088180542, -0.022628357633948326, -0.03102504462003708, -0.02296043001115322, 0.03095388598740101, 0.03780880942940712, 0.005737142637372017, -0.01285594329237938, 0.01233411580324173, -0.016046209260821342, -0.009072691202163696, 0.029815351590514183, -0.009707186371088028, 0.004236887209117413, 0.00047290659858845174, 0.008710969239473343, 0.005710458382964134, 0.007406399119645357, 0.01146242581307888, 0.029364682734012604, 0.032827723771333694, -0.020742662250995636, 0.004660872742533684, -0.01184786669909954, -0.014634902589023113, -0.00775626115500927, 6.078109800000675e-05, 0.01579715497791767, -0.02179817669093609, 0.0695454329252243, 0.005968407262116671, 0.0017137305112555623, 0.04798445478081703, -0.010294242762029171, -0.01617666706442833, 0.033563025295734406, 0.029744194820523262, 0.01329475361853838, -0.04601573944091797, 0.027158774435520172, -0.010080767795443535, -0.019402513280510902, 0.016828952357172966, -0.007708822377026081, -0.036741431802511215, 0.02271137572824955, 0.007305591367185116, -0.00955893937498331, -0.010999896563589573, 0.03166547045111656, 0.012678047642111778, -0.011747059412300587, -0.001956854946911335, -0.04105837270617485, 6.931685675226618e-06, -0.00149580801371485, -0.021288208663463593, -0.03420345112681389, -0.047604940831661224, -0.008865145966410637, 0.005449544172734022, 0.013543807901442051, -0.009819853119552135, 0.013899599201977253, -0.025593290105462074, 0.02910376898944378, 0.008082403801381588, 0.0024223490618169308, 0.004729066044092178, -0.02179817669093609, 0.022201407700777054, -0.00015890180657152086, 0.036883749067783356, 0.011088844388723373, -0.00192424061242491, -0.04466373100876808, -0.03244820982217789, -0.013781001791357994, -0.050474997609853745, 1.754637196427211e-05, 0.007815559394657612, -0.014931395649909973, -0.005636334884911776, -0.004669767338782549, -0.038876183331012726, -0.04592086002230644, 0.0021347508300095797, -0.04093977436423302, -0.04713055491447449, -0.017315201461315155, 0.014931395649909973, -0.010762701742351055, 0.028558220714330673, 0.0015743786934763193, 0.003964113537222147, -0.016864530742168427, 0.019485531374812126, -0.012322255410254002, -0.04160391911864281, -0.03050321713089943, -0.046039458364248276, 0.017066147178411484, 0.013365911319851875, -0.01960412785410881, -0.03446436673402786, -0.04549391195178032, -0.012405273504555225, 0.01603434979915619, -0.014789079315960407, -0.013543807901442051, 0.04084489867091179, 0.03368162363767624, 0.0204461682587862, -0.0005737142637372017, -0.03259052708745003, 0.033563025295734406, 0.051660969853401184, 0.030835289508104324, 0.03071669116616249, 0.028890293091535568, 0.002268172800540924, -0.0021555053535848856, -0.01347264926880598, 0.02768060192465782, -0.05398547649383545, 0.017967484891414642, -0.0038425514940172434, -0.03498619422316551, -0.008544933050870895, 0.02701645717024803, 0.015631118789315224, -0.02806011214852333, 0.041675079613924026, 0.01662733592092991, 0.007441978435963392, 0.02628115378320217, 0.007821490056812763, 0.049004390835762024, -0.007839279249310493, 0.021394945681095123, 0.017078006640076637, -0.008829566650092602, 0.010199365206062794, 0.05000060796737671, -0.05332133173942566, 0.019841322675347328, -0.02037500962615013, -0.04601573944091797, 0.019521109759807587, -0.03396625816822052, 0.011195581406354904, -0.0016396071296185255, 0.012298536486923695, -0.03287516161799431, 0.03522338718175888, 0.016271544620394707, 0.015334626659750938, 0.0342508889734745, -0.02917492762207985, 0.0009487781208008528, 0.016200385987758636, -0.0027158772572875023, 0.022414883598685265, 0.01413679402321577, 0.02226070687174797, 0.01684081181883812, 0.04060770198702812, 0.01056701596826315, 0.0009687914280220866, -0.005568141583353281, -0.02519005909562111, 0.016022490337491035, -0.007305591367185116, 0.006161127705127001, -0.06589263677597046, 0.020944276824593544, 0.013828441500663757, 0.003815867006778717, 0.014516305178403854, 0.04947878047823906, -0.02299601025879383, -0.008325528353452682, -0.009019321762025356, -0.030692972242832184, -0.022308144718408585, -0.011047335341572762, 0.011337898671627045, 0.009131989441812038, -0.022794393822550774, -0.006682955659925938, -0.018714647740125656, -0.00887700542807579, 0.015156730078160763, -0.05161352828145027, -0.014041916467249393, 0.013081278651952744, -0.01270176749676466, 0.02271137572824955, -0.07490602880716324, 0.000598545593675226, 0.007412328850477934, 0.006167057901620865, -0.03745301440358162, 0.006748184561729431, 0.009416623041033745, 0.012120640836656094, 0.051518652588129044, -0.04686963930726051, -0.02382619120180607, -0.017623553052544594, -0.01347264926880598, -0.006095899268984795, -0.016959408298134804, 0.01754053495824337, -0.033847659826278687, -0.03123851865530014, -0.011017685756087303, 0.016425721347332, 0.013342192396521568, -0.020102236419916153, 0.018845105543732643, -0.004343624692410231, 0.007833349518477917, -0.0373818576335907, 0.019924340769648552, 0.007554645650088787, -0.001912380917929113, 0.018738368526101112, -0.005256823729723692, -0.006048460491001606, 0.04924158379435539, 0.011177792213857174, -0.004625293426215649, 0.022912992164492607, 0.03783252835273743, 0.03109620325267315, -0.01477721892297268, 0.00016371981473639607, -0.004906961694359779, 0.006232286337763071, -0.004426642786711454, -0.005965442396700382, -0.011171862483024597, 0.022308144718408585, 0.033183515071868896, -0.00245941081084311, -0.006777833681553602, -0.0011615119874477386, 0.02666066586971283, -0.0115276537835598, -0.002744044177234173, 0.005416930187493563, -0.027728039771318436, -0.018845105543732643, 0.006273795384913683, 0.00496329553425312, 0.01352008804678917, 0.007702892180532217, -0.00852714292705059, -0.013982617296278477, 0.008479704149067402, -0.021987933665513992, -0.02955443784594536, 0.007702892180532217, -0.05265718698501587, -0.013579387217760086, 0.016900110989809036, -0.01132010854780674, -0.0012334116036072373, 0.00011359394557075575, -0.03021858260035515, -0.006303444504737854, -0.016307123005390167, -0.0016499843914061785, 0.004732030909508467, 0.05061731114983559, -0.011865655891597271, -0.016271544620394707, 0.005037419032305479, 0.0007008357206359506, -0.0033918817061930895, -0.008841426111757755, 0.017481237649917603, -0.003557917894795537, 0.027229931205511093, 0.004459257237613201, -0.022343724966049194, 0.006208566948771477, -0.0008057201630435884, -0.020185254514217377, -0.007868928834795952, 0.003557917894795537, -0.014397707767784595, -0.014516305178403854, 0.016188526526093483, 0.005419895052909851, -0.013081278651952744, -0.0028478167951107025, -0.0010822000913321972, 0.01418423280119896, -0.020090376958251, 0.031428273767232895, -0.0072047836147248745, -0.02333994209766388, 0.005941723007708788, 0.002671403344720602, -0.011201512068510056, 0.007477557752281427, -0.014812798239290714, -0.011693689972162247, 0.02829730696976185, 0.02606767974793911, 0.004518555942922831, -0.019627846777439117, 0.002242970746010542, -0.028321027755737305, 0.03247193247079849, 0.026992738246917725, -0.010478068143129349, -0.029364682734012604, -0.005458439234644175, 0.04499580338597298, 0.0018086083000525832, 0.010145995765924454, 0.0014572639483958483, 0.034820158034563065, 0.01381658110767603, -0.019793882966041565, -0.0011303802020847797, -0.007424188777804375, -0.01953296922147274, -0.025830484926700592, -0.00635088374838233, 0.003750638570636511, 0.015002554282546043, 0.005609650630503893, 0.028676819056272507, 0.007815559394657612, -0.024976583197712898, 0.05389059707522392, -0.0031487573869526386, 0.012203658930957317, -0.018477454781532288, 0.04136672616004944, 0.011065124534070492, -0.019449951127171516, 0.004981085192412138, 0.026091398671269417, -0.0033503726590424776, 0.013781001791357994, -0.009114200249314308, -0.017101725563406944, 0.020220832899212837, -0.014966974966228008, -0.0008086850866675377, -0.017670992761850357, 0.009861362166702747, -0.013792862184345722, 0.026233714073896408, 0.01148021500557661, 0.008289949037134647, 0.017777729779481888, 0.04395214468240738, 0.027206212282180786, 0.0021080663427710533, -0.013508228585124016, 0.022355584427714348, -0.0004414042050484568, 0.005390245467424393, -0.00740046938881278, 0.014575603418052197, -0.033491868525743484, 0.02673182263970375, -0.006125548854470253, 0.017979346215724945, 0.010276452638208866, 0.024905426427721977, -0.009149778634309769, -0.01708986610174179, 0.041105810552835464, -0.034962475299835205, -0.03515223041176796, 0.021845616400241852, 0.004548205062747002, -0.03970636427402496, -0.03116736188530922, 0.04283733293414116, -0.06062692031264305, -0.0040797460824251175, 0.006807482801377773, 0.023316223174333572, 0.06352069228887558, 0.05427010729908943, 0.022580919787287712, 0.006445761304348707, -0.017765870317816734, -0.024644510820508003, 0.012938961386680603, 0.000962120306212455, -0.01139126718044281, -0.024929145351052284, -0.0018130557145923376, 0.011409057304263115, 0.005327981896698475, 0.02938840165734291, 0.02215396985411644, 0.009796134196221828, 0.015500662848353386, 0.021679580211639404, 0.030408339574933052, -0.05901399999856949, 0.00028908083913847804, -0.029198646545410156, -0.0036053569056093693, -0.03963520750403404, -0.006356813479214907, -0.024134542793035507, -0.016200385987758636, -0.016757793724536896, -0.004477046895772219, -0.0006029929500073195, 0.008954093791544437, -0.002085829386487603, 0.028249869123101234, -0.029506999999284744, -0.006665166467428207, 0.01425539143383503, 0.030479496344923973, 0.019378792494535446, 0.0370497852563858, 0.042718734592199326, -0.010039258748292923, 0.018216539174318314, 0.01705428585410118, -0.03218729794025421, 0.05588303133845329, 0.02337552048265934, 0.019995499402284622, 0.0034600752405822277, -0.0034333907533437014, 0.024573354050517082, -0.01366240531206131, -0.0072818719781935215, -0.013674264773726463, 0.012227377854287624, -0.009742765687406063, -0.005912073887884617, 0.01820467971265316, 0.006021776236593723, 0.010418769903481007, 0.012239237315952778, 0.002745526609942317, 0.04162764176726341, -0.006184847559779882, -0.0021525402553379536, -0.007465697824954987, 0.03538942337036133, 0.03195010498166084, -0.011492075398564339, 0.01974644511938095, -0.008396686054766178, -0.0023259888403117657, -0.04539903253316879, 0.013045699335634708, 0.006101829465478659, -0.017837028950452805, 0.0012778855161741376, 0.009339534677565098, 0.014540025033056736, 0.0318077877163887, 0.014160513877868652, 0.020837539806962013, 0.041461605578660965, -0.013875880278646946, 0.005746037699282169, 0.010697472840547562, 0.016888249665498734, -0.027490846812725067, 0.04807933047413826, -0.010483997873961926, -0.0011926437728106976, 0.019236477091908455, 0.030835289508104324, 0.02173887938261032, 0.0017715466674417257, -0.01924833655357361, -0.0056837741285562515, 0.002638789126649499, 0.01413679402321577, -0.03337327018380165, 0.04340659826993942, 0.03861526772379875, 0.05223023518919945, 0.029151206836104393, 0.003065739292651415, 0.009090480394661427, -0.03626704216003418, 0.02547469176352024, 0.028890293091535568, 0.03301747888326645, -0.024786828085780144, -0.024122683331370354, -0.020208973437547684, 0.01484837755560875, 0.02983907237648964, -0.004103465471416712, 0.016164807602763176, -0.013935178518295288, -0.0015714137116447091, 0.003578672418370843, -0.0054732635617256165, 0.016757793724536896, -0.027799198403954506, -0.038662709295749664, 0.00775626115500927, 0.00558296637609601, -0.009404762648046017, -0.00894223339855671, -0.000919128826353699, 0.02753828465938568, 0.018643490970134735, 0.03828319534659386, -0.004480011761188507, -0.03882874548435211, 0.001440956722944975, -0.0001973532635020092, -0.03173662722110748, -0.005553316790610552, -0.03963520750403404, 0.02547469176352024, 0.01118372194468975, 0.016923829913139343, -0.0048150490038096905, -0.007519066799432039, 6.726688297931105e-05, 0.006226356606930494, 0.0036913398653268814, -0.053131572902202606, 0.03176034614443779, -0.0035015842877328396, 0.033420708030462265, -0.026186276227235794, 0.002434208756312728, -0.0023763927165418863, 0.06005765497684479, 0.026162557303905487, 0.02711133472621441, 0.011041405610740185, -0.011824147775769234, -0.010715262964367867, 0.0014913605991750956, -0.01757611520588398, 0.01824025996029377, 0.04608689621090889, 0.004394028801470995, -0.011545443907380104, -0.009885082021355629, -0.0038069721776992083, 0.008307738229632378, 0.0032554948702454567, 0.0010651516495272517, -0.025877922773361206, 0.045897141098976135, -0.017967484891414642, 0.012298536486923695, 0.0004106430278625339, -0.0017048356821760535, 0.014053775928914547, 0.04732031002640724, 0.004779469687491655, 0.028700537979602814, -0.006682955659925938, -0.0030716692563146353, 0.0038870254065841436, 0.02953071892261505, 0.019544828683137894, 0.005760862026363611, -0.018856965005397797, -0.007999385707080364, -0.008900724351406097, 0.003065739292651415, 0.0011370512656867504, -0.04938390105962753, 0.04758122190833092, -0.003557917894795537, -0.006718534976243973, -0.006671096198260784, 0.008076474070549011, -0.03840179368853569, 0.008740618824958801, -0.0033177584409713745, 0.0005807559937238693, -0.007305591367185116, -0.03771393001079559, -0.01221551839262247, 0.017623553052544594, 0.00919128768146038, -0.02554585039615631, 0.02473939023911953, 0.03403741493821144, 0.02753828465938568, -0.008029035292565823, -0.03247193247079849, -0.024644510820508003, -0.04518555849790573, 0.00019827979849651456, 0.0213119275867939, 0.020801959559321404, -0.03088272735476494, 0.0356503389775753, 0.0100451884791255, 0.013555667363107204, -0.00369430473074317, -0.000358015502570197, 0.006057355087250471, -0.02466823160648346, 0.007198853883892298, 0.0048713828437030315, 0.06650934368371964, -0.020280132070183754, -0.021845616400241852, -0.03382394090294838, 0.02425314113497734, -0.013875880278646946, -0.0022607604041695595, 0.04779469594359398, 0.0020546976011246443, 0.00910233985632658, -0.0021540229208767414, 0.023458538576960564, 0.005313157569617033, 0.005271648522466421, -0.0028048253152519464, -0.00365576078183949, 0.051660969853401184, 0.06276167184114456, 0.011919025331735611, 0.02278253436088562, 0.009256516583263874, 0.0029100803658366203, 0.018370715901255608, -0.010377260856330395, -0.019260196015238762, -0.014492585323750973, -0.018773946911096573, -0.004216132685542107, -0.017872607335448265, 0.008669460192322731, -0.024336159229278564, 0.01347264926880598, -0.02896145172417164, 0.01347264926880598, -0.003824761835858226, -0.03804600238800049, -0.013259174302220345, 0.008782127872109413, 0.027728039771318436, -0.00945220235735178, -0.004773539956659079, 0.0037654631305485964, -0.004112360067665577, -0.02249790169298649, -0.010051118209958076, 0.004574889317154884, -0.015809016302227974, 0.02051732689142227, 0.008307738229632378, -0.013994477689266205, 0.014302830211818218, 0.006297514773905277, -0.015346486121416092, -0.019615987315773964, -0.0045333802700042725, -0.01020529493689537, -0.020386869087815285, -0.027443407103419304, 0.019438091665506363, 0.015299047343432903, -0.016639195382595062, -0.023838050663471222, -0.004649012815207243, 0.01872650720179081, -0.012986400164663792, -0.004527450539171696, -0.01911787874996662, 0.017113585025072098, -0.0223674438893795, -0.029791632667183876, -0.039018500596284866, -0.0012956751743331552, -0.018441874533891678, -0.013330332934856415, -0.003978938329964876, 0.0038188318721950054, 0.014706061221659184, 0.033349551260471344, -0.014694200828671455, 0.0013082760851830244, -0.017908187583088875, -0.0380934402346611, 0.04943133890628815, 0.01226295717060566, -0.0047172061167657375, -0.005470298696309328, -0.0049988748505711555, 0.01869092881679535, 0.004527450539171696, 0.03323095291852951, -0.003946323879063129, 0.005025559104979038, -0.010347611270844936, -0.03365790471434593, 0.01845373399555683, 0.022972289472818375, -0.03028974123299122, 0.010857579298317432, -0.02753828465938568, -0.004067886155098677, -0.0012786267325282097, -0.01509743183851242, -0.008361106738448143, 0.01091687846928835, -0.007904508151113987, -0.010009609162807465, 0.003110213205218315, -0.0027188423555344343, 0.003993763122707605, -0.015915753319859505, -0.009333604946732521, -0.007940086536109447, -0.0021866371389478445, 0.01255945023149252, -0.018501173704862595, 0.004960330668836832, 0.017587974667549133, -0.03588753193616867, 0.022059090435504913, 0.06309374421834946, 0.02753828465938568, 0.015737857669591904, 0.026091398671269417, -0.007477557752281427, 0.036527957767248154, -0.005855740047991276, 0.006552498787641525, 0.01967528648674488, 0.030147423967719078, -0.003492689458653331, -0.0080349650233984, 0.019841322675347328, 0.0021881195716559887, -0.011213371530175209, -0.04347775876522064, 0.03263796865940094, -0.0002661026082932949, -0.0070268879644572735, 0.0054021053947508335, 0.01893998309969902, -0.027348529547452927, -0.01011634711176157, 0.005701563321053982, -0.014492585323750973, -0.015133011154830456, 0.0029916160274297, -0.017137303948402405, -0.013864019885659218, -0.021810036152601242, 0.01255945023149252, -0.0179912056773901, -0.015595540404319763, -0.0026758508756756783, 0.003632041160017252, 0.0408923365175724, 0.006149268243461847, 0.020884977653622627, -0.02134750783443451, -0.006416112184524536, -0.030811568722128868, 0.013033839873969555, -0.009298025630414486, -0.026636945083737373, 0.00232747127301991, -0.0031250379979610443, -0.014172373339533806, 0.009345464408397675, -0.009410693310201168, 0.021323788911104202, -0.020659644156694412, 0.01593947224318981, -0.029151206836104393, 0.004631223157048225, 0.012583170086145401, -0.03254308924078941, -0.0016840811586007476, -0.01914159767329693, 0.033349551260471344, -0.01251201145350933, -0.0008991155191324651, 0.024976583197712898, 6.236779881874099e-06, -0.005339841824024916, 0.015204169787466526, -0.01893998309969902, -0.01063817460089922, 0.009885082021355629, -0.02124077081680298, -0.01631898432970047, 0.0026565787848085165, 0.03410857170820236, 0.011788568459451199, 0.046418968588113785, 0.007862999103963375, -0.024312438443303108, -0.02704017609357834, 0.0010532919550314546, -0.017908187583088875, 0.03313607722520828, -0.005701563321053982, -0.008206930942833424, -0.0281312707811594, -0.037785086780786514, -0.009481851011514664, -0.01603434979915619, -0.03885246440768242, -0.03650423884391785, -0.0003376315871719271, 0.024502195417881012, 0.0003950771351810545, 0.04181739687919617, -0.017386358231306076, 0.014872097410261631, 0.0043347300961613655, 0.02725365199148655, -0.014030056074261665, 0.017445657402276993, 0.025569571182131767, 0.0007223314605653286, -0.049146708101034164, -0.055645838379859924, 0.019200896844267845, 0.023019729182124138, -0.032756563276052475, -0.003750638570636511, 0.0412244088947773, -0.01691197045147419, 0.0013534913305193186, -0.0100451884791255, -0.034962475299835205, 0.007382679730653763, -0.006866781506687403, 0.017706571146845818, -0.00679562333971262, -0.04478232562541962, 0.0070268879644572735, -0.02016153559088707, -0.02246232144534588, 0.018631629645824432, 0.014955115504562855, -0.01086350902915001, -0.0075368559919297695, 0.02260463871061802, -0.01596319116652012, -0.0009391420753672719, 0.014753499999642372, -0.039540328085422516, -0.016757793724536896, -0.006012881174683571, -0.04314568638801575, -0.023399241268634796, -0.013579387217760086, -0.02554585039615631, -0.02568816766142845, 0.00823064986616373, -0.0013016050215810537, 0.023707592859864235, 0.016010630875825882, -0.0011689242674037814, -0.027158774435520172, 0.021181471645832062, -0.06821714341640472, -0.0013082760851830244, 0.031428273767232895, 0.017706571146845818, 0.028154991567134857, 0.002844851929694414, 0.01722032204270363, -0.01413679402321577, 0.018999282270669937, -0.003750638570636511, 0.016022490337491035, 0.012464572675526142, -0.011521724052727222, -0.01565483957529068, 0.006149268243461847, -0.03742929548025131, 0.007904508151113987, 0.012844083830714226, -0.022984150797128677, -0.020991716533899307, 0.01750495657324791, -1.648084980843123e-05, 0.014528164640069008, -0.010015538893640041, 0.018050502985715866, 0.0018619770416989923, 0.0030005108565092087, 0.014646762050688267, 0.014302830211818218, 0.0277754794806242, 0.003216950921341777, 0.005399140529334545, 0.019651567563414574, -0.01480093877762556, 0.01848931424319744, -0.0037654631305485964, -0.024976583197712898, 0.012476432137191296, 0.0022296286188066006, 0.01280850451439619, 0.027301089838147163, 0.008930373936891556, 0.036812592297792435, 0.004171658772975206, 0.034084852784872055, -0.0032584599684923887, 0.01869092881679535, -0.009914731606841087, -0.004901031963527203, -0.009493711404502392, 0.0076139443553984165, 0.011954604648053646, -0.008616091683506966, -0.004491871222853661, -0.03970636427402496, -0.032898880541324615, 0.00018113879195880145, 0.009736835025250912, 0.024407317861914635, 0.004337694961577654, -0.0014987728791311383, -0.0039048148319125175, -0.02976791374385357, 0.024336159229278564, -0.03448808565735817, -0.013057558797299862, -0.03522338718175888, -0.0115276537835598, -0.016923829913139343, 0.011569162830710411, 0.005052243359386921, 0.00725222285836935, -0.04784213751554489, 0.03403741493821144, 0.026233714073896408, -0.015038133598864079, -0.004696451593190432, -0.0010555156040936708, -0.004038237035274506, 0.033871378749608994, -0.011088844388723373, -0.035626620054244995, 0.02256906032562256, -0.018536752089858055, 0.03195010498166084, -0.005342806689441204, 0.01617666706442833, -0.011575093492865562, -0.007785910274833441, 0.013864019885659218, 0.022912992164492607, -0.005651159677654505, -0.019106019288301468, 0.011177792213857174, -0.0032525300048291683, -0.008165421895682812, 0.023802470415830612, 0.01583273522555828, 0.009932520799338818, -0.025356095284223557, -0.002211838960647583, -0.009867292828857899, 0.02344667911529541, 0.01813352108001709, 0.01315243635326624, -0.030479496344923973, 0.02955443784594536, -0.007857068441808224, 0.010335751809179783, 0.009997749701142311, -0.017101725563406944, -0.013852160423994064, 0.002840404398739338, 0.006973518989980221, -0.07144299149513245, -0.009849502705037594, -0.023731311783194542, -0.02019711397588253, 0.015061852522194386, 0.025000303983688354, 0.016022490337491035, -0.002790000755339861, -0.022486042231321335, 0.038733866065740585, -0.036741431802511215, 0.027206212282180786, -0.024502195417881012, -0.011201512068510056], [0.023928305134177208, -0.009548601694405079, 0.09432607144117355, 0.006254124455153942, -0.01849929429590702, 0.0532856211066246, -0.02929752506315708, 0.04498664662241936, -0.01919286884367466, 0.03637676313519478, 0.015557583421468735, -0.014313933439552784, 0.022708570584654808, 0.015198837965726852, -0.0265471450984478, 0.027384215965867043, 0.010511234402656555, 0.01658598706126213, -0.016442488878965378, -0.02929752506315708, 0.031665243208408356, -0.001018686918541789, -0.05376394838094711, -0.004660698119550943, -0.049506835639476776, -0.03147391229867935, 0.009853534400463104, 0.008484323509037495, 0.032358817756175995, -0.09045162051916122, 0.0578775592148304, -0.049028512090444565, 0.0424036830663681, -0.004849039483815432, -0.004227214492857456, -0.0010493297595530748, 0.012089713476598263, 0.01574891433119774, 0.008077746257185936, 0.020125605165958405, -0.017076270654797554, 0.016657736152410507, -0.009614371694624424, -0.0026307981461286545, 0.01924070157110691, 0.019778817892074585, 0.00929150078445673, -0.007856519892811775, 0.01779376156628132, 0.026044901460409164, 0.04173402488231659, 0.046325962990522385, 0.0027698117773979902, 0.010893896222114563, 0.014349807985126972, 0.03085208684206009, 0.001856506452895701, 0.024035928770899773, 0.03903147950768471, -0.0254230760037899, -0.005671163555234671, -0.0008893891354091465, -0.03286106139421463, 0.0374290831387043, 0.004756363574415445, -0.000894620839972049, -0.03831398859620094, 0.01958748698234558, -0.031043417751789093, -0.029560605064034462, 0.003136030863970518, 0.005877442192286253, 0.009584476239979267, -0.06835291534662247, 0.014134560711681843, -0.005139024928212166, -0.027575546875596046, 0.0007055322057567537, 0.003127062227576971, 0.02724071964621544, -0.022469406947493553, 0.030134595930576324, 0.009458915330469608, -0.006182375364005566, 0.03678334131836891, -0.027623379603028297, -0.05256813019514084, -0.009022441692650318, -0.013022450730204582, -0.011234703473746777, -0.059216875582933426, 0.010278049856424332, -0.046541210263967514, 0.061991170048713684, -0.006050835829228163, 0.027408132329583168, 0.04843060299754143, -0.029058361425995827, 0.009865492582321167, 0.020424559712409973, -0.04539322480559349, -0.025303494185209274, -0.008370721712708473, -2.8610864319489338e-05, -0.01714801974594593, -0.034224290400743484, -0.017387183383107185, 0.03506136313080788, 0.026881974190473557, -0.03195223957300186, -0.0254230760037899, -0.030182428658008575, 0.012095692567527294, 0.055677253752946854, -0.016789276152849197, -0.008831110782921314, -0.013751898892223835, -0.017997050657868385, -0.0002197314315708354, -0.015916328877210617, -0.03482219949364662, 0.013967146165668964, 0.048980679363012314, -0.09188660234212875, -0.022098705172538757, -0.030923835933208466, -0.003994029946625233, -0.04847843572497368, -0.03293281048536301, 0.018128590658307076, 0.015043381601572037, -0.05357261747121811, 0.03783566132187843, -0.07107938081026077, -0.013500778004527092, 0.008023934438824654, 0.006702556274831295, -0.034056875854730606, -0.011545616202056408, 0.017913343384861946, 0.05223330110311508, 0.012735454365611076, -0.012831119820475578, 0.024705586954951286, -0.08394637703895569, 0.003127062227576971, -0.009309438057243824, 0.0326458141207695, 0.007270569447427988, -0.03168915957212448, -0.04151877760887146, 0.03831398859620094, -0.025566574186086655, -0.02559049054980278, 0.01425414253026247, 0.06586562097072601, 0.024825166910886765, 0.017566556110978127, 0.014134560711681843, -0.0336742177605629, -0.029345357790589333, -0.01706431247293949, -0.015079256147146225, 0.014875967986881733, 0.006553079001605511, -0.042547181248664856, -0.013668191619217396, 0.03434387221932411, -0.05649041011929512, -0.04405391216278076, -0.05452927201986313, -0.029130110517144203, -0.06400014460086823, -0.014457431621849537, -0.024059845134615898, -0.05208980292081833, 0.009614371694624424, 0.017506765201687813, 0.010128572583198547, 0.02153667062520981, -0.004266078118234873, 0.007414067629724741, -0.0532856211066246, -0.024944748729467392, -0.02968018688261509, 0.039318472146987915, -0.01053515076637268, 0.027910375967621803, -0.04890893027186394, 0.02877136506140232, 0.005671163555234671, 0.0077010635286569595, 0.03587451949715614, 0.03776391223073006, -0.026905890554189682, 0.038361821323633194, 0.003710023360326886, 0.0006132300477474928, -0.007988059893250465, -0.0024095720145851374, 0.042714595794677734, -0.02611665055155754, 0.04448440298438072, 0.01692081429064274, -0.04642162844538689, 0.0013878954341635108, 0.0006461150478571653, 0.01736326701939106, 0.012376708909869194, -0.06261299550533295, 0.014397640712559223, -0.03190440684556961, -0.03513311222195625, 0.03290889412164688, -0.03568318858742714, 0.0007967132842168212, 0.012364750728011131, 0.01588045433163643, 0.013213781639933586, 0.045369308441877365, -0.021177925169467926, 0.0019282554276287556, 0.00859194714576006, -0.06930956989526749, -0.02394026331603527, -0.010475359857082367, 0.010929770767688751, -0.0722273662686348, -0.01083410531282425, -0.05706440284848213, 0.0015575520228594542, 0.03704642131924629, -0.004463388118892908, 0.006433497183024883, -0.013476861640810966, -0.006983573082834482, -0.032191403210163116, -0.035180944949388504, 0.002588944509625435, 0.03307630866765976, -0.007264590356498957, -0.00817939080297947, 0.0013228729367256165, -0.028484368696808815, 0.0042780363000929356, -0.011808696202933788, 0.010768335312604904, -0.017291517928242683, 0.07366234809160233, 0.042284101247787476, 0.006786263547837734, -0.021704085171222687, 0.07433200627565384, -0.07524082809686661, 0.003279529046267271, 0.038409654051065445, -0.001336325891315937, -0.05505542829632759, 0.035276610404253006, 0.013560568913817406, -0.01901349611580372, 0.003557556541636586, -0.01802096702158451, 0.025088246911764145, -0.04730653390288353, 0.012938743457198143, 0.009494789876043797, -0.010290008038282394, -0.049889497458934784, 0.04357558488845825, -0.05811672285199165, 0.017136061564087868, 0.007049343083053827, -0.017769845202565193, -0.028125623241066933, 0.06251733005046844, 0.006535141728818417, -0.05467276647686958, -0.0038176467642188072, -0.012556081637740135, -0.052376799285411835, -0.0017249664524570107, -0.010624837130308151, -0.04481923207640648, 0.029058361425995827, 0.03520486131310463, 0.005895379465073347, -0.011485825292766094, -0.018606917932629585, 0.015856537967920303, 0.08380287885665894, -0.01719585247337818, 0.002789243822917342, -0.03525269404053688, 0.01863083429634571, 0.013476861640810966, -0.02537524327635765, -0.005186857655644417, -0.0020597954280674458, -0.01818838156759739, -0.0015859527047723532, 0.03848140314221382, 0.028221288695931435, -0.05017649382352829, -0.01211960893124342, -0.0024349831510335207, -0.025686156004667282, 0.016155492514371872, -0.00902842078357935, -0.016562070697546005, -0.0006790000479668379, 0.05371611565351486, -0.03403295949101448, -0.0290344450622797, -0.030660755932331085, -0.022684654220938683, -0.03137824684381485, -0.012245169840753078, 0.04013162851333618, 0.01220929529517889, 0.014696595259010792, 0.019384199753403664, 0.0017369246343150735, -0.00466966675594449, -0.006379685364663601, -0.0314260795712471, 0.0032586022280156612, 0.06634394824504852, -0.04429307207465172, -0.02767121233046055, -0.03338722139596939, -0.0037847617641091347, 0.024777334183454514, 0.007402109447866678, 0.019958190619945526, 0.004777290392667055, -0.0031300517730414867, 0.024657754227519035, 0.027910375967621803, -0.02480125054717064, 0.004860997665673494, -0.006379685364663601, -0.03015851229429245, 0.004896871745586395, -0.009572518058121204, 0.02824520505964756, 0.06046052277088165, 0.07921093702316284, 0.02333039604127407, 0.042068853974342346, -0.0029940276872366667, 0.043766915798187256, -0.020735472440719604, -0.004164434038102627, -0.03307630866765976, -0.011724988929927349, -0.03757258132100105, 0.002644251100718975, -0.016334865242242813, 0.025614406913518906, 0.017339350655674934, -0.004107632674276829, 0.01589241251349449, 0.03838573768734932, 0.06878340989351273, 0.0010351294185966253, -0.017566556110978127, -0.0003361367853358388, 0.059695202857255936, -0.03635284677147865, 0.024275092408061028, 0.04173402488231659, 0.009931262582540512, 0.009626329876482487, -0.018810207024216652, -0.03467870131134987, 0.04570413753390312, 0.008304951712489128, -0.04041862487792969, 0.029369274154305458, 0.0025082267820835114, 0.021345339715480804, 0.007150987628847361, 0.003500755177810788, 0.0042331931181252, 0.030971668660640717, -0.0773933008313179, -0.019085245206952095, -0.01211960893124342, -0.010373715311288834, 0.0056442576460540295, -0.010170426219701767, -0.01645444706082344, 0.034056875854730606, -0.06457413733005524, 0.030517257750034332, 0.03924672305583954, -0.005321387201547623, 0.005617351736873388, 0.009165939874947071, 0.004872955847531557, -0.046373795717954636, 0.003091187682002783, -0.014409598894417286, -0.013548610731959343, -0.0017354298615828156, -0.013799731619656086, 0.021763876080513, 0.007557565346360207, -0.06471763551235199, 0.036496344953775406, 0.015354294329881668, 0.0650046318769455, 0.051850639283657074, -0.009985074400901794, -0.0099671371281147, -0.04063387215137482, 0.032406650483608246, -0.0017713044071570039, -0.01975490152835846, 0.011958173476159573, 0.056203413754701614, 0.030015014111995697, 0.020269103348255157, -0.041064366698265076, 0.0156652070581913, 0.03833790495991707, 0.01623919978737831, -0.011892403475940228, -0.05395527929067612, 0.015677165240049362, 0.02062784880399704, 0.029751935973763466, 0.03338722139596939, -0.045536722987890244, -0.02446642331779003, 0.016418572515249252, 0.02136925607919693, -0.04357558488845825, -0.027408132329583168, -0.012215274386107922, 0.011127079837024212, 0.028843114152550697, 0.007109133992344141, -0.02433488331735134, 0.029369274154305458, 0.018571043387055397, 0.005545602645725012, -0.025829654186964035, 0.01854712702333927, 0.021823666989803314, -0.006529162637889385, -0.06524379551410675, 0.007778791710734367, -0.03525269404053688, 0.010361757129430771, -0.027049388736486435, -0.019264617934823036, 0.020603932440280914, -0.0068221380934119225, -0.0022197358775883913, 0.06868774443864822, 0.04838277027010918, 0.04697170481085777, -0.006451434455811977, -0.003336330410093069, -0.03458303585648537, -0.021357297897338867, -0.007581481710076332, -0.004908829927444458, -0.01155159529298544, 0.006786263547837734, -0.022301992401480675, -0.02920185960829258, 0.020855054259300232, 0.0016980606596916914, -0.02367718331515789, -0.06179983913898468, -0.006445455364882946, -0.01553366705775261, 0.04565630480647087, 0.041327446699142456, -0.05271162837743759, -0.033315472304821014, 0.0696922317147255, 0.014708553440868855, 0.023186897858977318, -0.00040732527850195765, -0.0012473869137465954, -0.0181525070220232, 0.001115099643357098, 0.005883421283215284, 0.02989543415606022, -0.010905854403972626, 0.0055964249186217785, 0.008257118985056877, -0.03460695222020149, 0.000606129935476929, 0.01741109974682331, 0.0017473880434408784, 0.03171307593584061, -0.020269103348255157, 0.04448440298438072, -0.018080757930874825, 0.024777334183454514, 0.01066669076681137, 0.017470890656113625, -0.018248172476887703, -0.009805701673030853, -0.001578478841111064, -0.04142311215400696, 0.07160554081201553, 0.018917830660939217, -0.001961140427738428, -0.029704103246331215, -0.02311514876782894, 0.013656234368681908, -0.01031392440199852, -0.03321980684995651, -0.01841558702290058, 0.0060538253746926785, -0.043503835797309875, 0.007455921266227961, -0.005243659019470215, -0.02580573782324791, -0.000914052885491401, -0.009470873512327671, -0.03089991956949234, -0.007970122620463371, 0.030923835933208466, -0.003446943359449506, -0.04477139934897423, -0.013883438892662525, 0.004828112665563822, -0.0034768388140946627, 0.002992532914504409, -0.016777317970991135, 0.010732460767030716, -0.011133058927953243, -0.02267269603908062, 0.006086710374802351, 0.01592828705906868, 0.0204484760761261, 0.019467907026410103, 0.007826624438166618, -0.007473858539015055, 0.00041031482396647334, 0.02358151786029339, 0.015438001602888107, 0.012239190749824047, 0.00019338607671670616, 0.025518741458654404, -0.019695110619068146, -0.01771005429327488, -0.009530664421617985, 0.015940245240926743, 0.004131549037992954, -0.04125569760799408, 0.033052392303943634, -0.01640661433339119, 0.008275056257843971, 0.026618894189596176, -0.010816168040037155, -0.005850536283105612, 0.013309447094798088, -0.001077730325050652, 0.007569523528218269, -0.03338722139596939, -0.017650263383984566, -0.009225730784237385, -0.0277190450578928, 0.022612905129790306, 0.004245151299983263, -0.01753068156540394, 0.045680221170186996, 0.036448512226343155, 0.0057100276462733746, -0.019551612436771393, 0.030349843204021454, 0.011491804383695126, -0.000238229229580611, 0.030995585024356842, -0.04304942488670349, -0.017207810655236244, -0.0204484760761261, 0.016657736152410507, -0.01932440884411335, -0.038194406777620316, -0.007276548538357019, 0.0349896140396595, 0.0006995531148277223, 0.02346193604171276, 0.007031405810266733, -0.0039192913100123405, -0.013955187983810902, 0.03577885404229164, 0.005799714010208845, -0.007001510355621576, 0.009895388036966324, 0.01771005429327488, 0.024609921500086784, 0.0013901375932618976, -0.00979374349117279, 0.023796765133738518, -0.05539025738835335, -0.04388649761676788, 0.02867569960653782, -0.007091196719557047, 0.018559085205197334, 0.0019865515641868114, 0.037620414048433304, 0.01536625251173973, -0.006146501284092665, -0.07055322080850601, -0.009692099876701832, -0.015784788876771927, -0.01849929429590702, -0.019563570618629456, -0.011575511656701565, -0.007892394438385963, -0.035013530403375626, 0.0012436499819159508, 0.0326458141207695, 0.0019118129275739193, -0.02437075786292553, -0.014361766166985035, -0.0037279606331139803, -0.013787773437798023, -0.02841261960566044, -0.007330360356718302, -0.030565090477466583, 0.008819152601063251, -0.0009185372036881745, -0.026571061462163925, 0.023127106949687004, -0.01635878160595894, 0.02728855237364769, -0.011880445294082165, 0.02006581425666809, 0.02324668876826763, 0.022600946947932243, 0.02898661233484745, 0.019336367025971413, -0.03360246866941452, 0.031402163207530975, 0.0062601035460829735, 0.015545625239610672, 0.03539619222283363, 0.02224220149219036, 0.014409598894417286, 0.007641272619366646, -0.01101347804069519, -0.0187623742967844, -0.010254133492708206, 0.020986594259738922, -0.011826633475720882, -0.02468167059123516, 0.014660720713436604, 0.023521726951003075, 0.037668246775865555, -0.029799768701195717, 0.014684637077152729, 0.006571016274392605, 0.04424523934721947, 0.04125569760799408, -0.009452936239540577, 0.013393154367804527, 0.010469380766153336, 0.004717499483376741, 0.022098705172538757, -0.029704103246331215, 0.03094775229692459, 0.03190440684556961, -0.021907374262809753, -0.02128554880619049, -0.02254115603864193, -0.02132142335176468, 0.04501056298613548, -0.007443963084369898, 0.015868496149778366, -0.036759424954652786, -0.025949236005544662, -0.016681652516126633, 0.0025426065549254417, 0.011461908929049969, -0.03551577404141426, 0.042188435792922974, -0.022218285128474236, 0.0044693672098219395, 0.006134543102234602, -0.016705568879842758, 0.04178185760974884, -0.01186250802129507, -0.00025766127509996295, 0.016203325241804123, 0.06940523535013199, -0.018176423385739326, -0.041805773973464966, -0.018092716112732887, -0.06916607171297073, 0.01460092980414629, -0.01473246980458498, -0.007952185347676277, -0.03704642131924629, -0.030086763203144073, -0.029130110517144203, -0.019300492480397224, 0.009429019875824451, 0.04890893027186394, 0.010439485311508179, -0.020388685166835785, -0.01399106252938509, -0.042236268520355225, -0.03594626858830452, -0.009040378965437412, 0.018594959750771523, -0.0031240726821124554, -0.010134551674127579, -0.014493306167423725, 0.007198820356279612, -0.006953677628189325, 0.03238273411989212, -0.049459002912044525, -0.01845146156847477, 0.0008258613524958491, -0.00650524627417326, 0.011312431655824184, -0.004370712209492922, 0.006846053991466761, -0.0038624899461865425, 0.030804254114627838, -0.0045261685736477375, -0.0199342742562294, 0.0028266131412237883, -0.011587469838559628, 0.011880445294082165, -0.03290889412164688, 0.012639788910746574, -0.015784788876771927, -0.01888195611536503, -0.007007489446550608, -0.04173402488231659, -0.002185356104746461, -0.018917830660939217, -0.0013437997549772263, -0.03520486131310463, 0.004606886301189661, 0.009602413512766361, 0.003877437673509121, 0.037142086774110794, -0.00012808325118385255, 0.008251139894127846, -0.025446992367506027, -0.016789276152849197, -0.025566574186086655, 0.0005844557308591902, -0.01097162440419197, 0.024167468771338463, -0.005763839464634657, 0.020556099712848663, 0.021213799715042114, 0.005127066746354103, 0.003213759046047926, 0.04300159215927124, 0.012131567113101482, -0.020783305168151855, 0.0023811713326722383, 0.0012810193002223969, 0.020006023347377777, -0.031354330480098724, -0.013213781639933586, 0.006089699920266867, 0.0265471450984478, 0.026451479643583298, 0.004666677210479975, -0.011790758930146694, -0.008430512621998787, 0.006230208091437817, -0.004439471755176783, -0.005073254927992821, 0.019958190619945526, -0.006439476273953915, 0.004442461300641298, 0.01125264074653387, 0.009417061693966389, -0.0017578514525666833, 0.008717508055269718, -0.017028437927365303, 0.022864026948809624, -0.011396138928830624, -0.04723478481173515, -0.001442454638890922, -0.015258628875017166, 0.017088228836655617, -0.008251139894127846, -0.006101658102124929, 0.04003596305847168, -0.03455911949276924, -0.06610478460788727, 0.006194333545863628, -0.040275126695632935, -0.0026875995099544525, -0.02288794331252575, 0.00889688078314066, 0.10226629674434662, 0.011103163473308086, -0.004744405392557383, 0.02728855237364769, -0.019121119752526283, 0.016310948878526688, -0.043503835797309875, 0.021357297897338867, -0.022565072402358055, 0.010152488946914673, 0.0011748905526474118, -0.03702250495553017, 0.0014260121388360858, 0.012011985294520855, -0.014624846167862415, -0.01919286884367466, 0.012376708909869194, -0.04192535579204559, -0.022600946947932243, -0.0032556126825511456, -1.6419133316958323e-05, 0.0027757908683270216, 0.009148002602159977, -0.007455921266227961, -0.005452927201986313, 0.011384180746972561, 0.0031151040457189083, -0.02506433054804802, 0.018738457933068275, -0.015115130692720413, -0.017255643382668495, -0.015605416148900986, -0.01348881982266903, -0.02324668876826763, 0.006295978091657162, -0.00876534078270197, 0.06356965005397797, -0.030278094112873077, -0.03939022123813629, -0.03917497396469116, -0.03015851229429245, -0.008514218963682652, -0.016645777970552444, 0.0051898472011089325, -0.0676354318857193, 0.005859504919499159, -0.004391639027744532, -0.023665225133299828, -0.02846045233309269, -0.038887981325387955, 0.02328256331384182, 0.014493306167423725, -0.0005355019238777459, -0.02102246880531311, 0.00248132087290287, -0.002231694059446454, -0.018822165206074715, 0.004197319038212299, 0.007575502619147301, -0.03800307586789131, 0.025183912366628647, -0.00190433906391263, 0.02793429233133793, -0.0005366230034269392, 0.02563832327723503, -0.013118116185069084, 0.02058001607656479, -0.012914827093482018, 0.009488810785114765, -0.006756368093192577, -0.012071776203811169, -0.044197410345077515, -0.013440987095236778, -0.021165966987609863, 0.03506136313080788, 0.021967165172100067, -0.023306479677557945, 0.01438568253070116, 0.0038056885823607445, 0.0059103271923959255, -0.026618894189596176, -0.03970113396644592, -0.03709425404667854, 0.039318472146987915, 0.039629384875297546, 0.019467907026410103, -0.01403889525681734, 0.01940811611711979, 0.030565090477466583, 0.010941728949546814, -0.030995585024356842, -0.004588949028402567, -0.018571043387055397, -0.013763857074081898, -0.014457431621849537, 0.017088228836655617, -0.04527364298701286, -0.018786290660500526, -0.006756368093192577, -0.020914845168590546, -0.034798283129930496, -0.005829609464854002, -0.0028624876867979765, 0.01399106252938509, 0.01884608156979084, -0.01562933251261711, 0.052902959287166595, 0.006732451729476452, -0.013094199821352959, -0.06179983913898468, 0.013895397074520588, 0.008908838964998722, -0.013919313438236713, -0.02563832327723503, 0.03542010858654976, -0.003799709491431713, 0.0529986247420311, -0.013034408912062645, 0.01203590165823698, -0.0019461927004158497, 0.020532183349132538, 0.009279542602598667, -0.0003566898813005537, -0.004137528128921986, 0.006182375364005566, 0.005656215827912092, 0.022708570584654808, 0.04426915571093559, 0.03690292313694954, 0.0578775592148304, 0.0037249710876494646, -0.01229300256818533, -0.002318390877917409, 0.012938743457198143, 0.021488837897777557, -0.011156975291669369, 0.0064693717285990715, 0.019037412479519844, 0.020520225167274475, -0.022577030584216118, 0.025231745094060898, 0.0003000754222739488, -0.011748905293643475, 0.002907330868765712, 0.01818838156759739, 0.003279529046267271, 0.017243685200810432, -0.029584521427750587, 0.0385531522333622, -0.020245186984539032, -0.001048582373186946, 0.0035426088143140078, 0.028125623241066933, -0.01190436165779829, 0.014792260713875294, -0.022600946947932243, 0.013357279822230339, 0.0033154035918414593, 0.012508248910307884, -0.03412862494587898, 0.03467870131134987, 0.025303494185209274, -0.034535203129053116, -0.018511252477765083, -0.0060388776473701, 0.02089092880487442, -0.03365030139684677, -0.037237752228975296, 0.03573102131485939, 0.03286106139421463, 0.016741443425416946, -0.014636804349720478, 0.021955206990242004, -0.009345312602818012, 0.018618876114487648, 0.017865510657429695, 0.0007387908990494907, 0.004050831310451031, 0.02463383786380291, -0.00719284126535058, -0.013955187983810902, 0.03484611585736275, 0.009375208057463169, -0.011210787110030651, -0.0037189919967204332, -0.015390168875455856, 0.036018017679452896, -0.003754866309463978, 0.022875985130667686, 0.010146509855985641, -0.0060059926472604275, 0.021596461534500122, 0.02179975062608719, 0.0020523215644061565, 0.035970184952020645, 0.036448512226343155, 0.045417141169309616, 0.018164465203881264, 0.013357279822230339, 0.022684654220938683, -0.005261596292257309, 0.017291517928242683, 0.012520207092165947, 0.0049895476549863815, -0.02745596505701542, -0.005976097192615271, 0.02745596505701542, 0.010744418948888779, -0.0204484760761261, 0.024143552407622337, -0.011288515292108059, 0.018618876114487648, -0.010176405310630798, -0.028747448697686195, -0.03408079221844673, 0.022600946947932243, -0.029010528698563576, 0.010941728949546814, 0.024825166910886765, -0.008705549873411655, 0.008023934438824654, 0.0016472383867949247, 0.016729485243558884, 0.023653266951441765, 0.020388685166835785, -0.0035366297233849764, -0.005339324474334717, 0.006092689465731382, -0.015282545238733292, 0.017040396109223366, 0.013034408912062645, 0.007503753527998924, -0.00513603538274765, -0.020771346986293793, -0.002690589055418968, 0.026355814188718796, 0.00046113706775940955, -0.039270639419555664, -0.02120184153318405, 0.024538172408938408, 0.023605434224009514, -0.012173420749604702, 0.0008961156127043068, 0.0010463402140885592, 0.011563553474843502, 0.01348881982266903, 0.008430512621998787, 0.040586039423942566, -0.020532183349132538, -0.0022287045139819384, 0.012227232567965984, -0.04056212306022644, -0.009327375330030918, -0.04544105753302574, 0.0023871504236012697, 0.000581839878577739, -0.001971603836864233, -0.016609903424978256, 0.006056814920157194, 0.00380867812782526, 0.0021778822410851717, 0.020556099712848663, -0.03972505033016205, 0.0174469742923975, 0.027432048693299294, 0.013285530731081963, 0.0002944700245279819, 0.019527696073055267, 0.018116632476449013, 0.06337831914424896, 0.0156652070581913, 0.003943207673728466, -0.025446992367506027, -0.023796765133738518, -0.005291491746902466, -0.009458915330469608, -0.014792260713875294, 0.00826907716691494, 0.014182393439114094, -0.022038914263248444, -0.02724071964621544, -0.0038804272189736366, -0.008000018075108528, -0.006397622637450695, -0.0003320261603221297, -0.01706431247293949, -0.04273851215839386, 0.04453223571181297, 0.02132142335176468, -0.009572518058121204, -0.015485834330320358, 0.015617374330759048, 0.0020612902007997036, 0.020723514258861542, -0.009476852603256702, 0.011473867110908031, 0.002801202004775405, 0.02999109774827957, -0.0047264681197702885, -0.03233490139245987, 0.03821832314133644, -0.004642760846763849, 0.022290034219622612, 0.04735436663031578, 0.041494861245155334, 0.029082277789711952, 0.017997050657868385, 0.006523183546960354, 0.03642459586262703, -0.0187623742967844, 0.03946197032928467, 0.008000018075108528, -0.004328858572989702, 0.018642792478203773, 0.008131558075547218, 0.025183912366628647, -0.03420037403702736, -0.019946232438087463, -0.028580034151673317, 0.0012062807800248265, 0.02515999600291252, 0.01279524527490139, -0.03635284677147865, 0.06447847187519073, 0.01727955974638462, 0.009309438057243824, -0.004379680845886469, -0.017506765201687813, 0.017076270654797554, -0.028269121423363686, 0.0069237821735441685, 0.0015605415683239698, -0.011617365293204784, -0.042977675795555115, -0.010642774403095245, -0.010026928037405014, 0.01518687978386879, -0.0009050842490978539, 0.004194329492747784, 0.014565055258572102, -0.023402145132422447, 0.02358151786029339, -0.010553088039159775, 0.054385773837566376, 0.01353665255010128, -0.012328877113759518, -0.023916346952319145, 0.05462493747472763, -0.018343837931752205, -0.031928323209285736, 0.008155474439263344, 0.00513603538274765, 0.00835876353085041, -0.017542639747262, 0.03757258132100105, 0.004388649482280016, 0.025207828730344772, 0.02341410331428051, -0.020520225167274475, 0.0302063450217247, 0.03998813033103943, 0.013082241639494896, 0.00398207176476717, -0.004684614483267069, -0.022840110585093498, 0.0049805790185928345, -0.007856519892811775, -0.005668174009770155, -0.028149539604783058, 0.0006973109557293355, -0.022899901494383812, -0.013560568913817406, 0.023521726951003075, -0.0072287158109247684, 0.014804218895733356, -0.001663680886849761, -0.003895374946296215, 0.015904370695352554, -0.03111516684293747, -0.023258646950125694, -0.022122619673609734, 0.008430512621998787, 0.013297488912940025, -0.039055392146110535, 0.018702583387494087, -0.0181525070220232, -0.017207810655236244, -0.0084663862362504, -0.0027698117773979902, 0.010068781673908234, -0.029584521427750587, 0.015162963420152664, -8.889220043784007e-05, 0.02850828506052494, 0.02580573782324791, -0.022074788808822632, -0.025207828730344772, -0.022170452401041985, 0.014445473439991474, -0.011019457131624222, -0.0006147248204797506, -0.024968665093183517, 0.003904343582689762, 0.012059818021953106, 0.0053034499287605286, -0.03599410131573677, 0.0457758866250515, 0.001992530655115843, 0.021787792444229126, -0.02728855237364769, -0.02163233608007431, 0.007264590356498957, 0.0059671285562217236, -0.0022944745142012835, 0.0024080772418528795, 0.00530942901968956, -0.012615872547030449, -0.02728855237364769, 0.03546794131398201, -0.01425414253026247, 0.02136925607919693, -0.001386400661431253, 0.003931249491870403, -0.027192886918783188, 0.007707042619585991, 0.047760944813489914, 0.020639806985855103, 0.00466966675594449, 0.010236196219921112, -0.004813164938241243, 0.02972801961004734, -0.024167468771338463, 0.03642459586262703, -0.0062122708186507225, 0.007300464902073145, 0.016861025243997574, 0.022481365129351616, 0.019898399710655212, 0.009183877147734165, -0.02707330510020256, -0.024609921500086784, 0.016119617968797684, -0.029799768701195717, 0.023569559678435326, -0.012424541637301445, 0.0020523215644061565, 0.025781821459531784, -0.0066786399111151695, -0.017124103382229805, 0.002877435414120555, -0.004810175392776728, 0.01788942702114582, -0.014481347985565662, -0.020771346986293793, -0.02319885604083538, -0.003127062227576971, 0.015497792512178421, -0.031186915934085846, -0.0040059881284832954, 0.014301975257694721, -0.0063079362735152245, -0.014409598894417286, 0.019216785207390785, -0.005243659019470215, 0.0006681629456579685, 0.02041260153055191, 0.022014997899532318, 0.021644294261932373, 0.0349896140396595, -0.027192886918783188, 0.04283417761325836, 0.017913343384861946, 0.006319894455373287, 0.018786290660500526, 0.007210778538137674, 0.014397640712559223, -0.027001556009054184, -0.015282545238733292, -0.01827208884060383, -0.0198386088013649, -0.0019177920185029507, 0.006762347184121609, 0.002119586104527116, -0.023605434224009514, 0.014840093441307545, 0.015820663422346115, -0.01653815433382988, -0.028101706877350807, 0.0026980629190802574, 0.00783260352909565, -0.03833790495991707, 0.010517213493585587, 0.00972797442227602, -0.007928268983960152, 0.012191358022391796, -0.008364742621779442, -0.014911842532455921, 0.022469406947493553, -0.004798217210918665, -0.0010082235094159842, -0.021596461534500122, 0.024872999638319016, -0.010385673493146896, -0.012149504385888577, 0.00273094791918993, 0.0007630809559486806, -0.024227259680628777, -0.0011113627115264535, -0.001461139298044145, 0.008585968054831028, 0.009183877147734165, 0.0032855081371963024, -0.04137527942657471, -0.010056823492050171, -0.019467907026410103, 0.05156364291906357, -0.015724997967481613, -0.05247246474027634, -0.031234748661518097, -0.01732739247381687, 0.04783269390463829, -0.04529755935072899, -0.011168933473527431, 0.028125623241066933, 0.009913325309753418, -0.015808705240488052, 0.011928278021514416, -0.00511510856449604, 0.01757851429283619, 0.019958190619945526, 0.00292227859608829, -0.02236178331077099, 0.004376691300421953, 0.03171307593584061, 0.021261632442474365, 0.0198386088013649, -0.031832657754421234, 0.0013804216869175434, -0.05749489739537239, 0.02511216327548027, 0.007467879448086023, 0.04015554487705231, -0.013596443459391594, 0.0042242249473929405, -0.007378193084150553, -0.006325873546302319, -0.005820640828460455, -0.024251176044344902, -0.038935814052820206, -0.0005724975490011275, -0.010068781673908234, 0.0011278052115812898, 0.010541129857301712, 0.06352181732654572, 0.009500768966972828, 0.01066071167588234, 0.06701360642910004, 0.010786272585391998, -0.026786308735609055, -0.0068759494461119175, 0.0010067287366837263, -0.014445473439991474, -0.018953705206513405, -0.014660720713436604, -0.008789257146418095, 0.0529986247420311, -0.033793799579143524, 0.007814666256308556, 0.021739959716796875, -0.021010510623455048, -0.016908857971429825, 0.023832639679312706, -0.04065778851509094, -0.006146501284092665, 0.014409598894417286, 0.005778787191957235, -0.017423057928681374, -0.026044901460409164, -0.003434985177591443, -0.013704066164791584, -0.020436517894268036, -0.004887903109192848, -0.009476852603256702, 0.0017055345233529806, 0.003937228582799435, 0.001453665434382856, -0.026881974190473557, -0.01958748698234558, 0.003997019492089748, -0.02846045233309269, -0.02071155607700348, -0.006427518092095852, -0.03922280669212341, -0.0012077755527570844, 0.009674162603914738, -0.0302063450217247, -0.005216753110289574, 0.006451434455811977, -0.026451479643583298, 0.005557560827583075, 0.027049388736486435, 0.019551612436771393, -0.01168313529342413, 0.02362935058772564, -0.05271162837743759, 0.018212297931313515, 0.0032645813189446926, 0.007396130356937647, 0.024406632408499718, -0.0026681674644351006, -0.003434985177591443, -1.1835555596917402e-05, -0.011934257112443447, -0.026929806917905807, 0.029393190518021584, 0.008974608965218067, -0.02489691600203514, -0.0398685485124588, 0.0010269081685692072, -0.012699579820036888, 0.02484908327460289, -0.019563570618629456, -0.013452945277094841, 0.00963828805834055, 0.04453223571181297, 0.025399159640073776, 0.009171918965876102, 0.008155474439263344, 0.01714801974594593, -0.027575546875596046, 0.019420074298977852, -0.0034230269957333803, -0.008287014439702034, 0.03829007223248482, 0.02236178331077099, 0.024251176044344902, 0.03185657411813736, -0.02181170880794525, 0.04338425397872925, -0.008245160803198814, 0.014313933439552784, 0.028053874149918556, -0.035491857677698135, -0.02559049054980278, -0.015162963420152664, 0.001222723163664341, 0.0021420076955109835, 0.009279542602598667, 0.0397728830575943, 0.015461917966604233, 0.0018639803165569901, -0.000980570213869214, -0.023653266951441765, -0.01998210698366165, -0.0005657710717059672, 0.006230208091437817, -0.008914818055927753, -0.009345312602818012, 0.002204788150265813, -0.022469406947493553, -0.03857706859707832, 0.02445446513593197, 0.018463419750332832, 0.011719009838998318, -0.0030224283691495657, -0.023820681497454643, -0.029871517792344093, 0.03895973041653633, -0.016466405242681503, 0.012651747092604637, -0.020484350621700287, -0.019479865208268166, -0.006236187182366848, -0.014565055258572102, -0.0186667088419199, 0.01928853429853916, -0.043934330344200134, 0.020855054259300232, 0.031186915934085846, -0.004355764482170343, 0.01997014880180359, -0.002884909277781844, -0.005261596292257309, -0.013823647983372211, 0.010547108948230743, -0.02041260153055191, 0.007252632174640894, 0.005742912646383047, 0.00400299858301878, 0.0055485921911895275, 0.024119636043906212, -0.004089695401489735, -0.003306434955447912, 0.01998210698366165, -0.0111629543825984, 0.0016681652050465345, -0.013165948912501335, 0.006941719446331263, -0.03929455578327179, 0.006295978091657162, 0.04795227572321892, 0.016526196151971817, -0.01650227978825569, -0.02168016880750656, 0.04388649761676788, -0.03817049041390419, 0.04285809397697449, 0.003174894955009222, 0.007784770801663399, -0.02685805782675743, 0.016729485243558884, 0.008579988963901997, 0.016035910695791245, -0.03965330123901367, 0.005976097192615271, 0.01553366705775261, -0.0003807930916082114, 0.016693610697984695, -0.0678267553448677, -0.02067568153142929, 0.013297488912940025, -0.004292984027415514, -0.014050853438675404, -0.0032107695005834103, 0.008783278055489063, -0.01810467429459095, -0.01292678527534008, 0.01788942702114582, -0.024753417819738388, 0.04273851215839386, -0.014146518893539906, 0.018439503386616707], [0.00503762811422348, -0.003410923993214965, 0.043027475476264954, -0.0036887237802147865, -0.015087109990417957, 0.03306104615330696, -0.017847925424575806, 0.04247760400176048, -0.01467470545321703, 0.002053427742794156, 0.021914685145020485, 0.0019102320075035095, 0.04293582960963249, -0.02527119405567646, -0.02270512655377388, 0.019841210916638374, -0.0011434184852987528, 0.017240773886442184, -0.03180092200636864, -0.02216671034693718, 0.03232788294553757, -0.02533992938697338, -0.034825216978788376, 0.0015221713110804558, -0.029532702639698982, -0.010722501203417778, -0.01036164816468954, 0.009324910119175911, 0.0424317792057991, -0.08041875809431076, 0.05012998729944229, -0.04838872328400612, 0.04376063495874405, -0.014365402981638908, 0.026989543810486794, -0.01798539236187935, -0.012761609628796577, -0.01286471076309681, 0.03138852119445801, -0.0008627547067590058, -0.02733321487903595, 0.031113583594560623, 0.02575233206152916, -0.004224276170134544, 0.051825422793626785, -0.008185071870684624, 5.598060670308769e-05, -0.03526053577661514, 0.03826191648840904, 0.033335983753204346, 0.03963659703731537, 0.029578523710370064, -0.025042081251740456, -0.0017426928970962763, -0.02010468952357769, -0.02115861140191555, -0.007010866422206163, 0.001974669983610511, 0.03654356673359871, -0.021525193005800247, -0.02889118529856205, 0.0031904024071991444, -0.03773495927453041, 0.034321170300245285, 0.016118118539452553, 0.001632432104088366, -0.03436699137091637, 0.02577524445950985, -0.05865300074219704, -0.012223193421959877, -0.03752875700592995, 0.019176781177520752, 0.03752875700592995, -0.06383095681667328, -0.030059661716222763, 0.005011852830648422, -0.03610825166106224, -0.0027651109267026186, 0.0057736546732485294, -0.0006318514933809638, -0.03981988877058029, 0.05581199377775192, -0.003296367358416319, -0.018959123641252518, 0.06653449684381485, -0.04907606542110443, -0.04337114468216896, 0.0037460022140294313, -0.02166265994310379, 0.030563712120056152, -0.02320917509496212, -0.014067555777728558, 0.006203242111951113, 0.07093346863985062, 0.027081189677119255, 0.02316335216164589, 0.023048795759677887, -0.03510015457868576, 0.013609329238533974, 0.03459610417485237, -0.01863836497068405, -0.03546673431992531, 0.030311686918139458, -0.0023584349546581507, -0.0010073824087157845, -0.03778078034520149, 0.0010424654465168715, 0.022384367883205414, 0.02627929300069809, -0.008712032809853554, 0.007887224666774273, -0.03567293658852577, -0.003995162900537252, 0.03988862410187721, -0.006002767942845821, 0.005160776432603598, 0.03038042038679123, -0.031067760661244392, 0.019302794709801674, 0.010126806795597076, -0.017286596819758415, 0.03097611479461193, 0.04211102053523064, -0.07941066473722458, -0.0002328721748199314, -0.02731030248105526, -0.007818490266799927, -0.01657634600996971, -0.048205435276031494, 0.01646178960800171, -0.003087301505729556, -0.0474722720682621, -0.0051034982316195965, -0.015820272266864777, -0.018752921372652054, 0.006524000782519579, -0.02737903781235218, -0.05943198502063751, -0.015316222794353962, 0.03762039914727211, 0.01525894459336996, -0.008872412145137787, -0.00850583054125309, 0.015064198523759842, -0.0697879046201706, 0.00898696854710579, -0.0015923372702673078, 0.008391274139285088, 0.026096003130078316, -0.003660084679722786, -0.020975321531295776, 0.01916532590985298, -0.008288173004984856, -0.030105484649538994, 0.003960795700550079, 0.06726765632629395, -0.009599846787750721, 0.007446181494742632, -0.004679638892412186, -0.02831840142607689, -0.026531318202614784, -0.03196130320429802, -0.0003196846228092909, 0.0071196951903402805, 0.005979856476187706, -0.012589775025844574, -0.006077229976654053, -0.004138358868658543, -0.05640769004821777, -0.030082574114203453, -0.03924710676074028, -0.017412608489394188, -0.07464510947465897, -0.014502870850265026, -0.03448154777288437, -0.038422297686338425, 0.01598065160214901, 0.038468118757009506, -0.02685207687318325, 0.028478780761361122, -0.020242158323526382, -0.012532496824860573, -0.03555838018655777, -0.029280677437782288, -0.01661071367561817, 0.01598065160214901, -0.012429395690560341, 0.005344067234545946, -0.03548964858055115, 0.030632445588707924, -0.02930358797311783, 0.022315634414553642, 0.0015393549110740423, 0.030288776382803917, -0.020001590251922607, 0.02119297906756401, -0.03090738132596016, 0.03468775004148483, -0.017424065619707108, -0.007818490266799927, 0.022945694625377655, -0.023575756698846817, 0.06910056620836258, 0.05631604418158531, -0.0413549467921257, 0.031067760661244392, 0.0037603217642754316, 0.02891409583389759, 0.019795387983322144, -0.028089288622140884, 0.037368375808000565, -0.0402781143784523, -0.058057304471731186, 0.03251117467880249, -0.006535456515848637, 0.009559751488268375, -0.03299231082201004, 0.01491527445614338, -0.02944105677306652, 0.033794209361076355, -0.014686161652207375, 0.010121079161763191, -0.021891774609684944, -0.0537041537463665, -0.02728739194571972, 0.02021924778819084, 0.017859380692243576, -0.06768006086349487, 0.023598667234182358, -0.06034843996167183, 0.002883963519707322, 0.041561149060726166, -0.005853844340890646, 0.0051636407151818275, -0.021513737738132477, 0.022602025419473648, -0.03198421373963356, -0.04683075472712517, 0.04696822166442871, 0.030036751180887222, -0.011203639209270477, -0.04011773690581322, 0.0004131198802497238, -0.030242953449487686, 0.022017786279320717, -0.002014764817431569, -0.010384559631347656, -0.014594515785574913, 0.06575550884008408, 0.025706510990858078, 0.01209718082100153, -0.006747385952621698, 0.049763403832912445, -0.09696073830127716, 0.03193839266896248, 0.01848944090306759, 0.01473198365420103, -0.04188190773129463, 0.0328548438847065, -0.012417939491569996, 0.01751570962369442, 0.009691491723060608, 0.001715485705062747, 0.014984008856117725, -0.05879046767950058, 0.019520452246069908, 0.00449921190738678, -0.033725474029779434, -0.04756391793489456, 0.05631604418158531, -0.04605177044868469, -0.0019474629079923034, 0.03042624332010746, 0.008242350071668625, 0.004338832572102547, 0.03709344193339348, -0.02065456286072731, -0.02276240475475788, 0.0024643996730446815, 0.023529933765530586, -0.06891727447509766, -0.019909944385290146, -0.03872014582157135, -0.043554436415433884, 0.0044104307889938354, 0.007108239457011223, -0.007766940165311098, -0.0038290556985884905, -0.03885761275887489, 0.01443413645029068, 0.10704172402620316, -0.019967222586274147, 0.017286596819758415, -0.030334599316120148, 0.05265023186802864, 0.010481932200491428, -0.016415966674685478, -0.004903024062514305, -0.014491414651274681, -0.010951614938676357, -0.002876803744584322, 0.01800830475986004, 0.025019170716404915, -0.05012998729944229, -0.045662276446819305, 0.017320964485406876, -0.003597078612074256, 0.027195746079087257, 0.014583060517907143, 0.01950899511575699, -0.01491527445614338, 0.04579974338412285, -0.007148334290832281, -0.04893859848380089, -0.024629678577184677, -0.019497539848089218, -0.03565002605319023, -0.009668580256402493, 0.027699796482920647, -0.005501582752913237, 0.02056291699409485, 0.03713926300406456, 0.02577524445950985, -0.025064993649721146, -0.010115351527929306, -0.03411496803164482, 0.024492209777235985, 0.048159610480070114, -0.05824059620499611, -0.026531318202614784, -0.037826601415872574, -0.01263559702783823, 0.05017580837011337, 0.010991709306836128, 0.025408662855625153, -0.001004518591798842, 0.02889118529856205, 0.006128780078142881, 0.01418211217969656, -0.014457047916948795, 0.029693081974983215, -0.011936802417039871, -0.011787878349423409, -0.016816914081573486, 0.03191547840833664, 0.02520246058702469, 0.05558288097381592, 0.06603045016527176, 0.01208572555333376, 0.025110814720392227, -0.006953588221222162, 0.008116338402032852, -0.023323731496930122, -0.032717376947402954, -0.014101922512054443, -0.011787878349423409, -0.0006254076724871993, 0.01473198365420103, 0.01286471076309681, 0.016095208004117012, 0.03679559379816055, 0.006243336945772171, 0.024469299241900444, 0.035398002713918686, 0.045708101242780685, -0.02731030248105526, -0.011673321947455406, 0.0032419529743492603, 0.06859651952981949, -0.04577683284878731, 0.04142368212342262, 0.04080507531762123, 0.02378195896744728, -0.002142209094017744, -0.007618016563355923, -0.028707893565297127, 0.05434567108750343, 0.019749565050005913, -0.014777806587517262, 0.03718508407473564, 0.009101524949073792, 0.014514326117932796, -9.200330532621592e-05, 0.02265930362045765, 0.010292913764715195, 0.000528034521266818, -0.08550507575273514, 0.027035366743803024, -0.028226755559444427, 0.004728325176984072, 0.02380486950278282, -0.02481296844780445, -0.026691697537899017, 0.026439672335982323, -0.02421727403998375, 0.011822245083749294, 0.04738062620162964, 0.02879953943192959, -0.004396111238747835, 0.033885855227708817, -0.020345259457826614, -0.04852619394659996, -0.001951758749783039, -0.00199471740052104, -0.02067747339606285, -0.014147745445370674, -0.02430891990661621, 0.006890581920742989, -0.008213710971176624, -0.026027269661426544, 0.03365674242377281, 0.030724091455340385, 0.06195222958922386, 0.041538238525390625, -0.015373500995337963, -0.002430032705888152, -0.05943198502063751, 0.04701404646039009, -0.004676775075495243, -0.003124532289803028, 0.03367965295910835, 0.036451924592256546, 0.010476204566657543, 0.021353358402848244, -0.04263798147439957, 0.02879953943192959, 0.016289955005049706, 0.006105869077146053, -0.015614069998264313, -0.04756391793489456, 0.019463174045085907, -0.003634309396147728, -0.0031703549902886152, 0.015568247064948082, -0.03656648099422455, -0.029509790241718292, 0.0020605875179171562, 0.023919425904750824, -0.043004561215639114, -0.03315269201993942, -0.03099902719259262, 0.003221905557438731, 0.02169702760875225, -0.017412608489394188, -0.030151307582855225, 0.020528549328446388, -0.022831138223409653, -0.00012314839113969356, -0.06195222958922386, 0.04229431226849556, -0.009347821585834026, -0.02419436164200306, -0.09980174899101257, 0.02944105677306652, -0.023484110832214355, 0.02783726342022419, -0.036910150200128555, -0.04440215229988098, 0.05122973024845123, -0.001484940410591662, -0.0020620194263756275, 0.022487469017505646, 0.05924869328737259, 0.058469709008932114, 0.00898696854710579, 0.014548693783581257, -0.03051788918673992, -0.039499130100011826, 0.022785315290093422, 0.023484110832214355, -0.0021393452771008015, -0.00799605343490839, -0.027035366743803024, -0.025889800861477852, 0.04788467660546303, 0.016381599009037018, -0.011512942612171173, -0.04660164192318916, -0.01852380856871605, -0.01915387064218521, 0.016404511407017708, 0.03457319363951683, -0.0597069226205349, -0.045158226042985916, 0.047151513397693634, 0.017343875020742416, 0.02430891990661621, 0.0007002274505794048, -0.004187045153230429, -0.012532496824860573, -0.01237211748957634, 0.009737314656376839, 0.024652589112520218, -0.009473834186792374, 0.0012708627618849277, 0.014079011045396328, -0.029693081974983215, 0.006277703680098057, 0.008637570776045322, 0.013792619109153748, -0.00023430412693414837, -0.05320010334253311, 0.002914034528657794, -0.005258149933069944, 0.003176082856953144, 0.010407471098005772, -0.0039779795333743095, -0.024881701916456223, 0.021296080201864243, -0.020940953865647316, -0.020860765129327774, 0.07052107155323029, 0.0007353104301728308, -0.020872220396995544, -0.029028652235865593, -0.04985504969954491, -0.0034653383772820234, 0.0014706208603456616, -0.02269367128610611, 0.011673321947455406, 0.013322937302291393, -0.035398002713918686, -0.014205023646354675, -0.004470572806894779, -0.02740194834768772, 0.018787289038300514, -0.037964072078466415, -0.037460021674633026, -0.010338736698031425, 0.015808816999197006, 0.007182701490819454, -0.03833065181970596, -0.02733321487903595, 0.050359100103378296, 0.0029383779037743807, 0.0009501041495241225, -0.011913890950381756, 0.01602647453546524, 0.006105869077146053, -0.0484345480799675, 0.03411496803164482, 0.01914241537451744, 0.0069421324878931046, 0.013987366110086441, 0.0019159598741680384, -0.01472052838653326, -0.009708675555884838, 0.00849437527358532, 0.02276240475475788, 0.012979267165064812, 0.007933047600090504, 0.015236033126711845, -0.019268427044153214, -0.03312978148460388, 0.018970578908920288, -0.006884854286909103, -0.016816914081573486, -0.030334599316120148, 0.051871247589588165, -0.01860399916768074, -0.008213710971176624, 0.02687498740851879, 0.0017784918891265988, 0.007583649829030037, 0.054849717766046524, -0.0025646367575973272, 0.02575233206152916, -0.00984041579067707, -0.049717582762241364, -0.009954972192645073, -0.0035684392787516117, 0.03510015457868576, 0.012841799296438694, 0.013300025835633278, 0.03150307759642601, 0.06204387545585632, 0.0030958931893110275, -0.008860955946147442, 0.03420661389827728, 0.021296080201864243, -0.003124532289803028, 0.03351927176117897, -0.03269446641206741, -0.0014763487270101905, 0.00014605971227865666, 0.005409937351942062, -0.028272578492760658, -0.027264481410384178, -0.005555997136980295, 0.02208651974797249, 0.008923962712287903, 0.011266645975410938, 0.0069936830550432205, -0.01544223539531231, -0.018409252166748047, 0.03560420498251915, -0.005850980523973703, -0.0031789466738700867, 0.01315110269933939, 0.01082560233771801, 0.013666607439517975, -0.0057736546732485294, -0.019279882311820984, 0.023025885224342346, -0.03214459493756294, -0.03400041162967682, 0.0037603217642754316, 0.007320169359445572, 0.01233774982392788, 0.02330082096159458, 0.02479005791246891, 0.009319182485342026, 0.007440453860908747, -0.05842388793826103, -0.010447565466165543, 0.011089082807302475, -0.035375092178583145, -0.0403926707804203, -0.018340518698096275, 0.004473436623811722, -0.053887445479631424, 0.00797886960208416, 0.02735612541437149, -0.0012350637698546052, -0.04064469784498215, -0.014640338718891144, -0.01653052307665348, -0.020963864400982857, -0.041996464133262634, -0.023403922095894814, -0.020826397463679314, 0.028180934488773346, -0.014846540987491608, -0.024996258318424225, 0.01287616603076458, -0.03049497865140438, 0.028203845024108887, 0.0014548692852258682, 0.01656489074230194, 0.012074270285665989, 0.028524603694677353, 0.013013634830713272, 0.019738109782338142, -0.03498559817671776, 0.03441281616687775, 0.02843295782804489, 0.014766351319849491, 0.05324592813849449, 0.006346438080072403, 0.026027269661426544, 0.0023183401208370924, -0.001798539306037128, 0.005742151755839586, -0.04032393917441368, 0.0059855845756828785, 0.0033651012927293777, -0.01473198365420103, 0.044058483093976974, 0.04270671680569649, 0.019738109782338142, -0.001131962751969695, 0.012177370488643646, -0.003955068066716194, 0.045112404972314835, -0.002603299682959914, -0.025156637653708458, 0.020826397463679314, -0.0016610713209956884, -0.008860955946147442, -0.004630952142179012, -0.006970771588385105, 0.007835674099624157, 0.01958918571472168, -0.027493594214320183, -0.014021732844412327, -0.026210559532046318, -0.035787492990493774, 0.01417065691202879, -0.026668785139918327, -0.018695643171668053, -0.026050180196762085, -0.019738109782338142, -0.026485495269298553, 0.017882291227579117, -0.02220107614994049, -0.010396014899015427, 0.01866127736866474, -0.021353358402848244, -0.004625224508345127, -0.0036228536628186703, -0.015430779196321964, 0.031182317063212395, -0.008654754608869553, 0.01744697615504265, 0.0020763392094522715, 0.02264784835278988, -0.012028447352349758, -0.019921399652957916, -0.0020047412253916264, -0.04497493803501129, 0.023529933765530586, -0.014754895120859146, 0.009450922720134258, -0.02934941090643406, -0.030586622655391693, -0.01661071367561817, -0.030609535053372383, -0.013231292366981506, 0.045204050838947296, 0.024011071771383286, -0.027516504749655724, -0.017252231016755104, -0.0486636608839035, -0.028203845024108887, -0.030151307582855225, 0.01749279908835888, 0.0028796675615012646, -0.019806843250989914, -0.0004976054187864065, 0.0032419529743492603, -0.028662070631980896, 0.04479164630174637, -0.028982829302549362, -0.009382189251482487, 0.0029641531873494387, 0.008626115508377552, -0.01520166639238596, 0.002556045074015856, -0.008586020208895206, 0.0010768324136734009, 0.06515982002019882, -0.02788308635354042, 0.006157419644296169, -0.014697616919875145, -0.021502280607819557, -0.004968894179910421, -0.04089672118425369, 0.00452785100787878, -0.023942338302731514, -0.02328936569392681, -0.008202255703508854, -0.014399769715964794, -0.004728325176984072, -0.023919425904750824, -0.02886827290058136, -0.03038042038679123, -0.0027264480013400316, -0.002245310228317976, -0.007875769399106503, 0.011696233414113522, 0.014800718054175377, 0.006512545049190521, -0.00187586504034698, -0.0035798950120806694, -0.026966633275151253, -0.01009244006127119, 0.020849307999014854, 0.013300025835633278, -0.018993491306900978, 0.029624346643686295, 0.0044104307889938354, 0.020803485065698624, -0.008047604002058506, 0.058011483401060104, 0.005753607489168644, -0.025569042190909386, -0.015854639932513237, 0.011249462142586708, 0.02479005791246891, -0.020207790657877922, 0.0019474629079923034, 0.02265930362045765, 0.04710569232702255, 0.003602806245908141, -0.022464556619524956, -0.0039436123333871365, 0.010945887304842472, -0.002326931804418564, -0.027172835543751717, -0.05530794709920883, 0.02224689908325672, -0.018145771697163582, 0.035306356847286224, 0.009130164049565792, 0.037368375808000565, -0.014892362989485264, 0.015110020525753498, 0.004098264034837484, 0.017790647223591805, -0.012532496824860573, -0.014571604318916798, -0.028089288622140884, -0.00696504395455122, -0.017928114160895348, 0.01266996469348669, 0.014548693783581257, 0.02224689908325672, -0.008328267373144627, -0.031159406527876854, -0.0023383875377476215, -0.033771298825740814, 0.01315110269933939, -0.018157226964831352, -0.008397001773118973, 0.09631922096014023, -0.0028667799197137356, -0.0012350637698546052, 0.025523219257593155, -0.021868862211704254, -0.004736917093396187, -0.03642901033163071, 0.023621579632163048, -0.02792890928685665, 0.009158803150057793, 0.009084342047572136, -0.04426468536257744, 0.005192279815673828, 0.01916532590985298, -0.005633322987705469, 0.025591952726244926, 0.007537826895713806, -0.03562711551785469, -0.00529538094997406, 0.010058073326945305, 0.008603204041719437, -0.0071196951903402805, 0.029234854504466057, -0.02426309697329998, 0.007451909594237804, 0.018798744305968285, 0.011501486413180828, -0.04279836267232895, -0.0003261284437030554, -0.0007306565530598164, 0.0005251705879345536, -0.01661071367561817, 0.00748627632856369, -0.01599210686981678, 0.005097770597785711, -0.000395220413338393, 0.042523425072431564, -0.011421296745538712, -0.006650012917816639, -0.03869723156094551, -0.031113583594560623, 0.011209366843104362, -0.015545336529612541, 0.008059059269726276, -0.06726765632629395, 0.02115861140191555, 0.018386341631412506, -0.033840030431747437, -0.014205023646354675, -0.03968242183327675, 0.014686161652207375, 0.012899077497422695, -0.012452307157218456, -0.04689949005842209, 0.008081970736384392, -0.011787878349423409, -0.018947668373584747, 0.007732573430985212, 0.02728739194571972, -0.05480389669537544, 0.03658939152956009, 0.00906143058091402, 0.01960064098238945, -0.017378242686390877, 0.046670377254486084, -0.03562711551785469, 0.0001344250631518662, 0.013093824498355389, 0.012944900430738926, -0.003015703521668911, -0.0017512846970930696, -0.02216671034693718, -0.016851281747221947, 0.015327678993344307, 0.03718508407473564, 0.016267042607069016, -0.008855228312313557, 0.02063165046274662, -0.00873494427651167, -0.006082957610487938, -0.003233361290767789, -0.011553036980330944, -0.028753716498613358, 0.05315428227186203, 0.016186853870749474, 0.023919425904750824, 0.009405099786818027, 0.04007191210985184, 0.012543952092528343, 0.04364607855677605, -0.02481296844780445, -0.011764966882765293, -0.015488057397305965, -0.001977534033358097, 0.0004950994625687599, 0.02261348068714142, -0.0009644236997701228, -0.002583252266049385, 0.009828959591686726, -0.02315189689397812, -0.027470681816339493, 0.016324320808053017, -0.0003791108902078122, -0.011776423081755638, 0.025569042190909386, -0.03127396106719971, 0.04080507531762123, -0.007182701490819454, -0.03771204501390457, -0.06900892406702042, -0.0006017803680151701, 0.005086314864456654, 0.0028109336271882057, 0.001567994011566043, 0.04953429102897644, -0.007595105096697807, 0.01604938507080078, 0.00685048708692193, 0.009250449016690254, -0.004295873921364546, 0.01213154848664999, -0.0034338352270424366, -0.01744697615504265, 0.026210559532046318, 0.008437096141278744, -0.01520166639238596, 0.023529933765530586, 0.034848131239414215, 0.05475807562470436, 0.05677426978945732, -0.004012346267700195, -0.005702056922018528, 0.001189241069369018, 0.0005276765441522002, 0.021525193005800247, -0.006403716281056404, 0.007543554995208979, 0.013609329238533974, 0.008723488077521324, -0.030220041051506996, 0.024354740977287292, -0.024446386843919754, -0.01033300906419754, -0.009450922720134258, 0.0012085725320503116, -0.00019385131599847227, 0.0018787288572639227, -0.025889800861477852, 0.020322348922491074, -0.014938185922801495, -0.014090467244386673, 0.015350589528679848, 0.028226755559444427, -0.01957773044705391, 0.0010954479221254587, 0.00750346016138792, 0.016152486205101013, 0.00903279148042202, -0.019738109782338142, -0.0443563312292099, 0.05883629247546196, 0.02843295782804489, -0.020780574530363083, -0.01750425435602665, 0.014010277576744556, 0.04240886867046356, -0.009009880013763905, -0.016415966674685478, 0.017733367159962654, 0.02062019519507885, 0.003731682663783431, -0.019795387983322144, 0.03354218602180481, 0.0021980556193739176, 0.022556202486157417, 0.021536648273468018, 0.012326294556260109, 0.029097387567162514, 0.0321216806769371, 0.000526244577486068, -0.033840030431747437, 0.037460021674633026, -0.011679049581289291, -0.024629678577184677, -0.005828069057315588, 0.006879126187413931, 0.016839826479554176, 0.006277703680098057, 0.060073502361774445, 0.003571303328499198, -0.025935623794794083, 0.014250845648348331, 0.020322348922491074, 0.0069936830550432205, 0.030128397047519684, 0.04071342945098877, 0.023312276229262352, 0.010945887304842472, -0.0008054763893596828, -0.0033651012927293777, -0.007451909594237804, 0.014205023646354675, 0.04114874452352524, 0.026966633275151253, -0.024079805240035057, -0.011289556510746479, 0.022017786279320717, -0.013254202902317047, 0.005888211540877819, 0.00016342221351806074, -0.004593721125274897, -0.02016196958720684, -0.03207585960626602, -0.02882244996726513, -0.019222604110836983, 0.03097611479461193, -0.025683598592877388, 0.00694786012172699, 0.030655357986688614, -0.0040037548169493675, 0.0023498430382460356, 0.006237609311938286, 0.015625525265932083, 0.00952538475394249, 0.04428759589791298, 0.02161683887243271, 0.007973141968250275, 0.005321155767887831, -0.020436905324459076, 0.03516888990998268, 0.0026433945167809725, 0.01600356213748455, 0.00530970050022006, -0.020505638793110847, -0.011868068017065525, 0.037299640476703644, 0.017240773886442184, -0.008288173004984856, -0.010149718262255192, 0.007096783723682165, 0.021994875743985176, 0.0027765666600316763, 0.03759748861193657, 0.009428011253476143, -0.007749756798148155, 0.019738109782338142, 0.01848944090306759, 0.03445863723754883, -0.03134269639849663, -0.033885855227708817, -0.007715389598160982, -0.04806796461343765, -0.02174285054206848, -0.037986982613801956, 0.012440850958228111, 0.003405196126550436, 0.00607150187715888, -0.0026534181088209152, -0.009204626083374023, 0.008437096141278744, -0.01860399916768074, 0.0008598907734267414, -0.01900494657456875, 0.02678334340453148, 0.031182317063212395, 0.011186456307768822, 0.002110706176608801, 0.03546673431992531, 0.006231881212443113, 0.050313275307416916, 0.02009323425590992, 0.008431368507444859, -0.029578523710370064, -0.0390867255628109, -0.014697616919875145, -0.005911122541874647, -0.0026118913665413857, 0.027722707018256187, 0.016221219673752785, -0.03365674242377281, -0.01341458223760128, 0.00036282234941609204, -0.012795976363122463, -0.002265357645228505, 0.009244720451533794, -0.009605574421584606, -0.016221219673752785, 0.04371481388807297, 0.03778078034520149, 0.025179550051689148, -0.030174219980835915, 0.030197130516171455, 0.012738698162138462, 0.009559751488268375, -0.012498129159212112, 0.012440850958228111, 0.022292722016572952, 0.021296080201864243, -0.027539417147636414, -0.02572942152619362, 0.009112981148064137, 0.0021192978601902723, 0.0010109624126926064, -0.004797059111297131, 0.04263798147439957, 0.013849898241460323, 0.004576537758111954, 0.008179344236850739, 0.01954336278140545, -0.004837153945118189, 0.04227140173316002, 0.008597475476562977, -0.00850583054125309, 0.03874305635690689, 0.0018457939149811864, 0.022957149893045425, -0.02572942152619362, -0.019440261647105217, -0.02841004729270935, -0.0005845968844369054, 0.02944105677306652, 0.02108987793326378, -0.023403922095894814, 0.05640769004821777, 0.011478574946522713, 0.009353550150990486, -0.013483316637575626, -0.007434725761413574, 0.020287981256842613, -0.022361455485224724, 0.0069077652879059315, -0.002946969587355852, -0.0004310193471610546, -0.01418211217969656, -0.00616887491196394, -0.0011613179231062531, 0.004075352568179369, 0.000864186673425138, 0.004421886522322893, 0.0047225975431501865, -0.02004741132259369, 0.037345465272665024, -0.013517683371901512, 0.05118390545248985, -0.01010962389409542, -0.022017786279320717, -0.032190416008234024, 0.04160697013139725, -0.013540594838559628, -0.025500308722257614, -0.015155843459069729, 0.012440850958228111, 0.005865300074219704, -0.026645874604582787, 0.020471271127462387, 0.01109481044113636, 0.025431573390960693, 0.03141143172979355, 0.00238564214669168, 0.03505433350801468, 0.048709481954574585, -0.0003712351026479155, 0.001920255715958774, 0.000685191887896508, -0.007795579265803099, 0.01344894990324974, -0.010636583901941776, -0.004814242944121361, -0.01911950297653675, 0.00723425205796957, -0.010378831997513771, -0.03290066868066788, 0.020837852731347084, -0.007182701490819454, -0.006403716281056404, -0.02163974940776825, 0.013036545366048813, 0.010396014899015427, -0.0361998975276947, -0.03214459493756294, -0.025912711396813393, 0.020769119262695312, 0.027470681816339493, -0.022476013749837875, 0.03748293220996857, -0.01446850411593914, -0.00829390063881874, -0.0014484255807474256, 0.008081970736384392, -0.00011330367851769552, -0.03569585084915161, 0.002225262811407447, -0.004241459537297487, 0.01036164816468954, 0.0022811091039329767, -0.02019633539021015, -0.032809022814035416, -0.014353946782648563, 0.01213154848664999, -0.0017426928970962763, 0.001154158147983253, -0.03661230206489563, -0.004284418188035488, -0.006277703680098057, 0.0010890041012316942, -0.04121747985482216, 0.06543475389480591, -0.011266645975410938, 0.011077627539634705, -0.02108987793326378, -0.02371322549879551, 0.01964646391570568, 0.001671095029450953, -0.002805205760523677, 0.01862690970301628, -0.0019460308831185102, -0.02630220539867878, -0.00822516717016697, 0.02114715613424778, -0.018351973965764046, 0.013070913031697273, -0.015648437663912773, 0.01001797802746296, -0.02531701698899269, 0.015224577859044075, 0.045112404972314835, -0.00043459926382638514, -0.011048988439142704, 0.01417065691202879, 0.0013474725419655442, 0.046693287789821625, -0.012291927821934223, 0.030838647857308388, -0.016839826479554176, -0.012933445163071156, 0.0070452336221933365, -0.0035168889444321394, 0.027653973549604416, 0.005650506354868412, -0.03466483950614929, -0.017859380692243576, -0.004038121551275253, -0.025591952726244926, 0.024583855643868446, -0.004888704512268305, -3.089896927122027e-05, 0.006174603011459112, 0.007056688889861107, -0.04062178358435631, -0.006151691544800997, 0.008425640873610973, 0.00957120768725872, -0.011455664411187172, -0.014296668581664562, 0.013861353509128094, 0.02007032372057438, 0.003923565149307251, -0.017618810757994652, -0.04376063495874405, 0.01238357275724411, -0.022476013749837875, -0.0016066569369286299, 0.012532496824860573, -0.003909245133399963, 0.0023040203377604485, 0.03507724404335022, 0.036337368190288544, 0.005404209718108177, 0.01701166108250618, -0.02225835621356964, 0.02327790856361389, 0.01705748401582241, -0.00543571263551712, 0.01525894459336996, 0.003889197949320078, 0.03656648099422455, -0.0328548438847065, -0.00413263076916337, -0.012452307157218456, -0.02524828352034092, -0.0023197720292955637, 0.03090738132596016, 0.015808816999197006, -0.005318291950970888, 0.01861545443534851, -0.004616632591933012, -0.006747385952621698, -0.017320964485406876, 0.015304767526686192, -0.006145963910967112, -0.03203003853559494, -0.007354536559432745, 0.0004252915387041867, -0.011163544841110706, 0.004920207895338535, 0.021284623071551323, 0.0003284553822595626, 0.0371621735394001, -0.010052344761788845, 0.014835084788501263, -0.0041211750358343124, 0.03750584274530411, 0.0011555900564417243, -0.004828562494367361, 0.008167888037860394, 0.002016196958720684, -0.030655357986688614, -0.00540707353502512, -0.003914973232895136, -0.002084930893033743, 0.015785904601216316, -0.03095320425927639, -0.02071184106171131, -0.005364114884287119, -0.021353358402848244, 0.036360278725624084, -0.005000397562980652, -0.03397750109434128, -0.028180934488773346, -0.012704331427812576, 0.03438990190625191, -0.03342762961983681, -0.016255587339401245, 0.029028652235865593, 0.007010866422206163, 0.00012771275942213833, 0.0006891298107802868, 0.008431368507444859, 0.023014429956674576, 0.023529933765530586, 0.004665319342166185, -0.01653052307665348, -0.0008820861112326384, 0.026622964069247246, 0.01606084033846855, 0.00750346016138792, -0.015339134261012077, -0.01852380856871605, -0.0714375227689743, 0.03290066868066788, -0.001384703442454338, 0.04144659265875816, -0.013792619109153748, 0.022785315290093422, 0.0042300038039684296, 0.0011534421937540174, -0.01524748932570219, -0.001715485705062747, -0.038513943552970886, 0.029234854504466057, -0.009107252582907677, -0.005318291950970888, 0.013185469433665276, 0.0546664297580719, 0.013712429441511631, -0.0034968415275216103, 0.05402491241693497, 0.0003483237815089524, -0.03342762961983681, 0.0009909149957820773, 0.0017827877309173346, 0.01108335517346859, -0.03679559379816055, -0.012005535885691643, -0.006254792679101229, 0.05530794709920883, -0.02428600750863552, 0.020471271127462387, 0.030311686918139458, -0.01656489074230194, -0.010166902095079422, 0.02375904656946659, -0.04481455683708191, -0.0035598475951701403, 0.01470907311886549, 0.015419323928654194, -0.00721706822514534, -0.022922784090042114, 0.01208572555333376, -0.01910804770886898, -0.03697888180613518, -0.0041211750358343124, 0.00029498335788957775, 0.0050290366634726524, 0.010934431105852127, 0.0018500897567719221, -0.04087381064891815, -0.003637173445895314, 0.025500308722257614, -0.055995285511016846, -0.017114762216806412, 0.01160458754748106, -0.03656648099422455, -0.010980254039168358, -0.01009244006127119, -0.034779395908117294, -0.00036461232230067253, -0.01394154317677021, -0.02426309697329998, 0.01863836497068405, 0.03464192897081375, 0.014502870850265026, -0.029624346643686295, 0.017194950953125954, -0.03526053577661514, 0.01311673503369093, 0.004608040675520897, -0.006082957610487938, 0.026577141135931015, 0.01545369066298008, 0.024515120312571526, -0.012589775025844574, -0.0027121284510940313, -0.03141143172979355, 0.0401635579764843, -0.01909659244120121, -0.009049974381923676, -0.04421886429190636, -0.025385752320289612, -0.03461901843547821, -0.0018730011070147157, 0.006397988181561232, -0.006793208885937929, 0.007268618792295456, 0.03397750109434128, -0.0019360071746632457, -0.010567850433290005, 0.012429395690560341, 0.00849437527358532, -0.02018488012254238, 0.013494771905243397, 0.000626123626716435, 0.007325896993279457, 0.04321076348423958, 0.012177370488643646, 0.02066601812839508, 0.02315189689397812, 0.0020476998761296272, 0.01956627331674099, -0.005939761642366648, 0.02380486950278282, 0.0015465146861970425, -0.04648708552122116, -0.025110814720392227, -0.025385752320289612, -0.026485495269298553, 0.008563108742237091, -0.008620386943221092, 0.01965791918337345, 0.029647259041666985, -0.002236718311905861, -0.013471861369907856, -0.020757663995027542, -0.010733957402408123, 0.004112583585083485, -0.014903819188475609, -0.011627499014139175, 0.013964454643428326, -0.004378927405923605, -0.026531318202614784, -0.024469299241900444, 0.01606084033846855, 0.029257766902446747, 0.01059076189994812, 0.0002681341429706663, -0.008740671910345554, -0.012211738154292107, 0.01340312696993351, 0.0011785014066845179, 0.01903931424021721, -0.019188236445188522, 0.00135892815887928, 0.01907368004322052, -0.018225962296128273, -0.004152678418904543, -0.004705414175987244, -0.025133727118372917, -0.0006583426729775965, 0.03205294907093048, -0.005830932874232531, 0.0005223067128099501, 0.006924949120730162, -0.018260328099131584, -0.026485495269298553, 0.01953190751373768, -0.016667991876602173, 0.022934239357709885, 0.013632240705192089, 0.01311673503369093, -0.01968083158135414, 0.02985346131026745, 0.003551255911588669, 0.006598462350666523, 0.02279677242040634, -0.006919221021234989, 0.005871027708053589, 0.02886827290058136, 0.00900415237993002, -0.022945694625377655, -0.013070913031697273, 0.04034684970974922, 0.0341607891023159, -0.022968607023358345, 0.0026863531675189734, 0.016278497874736786, -0.03420661389827728, 0.022842593491077423, -0.01262414176017046, 0.026096003130078316, -0.023438287898898125, 0.028272578492760658, 0.01209718082100153, 0.018317606300115585, -0.006667196284979582, 0.01266996469348669, 0.033267248421907425, 0.013208380900323391, -0.01500692032277584, -0.06951297074556351, -0.011879523284733295, 0.007428998127579689, -0.03757457807660103, -0.018947668373584747, 0.002932650037109852, -0.034275345504283905, 0.014262301847338676, -0.004842882044613361, 0.03035750985145569, -0.01811140403151512, 0.02364449016749859, -0.01695438288152218, 0.02369031310081482], [-0.001769469236023724, 0.014607190154492855, 0.07949578762054443, -0.009195327758789062, -0.0733906477689743, -0.024828998371958733, -0.009437168948352337, 0.07764705270528793, 0.0359429307281971, 0.02227085828781128, -0.015596050769090652, 0.02641977369785309, 0.02848348207771778, 0.01059800572693348, -0.040564779192209244, -0.017133083194494247, -0.00015434151282534003, 0.05124877393245697, -0.023367203772068024, -0.021314244717359543, 0.01894957758486271, 0.013887041248381138, -0.030117252841591835, 0.023517683148384094, -0.0012125633656978607, -0.023904629051685333, -0.024635525420308113, -0.0022800222504884005, 0.016047487035393715, -0.05494625121355057, 0.04522962123155594, -0.041596632450819016, 0.06517880409955978, 0.003770030802115798, 0.02300175651907921, -0.025710374116897583, -3.064997508772649e-05, -0.033922214061021805, 0.03448113799095154, -0.029278870671987534, -0.06027749925851822, 0.014059017412364483, -0.03332030028104782, -0.023603670299053192, -0.03263239935040474, 2.6829224225366488e-05, 0.01132890209555626, -0.02418408915400505, 0.017272813245654106, 0.029235877096652985, 0.029515337198972702, 0.05068985000252724, -0.001040587667375803, -0.012231774628162384, -0.004162350669503212, -0.00025208553415723145, -0.05120577663183212, 0.024463549256324768, 0.047809258103370667, -0.029687313362956047, 0.034266166388988495, 0.00019229709869250655, -0.009684383869171143, 0.045745547860860825, -0.02833300456404686, 0.011103183962404728, -0.007061753887683153, -0.00030985864577814937, -0.03439515084028244, -0.05533319711685181, 0.05047488212585449, -0.011737344786524773, 0.0038022762164473534, -0.04798123240470886, -5.9956386394333094e-05, 0.019895443692803383, 0.008432186208665371, -0.00400649756193161, 0.0008545044693164527, -0.03501855954527855, 0.0007100717048160732, -0.008045240305364132, 0.003641048911958933, -0.03132108226418495, 0.017315808683633804, -0.048970092087984085, -0.05692397058010101, 0.006024525500833988, -0.02012116275727749, 0.018938828259706497, -0.03996286541223526, 0.016133474186062813, -0.026634743437170982, 0.052194640040397644, -0.005938537418842316, -0.040908731520175934, 0.024657022207975388, -0.016101229935884476, -0.009947721846401691, 0.04664842039346695, -0.014370723627507687, -0.00857191625982523, 0.02427007630467415, 0.014467459172010422, 0.026613246649503708, -0.07128394395112991, -0.01289818063378334, 0.05223763361573219, 0.016187217086553574, 0.006594195030629635, -0.022937264293432236, -0.006003028247505426, 0.0018568006344139576, 0.051850687712430954, -0.010125071741640568, -0.024162592366337776, 0.06805939972400665, -0.010323919355869293, -0.0009317591902799904, -0.008614909835159779, 0.030117252841591835, 0.03478209301829338, -0.02222786471247673, -0.08181746304035187, 0.006578072439879179, -0.015660541132092476, -0.005519346799701452, 0.00013670728367287666, -0.025323428213596344, -0.001402677153237164, -0.010640999302268028, -0.05658002197742462, 0.030461203306913376, -0.02080906555056572, 0.0223783440887928, -0.016197966411709785, -0.007867890410125256, -0.032266948372125626, 0.0017237880965694785, 0.004820695146918297, 0.03323431313037872, -0.006121261510998011, 0.021862417459487915, 0.023711156100034714, -0.08108656108379364, 0.017917722463607788, -0.02476450800895691, 0.02764510177075863, 0.013489347882568836, -0.006771544925868511, -0.04471369460225105, 0.022679300978779793, -0.02242133766412735, -0.07317568361759186, 0.027516119182109833, 0.04007034748792648, -0.022335350513458252, 0.0628141388297081, -0.0125757260248065, -0.00687365559861064, 0.011543871834874153, -0.014832908287644386, -0.017208322882652283, -0.0058471751399338245, 0.06728550791740417, -0.026785222813487053, -0.022851277142763138, 0.02257181704044342, -0.024055106565356255, -0.02848348207771778, -0.009711255319416523, -0.0043531362898647785, -0.06294312328100204, -0.013328120112419128, -0.07360561937093735, -0.015338086523115635, 0.01940101385116577, 0.05077584087848663, -0.004312829114496708, 0.03815712034702301, -0.016982605680823326, -0.01812194474041462, -0.02295876294374466, 0.0071638645604252815, 0.022442834451794624, -0.01201680488884449, -0.02657025307416916, 0.004280583932995796, -0.011726596392691135, 0.013865544460713863, -0.024979477748274803, -0.016885869204998016, 0.044670701026916504, 0.04978697746992111, -0.015800271183252335, 0.006293237674981356, -0.03308383375406265, 0.021045532077550888, 0.03716825693845749, -0.009093217551708221, 0.019906193017959595, -0.041403159499168396, 0.051076795905828476, 0.04634746536612511, -0.07377759367227554, -0.035856943577528, 0.025753367692232132, -1.7529266187921166e-05, 0.041639626026153564, 0.0078087737783789635, 0.02829001098871231, -0.04381082206964493, -0.04488566890358925, 0.008260210044682026, 0.0033078459091484547, 0.011361147277057171, 0.015596050769090652, 0.05137775465846062, -0.003858705749735236, 0.019798707216978073, -0.013983777724206448, 0.021034782752394676, 0.022163374349474907, -0.03086964599788189, 0.016036737710237503, 0.020196402445435524, 0.011995308101177216, -0.011350398883223534, -8.344770321855322e-06, -0.050302904099226, -0.004723958671092987, 0.030955635011196136, 0.014413717202842236, -0.014155753888189793, 0.004737394396215677, 0.02603282779455185, 0.007357337512075901, -0.04187609255313873, 0.04768027737736702, -0.0015746529679745436, 0.003401895286515355, -0.00030700358911417425, -0.007260601036250591, -0.049958955496549606, 0.006760796532034874, -0.021604452282190323, 0.004906683228909969, -0.0030848148744553328, 0.05589211732149124, 0.028461985290050507, -0.03931795433163643, -0.015692787244915962, 0.04445572942495346, -0.058299776166677475, 0.007841018959879875, 0.019014067947864532, -0.04391830787062645, -0.044326748698949814, 0.0501309297978878, -0.02975180372595787, 0.031235095113515854, -0.04497165605425835, -0.02740863524377346, 0.018938828259706497, -0.0465194396674633, -0.030848149210214615, -0.005465604364871979, -0.026828216388821602, -0.015327338129281998, 0.043939802795648575, -0.040672264993190765, -0.006911275442689657, 0.04656243324279785, -0.02568887732923031, -0.04703536629676819, 0.030568689107894897, 0.0013959594070911407, -0.011017195880413055, -0.05090482160449028, -0.003942006733268499, -0.0701231136918068, 0.013274378143250942, 0.008340823464095592, -0.039446935057640076, 0.03800664097070694, -0.02310924045741558, -0.016928862780332565, 0.010748484171926975, 0.026957198977470398, 0.044283755123615265, 0.08499900996685028, -0.029880786314606667, -0.006363102700561285, -0.021324992179870605, 0.06784442812204361, 0.03712526336312294, 0.032266948372125626, -0.024463549256324768, -0.008566541597247124, -0.03405119851231575, -0.003893638262525201, -0.0031734900549054146, 0.04406878352165222, -0.015789523720741272, -0.06165330484509468, -0.022055888548493385, -0.02056184969842434, 0.03865154832601547, 0.03160054236650467, 0.008749266155064106, -0.021464722231030464, 0.034223172813653946, -0.034760598093271255, -0.07377759367227554, -0.0009210107382386923, 0.016294701024889946, -0.028655458241701126, 0.00972200371325016, 0.011801835149526596, 0.032460421323776245, 0.02379714325070381, 0.04561656713485718, 0.028075041249394417, -0.0034260794054716825, 0.004756204318255186, 0.0026548756286501884, -0.0024063168093562126, 0.02633378654718399, 0.007249852642416954, 0.004345074761658907, -0.010366912931203842, 0.005221076309680939, 0.010221808217465878, 0.01338186301290989, 0.03953292593359947, 0.01365057472139597, -0.01782098598778248, 0.035878438502550125, 0.00915770884603262, -0.033341798931360245, 0.02227085828781128, 0.006696305703371763, -0.013231383636593819, -0.01291967835277319, 0.014220244251191616, 0.007841018959879875, 0.03927496075630188, 0.06973616778850555, -0.02353917993605137, 0.010340041480958462, -0.00027744524413719773, -0.006588820833712816, -0.04342387616634369, -0.010065955109894276, 0.005274818744510412, -0.02583935670554638, 0.011017195880413055, 0.0025876974686980247, -0.022722294554114342, 0.023281216621398926, -0.03164353594183922, 0.0037592824082821608, 0.0403498075902462, 0.03484658524394035, 0.03557748347520828, -0.00726597523316741, 0.00608364213258028, -0.0037297240924090147, 0.02925737388432026, -0.009351180866360664, 0.004465995356440544, 0.02222786471247673, 0.008394566364586353, -0.03643736243247986, -0.006879029795527458, 0.004277896601706743, 0.07786201685667038, -0.007583055645227432, -0.030998628586530685, 0.0062018753960728645, 0.003076753579080105, 0.0008585351752117276, -0.02002442628145218, 0.04871213063597679, 0.010458274744451046, -0.016832126304507256, -0.058600734919309616, -0.0156390443444252, 0.007228355389088392, 0.03527652472257614, 0.021260501816868782, -0.025753367692232132, -0.01886359043419361, 0.00791625864803791, -0.05412936583161354, -0.004218779969960451, -0.011436386965215206, 0.005734316073358059, -0.02261481061577797, 0.0259898342192173, 0.0201749037951231, -0.044584713876247406, 0.0006103123887442052, -0.0223783440887928, 0.009533905424177647, -0.021088525652885437, 0.039941366761922836, 0.04497165605425835, -0.0016082419315353036, -0.059675585478544235, 0.03521203249692917, 0.023130737245082855, 0.03278287500143051, 0.015273596160113811, 0.0014859779039397836, 0.018358411267399788, -0.050388894975185394, 0.07824896275997162, 0.01733730547130108, -0.004401504062116146, 0.029386356472969055, 0.04224154353141785, -0.008346198126673698, 0.03243892639875412, -0.054344337433576584, 0.027731088921427727, 0.02047586254775524, -0.015864763408899307, -0.008631032891571522, -0.01597224734723568, -0.0028564096428453922, -0.006298611871898174, -0.05223763361573219, 0.03708226978778839, -0.048927098512649536, 0.014779165387153625, -0.0024761820677667856, 0.03289036080241203, -0.07979674637317657, 0.01318839006125927, -0.038415081799030304, -0.023216726258397102, 0.03751220926642418, 0.024678518995642662, -0.056150082498788834, 0.024506544694304466, -0.02407660521566868, 0.009044849313795567, -0.05163571611046791, 0.006970392074435949, 0.04974398389458656, -0.025753367692232132, -0.031342580914497375, 0.012178032658994198, -0.047121353447437286, 0.018003711476922035, -0.009507033973932266, -0.0014013336040079594, 0.04591752588748932, -0.039790887385606766, -0.002950458787381649, 0.027473125606775284, 0.032954853028059006, 0.010941957123577595, 0.006551200989633799, 0.05318349972367287, -0.03785616159439087, 0.026591749861836433, -0.005398426204919815, -0.02706468291580677, -0.00713161937892437, 0.002767734695225954, -0.017917722463607788, -0.032460421323776245, -0.009254444390535355, 0.029042404145002365, -0.028741447255015373, -0.025151452049613, -0.02833300456404686, -0.025903847068548203, 0.0016848249360918999, 0.05124877393245697, -0.04157513752579689, -0.039640408009290695, 0.06483485549688339, 0.009098592214286327, 0.047895245254039764, 0.019229037687182426, -0.047207340598106384, -0.02940785326063633, -0.006067519076168537, 0.015112368389964104, 0.023410199210047722, -0.007550809998065233, 0.012812193483114243, 0.00889437086880207, -0.07971075922250748, -0.022937264293432236, -0.0026844339445233345, 0.004877124447375536, 0.016928862780332565, -0.043359383940696716, 0.02105627954006195, -0.012844438664615154, 0.003555061062797904, -0.02353917993605137, 0.020357629284262657, 0.02407660521566868, 0.03740472346544266, -0.03865154832601547, -0.04176861047744751, -0.00664256326854229, -0.0036786687560379505, 0.02109927497804165, -0.0034207049757242203, 0.0058794207870960236, 0.021142268553376198, -0.007051005493849516, -0.006959643680602312, 0.05597810447216034, 0.022872773930430412, -0.016154970973730087, -0.014230992645025253, -0.020938046276569366, -0.01636994071304798, 0.008158099837601185, -0.030074259266257286, -0.06350204348564148, -0.014639435335993767, -0.017627514898777008, -0.001339529873803258, -0.06397497653961182, -0.04419776797294617, 0.0008283050847239792, 0.012006056495010853, 0.004162350669503212, -0.010571134276688099, 0.014736171811819077, -0.04561656713485718, -0.022335350513458252, 0.021239005029201508, -0.01611197739839554, 0.01787472888827324, -0.001476573059335351, 0.003985000308603048, 0.018261674791574478, 0.007330466061830521, -0.017498532310128212, -0.006341605447232723, 0.01267246250063181, -0.0016673585632815957, -0.0012212964938953519, -0.01865936815738678, -0.02510845847427845, 0.021959153935313225, -0.037985142320394516, 0.024485046043992043, -0.023216726258397102, 0.06909125298261642, -0.01719757542014122, 0.011952314525842667, 0.036953289061784744, 0.01734805293381214, -0.03574945777654648, 0.025925343856215477, 0.02265780419111252, 0.021174512803554535, -0.03884502127766609, -0.010861342772841454, -0.02979479730129242, 0.0165634136646986, 0.029579827561974525, 0.009071720764040947, 0.04634746536612511, 0.02032538317143917, 0.03976939246058464, 0.021024035289883614, -0.03981238603591919, 0.01802520826458931, 0.013575335033237934, 0.0032890362199395895, -0.007319717667996883, -0.01948700100183487, -0.012597223743796349, -0.0018823283025994897, -0.019035564735531807, -0.015080123208463192, -0.013016413897275925, -0.014800663106143475, 0.0007570963352918625, -0.016036737710237503, -0.01831541769206524, 0.010200311429798603, -0.02725815586745739, 0.015348834916949272, 0.029085397720336914, 0.03248191997408867, -0.022743793204426765, -0.028547974303364754, 0.03344928100705147, 0.030375216156244278, 0.01138264499604702, -0.015069374814629555, 0.0006499473820440471, -0.04185459762811661, -0.018143441528081894, 0.01318839006125927, -0.03893100842833519, -0.01221027784049511, 0.010436777956783772, -0.0007597834919579327, 0.02579636126756668, 0.006475961767137051, -0.03740472346544266, -0.04077974706888199, 0.0010164035484194756, -0.022163374349474907, -0.032073475420475006, -0.0233027134090662, 0.03213796764612198, -0.008636406622827053, 0.022313853725790977, 0.006868281401693821, -0.003106311894953251, -0.0037861536256968975, 0.02721516229212284, -0.005258695688098669, -0.007400331553071737, -0.013543089851737022, -0.034803591668605804, 0.00984561163932085, 0.021131519228219986, -8.052965858951211e-05, -0.028547974303364754, -0.027709592133760452, -0.028805937618017197, 0.03379323333501816, -0.004917431622743607, -0.008915867656469345, 0.024979477748274803, 0.018229428678750992, 0.01787472888827324, -0.01060337945818901, -0.03794214874505997, 0.027774082496762276, 0.028440488502383232, -0.003673294559121132, 0.03620089590549469, 0.04181160405278206, 0.005417236126959324, -0.022335350513458252, 0.004025307483971119, 0.006422219332307577, -0.04884111136198044, 0.009856360033154488, -0.006368476897478104, -0.034954071044921875, 0.012779947370290756, 0.017186826094985008, 0.05782684311270714, -0.013263629749417305, 0.03428766503930092, 0.0035899938084185123, 0.030805155634880066, 0.005696696694940329, -0.020411372184753418, 0.030547192320227623, 0.0022249361500144005, 0.007368085905909538, 0.0030176369473338127, 0.021067028865218163, 0.02013191021978855, 0.030009767040610313, -0.03435215353965759, 0.037791669368743896, -0.015069374814629555, -0.02676372602581978, 0.008459056727588177, -0.017960717901587486, 0.029300367459654808, -0.034911077469587326, 0.0015961498720571399, -0.0138762928545475, 0.006594195030629635, -0.0048556276597082615, 0.009560776874423027, 0.016724640503525734, -0.012618720531463623, 0.015596050769090652, -0.006943520624190569, 0.02174418419599533, 0.04553057998418808, 0.004361197352409363, 0.0074863191694021225, 0.006647937465459108, 0.022485828027129173, 0.0033777111675590277, 0.0014900086680427194, -0.009066346101462841, -0.03448113799095154, 0.012564977630972862, -0.01003908459097147, -0.007550809998065233, -0.06573773175477982, -0.016283953562378883, 0.0059869056567549706, -0.004420313984155655, 0.02080906555056572, 0.05636505037546158, -0.007120870519429445, -0.015133866108953953, -0.0170041024684906, -0.019863199442625046, -0.013328120112419128, -0.009184579364955425, 0.001503444160334766, 0.013467850163578987, 0.01577877439558506, 0.004914744291454554, 0.00854504480957985, -0.024098102003335953, 0.009969218634068966, -0.048239197582006454, -0.03005276247859001, 0.020594095811247826, 0.02534492500126362, 0.04206956550478935, -0.03254640847444534, 0.009023352526128292, 0.012758450582623482, 0.02906390093266964, -0.04080124571919441, -0.020142659544944763, 0.01243599597364664, -0.01914305053651333, 0.06178228557109833, -0.028161028400063515, -0.040521785616874695, -0.008367694914340973, -0.027752585709095, -0.018584128469228745, -0.004345074761658907, 0.0219376552850008, -0.04361734911799431, -0.04338088259100914, -0.023410199210047722, -0.0033051588106900454, 0.026355283334851265, 0.002666967688128352, 0.0003661202499642968, 0.017767244949936867, 0.00487443758174777, -0.013940784148871899, -0.011597614735364914, 0.018788350746035576, -0.015499314293265343, 0.0395544208586216, 0.011683601886034012, -0.025516901165246964, 0.04879811778664589, -0.015660541132092476, -0.019336523488163948, 0.017917722463607788, 0.04591752588748932, 0.021335741505026817, -0.02749462239444256, -0.0183261651545763, -0.00693814642727375, 0.01788547821342945, 0.03542700409889221, 0.018379908055067062, -0.018487391993403435, 0.017111586406826973, -0.004057552665472031, 0.001773499883711338, 0.012339259497821331, 0.018336914479732513, -0.013940784148871899, -0.03815712034702301, -0.03600742295384407, -0.005489788483828306, -0.027172168716788292, 0.01601524092257023, 0.0188528411090374, 0.01587551087141037, 0.011640608310699463, -0.008072111755609512, 0.016445180401206017, -0.01886359043419361, -0.013822550885379314, -0.01949775032699108, 0.014499705284833908, -0.011006447486579418, -0.01787472888827324, 0.013661323115229607, 0.016305450350046158, 0.013467850163578987, -0.025624386966228485, -0.018186435103416443, -0.029837792739272118, -0.026505762711167336, 0.006529704201966524, -0.020056670531630516, -0.0009411641512997448, 0.08031267672777176, -0.019132301211357117, 0.0025635133497416973, -0.008888996206223965, -0.009555402211844921, -0.008958861231803894, -0.003114373190328479, -0.00972200371325016, -0.0014376097824424505, 0.02433456853032112, 0.011565368622541428, -0.024807501584291458, 0.02130349539220333, -0.004694400355219841, -0.002504396717995405, -0.02579636126756668, 0.029923779889941216, -0.022442834451794624, 0.00020791598944924772, 0.025860853493213654, 0.0269142035394907, -0.0067339250817894936, 0.014059017412364483, 0.019379517063498497, 6.197173206601292e-05, 0.04793823882937431, 0.010082078166306019, -0.01037766132503748, -0.007416454143822193, -0.006594195030629635, -0.0019495063461363316, 0.024936482310295105, 0.01291967835277319, 0.003538938472047448, -0.01719757542014122, -0.0050544748082757, 0.03323431313037872, -0.01914305053651333, 0.003565809689462185, -0.0039688777178525925, -0.013156144879758358, 0.02530193142592907, -0.0038802027702331543, 0.012382254004478455, -0.05533319711685181, -0.0010607410222291946, 0.018885087221860886, -0.005229137372225523, -0.011318153701722622, -0.009926225058734417, 0.02760210633277893, 0.01939026452600956, 0.0098886052146554, -0.02076607197523117, 0.004294019192457199, -0.0101089496165514, -0.01900332048535347, -0.0013502782676368952, 0.008813757449388504, -0.005788058508187532, 0.029579827561974525, 0.009738126769661903, 0.015617547556757927, -0.020196402445435524, 0.03813562169671059, 0.010458274744451046, 0.03893100842833519, -0.010286299511790276, 0.03630837798118591, -0.0026951823383569717, -0.02368965931236744, 0.030310725793242455, -0.02174418419599533, -0.004952364135533571, 0.0538284070789814, 0.019712720066308975, -0.005226450506597757, 0.02906390093266964, -0.003603429300710559, -0.002278678584843874, -0.009861733764410019, 6.394508091034368e-05, 0.004678277764469385, 0.023560676723718643, 0.038071129471063614, 0.018895834684371948, -0.0008840628433972597, 0.026484264060854912, 0.02998827025294304, 0.014703926630318165, -0.027473125606775284, -0.029085397720336914, 0.005696696694940329, 0.006760796532034874, -0.0250654648989439, -0.006911275442689657, -0.0021765681449323893, -0.018057452514767647, 0.000670772569719702, -0.02437756210565567, 0.001747972215525806, 0.007222981192171574, -0.018637871369719505, -0.0028859679587185383, 0.00310899899341166, -0.008098983205854893, -0.010678619146347046, 0.009576898999512196, -0.01743404194712639, -0.08125854283571243, -0.0006590164266526699, 0.01992768980562687, -0.051463741809129715, 0.026204803958535194, -0.0025662006810307503, -0.013059408403933048, 0.03091263957321644, 0.03323431313037872, 0.00801299512386322, 0.018745357170701027, -0.0192935299128294, -0.03289036080241203, -0.010581882670521736, -0.006228746380656958, -0.01797146536409855, -0.021475471556186676, 0.02257181704044342, 0.02457103505730629, 0.020250143483281136, 0.028118034824728966, -0.02120675891637802, 0.019841700792312622, 0.00830857828259468, -0.00520226638764143, 0.02457103505730629, -0.029235877096652985, -0.0051780822686851025, -0.01948700100183487, 0.015574553050100803, -0.042864955961704254, -0.020088916644454002, -0.036953289061784744, -0.0060567706823349, 0.005221076309680939, 0.0034153307788074017, 0.022679300978779793, 0.0009257132187485695, -0.008851376362144947, 0.020637089386582375, -0.02568887732923031, 0.003692104248329997, -0.04909907653927803, 0.031127609312534332, -0.00382914743386209, -0.002445280086249113, 0.03450263291597366, 0.01807895116508007, 0.006518955808132887, -0.023238223046064377, -0.057224929332733154, 0.049657996743917465, -0.001880984753370285, -0.007970000617206097, -0.025473907589912415, 0.003925883676856756, 0.05271056666970253, -0.004573480226099491, -0.01646667718887329, 0.014327729120850563, 0.017573771998286247, -0.017767244949936867, -0.002826851326972246, 0.018874337896704674, 0.016531169414520264, -0.019959935918450356, 0.00805598869919777, 0.012747702188789845, 0.0350615568459034, -0.002457372145727277, -0.01681062951683998, -0.04206956550478935, 0.012747702188789845, -0.00044135961798019707, -0.02676372602581978, 0.01582176797091961, 0.012758450582623482, -0.004087110981345177, 0.006664060056209564, 0.035534489899873734, 0.011221417225897312, -0.023066246882081032, -0.0026400964707136154, 0.027344143018126488, 0.01860562525689602, 0.008324701339006424, 0.010049832984805107, -0.008201093412935734, 0.045788541436195374, 0.001207189168781042, 0.024162592366337776, 0.013338868506252766, 0.02345319278538227, 0.0041811601258814335, 0.0322454534471035, 0.009732752107083797, -0.041790105402469635, 0.016176467761397362, 0.0029155262745916843, 0.0036652330309152603, 0.006556575186550617, -0.004866376053541899, -0.04518662765622139, -0.007341214455664158, 0.0012844438897445798, -0.025624386966228485, 0.06947819888591766, -0.023517683148384094, 0.02970881015062332, 0.010721612721681595, 0.02740863524377346, -0.018895834684371948, -0.003332030028104782, 0.008158099837601185, 0.0052828798070549965, 0.013177641667425632, 0.025172950699925423, -0.029966773465275764, 0.016251707449555397, -0.005479039624333382, 0.01861637458205223, 0.02149696834385395, 0.02652725949883461, 0.009893979877233505, 0.001391928642988205, -0.018111195415258408, 0.03359976038336754, 0.011307405307888985, -0.038673046976327896, 0.02183017134666443, 0.008921241387724876, 0.014316980727016926, -0.01370431762188673, 0.009066346101462841, 0.025516901165246964, 0.022851277142763138, 0.021701188758015633, 0.0014779166085645556, 0.030740665271878242, -0.04333788901567459, -0.0027811701875180006, -0.0036571717355400324, -0.005113591440021992, -7.691884093219414e-05, -0.01798221468925476, 0.03342778608202934, -0.005524720996618271, -0.004901308566331863, 0.017315808683633804, -0.010538889095187187, 0.004097859375178814, 0.01082372386008501, 0.003106311894953251, -0.046777401119470596, 0.034223172813653946, 0.031493060290813446, 0.014295483939349651, -0.024248579517006874, 0.033922214061021805, 0.009173830971121788, 0.054645292460918427, 0.00040239637019112706, 0.01174809318035841, -0.006373851094394922, -0.036222390830516815, 0.0008296486339531839, 0.007341214455664158, 0.00032850055140443146, -0.0051324013620615005, 0.040822744369506836, -0.013758059591054916, -0.005589211825281382, -0.022829780355095863, 0.026548756286501884, 0.015499314293265343, 0.04583153501152992, 0.011264411732554436, -0.022249361500144005, 0.05946061387658119, 0.03332030028104782, 0.024356065317988396, -0.020819813013076782, 0.016240959987044334, 0.007432576734572649, -0.005059849005192518, 0.018637871369719505, -0.0010016243904829025, 0.004049491602927446, -0.008115105330944061, -0.0050705973990261555, 0.00876538921147585, 0.04181160405278206, -0.00446868222206831, 0.0025487341918051243, 0.014284735545516014, -0.0029665816109627485, 0.0021349177695810795, 0.01485440507531166, 0.0019857825245708227, 0.017756495624780655, 0.0003174161829520017, 0.02218487113714218, 0.0037001657765358686, 0.007040257100015879, 0.0121135413646698, 0.010614127852022648, -0.0020234021358191967, 0.012887432239949703, -0.016036737710237503, -0.03809262812137604, -0.0040736752562224865, 0.004573480226099491, 0.012092044577002525, -0.0085020512342453, 0.034416645765304565, 0.011490129865705967, 0.020239396020770073, -0.002456028712913394, 0.011425638571381569, 0.0028187900315970182, -0.017563022673130035, -0.0037754049990326166, 0.022206367924809456, -0.00700801145285368, -0.04419776797294617, 0.03435215353965759, 0.005814929958432913, -0.021625950932502747, 0.012027553282678127, -0.0012884745374321938, 0.009313561953604221, 0.0031681156251579523, 0.005140462424606085, -0.019938437268137932, 0.05240960791707039, -0.003224545158445835, -0.045014653354883194, -0.016090480610728264, 0.03781316801905632, -0.002392881317064166, -0.03364275395870209, 0.022163374349474907, -0.034309159964323044, 0.04368184134364128, -0.005409174598753452, 0.03052569553256035, 0.018627123907208443, 0.005718193482607603, 0.023926125839352608, -0.0012367474846541882, 0.016391437500715256, 0.0223783440887928, -0.005675199441611767, -0.015273596160113811, 0.0052049532532691956, 0.010640999302268028, 0.0011641952442005277, -0.006336231250315905, -0.011001073755323887, -0.018745357170701027, 0.017917722463607788, -0.01626245677471161, -0.02218487113714218, -0.005578463431447744, -0.010345416143536568, 0.011447135359048843, -0.0022585252299904823, 0.020970292389392853, 0.03869454190135002, -0.00044404674554243684, -0.027623604983091354, -0.04088723286986351, 0.029300367459654808, 0.03755520284175873, -0.02130349539220333, 0.026161810383200645, -0.01230701431632042, -0.010839845985174179, 0.006008402444422245, 0.0010916428873315454, -0.017670508474111557, -0.007620675023645163, 0.008948112837970257, -0.033341798931360245, 0.02164744772017002, 0.017509279772639275, -0.026054326444864273, -0.028956416994333267, 0.008426811546087265, 0.022872773930430412, 0.01641293615102768, -0.00877076294273138, 0.01147938147187233, 0.024506544694304466, 0.0036168647930026054, -0.024700015783309937, -0.011113932356238365, 0.04707835987210274, 0.012221026234328747, -0.006137384567409754, -0.010850594379007816, -0.01930427737534046, 3.264432234573178e-05, -0.025000974535942078, -0.005226450506597757, -0.010286299511790276, 0.011866326443850994, -0.0143384775146842, 0.0001352797553408891, 0.03789915516972542, 0.007249852642416954, 0.030074259266257286, -0.01545631978660822, 0.0004030681448057294, -0.03147156164050102, 0.018197184428572655, 0.042177051305770874, 0.027150670066475868, -0.019916940480470657, 0.010227182880043983, -0.0017251316457986832, 0.013951532542705536, 0.005027603358030319, 0.03209497407078743, -0.012607972137629986, -0.011963062919676304, -0.016251707449555397, -0.003302471712231636, 0.030117252841591835, 0.027193665504455566, -0.01992768980562687, -0.018014458939433098, -0.04406878352165222, -0.030009767040610313, 0.02325971983373165, -0.009318935684859753, -0.007910883985459805, -0.03263239935040474, -0.01949775032699108, -0.011447135359048843, 0.002824164228513837, -0.012006056495010853, 0.02066933549940586, 0.0006177019677124918, -0.02998827025294304, -0.03523353114724159, 0.011275160126388073, -0.0071692387573421, 0.007674417458474636, -0.03218096122145653, 0.03213796764612198, -0.015843264758586884, 0.017756495624780655, 0.026312289759516716, 0.0138762928545475, 0.005669825244694948, 0.02641977369785309, 0.00775503134354949, 0.012124289758503437, -0.01699335314333439, 0.00016299069102387875, 0.014714675024151802, 0.038952507078647614, 0.0007141024107113481, 0.025559894740581512, 0.028956416994333267, -0.00837844330817461, -0.019336523488163948, -0.02207738719880581, 0.008921241387724876, 0.0010352133540436625, 0.013328120112419128, 0.02706468291580677, 0.006583446636795998, -0.016434432938694954, 0.01262946892529726, 0.03467461094260216, -0.0009975936263799667, -0.008222590200603008, 0.005277505610138178, -0.004659467842429876, -0.02334570698440075, -0.004844879265874624, 0.01896032691001892, -0.03394371271133423, -0.029622822999954224, -0.022292356938123703, 0.002689808141440153, 0.021088525652885437, -0.011877074837684631, 0.03566347062587738, -0.03478209301829338, 0.014187999069690704, -0.02564588375389576, 0.02442055568099022, 0.020346879959106445, -0.015563804656267166, -0.023238223046064377, 0.03830759599804878, -0.014220244251191616, 0.025043968111276627, 0.022399840876460075, 0.0030337595380842686, -0.009544653818011284, 0.019315026700496674, -0.017616765573620796, 0.020927298814058304, -0.0034744474105536938, -0.008609536103904247, -0.0016082419315353036, 0.009071720764040947, 0.023560676723718643, -0.02525893785059452, -0.027000192552804947, 0.05047488212585449, -0.010232556611299515, -0.01772424951195717, -0.04226303845643997, -0.018971074372529984, 0.006406096741557121, 0.008512799628078938, -0.009335058741271496, -0.015273596160113811, -0.022700797766447067, 0.012758450582623482, 0.014413717202842236, 0.04015633836388588, -0.013349616900086403, -0.007781902328133583, -0.06354504078626633, 0.0313640758395195, -0.007652920670807362, 0.026355283334851265, -0.005524720996618271, 0.01739104650914669, 0.00230823690071702, 0.007110122125595808, 0.0005525392480194569, 0.0033159074373543262, -0.039253465831279755, 0.018401404842734337, -0.005352745298296213, 0.014789913780987263, -0.0038882640656083822, 0.05421535298228264, -0.042134057730436325, 0.0011635234113782644, 0.017305059358477592, 0.009673635475337505, -0.011393393389880657, -0.019465504214167595, 0.03415868431329727, -0.0023619793355464935, -0.03835058957338333, -0.046433452516794205, 0.013371114619076252, 0.01886359043419361, -0.003509380156174302, -0.007846393622457981, 0.02349618636071682, -0.016488173976540565, -0.017380299046635628, 0.012640217319130898, -0.04866913706064224, -0.011576117016375065, -0.009447917342185974, -0.005449481308460236, 0.001625708187930286, -0.022980259731411934, -0.01939026452600956, -0.018820594996213913, -0.030740665271878242, 0.013489347882568836, -0.012812193483114243, -0.003428766503930092, 0.00700801145285368, 0.007873265072703362, -0.01915379799902439, -0.0037592824082821608, -0.0036007422022521496, -0.0449286624789238, -0.05662301555275917, 0.020841309800744057, -0.03559897840023041, -0.0019951872527599335, -0.008899744600057602, -0.03893100842833519, -0.0026185994502156973, 0.008588038384914398, -0.024828998371958733, 0.022249361500144005, -0.002422439632937312, 0.014370723627507687, -0.024936482310295105, 0.015477817505598068, -0.03546999767422676, 0.001379836699925363, 0.017358802258968353, 0.005589211825281382, 0.024592531844973564, 0.004656780976802111, -0.000669764936901629, -0.028612464666366577, 0.02115301601588726, -0.002034150529652834, 0.020895052701234818, -0.027279652655124664, -0.03117060475051403, -0.0037350982893258333, 0.020690832287073135, 0.002652188530191779, 0.011468632146716118, 0.02560288831591606, -0.010931208729743958, 0.014800663106143475, 0.021916158497333527, -0.008324701339006424, 0.005917040631175041, -0.0021658195182681084, 0.007470196578651667, -0.016402186825871468, 0.01611197739839554, -0.0065995692275464535, 0.02388313226401806, 0.018014458939433098, -0.012371505610644817, 0.03826460242271423, 0.004156976006925106, -0.001962941838428378, 0.009979967959225178, -0.03336329385638237, 0.0024546850472688675, -0.0069811404682695866, -0.003751220880076289, -0.01850888878107071, -0.015101619996130466, 0.006685557309538126, 0.01267246250063181, 0.001009013969451189, 0.01695035956799984, 0.01894957758486271, -0.0017560336273163557, -0.008077485486865044, -0.007351963315159082, -0.005599960219115019, 0.020346879959106445, 0.0009707224671728909, 0.0058471751399338245, -0.008104356937110424, -0.01360758114606142, -0.01998143270611763, -0.0043961298651993275, 0.010366912931203842, 0.04058627784252167, -0.012350007891654968, 0.009071720764040947, 0.01695035956799984, -0.03536251187324524, 0.06294312328100204, -0.028504980728030205, -0.02476450800895691, -0.048927098512649536, 0.000511896563693881, 0.003264852100983262, -0.006588820833712816, -0.012059799395501614, 0.011866326443850994, -0.04142465814948082, 0.03413718566298485, 0.021281998604536057, -0.0019011381082236767, 0.025022471323609352, 0.013435604982078075, -0.017326556146144867, 0.008539671078324318, -0.026613246649503708, 0.01040453277528286, 0.016552666202187538, 0.011963062919676304, 0.023625168949365616, -0.022292356938123703, 0.04196208342909813, -0.005981531459838152, 0.0025836669374257326, 0.015327338129281998, 0.0016781070735305548, -0.004989983979612589, -0.005223763175308704, 0.031493060290813446, 0.008244086988270283, 0.016004493460059166, 0.03933945298194885, 0.014908147044479847, -0.005992279853671789, 0.003917822614312172, -0.00962526723742485, -0.06732850521802902, 0.010538889095187187, 0.022679300978779793, 0.010232556611299515, -0.02124975249171257, 0.023517683148384094, 0.03390071913599968, 0.05159272253513336, -0.024743011221289635, -0.030031263828277588, 0.017358802258968353, -0.013994526118040085, 0.021142268553376198, -0.026161810383200645, 0.00582567835226655, -0.014789913780987263, -0.034653112292289734, -0.011737344786524773, 0.021625950932502747, 0.0028805937618017197, 0.01802520826458931, -0.0206155925989151, 0.006078267935663462, -0.013252881355583668, 0.04806721955537796, -0.004869063384830952, 0.015112368389964104], [0.022678524255752563, -0.0022647089790552855, 0.049243487417697906, 0.03170878440141678, -0.03630392625927925, 0.010036161169409752, -0.024850357323884964, 0.028508184477686882, 0.02108965627849102, 0.052261196076869965, -0.030588572844862938, 0.005175252910703421, 0.0074299597181379795, 0.004277942236512899, -0.028531046584248543, -0.028782522305846214, -0.002681929850950837, 0.02610773593187332, -0.007932910695672035, 0.006664102431386709, 0.018174825236201286, 0.06369189918041229, -0.04368816316127777, -0.005401009228080511, -0.0211010854691267, -0.03698977082967758, -0.02432454563677311, -0.024941803887486458, 0.038567207753658295, -0.047277405858039856, 0.05034083500504494, -0.02631348930299282, 0.041173409670591354, -0.06026269122958183, 0.04199641942977905, -0.012493763118982315, 0.023204335942864418, -0.016791708767414093, 0.036806877702474594, 0.04185925051569939, -0.03564094752073288, 0.030268512666225433, -0.018952112644910812, -0.027067914605140686, -0.024073069915175438, 0.03870437666773796, 0.027090776711702347, -0.05738215148448944, -0.0024518866557627916, 0.007698581553995609, 0.010407659225165844, 0.038567207753658295, 0.0054238708689808846, -0.009070266038179398, 0.001338107162155211, -0.0085844611749053, 0.004709451459348202, 0.036189619451761246, -0.010882033966481686, -0.03495510295033455, 0.03996175527572632, -0.03895585238933563, -0.010276205837726593, -0.009881846606731415, 0.02414165437221527, 0.014254092238843441, 0.015420024283230305, 0.021238254383206367, -0.008630184456706047, -0.04515129327774048, 0.02690788544714451, 0.03362914174795151, 0.0093331728130579, -0.009618940763175488, -0.0036721148062497377, 0.02082674950361252, -0.00538672087714076, -0.023592980578541756, 0.015385732054710388, 0.00030219933250918984, -0.04563138633966446, -0.008955959230661392, -0.02715936116874218, -0.06035413593053818, -0.020243782550096512, 0.00012591638369485736, -0.025101833045482635, -0.037286967039108276, 0.0030548565555363894, -0.001337392837740481, -0.03781278058886528, -0.01074486505240202, -0.06314323097467422, 0.01756899803876877, -0.03628106415271759, -0.04645439609885216, 0.06323467195034027, -0.028119539842009544, -0.026793578639626503, 0.007132761646062136, -0.027502281591296196, -0.03502368927001953, -0.03438356891274452, 0.037904225289821625, 0.02800523303449154, -0.033354803919792175, -0.017054615542292595, 0.039458803832530975, 0.02674785628914833, -0.015168548561632633, 0.0707332193851471, 0.0026262050960212946, -0.01954651065170765, 0.04382533207535744, -0.022084126248955727, -0.0031748791225254536, -0.0046923053450882435, -0.025261864066123962, 0.005438159219920635, -0.0012973853154107928, -0.00944176409393549, -0.004823758732527494, 0.024690328165888786, -0.028165264055132866, 0.008967390283942223, -0.06364618241786957, -0.008504446595907211, -0.001203796360641718, -0.04666014760732651, -0.02154688350856304, 0.053998664021492004, 0.0011952233035117388, 0.04837475344538689, -0.0060868519358336926, 0.012116549536585808, 0.002517613349482417, 0.015099965035915375, -0.0005693921120837331, 0.008258686400949955, -0.015408594161272049, 0.016837432980537415, 0.02955980971455574, 0.010121891275048256, 0.008847367949783802, -0.035046547651290894, -0.0034863657783716917, -0.008001495152711868, 0.03196026012301445, 0.04469406604766846, -0.034657906740903854, 0.017649011686444283, 0.03282899037003517, 0.04782608151435852, -0.00826440192759037, -0.019855139777064323, 0.015682930126786232, 2.174513429054059e-05, 0.008304408751428127, 0.028165264055132866, 0.031000079587101936, -0.06012552231550217, -0.0443740077316761, -0.014551290310919285, -0.013842586427927017, 0.017649011686444283, -0.008470154367387295, -0.011876504868268967, 0.024233099073171616, -0.010344790294766426, -0.023307213559746742, -0.03710407763719559, -0.004958069417625666, -0.04057901352643967, 0.013819725252687931, -0.010019015520811081, -0.02521614171564579, 0.06195443496108055, 0.054455891251564026, 0.01762615144252777, 0.006224020384252071, -0.017511844635009766, 0.02018662914633751, -0.11485575139522552, -0.03586956113576889, 0.013271051459014416, 0.01844916120171547, 0.013842586427927017, -0.011602167971432209, -0.04992933198809624, -0.027273667976260185, -0.02697646990418434, -0.016425926238298416, 0.005755361169576645, 0.006326896604150534, -0.008933098055422306, -0.007195630576461554, -0.0447855107486248, 0.00296341092325747, 0.044876959174871445, -0.033126190304756165, 0.020129475742578506, -0.05143818259239197, -0.017866196110844612, 0.01000758446753025, -0.07068749517202377, 0.009584648534655571, -0.0070527466014027596, -0.024370267987251282, 0.05491311848163605, -0.007892903871834278, 0.007098469417542219, -0.015008519403636456, -0.031640198081731796, 0.03189167380332947, 0.0280280951410532, 0.044259700924158096, 0.005300990771502256, 0.03710407763719559, 0.037012629210948944, 0.04714023694396019, -0.04496840387582779, 0.01607157476246357, 0.0017146061873063445, -0.02871393784880638, -0.04012178257107735, -0.009510348550975323, 0.023844456300139427, -0.02914830483496189, 0.009047404862940311, -0.06602376699447632, 0.007029884960502386, 0.020986778661608696, 0.029285471886396408, -0.02240418642759323, 0.02176406793296337, 0.005766791757196188, 0.0004947353154420853, -0.04103624075651169, 0.03712693974375725, -0.005966829136013985, 0.011636460199952126, -0.004169350489974022, -0.022747108712792397, -0.006252597086131573, 0.03394920006394386, -0.00891023688018322, 0.013271051459014416, 0.003514942480251193, 0.02519327960908413, -0.01444841455668211, -0.038544345647096634, -0.02322719804942608, 0.08819933980703354, -0.1090032234787941, -0.004529417958110571, 0.030245652422308922, -0.015511469915509224, -0.05578185245394707, 0.009801832027733326, -0.011013486422598362, -0.02391304075717926, -0.008561599999666214, 0.01672312431037426, -0.012505194172263145, -0.08618753403425217, -0.03042854368686676, -0.007378521841019392, 0.007081323303282261, -0.03561808541417122, 0.01827770099043846, -0.018552038818597794, 0.001907499274238944, -0.015340009704232216, -0.031411584466695786, -0.041607774794101715, 0.029376918449997902, 0.01807194948196411, -0.0334005281329155, -0.015248564071953297, -0.0014552719658240676, -0.06113142520189285, -0.03429212421178818, -0.035709530115127563, -0.04992933198809624, 0.03065715730190277, -0.01055054273456335, -0.008064364083111286, -0.05221547186374664, -0.007144192233681679, -0.006424057763069868, 0.07347659021615982, -0.00879592914134264, -0.022026972845196724, 0.0011952233035117388, 0.041424885392189026, -0.003037710441276431, -0.02153545245528221, -0.00043936781003139913, -0.04714023694396019, 0.004220788832753897, 0.002589055337011814, 0.027685172855854034, 0.009458910673856735, -0.038155701011419296, -0.06570370495319366, 0.019923722371459007, 0.027959510684013367, 0.016391634941101074, 0.0009408901096321642, 0.0075728436931967735, -0.022106988355517387, 0.03955024853348732, -0.018506314605474472, -0.025787675753235817, -0.02107822522521019, -0.008413000963628292, -0.047277405858039856, 0.03308046609163284, 0.03698977082967758, -0.005863952916115522, 0.012733807787299156, 0.032074566930532455, 0.005118099506944418, 0.023592980578541756, 0.004260796122252941, -0.021649759262800217, 0.019375048577785492, 0.044259700924158096, -0.050112221390008926, -0.014597013592720032, 0.00396074028685689, -0.00777288107201457, 0.035526640713214874, -0.0041293432004749775, -0.037675611674785614, -0.04558566212654114, -0.021112516522407532, -0.01739753596484661, 0.014688459224998951, -0.01676884852349758, 0.007389952428638935, -0.010447666980326176, -0.011670752428472042, 0.006881285924464464, -0.0072013456374406815, 0.02718222327530384, 0.014105493202805519, 0.02041524276137352, -0.029651256278157234, -0.003163448302075267, 0.02234703302383423, 0.011899366974830627, -0.06789840012788773, -0.005089522339403629, -0.03737841546535492, 0.006218304857611656, 0.03394920006394386, -0.0008987393812276423, -0.022861415520310402, 0.014597013592720032, -0.014802766032516956, -0.03262323886156082, 0.030291374772787094, 0.03342339023947716, 0.004758032038807869, 0.0038835827726870775, -0.035778116434812546, -0.0014931361656636, -0.007658574264496565, -0.02585626021027565, 0.0280280951410532, -0.013979755342006683, 0.01675741747021675, -0.037012629210948944, 0.030680019408464432, 0.00016806712665129453, 0.021649759262800217, 0.025901982560753822, -0.008292978629469872, 0.03189167380332947, -0.007109900005161762, 0.019729401916265488, 0.007687150966376066, -0.007401383016258478, 0.006481211166828871, 0.0517125204205513, -0.07370520383119583, -0.04019036889076233, -0.029651256278157234, 0.009641801938414574, 0.020792456343770027, 0.005038084462285042, -0.010327644646167755, 0.06186299026012421, -0.05948540195822716, 0.004632294178009033, -0.05623907968401909, -0.009578933008015156, -0.004163635428994894, -0.02761659026145935, 0.010424804873764515, -0.06145148351788521, -0.015168548561632633, -0.02194695919752121, -0.01567150093615055, 0.008247255347669125, 0.010264775715768337, -0.04309376701712608, -0.01823197863996029, -0.01411692425608635, 0.003212028881534934, 0.02606201358139515, 0.03493224084377289, 0.021432576701045036, 0.00815009418874979, 0.02192409709095955, 0.003952166996896267, 0.025719091296195984, 0.010264775715768337, -0.05367860198020935, 0.05829660966992378, 0.032028842717409134, -0.02432454563677311, -0.03145730867981911, -0.014288384467363358, 0.029811285436153412, 0.0564676970243454, -0.011007771827280521, -0.001773188472725451, -0.021444007754325867, -0.003992174752056599, -0.011585022322833538, -0.023775871843099594, 0.024415992200374603, -0.04480837285518646, -0.03586956113576889, 0.01314531359821558, -0.03934449702501297, 0.0014774189330637455, -0.01802622526884079, -0.023798733949661255, -0.03824714571237564, 0.03783564269542694, -0.01936361938714981, -0.032234594225883484, -0.01095633301883936, 0.009447479620575905, 0.01871206797659397, -0.016997462138533592, -0.02562764659523964, -0.008470154367387295, -0.001161645632237196, -0.07676862925291061, 0.013762571848928928, 0.00017128200852312148, -0.005412439815700054, -0.041607774794101715, -0.039618831127882004, 0.009390326216816902, -9.698241046862677e-05, -0.019375048577785492, 0.05015794560313225, 0.10049878060817719, 0.030725741758942604, 0.022529924288392067, 0.020769596099853516, 0.0016645968426018953, -0.021352561190724373, -0.006521218456327915, -0.04460262134671211, 0.006932724267244339, -0.024073069915175438, -0.037744197994470596, 0.008212963119149208, 0.036006730049848557, -0.020106613636016846, -0.02087247185409069, -0.02459888346493244, -0.03522944077849388, -0.01368255726993084, 0.007670004852116108, 0.060765642672777176, -0.042293619364500046, -0.025581924244761467, 0.08097513020038605, -0.03822428733110428, 0.0352751649916172, 0.03180022910237312, -0.033377666026353836, -0.02279283106327057, -0.03847576305270195, -0.008607322350144386, 0.052444085478782654, -0.009533209726214409, 0.017729027196764946, 0.002789092715829611, -0.05024939030408859, 0.017991933971643448, 0.010041876696050167, 0.021215392276644707, 0.03084004856646061, -0.0595768466591835, 0.013019575737416744, 0.039435941725969315, 0.014174077659845352, -0.038361456245183945, 0.0038207140751183033, -0.025536200031638145, 0.0049523538909852505, -0.007155622821301222, -0.055553238838911057, -0.005506743211299181, 0.032714683562517166, -0.005023796111345291, -0.021444007754325867, -0.01822054758667946, 0.020518120378255844, -0.01715749129652977, -0.032280318439006805, 0.03580097481608391, -0.0034349276684224606, -0.01108778640627861, -0.0028433885890990496, -0.006904147565364838, -0.0055410354398190975, 0.015488608740270138, 0.0017260368913412094, 0.008064364083111286, 0.023387227207422256, 0.020952487364411354, -0.02912544272840023, -0.03262323886156082, -0.05697064474225044, 0.030268512666225433, -0.007275645155459642, 0.016208743676543236, -0.010739149525761604, 0.024896081537008286, -0.01237945631146431, -0.020289506763219833, 0.013431081548333168, 0.02430168353021145, -0.007361375726759434, 0.01204796601086855, 0.000456156674772501, -0.005581042729318142, 0.03266896307468414, 0.01511139515787363, 0.0015602916246280074, 0.0015560050960630178, -0.028302431106567383, 0.022507064044475555, -0.0010309069184586406, -0.016860293224453926, -0.00997900776565075, 0.025810537859797478, 0.015991559252142906, -0.03344624862074852, 0.008555884473025799, -0.01555719319730997, -0.019237881526350975, 0.020038031041622162, -0.017991933971643448, -0.006658387370407581, 0.022552786394953728, 0.02343294955790043, 0.01934075728058815, -0.0382700078189373, -0.022667093202471733, -0.004189354367554188, -0.008378708735108376, -0.021569745615124702, 0.03282899037003517, -0.027090776711702347, 0.026473518460989, 0.016574526205658913, 0.02459888346493244, -0.02914830483496189, 0.03843003883957863, 0.041402023285627365, 0.0027862349525094032, 0.0386815145611763, -0.022244157269597054, -0.015088533982634544, -0.010899179615080357, 0.005915391258895397, -0.04279657080769539, -0.0329890213906765, 0.003149159951135516, 0.018083378672599792, 0.0005690348916687071, -0.0033634856808930635, 0.0175804290920496, -0.01720321550965309, 0.02193552814424038, 0.010476243682205677, 0.03262323886156082, 0.011545014567673206, -0.01932932622730732, 0.00957321748137474, 0.0029719839803874493, -0.010127606801688671, 0.03472648933529854, -0.009618940763175488, -0.07141906023025513, -0.014151215553283691, 0.013545388355851173, -0.03628106415271759, 0.03360627964138985, -0.00348065048456192, 0.0006333326455205679, 0.012676654383540154, 0.006475495640188456, -0.0321660116314888, -0.0025419036392122507, -0.0032491786405444145, -0.05024939030408859, -0.045745693147182465, 0.00013895453594159335, 0.025581924244761467, -0.021021071821451187, 0.013991186395287514, 0.0023375796154141426, 0.0022447051014751196, -0.04254509508609772, -0.005046657286584377, -0.027273667976260185, -0.03998461365699768, -0.04471692815423012, -0.04846619814634323, -0.01777474954724312, -0.004200784955173731, -0.048740535974502563, -0.0053667169995605946, 0.0026190609205514193, -0.03260037675499916, -0.004266511648893356, -0.004900916013866663, -0.01023048348724842, 0.024164516478776932, 0.02539903298020363, 0.013945463113486767, 0.033766310662031174, -0.039641693234443665, 0.04714023694396019, 0.03929877281188965, -0.024210238829255104, 0.022964291274547577, 0.03237176313996315, -0.009236011654138565, 0.0011523582506924868, 0.0077042970806360245, -0.029376918449997902, -0.02805095538496971, 0.021444007754325867, 0.030680019408464432, -0.004435114562511444, 0.0158772524446249, 0.006852709222584963, -0.0009566073422320187, -0.03724124655127525, 0.02302144467830658, 0.0010809162631630898, 0.034657906740903854, 0.016677401959896088, -0.015774376690387726, 0.037949949502944946, -0.004412252921611071, 0.0019317895639687777, 0.014471275731921196, -0.044648341834545135, -0.015420024283230305, 0.028325293213129044, -0.050752341747283936, -0.0008565886528231204, -0.042705122381448746, -0.017534704878926277, 0.024255961179733276, -0.03971027955412865, 0.016220174729824066, 0.0032891861628741026, 0.00024522439343854785, -0.015328578650951385, -0.0023475815542042255, 0.00044436875032261014, -0.005458162631839514, 0.007492828648537397, -0.016391634941101074, 0.011596452444791794, 0.010476243682205677, -0.016677401959896088, 0.03630392625927925, 0.002746227430179715, 0.01522570289671421, 0.03022279031574726, 0.037904225289821625, 0.023124320432543755, -0.004249365534633398, -0.00255190534517169, 0.021901234984397888, 0.0060296980664134026, -0.011647891253232956, 0.005443874280899763, -0.06090281158685684, -0.018151963129639626, 0.02234703302383423, -0.03200598061084747, -0.006561226211488247, 0.05066089704632759, -0.006326896604150534, -0.040510427206754684, 0.0007594276103191078, -0.05495884269475937, -0.021203963086009026, -0.013728279620409012, -0.029216889292001724, 0.02631348930299282, -0.03324049711227417, -0.005152391269803047, -0.008521592244505882, -0.03470362722873688, 0.010196191258728504, -0.04666014760732651, -0.014414122328162193, 0.022724246606230736, 0.00867590680718422, -0.006252597086131573, -0.028736798092722893, 0.02475891262292862, -0.02978842332959175, 0.007972918450832367, -0.06222877278923988, -0.016174450516700745, 0.009716100990772247, -0.018574899062514305, 0.015465747565031052, -0.032691825181245804, -0.03218887373805046, -0.007389952428638935, -0.029811285436153412, -0.010561973787844181, -0.0186663456261158, -0.008298693224787712, -0.001988943200558424, -0.0034892235416918993, -0.0027705177199095488, -0.011579306796193123, 0.020289506763219833, 0.024370267987251282, -0.028576768934726715, -0.009521779604256153, 0.00679555581882596, -0.014368399046361446, 0.010447666980326176, -0.004958069417625666, 0.010339074768126011, -0.005232406314462423, 0.0007451392593793571, -0.025124695152044296, 0.014231231063604355, 0.024507436901330948, 0.01305386796593666, 0.005632481072098017, 0.04329951852560043, 0.005561039317399263, -0.012322302907705307, -0.02997131459414959, 0.015271425247192383, 0.03518371656537056, 0.006721255835145712, -0.050523728132247925, 0.0009651803411543369, -0.0060925669968128204, 0.010516250506043434, 0.03582383692264557, 0.005198114085942507, -0.05020366609096527, 0.0030148490332067013, -0.006989877671003342, -0.034040648490190506, 0.033972062170505524, -0.027913788333535194, -0.0158772524446249, 0.04585999995470047, 0.019295034930109978, -0.025901982560753822, 0.0013459657784551382, -0.019752262160182, 0.01695173978805542, -0.0075614131055772305, -0.037881363183259964, -0.011362123303115368, 0.0029162592254579067, -0.033354803919792175, -0.02800523303449154, 0.006041129119694233, 0.040076062083244324, -0.02129540778696537, -0.01847202330827713, 0.004269369412213564, 0.003183451946824789, -0.008635899983346462, -0.00016208385932259262, 0.008481585420668125, 0.061177145689725876, -0.03602958843111992, -0.02713649906218052, -0.019432201981544495, -0.01075629610568285, 0.01803765632212162, -0.018140532076358795, 0.021821221336722374, -6.697680510114878e-05, 0.00023272205726243556, -0.051849689334630966, -0.03330908343195915, 8.023820555536076e-05, 0.00025433325208723545, -0.007378521841019392, -0.023112891241908073, 0.02953694760799408, -0.0339263416826725, 0.009704670868813992, 0.004249365534633398, 0.010493389330804348, -0.021866943687200546, 0.015054241754114628, 0.0028133830055594444, -0.004363672807812691, 0.027227945625782013, 0.01193365827202797, 0.021249685436487198, -0.021398285403847694, 0.009458910673856735, 0.0008958816761150956, -0.027090776711702347, -0.025467615574598312, -0.0014874208718538284, 0.01632305048406124, -0.020518120378255844, 0.029376918449997902, -0.008721630088984966, -0.05473022907972336, -0.020118044689297676, -0.03367486596107483, -0.021146809682250023, -0.00836156215518713, 0.025719091296195984, 0.0030119915027171373, 0.026382073760032654, 0.015385732054710388, -0.02278140000998974, 0.041173409670591354, -0.024896081537008286, 0.03385775536298752, -0.00657265679910779, -0.00976753979921341, -0.02328435145318508, 0.006429772824048996, 0.008092940784990788, -0.036418233066797256, 0.014276953414082527, 0.031434446573257446, -0.029605532065033913, -0.004077904857695103, 0.01610586605966091, 0.010041876696050167, -0.0017031753668561578, 0.0047494592145085335, -0.00967609416693449, 0.02302144467830658, -0.014094062149524689, 0.017466120421886444, -0.009075981564819813, -0.04352813586592674, 0.021215392276644707, -0.01826626993715763, 0.010722003877162933, 0.024370267987251282, -0.022861415520310402, 0.005232406314462423, 0.020243782550096512, 0.00999615341424942, -0.013968324288725853, -0.009756108745932579, -0.0024333118926733732, -0.017923349514603615, 0.010407659225165844, 0.026633549481630325, 0.029514087364077568, -0.0029291186947375536, -0.01324819028377533, 0.02736511453986168, -0.01467702817171812, 0.0029977031517773867, 0.0037178376223891973, -0.0020075179636478424, -0.008601607754826546, -0.010356221348047256, 0.014939934946596622, -0.03897871449589729, 0.04451117664575577, 0.017431829124689102, 0.004417968448251486, 0.03522944077849388, 0.016677401959896088, -0.006949870381504297, 0.011236385442316532, -0.01052196603268385, -0.004823758732527494, 0.010213336907327175, -0.025581924244761467, -0.05308420583605766, -0.04636295139789581, 0.0039035866502672434, 0.026176320388913155, -0.024644605815410614, 0.0046923053450882435, 0.03221173211932182, -0.002381873782724142, 0.06410340964794159, 0.04041898250579834, 0.025261864066123962, 0.017077477648854256, 0.012493763118982315, -0.031594473868608475, -0.0010487674735486507, -0.02240418642759323, -0.004440830089151859, -0.013659695163369179, 0.02303287573158741, 0.030725741758942604, 0.027730897068977356, 0.07562556117773056, 0.037721335887908936, -0.005606762133538723, 0.009984723292291164, -0.0017589001217857003, 0.04741457477211952, 0.010041876696050167, -0.003866436891257763, -0.019489357247948647, -0.00017476480570621789, -0.055507514625787735, 0.006664102431386709, -0.005183825735002756, 0.014082632027566433, 0.005172395147383213, -0.003349197329953313, 0.062457386404275894, -0.006229735445231199, 0.014528429135680199, 0.028165264055132866, 0.007990065030753613, -0.030908633023500443, 0.02343294955790043, 0.0282338485121727, 0.002853390295058489, 0.02670213207602501, -0.007887188345193863, -0.005949683487415314, 0.02887396700680256, -0.012950991280376911, -0.022884275764226913, 0.042910877615213394, 0.015717223286628723, 0.037904225289821625, 0.003875009948387742, 0.016620248556137085, 0.029171165078878403, -0.02391304075717926, -0.014951365068554878, 0.035046547651290894, 0.02738797478377819, -0.012939561158418655, 0.0033234781585633755, 0.0036778301000595093, -0.010807733982801437, 0.017088908702135086, -0.022289879620075226, -0.019512217491865158, 0.038818683475255966, 0.039618831127882004, -0.011259246617555618, 0.009727532044053078, 0.04919776692986488, 0.026450656354427338, -0.020986778661608696, -0.028188124299049377, -6.189772648212966e-06, 0.031845949590206146, -0.0006301177782006562, 0.009013112634420395, -0.015945836901664734, -0.01871206797659397, 0.029696978628635406, 0.03664684668183327, 0.013111021369695663, 0.03751558065414429, 0.019054990261793137, 0.02478177472949028, 0.017717596143484116, 0.008761636912822723, 0.020998209714889526, 0.0035178002435714006, 0.05102667957544327, 0.012082258239388466, 0.00738423690199852, -0.0238901786506176, 0.0339263416826725, 0.028782522305846214, -0.009698955342173576, 0.0069841621443629265, -0.026427796110510826, -0.020118044689297676, -0.016791708767414093, 0.010264775715768337, 0.0008537309477105737, -0.03500082716345787, 0.019466495141386986, 0.009144566021859646, -0.0021946958731859922, 0.012116549536585808, 0.02631348930299282, 0.012962422333657742, -0.018769221380352974, 0.006401196122169495, 0.04915204271674156, 0.0481918640434742, 0.0046808747574687, -0.006355473306030035, 0.018597761169075966, 0.013693987391889095, 0.03520657867193222, 0.004340811166912317, 0.048146139830350876, 0.0010394799755886197, -0.0017088907770812511, -0.015237133018672466, 0.02391304075717926, -0.008458723314106464, -0.015168548561632633, -0.02501038834452629, 0.04647725820541382, -0.033126190304756165, -0.020998209714889526, -0.021809790283441544, -0.022872846573591232, 0.015374301932752132, 0.013865448534488678, 0.008853082545101643, 0.027525143697857857, -0.027273667976260185, 0.003897871356457472, 0.01076201070100069, -0.03625820577144623, -0.03607531264424324, 0.005329567473381758, -0.014688459224998951, -0.01930646412074566, 0.01314531359821558, -0.03406350687146187, 0.023981625214219093, -0.0024718905333429575, 0.03982458636164665, -0.03349197283387184, -0.031411584466695786, 0.04169921949505806, 0.013465373776853085, 0.02736511453986168, -0.02459888346493244, 0.021444007754325867, 0.012893837876617908, 0.028599631041288376, 0.03239462524652481, -0.0011459283996373415, -0.017957640811800957, -0.03810998052358627, -0.009035974740982056, 0.01692887768149376, 0.005646769423037767, 0.02631348930299282, 0.024667466059327126, 0.009801832027733326, -0.039847444742918015, -0.03751558065414429, 0.009630370885133743, 0.016391634941101074, 0.03214314952492714, 0.013819725252687931, -0.025536200031638145, 0.007755734957754612, -0.0027519429568201303, 0.03429212421178818, 0.003223459469154477, 0.012345164082944393, 0.005263840779662132, 0.0003243463288526982, -0.005352428648620844, -0.017123199999332428, 0.02480463497340679, -0.0044636912643909454, 0.006189728155732155, -0.00891023688018322, -0.005426728632301092, 0.02282712236046791, -0.0186663456261158, 0.000860160740558058, 0.02912544272840023, 0.026153458282351494, -0.00846443884074688, -0.008767352439463139, 0.015248564071953297, -0.021649759262800217, 0.03939021751284599, 0.021021071821451187, -0.02322719804942608, -0.01052196603268385, -0.009493202902376652, 0.018334854394197464, -0.00014163361629471183, -0.033560559153556824, -0.040716178715229034, -0.0049209194257855415, 0.032897576689720154, -0.019066419452428818, -0.022095557302236557, 0.005535319913178682, 0.02046096697449684, -0.003192025003954768, -0.012082258239388466, 0.0023075740318745375, -0.006006836891174316, -0.018506314605474472, 0.01648307964205742, 0.009258872829377651, -0.020689580589532852, -0.06405768543481827, 0.01487135048955679, 0.00462086359038949, 0.0022447051014751196, 0.004109339322894812, -0.03180022910237312, 0.020815318450331688, -0.007881472818553448, -0.00956178642809391, -0.021215392276644707, 0.049837883561849594, 0.015717223286628723, -0.04489981755614281, -0.0072584995068609715, 0.04131057858467102, -0.017500413581728935, 0.010333359241485596, 0.014631305821239948, 0.008841652423143387, 0.00838442426174879, -0.016220174729824066, 0.01021905243396759, 0.03623534366488457, 0.003360627917572856, 0.013876878656446934, -0.015934405848383904, 0.05578185245394707, 0.01974083110690117, -0.010836310684680939, 0.03328622132539749, 0.009813262149691582, -0.02697646990418434, 0.010516250506043434, -0.014619874767959118, -0.009058835916221142, -0.010539112612605095, 0.006218304857611656, 0.02343294955790043, 0.0153057174757123, -0.0015560050960630178, -0.03628106415271759, -0.016643110662698746, 0.009893277660012245, -0.006212589330971241, 0.017420398071408272, -0.005755361169576645, 0.002260422334074974, -0.022244157269597054, 0.019192157313227654, 0.03436070680618286, -0.019466495141386986, -0.0321660116314888, 0.002891968935728073, 0.016425926238298416, 0.011259246617555618, 0.01280239224433899, 0.0003402421425562352, -0.017911918461322784, 0.004643724765628576, 0.010424804873764515, -0.017854765057563782, 0.017957640811800957, -0.01228801067918539, -0.020781027153134346, -0.00777288107201457, 0.012413748539984226, 0.019626524299383163, -0.017260368913412094, 0.02147829905152321, -0.035320885479450226, -0.004778035916388035, 0.00017681875033304095, -0.01778618060052395, 0.026633549481630325, -0.03209742531180382, 0.010710572823882103, -0.027890926226973534, -0.02020949125289917, 0.0009316026698797941, -0.001690315897576511, -0.006629810202866793, -0.035983867943286896, -0.0005633195396512747, 0.0008330128039233387, 0.010584834963083267, 0.015065672807395458, -0.0009408901096321642, 0.029491225257515907, -0.015568623319268227, -0.0027305101975798607, -0.03456645831465721, 0.0039550247602164745, 0.04240792617201805, 0.007698581553995609, 0.014802766032516956, 0.007104184944182634, -0.022061266005039215, -0.0007283504237420857, 0.013339635916054249, 0.03266896307468414, -0.020038031041622162, 0.006509787868708372, 0.026816440746188164, -0.05939395725727081, 0.03237176313996315, 0.0012516624992713332, -0.03913874179124832, -0.004252223297953606, -0.012950991280376911, -0.037264104932546616, -0.002146115293726325, 0.0013809723313897848, -0.003869294421747327, 0.0009037402924150229, 0.00306914490647614, -0.0019860854372382164, -0.027022192254662514, -0.00900739710777998, 0.014482706785202026, -0.009207434952259064, -0.004829473793506622, -0.01825484074652195, 4.603538764058612e-05, 0.0016088720876723528, -0.021238254383206367, -0.020472398027777672, -0.027227945625782013, -0.0015731510939076543, 0.013328204862773418, 0.012196565046906471, -0.015065672807395458, -0.0027219371404498816, 0.02480463497340679, 0.015762945637106895, 0.013076729141175747, 0.027525143697857857, -0.018437732011079788, 0.010333359241485596, 0.010904895141720772, -0.00657265679910779, -0.01280239224433899, 0.03065715730190277, 0.007961487397551537, -0.009430333971977234, -0.029033998027443886, -0.0012109405361115932, 0.011505006812512875, 0.008235825225710869, -0.0003627463593147695, 0.018780652433633804, 0.0282338485121727, -0.006395481061190367, 0.013522527180612087, -0.02083818055689335, 0.007675719913095236, 0.0019417913863435388, -0.015431455336511135, -0.0171689223498106, -0.027456559240818024, 0.00846443884074688, -0.01291669998317957, -5.099167174194008e-05, 0.018369147554039955, 0.047917526215314865, 0.019443633034825325, 0.020701011642813683, 0.012745238840579987, -0.006921293213963509, -0.00999043881893158, -0.015077102929353714, -0.0071270461194217205, 0.01779761165380478, 0.0011802205117419362, -0.00549245486035943, -0.002343295142054558, -0.008521592244505882, -0.01075629610568285, 0.00043508131057024, 0.025696231052279472, -0.016163021326065063, -0.0061611514538526535, -0.010590550489723682, 0.028942551463842392, 0.00891595147550106, -0.01806051842868328, -0.01193365827202797, -0.0477803573012352, 0.03479507192969322, -0.06341756880283356, 0.008281547576189041, 0.025559062138199806, 0.01443698350340128, -0.025924844667315483, 0.0018803513376042247, -0.008018641732633114, -0.03374344855546951, 0.004546564072370529, -0.004123627673834562, -0.006944154854863882, 0.004132200963795185, 0.02241561748087406, 0.024164516478776932, 0.027753757312893867, -0.010887748561799526, -0.022095557302236557, -0.019946584478020668, 0.026656409725546837, -0.013716849498450756, 0.037058353424072266, -0.010470528155565262, -0.01735181361436844, -0.01444841455668211, -0.01632305048406124, -0.0390930213034153, -0.015077102929353714, -0.027730897068977356, 0.0022347033955156803, -0.014025477692484856, 0.009681809693574905, -0.004589429125189781, 0.016688833013176918, -0.004875196609646082, 0.003897871356457472, 0.031845949590206146, 0.012196565046906471, -0.014619874767959118, -0.020140906795859337, -0.024667466059327126, 0.011785059235990047, -0.03522944077849388, -0.014402691274881363, -0.004843762144446373, 0.022941429167985916, -0.022735677659511566, 0.003940736409276724, 0.021375423297286034, -0.028851106762886047, 0.008624468930065632, 0.029674116522073746, -0.050523728132247925, 0.04956354945898056, 0.005892529617995024, -0.009098842740058899, -0.04624864086508751, -0.02521614171564579, 0.0018274843459948897, -0.005709638353437185, -0.011796490289270878, -0.006515503395348787, 0.0037035492714494467, -0.01865491457283497, 0.024210238829255104, -0.004689447581768036, 0.0037492720875889063, 0.01604871265590191, 0.03148016706109047, -0.03241748735308647, -0.0225985087454319, -0.01021905243396759, -0.021992681547999382, 0.0021818364039063454, -0.027113638818264008, -0.015385732054710388, -0.01720321550965309, 0.0058268033899366856, 0.0015045668696984649, 0.017763320356607437, -0.005292417481541634, -0.015454316511750221, -0.00017297874728683382, 0.005255267955362797, -0.038750097155570984, 0.041150547564029694, 0.023387227207422256, 0.041356299072504044, -0.004798039328306913, -0.02690788544714451, 3.835538154817186e-05, -0.004392249509692192, -0.008881660178303719, 0.006972731556743383, 0.005569612141698599, -0.012127980589866638, -0.04970071464776993, 0.010304782539606094, 0.004823758732527494, -0.029811285436153412, 0.005032368935644627, 0.015614346601068974, -0.004540848545730114, -0.011705044656991959, 0.008407285436987877, 0.02172977477312088, 0.0007651429623365402, 0.006418342236429453, 0.010767726227641106, -0.014231231063604355, -0.005192399024963379, 0.00360924587585032, -0.010213336907327175, 0.030519988387823105, 0.0068984320387244225, 0.048740535974502563, 0.004586571361869574, -0.0027219371404498816, 0.026564965024590492, 0.027045054361224174, 0.0074128140695393085, 0.01930646412074566, -0.01676884852349758, -0.004003605339676142, -0.018849236890673637, 0.0003100579488091171, 0.016448788344860077, 0.011990812607109547, 0.05870811268687248, 0.006012551952153444, 0.01607157476246357, -0.022049834951758385, -0.04069332033395767, -0.023501534014940262, 0.017100337892770767, 0.0055981888435781, -0.020701011642813683, -0.0200151689350605, 0.015282856300473213, -0.02887396700680256, -0.0077157276682555676, 0.030954355373978615, 0.026450656354427338, 0.0013831156538799405, 0.01000758446753025, 0.0007079894421622157, -0.03170878440141678, 0.0552331805229187, -0.01584296114742756, 0.000923029612749815, -0.034429289400577545, -0.033972062170505524, 0.0041293432004749775, -0.0031748791225254536, -0.014471275731921196, 0.03607531264424324, -0.03454359993338585, 0.035983867943286896, 0.004492267966270447, 0.0008537309477105737, 0.014219800010323524, -0.009396041743457317, -0.02262137085199356, -0.01590011455118656, -0.021604036912322044, -0.012219426222145557, -0.014059769921004772, -0.005592473782598972, 0.014757043682038784, -0.002496180823072791, -0.005306705832481384, -0.025261864066123962, 0.018197685480117798, 0.04243078455328941, 0.03566380590200424, 0.011762198060750961, -0.022564217448234558, 0.02303287573158741, -0.023101460188627243, 0.022632800042629242, 0.006486926693469286, 0.02496466599404812, 0.014505567960441113, 0.015259994193911552, 0.03502368927001953, -0.035732392221689224, 0.017431829124689102, 0.005060945637524128, -0.030565712600946426, -0.01411692425608635, -0.013625402934849262, -0.0016403065528720617, 0.0564676970243454, -0.008315839804708958, 0.0033149051014333963, 0.012162272818386555, -0.002364727668464184, 0.020472398027777672, -0.05043228343129158, -0.018997836858034134, -0.011047778651118279, -0.019603664055466652, 0.01740896701812744, 0.015179979614913464, -0.012768100015819073, 0.006166866514831781, -0.02430168353021145, 0.022861415520310402, -0.05431872233748436, 0.015694361180067062, -0.04997505247592926, 0.01674598641693592]], "input": ["MINISTRY OF AGRICULTURE:The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.", "EL AL:EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline's liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.", "SERVICE DOG:A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.", "DANGEROUS DOG:Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.", "PET:Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.", "CHECKED BAGGAGE:Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.", "REGISTERED CARGO:Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.", "9KG:The entity \"9KG\" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.", "AUTHORIZATION:Authorization from the Ministry of Agriculture’s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.", "ANIMAL TESTS:The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.", "CHECK-IN COUNTER:The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.", "ARRIVALS HALL:The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.", "CARGO DIVISION:The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.", "EL AL CARGO STORE:The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.", "CARGO TERMINAL:The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.", "ISRAEL:Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-6cad3c901567c6df34219691515f5f6f b/cache/text_embedding/embedding-6cad3c901567c6df34219691515f5f6f deleted file mode 100644 index 096e4bea72e553f940cf3ac0fe3e97832ba91f05..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-6cad3c901567c6df34219691515f5f6f +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.01948961615562439, 0.002960447920486331, 0.009541276842355728, 0.041742317378520966, 0.038954559713602066, -0.03138074651360512, 0.03520466014742851, 0.07480065524578094, -0.02962915040552616, -0.013593390583992004, -0.02718678116798401, 9.492321987636387e-05, -0.061231933534145355, -0.053633447736501694, -0.026866065338253975, 0.013420697301626205, 0.02053810842335224, -0.009559779427945614, -0.01407446339726448, 0.03680823743343353, 0.05141311138868332, -0.009208226576447487, 0.03073931857943535, 0.004564024042338133, 0.006852203514426947, 0.0020275984425097704, -0.012211848050355911, -0.000794849416706711, 0.05516301468014717, -0.0010207378072664142, 0.06463644653558731, -0.028568321838974953, 0.04731782525777817, 0.015011938288807869, 0.028247607871890068, -0.012261188589036465, -0.02874101512134075, 0.008585299365222454, 0.04472743347287178, 0.0038269958458840847, -0.019921347498893738, 0.004937163554131985, -0.02050110138952732, -0.005677275825291872, 0.04934079945087433, -0.014210150577127934, -0.016960900276899338, -0.027803540229797363, -0.02215401828289032, 0.003583375597372651, -0.020390085875988007, -0.007481298875063658, -0.02413998544216156, -0.005800627637654543, -0.007246929686516523, -0.02790222130715847, 0.026199964806437492, -0.050327613949775696, -0.010528093203902245, 0.011126350611448288, -0.004224806092679501, 0.013322016224265099, -0.01649216189980507, 0.04198902100324631, 0.030912009999155998, 0.012335199862718582, 0.016849882900714874, 0.030295250937342644, -0.08101759105920792, -0.02262275665998459, 0.01109551265835762, 0.007561477366834879, 0.0006152180721983314, -0.011773948557674885, -0.0411008857190609, 0.034735921770334244, -0.006846035830676556, 0.0409281924366951, -0.003719062777236104, 0.03567339852452278, -0.020205058157444, 0.046108976006507874, -0.056593894958496094, 0.053929492831230164, -0.013988116756081581, -0.018145078793168068, 0.007536807097494602, -0.007450460456311703, -0.05427487939596176, 0.04277847334742546, -0.04349391534924507, 0.0058653876185417175, 0.04263044893741608, 0.0229928120970726, 0.005880806595087051, -0.0062231081537902355, 0.001228894223459065, -0.035747408866882324, -0.005245543550699949, -0.02861766330897808, -0.021463247016072273, -0.007179086096584797, -0.010299892164766788, -0.01181712094694376, 0.050031568855047226, 0.0032349061220884323, 0.013544049113988876, -0.0656726062297821, -0.030196569859981537, -0.016849882900714874, -0.060689184814691544, -0.012655914761126041, 0.01577671989798546, 6.610895798075944e-05, 0.03098602220416069, 0.038954559713602066, 0.07746505737304688, -0.020735470578074455, -0.027951562777161598, -0.018231425434350967, 0.013210998848080635, -0.003222570987418294, 0.022980477660894394, -0.03572273999452591, -0.017355626448988914, 0.0138894347473979, -0.03436586633324623, 0.03934928774833679, -0.0013383692130446434, -0.030418602749705315, 0.015110619366168976, -0.02320251055061817, -0.0161097701638937, -0.013988116756081581, -0.015036609023809433, -0.01469122339040041, -0.0775143951177597, -0.024571718648076057, -0.03056662529706955, 0.014148473739624023, -0.007616986054927111, -0.03276228904724121, 0.058863572776317596, 0.009565947577357292, -0.011360718868672848, -0.03488394618034363, 0.005779040977358818, -0.007900695316493511, -0.02194431982934475, -0.02861766330897808, 0.006266281474381685, -0.004585610702633858, 0.04253176972270012, 0.018552141264081, -0.0024901684373617172, 0.012631244957447052, 0.014950262382626534, 0.027926892042160034, -0.004209387116134167, -0.025089796632528305, -0.035328011959791183, 0.024127651005983353, -0.023486221209168434, -0.015801390632987022, -0.005877722520381212, -0.02016805112361908, -0.005390482489019632, 0.029160412028431892, -0.03520466014742851, -0.015789056196808815, -0.05718598514795303, -0.007055734284222126, 0.03044327348470688, 0.031602781265974045, -0.021154867485165596, -0.014987267553806305, 0.028124256059527397, 0.015406664460897446, -0.052992019802331924, -0.033625755459070206, 0.003854749957099557, 0.045812930911779404, 0.008597633801400661, 0.025681886821985245, -0.01211316604167223, -0.010706953704357147, -0.02008170448243618, -0.000738184608053416, -0.015061278827488422, -0.012890283949673176, -0.049562834203243256, 0.019427940249443054, 0.044110674411058426, 0.008535957895219326, 0.02671804279088974, -0.007573812734335661, -0.06537655740976334, 0.026693372055888176, -0.04818129166960716, -0.025311829522252083, -0.018576810136437416, -0.023190176114439964, 0.0002185643243137747, 0.04699711129069328, -0.02731013298034668, 0.01483924500644207, -0.03488394618034363, -0.008375600911676884, 0.034143831580877304, 0.0161097701638937, -0.011268205009400845, -0.045122161507606506, -0.002790838945657015, -0.006186102516949177, 0.03044327348470688, 0.003456939710304141, -0.034933287650346756, -0.011299042962491512, 0.0007555310148745775, -0.002249632030725479, 0.022129347547888756, -0.0014231737004593015, 0.04640502110123634, -0.0015380452387034893, -0.020057035610079765, 0.04080484062433243, 0.0006707264692522585, -0.04295116662979126, 0.0071112425066530704, -0.045714251697063446, -0.0016729615163058043, 0.07287636399269104, 0.018169749528169632, 0.003783822525292635, -0.03816510736942291, -0.034390535205602646, -0.041199568659067154, -0.002477833302691579, 0.011699937283992767, -0.07341910898685455, -0.004823063034564257, -0.010996830649673939, -0.0013399111339822412, 0.028444970026612282, 0.03804175555706024, -0.01303830649703741, 0.00807338859885931, -0.029160412028431892, 0.00140544178429991, 0.03429185599088669, 0.05126509070396423, 0.005248627625405788, -0.01910722441971302, -0.024213997647166252, 0.026224635541439056, -0.05491631105542183, 0.05289333686232567, 0.017306284978985786, 0.02624930441379547, 0.026520678773522377, 0.017861369997262955, -0.00830775685608387, 0.00951043888926506, -0.012631244957447052, -0.02814892679452896, 0.010780964978039265, 0.030467944219708443, -0.02245006337761879, 0.010096360929310322, 0.05136377364397049, 0.013581055216491222, 0.053584106266498566, -0.006164516322314739, -0.004163129720836878, 0.015567022375762463, -0.042556438595056534, 0.0035556212533265352, 0.007789678871631622, -0.022820118814706802, 0.025854578241705894, 0.024793751537799835, -0.041668303310871124, -0.035155318677425385, -0.013408361934125423, 0.008270751684904099, 0.030887341126799583, 0.011002997867763042, -0.015924742445349693, -0.05550839751958847, 0.03816510736942291, -0.0010469501139596105, -0.02671804279088974, -0.02189498022198677, -0.018108073621988297, 0.0470217801630497, 0.009097210131585598, 0.03860917687416077, -0.014345837756991386, 0.016418151557445526, 0.006593164522200823, 0.03621614724397659, -0.004631867632269859, -0.04638035222887993, 0.017355626448988914, -0.006821365561336279, -0.05466960370540619, -0.022166354581713676, 0.014419849030673504, 0.016368810087442398, -0.014271826483309269, -0.002066145883873105, 0.041618965566158295, -0.0023375204764306545, -0.031232725828886032, 0.010879646055400372, -0.041791655123233795, 0.03784439340233803, 0.011767780408263206, 0.016072764992713928, -0.07139613479375839, -0.024004299193620682, 0.00029855038155801594, 0.014259491115808487, -0.049612171947956085, -0.004940247628837824, -0.03323102742433548, 0.024658065289258957, 0.013618060387670994, -0.06892909854650497, -0.014345837756991386, 0.039892036467790604, -0.0322195403277874, 0.02358490228652954, -0.048082608729600906, -0.022894131019711494, -0.01876183971762657, 0.06434040516614914, -0.012378373183310032, 0.03199750930070877, -0.028050243854522705, 0.01183562446385622, -0.0677449181675911, 0.033502403646707535, 0.0007802014006301761, 0.029826512560248375, 0.0062477788887917995, 0.012205679900944233, -0.0004664247389882803, 0.021080857142806053, 0.034933287650346756, -0.0400647297501564, -0.027236120775341988, 0.00566494045779109, -0.017096586525440216, -0.03643818199634552, 0.025163806974887848, 0.02084648795425892, -0.0026273976545780897, 0.006765856873244047, 0.03305833414196968, -0.0044807614758610725, 0.02269676700234413, 0.017688676714897156, 0.025755897164344788, 0.01067611575126648, -0.005075934808701277, -0.04270446300506592, 0.019082553684711456, 0.04403666406869888, -0.009929835796356201, 0.04726848378777504, 0.006315622478723526, -0.0402374230325222, 0.023621907457709312, 0.025928590446710587, 0.057679396122694016, 0.030344592407345772, 0.014962597750127316, -0.06315622478723526, 0.037301644682884216, 0.0017500565154477954, 0.01020737737417221, -0.010891981422901154, 0.016800541430711746, 0.01907021924853325, -0.03860917687416077, -0.024892432615160942, 0.04953816160559654, -0.00839410349726677, -0.038362473249435425, 0.021623605862259865, -0.07085338979959488, -0.017392631620168686, -0.008147399872541428, 0.02291880175471306, 0.0040798671543598175, 0.0625147894024849, -0.004005856346338987, -0.021586598828434944, 0.0030190402176231146, 0.007142080459743738, -0.07864923030138016, -0.013667400926351547, -0.013988116756081581, -0.036931589245796204, 0.0010484920348972082, -0.04810727760195732, -0.015628697350621223, -0.010509590618312359, 0.010238216258585453, 0.026915406808257103, -0.02600260078907013, 0.05491631105542183, 0.05422553792595863, -0.011114015243947506, -0.041322920471429825, 0.0036789732985198498, -0.02553386427462101, 0.051511794328689575, 0.020106375217437744, 0.06192270293831825, -0.05531103536486626, -0.032194871455430984, -0.024756746366620064, 0.05402817577123642, -0.007530639413744211, -9.077935828827322e-05, -0.041150227189064026, -0.03967000171542168, -0.01834244281053543, -0.022795449942350388, -0.015616362914443016, -0.03162745386362076, 0.013001300394535065, 0.02410298027098179, -0.0031315989326685667, -0.053534768521785736, 0.0013183244736865163, 0.023917952552437782, -0.030912009999155998, -0.033502403646707535, -0.017812028527259827, 0.010361568070948124, -0.021117862313985825, -0.008190572261810303, -0.045886944979429245, -0.018108073621988297, -0.005452158395200968, -0.04142159968614578, 0.021993661299347878, 0.03683290630578995, -0.024510042741894722, -0.04213704168796539, 0.020180387422442436, -0.023264186456799507, -0.0032472412567585707, -0.017145927995443344, -0.01141622755676508, 0.053337402641773224, -0.02755683660507202, 0.015270977281033993, 0.022203359752893448, 0.035698067396879196, 0.056840602308511734, 0.008381768129765987, 0.0022958889603614807, -0.04847733676433563, 0.007832852192223072, 0.022141683846712112, -0.05965302512049675, 0.005017342511564493, 0.0011548830661922693, -0.0030575876589864492, -0.007900695316493511, 0.003002079203724861, -0.003250325098633766, -0.009171221405267715, 0.0047367168590426445, -0.009565947577357292, 0.011965143494307995, -0.027581507340073586, -0.0023668163921684027, -0.037819720804691315, -0.0010908942203968763, -0.0023621907457709312, -0.053880151361227036, 0.03582141920924187, 0.036290157586336136, -0.02274610847234726, -0.02595326118171215, -0.024756746366620064, 0.03251558542251587, 0.04181632772088051, -0.011385389603674412, -0.06103456765413284, 0.039423298090696335, 0.05664323642849922, -0.040730830281972885, -0.016886888071894646, 0.011570417322218418, -8.629821240901947e-05, -0.049266789108514786, -0.004582526627928019, 0.05013025179505348, -0.00271066022105515, 0.012717590667307377, -0.03150410205125809, -0.01534498855471611, -0.010077858343720436, 0.0350072979927063, -0.020612118765711784, 0.020908163860440254, -0.0350072979927063, -0.028568321838974953, 0.015246306546032429, -0.020649123936891556, 0.002393028698861599, 0.046775076538324356, -0.005045096855610609, 0.032022178173065186, -0.03224421292543411, 0.063057541847229, -0.020562777295708656, 0.01821909099817276, 0.0038917555939406157, -0.01112018246203661, -0.03873252868652344, -0.0162824634462595, 0.024880098178982735, 0.01534498855471611, -0.0041045378893613815, -0.02269676700234413, -0.011514908634126186, 0.028839698061347008, 0.014863915741443634, 0.02189498022198677, -0.007425790186971426, 0.017404966056346893, 0.02654534950852394, 0.015579357743263245, 0.0044869291596114635, -0.009461098350584507, 0.012600407004356384, -0.02203066647052765, 0.0018795761279761791, 0.005146862007677555, -0.00275229150429368, 0.004625699948519468, 0.0317014642059803, 0.021635940298438072, 0.026347987353801727, -0.020624453201889992, 0.035698067396879196, -0.03917659446597099, -0.00872715376317501, -0.023621907457709312, 0.008708651177585125, -0.002056894591078162, -0.011829456314444542, 0.009886662475764751, -0.01581372693181038, 0.03555004671216011, -0.010158036835491657, 0.03263893723487854, -0.014592541381716728, 0.03374910727143288, -0.019008543342351913, 0.042975835502147675, -0.030788658186793327, 0.006852203514426947, -0.026446668431162834, -0.027285462245345116, 0.0018194420263171196, 0.04827997088432312, 0.013482373207807541, 0.011354551650583744, 0.003364425851032138, -0.020057035610079765, -0.008832002989947796, 0.0018626151140779257, 0.01264357939362526, -0.010003847070038319, 0.029530467465519905, -0.032145529985427856, -0.021660611033439636, -0.008757991716265678, 0.026619361713528633, -0.009787981398403645, 0.06290952116250992, 0.023535560816526413, -0.015493011102080345, -0.014555536210536957, 0.02920975349843502, 0.021993661299347878, -0.022141683846712112, -0.04282781481742859, 0.00930074043571949, -0.03150410205125809, 0.05087036266922951, 0.022647427394986153, 0.0060010747984051704, 0.017935380339622498, 0.0006988661480136216, 0.0002781202201731503, 0.034267183393239975, -0.031898826360702515, -0.0009729388984851539, 0.0035155320074409246, 0.05545905977487564, 0.03670955449342728, -0.0017068833112716675, -0.0019119560020044446, 0.010472584515810013, -0.022289706394076347, -0.002931151771917939, 0.010299892164766788, -0.05753137171268463, -0.020057035610079765, 0.013840094208717346, -0.004274146631360054, -0.026767384260892868, -0.017552988603711128, 0.060935888439416885, 0.004437588155269623, 0.008357098326086998, 0.009855824522674084, -0.02262275665998459, -0.015394329093396664, -0.001390793826431036, 0.0007802014006301761, 0.026866065338253975, 0.031775474548339844, 0.036931589245796204, 0.008955354802310467, -0.01606043055653572, 0.021672945469617844, -0.02084648795425892, -0.0016498329350724816, 0.0044560907408595085, 0.04494946822524071, 0.018317772075533867, -0.029703160747885704, 0.0015272519085556269, -0.01082413736730814, 0.04596095532178879, 0.038115765899419785, -0.03295965492725372, 0.026964746415615082, 0.03476059436798096, -0.0036789732985198498, 0.0057913763448596, 0.01590007171034813, -0.0018965370254591107, -0.03582141920924187, -0.0019258330576121807, 0.006170683540403843, -0.04383930191397667, 0.03885588049888611, 0.01877417415380478, -0.02587924897670746, 0.012458551675081253, 0.023868611082434654, 0.0018980788299813867, -0.05040162801742554, 0.015184630639851093, 0.035994112491607666, 0.043814629316329956, 0.020821817219257355, 0.023313527926802635, -0.0005107543547637761, -0.0011456316569820046, -0.014728228561580181, 0.008172069676220417, -0.017577659338712692, 0.053288064897060394, 0.03246624767780304, 0.0075183045119047165, -0.02595326118171215, 0.002527174074202776, 0.007672494277358055, 0.016553837805986404, 0.001959754852578044, -0.019329257309436798, 0.02731013298034668, -0.0233381986618042, -0.02528715878725052, -0.005245543550699949, 0.021105526015162468, -0.015011938288807869, 0.019773324951529503, -0.020982174202799797, 0.038535162806510925, -0.004005856346338987, -0.04768788069486618, -0.024189326912164688, -0.05866621062159538, -0.014900920912623405, -0.005689610727131367, -0.0073517789132893085, -0.048378653824329376, 0.009146550670266151, 0.008998528122901917, 0.013482373207807541, -0.03073931857943535, -0.014456854201853275, -0.007160583510994911, -0.015246306546032429, 0.05170915648341179, 0.02363424189388752, -0.014358172193169594, -0.007290103007107973, -0.013285010121762753, -0.011872629635035992, 0.01741730235517025, -0.024843093007802963, 0.026915406808257103, -0.006648672744631767, -0.008048717863857746, 0.07401119917631149, -0.010219712741672993, -0.0007374136475846171, -0.002917274832725525, -0.05526169389486313, -0.05925830081105232, -0.0318741574883461, -0.02349855564534664, -0.006870706100016832, -0.010491087101399899, 0.024275673553347588, -0.03542669489979744, 0.004073699936270714, -0.0028293863870203495, 0.0017346374224871397, 0.0016159111401066184, -0.021228879690170288, -0.006802862510085106, -0.013334350660443306, 0.038362473249435425, -0.0006950114038772881, -0.045418206602334976, 0.019452610984444618, -0.0020461012609302998, 0.0073517789132893085, 0.002044559456408024, -0.0016652520280331373, -0.02037774957716465, -0.008011712692677975, -0.015369659289717674, -0.02245006337761879, -0.02138923667371273, 0.04063214734196663, 0.009313075803220272, -0.030912009999155998, -0.008844338357448578, 0.013161658309400082, -0.02046409621834755, 0.013482373207807541, -0.014062128029763699, 0.02578056789934635, 0.018946867436170578, 0.00554775632917881, 0.028839698061347008, -0.026323316618800163, -0.011200361885130405, 0.04786057397723198, -0.021697616204619408, -0.03920126333832741, -0.035031966865062714, -0.013494708575308323, 0.042334407567977905, 0.005976404529064894, 0.056791260838508606, -0.0017361793434247375, 0.012051490135490894, 0.0032996658701449633, -0.003848582273349166, -0.015949413180351257, 0.001016112044453621, -0.022413058206439018, -0.03039393201470375, 0.024633394554257393, -0.03695625811815262, 0.03885588049888611, -0.0030606715008616447, -0.0006406594184227288, -0.025126801803708076, 0.007253097370266914, -0.022178689017891884, 0.007234594784677029, -0.028691675513982773, 0.017404966056346893, -0.031010692939162254, -0.026989417150616646, -0.05600180849432945, -0.005927063524723053, 0.042852483689785004, -0.015517680905759335, -0.05244927108287811, 0.019168900325894356, 0.010410908609628677, 0.027754198759794235, 0.009479600936174393, -0.035574715584516525, 0.014888586476445198, 0.0067411866039037704, 0.022462399676442146, -0.007216091733425856, 0.015307983383536339, 0.024115314707159996, -0.03653686121106148, -0.04189033806324005, 0.03357641398906708, -0.02041475474834442, -0.032318223267793655, 0.021154867485165596, -0.013692071661353111, -0.011644428595900536, 0.03209618851542473, -0.010540428571403027, 0.008628472685813904, 0.01876183971762657, -0.012403042986989021, 0.02079714648425579, -0.0004051342257298529, 0.03905324265360832, 0.022857125848531723, -0.021672945469617844, 0.0024439115077257156, 0.034513890743255615, -0.017787357792258263, -0.004280314315110445, -0.013581055216491222, -0.009701634757220745, 0.006648672744631767, 0.04810727760195732, -0.02349855564534664, 0.025928590446710587, 0.038189779967069626, 0.022376053035259247, -0.016985571011900902, 0.027680188417434692, -0.0007289331988431513, 0.005640270188450813, 0.011940473690629005, -0.002760000992566347, 0.007308606058359146, 0.033625755459070206, 0.03579675033688545, -0.020575113594532013, 0.03648751974105835, 0.01614677719771862, -0.020871158689260483, 0.011440897360444069, -0.0059609850868582726, -0.016085101291537285, 0.01927991770207882, -0.002576514845713973, 0.008702483028173447, -0.04909409582614899, -0.03490861505270004, -0.018416453152894974, -0.0036758894566446543, 0.007660158909857273, -0.0052270409651100636, 0.001391564728692174, 0.02231437712907791, 0.03318168595433235, 0.013531713746488094, 0.03653686121106148, 0.011249702423810959, 0.009485769085586071, 0.03999071940779686, -0.011268205009400845, -0.03369976580142975, -0.0011841792147606611, 0.006334125064313412, 0.0032102358527481556, 0.014247155748307705, -0.014962597750127316, -0.004921744577586651, 0.07795846462249756, -0.019255246967077255, -0.003472358686849475, -0.04053346812725067, -0.007999377325177193, 0.01327267475426197, -0.03809109702706337, 0.015752051025629044, -0.03145476058125496, 0.018071068450808525, 0.008998528122901917, 0.03212086111307144, 0.02468273416161537, -0.03288564085960388, -0.03039393201470375, 0.004453007131814957, 0.006506817881017923, 0.033921800553798676, 0.032614268362522125, 0.0161097701638937, -0.010478752665221691, -0.019131895154714584, -0.010275221429765224, 0.01729395054280758, 0.005856136325746775, -0.024275673553347588, 0.012600407004356384, -0.031134044751524925, -0.024362020194530487, 0.003799241501837969, 0.05338674411177635, -0.036931589245796204, -0.04531952366232872, -0.0070002260617911816, 0.023005148395895958, 0.004502348136156797, 0.0035001130308955908, -0.010478752665221691, -0.0024284925311803818, 0.003904090728610754, -0.02380693517625332, -0.0010986037086695433, 0.031208055093884468, -0.007006393279880285, -0.01910722441971302, 0.016048094257712364, -0.004156962502747774, 0.03345306217670441, 0.01809573732316494, 0.004169297404587269, -0.032071519643068314, 0.013593390583992004, 0.027532165870070457, 0.037178292870521545, 0.01750364899635315, -0.004514683037996292, 0.03720296174287796, 0.015998754650354385, -0.015270977281033993, 0.011706104502081871, -0.014247155748307705, -0.0008241455652751029, -0.046059634536504745, -0.06320556253194809, 0.007876025512814522, -0.0405828058719635, -0.005291800945997238, -0.012976630590856075, -0.014740563929080963, -0.02058744803071022, 0.005634102504700422, -0.004551688674837351, 0.03737565502524376, -0.02173462137579918, 0.01804639771580696, -0.02384394034743309, -0.017997056245803833, -0.006232359912246466, 0.01264357939362526, 0.01606043055653572, -0.03932461515069008, -0.006833700463175774, 0.007629320956766605, 0.01699790544807911, 0.040558136999607086, -0.0011055422946810722, -0.004872404038906097, 0.006272449158132076, -0.022721437737345695, 0.004906325601041317, 0.022437728941440582, 0.05141311138868332, -0.023646578192710876, -0.007166751194745302, 0.000858838262502104, -0.016331804916262627, 0.005893141496926546, 0.02351089008152485, -0.04164363443851471, 0.006920047104358673, -0.014530865475535393, 0.03103536181151867, 0.03868318721652031, 0.01715826243162155, -0.04408600553870201, 0.008085723035037518, 0.013618060387670994, -0.03162745386362076, -0.006932382471859455, -0.0073641142807900906, -0.019452610984444618, 0.001802481128834188, 0.043567925691604614, -0.03577207773923874, -0.0005812962772324681, 0.03520466014742851, -0.012168674729764462, 0.006451309658586979, -0.02131522446870804, 0.0066054994240403175, -0.042975835502147675, -0.030048547312617302, -0.008542126044631004, -0.020094040781259537, 0.0014894753694534302, -0.028124256059527397, 0.0035864594392478466, 0.018539804965257645, -0.036339499056339264, -0.027334801852703094, -0.0039010068867355585, -0.015542351640760899, -0.038954559713602066, -0.013963446021080017, -0.01365506649017334, -0.009861992672085762, 0.010793299414217472, -0.0063711307011544704, -0.012514060363173485, 0.018700163811445236, 0.008363265544176102, 0.01504894345998764, -0.03927527740597725, -0.014913256280124187, -0.0036882248241454363, -0.027458155527710915, 0.017133591696619987, 0.01856447570025921, 0.029752502217888832, -0.004110705107450485, 0.021586598828434944, 0.042507097125053406, 0.007536807097494602, 0.0017377212643623352, 0.01665251888334751, 0.050969045609235764, 0.012976630590856075, -0.02050110138952732, -0.02114253304898739, 0.018404118716716766, -0.022080007940530777, 0.006932382471859455, -0.013753747567534447, 0.012162506580352783, 0.022795449942350388, 0.047959256917238235, 0.006957052741199732, 0.01614677719771862, -0.0012782351113855839, 0.006704180967062712, 0.0355253741145134, -0.012230350635945797, -0.003250325098633766, -0.0017855201149359345, -0.01656617410480976, -0.003336671506986022, -0.0014825367834419012, 0.02819826640188694, 0.01071928907185793, -0.009942171163856983, -0.006833700463175774, 0.016307134181261063, 0.03860917687416077, 0.005880806595087051, 0.013136987574398518, -0.0012381456326693296, 0.01179245114326477, -0.013729077763855457, 0.020821817219257355, -0.017614664509892464, 0.02760617807507515, 0.01576438546180725, 0.00682753324508667, -0.03720296174287796, 0.004548605065792799, 0.0010854975553229451, -0.009707801975309849, -0.010472584515810013, -0.01063294243067503, 0.019625302404165268, 0.06557392328977585, 0.001413151272572577, -0.005661856848746538, 0.019329257309436798, 0.025805238634347916, 0.037943076342344284, 0.011206529103219509, 0.025385841727256775, 0.0231655053794384, -0.05101838707923889, 0.03495795652270317, -0.010491087101399899, 0.00042132416274398565, 0.007715667597949505, -0.023350533097982407, -0.001036156783811748, 0.03611746430397034, -0.0019628386944532394, 0.031898826360702515, 0.0030067048501223326, 0.02772952988743782, 0.045171502977609634, -0.03520466014742851, -0.02515147253870964, -0.008357098326086998, 0.0005034303176216781, 0.007370281964540482, 0.008511288091540337, -0.011157188564538956, -0.01105233933776617, -0.004903241991996765, 0.017738018184900284, 0.021339895203709602, -0.0003203297092113644, -0.006802862510085106, 0.04240841791033745, -0.007388784550130367, 0.04971085488796234, 0.0014956429367884994, 0.0374496653676033, 0.007259265054017305, -0.008227578364312649, 0.013198663480579853, 0.00434507429599762, 0.0069878906942903996, 0.012692920863628387, 0.004782973788678646, 0.049612171947956085, -0.00019341208098921925, -0.022499404847621918, -0.007894528098404408, -0.020069370046257973, -0.027458155527710915, -0.026150623336434364, -0.028444970026612282, -0.018885191529989243, 0.003817744320258498, -0.006198437884449959, -0.0013368272921070457, 0.018502799794077873, -0.006112091708928347, 0.01809573732316494, -0.012680585496127605, -0.008893678896129131, 0.01439517829567194, 0.021623605862259865, -0.02016805112361908, 0.08165901899337769, -0.015789056196808815, 0.014987267553806305, -0.009245232678949833, -0.003066838951781392, -0.00798704195767641, -0.03226888179779053, -0.014962597750127316, -0.022055337205529213, 0.01058976911008358, -0.018737168982625008, 0.019637638702988625, -0.005923979915678501, -0.017133591696619987, -0.021500254049897194, -0.001958213048055768, 0.008696315810084343, -0.011237367056310177, -0.029061730951070786, -0.010410908609628677, -0.012218015268445015, -0.023695919662714005, 0.004807644058018923, -0.015246306546032429, -0.027384143322706223, -0.0004074470780324191, 0.004193968139588833, -0.00302212405949831, 0.04810727760195732, 0.0058530522510409355, 0.01647982746362686, 0.02286946028470993, -0.0031701463740319014, 0.022203359752893448, -0.03505663946270943, 0.02076014131307602, -0.016220787540078163, -0.029703160747885704, -0.017355626448988914, 0.018416453152894974, 0.032786961644887924, -0.005190035328269005, -0.019168900325894356, 0.046010296791791916, 0.038658514618873596, 0.023190176114439964, -0.010854976251721382, -0.015542351640760899, 0.012285859324038029, -0.014506194740533829, -0.012976630590856075, 0.002280469983816147, 0.018675493076443672, -0.01091048400849104, 0.007678661961108446, -0.003102302784100175, 0.007259265054017305, 0.004631867632269859, -0.024004299193620682, -0.031060032546520233, 0.017910709604620934, 0.039966046810150146, -0.011274372227489948, 0.0313560776412487, 0.02511446736752987, -0.005063599441200495, -0.016837548464536667, -0.006183018907904625, 0.017849033698439598, -0.004983420949429274, -0.011354551650583744, 0.001924291136674583, 0.005553923547267914, -8.514178625773638e-05, 0.02100684493780136, 0.025607874616980553, -0.004653454292565584, 0.008653142489492893, 0.0024670399725437164, -0.010762461461126804, 0.011225031688809395, 0.017873704433441162, -0.00513452710583806, -0.03767170011997223, -0.010836472734808922, -0.022437728941440582, -0.00022319001436699182, 0.03044327348470688, 0.03680823743343353, -0.007542974781244993, -0.012927289120852947, -0.009239064529538155, 0.02950579859316349, -0.0028201350942254066, 0.02578056789934635, 0.011502574197947979, 0.012612741440534592, -0.0019458777969703078, -0.04332122206687927, -0.01677587255835533, 0.01856447570025921, -0.02528715878725052, -0.0016621681861579418, 0.008202907629311085, 0.01902087777853012, -0.0077341701835393906, 0.0022974309977144003, -0.013963446021080017, -0.011058506555855274, 0.016085101291537285, -0.03357641398906708, 0.015579357743263245, 0.038066428154706955, -0.012927289120852947, -0.017565324902534485, -0.0023375204764306545, 0.019119558855891228, 0.005242459941655397, -0.001548067550174892, 0.010565098375082016, -0.005359644535928965, 0.006457476876676083, -0.010398573242127895, 0.009473433718085289, -0.008289254270493984, 0.012310529127717018, -0.0245593823492527, 0.011780115775763988, 0.013741412200033665, 0.010922819375991821, -0.012581903487443924, 0.00913421530276537, 0.028716344386339188, 0.01678820699453354, 0.014543200843036175, -0.013482373207807541, 0.0035648727789521217, 0.028420301154255867, 0.06083720549941063, 0.0012335199862718582, 0.017145927995443344, 0.010435579344630241, -0.03530334308743477, -0.032786961644887924, -0.004190884064882994, -0.0030992189422249794, -0.02304215356707573, 0.021167203783988953, -0.007573812734335661, 0.006876873783767223, -0.030640635639429092, -0.0031886491924524307, 0.004767554812133312, 0.001867240876890719, 0.015418999828398228, -0.041446272283792496, 0.007647824008017778, -0.00047259233542717993, -0.007968539372086525, -0.017688676714897156, -0.018922196701169014, -0.008024047128856182, -0.029407115653157234, -0.032318223267793655, 0.00872715376317501, 0.009547444991767406, -0.04048412665724754, 0.0036172973923385143, -0.027211450040340424, 0.0004799163725692779, 0.00202914047986269, -0.025003449991345406, -0.03335437923669815, 0.026693372055888176, 0.015628697350621223, -0.024991115555167198, 0.008461946621537209, 0.007296270690858364, 0.05170915648341179, -0.013827758841216564, -0.021919650956988335, -0.006183018907904625, 0.03157811239361763, 0.016072764992713928, -0.021697616204619408, -0.018552141264081, 0.01677587255835533, -0.03601878508925438, -0.03863384574651718, 0.02671804279088974, -0.013704407028853893, -0.019711649045348167, -0.01860148087143898, -0.01270525623112917, -0.022203359752893448, -0.03365042433142662, -0.023313527926802635, -0.007592315319925547, -0.02231437712907791, 0.0001411802222719416, 0.01585073210299015, 0.02617529407143593, -0.026446668431162834, -0.00860380195081234, 0.006876873783767223, -0.006630169693380594, -0.023609573021531105, 0.02320251055061817, 0.01179245114326477, 0.0015102910110726953, 0.025632545351982117, 0.029900524765253067, 0.028987718746066093, -0.014974932186305523, 0.009473433718085289, -0.0033305040560662746, -0.02874101512134075, -0.014284160919487476, 0.022474734112620354, -0.024078309535980225, 0.042457759380340576, -0.03271295130252838, -0.001299821655265987, -0.028346288949251175, 0.01839178241789341, 0.027803540229797363, 0.005779040977358818, -0.0011386931873857975, -0.0043604932725429535, -0.027803540229797363, 0.042260393500328064, -0.019119558855891228, 0.0022342130541801453, -0.03801708668470383, -0.012840943410992622, 0.024288007989525795, 0.009738639928400517, -0.0024901684373617172, -0.03236756473779678, -0.0066240024752914906, -0.006821365561336279, -0.002200291259214282, -0.02765551768243313, 0.04892140254378319, -0.002235754858702421, 0.004483845084905624, 0.014900920912623405, 0.00404902920126915, -0.007012560963630676, -0.015517680905759335, 0.010965992696583271, 0.01344536803662777, -0.010552763007581234, -0.03488394618034363, -0.03902857378125191, -0.019378598779439926, 0.046182986348867416, 0.015604027546942234, -0.009195891208946705, -0.028296947479248047, -0.027384143322706223, -0.010688450187444687, -0.0005994136445224285, -0.0033335876651108265, -0.002414615359157324, 0.0010315311374142766, -0.004520850721746683, -0.004150794818997383, 0.012390708550810814, 0.006710348650813103, -0.0073579465970396996, -0.015863066539168358, -0.01356871984899044, -0.030295250937342644, -0.058518186211586, -0.008468114770948887, 0.012791601940989494, 0.011064673773944378, 0.02908640168607235, 0.01202681940048933, -0.03584609180688858, -0.02219102531671524, 0.018909860402345657, -0.025805238634347916, 0.008104226551949978, 0.0033798448275774717, 0.007660158909857273, 0.038411810994148254, -0.018737168982625008, -0.015061278827488422, 0.03377377614378929, 0.03446454927325249, -0.026520678773522377, 0.017071915790438652, -0.011348383501172066, -0.018922196701169014, 0.0115827526897192, -0.03446454927325249, 0.02194431982934475, -0.06586996465921402, 0.03712895140051842, -0.034982625395059586, -0.0217716284096241, 0.007475131191313267, 0.0018549056258052588, 0.010151869617402554, 0.015332653187215328, 0.02903706021606922, -0.006821365561336279, -0.0033551743254065514, -0.010472584515810013, -0.0013715199893340468, -0.01335902139544487, -0.01525864191353321, -0.008949187584221363, -0.030912009999155998, -0.013790753670036793, -0.031084703281521797, 0.011718439869582653, 0.044283367693424225, 0.04393798112869263, -0.004021275322884321, 0.010540428571403027, 0.04137226194143295, 0.029407115653157234, 0.010447913780808449, -0.03305833414196968, -0.012273523956537247, -0.004110705107450485, 0.019810330122709274, -0.005914728157222271, -0.02879035659134388, -0.020217392593622208, 0.02718678116798401, 0.014678888022899628, -0.0071297455579042435, -0.017651671543717384, 0.018527470529079437, -0.025040455162525177, -0.0063711307011544704, -0.026619361713528633, 0.03562405705451965, -0.007573812734335661, 0.0010955199832096696, 0.028765685856342316, 0.03611746430397034, 0.017392631620168686, 0.03624081611633301, 0.009732472710311413, -0.004471509717404842, -0.016011089086532593, 0.034859273582696915, 0.03525400161743164, 0.02434968389570713, -0.024867761880159378, 0.003734481753781438, -0.006463644560426474, -0.005557007621973753, -0.009158886037766933, -0.020624453201889992, 0.026792053133249283, -0.028124256059527397, 0.025928590446710587, -0.030073218047618866, 0.021623605862259865, -0.00044483813690021634, 0.009417925029993057, 0.0033243363723158836, 0.027877552434802055, 0.0027245371602475643, 0.010306059382855892, 0.030122557654976845, 0.017367960885167122, -0.015122954733669758, -0.010509590618312359, -0.054176196455955505, -0.004767554812133312, 0.03313234820961952, -0.02180863358080387, 0.025928590446710587, 0.019501950591802597, -0.018083402886986732, 0.01948961615562439, 0.03542669489979744, -0.003654303029179573, -0.020723136141896248, 0.0008118103141896427, -0.007931533269584179, 0.006469812244176865], [-0.006277061067521572, -0.004576301667839289, 0.02001856453716755, 0.013807644136250019, -0.06767761707305908, 0.021152403205633163, 0.019376056268811226, 0.05296289920806885, 0.04857872053980827, 0.03794582560658455, -0.001203129650093615, -0.043363057076931, 0.025486189872026443, -0.03401518240571022, -0.03567814826965332, -0.0025054700672626495, -0.05820375680923462, 0.044572487473487854, -0.01576036773622036, 0.01851937733590603, 0.04112057760357857, 0.06289029121398926, -0.0005740061751566827, 0.016705233603715897, 0.021618537604808807, 0.009776215068995953, -0.024881476536393166, 0.011848622001707554, 0.05996750667691231, -0.04678977280855179, 0.05986671894788742, -0.027716074138879776, 0.034141164273023605, -0.0625375434756279, 0.02200908213853836, 0.07044921815395355, 0.004305440001189709, 0.014790304936468601, -0.014550939202308655, 0.0070487018674612045, -0.06404932588338852, 0.01959022507071495, 0.011735238134860992, 0.0018629611004143953, -0.047394488006830215, 0.06047143414616585, 0.01668003760278225, -0.0316971093416214, 0.02067367173731327, 0.040969397872686386, 0.03141995146870613, -0.019867386668920517, 0.06037065014243126, 0.010595099069178104, 0.02435235120356083, -0.03177269920706749, 0.028043627738952637, -0.0175115205347538, 0.012365148402750492, 0.011048635467886925, -0.01091635413467884, -0.017070582136511803, -0.013631269335746765, 0.017536716535687447, 0.026960181072354317, 0.005785730667412281, 0.023319296538829803, 0.04326227307319641, -0.07196100801229477, -0.028975896537303925, -0.009473858401179314, -0.017070582136511803, -0.005102277267724276, -0.03560255840420723, -0.006910121068358421, -0.011798229068517685, 0.003911745734512806, 0.01860756427049637, 0.04207804054021835, -0.06349501013755798, -0.0019054801668971777, -0.010928952135145664, -0.007426647935062647, 0.043136291205883026, -0.045051220804452896, 0.009140005335211754, -0.03595530614256859, -0.0408686101436615, -0.0017936709336936474, 0.031470343470573425, 0.01926267147064209, 0.011703742668032646, 0.01717136800289154, 0.05654079094529152, 0.05568411201238632, -0.03313330560922623, -0.01833040453493595, -0.047394488006830215, -0.02524682506918907, 0.040994592010974884, -0.03010973520576954, -0.03217584267258644, -0.005102277267724276, 0.043312665075063705, 0.04689055681228638, -0.06682093441486359, -0.01397142093628645, -0.00949905440211296, 0.004034578334540129, 0.004944799467921257, -0.03887809440493584, -0.03451910987496376, 0.010475416667759418, 0.040389880537986755, 0.06283990293741226, 0.018305206671357155, 0.035854522138834, -0.014613930135965347, -0.03358684107661247, 0.00992739386856556, 0.011439180001616478, 0.00048070066259242594, 0.043489038944244385, -0.047722041606903076, -0.011697443202137947, 0.0016220202669501305, -0.04603388160467148, -0.017990252003073692, -0.015583992935717106, -0.0237602349370718, 0.01850677840411663, -0.027489306405186653, 0.03940721973776817, -0.005344793200492859, 0.03227662667632103, -0.029555413872003555, -0.010387228801846504, -0.020320922136306763, -0.01305175106972456, 0.0008432930335402489, 0.029051484540104866, 0.015130456537008286, 0.03217584267258644, 0.027111360803246498, 0.01651626080274582, -0.0508715957403183, -0.00431488873437047, 0.04384179040789604, 0.028723930940032005, -0.02859794907271862, -0.06888704001903534, -0.03126877173781395, -0.028698734939098358, -0.00196847110055387, -0.019224876537919044, 0.012503729201853275, -0.019615421071648598, 0.009839206002652645, 0.0012558846501633525, 0.00399993360042572, -0.026330269873142242, -0.010872259736061096, -0.01657925173640251, 0.0051810164004564285, 0.005710141267627478, -0.002461376367136836, -0.009725822135806084, 0.010947849601507187, -0.04124655947089195, -0.04729370027780533, -0.014563537202775478, -0.04618505761027336, -0.04878029227256775, -0.007193581201136112, -0.0035212012007832527, -0.03368762880563736, 0.009328979067504406, -0.032226234674453735, -0.01902330480515957, 0.02350827120244503, -0.005725889001041651, 0.0174989216029644, -0.009480156935751438, 0.05729668587446213, -0.04492523521184921, 0.014891090802848339, -0.02401219867169857, 0.02743891440331936, 0.029908163473010063, 0.01777608133852482, -0.04134734347462654, 0.031974270939826965, 0.01080297026783228, 0.04452209547162056, -0.03885289654135704, 0.026783807203173637, -0.019816992804408073, -0.004733779467642307, 0.0011165168834850192, -0.04479925334453583, 0.025952324271202087, -0.021719323471188545, 0.06369657814502716, 0.011029738001525402, -0.06732486188411713, 0.002033037133514881, -0.00032519144588150084, 0.009530549868941307, 0.05785100534558296, 0.019073698669672012, 0.028623145073652267, -0.0046109468676149845, 0.00256531173363328, 0.01641547493636608, 0.0051904646679759026, 0.016213903203606606, -0.025146039202809334, 0.011993501335382462, 0.007168384734541178, 0.0383489690721035, -0.019489439204335213, -0.022122466936707497, -0.0033511254005134106, 0.0005102277500554919, -0.037819843739271164, 0.07659715414047241, -0.033964790403842926, -0.02226104773581028, -0.043312665075063705, -0.03935682401061058, -0.015987135469913483, 0.024289360269904137, 0.0017054834170266986, 0.00039192262920551, -0.027716074138879776, 0.02033351920545101, -0.038374163210392, -0.023470476269721985, 0.010280144400894642, -0.02685939520597458, 0.060068290680646896, 0.03227662667632103, -0.01592414453625679, -0.02568776160478592, 0.025486189872026443, 0.0059369090013206005, -0.0006373910000547767, 0.00026554675423540175, 0.0038298575673252344, -0.008295925334095955, -0.0038298575673252344, -0.015533600002527237, 0.015571394935250282, -0.04079302400350571, 0.020144546404480934, 0.0675264373421669, -0.0013259622501209378, 0.017297349870204926, 0.013328911736607552, -0.053315646946430206, 0.0204217080026865, 0.021479956805706024, 0.004308589734137058, -0.01350528746843338, -0.05185425654053688, -0.03761827200651169, -0.01950203813612461, -0.01833040453493595, 0.03174750506877899, 0.016717832535505295, -0.058808472007513046, -0.012686403468251228, -0.00047203939175233245, 0.04041507467627525, -0.005256605334579945, 0.019476842135190964, 0.0015802886337041855, 0.004947949200868607, -0.009637635201215744, 0.06359579414129257, -0.01329111773520708, -0.10602658241987228, 0.02001856453716755, -0.05512979254126549, -0.013076948001980782, -0.009045518934726715, 0.05200543254613876, -0.01675562746822834, -0.033561646938323975, 0.024490932002663612, 0.01067698746919632, -0.02059808187186718, -0.03512382507324219, 0.010362032800912857, 0.051400721073150635, 0.006475483067333698, -0.023130323737859726, -0.039482809603214264, 0.042909521609544754, 0.027287734672427177, 0.024049993604421616, -0.017700493335723877, 0.01321552786976099, -0.0040692235343158245, -0.018040644004940987, 0.01777608133852482, -0.02900109253823757, -0.03401518240571022, -0.03552696853876114, 0.003414116334170103, -0.034141164273023605, -0.05603686347603798, -0.018204420804977417, 0.02576335147023201, 0.013958822935819626, -0.03792062774300575, -0.02643105573952198, -0.00042637085425667465, 0.04878029227256775, -0.057901397347450256, 0.05512979254126549, 0.03776945173740387, 9.876803960651159e-05, -0.04895666614174843, 0.01942644827067852, -0.03358684107661247, 0.005678645800799131, -0.0016865860670804977, -0.03643403947353363, 0.03812219947576523, 0.013467492535710335, 0.0055999066680669785, 0.016037529334425926, -0.027060966938734055, 0.002491297200322151, 0.03603089600801468, 0.012780889868736267, 0.009946291334927082, -0.020862644538283348, 0.013064350001513958, -0.03270496800541878, 0.0221098680049181, -0.026481449604034424, -0.012736796401441097, -0.00788018386811018, 0.015092662535607815, -0.0024031095672398806, 0.045580342411994934, 0.000115647679194808, 0.019741404801607132, 0.00550542026758194, 0.00862977746874094, 0.0032881342340260744, 0.008932135067880154, -0.06621622294187546, -0.01960282400250435, -0.02542319893836975, 0.04159930720925331, -0.05185425654053688, 0.010437621735036373, 0.005121174734085798, -0.0002373976312810555, -0.008220335468649864, 0.018645359203219414, -0.0212531890720129, 0.049737755209207535, -0.04026389867067337, 0.045303184539079666, 0.0025369657669216394, -0.01009117066860199, 0.04154891520738602, 0.014387162402272224, 0.006929018534719944, 0.013984018936753273, 0.0006476270500570536, -0.02658223547041416, 0.02791764587163925, 0.023319296538829803, -0.0391804501414299, -0.02968139573931694, 0.05467625707387924, -0.02509564533829689, -0.028975896537303925, -0.009895898401737213, 0.02367204800248146, 0.002053509233519435, -0.00913370680063963, 0.012264362536370754, -0.014248581603169441, -0.006538474000990391, -0.0350230410695076, 0.01718396693468094, -0.010815568268299103, -0.009939991869032383, -0.014613930135965347, 0.015357225202023983, 0.01925007440149784, 0.0179146621376276, -0.02542319893836975, -0.052156612277030945, -0.00913370680063963, -0.027312930673360825, -0.022966546937823296, -0.0304372888058424, -0.024969663470983505, 0.03300732374191284, 0.004853462800383568, -0.021656332537531853, 0.028320789337158203, -0.023382287472486496, 0.0325285941362381, -0.058506112545728683, 0.02675860933959484, 0.038222987204790115, -0.031319163739681244, -0.03900407627224922, -0.05094718560576439, 0.034141164273023605, 0.05558332800865173, -0.02316811867058277, -0.0010991942835971713, -0.005845571868121624, -0.016037529334425926, -0.007055000867694616, 0.011231308802962303, -0.004551105201244354, 0.0010755726834759116, -0.02268938720226288, 0.008825049735605717, -0.01693200133740902, -0.0550290048122406, 0.02242482453584671, 0.029152270406484604, 0.06828232854604721, -0.03295693174004555, -0.010519510135054588, 0.0046770875342190266, -0.03983555734157562, -0.0006618000334128737, -0.03759307414293289, 0.039986737072467804, 0.009114809334278107, -0.015231242403388023, 0.009467558935284615, 0.04993932694196701, -0.054071541875600815, -0.012283260002732277, 0.032150644809007645, 0.01134469360113144, -0.02491926960647106, -0.013530483469367027, -0.005593607667833567, -0.002273977966979146, 0.030991610139608383, -0.047142524272203445, -0.05467625707387924, 0.015445412136614323, -0.04212843254208565, 0.0063243042677640915, -0.07851208001375198, 0.028698734939098358, 0.018960313871502876, 0.04061664640903473, 0.006223518401384354, 0.01442495733499527, 5.093419167678803e-05, -0.008365214802324772, -0.03650962933897972, -0.005593607667833567, 0.013013957068324089, -0.02968139573931694, 0.029152270406484604, 0.03217584267258644, 0.01505486760288477, -0.05296289920806885, -0.003310181200504303, -0.05371879041194916, -0.01925007440149784, -0.021039020270109177, -0.011376189067959785, -0.00583612360060215, -0.01150217093527317, -0.05036766454577446, -0.00523140886798501, 0.014891090802848339, 0.04643702134490013, 0.012900573201477528, -0.005278652533888817, -0.012988760136067867, 0.031218377873301506, -0.03126877173781395, 0.03487186133861542, 0.028723930940032005, -0.012566720135509968, 0.0016015481669455767, -0.005322746001183987, 0.031117592006921768, -0.03643403947353363, -0.03910486027598381, -0.000386214058380574, 0.0019763449672609568, -0.038978878408670425, 0.0006940829334780574, 0.01091635413467884, 0.029404236003756523, 0.02393660880625248, -0.01825481466948986, -0.01029904093593359, 0.006695951800793409, -0.0017606006003916264, -0.04900705814361572, -0.005111726000905037, -0.023407485336065292, -0.0032849847339093685, 0.024566520005464554, -0.013114742934703827, 0.020358717069029808, 0.0341663621366024, 0.0047936211340129375, -0.021618537604808807, -0.00675264373421669, 0.005247156601399183, 0.010998242534697056, 0.009618737734854221, -0.0027369624003767967, -0.019124090671539307, -0.021227993071079254, -0.03678679093718529, -0.03698836266994476, 0.00072912173345685, 0.016465866938233376, -0.02510824427008629, -0.0038424558006227016, -0.0053951856680214405, 0.035904914140701294, -0.017813876271247864, -0.012478532269597054, -0.020295726135373116, 0.014550939202308655, -0.011861220002174377, 0.013190331868827343, 0.03477107360959053, -0.002798378700390458, 0.024075189605355263, 0.0037605674006044865, 0.02043430507183075, -0.01283758133649826, 0.016692636534571648, 0.025561779737472534, -0.01176043413579464, 0.0008039236417971551, -0.0015180850168690085, 0.07412789762020111, 0.011917912401258945, 0.03802141547203064, -0.016566652804613113, 0.03184828907251358, -0.02309252880513668, 0.0375174880027771, 0.01641547493636608, -0.0007456569001078606, -0.00841560773551464, -0.014828099869191647, -0.006840831134468317, -0.005174716934561729, -0.00018277255003340542, -0.011395085602998734, 0.011029738001525402, -0.02859794907271862, -0.02650664560496807, -0.014273778535425663, 0.033989984542131424, 0.008642375469207764, -0.015180849470198154, 0.005990451667457819, 0.00825183093547821, -0.011722639203071594, -0.06682093441486359, 0.001966896466910839, -0.019237475469708443, -0.004321187734603882, 0.010998242534697056, 0.016554055735468864, -0.05220700427889824, -0.00664555886760354, 0.05528096854686737, -0.01775088533759117, -0.029958557337522507, 0.023558663204312325, 0.012484831735491753, -0.006884925067424774, -0.002355866366997361, -0.0007964434335008264, -0.021794913336634636, 0.027816860005259514, 0.02600271627306938, 0.016075322404503822, 0.036131683737039566, -0.039230842143297195, 0.006106984801590443, -0.0021968139335513115, -0.015168251469731331, 0.015886349603533745, -0.001333048683591187, -0.007206179201602936, 0.009933693334460258, -0.024478333070874214, -0.019451644271612167, 0.0029149120673537254, 0.00825183093547821, 0.019287867471575737, 0.0441693440079689, 0.038298577070236206, -0.006267612334340811, -0.035652950406074524, 0.015344626270234585, -0.017612304538488388, -0.009410867467522621, 0.021290984004735947, 0.007483339868485928, -0.016491064801812172, -0.004768424667418003, 0.04661339893937111, 0.0068660276010632515, 0.013480090536177158, 0.01009117066860199, -0.011451778002083302, -0.04321188107132912, -0.055734507739543915, 0.0033385271672159433, -0.0005066844751127064, 0.009606139734387398, 0.015949340537190437, -0.01884693093597889, -0.02693498507142067, 0.004850313067436218, -0.011099028401076794, 0.0031149087008088827, -0.01245963480323553, -0.002795229200273752, -0.00025964135420508683, -0.02576335147023201, 0.010834465734660625, -0.06535954028367996, 0.06203361228108406, 0.02466730587184429, -0.0143745644018054, 0.024478333070874214, 0.0300089493393898, 0.02360905520617962, 0.016528859734535217, -0.012856478802859783, 0.021379172801971436, -0.00026456252089701593, 0.03174750506877899, 0.011936808936297894, 0.03126877173781395, 0.01610052026808262, 0.008006165735423565, 0.006519576534628868, -0.02294135093688965, 0.024314556270837784, -0.0237602349370718, -0.0020487848669290543, 0.006396743934601545, 0.07155786454677582, 0.03187348693609238, -0.017146172001957893, 0.031545933336019516, -0.0073132640682160854, -0.016806019470095634, -0.014702118001878262, 0.007590424735099077, 0.0009306931751780212, 0.040893808007240295, -0.03404038026928902, 0.02960580587387085, 0.005958956200629473, -0.0358293242752552, -0.008900639601051807, 0.005417232867330313, 0.014059608802199364, -0.021908296272158623, -0.004122766200453043, 0.009089612402021885, 0.01026124693453312, -0.021051619201898575, -0.0023810628335922956, 0.010765175335109234, -0.003073964500799775, 0.006179424934089184, 0.012579318135976791, 0.03366243094205856, -0.02592712827026844, 0.011426582001149654, -0.009184098802506924, -0.013933626934885979, 0.0032503395341336727, -0.015987135469913483, -0.012270662002265453, 0.004686536267399788, 0.024490932002663612, 0.012006099335849285, -0.017309948801994324, -0.016226502135396004, -0.030991610139608383, 0.015785563737154007, -0.020824849605560303, 0.04893146827816963, 0.01884693093597889, -0.02877432480454445, -0.03628285974264145, -0.01942644827067852, 0.01676822453737259, -0.023546064272522926, 0.03726552054286003, -0.03051287867128849, -0.016994992271065712, 0.02660743147134781, 0.006154228467494249, -0.025901932269334793, 0.0033731721341609955, -0.004034578334540129, -0.037315916270017624, 0.00037105681258253753, 0.0021196496672928333, 0.016881609335541725, 0.03194907307624817, 0.025662565603852272, 0.02534760907292366, 0.037819843739271164, 0.009001425467431545, -0.031394753605127335, -0.022815369069576263, 0.007577826734632254, 0.0044944132678210735, -0.03315850347280502, -0.01935085840523243, -0.017826475203037262, -0.014802902936935425, 0.020787056535482407, -0.0016424923669546843, 0.014563537202775478, 0.004607797600328922, 0.008409309200942516, 0.0014779281336814165, -0.007199880201369524, 0.012730496935546398, -0.011231308802962303, -0.025070449337363243, -0.00648178206756711, 0.009580942802131176, 0.03746709227561951, -0.004513310734182596, 0.010248648002743721, -0.02268938720226288, 0.0001673200458753854, -0.0010889582335948944, 0.01874614506959915, 0.009580942802131176, -0.0015401318669319153, 0.0245917160063982, -0.016717832535505295, 0.02500745840370655, -0.005952656734734774, -0.04767164960503578, -0.026632627472281456, 0.0076093222014606, -0.02561217173933983, -0.007325862534344196, 0.045655932277441025, -0.006100685801357031, -0.01850677840411663, 0.008453402668237686, -0.007722706068307161, 0.004708583001047373, -0.00900772400200367, -0.007042402401566505, -0.022412225604057312, 0.0078045944683253765, 0.015508403070271015, -0.006544773001223803, 0.027161752805113792, -0.0028487714007496834, -0.009114809334278107, 0.039054468274116516, -0.06843350827693939, -0.007376255467534065, 0.0033668731339275837, -0.019048502668738365, -0.008447103202342987, -0.019061099737882614, 0.008440804667770863, -0.04568113014101982, -0.04633623734116554, -0.01810363680124283, 0.010689586400985718, -0.03199946880340576, -0.013858037069439888, 0.03653482720255852, -0.012856478802859783, 0.04278353974223137, -0.026657823473215103, 0.04134734347462654, 0.029580609872937202, 0.006456585600972176, -0.052156612277030945, -0.015911545604467392, -0.008283326402306557, -0.01843119040131569, -0.019905181601643562, 0.014828099869191647, -0.02660743147134781, -0.030714450404047966, 0.032226234674453735, -0.03008453920483589, -0.02558697573840618, 0.012289559468626976, -0.0031841991003602743, -0.008982528001070023, 0.03492225334048271, -0.028295591473579407, 0.0003684978000819683, -0.0060250964015722275, 0.0533660426735878, -0.015193448401987553, -0.047747235745191574, -0.02643105573952198, 0.0029353841673582792, 0.019615421071648598, 0.015281635336577892, -0.025826342403888702, -0.0036125383339822292, -0.0021306732669472694, 0.0006472333334386349, 0.025712957605719566, 0.0011692718835547566, 0.003244040533900261, 0.015772966668009758, -0.015029671601951122, 0.019993368536233902, -0.009265987202525139, 0.019476842135190964, 0.024301957339048386, 0.0007574677001684904, 0.04245598614215851, -0.0035621454007923603, -0.07458143681287766, -0.0029479824006557465, 0.03653482720255852, -0.005392036400735378, -0.0014495821669697762, -0.010015581734478474, 0.03318370133638382, 0.0018440638668835163, 0.015092662535607815, 0.01984218880534172, -0.022727180272340775, -0.0658130794763565, -0.017146172001957893, -0.004129065200686455, -0.027791664004325867, 0.032301824539899826, -0.03315850347280502, 0.028799520805478096, 0.0517030768096447, 0.029958557337522507, 0.026783807203173637, -0.008358916267752647, -0.017297349870204926, 0.02693498507142067, 0.057901397347450256, 0.008736862801015377, -0.047974005341529846, -0.0145887341350317, 0.0031495539005845785, -0.0041353642009198666, 0.013165134936571121, -0.027716074138879776, 0.0019905180670320988, 0.022160261869430542, 0.0029101877007633448, -0.0036251365672796965, 0.00022499625629279763, -0.019804395735263824, 0.02525942213833332, -0.004595199134200811, 0.03913005813956261, -0.0061195832677185535, 0.004658190067857504, -0.010431322269141674, 0.006910121068358421, 0.04112057760357857, -0.038071807473897934, 0.004179458133876324, 0.03325928747653961, -0.002850346267223358, 0.023785430938005447, 0.011747836135327816, -0.004582601133733988, -0.05051884427666664, -0.01568477787077427, -0.022651592269539833, -0.031394753605127335, 0.03283094987273216, 0.0279428418725729, 0.003785763867199421, -0.046563003212213516, 0.019867386668920517, 0.027892449870705605, -0.009417166002094746, 0.022324038669466972, -0.01105493400245905, 0.0008637651335448027, 0.011810827068984509, -0.0017385537503287196, -0.032478198409080505, 0.003581042867153883, 0.01825481466948986, -0.05094718560576439, -0.019741404801607132, 0.0008322696085087955, 0.0011968305334448814, -0.027212146669626236, 0.006267612334340811, 0.0009787238668650389, -0.013618671335279942, 0.020031163468956947, 0.04411895200610161, -0.010431322269141674, -0.004034578334540129, -0.007325862534344196, 0.045807112008333206, 0.015898948535323143, 0.02227364480495453, 0.02660743147134781, 0.01935085840523243, 0.02658223547041416, 0.024201171472668648, -0.03159632533788681, 0.06772800534963608, 0.03217584267258644, -0.036383647471666336, -0.008245532400906086, 0.004803069867193699, 0.020383913069963455, 0.002582634100690484, 0.013908430002629757, 0.024075189605355263, -0.009398268535733223, 0.043237075209617615, -0.005735337734222412, 0.02809402160346508, -0.02416337840259075, -0.011073831468820572, -0.00028700308757834136, -0.029404236003756523, 0.0020078406669199467, 0.015911545604467392, -0.0333348773419857, -0.010784072801470757, -0.005007790867239237, 0.008554188534617424, -0.059161219745874405, 0.03907966613769531, -0.004891257267445326, 0.04270794987678528, 0.01702019013464451, 0.015092662535607815, -0.002308622933924198, -0.013517885468900204, 0.0021999634336680174, 0.03220104053616524, 0.012988760136067867, 0.033637236803770065, 0.011325796134769917, -0.02960580587387085, 0.00031987656257115304, 0.039986737072467804, -0.017700493335723877, 0.04036468267440796, 0.013366706669330597, -0.008535291068255901, -0.0068660276010632515, -0.028068823739886284, -0.01668003760278225, 0.00966913066804409, -0.009221893735229969, 0.005332194734364748, -0.00550227053463459, 0.02524682506918907, 0.02192089520394802, -0.00393694220110774, 0.023987002670764923, -0.0003850329667329788, -0.00041613480425439775, 0.020383913069963455, 0.00033719910425134003, 0.024957064539194107, 0.007980969734489918, 0.0015763517003506422, -0.007867585867643356, -0.00949905440211296, 0.030286110937595367, 0.015898948535323143, 0.0025590125005692244, 0.012270662002265453, 0.021731922402977943, 0.02867353893816471, -0.02300434187054634, 0.002766883000731468, -0.021643733605742455, -0.019325662404298782, 0.03882770240306854, -0.019703609868884087, 0.028245199471712112, 0.01868315413594246, -0.036887574940919876, 0.02068627066910267, 0.04893146827816963, 0.01959022507071495, 0.007124290801584721, 0.0013173009501770139, -0.020383913069963455, 0.0030802637338638306, -0.03409077227115631, 0.043892182409763336, -0.0216815285384655, 0.006544773001223803, 0.0044062258675694466, -0.015420216135680676, 0.002626728033646941, 0.02759009227156639, 0.037819843739271164, -0.034468717873096466, 0.02226104773581028, -0.04094420000910759, -0.022576002404093742, -0.011590358801186085, 0.003905446734279394, -0.018960313871502876, 0.01334151066839695, -0.028975896537303925, 0.03391439467668533, 0.0187713410705328, -0.014198188669979572, 0.021278386935591698, -0.00805026013404131, 0.038374163210392, -0.010664389468729496, 0.00988330040127039, 0.015067465603351593, -0.03530019894242287, -0.015911545604467392, -0.009001425467431545, 0.021227993071079254, 0.01633988507091999, 0.008535291068255901, -0.03232702240347862, -0.022059476003050804, -0.009146304801106453, -0.005738487001508474, 0.008384112268686295, 0.008346318267285824, 0.020031163468956947, -0.023281501606106758, -0.004755826201289892, -0.011332094669342041, -0.00420780386775732, -0.023029537871479988, 0.012264362536370754, 0.014311572536826134, 0.008340018801391125, 0.017650099471211433, 0.028144413605332375, -0.0024346052668988705, -0.019980769604444504, -0.008762058801949024, -0.03278055787086487, 0.03134436160326004, -0.008906938135623932, 0.024982262402772903, 0.03162151947617531, -0.010021880269050598, -0.022903556004166603, 0.03328448534011841, -0.012024996802210808, 0.04079302400350571, 0.0017165069002658129, -0.009845505468547344, -0.05769982933998108, -0.0067778402008116245, -0.02175711840391159, 0.03378841280937195, -0.008654974400997162, -0.014954081736505032, 0.04437091574072838, 0.00929118413478136, 0.006380996201187372, -0.04437091574072838, 0.043363057076931, 0.016075322404503822, 0.007004607934504747, -0.0008960480918176472, 0.03361203894019127, -0.04285912960767746, 0.009070714935660362, -0.02092563547194004, 0.013354108668863773, 0.024112984538078308, -0.008396710269153118, 0.0006114071584306657, 0.019791796803474426, -0.009442362934350967, 0.012321054935455322, 0.007269170600920916, 0.01759970746934414, 0.010532108135521412, -0.00841560773551464, 0.023961806669831276, -0.029152270406484604, -0.024566520005464554, -0.003968438133597374, 0.004976295400410891, 0.005933759734034538, -0.0026204288005828857, -0.01329111773520708, 0.04187646880745888, 0.027993235737085342, -0.002256655367091298, 0.010670688934624195, -0.006428239401429892, -0.027539700269699097, -0.011187215335667133, -0.047822825610637665, -0.015407618135213852, 0.007779398001730442, -0.012119483202695847, 0.028371181339025497, 0.009606139734387398, 0.006305406801402569, 0.002771607367321849, 0.009599840268492699, 0.0009739995584823191, 0.030815236270427704, 0.0491834320127964, -0.009681728668510914, 0.07941915094852448, 0.016491064801812172, -0.006333753000944853, 0.013064350001513958, 0.00329443346709013, -0.022046877071261406, -0.046739380806684494, -0.003395219100639224, -0.02116500213742256, 0.029202664270997047, -0.019489439204335213, -0.0007621920667588711, -0.005555813200771809, -0.03676159307360649, 0.002448778133839369, 0.021076815202832222, -0.014979278668761253, -0.01833040453493595, -0.02309252880513668, 0.0006318792584352195, -0.00033798650838434696, -0.04701654240489006, 0.004973145667463541, -0.0034204155672341585, -0.024289360269904137, -0.02325630560517311, -0.0019905180670320988, -0.0030991609673947096, -0.037391502410173416, 0.014941483736038208, 0.00523455860093236, 0.020812252536416054, -0.0016424923669546843, -0.04230480641126633, 0.025725556537508965, -0.012472233735024929, -0.017713090404868126, -0.012573019601404667, 0.03434273600578308, 0.012661206535995007, 0.03076484240591526, -0.019124090671539307, -0.020068958401679993, 0.005073931533843279, 0.02585153840482235, 0.019161885604262352, -0.033712826669216156, -0.03653482720255852, 0.00777309900149703, -0.011162019334733486, -0.03779464587569237, -0.0020818552002310753, -0.018368197605013847, -0.0089636305347085, 0.005316447000950575, 0.02426416240632534, 0.007395152468234301, -0.011779331602156162, -0.0093856705352664, -0.03799621760845184, 0.005621953867375851, 0.02335709147155285, 0.026632627472281456, -0.018947716802358627, 0.024957064539194107, -0.022462617605924606, -0.0033889201004058123, 0.017158769071102142, 0.031142789870500565, 0.012119483202695847, -0.009820309467613697, 0.008573086000978947, 0.011741536669433117, -0.026809003204107285, 0.01717136800289154, -0.004992043133825064, 0.012377746403217316, 0.02552398480474949, 0.0061699762009084225, -0.04684016481041908, 0.003527500433847308, 0.04661339893937111, 0.02393660880625248, 0.05150150507688522, -0.02726253867149353, 0.012100585736334324, -0.006607763934880495, -0.005171567667275667, 0.009946291334927082, 0.006834532134234905, -0.016226502135396004, -0.005247156601399183, -0.030865628272294998, 0.01758710853755474, 0.012730496935546398, 0.011741536669433117, -0.0072250766679644585, -0.01676822453737259, 0.010021880269050598, -0.03907966613769531, -0.0027369624003767967, -0.03036169894039631, -0.0010905329836532474, 0.0021007524337619543, -0.021303582936525345, -0.009184098802506924, 0.009448661468923092, -0.004277094267308712, 0.011029738001525402, -0.00040904831257648766, -0.030563270673155785, -0.02043430507183075, -0.010525809600949287, -0.02842157520353794, 0.006040844600647688, -0.04615986347198486, 0.02401219867169857, -0.02101382426917553, 0.02993335947394371, -0.027791664004325867, 0.015961939468979836, 0.008188840001821518, 0.009442362934350967, -0.0076093222014606, -0.026279877871274948, 0.00171493215020746, -0.027388520538806915, 0.022827966138720512, 0.0049101547338068485, 0.006059741601347923, -0.004371580667793751, 0.0349978432059288, 0.019816992804408073, -0.012705300934612751, 0.019980769604444504, 0.006998308934271336, 0.011798229068517685, -0.009209295734763145, 0.01046281773597002, 0.012447036802768707, -0.0233444944024086, -0.012289559468626976, -0.0034550605341792107, 0.0002501926792319864, -0.02769087813794613, 0.03867652267217636, -0.02791764587163925, -0.006639259867370129, 0.010538407601416111, -0.005118025001138449, -0.008018764667212963, 0.03010973520576954, 0.04044027253985405, 0.002551138633862138, 0.007288067601621151, 0.04777243360877037, -0.020799653604626656, 0.0051904646679759026, 0.023369690403342247, 0.005029837600886822, -0.03227662667632103, -0.02325630560517311, -0.06435168534517288, 0.001836189883761108, 0.028648342937231064, -0.014009215869009495, 0.011697443202137947, 0.017070582136511803, 0.004425123333930969, -0.04227961227297783, -0.026229485869407654, -0.029731789603829384, -0.0028771176002919674, 0.009952590800821781, -0.019791796803474426, -0.015168251469731331, -0.009442362934350967, 0.0036912772338837385, -0.014273778535425663, -0.01505486760288477, -0.007401451468467712, 0.036156877875328064, -0.009984086267650127, -0.01080297026783228, -0.0009787238668650389, -0.014563537202775478, -0.0208500474691391, -0.01058880053460598, 0.02100122533738613, 0.024377547204494476, 0.017108377069234848, -0.04187646880745888, -0.02842157520353794, 0.00846600066870451, -0.035879720002412796, -0.03512382507324219, 0.0085415905341506, 0.03900407627224922, -0.0022629546001553535, 0.04593309387564659, 0.024465734139084816, -0.02643105573952198, -0.02268938720226288, -0.008478598669171333, -0.02561217173933983, 0.00837781373411417, -0.013631269335746765, -0.0118801174685359, -0.0016708383336663246, 0.012913171201944351, 0.03310811147093773, 0.015395019203424454, -0.030714450404047966, -0.00997148733586073, 0.01942644827067852, -0.020887842401862144, 0.021744519472122192, -0.011262805201113224, 0.01567218080163002, -0.0349978432059288, -0.024642109870910645, -0.010034479200839996, -0.030386896803975105, -0.019401252269744873, -0.01758710853755474, 0.03293173387646675, 0.04386698827147484, -0.001833040383644402, 0.01383284106850624, -0.0013889533001929522, 0.02233663573861122, 0.010236050002276897, -0.008434505201876163, -0.031898681074380875, -0.00502353860065341, -0.0044944132678210735, 0.008478598669171333, 0.020799653604626656, -0.0021149255335330963, -0.01413519773632288, 0.01943904720246792, -0.02561217173933983, -0.030588466674089432, 0.015798162668943405, 0.032049860805273056, 0.01096044760197401, -0.00691642053425312, 0.003719623200595379, -0.043237075209617615, -0.04603388160467148, 0.004239299334585667, -0.02192089520394802, 0.021794913336634636, -0.030311306938529015, 0.029882967472076416, 0.007917978800833225, 0.031319163739681244, -0.009706925600767136, 0.01683121547102928, -0.022525610402226448, 0.003209395334124565, -0.023886216804385185, 0.031394753605127335, -0.022576002404093742, 0.02110201120376587, -0.008667572401463985, 0.0050644828006625175, -0.024478333070874214, 0.016705233603715897, -0.002681845100596547, -0.044396113604307175, -0.035879720002412796, 0.0070487018674612045, -0.03474587947130203, -0.026783807203173637, -0.023697244003415108, -0.00556211220100522, 0.0037227727007120848, 0.02968139573931694, 0.01776348426938057, -0.045731522142887115, -0.004472366534173489, 0.007099094334989786, -0.02935384213924408, 0.017536716535687447, -0.010179358534514904, -0.0030660906340926886, 0.01576036773622036, 0.0011149421334266663, -0.0023810628335922956, 0.021542949602007866, -0.01684381440281868, 0.0029653050005435944, -0.02592712827026844, -0.017637502402067184, -0.007300666067749262, 0.009228193201124668, -0.05175346881151199, 0.011155719868838787, -0.006280210334807634, 0.02493186853826046, 0.003634585300460458, 0.0019653216004371643, -0.021366573870182037, -0.0019968170672655106, -0.012195073068141937, 0.011325796134769917, 0.01908629760146141, -0.0020314622670412064, -0.02016974240541458, 0.008025063201785088, 0.018292609602212906, -0.0093856705352664, -0.00196847110055387, 0.006289659067988396, 0.015395019203424454, 0.0033511254005134106, 0.016289493069052696, 0.03799621760845184, 0.022714583203196526, 0.00988330040127039, 0.028875110670924187, 0.012591916136443615, 0.01625169813632965, 0.04817557707428932, -0.001129902433604002, 0.01691940426826477, -0.0592116117477417, 0.004834565334022045, 0.024742895737290382, 0.011684845201671124, -0.011420282535254955, -0.03126877173781395, -0.0241885744035244, -0.017624903470277786, 0.010141563601791859, -0.04626064747571945, -0.009360474534332752, 0.0065951659344136715, -0.03603089600801468, 0.02466730587184429, 0.016881609335541725, -0.00404717680066824, 0.018632760271430016, -0.029076682403683662, 0.002244057133793831, -0.008711665868759155, 0.017032787203788757, 0.0026771207340061665, -0.010355733335018158, 0.02766568213701248, 0.00934157706797123, -0.010147863067686558, -0.028320789337158203, -0.004034578334540129, 0.008818751201033592, 0.03313330560922623, 0.014702118001878262, -0.024213770404458046, -0.033234093338251114, 0.033889200538396835, -0.001229113433510065, 0.00059369090013206, 0.01651626080274582, 0.030311306938529015, 0.01305175106972456, -0.006040844600647688, 0.01246593426913023, 0.0074455454014241695, 0.004705433733761311, -0.031470343470573425, 0.015206046402454376, -0.0058329738676548, -0.051400721073150635, 0.02600271627306938, -0.011791929602622986, 0.005029837600886822, -0.00024507465423084795, -0.005366839934140444, 0.03965918347239494, 0.02942943200469017, -0.05175346881151199, 0.013744653202593327, -0.0187713410705328, 0.015697376802563667, 0.002919636433944106, 0.025801146402955055, -0.030664056539535522, 0.009706925600767136], [-0.006497543305158615, -0.021199876442551613, 0.004039858467876911, 0.006960313301533461, -0.04207456111907959, 0.013295261189341545, -0.015108820050954819, 0.07189197093248367, 0.005737724713981152, -0.03929794207215309, -0.029967494308948517, -0.023401161655783653, 0.012157097458839417, -0.046677250415086746, -0.017722846940159798, 0.018810981884598732, -0.012688657268881798, -0.008523725904524326, -0.036171115934848785, 0.03124323859810829, 0.036296188831329346, 0.04912868142127991, 0.006400611717253923, -0.018673401325941086, 0.0049372571520507336, -0.006294299382716417, -0.0255524180829525, -0.007767034228891134, 0.033844757825136185, -0.0712415874004364, 0.0016275126254186034, -0.0255524180829525, 0.03699659928679466, -0.06453767418861389, 0.008898945525288582, 0.004343160428106785, -0.0025546164251863956, -0.022388070821762085, 0.01648462377488613, 0.014908703975379467, -0.03279414400458336, 0.016497131437063217, 0.014483455568552017, 0.007241727784276009, -0.009780709631741047, 0.04122406616806984, 0.004924749955534935, -0.020024189725518227, 0.03146836906671524, 0.0356207937002182, -0.029217056930065155, 0.025790056213736534, -0.0033269422128796577, -0.0029126377776265144, 0.0027203380595892668, -0.004859086591750383, 0.030918048694729805, 0.039848264306783676, 0.02017427794635296, -0.04365048184990883, 0.00884266197681427, -0.029317114502191544, -0.044350892305374146, -0.006069167982786894, -0.04720255732536316, 0.029792392626404762, -0.04540150612592697, 0.03321939334273338, -0.046302031725645065, -0.015621619299054146, 0.037146687507629395, -0.023363638669252396, 0.059834931045770645, -0.046402089297771454, -0.03719671443104744, 0.032518982887268066, 0.015183864161372185, 0.0332944355905056, -0.017572758719325066, 0.00956808589398861, -0.01614692620933056, -0.012057038955390453, -0.026990756392478943, -0.03341950848698616, -0.02706580050289631, -0.0597849003970623, -0.07134164869785309, -0.037321787327528, 0.009105315431952477, 0.07254234701395035, 0.03236889839172363, -0.03131828457117081, 0.014045699499547482, 0.06198618561029434, 0.03246895596385002, -0.023426175117492676, 0.0233136098831892, -0.023326117545366287, 0.011131498031318188, 0.09440511465072632, 0.008961481973528862, -0.01003710925579071, -0.010737518779933453, 0.044450949877500534, 0.038847677409648895, -0.012463525868952274, -0.01318269595503807, -0.02278830297291279, 0.004049238748848438, -0.01595931686460972, -0.05363130941987038, -0.014983747154474258, -0.055082157254219055, 0.025214720517396927, -0.002740662544965744, 0.040298525243997574, 0.04625200107693672, 0.014846166595816612, -0.018673401325941086, -0.017547743394970894, 0.017485206946730614, 0.007792049087584019, 0.02542734332382679, -0.051279935985803604, 0.03296924754977226, -0.021162353456020355, -0.038122255355119705, 0.02123739756643772, -0.014696079306304455, -0.051029790192842484, 0.06939051300287247, -0.026190290227532387, 0.0174977146089077, -0.04132412374019623, 0.018085557967424393, -0.010593684390187263, -0.038497474044561386, -0.018173109740018845, -0.011144005693495274, 0.010925128124654293, 0.06358712166547775, 0.01005587074905634, 0.013895612210035324, -0.00278912833891809, -0.02804137021303177, 0.00340198609046638, -0.00671016750857234, 0.011262824758887291, 0.007247981149703264, 0.015934301540255547, -0.050679586827754974, -0.013895612210035324, 0.006954059936106205, 0.00402109744027257, 0.01060619205236435, 0.0003466867783572525, 0.024539325386285782, 0.027841253206133842, 0.01513383537530899, -0.012344706803560257, -0.05783376097679138, 0.010868845507502556, -0.015221386216580868, -0.03379472717642784, 0.02297591231763363, -0.0016759784193709493, -0.06328694522380829, -0.018573343753814697, -0.029492218047380447, -0.03937298431992531, -0.055582448840141296, 0.007254234980791807, -0.07829570770263672, 0.05223049223423004, -0.02721588872373104, -0.019786551594734192, -0.010506133548915386, 0.04144919663667679, -0.03194364905357361, 0.008110985159873962, 0.001796361175365746, 0.03424499183893204, 0.024401744827628136, -0.03229385241866112, -0.020662061870098114, 0.014433425851166248, -0.008880184032022953, -0.020024189725518227, -0.023113492876291275, 0.02071209065616131, 0.004877847619354725, 0.05243060737848282, -0.030442772433161736, 0.06583843380212784, -0.0037396831903606653, -0.03712167218327522, -0.018210630863904953, 0.029792392626404762, -0.011237810365855694, -0.03246895596385002, -0.015471532009541988, -0.001897983020171523, 0.017797891050577164, 0.04437590762972832, -0.08214795589447021, 0.015208878554403782, 0.045076314359903336, 0.008848915807902813, 0.00991203635931015, -0.016559667885303497, 0.054832011461257935, -0.029442187398672104, 0.026565508916974068, 0.017922963947057724, -0.030792975798249245, 0.002671872265636921, -0.004199326504021883, 0.06243645027279854, 0.02989245019853115, 0.04882850497961044, -0.04502628743648529, -0.019436346367001534, -0.006553825922310352, -0.005603271070867777, -0.028866851702332497, 0.04705246910452843, 0.029066968709230423, -0.04527643322944641, 0.027015771716833115, -0.06833989918231964, 0.004149297252297401, 0.029342129826545715, -0.0597849003970623, 0.0012108631199225783, -0.030767962336540222, -0.009736934676766396, -0.028141427785158157, -0.019336288794875145, 0.04034855589270592, 0.017960485070943832, 0.0443008616566658, -0.0034770299680531025, 0.01645960845053196, -0.047252584248781204, 0.03389478847384453, -0.007285503204911947, -0.013820568099617958, 0.02781623974442482, 0.05137999355792999, -0.04550156369805336, -0.013657973147928715, -0.013070129789412022, -0.006344328634440899, -0.031143181025981903, 0.02804137021303177, 0.058133937418460846, -0.0016322028823196888, -0.04990413412451744, 0.06183609738945961, -0.02574002742767334, 0.03427000716328621, 0.006553825922310352, 0.026740610599517822, 0.029567260295152664, -0.01260110642760992, 0.003892897628247738, -0.014270830899477005, 0.02696574293076992, 0.010374806821346283, 0.05273078382015228, -0.05643294379115105, -0.05473195016384125, 0.011875682510435581, -0.022000344470143318, 0.013295261189341545, 0.05168016999959946, 0.012920042499899864, -0.014658557251095772, -0.02511466108262539, 0.036521319299936295, -0.017485206946730614, -0.025102155283093452, 0.0016650345642119646, -0.011162766255438328, -0.012488540261983871, -0.025002095848321915, 0.001702556386590004, -0.0003427782212384045, 0.04480115324258804, 0.06288671493530273, 0.03339449688792229, -0.04199951887130737, 0.012819983996450901, -0.03512050211429596, 0.05273078382015228, -0.05963481590151787, -0.020186785608530045, -0.03549572080373764, 0.000764508789870888, -0.01186317577958107, 0.02511466108262539, 0.04124908149242401, 0.06253650784492493, -0.03414493426680565, -0.027015771716833115, 0.014345875009894371, -0.04014843702316284, 0.017160017043352127, -0.016121910884976387, -0.015871765092015266, 0.027491049841046333, 0.018048036843538284, -0.0103372847661376, -0.03316936269402504, -0.043250247836112976, -0.012075799517333508, 0.009311686269938946, -0.04147421196103096, 0.007898361422121525, -0.03269408643245697, 0.035670824348926544, -0.02746603451669216, 0.03912283852696419, -0.0044776140712201595, 9.287648572353646e-05, 0.0003457096463534981, 0.016284506767988205, 0.0037459367886185646, -0.03411991894245148, -0.0049810330383479595, -0.00509047182276845, -0.04452599212527275, 0.011519224382936954, 0.017835412174463272, 0.021637631580233574, 0.01916118524968624, 0.03296924754977226, -0.06063539907336235, 0.038122255355119705, 0.0031846717465668917, -0.003026766935363412, -0.06748940050601959, 0.00783582404255867, -0.02011174149811268, -0.011619282886385918, 0.014658557251095772, 0.05498209968209267, 0.04194948822259903, -0.027240902185440063, 0.010062124580144882, -0.007235473953187466, -0.03559578210115433, -0.0027203380595892668, -0.0038147270679473877, -0.038222312927246094, -0.01008713897317648, -6.361135456245393e-05, -0.02038690075278282, -0.03174353018403053, 0.027991341426968575, -0.0281914584338665, -0.005825275555253029, -0.00972442701458931, -0.02731594629585743, 0.014958732761442661, 0.02684067003428936, 0.0171850323677063, 0.04034855589270592, 0.03707164153456688, -0.03842243179678917, 0.027716180309653282, 0.021950313821434975, -0.03449513763189316, 0.005603271070867777, 0.01068123523145914, 0.006666391622275114, 0.02889186702668667, 0.0056533003225922585, 0.009793217293918133, -0.023776380345225334, 0.0396481454372406, -0.00340198609046638, 0.03612108528614044, -0.030717933550477028, 0.07579424977302551, 0.04335030913352966, -0.037271760404109955, 0.025152184069156647, 0.0018463904270902276, 0.01079380139708519, -0.008517472073435783, -0.001638456480577588, -0.019048620015382767, -0.03877263516187668, -0.021550079807639122, 0.008117238990962505, -0.022638216614723206, -0.022000344470143318, -0.022575680166482925, 0.014195787720382214, -0.00978696346282959, -0.009574339725077152, -0.015296430326998234, 0.01238222885876894, -0.01947386935353279, 0.05598268285393715, 0.03464522585272789, 0.005006047431379557, 0.023501219227910042, 0.012138335965573788, 0.02077462710440159, -0.05273078382015228, 0.03344452381134033, 0.021600110456347466, -0.006672645453363657, -0.009086554870009422, 0.03174353018403053, -0.012532316148281097, -0.034219976514577866, 0.013520393520593643, -0.021537574008107185, 0.01299508661031723, -0.008117238990962505, -0.0071354154497385025, -0.014533484354615211, 0.0025968283880501986, -0.02432670257985592, -0.005737724713981152, 0.016434594988822937, -0.00972442701458931, 0.02275078184902668, -0.0056533003225922585, 0.07819564640522003, 0.01714751124382019, -0.07489372044801712, -0.015233892947435379, 0.01305762305855751, 0.0290419552475214, -0.05273078382015228, -0.05027935281395912, 0.03134329617023468, -0.00956808589398861, 0.004089887719601393, 0.036271173506975174, -0.025664983317255974, 0.0024717554915696383, -0.0019417585572227836, 0.027966326102614403, -0.051530081778764725, -0.005421915091574192, -0.00033359319786541164, -0.038247328251600266, -0.06243645027279854, 0.0775953009724617, -0.049078650772571564, -0.032994262874126434, -0.004671477247029543, 0.030843006446957588, 0.07424334436655045, -0.00636308966204524, 0.023488711565732956, -0.017385149374604225, 0.01131285447627306, -0.018886025995016098, 0.03236889839172363, -0.021312441676855087, 0.01110648363828659, -0.013708002865314484, -0.0074105761013925076, -0.006294299382716417, -0.03932295739650726, 0.004014843609184027, -0.007504380773752928, 0.015721678733825684, -0.0083236088976264, -0.014733601361513138, -0.009417997673153877, -0.016784798353910446, -0.015271415002644062, 0.0028360306750983, -0.010599938221275806, 0.002088719280436635, -0.03782207891345024, -0.02426416426897049, -0.014083221554756165, 0.01604686863720417, 0.01585925929248333, 0.04927876964211464, -0.04697742313146591, 0.015696663409471512, -0.028716765344142914, 0.00838614534586668, 0.008798887021839619, -0.012432257644832134, 0.01525890827178955, 0.00307210604660213, 0.04059870168566704, -0.0315934456884861, 0.023863932117819786, 0.005856543779373169, -0.02328859642148018, -0.04780290648341179, -0.01585925929248333, 0.06904030591249466, 0.0037459367886185646, 0.029492218047380447, -0.00038616295205429196, -0.007573171053081751, 0.00022630399325862527, 0.028091398999094963, -0.006672645453363657, 0.007373054511845112, -0.0100246025249362, -0.02806638553738594, -0.04279998689889908, -0.023688828572630882, -0.030417757108807564, -0.02079964242875576, -0.0366964228451252, -0.0006652321317233145, -0.012363467365503311, -0.01005587074905634, -0.010080885142087936, -0.015934301540255547, 0.026515480130910873, 0.024439267814159393, 0.001086571835912764, -9.111764666158706e-05, -0.05498209968209267, 0.017360134050250053, 0.03249397128820419, -0.032869189977645874, -0.05075462907552719, 0.04452599212527275, 0.022200459614396095, -0.019523898139595985, -0.004590179771184921, 0.01057492382824421, 0.015584098175168037, -0.04282500222325325, 0.004002336412668228, -0.014258324168622494, -0.038622546941041946, 0.009061540476977825, -0.007554410025477409, 0.023701336234807968, 0.007091640029102564, 0.0011006424902006984, 0.014658557251095772, 0.012957564555108547, 0.010549908503890038, -0.020812150090932846, 0.029467202723026276, -0.03427000716328621, 0.02831653133034706, -0.010818815790116787, -0.02407655492424965, 0.012945056892931461, 0.03452015295624733, 0.0049216230399906635, -0.007723258808255196, 0.03184359148144722, -0.013382812961935997, -0.017360134050250053, 0.0025890113320201635, 0.03497041389346123, 0.004283750895410776, -0.004912242759019136, -0.056382916867733, -0.0021762705873697996, 0.03742184489965439, 0.0028798060957342386, 0.03036772832274437, 0.00025073232245631516, 0.02325107343494892, 0.022262996062636375, 0.016672233119606972, -0.056533005088567734, 0.0024905165191739798, 0.006022265646606684, -0.0004600341781042516, -0.0054406761191785336, 0.012732433155179024, 0.0017776002641767263, -0.009211627766489983, 0.014871181920170784, -0.022262996062636375, -0.01253856997936964, 0.02964230440557003, 0.07659471780061722, 0.026415420696139336, -0.00899900309741497, 0.02063704840838909, 0.01627199910581112, 0.004931003786623478, 0.009918290190398693, -0.0016431467374786735, -0.01828567497432232, -0.02806638553738594, 0.013883104547858238, 0.039573103189468384, 0.057283442467451096, 0.012407243251800537, -0.007041610777378082, -0.010649967007339, -0.021124832332134247, 0.006697659846395254, -0.020812150090932846, -0.000780142960138619, 0.003009569365531206, 0.03011758252978325, 0.028516648337244987, 0.004293131176382303, -0.02114984765648842, -0.022075386717915535, 0.0011475449427962303, -0.008723842911422253, -0.03186860308051109, -0.02709081582725048, 0.005253066774457693, -0.02854166179895401, 0.012075799517333508, 0.010349792428314686, 0.02636539191007614, -0.033369481563568115, 0.027841253206133842, -0.019936637952923775, -0.02538982219994068, -0.022713258862495422, -0.024614369496703148, -0.026265334337949753, 0.00017011884483508766, -0.006197367794811726, 0.007060371804982424, -0.021800227463245392, -0.03772202134132385, 0.036296188831329346, -0.03399484604597092, 0.01525890827178955, -0.007810809649527073, 0.03401986137032509, 0.033969830721616745, -0.02684067003428936, -0.03186860308051109, 0.001874531852081418, -0.007898361422121525, -0.018335703760385513, 0.02941717393696308, 0.018760953098535538, -0.015296430326998234, 0.04425083473324776, -0.02599017322063446, 0.009780709631741047, -0.03792214021086693, -0.01953640580177307, -0.005381266586482525, 0.0008270452963188291, 0.04107397794723511, 0.015171356499195099, 0.04059870168566704, -0.02032436430454254, -0.0006765668513253331, -0.011725595220923424, 0.017922963947057724, 0.008017180487513542, 0.013795553706586361, 0.020724598318338394, -0.006006631534546614, 0.011462941765785217, 0.05803387984633446, 0.004734013695269823, -0.0209872517734766, -0.007398068904876709, 0.0235387422144413, -0.008267326280474663, -0.014621035195887089, -0.013582929968833923, 0.012970072217285633, 0.00409926800057292, 0.009468027390539646, 0.019523898139595985, -0.02275078184902668, -0.04290004447102547, 0.05163013935089111, 0.007548156660050154, -0.019311273470520973, 0.06263656914234161, -0.00521554471924901, 0.01225715596228838, 0.0090177645906806, -0.013582929968833923, -0.012920042499899864, 0.04097392037510872, -0.04012342542409897, 0.02624031901359558, 0.006879015825688839, -0.008085970766842365, -0.013070129789412022, -0.0056689344346523285, -0.005359378643333912, 0.0015978077426552773, 0.03549572080373764, 0.031168196350336075, -0.035545751452445984, -0.033719684928655624, 0.0012827800819650292, 0.022888362407684326, -0.02297591231763363, 0.0243892390280962, 0.0039585609920322895, -0.022175446152687073, -0.0443008616566658, -0.05708332359790802, 0.00969315879046917, -0.050554513931274414, 0.019373809918761253, 0.02511466108262539, 0.005002920515835285, -0.012907534837722778, -0.05733346939086914, -0.02599017322063446, 0.07404322922229767, -0.014195787720382214, -0.005143627990037203, 0.055932652205228806, -0.01183190755546093, -0.00304083782248199, -0.010374806821346283, -0.01737264171242714, 0.05828402563929558, 0.00903027132153511, -0.016071882098913193, -0.043000102043151855, 0.009136583656072617, -0.029192041605710983, 0.015534068457782269, -0.019311273470520973, -0.0015321444952860475, -0.028866851702332497, 0.008017180487513542, 0.007810809649527073, -0.018986083567142487, 0.017222553491592407, -0.009836993180215359, 0.036046043038368225, 0.007917121984064579, 0.007885853759944439, 0.007541902828961611, -0.03394481539726257, 0.0345451682806015, -0.004568291828036308, 0.009586846455931664, -0.009799471125006676, 0.01071250345557928, 0.01269491109997034, -0.03339449688792229, -0.006366216577589512, -0.018148094415664673, -0.01051238738000393, 0.01847328431904316, 0.025252241641283035, -0.0391978845000267, -0.03099309280514717, 0.026765625923871994, 0.022663230076432228, -0.02536480687558651, 0.003742810105904937, 0.027165859937667847, 0.001876095193438232, 0.04204954952001572, -0.017922963947057724, 0.01458351407200098, 0.02561495453119278, 0.016909871250391006, 0.02173769101500511, -0.003899151226505637, -0.02432670257985592, -0.02574002742767334, -0.03874761983752251, 0.011325361207127571, -0.0052030375227332115, -0.01299508661031723, -0.003330069128423929, 0.04807806760072708, 0.0006628870032727718, -0.009899529628455639, -0.009449266828596592, 0.001749458839185536, 0.01849829964339733, 0.03216877952218056, -0.01831069029867649, -0.016722261905670166, -0.04112400859594345, -0.048728447407484055, 0.017910456284880638, 0.00686650862917304, -0.0022732021752744913, -0.015446517616510391, 0.000263825902948156, -0.003536439500749111, -0.005872177891433239, 0.0042399754747748375, 0.013257740065455437, 0.02048696018755436, 0.024877022951841354, -0.021099817007780075, -0.01623447798192501, 0.008723842911422253, -0.00479029631242156, -0.055432360619306564, -0.0356207937002182, 0.03804721310734749, 0.0023842044174671173, 0.0024936432018876076, -0.0037459367886185646, -0.03206872195005417, 0.01342033501714468, -0.03904779627919197, 0.003214376512914896, 0.011487956158816814, 0.006922791246324778, -0.018298182636499405, -0.018810981884598732, -0.006397484801709652, 0.015759199857711792, -0.020124249160289764, -0.0233136098831892, 0.02127492055296898, -0.023863932117819786, 0.015183864161372185, 0.013107651844620705, -0.009286671876907349, -0.010687489062547684, 0.0019355049589648843, 0.002160636242479086, 0.044450949877500534, -0.025127168744802475, 0.014996254816651344, -0.025339793413877487, -0.0016243858262896538, -0.013983163051307201, -0.008348624221980572, -0.0290419552475214, 0.009899529628455639, -0.02441425248980522, 0.004577672574669123, -0.02077462710440159, -0.022863347083330154, -0.004286877810955048, -0.013883104547858238, 0.031893618404865265, -0.007329278625547886, 0.015709171071648598, 0.050329383462667465, 0.0023513727355748415, -0.023201044648885727, -0.003774078330025077, -0.044951241463422775, -0.0027156479191035032, 0.008161013945937157, 0.021074803546071053, 0.003908531740307808, 0.01470858696848154, -0.042149607092142105, 0.02177521213889122, 0.04119905084371567, 0.016159433871507645, -0.008898945525288582, 0.031018108129501343, -0.007648215163499117, 0.02806638553738594, 0.00046589699923060834, 0.026265334337949753, 0.003717795480042696, -0.025289764627814293, -0.017710339277982712, -0.021575095131993294, 0.021349964663386345, -0.01525890827178955, 0.007917121984064579, 0.03534563258290291, -0.009480535052716732, -0.04575170949101448, -0.014008177444338799, -0.013745524920523167, -0.015021269209682941, 0.017347628250718117, 0.049453869462013245, 0.030192626640200615, 0.01841074787080288, -0.017910456284880638, 0.0019808439537882805, 0.010881352238357067, -0.03364464268088341, -0.02709081582725048, 0.016672233119606972, 0.027741195634007454, 0.061786070466041565, -0.014983747154474258, 0.01180063933134079, -0.017034944146871567, 0.04355042427778244, -0.05062955617904663, 0.01214458979666233, -0.0013742398004978895, 0.015096313320100307, -0.01966147869825363, -0.026865683495998383, 0.01909864880144596, 0.0019120537908747792, -0.032118748873472214, 0.007041610777378082, 0.03977321833372116, 0.006728928070515394, 0.009211627766489983, -0.007348039653152227, -0.005506339482963085, 0.0026108992751687765, 0.017097480595111847, -0.0039054048247635365, 0.03231886774301529, 0.022575680166482925, -0.015371473506093025, -0.03807222470641136, 0.012738686986267567, -0.009124076925218105, -0.013145173899829388, 0.029217056930065155, -0.009449266828596592, -0.005453183315694332, 0.006879015825688839, 0.028141427785158157, 0.013708002865314484, 0.025527402758598328, -0.0014930590987205505, -0.05643294379115105, 0.008911452256143093, -0.02227550372481346, 0.03879765048623085, -0.013070129789412022, -0.009618114680051804, -8.896795770851895e-05, 0.00032499441294930875, -0.0020371268037706614, 0.007247981149703264, -0.01137539092451334, -0.01051238738000393, -0.012844998389482498, 0.008667560294270515, 0.006791464984416962, 0.048628389835357666, -0.0273409616202116, -0.00014012085739523172, -0.032268837094306946, 0.021062295883893967, 0.0232260599732399, 0.024439267814159393, 0.008736350573599339, 0.02142500691115856, -0.0029485963750630617, -0.014683571644127369, 0.0534311942756176, -0.030893035233020782, 0.0008411160088144243, 0.005756485741585493, 0.00929917860776186, -0.03704662621021271, 0.019498882815241814, 0.009149091318249702, -0.025252241641283035, 0.011950726620852947, -0.0012069545919075608, -0.004089887719601393, 0.04632704704999924, -0.02032436430454254, 0.004577672574669123, 0.019811565056443214, 0.0016009346581995487, 0.0021324949339032173, -0.04395065829157829, 0.029116997495293617, 0.0071416692808270454, 0.02382640913128853, -0.0201367549598217, -0.0039960830472409725, 0.03879765048623085, 0.053731366991996765, -0.022100402042269707, -0.0004651152703445405, 0.008454935625195503, 0.002276328857988119, 0.0026062089018523693, 0.02391396090388298, 0.019436346367001534, 0.015046283602714539, -0.0005968327750451863, 0.015946809202432632, 0.011650551110506058, 0.035795897245407104, -0.015759199857711792, 0.02196282148361206, 0.009061540476977825, -0.0025937017053365707, 0.009655636735260487, 0.026040202006697655, -0.003427000716328621, 0.019111156463623047, 0.00732302526012063, 0.01113775186240673, -0.042149607092142105, 0.014808645471930504, 0.005881558638066053, 0.019611448049545288, -0.02476445771753788, 0.0007774069672450423, 0.011131498031318188, -0.002337302081286907, -0.006072294898331165, -0.017072467133402824, 0.028991924598813057, 0.010324777103960514, 0.03236889839172363, -0.02914201281964779, -0.001142854685895145, 0.02609023079276085, -0.051780227571725845, 0.027666151523590088, -0.026265334337949753, 0.054231658577919006, 0.025602446869015694, 0.01458351407200098, -0.011850668117403984, 0.03234388306736946, 0.014058207161724567, -0.025127168744802475, 0.021249905228614807, -0.012882520444691181, -0.04660220444202423, -0.018323196098208427, -0.02293839119374752, 0.0010732827940955758, 0.00903027132153511, -0.046802323311567307, -0.001221025362610817, 0.023676322773098946, -0.018110573291778564, 0.02401401847600937, 0.0071729375049471855, 0.01513383537530899, 0.01953640580177307, 0.028591692447662354, 0.024726934731006622, -0.0009099061717279255, 0.0008395526092499495, -0.021124832332134247, -0.014671064913272858, 0.012970072217285633, -0.02829151600599289, 0.00671016750857234, -0.0068352404050529, 0.02187526971101761, -0.016722261905670166, -0.00899900309741497, -0.012269662693142891, 0.007935882546007633, -0.014045699499547482, 0.008536233566701412, 0.007973404601216316, -0.039948321878910065, -0.004008590243756771, 0.019123664125800133, 0.018360719084739685, 0.0171850323677063, 0.0258651003241539, 0.03264405578374863, -0.023876437917351723, -0.006328694522380829, -0.038122255355119705, 0.01963646337389946, -0.012250902131199837, -0.006359962746500969, 0.007016596384346485, -0.0012241521617397666, 0.004593306686729193, 0.02208789438009262, -0.02376387268304825, 0.017760368064045906, 0.0034957907628268003, -0.008454935625195503, 0.019736522808670998, -0.02542734332382679, 0.06493791192770004, -0.02071209065616131, 0.01051238738000393, -0.008423667401075363, 0.020937222987413406, 0.03236889839172363, 0.003645878518000245, 0.0230009276419878, 0.029842421412467957, 0.015046283602714539, 0.017034944146871567, 0.03379472717642784, -0.026165274903178215, -0.0018635879969224334, -0.019186200574040413, -0.0013922189828008413, -0.0466272197663784, 0.02611524611711502, 0.021137339994311333, -0.005478198174387217, -0.017672816291451454, -0.012688657268881798, -0.02312600053846836, -0.036646392196416855, -0.031393326818943024, -0.012494794093072414, 0.025314778089523315, 0.014145758002996445, -0.010649967007339, -0.03134329617023468, 0.004871593788266182, -0.008886437863111496, -0.02951723150908947, 0.009843246079981327, -0.01146919559687376, -0.015809228643774986, 0.03987327590584755, -0.01415826566517353, -0.017347628250718117, 0.03146836906671524, 0.0032237570267170668, 0.005525100510567427, -0.029717348515987396, -0.0044244579039514065, 0.0036834003403782845, -0.007760780863463879, 0.015884272754192352, 0.035795897245407104, 0.0023998385295271873, 0.032268837094306946, 0.012945056892931461, -0.015308937057852745, -0.00674143573269248, -0.0235387422144413, -0.026640553027391434, -0.001228060689754784, 0.06288671493530273, -0.015321444720029831, 0.012107067741453648, -0.0014758616453036666, -0.031643472611904144, -0.02395148202776909, -0.02435171604156494, -0.003711541648954153, -0.008079716935753822, -0.006785211153328419, 0.001599371200427413, -0.009217881597578526, -0.028766794130206108, -0.018010513857007027, -0.020286843180656433, 0.00961186084896326, 0.0025890113320201635, 0.015446517616510391, -0.0019996047485619783, 0.019899116829037666, 0.008598770014941692, 0.011694326996803284, 0.03682149574160576, 0.00671016750857234, -0.025940144434571266, -0.01125031802803278, 0.011512971483170986, -0.004264989867806435, 0.028716765344142914, 0.027416005730628967, -0.010437343269586563, 0.01256983820348978, -0.027616122737526894, 0.004383809398859739, 0.004846579395234585, 0.0066538844257593155, 0.0034864102490246296, -0.04722757264971733, 0.023588771000504494, -0.030918048694729805, 0.010599938221275806, 0.021700168028473854, -0.02879180759191513, -0.020224306732416153, -0.030692918226122856, 0.006735181901603937, 0.0025968283880501986, -0.007529395632445812, 0.012513555586338043, -0.026740610599517822, 0.0041274093091487885, 0.02866673469543457, -0.016572175547480583, 0.00881139375269413, -0.03477029874920845, 0.0019151805900037289, 0.005087344907224178, 0.023238565772771835, -0.015421503223478794, -0.000692982692271471, 0.017722846940159798, 0.00028649537125602365, 0.012032024562358856, 0.01642208732664585, 0.01458351407200098, -0.007241727784276009, -0.034945402294397354, -0.038597531616687775, -0.0038459952920675278, -0.03784709423780441, -0.004293131176382303, 0.0011248753871768713, -0.0007668539183214307, -0.020224306732416153, 0.007960897870361805, 0.009555578231811523, 0.023563755676150322, 0.019686492159962654, 0.0031534035224467516, -0.02196282148361206, 0.00942425150424242, -0.007792049087584019, 0.03109315223991871, 0.03061787411570549, -0.02744101919233799, -0.012419750913977623, -0.009280418045818806, 0.019586434587836266, 0.0022262996062636375, 0.014320860616862774, -0.000677348580211401, -0.03784709423780441, 0.02523973397910595, -0.0010732827940955758, -0.006904030684381723, 0.008467443287372589, -0.01610940508544445, 0.00280476245097816, -0.011100229807198048, -0.012788715772330761, -0.014258324168622494, -0.0018792221089825034, -0.03597100079059601, -0.005543861538171768, -0.012594852596521378, -0.03529560565948486, -0.001646273536607623, 0.02816644310951233, -0.0123509606346488, 0.0029032574966549873, 0.009955812245607376, -0.007129162084311247, 0.02488953061401844, 0.01039982121437788, 0.002141875447705388, -0.02611524611711502, 0.00034082395723089576, -0.0264904648065567, 0.019498882815241814, 0.021925300359725952, 0.05208040401339531, 0.017860427498817444, 0.03734680265188217, 0.007160430308431387, 0.023451190441846848, -0.00936171505600214, -0.010218465700745583, 0.022413084283471107, 0.024714428931474686, 0.004340033512562513, -0.01464605052024126, 0.020086726173758507, 0.032393909990787506, -0.023738859221339226, 7.905005622887984e-05, -0.0028219600208103657, -0.03181857615709305, -0.004502628464251757, 0.022388070821762085, -0.014558498747646809, 0.00200273166410625, 0.03161845728754997, -0.005406280979514122, -0.017910456284880638, -0.017447685822844505, 0.009092808701097965, -0.021862763911485672, 0.015609112568199635, -0.01660969667136669, 0.0022247363813221455, -0.05408157408237457, -0.008492457680404186, -0.005556368734687567, 0.031668487936258316, 0.036271173506975174, -0.01853582076728344, -0.01409572921693325, -0.013682987540960312, -0.029817407950758934, 0.015296430326998234, -0.0221504308283329, -0.01708497479557991, -0.0034864102490246296, -0.020762121304869652, 0.047277599573135376, -0.008392399176955223, -0.008736350573599339, 0.030092567205429077, 0.013883104547858238, -0.025402329862117767, 0.002032436430454254, -0.015371473506093025, -0.004211833700537682, -0.003655258798971772, -0.011813146062195301, -0.011056454852223396, -0.03404487669467926, 0.010506133548915386, 0.021224891766905785, 0.009918290190398693, -0.043975673615932465, 0.03724674507975578, -0.000354894669726491, -0.032518982887268066, 0.011681819334626198, -0.0253272857517004, 0.0198240727186203, -0.00018555753922555596, -0.0009239768842235208, -0.004058619495481253, 0.05243060737848282, -0.0054250420071184635, 0.037021614611148834, 0.029742363840341568, -0.006753942929208279, -0.02428917959332466, 0.029317114502191544, 0.0014266141224652529, 0.02624031901359558, 0.014470947906374931, 0.023751365020871162, -0.020311858505010605, -0.021787719801068306, -0.004624574910849333, 0.0483282133936882, -0.020824657753109932, 0.012738686986267567, -0.0015985894715413451, 0.0008864550036378205, -0.01164429821074009, 0.007348039653152227, -0.018936054781079292, -0.008486203849315643, -0.019986668601632118, 0.009067793376743793, -0.01739765703678131, -0.024914544075727463, 0.06063539907336235, 0.00972442701458931, -0.018710922449827194, -0.0413491390645504, -0.0091741057112813, 0.0005843255203217268, -0.03887269273400307, 0.021074803546071053, -0.02312600053846836, -0.011844414286315441, -0.0016806686762720346, -0.023626292124390602, -0.01797299273312092, 0.012732433155179024, 0.005062330514192581, -0.004174312110990286, -0.013920626603066921, -0.0036146100610494614, -0.025014603510499, 0.026065217331051826, -0.009918290190398693, -0.029342129826545715, 0.005084217991679907, -0.014883688651025295, 0.0025905747897922993, -0.000992767047137022, 0.010487372055649757, 0.01727258414030075, 0.01828567497432232, -0.010287255980074406, -0.014445933513343334, -0.020499467849731445, -0.009918290190398693, -0.010962650179862976, -0.04219963401556015, 0.015896780416369438, -0.02212541736662388, 0.0339198037981987, -0.023088479414582253, 0.026890698820352554, -0.009774455800652504, 0.0038241075817495584, 0.03366965427994728, -0.004465106874704361, -0.028966911137104034, 0.01173810288310051, 0.000401797064114362, -0.009749441407620907, 0.027491049841046333, -0.004299385007470846, 0.014283338561654091, 0.03249397128820419, -0.020124249160289764, -0.04162430018186569, 0.010199704207479954, -0.029492218047380447, -0.017735354602336884, -0.013232724741101265, -0.0038272342644631863, 0.007485620211809874, -0.014746109023690224, -0.011394151486456394, 0.0005847163265570998, -0.011262824758887291, 0.033744700253009796, -0.03404487669467926, -0.011294092983007431, 0.01849829964339733, 0.005809641443192959, 0.009999587200582027, 0.010993918403983116, 0.0029485963750630617, -0.02523973397910595, 0.03742184489965439, -0.0019902244675904512, -0.030893035233020782, 0.023263581097126007, -0.03502044454216957, 0.00939298328012228, -0.004077380523085594, -0.03464522585272789, -0.039823248982429504, -0.02854166179895401, 0.02706580050289631, -0.020849671214818954, 0.00783582404255867, 0.006991581525653601, 0.005990997422486544, 0.012132082134485245, 0.0014070714823901653, 0.042875029146671295, -0.00025190485757775605, -0.014558498747646809, -0.001095170620828867, -0.0183482114225626, -0.028741778805851936, 0.0018370099132880569, 0.04615194350481033, -0.03011758252978325, 0.03399484604597092, -0.015571590512990952, -0.003645878518000245, -0.029242070391774178, 0.014533484354615211, 0.005768992938101292, 0.008317355997860432, 0.004071126691997051, 0.014608528465032578, 0.03832237049937248, 0.005575129762291908, -0.023213552311062813, 0.01054365560412407, -0.0019792804960161448, 0.007004088722169399, -0.018898533657193184, -0.007948390208184719, -0.007047864608466625, -0.0267155971378088, 0.027866268530488014, -0.00963062234222889, 0.00573459779843688, -0.0032518983352929354, -0.006641377229243517, -0.016372058540582657, -0.00622238265350461, 0.038472458720207214, 0.030417757108807564, 0.004909115843474865, 0.015008761547505856, -0.01585925929248333, 0.02634037658572197, -0.002551489509642124, -0.0006730491877533495, 0.02854166179895401, 0.01916118524968624, 0.039573103189468384, 0.0061754803173244, 0.020274335518479347, -0.022012850269675255, -0.012970072217285633, 0.02681565470993519, -0.010324777103960514, 0.01585925929248333, 0.005178022664040327, -0.008342370390892029, -0.008667560294270515, 0.0023466823622584343, 0.019899116829037666, -0.014596020802855492, -0.0068352404050529, 0.05428168922662735, 0.005299969110637903, 0.007329278625547886, -0.009836993180215359, -0.009636876173317432, -0.018485791981220245, -0.05037941038608551, -0.03574586659669876, -0.06483785063028336, -0.015058791264891624, -0.01082506962120533, -0.0430501326918602, -0.004252482671290636, -0.0180355291813612, 0.014183280058205128, -0.0273409616202116, -0.005884685553610325, 0.030717933550477028, -1.2488980019043083e-06, 0.011875682510435581, 0.019548911601305008, 0.01274494081735611], [-0.038694191724061966, -0.04507066681981087, 0.018975773826241493, 0.01460955385118723, -0.017720965668559074, 0.011971895582973957, 0.0030345874838531017, 0.0735471323132515, 0.01163258496671915, -0.005147275049239397, -0.005355342756956816, 0.002157502109184861, 0.04647912457585335, -0.060947831720113754, -0.04678642377257347, 0.005633833352476358, -0.040281906723976135, -0.02160062827169895, -0.006520521827042103, 0.005835498683154583, 0.03879662603139877, 0.022548137232661247, 0.040179476141929626, 0.02745213359594345, 0.019769633188843727, 0.022663375362753868, 0.002229525474831462, -0.040358733385801315, 0.03764424845576286, -0.05393115058541298, 0.047401025891304016, -0.034545641392469406, 0.04087090119719505, -0.03669673949480057, 0.07667134702205658, 0.012067927047610283, -0.015275370329618454, 0.036389440298080444, 0.019795240834355354, -0.03370056673884392, -0.03836128115653992, -0.006219624076038599, 0.0021959145087748766, 0.011440522968769073, 0.008450750261545181, 0.034212734550237656, -0.0138925202190876, -0.050320375710725784, -0.006805414333939552, 0.010377776809036732, -0.011946287006139755, 0.039462439715862274, -0.026914358139038086, 0.022765807807445526, -0.019603179767727852, 0.0042189727537333965, 0.01074269600212574, 0.004817567765712738, 0.01929587870836258, 0.006261237431317568, 0.01629970408976078, -0.021805495023727417, -0.007285570725798607, 0.0341615155339241, 0.01405897457152605, 0.0018662072252482176, -0.019103815779089928, 0.05766996741294861, -0.07006439566612244, -0.05428966507315636, 0.004567886237055063, -0.0013620432000607252, -0.027272874489426613, -0.023687707260251045, 0.0011003580875694752, 0.019603179767727852, -0.00920619536191225, 0.010697880759835243, 0.04478897526860237, -0.02903985045850277, -0.023380408063530922, 0.010288148187100887, -0.03259940817952156, 0.027682607993483543, -0.011542956344783306, -0.005701055284589529, -0.10345766693353653, -0.019436724483966827, -0.034059081226587296, 0.04051238298416138, -0.025198599323630333, 0.018873341381549835, 0.006178010255098343, 0.07211306691169739, 0.04558283090591431, -0.02886059135198593, 0.012720939703285694, 0.013175487518310547, -0.017810596153140068, 0.03715769201517105, -0.010678675025701523, -0.002624854212626815, 0.009327835403382778, 0.07549336552619934, 0.04478897526860237, -0.01996169611811638, -0.06525003165006638, 0.013162682764232159, 0.03249697387218475, 0.021088462322950363, -0.05633833259344101, -0.006222825031727552, 0.008790059946477413, 0.04801562428474426, -0.010531427338719368, 0.0024375931825488806, 0.04778514802455902, 0.013866912573575974, -0.03477611765265465, 0.027503348886966705, 0.018015462905168533, -0.0030922063160687685, 0.053982365876436234, -0.0220743827521801, -0.0642256960272789, -0.00016815471462905407, -0.0093726497143507, 0.012432845309376717, -0.07569823414087296, -0.05444331467151642, 0.014865636825561523, -0.034801725298166275, -0.0013316333061084151, -0.034315165132284164, 0.031728725880384445, -0.027657000347971916, -0.02259935438632965, 0.011792637407779694, -0.026658274233341217, -0.0009531101677566767, 0.0005941933486610651, -0.005816292483359575, 0.03382860869169235, -0.018604453653097153, -0.01414860412478447, -0.003450722899287939, 0.03884784132242203, 0.03841250017285347, 0.026939965784549713, 0.007215147837996483, -0.0817418023943901, 0.008047418668866158, 0.024507174268364906, -0.001391652855090797, -0.0023415619507431984, 0.016235683113336563, -0.0843026340007782, 0.03218967467546463, -0.002096682321280241, -0.005131269805133343, -0.03201041743159294, -0.010889943689107895, -0.045685265213251114, 0.009154979139566422, 0.009910425171256065, -0.03536510840058327, 0.007573664654046297, 0.008982122875750065, -0.03641504794359207, -0.09152418375015259, -0.028245991095900536, -0.0414854995906353, -0.014327862299978733, 0.016696633771061897, -0.0004117339849472046, -0.022496920078992844, 0.04145989194512367, 0.029552016407251358, -0.029680058360099792, 0.018386783078312874, 0.007951387204229832, 0.034212734550237656, -0.016901500523090363, 0.03070439212024212, -0.018719691783189774, 0.019936086609959602, 0.012112741358578205, 0.01782339997589588, 0.007663293741643429, 0.04599256440997124, -0.02111406996846199, 0.050064291805028915, 0.011703007854521275, 0.017733771353960037, -0.022548137232661247, 0.004430241417139769, -0.024059029296040535, -0.03585166484117508, 0.01747768744826317, -0.02434072084724903, 0.023213954642415047, 0.0037740280386060476, 0.0011291673872619867, 0.036952823400497437, -0.05633833259344101, -0.03316279128193855, 0.005336136557161808, 0.005697853863239288, 0.040614817291498184, 0.021306132897734642, 0.014161407947540283, -0.056389547884464264, -0.012093535624444485, 0.0048431758768856525, -0.01937270350754261, -0.0004097333294339478, -0.01937270350754261, -0.006696579046547413, -0.010934758000075817, 0.041767191141843796, -0.015569866634905338, -0.008047418668866158, -0.008847679011523724, -0.008700431324541569, -0.002290345262736082, 0.02670949138700962, -0.02332919090986252, -0.02903985045850277, -0.024084636941552162, -0.0729837492108345, -0.029884925112128258, 0.015006483532488346, -0.01633811555802822, -0.027989907190203667, -0.05019233375787735, 0.019769633188843727, -0.021613432094454765, -0.02903985045850277, -0.004132544621825218, -0.028425250202417374, 0.05382871627807617, 0.022138403728604317, -0.013777283020317554, 0.015147329308092594, 0.02870694175362587, -0.016466157510876656, -0.012816970236599445, -0.020883595570921898, -0.002788107143715024, -6.587143434444442e-05, 0.03234332427382469, -0.019756829366087914, -0.00041533514740876853, -0.08327829837799072, 0.02929593250155449, 0.005710658151656389, 0.044251199811697006, -0.0008190665394067764, 0.00734318932518363, 0.02663266658782959, 0.062177032232284546, -0.022753003984689713, -0.007195941638201475, -0.0005405758856795728, -0.03362374007701874, -0.04886069893836975, 0.03938561677932739, 0.0142254289239645, 0.0488094836473465, 0.029398366808891296, -0.06279163062572479, 0.05300924926996231, -0.008681224659085274, 0.0013100262731313705, -0.020640315487980843, 0.015326587483286858, 0.004580690525472164, -0.04845096543431282, -0.0006986273219808936, 0.03723451495170593, -0.048732656985521317, -0.011735018342733383, -0.01792583242058754, -0.04494262486696243, -0.017170386388897896, -0.025275424122810364, 0.03838689252734184, -0.020461058244109154, -0.05029476433992386, 0.058540649712085724, 0.07918096333742142, -0.015121720731258392, -0.025121774524450302, -0.013905324973165989, 0.050320375710725784, -0.016030816361308098, 0.004903995897620916, 0.01718319207429886, 0.014763204380869865, -0.005905921570956707, 0.0011187640484422445, -0.024417545646429062, -0.018309958279132843, 0.0034795321989804506, -0.012298401445150375, -0.01237522717565298, -0.042689092457294464, -0.004599896725267172, -0.021882319822907448, 0.022868242114782333, -0.026120498776435852, -0.019065404310822487, -0.026863140985369682, -0.02211279608309269, 0.009609526954591274, -0.009955239482223988, -0.0004213371139485389, 0.03218967467546463, 0.044507283717393875, -0.029756883159279823, 0.030397091060876846, -0.011440522968769073, 0.0381564162671566, -0.021651845425367355, 0.028988633304834366, 0.001173181808553636, 0.016863087192177773, 0.013015435077250004, -0.025326641276478767, 0.027913082391023636, 0.030397091060876846, -0.005518595688045025, 0.05818213149905205, -0.03211284801363945, -0.02133174054324627, 0.03536510840058327, 0.03234332427382469, -0.011344491504132748, -0.03262501582503319, 0.012919403612613678, -0.04263787344098091, -0.008521173149347305, 0.0026104494463652372, 0.025736374780535698, -0.011312481015920639, 0.0688864141702652, 0.044763367623090744, 0.050909366458654404, -0.03119095042347908, -0.0014020561939105392, -0.016824673861265182, -0.031318992376327515, 0.008175460621714592, -0.023098716512322426, -0.03964170068502426, -0.025505900382995605, -0.037695467472076416, -0.008681224659085274, -0.0615624338388443, 0.01718319207429886, -0.018233133479952812, -0.007848953828215599, -0.0017333640716969967, 0.004110137466341257, 0.004010905046015978, 0.03592849150300026, -0.06873276829719543, 0.017272820696234703, -0.0012452051742002368, -0.017388058826327324, 0.02122930809855461, -0.002479206770658493, 0.02770821563899517, 0.01114602666348219, 0.03956487402319908, -0.0018582046031951904, 0.06274041533470154, -0.0002710882108658552, -0.017170386388897896, -0.017490491271018982, 0.022509723901748657, -0.0324457585811615, 0.0027576973661780357, 0.005310527980327606, 0.03685039281845093, 0.0008218674338422716, -0.028348425403237343, -0.0037292134948074818, 0.018770908936858177, 0.04174158349633217, 0.022573744878172874, -0.04074285924434662, -0.012439248152077198, 0.019347095862030983, -0.015723517164587975, -0.007855355739593506, 0.001582915079779923, 0.03756742551922798, -0.01778498664498329, 0.009583918377757072, -0.006901445798575878, -0.039103925228118896, 0.002783305710181594, -0.023060303181409836, -0.011747823096811771, 0.012816970236599445, -0.026158912107348442, -0.028988633304834366, -0.003007378662005067, -0.03631261736154556, 0.002676070900633931, -0.04950090870261192, 0.034212734550237656, 0.008565987460315228, -0.00652692373842001, -0.0029209505300968885, 0.023956594988703728, 0.012272793799638748, 0.05582616478204727, -0.006715785246342421, 0.028348425403237343, -0.0018710087751969695, -0.010140899568796158, -0.00750964367762208, -0.0227402001619339, 0.01996169611811638, 0.03503219783306122, -5.4217642173171043e-05, -0.004497463349252939, -0.024916907772421837, 0.028322815895080566, -0.0014076580991968513, 0.030064182355999947, 0.03966730833053589, -0.013092259876430035, -0.05249708145856857, 0.035979706794023514, -0.016171662136912346, -0.02696557529270649, -0.006670970935374498, -0.020461058244109154, -0.020012911409139633, -0.001771776587702334, 0.009507093578577042, -0.02270178683102131, -0.024161461740732193, -0.011082005687057972, -0.0009331036126241088, -0.01925746724009514, 0.000372521230019629, 0.035621192306280136, -0.002709681633859873, -0.033470090478658676, 0.05726023390889168, -0.03864297270774841, -0.022753003984689713, -0.050474025309085846, -0.03743938356637955, 0.040537990629673004, -0.01604362018406391, 0.028169166296720505, 0.06012836471199989, 0.005979545880109072, 0.041536714881658554, 0.025237012654542923, -0.02137015387415886, -0.008245883509516716, -0.02322675846517086, 0.010678675025701523, -0.005979545880109072, -0.03516023978590965, 0.004670319613069296, 0.011286872439086437, -0.03218967467546463, -0.008175460621714592, 0.04171597585082054, 0.022868242114782333, -0.01700393296778202, -0.055467650294303894, -0.0035947696305811405, 0.006360469851642847, -0.01468637865036726, -0.03774668276309967, 0.011619781143963337, 0.06668409705162048, 0.023124324157834053, 0.05103740841150284, 0.03764424845576286, 0.005701055284589529, -0.008969319052994251, 0.012637712061405182, 0.036952823400497437, 0.05848943069577217, -0.012880991213023663, -0.004859181120991707, 0.030678782612085342, 0.026479016989469528, -0.001021932577714324, -0.03226650133728981, 0.011402110569179058, -0.0013300328282639384, -0.04670960083603859, -0.0351090244948864, 0.04555722326040268, 0.00825868733227253, 0.030473915860056877, 0.07242036610841751, -0.027272874489426613, 0.04496823251247406, 0.0007386403740383685, -0.03236893191933632, -0.01921905390918255, 0.002941757207736373, 0.02696557529270649, 0.030806824564933777, -0.03152385726571083, -0.031139733269810677, 0.01825874112546444, -0.027400916442275047, -0.015697907656431198, -0.005685050040483475, 0.004126142710447311, -0.02367490343749523, -0.016235683113336563, 0.02655584178864956, 0.01859164983034134, -0.0019622384570538998, -0.0384381078183651, -0.033803001046180725, 0.0045966957695782185, 0.008540378883481026, -0.03603092581033707, -0.014968070201575756, 0.017131974920630455, 0.031728725880384445, -0.0037644249387085438, 0.00659414567053318, 0.014750399626791477, 0.017938638105988503, -0.00404611648991704, 0.018655670806765556, 0.014135799370706081, -0.008918101899325848, -0.010621055960655212, 0.022663375362753868, -0.025877220556139946, -0.0008610801887698472, -0.023137127980589867, 0.043431732803583145, 0.017311232164502144, 0.04056359827518463, 0.009398258291184902, 0.029321542009711266, -0.023995008319616318, 0.0006626156391575933, -0.03152385726571083, 0.03608214110136032, 0.016069229692220688, 0.03528828173875809, 0.006354067474603653, -0.03011539950966835, 0.03249697387218475, -0.01144692488014698, -0.04079407453536987, -0.014507120475172997, -0.0037356156390160322, -0.04279152303934097, -0.005528199020773172, -0.04394390061497688, 0.0023415619507431984, -0.00560182286426425, -0.003604372963309288, 0.0010155304335057735, 0.015249762684106827, 0.02003852091729641, 0.02430230751633644, 0.021946340799331665, -0.04863022267818451, 0.008533976972103119, -0.002735289977863431, -0.009276618249714375, 0.005483384244143963, 0.015864362940192223, -0.04560844227671623, -0.01444309949874878, -0.0047375415451824665, -0.02025619149208069, -0.020909203216433525, 0.018438000231981277, -0.005665843840688467, 0.015249762684106827, 0.021613432094454765, 0.02985931560397148, 0.021805495023727417, 0.008886091411113739, -0.0067990124225616455, -0.017349645495414734, -0.009270216338336468, 0.0008866885327734053, 0.0220743827521801, 0.013662045821547508, -0.014404687099158764, 0.007848953828215599, -0.012932208366692066, -0.01944952830672264, -0.01855323649942875, -0.0016245286678895354, 0.004759948700666428, 0.019462332129478455, 0.02411024458706379, 0.04181840643286705, 0.008898896165192127, 0.06960345059633255, -0.013598024845123291, -0.020883595570921898, 0.015877166762948036, -0.046325474977493286, 0.0017093562055379152, -0.007311178836971521, 0.03631261736154556, -0.02137015387415886, -0.030012967064976692, 0.04389268159866333, -0.010448199696838856, -0.00912937056273222, 0.013790086843073368, -0.017362449318170547, -0.03731134161353111, -0.03600531443953514, 0.013015435077250004, -0.011133222840726376, 0.03851493448019028, 0.0016173262847587466, 0.029731273651123047, -0.03341887518763542, -0.0035819655749946833, 0.010640262626111507, 0.0008402734529227018, 0.001094756182283163, 0.021510999649763107, 0.026991182938218117, -0.009692753665149212, -0.007727314252406359, -0.023495646193623543, 0.05833578109741211, 0.02489130012691021, -0.010614654049277306, 0.05285559967160225, 0.03574923425912857, -0.004875186365097761, 0.034545641392469406, -0.006344464607536793, 0.0074584269896149635, -0.024199875071644783, -0.0026440604124218225, 0.012432845309376717, 0.01985926181077957, 0.04307321459054947, 0.015147329308092594, 0.004260586574673653, -0.012080730870366096, 0.04768271744251251, -0.015761928632855415, -0.021306132897734642, 0.018758103251457214, 0.05382871627807617, 0.03208724036812782, -0.021459782496094704, 0.03300914168357849, -0.015838753432035446, -0.01870688796043396, 0.03436638414859772, 0.0114661306142807, -0.025659549981355667, 0.011350893415510654, 0.02471204102039337, -0.009731166064739227, -0.027170442044734955, 0.0160820335149765, 0.010902747511863708, -0.006901445798575878, -0.003354691667482257, -0.0025528306141495705, 0.05244586616754532, -0.01851482503116131, -0.015032091177999973, -0.006226025987416506, 0.0013884517829865217, -0.001009128405712545, -0.0014204622711986303, 0.006734991446137428, 0.03126777336001396, 0.023982204496860504, -0.03677356615662575, -0.009007731452584267, 0.0017589724157005548, -0.0232651699334383, -0.014904050156474113, -0.009756774641573429, -0.022164011374115944, -0.02663266658782959, 0.016056424006819725, -0.0003871259687002748, -0.0850708857178688, -0.0011755825253203511, 0.005390554200857878, 0.006786208134144545, 0.014289449900388718, 0.03218967467546463, -0.01046740636229515, -0.03871979936957359, -9.468080679653212e-05, -0.013137075118720531, 0.02371331676840782, -0.021139679476618767, 0.008162655867636204, -0.05393115058541298, 0.021062854677438736, 0.038284458220005035, -0.0032698640134185553, -0.003173832781612873, 0.002989772940054536, 0.007880964316427708, -0.034212734550237656, 0.007970593869686127, 0.0038092394825071096, -0.0077657271176576614, -0.02070433646440506, 0.04181840643286705, -0.0013436372391879559, -0.002136695198714733, -0.04594134911894798, -0.01604362018406391, -0.017567316070199013, 0.015339391306042671, 0.02418707124888897, -0.004423839505761862, 0.03037148341536522, -0.007215147837996483, -0.019577570259571075, 0.04934725910425186, -0.011267666704952717, -0.008361120708286762, 0.025365054607391357, 0.024417545646429062, 0.011395707726478577, -0.007119116373360157, -0.013610828667879105, -0.0066581666469573975, -0.011914276517927647, 0.01837397925555706, 0.010364972986280918, 0.028092341497540474, -0.02485288679599762, 0.011056398041546345, 0.008085831068456173, 0.012035916559398174, -0.01302183698862791, -0.027016790583729744, 0.018105091527104378, 0.028988633304834366, 0.01859164983034134, -0.018988579511642456, 0.04448167607188225, 0.04711933434009552, -0.05971863120794296, -0.019641591235995293, -0.026427799835801125, -0.017131974920630455, -0.0028697338420897722, 0.021498195827007294, -0.02074274979531765, 0.015915578231215477, 0.009500691667199135, 0.030832432210445404, -0.004718335345387459, -0.015787538141012192, -0.02551870420575142, 0.0045614843256771564, -0.029065458104014397, 0.01659419946372509, 0.0022055176086723804, 0.026607057079672813, 0.0384381078183651, -0.005508992820978165, 0.013201096095144749, -0.01759292557835579, 0.01311146654188633, -0.004209369886666536, 0.0018117895815521479, -0.014699183404445648, 0.004062121734023094, -0.007650489453226328, -0.03823324292898178, -0.03585166484117508, -0.0072791688144207, -0.013969345949590206, -0.03400786593556404, -0.030678782612085342, 0.0175545122474432, -0.01344437524676323, 0.032164067029953, -0.009417464025318623, 0.03633822500705719, 0.040947724133729935, -0.026837533339858055, -0.024289503693580627, -0.0015709111467003822, 0.0049968259409070015, -0.02559552900493145, -0.05352141708135605, 0.03167750686407089, -0.032138459384441376, 0.04097333177924156, 0.008905298076570034, -0.0008810866856947541, -0.01581314578652382, 0.01357241626828909, -0.0061043864116072655, 0.018066678196191788, 0.05382871627807617, -0.02888619899749756, -0.00455508241429925, 0.01778498664498329, 0.03982095792889595, -0.016530178487300873, -0.031575076282024384, 0.013469982892274857, -0.04163914918899536, 0.018399586901068687, 0.00300577818416059, -0.013610828667879105, -0.009641537442803383, -0.011959091760218143, -0.005035238340497017, 0.02804112434387207, 0.0016981526277959347, 0.0039020697586238384, 0.0077657271176576614, 0.02681192383170128, 0.02103724516928196, -0.012471257708966732, -0.03823324292898178, -0.00842514168471098, -0.04046116769313812, 0.013918128795921803, -0.02166464924812317, 0.014468708075582981, 0.004750345833599567, -0.0023751729167997837, 0.0012275994522497058, -0.026607057079672813, -0.027989907190203667, 0.008079429157078266, 0.026350975036621094, 0.017989853397011757, 0.029347149655222893, 0.02233046665787697, -0.014840029180049896, -0.011107614263892174, -0.02526262030005455, -0.023085912689566612, 0.021984754130244255, -0.0063860779628157616, 0.02115248329937458, 0.01224078331142664, 0.04560844227671623, 0.026402192190289497, 0.013162682764232159, 0.009801589883863926, 0.0414854995906353, 0.03574923425912857, 0.0184123907238245, -0.037388164550065994, 0.024827279150485992, 0.012855383567512035, -0.0006662167725153267, 0.006171608343720436, 0.0018133900593966246, 0.04279152303934097, 0.04033312574028969, -0.006101185455918312, 0.005771478172391653, -0.02919350005686283, -0.00746482890099287, 0.008847679011523724, -0.021395761519670486, 0.049577731639146805, 0.03608214110136032, -0.02144697867333889, -0.003969291690737009, 0.03974413126707077, 0.017656944692134857, -0.030064182355999947, 4.9191006837645546e-05, -0.0018277947092428803, 0.028143558651208878, 0.03019222430884838, -0.013508395291864872, -0.008367522619664669, -0.03551875799894333, -0.008367522619664669, -0.024059029296040535, -0.00037732277996838093, 0.02537785843014717, 0.004932804964482784, 0.012195969000458717, -0.043354906141757965, -0.01944952830672264, -0.009212598204612732, -0.012324010021984577, -0.00935344398021698, -0.02786186710000038, -0.013265116140246391, 0.007714510429650545, -0.010659468360245228, -0.043354906141757965, -0.0025784389581531286, 0.00030609959503635764, -0.011344491504132748, 0.01240723766386509, 0.024916907772421837, 0.028476465493440628, -0.04903995618224144, -0.04163914918899536, 0.0015220952918753028, -0.02960323356091976, 0.04660716652870178, -0.016504570841789246, 0.018975773826241493, -0.017836203798651695, 0.038130808621644974, 0.005678647663444281, 0.0689888522028923, 0.0047023301012814045, -0.00814985204488039, -0.0022935462184250355, -0.025288227945566177, 0.019680004566907883, -0.03631261736154556, 0.03664552420377731, 0.010051270946860313, -0.0535726323723793, -0.01870688796043396, -0.04663277417421341, -0.012810568325221539, 0.020397037267684937, 0.0004901594948023558, 0.05536521598696709, -0.0015308981528505683, 0.047580283135175705, -0.010544231161475182, 0.029987357556819916, -0.02896302379667759, -0.0033130780793726444, 0.025019342079758644, -0.015544258058071136, -0.02678631618618965, 0.01444309949874878, 0.01163258496671915, 0.018066678196191788, 0.012695331126451492, 0.02518579550087452, -0.021178090944886208, 0.039360009133815765, -0.017733771353960037, 0.014135799370706081, -0.022868242114782333, 0.01035216823220253, 0.009225402027368546, -0.010396983474493027, 0.01311146654188633, 0.005806689616292715, -0.010902747511863708, 0.028604507446289062, 0.0009283020626753569, 0.010230529122054577, 0.014571141451597214, -0.015787538141012192, 0.01542902085930109, -0.006856631021946669, 0.04107576608657837, 0.0020422644447535276, -0.038028374314308167, -0.004763150122016668, 0.004587092436850071, 0.006325258407741785, 0.007996201515197754, 0.00600835494697094, -0.011959091760218143, -0.012720939703285694, -0.010364972986280918, 0.025954045355319977, 0.013047445565462112, 0.002655263990163803, 0.01163258496671915, 0.007554457988590002, -0.018066678196191788, -0.0005817892961204052, 0.014519925229251385, -0.028322815895080566, -0.012227978557348251, 0.006626156158745289, -0.012695331126451492, 0.03567240759730339, 0.00479516014456749, 0.027759432792663574, -0.013623633421957493, 0.010249734856188297, -0.050320375710725784, 0.014980874955654144, 0.010096085257828236, -0.019654395058751106, 0.027400916442275047, -0.00820106826722622, -0.01368765439838171, 0.006779806222766638, -0.06975709646940231, -0.00663896044716239, 0.02670949138700962, 0.007688901852816343, 0.009641537442803383, -0.023918183520436287, -0.011210047639906406, 0.01101798564195633, -0.04084528982639313, -0.003402707166969776, -0.04363659769296646, 0.025441879406571388, 0.0006206019315868616, 0.03428955748677254, 0.010025662370026112, 0.044251199811697006, 0.025275424122810364, 0.009513495489954948, 0.016325311735272408, 0.00034571249852888286, -0.01989767514169216, -0.019654395058751106, 0.013213899917900562, -0.0351090244948864, -0.015864362940192223, -0.008905298076570034, 0.02029460296034813, -0.0033130780793726444, 0.01782339997589588, 0.023828553035855293, 0.008969319052994251, 0.03892466425895691, 0.0026168515905737877, -0.007131920661777258, 0.0025800394359976053, -0.05403358116745949, 0.00045254724682308733, -0.029142282903194427, -0.01685028336942196, -0.006875837221741676, -0.010941159911453724, -0.012548083439469337, 0.007976995781064034, 8.497765520587564e-05, -0.01992328278720379, 0.020320212468504906, 0.02256094105541706, 0.009526300244033337, -0.011914276517927647, -0.006027561146765947, -0.01352120004594326, -0.0005125667667016387, 0.00781694334000349, 0.012087132781744003, -0.00236556981690228, 0.03877101466059685, 0.010896345600485802, 0.02263776585459709, -0.01600520871579647, -0.023162737488746643, 0.0042893956415355206, -0.031907983124256134, 0.01581314578652382, 0.011312481015920639, 0.023726120591163635, -0.0070230853743851185, 0.008405935019254684, -0.013495591469109058, 0.014788812026381493, 0.0035499550867825747, 0.0555700808763504, -0.016210075467824936, 0.012644113972783089, -0.0441487655043602, 0.0230731088668108, -0.00018295954214408994, -0.006606949958950281, 0.011286872439086437, 0.004427040461450815, 0.033316440880298615, 0.005064047873020172, 0.01915503293275833, -0.005662642419338226, 0.044763367623090744, 0.034391991794109344, 0.05270195007324219, -0.00044374438584782183, -0.00363958440721035, -0.023905379697680473, 0.013777283020317554, -0.022317662835121155, 0.026453407481312752, 0.011683802120387554, 0.007445622701197863, -0.006424490362405777, 0.017913028597831726, 0.01726001687347889, -0.01277855783700943, 0.01751609891653061, -0.000921099737752229, 0.003834847826510668, 0.0075288498774170876, 0.015825949609279633, -0.013559612445533276, -0.007720912341028452, 0.024724844843149185, -0.021178090944886208, 0.022087186574935913, -0.009897620417177677, -0.035877276211977005, 0.028732549399137497, 0.025659549981355667, -0.003415511455386877, 0.02467362955212593, -0.022215228527784348, -0.0022887447848916054, -0.024699237197637558, -0.026658274233341217, -0.025249816477298737, -0.001346037955954671, -0.025172991678118706, -0.0006158003816381097, 0.03851493448019028, 0.023841358721256256, 0.001145172631368041, -0.0005013631307519972, -0.014660771004855633, 0.02096042037010193, 0.028271598741412163, -0.018758103251457214, 0.07677378505468369, 0.004132544621825218, 0.01859164983034134, 0.02722165733575821, 0.006277242675423622, -0.027400916442275047, -0.03708086535334587, 0.008361120708286762, -0.027989907190203667, 0.05029476433992386, -0.038028374314308167, 0.009923228994011879, -0.010025662370026112, -0.016171662136912346, -0.008879689499735832, 0.020922008901834488, 0.018220329657197, -0.0178874209523201, 0.01596679538488388, -0.007733716629445553, 0.010966768488287926, -0.008770854212343693, 0.016286900267004967, -0.027272874489426613, -0.02822038345038891, -0.03037148341536522, -0.008290697820484638, -0.00948148500174284, 0.019833654165267944, 0.006014757324010134, 0.0287837665528059, -0.0025096165481954813, -0.0006758199306204915, -0.0016109241405501962, 0.0194111168384552, -9.628132829675451e-05, -0.019103815779089928, -0.02637658268213272, 0.037388164550065994, 0.022343270480632782, 0.017055150121450424, -0.001207592897117138, -0.03293231502175331, -0.025237012654542923, -0.0006602148059755564, 0.036799173802137375, -0.05175444111227989, -0.012112741358578205, 0.01751609891653061, -0.017913028597831726, -0.02745213359594345, 0.01944952830672264, -0.022048775106668472, 0.0015861161518841982, -0.04058920592069626, 0.02285543642938137, -0.01254168152809143, -0.016427746042609215, -0.01439188327640295, 0.0038092394825071096, 0.025544311851263046, 0.002343162428587675, -0.006722187623381615, -0.020102541893720627, 0.013092259876430035, -0.0048079644329845905, -0.006110788322985172, -0.015032091177999973, -0.010678675025701523, 0.013015435077250004, -0.008194666355848312, 0.03874540701508522, -0.0018101889872923493, -0.04427680745720863, -0.005713859107345343, -0.009058947674930096, -0.012388030998408794, 0.03856614977121353, 0.01431505847722292, -0.04084528982639313, -0.008009006269276142, 0.005140872672200203, 0.061101481318473816, 0.06166486442089081, -0.0317799411714077, -0.004202967509627342, -0.015083308331668377, 0.012765754014253616, 0.006110788322985172, 0.014596750028431416, -0.021575020626187325, -0.031472641974687576, 0.031984806060791016, -0.01659419946372509, -0.002119089476764202, -0.011382903903722763, -0.015761928632855415, -0.012087132781744003, -0.011210047639906406, -0.005883514415472746, 0.03559558466076851, -0.042945172637701035, 0.00595393730327487, 0.014545532874763012, -0.008412336930632591, -0.006907847709953785, 0.010268941521644592, 0.006219624076038599, 0.010294550098478794, -0.00866842083632946, -0.016235683113336563, 0.0048527792096138, 0.016837479546666145, -0.018681278452277184, -0.017874617129564285, 0.009174184873700142, -0.0011755825253203511, 0.00023147532192524523, 0.005310527980327606, -0.0235980786383152, 0.02510897070169449, 0.0010107288835570216, -0.01896297000348568, 0.015377803705632687, 0.02786186710000038, -0.0032778666354715824, 0.004170957021415234, 0.006325258407741785, 0.05572373420000076, 0.00883487518876791, -0.007029487285763025, 0.006149200722575188, 0.028809374198317528, -0.013469982892274857, 0.03208724036812782, 0.006235628854483366, -0.007605674676597118, 0.006491712294518948, -0.0001272414083359763, 0.002647261368110776, -0.025877220556139946, 0.028399640694260597, 0.011331687681376934, -0.025313837453722954, -0.03167750686407089, 0.035877276211977005, -0.023239562287926674, 0.018220329657197, 0.026683883741497993, 0.01480161678045988, 0.00016325312026310712, 0.001995849423110485, 0.042176924645900726, 0.013431570492684841, -0.021639041602611542, -0.029244715347886086, -0.011062799952924252, -0.034801725298166275, 0.007548056077212095, 0.0039372812025249004, -0.030217831954360008, -0.0012868187623098493, -0.0394880510866642, -0.014379078522324562, 0.038950275629758835, 0.00479836156591773, -0.029833707958459854, 0.025493094697594643, 0.012701733037829399, -0.011517347767949104, -0.021510999649763107, -0.03403347358107567, -0.0017797790933400393, 0.026427799835801125, 0.01237522717565298, -0.010569839738309383, -0.01925746724009514, 0.013662045821547508, 0.01492965780198574, -0.003946884535253048, -0.0007462428184226155, -0.008694029413163662, 0.005086455028504133, 0.015441824682056904, -0.012996229343116283, -0.03731134161353111, -0.02551870420575142, -0.014276646077632904, -0.006344464607536793, 0.01128047052770853, 0.010569839738309383, -0.017067953944206238, -0.026581449434161186, 0.000624203123152256, -0.00953910406678915, -0.02133174054324627, 0.038617365062236786, 0.04151110723614693, -0.025697961449623108, 0.0015933184185996652, 0.02960323356091976, 0.004315004218369722, -0.016325311735272408, 0.006184412632137537, -0.008694029413163662, -0.011152428574860096, -0.011517347767949104, -0.007618478965014219, 0.001323630684055388, -0.0005949935875833035, 0.000820266897790134, 0.04581330716609955, 0.0013780484441667795, 0.0028649321757256985, 0.010377776809036732, -0.03503219783306122, 0.013482787646353245, 0.02696557529270649, -0.0022983478847891092, -0.06852789968252182, -0.014763204380869865, -0.0030185822397470474, -0.028348425403237343, -0.05149835720658302, 0.02960323356091976, 0.005134470760822296, 0.011011582799255848, 0.032573800534009933, -0.02722165733575821, -0.015736320987343788, 0.017234407365322113, -0.026158912107348442, 0.042356181889772415, -0.04396950826048851, -0.03052513301372528, -0.024417545646429062, -0.008937308564782143, 0.00825868733227253, 0.011517347767949104, -0.01851482503116131, -0.019539158791303635, -0.01700393296778202, -0.00699107488617301, -0.03242015093564987, 0.003940482158213854, 0.051882483065128326, 0.015121720731258392, 0.022279249504208565, -0.022125599905848503, -0.009244607761502266, -0.0002548829361330718, -0.001912622363306582, 0.016658220440149307, -0.023495646193623543, -0.0054353685118258, 0.000583789951633662, 0.020909203216433525, 0.014276646077632904, 0.031907983124256134, -0.016837479546666145, -0.020281799137592316, -0.0331115759909153, 0.016197269782423973, -0.027682607993483543, 0.007912974804639816, 0.01357241626828909, 0.00037392167723737657, -0.0097055584192276, -0.021510999649763107, 0.00734318932518363, -0.000835471844766289, 0.017362449318170547, 0.012330411933362484, -0.01833556592464447, -0.022240838035941124, 0.007029487285763025, -0.01681187003850937, -0.0023367602843791246, 0.0239309873431921, 0.007042291574180126, -0.0006934256525710225, 0.018463607877492905, 0.012695331126451492, 0.016875891014933586, 0.016581395640969276, 0.003838049015030265, 0.012189566157758236, 0.03316279128193855, -0.001648536417633295, -0.027503348886966705, 0.02252252958714962, -0.004615901969373226, 0.0022983478847891092, 0.01845080405473709, -0.018809320405125618, -0.017016736790537834, 0.007637685164809227, -0.014891245402395725, 0.0015837153187021613, -0.037388164550065994, 0.006411686539649963, -0.03426394984126091, 0.011107614263892174, 0.012253587134182453, 0.017055150121450424, 0.029347149655222893, 0.006466104183346033, 0.007663293741643429, -0.014660771004855633, -0.00994883757084608, 0.0001375447609461844, -0.006299649830907583, 0.011530151590704918, -0.026018066331744194, -0.007989799603819847, -0.0033642947673797607, -0.01818191632628441, -0.024263896048069, 0.047913189977407455, -0.007336787413805723, 0.03964170068502426, 0.02729848213493824, 0.003946884535253048, -0.02029460296034813, 0.030550740659236908, 0.0005037639057263732, 0.0021911130752414465, -0.03500659018754959, 0.018898949027061462, 0.025646746158599854, 0.012919403612613678, 0.0291166752576828, -0.015390608459711075, 0.0008338713669218123, 0.00375482183881104, -0.012919403612613678, -0.010377776809036732, -0.02263776585459709, -0.0006338062230497599, -0.029680058360099792, -0.03487854823470116, 0.00646290322765708, 0.01782339997589588, 0.024353524670004845, -0.015992403030395508, 0.026735099032521248, -0.0018854135414585471, 0.045173101127147675, -0.020883595570921898, 0.0018614056752994657, 0.0432012565433979, 0.04711933434009552, 0.02555711567401886, -0.04332929849624634, 0.00410053413361311, 0.005771478172391653, 0.023252366110682487, 0.013380354270339012, -0.013457179069519043, -0.01340596191585064, 0.03142142295837402, -0.009116566739976406, -0.02270178683102131, -0.0068694353103637695, 0.010819520801305771, -0.005160078871995211, -0.021318936720490456, 0.017567316070199013, -0.0048207687214016914, -0.03357252478599548, 0.008892493322491646, -0.030550740659236908, 0.01863006129860878, -0.016210075467824936, 0.03626139834523201, -0.07339347898960114, 0.01202311273664236, -0.02019217051565647, -0.008284295909106731, -0.007477633189409971, 0.02696557529270649, 0.0008954913937486708, -0.005707457195967436, -0.010544231161475182, 0.027938691899180412, -0.004257385153323412, 0.00983359944075346, -0.004638309124857187, 0.02348284050822258], [-0.013818514533340931, -0.0015107872895896435, 0.0320558175444603, -0.012275861576199532, -0.06390246003866196, 0.03166361525654793, 0.05867312476038933, 0.0844014510512352, 0.035585615783929825, 0.02537534199655056, 0.009099041111767292, 0.0010099151404574513, 0.043691083788871765, -0.08225741982460022, -0.022760676220059395, 0.00121010048314929, -0.007700194139033556, -0.005278358701616526, -0.05935293808579445, 0.056581392884254456, 0.0036997536662966013, 0.058725420385599136, -0.00323565024882555, 0.007667510770261288, -0.01660313457250595, 0.006007197313010693, -0.0371544174849987, -0.021845541894435883, 0.039690643548965454, -0.03796496242284775, 0.03691909834742546, -0.03511497750878334, 0.044527776539325714, -0.024394841864705086, 0.08319870382547379, 0.006644522305577993, -0.028369136154651642, 0.022812968119978905, 0.0065105208195745945, -0.0018253643065690994, 0.017766661942005157, 0.023662736639380455, 0.013204067945480347, 0.02116572856903076, -0.0003613551380112767, 0.03793881833553314, -0.01794968917965889, -0.0647391527891159, -0.0037749253679066896, 0.030408576130867004, -0.002099904464557767, -0.03521956503391266, -0.0013792368117719889, -0.005771877244114876, -0.01260269433259964, -0.024224888533353806, 0.01598868891596794, -0.007772097364068031, 0.05407131090760231, 0.015518047846853733, 0.025806762278079987, -0.025636808946728706, 0.0023205168545246124, 0.029075095430016518, -0.016668502241373062, -0.0018939994042739272, 0.006706620566546917, 0.03974293917417526, -0.07854459434747696, 0.03835716471076012, -0.015714148059487343, -0.0008587546763010323, -0.011602584272623062, -0.006719694007188082, 0.00531757902354002, 0.00317191774956882, 0.01330865453928709, 0.056633684784173965, 0.044187869876623154, -0.013387094251811504, -0.006843890529125929, -0.04766537994146347, -0.010171053931117058, 0.04209613800048828, 0.0031441370956599712, 0.014184568077325821, -0.022930629551410675, -0.05127361789345741, -0.016001760959625244, 0.038226429373025894, 0.009857294149696827, -0.023754248395562172, 0.04429245740175247, 0.05302544683218002, 0.04173008352518082, -0.02504850924015045, -0.013792367652058601, -0.028159962967038155, -0.011654878035187721, 0.03396452218294144, -0.01917858235538006, -0.007026917301118374, -0.007693657651543617, 0.03448745608329773, 0.015439608134329319, -0.07132811099290848, -0.013092944398522377, -0.005003818776458502, 0.04601813852787018, 0.04395255073904991, -0.11096646636724472, 0.007745950948446989, 0.024447135627269745, -0.0021946860942989588, 0.008366934023797512, 0.0005952452775090933, 0.010537107475101948, -0.020276742056012154, 0.014354521408677101, 0.007000770885497332, -0.014132274314761162, -0.0021995885763317347, 0.011707170866429806, -0.014890528284013271, -0.005490800365805626, 0.027375562116503716, 0.005137820728123188, 0.04868509992957115, -0.021361829712986946, -0.04970481991767883, 0.005984318908303976, -0.03684065863490105, 0.0405273362994194, 0.003608240280300379, 0.01080511137843132, -0.027532443404197693, -0.034853510558605194, -0.0027470344211906195, -0.007255700882524252, -0.03244801610708237, -0.025126948952674866, -0.010968527756631374, 0.015400388278067112, 0.008628400973975658, -0.01319753099232912, -0.04980940371751785, 0.017583634704351425, 0.07446571439504623, 0.01750519499182701, 0.029833350330591202, -0.04240989685058594, 0.02435562200844288, -0.02436869591474533, 0.012079761363565922, -0.029859496280550957, 0.012753037735819817, 0.01122999470680952, 0.0058797323144972324, 0.001027073827572167, -0.01806734874844551, -0.049652524292469025, 0.026525795459747314, -0.007170724216848612, 0.03833101689815521, 0.0018449743511155248, -0.010896624065935612, -0.019897615537047386, 0.0038435603491961956, -0.06552354991436005, -0.023597368970513344, -0.0163285955786705, -0.04803143069148064, -0.07917211204767227, 0.04421401768922806, -0.05433277785778046, -0.051456645131111145, 0.0027208877727389336, -0.0041671255603432655, 0.015047408640384674, 0.0019495610613375902, -0.0348796583712101, 0.04016128554940224, -0.006981160491704941, 0.010569791309535503, -0.011556827463209629, 0.019113214686512947, -0.03276177495718002, -0.009099041111767292, -0.0016341668087989092, 0.06196760758757591, -0.030513163655996323, 0.04000440239906311, 0.018158862367272377, 0.05867312476038933, -0.041390176862478256, 0.007942050695419312, 0.0012501375749707222, -0.02695721574127674, -0.007837464101612568, -0.006700084079056978, 0.023218242451548576, -0.059562113136053085, 0.0026097644586116076, 0.016341667622327805, -0.07556387782096863, -0.019727662205696106, 0.013740074820816517, -0.012315081432461739, 0.0585162453353405, 0.01575336791574955, 0.04102412238717079, -0.0035886303521692753, -0.06144467368721962, 0.013034114614129066, 0.011308434419333935, 0.0008125894819386303, -0.010752817615866661, 0.03793881833553314, 0.032552603632211685, 0.03629157692193985, -0.04010898992419243, 0.004918842110782862, -0.017792807891964912, 0.01749212108552456, 0.019270095974206924, 0.028159962967038155, -0.0036605338100343943, -0.05496029928326607, 0.021008849143981934, -0.028682896867394447, -0.0055627040565013885, 0.021584074944257736, 0.0072753108106553555, 8.798966882750392e-05, -0.0236235149204731, 0.035481031984090805, -0.014419888146221638, -0.03498424217104912, 0.01840725541114807, -0.007595607545226812, 0.029362710192799568, 0.027767762541770935, -0.0010025613009929657, -0.036422308534383774, 0.0205382090061903, -0.010020711459219456, -0.027140242978930473, -0.04141632467508316, 0.007183797191828489, 0.04047504439949989, 0.008380007930099964, 0.0019185118144378066, -0.02515309676527977, -0.04546905681490898, 0.034905802458524704, 0.04382181912660599, -0.010249494574964046, 0.02099577523767948, 0.024721676483750343, -0.05161352455615997, 0.07561616599559784, -0.027950789779424667, 0.007582534104585648, -0.0045233736746013165, -0.06369328498840332, -0.008549961261451244, 0.052920859307050705, -0.028839776292443275, -0.0337553508579731, -0.014315301552414894, -0.02498314343392849, -0.027558589354157448, -0.022826042026281357, -0.028996655717492104, -0.03861863166093826, -0.00934089720249176, 0.04758693650364876, -0.0053404574282467365, 0.020682014524936676, 0.019217802211642265, -0.018106568604707718, -0.027872350066900253, 0.01844647526741028, -0.061863020062446594, -0.00041119722300209105, -0.017518268898129463, 0.08581336587667465, -0.0020345377270132303, -0.01879945583641529, 0.02525768242776394, 0.058254778385162354, -0.027976935729384422, -0.005003818776458502, 0.007464874070137739, 0.04682868346571922, -0.02302214317023754, -0.016799235716462135, -0.03843560442328453, 0.039298444986343384, -0.0033140904270112514, 0.006082369014620781, -0.02734941616654396, -0.021466415375471115, 0.013262897729873657, -0.01895633526146412, 0.0024479818530380726, 0.02734941616654396, -0.02931041643023491, 0.010530571453273296, -0.0026015935000032187, -0.03195123001933098, 0.014785941690206528, -0.013374021276831627, -0.04855436459183693, -7.190334144979715e-05, -0.02030288800597191, 0.002181612653657794, -0.030853070318698883, 0.026212036609649658, 0.006889647338539362, 0.04787455126643181, -0.003925268538296223, 0.033337004482746124, 0.000412422843510285, 0.007870147004723549, -0.041834671050310135, -0.020054494962096214, 0.00034419639268890023, -0.0038272186648100615, 0.012380448170006275, 0.014328374527394772, 0.01058286428451538, 0.003191527910530567, 0.00255256867967546, -0.0020802943035960197, 0.019610002636909485, 0.045652084052562714, 0.01296874787658453, -0.021401049569249153, 0.017871247604489326, 0.0036213137209415436, -0.023649662733078003, 0.020289815962314606, -0.03166361525654793, -0.02176710218191147, 0.039193857461214066, 0.0461488701403141, 0.036553043872117996, -0.0213879756629467, 0.04395255073904991, 0.005170503631234169, -0.04690712317824364, 0.008451910689473152, -0.03574249520897865, -0.07634827494621277, -0.009138260968029499, 0.0027813520282506943, 0.0034121403004974127, -0.03725900501012802, 0.016890747472643852, 0.0006107698427513242, -0.006706620566546917, 0.011720244772732258, 0.014759794808924198, -0.017361387610435486, 0.032840218394994736, -0.046279605478048325, 0.015478827990591526, 0.018760235980153084, -0.03820028528571129, 0.03234342858195305, 0.05422819405794144, 0.0023711761459708214, -0.03691909834742546, 0.02137490175664425, -0.014707501046359539, 0.07185104489326477, 0.03668377548456192, -0.012243177741765976, 0.005203187000006437, 0.06845197826623917, -0.04941720515489578, 0.003082038601860404, 0.027715468779206276, -0.0005041404510848224, 0.012164738029241562, 0.0014601281145587564, 0.027976935729384422, -0.0042030769400298595, 0.0022518818732351065, -0.015099701471626759, -0.021989349275827408, -0.030957655981183052, -0.014694428071379662, -0.011798684485256672, -0.014511401765048504, 0.056633684784173965, 0.04732547327876091, 0.007811317685991526, -0.029231976717710495, 0.017544414848089218, -0.057261206209659576, -0.03268333524465561, 0.014903601258993149, 0.001101428410038352, 0.035481031984090805, -0.031532883644104004, -0.002266589319333434, -0.007595607545226812, -0.021074214950203896, 0.042226869612932205, -0.02920582890510559, 0.021113434806466103, -0.017296021804213524, -0.005801292136311531, 0.015034334734082222, -0.023257462307810783, 0.010850868187844753, 0.03270948305726051, -0.024773968383669853, -0.0025640076491981745, -0.03242186829447746, -0.011949027888476849, 0.03791267052292824, -0.004676985554397106, 0.025845982134342194, -0.0009322921978309751, 0.008987917564809322, -0.01592332124710083, -0.028107669204473495, -0.0023924203123897314, -0.010824721306562424, -0.010844331234693527, 0.026826482266187668, -0.015112774446606636, 0.00270127784460783, 0.028447575867176056, -0.005853585433214903, -0.00484040193259716, -0.009798464365303516, -0.008680693805217743, 0.010452130809426308, -0.036422308534383774, 0.03563791140913963, 0.015714148059487343, -0.005605192389339209, 0.009216700680553913, 0.04366493597626686, 0.011785611510276794, -0.002606496214866638, -0.000656935095321387, 0.03273563086986542, -0.07807395607233047, 0.004895963706076145, -0.05757496505975723, -0.0005772694130428135, 0.011949027888476849, -0.00962197408080101, 0.0348796583712101, -0.02632969617843628, 0.0422007255256176, 0.027715468779206276, 0.02527075633406639, 0.05930064618587494, 0.00979192741215229, -0.0020851967856287956, -0.01438066828995943, -0.02323131635785103, 0.017126068472862244, 0.011007747612893581, -0.008255810476839542, 0.03048701584339142, -0.008203517645597458, 0.005258748773485422, -0.04282824322581291, 0.017792807891964912, -0.00512147881090641, -0.009955344721674919, -0.023270536214113235, -0.016407035291194916, 0.017518268898129463, 0.02959802933037281, -0.09444177150726318, 0.018864821642637253, 0.016132494434714317, 0.013119091279804707, 0.024956995621323586, 0.035141125321388245, -0.051456645131111145, -0.0032291137613356113, -0.028342990204691887, 0.022603794932365417, 0.03613469749689102, -0.013936175033450127, 0.0032340162433683872, -0.004402445629239082, 0.0388278029859066, 0.011857514269649982, 0.012099371291697025, -0.008210054598748684, -0.013302117586135864, -0.0540190190076828, -0.009138260968029499, 0.017923541367053986, 0.04946949705481529, 0.027950789779424667, 0.005811097100377083, 0.0008889867458492517, 0.014602914452552795, 0.019662294536828995, -0.06578502058982849, 0.011622194200754166, -0.013962320983409882, -0.004111563786864281, 0.0036736070178449154, -0.03901083022356033, -0.03082692250609398, 0.06060798093676567, -0.03668377548456192, -0.013857734389603138, -0.02598978951573372, 4.407143569551408e-05, -0.034356724470853806, -0.0029627445619553328, 0.015348094515502453, 0.01626322790980339, -0.04497227072715759, -0.065314382314682, -0.04946949705481529, -0.01614556834101677, 0.0019070727284997702, -0.008072784170508385, 0.0026375453453511, 0.012282397598028183, 0.016250155866146088, -0.02493084967136383, -0.0051084053702652454, 0.006085637491196394, -0.015857955440878868, -0.016224008053541183, 0.004029855597764254, 0.037049829959869385, -0.02876133657991886, -0.007124967407435179, 0.008432300761342049, -0.03409525752067566, 0.030983803793787956, -0.00990305095911026, 0.007569460663944483, 0.03048701584339142, 0.025401489809155464, -0.011877124197781086, 0.04719473794102669, 0.008863721042871475, 0.04450163245201111, -0.00902713742107153, 0.02127031609416008, -0.00683735404163599, 0.04732547327876091, -0.018655648455023766, -0.026421209797263145, 0.023754248395562172, 0.021466415375471115, -0.005601923912763596, 0.03247416391968727, 0.018472621217370033, -0.01614556834101677, -0.013818514533340931, -0.051744259893894196, -0.012354301288723946, 0.017008408904075623, 0.003922000527381897, -0.028839776292443275, 0.014602914452552795, 0.006500715855509043, 0.05103829875588417, 0.01682538166642189, -0.07247857004404068, -0.0023319560568779707, -0.030748482793569565, 0.01168102491647005, 0.03234342858195305, 0.022982921451330185, -0.020603574812412262, 0.0016897284658625722, 0.013243287801742554, -0.01817193441092968, -0.018093494698405266, 0.006765450816601515, 0.02283911593258381, 0.0055561671033501625, -0.016550840809941292, -0.00019058470206800848, 0.002838547807186842, 0.023819616064429283, 0.0035624837037175894, -0.009994564577937126, 0.0225122831761837, 0.0015900443540886045, 0.028264548629522324, -0.011184237897396088, 0.017635928466916084, -0.025336122140288353, -0.02414644882082939, -0.005683632101863623, -0.012556937523186207, -0.012485034763813019, -0.03061774931848049, -0.003614777000620961, 0.006069295573979616, 0.021139582619071007, 0.006013733800500631, 0.035088829696178436, -0.002276394283398986, -0.030120963230729103, -0.0015320314560085535, -0.06275200843811035, -0.03861863166093826, -0.0016684842994436622, 0.03477507084608078, -0.0036899487022310495, -0.004621423780918121, 0.03231728449463844, -0.018485695123672485, -0.004964598920196295, 0.04392640292644501, -0.003611508756875992, -0.024656308814883232, -0.032892510294914246, 0.0015924955951049924, 0.005752267315983772, 0.03571635112166405, 0.020564354956150055, -0.00655627716332674, -0.045652084052562714, -0.027715468779206276, 0.026931069791316986, 0.011563364416360855, -0.009190554730594158, 0.02014600858092308, 0.05153508484363556, 0.00664125382900238, -0.01711299456655979, 0.010968527756631374, 0.03686680272221565, 0.0163285955786705, -0.0028581577353179455, 0.022080862894654274, 0.015491901896893978, 0.0002986439794767648, 0.036265429109334946, -0.02391112968325615, 0.02380654215812683, -0.025950569659471512, 0.03033013641834259, 0.013145238161087036, -0.02993793599307537, 0.0332062691450119, 0.023309756070375443, 0.027950789779424667, -0.018524914979934692, 0.030565455555915833, -0.022355401888489723, 0.01698226109147072, -0.018943261355161667, 0.03472277522087097, 0.009863831102848053, 0.007151114288717508, 0.011465314775705338, 0.01598868891596794, -0.015008187852799892, 0.003077136119827628, 0.022969849407672882, -0.03399066999554634, 0.009700414724647999, -0.010164517909288406, 0.0032258452847599983, -0.0007100455113686621, 0.026656528934836388, 0.018917115405201912, 0.009314751252532005, -0.0007513082236982882, 0.0009886709740385413, 0.015544194728136063, 0.003487312002107501, -0.0014552255161106586, -0.015021261759102345, -0.028447575867176056, 0.008589181117713451, -0.01277264766395092, -0.0032454554457217455, 0.004278248641639948, 0.03527185693383217, 0.00641247071325779, -0.011458777822554111, 0.011530681513249874, -0.02745400369167328, 0.005343725439161062, -0.00976578053086996, -0.0320558175444603, 0.01387080829590559, 0.03391223028302193, -0.05268554016947746, -0.06437309831380844, -0.009994564577937126, -0.019257022067904472, 0.02666960284113884, 0.006307884119451046, 0.04361264407634735, 0.013923101127147675, 0.00649744737893343, 0.01423686183989048, 0.01648547500371933, -0.0014993480872362852, -0.03033013641834259, 0.03916770964860916, -0.03195123001933098, 0.004006977193057537, 0.0025117143522948027, 0.014615988358855247, -0.004134442191570997, 0.046331897377967834, 0.014968967996537685, -0.04170393943786621, -0.0017747051315382123, -0.012844551354646683, -0.018498769029974937, -0.0026914728805422783, 0.01805427484214306, -0.020747382193803787, 0.03417369723320007, -0.007523704320192337, -0.0031849911902099848, -0.03111453726887703, 0.00866108387708664, 0.004222686868160963, -0.03867092356085777, -0.01743982918560505, -0.017871247604489326, -0.018877895548939705, 0.035193417221307755, 0.004990745335817337, 0.0026195694226771593, 0.0004575667262542993, 0.003513458650559187, -0.0071315038949251175, 0.03385993838310242, -0.004804450552910566, 0.022878335788846016, -0.005719583947211504, -0.007628290913999081, 0.010929307900369167, 0.019387755542993546, -0.011360728181898594, 0.05059380456805229, -0.02227696217596531, 0.012047077529132366, -0.041834671050310135, -0.003928537014871836, 0.008406153880059719, 0.008602254092693329, 0.026852630078792572, 0.0025035436265170574, 0.04421401768922806, 0.028630603104829788, 0.00445800693705678, -0.05320847034454346, 0.016916895285248756, -0.01069398783147335, -0.011432630941271782, 0.02312672883272171, -0.029415002092719078, 0.01592332124710083, -0.010425984859466553, 0.023649662733078003, 0.020459769293665886, -0.010203737765550613, -0.002761741867288947, 0.026421209797263145, -0.04235760495066643, 0.0032470894511789083, 0.014707501046359539, 0.00641247071325779, -0.004441665485501289, -0.045547496527433395, 0.004944988992065191, -0.03396452218294144, 0.003122892929241061, 2.6146668460569344e-05, 0.040318164974451065, -0.020747382193803787, 0.0013865905348211527, 0.012275861576199532, -0.014668281190097332, -0.01018412783741951, 0.007066137157380581, -0.0036899487022310495, -0.03391223028302193, -0.006968087516725063, 0.03043472394347191, -0.04021357744932175, 0.0354548841714859, -0.017465975135564804, -0.0022126617841422558, 0.08842803537845612, 0.012419668026268482, -0.03814798966050148, -0.021074214950203896, -0.02346663549542427, -0.008138150908052921, -0.02176710218191147, 0.015439608134329319, 0.024486355483531952, -0.018668722361326218, 0.004010245203971863, -0.07525011152029037, -0.029624177142977715, 0.017152214422822, 0.00973309762775898, -0.007026917301118374, 0.04199155047535896, 0.002825474366545677, 0.02431640215218067, 0.011308434419333935, 0.012419668026268482, 0.008203517645597458, 0.013073334470391273, -0.031768202781677246, -0.01142609491944313, -0.022381549701094627, 0.01086394116282463, 0.010556717403233051, 0.04424016550183296, -0.01254386454820633, 0.029388856142759323, 0.01262884121388197, -0.017936615273356438, 0.00883103720843792, -0.0258852019906044, 0.02677418850362301, 0.02486548200249672, 0.010811647400259972, 0.003948146943002939, 0.031925082206726074, -0.027950789779424667, 0.037389736622571945, -0.021427195519208908, 0.027140242978930473, 0.0028483527712523937, 0.027087949216365814, -0.017296021804213524, 0.0255975890904665, -0.006592229008674622, 0.03174205496907234, -0.018721016123890877, 0.027035655453801155, 0.008648010902106762, -0.012360838241875172, -0.03723285719752312, 0.013125628232955933, -0.00045103003503754735, -0.013243287801742554, 0.02532305009663105, -0.0011234896956011653, 0.036160845309495926, 0.008902940899133682, 0.02656501531600952, 0.0194139014929533, 0.015897175297141075, 0.0073537505231797695, 0.021061142906546593, 0.014733647927641869, 0.009216700680553913, -0.022080862894654274, -0.009746170602738857, 0.0011504534631967545, -0.02431640215218067, 0.03297095000743866, 0.014838234521448612, 0.02205471508204937, 0.03247416391968727, 0.010961990803480148, -0.017805881798267365, -0.06845197826623917, -0.022263888269662857, 0.02374117635190487, -0.029964083805680275, 0.0607648603618145, 0.030460869893431664, -0.0014094689395278692, 0.008092394098639488, 0.049208030104637146, 0.01985839568078518, -0.03942917659878731, 0.013517827726900578, -0.024564795196056366, 0.0013342972379177809, -0.009458557702600956, -0.002416932722553611, 0.004503763746470213, 0.001273833098821342, -0.005784950684756041, -0.004046197049319744, 0.0004306029586587101, 0.04528602957725525, 0.016851527616381645, 0.010929307900369167, -0.031820498406887054, -0.02070816233754158, 0.015073554590344429, -0.04233145713806152, 0.022760676220059395, -0.022355401888489723, 0.024460209533572197, 0.008170833811163902, -0.03184664249420166, -0.02857830934226513, 0.04023972526192665, -0.017988909035921097, -0.029231976717710495, -0.014838234521448612, 0.022067788988351822, -0.010648231022059917, -0.02915353700518608, -0.027270976454019547, 0.006461495533585548, 0.009184017777442932, 0.028264548629522324, 0.026146668940782547, -0.008072784170508385, 0.014106128364801407, 0.02498314343392849, 0.01080511137843132, 0.03166361525654793, 0.0038958536460995674, -0.0006160808843560517, 0.0062850057147443295, 0.014524474740028381, -0.002547666197642684, 0.01687767542898655, 0.027663176879286766, 0.04361264407634735, -0.03673607110977173, -0.058882299810647964, 0.004814255516976118, -0.016420109197497368, 0.00958929117769003, 0.008850647136569023, 0.05464654043316841, -0.021479489281773567, 0.032552603632211685, -0.00992919784039259, 0.02081274800002575, -0.047743819653987885, -0.0030624286737293005, 0.004046197049319744, -0.03242186829447746, -0.029075095430016518, 0.005382945761084557, 0.016171714290976524, -0.019440049305558205, 0.011589511297643185, 0.021061142906546593, -0.03409525752067566, 0.05553552508354187, 0.019505415111780167, -0.012112444266676903, 0.00343175046145916, 0.010831257328391075, -0.006994233932346106, -0.023270536214113235, 0.021191876381635666, 0.035820938646793365, 0.026303550228476524, 0.01698226109147072, 0.008713377639651299, -0.015348094515502453, 0.02328360825777054, -0.00608890550211072, 0.012700744904577732, 0.02784620225429535, 0.00934089720249176, 0.014524474740028381, -0.009072894230484962, -0.005245675332844257, 0.00519011402502656, 0.012537327595055103, -0.012275861576199532, 0.0017779734916985035, -0.02189783565700054, 0.019610002636909485, 0.013426315039396286, 0.0015156897716224194, 0.02239462174475193, -0.007392970845103264, 0.020185228437185287, 0.002132587833330035, -0.030905364081263542, -0.004614887293428183, -0.003997172228991985, -0.017740515992045403, 0.025074655190110207, 0.011321507394313812, 0.013452460989356041, 0.010027247481048107, -0.025479929521679878, 0.04180852323770523, -0.001511604292318225, 0.025296902284026146, -0.019505415111780167, 0.006151003763079643, 0.02578061632812023, 0.01563570834696293, 0.022198522463440895, -0.038017258048057556, -0.017858175560832024, 0.005262017250061035, -0.027872350066900253, 0.019845321774482727, 0.04868509992957115, -0.03354617580771446, 0.015714148059487343, -4.7595109208486974e-05, 0.020498989149928093, 0.011968637816607952, -0.013740074820816517, 0.007981270551681519, -0.01072013471275568, -0.013439388014376163, -0.009465094655752182, 0.026316622272133827, -0.008360397070646286, 0.018093494698405266, 0.022525355219841003, 0.01732216775417328, 0.006392860785126686, -0.019675368443131447, -0.034356724470853806, 2.8955393645446748e-05, 0.002023098524659872, -0.009641584008932114, -0.010759354569017887, -0.0450245663523674, 0.017858175560832024, -0.012315081432461739, -0.015099701471626759, 0.04293283075094223, 0.0018858285620808601, 0.015557268634438515, 0.009190554730594158, 0.01626322790980339, 0.0211003627628088, -0.03741588443517685, 0.0006957465084269643, -0.011001210659742355, 0.008131613954901695, -0.014001541770994663, 0.017073774710297585, -0.021361829712986946, 0.0032470894511789083, -0.03399066999554634, -0.014511401765048504, -0.010471740737557411, 0.006079100538045168, 0.012112444266676903, -0.01958385482430458, 0.006974624004215002, -0.01907399483025074, 0.02341434173285961, -0.011478387750685215, 0.012367374263703823, 0.011582974344491959, 0.00694847758859396, 0.03861863166093826, -1.4835170986771118e-05, -0.017923541367053986, -0.009190554730594158, -0.04756079241633415, -0.03634386882185936, -0.003967756871134043, 0.005262017250061035, 0.03278792276978493, 0.031532883644104004, -0.0011831368319690228, -0.016302447766065598, 0.008203517645597458, -0.003908927086740732, 0.0467240996658802, -0.030173256993293762, 0.00013543157547246665, -0.029781056568026543, 0.032892510294914246, 0.0003123301430605352, 0.03461819142103195, -0.008170833811163902, -0.0029382319189608097, 0.04042275249958038, 0.00235646846704185, 0.033101681619882584, -0.022603794932365417, 0.044135577976703644, 0.016459329053759575, 0.01009915117174387, 0.00694847758859396, 0.015557268634438515, -0.03223884478211403, -0.009746170602738857, -0.032657191157341, 0.011602584272623062, 0.008451910689473152, 0.003961220383644104, 0.014354521408677101, 0.012112444266676903, -0.007942050695419312, 0.034409016370773315, -0.015465755015611649, 0.004395908676087856, 0.021571002900600433, -0.025231536477804184, 0.024512503296136856, -0.039638351649045944, -0.0031996986363083124, 0.004144247155636549, 0.010680914856493473, 0.012243177741765976, -0.008295031264424324, -0.034409016370773315, 0.03168976306915283, 0.03116682916879654, 0.007026917301118374, 0.028003083541989326, 0.014838234521448612, -0.018655648455023766, -0.02002834901213646, -0.010059931315481663, -0.03388608247041702, -0.012596158310770988, -0.004088685382157564, -0.0012860893039032817, 0.025309976190328598, 0.01328250765800476, 0.014132274314761162, 0.00261630117893219, -0.021976275369524956, 0.0315067358314991, 0.010981600731611252, -0.006124857347458601, 0.0781785398721695, 0.005853585433214903, 0.003176820231601596, -0.005889537278562784, -0.0038533653132617474, -0.015792587772011757, -0.04073651134967804, 0.006850427482277155, 0.0015557268634438515, 0.037389736622571945, -0.015021261759102345, 0.002918621990829706, -0.01570107415318489, -0.0202505961060524, 0.025571443140506744, 0.014642135240137577, 0.007850537076592445, -0.008007417432963848, -0.0007676498498767614, -0.03961220383644104, 0.01131497137248516, -0.015060481615364552, 0.010687450878322124, -0.007249163929373026, -0.03854019194841385, -0.002300906926393509, -0.011543754488229752, -0.0037193638272583485, 0.005144357215613127, -0.0003153941943310201, 0.041050270199775696, 0.02261686883866787, -0.009445484727621078, 0.010648231022059917, 0.013125628232955933, -0.027767762541770935, -0.043011270463466644, -0.024970069527626038, 0.04057963192462921, -0.0019087068503722548, 0.030147109180688858, 0.005569240543991327, -0.03286636248230934, 0.002380981110036373, -0.014615988358855247, 0.008935623802244663, 0.004078880418092012, -0.022041643038392067, 0.0063209570944309235, -0.013753147795796394, -0.04748235270380974, 0.01457676850259304, 4.2743675294332206e-05, 0.005271822214126587, 0.007654437329620123, -0.006108515430241823, 0.01438066828995943, -0.016054054722189903, 0.02115265466272831, -0.0011071480112150311, 0.028630603104829788, 0.0026489845477044582, -0.0011904905550181866, -0.0020378059707581997, 0.010903161019086838, -0.022773748263716698, -0.023270536214113235, -0.005543094128370285, 0.04518144577741623, -0.016054054722189903, -0.018250375986099243, 0.009040211327373981, 0.02527075633406639, -0.02750629559159279, 0.024852409958839417, 0.002706180326640606, 0.00069125258596614, 0.01692996919155121, -0.018943261355161667, -0.020054494962096214, -0.012903381139039993, 0.018995555117726326, 0.023989569395780563, 0.030879216268658638, -0.04803143069148064, 0.02649964950978756, -0.028735188767313957, 0.00934089720249176, 0.01355704851448536, 0.03270948305726051, -0.010641694068908691, 0.014550621621310711, 0.006056222133338451, -0.01828959584236145, 0.00975924450904131, 0.01766207441687584, 0.002518251072615385, -0.044370897114276886, -0.010432520881295204, 0.014733647927641869, 0.0019446585793048143, -0.035141125321388245, -0.03048701584339142, 0.027035655453801155, -0.013596268370747566, -0.021845541894435883, 0.002586886053904891, 0.028447575867176056, 0.018642574548721313, 0.008523814380168915, -0.025218462571501732, -0.0078047807328403, -0.00782439112663269, -0.035088829696178436, 0.007955124601721764, 0.010510961525142193, 0.04248833656311035, -0.010105688124895096, 0.04337732493877411, -0.04248833656311035, 0.03370305523276329, 0.018185008317232132, 0.024787042289972305, 0.013517827726900578, 0.026800336316227913, -0.017296021804213524, -0.003925268538296223, 0.015518047846853733, 0.02059050276875496, 0.025061583146452904, -0.0004375481803435832, 0.04863280430436134, 0.05501259118318558, -0.008471520617604256, 0.04157320410013199, 0.021466415375471115, -0.007039990741759539, 0.017178362235426903, 0.032212696969509125, -0.0004522556846495718, -0.029284270480275154, 0.027820056304335594, 0.0506461001932621, -0.010798574425280094, -0.006255590822547674, 0.028316842392086983, -0.00649744737893343, 0.003823950421065092, -0.03464433550834656, 0.009353971108794212, -0.0002126459585269913, 0.012511181645095348, -0.011151554062962532, -0.007883220911026001, 0.015727221965789795, -0.01704762876033783, 0.0061444672755897045, -0.02341434173285961, 0.03976908326148987, -0.009896514005959034, -0.004641033709049225, 0.007510630879551172, -0.04957408457994461, -0.015857955440878868, 0.031585175544023514, -0.0077198040671646595, -0.015622635371983051, 0.016838455572724342, 0.004422055557370186, -0.0012199055636301637, -0.024237962439656258, -0.014432961121201515, 0.01355704851448536, 0.021126508712768555, -0.02453864924609661, -0.02098270133137703, -0.003876243717968464, 0.0016227277228608727, 0.017649002373218536, 0.01980610191822052, 0.03725900501012802, 0.0013890417758375406, 8.91131567186676e-05, -0.0037585836835205555, -0.007575997617095709, -0.042174577713012695, 0.013452460989356041, -0.016250155866146088, -0.001408651820383966, 0.04186081886291504, 0.045103006064891815, -0.0039350735023617744, 0.008765670470893383, 0.02401571534574032, -0.0048894272185862064, -0.01615864224731922, 0.014498327858746052, 0.05046307295560837, -0.03741588443517685, -0.017649002373218536, -0.0002935372176580131, 0.0011341117788106203, 0.017256801947951317, 0.020224448293447495, 0.017570562660694122, -0.00251008034683764, -0.03325856477022171, -0.020551282912492752, 0.00853035133332014, -0.0060987104661762714, 0.03414754942059517, -0.01316484808921814, -0.031192976981401443, -0.0010834526037797332, 0.02329668216407299, -0.05192728713154793, 0.03686680272221565, 0.05605845898389816, -0.015792587772011757, -0.044867683202028275, -0.020185228437185287, -0.026368916034698486, -0.020237522199749947, -0.05480341985821724, 0.003307553706690669, -0.015008187852799892, 0.005239138845354319, -0.008458447642624378, -0.01117116492241621, -0.03793881833553314, 0.028552163392305374, -0.03365076333284378, 0.019113214686512947, 0.012034004554152489, -0.01615864224731922, -0.0006454958929680288, -0.005069185514003038, 0.014864381402730942, 0.001996951876208186, -0.026251256465911865, 0.0019070727284997702, -0.010282177478075027, 0.002096635987982154, 0.013740074820816517, 0.004588740412145853, -0.001985512673854828, -0.0024659577757120132, -0.00023225595941767097, -0.018015054985880852, -0.015073554590344429, 0.004539715591818094, -0.03610854968428612, -0.022891409695148468, -0.01772744208574295, -0.002987256972119212, 0.009438947774469852, 0.007608680985867977, 0.008347324095666409, -0.022878335788846016, -0.036317724734544754, 0.0023679076693952084, -0.02452557533979416, -0.0012223568046465516, 0.0008726450614631176, -0.008072784170508385, 0.02087811566889286, -0.01114501804113388, -0.017008408904075623, 0.015792587772011757, 0.025166168808937073, -0.00479791359975934, 0.0026408135890960693, 0.012530791573226452, -0.0208258219063282, -0.041207149624824524, -0.007791707292199135, -0.004676985554397106, -0.005762072280049324, 0.007602144032716751, 0.02031596191227436, -0.05182269960641861, 0.0008530350751243532, 0.002846718532964587, -0.006935404147952795, -0.02002834901213646, -0.015178141184151173, -0.004598545376211405, 0.031088389456272125, 0.0038729754742234945, -0.011661414057016373, 0.036657631397247314, -0.0004257004475221038, 0.030565455555915833, -0.021571002900600433, 0.008013954386115074, -0.02340126968920231, -0.02385883592069149, -0.053652964532375336, 0.011001210659742355, -0.003683411981910467, 0.003176820231601596, 0.0043436153791844845, 0.009033674374222755, -0.02121802233159542, 0.01302757766097784, -0.0032765045762062073, 0.02093040943145752, 0.0059222206473350525, -0.001043415511958301, -0.007281847298145294, 0.002483933698385954, 0.005510410759598017, -0.017400609329342842, -0.016616208478808403, -0.008772207424044609, -0.003967756871134043, -0.002215930260717869, -0.011334581300616264, 0.003196430392563343, 0.007785170804709196, 0.00265878951177001, 0.020329035818576813, -0.0009085967321880162, -0.0005797207122668624, 0.025309976190328598, -0.0021195143926888704, 0.024381769821047783, -0.024970069527626038, 0.034016817808151245, 0.041782379150390625, 0.00885718408972025, -0.014799014665186405, -0.009550071321427822, 0.0006981978076510131, -0.012739964760839939, 0.003850097069516778, 0.016550840809941292, -0.018028128892183304, 0.010857404209673405, -0.02988564223051071, 0.014341448433697224, 0.005137820728123188, -0.005474458914250135, 0.03527185693383217, -0.010249494574964046, 0.051012150943279266, -0.039821378886699677, 0.030199402943253517, 0.02649964950978756, 0.014145348221063614, 0.014367594383656979, 0.046227309852838516, -0.01372700184583664, -0.02808152325451374, 0.010687450878322124, 0.021008849143981934, 0.044815391302108765, 0.015465755015611649, 0.02368888258934021, -0.006994233932346106, 0.0013228580355644226, 0.002248613629490137, -0.015295801684260368, 0.007785170804709196, 0.01631552167236805, -0.0011913076741620898, 0.02093040943145752, 0.03409525752067566, -0.013047187589108944, 0.024891629815101624, -0.004843670409172773, -0.006075832061469555, -0.005314310546964407, -0.020329035818576813, 0.03574249520897865, -0.036500751972198486, -0.010471740737557411, -0.009635047987103462, -0.036945242434740067, -0.017962761223316193, -0.005209723953157663, -0.017753588035702705, -0.019649222493171692, -0.027715468779206276, 0.03584708273410797, -0.009556607343256474, 0.041390176862478256, 0.018106568604707718, -0.007098820526152849], [-0.006171245593577623, -0.011246872134506702, 0.0158082265406847, 0.025691164657473564, -0.030252519994974136, -0.018044186756014824, 0.039710626006126404, 0.026093637570738792, -0.03521634638309479, -0.018368400633335114, -0.014891484752297401, 0.006864393129944801, 0.0179547481238842, -0.04360119253396988, 0.0011480250395834446, -0.008317765779793262, 0.0001545955747133121, 0.030498474836349487, 0.01846901886165142, 0.024014195427298546, 0.016792049631476402, -0.001586133148521185, 0.008468693122267723, -0.011017685756087303, 0.015137439593672752, -0.03684859722852707, -0.027368133887648582, 0.021845316514372826, 0.04447321593761444, -0.04051557183265686, 0.01122451201081276, -0.024416668340563774, 0.02130868472158909, -0.0287991464138031, 0.021599359810352325, -0.025557007640600204, 0.062249086797237396, -0.031012745574116707, 0.036401405930519104, 0.019788233563303947, -0.04433906078338623, 0.022840317338705063, 0.01683676801621914, -0.04087332263588905, 0.00867551937699318, -0.00711034843698144, 0.04319871962070465, -0.020112447440624237, -0.0359094962477684, 0.004938673693686724, 0.03653556481003761, 0.017932388931512833, -0.04623962566256523, -0.05241087079048157, -0.01630013808608055, -0.04181242734193802, 0.01990003138780594, 0.010464286431670189, 0.043668270111083984, -0.024640263989567757, 0.036021292209625244, -0.06117582693696022, 0.03997894003987312, 0.022203069180250168, -0.015484013594686985, 0.03845848888158798, -0.0007162055117078125, 0.0093295369297266, -0.07611203193664551, 0.00980467814952135, -0.0038430539425462484, 0.008546952158212662, 0.03481387719511986, -0.009346307255327702, 0.033718254417181015, 0.05402075871825218, -0.020794415846467018, 0.009866167791187763, 0.010413977317512035, -0.036513205617666245, -0.006959421094506979, 0.017228061333298683, -0.017339859157800674, -0.005036496557295322, 0.024014195427298546, -0.04447321593761444, -0.030520835891366005, -0.0007413600105792284, -0.036490846425294876, 0.06766010820865631, -0.028888585045933723, -0.012890301644802094, -0.025266332551836967, 0.06081807613372803, -0.01377350464463234, -0.056525032967329025, 0.00703767966479063, -0.045166365802288055, -0.013594628311693668, 0.00685321306809783, -0.028732068836688995, -0.014936203137040138, 0.016635531559586525, 0.060594476759433746, 0.019665256142616272, -0.02674206532537937, 0.031549375504255295, -0.030185440555214882, 0.010195971466600895, -0.011772322468459606, -0.05554121360182762, 0.0012213924201205373, -0.02868734858930111, 0.048117827624082565, 0.007132708095014095, -0.007456921972334385, 0.037765342742204666, -0.014064179733395576, 0.009620212018489838, -0.014444292522966862, -0.0022764853201806545, -0.004139318596571684, 0.02370116114616394, -0.020895034074783325, -0.0015344265848398209, -0.038167811930179596, -0.000814727449323982, 0.05607784166932106, -0.07615675032138824, -0.03150465711951256, 0.04789423197507858, -0.028978023678064346, -0.017373397946357727, 0.017172161489725113, 0.021822955459356308, -0.0005009945016354322, -0.04129815474152565, -0.011761141940951347, -0.0032141904812306166, -0.02296329475939274, -0.000760225928388536, -0.018044186756014824, 0.04673153534531593, -0.006120936945080757, -0.031146904453635216, 0.0009209354757331312, 0.01072701159864664, 0.011392208747565746, 0.029402855783700943, -0.0076469783671200275, 0.005190218798816204, -0.0012730989838019013, 0.043131642043590546, -0.035752978175878525, -0.0003549584362190217, 0.05093513801693916, -0.0006016126135364175, 0.043936587870121, 0.021957114338874817, 0.04677625373005867, -0.036893315613269806, -0.013527549803256989, -0.039039839059114456, 0.0068364436738193035, 0.029850047081708908, -0.009642571210861206, -0.024439027532935143, 0.0120406374335289, -0.03763118386268616, -0.0405602902173996, -0.007138297893106937, 0.017507556825876236, -0.06260684132575989, 0.06698931753635406, -0.05187423899769783, -0.015685249119997025, 0.015618170611560345, 0.02164408005774021, -0.03662500157952309, 0.009933246299624443, 0.0027432418428361416, -0.022549642249941826, -0.07052213698625565, -0.002430207561701536, 0.025311050936579704, -0.006685516331344843, 0.006987370550632477, -0.02625015377998352, -0.02942521497607231, 0.03425488620996475, -0.017664073035120964, -0.006590487901121378, -0.0029682351741939783, 0.05871627479791641, -0.006679926533252001, 0.00984380766749382, -0.05621200054883957, -0.031817689538002014, -0.01938576065003872, -0.007121528033167124, 0.02893330529332161, -0.024506106972694397, 0.007462511770427227, 0.05643559619784355, -0.027815325185656548, -0.03340522199869156, 0.007082398980855942, 0.00732835428789258, 0.04152175039052963, -0.0019047572277486324, 0.009871757589280605, -0.0101400725543499, -0.009458105079829693, 0.03986714035272598, 0.04447321593761444, -0.007149477489292622, -0.025713523849844933, 0.037005115300416946, -0.03557410091161728, 0.024774421006441116, -0.0025280306581407785, 0.03150465711951256, -0.014679068699479103, 0.04317636042833328, -0.004986187908798456, 0.0656924620270729, -0.002878796774893999, -0.006473100278526545, 0.0561225600540638, -0.06412729620933533, 0.011364259757101536, 0.02248256467282772, -0.023522283881902695, -0.014958563260734081, 0.01797710731625557, 0.01124128233641386, -0.0021590974647551775, -0.04232669621706009, 0.030654992908239365, 0.008658749982714653, -0.01789884828031063, 0.015450473874807358, -0.0073395343497395515, 0.00659607769921422, 0.0425279326736927, -0.027323413640260696, 0.01010094303637743, 0.03403129056096077, 0.02237076684832573, -0.05254502594470978, -0.026674985885620117, 0.0018362810369580984, 0.017664073035120964, -0.08478754758834839, -0.016199519857764244, -0.020358402281999588, 0.0080103212967515, -0.017105083912611008, 0.007490461226552725, -0.006154476199299097, 0.05004075542092323, -0.027949482202529907, -0.018066545948386192, 0.014813225716352463, -0.07530708611011505, -0.0046983081847429276, -0.007540770340710878, -0.009961195290088654, -0.03555174171924591, 0.01068229228258133, -0.04259501025080681, -0.036379046738147736, -0.016333676874637604, -0.03143757954239845, -0.018960928544402122, 0.018916210159659386, -0.03959882631897926, -0.026831503957509995, -9.467887139180675e-05, 0.003032518783584237, -0.05889514833688736, 0.009139481000602245, -0.009933246299624443, -0.056927505880594254, 0.013046818785369396, -0.0033874772489070892, -0.01588648557662964, -0.018379580229520798, -0.0005044881836511195, 0.025780603289604187, 0.07195314764976501, -0.061623018234968185, -0.013326313346624374, 0.027614088729023933, 0.047983672469854355, -0.01713862270116806, -0.007568719796836376, -0.06117582693696022, 0.014410753734409809, 0.01974351517856121, 0.03365117684006691, -0.008692288771271706, 0.05482570454478264, 0.007462511770427227, -0.05317109450697899, 0.021923573687672615, 0.02790476381778717, 0.02025778591632843, 0.04127579554915428, 0.009379846043884754, -0.016825588420033455, 0.02282913774251938, 0.027122177183628082, 0.0015875305980443954, -0.0008978771511465311, 0.011727603152394295, 0.006858802866190672, 0.03125870227813721, 0.020805595442652702, 0.026026558130979538, 0.03709455206990242, 0.01426541619002819, 0.026071278378367424, -0.013583448715507984, 0.0022904600482434034, 0.004538996145129204, 0.05853739753365517, 0.000521607231348753, -0.01735103875398636, 0.011626984924077988, -0.03497039154171944, -0.03935287147760391, 0.019888851791620255, 0.004072239622473717, -0.020023008808493614, -0.003175061196088791, 0.007479281630367041, -0.011649344116449356, 0.043265800923109055, -0.04726816341280937, 0.06797314435243607, -0.015461653470993042, -0.025445209816098213, -0.03597657382488251, 0.011504007503390312, 0.030900947749614716, 0.04026961326599121, 0.054602108895778656, -0.029648810625076294, 0.002310024807229638, 0.010671112686395645, -0.011705243028700352, -0.020425481721758842, -0.0026971250772476196, -0.0068755727261304855, -0.00841838400810957, 0.013002099469304085, 0.009100351482629776, -0.011604624800384045, 0.02356700412929058, -0.01843547821044922, -0.0005628326907753944, 0.05540705472230911, 0.04241613671183586, 0.009743189439177513, -0.01061521377414465, -0.02754700928926468, 0.032577916979789734, -0.0033762974198907614, -0.005752003751695156, 0.02253846265375614, -0.03233196213841438, -0.0326002761721611, -0.05317109450697899, -0.0126219866797328, -0.005947649944573641, 0.030766790732741356, 0.030677352100610733, -0.04407074302434921, -0.011408979073166847, -0.003993981052190065, -0.012286592274904251, 0.00773641699925065, 0.003015749156475067, 0.045971307903528214, -0.015137439593672752, -0.062383245676755905, 0.005824672058224678, -0.05124817043542862, 0.05630143731832504, 0.021755877882242203, 0.005807902663946152, -0.041857145726680756, 0.022214248776435852, -0.03389713168144226, -0.005349530838429928, -0.033718254417181015, 0.0011480250395834446, -0.01649019494652748, -0.023857679218053818, -0.002578339772298932, -0.04449557512998581, -0.004947058390825987, -0.006719055585563183, -0.01930750347673893, 0.004010750912129879, 0.030006565153598785, -0.0443614199757576, -0.01491384394466877, -0.006881162524223328, 0.017205702140927315, -0.04664209857583046, 0.03655792400240898, -0.0022247787564992905, 0.03275679424405098, 0.00765256816521287, -0.026339592412114143, 0.012577267363667488, -0.06063919886946678, -0.05151648819446564, 0.056659191846847534, 0.03888332098722458, -0.0030995975248515606, -0.01689266785979271, -0.009558723308146, 0.04802839085459709, 0.011381029151380062, -0.044160183519124985, 0.003289654152467847, 0.0024148353841155767, 0.030789149925112724, -0.0012661116197705269, -0.023231610655784607, 0.071684829890728, -0.02587004192173481, -0.04655265808105469, 0.028709707781672478, 0.014556090347468853, 0.009793498553335667, -0.07369719445705414, -0.018323680385947227, -0.022080091759562492, -0.00940779596567154, 0.0059085204266011715, -0.028821507468819618, 0.0013248054310679436, -0.017529916018247604, 0.022270148620009422, -0.0002286617091158405, -0.021923573687672615, 0.015394574962556362, 0.014533731155097485, -0.08805204927921295, 0.04134287312626839, 0.012197154574096203, 0.007501641288399696, -0.024282511323690414, -0.021409302949905396, 0.030677352100610733, -0.044540297240018845, -0.01808890514075756, 0.029358137398958206, 0.0690016821026802, 0.021789416670799255, 0.009603442624211311, -0.0025392104871571064, -0.03577533736824989, 0.011548725888133049, -0.015528732910752296, -0.004533405881375074, 0.001420532469637692, -0.02575824409723282, -0.009961195290088654, 0.011123893782496452, 0.005648590624332428, -0.056659191846847534, -0.0017426502890884876, -0.009178610518574715, -0.040605008602142334, -0.033941850066185, -0.04431670159101486, 0.030498474836349487, -0.017149802297353745, -0.027435211464762688, 0.027479931712150574, -0.028843866661190987, 0.036021292209625244, 0.04420490190386772, -0.02484150044620037, -0.011984738521277905, -0.04820726811885834, 0.024416668340563774, 0.03454555943608284, -0.008463103324174881, -0.007524000946432352, -0.01126923132687807, -0.00904445257037878, -0.041588831692934036, 0.039688266813755035, -0.015551092103123665, 0.0011005108244717121, -0.00328126922249794, 0.0196093562990427, 0.015059181489050388, -0.009251278825104237, 0.01491384394466877, 0.007456921972334385, -0.048609741032123566, 0.008848805911839008, -0.012901481240987778, -0.0031247520819306374, 0.0326002761721611, -0.004723462741822004, -0.014824405312538147, -0.010441926307976246, 0.0015386190498247743, -0.02012362703680992, 0.0038346690125763416, -0.026093637570738792, 0.051069293171167374, -0.03233196213841438, 0.017831770703196526, -0.03007364273071289, 0.006724645383656025, 0.033852413296699524, 0.05621200054883957, -0.015316316857933998, -0.007389842998236418, -0.00579672260209918, 0.015070361085236073, 0.029469935223460197, -0.010514595545828342, -0.05415491759777069, 0.05773245170712471, 0.02470734342932701, -0.005567537155002356, 0.005209783557802439, 0.004075034521520138, 0.031303420662879944, -0.04400366544723511, 0.018267782405018806, 0.00044823982170782983, -0.01624424010515213, 0.0154728339985013, -0.018770871683955193, 0.018390759825706482, 0.03582005575299263, -0.028463752940297127, -0.00850223284214735, 0.042237259447574615, 0.011185383424162865, 0.001446385751478374, 0.00962580181658268, -0.03769826143980026, -0.005223758518695831, -7.677373650949448e-05, 0.01594238542020321, -0.016400756314396858, 0.013136256486177444, 0.02906746231019497, -0.000948884931858629, 0.016389576718211174, 0.0021507127676159143, 0.030878588557243347, 0.06198077276349068, 0.01784295029938221, 0.019408121705055237, -0.05084569752216339, -0.019754694774746895, -0.039554107934236526, 0.032309602946043015, 0.0039995708502829075, 0.012666705995798111, 0.029984205961227417, -0.003141521941870451, 0.034098368138074875, 0.0104922354221344, -0.026339592412114143, 0.0009768344461917877, -0.02234840579330921, 0.015964744612574577, 0.005500458180904388, 0.005416609812527895, -0.020615538582205772, -0.011649344116449356, -0.010950607247650623, -0.016747329384088516, -0.001832088571973145, -0.0041924226097762585, 0.04192422330379486, 0.02560172602534294, -0.03658028319478035, 0.03374061733484268, -0.0038626184687018394, 0.021811775863170624, 0.005455738864839077, 0.0023603339213877916, 0.010302179493010044, -0.003767590271309018, -0.012387210503220558, -0.008222737349569798, -0.011006506159901619, 0.020492561161518097, -0.0016909437254071236, -0.006433970760554075, -0.03863736614584923, -0.012398390099406242, -0.015081540681421757, 0.032823871821165085, 0.02627251297235489, -0.0043657091446220875, 0.00020665148622356355, 0.06774954497814178, -0.016993286088109016, -0.04420490190386772, 0.011325130239129066, -0.03604365140199661, -0.019832953810691833, -0.000989411724731326, 0.0309456679970026, -0.022415485233068466, -0.002704112557694316, -0.007753186393529177, 0.025176893919706345, -0.022169530391693115, 0.012130075134336948, -0.01010094303637743, -0.036379046738147736, -0.0036138680297881365, -0.05603312328457832, 0.03132577985525131, 0.02069379761815071, -0.003161086468026042, -0.001528836670331657, -0.02130868472158909, -0.03197420760989189, 0.03163881599903107, -0.02229250781238079, 0.027949482202529907, 0.03427724540233612, 0.010430746711790562, 0.010346898809075356, 0.002168879844248295, 0.02754700928926468, 0.05777717009186745, 0.03175061196088791, 0.01957581751048565, 0.05348413065075874, -0.005084010772407055, -0.023119812831282616, 0.0006983876810409129, -0.010838809423148632, -0.02242666482925415, -0.09391026198863983, 0.004007956013083458, 0.023924756795167923, 0.02225896716117859, 0.046955130994319916, 0.021979473531246185, 0.01735103875398636, -0.02727869525551796, 0.012644345872104168, 0.0004870197444688529, 0.03807837516069412, 0.014779685996472836, -0.003806719556450844, 0.01662435196340084, 0.009676110930740833, 0.020727336406707764, 0.03494803234934807, 0.02115216851234436, -0.012443109415471554, 0.028508473187685013, -0.037787701934576035, -0.001654609339311719, 0.0011137868277728558, -0.037273429334163666, -0.030811509117484093, -0.04572535306215286, -0.0027250745333731174, 0.0287991464138031, -0.016288958489894867, 0.0020626718178391457, -0.010788500308990479, -0.05768773332238197, -0.01569642871618271, 0.023388126865029335, -0.029022742062807083, 0.01064316276460886, -0.02931341715157032, -0.0007630208856426179, 0.005478098522871733, 0.02001182921230793, -0.0011130881030112505, -0.003666972042992711, 0.014511371031403542, 0.011185383424162865, -0.02649611048400402, -0.02739049308001995, -0.0067414152435958385, 0.04102984070777893, 0.015405754558742046, -0.011252461932599545, -0.034992750734090805, -0.027211615815758705, 0.02372352033853531, 0.008172429166734219, 0.01616598106920719, 0.03398657217621803, -0.02725633606314659, -0.04807310923933983, -0.027614088729023933, -0.021185707300901413, 0.019262783229351044, -0.04243849590420723, 0.0010334320832043886, 0.012096536345779896, -0.026853863149881363, 0.020056549459695816, -0.009787908755242825, -0.03148229792714119, 0.02434958890080452, 0.0029738249722868204, -0.024014195427298546, 0.043154001235961914, -0.014343674294650555, -0.0005813492462038994, 0.0060035488568246365, -0.0007294815150089562, 0.02168879844248295, 0.019654076546430588, -0.029872406274080276, -0.019642896950244904, 0.016847947612404823, -0.009469284676015377, 0.0073786634020507336, -0.03137049823999405, 0.007099168375134468, -0.03521634638309479, -0.02497565746307373, -0.020861493423581123, -0.021878855302929878, 0.03928579390048981, -0.026317233219742775, -0.0072389161214232445, -0.03137049823999405, -0.004072239622473717, -0.013918842189013958, -0.05482570454478264, 0.010419567115604877, -0.023634081706404686, 0.005975599400699139, -0.021275145933032036, -0.0009335126960650086, 0.025825321674346924, -0.032041285187006, 0.03286859020590782, -0.005886161234229803, -0.031907130032777786, 0.02082795463502407, -0.01938576065003872, 0.017820589244365692, 0.0016238649841398, 0.05303693935275078, 0.0410521999001503, -0.01141456887125969, -0.010827629826962948, 0.0014841175870969892, 0.007971192710101604, 0.023745881393551826, 0.01944166049361229, 0.00011101185373263434, 0.004715077579021454, -0.016669072210788727, -0.023231610655784607, 0.006098577287048101, -0.03184005245566368, -0.024304870516061783, 0.028195438906550407, -0.02779296599328518, 0.015036821365356445, -0.02958173304796219, 0.05214255675673485, 0.03378533571958542, 0.04266209155321121, -0.03785477951169014, 0.013013279065489769, -0.002455362118780613, -0.008658749982714653, 0.00798796210438013, -0.017742332071065903, -0.03201892599463463, -0.021085089072585106, -0.05415491759777069, 0.004049879964441061, 0.017295140773057938, -0.024282511323690414, -0.004396453499794006, -0.0034825054462999105, -0.023880038410425186, 0.011459288187325, -0.007389842998236418, -0.02294093556702137, 0.0057352338917553425, 0.04183478653430939, -0.0481625497341156, -0.022393126040697098, -0.0080270916223526, 0.013561088591814041, -0.015562271699309349, -0.009351897053420544, 0.010469876229763031, 0.004259501118212938, -0.004558560438454151, 0.005036496557295322, -0.0349256731569767, -0.0026649832725524902, 0.019844133406877518, -0.027457572519779205, -0.0024343999102711678, 0.03391949087381363, -0.015092720277607441, 0.006294223479926586, 0.002146520186215639, -0.013460471294820309, -0.012521368451416492, 0.010497826151549816, -0.010743780992925167, 0.01064316276460886, 0.001563773606903851, -0.010458696633577347, 0.01542811468243599, -0.017362218350172043, 0.009547543711960316, 0.02421543188393116, -0.02980532869696617, -0.006780544295907021, 0.009251278825104237, 0.004835260566323996, -0.023410486057400703, -0.02096211165189743, 0.018401939421892166, -0.005497663281857967, 0.01917334459722042, -0.038167811930179596, -0.0016001078765839338, -0.02396947704255581, 0.040985122323036194, -0.016792049631476402, 0.008580490946769714, 0.01740693859755993, -0.004684333223849535, 0.04869917780160904, -0.0018600380280986428, 0.03973298519849777, 0.025802962481975555, -0.009497234597802162, -0.022080091759562492, 0.01970997452735901, -0.019352221861481667, -0.014500191435217857, -0.022471383213996887, -0.0047709764912724495, -0.02522161230444908, 0.006981780752539635, 0.011140664108097553, 0.011794681660830975, 0.01159344520419836, 0.027815325185656548, 0.001586133148521185, 0.01433249469846487, 0.009391026571393013, 0.006366892252117395, 0.02096211165189743, -0.024506106972694397, 0.0028256927616894245, -0.011000916361808777, 0.024416668340563774, 0.007188607007265091, -0.004111368674784899, 0.06663157045841217, 0.009676110930740833, 0.011101534590125084, -0.0036194580607116222, -0.024886218830943108, -0.006210375111550093, -0.025825321674346924, 0.029492294415831566, -0.0011613010428845882, 0.02448374778032303, -0.0042343465611338615, 0.008328946307301521, 0.0580902062356472, -0.027882404625415802, -0.036334328353405, -0.007417792920023203, 0.011420158669352531, 0.0012227898696437478, 0.014455472119152546, -0.016769690439105034, -0.013874122872948647, 0.014287775382399559, 0.017205702140927315, -0.030230160802602768, -0.0023184095043689013, 0.028575550764799118, -0.03143757954239845, -0.02446138672530651, -0.00824509747326374, -0.017496375367045403, 0.014891484752297401, -0.011962378397583961, -0.032555557787418365, -0.06980662792921066, 0.019106267020106316, 0.0170044656842947, -0.01592002622783184, 0.017038004472851753, 0.032577916979789734, 0.010207151062786579, -0.0033735025208443403, 0.05853739753365517, 0.026988020166754723, -0.024371948093175888, -0.011000916361808777, -0.0030800329986959696, 0.0023393717128783464, -0.005380275193601847, -0.0391516350209713, -0.007686107885092497, 0.023388126865029335, 0.02497565746307373, 0.03336050361394882, 0.04127579554915428, 0.03327106311917305, -0.004354529548436403, 0.0033679127227514982, 0.023253969848155975, 0.006350122392177582, -0.005791132804006338, -0.004516636487096548, 0.019296322017908096, -0.014623169787228107, -0.00904445257037878, 0.007714057341217995, -0.0731605663895607, -0.01746283657848835, -0.029604092240333557, -0.0067749544978141785, 0.011492826975882053, 0.010296589694917202, -0.0018782052211463451, 0.003116367384791374, -0.02296329475939274, 0.0034908903762698174, 0.04536759853363037, 0.013415751978754997, -0.036110732704401016, 0.004223166964948177, 0.011353080160915852, -0.02627251297235489, 0.049146369099617004, -0.014511371031403542, -0.01968761533498764, 0.04552411660552025, 0.03655792400240898, 0.029022742062807083, -0.00017485895659774542, 0.014880304224789143, 0.01534985564649105, -0.00025172001915052533, -0.018536096438765526, 0.013482830487191677, 0.008429563604295254, -0.026205435395240784, -0.008088580332696438, 0.04731288552284241, 0.008373664692044258, -0.02955937199294567, -0.02153228223323822, -0.011884120292961597, 0.055898964405059814, 0.03546230494976044, -0.024506106972694397, -0.017105083912611008, 0.018055366352200508, 0.01148164737969637, 0.01079409010708332, 0.00222338130697608, -0.027614088729023933, -0.018368400633335114, -0.02497565746307373, 0.020045369863510132, 0.015662889927625656, -0.0033176036085933447, 0.028910944238305092, 0.04637378081679344, 0.02014598622918129, -0.0012856762623414397, 0.04125343635678291, -0.023991836234927177, 0.023544644936919212, 0.02025778591632843, 0.018826771527528763, -0.005997959058731794, 0.03832433000206947, 0.027345774695277214, 0.02014598622918129, -0.018446657806634903, 0.009295998141169548, 0.0062774536199867725, -0.035618819296360016, 0.038950398564338684, -0.05312637612223625, -0.004566945601254702, -0.016724970191717148, 0.011123893782496452, 0.009145070798695087, -0.01396356150507927, 0.0675259530544281, 0.028106000274419785, 0.0022792802192270756, 0.015852946788072586, 0.029872406274080276, -0.0044607375748455524, -0.03123634122312069, 0.017820589244365692, -0.012644345872104168, 0.044920407235622406, 0.03208600729703903, 0.02149874158203602, 0.029156900942325592, 0.022270148620009422, 0.021062729880213737, -0.006635207217186689, 0.03376297652721405, 0.009357486851513386, -0.04523344337940216, -0.02725633606314659, 0.02459554560482502, -0.024416668340563774, -0.006037088111042976, -0.007082398980855942, -0.00017573237710166723, 0.023790599778294563, -0.018178343772888184, 0.03812309354543686, -0.020760875195264816, 0.02320924960076809, 0.03362881764769554, 0.011772322468459606, -0.002075249096378684, -0.030677352100610733, -0.019106267020106316, -0.0141536183655262, -0.0008957809186540544, -0.012711424380540848, 0.0036390225868672132, 0.00568771967664361, -0.03184005245566368, -0.004206397105008364, -0.01990003138780594, 0.014455472119152546, 0.005693309474736452, 0.0011871543247252703, 0.02551228739321232, -0.03184005245566368, -0.0022848702501505613, 0.005095190834254026, 0.015059181489050388, -0.023991836234927177, 0.01275614369660616, -0.010374847799539566, 0.01970997452735901, 0.04221490025520325, -0.0068755727261304855, -0.0027138947043567896, -0.06359066069126129, 0.01713862270116806, 0.02841903455555439, 0.019598176702857018, 0.02014598622918129, -0.005078420974314213, 0.007831444963812828, -0.01740693859755993, -0.056256718933582306, 0.027323413640260696, -0.00659607769921422, 0.04380242899060249, -0.0014023652765899897, -0.013527549803256989, 0.029894767329096794, -0.014835585840046406, 0.025042736902832985, 0.016255419701337814, 0.020168347284197807, -0.01148164737969637, -0.006937061436474323, 0.030811509117484093, -0.012599626556038857, 0.012834402732551098, -0.02674206532537937, 0.021029191091656685, 0.0007839829777367413, -0.010458696633577347, -0.0035803287755697966, -0.034433763474226, -0.021107450127601624, 0.029112180694937706, 0.030297238379716873, -0.01523805782198906, 0.004309810232371092, -0.0007406612858176231, -0.010296589694917202, 0.027725886553525925, 0.018826771527528763, -0.018502557650208473, 0.03427724540233612, -0.0141536183655262, 0.01249900832772255, 0.01324805524200201, -0.028620271012187004, -0.018770871683955193, -0.01549519319087267, 0.02305273339152336, -0.007540770340710878, -0.05102457478642464, 0.017932388931512833, -0.015115080401301384, 0.02014598622918129, -0.008334536105394363, -0.03935287147760391, -0.012554907239973545, -0.013605807907879353, 0.004052674863487482, -0.022493744269013405, 0.01152636669576168, -0.026183076202869415, 0.008082990534603596, 0.01498092245310545, -0.0120406374335289, 0.025847680866718292, -0.02638431079685688, -0.0129909198731184, 0.026227794587612152, 0.026674985885620117, -0.0008294009021483362, 0.03888332098722458, -0.0016601992538198829, -0.01210771594196558, -0.038413770496845245, 0.01542811468243599, -0.01662435196340084, -0.010542544536292553, 0.044406138360500336, -0.011761141940951347, 0.008580490946769714, -0.03327106311917305, 0.007524000946432352, 0.050532665103673935, 0.004245526622980833, 0.0033902721479535103, -0.00787616427987814, 0.0340089313685894, 0.05621200054883957, -0.035998933017253876, -0.00843515433371067, 0.024416668340563774, -0.02727869525551796, -0.005914110690355301, 0.004421608056873083, -0.005975599400699139, -0.015003282576799393, 0.0160541832447052, 0.0120406374335289, 0.005824672058224678, 0.021733516827225685, 0.015908844769001007, -0.01922924444079399, 0.01261080615222454, 0.006724645383656025, 0.00945251528173685, 0.014779685996472836, -0.011403389275074005, -0.030051283538341522, 0.034724436700344086, 0.010363668203353882, -0.015662889927625656, 0.00028211509925313294, -0.003770385170355439, 0.009273638017475605, 0.007686107885092497, 0.045702993869781494, 0.009787908755242825, -0.024058913812041283, 0.0287991464138031, -0.021196886897087097, -0.01599828340113163, 0.004969418048858643, -0.015562271699309349, -0.02120806835591793, -0.013046818785369396, 0.006042678374797106, 0.009782318957149982, -0.01439957320690155, 0.00328126922249794, -0.002392475726082921, 0.007456921972334385, -0.021543461829423904, -0.021577000617980957, 0.04073916748166084, -0.015137439593672752, -0.03597657382488251, 0.0008335933089256287, 0.01708272472023964, 0.023365767672657967, -0.003306423779577017, -0.002044504741206765, -0.03304746747016907, -0.027681168168783188, -0.009871757589280605, 0.03315926715731621, 0.023902397602796555, 0.02223660796880722, 0.031303420662879944, -0.006696695927530527, 0.0099108861759305, -0.003046493511646986, -0.005676540080457926, 0.025154534727334976, 0.030386677011847496, -0.021241607144474983, -0.03870444372296333, 0.001892179949209094, -0.0022429460659623146, 0.0035998933017253876, 0.03467971831560135, -0.016277778893709183, -0.03226488456130028, -0.00437968410551548, -0.02047020196914673, 0.03376297652721405, -0.006227144971489906, -0.012711424380540848, -0.02058199979364872, -0.03660264238715172, -0.020548459142446518, -0.0018209087429568172, -0.009698470123112202, -0.01042515691369772, 0.009977965615689754, 0.022381946444511414, -0.026406671851873398, -0.014869124628603458, 0.01178350206464529, -0.009581082500517368, 0.01001709420233965, -0.013494010083377361, 0.01765289343893528, 0.031146904453635216, -6.699141522403806e-05, 0.024908579885959625, -0.028217798098921776, -0.0015386190498247743, -0.02497565746307373, 0.03201892599463463, 0.007244505919516087, 0.005536792334169149, -0.02678678371012211, 0.00783703476190567, -0.014757326804101467, 0.015182158909738064, 0.017172161489725113, -0.026205435395240784, -0.00452222628518939, 0.03137049823999405, -0.017921207472682, 0.03186241164803505, 0.05352884903550148, 0.004843645263463259, -0.004343349486589432, -0.004052674863487482, -0.011805861257016659, 0.011123893782496452, 0.012554907239973545, 0.010257460176944733, 0.001323407981544733, 0.023097451776266098, 0.010173611342906952, -0.026361951604485512, -0.013628168031573296, -0.0029933894984424114, 0.02716689743101597, -0.008625210262835026, -0.030744431540369987, 0.001720290631055832, 0.018692614510655403, 0.008189198561012745, -0.007132708095014095, 0.003918517380952835, 0.018591996282339096, 0.02381295897066593, -0.005181834101676941, 0.060594476759433746, -0.013594628311693668, -0.015953565016388893, -0.010240690782666206, 0.007266865577548742, 0.014779685996472836, -0.022013012319803238, -0.020101267844438553, 0.020816775038838387, -0.026160715147852898, 0.014086538925766945, 0.009228919632732868, 0.009648161008954048, -0.01987767219543457, -0.016579633578658104, -0.02663026750087738, -0.005930880084633827, 0.009072402492165565, 0.008764958009123802, -0.012130075134336948, -0.0022135989274829626, 0.004723462741822004, -0.013851763680577278, -0.0015050796791911125, -0.01280086301267147, 0.022873856127262115, -0.014108899049460888, -0.013907662592828274, 0.0012724001426249743, -0.02993948571383953, -0.0025853272527456284, 0.011436928063631058, 0.01773115247488022, 0.005388660356402397, 0.01594238542020321, 0.02134222537279129, 0.007976782508194447, -0.03977770358324051, -0.04076152667403221, -0.034836236387491226, 0.008401614613831043, -0.0025084661319851875, 0.013672887347638607, -0.013952381908893585, -0.007115938235074282, 0.026697345077991486, -0.023097451776266098, -0.06394841521978378, 0.03284623101353645, -0.039576467126607895, -0.005645795725286007, 0.014813225716352463, 0.02665262669324875, 0.0014645529445260763, 0.02134222537279129, -0.024125993251800537, 0.029514653608202934, -0.008859986439347267, -0.022080091759562492, -0.007054449524730444, -0.025266332551836967, 0.027725886553525925, -0.010419567115604877, -0.02296329475939274, -0.04255029186606407, -0.025937119498848915, 0.020950932055711746, -0.03646848350763321, 0.024886218830943108, -0.003518839832395315, -0.03691567853093147, 0.012599626556038857, -0.003882183227688074, -0.026965660974383354, 0.030498474836349487, 0.01331513375043869, 0.014354853890836239, -0.04418254271149635, -0.021867675706744194, -0.0257358830422163, -0.004237141460180283, -0.04789423197507858, 0.004849235061556101, 0.018245423212647438, 0.0025769423227757215, 0.002529428107663989, 0.005712874233722687, 0.003952056635171175, 0.023857679218053818, 0.013505189679563046, -0.020492561161518097, 0.0058358521200716496, 0.0007881753845140338, -0.017876489087939262, -0.027748245745897293, -0.005042086821049452, -0.027323413640260696, -0.014813225716352463, 0.021957114338874817, 0.017675252631306648, -0.0038039246574044228, 0.0032309601083397865, -0.010453106835484505, -0.04932524636387825, 0.006417201366275549, 0.003532814560458064, -0.002124160761013627, -0.00843515433371067, 0.04650793969631195, 0.02448374778032303, -0.01735103875398636, 0.0057352338917553425, -0.025534646585583687, 0.025937119498848915, -0.004052674863487482, 0.006148886401206255, 0.008043861016631126, -0.005626230966299772, 0.006953831296414137, -0.004427197854965925, -0.0036138680297881365, 0.013169796206057072, 0.0045976899564266205, -0.006763774901628494, -0.01261080615222454, 0.015819407999515533, 0.02063789777457714, -0.0031051875557750463, 0.034590281546115875, 0.0057352338917553425, 0.009944425895810127, -0.0011256653815507889, 0.00397162139415741, 0.017619354650378227, 0.021129809319972992, 0.008686698973178864, 0.009922066703438759, 0.006288633681833744, 0.013661706820130348, 0.006624027621001005, -0.0070768091827631, -0.014500191435217857, -0.0031023926567286253, 0.00184047338552773, 0.033449940383434296, -0.029223978519439697, 0.02613835595548153, -0.008082990534603596, 0.0035915086045861244, 0.05871627479791641, 0.0135722691193223, 0.02280677855014801, -0.01713862270116806, 0.0010453106369823217, -0.019665256142616272, -0.020995652303099632, -0.024170713499188423, 0.003043698612600565, -0.020861493423581123, -0.0026342386845499277, -0.004471917171031237, 0.018323680385947227, 0.034590281546115875, 0.009916476905345917, 0.01407535932958126, 0.011000916361808777, -0.01038602739572525, -0.024752061814069748, -0.003762000473216176, -0.0299618449062109, 0.01422069687396288, -0.009899706579744816, 0.003778770100325346, 0.038301970809698105, 0.03897275775671005, -0.027748245745897293, 0.032309602946043015, -0.0316164530813694, -0.009010912850499153, -0.0050029573030769825, -0.024930939078330994, -0.003149906639009714, 0.010978557169437408, -0.012387210503220558, -0.001766407280229032, -0.026429031044244766, -0.014992102980613708, 0.03787713870406151, -0.029626451432704926, 0.0405602902173996, -0.023298688232898712, 0.006624027621001005, -0.006953831296414137, 0.025802962481975555, -0.009642571210861206, 0.029268698766827583, -0.05746413767337799, 0.02535577118396759, 0.027077458798885345, 0.014231876470148563, 0.015562271699309349, 0.017775870859622955, -0.010134482756257057, 0.019519919529557228, -0.0037312558852136135, 0.014869124628603458, 0.009977965615689754, -0.016915027052164078, 0.022169530391693115, -0.02546756900846958, -0.011353080160915852, 0.03704983368515968, -0.012443109415471554, 0.04682097211480141, 0.025445209816098213, 0.0012647140538319945, 0.043399956077337265, -0.0026733679696917534, -0.0005390756414271891, -0.0372510701417923, 0.017317499965429306, -0.016937386244535446, -0.02613835595548153, -0.029850047081708908, 0.014869124628603458, -0.0033707076217979193, -0.003655792446807027, 0.028732068836688995, 0.038279611617326736, 0.003893363056704402, 0.02158818021416664, 0.003784359898418188, -0.007395433261990547], [-0.024828188121318817, 0.015965936705470085, 0.03861905634403229, 0.027026396244764328, -0.03297312930226326, -0.017585668712854385, 0.031052589416503906, 0.0272115096449852, -3.247148197260685e-05, -0.03517133742570877, -0.03551842272281647, 0.04003053531050682, 0.013975978828966618, -0.04162713140249252, -0.015144500881433487, -0.03341277316212654, 0.0017310893163084984, 0.022051503881812096, 0.009030009619891644, 0.024018321186304092, 0.027419760823249817, 0.019483070820569992, 0.0007505725370720029, -0.013709880411624908, 0.0005513599026016891, 0.035009365528821945, 0.00034075850271619856, 0.02876182459294796, 0.033713579177856445, -0.033898692578077316, 0.03214012458920479, -0.026517337188124657, 0.05238678306341171, -0.037207573652267456, 0.028854381293058395, -0.022560562938451767, 0.025869444012641907, -0.002824408933520317, 0.023810070008039474, 0.056135307997465134, -0.010383643209934235, 0.05368256941437721, -0.018302978947758675, -0.024064600467681885, 0.045954130589962006, 0.02173912711441517, 0.010973689146339893, -0.04280722141265869, -0.0080986637622118, 0.0013695418601855636, 0.011372837238013744, -0.0011721368646249175, -0.021287914365530014, -0.050165433436632156, -0.030080750584602356, -0.014438759535551071, -0.012448802590370178, 0.022294463589787483, 0.01609320193529129, -0.03220954164862633, 0.021264776587486267, -0.031839318573474884, -0.0043356772512197495, -0.008249066770076752, 0.013929701410233974, 0.035078782588243484, -0.01227525994181633, 0.01716916635632515, -0.060716837644577026, -0.008399470709264278, 0.0012979554012417793, 0.014149521477520466, 0.07071290165185928, -0.02577688917517662, -0.029502274468541145, 0.03413008153438568, -0.013871853239834309, 0.014623872004449368, -0.008561444468796253, 0.0010484877275303006, -0.015179209411144257, 0.03422263637185097, -0.018117867410182953, -0.018985580652952194, 0.0039452058263123035, -0.06395630538463593, -0.05849548801779747, -0.036629099398851395, 0.008607721887528896, 0.06807505339384079, -0.0032452500890940428, -0.016937775537371635, 0.0005180975422263145, 0.110141821205616, -0.0365828201174736, -0.08103290945291519, -0.005998795852065086, -0.03454658389091492, 0.005805006250739098, 0.03366729989647865, -0.0013883423525840044, -0.01240252424031496, 0.03056667000055313, 0.041951075196266174, 0.04093295708298683, -0.055857639759778976, 0.004595991689711809, -0.0018569078529253602, -0.02062845230102539, -0.021299485117197037, -0.03447716683149338, -0.0032394654117524624, -0.008868036791682243, 0.028484156355261803, 0.00581368338316679, 0.014091674238443375, 0.01641714759171009, -0.011673645116388798, 0.010933195240795612, 0.012819027528166771, -0.008341623470187187, 0.011343913152813911, 0.012842166237533092, -0.07432258874177933, 0.04158085212111473, -0.006640904117375612, -0.0008460211101919413, -0.0028041622135788202, -0.01509822253137827, 0.015931228175759315, 0.038757890462875366, -0.001485237036831677, 0.004410879220813513, 0.01691463775932789, 0.008399470709264278, 0.00482448935508728, -0.01882360689342022, -0.015630420297384262, -0.029779942706227303, -0.02008468471467495, 0.0008156510884873569, -0.02091769129037857, 0.028137071058154106, 0.001852569286711514, -0.04488973319530487, -0.0036241519264876842, -0.04086354002356529, 0.042136188596487045, -0.016174187883734703, 0.0009016994154080749, -0.009076287969946861, 0.008966377004981041, 0.04613924399018288, -0.052109114825725555, 0.013744588941335678, 0.009845660999417305, -0.035263895988464355, 0.05673692375421524, -0.009816736914217472, -0.011239787563681602, -0.06900060921907425, -0.02487446554005146, 0.013061987236142159, -0.004899691324681044, 0.05266445130109787, -0.013860284350812435, -0.05349745601415634, 0.016046922653913498, -0.028275905176997185, -0.05349745601415634, 0.010320011526346207, -0.02829904295504093, -0.05446929484605789, 0.017840199172496796, -0.04185852035880089, -0.012691762298345566, -0.006403728853911161, 0.054191626608371735, -0.028646130114793777, 0.009371310472488403, -0.041164349764585495, -0.020871412009000778, -0.06441908329725266, -0.012819027528166771, 0.030219584703445435, -0.008011892437934875, 0.0070342677645385265, -0.027419760823249817, -0.018835177645087242, 0.0022965495008975267, -0.031075729057192802, 0.017631947994232178, 0.006854940205812454, 0.053080953657627106, -0.007387137971818447, -0.0022083320654928684, -0.030265862122178078, -0.0050269560888409615, 0.022051503881812096, -0.023601818829774857, -0.011170370504260063, -0.024319129064679146, 0.012483511120080948, 0.06395630538463593, -0.09922019392251968, -0.02519841305911541, -0.022907648235559464, 0.019031859934329987, 0.03905869647860527, -0.0041158562526106834, 0.016336161643266678, -0.03322765976190567, -0.011835617944598198, 0.010077050887048244, 0.03283429518342018, 0.01875418983399868, -0.01674109511077404, 0.035657256841659546, -0.02156558446586132, 0.052109114825725555, 0.012009160593152046, 0.03408380225300789, -0.03676793351769447, -0.0002724260266404599, -0.012599206529557705, 0.06030033528804779, 0.005333548411726952, -0.021230068057775497, 0.06326212733983994, -0.03568039834499359, 0.016868358477950096, 0.015271765179932117, -0.03195501118898392, -0.026262808591127396, 0.01421893946826458, 0.05706086754798889, 0.008023461326956749, -0.041094932705163956, 0.017550960183143616, -0.011783555150032043, 0.025684332475066185, 0.016394007951021194, 0.013466920703649521, -0.016544412821531296, 0.04468148201704025, -0.00357787380926311, -0.000376370910089463, 0.021149080246686935, 0.0352870337665081, -0.008272206410765648, -0.03218640387058258, 0.011343913152813911, 0.03829510882496834, -0.06969477981328964, -0.02480504848062992, 0.013814006000757217, -0.009782028384506702, -0.003858434734866023, 0.017180735245347023, -0.04646318778395653, 0.04229816049337387, 0.009596915915608406, -0.006016150116920471, -0.004512112587690353, -0.010829069651663303, -0.00623597064986825, -0.015387460589408875, -0.013432212173938751, -0.0326954610645771, -0.02376379258930683, -0.04067843034863472, -0.02199365571141243, -0.013848714530467987, -0.000121028017019853, -0.02080199494957924, 0.01843024417757988, -0.01723858341574669, 0.003120877780020237, 0.008752341382205486, 0.045884713530540466, -0.06307701766490936, 0.0064847152680158615, -0.004272045101970434, -0.010580325499176979, -0.0013492951402440667, 0.0194367915391922, -0.01010019052773714, 0.011257141828536987, -0.023301010951399803, 0.048869647085666656, 0.08890018612146378, -0.043570809066295624, -0.0019509101985022426, -0.012680193409323692, 0.10449589788913727, -0.013559476472437382, 0.0026552046183496714, -0.021368902176618576, -0.001417989144101739, 0.012020730413496494, -0.0014519746182486415, 0.0021808543242514133, 0.013166112825274467, -0.034037526696920395, -0.034939948469400406, 0.009348171763122082, -0.03406066447496414, 0.009903508238494396, 0.014762706123292446, -0.017261723056435585, -0.04937870800495148, -0.0058715310879051685, 0.014866831712424755, -0.08070896565914154, -0.043570809066295624, -0.0014541439013555646, 0.02947913482785225, 0.0259157232940197, 0.04218246787786484, 0.019355805590748787, 0.03748524188995361, 0.026702450588345528, 0.04445009306073189, -0.02083670347929001, -0.005269915796816349, 0.01227525994181633, 0.029849359765648842, 0.025406664237380028, -0.03651340305805206, 0.019378945231437683, -0.023810070008039474, -0.012067008763551712, 0.03355160728096962, 0.01301570888608694, 0.023520832881331444, -0.03102944977581501, 0.008335838094353676, 0.006866509560495615, -0.016151048243045807, -0.020211949944496155, 0.03109886683523655, -0.03931322693824768, 0.002176515758037567, -0.018013741821050644, 0.021658139303326607, 0.0317467600107193, 0.0492398738861084, 0.08168080449104309, -0.005729804281145334, -0.041418880224227905, -0.003167155897244811, -0.018985580652952194, -0.03558783978223801, -0.03429205343127251, -0.03588864952325821, -0.05025799199938774, 0.024064600467681885, 0.005018278956413269, 0.002927088411524892, 0.02695697918534279, -0.01674109511077404, 0.01445032935589552, 0.024666214361786842, 0.009047363884747028, 0.03466228023171425, 0.04100237414240837, -0.06969477981328964, 0.04579215869307518, 0.02785940282046795, -0.020616883412003517, -0.006727675441652536, -0.001096935011446476, -0.037346407771110535, -0.021727556362748146, -0.005209175869822502, -0.0016211788170039654, 0.06853783130645752, 0.02630908600986004, -0.02642478235065937, 0.003791909897699952, -0.0009776243241503835, -0.0014172660885378718, 0.01849966123700142, -0.008399470709264278, 0.09153803437948227, 0.017840199172496796, -0.03931322693824768, 0.009770458564162254, -0.04799036681652069, 0.016046922653913498, 0.002477323403581977, 0.008139156736433506, -0.020316075533628464, 0.005796329118311405, -0.0679824948310852, -0.018580647185444832, 0.014889971353113651, -0.03778604790568352, -0.035796090960502625, -0.0009002531878650188, 0.006282248999923468, -0.03556470200419426, -0.019228540360927582, -0.014103244058787823, 0.017122888937592506, 0.02966424636542797, 0.01240252424031496, -0.0004204797151032835, 0.013594185002148151, -0.033528465777635574, 0.01983015611767769, 0.00031255779322236776, 0.050165433436632156, -0.006397943943738937, 0.04521368071436882, -0.018777329474687576, -0.031191423535346985, 0.046925969421863556, -0.022583700716495514, -0.03466228023171425, 0.04269152507185936, 0.07932062447071075, -0.012610776349902153, -0.002911180257797241, -0.026702450588345528, 0.04979521036148071, -0.019159123301506042, -0.035726673901081085, -0.02825276553630829, -0.030427835881710052, 0.03517133742570877, 0.0012364923022687435, 0.013975978828966618, 0.02869240753352642, -0.041418880224227905, -0.044658344238996506, 0.0404701791703701, 0.04215932637453079, -0.022629979997873306, -0.052247948944568634, -0.005402965471148491, -0.007901981472969055, -0.009689472615718842, 0.0062706791795790195, -0.03211698681116104, -0.020061546936631203, -0.034037526696920395, 0.021866390481591225, -0.005958302412182093, -0.0051368665881454945, 0.02347455359995365, -0.046278078109025955, -0.09098269790410995, 0.00863664597272873, -0.022201906889677048, 0.029617968946695328, -0.02257213182747364, -0.0005470213363878429, 0.04104865342378616, -0.06492814421653748, 0.014276786707341671, -0.006623549852520227, 0.02055903524160385, 0.00999027956277132, 0.028646130114793777, 0.001638533198274672, 0.0005307517130859196, -0.005420319736003876, 0.025221552699804306, 0.009637409821152687, -0.01778235100209713, 0.016636967658996582, -0.027257787063717842, -8.152895316015929e-05, 0.0356341190636158, 0.003421685192734003, -0.05784759670495987, -0.04650946706533432, -0.028067653998732567, -0.06168867647647858, -0.01029687188565731, 0.011523241177201271, 0.002345720073208213, -0.02526783011853695, 0.036883626133203506, -0.013328085653483868, 0.029455995187163353, 0.010192746296525002, 0.023451415821909904, -0.016602259129285812, -0.03755465894937515, 0.03491681069135666, 0.027558594942092896, -0.00989772379398346, 0.02603141777217388, 0.041164349764585495, 0.010117544792592525, -0.06326212733983994, 0.028784964233636856, 0.008335838094353676, 0.010337365791201591, -0.041418880224227905, 0.016151048243045807, 0.03706873953342438, 0.0012292613973841071, 0.01026216335594654, 0.0052785929292440414, -0.0014078659005463123, 0.030659226700663567, 0.003424577647820115, -0.004945969209074974, -0.0003624513337854296, -0.011893466114997864, -0.0398222841322422, 0.007514402735978365, -0.022329172119498253, -0.02141517959535122, 0.02138047106564045, -0.013999118469655514, 0.025406664237380028, 0.010210100561380386, 0.011019966565072536, -0.026702450588345528, -0.002308119088411331, -0.0009696703054942191, 0.010210100561380386, -0.0033927615731954575, -0.053728848695755005, -0.017227014526724815, 0.018117867410182953, -7.018540054559708e-05, -0.007213595323264599, -0.048869647085666656, 0.0391743928194046, 0.008486242033541203, -0.003106415970250964, -0.006137629970908165, -0.0026768974494189024, 0.022872939705848694, -0.05835665389895439, 0.030659226700663567, 0.0050269560888409615, -0.01605849340558052, 0.002302334411069751, -0.021982086822390556, -0.002436829963698983, -0.005310409236699343, 0.011928174644708633, 0.0027622226625680923, 0.02630908600986004, 0.04482031613588333, -0.00046567313256673515, 0.04442695528268814, -0.07233263552188873, 0.01051090843975544, -0.03232523798942566, -0.0072425189428031445, 0.004133210517466068, 0.01051090843975544, 0.019494639709591866, -0.0072483038529753685, 0.03905869647860527, 0.006681397091597319, 0.0016472103307023644, 0.03024272248148918, 0.0320475697517395, 0.008104448206722736, 0.0033406985457986593, -0.031052589416503906, -0.016289882361888885, 0.039614032953977585, 0.03401438519358635, 0.016694815829396248, 0.022271323949098587, 0.021438319236040115, 0.023717515170574188, 0.00761274341493845, -0.04877709224820137, -0.013814006000757217, -0.005521553102880716, 0.009967140853404999, 0.006369020324200392, -0.007306151557713747, -0.026332225650548935, -0.005744266323745251, -0.022433297708630562, -0.008364762179553509, -0.008434179238975048, 0.012795887887477875, 0.010036557912826538, 0.03311196342110634, -0.016498133540153503, 0.044079866260290146, 0.00727144256234169, 0.013247099705040455, -0.0006478930590674281, -0.03878102824091911, 0.012159564532339573, -0.01696091517806053, 0.041812241077423096, 0.00989772379398346, 0.024712493643164635, 0.013952840119600296, -0.001270477776415646, 0.0025048009119927883, -0.031584788113832474, -0.04313116893172264, 0.0011996144894510508, 0.03179303929209709, 0.026008279994130135, -0.012819027528166771, 0.02512899599969387, 0.02020038105547428, -0.038642194122076035, -0.025614915415644646, 0.0026364042423665524, -0.02973366342484951, -0.011835617944598198, -0.014045395888388157, 0.05965244024991989, -0.02468935400247574, 0.025406664237380028, 0.01074229832738638, -0.0035460577346384525, 0.008127586916089058, 0.036953043192625046, -0.020998677238821983, -0.0010651188204064965, -0.015850240364670753, -0.02700325846672058, 0.00869449321180582, 0.030265862122178078, 0.0077631473541259766, 0.013397503644227982, -0.004729040898382664, -0.035263895988464355, 0.007514402735978365, 0.014172661118209362, 0.01810629665851593, 0.0009718395886011422, 0.03202442824840546, -0.0005123127484694123, 0.004908368457108736, -0.030173305422067642, 0.050813328474760056, 0.04394103214144707, 0.01687992922961712, 0.027419760823249817, -0.020223518833518028, -0.014126382768154144, 0.008266421034932137, -0.029224606230854988, -0.006293818354606628, -0.07696044445037842, -0.016474995762109756, 0.012610776349902153, 0.024666214361786842, 0.03195501118898392, -0.003187402617186308, 0.03181617707014084, -0.024666214361786842, 0.02224818617105484, -0.029641108587384224, 0.037924882024526596, -0.02603141777217388, 0.0034563939552754164, 0.023439845070242882, -0.000516289786901325, -0.0046538389287889, 0.003528703236952424, 0.01843024417757988, -0.020292935892939568, 0.012680193409323692, -0.03491681069135666, 0.004810027778148651, -0.006791307590901852, -0.040770985186100006, -0.004315430764108896, -0.03211698681116104, 0.005232315044850111, 0.02328944206237793, 0.0033696223981678486, -0.01605849340558052, 0.0259157232940197, -0.032348375767469406, 0.0014158198609948158, 0.02306962199509144, -0.023231593891978264, 0.020073115825653076, 0.0054318890906870365, -0.03348219022154808, 0.01094476506114006, 0.020512757822871208, 0.000668139720801264, 0.01515606977045536, -0.022109350189566612, 0.001205399283207953, -0.006131845060735941, -0.012020730413496494, -0.0369299054145813, 0.007213595323264599, 0.02934030070900917, 0.005238099955022335, -0.044866595417261124, -0.009654764086008072, 0.0030688149854540825, 0.011297635734081268, -0.018800469115376472, 0.04354767128825188, -0.02862299047410488, -0.02127634547650814, -0.043755922466516495, -0.0408172644674778, 0.03762407600879669, -0.031122006475925446, 0.005102158058434725, 0.006554132793098688, -0.04151143506169319, 0.01587338000535965, -0.019135985523462296, -0.02804451435804367, 0.037346407771110535, -0.0339912474155426, -0.06168867647647858, 0.0016544412355870008, 0.0048071350902318954, -0.014091674238443375, -0.011939743533730507, -0.03408380225300789, -0.009573777206242085, 0.06664042919874191, -0.013952840119600296, -0.018476521596312523, 0.01305041741579771, 0.013837144710123539, 0.023104330524802208, -0.03096003271639347, -0.05187772214412689, -0.0032973128836601973, -0.003036998677998781, -0.00910521112382412, 0.0067103211767971516, -0.016544412821531296, -0.035078782588243484, -0.02649419941008091, -0.007566465530544519, 0.01292315311729908, -0.04114121198654175, -0.01904342882335186, 0.005449243355542421, -0.03424577787518501, 0.007074760738760233, 0.024527380242943764, -0.012645484879612923, 0.02501329965889454, -0.0021909778006374836, 0.019853295758366585, -0.030335279181599617, -0.027628012001514435, 0.027882540598511696, -0.016729524359107018, 0.015352752059698105, 0.007925120182335377, 0.025082716718316078, 0.0437096431851387, -0.043431974947452545, 0.003036998677998781, -7.43883938412182e-05, -0.011401761323213577, 0.016185756772756577, 0.009382880292832851, 0.02408773824572563, 0.0010202869307249784, -0.0032394654117524624, 0.006698751822113991, 0.024064600467681885, -0.02422657236456871, -0.014010687358677387, -0.005709557794034481, -0.011291850358247757, 0.023462984710931778, -0.010314226150512695, 0.03836452588438988, 0.04701852425932884, 0.04956382140517235, 0.00464226957410574, 0.026864424347877502, 0.008179649710655212, -0.020547466352581978, 0.009174629114568233, -0.021473027765750885, -0.008272206410765648, 0.026401642709970474, -0.015965936705470085, 0.007329290267080069, 0.029525412246584892, -0.0063805896788835526, -0.02429598942399025, -0.0095564229413867, -0.0028489939868450165, -0.00798875279724598, -0.010759652592241764, -0.011239787563681602, 0.03426891565322876, 0.058402933180332184, -0.027188370004296303, -0.009359740652143955, 0.011546379886567593, 0.02966424636542797, -0.051461219787597656, 0.023856349289417267, 0.006450006738305092, -0.01716916635632515, 0.015630420297384262, -0.019159123301506042, -0.01128606591373682, 0.011216648854315281, -0.007936690002679825, -0.01674109511077404, 0.02760487236082554, -0.003991484176367521, -0.019957421347498894, 0.0021880853455513716, 0.012414094060659409, -0.011737276799976826, 0.002970474073663354, 0.012090147472918034, 0.00815651100128889, 0.006357450969517231, -0.000967501022387296, -0.02746603824198246, -0.01667167618870735, -0.06094822660088539, 0.005304624326527119, 0.022225046530365944, 0.0006124614155851305, 0.019483070820569992, -0.00288370274938643, -0.011239787563681602, -0.006108705885708332, -0.0003541357582435012, 0.02149616740643978, 0.00819121953099966, -0.0020955291111022234, -0.019783876836299896, -0.0004804965865332633, -0.014137952588498592, 0.01104889065027237, -0.021357333287596703, 0.010088620707392693, 0.021623430773615837, 0.0026841284707188606, 0.016856789588928223, -0.004717471543699503, 0.028599850833415985, 0.00472325598821044, 0.0228266604244709, -0.010811715386807919, 0.0010839193128049374, -0.03854963928461075, -0.011552165262401104, -0.01573454588651657, 0.0065194242633879185, -0.013999118469655514, 0.008231712505221367, 0.01454288512468338, 0.020790426060557365, -0.02732720412313938, 0.028646130114793777, 0.006611980032175779, 0.0169956237077713, -0.03096003271639347, 0.023671235889196396, 0.012842166237533092, 0.010123329237103462, 0.013871853239834309, -0.006392159499228001, 0.004503435455262661, 0.015480016358196735, -0.006102921441197395, 0.04979521036148071, 0.009267184883356094, 0.001788936904631555, -0.005831037648022175, -0.0023818747140467167, 0.0021909778006374836, -0.006039288826286793, 0.038827307522296906, 0.007416061591356993, 0.0320475697517395, 0.0036964614409953356, 0.024990161880850792, 0.023381998762488365, -0.025638055056333542, -0.033898692578077316, 0.025638055056333542, 0.014866831712424755, 0.020709440112113953, 0.021577153354883194, -0.01998055912554264, 0.004211305174976587, 0.008249066770076752, 0.0034795328974723816, -0.0030022901482880116, 0.01716916635632515, -0.004682763013988733, -0.053867682814598083, 0.0008944684523157775, 0.03736954554915428, -0.031122006475925446, -0.012228981591761112, 0.025105856359004974, -0.015653559938073158, -0.0627993494272232, -0.014889971353113651, 0.027813123539090157, -0.02954855188727379, -0.0016197327058762312, -0.01141333021223545, 0.024573659524321556, 0.027234647423028946, 0.027882540598511696, 0.03024272248148918, -0.020130963996052742, 0.025499220937490463, -0.015271765179932117, -0.02533724717795849, 0.02105652540922165, -0.023925766348838806, 0.012680193409323692, 0.02642478235065937, 0.005052987486124039, 0.04882337152957916, 0.05238678306341171, 0.04762014001607895, -0.026980118826031685, -0.001486683264374733, -0.0029516734648495913, 0.004549713339656591, -0.016208896413445473, -0.001572008361108601, 0.006820231676101685, 0.003655968001112342, -0.006606195587664843, 0.006131845060735941, -0.033135101199150085, -0.033852413296699524, -0.04151143506169319, -0.04468148201704025, 0.008092878386378288, -0.0014244969934225082, 0.018013741821050644, 0.022977065294981003, -0.026586754247546196, 0.021507736295461655, 0.039729729294776917, -0.004934399854391813, 0.007444985676556826, 0.04646318778395653, 0.006010365206748247, -0.013756157830357552, 0.001965372124686837, -0.024272851645946503, -0.04380219802260399, 0.04171968623995781, -0.003531595692038536, 0.00038721735472790897, 0.02296549640595913, -0.02695697918534279, 0.016822081059217453, 0.02354397065937519, 0.0031729405745863914, 0.010834855027496815, 0.01856907829642296, -0.04849942401051521, -0.010418351739645004, 0.02862299047410488, 0.032417792826890945, 0.0023731975816190243, -0.0034535015001893044, 0.008723417297005653, 0.027234647423028946, 0.02760487236082554, -0.0221787691116333, -0.03912811353802681, 0.008087093941867352, 0.016255173832178116, -0.027304064482450485, 0.0030919539276510477, 0.000711525441147387, -0.0010463184444233775, -0.0037976945750415325, 0.02199365571141243, 0.0028128393460065126, -0.013848714530467987, 0.007283012382686138, 0.02642478235065937, 0.03271859884262085, -0.006536778528243303, -0.0005846222629770637, -0.03732326999306679, 0.02235231176018715, 0.020038407295942307, -0.005530230235308409, -0.018777329474687576, -0.006675612647086382, -0.005683526396751404, 0.06076311320066452, -0.01236781571060419, -0.018407104536890984, 0.01234467700123787, -0.03019644506275654, 0.04762014001607895, -0.049656376242637634, -0.01892773248255253, -0.03512506186962128, -0.00719045614823699, -0.004020407795906067, -0.0008937453385442495, 0.056135307997465134, -0.01560728158801794, 0.02318531647324562, 0.017331140115857124, -0.026864424347877502, 0.003699353663250804, -0.04139573872089386, -0.002999397926032543, -0.01950620859861374, 0.04396417364478111, 0.026216531172394753, 0.008914314210414886, 0.0013080787612125278, 0.010105974972248077, -0.001804844941943884, 0.02947913482785225, 0.05035054683685303, 0.018707912415266037, -0.029779942706227303, -0.045375652611255646, 0.02545294165611267, 0.0014649903168901801, 0.006282248999923468, -0.007936690002679825, 0.008879605680704117, -0.013825575821101665, -0.006316957529634237, 0.04956382140517235, -0.0017845983384177089, 0.0025698794052004814, 0.027628012001514435, -0.004234443884342909, 0.0080986637622118, -0.017898045480251312, -0.025753749534487724, -0.0061954776756465435, -0.01631302200257778, -0.020547466352581978, 0.0026609892956912518, -0.0285072959959507, -0.012298398651182652, 0.021831681951880455, -0.020466478541493416, 3.247148197260685e-05, -0.0013464028015732765, -0.0017296430887654424, -0.012067008763551712, -0.035726673901081085, 0.025244690477848053, 0.007259873207658529, 0.0012227535480633378, 0.0013514644233509898, 0.013270238414406776, -0.028646130114793777, 0.012298398651182652, 0.019934281706809998, -0.0015127146616578102, -0.016498133540153503, -0.05011915788054466, 0.012460372410714626, 0.026841284707188606, -0.024527380242943764, 0.03102944977581501, 0.011881896294653416, -0.004873659927397966, -0.015051944181323051, -0.01623203605413437, 0.048869647085666656, -0.004196843132376671, 0.005151328630745411, 0.015445307828485966, -0.01509822253137827, 0.0666867047548294, 0.0004483188677113503, 0.02011939324438572, 0.007751577999442816, 0.058588046580553055, 0.015641989186406136, -0.018846746534109116, 0.004491865634918213, 0.004905476234853268, -0.0006066766800358891, -0.005281485617160797, 0.02455051988363266, -0.025082716718316078, -0.0178170595318079, -0.03711501881480217, -0.017088180407881737, -0.026910701766610146, 0.023405136540532112, 0.022653117775917053, -0.00649628508836031, 0.007294581737369299, 0.01706504076719284, 0.01803687959909439, -0.0025771104265004396, 0.0010354719124734402, -0.008445749059319496, 0.024504242464900017, -0.01502880547195673, 0.009041579440236092, -0.0036646451335400343, -0.012738040648400784, 0.016428716480731964, -0.03778604790568352, 0.005640140734612942, -0.030589807778596878, -0.034176360815763474, 0.04333942010998726, -0.003210541559383273, 0.014970958232879639, -0.0033088824711740017, -0.0041216411627829075, -0.03382927551865578, -0.009429157711565495, -0.023127468302845955, -0.018765760585665703, -0.007676376029849052, -0.02610083483159542, 0.0072483038529753685, -0.017909616231918335, 0.010053912177681923, 0.006172338500618935, -0.010921626351773739, -0.00019975498435087502, 0.003467963309958577, -0.004434018395841122, -0.009272969327867031, 0.05021171271800995, 0.00530173210427165, -0.002945888787508011, 0.010788576677441597, 0.02059374377131462, -0.006108705885708332, -0.0024483995512127876, -0.004766642116010189, -0.010412567295134068, 0.03251034766435623, -0.00037167081609368324, 0.003910497296601534, -0.006941711530089378, -0.03938264399766922, 0.00556204654276371, -0.020547466352581978, 0.004500542767345905, 0.04215932637453079, -0.019309528172016144, 0.023925766348838806, 0.006617764942348003, -0.006964850705116987, 0.02552235871553421, 0.022259755060076714, -0.008503596298396587, 0.0016529950080439448, 0.01655598171055317, 0.011297635734081268, -0.0015806856099516153, 0.024434823542833328, -0.004714578855782747, 0.011205079033970833, -0.0017296430887654424, 0.02271096594631672, 0.009834091179072857, -0.012055438943207264, -0.029641108587384224, -0.044982291758060455, 0.046995386481285095, -0.00564303295686841, -0.006183907855302095, 0.02519841305911541, 0.003291528206318617, -0.0005860684323124588, 0.010904272086918354, 0.02026979811489582, -0.005206283647567034, -0.01616261899471283, 0.02318531647324562, -0.032417792826890945, 0.025499220937490463, 0.014716428704559803, -0.024990161880850792, -0.019633473828434944, 0.025730609893798828, 0.011905035004019737, 0.02397204376757145, 0.012772749178111553, -0.011343913152813911, -0.01169678382575512, 0.008283775299787521, -0.003574981354176998, -0.021137511357665062, -0.005836822558194399, -0.014878401532769203, -0.049980323761701584, -0.022086212411522865, 0.0003723939007613808, -0.010325795970857143, -0.030358418822288513, -0.021542444825172424, -0.024666214361786842, -0.002756437985226512, -0.009805167093873024, 0.02487446554005146, 0.022039933130145073, 0.010071266442537308, 0.03109886683523655, -0.02221347764134407, 0.031237700954079628, 0.03966031223535538, -0.02538352459669113, 0.04697224870324135, 0.027442898601293564, -0.045445069670677185, -0.006062428001314402, 0.016833649948239326, 0.005353794898837805, 0.009689472615718842, 0.045838434249162674, -0.020906120538711548, -0.020975537598133087, -0.01029687188565731, -0.00880440417677164, 0.01590808853507042, -0.010395213030278683, -0.02335885912179947, 0.004277829546481371, 0.001965372124686837, -0.016255173832178116, 0.000992086250334978, 0.01292315311729908, -0.03190873563289642, 0.008763911202549934, 0.00849781185388565, -0.011002612300217152, -0.007149962708353996, 0.018314549699425697, 0.006166553590446711, -0.012390955351293087, -0.011656290851533413, 0.01907813735306263, 0.008792834356427193, 0.014485037885606289, -0.011268711648881435, -0.040447037667036057, 0.025568637996912003, -0.02765115164220333, 0.02004997618496418, -0.010077050887048244, 0.024573659524321556, 0.03452344611287117, 0.034939948469400406, -0.0038786812219768763, 0.03063608705997467, -0.004260475281625986, -0.02033921517431736, 0.01353633776307106, 0.03537958860397339, -0.015329613350331783, 0.009608485735952854, 0.02966424636542797, 0.04461206495761871, -0.010765437968075275, -0.00829534512013197, -0.022884508594870567, 0.004587314557284117, 0.006970635149627924, 0.015410599298775196, -0.00719045614823699, 0.05673692375421524, 0.03038155660033226, 0.024110877886414528, -0.020177241414785385, -0.00451789703220129, 0.03859591484069824, -0.01836082711815834, -0.0018453382654115558, -0.003256819676607847, 0.011274496093392372, -0.014334633946418762, -0.012645484879612923, -0.0010419797617942095, 0.03271859884262085, 0.027836263179779053, 0.01796746253967285, 0.05164633318781853, -0.014427190646529198, 0.0071326084434986115, -0.020547466352581978, -0.027118952944874763, -0.020026838406920433, -0.03931322693824768, -0.03743896260857582, 0.03505564481019974, -0.05215539410710335, 0.021611861884593964, 0.018279841169714928, -0.0018033988308161497, -0.03898927941918373, 0.032302096486091614, -0.010001849383115768, -0.0018438921542838216, 0.02533724717795849, 0.005006709601730108, -0.01495938841253519, 0.0075722504407167435, -0.007219379767775536, -0.0018366611329838634, 0.011118307709693909, -0.023624958470463753, 0.017435265704989433, 0.0007032098365016282, -0.03561098128557205, -0.0003651629376690835, -0.024342268705368042, 0.026123974472284317, -0.0057558356784284115, 0.011939743533730507, 0.023231593891978264, 0.03878102824091911, -0.02811393141746521, 0.0326954610645771, -0.010453060269355774, -0.029386578127741814, -0.011268711648881435, 0.043108027428388596, 0.009371310472488403, 0.0427609421312809, -0.011060460470616817, 0.006369020324200392, -0.002993613015860319, 0.010522477328777313, -0.02772056870162487, 0.025753749534487724, -0.032672323286533356, 0.03149222955107689, -0.0006225847755558789, 0.030682364478707314, -0.015005666762590408, 0.060531724244356155, -0.02927088364958763, 0.00795404426753521, -0.002002973109483719, 0.008630861528217793, -0.03056667000055313, 0.011210864409804344, 0.030127028003335, 0.00020264735212549567, -0.008862251415848732, -0.02681814506649971, 0.01029687188565731, 0.02023508958518505, -0.03355160728096962, 0.012761179357767105, -0.004888121969997883, -0.0259157232940197, -0.012147994711995125, 0.02739662118256092, -0.02008468471467495, 0.04840686917304993, -0.004112964030355215, 0.029756803065538406, -0.04255269095301628, -0.028808102011680603, 0.00044687266927212477, 0.007375568617135286, -0.015630420297384262, -0.02714209258556366, -0.015965936705470085, -0.02117221988737583, 0.016428716480731964, 0.02030450664460659, -0.010701805353164673, -0.0076532368548214436, -0.009093642234802246, -0.020755717530846596, -0.02570747211575508, 0.009076287969946861, -0.02797509729862213, -0.016000645235180855, -0.012171134352684021, -0.0038671118672937155, -0.014739567413926125, 0.03646712377667427, -0.0077862865291535854, 0.016139479354023933, 0.00819121953099966, 0.01450817659497261, -0.01947150006890297, 0.011870326474308968, -0.03736954554915428, 0.025244690477848053, -0.019286388531327248, 0.019899573177099228, 0.038896724581718445, 0.02519841305911541, -0.025152133777737617, 0.015341182239353657, 0.015780823305249214, -0.018835177645087242, 0.013258668594062328, -0.0011873218463733792, -0.0228266604244709, -0.00941180344671011, 0.002993613015860319, -0.03602748364210129, 0.01594279706478119, -0.00254240189678967, 0.0008648215443827212, -0.019968990236520767, 0.023497693240642548, -0.002857671119272709, 0.011737276799976826, 0.020026838406920433, -0.006883863825351, -0.020431770011782646, 0.017284860834479332, 0.010227454826235771, 0.031330257654190063, 0.025036439299583435, 0.005116619635373354, 0.03387555107474327, 0.006606195587664843, 0.017932754009962082, 0.007363998796790838, 0.0027188370004296303, -0.024272851645946503, -0.0052785929292440414, 0.004998032469302416, -0.019355805590748787, 0.0020275581628084183, 0.0072483038529753685, 0.003910497296601534, -0.013027278706431389, 0.004031977616250515, 0.006681397091597319, 0.0372307114303112, 0.009053148329257965, -0.0015994859859347343, 0.007381353061646223, -0.022433297708630562, -0.01512136124074459, 0.009475436061620712, 0.015341182239353657, -0.03128397837281227, -0.012009160593152046, 0.012911583296954632, 0.010967903770506382, 0.015630420297384262, 0.021114371716976166, 0.003968345001339912, 0.004358816426247358, -0.01752782240509987, -0.007363998796790838, -0.02635536529123783, 0.015780823305249214, -0.014843693003058434, -0.0011468286393210292, 0.036235734820365906, 0.02772056870162487, -0.01616261899471283, 0.001444020657800138, -0.048545703291893005, -0.011153016239404678, 0.023243164643645287, -0.029247744008898735, 0.008798619732260704, 0.0050645568408071995, -0.014288356527686119, -0.02422657236456871, -0.0019942959770560265, -0.015352752059698105, 0.03190873563289642, 0.005145543720573187, 0.0369299054145813, -0.0055417995899915695, 0.008787049911916256, 0.007855703122913837, -0.004407986998558044, 0.015237056650221348, 0.016787372529506683, -0.003702246118336916, -0.007363998796790838, 0.01684522069990635, -0.0006312619079835713, 0.004124533385038376, 0.0323946550488472, -0.010869563557207584, 0.002792592626065016, 0.01315454300493002, 0.0029401041101664305, 0.0064847152680158615, -0.0002024665882345289, 0.03686048835515976, -0.015248626470565796, -0.011112523265182972, 0.057431094348430634, 0.0070284828543663025, 0.0272115096449852, 0.006947496440261602, -0.00021548230142798275, -0.01441562082618475, -0.017979033291339874, -0.005663279443979263, -0.03135339543223381, -0.009157274849712849, -0.019633473828434944, -0.015040375292301178, -0.02825276553630829, 0.00710946973413229, 0.0019031858537346125, 0.0012379385298117995, -0.010846423916518688, 0.014022257179021835, -0.02598514035344124, 0.01364046335220337, 0.02209778130054474, 0.030080750584602356], [-0.023325733840465546, 0.03618919104337692, 0.03430255129933357, 0.032170891761779785, -0.04194711893796921, 0.003375125816091895, 0.017714817076921463, 0.009702720679342747, 0.02986771985888481, -0.004750290419906378, 5.204244075684983e-07, 0.016869504004716873, 0.029304178431630135, -0.04728851467370987, 0.01633046381175518, -0.01996898464858532, 0.03263642638921738, 0.028789639472961426, 0.00348844681866467, 0.015031867660582066, 0.002303171204403043, 0.038222841918468475, 0.03810033202171326, 0.015472900122404099, -0.014529580250382423, -0.028912149369716644, -0.003519074060022831, 0.03908040374517441, 0.05699123442173004, -0.05017973110079765, 0.04601442068815231, -0.03491509333252907, 0.07448553293943405, -0.013390244916081429, 0.020789794623851776, -0.006134643219411373, 0.0377328060567379, -0.01190788485109806, 0.024122042581439018, 0.04287818819284439, -0.0310928113758564, 0.02874063514173031, -0.005981507245451212, -0.03337148204445839, 0.022847948595881462, -0.007920213975012302, 0.018131347373127937, -0.005914126988500357, -0.015926184132695198, -3.909763108822517e-05, 0.002745735226199031, 0.004165309481322765, -0.02178211882710457, -0.01782507449388504, -0.03045576438307762, -0.040035974234342575, -0.048293087631464005, 0.002289388794451952, 0.029132666066288948, 0.0043551987037062645, 0.009108551777899265, -0.019760718569159508, 0.008459254167973995, 0.03038225881755352, 0.03356749564409256, 0.04376025125384331, 0.023313483223319054, 0.03699775040149689, -0.05444304645061493, -0.02531038038432598, 0.017028765752911568, 0.03993796929717064, 0.053560979664325714, -0.024244552478194237, -0.019527951255440712, 0.039325423538684845, 0.008152981288731098, 0.013623012229800224, 0.019503450021147728, -0.013647514395415783, -0.004180623218417168, 0.025138868018984795, -0.04645545408129692, 0.017678063362836838, -0.0047227260656654835, -0.06537085771560669, -0.049077145755290985, -0.022272154688835144, -0.016869504004716873, 0.0472395122051239, -0.036017678678035736, -0.04037900269031525, 0.0009563366766087711, 0.08810854703187943, -0.03283243998885155, -0.05199286341667175, -0.0003286689461674541, -0.07526959478855133, -0.0008139198762364686, 0.00855726096779108, -0.02036101371049881, 0.02088780328631401, 0.037879813462495804, 0.048611611127853394, 0.07507357746362686, -0.06439078599214554, -0.010744048282504082, 0.00025860907044261694, -0.009745599702000618, -0.0369732491672039, -0.045622389763593674, -0.014725594781339169, -0.012024268507957458, 0.04885663092136383, 0.005892687942832708, 0.025996431708335876, 0.0311663169413805, -0.04461781680583954, 0.03810033202171326, -0.033077459782361984, -0.04001147300004959, -0.0054700314067304134, 0.03070078231394291, -0.07522059231996536, 0.01815584860742092, 0.008643017150461674, 0.008802278898656368, 0.01222640834748745, -0.06194060295820236, 0.01193238701671362, 0.01938094012439251, -0.023080715909600258, -0.005368961486965418, 0.028275102376937866, 0.019221678376197815, 0.004618593491613865, -0.03812483325600624, 0.014713343232870102, -0.01918492652475834, 0.017188027501106262, -0.007926339283585548, 0.0011232553515583277, 0.01633046381175518, 0.013708768412470818, 0.008992168121039867, -0.026363959535956383, -0.01859688200056553, 0.015472900122404099, 0.02803008258342743, -0.020115995779633522, -0.025481894612312317, 0.011448475532233715, 0.041922613978385925, -0.04584290832281113, -0.007093277294188738, 0.013353492133319378, -0.04128556698560715, 0.058265332132577896, 0.009953864850103855, -0.007779328152537346, -0.06076451763510704, -0.03611568361520767, 0.015460649505257607, -0.020189501345157623, 0.03422904387116432, 0.004762541502714157, -0.016550980508327484, 0.03148483857512474, -0.04581840708851814, -0.0338125117123127, -0.005690548103302717, -0.005439404398202896, -0.03751228749752045, 0.01996898464858532, -0.06522385030984879, -0.004192874301224947, 0.027172518894076347, 0.05596216022968292, -0.04741102457046509, -0.008734899573028088, -0.03966844826936722, 0.024146543815732002, -0.03491509333252907, -0.0007909493870101869, 0.004312320612370968, 0.016416219994425774, 0.010235635563731194, 0.005678297020494938, -0.04202062264084816, 0.006566488184034824, -0.04574489966034889, -0.013659765012562275, 0.007166782859712839, 0.08629541099071503, -0.010401022620499134, 0.008410249836742878, -0.044201284646987915, 0.0010535783367231488, 0.050963789224624634, 0.0010926281102001667, 0.01761680841445923, -0.04006047919392586, 0.019809722900390625, 0.06287167221307755, -0.07884685695171356, -0.05199286341667175, -0.011270837858319283, 0.00917593203485012, 0.036262694746255875, -0.004937116988003254, 0.010590911842882633, -0.05120880529284477, -0.05802031233906746, 0.013880281709134579, 0.02952469512820244, 0.021549351513385773, -0.011754748411476612, 0.04175110161304474, -0.0037855312693864107, 0.06292067468166351, -0.013623012229800224, 0.019172674044966698, -0.014615336433053017, 0.0022082265932112932, -0.014064045622944832, 0.01983422413468361, -0.026241449639201164, -0.026559973135590553, 0.022223152220249176, -0.04006047919392586, -0.009996742941439152, 0.02010374329984188, -0.025775915011763573, -0.016232457011938095, -0.0006205851677805185, 0.021426841616630554, 0.05258090794086456, 0.00596619350835681, 0.057530276477336884, 0.008489880710840225, 0.0021760680247098207, 0.038467857986688614, -0.0035098858643323183, 0.007981467992067337, 0.020740792155265808, -0.006045824382454157, -0.016808249056339264, 0.007117778994143009, 0.028005581349134445, 0.009261688217520714, -0.032415907829999924, 0.022688686847686768, 0.03680173680186272, -0.06316569447517395, 0.00450527248904109, -0.0015022678999230266, -0.02088780328631401, 0.02132883481681347, -0.009059548377990723, -0.02217414788901806, 0.04630844295024872, 0.005108629819005728, -0.015828175470232964, 0.020606031641364098, -0.03430255129933357, 0.02594742923974991, -0.01735953986644745, -0.027368534356355667, -0.044593315571546555, 0.0001427996758138761, -0.03565014898777008, -0.01601194031536579, 0.017580056563019753, 0.013831278309226036, 0.006646119058132172, -0.02869163267314434, -0.016367215663194656, -0.01990772970020771, 0.019160423427820206, 0.030725283548235893, -0.06963417679071426, -0.023337984457612038, -0.029745209962129593, -0.03449856489896774, 0.01990772970020771, 0.011754748411476612, -0.012428549118340015, -0.01815584860742092, -0.05405101552605629, 0.05885337293148041, 0.06860510259866714, -0.055325113236904144, -0.010560285300016403, -0.011154454201459885, 0.09541009366512299, 0.015117623843252659, 0.012293788604438305, -0.037904318422079086, -0.021769868209958076, -0.007032022811472416, -0.008477630093693733, -0.013096223585307598, 0.0006236479384824634, 0.018890904262661934, -0.0736524760723114, 0.005727300886064768, 0.0010788458166643977, 0.013647514395415783, -0.012367294169962406, -0.02484484575688839, -0.029108162969350815, -0.0035680776927620173, -0.007571062538772821, -0.056893229484558105, -0.030676279217004776, -0.033077459782361984, -8.647420327179134e-05, 0.03224439546465874, 0.008508257567882538, -0.00512088043615222, 0.0292061697691679, 0.05204186961054802, 0.049052644520998, -0.010927812196314335, 0.00799984484910965, 0.01031526643782854, 0.025800418108701706, -0.0017227842472493649, -0.04221663624048233, 0.00816523190587759, -0.021451344713568687, 0.009120803326368332, -0.00029153338982723653, 0.0005964661831967533, 0.007601690012961626, -0.010811428539454937, 0.013328990899026394, 0.005754865240305662, 0.0254328902810812, -0.022002635523676872, 0.034645576030015945, -0.05243389680981636, 0.011080948635935783, -0.019883228465914726, 0.050375744700431824, 0.01854787766933441, 0.03579716011881828, 0.0415060855448246, 0.023926028981804848, -0.007485306356102228, 0.0060887024737894535, -0.031974878162145615, -0.05150282755494118, -0.03937442600727081, -0.06296967715024948, -0.036728229373693466, 0.03467007726430893, 0.010296890512108803, 0.001976990606635809, 0.01898891106247902, -0.029573697596788406, -0.0061499569565057755, 0.02861812710762024, 0.021757617592811584, 0.023656507954001427, 0.0028958090115338564, -0.04956718534231186, 0.022149646654725075, 0.017641311511397362, -0.008152981288731098, 0.00653586070984602, -0.047656040638685226, -0.01755555532872677, -0.009286190383136272, -0.006701248232275248, -0.035993173718452454, 0.049934711307287216, 0.012312165461480618, -0.05066976696252823, -0.00048429379239678383, 0.005834496114403009, 0.020140497013926506, -0.016599982976913452, 0.04221663624048233, 0.0507187694311142, 0.003145421389490366, -0.09065673500299454, -0.012642939575016499, -0.0386393703520298, -0.014946110546588898, 0.011895634233951569, 0.008477630093693733, -0.01710227131843567, 0.03317546471953392, -0.04500984400510788, -0.011883383616805077, 0.009059548377990723, -0.02439156360924244, -0.040305495262145996, 0.0009601651108823717, 0.035356126725673676, -0.0434662289917469, -0.024232301861047745, -0.03934992477297783, 0.012471427209675312, -0.006499107927083969, -0.008177482523024082, -0.008159106597304344, 0.03908040374517441, -0.02484484575688839, 0.03687524050474167, 0.019405441358685493, 0.04937116801738739, 0.012336666695773602, 0.03030875325202942, -0.003347561229020357, -0.00962921604514122, 0.07541660219430923, -0.010799177922308445, -0.014113049022853374, 0.03550313785672188, 0.029181668534874916, -0.015019616112112999, -0.020312009379267693, -0.019625958055257797, -0.0010803771438077092, -0.033665500581264496, -0.010829804465174675, -0.009433201514184475, -0.05444304645061493, 0.0018728579161688685, -0.028348606079816818, 0.013414747081696987, 0.025873923674225807, -0.04594091325998306, -0.012765448540449142, 0.024942854419350624, -0.0047349766828119755, 0.0037518413737416267, -0.051110800355672836, -0.018976660445332527, -0.020250754430890083, 0.021304333582520485, 0.03565014898777008, -0.014223307371139526, 0.0012021205620840192, -0.02036101371049881, -0.016477474942803383, 0.022235402837395668, -0.005662983283400536, 0.01737179048359394, -0.012385670095682144, -0.0825711339712143, 0.008183607831597328, -0.024318058043718338, 0.030357755720615387, -0.03038225881755352, -0.00835512112826109, 0.06012747064232826, -0.0962921530008316, 0.001108707394450903, 0.03910490497946739, 0.038418855518102646, 0.013157477602362633, 0.0240730382502079, 0.01696751080453396, -0.006208148784935474, 0.007123904302716255, 0.010786926373839378, -0.008440877310931683, -0.02237016335129738, 0.004983057733625174, -0.017322788015007973, 0.0433192178606987, 0.0384923592209816, 0.005944754462689161, -0.06120554730296135, -0.005947817116975784, -0.01918492652475834, -0.011785375885665417, -0.005378149915486574, 0.002989222062751651, -0.02660897746682167, -0.024832595139741898, 0.011393346823751926, -0.010057997889816761, 0.008146855048835278, 0.007411800790578127, 0.02191687934100628, -0.04155508801341057, -0.02881414070725441, 0.01646522432565689, 0.028275102376937866, -0.011797626502811909, 0.003082635346800089, 0.07041823118925095, -0.007705822587013245, -0.0567462183535099, 0.010615414008498192, 0.01625695824623108, 0.03949693590402603, -0.0075036827474832535, 0.02420779876410961, 0.008054973557591438, 0.0049432422965765, 0.03251391649246216, 0.01108707394450903, -0.028667131438851357, 0.04733751714229584, -0.0011791501892730594, -0.0249796062707901, -0.009145304560661316, -0.019662711769342422, -0.03165635094046593, 0.011178955435752869, -0.02191687934100628, -0.014370317570865154, 0.0359196700155735, 0.005914126988500357, 0.032954949885606766, -0.01575467176735401, 0.006474606227129698, -0.028593625873327255, 0.0010566409910097718, -0.023926028981804848, 0.016220206394791603, -0.008042722940444946, -0.039913468062877655, -0.012502053752541542, 0.016832750290632248, 0.008085601031780243, 0.0033904395531862974, -0.04880762845277786, 0.029941225424408913, 0.0036997750867158175, 0.021488096565008163, 0.00618058443069458, -0.014566333033144474, 0.015325888991355896, -0.03596867248415947, 0.03584616258740425, 0.00733216991648078, -0.019282933324575424, 0.001022950978949666, -0.016808249056339264, -0.03246491402387619, 0.01193238701671362, -0.005503721535205841, -0.01356175821274519, 0.026706984266638756, 0.033469486981630325, -0.014223307371139526, 0.06684096902608871, -0.025457391515374184, 0.017972085624933243, 0.023374738171696663, -0.010774675756692886, 0.002104093786329031, 0.01122183445841074, 0.022345660254359245, 0.021769868209958076, 0.023656507954001427, 0.03006373532116413, -0.002643133979290724, 0.019405441358685493, 0.03195037320256233, 0.028520120307803154, 0.011050321161746979, -0.021365588530898094, -0.009512832388281822, 0.020765293389558792, -0.003834534902125597, 0.01310847420245409, 0.0603724867105484, -0.003950918558984995, 0.028250599279999733, 0.011001317761838436, -0.044323794543743134, 0.007338295225054026, 0.012606186792254448, 0.007025897037237883, 0.0029034658800810575, -0.003972357604652643, -0.014260060153901577, -0.01350050326436758, -0.011258586309850216, 0.0021760680247098207, -0.0008698146557435393, 0.04319671168923378, -0.005019810516387224, 0.024599827826023102, -0.009310691617429256, 0.04287818819284439, 0.015472900122404099, 0.017077770084142685, 0.006780879106372595, -0.008422501385211945, -0.018658136948943138, -0.03538062795996666, 0.03393502160906792, 0.020189501345157623, 0.008348995819687843, 0.007552686147391796, -0.014370317570865154, -0.01640396937727928, -0.03636070340871811, -0.01574241928756237, 0.008263238705694675, 0.03998697176575661, 0.036017678678035736, -0.0039784833788871765, 0.02700100652873516, 0.027344033122062683, -0.04008498042821884, -0.030798789113759995, -0.004529774188995361, -0.012606186792254448, -0.024440566077828407, -0.004382763057947159, 0.02191687934100628, -0.011283088475465775, 0.020385514944791794, 0.014921609312295914, -0.007626191712915897, 0.00216228561475873, 0.01307172141969204, -0.03057827241718769, -0.045499879866838455, -0.02322772704064846, -0.038933392614126205, 0.020961306989192963, 0.034768082201480865, 0.017984336242079735, 0.02003023959696293, -0.009678219445049763, -0.04780305176973343, 0.008269364945590496, -0.001633965177461505, -0.0019034852739423513, 0.04084453731775284, 0.0019004225032404065, 0.01710227131843567, 0.04358873888850212, -0.006615491583943367, 0.04736201837658882, 0.03332247585058212, 0.012336666695773602, 0.029769713059067726, -0.020275257527828217, -0.015289136208593845, -0.0034792586229741573, 0.007093277294188738, 0.001885108882561326, -0.0833061933517456, -0.007742575369775295, 0.007050399202853441, 0.002349112182855606, 0.025922926142811775, -0.0068298825062811375, 0.028397610411047935, -0.0035129485186189413, 0.022455919533967972, 0.005185198038816452, 0.03454756736755371, -0.02303171157836914, 0.002708982676267624, 0.03876188024878502, -0.024109791964292526, -0.012532681226730347, 0.005417965352535248, 0.01519112940877676, -0.015950685366988182, 0.02758905105292797, -0.01705326698720455, -0.0014770004199817777, 0.001699813874438405, -0.018388615921139717, -0.04893013834953308, -0.035429634153842926, -0.008979917503893375, 0.008073350414633751, 0.0011431630700826645, -0.018008839339017868, 0.0122631611302495, -0.030039232224225998, 0.0016385592753067613, 0.012985965237021446, -0.01795983500778675, 0.027491042390465736, 0.015019616112112999, -0.009457702748477459, 0.018915405496954918, 0.017996586859226227, 0.02893665060400963, -0.011546483263373375, 0.00910242646932602, 0.015338139608502388, -0.014823601581156254, -0.01479910034686327, 0.008777777664363384, -0.0037916568107903004, -0.010578661225736141, 0.01310847420245409, -0.032293401658535004, -0.022847948595881462, 0.003240365767851472, -0.008869659155607224, 0.01118508167564869, 0.03560114651918411, -0.03618919104337692, -0.030333254486322403, -0.006505233701318502, -0.03523361682891846, 0.00658486457541585, -0.01658773235976696, 0.01054190844297409, -0.0029846280813217163, -0.04807257279753685, 0.023791268467903137, -0.019932230934500694, -0.027809567749500275, 0.04554888606071472, -0.03168085590004921, -0.035944171249866486, -0.011276963166892529, -0.021745366975665092, -0.0021194075234234333, -0.016244707629084587, -0.013794525526463985, -0.03285694122314453, 0.04692098870873451, -0.017678063362836838, -0.0009808385511860251, -0.0012947680661454797, 0.012269286438822746, 0.014946110546588898, -0.04224114120006561, -0.05150282755494118, -0.01131371594965458, -0.003950918558984995, 0.0052066370844841, -0.02165960893034935, -0.014235557988286018, -0.04704349488019943, -0.03369000554084778, -0.016146700829267502, 0.005975381471216679, -0.04378475248813629, -0.03770830109715462, -0.016428470611572266, -0.011748623102903366, 0.008820655755698681, 0.009255562908947468, 0.010156004689633846, 0.029622701928019524, -0.015142125077545643, 0.020017987117171288, 0.004618593491613865, -0.006345971487462521, 0.041334573179483414, 0.020789794623851776, 0.024085290729999542, -0.005283205304294825, 0.03922741487622261, 0.02731953002512455, -0.04285368323326111, -0.007975342683494091, 0.009825230576097965, 0.017322788015007973, 0.030921299010515213, 0.0009839012054726481, 0.030921299010515213, 0.008502132259309292, 0.004483833443373442, 0.025408389046788216, 0.018658136948943138, 0.0019111420260742307, -0.03604217991232872, -0.0078099556267261505, 0.006045824382454157, 0.03393502160906792, -0.00979460310190916, 0.020716289058327675, 0.015399394556879997, 0.03332247585058212, -6.398229743354023e-05, 0.039055902510881424, 0.0067686280235648155, 0.0034516940359026194, -0.017004264518618584, 0.011374969966709614, -0.03148483857512474, 0.00016337737906724215, -0.01248980313539505, 0.009770100936293602, 0.034964099526405334, -0.006725749932229519, 0.0002178364957217127, 0.02999022975564003, 0.0036017675884068012, 0.0005547365290112793, -0.016697991639375687, -0.000531000376213342, 0.021561602130532265, 0.031901370733976364, 0.006756376940757036, 0.0064072259701788425, 0.007767077069729567, 0.005476157180964947, 0.002189850201830268, -0.013733270578086376, 0.021034812554717064, 0.009929362684488297, -0.012275412678718567, 0.010976815596222878, 0.0028131152503192425, 0.0017687252257019281, -0.0028835581615567207, -0.03988896310329437, 0.018952159211039543, -0.0038161585107445717, -0.002512967912480235, 0.022357910871505737, -0.004333759658038616, 0.004630844108760357, 0.0021653485018759966, 0.03422904387116432, -0.02901015616953373, 0.020802045240998268, 0.024746838957071304, -0.0020642783492803574, 0.012667441740632057, -0.050375744700431824, 0.00998449232429266, 0.021316584199666977, -0.026976505294442177, -0.0002769854327198118, 0.01466433983296156, 0.012557183392345905, -0.013194230385124683, 0.02751554548740387, 0.021708613261580467, 0.018572380766272545, 0.006247964221984148, -0.0008958478574641049, -0.0007832925766706467, 0.008808404207229614, 0.0011209583608433604, 0.011521981097757816, 0.007430177181959152, 0.003889664076268673, -0.017788322642445564, 0.03182786703109741, 0.0011324435472488403, 0.020581530407071114, 0.019148172810673714, 0.002805458614602685, 0.001826917054131627, -0.009188182651996613, -0.03631169721484184, -0.05015522614121437, -0.04594091325998306, 0.0015849615447223186, -0.03520911559462547, 0.01424780860543251, -0.004829921294003725, 0.014272310771048069, -0.0018544815247878432, 0.023239977657794952, -0.01424780860543251, 0.016538729891180992, -0.01304721925407648, 0.03349398821592331, 0.004839109722524881, 0.008312243036925793, 0.028544621542096138, 0.008606264367699623, 0.01108707394450903, 0.05066976696252823, -0.005151507910341024, 0.0827181488275528, 0.0206795372068882, 0.015534154139459133, 0.009420949965715408, -0.016501976177096367, 0.030161742120981216, -0.031141813844442368, 0.03596867248415947, 0.014174303039908409, 0.02049577236175537, 0.011154454201459885, 0.016771497204899788, 0.013623012229800224, 0.008042722940444946, -0.033861517906188965, -0.020802045240998268, 0.019503450021147728, 0.006238776259124279, 0.001761068357154727, -0.019944481551647186, -0.012281537987291813, 0.007993719540536404, 0.00936582125723362, -0.011191206984221935, -0.005589477717876434, 0.02054477669298649, -0.020471271127462387, -0.006045824382454157, 0.02395053021609783, -0.040305495262145996, 0.01631821319460869, -0.0131697291508317, -0.01164449006319046, -0.05307094380259514, -0.016869504004716873, 0.023705512285232544, -0.0603724867105484, 0.014921609312295914, -0.012146777473390102, 0.013537256047129631, 0.010254012420773506, 0.006517484318464994, 0.020765293389558792, -0.006627742666751146, 0.020998060703277588, -0.02511436678469181, -0.019221678376197815, 0.029941225424408913, 0.01691850833594799, -0.009586337022483349, -0.0007335232803598046, 0.010529657825827599, 0.029181668534874916, 0.03523361682891846, 0.02810358814895153, 0.009910986758768559, 0.011013568378984928, 0.011080948635935783, -0.01359851099550724, -0.01076855044811964, -0.00923106074333191, -0.0024363999255001545, -0.011129952035844326, -0.015962935984134674, 0.0078099556267261505, -0.04292719066143036, 0.0003347944002598524, -0.005166821647435427, -0.005552725400775671, 0.0050749396905303, -0.007589438930153847, 0.017188027501106262, 0.0368262380361557, -0.007093277294188738, 0.0009134585270658135, 0.01177925057709217, 0.009408699348568916, -0.001567350816912949, 0.024416064843535423, -0.0253593847155571, -0.009763975627720356, -0.011773125268518925, -0.028667131438851357, -0.02687849849462509, 0.017151275649666786, 0.03371450677514076, 0.017273783683776855, 0.006872760597616434, -0.02829960361123085, 0.022480420768260956, 0.019956734031438828, -0.000950976915191859, 0.03851686418056488, 0.030725283548235893, -0.05615817382931709, -0.004140807781368494, 0.0254328902810812, 0.02602093480527401, -0.0053475224412977695, -0.0034210667945444584, -0.012875706888735294, 0.04964068904519081, 0.035552144050598145, -0.010137628763914108, -0.04248615726828575, 0.038541365414857864, -0.003463944885879755, 0.0042939442209899426, 0.0040489258244633675, -0.002990753622725606, 0.006517484318464994, -0.0103397686034441, 0.04638194665312767, -0.009574086405336857, -0.012998215854167938, 0.04300069436430931, 0.047067999839782715, 0.006915639154613018, -0.010198882780969143, 0.016746994107961655, -0.034180041402578354, 0.0027319530490785837, 0.024746838957071304, -0.002045901957899332, -0.024636581540107727, 0.014713343232870102, 0.017077770084142685, 0.057138245552778244, -0.03469457849860191, 0.016305962577462196, 0.04280468076467514, -0.0642927810549736, 0.03582166135311127, -0.05606016516685486, -0.005274016875773668, -0.031705357134342194, -0.014113049022853374, 0.01906241662800312, 0.004839109722524881, 0.04586740955710411, -0.001324629643931985, -0.0020581530407071114, 0.0404525063931942, -0.014272310771048069, -0.01203651912510395, -0.033591996878385544, 0.009261688217520714, -0.02088780328631401, 0.0440787747502327, -0.005004496779292822, 0.010811428539454937, 0.0057701789774000645, 0.026682483032345772, 0.009341319091618061, 0.02119407430291176, 0.024109791964292526, 0.010352019220590591, -0.014872604981064796, -0.009249437600374222, 0.021880125626921654, -0.012740947306156158, 0.004122431389987469, -0.011411722749471664, 0.015240132808685303, 0.008091726340353489, 0.00658486457541585, 0.03616468608379364, -0.007822206243872643, 0.022921454161405563, 0.0019371751695871353, 0.023497246205806732, 0.011736372485756874, -0.022296657785773277, -0.04052601382136345, -0.0028850894887000322, -0.01606094278395176, -0.041726600378751755, -0.01076855044811964, -0.018376365303993225, -0.03927641734480858, 0.039545938372612, -0.021414590999484062, -0.009090175852179527, 0.004444018006324768, 0.008575637824833393, 0.01684500277042389, -0.019295183941721916, 0.018425369635224342, 0.02967170439660549, 0.0022082265932112932, -0.010082499124109745, 9.422672883374617e-05, -0.006419477052986622, 0.0017273783450946212, 0.01574241928756237, -0.0159996896982193, -0.022994959726929665, -0.058510348200798035, 0.010174381546676159, 0.041138555854558945, 0.0017564742593094707, 0.01522788219153881, 0.022345660254359245, -0.022259904071688652, -0.0054149022325873375, -0.018229354172945023, 0.00923718698322773, -0.009886484593153, 0.016171202063560486, 0.017077770084142685, -0.020397765561938286, 0.04968969151377678, -0.028397610411047935, 0.015926184132695198, 0.031068308278918266, 0.02602093480527401, 0.022994959726929665, -0.012140652164816856, 0.021549351513385773, -0.018498875200748444, 0.02829960361123085, -0.011319841258227825, 0.019074667245149612, 0.012336666695773602, -0.0023812707513570786, -0.026192447170615196, -0.0060917651280760765, -0.0035313249099999666, 0.04050150886178017, 0.019307434558868408, 0.009641466662287712, 0.020312009379267693, -0.0027365470305085182, -0.003745715832337737, 0.028446614742279053, 0.008594013750553131, -0.0070749009028077126, 0.031239822506904602, 0.0021576916333287954, 0.011589361354708672, -0.021831123158335686, -0.036532215774059296, -0.004774792585521936, -0.014198805205523968, 0.013059470802545547, -0.0022434480488300323, -0.04523036256432533, 0.028471115976572037, 0.01168124284595251, 0.042633168399333954, -0.006958517245948315, -0.007270915433764458, -0.04873412102460861, -0.012275412678718567, -0.01750655099749565, -0.024746838957071304, -0.009194307960569859, -0.03888439014554024, -0.005234201438724995, -0.006670620758086443, 0.009678219445049763, -0.0020994998048990965, -0.0253593847155571, -0.006866635289043188, 0.005522097926586866, 0.021512599661946297, -0.023141970857977867, 0.0697321817278862, 0.009224935434758663, -0.005549662280827761, -0.008790028281509876, 0.05998045951128006, -0.01945444568991661, -0.017286034300923347, -0.012128401547670364, 0.0016661238623782992, 0.04402977228164673, -0.016930758953094482, 0.008048848249018192, 0.024109791964292526, -0.002117876196280122, 0.016183452680706978, -0.010272388346493244, 0.028005581349134445, 0.014884856529533863, -0.03251391649246216, 0.008459254167973995, 6.55136609566398e-05, -0.0193196851760149, 0.025089865550398827, 0.002131658373400569, -0.020606031641364098, -0.011717995628714561, 0.036654725670814514, -0.0032219893764704466, 0.011981390416622162, 0.014652089215815067, -0.008998293429613113, 0.015276885591447353, 0.0022189461160451174, -0.003610955784097314, -5.412413884187117e-05, 0.01646522432565689, -0.012704194523394108, -0.035478636622428894, 0.05875536799430847, 0.02751554548740387, -0.015656663104891777, 0.009886484593153, 0.001788632944226265, 0.002327672904357314, 0.032366905361413956, 0.044274792075157166, -0.010131503455340862, -0.010266263037919998, 0.031582847237586975, -0.022664183750748634, -0.003176048630848527, 0.01626920886337757, -0.012287663295865059, -0.024991856887936592, 0.004186748526990414, -0.017996586859226227, 0.0038498486392199993, -0.028642628341913223, -0.028985654935240746, -0.01147910300642252, -0.000810091441962868, -0.00907792430371046, -0.01314522698521614, 0.02301946096122265, -0.021108318120241165, -0.03792881965637207, 0.00829386617988348, -0.0021439094562083483, 0.018437620252370834, -0.03097030147910118, -0.028397610411047935, -0.015889430418610573, 0.011785375885665417, -0.026633478701114655, 0.021978134289383888, 0.03146033734083176, -0.002255698898807168, 0.0377328060567379, -0.007877335883677006, 0.03596867248415947, -0.004756416194140911, -0.019956734031438828, 0.02485709823668003, 0.005313832312822342, -0.011025819927453995, 0.012569434009492397, 0.012630688957870007, 0.009090175852179527, -0.005993757862597704, 0.03153384476900101, -0.027491042390465736, -0.03332247585058212, -0.020728539675474167, -0.009953864850103855, 0.04285368323326111, -0.011117701418697834, -0.017126772552728653, 0.02947569079697132, -0.0057119871489703655, -0.013659765012562275, 0.02609443850815296, 0.0063582225702703, -0.005084127653390169, -0.002444056561216712, 0.0029478752985596657, -0.02440381422638893, 0.0002844508271664381, -0.013831278309226036, 0.04660246521234512, -0.00675025163218379, 0.010364269837737083, 0.013684267178177834, 0.004946304950863123, 0.0014938453678041697, -0.0011178955901414156, -0.02602093480527401, 0.023178722709417343, -0.04736201837658882, 0.021059315651655197, 0.0012526556383818388, -0.004235752392560244, -0.0057671163231134415, 0.01267969235777855, -0.014860354363918304, 0.023141970857977867, 0.0104132741689682, -0.022100642323493958, -0.005659920629113913, 0.04126106575131416, -0.009580211713910103, -0.009335193783044815, 0.011528106406331062, 0.01606094278395176, 0.01998123526573181, -0.0007848239620216191, -0.0038529112935066223, -0.00015840044943615794, 0.010695044882595539, -0.01116057951003313, -0.012557183392345905, 0.03734077513217926, 0.0021990383975207806, -0.018180351704359055, -0.0012090117670595646, -0.04846460372209549, 0.030945800244808197, -0.028250599279999733, -0.012201907113194466, -0.02295820601284504, 0.0053475224412977695, -3.976760490331799e-05, 0.002029057126492262, 0.009255562908947468, 0.02986771985888481, 0.04721501097083092, 0.01906241662800312, 0.06287167221307755, 0.013096223585307598, -0.0037855312693864107, -0.01664898730814457, -0.032954949885606766, 0.02621694840490818, -0.02328898012638092, -0.003258742159232497, 0.03187686949968338, -0.0677720382809639, -0.010529657825827599, 0.020581530407071114, 0.010676668956875801, -0.035993173718452454, 0.019785219803452492, -0.018327362835407257, -0.016501976177096367, 0.033591996878385544, -0.03449856489896774, -0.016697991639375687, 0.013623012229800224, 0.01399054005742073, 0.024599827826023102, 0.009990617632865906, 0.017653562128543854, 0.016428470611572266, -0.013132976368069649, -0.00894929002970457, -0.021745366975665092, -0.040624018758535385, 0.0022541675716638565, 0.0004804653872270137, -0.020961306989192963, -0.0131697291508317, 0.042584165930747986, -0.029353180900216103, 0.013059470802545547, -0.003610955784097314, -0.02413429319858551, -0.02094905637204647, 0.014848103746771812, 0.0008315305458381772, 0.03520911559462547, -0.0060856398195028305, -0.0034976350143551826, 0.004444018006324768, 0.005932503379881382, -0.026682483032345772, 0.013549506664276123, -0.0404525063931942, 0.015142125077545643, -0.003908040467649698, 0.02368100918829441, -0.002689074957743287, 0.056942231953144073, -0.014958362095057964, 0.009482204914093018, 0.012471427209675312, 0.01359851099550724, -0.014162052422761917, 0.012018143199384212, 0.0018927656346932054, 0.0339595228433609, -0.022333409637212753, -0.008667519316077232, 0.00923106074333191, 0.03383701667189598, -0.025996431708335876, 0.05640319362282753, -0.01983422413468361, 0.007025897037237883, -0.015350391156971455, 0.004162246827036142, -0.01879289746284485, 0.06223462522029877, -0.019895479083061218, 0.009292315691709518, -0.043735750019550323, -0.05625618249177933, -0.01802108995616436, 0.013218732550740242, -0.002352174837142229, -0.011944637633860111, -0.012814451940357685, -0.0030703844968229532, 0.0254328902810812, -0.017077770084142685, -0.02165960893034935, -0.021426841616630554, 0.010137628763914108, -0.037561289966106415, -0.04692098870873451, 0.020606031641364098, -0.025775915011763573, -0.015913933515548706, 0.0006064200424589217, -0.014333565719425678, -0.017665812745690346, 0.0026385397650301456, 0.01522788219153881, 0.008447002619504929, 0.02712351642549038, -0.0011286151129752398, -0.05130681395530701, -0.014921609312295914, -0.03623819351196289, 0.020263006910681725, -0.017139023169875145, 0.02114507183432579, 0.011987515725195408, -0.005500658880919218, -0.0029233735986053944, -0.01356175821274519, 0.008600139059126377, -0.02016499824821949, 0.0012074803235009313, -0.004088741261512041, -0.03349398821592331, -0.0018942970782518387, 0.018560130149126053, -0.01265519019216299, 0.002324610250070691, 0.020642783492803574, -0.00658486457541585, -0.011963014490902424, 0.008692020550370216, 0.01640396937727928, 0.026952004060149193, 0.0461859330534935, -0.015791423618793488, -0.027809567749500275, -0.01460308488458395, 0.039545938372612, 0.004425641614943743, 0.0132432347163558, 0.007607815321534872, 0.019037915393710136, 0.01678374782204628, 0.003120919456705451, 0.011619988828897476, -0.017090020701289177, 0.008918662555515766, 0.005218887701630592, -0.01476234756410122, -0.009451577439904213, -0.036140184849500656, 0.010070248506963253, 0.00833061896264553, -0.008048848249018192, 0.014835852198302746, 0.012244785204529762, 0.002897340338677168, -0.015913933515548706, 0.002463964279741049, 0.004401139449328184, -0.022419165819883347, -0.015362641774117947, 0.017004264518618584, -0.01945444568991661, -0.012220283038914204, -0.03168085590004921, 0.0027487981133162975, 0.03655671700835228, 0.02426905371248722, -0.010419399477541447, -0.0027181708719581366, 0.0043582613579928875, -0.041016049683094025, -0.00887578446418047, -0.017653562128543854, -0.0049738697707653046, -0.036532215774059296, 0.01666123792529106, 0.04574489966034889, -0.001661529764533043, 0.003696712199598551, 0.018290609121322632, -0.02803008258342743, -0.015644412487745285, -0.00388660142198205, -0.017273783683776855, 0.003718151245266199, 0.0018253856105729938, -0.008306117728352547, -0.011865006759762764, -0.00715453177690506, -0.025261377915740013, 0.005733426194638014, 0.004946304950863123, 0.026682483032345772, -0.018658136948943138, 0.010891059413552284, 0.0057763042859733105, 0.005935566034168005, -0.011068698018789291, 0.00502593582496047, -0.010266263037919998, 0.0057701789774000645, -0.011865006759762764, 0.006156082730740309, 0.027368534356355667, 0.012777700088918209, 0.03780630975961685, -0.00839187391102314, -0.011754748411476612, 0.011344343423843384, -0.008079475723206997, 0.013279986567795277, 0.036458708345890045, -0.004346010275185108, -0.029108162969350815, 0.02932867966592312, -0.030284250155091286, 0.020765293389558792, 0.016599982976913452, 0.004459331277757883, -0.006670620758086443, -0.016636736690998077, 0.011840504594147205, -0.01138722151517868, 0.006208148784935474, -0.0038743503391742706, -0.01587717980146408, -0.016354965046048164, 0.039790958166122437, -0.02043451927602291, 0.012642939575016499, -0.007148406468331814, -0.010082499124109745, -0.0051025040447711945, 0.03550313785672188, -0.0013743990566581488, 0.01711452193558216], [-0.012356617487967014, 0.03894206881523132, 0.04554162546992302, 0.050315771251916885, -0.015410667285323143, 0.006827733013778925, 0.02539191208779812, -0.007734587416052818, 0.008015419356524944, -0.014486261643469334, -0.056494079530239105, -0.004575224593281746, 0.026281215250492096, -0.023589905351400375, -0.024970663711428642, 0.03964414820075035, 0.01804346963763237, 0.03377007320523262, 0.032459523528814316, 0.0007744826143607497, 0.02401115372776985, 0.017013750970363617, -0.0034548211842775345, 0.013327828608453274, -0.03173404186964035, -0.0032295705750584602, -0.021577274426817894, 0.019272111356258392, -0.0021764496341347694, -0.06276600062847137, 0.030704321339726448, -0.04083768278360367, 0.06889750063419342, -0.02700669877231121, 0.012461929582059383, -0.03660179674625397, 0.024081362411379814, -0.019763566553592682, 0.05527713894844055, 0.011104573495686054, -0.01648719049990177, 0.02798961102962494, -0.00960680190473795, -0.01611274853348732, -0.004598627332597971, 0.01013921294361353, 0.0014648617943748832, -0.016159553080797195, 0.005303633399307728, 0.025438718497753143, 0.03451896086335182, 0.004853131715208292, -0.05242201313376427, -0.025508925318717957, -0.04863077774643898, 0.004636656958609819, -0.021460261195898056, 0.0318276509642601, 0.019412526860833168, -0.0356890931725502, 0.014158624224364758, -0.03538485988974571, -0.010806189849972725, 0.022150641307234764, 0.006166607141494751, 0.0349402092397213, -0.01158432848751545, 0.005201246589422226, -0.07278234511613846, -0.01385438907891512, 0.011338600888848305, 0.010145063512027264, 0.038146376609802246, -0.018289197236299515, 0.008770155720412731, 0.043365173041820526, -0.0006209024577401578, -0.013690570369362831, -0.01786794885993004, 0.008249446749687195, -0.019506137818098068, 0.04072067141532898, -0.021729392930865288, -0.012192798778414726, 0.0045927767641842365, -0.04399704560637474, -0.04942646995186806, 0.003364135976880789, -0.012227903120219707, 0.05789824202656746, -0.004142275080084801, -0.012274707667529583, -0.0028639035299420357, 0.08251786231994629, 0.005991087295114994, -0.0065410505048930645, -0.014439456164836884, -0.03231910616159439, -0.003636192064732313, -0.0008476160001009703, -0.0068218824453651905, 0.025040872395038605, 0.03114897385239601, 0.02642163075506687, 0.050128549337387085, -0.06847625225782394, -0.005777537822723389, -0.007617573719471693, -0.03636777028441429, -0.01591382548213005, -0.0463373139500618, -0.02162408083677292, 0.02105071395635605, 0.06243836134672165, -0.021893210709095, 0.0065410505048930645, 0.059957679361104965, -0.010057304054498672, 0.020231621339917183, -0.016545698046684265, 0.006178308743983507, 0.02431538887321949, 0.023016540333628654, -0.051766738295555115, 0.024923859164118767, -0.0231686569750309, -0.02440899983048439, -0.004885310307145119, -0.06679125875234604, -0.024526013061404228, 0.04678196460008621, -0.009753068909049034, 0.010531208477914333, 0.011947070248425007, 0.015176640823483467, -0.005119337234646082, -0.06009809300303459, -0.011081171222031116, -0.01399480551481247, 0.00016921237693168223, 0.03601673245429993, -0.0006596631719730794, 0.038637831807136536, -0.0196816585958004, -0.02403455786406994, 0.003797085490077734, 0.009870082139968872, 0.027451349422335625, -0.004785848781466484, -0.01139125693589449, -0.0032997785601764917, -0.009097793139517307, 0.050315771251916885, -0.024291986599564552, 0.004671760834753513, 0.039012275636196136, -0.017388194799423218, 0.04294392466545105, 0.008717499673366547, 0.018640238791704178, -0.06356169283390045, -0.035361457616090775, -0.034869998693466187, -0.001012166147120297, 0.03547846898436546, -0.014158624224364758, -0.04476933553814888, 0.02681947685778141, -0.042686495929956436, -0.053030483424663544, -0.010630669072270393, 0.0023973125498741865, 0.003320255782455206, 0.009466385468840599, -0.034308336675167084, -0.006646362598985434, 0.031195778399705887, 0.01254383847117424, -0.0770416408777237, -0.0034021653700619936, -0.028340650722384453, -0.01853492669761181, -0.04373961687088013, -0.0402994230389595, 0.025040872395038605, -0.041165322065353394, 0.031031958758831024, 0.02323886565864086, -0.013105503283441067, 0.014895808883011341, -0.03470618277788162, 0.013164009898900986, -0.012497033923864365, 0.03723366931080818, -0.0066580637358129025, 0.015878722071647644, -0.03011925518512726, -0.020594362169504166, 0.020687973126769066, -0.018698744475841522, -0.01699034869670868, -0.04668835550546646, 0.01639358140528202, 0.06978680193424225, -0.11542204022407532, -0.00677507696673274, -0.01677972450852394, 0.00564297242090106, 0.03302118927240372, -0.025719549506902695, -0.003802936291322112, -0.02016141265630722, -0.002000929554924369, 0.02796620875597, -0.0007964225951582193, 0.011122126132249832, -0.023016540333628654, 0.04446510225534439, -0.042780108749866486, 0.02681947685778141, 0.011046066880226135, 0.017434999346733093, -0.01629997044801712, 0.0062192631885409355, -0.03692943602800369, 0.041633374989032745, 0.035642288625240326, -0.0034489706158638, 0.039012275636196136, -0.011490718461573124, 0.0034577467013150454, 0.006780928000807762, -0.005926729645580053, -0.03318500518798828, -0.0027278754860162735, 0.036508187651634216, 0.04844355583190918, -0.0069037918001413345, 0.045705441385507584, -0.01796155981719494, 0.0217995997518301, 0.0032295705750584602, 0.026000382378697395, -0.001039225491695106, 0.033816877752542496, -0.014497962780296803, -0.00902758538722992, 0.004136424511671066, 0.04170358553528786, -0.03018946386873722, -0.03866123408079147, 0.02604718692600727, 0.01794985868036747, -0.06314044445753098, -0.006728271953761578, 0.01794985868036747, -0.051673129200935364, 0.01842961460351944, 0.005812641698867083, 0.0008081239648163319, 0.03089154325425625, 0.0035659840796142817, 0.019798671826720238, -0.004990622401237488, -0.041820596903562546, 0.004434808623045683, -0.0057892389595508575, -0.017680728808045387, 0.017903054133057594, -0.0015621292404830456, -0.06735292822122574, -0.008109030313789845, 0.016370177268981934, -0.051205072551965714, -0.01026792824268341, -0.001632337225601077, -0.0380527637898922, 0.0012125516077503562, 0.01008070632815361, 0.07877343893051147, -0.04942646995186806, 0.005344587843865156, -0.04355239495635033, -0.04224184527993202, 0.016662711277604103, -0.019529540091753006, -0.005897476337850094, 0.0006278501241467893, 0.011783251538872719, 0.03292757645249367, 0.07952231913805008, -0.02266550064086914, -0.028223637491464615, -0.018265794962644577, 0.07282915711402893, 0.00256990734487772, 0.012157694436609745, -0.05747699365019798, -0.0036654453724622726, 0.0029531263280659914, 0.006108100526034832, 0.01263744942843914, 0.010425896383821964, -0.028340650722384453, -0.030938349664211273, 0.006862837355583906, -0.03976115956902504, 0.03318500518798828, -0.005192470736801624, -0.023121852427721024, -0.06192350387573242, 0.0018517373828217387, -0.028223637491464615, -0.05106465891003609, -0.06604237854480743, -0.01603083871304989, -0.009191404096782207, 0.029346967115998268, 0.01862853765487671, -0.012192798778414726, 0.040369629859924316, 0.05317090079188347, 0.00968871172517538, -0.01651059463620186, -0.01119233388453722, 0.002606474095955491, 0.044441696256399155, 0.034495558589696884, -0.04872439056634903, 0.012438526377081871, -0.03234250843524933, 0.0019307214533910155, 0.03601673245429993, -0.016335073858499527, -0.0023431938607245684, -0.030236268416047096, 0.024245182052254677, -0.002692771377041936, -0.017119063064455986, 0.022548487409949303, 0.017692429944872856, -0.04088449105620384, -0.018792355433106422, -0.011291795410215855, 0.051860347390174866, 0.025976980105042458, 0.05279645696282387, 0.08818131685256958, -0.029019329696893692, -0.022724006325006485, -0.012859774753451347, -0.03915269300341606, -0.01593722775578499, -0.03611034154891968, -0.016241462901234627, -0.05579200014472008, 0.01998589187860489, -0.019798671826720238, 0.0028097848407924175, 0.02789600007236004, -0.003302703844383359, -0.016346774995326996, 0.05274965241551399, 0.030634114518761635, 0.03966755047440529, 0.04235886037349701, -0.03896547108888626, 0.0051134866662323475, 0.02114432491362095, 0.005043278448283672, -0.01490751001983881, -0.01649889349937439, -0.019061487168073654, 0.00035981627297587693, -0.006242665927857161, -0.005628345534205437, 0.05780462920665741, 0.026936490088701248, -0.0428503155708313, 0.0004984040278941393, -0.025836564600467682, 0.006096399389207363, -0.0039404272101819515, 0.001189880189485848, 0.045190583914518356, -0.018195586279034615, -0.06061295419931412, -0.004118872340768576, -0.029019329696893692, 0.05209437385201454, -0.004876534454524517, 0.01641698367893696, -0.02635142207145691, 0.0012520436430349946, -0.06758695095777512, -0.02922995202243328, 0.015984034165740013, -0.027474751695990562, -0.02574295364320278, -0.010531208477914333, -0.0347529873251915, -0.0238239336758852, -0.02962779812514782, -0.028902314603328705, -0.019833775237202644, 0.01269595604389906, 0.014006506651639938, -0.021156026050448418, 0.007061759941279888, -0.009320119395852089, 0.04025261849164963, -0.022045329213142395, 0.03730387985706329, 0.002344656502828002, 0.04937966540455818, 0.018932770937681198, -0.010929053649306297, 0.021378351375460625, -0.038263387978076935, -0.04806911572813988, 0.03011925518512726, 0.044137462973594666, -0.008132432587444782, 0.007190474774688482, -0.02151876874268055, 0.059770457446575165, -0.023812230676412582, -0.03875484690070152, -0.039527133107185364, -0.024923859164118767, 0.05129868537187576, 0.004355824552476406, -0.013678869232535362, 0.05162632092833519, -0.0627191960811615, -0.07788413763046265, 0.0019117067568004131, 0.01505962759256363, -0.04631391167640686, -0.06262558698654175, -0.01862853765487671, -0.02468983270227909, 0.006628810428082943, 0.03117237612605095, -0.013959701173007488, -0.019552942365407944, -0.019903983920812607, 0.024549415335059166, -8.030960452742875e-05, -0.017388194799423218, 0.006336276885122061, -0.027334336191415787, -0.08228383958339691, 0.024291986599564552, 0.0028887689113616943, 0.041726987808942795, -0.03325521573424339, -0.029955435544252396, 0.04296732693910599, -0.06098739430308342, 0.002675219438970089, 0.014497962780296803, 0.07793094217777252, 0.005221724044531584, 0.03802936151623726, 0.018207289278507233, -0.002695696661248803, -0.013491647318005562, 0.029674604535102844, 0.003320255782455206, -0.0027176367584615946, 0.00014041610120330006, -0.004812176804989576, -0.02133154682815075, 0.004402630031108856, -0.027755584567785263, -0.047133006155490875, -0.006476692855358124, -0.007933510467410088, -0.05246881768107414, -0.008571233600378036, 0.003756130812689662, -0.039690952748060226, -0.042312052100896835, 0.034589167684316635, -0.06711889803409576, 0.02374202385544777, 0.037771932780742645, -0.02237296663224697, 0.0016147852875292301, -0.04130573943257332, 0.017224375158548355, 0.01747010461986065, -0.00998709537088871, 0.035548679530620575, 0.03976115956902504, 0.008740902878344059, -0.051673129200935364, 0.06117461621761322, 0.030025644227862358, -0.00021738899522460997, -0.02635142207145691, 0.020793285220861435, 0.03086814098060131, 0.004809251520782709, 0.024666428565979004, 0.021390054374933243, -0.009770620614290237, 0.035829510539770126, -0.00487360917031765, -0.02990863099694252, -0.02691308781504631, 0.005891625769436359, -0.021015610545873642, -0.0056254202499985695, -0.01805517077445984, -0.021495366469025612, 0.023039942607283592, -0.005166142713278532, 0.043271563947200775, -0.01583191566169262, 0.031500011682510376, -0.04668835550546646, -0.027568362653255463, 0.008220192976295948, -0.00016985229740384966, -0.023765426129102707, -0.04923924803733826, -0.015890423208475113, 0.04102490469813347, 0.014731990173459053, 0.011830057017505169, -0.049052026122808456, 0.014076714403927326, 0.024643026292324066, -0.001847349456511438, -0.01736479252576828, 0.01564469374716282, 0.015972333028912544, -0.027544960379600525, 0.028247039765119553, 0.007079312112182379, -0.008202641271054745, -0.00641233567148447, -0.009723815135657787, -0.03629756346344948, 0.008190939202904701, 0.01707225851714611, 0.012801268137991428, 0.034004099667072296, 0.018359405919909477, 0.01490751001983881, 0.013000191189348698, -0.049754105508327484, -0.002583071356639266, -0.0235431008040905, -0.01659250259399414, -0.009437132626771927, 0.0009529280359856784, 0.011900264769792557, 0.011596030555665493, 0.03887185826897621, 0.010911501944065094, 0.005654673557728529, 0.040393032133579254, 0.005982311442494392, 0.013573557138442993, 0.0010267928009852767, -0.053030483424663544, 0.023192061111330986, 0.015387265011668205, 0.005692703183740377, 0.012298110872507095, -0.0022144790273159742, -0.018932770937681198, 0.019822074100375175, -0.01099341083317995, -0.054996307939291, -0.03578270599246025, 0.00377660826779902, 0.006254367530345917, 0.01919020153582096, -0.01510643307119608, -0.006956447847187519, -0.00027425019652582705, 0.007325040176510811, -0.01490751001983881, -0.005128113087266684, 0.008910572156310081, 0.00893397442996502, 0.03058730810880661, -0.022045329213142395, 0.03501041606068611, -0.001257163006812334, 0.03325521573424339, -0.014416053891181946, -0.028059817850589752, -0.014849003404378891, -0.02267720177769661, -0.0026839952915906906, -0.0022920004557818174, -0.013292725197970867, 0.017715832218527794, -0.009314268827438354, -0.0023373430594801903, -0.03030647709965706, -0.04090789332985878, 0.01631167158484459, 0.02564934268593788, 0.03657839447259903, -0.01709566079080105, 0.02362501062452793, 0.04661814868450165, -0.015539382584393024, -0.018675342202186584, 0.0273109320551157, -0.0325765386223793, -0.04151636362075806, -0.031710635870695114, 0.03557208180427551, -0.009208956733345985, 0.030376683920621872, -0.014650080353021622, -0.000903197331354022, -0.02074648067355156, 0.023964349180459976, -0.033629655838012695, -0.028434261679649353, -0.002498236484825611, -0.027825791388750076, -0.007243130821734667, 0.03781873732805252, 0.015562784858047962, 0.028925718739628792, 0.008266998454928398, -0.03271695226430893, 0.011315197683870792, 0.01793815754354, 0.00685113575309515, 0.036344368010759354, -0.00188099080696702, -0.013082101009786129, 0.0017625147011131048, -0.0177509356290102, 0.03896547108888626, 0.020617764443159103, 0.006266068667173386, 0.005444049369543791, -0.029557591304183006, -0.009355222806334496, 0.020032698288559914, 0.01621806062757969, 0.013456543907523155, -0.0728759616613388, -0.0008688246598467231, 0.017704131081700325, 0.006745823659002781, 0.04952007904648781, 0.016358476132154465, 0.017797742038965225, -0.01393629889935255, 0.010624818503856659, -0.018406210467219353, 0.011993875727057457, 0.00037005494232289493, 0.008746753446757793, 0.013210815377533436, -0.034495558589696884, -0.010028050281107426, 0.020044399425387383, 0.011882713064551353, -0.015246848575770855, -0.005332886707037687, -0.039807967841625214, 0.022361265495419502, -0.01988057978451252, -0.036344368010759354, -0.014509664848446846, -0.03288077190518379, 0.00810317974537611, 0.030751127749681473, 0.014065013267099857, -0.003946277778595686, 0.00735429348424077, -0.019354019314050674, -0.011168931610882282, 0.02873849682509899, -0.0034138665068894625, 0.012192798778414726, -0.00040844996692612767, -0.01274276152253151, 0.03875484690070152, -0.010297181084752083, -0.0065995571203529835, 0.008606337010860443, -0.01640528254210949, 0.014556469395756721, -0.019143395125865936, -0.003016020869836211, -0.025789758190512657, 0.003656669519841671, -0.018406210467219353, 0.01601913757622242, -0.04420766979455948, -0.0020945402793586254, 0.0036420428659766912, 0.02113262377679348, 0.0016162479296326637, 0.03416791930794716, -0.027451349422335625, -0.026936490088701248, -0.03592311963438988, -0.04863077774643898, -0.0027454274240881205, -0.046571340411901474, 0.002624026034027338, -0.006236815359443426, -0.034284934401512146, 0.002651816699653864, -0.00970041286200285, -0.028130026534199715, 0.04495655745267868, -0.045682039111852646, -0.05827268585562706, 0.01756371557712555, -0.0029560516122728586, 0.016065942123532295, -0.012099187821149826, 0.0052539026364684105, -0.021471962332725525, 0.03049369715154171, -0.015995735302567482, -0.0026401153299957514, -0.00036255878512747586, 0.0009222120279446244, 0.005289006512612104, -0.0397377572953701, -0.02141345664858818, -0.033138200640678406, -0.01277786586433649, -0.004554747603833675, 0.021729392930865288, 0.009489788673818111, -0.023800529539585114, -0.008501024916768074, -0.03288077190518379, 0.015223446302115917, -0.020793285220861435, -0.032950978726148605, 0.030751127749681473, -0.017013750970363617, 0.007798944599926472, -0.0051953960210084915, -0.007114415988326073, -0.007986166514456272, -0.02876189909875393, -0.0011884175473824143, -0.0003497604338917881, -0.025813160464167595, 0.04427788034081459, -0.0007993479375727475, 0.010209420695900917, 0.01099341083317995, 0.046945784240961075, 0.024057960137724876, -0.048864804208278656, -0.0024426551535725594, -0.0314532071352005, 0.01727118156850338, 0.014334144070744514, -0.040182407945394516, 0.006289471406489611, -0.008840364404022694, 0.000351954426150769, 0.006933045107871294, 0.05415381118655205, -0.004736118484288454, 0.004601552616804838, 0.0009456147090531886, -0.021097520366311073, 0.0009931514505296946, -0.012567241676151752, 0.02237296663224697, 0.0320148728787899, 0.04102490469813347, -0.011180632747709751, 0.038146376609802246, 0.009519041515886784, -0.022841019555926323, 0.015972333028912544, -0.007225578650832176, -0.02642163075506687, 0.008237744681537151, -0.030329879373311996, 0.03627416118979454, -0.012497033923864365, 0.012075785547494888, -0.010256226174533367, -0.027521556243300438, -0.026211006566882133, 0.0023943872656673193, -0.002157435053959489, -0.009934439323842525, 0.01105191744863987, 0.05106465891003609, -0.06356169283390045, -0.006628810428082943, 0.005678076297044754, 0.04736703261733055, -0.029183147475123405, -0.0031622876413166523, 0.007529813796281815, -0.01785624772310257, 0.007360144052654505, -0.005900401622056961, -0.01128594484180212, -0.0012227902188897133, -0.02296973392367363, -0.0029940810054540634, -0.011209885589778423, 0.026023784652352333, -0.004952593240886927, 0.022981436923146248, 0.016042539849877357, 0.019798671826720238, -0.0007854526047594845, -0.0017595893004909158, 0.021448560059070587, 0.03781873732805252, 0.012227903120219707, 0.010759384371340275, -0.004677611403167248, -0.019506137818098068, 0.023683516308665276, 0.008928123861551285, -0.02248997986316681, -0.006956447847187519, -0.018792355433106422, -0.008109030313789845, -0.0028946194797754288, 0.010484402999281883, 0.02046564780175686, -0.015188341960310936, -0.012087486684322357, -0.0065176477655768394, 0.01022112276405096, -0.043669410049915314, 0.004984771832823753, -0.0009792561177164316, 0.010823741555213928, 0.013117204420268536, 0.004782923497259617, 0.010314732789993286, -0.0016162479296326637, 0.0468989796936512, 0.02383563481271267, 0.013421439565718174, 0.004952593240886927, -0.0006165144732221961, -0.03667200729250908, -0.02712371200323105, -0.018359405919909477, 0.014404352754354477, -0.02574295364320278, 0.0067048692144453526, 0.021167729049921036, 0.03910588473081589, -0.005727807059884071, 0.008565382100641727, 0.004935041069984436, 0.01708395965397358, -1.374679141008528e-05, 0.012906580232083797, 0.011473165825009346, -0.003881920361891389, 0.007453755009919405, -0.004785848781466484, -0.02082838863134384, 0.003592312103137374, -0.013491647318005562, 0.043646007776260376, -0.0072021763771772385, -0.009741367772221565, 0.0033290318679064512, 0.02691308781504631, 0.028972523286938667, -0.017715832218527794, 0.029393771663308144, 0.02922995202243328, 0.006816031876951456, -0.002613787306472659, 0.019611449912190437, 0.040276020765304565, -0.021951718255877495, -0.019927386194467545, 0.03147660940885544, 0.011543374508619308, 0.025345107540488243, -0.015668097883462906, -0.0038468162529170513, 0.010923203080892563, 0.015457472763955593, 0.0018429614137858152, -0.03222549706697464, -0.005953057669103146, -0.0001460839412175119, -0.04947327449917793, 0.00814998522400856, 0.013000191189348698, -0.03157022222876549, 0.013678869232535362, 0.009577549062669277, -0.013959701173007488, -0.0702548623085022, 0.02691308781504631, 0.01773923449218273, -0.035946521908044815, 0.00760002201423049, -0.00017670854867901653, 0.02604718692600727, -0.0012067009229213, 0.04373961687088013, 0.015527681447565556, -0.014521365985274315, 0.0002102584985550493, -0.0009865694446489215, -0.015703201293945312, 0.024081362411379814, -0.01600743643939495, 0.0037912349216639996, -0.013011892326176167, 0.02325056679546833, 0.06370210647583008, 0.03339562937617302, 0.04310774430632591, 0.00031282808049581945, 0.01649889349937439, 0.0028244114946573973, -0.016931843012571335, -0.003156437072902918, -0.017680728808045387, 0.024736637249588966, -0.005885775201022625, -0.02305164374411106, -0.001506547792814672, -0.04767126962542534, 0.010788637213408947, 0.007050058804452419, -0.009823276661336422, 0.014018207788467407, 0.000954390736296773, 0.006131503265351057, 0.015984034165740013, -0.03524444252252579, 0.006377231329679489, 0.05045618861913681, 0.05607283115386963, -0.02064116857945919, 0.048677582293748856, 0.0007664379081688821, -0.043458785861730576, 0.01611274853348732, -0.016323372721672058, -0.05434103310108185, 0.043950241059064865, 0.019939087331295013, 0.019435929134488106, 0.005681001581251621, -2.9504752092179842e-05, 0.02873849682509899, 0.01089979987591505, 0.016358476132154465, -0.010250375606119633, 0.0323893167078495, -0.042686495929956436, -0.012625748291611671, 0.025789758190512657, 0.022057030349969864, -0.020699674263596535, -0.022817617282271385, -0.000574462756048888, 0.0424758717417717, 0.04554162546992302, -0.029066134244203568, -0.016826530918478966, 0.010636520572006702, -0.0012227902188897133, -0.02808322198688984, -0.030423490330576897, 0.012087486684322357, 0.022805916145443916, -0.014650080353021622, 0.04165677726268768, 0.013164009898900986, -0.0058623724617064, 0.017399895936250687, 0.02536850981414318, 0.050690215080976486, -0.02201022394001484, -0.0007375502027571201, -0.0274981539696455, 0.01776263676583767, 0.002675219438970089, 0.013152308762073517, 0.004285616800189018, 0.04830314218997955, 0.03398069739341736, 0.03706985339522362, -0.012052382342517376, -0.03138300031423569, 0.034589167684316635, -0.059208791702985764, 0.015211745165288448, -0.03819318115711212, -0.024877052754163742, -0.03346583992242813, 0.02246657758951187, 0.016428684815764427, -0.023964349180459976, 0.051392294466495514, 0.014193728566169739, 0.007717035245150328, -0.0033816879149526358, -0.009285015054047108, 0.001165746245533228, -0.05560477823019028, -0.010847143828868866, -0.04118872433900833, 0.06314044445753098, 0.01621806062757969, 0.0401122011244297, 0.008553680963814259, 0.02314525470137596, -0.0026152499485760927, -0.01152582187205553, 0.03463597223162651, 0.008582934737205505, -0.02199852280318737, -0.03791235014796257, 0.018757252022624016, -0.012719359248876572, -0.01288317795842886, -0.003577685449272394, 0.011244989931583405, -0.002893156837671995, -0.01128594484180212, 0.03161702677607536, 0.005315334536135197, 0.014930912293493748, 0.017388194799423218, 0.008840364404022694, 0.00346359726972878, -0.02981502003967762, -0.010420044884085655, -0.00819679070264101, -0.013222516514360905, -0.028504470363259315, -0.0027556661516427994, -0.017926456406712532, -0.03945692628622055, 0.015305356122553349, -0.013210815377533436, 0.02644503302872181, 0.0006541781476698816, 0.012497033923864365, -0.0180317685008049, -0.02257188968360424, -0.009524893015623093, 0.017481805756688118, 0.01610104739665985, 0.012801268137991428, 0.016674412414431572, -0.003165213158354163, 0.004818027839064598, 0.026889683678746223, -0.02944057621061802, -0.009934439323842525, -0.041165322065353394, 0.005037427879869938, 0.00677507696673274, -0.018078573048114777, 0.016475489363074303, 0.003405090654268861, -0.01404161099344492, -0.016475489363074303, -0.02681947685778141, 0.018195586279034615, 0.019061487168073654, 0.0397377572953701, 0.009402028284966946, -0.015457472763955593, 0.03447215259075165, 0.015855317935347557, 0.005721956491470337, 0.03809957206249237, 0.041633374989032745, 0.005040353164076805, -0.05036257579922676, 0.031008556485176086, 0.0026225633919239044, 0.026070591062307358, 0.0004281959845684469, 0.015867020934820175, -0.006856986787170172, -0.003241271711885929, -0.03636777028441429, 0.0066580637358129025, -0.02780238911509514, 0.04603308066725731, 0.013819284737110138, -0.003946277778595686, -0.01297678891569376, 0.013819284737110138, 0.017891352996230125, 0.0019994669128209352, 0.014568171463906765, -0.007330890744924545, 0.02478344365954399, -0.028878912329673767, -0.010735981166362762, -0.016276566311717033, -0.01880405656993389, 0.010291330516338348, -0.021963419392704964, -0.00735429348424077, 0.0030657516326755285, -0.034776389598846436, 0.023110151290893555, 0.006429887376725674, 0.04523738846182823, -0.01582021452486515, -0.016136150807142258, -0.0322020947933197, -0.02315695583820343, -0.002972140908241272, 0.014533067122101784, -0.005142739973962307, -0.03009585291147232, 0.0024528938811272383, -0.0008103179279714823, 0.019541241228580475, 0.010642371140420437, -0.0037064000498503447, 0.007032506633549929, -0.00065454380819574, 0.0009287940338253975, -0.039410121738910675, 0.06000448390841484, -0.03302118927240372, -0.007939361035823822, -0.02585996687412262, 0.018558328971266747, -0.02153046987950802, -0.0008527353056706488, 0.016381878405809402, -0.0017215600237250328, 0.014427755028009415, -0.023671815171837807, 0.016241462901234627, 0.005675151012837887, -0.02064116857945919, 0.014497962780296803, -0.02093370072543621, 0.03774853050708771, 0.04196101427078247, -0.031687233597040176, 0.013093802146613598, 0.005204171873629093, -0.015176640823483467, 0.026796074584126472, 0.010437597520649433, -0.035642288625240326, -0.027076905593276024, 0.01085884589701891, 0.015176640823483467, -0.01089979987591505, 0.02074648067355156, -0.02635142207145691, 0.013234217651188374, -0.012906580232083797, 0.00128495367243886, 0.013877792283892632, -0.021834705024957657, -0.028223637491464615, -0.038848455995321274, 0.05246881768107414, 0.042405664920806885, 0.008430817164480686, 0.015621291473507881, 0.00743035227060318, 0.0138894934207201, 0.005692703183740377, 0.03213188424706459, -0.008284550160169601, 0.023309074342250824, 0.03505722060799599, -0.02286442369222641, 0.030025644227862358, 0.017341388389468193, -0.011672088876366615, -0.00760002201423049, -0.016522295773029327, 0.01966995559632778, 0.03592311963438988, -0.0048589822836220264, 0.009899335913360119, 0.011402958072721958, 0.028808705508708954, -0.008027120493352413, -0.03077453002333641, 0.018511522561311722, 0.016475489363074303, -0.03271695226430893, 0.011941219680011272, 0.00182687200140208, -0.00011555075616342947, -0.02941717393696308, -0.016381878405809402, 0.0072606829926371574, 0.022525083273649216, -0.0024426551535725594, 0.027240725234150887, 0.00970041286200285, 0.0018239467171952128, 0.0035572079941630363, -0.0018458866979926825, 0.008957377634942532, 0.005967684555798769, -0.004762446507811546, 0.05874073877930641, 0.03905908018350601, 0.010390792042016983, -0.016838232055306435, 0.017879651859402657, 0.001744962646625936, 0.00796276330947876, 0.02595357783138752, -0.02529830113053322, -0.017704131081700325, 0.0049642943777143955, -0.020723076537251472, 0.024151571094989777, -0.011876862496137619, -0.03501041606068611, -0.006002788431942463, 0.007635125890374184, -0.023472892120480537, 0.02392924576997757, -0.02016141265630722, -0.01793815754354, 0.018745550885796547, 0.026187604293227196, -0.03849741443991661, -0.012859774753451347, 0.0004380689933896065, 0.009519041515886784, -0.006476692855358124, 0.0009353760397061706, 0.028059817850589752, 0.031031958758831024, -0.010525356978178024, -0.016838232055306435, -0.024666428565979004, 0.0030657516326755285, -0.08827492594718933, 0.007471307180821896, 0.01696694642305374, 0.002910708775743842, 0.002900470281019807, 0.02053585648536682, 0.004408480599522591, 0.022220848128199577, 0.012578942812979221, -0.009255761280655861, -0.0028010087553411722, 0.03753790631890297, 0.010700877755880356, 0.013444841839373112, 0.022618694230914116, 0.02412816695868969, 0.0010370314121246338, -0.005057905334979296, -0.030446892604231834, -0.014439456164836884, 0.011841758154332638, -0.011537523008883, 0.005464526824653149, 0.026468435302376747, 0.0035659840796142817, -0.0008563919691368937, -0.03107876516878605, -0.04629050940275192, 0.0016820679884403944, -0.02883210778236389, 0.0019131695153191686, 0.008068075403571129, 0.03077453002333641, 0.0035250294022262096, 0.007325040176510811, -0.007418651133775711, -0.0137958824634552, 0.036344368010759354, 0.01853492669761181, 0.06725931167602539, 0.0068452851846814156, -0.01486070454120636, -0.017236076295375824, -0.016440385952591896, 0.003876069560647011, -0.03470618277788162, -0.022922929376363754, 0.014205429702997208, -0.053404927253723145, 0.02026672475039959, 0.000841765315271914, 0.02691308781504631, -0.028598081320524216, 0.019845476374030113, -0.00365374400280416, -0.007178773637861013, 0.00511056138202548, 0.009384476579725742, -0.014533067122101784, 0.015972333028912544, -0.004958443809300661, 0.010788637213408947, -0.0015445771859958768, -0.011461464688181877, 0.014053312130272388, -0.011713043786585331, 0.0016849932726472616, 0.007547365967184305, -0.025134483352303505, -0.0019570495933294296, 0.014427755028009415, -0.0005580077413469553, -0.014533067122101784, 0.025228094309568405, -0.001506547792814672, 0.004692238289862871, -0.0022920004557818174, -0.026655657216906548, -0.043833229690790176, 0.018675342202186584, -0.01268425490707159, 0.030329879373311996, -0.00912119634449482, -0.011835907585918903, -0.013468245044350624, 0.004405555315315723, -0.028340650722384453, 0.021951718255877495, -0.04741383716464043, 0.013257620856165886, 0.007213877514004707, 0.02461962401866913, -0.010548760183155537, 0.03669540956616402, -0.03077453002333641, 0.011683790013194084, -0.01264915056526661, 0.02268890291452408, -0.019716762006282806, -0.010133362375199795, 0.025064274668693542, -0.01274276152253151, -0.013327828608453274, -0.024081362411379814, -0.025696147233247757, 0.01620635949075222, -0.029744811356067657, 0.027287529781460762, 0.000988032086752355, -0.03231910616159439, 0.005675151012837887, 0.0014056237414479256, -0.037959154695272446, 0.02383563481271267, -0.00011353958689142019, 0.024174973368644714, -0.036040134727954865, -0.03030647709965706, -0.025321705266833305, 0.011560926213860512, -0.027193918824195862, -0.020407140254974365, 0.008553680963814259, -0.0036274162121117115, -0.005762910936027765, -0.009238209575414658, -0.012064083479344845, -0.002215941669419408, 0.008963228203356266, -0.010396642610430717, -0.006184159312397242, -0.010051452554762363, -0.015785111114382744, -0.013725674711167812, 0.0238239336758852, -0.010782786644995213, -0.001796156051568687, 0.02142515778541565, -0.005651748273521662, 0.025415316224098206, 0.008097329176962376, 0.015258550643920898, -0.01735309138894081, -0.008670694194734097, 0.0003168504044879228, 0.024666428565979004, -0.011993875727057457, 0.005218798760324717, 0.0277789868414402, 0.006289471406489611, -0.021916614845395088, -0.017013750970363617, 0.015410667285323143, 0.003595237387344241, 0.004420182202011347, 0.009396177716553211, -0.018277496099472046, 0.00016966946714092046, -0.013386335223913193, -0.03655499219894409, 0.01919020153582096, 0.02006780169904232, -0.007763840723782778, -0.010970008559525013, 0.016756322234869003, 0.024479208514094353, 0.029557591304183006, -0.0016981572844088078, -0.023800529539585114, -0.023753724992275238, 0.0029019329231232405, 0.005754135083407164, 0.017399895936250687, 0.019318915903568268, -0.003759056096896529, 0.023004839196801186, 0.007681931369006634, 0.0065176477655768394, -0.013351231813430786, 0.027427947148680687, 0.011180632747709751, 0.0017391119617968798, 0.0033114799298346043, -0.00022378817084245384, -0.03433173894882202, 0.005578614771366119, 0.01510643307119608, -0.02036033570766449, 0.015574486926198006, -0.008986630477011204, 0.03559548407793045, -0.004168603103607893, -0.011654537171125412, -0.006470842286944389, -0.015890423208475113, -0.0013068936532363296, 0.013632063753902912, 0.01399480551481247, -0.03559548407793045, -0.005069606471806765, -0.018839161843061447, 0.034987013787031174, 0.01490751001983881, 0.015258550643920898, 0.009612652473151684, 0.013971402309834957, -0.008670694194734097, 0.0029692156240344048, -0.02780238911509514, -0.022805916145443916, -0.03173404186964035, -0.005142739973962307, 0.04081428050994873, 0.0032529730815440416, -0.0023402683436870575, 0.007237280253320932, -0.04933285713195801, 0.005613719113171101, 0.0030891543719917536, -0.018605133518576622, 0.01273106038570404, -0.009723815135657787, -0.02141345664858818, -0.011250840499997139, -0.030236268416047096, -0.00814998522400856, -0.0012315663043409586, -2.4156872314051725e-05, 0.03618055209517479, -0.029932033270597458, 0.010864696465432644, -0.02527489885687828, -0.014100117608904839, 0.01287147682160139, 0.005944281816482544, -0.03695283830165863, 0.004987697117030621, 0.026211006566882133, -0.004133499227464199, 0.03173404186964035, 0.027825791388750076, 0.012812970206141472, -0.013105503283441067, 0.01708395965397358, 0.019798671826720238, -0.011180632747709751, -0.015129835344851017, 0.028808705508708954, -0.002059436170384288, -0.03505722060799599, 0.03058730810880661, -0.013070398941636086, 0.02644503302872181, 0.011847608722746372, -0.010911501944065094, 0.005599092226475477, -0.018757252022624016, -0.006260218098759651, -0.060753367841243744, 0.02672586590051651, -0.0030247969552874565, -0.02094540186226368, -0.02073477767407894, 0.011596030555665493, 0.01660420373082161, -0.003214943688362837, -0.013924596831202507, 0.00868239626288414, -0.00028375754482112825, 0.0024324164260178804, 0.006582004949450493, 0.021003909409046173], [-0.02090422809123993, 0.003678693436086178, 0.04840105399489403, 0.04214045777916908, -0.007108386140316725, -0.017738357186317444, 0.02039436809718609, 0.013849198818206787, 0.0007803514017723501, 0.02085679955780506, -0.016362924128770828, 0.021082084625959396, 0.013505340553820133, -0.059902530163526535, -0.025564104318618774, 0.015734491869807243, 0.0009567270753905177, 0.042093027383089066, 0.020062366500496864, 0.008869178593158722, -0.003382263705134392, 0.04278074577450752, -0.002761243376880884, 0.027627253904938698, 0.0002332531730644405, -0.00022380448353942484, -0.029974978417158127, 0.03078126721084118, 0.029216118156909943, -0.01081375777721405, 0.09243866056203842, -0.028338685631752014, 0.07735631614923477, 0.024200526997447014, 0.023702524602413177, -0.0024144204799085855, 0.009005536325275898, 0.017264069989323616, 0.030378123745322227, 0.036994434893131256, -0.04709676280617714, 0.01465548761188984, -0.017477499321103096, -0.05150763690471649, 0.04937334358692169, -0.002627850044518709, 0.03644900396466255, -0.004401982296258211, -0.0035630858037620783, 0.036140717566013336, 0.006657812744379044, -0.03180098533630371, 0.011501475237309933, 0.011365117505192757, -0.024330954998731613, -0.03704186528921127, 0.0037113006692379713, 0.017394499853253365, 0.030212122946977615, -0.016244351863861084, 0.03772957995533943, -0.029761549085378647, -0.006313954014331102, 0.005205306690186262, 0.05027448758482933, 0.032773274928331375, -0.017714643850922585, 0.0030799054075032473, -0.039555590599775314, 0.022730235010385513, 0.03201441466808319, 0.021698659285902977, 0.03139784187078476, -0.015615920536220074, -0.025990962982177734, 0.02691582404077053, -0.012272192165255547, 0.010244612582027912, 0.01578192040324211, -0.012533050961792469, -0.037113007158041, 0.012544907629489899, -0.027010681107640266, -0.01791621558368206, 0.02184094488620758, -0.0220306608825922, -0.04605332762002945, 0.02589610405266285, -0.03640157729387283, 0.014145628549158573, 0.0005220869206823409, -0.028054114431142807, 0.049705345183610916, 0.02184094488620758, -0.017145497724413872, -0.07403630018234253, 0.013363054022192955, -0.03246498852968216, -0.004502768162637949, 0.038678158074617386, -0.01780950091779232, -0.010629971511662006, 0.031919557601213455, 0.004215231165289879, 0.00938496645539999, -0.06104081869125366, 0.0328444205224514, -0.002189133781939745, 0.0037646580021828413, -0.0066815270110964775, -0.06483511626720428, 0.014892632141709328, -0.025990962982177734, 0.020761940628290176, -0.00024807467707432806, 0.0004661358252633363, 0.03398270905017853, -0.017845071852207184, -0.0013895145384594798, -0.01757235638797283, -0.004876269958913326, 0.0004961493541486561, 0.03663871809840202, -0.026014676317572594, 0.0009826646419242024, -0.006177596282213926, 0.05895395204424858, 0.024971244856715202, -0.04899391159415245, -0.0214970875531435, 0.030496694147586823, 0.00020509235037025064, 0.005990845616906881, 0.004369374830275774, 0.008981822058558464, 0.00532684288918972, -0.05003734678030014, -0.02760354056954384, 0.005356485955417156, -0.022066231817007065, -0.007713102735579014, -0.020833084359765053, 0.0496579147875309, -0.0009730307501740754, -0.032156702131032944, 0.009728824719786644, 0.00031013964326120913, 0.028907831758260727, 0.024496955797076225, 0.00040796148823574185, 0.0013687644386664033, -0.014240486547350883, 0.03154012933373451, 0.0023566167801618576, -0.02322823740541935, 0.03327127918601036, -0.030496694147586823, 0.03609329089522362, -0.011477760970592499, 0.03972158953547478, -0.0712854340672493, 0.012841337360441685, 0.0035393715370446444, 0.008999607525765896, 0.03623557463288307, -0.03158755600452423, 0.015212776139378548, 0.032986704260110855, -0.04840105399489403, -0.029974978417158127, -0.04626676067709923, -0.011780119501054287, -0.05316764488816261, 0.05700937286019325, -0.021805373951792717, 0.038939014077186584, 0.007428530137985945, -0.019576221704483032, -0.06630541384220123, 0.049088768661022186, 0.0012072102399542928, 0.020382510498166084, -0.048045337200164795, 0.008803964592516422, 0.003918801434338093, -0.004067016299813986, -0.040053591132164, -0.0030176551081240177, 0.008821750059723854, 0.056108228862285614, -0.06175224855542183, 0.0070550283417105675, 0.033603280782699585, 0.042330171912908554, -0.01591235026717186, -0.024971244856715202, -0.02077379822731018, 0.01922050677239895, 0.017133640125393867, -0.03246498852968216, 0.0225642342120409, -0.011768261902034283, 0.0039010157343000174, 0.03547671437263489, -0.06625798344612122, 0.00448498222976923, -0.0015636670868843794, -0.011720833368599415, 0.054163649678230286, 0.0026337786111980677, 0.010837472043931484, -0.0034860142040997744, -0.035310715436935425, 0.04648019000887871, 0.00790281780064106, 0.010677400045096874, -0.02739011123776436, 0.04795048013329506, -0.020406225696206093, 0.05520708113908768, 0.005071913357824087, 0.03768215328454971, 0.0256352461874485, 0.014287915080785751, 0.015426205471158028, 0.013529054820537567, -0.00506005622446537, -0.0037794795352965593, 0.04327874630689621, -0.022576091811060905, 0.05904880911111832, -0.006592598278075457, -0.01192240510135889, -0.025303244590759277, 0.021829089149832726, 0.012319621630012989, 0.032773274928331375, -0.023192664608359337, 0.004526482429355383, -0.024757813662290573, 0.004929627291858196, -0.016220636665821075, 0.0037142650689929724, 0.01868693344295025, 0.04247245937585831, 0.008821750059723854, -0.0029568870086222887, 0.02269466407597065, 0.054400790482759476, -0.035737574100494385, -0.017133640125393867, 9.624704398447648e-05, 0.0480690523982048, -0.06796541810035706, 1.9638471712823957e-05, 0.036804720759391785, -0.03836986795067787, -0.01496377494186163, -0.013078481890261173, -0.01789250038564205, 0.030852410942316055, -0.033010419458150864, 0.011412546038627625, 0.03011726401746273, -0.024259813129901886, -0.012040977366268635, -0.0012479693396016955, -0.029192404821515083, -0.0560607984662056, -0.004259695764631033, -0.02629924938082695, -0.024473242461681366, -0.048329908400774, -0.0256352461874485, -0.03879673033952713, -0.02028765343129635, -0.045057326555252075, -0.02755611203610897, 0.019955651834607124, 0.021722374483942986, -0.07332486659288406, 0.014193057082593441, -0.017548643052577972, -0.026394106447696686, -0.024971244856715202, 0.003829872701317072, 0.0011042009573429823, 0.005478022154420614, -0.0539265051484108, 0.034172423183918, 0.0776883140206337, -0.06089853122830391, -0.0011849780566990376, 0.007481887470930815, 0.06018710136413574, 0.021793516352772713, -0.02312152273952961, -0.03270213305950165, -0.0017118819523602724, 0.009450181387364864, 0.01517720427364111, 0.0028057077433913946, 0.020916083827614784, -0.0269632525742054, -0.05093849077820778, 0.02181723155081272, -0.020086081698536873, 0.03516842797398567, 0.019469507038593292, -0.010701114311814308, -0.027674684301018715, -0.004375303629785776, 0.007387029938399792, -0.04998991638422012, -0.027010681107640266, -0.012106192298233509, 0.014892632141709328, 0.00890475045889616, 0.018509075045585632, -0.00028049666434526443, 0.028765544295310974, 0.02610953524708748, 0.05468536540865898, -0.030212122946977615, -0.0033644780050963163, -0.0013932199217379093, 0.0033733707387000322, 0.011252474039793015, -0.06990999728441238, -0.008578677661716938, -0.0295006912201643, -0.0038921230006963015, 0.033603280782699585, -0.029144974425435066, -0.0064918119460344315, -0.03350841999053955, 0.014287915080785751, 0.01842607371509075, -0.0036846220027655363, -0.0094798244535923, 0.01890036277472973, -0.04178474098443985, -0.01453691627830267, -0.02886040322482586, -0.0062665254808962345, 0.036567576229572296, 0.05658251419663429, 0.07522201538085938, -0.021888375282287598, -0.010754472576081753, 0.0032429418060928583, -0.054827649146318436, -0.03199069947004318, -0.010072683915495872, -0.02565896138548851, 0.026251820847392082, 0.01631549373269081, -0.020299511030316353, -0.03618814796209335, 0.044440750032663345, 0.01954065077006817, 0.01879364810883999, 0.03398270905017853, 0.02755611203610897, 0.023666953667998314, 0.003030994441360235, -0.021912088617682457, 0.024757813662290573, 0.0034148709382861853, 0.004562054295092821, 0.030188407748937607, -0.02712925337255001, -0.0008337087347172201, -0.019149363040924072, -0.017204783856868744, 0.0025063136126846075, 0.0720917209982872, 0.002624885644763708, -0.06839227676391602, -0.04029073566198349, 0.015651492401957512, -0.016540780663490295, -0.004861448425799608, -0.008015461266040802, 0.015343205071985722, -0.004805126693099737, -0.037231579422950745, 0.008578677661716938, -0.0525984987616539, -0.010054897516965866, 0.07507973164319992, -0.02520838752388954, 0.014785917475819588, 0.011222830973565578, -0.05838480964303017, -0.04984762892127037, 0.0028590650763362646, -0.0030102443415671587, -0.04344474896788597, 0.004742876160889864, 0.023216379806399345, -0.05231392756104469, -0.009948182851076126, -0.03749243915081024, -0.010268326848745346, -0.008353390730917454, -0.011780119501054287, -0.016517067328095436, 0.025824962183833122, 0.002685653744265437, 0.02128365822136402, 0.01938650757074356, 0.05202935263514519, 0.00014636220294050872, 0.007523387670516968, 0.020026795566082, -0.01012011244893074, 0.018058501183986664, 0.012758336961269379, -0.025113530457019806, 0.056724801659584045, 0.03500242903828621, -0.008051032200455666, -0.019374649971723557, -0.018758075311779976, 0.007238815072923899, 0.0066163125447928905, -0.030164694413542747, 0.0004542786336969584, -0.014489486813545227, -0.02739011123776436, -0.010102326981723309, 0.03841729834675789, 0.06644769757986069, -0.04745247960090637, -0.02171051688492298, 0.020631512627005577, 0.027674684301018715, -0.01097382977604866, -0.050796207040548325, -0.010286113247275352, 0.008353390730917454, 0.007968032732605934, 0.015034917742013931, -0.05074877664446831, 0.031492698937654495, -0.014904488809406757, 0.009467966854572296, -0.04434589296579361, -0.008377104997634888, -0.002799779176712036, -0.010161612182855606, -0.04809276759624481, 0.02779325470328331, 0.02269466407597065, 0.03146898373961449, -0.04712047800421715, -0.0034089423716068268, 0.05904880911111832, -0.02822011336684227, -0.02325195074081421, 0.015189061872661114, 0.05691451579332352, -0.019588079303503036, -0.008359319530427456, 0.02267094887793064, -0.01197576243430376, -0.024757813662290573, -0.020311368629336357, 0.020275795832276344, 0.0317772701382637, -0.021888375282287598, -0.008003603667020798, 0.008875107392668724, 0.049705345183610916, -0.02320452220737934, -0.0645979791879654, 0.031729843467473984, -0.0084778917953372, -0.05961795523762703, -0.013457912020385265, -0.0016481495695188642, -0.05150763690471649, -0.04830619692802429, 0.059523098170757294, -0.01927979290485382, 0.016991354525089264, 0.026014676317572594, -0.00221581244841218, -0.04242502897977829, -0.03348470851778984, 0.008134032599627972, 0.0240345261991024, -0.01081375777721405, -0.006942385341972113, 0.036164432764053345, -0.05136534944176674, -0.022469377145171165, 0.05662994459271431, 0.0012509336229413748, 0.01757235638797283, -0.0827631950378418, 0.005261628422886133, 0.03246498852968216, 0.03561900183558464, 0.030899839475750923, -0.007369244005531073, -0.018094073981046677, 0.000704761769156903, -0.027959255501627922, -0.023714382201433182, 0.02798297069966793, -0.0067052412778139114, -0.021793516352772713, -0.023453524336218834, -0.034290995448827744, 0.0032874061726033688, -0.01539063360542059, -0.018888505175709724, 0.023085949942469597, -0.0065985266119241714, 0.011809762567281723, -0.04256731644272804, -0.002648599911481142, 0.01981336623430252, 0.047997910529375076, -0.03436213731765747, -0.02357209473848343, 0.020916083827614784, 0.018414217978715897, -0.016434065997600555, -0.011293974705040455, -0.025398103520274162, 0.011851262301206589, 0.0022587948478758335, 0.004748804960399866, 0.007019456941634417, -0.0020453655160963535, -0.019042648375034332, -0.06687455624341965, 0.019018935039639473, -0.0030858339741826057, 0.0069364565424621105, -0.010861187241971493, 0.008750607259571552, -0.0029909764416515827, 0.01951693557202816, 0.0017430071020498872, 0.01432348694652319, 0.04498618096113205, 0.013232625089585781, 0.011963905766606331, 0.035097286105155945, -0.03832244127988815, 0.02589610405266285, -0.00795617513358593, 0.01906636357307434, -0.003735015168786049, 0.02931097522377968, 0.012651622295379639, -0.018200788646936417, 0.024971244856715202, 0.01834307424724102, 0.01941022090613842, 0.0504642054438591, 0.01943393610417843, 0.010037112049758434, -0.03725529462099075, -0.027698397636413574, -0.02627553418278694, 0.008792106993496418, 0.014785917475819588, 0.013861056417226791, 0.03353213518857956, 0.0018852934008464217, 0.01218919176608324, 0.007547101937234402, -0.016671210527420044, 0.024283526465296745, -0.011424403637647629, 0.011851262301206589, -0.011791976168751717, -0.01572263427078724, -0.04854333773255348, 0.004834769759327173, 0.010179398581385612, -0.005599558353424072, 0.017987359315156937, -0.01192240510135889, 0.014050771482288837, 0.012699051760137081, -0.0015458812704309821, 0.03132670000195503, 0.0013509787386283278, 0.020738227292895317, 0.011714904569089413, 0.013955913484096527, -0.021236229687929153, 0.005279414355754852, 0.016351066529750824, -0.005190485157072544, 0.0004161132965236902, 0.027034394443035126, -0.013422340154647827, -0.018603932112455368, -0.03561900183558464, 0.030686410143971443, -0.0022098838817328215, 0.02165123075246811, 0.005599558353424072, -0.016837211325764656, 0.017453784123063087, 0.037824440747499466, -0.0016007208032533526, -0.07389401644468307, 0.028338685631752014, -0.00816960446536541, -0.004428660962730646, -0.006889028009027243, 0.027840685099363327, -0.013825484551489353, 0.01874621957540512, -0.005872273817658424, 0.014299771748483181, -0.009847396984696388, 0.009207108989357948, -0.026156963780522346, -0.029405834153294563, -0.03241755813360214, -0.0160190649330616, 0.01620877906680107, 0.010137897916138172, 0.004351588897407055, -0.004550197161734104, -0.02357209473848343, -0.01799921505153179, 9.221745131071657e-05, 0.010778186842799187, 0.010203112848103046, 0.004304160363972187, 0.02344166673719883, 0.004333803430199623, 0.0034711926709860563, -0.0016081315698102117, 0.04961048811674118, 0.07446315884590149, 0.014453915879130363, 0.03483642637729645, -0.004206338431686163, -0.033579565584659576, 0.0059315599501132965, -0.020892370492219925, 0.017026925459504128, -0.05753108859062195, 0.004553161095827818, 0.005264592822641134, -0.022113660350441933, 0.030662694945931435, -0.0005061538540758193, 0.013232625089585781, -0.009782182052731514, -0.007653816603124142, -0.03775329515337944, 0.03884415701031685, 0.018331216648221016, -0.029144974425435066, 0.03246498852968216, 0.0067052412778139114, -0.006983885541558266, -0.017086211591959, 0.008554963394999504, -0.020465511828660965, 0.07247114926576614, -0.025824962183833122, 0.004947412759065628, -0.024520670995116234, -0.021852802485227585, -0.02085679955780506, -0.05734137445688248, 0.0017904358683153987, -0.0031806915067136288, 0.006835670676082373, -0.005451343487948179, -0.013730627484619617, -0.02781696990132332, 0.01986079476773739, 0.019505079835653305, -0.027935542166233063, 0.013659483753144741, -0.005685523152351379, -0.005303128622472286, 0.010007468983530998, 0.015153490006923676, -0.010102326981723309, 0.013623911887407303, 0.002830904209986329, 0.020619655027985573, 0.002765689743682742, -0.03248870372772217, -0.022967379540205002, 0.012201049365103245, 0.011471832171082497, -0.0024677778128534555, -0.06208425015211105, 0.013102196156978607, -0.009349394589662552, -0.0029316905420273542, 0.009218965657055378, 0.015853064134716988, 0.0011019776575267315, -0.03901015967130661, -0.02160380221903324, -0.043990179896354675, -0.003746872302144766, -0.007493744604289532, 0.013149624690413475, -0.007363315671682358, -0.045484185218811035, 0.011365117505192757, -0.015615920536220074, -0.004535375628620386, -0.008110318332910538, -0.0022662056144326925, -0.054637935012578964, 0.029382118955254555, -0.027935542166233063, -0.001310219638980925, 0.022967379540205002, 0.016303637996315956, 0.00493259122595191, 0.03799043968319893, -0.02776954136788845, -0.012592337094247341, 0.0064384546130895615, 0.01793992891907692, 0.026820965111255646, -0.01826007477939129, -0.03187213093042374, -0.004713233560323715, -0.013932199217379093, -0.012112120166420937, 0.006859384942799807, 0.04491503909230232, -0.026986965909600258, -0.0008841017843224108, -0.012568621896207333, 0.022172946482896805, -0.046148188412189484, -0.023180808871984482, 0.05274078622460365, -0.010552899911999702, 0.007837602868676186, -0.0030443337745964527, 0.028480973094701767, 0.016908355057239532, -0.015532920137047768, 0.011436260305345058, 0.017181068658828735, 0.03232270106673241, 0.005709237419068813, 0.028552114963531494, 0.05084363371133804, -0.007250672206282616, 0.08134032785892487, 0.020228367298841476, -0.01433534361422062, -0.03749243915081024, 0.011459974572062492, 0.013837342150509357, 0.0069483136758208275, 0.021271800622344017, -0.002267687814310193, 0.005887095350772142, 0.004384196363389492, 0.010718900710344315, -0.010487684980034828, -0.0062546683475375175, 0.0012472282396629453, 0.0007299582939594984, -0.043587032705545425, -0.012367050163447857, -0.023880382999777794, 0.03735015168786049, 0.014596202410757542, 0.02862325869500637, -0.0004950377042405307, 0.00532684288918972, -0.016007207334041595, 0.03267841786146164, -0.0026411893777549267, -0.033816710114479065, 0.0060264174826443195, 0.017477499321103096, -0.024757813662290573, -0.011181331239640713, 0.045958470553159714, 0.011299902573227882, -0.022386375814676285, -0.00529423588886857, 0.022433804348111153, -0.016220636665821075, -0.007120243273675442, 0.023406093940138817, 0.007624173536896706, 0.08309519290924072, -0.044464465230703354, -0.011750476434826851, -0.00058581936173141, -0.01149554643779993, -0.0100786117836833, 0.01281762309372425, 0.013339339755475521, -0.02218480408191681, 0.0018171145347878337, 0.009402751922607422, -0.02160380221903324, -0.014987489208579063, -0.003637193236500025, -0.034219853579998016, 0.014596202410757542, 0.02928726188838482, -0.017074353992938995, 0.009183394722640514, -0.015355061739683151, 0.005641058553010225, -0.010309827513992786, -0.016185065731406212, -0.023963382467627525, 0.0064265974797308445, -0.0256352461874485, -0.029382118955254555, -0.0002628961519803852, -0.04185588285326958, 0.010624042712152004, 0.03462299704551697, -0.02565896138548851, 0.012141763232648373, 0.015343205071985722, -0.011347332037985325, -0.030615266412496567, 0.01507048960775137, 0.014133771881461143, -0.0221610888838768, -0.009023322723805904, 0.013647627085447311, 0.025967247784137726, 0.0036164431367069483, 0.005922666750848293, -0.016196923330426216, 0.03346099331974983, 0.015770064666867256, -0.01823635958135128, 0.013149624690413475, -0.011507404036819935, -0.002181723015382886, 0.009977825917303562, 0.013386768288910389, 0.01604278013110161, 0.005854487884789705, -0.020678941160440445, -0.011649689637124538, -0.021153228357434273, 0.0031806915067136288, -0.04152388125658035, 0.035287000238895416, 0.0019519900670275092, 0.027674684301018715, 0.018817361444234848, 0.04029073566198349, 0.006622240878641605, 0.01789250038564205, 0.011809762567281723, 0.03201441466808319, 0.0010656650410965085, -0.010677400045096874, 0.04216416925191879, 0.01217733509838581, 0.02018093876540661, 0.03713672235608101, -0.00663409847766161, 0.07247114926576614, 0.008892892859876156, -0.022327089682221413, -0.03569014370441437, -0.008051032200455666, 0.0070016710087656975, -0.02779325470328331, 0.01890036277472973, 0.023180808871984482, 0.029571834951639175, -0.009343466721475124, 0.02651267871260643, 0.002925761742517352, -0.0411207377910614, 0.007766460068523884, 0.007049100007861853, 0.010155684314668179, 0.00304729794152081, -6.600194319617003e-05, -0.012011334300041199, 0.009207108989357948, -0.006391026079654694, 0.015260204672813416, -0.03633043169975281, 0.003812086768448353, 0.030591553077101707, -0.009669539518654346, -0.030472980812191963, 0.037231579422950745, -0.03618814796209335, 0.03839358314871788, -0.022303376346826553, -0.060376815497875214, -0.03540557250380516, -0.002203955315053463, 0.01674235425889492, -0.05330992862582207, 0.00532684288918972, 0.02181723155081272, 0.00684752780944109, 0.02171051688492298, 0.016386637464165688, 0.0160190649330616, -0.004404946230351925, 0.019232364371418953, -0.03692329302430153, -0.019422078505158424, 0.00045946615864522755, -0.0032577631063759327, -0.023085949942469597, 0.017773929983377457, 0.019208649173378944, 0.04757104814052582, 0.02715296670794487, 0.06127796322107315, -0.016860924661159515, 0.017216641455888748, 0.020086081698536873, 0.0017133640358224511, -0.030378123745322227, -0.017181068658828735, 0.014691059477627277, 0.015876779332756996, -0.002636742778122425, 0.008205176331102848, -0.08001232147216797, -0.028504686430096626, -0.008483819663524628, -0.007973960600793362, 0.005584736820310354, -0.033152706921100616, 0.03092355467379093, 0.0005439486121758819, 0.016386637464165688, -0.02114137075841427, -0.009788110852241516, 0.018734361976385117, -0.03557157143950462, 0.0451284684240818, 0.012509336695075035, -0.01271090842783451, 0.019742222502827644, -0.007238815072923899, -0.026607535779476166, 0.06853456050157547, 0.019694793969392776, -0.011590404435992241, 0.020738227292895317, -0.01943393610417843, 0.023560239002108574, -0.007641959469765425, -0.00674081314355135, 0.03206184506416321, -0.010090469382703304, -0.010884901508688927, -0.0062783826142549515, 0.013813626952469349, 0.005498772487044334, 0.02674982324242592, -0.00869132112711668, -0.025398103520274162, 0.04581618681550026, 0.08404377102851868, 0.013125910423696041, -0.0021417050156742334, 0.02824382856488228, 0.01044025644659996, 0.021449659019708633, -0.0016688996693119407, -0.02207808941602707, -0.004781412426382303, -0.008786178193986416, 0.00545430788770318, 0.009094465523958206, -0.009515395388007164, 0.02146151475608349, 0.03210927173495293, 0.0033792993053793907, -0.025398103520274162, -0.01358834095299244, -0.04410874843597412, 0.0216275155544281, 0.03367442265152931, -0.020738227292895317, 0.015260204672813416, 0.013220767490565777, 0.008098461665213108, 0.046741046011447906, -0.0030384052079170942, -0.006983885541558266, 0.03566642850637436, -0.018651360645890236, 0.030164694413542747, -0.0236313808709383, 0.0002706774394027889, -0.022018803283572197, -0.0065748123452067375, 0.0069483136758208275, 0.006302096880972385, 0.06867685168981552, 0.01620877906680107, 0.012355192564427853, 0.00732774380594492, 0.012639765627682209, 0.0063850972801446915, -0.019125649705529213, 0.010452114045619965, -0.0090114651247859, 0.004487946629524231, 0.04204560071229935, 0.009770325385034084, 0.02736639603972435, 0.011993548832833767, 0.015734491869807243, -0.01527206227183342, 0.03905758634209633, -0.0007833156851120293, -0.028101542964577675, -0.017762072384357452, 0.010446185246109962, -0.0008255569264292717, 0.008910679258406162, -0.013303767889738083, 0.0002556706895120442, -0.008252604864537716, 0.007600459270179272, 0.03462299704551697, -0.004728055093437433, 0.016457781195640564, 0.015876779332756996, -0.02173423022031784, 0.017667215317487717, -0.02947697602212429, -0.02717668190598488, 0.014892632141709328, -0.0196236502379179, -0.034053850919008255, 0.005993810016661882, -0.00039647481753490865, -0.013932199217379093, 0.020465511828660965, -0.017003212124109268, 0.008845464326441288, -0.00516677089035511, 0.017987359315156937, -0.024757813662290573, -0.029951265081763268, -0.007736817002296448, 0.007582673337310553, 0.04541303962469101, -0.007392958737909794, -0.01874621957540512, 0.005563986953347921, 0.04989505931735039, 0.05383164808154106, 0.014050771482288837, 0.00790281780064106, -0.012165477499365807, 0.004573911428451538, 0.01485706027597189, 0.009687324985861778, 0.03777701035141945, 0.007677530869841576, 0.014027057215571404, -0.028694402426481247, -0.031516414135694504, 0.03395899385213852, -0.016813496127724648, 0.03324756398797035, 0.003076941007748246, -0.02130737155675888, 0.03706558048725128, -0.00437826756387949, 0.020109795033931732, -0.002272134181112051, 0.023856667801737785, 0.019955651834607124, 0.011886834166944027, 0.02261166274547577, 0.0015147561207413673, -0.019884509965777397, 0.023346809670329094, 0.01900707744061947, -0.013173338957130909, -0.022955521941184998, -0.02886040322482586, -0.0003334835055284202, -0.01941022090613842, 0.05383164808154106, 0.028789259493350983, 0.017856929451227188, 0.016540780663490295, 0.020916083827614784, 0.011643761768937111, 0.015580348670482635, 0.011797904968261719, -0.03033069334924221, -0.001018236274830997, -0.024544384330511093, 0.020572226494550705, 0.009485752321779728, -0.017347069457173347, -0.028172684833407402, -0.01767907105386257, 0.03182470053434372, -0.001565149170346558, -0.0568670891225338, 0.007475958671420813, 0.02482895739376545, 0.06156253442168236, -0.025492960587143898, -0.03855958580970764, -0.0012116567231714725, -0.003826908301562071, 0.01444205828011036, -0.03440956771373749, 0.016090208664536476, -0.018924076110124588, 0.033792994916439056, 0.012675337493419647, 0.011359188705682755, -0.022018803283572197, -0.013019195757806301, -0.020975369960069656, 0.011981691233813763, 0.011513331905007362, 0.000933012692257762, 0.05558650940656662, 0.00879803579300642, -0.026607535779476166, -0.006230953615158796, 0.015509205870330334, -0.039792731404304504, -0.02606210485100746, -0.0013895145384594798, -0.01559220626950264, 0.006918671075254679, -0.02973783388733864, 0.021212514489889145, -0.0068415990099310875, 0.008258533664047718, 0.008122175931930542, 0.016220636665821075, 0.049088768661022186, 0.03210927173495293, -0.013896627351641655, 0.00975846778601408, 0.012722766026854515, -0.01951693557202816, 0.017026925459504128, -0.01527206227183342, -0.00969325378537178, -0.0007288467022590339, -0.00210909778252244, 0.04010101780295372, 0.005611415486782789, 0.012402622029185295, 0.009770325385034084, 0.011791976168751717, -0.011732690036296844, -0.0059849172830581665, 0.0017430071020498872, -0.012260335497558117, -0.021378515288233757, -0.02424795553088188, 0.042306456714868546, 0.009230823256075382, -0.024473242461681366, -0.00906482245773077, -0.004425696562975645, 0.0065866694785654545, -0.01986079476773739, 0.05089106410741806, -0.0023225273471325636, 0.00843639113008976, 0.029144974425435066, -0.01964736543595791, 0.029619263485074043, 0.015663350000977516, -0.0020231332164257765, 0.004819948226213455, 0.02085679955780506, 0.016362924128770828, 0.03836986795067787, -0.015841206535696983, -0.02693953737616539, 0.008507534861564636, 0.007025385741144419, 0.008187389932572842, -0.027627253904938698, 0.004822912160307169, 0.004212267231196165, -0.05150763690471649, -0.031018411740660667, 0.02840982936322689, -0.007428530137985945, 0.0062368824146687984, -0.0295006912201643, -0.014394629746675491, -0.008258533664047718, 0.014193057082593441, 0.009242679923772812, 0.02653639391064644, 0.005818916484713554, 0.03647271916270256, -0.011661547236144543, 0.004766590893268585, -0.011021259240806103, 0.01202911976724863, 0.02864697389304638, 0.039982449263334274, -0.00970511045306921, -0.019801508635282516, 0.024876385927200317, 0.0009004054591059685, 0.0225642342120409, 0.03713672235608101, -0.019588079303503036, -0.005759630352258682, 0.008258533664047718, -0.04280445724725723, 0.017975501716136932, -0.002583385445177555, -0.03168241307139397, 0.0018230431014671922, -0.018141502514481544, -0.03372184932231903, 0.006960171274840832, 0.009189322590827942, 0.004968163091689348, 0.016671210527420044, -0.0011138349073007703, -0.034717854112386703, 0.0027567967772483826, 0.00030606373911723495, -0.0007662709685973823, -0.01900707744061947, -0.013967771083116531, 0.0069779567420482635, 0.017145497724413872, 0.019457649439573288, -0.0006929045775905252, -0.015236490406095982, 0.020726369693875313, -0.03583243116736412, 0.030662694945931435, 0.004659876227378845, 0.0007885032100602984, -0.02028765343129635, -0.0003975864383392036, -0.005623272620141506, 0.019018935039639473, 0.011898690834641457, -0.03727900981903076, -0.01444205828011036, 0.051270492374897, -0.012675337493419647, 0.017038783058524132, 0.0427096001803875, 0.03317641839385033, -0.0190900769084692, -0.0035512286704033613, 0.011625975370407104, 0.015331347472965717, -0.009301966056227684, 0.01887664757668972, 0.015817493200302124, 0.03274955973029137, 0.02674982324242592, 0.005169735290110111, 0.02192394621670246, 0.01076040044426918, 0.028125256299972534, -0.0067763845436275005, -0.016588209196925163, -0.017050640657544136, 0.02606210485100746, -0.009663610719144344, -0.009740682318806648, -0.006782313343137503, 0.005270521156489849, 0.03369813784956932, 0.014169342815876007, 0.045531611889600754, 0.022599805146455765, 0.005068948958069086, 0.018177073448896408, 5.456160579342395e-05, 0.01964736543595791, -0.04776076599955559, -0.02478152886033058, 0.005478022154420614, -0.022872520610690117, 0.018675075843930244, -0.02632296457886696, 0.019315363839268684, -0.012414478696882725, 0.04266217350959778, -0.02186466008424759, 0.0065333121456205845, -0.02124808542430401, 0.0008811375009827316, -0.012627908028662205, -0.020512940362095833, 0.0038061582017689943, 0.0084778917953372, -0.00943832378834486, -0.016777925193309784, -0.02736639603972435, 0.001523648970760405, 0.01922050677239895, -0.016588209196925163, -0.02071451209485531, 0.02670239470899105, -0.011637832969427109, 0.016588209196925163, 0.013291911222040653, 0.016884639859199524, 0.005673666018992662, 0.022789521142840385, -0.016493352130055428, -0.02781696990132332, -0.01433534361422062, 0.0002551148645579815, -0.023880382999777794, 0.010380970314145088, -0.00516677089035511, 0.009153751656413078, -0.0025730105116963387, -0.005952309817075729, -0.0008203694014810026, 0.016683068126440048, -0.026583822444081306, -0.007203243672847748, -0.008122175931930542, 0.007209172006696463, -0.004286374431103468, 0.04100216552615166, -0.014382772147655487, 0.0036875864025205374, -0.02478152886033058, 0.023263808339834213, 0.004449410829693079, 0.000147659084177576, 0.036140717566013336, 0.0068415990099310875, -0.045294467359781265, -0.03208556026220322, -0.01610206440091133, 0.04330246150493622, -0.03841729834675789, 0.009159679524600506, 0.0015154972206801176, -0.024117525666952133, 0.006284310948103666, 0.03642528876662254, -0.014726631343364716, 0.030401837080717087, -0.04055159166455269, 0.02026394009590149, -0.033200133591890335, -0.03035440854728222, -0.00926639512181282, -0.0317772701382637, -0.015343205071985722, -0.024686671793460846, 0.004742876160889864, 0.004366410430520773, 0.027627253904938698, 0.004250803031027317, -0.0032044057734310627, 0.00732774380594492, 0.0072328862734138966, -0.0176197849214077, -0.0011923887068405747, 0.014619916677474976, 0.027247823774814606, -0.022208519279956818, 0.006485883612185717, -0.023856667801737785, -0.00545430788770318, 0.016813496127724648, 0.002309188013896346, 0.016540780663490295, 0.035097286105155945, 0.0061598108150064945, -0.011756404303014278, -0.004274517297744751, -0.005537308286875486, 0.035927288234233856, -0.01358834095299244, 0.016730496659874916, 0.008400820195674896, -0.010262398980557919, -2.2591191736864857e-05, 0.010114183649420738, -0.00035386302624829113, -0.012829480692744255, 0.030804982408881187, 0.012141763232648373, -0.03697071969509125, 6.363976717693731e-05, 0.022576091811060905, -0.022315233945846558, -0.005392057355493307, 0.015758207067847252, 0.0009945218916982412, -0.020228367298841476, 0.004369374830275774, -4.1314899135613814e-05, -0.0024855637457221746, 0.029951265081763268, 0.020512940362095833, -0.009663610719144344, 0.021746087819337845, 0.0309709832072258, 0.024236097931861877, 0.023382380604743958, 0.010131970047950745, 0.034172423183918, 0.02867068722844124, 0.0009530216921120882, 0.016362924128770828, 0.02282509207725525, 0.03732643648982048, 0.01831935904920101, 0.015260204672813416, -0.026678679510951042, -0.04685961827635765, -0.008881036192178726, 0.007618245203047991, 0.013363054022192955, 0.04880419746041298, 0.01390848495066166, 0.03455185517668724, -0.016351066529750824, -0.016517067328095436, -0.005694415885955095, 0.007950246334075928, -0.01176233310252428, 0.021793516352772713, -0.022042518481612206, 0.003008762141689658, -0.023489095270633698, -0.0001634069049032405, 0.011863119900226593, 0.013291911222040653, -0.005469129420816898, -0.01074854377657175, 0.01799921505153179, -0.01081375777721405, -0.016813496127724648, -0.016860924661159515, 0.012201049365103245, -0.018390502780675888, 0.016362924128770828, 0.03201441466808319, 0.013125910423696041, 0.011703046970069408, -0.00848974846303463, -0.01620877906680107, -0.00880989246070385, 0.04263845831155777, 0.010197184048593044, -0.012651622295379639, 0.020595939829945564, -0.03289184719324112, -0.0068830992095172405, -0.021425943821668625, -0.028077827766537666, 0.025990962982177734, -0.012959909625351429, 0.039745304733514786, -0.04002987593412399, -0.0014287915546447039, -0.008537176996469498, 0.011614118702709675, 0.016706781461834908, 0.04052788019180298, -0.05786309018731117, 0.017501214519143105, 0.007813888601958752, 0.04320760443806648, 0.03455185517668724, 0.0309709832072258, -0.01044025644659996, 0.00922489445656538, -0.0007729406352154911, -0.0007132841274142265, -0.02045365422964096, 0.00588116655126214, 0.02760354056954384, 0.019315363839268684, -0.022433804348111153, 0.03663871809840202, -0.01665935292840004, 0.037824440747499466, 0.021271800622344017, 0.021769803017377853, 0.046124473214149475, -0.01804664544761181, 0.01821264438331127, -0.06198939308524132, 0.011845333501696587, -0.015034917742013931, -0.05307278782129288, -0.024473242461681366, 0.011750476434826851, -0.019374649971723557, 0.025326959788799286, 0.022006945684552193, 0.021485229954123497, -0.020465511828660965, 0.0003499723970890045, -0.02907383255660534, 0.005830773618072271], [-0.0394754596054554, -0.02529880218207836, 0.013080762699246407, 0.04073457047343254, -0.030148711055517197, 0.004549704026430845, 0.0263014268130064, 0.05017790198326111, -0.021090107038617134, -0.022290926426649094, -0.022862188518047333, 0.0014602189185097814, 0.029659057036042213, -0.058525338768959045, -0.007006718777120113, 0.009355893358588219, 0.007688737474381924, 0.01674151048064232, 0.005677657201886177, 0.03751683980226517, -0.015505717135965824, 0.01477123610675335, -0.014608018100261688, 0.020763671025633812, 0.014724601991474628, -0.021976148709654808, -0.019644461572170258, 0.009280113503336906, 0.0394754596054554, -0.04826591536402702, 0.03646758198738098, -0.031454455107450485, 0.0526028536260128, -0.02714083530008793, 0.06584683805704117, -0.0006823827279731631, -0.006091531831771135, -0.00930343009531498, 0.02653459645807743, 0.02143985964357853, -0.04873225465416908, 0.04001174494624138, -0.012497841380536556, 0.00900031067430973, 0.031081385910511017, 0.0031361188739538193, 0.02730405330657959, -0.009967961348593235, -0.020122457295656204, -0.0005934871733188629, 0.005980776622891426, 0.020285675302147865, -0.04476838558912277, -0.014025095850229263, -0.04283308610320091, -0.05283602327108383, -0.02223263308405876, 0.015389133244752884, 0.0479394793510437, 0.03103475086390972, 0.04901205748319626, -0.04446526616811752, 0.02067040279507637, -0.015820495784282684, 0.036654118448495865, 0.0394754596054554, 0.01656663417816162, 0.00748471450060606, -0.0464705191552639, -0.00630138348788023, 0.011862456798553467, 0.05647345632314682, -0.0005005840212106705, -0.013745293952524662, 0.026114892214536667, 0.06416802108287811, -0.023876473307609558, 0.04183046147227287, 0.004992724396288395, -0.010241934098303318, -0.011984869837760925, -0.00034629192668944597, -0.019318025559186935, 0.00132104626391083, -0.016543317586183548, -0.0684116929769516, -0.04199368134140968, -0.0010128264548256993, -0.013687001541256905, 0.01380358636379242, -0.008510656654834747, -0.008225025609135628, -0.003940550610423088, 0.057359494268894196, -0.01442148257046938, -0.029285985976457596, 0.016042005270719528, -0.046657051891088486, -0.012719351798295975, 0.0006594301667064428, -0.01617024838924408, -0.014153338968753815, 0.028446579352021217, 0.05041106790304184, 0.025088950991630554, -0.034555599093437195, -0.0017983134603127837, 0.01388519536703825, 0.00012742304534185678, -0.015715569257736206, -0.06053059175610542, -0.00775868771597743, -0.032923419028520584, 0.05213651806116104, 0.007986027747392654, 0.027747072279453278, 0.028796331956982613, -0.022780580446124077, 0.0014689626405015588, -0.03870600089430809, 0.009845547378063202, 0.01693970523774624, 0.044255416840314865, -0.03271356597542763, 0.018292082473635674, -0.03931223973631859, -0.010014594532549381, 0.011331997811794281, -0.061323363333940506, -0.002674153307452798, 0.01058585848659277, -0.02606825903058052, -0.00495191989466548, 0.015657277777791023, 0.04026823118329048, -0.0153541574254632, -0.008679703809320927, 0.031151335686445236, 0.0004554075712803751, -0.017429359257221222, 0.011547679081559181, -0.017615893855690956, 0.04124753922224045, 0.006552040111273527, -0.033156584948301315, 0.02176629565656185, 0.023410135880112648, 0.05171681195497513, 0.03136118873953819, -0.009431673213839531, -0.021661370992660522, -0.000786944292485714, 0.05358216166496277, -0.035558223724365234, -0.013302273117005825, 0.014036755077540874, 0.0026814397424459457, 0.024925732985138893, -0.0069892313331365585, 0.015109330415725708, -0.06733911484479904, -0.03026529587805271, -0.028959549963474274, 0.0052171493880450726, 0.035091888159513474, -0.0039842696860432625, -0.01303412951529026, 0.015062697231769562, -0.0321306437253952, -0.06244257465004921, -0.01610029675066471, -0.042156897485256195, -0.040058378130197525, 0.045561160892248154, -0.03691060096025467, -0.015948737040162086, 0.026487961411476135, 0.059458013623952866, -0.03791322931647301, 0.020518844947218895, -0.04784621298313141, 0.011815822683274746, -0.046587102115154266, 0.030778266489505768, 0.020658744499087334, -0.0023856069892644882, -0.007991856895387173, 0.031524404883384705, -0.029519155621528625, 0.03534837067127228, -0.05274275690317154, -0.008026831783354282, -0.02457597851753235, 0.002452643122524023, -0.03196742758154869, -0.010638320818543434, -0.03364624083042145, -0.029589105397462845, 0.024622613564133644, 0.0021320360247045755, -0.001967360731214285, -0.018093889579176903, 0.015960397198796272, 0.07638605684041977, -0.0748005136847496, -0.04136412590742111, -0.04661041870713234, -0.019446268677711487, 0.024995682761073112, -0.016928046941757202, -0.010795709677040577, -0.049525029957294464, -0.04343932494521141, -0.00017469434533268213, 0.03499861806631088, 0.020087482407689095, -0.025858405977487564, 0.034485649317502975, -0.039055753499269485, 0.05297592282295227, -0.01749930903315544, 0.029122767969965935, -0.006353846751153469, 0.030661681666970253, 0.006388822104781866, 0.03154772147536278, 0.012579450383782387, -0.014025095850229263, 0.016380099579691887, -0.03980189561843872, -0.03980189561843872, 0.01540079154074192, -0.020017530769109726, -0.011285364627838135, 0.010900636203587055, 0.04127085581421852, -0.009227650240063667, -0.014048413373529911, 0.0007650847546756268, -0.003654919099062681, 0.006587015464901924, 0.013675343245267868, -0.015552351251244545, 0.007280691992491484, 0.03677070140838623, -0.00027379102539271116, 0.0015578583115711808, 0.02077532932162285, 0.025322118774056435, -0.0034392380621284246, -0.010271080769598484, 0.021917855367064476, 0.026254793629050255, -0.08090953528881073, 0.013570417650043964, 0.01744101755321026, 0.010854002088308334, 0.03290010243654251, 0.009320918470621109, 0.006610332056879997, 0.05768593028187752, 0.005625194404274225, -0.017895696684718132, 0.015482400543987751, -0.05577394738793373, 0.010679125785827637, 0.021160058677196503, -0.0032060693483799696, -0.023363502696156502, 0.01103470753878355, -0.06328198313713074, 0.007391447201371193, 0.010603345930576324, 0.010341031476855278, 0.011122145690023899, -0.013628709129989147, -0.014992746524512768, -0.053255725651979446, 0.04437199980020523, 0.06034405529499054, -0.07051020860671997, -0.015132647939026356, -0.02020406723022461, -0.01566893607378006, 0.03667743504047394, 0.028329994529485703, 0.01633346639573574, -0.029892224818468094, -0.02127664163708687, 0.020856939256191254, 0.0818888396024704, -0.027257418259978294, -0.03616446256637573, -0.0010259421542286873, 0.0707433745265007, 0.02823672816157341, 0.039661992341279984, -0.05978444963693619, -0.018711786717176437, -0.003482957137748599, -0.0017735392320901155, -0.013628709129989147, 0.007245716638863087, -0.011675922200083733, -0.040291547775268555, -0.004095024894922972, 0.006866817828267813, -0.0339493602514267, -0.006120678037405014, -0.008959506638348103, -0.027560537680983543, -0.003704467322677374, -0.0082483422011137, -0.0830080509185791, -0.020285675302147865, 0.007379788905382156, -0.027910292148590088, 0.04166724532842636, 0.03110470250248909, -0.0028227984439581633, 0.0024730453733354807, 0.01997089758515358, 0.031314555555582047, -0.015167622826993465, 0.004535130690783262, 0.006540381349623203, 0.016776487231254578, 0.036654118448495865, -0.032760199159383774, 0.016228539869189262, 0.007828638888895512, -0.0066861119121313095, 0.017919013276696205, 0.009163529612123966, -0.004421460907906294, -0.02077532932162285, 0.029915541410446167, 0.026161525398492813, -0.01158848311752081, 0.003447981784120202, 0.02770043909549713, -0.024179592728614807, -0.0016380100278183818, -0.011839140206575394, 0.026348061859607697, 0.02916940301656723, 0.06766555458307266, 0.04080452024936676, -0.011909089982509613, -0.008953677490353584, -0.005222978536039591, -0.030988117679953575, -0.0028796333353966475, -0.04679695516824722, -0.010947269387543201, -0.023993058130145073, 0.012474524788558483, 0.0006612518336623907, -0.025951674208045006, 0.03716708719730377, 0.021113423630595207, -0.0045905085280537605, 0.039755258709192276, 0.032550349831581116, 0.02877301536500454, 0.025462020188570023, -0.057965733110904694, 0.02863311395049095, -0.011530191637575626, -0.003812307957559824, -0.004768299404531717, -0.05917821079492569, 0.01846695877611637, -0.02723410166800022, -0.018397009000182152, -0.02413295768201351, 0.04294967278838158, 0.015307524241507053, -0.017429359257221222, -0.02043723501265049, -0.02436612732708454, -0.033389754593372345, -0.006348017603158951, 0.028586480766534805, 0.052323050796985626, 0.0026144038420170546, -0.035255104303359985, -0.011938236653804779, -0.037889912724494934, 0.023165307939052582, 0.021614735946059227, -0.013943486846983433, -0.004806189332157373, 0.01984265446662903, -0.05610038340091705, -0.019609486684203148, -0.03716708719730377, -0.0182687658816576, -0.035091888159513474, -0.0028388286009430885, -0.013313931412994862, -0.025718506425619125, -0.030848216265439987, -0.018175499513745308, -0.03406594321131706, 0.0026916409842669964, -0.01303412951529026, -0.04406888037919998, 0.005459061823785305, -0.05638018622994423, 0.007414764259010553, -0.014806210994720459, 0.035488273948431015, 0.028096826747059822, 0.0312679186463356, 0.0002464665740262717, 0.012299647554755211, 0.03357629105448723, -0.010877318680286407, -0.04392898082733154, 0.030754949897527695, 0.030754949897527695, -0.00948413647711277, -0.009478307329118252, -0.030055442824959755, 0.04423210024833679, 0.028656430542469025, -0.020180748775601387, -0.004587593954056501, 0.013197347521781921, 0.03984852880239487, -0.03322653844952583, 0.01927139237523079, 0.03033524565398693, 0.0032148133032023907, -0.08790459483861923, 0.028050191700458527, 0.001506852568127215, -0.021847905591130257, -0.061090193688869476, -0.05283602327108383, -0.020250700414180756, 0.0344623327255249, 0.024949049577116966, -0.03471881523728371, -0.02180127240717411, -0.008050148375332355, -0.032853465527296066, -0.0006645307294093072, -0.02237253449857235, 0.02436612732708454, 0.004672117531299591, -0.047892846167087555, 0.027886973693966866, 0.02923935279250145, 0.032923419028520584, -0.025625238195061684, -0.01837369240820408, 0.03968530893325806, -0.08468686789274216, 0.0257418230175972, 0.02403969131410122, 0.04684358835220337, 0.0450015552341938, 0.0400816947221756, 0.008907043375074863, 0.02520553395152092, -0.01927139237523079, 0.007432251702994108, -0.019387975335121155, -0.02013411559164524, -0.02213936671614647, -0.030288612470030785, -0.014293240383267403, 0.011734213680028915, -0.02346842736005783, -0.05213651806116104, 0.011495215818285942, -0.019877629354596138, -0.06710594892501831, -0.008976994082331657, -0.015983713790774345, -0.02800355851650238, -0.001793941599316895, 0.015680594369769096, -0.01105219591408968, 0.017254482954740524, 0.040058378130197525, 0.012451207265257835, -0.03129123896360397, -0.04280976951122284, 0.03686396777629852, 0.04150402545928955, -0.009833889082074165, -0.015155964531004429, 0.07158278673887253, -0.029355937615036964, -0.016076980158686638, 0.0654737651348114, 0.018979931250214577, 0.044395316392183304, -0.031757574528455734, 0.03352965787053108, 0.046260666102170944, -0.005814644042402506, 0.0476829968392849, 0.02814345993101597, -0.026977617293596268, 0.04845245182514191, -0.0012146631488576531, -0.025345435366034508, -0.023689938709139824, 0.021812930703163147, -0.02480914816260338, 0.012416232377290726, -0.0027062140870839357, -0.02167302928864956, 0.02933262102305889, -0.00744973961263895, 0.02527548559010029, -0.008592265658080578, -0.012964178808033466, -0.022151025012135506, -0.0006780108087696135, 0.028050191700458527, 0.016450051218271255, -0.03467218205332756, -0.04600417986512184, -0.015412449836730957, 0.02823672816157341, 0.015086013823747635, 0.022780580446124077, -0.041084323078393936, 0.012043162249028683, 0.00715244933962822, 0.03723703697323799, -0.027910292148590088, -0.0066511365585029125, 0.0030370221938937902, -0.024692563340067863, 0.026487961411476135, 0.0046109105460345745, -0.05628691986203194, 0.026651181280612946, -0.013733635656535625, -0.0042174383997917175, 0.003975525964051485, 0.021078448742628098, 0.001777911209501326, 0.04287971928715706, 0.021812930703163147, 0.010830685496330261, 0.014339873567223549, -0.014724601991474628, 0.0359312929213047, -0.02560192160308361, 0.030684998258948326, -0.005814644042402506, 0.01850193552672863, 0.0049839806742966175, -0.01846695877611637, 0.05181008204817772, 0.017510967329144478, -0.010142837651073933, 0.017009655013680458, 0.01873510330915451, 0.020052507519721985, -0.02396973967552185, -0.05194998160004616, 0.0011476271320134401, 0.0004769028164446354, -0.016123615205287933, -0.00594288669526577, 0.034392379224300385, 0.0005257225129753351, 0.019283050671219826, -0.017219508066773415, -0.036117829382419586, -0.017056288197636604, -0.004138743970543146, -0.0009377753012813628, 0.0307083148509264, -0.008574778214097023, -0.0050043826922774315, 0.00786944292485714, -0.019084855914115906, 0.010562540963292122, -0.02963573858141899, 0.015575667843222618, 0.01485284510999918, 0.02737400308251381, -0.002334601478651166, 0.02016909047961235, -0.0013939115451648831, 0.02156810276210308, -0.004132914822548628, 0.0037540157791227102, -0.03926560655236244, -0.04329942539334297, -0.016380099579691887, -0.02343345247209072, 0.008656387217342854, 0.028353311121463776, -0.019026564434170723, -0.013687001541256905, -0.022360876202583313, -0.004852822981774807, -0.009262626059353352, 0.018583543598651886, 0.03721372038125992, -0.008953677490353584, 0.021393226459622383, 0.08319458365440369, -0.026697814464569092, -0.026487961411476135, -0.012346281670033932, -0.036794018000364304, -0.049198590219020844, -0.021288299933075905, 0.05041106790304184, -0.02466924674808979, 0.009938814677298069, 0.0028738039545714855, -0.009070261381566525, -0.011809993535280228, 0.03569812700152397, -0.015855470672249794, -0.04318283870816231, -0.006761891767382622, -0.03210732713341713, 0.029355937615036964, 0.039149023592472076, 0.024389443919062614, 0.05176344886422157, -0.002853401703760028, -0.03868268430233002, 0.03147777169942856, 0.013710318133234978, 0.003780247177928686, 0.04469843581318855, 0.042226847261190414, -0.00294229737482965, 0.013313931412994862, -0.007065011188387871, 0.039218973368406296, 0.046960171312093735, -0.011349485255777836, 0.059924352914094925, -0.00800351519137621, -0.028283361345529556, 0.008971164934337139, -0.001461676205508411, 0.008324122056365013, -0.055540781468153, -0.009845547378063202, 0.006103190127760172, -0.0010157410288229585, 0.0068260133266448975, 0.001333433436229825, 0.014876161701977253, -0.01633346639573574, 0.040058378130197525, -0.004307791590690613, 0.0377500094473362, -0.00998544879257679, 0.006208116188645363, 0.03047514706850052, -0.019084855914115906, -0.0030457659158855677, 0.011839140206575394, 0.01600703038275242, 0.009198504500091076, 0.06267574429512024, -0.03530173748731613, -0.004453521687537432, -0.017219508066773415, -0.04614408314228058, -0.02223263308405876, -0.027747072279453278, -0.00029419330530799925, 0.022057756781578064, 0.00202128104865551, -0.024319494143128395, 0.010591687634587288, -0.01361705083400011, -0.02529880218207836, -0.007333155255764723, -0.0040542203933000565, 0.014654651284217834, 0.004628398455679417, -0.008516485802829266, 0.01295252051204443, 0.034485649317502975, -0.0016525830142199993, -0.010002936236560345, -0.004336937330663204, 0.014211631380021572, -0.0055756461806595325, -0.015785519033670425, -0.016881411895155907, -0.007199082989245653, -0.00023025406699161977, -0.003617029171437025, -0.061230096966028214, -0.01028273906558752, 0.019178124144673347, 0.02886628359556198, 0.0016205223510041833, 0.04225016385316849, -0.04723997414112091, -0.04579433053731918, -0.0257418230175972, -0.03383277729153633, -0.015260890126228333, -0.024016374722123146, 0.004255328327417374, -0.015715569257736206, -0.02907613478600979, 0.0021320360247045755, -0.015878787264227867, -0.009822230786085129, 0.02753722108900547, 0.0017793684964999557, -0.05218315124511719, 0.009093578904867172, -0.037423573434352875, 0.0013516497565433383, -0.029752323403954506, 0.020985180512070656, -0.02093854732811451, 0.05036443471908569, -0.03476545214653015, -0.00960072036832571, 0.002776164561510086, 0.05227641761302948, 0.021218350157141685, -0.02380652166903019, -0.030824899673461914, -0.024855781346559525, 0.006691941060125828, -0.01593707874417305, -0.013896853663027287, -0.0064179678447544575, -0.013162371702492237, 0.005762181244790554, -0.005957460030913353, -0.007904418744146824, -0.034788768738508224, -0.011833311058580875, -0.005394940264523029, -0.0039988430216908455, 0.007362300995737314, 0.006470431108027697, -0.007502202410250902, -0.015948737040162086, -0.004960663616657257, 0.012696035206317902, -0.0058059003204107285, -0.025485336780548096, 0.013302273117005825, 0.020378943532705307, -0.008265829645097256, 0.0022180171217769384, 0.03630436211824417, 0.008376585319638252, -0.04131748899817467, -0.002162639517337084, -0.02083362266421318, 0.020110798999667168, -0.016356782987713814, 0.002369576832279563, 0.011355314403772354, 0.010819027200341225, 0.010072886943817139, 0.03658416494727135, 0.0229321401566267, 0.011996529065072536, -0.019982555881142616, 0.001487178960815072, -0.0144681166857481, 0.020192407071590424, -0.01058585848659277, 0.0297989584505558, 0.017044629901647568, 0.014712943695485592, -0.008225025609135628, 0.013721977360546589, 0.02283887192606926, 0.00046050813398323953, -0.010958927683532238, -0.01946958526968956, -0.007782004773616791, 0.013850219547748566, -0.03283014893531799, 0.026557913050055504, -0.003345970530062914, -0.01837369240820408, -0.018397009000182152, 0.02023904211819172, -1.0423141247883905e-05, -0.00025266013108193874, 0.0020096225198358297, -0.013978462666273117, 0.021976148709654808, 0.05605375021696091, -0.027910292148590088, -0.017196189612150192, 0.013325590640306473, 0.018175499513745308, 0.011722555384039879, -0.019877629354596138, -0.001793941599316895, 0.004986895248293877, 0.0356748066842556, -0.0164966844022274, -0.016321808099746704, -0.029355937615036964, -0.005768010392785072, -0.03856610134243965, 0.026697814464569092, 0.025322118774056435, -0.03490535169839859, 0.0231070164591074, 0.0038910023868083954, 0.029449203982949257, -0.022629020735621452, 0.01950456015765667, -0.026627862825989723, 0.011273705400526524, 0.0015520290471613407, 0.01653165929019451, -0.015529034659266472, -0.01020113006234169, -0.009717305190861225, 0.008574778214097023, -0.02947252057492733, 0.005429915618151426, 0.013313931412994862, 0.022559069097042084, -0.013348907232284546, 0.02413295768201351, 0.0359312929213047, 0.003841453930363059, -0.02113674022257328, -0.02366662211716175, -0.012509499676525593, 0.003156521124765277, 0.02977563999593258, 0.013896853663027287, 0.016858095303177834, -0.006540381349623203, 0.0200408473610878, 0.02933262102305889, 0.0010048112599179149, 0.022116050124168396, 0.01141943596303463, 0.013850219547748566, -0.0021568103693425655, 0.006336358841508627, -0.013780268840491772, -0.051390375941991806, -0.038216348737478256, 0.004421460907906294, -0.025951674208045006, 0.010102033615112305, 0.05474800616502762, 0.03779664263129234, 0.0006146180676296353, 0.019959239289164543, 0.023748230189085007, 0.011460240930318832, -0.03551159054040909, 0.018362034112215042, -0.004954834468662739, 0.009501623921096325, 0.01435153279453516, 0.0011687580263242126, 0.010288568213582039, 0.036654118448495865, 0.012299647554755211, 0.0684116929769516, 0.01713789813220501, -0.003284763777628541, -0.037260353565216064, -0.0048440792597830296, 0.039218973368406296, -0.03513852134346962, 0.01946958526968956, 0.03737694025039673, 0.017919013276696205, -0.011046366766095161, 0.03310995176434517, 0.055027808994054794, -0.02243082784116268, -0.0062372623942792416, -0.002337516052648425, 0.02853984758257866, 0.039661992341279984, -0.005651426035910845, -0.005016041453927755, -0.005893338471651077, 0.002948126522824168, 0.02056547813117504, -0.005080162547528744, 0.017009655013680458, 0.008359096944332123, -0.016228539869189262, -0.01893329620361328, -0.010929781943559647, -0.009554087184369564, -0.01252115797251463, 0.004613825120031834, -0.026744447648525238, -0.019912606105208397, -0.030684998258948326, 0.030195344239473343, -0.060157518833875656, -0.0006025953334756196, 0.011623458936810493, -0.003392604412510991, 0.00918684620410204, 0.04609744995832443, 0.019411291927099228, -0.027350686490535736, 0.006295554339885712, -0.0008984280866570771, -0.002612946555018425, 0.034858718514442444, -0.030428513884544373, 0.006703599821776152, 0.007764517329633236, 0.039428822696208954, 0.03707382082939148, 0.04947839304804802, 0.0301020760089159, -0.012311306782066822, 0.002803853480145335, -0.013756952248513699, 0.02264067903161049, -0.019318025559186935, -0.007280691992491484, -0.004730409476906061, -0.010212788358330727, -0.007467227056622505, -0.011063854210078716, -0.016053663566708565, -0.020390601828694344, 0.005622279830276966, 0.018618518486618996, 0.005657255183905363, 0.026697814464569092, 0.00812009908258915, -0.0004867396201007068, -0.0036607482470571995, -0.0005494037177413702, 0.053395628929138184, 0.019248073920607567, -0.03164099156856537, 0.03630436211824417, -0.003048680489882827, -0.027490587905049324, -0.010271080769598484, -0.008988652378320694, -0.03301668539643288, 0.023013748228549957, 0.029892224818468094, 0.034555599093437195, 0.022582387551665306, 0.0038968315348029137, 0.008271658793091774, -0.009093578904867172, -0.019213099032640457, 0.027980241924524307, 0.023410135880112648, -0.001109737204387784, -0.017161214724183083, 0.01350046694278717, 0.0054328301921486855, -0.018280424177646637, -0.013873536139726639, -0.015284206718206406, 0.0690179318189621, 0.031827524304389954, -0.02140488475561142, -0.013010812923312187, 0.023993058130145073, -0.024389443919062614, 0.017779111862182617, -0.01970275305211544, -0.017359407618641853, 0.0020577136892825365, -0.030148711055517197, 0.049991365522146225, -0.008347438648343086, -0.02930930256843567, 0.004456436261534691, 0.039755258709192276, 0.02203444018959999, 0.01146607007831335, 0.0327368825674057, -0.02013411559164524, 0.009909668937325478, 0.01396680437028408, 0.007321496494114399, -0.020821962505578995, 0.02714083530008793, 0.026814399287104607, 0.05819890275597572, -0.03206069394946098, -0.019516218453645706, 0.03646758198738098, -0.02106679044663906, 0.02986890822649002, -0.047892846167087555, -0.01593707874417305, -0.05153027921915054, 0.027490587905049324, -0.006021581124514341, -0.017021313309669495, 0.026348061859607697, 0.0012816990492865443, -0.013290614821016788, 0.012509499676525593, 0.013908511959016323, 0.001461676205508411, -0.026044942438602448, -0.009192675352096558, -0.03877595067024231, 0.044185467064380646, -0.000802974624093622, 0.02529880218207836, 0.014782894402742386, 0.023526720702648163, 0.00015893724048510194, -0.011914920061826706, 0.016111955046653748, 0.020390601828694344, -0.014631334692239761, -0.01620522327721119, 0.04849908500909805, -0.015459083952009678, 0.0014033840270712972, 0.003978440538048744, 0.00358788319863379, -0.008650558069348335, 0.01438650768250227, 0.0335996076464653, -0.013313931412994862, 0.04684358835220337, 0.02490241453051567, 0.0010069971904158592, 0.01787238009274006, -0.04134080559015274, -0.02103181555867195, 0.0005811000592075288, -0.04131748899817467, -0.036560848355293274, 0.010562540963292122, -0.017650868743658066, -0.011594312265515327, 0.026021625846624374, -0.02590504102408886, -0.0023331441916525364, -0.009373380802571774, 0.02190619707107544, 0.005511524621397257, -0.026581229642033577, 0.018327059224247932, 0.006977573037147522, 0.024086324498057365, -0.003975525964051485, 0.020448893308639526, -0.00349170109257102, 0.018315399065613747, 0.04220353066921234, -0.02289716526865959, -0.033459704369306564, -0.027956925332546234, -0.015459083952009678, 0.05041106790304184, 0.00210434733889997, 0.02860979735851288, 0.007391447201371193, 0.007682907860726118, -0.017475992441177368, -0.0462140329182148, 0.030988117679953575, -0.006528723053634167, -0.012905886396765709, 0.0348120853304863, -0.050131265074014664, 0.026021625846624374, -0.01653165929019451, -0.001970275305211544, 0.036117829382419586, 0.01070244237780571, -0.015214256942272186, 0.0006430355133488774, 0.00938503909856081, -0.0035966269206255674, 0.020647086203098297, 0.01984265446662903, 0.02490241453051567, 0.01168758049607277, 0.01663658581674099, -0.008394072763621807, -0.01787238009274006, -0.012637742795050144, 0.05936474725604057, 0.0242728590965271, 0.009390868246555328, -0.0012328793527558446, 0.036560848355293274, 0.000690762244630605, 0.0007563409162685275, 0.03203737735748291, -0.024552661925554276, 0.021160058677196503, -0.009659012779593468, -0.011180438101291656, -0.01485284510999918, -0.03236381337046623, 0.0005024056299589574, -0.031617674976587296, 0.004747897386550903, 0.005429915618151426, -0.050224535167217255, 0.010475102812051773, 0.018711786717176437, 0.02457597851753235, -0.010189471766352654, -0.0026042028330266476, -0.026324743404984474, -0.03795986250042915, -0.007624615915119648, -0.022652337327599525, -0.017184531316161156, -0.020122457295656204, -0.0034304943401366472, 0.012078138068318367, -0.004814933519810438, -0.003319739131256938, -0.026184843853116035, 0.0030457659158855677, 0.006097360979765654, 0.009122724644839764, -0.02567187137901783, 0.044488582760095596, 0.007881101220846176, -0.025462020188570023, -0.003447981784120202, 0.027560537680983543, -0.012043162249028683, -0.028516529127955437, 0.02099684067070484, -0.015540692955255508, 0.03574476018548012, -0.02190619707107544, 0.02707088366150856, 0.019422952085733414, -0.0015053952811285853, -0.0029014928732067347, -0.00884875189512968, 0.02410964109003544, 0.03553490713238716, 0.019259734079241753, 0.007572153117507696, 0.022442486137151718, -0.0095657454803586, 0.024645930156111717, 0.015039379708468914, -0.022279268130660057, -0.029285985976457596, 0.001253281719982624, -0.022442486137151718, -0.01380358636379242, 0.014538067393004894, 0.004747897386550903, -0.00696008512750268, 0.004911115393042564, -0.006295554339885712, 0.019061539322137833, 0.017196189612150192, -0.030545096844434738, -0.043952297419309616, 0.05120384320616722, 0.005083077121526003, -0.0038560270331799984, 0.005703888833522797, 0.00374235725030303, -0.008195878937840462, 0.018315399065613747, 0.03203737735748291, -0.006476260256022215, 0.01361705083400011, 0.04136412590742111, -0.0022719374392181635, -0.002869432093575597, 0.02343345247209072, -0.025018999353051186, -0.01496942900121212, -0.007338984403759241, 0.01311573851853609, -0.02013411559164524, -0.010807367973029613, 0.0004360983148217201, 0.008318292908370495, 0.023095358163118362, 0.022978773340582848, -0.03173425793647766, 0.017825745046138763, -0.021451517939567566, -0.02490241453051567, -0.005875850562006235, 0.007181595545262098, -0.020460551604628563, -0.024529345333576202, -0.028586480766534805, 0.003194411052390933, 0.012800960801541805, -0.03450896590948105, 0.02384149841964245, 0.007904418744146824, 0.007269033696502447, 0.05264948680996895, -0.00503352889791131, -0.005150113254785538, 0.01083651464432478, -0.0027834512293338776, 0.02753722108900547, 0.02760717272758484, 0.006289725191891193, -0.009670671075582504, 0.00029510410968214273, -0.010556711815297604, 0.01201984565705061, 0.03488203510642052, -0.03583802655339241, -0.02043723501265049, 0.007997686043381691, -0.032387129962444305, -0.008073465898633003, -0.011081341654062271, -0.03436906263232231, 0.002193243009969592, -0.003686979878693819, -0.013558758422732353, -0.005922484677284956, -0.020448893308639526, 0.0277703907340765, -0.001295543508604169, 0.01787238009274006, -0.014759577810764313, -0.017277799546718597, 0.005045187193900347, 0.032550349831581116, 0.0022559070494025946, 0.013057446107268333, 0.005925399251282215, 0.019609486684203148, 0.0034742134157568216, -0.010014594532549381, -0.01880505494773388, 0.003649089951068163, -0.03674738481640816, 0.012999153696000576, 0.005065589677542448, 0.00465171504765749, -0.010014594532549381, 0.00940252747386694, -0.0160653218626976, 0.05950464680790901, 0.002741189207881689, 0.018723445013165474, -0.003392604412510991, 0.03110470250248909, 0.004415631759911776, 0.0022631934843957424, 0.027210785076022148, 0.024949049577116966, 0.004558447748422623, 0.019213099032640457, -0.029682373628020287, 0.008399901911616325, 0.010574200190603733, -0.019656119868159294, 0.021754637360572815, 0.038985803723335266, 0.026464644819498062, -0.001378609798848629, -0.021288299933075905, -0.04148070886731148, 0.022314243018627167, -0.029379254207015038, -0.023316867649555206, -0.010830685496330261, 0.004963578190654516, -0.009291771799325943, -0.007204912137240171, 0.014025095850229263, -0.0003579503681976348, 0.016659902408719063, 0.02357335388660431, 0.04754309356212616, 0.01896827295422554, 0.015680594369769096, -0.017079606652259827, -0.015062697231769562, 0.010982245206832886, -0.024762514978647232, -0.02396973967552185, 0.016718193888664246, -0.04031486436724663, 0.015086013823747635, 0.01907319761812687, 0.03553490713238716, -0.02846989594399929, 0.013057446107268333, -0.027117516845464706, 0.012509499676525593, -0.007682907860726118, 0.004791616462171078, -0.0005177073180675507, -0.022594045847654343, 0.0015520290471613407, -0.00905277393758297, 0.01443314179778099, 0.02436612732708454, -0.013313931412994862, -0.015132647939026356, 0.0024511858355253935, -0.00018252736481372267, -0.016811462119221687, -0.003095314372330904, -0.0089187016710639, -0.020647086203098297, -0.006843500770628452, 0.007263204548507929, 0.0039492943324148655, 0.008125928230583668, -0.023853156715631485, -0.043322741985321045, -0.020588794723153114, 0.02009914070367813, -0.007875272072851658, 0.024342810735106468, -0.02536875195801258, -0.008050148375332355, -0.014677968807518482, -0.007467227056622505, -0.033156584948301315, 0.003310995176434517, -0.037563472986221313, -0.019481243565678596, -0.006563698407262564, 0.010352689772844315, -0.017685843631625175, 0.03474213182926178, -0.007076669484376907, 0.020810304209589958, -0.0037598449271172285, 0.007496373262256384, -0.04616739973425865, 0.003940550610423088, 0.01733609102666378, -0.017196189612150192, -0.049058690667152405, -0.03024197742342949, 0.0009960674215108156, 0.02410964109003544, -0.025485336780548096, 0.05283602327108383, -0.014981088228523731, -0.03201406076550484, 0.01205482054501772, 0.011098829098045826, -0.02977563999593258, -0.009274284355342388, -0.014514750801026821, 0.06118346378207207, -0.03833293169736862, -0.028493212535977364, -0.030195344239473343, 0.005278355907648802, -0.005083077121526003, 0.010941440239548683, 0.01341885793954134, -0.0016161503735929728, -0.001477706478908658, 0.014841186814010143, -0.007857784628868103, -0.012754326686263084, 0.03236381337046623, -0.01064997911453247, 0.011127975769340992, 0.019796021282672882, -0.014130022376775742, -0.04080452024936676, -0.0025663129054009914, -0.027047567069530487, 0.0008117184625007212, 0.004753726534545422, -0.001665698830038309, 0.02213936671614647, 0.008860410191118717, -0.01380358636379242, -0.041690561920404434, 0.0040338183753192425, -0.036887284368276596, 0.013010812923312187, -0.00575052248314023, 0.053955234587192535, 0.012765984982252121, 0.005730120465159416, -0.0029160657431930304, -0.034252479672431946, 0.017953988164663315, -0.008982823230326176, 0.018863346427679062, 0.03786659240722656, -0.0038706001359969378, -0.011186267249286175, 0.0016292661894112825, -0.014596359804272652, 0.011238730512559414, 0.0066861119121313095, -0.013605392538011074, -0.00946664810180664, 0.02413295768201351, -0.0010820484021678567, 0.024016374722123146, 0.02314199134707451, 0.006278066895902157, -0.038589417934417725, -0.00018762792751658708, 0.01807057298719883, 0.01353544183075428, 0.033086635172367096, 0.013931828550994396, 0.019644461572170258, 0.027677122503519058, -0.02056547813117504, 0.0020067079458385706, 0.013372223824262619, 0.006441284902393818, 0.02350340224802494, -0.01160014234483242, -0.0017575089586898685, -0.025485336780548096, -0.004546789452433586, 0.02174297906458378, 0.0009253881871700287, 0.03464886546134949, 0.019912606105208397, 0.003310995176434517, 0.0028475725557655096, -0.002360832877457142, -0.005496951751410961, -0.021754637360572815, 0.012311306782066822, -0.006505406461656094, -0.024296177551150322, -0.03499861806631088, -0.04826591536402702, 0.010084545239806175, 0.03460223227739334, 0.01003208290785551, 0.01408338826149702, 0.006872646976262331, 0.0009341320255771279, -0.024179592728614807, -0.027094200253486633, -0.04635393247008324, -0.0047828727401793, -0.04451190307736397, 0.0062372623942792416, 0.033156584948301315, 0.025252168998122215, 0.00602741027250886, 0.00390848983079195, -0.04360254481434822, 0.012066478841006756, 0.008895385079085827, -0.02257072925567627, 0.0001204097643494606, 0.002107261912897229, -0.024879097938537598, -0.009338405914604664, -0.002506563439965248, -0.03143113851547241, 0.00445935083553195, 0.02364330366253853, 0.046330615878105164, -0.016310149803757668, 0.009973790496587753, -0.01843198388814926, 0.0209035724401474, -0.008644728921353817, 0.023923106491565704, -0.03674738481640816, -0.01763921044766903, 0.008015173487365246, -0.011349485255777836, 0.023759888485074043, 0.03280683234333992, 0.02023904211819172, 0.019387975335121155, -0.00918684620410204, 0.016193564981222153, -0.008446535095572472, -0.0022719374392181635, 0.02504231594502926, -0.01097058691084385, -0.035418324172496796, 0.04397561401128769, -0.03754015639424324, 0.016146931797266006, -7.240980630740523e-05, 0.004269901663064957, 0.01193240750581026, -0.014071729965507984, -6.726370338583365e-05, -0.06272237747907639, -0.0015695167239755392, -0.0388692207634449, -0.02784034051001072, -6.444017344620079e-05, 0.03569812700152397, 0.0016861010808497667, -0.0015389133477583528, 0.014701285399496555, 0.016461709514260292, -0.016718193888664246, 0.01496942900121212, 0.01730111613869667, 0.0182687658816576], [-0.06070532277226448, 0.016868900507688522, 0.050754375755786896, 0.043075334280729294, -0.08346981555223465, -0.013608715496957302, 0.01055300235748291, 0.0663396492600441, -0.006037589628249407, 0.0014504698337987065, -0.04739195480942726, 0.0019339597783982754, 0.01597149670124054, 0.03046625666320324, -0.0718376636505127, 0.03832704946398735, 0.03812257945537567, 0.06474931538105011, -0.035305414348840714, -0.033987708389759064, 0.01599421724677086, 0.00866732094436884, 0.0005857257056050003, -0.0011565419845283031, 0.004824959672987461, 0.02250322699546814, -0.020242679864168167, 0.0017380078788846731, 0.037713635712862015, -0.048118963837623596, 0.017879897728562355, -0.01385862473398447, 0.03578251600265503, -0.0005264431820251048, -0.0159828569740057, -0.02253730595111847, -0.008326534181833267, -0.008877472020685673, 0.0275582168251276, -0.02111736498773098, -0.022809933871030807, 0.04925491660833359, -0.03430577740073204, -0.003555532544851303, -0.07847162336111069, 0.05311715602874756, 0.030193626880645752, 0.007639283314347267, -0.03605514392256737, 0.03685031086206436, 0.03217018395662308, 0.012075179256498814, -0.05834253877401352, 0.024468425661325455, 0.02524087391793728, -0.009627200663089752, -0.013381524942815304, 0.01987917535007, 0.025536220520734787, 0.034941911697387695, 0.03553260490298271, -0.033646922558546066, -0.016846181824803352, -0.002548794262111187, 0.02892136014997959, 0.012109257280826569, 0.02903495542705059, 0.0138359060510993, -0.027012959122657776, -0.00987710990011692, 0.017664067447185516, 0.04362059012055397, 0.04339339956641197, -0.053753290325403214, -0.05266277492046356, 0.015062735415995121, 0.041757628321647644, 0.0008448649314232171, -0.008559404872357845, -0.037554603070020676, -0.036282334476709366, 0.0037855629343539476, -0.0021086125634610653, -0.02258274331688881, -0.02380957268178463, -0.03657768294215202, -0.039303969591856, -0.01713017001748085, -0.031193265691399574, -0.00851964671164751, -0.04611968621611595, -0.012768110260367393, -0.028716888278722763, 0.033805958926677704, -0.004078070633113384, -0.03405586630105972, 0.012779469601809978, -0.006509010214358568, -0.02751277945935726, 0.008139102719724178, -0.007201941218227148, 0.0008654540870338678, 0.025808850303292274, 0.04602881148457527, 0.008354933001101017, -0.04225744679570198, -0.02243506908416748, 0.06056900694966316, 0.012983941473066807, 0.009763514623045921, -0.06470387428998947, 0.006378375459462404, -0.01718696765601635, 0.037577319890260696, -0.015573914162814617, -0.004543811548501253, 0.0158692616969347, -0.022832652553915977, 0.01991325430572033, 0.023446068167686462, 0.012370526790618896, 0.028739608824253082, -0.008956988342106342, -0.06284091621637344, -0.004904476460069418, -0.03060257062315941, -0.007099705282598734, -0.018902255222201347, -0.06188671290874481, 0.020924251526594162, 0.0022250476758927107, -0.04121236875653267, 0.0342603400349617, 0.023264314979314804, 0.011677595786750317, -0.01047348603606224, 0.02112872339785099, -0.010149738751351833, -0.01130273099988699, -0.039054058492183685, -0.0015193369472399354, 0.014074455946683884, 0.03978107124567032, 0.00019417694420553744, -0.08106159418821335, -0.00755976652726531, -0.028171630576252937, 0.01461971364915371, 0.012790829874575138, -0.03669127821922302, -0.0013411344261839986, 0.02236691303551197, -0.008695719763636589, -0.037622760981321335, 0.019390715286135674, 0.03401042893528938, 0.010791552253067493, 0.05552537739276886, 0.0007930371211841702, 0.02905767410993576, -0.01990189403295517, 0.0021952290553599596, -0.006054628640413284, 0.020333556458353996, 0.06243196874856949, 0.02254866436123848, -0.016971135511994362, -0.010865389369428158, -0.03062528930604458, -0.056070633232593536, -0.024741053581237793, -0.011501522734761238, -0.03660040348768234, -6.238865898922086e-05, -0.008741157129406929, -0.032306499779224396, 0.015573914162814617, 0.030738884583115578, -0.03591883182525635, -0.009314813651144505, -0.02667217329144478, -0.046846695244312286, -0.0038593998178839684, -0.021389992907643318, -0.03396499156951904, -0.031102389097213745, 0.061614084988832474, -0.006083027459681034, -0.024218514561653137, 0.029875561594963074, -0.007059947121888399, -0.06506738066673279, 0.024082200601696968, 0.031034233048558235, -0.0340331494808197, 0.004146228078752756, -0.03844064474105835, -0.002855501603335142, 0.01830020174384117, 0.02528631128370762, 0.0054781329818069935, -0.06111426651477814, 0.04771002009510994, 0.04880053550004959, -0.11259564757347107, -0.02776268869638443, 0.015074094757437706, -0.013461041264235973, 0.038849588483572006, 0.037804510444402695, -0.0013773428509011865, -0.009337532334029675, 0.03182939812541008, 0.010036143474280834, -0.0079630296677351, -0.001703929272480309, 0.0025558939669281244, 0.0423937626183033, 0.010053182952105999, 0.00787215307354927, -0.03535085543990135, -0.007951670326292515, -0.00246927747502923, 0.0019879175815731287, 0.018924975767731667, 0.013302008621394634, 0.032329220324754715, -0.005094748456031084, 0.004802240990102291, -0.03528269752860069, 0.019299838691949844, 0.014176691882312298, 0.016812102869153023, -0.0027788246516138315, 0.007923271507024765, 0.023230236023664474, 0.01517633069306612, 0.0010621158871799707, 0.025581659749150276, 0.001544895931147039, 0.001211209804750979, 0.032488252967596054, -0.013938141986727715, -0.0275582168251276, 0.03285175561904907, -0.035123664885759354, -0.0317385233938694, 0.0319657139480114, 0.010535962879657745, -0.01826612278819084, -0.029398459941148758, -0.012029740959405899, 0.06697577983140945, -0.08360613137483597, -0.001354623818770051, 0.020254040136933327, -0.01711880974471569, -0.010234935209155083, 0.03217018395662308, -0.04730107635259628, 0.0454835519194603, -0.061568647623062134, -0.020197242498397827, 0.013824546709656715, -0.025354469195008278, -0.010865389369428158, 0.010348530486226082, 0.01528992597013712, -0.021957969292998314, 0.016482675448060036, -0.06665771454572678, -0.00991686899214983, 0.03789538890123367, -8.825821714708582e-05, -0.005784839857369661, 0.011092579923570156, -0.007412092760205269, 0.010819951072335243, -0.04621056467294693, 0.020492589101195335, -0.029557494446635246, 0.054798368364572525, -0.01572158746421337, -0.023423347622156143, 0.05702483654022217, 0.0277854073792696, -0.02007228694856167, 0.0022122683003544807, 0.0061455052345991135, 0.018947694450616837, 0.056297823786735535, -0.010888108052313328, -0.06961119174957275, -0.012302369810640812, 0.0557980053126812, 0.003217586548998952, 0.0425073578953743, -0.037486445158720016, 0.013040739111602306, 0.002696468262001872, 0.0020432951860129833, 0.05379872769117355, 0.001560515258461237, -0.04005369916558266, -0.07865338027477264, 0.009752155281603336, 0.03264728561043739, 0.0639314278960228, -0.0051572262309491634, -0.018993131816387177, -0.014176691882312298, -0.014846904203295708, -0.009047864936292171, -0.05961480736732483, 0.01523312833160162, -0.014608354307711124, -0.022775854915380478, 0.032215625047683716, -0.012540919706225395, 0.004310941323637962, 0.015619352459907532, 0.06997469812631607, 0.040417201817035675, -0.039417564868927, 0.003075592452660203, 0.03291991353034973, 0.02503640204668045, 0.02257138304412365, -0.002371301641687751, 0.032306499779224396, 0.02133319526910782, 0.0037202457897365093, 0.0029563172720372677, -0.0079630296677351, 0.014301646500825882, -0.003899158211424947, 0.020799297839403152, -0.017629988491535187, -0.011711673811078072, -0.010098621249198914, -0.0015690348809584975, -0.007360974792391062, 0.049527544528245926, -0.01724376529455185, -0.03955388069152832, 0.033737801015377045, 0.043029896914958954, 0.037531882524490356, 0.003487375332042575, -0.028762327507138252, -0.05938761681318283, -0.007258738856762648, -0.012120617553591728, 0.018959052860736847, -0.03407858684659004, -0.023491505533456802, 0.04377962276339531, 0.014608354307711124, -0.04648319259285927, 0.004021272994577885, -0.02374141477048397, 0.011984302662312984, 0.037668198347091675, 0.04107605665922165, 0.010098621249198914, -0.000860484316945076, 0.020844735205173492, -0.009712397120893002, 0.022912168875336647, -0.010081581771373749, -0.011711673811078072, -0.021810295060276985, -0.023082561790943146, -0.07551814615726471, -0.018141167238354683, -0.018004853278398514, 0.03816801682114601, 0.007247379515320063, -0.00010001710325013846, -0.0033425414003431797, 0.009661279618740082, 0.036191459745168686, 0.002567253541201353, -0.007076986599713564, 0.10250838845968246, -0.017641348764300346, -0.052435584366321564, -0.035010069608688354, -0.024377549067139626, -0.012427324429154396, 0.012415965087711811, 0.03303350880742073, -0.006446532439440489, -0.008479888550937176, -0.020594825968146324, -0.0014596994733437896, 0.018981773406267166, 0.0038281611632555723, -0.007020188961178064, -0.005662725307047367, 0.0029051995370537043, -0.0239458866417408, -0.005245262291282415, -0.0498456135392189, 0.0029534774366766214, -0.002007796661928296, -0.0017394277965649962, 0.036464087665081024, -0.00799710862338543, -0.03707750141620636, -0.012404605746269226, -0.04341612011194229, 0.024763772264122963, 0.019299838691949844, 0.02914855070412159, 0.023093922063708305, -0.017823100090026855, 0.04082614555954933, -0.019572468474507332, -0.039144936949014664, 0.05166313797235489, 0.038849588483572006, -0.013517838902771473, 0.0011998502304777503, -0.03730469197034836, 0.004256983287632465, -0.006827076897025108, -0.048073526471853256, 0.041598595678806305, -0.01724376529455185, 0.053571537137031555, -0.03978107124567032, -0.0236051008105278, 0.01380182709544897, -0.05161770060658455, -0.0007717380067333579, 0.027217430993914604, 0.001767826615832746, -0.008951309137046337, -0.004836319480091333, -0.04482470080256462, 0.013063457794487476, -0.00018015502428170294, -0.012347808107733727, -0.038758713752031326, 0.037509165704250336, 0.008962668478488922, -0.01182526908814907, 0.0339195542037487, -0.01322249136865139, 0.0068100374191999435, -0.05575256794691086, -0.030011875554919243, -0.040326327085494995, -0.01517633069306612, 0.023446068167686462, -0.03991738334298134, -0.019992770627141, 0.05638870224356651, -0.01700521446764469, -0.02517271600663662, 0.020822016522288322, 0.013358806259930134, 0.03148861229419708, -0.013018020428717136, 0.007423452101647854, -0.06693034619092941, -0.002832782454788685, -0.011035782285034657, -0.028080755844712257, -0.035146381705999374, 0.009519285522401333, -0.01962926611304283, -0.0026070119347423315, 0.021935250610113144, 0.02760365419089794, -0.07111065089702606, -0.06225021928548813, -0.04616512358188629, -0.039099499583244324, -0.03946300223469734, -0.0068100374191999435, -0.016459956765174866, -0.010535962879657745, 0.03401042893528938, 0.008837713859975338, 0.007071306463330984, 0.01444932073354721, -0.019231682643294334, -0.030784323811531067, 0.0009513605618849397, 0.009899829514324665, 0.008127742446959019, -0.009411369450390339, -0.0006031199591234326, -0.009649919345974922, -0.020322196185588837, -0.006537409033626318, 0.06265915930271149, -0.024377549067139626, 0.025468064472079277, -0.023162079975008965, 0.029739245772361755, 0.017493674531579018, 0.079971082508564, 0.020413072779774666, 0.01857282966375351, 0.03171580284833908, 0.0056059276685118675, 0.00312671042047441, -0.041575875133275986, 0.006849796045571566, -0.014744668267667294, -0.044234003871679306, 0.00366060808300972, -0.005043630953878164, -0.00116293178871274, 0.00366060808300972, -0.02651314064860344, 0.05134506896138191, 0.01448339968919754, 0.004342179745435715, -0.04330252483487129, 0.02664945460855961, 0.007514328230172396, 0.0015037176199257374, -0.03944028541445732, -0.11395879089832306, 0.02099240943789482, -0.013563277199864388, -0.0019254401559010148, -0.0347147211432457, -0.0498456135392189, 0.034828316420316696, -0.014290287159383297, 0.02237827144563198, 0.01849331334233284, -0.0018232043366879225, 0.007423452101647854, -0.008945629000663757, 0.040417201817035675, -0.02367325872182846, 0.004220064729452133, -0.0005186334601603448, 0.0049697938375175, -0.026763049885630608, -0.0013439742615446448, 0.03267000615596771, -0.003345381235703826, 0.017629988491535187, 0.007275778334587812, 0.015244487673044205, 0.019367996603250504, -0.02387772873044014, 0.020117726176977158, -0.020833374932408333, 0.02120823971927166, 0.0009258015779778361, 0.045778900384902954, -0.006384055130183697, 0.012779469601809978, 0.015414880588650703, 0.03959931805729866, -0.0008164661121554673, 0.019038571044802666, 0.019015850499272346, 0.01517633069306612, -0.020367635414004326, -0.003583931364119053, -0.000641458376776427, 0.0012147596571594477, 0.02387772873044014, -0.014437961392104626, 0.032261062413454056, 0.020776577293872833, 0.04907316341996193, 0.0014284607023000717, -0.03057985194027424, 0.01450611837208271, -0.01189342699944973, 0.013108896091580391, 0.02376413345336914, 0.013063457794487476, -0.039144936949014664, -0.0023784013465046883, -0.03469200059771538, 0.001482418505474925, 0.020481230691075325, 0.026808487251400948, 0.03053441271185875, 0.0036038104444742203, -0.008616202510893345, 0.03741828724741936, -0.019129445776343346, -0.015244487673044205, 0.030034594237804413, 0.010740434750914574, -0.03212474659085274, -0.012881705537438393, 0.03737284988164902, 0.03657768294215202, -0.01734600029885769, 0.016130531206727028, -0.028058035299181938, -0.02243506908416748, -0.01995869167149067, -0.005214023869484663, 0.011507202871143818, 0.010371250100433826, 0.004151907749474049, 0.006139825098216534, 0.022219238802790642, -0.0044983732514083385, -0.009638560004532337, -0.03057985194027424, 0.029421180486679077, -0.007383693940937519, -0.028398821130394936, 0.014381163753569126, 0.04387050122022629, 0.02387772873044014, -0.0018075850093737245, 0.008502607233822346, 0.0038196416571736336, -0.002359942067414522, 0.028330665081739426, -0.02242371067404747, -0.015074094757437706, -0.0011480223620310426, -0.0321929045021534, -0.016153249889612198, 0.0372365340590477, 0.016846181824803352, -0.011507202871143818, 0.01568750850856304, -0.036146022379398346, 0.017902618274092674, -0.017913976684212685, 0.03539629280567169, 0.007116744760423899, 0.03291991353034973, 0.021696699783205986, 0.0011679015588015318, -0.019504310563206673, 0.04505189135670662, 0.03223834186792374, -0.006128465756773949, 0.01985645666718483, -0.00999070517718792, 0.00784375425428152, 0.03030722215771675, -0.01327928900718689, -0.02365053817629814, -0.02259410358965397, -0.0012559378519654274, -0.014903701841831207, -0.0023670417722314596, 0.04368874803185463, 0.02760365419089794, 0.028012597933411598, -0.018004853278398514, -0.004671606235206127, -0.010251974686980247, 0.04798264801502228, 0.0054128156043589115, 0.0024806370493024588, 0.010127020068466663, -0.018277481198310852, -0.011030102148652077, 0.028239788487553596, -0.042689111083745956, -0.021412711590528488, 0.06111426651477814, -0.0005807559355162084, 0.017993493005633354, 0.007389373611658812, -0.0551164336502552, -0.00123605877161026, -0.036236897110939026, 0.005040790885686874, -0.005179944913834333, -0.008354933001101017, -0.02261682227253914, -0.012302369810640812, -0.028171630576252937, 0.0026510299649089575, 0.0008824933902360499, -0.02265090122818947, 0.03285175561904907, -0.022173799574375153, -0.0005537770339287817, 0.04484742134809494, 0.02137863263487816, 0.025831568986177444, 0.02501368336379528, 0.021344555541872978, 0.0008193060057237744, -0.002754685701802373, -0.023128001019358635, -0.04391593858599663, 0.003456136677414179, 0.022173799574375153, 0.0005204083863645792, -0.0612960159778595, -0.005941033363342285, -0.008309495635330677, 0.01736871898174286, 0.03328341990709305, 0.03737284988164902, -0.03210202977061272, 0.003362420480698347, -0.02492280676960945, -0.014074455946683884, 0.014631072990596294, -0.045688025653362274, 0.016459956765174866, 0.013745029456913471, -0.00987710990011692, 0.00015974337293300778, 0.011325450614094734, -0.018197964876890182, 0.01830020174384117, 0.008354933001101017, -0.04530180245637894, 0.05811534821987152, 0.002585712820291519, -0.006781638599932194, -0.03962203487753868, 0.021855734288692474, -0.011376568116247654, 0.024150358512997627, -0.01724376529455185, -0.008241337724030018, 0.01847059465944767, -0.005171425640583038, 0.06284091621637344, -0.016664428636431694, -0.04003097862005234, -0.02646770142018795, -0.00659988634288311, -0.03035266138613224, -0.03407858684659004, 0.011609438806772232, -0.045710742473602295, -0.0505271852016449, 0.01960654743015766, 6.332049815682694e-05, -0.005199824459850788, -0.03303350880742073, -0.001299956114962697, -0.0028768007177859545, 0.006781638599932194, -0.00019843677000608295, -0.03319254145026207, -0.011643516831099987, -0.011115298606455326, 0.02642226405441761, 0.02116280235350132, -0.0040383124724030495, 0.03280631825327873, -0.011666236445307732, 0.01589198037981987, 0.015562554821372032, 0.006588526535779238, 0.016346361488103867, -0.05302628129720688, -0.035078223794698715, -0.018936334177851677, 0.015437599271535873, 0.051117878407239914, 0.024422986432909966, 0.0014455000637099147, -0.016971135511994362, 0.0367821529507637, 0.04341612011194229, 0.001594593864865601, -0.017970774322748184, -0.006724840961396694, -0.023116640746593475, -0.0156988687813282, -0.01869778521358967, -0.056252386420965195, 0.018981773406267166, 0.029512055218219757, -0.003010275075212121, 0.018720503896474838, 0.03332885727286339, -0.005299220327287912, 0.03710022196173668, -0.024741053581237793, -0.002584292786195874, 0.014960499480366707, -0.012291010469198227, -0.020185882225632668, 0.027308307588100433, 0.028694169595837593, -0.009030825458467007, -0.04359787330031395, 0.01118913572281599, -0.011518562212586403, -0.0025913924910128117, -0.020731139928102493, -0.017982134595513344, 0.00784375425428152, 0.02769453078508377, -0.05670676752924919, 0.012415965087711811, -0.01442660205066204, 0.019379356876015663, -0.012291010469198227, -0.027035677805542946, -0.0037685236893594265, -0.02369597740471363, 0.03042081743478775, -0.00016879549366421998, -0.008269736543297768, -0.008525325916707516, -0.03555532544851303, 0.0237186960875988, 0.03485103324055672, -0.0036748074926435947, -0.013415603898465633, 0.025513501837849617, 0.008587803691625595, 0.027967160567641258, 0.008315174840390682, -0.014892342500388622, 0.02642226405441761, -0.018084369599819183, 0.019049929454922676, -0.02512727864086628, -0.011507202871143818, -0.021594464778900146, -0.028739608824253082, -0.024877367541193962, -0.013665513135492802, -0.008735477924346924, 0.0069520315155386925, -0.005509371403604746, -0.01392678264528513, 0.021412711590528488, 0.000820015964563936, -0.0006943512125872076, -0.010342851281166077, -0.01700521446764469, 0.019129445776343346, 0.005239582620561123, -0.011643516831099987, -0.02369597740471363, 0.02000413089990616, -0.0024451385252177715, 0.009263696148991585, -0.005313419736921787, -0.022730417549610138, 0.012756750918924809, -0.00011066666047554463, -0.00994526781141758, -0.0034646561834961176, -0.013517838902771473, -0.008298135362565517, -0.012007022276520729, -0.0118593480437994, -0.008593483828008175, -0.033601485192775726, 0.0012317989021539688, 0.04657406732439995, 0.0009172819554805756, -0.020799297839403152, 0.028262507170438766, 0.012256931513547897, 0.04091702401638031, -0.03466928377747536, 0.03925853222608566, -0.025990601629018784, -0.04003097862005234, 0.0017536272061988711, 0.0050379508174955845, 0.01994733326137066, 0.05552537739276886, 0.013324727304279804, -0.005526410881429911, 0.014165332540869713, 3.676316191558726e-05, 0.016664428636431694, -0.005390096455812454, -0.019299838691949844, 0.0016826301580294967, -0.003890638705343008, 0.0472102016210556, -0.0029761965852230787, 0.0030131149105727673, 0.02526359260082245, 0.002933598356321454, 0.007690400816500187, -0.009047864936292171, -0.006321577820926905, 0.0046176486648619175, 0.0021426910534501076, -0.005449734162539244, -0.001100454363040626, 0.005517891142517328, 0.0062079825438559055, -0.007275778334587812, -0.006429493427276611, -0.016164610162377357, -0.005776320584118366, -0.002710667671635747, 0.004543811548501253, 0.009587442502379417, -0.022889450192451477, -0.04498373344540596, -0.03582795336842537, -0.020697060972452164, -0.0446883849799633, 0.0016528114210814238, 0.020378993824124336, -0.04343883693218231, 0.012961222790181637, -0.024741053581237793, -0.020435791462659836, -0.0042939018458127975, 0.018209325149655342, -0.003456136677414179, 0.0008661640458740294, -0.0018217844190075994, -0.02367325872182846, -0.030193626880645752, -0.01725512370467186, -0.026240510866045952, -0.015096813440322876, -0.022775854915380478, 0.04646047204732895, 0.002531755017116666, -0.008371972478926182, 0.05184489116072655, -0.015040015801787376, -0.019311198964715004, -0.0033056228421628475, 0.02514999732375145, -0.01054732222110033, 0.013733670115470886, -0.017641348764300346, 0.016664428636431694, -0.025967882946133614, 0.028217069804668427, -0.04014457389712334, -0.0015250167343765497, 0.017459595575928688, -0.01973150111734867, -0.006526049226522446, -0.01461971364915371, 0.01849331334233284, -0.02103784680366516, -0.01972014270722866, 0.011234574019908905, 0.002100092824548483, 0.03587339073419571, 0.01058708131313324, 0.03809985890984535, 0.009740795940160751, 0.050981566309928894, -0.01588062196969986, -0.012813548557460308, -0.044143129140138626, 0.04337068274617195, -0.010768833570182323, 0.028376102447509766, -0.01053028367459774, 0.021605823189020157, 0.03657768294215202, -0.011529921554028988, -0.04780089855194092, 0.018186606466770172, 0.02104920707643032, 0.002388340886682272, 0.024650176987051964, 0.0042967419140040874, 0.00312671042047441, 0.004092270042747259, -0.01601693592965603, 0.009371611289680004, 0.014494759030640125, 0.04523364454507828, -0.006588526535779238, -0.04752826690673828, -0.01700521446764469, 0.028535136952996254, -0.014880983158946037, 0.02901223674416542, 0.01839107647538185, 0.0002234632265754044, -0.015028656460344791, 0.053753290325403214, 0.0016513915034011006, 0.011495843529701233, 0.006832756567746401, 0.012279650196433067, 0.01731192134320736, 0.025422625243663788, -0.010723395273089409, 0.012802189216017723, 0.0010244875447824597, 0.016732586547732353, -0.00403547240421176, 0.008241337724030018, 0.01702793315052986, -0.005111787933856249, -0.003600970609113574, -0.014267568476498127, -0.02644498273730278, 0.007071306463330984, -0.029489336535334587, -0.002132751513272524, -0.024468425661325455, -0.023514224216341972, -0.05584344267845154, 0.029648371040821075, 0.03301079198718071, 0.01868642494082451, 0.07942582666873932, -0.018038932234048843, 0.048346154391765594, 0.01565343141555786, -0.006474931258708239, -0.0051032681949436665, -0.014403882436454296, -0.002119972137734294, -0.0037969225086271763, 0.02378685399889946, 0.028194351121783257, -0.006673722993582487, -0.0019339597783982754, -0.021583104506134987, -0.004634687677025795, 0.014869622886180878, 0.027194712311029434, 0.012438683770596981, 0.0037827230989933014, 0.002452238230034709, -0.006463571917265654, 0.015244487673044205, -0.027058398351073265, -0.016300924122333527, 0.012393246404826641, 0.007020188961178064, -0.017868539318442345, 0.025808850303292274, 0.021901171654462814, 0.020378993824124336, 0.004191665910184383, -0.012995300814509392, 0.005827438086271286, -0.04459751024842262, -0.0156420711427927, -0.005997831001877785, -0.01978829875588417, -0.0002055364748230204, -0.024036763235926628, -0.022173799574375153, -0.01597149670124054, 0.03335157781839371, -0.005307740066200495, -0.00014660891611129045, -0.00628181966021657, 0.02928486466407776, -0.023514224216341972, -0.04234832525253296, 0.02660401724278927, 0.01458563469350338, -0.019447512924671173, -0.03841792792081833, 0.030852479860186577, -0.022219238802790642, 0.012347808107733727, 0.01834563910961151, 0.023230236023664474, -0.044393040239810944, -0.028694169595837593, -0.0025885526556521654, 0.02242371067404747, -0.030193626880645752, 0.03339701518416405, 0.04232560470700264, -0.026036040857434273, -0.000600990082602948, -0.019288480281829834, 0.010053182952105999, 0.03671399876475334, 0.023264314979314804, 0.022139722481369972, 0.011416326276957989, 0.025513501837849617, 0.01189342699944973, 0.003990034572780132, 0.007627923507243395, 0.031147828325629234, 0.009598801843822002, 0.016721226274967194, 0.03026178479194641, 0.008264057338237762, 0.00400707358494401, 0.00017500773537904024, 0.009439768269658089, 0.013585996814072132, 0.03589611127972603, 0.013529199175536633, 0.00035871262662112713, -0.016573552042245865, 0.009343212470412254, -0.007156503386795521, 0.01962926611304283, -0.0041007897816598415, 0.002662389539182186, 0.035078223794698715, 0.007440491579473019, 0.021514948457479477, -0.03046625666320324, 0.0008356353500857949, 0.013767749071121216, -0.011018742807209492, 0.005341818556189537, 0.0041774665005505085, -0.023048484697937965, 0.000994668691419065, 0.033942271023988724, -0.0059296740218997, 0.010263334028422832, 0.018061650916934013, 0.021560385823249817, 0.0237186960875988, -0.002039035316556692, 0.010865389369428158, 0.008440129458904266, -0.009036505594849586, 0.030193626880645752, -0.0004597059451043606, -0.028398821130394936, -0.029512055218219757, 0.04075798764824867, -0.01195022463798523, -0.008593483828008175, 0.009950947016477585, 0.009229617193341255, 0.013540558516979218, 0.0035129343159496784, -0.0156420711427927, -0.01834563910961151, 0.05434398725628853, 0.002037615515291691, -0.0045012133195996284, -0.015517116524279118, 0.04264366999268532, -0.005739402025938034, 0.02639954537153244, -0.00462048826739192, -0.04214385151863098, 0.041485000401735306, 0.03673671558499336, 0.02228739485144615, 0.022798573598265648, 0.0011870707385241985, -0.010212216526269913, -0.004058191552758217, -0.008883151225745678, 0.028126193210482597, 0.0014036117354407907, 0.014835544861853123, 0.004043992143124342, -0.007627923507243395, 0.021855734288692474, 0.005753601435571909, -0.012915784493088722, 0.006423813756555319, -0.003203387139365077, 0.013177053071558475, -0.030170908197760582, -0.016153249889612198, -0.0198223777115345, 0.011927505023777485, -0.0010855449363589287, 0.009661279618740082, -0.0037088862154632807, -0.0007972969324328005, -0.03280631825327873, -0.011569679714739323, 0.029898280277848244, 0.016823461279273033, 0.009899829514324665, 0.033465173095464706, -0.0022577063646167517, -0.0010784452315419912, 0.016437238082289696, 0.009008106775581837, -0.022946247830986977, 0.0008391852024942636, 0.023014405742287636, 0.0036577682476490736, 0.026763049885630608, -0.0006616925820708275, -0.03326069936156273, -0.03800898417830467, -0.012745391577482224, 0.005398616194725037, -0.00344477710314095, 0.015153611078858376, -0.01523312833160162, -0.005833118222653866, 0.021639902144670486, -0.016902979463338852, -0.028512418270111084, 0.015153611078858376, 0.004529612138867378, -0.030852479860186577, -0.020254040136933327, -0.01962926611304283, -0.024082200601696968, -0.000513663690071553, 0.015210408717393875, -0.026081478223204613, -0.0024635978043079376, -0.022219238802790642, -0.018016213551163673, 0.013585996814072132, 0.019231682643294334, 0.02519543468952179, 0.0047681620344519615, 0.04323436692357063, 0.00246927747502923, 0.023309752345085144, 0.051072441041469574, 0.039281249046325684, 0.01715288870036602, -0.01990189403295517, 0.003359580645337701, 0.01722104661166668, 0.0029932358302176, 0.017391439527273178, -0.025672534480690956, -0.016937056556344032, -0.010956265963613987, -0.022980326786637306, 0.020572107285261154, 0.008116383105516434, -0.01969742216169834, -0.04230288416147232, -0.00628181966021657, 0.01708473078906536, -0.004137708339840174, -0.004387618042528629, -0.023309752345085144, -0.002584292786195874, -0.027217430993914604, 0.007417772430926561, -0.01852739229798317, -0.031056951731443405, -0.005441214423626661, -0.005702483467757702, -0.03180668130517006, -0.033737801015377045, 0.025558939203619957, -0.03130686283111572, 0.014153973199427128, -0.028126193210482597, 0.019322559237480164, -0.04066711291670799, 0.009263696148991585, 0.024445705115795135, -0.03130686283111572, 0.020140444859862328, 0.0007223950233310461, -0.018788659945130348, 0.019197603687644005, -0.0013532039010897279, -0.004055351950228214, -0.004873238038271666, 0.012711312621831894, 0.005373056977987289, 0.014142612926661968, 0.029852841049432755, 0.016653068363666534, -0.024445705115795135, 0.013676872476935387, -0.020878814160823822, 0.016335003077983856, 0.020208600908517838, 0.005472452845424414, 0.010683637112379074, -0.00395595608279109, 0.018016213551163673, -0.003424898022785783, -0.030920637771487236, -0.024014044553041458, 0.044279444962739944, 0.0004352119576651603, -0.017868539318442345, 0.033805958926677704, 0.0062079825438559055, -0.034964628517627716, 0.0015661950455978513, -0.02380957268178463, -0.014415241777896881, 0.04143955931067467, 0.013120255433022976, 0.03164764866232872, -0.006611245684325695, 0.001608793274499476, 0.01992461271584034, 0.009678318165242672, 0.01841379702091217, -0.028217069804668427, -0.039031341671943665, -0.009172819554805756, -0.02649042196571827, 0.03030722215771675, -0.026967521756887436, -0.0003260539670009166, 0.007343935314565897, -0.007059947121888399, -0.012790829874575138, 0.012109257280826569, 0.02508183941245079, -0.010927867144346237, -0.0018019052222371101, 0.013733670115470886, 0.024036763235926628, -0.03794082626700401, -0.013483760878443718, 0.024332109838724136, -0.012279650196433067, -0.008479888550937176, -0.011870707385241985, 0.008161821402609348, -0.022105643525719643, 0.013267929665744305, -0.009445448406040668, 0.009081942960619926, -0.021344555541872978, 0.05125419422984123, -0.007315536495298147, 0.022809933871030807, 0.008508287370204926, -0.0278990026563406, -0.03328341990709305, 0.039076779037714005, -0.01064387895166874, 0.024173077195882797, 0.018197964876890182, 0.02104920707643032, 0.002165410201996565, 0.00857644435018301, -0.001020937692373991, 0.0343739353120327, -0.046664945781230927, -0.00996798649430275, 0.004078070633113384, 0.0449155755341053, -0.015028656460344791, 0.042893581092357635, -0.05411679670214653, -0.0011586719192564487, 0.00032374655711464584, 0.0342603400349617, -0.01386998500674963, 0.0021710898727178574, 0.02240099012851715, -0.021923890337347984, -0.023162079975008965, -0.011654876172542572, 0.005725202616304159, 0.003887798637151718, -0.03439665213227272, 0.002305984264239669, 0.000877523620147258, -0.020140444859862328, 0.039235811680555344, 0.033805958926677704, -0.026899363845586777, 0.01188206672668457, -0.008167501538991928, 0.008457168936729431, -0.03721381723880768, -0.04716476425528526, -0.0076052043586969376, -0.0080198273062706, -0.04543811455368996, 0.015585273504257202, -0.006355656310915947, -0.019765580072999, -0.004117829259485006, -0.013767749071121216, -0.022821294143795967, 0.009076263755559921, 0.009081942960619926, -0.030852479860186577, -0.025672534480690956, 0.029830122366547585, -0.018765941262245178, 0.016709866002202034, -0.003024474484845996, -0.0022449269890785217, -0.005111787933856249, 0.008883151225745678, -0.030102752149105072, 0.01590334065258503, -0.020458512008190155, 0.007866473868489265, -0.021617183461785316, -0.012893064878880978, -0.044529352337121964, 0.01833427883684635, 0.025763411074876785, 0.011654876172542572, 0.020435791462659836, -0.0014440801460295916, 0.01719832606613636, -0.033646922558546066, 0.0118593480437994, -0.021776216104626656, 0.043052613735198975, -0.011098260059952736, -0.04118965193629265, -0.004932875279337168, 0.010428047738969326, -0.009059224277734756, 0.003936076536774635, 0.012200133875012398, 0.008508287370204926, 0.029398459941148758, 0.00456653069704771, -0.0006606276147067547, 0.0041547478176653385, -0.004367738962173462, 0.005409975536167622, -0.004509733058512211, -0.003944596275687218, -0.004174626898020506, 0.02250322699546814, 0.022105643525719643, -0.006100066937506199, 0.026740331202745438, 0.008621882647275925, 0.0017621469451114535, 0.002902359701693058, 0.012813548557460308, 0.02521815337240696, -0.027194712311029434, -0.030966075137257576, -0.02380957268178463, -0.0053503382951021194, 0.011370887979865074, 0.014051737263798714, 0.028648732230067253, 0.019197603687644005, 0.02651314064860344, 0.010706355795264244, 0.015346723608672619, -0.006065988447517157, -0.0007010959088802338, 0.01189342699944973, -0.003791242837905884, 0.018038932234048843, 0.008531006053090096, 0.016210047528147697, -0.007360974792391062, 0.00048242497723549604, 0.012858986854553223, 0.034828316420316696, 0.008849073201417923, 0.007764237932860851, 0.015585273504257202, -0.029716527089476585, 0.018107088282704353, -0.04584705829620361, -0.031056951731443405, -0.03303350880742073, 0.007679041475057602, 0.005256622098386288, 0.00231024413369596, -0.04050808027386665, 0.011444725096225739, -0.05475292727351189, 0.03312438726425171, 0.024695616215467453, -0.007253059186041355, -0.000645363237708807, 0.015153611078858376, -0.02914855070412159, -0.006855475716292858, -0.03464656323194504, 0.004901636857539415, -0.00561160733923316, -0.012041100300848484, 0.038917746394872665, -0.007071306463330984, 0.022764496505260468, 0.00015734722546767443, -0.010411008261144161, 0.040280889719724655, 0.02246914803981781, -0.017993493005633354, -0.007815355435013771, 0.01177983172237873, -0.003887798637151718, 0.02639954537153244, 0.044211287051439285, -0.002660969737917185, -0.0023329632822424173, -0.03451024740934372, -0.014574275352060795, -0.017436876893043518, 0.010200857184827328, 0.013767749071121216, -0.034919191151857376, -0.016550833359360695, 0.021776216104626656, 0.03837248682975769, 0.03823617473244667, 0.012222852557897568, -0.021708060055971146, 0.005657045170664787, 0.022173799574375153, -0.0027390664909034967, -0.016993854194879532, 0.004336500074714422, 0.005009551998227835, 0.004188826307654381, 0.01853875070810318, 0.04355243220925331, 0.008224299177527428, 0.003106831107288599, -0.018936334177851677, -0.008281096816062927, -0.038917746394872665, 0.0044756545685231686, 0.012938503175973892, -0.014721949584782124], [-0.04713936522603035, 0.006546538323163986, 0.04083409905433655, 0.006605516187846661, -0.04297874867916107, 0.004680694546550512, 0.04709647223353386, 0.011817011050879955, 0.004211552906781435, -0.009618747048079967, -0.028438033536076546, 0.018701331689953804, 0.04482314735651016, -0.039718884974718094, -0.000655122974421829, -0.030411111190915108, 0.019044475629925728, 0.035386692732572556, 0.03131186217069626, -0.003828197019174695, 0.00620339484885335, 0.011516760103404522, -0.022583145648241043, -0.002809489145874977, -0.013253925368189812, -0.03527946025133133, -0.030003627762198448, 0.03553681820631027, 0.023977166041731834, -0.024384649470448494, 0.03298468887805939, -0.04396528750658035, 0.07008709758520126, -0.003297396469861269, 0.012985844165086746, -0.017446713522076607, 0.04263560473918915, -0.027837533503770828, 0.06648409366607666, 0.0073186117224395275, 4.2872019548667595e-05, 0.061765868216753006, 0.02314075268805027, -0.007962006144225597, 0.013028737157583237, 0.0058548892848193645, 0.02697967365384102, -0.011934966780245304, -0.0230120737105608, 0.03066846914589405, 0.0365448035299778, 0.005935313645750284, -0.03512933477759361, -0.001194300944916904, -0.030882934108376503, -0.0007352121756412089, -0.026100367307662964, -0.012117261998355389, 0.03637323155999184, -0.013189585879445076, 0.010948428884148598, -0.020181138068437576, 0.0010301013244315982, 0.014304802753031254, 0.0022384764160960913, 0.008953905664384365, 0.0004440091724973172, 0.03974033147096634, -0.04248547926545143, -0.01835818774998188, 0.0020561814308166504, 0.034936320036649704, 0.04688200727105141, -0.014937474392354488, -0.03242707997560501, 0.029553251340985298, -0.03577272966504097, 0.014529990963637829, 0.003407309763133526, -0.020921042189002037, -0.006803896278142929, 0.032684437930583954, -0.04739672318100929, 0.01598835177719593, 0.007216740865260363, -0.0613369382917881, -0.03708096593618393, 0.022261448204517365, 0.0032545034773647785, 0.022883394733071327, -0.019816549494862556, -0.007822603918612003, 0.015280618332326412, 0.04975583776831627, -0.009157647378742695, -0.026765208691358566, 0.014519267715513706, -0.04443711042404175, -0.026722315698862076, 0.017318034544587135, -0.02665797621011734, 0.016041968017816544, 0.02072802372276783, 0.037681467831134796, 0.007693925406783819, -0.06562623381614685, 0.027279924601316452, 0.0013377242721617222, -0.005887059029191732, 0.004903201945126057, -0.04795433208346367, -0.009645555168390274, -0.023612575605511665, 0.036780714988708496, -0.01786491833627224, 0.004535930696874857, 0.015248448587954044, -0.041970763355493546, 0.04653886333107948, -0.02507093735039234, -0.02061006799340248, 0.02764451503753662, 0.050227660685777664, -0.015752440318465233, 0.011227233335375786, -0.0205242820084095, 0.01880856417119503, -0.0009536982397548854, -0.06348158419132233, -0.0028228932060301304, 0.06326711922883987, -0.025006597861647606, 0.013479113578796387, 0.022304341197013855, 0.0491553358733654, -0.032898902893066406, -0.04868351295590401, 0.019183877855539322, -0.0099189979955554, -0.013564899563789368, 0.023312324658036232, 0.02061006799340248, 0.05944964662194252, -0.011623992584645748, -0.006342797074466944, -0.019280387088656425, 0.013843704015016556, 0.0460241474211216, 0.010658901184797287, -0.00838021282106638, -0.038131844252347946, 0.030475450679659843, 0.059063609689474106, -0.015591591596603394, 0.006841427646577358, 0.05087105557322502, -0.011130724102258682, 0.061637189239263535, 0.02065296098589897, -0.0016044648364186287, -0.060865115374326706, -0.049326907843351364, -0.02792331948876381, 0.005042604170739651, 0.02133924886584282, -0.01506615336984396, -0.009951167739927769, 0.04366503655910492, -0.042249567806720734, -0.05267255753278732, -0.018132999539375305, -0.024749239906668663, -0.033220600336790085, 0.02146792784333229, -0.023312324658036232, -0.0108787277713418, 0.051900483667850494, 0.04321466013789177, -0.02657219022512436, 0.0015146577497944236, -0.047696974128484726, -0.006986191496253014, -0.017768409103155136, -0.004010492004454136, 0.007399036083370447, -0.005699402652680874, -0.015956182032823563, -0.002368495799601078, -0.01688910461962223, 0.014422758482396603, -0.0198379959911108, -0.01095915213227272, -0.022068429738283157, 0.04988451674580574, -0.024234523996710777, 0.044951826333999634, -0.06013593450188637, 0.012095815502107143, 0.002030713716521859, 0.008026345632970333, 0.03309192135930061, -0.03596574813127518, -0.016910551115870476, 0.07004420459270477, -0.04649597033858299, -0.04701068624854088, -0.01741454377770424, 0.024020059034228325, 0.04967005178332329, -0.048426155000925064, -0.0032142912968993187, -0.06412497907876968, -0.02886696346104145, 0.010921620763838291, 0.003131186356768012, 0.03933284804224968, 0.015473635867238045, 0.03832486271858215, -0.023312324658036232, 0.05576085299253464, 0.0028711475897580385, -0.0008397637866437435, 0.0015722952084615827, -0.003184802597388625, -0.010605284944176674, 0.040941331535577774, -0.009624108672142029, -0.016299325972795486, 0.03684505447745323, -0.032684437930583954, 0.03999768942594528, 0.009232710115611553, -0.022883394733071327, -0.008482083678245544, 0.023977166041731834, 0.01896941289305687, 0.01684621162712574, -0.004731629975140095, 0.05408802628517151, 0.00178139831405133, 0.008680463768541813, -0.0039595565758645535, 0.01716790907084942, 0.014540714211761951, 0.004243722651153803, -0.007382951211184263, -0.006128332111984491, 0.011227233335375786, 0.03171934559941292, 0.0042624883353710175, -0.009645555168390274, -0.00458954693749547, 0.01966642402112484, -0.08548567444086075, 0.005106943193823099, 0.03545103222131729, -0.00745265232399106, -0.003919344395399094, -0.005123028066009283, -0.006937936879694462, 0.017811302095651627, -0.008562508039176464, -0.009168370626866817, 0.022626038640737534, -0.04482314735651016, 0.006857512518763542, 0.0016433366108685732, 0.00019050507398787886, -0.05430249124765396, 0.023162199184298515, -0.06725616753101349, 0.004841543268412352, 0.00038637177203781903, -0.008042430505156517, 0.012438959442079067, -0.01502326037734747, -0.01136663556098938, -0.01844397373497486, 0.009972614236176014, 0.05395934730768204, -0.04615282639861107, -0.013350434601306915, -0.029553251340985298, -0.05121419578790665, 0.013554176315665245, -0.007098785135895014, -0.019805826246738434, 0.0026714273262768984, -0.04190642386674881, 0.04059818759560585, 0.09402137249708176, -0.036566250026226044, -0.022518806159496307, -0.03442160412669182, 0.07296092808246613, 0.043193213641643524, 0.009688448160886765, -0.034893427044153214, -0.019569914788007736, -0.012964397668838501, 0.028159230947494507, -0.013468390330672264, 0.0011587801855057478, -0.002498515183106065, -0.05494588613510132, 0.005128389690071344, -0.020213307812809944, 0.042292460799217224, 0.006718110293149948, -0.0293173398822546, -0.036115873605012894, 0.005672594532370567, -0.01867988519370556, -0.07115942239761353, -0.045895468443632126, -0.02567143738269806, 0.00933994259685278, 0.01265342440456152, 0.02043849602341652, 0.013414774090051651, -0.008905651047825813, 0.05829153582453728, 0.03049689717590809, -0.005345535464584827, 0.025864455848932266, 0.00664304755628109, 0.026314832270145416, 0.02146792784333229, -0.0717170313000679, 0.020170416682958603, -0.016588853672146797, -0.0021835200022906065, 0.031183183193206787, -0.036780714988708496, -0.006101523991674185, -0.02462056092917919, 0.0024448989424854517, 0.00019670445180963725, -0.01627787947654724, -0.004852266516536474, 0.06309554725885391, -0.022583145648241043, -0.012127985246479511, 0.016117030754685402, 0.03401412069797516, 0.04347201809287071, 0.026829548180103302, 0.05160023272037506, 0.013028737157583237, -0.005769103299826384, -0.011913520283997059, -0.04486604034900665, -0.03467896208167076, -0.03785303980112076, -0.05241519957780838, -0.020942488685250282, 0.004342912696301937, 0.0067663649097085, -0.013757918030023575, 0.012310280464589596, -0.009801042266190052, 0.014015275985002518, 0.04713936522603035, 0.012160154990851879, 0.019484128803014755, -0.002526663476601243, -0.051085520535707474, 0.022261448204517365, -0.012524745427072048, -0.014776625670492649, 0.00688968226313591, -0.00435363594442606, 0.009372112341225147, -0.03879668563604355, -0.010519498959183693, -0.02567143738269806, 0.05258677154779434, 0.009334580972790718, -0.03210538253188133, 0.00406946986913681, -0.006208756472915411, -0.0012264706892892718, -0.0097527876496315, 0.010240694507956505, 0.03667348250746727, -0.0027384476270526648, -0.08098191022872925, -0.013339711353182793, -0.05859178677201271, -0.003251822665333748, 0.025049490854144096, 0.0032839924097061157, -0.03409990668296814, 0.034164246171712875, -0.041970763355493546, -0.02665797621011734, -0.003533307695761323, -0.02584300935268402, -0.025135276839137077, 0.00925951823592186, 0.007436567451804876, -0.020792363211512566, -0.036566250026226044, -0.05125708878040314, -0.026915334165096283, -0.006557261571288109, 0.002796085085719824, -0.019473405554890633, 0.041070010513067245, -0.03309192135930061, 0.03221261501312256, -0.04696779325604439, 0.040705420076847076, 0.010160270147025585, 0.012556915171444416, 0.009307772852480412, -0.02322653867304325, 0.05580374598503113, 0.00979568064212799, -0.031226076185703278, 0.05048501864075661, 0.06017882749438286, 0.007136316504329443, -0.021435758098959923, -0.0500560887157917, 0.03753134235739708, -0.007608139421790838, -0.0009671022417023778, -0.013800811022520065, -0.017736239358782768, 0.023419557139277458, 0.0007921794313006103, -0.01716790907084942, 0.03776725381612778, -0.0469249002635479, -0.027987658977508545, 0.03671637549996376, 0.029124321416020393, -0.010149546898901463, -0.07677840441465378, -0.013629239052534103, -0.028266461566090584, -0.0005713476566597819, 0.002478409092873335, -0.03740266337990761, 0.0017157185357064009, -0.025049490854144096, 0.030346771702170372, 0.01083583477884531, 0.006546538323163986, 0.01610630750656128, -0.022990627214312553, -0.10946284234523773, 0.028223570436239243, -0.012074369005858898, 0.01835818774998188, -0.04812590405344963, 0.010514137335121632, 0.05880625173449516, -0.05794839188456535, -0.012138708494603634, 0.011398805305361748, 0.017360927537083626, 0.018143722787499428, 0.024148738011717796, 0.021146230399608612, -0.007479460444301367, 0.0011976519599556923, 0.015334234572947025, 0.02462056092917919, 0.006723471917212009, 0.01361851580440998, -0.015012537129223347, 0.010599923320114613, 0.03999768942594528, -0.019226770848035812, -0.028716837987303734, -0.023205092176795006, -0.03729543089866638, -0.08059588074684143, -0.010889451019465923, 0.0054768952541053295, -0.029059981927275658, -0.04400818049907684, 0.023205092176795006, -0.03414279967546463, 0.01688910461962223, 0.023119306191802025, 0.023762701079249382, -0.004072150681167841, -0.03026098571717739, 0.0008819865761324763, 0.03551537171006203, -0.0069325752556324005, 0.008412382565438747, 0.05623267590999603, -0.03478619456291199, 0.0014208294451236725, 0.048469047993421555, 0.0015186789678409696, 0.019323280081152916, 0.01742526702582836, 0.02040632627904415, 0.028159230947494507, 0.009720617905259132, 0.022797610610723495, 0.02743005007505417, -0.03783159330487251, 0.025199616327881813, -0.006605516187846661, -0.02314075268805027, -0.024213077500462532, 0.01112000085413456, -0.006289180833846331, -0.02040632627904415, -0.006063992623239756, -0.010685709305107594, 0.024749239906668663, 0.01013882365077734, 0.020256200805306435, -0.035794176161289215, -0.0015830184565857053, -0.022668931633234024, -0.007608139421790838, 0.009431090205907822, 0.03174079209566116, -0.04087699204683304, -0.055546388030052185, -0.007458013948053122, 0.01610630750656128, 0.02314075268805027, -0.020148970186710358, -0.046667542308568954, 0.019816549494862556, 0.011720501817762852, 0.03058268316090107, 0.019762933254241943, -0.009189817123115063, -0.0025052172131836414, -0.024341756477952003, 0.045037612318992615, 0.0006239585927687585, -0.019762933254241943, -0.008905651047825813, -0.011677608825266361, -0.033177707344293594, 0.002208987483754754, -0.003326885402202606, 0.016224263235926628, 0.030775701627135277, 0.031097397208213806, 1.2262612472113688e-05, 0.022969180718064308, -0.03201959654688835, 0.014626500196754932, 0.0016540598589926958, 0.004241041839122772, -0.012310280464589596, 0.017596837133169174, 0.009232710115611553, -0.01741454377770424, 0.022068429738283157, 0.0157846100628376, -0.0002017309598159045, 0.060736436396837234, 0.013757918030023575, 0.01778985559940338, 0.0034233946353197098, -0.028716837987303734, -0.012621254660189152, 0.01303946040570736, 0.0005070082261227071, 0.005726210307329893, 0.026872441172599792, 0.005779826547950506, 0.03459317609667778, 0.008793056942522526, -0.03856077417731285, -0.008020984008908272, -0.008980713784694672, 0.01535568106919527, 0.019355449825525284, 0.004774522967636585, -0.01063209306448698, 0.010696432553231716, -0.004830820020288229, 0.017714792862534523, -0.014422758482396603, 0.018754947930574417, 0.004761118907481432, 0.04072686657309532, 0.004211552906781435, 0.02792331948876381, -0.009736702777445316, 0.006980829872190952, -0.0006259692017920315, -0.014776625670492649, -0.007399036083370447, -0.005018476862460375, 0.010133462026715279, -0.002730405190959573, 0.006600154563784599, 0.010042315348982811, -0.017918534576892853, -0.020588621497154236, -0.02607892081141472, -0.03727398440241814, 0.014744455926120281, 0.0446515753865242, 0.013479113578796387, -0.014101061969995499, 0.004064108245074749, 0.028673944994807243, -0.020835256204009056, -0.04340767860412598, 0.015934735536575317, -0.014401311986148357, -0.03292034938931465, 0.005080135073512793, 0.05009898170828819, -0.042292460799217224, 0.04366503655910492, -0.008417744189500809, 0.002368495799601078, -0.005495660938322544, -0.004224956966936588, -0.03049689717590809, -0.03536524623632431, 0.007377589587122202, -0.02923155389726162, 0.025907348841428757, 0.07832255214452744, 0.017318034544587135, 0.03562260419130325, 0.004412613343447447, -0.05627556890249252, 0.028438033536076546, 0.005216856487095356, -0.00271968194283545, 0.042292460799217224, 0.025328295305371284, 0.021167676895856857, 0.01880856417119503, 0.003493095748126507, 0.05528903007507324, 0.05666160210967064, -0.0015200193738564849, 0.022089876234531403, -0.014776625670492649, -0.006664494052529335, -0.0046324399299919605, -0.008439190685749054, 0.007468737196177244, -0.05837732180953026, 0.010696432553231716, 0.016041968017816544, 0.00826225709170103, 0.03663058951497078, 0.02539263479411602, 0.010964513756334782, 0.007184571120887995, -0.006605516187846661, 0.000456407928140834, 0.031955257058143616, 0.0038496435154229403, -0.012567638419568539, 0.010889451019465923, -0.015527252107858658, -0.01603124476969242, 0.012127985246479511, -0.020620791241526604, 0.005045284517109394, 0.030647022649645805, -0.018336741253733635, 0.004643163178116083, -0.030368218198418617, -0.009500791318714619, -0.02309785969555378, -0.04799722507596016, -0.013597069308161736, 0.0011031533358618617, 0.010969875380396843, -0.020459942519664764, 0.008691187016665936, -0.02918866090476513, 0.0025440887548029423, 0.0099189979955554, -0.012353173457086086, 0.028974195942282677, -0.00568331778049469, -0.020299093797802925, 0.024556221440434456, 0.019720040261745453, 0.014390588738024235, -0.01737165078520775, -0.010610646568238735, 0.015259171836078167, -0.023977166041731834, -0.007377589587122202, 0.015666654333472252, 0.021328525617718697, 0.014594330452382565, 0.031869471073150635, -0.03851788118481636, 1.7634703908697702e-05, 0.007088061887770891, -0.00033258800976909697, 0.017264418303966522, 0.04443711042404175, -0.034485943615436554, -0.046581756323575974, -0.01802576705813408, -0.030346771702170372, 0.0345073901116848, -0.026357725262641907, 0.023934273049235344, 0.0002462994307279587, -0.038861025124788284, 0.008664378896355629, -0.03557971119880676, -0.02665797621011734, 0.024062952026724815, -0.017511051148176193, -0.03442160412669182, 0.017275141552090645, -0.012556915171444416, 5.916631835134467e-06, -0.01824023202061653, 0.015484359115362167, 0.00579591142013669, 0.030861487612128258, -0.030389664694666862, -0.019655700773000717, 0.007436567451804876, 0.0336066372692585, 0.006664494052529335, -0.03862511366605759, -0.03598719462752342, -0.008267618715763092, -0.011484590359032154, 0.008192555978894234, -0.02813778445124626, 0.016009798273444176, -0.01704995334148407, -0.022089876234531403, 0.007034446112811565, 0.003404628951102495, -0.03753134235739708, -0.04149894043803215, 0.02187541127204895, -3.7489455280592665e-05, 0.004782565403729677, 0.005881697405129671, -0.009843935258686543, -0.013800811022520065, -0.006605516187846661, 0.021939750760793686, 0.03510788828134537, -0.006739556789398193, 0.03826052322983742, 0.012932227924466133, 0.002217029919847846, 0.02309785969555378, 0.05061369761824608, -0.004388486035168171, -0.035386692732572556, -0.01856192946434021, -0.0020615430548787117, 0.014079615473747253, 0.03206248953938484, -0.014840965159237385, 0.03515078127384186, -0.006632324308156967, -0.016428004950284958, 0.005645786412060261, 0.039268508553504944, -0.01713573932647705, -0.003147271228954196, 0.0014529990730807185, -0.054645635187625885, 0.002755872905254364, -0.009827850386500359, 0.013178862631320953, 0.02543552778661251, 0.037145305424928665, -0.007677840534597635, 0.01506615336984396, -0.0084606371819973, -0.005747656803578138, -0.009205901995301247, -0.022754717618227005, -0.0010200482793152332, -0.007779710926115513, -0.04653886333107948, -0.00917909387499094, 0.02154299058020115, 0.012814272195100784, -0.016127754002809525, -0.0037021988537162542, -0.0065679848194122314, 0.010637454688549042, 0.0007700627320446074, 0.000880646170116961, 0.00182161049451679, 0.06961528211832047, -0.0006075386190786958, -0.0023296240251511335, -0.003541350131854415, 0.02620759978890419, -0.00826225709170103, -0.022668931633234024, 0.004627078305929899, 0.012149431742727757, 0.0070022763684391975, -0.014347695745527744, -0.0005509064649231732, -0.00027913934900425375, -0.01481951866298914, -0.015291341580450535, 0.020824532955884933, 0.027172692120075226, -0.015516528859734535, 0.01761828362941742, -0.006074715871363878, 0.0107125174254179, -0.012213771231472492, 0.028931302949786186, -0.012256664223968983, 0.022947734221816063, -0.009028968401253223, 0.018583375960588455, 0.014197570271790028, -0.02567143738269806, 0.01713573932647705, 0.026722315698862076, -0.006659132428467274, 0.011709778569638729, -0.0015428062761202455, 0.02792331948876381, 0.009125477634370327, 0.02800910547375679, 0.01079294178634882, -0.02436320297420025, -0.0023095179349184036, 0.0019221409456804395, 0.010578476823866367, -0.006996914744377136, 0.014347695745527744, -0.026379171758890152, 0.008728718385100365, 0.00356279662810266, -0.0018376953667029738, 0.011259403079748154, -0.030925827100872993, 0.013950936496257782, 0.030025074258446693, -0.010321118868887424, 0.026850994676351547, 0.010771495290100574, -0.021274909377098083, -0.030432557687163353, -0.008401659317314625, 0.019194601103663445, -0.042871516197919846, 0.018862180411815643, 0.011613269336521626, 0.03111884370446205, -0.004822777584195137, 0.024556221440434456, 0.01614920049905777, 0.014969644136726856, 0.006171225104480982, 0.007023722864687443, 0.0022156895138323307, -0.022840503603219986, 0.016749702394008636, 0.005586808547377586, 0.03982611745595932, 0.027215585112571716, -0.004444783087819815, 0.05151444673538208, 0.021907581016421318, 0.004133809357881546, -0.020427772775292397, -0.01680331863462925, 0.018615545704960823, -0.010331842117011547, 0.04186353087425232, 0.05571796000003815, 0.019119538366794586, -0.00010161945829167962, 0.029017088934779167, 0.052887022495269775, -0.022840503603219986, -0.04190642386674881, 0.005592170171439648, 0.01979510299861431, 0.021768178790807724, -0.005635063163936138, -0.015645207837224007, -0.017221525311470032, -0.020781639963388443, 0.031504880636930466, -0.026036027818918228, -0.01811155304312706, 0.024513328447937965, -0.030797148123383522, -0.028931302949786186, -0.0035440309438854456, 0.0012814272195100784, 0.01515193935483694, -0.008337319828569889, -0.04117724299430847, -0.058119963854551315, 0.0050292001105844975, 0.02873828448355198, -0.05344463139772415, 0.020803086459636688, 0.03135475516319275, 0.02326943166553974, -4.00027129217051e-05, 0.04876929894089699, 0.025178169831633568, 0.0004979604855179787, -0.03144054114818573, -0.006133693736046553, -0.010144185274839401, 0.017125016078352928, -0.015602314844727516, 0.012181601487100124, 0.011302296072244644, 0.019430512562394142, 0.0505279116332531, 0.021414311602711678, 0.06125115230679512, 0.0007070637075230479, 0.007865496911108494, 0.004911244381219149, 0.006128332111984491, -0.014347695745527744, -0.005425959825515747, 0.027987658977508545, 0.005913867149502039, -0.010020868852734566, 0.020299093797802925, -0.059749897569417953, 0.0015227001858875155, 0.0045627388171851635, 0.019934505224227905, -0.00632671220228076, 0.0012532788095995784, 0.02755872905254364, 0.025285402312874794, -0.014261909760534763, -0.0020280329044908285, 0.022583145648241043, 0.026422064751386642, -0.005779826547950506, 0.035258013755083084, 0.010557030327618122, -0.013672132045030594, -0.0018430569907650352, -0.021821795031428337, -0.027987658977508545, 0.05138576775789261, 0.04396528750658035, 0.023033520206809044, 0.04304308816790581, -0.0088520348072052, 0.015934735536575317, -0.009597300551831722, -0.017564667388796806, -0.00435631675645709, -0.010251417756080627, -0.03152632713317871, -0.00797272939234972, 0.0279662124812603, 0.009248794987797737, 0.012460405938327312, -0.019280387088656425, -0.03324204683303833, 0.04615282639861107, 0.031504880636930466, -0.013800811022520065, -0.022583145648241043, 0.016288602724671364, -0.023355217650532722, 0.007742179557681084, -0.022390127182006836, -0.005061369389295578, -0.002404686762019992, -0.01373647153377533, 0.03013230673968792, 0.03139764815568924, -0.023441003635525703, 0.03738121688365936, 0.027708854526281357, 0.015913289040327072, -0.01050877571105957, 0.019023029133677483, -0.03373531624674797, 0.013060906901955605, 0.024427542462944984, -0.017607560381293297, 0.0015964225167408586, 0.028716837987303734, -0.00273978803306818, 0.034657515585422516, -0.009763510897755623, -0.020942488685250282, 0.036780714988708496, -0.05087105557322502, 0.017564667388796806, -0.05310148745775223, -0.04478025436401367, -0.06528308987617493, 0.025499867275357246, -0.0009831871138885617, -0.025178169831633568, 0.08239737898111343, 0.0038898554630577564, 0.0001802844781195745, 0.018347464501857758, 0.026679422706365585, -0.016738979145884514, -0.023655468598008156, -0.012975120916962624, -0.01026214100420475, 0.059835683554410934, 0.02093176543712616, 0.03907549008727074, 0.005881697405129671, 0.0028550629504024982, 0.023076413199305534, -0.0006705376436002553, 0.039011150598526, -0.004844224080443382, -0.03345651179552078, -0.025585651397705078, 0.03699517995119095, -0.006074715871363878, 0.006895043887197971, -0.006895043887197971, 0.01966642402112484, 0.01445492822676897, 0.017843471840023994, 0.048511940985918045, 0.0033724592067301273, 0.018947966396808624, 0.019398342818021774, 0.01709284633398056, 0.012170878238976002, -0.030346771702170372, -0.027794640511274338, -0.005688679404556751, -0.009945806115865707, -0.02824501506984234, 0.008969990536570549, -0.018422527238726616, -0.024706346914172173, 0.042871516197919846, -0.03135475516319275, 0.007978091016411781, -0.014176123775541782, 0.006691302172839642, -0.008315873332321644, -0.0160205215215683, 0.0073346965946257114, 0.016245709732174873, 0.0049514565616846085, -0.017039230093359947, 0.029102874919772148, 0.007425844203680754, 0.02224000170826912, 0.0363088920712471, -0.004868351388722658, -0.027944765985012054, -0.04199220985174179, -0.011227233335375786, 0.019902335479855537, 0.007742179557681084, 0.0363088920712471, 0.015420020557940006, -0.01159182284027338, -0.034164246171712875, -0.03920416906476021, 0.011473867110908031, -0.007066615391522646, 0.03129041567444801, -0.008642932400107384, -0.01822950877249241, 0.03131186217069626, -0.026014581322669983, 0.007227464113384485, 0.018090106546878815, 0.038367755711078644, -0.008691187016665936, -0.007216740865260363, 0.0026633848901838064, -0.007651032414287329, 0.023355217650532722, 0.019934505224227905, -0.0016500386409461498, -0.007130954880267382, -0.00249985558912158, -0.015666654333472252, 0.01095915213227272, -0.03596574813127518, 0.03339217230677605, 0.015559421852231026, 0.023977166041731834, 0.006696663796901703, 0.00019703955331351608, 0.0046485248021781445, 0.013018013909459114, 0.03946152701973915, -0.016181370243430138, 0.026143260300159454, -0.02530684880912304, 0.017639730125665665, 0.0021862005814909935, -0.019355449825525284, -0.009071861393749714, -0.0019730762578547, 0.017468160018324852, 0.004187425598502159, -0.051943376660346985, 0.006986191496253014, -0.0013564899563789368, 0.05138576775789261, -0.004844224080443382, 0.006069354247301817, -0.03262009844183922, -0.014916027896106243, 0.017189355567097664, -0.012428236193954945, -0.003391224890947342, -0.039933349937200546, 0.008433829061686993, 0.025285402312874794, 0.0024569625966250896, -0.012385343201458454, 0.000495279673486948, -0.002483770716935396, -0.011184340342879295, -0.015055430121719837, -0.005720848683267832, 0.04786854609847069, -0.0037477726582437754, -0.011666885577142239, -0.007688563782721758, 0.01729658804833889, -0.03279167041182518, -0.027537282556295395, 0.014980367384850979, -0.030925827100872993, 0.04568100720643997, -0.013457667082548141, 0.037595681846141815, 0.01175267156213522, -0.022883394733071327, 0.005216856487095356, 0.008246172219514847, 0.051085520535707474, 0.029746269807219505, 0.01208509225398302, 0.0035172230564057827, -0.014487097971141338, -0.014379865489900112, 0.02449188195168972, 0.01693199761211872, -0.006047907751053572, -0.0039515141397714615, 0.018261678516864777, 0.00035353185376152396, 0.006112247239798307, 0.004967541433870792, -0.018122276291251183, 0.015205555595457554, 0.007275718729943037, -0.013007290661334991, 0.016578130424022675, -0.010321118868887424, -0.015087599866092205, -0.04649597033858299, 0.0446515753865242, 0.017929257825016975, -0.015259171836078167, 0.015377127565443516, -0.005892420653253794, -0.005139112938195467, 0.010626731440424919, 0.05580374598503113, -0.020374156534671783, 0.0076135010458528996, 0.017114292830228806, -0.009168370626866817, 0.004696779418736696, 0.03307047486305237, -0.02104972116649151, -0.022497359663248062, -0.006208756472915411, 0.006986191496253014, 0.018701331689953804, -0.03485053405165672, -0.021457204595208168, 0.015806056559085846, 0.03212682902812958, -0.007940559647977352, -0.04209944233298302, 0.02715124562382698, -0.009511514566838741, -0.0279662124812603, -0.0023215815890580416, 0.013404050841927528, -0.01677114889025688, -0.018905073404312134, -0.018572652712464333, -0.03257720544934273, 0.02363402210175991, -0.012664147652685642, 0.0261647067964077, 0.022304341197013855, 0.011388082057237625, 0.03356374427676201, -0.008165747858583927, 0.0047798845916986465, 0.004369720816612244, -0.005592170171439648, 0.0455523282289505, 0.0018309933366253972, -0.019205324351787567, -0.010160270147025585, 0.0020682450849562883, 0.008203279227018356, 0.009350665844976902, 0.03965454548597336, -0.05348752439022064, -0.026443511247634888, 0.0020441177766770124, -0.015387850813567638, 0.029574697837233543, -0.0074740988202393055, -0.02895274944603443, -0.00010781883611343801, 0.021199846640229225, -0.019505575299263, 0.030604129657149315, -0.004656567238271236, -0.019934505224227905, 0.0007425844087265432, -0.0026513212360441685, -0.012481852434575558, -0.021682392805814743, -0.008471360430121422, 0.03442160412669182, 0.01847614347934723, -0.007323973346501589, -0.015580868348479271, 0.02502804435789585, -0.008171109482645988, -0.008927097544074059, -0.028395140543580055, 0.007034446112811565, -0.05400224030017853, 0.0236769150942564, 0.005417917389422655, 0.006492922082543373, -0.005388428457081318, 0.0028148507699370384, -0.020427772775292397, 0.03892536461353302, 0.012342450208961964, -0.02011680044233799, 0.00028215526253916323, 0.012267387472093105, -0.0026674061082303524, 0.01308235339820385, 0.011388082057237625, 0.042421139776706696, 0.0049594989977777, -0.01361851580440998, -0.01261053141206503, -0.008240810595452785, -0.004889797884970903, 0.014111785218119621, 0.013511283323168755, 0.03785303980112076, 0.018594099208712578, 0.01357562281191349, -0.02895274944603443, -0.018390357494354248, 0.011012768372893333, -0.007747541181743145, -0.01758611388504505, -0.02678665518760681, 0.02015969343483448, -0.012363896705210209, -0.0031285055447369814, 0.016385111957788467, 0.004812054336071014, 0.06463969498872757, 0.02850237302482128, 0.0464530773460865, 0.012996567413210869, 0.000908794638235122, 0.007779710926115513, -0.030904380604624748, 0.021253462880849838, -0.03328493982553482, -0.0030480811838060617, 0.019644977524876595, -0.01373647153377533, -0.0025400675367563963, 0.006358881946653128, 0.0239128265529871, -0.030239539220929146, 0.006509006954729557, -0.0023591129574924707, -0.00826225709170103, 0.017768409103155136, 0.007130954880267382, -0.0318051315844059, -0.0028765092138201, 0.007393674459308386, -0.006267734337598085, 0.0001684721646597609, 0.012299557216465473, 0.0003191839496139437, 0.0014074253849685192, 0.016159923747181892, -0.010401543229818344, -0.01998812146484852, 0.00701299961656332, 0.004275892395526171, -0.025242509320378304, 0.020910318940877914, 0.028716837987303734, 0.01457288395613432, 0.018733501434326172, -0.009404282085597515, -0.03364953026175499, -0.030797148123383522, 0.024384649470448494, -0.004321466200053692, 0.025499867275357246, -0.02215421572327614, -0.015806056559085846, 0.02359112910926342, 0.007350781466811895, -0.04252837225794792, 0.006240926217287779, -0.028609605506062508, 0.007876220159232616, 0.0025186212733387947, 0.03103305771946907, -0.008776972070336342, 0.05781971290707588, -0.010042315348982811, 0.01332898810505867, -0.00813357811421156, 0.017264418303966522, -0.005790549796074629, 0.010894812643527985, 0.01970931701362133, -0.0060103763826191425, -0.057262104004621506, 0.0014744455693289638, 0.003844281891360879, 0.024556221440434456, -0.041348814964294434, 0.03292034938931465, -0.0011453761253505945, -0.03354229778051376, 0.02269037812948227, 0.01750032790005207, -0.030604129657149315, 0.03053979016840458, -0.01626715622842312, 0.01693199761211872, -0.028266461566090584, -0.01652451418340206, -0.013586346060037613, -0.009935082867741585, -0.015838226303458214, -0.001479807193391025, 0.0157846100628376, -0.013715025037527084, 0.009640193544328213, -0.017725516110658646, -0.02126418612897396, 0.005031880922615528, 0.015720270574092865, -0.02489936538040638, -0.01909809187054634, 0.01639583520591259, -0.019280387088656425, -0.021124783903360367, -0.032405633479356766, -0.03519367426633835, -0.014058168977499008, 0.002422112040221691, 0.01220304798334837, 0.0037156029138714075, 0.01672825589776039, -0.0017666538478806615, -0.02981060929596424, -0.004369720816612244, -0.023290878161787987, -0.005978206638246775, 0.0009456558036617935, 0.013672132045030594, 0.02612181380391121, 0.0034877341240644455, 0.007393674459308386, -0.03377820923924446, -0.0021191805135458708, -0.007061253767460585, 0.00954904593527317, 0.006192671600729227, -0.029210107401013374, -0.023977166041731834, 0.009484706446528435, -0.021124783903360367, -0.005667232908308506, 0.021596606820821762, 0.004302700515836477, -0.028759730979800224, 0.022990627214312553, 0.013908043503761292, 0.004482314456254244, 0.020127523690462112, 0.0046485248021781445, -0.030861487612128258, 0.003565477440133691, 0.016781872138381004, 0.012546191923320293, 0.029446018859744072, 0.03332783281803131, 0.023483896628022194, 0.02890985645353794, -0.017714792862534523, 0.026186153292655945, -0.010406904853880405, 0.03485053405165672, -0.00182161049451679, -0.02167166955769062, -0.007822603918612003, -0.012460405938327312, 0.009297049604356289, 0.025135276839137077, -0.006943298503756523, 0.03613732010126114, -0.008755525574088097, 0.018122276291251183, -0.02633627876639366, -0.02833080105483532, -0.0002468020829837769, -0.026958227157592773, -0.01425118651241064, 0.03390688821673393, 0.0014369142008945346, -0.02130707912147045, -0.01655668392777443, 0.0017693346599116921, 0.038946811109781265, 0.02571433037519455, 0.009591938927769661, -0.003257184289395809, -0.0015763164265081286, -0.04739672318100929, 0.0006638356135226786, -0.010964513756334782, 0.018132999539375305, -0.02837369404733181, 0.006610877811908722, 0.03377820923924446, 0.009350665844976902, -0.008315873332321644, -0.009774234145879745, -0.04435132443904877, -0.024062952026724815, 0.022304341197013855, -0.020181138068437576, 0.017596837133169174, 0.00829978846013546, -0.02959614433348179, -0.002640597987920046, -0.01954846829175949, -0.04804011806845665, 0.013135969638824463, 0.024320309981703758, 0.0631384402513504, -0.02981060929596424, 0.020470665767788887, -0.007570608053356409, -0.018250955268740654, 0.0013564899563789368, 0.04042661562561989, -0.029167214408516884, 0.0036459018010646105, 0.027708854526281357, 0.018261678516864777, 0.02800910547375679, 0.004994349554181099, 0.020331263542175293, 0.017768409103155136, 0.02056717500090599, 0.021092614158988, 0.0025481099728494883, -0.010010145604610443, 0.039761777967214584, 0.00954904593527317, -0.02805199846625328, 0.045037612318992615, -0.03107595071196556, 0.02309785969555378, 0.018293848261237144, 0.0011581099824979901, 0.031504880636930466, -0.003297396469861269, 0.0071631246246397495, -0.07111652940511703, 0.0023591129574924707, -0.009511514566838741, -0.032898902893066406, 0.002058862242847681, 0.023827040567994118, -0.0261647067964077, 0.017071399837732315, 0.002860424341633916, 0.024320309981703758, -0.04550943523645401, 0.013350434601306915, -0.008042430505156517, 0.005903143901377916], [-0.0018632470164448023, -0.00039453370845876634, 0.09098933637142181, 0.06795842945575714, -0.02769133448600769, 0.0011797482147812843, -0.015534765087068081, -0.022389788180589676, 0.020688360556960106, 0.01769237034022808, -0.03969995304942131, -0.0034737458918243647, 0.030699653550982475, -0.03079828806221485, -0.020725348964333534, 0.01214424055069685, 0.045272741466760635, 0.0632733404636383, 0.027592701837420464, -0.0051967487670481205, 0.018999263644218445, 0.03937939554452896, 0.005905676167458296, -0.012045606970787048, 0.005400179885327816, -0.013882654719054699, 0.01139832567423582, -0.037875235080718994, 0.06845159828662872, -0.04746733605861664, 0.04820708557963371, -0.026384441182017326, 0.07471481710672379, 0.018801996484398842, 0.015793677419424057, 0.07185444980859756, -0.013389487750828266, -0.006898175459355116, 0.033584680408239365, 0.014499113894999027, -0.02197059616446495, 0.02115686982870102, 0.001833965303376317, 0.006583780981600285, -0.09814026206731796, 0.06273085623979568, 0.016175881028175354, 0.01883898489177227, 0.00464810011908412, 0.03794921189546585, 0.008316030725836754, -7.662391726626083e-05, -0.0034583345986902714, -0.003954583778977394, 0.027617359533905983, -0.027173509821295738, 0.04285622388124466, 0.029590027406811714, 0.041549332439899445, 0.0016459452454000711, 0.004885436967015266, -0.007249556947499514, -0.03225313127040863, -0.004731322173029184, -0.01472103875130415, -0.011885328218340874, -0.006620768923312426, 0.0725448876619339, -0.03163667023181915, 0.022969258949160576, 0.012994954362511635, 0.03947803005576134, 0.044385042041540146, -0.0029852022416889668, -0.008309866301715374, -0.03686424344778061, 0.011114753782749176, 0.03597654402256012, -0.01742112822830677, 0.0008476310176774859, -0.03666697442531586, 0.04537137597799301, -0.013968958519399166, -0.029614686965942383, 0.011959303170442581, -0.003556967945769429, -0.02084864117205143, 0.005289217457175255, -0.052423667162656784, -0.016706036403775215, 0.006984479259699583, -0.01112091913819313, 0.008790704421699047, 0.030206486582756042, 0.013734704814851284, 0.004894683603197336, -0.006583780981600285, -0.020121218636631966, -0.028357110917568207, 0.013845667243003845, 0.02430080994963646, -0.025866616517305374, 0.00843932293355465, -0.04704814404249191, 0.025521399453282356, -0.0294420775026083, -0.025348789989948273, 0.015633398666977882, 0.0033936062827706337, -0.00543408514931798, -0.050081122666597366, 0.020108889788389206, -0.021650036796927452, 0.028948910534381866, 0.018666375428438187, 0.03651902452111244, -0.017199203372001648, -0.019332151859998703, 0.02909686043858528, -0.015386814251542091, -0.013327841646969318, 0.05222639814019203, 0.01285933330655098, -0.019023921340703964, 0.021206187084317207, -0.010541447438299656, 0.02315419726073742, -0.03910815343260765, -0.07506003975868225, -0.0027201250195503235, 0.06475284695625305, -0.028061209246516228, 2.2611520762438886e-05, -0.0020343144424259663, -0.01554709393531084, -0.013857996091246605, 0.010448978282511234, -0.012834674678742886, -0.0325983464717865, -0.027642017230391502, 0.02425149455666542, 0.028776302933692932, 0.02316652610898018, 0.016225198283791542, -0.03619846701622009, -0.008698235265910625, -0.025620032101869583, 0.06243496015667915, 0.07145991921424866, 0.0012352295452728868, -0.011552440002560616, 0.06228701025247574, -0.02057739906013012, -0.004657347220927477, 0.008260549046099186, 0.011281197890639305, 0.009111262857913971, 0.032968223094940186, 0.0025351871736347675, 0.01595395617187023, -0.01568271405994892, -0.03030512109398842, -0.0012984166387468576, 0.006916669197380543, 0.017273178324103355, 0.007903003133833408, 0.009585936553776264, -0.009216060861945152, -0.04492752626538277, -0.012230545282363892, -0.046678267419338226, -0.0731860026717186, -0.030650336295366287, -0.006290963385254145, -0.03025580383837223, -0.027617359533905983, 0.02889959327876568, 0.02400491014122963, -0.02257472462952137, -0.019221188500523567, 0.02774065174162388, 0.0036617659498006105, 0.007039960939437151, -0.07012836635112762, -0.020774666219949722, -0.005948828533291817, 0.03249971568584442, 0.022932272404432297, -0.003744988003745675, 0.03225313127040863, -0.020984262228012085, -0.02459670975804329, 0.012292190454900265, 0.04576591029763222, -0.03960132226347923, 0.034694306552410126, -0.03464499115943909, -0.008747551590204239, -0.04031641408801079, 0.019578734412789345, 0.016619732603430748, -0.03997119516134262, 0.0365930013358593, 0.043595973402261734, -0.09749913960695267, 0.0020142795983701944, 0.01685398630797863, -0.015362156555056572, 0.04179591313004494, 0.027568042278289795, -0.00032364093931391835, -0.052127767354249954, -0.005042633973062038, 0.00828520767390728, -0.02033081464469433, 0.0027971824165433645, -0.00030726625118404627, 0.03254903107881546, -0.0029405090026557446, -0.0006561434711329639, -0.008365347050130367, -0.001326157245784998, 0.029540712013840675, -0.007015302311629057, -0.03999585285782814, 0.02714885026216507, 0.03417648375034332, -0.01744578778743744, -0.004469327162951231, -0.06697209924459457, -0.023006247356534004, 0.04618510231375694, 0.03516281768679619, -0.03257368877530098, 0.007132429629564285, 0.01258192677050829, -0.011595591902732849, -0.03392989933490753, 0.0004095598997082561, 0.037258777767419815, 0.007305038161575794, 0.0006588404648937285, 0.021551404148340225, -0.02026916854083538, 0.02459670975804329, -0.009869507513940334, -0.010886664502322674, 0.013537437655031681, 0.03486691787838936, 0.024695344269275665, 0.012230545282363892, 0.007403671741485596, 0.020984262228012085, -0.07155855000019073, 0.013636071234941483, 0.004780638962984085, 0.031809281557798386, -0.019615722820162773, 0.0612020418047905, -0.03888622671365738, 0.03693821653723717, -0.006515970919281244, 0.029516052454710007, -0.01568271405994892, -0.03602585941553116, -0.030206486582756042, 0.04731938615441322, -0.045543983578681946, -0.03338741511106491, 0.007644090335816145, -0.08950983732938766, 0.02687760815024376, 0.011959303170442581, -0.00957977119833231, -0.009234554134309292, -0.0012128829257562757, -0.028628351166844368, -0.034669648855924606, 0.008451651781797409, -0.0007243392174132168, -0.010227053426206112, 0.012199722230434418, 0.006161506753414869, -0.03619846701622009, -0.01686631515622139, 0.00900646485388279, -0.013833338394761086, 0.01454843021929264, 0.002678513992577791, 0.06139930710196495, -0.009080439805984497, -0.04076026380062103, -0.05730602145195007, 0.020071901381015778, 0.01994861103594303, -0.02346242591738701, 0.01113941241055727, -0.05484018474817276, 0.05730602145195007, 0.021280162036418915, 0.007052289787679911, 0.054741550236940384, 0.0014178554993122816, -0.013192220591008663, -0.020071901381015778, 0.018617060035467148, 0.027494067326188087, 0.010942145250737667, 0.019332151859998703, -0.06194179132580757, -0.016681378707289696, -0.027494067326188087, -0.0171375572681427, -0.035853251814842224, -0.0035631326027214527, -0.02887493558228016, 0.018419792875647545, 0.0017676958814263344, -0.041253428906202316, -0.003402853151783347, 0.011250374838709831, 0.03316548839211464, 0.025299474596977234, -0.053804535418748856, 0.0092777069658041, 0.024670686572790146, 0.004907012917101383, 0.01997326873242855, -0.01631150208413601, 0.009900330565869808, -0.004065546672791243, -0.013537437655031681, 0.009203732013702393, -0.03232710435986519, 0.010239382274448872, 0.03417648375034332, -0.014523771591484547, 0.007625596597790718, -0.014696380123496056, 0.017063582316040993, 0.009715392254292965, -0.0311188455671072, 0.05572788417339325, -0.03965063765645027, -0.015473118983209133, 0.007286544423550367, 0.038935545831918716, 0.04080957919359207, 0.020417118445038795, 0.006124519277364016, -0.05449496954679489, 0.008217397145926952, -0.013216879218816757, 0.016915632411837578, -0.08216164261102676, 0.019073238596320152, 0.012236709706485271, -0.039847902953624725, -0.055925153195858, -0.00856877863407135, 0.007792040705680847, -5.658900045091286e-05, 0.030773628503084183, 0.04694950953125954, -0.018469108268618584, 0.018444450572133064, -0.03166133165359497, -0.032105181366205215, 0.04391653463244438, 4.8666541260899976e-05, 0.029614686965942383, -0.03434909135103226, -0.02714885026216507, -0.024128202348947525, -0.022685687988996506, 0.027346117421984673, 0.0024550475645810366, 0.0047128284350037575, -0.001806224579922855, -0.013315512798726559, 0.045272741466760635, 0.012532609514892101, -0.013759362511336803, -0.02030615694820881, 0.06657756119966507, 0.002874239580705762, -0.030502386391162872, 0.017926625907421112, 0.006281716283410788, -0.07387643307447433, -0.007360519375652075, 0.05341000109910965, -0.010966803878545761, 0.005874853581190109, -0.028776302933692932, -0.005637516733258963, 0.02539810724556446, 0.01543613150715828, 0.008624260313808918, -0.018469108268618584, -0.010794195346534252, -0.024078885093331337, 0.008254384621977806, -0.040119145065546036, 0.0191348847001791, 0.01627451553940773, 0.013784021139144897, -0.034965548664331436, 0.038984861224889755, -0.022340470924973488, 5.4951531637925655e-05, -0.06633097678422928, 0.022328142076730728, 0.005504977889358997, 0.008648918941617012, -0.007027631625533104, 0.028061209246516228, 0.01631150208413601, -0.008864679373800755, -0.012600420042872429, 0.03738206997513771, 0.052127767354249954, -0.0063248686492443085, 0.03082294575870037, -0.044138457626104355, 0.035261448472738266, -0.011490793898701668, 0.01543613150715828, -0.016089577227830887, -0.042412374168634415, -0.01499228086322546, 0.01858007162809372, 0.033313438296318054, 0.03627244383096695, -0.052127767354249954, -0.03735740855336189, -0.004346035420894623, -0.004231990315020084, -0.025324132293462753, -0.032696980983018875, -0.03538474068045616, 0.00413952162489295, -0.040982186794281006, 0.038960203528404236, -0.059229373931884766, 0.007391342427581549, 0.01941845566034317, 0.01796361245214939, 0.04968658834695816, 0.06080750748515129, -0.01659507304430008, -0.014055263251066208, -0.06356924027204514, 0.012945637106895447, -0.03116816282272339, 0.0353107675909996, 0.02141578309237957, -0.02687760815024376, 0.03109418787062168, -0.027050217613577843, 0.0681556984782219, 0.02079932391643524, 0.03708616644144058, 0.055925153195858, -0.03198188915848732, -0.006645427085459232, -0.018986934795975685, -0.02946673519909382, -0.009801696985960007, -0.02484329417347908, 0.000349455134710297, 0.018111562356352806, 0.060363657772541046, -0.010726384818553925, 0.0007547768764197826, 0.012501786462962627, -0.04463162645697594, -0.07427097111940384, -0.04724540933966637, -0.0040439702570438385, 0.009400998242199421, 0.03540939837694168, -0.025891274213790894, 0.00721256947144866, -0.009505796246230602, 0.029269469901919365, 0.044138457626104355, 0.024732330814003944, -0.0011350549757480621, -0.0200349148362875, -0.013475791551172733, -0.018136221915483475, 0.008655083365738392, -0.012002455070614815, 0.0206143856048584, -0.01086200587451458, 0.014289517886936665, -0.012551103718578815, 0.04966193065047264, -0.028110526502132416, 0.009487302973866463, -0.0014163143932819366, 0.04502616077661514, 0.0525716170668602, 0.05774987116456032, 0.025546057149767876, -0.023881617933511734, 0.04063697159290314, -0.02030615694820881, 0.0035816263407468796, -0.009696898981928825, 0.0011034614872187376, -0.0007370536914095283, -0.0347929410636425, -0.016989607363939285, 0.008648918941617012, -0.01573203131556511, 0.02395559288561344, -0.003338125068694353, 0.01629917323589325, 0.019640380516648293, 0.02257472462952137, -0.021193858236074448, -0.0311188455671072, -0.004327541682869196, 0.021021248772740364, -0.04194386303424835, -0.0792519599199295, 0.03365865722298622, -0.018074575811624527, 0.013105916790664196, -0.023585718125104904, -0.016743024811148643, 0.02946673519909382, 0.021366465836763382, -0.011965467594563961, 0.03173530474305153, -0.032721638679504395, 0.0034059355966746807, 0.006229317281395197, 0.023795314133167267, -0.027617359533905983, 0.013586754910647869, -0.0014124615117907524, -0.012649737298488617, 0.0033966887276619673, -0.03910815343260765, 0.031316112726926804, 0.005104279611259699, 0.030181828886270523, -0.014560759998857975, -0.0057977959513664246, 0.0364697091281414, -0.012674394994974136, 0.027247484773397446, 0.0014779602643102407, 0.023351464420557022, 0.005615940783172846, 0.008032459765672684, -0.005033386871218681, 0.021884290501475334, -0.004219661466777325, -0.02402956783771515, -0.007644090335816145, 0.0022146287374198437, 0.059821173548698425, -0.001434037578292191, -0.028085868805646896, 0.02257472462952137, -0.039305418729782104, -0.03249971568584442, 0.01712522841989994, -0.010769537650048733, 0.019591065123677254, 0.03940405324101448, 0.017840320244431496, -0.0005702244816347957, -0.02316652610898018, -0.02347475476562977, -0.0017522844718769193, 0.02029382809996605, -0.003125446615740657, -0.0036401899997144938, -0.036987535655498505, 0.0023517906665802, 0.017014266923069954, 0.03146406263113022, 0.0005324663943611085, 0.016040261834859848, 0.04004517197608948, 0.0004804526688531041, 0.009351681917905807, 0.028973568230867386, -0.011108589358627796, -0.008476310409605503, 0.01710057072341442, -0.06026502326130867, 0.018136221915483475, 0.005973486695438623, 0.024670686572790146, 0.03494089096784592, 0.010714055970311165, -0.005418673623353243, -0.016755353659391403, -0.01774168759584427, -0.01802525855600834, -0.025077547878026962, 0.0023548731114715338, 0.04201783984899521, -0.0034244293347001076, 0.025570714846253395, -0.00034290525945834816, -0.020133547484874725, 0.005335452035069466, 0.007588609121739864, 0.008420828729867935, -0.016348490491509438, -0.037850577384233475, -0.0497359037399292, 0.010966803878545761, 0.003686424344778061, 0.01028253510594368, 0.03277095407247543, 0.033042196184396744, -0.014042934402823448, 0.024621369317173958, -0.018370475620031357, -0.028948910534381866, -0.022636370733380318, -0.039823245257139206, -0.010547611862421036, 0.06618303060531616, 0.012279861606657505, 0.0013223043642938137, -0.01157093420624733, -0.03030512109398842, 0.049785222858190536, -0.022771991789340973, -0.029540712013840675, -0.01343880407512188, -0.00032884228858165443, 0.018999263644218445, 0.041573990136384964, -0.0012005537282675505, 0.01473336759954691, 0.00749614043161273, 0.025250157341361046, -0.005455661565065384, -0.0016690625343471766, 0.009758544154465199, 0.018740350380539894, -0.026113199070096016, 0.03481759876012802, -0.014079921878874302, -0.0008761422359384596, -0.0035045689437538385, 0.008944818750023842, 0.06524600833654404, 0.03452169895172119, 0.025015903636813164, 0.0013354041147977114, -0.006737895775586367, -0.012945637106895447, -0.02603922411799431, -0.005517307203263044, 0.0030221897177398205, 0.021304819732904434, -0.016496440395712852, 0.010646245442330837, 0.007138594053685665, -0.07027631253004074, -0.01287166215479374, 0.055826518684625626, 0.007477646693587303, -0.001057997578755021, 0.0025521398056298494, 0.012366165407001972, -0.019344480708241463, -0.03750535845756531, -0.019529419019818306, 0.017199203372001648, -0.0404643639922142, -0.02029382809996605, 0.021761000156402588, -0.003948419354856014, -0.0003107338270638138, 0.0037912223488092422, -0.019208859652280807, 0.013833338394761086, -0.0012991871917620301, 0.004771391861140728, 0.030674995854496956, 0.007175581529736519, 0.005899511743336916, 0.03151337802410126, 0.015596410259604454, 0.03306685760617256, -0.00900646485388279, -0.010214724577963352, 0.0149799520149827, -0.029244810342788696, 0.02655705064535141, 0.016064919531345367, -0.05064826458692551, -0.009918823838233948, -0.046974170953035355, 0.02603922411799431, -0.005187501665204763, 0.03200654685497284, -0.009351681917905807, -0.00748997600749135, -0.002242369344457984, -0.005344698671251535, 0.007329696323722601, -0.04460696876049042, 0.027000900357961655, -0.006818035617470741, 0.007668748963624239, 0.015127901919186115, 0.0045402199029922485, -0.018111562356352806, 0.011046944186091423, -0.0053385342471301556, -0.03540939837694168, 0.04539603367447853, -0.002666184911504388, -0.009265377186238766, -0.0220322422683239, 0.009098934009671211, 0.01316756196320057, 0.006130683701485395, 0.017938954755663872, -0.014042934402823448, 0.011503123678267002, -0.012057936750352383, 0.01832115836441517, -0.058390989899635315, 0.004950165282934904, 0.012014783918857574, 0.013747033663094044, 0.01287166215479374, -0.0658378154039383, -0.011607921682298183, -0.05222639814019203, 0.0038220451679080725, -0.005606693681329489, -0.021477429196238518, -0.027296800166368484, -0.03617380931973457, 0.017199203372001648, 0.02282130904495716, 0.009037287905812263, -0.004124110098928213, -0.039527345448732376, 0.03748070076107979, -0.0031316112726926804, 0.007662584073841572, 0.016792340204119682, 0.016064919531345367, 0.016064919531345367, -0.0119839608669281, 0.007385178003460169, 0.014671722427010536, 0.012834674678742886, -0.010670904070138931, -0.033239465206861496, -0.0248679518699646, -0.007292708847671747, 0.010942145250737667, 0.02510220743715763, 0.02282130904495716, -0.053804535418748856, 0.0013138280482962728, 0.023782985284924507, 0.050993479788303375, -0.017260849475860596, -0.0354340597987175, -0.01802525855600834, -0.041869889944791794, -0.028357110917568207, 0.020355474203824997, -0.020047243684530258, 0.006565287243574858, 0.006546793505549431, 0.026680340990424156, 0.029639344662427902, 0.00983868446201086, -0.005634434521198273, 0.024054227396845818, 0.011484629474580288, -0.006546793505549431, 0.020392460748553276, -0.012736041098833084, -0.028702326118946075, 0.0182348545640707, 0.02200758270919323, 0.0222911536693573, -0.03511349856853485, -0.008390005677938461, 0.02030615694820881, -0.008069447241723537, 0.01527585182338953, -0.016114236786961555, 0.020934944972395897, 0.011262704618275166, 0.022624041885137558, -0.041573990136384964, 0.006867352407425642, 0.03974927216768265, -0.016964949667453766, -0.0011150200152769685, 0.061843156814575195, 0.028061209246516228, 0.0022146287374198437, 0.002889651106670499, -0.03139008954167366, -0.034102506935596466, 0.007064619101583958, -0.010103761218488216, 0.0031485639046877623, 0.006571452133357525, 0.026113199070096016, 0.017901966348290443, -0.03084760345518589, -0.013562096282839775, 0.018444450572133064, -0.03570530191063881, 0.007434494327753782, 0.049809880554676056, -0.015374485403299332, -0.00801396556198597, 0.02631046622991562, 0.0072557213716208935, -0.006001227535307407, -0.004256648942828178, -0.020626714453101158, 0.022180192172527313, 0.02033081464469433, -0.025348789989948273, -0.005357027985155582, 0.054938819259405136, 0.0021406535524874926, 0.0005359339411370456, 0.0018925288459286094, -0.003951501566916704, -0.0002165311889257282, 0.018432121723890305, -0.03474362567067146, -0.06475284695625305, 0.0382697694003582, 0.030699653550982475, 0.007742723915725946, -0.008920160122215748, -0.014055263251066208, -0.032672323286533356, -0.001881740870885551, -0.022956930100917816, 0.019763672724366188, -0.035853251814842224, -0.02687760815024376, 0.021514415740966797, -0.00671940203756094, -0.014795013703405857, -0.025250157341361046, 0.010781866498291492, 0.023561060428619385, 0.050993479788303375, -0.006571452133357525, -0.03992187976837158, -0.00593649921938777, 0.05222639814019203, 0.020417118445038795, 0.02966400235891342, -0.013044270686805248, -0.01944311335682869, -0.01882665604352951, 0.012649737298488617, 0.027494067326188087, 0.01886364258825779, -0.01742112822830677, 0.016755353659391403, -0.02771599218249321, 0.0066392626613378525, 0.042165789753198624, -0.02909686043858528, -0.00593649921938777, -0.0006472818786278367, 0.037579335272312164, 0.032080523669719696, -0.0033843594137579203, 0.017630724236369133, -0.008044788613915443, 0.008636589162051678, -1.4508456843032036e-05, -0.019344480708241463, 0.01186066959053278, 0.00493167107924819, 0.02169935405254364, -0.017593737691640854, 0.006260140333324671, -0.007446823641657829, 0.002146818209439516, -0.011922315694391727, 0.014289517886936665, -0.0030530127696692944, 0.03947803005576134, 0.022056899964809418, -0.026483075693249702, 0.007619432173669338, 0.013611412607133389, -0.006694743875414133, -0.024966586381196976, 0.014573088847100735, -0.02855437621474266, 0.05395248532295227, 0.026729658246040344, -0.019911622628569603, -0.004829955752938986, -0.011780530214309692, 0.020219853147864342, 0.01242781151086092, -0.01596628502011299, -0.032450396567583084, -0.005791631527245045, -0.02655705064535141, -0.0019665039144456387, -0.02083631046116352, 0.0217116829007864, 0.02825847640633583, -0.033831264823675156, -0.01973901502788067, 0.02658170834183693, 0.012600420042872429, 0.020478764548897743, 0.034990206360816956, -0.03765331208705902, -0.03282027319073677, 0.01139832567423582, 0.021514415740966797, -0.014807343482971191, 0.028677668422460556, -0.00036448132595978677, 0.004845367278903723, -0.02341310866177082, -0.007662584073841572, -0.03087226301431656, -0.029540712013840675, 0.01526352297514677, 0.024226834997534752, 0.006565287243574858, -0.006263222545385361, -0.01739647053182125, 0.022439103573560715, 0.009142085909843445, -0.008124928921461105, -0.007650255225598812, 0.03232710435986519, -0.029910586774349213, 0.004891601391136646, -0.047294728457927704, 0.030995553359389305, -0.004934753756970167, -0.03203120455145836, -0.03279561549425125, 0.030773628503084183, 0.005961157847195864, -0.017026595771312714, -0.0016659802058711648, 0.026113199070096016, -0.00042304492671974003, 0.018925288692116737, -0.027913259342312813, 0.04968658834695816, 0.04882354661822319, -0.009783202782273293, 0.015226535499095917, -0.007015302311629057, -0.0027370776515454054, -0.006577616557478905, -0.015103243291378021, 0.025915931910276413, 0.043595973402261734, 0.05913073942065239, 0.026063883677124977, -0.013512779027223587, 0.004737486597150564, 0.011805187910795212, 0.019233517348766327, -0.016138894483447075, -0.0023317558225244284, 0.002179182367399335, 0.01737181283533573, 0.04364529252052307, 0.02399258129298687, 0.007120100315660238, 0.005600529257208109, 0.010763372294604778, -0.0028033468406647444, 0.04196852445602417, 0.0016736859688535333, 0.024756990373134613, 0.022500749677419662, 0.012563432566821575, 0.005973486695438623, 0.0057977959513664246, -0.0038651973009109497, 0.007317367475479841, -0.004617277067154646, -0.010627751238644123, -0.052127767354249954, 0.027913259342312813, -0.038072504103183746, -0.013488121330738068, -0.02823381870985031, -0.024485748261213303, -0.013894983567297459, 0.03851635381579399, -0.025570714846253395, 0.003748070215806365, 0.023832300677895546, 0.011151742190122604, 0.029195494949817657, 0.008889337070286274, 0.02830779366195202, -0.01084967702627182, -0.039823245257139206, 0.013303183019161224, -0.022056899964809418, 0.005942664109170437, 0.011521616950631142, 0.017877308651804924, -0.005437167827039957, 0.002445800695568323, 0.028677668422460556, -0.02118152752518654, 0.020071901381015778, -0.007792040705680847, 0.0319572314620018, -0.017926625907421112, 0.016336161643266678, 0.0035631326027214527, -0.0058286190032958984, -0.04428640753030777, 0.014289517886936665, 0.0337572917342186, -0.007144758943468332, 0.04113014042377472, -0.017223862931132317, 0.027937917038798332, 0.042658958584070206, -0.009142085909843445, 0.01972668431699276, -0.02598990872502327, -0.0364697091281414, 0.001662897877395153, 8.66895334183937e-06, -0.006904339883476496, -0.03370797261595726, 0.0220322422683239, 0.019319823011755943, 0.04971124604344368, -0.038442377001047134, -0.009653746150434017, 0.006583780981600285, 0.006059790961444378, -0.03861498460173607, -0.00571457389742136, -0.012316849082708359, 0.010769537650048733, 0.013315512798726559, -0.016212869435548782, 0.02714885026216507, -0.008463980630040169, 0.0035662148147821426, 0.016743024811148643, 0.00363710755482316, -0.03447238355875015, -0.007033796049654484, -0.018099233508110046, 0.0037727286107838154, -0.04763994365930557, 0.005227571818977594, -0.01215040497481823, -0.024978915229439735, -0.016496440395712852, -0.014622405171394348, -0.024954257532954216, -0.006460489239543676, -0.024744661524891853, -0.021058237180113792, -0.00246121222153306, 0.037530019879341125, -0.004456997849047184, -0.00854412093758583, 0.03360934183001518, 0.02912151999771595, 0.02141578309237957, 0.010979133658111095, -0.008112599141895771, -0.0026107034645974636, 0.024325469508767128, -0.00335353659465909, 0.01775401644408703, -0.00015767863078508526, 0.014511442743241787, -0.012883991003036499, 0.02001025713980198, -0.0019449278479442, -0.012594255618751049, 0.027937917038798332, 0.008981806226074696, -0.01626218669116497, 0.009690734557807446, -0.0012044066097587347, 0.010146914049983025, -0.02057739906013012, -0.01712522841989994, 0.011743542738258839, -0.011743542738258839, 0.014388151466846466, -0.02373366802930832, -0.009511960670351982, -0.03462033346295357, 0.011940808966755867, 0.013192220591008663, 0.0035014867316931486, 0.007878344506025314, 0.026409100741147995, -0.021797986701130867, -0.0061522601172327995, -0.0066392626613378525, -0.005323122721165419, 0.011046944186091423, -0.02885027788579464, 0.048922181129455566, -0.016175881028175354, -0.015571752563118935, -0.02860369347035885, -0.0014841248048469424, 0.01013458427041769, 0.03178462013602257, 0.014536101371049881, -0.00519983097910881, -0.009314694441854954, -0.03676560893654823, 0.00023810725542716682, -0.03055170364677906, 0.049242738634347916, -4.115344927413389e-05, 0.008377676829695702, 0.0010387332877144217, 0.015103243291378021, -0.0038929381407797337, -0.004299800843000412, 0.02803655155003071, -0.05631968751549721, 0.0042134965769946575, 0.006059790961444378, 0.025065219029784203, 0.023326804861426353, 0.009715392254292965, -0.0043984344229102135, -0.03306685760617256, 0.0014301846968010068, 0.011743542738258839, 0.0038651973009109497, 0.0036617659498006105, -0.005394015461206436, -0.027543384581804276, 0.03000921942293644, 0.010455143637955189, 0.0023949427995830774, -0.0034090178087353706, -0.015830665826797485, 0.013044270686805248, -0.034373749047517776, -0.0009516584686934948, -0.017211532220244408, 0.05133869871497154, -0.0029112272895872593, -0.0025444342754781246, -0.027494067326188087, 0.01371004618704319, -0.005921087693423033, -0.030995553359389305, 0.008821527473628521, 0.017901966348290443, -0.009135921485722065, 0.028184501454234123, -0.008063282817602158, 0.0155594227835536, 0.01775401644408703, 0.017643054947257042, -0.021662365645170212, -0.0149799520149827, 0.016681378707289696, 0.06268154084682465, 0.03550803288817406, -0.01354976650327444, 0.004490903113037348, -0.02574332430958748, -0.02052808180451393, -0.030724313110113144, -0.01212574727833271, -0.0014109202893450856, -0.006947491783648729, -0.009160579182207584, 0.010738714598119259, 0.005563541781157255, -0.030477728694677353, -0.0071077714674174786, 0.021502086892724037, -0.01372237503528595, -0.0411054790019989, -0.04315212368965149, -0.018395133316516876, -0.005101197399199009, -0.022661030292510986, -0.0405876561999321, 0.005021058022975922, 0.0029266385827213526, -0.007933826185762882, 0.02626114897429943, 0.015115572139620781, 0.024633698165416718, -0.0037850576918572187, 0.013290854170918465, -0.005464908201247454, 0.007342025637626648, 0.03286958858370781, 0.05030304566025734, -0.021366465836763382, -0.02398025244474411, 0.007915332913398743, -0.004231990315020084, 0.012594255618751049, -0.005357027985155582, 0.018099233508110046, -0.011663402430713177, 0.008377676829695702, -0.008457816205918789, 0.029885927215218544, 0.002915850607678294, -0.007015302311629057, -0.0008468604064546525, 0.01372237503528595, -0.02029382809996605, 0.0003980012843385339, -0.02259938418865204, -0.0525716170668602, 0.027321459725499153, -0.017569078132510185, -0.0024889528285712004, -0.0004103304527234286, -0.028653010725975037, 0.012329177930951118, -0.01316756196320057, -0.04559330269694328, -0.029590027406811714, 0.0016659802058711648, -0.023918606340885162, 0.019849976524710655, -0.01472103875130415, 0.03319014608860016, -0.023943264037370682, 0.005067292135208845, 0.007329696323722601, 0.0021591472905129194, 0.020047243684530258, 0.007668748963624239, -0.019036252051591873, -0.004219661466777325, -0.0005089638871140778, -0.02168702520430088, 0.029590027406811714, 0.03538474068045616, 0.00750230485573411, -0.021822646260261536, 0.047812554985284805, 0.03664231672883034, 0.00855028536170721, 0.012353836558759212, 0.024461090564727783, -0.030107853934168816, 0.005076539237052202, -5.615555346594192e-05, -0.0011443018447607756, 0.005128938239067793, 0.030181828886270523, -0.00592417037114501, -0.007372848689556122, -0.032746296375989914, -0.013512779027223587, -0.018173208460211754, -0.022217178717255592, -0.010338015854358673, 0.03373263031244278, 0.024485748261213303, 0.005504977889358997, -0.029368102550506592, -0.0035384742077440023, 0.006559122819453478, 0.009986634366214275, -0.0004330623778514564, -0.015633398666977882, 0.006725566927343607, 0.004792968276888132, -0.021045906469225883, -0.02341310866177082, -0.054642919450998306, 0.0006002768641337752, -0.006050544325262308, -0.0019680450204759836, 0.016114236786961555, -0.04206715524196625, -0.05104279890656471, -0.025891274213790894, -0.024904940277338028, -0.03745604306459427, -0.034398406744003296, 0.03346138820052147, -0.07264351844787598, -0.004244319628924131, 0.013389487750828266, -0.0002787550038192421, -0.023524072021245956, 0.0026476909406483173, -0.010220889002084732, 0.0040562995709478855, -0.004900848492980003, -0.009265377186238766, -0.011201058514416218, -0.003942254930734634, -0.011441477574408054, -0.018185537308454514, -0.006867352407425642, 0.011607921682298183, 0.04887286201119423, -0.017507433891296387, -0.004315212368965149, -0.008303701877593994, -0.023203512653708458, -0.029540712013840675, 0.00027490215143188834, 0.0056683397851884365, 0.023770656436681747, -0.017840320244431496, 0.04687553644180298, 0.018210196867585182, 0.0024350127205252647, -0.004077875521034002, 0.02771599218249321, -0.048749569803476334, -0.0017322495114058256, -0.0014109202893450856, 0.012255202978849411, 0.0058132074773311615, 0.001833965303376317, -0.004534055478870869, -0.001512636081315577, 0.0027663593646138906, -0.008309866301715374, 0.0008160374709405005, 0.024744661524891853, -0.011281197890639305, 0.02001025713980198, 0.005979651585221291, -0.012464798986911774, -0.031858596950769424, 0.022685687988996506, -0.047590628266334534, 0.03740672767162323, -0.010257876478135586, 0.014955293387174606, 0.05262093245983124, 0.0011250375537201762, -0.037825919687747955, 0.0009316235082224011, -0.008396170102059841, -0.01743345893919468, -0.020096560940146446, -0.020367803052067757, 0.011601756326854229, -0.0007201010594144464, -0.017347153276205063, -0.007859851233661175, 0.008778374642133713, 0.008889337070286274, 0.016385477036237717, -0.012945637106895447, -0.020922616124153137, -0.007206404581665993, 0.002223875606432557, -0.030724313110113144, 0.01268672477453947, -0.0009585936204530299, -0.01800060085952282, 0.010541447438299656, -0.001628992729820311, -0.006848858669400215, -0.032450396567583084, 0.0182348545640707, -0.006873516831547022, 0.034127164632081985, -0.013216879218816757, 0.025521399453282356, 0.0012275237822905183, -0.019923951476812363, -0.021058237180113792, 0.0033042198047041893, 0.015830665826797485, 0.009764709509909153, 0.018407464027404785, -0.032129839062690735, 0.009998963214457035, -0.039280761033296585, -0.0058409483171999454, 0.008488639257848263, 0.022167863324284554, -0.01798827201128006, -0.031242137774825096, -0.041573990136384964, -0.021871961653232574, -0.003120823297649622, -0.00207130191847682, 0.013821008615195751, -0.003467581467702985, 0.011725048534572124, 0.05173323303461075, 0.02114454098045826, -0.049587953835725784, -0.0004057070182170719, 0.001756907906383276, 0.007644090335816145, -0.012834674678742886, -0.008365347050130367, 0.00748997600749135, -0.014462126418948174, -0.014955293387174606, 0.021489758044481277, -0.006220070645213127, 0.021267833188176155, -0.0001304195902775973, -0.02968866191804409, -0.0048546139150857925, -0.02914617769420147, -0.024165188893675804, -0.009641417302191257, -0.016521098092198372, 0.04362063109874725, 0.01258809119462967, -0.00388677348382771, -0.002758653601631522, 0.011749707162380219, 0.015929298475384712, -0.016101906076073647, -0.03079828806221485, -0.02284596674144268, -0.013364829123020172, -0.028085868805646896, 0.000941640988457948, 0.020762335509061813, -0.001307663507759571, 0.01596628502011299, -0.03168598935008049, 0.04078492149710655, 0.030206486582756042, 0.0011165612377226353, 0.003544638864696026, -0.059574589133262634, -0.024177517741918564, 0.03030512109398842, -0.021650036796927452, 0.0058409483171999454, -0.007705736439675093, -0.0025351871736347675, -0.009413328021764755, -0.012076430022716522, 0.005492649041116238, 0.03691355884075165, -0.027370775118470192, -0.00034637286444194615, 0.012649737298488617, -0.02850506082177162, -0.027568042278289795, -0.0006588404648937285, 0.002792558865621686, 0.0039114318788051605, -0.028480401262640953, -0.04724540933966637, 0.030970895662903786, 0.007483811117708683, 0.01973901502788067, 0.007483811117708683, 0.037603992968797684, 0.01938146911561489, -0.00025987596018239856, 0.030329778790473938, 0.01993628218770027, -0.00032364093931391835, -0.012020949274301529, -0.010547611862421036, -0.006904339883476496, 0.012785357423126698, 0.015460789203643799, 0.03087226301431656, -0.012477128766477108, -0.018900630995631218, -0.0242884811013937, -0.008155751042068005, 0.03198188915848732, 0.023228172212839127, -0.023314476013183594, 0.0009377881069667637, -0.007526963483542204, 0.008155751042068005, 0.055925153195858, -0.03286958858370781, -0.013130574487149715, 0.01387032587081194, 0.008655083365738392, 0.02029382809996605, -0.018222525715827942, -0.013944300822913647, 0.00041110103484243155, 0.032129839062690735, -0.017827991396188736, 0.025866616517305374, -0.009918823838233948, 0.001995785627514124, -0.008390005677938461, 0.01297029573470354, -0.013229208067059517, -0.005224489141255617, 0.018111562356352806, 0.00956744235008955], [0.021220464259386063, -0.031042134389281273, -0.003067232668399811, -0.018283752724528313, -0.021949203684926033, 0.04133150354027748, -0.012954163365066051, 0.019621586427092552, 0.023232655599713326, 0.006449889857321978, 0.016032272949814796, 0.0018748730653896928, 0.018294628709554672, -0.07326553016901016, 0.020763641223311424, 0.005239855498075485, -0.0033636230509728193, 0.01416147779673338, -0.020295944064855576, -0.006553218699991703, 0.04529062658548355, 0.05264328420162201, 0.04485555738210678, 0.027061257511377335, -0.03047654591500759, -0.0036219449248164892, -0.00062371144304052, 0.027496326714754105, 0.02814892865717411, -0.04585621505975723, -0.003866670886054635, -0.022949861362576485, 0.04359385743737221, -0.049206241965293884, 0.06269336491823196, 0.04807506501674652, -0.02403753250837326, 0.050206899642944336, -0.006286739371716976, 0.008010697551071644, -0.06260634958744049, 0.006591286975890398, -0.007700711488723755, -0.033783067017793655, -0.01656523160636425, 0.023928765207529068, -0.005182752851396799, -0.05590629577636719, 0.015912629663944244, 0.018827587366104126, -0.025473257526755333, 0.009810793213546276, 0.0034207256976515055, 0.01745712198317051, 0.019317040219902992, -0.03728536516427994, 0.007901931181550026, -0.0013561899540945888, 0.005764657165855169, -0.047117915004491806, -0.0013915392337366939, 0.010686368681490421, -0.03343500941991806, 0.05634136497974396, -0.012203670106828213, 0.012997670099139214, 0.006341122556477785, 0.031020380556583405, -0.07265643030405045, -0.00031066607334651053, -0.006651109084486961, 0.023580709472298622, -0.007314588408917189, -0.03252136707305908, 0.025125203654170036, 0.055036161094903946, 0.028714517131447792, 0.013606766238808632, -0.01040901243686676, -0.002050260081887245, -0.03387007862329483, -0.031129147857427597, -0.01569509506225586, 0.03236909210681915, -0.055645257234573364, -0.05773358419537544, -0.01356325950473547, 0.021949203684926033, -0.005802725441753864, 0.01672838255763054, 0.04309352859854698, -0.029432380571961403, 0.032630134373903275, 0.07796426862478256, -0.0012202310608699918, -0.03765517473220825, 0.01817498542368412, -0.04381139203906059, -0.011583697982132435, 0.05982191115617752, 0.017380984500050545, -0.028649257495999336, -0.003146088682115078, -0.02065487578511238, 0.04093994200229645, -0.08492536097764969, -0.028344709426164627, 0.0023765615187585354, 0.017642026767134666, -0.024429094046354294, -0.06221478804945946, -0.018370766192674637, -0.019436683505773544, 0.06395506113767624, 0.03695906698703766, 0.0006957696168683469, 0.033347997814416885, -0.04489906504750252, -0.01624980755150318, -0.0140092046931386, 0.006966533605009317, 0.048031557351350784, -0.013726409524679184, -0.053904980421066284, -0.01730484701693058, -0.008929779753088951, -0.03558859974145889, -0.01655435562133789, -0.012649615295231342, 0.006270423997193575, 0.03152070939540863, -0.012834519147872925, 0.018697066232562065, -0.041005201637744904, 0.01143142394721508, -0.052251722663640976, -0.010186039842665195, -0.02904081903398037, -0.033783067017793655, 0.009712902829051018, 0.036284707486629486, -0.048771172761917114, 0.012878025881946087, 0.04733544960618019, -0.03626295551657677, -0.03691555932164192, -0.0004279306158423424, 0.019849998876452446, 0.009750971570611, 0.014248492196202278, -0.07913894951343536, 0.019610710442066193, -0.022645313292741776, 0.021775176748633385, -0.0075429994612932205, 0.0384165458381176, 0.015455806627869606, 0.01584736816585064, 0.006292177364230156, 0.01977386139333248, -0.06878432631492615, -0.009337657131254673, -0.027953147888183594, -0.024124545976519585, -0.00799438264220953, -0.026321642100811005, -0.0038068490102887154, 0.009881492704153061, -0.021590271964669228, -0.04402892664074898, -0.026604436337947845, -0.03576262667775154, -0.005490019917488098, 0.0501633919775486, -0.012051396071910858, -0.010865834541618824, 0.014650930650532246, 0.033195722848176956, 0.006923026870936155, -0.0498153381049633, 0.013965697027742863, -0.012355944141745567, 0.021949203684926033, -0.017359230667352676, 0.022797586396336555, 0.004780314862728119, -0.021329231560230255, 0.024015778675675392, -0.00967483501881361, 0.08018311858177185, -0.007646328303962946, 0.014270245097577572, -0.011714218184351921, -0.008630670607089996, -0.046987392008304596, 0.02255829982459545, -0.01757676526904106, 0.009517122060060501, 0.018153231590986252, -0.046421803534030914, 0.023558957502245903, 0.017631148919463158, 0.0026267257053405046, 0.05129457265138626, -0.05912580341100693, -0.022928107529878616, -0.010414451360702515, -0.035849642008543015, 0.05655889958143234, -0.01122476626187563, 0.0061072735115885735, -0.056950461119413376, -0.034261640161275864, 0.020741889253258705, -0.04907572269439697, -0.022514792159199715, -0.006803383119404316, 0.026452161371707916, 0.001294328598305583, 0.0047368076629936695, 0.005291520152240992, -0.01952369697391987, 0.00953343790024519, -0.006058328319340944, 0.018968984484672546, -0.0024200682528316975, 0.009141876362264156, -0.041744817048311234, -0.0017049245070666075, -0.07578892260789871, -0.02930186130106449, 0.023384928703308105, 0.01730484701693058, -0.02331966906785965, -0.0008470239117741585, 0.0536874458193779, -0.027322299778461456, 0.027017751708626747, 0.006879520136862993, 0.028083669021725655, 0.010544971562922001, 0.02566903829574585, 0.002595455152913928, -0.03284766897559166, 0.02858399786055088, -0.0058136023581027985, 0.015760354697704315, -0.041701313108205795, 0.07143823802471161, -0.01570597104728222, -0.007967190816998482, -0.017087314277887344, -0.021960079669952393, -0.07874739170074463, 0.045812707394361496, 0.03212980553507805, 0.035414572805166245, -0.03650224208831787, 0.03645873814821243, 0.02608235366642475, -0.00016884395154193044, 0.03143369406461716, -0.004562780261039734, 0.023341422900557518, -0.04529062658548355, 0.0020121915731579065, 0.055036161094903946, -0.07513631880283356, -0.022993367165327072, 0.04951079189777374, -0.023841751739382744, 0.016902409493923187, 0.04555166885256767, 0.024168051779270172, 0.007978067733347416, 0.0372418612241745, -0.02564728632569313, -0.016761012375354767, 0.0037769379559904337, -0.006906711496412754, -0.09179944545030594, -0.04350684583187103, 0.0005203826585784554, -0.011725095100700855, 0.0015744039556011558, 0.008222794160246849, 0.006591286975890398, 0.004138588905334473, -0.05046794191002846, 0.01688065566122532, -0.008929779753088951, -0.0206766277551651, -0.024450847879052162, -0.050380926579236984, 0.04035259783267975, -0.014977231621742249, 0.030846353620290756, 0.013226080685853958, 0.031912270933389664, 0.02551676519215107, 0.010746191255748272, 0.016184546053409576, -0.020731011405587196, 0.006335684563964605, -0.022645313292741776, -0.040113311260938644, -0.015803862363100052, -0.007118807639926672, -0.022036217153072357, -0.05573226884007454, 0.003937369678169489, 0.011540190316736698, -0.03419638052582741, -0.03956947475671768, 0.016771888360381126, 0.014400766231119633, 0.012551724910736084, 0.024603120982646942, -0.007298273500055075, -0.024233313277363777, 0.035262297838926315, 0.03243435174226761, -0.009810793213546276, -0.004467609338462353, 0.017032930627465248, -0.04842311888933182, -0.007983505725860596, -0.003687205258756876, -0.029084326699376106, 0.016489094123244286, -0.010234985500574112, -0.014966354705393314, 0.008984163403511047, 0.01656523160636425, 0.03926492854952812, 0.017206957563757896, 0.017826929688453674, -0.026604436337947845, 0.0015336163341999054, -0.046682845801115036, 0.017272217199206352, 0.013769916258752346, 0.02331966906785965, -0.032934680581092834, 0.002731414046138525, 0.005035917274653912, 0.05042443424463272, 0.08375068008899689, -0.013030299916863441, 0.03271714597940445, 0.027648599818348885, -0.0017525100847706199, 0.03256487473845482, -0.014096218161284924, -0.03397884592413902, 0.0393519401550293, -0.0307810939848423, -0.010414451360702515, -0.03345676511526108, -0.009239766746759415, 0.052730295807123184, 0.021046437323093414, 0.013813422992825508, 0.04015681892633438, -0.020143669098615646, 0.0183272585272789, -0.010164286941289902, -0.008239109069108963, 0.04516010731458664, -0.009924999438226223, 0.04485555738210678, 0.029823942109942436, -0.0003630102437455207, 0.008592601865530014, -0.015803862363100052, -0.021655531600117683, 0.009848861955106258, 0.012497341260313988, 0.028040161356329918, 0.0151838893070817, 0.048466626554727554, 0.021220464259386063, -0.009876053780317307, 0.0012311077443882823, 0.05882125347852707, 0.021002929657697678, -0.00857084896415472, 0.00578641053289175, 0.040374353528022766, -0.01863180659711361, -0.029106080532073975, -0.06060503423213959, -0.0016750135691836476, -0.02886679209768772, -0.004328931216150522, -0.007869300432503223, 0.007657204754650593, 0.009054861962795258, -0.0064390129409730434, 0.022384272888302803, 0.012497341260313988, -0.05438355728983879, 0.01728309504687786, -0.029845695942640305, -0.036741532385349274, 0.02271057292819023, 0.0018340854439884424, -0.03206454589962959, 0.03400059789419174, -0.04559517279267311, 0.06312843412160873, -0.031042134389281273, 0.040548380464315414, 0.01642383448779583, -0.03354377672076225, -0.02403753250837326, 0.012127533555030823, 0.0395912304520607, 0.03180350363254547, 0.019425805658102036, 0.020861532539129257, -0.0020692944526672363, -0.02170991525053978, 0.008233670145273209, -0.03515353053808212, 0.029736928641796112, 0.0219709575176239, 0.034674957394599915, -0.003401691559702158, -0.012780135497450829, -0.02260180562734604, 0.016793642193078995, 0.03156421706080437, 0.027083011344075203, -0.0034832668025046587, -0.038634080439805984, 0.04220164194703102, -0.025690792128443718, -0.005386691074818373, -0.010724437423050404, -0.0036572942044585943, 0.017446244135499, -0.02479890175163746, 0.05116404965519905, -0.0013657070230692625, -0.03941720351576805, 0.025690792128443718, 0.044638022780418396, -0.02817068248987198, 0.04115747660398483, -0.010164286941289902, 0.02904081903398037, -0.04207111895084381, 0.055079665035009384, -0.05085950344800949, -0.005688520148396492, -0.04137501120567322, -0.030454792082309723, 0.05307834967970848, -0.013987450860440731, 0.03767692670226097, 0.028540490195155144, 0.04357210546731949, 0.03767692670226097, 0.05346991494297981, 0.024276819080114365, -0.0059767528437078, -0.015357916243374348, -0.042723722755908966, 0.03193402290344238, -0.044638022780418396, 0.01775079220533371, 0.03282591328024864, -0.002750448416918516, -0.040091559290885925, -0.01669575273990631, -0.03898213431239128, -0.00681969802826643, -0.06995900720357895, 0.015303532592952251, 0.0043969107791781425, -0.023994024842977524, -0.05773358419537544, -0.00766264321282506, 0.056819941848516464, 0.016608737409114838, 0.05303484573960304, 0.02947588823735714, -0.013737286441028118, -0.049032215029001236, -0.019404053688049316, -0.018087970092892647, 0.06578235328197479, -0.007488615810871124, -0.013236957602202892, 0.03998279199004173, 0.029976217076182365, -0.019588956609368324, 0.0239070113748312, 0.033630792051553726, -0.009685711935162544, -0.04048312082886696, 0.000655661744531244, -0.009283273480832577, 0.05664591118693352, 5.3193914936855435e-05, -0.018446901813149452, -0.005742903798818588, 0.013878683559596539, -0.0474659688770771, -0.008249985985457897, 0.056384872645139694, -0.0016926882090047002, -0.04359385743737221, 0.008315245620906353, -0.0290190652012825, -0.023972271010279655, -0.005704835057258606, -0.032195065170526505, 0.005639574956148863, -0.004981533624231815, 0.03193402290344238, -0.0035158968530595303, -0.011866492219269276, 0.019132135435938835, 0.005846232175827026, -0.030171997845172882, -0.03711133822798729, -0.017652902752161026, 0.0023058627266436815, -0.002006753347814083, -0.03904739394783974, 0.002095126546919346, 0.03998279199004173, 0.04365912079811096, -0.028235942125320435, -0.009848861955106258, 0.011899122036993504, -0.028671011328697205, -0.009702026844024658, -0.007069862447679043, -0.00805964320898056, 0.004997848998755217, 0.008859081193804741, 0.0404178611934185, -0.010572163388133049, 0.014302875846624374, 0.018816711381077766, -0.005617821589112282, -0.00538941053673625, -0.007086177356541157, 0.0009999776957556605, 0.03580613434314728, -0.002410551067441702, 0.017555011436343193, -0.016086656600236893, 0.03006323054432869, -0.018653560429811478, -0.0012447036569938064, -0.05616733804345131, -0.03021550364792347, 0.03152070939540863, -0.0026933455374091864, -0.005780972074717283, 0.03854706510901451, 0.043332818895578384, 0.013030299916863441, 0.00023401924408972263, -0.015444929711520672, 0.003159684594720602, -0.04707440733909607, 0.041723065078258514, -0.009457300417125225, 0.004190253093838692, 0.021187834441661835, 0.02475539594888687, 0.006411821581423283, -0.07509281486272812, -0.0008388663409277797, -0.004519273526966572, 0.015771230682730675, -0.00844032783061266, 0.021590271964669228, -0.019871750846505165, -0.007227574475109577, 0.03110739402472973, -0.01268224511295557, -0.04650881886482239, 0.011801231652498245, 0.013672025874257088, 0.004018944688141346, 0.0031216160859912634, 0.014313751831650734, -0.00766264321282506, -0.005177314393222332, 0.004084205254912376, 0.003991752862930298, -0.01980649121105671, -0.020785395056009293, -0.003689924255013466, -0.011067054234445095, 0.009141876362264156, -0.019610710442066193, 0.020154546946287155, -0.0013561899540945888, -0.02021980658173561, -0.020992053672671318, -0.020850656554102898, 0.007765972055494785, 0.0131281903013587, 0.01642383448779583, -0.00487276678904891, 0.017196081578731537, -0.016924163326621056, -0.0003772859345190227, 0.002914958633482456, -0.030563559383153915, -0.04998936504125595, -0.026713203638792038, 0.015477560460567474, -0.0140092046931386, 0.0029774997383356094, 0.02037207968533039, 0.0006281301029957831, 0.01980649121105671, -0.0012331471079960465, -0.01772904023528099, -0.04115747660398483, -0.008608916774392128, -0.012116656638681889, 0.01919739507138729, 0.032325584441423416, 0.01656523160636425, -0.010876711457967758, 0.007325465325266123, -0.02538624405860901, 0.014998984523117542, -0.009364848956465721, -0.017848683521151543, 0.013182573951780796, -0.0072656432166695595, -0.006781629752367735, -0.0014452430186793208, -0.033935338258743286, 0.06104010343551636, 0.01363939605653286, 0.012486464343965054, 0.028235942125320435, 0.03156421706080437, 0.006020259577780962, 0.011170382611453533, -0.029084326699376106, 0.03828602284193039, -0.05186016112565994, 0.012225423939526081, -0.0007708868943154812, 0.010387259535491467, 0.03252136707305908, 0.004511116072535515, 0.0486406534910202, -0.001472434843890369, -0.0046851434744894505, -0.020763641223311424, -0.006640232168138027, 0.041570790112018585, 0.010224108584225178, 0.01672838255763054, -0.00656409515067935, 0.04355035349726677, 0.00240103411488235, -0.04737895354628563, 0.00662935571745038, 0.04637829586863518, -0.010806012898683548, -0.0180335883051157, -0.009511684067547321, -0.003045479068532586, 0.0119535056874156, 0.003010129788890481, 0.023972271010279655, -0.02187306620180607, -0.009272396564483643, -0.058734241873025894, 0.033065203577280045, -0.01850128546357155, -0.020731011405587196, 0.00428814347833395, 0.0022038936149328947, -0.0032439790666103363, 0.02126397006213665, 0.018990738317370415, -0.017261341214179993, 0.014846711419522762, -0.009772725403308868, 0.011246519163250923, 0.032173313200473785, 0.015423176810145378, 0.012856272980570793, 0.02153588831424713, 0.011692464351654053, -0.011920875869691372, -0.015912629663944244, 0.0015744039556011558, -0.05734202265739441, -0.00055981072364375, -0.0018694347236305475, -0.009419231675565243, -0.030585313215851784, 0.013323971070349216, -0.0016668559983372688, -0.02316739596426487, -0.018718820065259933, -0.051251064985990524, -0.009408355690538883, -0.018098847940564156, 0.005982191301882267, -0.01805534027516842, -0.04104870930314064, 0.03463144972920418, -0.01643471047282219, -0.033935338258743286, 0.002543790964409709, -0.0024336641654372215, -0.01357413548976183, -0.009854300878942013, -0.006683739367872477, -0.04681336507201195, -0.01040901243686676, -0.024864161387085915, 0.014716190285980701, 0.02873627096414566, -0.0007729263161309063, -0.006020259577780962, 0.005933246109634638, 0.007532122544944286, -0.0015023457817733288, -0.023863505572080612, 0.007037232164293528, -0.007939998991787434, -0.020752765238285065, 0.01862093061208725, -0.01181210856884718, 0.023928765207529068, -0.014650930650532246, 0.011398793198168278, 0.012943286448717117, 0.0009238406782969832, 0.019393175840377808, -0.009691149927675724, -0.015249148942530155, 0.01757676526904106, 0.005228979047387838, -0.013302218168973923, 0.011007231660187244, -0.0004065170942340046, 0.00960957445204258, 0.0052860816940665245, -0.007124246098101139, 0.02479890175163746, 0.01130090281367302, 0.024581367149949074, -0.013182573951780796, 0.013204327784478664, 0.03752465546131134, 0.011518437415361404, -0.04209287464618683, -0.04703089967370033, 0.0063737528398633, -0.004981533624231815, -0.02579955942928791, -0.014574793167412281, 0.022340765222907066, 0.022797586396336555, 0.017359230667352676, 0.015096875838935375, 0.016054026782512665, -0.004788472317159176, -0.025125203654170036, -0.049467284232378006, -0.03121616132557392, -0.013421861454844475, 0.009114684537053108, 0.033826570957899094, 0.007325465325266123, 0.0028823285829275846, 0.015803862363100052, -0.013487122021615505, 0.018990738317370415, 0.03552334010601044, -0.012486464343965054, 0.028235942125320435, -0.032760653644800186, -0.006596725434064865, -0.03474021703004837, -0.020905038341879845, 0.005732026882469654, 0.019882628694176674, -0.04102695360779762, 0.033500272780656815, 0.016325943171977997, -0.01670662872493267, 0.025429751724004745, 0.025277476757764816, 0.03989577665925026, 0.03695906698703766, -0.04365912079811096, -0.04520361125469208, 0.00805420521646738, -0.005332307890057564, -0.011007231660187244, 0.0023194586392492056, 0.032760653644800186, -0.009348533116281033, -0.003817725693807006, -0.006210602354258299, -0.07692009955644608, -0.056515391916036606, 0.005296958610415459, -0.03156421706080437, -0.030846353620290756, 0.03093336708843708, -0.008255423977971077, 0.014128847979009151, -0.026343394070863724, 0.010898464359343052, -0.012878025881946087, -0.04065714776515961, -0.0015037053963169456, 0.001808253233321011, -0.035240545868873596, 0.02170991525053978, -0.013041176833212376, 0.014520409516990185, -0.017032930627465248, -0.0017973765498027205, 0.0013283183798193932, -0.00039903935976326466, 0.004432260058820248, 0.01952369697391987, 0.019980518147349358, 0.00230722245760262, -0.006912149954587221, 0.024711888283491135, -0.0064444513991475105, 0.010485149919986725, 0.02329791523516178, 0.01831638254225254, -0.012562601827085018, -0.02832295559346676, -0.00946817733347416, -0.0291930940002203, 0.038960378617048264, -0.021742546930909157, 0.030607065185904503, 0.0035213353112339973, 0.031172655522823334, -0.041853584349155426, -0.03006323054432869, -0.038634080439805984, -0.032608382403850555, 0.00901679415255785, -0.015368793159723282, 0.009527998976409435, -0.03280416131019592, 0.028257695958018303, 0.03978700935840607, 0.044224709272384644, -0.009973944164812565, 0.014107095077633858, -0.014248492196202278, 0.015151258558034897, -0.021340107545256615, 0.007048109080642462, -0.005103896837681532, -0.026365147903561592, -0.037307120859622955, -0.004364280495792627, 0.04955429583787918, 0.02523397095501423, -0.009277834556996822, 0.029954463243484497, 0.0004761960299219936, 0.013726409524679184, 0.0069937254302203655, -0.04768350347876549, -0.0015947978245094419, -0.0038639516569674015, 0.06365051865577698, -0.0006780949770472944, -0.004051574971526861, -0.019871750846505165, 0.03108564019203186, 0.02740931324660778, -0.010555848479270935, -0.005998506210744381, 0.024603120982646942, -0.019719477742910385, 0.03286942094564438, 0.006640232168138027, -0.021775176748633385, -0.014422519132494926, 0.005780972074717283, -0.04637829586863518, -0.006863204762339592, -0.020720135420560837, 0.04811857268214226, 0.0019075032323598862, -0.02623462863266468, 0.0015988765517249703, -0.006852328311651945, -0.03917791321873665, -0.004581814631819725, -0.028562244027853012, -0.0075810677371919155, 0.06025698035955429, 0.0010346472263336182, -0.01963246427476406, 0.011518437415361404, 0.01686977967619896, -0.017076436430215836, 0.061083611100912094, -0.0018422430148348212, -0.011355286464095116, -0.034892488270998, -0.01581473834812641, -0.03504476323723793, 0.00172259914688766, 0.0019632463809102774, 0.013280464336276054, 0.006879520136862993, 0.041875340044498444, 0.026582682505249977, 0.039808765053749084, 0.007439670618623495, -0.00733634177595377, -0.044768545776605606, -0.0003592713619582355, 0.009968506172299385, 0.01716344989836216, -0.03604542091488838, 0.04383314773440361, 0.0179139431566, -0.027822628617286682, 0.024603120982646942, -0.0031134586315602064, -0.035262297838926315, 0.006531465332955122, -0.04402892664074898, 0.0036926434841006994, -0.029127832502126694, 0.020437341183423996, -0.011001793667674065, 0.03156421706080437, 0.009865176863968372, 0.006460766773670912, 0.017783423885703087, 0.014781450852751732, 0.004350684583187103, -0.0005523330182768404, 0.0038857050240039825, -0.02934536710381508, 0.014553040266036987, 0.005484581924974918, -0.004859170876443386, 0.049467284232378006, -0.019295286387205124, -0.014379012398421764, 0.0006427456391975284, 0.011540190316736698, 0.005144684575498104, 0.007450547069311142, 0.027670353651046753, 0.005348622798919678, 0.045073091983795166, 0.004437698051333427, -0.0069882869720458984, 0.00013969776045996696, -0.009473615325987339, 0.03095512092113495, 0.005218102131038904, 0.034087613224983215, 0.03667626902461052, 0.01487934123724699, 0.009995697997510433, 0.015803862363100052, 0.006368314381688833, 0.01760939508676529, -0.008179286494851112, 0.0243203267455101, -0.011627204716205597, 0.005484581924974918, 0.02479890175163746, 0.04191884398460388, -0.022068846970796585, 0.008429450914263725, 0.029497642070055008, -0.005228979047387838, 0.02610410749912262, 0.011627204716205597, 0.023689476773142815, 0.023058628663420677, 0.002682468853890896, -0.015640711411833763, 0.011409670114517212, 0.05194717273116112, 0.01349799893796444, 0.00766264321282506, 0.034065861254930496, -0.011833862401545048, -0.02360246330499649, 0.04585621505975723, 0.0015907189808785915, 0.010496026836335659, 0.011322656646370888, 0.017642026767134666, -0.0183272585272789, -0.007450547069311142, -0.013204327784478664, 0.0034560749772936106, 0.02065487578511238, -0.00864154752343893, 0.010419889353215694, -0.050380926579236984, 0.02301512099802494, 0.02769210748374462, -0.03487073630094528, 0.02168816328048706, -0.01540142297744751, 0.05046794191002846, 0.006999163888394833, 0.03558859974145889, -0.023515449836850166, 0.015912629663944244, 0.02656092867255211, -0.008342437446117401, 0.02199270948767662, -0.020056655630469322, -0.019545450806617737, -0.01164895761758089, 0.02934536710381508, -0.028649257495999336, 0.04533413425087929, -0.044812049716711044, -0.006243232171982527, 0.022536545991897583, 0.013378354720771313, 0.051381584256887436, 0.010115341283380985, -0.014542163349688053, -0.010425328277051449, 0.02025243639945984, 0.02475539594888687, -0.006058328319340944, -0.02538624405860901, 0.0012630581622943282, -0.011540190316736698, -0.022362519055604935, -0.027909642085433006, -0.004244636744260788, -0.007058985531330109, 0.001296368078328669, 0.0004724571481347084, -0.010077273473143578, 0.02651742286980152, 0.011453176848590374, -0.02786613442003727, -0.02020893059670925, -0.007885615341365337, 0.01610841043293476, -0.02462487481534481, 0.0036246641539037228, 0.027605094015598297, 0.00461444491520524, 0.022340765222907066, 0.03813375160098076, -0.010631985031068325, -0.03602366894483566, -0.014389889314770699, -0.013965697027742863, -0.016673998907208443, -0.008424012921750546, 0.024276819080114365, -0.013552382588386536, -0.00253155454993248, 0.018979860469698906, -0.008859081193804741, -0.021089943125844002, 0.020459095016121864, -0.00039666006341576576, -0.008984163403511047, -0.006661985535174608, 0.000775645487010479, -0.0013092841254547238, 0.034827228635549545, 0.006542341783642769, 0.012497341260313988, 0.014302875846624374, -0.020741889253258705, 0.01610841043293476, 0.02138361521065235, 0.04516010731458664, 0.030998626723885536, -0.006640232168138027, -0.00604745140299201, 0.03521879017353058, -0.04424646124243736, -0.03484898433089256, 0.015140382573008537, 0.042723722755908966, 0.002237883396446705, 0.012769259512424469, 0.013954821042716503, 0.036306463181972504, -0.0034560749772936106, 0.02212323062121868, -0.0031188970897346735, 0.039069145917892456, 0.03798147663474083, -0.03080284595489502, 0.04777051508426666, -0.031738243997097015, -0.01745712198317051, -0.03226032480597496, -0.0006672182353213429, 0.017032930627465248, 0.013400108553469181, -0.048336103558540344, 0.016228053718805313, 0.037459395825862885, -0.009631328284740448, -0.008315245620906353, -0.007281958125531673, -0.0021046437323093414, -0.03828602284193039, -0.0014887498691678047, -0.02566903829574585, 0.019273532554507256, 0.004424102138727903, -0.03898213431239128, 0.015303532592952251, 0.02345019020140171, 0.02975868247449398, -0.015564573928713799, 0.0026688729412853718, -0.004935307893902063, 0.003910177852958441, 0.0018177704187110066, 0.04322405159473419, 0.0021957361605018377, -0.00656409515067935, -0.008249985985457897, -0.007744218688458204, -0.031042134389281273, -0.03785095736384392, -0.02651742286980152, -0.009381163865327835, -8.064061694312841e-05, -0.017805175855755806, 0.005993067752569914, 0.028649257495999336, -0.005283362697809935, 0.03271714597940445, -0.019404053688049316, 0.003559403819963336, -0.00989236868917942, 0.03506651893258095, -0.039678242057561874, -0.0015186608070507646, 0.05142509192228317, 0.010012012906372547, -0.011768601834774017, -0.017185203731060028, -0.014705313369631767, -0.023406682536005974, -0.014574793167412281, -0.00812490377575159, 0.015934381633996964, -0.004057013429701328, 0.0319557785987854, -0.024559615179896355, -0.006661985535174608, 0.019828245043754578, -0.02564728632569313, -0.02260180562734604, -0.04529062658548355, 0.00785298552364111, 0.0055797528475522995, -0.025277476757764816, -0.003708958625793457, -0.013226080685853958, 0.024407340213656425, 0.003260294208303094, 0.03869934007525444, -0.002923116087913513, -0.023863505572080612, 0.01775079220533371, -0.014411642216145992, 0.02947588823735714, 0.01905599795281887, 1.6941752619459294e-05, -0.04074415937066078, -0.015064245089888573, -0.044507503509521484, -0.0442899689078331, -0.03517528623342514, -0.029671669006347656, 0.009364848956465721, -0.010865834541618824, 0.025146957486867905, -0.018675314262509346, 0.00611814996227622, 0.02405928634107113, 0.015945259481668472, -0.029367120936512947, -0.01921914890408516, 0.007689835038036108, -0.002135914284735918, 0.003037321614101529, 0.029954463243484497, 0.00982167012989521, -0.04400717467069626, 0.01150756049901247, 0.006270423997193575, -0.02168816328048706, 0.021764298900961876, -0.02786613442003727, -0.05547122657299042, -0.007200383115559816, 0.005862547550350428, 0.016630491241812706, 0.016967669129371643, -0.027931394055485725, -0.004252794198691845, -0.03463144972920418, 0.04115747660398483, -0.004606287460774183, 0.0009843424195423722, -0.03210805356502533, -0.011833862401545048, -0.0013888201210647821, -0.0028007531072944403, 0.008233670145273209, 0.03328273817896843, -0.014466025866568089, -0.0072438898496329784, 0.0014030957827344537, -0.03226032480597496, -0.0051990682259202, 0.004554622806608677, -0.015771230682730675, -0.003537650452926755, 0.013280464336276054, -0.017968326807022095, 0.022057970985770226, 0.011344409547746181, -0.01614104025065899, -0.004611725453287363, -0.022188492119312286, -0.003080828581005335, 0.005802725441753864, -0.014455148950219154, 0.0016695752274245024, 0.0012487823842093349, -0.013084683567285538, 0.01599964313209057, 0.008777505718171597, 0.007488615810871124, 0.020306820049881935, 0.018218491226434708, 0.02904081903398037, 0.021481504663825035, 0.02007840946316719, -0.019153889268636703, -0.004296300932765007, 0.017032930627465248, 0.016673998907208443, 0.03948246315121651, -0.0031542463693767786, 0.015238272957503796, -0.0056015062145888805, 0.014748821035027504, 0.031042134389281273, -0.007135122548788786, -0.020295944064855576, -0.03728536516427994, 0.029802188277244568, 0.0011005871929228306, -0.017511505633592606, 0.015096875838935375, -0.013204327784478664, 0.008554533123970032, -0.01700029894709587, 0.017805175855755806, -0.037894461303949356, -0.023580709472298622, -0.017946572974324226, 0.008375068195164204, -0.001225669402629137, 0.0013731848448514938, 0.0058571090921759605, 0.007640889845788479, 0.013226080685853958, -0.021046437323093414, 0.002879609353840351, -0.0014479622477665544, 0.015553697012364864, -0.025168709456920624, -0.008897149935364723, 0.0010774742113426328, -0.03228208050131798, -0.01254084799438715, -0.0035213353112339973, 0.011213889345526695, -0.007292835041880608, 0.01566246524453163, -0.020937670022249222, -0.023276163265109062, -0.03528405353426933, -0.06025698035955429, 0.018577422946691513, 0.006933903321623802, -0.024537861347198486, -0.006069204770028591, -0.02773561328649521, -0.004647074732929468, -0.00031066607334651053, 0.000684213126078248, 0.018947230651974678, -0.0029774997383356094, -0.017859559506177902, -0.048466626554727554, -0.009489930234849453, 0.021024683490395546, 0.019556326791644096, -0.023276163265109062, 0.008266300894320011, 0.01729397103190422, 0.041549038141965866, -0.006683739367872477, 0.003866670886054635, 0.0127475056797266, 0.022688819095492363, -0.02891029790043831, 0.026473915204405785, -0.03141194209456444, 0.02490766905248165, -1.1938890565943439e-05, -0.0005268406821414828, -0.008614355698227882, -0.02917134016752243, 0.0020203490275889635, -0.004541026894003153, -0.02845347672700882, -0.00390202016569674, -0.05207769572734833, 0.004967937711626291, 0.020295944064855576, 0.034522682428359985, 0.01643471047282219, -0.014237615279853344, 0.016532601788640022, 0.015216519124805927, -0.032608382403850555, 0.0026987839955836535, -0.016630491241812706, 0.01005008164793253, -0.021089943125844002, -5.666724064212758e-06, -0.002237883396446705, 0.018794957548379898, -0.03123791515827179, -0.0032412600703537464, -0.004660670645534992, 0.04178832471370697, 0.036893803626298904, 0.026582682505249977, -0.011181259527802467, -0.005218102131038904, 0.0239070113748312, -0.0011590495705604553, -0.02651742286980152, -0.047596488147974014, 0.006477081682533026, -0.016054026782512665, -0.028388217091560364, -0.002974780509248376, -0.021198710426688194, -0.022406024858355522, 0.008402259089052677, -0.014422519132494926, -0.025538519024848938, 0.010142533108592033, -0.011616327799856663, -0.03065057285130024, 0.013911314308643341, -0.02182956039905548, -0.03680679202079773, 0.009277834556996822, -0.019425805658102036, -0.004198410548269749, -0.023558957502245903, -0.018305504694581032, 0.01788131333887577, 0.050076380372047424, 0.01416147779673338, -0.01658698543906212, -0.004796629771590233, 0.0041195545345544815, 0.004005348775535822, 0.023841751739382744, -0.02010016329586506, -0.005343184340745211, 0.019578080624341965, -0.053426407277584076, -0.014324628747999668, 0.008962410502135754, -0.023363176733255386, -0.03182525932788849, 0.019893504679203033, -0.005753780249506235, -0.05011988431215286, -0.02608235366642475, -0.0011474930215626955, -0.023080380633473396, -0.01743536815047264, 0.018087970092892647, 0.011311779730021954, 0.02595183253288269, 0.01863180659711361, -0.03143369406461716, 0.002830664161592722, -0.010593917220830917, 0.024864161387085915, 0.004622602369636297, 0.027887888252735138, 0.01702205277979374, -0.005797286983579397, 0.00414674635976553, 0.0025111606810241938, -0.010256738401949406, 0.03373955935239792, -0.005470986012369394, -0.00178649986628443, 0.007749656680971384, -0.003137931227684021, -0.03809024393558502, 0.0014330067206174135, 0.011028985492885113, -0.03726361319422722, -0.0022419621236622334, -0.0030917052645236254, -0.006754437927156687, 0.009446423500776291, 0.006308492738753557, -0.012247176840901375, -0.02593008056282997, -0.013400108553469181, -0.024298572912812233, -0.002123677870258689, -0.0020720134489238262, 0.0323038324713707, 0.003423444926738739, 0.009201698005199432, -0.01443339604884386, 0.010506902821362019, 0.021470628678798676, 0.0203829575330019, -0.010751629248261452, 0.01788131333887577, 0.007167752832174301, -0.020633121952414513, 0.018087970092892647, 0.00829349271953106, -0.00029044217080809176, -0.06204076111316681, -0.023928765207529068, -0.011725095100700855, -0.0011481728870421648, 0.005335026886314154, -0.020024025812745094, 0.010876711457967758, 0.005288800690323114, 0.01877320371568203, 0.0018490409711375833, -0.01173597201704979, 0.0012732549803331494, -0.0026511983014643192, -0.018707944080233574, 0.015618957579135895, 0.0050141639076173306, 0.03302169591188431, 0.010447081178426743, 0.021024683490395546, 0.00649339659139514, 0.03928668051958084, 0.011159505695104599, -0.012497341260313988, -0.026125861331820488, -0.02139449119567871, -0.015336163341999054, 0.008168410509824753, -0.02710476517677307, 0.009914122521877289, 0.009517122060060501, 0.005408444907516241, 0.0202633123844862, -0.011355286464095116, -0.0012141128536313772, 0.002323537366464734, -0.002036664169281721, 0.00923432782292366, 0.0556887611746788, -0.017924821004271507, -0.028496984392404556, 0.008424012921750546, 0.005193629767745733, 0.014204985462129116, -0.0009197618928737938, 0.0012481026351451874, 0.014705313369631767, -0.025190463289618492, -0.013541505672037601, -0.06578235328197479, 0.0027463696897029877, 0.01216016337275505, 0.004902677610516548, -8.314735896419734e-05, 0.00915819127112627, -0.027909642085433006, -0.017130820080637932, -0.014020080678164959, 0.029845695942640305, 0.004339807666838169, 0.019458437338471413, 0.003744307905435562, -0.008347876369953156], [-0.03138108551502228, 0.014544735662639141, 0.036782748997211456, 0.03645537421107292, -0.053034503012895584, -0.016450516879558563, 0.04099183529615402, 0.023816419765353203, -0.010920243337750435, 0.0038583301939070225, -0.051818545907735825, 0.013784761540591717, 0.05219268426299095, -0.005106441676616669, -0.01725725829601288, 0.026914775371551514, 0.04019678756594658, 0.0231967493891716, 0.017187107354402542, -0.009932277724146843, 0.02000485733151436, 0.025184374302625656, -0.007336673326790333, 0.022775840014219284, -0.004241240210831165, -0.03972911089658737, -0.009195687249302864, 0.002339843427762389, 0.037039969116449356, -0.07838256657123566, 0.03362593427300453, -0.03065618686378002, 0.07379933446645737, -0.024973919615149498, -0.0011443456169217825, -0.009224916808307171, 0.04307299479842186, -0.011627604253590107, 0.025394827127456665, 0.011288538575172424, -0.05415692552924156, 0.020951902493834496, 0.0023676117416471243, 0.005866415798664093, -0.008359715342521667, 0.06486671417951584, 0.03147462010383606, 0.016076376661658287, -0.0013511463766917586, 0.048498041927814484, 0.0378350205719471, 0.01044087577611208, -0.05462460219860077, -0.046767640858888626, 0.01111900620162487, -0.00479660602286458, 0.009932277724146843, -0.005027521401643753, 0.0378350205719471, 0.018473217263817787, 0.009727668948471546, -0.07637155801057816, 0.003989864140748978, 0.053736016154289246, -0.026540635153651237, -0.011399611830711365, -0.016731122508645058, 0.03781163692474365, 0.008137568831443787, -0.03675936535000801, 0.021068820729851723, 0.019864555448293686, 0.04669748619198799, -0.025605281814932823, -0.01497733686119318, 0.01682465896010399, -0.0007062643999233842, 0.021641725674271584, 0.0029463612008839846, 0.016894809901714325, 0.0017143263248726726, 0.038513150066137314, 0.0023734576534479856, 0.015164406970143318, -0.050509050488471985, -0.060189951211214066, -0.04468647763133049, 0.0322696715593338, 0.010826708748936653, 0.020133469253778458, 0.0004326006746850908, -0.022214628756046295, -0.00046256117639131844, 0.06734540313482285, 0.02763967402279377, 0.020986977964639664, 0.012358348816633224, -0.043657589703798294, -0.009411986917257309, 0.026400331407785416, -0.02035561576485634, -0.015503472648561, 0.06935641169548035, 0.021138973534107208, 0.03156815469264984, -0.0421142578125, 0.014509660191833973, 0.023009678348898888, 0.020437458530068398, 0.03488865867257118, -0.058225709944963455, -0.011498993262648582, 0.012510343454778194, 0.019654100760817528, -0.03117063082754612, 0.0035894163884222507, 0.033205024898052216, -0.018028924241662025, 0.02271738089621067, -0.018543368205428123, -0.010382415726780891, 0.008798162452876568, 0.006781307514756918, -0.03117063082754612, -0.012884484604001045, -9.956392023013905e-05, 0.03963557258248329, 0.0057465736754238605, -0.06701802462339401, -0.03357916325330734, 0.03182537853717804, -0.034771740436553955, 0.054998744279146194, 0.036595676094293594, 0.012206354178488255, -0.020823290571570396, -0.06369752436876297, -0.00889169704169035, 0.0023149980697780848, -0.013609383255243301, 0.007079451344907284, 0.013784761540591717, 0.06131237372756004, -0.04962046444416046, -0.021770335733890533, 0.01170944795012474, 0.01587761379778385, 0.026306796818971634, 0.0073483651503920555, -0.011820521205663681, -0.027803361415863037, 0.0003759679675567895, -0.005781649611890316, -0.023617656901478767, -0.053034503012895584, 0.044101882725954056, -0.033205024898052216, 0.054343998432159424, -0.004504308104515076, -0.0023763806093484163, -0.029019320383667946, -0.027873512357473373, -0.030492501333355904, -0.001761093852110207, 0.03229305520653725, -0.007523743901401758, -0.021045437082648277, 0.027195382863283157, -0.05705652013421059, -0.06229449436068535, 0.01558531541377306, 0.006980069912970066, -0.041178904473781586, 0.015257942490279675, -0.04999460652470589, 0.03243335708975792, 0.03788178786635399, -0.013819837011396885, -0.010037504136562347, -0.019385186955332756, -0.01677788980305195, 0.021700184792280197, 0.002136696595698595, 0.0023734576534479856, -0.03909774497151375, -0.014778573997318745, 0.023559197783470154, 0.02738245204091072, -0.005100595764815807, 0.0401032492518425, -0.05471813678741455, -0.017900314182043076, -0.010025812312960625, 0.037390727549791336, -0.01275587361305952, 0.005881030578166246, -0.04241824895143509, -0.001298532704822719, 0.000499098387081176, -0.04019678756594658, 0.02616649493575096, -0.03491204231977463, 0.051912080496549606, 0.02267061360180378, -0.04807713255286217, -0.04707162827253342, -0.01168021745979786, 0.0018780130194500089, 0.03142785280942917, -0.03640860691666603, -0.007833579555153847, -0.049246322363615036, -0.013246933929622173, 0.00020954094361513853, -0.05920783057808876, -0.009300914593040943, 0.02410871721804142, 0.08581861853599548, -0.0016719431150704622, 0.03091340884566307, 0.03096017800271511, -0.011311923153698444, -0.023793036118149757, 0.0014096058439463377, 0.032760731875896454, 0.014930568635463715, 0.013211858458817005, -0.011662679724395275, 0.022600460797548294, -0.05022844299674034, 0.04356405511498451, 0.006038871593773365, 0.007453592494130135, -0.009563982486724854, 0.024833615869283676, 0.049152787774801254, 0.010323956608772278, -0.015445012599229813, 0.014638271182775497, 0.012147894129157066, 0.019560564309358597, -0.012241429649293423, -0.01015442330390215, -0.017584633082151413, 0.03444436565041542, 0.01100793294608593, -0.007991420105099678, 0.006687772460281849, 0.022530309855937958, -0.0025546823162585497, -0.052426524460315704, -0.013469080440700054, -0.00263214111328125, -0.09521891176700592, -0.0042032417841255665, 0.0630427747964859, -0.025745585560798645, -0.0036654137074947357, 0.0007548589492216706, -0.0030603574123233557, 0.02415548637509346, -0.027522755786776543, -0.012510343454778194, 0.043657589703798294, -0.056401774287223816, -0.02990790456533432, 0.027405835688114166, -0.024997303262352943, -0.020951902493834496, 0.026143109425902367, -0.055700257420539856, -0.025652050971984863, 0.0355667881667614, -0.02633018046617508, 0.01635698229074478, -0.029089471325278282, -0.0015009489143267274, -0.022986294701695442, 0.01910458132624626, 0.0289959367364645, -0.03877037391066551, 0.01923319138586521, -0.021957406774163246, -0.037694718688726425, -0.011668525636196136, 0.003598185256123543, -0.007360056973993778, -0.012650646269321442, -0.023442279547452927, 0.05911429598927498, 0.07066590338945389, -0.04267546907067299, -0.02406194992363453, -0.05275389552116394, 0.07347196340560913, 0.02184048667550087, 0.040828149765729904, -0.060938235372304916, 0.017865238711237907, 0.039308201521635056, 0.006202558055520058, 0.02843472547829151, 0.017339102923870087, 0.00959321204572916, -0.033813003450632095, -0.014310897327959538, -0.04389142990112305, 0.05013490840792656, -0.0052233608439564705, -0.022214628756046295, -0.04096845164895058, 0.018519984558224678, -0.06089146435260773, -0.07847610116004944, -0.04777314513921738, -0.0345379002392292, -0.03580062836408615, 0.008406483568251133, 0.01629852131009102, -0.011323614977300167, 0.04513077065348625, 0.04594920575618744, 0.018859051167964935, -0.022705689072608948, 0.009394449181854725, 0.009353527799248695, -0.005416277330368757, 0.03299456834793091, -0.02794366516172886, 0.017058495432138443, -0.001521409722045064, 0.017152031883597374, 0.01081501692533493, 0.015035795979201794, -0.00034893042175099254, -0.015526856295764446, 0.02808396704494953, 0.019958090037107468, -0.01765478402376175, 0.013585999608039856, 0.03388315439224243, -0.035379718989133835, 0.016076376661658287, 0.03521603345870972, 0.025348059833049774, 0.04321329668164253, 0.03741411119699478, 0.03811562433838844, 0.0008067417657002807, 0.005328587722033262, -0.016076376661658287, -0.047936830669641495, 9.855914686340839e-05, -0.04276900738477707, -0.0534554123878479, 0.0009229301358573139, 0.01639205776154995, -0.019502105191349983, -0.03640860691666603, 0.026353564113378525, 0.027826745063066483, -0.008453250862658024, 0.02873871475458145, 0.01669604703783989, 0.018800590187311172, -0.018028924241662025, 0.007155448663979769, -0.001063233008608222, 0.009733514860272408, 0.02150142192840576, -0.01608806848526001, -0.024669930338859558, 0.015141023322939873, -0.0013270317576825619, -0.024038566276431084, -0.014591502957046032, 0.04845127463340759, -0.008996924385428429, -0.01334046944975853, -0.016602512449026108, 0.021992482244968414, 0.00485214265063405, -0.013398928567767143, 0.023909956216812134, 0.06514731794595718, 0.030983561649918556, -0.06463287770748138, -0.03552002087235451, -0.03748426213860512, -0.0014731806004419923, -0.02855164371430874, -0.00891508162021637, -0.03451451659202576, 0.021770335733890533, -0.03965895622968674, -0.026891391724348068, 0.01725725829601288, -0.03832608088850975, -0.014790265820920467, 0.024436092004179955, 0.023313667625188828, -0.01761970855295658, -0.013130014762282372, -0.035332951694726944, -0.020811598747968674, 0.0031392776872962713, 0.009365219622850418, 0.007400978822261095, -0.011563299223780632, -0.010627945885062218, 0.02070637233555317, -0.04910602048039436, 0.04293269291520119, 0.016544051468372345, 0.02986113727092743, 0.00011006836575688794, 0.015024104155600071, 0.05158470571041107, 0.004995368421077728, 0.013130014762282372, 0.026400331407785416, 0.036385223269462585, -0.04232471436262131, -0.0022682305425405502, -0.03544986993074417, 0.03767133504152298, -0.001417644089087844, 0.011914055794477463, -0.04155304655432701, -0.050509050488471985, 0.01961902529001236, -0.015059179626405239, -0.010364877991378307, 0.0005436738138087094, -0.027967048808932304, -0.039565421640872955, -0.004434156697243452, 0.045621830970048904, -0.02986113727092743, -0.0072548300959169865, -0.017105264589190483, -0.05780480057001114, -0.04414865002036095, 0.026096342131495476, -0.04433572292327881, 0.02789689600467682, -0.011949132196605206, 0.010464259423315525, -0.02834118902683258, -0.0016280984273180366, 0.017292333766818047, -0.02864517830312252, -0.047679606825113297, 0.0036507989279925823, -0.015316401608288288, 0.008798162452876568, -0.031287550926208496, -0.023524122312664986, 0.046580567955970764, -0.04316652938723564, 0.04225456342101097, 0.043844662606716156, 0.03944850340485573, 0.02707846276462078, 0.06112530454993248, -0.0007789735100232065, -0.03460805118083954, -0.012136202305555344, 0.021174049004912376, -0.033462245017290115, -0.0029142084531486034, 0.03117063082754612, -0.013223550282418728, 0.013574306853115559, -0.0264704842120409, -0.03409360721707344, -0.0004220048722345382, -0.05537288635969162, -0.09498507529497147, -0.03788178786635399, -0.01808738522231579, 0.009733514860272408, -0.0388171412050724, -0.03430406376719475, 0.05462460219860077, 0.003355578053742647, 0.012896176427602768, 0.040266938507556915, -0.023079829290509224, -0.024576393887400627, -0.007938806898891926, 0.0011348460102453828, 0.012136202305555344, -0.009803666733205318, 0.03898082673549652, 0.04882541671395302, -0.030071591958403587, 0.041272442787885666, 0.07043206691741943, 0.006646850612014532, 0.030983561649918556, -0.010937782004475594, 0.021431270986795425, 0.04478001594543457, 0.03292441740632057, -0.0018823974533006549, 0.025184374302625656, -0.030398964881896973, -0.029370076954364777, -0.016848042607307434, -0.05266036093235016, -0.0027300608344376087, -0.009125535376369953, -0.004828758537769318, 0.007921269163489342, -0.002493299776688218, -0.016146527603268623, -0.002414379268884659, -0.015713926404714584, 0.019817786291241646, -0.010458413511514664, -0.0053841243498027325, -0.028060583397746086, -0.036291688680648804, 0.012978020124137402, -0.002259461674839258, -0.03832608088850975, -0.04585567116737366, -0.009862125851213932, 0.004194472450762987, 0.013469080440700054, -0.028621794655919075, -0.041833654046058655, 0.012592187151312828, 0.012732489965856075, 0.015257942490279675, 0.007237292360514402, -0.005018752068281174, 0.0004738877178169787, -0.005696882959455252, 0.039705727249383926, -0.02241339161992073, 0.016544051468372345, 0.027148613706231117, 0.002927361987531185, -0.009599057957530022, 0.03322840854525566, 0.0015696388436481357, 0.014474584721028805, 0.026189878582954407, 0.008359715342521667, -0.0018940893933176994, 0.009259992279112339, -0.03142785280942917, 0.0026306796353310347, 0.019899630919098854, 0.03343886137008667, 0.00721390824764967, 0.05331510677933693, 0.013001403771340847, -0.010604562237858772, 0.012510343454778194, 0.02254200167953968, -0.007383441086858511, 0.018332915380597115, 0.01301309559494257, 0.01931503415107727, -0.027850128710269928, -0.030328813940286636, 0.001210112706758082, -0.025441596284508705, -0.00978612806648016, -0.008353869430720806, 0.024997303262352943, 0.011510685086250305, 0.002931746421381831, -0.049293093383312225, -0.05944167077541351, 0.00937106553465128, -0.014743498526513577, 0.01137622818350792, 0.01253372710198164, -0.022179553285241127, 0.001747940550558269, 0.014193978160619736, -0.01913965679705143, 0.00669361837208271, 0.0003796216915361583, 0.010575332678854465, -0.015445012599229813, 0.0026409102138131857, -0.019244883209466934, 0.024038566276431084, -0.013854913413524628, 0.011925747618079185, 0.007056067697703838, -0.00806741788983345, -0.00353095680475235, -0.016859734430909157, 0.012615570798516273, -7.86463642725721e-05, -0.0080031119287014, 0.009014462120831013, -0.003753103082999587, 0.0003366904566064477, -0.01809907704591751, -0.029884520918130875, -0.016929885372519493, 0.023570889607071877, -0.009353527799248695, 0.02123250812292099, 0.020238695666193962, 0.039518654346466064, -0.027171999216079712, -0.050555817782878876, -0.016099760308861732, -0.019198115915060043, -0.03713350370526314, -0.03081987425684929, 0.04078138247132301, -0.008926773443818092, 0.020507609471678734, 0.0058956453576684, 0.017549555748701096, 0.0004684071463998407, 0.007102834992110729, 0.021092204377055168, -0.06870166212320328, 0.0047849141992628574, -0.0446397103369236, -0.008020649664103985, 0.032456740736961365, 0.013480772264301777, -0.003729719202965498, 0.0027709826827049255, 0.01730402559041977, 0.022121094167232513, 0.017900314182043076, -0.010049196891486645, 0.031030328944325447, 0.013831528834998608, 0.02965068258345127, -0.010119347833096981, -0.013667842373251915, 0.03364931792020798, 0.01961902529001236, -0.006600082851946354, 0.0177833940833807, -0.008014803752303123, -0.00637793680652976, -0.00043552363058552146, -0.018239378929138184, 0.006658542435616255, -0.032456740736961365, -0.004749838262796402, 0.013831528834998608, -0.009955661371350288, 0.041436128318309784, 0.039121128618717194, 0.05163147300481796, 0.02471669763326645, 0.009511368349194527, -0.005468891002237797, 0.01901104487478733, 0.008938465267419815, -0.006027179304510355, 0.005927798338234425, -0.023266900330781937, -0.01795877330005169, 0.005863492842763662, 0.04520092159509659, 0.02101036161184311, 0.03746087849140167, -0.029393460601568222, -0.025231141597032547, 0.003618646180257201, -0.02885563299059868, -0.0009185456437990069, -0.024389324709773064, 0.007517897989600897, 0.010452567599713802, 0.008663705550134182, -0.00027256764587946236, 0.0015184867661446333, -0.012592187151312828, 0.010464259423315525, -4.373048432171345e-05, -0.05027521029114723, 0.015936072915792465, -0.016929885372519493, -0.01000242866575718, 0.014895493164658546, 0.004074630327522755, 0.004597843624651432, 0.0317552275955677, 0.026049574837088585, 0.00020241619495209306, -0.016193294897675514, -0.0117912907153368, -0.04347052052617073, 0.026984928175807, -0.0045539988204836845, 0.04585567116737366, -0.04615965858101845, -0.02227308787405491, -0.0005151747609488666, -0.0027037542313337326, 0.012942943722009659, 0.03493542596697807, -0.032059215009212494, -0.05976904183626175, -0.007465284317731857, -0.019607333466410637, 0.006641004700213671, -0.006863151211291552, 0.014509660191833973, -0.00595118198543787, -0.021782027557492256, 0.007775119971483946, -0.020542684942483902, -0.025558514520525932, 0.009166457690298557, -0.02611972577869892, -0.04877864941954613, 0.030843257904052734, 0.017584633082151413, 0.009406141005456448, -0.021197432652115822, 0.013960139825940132, -0.008155107498168945, 0.06089146435260773, -0.012744181789457798, -0.0014424893306568265, 0.0044487714767456055, 0.05382955074310303, 0.02511422149837017, -0.047936830669641495, -0.06318308413028717, -0.033813003450632095, -0.04267546907067299, 0.02829442173242569, -0.031287550926208496, 0.012580495327711105, -0.003405268769711256, -0.018040616065263748, -0.030048208311200142, 0.0013832991244271398, -0.029276542365550995, -0.028364572674036026, 0.025231141597032547, 0.00996150728315115, 0.007973882369697094, -0.014135519042611122, -0.019326725974678993, -0.021782027557492256, -0.037554413080215454, 0.02150142192840576, 0.020776523277163506, -0.003200660226866603, 0.007050221785902977, 0.011610066518187523, -0.0028703638818114996, 0.029323309659957886, 0.01757294125854969, 0.019852863624691963, -0.02048422582447529, 0.022471850737929344, -0.032199520617723465, 0.04817066714167595, 0.0044692326337099075, -0.023617656901478767, 0.008348023518919945, 0.0036332609597593546, -0.011019624769687653, 0.051163796335458755, 0.01787693053483963, -0.014416124671697617, -0.00911384355276823, 0.00880400836467743, 0.006044717505574226, 0.0010383877670392394, 0.01618160307407379, 0.0030866642482578754, 0.01795877330005169, 0.012393424287438393, 0.031848762184381485, 0.014848725870251656, 0.004624150227755308, -0.009283375926315784, -0.0058956453576684, -0.023991798982024193, -0.025605281814932823, -0.0017669398803263903, -0.02838795632123947, -0.003440344473347068, 0.025441596284508705, 0.0016909424448385835, -0.023009678348898888, -0.017853546887636185, 0.011083930730819702, -0.0001046791294356808, -0.027101846411824226, 0.004673840943723917, 0.017760010436177254, 0.058833688497543335, -0.03271396458148956, 0.007453592494130135, -0.008827392011880875, 0.01626344583928585, -0.003042819444090128, -0.03131093457341194, 0.007623125333338976, 0.016532359644770622, 0.05574702471494675, 0.005270128138363361, -0.020940210670232773, -0.015713926404714584, -0.008424021303653717, -0.0066819265484809875, 0.005673499312251806, 0.02642371691763401, -0.027967048808932304, 0.019817786291241646, -0.014264130033552647, 0.03893405944108963, 0.005410431418567896, -0.009137227199971676, 0.016240062192082405, 0.008768931962549686, -0.026657553389668465, 0.003688797587528825, 0.010382415726780891, 0.002936130855232477, 0.0031772765796631575, 0.02677447348833084, 0.011931593529880047, 0.012194662354886532, 0.010300572961568832, -0.021302659064531326, 0.014392741024494171, -0.000667535001412034, 0.0007899346528574824, 0.005322741810232401, 0.029370076954364777, -0.017865238711237907, 0.0013043787330389023, 0.014451200142502785, -0.003142200643196702, -0.023874878883361816, -0.002683293307200074, -0.026189878582954407, -0.0056618074886500835, -0.0076172794215381145, -0.026961544528603554, 0.02794366516172886, -0.011288538575172424, 0.018075693398714066, 0.02597942389547825, -0.005351971834897995, 0.002971206558868289, 0.009914739057421684, -0.053034503012895584, 0.016321906819939613, 0.007056067697703838, 0.01168021745979786, 0.008640320971608162, 0.03297118470072746, -0.00045525372843258083, 0.051678240299224854, 0.028130734339356422, 0.010838400572538376, -0.004901833366602659, -5.713507562177256e-05, 0.005027521401643753, -0.03231643885374069, -5.818552017444745e-05, -0.006944994442164898, 0.036993201822042465, 0.05004137381911278, 0.01666097156703472, 0.053689248859882355, -0.001112923608161509, 0.023874878883361816, 0.026891391724348068, -0.028715331107378006, 0.020542684942483902, 0.00980951264500618, 0.03526280075311661, 0.05733712390065193, -0.0001606724108569324, 0.015304709784686565, 0.006962532177567482, 0.053969856351614, -0.014918876811861992, -0.0014059521490707994, 0.025184374302625656, 0.031006945297122, 0.015573623590171337, -0.02436593919992447, 0.010961165651679039, -0.007447746582329273, 0.00584303168579936, 0.018519984558224678, -0.03785840421915054, -0.029674066230654716, -0.008079109713435173, -0.041880421340465546, -0.01709357276558876, 0.010528564453125, -0.03397668898105621, 0.00821941252797842, -0.03390653803944588, -0.01578407734632492, -0.030235279351472855, -0.00658254511654377, 0.027616290375590324, -0.04672086983919144, 0.03839623183012009, 0.011878980323672295, 0.0186602883040905, 0.045762136578559875, 0.04150627925992012, 0.02065960504114628, -0.007342519238591194, -0.0393315851688385, -0.02410871721804142, -0.018239378929138184, 0.0031626615673303604, 0.022074325010180473, -0.012264813296496868, -0.011101468466222286, 0.0421142578125, 0.027452604845166206, 0.00026653899112716317, 0.0423714816570282, 0.012370040640234947, 0.04482678323984146, 0.023009678348898888, 0.007745890412479639, -0.003522187704220414, 0.02131435088813305, 0.006138252560049295, 0.031801994889974594, -0.03940173611044884, 0.01666097156703472, -0.06173328310251236, 0.008967694826424122, 0.01936180330812931, -0.0023734576534479856, -0.005714420694857836, -0.010370723903179169, -0.002098697703331709, -0.000356603239197284, 0.004957369528710842, -0.01495395228266716, 0.0075295898132026196, 0.060751162469387054, -0.01543332077562809, 0.03905097767710686, 0.01725725829601288, -0.03210598602890968, -0.008429867215454578, 0.013258625753223896, -0.030983561649918556, 0.04007986560463905, 0.03152138739824295, 0.03488865867257118, -0.006565007381141186, -0.023301975801587105, 0.04573874920606613, -0.00537243252620101, 0.008377253077924252, 0.014392741024494171, 0.019385186955332756, -0.016602512449026108, 0.015795771032571793, 0.007576357573270798, 0.023594273254275322, -0.01709357276558876, -0.01497733686119318, -0.027709826827049255, 0.04150627925992012, 0.00700929993763566, -0.017198799178004265, -0.008991078473627567, 0.017374178394675255, -0.02049591764807701, -0.011060547083616257, -0.003092510160058737, -0.012790949083864689, 0.00637793680652976, 0.007868655025959015, 0.03313487395644188, 0.01735079474747181, -0.015176098793745041, 0.01731571927666664, 0.003931404557079077, 0.011411303654313087, -0.02228477969765663, -0.02789689600467682, -0.04938662797212601, 0.010908551514148712, 0.018940893933176994, 0.015398245304822922, 0.02163003385066986, 0.03231643885374069, 0.043844662606716156, 0.013445695862174034, 0.006453934125602245, -0.07436054944992065, 0.026540635153651237, -0.024973919615149498, 0.005936567205935717, 0.0011699217138811946, -0.03367270156741142, -0.044055115431547165, 0.00891508162021637, 0.006261017639189959, -0.027125230059027672, 0.07075943797826767, 0.01331708487123251, 0.013048171065747738, 0.0001046791294356808, 0.02728891745209694, -0.03273734822869301, -0.021115589886903763, -0.0011874595656991005, -0.005495197605341673, 0.06280893832445145, 0.02215616963803768, 0.007687430828809738, -0.0350523442029953, 0.009107997640967369, 0.01765478402376175, -0.008453250862658024, 0.003829100402072072, 0.0006452472880482674, -0.008827392011880875, -0.03888729214668274, 0.041132137179374695, -0.004404927138239145, -0.0035104958806186914, -0.002031469251960516, 0.001503871870227158, -0.019291650503873825, 0.003910943865776062, 0.029089471325278282, -0.005217514932155609, 0.007260676007717848, 0.04548152908682823, 0.03474835678935051, -0.0007913961308076978, -0.024623161181807518, -0.005723190028220415, 0.008622783236205578, 0.02611972577869892, 0.0022974603343755007, -0.0012437269324436784, -0.019806094467639923, -0.02450624294579029, 0.032152753323316574, -0.01379645336419344, 0.013375544920563698, 0.014310897327959538, 0.001540409168228507, 0.004971984773874283, 0.0060622552409768105, 0.011738677509129047, 0.013375544920563698, -0.02672770619392395, -0.01543332077562809, 0.025044070556759834, 0.011101468466222286, 0.016427133232355118, 0.016801273450255394, 0.0008089339826256037, -0.004568613599985838, -0.014720113947987556, -0.015573623590171337, 0.021852178499102592, -0.024927152320742607, -0.005439660977572203, 0.008213566616177559, -0.033719468861818314, 0.002681831829249859, -0.007932960987091064, 0.011925747618079185, -0.01122423354536295, 0.022261396050453186, 0.02148973010480404, -0.006015487480908632, 0.026704322546720505, -0.010055042803287506, -0.011089776642620564, 0.032854266464710236, 0.00431723752990365, 0.02450624294579029, 0.0016909424448385835, 0.00025484710931777954, 0.016076376661658287, 0.01926826685667038, 0.01583084650337696, -0.004977830685675144, -0.008453250862658024, 0.027873512357473373, -0.03998633101582527, 0.01364445872604847, -0.02065960504114628, 0.029183005914092064, 0.0115983746945858, 0.009183995425701141, -0.01795877330005169, 0.000183142808964476, 0.015643775463104248, 0.0028148272540420294, 0.030398964881896973, -0.02206263318657875, 0.017841855064034462, -0.009575674310326576, -0.01626344583928585, -0.008874159306287766, -0.014638271182775497, -0.00784527137875557, 0.014486276544630527, 0.011148235760629177, -0.01608806848526001, -0.027826745063066483, 0.006272709462791681, 0.019864555448293686, 0.049246322363615036, -0.0080031119287014, 0.017374178394675255, -0.028972553089261055, -0.026961544528603554, 0.0015842537395656109, 0.008318793959915638, 0.02201586589217186, -0.024623161181807518, 0.03622153773903847, 0.023337051272392273, -0.005764111410826445, -0.0028513644356280565, -0.021746952086687088, 0.0010040428023785353, -0.0013277624966576695, 8.029053424252197e-05, -0.013398928567767143, 0.05214591696858406, -0.005968719720840454, -0.00041067833080887794, 0.0014307975070551038, 0.010926089249551296, -0.002699369564652443, -0.017643092200160027, 0.012872792780399323, -0.04258193448185921, 0.04520092159509659, 0.0009200071217492223, 0.021337734535336494, -0.014895493164658546, -0.009587366133928299, 0.011083930730819702, 0.0022010020911693573, 0.04054754227399826, 0.007909577339887619, 0.0098972013220191, -0.017058495432138443, 0.008008957840502262, 0.0076932767406105995, 0.04007986560463905, -0.018496600911021233, -0.0295103807002306, -0.00928922276943922, -0.0031363547313958406, 0.0436108224093914, -0.004936908837407827, -0.013702917844057083, -0.009903047233819962, 0.02009839378297329, 0.0076932767406105995, -0.017011728137731552, 0.02406194992363453, 0.010125193744897842, 0.002068006433546543, -0.03788178786635399, 0.04368097335100174, 0.008312948048114777, -0.016848042607307434, 0.01442781649529934, -0.014053675346076488, -0.010563640855252743, 0.003200660226866603, 0.04669748619198799, 0.0033263482619076967, 0.02276414819061756, 0.014696730300784111, -0.02471669763326645, 0.012299888767302036, 0.04115552082657814, -0.0028689024038612843, -0.013679534196853638, 0.002284306799992919, 0.0017274796264246106, 0.025488363578915596, -0.05733712390065193, 0.0029785139486193657, 0.0036829516757279634, 0.02241339161992073, -0.01974763534963131, -0.029112854972481728, 0.040220171213150024, 0.026189878582954407, -0.01744432933628559, -0.0048784492537379265, 0.027148613706231117, -0.028107350692152977, -0.02581573650240898, -0.005734881851822138, -0.02476346492767334, 0.035169266164302826, -0.008359715342521667, 0.016204986721277237, 0.005463044624775648, 0.011294384486973286, 0.03841961547732353, 0.017841855064034462, -0.0282476544380188, -0.004299699794501066, 0.02097528614103794, 0.03937835246324539, 0.009195687249302864, 0.027616290375590324, -0.007096989080309868, -0.01316509023308754, 0.02188725583255291, -0.009061230346560478, 0.0320124477148056, -0.0342806801199913, 0.0054893516935408115, -0.01371461059898138, -0.004323083441704512, 0.007079451344907284, -0.009517214260995388, -0.03374285250902176, 0.005515658296644688, 0.011259309016168118, -0.020472534000873566, 0.018975969403982162, -0.03233982250094414, -0.03287765011191368, 0.0051561323925852776, -0.007447746582329273, -0.02337212674319744, 0.010084272362291813, -0.028317805379629135, 0.00031513351132161915, 0.009043692611157894, -0.0016631741309538484, -0.012627262622117996, 0.03463143855333328, -0.024038566276431084, -0.009838742204010487, -0.007932960987091064, 0.022553693503141403, -0.016029607504606247, 0.009569828398525715, 0.054951976984739304, 0.005191207863390446, 0.005474736914038658, -0.009569828398525715, 0.013889988884329796, -0.0019627793226391077, -0.004942754749208689, -0.006810537539422512, 0.01639205776154995, 0.023033061996102333, 0.020460842177271843, -0.006968378089368343, 0.03647875785827637, 0.01913965679705143, 0.006752077955752611, -0.0033263482619076967, -0.003563109552487731, -0.005819648038595915, -0.00880400836467743, -0.014439508318901062, 0.019350111484527588, -0.003259119810536504, -0.017724934965372086, 0.02145465463399887, -0.014685038477182388, -0.028481492772698402, 0.026657553389668465, -0.010043350048363209, 0.009534751996397972, 0.006132406648248434, 0.020566068589687347, -0.014556427486240864, 0.01861352100968361, -0.014918876811861992, -0.001376722357235849, 0.036338455975055695, 0.04620642587542534, 0.05060258507728577, -0.005620885640382767, 0.013889988884329796, -0.0006953032570891082, -0.012218046002089977, 0.02380472794175148, -0.019502105191349983, -0.02105712890625, 0.032807499170303345, -0.028107350692152977, 0.009476292878389359, 0.005290589295327663, 0.017724934965372086, -0.005407508462667465, -0.018157536163926125, -0.008856621570885181, 0.006027179304510355, 0.026914775371551514, -0.018297838047146797, -0.010148577392101288, -0.001004773541353643, 0.022997986525297165, 0.030726339668035507, 0.022997986525297165, 0.016240062192082405, 0.023968415334820747, -0.007897885516285896, 0.010879321955144405, -0.0037267962470650673, -0.046019356697797775, 0.003829100402072072, 0.001449796836823225, -0.03021189570426941, 0.0016836350550875068, 0.0244594756513834, 0.01635698229074478, 0.030188510194420815, 0.006331169046461582, -0.02275245636701584, -0.04821743443608284, 0.02345397137105465, 0.0030018978286534548, 0.024225637316703796, -0.006904072593897581, -0.018905818462371826, 0.007763428147882223, 0.015094255097210407, -0.015293017961084843, 0.016859734430909157, -0.053081270307302475, -0.010803324170410633, -0.001402298454195261, 0.01238173246383667, -0.00654162373393774, 0.042231179773807526, -0.018636904656887054, 0.016450516879558563, 0.00284405704587698, 0.019735943526029587, -0.057009752839803696, -0.036548908799886703, 0.026844624429941177, -0.010575332678854465, -0.016286829486489296, -0.010318110696971416, 0.011738677509129047, 0.02372288517653942, -0.004016171209514141, 0.014112135395407677, 0.012475267983973026, 0.008500018157064915, 0.006021333392709494, -0.01861352100968361, -0.011387920007109642, 0.008581861853599548, 0.004010324832051992, 0.008277872577309608, -0.03297118470072746, -0.006804691627621651, -0.023594273254275322, 0.0033263482619076967, -0.013282009400427341, -0.02005162462592125, -0.0031188169959932566, 0.04286254197359085, -0.011171619407832623, -0.007880346849560738, -0.054390765726566315, 0.0008476634393446147, 0.027967048808932304, -0.01922149956226349, -0.01111900620162487, -0.014135519042611122, -0.026002807542681694, -0.02728891745209694, 0.007400978822261095, -0.015293017961084843, -0.0031217399518936872, 0.0011933055939152837, -0.017689859494566917, -0.001428605173714459, 0.011346998624503613, 0.007050221785902977, -0.021080512553453445, -0.017853546887636185, -0.053736016154289246, 0.019958090037107468, 0.003034050576388836, 0.004174011759459972, 0.017058495432138443, -0.0043815430253744125, -0.014638271182775497, -0.02415548637509346, 0.016637587919831276, -0.033251792192459106, -0.003431575605645776, 0.02537144348025322, -0.029627298936247826, -0.044008348137140274, 0.00810833927243948, -0.023220133036375046, 0.016228370368480682, 0.02324351668357849, -0.004407850094139576, -0.000747551501262933, 0.043096378445625305, 0.007248984184116125, 0.013188473880290985, 0.03846638277173042, -0.012568802572786808, -0.020940210670232773, -0.008622783236205578, 0.012790949083864689, 0.0009178149048238993, -0.014568119309842587, 0.0177833940833807, 0.019607333466410637, 0.01338723674416542, -0.0147551903501153, 0.022658921778202057, -0.014357665553689003, 0.025441596284508705, -0.007494514342397451, -0.009791973978281021, -0.018777206540107727, 0.002884978661313653, -0.02502068690955639, 0.03322840854525566, -0.0014315282460302114, 0.0554664209485054, 0.009569828398525715, 0.009464601054787636, -0.016719430685043335, -0.015351477079093456, 0.009201533161103725, -0.017947081476449966, -0.011972515843808651, 0.027826745063066483, -0.010364877991378307, -0.011586682870984077, -0.02485699951648712, 0.030071591958403587, 0.026517251506447792, 0.015141023322939873, -0.020086700096726418, 0.006512393709272146, 0.018063999712467194, -0.02581573650240898, -0.013562615029513836, -0.024319171905517578, -0.011212541721761227, -0.05219268426299095, 0.0034198835492134094, 0.020110085606575012, -0.016111452132463455, -0.012194662354886532, 0.014708422124385834, -0.015070871450006962, -0.006033025216311216, 0.026540635153651237, 0.0032854266464710236, 0.00954644475132227, 0.00013409159146249294, -0.013749686069786549, -0.012334965169429779, -0.030843257904052734, -0.02410871721804142, 0.005389970261603594, 0.013901680707931519, 0.056962985545396805, -0.021770335733890533, 0.016859734430909157, 0.03397668898105621, -0.012241429649293423, 0.02642371691763401, 0.01712864823639393, -0.047983597964048386, 0.010692251846194267, -0.003042819444090128, 0.022693997249007225, 0.01460319571197033, 0.015936072915792465, 0.001927703619003296, 0.0012269198196008801, -0.021910639479756355, -0.007763428147882223, -0.029837753623723984, 0.002597065409645438, 0.05476490408182144, 0.0047089168801903725, -0.03233982250094414, 0.01111900620162487, -0.0218054112046957, 1.8154431018047035e-05, 0.00852340180426836, -0.004361082334071398, 0.014100443571805954, 0.027125230059027672, 0.016731122508645058, -0.047632839530706406, 0.009172303602099419, 0.01301309559494257, -0.0039050979539752007, -0.020647913217544556, 0.02602619118988514, 0.003653721883893013, 0.011089776642620564, 0.002176156733185053, 0.0219340231269598, -0.019864555448293686, 0.00674623204395175, 0.000853509409353137, 0.006220095790922642]], "input": ["WE SHOES:WeShoes is a store that sells shoes and may also provide related services.", "MEMSI TOURING:Memsi Touring is a service provider that may offer travel-related services, including baggage handling.", "ARTY RIMON:ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.", "SHIN TIK:Shin Tik is a service provider that may offer travel-related services, including baggage handling.", "TREK MARKET:Trek Market is a service provider that may offer travel-related services, including baggage handling.", "KIRYAT ONO:Kiryat Ono is a city in Israel where various stores and services related to baggage are located.", "RAMAT GAN:Ramat Gan is a city in Israel where various stores and services related to baggage are located.", "GEVATAIM:Gevataim is a city in Israel where various stores and services related to baggage are located.", "BAT YAM:Bat Yam is a city in Israel where various stores and services related to baggage are located.", "HOLON:Holon is a city in Israel where various stores and services related to baggage are located.", "PETACH TIKVA:Petach Tikva is a city in Israel where various stores and services related to baggage are located.", "ZIP CODE 7015001:Zip Code 7015001 is the postal code for the mailing address of the Baggage Claims Department at Ben Gurion Airport.", "TEL AVIV:Tel Aviv is a city in Israel where various stores and services related to baggage are located.", "ADDRESS:Address refers to the specific location details required for sending claims or correspondence related to baggage.", "SERVICE PICKUP AND DELIVERY:Service Pickup and Delivery refers to the service provided by various stores to collect and deliver baggage for customers.", "BAVLI NEIGHBORHOOD:Bavli Neighborhood is a specific area in Tel Aviv where baggage-related services are offered."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-75306bc84b78589c64bd36a8196ee34e b/cache/text_embedding/embedding-75306bc84b78589c64bd36a8196ee34e deleted file mode 100644 index 37e828271086f94f0a482f7cfbbe1f3ed981188f..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-75306bc84b78589c64bd36a8196ee34e +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.023610975593328476, -0.010456059128046036, -0.014762920327484608, 0.04651087522506714, -0.03149746358394623, 0.025760367512702942, -0.00458563631400466, 0.014924529008567333, -0.0012484242906793952, 0.012969068251550198, 0.07097837328910828, -0.012508484534919262, 0.0029978344682604074, -0.038430459797382355, 0.04153333976864815, 0.011942855082452297, -0.02889556810259819, 0.017631469294428825, -0.014358899556100368, 0.04053136706352234, 0.023303920403122902, 0.012670093216001987, 0.005850221496075392, 0.03133585304021835, 0.04563819244503975, 0.00890461914241314, -0.010690391063690186, -0.037040628492832184, 0.02298070304095745, -0.0009600544581189752, 0.07731342315673828, -0.029461197555065155, 0.04150101915001869, -0.04059601202607155, -0.008880377747118473, 0.0512944832444191, -0.03881831839680672, 0.019231390208005905, 0.0027271404396742582, -0.01301755104213953, 0.039755649864673615, -0.05245806276798248, 0.022140340879559517, -0.010771194472908974, 0.05459129437804222, 0.052587348967790604, 0.012678173370659351, -0.03852742537856102, 0.009607614949345589, 0.05853453651070595, -0.02437053620815277, 0.019473804160952568, 0.012112543918192387, 0.10271824896335602, 0.001160549814812839, 0.008128899149596691, -0.03788099065423012, 0.038624390959739685, 0.02870163880288601, 0.039497073739767075, 0.005013898480683565, -0.03607098013162613, 0.028459226712584496, -0.018116293475031853, -0.00917127262800932, 0.0390445701777935, -0.03169139102101326, 0.06632405519485474, 0.005595688242465258, 0.018568797037005424, -0.009365202859044075, -0.0035129610914736986, 0.0010837857844308019, -0.02477455697953701, -0.014399302192032337, 0.011247939430177212, 0.031190406531095505, -0.0024564466439187527, -0.003444277448579669, -0.012476162984967232, -0.018229419365525246, -0.01002779696136713, -0.03348524495959282, 0.008549080230295658, 0.01740521751344204, -0.0033493326045572758, -0.12514948844909668, 0.011660040356218815, -0.012169106863439083, -0.006819871254265308, 0.010916642844676971, 0.03526293858885765, -0.00509874289855361, 0.02071818709373474, 0.024031158536672592, -0.0588577538728714, 0.030576296150684357, 0.009769223630428314, -0.027845114469528198, 0.013801351189613342, 0.039949577301740646, -0.0352306142449379, -0.026681534945964813, 0.004937134217470884, 0.018229419365525246, 0.03426096588373184, -0.014560909941792488, 0.03186916187405586, 0.0025231100153177977, 0.033646851778030396, -0.030463170260190964, -0.026455283164978027, -0.004359384533017874, 0.05281360074877739, 0.04011118784546852, -0.035909369587898254, -0.05300753191113472, -0.0015625505475327373, -0.023821067065000534, -0.007195610553026199, 0.01900513842701912, 0.0032422670628875494, -0.029445037245750427, -0.04285852983593941, 0.0003744768036995083, -0.005785577930510044, -0.01189437322318554, 0.029590483754873276, -0.0033614530693739653, -0.011231779120862484, 0.026665374636650085, 0.015336629934608936, 0.013041791506111622, -0.022415075451135635, 0.0037068910896778107, 0.02769966796040535, -0.010916642844676971, 0.003975564613938332, -0.002680678153410554, 0.014803322963416576, 0.007280454970896244, -0.030317721888422966, 0.025210898369550705, -0.002567552262917161, 0.02086363546550274, 0.013445812277495861, -0.0453149750828743, 0.038882963359355927, 0.03626490756869316, 0.05255502834916115, -0.012831700965762138, 0.037040628492832184, -0.009728820994496346, -0.02829761803150177, -0.013865994289517403, -0.022964542731642723, -0.00608051335439086, 0.008637964725494385, -0.04654319956898689, 0.015166941098868847, -0.016241636127233505, 0.006561297923326492, 0.02498464658856392, 0.004145253449678421, 0.034972041845321655, -0.0011221677996218204, -0.025663401931524277, -0.03794563561677933, -0.07589127123355865, -0.05501147359609604, -0.02976825274527073, 0.01761530712246895, -0.021800963208079338, 0.024419018998742104, -0.0365234799683094, 0.005898703821003437, 0.030721742659807205, -0.022431235760450363, -0.04046672582626343, -0.044862471520900726, 0.057888101786375046, 0.07589127123355865, 0.04398978501558304, -0.027618862688541412, -0.02816833183169365, 0.013631662353873253, -0.0686512142419815, 0.07770128548145294, -0.0006524936179630458, -0.004262419417500496, -0.01471443846821785, 0.009615695104002953, 0.03620026633143425, 0.04541194066405296, 0.013962958939373493, -0.020298006013035774, -0.009454087354242802, 0.03243479132652283, -0.006452212575823069, -0.039691004902124405, -0.01767995022237301, 0.03639419376850128, -0.02622903138399124, 0.005939105991274118, -0.044216036796569824, 0.029251107946038246, -0.031465139240026474, 0.049581434577703476, 0.01498109195381403, -0.009397524408996105, 0.0434403195977211, -0.020427292212843895, 0.01571640931069851, 0.06593620032072067, -0.04259995371103287, -0.007934968918561935, -0.013575099408626556, 0.01740521751344204, 0.012985228560864925, 0.017486020922660828, -0.04179191216826439, 0.009664177894592285, 0.06396457552909851, 0.043278709053993225, -0.03141665831208229, 0.04702802374958992, -0.026083583012223244, -0.005652251187711954, 0.05132680386304855, -0.02810368873178959, -0.0036200264003127813, 0.02910565957427025, 0.02802288345992565, -0.050777334719896317, 0.012775138020515442, 0.0184071883559227, -0.01759914681315422, -0.010738872922956944, -0.01640324480831623, -0.024289730936288834, 0.02364329807460308, -0.014076084829866886, -0.004217977169901133, -0.03878599777817726, -0.013995281420648098, -0.0009337930823676288, 0.03878599777817726, -0.005813859403133392, -0.0059552667662501335, 0.05106823146343231, 0.034034714102745056, -0.011563075706362724, -0.039173856377601624, -0.0075834705494344234, -0.026422960683703423, 0.0007454184233210981, 0.02504928968846798, 0.004735123831778765, -0.012556967325508595, -0.022027214989066124, -0.040692977607250214, -0.029671289026737213, -0.00567649258300662, -0.04163030534982681, -0.051973238587379456, 0.03665276989340782, 0.09812857210636139, -0.04670480638742447, 0.021817123517394066, 0.026212871074676514, -0.013680145144462585, 0.036555804312229156, 0.003587704850360751, 0.0016574953915551305, -0.04508872330188751, 0.023465529084205627, 0.015207343734800816, 0.057758815586566925, -0.05843757092952728, 0.07737806439399719, -0.04331102967262268, -0.050841979682445526, -0.01574065163731575, -0.009777303785085678, -0.008839975111186504, 0.04137173295021057, -0.020847473293542862, -0.014350819401443005, 0.008524838835000992, 0.02325543761253357, -0.0016898170579224825, -0.04159798473119736, 0.03665276989340782, -0.02357865497469902, -0.009462167508900166, 0.01953844726085663, 0.009979314170777798, 0.014181130565702915, 0.04311710223555565, -0.015069976449012756, 0.026325996965169907, 0.03817188739776611, -0.015336629934608936, 0.00584618141874671, 0.013041791506111622, 0.0014655855484306812, -0.0051876273937523365, 0.004123032558709383, -0.043278709053993225, -0.023934192955493927, -0.005001777783036232, 0.04741588234901428, -0.008686447516083717, -0.0010484340600669384, -0.024532143026590347, -0.012096383608877659, 0.022948382422327995, 0.030851028859615326, 0.013591260649263859, 0.003216005628928542, 0.011296422220766544, -0.010948964394629002, 0.011449949815869331, -0.05708006024360657, 3.314233254059218e-05, -0.02855619043111801, 0.052910566329956055, -0.016791105270385742, 0.012476162984967232, -0.001598912407644093, -0.03707294911146164, 0.0045533147640526295, -0.01232263445854187, -0.08429490029811859, 0.020621221512556076, 0.012298393994569778, -0.04790070652961731, 0.00873493030667305, 0.009664177894592285, -0.02332008071243763, -0.0218656063079834, -0.02769966796040535, -0.000650473521091044, 0.030382364988327026, -0.02430589310824871, -0.030705582350492477, 0.026212871074676514, -0.0134538933634758, -0.016322441399097443, 0.02504928968846798, -0.020637383684515953, 0.004981576465070248, 0.021671677008271217, -0.018019327893853188, 0.01009244006127119, -0.03561847656965256, 0.007749119307845831, -0.040434401482343674, -0.013090274296700954, 0.05307217314839363, -0.030317721888422966, 0.0119590163230896, -0.00242614489980042, 0.018956657499074936, -0.048062317073345184, 0.03439025208353996, -0.03474579006433487, -0.024661431089043617, 0.0234493687748909, 0.031529784202575684, 0.049064286053180695, 0.010165163315832615, -0.014076084829866886, 0.010173244401812553, 0.005167426075786352, 0.035780083388090134, 0.02795824036002159, 0.010633828118443489, 0.006714825984090567, -0.02364329807460308, -0.015764892101287842, -0.07543876767158508, 0.028475387021899223, 0.0011686302023008466, 0.012702414765954018, -0.0036563884932547808, 0.013009469956159592, 0.004779566079378128, -0.04292317107319832, -0.01481140311807394, 0.078670933842659, 0.004626038484275341, 0.005720934830605984, 0.007009760942310095, 0.024693751707673073, -0.04583211988210678, 0.017825398594141006, 0.02923494577407837, 0.0011706503573805094, 0.023950353264808655, -0.02323927730321884, -0.03687902167439461, -0.06936229020357132, -0.010843918658792973, -0.01979701966047287, -0.0058219400234520435, 0.001372660743072629, 0.043214067816734314, 0.050712693482637405, -0.03342059999704361, 0.031982287764549255, -0.01032677199691534, 0.06302724778652191, 0.033582210540771484, 0.03442257270216942, -0.014997252263128757, -0.006116874981671572, -0.018423348665237427, 0.013066032901406288, 0.006888554897159338, 0.007025922182947397, -0.0204596146941185, -0.02225346677005291, -0.004189695697277784, -0.012306474149227142, 0.02716635912656784, 0.02178480289876461, -0.02797440066933632, 0.024144284427165985, -0.04411907121539116, -0.0036664889194071293, 0.022043375298380852, -0.03149746358394623, 0.05733863264322281, 0.0002967027830891311, -0.0248553603887558, -0.06082937493920326, 0.013502375222742558, 0.025534115731716156, -0.03387310355901718, -0.032968100160360336, -0.013938718475401402, 0.026293674483895302, 0.006488574203103781, -0.022269627079367638, 0.0032564077991992235, -0.026406800374388695, -0.020976761355996132, -0.0294288769364357, 0.010649988427758217, -0.007971330545842648, -0.013025631196796894, 0.02325543761253357, 0.03687902167439461, -0.024742234498262405, 0.023303920403122902, 0.012314554303884506, -0.01334884762763977, 0.0023635218385607004, 0.018100133165717125, 0.03872135654091835, -0.012896344065666199, -0.011223698034882545, 0.028507709503173828, 0.0015605303924530745, 0.028976373374462128, 0.0074663045816123486, 0.010367173701524734, -0.01618507318198681, -0.03233782574534416, -0.004807847552001476, 0.04056369140744209, 0.03461650386452675, 0.0029998545069247484, -0.017970845103263855, -0.0022140340879559517, -0.027085555717349052, -0.02146158553659916, -0.04418371617794037, -0.05106823146343231, -0.005252270493656397, 0.007805682253092527, -0.05358932167291641, -0.013130676932632923, 0.032046932727098465, 0.07059051841497421, 0.051585376262664795, 0.08817350119352341, -0.006597660016268492, -0.03794563561677933, -0.017178965732455254, -0.0007625892758369446, 0.008379391394555569, -0.02178480289876461, -0.017049677670001984, 0.0060885935090482235, 0.04011118784546852, -0.003377614077180624, 0.012209509499371052, -0.02464526891708374, 0.0049654156900942326, -0.012783218175172806, -0.01919906958937645, -0.03101263754069805, 0.02152622863650322, 0.001088836113922298, -0.0012958967126905918, -0.014884126372635365, 0.029202625155448914, 0.0005257320590317249, -0.002484728116542101, 0.007240052800625563, -0.044345322996377945, -0.021639354526996613, -0.007615792565047741, -0.03626490756869316, 0.010278289206326008, 0.03188532218337059, -0.03710527345538139, 0.015918420627713203, 0.019845502451062202, 0.06871586292982101, -0.040822263807058334, -0.006391609087586403, -0.0008216773276217282, 0.001063584815710783, 0.007959210313856602, -0.08953101187944412, 0.014835644513368607, -0.008250105194747448, 0.004698762204498053, -0.031174246221780777, -0.028216814622282982, 0.025679562240839005, 0.04722195118665695, 0.0009166222298517823, 0.006516855675727129, 0.004054348915815353, 0.0007989511359483004, -0.01012476161122322, -0.012201428413391113, -0.021477745845913887, 0.011967096477746964, -0.0053209541365504265, -0.0005509834154509008, -0.006266362965106964, 0.013760948553681374, 0.007167329080402851, 0.012960988096892834, 0.013833672739565372, 0.009017745032906532, -0.03275800868868828, 0.014189210720360279, 0.002747341524809599, 0.048320889472961426, -0.03910921514034271, 0.026422960683703423, -0.02385338954627514, 0.004621997941285372, -0.008985422551631927, -0.006468373350799084, 0.015772972255945206, -0.03248327225446701, -0.045799799263477325, -0.028750121593475342, 0.007918807677924633, 0.0005019958480261266, 0.010553023777902126, -0.0003580634365789592, -0.022415075451135635, -0.04618765786290169, -0.006452212575823069, 0.003213985590264201, 0.003852338530123234, 0.025760367512702942, 0.035715438425540924, 0.030269239097833633, 0.01022980734705925, 0.03143281862139702, -0.032321665436029434, -0.01372054684907198, -0.036555804312229156, -0.00947024766355753, -0.0008474336354993284, 0.0015170981641858816, 0.016152752563357353, 0.02855619043111801, -0.0016766863409429789, -0.03865671157836914, -0.02968744933605194, -0.0006095663993619382, -0.024031158536672592, 0.008403632789850235, 0.019780859351158142, -0.018439510837197304, -0.02936423197388649, 0.011983257718384266, 0.011134813539683819, 0.021671677008271217, -0.014447784051299095, 0.002892788965255022, -0.01971621625125408, -0.006468373350799084, 0.0015029574278742075, -0.002925110748037696, 0.016581013798713684, -0.02079899236559868, -0.027344128116965294, 0.033646851778030396, -0.036232586950063705, 0.02823297493159771, -0.0007055213209241629, 0.02298070304095745, -0.01348621491342783, -0.008549080230295658, -0.0016918372130021453, -0.04111315682530403, -0.0030160152819007635, -0.025954296812415123, -0.03413167968392372, -0.009971234016120434, 0.01774459332227707, -0.01189437322318554, 0.008629884570837021, 0.016985034570097923, 0.03694366291165352, 0.0008868256700225174, -0.03361453115940094, 0.0036685089580714703, -0.0055593266151845455, 0.027279485017061234, -0.014407382346689701, -0.021574711427092552, -0.016774944961071014, -0.009946992620825768, -0.015659846365451813, -0.007425902411341667, -0.037493132054805756, 0.035909369587898254, -0.007211771328002214, 0.020362649112939835, -0.01633860170841217, -0.008880377747118473, -0.011118653230369091, 0.03691134229302406, 0.024225087836384773, 0.018229419365525246, 0.020281845703721046, -0.008775332011282444, -0.005349235609173775, 0.015126539394259453, -0.0075794304721057415, 0.007393580861389637, -0.0006817851099185646, 0.004411907400935888, -0.030463170260190964, -0.01612043008208275, 0.020766669884324074, -0.023530172184109688, 0.009397524408996105, 0.027651185169816017, 0.03506900742650032, 0.008718769066035748, -0.011449949815869331, -0.0070784445852041245, -0.03691134229302406, -0.006221920717507601, -0.014827564358711243, 0.021041404455900192, 0.0010373234981670976, 0.009195514023303986, 0.015764892101287842, 0.03820420801639557, 0.01965157315135002, 0.012112543918192387, -0.00407859031111002, 0.02278677374124527, -0.010609586723148823, -0.02697242982685566, 0.015457835979759693, 0.0011110572377219796, 0.03481043502688408, -0.005632050335407257, -0.01481140311807394, 0.007227932568639517, -0.0025736126117408276, 0.028055205941200256, 0.0358770489692688, 0.019166747108101845, -0.009017745032906532, -0.03416400030255318, 0.018568797037005424, 0.03794563561677933, -0.001714058336801827, 0.0039412230253219604, -0.029041016474366188, 0.002644316293299198, -0.006464333273470402, 0.0358770489692688, -0.096964992582798, -0.006678463891148567, -0.014528588391840458, -0.02616438828408718, -0.01971621625125408, -0.022221144288778305, -0.02955816313624382, -0.011748924851417542, 0.0019898025784641504, 0.033452924340963364, 0.004710882902145386, 0.015724489465355873, -0.004925013519823551, -0.029412714764475822, -0.011765086092054844, -0.009866188280284405, 0.0019625311251729727, -0.014690197072923183, -0.0043351431377232075, 0.02404731884598732, 0.015570961870253086, 0.016128510236740112, -0.015772972255945206, -0.031465139240026474, -0.01761530712246895, 0.0015999224269762635, 0.01012476161122322, -0.014924529008567333, -0.01767995022237301, -0.024144284427165985, 0.03923850134015083, 0.0038139563985168934, 0.011829729191958904, 0.02024952322244644, -0.03946475312113762, -0.011021687649190426, 0.044216036796569824, -0.030236918479204178, 0.030123792588710785, 0.0013049872359260917, -0.020847473293542862, 0.032127734273672104, -0.04899964481592178, 0.005769417155534029, -0.007462264504283667, 0.016031546518206596, 0.033452924340963364, 0.007199651096016169, 0.023562494665384293, -0.015587123110890388, 0.04883803799748421, -0.036426518112421036, 0.015554801560938358, 0.0008615743718110025, 0.06380296498537064, 0.02239891327917576, -0.043084777891635895, -0.017486020922660828, -0.0322408601641655, -0.032111573964357376, -0.016282038763165474, -0.002256456296890974, 0.01913442648947239, 0.01667797937989235, 0.03246711194515228, 0.013736708089709282, -0.0014362939400598407, -0.05905168130993843, -0.008646045811474323, -0.005070461425930262, -0.004767445847392082, 0.012985228560864925, -0.008379391394555569, -0.01132066361606121, 0.015708329156041145, 0.0018988978117704391, -0.00594718661159277, -0.017582986503839493, -0.01035909354686737, -0.010108600370585918, -0.014181130565702915, 0.01039949618279934, -0.028653156012296677, -0.006646142341196537, 0.005276511888951063, -0.014649794436991215, 0.0020382849033921957, -0.0067067453637719154, -0.012080222368240356, -0.019118264317512512, -0.02338472567498684, 0.03096415475010872, -0.02312615141272545, 0.010318691842257977, 0.019942468032240868, 0.011716603301465511, -0.0003194289456587285, -0.02584117092192173, -0.08254953473806381, 0.010803516954183578, 0.034842755645513535, -0.008807653561234474, -0.045541226863861084, 0.01401952188462019, -0.006379488855600357, 0.01161963865160942, 0.0075794304721057415, -0.0340023934841156, -0.015175022184848785, 0.050841979682445526, -0.013324606232345104, -0.02503312937915325, 0.002466547070071101, 0.014989172108471394, -0.004496751818805933, 0.042341381311416626, -0.018617279827594757, -0.027053233236074448, 0.0035695238038897514, -0.01727592945098877, -0.0029715730343014, 0.03542454540729523, 0.004642199259251356, 0.030511651188135147, -0.02524322085082531, -0.01900513842701912, 0.012637770734727383, 0.00397758511826396, -0.003106920048594475, 0.014964930713176727, -0.006787549704313278, 0.03632955253124237, 0.0009393484215252101, -0.045541226863861084, -0.02929958887398243, -0.010617666877806187, -0.0010454038856551051, 0.004727043677121401, -0.0002643811167217791, -0.01338925026357174, -0.012266071513295174, 0.02039497159421444, -0.014989172108471394, -0.036038655787706375, 0.032111573964357376, 0.04489479213953018, 0.03157826513051987, -0.0029634926468133926, -0.005664371885359287, -0.018568797037005424, 0.010116681456565857, -0.013235721737146378, -0.01973237656056881, 0.02994602359831333, 0.0023433207534253597, -0.007324897218495607, -0.02504928968846798, 0.014132647775113583, 0.0006757248193025589, 0.030236918479204178, 0.004165454767644405, -0.031238889321684837, 0.025485632941126823, -0.007195610553026199, 0.0038866803515702486, 0.014593231491744518, -0.012169106863439083, 0.04822392389178276, 0.02962280623614788, 0.002111008856445551, -0.04457157477736473, 0.011603477410972118, 0.009155111387372017, -0.023497849702835083, -0.01571640931069851, -0.015368951484560966, 0.0016706261085346341, -0.0015069976216182113, 0.03720223531126976, 0.011070170439779758, 0.0019574807956814766, 0.0204596146941185, -0.007260254118591547, -0.0014453844632953405, -0.020475775003433228, -0.000274481630185619, 0.009688419289886951, -0.025517955422401428, 0.026148227974772453, 0.007567309774458408, 0.005421959329396486, 0.011781247332692146, 0.030527813360095024, -0.03448721766471863, 0.017825398594141006, 0.005644170567393303, 0.0018746565328910947, -0.005353275686502457, 0.00414929399266839, 0.008476356975734234, -0.0016918372130021453, 0.013760948553681374, -0.0553993359208107, -0.01477908156812191, 0.030737902969121933, -0.0075753903947770596, 0.014552829787135124, -0.00021299472427926958, -0.03175603598356247, 0.001128228148445487, 0.009542971849441528, 0.01932835578918457, 0.04392514377832413, 0.016920391470193863, 0.013033711351454258, 0.030172275379300117, 0.009648016653954983, -0.029396554455161095, 0.005611849017441273, 0.029186462983489037, 0.0038583988789469004, -0.0037998156622052193, 0.00030831838375888765, -0.012015579268336296, -0.006464333273470402, 0.004177574999630451, 0.007328937761485577, -0.0014423542888835073, 0.02364329807460308, 0.031174246221780777, -0.011490351520478725, 0.009187432937324047, 0.050583407282829285, -0.009373283013701439, 0.014463945291936398, 0.0012554946588352323, 0.010003555566072464, 0.006609780713915825, 0.0029998545069247484, -0.0075996313244104385, -0.053363069891929626, -0.017582986503839493, -0.04896732419729233, 0.021736320108175278, -0.01321956142783165, -0.012621610425412655, -0.005761337000876665, 0.020879795774817467, 0.0014837664784863591, -0.01939299888908863, -0.028798604384064674, 0.00611283490434289, -0.020702026784420013, 0.04609069600701332, -0.017356734722852707, 0.00930055882781744, -0.008476356975734234, 0.04770677909255028, 0.021364619955420494, 0.03180451691150665, 0.012354956939816475, 0.004609877709299326, -0.0032927696593105793, 0.021768640726804733, 0.001755470409989357, 0.01304987259209156, 0.024095801636576653, 0.025986619293689728, 0.001825164072215557, 0.01819709688425064, -0.001430233707651496, -0.026261353865265846, 0.007862244732677937, -0.0024281651712954044, 0.015772972255945206, 0.021962571889162064, -0.02319079451262951, 0.012613530270755291, 0.008815734647214413, 0.006294644437730312, 0.028798604384064674, -0.0081490995362401, 0.02537250705063343, -0.012734736315906048, 0.015441675670444965, 0.01308219414204359, 0.013276124373078346, 0.01614467240869999, 0.0026402759831398726, 0.06432011723518372, -0.04760981351137161, -0.01351853646337986, 0.026293674483895302, -0.012629690580070019, 0.01614467240869999, -0.01361550111323595, -0.004492711275815964, 0.0025736126117408276, 0.009284398518502712, 0.02684314362704754, 0.00665826303884387, 0.0006312825134955347, 0.011676201596856117, -0.015061896294355392, 0.022883739322423935, 0.0184071883559227, -0.000567649258300662, 0.00682795187458396, -0.03312970697879791, -0.02278677374124527, -0.05135912448167801, 0.014520508237183094, 0.018762726336717606, -0.0035513429902493954, -0.04166262596845627, -0.01900513842701912, 0.010472219437360764, -0.016265878453850746, -0.045605868101119995, -0.039949577301740646, 0.01834254525601864, 0.001340339076705277, -0.004840169567614794, 0.013154917396605015, 0.008541000075638294, 0.00785012450069189, 0.014463945291936398, 0.014366980642080307, 0.024758394807577133, 0.04046672582626343, 0.0207828301936388, 0.0038220370188355446, -0.010108600370585918, 0.009397524408996105, -0.007995571941137314, -0.009252076968550682, 0.006985520012676716, 0.004787646699696779, 0.023077668622136116, -0.02193024940788746, -0.007979410700500011, 0.030511651188135147, -0.00509874289855361, 0.004533113446086645, 0.03243479132652283, 0.020007111132144928, -0.003314990783110261, 0.040951550006866455, 0.0031129803974181414, 0.013066032901406288, 0.014528588391840458, 0.04049904644489288, -0.0007524887914769351, -0.03435793146491051, 0.011546914465725422, 0.0064602927304804325, 0.011377226561307907, 0.007126927375793457, -0.009518730454146862, 0.0134538933634758, 0.02744109369814396, -0.023029185831546783, -0.013704385608434677, 0.03322667255997658, -0.0303662046790123, 0.023934192955493927, -0.013736708089709282, -0.025420989841222763, 0.009122789837419987, -0.0213969424366951, 0.02996218390762806, 0.039884936064481735, -0.03458418324589729, 0.052587348967790604, 0.027715828269720078, -0.006480494048446417, 0.005026018712669611, -0.0023655418772250414, -0.004238178487867117, -0.011870131827890873, -0.017227446660399437, 0.030204595997929573, -0.038559745997190475, -0.021962571889162064, -0.029897540807724, -0.03220853954553604, 0.0011908513261005282, 0.012823620811104774, -0.02622903138399124, -0.0020847474224865437, -0.018681922927498817, 0.023691780865192413, -0.0009645997197367251, -0.03041468746960163, -0.0026039141230285168, -0.030123792588710785, -0.02319079451262951, 0.054914508014917374, 0.013672064058482647, 0.04508872330188751, 0.016694139689207077, -0.0009034915710799396, 0.023013025522232056, 0.017776915803551674, 0.0074663045816123486, -0.010601506568491459, -0.0037089111283421516, 0.007518827449530363, -0.007761240005493164, -0.021203013136982918, 0.013558938167989254, -0.0009449037024751306, -0.013793271034955978, 0.036038655787706375, 0.03891528397798538, -0.008718769066035748, -0.004137173295021057, -0.023158473894000053, -0.049387503415346146, -0.0031109603587538004, -0.004832088947296143, 0.015861857682466507, -0.04014350846409798, -0.006597660016268492, 0.013728627003729343, 0.005167426075786352, -0.017114322632551193, 0.01687190867960453, -0.04961375519633293, 0.055560942739248276, 0.018552636727690697, -0.029784414917230606, 0.013300364837050438, 0.0204596146941185, -0.026940107345581055, -0.015861857682466507, -0.03056013397872448, 0.02411196194589138, 0.00454927422106266, -0.013106435537338257, 0.00492905406281352, 0.0328872948884964, -0.0050583407282829285, 0.006957238540053368, -0.0035957852378487587, 0.00870260875672102, -0.025291703641414642, -0.04518568888306618, 0.1410517543554306, -0.02159087173640728, -0.005850221496075392, 0.012306474149227142, 0.01052878238260746, 0.0045694755390286446, -0.008880377747118473, -0.001995862927287817, -0.023336242884397507, 0.024419018998742104, -0.03813956677913666, -0.017857719212770462, -0.012573127634823322, 0.020023271441459656, 0.004306861665099859, -0.027392610907554626, 0.0019574807956814766, -0.007930928841233253, 0.02071818709373474, -0.014722518622875214, 0.007417822256684303, -0.0248553603887558, -0.024823039770126343, -0.032984260469675064, 0.008056174963712692, -0.03671741113066673, -0.022495878860354424, 0.021962571889162064, -0.0043351431377232075, 0.008371311239898205, 0.027748148888349533, 0.0013969020219519734, -0.026261353865265846, -0.029412714764475822, -0.028863247483968735, -0.00791072752326727, 0.0013383189216256142, 0.00785012450069189, 0.013057952746748924, -0.029380394145846367, -0.02105756476521492, -0.019473804160952568, -0.039755649864673615, -0.00022827176144346595, 0.015789132565259933, 0.013995281420648098, 0.01618507318198681, -0.033452924340963364, 0.03397006914019585, -0.005603768862783909, 0.007648114114999771, 0.029881378635764122, 0.024532143026590347, 0.016459807753562927, -0.02013639733195305, -0.027667345479130745, -0.009219755418598652, -0.02285141684114933, 0.03159442916512489, 0.01761530712246895, -0.016282038763165474, 0.021041404455900192, 0.014932609163224697, -0.009809625335037708, -0.004347263835370541, -0.04272923991084099, -0.003650328144431114, -0.000539872795343399, 0.012783218175172806, -0.03694366291165352, -0.004165454767644405, 0.017502181231975555, 0.002181712305173278, -0.019296033307909966, 0.013405410572886467, 0.014657875522971153, -0.00917127262800932, 0.02669769525527954, -0.01481140311807394, 0.0007999612134881318, 0.014690197072923183, -0.015053815208375454, 0.0005893653724342585, -0.013437732122838497, -0.03143281862139702, 0.0010969165014103055, -0.00020743944332934916, -0.035715438425540924, 0.014205371960997581, 0.008112737908959389, -0.0013676104135811329, 0.0358770489692688, -0.004634118638932705, -0.0027271404396742582, -0.007442063186317682, 0.017437538132071495, -0.02264132723212242, -0.043149422854185104, 0.011668121442198753, 0.0014635653933510184, -0.0074461037293076515, 0.003545282641425729, -0.025889653712511063, -0.0031796437688171864, 0.0067229061387479305, -0.03972332552075386, 0.017486020922660828, -0.03228934481739998, -0.006747147534042597, -0.022770613431930542, -0.013494295068085194, 0.0085005983710289, 0.014625553973019123, -0.011078250594437122, -0.001277715782634914, -0.0024463459849357605, 0.04324638843536377, 0.004565434996038675, -0.016411324962973595, -0.041888877749443054, 0.02684314362704754, 0.025065451860427856, 0.004123032558709383, 0.020039431750774384, 0.00428262073546648, 0.01873040571808815, -0.0012696353951469064, 0.018374865874648094, 0.00795517023652792, 0.0015676007606089115, 0.009381363168358803, 0.0068360320292413235, -0.006274443119764328, -0.0003638712514657527, -0.007264294195920229, 0.03227318450808525, -0.00903390534222126, -0.026067422702908516, 0.04815928265452385, -0.01960309036076069, 0.007894566282629967, -0.025016969069838524, -0.004916933365166187, 0.020168719813227654, -0.00820970255881548, 0.024402856826782227, -0.01637900434434414, -0.016330521553754807, -0.031659070402383804, 0.010811597108840942, -0.01734057255089283, -0.014375060796737671, -0.018019327893853188, -0.020104074850678444, 0.016023466363549232, 0.009575293399393559, 0.019425321370363235, 0.019344516098499298, 0.02205953560769558, -0.016839588060975075, -0.029849058017134666, -0.03089951165020466, -0.04631694778800011, -0.014302336610853672, 0.012112543918192387, 3.200602441211231e-05, -0.011716603301465511, -0.006419890560209751, 0.022237306460738182, 0.015336629934608936, -0.007361259311437607, -0.017647629603743553, -0.005894663743674755, -0.01571640931069851, 0.027263324707746506, -0.0055835675448179245, -0.011191376484930515, -0.013090274296700954, -0.03149746358394623, -0.016540613025426865, -0.0020221241284161806, -0.019473804160952568, 0.02432205341756344, 0.011377226561307907, 0.009260157123208046, 0.04405442997813225, 0.01477908156812191, -0.022802934050559998, 0.01612043008208275, 0.01866576075553894, 0.03102879785001278, -0.018568797037005424, 0.006302724592387676, -0.009696499444544315, -0.005038139410316944, -0.003409935627132654, -0.006763308309018612, 0.009243995882570744, -0.007090565282851458, -0.010035877116024494, -0.011902453377842903, -0.010779275558888912, 0.029073337092995644, -0.006807750556617975, 0.01454474963247776, -0.028087526559829712, -0.019780859351158142, -0.008581401780247688, -0.03409935534000397, -0.020831312984228134, 0.046931058168411255, 0.030980316922068596, -0.007179449778050184, 0.017243608832359314, 0.04146869480609894, 0.031109603121876717, 0.019085943698883057, 0.012670093216001987, -0.005926985293626785, 0.008132939226925373, -0.03028539940714836, 0.004613917786628008, 0.04098387062549591, -0.02750573679804802, 0.0033533726818859577, 0.004017986822873354, 0.025954296812415123, 0.015918420627713203, 0.026212871074676514, -0.011490351520478725, 0.014092246070504189, -0.03175603598356247, 0.0035937651991844177, 0.00020478805527091026, -0.012379197403788567, -0.050260189920663834, -0.005567406769841909, -0.0017746614757925272, -0.011045929044485092, -0.005898703821003437, 0.021170690655708313, -0.05349235609173775, -0.008169300854206085, -0.027085555717349052, -0.03075406514108181, -0.005652251187711954, 0.032919615507125854, -0.03426096588373184, 0.010205565951764584, 0.01860111765563488, -0.005494683049619198, -0.030915671959519386, -0.029315751045942307, -0.006807750556617975, -0.0031756036914885044, -0.022964542731642723, -0.0020352548453956842, -0.000641383056063205, 0.026600729674100876, -0.025275541469454765, 0.02146158553659916, -0.007361259311437607, 0.019085943698883057, -0.0006232021260075271, 0.01584569551050663, 0.00781780295073986, -0.027117876335978508, 0.026730017736554146, 0.000710571592207998, -0.017292091622948647, -0.003149342257529497, 0.01666181907057762, -0.010043957270681858, 0.00012152188719483092, 0.003884660080075264, 0.022883739322423935, -0.021542388945817947, -0.01338925026357174, 0.013760948553681374, -0.016492130234837532, -0.005284592043608427, -0.011401467025279999, -0.039820291101932526, -0.0039190021343529224, -0.009017745032906532, -0.005118943750858307, -0.03542454540729523, 0.010860079899430275, 0.01642748713493347, -0.011546914465725422, 0.004694721661508083, 0.0053411549888551235, -0.015587123110890388, -0.005890623666346073, 0.028346100822091103, 0.007543068844825029, 0.0374608114361763, -0.05097126588225365, -0.019296033307909966, 0.011094411835074425, -0.0124276801943779, 0.029655128717422485, 0.012888263911008835, -0.020475775003433228, -0.025938136503100395, -0.015368951484560966, 0.0037715344224125147, 0.042535312473773956, -0.006735026836395264, -0.032774168998003006, 0.013938718475401402, -0.0049654156900942326, -0.026616891846060753, -0.004904812667518854, -0.003038236638531089, -0.017356734722852707, -0.02317463420331478, 0.0022019133903086185, 0.02470991387963295, 0.01966773346066475, 0.005611849017441273, 0.019813179969787598, -0.008444035425782204, -0.021235333755612373, 0.12495555728673935, -0.0030927793122828007, 0.02338472567498684, 0.024144284427165985, 0.022334270179271698, 0.008444035425782204, -0.0022867578081786633, -0.0243866965174675, 0.0003282669058535248, 0.027812791988253593, 0.02590581402182579, -0.01674262247979641, -0.03455185890197754, -0.005272471811622381, -0.006739067379385233, -0.01035909354686737, -0.01706583984196186, 0.014447784051299095, 0.04153333976864815, -0.005482562351971865, 0.013558938167989254, 0.011280260980129242, -0.004860370419919491, -0.0034685186110436916, -0.027748148888349533, -0.0037735544610768557, -0.019813179969787598, -0.00533307483419776, -0.010488380677998066, -0.015231585130095482, 0.019215229898691177, 0.0008964212029241025, 0.08300203830003738, 0.013874074444174767, 0.017890041694045067, -0.01900513842701912, -0.0017413296736776829, 0.021106047555804253, 0.018552636727690697, 0.020023271441459656, -0.044086750596761703, 0.032127734273672104, 0.009785383939743042, 0.017421377822756767, 1.0692348041629884e-05, 0.02896021120250225, -0.019021300598978996, -0.0025251300539821386, -0.01035909354686737, -0.001633254112675786, 0.024661431089043617, 0.005159345921128988, 0.021203013136982918, 0.008128899149596691, -0.012977148406207561, 0.0006888554780744016, 0.008064255118370056, -0.043278709053993225, -0.01334884762763977, -0.0045533147640526295, -0.028410743921995163, -0.030253078788518906, -0.039626359939575195, 0.03322667255997658, -0.009648016653954983], [0.009359274059534073, 0.027748901396989822, 0.0656883493065834, 0.020895401015877724, -0.08516041934490204, 0.012642495334148407, 0.001835972536355257, 0.021565202623605728, 0.014556212350726128, 0.015836011618375778, 0.004036747384816408, 0.02405303530395031, -0.019340505823493004, -0.035834357142448425, -0.02913634665310383, 0.041551586240530014, 0.0035523378755897284, 0.07248204201459885, -0.016505811363458633, -0.0181085504591465, 0.015608756802976131, 0.028059881180524826, -0.006428894121199846, 0.05937308073043823, -0.028131645172834396, 0.04994802176952362, 0.02927987463772297, 0.005403261166065931, -0.006111934781074524, -0.022725393995642662, 0.05989935249090195, -0.007941926829516888, 0.003444691188633442, -0.021050890907645226, 0.0598515085875988, 0.04887155443429947, -0.027294393628835678, 0.013168767094612122, -0.013443863950669765, 0.0059923273511230946, -0.08865295350551605, 0.03270064294338226, -0.007630947977304459, 0.006243502721190453, -0.002134990878403187, 0.016948359087109566, 0.03968571126461029, 0.006339188665151596, -0.009185843169689178, 0.04521157220005989, 0.002946825698018074, 0.03128927946090698, 0.023813819512724876, 0.05382329970598221, 0.03260495886206627, 0.01796502061188221, 0.00622556172311306, -0.03198299929499626, 0.03090653568506241, -0.0029318747110664845, -0.0019241829868406057, -0.011871027760207653, -0.060521312057971954, 0.03217437118291855, -0.002163397613912821, -0.010704856365919113, 0.027414001524448395, 0.05013939365744591, -0.06334404647350311, 0.01375484373420477, -0.02743792161345482, 0.018012864515185356, 0.0011863552499562502, -0.06090405210852623, -0.021457554772496223, 0.04181472212076187, 0.030810849741101265, 0.00916192214936018, 0.04009237885475159, -0.014843270182609558, -0.010746719315648079, 0.005582672078162432, -0.02844262309372425, 0.04291510954499245, -0.027988115325570107, -0.009371234104037285, -0.03585827723145485, 0.03494926169514656, -0.04040335863828659, 0.023395193740725517, 0.03425554186105728, -0.0020363149233162403, -0.0031965060625225306, 0.059660136699676514, 0.030523791909217834, -0.022689510136842728, 0.01675698719918728, -0.03289201483130455, 0.015788167715072632, 0.05420604348182678, -0.007385752629488707, -0.017390906810760498, 0.024854402989149094, 0.024292249232530594, 0.017594238743185997, -0.08248122036457062, -0.04846489056944847, 0.02157716266810894, -0.004195227287709713, -0.016649341210722923, -0.04908685013651848, -0.008175160735845566, -0.039087675511837006, 0.02390950545668602, 0.005959435366094112, -0.0016924437368288636, 0.02008207142353058, -0.038513559848070145, 0.04918253421783447, 0.010052996687591076, 0.001191588002257049, 0.05597623065114021, -0.01697228103876114, -0.08894000947475433, 0.00031153971212916076, 0.00523581076413393, -0.00796584878116846, -0.023598527535796165, -0.021170498803257942, 0.001210276735946536, -0.02398126944899559, -0.039590027183294296, 0.03906375542283058, -0.020991086959838867, -0.010962012223899364, -0.03210260719060898, -0.044398240745067596, -0.026409298181533813, -0.03791552409529686, -0.022318728268146515, 0.01099789422005415, 0.008019671775400639, 0.035834357142448425, 0.0013560481602326035, -0.03160025551915169, -0.040355514734983444, 0.00024538193247281015, 0.07186008244752884, 0.01809658855199814, 0.0015578855527564883, -0.05272291228175163, 0.0332508385181427, -0.005196938756853342, -0.011841125786304474, -0.013324256986379623, 0.01159593090415001, -0.03282025083899498, 0.056980933994054794, -0.009102118201553822, 0.016637379303574562, -0.022833039984107018, -0.028490466997027397, 0.01839560829102993, -0.013467785902321339, 0.041001394391059875, -0.006781735923141241, -0.03463828191161156, 0.03246143087744713, -0.035906121134757996, -0.0561676025390625, -0.010776620358228683, -0.06654951721429825, -0.035332005470991135, -0.011398578993976116, -0.05497153103351593, -0.035475533455610275, -0.014627977274358273, -0.008228984661400318, 0.028323017060756683, -0.04195825383067131, -0.016721105203032494, -0.00612090528011322, -0.000589813687838614, -0.029016738757491112, -0.04095355048775673, 0.021529320627450943, -0.002516239183023572, 0.003169594332575798, -0.04853665456175804, 0.03729356452822685, -0.028251251205801964, -0.011769361793994904, 0.03148065134882927, 0.008988491259515285, -0.0421496257185936, 0.035260241478681564, -0.05559348687529564, -0.04033159092068672, 0.008205062709748745, 0.00905427522957325, 0.015226013027131557, -0.022749314084649086, 0.05214879661798477, -0.012666416354477406, -0.0628177747130394, -0.04659901559352875, 0.022378532215952873, 0.010782601311802864, 0.05315349996089935, 0.016613459214568138, 0.0009179862681776285, -0.06143032759428024, -0.03042810596525669, 0.03160025551915169, -0.011769361793994904, 0.0024295239709317684, 0.018694626167416573, 0.0487997904419899, -0.021888142451643944, -0.015788167715072632, 0.006446835119277239, 0.0016341351438313723, 0.009460940025746822, 0.02504577487707138, 0.007194381207227707, 0.008223003707826138, 0.003944051917642355, -0.024017153307795525, -0.010094858705997467, -0.02858615294098854, -0.016577577218413353, 0.036049649119377136, 0.021541280671954155, 0.007080754265189171, -0.007912024855613708, 0.015728363767266273, -0.023359311744570732, 0.0014816358452662826, 0.04540294408798218, -0.005800955463200808, 0.03341829031705856, 0.012104261666536331, 0.0017238407162949443, -0.02079971507191658, 0.004443412646651268, -0.0034267501905560493, -0.008420356549322605, -0.013240532018244267, 0.030332420021295547, 0.03645631670951843, -0.0007654869114048779, -0.024172641336917877, 0.0034476814325898886, -0.04896724224090576, 0.04643156751990318, 0.03097829967737198, 0.0665973648428917, -0.019711287692189217, 0.0686546117067337, -0.03224613517522812, 0.03136104345321655, -0.03035634197294712, -0.01705600507557392, -0.0034716029185801744, -0.06358325481414795, -0.0399010069668293, 0.049134694039821625, -0.07487419247627258, -0.04844097048044205, 0.040499042719602585, -0.05731583386659622, -0.0009516258141957223, 0.020393049344420433, 0.0009845178574323654, -0.018335804343223572, 0.018503254279494286, 0.00427895225584507, -0.008115357719361782, -0.0030978298746049404, 0.035260241478681564, -0.045235492289066315, -0.02001030743122101, 0.022605786100029945, -0.04059473052620888, 0.00837849359959364, 0.017785610631108284, -0.014556212350726128, -0.007469478063285351, -0.031097905710339546, 0.039853163063526154, 0.06032994017004967, -0.04370452091097832, -0.030045362189412117, -0.03057163394987583, 0.029255954548716545, 0.009179863147437572, -0.02978222630918026, -0.006147816777229309, 0.010746719315648079, 0.007708692457526922, 0.004894929938018322, 0.0329398587346077, 0.0030574623961001635, 0.009945349767804146, -0.00865957047790289, 0.01340798195451498, 0.030643397942185402, 0.025093618780374527, 0.010447700507938862, -0.02129010483622551, -0.0451158843934536, -0.012606613337993622, -0.022103434428572655, 0.000660830526612699, 0.00032200536224991083, -0.04152766615152359, -0.006979087833315134, -0.033920638263225555, -0.003193515818566084, -0.013874450698494911, 0.0568852461874485, 0.02801203727722168, 0.04315432533621788, -0.02617008425295353, 0.0428672693669796, -0.030164970085024834, 0.033561818301677704, 0.024029113352298737, -0.011637793853878975, -0.0005774791352450848, -0.03198299929499626, 0.03636062890291214, 0.01447248738259077, -0.017151691019535065, -0.005729191470891237, 0.011823184788227081, 0.04688607528805733, 0.010824463330209255, -0.012678377330303192, -0.03970963507890701, 0.001471170224249363, -0.020991086959838867, 0.01980697363615036, -0.017905218526721, 0.028179487213492393, 0.042412761598825455, 0.040714334696531296, 0.04377628490328789, 0.032150451093912125, 0.04497235640883446, -0.028251251205801964, -0.021110694855451584, -0.0019137173658236861, -0.003274250775575638, -0.04320216923952103, -0.00037096961750648916, -0.033992402255535126, 0.018790312111377716, -0.013348178006708622, 0.004694588016718626, -0.010363975539803505, 0.018072668462991714, 0.04176688194274902, 0.05908602103590965, 0.00015726494893897325, 0.042412761598825455, -0.00030312984017655253, 0.012654455378651619, 0.03679121658205986, -0.025021854788064957, -0.004876988939940929, -0.0020527609158307314, -0.023598527535796165, -0.04109707847237587, -0.019208937883377075, -0.029375560581684113, 0.015967579558491707, 0.03473396971821785, -0.021194418892264366, -0.006064091809093952, 0.061238955706357956, -0.022665590047836304, 0.05114409700036049, 0.023251665756106377, 0.10247956216335297, 0.02142167277634144, -0.06640598922967911, 0.012917592190206051, 0.03217437118291855, -0.0018673695158213377, -0.03368142619729042, 0.00856388546526432, 0.00848614051938057, -0.02927987463772297, -0.0024579307064414024, 0.02581126242876053, 0.05272291228175163, 0.012546809390187263, -0.002780870534479618, -0.02468695305287838, 0.02935163863003254, -0.021912062540650368, 0.005349438171833754, -0.046216271817684174, -0.0008118347614072263, -0.022725393995642662, 0.0006122400518506765, -0.004332775715738535, 0.03274848684668541, -0.024148721247911453, 0.04131237417459488, -0.022892843931913376, 0.03415985405445099, 0.014627977274358273, 0.006751833949238062, 0.02872968092560768, -0.02399323135614395, 0.03097829967737198, -0.021098732948303223, 0.009395156055688858, 0.019495995715260506, 0.04308256134390831, 0.005699289496988058, -0.003809493500739336, -0.018371686339378357, -0.00282871350646019, -0.018491294234991074, -0.0012491490924730897, 0.0291602686047554, -0.020919322967529297, -0.022677550092339516, 0.001885310630314052, 0.012762102298438549, 0.04590529575943947, -0.03480573371052742, -0.009407117031514645, -0.006201640237122774, -0.022880882024765015, -0.03528416156768799, -0.009323391132056713, -0.020811675116419792, -0.02200774848461151, -0.0005576692055910826, 0.048273518681526184, 0.005322526209056377, 0.006584383547306061, 0.018706586211919785, 0.0017552375793457031, 0.009437019005417824, -0.008055553771555424, 0.019902659580111504, -0.02667243592441082, -0.040929630398750305, 0.020189717411994934, -0.09176274389028549, 0.028753602877259254, -0.012176026590168476, -0.07119028270244598, 0.03506886959075928, -0.04688607528805733, 0.028394781053066254, 0.04224530979990959, 0.04882371425628662, 0.06736285239458084, 0.021983828395605087, 0.02913634665310383, -0.05597623065114021, -0.014998759143054485, -0.038035131990909576, 0.023670291528105736, -0.019137173891067505, 0.03997277095913887, 0.029255954548716545, -0.03097829967737198, -0.031145749613642693, -0.06999421119689941, -0.01635032147169113, -0.0037347390316426754, -0.06367894262075424, -0.004826155956834555, -0.002601459389552474, 0.026289692148566246, -0.05119193717837334, -0.02497401088476181, 0.05511505901813507, 0.03337044641375542, 0.023586565628647804, 0.01304916013032198, -0.01966344565153122, -0.005699289496988058, -0.03282025083899498, -0.012690338306128979, 0.034207697957754135, -0.010979953221976757, -0.03042810596525669, -0.016170911490917206, -0.002707611070945859, 0.016649341210722923, 0.03920728340744972, -0.005588652566075325, -0.0069611468352377415, -0.01809658855199814, 0.0015324689447879791, -0.047579798847436905, 0.05009154975414276, -0.013659157790243626, -0.013264453038573265, 0.03298770263791084, -0.007068793289363384, -0.05286644026637077, -0.05956445261836052, 0.034781813621520996, 0.004685617052018642, -0.005280663724988699, 0.01008289773017168, -0.03557122126221657, 0.014807388186454773, 0.007397713605314493, -0.010854365304112434, -0.010932110249996185, 0.025715576484799385, 0.007846240885555744, -0.002601459389552474, -0.015680521726608276, -0.022534022107720375, -0.018766390159726143, -0.01987873949110508, -0.030739083886146545, -0.011679655872285366, -0.008809080347418785, 0.012415241450071335, -0.019962463527917862, -0.015393463894724846, 0.0424606017768383, 0.031648099422454834, 0.006745853461325169, 0.018407568335533142, 0.007541242521256208, -0.016721105203032494, -0.013168767094612122, 0.016398165374994278, -0.020177757367491722, 0.01576424576342106, 0.006297326181083918, 0.027701057493686676, -0.015321698971092701, -0.0016176891513168812, 0.02978222630918026, 0.013623274862766266, 0.030045362189412117, 0.005134144797921181, -0.028059881180524826, 0.03679121658205986, 0.0007176439976319671, 0.002167882863432169, -0.0391833633184433, 0.04956527799367905, -0.04131237417459488, 0.027772823348641396, -0.03176770731806755, 0.02894497476518154, 0.04002061486244202, 0.0018494284013286233, -0.0302845761179924, -0.004021796397864819, 0.020775793120265007, 0.010363975539803505, 0.0039649829268455505, -0.014209351502358913, -0.02794027328491211, -0.029543010517954826, 0.06267423927783966, 0.012690338306128979, -0.006500658579170704, 0.06975499540567398, 0.02999751828610897, 0.0076548694632947445, -0.07023342698812485, 0.0026806993409991264, 0.0014704226050525904, 0.004455373156815767, 0.012182006612420082, 0.0022800147999078035, -0.017869334667921066, -0.013180728070437908, -0.010878287255764008, -0.006662128493189812, -0.025356754660606384, 0.03506886959075928, 0.053009968250989914, -0.019854817539453506, 0.013766803778707981, 0.026337534189224243, -0.01993854157626629, 0.02340715564787388, 0.022031670436263084, -0.02207951433956623, 0.03360966220498085, -0.003639053087681532, 0.036408472806215286, 0.004897920414805412, -0.012797984294593334, -0.021457554772496223, 0.004790273495018482, -0.002447464969009161, -0.022593826055526733, -0.004802234470844269, -0.019495995715260506, 0.014556212350726128, 0.025308910757303238, 0.03298770263791084, 0.004021796397864819, 0.047795090824365616, -0.010232407599687576, -0.02490224689245224, -0.0051042428240180016, -0.060664840042591095, -0.04279550537467003, 0.0024220484774559736, 0.0177497286349535, -0.02341911569237709, 0.001030118204653263, 0.020357167348265648, -0.011422500014305115, 0.006165758240967989, 0.01099789422005415, -0.012403280474245548, -0.01655365526676178, 0.011452401988208294, -0.027844587340950966, 0.01853913627564907, 0.030930455774068832, -0.004246060270816088, -0.005077331326901913, -0.00758908549323678, -0.008205062709748745, 0.010310152545571327, 0.006243502721190453, 0.006231542211025953, 0.0011714042630046606, 0.025237146764993668, -0.0008522022399120033, 0.014807388186454773, -0.05822484940290451, 0.04923037812113762, 0.026720277965068817, 0.036934744566679, 0.011560048907995224, 0.01400601863861084, 0.006213600747287273, 0.006847519893199205, -0.044541772454977036, 0.00795986782759428, -0.029375560581684113, 0.00670399097725749, -0.019328545778989792, -0.032293979078531265, 0.014101704582571983, 0.03296378254890442, 0.03155241534113884, -0.00923368614166975, 0.018431490287184715, -0.021888142451643944, 0.012074360623955727, 0.04480490833520889, 0.021732652559876442, 0.012534848414361477, -0.01682875119149685, 0.014879152178764343, -0.019149133935570717, -0.017785610631108284, -0.0003965730720665306, 0.021541280671954155, -0.012857788242399693, 0.006464776117354631, 0.031169671565294266, -0.03128927946090698, -0.01627855747938156, -0.005032478366047144, 0.01039985753595829, -0.002731532556936145, -0.018000904470682144, -0.028681838884949684, 0.03762846812605858, 0.0006066334317438304, 0.013611314818263054, 0.01060917042195797, -0.010387896560132504, 0.023502841591835022, -0.00824692565947771, 0.0059325238689780235, 0.015728363767266273, 0.002999153919517994, 0.01809658855199814, 0.03585827723145485, 0.03691082447767258, 0.007337909657508135, -0.00032966770231723785, 0.002674719085916877, -0.013455824926495552, 0.010734758339822292, -0.013563471846282482, 0.030882613733410835, -0.04569000005722046, -0.028059881180524826, -0.030954377725720406, 0.008217023685574532, -0.007702712435275316, 0.03227005898952484, 0.0009822752326726913, -0.030475948005914688, 0.0010278754634782672, -0.04119276627898216, -0.011093580164015293, -0.04674254730343819, 0.018945802003145218, -0.004876988939940929, -0.004978655371814966, 0.0299257542937994, -0.03112182766199112, -0.023502841591835022, 0.04851273447275162, -0.005884680896997452, -0.03499710559844971, -0.005397280678153038, -0.001021147589199245, -0.0016789879882708192, -0.028849288821220398, -0.007750554941594601, 0.04344138503074646, 0.026696356013417244, 0.0003692876489367336, 0.030643397942185402, 0.007756535429507494, 0.010920149274170399, 0.004377628210932016, -0.04394373297691345, -0.001252886839210987, -0.02129010483622551, 0.0036540040746331215, -0.011560048907995224, -0.029232032597064972, -0.004610862582921982, -0.033561818301677704, -0.02595479041337967, -0.011757400818169117, -0.012881710194051266, 0.00232636253349483, -0.019017565995454788, -0.026696356013417244, -0.001807565800845623, 0.008288788609206676, -0.03138496354222298, -0.014915034174919128, 0.030475948005914688, -0.03798728808760643, 0.03191123530268669, 0.012026517651975155, 0.022892843931913376, -0.004574980586767197, -0.0013134380569681525, 0.018371686339378357, 0.006865460891276598, 0.022270886227488518, 0.02475871704518795, -0.048991162329912186, -0.021026968955993652, 0.02526106871664524, 0.00544512365013361, -0.008234964683651924, 0.001762713072821498, 0.026504984125494957, 0.012116222642362118, 0.02277323603630066, 0.007918005809187889, 0.0052388012409210205, -0.017941100522875786, -0.06688442081212997, -0.019567759707570076, -0.026624592021107674, -0.0027464833110570908, -0.00143304537050426, -0.00037022208562120795, 0.03600180894136429, -0.00884496234357357, 0.03669552877545357, 0.023155979812145233, 0.02064422518014908, 0.003328074002638459, 0.011231128126382828, 0.002836188767105341, 0.00198996695689857, -0.007146538235247135, -0.020751873031258583, -0.020285403355956078, -0.03564298525452614, 0.010035055689513683, -0.04458961263298988, -0.008025651797652245, 0.0339684821665287, -0.017139730975031853, 0.00926358811557293, 0.001438278122805059, 0.016745027154684067, 0.05774642154574394, 0.025452440604567528, -0.015967579558491707, -0.0002844411937985569, 0.049278222024440765, -0.05497153103351593, -0.0076010460034012794, 0.030332420021295547, 0.00837849359959364, 0.008055553771555424, 0.010872306302189827, -0.0679369643330574, -0.009179863147437572, 0.02418460324406624, -0.0007729624048806727, -0.032652802765369415, 0.02166088856756687, -0.016852673143148422, 0.0021215351298451424, -0.0017552375793457031, 0.015058563090860844, -0.005316545721143484, -0.020763833075761795, 0.010962012223899364, 0.009843683801591396, -0.014065822586417198, 0.011458382941782475, -0.0005169279174879193, 0.04762763902544975, -0.008450258523225784, 0.007493399549275637, 0.014161508530378342, -0.002722561825066805, 0.008193102665245533, -0.01174543984234333, 0.027246549725532532, 0.022880882024765015, -0.01597953960299492, 0.019077369943261147, 0.019986385479569435, -0.041910409927368164, -0.002833198755979538, -0.02071598917245865, -0.035834357142448425, -0.011129462160170078, 0.010202505625784397, -0.02093128301203251, 0.00486502842977643, -0.03825042396783829, 0.011308873072266579, -0.012989356182515621, 0.017522474750876427, -0.0038005230017006397, -0.011350736021995544, -0.03648023679852486, -0.027772823348641396, -0.009807800874114037, -0.008892805315554142, -0.010214466601610184, -0.017988942563533783, 0.006727912463247776, 0.014125625602900982, 0.03820258378982544, -0.03973355516791344, -0.011398578993976116, 0.004506206139922142, 0.03049986995756626, 0.0014337928732857108, 0.05272291228175163, -0.025308910757303238, -0.02363440953195095, -0.006273404695093632, 0.008001730777323246, 0.00905427522957325, -0.006285365205258131, -0.008079475723206997, 0.025141460821032524, -0.012487005442380905, 0.0031905255746096373, 0.025284990668296814, 0.02815556526184082, -0.028681838884949684, 0.015309738926589489, 0.043752361088991165, 0.02617008425295353, -0.004589931573718786, -0.0050474293529987335, 0.03734140843153, 0.026481064036488533, 0.021672848612070084, -0.009736036881804466, -0.0073917331174016, -0.008713394403457642, -0.008001730777323246, -0.015321698971092701, -0.0254763625562191, -0.007427615579217672, 0.015261895954608917, -0.02739007957279682, -0.012666416354477406, -0.008545943535864353, 0.022904803976416588, -0.0009404126321896911, -0.012594652362167835, 0.011560048907995224, -0.004873998928815126, -0.015202092006802559, -0.004676646552979946, -0.04116884246468544, -0.024591267108917236, 0.04059473052620888, -0.003683905815705657, -0.020680107176303864, 0.02071598917245865, 0.018694626167416573, 0.005633505526930094, 0.032509274780750275, 0.012427201494574547, -0.019771091639995575, -0.009377215057611465, 0.0020273441914469004, 0.002294965786859393, 0.0023024410475045443, 0.011033776216208935, -0.004416500683873892, -0.007756535429507494, -0.016075225546956062, 0.012319555506110191, 0.024172641336917877, 0.002695650327950716, 0.0070149702951312065, -0.0009060255251824856, -0.010812503285706043, 0.008898785337805748, 0.02739007957279682, -0.013503667898476124, 0.017869334667921066, -0.008827021345496178, -0.021828338503837585, -0.015548952855169773, -0.02865791693329811, -0.023658329620957375, 0.014388762414455414, 0.004048708360642195, -0.004132433328777552, -0.011906909756362438, 0.018981683999300003, -0.01411366555839777, 0.012917592190206051, -0.033633582293987274, 0.009670252911746502, 0.01838364638388157, 0.0004066649416927248, 0.007583105005323887, -0.009000452235341072, -0.001556390430778265, 0.005107233300805092, 0.011272991076111794, -0.001710384851321578, -0.04315432533621788, 0.04069041460752487, 0.03463828191161156, 0.01753443479537964, -0.02894497476518154, -0.021314026787877083, 0.020464815199375153, -0.01022044662386179, -0.02717478573322296, 0.022534022107720375, 0.0146040553227067, -0.026576749980449677, 0.014568173326551914, -0.012080340646207333, 0.025284990668296814, 0.011906909756362438, -0.00427895225584507, 0.020141875371336937, 0.037676308304071426, 0.034207697957754135, 0.0025909938849508762, -0.01760619878768921, -0.02072795107960701, 0.02971046231687069, 0.008749276399612427, 0.031097905710339546, -0.018874038010835648, 0.028107723221182823, 0.00030817577498964965, 0.01227171253412962, 0.011865047737956047, -0.004512186627835035, 0.0020736921578645706, 0.012881710194051266, -0.0017567327013239264, -6.508320802822709e-05, 0.012857788242399693, 0.010932110249996185, -0.0010966496774926782, 0.007218302693217993, 0.018287960439920425, 0.022510100156068802, 0.004006845876574516, -0.0020512656774371862, 0.015417384915053844, 0.0042370897717773914, -0.07037695497274399, 0.019783053547143936, -0.03954218327999115, 0.0038573364727199078, 0.03267672285437584, -0.020536579191684723, -0.021206380799412727, -0.0031337121035903692, -0.016254637390375137, -0.02406499534845352, 0.04037943482398987, -0.013575431890785694, 0.04037943482398987, 0.010854365304112434, -0.016434047371149063, -0.0013366119237616658, -0.058177005499601364, 0.04090570658445358, 0.008516042493283749, 0.017522474750876427, 0.03813081607222557, -0.01371896080672741, -0.0010547871934249997, 0.02736615762114525, 0.040427278727293015, 0.0024654061999171972, 0.017139730975031853, -0.0017462670803070068, 0.0031038103625178337, -0.014412683434784412, 0.0017163652228191495, -0.0056873285211622715, 0.0023981269914656878, -0.04033159092068672, -0.026146162301301956, -0.016649341210722923, -0.0020482756663113832, 0.03341829031705856, 0.03138496354222298, 0.030667319893836975, 0.009102118201553822, -0.001023390213958919, 0.0012356932274997234, -0.03375319018959999, -0.026552828028798103, -0.034757889807224274, -0.005645466037094593, 0.009143980219960213, -0.02533283270895481, -0.03719788044691086, -0.014424644410610199, 0.017594238743185997, -0.01682875119149685, 0.0008058543899096549, 0.0033848874736577272, 0.00025790330255404115, -0.034351225942373276, -0.048704106360673904, -0.0011945782462134957, 0.001279050949960947, -0.019053447991609573, -0.012546809390187263, 0.0230722539126873, -0.007672810461372137, 0.03528416156768799, 0.007810358889400959, -0.01571640372276306, -0.05353624373674393, -0.013419942930340767, -0.0019884719513356686, 0.004957723896950483, -0.018012864515185356, 0.05530643090605736, 0.013085042126476765, 0.013647196814417839, 0.003274250775575638, 0.007457517087459564, -0.023754015564918518, -0.005217869766056538, 0.022749314084649086, -0.021098732948303223, -0.00436865771189332, 0.027342235669493675, -5.167410563444719e-05, 0.05157468095421791, -0.0026732238475233316, -0.003782582003623247, 0.03619317710399628, -0.01889795809984207, 0.03506886959075928, 0.022402454167604446, 0.017594238743185997, 0.01627855747938156, 0.00972407590597868, -0.004413510672748089, 0.04231707379221916, -0.030475948005914688, 0.004183266311883926, -0.018204236403107643, 0.012307594530284405, -0.023897545412182808, 0.029614776372909546, 0.01527385599911213, 0.022940685972571373, 0.003444691188633442, 0.037173960357904434, -0.018371686339378357, -0.011769361793994904, 0.030021440237760544, -0.025691654533147812, -0.0015833020443096757, -0.030452026054263115, 0.017654042690992355, -0.027533607557415962, 0.015094445087015629, -0.01393425464630127, -0.01170357782393694, -0.01371896080672741, 0.0328441746532917, 0.014616016298532486, 0.0017014143522828817, 0.012821906246244907, -0.04442216455936432, 0.01195475272834301, -0.024997932836413383, 0.008922707289457321, 0.007941926829516888, 0.006369090639054775, -0.004664686042815447, -0.010985933244228363, 0.0266006700694561, 0.011631812900304794, 0.04088178649544716, -0.02036912925541401, 0.007906044833362103, -0.008193102665245533, 0.004906890913844109, -0.016314439475536346, 0.07037695497274399, 0.015226013027131557, 0.020680107176303864, -0.012977395206689835, 0.008755256421864033, -0.024591267108917236, 0.008934667333960533, 0.00486502842977643, -0.0062674242071807384, 0.0016774928662925959, -0.002375700743868947, 0.03382495418190956, 0.020500697195529938, -0.01400601863861084, 0.020835597068071365, 0.00023472939210478216, 0.03006928414106369, 0.004434441681951284, 0.01489111315459013, -0.04746019095182419, 0.011518185958266258, -0.01393425464630127, 0.02270147204399109, -0.021385790780186653, -0.028825366869568825, -0.0188261941075325, 0.012845827266573906, -0.012750141322612762, -0.019795013591647148, 0.02363440953195095, -0.01273818127810955, 0.028681838884949684, -0.028681838884949684, -0.00031303480500355363, 0.030452026054263115, 0.005528849083930254, -0.030739083886146545, 0.002459425712004304, 0.02468695305287838, 0.03810689598321915, 0.0027180765755474567, 0.02617008425295353, 0.005974386353045702, -0.003453661687672138, 0.002999153919517994, 0.04112100228667259, -0.03430338203907013, -0.029830068349838257, 0.03203084319829941, -0.0015578855527564883, 0.009478881023824215, -0.00048440968384966254, -0.008187121711671352, -0.03884846344590187, -0.020201679319143295, -0.02971046231687069, -0.023825781419873238, -0.02228284627199173, 0.006285365205258131, 0.007361831143498421, 0.0077924178913235664, -0.0032892017625272274, -0.037891604006290436, 0.005421202164143324, 0.026433220133185387, -0.016661301255226135, -0.0032533195335417986, -0.014508369378745556, -0.009771918877959251, -0.005618554539978504, -0.018945802003145218, -0.017079927027225494, 0.022821079939603806, -0.013575431890785694, 0.020751873031258583, 0.018000904470682144, -0.03808297589421272, 0.03506886959075928, -0.029040660709142685, -0.007786437403410673, 0.0009157436434179544, 0.021457554772496223, 0.030523791909217834, 0.02468695305287838, -0.01881423406302929, -0.02837085910141468, 0.010130740702152252, 0.0414319783449173, -0.0073259491473436356, -0.026194006204605103, 0.0042370897717773914, -0.006757814437150955, -0.03585827723145485, 0.0216369666159153, 0.011530146934092045, 0.025069696828722954, -0.007260165177285671, -0.042125701904296875, 0.007918005809187889, -0.045020200312137604, -0.007840260863304138, -0.04590529575943947, -0.038872383534908295, -0.003145672846585512, -0.03595396503806114, -0.015824049711227417, -0.0003715302736964077, 0.03490142151713371, -0.013192689046263695, 0.002419058233499527, -0.02497401088476181, 0.0002756575122475624, -0.0021260203793644905, -0.02248617820441723, -0.027844587340950966, -0.03152849152684212, 0.033992402255535126, -0.012283673509955406, 0.005923553369939327, -0.006626246031373739, 0.017953060567378998, 0.003917139954864979, 0.03174378722906113, -0.016721105203032494, -0.016661301255226135, -0.011051717214286327, -0.02321578375995159, 0.01627855747938156, 0.005839827936142683, 0.011201227083802223, -0.006650167517364025, 0.021349908784031868, 0.04066649451851845, 0.043106481432914734, 0.013097003102302551, 0.014819348230957985, -0.034351225942373276, -0.0053793396800756454, 0.009311431087553501, 0.002706115832552314, -0.022402454167604446, 0.008785158395767212, 0.016039343550801277, -0.002460920950397849, -0.04590529575943947, 0.023514801636338234, -0.01042975950986147, -0.02384970150887966, 0.019017565995454788, 0.005609584040939808, 0.007170459721237421, 0.008037612773478031, 0.0032772410195320845, -0.014376801438629627, -0.011434460990130901, -0.003914149943739176, 0.03162417933344841, -0.0011026300489902496, 0.011380637995898724, -0.027342235669493675, -0.03248535096645355, 0.002063226420432329, -0.05128762498497963, -0.01768992468714714, -0.012678377330303192, -0.0015429345658048987, -0.00035620559356175363, 0.01676894724369049, -0.030308498069643974, 0.010914169251918793, -0.04908685013651848, -0.03545161336660385, 0.004443412646651268, 0.03035634197294712, -0.03191123530268669, 0.01527385599911213, 0.00952074397355318, 0.02703125774860382, -0.00912603922188282, -0.005262722726911306, -0.0020841576624661684, 0.015094445087015629, -0.003271260531619191, -0.03609749302268028, -0.0036360628437250853, -0.00465272506698966, -0.009323391132056713, -0.021517358720302582, 0.005672377534210682, -0.0035613083746284246, 0.015596795827150345, -0.023227743804454803, -0.008336630649864674, 0.0026866798289120197, -0.0188261941075325, -0.022103434428572655, 0.022725393995642662, -0.0072721256874501705, -0.032437507063150406, -0.03241358697414398, 0.025356754660606384, 0.010232407599687576, -0.025715576484799385, 0.00022146044648252428, 0.021840298548340797, -0.06061699613928795, -0.015237974002957344, -0.03160025551915169, 0.030452026054263115, -0.013874450698494911, 0.05626329034566879, -0.02249814011156559, -0.012080340646207333, 0.027820665389299393, -0.01597953960299492, -0.020464815199375153, 0.016565615311264992, -0.010561327449977398, 0.001201306120492518, -0.0254763625562191, 0.008396434597671032, 0.012122203595936298, 0.0188261941075325, -0.017845414578914642, -0.019029526039958, 0.026648513972759247, 0.024639111012220383, -0.0007759525906294584, -0.00042348471470177174, -0.03351397439837456, 0.011643773876130581, 0.006303306668996811, -0.00010017114254878834, 0.007361831143498421, -0.020105993375182152, 0.011201227083802223, -0.026409298181533813, -0.007583105005323887, 0.0028556250035762787, 0.0023443037644028664, -0.013467785902321339, 0.014233272522687912, -0.035188477486371994, -0.03686298057436943, 0.014651898294687271, -0.011458382941782475, -0.04406334087252617, -0.0031277318485081196, -0.03332260251045227, -0.059038180857896805, -0.014879152178764343, -0.004724489524960518, -0.011171325109899044, -0.01563267782330513, 0.011577989906072617, -0.0018404577858746052, 0.017988942563533783, -0.02008207142353058, -0.008587806485593319, -0.030188890174031258, -0.04260413348674774, -0.027772823348641396, 0.024591267108917236, -0.010585249401628971, 0.015094445087015629, 0.024878324940800667, 0.01517817098647356, -0.00824692565947771, -0.010405837558209896, 0.005651446525007486, -0.01612306758761406, -0.0012162571074441075, -0.020907361060380936, -0.017809532582759857, -0.016733065247535706, 0.01050152350217104, -0.01517817098647356, 0.00048291462007910013, 0.034494753926992416, 0.004416500683873892, 0.005158066283911467, 0.01959168165922165, 0.00505639985203743, -0.0037377290427684784, 0.006877421867102385, 0.011948772706091404, 0.032509274780750275, 0.03372926637530327, 0.006141836754977703, -0.010489563457667828, 0.032437507063150406, -0.023610487580299377, 0.007553203031420708, -0.011039757169783115, -0.002451950218528509, -0.019328545778989792, -0.01642208732664585, 0.02971046231687069, -0.010674954392015934, -0.03267672285437584, 0.016254637390375137, -0.017223455011844635, 0.007056832779198885, 0.003725768532603979, 0.018563058227300644, 0.005800955463200808, 0.03143280744552612, -0.004700568038970232, -0.008868883363902569, 0.005412231665104628, -0.013455824926495552, -0.000942655315157026, -0.0053763496689498425, -0.02015383541584015, 0.008109376765787601, 0.0006047645583748817, 0.00036854008794762194, 0.008450258523225784, -0.01953187771141529, 0.01177534181624651, 0.0033938579726964235, 0.010728777386248112, 0.014053861610591412, -0.023897545412182808, 0.03480573371052742, -0.012977395206689835, -0.007822319865226746, -0.04179080203175545, -0.03219829499721527, -0.022115396335721016, 0.024387935176491737, -0.021050890907645226, 0.0031725845765322447, -0.04683823138475418, -0.0077924178913235664, 0.0262418482452631, -0.012546809390187263, -0.009042314253747463, -0.005750122480094433, -0.024519503116607666, 0.023395193740725517, -0.007636927999556065, 0.001670017372816801, 0.02913634665310383, -0.027150863781571388, 0.020285403355956078, 0.0025072686839848757, 0.04647940769791603, -0.011930831708014011, 0.0032802310306578875, 0.00652458006516099, -0.014855231158435345, -0.02645714208483696, -0.01312092412263155, 0.000784175586886704, -0.004198217298835516, 0.009018393233418465, 0.010573288425803185, -0.003944051917642355, -0.04540294408798218, 0.011631812900304794, -0.009742016904056072, -0.03454259783029556, 0.004246060270816088, 0.03734140843153, 0.003821454243734479, -0.024950088933110237, 0.001381464651785791, 0.007278106175363064, 0.03054771199822426, -0.03911159932613373, -0.00330714276060462, 0.015812089666724205, 0.002825723262503743, 0.03238966688513756, -0.018575018271803856, 0.013240532018244267, -0.0012117717415094376, -0.0007086734403856099, -0.007923985831439495, 0.003594200359657407, -0.044326476752758026, 0.00894662830978632, -0.013097003102302551, 0.018216196447610855, -0.011081619188189507, 0.013013278134167194, 0.008312709629535675, 0.015800127759575844], [-0.007575828116387129, 0.03852817043662071, 0.0612039640545845, 0.025524625554680824, -0.05127899721264839, -0.008046804927289486, 0.005783820524811745, -0.009924966841936111, 0.007943419739603996, 0.0026923194527626038, -0.0024956008419394493, 0.010206404142081738, -0.020780399441719055, -0.025754369795322418, -0.03944714739918709, 0.046615179628133774, -0.02260686829686165, 0.0535304918885231, -0.009626299142837524, -0.020240498706698418, -0.004936637356877327, 0.039332274347543716, -0.008661371655762196, -0.002024624263867736, -0.028534280136227608, 0.026581451296806335, 0.0073518273420631886, -0.0012169284746050835, -0.007041672244668007, -0.02534082904458046, 0.03793083503842354, -0.007719418499618769, 0.0428243950009346, 0.013991446234285831, 0.05495490878820419, 0.029292436316609383, -0.04797067493200302, 0.006777465809136629, 0.013394109904766083, -0.007288647349923849, -0.044363681226968765, 0.044938042759895325, -0.026328731328248978, 0.004586276598274708, -0.06841794401407242, 0.06841794401407242, 0.041377004235982895, 0.016196994110941887, -0.008265062235295773, 0.049395088106393814, 0.011142613366246223, -0.005582794081419706, -0.005407613702118397, 0.05127899721264839, 0.04999242722988129, 0.04925724118947983, 0.022491997107863426, 0.0034404254984110594, 0.003578272182494402, -0.05164658650755882, -0.011699743568897247, 0.006484541576355696, -0.061158012598752975, -0.0004666687163989991, 0.005855615716427565, -0.01760992407798767, -0.013118417002260685, 0.029499206691980362, -0.044938042759895325, 0.0036041184794157743, 0.014071856625378132, 0.006656849756836891, -0.0231697428971529, -0.05734425410628319, -0.021228400990366936, -0.014450935646891594, 0.056746918708086014, 0.02104460634291172, 0.021515581756830215, 0.027454480528831482, -0.048935599625110626, 0.01700109988451004, -0.02349138632416725, 0.03758621588349342, -0.020033730193972588, 0.017747770994901657, -0.015519248321652412, -0.0004953867755830288, -0.05987144261598587, 0.012831236235797405, 0.01411780621856451, 0.02414615824818611, 0.0004476429894566536, 0.037540268152952194, -0.013095442205667496, -0.0030757058411836624, 0.039332274347543716, 0.004345044959336519, -0.008695833384990692, 0.04774092882871628, -0.004115300253033638, 0.020975682884454727, 0.04059587046504021, 0.009161066263914108, 0.032669682055711746, -0.05541439726948738, -0.04512184113264084, 0.002474062144756317, 0.02713283710181713, -0.006352438125759363, -0.024421852082014084, 0.01872418448328972, -0.027684224769473076, 0.017966028302907944, -0.01019491720944643, -0.01760992407798767, 0.018172798678278923, -0.011079433374106884, 0.053346697241067886, -0.03960796818137169, -0.06290407478809357, 0.0383443757891655, 0.003842478385195136, -0.0837189331650734, 0.005462178029119968, 0.024123182520270348, -0.007633264642208815, -0.05619553104043007, -0.03783893585205078, 0.008322497829794884, -0.013600880280137062, -0.002021752530708909, 0.033864352852106094, -0.008150190114974976, -0.019482342526316643, -0.007099108304828405, 0.007633264642208815, -0.0024683186784386635, -0.023365026339888573, -0.03216424584388733, 0.011056458577513695, 0.009442503564059734, -0.013336674310266972, 0.016196994110941887, -0.08983013778924942, -0.04392716661095619, 0.01773628406226635, 0.07563192397356033, 0.05100330337882042, -0.011820360086858273, -0.02692606672644615, 0.06451228260993958, -0.026788219809532166, 0.021883172914385796, 0.002545857336372137, 0.018195772543549538, -0.009172553196549416, 0.049395088106393814, 0.008845167234539986, -0.013371136039495468, -0.0324399396777153, 0.000736618647351861, 0.006484541576355696, -0.007880239747464657, 0.04181351885199547, -0.0011408255668357015, -0.02018306404352188, 0.04544348269701004, -0.04728144034743309, -0.04555835574865341, -0.03760918974876404, -0.030234389007091522, -0.0361158512532711, -0.028304535895586014, -0.01998778060078621, -0.02839643321931362, -0.015955762937664986, -0.020332397893071175, 0.0115446662530303, -0.06561505794525146, -0.025042161345481873, -0.010757790878415108, -0.008879628963768482, -0.04592594504356384, -0.06299597024917603, 0.004135402850806713, 0.005783820524811745, 0.017265306785702705, -0.025317855179309845, 0.06028498336672783, -0.010872662998735905, -0.00036687339888885617, 0.014232678338885307, 0.004040633328258991, -0.06538531184196472, 0.012417695485055447, -0.03678211197257042, -0.0024611391127109528, 0.002486985409632325, 0.032187219709157944, 0.004861969966441393, -0.04810851812362671, 0.05072760954499245, 0.01925259828567505, -0.08123768866062164, 0.0011314922012388706, 0.01256702933460474, -0.018046438694000244, 0.029108641669154167, 0.035817183554172516, 0.008937065489590168, -0.07131272554397583, 0.001520622055977583, -0.011016253381967545, -0.02018306404352188, -0.02660442516207695, -0.0049452525563538074, 0.04778687655925751, -0.01440498698502779, 0.00024984724586829543, 0.013325187377631664, -0.013198827393352985, 0.008546499535441399, -0.01248661894351244, -0.02414615824818611, 0.05279530957341194, 0.009988146834075451, -0.021630454808473587, 0.006616644561290741, -0.048246365040540695, -0.007483930326998234, 0.022733228281140327, -0.008207625709474087, 0.003741965163499117, -0.008368447422981262, 0.007616033777594566, -0.01136087067425251, 0.011148356832563877, 0.04192839190363884, 0.016174020245671272, 0.01097030472010374, 0.04098643735051155, -0.023479897528886795, -0.02166491560637951, 0.008833680301904678, -0.0010072864824905992, -0.033198095858097076, -0.0017345717642456293, 0.0453745573759079, 0.011171331629157066, -0.03085470013320446, -0.014749603345990181, 0.05141684040427208, -0.05054381117224693, 0.02729365974664688, 0.03060198202729225, 0.04075669124722481, -0.017586950212717056, 0.03726457431912422, -0.004606379196047783, 0.027109863236546516, -0.013164365664124489, -0.017012588679790497, 0.02026347443461418, -0.06717732548713684, -0.010189172811806202, 0.08279995620250702, -0.10099572688341141, -0.03175070509314537, 0.07140462100505829, -0.0810079500079155, -0.0017001100350171328, -0.02848833054304123, 0.021733839064836502, -0.014359037391841412, 0.027109863236546516, 0.017552487552165985, -0.04911939427256584, 0.04335280507802963, 0.0003541297628544271, -0.010281071066856384, 0.0322791151702404, 0.028189662843942642, -0.024284005165100098, 0.001224825857207179, 0.016897715628147125, -0.03188855201005936, 0.01732274331152439, -0.016897715628147125, 0.057849690318107605, 0.006834901869297028, -0.03903360664844513, -0.051968228071928024, 0.011056458577513695, 0.0029751926194876432, 0.03705780580639839, -0.03322106972336769, -0.011762923561036587, -0.020481731742620468, -0.014795552007853985, -0.030624955892562866, 0.07521837949752808, -0.010717585682868958, -0.0017072896007448435, -0.00409806938841939, 0.01097030472010374, 0.02566247247159481, -0.0020260601304471493, 0.020654039457440376, -0.016771355643868446, -0.019953317940235138, 0.0020260601304471493, 0.01724233292043209, -0.0007201057160273194, -0.01769033446907997, -0.02938433550298214, 0.0061341808177530766, -0.026512527838349342, -0.01497934851795435, -0.004020530730485916, 0.02435292862355709, 0.028947820886969566, 0.029728950932621956, -0.049349140375852585, 0.014864475466310978, -0.018862031400203705, 0.037126727402210236, 0.023319076746702194, -0.032393988221883774, 0.010596970096230507, -0.01183184701949358, 0.04539753496646881, -0.008552243001759052, -0.002731089014559984, -0.012612978927791119, 0.004620738327503204, 0.012153489515185356, 0.03878089040517807, -0.010596970096230507, -0.010103018954396248, -0.02864915132522583, -0.030785776674747467, 0.021262863650918007, -0.04528266191482544, -0.007811316289007664, 0.05036001652479172, 0.07255334407091141, 0.058538924902677536, 0.02513405866920948, 0.012142002582550049, -0.01835659332573414, -0.01458878256380558, -0.0322791151702404, -0.0007269262569025159, -0.07696444541215897, 0.016128070652484894, -0.020056704059243202, -0.007840034551918507, -0.0113838454708457, -0.01048209797590971, -0.0394701212644577, -0.015335451811552048, 0.04355957731604576, 0.052611514925956726, 0.002268727868795395, 0.03326701745390892, -0.002969448920339346, -0.006398387253284454, 0.056746918708086014, 0.004457045346498489, 0.01364682987332344, 0.02063106559216976, -0.06556911021471024, -0.007208236958831549, -0.03841329738497734, -0.033129170536994934, 0.009138091467320919, 0.011757180094718933, -0.026213858276605606, 0.009080655872821808, 0.0656610056757927, 0.02844238094985485, 0.043214958161115646, -0.019011365249753, 0.07682659476995468, 0.0247664675116539, -0.07347232103347778, -0.008695833384990692, 0.029200538992881775, -0.01259000413119793, 0.008391421288251877, 0.011159843765199184, -0.020941220223903656, -0.013486008159816265, -0.04270952194929123, -0.010005377233028412, 0.024697544053196907, 0.005197971593588591, -0.006450079847127199, -0.027362581342458725, 0.009138091467320919, -0.029269462451338768, -0.0075585972517728806, -0.0776536762714386, 0.013095442205667496, 0.004913662560284138, 0.02027496136724949, -0.003374373773112893, 0.03175070509314537, -0.03384137898683548, 0.053071003407239914, -0.0418594665825367, 0.03742539510130882, -0.0043622758239507675, -0.0024352928157895803, -0.0003587964456528425, -0.011027741245925426, 0.030877673998475075, -0.014152267947793007, -0.017586950212717056, 0.02619088441133499, 0.06529341638088226, -0.0021567274816334248, 0.016541611403226852, -0.006432848982512951, -0.005243920721113682, -0.022491997107863426, -0.009672247804701328, 0.035036053508520126, -0.032669682055711746, -0.03126823902130127, 0.014830013737082481, 0.04450152814388275, 0.058584872633218765, -0.03999853506684303, -0.02022901177406311, 0.006335207261145115, -0.04004448279738426, -0.03981474041938782, -0.023445436730980873, -0.012923133559525013, -0.01823023334145546, -0.002601857529953122, 0.023227179422974586, -0.014898937195539474, 0.029728950932621956, 0.018907980993390083, -0.018976904451847076, 0.008535011671483517, 0.005577050149440765, 0.022859588265419006, 0.0021552916150540113, -0.0314750112593174, -0.014462422579526901, -0.06938286870718002, 0.010413174517452717, -0.00968947820365429, -0.0568847618997097, 0.02026347443461418, -0.04852205887436867, 0.02268727868795395, 0.05284125730395317, 0.03037223592400551, 0.05242771655321121, -0.0022041122429072857, 0.01744910329580307, -0.03306024894118309, -0.028832947835326195, -0.02366369403898716, 0.007627520710229874, 0.0006867210031487048, 0.017586950212717056, 0.01117707509547472, 0.00601930869743228, 0.01191225741058588, -0.028786998242139816, -0.03322106972336769, -0.02268727868795395, -0.03871196508407593, -0.034507639706134796, 4.30771142418962e-05, 0.051876332610845566, -0.027270684018731117, -0.031360138207674026, 0.061525605618953705, 0.03326701745390892, 0.0025831907987594604, 0.009586093947291374, -0.03554148972034454, -0.0023304717615246773, -0.022296713665127754, -0.025065137073397636, 0.024467799812555313, -0.009390810504555702, -0.04071074351668358, 0.0009275938500650227, -0.01133789587765932, 0.022698767483234406, 0.057114508002996445, -0.031406085938215256, 0.006404130719602108, 0.018586337566375732, 0.042686548084020615, -0.015048271045088768, 0.06446633487939835, -0.0042876084335148335, -0.02203250676393509, 0.061571553349494934, -0.006513259373605251, -0.019137725234031677, -0.04401906579732895, -0.005536844953894615, 0.002453959546983242, -0.018276182934641838, -0.00882793590426445, -0.022928511723876, 0.019746549427509308, 0.028051815927028656, 0.00780557282269001, 0.017713308334350586, 0.017839668318629265, -0.01802346482872963, -0.0029120128601789474, -0.04057289659976959, -0.023525847122073174, -0.02096419595181942, -0.03152095898985863, 0.00017930848116520792, 0.018368080258369446, 0.02248051017522812, 0.009999633766710758, -0.03395625203847885, -0.01899987831711769, 0.04213516041636467, -0.0025185751728713512, 0.006949774455279112, 0.030395211651921272, -0.03106147050857544, 0.002370677189901471, 0.02676524594426155, 0.01663350872695446, -0.021239887923002243, 0.013015031814575195, -0.005637358408421278, 0.027592327445745468, 0.02943028323352337, 0.017931565642356873, 0.02187168598175049, 0.013520469889044762, 0.008466088213026524, 0.03981474041938782, 0.008586704730987549, 0.03400219976902008, 0.020033730193972588, -0.006082488223910332, -0.022377124056220055, 0.02880997397005558, 0.003354271175339818, 0.03142906352877617, -0.01160784624516964, 0.051922280341386795, 0.025616522878408432, -0.008839423768222332, -0.013118417002260685, -0.023192716762423515, 0.027638275176286697, 0.012084566056728363, -0.016576072201132774, 0.009264451451599598, -0.018896494060754776, -0.0173342302441597, 0.02091824635863304, 0.00751839205622673, -0.013623855076730251, 0.0652015209197998, 0.03459953889250755, 0.03168177977204323, -0.057803742587566376, -0.016242943704128265, -0.004075095057487488, 0.0004939509090036154, -0.009988146834075451, 0.00852352473884821, -0.021768301725387573, -0.009063424542546272, 0.00856372993439436, -0.005789563991129398, -0.02177978865802288, 0.03237101435661316, 0.042525727301836014, 0.002521446906030178, -0.0010216454975306988, 0.006260540336370468, 0.003558169584721327, 0.01561114564538002, 0.0321182943880558, -0.035863131284713745, 0.01924111135303974, 0.003130270168185234, 0.03216424584388733, 0.015255041420459747, -0.0019571369048208, -0.009901992045342922, -0.015863865613937378, 0.008822192437946796, -0.030303312465548515, 0.02623683400452137, -0.02435292862355709, 0.02439887635409832, 0.0175754614174366, 0.03384137898683548, -0.006995723117142916, 0.00098072225227952, 5.709960987587692e-06, 0.0036816573701798916, -0.004971098620444536, -0.05311695113778114, -0.01978101022541523, -0.004310583230108023, -0.016288891434669495, 0.0007796957506798208, 0.013325187377631664, 0.02038983441889286, -0.028786998242139816, 0.02435292862355709, 0.014290113933384418, -0.018873518332839012, -0.003951607272028923, -0.0016986741684377193, -0.009287425316870213, -0.002077752724289894, 0.04406501352787018, -0.009321887046098709, -2.7282170776743442e-05, 0.00019671881454996765, -0.028878897428512573, 0.017391666769981384, 0.014416473917663097, 0.017357204109430313, -0.03809165582060814, 0.019723573699593544, -0.006599413696676493, 0.020987169817090034, -0.036023952066898346, 0.0428243950009346, 0.01982695981860161, 0.018770134076476097, -0.013968471437692642, 0.020791886374354362, 0.005568434949964285, -0.008328242227435112, -0.041170231997966766, 0.014336063526570797, -0.006375412922352552, 0.015335451811552048, -0.005195099860429764, -0.04990052804350853, 0.039745815098285675, 0.04957888647913933, 0.026627399027347565, -0.019160699099302292, 0.01166528183966875, -0.006444335915148258, -0.005008432548493147, 0.026512527838349342, 0.01160784624516964, 0.000405283848522231, -0.020033730193972588, 0.010734817013144493, 0.002049034694209695, -0.051141150295734406, -0.001383493305183947, 0.02795991860330105, 0.00048174572293646634, 0.004755713511258364, 0.03264670819044113, -0.03951607272028923, -0.019964806735515594, 0.008402909152209759, 0.05513870343565941, 0.014726629480719566, -0.02839643321931362, -0.023732617497444153, 0.018161311745643616, 0.012394721619784832, 0.004784431308507919, 0.015232067555189133, -0.026007089763879776, 0.02943028323352337, -0.009815838187932968, 0.009781376458704472, 0.027316633611917496, -0.023227179422974586, 0.007943419739603996, -0.0029838080517947674, 0.04806257039308548, 0.00700721051543951, -0.02901674248278141, 0.00396309420466423, -0.0062547968700528145, -0.010120249353349209, 0.019712086766958237, 0.011004766449332237, -0.05311695113778114, -0.019264085218310356, -0.020332397893071175, 0.034025177359580994, 0.004299095831811428, 0.05206012725830078, 0.021274350583553314, -0.0011874923948198557, -0.006421361584216356, -0.03152095898985863, -0.03106147050857544, -0.04241085425019264, 0.024835390970110893, -0.01524355448782444, -0.01027532760053873, 0.013807650655508041, -0.009901992045342922, -0.009735427796840668, 0.04980862885713577, -0.03200342133641243, -0.05325479805469513, 0.025846267119050026, 0.01230282336473465, 0.00805254839360714, -0.011119638569653034, -0.005617255344986916, 0.03430086746811867, 0.012739337980747223, -0.0033169377129524946, 0.034829281270504, -0.0019901625346392393, -0.003187706461176276, 0.023916414007544518, -0.0161395575851202, -0.014646218158304691, 0.009884761646389961, 0.026880118995904922, -0.013692778535187244, -0.04654625803232193, -0.003141757333651185, -0.04463937506079674, -0.021239887923002243, -0.007627520710229874, -0.0003580785123631358, 0.006013564765453339, -0.019218135625123978, 0.023571796715259552, 0.006501772440969944, 0.006725773215293884, -0.01550776045769453, -0.04061884433031082, 0.029522180557250977, -0.0016110839787870646, -0.005028535146266222, 0.00416986458003521, 0.006421361584216356, 0.002874679397791624, 0.002665037289261818, 0.02014860138297081, 0.008408652618527412, 0.009718196466565132, -0.005872846581041813, -0.04236490651965141, -0.021814249455928802, 0.024950264021754265, -0.007196749560534954, -0.008512037806212902, 0.04769498109817505, -0.027109863236546516, 0.028189662843942642, 0.03724160045385361, 0.012624465860426426, 0.008138702251017094, 0.010872662998735905, -0.027155812829732895, -0.016001710668206215, -0.04567322880029678, -0.01928705908358097, -0.011004766449332237, 0.011148356832563877, 0.03600097820162773, -0.020814860239624977, 0.018930954858660698, 0.033450815826654434, 0.005011304281651974, 0.02738555707037449, 0.028901871293783188, -0.010591226629912853, 0.0066511062905192375, 0.022491997107863426, 0.009603324346244335, -0.014611756429076195, -0.029935721307992935, 0.021366247907280922, -0.04990052804350853, 0.0038051449228078127, 0.014795552007853985, -0.018414029851555824, 0.02305487170815468, -0.010539533570408821, 0.007684956770390272, 0.03416302427649498, 0.006168642546981573, 0.003575400449335575, 0.011205793358385563, 0.013440059497952461, -0.029889773577451706, -0.0025803190656006336, 0.03714970126748085, 0.01211902778595686, 0.001365544507279992, 0.03200342133641243, -0.020171575248241425, -0.006886594463139772, 0.014910425059497356, 0.00511756120249629, -0.0286032035946846, -0.01650715060532093, -0.010769277811050415, 0.008535011671483517, 0.02791396901011467, 0.026121960952878, 0.01740315370261669, -0.014255652204155922, 0.023709643632173538, 0.018161311745643616, -0.026535501703619957, 0.004950996022671461, 0.004928021691739559, 0.05201417952775955, -0.011653794907033443, -0.024789443239569664, 0.022446047514677048, -0.013876574113965034, 0.012544055469334126, 0.009247220121324062, 0.0062547968700528145, 0.04705169424414635, -0.04004448279738426, -0.007328853011131287, -0.0031475010327994823, -0.04847611114382744, 0.0001050004648277536, 0.008707320317626, -0.03999853506684303, -0.041744593530893326, 0.010700355283915997, -0.02713283710181713, 0.021079067140817642, -0.020378345623612404, 0.015278016217052937, 0.002126573584973812, -0.00297806435264647, -0.004020530730485916, 0.024697544053196907, -0.023284615948796272, -0.011475742794573307, 0.0233305636793375, 0.008816448971629143, -0.009436759166419506, -0.038321398198604584, 0.014508371241390705, 0.005008432548493147, 0.015186117962002754, 0.009913479909300804, -0.011596358381211758, -0.008477576076984406, 0.04539753496646881, -0.02366369403898716, 0.043996091932058334, -0.021239887923002243, -0.026259807869791985, -0.018747160211205482, 0.002966577187180519, -0.0010173377813771367, 0.017276793718338013, 0.004557558335363865, 0.006025052163749933, -0.009919223375618458, 0.014186729677021503, 0.031360138207674026, -0.013060980476439, 0.001135081984102726, -0.0019312906078994274, 0.0301195178180933, 0.03632262349128723, -0.018207259476184845, 0.023801540955901146, 0.019999267533421516, -0.014002933166921139, -0.0038453503511846066, -0.020366858690977097, -0.006312232930213213, 0.006071001291275024, -0.02754637785255909, -0.0015234939055517316, 0.01834510639309883, -0.022423073649406433, 0.023709643632173538, -0.039699867367744446, 0.0036041184794157743, -0.028143713250756264, -0.002277343301102519, 0.019149212166666985, -0.014278627000749111, -0.0005603614263236523, -0.01593278907239437, -0.014726629480719566, -0.004339301027357578, -0.040963463485240936, -0.02839643321931362, 0.051233045756816864, 0.009304656647145748, -0.026903092861175537, 0.024421852082014084, 0.010717585682868958, -0.02129732444882393, 0.030624955892562866, 0.0002202317409683019, -0.02897079475224018, -0.019516803324222565, -0.025961140170693398, 0.015289503149688244, 0.0014718013117089868, -0.01164805144071579, -0.022813638672232628, -0.02534082904458046, 0.012210926041007042, 0.027592327445745468, 0.01704704947769642, 0.018046438694000244, 0.021722352132201195, 0.02223927713930607, -0.01953977905213833, 0.021504094824194908, 0.04576512426137924, -0.01867823675274849, 0.032141268253326416, -0.03972284123301506, -0.0143016017973423, -0.004118171986192465, -0.0012556978035718203, -0.05160063877701759, -0.008265062235295773, -0.013554931618273258, 0.012693389318883419, 0.017966028302907944, -0.0027267811819911003, -0.018873518332839012, 0.012911646626889706, -0.0397917665541172, 0.02639765478670597, 0.042686548084020615, 0.029476232826709747, -0.012004155665636063, 0.0011357999173924327, -0.006817671004682779, 0.014807039871811867, 0.005416228901594877, 0.00962055567651987, -0.04438665881752968, 0.042686548084020615, 0.025800319388508797, 0.004003299865871668, -0.03567933663725853, 0.011200048960745335, 0.004301967564970255, 0.008471832610666752, -0.03542661666870117, 0.05242771655321121, 0.03852817043662071, 0.022549433633685112, 0.014726629480719566, -0.02345692366361618, 0.016863252967596054, 0.02901674248278141, 0.017276793718338013, -0.010361481457948685, 0.03216424584388733, 0.04535158351063728, 0.02305487170815468, -0.00638689985498786, -0.012291336432099342, 0.017276793718338013, -0.003934376407414675, 0.006048026494681835, -0.005467921495437622, 0.026144936680793762, 0.010309789329767227, 0.031980447471141815, 0.008127215318381786, 0.028993768617510796, 0.00827654916793108, 0.02190614864230156, 0.008862397633492947, 0.003058474976569414, -0.0015335452044382691, 0.013796163722872734, 0.02297445945441723, 0.006048026494681835, 0.0024482158478349447, 0.015990223735570908, 0.014037394896149635, -0.023158255964517593, 0.005565563216805458, -0.011245998553931713, -0.07457509636878967, 0.03956202045083046, -0.018299156799912453, -0.004876329097896814, 0.029085665941238403, -0.04020530730485916, -0.018827570602297783, -0.007208236958831549, -0.025892216712236404, -0.006501772440969944, 0.055965784937143326, -0.025042161345481873, 0.014359037391841412, 0.01789710484445095, -0.012360259890556335, 0.0010762098245322704, -0.028557254001498222, 0.04401906579732895, -0.00016647508891765028, -0.0031733473297208548, 0.010447636246681213, 0.019149212166666985, -0.023204205557703972, 0.0106658935546875, 0.04073371738195419, -6.376310193445534e-05, 0.017150433734059334, -0.01736869290471077, -0.003190578194335103, -0.012417695485055447, 0.003802273189648986, -0.004953868221491575, -0.020343884825706482, -0.05104925110936165, 0.009195527993142605, -0.0026248320937156677, -0.029246488586068153, 0.02665037475526333, 0.01986142061650753, 0.04723548889160156, 0.0079089580103755, 0.0017503666458651423, 0.019114751368761063, -0.03632262349128723, 0.0016125199617817998, 0.001489032176323235, -0.026466578245162964, 0.025111084803938866, -0.034025177359580994, -0.022055482491850853, -0.021228400990366936, 0.015473298728466034, -0.036759138107299805, -0.0024726262781769037, 0.0028990895953029394, 0.022917024791240692, -0.03799975663423538, -0.023204205557703972, -0.004827508237212896, 0.012808261439204216, -0.007937676273286343, -0.01786264218389988, 0.007575828116387129, -0.0019542649388313293, 0.012164976447820663, 0.014496884308755398, -0.011079433374106884, -0.0396309457719326, -0.009057681076228619, 0.012360259890556335, -0.020033730193972588, -0.02943028323352337, 0.019838446751236916, 0.02289404906332493, 0.013600880280137062, -0.021768301725387573, 0.018930954858660698, -0.02545570209622383, -0.009063424542546272, -0.0065592085011303425, -0.01485298853367567, -0.00570053793489933, 0.021837225183844566, -0.0022601124364882708, 0.03517390042543411, 0.00014951347839087248, 0.009787119925022125, 0.04769498109817505, 0.003426066366955638, 0.03710375353693962, -0.003345655743032694, 0.00613992428407073, 0.027201760560274124, 0.001968624070286751, 0.004118171986192465, 0.038229502737522125, -0.01994183100759983, 0.0030211415141820908, 0.0004368737281765789, 0.010447636246681213, -0.020332397893071175, 0.028672127053141594, 0.0059274109080433846, 0.03983771428465843, 0.02195209637284279, 0.015680069103837013, -0.02423805557191372, 0.0049940734170377254, -0.0039142738096416, -0.006880850996822119, 0.020033730193972588, -0.01238323375582695, 0.01602468639612198, -0.030510082840919495, 0.005723512265831232, -0.00758157204836607, 0.003403092036023736, 0.00797213800251484, 0.031980447471141815, 0.027086889371275902, 0.0005578486016020179, -0.0015263657551258802, -0.018701210618019104, 0.046615179628133774, -0.016817305237054825, 0.01818428561091423, -0.000812721555121243, -0.01505975890904665, 0.016288891434669495, -0.006340951193124056, 0.022377124056220055, 0.019597213715314865, 0.01485298853367567, -0.010039838962256908, 0.011946719139814377, -0.038643043488264084, 0.00595612870529294, -0.022216303274035454, 0.07645900547504425, 0.00831675436347723, -0.015186117962002754, -0.007001466583460569, 0.05091140419244766, -0.03731052204966545, 0.01031553279608488, 0.006122693885117769, -0.015071245841681957, 0.0007394904387183487, -0.003446168964728713, 0.04107833653688431, 0.016518637537956238, 0.01781669445335865, 0.027040939778089523, -0.010941586457192898, 0.013853599317371845, -0.0071622878313064575, 0.021239887923002243, -0.011464255861938, -0.010137480683624744, -0.013256263919174671, 0.022377124056220055, -0.014898937195539474, -0.010775022208690643, -0.001845136284828186, -0.010189172811806202, -0.019344495609402657, -0.016518637537956238, 0.005769461393356323, 0.017219357192516327, 0.03149798512458801, -0.02341097593307495, -0.012521080672740936, 0.024054259061813354, 0.009212758392095566, -0.013531956821680069, 0.005275510251522064, 0.011332152411341667, 0.03347378969192505, 0.007897471077740192, 0.007736649364233017, 0.0066511062905192375, -0.007018697448074818, 0.04528266191482544, 0.024306979030370712, -0.051876332610845566, -0.03903360664844513, 0.03335891664028168, 0.0012729286681860685, 0.03278455510735512, 0.008770500309765339, -0.03253183513879776, -0.03942417353391647, -0.016690945252776146, -0.009166809730231762, -0.01679433137178421, 0.010740560479462147, -0.015806429088115692, -0.010011120699346066, 0.021768301725387573, -0.011309178546071053, -0.043835271149873734, -0.007460955996066332, 0.008075523190200329, -0.03338189050555229, -0.003041244111955166, -0.019792497158050537, -0.008512037806212902, 0.007449468597769737, -0.015473298728466034, -0.01810387521982193, 0.031819626688957214, -0.016001710668206215, 0.023112306371331215, 0.023525847122073174, 0.0006073872791603208, 0.009706709533929825, 0.005376023706048727, -0.01960870251059532, -0.02607601322233677, 0.004445557948201895, 0.003058474976569414, 0.0465003065764904, -0.015369913540780544, -0.021056093275547028, 0.009988146834075451, 0.004962483420968056, -0.011108151637017727, -0.015473298728466034, 0.018080899491906166, 0.009746914729475975, -0.010694610886275768, 0.013210314325988293, 0.03689698502421379, 0.01700109988451004, -0.001789136091247201, -0.03988366201519966, 0.022158866748213768, -0.021308811381459236, -0.007018697448074818, -0.028626177459955215, -0.040963463485240936, 0.01578345336019993, -0.02623683400452137, -0.0004982586251571774, -0.002755499444901943, 0.0015464683528989553, -0.008621166460216045, -0.0299586970359087, -0.002171086613088846, 0.007598802912980318, -0.003902786411345005, -0.011194305494427681, -0.027201760560274124, -0.028373459354043007, 0.03825247660279274, -0.020010754466056824, -0.017667360603809357, -0.015760479494929314, 0.014278627000749111, 0.01117707509547472, 0.0304411593824625, 0.007995111867785454, -0.0072599295526742935, 0.0143820121884346, -0.014221190474927425, 0.03069387935101986, 0.03184260055422783, -0.0018422645516693592, -0.0143016017973423, 0.016323354095220566, 0.03600097820162773, 0.025317855179309845, -8.306928066303954e-06, -0.0036270928103476763, -0.033450815826654434, -0.0003214629541616887, 0.02570842020213604, 0.009901992045342922, -0.041790544986724854, 0.02975192666053772, -0.01013173721730709, -0.02129732444882393, -0.04691384732723236, 0.004784431308507919, -0.0018523158505558968, -0.01191225741058588, 0.04764902964234352, 0.014002933166921139, 0.015048271045088768, 0.024697544053196907, -0.007977881468832493, -0.029660027474164963, 0.007977881468832493, -0.005370280239731073, 0.013600880280137062, 0.0004164121055509895, 0.017908591777086258, -0.026627399027347565, -0.008454601280391216, -0.0011135434033349156, -0.03432384505867958, 0.005381767172366381, -0.008609678596258163, -0.004784431308507919, 0.009264451451599598, -0.0008888244046829641, -0.01572601869702339, -0.035702310502529144, -0.03951607272028923, -0.01851741410791874, 0.00040133509901352227, 0.0230089221149683, -0.0393093004822731, 0.0058297691866755486, 0.01658756099641323, 0.028786998242139816, -0.02979787439107895, -0.014910425059497356, -0.017805207520723343, -0.005944641772657633, -0.004744226112961769, -0.012946108356118202, -0.012808261439204216, -0.005140535533428192, -0.033244043588638306, -0.023686667904257774, -0.012210926041007042, -0.0006870799697935581, 0.03225614130496979, -0.018896494060754776, 0.002733960747718811, 0.0012923134490847588, -0.01411780621856451, -0.008224857039749622, 0.002731089014559984, 0.0020619577262550592, -0.021239887923002243, -0.015381401404738426, 0.02550165168941021, 0.0028660639654845, -0.020056704059243202, 0.0262827817350626, 0.01920664869248867, -0.034553587436676025, 0.011613589711487293, -0.01514016930013895, 0.025616522878408432, -0.02104460634291172, 0.016564585268497467, -0.03432384505867958, -0.019103264436125755, 0.043260909616947174, -0.009189784526824951, 0.0015378529205918312, 0.03032628819346428, -0.016725407913327217, -0.015128682367503643, -0.03264670819044113, 0.002805755939334631, -0.030556032434105873, 0.016231456771492958, -0.006605157162994146, 0.004037761595100164, 0.01193523220717907, 0.014508371241390705, 0.023732617497444153, 0.01631186716258526, -0.02481241710484028, 0.039171453565359116, 0.007122082635760307, 0.005815410055220127, 0.02665037475526333, -0.033083222806453705, 0.016415251418948174, -0.021262863650918007, -0.008328242227435112, -0.004928021691739559, 0.0004767200443893671, -0.029085665941238403, 0.008799218572676182, -0.024858366698026657, -0.016323354095220566, -0.003029756946489215, -0.01899987831711769, -0.028005866333842278, 0.0008809269638732076, -0.009442503564059734, -0.055598195642232895, 0.011395332403481007, 0.013210314325988293, -0.002633447526022792, 0.010924356058239937, 0.03264670819044113, -0.008023830130696297, 0.03673616051673889, -0.002969448920339346, 0.006450079847127199, -0.02248051017522812, -0.04091751202940941, -0.027684224769473076, 0.01879310794174671, 0.014967860653996468, 0.014921911992132664, 0.027592327445745468, -0.007874496281147003, 0.010057070292532444, -0.025019187480211258, 0.017839668318629265, -0.008632653392851353, -0.006760234944522381, -0.01168825663626194, -0.03158988431096077, -0.02267579175531864, 0.018655261024832726, 0.004189967177808285, 0.016644995659589767, 0.0067430040799081326, -0.00762177724391222, 0.015358426608145237, 0.026949042454361916, -0.0106658935546875, -0.003181962762027979, -0.0029048332944512367, 0.03430086746811867, 0.01712745986878872, -0.0030326286796480417, 0.006473054178059101, 0.015197605825960636, 0.023100819438695908, -0.009655016474425793, 0.01994183100759983, 0.004227300640195608, 0.02251497097313404, -0.015197605825960636, 0.0020633938256651163, 0.047097641974687576, 0.000530566438101232, -0.026949042454361916, -0.0010036966996267438, -0.017747770994901657, 0.04980862885713577, 0.007397776003926992, 0.017253819853067398, 0.006105463020503521, 0.01875864714384079, 0.003741965163499117, 0.02063106559216976, -0.010752047412097454, -0.017931565642356873, 0.016725407913327217, -0.00446566054597497, -0.016989612951874733, 0.009735427796840668, 0.002593242097645998, -0.002609037095680833, -0.023181229829788208, -0.004859098233282566, -0.023468410596251488, 0.0031331421341747046, 0.013566418550908566, -0.017380179837346077, -0.0038166323211044073, 0.005005560349673033, -0.02211291715502739, -0.005591409280896187, -0.024858366698026657, -0.036965906620025635, -0.023962361738085747, -0.012164976447820663, -0.026167910546064377, 0.00903470627963543, -0.04829231649637222, -0.01526652928441763, 0.00792618840932846, -0.0391484797000885, -0.02970597706735134, 0.026949042454361916, -0.009649273008108139, 0.009729684330523014, -0.0023276000283658504, -0.00041030949796549976, 0.038849812000989914, -0.016196994110941887, 0.016541611403226852, 0.01497934851795435, 0.031612858176231384, -0.011923745274543762, -0.0021782659459859133, 0.0160591471940279, -0.012544055469334126, -0.012992057017982006, 0.008781987242400646, 0.012084566056728363, -0.0001732058881316334, 0.023066358640789986, 0.033404864370822906, -0.02586924284696579, -0.02366369403898716, -0.006967004854232073, 0.020998656749725342, -0.020688502117991447, 0.04181351885199547, 0.028878897428512573, 0.006967004854232073, -0.01115410029888153, -0.007627520710229874, 0.0008220549207180738, 0.022733228281140327, -0.017483564093708992, -0.010700355283915997, 0.0027684224769473076, 0.007265673018991947, 0.029108641669154167, -0.025317855179309845, -0.013807650655508041, 0.01342857163399458, 0.025938166305422783, -0.0385051965713501, 0.01209605298936367, -0.0056229992769658566, -0.0014761090278625488, -0.01952829211950302, 0.00638689985498786, 0.01238323375582695, -0.017621411010622978, 0.021435171365737915, 0.009350605309009552], [0.01728125475347042, 0.04667183756828308, 0.04628705233335495, 0.008849994279444218, -0.05418640747666359, 0.02645944617688656, 0.009647851809859276, -0.00951770506799221, -0.013263674452900887, 0.03311391547322273, -0.05989024043083191, 0.012505426071584225, -0.02992248721420765, -0.0775902271270752, -0.020914051681756973, 0.02725164406001568, -0.014429338276386261, 0.03798028081655502, -0.0218533743172884, 0.02188732475042343, 0.02026897668838501, 0.011175664141774178, -0.03361187130212784, 0.0371880829334259, 0.0005227098590694368, 0.015346026048064232, 0.03655432537198067, 0.009591265581548214, 0.0018234722083434463, 0.012833623215556145, 0.05373372510075569, -0.004368411377072334, 0.022057082504034042, -0.005036122165620327, 0.0846068486571312, 0.06935136020183563, -0.0034262605477124453, 0.03884038329124451, 0.006411152891814709, -0.012946794740855694, -0.0626516193151474, 0.018876969814300537, -0.03352133184671402, -0.011005907319486141, -0.06491504609584808, 0.05269254744052887, 0.027749598026275635, -0.015911882743239403, 0.013693724758923054, 0.08238869160413742, 0.009098971262574196, -0.002458645962178707, -0.03838769719004631, 0.06935136020183563, 0.02167230099439621, -0.005613295361399651, -0.001607032143510878, -0.008742481470108032, 0.0017088863532990217, -0.017756573855876923, -0.040379513055086136, 0.013806896284222603, -0.04078692942857742, 0.01811872236430645, -0.0007384425844065845, -0.05536339059472084, -0.045245878398418427, 0.04601544141769409, -0.027319546788930893, 0.009976048022508621, -0.0066884225234389305, 0.018876969814300537, 0.015934515744447708, -0.06391914188861847, -0.03786711022257805, 0.044725291430950165, 0.018661944195628166, -0.000847369956318289, 0.019816290587186813, 0.02017843909561634, -0.007955941371619701, -0.003983628936111927, -0.05251147225499153, 0.04058321937918663, -0.014463289640843868, -0.013478699140250683, -0.03302337974309921, 0.003290455089882016, -0.004320313688367605, 0.010117512196302414, 0.008584041148424149, -0.03390611708164215, 0.01592319831252098, 0.07089049369096756, -0.011882984079420567, 0.011424641124904156, 0.02983194962143898, -0.014225630089640617, -0.032525427639484406, 0.05101761221885681, -0.00197483878582716, 0.019148580729961395, 0.008866969496011734, -0.0223286934196949, -0.004857877269387245, -0.09230249375104904, -0.0584416501224041, 0.028632333502173424, 0.02469397336244583, -0.016590910032391548, 0.024942949414253235, -0.0004873438156209886, -0.031303174793720245, 0.03329499065876007, -0.0025633294135332108, -0.01000434160232544, -0.015413928776979446, -0.03675803169608116, 0.057536277920007706, -0.015945833176374435, -0.021287517622113228, 0.06206313148140907, -0.023358551785349846, -0.05300942808389664, -0.0247845109552145, 0.010875759646296501, -0.00813701469451189, -0.005771735217422247, -0.0025576709304004908, -0.007921990007162094, 0.013829530216753483, -0.022928500548005104, 0.016692763194441795, -0.03062414936721325, -0.00866326130926609, -0.01720203459262848, 0.02795330621302128, -0.017688671126961708, -0.058849066495895386, -0.04640022665262222, 0.006320616230368614, -0.024060213938355446, 0.0327291339635849, 0.01166795939207077, -0.044589485973119736, 0.03363450616598129, 0.03171059116721153, 0.04934267699718475, 0.018152672797441483, -0.023154843598604202, -0.03465304523706436, 0.046060711145401, 0.00156883685849607, 0.006580910179764032, 0.0371880829334259, 0.0011868837755173445, 0.00224362057633698, 0.01683988608419895, -0.019193848595023155, 0.004337289370596409, -0.07591529190540314, -0.04443104565143585, 0.021921277046203613, -0.023720700293779373, 0.044023629277944565, -0.023879140615463257, 0.0020455708727240562, -0.0023369868285954, -0.042529765516519547, -0.03526417165994644, -0.039247799664735794, -0.023924408480525017, -0.019533362239599228, -0.0026991351041942835, -0.006071639247238636, 0.004184508230537176, 0.024761876091361046, 0.007118473760783672, 0.056087687611579895, -0.03684856742620468, 0.01362582203000784, -0.0029198189731687307, -0.006705398205667734, -0.023222746327519417, -0.025373000651597977, 0.006841203663498163, -0.004105288069695234, 0.02790803834795952, -0.0055765146389603615, 0.029764046892523766, 0.007299547549337149, 0.014791486784815788, 0.008023844100534916, -0.027183741331100464, -0.04085483402013779, 0.008555748499929905, -0.004591924604028463, 0.007395743392407894, 0.0019253264181315899, 0.010977613739669323, 0.015934515744447708, -0.023675432428717613, -0.010802199132740498, -0.00047744132461957633, -0.02609729766845703, -0.021038541570305824, 0.0247845109552145, 0.009313995949923992, 0.07279177010059357, 0.013942701742053032, 0.024060213938355446, -0.037753939628601074, -0.05137976258993149, 0.0193975567817688, -0.02978668175637722, 0.005768905859440565, 0.033272355794906616, 0.01728125475347042, -0.01737179234623909, -0.031484249979257584, 0.02609729766845703, -0.02320011332631111, 0.0011826398549601436, -0.0023850847501307726, -0.04357094317674637, -0.00491446303203702, -0.0075258901342749596, -0.011096443980932236, -0.016783300787210464, -0.03510573133826256, -0.013614504598081112, 0.030148828402161598, 0.02496558427810669, -0.036124274134635925, 0.03404192253947258, 0.04015317186713219, -0.009274386800825596, -0.005426562856882811, 0.007186376489698887, 0.01724730245769024, 0.06441709399223328, -0.020155804231762886, -0.026731057092547417, -0.015538416802883148, -0.006671446841210127, -0.009523362852633, -0.029582973569631577, -0.011266200803220272, 0.03220854699611664, 0.008714188821613789, -0.014983877539634705, -0.017790526151657104, 0.04216761887073517, -0.046309687197208405, 0.04176020249724388, -0.0022096692118793726, 0.022736109793186188, -0.025893589481711388, 0.010179756209254265, -0.002151669003069401, 0.007865403778851032, 0.019680485129356384, -0.011283176951110363, 0.048618383705616, -0.024512900039553642, -0.005601978395134211, 0.06446236371994019, -0.07224854826927185, -0.02224947325885296, 0.04633232206106186, -0.045110072940588, -0.02074429579079151, 0.03583002835512161, -0.00046577054308727384, -0.024580802768468857, 0.02473924122750759, -0.00028222089167684317, -0.04105854034423828, 0.02013317123055458, 0.03164269030094147, -0.031869031488895416, 0.006411152891814709, 0.009455460123717785, -0.0444084107875824, -0.013637139461934566, 0.0023525480646640062, 0.0024402558337897062, -0.008216234855353832, -0.016794618219137192, 0.05835111066699028, 0.0212762001901865, -0.053190503269433975, -0.0045013874769210815, -0.01891092024743557, 0.007016619201749563, -0.021400688216090202, -0.011622690595686436, -0.029764046892523766, -0.013965335674583912, -0.019929463043808937, 0.007984234020113945, 0.017745256423950195, -0.015051780268549919, 0.030148828402161598, -0.05785315856337547, 0.006722373887896538, 0.03372504189610481, 0.008963165804743767, -0.02412811666727066, 0.002063961233943701, -0.030873125419020653, -0.013422113843262196, -0.019544679671525955, -0.013886116445064545, -0.020212391391396523, -0.024716608226299286, 0.01750759780406952, -0.0027769403532147408, 0.0011416153283789754, 0.018741164356470108, 0.02088010124862194, 0.000635527481790632, 0.007503255736082792, -0.020981956273317337, 0.014904657378792763, -0.0044023627415299416, 0.056268759071826935, -0.00437689945101738, -0.0743761658668518, 0.006433787290006876, -0.0320274718105793, 0.03603373467922211, 0.0015518611762672663, 0.006156517658382654, -0.016817253082990646, -0.002499670721590519, -0.012584646232426167, 0.0002841660170815885, 0.00699964351952076, 0.018718529492616653, -0.01891092024743557, -0.004557973239570856, 0.03653169050812721, 0.0019479606999084353, 0.025893589481711388, 0.020993271842598915, 0.030420439317822456, 0.048935260623693466, -0.0100496094673872, 0.03723335266113281, -0.009534680284559727, -0.011645324528217316, 0.026052027940750122, -0.008572724647819996, -0.06835545599460602, -0.00019628144218586385, 0.011288835667073727, 0.005896223708987236, 0.012539377436041832, 0.03444933891296387, -0.006049004849046469, -0.013716359622776508, 0.015312074683606625, 0.07777130603790283, -0.03732388839125633, 0.004170361906290054, -0.01828847825527191, -0.0378897450864315, 0.03474358469247818, 0.017835794016718864, 0.0001538422075100243, 0.005698173772543669, -0.03655432537198067, 0.01292415987700224, -0.019680485129356384, -0.016828568652272224, 0.0048154378309845924, 0.024377094581723213, 0.010162780992686749, 0.06459816545248032, 0.029990389943122864, -0.04305035620927811, 0.005757588893175125, -0.010819174349308014, 0.09270991384983063, 0.07505518943071365, -0.06849125772714615, -0.033181820064783096, 0.041126444935798645, 0.018967507407069206, -0.028179649263620377, 0.0038761163596063852, 0.005307733081281185, -0.00844257790595293, -0.03515100106596947, 0.010383465327322483, 0.0011536397505551577, 0.02584831975400448, 0.009936438873410225, -0.04730559512972832, 0.008550089783966541, -0.005412416532635689, -0.01877511478960514, -0.08062321692705154, 0.0193975567817688, 0.01346738263964653, 0.03449460491538048, 0.023403821513056755, 0.05101761221885681, -0.03370240703225136, 0.0216270312666893, -0.04730559512972832, 0.01991814561188221, -0.01999736577272415, 0.041443321853876114, 0.021909959614276886, 0.009432826191186905, 0.04173756763339043, -0.04716978967189789, -0.021593080833554268, 0.05531812086701393, -0.0008883945411071181, -0.012890208512544632, 0.01640983484685421, -0.05074600130319595, -0.00278118415735662, 0.01419167872518301, 0.01935228891670704, 0.05975443497300148, -0.06541299819946289, -0.024422362446784973, -0.01693042367696762, 0.04592490568757057, 0.021615713834762573, -0.013376845046877861, -0.0329781100153923, -0.02636890858411789, -0.002361035905778408, -0.010343855246901512, -0.01872984692454338, -0.001742837717756629, -0.020110536366701126, -0.022736109793186188, 0.059120677411556244, -0.04569856449961662, 0.01872984692454338, -0.01794896461069584, 0.01680593565106392, 0.01833374798297882, -0.0011444445699453354, -0.0058283209800720215, 0.023177478462457657, -0.021400688216090202, -0.0100496094673872, -0.028134379535913467, 0.030737319961190224, -0.015787392854690552, -0.044249970465898514, 0.06821964681148529, -0.030148828402161598, -0.0034460655879229307, 0.0336797721683979, 0.049116335809230804, 0.02316616103053093, 0.015900565311312675, 0.05273781716823578, -0.02246449887752533, 0.020993271842598915, -0.05278308689594269, 0.003361186943948269, -0.03768603503704071, 0.02679895982146263, 0.02254371903836727, -0.025938857346773148, -0.0027132814284414053, 0.030352536588907242, 0.02298508770763874, -0.032050106674432755, -0.04216761887073517, 0.017711305990815163, 0.0015320562524721026, 0.04802989214658737, -0.008895263075828552, -0.05092707648873329, 0.06364753097295761, 0.04649076238274574, 0.03779920935630798, 0.024626070633530617, -0.05916594713926315, -0.018458236008882523, -0.032525427639484406, -0.03614690527319908, 0.037052277475595474, -0.009008433669805527, -0.0420997180044651, -0.018265845254063606, -0.031212639063596725, 0.03585266321897507, 0.09406796842813492, -0.007491938769817352, 0.0063149575144052505, -0.0023567918688058853, 0.004982365760952234, -0.032389622181653976, 0.03610163927078247, -0.01627402938902378, 0.02584831975400448, 0.04359357804059982, -0.008436919189989567, -0.028926579281687737, -0.0373917892575264, 0.012448840774595737, 0.027138473466038704, -0.0028773797675967216, -0.01397665310651064, -0.000412014196626842, 0.0034234311897307634, 0.018707212060689926, -0.011232249438762665, 0.007305206265300512, 0.048935260623693466, -0.0011536397505551577, -0.02799857407808304, -0.018718529492616653, 0.018707212060689926, 0.0065130069851875305, 0.005121000576764345, -0.00022209863527677953, -0.020336879417300224, 0.014791486784815788, 0.013150502927601337, -0.03313655033707619, -0.011220932006835938, 0.04653603211045265, 0.03356660157442093, 0.0013495675520971417, -0.005041780415922403, -0.0005301366909407079, 0.01912594586610794, -0.014384069480001926, 0.03295547515153885, -0.018537456169724464, 0.02004263363778591, -0.016681447625160217, 0.017496280372142792, -0.006722373887896538, 0.039813656359910965, 0.019884193316102028, -0.009195166639983654, 0.01750759780406952, 0.0060263704508543015, 0.01346738263964653, 0.009483753703534603, 0.0006143078790046275, -0.02575778402388096, -0.019884193316102028, 0.013682407326996326, -0.01002697553485632, 0.024444997310638428, -0.014055873267352581, 0.025644611567258835, 0.028157014399766922, 0.005443538539111614, -0.016251396387815475, 0.010938004590570927, 0.009183849208056927, -0.0009067849023267627, -0.020914051681756973, 0.012324352748692036, -0.024444997310638428, -0.03229908272624016, 0.02716110646724701, 0.002373767551034689, -0.03399665281176567, 0.05803423374891281, 0.022521084174513817, 0.028632333502173424, -0.05147029832005501, 0.0114529337733984, 0.005715149454772472, 1.4312187886389438e-05, 0.024716608226299286, 0.00246288999915123, -0.03223118185997009, -0.01287889201194048, 0.03456250950694084, -0.010666392743587494, -0.025124024599790573, 0.004818267188966274, 0.04223552346229553, 0.00901409238576889, -0.027138473466038704, 0.008651944808661938, -0.019816290587186813, 0.030284633859992027, 0.007056229282170534, -0.04013053700327873, -0.007656037341803312, 0.0059754434041678905, 0.029492435976862907, -0.015323391184210777, -0.009710095822811127, -0.021434640511870384, -0.05133449286222458, 0.019091995432972908, -0.016138223931193352, 0.017688671126961708, -0.020382147282361984, 0.005350172054022551, -0.007678671274334192, 0.014406704343855381, 0.012086693197488785, 0.03377031162381172, -0.024716608226299286, -0.022917184978723526, -0.019069360569119453, -0.02799857407808304, -0.029605606570839882, -0.03639588505029678, -0.0026029394939541817, -0.0037855792324990034, 0.023901773616671562, -0.004659827332943678, -0.0109266871586442, 0.0028759650886058807, -0.01149820163846016, -0.004142068792134523, -0.051651373505592346, -0.005225684028118849, -0.021513860672712326, 0.027885403484106064, 0.00160986150149256, -0.02189864218235016, 0.006524324417114258, -0.020302927121520042, 0.009987365454435349, 0.0077409157529473305, 0.03847823664546013, 0.012120644561946392, -0.03539997711777687, -0.012403571978211403, 0.0037714329082518816, 0.003717676503583789, -0.047848816961050034, 0.044861096888780594, 0.010513612069189548, 0.016964374110102654, -0.0024077189154922962, 0.022057082504034042, 0.01458777766674757, 0.007469304371625185, -0.025033487007021904, -0.00012218962365295738, -0.01454250980168581, 0.0005983931478112936, -0.02799857407808304, -0.023539626970887184, 0.04447631165385246, 0.025599343702197075, 0.02469397336244583, 0.024942949414253235, -0.007135449443012476, -0.007005302235484123, -0.03241225332021713, -0.027183741331100464, 0.0247845109552145, 0.031687960028648376, -0.020370829850435257, 0.020778246223926544, -0.026255736127495766, -0.02754588983952999, -0.03293284401297569, 0.006065980531275272, -0.02654998190701008, -0.0018659115303307772, -0.020823515951633453, -0.018480870872735977, -0.016025053337216377, -0.022577671334147453, 0.01592319831252098, 0.011351079680025578, -0.011232249438762665, -0.029492435976862907, 0.029990389943122864, 0.006671446841210127, -0.007616427261382341, 0.05667617544531822, 0.011894301511347294, 0.005833979696035385, 0.000478502333862707, 0.008997117169201374, -0.015583685599267483, 0.008680237457156181, -0.0024374264758080244, 0.00825018621981144, 0.02781750075519085, 0.020370829850435257, -0.0003276662318967283, 0.01042307447642088, 0.011464250274002552, 0.013897432945668697, -0.00789935514330864, -0.00860101729631424, -0.050248049199581146, 0.013422113843262196, 0.012143278494477272, 0.022136302664875984, -0.0072146691381931305, 0.04671710357069969, -0.008148332126438618, 0.0029877217020839453, -0.006382860243320465, -0.03992682695388794, -0.03277440369129181, -0.045517489314079285, -0.0118037648499012, -0.028134379535913467, 0.012516743503510952, 0.004538168199360371, 0.0022153279278427362, -0.008748140186071396, 0.016172176226973534, -0.03075995482504368, -0.004900316242128611, 0.02505612187087536, -0.00733915762975812, 0.0204500500112772, 0.0031122101936489344, 0.007967257872223854, 0.03207274153828621, 0.015323391184210777, -0.001386348158121109, 0.04216761887073517, -0.012505426071584225, 0.009461118839681149, -0.01327499095350504, -0.015040462836623192, 0.025870954617857933, 0.009455460123717785, 0.0031914301216602325, 0.019159898161888123, -0.019374923780560493, 0.000874955439940095, -0.04015317186713219, 0.00014013786858413368, 0.025938857346773148, 0.0022959623020142317, 0.0401984378695488, -0.023969676345586777, -0.0107512716203928, -0.02211366780102253, 0.006399835925549269, -0.015515782870352268, -0.02557670883834362, 0.01926175132393837, -0.038274526596069336, 0.01895618997514248, 0.03198220208287239, 0.005369977094233036, 0.0035167974419891834, -0.004812608473002911, -0.0044532897882163525, -0.014112458564341068, 0.04585700109601021, 0.007469304371625185, -0.03408718854188919, -0.021355420351028442, 0.01645510457456112, -0.0017541548004373908, -0.02084614895284176, -0.004269386641681194, -0.0202237069606781, 0.038500867784023285, -0.0034234311897307634, 0.041126444935798645, 0.02034819684922695, -0.029990389943122864, 0.0236075296998024, -0.02153649553656578, -0.03524153679609299, -0.03870457783341408, -0.012482792139053345, 0.0009619558695703745, 0.04062848910689354, 0.015402611345052719, 0.008782091550529003, -0.006773300934582949, 0.013727676123380661, -0.04400099441409111, -0.001561763696372509, 0.0002613549295347184, -0.034992560744285583, -0.02351699210703373, -0.024422362446784973, -0.006507348734885454, -0.03587529435753822, 0.00045586805208586156, -0.04268820583820343, -0.010938004590570927, -0.0052794404327869415, -0.01079088170081377, 0.00538695277646184, 0.007780525367707014, 0.027387449517846107, 0.0009053702233359218, 0.007882379926741123, -0.030692052096128464, -0.005689686164259911, 0.019589949399232864, -0.033883482217788696, -0.00574910081923008, 0.02365279756486416, 0.049252141267061234, 0.010292927734553814, 0.006597885861992836, -0.026029394939541817, -0.019952096045017242, 0.0005690393154509366, 0.006162176374346018, -0.040424782782793045, 0.009415850974619389, -0.02214762009680271, 0.02324538119137287, -0.017088863998651505, 0.0014528363244608045, -0.009019751101732254, -0.03451723977923393, 0.028202282264828682, -0.019861560314893723, -0.04026634246110916, -0.0009414436062797904, 0.025735149160027504, -0.009976048022508621, -0.004690949339419603, -0.01502914633601904, 0.02473924122750759, -0.011107761412858963, 0.011170005425810814, 0.016194811090826988, 0.05599714815616608, 0.04250713437795639, -0.02365279756486416, 0.030941028147935867, 0.006914765108376741, -0.018446918576955795, 0.011984838172793388, -0.0070505705662071705, -0.04162439703941345, -0.019091995432972908, 0.0020738637540489435, -0.01133976224809885, 0.010298586450517178, -0.0007140400703065097, 0.03773130476474762, -0.012686500325798988, -0.01489334087818861, 0.009557314217090607, -0.0018843017751350999, -0.01292415987700224, -0.05916594713926315, 0.010604148730635643, -0.0034969926346093416, 0.02926609292626381, 0.03114473633468151, -0.02514665760099888, 0.021706251427531242, 0.027319546788930893, -0.0073617915622889996, -0.0209253691136837, -0.026731057092547417, 0.04076429456472397, -0.007480621803551912, 0.04246186465024948, -0.00717505905777216, -0.03899882361292839, 0.016658812761306763, -0.019193848595023155, 0.018967507407069206, 0.04153386130928993, -0.005918858107179403, 0.008221893571317196, 0.017100179567933083, 0.02464870549738407, 0.01930702105164528, 0.01467831525951624, -0.0013912994181737304, 0.013105234131217003, 0.05079127103090286, 0.013682407326996326, -0.032706499099731445, 0.034109823405742645, 0.004481582902371883, -0.0050276340916752815, -0.004526851233094931, 0.012992062605917454, 0.029017116874456406, 0.020031316205859184, -0.015730807557702065, -0.0073617915622889996, -0.012131961062550545, -0.0048041208647191525, 0.0039921170100569725, -0.04802989214658737, 0.011158687993884087, -0.016692763194441795, 0.02324538119137287, 0.008436919189989567, 0.0007561256061308086, 0.015504465438425541, 0.012007473036646843, 0.006224420387297869, -0.002670842222869396, -0.021344102919101715, -0.016387201845645905, 0.010213708505034447, 0.033498700708150864, -0.03997209668159485, 0.015187585726380348, 0.02935663051903248, 0.005667051766067743, 0.05577080696821213, -0.002198352012783289, -0.0013276406098157167, 0.012844940647482872, -0.0037714329082518816, -0.011973521672189236, -0.01689647138118744, 0.047577206045389175, -0.003092405153438449, -0.015074414201080799, -0.006592227146029472, 0.04726032540202141, -0.011215274222195148, 0.00793896522372961, 0.014372752979397774, 0.01592319831252098, 0.005401099566370249, 0.015855295583605766, 0.016262713819742203, -0.042054448276758194, 0.03324972093105316, 0.009353606030344963, -0.011962204240262508, -0.004368411377072334, -0.05644983425736427, -0.018876969814300537, 3.503446714603342e-05, -0.003918555565178394, 0.01789237931370735, -0.007005302235484123, 0.018062137067317963, 0.0009810535702854395, 0.013388162478804588, -0.015889247879385948, 0.00796159915626049, 0.0029085020069032907, 0.05961862951517105, -0.02114039473235607, 0.007384425960481167, -0.03395138308405876, 0.00793896522372961, 0.04952375218272209, 0.01723598688840866, -0.043321967124938965, 0.049025800079107285, 0.004818267188966274, -0.008182283490896225, -0.027455352246761322, -0.024467630311846733, 0.003833677154034376, 0.009042385034263134, -0.06319484114646912, 0.058849066495895386, 0.02768169529736042, -0.018107404932379723, -0.009421508759260178, -0.005768905859440565, 0.01908067800104618, -0.009529021568596363, 0.01697569154202938, 0.019680485129356384, 0.015583685599267483, -0.004597583319991827, 0.012460158206522465, -0.006920423824340105, -0.016421152278780937, -0.00340079702436924, -0.0011776885949075222, 0.015119682997465134, -0.005098366178572178, 0.028587065637111664, 0.025373000651597977, 0.012482792139053345, 0.04180547222495079, 0.007441011723130941, 0.042552400380373, -0.01322972308844328, 0.000591673597227782, -0.000828272313810885, -0.019205166026949883, 0.02260030433535576, 0.0193975567817688, 0.021004589274525642, 0.029990389943122864, 0.013750310987234116, 0.014497241005301476, -0.009178190492093563, 0.005709491204470396, 0.0202237069606781, -0.09605978429317474, 0.016511689871549606, -0.017292572185397148, 0.015572368167340755, 0.013218405656516552, -0.005992419086396694, -0.060297656804323196, 0.0007709793280810118, -0.015911882743239403, -0.010519270785152912, 0.05251147225499153, 0.011735862120985985, 0.003533773124217987, 0.009438484907150269, 0.026165200397372246, 0.009240435436367989, -0.03777657449245453, 0.02829281985759735, 0.023403821513056755, 0.0019352289382368326, 0.01926175132393837, 0.019759705290198326, -0.023584894835948944, 0.0035903588868677616, 0.029017116874456406, 0.011356738395988941, 0.0212762001901865, -0.01454250980168581, -0.02469397336244583, -0.03895355388522148, 0.00098741939291358, -0.031212639063596725, -0.010717320255935192, -0.0509723462164402, -0.015561050735414028, 0.009240435436367989, -0.006660129874944687, 0.026052027940750122, 0.029515068978071213, 0.013591870665550232, -0.0022167423740029335, 0.00827282015234232, 0.016443787142634392, -0.02206839993596077, -0.004000604618340731, 0.017575500532984734, -0.00791633129119873, -0.006207444705069065, -0.014316166751086712, -0.011266200803220272, -0.007146766409277916, 0.02799857407808304, -0.058849066495895386, 0.01596846804022789, -0.005053097847849131, 0.016568275168538094, -0.03506046161055565, -0.024241289123892784, -0.022487133741378784, -0.006750667002052069, -0.002993380418047309, -0.04343513771891594, -0.007429694756865501, 0.01723598688840866, 0.018933555111289024, 0.0047645107842981815, 0.008731164038181305, -0.027840135619044304, -0.009087653830647469, -0.034585144370794296, -0.013908750377595425, -0.025870954617857933, 0.027568524703383446, -0.0006493201944977045, 0.01938624121248722, 0.004956902004778385, -0.026165200397372246, -0.007118473760783672, 0.02720637619495392, 0.015504465438425541, 0.005573685746639967, -0.01719071716070175, 0.029945120215415955, -0.022091034799814224, 0.028021208941936493, 0.015866613015532494, 0.01723598688840866, 0.011611373163759708, -0.0334307961165905, 0.051832444965839386, -0.015402611345052719, 0.018786432221531868, 0.05436748266220093, -0.028768138960003853, 0.01061546616256237, 0.05088180676102638, -0.026346273720264435, -0.009059361182153225, -0.011962204240262508, 0.026776324957609177, -0.010938004590570927, 0.013738993555307388, 0.00228747446089983, 0.0043542650528252125, 0.006886472459882498, 0.002403475111350417, -0.005412416532635689, 0.0205745380371809, -0.002549183089286089, 0.009987365454435349, -0.000936492346227169, -0.014418020844459534, 0.01026463508605957, -0.024150751531124115, -0.03141634911298752, 0.0055510513484478, 0.0027345011476427317, -0.003975141327828169, 0.0015037633711472154, 0.009297020733356476, -0.001953619299456477, -0.00384499435313046, -0.022102350369095802, -0.01325235702097416, -0.0385914072394371, 0.01882038451731205, 0.003754457226023078, 0.014123775996267796, 0.022962452843785286, -0.015391293913125992, 0.026572616770863533, 0.009987365454435349, 0.0037686035502701998, -0.03322708606719971, 0.03716544806957245, -0.039202529937028885, 0.019850242882966995, 0.006037687882781029, 0.06563933938741684, -0.01131712831556797, -0.006445104256272316, 0.01255069486796856, 0.003745969384908676, -0.031076833605766296, 0.012709135189652443, 0.00011157980770803988, -0.025259830057621002, 0.028315454721450806, -0.004184508230537176, 0.025305097922682762, 0.03723335266113281, 0.007531548850238323, -0.0012413475196808577, -0.016771983355283737, 0.02394704334437847, 0.03329499065876007, 0.03478885069489479, -0.011724544689059258, 0.019058043137192726, 0.02571251429617405, 0.019273068755865097, -0.01863930933177471, -0.044951632618904114, -0.023019038140773773, -0.012279083952307701, -0.012369620613753796, -0.01491597481071949, 0.0059641264379024506, 0.0013071282301098108, 0.023313283920288086, -0.043503038585186005, 0.01837901584804058, -0.00116566417273134, -0.02557670883834362, -0.03236698731780052, -0.008719847537577152, 0.01991814561188221, 0.003021673299372196, 0.012618597596883774, -0.002147424966096878, -0.01889960467815399, 0.005491636227816343, 0.0032508450094610453, 0.04375201836228371, -0.06002604588866234, -0.0570383258163929, 0.04422733560204506, -0.02614256553351879, 0.021728886291384697, 0.005222854670137167, -0.014655680395662785, -0.033272355794906616, 0.0027557206340134144, -0.01772262342274189, -0.005061585456132889, -0.04080956429243088, -0.019284386187791824, 0.0031631372403353453, -0.0014111044583842158, -0.012595963664352894, -0.03773130476474762, -0.023222746327519417, 0.05672144517302513, 0.016172176226973534, 0.011017223820090294, -0.018492186442017555, -0.028157014399766922, -0.027455352246761322, -0.02017843909561634, -0.030782587826251984, 0.017349157482385635, -0.03048834204673767, -0.014610412530601025, 0.033272355794906616, -0.038410332053899765, 0.033272355794906616, -0.00042050203774124384, -0.028315454721450806, -0.03220854699611664, 0.002642549341544509, 0.0233811866492033, 0.007107156328856945, -0.026708422228693962, -0.036079004406929016, -0.008668920025229454, 0.017620768398046494, 0.00715242512524128, -0.016432469710707664, -0.0024275239557027817, 0.01360318809747696, -0.020291609689593315, -0.009557314217090607, 0.02237396128475666, 0.019771022722125053, -0.010524929501116276, -0.02069902792572975, 0.017122814431786537, -0.028270184993743896, -0.0014393972232937813, -0.026731057092547417, -0.03005829267203808, 0.005568027030676603, -0.01614954136312008, -0.0025336220860481262, -0.009529021568596363, 0.004835242871195078, -0.02114039473235607, -0.009811949916183949, -0.01758681610226631, -0.006795935332775116, 0.01614954136312008, -0.02154781110584736, 0.0005746979149989784, -0.02110644429922104, 0.04173756763339043, -0.008295455016195774, 0.026165200397372246, 0.01820925809442997, 0.032095376402139664, 0.0070392535999417305, 0.016387201845645905, 0.00045445343130268157, -0.012346986681222916, -0.00457494892179966, -0.008997117169201374, 0.011011566035449505, 0.012754403054714203, -0.004419338423758745, -0.018492186442017555, 0.008329406380653381, 0.022747427225112915, 0.02293981797993183, -0.03329499065876007, 0.0010114683536812663, -0.02707057073712349, -0.017926331609487534, 0.0023129379842430353, -0.0007235888624563813, -0.001997473184019327, 0.009619559161365032, 0.0046739736571908, -0.001650886028073728, -0.018526138737797737, 0.01243752334266901, -0.01833374798297882, -0.028157014399766922, 0.018503503873944283, 0.032525427639484406, 0.012663866393268108, 0.00156600761692971, -0.01891092024743557, -0.015368659980595112, 5.415422492660582e-05, 0.007865403778851032, 0.026595251634716988, -0.006660129874944687, 0.015572368167340755, -0.024716608226299286, -0.03807082027196884, 0.0014401045627892017, -0.032095376402139664, -0.0007076741894707084, 0.0017583987209945917, -0.01470094919204712, 0.010756930336356163, 0.014734900556504726, -0.03356660157442093, 0.002636890858411789, -0.024580802768468857, -0.04212234914302826, -0.008187942206859589, 0.027477987110614777, -0.01311655156314373, 0.027794865891337395, -0.03730125352740288, 0.02482977882027626, 0.008731164038181305, 0.011469908989965916, -0.016692763194441795, -0.014995194971561432, -0.018843017518520355, -0.01785842888057232, -0.050610195845365524, 0.010270293802022934, 0.004693778697401285, -0.02935663051903248, -0.014429338276386261, -0.024422362446784973, 0.04689817875623703, -0.026527348905801773, 0.01622876152396202, 0.007554182782769203, -0.016217444092035294, -0.03752759471535683, 0.016070321202278137, 0.016036370769143105, -0.007322181947529316, -0.009721413254737854, 0.015413928776979446, 0.030035657808184624, -0.018175307661294937, 0.03444933891296387, -0.0070392535999417305, -0.04329933226108551, 0.011356738395988941, -0.018978822976350784, 0.01239225547760725, -0.05685725063085556, 0.004484411794692278, -0.0032338693272322416, -0.018322430551052094, 0.002236547414213419, 0.0364864207804203, 0.01926175132393837, 0.022736109793186188, 0.009195166639983654, -0.006897789426147938, -0.04298245161771774, -0.017315205186605453, 0.008278478868305683, 0.023833870887756348, -0.014904657378792763, -0.007265596184879541, -0.00165654462762177, 0.007112815044820309, 0.024988219141960144, -0.00903672631829977, -0.028134379535913467, 0.007056229282170534, -0.009704437106847763, -0.0018673260929062963, 0.0006454299436882138, -0.015538416802883148, 0.021287517622113228, -0.03225381672382355, -0.0008247357327491045, 0.015561050735414028, 0.010672051459550858, 0.008357699029147625, -4.294761674827896e-05, -0.05092707648873329, -0.04302772134542465, -0.022079717367887497, -0.007627744227647781, -0.02421865426003933, -0.009896828792989254, -0.0509723462164402, -0.0364864207804203, 0.006320616230368614, -0.01601373590528965, 0.02435445971786976, -0.012822305783629417, 0.01856008917093277, -0.0038761163596063852, 0.04802989214658737, 0.00985155999660492, -0.03171059116721153, -0.02759115770459175, -0.02571251429617405, -0.022362645715475082, 0.010100536979734898, 0.043933089822530746, -0.013003380037844181, 0.027229009196162224, 0.014712266623973846, -0.002761379349976778, -0.0026085979770869017, 0.017077546566724777, -0.00170039851218462, 0.016692763194441795, -0.02110644429922104, -0.0383424311876297, -0.01863930933177471, -0.00717505905777216, 0.0005085634184069932, -0.012109327130019665, 0.022611621767282486, -0.0098741939291358, -0.03141634911298752, 0.002063961233943701, -0.005296416115015745, 0.009466777555644512, -0.04400099441409111, 0.003972311969846487, -0.005746271926909685, -0.0011020053643733263, 0.003703530179336667, 0.004011922050267458, 0.0027500621508806944, 0.010875759646296501, 0.018616676330566406, 0.0012441767612472177, 0.018401650711894035, -0.03444933891296387, -0.011526495218276978, 0.024512900039553642, -0.02725164406001568, -0.006739349570125341, 0.0022591815795749426, 0.006269688718020916, 0.026776324957609177, 0.04515534266829491, -0.015561050735414028, 0.012222498655319214, 0.009585607796907425, 0.017835794016718864, -0.0077635496854782104, -0.011283176951110363, -0.021615713834762573, 0.002945282496511936, -0.0013332990929484367, -0.02562197856605053, 0.015459196642041206, 0.011203956790268421, -0.017258619889616966, -0.011107761412858963, 0.007656037341803312, 0.00897448230534792, -9.548827074468136e-05, 0.004450460430234671, -0.006778959650546312, -0.053416844457387924, 0.015742124989628792, -0.011334103532135487, 0.02833808772265911, 0.02399231120944023, -0.036124274134635925, -0.008680237457156181, 0.013671090826392174, -0.018016867339611053, 0.0066884225234389305, -0.05405060201883316, 0.001298640388995409, 0.03313655033707619, -0.025237195193767548, -0.023720700293779373, 0.019510729238390923, -0.023449089378118515, -0.0018234722083434463, 0.0019889853429049253, 0.03211800754070282, 0.016160858795046806, -0.0004077702760696411, 0.006790276616811752, -0.004456119146198034, 0.01381821371614933, -0.020076585933566093, -0.010326879099011421, 0.04707925394177437, 0.014044555835425854, -0.016432469710707664, -0.009766681119799614, -0.007905013859272003, -0.006507348734885454, 0.01219986379146576, 0.011600056663155556, 0.0016438128659501672, -0.006965692155063152, -0.029017116874456406, 0.01934097148478031, -0.039949461817741394, 0.025780417025089264, 0.011022882536053658, 0.014757534489035606, -0.017360474914312363, -0.007520231418311596, -0.004082654137164354, 0.0204500500112772, -0.006671446841210127, -0.0065413000993430614, 0.0006326981820166111, 0.01381821371614933, 0.011090785264968872, -0.036079004406929016, 0.0010234927758574486, -0.010117512196302414, 0.0056529054418206215, -0.006196127738803625, 0.003298942930996418, -0.01790369674563408, -0.002631232375279069, -0.026527348905801773, 0.032706499099731445, -0.018277162685990334, -0.0033866504672914743, 0.029447166249155998, 0.0006026370683684945], [0.01625283621251583, 0.011203133501112461, -0.0032511388417333364, 0.033923935145139694, -0.03737809136509895, 0.011494792066514492, 0.003339780494570732, 0.008578202687203884, 0.05261297896504402, 0.012009484693408012, 0.0038573320489376783, 0.004329133313149214, -0.016390087082982063, -0.02212032675743103, -0.0275417510420084, 0.03847609832882881, -0.039436858147382736, 0.061808813363313675, -0.023538589477539062, 0.0060104611329734325, 0.029051514342427254, 0.014377068728208542, -0.035799700766801834, 0.02616923861205578, -0.007365817204117775, -0.012844429351389408, -0.0269012451171875, -0.021445507183670998, -0.02252064272761345, 0.00277218921110034, 0.01502901129424572, -0.011757857166230679, 0.04236488416790962, 0.02310395985841751, 0.045109909027814865, 0.03927673399448395, -0.03575395047664642, -0.006365026813000441, 0.00642793346196413, -0.012901617214083672, -0.04529291391372681, 0.06208331510424614, 0.0022074575535953045, 0.0072971913032233715, -0.04620791971683502, 0.06693285703659058, 0.04872419312596321, 0.006525153294205666, -0.000834945123642683, 0.04016886651515961, -0.0018500324804335833, -0.023630090057849884, -0.010882880538702011, 0.023538589477539062, 0.03557094931602478, 0.011248883791267872, 0.026832619681954384, 0.0065079969353973866, -0.020164495334029198, -0.0580572783946991, -0.03827022388577461, 0.056044258177280426, 0.004420633893460035, -0.016424398869276047, 0.009904964827001095, -0.00899567548185587, -0.010465407744050026, 0.030607027933001518, -0.03630295395851135, 0.0012223939411342144, 0.03380955755710602, 0.041655752807855606, 0.0052470010705292225, -0.017122093588113785, -0.04261651262640953, 0.006021898705512285, 0.037515342235565186, 0.018689045682549477, 0.026146363466978073, 0.01680183969438076, -0.027427375316619873, 0.03374093025922775, -0.019203737378120422, 0.013439184986054897, 0.02454509772360325, 0.00852101482450962, -0.022829458117485046, -0.022920958697795868, -0.026924120262265205, 0.005993304308503866, 0.042502135038375854, 0.056135762482881546, 0.030378276482224464, 0.03138478472828865, 0.031796541064977646, -0.0027150013484060764, 0.018860608339309692, 0.02493397705256939, -0.03412980958819389, 0.045155659317970276, -0.009441741742193699, 0.0024976867716759443, 0.05000520497560501, -0.015589454211294651, 0.02454509772360325, -0.031705036759376526, -0.06761911511421204, 0.021571321412920952, 0.03625720366835594, -0.017968475818634033, -0.0333063043653965, 0.010059372521936893, -0.040031615644693375, 0.04554453864693642, 0.005844615865498781, -0.014194066636264324, 0.008944205939769745, -0.045750416815280914, 0.05041695758700371, -0.00010258101247018203, -0.019295237958431244, 0.0333063043653965, -0.014937510713934898, -0.0499594546854496, -0.0027779079973697662, 0.012558489106595516, -0.015783892944455147, 0.013828063383698463, -0.02320689894258976, -0.008784079924225807, 0.00598758552223444, -0.0039145201444625854, 0.03255142271518707, -0.018849171698093414, -0.011231726966798306, -0.020084433257579803, 0.03611995279788971, -0.03689771145582199, -0.02073637582361698, 0.011586292646825314, -0.0020187371410429478, -0.02290952019393444, -0.024362096562981606, 0.014948948286473751, -0.05691351741552353, -0.0162185225635767, -0.011117351241409779, 0.0482666902244091, 0.015383577905595303, -0.009985028766095638, 0.0052470010705292225, 0.07406992465257645, -0.02374446578323841, 0.04812943935394287, 0.007097033318132162, 0.026763994246721268, 0.006645247805863619, -0.008606797084212303, -0.009653338231146336, 0.02902863919734955, -0.02477385103702545, -0.004981076344847679, 0.030607027933001518, 0.0074573177844285965, 0.05078296363353729, 0.032048165798187256, 0.005578691605478525, 0.014617257751524448, -0.04213613271713257, -0.0490901954472065, 0.017316533252596855, -0.0465281717479229, -0.04552166536450386, -0.03911660611629486, -0.025139853358268738, -0.025986235588788986, 0.04684842750430107, 0.03216254338622093, -0.005621582269668579, -0.06158006191253662, -0.017648223787546158, -0.013793750666081905, -0.031224658712744713, -0.06633810698986053, -0.05842328071594238, 0.01566951721906662, 0.0022074575535953045, 0.03099590726196766, 0.020358934998512268, -0.0018757670186460018, -0.021571321412920952, 0.02360721491277218, -0.02463659830391407, 0.015040449798107147, -0.029920771718025208, -0.007949135266244411, -0.01502901129424572, 0.03861335292458534, 0.00149689638055861, -0.006845406256616116, -0.014388506300747395, -0.054168492555618286, -0.0014854588080197573, 0.04991370439529419, -0.07791295647621155, -0.01748809590935707, 0.02847963385283947, 0.019501114264130592, -0.0009335944196209311, 0.018391666933894157, 0.007869071327149868, -0.04950195178389549, -0.04623079672455788, -0.0004703714803326875, -0.026283614337444305, 0.022635018453001976, -0.03470169007778168, 0.038750603795051575, 0.030103774741292, -0.0015998348826542497, 0.03307754918932915, 0.009327366016805172, 0.00931592844426632, -0.01132894679903984, -0.05064570903778076, 0.03602845221757889, 0.0033769526053220034, 0.00983062107115984, 0.009110051207244396, -0.061168305575847626, -0.011020131409168243, 0.03083578124642372, 0.03676046058535576, -0.015520828776061535, -0.03504481911659241, -0.03355792909860611, -0.004949623253196478, 0.018414542078971863, 0.009567555971443653, -0.006965500768274069, -0.0038573320489376783, 0.030675653368234634, -0.002614922123029828, -0.012032359838485718, 0.018300166353583336, -0.013908126391470432, -0.027816252782940865, 0.023721590638160706, 0.017064904794096947, 0.0071027521044015884, -0.0503712072968483, -0.005532940849661827, 0.02395034208893776, -0.053344983607530594, 0.03504481911659241, 0.0006412206566892564, 0.0435543954372406, -0.01330193318426609, 0.053344983607530594, -0.020038682967424393, 0.04128975048661232, -0.004363446030765772, -0.03660033270716667, -0.00815501157194376, -0.07050139456987381, -0.013999626971781254, 0.0879780501127243, -0.08527877926826477, -0.0016527337720617652, 0.006416495889425278, -0.09250734001398087, 0.0013131799641996622, -0.002846533665433526, 0.0003688627330120653, 0.011443322524428368, 0.00943602342158556, -0.0027836267836391926, -0.04270801320672035, 0.007125627249479294, 0.06688711047172546, -0.0256202332675457, 0.009910684078931808, 0.0347931906580925, -0.0069769383408129215, -0.007485911715775728, 0.002198879374191165, -0.011815045028924942, 0.01916942372918129, 0.020587686449289322, 0.057965777814388275, 0.029394643381237984, -0.04520140960812569, -0.05906378850340843, 0.029303140938282013, 0.0089156124740839, 0.03872772678732872, -0.008778360672295094, -0.004440649878233671, 0.010145154781639576, -0.021159566938877106, 0.020461874082684517, 0.02591761015355587, -0.0269012451171875, 0.019821368157863617, -0.030515527352690697, 0.03342067822813988, 0.06418783217668533, -0.02360721491277218, -0.01693909242749214, -0.017751161009073257, -0.05778277665376663, 0.015074762515723705, 0.007182815577834845, -0.011185976676642895, -0.04950195178389549, -0.03861335292458534, -0.005072577390819788, 0.022852333262562752, -0.017602473497390747, 0.019935743883252144, 0.05329923331737518, 0.0005668762605637312, 0.05329923331737518, 0.019249487668275833, 0.021502695977687836, 6.891603334224783e-06, 0.005884647369384766, -0.012306861579418182, -0.04236488416790962, 0.030561277642846107, -0.0192151740193367, 0.014228379353880882, 0.0105683458968997, -0.03705783560872078, -0.02059912495315075, 0.004449227824807167, -0.021411195397377014, 0.030538402497768402, -0.03339780494570732, 0.014960385859012604, -0.04941045120358467, -0.018597545102238655, 0.017179280519485474, -0.019135111942887306, 0.015932582318782806, 0.017007717862725258, 0.01381662581115961, 0.02932601608335972, 0.008778360672295094, -0.029143014922738075, 0.010259530507028103, 0.016916217282414436, 0.00028915691655129194, -0.005824599880725145, -0.07553393393754959, 0.005287032574415207, -0.00963618140667677, -0.002201738767325878, 0.0021316835191100836, -0.0023532870691269636, 0.025780359283089638, -0.014868885278701782, 0.000930735026486218, 0.04494978487491608, -0.02147982083261013, -0.0069597819820046425, -0.04790068417787552, -0.05439724400639534, 0.06386758387088776, -0.03129328414797783, 0.019032172858715057, -0.035456571727991104, 0.00610768049955368, -0.019729867577552795, -0.017522409558296204, 0.012203923426568508, 0.007148502394556999, 0.018837733194231987, -0.01891779713332653, 0.04941045120358467, 0.05965854227542877, -0.020381810143589973, 0.028067881241440773, -0.0006726740975864232, 0.04238776117563248, 0.04074074700474739, -0.05005095526576042, 0.008509577251970768, 0.0066395290195941925, -0.01651589944958687, -0.0058045838959515095, -0.011940858326852322, 0.0018414543010294437, -0.011700669303536415, -0.02809075638651848, -0.02162851020693779, 0.009687650948762894, 0.03886497765779495, 0.005587269552052021, -0.05265872925519943, 0.0204961858689785, -0.03207104280591011, -0.03509056940674782, -0.07461892813444138, 0.01229542400687933, -0.0032482794485986233, -0.028022129088640213, -0.022452017292380333, 0.047717683017253876, -0.019398177042603493, 0.07406992465257645, -0.001354641281068325, 0.018997861072421074, -0.0159097071737051, 0.039436858147382736, -0.01724790781736374, 0.005095452535897493, 0.06464533507823944, 0.003923098091036081, -0.01152910478413105, 0.03154491260647774, 0.028342382982373238, 0.0043234145268797874, 0.007085595745593309, -0.006822530645877123, -0.02236051671206951, -0.01285586692392826, -0.010025059804320335, 0.07196540385484695, -0.05997879430651665, -0.014628695324063301, 0.005907522514462471, 0.04019173979759216, 0.01759103499352932, -0.008149293251335621, -0.014148316346108913, 0.01669890247285366, -0.013073181733489037, 0.00245765526778996, -0.03197954222559929, -0.04298251494765282, -0.007748976815491915, -0.056135762482881546, 0.007548818830400705, 0.014194066636264324, 0.009012832306325436, -0.01340487226843834, -0.030286775901913643, 0.011043006554245949, 0.006422214675694704, 0.02021024562418461, 0.0049982331693172455, -0.010030779056251049, 0.0008385193650610745, -0.06231206655502319, 0.012249673716723919, -0.0137708755210042, -0.04330277070403099, 0.010362469591200352, -0.038155846297740936, -0.004786637146025896, 0.023218335583806038, 0.023184023797512054, 0.029234515503048897, 0.03211679309606552, 0.01039678230881691, -0.01748809590935707, -0.0033769526053220034, -0.013279058039188385, 0.009333085268735886, -0.03504481911659241, -0.023378463461995125, 0.036394454538822174, 0.02079356461763382, 0.03483894094824791, 0.0294632688164711, 0.016046958044171333, -0.0015426469035446644, -0.010671284981071949, 0.002716430928558111, -0.0011980889830738306, 0.06642960757017136, -0.011060163378715515, -0.03399255871772766, 0.05128621682524681, 0.0074744741432368755, -0.0006079801241867244, -0.0256202332675457, -0.0452471598982811, -0.006021898705512285, -0.005149781238287687, -0.022154638543725014, 0.0050697182305157185, -0.009275896474719048, 0.004352008458226919, -0.059795793145895004, -0.02236051671206951, 0.02404184453189373, 0.0335121788084507, -0.04069499671459198, 0.02454509772360325, 0.009619024582207203, 0.013038869015872478, 0.04286814108490944, 0.06638385355472565, 0.009796307422220707, 0.013027431443333626, 0.057233769446611404, 0.010865723714232445, -0.013953876681625843, -0.025757484138011932, -0.025345731526613235, -0.020713500678539276, -0.028250882402062416, -0.009533243253827095, -0.0017571019707247615, -0.005398549139499664, 0.021765761077404022, -0.01753384619951248, -0.0411982499063015, 0.03355792909860611, -0.008692579343914986, 0.01793416403234005, -0.05005095526576042, -0.04144987836480141, 0.004981076344847679, -0.024819601327180862, -0.030881531536579132, 0.006925469264388084, 0.010013622231781483, 0.01216961070895195, -0.05174371972680092, -0.01596689596772194, 0.02793062850832939, -0.013439184986054897, 0.01808285154402256, 0.006690998561680317, -0.034907568246126175, -0.022406267002224922, 0.003980286419391632, -0.001255991868674755, -0.040672119706869125, 0.0051040309481322765, -0.0071199084632098675, 0.01285586692392826, 0.002770759630948305, -0.01738515868782997, 0.03774409368634224, 0.00815501157194376, -0.010208061896264553, 0.042891014367341995, -0.009321647696197033, -0.004883856978267431, 0.006696717347949743, 0.018197227269411087, -0.023275524377822876, 0.022040262818336487, -0.0011652059620246291, 0.03762971609830856, 0.03502194210886955, 0.06299832463264465, 0.0069769383408129215, -0.015440765768289566, -0.000674818642437458, -0.004011739511042833, 0.04051199182868004, 0.007874790579080582, 0.0025877580046653748, 0.01915798708796501, -0.019501114264130592, -0.009064300917088985, 0.026786869391798973, 0.022703643888235092, -0.05320773273706436, 0.018357355147600174, 0.020610563457012177, 0.004592197947204113, -0.028250882402062416, 0.005675910972058773, 0.026832619681954384, 0.0062449318356812, 0.010351032018661499, -0.0008413787581957877, -0.009859214536845684, -0.007171377539634705, 0.0178312249481678, -0.0051469216123223305, -0.01485744770616293, 0.02502547763288021, 0.05069146305322647, 0.00694834440946579, -0.01586395688354969, -0.02341277524828911, 0.0020601984579116106, 0.007686070166528225, 0.043279893696308136, -0.022337641566991806, 0.02783912792801857, -0.010402500629425049, 0.01754528470337391, 0.0074401614256203175, -0.018746232613921165, -0.007989166304469109, -0.011460479348897934, 0.00822935625910759, -0.014800259843468666, 0.006525153294205666, 0.009453179314732552, 0.01808285154402256, 0.03163641318678856, -0.002962339436635375, 0.005824599880725145, -0.01754528470337391, 0.0015312092145904899, 0.047763433307409286, -0.022154638543725014, -0.043234143406152725, -0.022005951032042503, -0.0030624184291809797, -0.026718243956565857, 0.003760112449526787, 0.03730946406722069, 0.015635205432772636, -0.014068253338336945, 0.032986048609018326, 0.014331317506730556, -0.003019527532160282, -0.004615073092281818, -0.02329839952290058, 0.011815045028924942, -0.0008721172926016152, 0.047717683017253876, -0.02857113443315029, 0.007920540869235992, -0.013530685566365719, -0.012032359838485718, 0.023218335583806038, -0.0026192113291472197, 0.04163287952542305, -0.013885251246392727, 0.010488282889127731, 0.0029394642915576696, -0.013393434695899487, -0.05041695758700371, 0.02719862200319767, -0.010825692676007748, -0.00802919827401638, -0.01940961368381977, 0.02873126231133938, 0.026626741513609886, 0.006153430789709091, -0.04330277070403099, -0.001834305701777339, -0.028365258127450943, 0.0019486817764118314, -0.0461164191365242, -0.006645247805863619, 0.06130555644631386, 0.04080937057733536, 0.00299379276111722, -0.02021024562418461, -0.003980286419391632, -0.008320856839418411, -0.0019172283355146646, -0.029646269977092743, 0.015692392364144325, -0.0040374742820858955, -0.022154638543725014, -0.003654314437881112, -0.006119118072092533, -0.04812943935394287, -0.01995861902832985, 0.022703643888235092, -0.01936386339366436, 0.028754137456417084, 0.044217776507139206, -0.018117165192961693, -0.029692020267248154, -0.0009314498747698963, 0.028548259288072586, 0.02847963385283947, -0.0044835410080850124, -0.011906545609235764, 0.032848797738552094, -0.018986422568559647, 0.014308442361652851, 0.008984237909317017, -0.026283614337444305, 0.028982888907194138, -0.004249069839715958, 0.003988864365965128, 0.03760684281587601, -0.01897498592734337, -0.021068066358566284, -0.002327552530914545, 0.014274129644036293, 0.017774036154150963, 0.0013110353611409664, 0.0024976867716759443, 0.018265854567289352, 0.007926259189844131, 0.010974381119012833, -0.026100613176822662, -0.05865203216671944, -0.011506229639053345, -0.03563957288861275, 0.05297898128628731, 0.006999813485890627, 0.04158712923526764, 0.03108740784227848, -0.036280080676078796, 0.021262506023049355, -0.012158173136413097, -0.004249069839715958, -0.06029905006289482, 0.03083578124642372, -0.0038058627396821976, -0.02477385103702545, 0.028548259288072586, -0.0010601229732856154, -0.008418076671659946, 0.025116978213191032, -0.02212032675743103, -0.02616923861205578, 0.045407287776470184, 0.02019880898296833, -0.02950901910662651, -0.015612329356372356, -0.00733150402083993, 0.021502695977687836, -0.003030965104699135, -0.0030938719864934683, 0.018265854567289352, 0.011123069562017918, 0.019935743883252144, 0.03868197649717331, -0.033580806106328964, 0.012352612800896168, 0.0022860912140458822, 0.015440765768289566, -0.013702250085771084, -0.03252854570746422, -0.009458898566663265, -0.029897896572947502, 0.02685549482703209, -0.013324808329343796, -0.005958991590887308, 0.019226612523198128, -0.006227775476872921, 0.007577412761747837, 0.02390459179878235, 0.006633810233324766, 0.006839687004685402, -0.011757857166230679, 0.02902863919734955, 0.010534033179283142, -0.004543588031083345, 0.004294820129871368, 0.03236841782927513, 0.025986235588788986, -0.01656165160238743, 0.014525757171213627, 0.012832991778850555, 0.0131303695961833, -5.361376906876103e-07, -0.011837920174002647, -0.014651570469141006, 0.02325264923274517, -0.010019341483712196, 0.0008292262791655958, -0.0159097071737051, -0.03804147243499756, 0.032299794256687164, 0.03419843688607216, 0.020416123792529106, 0.03337492793798447, 0.004972498398274183, -0.0337180569767952, -0.0062849633395671844, -0.027335872873663902, 0.004352008458226919, -0.014114003628492355, 0.008120698854327202, 0.02265789359807968, -0.00022928821272216737, 0.0028365259058773518, 0.01340487226843834, 0.0006905453628860414, 0.014068253338336945, 0.04602491855621338, -0.017625348642468452, 0.00598758552223444, 0.007994885556399822, -0.029943646863102913, 0.0056730518117547035, 0.01842598058283329, 0.027404500171542168, -0.03568532317876816, -0.0054414402693510056, 0.018883483484387398, -0.010339594446122646, 0.0420675091445446, 0.004226194694638252, 0.018208665773272514, 0.009024269878864288, 0.019878555089235306, -0.003903082339093089, -0.008452389389276505, 0.030035147443413734, -0.01436563115566969, 0.010259530507028103, 0.026443740352988243, 0.04277664050459862, -0.0017885552952066064, 0.004234773106873035, -0.015463640913367271, -0.024453597143292427, 0.005404267925769091, -0.02197163738310337, -0.028205132111907005, 0.0024533660616725683, -0.00042819531518034637, 0.014834572561085224, 0.0023804514203220606, 0.0345873162150383, -0.011626324616372585, -0.014640132896602154, 0.00972768198698759, 0.017064904794096947, 0.021594196557998657, 0.004575041588395834, 0.008635391481220722, 0.0192151740193367, -0.0062849633395671844, -0.01421694178134203, -0.020519061014056206, 0.0028350960928946733, 0.021948762238025665, 0.009258740581572056, -0.0049267481081187725, 0.03783559426665306, -0.0006515859859064221, -0.04019173979759216, 0.014788822270929813, 0.006502277683466673, 0.016447274014353752, 0.008726892061531544, -0.04803793877363205, -0.05430574342608452, 0.028616884723305702, -0.017453784123063087, 0.023973217234015465, -0.025643108412623405, 0.009070020169019699, -0.01748809590935707, -0.0013775164261460304, 0.012752928771078587, -0.000497535802423954, -0.020370373502373695, -0.010619815438985825, 0.019592614844441414, 0.03138478472828865, -0.02813650667667389, 0.0011208852520212531, 0.030927281826734543, 0.0576455257833004, 0.03241416811943054, 0.020953690633177757, -0.05686776712536812, -0.0118493577465415, 0.036783333867788315, 0.010156592354178429, 0.036440204828977585, -0.008904174901545048, -0.034015435725450516, -0.0030995907727628946, 0.01236405037343502, 0.009573274292051792, 0.018929235637187958, -0.0013539263745769858, -0.01362218614667654, -0.027061371132731438, -0.00726859737187624, 0.040283240377902985, -0.024819601327180862, 0.020358934998512268, -0.0031453410629183054, 0.048449691385030746, 0.03994011506438255, -0.006662404164671898, 0.010814255103468895, -0.03403830900788307, -0.024613723158836365, 0.027381625026464462, -0.024911101907491684, -0.005901803728193045, -0.0076517569832503796, 0.003228263696655631, -0.0017785474192351103, 0.037172213196754456, -0.018780546262860298, 0.011397572234272957, -0.04055774584412575, 0.025551607832312584, 0.004057490266859531, 0.01891779713332653, 0.02280658297240734, 0.006582341156899929, -0.015440765768289566, 0.02236051671206951, -0.01537214033305645, 0.0038001439534127712, -0.03412980958819389, -0.011706387624144554, 0.04517853632569313, 0.02360721491277218, -0.022783707827329636, -0.0023918889928609133, 0.04556741565465927, 0.016573088243603706, 0.030584152787923813, -0.0036485956516116858, -0.017648223787546158, 0.01946680247783661, -0.036623209714889526, 0.01704202964901924, -0.014205504208803177, 0.02262357994914055, 0.017602473497390747, -0.025734608992934227, -0.007079876959323883, 0.024865351617336273, -0.008092104457318783, 0.015120512805879116, 0.016573088243603706, 0.000670886947773397, -0.01566951721906662, 0.014354192651808262, 0.018608981743454933, -0.03902510553598404, 0.041861630976200104, -0.009916402399539948, -0.007966291159391403, -0.046139296144247055, -0.02873126231133938, -0.008412357419729233, -0.014125441201031208, 0.009144364856183529, -0.005121187306940556, 0.00884126778692007, -0.02518560364842415, -0.0055129253305494785, 0.040077365934848785, -0.0006047633360140026, 0.012913054786622524, -0.00674818642437458, 0.030881531536579132, -0.015955457463860512, 0.012238236144185066, -0.001588397310115397, 0.0294632688164711, 0.01926092617213726, 0.013690812513232231, -0.06414208561182022, 0.04556741565465927, 0.005309907719492912, 0.024499347433447838, -0.028113631531596184, 0.01842598058283329, 0.018162915483117104, 0.01592114567756653, 0.007148502394556999, 0.054854750633239746, 0.05137771740555763, 0.004086084198206663, 0.036142829805612564, -0.013919563964009285, 0.003242560662329197, 0.03257429599761963, 0.0025448668748140335, 0.02034749835729599, 0.056593265384435654, 0.0382244735956192, 0.03778984397649765, -0.013427747413516045, -0.013118932023644447, 0.03275729715824127, -0.002233192091807723, 0.013564998283982277, 0.0435543954372406, 0.017499534413218498, 0.015978332608938217, 0.0014783103251829743, 0.008103542029857635, 0.006725311279296875, -0.014033940620720387, 0.005758833605796099, 0.009447460994124413, -0.005650176201015711, -0.02045043557882309, 0.012341175228357315, 0.018162915483117104, 0.03637158125638962, -0.02518560364842415, 0.010030779056251049, -0.013873813673853874, -0.02443072199821472, -0.01298168022185564, -0.05320773273706436, -0.037675466388463974, 0.05307048186659813, -0.0320252925157547, 0.0038344566710293293, 0.013050306588411331, -0.059887293726205826, 0.011254602111876011, -0.017362283542752266, -0.014948948286473751, 0.000376726093236357, -0.008898455649614334, 0.013542123138904572, 0.03348930552601814, 0.0065079969353973866, 0.04115249961614609, 0.01197517104446888, -0.03376380726695061, 0.00041211117058992386, 0.010528314858675003, -0.002942323684692383, 0.011140226386487484, 0.014743071980774403, -0.028754137456417084, -0.0024262017104774714, 0.04499553516507149, -0.03280304744839668, 0.038453225046396255, 5.124582821736112e-05, 0.01071703527122736, -0.013999626971781254, -0.004117537289857864, 0.002256067469716072, -0.02045043557882309, -0.03907085582613945, -0.012569926679134369, -0.019649803638458252, -0.015166263096034527, 0.03472456708550453, 0.0015941160963848233, 0.02822800725698471, 0.011769294738769531, -0.014651570469141006, 0.04231913387775421, -0.02857113443315029, -0.024522222578525543, -0.002127394312992692, -0.03248279541730881, -0.003296889364719391, -0.06139705702662468, 0.008252231404185295, -0.002566312439739704, 0.04822093993425369, -0.038750603795051575, 0.0052813137881457806, 0.017854100093245506, 0.01434275507926941, -0.06222056597471237, 0.0007956283516250551, -0.02902863919734955, -0.0049095917493104935, 0.01723646931350231, -0.02107950486242771, -0.0018128602532669902, -0.006633810233324766, 0.0099278399720788, 0.015749581158161163, 0.02443072199821472, -0.004955342039465904, -0.022349078208208084, 0.000685898819938302, 0.02256639301776886, -0.03035540133714676, -0.00037100727786310017, 0.014846010133624077, -0.010797098278999329, -0.018780546262860298, -0.0035885481629520655, -0.0542142428457737, -0.0072800349444150925, -5.4328618716681376e-05, 0.006731030065566301, 0.0024390690959990025, 0.018460292369127274, -0.009413148276507854, 0.017762599512934685, 0.014560069888830185, -0.012478426098823547, 0.02912013977766037, 0.03611995279788971, 0.02843388356268406, -0.0337180569767952, 0.004063209053128958, 0.008932768367230892, 0.018791982904076576, -0.025094103068113327, 0.0049639199860394, -0.011203133501112461, -0.005003951955586672, 0.012020922265946865, 0.013187557458877563, -0.013359121978282928, 0.03561669960618019, 0.0035027661360800266, 0.036623209714889526, 0.01372512523084879, 0.004363446030765772, -0.02438497170805931, -0.0005883217672817409, -0.007503068074584007, -0.02330983802676201, -0.009264458902180195, -0.011597730219364166, -0.02188013680279255, -0.011048725806176662, -0.005384251940995455, -0.010265249758958817, -0.010825692676007748, 0.013965314254164696, 0.02404184453189373, 0.014056815765798092, -0.0063192760571837425, -0.001179502927698195, -0.01152910478413105, 0.040077365934848785, -0.0076517569832503796, 0.016595963388681412, -0.00033026080927811563, -0.013313370756804943, 0.0029852145817130804, -0.007503068074584007, 0.013107494451105595, 0.031201783567667007, -0.0022789426147937775, -0.009138645604252815, 0.004663683008402586, -0.03696633502840996, 0.04401190206408501, -0.03488469123840332, 0.05178947001695633, -0.007445880211889744, -0.00798344798386097, -0.028937138617038727, 0.03541082143783569, -0.04369164630770683, 0.012466988526284695, 0.012581364251673222, -0.0038001439534127712, 0.00919011514633894, 0.0159097071737051, 0.017133530229330063, 0.013850938528776169, -0.0009321647230535746, -0.031110282987356186, 0.018162915483117104, 0.004194741137325764, -0.012318299151957035, 0.02502547763288021, -0.0007570264278911054, 0.01537214033305645, -0.02329839952290058, 0.06212906539440155, 0.008704016916453838, -0.004331992473453283, -0.028113631531596184, -3.911571184289642e-05, 0.04311976581811905, -0.040580619126558304, 0.007360098417848349, 0.02685549482703209, 0.031453412026166916, -0.01409112848341465, -0.020061558112502098, 0.0016756090335547924, 0.005824599880725145, -0.014205504208803177, 0.009504648856818676, 0.027679001912474632, 0.03984861075878143, 0.024316346272826195, -0.007308628875762224, 0.0002680688339751214, -0.022440578788518906, 0.03481606766581535, 0.009824901819229126, -0.05142346769571304, 0.0131303695961833, 0.021788636222481728, 0.014560069888830185, 0.018597545102238655, -0.024270595982670784, 0.017179280519485474, -0.01059694029390812, -0.004166147205978632, -0.01372512523084879, -0.02207457646727562, -0.034312810748815536, -0.03403830900788307, -0.04170150309801102, -0.005884647369384766, 0.0027936347760260105, -0.05572400614619255, -0.00478091835975647, 0.015944020822644234, -0.02429347112774849, 0.023069648072123528, -8.19397100713104e-05, -0.03616570308804512, 0.021022316068410873, 0.010614096187055111, -0.016538774594664574, 0.024018969386816025, 0.0204961858689785, 0.0038173003122210503, 0.02454509772360325, -0.037766966968774796, 0.0521097257733345, 0.0002423342375550419, 0.006536590866744518, -0.025940485298633575, 0.006828249432146549, 0.02616923861205578, 0.044766783714294434, -0.002600625157356262, -0.028799887746572495, 0.0035399384796619415, 0.02143407054245472, -0.004191881977021694, -0.01823154091835022, -0.0026406568940728903, 0.007577412761747837, -0.006673842202872038, -0.03193379193544388, 0.03573107346892357, -0.004738027695566416, -0.013690812513232231, -0.030538402497768402, 0.025597358122467995, -0.023389900103211403, -0.0006497988943010569, -0.007148502394556999, -0.030973032116889954, 0.01945536397397518, -0.029829271137714386, 0.0016970544820651412, -0.02286376990377903, -0.005144062452018261, -0.02379021607339382, -0.026329364627599716, -0.0014154035598039627, 0.009441741742193699, 0.009779151529073715, -0.00713134603574872, -0.0028007833752781153, -0.056684765964746475, 0.0017957038944587111, -0.05691351741552353, 0.009550399146974087, -0.017225030809640884, 0.013679374009370804, -0.018551792949438095, 0.010413938201963902, -0.01674465276300907, 0.010665565729141235, -0.016390087082982063, -0.009001394733786583, 0.0001554799237055704, 0.04817518964409828, 0.00943602342158556, -0.028113631531596184, 0.01477738469839096, 0.011929420754313469, 0.03600557893514633, -0.007640319410711527, 0.016824714839458466, -0.06025329977273941, -0.0004853833233937621, 0.003562813624739647, 0.030538402497768402, -0.010253812186419964, 0.0045006973668932915, -0.0004271230136509985, -0.02296670898795128, -0.039093729108572006, 0.025894735008478165, -0.004880997352302074, 0.004886716138571501, 0.00919011514633894, 0.04275376349687576, -0.002327552530914545, 0.013793750666081905, 0.01940961368381977, -0.0025448668748140335, 0.012512738816440105, -0.0069597819820046425, -0.01586395688354969, 0.015738142654299736, 0.023195460438728333, 0.02587185986340046, -0.016778964549303055, -0.013759437948465347, -0.048998694866895676, -0.022452017292380333, 0.0027292983140796423, 0.023469964042305946, -0.006668122950941324, -0.002218895126134157, -0.009847776964306831, -0.03442718833684921, -0.013336245901882648, -0.05755402520298958, 0.013107494451105595, 0.018094290047883987, -0.03541082143783569, 0.01426269207149744, 0.002331841504201293, 0.024362096562981606, -0.06697861105203629, -0.00802919827401638, -0.017499534413218498, -0.0033283426892012358, -0.004054630640894175, -0.040237490087747574, 0.009567555971443653, -0.018265854567289352, -0.02311539836227894, -0.024499347433447838, -0.0010629823664203286, -0.011414729058742523, 0.04918169602751732, -0.029783520847558975, -0.017019154503941536, -0.019192298874258995, -0.021205317229032516, -0.012466988526284695, -0.009092895314097404, 0.01064269058406353, -0.01485744770616293, -0.004712292924523354, 0.033672306686639786, 0.008097823709249496, -0.03424418717622757, 0.011734982021152973, 0.021514132618904114, -0.03127041086554527, 0.02635223977267742, -0.011248883791267872, 0.007748976815491915, -0.0131303695961833, 0.013908126391470432, -0.0023747326340526342, -0.02582610957324505, -0.002600625157356262, 0.029188765212893486, 0.00016325392061844468, 0.030035147443413734, 0.004609354306012392, 0.022543517872691154, -0.018288729712367058, 0.006393620744347572, -0.03339780494570732, 0.026420865207910538, -0.032597173005342484, 0.016927653923630714, 0.025482982397079468, 0.0369434617459774, -0.005707364529371262, -0.00048109423369169235, -0.04332564398646355, 0.019501114264130592, -0.0050325458869338036, 0.021022316068410873, -0.0012352612102404237, -0.0038001439534127712, 0.04273089021444321, -0.014239816926419735, -0.010133717209100723, -0.012638552114367485, 0.0019100798526778817, -0.00988208968192339, -0.03724084049463272, -0.0036428768653422594, -0.0307442806661129, 0.005941835232079029, -0.004912450909614563, -0.006891156546771526, 0.0032940299715846777, -0.003296889364719391, -0.03698921203613281, 0.02536860667169094, -0.020919376984238625, 0.005901803728193045, 0.007806164678186178, -0.0031110283453017473, 0.026397990062832832, 0.03859047591686249, -0.0024319204967468977, 0.026100613176822662, -0.01891779713332653, -0.026489490643143654, -0.01960405334830284, 0.010356750339269638, 0.004186163190752268, 0.05046270787715912, 0.019295237958431244, -0.003957410808652639, 0.022943833842873573, -0.0469856783747673, 0.0343814380466938, -0.015749581158161163, 0.010259530507028103, -0.005721661262214184, -0.012558489106595516, -0.02325264923274517, -0.0036628926172852516, -0.01626427285373211, -0.006147712003439665, 0.004789496771991253, 0.04410340264439583, -0.004114678129553795, 0.018563231453299522, 0.00694834440946579, 0.0033226239029318094, -0.002504835370928049, -0.022394828498363495, 0.011746419593691826, -0.007989166304469109, 0.010774223133921623, 0.012718616053462029, 0.022943833842873573, -0.0071199084632098675, 0.01421694178134203, -0.01123744621872902, 0.01381662581115961, -0.024613723158836365, -0.019203737378120422, 0.005993304308503866, -0.017453784123063087, -0.02089650183916092, -0.00963046308606863, -0.04300539195537567, 0.05178947001695633, 0.012112422846257687, -0.009887808933854103, -0.02941751852631569, 0.003562813624739647, 0.012512738816440105, 0.018048539757728577, -0.02507122792303562, -0.020290309563279152, -0.0046064951457083225, -0.004406337160617113, -0.032688673585653305, 0.0006212048465386033, 0.009275896474719048, -0.016035521402955055, 0.03415268659591675, 0.02472810074687004, -0.02596336044371128, 0.002659242833033204, 0.012798679061233997, -0.018608981743454933, -0.023286961019039154, -0.014251254498958588, -0.005043983459472656, 0.0015941160963848233, -0.012844429351389408, -0.026832619681954384, -0.03570820018649101, 0.0005454307538457215, -0.007491630502045155, 0.0009221568470820785, -0.033191926777362823, -0.038842104375362396, -0.010185186751186848, -0.013439184986054897, -0.024705225601792336, 0.007302910089492798, -0.016870465129613876, -0.00041068147402256727, -0.00911577045917511, -0.018608981743454933, 0.02138832025229931, -0.028205132111907005, -0.0012481285957619548, 0.0028694088105112314, 0.015131950378417969, 0.008486702106893063, 0.0007863352657295763, 0.022406267002224922, -0.003316905116662383, -0.028594009578227997, 0.02463659830391407, -0.011140226386487484, 0.014651570469141006, 0.023126835003495216, 0.03897935524582863, 0.007434442639350891, -0.047671932727098465, -0.014743071980774403, 0.01261567696928978, -0.022989584133028984, 0.045361537486314774, 0.009132927283644676, -0.01148335449397564, -0.007897665724158287, -0.02344708889722824, 0.006016179919242859, 0.05526650324463844, -0.018311604857444763, -0.00798344798386097, 0.003742955857887864, 0.027404500171542168, 0.01773972436785698, -0.0032911705784499645, -0.03568532317876816, 0.010905755683779716, 0.01197517104446888, -0.03266579657793045, 0.03305467590689659, -0.008023479022085667, 0.02921164035797119, -0.005633019842207432, 0.01268430333584547, -0.011128788813948631, 0.00803491659462452, -0.009138645604252815, 0.030561277642846107], [0.04016057774424553, 0.01072665024548769, 0.03233931586146355, -0.0019920922350138426, -0.04383828490972519, 0.01711360365152359, 0.02171074040234089, 0.01686842367053032, 0.03488919511437416, 0.028416428714990616, -0.02728859707713127, 0.021061010658740997, 0.00661374581977725, -0.042023949325084686, -0.0306230541318655, 0.001835789531469345, 0.019148603081703186, 0.045946840196847916, -0.034104619175195694, -0.009470099583268166, 0.01527475006878376, 0.006662782281637192, -0.022752758115530014, 0.011051514185965061, -0.03300130367279053, -0.017983995378017426, 0.00763737503439188, -0.02537618950009346, 0.03967021778225899, -0.05256671458482742, 0.024088991805911064, -0.008544542826712132, 0.03851786628365517, -0.03481564298272133, 0.032020583748817444, 0.06664007902145386, 0.015519930049777031, 0.029568776488304138, -0.009175882674753666, 0.017003273591399193, -0.03721841052174568, 0.02471420168876648, 0.003797234036028385, -0.049036115407943726, -0.031848955899477005, 0.0419013611972332, -0.006515673827379942, -0.018682759255170822, -0.01718715764582157, 0.07688862830400467, 0.0034202691167593002, 0.026013659313321114, 0.0025299570988863707, 0.07762417197227478, 0.023255378007888794, -0.0206319447606802, 0.03758618235588074, 0.006062089465558529, 0.0029314402490854263, -0.058647193014621735, 0.010879888199269772, -0.015336045064032078, -0.05359647423028946, -0.011928034946322441, -0.008409693837165833, 0.006601486820727587, -0.01645161584019661, 0.0635017678141594, -0.07992886751890182, 0.03297678753733635, -0.04160714149475098, 0.0706610381603241, 0.042882081121206284, -0.054381050169467926, 0.00657696882262826, 0.009604948572814465, 0.03013269230723381, 0.01214256789535284, 0.010156605392694473, -0.015605743043124676, -0.011259918101131916, -0.043862804770469666, -0.022176582366228104, 0.044696416705846786, -0.060657672584056854, -0.04020961374044418, -0.034178171306848526, 0.06409019976854324, -0.013055865652859211, 0.03229027986526489, 0.03638479858636856, 0.01929571107029915, 0.04079804569482803, 0.07973272353410721, 0.033025823533535004, -0.014625021256506443, -0.0020012864843010902, -0.03716937452554703, 0.0008588982163928449, 0.039768289774656296, 0.0025575398467481136, -0.034938231110572815, -0.019908662885427475, 0.0010374203557148576, 0.05516562983393669, -0.05737225338816643, -0.059480808675289154, -0.038370758295059204, 0.0102608073502779, -0.017260711640119553, -0.03653190657496452, 0.022066252306103706, -0.032756123691797256, 0.027362152934074402, 0.02620980329811573, 0.0001412661513313651, 0.03300130367279053, -0.04881545156240463, 0.0019231351325288415, 0.013006829656660557, -0.014428876340389252, 0.025523297488689423, 0.011033126153051853, -0.014588244259357452, -0.006399212870746851, -0.027680886909365654, -0.0013278060359880328, -0.05099755898118019, -0.009733668528497219, 0.002966684987768531, 0.01870727725327015, -0.009844000451266766, 0.02019062079489231, -0.023745737969875336, 0.0022219489328563213, -0.009083940647542477, -0.01719941757619381, -0.058402013033628464, -0.045039672404527664, 0.01319071464240551, -0.0024426113814115524, -0.018314989283680916, 0.03047594614326954, 0.02152685448527336, -0.03908178210258484, -0.007631245534867048, -0.0007976030465215445, 0.011548005044460297, 0.02037450484931469, 0.008826500736176968, -0.04942840337753296, 0.024162545800209045, -0.006773113273084164, 0.023757997900247574, -0.024603869765996933, 0.06968031823635101, 0.0015086267376318574, 0.05286093056201935, -0.020227396860718727, 4.157175681029912e-06, -0.049305811524391174, -0.01985962688922882, -0.0202028788626194, -0.023071492090821266, 0.031922511756420135, -0.07188694179058075, -0.0009002723963931203, 0.023059232160449028, -0.05300803855061531, -0.03503630310297012, -0.02321860007941723, -0.0454319603741169, -0.026749201118946075, 0.06100092828273773, 0.011492839083075523, -0.031530220061540604, 0.03881208598613739, 0.0037328742910176516, 0.03964569792151451, -0.035355038940906525, 0.004640042316168547, 0.0044408333487808704, 0.05261575058102608, -0.035698290914297104, 0.0016687603201717138, 0.004315177910029888, -0.0077047995291650295, -0.0016227889573201537, -0.045211296528577805, 0.04293111711740494, 0.009978849440813065, 0.009408804588019848, 0.00977044552564621, 0.04582424834370613, -0.06011827662587166, 0.03349166736006737, -0.010818593204021454, -0.010849240235984325, 0.0040822564624249935, -0.012540986761450768, -0.0010979492217302322, 0.010211771354079247, 0.0002308145194547251, 0.005859815515577793, -0.028195766732096672, -0.044377684593200684, 0.04800635576248169, -0.0005332677392289042, 0.01878083124756813, 0.011872868984937668, 0.03449690714478493, -0.020913902670145035, -0.020313210785388947, 0.016304507851600647, -0.05075237900018692, -0.00494651822373271, 0.0055564045906066895, 0.04391184076666832, 0.01414691936224699, -0.007465748582035303, -0.012614540755748749, 0.0036838380619883537, 0.003935148008167744, -0.03182443976402283, 0.0020870997104793787, 0.025351671501994133, -0.0308927521109581, -0.08399886637926102, -0.02978944033384323, -0.05737225338816643, 0.01810658536851406, 0.025596851482987404, 0.039694733917713165, -0.02662661112844944, 0.011958682909607887, 0.0022219489328563213, -0.024677425622940063, 0.015642520040273666, 0.02202947437763214, 0.005338807124644518, -0.005329612642526627, -0.018413061276078224, -0.0006918689468875527, -0.0030570952221751213, 0.02780347689986229, 0.00303564197383821, -0.022912124171853065, -0.027166007086634636, 0.03162829577922821, 0.016660019755363464, 0.02053387276828289, -0.0055717285722494125, 0.01760396547615528, -0.06968031823635101, 0.028980344533920288, 0.03542859107255936, 0.03596799075603485, -0.011204752139747143, 0.07100429385900497, -0.01402432844042778, 0.06119707226753235, -0.03378588333725929, 0.015213454142212868, 0.0062766228802502155, -0.016378061845898628, -0.04751599580049515, 0.0460694283246994, -0.10425078123807907, -0.02422383986413479, 0.07316188514232635, -0.0234637800604105, -0.005583987571299076, 0.02895582653582096, 0.010021756403148174, -0.07674151659011841, 0.03721841052174568, -0.01331330556422472, -0.04506418853998184, 0.003408009884878993, 0.021318450570106506, -0.056391533464193344, -0.013043606653809547, -0.02871064469218254, -0.04839864373207092, 0.01548315305262804, 0.012663576751947403, 0.04464738070964813, -0.009617207571864128, 0.0016534364549443126, 0.012412266805768013, 0.02929907850921154, -0.053302258253097534, -0.04864382743835449, -0.038934674113988876, 0.020570650696754456, -0.006717947777360678, 0.016660019755363464, -0.0068037607707083225, 0.03106437809765339, 0.021416522562503815, 0.0042784009128808975, 0.04266142100095749, -0.034031063318252563, 0.05393972620368004, -0.06860152631998062, 0.015164418146014214, -0.007220567669719458, 0.009390415623784065, -0.011554134078323841, -0.02630787529051304, -0.005976276472210884, 0.005712707526981831, -0.039106301963329315, 0.01636580377817154, 0.0070612006820738316, -0.03300130367279053, -0.009764316491782665, -0.028269320726394653, 0.015568966045975685, -0.01862146519124508, 0.040111541748046875, 0.016463875770568848, -0.006059024948626757, 0.0052591231651604176, 0.013754630461335182, -0.024493539705872536, -0.026479501277208328, -0.024174803867936134, -0.03731648251414299, -0.004220170434564352, -0.020913902670145035, -0.004489869344979525, -0.01289649773389101, 0.0173710435628891, -0.041460033506155014, 0.02696986310184002, 0.016169657930731773, -0.05085045099258423, 0.02027643285691738, -0.03765973448753357, -0.005397037602961063, -0.008440340869128704, 0.030353354290127754, 0.0033467148896306753, 0.02554781548678875, 0.05702900141477585, 0.054135870188474655, 0.07723188400268555, -0.010371138341724873, 0.028612572699785233, 0.0005355663015507162, -0.0058935279957950115, 0.0003087742952629924, 0.020680980756878853, -0.05148791894316673, 0.034938231110572815, 0.009574301540851593, 0.010597930289804935, -0.014968274161219597, 0.028220284730196, -0.019393783062696457, 0.017800109460949898, 0.005010878201574087, 0.07242634147405624, -0.021269414573907852, 0.024763237684965134, -0.033516183495521545, -0.018584687262773514, 0.04940388724207878, -0.006270493380725384, 0.01231419388204813, -0.0028854687698185444, -0.013913997448980808, -0.027607332915067673, -0.022103028371930122, -0.051635030657052994, 0.009568171575665474, 0.018229175359010696, 0.023304414004087448, -0.009758186526596546, 0.028220284730196, -0.02003125287592411, -0.005642218049615622, 0.009972719475626945, 0.07840874791145325, 0.0587943010032177, -0.036262206733226776, -0.007398323621600866, 0.028024138882756233, 0.00033137688296847045, -0.03280515968799591, -0.015164418146014214, 0.016218695789575577, -0.03253546357154846, 0.014208214357495308, 0.03653190657496452, 0.036017026752233505, 0.030034620314836502, 0.015164418146014214, -0.03915533795952797, 0.043617624789476395, -0.030843716114759445, 0.03430076315999031, -0.04163166135549545, -0.01902601309120655, 0.0248000156134367, 0.014208214357495308, -0.0496000312268734, 0.03613961488008499, 0.001027459860779345, 0.052125390619039536, 0.003643996315076947, 0.02630787529051304, 0.000661221332848072, -0.011572523042559624, 0.0179594773799181, 0.017309747636318207, 0.0419013611972332, -0.008906184695661068, 0.0004987892461940646, 0.023476039990782738, -0.0203622467815876, -0.027729922905564308, 0.008967479690909386, -0.003653190564364195, -0.009917554445564747, -0.005473656114190817, 0.025694923475384712, 0.004627783317118883, -0.04530936852097511, -0.003506082110106945, 0.0047319852747023106, 0.022434022277593613, 0.042857564985752106, 0.011744149029254913, -0.005801585502922535, 0.03724293038249016, -0.025498779490590096, -0.05732321739196777, -0.0009087005164474249, -0.006858926732093096, -0.018082067370414734, -0.06561031937599182, 0.016427097842097282, 0.01820465736091137, 0.017885923385620117, 0.04967358335852623, 0.02728859707713127, 0.0005083666183054447, 0.025523297488689423, 0.012449043802917004, -0.009139105677604675, -0.04239172115921974, 0.03650738671422005, -0.09890584647655487, 0.011223141103982925, -0.056881893426179886, -0.035600218921899796, 0.03724293038249016, -0.020251914858818054, 0.005712707526981831, 0.035256966948509216, 0.04364214092493057, 0.018486615270376205, 0.006393083371222019, 0.029936548322439194, -0.007710929028689861, -0.04432864859700203, -0.056146349757909775, 0.02046031877398491, -0.040430277585983276, 0.00025054390425793827, 0.02221336029469967, -0.01406110543757677, -0.026332393288612366, 0.007324769627302885, -0.021171342581510544, 0.012614540755748749, -0.06428634375333786, 0.029985584318637848, -0.015372822061181068, 0.018131103366613388, -0.04739340394735336, -0.014134660363197327, 0.03432527929544449, 0.04626557603478432, 0.0019783007446676493, -0.002909987000748515, -0.010493728332221508, -0.011259918101131916, 0.004621653817594051, -0.0016335155814886093, 0.017309747636318207, -0.012093531899154186, -0.02135522849857807, -0.01903827115893364, -0.01661098375916481, 0.009709150530397892, 0.039523109793663025, -0.007827389985322952, -0.026749201118946075, 0.018498875200748444, 0.005240734666585922, -0.005069108214229345, 0.04744243994355202, 0.02287534810602665, -0.01652516983449459, 0.032265763729810715, 0.016157399863004684, -0.007790612522512674, -0.027901548892259598, 0.045628104358911514, 0.017922699451446533, 0.009433322586119175, -0.01919763907790184, -0.005277511663734913, -0.0013530902797356248, 0.01335008256137371, -0.013521708548069, -0.0460694283246994, -0.0004681416612584144, 0.012044495902955532, -0.020399022847414017, -0.01826595328748226, 0.0066689117811620235, 0.025768477469682693, -0.032510943710803986, -0.03790491819381714, -0.02527811750769615, 0.012498079799115658, 0.0045910063199698925, -0.03621317073702812, -0.003601089585572481, 0.046290092170238495, 0.0344233512878418, -0.017849145457148552, -0.004710531793534756, -0.002327683148905635, 0.005973211955279112, -0.022556612268090248, 0.006534062325954437, 0.00021606538211926818, 0.011425415053963661, 0.0001573561312397942, 0.03898371011018753, 0.03930244594812393, 0.010322102345526218, 0.009862388484179974, 0.0026648063212633133, 0.0057678730227053165, -0.021244896575808525, -0.0017821562942117453, -0.0014764467487111688, -0.0036286725662648678, -0.013080383650958538, 0.0027261015493422747, 0.024836791679263115, -0.013215232640504837, 0.0273131150752306, -0.034006547182798386, 0.0179594773799181, 0.05085045099258423, -0.002186704194173217, -0.0006049064686521888, -0.009298473596572876, 0.02102423459291458, -0.00959881953895092, -0.022985678166151047, -0.03314841538667679, -0.030941788107156754, -0.028073174878954887, 0.05869622901082039, -0.00469214329496026, -4.0536200685892254e-05, 0.060902856290340424, 0.03888563811779022, -0.006028377451002598, -0.061393216252326965, -0.005093626212328672, 0.04555455222725868, 0.009249437600374222, 0.03300130367279053, 0.006242910400032997, -0.012442913837730885, -0.006503414828330278, 0.02628335729241371, -0.013546226546168327, -0.02337796799838543, 0.018486615270376205, 0.07674151659011841, -0.008483247831463814, -0.0009033372043631971, 0.023917365819215775, -0.015360563062131405, -0.014674057252705097, 0.028612572699785233, -0.015654779970645905, 0.005105885677039623, -0.035183411091566086, 0.006993775721639395, -0.020582908764481544, -0.013448154553771019, 0.005930304992944002, -0.00955591257661581, -0.01289649773389101, -0.012675835750997066, 0.0171013455837965, -0.013619780540466309, 0.007386064622551203, 0.006454378832131624, 0.05241960659623146, -0.014244991354644299, 0.03079468011856079, -0.00023234690888784826, 0.004569552838802338, -0.009212659671902657, -0.01802077144384384, -0.04844767972826958, 0.001838854281231761, -0.010757297277450562, -0.010083051398396492, -0.006307270377874374, 0.012798425741493702, 0.007723188027739525, 0.010873758234083652, 0.00039765224209986627, 0.011076032184064388, -0.030010102316737175, -0.010824722237884998, -0.024849051609635353, 0.0011400897055864334, 0.0009462437592446804, -0.012835202738642693, -0.003935148008167744, 0.0019016817677766085, -0.018744055181741714, 0.03253546357154846, -0.003548988839611411, 0.007900943979620934, 0.0029283754993230104, 0.013828184455633163, 0.04815346375107765, -0.018560169264674187, -0.03707130253314972, 0.04651075601577759, 0.0442550927400589, 0.030990824103355408, 0.024407725781202316, 0.03072112612426281, 0.01038952637463808, 0.011394767090678215, -0.050212983042001724, -0.004453092347830534, -0.02019062079489231, 0.015348304063081741, -0.0036562553141266108, -0.00406999746337533, 0.049967799335718155, 0.005574793089181185, 0.020717758685350418, -0.0071163661777973175, -0.011351860128343105, -0.01119249314069748, -0.0036133488174527884, 0.008133865892887115, 0.02271598018705845, 0.02696986310184002, -0.0021943661849945784, 0.024272875860333443, 0.017383303493261337, -0.03449690714478493, 0.0008259520400315523, 0.045628104358911514, -0.011468321084976196, -0.030819198116660118, 0.005648347549140453, -0.01051211729645729, -0.022421764209866524, 0.011186364106833935, 0.011394767090678215, -0.019810590893030167, -0.007864166982471943, -0.026332393288612366, 0.019504114985466003, 0.002327683148905635, -0.009261696599423885, 0.005203957669436932, -0.018082067370414734, 0.004909740760922432, -0.0031750884372740984, -0.01677035167813301, 0.018388543277978897, 0.037341002374887466, 0.0005248396773822606, -0.005335742142051458, 0.006705688778311014, 0.027337633073329926, -0.02455483376979828, 0.029519740492105484, 0.02672468312084675, 0.030500464141368866, 0.012320323847234249, -0.006662782281637192, -0.03447238728404045, -0.004033220466226339, -0.01919763907790184, -0.02494712360203266, -0.04207298532128334, 0.02922552451491356, -0.011088291183114052, 0.012332582846283913, 0.023819291964173317, -0.04283304512500763, -0.02286308817565441, -0.048374127596616745, 0.0023705896455794573, -0.03155473992228508, -0.020264174789190292, 0.0063317883759737015, -0.041460033506155014, 0.011762537993490696, 0.05918658897280693, -0.008569060824811459, -0.030181728303432465, -0.005859815515577793, 0.005731096025556326, -0.01578962802886963, 0.0029023250099271536, -0.027092453092336655, 0.026185285300016403, 0.0010596397332847118, -0.01829047128558159, 0.014330804347991943, 0.011474451050162315, -0.035011786967515945, -0.034006547182798386, -0.0484231635928154, -0.003481564112007618, -0.0032946139108389616, -0.013411377556622028, 0.007447360083460808, -0.04555455222725868, 0.009954331442713737, -0.04057738557457924, -0.004103709943592548, 0.013644298538565636, 0.0010573412291705608, 0.0012435251846909523, -0.008311621844768524, -0.01210579089820385, -0.02169848047196865, 0.00875907577574253, -0.04526033252477646, 0.008017404936254025, 0.020828090608119965, -0.058647193014621735, -0.008017404936254025, 0.007349287625402212, 0.035771846771240234, 0.022066252306103706, -0.005525757092982531, 0.0032394484151154757, -0.0008382110972888768, 0.04888900741934776, 0.021171342581510544, -0.022519836202263832, -0.011045385152101517, 0.010463081300258636, -0.036777086555957794, -0.01602254994213581, 0.019136343151330948, 0.0026372235734015703, 0.001665695570409298, 0.006736336275935173, -0.018094325438141823, -0.011995459906756878, -0.03204509988427162, 0.0020932292100042105, -0.022826312109827995, -0.03996443375945091, -0.006583098322153091, -0.011615430004894733, 0.0008052649209275842, 0.039792805910110474, 0.01586318388581276, 0.009249437600374222, -0.008795852772891521, -0.00897360872477293, 0.013742371462285519, 0.005973211955279112, 0.00239970488473773, -0.0344233512878418, -0.02846546471118927, -0.005173310171812773, -0.025351671501994133, -0.018829867243766785, 0.01768977753818035, -0.030108174309134483, 0.0012144100619480014, 0.0037849750369787216, -0.002255661180242896, 0.049452923238277435, -0.0002729549305513501, 0.007864166982471943, 0.009684632532298565, 0.004410185385495424, -0.017015531659126282, -0.029446186497807503, 0.007833519019186497, -0.016991013661026955, -0.025081973522901535, 0.0463881641626358, 0.04150906950235367, -0.04535840451717377, -0.010781815275549889, -0.04226912930607796, -0.014919238165020943, -0.017800109460949898, -0.010162734426558018, -0.02728859707713127, -0.007355417124927044, -0.021477818489074707, -0.015299268066883087, -0.013607521541416645, -0.023108268156647682, -0.045211296528577805, -0.027729922905564308, -0.014772129245102406, -0.00607128394767642, -0.003064757212996483, 0.009421063587069511, 0.002084034960716963, 0.034006547182798386, 0.0014917704975232482, -0.010193382389843464, 0.006196938920766115, -0.034104619175195694, 0.010303713381290436, 0.006632134318351746, 0.025081973522901535, 0.00964172650128603, -0.023108268156647682, -0.005354130640625954, 0.019173121079802513, -0.01080633420497179, 0.014134660363197327, -0.01751815155148506, -0.030255282297730446, -0.021833330392837524, -0.001467252499423921, -0.02863709069788456, -0.0055012390948832035, -0.0035336650907993317, 0.030083656311035156, 0.005170245189219713, 0.013693335466086864, -0.04994328320026398, -0.006190809421241283, -0.038689494132995605, -0.01744459755718708, 0.013913997448980808, -0.00851389579474926, 0.014674057252705097, -0.0045450348407030106, 0.011768667958676815, 0.03797847032546997, 0.028489982709288597, -0.00446841586381197, 0.005826103501021862, 0.004027090966701508, 0.059971168637275696, -0.003898371011018753, 0.0207913126796484, -0.006558580324053764, -0.015017310157418251, -0.0014710834948346019, -0.011290565133094788, -0.005761743523180485, -0.0010680678533390164, -0.022017216309905052, 0.02753377892076969, -0.003650125814601779, -0.009476229548454285, -0.011511228047311306, -0.028686126694083214, -0.016991013661026955, 0.013632039539515972, 0.07571176439523697, 0.022078510373830795, 0.008544542826712132, -0.019246675074100494, 0.03013269230723381, 0.03680160269141197, 0.0012826009187847376, -0.026185285300016403, -0.010083051398396492, 0.011278306134045124, 0.027435706928372383, -0.0037665865384042263, -0.005930304992944002, -0.020313210785388947, 0.006914092227816582, -0.020730016753077507, -0.002149927197024226, 0.03023076429963112, 0.05619538575410843, 0.01548315305262804, -0.0335652194917202, -0.005142662674188614, 0.016966495662927628, -0.019884144887328148, -0.025670405477285385, -0.0327070876955986, -0.024812273681163788, 0.0320696197450161, 0.01728522963821888, 0.013068124651908875, -0.008305491879582405, 0.02046031877398491, 0.00821967888623476, 0.02655305527150631, 0.026185285300016403, -0.00918814167380333, -0.008017404936254025, -0.009696891531348228, -0.006288881879299879, 0.004180328920483589, 0.011572523042559624, 0.04675593599677086, 0.015887701883912086, 0.0071960496716201305, 0.04844767972826958, -0.01570381596684456, -0.005161051172763109, -0.018425319343805313, -0.00963559653609991, -0.000930153822991997, 0.01013821642845869, 0.045628104358911514, -0.02929907850921154, 0.025645887479186058, 0.02396640181541443, -0.009935942478477955, -0.004161940421909094, 0.008225807920098305, -0.014588244259357452, 0.007796742022037506, -0.004934259224683046, 0.019222157076001167, -0.019430560991168022, 0.02470194362103939, 0.0024288201238960028, 0.039449553936719894, -0.00049036112613976, -0.007153143174946308, 0.021931402385234833, -0.006791501771658659, 0.03712033852934837, 0.015642520040273666, -0.03336907550692558, -0.016917459666728973, 0.036017026752233505, -0.003898371011018753, -0.03430076315999031, 0.04168069735169411, -0.001984430244192481, -0.03157925605773926, -0.018241435289382935, -0.0073125106282532215, 0.011909645982086658, -0.004998618736863136, -0.017910441383719444, 0.021649444475769997, 0.028784198686480522, 0.022250136360526085, 0.020092548802495003, 0.004085321445018053, 0.010297584347426891, 0.0010251612402498722, 0.02136748656630516, 0.03609057888388634, 0.036948710680007935, 0.0448925644159317, 0.005418490618467331, -0.024591611698269844, -0.0007968368590809405, 0.01802077144384384, 0.021637186408042908, 0.03457045927643776, -0.026062695309519768, 0.02221336029469967, 0.028661608695983887, 0.02445676177740097, 0.034104619175195694, -0.02579299546778202, 0.008544542826712132, 0.002816511783748865, 0.005308159627020359, 0.010665355250239372, -0.0019032142590731382, 0.04472093656659126, 0.004750373773276806, 0.01970025897026062, -0.0006727142026647925, 0.03841979429125786, -0.009120717644691467, 0.02171074040234089, -0.01498053316026926, 0.020730016753077507, -0.056293461471796036, 0.028833234682679176, -0.027239561080932617, -0.016169657930731773, -0.014392099343240261, -0.015323786064982414, -0.012191603891551495, 0.017983995378017426, 0.001615127082914114, 0.013950774446129799, 0.03542859107255936, -0.017162639647722244, 0.002327683148905635, -0.025989141315221786, 0.028097692877054214, 0.015728333964943886, -0.03412913531064987, 0.03699775040149689, -0.004483739845454693, 0.03753714635968208, 0.011468321084976196, -0.0025314893573522568, -0.01544637605547905, 0.0016365803312510252, 0.046461720019578934, -0.0175304114818573, 0.020068030804395676, -0.01645161584019661, 0.00372674479149282, -0.007269604131579399, 0.002229610923677683, -0.013546226546168327, -0.0027291662991046906, -0.03005913831293583, 0.00040799580165185034, 0.022078510373830795, 0.02471420168876648, 0.03155473992228508, 2.3320886612054892e-05, 0.058647193014621735, 2.34525759879034e-05, 0.02746022492647171, 0.023255378007888794, -0.0377332903444767, -0.014073365367949009, -0.016512911766767502, -0.008231937885284424, -0.014575985260307789, -0.020840348675847054, -0.000978423748165369, 0.002379783894866705, 0.014428876340389252, -0.03322196751832962, 0.010769556276500225, -0.00022276953677646816, 0.03253546357154846, -0.026405947282910347, -0.023476039990782738, -0.00020840349316131324, 0.00905942264944315, -0.011780926957726479, -0.005648347549140453, 0.009077810682356358, 0.0030049944762140512, 0.013926256448030472, 0.05026201903820038, -0.026773719117045403, -0.062472011893987656, -0.010585671290755272, -0.03550214692950249, -0.01089827623218298, -0.008072569966316223, 0.026332393288612366, 0.011492839083075523, 0.01879309117794037, 0.014551467262208462, -0.006791501771658659, -0.042122021317481995, 0.03631124272942543, 0.026454983279109, -0.005418490618467331, -0.01970025897026062, 0.03138311207294464, -0.01235710084438324, 0.03444787114858627, 0.01987188495695591, -0.013276527635753155, 0.005314289126545191, -0.016991013661026955, 0.03346714749932289, 0.012577763758599758, 0.03204509988427162, 0.022752758115530014, 0.005142662674188614, -0.01718715764582157, 0.016476133838295937, -0.04864382743835449, -0.02061968669295311, -0.023316672071814537, 0.014306286349892616, 0.01447791326791048, 0.02403995580971241, 0.021490076556801796, -0.0024686618708074093, -0.0007661893032491207, 0.011903516948223114, -0.014097883366048336, 0.021649444475769997, 0.01653742976486683, 0.003622543066740036, 0.0207913126796484, -0.02527811750769615, 0.014600503258407116, -0.027435706928372383, 0.009451711550354958, 0.020251914858818054, 0.03422720730304718, -0.024481279775500298, 0.014220473356544971, 0.01531152706593275, -0.022078510373830795, -0.0068405382335186005, -0.026013659313321114, -0.007729317527264357, -0.03229027986526489, 0.01661098375916481, -0.008844888769090176, 0.011143457144498825, 0.0034999526105821133, -0.027950584888458252, 0.02353733591735363, 0.015961255878210068, 0.013705594465136528, 0.008520024828612804, -0.0004976399359293282, -0.008244196884334087, 0.005510433577001095, -0.004863769747316837, 0.05560695379972458, 0.0009117652662098408, -0.01301908865571022, -0.0071960496716201305, 0.002401237143203616, -0.03763521835207939, -0.01886664517223835, 0.02403995580971241, 0.009948201477527618, 0.0013507917756214738, -0.029666848480701447, 0.0030754837207496166, 0.038689494132995605, -0.010217900387942791, 0.011051514185965061, -0.0028502242639660835, 0.023647665977478027, -0.01331330556422472, -0.02135522849857807, -0.031186968088150024, -0.004756503272801638, -0.005084432195872068, 0.024812273681163788, -0.001198320067487657, -0.03280515968799591, 0.009047162719070911, -0.014710834249854088, -0.0051886336877942085, -0.013166196644306183, 0.021257156506180763, -0.010886017233133316, 0.07046489417552948, -0.050212983042001724, -0.0023108269087970257, 0.007416712120175362, -0.01298231165856123, -0.01272487174719572, -0.02428513579070568, 0.005770937539637089, 0.003867723513394594, -0.021342968568205833, -0.02211528830230236, -0.021821070462465286, 0.00436421437188983, -0.023561853915452957, 0.042857564985752106, -0.02077905274927616, -0.029519740492105484, 0.01461276225745678, -0.008648744784295559, 0.019467337056994438, -0.006344047375023365, 0.014257250353693962, -0.03662997856736183, -0.013215232640504837, -0.014343063347041607, -0.024738719686865807, -0.03775780647993088, -0.006809890270233154, -0.011860609985888004, 0.011327342130243778, -0.00759446807205677, -0.027852512896060944, 0.009592689573764801, 0.02037450484931469, 0.017751073464751244, -0.0353795550763607, -0.028171248733997345, 0.004171134438365698, -0.031603775918483734, 0.0070366826839745045, 0.013644298538565636, -0.0031183904502540827, -0.02714148908853531, 0.007251215633004904, 0.01652516983449459, -0.019737036898732185, 0.045628104358911514, -0.02152685448527336, -0.05099755898118019, -0.03731648251414299, 0.025498779490590096, 0.04057738557457924, 0.011541875079274178, -0.007631245534867048, -0.009788834489881992, -0.012442913837730885, 0.04665786400437355, 0.013497190549969673, 0.006049830466508865, -0.013717853464186192, 0.015507671050727367, 0.010696002282202244, -0.006117255426943302, 0.018547911196947098, 0.02746022492647171, -0.028195766732096672, 0.0031996064353734255, -0.01626773178577423, -0.016660019755363464, 0.0025146333500742912, -0.024763237684965134, -0.0463881641626358, -0.001543105230666697, -0.018241435289382935, -0.018498875200748444, -0.014661798253655434, 0.014502431266009808, -0.011952552944421768, -0.004250818397849798, -0.01414691936224699, -0.022421764209866524, -0.005467526614665985, -0.027092453092336655, -0.011437674053013325, -0.019577668979763985, 0.021686222404241562, -0.0037849750369787216, 0.03758618235588074, 0.014036587439477444, 0.024493539705872536, -0.02971588633954525, 0.005078302696347237, -0.012234510853886604, -0.01127217710018158, -0.014195955358445644, -0.008066440932452679, 0.002228078432381153, 0.004584876820445061, 0.02353733591735363, 0.015752851963043213, 0.0419013611972332, 0.010604060254991055, 0.018976977095007896, 0.0171013455837965, 0.008611967787146568, -0.04768761992454529, 0.0010190317407250404, 0.019099567085504532, 0.011364119127392769, -0.04381376877427101, 0.024101249873638153, 0.021146824583411217, 0.014502431266009808, -0.004603265319019556, 0.06100092828273773, -0.028269320726394653, -0.02628335729241371, 0.047197259962558746, -0.0016764221945777535, 0.0006834408268332481, 0.010187252424657345, 0.02454257570207119, -0.006852797232568264, -0.013803666457533836, -0.005479785613715649, -0.00796836894005537, -0.028416428714990616, 0.00793159194290638, -0.014122401364147663, -0.003503017360344529, -0.0010113698663190007, -0.04138648137450218, -0.00793159194290638, 0.0011944890720769763, 0.024652905762195587, 0.004817798268049955, 0.01836402527987957, -0.02888227067887783, -0.005899657495319843, -0.02513100951910019, -0.036948710680007935, 0.00044170813634991646, 0.018964717164635658, -0.030353354290127754, -0.0006799930124543607, -0.020399022847414017, 0.018082067370414734, -0.00930460263043642, 0.00279812328517437, 0.027264079079031944, 0.009972719475626945, -0.014097883366048336, -0.02412576787173748, -0.009139105677604675, -0.0001319761067861691, 0.0012327985605224967, -0.01659872569143772, -0.01810658536851406, 0.004854575265198946, 0.025891069322824478, -0.014894720166921616, 0.003907565493136644, 0.02003125287592411, -0.0197738129645586, -0.03282967954874039, 0.017174899578094482, 0.0009998769965022802, -0.0007960706716403365, -0.0026050435844808817, 0.027018899098038673, 0.017420079559087753, -0.02336570806801319, 0.030770162120461464, 0.0038554645143449306, -0.04714822396636009, -0.0016181918326765299, -0.032265763729810715, 0.01569155603647232, -0.013337823562324047, 0.051782138645648956, 0.0016243213322013617, -0.01995769888162613, 0.04616750031709671, 0.03204509988427162, -0.022078510373830795, 0.02714148908853531, 0.0013178455410525203, 0.012075142934918404, -0.049698103219270706, -0.008170642890036106, 0.020509354770183563, -0.0013040541671216488, -0.014539208263158798, -0.007337028626352549, 0.02037450484931469, 0.033687811344861984, 0.0197738129645586, -0.023757997900247574, -0.016218695789575577, 0.004241623915731907, 0.02662661112844944, 0.0023399421479552984, -0.020975198596715927, 0.0030754837207496166, 0.005363325122743845, -0.013583003543317318, -0.008851018734276295, 0.004499063361436129, 0.0106898732483387, -0.02454257570207119, 0.005856750998646021, -0.035845398902893066, 0.008348398841917515, -0.02069324068725109, -0.0024839856196194887, -0.02336570806801319, -0.008035792969167233, -0.013166196644306183, -0.03609057888388634, -0.01719941757619381, -0.008618096821010113, -0.022066252306103706, -0.03297678753733635, 0.005642218049615622, -0.0012917951680719852, 0.016500651836395264, -0.013166196644306183, 0.002721504308283329, -0.030279800295829773, -0.012491949833929539, -0.02221336029469967, -0.0018649047706276178, 0.007735447026789188, 0.004640042316168547, -0.016059327870607376, -0.009739798493683338, 0.0065279328264296055, -0.014159178361296654, 0.01289649773389101, -0.019651222974061966, 0.011315083131194115, -0.03287871554493904, -0.024150285869836807, 0.005271382164210081, 0.0022357404232025146, 0.0024931798689067364, -0.012871979735791683, 0.045284852385520935, 0.007281863130629063, -0.02329215407371521, 0.023598629981279373, -0.012675835750997066, -0.019749294966459274, -0.009819481521844864, 0.026185285300016403, 0.011106680147349834, 0.03748811036348343, -0.024407725781202316, 0.011940293945372105, 0.01952863298356533, 0.0018219981575384736, 0.013901738449931145, 0.009525265544652939, 0.0018036095425486565, -0.016414839774370193, -0.023905105888843536, 0.007778353523463011, -0.01569155603647232, -0.019982216879725456, 0.018008513376116753, 0.026945345103740692, 0.004977165721356869, 0.005467526614665985, 0.00303717446513474, 0.008189030922949314, 0.02504519559442997, 0.02494712360203266, -0.020006734877824783, 0.012001588940620422, -0.017064567655324936, -0.00196144450455904, 0.01402432844042778, 0.012130308896303177, 0.004008702468127012, 0.02662661112844944, -0.00723895663395524, -0.012626799754798412, 0.022004956379532814, -0.00548591511324048, 0.0036133488174527884, 0.007723188027739525, 0.0016365803312510252, -0.030745644122362137, 0.018584687262773514, 0.030500464141368866, 0.00036700465716421604, -0.05153695493936539, -0.012663576751947403, 0.0066689117811620235, -0.008029663935303688, -0.020423542708158493, -0.01181770395487547, -0.0064114718697965145, 0.0044040558859705925, 0.0022924384102225304, 0.0239418838173151, -0.009960460476577282, -0.017420079559087753, -0.013435895554721355, 0.020558390766382217, 0.01711360365152359, 0.03197154775261879, 0.06203068420290947, -0.019737036898732185, 0.012283546850085258, -0.0061448379419744015, 0.016966495662927628, -0.0018036095425486565, 0.007539302576333284, 0.008949090726673603, -0.009690762497484684, -0.011462192051112652, 0.017395561560988426, 0.019908662885427475, 0.0026602093130350113, 0.0047963447868824005, -0.008556801825761795, -0.038861121982336044, 0.00897360872477293, -0.0069999052211642265, -0.016831645742058754, -0.02103649266064167, 0.00037696512299589813, 0.018400801345705986, -0.006852797232568264, -0.03305033966898918, 0.00872229877859354, 0.015213454142212868, 0.03616413474082947, -0.02120812050998211, -0.029421668499708176, 0.022176582366228104, -0.0049924892373383045, 0.005654477048665285, -0.026528537273406982, 0.014894720166921616, -0.006209197919815779, -0.018842127174139023, -0.016966495662927628, -0.015998031944036484, 0.0030570952221751213, -0.009157494641840458, -0.03371232748031616, 0.010530505329370499, -0.02044806070625782, -0.022409504279494286, -0.017505893483757973, -0.01461276225745678], [0.03124122880399227, 0.02111588977277279, 0.08843886852264404, 0.03432793542742729, -0.05803946778178215, -0.04075857996940613, 0.010329949669539928, 0.0102247204631567, 0.028271440416574478, 0.01847347989678383, -0.011493311263620853, -0.01682489737868309, -0.024997659027576447, -0.027803758159279823, -0.023699838668107986, 0.055467210710048676, 0.0035923905670642853, 0.04024412855505943, -0.0264474768191576, -0.019128236919641495, 0.007254933472722769, 0.031919367611408234, 0.0004030112468171865, 0.04169394448399544, -0.03683004155755043, 0.02948741614818573, 0.013995415531098843, -0.02246047928929329, 0.03332241624593735, -0.019069775938987732, 0.03234028443694115, -0.019256850704550743, 0.03343933820724487, -0.03051631897687912, 0.030633240938186646, 0.020437749102711678, -0.045973245054483414, 0.00015190565318334848, -0.0033030116464942694, 0.0038320780731737614, -0.040197357535362244, 0.07146196812391281, 0.0020504978019744158, 0.06842203438282013, -0.04625385254621506, 0.01570245809853077, 0.01826302334666252, 0.02246047928929329, 0.004793751519173384, 0.03704049810767174, 0.018017489463090897, 0.015901224687695503, 0.017082123085856438, 0.03596482798457146, 0.01183822751045227, 0.009926572442054749, 0.009265970438718796, -0.020122064277529716, 0.02152511291205883, -0.007857074961066246, 0.014124028384685516, 0.003764848690479994, -0.04328406602144241, -0.013831726275384426, -0.0049515943974256516, 0.004159456118941307, 0.006132494192570448, 0.03640912473201752, -0.0352633036673069, 0.038279857486486435, 0.020952200517058372, 0.03909830376505852, -0.009634271264076233, -0.04625385254621506, -0.025535494089126587, -0.00986811239272356, 0.013632960617542267, 0.0057700397446751595, 0.013913570903241634, -0.02752314694225788, -0.005916190799325705, 0.013165278360247612, -0.062435686588287354, 0.04873257502913475, -0.019630996510386467, 0.018005797639489174, -0.034304551780223846, 0.024225981906056404, -0.03718080371618271, 0.03619866818189621, 0.0067346361465752125, -0.014159104786813259, 0.02165372483432293, 0.05906837061047554, 0.028341593220829964, -0.01718735136091709, 0.03224674612283707, -0.014509866945445538, -0.011715460568666458, 0.05565428361296654, -0.032644275575876236, -0.00094413518672809, -0.01033579558134079, 0.027710221707820892, 0.05813300237059593, -0.024085678160190582, -0.03933214396238327, -0.015994761139154434, 0.005656042136251926, 0.011323776096105576, -0.0538770891726017, 0.02523150108754635, -0.056355807930231094, 0.0318492166697979, 0.017128892242908478, 0.0022244176361709833, 0.021408190950751305, -0.04625385254621506, 0.005755424499511719, -0.04117949306964874, -0.005167897790670395, 0.02138480730354786, 0.02654101327061653, -0.0646338015794754, -0.004390374757349491, -0.019677763804793358, -0.03439809009432793, -0.04015059024095535, -0.06860910356044769, 0.008412448689341545, 0.024015525355935097, -0.02576933614909649, 0.048031050711870193, -0.014872320927679539, -0.0027724835090339184, -0.007746000774204731, 0.008114300668239594, 0.022764472290873528, -0.014650171622633934, -0.02555887959897518, 0.025629030540585518, 0.021291270852088928, -0.0156673826277256, 0.001962807262316346, -0.009178279899060726, -0.039261993020772934, -0.004986670799553394, 0.04148348793387413, -0.0012240142095834017, 0.000712851295247674, -0.039449065923690796, 0.02698531188070774, -0.002687716158106923, -0.04686184227466583, 0.01991160586476326, 0.038724157959222794, 0.003954845014959574, 0.04775043949484825, -0.008669674396514893, -0.0037034652195870876, -0.014638479799032211, -0.022811241447925568, 0.00046585616655647755, -0.032199978828430176, 0.03138153254985809, -0.006682021543383598, -0.020122064277529716, 0.0077927689999341965, -0.04868580773472786, -0.024857355281710625, -0.009973341599106789, -0.0827798992395401, -0.04269946366548538, 0.01310681737959385, -0.025488726794719696, -0.023641377687454224, 0.022343557327985764, 0.031615372747182846, -0.03046955168247223, -0.015141238458454609, 0.014626787975430489, -0.03278458118438721, 0.0030574779957532883, -0.043424371629953384, -0.06299690902233124, 0.009996725246310234, 0.0406416580080986, -0.017397809773683548, -0.01709381490945816, 0.03369656577706337, 0.0015945069026201963, -0.008400756865739822, 0.021326348185539246, 0.018800858408212662, -0.08811149001121521, 0.03809278458356857, -0.05317556485533714, -0.043167147785425186, -0.017023663967847824, 0.001126093091443181, -0.018812550231814384, -0.024623513221740723, 0.06421288102865219, 0.017327656969428062, -0.09470582008361816, -0.04178748279809952, -0.004138994961977005, -0.006869094911962748, 0.019701149314641953, 0.0055712745524942875, 0.03502945974469185, -0.08114300668239594, -0.00576127041131258, 0.04845196381211281, -0.009745345450937748, 0.020741743966937065, -0.022086331620812416, 0.02492750622332096, -0.027219153940677643, -0.025254884734749794, 0.015246467664837837, 0.03472546860575676, -0.008675520308315754, -0.013738189823925495, -0.014474790543317795, 0.009435505606234074, 0.025699183344841003, -0.024015525355935097, -0.015620614401996136, -0.02035590447485447, -0.023010006174445152, 0.03575436770915985, 0.027406226843595505, 0.01163361594080925, 0.052193429321050644, -0.028294824063777924, -0.01342250406742096, 0.03287811949849129, 0.012837899848818779, -0.005866499152034521, 0.00915489625185728, 0.019069775938987732, -0.011282853782176971, 0.025722568854689598, 0.0028236364014446735, -0.026517629623413086, 0.002312108175829053, -0.05200635641813278, 0.022706013172864914, 0.011201009154319763, -0.006454026326537132, -0.004065919667482376, 0.03276119753718376, -0.09840051829814911, 0.03923860937356949, 0.009283509105443954, 0.04943409934639931, 0.007693386171013117, 0.039846595376729965, -0.015363388694822788, 0.024670280516147614, -0.012510521337389946, -0.036315590143203735, -0.00016606402641627938, -0.02918342314660549, -0.0332990325987339, 0.013878494501113892, -0.029370496049523354, -0.05967635661363602, 0.004238377790898085, -0.08488447219133377, -0.005696963984519243, 0.004305607173591852, 0.03486577048897743, -0.04793751239776611, 0.042489007115364075, -0.002705254126340151, -0.05298849195241928, 0.021548496559262276, 0.03858385235071182, -0.033579643815755844, -0.010891169309616089, -0.011703768745064735, -0.058507151901721954, -0.021150965243577957, -0.0005053169443272054, 0.0015857378020882607, 0.016801513731479645, -0.011206855066120625, 0.07258441299200058, 0.06257599592208862, -0.03559068217873573, -0.02071835845708847, 0.015866147354245186, -0.0035193150397390127, 0.011376390233635902, 0.006687867920845747, -0.04099242016673088, -0.005848961416631937, -0.008412448689341545, -0.02698531188070774, 0.005439738743007183, -0.020250676199793816, -0.016368906944990158, -0.03346272185444832, 0.017666727304458618, 0.04054811969399452, 0.0045014494098722935, -0.0034228553995490074, -0.03865400329232216, -0.05369001626968384, 0.0028630972374230623, -0.01650921255350113, -0.014767092652618885, -0.02782714180648327, -0.03271443024277687, 0.02035590447485447, 0.018017489463090897, -0.056496113538742065, -0.004381605423986912, 0.03439809009432793, 0.008131839334964752, 0.011785613372921944, -0.056402575224637985, 0.021583573892712593, -0.03154522180557251, 0.01704704761505127, 0.043564677238464355, -0.03584790602326393, -0.028972964733839035, -0.0132237384095788, -0.020741743966937065, 0.04323729872703552, -0.057291172444820404, -0.021805722266435623, 0.025722568854689598, 0.00018003970035351813, 0.010020109824836254, -0.022472171112895012, -0.019116545096039772, 0.002851405180990696, -0.03360302746295929, 0.0004274915554560721, -0.005299433600157499, -0.0035485452972352505, 0.0055917357094585896, 0.010055185295641422, 0.0342811681330204, 0.006383873522281647, 0.04370498284697533, -0.046604614704847336, -0.0023077235091477633, -0.021373115479946136, 0.0073835463263094425, -0.08469740301370621, 0.006150032393634319, -0.03898138180375099, -0.025839488953351974, 0.007839537225663662, -0.019034700468182564, -0.0054660458117723465, 0.0033877792302519083, 0.02958095259964466, 0.025441957637667656, 0.0045628328807652, 0.013434195891022682, -0.05401739105582237, 0.008833363652229309, 0.022039564326405525, -0.03898138180375099, 0.023571226745843887, -0.006150032393634319, 0.015480308793485165, -0.0006580446497537196, -0.010815170593559742, -0.03131138160824776, 0.044593580067157745, 0.02845851331949234, 0.0005034900386817753, -0.004220839589834213, 0.06332428753376007, -0.0029931715689599514, 0.028318209573626518, -0.03056308813393116, 0.05888129770755768, 0.012206527404487133, -0.061500322073698044, 0.012276680208742619, 0.02944064885377884, -0.03147507086396217, -0.00868136715143919, 0.02581610530614853, -0.004334837198257446, -0.02684500813484192, 0.00181811791844666, 0.027055464684963226, 0.025441957637667656, 0.04531848803162575, -0.003931460902094841, -0.027499763295054436, 0.03222336247563362, -0.03021232597529888, -0.03339257091283798, -0.004422527737915516, 0.020426057279109955, 0.006348797585815191, -0.006097417790442705, -0.007319239899516106, 0.038233090192079544, -0.016088297590613365, 0.018543632701039314, -0.03418762981891632, 0.005986343137919903, 0.0335562601685524, -0.02193433605134487, -0.02366476319730282, 0.001041325507685542, 0.058553919196128845, -0.0012101299362257123, -0.01080932468175888, 0.012732671573758125, 0.04882610961794853, 0.02353614941239357, 0.05513983219861984, -0.04393882304430008, -0.000698601535987109, -0.028575435280799866, 0.0007585234707221389, 0.011119164526462555, -0.013656345196068287, -0.05607519671320915, 0.034515008330345154, 0.03100738674402237, 0.012568982318043709, -0.061640627682209015, -0.02855204977095127, 0.017514729872345924, -0.0066177151165902615, 0.008763210847973824, -0.05771208927035332, -0.04426620155572891, -0.0015302004758268595, -0.005357894115149975, 0.004618369974195957, 0.042348701506853104, 0.034795619547367096, 0.025582263246178627, 0.0382097065448761, -0.0039168456569314, -0.003349779872223735, 0.004352375399321318, 0.019034700468182564, -0.005276049487292767, -0.011750536970794201, -0.060752030462026596, 0.035777755081653595, -0.022296790033578873, -0.06617715209722519, 0.011639461852610111, -0.05785239487886429, 0.029768027365207672, 0.026026561856269836, 0.05055653676390648, 0.040337663143873215, 0.0036274667363613844, 0.002915711607784033, -0.05911513790488243, -0.021092506125569344, -0.00886259414255619, 0.017666727304458618, 0.0012291294988244772, 0.01071578823029995, 0.003247474320232868, 0.012919744476675987, -0.01172715239226818, -0.04323729872703552, -0.026470860466361046, -0.035426992923021317, -0.0489664152264595, -0.015269851312041283, -0.004399143625050783, -0.0016792744863778353, -0.0852118507027626, 0.0033760869409888983, 0.05083714798092842, -0.0015112009132280946, 0.037601716816425323, 0.009593348950147629, -0.017023663967847824, 0.006915863137692213, -0.06379196792840958, -0.011966840364038944, 0.04506126418709755, -0.010020109824836254, -0.008272144012153149, -0.0009127127123065293, -0.04775043949484825, 0.007050321903079748, 0.0418810173869133, 0.02420259825885296, -0.0016368906944990158, 0.0006770442705601454, 0.018227947875857353, 0.002262416761368513, 0.05897483229637146, -0.005471891723573208, -0.024506591260433197, 0.035824522376060486, -0.032059673219919205, 0.011627770029008389, -0.004530679434537888, 0.02108081430196762, 0.020882047712802887, -0.006442334037274122, -0.01606491208076477, -0.027546532452106476, 0.017830416560173035, 0.03556729480624199, -0.04071180894970894, -0.021267887204885483, -0.031217843294143677, 0.0013825880596414208, 0.010891169309616089, 0.01031241100281477, -0.0026044100522994995, -0.021677110344171524, -0.010645635426044464, -0.10681881010532379, -0.0217940304428339, 0.021022353321313858, 0.0005849691806361079, -0.02263586036860943, -0.02318538725376129, 0.048218123614788055, -0.005992189049720764, -0.024857355281710625, 0.039449065923690796, 0.002667255001142621, -0.013995415531098843, -0.011300391517579556, 0.03732110932469368, -0.014030491933226585, 0.026096714660525322, -0.01820456236600876, 0.020683282986283302, -0.01812271773815155, 0.02581610530614853, 0.04274623095989227, 0.02196941152215004, 0.0022156485356390476, 0.019841453060507774, -0.013024972751736641, -0.0015521231107413769, 0.007962304167449474, 0.006185108330100775, -0.037882328033447266, 0.023068467155098915, -0.011119164526462555, 0.012159759178757668, -0.021197734400629997, 0.021267887204885483, 0.021642033010721207, -0.00595126673579216, -0.0028397131245583296, -0.00046074087731540203, 0.03933214396238327, -0.01174469105899334, -0.011627770029008389, -0.016591057181358337, -0.020379289984703064, -0.018239639699459076, 0.03951921686530113, 0.015959683805704117, -0.07959965616464615, 0.08170422911643982, 0.03849031403660774, -0.01892947219312191, -0.03706388175487518, -0.03423440083861351, 0.015492001548409462, -0.005708656273782253, 0.003910999745130539, 0.003200705861672759, -0.0026394862215965986, -0.01598306931555271, 0.0005367393605411053, 0.0027037926483899355, -0.016263678669929504, 0.027756989002227783, 0.03619866818189621, 0.012557290494441986, 0.006506640464067459, 0.02389860339462757, -0.00316562969237566, 0.014392945915460587, 0.014311101287603378, -0.06636422872543335, 0.04099242016673088, 0.0019891145639121532, 0.003574852366000414, 0.008774903602898121, -0.01376157347112894, -0.009254278615117073, -0.0012620134511962533, -0.0031042462214827538, 0.003878846298903227, 0.014568326994776726, -0.01324712298810482, 0.005296510644257069, 0.0102247204631567, 0.02689177542924881, 0.010107800364494324, 0.017561499029397964, 0.011762228794395924, -0.033041808754205704, -0.030001867562532425, -0.013527732342481613, -0.029417263343930244, -0.0032094749622046947, 0.01758488267660141, -0.014381254091858864, 0.01555046159774065, 0.03250397369265556, 0.017795341089367867, 0.00624356884509325, 0.01116593275219202, -0.01107824221253395, -0.023162003606557846, 0.003124707378447056, -0.0047440598718822, -0.004647600464522839, 0.03923860937356949, -0.005796346813440323, 0.018906086683273315, 0.0002897442609537393, -0.006097417790442705, 0.030305862426757812, -0.019899914041161537, -0.02318538725376129, -0.020426057279109955, 0.022565707564353943, 0.03701711446046829, 0.02040267363190651, -0.03418762981891632, 0.058600686490535736, 0.012323448434472084, 0.009704423137009144, -0.02340753749012947, 0.011031473986804485, 0.006652791518718004, 0.020823588594794273, -0.03400055691599846, 0.002027113689109683, -0.0221564844250679, -0.0010025955270975828, -0.004089303780347109, -0.014287717640399933, 0.013317274861037731, 0.011534233577549458, 0.03727433830499649, -0.021443268284201622, 0.02089374139904976, 0.0025576415937393904, -0.007459544576704502, 0.013317274861037731, -0.014322793111205101, 0.003300088457763195, -0.04784397780895233, 0.001198437879793346, -0.029113270342350006, -0.05420446768403053, 0.00409514969214797, 0.009681039489805698, 0.003270858433097601, 0.019712841138243675, 0.025137964636087418, 0.0038233089726418257, -0.025067811831831932, 0.004045458510518074, 0.026166867464780807, -0.010394255630671978, -0.023559533059597015, -0.02094050869345665, 0.029323726892471313, 0.023197079077363014, 0.020835280418395996, 0.057291172444820404, 0.002382260514423251, 0.03278458118438721, -0.015129546634852886, 0.030680008232593536, -0.0034725465811789036, 0.008441679179668427, 0.012674210593104362, 0.018286406993865967, 0.04134318232536316, 0.00854690745472908, 0.004770366940647364, -0.020519593730568886, 0.00886259414255619, -0.0009463274036534131, -0.02312692627310753, 0.004764521028846502, -0.05097745358943939, -0.02053128555417061, -0.023337384685873985, 0.0009726345888338983, 0.0029434801544994116, 0.05252080783247948, 0.01472032442688942, -0.044733885675668716, 0.013480964116752148, -0.05579458922147751, -0.026330556720495224, -0.02394537255167961, 0.030446166172623634, -0.021490035578608513, 0.032012905925512314, 0.006997707765549421, -0.005366662982851267, -0.007108782418072224, 0.013434195891022682, -0.025441957637667656, -0.015994761139154434, 0.01902300864458084, -7.070052379276603e-05, 0.022168176248669624, -0.01496585737913847, 0.018064258620142937, 0.018064258620142937, -0.00246702809818089, 0.0003456470149103552, 0.004016228020191193, 0.01857871003448963, -0.0008425602572970092, -0.006798942573368549, -0.03654943034052849, 0.013551116921007633, -0.013551116921007633, 0.009067204780876637, 0.009605040773749352, -0.029908331111073494, 0.005816807970404625, -0.03336918726563454, 0.0024348748847842216, -0.017082123085856438, 0.008248759433627129, -0.012440369464457035, -0.02997848391532898, -0.0016938896151259542, 0.023290615528821945, 0.007839537225663662, -0.014767092652618885, -0.0200869869440794, 0.028481898829340935, -0.024272751063108444, -0.024997659027576447, 0.018964547663927078, 0.007868767715990543, 0.003124707378447056, 0.01798241399228573, 0.04225516319274902, 0.016567671671509743, 0.009049667045474052, 0.0014103567227721214, 0.0013248584000393748, -0.018777474761009216, 0.01219483558088541, 0.021992795169353485, 0.027733605355024338, -0.025091195479035378, -0.012007762677967548, -5.960218550171703e-05, 0.03096061758697033, 0.05069684237241745, -0.030726777389645576, -0.00874567311257124, -0.026237020269036293, 0.014685248024761677, -0.056449346244335175, 0.02443644031882286, -0.0062201847322285175, 0.010476100258529186, 0.040969036519527435, 0.01843840442597866, -0.00845921691507101, 0.028832660987973213, 0.003180244704708457, 0.05065007507801056, -0.007208165246993303, 0.010002571158111095, 0.0035777753219008446, -0.01722242869436741, -0.027312690392136574, -0.001078594010323286, -0.004858057945966721, 0.0021089583169668913, -0.028435129672288895, -0.009067204780876637, 0.003878846298903227, 0.013060049153864384, 0.014088951982557774, -0.03212982416152954, -0.013282198458909988, 0.03400055691599846, -0.009160742163658142, -0.013305583037436008, -0.018742399290204048, 0.06042465195059776, 0.0003957037115469575, 0.002351568778976798, 0.028668971732258797, 0.034748852252960205, 0.020215600728988647, 0.012241603806614876, -0.011540079489350319, 0.007062014192342758, 0.01588953100144863, 0.030282476916909218, -0.010365026071667671, 0.026120098307728767, -0.030492935329675674, -0.0022814164403826, -0.004326068330556154, 0.004042535554617643, 0.0033030116464942694, -0.03491254150867462, 0.0064189499244093895, 0.0015638151671737432, -0.0047002146020531654, 0.00419453252106905, -0.0005520852282643318, -0.0018941164016723633, 0.009254278615117073, -0.019794685766100883, -0.013060049153864384, -0.015351695939898491, 0.00021392846247181296, 0.00895028468221426, 0.03804601728916168, 0.047984279692173004, -0.024413054808974266, 0.01668459363281727, 0.0046271393075585365, -0.021092506125569344, 0.024553360417485237, 0.022881394252181053, -0.02415582910180092, 0.016707977280020714, 0.01812271773815155, -0.015036010183393955, 0.0016719669802114367, -0.029066501185297966, -0.0030779391527175903, 0.009476427920162678, 0.013013280928134918, -0.030750161036849022, 0.008821671828627586, -0.0262136347591877, -0.0411561094224453, -0.005001285579055548, -0.012604058720171452, 0.012148067355155945, -0.04417266324162483, -0.006804788485169411, -0.0021454959642142057, 0.04120287671685219, -0.044640347361564636, 0.0022565708495676517, 0.01528154406696558, 0.03301842510700226, 0.00736016221344471, 0.032199978828430176, -0.01313020195811987, -0.0411561094224453, -0.010522868484258652, -0.030750161036849022, 0.000725274090655148, 0.008085071109235287, -0.0186137855052948, 0.0169067420065403, -0.005919113755226135, 0.009909034706652164, 0.013597885146737099, 0.007009399589151144, -0.025348421186208725, 0.01763165183365345, 0.02448320761322975, 0.05364324524998665, -0.02206294797360897, 0.011592693626880646, 0.032948270440101624, 0.0087515190243721, 0.01174469105899334, -0.016707977280020714, 0.001822502352297306, -0.015912916511297226, -0.004364067688584328, 0.0007577926735393703, 0.02899635024368763, -0.01856701821088791, 0.024623513221740723, -0.029510801658034325, 0.010002571158111095, -0.029066501185297966, 0.009721961803734303, -0.00910228118300438, -0.03661958500742912, 0.04265269637107849, 0.013679729774594307, 0.010476100258529186, -0.0217940304428339, -0.011002243496477604, -0.031428299844264984, 0.08843886852264404, 0.01798241399228573, -0.04676830396056175, 0.03369656577706337, 0.03252735733985901, 0.008143531158566475, -0.005185435991734266, 0.00631956709548831, -0.007938919588923454, -0.007325085811316967, 0.005451430566608906, 0.028224673122167587, 0.0064072576351463795, 0.017467962577939034, 0.006658637430518866, 0.012861284427344799, 0.0172691959887743, 0.026517629623413086, 0.013364043086767197, 0.023430921137332916, 0.03540360555052757, 0.017608266323804855, 0.007126320619136095, 0.0021849568001925945, 0.019350387156009674, -0.03449162468314171, 0.03442147374153137, 0.01501262653619051, 0.0030779391527175903, -0.008324758149683475, 0.0063254134729504585, -8.851267193676904e-05, 0.0074770827777683735, 0.0015389695763587952, 0.03507623076438904, -0.010750864632427692, 0.02944064885377884, 0.026166867464780807, -0.02170049399137497, -0.03360302746295929, -0.008032456040382385, 0.03236366808414459, 0.03481900319457054, -0.03154522180557251, -0.012276680208742619, 0.009230894036591053, 0.004796674475073814, -0.002636563265696168, -0.030048636719584465, -0.04206809028983116, 0.06673837453126907, 0.023208770900964737, 0.020040219649672508, 0.007395238149911165, 0.0323169007897377, 0.00438452884554863, -0.024763816967606544, -0.00033523375168442726, 0.03701711446046829, 0.019490690901875496, -0.018087642267346382, 0.02098727785050869, -0.018087642267346382, -0.016626132652163506, 0.026026561856269836, -0.02698531188070774, 0.010370871983468533, 0.03968290612101555, 0.029861563816666603, 0.011025628075003624, -0.018695630133152008, 0.011890841647982597, 0.0003865692706312984, 0.012849591672420502, 0.004559909924864769, -0.03556729480624199, -0.010230566374957561, 0.021630341187119484, 0.009944111108779907, -0.011353006586432457, 0.030843697488307953, -0.004878518637269735, -0.007395238149911165, 0.03687680885195732, 0.006682021543383598, 0.020870355889201164, 0.061406783759593964, -0.006454026326537132, -0.0012123221531510353, -0.027125617489218712, 0.012837899848818779, 0.02263586036860943, 0.0005411239108070731, 0.003609928535297513, -0.0069334013387560844, -0.03559068217873573, 0.029253575950860977, -0.025792719796299934, 0.025137964636087418, 0.001986191375181079, -0.019666071981191635, -0.0231386199593544, 0.02546534314751625, -0.011125010438263416, -0.009096435271203518, 0.04625385254621506, -0.00847675558179617, 0.01349265594035387, 0.01277943979948759, 0.03442147374153137, 0.0025444880593568087, -0.047539982944726944, 0.018368251621723175, 0.01856701821088791, 0.015597229823470116, -0.004147764295339584, 0.004773290362209082, 0.006717097945511341, 0.0007753308163955808, 0.01942053809762001, -0.0017085046274587512, 0.03332241624593735, -0.009669346734881401, -0.01857871003448963, -0.012849591672420502, 0.014474790543317795, 0.0013752804370597005, 0.0002535718958824873, -0.042489007115364075, -0.0003514930431265384, -0.002217110013589263, -0.002107496839016676, 0.010090261697769165, 0.026821622624993324, -0.009423813782632351, 0.014100643806159496, -0.0010172106558457017, 0.0056648110039532185, -0.0073484699241817, -0.02429613471031189, 0.0032094749622046947, -0.021595265716314316, -0.017970722168684006, 0.0009909034706652164, -0.006787250284105539, -0.03198952227830887, 0.022168176248669624, -0.03196613863110542, 0.005273126531392336, -0.01496585737913847, 0.006576792802661657, -0.014170796610414982, -0.05733794346451759, -0.01044687069952488, 0.0036859270185232162, -0.031428299844264984, -0.017561499029397964, 0.016801513731479645, -0.01089701522141695, 0.016883358359336853, 0.0359882116317749, -0.02728930674493313, -0.01717565953731537, -0.019794685766100883, -0.017596574500203133, 0.005816807970404625, -0.04005705192685127, 0.03060985542833805, -0.0028031752444803715, -0.018812550231814384, -0.018964547663927078, 0.0018663477385416627, -0.015538769774138927, 0.00980380643159151, 0.0018356560030952096, -0.01501262653619051, -0.003346856916323304, 0.048264890909194946, 0.01324712298810482, 0.01763165183365345, -0.005027592647820711, -0.01143485028296709, 0.017701802775263786, 0.005886960308998823, 0.0396595224738121, -0.0004541640810202807, 0.004954517353326082, 0.025301653891801834, -0.0053812782280147076, 0.008494293317198753, 0.012007762677967548, -0.017432885244488716, 0.0014615094987675548, -0.017888877540826797, 0.01221822015941143, 0.0015521231107413769, -0.0073484699241817, 0.0311009231954813, 0.01614675670862198, -0.004036689177155495, 0.0028981734067201614, 0.01555046159774065, -0.019069775938987732, 0.02282293327152729, -0.0005034900386817753, 0.015316620469093323, -0.040290895849466324, -0.009985033422708511, -0.03804601728916168, -0.0029493262991309166, -0.026190251111984253, -0.0033322416711598635, -0.011054858565330505, -0.0017333503346890211, 0.018941164016723633, -0.012966512702405453, 0.0016193526098504663, -0.04695538058876991, -0.028271440416574478, -0.00669955974444747, -0.002851405180990696, -0.027359459549188614, -0.01405387558043003, -0.01510616298764944, 0.01555046159774065, -0.0003268300788477063, 0.02733607403934002, 0.06103263795375824, -0.01919838972389698, 0.012416984885931015, -0.015071086585521698, 0.011586847715079784, -0.004910672083497047, 0.06374520063400269, 0.025137964636087418, 0.0044166818261146545, -0.006822326686233282, 0.009856420569121838, -0.03664296865463257, 0.021782338619232178, 0.012580674141645432, -0.015410156920552254, -0.008166915737092495, -0.01669628545641899, -0.009909034706652164, 0.02890281192958355, -0.0044926805421710014, -0.0019467307720333338, -0.0052351271733641624, 0.011271161958575249, -0.012837899848818779, -1.3621725884149782e-05, -0.027125617489218712, -0.025675799697637558, -0.029908331111073494, 0.03715742006897926, 0.007903843186795712, -0.00845921691507101, -0.019525768235325813, 0.009558272548019886, -0.007249087560921907, -0.05270788073539734, 0.03575436770915985, -0.020870355889201164, 0.016170142218470573, 0.0027374073397368193, -0.015760919079184532, -0.00809676293283701, 0.014240949414670467, -0.005053900182247162, 0.011031473986804485, 0.020870355889201164, 0.020870355889201164, 0.010563790798187256, 0.016322137787938118, -0.00012002647417830303, 0.012545597739517689, 0.0009594809962436557, 0.03442147374153137, -0.04099242016673088, -0.027055464684963226, 0.003554391209036112, 0.00015829975018277764, 0.0352633036673069, -0.022881394252181053, -0.010458562523126602, -0.022811241447925568, -0.018461788073182106, -0.02836497686803341, -0.02013375610113144, -0.02654101327061653, -0.0015740457456558943, 0.021291270852088928, 0.020554671064019203, -0.014685248024761677, -0.03870077431201935, 0.017386117950081825, 0.02537180483341217, -0.00030234979931265116, 0.019666071981191635, -0.004270530771464109, -0.016567671671509743, -0.021899258717894554, -0.017666727304458618, -0.010546253062784672, 0.03535683825612068, -0.016439059749245644, 0.015538769774138927, 0.0014249718515202403, -0.03248059004545212, 0.022834625095129013, -0.035146381705999374, -0.021419884636998177, -0.03661958500742912, 0.01454494334757328, 0.026330556720495224, -0.004033766221255064, -0.030820313841104507, -0.04583293944597244, -0.0182513315230608, 0.017421193420886993, 0.02286970056593418, -0.007453698664903641, 0.03996351733803749, 0.004746982827782631, -0.012066222727298737, -0.0025401036255061626, 0.009610886685550213, 0.015492001548409462, 0.0048463656567037106, -0.047539982944726944, 0.0013672421919181943, -0.03942568227648735, -0.0075706192292273045, -0.020507901906967163, -0.005726194474846125, 0.03456177935004234, -0.03715742006897926, -0.008617060258984566, -0.025745952501893044, -0.02035590447485447, -0.0001261465367861092, -0.007880459539592266, 0.006746327970176935, -0.021221118047833443, 0.002187879756093025, -0.03138153254985809, 0.00549235288053751, -0.030259093269705772, 0.031662143766880035, -0.005281895399093628, 0.01024810504168272, 0.0018064257455989718, 0.01695351116359234, -0.015901224687695503, -0.011984378099441528, -0.02393368072807789, 0.015234775841236115, -0.01964268833398819, 0.009113973937928677, 0.041109342128038406, 0.021221118047833443, 0.001547738560475409, 0.006068187765777111, 0.010990551672875881, 0.04178748279809952, 0.02778037264943123, -0.017035355791449547, -0.006869094911962748, -0.04138994961977005, -0.03042278252542019, 0.032106440514326096, -0.006576792802661657, -0.005311125889420509, 0.04426620155572891, -0.018683938309550285, -0.010376717895269394, -0.01910485327243805, 0.010674865916371346, -0.03350948914885521, -0.025044428184628487, 0.04990178346633911, 0.0033731639850884676, 0.005240973085165024, 0.01293143630027771, 0.01369142159819603, -0.011288699693977833, 0.016099989414215088, 0.010195490904152393, 0.013001589104533195, 0.007225702982395887, 0.0022741088178008795, 0.022974930703639984, -0.028271440416574478, 0.011125010438263416, -0.05181928351521492, -0.009587503038346767, -0.02546534314751625, -0.02157188020646572, 0.005159128922969103, 0.0053812782280147076, -0.03056308813393116, 0.0027096387930214405, -0.011376390233635902, -0.025605646893382072, 0.006401411723345518, 0.012837899848818779, -0.024623513221740723, -0.0056765032932162285, 0.0033936251420527697, 0.026774855330586433, -0.03545037657022476, -0.01246375311166048, 0.0023048005532473326, 0.008061686530709267, 0.023816758766770363, 0.007997380569577217, -0.0056940410286188126, 0.007366008125245571, -0.049387332051992416, -0.015597229823470116, 0.023699838668107986, -0.007208165246993303, 0.0236296858638525, 0.006816480308771133, 0.01669628545641899, -0.01510616298764944, -0.015620614401996136, -0.03495930880308151, -0.023746607825160027, 0.004402066580951214, -0.021770646795630455, -0.007839537225663662, 0.030188940465450287, -0.001857578638009727, -0.0462772399187088, 0.0053812782280147076, 0.022974930703639984, -0.03234028443694115, 0.006395565811544657, -0.026961928233504295, 0.025067811831831932, -0.012416984885931015, 0.03545037657022476, -0.003919768612831831, -0.014755400829017162, 0.035193149000406265, 0.021677110344171524, 0.0010055185994133353, 0.008266298100352287, -0.012919744476675987, 0.003764848690479994, -0.022881394252181053, 0.03238705173134804, -0.0037531566340476274, -0.009476427920162678, -0.024109061807394028, 0.002247801749035716, -0.028177903965115547, 0.01163361594080925, 0.013995415531098843, 0.0013562808744609356, -0.028622202575206757, 0.03114769235253334, -0.007301701698452234, -0.02340753749012947, 0.0023603378795087337, -0.02085866406559944, 0.010078569874167442, -0.023688146844506264, 0.017351040616631508, -0.017666727304458618, 0.0009762884001247585, -0.018824242055416107, 0.011738845147192478, -0.018999624997377396, -0.03736787661910057, -0.028177903965115547, -0.018941164016723633, -0.009616732597351074, 0.007442006841301918, -0.03549714386463165, -0.03909830376505852, -0.013586192391812801, -0.017023663967847824, -0.006389719899743795, -0.005197127815335989, -0.015912916511297226, 0.014334485866129398, 0.02125619538128376, -0.02312692627310753, -0.020659899339079857, -0.050322696566581726, -0.04108595475554466, -0.021712185814976692, 0.019081467762589455, -0.020461132749915123, 0.00410684198141098, 0.039706289768218994, -0.00011810824071289971, -0.014919089153409004, -0.03683004155755043, 0.003609928535297513, 0.0015871993964537978, -0.03016555681824684, 0.02756991609930992, -0.024904122576117516, -0.006588485091924667, 0.009739499539136887, -0.01587783917784691, -0.0021601112093776464, 0.04340098798274994, -0.0055595822632312775, 0.003101323265582323, 0.06444672495126724, 0.012066222727298737, -0.01905808411538601, -0.009365352801978588, 0.024576744064688683, 0.012300064787268639, -0.013995415531098843, 0.018777474761009216, -0.011160086840391159, 0.023606302216649055, -0.00018150122195947915, 0.02586287260055542, -0.012358524836599827, 0.029955100268125534, 0.008295528590679169, -0.010265642777085304, 0.055373672395944595, -0.03065662458539009, -0.029253575950860977, 0.006869094911962748, -0.007436160463839769, -0.007564773317426443, -0.01277943979948759, -0.009084743447601795, 0.00246702809818089, 0.03549714386463165, 0.007395238149911165, 0.004884365014731884, 0.01366803701967001, -0.04160040616989136, 0.025067811831831932, 0.005544967018067837, -0.004118533805012703, -0.024576744064688683, 0.007418622262775898, 0.0157959945499897, -0.0008535215747542679, 0.008932746015489101, 0.006816480308771133, -0.002187879756093025, -0.0018838858231902122, -0.010575482621788979, -0.02988494746387005, 0.018356559798121452, -0.007418622262775898, -0.03364979475736618, -0.04786736145615578, -0.03336918726563454, -0.014708631671965122, -0.00892690010368824, 0.0007413506973534822, -0.002398337237536907, -0.056402575224637985, -0.024506591260433197, 0.0012883206363767385, -0.0067521738819777966, -0.025254884734749794, 0.017163967713713646, -0.031217843294143677, -0.0042909919284284115, -0.015386772342026234, 0.005960036069154739, 0.0157959945499897, -0.02894958108663559, 0.032106440514326096, 0.003878846298903227, 0.03364979475736618, 0.003770694602280855, 0.012335140258073807, 0.013083433732390404, 0.020192215219140053, -0.002062189858406782, 0.0007307547493837774, 0.026564396917819977, -0.004229608457535505, -0.006278645247220993, 0.009149049408733845, -0.007710924372076988, -0.014615095220506191, -0.0026482553221285343, 0.016275370493531227, -0.019315309822559357, 0.0279206782579422, 0.0323169007897377, 0.009985033422708511, -0.0094881197437644, -0.009283509105443954, -0.014030491933226585, 0.03346272185444832, -0.0071613965556025505, -0.0034374704118818045, 0.00941796787083149, 0.01802918128669262, 0.022074639797210693, -0.039986900985240936, 0.004767443984746933, 0.008868440054357052, 0.01089701522141695, -0.02120942622423172, 0.03809278458356857, -0.036362357437610626, 0.005620965734124184, -0.010926245711743832, 0.006886633113026619, -0.006547562777996063, -0.003957767970860004, -0.0011502080596983433, 0.006196800619363785], [0.014812544919550419, 0.01850118115544319, 0.030019471421837807, 0.01338580809533596, -0.02278139255940914, -0.025170886889100075, -0.0372343510389328, 0.02510128915309906, 0.02221301756799221, -0.003668337594717741, -0.044472433626651764, 0.00012261020310688764, -0.03271055221557617, -0.058971792459487915, 0.017434028908610344, 0.04356767237186432, -0.0003191671275999397, 0.014302167110145092, -0.07214880734682083, 0.003975723870098591, -0.009673971682786942, 0.024196529760956764, -0.026029247790575027, 0.0073250760324299335, -0.002673681592568755, 0.01710924319922924, 0.0029491696041077375, -0.04275570809841156, 0.029578691348433495, 0.030808236449956894, 0.01807199977338314, -0.02125025913119316, 0.05173370987176895, 0.020763080567121506, 0.049042630940675735, 0.04015742242336273, -0.006141928024590015, -0.01598409190773964, 0.03129541501402855, -0.013988981023430824, -0.023628154769539833, 0.05396081134676933, 0.0396934449672699, 0.011355897411704063, -0.03514644503593445, 0.0632404014468193, 0.037744730710983276, -0.009749368764460087, 0.016343677416443825, 0.05985335260629654, 0.009436182677745819, 0.005422760266810656, -0.03762873634696007, 0.0670914277434349, 0.032872945070266724, 0.009499979205429554, 0.015404118224978447, 0.003302953904494643, 0.01890716329216957, -0.008572020567953587, -0.03739674389362335, 0.022711794823408127, -0.019753925502300262, 0.005880939774215221, 0.03308173641562462, -0.01262024138122797, -0.047929078340530396, 0.02633083425462246, -0.010862919501960278, 0.03806951642036438, 0.009436182677745819, 0.018419984728097916, 0.009389784187078476, -0.03987903520464897, 0.00849082414060831, 0.0328497476875782, -0.0005038527306169271, 0.002216951921582222, 0.011611086316406727, -0.025008494034409523, -0.006194125860929489, 0.031504206359386444, -0.026864411309361458, -0.015763701871037483, -0.006623306777328253, 0.017028046771883965, -0.020589089021086693, -0.026446830481290817, -0.026678819209337234, 0.017724016681313515, 0.01187207456678152, -0.006165127269923687, 0.019765526056289673, 0.07261278480291367, -0.013768590986728668, -0.06041012704372406, -0.0033899499103426933, 0.02316417545080185, -0.006617506965994835, 0.07400472462177277, -0.00270558032207191, 0.026586024090647697, 0.02660922333598137, 0.018779568374156952, -0.008786611258983612, -0.014093376696109772, -0.04748829826712608, -0.0015775301726534963, 0.03294254094362259, 0.005196569953113794, -0.019916318356990814, 0.008705414831638336, -0.039252664893865585, 0.006281122099608183, -0.00693069351837039, -0.030251462012529373, -0.009088197723031044, -0.03595840930938721, 0.046397946774959564, -0.01983512192964554, -0.020867476239800453, 0.016506070271134377, 0.0023416464682668447, -0.07651021331548691, -0.007220680359750986, 0.041294172406196594, 0.014429761096835136, -0.02068188413977623, -0.015566511079668999, 0.0014977836981415749, -0.008276233449578285, -0.0028926220256835222, 0.014626952819526196, 0.019081154838204384, -0.013745391741394997, -0.029161110520362854, 0.017561623826622963, 0.001245494931936264, -0.034682463854551315, -0.03941505774855614, -0.02026430331170559, -0.01048013661056757, -0.002691081026569009, -0.015821699053049088, -0.035772815346717834, -0.02055429108440876, 0.0041990140452980995, 0.04424044117331505, 0.05507436394691467, -0.010978913865983486, -0.018431585282087326, 0.009807365946471691, -0.04969220235943794, -0.007887651212513447, 0.02493889629840851, -0.008769212290644646, 0.01096151489764452, 0.022363809868693352, -0.027815569192171097, 0.015763701871037483, -0.036491986364126205, -0.018593978136777878, 0.01807199977338314, 0.013467004522681236, 0.026980405673384666, 0.025194086134433746, 0.006704503204673529, -0.017735615372657776, -0.07367993891239166, 0.008479224517941475, -0.034125689417123795, -0.04830026254057884, -0.05423919856548309, -0.05572393536567688, -0.05284726247191429, -0.023755749687552452, 0.02191143110394478, 0.02357015758752823, 0.011205104179680347, -0.036074403673410416, -0.008177638053894043, 0.00396122457459569, -0.021203862503170967, -0.015670906752347946, -0.05377522110939026, 0.005141472443938255, 0.016888853162527084, -0.017608020454645157, 0.00951157882809639, 0.016239281743764877, 0.006083930842578411, 0.03686317056417465, 0.024637309834361076, 0.028047559782862663, -0.04412444680929184, -0.0146849500015378, -0.014708149246871471, -0.016378475353121758, -0.01599569246172905, 0.02207382395863533, -0.03558722510933876, -0.018663574010133743, 0.013548200950026512, 0.03215377777814865, -0.05326484143733978, -0.035239242017269135, 0.03104022704064846, -0.01666846312582493, 0.03020506352186203, 0.02163304202258587, 0.035494428128004074, -0.023639753460884094, -0.045701976865530014, -0.028349146246910095, -0.010253946296870708, 0.0015021335566416383, 0.014789345674216747, 0.08351630717515945, 0.004245412070304155, -0.0086938152089715, 0.010590331628918648, -0.007707858923822641, -0.028047559782862663, 0.006298521533608437, -0.0056489501148462296, 0.009076598100364208, 0.06788019835948944, -0.038835082203149796, -0.007388873025774956, -0.07599983364343643, -0.003610340179875493, 0.06681304425001144, 0.03329052776098251, -0.04533079266548157, 0.039531052112579346, 0.01511413138359785, -0.045307595282793045, 0.020171508193016052, -0.0008126890170387924, -0.00703508872538805, 0.010949915274977684, 0.020461494103074074, -0.007916649803519249, 0.006205725483596325, 0.025333279743790627, -0.03751274198293686, -0.03389370068907738, 0.02579725906252861, 0.01709764264523983, -0.0057243467308580875, -0.02112266607582569, 0.0017239736625924706, 0.05586312711238861, -0.0643075555562973, 0.034264884889125824, -0.008722813799977303, 0.046397946774959564, 0.008026844821870327, 0.05535275116562843, -0.016227681189775467, 0.01942913979291916, -0.03484485670924187, -0.038139112293720245, 0.03985583782196045, -0.05999254435300827, -0.0006724077393300831, 0.053450435400009155, -0.042848505079746246, -0.031527403742074966, 0.00971456989645958, -0.08314511924982071, -0.03389370068907738, -0.0260524470359087, -0.006994490511715412, -0.022653797641396523, 0.0444028340280056, -0.007064087316393852, -0.045168399810791016, 0.02496209554374218, 0.02318737469613552, -0.0037611336447298527, 0.001134574762545526, 0.013582998886704445, -0.01159368734806776, 0.01082232128828764, -0.010874519124627113, 0.010062554851174355, 0.01822279393672943, 8.944291766965762e-05, 0.04528439790010452, 0.0016848254017531872, -0.02426612563431263, -0.01835038885474205, -0.01626248098909855, -0.05321844667196274, 0.0037814327515661716, -0.013304611667990685, -0.03375450521707535, -0.02261899970471859, 0.009888562373816967, -0.01413977425545454, 0.01572890393435955, -0.009082398377358913, -0.030413854867219925, -0.028070757165551186, 0.03697916492819786, 0.036190398037433624, -0.04345167800784111, -0.03625999391078949, -0.025402875617146492, -0.0499705895781517, -0.008954803459346294, -0.053311239928007126, -0.017318034544587135, -0.012968226335942745, -0.026794813573360443, 0.013374208472669125, 0.03173619508743286, -0.0176544189453125, 0.005135672632604837, 0.0386262908577919, -0.011686482466757298, 0.05131613090634346, -0.011582087725400925, -0.0017558722756803036, 0.03753593936562538, 0.012539044953882694, -0.022108621895313263, -0.028349146246910095, 0.034682463854551315, 0.013258213177323341, 0.00896640308201313, 0.01054973341524601, 0.022387009114027023, 0.0018254691967740655, -0.02027590200304985, -0.007058287505060434, 0.04922822117805481, -0.028488339856266975, 0.04936741665005684, -0.033058539032936096, 0.02895231917500496, 0.0207050833851099, -0.04465802386403084, -0.001323791453614831, 0.053311239928007126, 0.02730519138276577, 0.05479597672820091, 0.013223415240645409, -0.019777124747633934, 0.01874477043747902, 0.015288123860955238, 0.015682505443692207, -0.0319913849234581, -0.0888056680560112, -0.0018631675047799945, 0.0031695596408098936, -0.00723807979375124, -0.005289366003125906, 0.017039645463228226, -0.014197771437466145, -0.020067112520337105, 0.051084138453006744, 0.040343016386032104, -0.006652305833995342, -0.023233771324157715, -0.018779568374156952, -0.00434690760448575, 0.033592112362384796, -0.03653838485479355, -0.004419404547661543, 0.008299432694911957, -0.023894943296909332, -0.011947471648454666, 0.030599446967244148, 0.010166950523853302, -0.004022121895104647, 0.03018186427652836, -0.005927337799221277, 0.043938856571912766, 0.1034674197435379, -0.006286921910941601, 0.04672273248434067, -0.0248229019343853, 0.05655909702181816, 0.03765193372964859, -0.013003024272620678, -0.0066755046136677265, 0.028163554146885872, -0.03349931910634041, -0.02797796204686165, 0.01614648476243019, 0.019533535465598106, -0.01739923097193241, -0.051362525671720505, 0.006130328867584467, 0.019649529829621315, 0.027792369946837425, -0.00019012283883057535, -0.02839554287493229, -0.0014673350378870964, -0.016796056181192398, -0.036375992000103, -0.04424044117331505, 0.00043280585668981075, 0.03484485670924187, 0.003505944972857833, 0.019533535465598106, 0.059250179678201675, 0.040621403604745865, 0.023802146315574646, -0.025263682007789612, 0.0009816065430641174, 0.004749989602714777, 0.02512448839843273, -0.00010901704808929935, 0.016192883253097534, 0.03127221763134003, -0.02660922333598137, -0.023071378469467163, 0.039484653621912, -0.008003645576536655, -0.0023836945183575153, 0.026678819209337234, -0.02786196768283844, -0.030924230813980103, -0.020716683939099312, 0.0030593646224588156, 0.058693401515483856, -0.05312564969062805, -0.014963338151574135, -0.01752682402729988, 0.037443142384290695, 0.03210737928748131, -0.057301465421915054, -2.3312250050366856e-05, -0.008943203836679459, 0.025890054181218147, 0.012979825958609581, -0.007098885718733072, -0.007522267289459705, 0.0041787149384617805, -0.028163554146885872, 0.0019342143787071109, -0.006356518715620041, 0.0248229019343853, -0.010462736710906029, 0.004894983489066362, 0.02827954851090908, -0.002780976938083768, -0.006536311004310846, -0.0032536559738218784, -0.04704751819372177, -0.007957248017191887, -0.06305480748414993, -0.018431585282087326, -0.028488339856266975, -0.10244666785001755, 0.018779568374156952, -0.0466531366109848, -0.017967604100704193, 0.02649322710931301, 0.06041012704372406, 0.04700111970305443, 0.024219729006290436, 0.02788516692817211, -0.05966775864362717, -0.026539625599980354, -0.015601309947669506, -0.030599446967244148, -0.014742948114871979, -0.021331455558538437, 0.0006745826685801148, -0.002912921132519841, 0.022549401968717575, -0.002609884599223733, -0.03658477962017059, -0.0007568665314465761, -0.0025794359389692545, -0.027073202654719353, -0.006333319935947657, 0.03918306529521942, -0.020183106884360313, -0.058971792459487915, 0.03456646949052811, 0.03301214054226875, 0.035239242017269135, -0.003401549533009529, -0.047070715576410294, 0.004912382457405329, -0.025681262835860252, -0.0161580853164196, 0.04154936224222183, -0.009592775255441666, -0.0521048940718174, -0.010973114520311356, -0.008960603736341, -0.0095753762871027, 0.040343016386032104, -0.012376652099192142, 6.601739005418494e-05, 0.0181879960000515, -0.012771034613251686, 0.004512200132012367, 0.06583868712186813, -0.012852231040596962, 0.014963338151574135, 0.06027093157172203, -0.008427026681602001, -0.011280501261353493, -0.004010522738099098, -0.011970669962465763, -0.011210903525352478, -0.0449364110827446, -0.007296076975762844, -0.014302167110145092, -0.001815319643355906, 0.0047238911502063274, -0.022584199905395508, -0.005530055146664381, 0.039786238223314285, -0.02663242071866989, -0.010601931251585484, -0.013061022385954857, -0.006281122099608183, -0.01931314542889595, -0.0018834666116163135, -0.06620986759662628, -0.010909317061305046, 0.029601890593767166, 0.01132109947502613, -0.047650691121816635, -0.0024416919331997633, 0.02716599777340889, -0.002190853003412485, 0.006350718904286623, 0.005031277425587177, -0.015148929320275784, -0.006553709972649813, 0.01970752887427807, 0.022375410422682762, -0.027629977092146873, 0.022097023203969002, -0.0171208418905735, -0.011350098066031933, 0.011947471648454666, 0.01179667841643095, 0.014800945296883583, 0.003511744551360607, 0.009007001295685768, 0.043915655463933945, 0.018303990364074707, 0.007829653099179268, 0.0025170885492116213, -0.01558971032500267, -0.05066655948758125, 0.018999958410859108, 0.005147272255271673, 0.04384605959057808, 0.02290898561477661, 0.004326608497649431, 0.018303990364074707, 0.014151373878121376, -0.0233265683054924, -0.0005361138028092682, 0.034148890525102615, 0.006066531408578157, -0.004352707415819168, 0.008931605145335197, -0.024358922615647316, -0.0009294088813476264, 0.03171299770474434, 0.011019512079656124, -0.011118108406662941, 0.03890467807650566, 0.021830234676599503, 0.010665727779269218, -0.05433199554681778, 0.018570778891444206, -0.005512656178325415, 0.0028520238120108843, 0.02802436053752899, 0.027653176337480545, -0.001739923027344048, -0.03639918938279152, 0.003604540601372719, -0.0010533783352002501, -0.03874228522181511, 0.021609844639897346, 0.08166038990020752, 0.0002557324478402734, -0.029068313539028168, -0.016575666144490242, -0.029625089839100838, 0.00180951994843781, 0.02164464257657528, -0.04417084529995918, 0.01901155896484852, 0.002911471063271165, 0.006611707620322704, 0.011599486693739891, 0.0059911347925662994, 0.006878495682030916, -0.0044803018681705, 0.03489125519990921, -0.018095199018716812, 0.02191143110394478, 0.009262190200388432, 0.009969758801162243, -0.0030303660314530134, -0.004544098861515522, 0.02028750255703926, 0.019556734710931778, -0.006315920501947403, -0.0333833247423172, 0.0242893248796463, -0.030251462012529373, -0.01779361255466938, -0.014858942478895187, 0.014673350378870964, -0.022549401968717575, 0.02563486620783806, 0.016366876661777496, -0.02027590200304985, 0.005361862946301699, 0.009047599509358406, -0.026377232745289803, -0.045423589646816254, -0.022155020385980606, -0.011587887071073055, 0.0014267368242144585, -0.010427938774228096, -0.04168855398893356, -0.0030187664087861776, 0.015125731006264687, 0.022943785414099693, -0.010120552033185959, 0.029694685712456703, 0.0023271469399333, -0.02496209554374218, 0.03846389800310135, 0.01903475821018219, 0.010862919501960278, -0.03561042249202728, 0.05280086398124695, -0.0014847343554720283, 0.008502423763275146, -0.002124156104400754, -0.00368863670155406, 0.003726335009559989, 0.007765856571495533, -0.05985335260629654, -0.002202452626079321, -0.005092174746096134, 0.008003645576536655, -0.024451717734336853, -0.029973072931170464, 0.07001449912786484, 0.04208293929696083, 0.034543272107839584, 0.0023271469399333, 0.010132151655852795, 0.01942913979291916, -0.05057376250624657, -0.013339409604668617, 0.016355276107788086, 0.0024039936251938343, -0.05447119101881981, -0.002446041675284505, -0.015148929320275784, -0.022363809868693352, -0.01027714554220438, 0.01804880052804947, -0.03876548632979393, -0.016726460307836533, 0.04486681520938873, -0.04071419686079025, -0.026098845526576042, -0.026145244017243385, 0.011193504557013512, 0.06973611563444138, -0.02370935119688511, -0.010978913865983486, -0.004578897263854742, 0.012678238563239574, 0.025866854935884476, 0.029717884957790375, -0.01960313320159912, 0.02028750255703926, -0.016448073089122772, -0.00517337117344141, 0.009273789823055267, -0.011060110293328762, 0.022688595578074455, 0.03927586227655411, 0.004564397968351841, 0.01159368734806776, -0.00923899095505476, -0.01584489829838276, -0.0009468080825172365, -0.005643150303512812, -0.005695348139852285, -0.007284477818757296, -0.046676333993673325, -0.02825634926557541, -0.018385186791419983, 0.014487759210169315, 0.014104976318776608, 0.045446790754795074, -0.0015543312765657902, -0.02772277407348156, 0.015682505443692207, -0.039809439331293106, -0.023233771324157715, -0.055399149656295776, 0.033035337924957275, -0.012202659621834755, -0.013397406786680222, -0.0018327189609408379, -0.0006510211969725788, 0.0066001079976558685, 0.023964539170265198, 0.004358507227152586, -0.03173619508743286, 0.04263971373438835, -0.016065288335084915, -0.011761879548430443, -0.005747545510530472, -0.0003744459245353937, 0.01793280616402626, 0.007968847639858723, 0.013351009227335453, 0.024080535396933556, 0.031666599214076996, 0.015786901116371155, 0.019661130383610725, 0.008160239085555077, 0.025843655690550804, 0.001690625213086605, -0.004390405956655741, -0.011013712733983994, -0.017979204654693604, -0.02911471202969551, -0.040621403604745865, 0.003387050237506628, 0.0031318613328039646, 0.00861841905862093, 0.01386138703674078, 0.0006198475603014231, -0.0013013174757361412, -0.010224947705864906, 0.007429471239447594, -0.0143369659781456, -0.019823523238301277, 0.040899790823459625, -0.005912838503718376, 0.004370106849819422, 0.01600729115307331, 0.007731057703495026, 0.027792369946837425, -0.039090272039175034, 0.004622395616024733, 0.00018441371503286064, 0.04908902943134308, 0.011924272403120995, -0.019904719665646553, -0.05145532265305519, 0.004918182268738747, -0.031365010887384415, -0.015543311834335327, -0.015612909570336342, -0.014499358832836151, 0.027073202654719353, 0.009389784187078476, 0.0022995981853455305, -0.01611168682575226, 0.006350718904286623, 0.008728614076972008, -0.009407184086740017, -0.03753593936562538, 0.0010512034641578794, -0.010271345265209675, 0.02925390563905239, 0.04328928515315056, 0.004796387627720833, -0.00842122733592987, -0.012863830663263798, 0.02607564628124237, -0.009349185973405838, 0.02318737469613552, -0.007864451967179775, -0.01956833340227604, -0.006646506022661924, -0.03653838485479355, 0.017155641689896584, 0.013246613554656506, 0.0077774557285010815, -0.04602676257491112, -0.02330336906015873, 0.018570778891444206, -0.012330254539847374, 0.019742326810956, 0.011448693461716175, 0.04584117233753204, 0.017132442444562912, -0.013443805277347565, 0.00245039165019989, -0.037721529603004456, 0.005031277425587177, -0.0022213016636669636, 0.00036502134753391147, 0.03581921383738518, 0.03765193372964859, 0.016656862571835518, 0.03377770632505417, -0.030993828549981117, -0.01960313320159912, 0.011582087725400925, -0.0018515681149438024, -0.02442851848900318, 0.02387174405157566, -0.021064667031168938, 0.01629727892577648, -0.014870542101562023, 0.04660673812031746, 0.03760553523898125, -0.02493889629840851, 0.02401093766093254, -0.006298521533608437, -0.030993828549981117, -0.02591325342655182, 0.029485896229743958, -0.004230912774801254, -0.02702680416405201, -0.034960854798555374, 0.009853764437139034, 0.013061022385954857, 0.021053068339824677, -0.0038684287574142218, 0.03020506352186203, 0.025565268471837044, -0.025982851162552834, -0.016714859753847122, 0.013049422763288021, -0.03282654657959938, -0.007446870673447847, -0.011483492329716682, -0.05113053694367409, -0.02800116129219532, 0.0166916623711586, -0.008253035135567188, 0.008456026203930378, -0.03435767814517021, 0.05140892416238785, -0.04816107079386711, -0.027954762801527977, -0.005425659939646721, 0.02591325342655182, -0.017689216881990433, -0.022595800459384918, -0.0037582337390631437, -0.0040337215177714825, -0.01585649885237217, -0.017619621008634567, 0.006559509783983231, 0.04797547683119774, 0.0014992336509749293, 0.0032507560681551695, -0.0361672006547451, -0.03182899206876755, 0.06027093157172203, -0.017480427399277687, 0.034543272107839584, -0.007789055351167917, -0.031133022159337997, -0.002408343367278576, -0.023338166996836662, 0.023488961160182953, 0.024173330515623093, 0.0059099383652210236, -0.007412072271108627, -0.003442147746682167, 0.010016156360507011, 0.04702432081103325, -0.011118108406662941, -0.004436803516000509, -0.018791168928146362, 0.023372964933514595, 0.04700111970305443, -0.030645843595266342, 0.02082107961177826, -0.009366585873067379, -0.02152864821255207, -0.0056547499261796474, 0.013443805277347565, -0.0242893248796463, -0.0007300426950678229, -0.009465181268751621, 0.00424251239746809, -0.01585649885237217, -0.005240068305283785, 0.033568914979696274, -0.054424792528152466, 0.05298645421862602, -0.00148400932084769, 0.012585443444550037, 0.014093376696109772, 0.0030738639179617167, 0.0012650690041482449, 0.01777041330933571, -0.020739883184432983, 0.0033957497216761112, -0.00910559669137001, 0.01928994618356228, 0.03516964241862297, 0.003326152916997671, -0.03899747505784035, 0.008392228744924068, 0.034241683781147, 0.037048760801553726, 0.03157380223274231, 0.002237251028418541, 0.02247980609536171, 0.006878495682030916, -0.017271636053919792, 0.01808360032737255, 0.009436182677745819, 0.022584199905395508, 0.014882141724228859, -0.027351589873433113, -0.02565806545317173, 0.015137330628931522, -0.019545136019587517, 0.024312524124979973, 0.009221591986715794, -0.026980405673384666, -0.017596421763300896, 0.01601889170706272, 0.03394009917974472, -0.009969758801162243, -0.00013402845070231706, 0.005428559612482786, -0.00696549192070961, -0.02619164064526558, -0.023245371878147125, -0.007046688348054886, 0.0004135941853746772, -0.010770123451948166, 0.011425494216382504, 0.0075512658804655075, 0.018814368173480034, -0.013293012045323849, 0.034821659326553345, -0.004230912774801254, 0.002115456387400627, 0.011761879548430443, 0.02484610117971897, -0.02346576191484928, -0.0014600853901356459, -0.00793984904885292, 0.03514644503593445, 0.028789926320314407, 0.025286881253123283, -0.013072622008621693, 0.013153818435966969, 0.020043913275003433, 0.017341231927275658, -0.02194622904062271, -0.006147727835923433, 0.015926094725728035, 0.013687394559383392, -0.009946559555828571, 0.01804880052804947, 0.02456771209836006, -0.005057376343756914, 0.03349931910634041, 0.001402087975293398, -0.0010280045680701733, 0.0200091153383255, 0.002167653990909457, 0.04507560655474663, 0.022862588986754417, 0.03681677207350731, 0.0255188699811697, -0.015902895480394363, -0.019904719665646553, 0.03595840930938721, 0.010799122042953968, 0.007980447262525558, 0.03519284352660179, 0.04154936224222183, 0.021575044840574265, -0.01572890393435955, 0.0033087534829974174, 0.019498737528920174, -0.004706491716206074, 0.01806040108203888, 0.011454492807388306, -0.002469240687787533, 0.0014992336509749293, 0.013327809982001781, 0.022688595578074455, 0.03131861239671707, 0.024358922615647316, 0.008647417649626732, 0.02563486620783806, -0.008438626304268837, 0.026423631235957146, -0.007336675189435482, -0.03421848639845848, 0.029068313539028168, -0.04373006522655487, 0.020635487511754036, -0.020937073975801468, 0.0024358921218663454, -0.037164755165576935, 0.015763701871037483, -0.014998136088252068, -0.021888231858611107, 0.01960313320159912, -0.002656282391399145, 0.02217821776866913, 0.009453581646084785, 0.006634906399995089, 0.009766767732799053, -0.037860725075006485, 0.007383073214441538, 0.002778077032417059, -0.01639007404446602, -0.012863830663263798, 0.011761879548430443, -0.02178383618593216, 0.005646049976348877, 0.02718919701874256, 0.0028882722835987806, 0.04593396931886673, -0.022827789187431335, -0.018106799572706223, -0.02732839062809944, -0.004367206711322069, 0.032339368015527725, -0.025866854935884476, -0.043637268245220184, 0.004541199188679457, -0.007284477818757296, -0.01400058064609766, 0.020322300493717194, 0.024753304198384285, 0.0067509012296795845, 0.022549401968717575, -0.013954182155430317, 0.016239281743764877, -0.016865653917193413, 0.0020487592555582523, 0.015601309947669506, -0.02493889629840851, 0.015914496034383774, -0.029161110520362854, 0.006199925672262907, 0.0030738639179617167, 0.02730519138276577, -0.047789886593818665, -0.029555492103099823, 0.009279589168727398, 0.014023779891431332, -0.03131861239671707, -0.017921207472682, -0.019278347492218018, -0.0027360289823263884, -0.0146849500015378, -0.022456606850028038, 0.006408716551959515, -0.02939309924840927, 0.031109822914004326, 0.020913874730467796, 0.025982851162552834, 0.0113674970343709, -0.033731307834386826, 0.013919384218752384, -0.027676375582814217, -0.046119559556245804, -0.007058287505060434, 0.018733171746134758, -0.00916939415037632, -0.011089108884334564, 0.019916318356990814, -4.762133175972849e-05, -0.005350263323634863, 0.006501512136310339, 0.01005675457417965, -0.0005089275073260069, 0.021285058930516243, -0.002609884599223733, 0.02221301756799221, 0.009436182677745819, 0.015334521420300007, 0.026702018454670906, 0.02194622904062271, 0.01373379211872816, -0.0016920751659199595, -0.009737769141793251, -0.009314388036727905, 0.00964497309178114, -0.029810680076479912, 0.029857078567147255, -0.037025563418865204, -0.025866854935884476, 0.014360164292156696, 0.020055511966347694, -0.02191143110394478, 0.028627533465623856, 0.0014455860946327448, 0.0031521604396402836, 0.012121464125812054, -0.0050950744189321995, -0.023106178268790245, -0.004839885979890823, -0.010161150246858597, -0.028882721439003944, 0.002138655399903655, -0.03148100525140762, 0.01571730524301529, -0.01427896786481142, 0.009012801572680473, -0.0008460375829599798, 0.0027708273846656084, 0.017561623826622963, 0.008496624417603016, 0.0032826547976583242, -0.011338498443365097, 0.0008416877826675773, -0.025982851162552834, 0.014800945296883583, 0.010659928433597088, 0.03535523638129234, 0.008879407308995724, -0.015902895480394363, 0.0024590911343693733, -0.004155516158789396, 0.03697916492819786, 0.036352790892124176, 0.012573843821883202, -0.022572601214051247, -0.001465885085053742, -0.049181822687387466, 0.03131861239671707, -0.02841874212026596, 0.06296201050281525, 0.004915282595902681, -0.004915282595902681, 0.011611086316406727, 0.007504867855459452, -0.03034425713121891, 0.032362569123506546, -0.0015006836038082838, -0.03456646949052811, 0.020067112520337105, 0.029764283448457718, 0.04642114415764809, 0.04431004077196121, 0.01574050262570381, 0.020600687712430954, 0.022688595578074455, 0.01655246689915657, -0.0023169973865151405, 0.01041633915156126, -0.0014528357423841953, 0.040087826550006866, -0.006240523885935545, 0.04122457653284073, -0.03851029649376869, -0.02786196768283844, -0.030390655621886253, -0.0024996893480420113, 0.019336344674229622, -0.035796016454696655, 0.030993828549981117, 0.006652305833995342, -0.003476946149021387, 0.007504867855459452, -0.012968226335942745, -0.010021956637501717, -0.015473715029656887, 0.0004027196846436709, -0.00338125042617321, 0.017689216881990433, -0.00021277808991726488, 0.028325947001576424, -0.015380918979644775, 0.01862877607345581, 0.01262024138122797, 0.024451717734336853, 0.04175815358757973, -0.03500724956393242, -0.04127097502350807, 0.02346576191484928, -0.040621403604745865, 0.010729525238275528, -0.017758814617991447, -0.03240896761417389, -0.02827954851090908, 0.022433407604694366, -0.00524296797811985, -0.003998923115432262, -0.021760636940598488, -0.024637309834361076, -0.024173330515623093, 8.024488488445058e-05, -0.016436472535133362, -0.04676913097500801, -0.0010178550146520138, 0.04642114415764809, -0.01684245467185974, -0.018176395446062088, -0.012840631417930126, -0.015914496034383774, -0.011837276630103588, 0.008572020567953587, -0.03519284352660179, 0.025333279743790627, -0.005028377287089825, 0.013304611667990685, -0.004500600975006819, -0.008775011636316776, 0.02593645267188549, -0.048346661031246185, 0.02082107961177826, -0.01846638321876526, 0.01739923097193241, 0.012701437808573246, 0.03848709538578987, -0.014116575010120869, -0.04621235653758049, -0.011181904934346676, 0.026029247790575027, -0.0029288704972714186, -0.023825345560908318, 0.01850118115544319, 0.015125731006264687, -0.016888853162527084, 0.014394963160157204, 0.013617797754704952, 0.017851609736680984, -0.010132151655852795, -0.04451882839202881, 0.015798501670360565, -0.036352790892124176, -0.008369029499590397, -0.02178383618593216, -0.039623845368623734, 0.025031693279743195, 0.006803099066019058, 0.013142218813300133, -0.018686773255467415, -0.011251501739025116, -0.018721571192145348, 0.0016079788329079747, -0.013849787414073944, -0.02493889629840851, 0.011767678894102573, -0.027629977092146873, 0.015172128565609455, -0.0414101667702198, 0.02649322710931301, -0.019255148246884346, 0.012202659621834755, -0.015172128565609455, 0.010990513488650322, 0.0010787522187456489, 0.02028750255703926, -0.011889473535120487, -0.0014731348492205143, 0.0026751316618174314, -0.01420937106013298, 0.01695844903588295, 0.030669042840600014, 0.004651394207030535, -0.007748457137495279, 0.0032072581816464663, 0.025263682007789612, 0.025866854935884476, 0.0080790426582098, 0.0017065744614228606, -0.05140892416238785, -0.05999254435300827, 0.016436472535133362, 0.022503003478050232, 0.014777746051549911, 0.01639007404446602, -0.0055590542033314705, -0.02800116129219532, -0.038139112293720245, 0.035123247653245926, 0.0029259705916047096, -0.029625089839100838, 0.014882141724228859, -0.015183728188276291, 0.01613488607108593, 0.0026316335424780846, -0.022850988432765007, -0.0001598554226802662, 0.016656862571835518, 0.03333692625164986, 0.00916939415037632, 0.01570570468902588, 0.00248519005253911, 0.037303950637578964, -0.030437054112553596, -0.01570570468902588, -0.018373586237430573, -0.0047238911502063274, 0.008838809095323086, -0.0025939352344721556, -0.008983802050352097, -0.017979204654693604, -0.031249016523361206, -0.01874477043747902, -0.02208542264997959, -0.03625999391078949, -0.02827954851090908, 0.0067914994433522224, -0.0344504751265049, -0.0029303203336894512, -0.015311322174966335, 0.006779899820685387, -0.02895231917500496, -0.000500227848533541, -0.012666639871895313, -0.003387050237506628, -0.0005517005920410156, -0.04259331524372101, 0.006507311947643757, -0.022259414196014404, -0.046560339629650116, -0.03182899206876755, 0.02264219895005226, -0.011982269585132599, 0.04853225126862526, -0.018095199018716812, 0.04356767237186432, 0.021760636940598488, -0.024590911343693733, 0.013919384218752384, 0.009227391332387924, 0.00018078887660522014, -0.026377232745289803, 0.007359874434769154, 0.010706325992941856, 0.03878868371248245, -0.021830234676599503, 0.0013049422996118665, 0.03581921383738518, -0.04208293929696083, 0.012794233858585358, -0.015380918979644775, 0.045701976865530014, -0.022816190496087074, 0.007713658735156059, -0.01889556460082531, -0.009813166223466396, 0.002972368383780122, -0.004384606145322323, -2.9882272428949364e-05, 0.02537967637181282, -0.001742822933010757, 0.0002107844193233177, -0.0018225694075226784, 0.0032507560681551695, -0.031921789050102234, 0.01574050262570381, -0.018965160474181175, -0.007093086373060942, -0.021830234676599503, 0.014638552442193031, 0.006356518715620041, -0.02249140478670597, -0.0031115622259676456, 0.013130619190633297, -0.0007597663789056242, -0.006617506965994835, 0.018582377582788467, -0.02126185968518257, -0.003613240085542202, -0.04018062353134155, -0.011477692052721977, 0.01639007404446602, 0.0013303161831572652, 0.016088487580418587, -0.009615974500775337, -0.01295662671327591, -0.011483492329716682, 0.0024677908513695, -0.021551845595240593, -0.014998136088252068, 0.0032101578544825315, -0.037860725075006485, -0.06166287139058113, 0.005878040101379156, -0.020519491285085678, 0.01845478266477585, -4.0462273318553343e-05, 0.01323501393198967, 0.015949293971061707, 0.03229296952486038, -0.010387340560555458, -0.040482208132743835, -0.021760636940598488, -0.01373379211872816, -0.03751274198293686, 0.0019907618407160044, 0.021888231858611107, 0.04321968927979469, 0.0260524470359087, -0.010259745642542839, 0.010178549215197563, -0.027815569192171097, -0.007673060521483421, 0.010613529942929745, -0.010085754096508026, -0.019742326810956, -0.021145863458514214, -0.019777124747633934, 0.01545051671564579, -0.009778367355465889, -0.028465140610933304, -0.013965781778097153, 0.026864411309361458, -0.03779112920165062, 0.015357720665633678, -0.0015050334623083472, -0.007180082146078348, -0.044634826481342316, 0.03352251648902893, -0.004181615076959133, -0.0016949749551713467, -0.010265545919537544, 0.01359459850937128, 0.030970629304647446, -0.0008735863375477493, 0.007574464660137892, -0.019927918910980225, 0.027003604918718338, 0.0008692365372553468, -0.008659017272293568, 0.02802436053752899, 0.002364845247939229, 0.009076598100364208, -0.011205104179680347, -0.015125731006264687, 0.038951076567173004, -0.0031666599679738283, -0.0002098782133543864, 0.015357720665633678, 0.022688595578074455, 0.008838809095323086, -0.00785285234451294, 0.004268611315637827, 0.0021546047646552324, -0.007928249426186085, -0.02318737469613552, -0.032872945070266724, 0.03997183218598366, -0.004375906195491552, -0.015624508261680603, 0.001745722722262144, -0.008032644167542458, -0.0027853266801685095, -0.007620862685143948, -0.01708604395389557, -0.019127553328871727, -0.018930362537503242, 0.005068975500762463, 0.0010040805209428072, 0.016587266698479652, 0.005849041044712067, -0.05034177377820015, -0.02140105329453945, -0.003572641871869564, -0.00713368458673358, 0.0019530635327100754, -0.06917934119701385, -0.0007300426950678229, 0.018269192427396774, -0.038278307765722275, -0.022305812686681747, 0.026377232745289803, -0.03839430212974548, -0.01587969809770584, -0.03157380223274231, -0.017213638871908188, -0.010538133792579174, -0.02080947905778885, 0.026307636871933937, 0.017260035499930382, 0.018315589055418968, -0.004955880809575319, -0.015485314652323723, 0.04498280957341194, 0.005851941183209419, -0.029625089839100838, 0.04649074375629425, 0.040018230676651, 0.02287418767809868, -0.00367123750038445, 0.026841212064027786, 0.005834541749209166, -0.04127097502350807, -0.030715441331267357, 0.018941961228847504, -0.010642529465258121, 0.031249016523361206, 0.04553958401083946, 0.01366419531404972, -0.02067028544843197, -0.032200176268815994, -0.005738846026360989, 0.03614399954676628, -0.027119599282741547, 0.003418948734179139, 0.0031318613328039646, 0.014708149246871471, 0.026864411309361458, -0.008647417649626732, -0.02577405981719494, -0.029996272176504135, 0.015508513897657394, -0.031365010887384415, 0.031388211995363235, -0.017155641689896584, -0.005962136201560497, -0.005182070657610893, 0.023372964933514595, -0.014650152064859867, 0.010456937365233898, 0.03844070062041283, 0.006733502261340618], [0.01186051033437252, 0.01633845828473568, 0.018625842407345772, -0.009325023740530014, -0.07038850337266922, 0.027254968881607056, -0.007800101302564144, -0.00038841660716570914, 0.003782050684094429, 0.0096578449010849, -0.060319170355796814, -0.012308305129408836, -0.010553434491157532, -0.02923979051411152, -0.0343712754547596, 0.04076142981648445, 0.010734972544014454, 0.0436418391764164, -0.046885326504707336, -0.008526255376636982, 0.02063486911356449, 0.015055587515234947, -0.03449230268597603, 0.016253741458058357, 0.005500614643096924, -0.010559485293924809, 0.012060202658176422, -0.01342174131423235, 0.023624200373888016, -0.011751587502658367, 0.04071301966905594, -0.0351458415389061, 0.0868963971734047, -0.010656305588781834, 0.04582029953598976, 0.04681270942091942, -0.010650254786014557, -0.008744101040065289, 0.03521845489740372, -0.008677536621689796, -0.01958194561302662, 0.06085168197751045, -0.003204153385013342, 0.026795072481036186, -0.0013017818564549088, 0.042044300585985184, 0.028271585702896118, -0.00944605004042387, 0.05567178502678871, 0.055913835763931274, -0.015636509284377098, 0.028416816145181656, -0.010438459925353527, 0.03052266128361225, 0.03732430189847946, -0.02534276433289051, 0.00795743428170681, 0.011660818941891193, 0.04117291420698166, -0.001585435587912798, -0.01792389526963234, 0.030159585177898407, -0.04264942929148674, 0.027375996112823486, -0.0022359483409672976, -0.050395067781209946, -0.0036065634340047836, 0.03441968560218811, 0.012035997584462166, -0.025052303448319435, 0.005464306566864252, 0.03851035237312317, 0.025826867669820786, -0.0753263458609581, -0.04206850379705429, 0.008980100974440575, 0.011497434228658676, -0.03325784206390381, 0.009972510859370232, 0.03395978733897209, -0.021155279129743576, 0.04228635132312775, -0.03487958386540413, -0.005391691345721483, 0.026553021743893623, -0.03195076435804367, -0.05828594043850899, -0.0118786646053195, 0.0012216023169457912, -0.004350870847702026, -0.051702145487070084, -0.011594254523515701, -0.004024101886898279, 0.07082419097423553, 0.027012918144464493, -0.006632204167544842, 0.015745433047413826, 0.009210050106048584, -0.01210861373692751, 0.052863992750644684, -0.0007212370401248336, 0.008647280745208263, 0.04010789096355438, 0.022413944825530052, 0.005945383571088314, -0.04649804159998894, -0.04768409579992294, 0.041318148374557495, -4.3233565520495176e-05, -0.013155484572052956, 0.02055015042424202, 0.012344613671302795, -0.020792201161384583, 0.013397536240518093, -0.030062764883041382, 0.006480921991169453, -0.02807794325053692, -0.034129224717617035, 0.054364707320928574, 0.012683484703302383, -0.02268020063638687, 0.05233147740364075, 0.02483445778489113, -0.09057557582855225, 0.00552481971681118, 0.03260430321097374, -0.015866458415985107, 0.004883383866399527, -0.044634249061346054, -0.011424819007515907, -0.014668305404484272, -0.032192815095186234, 0.029772302135825157, 0.0021103841718286276, -0.010753126814961433, -0.014716715551912785, 0.04032573848962784, -0.041584402322769165, 0.0011308331741020083, -0.046062350273132324, -0.0071465629152953625, 0.024096200242638588, -0.010498972609639168, 0.011539792641997337, -0.037179071456193924, 0.01083784457296133, 0.036719173192977905, 0.03909127414226532, 0.06946870684623718, -0.02070748433470726, -0.038340914994478226, 0.047998759895563126, -0.03635609522461891, 0.009742562659084797, 0.04746624827384949, 0.02252286858856678, 0.0027926662005484104, 0.036912813782691956, -0.01746399700641632, -0.00867148581892252, -0.050782348960638046, -0.032701123505830765, -0.011793946847319603, -0.03388717398047447, 0.027690662071108818, -0.010093537159264088, -0.015479177236557007, 0.017681842669844627, -0.07324470579624176, -0.015128202736377716, -0.04736942797899246, -0.023454764857888222, -0.04296409338712692, -0.03105517476797104, -0.025826867669820786, -0.032434865832328796, 0.027327585965394974, 0.013082869350910187, 0.005400768481194973, 0.00979097280651331, -0.008871178142726421, 0.027206558734178543, -0.037687379866838455, -0.017633432522416115, -0.03962378948926926, 0.01257456187158823, 0.027908507734537125, 0.017052510753273964, 0.001818409888073802, 0.020574355497956276, -0.007679075468331575, 0.04565086215734482, -0.01846851035952568, 0.032313842326402664, -0.03650132566690445, -0.002385717583820224, -0.024677123874425888, -0.012961843982338905, -0.0071526141837239265, 0.04516676068305969, 0.027061328291893005, -0.020417021587491035, 0.008707793429493904, 0.023394253104925156, -0.0625944510102272, -0.007527793757617474, 0.056494761258363724, -0.017439791932702065, 0.032507482916116714, -0.003198102116584778, 0.038074661046266556, -0.04543301835656166, -0.0370822511613369, -0.01637476682662964, -0.047998759895563126, 0.014014766551554203, -0.0003630768624134362, 0.03233804553747177, -0.015600202605128288, -0.0029000763315707445, 0.0027866149321198463, 0.017512407153844833, -0.009682049974799156, 0.014728818088769913, -0.04395650699734688, 0.0440291203558445, 0.039890043437480927, -0.01438994612544775, -0.02928820066154003, -0.0899946540594101, -0.00037309929030016065, 0.031273018568754196, -0.0028108200058341026, -0.039962660521268845, 0.0363076850771904, 0.05281557887792587, 0.003561178920790553, -0.01041425485163927, 0.023587893694639206, 0.016979893669486046, 0.0409550704061985, 0.017948100343346596, 0.012217536568641663, -0.010928613133728504, 0.006958973128348589, -0.01854112558066845, -0.01780286803841591, -0.0014515509828925133, 0.04412594065070152, 0.03819568455219269, -0.011806049384176731, -0.015212920494377613, 0.058431170880794525, -0.06162624433636665, -0.002317640697583556, 0.017028305679559708, -0.002744256053119898, -0.03236225247383118, 0.01342174131423235, -0.06269127130508423, 0.011430869810283184, -0.01069866493344307, -0.001927332952618599, 0.062061939388513565, -0.06007711961865425, 0.0025627175346016884, 0.07111465185880661, -0.04044676199555397, -0.028053738176822662, 0.05867322161793709, -0.07174398750066757, -0.01280451100319624, 0.01328861340880394, 0.02081640623509884, 0.011025434359908104, 0.03352409601211548, -0.011073844507336617, -0.0467400960624218, 0.018553227186203003, 0.03357250615954399, -0.036210864782333374, 0.0011678972514346242, -0.003987794276326895, -0.0287798922508955, 0.006305434741079807, -0.001960615161806345, -0.018214356154203415, -0.007721434347331524, -0.0066079990938305855, 0.04577188938856125, 0.017294561490416527, -0.06269127130508423, -0.020646970719099045, -0.011963382363319397, 0.014547279104590416, 0.002954537980258465, 0.004129999317228794, -0.0347585566341877, -0.02263179048895836, -0.00531302485615015, 0.004822871182113886, 0.023503175005316734, 0.003066486679017544, -0.006977126933634281, -0.018589535728096962, 0.015140305273234844, -0.0019197688670828938, 0.004644358064979315, -0.006275178398936987, -0.003915178589522839, -0.06724183261394501, 0.033741943538188934, -0.03771158307790756, -0.005309998989105225, -0.003785076318308711, -0.034129224717617035, -0.004441640339791775, 0.004632255528122187, 0.011231177486479282, 0.004774460569024086, 0.024435073137283325, 0.013264408335089684, 0.028925122693181038, -0.024386662989854813, -0.025197533890604973, -0.010916510596871376, 0.0637562945485115, 0.0382440946996212, -0.04013209417462349, 0.012489844113588333, -0.015128202736377716, 0.03851035237312317, 0.020465431734919548, -0.008272101171314716, 0.016398971900343895, -0.023236919194459915, -0.007328101433813572, 0.033403072506189346, 0.0020196151454001665, 0.01823856122791767, 0.007328101433813572, -0.011884716339409351, 0.017028305679559708, -0.02144574001431465, -0.012986049056053162, 0.03732430189847946, 0.032434865832328796, 0.06942029297351837, 0.002940922509878874, 0.010535280220210552, 0.017125125974416733, 0.005479434970766306, -0.006414358038455248, -0.003225332824513316, -0.06428880989551544, -0.024858662858605385, -0.012852921150624752, 0.020114457234740257, -0.001704948372207582, 0.02093743160367012, 0.008175280876457691, -0.026746662333607674, 0.0421169176697731, 0.050927579402923584, -0.0025869226083159447, 0.020078150555491447, -0.0023630252107977867, 0.010396100580692291, 0.06085168197751045, -0.02553640678524971, -0.0009515639394521713, 0.003679178887978196, -0.021143175661563873, -0.005228306632488966, -0.013300715945661068, -0.029215585440397263, 0.0151645103469491, 0.001428858726285398, -0.01827486790716648, 0.02669825218617916, -0.019715074449777603, 0.002757871290668845, 0.008768306113779545, -0.00547640910372138, 0.05504245311021805, 0.032773736864328384, -0.0660799890756607, -0.015697022899985313, 0.009246357716619968, 0.015939073637127876, -0.02527014911174774, 0.014607792720198631, -0.04461004212498665, 0.0022162816021591425, -0.057656604796648026, -0.01069866493344307, 0.011576100252568722, 0.01618112623691559, 0.003313076449558139, 0.0007851537084206939, -0.006172306835651398, -0.032701123505830765, 0.0113945621997118, -0.03461332619190216, -0.008429434150457382, 0.03216860815882683, -0.010928613133728504, -0.00622071698307991, 0.039381735026836395, -0.011890767142176628, 0.027569636702537537, -0.04649804159998894, 0.036404505372047424, -0.02186932973563671, 0.00977281853556633, -0.014317330904304981, -0.01900102198123932, 0.07353516668081284, -0.031853944063186646, -0.004184460733085871, 0.04451322183012962, 0.019751381129026413, -0.0046141017228364944, 0.04143917188048363, -0.020985841751098633, -0.02611732855439186, 0.002049871487542987, 0.0063841016963124275, 0.02294645830988884, -0.07048532366752625, 0.022268714383244514, -0.02631096914410591, 0.017476100474596024, 0.01799651049077511, -0.010045126080513, -0.0339839942753315, 0.026916097849607468, 0.02116738073527813, 0.017125125974416733, -0.02206297032535076, -0.01737927831709385, 0.026625636965036392, 0.0055611273273825645, 0.0160358939319849, -0.052089426666498184, 0.022413944825530052, -0.028441021218895912, -0.041197121143341064, -0.007872716523706913, -0.006650357972830534, -0.020913226529955864, -0.012405126355588436, -0.0540742464363575, -0.006638255435973406, -0.043399788439273834, 0.03855876252055168, 0.00240992265753448, -0.0343712754547596, 0.022861739620566368, -0.04611076042056084, 0.04335137829184532, 0.08099034428596497, 0.033475685864686966, 0.073389932513237, 0.037566352635622025, 0.025851072743535042, -0.046957939863204956, 0.012598766945302486, -0.03836512193083763, -0.025439584627747536, -0.028174763545393944, -0.0035974865313619375, 0.0162295363843441, 0.0009455126710236073, 0.0076004089787602425, -0.0015642561484128237, 0.018202252686023712, -0.08123239874839783, -0.026359379291534424, -0.035363685339689255, 0.014753023162484169, 0.016011688858270645, -0.012029946781694889, -0.05615588650107384, 0.05567178502678871, 0.03650132566690445, 0.004429537802934647, -0.010668408125638962, -0.03301578760147095, -0.016447382047772408, 0.02255917526781559, -0.008483896031975746, 0.03495220094919205, -0.01118276733905077, -0.02185722626745701, 0.01684676669538021, -0.02514912374317646, 0.0191220473498106, 0.08466952294111252, -0.01963035576045513, -0.0012563972268253565, -0.014607792720198631, 0.007800101302564144, -0.0055550760589540005, 0.061287373304367065, -0.008477844297885895, -0.019569842144846916, 0.01523712556809187, 0.017706047743558884, -0.021687790751457214, -0.03149086609482765, 0.0007511152653023601, 0.013942151330411434, -0.03657394275069237, -0.01961825229227543, -0.022861739620566368, -0.0162295363843441, -0.015406561084091663, -0.006529332138597965, 0.02812635339796543, 0.04925742745399475, -0.0417296327650547, -0.050588708370923996, -0.024592405185103416, 0.005080050323158503, 0.018069125711917877, 0.017790766432881355, -0.054848812520504, 0.0012178203323855996, 0.010184305720031261, 0.03449230268597603, -0.05513927340507507, -0.040809839963912964, 0.03175712376832962, 0.015225023031234741, 0.006856101565063, -0.010293228551745415, -0.002937896875664592, -0.004841024987399578, -0.01765763759613037, 0.01924307271838188, -0.016507893800735474, 0.0029424354434013367, 0.0005858396179974079, 0.01799651049077511, 0.014063176698982716, 0.0025672558695077896, 0.016132716089487076, 0.013784818351268768, 0.04269783943891525, 0.01943671517074108, 0.02865886688232422, 0.014716715551912785, -0.015866458415985107, 0.0028032560367137194, -0.03429866209626198, 0.028804097324609756, -0.00971835758537054, 0.03446809574961662, 0.0021814866922795773, 0.017137227579951286, 0.050007786601781845, -0.001490127993747592, -0.015733331441879272, 0.004592922516167164, 0.03233804553747177, 0.01152769010514021, -0.0036186659708619118, 0.0008781921351328492, -0.001609640778042376, 0.005491537507623434, 0.02735179103910923, -0.006060358136892319, -0.0033584609627723694, 0.042237941175699234, 0.022498663514852524, 0.03897025063633919, -0.03466173633933067, 0.0262625589966774, -0.008937741629779339, 0.02039281651377678, 0.03255589306354523, -0.009936203248798847, -0.021336816251277924, 0.017088817432522774, 0.019218867644667625, 0.0004939358332194388, -0.03565414622426033, 0.014147895388305187, 0.054606758058071136, 0.012259894981980324, 0.005077024921774864, -0.014317330904304981, 0.005473383702337742, 0.013796920888125896, 0.019134150817990303, -0.024786047637462616, -0.013893741182982922, 0.006601947359740734, 0.03260430321097374, 0.0007473332225345075, -9.710415179142728e-05, -0.0065474859438836575, -0.011733434163033962, 0.010287177748978138, 0.003679178887978196, 0.002626255853101611, -0.014051074162125587, -0.007939280942082405, -0.0018063073512166739, 0.049233220517635345, 0.022244509309530258, 0.0146804079413414, -0.0312972255051136, -0.02696450799703598, 0.011231177486479282, -0.024810252711176872, -0.054994042962789536, -0.034589122980833054, 0.004556614439934492, -0.026480406522750854, 0.019945021718740463, -0.008586768060922623, -0.019848201423883438, -0.020102355629205704, 0.01543076615780592, -0.005188973620533943, -0.022305021062493324, -0.017718151211738586, -0.00276240985840559, 0.0016792304813861847, 0.04228635132312775, -0.03357250615954399, 0.009046665392816067, -0.0035823583602905273, 0.006716921925544739, 0.002199640730395913, 0.002771486761048436, 0.016350561752915382, -0.008096613921225071, 0.04937845468521118, 0.007443075533956289, 0.00034965056693181396, -0.02689189277589321, 0.046764299273490906, 0.007013434544205666, 0.034855376929044724, 0.0054098451510071754, 0.0025672558695077896, 0.009936203248798847, 0.008871178142726421, -0.04141496866941452, -0.008296306245028973, -0.0066140503622591496, 0.005660973489284515, -0.014825638383626938, -0.04071301966905594, 0.10185515880584717, 0.05567178502678871, 0.01286502368748188, -0.01230225432664156, 0.001131589524447918, -0.013215998187661171, 0.00298933289013803, 0.0027185380458831787, 0.0013562433887273073, 0.017064612358808517, -0.014753023162484169, 0.00033168584923259914, -0.010940715670585632, -0.016277946531772614, -0.04937845468521118, 0.016895176842808723, -0.03144245594739914, -0.0031920508481562138, 0.017863381654024124, -0.0606580413877964, -0.005824358202517033, -0.06859732419252396, 0.02483445778489113, -0.012598766945302486, -0.024120405316352844, 0.010753126814961433, 0.008623075671494007, -0.006765332072973251, -0.0016429227543994784, 0.0370822511613369, -0.04545722156763077, 0.00779405003413558, -0.011140407994389534, -0.011557946912944317, 0.03790522366762161, -0.01986030489206314, 0.008677536621689796, -0.0050225630402565, 0.013796920888125896, 0.027012918144464493, -0.032773736864328384, -0.004011999350041151, -0.02445927821099758, 0.016749946400523186, 0.019291484728455544, 0.012647177092730999, -0.05029824748635292, -0.019230971112847328, -0.010250870138406754, -0.009887793101370335, -0.004940871149301529, 0.03156348317861557, -0.02116738073527813, -0.02444717474281788, -0.012126767076551914, -0.028295790776610374, -0.012023895047605038, -0.04277045279741287, 0.015285535715520382, -0.0231764055788517, -0.008465741761028767, 0.024229329079389572, -0.019569842144846916, -0.029118765145540237, 0.037372712045907974, -0.03349989280104637, -0.04419855773448944, 0.03882502019405365, -0.03376614674925804, -0.025052303448319435, -0.01950933039188385, -0.022837534546852112, -0.013022356666624546, 0.0187347661703825, 0.003288871143013239, 0.021457841619849205, 0.009918049909174442, 0.0054098451510071754, -0.0007594357593916357, -0.010928613133728504, -0.013930048793554306, -0.01653209887444973, -0.01046871580183506, 0.020066047087311745, -0.042939890176057816, -0.007806152570992708, -0.030425840988755226, -0.02248656004667282, 0.015152407810091972, 0.018359586596488953, 0.0606580413877964, -0.00971835758537054, 0.015225023031234741, -0.017984407022595406, 0.008417331613600254, 0.0008660895982757211, -0.0268434826284647, -0.010916510596871376, -0.006995280738919973, 0.0033039995469152927, 9.417306137038395e-05, 0.002190563827753067, 0.003282819874584675, 0.0011626023333519697, 0.013700100593268871, 0.013300715945661068, 0.04872491583228111, 0.011091997846961021, -0.027569636702537537, -0.01707671582698822, -0.019787689670920372, -0.007854563184082508, -0.017742356285452843, 0.011539792641997337, 0.006583793554455042, 0.07266378402709961, 0.005845537409186363, 0.030111175030469894, 0.0382440946996212, -0.0006395447417162359, 0.030692096799612045, -0.027666456997394562, -0.0016913330182433128, -0.002172409789636731, -0.019291484728455544, 0.018359586596488953, 0.0177665613591671, 0.010541331954300404, 0.01494666375219822, -0.017258252948522568, 0.00784246064722538, -0.02606891840696335, 0.030643686652183533, -0.008181331679224968, -0.013796920888125896, -0.010498972609639168, -0.04804717004299164, 0.030086969956755638, -0.014898253604769707, -0.01823856122791767, -0.046062350273132324, -0.033741943538188934, 0.013809023424983025, -0.02039281651377678, -0.01257456187158823, 0.01012379303574562, 0.025197533890604973, 0.05809229612350464, -0.02213558554649353, 0.0017306663794443011, -0.004583845380693674, -0.006172306835651398, -0.04032573848962784, -0.02058645710349083, 0.020767996087670326, 0.0044749220833182335, 0.006813742220401764, 0.02761804684996605, -0.0073402039706707, 0.009331075474619865, -0.007158665452152491, -0.012120716273784637, -0.018480611965060234, -0.012320408597588539, -0.017718151211738586, 0.031273018568754196, -0.01598748378455639, 0.04083404317498207, 0.018976816907525063, -0.0047321016900241375, 0.023587893694639206, -0.012695587240159512, -0.016931483522057533, -0.01510399766266346, 0.002710973843932152, 0.004435589071363211, -0.031660303473472595, 0.003437127685174346, -0.011279587633907795, -0.01633845828473568, 0.0038002044893801212, 0.014704613015055656, 0.0008154101087711751, 0.03623507171869278, -0.0026701276656240225, -0.024168815463781357, 0.025512199848890305, -0.02851363644003868, -0.0027835892979055643, 0.018952611833810806, -0.0166168175637722, -0.04407753050327301, 0.025754252448678017, -0.007666972931474447, -0.03916389122605324, -0.03638030216097832, 0.03654973581433296, -0.01040820311754942, -0.012054151855409145, 0.012889228761196136, -0.0020044867414981127, 0.00865333154797554, -0.011884716339409351, -0.0035944608971476555, 0.002090717665851116, 0.005431024823337793, 0.00043947427184320986, -0.003766922513023019, 0.011085947044193745, 0.028731482103466988, -0.017391381785273552, 0.027521226555109024, -0.013591176830232143, 0.02488286793231964, -0.00021368586749304086, 0.01919466257095337, 0.018650047481060028, -0.014910356141626835, -0.007037639617919922, -0.004057384096086025, 0.026286764070391655, 0.044489018619060516, 0.018480611965060234, 0.0017397432820871472, 0.00962153635919094, 0.016386868432164192, 0.03650132566690445, -0.006293332204222679, 0.016677331179380417, 0.027521226555109024, 0.032701123505830765, 0.03495220094919205, 0.0024613584391772747, 0.018069125711917877, 0.012453536503016949, 0.004302460700273514, 0.004816819913685322, 0.0003611858410295099, -0.02016286924481392, 0.012647177092730999, -0.023587893694639206, -0.006414358038455248, 0.013470151461660862, 0.010390049777925014, 0.005567178595811129, -0.03897025063633919, 0.023890458047389984, -0.030232200399041176, -0.011067792773246765, 0.022353431209921837, -0.017935996875166893, 0.027206558734178543, -0.02174830436706543, 0.001830512541346252, -0.006577742286026478, -0.006208614446222782, 0.0011618459830060601, 0.004922716878354549, 0.023503175005316734, -0.02897353284060955, 0.031732916831970215, 0.037493735551834106, 0.025439584627747536, 0.03887343034148216, 1.2256207810423803e-05, 0.013821125961840153, 0.0013259869301691651, -0.016205331310629845, 0.012114664539694786, -0.0272307638078928, 0.032047584652900696, -0.005497588776051998, -0.024737637490034103, -0.015479177236557007, 0.03427445515990257, 0.024907073006033897, 0.03199917450547218, 0.010553434491157532, 0.0012276535853743553, 0.014704613015055656, 0.02209927886724472, 0.0363076850771904, -0.03086153231561184, 0.019715074449777603, -0.02618994377553463, -0.03972060978412628, -0.03836512193083763, -0.02379363775253296, -0.030377430841326714, -0.0025657431688159704, -0.021506253629922867, 0.004847076255828142, 0.005999844986945391, -0.005364460404962301, -0.02368471398949623, 0.013881638646125793, -0.024362457916140556, 0.002733666216954589, -0.020610664039850235, 0.02055015042424202, -0.027981122955679893, 0.02969968691468239, -0.022305021062493324, 0.04901537671685219, 0.02715814858675003, 0.009246357716619968, -0.05034665763378143, 0.039115481078624725, 0.02507650852203369, 0.015309740789234638, -0.022123483940958977, -0.0005385639960877597, 0.0307163018733263, 0.011951279826462269, -0.03395978733897209, 0.07135670632123947, 0.03558153286576271, 0.005122409202158451, -0.00909507554024458, 0.010771280154585838, -0.01432943344116211, 0.01523712556809187, 0.021143175661563873, 0.014135792851448059, 0.004662511870265007, 0.016362663358449936, 0.016156921163201332, -0.01270768977701664, -0.02460450865328312, -0.0022132559679448605, -0.0032313840929418802, -0.024035688489675522, 0.016435278579592705, 0.022583380341529846, 0.017004098743200302, 0.01993292011320591, 0.03550891578197479, 0.004804716911166906, 0.033814556896686554, 0.027327585965394974, 0.0023705894127488136, 0.01961825229227543, 0.021336816251277924, 0.005104255396872759, 0.033475685864686966, 0.031200405210256577, 0.027981122955679893, 0.008259998634457588, 0.019787689670920372, 0.0035914352629333735, 0.022159790620207787, -0.005052819848060608, -0.0324590727686882, 0.0479019396007061, -0.000677743460983038, 0.014898253604769707, -0.0022556150797754526, -0.03628348186612129, -0.04117291420698166, 0.008586768060922623, -0.012048100121319294, -0.04497312009334564, 0.02483445778489113, -0.0023796663153916597, 0.03441968560218811, 0.007999793626368046, -0.02689189277589321, -0.007485434412956238, -0.021833021193742752, -0.004308511968702078, 0.005379588808864355, 0.012840818613767624, 0.02264389395713806, 0.02139732986688614, -0.0004129999433644116, 0.0051859477534890175, 0.010511075146496296, 0.011285639367997646, 0.016120612621307373, -0.014547279104590416, -0.026165738701820374, -0.030740506947040558, 0.007806152570992708, -0.0016746920300647616, -0.015067690052092075, -0.04451322183012962, 0.018758971244096756, 0.009203998371958733, -0.03299158439040184, 0.03325784206390381, 0.01753661222755909, -0.0002679582976270467, 0.01000276766717434, 0.02314009889960289, 0.02885250747203827, -0.03301578760147095, -0.04051937907934189, 0.003739691572263837, -0.011600305326282978, -0.00979097280651331, -0.03894604369997978, -0.011436921544373035, -0.014293125830590725, 0.011503485031425953, -0.04008368402719498, -0.02761804684996605, 0.021143175661563873, 0.012683484703302383, -0.043012507259845734, -0.024519789963960648, -0.011969434097409248, 0.011013331823050976, 0.023696815595030785, -0.024628713726997375, 0.014365741051733494, -0.004051332827657461, 0.025947893038392067, -0.0036065634340047836, 0.04584450647234917, -0.03473435342311859, -0.03420184180140495, -0.024580303579568863, -0.010045126080513, -0.04117291420698166, 0.01147322915494442, 0.028634661808609962, -0.01839589513838291, 0.001589974039234221, -0.007806152570992708, 0.00818738341331482, -0.014535176567733288, 0.01927938126027584, 0.016895176842808723, -0.026819277554750443, 0.02897353284060955, 0.009803075343370438, -0.00011790543067036197, 0.021409431472420692, 0.027787482365965843, 0.025391174480319023, 0.007140511646866798, 0.026746662333607674, -0.02213558554649353, -0.013603279367089272, 0.00832656305283308, -0.008489946834743023, -0.02460450865328312, 0.0641435757279396, -0.03105517476797104, 0.0072312806732952595, -0.02534276433289051, 0.04032573848962784, -0.014462561346590519, -0.008562562987208366, 0.015830151736736298, 0.0028985636308789253, 0.00824789609760046, 0.024193022400140762, -0.021845124661922455, -0.004825896583497524, -0.015503382310271263, -0.004931794013828039, -0.003657999448478222, -0.03867978975176811, -0.0033493840601295233, -0.019255176186561584, 0.0034794865641742945, 0.029457636177539825, -0.001149743446148932, -0.009391588158905506, 0.01607220247387886, 0.013579074293375015, 0.013107074424624443, 0.008495998568832874, -0.033814556896686554, 0.02548799477517605, -0.012338561937212944, 0.020441226661205292, 0.014995073899626732, 0.0010665382724255323, -0.01981189474463463, -0.002071050927042961, 0.02495548315346241, 0.0008169229258783162, -0.006765332072973251, -0.02696450799703598, 0.02807794325053692, -0.03647712245583534, 0.017294561490416527, -0.0272307638078928, 0.07556840032339096, -0.008108716458082199, 0.00962153635919094, 0.0002598268911242485, 0.02696450799703598, -0.03265271335840225, 0.015963278710842133, -0.008495998568832874, -0.023031175136566162, 0.04986255615949631, 0.0008736536838114262, 0.051750555634498596, 0.047417838126420975, 0.015176612883806229, 0.029070353135466576, 0.002074076561257243, 0.019763484597206116, 0.016507893800735474, 0.0332336351275444, 0.008768306113779545, 0.008217639289796352, -0.017403483390808105, 0.02638358436524868, -0.003621691605076194, -0.021808816120028496, -0.018480611965060234, -0.016314253211021423, -0.0024341277312487364, -0.010583690367639065, 0.018262766301631927, 0.003748768474906683, 0.015394458547234535, -0.021651484072208405, 0.018565330654382706, -0.009766767732799053, -0.021373124793171883, 0.0003485159541014582, 0.009736510924994946, 0.021627278998494148, 0.007654870394617319, 0.01645948365330696, 0.002300999592989683, -0.015660714358091354, 0.0031557430047541857, 0.020029740408062935, 0.030450046062469482, -0.05223465710878372, -0.03301578760147095, 0.0029106661677360535, -0.020332304760813713, 0.005536922253668308, 0.005188973620533943, -0.045408811420202255, -0.01838379167020321, -0.0009954357519745827, -0.00619046064093709, -0.009052716195583344, -0.02553640678524971, -0.03274953365325928, -0.00923425517976284, 0.01880738139152527, -0.01792389526963234, -0.028489431366324425, -0.009760715998709202, 0.04584450647234917, -0.014087381772696972, 0.014934561215341091, -0.0075217424891889095, -0.016435278579592705, -0.0004568717267829925, -0.0009470254881307483, -0.03986584022641182, 0.01201179251074791, -0.02425353415310383, -0.0015612305141985416, 0.018420100212097168, -0.002036256017163396, 0.01075917761772871, 0.010057228617370129, -0.005464306566864252, -0.017294561490416527, -0.011757639236748219, 0.016895176842808723, 0.029869122430682182, -0.027787482365965843, -0.01257456187158823, -0.00021028201445005834, 0.003987794276326895, -0.043666042387485504, -0.014970868825912476, -0.014595690183341503, -0.0053251273930072784, -0.019606150686740875, -0.0016459483886137605, 0.03727589175105095, 0.010396100580692291, -0.012840818613767624, -0.03040163591504097, 0.022426048293709755, -0.02870727702975273, 0.018407996743917465, -0.015007177367806435, -0.03783261030912399, 0.0009296280331909657, 0.0042449734173715115, 0.0008577691041864455, 0.013663792982697487, -0.02483445778489113, 0.005500614643096924, 0.008471793495118618, -0.008157126605510712, -0.002847127616405487, 0.01737927831709385, -0.019715074449777603, 0.001824461272917688, -0.0332336351275444, 0.03887343034148216, -0.009887793101370335, 0.013143382035195827, -0.013917946256697178, -0.012695587240159512, 0.026916097849607468, 0.004381127655506134, -0.005116357933729887, -0.005394717212766409, 0.008907485753297806, -0.01822645775973797, 0.020066047087311745, 0.031224610283970833, -0.022583380341529846, -0.02483445778489113, 0.005612563341856003, 0.04010789096355438, 0.004971127491444349, 0.01251404918730259, -0.01008143462240696, -0.048845939338207245, -0.006874255370348692, -0.003549076383933425, -0.0068318964913487434, -0.024120405316352844, 0.01977558620274067, -0.009918049909174442, -0.04027732461690903, -0.0560106560587883, 0.024628713726997375, 0.00544615276157856, -0.02136102132499218, 0.011884716339409351, 0.0075156912207603455, -0.001484076725319028, 0.003682204522192478, -0.03221701830625534, -0.0014636536361649632, 0.048265017569065094, 0.019727176055312157, 0.03086153231561184, 0.006529332138597965, 0.027303379029035568, 0.008798562921583652, -0.035363685339689255, 0.006275178398936987, -0.012780305929481983, -0.016822561621665955, 0.013881638646125793, -0.021699894219636917, 0.001533243339508772, 0.01568492129445076, -0.0307163018733263, -0.034903787076473236, 0.0017669741064310074, -0.019690867513418198, 0.018057022243738174, 0.013228100724518299, -0.0078243063762784, 0.0023796663153916597, -0.012659279629588127, 0.006934768054634333, -0.01614481769502163, 0.029796507209539413, -0.017754457890987396, -0.007927178405225277, 0.00726153701543808, -0.0047653838992118835, -0.02012656070291996, -0.030643686652183533, -0.005906050093472004, -0.022268714383244514, -0.007503588683903217, -0.020525945350527763, 0.0699044018983841, -0.012889228761196136, 0.016556303948163986, -0.006250973325222731, -0.022655995562672615, -0.024059893563389778, 0.0037094352301210165, -0.006759280804544687, 0.007509639952331781, 0.0021118971053510904, 0.0053039477206766605, 0.021760405972599983, -0.005745691247284412, 0.01077733188867569, 0.0035036916378885508, -0.04659486562013626, -0.00039824991836212575, -0.03480696678161621, 0.013046561740338802, -0.018916305154561996, 0.03228963539004326, -0.0042449734173715115, -0.016810458153486252, 0.014668305404484272, -0.0010514101013541222, -0.03267691656947136, 0.02807794325053692, -0.004626204259693623, 0.001201935694552958, -0.02305538021028042, -0.007860613986849785, -0.018129637464880943, 0.015902766957879066, -0.012816613540053368, 0.015079792588949203, 0.0010952819138765335, -0.016677331179380417, 0.01545497216284275, -0.0045021530240774155, -0.02359999530017376, 0.009706255048513412, -0.014353638514876366, -0.003110358491539955, 0.0016837689327076077, -0.028295790776610374, -0.01714933104813099, -0.027375996112823486, -0.020235484465956688, 0.0008070896146818995, 0.018093330785632133, -0.00023997110838536173, -0.002841076347976923, -0.021421534940600395, -0.052670348435640335, -0.00726153701543808, 0.01584225334227085, -0.032120198011398315, -0.02812635339796543, -0.006414358038455248, -0.05049188807606697, 0.01796020194888115, -0.01834748312830925, 0.024096200242638588, 0.0009432434453628957, 0.010323485359549522, -0.009203998371958733, 0.04323035106062889, 0.007079998962581158, -0.016217432916164398, -0.011521639302372932, -0.006033127196133137, -0.06119055300951004, 0.013893741182982922, 0.02708553336560726, 0.022474458441138268, 0.02139732986688614, 0.01900102198123932, -0.010916510596871376, -0.023152200505137444, 0.0031254866626113653, -0.006862152833491564, 0.005479434970766306, -0.014353638514876366, -0.03754214569926262, -0.02650461159646511, -0.023624200373888016, -0.030183790251612663, -0.0030574097763746977, -0.011309844441711903, -0.0024734612088650465, -0.01943671517074108, 0.015200817957520485, 0.009470255114138126, -0.0037608712445944548, -0.018032817170023918, -0.011624510399997234, -0.011025434359908104, -0.0025521276984363794, -0.004024101886898279, 0.011999689973890781, 0.03345148265361786, 0.0015718202339485288, 0.030764712020754814, -0.00789692159742117, 0.020731689408421516, 0.0076064602471888065, 0.004196563269942999, 0.02255917526781559, -0.001697384286671877, -0.003101281588897109, -0.047514658421278, -0.011515587568283081, 0.01924307271838188, 0.018420100212097168, -0.00801794696599245, 0.010051177814602852, 0.009385536424815655, 0.0065535372123122215, 0.013893741182982922, -0.03461332619190216, 0.00635384488850832, -0.008350768126547337, -0.03519425168633461, -0.01699199713766575, 0.040470968931913376, -0.014341535978019238, -0.04071301966905594, -0.01889210008084774, 0.004490050487220287, -0.0032616404350847006, -0.001591486856341362, -0.00029443265520967543, 0.000975012662820518, -0.03415343165397644, 0.02039281651377678, -0.004487025085836649, 0.02151835523545742, 0.034903787076473236, -0.030111175030469894, -0.008060306310653687, 0.0009008844499476254, -0.013554869219660759, 0.024701328948140144, -0.049160607159137726, -0.003570255823433399, 0.03945435211062431, -0.01354276668280363, -0.005679127294570208, 0.023660508915781975, -0.0281989686191082, -0.018589535728096962, 0.0055611273273825645, -0.02444717474281788, 0.015830151736736298, 0.006892409175634384, 0.03962378948926926, 0.0025400251615792513, 0.01342174131423235, 0.0036973326932638884, -0.019715074449777603, 0.034855376929044724, 0.0010385510977357626, -0.027956917881965637, 0.007539896294474602, -0.005936306901276112, 0.0009273588075302541, 0.015575997531414032, 0.04076142981648445, 0.0036398456431925297, -0.01901312544941902, 0.002084666397422552, 0.01656840741634369, 0.0004262370930518955, 0.008290255442261696, 0.028223175555467606, 0.0455782487988472, -0.009760715998709202, 0.004638306796550751, -0.012078356929123402, 0.01425681822001934, -0.01892840676009655, -0.016435278579592705, -0.010099587962031364, -0.0002931089256890118, 0.017839176580309868, -0.06370788812637329, -0.015406561084091663, -0.020525945350527763, -0.0033039995469152927, -0.04129394143819809, 0.023587893694639206, -0.012114664539694786, 0.0039091273210942745, -0.009294767864048481, 0.04318194091320038, -0.04427117109298706, 0.010577639564871788, 0.004453742876648903, 0.026480406522750854], [0.027826260775327682, 0.029242869466543198, 0.004401608370244503, -0.009467252530157566, -0.028408082202076912, -0.011478331871330738, -0.027472108602523804, 0.014077558182179928, 0.020831750705838203, 0.031393080949783325, -0.008524954319000244, 0.02420884557068348, 0.012648300267755985, -0.04414256662130356, 0.008588195778429508, 0.013508384115993977, 0.025726642459630966, -0.028736937791109085, -0.05752446874976158, 0.03432748466730118, 0.0017581137362867594, 0.04667222872376442, -0.049884896725416183, 0.01250284444540739, -0.02466418594121933, -0.0046419259160757065, 0.008322581648826599, -0.00921428669244051, 0.009233258664608002, -0.0015755038475617766, 0.06582175195217133, -0.02929346263408661, 0.018150310963392258, -0.01357162557542324, 0.0751814991235733, 0.04447142407298088, 0.018959801644086838, -0.005448255222290754, 0.006216639652848244, -0.016366900876164436, -0.024866558611392975, -0.003024524776265025, 0.03275909647345543, -0.03460574895143509, 0.0393868051469326, 0.04763349890708923, 0.026789098978042603, -0.01669575646519661, -0.01836533099412918, 0.023057851940393448, 0.0058213802985847, 0.03146896883845329, -0.042776551097631454, 0.09293971210718155, 0.027396218851208687, 0.05018845573067665, 0.010479116812348366, 0.014014316722750664, -0.03470693528652191, -0.0029597021639347076, -0.03366977348923683, -0.038956765085458755, 0.01889656111598015, 0.047001082450151443, -0.016885479912161827, 0.010807972401380539, -0.04598921909928322, 0.044395532459020615, -0.05297107994556427, 0.0377931222319603, 0.026839692145586014, 0.017707619816064835, -0.027244437485933304, -0.06491107493638992, -0.004812678322196007, 0.01866888999938965, 0.02726973406970501, -0.04864536225795746, 0.01739141345024109, -0.03268320858478546, -0.004249828867614269, -0.021274439990520477, -0.03427689149975777, 0.009264879859983921, -0.012844348326325417, 0.025625456124544144, -0.06157192587852478, -0.011459359899163246, 0.035035792738199234, -0.058131586760282516, -0.0263337604701519, -0.024347977712750435, 0.010124964639544487, 0.0384761281311512, -0.009378714486956596, -0.010321012698113918, 0.03268320858478546, -0.02234954573214054, -0.01802382804453373, 0.0791783556342125, 0.04338366910815239, -0.016657810658216476, -0.0011873592156916857, -0.009188990108668804, 0.01111785601824522, -0.05031493678689003, -0.09283852577209473, -0.016101285815238953, 0.027193844318389893, -0.000630438735242933, -0.04874654859304428, -0.0420682467520237, -0.0643545538187027, 0.07270243018865585, -0.03189901262521744, -0.019604865461587906, -0.03275909647345543, -0.008828513324260712, 0.05595608055591583, 0.0068617030046880245, -0.021641241386532784, 0.013141583651304245, -0.022450732067227364, -0.036477696150541306, -0.030229438096284866, 0.024575646966695786, -0.008050642907619476, 0.001822936232201755, -0.018061771988868713, -0.024107659235596657, 0.03637650981545448, -0.029445242136716843, 0.02090764045715332, -0.0432065948843956, -0.03379625827074051, 0.0016774807590991259, -0.006798461079597473, 0.01221825834363699, -0.05378057062625885, -0.011630112305283546, -0.04077811911702156, -0.07502971589565277, 0.02623257413506508, -0.020654674619436264, -0.02223571203649044, -0.0110862348228693, 0.04171409457921982, 0.029824690893292427, 0.005132047925144434, -0.013445142656564713, 0.02073056437075138, -0.007772380486130714, -0.006690950598567724, -0.0007553406758233905, 0.012155015952885151, 0.02448710985481739, 0.0041707768104970455, -0.033593885600566864, -0.015026180073618889, -0.0014015897177159786, -0.06546760350465775, -0.0217171311378479, -0.012319444678723812, -0.03227846324443817, 0.022716347128152847, 0.01773291639983654, 0.0039684041403234005, 0.017530543729662895, -0.041967060416936874, -0.04072752594947815, -0.04788646474480629, -0.0017502085538581014, -0.0558043010532856, 0.013217473402619362, -0.06152133271098137, -0.006779488641768694, 0.018580352887511253, 0.017011962831020355, 0.003962079994380474, -0.04302951693534851, -0.0039589181542396545, 0.006766840349882841, -0.02188155986368656, -0.05157976597547531, -0.04641926288604736, 0.019718699157238007, 0.00671624718233943, 0.00034545670496299863, -0.012382686138153076, 0.05297107994556427, 0.020642025396227837, -0.009865674190223217, 0.00979610811918974, 0.012464899569749832, -0.032253164798021317, 0.006703598890453577, 0.012414306402206421, -0.03164604678750038, 0.03495990112423897, 0.027649184688925743, -0.017758212983608246, -0.015152663923799992, 0.003971566446125507, -0.015785077586770058, -0.03407451882958412, -0.001166805624961853, 0.013306011445820332, 0.03258202224969864, 0.03946269676089287, 0.033644478768110275, 0.020123446360230446, -0.02276694029569626, -0.06658065319061279, 0.010441171936690807, 0.033012062311172485, 0.04674811661243439, 0.04378841444849968, 0.03592117130756378, -0.016683107241988182, -0.007563683670014143, -0.023019906133413315, 0.027800964191555977, 0.021400922909379005, 0.0154182780534029, 0.04143583029508591, -0.04265006631612778, 0.01227517519146204, -0.039133839309215546, -0.006352608557790518, -0.05620904639363289, -0.031443674117326736, 0.01854240708053112, -0.02777566760778427, -0.0436619333922863, 0.04720345512032509, 0.04593862593173981, -0.028863420709967613, -0.029192276298999786, 0.003211087081581354, 0.0389314666390419, 0.011320228688418865, -0.004290935583412647, 0.014621434733271599, 0.006156560033559799, -0.020199336111545563, -0.031797826290130615, -0.02979939430952072, 0.04351015388965607, 0.051908623427152634, 0.02916697971522808, 0.04153701663017273, 0.0007683842559345067, 0.03943739831447601, -0.011864105239510536, 0.04257417842745781, -0.01005539856851101, 0.04265006631612778, -0.02893931046128273, 0.06895852833986282, -0.0033549615181982517, 0.00044901465298607945, 0.013647515326738358, -0.02315903827548027, 0.046925194561481476, -0.0553489625453949, -0.010042750276625156, 0.04125875607132912, -0.016948722302913666, -0.00898661743849516, 0.04305481165647507, -0.04798765107989311, -0.0033043683506548405, 0.011282283812761307, -0.00863246526569128, 0.00037114854785613716, 0.015468871220946312, -0.00107905815821141, 0.00903721060603857, 0.03126659616827965, 0.025043634697794914, 0.005128885619342327, 0.006545495241880417, 0.00638422928750515, -0.016303658485412598, -0.008341553620994091, -0.015140015631914139, 0.008714678697288036, 0.010921807028353214, 0.014773214235901833, 0.05453946813941002, -0.009226934984326363, -0.04110697656869888, 0.04695048928260803, 0.009802432730793953, 0.016733700409531593, 0.00846171285957098, -0.04760820046067238, -0.005789759568870068, -0.015266498550772667, -0.004085401073098183, 0.03455515578389168, 0.02380410023033619, -0.03574409708380699, 0.020414356142282486, -0.012123395688831806, 0.020249929279088974, 0.018125014379620552, -0.0036490345373749733, 0.0032442889641970396, -0.026434946805238724, 0.020060203969478607, -0.005783435422927141, -0.015291795134544373, -0.012629327364265919, 0.0024695806205272675, 0.04055045172572136, -0.004047456197440624, 0.026713209226727486, 0.04684930294752121, 0.0296982079744339, 0.01236371323466301, -0.01635425165295601, 0.031443674117326736, 0.0014838037313893437, 0.028231006115674973, -0.009587411768734455, 0.017138445749878883, 0.010245122946798801, -0.008120208978652954, -0.001966810552403331, -0.028003336861729622, -0.010491765104234219, 0.007582656107842922, 0.0030782800167798996, 0.031671345233917236, -0.005777111276984215, -0.020831750705838203, 0.007949456572532654, 0.026586726307868958, -0.02490450255572796, -0.02288077399134636, 0.00823404360562563, -0.0036047655157744884, 0.03986744210124016, 0.006817433517426252, -0.006849054712802172, -0.03458045423030853, 0.02628316730260849, -0.016253065317869186, 0.03564291074872017, 0.01859300024807453, 0.012079126201570034, -0.0308365561068058, -0.03923502564430237, -0.09562114626169205, -0.029192276298999786, -0.002771558705717325, -0.010763702914118767, 0.005258530844002962, 0.04130934923887253, -0.02495509572327137, -0.03172193840146065, 0.030811259523034096, 0.02767448127269745, 0.011731298640370369, -0.015633298084139824, -0.03738837689161301, -0.004205559846013784, 0.01325541827827692, -0.011054614558815956, -0.012490196153521538, 0.0033075304236263037, -0.00829096045345068, -0.04902481287717819, -0.018757428973913193, 0.02124914340674877, -0.0010964495595544577, -0.023412004113197327, -0.014709972776472569, 0.02247602865099907, 0.06516404449939728, -0.05585489422082901, -0.00013557396596297622, -0.0024174063000828028, 0.08438945561647415, 0.02136297896504402, -0.042548879981040955, -0.007867242209613323, 0.0069755376316607, 0.007835621945559978, -0.018112365156412125, -0.024803316220641136, 0.05077027529478073, 0.005024536978453398, -0.04753231257200241, 0.024562999606132507, 0.015266498550772667, 0.07320836186408997, 0.0023810425773262978, -0.031114818528294563, -0.014811159111559391, 0.014634083025157452, -0.014861752279102802, -0.0200349073857069, 0.03270850330591202, 0.012426954694092274, 0.0389314666390419, 0.024057066068053246, 0.045963920652866364, -0.01536768488585949, 0.025435730814933777, 0.02929346263408661, 0.029419945552945137, 0.02014874294400215, 0.025891071185469627, 0.006254584528505802, 0.05251574143767357, 0.028281599283218384, -0.009492549113929272, -0.04674811661243439, 0.0393868051469326, 0.021464165300130844, 0.009581087157130241, 0.01103564165532589, 0.013293363153934479, 0.0064411466009914875, 0.012553437612950802, -0.029040496796369553, 0.07760997116565704, -0.08980292826890945, -0.017998531460762024, -0.029242869466543198, 0.003993700724095106, 0.03114011511206627, -0.04856947064399719, -0.04110697656869888, -0.011921023018658161, 0.0120980991050601, -0.012755810283124447, -0.04244769364595413, 0.051959216594696045, -0.024638889357447624, 0.008702030405402184, 0.04244769364595413, -0.03807138279080391, 0.013647515326738358, -0.04368722811341286, 0.026940878480672836, 0.014077558182179928, -0.01484910398721695, -0.0005814265459775925, -0.010295716114342213, -0.02148946188390255, -0.0017644378822296858, -0.03619943559169769, -0.030178844928741455, -0.04353544861078262, -0.03675596043467522, 0.02686498872935772, -0.03807138279080391, -0.034453969448804855, -0.0027589104138314724, 0.05185803025960922, 0.029495835304260254, 0.031393080949783325, 0.03356858715415001, -0.016480734571814537, 0.0032917200587689877, -0.02166653797030449, -0.03407451882958412, -0.032885581254959106, 0.024132955819368362, 0.015911562368273735, -0.023816749453544617, 0.00961270835250616, -0.007532062474638224, 0.00022114762396086007, 0.007607952691614628, -0.016417494043707848, -0.005476714111864567, 0.0036332241725176573, 0.04639396443963051, -0.03427689149975777, -0.04401608556509018, -0.00889807939529419, 0.02947053872048855, 0.0634438768029213, 0.007652221713215113, -0.05094735324382782, -0.028003336861729622, -0.04285243898630142, -0.030457107350230217, -0.027623888105154037, -0.01236371323466301, -0.008474361151456833, -0.029369352385401726, 0.002009498653933406, -0.022336898371577263, 0.05372997745871544, 0.006779488641768694, 0.0400698147714138, 0.013381901197135448, -0.018289441242814064, 0.029318759217858315, 0.02011079713702202, -0.006482253782451153, 0.011762918904423714, 0.0522121824324131, -0.011048289947211742, -0.010573978535830975, -0.015291795134544373, 0.04856947064399719, -0.0238546933978796, -0.021287089213728905, -0.026662616059184074, -0.016139231622219086, 0.0006138377939350903, 0.03569350391626358, -0.028635751456022263, -0.0038577315863221884, 0.03212668374180794, 0.03043181076645851, -0.01005539856851101, -0.0008513886714354157, 0.020085500553250313, -0.0050941030494868755, 0.01656927354633808, -0.011617464013397694, -0.017467303201556206, 0.005827704444527626, -0.007702814880758524, 0.011535249650478363, -0.028635751456022263, 0.0355670191347599, -0.004992916248738766, -0.01600009948015213, 0.018049124628305435, 0.04927777871489525, 0.006235612090677023, 0.04353544861078262, 0.04454731196165085, 0.004003187175840139, 0.005413472652435303, -0.027800964191555977, -0.0004703586455434561, 0.019743995741009712, 0.027927447110414505, 0.007500441744923592, 0.00306879379786551, 0.00231780088506639, 0.008221395313739777, -0.014014316722750664, -0.00232570618391037, -0.0008090959745459259, 0.007076723966747522, 0.017657026648521423, 0.03903265297412872, -0.004325718618929386, 0.018972450867295265, -0.02315903827548027, 0.01849181391298771, -0.013394549489021301, 0.0017470464808866382, 0.03268320858478546, -0.0200349073857069, 0.035263460129499435, 0.004528091289103031, 0.040120407938957214, 0.01727757789194584, -0.008309933356940746, -0.006760516203939915, 0.0033992305397987366, 0.02119855023920536, -0.010434847325086594, 0.019149526953697205, 0.014431710354983807, 0.0648098886013031, -0.0110862348228693, -0.022134525701403618, 0.04677341505885124, 0.021932153031229973, -0.0018197741592302918, 0.006931268610060215, -0.006011104676872492, -0.018567703664302826, 0.006178694777190685, -0.0032158303074538708, -0.024853909388184547, 0.005966835655272007, 0.014874400570988655, 0.027472108602523804, -0.014773214235901833, -0.03361918032169342, -0.036477696150541306, 0.04085401073098183, 0.03877968713641167, -0.00589094590395689, 0.040929898619651794, -0.004711491987109184, 0.004325718618929386, 0.008929699659347534, -0.004436391405761242, 0.0017881534295156598, -0.008215070702135563, 0.009517845697700977, -0.03258202224969864, 0.0023193820379674435, 0.023829396814107895, -0.008967644535005093, -0.0010766865452751517, -0.008872782811522484, -0.006203991360962391, 0.012660948559641838, -0.009985832497477531, -0.06086362153291702, -0.037110112607479095, 0.02409501187503338, 0.00996686052531004, -0.02818041294813156, 0.06293793767690659, -0.008645113557577133, 0.0031857904978096485, 0.02704206481575966, -0.030406514182686806, -0.010491765104234219, 0.005951025057584047, -0.013090990483760834, -0.03946269676089287, 0.007336013950407505, -0.026030201464891434, -0.018567703664302826, -0.02317168563604355, -0.008505981415510178, 0.01458348985761404, -0.037742529064416885, 0.009631680324673653, -0.024562999606132507, 0.03425159677863121, 0.027826260775327682, -0.006412688177078962, 0.02714325115084648, -0.002584996400400996, 0.009517845697700977, -0.03164604678750038, 0.04257417842745781, -0.010093343444168568, 0.02704206481575966, 0.02795274369418621, 0.003933621104806662, -0.005966835655272007, -0.002966026309877634, 0.015038828365504742, 0.012951859273016453, -0.0025296600069850683, 0.026890285313129425, -0.005220585968345404, 0.00953049398958683, 0.053578197956085205, -0.0351116806268692, 0.025081578642129898, -0.005932052619755268, -0.0029391488060355186, -0.004297259729355574, -0.04677341505885124, -0.011320228688418865, 0.01245225127786398, 0.04047456011176109, -0.0031193869654089212, 0.008107560686767101, -0.03822316229343414, -0.016506031155586243, -0.06491107493638992, -0.00028932985151186585, -0.02732032909989357, -0.0055336314253509045, 0.012863321229815483, -0.02992587722837925, -0.026966175064444542, 0.010087019763886929, 0.007354986388236284, 0.009853025898337364, -0.01285067293792963, -0.02524600736796856, 0.005198451224714518, 0.00713364128023386, 0.004012673161923885, 0.015785077586770058, -0.04100579023361206, 0.005492524243891239, -0.010188206098973751, -0.007475145161151886, 0.02992587722837925, 0.02853456512093544, -0.0022925043012946844, -0.009328121319413185, 0.017694972455501556, -0.006390553433448076, 0.004885405767709017, -0.036250028759241104, -0.025802532210946083, -0.01169967744499445, -0.017707619816064835, -0.0375654511153698, -0.037464264780282974, -0.029242869466543198, -0.023601727560162544, 0.024702129885554314, 0.052363961935043335, 0.019946368411183357, -0.005739165935665369, 0.008082264102995396, -0.0011098883114755154, -0.027117954567074776, -0.02016139030456543, -0.0479370579123497, 0.02460094355046749, 0.01865624263882637, 0.024803316220641136, -0.013306011445820332, -0.012749486602842808, 0.0022245198488235474, 0.029091089963912964, -0.017404060810804367, 0.010396902449429035, 0.014823807403445244, -0.02592901512980461, -0.03253142908215523, 0.015140015631914139, -0.008739975281059742, 0.018112365156412125, 0.00440477067604661, 0.013913130387663841, 0.003838759148493409, 0.01195896789431572, -0.014785862527787685, 0.03652828931808472, -0.0337456651031971, 0.008297285065054893, 0.020996177569031715, -0.01449495181441307, 0.013192176818847656, 0.0010332079837098718, -0.021502109244465828, -0.048620063811540604, -0.05615845322608948, 0.019655458629131317, -0.02495509572327137, 0.005318609997630119, -0.030684776604175568, 0.017290227115154266, -0.03523816540837288, 0.009770811535418034, -0.01704990863800049, -0.013002452440559864, 0.04032278060913086, -0.011231690645217896, -0.015051476657390594, 0.02709265798330307, -0.019959017634391785, 0.017138445749878883, -0.00921428669244051, 0.003690141486003995, 0.02084439806640148, 0.028458675369620323, -0.01582302339375019, -0.002123333280906081, -0.019326603040099144, 4.26880142185837e-05, -0.011415090411901474, -0.010725758038461208, -0.00622296379879117, -0.025739289820194244, 0.01013761293143034, -0.00571703165769577, 0.02871164120733738, -0.0022751130163669586, -0.010175557807087898, -0.011396118439733982, -0.04533150792121887, -0.019427789375185966, 0.004980267956852913, -0.0029723504558205605, -0.0006588973919861019, 0.006665654014796019, 0.006962889339774847, -0.03349269926548004, 0.0029960661195218563, 0.05216158926486969, -0.0510738343000412, 0.005837190430611372, 0.009871997870504856, -0.03963977098464966, -0.0007541548693552613, -0.020831750705838203, -0.00048735481686890125, -0.016075989231467247, -0.005887783598154783, -0.05828336626291275, -0.012332092970609665, 0.029546428471803665, -0.02477801963686943, -0.00548936240375042, 0.022488677874207497, 0.005982645787298679, 0.015962155535817146, 0.045255616307258606, -0.01435582060366869, -0.00872732698917389, 0.028686344623565674, 0.003171561285853386, -0.0154182780534029, 0.035895876586437225, 0.06769370287656784, 0.04305481165647507, 0.0034466618672013283, -0.031393080949783325, -0.029723504558205605, 0.005011888686567545, -0.0040980493649840355, -0.051554471254348755, -0.006203991360962391, -0.04474968463182449, 0.0011715488508343697, -0.009296500124037266, -0.010346309281885624, -0.002464837394654751, -0.005144696217030287, 0.008063291199505329, -0.010744730941951275, -0.03298676759004593, 0.005277503281831741, 0.05980116128921509, 0.02853456512093544, -0.02074321173131466, -0.043813712894916534, 0.02114795707166195, 0.025789882987737656, 0.002594482619315386, -0.002882231492549181, 0.046115703880786896, 0.03599706292152405, -0.013887833803892136, -0.012382686138153076, -0.0021407247986644506, 0.016771646216511726, 0.029495835304260254, 0.004189749248325825, -0.052414555102586746, -0.02299460954964161, 0.00021403295977506787, -0.0032695855479687452, -0.0175558403134346, -0.03862790763378143, 0.027345625683665276, -0.019313953816890717, -0.023943232372403145, 0.00975816324353218, 0.00912574864923954, -0.008158153854310513, -0.012686245143413544, 0.0076332492753863335, -0.02154005505144596, -0.01085856556892395, -0.0007585027487948537, -0.041208162903785706, 0.003895676461979747, 0.004749436862766743, 0.032607316970825195, -0.036427102982997894, -0.006045887246727943, 0.035212866961956024, -0.008746299892663956, -0.011895726434886456, -0.006466443184763193, -0.021742427721619606, 0.024917151778936386, -0.014887048862874508, 0.02229895256459713, 0.05180743709206581, 0.023032555356621742, -0.015671243891119957, 0.032556723803281784, 0.05539955571293831, -0.03986744210124016, 0.007759732194244862, -0.009119424037635326, -0.05494421720504761, 0.05742328241467476, -0.0011770824203267694, -0.002281437162309885, 0.010504413396120071, 0.004591332748532295, 0.008980292826890945, -0.04055045172572136, 0.036250028759241104, -0.03743897005915642, 0.01484910398721695, -0.013154231943190098, 0.001443487242795527, -0.00671624718233943, -0.018643593415617943, 0.035035792738199234, -0.035845283418893814, 0.009207962080836296, 0.007766056340187788, 0.019503679126501083, -0.002407920081168413, -0.025751939043402672, -0.01013761293143034, 0.005641141906380653, -0.002202385338023305, -0.016189824789762497, -0.00020632539235521108, 0.02113530971109867, 0.01311628706753254, 0.005312285851687193, -0.03673066198825836, -0.008101236075162888, -0.002186574973165989, 0.04032278060913086, 0.04905010759830475, 0.027598591521382332, -0.031519562005996704, 0.016784293577075005, 0.03619943559169769, -0.014697324484586716, 0.0032284785993397236, 0.03452986106276512, 0.06369683891534805, -0.006507550366222858, -0.02380410023033619, 0.05125091224908829, 0.0013541586231440306, 0.031620752066373825, 0.015430926345288754, -0.03518757224082947, 0.00872100330889225, -0.004417418967932463, 0.02097088098526001, -0.02871164120733738, -0.010346309281885624, 0.000984986312687397, -0.021388275548815727, -0.011484656482934952, -0.03394803777337074, 0.006855378858745098, -0.02357643097639084, 0.04586273431777954, 0.028635751456022263, 0.015304443426430225, -0.028635751456022263, -0.00021521873713936657, 0.029445242136716843, 0.0033043683506548405, 0.015898913145065308, -0.016493383795022964, 0.04517972841858864, -0.02073056437075138, -0.03346740081906319, -0.0065707918256521225, -0.02178037352859974, 0.05013786256313324, 0.04783587157726288, -0.04356074705719948, 0.002270369790494442, 0.03905795142054558, 0.021046770736575127, -0.012945535592734814, 0.01010599173605442, 0.0167589969933033, 0.003914648666977882, -0.0015367685118690133, 0.022792236879467964, 0.023943232372403145, -0.01236371323466301, 0.016366900876164436, -0.016240417957305908, 0.01037160586565733, -0.00248380983248353, -0.012123395688831806, 0.004123345948755741, 0.024423867464065552, -0.0036648449022322893, -0.006912296172231436, -0.017947938293218613, 0.02997647039592266, 0.010498088784515858, 0.03764134272933006, 0.025612806901335716, 0.008385823108255863, -0.009170017205178738, 0.017606433480978012, -0.024132955819368362, 0.008335229940712452, 0.0029201763682067394, 0.018226200714707375, 0.003822948783636093, -0.027826260775327682, -0.005283827427774668, 0.011307580396533012, -0.008069615811109543, 0.000675893563311547, -0.017631730064749718, 0.0018197741592302918, -0.0022925043012946844, 0.005021375138312578, -0.00046324398135766387, 0.0040316455997526646, 0.02818041294813156, 0.011680705472826958, 0.01054235827177763, 0.005935214925557375, 0.022488677874207497, -0.020477598533034325, -0.02396852895617485, -0.048721250146627426, 0.022374842315912247, -0.020642025396227837, -0.006589764263480902, 0.011592167429625988, -0.0020000124350190163, 0.008695706725120544, 0.031165411695837975, -0.004496470559388399, 0.007494117598980665, -0.03389744460582733, 0.03200019896030426, 0.018757428973913193, -0.042776551097631454, -0.025663400068879128, -0.001815031049773097, -0.0018450707430019975, 0.026485539972782135, 0.024069715291261673, 0.017416710034012794, 0.019023044034838676, -0.003206344088539481, -0.016392197459936142, -0.004717816133052111, 0.010068046860396862, -0.01930130645632744, -0.002254559425637126, -0.06015531346201897, -0.01865624263882637, 0.027446812018752098, 0.00987832248210907, 0.00704510323703289, 0.03538994491100311, 0.017593786120414734, 0.005881459452211857, -0.0072032068856060505, -0.010080695152282715, -0.00655814353376627, 0.005078292451798916, -0.010523385368287563, -0.012281499803066254, 0.0012308376608416438, -0.047102268785238266, -0.010049073956906796, -0.008297285065054893, -0.004041132051497698, -0.02974880114197731, 0.0122688515111804, 0.001656927284784615, -0.022602511569857597, -0.01290758978575468, -0.05990234762430191, 0.013331308029592037, 0.004275125451385975, -0.008929699659347534, -0.034403376281261444, 0.013103638775646687, 0.0025834152474999428, 0.0019952694419771433, -0.005350230727344751, 0.004850623197853565, 0.015797726809978485, -0.03447926416993141, -0.012053829617798328, 0.01750524714589119, 0.005675924476236105, 0.021464165300130844, 0.0120980991050601, -0.01031468901783228, -0.012774783186614513, 0.0016521841753274202, 0.013925778679549694, 0.0127684585750103, -0.01686018332839012, -0.030052360147237778, -0.033593885600566864, 0.0562596395611763, 0.0030940903816372156, 0.02893931046128273, -0.006105966866016388, 0.004369987640529871, -0.007519414182752371, -0.007310717366635799, 0.022842830047011375, 0.00039170205127447844, -0.011048289947211742, 0.006305177696049213, -0.004986592102795839, 0.015203257091343403, 0.01963016204535961, 0.004180263262242079, 0.01826414465904236, 0.05099794641137123, 0.015519464388489723, 0.006387391593307257, 0.03617413714528084, 0.010080695152282715, -0.007715463172644377, 0.00414548022672534, -0.009663301520049572, -0.00014743175415787846, -0.013154231943190098, 0.00939136277884245, -0.020717915147542953, 0.01785939931869507, -0.012793755158782005, -0.004385798238217831, -0.04932837188243866, 0.010188206098973751, 0.010915483348071575, -0.012496520765125751, -0.03905795142054558, 0.010529709979891777, 0.009176341816782951, 0.014241985976696014, -0.03743897005915642, -0.026257870718836784, -0.018934505060315132, -0.010567654855549335, 0.03958917781710625, 0.004028483759611845, 0.0031683992128819227, 0.0037944901268929243, 0.011528925970196724, 0.031570155173540115, 0.037869010120630264, 0.0005079082911834121, 0.006286205258220434, -0.009397687390446663, -0.023070499300956726, 0.021072067320346832, 0.014823807403445244, 0.08884166181087494, 0.00372492428869009, -0.012458575889468193, 0.005024536978453398, 0.04118286445736885, -0.005748652387410402, 0.0436619333922863, 0.0017027773428708315, 0.0008695706492289901, -0.007892538793385029, 0.007873566821217537, 0.02461359277367592, 0.028281599283218384, 0.0004976315540261567, -0.02344994805753231, 0.03253142908215523, 0.0017660189187154174, -0.007911511696875095, -0.006507550366222858, 0.007810325361788273, 0.0355670191347599, 0.012920238077640533, 0.02229895256459713, -0.02288077399134636, -0.0351116806268692, -0.04960663244128227, -0.011535249650478363, 0.007443524431437254, -0.04135994240641594, 0.028838124126195908, 0.015532112680375576, -0.009909942746162415, -0.024423867464065552, -0.009024562314152718, 0.02095823362469673, -0.010833268985152245, -0.0028727450408041477, 0.0005806360277347267, 0.014950290322303772, 0.012041181325912476, 0.00589410774409771, 0.0025059443432837725, -0.004885405767709017, 0.025739289820194244, -0.014861752279102802, 0.03205079212784767, -0.012370037846267223, -0.0479370579123497, 0.011320228688418865, -0.02247602865099907, 0.02258986420929432, 0.017176391556859016, -0.05631023272871971, -0.006447470746934414, -0.009366066195070744, -0.020831750705838203, -0.02535984106361866, 0.00540082436054945, -0.029217572882771492, -0.002210290404036641, -0.005751814693212509, -0.008183450438082218, -0.0312918946146965, -0.020414356142282486, 0.036072950810194016, -0.024360625073313713, -0.013558977283537388, -0.03286028280854225, 0.005530469119548798, -0.005808732006698847, 0.00372492428869009, -0.0436619333922863, 0.00331385456956923, -0.019162174314260483, 0.0023162199649959803, 0.002028471091762185, -0.031443674117326736, -0.008309933356940746, -0.013242769986391068, 0.017189038917422295, -0.018681539222598076, -0.0017296550795435905, 0.0013936845352873206, 0.03635121509432793, -0.0019794590771198273, -0.054792437702417374, -0.03124130144715309, 0.018694188445806503, 0.008746299892663956, -0.003930459264665842, 0.006456957198679447, 0.02357643097639084, -0.009941563941538334, 0.005916242487728596, -0.013394549489021301, 0.023121092468500137, -0.02004755474627018, -0.006232449784874916, -0.008999265730381012, 0.024044418707489967, 0.004227694123983383, -0.010643544606864452, -0.01120639406144619, 0.016784293577075005, -0.002376299351453781, -0.0024015959352254868, -0.017366116866469383, 0.009416659362614155, -0.025321897119283676, 0.009422983974218369, -0.02691558189690113, -0.006058535538613796, -0.014608786441385746, -0.006093318574130535, -0.012717865407466888, -0.02767448127269745, 0.03245553746819496, -0.014887048862874508, 0.009694921784102917, 0.02184361405670643, 0.03662947565317154, -0.02992587722837925, 0.02200804278254509, -0.014811159111559391, -0.011067262850701809, 0.00903721060603857, 0.010143936611711979, 0.013495735824108124, 0.015291795134544373, -0.014292579144239426, 0.009283851832151413, 0.0028205709531903267, 0.003807138418778777, 0.009644328616559505, -0.013318659737706184, -0.011238014325499535, -0.009479900822043419, -0.022261008620262146, -0.003981052432209253, -0.008335229940712452, 0.0062071532011032104, 0.013672812841832638, -0.02369026653468609, 0.00738028297200799, -0.009404011070728302, -0.007089372258633375, 0.012698893435299397, -0.006298853550106287, -0.012585058808326721, 0.0312918946146965, -0.014975586906075478, 0.01476056594401598, -0.01143406331539154, 0.020174039527773857, -0.006842730566859245, 0.005479875952005386, -0.001712263678200543, -0.005340744741261005, 0.028205709531903267, 0.02011079713702202, 0.00440477067604661, -0.012439602985978127, -0.005988969933241606, -0.00027944837347604334, 0.008031670935451984, 0.048265911638736725, -0.014709972776472569, -0.008487009443342686, -0.02623257413506508, -0.020136093720793724, -0.03182312473654747, -0.03126659616827965, -0.01588626578450203, 0.0025644428096711636, -0.03458045423030853, -0.005685410927981138, 0.005217423662543297, 0.035845283418893814, -0.04477498307824135, -0.028635751456022263, -0.017998531460762024, 0.001585780642926693, -0.0073739588260650635, -0.03240494430065155, -0.004290935583412647, -0.00837949849665165, 0.00032529846066609025, -0.018694188445806503, 0.005571576301008463, -0.02155270241200924, 0.025751939043402672, -0.033012062311172485, 0.0339733324944973, -0.00846803653985262, -0.02333611436188221, -0.03091244585812092, 0.03447926416993141, -0.01998431421816349, -0.0034150411374866962, -0.006248260382562876, -0.016556624323129654, 0.01899774745106697, -0.03205079212784767, 0.00597948394715786, -0.011472008191049099, -0.02246338129043579, -0.000721348391380161, -0.009163693524897099, 0.01847916655242443, 0.001269573112949729, -0.008094912394881248, -0.010112316347658634, -0.0012940792366862297, -0.005021375138312578, 0.01930130645632744, 0.027851557359099388, 0.0425235852599144, 0.03432748466730118, -0.030532997101545334, 0.0017059394158422947, -0.03384685143828392, 0.012199285440146923, 0.0011170030338689685, -0.04110697656869888, -0.035263460129499435, 0.01102931797504425, 0.009713894687592983, -0.021072067320346832, 0.03415041044354439, -0.022981960326433182, 0.04517972841858864, -0.0033802581019699574, -0.01031468901783228, -0.00563165545463562, -0.02178037352859974, 0.0052332342602312565, -0.019389843568205833, 0.013672812841832638, -0.0069755376316607, -0.003187371650710702, 0.03194960579276085, -0.00023873666941653937, -0.0042688013054430485, 0.04348485544323921, -0.03637650981545448, -0.015608002431690693, 0.0007055379683151841, -0.04141053557395935, -0.039083246141672134, -0.012806403450667858, 0.011743946932256222, -0.05747387558221817, -0.00020069294259883463, -0.011579519137740135, 0.03222787007689476, -0.05094735324382782, -0.02443651668727398, 0.011288607493042946, -0.056816164404153824, -0.01031468901783228, 0.00449330871924758, -0.024752723053097725, -0.004550226032733917, 0.01001745369285345, 0.00779767706990242, 0.02460094355046749, -0.0216032974421978, -0.031519562005996704, -0.03189901262521744, -0.006722571328282356, 0.013508384115993977, 0.013837240636348724, -0.012989804148674011, 0.0023241250310093164, -0.021742427721619606, -0.02223571203649044, -0.009258555248379707, 0.02200804278254509, -0.011737622320652008, -0.00015345944848377258, -0.00970124639570713, 0.0060996427200734615, -0.00918266549706459, -0.006115453317761421, -0.014482303522527218, 0.043459560722112656, 0.007196882739663124, -0.01663251407444477, 0.01545622292906046, -0.019035691395401955, 0.006868027150630951, -0.008069615811109543, -0.00011857781646540388, 0.030406514182686806, -0.006181856617331505, -0.01183880865573883, -0.03313854709267616, 0.004781057592481375, -0.015873616561293602, -0.050061970949172974, 0.013913130387663841, -0.04578684642910957, 0.03384685143828392, 0.02051554247736931, 0.0023272871039807796, -0.01963016204535961, 0.001352577586658299, 0.00540082436054945, -0.0021676025353372097, -0.009669625200331211, 0.022438084706664085, -0.018175607547163963, -0.01302774902433157, -0.00041778915328904986, -0.0005711498088203371, -0.00863246526569128, -0.014381117187440395, -0.0048695956356823444, -0.019276009872555733, 0.007494117598980665, 0.011668057180941105, -0.00678581278771162, 0.021211199462413788, -0.016619866713881493, -0.022678401321172714, 0.010491765104234219, 0.03101363219320774, -0.028155116364359856, -0.029546428471803665, 0.0005766834365203977, -0.004926512949168682, 0.011307580396533012, -0.025195414200425148, -0.04373782128095627, -0.02108471654355526, 0.0037122759968042374, -0.05307226628065109, -0.03114011511206627, -0.029040496796369553, -0.010586626827716827, 0.02043965272605419, 0.014064909890294075, 0.017201688140630722, -0.0013138421345502138, -0.008411119692027569, -0.00248380983248353, -0.003803976345807314, 0.01316688023507595, -0.04290303215384483, 0.0055968728847801685, 0.035440538078546524, 0.022804884240031242, -0.045205023139715195, -0.016961369663476944, 0.022855477407574654, -0.028686344623565674, 0.0178973451256752, -0.005021375138312578, 0.02265310473740101, -0.050871461629867554, -0.010934455320239067, 0.008404795080423355, -0.008645113557577133, 0.0443449392914772, 0.01831473782658577, -0.01352103240787983, 0.021337682381272316, 0.00779767706990242, -0.02200804278254509, 0.043408967554569244, 0.008215070702135563, -0.01582302339375019, 0.01651868037879467, 0.00463560177013278, -0.0021834129001945257, -0.018567703664302826, -0.03344210609793663, 0.007494117598980665, 0.0020063365809619427, 0.02795274369418621, 0.022311601787805557, -0.0036553586833178997, -0.021223846822977066, -0.04667222872376442, 0.04166350141167641, -0.018580352887511253, 0.011370821855962276, 0.009916267357766628, 0.03685714676976204], [-0.004934343975037336, 0.03718448057770729, 0.012758533470332623, -0.0034894209820777178, -0.05920132249593735, 0.028606770560145378, 0.0014030605088919401, -0.01730666309595108, -0.001224808394908905, 0.02655416913330555, -0.06909701973199844, 0.03837282955646515, -0.010187380947172642, -0.030356882140040398, -0.04355834424495697, 0.027807336300611496, -0.010073947720229626, 0.034159593284130096, -0.015232456848025322, 0.018624650314450264, 0.03979884460568428, 0.017382286489009857, 0.02048279345035553, 0.053799740970134735, -0.018667861819267273, -0.0010641113622114062, 0.039129048585891724, 0.008620922453701496, 0.007745866663753986, 0.0015799623215571046, 0.048873499035835266, -0.01677730865776539, 0.04502757638692856, -0.028066612780094147, 0.07419610768556595, 0.05418865382671356, -0.007767472881823778, 0.04267248511314392, -0.01484354306012392, -0.03316570445895195, -0.06944271922111511, 0.03141559287905693, -0.04593504220247269, 0.007275928743183613, -0.028714802116155624, 0.07181941717863083, 0.03398674353957176, -0.02882283367216587, 0.011138059198856354, 0.05137983337044716, -0.018635453656315804, 0.02309715747833252, -0.049737751483917236, 0.05336761474609375, 0.036147378385066986, -0.013050218112766743, 0.010738342069089413, -0.01140813808888197, -0.009555395692586899, -0.022902701050043106, -0.03163165599107742, 0.012920580804347992, -0.014249369502067566, 0.03930189833045006, -8.769128180574626e-05, -0.03152362257242203, 0.030767401680350304, 0.03597452491521835, -0.023183584213256836, 0.011905083432793617, -0.02018030546605587, 0.05574430897831917, -0.001049256999976933, -0.017792806029319763, -0.00432666577398777, 0.05012666806578636, 0.0334249809384346, -0.018873121589422226, 0.02852034568786621, 0.019424082711338997, 0.0005334060988388956, 0.001238987548276782, -0.01414133794605732, 0.01846260204911232, -0.012628895230591297, -0.008853190578520298, -0.055225759744644165, 0.033057671040296555, -0.03225823864340782, 0.006179408170282841, 0.024091048166155815, -0.030140819028019905, 0.035931315273046494, 0.06957235932350159, 0.00035245312028564513, 0.008334638550877571, 0.019715769216418266, -0.019208019599318504, -0.023702135309576988, 0.03768142685294151, 0.013665998354554176, 0.017792806029319763, 0.03294964134693146, 0.0029654677491635084, -0.008177992887794971, -0.11727911233901978, -0.06417077779769897, -0.017123010009527206, 0.010970610193908215, -0.001408462063409388, 0.010894987732172012, -0.0014705803478136659, -0.02456638775765896, 0.03768142685294151, -0.016636867076158524, -0.01526486687362194, 0.025495460256934166, 0.0015934662660583854, 0.06767100095748901, 0.02335643395781517, -0.012585682794451714, 0.05047236755490303, -0.012196769006550312, -0.07722099125385284, -0.01755513623356819, 0.004553532227873802, -0.018332963809370995, -0.00690862163901329, -0.0023685931228101254, -0.02564670331776142, -0.0023604906164109707, -0.024955302476882935, 0.014260172843933105, -0.026964690536260605, 0.01644241064786911, -0.018041279166936874, 0.020029060542583466, -0.025279397144913673, -0.006681755185127258, -0.01171062607318163, -0.017220238223671913, -0.02648935094475746, 0.04844137281179428, 0.022708244621753693, -0.0374869704246521, 0.035002242773771286, 0.0285851638764143, 0.03837282955646515, 0.014076518826186657, -0.030659370124340057, -0.011224484071135521, 0.024436749517917633, 0.000837244966533035, 0.02216808684170246, -0.006368463393300772, 0.018106097355484962, -0.036838777363300323, 0.04239160194993019, 0.016042694449424744, 0.019143201410770416, -0.058725982904434204, -0.03740054368972778, 0.024890482425689697, -0.0006259081419557333, 0.05505291000008583, -0.017652364447712898, 0.005655454937368631, 0.024609601125121117, -0.05833707004785538, -0.0485277995467186, -0.030140819028019905, -0.02571152336895466, -0.009161080233752728, 0.008431866765022278, 0.006903219968080521, 0.014508645050227642, 0.022621819749474525, -0.0027872156351804733, 0.04533006250858307, -0.024976909160614014, 0.010333223268389702, 0.02168194390833378, -0.004523823503404856, -0.02275145798921585, -0.009258309379220009, -0.021239014342427254, 0.00997131783515215, 0.034505296498537064, -0.007297535426914692, 0.03757339343428612, 0.006422479171305895, 0.007918717339634895, 0.0018284349935129285, -0.013525557704269886, -0.017522728070616722, 0.010279207490384579, -0.007902512326836586, 0.006125392392277718, 0.02970869280397892, -0.030486520379781723, 0.03400835022330284, -0.024760844185948372, -0.00598495127633214, 0.012164358980953693, -0.01339591946452856, -0.0477931834757328, 0.030702583491802216, -0.02335643395781517, 0.06494860351085663, 0.027267178520560265, 0.015480929985642433, -0.04182983934879303, -0.02190881036221981, 0.00707066897302866, -0.00906925369054079, -0.004742587450891733, 0.034137990325689316, 0.01589144952595234, -0.033878713846206665, -0.00614159693941474, -0.0004706126928795129, -0.01227239053696394, -0.02189800702035427, 0.016269560903310776, -0.007832291536033154, 0.00453192600980401, -0.021865596994757652, 0.004885729402303696, -0.02852034568786621, -0.030421702191233635, -0.04116004332900047, 0.026748627424240112, 0.008318433538079262, -0.00281152268871665, 0.028196251019835472, 0.01790083758533001, -0.015513339079916477, -0.007837693206965923, 0.015805024653673172, 0.04096558690071106, 0.017468711361289024, 0.02882283367216587, 0.0003872257948387414, -0.036190588027238846, -0.005574431270360947, -0.010992215946316719, -0.030789008364081383, 0.0196293443441391, 0.02968708612024784, 0.023270009085536003, -0.01471390575170517, 0.0027426525484770536, 0.02108776941895485, -0.024912089109420776, 0.032106995582580566, 0.03459172323346138, 0.011148862540721893, -0.017814412713050842, -0.000992540386505425, -0.03202056884765625, 0.017727987840771675, 0.016042694449424744, -0.028498739004135132, 0.0490463525056839, -0.04796603322029114, -0.0099443094804883, 0.07942484319210052, -0.08072122186422348, -0.06395471096038818, 0.03178289905190468, -0.002109317108988762, 0.009749853052198887, -0.008232008665800095, -0.0030329874716699123, -0.012088737450540066, 0.0137200141325593, 0.00867493823170662, -0.015059606172144413, 0.005558226257562637, 0.01299620233476162, -0.037357330322265625, 0.01704738847911358, -0.011699823662638664, -0.030184032395482063, -0.014076518826186657, -0.007448779419064522, -0.00497755641117692, 0.00526654114946723, -0.04749069735407829, 0.055528245866298676, 0.003656869987025857, -0.019110791385173798, -0.04472508653998375, 0.02592758648097515, 0.024458356201648712, -0.008766764774918556, -0.02046118676662445, -0.00498295808210969, -0.007011251524090767, 0.023702135309576988, 0.02074206992983818, -0.008885599672794342, 0.003297664923593402, 0.026943083852529526, -0.03854567930102348, -0.006146998610347509, 0.01526486687362194, 0.029600661247968674, -0.03699002414941788, 0.01198070589452982, -0.04684250429272652, 0.0015826630406081676, -0.045762188732624054, -0.01590225286781788, 0.012898974120616913, -0.012920580804347992, -0.011127255856990814, -0.003068097634240985, 0.024609601125121117, 0.010986815206706524, 0.01729586161673069, -0.009171883575618267, -0.0011316310847178102, -0.031329166144132614, 0.020320745185017586, -0.00819419790059328, 0.0640411376953125, 5.806699118693359e-05, -0.04316943138837814, 0.03513187915086746, -0.05915810912847519, 0.02968708612024784, 0.006379266735166311, 0.00924750603735447, -0.021973630413413048, 0.010235995054244995, -0.004583240952342749, 0.01818172074854374, -0.001705549075268209, 0.004229437559843063, 0.007664842531085014, -0.011689020320773125, 0.04705857113003731, -0.012715320102870464, 0.03785427659749985, -0.009128671139478683, 0.027310391888022423, 0.04152734950184822, 0.01269371435046196, 0.015038000419735909, -0.020958133041858673, 0.005180115811526775, 0.022427361458539963, 0.011170468293130398, -0.056997478008270264, -0.01181865856051445, 0.02074206992983818, 0.030400095507502556, -0.01786842755973339, 0.003465113928541541, -0.010333223268389702, -0.021779172122478485, -0.010543884709477425, 0.06844882667064667, -0.04059828072786331, 0.01789003424346447, 0.0006350232870317996, -0.024933695793151855, 0.02018030546605587, -0.022448968142271042, -0.003486720146611333, 0.009101662784814835, -0.03469975292682648, -0.014681495726108551, -0.016647670418024063, -0.03191253915429115, 0.007178700529038906, 0.017760396003723145, 0.02193041704595089, 0.049737751483917236, 0.010479066520929337, -0.016031891107559204, 0.0068492041900753975, 0.012056327424943447, 0.09282075613737106, 0.03642825782299042, -0.06814634054899216, -0.022006038576364517, 0.026662200689315796, 0.01618313603103161, -0.012553272768855095, 0.020299140363931656, 0.002765609184280038, -0.01108404342085123, -0.0409223735332489, 0.013644392602145672, 0.03355461731553078, 0.01756593957543373, 0.012790942564606667, -0.027828942984342575, 0.013774029910564423, -0.04736105725169182, -0.016647670418024063, -0.07035018503665924, 0.04336388781666756, 0.00045035677612759173, 0.02167114056646824, -0.0013193360064178705, 0.03899941220879555, -0.0019283642759546638, 0.02968708612024784, -0.0285851638764143, 0.032106995582580566, -0.044292960315942764, 0.028758015483617783, 0.02711593359708786, -0.01557815819978714, 0.04645359143614769, -0.014832739718258381, -0.01591305620968342, 0.03463493287563324, 0.0127045176923275, -0.04558933898806572, 0.04692893102765083, -0.08136940747499466, 0.01228319387882948, 0.03141559287905693, 0.02685665898025036, 0.04236999899148941, -0.041376106441020966, -0.044897936284542084, -0.011505366303026676, 0.03668753430247307, 0.029579054564237595, -0.03033527545630932, -0.012812549248337746, -0.022665031254291534, -0.04360155761241913, -0.015934662893414497, -0.024587994441390038, -0.01846260204911232, 0.007859299890697002, -0.014454629272222519, 0.04913277551531792, -0.01644241064786911, 0.0299895741045475, -0.014379007741808891, 0.03297124803066254, 0.045978251844644547, 0.0024685224052518606, 0.00469937501475215, -0.018116900697350502, -0.05794815719127655, -0.011181271634995937, -0.04991060495376587, 0.03454850986599922, -0.03059455193579197, -0.04005812108516693, 0.06080019101500511, -0.07722099125385284, 0.024393538013100624, 0.01989942230284214, 0.039064228534698486, 0.020839298143982887, 0.023594103753566742, 0.058423493057489395, 0.0013760526198893785, -0.0010127963032573462, -0.05384295433759689, -0.004777697846293449, -0.05855313315987587, 0.015470126643776894, 0.03148041293025017, 0.006249628495424986, -0.012293997220695019, 0.03640665113925934, 0.006379266735166311, -0.03055133856832981, -0.08249294012784958, 0.029535843059420586, 0.015243260189890862, 0.026446137577295303, -0.01195909921079874, -0.024717632681131363, 0.04418492689728737, 0.04159216955304146, 0.03945314511656761, 0.03057294525206089, -0.05289227515459061, -0.05220087245106697, -0.00012803434219677, -0.01299620233476162, 0.04098719358444214, -0.007470385637134314, -0.06304724514484406, -0.001731206546537578, 0.027807336300611496, 0.02162792906165123, 0.08858592063188553, -0.0274400282651186, 0.014314188621938229, -0.04874386265873909, 0.03284160792827606, -0.054059017449617386, 0.03148041293025017, -0.022578606382012367, 0.018268145620822906, 0.01444382593035698, -0.003192333970218897, -0.013752424158155918, -0.053497254848480225, 0.006649345625191927, 0.02765609137713909, 0.017533529549837112, -0.01903516985476017, -0.016096709296107292, 0.007470385637134314, 0.029557447880506516, -0.0006340105319395661, 0.010079349391162395, 0.0409223735332489, 0.007146290969103575, -0.06339295208454132, -0.00021049284259788692, 0.011300106532871723, 0.020558414980769157, -0.008610119111835957, -0.02767769806087017, -0.0065791248343884945, 0.032128602266311646, 0.035931315273046494, -0.016582852229475975, -0.025538671761751175, 0.048873499035835266, 0.05016988143324852, -0.023853380233049393, 0.00389724038541317, -0.009717443026602268, -0.0024415142834186554, -0.02047199010848999, 0.02800179272890091, -0.04128967970609665, 0.005009965971112251, 0.013514754362404346, 0.0028466328512877226, -0.01283415500074625, 0.04128967970609665, 0.01935926452279091, -0.005523115862160921, 0.02715914696455002, -0.0033921925351023674, 0.025257790461182594, 0.020893312990665436, -0.0017433600733056664, -0.020580021664500237, -0.042240358889102936, 0.027483241632580757, -0.0065791248343884945, -0.007967331446707249, -0.026402926072478294, 0.03152362257242203, 0.018278948962688446, -0.0006039642030373216, -0.004572438076138496, -0.002571152290329337, 0.04249963536858559, -0.020947329699993134, -0.006870810408145189, 0.019208019599318504, -0.016615262255072594, -0.006525109056383371, 0.02564670331776142, 0.027180753648281097, 0.06516467034816742, 0.05423186719417572, 0.012207572348415852, 0.026424530893564224, -0.038221582770347595, -0.018678665161132812, -0.005758084822446108, 0.018894728273153305, 0.022881094366312027, -0.015308079309761524, -0.01282335165888071, -0.035326335579156876, 0.04684250429272652, -0.03729251027107239, -0.04874386265873909, -0.005714872386306524, 0.04757712036371231, 0.0007717508124187589, -0.03383550047874451, 0.03061615861952305, -0.008421064354479313, 0.028758015483617783, 0.02916853502392769, -0.03541276231408119, -0.005644651595503092, -0.02218969352543354, 0.03740054368972778, -0.014098125509917736, -0.003127515083178878, -0.003999870270490646, -0.00496675306931138, 0.034505296498537064, -0.009674230590462685, 0.027310391888022423, -0.043147824704647064, 0.027872154489159584, -0.0015988678205758333, 0.02916853502392769, 0.00213227397762239, 0.042780518531799316, -0.02564670331776142, -0.021217407658696175, 0.0048317136242985725, -0.05773209407925606, -0.04325585812330246, -0.018883924931287766, -0.0167124904692173, 0.00993890780955553, 0.02168194390833378, -0.01325547881424427, -0.02653256431221962, 0.0016231749905273318, -0.015621370635926723, -0.022092463448643684, -0.03653629124164581, -0.011689020320773125, 0.010327821597456932, 0.02195202372968197, 0.0559171624481678, -0.03135077282786369, 0.002943861298263073, 0.0027602077461779118, -0.017436301335692406, -0.0033840902615338564, 0.02076367475092411, -0.011570185422897339, -0.040533460676670074, -0.010187380947172642, -0.01109484676271677, 0.00497755641117692, -0.020137092098593712, 0.04345031455159187, 0.02105536125600338, 0.0404038205742836, 0.021184999495744705, 0.020688053220510483, -0.004453603178262711, 0.03392192721366882, -0.022405756637454033, 0.017393089830875397, -0.006433282513171434, 0.003924248274415731, -0.010014530271291733, -0.03148041293025017, 0.053194765001535416, 0.018657058477401733, -0.001954021630808711, 0.014973181299865246, 0.0018122302135452628, 0.005736478604376316, -0.014919165521860123, 0.008847788907587528, 0.03947475180029869, 0.03886977210640907, -0.018354570493102074, 0.01966175250709057, -0.030184032395482063, 0.0016974466852843761, -0.025603491812944412, 0.0018122302135452628, -0.027310391888022423, -0.02137945592403412, -0.002873640740290284, -0.025192972272634506, -0.013374313712120056, -0.028995683416724205, 0.023745348677039146, -0.027893761172890663, -0.017695577815175056, -0.028088219463825226, 0.051811959594488144, 0.030486520379781723, -0.008275221101939678, 0.05397259071469307, -0.013363510370254517, 0.004232138395309448, -0.0051179975271224976, 0.012466847896575928, 0.0022470573894679546, -0.0006947782821953297, 0.017954854294657707, 0.050645217299461365, 0.026705414056777954, 0.015027197077870369, -0.002656227210536599, 0.003297664923593402, 0.007200306747108698, 0.01816011406481266, -0.00705986563116312, 0.004858721513301134, -0.040814343839883804, -0.003905342658981681, 0.002989774802699685, 0.0035029249265789986, 0.007540606427937746, 0.00613619526848197, 0.006584526505321264, -0.002833128906786442, -0.009733648039400578, -0.041678596287965775, -0.0008899103850126266, -0.03424602001905441, -0.0006711463793180883, -0.03839443251490593, -0.004286154173314571, 0.021465880796313286, 0.017144616693258286, -0.010749145410954952, 0.022405756637454033, 0.0060713766142725945, -0.00758381886407733, 0.007713457103818655, -0.03137237951159477, -0.013277084566652775, -0.01816011406481266, 0.001832486130297184, 0.025409035384655, 0.026921477168798447, -0.01611831597983837, 0.029254959896206856, -0.008945017121732235, -0.007108479738235474, 0.002930357353761792, 0.0007028806721791625, 0.01526486687362194, 0.01756593957543373, 0.009009836241602898, 0.03882656246423721, -0.00441039027646184, 0.0028034201823174953, -0.03433244675397873, -0.020569218322634697, 0.024868875741958618, 0.008010543882846832, 0.017382286489009857, 0.008113173767924309, -0.007216511759907007, -0.015977874398231506, 0.004745288286358118, -0.030076000839471817, -0.010446656495332718, 0.020039863884449005, -0.014465432614088058, 0.03489420935511589, 0.022362543269991875, 0.019975043833255768, -0.02016950212419033, -0.007216511759907007, 0.009155678562819958, -0.01645321398973465, 0.04211072251200676, -0.004450902342796326, -0.03001118078827858, -0.007907913997769356, 0.008761364035308361, 0.0020066872239112854, -0.027548059821128845, 0.039625994861125946, 0.02048279345035553, 0.025214577093720436, 0.03720608726143837, 0.020601628348231316, 0.023226795718073845, 0.000749469269067049, -0.010036136955022812, -0.03320891782641411, -0.019121594727039337, 0.002509034238755703, -0.018365373834967613, -0.024955302476882935, 0.031285952776670456, 0.02713754028081894, -0.006001155823469162, -6.697115895804018e-05, 0.0051936195231974125, -0.01284495834261179, 0.004353673662990332, -0.02049359679222107, -0.02880122698843479, -0.014778723940253258, -0.03262554481625557, 0.023270009085536003, -0.04118165001273155, 0.014681495726108551, -0.020245123654603958, 0.033597830682992935, -0.005633848253637552, -0.005147706251591444, 0.010927397757768631, 0.005506911315023899, 0.0279585812240839, 0.028974078595638275, -0.017166223376989365, -0.02623007446527481, -0.012045524083077908, 0.023766953498125076, -0.0698748454451561, -0.003945854492485523, 0.020580021664500237, -0.0019459193572402, 0.025236183777451515, 0.0433206744492054, -0.04360155761241913, -0.01123528741300106, 0.028390707448124886, -0.01227239053696394, -0.05228729918599129, 0.00026535263168625534, -0.0036244604270905256, 0.028693195432424545, -0.017425497993826866, -0.0025792547967284918, -0.006287439726293087, -0.02050440013408661, 0.04174341261386871, -0.015437716618180275, -0.03781106323003769, 0.010419649071991444, 0.004669666290283203, 0.005903927609324455, -0.00561764370650053, 0.007389361970126629, 0.03286321461200714, -0.022006038576364517, 0.014076518826186657, 0.012639698572456837, 0.06144838035106659, 0.027591273188591003, -0.01413053460419178, 0.02275145798921585, 0.013071824796497822, -0.027850549668073654, 0.011494562961161137, -0.008604717440903187, -0.042866941541433334, -0.028217855840921402, 0.03208538889884949, -0.015999481081962585, 0.0030897040851414204, -0.017965657636523247, 0.04007972776889801, 0.008539898321032524, -0.012067130766808987, 0.006271235179156065, 0.025776341557502747, -0.018332963809370995, -0.0334249809384346, -0.007194905076175928, 0.004494114778935909, 0.010063144378364086, 0.024134261533617973, -0.013611982576549053, 0.017511924728751183, 0.026186862960457802, -0.0009857884142547846, -0.021973630413413048, 0.004367177840322256, 0.027742518112063408, -0.0007224613800644875, 0.02021271362900734, -0.014389810152351856, -0.04044703394174576, 0.0055528245866298676, -0.009555395692586899, 0.010225191712379456, 0.013503951020538807, -0.005930935498327017, 0.002876341575756669, 0.0163991991430521, 0.013277084566652775, 0.0040376815013587475, -0.00012617754691746086, -0.0038999412208795547, -0.011138059198856354, 0.05673820152878761, 0.012790942564606667, -0.021509094163775444, 0.01396848727017641, -0.005363769363611937, 0.006022762041538954, -0.009123269468545914, 0.003554239869117737, 0.023313220590353012, 0.009863286279141903, -0.02599240466952324, -0.014324991032481194, -0.022600213065743446, -0.023140370845794678, -0.0036136573180556297, -0.049737751483917236, 0.006719565950334072, -0.020331548526883125, 0.000616792996879667, 0.016593655571341515, -0.019510509446263313, 0.016507230699062347, -0.012218374758958817, 0.006465692073106766, -0.028153037652373314, -0.011202878318727016, -0.017814412713050842, 0.0030356883071362972, 0.022556999698281288, -0.03746536374092102, 0.022881094366312027, 0.001411162898875773, 0.034051563590765, 0.06525108963251114, -0.011300106532871723, 0.0057094707153737545, 0.015805024653673172, -0.017760396003723145, -0.00852909591048956, -0.026467744261026382, 0.014897558838129044, -0.014929968863725662, -0.024393538013100624, -0.010819366201758385, 0.04818209633231163, -0.005574431270360947, -0.0002273727732244879, 0.006968038622289896, 0.019186414778232574, 0.014357401058077812, 0.006157801952213049, 0.01616152934730053, -0.030745796859264374, 0.030789008364081383, 0.010954405181109905, 0.0029519638046622276, 0.011602594517171383, -0.06136195361614227, -0.024652812629938126, 0.03143719956278801, 0.001519194571301341, 0.0025049829855561256, 0.0020688052754849195, 0.011580988764762878, -0.0057256752625107765, 0.015200047753751278, 0.006724967621266842, 0.003103208029642701, 0.001346343895420432, 0.06080019101500511, 0.002698089461773634, -0.016615262255072594, -0.007853898219764233, 0.0021619827020913363, 0.0559171624481678, 0.03126434609293938, -0.03917226195335388, 0.043947260826826096, 0.0037405944894999266, -0.01731746643781662, -0.016561245545744896, -0.024155868217349052, 0.0005364444805309176, 0.004159216769039631, -0.028109824284911156, 0.05660856515169144, 0.026467744261026382, -0.04133289307355881, -0.016928553581237793, 0.0231187641620636, 0.03117792308330536, 0.0009776860242709517, 0.02651095762848854, 0.010203585959970951, -0.018646255135536194, -0.020320745185017586, 0.009506781585514545, -0.016258757561445236, -0.004059287719428539, -0.0031221136450767517, 0.01931605115532875, 0.015189244411885738, 0.01840858720242977, 0.0137200141325593, -0.022405756637454033, 0.030745796859264374, 0.010597900487482548, -0.0028844440821558237, 0.023766953498125076, -0.009560797363519669, -0.018646255135536194, 0.021692747250199318, -0.008107772096991539, 0.023442858830094337, 0.014400613494217396, 0.02078528143465519, 0.05570109933614731, 0.018116900697350502, -0.0062010143883526325, 0.01181865856051445, -0.02337804064154625, 0.022016841918230057, -0.0462375283241272, 0.007108479738235474, -0.02303233928978443, 0.013774029910564423, 0.014886755496263504, -0.018916334956884384, -0.07432574778795242, -0.0010674872901290655, -0.029795117676258087, -0.03528312221169472, 0.028909258544445038, 0.008150984533131123, 0.016366789117455482, 0.014238566160202026, 0.03240948170423508, 0.01791164092719555, -0.039647601544857025, 0.014108927920460701, 0.02221129834651947, -0.008761364035308361, 0.042802125215530396, 0.020623235031962395, -0.03578006848692894, 0.038524072617292404, 0.04507078602910042, 0.000925020663999021, 0.025301003828644753, -0.017101403325796127, -0.029319778084754944, -0.05790494382381439, 0.007762071210891008, -0.010354829952120781, -0.0038027127739042044, -0.05055879428982735, 0.0006775607471354306, 0.010813964530825615, 0.015740206465125084, 0.022621819749474525, 0.01052768062800169, 0.02194122038781643, -0.0025752035435289145, 0.010122561827301979, 0.025603491812944412, -0.04459545016288757, -0.012445241212844849, 0.008026748895645142, -0.02021271362900734, -0.030054394155740738, -0.011278499849140644, 0.0058823213912546635, -0.023291615769267082, 0.02225451171398163, -0.020396368578076363, -0.004350973293185234, -0.0012828754261136055, 0.04895992577075958, -0.0024725734256207943, -0.0375950001180172, 0.002517136512324214, -0.002825026633217931, 0.0199426356703043, -0.02393980510532856, 0.014962377957999706, 0.014162943698465824, 0.04468187317252159, 0.00939334835857153, 0.005466399248689413, -0.03191253915429115, 0.007394763641059399, -0.03024885058403015, 0.006481896620243788, -0.03126434609293938, 0.0134067228063941, -0.005425887648016214, 0.010241396725177765, -0.011024625971913338, -0.02342125214636326, 0.0027534556575119495, 0.009004434570670128, 0.004631855059415102, 0.003929649945348501, -0.0007312389789149165, 0.014162943698465824, -0.020936526358127594, 0.016334379091858864, 0.014886755496263504, -0.0059147304855287075, 0.03314409777522087, -0.02597079984843731, 0.02713754028081894, -0.005995754152536392, 0.015783417969942093, 0.04926241561770439, 0.012088737450540066, 0.016237150877714157, 0.06710923463106155, -0.061275530606508255, -0.017965657636523247, -0.02852034568786621, 0.020569218322634697, -0.013525557704269886, 0.025192972272634506, -0.0017244545742869377, 0.011505366303026676, -0.013503951020538807, -0.008620922453701496, 0.006017360836267471, 0.002357789780944586, 0.01704738847911358, 0.01414133794605732, -0.007805283647030592, -0.003646066877990961, 0.005196320358663797, -0.03269036486744881, -0.02105536125600338, 0.017684774473309517, -0.01960773766040802, -0.00038655061507597566, 0.015286472626030445, -0.04433617368340492, 0.018289752304553986, -0.009911900386214256, -0.027267178520560265, -0.009128671139478683, -0.04554612562060356, 0.012639698572456837, 0.0068654087372124195, 0.008809978142380714, 0.005957943387329578, -0.02826106920838356, 0.022384149953722954, 0.022060055285692215, -0.0065629202872514725, -0.008966623805463314, 0.004404989071190357, -0.01876509003341198, 0.0375950001180172, 0.0077026537619531155, 0.06607213616371155, -0.03478617966175079, -0.005693265702575445, 0.021282227709889412, 0.0031572238076478243, -0.035045456141233444, -0.010230593383312225, 0.010651917196810246, -0.01960773766040802, 0.030940253287553787, -0.005601439159363508, 0.02447996288537979, 0.02073126658797264, 0.019823800772428513, 0.008701946586370468, 0.019456492736935616, 0.0007616228540427983, 0.030054394155740738, 0.028153037652373314, -0.0004763518809340894, 0.023723741993308067, 0.0013213616330176592, 0.012553272768855095, -0.024112654849886894, -0.041116829961538315, -0.021833188831806183, -0.025020120665431023, 0.007410968653857708, -0.004372579511255026, 0.007481188978999853, 0.011872674338519573, 0.01789003424346447, -0.02131463587284088, 0.0036136573180556297, 0.013169053010642529, -0.01613992266356945, -0.021854795515537262, -0.011159664951264858, 0.01761995628476143, -0.00048411666648462415, -0.0038081142120063305, -0.0021903410088270903, -0.015048802830278873, 0.010127963498234749, -0.007724259980022907, 0.037378937005996704, -0.041959475725889206, -0.062399059534072876, 0.02158471569418907, -0.0009270462323911488, 0.024760844185948372, 0.004499516449868679, -0.008118575438857079, -0.015934662893414497, -0.004383382387459278, -0.027245571836829185, -0.0016326276818290353, -0.013633589260280132, -0.00836164690554142, 0.005190918687731028, -0.01591305620968342, 0.0077026537619531155, -0.04010133445262909, -0.020050667226314545, 0.03264715149998665, -0.004715579561889172, 0.04468187317252159, 0.0013645743019878864, -0.027915367856621742, -0.023183584213256836, -0.018905531615018845, -0.01675570197403431, 0.0031383181922137737, -0.041678596287965775, 0.0025225381832569838, 0.03148041293025017, -0.021239014342427254, 0.04007972776889801, -0.012434437870979309, -0.001700147520750761, -0.028628377243876457, 6.321537512121722e-05, 0.028109824284911156, 0.03221502527594566, -0.0036730747669935226, -0.01790083758533001, -0.005531218368560076, 0.011937492527067661, 0.009706640616059303, -0.010819366201758385, 0.00705986563116312, -0.012391225434839725, -0.02110937610268593, -0.026014011353254318, 0.04178662598133087, 0.016031891107559204, -0.006595329847186804, -0.025776341557502747, 0.0035191297065466642, -7.832291885279119e-05, -0.005352966487407684, -0.03234466537833214, -0.03033527545630932, 0.008642529137432575, 0.003775704884901643, -0.010608703829348087, 0.013352707028388977, 0.015459323301911354, -0.01154857873916626, -0.01444382593035698, -0.01698256842792034, 0.010813964530825615, 0.013633589260280132, -0.030054394155740738, -0.01139733474701643, 0.006552116945385933, 0.05587394908070564, -0.030659370124340057, 0.00534486398100853, 0.0044725085608661175, 0.03370586410164833, -0.013622785918414593, 0.016496427357196808, -0.000916243065148592, -0.020353155210614204, -0.005531218368560076, -0.012002311646938324, 0.05302191525697708, 0.005431289318948984, -0.02424229308962822, -0.010041537694633007, 0.027828942984342575, 0.0058823213912546635, 0.03381389379501343, -0.012196769006550312, -0.0019675258081406355, -0.01611831597983837, 0.004107901826500893, -0.022448968142271042, 0.011699823662638664, -0.0014071117620915174, -0.006633141078054905, 0.00027784379199147224, -0.00041018251795321703, -0.036514684557914734, 0.012229178100824356, -0.01643160730600357, -0.018106097355484962, 0.013071824796497822, 0.023702135309576988, 0.0033219719771295786, -0.004648060072213411, -0.004856020677834749, -0.017436301335692406, -0.006643943954259157, -0.0034570114221423864, 0.015751007944345474, 0.0026683807373046875, 0.025041727349162102, -0.02709432691335678, -0.015448519960045815, 0.010192782618105412, -0.013061021454632282, 0.00865873321890831, -0.004464406054466963, 0.009522986598312855, -0.0024685224052518606, -0.0017068994930014014, -0.03001118078827858, -0.001612371765077114, -0.035023849457502365, -0.04666965454816818, -0.006897818297147751, 0.018883924931287766, 0.0044130911119282246, 0.018073689192533493, -0.0020404469687491655, 0.0032004364766180515, 0.021833188831806183, 0.007140889298170805, -0.0092421043664217, -0.010181979276239872, -0.013115037232637405, -0.03699002414941788, -0.049521688371896744, 0.009360939264297485, -0.0028520345222204924, -0.03714126721024513, 0.0003868881904054433, -0.015956269577145576, 0.04005812108516693, -0.013320297934114933, 0.009252907708287239, -0.025754736736416817, -0.020007453858852386, -0.050947707146406174, 0.01355796679854393, -0.01698256842792034, -0.007405566982924938, -0.004923540633171797, 0.041354499757289886, 0.0010377786820754409, -0.0008649280644021928, 0.03714126721024513, -0.0023118765093386173, -0.037076447159051895, -0.0014867850113660097, -0.037659820169210434, 0.013676801696419716, -0.01992102898657322, 0.013957683928310871, -0.006584526505321264, 0.00016187861911021173, -0.011429744772613049, 0.02536582201719284, -0.016064301133155823, 0.022027645260095596, -0.0061848098412156105, -0.00938254501670599, -0.05276263877749443, -0.017976459115743637, -0.022103266790509224, 0.014811133965849876, -0.02944941632449627, 0.000913542287889868, 0.03148041293025017, -2.624830449349247e-05, 0.02133624255657196, 0.01789003424346447, -0.02398301661014557, 0.007918717339634895, 0.004021476488560438, -0.00222950242459774, 0.009987521916627884, -0.017782002687454224, 0.009874089621007442, -0.04524363949894905, -0.0027196956798434258, 0.031005071476101875, -0.0006920775049366057, -0.015405307523906231, 0.014649086631834507, -0.027267178520560265, -0.0268134456127882, -0.005698667373508215, -0.01929444633424282, -0.012218374758958817, -0.03774624317884445, -0.03232305869460106, -0.03716287389397621, -0.003303066361695528, -0.008966623805463314, 0.005226029083132744, -0.02908211015164852, 0.015048802830278873, -0.005995754152536392, 0.04100880026817322, 0.006914022844284773, -0.02168194390833378, -0.031199529767036438, -0.012164358980953693, -0.004026878159493208, -0.0034948226530104876, 0.02105536125600338, 0.008620922453701496, 0.041376106441020966, -0.008572308346629143, -0.009139474481344223, -0.023270009085536003, 0.04388244077563286, -0.01821412891149521, -0.0093987500295043, -0.026705414056777954, -0.0364498645067215, -0.016820522025227547, -0.022146480157971382, -0.00997131783515215, -0.004742587450891733, 0.0053664701990783215, -0.007486590649932623, -0.028174644336104393, -0.006654747296124697, -0.00921509601175785, 0.0062766363844275475, -0.028066612780094147, -0.016021087765693665, 0.012499256990849972, 0.0013233872596174479, 0.00010971960728056729, 0.003935051616281271, 0.00921509601175785, 0.007319141644984484, 0.006778983399271965, -0.019445689395070076, 0.028736408799886703, -0.01727425493299961, 6.97563446010463e-05, 0.021206604316830635, -0.011046231724321842, 0.0013841550098732114, -0.010133365169167519, 0.011429744772613049, 0.024328717961907387, 0.030508127063512802, 0.007281330414116383, 0.045157212764024734, 0.016031891107559204, -0.00016213180788327008, 0.009431159123778343, -0.0026062626857310534, -0.013795636594295502, 0.04762033373117447, 0.015243260189890862, -0.005920132156461477, 0.02305394597351551, 0.010743743740022182, -0.03208538889884949, 0.009890293702483177, 0.005644651595503092, 0.015092016197741032, -0.023464465513825417, -0.0015610568225383759, -0.01677730865776539, -0.039928484708070755, 0.018343767151236534, -0.02368052862584591, 0.012661304324865341, 0.016096709296107292, -0.0038081142120063305, 0.0038189173210412264, 0.03718448057770729, -0.011051633395254612, -0.009188088588416576, -0.048311736434698105, -0.0004702750884462148, 0.022146480157971382, -0.01966175250709057, -0.02218969352543354, -0.003062696196138859, -0.006924826186150312, -0.0066601489670574665, -0.0004976206109859049, 0.016042694449424744, 0.033079277724027634, -0.008934213779866695, 0.005155808757990599, -0.00525573780760169, 0.03264715149998665, -0.03173968568444252, -0.009296120144426823, 0.015156835317611694, 0.007540606427937746, -0.03511027246713638, -0.00921509601175785, 0.004799304064363241, -0.014260172843933105, 0.03662271425127983, 0.012888170778751373, 0.021757565438747406, 0.005763486493378878, 0.008577710017561913, 0.0032760584726929665, -0.016852932050824165, 0.011170468293130398, 0.033252131193876266, 0.012358816340565681, -0.003116711974143982, -0.014508645050227642, -0.0010195482755079865, 0.035326335579156876, -0.007745866663753986, -0.020688053220510483, 0.0018351869657635689, 0.022621819749474525, 0.006449487060308456, -0.035931315273046494, 0.017403893172740936, -0.006411675829440355, 0.005242234095931053, 0.00705986563116312, -0.007978134788572788, -0.047447483986616135, 0.012391225434839725, -0.02218969352543354, 0.011721429415047169, -0.019445689395070076, -0.002030994277447462, 0.005215226206928492, 0.00649810116738081], [0.0038108802400529385, 0.029964033514261246, 0.03397376462817192, 0.030443457886576653, -0.05247519537806511, -0.00785602442920208, -0.005769438575953245, 0.005123849958181381, 0.00871136225759983, 0.017204802483320236, 0.0020484502892941236, 0.012050990015268326, -0.00870591402053833, -0.043387919664382935, -0.02052808739244938, 0.03488903120160103, -0.012050990015268326, 0.060538243502378464, -0.006510367151349783, -0.018305299803614616, -0.016082514077425003, 0.03787453845143318, -0.006292446982115507, 0.03445319086313248, -0.008280969224870205, -0.012737438082695007, 0.011604253202676773, -0.0109940767288208, -0.0029936793725937605, -0.017553476616740227, 0.06058182939887047, -0.010106051340699196, 0.0405549593269825, -0.005339046008884907, 0.0642428919672966, 0.03948714956641197, -0.06908071786165237, -0.004783349577337503, 0.0019204221898689866, -0.008651433512568474, -0.06058182939887047, 0.03650164231657982, -0.010127843357622623, 0.01372897531837225, -0.037896331399679184, 0.06999598443508148, 0.022423993796110153, 0.006553951185196638, -0.0007777028949931264, 0.041622765362262726, -0.011440812610089779, -0.015570401214063168, 0.003669232130050659, 0.04894488677382469, 0.08259177207946777, 0.02848217636346817, 0.022532952949404716, 0.0019258701940998435, -0.010699884034693241, -0.013870623894035816, -0.04343150556087494, 0.03277520462870598, -0.03059600293636322, -0.0029364752117544413, 0.013445679098367691, -0.0031217075884342194, 0.012105469591915607, 0.01190934143960476, -0.022772666066884995, 0.010563683696091175, 0.011756797321140766, -0.005167433992028236, -0.03135872259736061, -0.042298320680856705, -0.018632180988788605, 0.008863906376063824, 0.03656701743602753, 0.01791304349899292, 0.009926266968250275, 9.031772788148373e-05, -0.028612928465008736, 0.015112768858671188, -0.009092722088098526, 0.0219554640352726, 0.006014598999172449, 0.012672062031924725, -0.011658732779324055, 0.002454326720908284, -0.05940505862236023, 0.0002582695451565087, 0.03432243689894676, 0.03693748265504837, 0.029942242428660393, 0.05273669958114624, 0.014709617011249065, -0.004091452807188034, 0.01952565461397171, -0.01723749190568924, -0.0122580137103796, 0.06781677901744843, 0.011462604627013206, 0.025039035826921463, 0.06559399515390396, 0.01115751639008522, 0.04619909077882767, -0.07448513805866241, -0.045501746237277985, 0.037656620144844055, 0.03286237269639969, -0.014731409028172493, 0.013369407504796982, 0.01604982651770115, -0.047201525419950485, 0.011168412864208221, 0.012911774218082428, 0.0064613353461027145, 0.019373109564185143, -0.01977626234292984, 0.06263028085231781, -0.027654079720377922, -0.03737332299351692, 0.008858458139002323, 0.00886935368180275, -0.09501322358846664, -0.006695599760860205, 0.01834888383746147, -0.004889585543423891, -0.003236115677282214, -0.004257616586983204, 0.002143790479749441, -0.012236221693456173, -0.0073657045140862465, 0.03508516028523445, -0.0320996530354023, -0.006248862948268652, -0.017368244007229805, 0.026477308943867683, -0.0030481594149023294, -0.029811490327119827, -0.022358616814017296, -0.011887549422681332, -0.006940759718418121, -0.01723749190568924, 0.006374167278409004, -0.10381720215082169, -0.03868084400892258, 0.030029410496354103, 0.07561832666397095, 0.016540147364139557, -0.045850418508052826, -0.023644346743822098, 0.04859621450304985, -0.030813923105597496, 0.06541965901851654, -0.0028901672922074795, -0.012399662286043167, -0.026150429621338844, 0.04404168203473091, -0.005559690296649933, 0.0012652993900701404, -0.04251623898744583, -0.034605734050273895, 0.03626192733645439, -0.0037019201554358006, 0.04125230386853218, 0.020920343697071075, -0.02510441280901432, 0.01757526770234108, -0.029288481920957565, -0.03844113275408745, -0.030378082767128944, -0.02264191396534443, -0.03395197540521622, -0.013935999944806099, -0.02957177720963955, -0.01598444953560829, 0.006145351100713015, 0.002033468335866928, 0.025671005249023438, -0.057007934898138046, 0.008722257800400257, -0.01952565461397171, -0.04493515565991402, -0.03624013811349869, -0.028460383415222168, 0.02434169128537178, 0.012497725896537304, 0.02095303125679493, -0.028089920058846474, 0.029266688972711563, -0.010078811086714268, 0.016344018280506134, 0.007485560607165098, -0.010296731255948544, -0.03911668434739113, -0.007076960057020187, -0.009070930071175098, 0.0012421454302966595, -0.009272506460547447, 0.02983328141272068, 0.0122580137103796, -0.0591871403157711, -0.006412303075194359, 0.028264256194233894, -0.07513890415430069, -0.0015635777963325381, 0.02704390324652195, -0.014731409028172493, 0.03192531690001488, 0.009550354443490505, 0.004083280451595783, -0.0658554956316948, -0.027654079720377922, -0.00399066461250186, -0.01509097684174776, -0.02305596135556698, 0.005938326474279165, 0.04340971261262894, -0.02147603966295719, 0.022206073626875877, 0.02340463362634182, -0.025213371962308884, 0.007910504937171936, 0.013445679098367691, -0.01655104197561741, 0.03447498381137848, 0.014241088181734085, -0.023731514811515808, 0.0033232837449759245, -0.07152142375707626, -0.024559611454606056, 0.03318925201892853, -0.0015172697603702545, -0.018130963668227196, 0.029680738225579262, 0.01262847799807787, 0.0026068708393722773, 0.004682561382651329, 0.012454141862690449, -0.0007593158516101539, 0.008286417461931705, 0.034366022795438766, -0.02804633602499962, -0.04131767898797989, -0.005747646559029818, 0.0030590554233640432, -0.03979223594069481, 0.0054589021019637585, 0.035782504826784134, 0.032491907477378845, -0.03432243689894676, 0.00199533230625093, 0.02804633602499962, -0.007158679887652397, 0.029288481920957565, 0.007447424344718456, 0.02948460914194584, -0.02610684558749199, 0.037395115941762924, -0.025801757350564003, 0.016616418957710266, -0.015069184824824333, -0.00989357940852642, 0.033167462795972824, -0.07548757642507553, 0.014851264655590057, 0.05731302499771118, -0.10686808824539185, -0.026673438027501106, 0.04785528779029846, -0.08302761614322662, 0.020408231765031815, -0.018392467871308327, 0.010165979154407978, 0.017880355939269066, 0.017281075939536095, 0.01014418713748455, -0.03582608699798584, 0.04772453382611275, 0.005535174161195755, -0.02248936891555786, -0.032056067138910294, 0.03345075622200966, -0.028787264600396156, 0.017357347533106804, 0.0011542963329702616, -0.016452979296445847, -0.005009441636502743, -0.00722405593842268, 0.06188935041427612, -0.011571564711630344, -0.0363273061811924, -0.052170105278491974, 0.012061885558068752, 0.017106739804148674, 0.031642019748687744, -0.002849307144060731, -0.010955940000712872, 0.007752512581646442, -0.0053335982374846935, -0.03364688530564308, 0.03678493574261665, -0.028002751991152763, 0.02601967751979828, -0.02357896976172924, 0.002307230606675148, -0.009087273851037025, 0.012922670692205429, 0.02112736739218235, -0.006216174922883511, -0.02525695599615574, 0.009011002257466316, -0.021508729085326195, -0.028024543076753616, -0.026433724910020828, -0.005499762017279863, -0.008487993851304054, -0.00022847576474305242, -0.011800381354987621, 0.0012244393583387136, 0.0036447159945964813, 0.02739257551729679, 0.038005292415618896, -0.011582461185753345, -0.009365122765302658, 0.012366973794996738, 0.025147996842861176, 0.00503123365342617, -0.04016270115971565, 0.03192531690001488, -0.0066683595068752766, 0.025060828775167465, -0.0011066262377426028, -0.016333121806383133, -0.009392363019287586, -0.0007565918494947255, -0.009474082849919796, 0.03863725811243057, -0.014143023639917374, -0.02915772795677185, -0.029288481920957565, -0.02536591701209545, 0.03983582183718681, -0.032143235206604004, 0.01364180725067854, 0.037896331399679184, 0.03846292197704315, 0.05526457354426384, -0.002734899055212736, 0.035629961639642715, 0.012933566235005856, -0.013707183301448822, 0.007714376784861088, 0.022075321525335312, -0.0726546123623848, 0.017531683668494225, -0.010116947814822197, -0.02586713247001171, -0.014731409028172493, -0.009463186375796795, -0.04079467058181763, -0.013783455826342106, 0.03872442618012428, 0.07287252694368362, -0.015396065078675747, 0.026934942230582237, 0.014774993062019348, -0.01673627458512783, 0.05735660716891289, 0.00737115228548646, 0.012606685981154442, -0.012824606150388718, -0.03902951627969742, -0.015603089705109596, -0.024385275319218636, -0.0065866392105817795, 0.022707289084792137, -0.008449857123196125, -0.02206442505121231, 0.003184359520673752, 0.06633492559194565, 0.028525760397315025, 0.025671005249023438, 0.022086216136813164, 0.05870771408081055, 0.027240030467510223, -0.06807828694581985, 0.0010603182017803192, 0.04133947193622589, 0.012094574049115181, -0.014818577095866203, 0.02264191396534443, -0.028438592329621315, -0.028351424261927605, -0.02307775430381298, 0.0037591243162751198, 0.05709510296583176, 0.014328256249427795, -0.0023644347675144672, -0.017945732921361923, 0.024733947589993477, -0.035477414727211, -0.025540253147482872, -0.08725526928901672, -0.0015826458111405373, -0.007431080564856529, 0.029288481920957565, -0.020048663020133972, 0.006281550973653793, -0.00959393847733736, 0.058359041810035706, -0.04384555295109749, 0.030552418902516365, -0.02933206595480442, 0.019035333767533302, -0.01672537811100483, -0.001721569919027388, 0.04877055063843727, -0.01885010115802288, -0.022881625220179558, 0.04938072711229324, 0.057836033403873444, -0.021269015967845917, 0.033341798931360245, -0.011658732779324055, 0.008929282426834106, 0.012181742116808891, 0.01127737294882536, 0.03735153004527092, -0.04269057512283325, -0.03961789980530739, 0.002740347059443593, 0.01866486854851246, 0.060712579637765884, -0.0035738919395953417, -0.045588914304971695, 0.007899608463048935, -0.024646779522299767, -0.006346927024424076, -0.009926266968250275, -0.04929355904459953, -0.006957103963941336, -0.019656406715512276, 0.03170739486813545, -0.02179202437400818, -0.0034567599650472403, -0.006161694880574942, -0.027523327618837357, -0.002161496551707387, -0.0012578084133565426, 0.011669629253447056, -0.011429917067289352, -0.04362763464450836, -0.009359674528241158, -0.03913847729563713, -0.0028329631313681602, -0.005687718279659748, -0.05984089896082878, 0.041186925023794174, -0.039944782853126526, 0.04641701281070709, 0.05622342228889465, 0.03981402888894081, 0.04606834053993225, 0.05103692039847374, 0.04024986922740936, -0.009359674528241158, -0.0027144690975546837, -0.05434931069612503, -0.009321538731455803, -0.009457739070057869, -0.0018305301200598478, 0.01597355492413044, 0.006564847193658352, -0.017259282991290092, -0.0057204063050448895, -0.02290341816842556, -0.008346345275640488, -0.0523880273103714, -0.02475574053823948, -0.014731409028172493, 0.052344441413879395, -0.02077869512140751, -0.01995059847831726, 0.05317253991961479, 0.023949434980750084, 0.003364143893122673, -0.003083571558818221, -0.02012493461370468, -0.026913151144981384, -0.015145457349717617, -0.022598329931497574, 0.017880355939269066, -0.007599968463182449, -0.04489156976342201, -0.008095737546682358, -0.025496669113636017, 0.005633238237351179, 0.07130350172519684, -0.014382735826075077, -0.003350523766130209, 0.009414155036211014, 0.02469036355614662, -0.013042526319622993, 0.03996657207608223, -0.012181742116808891, 0.00030270483694039285, 0.054392892867326736, -0.007104199845343828, -0.006090871058404446, -0.022009944543242455, -0.016038930043578148, 0.012366973794996738, -0.03009478561580181, -0.0013715355889871716, -0.021824711933732033, -0.009534010663628578, 0.02798095904290676, 0.013456575572490692, 0.01747720316052437, 0.01985253393650055, 0.007283984217792749, -0.027000319212675095, -0.060886915773153305, -0.03573891893029213, 0.0023045064881443977, -0.025627421215176582, 0.007071511819958687, 0.018229028210043907, 0.008509785868227482, 0.01052554789930582, -0.037395115941762924, -0.010492859408259392, 0.02408018708229065, 0.02983328141272068, 0.0024066567420959473, 0.002586440881714225, -0.014567968435585499, -0.007790648844093084, 0.004121416714042425, -0.008139321580529213, -0.03979223594069481, 0.004192240536212921, 0.006477679125964642, 0.023796889930963516, 0.014219296164810658, -0.001318417489528656, 0.01262847799807787, 0.004720697179436684, 0.012334286235272884, 0.04707077145576477, 0.004151380620896816, 0.03270982950925827, 0.021563207730650902, 0.009920818731188774, -0.02299058623611927, 0.06101766973733902, 0.007599968463182449, 0.015145457349717617, 0.008645986206829548, 0.020321063697338104, 0.01952565461397171, -0.017379140481352806, -0.025736380368471146, -0.012846398167312145, 0.054959487169981, -0.010852428153157234, -0.027654079720377922, 0.03650164231657982, 0.002722640987485647, -0.009441394358873367, 0.027654079720377922, -0.0025905268266797066, 0.027152862399816513, 0.030487041920423508, 0.02349180169403553, 0.04920639097690582, -0.02636834979057312, -0.024036603048443794, -0.00153225171379745, 0.0031053635757416487, -0.0021029303316026926, -0.01731376349925995, -0.05003448948264122, 0.002862927271053195, 0.010405691340565681, -0.004927721340209246, -0.02248936891555786, 0.011854860931634903, 0.018610389903187752, 0.004854173399507999, -0.01740093156695366, -0.0036828522570431232, -0.008379033766686916, 0.017379140481352806, 0.037830956280231476, -0.033843014389276505, 0.013532847166061401, -0.004091452807188034, 0.06376346200704575, 0.004786073230206966, -0.016518354415893555, -0.0069843437522649765, -0.0005975781823508441, 0.013511055149137974, -0.00933788251131773, 0.016583731397986412, -0.013347615487873554, 0.03831037878990173, 0.02305596135556698, 0.05121125653386116, -0.014077647589147091, 0.0022418545559048653, -0.012029197998344898, -0.005584206432104111, -0.00980641134083271, -0.04443393647670746, -0.026673438027501106, -0.02399301901459694, -0.022794457152485847, 0.004129588603973389, 0.012094574049115181, 0.008853009901940823, -0.03188173100352287, 0.018806517124176025, 0.005445281974971294, -0.010748916305601597, -0.005398974288254976, -0.009245266206562519, 4.830849138670601e-05, -0.0022132524754852057, 0.060712579637765884, -0.03168560191988945, 0.027697663754224777, -0.00760541670024395, -0.02172664925456047, -0.008809425868093967, -0.009239817969501019, 0.02416735514998436, -0.0245160274207592, 0.01300983875989914, -0.007556384429335594, 0.00046784753794781864, -0.037220779806375504, 0.04351867362856865, 0.005731302313506603, 0.002808447228744626, -0.011604253202676773, 0.028286047279834747, -0.003478551981970668, 0.010552788153290749, -0.022380409762263298, 0.021519623696804047, -0.012868190184235573, 0.003840844379737973, -0.01782587543129921, -0.06245594099164009, 0.05779244750738144, 0.029528193175792694, -0.0005740836495533586, -0.0035984080750495195, 0.005660478491336107, -0.02780662290751934, -0.0287436805665493, 0.003838120261207223, 0.029005184769630432, 0.021421561017632484, -0.012661166489124298, -0.008602401241660118, -0.01005701906979084, -0.0405549593269825, -0.03159843385219574, 0.0008090289193205535, -0.01801110804080963, 0.010503755882382393, 0.016867026686668396, -0.027327198535203934, 0.005889294669032097, 0.0069679999724030495, 0.05417497456073761, 0.0010555512271821499, -0.029201313853263855, -0.01208367757499218, 0.016365811228752136, 0.0032143236603587866, 0.00635782303288579, 0.001988522242754698, -0.011942029930651188, 0.013031630776822567, -0.0011931133922189474, 0.010923252440989017, 0.029615361243486404, -0.042712368071079254, -0.0021751164458692074, 0.010209563188254833, 0.03591325506567955, 0.03541203960776329, -0.003083571558818221, -0.01918787695467472, -0.004862345289438963, -0.007251296192407608, 0.012966254726052284, -0.00933788251131773, -0.07396212965250015, -0.018218131735920906, -0.007251296192407608, 0.017019571736454964, 0.016104307025671005, 0.018436051905155182, 0.005758542567491531, -0.006891727913171053, -0.013140590861439705, -0.01051465142518282, -0.013042526319622993, -0.05020882561802864, 0.039857614785432816, -0.02469036355614662, -0.028460383415222168, 0.036218345165252686, -0.0032197716645896435, -0.010460171848535538, 0.027000319212675095, -0.02813350409269333, -0.06568115949630737, 0.014393632300198078, 0.01851232536137104, -0.008814874105155468, -0.016507457941770554, -0.005371734034270048, 0.02992044948041439, 0.006978895980864763, 0.004698905162513256, 0.02959357015788555, -0.005736750550568104, 0.013456575572490692, 0.0037264362908899784, -0.019427590072155, -0.006167143117636442, 0.016888819634914398, 0.0051292977295815945, 0.012955358251929283, -0.020909447222948074, 0.01598444953560829, -0.04011911898851395, -0.006548503413796425, 0.016965091228485107, 0.00047227402683347464, 0.002794827101752162, -0.003723712172359228, -0.001898630172945559, 0.017117634415626526, 0.0050748176872730255, -0.017041362822055817, -0.036545224487781525, 0.03920385241508484, 0.017204802483320236, 0.005249153822660446, 0.005134745966643095, 0.01255220640450716, -0.02231503278017044, -0.011440812610089779, 0.005001269746571779, 0.021421561017632484, 0.02798095904290676, -0.007616312708705664, -0.04194964841008186, -0.025540253147482872, 0.004404712934046984, 0.01663821004331112, -0.028155295178294182, 0.033777639269828796, -0.012617582455277443, 0.032230403274297714, 0.04428139328956604, 0.01791304349899292, 0.036959271878004074, -0.0006595492595806718, -0.022020841017365456, -0.0017542579444125295, -0.032317571341991425, -0.013456575572490692, -0.010825187899172306, 0.00705516804009676, 0.005170157644897699, -0.026825983077287674, 0.020495399832725525, -0.010454723611474037, 0.011942029930651188, -0.01673627458512783, 0.02501724474132061, -0.008558817207813263, 0.009490426629781723, 0.008133873343467712, -0.033930182456970215, 0.0076980325393378735, -0.01733555644750595, -0.0003779554390348494, -0.026237597689032555, 0.008689570240676403, 0.023796889930963516, 0.0009098169975914061, 0.007267639972269535, -0.022336825728416443, 0.013456575572490692, 0.03260086849331856, -0.006657463498413563, -0.01234518177807331, 0.007480112370103598, 0.022097112610936165, -0.030552418902516365, 0.01976536586880684, 0.0008328639669343829, 0.034017350524663925, 0.010089707560837269, 0.03458394482731819, -0.036283720284700394, -0.004510948900133371, 0.01826171576976776, -0.025409501045942307, -0.02898339182138443, -8.693400559423026e-06, -0.01621326617896557, 0.03608759120106697, 0.015701154246926308, 0.04042420536279678, 0.04218935966491699, -0.016856130212545395, 0.03323283791542053, 0.02730540744960308, -0.021781127899885178, 0.00361202796921134, 0.02442885935306549, 0.018959062173962593, -0.016605522483587265, -0.0030617795418947935, 0.03144589066505432, -0.0219881534576416, 0.025583837181329727, 0.019471174106001854, 0.011669629253447056, 0.053782716393470764, -0.02096392773091793, -0.022249657660722733, 0.03262266144156456, -0.01851232536137104, 0.016442082822322845, 0.03338538110256195, -0.058446209877729416, -0.051080506294965744, 0.026673438027501106, -0.032840579748153687, 0.021933672949671745, -0.03238295018672943, 0.016104307025671005, -0.008923834189772606, -0.034605734050273895, 0.01765153929591179, 0.028852639719843864, -0.03255728632211685, 0.0010262681171298027, -0.00015467229241039604, 0.007022480014711618, -0.016594626009464264, 0.01217084564268589, 0.009790066629648209, 0.013282239437103271, 0.030356289818882942, -0.0219772569835186, -0.03345075622200966, -0.0043611289002001286, 0.06180218234658241, 0.005461626220494509, 0.041709933429956436, -0.012508622370660305, -0.012988046742975712, 0.0011971993371844292, 0.010781603865325451, 0.015690257772803307, 0.017542580142617226, -0.00832455325871706, 0.010830636136233807, -0.018272612243890762, 0.01800021156668663, 0.038332171738147736, -0.025976093485951424, -0.010422036051750183, 0.0054970383644104, 0.019798053428530693, 0.01833798922598362, -0.01064540445804596, 0.005616894457489252, -0.0012305683922022581, 0.001818272052332759, 0.020070454105734825, -0.011342748999595642, 0.0008934729848988354, 0.01842515729367733, -0.02272908203303814, -0.011571564711630344, 0.004042420536279678, -0.012214429676532745, 0.009948058985173702, -0.06611700356006622, 0.027152862399816513, -0.018784726038575172, 0.0016439358005300164, 0.003184359520673752, -0.014241088181734085, -0.006602983456104994, -0.02299058623611927, -0.033581510186195374, 0.008215593174099922, -0.0261940136551857, -0.010656300000846386, 0.04506590589880943, 0.014622448943555355, -0.04519665986299515, 0.03796170651912689, 0.012922670692205429, 0.026760606095194817, 0.026825983077287674, -0.0016275917878374457, -0.02737078256905079, -0.011833068914711475, -0.018871894106268883, 0.01554860919713974, -0.01335851103067398, -0.009446842595934868, -0.009005554020404816, -0.03711181879043579, 0.005676822271198034, 0.01918787695467472, 0.010792500339448452, 0.0010569131700322032, 0.01444811187684536, 0.019972391426563263, -0.024450652301311493, 0.016703587025403976, 0.025976093485951424, -0.025736380368471146, 0.04920639097690582, -0.03558637574315071, -0.022859834134578705, -0.013249550946056843, -0.01631133072078228, -0.028939807787537575, -0.0018114619888365269, -0.03310208395123482, 0.011097588576376438, 0.015047392807900906, -0.02939744107425213, -0.011266476474702358, 0.02138887159526348, -0.013205966912209988, 0.04399809613823891, 0.010966836474835873, 0.04269057512283325, -0.038332171738147736, 0.0004484390083234757, -0.030792130157351494, 0.012530414387583733, 0.018806517124176025, 0.01765153929591179, -0.047463029623031616, 0.0274579506367445, 0.021258119493722916, -3.805091910180636e-05, -0.039508938789367676, 0.012127261608839035, 0.011429917067289352, -0.011822173371911049, -0.031140802428126335, 0.05705152079463005, 0.04698360338807106, 0.007033376023173332, 0.013369407504796982, -0.022794457152485847, 0.00502850953489542, 0.009637522511184216, 0.011097588576376438, -0.005709510296583176, 0.0034022799227386713, 0.01842515729367733, 0.03759124130010605, -0.016267746686935425, -0.013718079775571823, 0.01926415041089058, -0.015940865501761436, 0.0031271555926650763, 0.016758067533373833, 0.00849344115704298, 0.030988259240984917, 0.03277520462870598, -0.015853697434067726, 0.03430064767599106, 0.015189041383564472, 0.03135872259736061, -0.011952925473451614, -0.003410451812669635, 0.01859949342906475, 0.0042085847817361355, 0.0363490954041481, 0.03438781574368477, 0.013881519436836243, 0.023731514811515808, 0.013227758929133415, -0.016245953738689423, 0.015145457349717617, -0.03844113275408745, -0.07178293168544769, 0.04384555295109749, -0.005483418237417936, 0.004769729450345039, 0.013314926996827126, -0.028874432668089867, -0.03159843385219574, 0.006030942779034376, -0.02349180169403553, -0.008449857123196125, 0.017030466347932816, -0.018043795600533485, 0.022020841017365456, 0.007474664598703384, 0.00431209709495306, 0.01419750414788723, -0.028286047279834747, 0.021857401356101036, -0.0008614659891463816, -0.009566699154675007, 0.0028765471652150154, 0.016605522483587265, -0.012617582455277443, 0.03735153004527092, 0.02501724474132061, -0.009136306121945381, 0.02798095904290676, -0.0023766926024109125, -0.013598223216831684, -0.0232520904392004, 0.008477097377181053, 0.011854860931634903, -0.01427377574145794, -0.047375861555337906, 0.017520787194371223, 0.005823918618261814, -0.029724322259426117, 0.019885223358869553, 0.02086586318910122, 0.022750873118638992, 0.007845128886401653, -0.003448587842285633, 0.04798603802919388, -0.045414578169584274, -0.023644346743822098, -2.0302335542510264e-05, -0.012693854048848152, -0.0013245465233922005, -0.04277774319052696, -0.0035875120665878057, -0.013249550946056843, 0.013935999944806099, -0.036719560623168945, 0.002014400204643607, 0.01381614338606596, 0.0042930287308990955, -0.049555063247680664, -0.005483418237417936, -0.020168518647551537, 0.017444515600800514, -0.0016044378280639648, -0.0164747703820467, -0.000725946796592325, 0.0026259389705955982, 0.008776738308370113, 0.010563683696091175, -0.008645986206829548, -0.025387708097696304, -0.013151486404240131, 0.0030072994995862246, -0.015417857095599174, -0.030225537717342377, -0.002580992877483368, 0.024733947589993477, 0.016954194754362106, -0.011375436559319496, -0.00896196998655796, -0.0050748176872730255, -0.01858859695494175, 0.005137469619512558, -0.021345287561416626, -0.006831799633800983, 0.018359780311584473, -0.010972284711897373, 0.011495293118059635, 0.003459483850747347, -0.014851264655590057, 0.08250460773706436, 0.003971596248447895, 0.0287436805665493, -0.008515233173966408, 0.004273960832506418, 0.0219881534576416, 0.006406855303794146, -0.0164856668561697, 0.06629133969545364, -0.04184068739414215, -0.011658732779324055, -0.005044853780418634, 0.012704750522971153, -0.0052682217210531235, 0.028089920058846474, 0.02146514505147934, 0.019329525530338287, -0.01740093156695366, 0.0013190985191613436, -0.00777430459856987, -0.002435258822515607, 0.016888819634914398, 9.644673264119774e-05, 0.012922670692205429, -0.022968793287873268, -0.0012945825001224875, -0.043300751596689224, -0.01372897531837225, 0.007616312708705664, 0.0016916058957576752, 0.018359780311584473, 0.04299566522240639, 0.010127843357622623, 0.01107034832239151, -0.00038374392897821963, -0.026411933824419975, 0.040860045701265335, -0.014600656926631927, 0.028700096532702446, 0.002205080585554242, 0.006025495007634163, 0.0019313181983307004, -0.01579921692609787, 0.01800021156668663, 0.025300540030002594, 0.004717973526567221, -0.01663821004331112, 0.013293134979903698, -0.02399301901459694, 0.02381868287920952, -0.03321104496717453, 0.06616058945655823, -0.012301597744226456, -0.007708928547799587, 0.011037660762667656, 0.040772877633571625, -0.03220861405134201, 0.004603565204888582, 0.0177496038377285, -0.042385488748550415, 0.02375330589711666, 0.00016301455616485327, 0.03371226042509079, 0.0329931266605854, 0.013075214810669422, 0.007681688759475946, -0.005363562144339085, -0.002800275105983019, -0.015243520960211754, 0.02077869512140751, 0.0038190523628145456, 0.013827039860188961, -0.0346493199467659, 0.020549878478050232, -0.010574580170214176, -0.012519517913460732, -0.019133398309350014, -0.005627790465950966, 0.02264191396534443, -0.01327134296298027, 0.003271527588367462, 0.019798053428530693, 0.039596106857061386, -0.033755846321582794, -0.002753967186436057, 0.03009478561580181, 0.006123559083789587, -0.018294405192136765, -0.014578863978385925, 0.02221696823835373, 0.0583154559135437, 0.004124140832573175, -0.009773722849786282, 0.0016711759380996227, -0.008438961580395699, 0.017793187871575356, 0.020571671426296234, -0.06302253156900406, -0.02044091932475567, 0.01581011340022087, -0.014339151792228222, 0.034257061779499054, -0.003546651918441057, -0.03349434211850166, -0.013663599267601967, 0.004908653441816568, 0.01978715881705284, -0.002709021093323827, -0.030072994530200958, 0.0037155402824282646, -0.02628118172287941, 0.02425452321767807, -0.009185338392853737, -0.05112408846616745, -0.015341585502028465, 0.02756691165268421, -0.03669776767492294, 0.00030253457953222096, -0.0016085237730294466, -0.003187083639204502, -0.008008569478988647, 0.0009602110949344933, 0.0010439741890877485, 0.017215698957443237, 0.01262847799807787, 0.021824711933732033, 0.01428467221558094, -0.024210939183831215, 0.023687930777668953, 0.018828310072422028, -0.0067228395491838455, -0.03009478561580181, -0.013412991538643837, 0.003966148477047682, 0.0827661082148552, -0.012247118167579174, -0.0329495407640934, 0.009915371425449848, -0.005938326474279165, -0.024908283725380898, -0.024145564064383507, 0.007670792751014233, 0.024276316165924072, -0.01474230457097292, 8.478459494654089e-05, 0.03844113275408745, 0.023099545389413834, -0.01237787026911974, -0.04510949179530144, 0.005965566728264093, -0.0073657045140862465, -0.012595790438354015, -0.0052518779411911964, -0.03349434211850166, 0.006145351100713015, -0.005044853780418634, 0.0019612822216004133, 0.0025074449367821217, 0.0052818418480455875, -0.015189041383564472, -0.005960118491202593, -0.013805247843265533, 0.0062543111853301525, 0.016442082822322845, -0.03270982950925827, -0.03593504801392555, -0.014328256249427795, 0.03066137805581093, -0.04824754223227501, -0.00020447047427296638, -0.010220459662377834, 0.004126864485442638, 0.014894848689436913, 0.03327642008662224, 0.009098170325160027, -0.017607955262064934, 0.0061181108467280865, 0.007905056700110435, 0.01640939526259899, 0.04924997687339783, -0.002709021093323827, -0.022260552272200584, 0.025540253147482872, 0.027523327618837357, 0.036479849368333817, 0.009697451256215572, -0.003925288561731577, -0.036893896758556366, -0.021160054951906204, 0.015853697434067726, 0.02112736739218235, -0.04240727797150612, 0.022511161863803864, -0.014992913231253624, -0.0380270816385746, -0.043061040341854095, 0.010416587814688683, -0.0015499577857553959, -0.021269015967845917, 0.030901091173291206, 0.009272506460547447, 0.02314312942326069, 0.02686956711113453, -0.02392764389514923, -0.001758344005793333, 0.02686956711113453, 0.013772559352219105, -0.010067915543913841, 0.005148365627974272, 0.024951867759227753, -0.02206442505121231, -0.018141860142350197, 0.0012775574577972293, -0.03288416564464569, -0.010122395120561123, 0.011756797321140766, -0.014088544063270092, -0.0005914491484872997, 0.0016493838047608733, -0.009060034528374672, -0.02924489788711071, -0.04698360338807106, -0.03584787994623184, -0.031119011342525482, 0.02212980017066002, -0.036392681300640106, 0.014840369112789631, 0.004252168815582991, 0.012595790438354015, -0.022423993796110153, -0.0036229239776730537, -0.020179415121674538, -0.009980747476220131, -0.011086692102253437, -0.006020046770572662, -0.015657570213079453, -0.038245003670454025, -0.020179415121674538, -0.024210939183831215, 0.017281075939536095, -0.0038108802400529385, 0.03480186313390732, -0.03872442618012428, 0.02113826386630535, 0.0073112244717776775, -0.020059559494256973, -0.034692902117967606, -0.009136306121945381, -0.002563286805525422, -0.02628118172287941, 0.011113932356238365, 0.03403914347290993, 0.017814980819821358, -0.013870623894035816, 0.0202883742749691, -0.004034248646348715, -0.03445319086313248, 0.011146620847284794, -0.008656881749629974, 0.025583837181329727, -0.0011406763223931193, -0.0028356872498989105, -0.036806728690862656, -0.024864699691534042, 0.01886099763214588, 0.0015118217561393976, -0.011168412864208221, 0.03560816869139671, -0.005208293907344341, 0.01246503833681345, -0.02425452321767807, 0.0046062893234193325, -0.023034170269966125, 0.029462818056344986, -0.018904581665992737, -0.0013088834239169955, 0.031249763444066048, 0.007327568251639605, 0.02281625010073185, -0.004448296967893839, -0.04131767898797989, 0.01044382806867361, -0.014611552469432354, 0.02002687007188797, 0.03471469506621361, -0.0287218876183033, 0.017084946855902672, -0.029702529311180115, -0.018022004514932632, -0.011843965388834476, 0.00950677040964365, -0.026825983077287674, -0.02062615193426609, -0.013892415910959244, -0.022293241694569588, 0.015690257772803307, -0.023731514811515808, -0.02780662290751934, -0.030704962089657784, -0.005559690296649933, -0.06703227013349533, 0.030051201581954956, 0.005137469619512558, -0.008351793512701988, -0.01107579655945301, 0.034605734050273895, -0.0034404159523546696, 0.03576071187853813, 0.007894161157310009, 0.0006057501886971295, -0.00352758402004838, -0.042385488748550415, -0.012563101947307587, 0.006957103963941336, 0.008929282426834106, 0.031249763444066048, 0.04184068739414215, -0.019394902512431145, -0.006553951185196638, -0.025845341384410858, 0.024058395996689796, -0.019384006038308144, -0.002898339182138443, -0.020844072103500366, -0.04672209918498993, -0.03253549337387085, -0.002753967186436057, 0.006390511058270931, 0.020593462511897087, -0.013794351369142532, -0.00011372712469892576, -0.0004106434644199908, 0.008264625445008278, -0.020299270749092102, 0.01081974059343338, 0.001916336128488183, 0.0042630648240447044, 0.02948460914194584, -0.028438592329621315, 0.0075890724547207355, 0.026063261553645134, 0.015755632892251015, 0.00023460476950276643, 0.007322120480239391, -0.010541891679167747, -0.0001299009018111974, -0.02798095904290676, -0.02551846019923687, 0.04096900671720505, -0.0027635011356323957, -5.218168371357024e-05, -0.0027812072075903416, -0.007496456615626812, 0.05334687605500221, 0.008673225529491901, 0.0007041547796688974, -0.007610864471644163, 0.008771290071308613, 0.027501534670591354, 0.013249550946056843, -0.012301597744226456, -0.014687824994325638, -0.012040093541145325, -0.01271564606577158, -0.016115201637148857, 0.02636834979057312, -0.008106633089482784, -0.017967524006962776, 3.9838545490056276e-05, -0.0009397810790687799, -0.009294298477470875, 0.016616418957710266, 0.019253253936767578, -0.016071617603302002, -0.007594520691782236, 0.013314926996827126, -0.023099545389413834, -0.007343912497162819, -0.011299164965748787, -0.04375838488340378, -0.021105576306581497, -0.011517085134983063, -0.017869459465146065, 0.0067773195914924145, -0.031206179410219193, -0.030487041920423508, 0.015014705248177052, -0.02595430053770542, -0.030879298225045204, 0.01571204885840416, -0.013532847166061401, -0.007894161157310009, -0.0009057309944182634, -0.01347836758941412, 0.025997884571552277, 0.003034539520740509, 0.010710780508816242, 0.0023222125601023436, 0.05003448948264122, 0.008836666122078896, -0.0007742978632450104, 0.016278643161058426, -0.01509097684174776, -0.008651433512568474, 0.02035375125706196, 0.00534721789881587, 1.0715121788962279e-05, 0.020854966714978218, 0.034518565982580185, 0.002075690310448408, -0.014339151792228222, -0.014873056672513485, 0.015657570213079453, -0.00941960234194994, 0.032579075545072556, 0.03761303424835205, 0.003606579964980483, -0.03194710984826088, -0.009179890155792236, -0.0035793399438261986, 0.02384047396481037, -0.014437216334044933, -0.025671005249023438, -0.0054915901273489, 0.007131440099328756, 0.03532487154006958, -0.021519623696804047, -0.01427377574145794, 0.006548503413796425, 0.021367080509662628, -0.027523327618837357, 0.020168518647551537, 0.009659314528107643, 0.0329495407640934, 0.0019626442808657885, 0.007153232116252184, -0.0017978419782593846, -0.01581011340022087, 0.00682090362533927, 0.010928700678050518], [0.018241120502352715, 0.016042644158005714, 0.0741674154996872, -0.006118397228419781, -0.059773627668619156, -0.003300304990261793, 0.021673643961548805, 0.010064245201647282, 0.056081850081682205, 0.020232191309332848, -0.0037565920501947403, 0.0157522801309824, -0.024784693494439125, -0.050440479069948196, 0.00029943851404823363, 0.003191418247297406, -0.030882351100444794, 0.05736774951219559, 0.008545015938580036, -0.013730097562074661, 0.03401413932442665, 0.044674668461084366, 0.025158019736409187, 0.07350372523069382, -0.010992374271154404, 0.01684114709496498, 0.03588077053427696, 0.03247935697436333, 0.005936919245868921, -0.047536835074424744, 0.05201674625277519, -0.02183956652879715, 0.0548374317586422, -0.015524136833846569, 0.07595108449459076, -0.0009605364757589996, -0.04612649232149124, 0.020491445437073708, 0.010639788582921028, -0.0016333009116351604, -0.07408445328474045, 0.008529460057616234, -0.027501676231622696, -0.007295410614460707, -0.036834824830293655, 0.0554596409201622, 0.01646782085299492, -0.016229307278990746, -0.0013202516129240394, 0.04683166369795799, -0.010629418306052685, -0.018427781760692596, 0.012039761058986187, 0.022192152217030525, 0.055625561624765396, 0.004218064248561859, 0.02119661681354046, -0.02061588689684868, -0.009079079143702984, 0.0009281297097913921, -0.010390904732048512, -0.015762649476528168, -0.01969294250011444, 0.012993816286325455, -0.026734285056591034, -0.009265742264688015, 0.026215776801109314, 0.027315013110637665, -0.049735311418771744, -0.00044397267629392445, 0.004285470582544804, 0.014715263620018959, -0.04923754185438156, -0.035341519862413406, -0.014290086925029755, 0.01813741773366928, 0.001492007402703166, 0.020501814782619476, 0.020263301208615303, 0.006108026951551437, -0.008223540149629116, 0.010510161519050598, 0.016374489292502403, 0.031400859355926514, -0.018614444881677628, 0.00959240272641182, 0.006071731448173523, 0.012579009868204594, -0.05048196017742157, -0.013543435372412205, 0.012112352065742016, 0.0248261746019125, 0.01516118086874485, 0.08503534644842148, 0.018510743975639343, -0.04795164242386818, 0.04179176315665245, -0.04152213782072067, -0.006662830710411072, 0.058861054480075836, 0.019972937181591988, 0.035673364996910095, 0.037311851978302, 0.04504799470305443, 0.03142159804701805, -0.11166593432426453, -0.07387705147266388, 0.05910993739962578, 0.013564174994826317, -0.003266601823270321, -0.05409077927470207, -0.0056465547531843185, -0.029824594035744667, 0.045130956918001175, 0.02410026267170906, -0.010152391158044338, 0.04898865893483162, -0.02559356577694416, 0.026734285056591034, 0.008529460057616234, 0.0007207264425233006, 0.002704020356759429, -0.0011523845605552197, -0.08192430436611176, -0.03306008502840996, 0.008373907767236233, -0.022959545254707336, -0.007290225941687822, -0.028600914403796196, -0.04712202772498131, 0.02578022889792919, -0.03135937824845314, 0.0069272699765861034, -0.0526389554142952, 0.02183956652879715, -0.02992829494178295, 0.020128490403294563, 0.00943166483193636, -0.009405739605426788, -0.018344821408391, 0.020947732031345367, -0.019039621576666832, 0.03312230482697487, 0.009467960335314274, -0.05558408424258232, -0.03044680319726467, 0.005141009110957384, 0.079020656645298, 0.04654129967093468, -0.029119422659277916, -0.04683166369795799, 0.06280171871185303, -0.0172455832362175, 0.008254650980234146, 0.015710799023509026, -0.003785110078752041, -0.035341519862413406, 0.05010863393545151, 0.015721170231699944, 0.019226284697651863, -0.019101843237876892, -0.02534468285739422, 0.030239399522542953, -0.021611422300338745, 0.053302645683288574, -0.017390765249729156, -0.0406925268471241, 0.03386895731091499, -0.015824871137738228, -0.056206293404102325, -0.05479595065116882, -0.04044364392757416, -0.037996284663677216, -0.013470843434333801, -0.04633389413356781, -0.030737167224287987, 0.0023086578585207462, 0.011054595932364464, 0.00562062906101346, -0.034636348485946655, 0.02312546782195568, -0.014528600499033928, -0.046873144805431366, -0.04206138849258423, -0.027190571650862694, 0.006481352727860212, -0.01085756253451109, 0.026008373126387596, -0.021735865622758865, 0.032437875866889954, -0.004321766085922718, 0.04405245929956436, -0.014144904911518097, 0.02339509129524231, -0.017058920115232468, 0.03803776577115059, -0.02455654926598072, -0.02889127843081951, -0.0053613749332726, -0.012962705455720425, 0.020844031125307083, -0.04011179506778717, -0.003028088016435504, 0.024701731279492378, -0.06553944200277328, -0.028683874756097794, 0.011925688944756985, -0.015067849308252335, 0.07292299717664719, 0.014974517747759819, -0.026340218260884285, -0.036710381507873535, -0.02831055037677288, 0.02281436137855053, -0.03577706962823868, 0.005309524480253458, 0.03196084871888161, 0.03675186261534691, -0.014653042890131474, 0.004109177738428116, 0.03944810479879379, -0.0199521966278553, 0.008052432909607887, 0.0019119990756735206, -0.005885068327188492, 0.016053015366196632, -0.011510882526636124, -0.024452848359942436, -0.004736572504043579, -0.0732133612036705, -0.04280804097652435, 0.022793622687458992, 0.015057479031383991, 0.006605794653296471, -0.0001373236591462046, 0.028269069269299507, -0.019008511677384377, -0.042082127183675766, 0.012423457577824593, 0.010733120143413544, 0.028725355863571167, 0.03428376466035843, -0.03090308979153633, -0.05533519759774208, -0.008156134746968746, 0.007953916676342487, -0.007715402636677027, -0.00010507893603062257, 0.06039584055542946, -0.0010214612120762467, -0.026464659720659256, -0.03801702335476875, -0.010453126393258572, -0.061474334448575974, 0.018884070217609406, 0.03714593127369881, 0.013149368576705456, -0.018635185435414314, 0.023830639198422432, -0.00235791620798409, 0.0057606264017522335, -0.02358175441622734, 0.0021323650144040585, 0.038577012717723846, -0.04392801597714424, 0.005729516036808491, 0.04799312353134155, -0.06603720784187317, -0.028414251282811165, 0.023436572402715683, -0.05637221410870552, 0.014995258301496506, 0.02300102449953556, -0.005734701175242662, -0.027750561013817787, 0.021238097921013832, -1.796549986465834e-05, -0.015078219585120678, -0.019153693690896034, -0.01282789371907711, -0.015451544895768166, -0.01871814765036106, 0.04757831618189812, -0.02650614082813263, 0.003235491458326578, -0.0014634894905611873, 0.0034065991640090942, -0.009245001710951328, -0.007829474285244942, 0.06939714401960373, 0.008773159235715866, -0.01422786619514227, -0.013418992981314659, 0.0010208131279796362, 0.05981510877609253, 0.044923555105924606, 0.01795075461268425, -0.015565617009997368, 0.012433827854692936, 0.006984306033700705, -0.01111681666225195, 0.015005628578364849, -0.008690197952091694, 0.014673782512545586, -0.023623235523700714, -0.007067267317324877, -0.004021031316369772, 0.021020323038101196, 0.010639788582921028, -0.0171626228839159, -0.026526881381869316, 0.01438341848552227, -0.02967941202223301, -0.003372895997017622, -0.025904672220349312, 0.01108570583164692, 0.01085756253451109, 0.01937146671116352, -0.005026937462389469, -0.013180479407310486, 0.019278135150671005, 0.029845334589481354, 0.00974795501679182, -0.044923555105924606, 0.036689642816782, -0.02851795218884945, 0.00043813945376314223, 0.0263194777071476, -0.03183640539646149, 0.014196755364537239, -0.015928572043776512, 0.01290048472583294, 0.017732981592416763, 0.0010363683104515076, -0.017266323789954185, 0.038846638053655624, 0.015223401598632336, 0.030467543751001358, -0.011324219405651093, -0.04094140976667404, -0.005037307273596525, 0.003235491458326578, 0.011956799775362015, -0.03710445016622543, 0.01924702525138855, 0.03814146667718887, 0.03971773013472557, 0.03513411805033684, -0.03507189825177193, 0.034968193620443344, 0.007798363920301199, -0.007663551717996597, -0.015223401598632336, 0.007622071076184511, -0.07719550281763077, 0.001341640017926693, 0.01422786619514227, -0.013118258677423, -0.0472879521548748, -0.0073420763947069645, -0.041812505573034286, -0.0031317896209657192, 0.01007980015128851, 0.02845573239028454, -0.022254373878240585, 0.027252793312072754, 0.025821710005402565, -0.0028232773765921593, 0.029513489454984665, -0.01357454527169466, 0.041314736008644104, 0.004964716266840696, -0.03542448207736015, -0.04645833745598793, 0.008156134746968746, -0.04438430443406105, 0.0009851655922830105, 0.004897310398519039, -0.05010863393545151, 0.00784502923488617, 0.031069012358784676, -0.006113212089985609, 0.02696242742240429, 0.004658796358853579, 0.06587128341197968, 0.007368002086877823, -0.06122545152902603, -0.01698632910847664, 0.03720815107226372, 0.02961719036102295, -0.011396811343729496, 0.014538970775902271, -0.018749257549643517, -0.009763509966433048, -0.045711684972047806, 0.006984306033700705, 0.02054329589009285, 0.02424544468522072, -0.0008561867289245129, -0.01130347978323698, 0.050316039472818375, -0.02681724540889263, 0.013584915548563004, -0.06612017005681992, -0.013180479407310486, -0.026775764301419258, -0.010022764094173908, -0.002836239989846945, 0.010515347123146057, -0.01134495995938778, 0.019537389278411865, -0.021943269297480583, 0.0399043932557106, -0.0185418538749218, 0.023872118443250656, -0.0023060652893036604, 0.008176874369382858, 0.009079079143702984, 0.006330985575914383, -0.013616026379168034, 0.03096531145274639, 0.05172638222575188, -0.004855829756706953, 0.0548374317586422, -0.029057200998067856, 0.034055620431900024, 0.022150671109557152, 0.0008821121300570667, 0.02378915809094906, -0.04044364392757416, -0.04413542151451111, 0.009493885561823845, 0.0034117840696126223, 0.05425669997930527, -0.031981587409973145, -0.03285268321633339, 0.009369444102048874, -0.027107611298561096, -0.02391359955072403, -0.006460612639784813, 0.003956217784434557, -0.03494745492935181, -0.010520531795918941, 0.047536835074424744, -0.015835242345929146, 0.009545736946165562, -0.03474005311727524, 0.01626041904091835, 0.0337030366063118, -0.02831055037677288, 0.0038784416392445564, 0.005454706493765116, -0.033785995095968246, -0.0035517814103513956, -0.03208528831601143, 0.017650019377470016, 0.011293109506368637, -0.056206293404102325, 0.018873699009418488, -0.05512779578566551, 0.04123177379369736, 0.04873977228999138, 0.020512185990810394, 0.05558408424258232, 0.019589241594076157, 0.04770275577902794, -0.010660529136657715, -0.01409305352717638, -0.03996661305427551, -0.012091612443327904, -0.00502434466034174, 0.02690020762383938, 0.04359617084264755, -0.0185418538749218, 0.002786981640383601, -0.030011257156729698, -0.02611207403242588, -0.026423178613185883, -0.07172005623579025, -0.003266601823270321, 0.026485400274395943, 0.02306324616074562, -0.05114565044641495, -0.006730237044394016, 0.07122229039669037, 0.05521075800061226, 0.04596056789159775, 0.021362539380788803, 0.011251628398895264, -0.030218658968806267, 0.0005936919478699565, -0.01134495995938778, 0.033599331974983215, -0.00619098823517561, -0.033537112176418304, 0.029845334589481354, -0.03635779768228531, -0.02156994305551052, 0.06018843501806259, -0.014424898661673069, 0.010489421896636486, -0.044218383729457855, 0.040008094161748886, -0.01990034617483616, 0.05599888786673546, -0.03401413932442665, 0.008819825015962124, 0.014715263620018959, -0.016021903604269028, -0.046748701483011246, -0.07080748677253723, -0.01033386867493391, -0.009763509966433048, 0.005480632185935974, -0.010059059597551823, -0.042932480573654175, -0.015244142152369022, 0.020118119195103645, -0.006413946859538555, 0.0074717034585773945, 0.00914129987359047, 0.011479772627353668, -0.024058781564235687, -0.01370935793966055, -0.014207125641405582, -0.0029943850822746754, -0.02125883661210537, -0.012133092619478703, 0.017546318471431732, -0.0053717452101409435, 0.005999140441417694, -0.030426062643527985, -0.05085528641939163, 0.007725772447884083, 0.03322600573301315, 0.006445057224482298, 0.006750977132469416, -0.011075335554778576, -0.02488839440047741, -0.026340218260884285, 0.006196173373609781, -0.022067710757255554, -0.006714681629091501, 0.007798363920301199, 0.018832219764590263, -0.00303068058565259, 0.016084125265479088, 0.01879073865711689, 0.008804270066320896, -0.004039179068058729, -0.0011083113495260477, -0.006382836494594812, 0.03397265821695328, 0.0034454872366040945, 0.008285761810839176, -0.03675186261534691, 0.04077548906207085, -0.02580096945166588, 0.006958380341529846, -0.008861306123435497, -0.0034428946673870087, 0.02611207403242588, -0.033537112176418304, -0.026713544502854347, 0.0020221821032464504, 0.03351637348532677, -0.01828259974718094, -0.028476472944021225, 0.008114653639495373, -0.03065420687198639, 0.010224982164800167, 0.02546912431716919, 0.018168527632951736, 0.03766443952918053, 0.03519633784890175, 0.007150228600949049, 0.024992097169160843, -0.06018843501806259, -0.01775372214615345, 0.009882766753435135, -0.003580299438908696, -0.004806571174412966, -0.016509301960468292, -0.04301544278860092, -0.0196410920470953, -0.008477609604597092, -0.021009953692555428, -0.015202661044895649, 0.01039609033614397, 0.0029243864119052887, 0.0007622070843353868, -0.025904672220349312, 0.02495061606168747, -0.011676805093884468, 0.004254360217601061, 0.03675186261534691, -0.03144234046339989, 0.010214611887931824, -0.012786412611603737, 0.046375375241041183, 0.006963565479964018, -0.006890974473208189, -0.019029252231121063, 0.008379093371331692, -0.007596145384013653, -0.01253752876073122, -0.0023631013464182615, -0.01639522984623909, 0.032375652343034744, 0.015980424359440804, 0.032168250530958176, 0.0184588935226202, 0.02358175441622734, -0.0038810342084616423, -0.04795164242386818, 0.0009747954900376499, -0.0384940505027771, -0.042476195842027664, -0.02721131220459938, -0.004420282784849405, -0.015700429677963257, 0.015887092798948288, 0.019039621576666832, -0.02488839440047741, 0.02002478763461113, -0.012195313349366188, -0.036710381507873535, 0.005573963280767202, -0.009602772071957588, -0.015368583612143993, 0.011697545647621155, 0.02528246119618416, 0.0010247018653899431, -0.010053874924778938, -0.021144766360521317, 0.0025562455412000418, 0.008871675468981266, -0.003963995259255171, -0.008835379965603352, -0.008747234009206295, 0.03328822925686836, -0.02870461530983448, 0.016187826171517372, -0.029451267793774605, 0.05915141850709915, 0.02559356577694416, 0.007062082178890705, 0.019029252231121063, 0.0016579300863668323, 0.002356619806960225, 0.021362539380788803, -0.02378915809094906, 0.004091029986739159, -0.030882351100444794, 0.02119661681354046, -0.011427921243011951, -0.05280487984418869, 0.035673364996910095, 0.0317327044904232, 0.04347173124551773, 0.005978399887681007, 0.016415970399975777, -0.04004957526922226, 0.005999140441417694, 0.028289809823036194, 0.00593173410743475, 0.011251628398895264, -0.0033366004936397076, 0.025448383763432503, -0.015264882706105709, -0.0009171114070340991, 0.0025393939577043056, 0.024577289819717407, -0.03084086999297142, -0.022129930555820465, 0.012589380145072937, -0.004573242738842964, 0.010152391158044338, -0.004072882235050201, 0.04175028204917908, -0.039033301174640656, -0.01658189296722412, -0.01898777112364769, 0.027584638446569443, 0.010152391158044338, 0.005351005122065544, 0.01943368837237358, -0.028663134202361107, 0.0133152911439538, 0.0021971785463392735, 0.030280880630016327, -0.0006270708981901407, -0.03596373274922371, 0.0277298204600811, 0.037871841341257095, 0.06052028015255928, 0.0070724524557590485, 0.0032769721001386642, -0.010287202894687653, 0.014082683250308037, 0.015990793704986572, 0.022710660472512245, 0.03698000684380531, -0.06201358512043953, -0.025904672220349312, 0.004319173749536276, 0.013170109130442142, 0.013221959583461285, 0.028331289067864418, 0.00810428336262703, -0.014010092243552208, -0.029015719890594482, -0.05197526514530182, -0.016934478655457497, -0.04276655986905098, 0.0236439760774374, -0.02592541091144085, -0.008410203270614147, 0.03751925751566887, -0.0020623665768653154, -0.009291667491197586, 0.021279577165842056, -0.015669317916035652, -0.0377059169113636, -0.0035128933377563953, -0.008695382624864578, -0.005662109702825546, -0.020128490403294563, 0.007590960711240768, 0.02779204212129116, 0.024909134954214096, 0.00855538621544838, 0.03167048469185829, -0.02098921313881874, -0.0036165949422866106, 0.01435230765491724, -0.0329149030148983, -0.028082406148314476, 0.008659087121486664, 0.0024758768267929554, -0.007020601537078619, -0.021041063591837883, 0.01761890947818756, -0.03484375402331352, -0.010733120143413544, 0.01000720914453268, 0.015295992605388165, 0.01743224635720253, -0.003738444298505783, 0.009779064916074276, -0.00991906225681305, 0.003849923610687256, -0.01075386069715023, -0.02397582121193409, 0.037560734897851944, -0.01153162308037281, 0.019807014614343643, 0.004848051816225052, 0.012817523442208767, -0.012195313349366188, -0.00707763759419322, 0.025738747790455818, 0.012143462896347046, 0.02300102449953556, 0.00875241868197918, -0.024971356615424156, 0.0011452550534158945, -0.004542131908237934, 0.010401275008916855, -0.007362816948443651, 0.012693081982433796, 0.005584333557635546, 0.014362677931785583, 0.030571244657039642, 0.0315045602619648, 0.013584915548563004, -0.010245722718536854, -0.012703451327979565, -0.0023656939156353474, -0.026858726516366005, -0.012879744172096252, -0.010245722718536854, 0.02260695956647396, 0.021756606176495552, -0.00914129987359047, 0.0157522801309824, 0.005065825302153826, 0.037871841341257095, 0.0072020795196294785, 0.002678095130249858, -0.004109177738428116, 0.013398252427577972, 0.00743540795519948, -0.043637651950120926, -0.023353610187768936, -0.03633705526590347, 0.028206847608089447, -0.04255915433168411, 0.006403576582670212, 0.025572825223207474, -0.010100540705025196, 0.01104422565549612, -0.011054595932364464, -0.0007868362590670586, 0.057118866592645645, -0.00466398149728775, -0.047661278396844864, -0.00424658227711916, 0.012516789138317108, -0.03965551033616066, 0.021217357367277145, 0.022337334230542183, -0.018230749294161797, 0.015399694442749023, 0.03038458153605461, -0.047536835074424744, -0.007181338965892792, 0.034698572009801865, -0.025572825223207474, -0.043886538594961166, 0.010670899413526058, -0.008176874369382858, 0.03247935697436333, -0.005916179157793522, 0.02980385348200798, 0.03517559915781021, -0.03241713345050812, -0.00185885198879987, 0.01308714784681797, -0.013595285825431347, 0.003455857280641794, 0.009063524194061756, 0.036834824830293655, -0.0118634682148695, 0.018967030569911003, 0.04488207399845123, -0.011137557215988636, 0.013626396656036377, 0.012496048584580421, 0.0236439760774374, 0.04907161742448807, -0.018832219764590263, 0.005340634845197201, 0.013781948946416378, -0.02586319111287594, 0.028663134202361107, 0.03745703399181366, -0.03492671623826027, -0.03544522449374199, 0.030177179723978043, -0.026547621935606003, 0.006377651356160641, -0.02002478763461113, 0.028808318078517914, 0.010691639967262745, -0.01658189296722412, 0.004352876450866461, 0.014663413166999817, -0.02125883661210537, -0.006455427501350641, 0.011873838491737843, -0.013418992981314659, -0.0003882330493070185, -0.005568778607994318, 0.025489864870905876, -0.017255954444408417, 0.060686204582452774, -0.018313711509108543, -0.020698849111795425, 0.010909412987530231, 0.037934061139822006, 0.004127325490117073, 0.048242006450891495, -0.014207125641405582, -0.03762295842170715, 0.011967170052230358, -0.025489864870905876, 0.03650297969579697, 0.0010350720258429646, 0.009094634093344212, 0.021818825975060463, 0.012838263995945454, 0.007653181441128254, 0.005268043838441372, -0.03876367583870888, -0.015264882706105709, 0.0019560724031180143, 0.042600635439157486, 0.02986607328057289, 0.001025998149998486, 0.016675224527716637, 0.03316378593444824, 0.011739026755094528, 7.352284592343494e-05, 0.017992235720157623, 0.004085844848304987, -0.004109177738428116, -0.036710381507873535, -0.010432385839521885, -0.010323499329388142, -0.018230749294161797, -0.0003297388320788741, -0.042082127183675766, -0.016768556088209152, -0.04567020386457443, 0.005161749664694071, -0.026485400274395943, -0.0444672666490078, 0.018230749294161797, 0.003893996821716428, -0.025759488344192505, -0.006756162270903587, -0.025095798075199127, -0.01807519607245922, 0.048822734504938126, -0.003416969208046794, -0.058280326426029205, 0.03187788650393486, -0.015140440315008163, -7.145691779442132e-05, 0.05728479102253914, 0.002185512101277709, -0.02571800909936428, -0.013761208392679691, -0.0013558990322053432, 0.02526172064244747, -0.01860407553613186, -0.0038214055821299553, 0.007269485387951136, -0.030031997710466385, 0.015897462144494057, 0.023083986714482307, 0.013667876832187176, -0.0014440454542636871, 0.007326521445065737, -0.01238197647035122, -0.018220379948616028, 0.01212272234261036, 0.019651461392641068, -0.0333089679479599, 0.05139453709125519, -0.022316593676805496, -0.020906252786517143, -0.004938791040331125, -0.03828664869070053, -0.011365700513124466, 0.007865769788622856, -0.03194010630249977, 0.007642811164259911, 0.010556827299296856, 0.012620490044355392, -0.004301025997847319, 0.017670759931206703, -0.008275391533970833, 0.00681838346645236, 0.006833938416093588, 0.03218898922204971, 0.003759184619411826, -0.013118258677423, -0.009644253179430962, -0.0038551087491214275, 0.014818965457379818, 0.04384505748748779, -0.032562315464019775, 0.06636905670166016, 0.04878125339746475, -0.018158158287405968, -0.012838263995945454, 0.0005317950272001326, -0.004676944110542536, -0.027439456433057785, -0.007450963370501995, 0.04083770886063576, 0.029949035495519638, 0.005060640163719654, -0.0025355052202939987, 0.00868501327931881, 0.03129715844988823, -0.00997609831392765, 0.015461915172636509, 0.0251372791826725, -0.008337612263858318, 0.02584245055913925, 0.02638169936835766, -0.021818825975060463, -0.02565578743815422, 0.014393788762390614, -0.002716983202844858, 0.002138846553862095, -0.016810037195682526, 0.025365423411130905, -0.004264730028808117, 0.026920948177576065, 0.036005210131406784, 0.002916608704254031, 0.011614584363996983, 0.02449432946741581, -0.031006792560219765, 0.012713821604847908, -0.018241120502352715, 0.009177595376968384, 0.03505115583539009, 0.018687035888433456, 0.021881047636270523, 0.026941686868667603, -0.0074872588738799095, 0.016810037195682526, -2.6350749976700172e-05, 0.015731539577245712, -0.0516849011182785, 0.024598030373454094, -0.03490597382187843, 0.0004883699584752321, 0.024867655709385872, -0.02999051660299301, 0.011925688944756985, 0.005356190260499716, -0.019972937181591988, -9.322008736489806e-06, 0.015524136833846569, -0.018842589110136032, 0.02916090376675129, 0.005511742550879717, -0.015119699761271477, 0.011168667115271091, -0.04853237047791481, 0.012091612443327904, -0.010681269690394402, 0.010354609228670597, 0.023353610187768936, 0.025489864870905876, 0.03231343254446983, 0.027066130191087723, 0.04334728792309761, 0.013719728216528893, 0.00632061529904604, -0.008856120519340038, -0.015078219585120678, -0.012112352065742016, 0.0146115617826581, -0.028912018984556198, -0.00878352951258421, -0.04021549969911575, -0.0034869678784161806, 0.0024745804257690907, -0.029451267793774605, 0.01259975042194128, 0.023229168727993965, 0.003085124073550105, 0.017660390585660934, 0.004132510628551245, 0.029575709253549576, -0.03621261566877365, -0.013076777569949627, 0.001685151713900268, -0.007414667867124081, -0.03490597382187843, -0.007793178781867027, -0.005397670902311802, -0.006470982916653156, 0.007248745299875736, -0.009063524194061756, 0.0016164494445547462, -0.004995826631784439, 0.0120190205052495, -0.030405322089791298, -0.037021487951278687, -0.006222098600119352, -0.0133152911439538, -0.00933314859867096, -0.002919201273471117, 0.0034117840696126223, 0.028538692742586136, 0.03737407177686691, -0.008109468966722488, -0.007819104008376598, -0.029492748901247978, -0.01930924691259861, -0.02422470413148403, -0.016623374074697495, -0.024452848359942436, 0.02008700929582119, 0.022918064147233963, -0.0009644253295846283, -0.00948870088905096, -0.007041341625154018, 0.0051513793878257275, 0.003437709528952837, 0.012330126017332077, -0.00554285291582346, -0.029969776049256325, 0.014362677931785583, -0.0003128873067907989, 0.006118397228419781, -0.0008250762475654483, 0.0005386004340834916, 0.05902697890996933, -0.014549341052770615, 0.040651045739650726, -0.008379093371331692, 0.020958103239536285, 0.02858017385005951, 0.013418992981314659, 0.016799665987491608, 0.04596056789159775, -0.054712988436222076, -0.008197614923119545, -0.0013247885508462787, 0.019972937181591988, -0.0196410920470953, 0.016415970399975777, 0.003388451412320137, 0.03194010630249977, -0.008259836584329605, 0.010992374271154404, 0.006185803096741438, -0.023312130942940712, 0.030674947425723076, 0.012962705455720425, 0.005511742550879717, -0.015295992605388165, -0.016892997547984123, -0.0630091205239296, -0.01982775516808033, -0.009742769412696362, -0.01626041904091835, 0.017930014058947563, 0.06317504495382309, 0.019298875704407692, -0.012941965833306313, -0.0048532369546592236, -0.028331289067864418, -0.005148786585777998, -0.026589103043079376, -0.0017097808886319399, 0.004435837734490633, 0.014258976094424725, -0.011448661796748638, -0.005174712277948856, 0.031069012358784676, 0.029389046132564545, 0.014362677931785583, 0.0015633023576810956, -0.0023190281353890896, -0.004977678880095482, 0.012423457577824593, -0.024909134954214096, 0.05384189635515213, 0.017867794260382652, -0.02669280394911766, 0.01645745150744915, 0.029492748901247978, -0.03117271512746811, 0.0014790447894483805, -0.00639839144423604, -0.04343025013804436, -0.0005982288857921958, -0.008861306123435497, 0.02217141166329384, 0.01205013133585453, -0.002724760677665472, 0.02586319111287594, 0.03355785459280014, 0.008280576206743717, -0.004176583606749773, 0.0027506861370056868, -0.019817383959889412, 0.017515208572149277, -0.011137557215988636, 0.0022347704507410526, -0.018261859193444252, -0.029264604672789574, -0.021611422300338745, -0.007964286021888256, 0.02812388725578785, 0.017577428370714188, 0.005366560071706772, -0.007705032359808683, 0.03428376466035843, -0.014165644533932209, 0.006248024292290211, 0.01917443424463272, 0.015078219585120678, -0.01075386069715023, -0.0052835987880826, 0.015855981037020683, 0.054132260382175446, 0.014912297017872334, 0.0172455832362175, -0.004684722051024437, 0.00867982767522335, -0.0064346869476139545, 0.021030694246292114, -0.03413858264684677, -0.022399555891752243, 0.03841108828783035, -0.01898777112364769, 0.02690020762383938, 0.037021487951278687, 0.0005784607492387295, -0.026215776801109314, 0.010660529136657715, -0.009146485477685928, -0.026858726516366005, -0.026008373126387596, 0.008368723094463348, 0.011179037392139435, 0.020491445437073708, -0.00170459586661309, -0.03388969972729683, -0.0042284345254302025, 0.02708687074482441, -0.030218658968806267, 0.0022373630199581385, 0.01690336875617504, -0.011593843810260296, -0.008275391533970833, 0.004866199567914009, -0.004625093657523394, 0.037477776408195496, -0.021362539380788803, 0.041688062250614166, 0.043513212352991104, -0.022212892770767212, 0.017090031877160072, -0.0017007070127874613, -0.02275214157998562, -0.01821000874042511, -0.018572965636849403, 0.005947289522737265, 0.036772605031728745, -0.007005046121776104, -0.03822442516684532, 0.010919783264398575, 0.02041885443031788, -0.0014103424036875367, 0.002488839440047741, 0.0170485507696867, -0.007119118236005306, -0.019215915352106094, 0.00476509053260088, 0.027232052758336067, 0.02766759879887104, -0.00518248975276947, -0.033267486840486526, -0.005174712277948856, -0.010157575830817223, -0.003909552004188299, -0.01334640197455883, -0.03235491365194321, 0.01593894325196743, -0.008244280703365803, -0.016364119946956635, -0.004648426081985235, 0.017204103991389275, 0.0037488145753741264, 0.0033625259529799223, -0.026651322841644287, 0.010442756116390228, -0.007160598877817392, -0.027563897892832756, -0.021082544699311256, -0.0032925272826105356, 0.04141843691468239, -0.03245861455798149, -0.004806571174412966, -0.02034626342356205, 0.033599331974983215, 0.0012982150074094534, 0.035922251641750336, 0.0070983776822686195, -0.028497211635112762, 0.013792319223284721, -0.005161749664694071, 0.02526172064244747, 0.04297396168112755, -0.004959531128406525, -0.018521113321185112, 0.041812505573034286, 0.009986468590795994, 0.01795075461268425, 0.005190267227590084, 0.005187674891203642, 0.006595424842089415, -0.003219936043024063, -0.0022179188672453165, -0.010349424555897713, -0.015824871137738228, 0.00281031453050673, 0.008150949142873287, -0.023830639198422432, -0.02092699147760868, 0.037311851978302, -0.014673782512545586, -0.01828259974718094, 0.013688617385923862, 0.005091750994324684, 0.011552363634109497, -0.005537667777389288, -0.009369444102048874, -4.779997834702954e-05, 0.0005975807434879243, 0.0011245147325098515, 0.010919783264398575, -0.0030566060449928045, 0.025323942303657532, -0.014808595180511475, -0.0061339521780610085, 0.00852427538484335, -0.0347193107008934, -0.015887092798948288, 0.015036738477647305, -0.023955080658197403, 0.0021906972397118807, 0.004459170624613762, -0.012527158483862877, -0.038597751408815384, -0.022731401026248932, -0.0466657392680645, -0.007622071076184511, 0.03745703399181366, -0.017660390585660934, 0.01082645170390606, 0.0054754470475018024, 0.015835242345929146, -0.008088728412985802, -0.005859143100678921, 0.0026443919632583857, -0.00704652676358819, -0.007824289612472057, -0.027563897892832756, -0.03660668060183525, -0.032292693853378296, -0.009882766753435135, -0.01653004251420498, 0.029575709253549576, 0.014456009492278099, 0.03646149858832359, -0.05143601819872856, 0.027709079906344414, -0.016633743420243263, -0.012506418861448765, -0.023996561765670776, 0.031857144087553024, -0.019775904715061188, -0.02455654926598072, -0.01976553350687027, 0.01383379939943552, 0.015493026003241539, -0.017183363437652588, -0.004949160851538181, -0.00813539419323206, -0.0436791330575943, -0.020066268742084503, -0.038597751408815384, 0.0009767399169504642, 0.010930153541266918, 0.008456869050860405, -0.01990034617483616, 4.589607851812616e-05, 0.019278135150671005, 0.021798085421323776, -0.004233619663864374, 0.022959545254707336, 0.00015012433868832886, 0.010059059597551823, -0.029907554388046265, -0.02424544468522072, -0.030343102291226387, 0.013761208392679691, -0.03090308979153633, 0.0185418538749218, 0.0078761400654912, -0.00971684418618679, 0.016084125265479088, 0.007155413739383221, -0.04218582808971405, 0.0050061969086527824, 0.00587988318875432, 0.007425037678331137, -0.017079660668969154, -0.03915774077177048, -0.004378802143037319, -0.028621654957532883, 0.005286191590130329, -0.006678386125713587, -0.012693081982433796, -0.00694801053032279, -0.017525577917695045, -0.0458776094019413, -0.01990034617483616, 0.03921996429562569, -0.03345414996147156, -0.02488839440047741, -0.022378815338015556, -0.020429223775863647, -0.06271875649690628, 0.041107334196567535, -0.007891695015132427, 0.005013974383473396, -0.02086477167904377, 0.05774107575416565, -0.025697268545627594, 0.024141743779182434, -0.0041947318241000175, -0.03148382157087326, -0.010411645285785198, -0.01567968912422657, -0.031525298953056335, 0.02565578743815422, 0.0019431095570325851, -0.013460474088788033, 0.046873144805431366, -0.012713821604847908, -0.013522694818675518, -0.02546912431716919, -0.01007980015128851, -0.021341798827052116, 0.0020805143285542727, -0.021362539380788803, -0.04840792715549469, -0.02656836248934269, 0.007710217498242855, 0.0036217800807207823, 0.002999570220708847, 0.028912018984556198, 0.016550783067941666, 0.01787816360592842, 0.006771717686206102, -0.008306501433253288, 0.0025186536367982626, 0.006445057224482298, 0.007829474285244942, 0.02739797532558441, -0.0010849784594029188, 0.016032274812459946, 0.005159156862646341, 0.023996561765670776, -0.01743224635720253, 0.029700150713324547, -0.018261859193444252, 0.009540551342070103, -0.005921363830566406, -0.012579009868204594, 0.010805711150169373, -0.004754720721393824, -0.01363676693290472, -0.0011167371412739158, -0.015918202698230743, 0.028538692742586136, 0.01256863959133625, 0.003989920951426029, 0.008472424931824207, -0.004412504844367504, -0.009696103632450104, -0.006725051905959845, -0.014673782512545586, -0.006237654015421867, 0.022275114431977272, -0.012807153165340424, -0.001156921498477459, 0.010432385839521885, -0.0023293981794267893, -0.011417550966143608, -0.00011423384421505034, 0.017287064343690872, 0.023602494969964027, -0.002050700131803751, 0.014373048208653927, -0.0016138568753376603, -0.03044680319726467, 0.08636273443698883, -0.024390626698732376, 0.022731401026248932, -0.0008581310976296663, -0.03426302224397659, -0.01912258379161358, 0.005589518696069717, -0.010427200235426426, 0.014518230222165585, -0.03965551033616066, -0.015047108754515648, 0.03138011693954468, -0.014974517747759819, -0.02177734486758709, 0.04795164242386818, -0.012236794456839561, -0.004949160851538181, -0.03391043841838837, 0.008959822356700897, 0.030156439170241356, 0.004218064248561859, 0.034449685364961624, -0.001686447998508811, 0.03727037087082863, -0.027895743027329445, -0.00880945473909378, 0.01215383317321539, 0.006994675844907761, -0.014030832797288895, -0.0066576455719769, 0.007119118236005306, 0.002506987191736698, 0.03646149858832359, 0.015617468394339085, -0.0040339939296245575, -0.05164342001080513, -0.006273949518799782, 0.00645024236291647, -0.007673921994864941, 0.009504255838692188, 0.027294272556900978, 0.0008749826229177415, -0.005397670902311802, -0.004881754983216524, 0.01137607078999281, 0.021341798827052116, -0.022772882133722305, -0.018998142331838608, 0.0034065991640090942, -0.01775372214615345, 0.031069012358784676, -0.03604669123888016, 0.009405739605426788, 0.009799805469810963, 0.0034195617772638798, 0.0024058781564235687, -0.0018471855437383056, -0.04050586372613907, 0.024183224886655807, -0.020232191309332848, 0.014860445633530617, 0.01156273391097784, -0.007886510342359543, 0.0023838416673243046, -0.0009709066362120211], [-0.004884811118245125, 0.044344883412122726, 0.059095438569784164, 0.006227624602615833, -0.07093317061662674, 0.012455249205231667, 0.021112171933054924, -0.011255164630711079, 0.008942379616200924, 0.0373074933886528, -0.0432729609310627, 0.02393178828060627, -0.019632454961538315, -0.03756381943821907, -0.0211937315762043, 0.029454508796334267, -0.005642146337777376, 0.04157187044620514, -0.017744943499565125, -0.01743035763502121, 0.015239912085235119, 0.031202206388115883, -0.007788900285959244, 0.04972778633236885, 0.01808283105492592, 0.005012975540012121, 0.026378564536571503, -3.6160021409159526e-05, 0.008353988640010357, -0.014401017688214779, 0.043133147060871124, -0.01928291656076908, 0.06147230789065361, -0.02263849414885044, 0.07745790481567383, 0.0449274480342865, -0.03625887259840965, 0.0019661583937704563, 0.017150726169347763, 0.0030147761572152376, -0.0524308905005455, 0.03646859899163246, -0.013795149512588978, 0.009950217790901661, -0.04387883096933365, 0.0524308905005455, -0.006734456866979599, -0.022079231217503548, 0.02435123547911644, 0.06389577686786652, -0.01427285373210907, 0.0054120332933962345, -0.010573563165962696, 0.022149138152599335, 0.06235780566930771, 0.007491791620850563, 0.023162802681326866, 0.012525157071650028, 0.01971401460468769, -0.0026739754248410463, -0.007334499154239893, 0.02055290900170803, -0.03353246673941612, 0.0006830579950474203, -0.007643258664757013, -0.03740070387721062, -0.015484590083360672, 0.027217458933591843, -0.004220686852931976, 0.0036148186773061752, 0.011546446941792965, 0.01029975712299347, -0.007986972108483315, -0.0653405413031578, -0.006763584911823273, -0.004989672917872667, 0.027590299025177956, 0.016032202169299126, 0.014016524888575077, 0.010701727122068405, -0.008353988640010357, 0.021939415484666824, -0.045626524835824966, 0.015076793730258942, -0.003227412700653076, 0.015589451417326927, -0.024863893166184425, -0.004529446363449097, -0.02521343342959881, 0.003154591890051961, -0.015449635684490204, 0.004523620940744877, 0.014074780978262424, 0.09111323952674866, 0.0010238587856292725, -0.042480673640966415, 0.01783815398812294, -0.01676623336970806, 0.005053755361586809, 0.0676707997918129, 0.01427285373210907, 0.030712850391864777, 0.008528757840394974, 0.012350387871265411, 0.005837305914610624, -0.056532151997089386, -0.051498785614967346, 0.047514040023088455, 0.010526957921683788, -0.022801611572504044, -0.005487766582518816, 0.01288634818047285, -0.03395191580057144, 0.01281644031405449, -0.012921301648020744, 0.007550048176199198, -0.006553861312568188, -0.022801611572504044, 0.057604070752859116, -0.0369812548160553, -0.033905308693647385, 0.04324965924024582, -0.00650143064558506, -0.07508103549480438, 0.0018044965108856559, 0.007759771775454283, -0.021706389263272285, -0.02016841620206833, -0.016102109104394913, -0.02325601316988468, 0.006915051955729723, -0.004643046762794256, 0.04516047239303589, -0.023197757080197334, -0.016055503860116005, -0.017581826075911522, 0.050240445882081985, -0.014307807199656963, -0.03674823045730591, -0.03987077996134758, 0.006530558690428734, 0.024863893166184425, 0.022929776459932327, 0.005647972226142883, -0.043529290705919266, -0.004800339229404926, 0.023791972547769547, 0.06464146077632904, 0.03903188556432724, -0.042061224579811096, -0.056578755378723145, 0.052151259034872055, -0.04317975044250488, 0.016230273991823196, 0.038053177297115326, -0.007485966198146343, -0.013142677024006844, 0.05117255076766014, -0.008732656016945839, -0.00879673846065998, -0.05271052196621895, -0.002344826003536582, 0.032017797231674194, -0.04655862972140312, 0.022510329261422157, -0.01786145754158497, -0.027660207822918892, 0.02200932241976261, -0.04043004289269447, -0.03467429429292679, -0.051498785614967346, -0.03483741357922554, -0.017931364476680756, -0.02602902427315712, -0.034068427979946136, -0.005318822804838419, 0.02121703326702118, 0.012746532447636127, 0.02205592766404152, -0.01931787095963955, 0.005234350450336933, 0.007952018640935421, -0.050892919301986694, -0.0176051277667284, -0.025539670139551163, 0.015834128484129906, -0.00861614290624857, 0.021333547309041023, -0.022789960727095604, 0.020389791578054428, 0.0018277991330251098, 0.05350281298160553, 0.019853830337524414, 0.01301451213657856, -0.04345938190817833, 0.00551689462736249, -0.03299650549888611, -0.029268087819218636, -0.018595488741993904, -0.010119161568582058, 0.0093268733471632, -0.015204958617687225, 0.010323059745132923, 0.006664549000561237, -0.05797691270709038, -0.029244786128401756, 0.031784772872924805, -0.024421144276857376, 0.03334604576230049, 0.014482577331364155, 0.00676941080018878, -0.02703103795647621, -0.06002754345536232, 0.019364476203918457, -0.034557782113552094, -0.015088445506989956, 0.014634043909609318, 0.05312997102737427, -0.01826925203204155, -0.029128272086381912, 0.020914100110530853, -0.023628855124115944, -0.0039031885098665953, -0.0011483822017908096, -0.030736153945326805, 0.038519226014614105, 0.02894185110926628, -0.011470713652670383, -0.007287893909960985, -0.08141934871673584, -0.014482577331364155, 0.029104970395565033, 0.0009685150580480695, -0.024840591475367546, 0.06175193935632706, 0.04276030510663986, -0.019609153270721436, -0.004806165117770433, -0.001638465328142047, 0.026145538315176964, 0.045230381190776825, 0.03162165358662605, 0.0007187401060946286, -0.03239063918590546, 0.005103273317217827, 0.005144053138792515, -0.022090882062911987, -0.013492216356098652, 0.030782759189605713, 0.011919288896024227, -0.023978393524885178, -0.00933269876986742, 0.025726091116666794, -0.04800339415669441, 0.02263849414885044, 0.003914840053766966, 0.036585111171007156, -0.018816864117980003, 0.0005876629147678614, -0.04322635754942894, 0.012839742936193943, -0.004159517120569944, -0.021962717175483704, 0.03467429429292679, -0.03497723117470741, -0.01638174057006836, 0.06189175322651863, -0.07713166624307632, -0.029431207105517387, 0.028871944174170494, -0.07946192473173141, -0.0015190393896773458, -0.008761784061789513, 0.005112011916935444, -0.005350863561034203, 0.04497405141592026, 0.0030264274682849646, -0.040173713117837906, 0.0186537466943264, 0.003373054089024663, -0.026588287204504013, -0.01870035193860531, 0.03486071527004242, -0.021916111931204796, 0.006548035889863968, 0.0013246082235127687, -0.02244042046368122, 0.00424981489777565, -0.004482841119170189, 0.058862414211034775, 0.016102109104394913, -0.05312997102737427, -0.01301451213657856, -0.019609153270721436, 0.005784874781966209, -0.02160152792930603, -0.005112011916935444, -0.02332592010498047, -0.012431946583092213, -0.0023870619479566813, -0.03583942726254463, 0.02390848658978939, -0.02203262597322464, 0.006250927224755287, -0.027636904269456863, 0.015333122573792934, -0.005732444114983082, -0.010229849256575108, 0.007852982729673386, -0.0024860980920493603, -0.04462451487779617, 0.01886346936225891, -0.04907531291246414, -0.01554284617304802, -0.008161742240190506, -0.01311937440186739, 0.01228048000484705, -0.008260778151452541, 0.003909014165401459, -0.0023142413701862097, 0.014960280619561672, -0.0009706997079774737, 0.020657770335674286, -0.04765385389328003, 0.005924690514802933, -0.019224660471081734, 0.05303676053881645, 0.009583202190697193, -0.033485863357782364, 0.04870247095823288, -0.027333971112966537, 0.035769518464803696, 0.006996611133217812, 0.02856900915503502, 0.004290594719350338, -0.013888360001146793, -0.007847156375646591, 0.014144688844680786, -0.02747378684580326, -0.01655651070177555, -0.02665819600224495, -0.003920665476471186, 0.03420824185013771, -0.019865481182932854, 0.01187268365174532, 0.05010062828660011, 0.02961762808263302, 0.054434917867183685, -0.03187798336148262, 0.010818240232765675, -0.003760460065677762, 0.0071772062219679356, 0.01932952180504799, 0.016206970438361168, -0.09721852093935013, -0.002047717571258545, -0.0005039191455580294, 0.018164390698075294, -0.0037546344101428986, -0.0035012182779610157, -0.047956787049770355, -0.009309396147727966, 0.03425484895706177, 0.0554136261343956, -0.0025632879696786404, 0.026098933070898056, -0.0011928027961403131, -0.005036278162151575, 0.02287152037024498, 0.002940499223768711, 0.007404407020658255, 0.007829680107533932, -0.042294252663850784, -0.017721641808748245, -0.018583837896585464, -0.040849488228559494, 0.02035483717918396, -0.005886823870241642, 0.004142040386795998, 0.019830528646707535, 0.04637220874428749, 0.005688751582056284, 0.02204427681863308, 0.002138015115633607, 0.05667196586728096, 0.0632433071732521, -0.04446139559149742, -0.0076490845531225204, 0.034534480422735214, 0.007992798462510109, -0.029431207105517387, 0.02265014499425888, -0.013375703245401382, -0.011161954142153263, -0.06109946593642235, -0.007113124243915081, 0.0331130214035511, 0.02558627538383007, 0.013468913733959198, -0.0368647426366806, 0.02225399948656559, -0.02602902427315712, -0.02393178828060627, -0.04846944659948349, 0.017709989100694656, 0.02684461697936058, 0.022347209975123405, 0.0007165555143728852, 0.036631714552640915, -0.007934541441500187, 0.031342022120952606, -0.06398899108171463, 0.033089715987443924, -0.02329096756875515, 0.012991209514439106, -0.03022349625825882, -0.008010274730622768, 0.0562991239130497, -0.03294990211725235, -0.009903612546622753, 0.05238428711891174, 0.03318292647600174, 0.0029361299239099026, 0.023360874503850937, -0.021065566688776016, 0.015088445506989956, -0.01929456740617752, 0.002856027102097869, 0.04888889193534851, -0.07158564031124115, -0.02205592766404152, 0.0070781703107059, 0.023791972547769547, 0.02917487733066082, -0.009134626016020775, -0.04432157799601555, 0.020016949623823166, 0.0025530930142849684, 0.005100360605865717, -0.011715391650795937, -0.038123082369565964, -0.007538396865129471, -0.0041245631873607635, 0.03253045678138733, -0.02896515466272831, -0.011686262674629688, -0.039171699434518814, -0.017581826075911522, 0.005179007072001696, -0.045882854610681534, -0.004194471053779125, -0.02245207317173481, -0.04427497461438179, 0.0026011548470705748, -0.03793666139245033, 0.004142040386795998, 0.010946405120193958, -0.06086643785238266, 0.03987077996134758, -0.04255058243870735, 0.053642626851797104, 0.07111959159374237, 0.05368923395872116, 0.07382269203662872, 0.029337996616959572, 0.047304313629865646, -0.061798542737960815, -0.00145422900095582, -0.04341277852654457, -0.017092470079660416, -0.031342022120952606, -0.00014045288844499737, 0.023419130593538284, -0.006885923445224762, -0.016451647505164146, -0.02178794890642166, -0.0024496878031641245, -0.06478127837181091, -0.06995446234941483, -0.0023273490369319916, -0.011732867918908596, 0.043505989015102386, 0.0018190606497228146, -0.01570596545934677, 0.06990785151720047, 0.03569960966706276, 0.009921089746057987, 0.005642146337777376, -0.03802987188100815, -0.015274866484105587, -0.026518380269408226, 0.004683826118707657, 0.05056668072938919, -0.010095858946442604, -0.04737422242760658, -0.013585426844656467, -0.03583942726254463, 0.00581982871517539, 0.09353671222925186, -0.01740705594420433, -0.014960280619561672, 0.0047741238959133625, 0.006017901003360748, -0.04865586757659912, 0.040406741201877594, -0.01805952936410904, -0.006757759489119053, 0.059281859546899796, -0.011062918230891228, -0.014249551109969616, -0.021286942064762115, -0.00025887752417474985, 0.02437453903257847, -0.03257706016302109, -0.010701727122068405, -0.04551001265645027, -0.012688275426626205, 0.006017901003360748, -0.0038187166210263968, 0.01470395177602768, 0.05201144516468048, -0.005167355760931969, -0.03712107241153717, -0.014319458976387978, -0.004777036607265472, -0.021147126331925392, -2.644301093823742e-05, -0.022114183753728867, 0.008167567662894726, -0.007375278510153294, 0.019178055226802826, -0.04616248607635498, -0.020681073889136314, 0.01247855182737112, 0.014634043909609318, -0.004925590939819813, -0.010882322676479816, -0.02498040720820427, -0.02619214355945587, 0.00830155797302723, 0.007095647044479847, -0.024071604013442993, -0.00451196962967515, -0.001539429184049368, 0.01972566545009613, -0.004750821273773909, 0.005988772958517075, 0.025027012452483177, 0.0059712957590818405, 0.018816864117980003, 0.035559795796871185, 0.004057568497955799, 0.028172865509986877, 0.008726830594241619, -0.0034720900002866983, -0.029454508796334267, 0.028429193422198296, -0.01805952936410904, 0.0017476963112130761, -0.013177630491554737, 0.0003548187669366598, 0.022720051929354668, -0.011954243294894695, -0.035163652151823044, -0.014785511419177055, 0.04173498973250389, -0.013503867201507092, -0.031225508078932762, 0.0036585109774023294, -0.021951066330075264, 0.00862196832895279, 0.017278891056776047, 0.01470395177602768, 0.002943411935120821, 0.044577907770872116, 0.028825338929891586, 0.03688804432749748, -0.06776401400566101, 0.007619956042617559, -0.0005152063095010817, 0.0007263863226398826, 0.003990573342889547, 0.0037458958104252815, -0.04070967435836792, -0.011826078407466412, 0.035583097487688065, -0.0023637593258172274, -0.003911926876753569, 0.011779473163187504, 0.021275291219353676, -0.02013346180319786, -0.015647707507014275, 0.030759455636143684, -0.0030817713122814894, 0.029221482574939728, 0.021951066330075264, -0.04972778633236885, 0.010037602856755257, -0.02623874880373478, 0.06916216760873795, 0.009746319614350796, -0.013072769157588482, -0.004788687918335199, 0.004919765051454306, 0.022743355482816696, -0.002856027102097869, 0.005260566249489784, 5.748282637796365e-05, 0.01618366874754429, 0.010701727122068405, 0.020681073889136314, 0.02055290900170803, 0.010550260543823242, -0.025329945608973503, -0.019143100827932358, 0.002255984814837575, -0.014296156354248524, -0.03772693872451782, -0.029081666842103004, -0.009204533882439137, -0.013387354090809822, 0.030479824170470238, -0.01867704838514328, -0.03045652247965336, 0.003909014165401459, -0.0025254213251173496, -5.875718852621503e-05, -0.005123663228005171, -0.015880733728408813, -0.023780321702361107, 0.002247246215119958, 0.012070756405591965, -0.01591568812727928, -0.0009816228412091732, -0.011464888229966164, -0.0017782810609787703, 0.010678424499928951, 0.011418282985687256, 0.016300180926918983, -0.034930624067783356, 0.03253045678138733, -0.004220686852931976, 0.02600572258234024, -0.039567846804857254, 0.04471772536635399, -0.011092046275734901, 0.018595488741993904, 0.009845356456935406, 0.01740705594420433, 0.012070756405591965, 0.004043004475533962, -0.059048835188150406, -0.015904037281870842, -0.00177099893335253, 0.009798751212656498, -0.0014585983008146286, -0.038519226014614105, 0.06743777543306351, 0.026168840005993843, 0.028405891731381416, -0.005310084205120802, 0.0031575048342347145, -0.028499102219939232, -0.015053491108119488, -0.007713166531175375, 0.027380576357245445, 0.018933378159999847, -0.027543693780899048, 0.023768670856952667, 0.0005235807038843632, -0.03714437410235405, -0.027007734403014183, 0.001135274418629706, -0.03131872043013573, -0.01596229337155819, 0.01457578781992197, -0.031342022120952606, 0.00010031049168901518, -0.021228685975074768, 0.058675993233919144, 0.00023229797079693526, -0.020820889621973038, -0.017313845455646515, 0.01973731815814972, 0.004054655786603689, -0.004083783831447363, 0.029128272086381912, -0.036818135529756546, 0.009367652237415314, -0.016906049102544785, 0.01301451213657856, 0.008755958639085293, -0.012245525605976582, 0.015053491108119488, 0.03360237553715706, 0.04112911969423294, -0.001714198850095272, -0.017675036564469337, -0.008295731619000435, -0.039940688759088516, 0.015834128484129906, -0.002480272436514497, -0.003274017944931984, -0.05779049172997475, -0.005615931004285812, -0.01825760118663311, 0.003661423921585083, 0.008342336863279343, 0.022195743396878242, 0.008441373705863953, -0.01438936684280634, -0.0023652156814932823, -0.045230381190776825, -0.006437348201870918, -0.04623239487409592, 0.010771634988486767, -0.02747378684580326, 0.0026390214916318655, 0.03332274407148361, -0.003897362854331732, -0.00891907699406147, 0.027333971112966537, -0.017686687409877777, -0.045020658522844315, 0.0239550918340683, -0.027333971112966537, 0.0019312044605612755, -0.00325362803414464, -0.006874272134155035, 0.025236735120415688, 0.021077217534184456, 0.011942591518163681, 0.036818135529756546, 0.01571761630475521, 0.0018729479052126408, -0.0049547189846634865, -0.019632454961538315, 0.006245101802051067, 0.008254952728748322, 0.015636056661605835, 0.0015627318061888218, -0.01500688586384058, 0.0020928664598613977, -0.046278998255729675, -0.013550472445786, 0.021869506686925888, 0.007014087866991758, 0.04695477709174156, 0.0037313317880034447, -0.004433323163539171, -0.0022632668260484934, 0.007317021954804659, -0.036608412861824036, -0.01951594278216362, 0.038309503346681595, -0.003661423921585083, 0.008831691928207874, 0.032017797231674194, 0.0003451700322329998, -0.005347950849682093, -0.004203209653496742, 0.006017901003360748, 0.016439996659755707, 0.02289482206106186, -0.0068276673555374146, -0.023465735837817192, -0.00382745498791337, -0.01018906943500042, -0.01079493761062622, -0.015577800571918488, -0.0045964415185153484, -0.010433747433125973, 0.04031353071331978, 0.004290594719350338, 0.03691134601831436, 0.03842601552605629, -0.041222330182790756, 0.025702787563204765, -0.01660311594605446, -0.026145538315176964, -0.014738906174898148, -0.001398885273374617, 0.003839106298983097, 0.037470608949661255, -0.015041840262711048, 0.020879145711660385, -0.02519012987613678, 0.0381929911673069, -0.012653321959078312, 0.009437560103833675, -0.020086856558918953, 0.00338470540009439, -0.006664549000561237, -0.05755746737122536, 0.008633620105683804, -0.01931787095963955, 0.00011733232531696558, -0.03858913481235504, 0.0073869298212230206, 0.02500370889902115, -0.00042090355418622494, -0.0028065091464668512, 0.030130285769701004, 0.017511917278170586, 0.029454508796334267, -0.02999047003686428, -0.016533207148313522, -0.032180916517972946, 0.030176891013979912, -0.038099780678749084, -0.0004001496417913586, 0.03502383455634117, 0.019993646070361137, 0.037470608949661255, 0.017756594344973564, -0.04056985676288605, -0.0008753045694902539, 0.004747908562421799, 0.0021773383487015963, -0.037260886281728745, 0.015857432037591934, -0.019818875938653946, 0.026098933070898056, -0.017511917278170586, 0.018164390698075294, 0.030340008437633514, -0.02519012987613678, 0.04036013409495354, -0.016871094703674316, -0.028079655021429062, -0.015193306840956211, 0.025469761341810226, 0.03500053286552429, -0.018630443140864372, 0.015379727818071842, 0.019387777894735336, -0.008406419306993484, 0.013352400623261929, 0.03427815064787865, 0.036608412861824036, 0.03877555578947067, -0.015135050751268864, 0.002732231980189681, 0.030782759189605713, -0.050659891217947006, 0.016882747411727905, 0.01889842376112938, -0.048609260469675064, -0.0235123410820961, 0.015799175947904587, -0.028429193422198296, 0.012501854449510574, -0.029943864792585373, 0.04611588269472122, -0.018141089007258415, -0.033089715987443924, -0.013177630491554737, 0.004060481209307909, -0.018712002784013748, -0.03040991723537445, 0.009915264323353767, 0.011954243294894695, -0.0029361299239099026, 0.0009728842996992171, -0.00861614290624857, -0.009658935479819775, 0.02602902427315712, -0.02856900915503502, -0.012560111470520496, -0.013585426844656467, 0.06189175322651863, 0.001648660283535719, 0.043342869728803635, 0.006635420490056276, -0.04490414634346962, 0.0008294275612570345, -0.01934117265045643, 0.02136850170791149, 0.040593162178993225, 0.022335559129714966, 0.015869082883000374, -0.011383328586816788, 0.03588603064417839, 0.021112171933054924, -0.017267240211367607, -0.007893761619925499, 0.029104970395565033, 0.024281328544020653, 0.031342022120952606, 0.00041871893336065114, 0.012828091159462929, 0.026914523914456367, 0.01457578781992197, -0.008790913037955761, 0.011092046275734901, -0.011161954142153263, 0.01374854426831007, -0.024840591475367546, 6.453732930822298e-05, -0.014319458976387978, -0.020215021446347237, 0.006915051955729723, -0.06925538182258606, 0.020028600469231606, -0.03194788843393326, -0.01228048000484705, 0.013189282268285751, -0.026075629517436028, 0.007922890596091747, -0.012012499384582043, -0.00933269876986742, 0.0027031037025153637, -0.017966318875551224, -0.010107510723173618, 0.02982735075056553, -0.00338470540009439, -0.016020549461245537, 0.03751721605658531, 0.023127848282456398, 0.004622656852006912, 0.04516047239303589, -0.010824066586792469, 0.013492216356098652, -0.018572187051177025, -0.02248702570796013, 0.024654170498251915, -0.01079493761062622, 0.01090562529861927, -0.008954031392931938, -0.026355260983109474, -0.029431207105517387, 0.0067985388450324535, 0.01801292411983013, 0.016684673726558685, 0.006425696890801191, 0.0032914949115365744, -0.006052854936569929, 0.013084420002996922, 0.030899271368980408, -0.02915157563984394, 0.022953078150749207, -0.004139127675443888, -0.020005296915769577, -0.017045864835381508, -0.03437136113643646, -0.018094483762979507, 0.013410656712949276, -0.017558522522449493, 0.013632032088935375, 0.022778309881687164, -0.001514670206233859, -0.01739540509879589, 0.0201451126486063, -0.021496664732694626, 0.02558627538383007, 0.00902976468205452, 0.020005296915769577, -0.03192458674311638, 0.02416481450200081, -0.0365385040640831, 0.007550048176199198, 0.031015785411000252, 0.029081666842103004, -0.02703103795647621, 0.013049466535449028, 0.022626841440796852, 0.0003227776614949107, -0.03483741357922554, -0.0016297268448397517, 0.012501854449510574, 0.006245101802051067, -0.02369876205921173, 0.06021396443247795, 0.0352102555334568, -0.0049634575843811035, 0.011115348897874355, -0.013573775067925453, 0.010567737743258476, -0.0006870631477795541, 0.027357274666428566, 0.027217458933591843, 0.006361614912748337, 0.007282068021595478, 0.012315433472394943, -0.02348903939127922, -0.021962717175483704, 0.011820252984762192, 0.0036905521992594004, 0.004506143741309643, 0.0043663280084729195, 0.03360237553715706, 0.01229213085025549, 0.018350811675190926, 0.0036439469549804926, 0.02416481450200081, 0.019189706072211266, 0.017954668030142784, -0.018409067764878273, 0.0065888152457773685, 0.006944180000573397, 0.0016428346280008554, 0.025027012452483177, 0.03143523260951042, 0.041618477553129196, 0.019352823495864868, 0.013597077690064907, 0.0054236846044659615, -0.0007879197946749628, 0.007054867688566446, -0.07191187888383865, 0.027776720002293587, -0.008336511440575123, 0.0025953291915357113, 0.014634043909609318, -0.03045652247965336, -0.04369240999221802, 0.010783286765217781, -0.03737739846110344, -0.020739329978823662, 0.015985596925020218, 0.009105497971177101, 0.030060376971960068, 0.014727254398167133, -0.020925750955939293, 0.013993222266435623, -0.04224764555692673, 0.009303570725023746, 0.0026841703802347183, 0.01373689342290163, -0.009437560103833675, 0.0012787311570718884, -0.0015656446339562535, 0.031202206388115883, 0.018956679850816727, 0.029664233326911926, 0.030106982216238976, -0.027403878048062325, -0.03674823045730591, -0.05471454933285713, -0.011260990053415298, -0.0005760116036981344, -0.01005508005619049, -0.06133249029517174, 0.00819087028503418, 0.006577163934707642, -0.02283656597137451, 0.008715178817510605, 0.03467429429292679, 0.007777248974889517, 0.004066307097673416, 0.011674611829221249, 0.03583942726254463, -0.023605551570653915, -0.03467429429292679, 0.003166243201121688, 0.0023055027704685926, -0.011464888229966164, -0.018292555585503578, -0.015030188485980034, -0.011610529385507107, 0.012373690493404865, -0.03103908710181713, -0.023209407925605774, 0.017290541902184486, 0.008744307793676853, -0.03528016433119774, -0.017943015322089195, 0.008418071083724499, 0.00849380437284708, -0.01197754591703415, -0.02458426170051098, 0.0007231093477457762, -0.00975214596837759, -0.00015110291133169085, -0.009018112905323505, -0.005557674448937178, -0.0348840206861496, -0.035396676510572433, -0.01331744622439146, -0.02204427681863308, -0.03173816576600075, 0.007480140309780836, 0.007456837687641382, 0.0029506939463317394, -0.005947993136942387, -0.01079493761062622, 0.023139499127864838, -0.0002089953632093966, -0.00634996360167861, 0.011831904761493206, -0.028242772445082664, 0.03712107241153717, -0.002708929358050227, 0.008435547351837158, 0.028848640620708466, 0.02158987522125244, 0.03299650549888611, -0.02789323404431343, 0.03751721605658531, -0.0006907041533850133, -0.0047624725848436356, 0.022521980106830597, -0.002963801845908165, -0.0211937315762043, 0.06944180279970169, -0.05392225831747055, -0.010317234322428703, -0.031365323811769485, 0.022999683395028114, -0.004870247095823288, -0.004217773675918579, 0.0043342867866158485, 0.02451435476541519, -0.004759559873491526, -0.0013617468066513538, -0.021916111931204796, 0.011989196762442589, 0.019562548026442528, -0.00944338645786047, 0.010352187789976597, -0.00850545521825552, -0.006711154244840145, -0.029920561239123344, -0.018607141450047493, 0.013026163913309574, -0.0037662857212126255, 0.002569113625213504, 0.03173816576600075, 0.007619956042617559, -0.008313208818435669, 0.0033235359005630016, -0.021345198154449463, 0.010969707742333412, -0.0024933801032602787, 0.018152739852666855, 0.024001697078347206, 0.018560536205768585, -0.006414045579731464, -0.01228048000484705, 0.02474738098680973, 0.012420295737683773, 0.020075205713510513, -0.0453701987862587, 0.010666773654520512, -0.0473509207367897, 0.018746957182884216, -0.011202733963727951, 0.06207817420363426, 0.0025822212919592857, -0.0002494108339305967, 0.011342549696564674, 0.0020287842489778996, -0.03294990211725235, 0.01530981995165348, 0.007252939976751804, -0.04303993657231331, 0.02474738098680973, -0.009484165348112583, 0.029244786128401756, 0.05266391858458519, 0.0046051801182329655, 0.027124248445034027, 0.004841119050979614, 0.03143523260951042, 0.007270416710525751, 0.030176891013979912, -0.015018537640571594, 0.023885183036327362, -0.01720898412168026, 0.020622817799448967, -0.018793562427163124, -0.015088445506989956, -0.017069168388843536, -0.00808018259704113, 0.009012287482619286, -0.01469230093061924, 0.035140346735715866, 0.022964730858802795, 0.019469337537884712, -0.02563288062810898, 0.02453765645623207, -0.015519543550908566, 0.009012287482619286, -0.0049925860948860645, 0.010771634988486767, 0.024421144276857376, 0.0257726963609457, 0.024654170498251915, 0.011476539075374603, 0.002289482159540057, 0.012734880670905113, 0.010690076276659966, 0.027427181601524353, -0.07018748670816422, -0.057604070752859116, 0.01079493761062622, -0.019574198871850967, 0.014016524888575077, -0.01593899168074131, -0.021356848999857903, -0.020855844020843506, 0.014039827510714531, -0.015065142884850502, -0.011563924141228199, -0.004998411517590284, -0.0027861192356795073, 0.004721693228930235, 0.01113865152001381, -0.01764008216559887, -0.006367440335452557, -0.015379727818071842, 0.039334818720817566, 0.012303782626986504, 0.007089821621775627, -0.018945029005408287, -0.0003925034834537655, -0.019154751673340797, 0.007631607353687286, -0.02390848658978939, 0.03040991723537445, -0.009204533882439137, 0.01060269121080637, 0.025283340364694595, -0.018583837896585464, 0.023885183036327362, 0.009897787123918533, -0.018968330696225166, -0.030992481857538223, 0.0022778308484703302, 0.00880838930606842, 0.0348840206861496, -0.033066414296627045, -0.033905308693647385, 0.006023726891726255, -0.011266815476119518, -0.038053177297115326, -0.02451435476541519, 0.01029975712299347, 0.012350387871265411, -0.018327509984374046, 0.007899587973952293, 0.0302467979490757, 0.03066624514758587, 0.0009918176801875234, -0.042084529995918274, -0.006559687200933695, -0.01930621825158596, -0.0032332383561879396, -0.030573034659028053, -0.04070967435836792, 0.014913675375282764, -0.011954243294894695, 0.0030584686901420355, 0.010119161568582058, -0.00424398947507143, 0.004104173742234707, 0.00914045237004757, -0.030992481857538223, -0.011156128719449043, 0.006041203625500202, -0.035769518464803696, -0.024677472189068794, -0.021892810240387917, 0.05518059805035591, -0.03427815064787865, 0.009379304014146328, -0.020284928381443024, 0.018210995942354202, 0.016008898615837097, 0.02581930160522461, -0.010101685300469398, -0.013550472445786, 0.00830155797302723, 0.011761996895074844, 0.0021875333040952682, 0.03709776699542999, -0.01974896900355816, -0.0036818135995417833, 0.01530981995165348, 0.02372206561267376, 0.017803199589252472, 0.007550048176199198, -0.009851181879639626, -0.037237584590911865, -0.0070082624442875385, 0.015484590083360672, -0.014925327152013779, -0.016265228390693665, 0.004634308163076639, 0.0008716635638847947, -0.05159199610352516, -0.04665184020996094, 0.008441373705863953, 0.000989633030258119, 0.005484853871166706, 0.013900011777877808, 0.005618843715637922, 0.01113865152001381, -0.005056668072938919, -0.03670162335038185, 0.009682238101959229, 0.014412669464945793, 0.008534584194421768, 0.011278467252850533, 0.005071232095360756, 0.0014636956620961428, -0.013503867201507092, -0.01702256314456463, 0.007911238819360733, -0.025143524631857872, -0.017453661188483238, 0.01680118776857853, -0.014913675375282764, 0.01697595790028572, 0.012245525605976582, -0.020622817799448967, -0.024724077433347702, -0.04182820022106171, -0.04786357656121254, 0.0008053967612795532, 0.034301452338695526, 0.0015554497949779034, -0.0022763744927942753, -0.007619956042617559, -0.0024176465813070536, 0.007212160155177116, 0.027170853689312935, -0.005018801428377628, 0.0007307555642910302, -0.019830528646707535, -0.00946086272597313, -0.036818135529756546, -0.028871944174170494, 0.0013173260958865285, -0.020716028288006783, 0.01353882160037756, -0.02453765645623207, 0.03569960966706276, -0.03821629285812378, 0.022964730858802795, 0.005234350450336933, -0.01553119532763958, -0.026728102937340736, -0.0016340961446985602, -0.02584260329604149, -0.03227412700653076, -0.006909226067364216, 0.0020943228155374527, 0.03462769091129303, -0.0011083307908847928, 0.013468913733959198, -0.005117837339639664, -0.039777569472789764, 0.009082195349037647, -0.02773011475801468, 0.026937827467918396, -0.018385766074061394, 0.0003571854322217405, -0.024397840723395348, -0.014738906174898148, 0.007940366864204407, 0.012874696403741837, -0.008412244729697704, 0.002876417012885213, -0.0027147550135850906, -0.001893337699584663, -0.017943015322089195, 0.008686050772666931, -0.015880733728408813, 0.019597502425312996, -0.020681073889136314, -0.007311196532100439, -0.003416746389120817, -0.000980894546955824, 0.026564985513687134, -0.006862620823085308, -0.039940688759088516, 0.0035682134330272675, -0.0017345886444672942, -0.024024998769164085, 0.01512339897453785, -0.03749391436576843, 0.003507043933495879, -0.04804999753832817, -0.0030031248461455107, -0.008051054552197456, -0.007165554910898209, 0.01911979913711548, -0.005892649758607149, -0.04192141070961952, -0.05704480782151222, 0.016859443858265877, -0.029128272086381912, -0.01783815398812294, -0.020261626690626144, -0.03164495527744293, -0.06958162039518356, 0.016614766791462898, -0.026378564536571503, 0.028615614399313927, -0.023407479748129845, 0.017919713631272316, -0.027380576357245445, 0.04054655507206917, 0.008732656016945839, -0.01313102524727583, -0.020098507404327393, -0.016405044123530388, -0.02686791867017746, 0.017278891056776047, 0.026914523914456367, 0.00837729126214981, 0.04094269871711731, 0.012420295737683773, -0.025050314143300056, -0.011610529385507107, 0.00806270632892847, -0.0011534795630723238, -0.011616354808211327, -0.025050314143300056, -0.05862938612699509, -0.009886135347187519, -0.005784874781966209, -0.0005680012982338667, 0.014401017688214779, -0.008249126374721527, -0.007847156375646591, 0.004459538497030735, -0.009985172189772129, 0.00028199810185469687, 0.0087210051715374, -0.006006249692291021, 0.02227730304002762, 0.023442434147000313, -0.004613918252289295, 0.015869082883000374, 0.022323908284306526, 0.010544435121119022, -0.0016748757334426045, 0.019667409360408783, -0.02432793378829956, 0.03420824185013771, -0.016486601904034615, -0.024840591475367546, 0.02266179583966732, -0.009291918948292732, 0.005691664293408394, -0.019038239493966103, 0.00482364185154438, 0.028009746223688126, 0.015787523239850998, -0.010987184010446072, 0.0036235570441931486, -0.0038303679320961237, -0.013562124222517014, 0.000362282880814746, -0.02600572258234024, -0.01405147835612297, 0.0035711261443793774, -0.017115773633122444, -0.029268087819218636, 0.03861243650317192, -0.007573350798338652, -0.02284821681678295, -0.0027060166466981173, 0.005097447894513607, -0.012618367560207844, 0.010870671831071377, -0.003064294345676899, 0.006414045579731464, -0.029850654304027557, 0.03758712485432625, -0.010940579697489738, 0.016067154705524445, 0.004479928407818079, -0.032623667269945145, -0.021752994507551193, 0.014296156354248524, 0.01186103280633688, 0.03518695384263992, -0.03607245162129402, -0.03152844309806824, 0.0432729609310627, -0.02665819600224495, -0.011989196762442589, 0.020040251314640045, -0.032437246292829514, -0.02663489244878292, -0.016055503860116005, -0.02581930160522461, 0.014074780978262424, 0.002280743792653084, 0.03479081019759178, -0.006099460180848837, 0.03651520237326622, -0.009524945169687271, -0.005114924628287554, 0.026937827467918396, -0.010404619388282299, -0.00976962223649025, 0.014645695686340332, -0.007031565066426992, -0.0021511230152100325, 0.027170853689312935, 0.02896515466272831, -0.004206122364848852, -0.02703103795647621, -0.012606716714799404, 0.027590299025177956, -0.009717191569507122, 0.003043904434889555, 0.033695586025714874, 0.018315857276320457, -0.01217561773955822, -0.013911662623286247, 0.007258765399456024, 0.02183455415070057, -0.02535324916243553, -0.028033049777150154, -0.0005181191372685134, -0.020448047667741776, 0.015204958617687225, -0.046255696564912796, -0.0036701622884720564, 0.005455725360661745, 0.010824066586792469, -0.03889206796884537, 0.014913675375282764, -0.024654170498251915, 0.007049041800200939, -0.016276879236102104, 0.04462451487779617, -0.016894398257136345, -0.0009605048107914627, 0.018746957182884216, 0.023034637793898582], [0.017706437036395073, 0.012977177277207375, 0.03432672843337059, 0.0033065215684473515, -0.06150299683213234, -0.008219633251428604, -0.0066300141625106335, 0.015273923054337502, 0.01004684716463089, -0.010154330171644688, -0.029936889186501503, 0.03509607911109924, 0.01048243697732687, -0.07345059514045715, 0.008790991269052029, 0.0218360535800457, 0.0014227376086637378, 0.040820974856615067, -0.01850973255932331, 0.0036374565679579973, 0.039961107075214386, 0.017604609951376915, 0.016891827806830406, 0.04760938510298729, -0.0062227095477283, 0.004867855925112963, 0.041183020919561386, -0.01223045215010643, 0.024438276886940002, -0.044848762452602386, 0.042314425110816956, -0.012886665761470795, 0.05838032811880112, -0.03720048815011978, 0.07598493993282318, 0.026701079681515694, -0.018826523795723915, 0.03256174176931381, -0.025366026908159256, -0.005662665702402592, -0.07014690339565277, 0.005727720912545919, -0.03432672843337059, 0.014414058066904545, -0.0435137078166008, 0.040323156863451004, -0.011947602033615112, -0.009797939099371433, 0.00298124342225492, 0.056570086628198624, -0.007099545560777187, 0.012569872662425041, 0.001989852637052536, 0.06630013883113861, 0.06562130153179169, -0.015172096900641918, 0.0072635989636182785, 0.005012109410017729, 0.021643714979290962, -0.026972616091370583, -0.028285043314099312, 0.006273622624576092, -0.03674792870879173, 0.03783407434821129, -0.003595029003918171, -0.006799724418669939, -0.001801757258363068, 0.05231601372361183, -0.04034578427672386, 0.01302243396639824, 0.000754503533244133, 0.01712942123413086, 0.005391129292547703, -0.046523239463567734, -0.01004684716463089, 0.01424434781074524, 0.05005321279168129, 0.01904148980975151, -0.01801191456615925, 0.0029303303454071283, -0.03032156638801098, -0.010256156325340271, -0.010109074413776398, 0.008400657214224339, -0.04498453065752983, -0.021790796890854836, 0.006177453324198723, 0.04011950269341469, -0.014504569582641125, 0.003651598934084177, 0.016190357506275177, -0.014617710374295712, 0.024302508682012558, 0.08820407837629318, -0.024845581501722336, -0.014448000118136406, 0.01022221427410841, -0.021462690085172653, -0.015104212798178196, 0.06272491067647934, 0.02864709123969078, 0.00170841661747545, 0.03102303482592106, -0.011721321381628513, 0.024483533576130867, -0.10798098146915436, -0.04192974790930748, 0.004271041601896286, 0.005094136111438274, -0.027560945600271225, -0.06512348353862762, -0.000876129197422415, -0.012196510098874569, 0.05670585483312607, 0.0410698801279068, 0.008536425419151783, 0.04833348095417023, -0.03181501477956772, 0.021292980760335922, 0.012060741893947124, -0.025795958936214447, 0.023125851526856422, 4.065974735567579e-06, -0.0531306229531765, -0.016665546223521233, 0.009599943645298481, -0.021598458290100098, -0.044690366834402084, -0.018068484961986542, -0.0035130023024976254, 0.03188290074467659, -0.00943589024245739, 0.04430568963289261, -0.008858875371515751, 0.004983824677765369, -0.03414570167660713, -0.0016476036980748177, -0.039101243019104004, -0.03706471994519234, 0.009266179986298084, 0.020908303558826447, -0.03362525999546051, 0.0004826135409530252, 0.007755758706480265, -0.03308218717575073, -0.014402743428945541, 0.004418123513460159, 0.03509607911109924, 0.05231601372361183, -0.028239786624908447, -0.05584598705172539, 0.04711156710982323, -0.010635175742208958, 0.003710997523739934, -0.014266975224018097, 0.04428306221961975, -0.034462496638298035, 0.04996269941329956, 0.010844484902918339, 0.018724698573350906, -0.03887496143579483, -0.019154630601406097, 0.01693708263337612, -0.03023105300962925, 0.02287694253027439, -0.021734226495027542, -0.03111354634165764, 0.018498416990041733, -0.04437357559800148, -0.029393816366791725, -0.026067495346069336, -0.025886470451951027, -0.009345377795398235, 0.01424434781074524, -0.051772940903902054, -0.01669948920607567, 0.03930489346385002, -0.003261265344917774, 0.007540792226791382, -0.06761256605386734, 0.0421333983540535, -0.013848356902599335, 0.0034592607989907265, -0.03957642987370491, -0.006884579546749592, -0.0004861491615884006, -0.020919617265462875, 0.031837642192840576, -0.03505082428455353, 0.04715682193636894, -0.008949387818574905, 0.03233546018600464, 0.002612123731523752, 0.027379920706152916, -0.04283486679196358, 0.05181819945573807, -0.017876146361231804, -0.035865433514118195, 0.029642725363373756, -0.005074336659163237, 0.031656619161367416, -0.016280870884656906, -0.0074389660730957985, 0.00887018907815218, -0.07770466804504395, -0.03672529757022858, 0.024664556607604027, -0.009673484601080418, 0.04846924915909767, 0.014606395736336708, 0.01615641638636589, -0.059873778373003006, -0.03993847966194153, 0.00969611294567585, -0.04711156710982323, -0.027990877628326416, 0.006969434674829245, 0.043015893548727036, -0.0067092119716107845, -0.013769159093499184, 0.003436632687225938, -0.04134141653776169, -0.019380910322070122, -0.010652147233486176, -0.012784839607775211, 0.004947053734213114, 0.016439266502857208, -0.023691551759839058, -0.012468046508729458, -0.0607789009809494, -0.027560945600271225, 0.0422917939722538, 0.013045061379671097, -0.011127335950732231, 0.016179043799638748, 0.04638747125864029, -0.005535382777452469, -0.017446214333176613, 0.031656619161367416, 0.01798928715288639, 0.00700903357937932, 0.02882811613380909, -0.015443633310496807, -0.019935298711061478, 0.0032725795172154903, -0.0031141832005232573, -0.0033404636196792126, -0.0002112539077643305, 0.048695530742406845, 0.02437039278447628, -0.0005985822062939405, -0.027108384296298027, 0.0075125074945390224, -0.07711634039878845, 0.017367016524076462, 0.033942051231861115, -0.004155072849243879, -0.02943907305598259, 0.05593650043010712, -0.029371188953518867, 0.03242597356438637, -0.0033602630719542503, 0.007676560431718826, 0.03491505607962608, -0.05095833167433739, -0.01975427381694317, 0.05928545072674751, -0.08204925060272217, -0.025117117911577225, 0.026836847886443138, -0.0450524166226387, -0.003770396113395691, 0.024302508682012558, 0.0053458730690181255, -0.017412271350622177, 0.020727278664708138, -0.019720330834388733, -0.043807875365018845, 0.007806671783328056, 2.1688882043235935e-05, -0.06462566554546356, -0.01984478533267975, 0.010759630240499973, -0.03916912525892258, 0.0015952764078974724, -0.014572453685104847, 0.026180636137723923, -0.009441547095775604, -0.027131013572216034, 0.06507822871208191, 0.006952463649213314, -0.03199604153633118, -0.04819771274924278, -0.012524616904556751, 0.03916912525892258, -0.025976983830332756, 0.010459808632731438, -0.02400834485888481, 0.03606908768415451, 0.019279085099697113, 0.006177453324198723, 0.022152844816446304, 0.003968391567468643, 0.03622748330235481, -0.06856293976306915, -0.028352927416563034, -0.008361058309674263, 0.026429543271660805, -0.009775310754776001, -0.03579755127429962, -0.016133788973093033, 0.02541128173470497, -0.0519087091088295, 0.0029614439699798822, -0.03276539221405983, -0.03206392377614975, -0.003778881626203656, -0.004536920692771673, -0.0018922693561762571, -0.007359768263995647, 0.026406915858387947, 0.03941803425550461, -0.016269557178020477, -0.02989163249731064, 0.005775805562734604, -0.025637563318014145, 0.0017197305569425225, 0.008723107166588306, -0.02812664583325386, 0.024777697399258614, -0.025614934042096138, 0.03353474661707878, -0.00213834922760725, -0.012739582918584347, -0.007704845629632473, 0.024574045091867447, 0.003320663934573531, 0.004862198606133461, -0.02470981329679489, -0.023193735629320145, -0.0002886842121370137, 0.012309650890529156, 0.04297063499689102, -0.0595569871366024, 0.024483533576130867, 0.026927361264824867, 0.04874078556895256, 0.0632227286696434, -0.0218360535800457, 0.012343592941761017, -0.002875174628570676, -0.000597167934756726, 0.021949192509055138, 0.018475789576768875, -0.07670903205871582, 0.0010451322887092829, 0.0009517917060293257, -0.004497321788221598, -0.07281701266765594, 3.0163346309564076e-05, -0.025818586349487305, -0.0062283664010465145, 0.022673290222883224, 0.0723644495010376, -0.015036328695714474, 0.02270723134279251, -0.004030618350952864, 0.0024989834055304527, 0.03566178306937218, -0.019460109993815422, 0.035955946892499924, 0.007834956981241703, -0.03627273812890053, -0.008983329869806767, -0.0006056534475646913, -0.05335690453648567, 0.03005002997815609, 0.01249067485332489, -3.626230682129972e-05, 0.0038807077798992395, 0.035955946892499924, 0.004423780832439661, -0.0021468347404152155, 0.013214771635830402, 0.0894712433218956, 0.011721321381628513, -0.05815404653549194, -0.01984478533267975, 0.04534658044576645, -0.0087796775624156, -0.053945232182741165, -0.003258436918258667, 0.0017409443389624357, -0.019414853304624557, -0.02629377506673336, 0.0024706984404474497, 0.03792458400130272, -0.012954549863934517, 0.015839623287320137, -0.025524422526359558, 0.01659766212105751, -0.045640744268894196, 0.008032952435314655, -0.06218183785676956, 0.016371382400393486, 0.011823147535324097, 0.028285043314099312, -0.02846606634557247, 0.030547846108675003, -0.006658298894762993, 0.0273346658796072, -0.037788815796375275, 0.04183923453092575, -0.02009369432926178, 0.0007053582230582833, 0.01253593061119318, 0.03222231939435005, 0.03468877449631691, -0.004109816625714302, -0.009973306208848953, 0.008044266141951084, 0.02577333152294159, -0.029823748394846916, 0.022118903696537018, -0.034190960228443146, 0.0106125483289361, 0.026316404342651367, 0.05032474920153618, 0.0037590821739286184, -0.057792000472545624, -0.03242597356438637, -0.008983329869806767, 0.007699188776314259, 0.0310004074126482, -0.018283450976014137, -0.03561652451753616, 0.007195714861154556, -0.01887178048491478, -0.031158803030848503, -0.013723902404308319, -0.029914261773228645, -0.007682217750698328, -0.04604804888367653, 0.04941962659358978, -0.016710802912712097, 0.0273346658796072, -0.008785334415733814, 0.03147559612989426, 0.012015486136078835, 0.020987501367926598, -0.004138101823627949, -0.02525288611650467, -0.05453356355428696, 0.018758639693260193, -0.05661534145474434, 0.024053599685430527, -0.03154347836971283, -0.06634539365768433, 0.04177135229110718, -0.06064313277602196, 0.027900366112589836, 0.04523343965411186, 0.03520921990275383, 0.05933070555329323, 0.021089328452944756, 0.03652164712548256, 0.010007248260080814, -0.02080647647380829, -0.0580182783305645, -0.01555677317082882, -0.0461159348487854, 0.018147682771086693, 0.02193787880241871, -0.0021128926891833544, -0.03550338372588158, -0.0018993406556546688, -0.02228861302137375, -0.026135379448533058, -0.07363162189722061, 0.042223911732435226, -0.016439266502857208, 0.0001684727903921157, -0.06263440102338791, -0.023555783554911613, 0.050279490649700165, 0.03566178306937218, 0.03369314223527908, -0.014199091121554375, -0.020059751346707344, -0.05145614966750145, 0.006714869290590286, -0.006635671015828848, 0.03423621505498886, -0.009119098074734211, -0.034711405634880066, 0.03102303482592106, 0.013508936390280724, -0.0035497727803885937, 0.06028108298778534, 0.010895398445427418, 0.00895504467189312, -0.02149663306772709, 0.03889758884906769, -0.01675605960190296, 0.0595569871366024, -0.010493750683963299, -0.009469832293689251, 0.01853235997259617, -0.03369314223527908, -0.03400993347167969, -0.0459575355052948, 0.018984921276569366, -0.001387381344102323, -0.037155233323574066, 0.010584263131022453, -0.03337635099887848, 0.011172591708600521, 0.02342001534998417, -0.033489491790533066, -0.007976382039487362, -0.0046472325921058655, 0.020749907940626144, -0.026859477162361145, -0.02412148378789425, -0.003252779832109809, 0.011947602033615112, -0.02962009608745575, -0.014651652425527573, 0.013531564734876156, 0.005478812847286463, 0.013260028325021267, -0.04376261681318283, -0.015952764078974724, 0.03919175639748573, 0.03609171509742737, -0.027221525087952614, 0.005509926471859217, -0.02602223865687847, -0.012264394201338291, -0.008706135675311089, 0.008202662691473961, -0.013599448837339878, 0.008626937866210938, 0.0007276327232830226, 0.018328707665205002, 0.0011490798788145185, 0.012343592941761017, 0.02228861302137375, 0.008807961829006672, -0.002169462852180004, 0.004321954678744078, 0.013599448837339878, 0.04769989475607872, -0.0015019357670098543, 0.0042229569517076015, -0.035344988107681274, 0.04955539479851723, -0.012762211263179779, 0.008734420873224735, 0.0039061643183231354, 0.0064037335105240345, 0.028850743547081947, 0.007478565443307161, -0.009622571058571339, 0.0027988050132989883, 0.038377147167921066, -0.007195714861154556, -0.01766118034720421, -0.013463680632412434, -0.029597468674182892, -0.035073451697826385, 0.02857920713722706, 0.007761415559798479, 0.039282266050577164, 0.0494648814201355, 0.03844502940773964, 0.012909293174743652, -0.06028108298778534, -0.009475489147007465, 0.020037123933434486, 0.02227729931473732, 0.016450580209493637, -0.0002324676897842437, -0.03317269682884216, -0.005888945888727903, 0.006086941342800856, -0.001674474566243589, -0.052632808685302734, 0.016111159697175026, 0.028873370960354805, -0.00718440068885684, -0.02315979264676571, 0.032720137387514114, -0.008660879917442799, -0.005269503220915794, 0.0071108597330749035, -0.038739193230867386, 0.01070305984467268, -0.023035338148474693, 0.02776459790766239, 0.011902346275746822, -0.011274417862296104, -0.003538458840921521, 0.019098060205578804, 0.023216363042593002, -0.008372372947633266, -0.00718440068885684, -0.02593172714114189, 0.02470981329679489, 0.01677868701517582, 0.03919175639748573, -0.014131207019090652, 0.035593897104263306, -0.00535152992233634, -0.021530574187636375, -0.010652147233486176, -0.0384676568210125, -0.035412874072790146, -0.03706471994519234, 0.0033970335498452187, -0.006081284023821354, -0.0013392968103289604, 0.016461893916130066, -0.02342001534998417, -0.0029444729443639517, -0.018487103283405304, -0.02654268406331539, -0.042404934763908386, -0.019165944308042526, -0.0374041385948658, 0.013260028325021267, 0.03269750997424126, -0.019505364820361137, -0.014402743428945541, 0.008287517353892326, -0.0224470105022192, -0.004545406438410282, 0.00039740485954098403, -0.005136563908308744, -0.022480951622128487, -0.005077165085822344, 0.007693531457334757, 0.008264889009296894, -0.021519260480999947, 0.042246539145708084, -0.0009433061932213604, 0.025886470451951027, 0.020987501367926598, 0.02577333152294159, -0.000648434623144567, 0.0078236423432827, -0.03957642987370491, 0.033580001443624496, -0.029755864292383194, 0.01801191456615925, 0.001612247433513403, -0.02778722532093525, 0.05738469585776329, 0.03588806092739105, 0.02043311484158039, -0.008270546793937683, 0.013599448837339878, -0.016394009813666344, -0.02001449652016163, 0.01947142370045185, 0.022051019594073296, 0.011070765554904938, -0.013814414851367474, 0.03609171509742737, -0.013305284082889557, -0.008004667237401009, -0.009667827747762203, 0.04104725271463394, -0.02821715921163559, -0.04324217140674591, 0.016575034707784653, -0.00837802980095148, -0.0006834373343735933, -0.009475489147007465, 0.03353474661707878, -0.03213180974125862, -0.02751568891108036, -0.041364047676324844, 0.03032156638801098, 0.022299926728010178, -0.006437675561755896, 0.018554987385869026, -0.024596672505140305, 0.002285431372001767, -0.0009128997335210443, -0.0021284495014697313, 0.004186186473816633, -0.009650856256484985, 0.01913200318813324, 0.03828663378953934, 0.04034578427672386, 0.013474994339048862, -0.00775010185316205, -0.010408896021544933, 0.0022430038079619408, -0.0027139498852193356, 0.030683614313602448, 0.008298831060528755, -0.055076636373996735, 0.0029048738069832325, -0.03147559612989426, 0.003841108875349164, -0.015172096900641918, 0.03041207790374756, -0.008445913903415203, -0.01737833023071289, 0.001384552801027894, -0.04111513867974281, -0.005690950434654951, -0.0361822247505188, 0.005883289035409689, -0.01675605960190296, -0.021813424304127693, 0.021078012883663177, 0.006465960759669542, -0.02010500803589821, 0.012434104457497597, -0.028896000236272812, -0.04045892506837845, 0.021858680993318558, -0.002086021937429905, -0.036476392298936844, -0.008988986723124981, -0.025728074833750725, 0.012196510098874569, 0.01614510267972946, 0.0031424681656062603, 0.028873370960354805, 0.010708716697990894, -0.015296551398932934, -0.003136811312288046, -0.022990083321928978, -0.0003121961490251124, -0.00014619831927120686, -0.011823147535324097, 0.005552353803068399, -0.034824542701244354, -0.0065564727410674095, -0.047202080488204956, -0.004457722883671522, 0.01131401676684618, 0.007224000059068203, -0.015364435501396656, -0.00812912080436945, 0.013214771635830402, -0.003289550542831421, 0.006482931785285473, -0.05326639115810394, -0.014346173964440823, 0.0063245357014238834, 0.02280905842781067, 0.013112945482134819, -0.0007877384196035564, 0.002262803493067622, -0.01693708263337612, 0.008813619613647461, -0.004186186473816633, 0.013112945482134819, 0.02034260332584381, -0.0014481941470876336, -0.04077571630477905, -0.014357487671077251, -0.0009928049985319376, 0.008632594719529152, -0.033331092447042465, 0.00926052313297987, 0.01065780408680439, 0.02036523073911667, 0.03552601486444473, 0.0386260524392128, 0.02681422047317028, -0.0187812689691782, -0.0030972121749073267, -0.050188980996608734, -0.023216363042593002, -0.01818162575364113, 0.003496031276881695, 0.017774321138858795, 0.035163965076208115, 0.020546255633234978, 0.02219810150563717, 0.002176533918827772, 0.02409885637462139, -0.00651121698319912, 0.008372372947633266, 0.004225785378366709, 0.010884084738790989, -0.02079516276717186, -0.019935298711061478, -0.007931126281619072, -0.021338235586881638, 0.023872576653957367, -0.019414853304624557, 0.005722064059227705, -0.0007644032593816519, -0.009509431198239326, 0.028805486857891083, 0.015828309580683708, 0.026248520240187645, 0.03186027333140373, -0.027674086391925812, -0.034190960228443146, -0.0021850194316357374, 0.02699524536728859, -0.03199604153633118, 0.011104707606136799, 0.039780084043741226, 0.010776600800454617, 0.01187971793115139, 0.007331483066082001, -0.053945232182741165, -0.023261619731783867, -0.005272332113236189, -0.027221525087952614, -0.05566496402025223, 0.011234818957746029, -0.0002925734152086079, 0.022062333300709724, -0.015477575361728668, 0.03439461067318916, 0.019776901230216026, -0.02620326355099678, 0.020071066915988922, -0.0028171902522444725, -0.013260028325021267, 4.843813439947553e-05, -0.006828009150922298, 0.006335849408060312, -0.0155002037063241, -0.004610462114214897, 0.026361659169197083, -0.018837837502360344, 0.02123641036450863, 0.01798928715288639, 0.020150264725089073, 0.020998815074563026, -0.013045061379671097, 0.006499902810901403, 0.024144113063812256, -0.03355737403035164, 0.00887018907815218, 0.006596072111278772, -0.0386260524392128, -0.0267237089574337, 0.011065108701586723, -0.0242798812687397, 0.004621775820851326, -0.052813831716775894, 0.04507504403591156, 6.708858563797548e-05, -0.005031908862292767, -0.029416443780064583, 0.003626142395660281, -0.026406915858387947, -0.025026606395840645, -0.0010677604004740715, 0.00024890838540159166, -0.0015486060874536633, 0.013079003430902958, 0.025433911010622978, 0.02010500803589821, 0.032199691981077194, -0.018656814470887184, -0.0007622818811796606, -0.0005444870912469923, 0.05371895432472229, 0.0157264843583107, 0.03921438381075859, -0.017491471022367477, -0.028081391006708145, -0.01485530473291874, -0.013531564734876156, 0.013192144222557545, 0.03041207790374756, 0.0015316350618377328, 0.03344423323869705, -0.0064772749319672585, -0.015081584453582764, 0.01616773009300232, -0.03557126969099045, 0.0006197959883138537, 0.01467427983880043, 0.05693213269114494, 0.03188290074467659, 0.005337387323379517, 0.006194424349814653, 0.021383492276072502, 0.022051019594073296, -0.021541887894272804, -0.0011490798788145185, 0.005031908862292767, -0.006217052228748798, -0.005402442999184132, -0.018057171255350113, -0.025705447420477867, -0.021168526262044907, 0.004327611532062292, -0.03387416526675224, -0.00877401977777481, -0.05050577223300934, 0.013622076250612736, 0.010578606277704239, -0.030027400702238083, -0.0006636378238908947, 0.016654232516884804, -0.027900366112589836, -0.0014057665830478072, -0.017016282305121422, -0.02017289213836193, 0.03937277942895889, -0.0035214878153055906, -0.026248520240187645, 0.030909894034266472, -0.007535135373473167, 0.013339226134121418, 0.07313380390405655, -0.007506850175559521, -0.02821715921163559, -0.0023052310571074486, -0.03050258941948414, -0.000354800489731133, -0.018554987385869026, -0.0055947815999388695, 0.010686089284718037, -0.01772906444966793, -0.006301907356828451, 0.04360422119498253, -0.004279526881873608, 0.008898474276065826, 0.0034875457640737295, -0.0019106545951217413, 0.00790849793702364, 0.002298159757629037, 0.05249704048037529, -0.03704209253191948, 0.021440062671899796, 0.008032952435314655, -0.023012710735201836, 0.011370587162673473, -0.008502483367919922, -0.028171902522444725, 0.013576820492744446, -0.01930171251296997, 0.003889193292707205, -0.012694327160716057, 0.025433911010622978, -0.018996234983205795, 0.02857920713722706, -0.020648080855607986, 0.006584757938981056, 0.005029080435633659, 0.023623667657375336, 0.013180829584598541, -0.0021524918265640736, -0.023442642763257027, -0.0224470105022192, 0.006160482298582792, 0.015692541375756264, -0.02289956994354725, 0.06476143002510071, -0.0017565011512488127, -0.019946612417697906, -0.03606908768415451, -0.005427899770438671, 0.011517669074237347, -0.00626796530559659, -0.0180911123752594, 0.051229868084192276, 0.036657415330410004, -0.016190357506275177, 0.02812664583325386, 0.01131401676684618, 0.030728871002793312, -0.008723107166588306, 0.0112235052511096, 0.028058761730790138, 0.024347765371203423, 0.014085951261222363, 0.016099845990538597, -0.006273622624576092, 0.009345377795398235, 0.016823943704366684, -0.0062057385221123695, 0.009181324392557144, -0.022401753813028336, 0.024415649473667145, -0.0002284017245983705, 0.03584280610084534, 0.011630809865891933, -0.0020718793384730816, 0.0074163381941616535, 0.01096328254789114, -0.013520250096917152, -0.010058160871267319, 0.004788657650351524, 0.02095356024801731, 0.03005002997815609, 0.02375943586230278, 0.026067495346069336, 0.03792458400130272, 0.013011119328439236, 0.008972015231847763, -0.008191348053514957, 0.009769653901457787, -0.06236286088824272, 0.017502784729003906, -0.04471299424767494, 0.0011992858489975333, 0.007970725186169147, -0.019064119085669518, -0.028986511752009392, -0.005815404932945967, -0.02210758998990059, -0.016733430325984955, 0.033580001443624496, -0.0029727579094469547, 0.017242562025785446, 0.0006098962039686739, 0.022333869710564613, 0.01651846431195736, -0.04919334501028061, 0.018136369064450264, -0.009758339263498783, 0.03450775146484375, 0.01589619368314743, 0.01551151741296053, 0.001315961591899395, 0.029914261773228645, 0.038920219987630844, 0.0006056534475646913, 0.015353120863437653, -0.0093906344845891, -0.010374953970313072, -0.043468452990055084, 0.02602223865687847, -0.014538511633872986, 0.008310145698487759, -0.04355896636843681, -0.02105538547039032, 0.028601834550499916, -0.00816306285560131, 0.021949192509055138, 0.011579896323382854, 0.04059469327330589, 0.0015443633310496807, 0.023917831480503082, 0.03966694325208664, -0.017977973446249962, -0.043898385018110275, 0.0035412872675806284, -0.011653437279164791, -0.039961107075214386, -0.01615641638636589, -0.010940654203295708, -0.006714869290590286, -0.0017579153645783663, -0.014685594476759434, -0.007354110945016146, 0.0314529687166214, 0.03156610578298569, -0.02200576290488243, -0.004109816625714302, 0.0007771315285935998, 0.005614581052213907, -0.014470627531409264, -0.02525288611650467, 0.025569679215550423, 0.004488836042582989, 0.01853235997259617, 0.02541128173470497, -0.013373168185353279, -0.040820974856615067, -0.006301907356828451, -0.04143192991614342, 0.002204819116741419, -0.03919175639748573, 0.017887460067868233, 0.00015813106438145041, 0.005218590144068003, 0.019007548689842224, -0.008807961829006672, -0.01004684716463089, 0.0006714161718264222, 0.005317587871104479, -0.016631605103611946, -0.01800060085952282, 0.03197341039776802, -0.011234818957746029, 0.02270723134279251, 0.029054395854473114, -0.007105202879756689, 0.029665352776646614, -0.017152050510048866, 0.03552601486444473, 0.013723902404308319, 0.03975745663046837, 0.028511323034763336, 0.004802800249308348, -0.0030491275247186422, 0.053764209151268005, -0.0448940210044384, -0.002288260031491518, -0.010606890544295311, 0.02226598560810089, 0.014776105992496014, 0.019946612417697906, -0.005775805562734604, 0.011981544084846973, 0.015092899091541767, 0.015364435501396656, 0.0013711174251511693, 0.003965563140809536, 0.04344582557678223, -0.006675269920378923, 0.019856099039316177, -0.027651457116007805, 0.00712217390537262, -0.021519260480999947, 0.0011469584424048662, 0.0242798812687397, 0.009650856256484985, -0.003889193292707205, 0.03233546018600464, 0.006256651598960161, -0.007982038892805576, -0.012004172429442406, -0.023736808449029922, -0.0223678108304739, -0.047383103519678116, 0.029461700469255447, -0.010652147233486176, 0.004876341205090284, -0.009005957283079624, -0.028533950448036194, 0.01853235997259617, 0.03731362894177437, 0.017502784729003906, -0.023714179173111916, -0.005314759444445372, 0.005524068605154753, 0.0326748825609684, -0.0031820673029869795, 0.05693213269114494, 0.008253575302660465, -0.01766118034720421, 0.019018862396478653, 3.922340056305984e-06, -0.04129616171121597, -0.008615624159574509, -0.011195220053195953, -0.04027790203690529, 0.022062333300709724, -0.02027471922338009, 0.01853235997259617, 0.03672529757022858, -0.003770396113395691, 0.03224494680762291, -0.002715364098548889, -0.001646189484745264, -0.00652818800881505, 0.00718440068885684, -0.020161578431725502, 0.0017268018564209342, 0.008841903880238533, -0.0022840171586722136, -0.021010128781199455, -0.04333268478512764, 0.002173705492168665, -0.018125055357813835, -0.017355702817440033, 0.010635175742208958, 0.0062227095477283, -0.025366026908159256, 0.051229868084192276, -0.021032758057117462, 0.018396591767668724, 0.01792140305042267, 0.004098502453416586, -0.034123074263334274, -0.03731362894177437, 0.019199887290596962, 0.013192144222557545, -0.020738592371344566, -0.00237028650008142, -0.007789700757712126, 0.023533156141638756, 0.010584263131022453, 0.0338967964053154, -0.018724698573350906, -0.06553078442811966, 0.03256174176931381, -0.0180911123752594, 0.039259638637304306, 0.01519472524523735, -0.0010748315835371614, -0.025547049939632416, -0.005767320282757282, -0.0534474179148674, -0.03466614708304405, -0.02830767072737217, -0.009967649355530739, -0.008055579848587513, 0.015036328695714474, -0.0009326993022114038, -0.021360864862799644, -0.01459508202970028, 0.03645376116037369, 0.0009751268662512302, -0.014911874197423458, -0.023114535957574844, -0.009164353832602501, -0.007518164347857237, 0.003931621089577675, -0.013090318068861961, 0.014527197927236557, -0.03615959733724594, -0.001153322635218501, 0.02226598560810089, -0.0003952834813389927, 0.030593102797865868, 0.006748811341822147, -0.03400993347167969, -0.024415649473667145, 0.005911573767662048, 0.014448000118136406, 0.03889758884906769, -0.021960506215691566, -0.03339897841215134, 0.0087796775624156, 0.0018371135229244828, -0.0242798812687397, -0.015568087808787823, 0.005968144163489342, -0.012207824736833572, -0.0018257994670420885, 0.018758639693260193, 0.03204129636287689, 0.0470210537314415, -0.022956140339374542, -0.0007969310972839594, 0.0006756589282304049, -0.009430233389139175, 0.0001295808469876647, -0.02412148378789425, -0.0482429675757885, 0.011857089586555958, -0.011200876906514168, 0.00015680521028116345, 0.0023561441339552402, 0.009978963062167168, -0.010080789215862751, 0.002023794688284397, -0.03204129636287689, -0.023465272039175034, -0.0037619106005877256, -0.031317200511693954, -0.007235313765704632, -0.004927254281938076, 0.029122279956936836, -0.013203457929193974, 0.016529778018593788, 0.007105202879756689, 0.02464192919433117, 0.02665582485496998, 0.010629518888890743, -0.012468046508729458, -0.020749907940626144, 0.0036091713700443506, -0.016575034707784653, 0.03790195658802986, 0.023080594837665558, 0.012004172429442406, -0.014662966132164001, 0.01947142370045185, 0.02837555482983589, 0.024958722293376923, 0.021372178569436073, -0.0032754079438745975, -0.015047642402350903, -0.021541887894272804, -0.016009334474802017, 0.008327116258442402, -0.025388654321432114, -0.00016688175674062222, -0.006663956213742495, -0.02158714458346367, -0.027198897674679756, 0.047926176339387894, -0.031136175617575645, -0.016541093587875366, 0.016654232516884804, 0.00825923215597868, 0.006731840316206217, 0.004881998524069786, -0.029687980189919472, -0.015387062914669514, 0.024347765371203423, 0.002336344448849559, 0.03023105300962925, -0.009328407235443592, 0.02846606634557247, -0.032358087599277496, -0.01763855293393135, 0.015884879976511, -0.038037724792957306, -0.01632612571120262, -0.0053685009479522705, -0.005911573767662048, 0.018984921276569366, -0.021191153675317764, -0.029665352776646614, -0.01746884174644947, -0.03763042017817497, -0.04688528552651405, 0.0011639294680207968, 0.03509607911109924, -0.022514894604682922, 0.008264889009296894, -0.0027634487487375736, -0.010991567745804787, 0.027017872780561447, 0.005311931017786264, 0.0011469584424048662, -0.002626266097649932, -0.008841903880238533, -0.02348789945244789, -0.04566337168216705, -0.016382696107029915, -0.008892817422747612, -0.015703855082392693, -0.002183605218306184, -0.013135573826730251, 0.047202080488204956, -0.013226086273789406, 0.010454151779413223, -0.005119592882692814, -0.010725688189268112, -0.045980166643857956, 0.013090318068861961, -0.0034196616616100073, -0.0004734208923764527, 0.0016942740185186267, 0.016212986782193184, 0.016620291396975517, -0.020738592371344566, 0.018407905474305153, 0.002637580269947648, -0.03808297961950302, -0.010770943947136402, -0.03308218717575073, 0.010646490380167961, 0.010357982479035854, 0.018905721604824066, -0.018475789576768875, -0.024664556607604027, 0.012434104457497597, 0.010652147233486176, -0.02699524536728859, 0.01754803955554962, -0.007982038892805576, 0.029574841260910034, -0.04177135229110718, -0.012275708839297295, -0.002329273149371147, 0.019358282908797264, -0.018487103283405304, 0.0019361111335456371, 0.015047642402350903, 0.01824950985610485, 0.02785510942339897, 0.015488889068365097, -0.011523325927555561, 0.008723107166588306, 0.01887178048491478, -0.010159987024962902, -0.021179839968681335, -0.04500715807080269, -0.012060741893947124, -0.024234624579548836, -0.015364435501396656, 0.020557569339871407, -0.02130429446697235, -0.004667032044380903, 0.008253575302660465, -0.02097618766129017, -0.029212791472673416, 0.026180636137723923, -0.021632401272654533, -0.020670708268880844, -0.030457334592938423, -0.008836247026920319, -0.050098467618227005, -0.0040051620453596115, -0.010844484902918339, 0.004514292813837528, -0.029031768441200256, 0.017955344170331955, -0.010199585929512978, 0.02821715921163559, 0.016812629997730255, -0.014764792285859585, -0.009379319846630096, -0.025366026908159256, -0.00700903357937932, 0.02717626839876175, 0.0010762459132820368, 0.005294959992170334, 0.034734033048152924, -0.017876146361231804, -0.004562377464026213, -0.01302243396639824, -0.01800060085952282, -0.023623667657375336, -0.022684603929519653, -0.004290841054171324, -0.06512348353862762, -0.002440999262034893, 0.005939858965575695, 0.00048119929851964116, -0.007484222296625376, 0.01975427381694317, 0.02166634239256382, -0.005713578779250383, 0.007761415559798479, -0.011868404224514961, 0.0011915074428543448, -0.0017352873692288995, 0.009831881150603294, 0.02131560817360878, 0.011495041660964489, 0.00022080010967329144, 0.011562925763428211, 0.015579401515424252, -0.013067689724266529, 0.020942244678735733, -0.008592995814979076, 0.033331092447042465, -0.010861456394195557, -0.016394009813666344, 0.02446090430021286, -0.03810561075806618, -0.0015981049509719014, -0.010216557420790195, 0.020127635449171066, 0.01905280537903309, 0.005139392334967852, 0.00397121999412775, 0.03826400637626648, 0.0017508441815152764, -0.004635918419808149, -0.01792140305042267, 0.006771439220756292, -0.03014054149389267, 0.010391924530267715, -0.0026248518843203783, 0.015602029860019684, 0.024777697399258614, 0.017095480114221573, -0.02384994737803936, -0.01835133507847786, 0.02351052686572075, 0.018747325986623764, -0.01083317119628191, 0.012762211263179779, -0.014651652425527573, -0.036046456545591354, 0.04751887172460556, -0.008892817422747612, -0.0008860289817675948, -0.0248908381909132, -0.011234818957746029, 0.016280870884656906, -0.013463680632412434, -0.00016909152327571064, -0.0027422348503023386, -0.01800060085952282, -0.004664203617721796, 0.015952764078974724, -0.010533349588513374, -0.010793572291731834, 0.003931621089577675, -0.00713914493098855, -0.01745752803981304, -0.012366220355033875, 0.00018650450510904193, 0.03636325150728226, -0.0100015914067626, 0.016744745895266533, 0.011534640565514565, 0.05032474920153618, -0.006443332880735397, -0.011653437279164791, 0.023024024441838264, -0.00019905598310288042, -0.023035338148474693, -0.0070882318541407585, -0.007642618380486965, -0.00011216787243029103, 0.028330298140645027, 0.011596867814660072, 0.01345236599445343, -0.011019852943718433, -0.004811285529285669, -0.020546255633234978, -0.010782258585095406, 0.004590662196278572, 0.052451781928539276, 0.00742765236645937, -0.02351052686572075, -0.00041543657425791025, 0.004123959224671125, 0.025818586349487305, -0.019177258014678955, -0.017774321138858795, 0.011981544084846973, -0.013554192148149014, 0.02559230662882328, -0.03466614708304405, 0.0081687206402421, 0.019279085099697113, 0.013463680632412434, -0.012909293174743652, 0.0004119009245187044, -0.01798928715288639, 0.003167924704030156, -0.014380116015672684, 0.019007548689842224, -0.010154330171644688, 0.003133982652798295, 0.011104707606136799, -0.001347075100056827], [-0.010414941236376762, 0.03127187490463257, 0.04384555295109749, 0.018871333450078964, -0.07812558859586716, -0.013201276771724224, 0.019293341785669327, 0.0066385106183588505, 0.017951572313904762, 0.04579328000545502, 0.006660152226686478, -0.02085152454674244, -0.009868495166301727, -0.04051277041435242, -0.0429798923432827, 0.020591827109456062, -0.011491603218019009, 0.07808230817317963, -0.015549372881650925, -0.022290680557489395, -0.004060474690049887, 0.03707178309559822, -0.01930416189134121, 0.045144036412239075, -0.024346616119146347, -0.01288747601211071, 0.019087746739387512, -0.006611458957195282, -0.029151014983654022, -0.00534813990816474, 0.04877980053424835, -0.011653914116322994, 0.04265527427196503, -0.012627778574824333, 0.049515608698129654, 0.021003015339374542, -0.06868992000818253, -0.00450682919472456, 0.0030568530783057213, 0.005134430713951588, -0.04226572811603546, 0.05167975276708603, -0.015289675444364548, -0.01315799355506897, -0.027571190148591995, 0.07899124175310135, 0.03847847506403923, -0.004103757441043854, -0.0111128780990839, 0.04843353480100632, 0.020375413820147514, 0.0017678348813205957, 0.0023846158292144537, 0.04566343128681183, 0.04544701799750328, 0.027073437348008156, 0.01953139714896679, -0.026835381984710693, -0.011405037716031075, -0.0010617830557748675, -0.022204114124178886, 0.0034707454033195972, -0.02791745401918888, -0.019250057637691498, 0.013038965873420238, 0.008066846057772636, 0.002318338956683874, 0.012476288713514805, -0.02235560491681099, 0.01707509346306324, 0.01579824835062027, -0.010988439433276653, -0.008077666163444519, -0.04014486446976662, -0.01807059906423092, -0.01585235260426998, 0.03471286594867706, 0.01288747601211071, 0.03999337553977966, 0.004130809102207422, -0.008239977061748505, 0.00997129175812006, -0.011199443601071835, 0.025515254586935043, -0.014694536104798317, 0.03975531831383705, -0.015571014024317265, -0.006449148058891296, -0.04226572811603546, -0.0028864266350865364, 0.005767442751675844, 0.033176321536302567, 0.008689036592841148, 0.05973036587238312, 0.02313469536602497, -0.006065012887120247, 0.038456834852695465, 0.009403204545378685, -0.036444179713726044, 0.05665728077292442, 0.019477292895317078, 0.003957677632570267, 0.04566343128681183, 0.027376417070627213, 0.061851225793361664, -0.06405865401029587, -0.061548247933387756, 0.041097089648246765, 0.0312502346932888, -0.013071428053081036, 0.013969548046588898, 0.02218247391283512, -0.031206952407956123, 0.013850519433617592, 0.01853589154779911, -0.000540021457709372, 0.012519570998847485, -0.010149833746254444, 0.060725871473550797, -0.05055439844727516, -0.05592147260904312, 0.014066933654248714, -0.0042985305190086365, -0.09487605839967728, 0.007877483032643795, 0.007709762081503868, 0.005266984924674034, -0.01603630557656288, -0.012216591276228428, 0.011902790516614914, -0.020710855722427368, -0.02103547751903534, 0.031445007771253586, -0.006351761985570192, 0.01717248000204563, -0.019012002274394035, 0.027398059144616127, 0.012692702934145927, -0.0031055461149662733, -0.01821126975119114, -0.016425849869847298, -0.012054280377924442, -0.009327459149062634, -0.0036682235077023506, -0.12266366183757782, -0.0312502346932888, 0.016241898760199547, 0.0874314084649086, 0.002361621707677841, -0.03661731258034706, -0.017518743872642517, 0.05423344299197197, -0.005009992513805628, 0.07708679884672165, -0.0004220080154482275, -0.013038965873420238, -0.02289664000272751, 0.04051277041435242, -0.0010861295741051435, 0.002110040048137307, -0.04354257136583328, -0.043369438499212265, 0.03146664798259735, -0.007720582652837038, 0.03943069651722908, 0.015084081329405308, -0.01113451924175024, 0.02276679128408432, -0.04053441062569618, -0.03657402843236923, -0.03133679926395416, -0.048693232238292694, -0.01899036020040512, -0.021695541217923164, -0.041226938366889954, -0.007125443313270807, -0.005066801328212023, -0.002576683647930622, 0.022074265405535698, -0.04748131334781647, -0.0013038965407758951, -0.02049444057047367, -0.0407075434923172, -0.03778594732284546, -0.04380226880311966, 0.028242075815796852, 0.001996422652155161, 0.010366247966885567, -0.01602548360824585, 0.01998586766421795, -0.004471661988645792, -0.009203021414577961, -0.008505084551870823, -0.00186386879067868, -0.04165976494550705, -0.009738646447658539, -0.02080824226140976, -0.004696191754192114, -0.013439332135021687, 0.029605485498905182, 0.012054280377924442, -0.053108084946870804, 0.0011659323936328292, 0.030860688537359238, -0.0712868943810463, -0.003979319240897894, 0.012173308059573174, -0.013904623687267303, 0.0294107124209404, 0.011567347683012486, 0.0048476820811629295, -0.07219583541154861, -0.016631444916129112, 0.018730664625763893, -0.03538374975323677, -0.00785043090581894, -0.014986694790422916, 0.038954585790634155, -0.0025455739814788103, 0.018406042829155922, 0.02536376379430294, -0.030168162658810616, -0.014045292511582375, 0.02040787599980831, 0.001045551965944469, 0.048693232238292694, -0.001403988222591579, -0.020158998668193817, 0.007071339525282383, -0.054666269570589066, -0.026835381984710693, 0.030362935736775398, -0.0018746894784271717, -0.0031028410885483027, 0.018828051164746284, 0.011783762834966183, -0.017518743872642517, -0.012562854215502739, 0.006405865307897329, -0.006508662365376949, -0.007964048534631729, 0.039322491735219955, -0.0339554138481617, -0.0335225872695446, 0.010474455542862415, 0.004514944739639759, -0.031812913715839386, 0.004885554313659668, 0.04140006750822067, 0.006589817814528942, -0.015127364546060562, 0.014975874684751034, 0.03497256338596344, -0.01698852889239788, 0.046745505183935165, 0.004063179716467857, 0.03350094333291054, -0.011708017438650131, 0.024260051548480988, -0.030016673728823662, 0.028761470690369606, -0.011675555258989334, -0.01491095032542944, 0.023654090240597725, -0.08769110590219498, 0.015549372881650925, 0.03832698613405228, -0.1013684943318367, -0.0005843188264407218, 0.027527907863259315, -0.08150165528059006, 0.027354776859283447, -0.02285335771739483, 0.014651252888143063, -0.006000088527798653, 0.01566839963197708, 0.024649597704410553, -0.034453168511390686, 0.03934413194656372, 0.011718838475644588, -0.03272185102105141, -0.01821126975119114, 0.03510241210460663, -0.03930085152387619, 0.020158998668193817, 0.010452814400196075, -0.01340686995536089, -0.011848687194287777, -0.010057858191430569, 0.0660063847899437, 0.01004162710160017, -0.02322126179933548, -0.05444985628128052, 0.01603630557656288, 0.018362758681178093, 0.042914967983961105, -0.010506917722523212, -0.004314761608839035, -0.0163933876901865, -0.008180462755262852, -0.04014486446976662, 0.039084434509277344, -0.02622942253947258, 0.018287014216184616, -0.03793743997812271, 0.016653085127472878, 0.00043756281957030296, -0.012335618957877159, 0.04639923945069313, -0.001029997132718563, -0.02198770083487034, 0.011708017438650131, 0.001257232273928821, -0.04239557683467865, 0.01775679923593998, -0.002518522320315242, -0.012075921520590782, 0.013190455734729767, -0.011210264638066292, -0.008072256110608578, 0.005080327391624451, 0.022150011733174324, 0.04704848304390907, -0.015744145959615707, -0.00483956653624773, -0.00195313966833055, 0.021782105788588524, 0.002303460380062461, -0.015928097069263458, 0.02809058502316475, -0.033176321536302567, 0.008001921698451042, 0.00591893307864666, -0.030492784455418587, -0.007022646255791187, -0.011989356018602848, 0.008835116401314735, 0.02700851298868656, -0.00415515573695302, 6.0951078921789303e-05, -0.03692029044032097, -0.05873486027121544, 0.027982378378510475, -0.027982378378510475, -0.0009772460907697678, 0.03832698613405228, 0.028977883979678154, 0.029302505776286125, 0.01523557212203741, 0.036725517362356186, -0.007071339525282383, -0.010912694968283176, -0.00026781277847476304, 0.022983206436038017, -0.04977530613541603, 0.02449810691177845, 0.005891881417483091, -0.019704528152942657, -0.006735897157341242, -0.01078825630247593, -0.026402553543448448, 0.01365574635565281, 0.04133514314889908, 0.0685167908668518, -0.012919938191771507, 0.011318471282720566, -0.007038877345621586, -0.027398059144616127, 0.03739640489220619, 0.0004903138033114374, 0.026380911469459534, -0.00014134563389234245, -0.05072752758860588, 0.0078287897631526, -0.04430002346634865, 0.003570837201550603, 0.014672894030809402, -0.0022628826554864645, -0.053800612688064575, 0.009181379340589046, 0.08968211710453033, 0.015419524163007736, 0.039863526821136475, 0.0186657402664423, 0.04639923945069313, 0.017183300107717514, -0.06860335916280746, -0.002134386682882905, 0.04272019490599632, 0.009408614598214626, -0.005055980756878853, 0.03384720906615257, -0.03060099110007286, -0.0213059950619936, -0.0029892234597355127, 0.00026206427719444036, 0.065573550760746, 0.03956054523587227, -0.016328465193510056, -0.02659732662141323, 0.030427860096096992, -0.042503781616687775, -0.0194015484303236, -0.07323462516069412, -0.013742312788963318, -0.02367573231458664, 0.02326454408466816, -0.028761470690369606, 0.014532225206494331, -0.004996466916054487, 0.05483940243721008, -0.060033347457647324, 0.04395375773310661, -0.03761281818151474, 0.0101768858730793, -0.011946072801947594, -0.00591893307864666, 0.04800070822238922, -0.020754138007760048, -0.028718186542391777, 0.03756953403353691, 0.05877814441919327, -0.011556527577340603, 0.023610807955265045, -0.0037006856873631477, -0.004098346922546625, -0.006092064548283815, 0.02136009745299816, 0.04652908816933632, -0.026921948418021202, -0.030081598088145256, -0.014261706732213497, 0.03415018692612648, 0.06795411556959152, -0.005080327391624451, -0.04994843527674675, -0.0008507790043950081, -0.03893294557929039, -0.015690041705965996, -0.023351110517978668, -0.031574856489896774, -0.013071428053081036, -0.009619618766009808, 0.010485276579856873, -0.011556527577340603, -0.013471794314682484, -0.001042170450091362, -0.014824384823441505, -0.0006384223815985024, -0.015040799044072628, 0.001114533981308341, 0.0027051796205341816, -0.032440513372421265, -0.0031569446437060833, -0.03633597120642662, -0.01571168377995491, 0.010160654783248901, -0.07418684661388397, 0.03449644893407822, -0.041919462382793427, 0.04230900853872299, 0.050381265580654144, 0.05276182293891907, 0.06475117802619934, 0.022247396409511566, 0.057263243943452835, -0.023199619725346565, -0.006221913266927004, -0.03521061688661575, -0.011394216679036617, -0.014012830331921577, -0.015376240946352482, -0.0030839047394692898, 5.3173687774688005e-05, 0.009484359994530678, -0.02161979489028454, -0.03440988436341286, -0.006790000945329666, -0.05518566444516182, -0.029886825010180473, -0.00946812890470028, 0.05349763110280037, -0.00945189781486988, -0.0014432133175432682, 0.06535714119672775, 0.028718186542391777, 0.022918282076716423, -0.014359093271195889, -0.04362913593649864, -0.024021994322538376, -0.02668389119207859, -0.032808419317007065, 0.01975863240659237, -0.007450064644217491, -0.04178961366415024, -0.028718186542391777, -0.02199852094054222, 0.007314805872738361, 0.05717667564749718, -0.013720670714974403, 0.016220256686210632, 0.01781090348958969, 0.04360749572515488, -0.012768448330461979, 0.04248214140534401, -0.030081598088145256, -0.017973214387893677, 0.05587819218635559, 0.008699857629835606, 0.001007679384201765, -0.03224574029445648, -0.020429516211152077, -0.0059784469194710255, -0.028263716027140617, 0.008256208151578903, 0.006957721896469593, -0.015419524163007736, 0.01365574635565281, 0.005266984924674034, 0.019055284559726715, 0.0055618491023778915, 0.01853589154779911, -0.007817968726158142, -0.05103050917387009, -0.01523557212203741, -0.0033977057319134474, -0.020559364929795265, -0.04135678708553314, 0.010571842081844807, 0.021143684163689613, 0.010604304261505604, -0.018773946911096573, -0.014499763026833534, 0.013417690992355347, 0.020429516211152077, 0.0029892234597355127, 0.012649419717490673, -0.007222829852253199, -0.026857024058699608, 0.0010671933414414525, 3.180699422955513e-06, -0.01626354083418846, -0.006957721896469593, 0.0014215719420462847, 0.02058100700378418, 0.007282343693077564, 0.011015491560101509, 0.030081598088145256, 0.0014851436717435718, 0.0032840881031006575, 0.034994203597307205, 0.013331125490367413, 0.034539733082056046, 0.03109874576330185, 0.007147084455937147, -0.01099926047027111, 0.0410754457116127, 0.004863913170993328, 0.018113883212208748, -0.014759460464119911, 0.028696546331048012, 0.02113286405801773, -0.013287842273712158, -0.0177135169506073, -0.017323970794677734, 0.03914935886859894, -0.00254963175393641, -0.02454138919711113, 0.023978712037205696, -0.007439244072884321, -0.014802742749452591, 0.022485453635454178, -0.0024590082466602325, 0.014781101606786251, 0.03488599509000778, 0.020472800359129906, 0.04343436285853386, -0.02990846522152424, -0.014337452128529549, -0.005881060380488634, -0.001543304999358952, -0.009787339717149734, -0.02208508737385273, -0.0324188731610775, -0.02235560491681099, 0.010285092517733574, -0.012800909578800201, -0.027571190148591995, 0.014424017630517483, 0.030211446806788445, 0.01976945251226425, -0.002122213365510106, -0.018330296501517296, -0.001586587866768241, 0.016047125682234764, 0.0535409152507782, -0.04479777440428734, 0.03138008341193199, -0.0018503428436815739, 0.030016673728823662, 0.01575496606528759, -0.007498757913708687, -0.004417558200657368, 0.004366159904748201, -0.011199443601071835, -0.012043459340929985, 0.014175141230225563, -0.008737729862332344, 0.02895624190568924, 0.029151014983654022, 0.04243885725736618, 0.0005795847391709685, 0.00994965061545372, -4.281792280380614e-05, -0.008959555067121983, -0.01019852701574564, -0.04462464153766632, -0.008570008911192417, -0.017735157161951065, -0.027657756581902504, -0.0014810858992859721, 0.012822551652789116, 0.02454138919711113, -0.021738823503255844, 0.016642265021800995, 0.007682709954679012, -0.003451809287071228, -0.015181467868387699, 0.0021709066350013018, 0.002164143603295088, -0.007514989003539085, 0.04787085950374603, -0.015181467868387699, 0.015690041705965996, 0.004174092318862677, -0.010799077339470387, 0.009765698574483395, -0.008559188805520535, 0.022420529276132584, -0.01780008152127266, 0.009111044928431511, -0.006779180373996496, 0.002964876824989915, -0.03938741609454155, 0.03720163181424141, 0.02796073630452156, 0.0051154945977032185, -0.005799904931336641, -0.010755794122815132, -0.012941579334437847, 0.0008920329855754972, -0.028393564745783806, 0.022572018206119537, -0.007823379710316658, 0.006795411463826895, -0.0213059950619936, -0.06830037385225296, 0.040274713188409805, 0.031206952407956123, 0.010350016877055168, -0.00242519355379045, 0.006129937246441841, -0.009159738197922707, -0.02408691868185997, 0.02573166787624359, 0.025666743516921997, 0.010344606824219227, -0.01579824835062027, -0.004487893078476191, 0.004750295542180538, -0.05605132132768631, -0.021890314295887947, -0.008618702180683613, -0.013439332135021687, 0.016858680173754692, 0.02441154047846794, -0.029151014983654022, -0.002285876777023077, 0.016588160768151283, 0.07340775430202484, 0.01099926047027111, -0.0305144265294075, -0.01495423261076212, 0.0275062657892704, -0.008272439241409302, -0.01365574635565281, 0.008586240001022816, -0.020234743133187294, 0.005962215829640627, -0.0003577600000426173, 0.00554561847820878, 0.01616615429520607, -0.03906279429793358, -0.00614616833627224, 0.005415769759565592, 0.020591827109456062, 0.013699029572308064, -0.005956805776804686, -0.008532136678695679, 0.004487893078476191, -0.007417602464556694, 0.008294080384075642, 0.0028891318943351507, -0.07474952191114426, -0.036812085658311844, 0.007428423501551151, -0.0034923870116472244, 0.01210838370025158, 0.02895624190568924, -7.299757999135181e-05, -0.004785462748259306, -0.01694524474442005, -0.01588481478393078, -0.02928086370229721, -0.05968708172440529, 0.03518897667527199, -0.02208508737385273, -0.025190632790327072, 0.018925435841083527, -0.015646759420633316, -0.008683626540005207, 0.04830368608236313, -0.016901962459087372, -0.05085737630724907, 0.010701690800487995, 0.011729658581316471, -0.017280686646699905, -0.019001182168722153, -0.003619530238211155, 0.03523226082324982, 0.017194122076034546, 0.01086400169879198, 0.026878664270043373, 0.006470789667218924, 0.015289675444364548, 0.02482272870838642, -0.01852506957948208, -0.019206775352358818, 0.021976878866553307, 0.007320215925574303, 0.004928837064653635, -0.046875353902578354, 0.00038210663478821516, -0.027614474296569824, 0.002053231233730912, -0.002211484359577298, -0.010317554697394371, 0.010025396011769772, -0.00874314084649086, 0.007742224261164665, 0.007780096493661404, 0.004715127870440483, -0.030903972685337067, -0.03555688261985779, 0.047741010785102844, 0.014921770431101322, -0.017865005880594254, -0.0020626995246857405, 0.008802654221653938, -0.032765135169029236, -0.006909028626978397, 0.002770103979855776, 0.02713836170732975, 0.0059676263481378555, -0.012097563594579697, -0.01652323640882969, -0.008705267682671547, 0.01395872700959444, 0.015830710530281067, -0.007168726064264774, 0.036855366080999374, -0.026986872777342796, 0.01999668776988983, 0.05072752758860588, 0.029021166265010834, 0.023069771006703377, -0.0026984165888279676, -0.04096724092960358, -0.00543200084939599, -0.051203638315200806, -0.012324798852205276, -0.016685547307133675, -6.386759923771024e-05, 0.01097761932760477, -0.017832543700933456, 0.013331125490367413, -0.00912727601826191, 0.01934744417667389, 0.004685371182858944, 0.028848035261034966, -0.015538551844656467, 0.007623196113854647, 0.01962878368794918, -0.013969548046588898, 0.008120949380099773, -0.011891969479620457, -0.0047557055950164795, -0.037136707454919815, 0.0020180640276521444, 0.026532402262091637, -0.009100223891437054, 0.005510450806468725, -0.042958252131938934, -0.001927440520375967, 0.047741010785102844, -0.01808142103254795, -0.008575419895350933, 6.361398845911026e-05, 0.03402033820748329, -0.027030155062675476, 0.01707509346306324, 0.011318471282720566, 0.045057471841573715, 0.01880640909075737, 0.03060099110007286, -0.01899036020040512, -0.01570086181163788, 0.01593891903758049, -0.006086654029786587, -0.013017324730753899, -0.029540561139583588, -0.026056289672851562, 0.02180374786257744, 0.02244216948747635, 0.03670387715101242, 0.029713694006204605, -0.012800909578800201, 0.03555688261985779, 0.037634458392858505, -0.03477779030799866, -0.0036438768729567528, 0.04462464153766632, 0.026575684547424316, -0.018795588985085487, -0.0184493251144886, 0.027484625577926636, -0.013450153172016144, 0.012995682656764984, 0.01894707791507244, 0.01420760340988636, 0.05522894859313965, -0.027354776859283447, -0.014196782372891903, 0.013060607016086578, -0.02177128568291664, 0.027398059144616127, 0.009992933832108974, -0.06384223699569702, -0.03962546959519386, 0.022831715643405914, -0.02973533421754837, 0.013785595074295998, -0.02609957382082939, 0.009100223891437054, -0.005126315634697676, -0.049515608698129654, 0.028523413464426994, 0.027614474296569824, -0.011989356018602848, -0.0016136396443471313, 0.005499630235135555, 0.0042985305190086365, -0.022485453635454178, 0.0039387415163218975, 0.010869411751627922, 0.0006133994902484119, 0.016826217994093895, -0.0038711121305823326, -0.02367573231458664, -0.005989267490804195, 0.0550125315785408, -0.0006671649171039462, 0.04263363033533096, -0.013341945596039295, -0.026921948418021202, -0.004661024548113346, 0.002404904691502452, 0.0066385106183588505, 0.03566508740186691, 0.006492431275546551, -0.00958174653351307, -0.009560104459524155, -0.00544282142072916, 0.0422440841794014, -0.021251890808343887, -0.02040787599980831, -0.008396877907216549, 0.030038313940167427, 0.03765610232949257, -0.016728831455111504, 0.002444129902869463, -0.0002963862498290837, -0.007266112603247166, 0.029995031654834747, 0.001555478316731751, 0.007071339525282383, 0.011491603218019009, -0.02363245002925396, -0.00734185753390193, 0.008012741804122925, -0.010950567200779915, 0.0027471098583191633, -0.05094394460320473, 0.040274713188409805, -0.01743217743933201, -0.004961299244314432, 0.010506917722523212, -0.023004848510026932, -0.007487937342375517, -0.01530049555003643, -0.029215939342975616, 0.00899201724678278, -0.007060518953949213, -0.009938829578459263, 0.05176631733775139, 0.04358585551381111, -0.030990537256002426, 0.03447480872273445, 0.006422096397727728, 0.009424845688045025, 0.03291662409901619, -0.007861251942813396, -0.022333962842822075, -0.01903364434838295, -0.007065929006785154, -0.0051614828407764435, -0.0023075181525200605, 0.008532136678695679, -0.00874314084649086, -0.0384351909160614, 0.007152494974434376, 0.01620943658053875, 0.012508750893175602, 0.015387061983346939, 0.011946072801947594, 0.01593891903758049, -0.015354599803686142, 0.010322965681552887, 0.042741838842630386, -0.025017501786351204, 0.06011991202831268, -0.04263363033533096, -0.015170647762715816, -0.018113883212208748, 0.004233606159687042, -0.02172800339758396, -0.008640343323349953, -0.020516082644462585, 0.0065735867246985435, 0.005302152130752802, -0.019087746739387512, -0.007763865403831005, 0.006687203887850046, -0.028307000175118446, 0.030795764178037643, 0.015365419909358025, 0.022150011733174324, -0.0258182343095541, 0.01680457592010498, -0.021706361323595047, 0.026575684547424316, 0.019877659156918526, 0.011956893838942051, -0.04908277839422226, 0.035535238683223724, 0.02244216948747635, 0.012757627293467522, -0.020278027281165123, 0.009549284353852272, 0.002146560000255704, -0.018016496673226357, -0.00794781744480133, 0.045144036412239075, 0.042958252131938934, 0.01288747601211071, 0.013569180853664875, -0.015614297240972519, -0.00901365838944912, 0.0357949361205101, 0.011102057062089443, -0.011102057062089443, 0.007964048534631729, 0.019239237532019615, 0.02614285610616207, -0.01054478995501995, -0.005039749667048454, 0.015073261223733425, -0.022009341046214104, -0.0020924564450979233, 0.002872900804504752, 0.03101217932999134, 0.014304989948868752, 0.023480959236621857, 0.018589993938803673, 0.025645103305578232, -0.00981439184397459, 0.029973389580845833, 0.006097475066781044, -0.009846854023635387, -0.006086654029786587, 0.015408703126013279, 0.04278511926531792, 0.019726170226931572, -0.010166064836084843, 0.032440513372421265, 0.0006587112438865006, -0.026207780465483665, 0.02449810691177845, -0.028025660663843155, -0.05916769057512283, 0.04016650840640068, 0.016696369275450706, -0.011967714875936508, 0.008418519049882889, -0.03295990824699402, -0.04432166367769241, -0.008586240001022816, -0.019834376871585846, -0.018103061243891716, 0.021792927756905556, -0.006725076586008072, 0.01839522086083889, 0.01720494218170643, -0.008808065205812454, 0.012216591276228428, -0.009630439803004265, 0.042547065764665604, 0.014607969671487808, 0.005193945020437241, 0.0009528995142318308, 0.015873994678258896, -0.00522370170801878, 0.03308975696563721, 0.023329468443989754, 0.0009725120617076755, 0.030427860096096992, -0.003330076113343239, -0.0022723509464412928, -0.03778594732284546, -0.010685459710657597, 0.01109123695641756, -0.025991365313529968, -0.053108084946870804, 0.009592566639184952, -0.014164320193231106, -0.007639427203685045, 0.0201698187738657, 0.010355427861213684, 0.019791094586253166, 0.0044419048354029655, -0.0016731536015868187, 0.04626939073204994, -0.030254729092121124, -0.02804730273783207, -0.008445571176707745, -0.030081598088145256, 0.013212096877396107, -0.05397374555468559, -0.007882893085479736, -0.007060518953949213, 0.01336358767002821, -0.03938741609454155, -0.010707100853323936, 0.010647587478160858, 0.018795588985085487, -0.04743802919983864, -0.010755794122815132, -0.013028144836425781, 0.014283348806202412, -0.008840527385473251, -0.016155332326889038, 0.011805403977632523, -0.0004500742652453482, 0.025212274864315987, 0.009646670892834663, -0.008007331751286983, -0.0403396375477314, -0.007293164264410734, 0.026554042473435402, -0.02586151659488678, -0.027571190148591995, 0.013893802650272846, 0.012010997161269188, 0.011805403977632523, -0.009625028818845749, -0.016241898760199547, 0.005483399145305157, -0.01588481478393078, -0.026921948418021202, -0.007644837722182274, -0.004642088431864977, 0.006768359337002039, -0.002039705403149128, 0.02895624190568924, -0.010934336110949516, -0.01418596226722002, 0.06475117802619934, 0.004961299244314432, 0.030903972685337067, -0.023459317162632942, 0.0073526781052351, -0.00043384317541494966, 0.0020748728420585394, 0.0019991276785731316, 0.04886636510491371, -0.017832543700933456, -0.02289664000272751, 0.002449540188536048, 0.010707100853323936, -0.018135523423552513, 0.022507093846797943, 0.025926440954208374, 0.0058215465396642685, -0.010052447207272053, 0.004671845119446516, -0.014337452128529549, -0.005740391090512276, -0.0038007774855941534, 0.0006184717058204114, 0.021911954507231712, -0.006654741708189249, -0.01208674255758524, -0.04362913593649864, -0.021782105788588524, -0.00046833421220071614, 0.0025983250234276056, 0.025666743516921997, 0.04135678708553314, 0.011718838475644588, -0.003173175733536482, -0.000730398518498987, -0.02668389119207859, 0.039365772157907486, -0.011935252696275711, 0.030665915459394455, -0.001104389550164342, 0.011697196401655674, 0.0013701735297217965, -0.007006415165960789, 0.005350845400243998, 0.024692879989743233, 0.02139255963265896, 0.0007040229975245893, 0.00814800150692463, -0.04652908816933632, 0.013828878290951252, -0.013103890232741833, 0.07146002352237701, -0.0036357613280415535, -0.00794240739196539, 0.001247087842784822, 0.06959886103868484, -0.027852529659867287, 0.023242903873324394, 0.0388030968606472, -0.030579350888729095, 0.015549372881650925, -0.003798072226345539, 0.02309141308069229, 0.022874999791383743, 0.0060812439769506454, 0.018698202446103096, -0.0158090703189373, -0.0017029105219990015, -0.016047125682234764, 0.03324124589562416, 0.0019747810438275337, 0.016728831455111504, -0.02919429913163185, 0.0331546813249588, -0.01917431317269802, -0.00017431500600650907, -0.010074089281260967, -0.01899036020040512, 0.027203286066651344, -0.04129186272621155, -0.008315722458064556, 0.017951572313904762, 0.03060099110007286, -0.03739640489220619, -0.015690041705965996, 0.026986872777342796, 0.0111128780990839, -0.014618790708482265, -0.00402801251038909, 0.026207780465483665, 0.04308810085058212, 0.00486120767891407, 0.01051773875951767, 0.003110956633463502, -0.018341118469834328, 0.018795588985085487, 0.026337629184126854, -0.06847351044416428, -0.004753000568598509, 0.0194015484303236, -0.017453819513320923, 0.041876181960105896, 0.01068004872649908, -0.04813055694103241, -0.025104066357016563, -0.0035870682913810015, 0.01980191469192505, -0.00960879772901535, -0.02627270482480526, 0.009657490998506546, -0.021565692499279976, 0.02490929327905178, -0.012800909578800201, -0.04722161591053009, -0.023394392803311348, 0.021457483991980553, -0.01570086181163788, 0.00709298113361001, 0.003792661940678954, -0.010496096685528755, -0.0029513509944081306, -0.0071903676725924015, 0.01871984265744686, -2.1482930605998263e-05, 0.013017324730753899, 0.02176046557724476, 0.01643667183816433, -0.011123698204755783, 0.022074265405535698, -0.002559100044891238, 0.008661985397338867, -0.030211446806788445, -0.0184493251144886, 0.0031380082946270704, 0.05752294138073921, 0.0046556140296161175, -0.016653085127472878, 0.006871156394481659, -0.014651252888143063, -0.011643093079328537, -0.010193116962909698, -0.003175880992785096, 0.026575684547424316, -0.017453819513320923, 0.007136263884603977, 0.016923604533076286, 0.0006225294782780111, -0.01984519697725773, -0.06972870975732803, 0.011177802458405495, -0.008478033356368542, -0.010728741995990276, -0.00721741933375597, -0.011480782181024551, 0.025168990716338158, -0.023199619725346565, -0.0027241159696131945, -0.004060474690049887, 0.007336447015404701, 0.00284584891051054, -0.016793755814433098, -0.0004882849170826375, 0.011145340278744698, 0.02573166787624359, -0.04791413992643356, -0.03614119812846184, -0.020115716382861137, 0.01698852889239788, -0.02066757157444954, -0.00242519355379045, -0.015397882089018822, 0.011286009103059769, -0.015873994678258896, 0.04252542555332184, -0.002978402888402343, -0.02022392302751541, 0.027571190148591995, -0.009175969287753105, 0.01350425649434328, 0.034907639026641846, -0.007406781893223524, -0.025710027664899826, 0.026056289672851562, 0.019650425761938095, 0.035535238683223724, 0.011329292319715023, -0.001410751137882471, -0.04036128148436546, -0.022063445299863815, -0.0029242991004139185, 0.0165773406624794, -0.04549030214548111, 0.04152991622686386, -0.006957721896469593, -0.015224751085042953, -0.02932414785027504, 0.012151666916906834, 0.002927004359662533, -0.023004848510026932, 0.03785087168216705, 0.014759460464119911, 0.021565692499279976, 0.03802400454878807, 3.182813088642433e-05, -0.0014905539574101567, 0.026554042473435402, 0.001332977320998907, -0.010398710146546364, 0.007195777725428343, 0.02700851298868656, -0.010268861427903175, -0.008180462755262852, -0.0048585026524960995, -0.030774123966693878, -0.002266940427944064, 0.0026984165888279676, -0.007817968726158142, 0.0024657712783664465, 0.01579824835062027, -0.008445571176707745, -0.03477779030799866, -0.05929753929376602, -0.03707178309559822, -0.024671237915754318, 0.03588150441646576, -0.037959080189466476, 0.01867656037211418, 0.00040983472717925906, 0.02928086370229721, -0.03605463355779648, 0.002778219524770975, -0.013720670714974403, -0.002266940427944064, -0.013287842273712158, -0.01077202521264553, -0.006773769855499268, -0.03815385326743126, -0.024324975907802582, -0.018330296501517296, 0.015376240946352482, -0.01231397781521082, 0.016176974400877953, -0.014889308251440525, 0.026489118114113808, 0.010923515073955059, 0.002442777156829834, -0.042503781616687775, -0.006551945116370916, 0.016923604533076286, -0.0324188731610775, 0.02003997005522251, 0.0288263950496912, -0.0030460322741419077, 0.0015203109942376614, 0.021284352988004684, 0.015646759420633316, -0.032678570598363876, -0.00014768590335734189, -0.023935429751873016, 0.01373149175196886, 0.025991365313529968, -0.0028566697146743536, -0.00992800947278738, -0.027289852499961853, 0.0158090703189373, 0.009300407953560352, 0.0005680877366103232, 0.03984188660979271, -0.014867667108774185, 0.0012274752371013165, -0.019498934969305992, 0.00036215592990629375, -0.02080824226140976, 0.011524065397679806, -0.012324798852205276, -0.005713339429348707, 0.027246568351984024, 0.005599721800535917, 0.02022392302751541, 0.008607881143689156, -0.03988516703248024, 0.014283348806202412, -0.019282519817352295, 0.01530049555003643, 0.04964545741677284, -0.010193116962909698, 0.012270694598555565, -0.01867656037211418, -0.0032894983887672424, -0.025883158668875694, 0.012151666916906834, -0.02462795563042164, -0.029215939342975616, -0.012649419717490673, -0.021663079038262367, 0.005280510522425175, -0.021057117730379105, -0.022831715643405914, -0.010225579142570496, -0.01680457592010498, -0.04890964925289154, 0.015971381217241287, -0.014802742749452591, -0.011123698204755783, 0.003148829098790884, 0.035946428775787354, 0.013298663310706615, 0.04051277041435242, 0.010799077339470387, -0.011210264638066292, -0.010831539519131184, -0.01675047166645527, -0.026034649461507797, 0.006503251846879721, 0.010079499334096909, 0.027809247374534607, 0.026857024058699608, -0.0003679044311866164, -0.02136009745299816, -0.031942762434482574, 0.04280676320195198, -0.033176321536302567, 0.00017025724810082465, -0.02609957382082939, -0.04137842729687691, -0.0324188731610775, -0.01635010540485382, 0.005718749947845936, 0.024065278470516205, -0.002065404551103711, -0.008272439241409302, 0.0028187972493469715, 0.015311316587030888, -0.0011131814680993557, -0.009673722088336945, 0.005434705875813961, 0.016469134017825127, 0.0248660109937191, -0.02796073630452156, -0.0005292007699608803, 0.01495423261076212, 0.020938090980052948, 0.009165148250758648, 0.023524241521954536, -0.021479126065969467, 0.002867490518838167, -0.023827223107218742, -0.013525898568332195, 0.03564344719052315, -0.0016406914219260216, 0.0010901873465627432, 0.012649419717490673, -0.014521404169499874, 0.0489962138235569, 0.006936080753803253, 0.0026673071552067995, 0.0158090703189373, 0.01395872700959444, 0.006698024924844503, 0.016685547307133675, -0.031488291919231415, -0.01630682311952114, -0.00921925250440836, -0.00022267010353971273, -0.01566839963197708, 0.028285358101129532, -0.008012741804122925, -0.028848035261034966, -0.007753044832497835, -0.0033922952134162188, 0.0022398887667804956, 0.026748815551400185, 0.021652257069945335, -0.019877659156918526, -0.007450064644217491, 0.017908290028572083, -0.015971381217241287, -0.003148829098790884, -0.011177802458405495, -0.02886967733502388, -0.033349454402923584, -0.019141850993037224, -0.017962392419576645, 0.0050154030323028564, -0.028307000175118446, -0.0278741717338562, 0.000179556300281547, -0.024714520201086998, -0.04269855469465256, 0.020689213648438454, -0.016544878482818604, 0.0018435799283906817, 0.006411275826394558, -0.018470967188477516, 0.03337109461426735, -0.012833371758460999, 0.016014663502573967, 0.00016138087084982544, 0.0284584891051054, 0.0015013746451586485, -0.005291331559419632, 0.028718186542391777, 0.008348184637725353, -0.014781101606786251, 0.019617963582277298, 0.009100223891437054, -0.003817008575424552, 0.017637770622968674, 0.036444179713726044, -0.017951572313904762, -0.009235483594238758, -0.019607141613960266, 0.02895624190568924, -0.006037960760295391, 0.029432354494929314, 0.03360915184020996, -1.3314555872057099e-05, -0.01585235260426998, -0.006389634218066931, -0.011902790516614914, 0.02969205193221569, -0.021479126065969467, -0.010550200939178467, -0.010485276579856873, 0.023437676951289177, 0.030817406252026558, -0.02454138919711113, -0.03306811675429344, 0.01934744417667389, 0.019704528152942657, -0.015181467868387699, 0.016782933846116066, -0.0024387193843722343, 0.013266201131045818, 0.0019910121336579323, 0.024887653067708015, 0.00302168563939631, -0.019682886078953743, 0.002927004359662533, -0.00451764976605773]], "input": ["HOLD:", "BAGGAGE SERVICE CENTER:The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.", "BAGGAGE CLAIMS DEPARTMENT:The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.", "DELAYED BAGGAGE:Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.", "CLAIM STATUS:The term \"Claim Status\" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.", "COURIER SERVICE:The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.", "CONTACT DETAILS:The \"CONTACT DETAILS\" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.", "LOST BAGGAGE REPORT NUMBER:The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.", "BAGGAGE REPORT:A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.", "FORGOTTEN ITEM:The \"FORGOTTEN ITEM\" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.", "BAGGAGE DELAY:Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.", "BAGGAGE CLAIM:Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.", "BAGGAGE HANDLING:Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.", "BAGGAGE REPORTING:Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.", "BAGGAGE DELIVERY:Baggage delivery is the service that ensures retrieved baggage is sent to the passenger's specified address.", "BAGGAGE CLAIMS PROCESS:The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-8017828ff20dbbc2e882ed08b1c8691f b/cache/text_embedding/embedding-8017828ff20dbbc2e882ed08b1c8691f deleted file mode 100644 index 6da607d36aa6ab8e3ab87e2fd7e523255fd4bd46..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-8017828ff20dbbc2e882ed08b1c8691f +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.0750688835978508, 0.037486687302589417, 0.021345922723412514, 0.014588767662644386, -0.05997869744896889, -0.03844176232814789, -0.012129450216889381, -0.0031905467621982098, 0.009335856884717941, 0.049998167902231216, -0.006745215971022844, -0.012016035616397858, -0.06742828339338303, 0.03832237794995308, -0.015675164759159088, -0.0031845776829868555, 0.0027846400626003742, 0.015340889804065228, 0.021751828491687775, -0.00806441344320774, -0.003336792578920722, 0.005414080340415239, -0.043981194496154785, 0.024736437946558, -0.009079179726541042, -0.020569924265146255, 0.02250395156443119, -0.015006612986326218, 0.04023252800107002, -0.024426039308309555, 0.048231277614831924, -0.030132610350847244, 0.0010647592134773731, -0.013215848244726658, 0.014469383284449577, 0.006530323997139931, 0.0034979614429175854, -0.011305698193609715, 0.0009692517342045903, -0.007294383831322193, -0.05219484120607376, -0.006136355921626091, 0.01364563126116991, -0.042381446808576584, 0.024151455610990524, 0.032806821167469025, 0.03497961536049843, -0.031039932742714882, 0.024927452206611633, 0.02566763572394848, -0.027983691543340683, -0.004572420846670866, 0.005175311584025621, -0.005808048881590366, 0.048111893236637115, 0.014087353833019733, 0.013156156055629253, 0.03595856577157974, 0.041736770421266556, 0.00162213493604213, 0.01663023978471756, -0.04376630485057831, 0.0063870628364384174, -0.025619883090257645, 0.0362212136387825, -0.01310840155929327, 0.0282224602997303, 0.014934982173144817, 0.011926497332751751, 0.01329941675066948, -0.024569299072027206, -0.02514234557747841, -0.05429600551724434, -0.03369026631116867, -0.06317819654941559, 0.020844507962465286, -0.011819050647318363, -0.021333983168005943, -0.010147670283913612, -0.03899092972278595, -0.04548543691635132, -0.02010432444512844, -0.0221099816262722, 0.008619550615549088, -0.0372479185461998, 0.024688683450222015, -0.005112634971737862, -0.031732361763715744, -0.016869008541107178, -0.06995923072099686, -0.04190390929579735, -0.04283510521054268, 0.024044008925557137, 0.05883260816335678, -0.019268633797764778, -0.041832275688648224, 0.047156818211078644, 0.006202016957104206, -0.025309482589364052, 0.05654042959213257, 0.006924292538315058, 0.027052493765950203, -0.009723855182528496, 0.04887595400214195, 0.01190262008458376, 0.007777890656143427, -0.03715240955352783, -0.007234691642224789, 0.02168019860982895, -0.012081696651875973, 0.041736770421266556, -0.032162144780159, 0.026192927733063698, 0.05319766700267792, -0.0037755302619189024, -0.03848951682448387, 0.00892398040741682, 0.023494841530919075, -0.04899533838033676, -0.01304871030151844, -0.01637953333556652, -0.029249167069792747, 0.005157404113560915, -0.07545091211795807, 0.037224043160676956, -0.011228098534047604, -0.023256072774529457, 0.006816846784204245, -0.018659774214029312, 0.03502736985683441, 0.023363517597317696, -0.02128623053431511, 0.0707232877612114, -0.049329616129398346, 0.011950373649597168, -0.00489177368581295, 0.03645998239517212, 0.012081696651875973, 0.013967969454824924, -0.012487603351473808, 0.003939683549106121, 0.011771297082304955, 0.045461561530828476, -0.0061960481107234955, -0.024688683450222015, 0.026813725009560585, -0.026312312111258507, 0.05735224485397339, 0.006709400564432144, 0.017656946554780006, -0.024032071232795715, 0.0038740222807973623, -0.020008817315101624, -0.029464058578014374, 0.024318592622876167, -0.037224043160676956, 0.018409067764878273, 0.049186352640390396, 0.038250748068094254, -0.012201081030070782, -0.04161738604307175, 0.005214111413806677, -0.05095324292778969, -0.047849249094724655, 0.0009692517342045903, 0.03435881808400154, 0.005814018193632364, 0.0016146734124049544, -0.05152628570795059, -0.04753885045647621, -0.02941630408167839, 0.006792969536036253, 0.007377953268587589, -0.0771222934126854, -0.015519966371357441, -0.05539434030652046, 0.00951493252068758, 0.0012736818753182888, -0.0124398497864604, 0.05945340916514397, 0.02234875038266182, 0.025500498712062836, -0.02023564837872982, -0.03421555459499359, -0.015125997364521027, 0.06332146376371384, 0.0025384097825735807, 0.007557029370218515, -0.0001831803674576804, -0.03619733452796936, 0.010183485224843025, -0.03206663578748703, 0.01351430919021368, 0.023470964282751083, -0.06747603416442871, -0.033881280571222305, -0.01278606429696083, -0.004109806381165981, 0.0471329428255558, -0.015293135307729244, 0.017239101231098175, 0.0032860543578863144, -0.002483194461092353, -0.04672703519463539, -0.05391397327184677, 0.01626014895737171, 0.025930281728506088, -0.009532840922474861, 0.05630166083574295, 0.020056571811437607, 0.013311355374753475, 0.04574808478355408, -0.018337436020374298, 0.018038975074887276, -0.04001763463020325, -0.004029221832752228, 0.0010931129800155759, 0.022265182808041573, 0.021739890798926353, 0.05973992869257927, -0.03058627061545849, -0.008195735514163971, 0.01209960412234068, -0.025190098211169243, -0.020426662638783455, -0.04503177851438522, -0.011807112954556942, -0.03323660418391228, 0.015794549137353897, -0.020474417135119438, -0.020737063139677048, 0.017071962356567383, -0.05658818408846855, -0.03975499048829079, -0.017752453684806824, -5.913256245548837e-05, -0.02144142985343933, -0.025237852707505226, 0.008470320142805576, -0.024282777681946754, 0.032806821167469025, 0.044530365616083145, 0.03182786703109741, 0.002050426322966814, 0.020175956189632416, -0.007371983956545591, -0.018707528710365295, 0.006972046103328466, 0.0324486680328846, -0.030251994729042053, 0.008547919802367687, -0.034406568855047226, 0.03548102825880051, -0.03567204624414444, 0.014027661643922329, 0.007825644686818123, 0.013203909620642662, -0.004775374196469784, -0.008213643915951252, 0.00076070218347013, -0.005181280896067619, -0.015424458310008049, -0.03808360919356346, -0.002204133663326502, -0.03579143062233925, -0.01994912512600422, 0.0018071806989610195, -0.014242553152143955, 0.010326746851205826, 0.03512287512421608, -0.05501231178641319, 0.009180656634271145, -0.019065681844949722, 0.038943175226449966, -0.02301730401813984, 0.015149874612689018, 0.027888184413313866, 0.0006625831592828035, -0.020068509504199028, 0.06231863424181938, -0.01652279496192932, -0.0022563643287867308, 0.00992084015160799, -0.045198917388916016, 0.014397753402590752, -0.008422566577792168, 0.03371414169669151, 0.01511405874043703, 8.865221025189385e-05, -0.04049517214298248, 0.06265290826559067, 0.011932466179132462, -0.008488227613270283, 0.0003661742084659636, 0.025882527232170105, 0.03380965068936348, -0.045962974429130554, 0.0404474176466465, -0.01583036594092846, -0.015197628177702427, -0.008368843235075474, 0.06389450281858444, 0.015770673751831055, -0.060742758214473724, -0.010404346510767937, 0.054916802793741226, 0.04087720438838005, 0.004981311969459057, -0.02690923400223255, 0.03817911446094513, 0.019256696105003357, 0.015913933515548706, 0.0018235959578305483, -0.026837602257728577, 0.009646255522966385, 0.015197628177702427, -0.03607795014977455, 0.016797378659248352, 0.03710465878248215, 0.005193219520151615, 0.05802079662680626, 0.03342761844396591, 0.024569299072027206, -0.05391397327184677, 0.012404033914208412, -0.011544466949999332, 0.014481321908533573, 0.02224130555987358, -0.00496340449899435, -0.07693127542734146, -0.05100099742412567, 0.030801163986325264, 0.02407982386648655, -0.027458401396870613, 0.0050768195651471615, -0.016821255907416344, 0.026670465245842934, -0.007664475589990616, -0.03166073188185692, -0.014887228608131409, 0.014970798045396805, 0.03211439028382301, -0.009431364014744759, -0.008106197230517864, -0.02929691970348358, 0.020987769588828087, 0.037988100200891495, 0.028270214796066284, 0.033332113176584244, -0.0017161500873044133, -0.023447087034583092, -0.0031965160742402077, -0.0478731244802475, 0.017609192058444023, -0.03762994706630707, -0.0038053763564676046, 0.042118798941373825, -0.06862212717533112, -0.013550124131143093, -0.020665431395173073, -0.034669216722249985, 0.0009640286443755031, 0.03751056268811226, -0.005596141796559095, -0.01297707948833704, 0.027243509888648987, -0.03402454033493996, -0.013860523700714111, 0.01838519051671028, -0.011938435025513172, 0.013956030830740929, -0.0032711313106119633, 0.030944423750042915, -0.016701871529221535, 0.0037038996815681458, 0.013824707828462124, -0.04966389015316963, 0.009055303409695625, -0.021871212869882584, -0.0045336210168898106, 0.03803585469722748, -0.0027309171855449677, -0.0041187601163983345, 0.0928332731127739, -0.01955515705049038, 0.010953514836728573, -0.01916118897497654, 0.0282224602997303, 0.014863352291285992, 0.031875621527433395, -0.029177535325288773, 0.02516622096300125, 0.04020864889025688, 0.0375344417989254, 0.0066198622807860374, 0.008732965216040611, 0.05257686972618103, 0.050618965178728104, -0.010953514836728573, -0.035600412636995316, 0.02834184467792511, -0.04660765081644058, -0.015221505425870419, 0.023578409105539322, 0.02690923400223255, 0.0022668105084449053, 0.023626163601875305, 0.010738622397184372, 0.020689308643341064, -0.010702807456254959, 0.006231863051652908, 0.0036531612277030945, 0.0070078615099191666, 0.007330199237912893, 0.015281197614967823, 0.030944423750042915, 0.004542574752122164, 0.005163373425602913, 0.021322045475244522, -0.03980274498462677, 0.036531612277030945, 0.020928077399730682, -0.03450207784771919, 0.0031756237149238586, -0.005557341501116753, 0.024593176320195198, 0.01795540750026703, -0.013705323450267315, -0.015484150499105453, -0.017656946554780006, -0.049998167902231216, 0.017239101231098175, 0.06403777003288269, 0.011645943857729435, -0.04061455652117729, -0.016964517533779144, -0.03610182926058769, -0.042405322194099426, 0.008010690100491047, -0.0404474176466465, -0.04008926451206207, -0.0471329428255558, -0.0008006213465705514, -0.043026119470596313, -0.035839181393384933, 0.010284962132573128, 0.016845133155584335, -0.006637770216912031, 0.03247254341840744, 0.00409488333389163, -0.017919590696692467, -0.03349924832582474, -0.05825956538319588, 0.04035191237926483, -0.04250083118677139, 0.004626143723726273, 0.03314109519124031, -0.0998053178191185, 0.026646587997674942, 0.02049829438328743, -0.0038561145775020123, 0.03230540454387665, 0.0333082340657711, -0.003841191530227661, 0.0015743811381980777, 0.044005073606967926, 0.028508983552455902, -0.05181280896067619, -0.02393656224012375, -0.0669029951095581, 0.0009528363589197397, -0.03115931712090969, -0.0017131654312834144, -0.005079804453998804, 0.04192778468132019, -0.019519342109560966, -0.014051537960767746, -0.014779782854020596, 0.023494841530919075, 0.0040262374095618725, 0.02901039831340313, 0.0651838555932045, -0.05539434030652046, -0.06628219038248062, 0.056206151843070984, -0.0015072274254634976, 0.039587851613759995, 0.036818135529756546, -0.000596921774558723, -0.04376630485057831, -0.010881884023547173, -0.020271463319659233, -0.01701227016746998, -0.01085203792899847, -0.00722275348380208, -0.015400581993162632, -0.022718843072652817, -0.0036173458211123943, 0.0008535981178283691, -0.046655405312776566, 0.03046688623726368, -0.02726738713681698, 0.003975498955696821, 0.01652279496192932, 0.0014684275956824422, -0.0174539927393198, 0.020044632256031036, -0.02554825134575367, 0.022420382127165794, 0.005566295702010393, -0.07143959403038025, -0.039325207471847534, 0.005524510983377695, -0.004861927591264248, -0.01706002466380596, -0.04152187705039978, 0.015018551610410213, 0.04522279277443886, -0.008285273797810078, 0.02221742831170559, 0.00877474993467331, 0.025715390220284462, -0.06160232797265053, 0.034788601100444794, -0.04137861728668213, -0.006243801675736904, 0.020784815773367882, -0.05806855112314224, 0.03777321055531502, -0.014087353833019733, 0.0004495567118283361, -0.0008155443938449025, -0.052624624222517014, -0.004981311969459057, -0.009795485995709896, -0.004109806381165981, -0.016307903453707695, 0.03939683735370636, 0.023876870051026344, 0.011860835365951061, 0.030037103220820427, -0.01824192889034748, -0.03137420862913132, 0.011986189521849155, 0.0024220100603997707, -0.006769092753529549, 0.06508834660053253, -0.02274271845817566, 0.022396504878997803, 0.00415755994617939, -0.004205313976854086, 0.037224043160676956, -0.01078040711581707, -0.02237262763082981, -0.025906404480338097, -0.006190078798681498, 0.028174707666039467, 0.012523418292403221, 0.002718978561460972, -0.014529075473546982, 0.0343349389731884, 0.0098551781848073, 0.04407670348882675, -0.03323660418391228, -0.018015099689364433, -0.014075415208935738, -0.0024891637731343508, -0.009413456544280052, 0.018982112407684326, -0.03677038103342056, -0.015173750929534435, 0.024975206702947617, 0.016582487151026726, -0.03450207784771919, 0.003560638288035989, -0.030180364847183228, 0.04928186163306236, -0.009419425390660763, 0.0013415816938504577, 0.018719466403126717, -0.008876226842403412, 0.029320796951651573, 0.011496713384985924, -0.0029249165672808886, -0.02222936600446701, 0.019758110865950584, -0.022933734580874443, -0.002251887461170554, -0.02490357682108879, 0.014349998906254768, -0.002739870920777321, -0.016594424843788147, 0.02877162955701351, -0.01409929245710373, -0.04379018023610115, 0.046130113303661346, 0.035863060504198074, 0.033618632704019547, -0.033738017082214355, -0.00864939671009779, -0.021501122042536736, -0.011210191063582897, 0.026980863884091377, 0.0025473637506365776, -0.027076371014118195, -0.006213955581188202, 0.01782408356666565, -0.015340889804065228, -0.026670465245842934, 0.02903427556157112, 0.02965507283806801, 0.012016035616397858, -0.021393675357103348, -0.039325207471847534, -0.03151746839284897, 0.00403220672160387, -0.021465307101607323, -3.8799913454568014e-05, 0.03428718447685242, -0.009473148733377457, -0.05654042959213257, -0.00641690893098712, -0.010869945399463177, -0.01583036594092846, -0.03844176232814789, -0.011717574670910835, -0.0031995007302612066, -0.028317969292402267, 0.03655548766255379, -0.007509275805205107, 0.0017609192291274667, -0.003939683549106121, 0.004879835527390242, -0.042644090950489044, 0.005187250208109617, -0.05018918216228485, -0.03249642252922058, 0.013585939072072506, -0.030944423750042915, 0.010917698964476585, 0.06561364233493805, -0.015018551610410213, 0.019137311726808548, -0.03579143062233925, 0.05162179470062256, 0.031063808128237724, -0.04510340839624405, -0.005793125834316015, -0.03686589002609253, -0.01612882688641548, -0.011335544288158417, 0.02903427556157112, -0.0526723749935627, 0.0032144237775355577, -0.001402019988745451, -0.009079179726541042, 0.015555781312286854, 0.014433568343520164, -0.008392720483243465, 0.03218602016568184, -0.003089070087298751, 0.020725123584270477, 0.011681758798658848, -0.04675091430544853, -0.01124600600451231, 0.0021996567957103252, 0.04082944989204407, -0.0327351912856102, -0.018444882705807686, 0.004065037239342928, -0.011538498103618622, -0.0016564578982070088, -0.0067332773469388485, -0.01678544096648693, 0.024139516055583954, 0.005506603512912989, -0.030944423750042915, 0.05281563848257065, -0.02290985733270645, -0.0023951486218720675, 0.01423061452805996, 0.003483038628473878, -0.03223377466201782, -0.02037891000509262, -0.027601663023233414, -0.025190098211169243, -0.001741519314236939, -0.022659150883555412, -0.006136355921626091, 0.027506155893206596, -0.01178323570638895, 0.024855822324752808, -0.0024279793724417686, -0.002017595572397113, 0.008374812081456184, 0.00792115181684494, 0.021477244794368744, -0.04152187705039978, -0.0009006056934595108, -0.021524999290704727, -0.00045291439164429903, 0.012427911162376404, -0.015388643369078636, -0.03607795014977455, -0.03922969847917557, 0.03304558992385864, -0.032782942056655884, -0.007801767438650131, 0.04379018023610115, 0.018946297466754913, -0.031899500638246536, 0.018707528710365295, -0.04667928069829941, -0.02249201200902462, -0.016403410583734512, -0.026956986635923386, 0.025309482589364052, -0.02583477459847927, 0.008804596029222012, 0.004867896903306246, -0.025524374097585678, 0.0003508780791889876, -0.03963560611009598, 0.029846088960766792, 0.003730761120095849, -0.0027533017564564943, 0.019328325986862183, -0.02860449068248272, 0.017131654545664787, -0.010559545829892159, 0.008428535424172878, -0.01889854297041893, -0.027912061661481857, -0.02542886696755886, -0.006112478673458099, 0.019507402554154396, 0.014612644910812378, 0.013323293998837471, -0.01943577267229557, -0.014624583534896374, 0.01918506622314453, -0.010684899985790253, -0.021883152425289154, -0.02341127209365368, -0.03168460726737976, 0.00977757852524519, -0.0033039620611816645, 0.011610127985477448, -0.04154575616121292, 0.015651289373636246, -0.045175038278102875, 0.00845838151872158, -0.006607924122363329, 0.017656946554780006, 0.00459629762917757, -0.012189142405986786, 0.009031426161527634, 0.005766264162957668, -0.014242553152143955, -0.007031738292425871, -0.002650332637131214, 0.009497025050222874, -0.022945672273635864, 0.038680531084537506, 0.028532860800623894, -0.023339640349149704, -0.032018885016441345, -0.004312759730964899, -0.007342137861996889, -0.00884638074785471, 0.002016103360801935, -0.01770469918847084, -0.021202661097049713, -0.0004570182354655117, -0.005805063992738724, -0.01004619337618351, -0.02035503275692463, -0.0070854611694812775, -0.0074077993631362915, -0.052767883986234665, 0.03770158067345619, -0.011228098534047604, -0.02690923400223255, -0.004548544064164162, -0.028317969292402267, -0.0353616438806057, -0.017334608361124992, 0.033475372940301895, 0.041044339537620544, -0.02955956570804119, -0.009998439811170101, -0.038011979311704636, 0.011138560250401497, -0.024055946618318558, -0.038776036351919174, 0.04894758388400078, 0.04995041340589523, -0.03089667111635208, -0.015949750319123268, 0.02024758607149124, -0.03357088193297386, -0.015125997364521027, -0.017752453684806824, -0.0011117667891085148, 0.014946920797228813, -0.02156081423163414, -0.023053118959069252, -0.04087720438838005, -0.020557986572384834, 0.012404033914208412, 0.0030831010080873966, -0.015281197614967823, -0.025357237085700035, 0.016463102772831917, -0.008362874388694763, 0.015770673751831055, -0.012583110481500626, 0.01344267837703228, -0.008088289760053158, 0.003026393475010991, 0.027243509888648987, -0.0009752209298312664, 0.018528452143073082, 0.011789204552769661, 0.06083826720714569, 0.02994159609079361, -0.013406862504780293, -0.00010212958295596763, 0.020999707281589508, 0.016069134697318077, 0.022205490618944168, 0.0027100248262286186, -0.03860890120267868, -0.01756143756210804, -0.018194176256656647, -0.02434246987104416, -0.03636447340250015, -0.029225289821624756, -0.02755390852689743, 0.022527826949954033, 0.002539902226999402, -0.011651912704110146, -0.0436469204723835, -0.03500349074602127, 0.007437645457684994, 0.031087685376405716, -0.03474084660410881, 0.004336636513471603, -0.029583442956209183, 0.058880362659692764, -0.009550748392939568, -0.004294852260500193, -0.017501745373010635, 0.012881571426987648, 0.006590016186237335, -0.0037874686531722546, 0.014039600268006325, -0.006727308500558138, -0.033761896193027496, -0.028843259438872337, -0.020987769588828087, 0.002865224378183484, -0.010619238018989563, -0.00892398040741682, -0.005399157293140888, -0.02022370882332325, 0.02464093081653118, 0.003584515303373337, -0.01715553179383278, 0.018850790336728096, 0.0484461709856987, -0.004270975477993488, 0.004106821957975626, -0.006202016957104206, -0.014934982173144817, -0.0030040089040994644, 0.027362894266843796, -0.03887154534459114, 0.013741139322519302, 0.021238476037979126, -0.02688535675406456, 0.012463726103305817, 0.02662271074950695, 0.003048777813091874, -0.03185174614191055, -0.030395256355404854, -0.02834184467792511, 0.037486687302589417, 0.02569151297211647, 0.030538517981767654, 0.041569631546735764, -0.0017146577592939138, -0.024975206702947617, 0.012559234164655209, 0.02464093081653118, -0.004641066771000624, 0.014027661643922329, -0.018301621079444885, -0.0018012113869190216, 0.02994159609079361, -0.010452100075781345, 0.0020892261527478695, -0.018612021580338478, 5.9319099818821996e-05, -0.019220881164073944, 0.04667928069829941, -0.019376080483198166, -0.006136355921626091, 0.00899561122059822, 0.020259525626897812, 0.05749550461769104, 0.014696214348077774, 0.005267834756523371, -0.019340265542268753, 0.04161738604307175, 0.008894134312868118, -0.019125374034047127, 0.012869633734226227, 0.03858502209186554, -0.007694321684539318, -0.02035503275692463, -0.00361137674190104, 0.020534109324216843, -0.020569924265146255, 0.0065004779025912285, -0.0112400371581316, -0.023506779223680496, 0.003229346824809909, 0.018158359453082085, -0.016845133155584335, 0.004181437194347382, 0.0014393276069313288, -0.003238300560042262, 0.01283381786197424, 0.053054407238960266, 0.0019907341338694096, 0.010887852869927883, 0.008882195688784122, 0.029583442956209183, 0.028031446039676666, 0.02261139638721943, -0.0001069795762305148, -0.003706884104758501, -0.03242478892207146, -0.00768835237249732, 0.006607924122363329, 0.0020429647993296385, -0.004879835527390242, 0.022718843072652817, 0.022945672273635864, 0.027052493765950203, -0.012105573900043964, -0.005581218749284744, 0.008601642213761806, -0.006769092753529549, -0.026646587997674942, -0.0015311043243855238, 0.020677370950579643, 0.027052493765950203, 0.02251588925719261, -0.005706571973860264, -0.001199812744744122, 0.00784355215728283, -0.02464093081653118, 0.03252029791474342, 0.03684201091527939, 0.0369613952934742, -0.0035069154109805822, -0.002353364136070013, -0.0008170366636477411, -0.02970282733440399, -0.0497593991458416, 0.042811229825019836, 0.020402785390615463, -0.01004619337618351, 0.013860523700714111, -0.013144217431545258, -0.0016519810305908322, -0.0062199248932302, -0.00850613508373499, -0.006607924122363329, 0.026407819241285324, -0.008834442123770714, 0.01621239446103573, 0.02860449068248272, 0.0013087509432807565, -0.0007476445171050727, 0.0003514376876410097, 0.009371671825647354, 0.008004721254110336, 0.014863352291285992, 0.041975539177656174, 0.00359346903860569, -0.015340889804065228, 0.003918791189789772, 0.004073990974575281, 0.023494841530919075, 0.0535319447517395, 0.029320796951651573, -0.006404970772564411, 0.0030622086487710476, -0.01264280267059803, -0.013227785937488079, -0.023459024727344513, -0.009413456544280052, -0.028962643817067146, 0.0036442074924707413, 0.013812770135700703, -0.0006845946772955358, 0.0074794297106564045, 0.029201412573456764, -0.0012005588505417109, -0.03316497430205345, -0.015090182423591614, 0.01024317741394043, 0.001080428366549313, 0.014027661643922329, 0.009676101617515087, -0.016033317893743515, 0.013597877696156502, 0.02208610624074936, 0.021990597248077393, 0.013430739752948284, -0.002617501886561513, -0.0006163217476569116, -0.0027816554065793753, 0.03954009711742401, 0.025094591081142426, 0.01117437519133091, 0.013072586618363857, -0.00021768991427961737, -0.02490357682108879, -0.030705654993653297, 0.03808360919356346, 0.022683026269078255, 0.01569904200732708, -0.018397128209471703, -0.019901372492313385, 0.015042428858578205, -0.00419337535277009, -0.01031480822712183, 0.0056200185790658, -0.012499541975557804, 0.01902986504137516, -0.04672703519463539, -0.05080997943878174, -0.001563935074955225, 0.032782942056655884, -0.008685211651027203, 0.03271131217479706, 0.015472211875021458, 0.046249497681856155, -0.01729879342019558, 0.02065349370241165, 0.024163393303751945, -0.010159608907997608, 0.01217720378190279, -0.028843259438872337, -0.055442094802856445, -0.029678950086236, 0.012022004462778568, 0.024545423686504364, 0.0072466302663087845, 0.009741763584315777, 0.021190723404288292, 0.014063476584851742, 0.003259192919358611, 0.018707528710365295, -0.015078243799507618, -0.00030293778399936855, 0.005458849482238293, 0.011126621626317501, 0.038943175226449966, 0.010643115267157555, 0.01104902196675539, -0.016666056588292122, -0.00946121010929346, -0.0426202155649662, 0.020331155508756638, -0.013263601809740067, -0.02170407585799694, 0.001845980528742075, 0.03178011626005173, -0.010487915016710758, -0.020593801513314247, -0.009807424619793892, -0.022551704198122025, 0.014743967913091183, 0.02795981615781784, -0.0055692801252007484, 0.04001763463020325, -0.020414724946022034, -0.018003160133957863, 0.02074900083243847, 0.0011744436342269182, -0.0072466302663087845, -0.00045254130964167416, 0.002651824848726392, -0.0012557741720229387, -0.018552329391241074, -0.006691493093967438, 0.015328951179981232, 0.003581530647352338, -0.0359346903860569, 0.04670315980911255, -0.027339017018675804, 0.008762811310589314, 0.004849989432841539, -0.012571172788739204, 0.02889101393520832, 0.013597877696156502, 0.023327702656388283, -0.015066305175423622, -0.046368882060050964, 0.024521546438336372, -0.020677370950579643, 0.00035367615055292845, -0.014290306717157364, 0.02380524016916752, -0.007873398251831532, -0.0353616438806057, -0.040924955159425735, -0.017191346734762192, 0.04140249267220497, 0.023088933899998665, 0.00013897084863856435, -0.02877162955701351, 0.037056904286146164, -0.004008329473435879, -0.034000664949417114, 0.0024757329374551773, -0.019626786932349205, 0.02903427556157112, -0.011019175872206688, 0.016797378659248352, 0.006637770216912031, -0.016164641827344894, -0.017227161675691605, -0.023112811148166656, 0.008124105632305145, 0.024139516055583954, 0.0007677905960008502, 0.017239101231098175, -0.016809316352009773, -0.02872387506067753, -0.017883775755763054, -0.018074791878461838, 0.05319766700267792, 0.022527826949954033, -0.039850495755672455, 0.023076996207237244, 0.05310216173529625, 0.04178452491760254, 0.021596629172563553, -0.005825956352055073, -0.007742075249552727, -0.005390203557908535, -0.001616165740415454, 0.02659883350133896, 0.021608568727970123, -0.010213331319391727, 0.025906404480338097, -0.029464058578014374, 0.02795981615781784, 0.011807112954556942, 0.017107777297496796, -0.0024085792247205973, 0.012809941545128822, -0.06637769937515259, 0.008392720483243465, -0.03435881808400154, 0.003993406426161528, -0.028938766568899155, 0.009335856884717941, 0.018277743831276894, 0.004076975863426924, -0.00403220672160387, 0.0012662203516811132, -0.0198536179959774, 0.00818976666778326, 0.0010796822607517242, 0.054343756288290024, -0.021763768047094345, 0.006960107944905758, 0.037343427538871765, 0.04562870040535927, 0.009694009087979794, -0.017537562176585197, -0.024664808064699173, 0.01972229592502117, 0.052911143749952316, 0.003369623329490423, 0.005363341886550188, -0.017895715311169624, -0.04056680202484131, 0.021131031215190887, -0.023136688396334648, -0.008935919031500816, -0.024975206702947617, -0.013430739752948284, -0.00362928444519639, 0.014732029289007187, -0.012941263616085052, 0.03660324215888977, -0.012427911162376404, -0.014541014097630978, -0.010959483683109283, -0.0031666699796915054, 0.003921776078641415, -0.0023727640509605408, 0.027171878144145012, -0.03486023098230362, -0.010541638359427452, -0.01822999119758606, 0.006363186053931713, 0.004918635357171297, 0.006804908160120249, 0.017764391377568245, -0.015424458310008049, -0.015269258990883827, -0.0124398497864604, -0.006643739063292742, 0.010661022737622261, -0.0066616469994187355, 0.014194799587130547, 0.011532528325915337, 0.012392096221446991, -0.010278993286192417, 0.007240660954266787, -0.005500634200870991, 0.035051245242357254, 0.01904180459678173, -0.013657569885253906, -0.009365702979266644, -0.006494509056210518, 0.004044144880026579, 0.012989018112421036, 0.0031666699796915054, 0.015412519685924053, -0.0147678442299366, -0.029201412573456764, -0.014397753402590752, 0.008058443665504456, -0.01701227016746998, -0.03407229483127594, 0.0015400581760331988, 0.02554825134575367, -0.012953202240169048, 0.0015773657942190766, -0.012798002921044827, -0.002402610145509243, 0.004494820721447468, 0.014158984646201134, -0.02277853526175022, -0.009246318601071835, 0.02382911741733551, -0.013848585076630116, -0.023232195526361465, -0.012953202240169048, 0.024545423686504364, 0.0011639974545687437, 0.004456020891666412, -0.05921464040875435, -0.003718822728842497, 0.02060573920607567, 0.0010826668003574014, -0.011478805914521217, -0.017895715311169624, 0.0033039620611816645, 0.047586604952812195, -0.004127713851630688, -0.011986189521849155, 0.024449914693832397, -0.005232019349932671, 0.008362874388694763, 0.011007237248122692, 0.007198876701295376, -0.006166202016174793, 0.005921463947743177, 0.012750249356031418, -0.02236068993806839, -0.006679554469883442, -0.011263913474977016, -0.003095039399340749, -0.015257320366799831, 0.0005618525901809335, 0.020713185891509056, 0.015173750929534435, 0.02195478230714798, -0.013884400017559528, -0.01363369356840849, -0.019937187433242798, 0.028007568791508675, -0.02688535675406456, -0.008058443665504456, 0.01137135922908783, 0.020450539886951447, -0.04314550384879112, 0.03774933144450188, 0.014266430400311947, 0.021262353286147118, 0.008082320913672447, -0.0021280262153595686, -0.00302490103058517, 0.0004917142796330154, 0.020474417135119438, 0.018612021580338478, -0.008518073707818985, -0.008004721254110336, 0.005664787720888853, 0.010183485224843025, 0.015555781312286854, 0.02024758607149124, 0.0057961102575063705, 0.008153951726853848, -0.01795540750026703, -0.004175467882305384, -0.025094591081142426, -0.029726704582571983, -0.0149111058562994, -0.007485399022698402, -0.010470007546246052, 0.018671713769435883, 0.03820299357175827, 0.026025788858532906, -0.066043421626091, -0.016391471028327942, 0.03662712126970291, 0.009932777844369411, -0.00761672155931592, 0.0162243340164423, 0.0045127286575734615, -0.042524706572294235, 0.016689931973814964, -0.014469383284449577, 0.020474417135119438, 0.02955956570804119, 0.007192907389253378, 0.0031786083709448576, 0.009085149504244328, -0.019650664180517197, 0.002969685709103942, -0.008953826501965523, 0.04257246106863022, 0.03299783542752266, 0.006972046103328466, -0.005369311198592186, -0.022336812689900398, -0.01609301008284092, -0.02301730401813984, -0.03882379084825516, 0.012917387299239635, -0.020725123584270477, -0.010911730118095875, -0.004700758960098028, 0.013024833053350449, 0.0054290033876895905, -0.00945524126291275, 0.013538185507059097, -0.005578233860433102, 0.014851413667201996, 0.020259525626897812, -0.04071006551384926, 0.005727464333176613, 0.024975206702947617, 0.006363186053931713, -0.0074794297106564045, -0.021190723404288292, -0.007628660183399916, 0.030848916620016098, -0.03789259493350983, -0.005608079954981804, 0.04603460803627968, -0.006434816867113113, 0.00845241267234087, 0.03450207784771919, -0.023530656471848488, -0.016928700730204582, -0.0012938278960064054, 0.026551080867648125, -0.029917718842625618, 0.017083901911973953, -0.01677350141108036, -0.009634316898882389, -0.0030338549986481667, -0.0011990666389465332, 0.010481946170330048, 0.007324229925870895, -0.009204533882439137, -0.045198917388916016, -0.0030681779608130455, 0.031756237149238586, -0.0097835473716259, -0.02276659570634365, -0.014385814778506756, 0.006130386609584093, -0.011078868061304092, -0.04042354226112366, -0.0031815930269658566, 0.01418286096304655, -0.023518716916441917, 0.03569592162966728, 0.0020071493927389383, -0.04235756769776344, 0.005834910087287426, 0.01967454142868519, -0.002195179695263505, -0.03383352607488632, 0.010947545059025288, 0.025715390220284462, 0.009329887107014656, -0.00028558974736370146, 0.05897587165236473, -0.033475372940301895, -0.02208610624074936, 0.0011804128298535943, -0.0017743499483913183, 0.00911499559879303, -0.0006760138785466552, 0.017465930432081223, -0.027888184413313866, -0.0410204641520977, -0.014827536419034004, 0.0195670947432518, -0.03674650564789772, 0.0018340421374887228, 0.016152702271938324, 0.00698995403945446, 0.011311667039990425, 0.0075212144292891026, -0.02901039831340313, -0.016331778839230537, 0.006160232704132795, 0.014075415208935738, -0.0037755302619189024, 0.015125997364521027, -0.019877495244145393, 0.03259192779660225, -0.025118468329310417, 0.017131654545664787, -0.013991845771670341, 0.020426662638783455, 0.03796422481536865, 0.0033964847680181265, -0.025596005842089653, -0.004835066385567188, 0.006243801675736904, 0.0014363429509103298, 0.024545423686504364, -0.003489007707685232, -0.0018504575127735734, 0.015436396934092045, 0.022694965824484825, 0.01337104756385088, 0.03927745297551155, -0.018265806138515472, -0.0073660146445035934, -0.010207362473011017, 0.014457445591688156, -0.026933109387755394, -0.012075727805495262, -0.026407819241285324, 0.0024011177010834217, -0.033881280571222305, -0.014505199156701565, 0.005363341886550188, 0.003984452690929174, -0.004894758574664593, -0.018015099689364433, -0.012989018112421036, -0.03342761844396591, 0.02074900083243847, -0.011669820174574852, 0.017752453684806824, -0.0171674694865942, -0.021787645295262337, -0.03182786703109741, 0.016857070848345757, -0.03380965068936348, 0.01849263720214367, -0.03581530600786209, -0.006339309271425009, 0.018576204776763916, -0.006936231162399054, 0.018134484067559242, -0.0033099311403930187, -0.034406568855047226, -0.009055303409695625, -0.02049829438328743, -0.0010080516804009676, -0.0033338081557303667, 0.022706903517246246, -0.0015758734662085772, 0.037868715822696686, -0.014349998906254768, -0.024736437946558, 0.0018937343265861273, 0.017513684928417206, 0.025070713832974434, -0.010231238789856434, -0.02115490660071373, 0.060647252947092056, 0.018862728029489517, 0.03743893280625343, -0.01344267837703228, -0.003089070087298751, -0.021775705739855766, -0.008631488308310509, 0.020689308643341064, 0.0324486680328846, 0.009694009087979794, 0.023136688396334648, -0.03316497430205345, 0.04300224408507347, -0.017501745373010635, -0.0024891637731343508, 0.026312312111258507, 0.003103993134573102, -0.0030592239927500486, 0.005578233860433102, -0.016415348276495934, 0.0359346903860569, 0.00021302646200638264, 0.002775686327368021, -0.005029066000133753, -0.047156818211078644, 0.05911913141608238, 0.017274916172027588, -0.017871838063001633, -0.015293135307729244, -0.005348418839275837, 0.04235756769776344, 0.016809316352009773, -0.029082028195261955, 0.03297396004199982, 0.04928186163306236], [0.011939402669668198, -0.008357581682503223, -0.011279159225523472, -0.00793942715972662, -0.051190875470638275, -0.030503246933221817, 0.012093459255993366, -0.0032214378006756306, 0.03184574097394943, 0.021325863897800446, 0.034750811755657196, -0.004462145268917084, -0.031141482293605804, 0.013876116834580898, 0.014195234514772892, -0.000301751890219748, 0.019543206319212914, 0.011576268821954727, -0.029380833730101585, -0.008225533179938793, -0.04388418048620224, 0.0006698719807900488, 0.01133417896926403, -0.03085537627339363, 0.029754972085356712, -0.03818408027291298, 0.019565213471651077, -0.02044553868472576, 0.01905902847647667, -0.04368610680103302, 0.04656917229294777, -0.02568347007036209, -0.015933874994516373, -0.05330365523695946, 0.044192295521497726, -0.015625761821866035, 0.0028046590741723776, -0.005144396796822548, -0.00607423996552825, -0.01496551837772131, -0.039526574313640594, 0.048637934029102325, 0.040120795369148254, -0.08200223743915558, 0.023724747821688652, 0.049166128039360046, 0.044962577521800995, -0.009771603159606457, -0.003015111666172743, 0.01978529617190361, -0.011312170885503292, 0.007493763230741024, -0.005155400838702917, -0.02330659329891205, 0.04095710068941116, -0.024649089202284813, 0.03059127926826477, 0.024186918511986732, 0.036841586232185364, 0.00730119226500392, -0.00997517816722393, -0.07262677699327469, 0.016726167872548103, -0.002998605603352189, -0.012126470915973186, -0.018948987126350403, 0.015724798664450645, 0.023592699319124222, 0.005760624073445797, 0.01107008196413517, -0.03472880646586418, 0.011862373910844326, -0.016660142689943314, 0.01935613714158535, -0.019466178491711617, 0.01667114719748497, -3.395783278392628e-05, -0.054668158292770386, -0.011378195136785507, -0.07601603120565414, -0.02535334788262844, -0.01925710029900074, -0.037567853927612305, 0.007972439751029015, 0.004861042369157076, 0.016891228035092354, 0.013017799705266953, -0.01839878410100937, 0.004552928730845451, -0.047053348273038864, -0.039196453988552094, -0.020335497334599495, 0.02535334788262844, -0.014228246174752712, -0.045952942222356796, -0.0718344897031784, -0.0031664175912737846, 0.005502028856426477, -0.036577485501766205, 0.060742396861314774, -0.003328727325424552, 0.0415073037147522, -0.01948818564414978, 0.03263803571462631, 0.022514302283525467, 0.011378195136785507, -0.026541786268353462, -0.039064403623342514, 0.016429057344794273, -0.009601039811968803, 0.08160609006881714, -0.008434610441327095, -0.013667039573192596, 0.03983468934893608, 0.010745462030172348, 0.005056364461779594, 0.006156770046800375, -0.012555629946291447, -0.037501826882362366, -0.02927079237997532, -0.04042890667915344, -0.013733063824474812, 0.011972414329648018, -0.04740548133850098, 0.06668458878993988, 0.0121484799310565, -0.00011941121920244768, 0.02574949525296688, -0.0004078378842677921, 0.01146622747182846, 0.043400004506111145, -0.028214402496814728, 0.030019069090485573, -0.01962023414671421, 0.0322859063744545, -0.02495720237493515, 0.027554159983992577, -0.0005230365786701441, 0.012434585019946098, -0.005931186955422163, -0.003537804586812854, -0.015724798664450645, 0.03406856209039688, 0.0121484799310565, 0.01244558859616518, 0.027752233669161797, -0.012203499674797058, 0.01325988955795765, 0.010910523124039173, 0.023482657968997955, -0.006883037742227316, -0.047713592648506165, -0.031867749989032745, -0.04491856321692467, 0.025661462917923927, 0.00474825082346797, 0.026101624593138695, 0.05691298469901085, 0.03125152364373207, 0.013226876966655254, -0.03655548021197319, -0.0008775735623203218, -0.042871806770563126, -0.023988844826817513, 0.019466178491711617, 0.026409737765789032, 0.0013913254952058196, -0.037897974252700806, -0.05757322907447815, -0.04670121893286705, -0.02054457552731037, 0.030437223613262177, 0.015493713319301605, -0.0550202876329422, -0.007944929413497448, -0.021138794720172882, 0.06329534202814102, -0.004654716234654188, 0.014932505786418915, 0.057221099734306335, 0.009331440553069115, -0.01473443303257227, -0.00818701833486557, -0.009347946383059025, 0.009584533981978893, 0.0690174475312233, 0.026211664080619812, -0.029380833730101585, 0.02210715226829052, -0.03626937419176102, -0.009023327380418777, -0.012434585019946098, -0.011697312816977501, -0.0039422037079930305, -0.052379313856363297, -0.018101675435900688, -0.02171100489795208, -0.04533671587705612, 0.053875867277383804, 0.000719390285667032, 0.019543206319212914, 0.03882231563329697, -0.0027372592594474554, -0.06536410003900528, -0.015735801309347153, -0.01958722248673439, 0.04832981899380684, -0.027224037796258926, -0.005207670386880636, 0.05202718451619148, 0.001900950912386179, 0.012962779961526394, -0.013171857222914696, 0.012885751202702522, -0.04170537739992142, -0.015427688136696815, 0.018178703263401985, 0.05594462901353836, -0.005991709418594837, 0.03974665701389313, -0.019928347319364548, -0.02946886606514454, 0.04700933396816254, -0.0028335447423160076, -0.018904970958828926, -0.07055801898241043, 0.01385410875082016, -0.03708367422223091, 0.041375257074832916, -0.08798844367265701, 0.012940771877765656, 0.017375405877828598, -0.057221099734306335, -0.019048023968935013, -0.006850025616586208, 0.02041252702474594, -0.023284586146473885, -0.03446470946073532, -0.007785370573401451, -0.0352570004761219, -0.009468991309404373, 0.02823641151189804, -0.013601015321910381, 0.001957346685230732, 0.002888565184548497, -0.001356937806122005, -0.019994372501969337, -0.015504716895520687, 0.02522129938006401, -0.05620872601866722, -0.015317647717893124, -0.04507261887192726, 0.02876460552215576, -0.05013448745012283, 0.020896704867482185, 0.04155132174491882, 0.04126521572470665, 0.03155963867902756, -0.008924290537834167, 0.0009339693933725357, -0.0005264753708615899, -0.018838945776224136, -0.04452241584658623, 0.023108521476387978, -0.0367315448820591, -0.011620284989476204, 0.0027647693641483784, 0.0018775672651827335, -0.03767789155244827, 0.04731744900345802, -0.04106714203953743, 0.018024645745754242, 0.0030068587511777878, 0.03549908846616745, -0.03675355017185211, 0.0021788033191114664, -0.013645031489431858, -0.02588154375553131, 0.001986232353374362, 0.03917444497346878, -0.018211714923381805, 0.00936445314437151, 0.021226827055215836, -0.0224042609333992, -0.012599646113812923, -0.01448133960366249, 0.0454687662422657, 0.0005323212826624513, 0.017606491222977638, -0.025067243725061417, 0.0676969587802887, -0.01886095479130745, 0.011642293073236942, 0.019246095791459084, -0.00864918902516365, -0.017078297212719917, -0.04212353378534317, 0.01938914880156517, 0.010503373108804226, -0.007675330154597759, -0.015284636057913303, 0.01037682592868805, 0.005997211206704378, -0.029556898400187492, -0.056428804993629456, 0.04328996315598488, 0.02561744675040245, 0.009601039811968803, 0.006938058417290449, 0.006646450608968735, -0.012973783537745476, 0.03169168531894684, -0.014030173420906067, -0.005221425089985132, 0.008429108187556267, 0.018607860431075096, 0.00334798451513052, 0.03712768852710724, -0.019939351826906204, 0.006173276342451572, 0.07504767179489136, -0.02087469771504402, 0.013733063824474812, -0.06923753023147583, 0.00766432611271739, -0.015482708811759949, 0.008467622101306915, 0.019180072471499443, -0.029776979237794876, -0.043466027826070786, -0.027950305491685867, 0.03197779133915901, 0.02856653369963169, -0.017122313380241394, 0.001187750487588346, 0.026189656928181648, -0.007031592540442944, -0.004198047798126936, 0.0499144047498703, 0.01496551837772131, 0.00173176359385252, -0.010404336266219616, -0.005788134410977364, -0.03085537627339363, 2.417883661109954e-05, 0.010894017294049263, 0.022624341771006584, 0.008109990507364273, 0.0058486564084887505, 0.0038761792238801718, -0.02889665588736534, 0.04965030774474144, -0.03842616826295853, -0.00597520312294364, -0.00020271536777727306, -0.030371198430657387, 0.032395943999290466, -0.059245847165584564, 0.006998580414801836, -0.025705479085445404, -0.006833519786596298, -0.014646400697529316, 0.008726217783987522, 0.012709686532616615, -0.019840314984321594, 0.013127840124070644, -0.01555973757058382, -0.009419472888112068, 0.016858216375112534, -0.04599696025252342, 0.016979260370135307, 0.018981998786330223, 0.0014442825922742486, -0.051190875470638275, -0.0020770158153027296, 0.032594017684459686, -0.024935193359851837, 0.022558318451046944, -0.048902031034231186, 0.003460776060819626, 0.012390568852424622, -0.004861042369157076, -0.0019353386014699936, 0.0881204903125763, 0.0005670528626069427, -0.017342394217848778, -0.022624341771006584, -0.017111308872699738, -0.018288742750883102, 0.02220618724822998, -0.026189656928181648, 0.054536107927560806, 0.04617302492260933, -0.0019655998330563307, 0.03155963867902756, 0.0047317445278167725, 0.0607864148914814, 0.043267954140901566, -0.013149849139153957, -0.02077566087245941, 0.026497770100831985, 0.0016863718628883362, -0.016153955832123756, 0.00031309982296079397, -0.003518547397106886, 0.038294121623039246, 0.039592597633600235, -0.006365847308188677, 0.009793611243367195, 0.05180710181593895, -0.011543256230652332, -0.05246734619140625, 0.005771628115326166, -0.014976521953940392, 0.020841684192419052, 0.028676573187112808, 0.02197510190308094, 0.010178753174841404, 0.041221197694540024, -0.014316278509795666, 0.035014912486076355, 0.006954564247280359, 0.023108521476387978, 0.02436298318207264, 0.008489630185067654, 0.018673885613679886, -0.0026217165868729353, -0.002488292520865798, -0.014272262342274189, -0.06518803536891937, -0.0352570004761219, 0.031603652983903885, 0.07421136647462845, 0.007647819817066193, -0.06848925352096558, -0.01958722248673439, -0.017485447227954865, -0.03831612691283226, 0.027950305491685867, 0.009689073078334332, -0.05458012595772743, -0.0134249497205019, -0.005416747182607651, -0.04408225417137146, -0.06021420285105705, -0.0038844323717057705, -0.00891878828406334, -0.0025089250411838293, 0.02376876398921013, -0.02343864180147648, -0.008605172857642174, -0.029094727709889412, -0.04753752797842026, 0.030041076242923737, -0.03336430341005325, -0.008885776624083519, -0.0031471604015678167, -0.0945468619465828, 0.04912211373448372, 0.01597789116203785, -0.011587272398173809, 0.018673885613679886, 0.04709736630320549, -0.0006464883917942643, -0.013942141085863113, 0.03470679745078087, 0.019070031121373177, 0.0060192192904651165, -0.01647307351231575, -0.04335598647594452, 0.030833369120955467, -0.06633245944976807, 0.022690366953611374, 0.012236512266099453, 0.03532302379608154, -0.005650583654642105, 0.003204931737855077, -0.013766075484454632, -0.025573428720235825, 0.03523499146103859, 0.015768814831972122, 0.04951825737953186, -0.017089301720261574, -0.06298722326755524, -0.013501978479325771, 0.006839021574705839, 0.05022251978516579, 0.009298428893089294, -0.030679311603307724, 0.00370836746878922, -0.015691785141825676, -0.02561744675040245, -0.03864625096321106, -0.0076368157751858234, 0.018321756273508072, -0.004847287200391293, -0.025969576090574265, -0.009177383966743946, 0.04428032785654068, -0.028280427679419518, 0.016330020502209663, -0.017672516405582428, -0.009402967058122158, 0.04108915105462074, 0.0009243408567272127, -0.04177140071988106, -0.01473443303257227, -0.016484078019857407, -0.003515796270221472, -0.009072845801711082, -0.048769984394311905, -0.03151562064886093, 0.009909153915941715, -0.018882961943745613, -0.02383478917181492, -0.03820608928799629, 0.010228271596133709, 0.009997186250984669, -0.012786714360117912, 0.026739859953522682, -0.012214504182338715, 0.02489117719233036, -0.025969576090574265, 0.01915806345641613, -0.02999706007540226, -0.0035433066077530384, 0.021402891725301743, -0.02121582254767418, 0.058717649430036545, 0.022822415456175804, 0.0015171844279393554, -0.018915975466370583, -0.07328702509403229, -0.030679311603307724, -0.0034827841445803642, -0.02280040644109249, -0.0042310599237680435, 0.029953043907880783, 0.029380833730101585, -0.0024937945418059826, 0.03263803571462631, -0.006360345054417849, -0.022888438776135445, -0.034684788435697556, 0.023680731654167175, 0.010354817844927311, 0.03941653296351433, -0.022712374106049538, 0.009402967058122158, -0.005248935427516699, -0.016792191192507744, 0.011262652464210987, -0.024451015517115593, -0.0028528019320219755, -0.02004939317703247, 0.018519828096032143, 0.020830681547522545, 0.0013982030795887113, 0.012126470915973186, 0.013975152745842934, 0.018255731090903282, -0.0030398708768188953, 0.02174401842057705, -0.017771553248167038, -0.0003958021989092231, 0.011262652464210987, -0.008203525096178055, -0.00951300747692585, 0.02147991955280304, -0.04978235438466072, 0.007961435243487358, 0.005595563445240259, 0.0017964123981073499, -0.010673935525119305, -0.03406856209039688, 0.006525406148284674, 0.04474249854683876, -0.010514376685023308, -0.011983418837189674, 0.03105344995856285, 0.030349191278219223, 0.015658773481845856, 0.010530883446335793, -0.01782657392323017, -0.05995010584592819, 0.0079064154997468, -0.009755097329616547, -0.0010041202185675502, -0.008308063261210918, 0.013050812296569347, 0.015702789649367332, -0.014294270426034927, 0.019840314984321594, -0.03098742663860321, -0.025045234709978104, 0.040252842009067535, 0.005422249436378479, 0.05867363512516022, -0.021193815395236015, 0.0002570479118730873, -0.037435803562402725, 0.0036203349009156227, 0.019279109314084053, -0.005892672576010227, -0.01627500168979168, 0.029556898400187492, -0.004019232001155615, -0.024671096354722977, -0.02489117719233036, 0.0252873245626688, -0.0016753677045926452, -0.020962730050086975, -0.017408419400453568, -0.011807353235781193, -0.01614295318722725, -0.004773010034114122, -0.005130641628056765, -0.004800519905984402, 0.049298178404569626, 0.005152649711817503, -0.0355871208012104, -0.020192446187138557, 0.0145803764462471, -0.029424849897623062, -0.04639310762286186, -0.008803245611488819, -0.00803846400231123, -0.010019194334745407, 0.008902282454073429, -0.05224726349115372, -0.01634102500975132, -0.007378220558166504, -1.8623077266965993e-05, -0.02979898825287819, 0.025969576090574265, -0.02396683767437935, -0.03728174790740013, 0.018211714923381805, -0.038866329938173294, 0.0020563832949846983, 0.03695162385702133, -0.00027045910246670246, 0.022514302283525467, -0.019807303324341774, 0.051719069480895996, -0.0068610296584665775, -0.03305618837475777, 0.03367241472005844, -0.03373844176530838, -0.015801826491951942, 0.010140239261090755, 0.006706973072141409, -0.043003857135772705, 0.03191176801919937, -0.004398872144520283, -0.012368560768663883, -0.003977966960519552, 0.03012910857796669, -0.017903601750731468, -0.008275051601231098, -0.02077566087245941, 0.01809067092835903, 0.007240669801831245, 0.003546057501807809, 0.008231035433709621, 0.0059476932510733604, 0.034948885440826416, -0.02737809531390667, 0.012214504182338715, 0.017342394217848778, -0.03747982159256935, -0.0021829300094395876, -0.01143321581184864, -0.02953488938510418, 0.019202079623937607, 0.028588540852069855, -0.020599596202373505, 0.038756292313337326, -0.015823835507035255, 0.025573428720235825, 0.005515784025192261, -0.01339193806052208, 0.012841735035181046, 0.009182886220514774, -0.0038734283298254013, -0.01762850023806095, 0.0056175715290009975, -0.06470385938882828, -0.003452523145824671, 0.013501978479325771, 0.0006237925263121724, -0.0003022676974069327, -0.013601015321910381, -0.01143321581184864, -0.011774341575801373, -0.028918663039803505, 0.01839878410100937, 0.013336917385458946, -0.004266823176294565, 0.022888438776135445, 0.010096223093569279, -0.026431746780872345, -0.011774341575801373, -0.08068174868822098, -0.07425537705421448, 0.00607423996552825, -0.049562275409698486, -0.013468966819345951, 0.0444784015417099, 0.01620897650718689, -0.03659949451684952, 0.04445639252662659, -0.034024544060230255, -0.02456105686724186, -0.024252941831946373, -0.027730224654078484, 0.019763287156820297, -0.01218149159103632, -0.0013562501408159733, 0.014789453707635403, -0.02718002162873745, 0.0007991696475073695, -0.05554848164319992, 0.024010853841900826, 0.028544524684548378, 0.027334079146385193, -0.004176039714366198, -0.032197874039411545, 0.005116886924952269, 0.015922870486974716, 0.014525355771183968, -0.04014280065894127, 0.018024645745754242, -0.003964211791753769, -0.010382328182458878, 0.0064648836851119995, 0.0016038414323702455, -0.0021045259200036526, 0.015295639634132385, 0.005458012688905001, -0.018354767933487892, -0.025243308395147324, -0.010283291339874268, -0.03453073278069496, -0.04053894802927971, -0.007455248851329088, 0.0048968056216835976, 0.012918763794004917, -0.02508925087749958, -0.003491037292405963, -0.02087469771504402, 0.005766126327216625, -0.003452523145824671, -0.0011341057252138853, -0.015768814831972122, 0.018354767933487892, 0.0004532296152319759, -0.012632657773792744, -0.031009433791041374, -0.019048023968935013, 0.009292926639318466, -0.011152612045407295, -0.029776979237794876, 0.024318967014551163, 0.02077566087245941, -0.0028142877854406834, -0.010750964283943176, -0.012863743118941784, 0.006250304635614157, -0.03943854197859764, -0.010453854687511921, 0.026387730613350868, 0.0033507354091852903, -0.007251673843711615, 0.01998336799442768, -0.02764219231903553, -0.0413532480597496, -0.006668458692729473, -0.022954463958740234, -0.02167799323797226, 0.02960091456770897, -0.025397364050149918, -0.01962023414671421, -0.0035405554808676243, -1.4012979590916075e-05, -0.017804564908146858, -0.00406875042244792, 0.03325426205992699, 0.01195040624588728, -0.012027435004711151, -0.025067243725061417, -0.039526574313640594, -0.011972414329648018, -0.04736146330833435, -0.028676573187112808, 0.024406999349594116, 0.016781188547611237, -0.024803144857287407, -0.008478626608848572, 0.026167647913098335, -0.038558218628168106, -0.00861617736518383, 0.023592699319124222, -0.018871959298849106, 0.005309457890689373, 0.012137475423514843, -0.01809067092835903, -0.024979211390018463, -0.023350609466433525, 0.009303930215537548, 0.016297008842229843, -0.010371324606239796, -0.009276420809328556, 0.03387048840522766, 0.0057441177777945995, 0.006277814973145723, -0.009369955398142338, 0.02436298318207264, 0.003631338942795992, 0.0038954364135861397, -0.0034800332505255938, 0.010371324606239796, 0.06470385938882828, 0.0032984663266688585, 0.030481239780783653, 0.030877385288476944, -0.037501826882362366, -0.006525406148284674, 0.020588591694831848, 0.03131754696369171, 0.007790872827172279, 0.005119637586176395, -0.044962577521800995, 0.0067399851977825165, -0.04885801672935486, -0.03466277942061424, -0.03171369433403015, 0.023526674136519432, -0.023878805339336395, 0.02515527606010437, 0.023944828659296036, -0.01789259724318981, -0.024054870009422302, -0.0024263947270810604, -0.014624392613768578, 0.01607692800462246, -0.01166430115699768, 0.012192496098577976, 0.002330109244212508, 0.02181004174053669, -0.030569272115826607, -0.01995035633444786, 0.0019064529333263636, 0.03653347119688988, 0.003785395761951804, -0.06263509392738342, -0.017705528065562248, -0.018002638593316078, -0.006844523828476667, -0.03842616826295853, 0.008852764032781124, -0.0016010904219001532, -0.014459331519901752, -0.00962855014950037, 0.019180072471499443, -0.0029848506674170494, 0.011389199644327164, 0.012500609271228313, -0.0022393257822841406, 0.0041677867993712425, 0.04368610680103302, 0.008352079428732395, -0.02098473720252514, -0.013909128494560719, -0.020940721035003662, -0.0013961398508399725, 0.015042546205222607, -0.0013761949958279729, 0.0021430402994155884, 0.031163491308689117, -0.033694423735141754, 0.012170488014817238, 0.029116736724972725, -0.020764656364917755, -0.016462070867419243, -0.039064403623342514, -0.02508925087749958, 0.05149899050593376, 0.032131846994161606, 0.031471602618694305, 0.03516896814107895, -0.003634090069681406, -0.016913237050175667, 0.025243308395147324, 0.010569397360086441, -0.01559274923056364, 0.014712424948811531, -0.03277008235454559, -0.01306181587278843, 0.029843004420399666, -0.013215873390436172, -0.014063185080885887, -0.00529570272192359, 0.004976585041731596, -0.012654665857553482, 0.04894604906439781, -0.019928347319364548, -0.04894604906439781, -0.032395943999290466, -0.008236536756157875, 0.08662393689155579, 0.00888027437031269, 0.034090571105480194, 0.0023424888495355844, 0.01624198816716671, 0.00974409282207489, -0.02423093467950821, -0.02416490949690342, 0.04670121893286705, 0.007499265018850565, -0.03924046829342842, 0.03831612691283226, 0.04630507528781891, -0.027620185166597366, 0.008847261779010296, -0.006261308677494526, -0.0014800457283854485, 0.0023328601382672787, 0.020764656364917755, -0.006850025616586208, 0.012478601187467575, 0.004101762548089027, -0.03283610939979553, 0.011653296649456024, 0.04899006336927414, 0.019939351826906204, 0.009887145832180977, -0.0005632701795548201, 0.04626105725765228, 0.03105344995856285, 0.04788965731859207, 0.0025584434624761343, -0.010525381192564964, -0.02330659329891205, 0.006883037742227316, 0.006607936695218086, -0.053083572536706924, 0.005722109694033861, 0.006850025616586208, 0.01785958558320999, -0.007966937497258186, 0.04978235438466072, 3.2695161280571483e-06, 0.0028913160786032677, -0.021259838715195656, 0.014547363854944706, -0.00031361563014797866, 0.021733013913035393, 0.026761867105960846, 0.014910497702658176, -0.005394739098846912, 0.038404159247875214, -0.0044511412270367146, -0.010624417103827, 0.05004645511507988, 0.019829312339425087, 0.03734777122735977, 0.015834838151931763, 0.039064403623342514, -6.38321289443411e-05, -0.0053892373107373714, -0.018739910796284676, 0.0438181571662426, 0.010883012786507607, 0.01365603506565094, 0.042211566120386124, -0.0390423946082592, 0.01762850023806095, 0.018871959298849106, -0.0013452459825202823, -0.02021445333957672, 0.018508825451135635, 0.0005560487625189126, 0.020764656364917755, 0.021061766892671585, 0.004800519905984402, 0.04841785132884979, -0.006316328886896372, -0.0013452459825202823, -0.0024676600005477667, 0.024451015517115593, 0.02332860231399536, -0.013700051233172417, -0.01836577244102955, -0.004354855976998806, 0.004082505125552416, 0.028214402496814728, 0.07394726574420929, -0.00622279429808259, 0.009881643578410149, 0.031669676303863525, 0.002420892706140876, 0.0265197791159153, -0.01421724259853363, 0.01988433115184307, -0.015526724979281425, 0.026365721598267555, -0.01690223254263401, 0.006046729627996683, 0.012764706276357174, 0.03732576221227646, -0.01673717051744461, -0.016495082527399063, -0.037831950932741165, -0.011785345152020454, -0.03131754696369171, 0.015207607299089432, 0.013457962311804295, 0.005821146536618471, -0.0011794974561780691, 0.01657211035490036, -0.009716582484543324, 0.004836283158510923, 0.03400253877043724, -0.015075558796525002, -0.0022063134238123894, 0.03648945316672325, 0.0148664815351367, 0.023812780156731606, 0.03545507416129112, 0.0074607511050999165, -0.0037248735316097736, -0.005920182913541794, 0.021457912400364876, -0.0011794974561780691, 0.02054457552731037, -0.02024746499955654, -0.03433265909552574, -5.931874693487771e-05, -0.010894017294049263, 0.011400203220546246, 0.005909178871661425, -0.007818383164703846, 0.017584484070539474, -0.009705578908324242, -0.048373837023973465, -0.005086625460535288, 0.042013492435216904, -0.010398834012448788, 0.025903550907969475, -0.028346452862024307, 0.03505892679095268, -0.024913186207413673, 0.005144396796822548, 0.026607811450958252, 3.144323636661284e-05, -0.012632657773792744, -0.046217042952775955, -0.020203448832035065, -0.019433164969086647, 0.019213084131479263, 0.008297059684991837, 0.006618940737098455, 0.03851420059800148, 0.017903601750731468, -0.005815644282847643, -0.01448133960366249, -0.0022640847600996494, -0.006767495535314083, 0.01450334768742323, -0.002031624084338546, 0.012423580512404442, 0.01998336799442768, 0.03721572086215019, -0.004800519905984402, -0.010200761258602142, -0.02933681756258011, -0.0479336753487587, 0.002675361465662718, 0.00851714052259922, -0.013446957804262638, 0.019411157816648483, 0.012214504182338715, -0.011642293073236942, 0.001969726290553808, 0.016594119369983673, -0.007691835984587669, -0.023680731654167175, 0.03241795301437378, -0.028346452862024307, 0.011631288565695286, 0.01846480928361416, -0.023592699319124222, 0.02876460552215576, 0.01559274923056364, -0.02204112708568573, 0.008951800875365734, -0.0023025991395115852, 0.0349268801510334, -0.007669827900826931, -0.017276370897889137, -0.011620284989476204, -0.0008865143754519522, -0.02343864180147648, 0.04670121893286705, -0.01766151189804077, 0.009182886220514774, 0.011037069372832775, -0.009892648085951805, 0.04947424307465553, 0.02031349018216133, 0.002242076676338911, 0.0008686328073963523, -0.01640705019235611, 0.02064361236989498, 0.004756503738462925, 0.013347921893000603, 0.017947617918252945, 0.0024841660633683205, -0.025793511420488358, -0.027158014476299286, -0.01594487950205803, -0.023394625633955002, 0.03131754696369171, 0.011499240063130856, -0.0031196502968668938, -0.021138794720172882, 0.042673733085393906, -0.009028829634189606, -0.02098473720252514, 0.008946298621594906, -0.031097466126084328, -0.00741673493757844, 0.013171857222914696, -0.007119625341147184, 0.0032599519472569227, 0.013281897641718388, -0.014778449200093746, 0.0017634001560509205, 0.03406856209039688, 0.022756390273571014, 0.04428032785654068, -0.007669827900826931, -0.021204818040132523, -0.033958520740270615, -0.014151218347251415, 0.030107101425528526, 0.037171706557273865, 0.035807203501462936, -0.015020538121461868, -0.002433272311463952, 0.027818256989121437, 0.023350609466433525, 0.00451716547831893, -0.006971070542931557, 0.024208925664424896, -0.012269523926079273, -0.016429057344794273, 0.03917444497346878, 0.0275101438164711, -0.013149849139153957, -0.0036175840068608522, 0.024913186207413673, 0.034420691430568695, 0.019939351826906204, 0.04265172779560089, -0.0023039744701236486, -0.011609280481934547, -0.06061035022139549, -0.009391963481903076, -0.021468916907906532, 0.011598276905715466, -0.026629818603396416, 0.005576306022703648, 0.022426269948482513, -0.013512982986867428, -0.0006530220271088183, 0.01032180618494749, -0.020907709375023842, 0.010057708248496056, 0.006618940737098455, 0.02830243669450283, -0.010866506956517696, 0.030965417623519897, 0.06052231788635254, 0.04425831884145737, 0.0030673809815198183, -0.022558318451046944, -0.01365603506565094, 0.0026451002340763807, 0.04753752797842026, -0.00987614132463932, 0.015031542629003525, 0.004178790841251612, -0.052423328161239624, -0.002138913609087467, -0.014107201248407364, -0.030811360105872154, -0.02548539638519287, -0.002546063857153058, 0.0029545894358307123, 0.007746856659650803, 0.026827892288565636, 0.004629957024008036, -0.011543256230652332, -0.0177935604006052, -0.032616026699543, 0.010949037037789822, -0.0021512932144105434, -0.035014912486076355, -0.0021911829244345427, -0.015163591131567955, -0.0018514327239245176, 0.02273438312113285, -0.020005377009510994, -0.013017799705266953, -0.021622972562909126, 0.03635740652680397, -0.000383078760933131, -0.02856653369963169, -0.03243996202945709, -0.0031389074865728617, -0.027224037796258926, -0.02625568024814129, -0.005287449806928635, 0.009468991309404373, -0.051851119846105576, -0.014294270426034927, -0.02724604681134224, 0.01895999163389206, 0.017507456243038177, 0.023592699319124222, -0.03576318547129631, -0.014261258766055107, -0.005298453848809004, 0.01955421082675457, -0.011598276905715466, -0.0006671209703199565, -0.011059077456593513, 0.0011533627985045314, -0.018508825451135635, 0.01818970777094364, -0.0037661385722458363, -0.013457962311804295, -0.03365040943026543, -0.011042571626603603, 0.010387830436229706, -0.01604391634464264, 0.0002879968087654561, 0.0020563832949846983, 0.01719934120774269, 0.015801826491951942, 0.007768864743411541, -0.019477181136608124, -0.007328702136874199, 0.010844498872756958, -0.004877548664808273, -0.02561744675040245, -0.0014222743920981884, -0.01496551837772131, -7.419141911668703e-05, 0.003526800312101841, -0.02396683767437935, 0.022085143253207207, 0.0031086462549865246, 0.005026103463023901, 0.006668458692729473, -0.031405579298734665, 0.00420079892501235, 0.01772753708064556, 0.0038541711401194334, -0.022558318451046944, 0.049254160374403, 0.009920157492160797, 0.02024746499955654, -0.017254361882805824, 0.012478601187467575, 0.009474493563175201, -0.0023810029961168766, -0.01710030622780323, -0.025441380217671394, -0.016891228035092354, 0.016252992674708366, -0.0319557823240757, -0.0003624461533036083, 0.017540467903017998, 0.012599646113812923, 0.006706973072141409, 0.009865137748420238, 0.0011004057014361024, -0.02357069030404091, -0.03391450643539429, 0.049870386719703674, -0.016924239695072174, -0.02423093467950821, -0.0007111371960490942, 0.02678387612104416, -0.021501928567886353, 0.02220618724822998, -0.0033094703685492277, -0.018541837111115456, 0.022778399288654327, -0.006233798339962959, -0.0018129184609279037, -0.025727486237883568, -0.008836258202791214, 0.01700126938521862, 0.027884282171726227, 0.006272312719374895, 0.030437223613262177, 0.003988971002399921, -0.016263997182250023, 0.0312955379486084, -7.281591388164088e-05, -0.00493807066231966, 0.005182911176234484, -0.008308063261210918, -0.04335598647594452, -0.013325913809239864, -0.03105344995856285, -0.018178703263401985, -0.0016299759736284614, -0.015603753738105297, 0.025661462917923927, 0.034684788435697556, -0.0543600432574749, 0.003015111666172743, 0.018552841618657112, 0.014470336027443409, 0.004052244126796722, 0.027532150968909264, 0.007383722346276045, -0.04351004213094711, 0.04014280065894127, -0.0018129184609279037, 0.025045234709978104, 0.01793661341071129, 0.01866288110613823, -0.026563795283436775, 0.00962855014950037, -0.024010853841900826, 0.010552891530096531, 0.024252941831946373, 0.0163080133497715, 0.011251648887991905, 0.002718002302572131, 0.028192395344376564, -0.007955933921039104, 0.0018775672651827335, -0.0177935604006052, -0.03565314784646034, 0.0026230921503156424, -0.04947424307465553, -0.006360345054417849, 6.529360689455643e-05, -0.000832181831356138, 0.005821146536618471, 0.0275101438164711, 0.0019738527480512857, -0.0004793642438016832, -0.004189794883131981, -0.0008376838522963226, 0.0010859628673642874, -0.013193865306675434, -0.00011751989222830161, 0.01499853003770113, -0.0006660893559455872, -0.04205750674009323, 0.0005993772647343576, 0.027202030643820763, -0.03301217406988144, 0.0107069481164217, 0.013843104243278503, 0.026233673095703125, 0.036709535866975784, 0.023724747821688652, 0.00535347405821085, -0.009078347124159336, -0.0010749588254839182, 0.027136005461215973, -0.023042496293783188, 0.020665619522333145, 0.0012523992918431759, -0.03532302379608154, -0.002943585393950343, -0.011268154717981815, 0.007620309945195913, -0.00017400165961589664, -0.013876116834580898, -0.01020626351237297, 0.002801908180117607, 0.014668408781290054, 0.0019339631544426084, -0.005645081400871277, -0.017738541588187218, 0.01617596484720707, -0.010508875362575054, -0.05409594625234604, -0.05290750786662102, -0.004596944898366928, -0.02711399830877781, 0.03274807333946228, 0.011554260738193989, -0.047053348273038864, 0.007114123087376356, -0.02678387612104416, -0.012577638030052185, 0.004591443110257387, 0.03571917116641998, 0.014690416865050793, -0.01929011195898056, 0.016682151705026627, 0.053743816912174225, -0.05770527571439743, 0.009485497139394283, -0.010613413527607918, 0.024539047852158546, 0.0038184078875929117, -0.015317647717893124, 0.026387730613350868, -0.011620284989476204, -0.03277008235454559, -0.006261308677494526, 0.01637403666973114, -0.02151293307542801, 0.009540517814457417, 0.01375507190823555, 0.037237729877233505, -0.02037951536476612, -0.010387830436229706, -0.004291582386940718, 0.0019834814593195915, 0.04982637241482735, 0.00583215057849884, -0.010519878938794136, 0.010916025377810001, -0.008566658943891525, 0.013601015321910381, -0.02181004174053669, 0.02555142156779766, 6.421899161068723e-05, 0.005991709418594837, -0.0061182561330497265, 0.01020626351237297, -0.049562275409698486, -0.02217317558825016, -0.0037606365513056517, -0.0207536518573761, 0.022426269948482513, -0.0019807303324341774, -0.009661562740802765, -0.018541837111115456, 0.014272262342274189, -0.005815644282847643, 0.016429057344794273, -0.025727486237883568, -0.019477181136608124, 0.005612069275230169, -0.023152537643909454, -0.03268205001950264, -0.0061182561330497265, -0.034288644790649414, 0.0089793112128973, -0.040252842009067535, -0.010850001126527786, 0.02960091456770897, -0.006949062459170818, -0.01922408863902092, -0.010558392852544785, 0.0056725917384028435, -0.0209187138825655, 0.015020538121461868, -0.0014717926969751716, 0.009986181743443012, -0.028984688222408295, -0.00841810368001461, -0.010965542867779732, -0.008946298621594906, -0.01743042655289173, 0.0428277924656868, -0.010844498872756958, -0.009210396558046341, -0.004704234655946493, -0.020709635689854622, -0.017353398725390434, -0.020456543192267418, -0.03472880646586418, 0.004861042369157076, -0.032616026699543, -0.018717901781201363, 0.013744067400693893, -0.00777986878529191, -0.021556949242949486, 0.03996673598885536, -0.022888438776135445, -0.037039656192064285, 0.018739910796284676, 0.011675304733216763, 0.03891034796833992, -0.025397364050149918, 0.008434610441327095, 0.0601261705160141, -0.001712506404146552, 0.031141482293605804, -0.03497089445590973, 0.009590036235749722, -0.02541937306523323, 0.006376851350069046, 0.027069982141256332, 0.03479482978582382, 0.005942190997302532, 0.028390469029545784, -0.04007677733898163, 0.05207119882106781, -0.01696825586259365, 0.005925685167312622, 0.006558418273925781, 0.005727611947804689, 0.018145691603422165, -0.01882794313132763, -0.003785395761951804, 0.008214528672397137, -0.02645375393331051, 0.010057708248496056, 0.012665670365095139, -0.015119574964046478, 0.008704209700226784, -0.01571379415690899, -0.022910447791218758, -0.013909128494560719, -0.002343864180147648, 0.026189656928181648, 0.01438230276107788, -4.926035035168752e-05, 0.024076877161860466, 0.017177334055304527], [0.032967936247587204, 0.0371561162173748, -0.024860331788659096, 0.03377421572804451, -0.033886197954416275, -0.024143636226654053, -0.011287934146821499, 0.0027421952690929174, 0.03287834674119949, 0.015285744331777096, -0.024793140590190887, -1.1799821550084744e-05, -0.005277221091091633, -0.008415558375418186, -0.03760404884815216, 0.011192748323082924, 0.022587066516280174, 0.0050420560874044895, -0.004165785387158394, 0.004070599097758532, -0.004770495928823948, 0.03614826500415802, -0.03545396775007248, 0.009143450297415257, -0.011058367788791656, 0.008426756598055363, 0.04580124095082283, -0.014949793927371502, -1.9717403120012023e-05, -0.011959834955632687, 0.04080677777528763, -0.016024835407733917, 0.016864711418747902, -0.01202702522277832, 0.03652900829911232, 0.008930682204663754, -0.025442644953727722, -0.03892545402050018, 0.020548967644572258, -0.01432268600910902, -0.04994462803006172, 0.03054909221827984, 0.03789520636200905, -0.04945190250873566, 0.016752727329730988, 0.09657454490661621, 0.011702273041009903, -0.014468264766037464, -0.0017721385229378939, 0.020716942846775055, -0.01933954656124115, 0.03283355385065079, 0.005543182138353586, 0.003891425672918558, 0.025621818378567696, -0.015588099136948586, -0.01826450414955616, -0.0080404132604599, 0.05267702788114548, 0.028533389791846275, 0.018253305926918983, -0.01367318257689476, 0.008549937978386879, 0.013841157779097557, -0.003855030983686447, 0.0016615547938272357, -0.005050454754382372, 0.03570033237338066, -0.028085455298423767, 0.03682016581296921, 0.007614876143634319, -0.014423471875488758, -0.040851570665836334, -0.027055207639932632, -0.045375704765319824, 0.03352785110473633, 0.030593885108828545, 0.013494008220732212, 0.010963181965053082, -0.005517985671758652, -0.05612611770629883, -0.004078998230397701, 0.02105289325118065, -0.0007299922872334719, -0.023561323061585426, -0.002831782214343548, -0.02564421482384205, -0.03522999957203865, -0.04739140719175339, 0.013225248083472252, -0.05316975340247154, -0.02304619923233986, 0.0004304364847484976, 0.03773843124508858, -0.028063058853149414, 0.0027127997018396854, 0.009126652963459492, 0.016416776925325394, -0.02263185940682888, 0.125600665807724, -0.009350620210170746, 0.007166942115873098, -0.01206061989068985, 0.02168000116944313, 0.026607273146510124, 0.003967014607042074, -0.023852480575442314, 0.03070586919784546, -0.005420000292360783, -0.009261033497750759, 0.04922793433070183, 0.010979979299008846, 0.0177941732108593, 0.06141173839569092, 0.018443677574396133, -0.005674762651324272, -0.001175126526504755, -0.009714566171169281, -0.053259339183568954, -0.008835496380925179, 0.017614999786019325, 0.008471549488604069, 0.021041695028543472, -0.07798529416322708, 0.01810772716999054, -0.028600579127669334, 0.012553347274661064, -0.009899338707327843, 0.01589045487344265, -0.030885042622685432, 0.03708892688155174, -0.02488272823393345, 0.02275504171848297, -0.04571165516972542, -0.014938595704734325, 0.011500703170895576, -0.004434545524418354, -0.016640745103359222, 9.448605851503089e-05, -0.015487314201891422, 0.02044818177819252, 0.06011272966861725, 0.019664298743009567, -0.0024762344546616077, -0.003650661325082183, 0.005817541386932135, 0.020616156980395317, 0.029451653361320496, 0.02060495875775814, 0.01972028985619545, -0.023538926616311073, 0.022363100200891495, -0.013281240127980709, -0.004949669353663921, -0.025823388248682022, -0.06916099041700363, -0.017592603340744972, 0.01546491775661707, 0.02748074382543564, 0.009781756438314915, -0.02434520795941353, 0.017413429915905, -0.020313803106546402, -0.01573367789387703, 0.01670793443918228, -0.008269979618489742, 0.0164615698158741, 0.005517985671758652, -0.051512397825717926, 0.0053052171133458614, -0.031825702637434006, 0.00010603434930089861, -0.018858017399907112, -0.038343142718076706, -0.02025781013071537, 0.020011447370052338, 0.013191653415560722, 0.03148975223302841, -0.00838756188750267, 0.005823140498250723, -0.003239121986553073, 0.03538677841424942, -0.05796264484524727, -0.04304644837975502, -0.002931167371571064, 0.02763752080500126, 0.019171571359038353, -0.02389727346599102, -0.03283355385065079, -0.027323966845870018, -0.014804215170443058, 0.0006001614383421838, -0.007609277032315731, 0.03484925627708435, -0.04506215080618858, -0.023942066356539726, -0.021791983395814896, 0.002256467007100582, 0.026786446571350098, -0.03260958939790726, 0.002154282061383128, -0.025017108768224716, 0.0016167614376172423, -0.010655227117240429, -0.04143388569355011, -0.04087396711111069, 0.04503975436091423, -0.01715586893260479, 0.07381950318813324, 0.018600454553961754, 0.0033007129095494747, -0.010722417384386063, -0.051960330456495285, 0.04801851511001587, -0.048287272453308105, -0.01394194271415472, 0.06598066538572311, 0.03471487760543823, 0.024524381384253502, 0.02358371950685978, -0.005201632156968117, -0.04333760589361191, 0.04846644774079323, -0.005918326787650585, -0.02671925723552704, -0.023471735417842865, 0.03937339037656784, -0.015386529266834259, -0.015218554064631462, -0.04526371881365776, -0.025554629042744637, 0.05343851447105408, -0.003653460880741477, -0.038410332053899765, 0.030213141813874245, 0.0216240081936121, -0.004596921615302563, -0.03849991783499718, 0.006579028908163309, -0.042912065982818604, 0.025935372337698936, 0.05738033354282379, -0.024098843336105347, -0.028779752552509308, 0.02101929858326912, -0.005473192315548658, -0.004616518504917622, -0.032743968069553375, 0.053124960511922836, -0.030123554170131683, -0.012878099456429482, -0.03238562121987343, 0.05160198360681534, -0.0712214931845665, 0.03892545402050018, -0.019854670390486717, 0.055499009788036346, 0.005996714811772108, -0.030235538259148598, -0.012676529586315155, 0.012676529586315155, -0.04342719167470932, 0.02956363745033741, 0.0016923502553254366, -0.018208513036370277, -0.024681158363819122, 0.01397553738206625, -0.04412148892879486, -0.025285867974162102, 0.027301570400595665, -0.060023143887519836, 0.008633925579488277, 0.015588099136948586, 0.0237404964864254, -0.029003718867897987, 0.04118752107024193, 0.05025818198919296, -0.04712264612317085, -0.022363100200891495, 0.03946297615766525, -0.03019074536859989, -0.050661325454711914, 0.01791735552251339, -0.05661884322762489, -0.006982169579714537, 0.017391033470630646, 0.019888265058398247, -0.05021338909864426, -0.01179185975342989, -0.008538739755749702, 0.07175900787115097, -0.04125471040606499, -0.04259851202368736, -0.024031654000282288, -0.051198843866586685, -0.006657417397946119, -0.0440542995929718, 0.022363100200891495, -0.043471984565258026, -0.04658512398600578, -0.013639586977660656, 0.03137777000665665, 0.01237417384982109, -0.005585175938904285, -0.031736116856336594, 0.035185206681489944, 0.006898181978613138, 0.0029927582945674658, -0.04105314239859581, 0.02095210738480091, -0.030750662088394165, 0.0054032024927437305, -0.01899239793419838, -0.04945190250873566, 0.012855703011155128, 0.008857892826199532, -0.051736366003751755, 0.02421082742512226, -0.023158183321356773, -0.016215207055211067, 0.030145950615406036, 0.0283318180590868, 0.02748074382543564, -0.0543791763484478, 0.023158183321356773, 0.037335291504859924, 0.01776057854294777, 0.029227687045931816, 0.027659917250275612, 0.007558884564787149, -0.031668927520513535, 0.020403388887643814, 0.013773967511951923, -0.016674339771270752, -0.033191900700330734, -0.0227886363863945, 0.018242107704281807, -0.010481652803719044, -0.024569174274802208, -0.030997024849057198, 0.014714628458023071, 0.031355373561382294, 0.0016251602210104465, 0.006366260349750519, 0.0031327377073466778, 0.049675870686769485, 0.07682066410779953, 0.04259851202368736, -0.009311425499618053, 0.0023796488530933857, 0.0018043337622657418, 0.01362838875502348, -0.048600826412439346, -0.029653223231434822, -0.07543206959962845, -0.020963305607438087, 0.00878510344773531, -0.04497256502509117, 0.020582562312483788, 0.0007397908484563231, 0.024009257555007935, 0.0006355062359943986, 0.013113264925777912, 0.03196008503437042, -0.01649516634643078, 0.04266570508480072, -0.04618198424577713, -0.025621818378567696, 0.040022894740104675, -0.02342694252729416, 0.05191553756594658, -0.015207355841994286, 0.024770744144916534, 0.0071109505370259285, -0.01693190075457096, -0.010011322796344757, -0.03231843188405037, 0.02893652953207493, -0.006231880281120539, -0.0066630165092647076, 0.016248801723122597, 0.002389447297900915, -0.01535293459892273, 0.00568036176264286, -0.0011849250877276063, 0.034356530755758286, -0.05375206843018532, 0.01930595003068447, -0.018432479351758957, 0.024300413206219673, -0.03991090878844261, 0.0020632955711334944, 0.04288966953754425, 0.014837810769677162, 0.02987719140946865, 0.03413256257772446, 0.01765979453921318, 0.016148017719388008, 0.012250992469489574, -0.05254264548420906, 0.0087067149579525, -0.04219537228345871, -0.00792843010276556, -0.020302603021264076, 0.027234381064772606, 0.041926611214876175, 0.030885042622685432, -0.03592429682612419, 0.04712264612317085, -0.04327041283249855, 0.004781694151461124, -0.03594669699668884, -0.0011373321758583188, 0.014445868320763111, 0.013426818884909153, 0.015061777085065842, 0.005030857399106026, 0.005862334743142128, 0.036036282777786255, -0.016539959236979485, 0.06347223371267319, -0.02218392677605152, -0.06306909024715424, -0.01833169534802437, -0.005974318366497755, 0.044300660490989685, -0.019137974828481674, -0.013661983422935009, -0.039776530116796494, -0.05137801915407181, -0.01343801710754633, -0.01921636424958706, 0.0628451257944107, -0.05231867730617523, -0.041478678584098816, -0.004731301683932543, -0.04506215080618858, -0.021444834768772125, -0.018018141388893127, -0.02060495875775814, -0.05482710897922516, -0.014277893118560314, -0.01550971157848835, 0.006343863904476166, -0.041769836097955704, -0.05124363675713539, -0.019709091633558273, -0.04241934046149254, -0.007362913340330124, -0.01826450414955616, -0.013079669326543808, 0.0024146437644958496, -0.03162413462996483, 0.010817603208124638, 0.005456394981592894, 0.036260247230529785, 0.011024773120880127, -0.0949619859457016, 0.03576752170920372, 0.023471735417842865, 0.05200512707233429, 0.009350620210170746, 0.07149025052785873, 0.030437108129262924, 0.006511839106678963, 0.017626198008656502, 0.016976695507764816, -0.012810909189283848, -0.019238760694861412, -0.0482424795627594, -0.017178265377879143, -0.027458347380161285, 0.04051562026143074, -0.007441301830112934, 0.017984546720981598, -0.008046012371778488, 0.02041458711028099, -0.019541116431355476, -0.03363983705639839, 0.02703281119465828, 0.01073361560702324, 0.04282248020172119, -0.052811406552791595, -0.008426756598055363, 0.05608132481575012, 0.031109008938074112, 0.0047620972618460655, 0.014188306406140327, -0.05213950574398041, -0.03997810184955597, -0.0026512087788432837, 0.002018502214923501, 0.030997024849057198, -0.008684318512678146, -0.022273512557148933, -0.024837935343384743, -0.024770744144916534, -0.005733553785830736, 0.024860331788659096, 0.0061310953460633755, 0.03269917517900467, -0.020582562312483788, 0.02079533040523529, 0.0005963119911029935, 0.054558347910642624, -0.00472290301695466, 0.00889708660542965, 0.04497256502509117, 0.04418867826461792, 0.02963082678616047, 0.0006883484311401844, 0.006752603687345982, 0.017682190984487534, -0.04065000265836716, -0.011455909349024296, -0.062083639204502106, -0.008449153043329716, 0.017402231693267822, -0.037245701998472214, -0.03395339101552963, 0.010789607651531696, 0.0011275336146354675, -0.012239793315529823, 0.007430103607475758, -0.04792892560362816, 0.016539959236979485, 0.003135537263005972, -0.09079620242118835, 0.0185780581086874, -0.0011744266375899315, -0.002228471217676997, -0.020336199551820755, -0.05827619880437851, 0.034871652722358704, 0.018320497125387192, -0.0031691323965787888, -0.03632744029164314, -0.0028891735710203648, 0.03776082769036293, -0.017099875956773758, 0.0007628874154761434, 0.004717303905636072, -0.011030372232198715, -0.019126776605844498, -0.004196580499410629, 0.007133347447961569, 0.026472892612218857, -0.040179669857025146, 0.023874877020716667, 0.0022704650182276964, 0.0033902996219694614, 0.0026792045682668686, 0.009518595412373543, -0.014188306406140327, 0.01750301755964756, -0.0003373502113390714, 0.007911632768809795, 0.014233099296689034, 0.021668802946805954, 0.017133470624685287, -0.018969999626278877, 0.010884793475270271, 0.007155743893235922, -0.013023678213357925, 0.00038949251757003367, 0.01706628128886223, -0.008633925579488277, -0.010593636892735958, 0.021478429436683655, -0.02857818268239498, -0.037245701998472214, -0.004465341102331877, 0.03682016581296921, -0.030123554170131683, 0.004854483529925346, 0.015162562020123005, 0.0160808265209198, -0.015285744331777096, -0.032743968069553375, 0.006315867882221937, 0.009037066251039505, 0.011646280996501446, -0.021859174594283104, -0.016607148572802544, -0.019664298743009567, -0.011702273041009903, -0.001843527890741825, -0.021254463121294975, 0.002493032021448016, 0.01965310052037239, 0.015039380639791489, -0.011052768677473068, -0.028690166771411896, -0.008074008859694004, -0.031579338014125824, 0.053124960511922836, -0.03231843188405037, 0.03666339069604874, -0.04038124158978462, 0.0024776344653218985, -0.031736116856336594, 0.011209545657038689, 0.0011317329481244087, -0.01883562095463276, -0.020492976531386375, -0.009692169725894928, 0.04076198488473892, -0.02481553703546524, -0.0062262811698019505, 0.02133285254240036, 0.015173761174082756, -0.012161404825747013, 0.005862334743142128, -0.045084547251462936, -0.01160148810595274, -0.000366395921446383, -0.044009506702423096, -0.007558884564787149, 0.01316925697028637, -0.026092149317264557, -0.02237429842352867, -0.021344050765037537, 0.012530950829386711, -0.013348430395126343, -0.01389714889228344, -0.017984546720981598, 0.0020311002153903246, -0.03092983551323414, -0.0036338637582957745, -0.01933954656124115, 0.011780661530792713, -0.012665331363677979, -0.008409959264099598, -0.016024835407733917, -0.007060558069497347, -0.02396446280181408, -0.004568925593048334, 0.023001406341791153, -0.008012417703866959, -0.0181973148137331, 0.03276636451482773, -0.04374074563384056, 0.08080727607011795, -0.060471076518297195, 0.04143388569355011, 0.03146735578775406, -0.002593817189335823, -0.0022326705511659384, 0.005397603381425142, 0.013650785200297832, 0.012015827000141144, 0.0021080889273434877, -0.005106446333229542, -0.01617041416466236, 0.005022458732128143, -0.010151301510632038, 0.01175826508551836, 0.038343142718076706, 0.009031467139720917, -7.02083925716579e-05, 0.0035190805792808533, 0.008051611483097076, 0.016797520220279694, -0.01870124042034149, -0.017178265377879143, -0.014233099296689034, 0.0371561162173748, -0.05348330736160278, -0.0007012964924797416, -0.0014431870076805353, -0.0037010537926107645, -0.03865669667720795, 0.03720090910792351, -0.0024048450868576765, 0.005806343164294958, 0.008992273360490799, -0.03789520636200905, 0.026786446571350098, -0.01867884397506714, 0.009361818432807922, 0.01944033056497574, -0.017749380320310593, -0.01011210773140192, 0.027010414749383926, -0.021926363930106163, -0.02269905060529709, 0.009462603367865086, -0.04618198424577713, -0.027704712003469467, 0.022732645273208618, 0.007805248256772757, 0.002285862574353814, -0.01823090948164463, 0.0040845973417162895, 0.02748074382543564, 0.017749380320310593, 0.03576752170920372, 0.0069989669136703014, -0.0012780113611370325, 0.011114359833300114, -0.009244236163794994, -0.0077660540118813515, 0.00702696293592453, -0.07453619688749313, -0.02183677814900875, 0.0106216324493289, -0.018757231533527374, 0.025599421933293343, 0.009832149371504784, -0.01611442118883133, -0.0237404964864254, 0.001250715460628271, -0.04237454757094383, -0.0015089772641658783, -0.01731264591217041, -0.02819743938744068, 0.0017609401838853955, -0.0012955088168382645, 0.009221838787198067, 0.012441364116966724, -0.03180330619215965, -0.000991053762845695, -0.02772710844874382, -0.0002740095660556108, 0.03263198584318161, 0.000868571805767715, 0.01842128112912178, -0.052945785224437714, -0.026024959981441498, 0.017368637025356293, 0.026450496166944504, -0.022195124998688698, 0.006108698435127735, 0.024770744144916534, -0.006075103301554918, -0.0035330785904079676, -0.03621545433998108, 0.006847789511084557, 4.02003170165699e-05, -0.010179297998547554, -0.013158057816326618, -0.04394231364130974, -0.012978884391486645, -0.011780661530792713, -0.009059462696313858, 0.006886983755975962, 0.009160248562693596, 0.03890305757522583, -0.0310194231569767, 0.00687018595635891, -0.026136942207813263, 0.006159090902656317, -0.039642151445150375, 0.002074493793770671, -0.0022956612519919872, 0.01845487579703331, -0.024546777829527855, -0.0013913946459069848, -0.019899463281035423, -0.004473739769309759, 0.028287025168538094, 0.0310194231569767, -0.009535392746329308, 0.03800719231367111, 0.03133297711610794, -0.018118925392627716, -0.021131280809640884, 0.002998357405886054, -0.028510993346571922, -0.04203859716653824, 0.0031971281860023737, -0.010028120130300522, -0.009501798078417778, -0.007967623881995678, -0.011226342990994453, 0.021702397614717484, -0.03975413367152214, 0.03836553916335106, -0.01731264591217041, -0.004017407074570656, 0.01763739623129368, -0.0021444836165755987, 0.024793140590190887, 0.019070785492658615, -0.028443802148103714, -0.020089834928512573, 0.0059463223442435265, 0.013852356001734734, 0.02022421546280384, 0.015677686780691147, -0.0015579700702801347, -0.031220993027091026, 0.02566661313176155, -0.027547935023903847, -0.007934029214084148, 0.04129950702190399, 0.0007712861988693476, -0.03057148866355419, 0.010862397029995918, -0.012631735764443874, -0.03516281023621559, 0.006187086924910545, -0.003482686122879386, -0.018309298902750015, 0.03070586919784546, 0.014378678053617477, -0.01823090948164463, -0.005884731654077768, -0.0029479649383574724, 0.0005651665851473808, -0.0049692667089402676, 0.020403388887643814, 0.014378678053617477, 0.033281490206718445, -0.01804053783416748, 0.010375268757343292, -0.020963305607438087, -0.007749256212264299, -0.016371984034776688, -0.00702696293592453, 0.039642151445150375, 0.0021612809505313635, 0.0520947128534317, 0.01043126080185175, 0.04340479522943497, 0.0005770648131147027, -0.006170289590954781, 0.020929710939526558, 0.035341985523700714, -0.034737274050712585, 0.015756074339151382, -0.02190396748483181, -0.055633388459682465, -0.009624979458749294, 0.010565640404820442, 0.009311425499618053, -0.0044961366802453995, 0.02566661313176155, 0.0034546901006251574, 0.025017108768224716, 0.015386529266834259, -0.014501859433948994, -0.040470827370882034, 0.0181973148137331, -0.03131058067083359, 0.0031243390403687954, 0.005884731654077768, 0.013382025063037872, -0.01428909134119749, 0.06965371966362, -0.02297900803387165, -0.010179297998547554, -0.0291157029569149, -0.008527541533112526, 0.0059631201438605785, -0.0505269430577755, -0.0009672572487033904, -0.027861488983035088, -0.04459181800484657, 0.010644028894603252, 0.025173885747790337, -0.014770620502531528, 0.005050454754382372, -0.011892644688487053, 0.013303636573255062, -0.02342694252729416, -0.008521942421793938, -0.017939751967787743, -0.019160373136401176, -0.01937314122915268, 0.046450745314359665, -0.007099752314388752, 0.024143636226654053, -0.03032512404024601, -0.015599298290908337, -0.004748099483549595, 0.03164653107523918, 0.05393123999238014, 0.020280206575989723, 0.013997933827340603, -0.0023726499639451504, -0.0006134594441391528, 0.01613681949675083, -0.00023044098634272814, 0.00262741232290864, -0.0181973148137331, 0.01370677724480629, 0.023247769102454185, 0.01447946298867464, 0.04141148924827576, 0.008695516735315323, 0.02512909099459648, 0.007480496075004339, 0.01045925635844469, 0.02434520795941353, -0.01889161206781864, -0.005503987893462181, 0.01432268600910902, 0.006052706856280565, 0.0037738431710749865, 0.0006050607189536095, 0.022519877180457115, -0.02627132274210453, 0.021926363930106163, 0.0054759918712079525, 0.025756198912858963, 0.01876842975616455, 0.0018981199245899916, -0.06136694550514221, 0.01112555805593729, 0.021500827744603157, 0.013102066703140736, -0.02620413340628147, 0.021008100360631943, 0.02032500132918358, 0.0220271497964859, -0.03133297711610794, 0.008768306113779545, -0.005375206936150789, 0.03393099084496498, 0.012530950829386711, 0.010218491777777672, 0.00992173608392477, 0.0019387139473110437, 0.00015441470895893872, 0.011881446465849876, -0.01546491775661707, 0.00221587298437953, -0.012575743719935417, -0.02902611717581749, 0.019955454394221306, 0.0007572882459498942, -0.035969093441963196, 0.005319214891642332, 0.04029165580868721, 0.008102004416286945, -0.017458222806453705, 0.0010351472301408648, 0.0030123554170131683, -0.019888265058398247, 0.03352785110473633, 0.031198596581816673, -0.021075289696455002, -0.020683348178863525, 0.00262741232290864, -0.023695703595876694, 0.006259876303374767, -0.0360138863325119, 0.005873533431440592, -0.0013934943126514554, -0.000375144649296999, 0.006730206776410341, 0.02627132274210453, 0.0015789669705554843, -0.01760380156338215, 0.03070586919784546, 0.010039318352937698, 0.0444350428879261, 0.026383306831121445, -0.02291181869804859, -0.002280263463035226, 0.007273326627910137, 0.00470050610601902, -0.024927521124482155, 0.02627132274210453, -0.003989411052316427, 0.002659607445821166, -0.006343863904476166, 0.0006012112717144191, -0.024322809651494026, 0.0004808290395885706, -0.041702646762132645, 0.030123554170131683, -0.0006719008670188487, -0.024860331788659096, 0.03605867922306061, -0.018622850999236107, -0.014412272721529007, 0.028376612812280655, 0.013953140936791897, 0.04349438101053238, 0.039776530116796494, 0.022273512557148933, 0.032116860151290894, -0.005187634378671646, 0.02181437984108925, 0.019854670390486717, -0.014826611615717411, -0.011310330592095852, -0.020504174754023552, -0.03849991783499718, 0.03762644901871681, 0.014893801882863045, -0.008577934466302395, 0.002448238665238023, 0.017200661823153496, 0.01601363718509674, 0.07852280884981155, 0.020089834928512573, 0.020560165867209435, 0.013393223285675049, 0.021422438323497772, -0.006875785533338785, 0.06656298041343689, 0.041635457426309586, -0.014445868320763111, -0.00843795482069254, -0.004417748190462589, -0.04662991687655449, 0.024770744144916534, 0.019317150115966797, 0.0017329442780464888, 0.008689917623996735, -0.021534422412514687, -0.009613781236112118, -0.04815289378166199, 0.014076322317123413, -0.0015145764918997884, -0.02649528905749321, -0.02159041352570057, 0.030885042622685432, 0.024233223870396614, 0.011383119970560074, 0.033057522028684616, 0.014490661211311817, 0.015420123934745789, 0.01335962861776352, -0.008152397349476814, 0.030078761279582977, 0.01248615700751543, 0.002050697337836027, -0.022038348019123077, -0.029675621539354324, 0.014860207214951515, 0.006159090902656317, 0.023606115952134132, 0.0019373140530660748, -0.011388719081878662, 0.0070381611585617065, 0.019641900435090065, -0.01582326553761959, -0.006802996154874563, -0.011556694284081459, 0.02383008413016796, -0.04150107502937317, -0.035118017345666885, -0.000985454535111785, -0.002589617855846882, -0.008645123802125454, -0.0063382647931575775, 0.012418967671692371, 0.05061652883887291, -0.04770496115088463, 0.015991240739822388, -0.006579028908163309, -0.017290247604250908, -0.007844442501664162, -0.023090992122888565, -0.031153801828622818, -0.0006519538001157343, 0.004549328703433275, -0.00436735525727272, 0.019765082746744156, 0.03899264708161354, 0.020123429596424103, -0.02082892693579197, 0.005285619758069515, 0.013561198487877846, 0.0021038895938545465, 0.008499545976519585, -0.008740310557186604, 0.01765979453921318, 0.028914133086800575, 0.005713956896215677, 0.0017161467112600803, -0.015498512424528599, -0.03946297615766525, -0.0016433574492111802, -0.02817504294216633, -0.017323844134807587, -0.02076173573732376, 0.03585710749030113, 0.03222884237766266, -0.01804053783416748, -0.006019111722707748, 0.02864537201821804, -0.0018603254575282335, -0.009014669805765152, 0.02665206603705883, 0.0053640082478523254, 0.01997785083949566, -0.0019317149417474866, -0.00840436015278101, 0.07005686312913895, 0.019989050924777985, -0.009675372391939163, 0.002463636454194784, 0.040336448699235916, 0.012777314521372318, -0.005375206936150789, 0.014737024903297424, 0.021288057789206505, -0.011803057976067066, -0.04235215112566948, 0.02019062079489231, -0.01163508277386427, -0.013214049860835075, -0.030504297465085983, -0.0016545557882636786, 0.03946297615766525, 0.01240776851773262, 0.034670084714889526, -0.008381962776184082, -0.04842165485024452, 0.04082917422056198, 0.013225248083472252, -0.011534297838807106, -0.002789788180962205, 0.030235538259148598, 0.004655712749809027, -0.029451653361320496, -0.00808520708233118, 0.006349463015794754, 0.049272727221250534, 0.01595764420926571, -0.013930744491517544, -0.0050644525326788425, 0.021075289696455002, 0.0034238947555422783, -0.04488297551870346, 0.010672025382518768, 0.0001708622876321897, 0.012228595092892647, 0.01405392587184906, 0.007474896963685751, 0.0013640987453982234, 0.013695579022169113, -0.0189588014036417, -0.04864561930298805, 0.03740248084068298, 0.030526695773005486, -0.02671925723552704, -0.0006837990949861705, 0.01712227240204811, -0.07104231417179108, -0.010330475866794586, -0.019261157140135765, 0.04022446274757385, 0.050571735948324203, -0.022676654160022736, 0.003748646704480052, -0.01562169473618269, -0.03225123882293701, 0.009613781236112118, 0.012519752606749535, 0.01375157106667757, 0.01918276958167553, -0.002117887372151017, 0.050437357276678085, 0.02750314213335514, 0.009429008699953556, 0.019541116431355476, -0.0076204752549529076, -0.0006012112717144191, 0.0018757232464849949, 0.039239007979631424, -0.003104741917923093, -0.015800869092345238, -0.03670818358659744, 0.03594669699668884, -0.03502843156456947, -0.0006236079498194158, -0.019451528787612915, 0.010918389074504375, -0.006959773134440184, 0.0005686660879291594, -0.001128233503550291, 0.009322624653577805, 0.006450247950851917, -0.02857818268239498, -0.009462603367865086, 0.03278876096010208, -0.025375455617904663, -0.005979917477816343, 0.01797334849834442, 0.030773058533668518, 0.0021318853832781315, -0.0024314410984516144, -0.03928380087018013, 0.008460351265966892, 0.05621570348739624, 0.06750363856554031, 0.004420547746121883, 0.012822107411921024, 0.007547686342149973, 0.015408925712108612, -0.01814132370054722, -0.007855640724301338, 0.0015187758253887296, -0.01014570239931345, -0.008925083093345165, 0.014770620502531528, -0.006847789511084557, 0.006052706856280565, -0.062083639204502106, 0.00252802693285048, -0.020649753510951996, -0.0294964462518692, 0.025599421933293343, -0.044838182628154755, 0.019798677414655685, -0.01833169534802437, 0.0017497417284175754, 0.022351901978254318, -0.026293719187378883, -0.00503365695476532, 0.0024440393317490816, 0.014434670098125935, -0.030974628403782845, 0.0039026241283863783, -0.007256529293954372, 0.010979979299008846, 0.037716034799814224, -0.01128233503550291, 0.023762892931699753, 0.0031271385960280895, -0.010946384631097317, 0.008577934466302395, -0.01093518640846014, -0.0009539592429064214, -0.004199380055069923, -0.027659917250275612, -0.005940723232924938, 0.010957582853734493, 0.005492789205163717, 0.002019901992753148, -0.027749504894018173, -0.020996902137994766, -0.032296035438776016, 0.019137974828481674, -0.023606115952134132, 0.014938595704734325, 0.02291181869804859, -0.026092149317264557, -0.012441364116966724, -0.019619503989815712, -0.014960992150008678, -0.009121053852140903, -0.010873595252633095, -0.01206061989068985, -0.00020506973669398576, -0.02696561999619007, 0.006556632462888956, -0.033505454659461975, 0.007950826548039913, 0.01639438048005104, -0.00894188042730093, -0.04136669635772705, -0.020235413685441017, 0.007866838946938515, 0.0009917536517605186, 0.007491694297641516, -0.014535455033183098, 0.02665206603705883, -0.005361208692193031, 0.014613843522965908, -0.0071837399154901505, 0.0015929648652672768, -0.013729173690080643, 0.005285619758069515, 0.005674762651324272, -0.021265661343932152, 0.007010165601968765, -0.011702273041009903, -0.010834401473402977, 0.003199927741661668, -0.033124711364507675, 0.002115087816491723, -0.012150206603109837, 0.012172603979706764, 0.015498512424528599, 0.004112592898309231, 0.001211521215736866, -0.014009132981300354, 0.0013445016229525208, -0.015420123934745789, 0.0059463223442435265, 0.030302727594971657, -4.168759915046394e-05, -0.008370764553546906, -0.018152521923184395, -0.013617190532386303, 0.03740248084068298, -0.029048513621091843, 0.015688885003328323, -0.010375268757343292, 0.00823078490793705, -0.028219835832715034, 0.005347210913896561, -0.004123791586607695, 0.02091851271688938, 0.015005785971879959, 0.01218380220234394, -0.00819719024002552, 0.015610496513545513, 0.049272727221250534, -0.017894959077239037, -0.04087396711111069, -0.00307394634000957, -0.012474958784878254, 0.0003586970560718328, 0.020649753510951996, 0.002900372026488185, -0.0048936777748167515, -0.01737983524799347, -0.016383182257413864, 0.007077355403453112, -0.036103472113609314, -0.011075165122747421, -0.0049300724640488625, -0.005372407380491495, -0.004622118081897497, 0.02187037281692028, 0.03108661249279976, 0.003421095199882984, -0.042844876646995544, 0.008079607971012592, 0.016248801723122597, 0.023494133725762367, -0.019160373136401176, 0.03213925659656525, -0.02465876005589962, -0.014009132981300354, 0.004224576521664858, -0.03245281055569649, 0.005296818446367979, 0.0018897211411967874, 0.0581866130232811, -0.03155694156885147, -0.020716942846775055, -0.010218491777777672, -0.01370677724480629, 0.002659607445821166, -0.0053276135586202145, 0.04586843028664589, 0.025912975892424583, -0.0002204674674430862, 0.0033902996219694614, 0.017738182097673416, -0.012698926031589508, -0.037872809916734695, -0.027592727914452553, -0.046764299273490906, 0.005691559985280037, -0.00683659128844738, 0.030817851424217224, -0.020873719826340675, 0.009305826388299465, -0.0013780966401100159, -0.035565949976444244, 0.02178078517317772, 0.0016503564547747374, -0.02741355448961258, 0.01424429751932621, 0.0012752118054777384, 0.020089834928512573, -0.009910537861287594, -0.014300289563834667, -0.00947940070182085, 0.024837935343384743, 0.02933966927230358, -0.00415458669885993, 0.012172603979706764, 0.004193780943751335, 0.03919421508908272, -0.013370826840400696, 0.027301570400595665, -0.00687018595635891, -0.015207355841994286, 0.031825702637434006, -0.013829958625137806, 0.008208388462662697, 0.003149535274133086, -0.013650785200297832, -0.004918874241411686, -0.04459181800484657, -0.0033567047212272882, 0.01182545442134142, -0.0275703314691782, -0.016450371593236923, -0.041165124624967575, 0.00683659128844738, 0.005179235711693764, -0.031444959342479706, -0.03561074659228325, 0.011769463308155537, -0.02573380246758461, -0.04159066081047058, 0.01535293459892273, 0.008611529134213924, -0.023337356746196747, 0.029854794964194298, -0.025689009577035904, 0.0059631201438605785, -0.000855273799970746, -0.006595826707780361, -0.0016853512497618794, -0.034670084714889526, -0.008135599084198475, 0.04237454757094383, 0.021444834768772125, 0.010565640404820442, 0.027077604085206985, -0.0424865297973156, 0.005450795404613018, -0.02327016554772854, -0.005711157340556383, 0.013370826840400696, 0.024681158363819122, -0.00683659128844738, -0.04029165580868721, -0.04091876000165939, 0.009753760881721973, -0.002905971137806773, -0.017245454713702202, 0.02857818268239498, -0.007458099164068699, 0.017962148413062096, 0.0005508186877705157, -0.010985578410327435, -0.03892545402050018, -0.0018953202525153756, -0.004944070242345333, 0.035252396017313004, 0.0044457437470555305, 0.051422812044620514, 0.006181487813591957, -0.0026008160784840584, -0.010593636892735958, 0.007833244279026985, -0.0075028929859399796, 0.009501798078417778, 0.009680971503257751, 0.017670992761850357, -0.033729422837495804, -0.01595764420926571, -0.007004566490650177, -0.021601611748337746, 0.02893652953207493, -0.0008251782273873687, 0.0007376911235041916, -0.001282910699956119, 0.007004566490650177, -0.008740310557186604, -0.007726859766989946, -0.005839938297867775, 0.0021598811727017164, 0.0027561932802200317, 0.0033371075987815857, -0.012598141096532345, -0.045577272772789, -0.018174918368458748, -0.005979917477816343, -0.010436859913170338, -0.028018265962600708, -0.0011842251988127828, -0.0009791555348783731, -0.01375157106667757, 0.013057272881269455, 0.014770620502531528, -0.03666339069604874, 0.048600826412439346, -0.006047107744961977, -0.01112555805593729, -0.022083140909671783, 0.019160373136401176, 0.0063606612384319305, 0.009473801590502262, -0.005408801604062319, 0.024569174274802208, -0.041389092803001404, -0.016450371593236923, 0.008342768996953964, 0.023942066356539726, -0.020336199551820755, -0.0177941732108593, -0.021545620635151863, -0.02627132274210453, 0.004874080885201693, 0.01765979453921318, -0.0038102376274764538, 0.023986859247088432, 0.029362067580223083, 0.03417735546827316, 0.004745299927890301, -0.022452685981988907, 0.0028415806591510773, 0.009596983902156353, 0.0181973148137331, -0.007418905384838581, 0.010263285599648952, 0.02880214899778366, 0.02003384381532669, 0.029518844559788704, -0.009815351106226444, 0.0017217459389939904, -0.021657604724168777, 0.0027100001461803913, 0.03482685983181, 0.01190384291112423, 0.0028835744597017765, 0.01022409088909626, -0.05115405097603798, 0.006825392600148916, -0.00614789268001914, -0.006511839106678963, 0.05738033354282379, -0.015218554064631462, -0.01905958727002144, 0.01655115745961666, -0.03193768858909607, 0.022419091314077377, -0.02564421482384205, -0.045846033841371536, 0.01085679791867733, -0.008824298158288002, 0.027771901339292526, 0.01006731390953064, -0.03670818358659744, 0.009787355549633503, -0.005557179916650057, 0.05352810025215149, 0.002448238665238023, -0.011590289883315563, -0.00402020663022995, 8.540927410649601e-06], [0.0434037484228611, 0.011489227414131165, -0.019275106489658356, 0.038246866315603256, -0.01205168105661869, -0.00021546251082327217, -0.01973012462258339, 0.01777101494371891, -0.0219420213252306, 0.01162194088101387, -0.027907826006412506, 0.008019708096981049, 0.008910786360502243, 0.019376222044229507, -0.0023335516452789307, 0.013726403005421162, 0.028084777295589447, 0.03109295852482319, -0.03177548572421074, 0.01741711236536503, 0.010534951463341713, 0.033115264028310776, -0.019439417868852615, -0.006939038168638945, -0.03230634331703186, -0.035592589527368546, -0.004894612822681665, -0.03561786934733391, 0.055411189794540405, -0.019805962219834328, 0.04044612497091293, -0.03885355591773987, 0.025746485218405724, 0.0005324353114701807, -0.048838693648576736, 0.03281191736459732, -0.022776223719120026, -0.017973246052861214, 0.023951688781380653, -0.033191099762916565, -0.03101712092757225, 0.022068416699767113, -0.0016715624369680882, -0.00591524550691247, 3.742451372090727e-05, 0.01708848774433136, -0.002749072387814522, -0.03624983876943588, -0.022750943899154663, -0.011969524435698986, 0.011805212125182152, 0.02110782079398632, -0.0027301134541630745, 0.023547228425741196, 0.005517104174941778, -0.021979941055178642, -0.027200018987059593, 0.028565075248479843, 0.0345308780670166, 0.004809296689927578, 0.04016805812716484, -0.01217807549983263, 0.00597844272851944, -0.008247217163443565, 0.02990485355257988, -0.047119732946157455, 0.014889229089021683, 0.018415626138448715, -0.004951490554958582, 0.021082542836666107, 0.033266935497522354, 0.03382307291030884, 0.048560626804828644, -0.001065660617314279, -0.0032388498075306416, -0.003801303682848811, -0.03460671380162239, -0.0017726777587085962, -0.0034821585286408663, -0.02955094911158085, -0.062489259988069534, -0.004948330577462912, 0.014320455491542816, -0.006566175259649754, -0.014042388647794724, -0.019970273599028587, -0.10687888413667679, -0.022675108164548874, -0.01983124017715454, -0.037994079291820526, -0.012955399230122566, -0.009441642090678215, -0.020121946930885315, 0.056877363473176956, -0.017328636720776558, 0.055916767567396164, -0.016608189791440964, -0.01042751595377922, -0.016077334061264992, 0.045223820954561234, -0.02058960497379303, -0.029854295775294304, -0.034556157886981964, -0.036350954324007034, 0.0524788461625576, 0.018516741693019867, -0.0061775133945047855, 0.025569533929228783, 0.0016320643480867147, -0.048838693648576736, 0.012765808030962944, -0.024204477667808533, 0.019009677693247795, 0.0672922357916832, -0.004932531155645847, -0.000424210331402719, -0.009549076668918133, -0.06946621835231781, -0.015824545174837112, -0.0245331022888422, 0.005662457551807165, 0.005760412663221359, -0.006509297993034124, -0.08331901580095291, 0.006111156661063433, 0.029424555599689484, -0.04171006381511688, 0.01045911479741335, -0.03769073262810707, -0.034808944910764694, 0.014813392423093319, -0.03877772018313408, 0.08276288211345673, -0.04128032550215721, -0.006642011925578117, 0.0633992999792099, 0.02793310396373272, -0.049774009734392166, -0.0047460999339818954, 0.03731155022978783, -0.0029323440976440907, -0.003384202951565385, 0.060618627816438675, 0.007463573943823576, -0.010964691638946533, -0.03195243701338768, -0.01324610598385334, 0.05884911119937897, 0.04219036176800728, 0.02024834044277668, 0.00789963360875845, -0.0004992568283341825, 0.03420225530862808, -0.015179935842752457, 0.022346483543515205, -0.02957622893154621, 0.06238814443349838, 0.03579482063651085, 0.03640151023864746, 0.06390487402677536, -0.05101267248392105, -0.026871394366025925, -0.020197782665491104, -0.02914648875594139, 0.0172654390335083, -0.0050020478665828705, 0.0338483490049839, -0.01665874756872654, -0.05859632045030594, 0.003937177360057831, -0.06041639670729637, -0.03420225530862808, -0.026618605479598045, -0.026517489925026894, -0.0255568940192461, 0.00820297934114933, 0.057635728269815445, -0.006297587882727385, -0.015432723797857761, -0.014510046690702438, 0.007267662789672613, 0.02922232449054718, -0.031219352036714554, 0.03442976251244545, 0.007937551476061344, 0.001171515672467649, -0.038221586495637894, -0.01418142206966877, -0.04504686966538429, 0.019199268892407417, 0.059253569692373276, -0.00948587991297245, -0.019275106489658356, -0.01525577250868082, -0.008392570540308952, -0.030132362619042397, -0.026542767882347107, -0.07234800606966019, 0.09049820154905319, -0.0060574389062821865, -0.040951699018478394, -0.02486172690987587, -0.031244629994034767, -0.018567299470305443, -0.06324762850999832, -0.024280313402414322, 0.0206780806183815, 0.023711539804935455, 0.07255023717880249, -0.03283719718456268, 0.05672568827867508, 0.009169894270598888, -0.03281191736459732, 0.0010261624120175838, -0.004076210781931877, 0.03981415182352066, 0.026264701038599014, 0.004006694070994854, 0.04444018006324768, -0.015142017975449562, -0.036603741347789764, 0.015748709440231323, 0.05798963084816933, 0.010136810131371021, 0.00676840590313077, -0.0004352698160801083, -0.013132350519299507, -0.01183049101382494, -0.039763595908880234, -0.07260078936815262, -0.037716008722782135, 0.029373997822403908, -0.02288997732102871, -0.033115264028310776, 0.011874728836119175, 0.0275033637881279, -0.03402530029416084, -0.05672568827867508, -0.006247030105441809, -0.01769517920911312, 0.05576509237289429, 0.03915690258145332, -0.019502615556120872, 0.0019180310191586614, 0.016279565170407295, -0.024912284687161446, -0.024330871179699898, -0.028817864134907722, 0.022498156875371933, -0.016886256635189056, 0.000635525502730161, -0.006547216325998306, 0.06784836947917938, -0.03915690258145332, -0.003497957717627287, 0.007665804587304592, 0.008354652673006058, -0.022662468254566193, 0.012942759320139885, 0.04279705509543419, -0.01683569885790348, -0.0025784403551369905, -0.022536074742674828, -0.05313609540462494, -0.04843423515558243, 0.0356937050819397, 0.026289980858564377, -0.01067398488521576, -0.034657273441553116, 0.062236472964286804, -0.0037697050720453262, 0.016962092369794846, 0.013814879581332207, -0.018478821963071823, -0.056877363473176956, -0.00427212193608284, -0.027023065835237503, -0.010193686932325363, -0.007444614544510841, 0.06274204701185226, -0.019869158044457436, -0.0027158940210938454, 0.009492199867963791, -0.08180228620767593, 0.012032722122967243, 0.02459629997611046, 0.04555244743824005, -0.01085725612938404, -0.010433835908770561, -0.0033399651292711496, 0.05144241452217102, 0.014080306515097618, 0.00024646855308674276, -0.035769540816545486, -0.06901119649410248, -0.02391377091407776, -0.062337588518857956, 0.021133100613951683, 0.015963580459356308, -0.010079932399094105, -0.023863213136792183, 0.07750488817691803, 0.027275854721665382, 0.03235689923167229, 0.0027048345655202866, 0.043100401759147644, 0.013347220607101917, -0.05996137857437134, -0.04133088141679764, -0.029601506888866425, -0.021891465410590172, -0.03988999128341675, -0.028438681736588478, 0.030056525021791458, -0.005649818107485771, -0.029095930978655815, -0.004474352579563856, -0.00019561467343010008, 0.03258441016077995, -0.01836506836116314, 0.06289372593164444, 0.007697402965277433, 0.029677342623472214, -0.043277353048324585, 0.013713764026761055, 0.00960595440119505, 0.025910798460245132, 0.0651688203215599, -0.020791836082935333, -0.0502290315926075, -0.04229147732257843, -0.03688180819153786, 0.02034945599734783, -9.272195165976882e-05, -0.023370275273919106, -0.012854283675551414, 0.0024947042111307383, 0.03607288748025894, 0.03766545280814171, 0.0031314147636294365, 0.016987372189760208, -0.037892963737249374, -0.04426322504878044, -0.0468163900077343, 0.006000561639666557, -0.0552089586853981, -0.013713764026761055, 0.030005967244505882, 0.0031566936522722244, 0.029424555599689484, 0.010079932399094105, 0.05093683674931526, -0.025645369663834572, 0.02929816022515297, -0.04861118644475937, -0.04752419516444206, 0.007684763520956039, -0.013132350519299507, 0.013802239671349525, 0.0165829099714756, -0.015938300639390945, -0.004407995380461216, 0.028843142092227936, 0.04893980920314789, 0.02725057676434517, 0.01387807633727789, -0.021802987903356552, -0.039864711463451385, 0.008714876137673855, 0.0026953548658639193, 0.009131976403295994, -0.021992579102516174, 0.02118365652859211, -0.016191089525818825, -0.03733682632446289, 0.013132350519299507, -0.0228267814964056, 0.024988120421767235, 0.029778458178043365, -0.005889966618269682, -0.005024166777729988, -0.012070639990270138, 0.033014148473739624, 0.0228267814964056, 0.028918977826833725, 0.04876285791397095, 0.013840158469974995, 0.006259669549763203, 0.03359556198120117, -0.04120448976755142, -0.021082542836666107, 0.006667290814220905, 0.024381428956985474, 0.04901564493775368, -0.019022317603230476, 0.04739779978990555, 0.002719053765758872, 0.024368789047002792, -0.0007465153466910124, -0.04757475480437279, 0.006863201502710581, -0.015533839352428913, -0.005694055929780006, 0.04595690965652466, 0.008158741518855095, -0.005476025864481926, 0.03956136479973793, -0.016860978677868843, 0.02511451579630375, 0.013802239671349525, 0.007653165142983198, 0.01710112765431404, 0.009744987823069096, -0.015091460198163986, 0.03766545280814171, 0.03094128519296646, 0.01870633289217949, 0.07078071683645248, 0.016608189791440964, -0.05723126605153084, 0.028337566182017326, 0.024040164425969124, -0.02084239386022091, 0.054046131670475006, -0.0172654390335083, 0.01504090242087841, 0.0069769565016031265, -0.04542605206370354, -0.0008792292210273445, -0.013410418294370174, 0.0014811812434345484, 0.0034221212845295668, 0.015559118241071701, 0.008929746225476265, -0.028261728584766388, -0.028337566182017326, -0.036098167300224304, -0.0013863856438547373, -0.0052801151759922504, -0.004660783801227808, -0.03331749513745308, -0.02452046237885952, 0.014775474555790424, 0.004673423245549202, -0.039081066846847534, -0.007823796942830086, 0.011811532080173492, 0.01845354400575161, 0.05116434767842293, 0.01947733573615551, 0.00027727714041247964, 0.00939740426838398, -0.026618605479598045, -0.013448336161673069, -0.03963720053434372, -0.030107082799077034, 0.009075098671019077, -0.06071974337100983, -0.019439417868852615, 0.024141279980540276, 0.06178145483136177, 0.061730895191431046, 0.008500006049871445, 0.0269219521433115, -0.0386260487139225, 0.014889229089021683, -0.04684166610240936, -0.006123796105384827, -0.0022450757678598166, -0.007823796942830086, 0.005690895952284336, -0.009454281069338322, -0.02290261723101139, 0.005690895952284336, 0.017227521166205406, -0.017126405611634254, 0.014434210024774075, -0.01098365057259798, 0.009549076668918133, 0.02904537320137024, -0.003393682651221752, 0.005902606062591076, -0.039434969425201416, -0.010111531242728233, 0.07255023717880249, 0.016987372189760208, 0.044035717844963074, 0.04186173900961876, -0.020362095907330513, -0.000901348190382123, -0.02168923430144787, 0.003975095693022013, -0.0030492586083710194, -0.013372499495744705, -0.0275033637881279, 0.023281799629330635, 0.021828267723321915, -0.0018058562418445945, -0.01310707163065672, 0.007267662789672613, 0.04835839569568634, 0.01217175554484129, -0.023635704070329666, 0.05323721095919609, 0.00969443004578352, 0.003561154706403613, -0.03903051093220711, 0.04363125562667847, 0.05581565201282501, -0.0008539503905922174, -0.0035485154949128628, -0.01152714528143406, 0.013220827095210552, -0.017745736986398697, -0.006161713972687721, -0.005621379241347313, 0.04206397011876106, -0.015104099176824093, -0.028008941560983658, 0.04219036176800728, -0.0004546239215414971, 0.03463199362158775, 0.008405210450291634, -0.01152714528143406, -0.012001123279333115, -0.004537549335509539, 0.007021194323897362, -0.0638037621974945, 0.0006991175469011068, -0.0009321567486040294, -0.020210422575473785, -0.045855794101953506, -0.041229765862226486, -0.001120958011597395, 0.04229147732257843, -0.01615317165851593, -0.014775474555790424, 0.0025768603663891554, 0.02760447934269905, -0.007166547700762749, 0.008828630670905113, -0.006875840947031975, 0.020046109333634377, -0.04221564158797264, 0.01812491938471794, -0.009226772002875805, 0.03334277495741844, -0.014674359001219273, -0.015369527041912079, -0.007754280231893063, -0.025101875886321068, -0.009378445334732533, 0.009947218932211399, -0.006120636127889156, -0.016987372189760208, 0.060618627816438675, -0.010737181641161442, -0.013157629407942295, 0.007577328477054834, -0.005378070753067732, 0.02058960497379303, -0.005141081754118204, -0.007880674675107002, -0.03812047094106674, -0.033974744379520416, 0.03513757139444351, 0.02469741366803646, -0.033721957355737686, -0.020020831376314163, -0.014459488913416862, -0.01675986312329769, 0.018049083650112152, 0.0029181246645748615, 0.007703722454607487, 0.025784403085708618, -0.020804474130272865, 0.05050709843635559, -0.009163575246930122, -0.0037570656277239323, 0.04628553241491318, 0.018997039645910263, 0.059607475996017456, -0.0044427537359297276, -0.015331609174609184, 0.0009226772235706449, 0.03154797479510307, 0.0406736321747303, -0.026871394366025925, -0.004714501090347767, -0.01845354400575161, -0.00960595440119505, 0.0018121759640052915, -0.018516741693019867, 0.0013113392051309347, 0.03855021297931671, 0.020387373864650726, -0.04322679340839386, 0.02134796977043152, -0.02324388176202774, 0.004171006381511688, 0.0255568940192461, -0.012329747900366783, -0.00534015242010355, 0.013789600692689419, -0.032154668122529984, 0.007229744456708431, 0.026466932147741318, 0.011723056435585022, -0.002091822912916541, 0.02419183775782585, -0.014156143181025982, 0.0029497232753783464, -0.029272882267832756, -0.009530117735266685, -0.048585906624794006, -0.001690521603450179, -0.0420386902987957, 0.0035706344060599804, -0.016014136373996735, 0.025518976151943207, -0.012803725898265839, 0.016380680724978447, 0.005251676309853792, -0.0018943321192637086, -0.03303942829370499, 0.03897995129227638, 0.018997039645910263, -0.016178449615836143, -0.039687760174274445, -0.00019186234567314386, 0.00542862806469202, -0.02699778787791729, -0.0003489663067739457, 0.009593315422534943, -0.008784392848610878, 0.04820672422647476, 0.0012592015555128455, 0.01639331877231598, -0.04208924621343613, -0.006319706793874502, 0.027225296944379807, -0.019768042489886284, 0.027200018987059593, -0.04560300335288048, 0.04186173900961876, 0.03223050385713577, -0.0057888515293598175, 0.010579189285635948, 0.028084777295589447, -0.005580300930887461, 0.007267662789672613, -0.006894800346344709, -0.002004927024245262, 0.03445504233241081, -0.01260149572044611, -0.007330860011279583, 0.015521200373768806, -0.00442063482478261, 0.025139793753623962, 0.010876215063035488, 0.003776024794206023, 0.008790711872279644, 0.024469904601573944, 0.02315540611743927, 0.02947511337697506, 0.01426989771425724, 0.013208187185227871, -0.02066544070839882, 0.012399264611303806, -0.01734127476811409, -0.006209111772477627, -0.0281858928501606, 0.01974276453256607, -0.02879258431494236, -0.01174833532422781, -0.007400376722216606, -0.0175055880099535, 0.05060821399092674, -0.026113029569387436, -0.006114316172897816, 0.031320467591285706, -0.02060224488377571, 0.030460987240076065, 0.028590353205800056, -0.016469156369566917, -0.032154668122529984, 0.03410113975405693, 0.009985136799514294, 0.011223799549043179, 0.04077474772930145, 0.0019243507413193583, 0.01932566426694393, 0.007330860011279583, 0.016772501170635223, -0.027730872854590416, 0.010023054666817188, 0.02305429056286812, -0.015394805930554867, 0.006882160902023315, -0.05187215283513069, -0.012721570208668709, -0.011514506302773952, 0.01259517576545477, -0.01930038444697857, -0.04494575411081314, -0.013005957007408142, -0.026517489925026894, 0.01913607306778431, 0.03928329795598984, -0.01217175554484129, 0.017025290057063103, 0.012355026789009571, -0.040724191814661026, -0.005469706375151873, 0.010743501596152782, -0.05536063387989998, -0.023509308695793152, 0.05197326838970184, 0.005299074109643698, 0.027553921565413475, 0.0019654289353638887, -0.002665336476638913, -0.011476587504148483, -0.019186630845069885, -0.0042057647369802, -0.014965065754950047, 0.0039213779382407665, -0.023395555093884468, 0.009719708934426308, -0.024153919890522957, 0.006262829527258873, -0.015154656954109669, -0.022232728078961372, -0.019894437864422798, -0.00884126964956522, 0.02459629997611046, -0.03539035841822624, 0.007166547700762749, -0.015546479262411594, -0.006825283635407686, 0.018946481868624687, -0.025481058284640312, -0.04229147732257843, -0.013182908296585083, -0.03255913034081459, 0.009959857910871506, -0.036350954324007034, -0.012538298033177853, -0.049167320132255554, 0.0043353186920285225, -0.03935913369059563, 0.009744987823069096, -0.039258018136024475, -0.009884021244943142, 0.03518812730908394, -0.0071096704341471195, 0.029348718002438545, 0.02273830585181713, 0.0012678911443799734, 0.007172867190092802, 0.018668413162231445, 0.03210411220788956, 0.007817476987838745, 0.012140156701207161, -0.012272871099412441, 0.012070639990270138, -0.05586620792746544, 0.001124907867051661, -0.02146172523498535, 0.05187215283513069, -0.0007907533436082304, -0.027553921565413475, -0.002410968067124486, 0.009726028889417648, 0.01734127476811409, -0.02631525881588459, -0.03688180819153786, -0.0082408981397748, -0.01990707591176033, -0.004591267090290785, 0.035516753792762756, -0.01183681096881628, -0.017922688275575638, 0.023648343980312347, 0.00990930013358593, -0.005795171018689871, -0.017391832545399666, 0.03407585993409157, -0.006073238328099251, 0.000510711339302361, -0.05662457272410393, -0.0056687770411372185, -0.021651316434144974, -0.02342083305120468, 0.02879258431494236, -0.010503352619707584, 0.011046847328543663, -0.055916767567396164, 0.013233466073870659, 0.01991971582174301, -0.005457066930830479, -0.04193757474422455, 0.009441642090678215, 0.011811532080173492, 0.04229147732257843, 0.04312567785382271, -0.03324165940284729, -0.001338197966106236, 0.0022134773898869753, -0.0026669162325561047, -0.003472678828984499, 0.02417919784784317, 0.03685653209686279, 0.017379194498062134, 0.008468407206237316, -0.0196542888879776, -0.021853545680642128, -0.0003981415356975049, -0.06077030301094055, -0.023281799629330635, 0.03331749513745308, -0.011514506302773952, 0.0064461007714271545, 0.01213383674621582, 0.018693692982196808, 0.011444988660514355, -0.006515617948025465, 0.014459488913416862, 0.0044427537359297276, -0.026188865303993225, 0.026517489925026894, 0.015281051397323608, -0.0447688028216362, -0.023117488250136375, 0.0140929464250803, -0.016443876549601555, -0.010237924754619598, 0.05485505610704422, -0.018744250759482384, 0.0082914549857378, -0.0019606889691203833, -0.00940372422337532, -0.025392582640051842, -0.035668425261974335, -0.013739042915403843, -0.0019591092132031918, -0.0028343885205686092, -0.0036211919505149126, -0.025670649483799934, 0.02537994273006916, -0.018845366314053535, -0.029424555599689484, -0.01998291350901127, -0.010446475818753242, 0.02452046237885952, -0.013347220607101917, 0.01538216695189476, -0.013271383941173553, -0.04150783643126488, -0.002455206122249365, -0.0024093883112072945, 0.029272882267832756, -0.019894437864422798, -0.02742752805352211, -0.015837185084819794, -0.03963720053434372, 0.056169554591178894, 0.011817852035164833, -0.025759125128388405, -0.015672873705625534, 0.02699778787791729, -0.037210434675216675, -0.010414876975119114, 0.0042120846919715405, -0.02947511337697506, 0.010566550306975842, 0.007729001343250275, 0.046260252594947815, 0.01956581324338913, 0.008190340362489223, 0.013637927360832691, 0.018175477162003517, 0.02358514629304409, 0.031219352036714554, 0.02358514629304409, -0.000686083163600415, -0.04674055054783821, 0.03230634331703186, 0.018579937517642975, 0.019540533423423767, 0.008575841784477234, 0.005207438487559557, 0.008714876137673855, 0.00040525119402445853, -0.0068568820133805275, -0.002110782079398632, -0.004316359758377075, 0.003270448185503483, -0.008354652673006058, 0.009902981109917164, -0.039864711463451385, 0.007747960742563009, 0.00734981894493103, -0.0010079932399094105, -0.010509672574698925, 0.004395355936139822, 0.009024541825056076, 0.01229814998805523, 0.016001498326659203, 0.0676966980099678, 0.018933841958642006, -0.015217853710055351, -0.02085503190755844, -0.028388123959302902, 0.051745761185884476, 0.047043897211551666, 0.004758739378303289, -0.006382904015481472, 0.008765432983636856, 0.0035011176951229572, 0.02450782246887684, -0.0289695356041193, -0.005611899774521589, 0.003158273408189416, -0.0005095263477414846, -0.01812491938471794, -0.025936076417565346, -0.011122683994472027, 0.03058738075196743, -0.01268365141004324, 0.014927147887647152, 0.04792865738272667, 0.011135323904454708, 0.03837326169013977, 0.016191089525818825, -0.010806698352098465, -0.0033652440179139376, -0.009833463467657566, -0.006035319995135069, -0.02391377091407776, 0.0009242571541108191, -0.011179561726748943, 0.012677332386374474, -0.014649080112576485, 0.03624983876943588, 0.00769108347594738, -0.015862464904785156, 0.018087001517415047, 0.019098153337836266, -0.004603906534612179, -0.028160613030195236, 0.0031993514858186245, 0.04416211321949959, -0.01196320541203022, -0.03837326169013977, 0.011438669636845589, 0.034126415848731995, 0.009669151157140732, -0.008790711872279644, -0.01525577250868082, 0.016165809705853462, -0.0036717497278004885, 0.011950565502047539, -0.007375097833573818, -0.023610424250364304, 0.043959882110357285, 0.009195173159241676, -0.01512937806546688, 0.023281799629330635, 0.02033681608736515, -0.004584947135299444, -0.003390522673726082, 0.04304984211921692, 0.01760670356452465, -0.02058960497379303, 0.0015467482153326273, 0.032432734966278076, -0.015179935842752457, 0.021550200879573822, -0.026719721034169197, -0.005719334818422794, 0.05758516862988472, 0.0318007655441761, 0.017139045521616936, -0.012911161407828331, 0.0007062272634357214, 0.022359123453497887, 0.01405502762645483, -0.010054653510451317, -0.008449448272585869, 0.02041265368461609, 0.03253385052084923, 0.009637553244829178, 0.03255913034081459, -0.02811005525290966, -0.006142755039036274, 0.039687760174274445, 0.036704856902360916, 0.04145727679133415, 0.01332194171845913, -0.005987922195345163, 0.03877772018313408, 0.02760447934269905, 0.02785726822912693, -0.03129518777132034, -0.030208198353648186, -0.011792573146522045, 0.0007394056883640587, -0.007337179500609636, 0.048838693648576736, 0.010945732705295086, -0.009125656448304653, 0.008171381428837776, 0.008379931561648846, -0.008177700452506542, -0.03683125227689743, 0.016709305346012115, 0.019426777958869934, -0.01778365485370159, -0.005532903131097555, 0.01152714528143406, -0.014472128823399544, 0.016026776283979416, 0.006502978503704071, 0.002630577888339758, 0.017151683568954468, 0.006490339059382677, 0.019717484712600708, 0.034910060465335846, 0.031042400747537613, 0.01751822791993618, 0.008588481694459915, -0.02017250470817089, 0.019704846665263176, 0.00649665854871273, 0.020829753950238228, 0.01581190712749958, -0.023534588515758514, 0.029323440045118332, 0.0356937050819397, -0.007868034765124321, -0.01820075511932373, -0.036426790058612823, 0.025759125128388405, -0.004095170181244612, -0.010452794842422009, 0.001162826083600521, 0.032078832387924194, -0.023939048871397972, 0.01710112765431404, -0.000742960546631366, 0.011084766127169132, -0.01674722321331501, 0.009726028889417648, -0.0031740728300064802, -0.03991526737809181, 0.03445504233241081, -0.03496062010526657, -0.012399264611303806, 0.006502978503704071, 0.015306330285966396, 0.010648705996572971, -0.01046543475240469, -0.0029481432866305113, 0.042771775275468826, 0.00012017317931167781, 0.0070970309898257256, 0.020981427282094955, 0.01525577250868082, 0.02563273161649704, -9.030268847709522e-05, 0.02674499899148941, 0.02846395969390869, 0.02109518088400364, 0.009656512178480625, -0.0005549492780119181, -0.03331749513745308, -0.0329635925590992, -0.004221564158797264, 0.01990707591176033, 0.015938300639390945, 0.03844909742474556, -0.001695261336863041, -0.005112642887979746, -0.036603741347789764, -0.01448476780205965, 0.004088850226253271, 0.009289968758821487, -0.015344248153269291, 0.021474363282322884, 0.0010782999452203512, 0.0016447036759927869, -0.009416363202035427, 0.014408932067453861, 0.002455206122249365, 0.018845366314053535, -0.002036525635048747, 0.016089973971247673, 0.01246878132224083, 0.013069153763353825, 0.0411539301276207, 0.016380680724978447, -0.01217175554484129, -0.021916743367910385, 0.014345734380185604, 0.019110793247818947, 0.02972790040075779, 0.0038297423161566257, -0.0370587594807148, 0.049672894179821014, -0.002636897610500455, 0.014674359001219273, -0.002788570709526539, -0.009763946756720543, 0.06400599330663681, -0.012569896876811981, -0.03715987503528595, -0.0007149168523028493, 0.025329384952783585, 0.031118236482143402, -0.02709890343248844, 0.006686249747872353, 0.02546841837465763, 0.02570856735110283, -0.014800753444433212, -0.006648331414908171, -0.02444462664425373, 0.013410418294370174, -0.002003347035497427, -0.011426029726862907, -0.03357028216123581, -0.019666926935315132, -0.0012378726387396455, 0.0012339227832853794, 0.02050112932920456, 0.01633012294769287, 0.00734981894493103, -0.07330860197544098, -0.04666471481323242, -0.00855056382715702, 0.028084777295589447, -0.011116364039480686, -0.008310414850711823, 0.01512937806546688, -0.012702610343694687, 0.0013287183828651905, -0.023092208430171013, 0.07983053475618362, -0.0027079943101853132, -0.004578627645969391, -0.0033368051517754793, 0.03743794187903404, 0.01545800268650055, 0.0021329009905457497, 0.024975482374429703, 0.011678818613290787, 0.015356888063251972, 0.010939412750303745, 0.02348403073847294, 0.01581190712749958, 0.022687748074531555, -0.008272496052086353, -0.035415638238191605, -0.019780682399868965, -0.012519339099526405, 0.0027617118321359158, 0.03339333087205887, 0.024280313402414322, -0.017884770408272743, -0.0010696103563532233, -0.02034945599734783, 0.03245801478624344, -0.03946024924516678, -0.033443890511989594, 0.0038645006716251373, -0.029930131509900093, 0.01524313259869814, 0.011906327679753304, -0.006439781282097101, -0.0006718638469465077, -0.022877339273691177, 0.010629747062921524, -0.009561716578900814, -0.01973012462258339, -0.009744987823069096, -0.03475838899612427, -0.010914133861660957, -0.011881048791110516, -0.023724179714918137, -0.004648144356906414, -0.0030350391753017902, 0.005760412663221359, 0.03288775309920311, -0.003807623405009508, -0.0004289500939194113, -0.008424169383943081, -0.0017568784533068538, 0.010749821551144123, 0.021158378571271896, 0.004158366937190294, 0.007128629367798567, 0.00819665938615799, -0.014750195667147636, 0.013271383941173553, -0.02273830585181713, -0.0002257320302305743, 0.019376222044229507, -0.010143129155039787, -0.008152421563863754, 0.007084391545504332, 0.01013049017637968, 0.012506700120866299, -0.009542757645249367, -0.01820075511932373, 0.0005885227001272142, -0.034808944910764694, 0.006025840528309345, 0.006013201083987951, -0.008999262936413288, -0.009100377559661865, 0.010010415688157082, 0.0041204490698874, 0.013094432651996613, 0.0012844804441556334, 0.02101934514939785, 0.00930892862379551, 0.05303497985005379, -0.005662457551807165, 0.008373611606657505, 0.03700820356607437, 2.242755363113247e-05, -0.011659858748316765, -0.018921202048659325, -0.028817864134907722, 0.005713014863431454, 0.028843142092227936, -0.013182908296585083, 0.019363582134246826, 0.008904467336833477, -0.00872119516134262, -0.007141268812119961, 0.008955024182796478, -0.009555396623909473, -0.01259517576545477, -0.03928329795598984, 0.0017616183031350374, -0.008392570540308952, 0.02042529173195362, -0.00470186211168766, -0.024558380246162415, 0.021145738661289215, -0.038145750761032104, -0.0033368051517754793, -0.009296288713812828, 0.004193125292658806, 0.016873616725206375, 0.014320455491542816, -0.013258744962513447, -0.0019354101968929172, -0.012525659054517746, 4.421326229930855e-05, -0.012108558788895607, -0.035061731934547424, 0.022409681230783463, 0.01973012462258339, 0.028413401916623116, 0.029500391334295273, -0.03779184818267822, 0.004834575578570366, 0.019072875380516052, 0.02128477208316326, -0.02742752805352211, 0.014889229089021683, 0.01622900739312172, 0.04160894826054573, 0.004749259911477566, -0.009024541825056076, 0.013637927360832691, 0.002556321443989873, 0.0023335516452789307, -0.003159853396937251, 0.02674499899148941, 0.021310051903128624, -0.018504101783037186, -0.00442063482478261, -0.0002375814801780507, -0.0481814444065094, -0.010901493951678276, 0.027402248233556747, -0.026542767882347107, -0.029930131509900093, 0.012102238833904266, 0.015344248153269291, -0.058646880090236664, -0.014042388647794724, -0.0037791847717016935, -0.0004593636840581894, 0.037463221698999405, 0.02519035153090954, -0.03137102350592613, 0.002066544257104397, -0.004063571337610483, -0.011887368746101856, 0.022194810211658478, -0.013043874874711037, 0.015432723797857761, -0.008695916272699833, -0.054298922419548035, -0.004114129114896059, -0.02066544070839882, 0.01846618391573429, -0.020867671817541122, -0.004780858289450407, -0.012424543499946594, -0.002870726864784956, 0.012955399230122566, -0.019591091200709343, 0.015597036108374596, 0.003046098630875349, 0.018327150493860245, 0.02305429056286812, -0.02468477562069893, 0.013827518559992313, 0.002469425555318594, -0.004834575578570366, -0.058141302317380905, 0.007255023345351219, 0.00802602805197239, 0.024141279980540276, -0.002858087420463562, 0.016633467748761177, 0.017998525872826576, -0.017492948099970818, 0.026113029569387436, -0.0047081816010177135, 0.010534951463341713, -0.010541271418333054, 0.0077669196762144566, 0.015761349350214005, 0.021120460703969002, 0.010882535018026829, 0.015508560463786125, 0.020400013774633408, -0.00399721460416913, 0.047043897211551666, 0.007204466033726931, -0.004256322514265776, -0.017492948099970818, -0.00970075000077486, -0.013157629407942295, 0.026947230100631714, 0.027023065835237503, -0.019009677693247795, 0.017315996810793877, -0.021891465410590172, -0.021651316434144974, -0.0044648731127381325, 0.03094128519296646, 0.001557807787321508, 0.01734127476811409, 0.00013557745842263103, -0.0035390357952564955, 0.0223844014108181, 0.014990344643592834, 0.02007138915359974, -0.021499643102288246, -0.0051094829104840755, -0.005750933196395636, -0.012494060210883617, 0.01964164897799492, -0.01597621850669384, -0.001701581059023738, -0.01025688461959362, -0.005795171018689871, 0.010187367908656597, -0.007387737277895212, -0.01827659271657467, 0.01803644374012947, 0.00077455909922719, 0.010730862617492676, -0.013562090694904327, 0.010901493951678276, -0.008007068186998367, 0.004351118113845587, -0.0038803000934422016, 0.007457253988832235, -0.05718070641160011, -0.02998068928718567, -0.0046007465571165085, -0.027149461209774017, 0.012500380165874958, -0.02128477208316326, 0.017543505877256393, -0.02015986479818821, 0.002749072387814522, -0.0043321591801941395, -0.02649221196770668, -0.03220522776246071, -0.00591840548440814, 0.008594801649451256, -0.023711539804935455, 0.03137102350592613, -0.017733097076416016, 0.014547965489327908, -0.025000760331749916, 0.024571020156145096, -0.003580113872885704, -0.016620829701423645, -0.051391854882240295, 0.02879258431494236, 0.025430500507354736, -0.0001750756346154958, -0.02118365652859211, -0.004923051688820124, 0.004597586579620838, 0.009416363202035427, -0.008872868493199348, 0.01439629215747118, 0.01055391039699316, 0.018579937517642975, -0.0015988858649507165, -0.004629185423254967, -0.00025891049881465733, -0.026694441214203835, -0.002222956856712699, 0.01538216695189476, 0.0033273256849497557, -0.018428266048431396, -0.008177700452506542, 0.046765830367803574, -0.0008579001878388226, 0.001534898765385151, 0.017050569877028465, -0.02305429056286812, 0.01785949245095253, -0.007071752101182938, -0.026871394366025925, -0.0074193356558680534, 0.030814889818429947, -0.004742939956486225, -0.022093694657087326, 0.0031614333856850863, 0.025139793753623962, 0.029652064666152, -0.03341861069202423, -0.019970273599028587, 0.014838671311736107, -0.02426767349243164, 0.029247602447867393, 0.0037570656277239323, -0.013385139405727386, -0.007255023345351219, 0.043605975806713104, 0.021853545680642128, -0.014333095401525497, 0.02359778620302677, -0.027023065835237503, 0.015950940549373627, 0.014724916778504848, 0.015849824994802475, -0.018352428451180458, -0.031042400747537613, 0.020185144618153572, -0.015824545174837112, 0.003915058448910713, 0.032179947942495346, 0.05063349008560181, 0.027629759162664413, -0.025582173839211464, -0.025910798460245132, -0.023736819624900818, 0.08129671216011047, -0.007033833768218756, -0.0042057647369802, -0.004505950957536697, 0.005384390242397785, -0.002782250987365842, 0.003975095693022013, -0.02153756096959114, -0.011078446172177792, -0.012007443234324455, 0.021676594391465187, 0.029803737998008728, -0.005457066930830479, 0.018921202048659325, -0.0228267814964056, -0.009106697514653206, -0.027882546186447144, 0.03496062010526657, 0.019414139911532402, 0.002933923853561282, -0.0008523704600520432, 0.015028262510895729, 0.0026289981324225664, -0.00832305382937193, -0.015521200373768806, 0.010623427107930183, 0.008879188448190689, -0.016102613881230354, -0.004739779978990555, -0.001551488065160811, 0.015230493620038033, 0.015369527041912079, 0.035668425261974335, -0.002325652167201042, 0.053793344646692276, -0.020956147462129593, -0.0010672404896467924, 0.0011991644278168678, 0.00606691837310791, 0.01111004501581192, -0.009966177865862846, -0.012494060210883617, 0.005049445666372776, -0.022915257140994072, 0.013056514784693718, 0.024924924597144127, -0.040724191814661026, -0.022687748074531555, -0.040117498487234116, -0.009131976403295994, 0.048737578094005585, 0.011305955238640308, 0.016191089525818825, -0.00906245969235897, -0.01448476780205965, 0.019350942224264145, 0.014168783091008663, -0.00469870213419199, -0.003962456248700619, -0.006060598883777857, 0.024634217843413353, -0.027983661741018295, -0.007147588301450014, -0.0269219521433115, -0.004926211666315794], [0.032489240169525146, 0.010120897553861141, 0.03158743679523468, 0.03614519163966179, -0.00937142688781023, 0.022947201505303383, -0.0285651832818985, 0.05093961954116821, 0.04828295856714249, 0.026127880439162254, 0.0005910458276048303, -0.0007106259581632912, 0.03200177848339081, 0.03604770079255104, -0.019498419016599655, -0.017962917685508728, -0.017889799550175667, 0.009103324264287949, -0.00897536613047123, 0.087742879986763, 0.042555298656225204, 0.05093961954116821, -0.024043986573815346, 0.02624974586069584, 0.003981942776590586, 0.032757341861724854, 0.007232694420963526, -0.01295426208525896, 0.06839070469141006, -0.019084077328443527, 0.06039635092020035, -0.03197740763425827, 0.0280046034604311, 0.010638824664056301, 0.0014600964495912194, -0.0019376553827896714, -0.02360527217388153, 0.038021914660930634, 0.011625931598246098, -0.02776087261736393, -0.01994931884109974, -0.027541516348719597, 0.00901801884174347, -0.07073051482439041, -0.018803786486387253, 0.0924225002527237, -0.028248334303498268, -0.019729962572455406, -0.008213709108531475, 0.001061749760992825, 0.011272523552179337, 0.004703993443399668, -0.0004946961998939514, -0.030441906303167343, -0.031538691371679306, 0.004697900265455246, -0.03899683803319931, -0.0006793980137445033, -0.02154575288295746, -0.02663971483707428, -0.001614712760783732, -0.0017320079496130347, -0.011467507109045982, 0.03921619430184364, -0.03312293812632561, 0.0008949469192884862, 0.02192353457212448, -0.012649598531425, -0.05410810932517052, 0.008853500708937645, 0.024043986573815346, 0.0197908952832222, 0.051085855811834335, -0.039776772260665894, -0.04392018914222717, 0.011040979065001011, 0.05054964870214462, 0.019181570038199425, 0.004329258110374212, -0.025786658748984337, -0.04691806808114052, 0.02066832408308983, -0.01914501003921032, 0.04903852194547653, -0.0025911570992320776, 0.011114098131656647, -0.06970684230327606, 0.024860482662916183, -0.007208321709185839, -0.03663265332579613, -0.039776772260665894, -0.019023144617676735, -0.04243343323469162, -0.010705850087106228, -0.040702950209379196, 0.03682763874530792, 0.021082665771245956, 0.01747545786201954, -0.04309150576591492, 0.022289128974080086, 0.009121604263782501, -0.005736800376325846, -0.0021295929327607155, 0.03400036692619324, 0.03682763874530792, -0.06863443553447723, -0.04577253758907318, 0.025177333503961563, 0.013137059286236763, 0.01891346648335457, 0.06902439892292023, -0.017085488885641098, -0.013697639107704163, 0.09524977207183838, -0.021192343905568123, -0.02822396159172058, 0.011997620575129986, 0.022618165239691734, -0.009883261285722256, -0.02144826017320156, -0.027614634484052658, -0.0017609508940950036, 0.006391825154423714, -0.05542425438761711, 0.008603677153587341, 0.040483590215444565, -0.04920913279056549, 0.014562881551682949, -0.0012811070773750544, -0.034658439457416534, 0.046381860971450806, -0.030368786305189133, 0.027395278215408325, -0.03811940923333168, -0.007519077509641647, 0.029783833771944046, -0.013478281907737255, -0.01993713341653347, 0.007519077509641647, 0.0156352948397398, 0.03148994594812393, -0.012515547685325146, 0.06463725864887238, 0.01089474093168974, -0.0005285899387672544, 0.03032004088163376, -0.007324093487113714, 0.028906404972076416, -0.0028303172439336777, 0.019352180883288383, -0.012832396663725376, -0.043822694569826126, 0.020436780527234077, -0.034975286573171616, 0.029150135815143585, 0.0012948168441653252, 0.017207354307174683, 0.007586103398352861, 0.0033695704769343138, 0.03414660692214966, -0.03702262043952942, -0.0033451972994953394, -0.010748502798378468, -0.036657027900218964, -0.0026901725213974714, -0.028808914124965668, -0.0020214375108480453, -0.011912315152585506, -0.044212665408849716, -0.026590967550873756, -0.020132116973400116, 0.007171762175858021, -0.019486231729388237, -0.008402599953114986, -0.005313319154083729, -0.04270153492689133, 0.035389628261327744, 0.01841381937265396, 0.0060018571093678474, -0.00729972030967474, 0.01635429821908474, 0.016390858218073845, -0.009602971374988556, -0.04450514167547226, -0.0026048668660223484, 0.013709825463593006, -0.034487828612327576, -0.008823034353554249, -0.01763388141989708, 0.011619838885962963, 0.031246215105056763, -0.011333455331623554, 0.0069767776876688, 0.023069066926836967, -0.0027267320547252893, 0.018962211906909943, -0.015915583819150925, 0.016415230929851532, 0.015501243062317371, -0.013502654619514942, 0.0019970645662397146, -0.05591171607375145, 0.00019069986592512578, 0.00554486270993948, -0.029393866658210754, 0.031709302216768265, 0.02169199101626873, 0.015513429418206215, 0.030344413593411446, 0.013600146397948265, 0.02600601501762867, -0.018072595819830894, -0.07404524087905884, -0.00860977079719305, 0.008067470975220203, -0.04440764710307121, 0.0832582488656044, -0.0504034124314785, 0.024458328261971474, 0.033147312700748444, -0.04155600443482399, -0.040727321058511734, 0.009858887642621994, 0.011388295330107212, -0.016573656350374222, -0.01762169599533081, -0.023495594039559364, -0.004783205687999725, -0.0036041608545929193, -0.0024144526105374098, -0.06015262007713318, 0.01730484701693058, 0.0009261748637072742, -0.019425299018621445, -0.011504067108035088, 0.026030387729406357, 0.01470911968499422, -0.06180998682975769, -0.018243208527565002, 0.015062528662383556, 0.0013793607940897346, -0.029223253950476646, 0.0039057768881320953, 0.010583985596895218, 0.007129109464585781, -0.03436596319079399, 0.003820471465587616, 0.01650053635239601, 0.025542927905917168, 0.012052459642291069, 0.02544543519616127, 0.0526457279920578, 0.03821690008044243, -0.044943854212760925, -0.007714061997830868, -0.01786542497575283, 0.007714061997830868, -0.010638824664056301, 0.05781280994415283, 0.009066764265298843, -0.014550695195794106, 0.04538257047533989, -0.005191453732550144, -0.008621957153081894, -0.0418241061270237, -0.012491174042224884, 0.04340835288167, -0.008798661641776562, 0.0019224222050979733, 0.03507278114557266, -0.015757160261273384, 0.030051937326788902, 0.0051244283095002174, -0.02345903404057026, -0.04906289651989937, -0.00743986526504159, -0.007927325554192066, -0.033220428973436356, 0.033293548971414566, -0.017365779727697372, -0.055083032697439194, -0.028492063283920288, 0.00821980182081461, -0.09461607784032822, -0.013307670131325722, -0.0139535553753376, -0.0005628644721582532, 0.014526321552693844, -0.012722717598080635, 0.01428259164094925, 0.0560092069208622, 0.0069036586210131645, 0.016634589061141014, -0.045041345059871674, 0.07229038327932358, -0.013258924707770348, -0.0014334383886307478, 0.008567117154598236, -0.01595214381814003, -0.012588666751980782, -0.004320118110626936, 0.035292137414216995, -0.010504772886633873, -0.01962028443813324, 0.0013519411440938711, 0.014099793508648872, 0.024945789948105812, 0.028248334303498268, 0.01016964390873909, 0.020802374929189682, 0.00785420648753643, 0.03485342115163803, -0.0295888502150774, -0.06951186060905457, -0.00010187162115471438, 0.008116216398775578, -0.0006622607470490038, 0.01216213870793581, 0.05089087039232254, 0.017426710575819016, 0.028370199725031853, -0.031075604259967804, 0.018876906484365463, -0.006087162531912327, 0.014721306040883064, -0.022788776084780693, 0.020473338663578033, 0.04309150576591492, -0.023385915905237198, -0.0013252830831333995, -0.08164962381124496, 0.018864719197154045, 0.014891916885972023, -0.02527482435107231, -0.047576140612363815, -0.013027381151914597, 0.04579690843820572, 0.021838229149580002, -0.03551149368286133, -0.0064649442210793495, 0.029613222926855087, -0.013673265464603901, 0.00559970224276185, 0.0015294072218239307, -0.004347538109868765, 0.015062528662383556, -0.016378670930862427, 0.04448076710104942, -0.02136295475065708, 0.004941630642861128, -0.000993962399661541, 0.02169199101626873, -0.027736499905586243, -0.03631580248475075, -0.02186260186135769, -0.03431721776723862, 0.03865561634302139, 0.003701652865856886, -0.013697639107704163, 0.02082674764096737, -0.015306258574128151, -0.02759026177227497, 0.020351475104689598, 0.032269883900880814, 0.03109997697174549, -0.0016421324107795954, -0.0011455321218818426, -0.016305552795529366, 0.06278491020202637, 0.011662491597235203, 0.04840482398867607, -0.009956380352377892, -0.008152776397764683, -0.022910641506314278, 0.012808023951947689, -0.006666021887212992, -0.04560192674398422, 0.02144826017320156, 0.0165249090641737, -0.018218833953142166, -0.02072925679385662, -0.03326917812228203, 0.025591673329472542, 0.012515547685325146, 0.060737572610378265, 0.025811031460762024, -0.025104213505983353, -0.02927200123667717, 0.03885059803724289, -0.006318706087768078, 0.020802374929189682, 0.022203823551535606, 0.05137833207845688, 0.045431315898895264, -0.025152958929538727, -0.013575773686170578, 0.04440764710307121, 0.07253411412239075, -0.013673265464603901, -0.015903398394584656, -0.02839457243680954, -0.03309856355190277, 0.0395817905664444, 0.010864274576306343, 0.019023144617676735, 0.026664087548851967, 0.0011234440607950091, -0.01284458301961422, 0.027858365327119827, 0.004755786154419184, 0.009535945020616055, -0.030831873416900635, 0.018694108352065086, 0.03460969403386116, 0.014538507908582687, 0.00869507621973753, 0.013648892752826214, -0.010059964843094349, -0.0001383359485771507, -0.04840482398867607, 0.0211435966193676, -0.014355710707604885, -0.008292920887470245, 0.026542222127318382, -0.025494182482361794, 0.0040642013773322105, 0.009024111554026604, 0.0043231649324297905, 0.026225373148918152, -0.031465571373701096, -0.028979524970054626, -0.014562881551682949, 0.015891211107373238, 0.06283365190029144, -0.04009362310171127, -0.025640420615673065, -0.035145897418260574, -0.019047517329454422, -0.014672559686005116, -0.009493292309343815, -0.015891211107373238, -0.015452496707439423, 0.01873066835105419, 0.012472894974052906, -0.03543837368488312, 0.007293627131730318, -0.012820210307836533, 0.012070739641785622, 0.028687048703432083, -0.0036224406212568283, -0.017243914306163788, 0.00929221510887146, -0.00957250501960516, -0.020205236971378326, 0.054595571011304855, -0.018925651907920837, -0.028930777683854103, -0.014623814262449741, -0.004292698577046394, 0.011894035153090954, -0.004292698577046394, 0.05128084123134613, 0.05401061847805977, -0.007062083575874567, -0.020875494927167892, 0.050452157855033875, -0.0032873114105314016, 0.010108711197972298, 0.015732785686850548, -0.005026936065405607, -0.04148288443684578, -0.028102096170186996, 0.009535945020616055, -0.03719323128461838, 0.026980936527252197, -0.023385915905237198, 0.04916038736701012, -0.007086456287652254, -0.014514135196805, -0.007683595642447472, 0.0046582939103245735, 0.007573917042464018, -0.0384606309235096, -0.023861190304160118, 0.014392269775271416, 0.08871780335903168, 0.09159381687641144, 0.020290542393922806, -0.0660996362566948, -0.024446142837405205, -0.025786658748984337, -0.0073180003091692924, -0.013234551064670086, -0.011796543374657631, -0.023385915905237198, -0.012351029552519321, -0.008390413597226143, 0.048599809408187866, 0.053961873054504395, -0.037753812968730927, 0.0059744371101260185, -0.06780575215816498, 0.04396893456578255, -0.04967221990227699, 0.052596982568502426, 0.00758001022040844, 0.02288626879453659, -0.05162206292152405, -0.02401961386203766, -0.02488485723733902, 0.005139661021530628, 0.006145048420876265, -0.0064040119759738445, -0.017207354307174683, -0.005316365510225296, -0.00956641137599945, -0.010462120175361633, 0.0003654049360193312, -0.04218970239162445, -0.009267842397093773, 0.043822694569826126, -0.004280512221157551, 0.004767972510308027, 0.01352702733129263, -0.018779413774609566, 0.008762101642787457, 0.015318444930016994, -0.06556343287229538, -0.006544156465679407, -0.04533382132649422, -0.007025524042546749, -0.009432359598577023, -0.02793148346245289, 0.026932191103696823, 0.031148724257946014, 0.0014677130384370685, -0.01020620297640562, 0.01256429310888052, 0.01128470990806818, -0.002426639199256897, 0.03217238932847977, -0.02624974586069584, -0.0274440236389637, -0.03478030487895012, 0.018072595819830894, -0.029710715636610985, 0.027102801948785782, 0.01827976666390896, -0.04672308638691902, -0.036730144172906876, 0.008384319953620434, 0.011711237952113152, -0.013856063596904278, -0.0007730818470008671, 0.01667114719748497, 0.05444933474063873, 0.01859661564230919, -0.039289314299821854, 0.009590785019099712, -0.03341541439294815, -0.01172951702028513, 0.009389706887304783, -0.012978634797036648, 0.0016588888829573989, 0.01156499981880188, 0.03365914523601532, -0.00929221510887146, 0.0015461636940017343, -0.03263547644019127, 0.015598734840750694, -0.042628418654203415, 0.036900755017995834, 0.0067391409538686275, 0.013856063596904278, 0.04221407696604729, 0.009322681464254856, 0.07550762593746185, -0.05279196798801422, 0.029223253950476646, 0.012216977775096893, 0.01691487804055214, 0.0244095828384161, 0.03763194754719734, 0.029247628524899483, -0.019242500886321068, 0.002157012466341257, -0.00850009173154831, -0.028272707015275955, -0.02042459324002266, -0.015220953151583672, 0.0021082665771245956, -0.016256805509328842, -0.010608358308672905, 0.002533270977437496, 0.007013337220996618, 0.039679281413555145, 0.044066425412893295, 0.04650372639298439, 0.00379000511020422, 0.04301838576793671, 0.019522791728377342, -0.021107038483023643, -0.010602264665067196, -0.006096302531659603, -0.03638892248272896, -0.028930777683854103, 0.008871780708432198, -0.007683595642447472, 0.018243208527565002, 0.021167971193790436, 0.019084077328443527, 0.025542927905917168, 0.005547909531742334, -0.014258218929171562, -0.02107047848403454, 0.010882554575800896, -0.06341860443353653, -0.019425299018621445, -0.01737796515226364, 0.006056696176528931, -0.005630168132483959, -0.027980230748653412, -0.01284458301961422, -0.04292089492082596, -0.049257878214120865, 0.02327623777091503, -0.018962211906909943, -0.04357896372675896, 0.04409079998731613, -0.039606161415576935, -0.024775177240371704, -0.020241795107722282, 0.0019437485607340932, -0.022118518128991127, 0.02902827039361, -0.006428384687751532, -0.012131672352552414, -0.00472227344289422, -0.00582515262067318, -0.0038661707658320665, 0.01706111617386341, 0.0221672635525465, 0.024470515549182892, -0.01746327057480812, 0.017085488885641098, 0.006824446376413107, 0.011942781507968903, -0.0011196357663720846, -0.0012285526609048247, -0.005968343932181597, 0.026225373148918152, 0.057130366563797, 0.01511127408593893, -0.03429284319281578, 0.010279322043061256, -0.0010023405775427818, -0.0067757004871964455, 0.03670577332377434, 0.018523497506976128, 0.022557232528924942, -0.011857476085424423, 0.011296896263957024, 0.011699050664901733, -0.014684746041893959, -0.007324093487113714, -0.0009665426914580166, 0.05591171607375145, 0.03168493136763573, 0.02200883999466896, 0.017609508708119392, -0.008780381642282009, -0.032659851014614105, 0.004243952687829733, -0.021826041862368584, 0.001799033721908927, -0.05552174523472786, -0.0004745122860185802, 0.02274003066122532, -0.02990569919347763, 0.022435367107391357, -0.030246920883655548, -0.0114126680418849, -0.018377259373664856, 0.04552880674600601, -0.02615225315093994, -0.009925913996994495, -0.015525615774095058, -0.013137059286236763, -0.038095034658908844, 0.01140657439827919, -0.0033695704769343138, 0.04969659447669983, 0.049087267369031906, -0.002749581588432193, -0.026201000437140465, 0.00804919097572565, 0.0015918631106615067, 1.3483708244166337e-05, -0.04036172479391098, -0.003954522777348757, -0.01849912479519844, -5.4030042520025745e-05, -0.03029566816985607, -0.028687048703432083, -0.026420356705784798, -0.02082674764096737, 0.010090431198477745, -0.0004962194943800569, 0.017804494127631187, 0.021716363728046417, 0.002595726866275072, 0.00952985230833292, -0.013709825463593006, -0.007732341531664133, -0.004454169888049364, -0.01048649288713932, -0.00901192519813776, -0.01595214381814003, 0.030831873416900635, 0.031051231548190117, -0.02360527217388153, 0.04491947963833809, 0.013612333685159683, 0.009493292309343815, -0.020936427637934685, -0.0006637840415351093, -0.022069772705435753, 0.013100500218570232, -0.007909045554697514, 0.010059964843094349, 0.02465331368148327, -0.02416585199534893, -0.013185805641114712, 0.032659851014614105, -0.03709574043750763, -0.008280734531581402, 0.04445639252662659, 0.00466743391007185, 0.01714642159640789, -0.027102801948785782, 0.027565889060497284, 0.009542038664221764, 0.004277465399354696, -0.01985182799398899, -0.02439739555120468, 0.009036297909915447, -0.03495091572403908, 0.0011478170054033399, -0.01746327057480812, 0.0008713355637155473, 0.005401671398431063, 0.008603677153587341, -0.0029811253771185875, -0.011345642618834972, 0.044553887099027634, 0.00628214655444026, 0.008323387242853642, 0.0035706479102373123, -0.005733753554522991, 0.02314218506217003, -0.020448965951800346, 0.0068000731989741325, 0.010906928218901157, 0.008957086130976677, 0.024848297238349915, -0.0037960982881486416, -0.06804948300123215, -0.01739015243947506, -0.0017061115941032767, -0.01076678279787302, -0.005249339621514082, 0.009724835865199566, 0.009005831554532051, 0.032732971012592316, -0.008189335465431213, -0.02568916603922844, -0.027882738038897514, -0.035219017416238785, -0.014172912575304508, -0.05732535198330879, 0.008756008930504322, 0.013197991997003555, -0.005611888598650694, 0.03300107270479202, 0.009639530442655087, -0.04696681722998619, 0.002860783599317074, 0.03446345403790474, 0.011461414396762848, 0.015281885862350464, 0.025323571637272835, -0.018620990216732025, -0.03039315901696682, -0.014355710707604885, -0.009773582220077515, 0.015245325863361359, 0.029808206483721733, -0.05976265296339989, -0.0012689204886555672, 0.02001025155186653, 0.0005590562359429896, 0.029247628524899483, -0.017365779727697372, 0.042555298656225204, 0.052109524607658386, 0.026274118572473526, -0.02878453955054283, -0.010096524842083454, 0.0202539823949337, 0.005554002709686756, -0.03400036692619324, 0.022605977952480316, 0.03295232728123665, 0.045748163014650345, 0.00015547322982456535, -0.02360527217388153, -0.03865561634302139, -0.015623107552528381, -0.04830733314156532, -0.02568916603922844, 0.013283297419548035, 0.015915583819150925, 0.001357272733002901, -0.014782238751649857, 0.02902827039361, -0.012515547685325146, -0.02902827039361, 0.014331337995827198, -0.0447976179420948, -0.04201909154653549, -0.007604383397847414, 0.05015968158841133, -0.0005019319360144436, -0.002304774010553956, -0.033610399812459946, 0.02314218506217003, 0.0030131149105727673, -0.0017396245384588838, 0.012600853107869625, -0.012046366930007935, 0.015562174841761589, -0.015805905684828758, -0.03931368514895439, -0.02169199101626873, -0.027980230748653412, 0.03580396994948387, -0.023093439638614655, -0.015927771106362343, -0.007774994242936373, 0.026274118572473526, -0.01089474093168974, -0.0009155116858892143, 0.0019437485607340932, -0.0036376737989485264, 0.03755882754921913, -0.024909229949116707, -0.018925651907920837, -0.0124363349750638, -0.012942074798047543, 0.0026718927547335625, -0.008079657331109047, 0.00937752053141594, -0.0016649821773171425, 0.01731703244149685, 0.005291992798447609, -0.016476163640618324, -0.005611888598650694, 0.00015594926662743092, 0.022618165239691734, 0.010181830264627934, 0.02815084159374237, -0.015306258574128151, 0.0069036586210131645, 0.0030329180881381035, -0.022033212706446648, 0.031246215105056763, 0.001866059610620141, 0.030027564615011215, 0.04711305350065231, 0.02169199101626873, 0.003112130332738161, 0.047649260610342026, 0.048770420253276825, -0.017694814130663872, 0.015440310351550579, -0.01459944061934948, -0.04540694132447243, 0.05732535198330879, 0.05327942967414856, -0.04984283074736595, 0.02154575288295746, -0.02178948186337948, -0.005090915132313967, -0.028418945148587227, 0.0008256361470557749, -0.039508670568466187, -0.0016771686496213078, -0.02066832408308983, 0.010389001108705997, 0.0011280139442533255, -0.03746133670210838, 0.017694814130663872, -0.004512055777013302, -0.015744972974061966, -0.024275530129671097, 0.0111994044855237, 0.010315882042050362, -0.019985878840088844, -0.0037229792214930058, -0.00665992870926857, 0.031392455101013184, -0.019084077328443527, 0.0005937116220593452, -0.04260404407978058, -0.0007414730498567224, -0.0015217906329780817, -0.01252773404121399, -0.000281622662441805, 0.014977222308516502, -0.010614451952278614, 0.06444226950407028, -0.012856769375503063, -0.02902827039361, -0.01611056737601757, 0.004609548021107912, -0.023398101329803467, -0.02320311777293682, -0.01344172190874815, -0.029296373948454857, -0.014343524351716042, -0.039679281413555145, 0.07034054398536682, 0.010090431198477745, 0.05903146043419838, 0.02505546808242798, -0.031953033059835434, 0.021728549152612686, 0.0052523864433169365, 0.03468281030654907, 0.008920526131987572, 0.0013260447885841131, 0.016768639907240868, -0.014124167151749134, -0.00924956239759922, 0.01674426719546318, 0.02370276488363743, -0.00328121823258698, 0.043359607458114624, 0.013612333685159683, -0.013734198175370693, -0.009718743152916431, -0.016817385330796242, 0.012661785818636417, -0.014952849596738815, 0.0014859928051009774, 0.01635429821908474, 0.0418241061270237, -0.01827976666390896, 0.010553519241511822, 0.015123460441827774, -0.009298307821154594, 0.007586103398352861, 0.016878318041563034, -0.01077287644147873, 0.017280472442507744, 0.03387850150465965, -0.004402377177029848, -0.016171500086784363, 0.0026932191103696823, -0.0012156044831499457, -0.015269698575139046, 0.006489317398518324, 0.04357896372675896, 0.01077287644147873, -0.00850009173154831, 0.0248726699501276, 0.02751714363694191, 0.018925651907920837, 0.03214801847934723, -0.003921010065823793, -0.040702950209379196, 0.027492769062519073, 0.03480467572808266, 0.024762991815805435, -0.015318444930016994, 0.03144120052456856, -0.04145851358771324, 0.039118703454732895, 0.05527801439166069, 0.0346340648829937, 0.0054321372881531715, -0.004731412976980209, 0.01905970461666584, 0.021509192883968353, -0.0197908952832222, 0.011162844486534595, 0.03563335910439491, 0.02863830141723156, -0.0096151577308774, 0.016805199906229973, -0.023434661328792572, -0.02072925679385662, -0.02041240595281124, 0.011625931598246098, 0.010419467464089394, 0.011376108042895794, 0.05313318967819214, 0.03629143163561821, 0.020473338663578033, 0.010047778487205505, 4.510437429416925e-05, 0.0156352948397398, -0.003610254032537341, 0.01818227581679821, -0.024056173861026764, -0.05201203003525734, 0.028808914124965668, -0.0067757004871964455, -0.0063979183323681355, 0.028857659548521042, 0.0028257472440600395, 0.011820916086435318, -0.006861005909740925, -0.024519260972738266, 0.024519260972738266, -0.005834292154759169, 0.011382201686501503, 0.0038783573545515537, -0.005779453087598085, 0.007531264331191778, 0.039118703454732895, -0.02479955181479454, 0.014343524351716042, 0.037534456700086594, 0.0422871932387352, 0.030904993414878845, -0.00034084150684066117, -0.028808914124965668, -0.03046627901494503, -0.007647036109119654, -0.017914172261953354, 0.02927200123667717, -0.026274118572473526, -0.00984670128673315, 0.0023169605992734432, 0.00897536613047123, 0.016049636527895927, 0.0447976179420948, 0.030978111550211906, -0.021838229149580002, 0.009700463153421879, 0.01762169599533081, -0.004201299976557493, 0.03651078790426254, -0.00012672068260144442, -0.005718520376831293, 0.012783650308847427, 0.0008865687414072454, -0.007915139198303223, -0.025981642305850983, 0.011961061507463455, -0.039825521409511566, -0.003561507910490036, -0.01612275466322899, 0.0307100098580122, -0.0384606309235096, -0.052938204258680344, 0.026054762303829193, -0.006269960198551416, 0.008384319953620434, -0.002266691066324711, 0.01778011955320835, 0.024433955550193787, 0.022605977952480316, 0.001614712760783732, -0.015099087730050087, -0.02311781235039234, -0.026932191103696823, -0.023727137595415115, 0.005788593087345362, 0.05342566594481468, -0.002810514299198985, -0.008780381642282009, 0.009078950621187687, -0.008390413597226143, -0.016134941950440407, 0.013587960042059422, 0.03166055679321289, -0.016878318041563034, 0.006970684509724379, -0.005831245798617601, 0.02097298577427864, -0.01930343359708786, 0.02617662586271763, -0.00554486270993948, -0.01659802906215191, 0.046698711812496185, -0.026347238570451736, 0.042238447815179825, -0.017828866839408875, 0.025104213505983353, 0.006108488887548447, -0.019364366307854652, 0.014441016130149364, 0.033707890659570694, -0.003942336421459913, -0.005669774487614632, 0.021009545773267746, -0.05167080834507942, 0.00913988333195448, -0.0025287012103945017, 0.023580899462103844, 0.051329586654901505, -0.024945789948105812, -0.003177632810547948, -0.012058553285896778, 0.018620990216732025, -0.01611056737601757, 0.0011363922385498881, 0.024373022839426994, -0.02224038355052471, -0.0009535945137031376, 0.011991526931524277, 0.0054595572873950005, 0.029150135815143585, 0.022995946928858757, -0.060981303453445435, 0.013246738351881504, -0.00017213447426911443, -0.01707330346107483, -0.005983577109873295, 0.011918407864868641, -0.010370721109211445, -0.0248726699501276, 0.008621957153081894, 0.007969978265464306, -0.009152069687843323, -0.035048406571149826, -0.026103507727384567, -0.0005472505581565201, 0.0040489686653018, 0.006044509820640087, 0.019669029861688614, 0.0096151577308774, -0.004006315488368273, 0.02136295475065708, 0.0013351846719160676, 0.07209540158510208, -0.010005125775933266, -0.00594397122040391, 0.0036011142656207085, -0.02393430843949318, 0.010644917376339436, 0.020997358486056328, 0.01602526195347309, 0.024214599281549454, 0.03151432052254677, -0.024385210126638412, 0.005249339621514082, 0.036242686212062836, 0.03914307430386543, -0.026201000437140465, 0.015696227550506592, 0.028297079727053642, 0.009133790619671345, 0.0035462749656289816, 0.0020838933996856213, 0.0191328227519989, -0.01498940959572792, -0.017292659729719162, -0.019729962572455406, 0.018718481063842773, -0.06083506718277931, -0.005136614665389061, 0.015208766795694828, -0.0014524798607453704, -0.019437486305832863, 0.05089087039232254, 0.0031654464546591043, -0.0078176474198699, -0.026590967550873756, 0.012320563197135925, -0.037120115011930466, -0.02160668559372425, -0.03102685883641243, 0.003975849598646164, -0.00524324644356966, -0.038070663809776306, 0.01658584177494049, -0.019571537151932716, 0.02537231706082821, 0.02944261208176613, 0.03207489848136902, -0.014026674441993237, -0.006081069353967905, 0.013003007508814335, -0.016561469063162804, 0.011948874220252037, 0.026737205684185028, 0.008463532663881779, -0.03278171643614769, 0.014684746041893959, 0.007945605553686619, 0.025226078927516937, -0.009755302220582962, -0.027005309239029884, -0.004207393154501915, -0.0016771686496213078, -0.015013782307505608, 0.03953304514288902, 0.00031399307772517204, 0.02311781235039234, -0.020534271374344826, -0.0013435628497973084, 0.011022699996829033, -0.0017609508940950036, -0.011272523552179337, 0.021204529330134392, -0.020436780527234077, 0.002141779288649559, -0.0023580898996442556, -0.016390858218073845, 0.021679803729057312, -0.03412223234772682, 0.00038768339436501265, -0.008073563687503338, 0.028930777683854103, 0.005633214954286814, -0.008445252664387226, 0.044870734214782715, 0.011144564487040043, -0.009864981286227703, 0.016061821952462196, -0.05864149332046509, 0.01252773404121399, 0.009048485197126865, -0.013539214618504047, 0.00885959342122078, -0.01954716444015503, -0.01431915070861578, -0.023434661328792572, -0.011150658130645752, -0.0006317944498732686, 0.01714642159640789, -0.02058301866054535, -0.015891211107373238, 0.008871780708432198, 0.007659222465008497, -0.012673972174525261, 0.003265985054895282, 0.030807500705122948, -0.028906404972076416, -0.0025728773325681686, -0.016463976353406906, 0.0169879961758852, 0.001806650310754776, -0.043432727456092834, -0.03253798559308052, -0.008567117154598236, -0.012302283197641373, 0.012893329374492168, -0.030246920883655548, -0.01284458301961422, 0.0060262298211455345, 0.01963246986269951, 0.01411198079586029, 0.019279060885310173, 0.02617662586271763, -0.017414525151252747, 0.020071184262633324, 0.006696488242596388, -0.009200816042721272, 0.03175804764032364, 0.007561730220913887, 0.027102801948785782, 0.011016606353223324, -0.01659802906215191, -0.014757865108549595, 0.007482517976313829, 0.011747797019779682, 0.011138471774756908, -0.005806872621178627, -0.016719894483685493, -0.005925691220909357, 0.005419950932264328, 0.034487828612327576, -0.01164421159774065, 0.0319286584854126, -0.00012605423398781568, 0.030051937326788902, 0.003543228143826127, 0.01363670639693737, 0.005657588131725788, -0.002172245644032955, 0.0030085451435297728, -0.0036590001545846462, -0.000581525091547519, -0.0003124697832390666, 0.03022254817187786, -0.014404457062482834, -0.006391825154423714, -0.013490468263626099, -0.013661079108715057, 0.007031617220491171, -0.03151432052254677, 0.02001025155186653, 0.0033086377661675215, 0.01211948599666357, 0.023495594039559364, -0.020619576796889305, -0.0038143780548125505, 0.004213486332446337, 0.0221672635525465, -0.005971390753984451, -0.005066541954874992, -0.019973691552877426, 0.005331598687916994, -0.024056173861026764, -0.006617275532335043, 0.019010957330465317, 0.00913988333195448, -0.01431915070861578, -0.02304469235241413, 0.008877873420715332, 0.015379377640783787, -0.005590562243014574, -0.015744972974061966, -0.012113392353057861, 0.008274640887975693, 0.013856063596904278, -0.04140976443886757, -0.02712717466056347, -0.017024556174874306, 0.029150135815143585, -0.01335641648620367, 0.033464159816503525, -0.016293365508317947, 0.024068361148238182, -0.0020412406884133816, 0.03046627901494503, -0.009986845776438713, 0.012089019641280174, -0.03141682595014572, -0.006373545620590448, 0.03675451874732971, -0.0028714467771351337, 0.011217683553695679, -0.002268214477226138, 0.006958498153835535, -0.013368602842092514, 0.05313318967819214, -0.011638118885457516, -0.05362065136432648, -0.007799367420375347, -0.006921938620507717, 0.00845743902027607, 0.016463976353406906, 0.03334229439496994, 0.011948874220252037, 0.015062528662383556, -0.024299904704093933, 0.014087607152760029, 0.018620990216732025, 0.026761578395962715, 0.036973875015974045, -0.0006923461914993823, -0.030612517148256302, -0.04216533154249191, 0.02488485723733902, 0.024836109951138496, -0.016086194664239883, -0.016695519909262657, 0.008006538264453411, -0.016293365508317947, 0.021631058305501938, 0.028735794126987457, -0.023897748440504074, 0.02048552595078945, 0.01016964390873909, -0.0025728773325681686, -0.04109291732311249, 0.02975946106016636, -9.39218225539662e-05, -0.0013077650219202042, -0.0005495354998856783, -0.015623107552528381, -0.015562174841761589, 0.0068792859092354774, 0.0007822217303328216, -0.030904993414878845, 0.01228400319814682, -0.021277649328112602, -0.0029582756105810404, -0.013868249952793121, -0.015842465683817863, 0.004368864465504885, -0.029540104791522026, -0.026225373148918152, -0.0191328227519989, 0.0025028048548847437, -0.0008888536831364036, 0.0328548364341259, -0.02671283297240734, -0.014160726219415665, -0.002434255788102746, -0.029369492083787918, -0.051329586654901505, 0.01160155888646841, -0.035925835371017456, 0.021167971193790436, 0.013344230130314827, 0.014051048085093498, 0.040386099368333817, -0.012613039463758469, 0.025859776884317398, -0.02136295475065708, -0.0012613038998097181, 0.022776590660214424, 0.015318444930016994, -0.004079434555023909, -0.05883647873997688, -0.017889799550175667, -0.013112686574459076, 0.01312487293034792, 0.01714642159640789, -0.004895931109786034, 0.01986401341855526, -0.005547909531742334, 0.017085488885641098, 0.01036462839692831, 0.018304139375686646, -0.005675867665559053, 0.0017228680662810802, 0.0019528884440660477, 0.0033756636548787355, 0.009992939420044422, -0.027078429237008095, -0.0196934025734663, 0.00564235495403409, 0.009060671553015709, -0.0009444546303711832, 0.019998066127300262, 0.010913020931184292, -0.017329219728708267, 0.00892661977559328, 0.004749692976474762, -0.026127880439162254, -0.010419467464089394, 0.012454614974558353, 0.048380449414253235, 0.028053348883986473, -0.013563587330281734, -0.005767266731709242, 0.021960094571113586, 0.014294777996838093, 0.0280046034604311, -0.03770506754517555, -0.0005331598804332316, 0.05615544319152832, 0.018157901242375374, -0.010419467464089394, 0.01747545786201954, 0.04867292568087578, -0.005282852798700333, -0.002709975466132164, 0.015452496707439423, 0.03724198043346405, 0.01881597377359867, 0.0033573838882148266, 0.027882738038897514, -0.01930343359708786, 0.06956060975790024, -0.009499385952949524, 0.025226078927516937, 0.014550695195794106, -0.022764403373003006, 0.02520170621573925, -0.005560095887631178, -0.025713538751006126, -0.006023183465003967, 0.00012148428504588082, 0.0050970083102583885, -0.004173879977315664, 0.017426710575819016, -0.01771918684244156, 0.011571092531085014, -0.0022027119994163513, -0.0016893551219254732, 0.014172912575304508, 0.03063688986003399, 0.027224667370319366, 0.01224135048687458, 0.0013321380829438567, 0.004819765221327543, -0.007909045554697514, -0.023861190304160118, 0.005273712798953056, -0.011028792709112167, 0.030831873416900635, -0.009956380352377892, 0.014952849596738815, 0.016378670930862427, 0.019644657149910927, 0.005288945976644754, -0.018535684794187546, 0.02568916603922844, -0.009237376041710377, 0.005410810932517052, 0.022861896082758904, -0.01771918684244156, 0.015220953151583672, 0.041994716972112656, 0.0008896153303794563, -0.0034183163661509752, -0.009420173242688179, -0.005779453087598085, 0.01586683839559555, 0.02822396159172058, 0.0043231649324297905, -0.010413373820483685, 0.0018157901940867305, 0.02951573021709919, -0.029247628524899483, -0.005858665332198143, 0.01715860888361931, -0.0042195795103907585, 0.03317168354988098, -0.0012757753720507026, -0.029150135815143585, 0.012600853107869625, -0.05054964870214462, 0.025981642305850983, -0.01650053635239601, 0.011973247863352299, -0.008810847997665405, 0.013392976485192776], [-0.00668621389195323, 0.022354284301400185, 0.013522961176931858, -0.013560594990849495, -0.06758972257375717, 0.03866212069988251, -0.0026876572519540787, 0.02729681320488453, 0.025916919112205505, 0.04513508081436157, -0.04884824901819229, 0.0434541180729866, -0.0063224234618246555, 0.05905946344137192, -0.04844682663679123, -0.016935063526034355, -0.020322075113654137, 0.026243075728416443, 0.003669263795018196, 0.016935063526034355, 0.004578739404678345, 0.012795381247997284, 0.0076584117487072945, 0.03856176510453224, -0.02877706289291382, -0.015793515369296074, 0.0017452524043619633, -0.016884885728359222, 0.03775892034173012, -0.01890454813838005, 0.08505164831876755, -0.043153051286935806, 0.06011320278048515, -0.042525824159383774, 0.020497698336839676, 0.025528039783239365, -0.0010302163427695632, 0.03537546470761299, 0.02245463989675045, -0.008291908539831638, -0.02712118998169899, -0.002940115053206682, 0.023270031437277794, -0.056048788130283356, -0.03201354295015335, 0.04791995510458946, -0.0025073301512748003, -0.019393783062696457, -0.04877298325300217, 0.00043317695963196456, -0.015630437061190605, -0.00027931094518862665, -0.012092889286577702, -0.03725713863968849, 0.013824029825627804, -0.013974563218653202, -0.04360465332865715, 0.037508029490709305, -0.0077713122591376305, -0.013234438374638557, 0.007131543476134539, -0.014965577982366085, 0.014639421366155148, 0.017160864546895027, -0.024286136031150818, -0.0011768300319090486, 0.02636852115392685, 0.03369450196623802, -0.04378027468919754, 0.023508377373218536, 0.008454986847937107, 0.013874207623302937, 0.0027331309393048286, -0.007608233951032162, -0.05198437348008156, 0.04019255191087723, 0.0179637111723423, -0.03146158531308174, -0.03923916816711426, -0.06763989478349686, -0.015091023407876492, -0.01290828175842762, -0.012971003539860249, 0.012945914641022682, 0.019381238147616386, -0.008185280486941338, -0.09493671357631683, -0.01039938349276781, -0.007815218530595303, 0.012500585988163948, -0.03949005901813507, -0.026293253526091576, 0.007865396328270435, 0.01299609337002039, -0.009985415264964104, 0.017825722694396973, 0.07872922718524933, -0.027071012184023857, -0.06563277542591095, 0.04147208854556084, -0.009245290420949459, -0.008191552944481373, -0.034698061645030975, 0.002526146825402975, 0.04342902824282646, -0.03163720667362213, -0.05105607956647873, 0.05258650705218315, 0.009408368729054928, -0.02937919832766056, 0.04112084209918976, -0.00898185558617115, 0.009759614244103432, 0.07752495259046555, 0.025540584698319435, -0.046314261853694916, 0.01515374518930912, -0.04455803334712982, 0.0070625487715005875, 0.0006244804826565087, -0.014112552627921104, -0.04664041846990585, 0.04641461744904518, -0.07787620276212692, 0.008379720151424408, -0.006868109107017517, -0.048923514783382416, 0.009188840165734291, -0.017537198960781097, 0.0012497449060902, 0.055446650832891464, -0.026067452505230904, 0.048923514783382416, -0.027547702193260193, 0.013522961176931858, 0.005262413993477821, -0.0079657519236207, 0.013033726252615452, 0.017524654045701027, -0.03326798975467682, 0.02784877084195614, 0.008179008029401302, 0.07742460072040558, 0.016320383176207542, -0.015780970454216003, 0.008749783039093018, 0.002137267729267478, 0.02525206096470356, -0.011032880283892155, -0.00410832092165947, -0.033393435180187225, -0.005522712133824825, 0.014915400184690952, -0.0233954768627882, -0.044984545558691025, -0.034346818923950195, -0.00832326989620924, 0.05895910784602165, 0.01906762644648552, 0.003917017485946417, -0.004773179069161415, -0.02749752439558506, -0.02616780810058117, -0.025201883167028427, 0.0033493791706860065, -0.052084729075431824, 0.009577719494700432, 0.01028021052479744, -0.061066582798957825, -0.02506389282643795, -0.044808924198150635, -0.016420738771557808, -0.02094930037856102, -0.010568734258413315, -0.006334967911243439, -0.038988277316093445, 0.049124229699373245, -0.012632302939891815, 0.02377181127667427, 0.02431122399866581, 0.04410643130540848, 0.03871230036020279, -0.07085128873586655, -0.043127961456775665, -0.057353414595127106, 0.05459362640976906, -0.016220027580857277, 0.022793341428041458, 0.020522788166999817, -0.03705642744898796, 0.013159171678125858, 0.0008969311020337045, 0.013610772788524628, 0.03158703073859215, -0.013209349475800991, -0.010932523757219315, -0.01627020537853241, 0.00823545828461647, 0.04004201665520668, -0.007463972549885511, 0.029604999348521233, -0.06748936325311661, -0.008944222703576088, -0.056751277297735214, 0.002684521023184061, 0.019017448648810387, 0.02319476380944252, -0.004296488128602505, 0.041421908885240555, 0.007181721273809671, 0.027648059651255608, -0.014062374830245972, -0.04664041846990585, 0.037508029490709305, -0.020158996805548668, 0.00715035991743207, 0.03961550444364548, -0.05645021051168442, -0.003584588412195444, 0.021940315142273903, -0.04081977531313896, -0.04453294351696968, 0.0041145929135382175, -0.021977948024868965, 0.0036786720156669617, -0.00853025447577238, -0.021952860057353973, -0.025942007079720497, -0.0032098216470330954, -0.032465144991874695, -0.027221545577049255, 0.03560126572847366, -0.008668243885040283, -0.04884824901819229, 0.008730965666472912, 0.03276621177792549, -0.014275630936026573, -0.051532771438360214, 0.012644846923649311, 0.01795116625726223, 0.012513129971921444, -0.00636632926762104, 0.021563980728387833, -0.013083904050290585, 0.0021137467119842768, -0.007307166233658791, -0.010242576710879803, -0.02917848713696003, 0.02789894863963127, 0.0037100333720445633, 0.009897603653371334, 0.028024394065141678, 0.00212629116140306, -0.022178661078214645, 0.016132215037941933, -0.010380566120147705, 0.047593798488378525, -0.021977948024868965, 0.049299851059913635, -0.06899470090866089, 0.03346870094537735, -0.005588571075350046, -0.00821664184331894, -0.013322249986231327, -0.060313913971185684, -0.04092013090848923, 0.05885875225067139, 0.010135948657989502, -0.01048719510436058, 0.021827414631843567, -0.019368695095181465, 0.03346870094537735, 0.004776314832270145, -0.019218159839510918, -0.06563277542591095, -0.008737238124012947, 0.019017448648810387, -0.00933937355875969, -0.00035869405837729573, 0.0035657717380672693, -0.024286136031150818, -0.05394131317734718, -0.0237592663615942, -0.01495303399860859, -0.012005078606307507, 0.013786396011710167, 0.03070891462266445, -0.0097407978028059, 0.001577469753101468, 0.02468755841255188, 0.03961550444364548, -0.035801976919174194, -0.0044595664367079735, -0.0042839436791837215, 0.018979815766215324, 0.021814869716763496, -0.012481768615543842, 0.024574657902121544, -0.015178834088146687, 0.02694556675851345, -0.013899296522140503, 0.023144586011767387, 0.0001683705922914669, -0.017311397939920425, 0.00757687259465456, 0.032841477543115616, -0.011515842750668526, 0.06407725811004639, -0.005390995182096958, -0.019745029509067535, -0.015981681644916534, 0.009427185170352459, -0.048195935785770416, -0.024624835699796677, 0.022391917183995247, 0.04026781767606735, -0.023106953129172325, 0.04942529648542404, 0.03033258020877838, 0.016985241323709488, 0.05088045820593834, -0.0048547182232141495, 0.006184434052556753, -0.03251532092690468, 0.002794285537675023, 0.003964059054851532, 0.039565324783325195, 0.047217465937137604, -0.0044595664367079735, 0.002798989647999406, -0.046314261853694916, -0.026443786919116974, 0.03848649933934212, -0.027547702193260193, -0.016408193856477737, -0.031888097524642944, 0.024976082146167755, 0.02490081451833248, 0.01812678948044777, -0.024762826040387154, 0.022329194471240044, 0.0239725224673748, 0.010418199934065342, 0.006331832148134708, -0.00869960431009531, 0.0016017747111618519, 0.029053041711449623, 0.01664653979241848, 0.010775717906653881, 0.019569406285881996, -0.028375638648867607, 0.025716207921504974, -0.06538189202547073, 0.04132155328989029, -0.04588774964213371, -0.001033352455124259, 0.05083027854561806, -0.009583991020917892, 0.0014300720067694783, 0.00935191847383976, 0.0017562287393957376, -0.009828608483076096, 0.003973467741161585, 0.03427154943346977, 0.0032458871137350798, 0.04646479710936546, -0.04305269569158554, 0.008988128043711185, -0.0031815965194255114, -0.038260698318481445, 0.04327849671244621, 0.035450734198093414, 0.019167982041835785, 0.015530080534517765, -0.0008984992164187133, 0.03236478939652443, -0.04352938383817673, 0.0053596338257193565, -0.030056601390242577, -0.0034622796811163425, -0.0005190283409319818, -0.017273765057325363, 0.03422137349843979, 0.019745029509067535, -0.023683998733758926, 0.022003037855029106, -0.05384095758199692, -0.019757574424147606, 0.01680961810052395, 0.009521269239485264, 0.030232224613428116, 0.011810638941824436, 0.024348856881260872, 0.02488827146589756, -0.024210868403315544, 0.04039326310157776, 0.07255733758211136, 0.05820643901824951, 0.02448684722185135, -0.050228144973516464, 0.009866242296993732, -0.04034308344125748, -0.031336139887571335, 0.03484859690070152, 0.007319710683077574, 0.02037225477397442, 0.0497012734413147, -0.0235460102558136, 0.00367239979095757, -0.005284367129206657, 0.022115938365459442, -0.035099487751722336, 0.005908455234020948, 0.019569406285881996, 0.022856062278151512, -0.009671802632510662, 0.02245463989675045, 0.031311050057411194, 0.013736218214035034, -0.019544318318367004, 0.05168330296874046, 0.003283520694822073, -0.040719419717788696, -0.02957991138100624, -0.01413764152675867, 0.01438853144645691, 0.005199691746383905, -0.019393783062696457, -0.00313769094645977, -0.05574771761894226, -0.005463126115500927, 0.031110338866710663, 0.01965721696615219, 0.033769771456718445, -0.012067800387740135, -0.015015755780041218, -0.03903845697641373, -0.04212440177798271, -0.009408368729054928, -0.0006895550177432597, -0.03928934782743454, -0.03178774192929268, 0.06753954291343689, -0.014614332467317581, -0.027246635407209396, -0.02447430230677128, -0.02900286391377449, 0.004914304241538048, -0.015492446720600128, -0.007984568364918232, -0.054342735558748245, -0.002494785701856017, -0.09498688578605652, 0.07341036200523376, -0.03286656737327576, -0.030633646994829178, 0.007802673615515232, -0.05198437348008156, 0.05750394985079765, -0.0033807402942329645, -0.022216293960809708, 0.03233969956636429, 0.04117102175951004, -0.02000846341252327, 0.011264952830970287, 0.039740949869155884, 0.019318517297506332, -0.002568484516814351, 0.004039326217025518, -0.04189860075712204, -0.001892650150693953, -0.00608094222843647, 0.02037225477397442, 0.01742429845035076, 0.0008851706515997648, 0.012375140562653542, 0.03088453784584999, -0.03690589219331741, -0.02191522717475891, 0.036579735577106476, 0.0006201682845130563, 0.03989148139953613, -0.0482461117208004, -0.019933195784687996, 0.06482993066310883, 0.03050820343196392, 0.07918082922697067, 0.044783834367990494, -0.06437832862138748, -0.0050240689888596535, -0.03557617589831352, -0.016709262505173683, -0.015216467902064323, -0.013272072188556194, -0.014363442547619343, -0.04428205266594887, -0.02784877084195614, -0.009345646016299725, 0.054142024368047714, -0.05720287933945656, 0.01068163476884365, -0.06387654691934586, 0.007495333440601826, -0.03743276372551918, 0.026293253526091576, -0.023445654660463333, -0.006262837443500757, -0.005130697041749954, -0.012299873866140842, -0.006516863126307726, -0.016947608441114426, -0.008549070917069912, 0.03399557247757912, -0.02414814569056034, -0.006824203301221132, -0.03010677918791771, -0.004186723846942186, 0.01001050416380167, -0.0013281480642035604, -0.03630375862121582, 0.005908455234020948, 0.023094408214092255, -0.010198671370744705, 0.021062200888991356, -0.024737736210227013, 0.009872514754533768, 0.01625766046345234, -0.08565378934144974, 0.017073052003979683, 0.008473804220557213, -0.021087290719151497, -0.0022156708873808384, -0.044432587921619415, 0.001607262995094061, 0.0037790280766785145, -0.018239689990878105, -0.022956419736146927, 0.01648346148431301, 0.027572792023420334, -0.019594496116042137, 0.02280588448047638, -0.0035971328616142273, -0.027271723374724388, 0.013962019234895706, 0.030784182250499725, 0.001950668403878808, 0.05499504879117012, -0.00412400159984827, -0.007532966788858175, 0.0057610576041042805, -0.02508898265659809, -0.005099335685372353, -0.017625009641051292, 0.00301381410099566, -0.0043686190620064735, 0.03158703073859215, 0.010273938067257404, -0.0301318671554327, -0.005786146502941847, -0.006300470791757107, -0.013083904050290585, -0.01282047014683485, -0.02957991138100624, -0.04696657508611679, -0.0479450449347496, 0.02323239855468273, -0.01104542426764965, 0.003267840016633272, 0.003443462774157524, -0.014074918814003468, -0.050780102610588074, 0.011315131559967995, 0.026268165558576584, -0.003932698164135218, 0.0456368587911129, -0.00757687259465456, 0.015605347231030464, -0.002482241252437234, 0.027949126437306404, 0.01290828175842762, 0.0015116111608222127, 0.016571272164583206, -0.0008059835527092218, -0.012676208280026913, -0.02323239855468273, -0.020610598847270012, 0.010618912056088448, -0.039766035974025726, -0.03254041075706482, -0.013886751607060432, 0.01852821372449398, 0.014375987462699413, -0.00917629525065422, 0.0009886627085506916, 0.0011838863138109446, 0.04581248387694359, -0.007037459407001734, 0.05065465718507767, -0.0073698884807527065, -0.006899469997733831, -0.0029181623831391335, 0.012500585988163948, -0.010161037556827068, -0.009615352377295494, -0.05554700642824173, -0.004315305035561323, 0.016508551314473152, -0.005014660302549601, 0.008969311602413654, 0.03412101790308952, 0.003775891847908497, 0.010361749678850174, 0.02321985363960266, -0.04714219644665718, -0.011164597235620022, 0.01648346148431301, -0.03522493317723274, -0.00032400069176219404, 0.008542798459529877, -0.01207407284528017, -0.004892351571470499, -0.008116286247968674, -0.025666028261184692, 0.0038292058743536472, -0.025891829282045364, 0.011446848511695862, -0.01384911872446537, -0.028325460851192474, 0.04342902824282646, -0.02074858918786049, -0.007144087925553322, -0.0055289845913648605, -0.018465491011738777, 0.012858103960752487, -0.002353660063818097, -0.01590641587972641, -0.024587202817201614, 0.00547567056491971, -0.0173866655677557, 0.0030091097578406334, 0.032640766352415085, -0.032440055161714554, 0.04280180484056473, -0.05629967525601387, 0.027648059651255608, 0.015680614858865738, -0.0033619236201047897, 0.008680787868797779, 0.009847425855696201, -0.013221893459558487, 0.027171367779374123, -0.004503472242504358, 0.010963885113596916, 0.029454465955495834, 0.008229185827076435, -0.030959803611040115, -0.028726885095238686, 0.0328916572034359, -0.018076611682772636, -0.012814197689294815, -0.016608906909823418, -0.006253428757190704, 0.004644597880542278, -0.0009204520611092448, -0.010631456039845943, 0.015417180024087429, 0.04766906797885895, -0.01438853144645691, 0.008988128043711185, 0.008072379976511002, 0.019945740699768066, -0.01226851250976324, 0.017875900492072105, -0.027924038469791412, 0.012632302939891815, -0.02729681320488453, -0.023044230416417122, 0.04222475737333298, -0.009960326366126537, -0.013146626763045788, -0.009044578298926353, -0.013573139905929565, 0.02957991138100624, 0.04099539667367935, 0.0036379024386405945, -0.012199517339468002, -0.025741295889019966, -0.021626703441143036, -0.030382758006453514, 0.029604999348521233, 0.012205789797008038, 0.025716207921504974, 0.027597879990935326, -0.04021763801574707, 0.002538691507652402, 0.012067800387740135, 0.016897430643439293, 0.022918784990906715, -0.002165492856875062, -0.021037111058831215, -0.013824029825627804, -0.005510167684406042, -0.01852821372449398, -0.0463644415140152, -0.03271603211760521, 0.0005519576370716095, 0.0018267915584146976, 0.012632302939891815, 0.04400607571005821, -0.00622520362958312, -0.012795381247997284, 0.015003211796283722, -0.0231822207570076, -0.0034528712276369333, -0.006131120026111603, -0.012318690307438374, -0.0231822207570076, -0.02472519315779209, 0.01854075863957405, 0.016684172675013542, -0.03402065858244896, -1.4516818737320136e-05, -0.008392265066504478, -0.01870383694767952, 0.0024289272259920835, 0.010988974012434483, 0.0004069119459018111, 0.002941683167591691, 0.006824203301221132, 0.009809792041778564, 0.03866212069988251, -0.03798472136259079, -0.008511437103152275, -0.006673669442534447, -0.017662644386291504, 0.007187993731349707, -0.009709436446428299, 0.007413794286549091, 0.007307166233658791, -0.012594669125974178, 0.044457677751779556, -0.04001692682504654, 0.009452274069190025, -0.014125097543001175, -0.0070625487715005875, 0.009652986191213131, -0.00416163494810462, 0.037508029490709305, -0.02749752439558506, 0.012186973355710506, -0.016044404357671738, 0.009163751266896725, -0.0415724441409111, -0.028475996106863022, -0.009314284659922123, 0.022906241938471794, 0.00041122411494143307, 0.03121069446206093, -0.005400403402745724, -0.026619410142302513, -0.0032490233425050974, -0.002657864009961486, 0.013723673298954964, 0.01778808794915676, -0.004149090498685837, 0.01159738190472126, -0.04884824901819229, -0.047066930681467056, -0.02003355324268341, -0.014037285931408405, -0.0051902830600738525, -0.009602808393537998, -0.006736391689628363, 0.02433631382882595, -0.006388282403349876, -0.02993115596473217, -0.07787620276212692, -0.00032125657889992, 0.03068382479250431, -0.022003037855029106, 0.0683925673365593, -0.003775891847908497, -0.041798245161771774, 0.011478209868073463, 0.025339871644973755, -0.023671455681324005, -0.005221644416451454, 0.003430918324738741, 0.04453294351696968, 0.014877766370773315, 0.01048719510436058, -0.006962192710489035, 0.028526173904538155, -0.05223526060581207, -0.016307838261127472, 0.02374672144651413, 0.030156956985592842, -0.08103741705417633, -0.0023113226052373648, 0.019782662391662598, 0.002353660063818097, 0.012789108790457249, -0.023144586011767387, 0.009790975600481033, 0.049124229699373245, 0.016909973695874214, -0.07019897550344467, 0.002295641927048564, 0.004581875633448362, -0.018490580841898918, -0.023295119404792786, 0.022329194471240044, 0.028174927458167076, 0.03818543255329132, -0.007827762514352798, -0.010549916885793209, -0.01346023939549923, 0.0025026260409504175, -0.007463972549885511, -0.01798880100250244, 0.0515829473733902, -0.02470010332763195, 0.010644000954926014, -0.00908221211284399, 0.011390398256480694, -0.009144933894276619, -0.011622470803558826, 0.038637034595012665, -0.025565672665834427, 0.022554995492100716, -0.014426165260374546, 0.01892963796854019, -0.011666377075016499, -0.0162952933460474, -0.015003211796283722, -0.016383105888962746, -0.02468755841255188, 0.001691938261501491, -0.004412524867802858, 0.029479553923010826, 0.05629967525601387, -0.007865396328270435, -0.03351888060569763, -0.006058989092707634, -0.04224984720349312, 0.04674077406525612, -0.00487039890140295, -0.005205963738262653, -0.03798472136259079, 0.07506623864173889, -0.04922458529472351, -0.016558729112148285, 0.02451193518936634, -0.018252234905958176, 0.06357548385858536, -0.02321985363960266, 0.010305299423635006, 0.010230032727122307, -0.02057296596467495, 0.010135948657989502, -0.0011133236112073064, -0.0012019190471619368, 0.005036613438278437, -0.02076113224029541, -0.0039201537147164345, -0.049676187336444855, 0.021175101399421692, 0.007890485227108002, -0.02845090627670288, 0.0020149589981883764, 0.04952565208077431, 0.011095602996647358, -0.010066954419016838, -0.019004903733730316, -0.016771985217928886, 0.013134082779288292, 0.013046271167695522, 0.054894693195819855, 0.051332056522369385, 0.013798939995467663, -0.01430071983486414, 0.0295548215508461, 0.04784468933939934, -0.010311571881175041, -0.006253428757190704, -0.02132563479244709, -0.032264430075883865, 0.04139682278037071, 0.018377680331468582, 0.011578565463423729, 0.0015610051341354847, -0.009859969839453697, 0.0013163875555619597, -0.031486671417951584, 0.0017703413031995296, -0.004986435174942017, 0.005278094671666622, 0.003073400352150202, -0.023671455681324005, 0.04475874453783035, -0.02186504751443863, 0.006999826058745384, 0.00537217827513814, 0.019494138658046722, -0.00014220357115846127, -0.006479229778051376, 0.0021294273901730776, -0.026418698951601982, -0.01205525640398264, -0.0030044056475162506, 0.025766385719180107, -0.0011642855824902654, -0.0175999216735363, -0.029278842732310295, 0.02078622207045555, 0.012218334712088108, -0.033393435180187225, 0.0317375622689724, 0.019142894074320793, -0.013146626763045788, 0.0359274223446846, -0.023094408214092255, 0.0047700428403913975, -0.0056136599741876125, 0.014250542037189007, -0.01667162962257862, -0.021589068695902824, -0.019883017987012863, -0.016621451824903488, -0.01906762644648552, -0.004951938055455685, 0.050228144973516464, -0.014714688062667847, 0.011572293005883694, 0.015630437061190605, 0.0045442418195307255, 0.02280588448047638, 0.007407522294670343, 0.018942181020975113, 0.030759092420339584, -0.0005558777484111488, 0.0008444010745733976, -0.020535333082079887, -0.01570570282638073, -0.003785300301387906, 0.01046210527420044, 0.017349030822515488, 0.013911840505897999, 0.02204067073762417, 0.016044404357671738, -0.02957991138100624, 0.005378450732678175, 0.009094756096601486, -0.0014324240619316697, -0.012111706659197807, -0.00739497784525156, 0.02674485556781292, 0.01680961810052395, 0.027171367779374123, 0.009044578298926353, 0.017298853024840355, -0.0036222217604517937, 0.017537198960781097, -0.030608559027314186, 0.04894860461354256, 0.0019271475030109286, 0.008774871937930584, -0.0389631912112236, 0.006943375803530216, -0.0012889464851468801, 0.015028300695121288, -0.016897430643439293, 0.06814167648553848, 0.03346870094537735, -0.0022172387689352036, 0.022015582770109177, 0.0018314957851544023, -0.0030326307751238346, 0.011798094026744366, -0.01058127824217081, -0.012971003539860249, 0.04633935168385506, 0.02355855517089367, 0.03412101790308952, 0.001234064344316721, 0.03389521688222885, 0.003343106945976615, -0.03650446981191635, 0.016508551314473152, 0.009126117452979088, -0.00482022063806653, 0.0362284891307354, -0.015116112306714058, -0.002635911339893937, -0.020698411390185356, 0.007031187415122986, 0.045009635388851166, 0.06021355837583542, -0.001571981585584581, 0.0009118277230300009, 0.03856176510453224, -0.006968464702367783, -0.012456679716706276, 0.03163720667362213, 0.001429287949576974, -0.010976430028676987, 0.0071189990267157555, -0.001908330712467432, 0.0043403939343988895, -0.0030357670038938522, 0.0295548215508461, 0.001820519333705306, 0.005532120820134878, 0.021839959546923637, -0.03422137349843979, -0.02902795374393463, 0.00011760460620280355, -0.008730965666472912, -0.021187646314501762, -0.007984568364918232, 0.00659840228036046, 0.019544318318367004, 0.007739950902760029, 0.017487021163105965, -0.013384971767663956, -0.005968041718006134, 0.005309456028044224, -0.009521269239485264, 0.011660104617476463, 0.001005127327516675, 0.021024568006396294, -0.01722358725965023, 0.001550812739878893, 0.018001345917582512, 0.01795116625726223, 0.03254041075706482, -0.0162952933460474, -0.005572890397161245, -0.016345473006367683, 0.029278842732310295, -0.020710954442620277, 0.03979112580418587, -0.022755706682801247, 0.019594496116042137, -0.05328899994492531, -0.01910525932908058, 0.006843020208179951, 0.024750281125307083, 0.0012160316109657288, 0.0045442418195307255, 0.008480075746774673, 0.0047700428403913975, -0.013171715661883354, 0.008373447693884373, -0.035651445388793945, 0.005688926670700312, 0.0077713122591376305, 8.973476724349894e-06, 0.016144759953022003, -0.021839959546923637, -0.0038511587772518396, -0.038285788148641586, 0.02822510525584221, -0.009521269239485264, 0.013811484910547733, -0.011114419437944889, -0.0006248724530451, -0.0017468204023316503, -0.006510591134428978, 0.009483635425567627, 0.019017448648810387, 0.00668621389195323, -0.0033932849764823914, 0.04024272784590721, 0.016320383176207542, -0.022028125822544098, -0.016684172675013542, -0.03424645960330963, -0.03384503722190857, 0.017110686749219894, 0.007457700092345476, -0.0006158561445772648, 0.0347733311355114, 0.004076959565281868, -0.00523105263710022, 0.010857257060706615, -0.0020008464343845844, 0.009696891531348228, 0.02897777408361435, 0.016194937750697136, 0.008122557774186134, -0.015291734598577023, -0.01964467391371727, 0.0497012734413147, 0.0006534896092489362, -0.005836324766278267, 0.015856236219406128, 0.008348358795046806, 0.018038978800177574, -0.03316763415932655, 0.04453294351696968, 0.001706050825305283, 0.012086617760360241, -0.025691118091344833, 0.023445654660463333, 0.012557036243379116, 0.002924434607848525, -0.0015249396674335003, -0.0276731476187706, 0.02822510525584221, -0.008555343374609947, -0.01702287420630455, 0.026468876749277115, -0.02486318163573742, 0.021927770227193832, 0.007915574125945568, -0.0034058294259011745, -0.0006860268767923117, 0.004785723518580198, 0.025302238762378693, -0.04094522073864937, -0.028300372883677483, -0.0317375622689724, 0.033217813819646835, 0.02990606799721718, 0.015304279513657093, -0.008818777278065681, 0.03567653149366379, -0.001248176908120513, -0.04267635941505432, 0.013598228804767132, -0.02301914244890213, 0.0038950645830482244, 0.018590936437249184, 0.0023442518431693316, -0.016922518610954285, 0.020259354263544083, -0.0116977384313941, -0.005588571075350046, -0.023244941607117653, 0.025402594357728958, -0.0074263387359678745, 0.03326798975467682, 0.0030655600130558014, -0.02900286391377449, 0.005328272469341755, 0.01524155680090189, 0.08023456484079361, 0.015128656290471554, -0.020623143762350082, 0.013773851096630096, 0.013686040416359901, 0.010945068672299385, 0.014664510264992714, 0.012632302939891815, -0.00510247191414237, 0.0157182477414608, 0.014827588573098183, 0.03705642744898796, 0.0026766809169203043, 0.021237824112176895, 0.004230629652738571, -0.02897777408361435, 0.010788262821733952, 0.004324713256210089, 0.03306727856397629, -0.0011838863138109446, -0.0032490233425050974, -0.038837745785713196, 0.025741295889019966, -0.023671455681324005, 0.005920999683439732, -0.0235460102558136, -0.0024759690277278423, 0.04247564822435379, 0.009885058738291264, 0.004095776472240686, 0.010631456039845943, 0.034723151475191116, 0.009408368729054928, -0.022542450577020645, 0.0010341365123167634, -0.03008168935775757, 0.00851770956069231, -0.018202057108283043, 0.009885058738291264, 0.02486318163573742, -0.014890311285853386, -0.0317375622689724, -0.0014920104295015335, 0.02902795374393463, -0.003125146497040987, 0.023671455681324005, -0.019155438989400864, -0.019519228488206863, 0.024424124509096146, 0.0053596338257193565, -0.011371581815183163, -0.0055854348465800285, -0.013824029825627804, -0.004246310330927372, -0.009107301011681557, -0.01611967198550701, 0.005322000477463007, -0.01872892491519451, -0.01290828175842762, -0.013322249986231327, -0.008975583128631115, 0.01929342746734619, 0.0013838141458109021, 0.02601727470755577, -0.005582298617810011, 0.008273092098534107, 0.0019600768573582172, 0.026493964716792107, -0.0010521692456677556, 0.0036567191127687693, 0.0049958438612520695, -0.043679919093847275, 0.008135102689266205, 0.0018738333601504564, 0.006011947523802519, 0.0028350551147013903, -0.01019239891320467, 0.015341912396252155, -0.00040573588921688497, 0.03070891462266445, 0.0026014139875769615, -0.008743510581552982, 0.005554073490202427, -0.0023850214201956987, -0.036178313195705414, -0.011992533691227436, -0.01214933954179287, 0.02975553274154663, -0.02206576056778431, -0.005836324766278267, -0.007790129166096449, -0.012983548454940319, -0.0074263387359678745, -0.03838614374399185, 0.02153889089822769, -0.0096341697499156, -0.023520920425653458, -0.028701795265078545, -0.028024394065141678, -0.008793688379228115, 0.028526173904538155, -0.003995420411229134, -0.007169176824390888, 0.01925579458475113, -0.030959803611040115, 0.0023285711649805307, -0.0013375564012676477, -0.02732190117239952, -0.012632302939891815, -0.008417353965342045, -0.03236478939652443, -0.011396670714020729, 0.01706050895154476, -0.02078622207045555, -0.004760634619742632, -0.006331832148134708, -0.0057265604846179485, -0.004704184364527464, 0.012688753195106983, 0.00593981659039855, -0.019004903733730316, -0.004484655801206827, 0.05083027854561806, -0.01737412065267563, -0.004337257705628872, 0.024750281125307083, -0.01850312389433384, 0.00945854652673006, 0.019155438989400864, -0.03540055453777313, -0.01573079265654087, -0.011170869693160057, 0.007457700092345476, -0.004196132533252239, 0.017123229801654816, 0.009188840165734291, -0.022191205993294716, -0.005757921375334263, 0.015003211796283722, -0.013272072188556194, 0.03033258020877838, 0.03951514884829521, -0.00853025447577238, -0.0351998433470726, -0.013384971767663956, 0.004964482504874468, -0.005105608142912388, -0.01737412065267563, -0.014815044589340687, 0.027547702193260193, -0.022881152108311653, 0.03213898837566376, -0.0344722606241703, 0.036930982023477554, 0.016521094366908073, 0.009910148568451405, -0.020133908838033676, -0.0005978234112262726, 0.022567540407180786, -0.001394006540067494, -0.011164597235620022, 0.018854370340704918, 0.0055854348465800285, -0.011553476564586163, 0.014626876451075077, 0.03065873682498932, -0.001399494823999703, -0.005478806793689728, -0.011942355893552303, 0.015642980113625526, -0.011628743261098862, -0.023608732968568802, 0.016972696408629417, 0.01960703916847706, 0.01960703916847706, -0.016884885728359222, 0.041246287524700165, 0.021187646314501762, -0.06292317062616348, -0.000968277920037508, 0.013058815151453018, 0.011572293005883694, -0.020522788166999817, 0.016784530133008957, -0.018829280510544777, -0.04380536451935768, 0.0027331309393048286, -0.013134082779288292, 0.03402065858244896, 0.0026923613622784615, 0.03141140565276146, -0.0007173881167545915, 0.01834004558622837, 0.004697911906987429, 0.009609079919755459, -0.024436669424176216, -0.007583145052194595, 0.04390572011470795, 0.016608906909823418, -0.007256988435983658, -0.025013715028762817, -0.015304279513657093, 0.022354284301400185, -0.027547702193260193, -0.01929342746734619, -0.015028300695121288, 0.01756228692829609, -0.0021905817557126284, -0.009583991020917892, 0.001966349082067609, -0.015279190614819527, 0.03590233251452446, 0.03557617589831352, -0.020359709858894348, -0.014049829915165901, -0.008555343374609947, 0.017073052003979683, 0.02601727470755577, -9.44756975513883e-05, 0.0016049108235165477, -0.0015414044028148055, -0.00933937355875969, -0.002844463335350156, -0.01102660782635212, -0.015530080534517765, 0.02957991138100624, -0.01742429845035076, 0.002984020859003067, 0.017110686749219894, 0.00292600248940289, -0.003960923291742802, 0.013447694480419159, -0.0015610051341354847, -0.02692047879099846, 0.02544022910296917, -0.021275456994771957, -0.0006432972149923444, 0.011572293005883694, 0.006416507065296173, 0.005099335685372353, 0.008756054565310478, 0.003016950096935034, -0.012011350132524967, 0.013962019234895706, 0.021074745804071426, -0.0067802974954247475, -0.015668069943785667, -0.028350550681352615, -0.01018612738698721, -0.009678075090050697, -0.0314364954829216, -0.018227145075798035, 0.012281057424843311, -0.01532936841249466, 0.018026433885097504, -0.038085076957941055, -0.011471937410533428, -0.009107301011681557, 0.006068397779017687, -0.026117630302906036, 0.008944222703576088, 0.0007326767081394792, 0.025490406900644302, 0.023533465340733528, 0.005365906283259392, 0.0336192362010479, -0.013811484910547733, -0.03241496533155441, -0.019945740699768066, -0.015642980113625526, -0.005337681155651808, 0.018051523715257645, 0.006679941434413195, -0.07085128873586655, 0.004067551344633102, -0.012368868105113506, -0.00487039890140295, 0.010054409503936768, -0.002206262433901429, 0.015091023407876492, -0.002077681478112936, 0.019556861370801926, 0.02135072462260723, -0.0014379123458638787, 0.010907434858381748, -0.015956593677401543, -0.016194937750697136, 0.008668243885040283, 0.013786396011710167, -0.017813177779316902, 0.009558902122080326, -0.005952361039817333, 0.014626876451075077, -0.023658910766243935, 0.03299201279878616, 0.025578217580914497, 0.0032929289154708385, -0.03161211684346199, -0.0049989796243608, -0.009308012202382088, -0.007125271018594503, 0.023809444159269333, 0.01891709305346012, 0.027447346597909927, -0.036027777940034866, 0.017863355576992035, 0.014476343058049679, 0.016947608441114426, 0.015542624518275261, -0.024976082146167755, -0.015091023407876492, -0.006338104140013456, -0.010305299423635006, -0.023483287543058395, -0.01068163476884365, 0.04134664312005043, 0.010273938067257404, -0.0014951465418562293, 0.011898449622094631, 0.047393087297677994, 0.006046444643288851, 0.002485377248376608, 0.009765886701643467, -0.04282689467072487, 0.06728865206241608, 0.01226851250976324, 0.027773503214120865, -0.0014175275573506951, -0.010142221115529537, 0.020911667495965958, 0.0030216544400900602, -0.02093675546348095, -0.000602135609369725, -0.021225279197096825, -0.0005723424255847931, 0.045160166919231415, 0.012312417849898338, -0.01780063286423683, 0.006930831354111433, -0.02712118998169899, -0.028300372883677483, 0.019531773403286934, 0.027271723374724388, -0.009891331195831299, 0.010606367141008377, 0.009188840165734291, -0.01813933439552784, -0.020108819007873535, -0.02431122399866581, 0.029655177146196365, 0.03354397043585777, 0.010330388322472572, -0.005221644416451454, -0.001184670371003449, 0.01289573684334755, 0.0001710166980046779, 0.04664041846990585, -0.017675187438726425, -0.010041865520179272, 0.005036613438278437, 0.018791647627949715, 0.02676994353532791, 0.005494487006217241, -0.0022580083459615707, 0.0013618613593280315, -0.028325460851192474, 0.018214602023363113, -0.04676586389541626, 0.01965721696615219, 0.04754362255334854, 0.006256564985960722, -0.01961958408355713, 0.00851770956069231, -0.035852156579494476, 0.06076551601290703, -0.03951514884829521, 0.004951938055455685, 0.01773791015148163, -0.0012215198948979378, 0.009891331195831299, 0.0009745501447468996, -0.05308828875422478, -0.011566020548343658, -0.012425318360328674, 0.038085076957941055, -0.003172188298776746, -0.0175999216735363, -0.015567713417112827, 0.007407522294670343], [0.04795793443918228, 0.042305897921323776, -0.02315646968781948, 0.012042207643389702, -0.017472799867391586, -0.04323384538292885, 0.005678396672010422, 0.007439384702593088, 0.006479804404079914, 0.005551858339458704, -0.0547066330909729, 0.024274222552776337, -0.021638011559844017, -0.006743425503373146, -0.03321624547243118, 0.045511532574892044, 0.02446402981877327, 0.011715318076312542, -0.012959608808159828, 0.0070755877532064915, 0.010212677530944347, 0.010739919729530811, -0.026404280215501785, -0.004618640057742596, -0.004961347207427025, -0.000285204965621233, 0.03952206298708916, -0.01560636330395937, -0.019423596560955048, 0.007803181651979685, 0.033068619668483734, -0.007861178368330002, 0.04186301678419113, -0.021110771223902702, 0.06643249094486237, 0.03304753080010414, 0.0048954421654343605, -0.007286484818905592, 0.02693152241408825, -0.025075631216168404, -0.05529714375734329, 0.007312846835702658, 0.03568373993039131, -0.044288329780101776, 0.01751497946679592, 0.07988771051168442, 0.009753976948559284, 0.025813769549131393, -0.02224961295723915, 0.02199653722345829, -0.02414768375456333, 0.010107229463756084, 0.010101957246661186, -0.01384537573903799, 0.026488639414310455, 0.000946399406529963, -0.00444992259144783, -0.020425355061888695, 0.05065741389989853, 0.005620399955660105, 0.014984218403697014, -0.002855015452951193, 0.012200380675494671, -0.0124007323756814, 0.0022697770036756992, 0.004753086715936661, -0.007439384702593088, 0.03243592754006386, -0.038193412125110626, 0.03292099013924599, 0.00040037441067397594, 0.004436741583049297, -0.04441486671566963, -0.01803167723119259, -0.04036564752459526, 0.022460509091615677, 0.0071915811859071255, -0.0004161916731391102, 0.0027179326862096786, 0.0014459611847996712, -0.043782178312540054, 0.010212677530944347, 0.005024616606533527, 0.024991272017359734, -0.016344502568244934, -0.010328670963644981, -0.02478037402033806, -0.011768042109906673, -0.04994036257266998, 0.007618647068738937, -0.036295339465141296, -0.04466794431209564, -0.015416556969285011, 0.0377083495259285, -0.01959231309592724, 0.01252727024257183, 0.009089652448892593, 0.009121286682784557, -0.028956132009625435, 0.10249584913253784, 0.0010551430750638247, 0.022840123623609543, 0.010924454778432846, 0.02145875059068203, 0.020625708624720573, 0.009532535448670387, -0.03775052726268768, 0.025898128747940063, -0.034966692328453064, -0.0015118664596229792, 0.05297727882862091, 0.028618697077035904, 0.0036959664430469275, 0.08292462676763535, 0.00510897533968091, -0.019824299961328506, 0.019518500193953514, -0.009348001331090927, -0.03237266093492508, -0.03557829186320305, -0.0002532409271225333, -0.03180323913693428, 0.03433400020003319, -0.07419349998235703, -0.0008429281879216433, 0.019318146631121635, 0.0035536112263798714, 0.003738145809620619, 0.006827784236520529, -0.040576547384262085, 0.017588794231414795, -0.00925309769809246, -0.008947296999394894, -0.006347993854433298, 0.009479811415076256, 0.017398986965417862, -0.010645016096532345, 0.021933268755674362, 0.0044420138001441956, -0.020741701126098633, 0.00439456244930625, 0.03796142712235451, 0.05652034282684326, 0.004597550258040428, 0.0054991343058645725, 0.01293851900845766, 0.036295339465141296, 0.02577158994972706, 0.008652041666209698, -0.006084372755140066, -0.022587047889828682, 0.02990516647696495, 0.008625679649412632, -0.002789110178127885, -0.015922708436846733, -0.06672775000333786, -0.010492116212844849, 0.05263984203338623, 0.031507983803749084, 0.007713550701737404, -0.018527284264564514, -0.011799676343798637, -0.025307616218924522, -0.022207433357834816, 0.007898085750639439, -0.004587005358189344, -0.007734640501439571, 0.013666112907230854, -0.04867498204112053, 0.034228552132844925, -0.032309390604496, 0.006785604637116194, -0.022523779422044754, -0.02412659488618374, -0.04977164790034294, -0.0004468375991564244, 0.02248159982264042, -0.009970146231353283, 0.0030000070109963417, 0.0163023229688406, 0.03262573480606079, 0.05609855055809021, -0.04635511711239815, -0.04800011217594147, 0.0003581950441002846, 0.023915698751807213, -0.004784721415489912, 0.003569428576156497, -0.009585259482264519, -0.02248159982264042, -0.00910019688308239, -0.022376151755452156, -0.001045257318764925, 0.045848965644836426, -0.04013366252183914, -0.002597985090687871, -0.03534630313515663, -0.003830413334071636, 0.06942722946405411, -0.01280143577605486, 0.023873519152402878, -0.007745185401290655, -0.034713614732027054, -0.01593325287103653, -0.02604575641453266, -0.008456962183117867, 0.020572982728481293, -0.012759257107973099, 0.0705660730600357, -0.002839198336005211, -0.02239724062383175, -0.030854202806949615, -0.03047458827495575, 0.043444741517305374, -0.05495970696210861, -0.022460509091615677, 0.07798963785171509, 0.03087529167532921, 0.01893853396177292, 0.0015988614177331328, -0.000990555970929563, -0.02075224556028843, 0.017820781096816063, -0.02982080914080143, -0.052597664296627045, -0.02743767388164997, 0.007529016118496656, -0.003200358944013715, -0.002460902091115713, -0.06048520281910896, -0.02095259726047516, 0.01912834122776985, -0.010017598047852516, -0.045933324843645096, 0.027500944212079048, 0.0015777717344462872, -0.01376101654022932, -0.025813769549131393, -0.0004026810929644853, -0.02233397215604782, 0.028534337878227234, 0.03384893760085106, -0.004120396450161934, -0.03152907267212868, 0.013697748072445393, -0.019993016496300697, -0.001681902096606791, -0.00897365901619196, 0.03667495399713516, -0.019961383193731308, -0.01632341369986534, -0.013866465538740158, 0.024274222552776337, -0.06584198027849197, -0.0034666163846850395, 0.0010353715624660254, 0.04317057505249977, 0.007940264418721199, -0.01281198114156723, -0.0444992259144783, 0.013993003405630589, -0.0405343659222126, 0.045089736580848694, 0.009674890898168087, -0.0279227364808321, -0.03433400020003319, 0.028681965544819832, -0.022966662421822548, -0.031761057674884796, 0.03165560960769653, -0.050530873239040375, 0.027817288413643837, -0.0006244522519409657, 0.031191637739539146, -0.04660819470882416, -0.0029973709024488926, 0.027058061212301254, -0.048970237374305725, -0.03831994906067848, 0.04283314198255539, -0.017441166564822197, -0.04017584025859833, -0.0007770229130983353, -0.02307211048901081, -0.011356793344020844, 0.0249490924179554, 0.027332225814461708, -0.02851324900984764, -0.010054505430161953, -0.015437645837664604, 0.06162404641509056, -0.01709318533539772, -0.05133228376507759, -0.001335899461992085, -0.022376151755452156, -0.00235940795391798, -0.04977164790034294, 0.020172279328107834, -0.008340968750417233, -0.027479853481054306, -0.01783132553100586, 0.025813769549131393, 0.027036970481276512, -0.023936787620186806, -0.021975446492433548, 0.013792650774121284, 0.02338845655322075, -0.026594087481498718, -0.047156527638435364, -0.007845360785722733, -0.05462227389216423, 0.01424607913941145, -0.014699507504701614, -0.01445697620511055, 0.01576453633606434, 0.021332211792469025, -0.05487534776329994, 0.05179625749588013, -0.03762399032711983, -0.015500915236771107, 0.028766324743628502, 0.03268900513648987, 0.01803167723119259, -0.06862582266330719, 0.012780346907675266, 0.016745205968618393, 0.011398972012102604, 0.04833754897117615, -0.007544833235442638, -0.015416556969285011, -0.0215431097894907, 0.030200423672795296, 0.01590161956846714, -0.04555371031165123, -0.07014428079128265, -0.028302351012825966, 0.037940334528684616, 0.008124799467623234, -0.021680191159248352, -0.021785641089081764, 0.007871723733842373, 0.04496319964528084, 0.020256638526916504, 0.01680847629904747, 0.01227419450879097, 0.025413066148757935, 0.07385606318712234, 0.03450271859765053, -0.007618647068738937, -0.0029367380775511265, -0.0038145959842950106, 0.032499197870492935, -0.0340176559984684, 0.005973652005195618, -0.07069260627031326, -0.010270674712955952, 0.021026412025094032, -0.033975474536418915, -0.003656423417851329, 0.015458735637366772, 0.019581768661737442, -0.024000056087970734, -0.0034877059515565634, 0.04854844510555267, -0.049223314970731735, 0.03039022907614708, -0.023852428421378136, -0.033237338066101074, 0.020372631028294563, -0.01746225543320179, 0.05137446150183678, -0.02080496959388256, 0.01995083875954151, -0.0007822953630238771, 0.013697748072445393, -0.006068555638194084, -0.04226372018456459, 0.024527298286557198, -0.04093506932258606, -0.02397896721959114, 0.010966634377837181, 0.010407757014036179, 0.027247866615653038, 0.01887526363134384, 0.0012139747850596905, 0.037940334528684616, -0.023409545421600342, 0.018010586500167847, 0.0038172323256731033, 0.031086189672350883, -0.01288579497486353, 0.007333936635404825, 0.019265422597527504, 0.03243592754006386, -0.0047794487327337265, 0.03254137560725212, 0.04243243858218193, 0.010017598047852516, 0.02330409735441208, -0.06482967734336853, 0.0003336453519295901, -0.023008842021226883, -0.02313537895679474, -0.0027416585944592953, 0.015585274435579777, 0.031086189672350883, 0.05107920616865158, -0.018189849331974983, 0.02710023894906044, -0.019687216728925705, 0.028597606346011162, -0.06390172988176346, 0.005625672172755003, 0.008172251284122467, 0.01499476283788681, 0.009337455965578556, -0.007987716235220432, 0.01437261700630188, 0.023177558556199074, -0.020731156691908836, 0.04892805963754654, -0.019993016496300697, -0.052428945899009705, -0.012442911975085735, -0.007523743435740471, 0.026741715148091316, -0.013866465538740158, -0.008525503799319267, -0.008588772267103195, -0.035704828798770905, -0.006258362904191017, 0.029926257207989693, 0.06272070854902267, -0.01486822497099638, -0.017072096467018127, -0.039922766387462616, -0.027079150080680847, -0.007312846835702658, 0.009759250096976757, -0.016481585800647736, -0.0640704482793808, -0.02579267881810665, 0.015374377369880676, -0.010555385611951351, -0.05394740402698517, -0.023493904620409012, -0.012506180442869663, -0.02998952567577362, -0.01553254947066307, -0.01280143577605486, -0.03165560960769653, 0.03467143326997757, -0.04209500178694725, 0.03532521426677704, 0.005926200188696384, 0.024843644350767136, -0.0037407821509987116, -0.1250196248292923, 0.03549393266439438, 0.010565930046141148, 0.0586714930832386, 0.03387002646923065, 0.08149052411317825, -0.008783851750195026, 0.011884035542607307, 0.03688585013151169, 0.027732931077480316, -0.014963128603994846, -0.017536070197820663, -0.054327018558979034, -0.0058365692384541035, -0.014035182073712349, 0.02998952567577362, 0.011114262044429779, 0.03511431813240051, 0.007871723733842373, 0.015627453103661537, -0.01363447867333889, -0.05027779936790466, 0.02313537895679474, 0.029631001874804497, 0.05479099228978157, -0.04977164790034294, -0.021954357624053955, 0.05816533789038658, 0.04260115325450897, 0.05255548283457756, 0.03481906279921532, -0.04317057505249977, -0.05166971683502197, -0.01763097383081913, -0.024527298286557198, 0.022144164890050888, -0.006405990570783615, -0.03081202320754528, -0.01972939632833004, -0.04466794431209564, -0.006284724920988083, 0.05036215856671333, -0.020963143557310104, 0.020984232425689697, -0.03112836927175522, 0.001026144833303988, -0.004668727982789278, 0.03747636452317238, -0.014340982772409916, 0.008625679649412632, 0.036042265594005585, 0.026551907882094383, -0.0032952625770121813, -0.021216219291090965, 0.00434447405859828, 0.04686127230525017, -0.04892805963754654, 0.004210027400404215, -0.06006341055035591, -0.02330409735441208, 0.04433050751686096, -0.025750501081347466, -0.01239018701016903, 0.004146758466959, 0.02701588161289692, -0.04211609065532684, -0.0026348920073360205, -0.028365621343255043, 0.005947289988398552, 0.00972234271466732, -0.08975768089294434, 0.008082619868218899, -0.009448177181184292, 0.0202671829611063, -0.012158201076090336, -0.07385606318712234, -0.010001781396567822, 0.025328706949949265, 0.0019020255422219634, -0.024822553619742393, -0.010650288313627243, 0.02497018128633499, -0.028871772810816765, 0.006933232769370079, -0.01350794080644846, -0.02151147462427616, 0.0018756635254248977, -0.003052731277421117, 0.0032820815686136484, 0.049054596573114395, -0.03589463606476784, 0.018379656597971916, 0.01048684399574995, 0.0056889415718615055, 0.0014881405513733625, 0.0026019392535090446, -0.014425341971218586, 0.017156455665826797, 0.00183216598816216, 0.02080496959388256, 0.01512130070477724, -0.009896332398056984, 0.03098074160516262, -0.027121329680085182, -0.003854139242321253, 0.0007124357507564127, -0.02486473321914673, 0.0054833171889185905, 0.006263635121285915, 0.00939545314759016, 0.00729175703600049, 0.033975474536418915, -0.01791568286716938, -0.04028129205107689, -0.001656858017668128, 0.032182853668928146, 0.01675575226545334, 0.005409502889961004, 0.009342728182673454, 0.001001100754365325, -0.001198816578835249, -0.001623905380256474, -0.015258383937180042, -0.01157823484390974, 0.026952611282467842, -0.015026397071778774, -0.020456990227103233, -0.010576474480330944, 0.020404266193509102, 0.009632711298763752, -0.012769801542162895, -0.01734626293182373, 0.015511460602283478, 0.011462241411209106, -0.020340997725725174, -0.043697819113731384, -0.0002693877322599292, -0.014488610439002514, 0.027332225814461708, -0.008599317632615566, 0.04407743364572525, -0.02950446307659149, -0.01322322990745306, -0.033574771136045456, 0.009448177181184292, 0.00973816029727459, 0.001547455321997404, -0.017525523900985718, -0.01515293586999178, 0.04863280430436134, -0.008467506617307663, -0.005132701247930527, 0.026952611282467842, 0.016281234100461006, -0.004731996916234493, 0.021616922691464424, -0.030010616406798363, -0.004658183082938194, 0.005905110388994217, -0.042221542447805405, 0.013212684541940689, -0.01506857667118311, -0.005380504764616489, -0.040977250784635544, -0.022207433357834816, -0.0015131846303120255, -0.020193370059132576, -0.03416528180241585, 0.0009562852210365236, 0.006896325387060642, -0.01856946386396885, -0.008177523501217365, -0.02404223568737507, 0.013655568473041058, -0.024189863353967667, -0.012959608808159828, 0.000693982292432338, -0.004210027400404215, -0.005029888823628426, -0.04112487658858299, -0.005478044506162405, -0.019402505829930305, -0.006042193621397018, 0.009701252914965153, -0.05116356536746025, 0.07394041866064072, -0.0547066330909729, 0.04795793443918228, 0.01910725049674511, -0.0065325284376740456, 0.009717070497572422, -0.006316359154880047, -0.013581754639744759, 0.03671713545918465, 0.02307211048901081, -0.01186294574290514, 0.009232007898390293, 0.007887540385127068, -0.020140646025538445, -0.013254864141345024, 0.053188174962997437, 0.013898099772632122, 0.021268943324685097, 0.007571195252239704, 0.01890689879655838, 0.030453499406576157, -0.0205518938601017, -0.00022869122039992362, -0.03395438566803932, 0.046819090843200684, -0.046987809240818024, -0.013170505873858929, -0.009210918098688126, 0.03049567900598049, -0.018326932564377785, 0.031507983803749084, -0.027311136946082115, -0.019855935126543045, -0.008752217516303062, -0.027964916080236435, 0.029862988740205765, 0.017504435032606125, -0.004210027400404215, -0.01890689879655838, -0.03583136573433876, 0.01655539870262146, 0.015384921804070473, 0.0021379664540290833, -0.01576453633606434, -0.025265436619520187, -0.03222503140568733, -0.004194210283458233, 0.027543123811483383, -0.0034877059515565634, -0.008087893016636372, -0.038931552320718765, 0.005942017771303654, 0.016428861767053604, 0.029356835409998894, 0.04686127230525017, 0.01165204867720604, -0.001141479006037116, 0.01856946386396885, -0.016587033867836, -0.032182853668928146, -0.012210925109684467, -0.06508275121450424, -0.025307616218924522, 0.02752203308045864, -0.035051047801971436, 0.01840074732899666, 0.0202671829611063, -0.013181050308048725, -0.028534337878227234, 0.00986469816416502, -0.029103759676218033, 0.0014630965888500214, -0.03294208273291588, -0.024442939087748528, 0.008330424316227436, -0.0008521549170836806, -0.004312839824706316, 0.01692446880042553, -0.02142711542546749, -0.016513219103217125, -0.016597578302025795, -0.003848866792395711, 0.031845416873693466, -0.003579973243176937, 0.025159988552331924, -0.021869998425245285, -0.0067803324200212955, 0.022439420223236084, 0.03197195753455162, -0.026087934151291847, -0.0003931248211301863, -0.009448177181184292, 0.009711798280477524, -0.03498778119683266, -0.028555428609251976, 0.00014532108616549522, 0.01885417476296425, -0.012959608808159828, -0.020024651661515236, -0.040239110589027405, -0.013623933307826519, -0.003991222009062767, -0.005657306872308254, 0.022629227489233017, 0.008230247534811497, 0.036126624792814255, -0.032984260469675064, 0.02105804532766342, -0.024084415286779404, 0.004792629741132259, -0.03509322926402092, 0.01632341369986534, -0.004576460923999548, 0.006295269820839167, -0.008783851750195026, 0.02077333629131317, -0.010892820544540882, -0.01961340382695198, 0.003126545110717416, 0.04266442358493805, -0.0085729556158185, 0.02602466568350792, 0.009300549514591694, -0.023093201220035553, -0.03524085506796837, -0.023789159953594208, -0.004207391291856766, -0.06040084734559059, -0.00027383631095290184, -0.008836575783789158, -0.015880528837442398, 0.004281205125153065, 0.012843615375459194, 0.0027258412446826696, -0.0666012093424797, 0.003777689067646861, 0.004637093748897314, -0.0006148960092104971, 0.03049567900598049, -0.012548360042273998, -0.011757496744394302, 0.0013227184535935521, 0.006806694436818361, -0.04236916825175285, -0.0015672269510105252, 0.032351572066545486, 0.0205518938601017, 0.017335716634988785, -0.025181079283356667, -0.014804955571889877, -0.003152907360345125, -0.014794411137700081, 0.015026397071778774, 0.02956773154437542, -0.0034112557768821716, -0.03981731832027435, 0.002141920616850257, 0.004824264440685511, -0.025497423484921455, 0.012179290875792503, -0.021353302523493767, 0.003922680392861366, 0.013075602240860462, -0.005404230672866106, -0.006938504986464977, -0.023114290088415146, 0.007460474502295256, -0.01458351407200098, 0.014773321337997913, 0.007418295368552208, -0.008641496300697327, 0.03699129819869995, -0.015448191203176975, 0.012949064373970032, -0.019718851894140244, 0.0004985732375644147, -0.014762776903808117, -0.012232014909386635, 0.06942722946405411, -0.02397896721959114, 0.03905808925628662, -0.001563272555358708, 0.05065741389989853, 0.016766296699643135, -0.027943827211856842, 0.008087893016636372, 0.009094924665987492, -0.01924433372914791, -0.012126566842198372, -0.0015790897887200117, -0.039332255721092224, -0.02159583382308483, 0.010043960064649582, 0.01384537573903799, -0.019655581563711166, 0.013929734006524086, -0.0015672269510105252, 0.030516767874360085, 0.046819090843200684, -0.0017398986965417862, -0.04926549270749092, 0.03197195753455162, -0.001261426485143602, 0.01732517220079899, 0.01478386577218771, 0.008567682467401028, -0.02321973815560341, 0.07263286411762238, -0.012590539641678333, -0.007254850119352341, -0.011188075877726078, 0.00883130356669426, 0.01650267466902733, -0.05382086709141731, 0.007413022685796022, 0.014499155804514885, -0.027479853481054306, -0.005947289988398552, 0.009216190315783024, -0.023409545421600342, 0.0018176668090745807, -0.030516767874360085, -0.0006537801236845553, -0.053019456565380096, 0.018442925065755844, -0.017852414399385452, -0.004223208408802748, -0.005905110388994217, 0.05652034282684326, 0.01281198114156723, 0.008351513184607029, -0.038847193121910095, -0.015553639270365238, 0.004204755183309317, 0.012147655710577965, 0.07225324958562851, 0.03829886019229889, -0.0018782996339723468, -0.02021445892751217, -0.0002598314604256302, 0.02488582395017147, 0.004270660225301981, -0.01048684399574995, -0.04382435604929924, -0.016344502568244934, 0.0042021190747618675, 0.0027363861445337534, 0.022608138620853424, 0.014804955571889877, 0.01976103149354458, -0.00048736933968029916, 0.018885809928178787, 0.04660819470882416, -0.007618647068738937, -0.0014973672805354, -0.024000056087970734, 0.013402491807937622, -0.0007295711548067629, 0.004162575583904982, 0.009601077064871788, -0.013275953941047192, 0.025413066148757935, -0.0016502675134688616, 0.018179304897785187, -0.01553254947066307, -0.0029841898940503597, -0.0507417730987072, 0.01956067979335785, 0.040260199457407, 0.009532535448670387, -0.027142418548464775, 0.0007144129485823214, 0.02678389474749565, 0.02684716321527958, -0.029441194608807564, 0.018232028931379318, 0.033996567130088806, 0.021448206156492233, 0.0023370003327727318, -0.012284738942980766, 0.007818998768925667, -0.004776812624186277, -0.01547982543706894, 0.009553625248372555, 0.009964874014258385, -0.015796171501278877, 0.0023659984581172466, -0.021479839459061623, 0.028365621343255043, 0.0249490924179554, -0.024189863353967667, 0.0038936822675168514, 0.014688963070511818, 0.0023857702035456896, -0.004708271007984877, -0.0056625790894031525, 0.03152907267212868, 0.0004570529272314161, 0.035789187997579575, 0.036379698663949966, -0.04241134971380234, 0.001712218509055674, -0.0011012767208740115, -0.029124848544597626, -0.011472786776721478, -0.02224961295723915, 0.0016713571967557073, 0.008783851750195026, -0.0041019427590072155, -0.00034138921182602644, -0.012769801542162895, 0.008029895834624767, 0.008752217516303062, 0.01865382306277752, 0.016544854268431664, 0.01342358160763979, 0.015859439969062805, -0.006659066770225763, 0.009727614931762218, 0.0012330872705206275, 0.01041830237954855, -0.012643263675272465, 0.030580036342144012, -0.009232007898390293, 0.013908644206821918, -0.008282972499728203, 0.02661517634987831, -0.010750465095043182, 0.0006738812080584466, -0.028871772810816765, 0.04605986177921295, 0.04572242870926857, -0.012949064373970032, 0.021891089156270027, -0.025244347751140594, -0.030854202806949615, 0.011704772710800171, 0.008425327017903328, 0.01280143577605486, 0.007286484818905592, 0.011736406944692135, 0.045427173376083374, 0.002839198336005211, -0.00513006467372179, -0.011947304010391235, -0.03526194766163826, 0.0014459611847996712, -0.03650623559951782, -0.022038716822862625, 0.033406052738428116, 0.006553618237376213, 0.0030079158022999763, 0.01506857667118311, 0.025476334616541862, 0.03277336433529854, 0.068583644926548, 0.013518485240638256, 0.025919217616319656, 0.012021117843687534, 0.017356807366013527, 0.00554131343960762, 0.05335689336061478, 0.06816184520721436, -0.0354306623339653, 0.006121279671788216, -0.01007559522986412, -0.020646797493100166, 0.017251359298825264, 0.012632718309760094, 0.004312839824706316, 0.014488610439002514, -0.0004092716262675822, -0.009964874014258385, -0.05833405628800392, 0.01527947373688221, 0.02239724062383175, -0.00671706348657608, -0.045174095779657364, -0.012210925109684467, 0.00568366888910532, 0.04112487658858299, 0.054327018558979034, 0.0067381528206169605, 0.02281903475522995, 0.011209165677428246, -0.005319871939718723, 0.02604575641453266, 0.02033045142889023, 0.015384921804070473, -0.01879090629518032, -0.003371712751686573, 0.020077375695109367, -0.0030632761772722006, 0.0569843165576458, -0.00988051574677229, -0.0028681966941803694, 0.006247818004339933, 0.04842190816998482, -0.017694242298603058, 0.0033558954019099474, -0.020625708624720573, 0.017725877463817596, -0.04614422097802162, -0.04298076778650284, -0.02330409735441208, 0.006195093505084515, -0.005372595973312855, -0.018748726695775986, -0.013191595673561096, 0.05504406616091728, -0.03766616806387901, 0.02151147462427616, -0.013581754639744759, -0.01549037080258131, 0.009274187497794628, -0.014140631072223186, -0.023852428421378136, 0.0019033437129110098, 0.01590161956846714, -0.019170518964529037, 0.02043590135872364, 0.0083620585501194, 0.013086146675050259, -0.010502660647034645, 0.025434155017137527, 0.006516711320728064, -0.007982444018125534, 0.026341011747717857, 0.005530769005417824, 0.007676643785089254, 0.012242559343576431, 0.014604603871703148, 0.009648528881371021, -0.010597564280033112, -0.033068619668483734, -0.007138857152312994, -0.013613388873636723, 0.011198620311915874, -0.023620441555976868, 0.013497395440936089, 0.0009536489960737526, 0.006585252936929464, -0.015089666470885277, 0.0001926081022247672, 0.012210925109684467, -0.023283006623387337, 0.022355061024427414, 0.01895962283015251, 0.017725877463817596, -0.01239018701016903, -0.019117794930934906, 0.05706867575645447, 0.012411276809871197, -0.03370130807161331, 0.008325151167809963, 0.01593325287103653, 0.014351528137922287, -0.004753086715936661, 0.029525553807616234, 0.031339265406131744, -0.020456990227103233, -0.02208089642226696, 0.04580678790807724, 0.002487264107912779, -0.03722328692674637, -0.031001830473542213, 0.02579267881810665, 0.02151147462427616, 0.007813726551830769, 0.00827769935131073, 0.017852414399385452, -0.05263984203338623, 0.008683675900101662, 0.006891053169965744, -0.019486865028738976, 0.0011678410228341818, 0.0031898142769932747, -0.0018229392590001225, -0.0425167977809906, -0.015321653336286545, -0.012780346907675266, 0.049476392567157745, 0.023008842021226883, 0.006474532186985016, -0.005673123989254236, 0.017251359298825264, -0.011694228276610374, -0.05036215856671333, -0.002326455432921648, -0.03597899526357651, -0.008657313883304596, 0.007623919751495123, 0.015268929302692413, 0.0034666163846850395, 0.010592292062938213, -0.008325151167809963, -0.03920571506023407, 0.012949064373970032, 0.044288329780101776, -0.02579267881810665, 0.009337455965578556, 0.009379635564982891, -0.05677342042326927, -0.015015852637588978, -0.0019455230794847012, 0.04909677803516388, 0.04475230351090431, -0.042875319719314575, 0.014878769405186176, 0.01660812273621559, -0.01786295883357525, 0.0011612505186349154, -0.003316352376714349, 0.0081511614844203, 0.022755766287446022, -0.004312839824706316, 0.04407743364572525, 0.014952583238482475, 0.024189863353967667, 0.026383191347122192, -0.012326918542385101, -0.014267168939113617, -0.013265409506857395, 0.024696016684174538, 0.0032689005602151155, -0.019254878163337708, -0.0408296212553978, 0.03840430825948715, -0.03540957346558571, -0.0073972055688500404, -0.011873490177094936, 0.020509714260697365, 0.019318146631121635, -0.012548360042273998, -0.013581754639744759, 0.017230268567800522, -0.0019362963503226638, -0.016945557668805122, -0.008857665583491325, 0.0198453888297081, -0.019170518964529037, 0.0007967944839037955, 0.000674869806971401, 0.016660848632454872, -0.000894334283657372, -0.004072944633662701, -0.027732931077480316, 0.02389460802078247, 0.043276023119688034, 0.039585329592227936, 0.022059805691242218, 0.027416585013270378, 0.007655553985387087, 0.03245702013373375, -0.0243796706199646, 0.00897365901619196, -0.008483324199914932, -0.02182781882584095, -0.0025900762993842363, 0.012833070941269398, 0.0035272492095828056, -0.014140631072223186, -0.056646883487701416, -0.005978924687951803, -0.035472843796014786, -0.01927596889436245, 0.03041131980717182, -0.03507214039564133, -0.0009806700982153416, 0.001262085628695786, 0.012337462976574898, 0.008989476598799229, -0.024506209418177605, 0.007761002518236637, 0.004249570891261101, 0.017441166564822197, -0.01882253959774971, -0.014847135171294212, -0.024928003549575806, 0.02826017141342163, 0.028597606346011162, -0.017989497631788254, 0.018601099029183388, 0.012695987708866596, -0.008145889267325401, 0.0005199924344196916, -0.02497018128633499, -0.012854160740971565, 0.029631001874804497, -0.02769075147807598, -0.02315646968781948, 0.0070175910368561745, -0.011019358411431313, 0.0029894623439759016, -0.021638011559844017, 0.012864705175161362, -0.010913909412920475, 0.021975446492433548, -0.016513219103217125, 0.017525523900985718, 0.008815486915409565, -0.036126624792814255, -0.017652062699198723, -0.004320748150348663, -0.011420061811804771, -0.013297043740749359, -0.008667858317494392, -0.042137183248996735, -0.01791568286716938, -0.014952583238482475, 0.004007039126008749, -0.03412310406565666, -0.015089666470885277, 0.013655568473041058, -0.014530790038406849, -0.021406026557087898, -0.009369091130793095, 0.016291778534650803, -0.010871730744838715, 0.00609491765499115, -0.0009826472960412502, 0.02315646968781948, 0.020868239924311638, 0.01915997453033924, -0.010571202263236046, -0.018179304897785187, -0.0050852494314312935, 0.02667844668030739, 0.034291822463274, -0.01288579497486353, 0.015363832004368305, 0.004191574174910784, -0.010518478229641914, 0.012579994276165962, -0.019486865028738976, -0.001618633046746254, -0.012200380675494671, 0.009116014465689659, 0.006564163137227297, 0.012759257107973099, 0.014699507504701614, -0.03138144314289093, -0.007033408619463444, -0.022608138620853424, -0.004676636774092913, 0.015595818869769573, 0.007349753752350807, 0.016291778534650803, -0.02149038389325142, -0.005636217072606087, 0.04142013192176819, -0.015838351100683212, 0.0027311136946082115, -0.0006966185173951089, 0.032899901270866394, -0.023325186222791672, 0.00834624096751213, -0.007244305219501257, 0.010623926296830177, 0.008715310133993626, 0.0008646768983453512, -0.021437659859657288, 0.02224961295723915, 0.04076635465025902, 0.014984218403697014, -0.021532563492655754, 0.016449950635433197, -0.002920920727774501, -0.005462227389216423, -0.010397212579846382, 0.01355011947453022, -0.008536048233509064, -0.031254906207323074, -0.014478066004812717, 0.007634464651346207, -0.03796142712235451, 0.0018176668090745807, -0.015163480304181576, -0.009611622430384159, -0.0006854146486148238, 0.026235563680529594, 0.03155016154050827, 0.007028135936707258, -0.05757482722401619, -0.024442939087748528, 0.019634492695331573, 0.022797944024205208, 0.008456962183117867, 0.006827784236520529, -0.033574771136045456, -0.01561690866947174, 0.006105462554842234, -0.028977220878005028, 0.019370872527360916, -0.003192450385540724, 0.046102043241262436, -0.030116064473986626, -0.015775080770254135, -0.011398972012102604, -0.015553639270365238, -0.01376101654022932, -0.0033506229519844055, 0.016144150868058205, 0.033891115337610245, -0.022144164890050888, -0.006242545321583748, 0.006437625270336866, -0.0027469308115541935, -0.04926549270749092, -0.016987737268209457, -0.03507214039564133, 0.01095608901232481, -0.01156768947839737, 0.010761009529232979, -0.021785641089081764, 0.023283006623387337, 0.0028233809862285852, -0.017704786732792854, 0.004502646625041962, -0.01280143577605486, -0.022038716822862625, 0.014298803173005581, 0.012537815608084202, -0.012569449841976166, -0.00889984518289566, -0.011282979510724545, -0.008140617050230503, 0.01709318533539772, 0.0239578764885664, -0.009627439081668854, 0.012991243042051792, 0.002781201619654894, 0.036042265594005585, -0.001078209956176579, 0.011314613744616508, -0.019181065261363983, -0.006168731488287449, 0.023768071085214615, -0.013465761207044125, 0.008304061368107796, -0.0087891248986125, -0.01603870280086994, 0.024084415286779404, -0.02281903475522995, -0.007713550701737404, 0.014288258738815784, -0.014889314770698547, -0.02281903475522995, -0.016713572666049004, 0.017652062699198723, 0.0031397261191159487, -0.023430636152625084, -0.04892805963754654, -0.005048342514783144, -0.007998261600732803, -0.029124848544597626, 0.014942038804292679, 0.021933268755674362, -0.007439384702593088, 0.02545524388551712, -0.007065042853355408, -0.0029235570691525936, -0.0009800110710784793, -0.009000021032989025, -0.03239374980330467, -0.02577158994972706, 0.013645023107528687, 0.03494559973478317, 0.027627481147646904, 0.013297043740749359, 0.03831994906067848, -0.041884105652570724, -0.02397896721959114, -0.022038716822862625, -0.02231288142502308, 0.002762748161330819, 0.007370843552052975, 0.036464057862758636, -0.0377083495259285, -0.044541407376527786, 0.01800004206597805, -0.015047486871480942, -0.010840095579624176, 0.03351150453090668, -0.020699521526694298, 0.011061538010835648, -0.00854659266769886, -0.02063625305891037, -0.020456990227103233, 0.025434155017137527, -0.0029367380775511265, 0.0034692524932324886, 0.012326918542385101, 0.020056286826729774, -0.03559938073158264, 0.00712831225246191, -0.00623727310448885, 0.010086139664053917, -0.01564854383468628, 0.05183843523263931, -0.010513206012547016, 0.03334278613328934, -0.00646925950422883, -0.021891089156270027, 0.008351513184607029, -0.024400761350989342, 0.0010907319374382496, -0.0015856804093346, -0.0028629242442548275, -0.02080496959388256, 0.029884077608585358, 0.016587033867836, -0.0004059763450641185, -0.03566265106201172, -0.00019853957928717136, 0.006759242620319128, -0.007096677552908659, -0.004476284608244896, -0.032667916268110275, -0.014615148305892944, 0.013940279372036457, -0.004009675700217485, -0.017936773598194122, 0.012875250540673733, -0.007497381418943405, 0.014836590737104416, -0.0017240813467651606, 0.0021524655167013407, -0.028534337878227234, 0.03469252586364746, -0.020340997725725174, 0.006300542037934065, -0.00473463349044323, -0.0011170940706506371, 0.012000028043985367, -0.0035747007932513952, -0.0021801458206027746, 0.012495636008679867, -0.012168745510280132, -0.016007067635655403, -0.01384537573903799, 0.0005407526041381061, -0.015353287570178509, 0.00014581537107005715, -0.026720626279711723, -0.04074526205658913, -0.01334976777434349, -0.021026412025094032, -0.00459227804094553, 0.026425369083881378, 0.04028129205107689, 0.040492188185453415, -0.010049233213067055, -0.019318146631121635, 0.02159583382308483, 0.02998952567577362, 0.007761002518236637, -0.02899831160902977, -0.010645016096532345, 0.0201300997287035, 0.001302946824580431, 0.05027779936790466, -0.010307581163942814, 0.0009688072022981942, -0.002699479227885604, 0.009769794531166553, 0.04424615204334259, 0.01623905450105667, -0.006564163137227297, 0.02882959321141243, -0.03682258352637291, 0.01865382306277752, -0.010059777647256851, -0.010966634377837181, 0.04475230351090431, -0.03610553219914436, -0.02224961295723915, 0.023536084219813347, -0.0007065043319016695, 0.05652034282684326, -0.025834858417510986, -0.03408092260360718, -0.0036274250596761703, -0.0008079984108917415, 0.04981382563710213, -0.008014078252017498, -0.05749046802520752, 0.0047794487327337265, 0.0024978090077638626, 0.03127599507570267, 0.0011177530977874994, -0.03690694272518158, 0.01910725049674511, 0.006785604637116194], [0.05090101808309555, 0.022407513111829758, 0.019076354801654816, 0.042325302958488464, -0.0679602324962616, -0.04414648935198784, -0.028862351551651955, -0.005310833919793367, 0.028424344956874847, 0.05804744362831116, -0.0019292476354166865, 0.01304799597710371, -0.06404122710227966, 0.00790717825293541, -0.0073020365089178085, 0.009699548594653606, 0.024274805560708046, 0.023052996024489403, -0.006097517441958189, -0.0003951427643187344, -0.005541364196687937, -0.007930231280624866, -0.04947173222899437, 0.02844739705324173, -0.0018283907556906343, -0.01995236799120903, 0.029138987883925438, -0.033011890947818756, 0.021427759900689125, -0.014753918163478374, 0.052376408129930496, -0.021439285948872566, 0.020113740116357803, -0.04110349342226982, 0.043270476162433624, 0.027801914140582085, 0.004685521591454744, -0.005936146713793278, 0.004786378238350153, -0.02538134902715683, -0.05394401028752327, 0.021623710170388222, 0.01511123962700367, -0.054128434509038925, 0.004941985942423344, 0.06344185024499893, 0.0007672325591556728, 0.01545703411102295, 0.014938341453671455, 0.03812965750694275, -0.008858113549649715, 0.012679148465394974, 0.007595962379127741, 0.001684309565462172, 0.05385179817676544, 0.01595267280936241, 0.021635238081216812, 0.042440567165613174, 0.03457949310541153, -0.022753307595849037, 0.0025833763647824526, -0.052145879715681076, 0.0010128910653293133, -0.02409038133919239, 0.00017046609718818218, -0.004786378238350153, -0.01239098608493805, 0.03882124647498131, -0.000735894893296063, 0.04878013953566551, -0.017508750781416893, 0.02326047420501709, -0.001190110924653709, -0.03612404689192772, -0.027894126251339912, -0.007642068434506655, 0.015641458332538605, -0.028147708624601364, 0.012517777271568775, -0.020609378814697266, -0.01386637706309557, -0.012218087911605835, -0.025934621691703796, 0.01086372509598732, -0.003766283392906189, -0.001404071575962007, -0.03153650090098381, -0.01769317500293255, -0.02123180963099003, -0.04555272310972214, -0.04677452892065048, -0.009930077940225601, 0.017635542899370193, 0.03852155804634094, -0.008886930532753468, -0.026003779843449593, 0.011053911410272121, 0.01758943684399128, -0.023110629990696907, 0.060030002146959305, 0.012563883326947689, -0.017312800511717796, -0.03315020725131035, 0.022280720993876457, 0.024113435298204422, 0.012782886624336243, -0.05698700621724129, -0.010062633082270622, -0.0036135572008788586, -0.011849240399897099, 0.06311910599470139, 0.008875403553247452, -4.4147389417048544e-05, 0.042440567165613174, 0.019283831119537354, -0.04758138582110405, 0.010373848490417004, 0.00495639443397522, -0.004259041044861078, -0.008581478148698807, -0.03953588753938675, -0.03545551002025604, 0.035478562116622925, -0.09442507475614548, 0.013854851014912128, 0.028424344956874847, -0.04548356309533119, 0.0275252778083086, -0.036423735320568085, 0.004198526963591576, 0.05085491016507149, 0.0008551221108064055, 0.0540362223982811, -0.038913458585739136, -0.002483960473909974, 0.004048682749271393, -0.0027908533811569214, 0.039720311760902405, 0.03531718999147415, -0.06528608500957489, 0.0242056455463171, 0.02124333567917347, 0.048365186899900436, 0.015964200720191002, -0.03220503777265549, 0.010039580054581165, 6.542188202729449e-05, 0.04354710876941681, 0.02750222571194172, 0.016863267868757248, -0.030844910070300102, -0.004714337643235922, 0.01737043261528015, -0.005849698092788458, -0.005858342628926039, -0.015756722539663315, 0.023767638951539993, 0.026026833802461624, 0.0005057250964455307, 0.03889040648937225, -0.036054886877536774, -0.014096907339990139, -0.032412514090538025, -0.023675426840782166, 0.044446177780628204, 0.009399859234690666, -0.0070311641320586205, 0.023467950522899628, -0.05652594938874245, -0.020459534600377083, -0.03746112063527107, -0.004495334345847368, -0.004659587051719427, -0.06865182518959045, -0.006985058076679707, -0.036285415291786194, 0.05800133943557739, 0.007578672841191292, 0.01900719478726387, 0.02184271439909935, 0.012056717649102211, 0.027663595974445343, -0.051315970718860626, -0.03550161421298981, -0.00856418814510107, 0.0550505556166172, 0.0026121926493942738, 0.010840672068297863, -0.010892541147768497, -0.020229004323482513, 0.02962310053408146, -0.023905957117676735, 0.01982557773590088, 0.0289315115660429, -0.057217538356781006, -0.020978227257728577, -0.021277915686368942, 0.009123223833739758, 0.05385179817676544, -0.014753918163478374, 0.018500030040740967, -0.032643042504787445, 0.03155955299735069, -0.03197450563311577, -0.03165176510810852, 0.012667621485888958, 0.04525303095579147, -0.01772775501012802, 0.05182313546538353, 0.00312656257301569, 0.0032130114268511534, 0.03202061355113983, -0.03953588753938675, 0.04214087873697281, -0.03672342374920845, 0.010339269414544106, 0.030245531350374222, 0.0007139224908314645, -0.004282094072550535, 0.03361126780509949, -0.013854851014912128, -0.029115933924913406, 0.016978532075881958, -0.010932883247733116, -0.04407732933759689, -0.03741501271724701, -0.04313215613365173, -0.010996279306709766, 0.009953130967915058, -0.03540940210223198, -0.00027987780049443245, 0.019998474046587944, -0.0415184460580349, -0.05191534757614136, 0.06007611006498337, 0.03179008141160011, -0.01629846915602684, -0.053667377680540085, -0.03296578675508499, -0.018557662144303322, 0.012321827001869678, 0.03494834154844284, 0.012287246994674206, -0.006829450372606516, 0.010650484822690487, -0.01545703411102295, -0.0037028875667601824, 0.008650637231767178, 0.041034333407878876, -0.03432591259479523, -0.011002042330801487, -0.01700158417224884, 0.01830407977104187, -0.028839299455285072, -0.0026121926493942738, -0.004766207188367844, 0.0517309233546257, -0.008212629705667496, 0.0018427988979965448, -0.08285246789455414, 0.015422455035150051, 0.013981642201542854, -0.02526608482003212, -0.026257362216711044, -0.03340379148721695, -0.004564493428915739, 0.01712837629020214, 0.009797523729503155, -0.01595267280936241, 0.049056775867938995, -0.026026833802461624, 0.04322436824440956, -0.00024511819356121123, 0.01710532419383526, -0.03527108579874039, 0.0033138683065772057, 0.05385179817676544, 0.003348447848111391, 0.0042676860466599464, 0.029830576851963997, -0.0618281364440918, -0.01619473099708557, -0.026995059102773666, -0.012725254520773888, 0.022050190716981888, -0.025565773248672485, 0.018857350572943687, -0.0024003933649510145, 0.04910288378596306, 0.0013385146157816052, 0.033357687294483185, 0.01769317500293255, -0.012437091208994389, 0.03190534561872482, 0.05233030393719673, 0.010765749029815197, -0.06035274639725685, 0.015549246221780777, 0.024021223187446594, -0.01168210618197918, -0.021185703575611115, 0.05763249099254608, -0.00011760630150092766, -0.026142098009586334, 0.0007448999676853418, 0.019514361396431923, 0.00031409706571139395, 0.03757638484239578, -0.05486613139510155, -0.004904524888843298, 0.008201103657484055, 0.031928401440382004, -0.021796608343720436, -0.03845239803195, 0.002109349239617586, 0.017889125272631645, -0.009601573459804058, 0.04672842472791672, -0.005581706762313843, 0.014016222208738327, 0.05422064661979675, 0.012517777271568775, 0.03898261860013008, -0.024044275283813477, 0.00897914171218872, 0.02595767378807068, 0.019168566912412643, 0.01329005230218172, -0.003164023859426379, -0.03462560102343559, -0.030314691364765167, 0.009025247767567635, 0.00304011395201087, -0.021404707804322243, -0.023929011076688766, -0.056479841470718384, 0.04552966728806496, -0.0052647278644144535, 0.014419649727642536, -0.002218850888311863, 0.02690284699201584, 0.008650637231767178, -0.0026597394607961178, -0.019767943769693375, -0.04589851573109627, 0.03425675258040428, 0.023571688681840897, 0.007987863384187222, 0.03273525461554527, 0.025657985359430313, -0.0001077907727449201, 0.009313411079347134, -0.06261193752288818, 0.0084950290620327, -0.04571409150958061, -0.004172592423856258, 0.02563493140041828, -0.03351905569434166, -0.036193203181028366, 0.008247209712862968, 0.0094517283141613, -0.013232420198619366, 0.07266304641962051, 0.0038757850416004658, -0.010183661244809628, -0.001424963353201747, -0.04290162771940231, -0.03644678741693497, -0.0014869183069095016, -0.019756417721509933, 0.03670037165284157, -0.0044031222350895405, 0.022753307595849037, -0.01263304241001606, 0.0289315115660429, 0.0305913258343935, -0.06053717061877251, 0.03467170521616936, -0.03757638484239578, -0.03291967883706093, 0.02149691991508007, -0.013382264412939548, 0.016575103625655174, 0.0789334625005722, 0.02796328440308571, 0.047765810042619705, -0.011976031586527824, 0.008708269335329533, 0.033957064151763916, -0.018592242151498795, -0.006460602395236492, 0.032758306711912155, 0.05477391928434372, 0.04200255870819092, -0.019618099555373192, 0.021658290177583694, 0.052699148654937744, 0.07612099498510361, -0.0013118595816195011, -0.04117265343666077, 0.007278983481228352, -0.021554552018642426, -0.0128059396520257, 0.017024638131260872, 0.04246361926198006, 0.008541135117411613, 0.011290204711258411, -0.0023499648086726665, 0.03344989940524101, -0.011952978558838367, 0.033357687294483185, -0.025219978764653206, 0.009105933830142021, -0.028401290997862816, -0.014292857609689236, 0.011653290130198002, 0.03603183478116989, 0.0016252362402155995, 0.004172592423856258, -0.029300358146429062, 0.04795023426413536, -0.0014617040287703276, -0.04340879246592522, -0.00735390605404973, 0.00480654975399375, 0.009169328957796097, 0.006379916798323393, -0.028493503108620644, -0.02741001360118389, -0.0470050610601902, -0.03411843627691269, 0.022880099713802338, 0.047396961599588394, 0.00359914917498827, -0.053667377680540085, -0.029899736866354942, -0.010719642974436283, -0.032412514090538025, 0.015445508062839508, -0.04594462364912033, -0.05228419601917267, -0.050347745418548584, 0.03188229352235794, -0.028193814679980278, -0.05431285873055458, 0.006858266424387693, -0.0020877369679510593, 0.008610294200479984, 0.016978532075881958, -0.0033743823878467083, -0.024528387933969498, -0.00248107872903347, -0.054128434509038925, 0.034164540469646454, -0.04631346836686134, 0.01760096289217472, 0.006633499637246132, -0.06275025755167007, 0.016967006027698517, 0.008229919709265232, -0.002898914273828268, 0.03439507260918617, 0.020471060648560524, -0.02268414944410324, 0.017866073176264763, 0.029438676312565804, 0.016148624941706657, -0.007273220457136631, -0.014154539443552494, -0.04933341220021248, 0.002991126384586096, -0.014050801284611225, 0.00016254163347184658, -0.003109272802248597, 0.017854545265436172, -0.02217698283493519, -0.022280720993876457, -0.015076659619808197, 0.002037308644503355, 0.010350795462727547, 0.01162447314709425, 0.043039944022893906, -0.039858631789684296, -0.032896626740694046, 0.0540362223982811, 0.023998169228434563, 0.07340074330568314, 0.06099822744727135, -0.037230588495731354, -0.031352076679468155, -0.044307857751846313, -0.013393791392445564, -0.016079464927315712, -0.009716837666928768, -0.015445508062839508, -0.03660815954208374, -0.025934621691703796, 0.007814966142177582, 0.0408729612827301, -0.022695675492286682, 0.04753527790307999, -0.04073464497923851, 0.012137402780354023, -0.017266694456338882, 0.012275720946490765, -0.012852045707404613, -0.0010640398832038045, -0.010131792165338993, 0.019767943769693375, 0.023179788142442703, -0.052699148654937744, -0.014995974488556385, 0.015341768972575665, -0.029807524755597115, -0.036884795874357224, -0.035824358463287354, -0.02526608482003212, 0.02750222571194172, -0.019779471680521965, -0.024528387933969498, -0.018488503992557526, 0.01606793887913227, -0.0417720302939415, 0.010448770597577095, -0.0275252778083086, -0.0051062386482954025, 0.02066701091825962, -0.06321131438016891, 0.036077938973903656, 0.0011512089986354113, 0.01688631996512413, -0.011474628932774067, -0.08368238061666489, -0.013647373765707016, 0.012483197264373302, -0.0014055123319849372, 0.0065355245023965836, 0.03185924142599106, 0.03481002524495125, -0.06026053428649902, 0.014488808810710907, -0.02468976005911827, -0.01393553614616394, 0.003671189770102501, -0.003388790413737297, 0.002270720200613141, 0.0857110396027565, -0.009739890694618225, 0.01628694124519825, 0.0016497300239279866, -0.015099712647497654, 0.01665578968822956, -0.009953130967915058, -0.005567298736423254, -0.005685445386916399, 0.004022747743874788, 0.02289162576198578, -0.0070484536699950695, -0.0009696666966192424, -0.024966394528746605, 0.014650179073214531, -0.0022130876313894987, 0.01795828342437744, -0.04502250254154205, -0.0017880480736494064, 0.006466365419328213, -0.008448923006653786, -0.0021641000639647245, 0.026510946452617645, -0.02374458685517311, -0.026049885898828506, 0.02480502426624298, 0.036769527941942215, -0.039236199110746384, 0.016828687861561775, -0.015664510428905487, 0.044930290430784225, -0.01121528260409832, 0.006097517441958189, 0.011883819475769997, 0.010166371241211891, 0.04041190445423126, 0.004348371643573046, -0.016148624941706657, -0.041610658168792725, 0.030245531350374222, -0.007832255214452744, -0.004065972287207842, -0.027087271213531494, -0.021197229623794556, -0.00873132236301899, 0.02172745019197464, -0.008662163279950619, 0.013209367170929909, -0.03294273093342781, 0.034786973148584366, 0.023410318419337273, 0.04785802215337753, -0.021681344136595726, -0.01056403573602438, -0.008673690259456635, 0.0055240741930902, 0.014949868433177471, -0.006431785877794027, -0.044307857751846313, -0.05103933438658714, 0.00784954521805048, -0.010200951248407364, -0.00463653402402997, 0.01127291563898325, 0.006852503400295973, -0.0034060801845043898, -0.004766207188367844, -0.019917789846658707, -0.06090601533651352, 0.016978532075881958, -0.0148807093501091, 0.01581435650587082, 0.012713727541267872, 0.004495334345847368, -0.02902372181415558, -0.02268414944410324, -0.009226961992681026, -0.021808134391903877, -0.028493503108620644, -0.00832213182002306, -0.023767638951539993, -0.04578325152397156, 0.033219367265701294, -0.031813133507966995, -1.5421193893416785e-05, 0.001710244221612811, -0.004965038970112801, -0.02148539200425148, -0.02429785765707493, -0.015618405304849148, -0.01924925297498703, -0.03013026714324951, -0.007013874128460884, 0.0033599743619561195, 0.04449228197336197, -0.014027748256921768, 0.02595767378807068, -0.06173592433333397, 0.05357516556978226, 0.014431175775825977, -0.01569909043610096, -0.008898456580936909, -0.003757638391107321, -0.015629932284355164, -0.006921662017703056, 0.02584240958094597, -0.017324326559901237, 0.000934366777073592, 0.0024464991874992847, -0.021416233852505684, -0.01722058840095997, 0.031006280332803726, -0.015076659619808197, 0.022395987063646317, -0.008719796314835548, -0.008074312470853329, 0.004910288378596306, -0.009832102805376053, -0.015341768972575665, -0.017451118677854538, 0.03905177488923073, -0.024482281878590584, -0.02217698283493519, 0.012114349752664566, -0.01168210618197918, 0.019456729292869568, -0.019618099555373192, -0.04167981818318367, -0.00735390605404973, -0.015871988609433174, -7.888446998549625e-05, 0.029922788962721825, 0.005780539009720087, 0.009244251996278763, -3.611035936046392e-05, -0.011065438389778137, 0.00027231351123191416, 0.004901643376797438, -0.03739196062088013, -0.009278831072151661, 0.023283526301383972, -0.004210053477436304, -0.011111544445157051, 0.025773249566555023, 0.005354058463126421, 0.03824492171406746, 0.000933646340854466, -0.029369518160820007, -0.0027966166380792856, 0.02586546167731285, 0.00992431491613388, -0.010604378767311573, 0.011883819475769997, 0.015019027516245842, -0.03266609460115433, -0.007884125225245953, -0.027433065697550774, -0.061090439558029175, -0.027686648070812225, 0.037968285381793976, -0.013486002571880817, 1.8843124053091742e-05, 0.021900346502661705, -0.00271593127399683, -0.019641153514385223, 0.0128059396520257, -0.049056775867938995, -0.01805049553513527, -0.009601573459804058, -0.022234614938497543, 0.00383832398802042, -0.031813133507966995, -0.006368390284478664, -0.0025055725127458572, -0.059107884764671326, 0.004377187695354223, -0.032412514090538025, 0.027202535420656204, 0.015019027516245842, -0.013958589173853397, 0.04414648935198784, -0.01063319481909275, 0.003529990091919899, 0.026833688840270042, 0.04435396566987038, -0.030637431889772415, -0.020263584330677986, 0.008610294200479984, -0.03824492171406746, 0.017497224733233452, -0.01960657350718975, 0.02289162576198578, -9.680457878857851e-05, -0.01568756438791752, 0.0042215799912810326, -0.03093712218105793, -0.009492071345448494, -0.01518039871007204, 0.004406003747135401, 0.006454838905483484, -0.0040083397179841995, 0.017889125272631645, -0.04170287027955055, 0.03720753639936447, -0.021681344136595726, 0.007446117699146271, 0.0017577910330146551, 0.02290315181016922, 0.015964200720191002, 0.010898304171860218, -0.02218850888311863, 0.023421844467520714, 0.014523387886583805, 0.0256118793040514, 0.011330547742545605, 0.022810939699411392, -0.00998194795101881, 0.03151344507932663, 0.010379611514508724, 0.0041495393961668015, -0.023929011076688766, 0.003740348620340228, -0.013024942949414253, -0.012955783866345882, 0.01186076644808054, -0.0030026528984308243, 0.002086296211928129, 0.015664510428905487, -0.001730415504425764, -0.02632652223110199, -0.03056827373802662, -0.020090686157345772, -0.016125570982694626, -0.052837468683719635, 0.045506615191698074, -0.005005382001399994, -0.022372933104634285, 0.0105697987601161, 0.006719948723912239, -0.053667377680540085, -0.001076286775059998, 0.029323412105441093, 0.04997889697551727, 0.010834908112883568, -0.01854613609611988, -0.023929011076688766, -0.015399402007460594, -0.009578520432114601, -0.011578367091715336, 0.025243030861020088, 0.017439592629671097, -0.04631346836686134, -0.009284594096243382, 0.025358296930789948, -0.02844739705324173, -0.005028435029089451, -0.0458524115383625, 0.00035786174703389406, 0.01369347982108593, -0.032988838851451874, -0.04878013953566551, -0.039858631789684296, -0.01281746570020914, -0.0037489936221390963, -0.02996889501810074, 0.010062633082270622, -0.0169900581240654, 0.02313368208706379, -0.007889888249337673, 0.03485612943768501, -0.023813745006918907, 0.021923400461673737, -0.005293544381856918, -0.02443617582321167, 0.028839299455285072, -0.002646772190928459, 0.025888515636324883, 0.017785387113690376, 0.03930535912513733, 0.02964615449309349, -0.04211782291531563, 0.0018644110532477498, 0.01737043261528015, 0.014534913934767246, 0.028170762583613396, 0.031029334291815758, -0.024251751601696014, -0.010759986005723476, 0.00012481036537792534, -0.005362703464925289, -0.039489783346652985, -0.017946757376194, -0.014454228803515434, 0.02701811119914055, 0.03568603843450546, -0.02432091161608696, -0.035709090530872345, -0.009941604919731617, 0.013301579281687737, 0.009422912262380123, -0.006466365419328213, -0.009503597393631935, -0.029461730271577835, 0.06293468177318573, -0.01866140030324459, -0.004668231587857008, -0.006547051016241312, 0.018672926351428032, 0.020574798807501793, -0.021658290177583694, -0.0018312723841518164, -0.03296578675508499, -0.04552966728806496, -0.0058554611168801785, 0.00039406216819770634, -0.009405622258782387, 0.0213931817561388, 0.006477891933172941, -0.02101280726492405, -0.03197450563311577, 0.00920390896499157, -0.013163261115550995, -0.008673690259456635, -0.003501173807308078, 0.06639263033866882, -0.00019631067698355764, -0.02351405657827854, -0.026533998548984528, -0.024528387933969498, -0.007065743673592806, -0.021462339907884598, 0.012494724243879318, 0.019641153514385223, 0.0361470989882946, -0.02383679896593094, 0.015572299249470234, 0.03494834154844284, -0.008264499716460705, -0.013958589173853397, -0.04629041627049446, -0.02847045101225376, 0.03368042781949043, 0.03162871301174164, 0.022004084661602974, 0.029669206589460373, 0.0026755884755402803, -0.03386485204100609, 0.03119070455431938, 0.03199755772948265, -0.032043665647506714, 0.007722754031419754, -0.04156455397605896, -0.00308333826251328, 0.008961852639913559, -0.025289136916399002, 0.01901872269809246, -0.027594437822699547, 0.001235496485605836, -0.014454228803515434, 0.027594437822699547, -0.01297883689403534, -0.02055174671113491, 0.009417149238288403, -0.007982100360095501, 0.014096907339990139, 0.0225458312779665, -0.0020027291029691696, -0.0013219452230259776, 0.058139655739068985, 0.027225589379668236, -0.025196924805641174, 0.01901872269809246, 0.013854851014912128, 0.014857656322419643, 0.0012268517166376114, -0.014327437616884708, 0.004858418833464384, -0.021785082295536995, -0.00944596529006958, 0.013370738364756107, -0.012840518727898598, 0.014315910637378693, 0.008812007494270802, -0.04391595721244812, 0.02787107229232788, 0.01678258180618286, -0.015883514657616615, 0.05016332119703293, 0.04241751506924629, 0.038198813796043396, 0.0023283527698367834, -0.0010438684839755297, 0.04552966728806496, 0.004950630944222212, 0.04308605194091797, 0.017566382884979248, -0.0012916881823912263, -0.026764528825879097, 0.009883971884846687, 0.024735866114497185, 0.0032677622511982918, -0.011503444984555244, 0.004731627646833658, 0.009935841895639896, -0.004714337643235922, -0.020505640655755997, -0.018580716103315353, 0.011555314995348454, 0.01864987425506115, -0.008639110252261162, 0.02125486359000206, 0.008535372093319893, 0.02147386595606804, 0.014442702755331993, 0.021669816225767136, 0.03391095623373985, -0.007572909351438284, -0.01463865302503109, 0.033703479915857315, 0.03128291666507721, 0.008840824477374554, -0.0005118485423736274, -0.020159846171736717, 0.010829145088791847, 0.00014155980898067355, -0.024989448487758636, 0.06934341043233871, 0.006869792938232422, -0.00878895539790392, 0.0256118793040514, -0.03598572686314583, -0.020252058282494545, -0.002930612303316593, 0.00025574417668394744, -0.02572714351117611, 0.039005670696496964, -0.014246751554310322, 0.024044275283813477, 0.026165151968598366, 0.0112095195800066, -0.030406901612877846, -0.02916203998029232, 0.0043627796694636345, 0.019422149285674095, 0.003697124309837818, 0.027248641476035118, 0.005212858784943819, -0.009238488040864468, -0.017554856836795807, 0.021070439368486404, 0.016851739957928658, 0.06533218920230865, 0.03342684358358383, -0.010033817030489445, 0.042671095579862595, 0.005028435029089451, -0.028262974694371223, 0.008057022467255592, -0.004097670316696167, -0.011019332334399223, 0.02939257025718689, 0.004117841366678476, -0.018131181597709656, -0.006933188531547785, 0.020713116973638535, 0.002968073356896639, -0.010298926383256912, -0.0027908533811569214, 0.010126029141247272, -0.026026833802461624, 0.02858571521937847, 0.027340853586792946, -0.015341768972575665, -0.015433981083333492, -0.008506556041538715, 0.025312190875411034, 0.017923705279827118, 0.03494834154844284, -0.0019523006631061435, -0.01875361241400242, 0.03716143220663071, 0.031697869300842285, 0.012759833596646786, -0.008356710895895958, 0.01829255372285843, -0.014304384589195251, 0.0001411996054230258, 0.04818076267838478, 0.011486155912280083, 0.044561441987752914, -0.022880099713802338, -0.026533998548984528, 0.008172287605702877, 0.015503140166401863, -0.023421844467520714, 0.005002500489354134, -0.01641373336315155, -0.019641153514385223, -0.02323742024600506, -0.021162651479244232, -0.027594437822699547, 0.020229004323482513, -0.004506860859692097, 0.037368908524513245, -0.002646772190928459, 0.011595657095313072, -0.010662010870873928, 0.011532261967658997, -0.003734585363417864, -0.02856266312301159, 0.008039732463657856, -0.017969811335206032, -0.026972005143761635, -0.012656095437705517, 0.0018658519256860018, -0.018511556088924408, 0.023675426840782166, 0.0043397266417741776, 0.011434285901486874, 0.005440507084131241, 0.01386637706309557, 0.014027748256921768, -0.027064217254519463, 0.006650789640843868, 0.018730560317635536, 0.02078227698802948, 0.014131487347185612, 0.03248167037963867, 0.03439507260918617, -0.019399097189307213, -0.003164023859426379, -0.04887235164642334, 0.009889735840260983, 0.009480545297265053, 0.0007895651506260037, 0.009526650421321392, 0.0038008627016097307, -0.020021528005599976, -0.02043648064136505, -0.012079770676791668, 0.012713727541267872, -0.006783344317227602, 0.01769317500293255, 0.008829297497868538, 0.023295052349567413, -0.016505945473909378, -0.006483655422925949, 0.038429345935583115, 0.00010436883894726634, -0.025542719289660454, 0.00672571174800396, 0.0014559407718479633, 0.014846129342913628, -0.008195340633392334, -0.014949868433177471, -0.009705311618745327, 0.0036308469716459513, -0.01725516840815544, 0.037714701145887375, -0.0014184797182679176, -0.006247362121939659, -0.0018557661678642035, -0.0056047597900033, 0.03013026714324951, 0.02775580808520317, 0.020943647250533104, -0.021877294406294823, -0.042924679815769196, 0.03151344507932663, -0.00448380783200264, 0.018857350572943687, 0.005769012495875359, 0.020125266164541245, 0.0026237191632390022, -0.014753918163478374, -0.04241751506924629, -0.019145512953400612, 0.028770139440894127, 0.028147708624601364, -0.004820957779884338, -0.010281636379659176, 0.015871988609433174, -0.012056717649102211, -0.03762248903512955, -0.01416606642305851, -0.018257973715662956, -0.021785082295536995, -0.012828992679715157, 0.006114807445555925, 0.012759833596646786, -0.004950630944222212, -0.0030285874381661415, 3.68983019143343e-05, 0.012609989382326603, 0.05062438175082207, 0.0034060801845043898, 0.026718422770500183, 0.0016295587411150336, -0.021888820454478264, -0.0220962967723608, -0.019571993499994278, 0.06256583333015442, 0.004976565483957529, -0.05242251604795456, 0.0077746231108903885, 0.03776080906391144, 0.011319021694362164, 0.025911567732691765, -0.027686648070812225, 0.016817161813378334, -0.00552119268104434, -0.011641763150691986, 0.06007611006498337, 0.023064523935317993, 0.013970116153359413, -0.006904372479766607, -0.0024349726736545563, 0.01700158417224884, -0.006921662017703056, 0.04191034659743309, 0.009711074642837048, 0.008397053927183151, -0.07109544426202774, 0.02102433331310749, -0.044238701462745667, -0.020136792212724686, -0.01674800179898739, 0.014292857609689236, 0.027133377268910408, -0.0018413581419736147, 0.009947367943823338, 0.023583214730024338, -0.01369347982108593, -0.0056047597900033, -0.020471060648560524, 0.015249556861817837, -0.026372628286480904, 0.016690369695425034, 0.03969725966453552, 0.009111696854233742, 0.01831560581922531, -0.05417454242706299, -0.046567052602767944, 0.02232682704925537, 0.03291967883706093, -0.01654052548110485, 0.018868878483772278, -0.02704116515815258, -0.012690674513578415, 0.010056870058178902, -0.0256118793040514, -0.008362474851310253, -0.011768554337322712, -0.008869640529155731, -0.0036308469716459513, 0.0014883590629324317, -0.0033570926170796156, 0.029185093939304352, -0.045276086777448654, -0.03587046265602112, -0.008172287605702877, 0.011647526174783707, -0.008126181550323963, -0.030153319239616394, 0.020401902496814728, -0.03259693831205368, 0.0005799269420094788, -0.0044866893440485, 0.012586936354637146, 0.0013125799596309662, -0.026856740936636925, 0.0347408652305603, -0.030038055032491684, -0.01665578968822956, 0.0034233699552714825, 0.03485612943768501, -0.0051062386482954025, -0.0325738824903965, 0.016828687861561775, 0.006241598632186651, 0.0018154234858229756, -0.019502835348248482, 0.002355728065595031, -0.01481155026704073, 0.019675731658935547, -0.007745807059109211, -0.031329020857810974, -0.02563493140041828, 0.01240251213312149, 0.004048682749271393, 0.021692870184779167, -0.0047748517245054245, 0.009503597393631935, 0.00018604488286655396, -0.013843324035406113, 0.009993473999202251, -0.009895498864352703, -0.010189424268901348, -0.035109713673591614, 0.005901567172259092, 0.008241446688771248, -0.0022087651304900646, 0.0018817008240148425, 0.009515124373137951, 0.0019724720623344183, -0.019675731658935547, 0.007780386134982109, -0.030499113723635674, 0.000958140182774514, 0.005509666167199612, 0.013428370468318462, -0.02347947657108307, -0.004944867920130491, 0.019790997728705406, -0.0033109865617007017, -0.00012075807899236679, -0.034187592566013336, 0.002032986143603921, -0.01781996712088585, 0.02183118835091591, -0.00046394154196605086, -0.007215587887912989, 0.007619015406817198, 0.03944367542862892, 0.015895040705800056, -0.012529303319752216, 0.024597547948360443, 0.00019703108409885317, 0.009791760705411434, -0.005682563874870539, -0.002727457555010915, 0.009186618961393833, 0.010517929680645466, 0.0008918627863749862, 0.007895651273429394, -0.00950936134904623, 0.0011843476677313447, -0.0033743823878467083, -0.01240251213312149, 0.0053425319492816925, -0.02277636155486107, 0.029138987883925438, 0.005898685660213232, -0.0030228241812437773, -0.014696285128593445, 0.002107908483594656, 0.03402622416615486, -0.032412514090538025, -0.01665578968822956, 0.013359211385250092, 0.024021223187446594, -0.03457949310541153, 0.02231530100107193, 0.026741476729512215, 0.029254252091050148, 0.0077573335729539394, 0.021750502288341522, -0.017554856836795807, 0.009146276861429214, 0.02847045101225376, 0.033472951501607895, 0.0023730178363621235, 0.018257973715662956, 0.014592546969652176, 0.018119655549526215, -0.005374229978770018, 0.015537719242274761, 0.01127291563898325, -0.009105933830142021, 0.006034121848642826, 0.015134292654693127, -0.022407513111829758, -0.03162871301174164, -0.008074312470853329, -0.017923705279827118, -0.011941452510654926, 0.010996279306709766, 0.042555831372737885, 0.04506860673427582, -0.03849850594997406, -0.024758918210864067, 0.008581478148698807, 0.005702734924852848, -0.0031899583991616964, -0.0003926213539671153, -0.01805049553513527, 0.0021381655242294073, 0.027317801490426064, -0.02088601514697075, 0.029945842921733856, 0.016794107854366302, 0.006979294586926699, -0.012621515430510044, 0.02658010460436344, -0.009843629784882069, -0.02549661509692669, -0.02111654542386532, 0.027456119656562805, 0.022119350731372833, -0.0047517986968159676, -0.014949868433177471, -0.013428370468318462, -0.026003779843449593, -0.010886777192354202, -0.031098492443561554, -0.0033945536706596613, -0.02996889501810074, 0.014857656322419643, -0.025289136916399002, 0.011030859313905239, 0.00862758420407772, -0.012679148465394974, 0.00991855189204216, -0.013670426793396473, 0.01946825534105301, 0.01663273759186268, -0.03856766223907471, 0.013797218911349773, 0.013532108627259731, -0.0034521862398833036, 0.0037749281618744135, -0.01936451718211174, -0.001473230542615056, 0.022465145215392113, -0.008016679435968399, -0.015030553564429283, 0.023548636585474014, -0.032758306711912155, 0.022269194945693016, 0.019410623237490654, 0.004290739074349403, -0.004673995077610016, -0.007515276782214642, 0.006714185234159231, -0.02904677577316761, 0.015503140166401863, -0.02277636155486107, -0.010270110331475735, 0.009739890694618225, -0.01606793887913227, 0.0021914755925536156, 0.008356710895895958, -0.008448923006653786, -0.032412514090538025, -0.021577604115009308, 0.015065133571624756, -0.02844739705324173, -0.027363907545804977, -0.04532219097018242, 0.007059980183839798, -0.029553942382335663, -0.025588825345039368, -0.016724949702620506, 0.030153319239616394, -0.0422791950404644, 0.021081965416669846, -0.013555161654949188, -0.042325302958488464, -0.007947520352900028, -0.021208757534623146, 0.0018600886687636375, -0.010719642974436283, -0.011261388659477234, -0.0072847469709813595, 4.13107882195618e-05, 0.0035674511454999447, 0.03566298633813858, -0.024067329242825508, -0.009313411079347134, 0.012529303319752216, -0.02964615449309349, -0.00215689605101943, 0.007803439162671566, 0.012771359644830227, -0.0189034566283226, -0.01926077902317047, 0.0040717353112995625, 0.011324784718453884, -0.011053911410272121, 0.031582605093717575, -0.016206257045269012, -0.0071118492633104324, 0.03999694809317589, 0.006454838905483484, -0.029069827869534492, -0.019514361396431923, -0.00041063150274567306, 0.009480545297265053, -0.006299231201410294, 0.021669816225767136, -0.044561441987752914, 0.017209062352776527, -0.0028614532202482224, 0.022269194945693016, -0.005581706762313843, 0.046336524188518524, 0.005452033597975969, 0.014627126045525074, -0.031006280332803726, -0.006011068820953369, -0.02443617582321167, 0.01050063967704773, 0.030245531350374222, -0.008425869978964329, -0.007861072197556496, -0.007947520352900028, 0.007319326512515545, 0.023675426840782166, 0.027479171752929688, 0.011572604067623615, -0.03356516361236572, -0.03400316834449768, 0.02890845760703087, -0.015203450806438923, -0.043247420340776443, -0.014154539443552494, 0.02833213284611702, -0.015514667145907879, -0.023548636585474014, 0.018799718469381332, 0.017082270234823227, -0.011157650500535965, -0.02078227698802948, -0.016459839418530464, -0.02102433331310749, 0.031144598498940468, -0.01446575578302145, 0.004944867920130491, -0.014246751554310322, -0.027317801490426064, -0.01604488492012024, 0.014119960367679596, -0.026003779843449593, 0.042210035026073456, -0.017324326559901237, -0.019422149285674095, 0.022937731817364693, 0.004901643376797438, -0.027248641476035118, 0.009809049777686596, -0.02020595222711563, -0.01121528260409832, -0.015871988609433174, -0.016010306775569916, -0.0148807093501091, 0.015768250450491905, -0.002806702395901084, 0.014903762377798557, -0.01250625029206276, -0.026349574327468872, 0.047051165252923965, 0.037368908524513245, 0.03799133747816086, -0.017647068947553635, -0.025058606639504433, 0.04594462364912033, 0.00687555642798543, 0.03978947177529335, -0.013313105329871178, -0.0035847409162670374, -0.015848934650421143, 0.02302994392812252, 0.036792583763599396, 0.02383679896593094, 0.004728746134787798, 0.03238946199417114, -0.024044275283813477, 0.06164371222257614, -0.0031035097781568766, 0.010587088763713837, 0.018926510587334633, -0.031144598498940468, 0.009785996749997139, -0.00880048144608736, -0.033127155154943466, 0.0512237586081028, -0.004760443698614836, -0.024966394528746605, -0.01257540937513113, -0.03082185611128807, 0.04022748023271561, -0.004973683971911669, -0.03326547518372536, 0.010247057303786278, -0.00528489938005805, 0.05126986280083656, 0.004155302420258522, -0.037253644317388535, 0.014073854312300682, 0.021347075700759888], [0.038475070148706436, 0.001065294723957777, 0.026503467932343483, 0.01473336759954691, -0.0717822015285492, 0.03373384103178978, 0.005805041640996933, -0.03558291867375374, 0.0040507870726287365, -0.004486387595534325, 0.0008067496819421649, 0.013073937967419624, -0.0478627011179924, -0.023421669378876686, -0.0032447781413793564, 0.051537152379751205, -0.01239831279963255, 0.02141849882900715, -0.015966087579727173, -0.021548883989453316, 0.006388805340975523, 0.047483403235673904, 0.008166765794157982, 0.02230747975409031, -0.01649947464466095, -0.024891449138522148, 0.03375754505395889, 0.02211783081293106, 0.055472373962402344, -0.005603539291769266, 0.0062169358134269714, -0.020849552005529404, 0.04847906157374382, -0.032856713980436325, 0.03795353323221207, 0.010827780701220036, -0.01966424472630024, 0.03197958692908287, 0.054950837045907974, 0.015705319121479988, -0.04764934629201889, 0.020067250356078148, 0.026598291471600533, -0.013050231151282787, -0.0061339642852544785, 0.07865697890520096, 0.049782898277044296, -0.01898862048983574, -0.036388929933309555, 0.018336700275540352, 0.027072414755821228, 8.542545401724055e-05, -0.017566250637173653, 0.03646004572510719, 0.03736088052392006, -0.010952237993478775, 0.022260067984461784, 0.02811548486351967, 0.029016317799687386, -0.021205144003033638, -0.016997303813695908, -0.0032981170807033777, 0.015160078182816505, 0.021051054820418358, -0.03354419022798538, -0.006501409690827131, -0.010365510359406471, 0.01667727157473564, -0.026598291471600533, -0.010193641297519207, 0.023397961631417274, -0.015527523122727871, -0.006614013575017452, -0.04321629926562309, 0.04608473926782608, 0.0339709036052227, 0.027025002986192703, 0.04911912605166435, 0.02761765569448471, -0.013559913262724876, -0.03999226167798042, 0.006868854630738497, -0.004305628128349781, 0.01588311605155468, -0.005093857180327177, 0.04193616658449173, -0.02061249129474163, -0.0035292520187795162, -0.032643359154462814, -0.00846309307962656, 0.017779607325792313, -0.030391274020075798, -0.005965058226138353, 0.0422680526971817, -0.04305035620927811, -0.023895790800452232, 0.02749912440776825, -0.009138718247413635, 0.007479287683963776, 0.08098018169403076, -0.0017735158326104283, 0.02749912440776825, 0.045302439481019974, 0.053101759403944016, -0.0023217203561216593, -0.08282925933599472, -0.06742026656866074, 0.01661800593137741, 0.06993311643600464, -0.05295952036976814, -0.026384936645627022, 0.01889379508793354, -0.028802962973713875, 0.043145179748535156, -0.009008334018290043, -0.032548531889915466, -0.001700915745459497, 0.011959749273955822, 0.024073587730526924, -0.04719892889261246, -0.0009415783570148051, -0.003019569907337427, 0.004284885246306658, -0.07258820533752441, -0.005455376114696264, 0.01711583510041237, -0.024203971028327942, 0.016997303813695908, -0.015160078182816505, -0.04494684562087059, 0.015385285951197147, -0.04838423803448677, 0.013595473021268845, -0.06343764066696167, -0.050304435193538666, -0.004486387595534325, -0.010318098589777946, -0.0067266179248690605, 0.0039055868983268738, -0.03641263395547867, 0.008729786612093449, -0.0004526391567196697, 0.018206316977739334, 0.008368268609046936, -0.05077855661511421, 0.014520011842250824, 0.012742051854729652, 0.03501397371292114, 0.02427509054541588, 0.0037070480175316334, -0.026218993589282036, 0.002320238621905446, -0.006246568635106087, -0.0019720548298209906, 0.01773219369351864, -0.0039767054840922356, 0.011983455158770084, 0.05163197964429855, 0.007532626856118441, 0.0018713036552071571, -0.02595822513103485, -0.013405823148787022, 0.006791809573769569, -0.01686692051589489, 0.05670509114861488, 0.018135199323296547, -0.01584755629301071, 0.001055664150044322, -0.024867743253707886, -0.03174252435564995, -0.05376553162932396, 0.007325198035687208, -0.032430004328489304, -0.0030847617890685797, -0.004507130477577448, -0.04077456519007683, -0.032548531889915466, 0.01898862048983574, 0.023279432207345963, -0.031007634475827217, 0.0024209897965192795, -0.0017335116863250732, -0.027641361579298973, -0.020849552005529404, -0.015622347593307495, 0.014923016540706158, 0.011023356579244137, 0.003932256251573563, 0.03432649374008179, 0.024535857141017914, 0.006945899687707424, 0.017827019095420837, 0.03148175776004791, 0.0343502014875412, -0.021643707528710365, -0.01750698685646057, -0.010252906940877438, -0.00543759623542428, 0.008860170841217041, -0.0008008230943232775, 0.027783598750829697, -0.023184606805443764, 0.04051379859447479, 0.0070229447446763515, -0.07524329423904419, -0.06476517766714096, 0.05068373307585716, 0.04753081500530243, 0.04513649642467499, -0.0018772301264107227, 0.010525527410209179, -0.05096820741891861, -0.004913098178803921, 0.04577656090259552, -0.009037966839969158, -0.04089309647679329, 0.05893347039818764, 0.017862578853964806, -0.0052627637051045895, 0.013714003376662731, 0.02107476070523262, -0.001855005626566708, -0.043761540204286575, -0.04046638682484627, -0.017127687111496925, -0.027143532410264015, -0.0028714064974337816, -0.02300681173801422, -0.023824673146009445, -0.04565802961587906, -0.030699454247951508, 0.027451712638139725, -0.023184606805443764, -0.024322502315044403, 0.006874781101942062, 0.02605305053293705, -0.01582385040819645, -0.022663071751594543, -0.021181438118219376, 0.014875604771077633, 0.03250112012028694, 0.0331886000931263, -0.023860232904553413, -0.011894556693732738, -0.05708438903093338, -0.005570943467319012, 0.009624693542718887, -0.004249325953423977, 0.02998827025294304, 0.014709661714732647, -0.018324848264455795, -0.06343764066696167, -0.006359172519296408, -0.04734116792678833, 0.015385285951197147, -0.0016209074528887868, 0.005834674462676048, -0.001807593391276896, 0.014840045012533665, -0.009020186960697174, 0.015160078182816505, -0.010241053067147732, -0.02968009002506733, 0.050399258732795715, -0.03432649374008179, -0.025721164420247078, 0.06433846801519394, -0.029134849086403847, -0.01671282947063446, 0.06263162940740585, -0.047507110983133316, 0.00040337484097108245, 0.009660253301262856, -0.013785121962428093, -0.04475719854235649, 0.029561558738350868, -0.002498034853488207, -0.03330713137984276, -0.014923016540706158, -0.037621647119522095, -0.028731845319271088, -0.01291984785348177, 0.010371437296271324, -0.03342565894126892, 0.025484103709459305, -0.0345398485660553, 0.0023409815039485693, 0.00023854305618442595, 0.013310998678207397, 0.012825023382902145, 0.05281728506088257, -0.011461920104920864, -0.0033573824912309647, -0.012564255855977535, -0.00924539566040039, -0.023753555491566658, -0.01883452944457531, -0.007799320854246616, 0.030983928591012955, -0.03619927912950516, 0.014045889489352703, 0.063674695789814, 0.009500236250460148, -0.0015557155711576343, -0.03726605698466301, 0.007775614503771067, 0.03235888481140137, 0.0326196514070034, -0.04506537690758705, -0.015681613236665726, -0.0019290873315185308, 0.0301068015396595, -0.007159254979342222, 0.01255240198224783, -0.024038027971982956, 0.004305628128349781, -0.04743599146604538, 0.03852248191833496, 0.00996843259781599, -0.0069755325093865395, 0.029751209542155266, 0.03321230411529541, -0.003724827663972974, -0.028897788375616074, 0.039399608969688416, -0.01551567018032074, 0.01582385040819645, 0.06101961061358452, -0.009589134715497494, -0.007408169563859701, -0.0329989492893219, 0.024369914084672928, 0.009778783656656742, 0.01775590144097805, -0.024535857141017914, -0.017092129215598106, -0.023741701617836952, 0.019332358613610268, 0.006276200991123915, -0.01825372874736786, -0.04681963101029396, -0.008214178495109081, 0.022082271054387093, -0.0179455503821373, 0.020636197179555893, 0.003698158310726285, 0.0274043008685112, 0.060261014848947525, -0.00529832299798727, 0.038238007575273514, 0.026859059929847717, 0.009565428830683231, -0.022923840209841728, 0.022994957864284515, -0.019581273198127747, 0.004581212066113949, -0.004773824475705624, -0.03816688805818558, -0.03266706317663193, 0.019462743774056435, 0.008226031437516212, -0.00411005225032568, 0.009085378609597683, 0.04506537690758705, -0.012078279629349709, 0.004157464485615492, 0.0016075727762654424, 0.019486449658870697, 0.0010401069885119796, -0.01615573652088642, 0.0411064513027668, 0.04662998020648956, -0.061304084956645966, -0.051205266267061234, 0.0033010803163051605, 0.011669348925352097, -0.004963473416864872, 0.02340981550514698, -0.04549208655953407, 0.010910752229392529, 0.06846334040164948, 0.01667727157473564, 0.011562670581042767, 0.02111032046377659, 0.038664717227220535, 0.03968408331274986, -0.05167939141392708, 0.004305628128349781, 0.011592303402721882, -0.014318509958684444, -0.03755053132772446, 0.05523531138896942, -0.00656660133972764, 0.0017646260093897581, -0.05376553162932396, 0.007983043789863586, 0.04077456519007683, 0.033567897975444794, -0.014887457713484764, -0.021667413413524628, 0.02304236963391304, -0.012599814683198929, 0.004782714415341616, -0.046037327498197556, 0.009683959186077118, 0.0027751002926379442, 0.04255252704024315, 0.012730198912322521, 0.030367568135261536, -0.018633028492331505, 0.0129317007958889, -0.035772569477558136, 0.02531816065311432, -0.014520011842250824, 0.024464739486575127, 0.03541697561740875, -0.0016031279228627682, 0.011082621291279793, -0.02927708625793457, 0.004856796003878117, 0.040940508246421814, -0.0016105360118672252, -0.046440333127975464, 0.02273419126868248, -0.03757423534989357, 0.010958163999021053, 0.003618150018155575, -0.001558678806759417, 0.015195637010037899, -0.05727403983473778, -0.013714003376662731, 0.01895306073129177, 0.04855018109083176, 0.003630002960562706, -0.0704546570777893, 0.0058080051094293594, 0.0012275336775928736, -0.0517268031835556, 0.009103158488869667, -0.025910813361406326, -0.0212288498878479, -0.011052988469600677, 0.016262413933873177, 0.022781603038311005, 0.0018090750090777874, 0.021797798573970795, -0.003926329780369997, 0.040442679077386856, 0.012036793865263462, 0.005040518473833799, -0.004190060775727034, 0.008498651906847954, -0.05400259047746658, -0.009405411779880524, -0.02780730463564396, -0.013228027150034904, -0.015112665481865406, -0.08813943713903427, 0.03240629658102989, -0.034634675830602646, 0.046037327498197556, 0.0372423492372036, 0.06699355691671371, 0.012220516800880432, 0.02383652701973915, 0.04850276559591293, -0.003366272198036313, -0.0038611378986388445, -0.03508508950471878, -0.01680765487253666, -0.007977116852998734, -0.008593476377427578, 0.04172281175851822, 0.013465088792145252, 0.012943553738296032, -0.05428706482052803, -0.006572527810931206, -0.023386109620332718, -0.04411713033914566, 0.009624693542718887, -0.0021928180940449238, 0.00659030769020319, -0.031813643872737885, -0.04911912605166435, 0.003342566080391407, 0.061398908495903015, 0.020991789177060127, -0.01318061538040638, -0.05054149404168129, -0.03622298687696457, -0.04855018109083176, -0.014235538430511951, 0.04817087948322296, -0.010430702939629555, -0.014828192070126534, 0.015148225240409374, -0.0495932511985302, -0.03269077092409134, 0.030486099421977997, -0.041770223528146744, 0.07732943445444107, -0.06874781101942062, -0.0012719826772809029, -0.0451602004468441, 0.04060862213373184, -0.06082995980978012, 0.010804074816405773, 0.007123695686459541, -0.03029645048081875, -0.009867682121694088, -0.05898088216781616, -0.0005863566184416413, 0.03902031108736992, 0.0285659022629261, -0.007645230740308762, -0.037503115832805634, 0.008759419433772564, 0.002083177212625742, 0.0004122646350879222, -0.013097643852233887, 0.006024323403835297, -0.007455581799149513, -0.0517268031835556, -0.01067369058728218, -0.01584755629301071, 0.005233130883425474, -0.008000822737812996, -0.036175575107336044, -0.022556394338607788, 0.026124168187379837, -0.024038027971982956, -0.05698956549167633, -0.033804960548877716, -0.0023350550327450037, 0.020849552005529404, -0.036483753472566605, 0.015930527821183205, 0.0061517441645264626, 0.01665356568992138, -0.022023005411028862, 0.010892972350120544, -0.00783487968146801, 0.013275439850986004, -0.019284946843981743, -0.00038040950312279165, 0.01775590144097805, 0.03842765837907791, 0.021003643050789833, 0.012374605983495712, 0.008978701196610928, -0.0017824055394157767, 0.007502994034439325, 0.02811548486351967, -0.020659903064370155, -0.03427908197045326, 0.02666941098868847, 0.021679267287254333, 0.0006471035885624588, 0.01072110328823328, -0.01112410705536604, 0.028518488630652428, -0.014365922659635544, -0.027688775211572647, 0.01661800593137741, 0.011361168697476387, 0.028210310265421867, -0.040347855538129807, -0.003055129200220108, 0.0451602004468441, -0.029443029314279556, -0.018917500972747803, 0.021892622113227844, 0.029111143201589584, -0.02676423452794552, -0.00723630003631115, 0.0129317007958889, 0.04878723993897438, -0.06101961061358452, -0.0012371642515063286, -0.0015972013352438807, 0.004723448771983385, 0.027759892866015434, 0.028423665091395378, -0.04262364283204079, -0.025602633133530617, 0.0005811708979308605, -0.01126041729003191, -0.004077456425875425, -0.008445313200354576, 0.06647202372550964, -0.014413334429264069, -0.015989793464541435, 0.020541371777653694, -0.009286881424486637, -0.017649222165346146, 0.04056121036410332, -0.02371799573302269, -0.0024046918842941523, -0.016108322888612747, 0.012196809984743595, 0.006578454282134771, -0.036673400551080704, 0.01843152567744255, 0.002604712499305606, -0.045515794306993484, -0.015385285951197147, -0.017341043800115585, -0.018265582621097565, 0.0036922316066920757, 0.03167140483856201, 0.032975245267152786, -0.006536968983709812, 0.0011941968696191907, -0.008889803662896156, -0.030177919194102287, 0.008534211665391922, -0.024678094312548637, -0.026835354045033455, 0.0003011420776601881, -0.014555571600794792, -0.014911163598299026, -0.021975593641400337, 0.008166765794157982, 0.001724621863104403, 0.0073014916852116585, 0.004030044190585613, -0.006904413923621178, -0.023030517622828484, 0.021371087059378624, 0.001333470456302166, 0.0010808518854901195, -0.012457577511668205, 0.007461508270353079, -0.012303488329052925, -0.014543718658387661, 0.02003169059753418, -0.006376952398568392, -0.009346147067844868, -0.00606877263635397, -0.006042102817445993, 0.014401481486856937, -0.0011993825901299715, 0.03985002636909485, -0.009766930714249611, 0.028068073093891144, -0.019948719069361687, -0.010774441994726658, 0.008842390961945057, 0.014508158899843693, 0.011616010218858719, 0.026029344648122787, 0.012587961740791798, -0.02095622941851616, 0.009032039903104305, 0.013974770903587341, -0.024417325854301453, 0.0018594505963847041, 0.03084169141948223, 0.0037159377243369818, 0.06467035412788391, -0.04577656090259552, -0.002806214615702629, 0.0016683198045939207, -0.02813919074833393, 0.04753081500530243, -0.005236094351857901, 0.024417325854301453, -0.012540549039840698, 0.018075933679938316, -0.026716822758316994, 0.012789463624358177, 0.008267517201602459, 0.04186504706740379, -0.004770861007273197, -0.01790999062359333, -0.00562131917104125, -0.014259244315326214, 0.005129416473209858, -0.004124868661165237, 0.03475320339202881, -0.014496305957436562, -0.021892622113227844, -0.007342977449297905, 0.036697108298540115, -0.006708838511258364, 0.006548821926116943, 0.033781252801418304, -0.021513324230909348, -0.025815989822149277, -0.02165556140244007, 0.0003050313680432737, -0.006110258400440216, -0.02617158181965351, -0.0213236752897501, 0.029300792142748833, 0.02721465192735195, -0.0008252700790762901, 0.0021794834174215794, -0.0370527021586895, 0.034942854195833206, 0.028257722035050392, 0.032951537519693375, -0.03288041800260544, -0.08870838582515717, -0.0414857491850853, -0.009346147067844868, -0.011941969394683838, 0.01991315931081772, 0.04636921361088753, -0.007787467911839485, -0.020079102367162704, -0.019344212487339973, -0.027380594983696938, -0.021062906831502914, -0.03499026596546173, 0.0033129334915429354, 0.01525490265339613, -0.008895729668438435, 0.007615598384290934, -0.014045889489352703, -0.0159186739474535, 0.01879897154867649, -0.01945088990032673, 0.001174194854684174, 0.027238357812166214, -0.0021602222695946693, -0.0022076345048844814, 0.011621936224400997, -0.055282723158597946, 0.02460697665810585, 0.027167238295078278, 0.007028871215879917, 0.004649367183446884, 0.029964564368128777, 0.002564708236604929, 0.019593127071857452, -0.027902130037546158, -0.020908817648887634, -0.023765407502651215, 0.020683608949184418, 0.013666590675711632, -0.03795353323221207, -0.0019957609474658966, -0.030249036848545074, 0.010815927758812904, 0.0006078403093852103, -0.005630208645015955, 0.0014690400566905737, -0.017827019095420837, 0.02190447598695755, -0.014958575367927551, 0.008125280030071735, -0.03226406127214432, -0.034729499369859695, 0.03392348811030388, -0.0030492024961858988, 0.013619178906083107, 0.03283300623297691, -0.014614836312830448, -0.0013008745154365897, -0.005295359529554844, 0.0004322666791267693, -0.010235127061605453, 0.02823401615023613, -0.00038485441473312676, 0.0067266179248690605, -0.047507110983133316, -0.013796974904835224, -0.001487560453824699, 0.004951620474457741, 0.003161806846037507, 0.023125341162085533, 0.02721465192735195, 0.0007322975434362888, -0.005573906935751438, 0.0033366396091878414, -0.01910714991390705, -0.03522732853889465, -0.022082271054387093, -0.03112616576254368, 0.00435600383207202, 0.00957135483622551, 0.004578248597681522, 0.04203099012374878, -0.0013349521905183792, 0.025768576189875603, 0.01966424472630024, 0.011177445761859417, 0.015894968062639236, 0.004598991479724646, -0.014923016540706158, -0.04435419291257858, -0.013050231151282787, -0.025815989822149277, -0.012196809984743595, 0.007313345093280077, -0.008818685077130795, -0.03819059580564499, -0.009838049300014973, 0.03032015636563301, -0.014887457713484764, -0.02095622941851616, -0.0038878072518855333, 0.01818261109292507, 0.03423167020082474, 0.010069184005260468, -0.037929829210042953, 0.0008467537700198591, -0.012789463624358177, -0.0521061010658741, 0.020576931536197662, 0.003499619197100401, 0.007479287683963776, -0.0028788147028535604, 0.03996855765581131, -0.03688675910234451, -0.02458326891064644, 0.03354419022798538, -0.0009356518276035786, -0.03785870969295502, 0.04430678114295006, -0.004723448771983385, 0.020565077662467957, -0.004065603483468294, 0.0022002262994647026, 0.021702973172068596, -0.07168737798929214, 0.023089783266186714, 0.01556308288127184, 0.0065606748685240746, -0.010602572001516819, 0.034302789717912674, 0.01802852191030979, 0.031292106956243515, -0.019071592018008232, 0.009091305546462536, -0.0102766128256917, 0.011325609870254993, -0.011787879280745983, 0.05025702342391014, 0.027688775211572647, -0.033259715884923935, 0.032240353524684906, 0.03446873277425766, -0.028210310265421867, -0.002206152770668268, -0.005203498061746359, -0.02387208491563797, -0.018135199323296547, 0.021608149632811546, -0.012060499750077724, -0.0024328429717570543, -0.02300681173801422, 0.0368630513548851, -0.010833706706762314, -0.003292190609499812, 0.010910752229392529, 0.006270274519920349, -0.02541298419237137, 0.0030906882602721453, 0.002758802380412817, 0.004376746714115143, -0.018870089203119278, 0.0036092600785195827, 0.008919436484575272, -0.0048479060642421246, 0.0046790000051259995, 0.02534186653792858, -0.030438687652349472, -0.008658668957650661, 0.01613203063607216, -0.0027617656160146, 0.0343502014875412, -0.011533038690686226, -0.07201926410198212, 0.020138368010520935, -0.02460697665810585, 0.0494036003947258, 0.009435044601559639, 0.0017186952754855156, 0.02543669007718563, 0.021181438118219376, 0.03646004572510719, -0.01468595489859581, 0.009263175539672375, -0.03790612146258354, 0.0004585656861308962, 0.06476517766714096, 0.005339808762073517, 0.02175038494169712, -0.005674657877534628, 0.0073489039205014706, -0.01895306073129177, -0.0025898960884660482, -0.011461920104920864, -0.013109496794641018, -0.001949830213561654, 0.005624282173812389, -0.0023024589754641056, 0.013192468322813511, -0.003271447727456689, -0.010223274119198322, -0.029703795909881592, -0.019616832956671715, -0.03091280907392502, 0.04444901645183563, 0.009464677423238754, -0.019735364243388176, -0.011918263509869576, 0.005440559703856707, 0.033070068806409836, -0.024844037368893623, 0.003982631955295801, -0.0301068015396595, 0.009600987657904625, 0.030960222706198692, -0.004782714415341616, -0.01061442494392395, 0.012979112565517426, -0.006483629811555147, 0.04546838253736496, 0.011787879280745983, 0.004474534187465906, -0.021620001643896103, -0.019498301669955254, -0.0037189011927694082, -0.005769482348114252, -0.011035209521651268, 0.003475913079455495, -0.016369091346859932, -0.014851897954940796, 0.011414507403969765, 0.001684617716819048, -0.011052988469600677, 0.02371799573302269, 0.03008309379220009, -0.014437040314078331, 0.012339047156274319, 0.0038581746630370617, 0.04435419291257858, 0.026005638763308525, 0.04817087948322296, 0.021560736000537872, -0.04203099012374878, -0.04795752465724945, -0.014271097257733345, -0.012362753041088581, 0.014804486185312271, -0.02448844537138939, -0.006584381218999624, 0.032548531889915466, 0.01546825747936964, 0.0021883733570575714, -0.006293980870395899, 0.004424158949404955, -0.0027528756763786077, 0.021572589874267578, 0.01092260517179966, -0.0031321740243583918, 0.009132791310548782, 0.002063916064798832, 0.021406646817922592, 0.04504166916012764, -0.026835354045033455, 0.032951537519693375, 0.02998827025294304, 0.01732918992638588, -0.01603720523416996, -0.013014672324061394, -0.0010771478991955519, -0.019284946843981743, -0.029040023684501648, 0.04587138444185257, -0.014709661714732647, -0.0006341392872855067, 0.02252083458006382, -0.023480933159589767, 0.020410988479852676, -0.014365922659635544, 0.005084967706352472, 0.029727501794695854, -0.010525527410209179, 0.025910813361406326, -0.002360242884606123, -0.01908344402909279, -0.014567424543201923, 0.06770474463701248, -0.017779607325792313, 0.02583969570696354, -0.011355241760611534, -0.008030455559492111, -0.008012675680220127, 0.010211421176791191, 0.008706080727279186, 0.018336700275540352, 0.021122172474861145, 0.01229163445532322, 0.012742051854729652, 0.0036092600785195827, -0.003043276024982333, 0.023232020437717438, 0.0009141681366600096, 0.04983031004667282, 0.0231609009206295, -0.0017216586275026202, -0.02688276581466198, 0.04475719854235649, 0.021489618346095085, 0.021702973172068596, -0.030438687652349472, -0.002118736505508423, -0.02697758935391903, -0.008469019085168839, 0.03809577226638794, 0.01066183764487505, -0.01213754527270794, 0.019901307299733162, -0.010869266465306282, -0.028921494260430336, 0.0029143737629055977, -0.001949830213561654, 0.018360408022999763, 0.03641263395547867, 0.01190640963613987, 0.03487173467874527, -0.018538203090429306, 0.03250112012028694, 0.022971251979470253, -0.0014238501898944378, 0.014923016540706158, 0.011533038690686226, -0.003212182316929102, 0.04006338119506836, 0.03418425843119621, 0.004210803657770157, 0.03427908197045326, -0.02070731483399868, -0.05343364551663399, -0.035677745938301086, 0.007248152978718281, -0.03373384103178978, -0.017803313210606575, -0.028874080628156662, -0.005431669764220715, 0.009909167885780334, -0.014768926426768303, 0.018502643331885338, 0.0380246527493, -0.011509331874549389, 0.019925013184547424, -0.0003437390550971031, 0.03842765837907791, -0.026527173817157745, 0.004453791305422783, 0.009749150834977627, -0.007988969795405865, -0.012327194213867188, -0.025602633133530617, 0.006969606038182974, -0.002581006148830056, 0.040750857442617416, -0.02175038494169712, -0.00316477008163929, 0.030699454247951508, -0.0030640189070254564, -0.02033987082540989, 0.0008252700790762901, 0.0003154028090648353, 0.0038937339559197426, -0.04155686870217323, -0.02097993530333042, 0.0005974688683636487, 0.03138693422079086, 0.04357188940048218, 0.019119003787636757, -0.026100462302565575, -0.004507130477577448, -0.0314580500125885, 0.03833283111453056, -0.012481284327805042, -0.03581998124718666, 0.027309475466609, 0.020019836723804474, 0.0070229447446763515, 0.020932523533701897, -0.02141849882900715, 0.0220941249281168, 0.0037752031348645687, 0.034207962453365326, 0.0018446341855451465, 0.0016564667457714677, 0.050304435193538666, 0.024464739486575127, 0.027641361579298973, 0.007562259212136269, -0.014851897954940796, 0.06708838045597076, -0.001124560134485364, 0.04679592326283455, -0.00910908542573452, 0.007449655327945948, 0.03138693422079086, 0.005739849526435137, -0.025697458535432816, 0.02574487030506134, -0.017554398626089096, -0.0052627637051045895, 0.0022713446523994207, 0.019308652728796005, 0.03655487298965454, 0.01914270967245102, 0.034207962453365326, -0.01123078539967537, -0.017981108278036118, 0.03506138548254967, 0.0007815618882887065, 0.007775614503771067, 0.013891799375414848, 0.01856190897524357, 0.012173104099929333, -0.011207078583538532, -0.023279432207345963, -0.0412960983812809, 0.01821817085146904, 0.012119765393435955, -0.016973597928881645, -0.020256899297237396, 0.054856013506650925, 0.02482033148407936, -0.018550056964159012, -0.0024654387962073088, -0.058174874633550644, -0.008528284728527069, -0.02089696377515793, -0.01241016574203968, 0.006945899687707424, 0.0019394587725400925, -0.004107089247554541, -0.008836464956402779, 0.06879522651433945, 0.01806407980620861, 0.02144220657646656, -0.02427509054541588, -0.038143184036016464, -0.023848379030823708, -0.0179455503821373, 0.006839222274720669, 0.05917053297162056, 0.008593476377427578, -0.018727852031588554, 0.025602633133530617, 0.016333531588315964, -0.03766905888915062, 0.014923016540706158, 0.028708137571811676, -0.017779607325792313, 0.021145878359675407, 0.00394707266241312, 0.026740528643131256, 0.01448445301502943, -0.0026921287644654512, 0.021145878359675407, 0.0014549645129591227, 0.0018831567140296102, 0.01711583510041237, 0.009778783656656742, -0.002972157672047615, 0.001539417658932507, -0.021951887756586075, 0.007526700384914875, -0.0009934355039149523, -0.02626640535891056, -0.028162896633148193, 0.014508158899843693, 0.021738532930612564, 0.009843975305557251, 0.010501821525394917, 0.0034255376085639, 0.021489618346095085, -0.019427184015512466, 0.03584368899464607, 0.025081098079681396, -0.03785870969295502, -0.01818261109292507, -0.011983455158770084, 0.02178594470024109, 0.04060862213373184, -0.02387208491563797, 0.018170757219195366, -0.01416441984474659, 0.02451215125620365, 0.015527523122727871, 0.02896890603005886, -0.003093651495873928, -0.020695462822914124, 0.015088959597051144, -0.03053351119160652, 0.004963473416864872, -0.0004237472894601524, -0.007147402036935091, -0.013062084093689919, 0.004782714415341616, 0.003630002960562706, -0.013263586908578873, -0.011722687631845474, -0.024891449138522148, 0.019498301669955254, 0.010768515057861805, 0.02491515502333641, -0.035251032561063766, 0.013476941734552383, 0.017803313210606575, -0.00012593888095580041, -0.011977528221905231, -0.00886609684675932, 0.0005941351992078125, 0.0006352505297400057, 0.03176623210310936, -0.012048646807670593, -0.012374605983495712, 0.005867270287126303, -0.003964852541685104, 0.022319333627820015, -0.03136322647333145, 0.02896890603005886, -0.011604156345129013, 0.01910714991390705, -0.008226031437516212, -0.04859759286046028, 0.002484699944034219, 0.02510480396449566, -0.012066426686942577, -0.0339709036052227, -0.02033987082540989, 0.026218993589282036, -0.03650745749473572, -0.021465912461280823, 0.038546185940504074, -0.006536968983709812, -0.006928120274096727, -0.007194814272224903, 0.014057742431759834, 0.025578927248716354, 0.015811996534466743, -0.04470978304743767, -0.01376141607761383, -0.007099989801645279, -0.0010860376060009003, 0.014117008075118065, -0.05551978573203087, 0.019498301669955254, 0.02074287459254265, 0.019071592018008232, -0.003964852541685104, 0.028423665091395378, -0.01588311605155468, -0.019865747541189194, -0.06154114380478859, -0.015385285951197147, 0.018443379551172256, -0.019367918372154236, 0.0005904310964979231, 0.00020372465951368213, 0.03672081604599953, -0.019344212487339973, 0.013322851620614529, 0.016357237473130226, 0.010584792122244835, 0.006442144047468901, 0.030130507424473763, 0.006074699107557535, -0.02362317033112049, 0.019652392715215683, -0.0071059162728488445, 0.028897788375616074, 0.008101574145257473, -0.023338697850704193, 0.04037155956029892, 0.04070344567298889, -0.0017809239216148853, 0.009197982959449291, -0.005579833406955004, 0.040110792964696884, -0.012907994911074638, 0.001696470775641501, 0.02458326891064644, -0.01578829064965248, 0.0010875192238017917, 0.02989344485104084, -0.024962568655610085, -0.033804960548877716, -0.035440683364868164, 0.003991521894931793, -0.017803313210606575, -0.015171931125223637, 0.03266706317663193, 0.01479263324290514, -0.009399485774338245, 0.015527523122727871, -0.02180965058505535, -0.022295627743005753, -0.014958575367927551, 0.008534211665391922, 0.0006396954413503408, -0.01609647087752819, 0.020600637421011925, -0.035132501274347305, -0.0055235312320292, -0.0012349418830126524, -0.016060911118984222, -0.0038255788385868073, 0.018016668036580086, 0.0019231607438996434, 0.0061813765205442905, -0.015444551594555378, -0.05286469683051109, 0.001193456118926406, -0.03811947628855705, -0.07059688866138458, 0.030557217076420784, 0.02346908114850521, -0.026337524875998497, 0.03418425843119621, 0.03245370835065842, 0.02460697665810585, 0.005810968112200499, -0.006418438162654638, -0.012907994911074638, -0.005730960052460432, -0.0382142998278141, -0.019830187782645226, -0.005615392699837685, -0.021027348935604095, 0.04565802961587906, -0.0035618478432297707, 0.012208662927150726, -0.008166765794157982, 0.016179442405700684, -0.009411338716745377, -0.00065488216932863, -0.04627439007163048, -0.022011153399944305, -0.02863701991736889, 0.013951065018773079, 0.0057724458165466785, -0.014342215843498707, -0.021240703761577606, -0.006542895454913378, -0.01812334544956684, 0.01773219369351864, -0.003437390550971031, 0.00871200766414404, -0.048313118517398834, -0.01603720523416996, 0.016452062875032425, 0.018538203090429306, 0.0012067907955497503, 0.026290111243724823, -0.04150945693254471, -0.003024014877155423, 0.0003859656280837953, 0.0011408580467104912, 0.0038848440162837505, 0.008148986846208572, 0.005573906935751438, -0.032003290951251984, -0.02134738117456436, -0.03413684666156769, -0.011693054810166359, 0.044804610311985016, 0.01417627278715372, -0.015480111353099346, -0.0011697500012814999, 0.0028862229082733393, 0.029940858483314514, 0.029253380373120308, -0.010193641297519207, -0.007745982147753239, 0.004459718242287636, -0.009239468723535538, -0.032856713980436325, -0.034397613257169724, 0.006536968983709812, -0.04734116792678833, 0.016760243102908134, 0.0020535446237772703, 0.01951015554368496, 0.0018135198624804616, 0.0033484925515949726, -0.03148175776004791, -0.00539907393977046, 0.019901307299733162, -0.03032015636563301, -0.019225681200623512, -0.038261715322732925, -0.029632678255438805, -0.03240629658102989, 0.010602572001516819, 0.027333181351423264, 0.006525115575641394, -0.0021765201818197966, -0.007615598384290934, -0.030746866017580032, -0.036270398646593094, 0.000540796376299113, -0.04122498258948326, -0.008166765794157982, -0.013583619147539139, -0.043761540204286575, 0.022105976939201355, -0.0010015844600275159, 0.006862928159534931, 0.05419224128127098, -0.03563033044338226, -0.017720341682434082, -0.016736537218093872, 0.007544479798525572, -0.028826668858528137, 0.02383652701973915, -0.02605305053293705, -0.01677209511399269, -0.03176623210310936, -0.023279432207345963, 0.009992139413952827, 0.0017290667165070772, -0.004201913718134165, 0.042315464466810226, 0.01531416829675436, 0.0007815618882887065, -0.013974770903587341, -0.016949892044067383, 0.004145611543208361, 0.01873970590531826, 0.009535796009004116, 0.023386109620332718, 0.01622685417532921, -0.0027928799390792847, 0.020197633653879166, -0.0093105873093009, 0.0005700586480088532, -0.013216174207627773, 0.012694639153778553, 0.020256899297237396, -0.011989381164312363, 0.023362403735518456, -0.040537502616643906, -0.01594237983226776, 0.01572902500629425, 0.02101549506187439, 0.007046650629490614, -0.0024002469144761562, -0.008024529553949833, 0.014117008075118065, 0.009203909896314144, 0.013405823148787022, -0.02583969570696354, -0.004021154250949621, 0.005686510819941759, 0.006056919228285551, -0.025199629366397858, 0.012990966439247131, -0.016902480274438858, 0.00481531023979187, -0.004578248597681522, 0.0006696985219605267, 0.008172692731022835, 0.03250112012028694, 0.0037574234884232283, 0.00037466816138476133, -0.020719168707728386, -0.0055887228809297085, 0.04558691009879112, -0.02482033148407936, 0.006756250746548176, -0.0017023973632603884, -0.01825372874736786, 0.009589134715497494, 0.004243399482220411, -0.04501796513795853, 0.04731746017932892, -0.06163597106933594, -0.026076756417751312, 0.016795800998806953, -0.008581623435020447, -0.009280954487621784, -0.0006274719489738345, -0.026930177584290504, -0.014448894187808037, -0.0026299001183360815, 0.0328093022108078, 0.02503368631005287, -0.008937215432524681, 0.026029344648122787, 0.03266706317663193, 0.013808827847242355, -0.021240703761577606, -0.012072352692484856, 0.0002098364057019353, 0.0119656752794981, -0.029774915426969528, -0.01659430004656315, 0.042813293635845184, 0.0018594505963847041, -0.0007519291830249131, -0.005150159355252981, 0.010993723757565022, -0.026218993589282036, 0.005692437291145325, 0.040750857442617416, -0.022283773869276047, -0.0015571971889585257, 0.03354419022798538, -0.021157732233405113, 0.013038378208875656, -0.005428706761449575, 0.002142442623153329, 0.012493137270212173, -0.009660253301262856, -0.007094063330441713, 0.0025543367955833673, -0.03444502502679825, 0.017898136749863625, -0.002250602003186941, 0.012742051854729652, 0.011349315755069256, -0.010543306358158588, 0.00562131917104125, -0.002274308120831847, -0.021027348935604095, 0.007159254979342222, -0.028731845319271088, 0.02574487030506134, 0.0072718593291938305, 0.015610494650900364, 0.027665067464113235, 0.005796151701360941], [0.0201144777238369, 0.008103260770440102, 0.03920726478099823, 0.009610249660909176, -0.04201690852642059, 0.05828728526830673, 0.02315399795770645, 0.022528214380145073, 0.07407236099243164, 0.013997121714055538, -0.016960015520453453, -0.017087727785110474, 0.022515442222356796, -0.02611689269542694, -0.01776459440588951, 0.036040034145116806, -0.03271954879164696, 0.02807087078690529, -0.021161707118153572, 0.01564459316432476, 0.05731667950749397, 0.03080388531088829, -0.016461944207549095, 0.004754040855914354, -0.008384224958717823, -0.004619944375008345, 0.037853531539440155, 0.04477546364068985, 0.04308968037366867, -0.06492825597524643, 0.05225932598114014, -0.03187665715813637, 0.027125809341669083, -0.033485814929008484, 0.028709424659609795, 0.040637627243995667, -0.03956485539674759, 0.09997214376926422, -0.023498818278312683, 0.003416268387809396, -0.0792829692363739, -0.011660011485219002, 0.013613988645374775, -0.06339572370052338, -0.03190219774842262, 0.07013886421918869, 0.0161809790879488, -0.029118100181221962, -0.035554733127355576, 0.01855640299618244, -0.009163261391222477, -0.025784844532608986, 0.0023371106944978237, 0.0037036179564893246, 0.03859425336122513, 0.01625760644674301, -0.018096644431352615, 0.06278271228075027, 0.0063823554664850235, -0.026180747896432877, -0.006430246867239475, -0.018990620970726013, 0.017483631148934364, 0.04745739325881004, 0.002657984383404255, -0.008077718317508698, 0.01794338971376419, 0.04526076465845108, -0.05057354271411896, 0.042757630348205566, 0.01679399237036705, 0.016053268685936928, 0.02604026533663273, -0.06814657151699066, -0.011110854335129261, -0.02612966299057007, 0.07208006829023361, 0.012260252609848976, 0.020919056609272957, 0.008147959597408772, -0.011053384281694889, 0.013869410380721092, -0.015631822869181633, 0.048376914113759995, -0.0010847450466826558, 0.026104120537638664, -0.04847908392548561, 0.03231087327003479, -0.01277109608054161, 0.007943621836602688, -0.0031049728859215975, 0.0025478338357061148, -0.0006233891472220421, 0.029680028557777405, 0.01736869104206562, 0.011525915004312992, -0.011666396632790565, 0.0007447145762853324, -0.003914340864866972, 0.03752148151397705, -0.007515790406614542, -0.01693447306752205, -0.00623229518532753, 0.007439163513481617, -0.015146519988775253, -0.04574606567621231, -0.013167000375688076, 0.02766219526529312, 0.07994706183671951, 0.0025861470494419336, -0.04773835837841034, -0.021979056298732758, -0.045235224068164825, 0.09098128974437714, 0.01692170277237892, -0.025337856262922287, -0.04145497828722, 0.018760740756988525, 0.005073318257927895, -0.05256583169102669, -0.03300051391124725, -0.03642316535115242, 0.025606049224734306, 0.01869688555598259, -0.03701063618063927, -0.008748200722038746, -0.03098268061876297, 0.03667858988046646, -0.042757630348205566, -0.036934010684490204, 0.05277017131447792, -0.042323414236307144, -0.0017480438109487295, -0.08362513780593872, 0.027943158522248268, -0.0049519925378263, -0.017560258507728577, -0.047763898968696594, -0.02740677259862423, 0.004338980186730623, 0.027151351794600487, 0.03841545805335045, 0.08331863582134247, -0.007873380556702614, -0.03672967478632927, -0.03205545246601105, -0.0019731344655156136, 0.05156968906521797, 0.004393257200717926, 0.030037619173526764, -0.04888775572180748, -0.01022964809089899, 0.030778342857956886, 0.045056428760290146, 0.018581945449113846, 0.0202805008739233, 0.012547601945698261, 0.030088704079389572, -0.012017602100968361, 0.0005272068083286285, -0.05838945135474205, 0.0196674894541502, 0.005232956726104021, -0.05792969465255737, 0.015606279484927654, -0.047355227172374725, -0.001616341876797378, 0.0157339908182621, -0.0677378922700882, -0.05976873263716698, -0.055273305624723434, -0.010414829477667809, 0.01600218378007412, -0.04477546364068985, -0.027508942410349846, -0.03098268061876297, -0.015708448365330696, 0.025759302079677582, 0.054558124393224716, -0.004287895746529102, 0.013537362217903137, -0.029756654053926468, -0.029628943651914597, -0.010236034169793129, 0.008837598375976086, 0.011851577088236809, -0.02546556666493416, -0.0108107328414917, -0.003853678470477462, -0.012170854955911636, -0.013652302324771881, -0.024609902873635292, 0.03823666274547577, 0.04362606629729271, -0.03496726229786873, 0.003381147747859359, -0.018671343103051186, -0.015836158767342567, 0.027636652812361717, -0.007356151472777128, -0.0015333297196775675, -0.030088704079389572, 0.013435193337500095, 0.006992175243794918, -0.0502159520983696, -0.011896275915205479, -0.00040608094423078, -0.01578507572412491, 0.05090558901429176, -0.022170623764395714, 0.050803422927856445, 0.003968618344515562, -0.0792829692363739, 0.03169786185026169, 0.00039969541830942035, -0.009597479365766048, 0.0055266921408474445, 0.005641631782054901, -0.002935755765065551, 0.041174013167619705, 0.01578507572412491, 0.004281510133296251, 0.007349765859544277, -0.020254958420991898, -0.005855547729879618, 0.04283425584435463, -0.02899038977921009, -0.013396880589425564, -0.03928389400243759, -0.031800031661987305, -0.034456416964530945, 0.04411136731505394, -0.01701110042631626, 0.004811510443687439, -0.0399479903280735, 0.03946268931031227, 0.009035550989210606, -0.03468629717826843, 0.013499048538506031, 0.0143674835562706, 0.01839037798345089, 0.021276647225022316, 0.008620490320026875, 0.03999907523393631, 0.01140458881855011, 0.007988320663571358, -0.01930989697575569, 0.04612920060753822, -0.00014706715592183173, 0.0134607357904315, 0.02886267751455307, 0.007515790406614542, 0.011308806017041206, -0.010797961615025997, 0.017266523092985153, 0.04181256890296936, -0.019322669133543968, -0.007713742088526487, 0.02916918508708477, -0.06176102161407471, -0.015491340309381485, -0.018058329820632935, -0.0054277158342301846, 0.007317838259041309, -0.060228489339351654, -0.03169786185026169, 0.03946268931031227, 0.013141457922756672, 0.0161809790879488, 0.043472811579704285, -0.05644824728369713, 0.00408994359895587, -0.015619050711393356, -0.017713511362671852, -0.00640789745375514, -0.02072748914361, 0.03067617304623127, -0.0031145510729402304, -0.02042098343372345, 0.01305844634771347, -0.021889658644795418, 0.01244543306529522, -0.00573422247543931, -0.03514605760574341, -0.009578322060406208, 0.0037419311702251434, 0.025606049224734306, -0.03080388531088829, 0.010485069826245308, 0.03187665715813637, 0.03238749876618385, -0.03417545557022095, 0.007860610261559486, -0.0023147612810134888, 0.0046007875353097916, -0.026895929127931595, -0.03036966733634472, 0.006481331307440996, 0.028275206685066223, -0.01683230511844158, 0.0450819693505764, -0.0018853330984711647, 0.011615312658250332, 0.026180747896432877, -0.025963639840483665, 0.0072795250453054905, 0.013946037739515305, 0.011576998978853226, -0.017573028802871704, 0.016078811138868332, -0.0357079841196537, 0.017343148589134216, -0.04973065108060837, -0.0020258151926100254, 0.0015253478195518255, -0.01833929494023323, 0.016947245225310326, 0.000139184994623065, 0.011621697805821896, -0.01692170277237892, 0.03256629779934883, -0.02625737339258194, 0.009112177416682243, -0.008569405414164066, 0.0077328989282250404, -0.0198079701513052, 0.012011216022074223, 0.009016393683850765, -0.022821949794888496, -0.003987774718552828, -0.046563416719436646, -0.03946268931031227, 0.008345911279320717, -0.0201144777238369, -0.01808387227356434, -0.034533046185970306, -0.005207414738833904, -0.010070009157061577, -0.026104120537638664, -0.04538847506046295, 0.009252659045159817, -0.04623137041926384, 0.03726606070995331, 0.003534400835633278, -0.03879858925938606, -0.0080904895439744, -0.0072667538188397884, 0.027432315051555634, -0.018198812380433083, 0.028786052018404007, 0.012796638533473015, 0.01555519551038742, 0.009099406190216541, 0.022464359179139137, -0.05118655413389206, -0.013064831495285034, 0.0017049413872882724, -0.029143642634153366, -0.026895929127931595, 0.01715158298611641, 0.010983143001794815, 0.02740677259862423, -0.007426392752677202, 0.04497980326414108, 0.022336646914482117, -0.010600009933114052, -0.04467329382896423, 0.002016236772760749, 0.006414283066987991, -0.026793761178851128, 0.022208936512470245, 0.023933034390211105, -0.0350949726998806, -0.0076179588213562965, -0.019258813932538033, 0.03279617428779602, 0.008396996185183525, 0.036525335162878036, 0.00021471406216733158, 0.0011948957107961178, 0.059819817543029785, 0.03800678253173828, 0.0008580580470152199, 0.017662426456809044, 0.06140343099832535, 0.014827243052423, 0.0018885259050875902, -0.009571936912834644, 0.04582269489765167, -0.021404357627034187, -0.0050828964449465275, 0.008620490320026875, 0.01688339002430439, -0.01005723886191845, -0.03716389089822769, -0.01657688245177269, 0.021314959973096848, 0.04822365939617157, -0.02554219216108322, -0.03846654295921326, 0.002421719254925847, 0.004070787224918604, 0.013626759871840477, -0.025401711463928223, -0.004840245470404625, 0.03923280909657478, 0.008390610106289387, 0.003057081252336502, -0.0017831643344834447, -0.03964148461818695, -0.005319161806255579, -0.04403474181890488, 0.017355920746922493, -0.011883505620062351, 0.014150374568998814, 0.03547810763120651, -0.000976988929323852, 0.010172178037464619, 0.005794885102659464, 0.02528677135705948, 0.03111039102077484, -0.007388079073280096, 0.008748200722038746, -0.014852785505354404, -0.010510612279176712, -0.008084104396402836, -0.02710026688873768, 0.04669112712144852, 0.0020753031130880117, -0.06610319763422012, 0.015478569082915783, -0.0003156855527777225, 0.02439279481768608, 0.015746761113405228, -0.01833929494023323, -0.017598571255803108, -0.01144928764551878, -0.0623229518532753, -0.018505318090319633, -0.01022964809089899, -0.0007367326179519296, 0.023498818278312683, 0.010657479986548424, 0.06748247146606445, -0.019207729026675224, -0.020970139652490616, 0.003239069366827607, 0.04526076465845108, 0.01076603401452303, -0.034992802888154984, 0.002926177578046918, -0.002913406351581216, -0.05228487029671669, 0.003997353371232748, 0.004466691054403782, 0.013562904670834541, -0.013486278243362904, 0.0134607357904315, 0.012541216798126698, -0.03366461023688316, 0.04132726788520813, 0.04745739325881004, 0.023039057850837708, 0.01246459037065506, 0.003349220147356391, 0.03581015393137932, -0.009450611658394337, 0.01564459316432476, -0.011487601324915886, -0.00017939400277100503, -0.010070009157061577, -0.002926177578046918, 0.027508942410349846, 0.045235224068164825, 0.005746993236243725, -0.00941229797899723, -0.01736869104206562, -0.0435749813914299, -0.01582338847219944, -0.023715926334261894, -0.018224354833364487, 0.024073516950011253, -0.008658803068101406, -0.011130010709166527, 0.05029257759451866, 0.03254075348377228, 0.06850416213274002, 0.01137904729694128, -0.04025449603796005, -0.04194027930498123, -0.0420679934322834, 0.01244543306529522, 0.004626329522579908, -0.012777482159435749, -0.030216414481401443, 0.009316515177488327, 0.01600218378007412, -0.0010631937766447663, 0.05169739946722984, -0.032642923295497894, 0.01604049652814865, -0.009144105017185211, 0.027151351794600487, 0.011774950660765171, 0.07657549530267715, -0.018096644431352615, -0.019335439428687096, 0.0028734966181218624, 0.00700494647026062, -0.024763155728578568, -0.01140458881855011, 0.026998097077012062, 0.022374961525201797, 0.0002502336574252695, -0.015963871031999588, -0.04515859857201576, -0.0042431969195604324, -0.005699101835489273, -0.03601449355483055, -0.003990967757999897, -0.015759533271193504, -0.007835067808628082, -0.04400919750332832, -0.018467005342245102, 0.05379185825586319, 0.04459666833281517, 0.019475921988487244, -0.040816422551870346, -0.009150490164756775, -0.008984466083347797, -0.0008843984105624259, -0.039181724190711975, -0.003445003181695938, -0.008946153335273266, 0.01445688121020794, -0.026282915845513344, 0.036882925778627396, 0.03473738208413124, -0.0009745943243615329, -0.04610366001725197, -0.003678075736388564, -0.04171040281653404, 0.01657688245177269, -0.04058654606342316, 0.012745554558932781, 0.025733759626746178, 0.0064398255199193954, 0.0035503648687154055, 0.04058654606342316, -0.01720266602933407, 0.010772420093417168, 0.012515674345195293, 0.04472437873482704, -0.013447964563965797, -0.007056030910462141, 0.0021790682803839445, 0.00010092159209307283, 0.026717133820056915, 0.009195188991725445, 0.00804579071700573, 0.01923327147960663, -0.011896275915205479, -0.012336879037320614, 0.02758556790649891, 0.017598571255803108, 0.017470860853791237, -0.03134027123451233, -0.01683230511844158, -0.020178332924842834, 0.018058329820632935, -0.015453026629984379, 0.004849823657423258, 0.019284356385469437, 0.019220499321818352, 0.008365068584680557, 0.0496029369533062, 0.03356244042515755, -0.039845820516347885, 0.008926996029913425, -0.006743139121681452, 0.01208784244954586, -0.014022664166986942, -0.005418137647211552, -0.024201227352023125, -0.036755215376615524, 0.05542656034231186, 0.0018055137479677796, -0.03593786433339119, -0.028760509565472603, 0.00972518976777792, 0.005721451248973608, 0.027917616069316864, 0.02059977874159813, -0.02218339405953884, -0.02174917794764042, 0.02801978588104248, -0.02059977874159813, 0.024775927886366844, -0.03121255896985531, 0.04681884124875069, 3.721577377291396e-05, -0.02015279047191143, 0.03256629779934883, -0.005558619741350412, -0.00890783965587616, -0.04285980015993118, -0.0025590085424482822, -0.0344819612801075, -0.008218200877308846, 0.016372546553611755, 0.021557610481977463, -0.013613988645374775, 0.013396880589425564, 0.00941229797899723, -0.02674267627298832, 0.018186042085289955, -0.059513308107852936, 0.006564343348145485, -0.028479544445872307, -0.009757117368280888, 0.027457857504487038, -0.03575906902551651, 0.028121953830122948, 0.021953515708446503, -0.018313752487301826, -0.013294711709022522, 0.012636999599635601, -0.03831328824162483, 0.021200019866228104, 0.015874473378062248, -0.03460967168211937, 0.043651606887578964, 0.03238749876618385, 0.016908932477235794, -0.031135933473706245, -0.01491664070636034, -0.004112293012440205, -0.026717133820056915, 0.030574005097150803, -0.00018538044241722673, 0.03964148461818695, 0.006162053905427456, -0.012368806637823582, -0.005759764462709427, 0.0220939964056015, 0.011794107966125011, -0.003978196531534195, -0.009737960994243622, 0.011238564737141132, 0.0037100035697221756, 0.02523568645119667, -0.007930850610136986, 0.0196674894541502, -0.01945037953555584, 0.0015987816732376814, 0.008428923785686493, -0.019348211586475372, 0.05767427012324333, -0.008020248264074326, 0.04824920371174812, -0.05123763903975487, -0.0038728350773453712, 0.015197604894638062, -0.044443417340517044, 0.021289417520165443, 0.003802594030275941, 0.01724098064005375, 0.0243544802069664, 0.02076580375432968, -0.0453629344701767, -0.019871825352311134, -0.034814007580280304, -0.01173663791269064, -0.00696024764329195, -0.011110854335129261, -0.018045559525489807, -0.0019236464286223054, 0.01758579909801483, -0.009450611658394337, 0.05537547543644905, -0.028939304873347282, -0.015414713881909847, 0.02036989852786064, 0.06119909510016441, -0.012656156904995441, -0.016742907464504242, 0.002779309870675206, -0.004840245470404625, -0.0012467782944440842, 0.02126387506723404, -0.01896507851779461, 0.02372869662940502, 0.018939536064863205, -0.04188919812440872, 0.022170623764395714, 0.04543955996632576, 0.0251079760491848, -0.010248804464936256, -0.035733528435230255, 0.007451934739947319, 0.03478846698999405, 0.03310268372297287, -0.012387963943183422, -0.07703525573015213, -0.03649979457259178, 0.010995914228260517, 0.012138927355408669, 0.025337856262922287, -0.02988436631858349, -0.02717689238488674, 0.002723436336964369, -0.014929411932826042, -0.007720127701759338, 0.02426508255302906, -0.03897738456726074, -0.004402835387736559, -0.0335879847407341, -0.010255190543830395, 0.04459666833281517, 0.01509543601423502, -0.03279617428779602, 0.012279408983886242, -0.00972518976777792, -0.008441695012152195, 0.016014954075217247, -0.007624344434589148, 0.002643616870045662, -0.019654717296361923, -0.027304604649543762, 0.06094367057085037, -0.004348558373749256, 0.003860063850879669, -0.021647008135914803, 0.03701063618063927, -0.02758556790649891, -0.00031388961360789835, -0.010600009933114052, 0.0463079959154129, 0.003371569560840726, -0.014878327026963234, 0.01851809024810791, 0.005028619430959225, 0.016295919194817543, -0.04303859546780586, -0.011832420714199543, 0.019028933718800545, 0.03284725919365883, 0.011213022284209728, -0.03085496835410595, 0.04242558404803276, 0.01040844339877367, 0.010299889370799065, -0.009220731444656849, -0.018224354833364487, 0.012592300772666931, -0.010050852783024311, -0.007426392752677202, 0.019782427698373795, 0.017074955627322197, 0.02200459875166416, 0.006743139121681452, 0.0030762378592044115, 0.022081226110458374, 0.036397624760866165, 0.002907020738348365, 0.02293688990175724, -0.028121953830122948, -0.009488924406468868, -0.005746993236243725, 0.012407120317220688, 0.01518483366817236, -0.039054013788700104, -0.013575675897300243, 0.019820742309093475, 0.003694039536640048, -0.015453026629984379, -0.020497608929872513, 0.005418137647211552, -0.0054724146611988544, -0.01518483366817236, -0.00013299899001140147, -0.02444387786090374, 0.022247249260544777, 0.016653509810566902, 0.006174825131893158, -0.006513259373605251, 0.008531092666089535, 0.029756654053926468, 0.015120978467166424, 0.008971694856882095, -0.03338364511728287, 0.004351750947535038, -0.01067663636058569, -0.0022301527205854654, -0.016461944207549095, 0.0027186472434550524, -0.02315399795770645, -0.03583569824695587, -0.03284725919365883, 0.05011378228664398, -0.010025310330092907, 0.005293619353324175, -0.016155436635017395, -0.006337656639516354, 0.03274509310722351, 0.018709655851125717, -0.0550689697265625, -0.021021224558353424, -0.01830098032951355, -0.04694655165076256, -0.01896507851779461, 0.028045328333973885, 0.008492778986692429, 0.02899038977921009, 0.0010368534130975604, -0.019335439428687096, -0.02704918198287487, 0.029603401198983192, -0.0029597016982734203, -0.022655924782156944, 0.03218316286802292, 0.012349650263786316, 0.0014974110526964068, -0.016870617866516113, 0.06038174405694008, -0.018837368115782738, -0.0417359434068203, 0.004508196841925383, -0.00375150959007442, -0.04937306046485901, -0.001448721275664866, -0.015657363459467888, -0.0035375936422497034, 0.026589423418045044, -0.0029469304718077183, -0.02024218812584877, 0.0046869926154613495, 0.01776459440588951, 0.0012212360743433237, 0.015657363459467888, 0.028173038735985756, -0.0378279872238636, -0.03223424777388573, 0.036091119050979614, -0.02837737649679184, -0.009661334566771984, -0.005641631782054901, 0.004897715523838997, 0.004776390269398689, -0.003655726322904229, 0.00436452217400074, -0.027866533026099205, -0.005606511142104864, -0.017994474619627, 0.013933266513049603, -0.050190407782793045, 0.009444225579500198, -0.02598918043076992, -0.02232387661933899, -0.028837135061621666, 0.014393026009202003, -0.02381809428334236, 0.005609704181551933, 0.02789207547903061, 0.017164353281259537, -0.0009985400829464197, 0.009674105793237686, 0.03317930921912193, 0.0064398255199193954, 0.020574236288666725, 0.06574560701847076, 0.02020387537777424, -0.053587522357702255, -0.04319184646010399, -0.03987136483192444, -0.012317722663283348, 0.007969164289534092, 0.02135327272117138, -0.00595452357083559, -0.029015930369496346, 0.005657595582306385, 0.00283997249789536, 0.04048437625169754, -0.02095736935734749, -0.003422653768211603, -0.038696423172950745, -0.007164584938436747, 0.03062509000301361, 0.018441462889313698, 0.009731575846672058, 0.010657479986548424, 0.010976757854223251, -0.004520968068391085, -0.03527376800775528, 0.013843868859112263, -0.0034322321880608797, 0.0038153650239109993, -0.046205826103687286, 0.0013074410380795598, -0.03629545494914055, -0.030241956934332848, -0.005737415049225092, -0.017087727785110474, -0.008294827304780483, 0.006736753508448601, -0.00513717345893383, -0.0006189990672282875, -0.037495940923690796, -0.0008468833402730525, 0.010025310330092907, 0.00572464382275939, -0.005989644210785627, 0.006704825442284346, -0.0041569918394088745, 0.028147496283054352, 0.006768681108951569, -0.02002508006989956, 0.04017787054181099, -0.008652417920529842, 0.011149167083203793, 0.04973065108060837, 0.0024265083484351635, -0.0020497608929872513, -0.032157622277736664, -0.03243858367204666, -0.015018809586763382, -0.02863279916346073, -0.02347327582538128, -0.048376914113759995, -0.013358566910028458, 0.019424837082624435, 0.05895138159394264, 0.026104120537638664, 0.05486463010311127, 0.031008223071694374, 0.0010105130495503545, 0.001890122308395803, -0.0072795250453054905, 0.02656388096511364, -0.01151314377784729, 0.02717689238488674, 0.04730414226651192, 0.01817326992750168, 0.007611573673784733, -0.06257837265729904, -0.00283997249789536, -0.007407235912978649, 0.01612989418208599, -0.021314959973096848, -0.014980495907366276, 0.016627967357635498, 0.03300051391124725, -0.02801978588104248, -0.021672550588846207, -0.0029373522847890854, 0.005861933343112469, 0.005855547729879618, 0.009840129874646664, 0.0243544802069664, -0.010121094062924385, 0.04830028861761093, 0.04602703079581261, 0.033255934715270996, -0.010772420093417168, 0.03716389089822769, 0.004744462203234434, -0.0008780128555372357, 0.02200459875166416, -0.024252312257885933, -0.011417360045015812, 0.009061092510819435, -0.012234710156917572, 0.013396880589425564, -0.0073369950987398624, -0.005967294797301292, 0.01586170122027397, -0.008556634187698364, 0.007783983368426561, -0.0027553641702979803, 0.02929689548909664, 0.013780012726783752, 0.049705106765031815, 0.026091350242495537, 0.008358682505786419, -0.003917533904314041, 0.0024360865354537964, 0.0450819693505764, -0.008313983678817749, 0.018096644431352615, -0.006069463677704334, -0.026666048914194107, 0.02669159136712551, -0.02457159012556076, 0.015593509189784527, -0.010842660441994667, 0.06911717355251312, 0.020842429250478745, -0.006570728961378336, -0.0006852491642348468, -0.005022233817726374, 0.05537547543644905, -0.034635212272405624, -0.0006014388054609299, 0.0027968701906502247, 0.0076754288747906685, 0.00696024764329195, 0.026589423418045044, -0.0031720211263746023, -0.00782229658216238, 0.01063193753361702, -0.025580506771802902, 0.026921471580863, -0.035861238837242126, 0.024673758074641228, -0.008939767256379128, -0.053587522357702255, 0.06426415592432022, -0.02801978588104248, -0.014635676518082619, 0.006059885490685701, -0.02922026813030243, 0.028224123641848564, 0.026717133820056915, 0.023486046120524406, 0.011506757698953152, -0.014035435393452644, 0.007981935515999794, 0.00400054594501853, 0.01319254282861948, -0.001926839235238731, 0.020229415968060493, -0.007017717696726322, 0.015836158767342567, 0.02832629159092903, 0.008786514401435852, 0.03979473561048508, 0.027432315051555634, -0.014584592543542385, -0.05598848685622215, 0.004987113177776337, -0.020523151382803917, -0.013652302324771881, -0.014124833047389984, 0.021736405789852142, 0.028760509565472603, 0.018186042085289955, 0.014571821317076683, -0.005810848902910948, 0.002985243685543537, 0.020446525886654854, 0.0038983772974461317, 0.0372149758040905, -0.0189139936119318, -0.05126317963004112, -0.0005168303032405674, 0.02554219216108322, 0.018709655851125717, -0.008422537706792355, -0.00016422831686213613, -0.016372546553611755, 0.0260274950414896, -0.021761948242783546, 0.00963579211384058, 0.020714718848466873, 0.00817988719791174, -0.013843868859112263, -0.02483978308737278, 0.015287002548575401, 0.017266523092985153, -0.018684113398194313, 0.01794338971376419, -0.013294711709022522, 0.043907031416893005, 0.014124833047389984, 0.05517113581299782, 0.012075072154402733, -0.0019443994387984276, -0.03805786743760109, 0.0016251220367848873, 0.028275206685066223, -0.008926996029913425, 0.010880974121391773, 0.00800109189003706, -0.0202805008739233, 0.015529653057456017, -0.028045328333973885, -0.0201144777238369, -0.00379620841704309, -0.03031858243048191, 0.01830098032951355, 0.004310245160013437, 0.03128918632864952, -0.012956277467310429, 0.02735568769276142, -0.015325315296649933, 1.4355011444422416e-05, 0.04222124442458153, 0.01355013344436884, 0.014840014278888702, -0.013179771602153778, 0.00019336238619871438, 0.042936425656080246, 0.00032047470449469984, 0.008563020266592503, 0.05075233802199364, -0.006985789630562067, -0.005721451248973608, 0.02625737339258194, -0.008614104241132736, 0.0035375936422497034, 0.02395857684314251, 0.02855617180466652, -0.01634700410068035, -0.03637208417057991, 0.005517113488167524, 0.0008253321284428239, -0.016768449917435646, -0.0059641022235155106, 0.018109414726495743, 0.01113639585673809, -0.005746993236243725, -0.009552780538797379, -0.006896391976624727, -0.015031580813229084, 0.01160254143178463, -0.008454466238617897, 0.008856755681335926, 0.013652302324771881, 0.00011294438445474952, -0.009105791337788105, -0.015108207240700722, -0.008971694856882095, -0.018799053505063057, 0.0022908153478056192, 0.024827010929584503, 0.019922910258173943, -0.0068133799359202385, -0.031851112842559814, -0.015057122334837914, -0.029935449361801147, 0.051518604159355164, 0.01727929338812828, -0.0024344902485609055, -0.014022664166986942, -0.014840014278888702, 0.02523568645119667, 0.0034545816015452147, 0.0762689858675003, 0.02054869383573532, -0.0022540984209626913, 0.0031784067396074533, 0.027611110359430313, -0.05287234112620354, 0.004760426003485918, 0.011308806017041206, 0.002139158546924591, 0.038262203335762024, -0.003531208261847496, 0.023039057850837708, -0.03116147592663765, 0.013805555179715157, -0.000999338342808187, 0.03251521289348602, 0.04334510117769241, 0.03289834409952164, 0.011161938309669495, -0.010702178813517094, 0.016806762665510178, -0.00782229658216238, 0.02333279326558113, -0.004342172760516405, -0.03805786743760109, -0.030701715499162674, -0.04370269179344177, -0.010421214625239372, -0.013045675121247768, -0.00021311767341103405, 0.006998560857027769, 0.03111039102077484, -0.02593809738755226, -0.001657049753703177, 0.011608926579356194, -0.02223447896540165, -0.0016442786436527967, -0.009476153180003166, 0.0314679816365242, 0.015044352039694786, -0.02584869973361492, -0.020229415968060493, 0.008173502050340176, 0.001240392797626555, -0.011347118765115738, 0.04229786992073059, -0.017611341550946236, -0.02076580375432968, 0.01144928764551878, -0.017879534512758255, 0.01781567931175232, 0.0005766948452219367, -0.010178564116358757, 0.013728928752243519, 0.01058723870664835, 0.015848930925130844, -0.004757233429700136, -0.05517113581299782, -0.023371106013655663, -0.015414713881909847, 0.009763503447175026, 0.0228474922478199, 0.013345795683562756, 0.016551341861486435, 0.03067617304623127, 0.0006289765005931258, -0.026921471580863, -0.010932059027254581, -0.00370681076310575, -0.02492918074131012, -0.0050477758049964905, -0.0033779549412429333, -0.01253483071923256, -0.006513259373605251, 0.02832629159092903, 0.02904147282242775, 0.02045929618179798, 0.025644361972808838, -0.02886267751455307, 0.01625760644674301, -0.03266846388578415, -0.04199136421084404, 0.04763618856668472, 0.03529931232333183, 0.013575675897300243, -0.02922026813030243, -0.00012761118705384433, -0.007886151783168316, -0.021506525576114655, 0.03455858677625656, -0.02758556790649891, -0.006615427788347006, -0.017841221764683723, 0.006653741467744112, -0.002247713040560484, 0.0027633460704237223, -0.017177125439047813, -0.03879858925938606, -0.00354717206209898, -0.012253867462277412, -0.01600218378007412, -0.027560025453567505, -0.02248990163207054, 0.01772628165781498, 0.004374100361019373, 0.0006297747022472322, 0.01711326837539673, 0.01816049963235855, -0.00334283453412354, 0.0005591345834545791, -0.025746529921889305, 0.013269169256091118, 0.004562474321573973, -0.011110854335129261, -0.018505318090319633, -0.010887359268963337, 0.014035435393452644, -0.01692170277237892, -0.0008604526519775391, 0.0058874753303825855, 0.012304951436817646, 0.02280917763710022, -0.008824828080832958, -0.004329401534050703, 0.022170623764395714, 0.026538338512182236, -0.048019323498010635, 0.048862215131521225, -0.012075072154402733, 0.01290519256144762, 0.03335810452699661, 0.028045328333973885, 0.047048717737197876, -0.02187688834965229, -0.013639531098306179, 0.014993267133831978, -0.009124948643147945, 0.0017017485806718469, -0.017930619418621063, -0.0059577166102826595, -0.008850369602441788, 0.007471091579645872, -0.003013978712260723, 0.004393257200717926, -0.01018494926393032, 0.0072795250453054905, -0.018773511052131653, -0.020842429250478745, 0.01018494926393032, 0.03320484980940819, 0.012368806637823582, 0.016066038981080055, -0.008703501895070076, 0.029756654053926468, 0.015759533271193504, -0.0034130755811929703, 0.011283263564109802, -0.03031858243048191, 0.005210607312619686, -0.014405797235667706, 0.0024121408350765705, 0.030037619173526764, -0.0076882001012563705, 0.01144928764551878, -0.014546278864145279, -0.0028591291047632694, 0.010261575691401958, 0.004489040467888117, -0.03440533205866814, 0.02532508410513401, -0.01299459021538496, -0.04697209224104881, 0.0077328989282250404, 0.009623020887374878, -0.03496726229786873, 0.010038081556558609, 0.010465913452208042, -0.006040728650987148, -0.027432315051555634, -0.0001861786440713331, 0.035988949239254, -0.0026611771900206804, -0.018709655851125717, 0.013294711709022522, -0.025388939306139946, -0.019922910258173943, 0.016206521540880203, 0.0024871709756553173, 0.041046302765607834, 0.010280732996761799, 0.02453327551484108, -0.01745808869600296, -0.01684507541358471, -0.0423489548265934, -0.018530860543251038, -0.0459759458899498, 0.03642316535115242, 0.0305484626442194, -0.04472437873482704, -0.01204314362257719, 0.006679283455014229, 0.024073516950011253, 0.04944968596100807, -0.001985905459150672, -0.019246041774749756, -0.05121209844946861, -0.012528445571660995, 0.012656156904995441, 0.025222916156053543, -0.005798077676445246, 0.051646314561367035, 0.0004705350729636848, 0.0011869138106703758, -0.031748946756124496, 0.028173038735985756, -0.011653625406324863, 0.029782196506857872, 0.01241989154368639, 0.002437683055177331, -0.007720127701759338, -0.00288946065120399, -0.008601333014667034, 0.015338086523115635, 0.01767519675195217, -0.018543632701039314, 0.015925556421279907, 0.013115916401147842, 0.026717133820056915, 0.02492918074131012, -0.002838376211002469, 0.05154414474964142, -0.014610134065151215, -0.01847977750003338, -0.021979056298732758, -0.03517159819602966, -0.023090142756700516, -0.006717596668750048, 0.04229786992073059, -0.030829427763819695, 0.0041282568126916885, 0.017138810828328133, -0.024035204201936722, -0.024060744792222977, 0.01785399205982685, 0.022515442222356796, 0.02922026813030243, 0.031084848567843437, -0.02595086768269539, -0.017687968909740448, -0.02417568489909172, -0.0010815522400662303, -0.01688339002430439, 0.034711841493844986, -0.01781567931175232, 0.016513027250766754, -0.017534716054797173, 0.02506966143846512, 0.0072922962717711926, 0.0006672897725366056, -0.010727721266448498, -0.02036989852786064, -0.04584823548793793, 0.03527376800775528, -0.010523383505642414, 0.011640854179859161, 0.031927742063999176, -0.038211122155189514, -0.031187018379569054, -0.03529931232333183, 0.00782229658216238, -0.031059306114912033, 0.026717133820056915, 0.012234710156917572, -0.020344356074929237, -0.021493755280971527, -0.020612549036741257, 0.007030488457530737, 0.027636652812361717, 0.0139204952865839, 0.029909908771514893, 0.013652302324771881, 0.03619328886270523, -0.014597362838685513, -0.023524358868598938, -0.0038728350773453712, 0.019131101667881012, -0.0004449928819667548, 0.011832420714199543, 0.019475921988487244, -0.006015186198055744, 0.0211744774132967, -0.0019587669521570206, 0.010612781159579754, -0.011813264340162277, 0.018633030354976654, 0.012426276691257954, -0.009405912831425667, -0.0067495242692530155, -0.014878327026963234, -0.004441148601472378, -0.026844844222068787, -0.014175917021930218, -0.008837598375976086, -0.011985673569142818, -0.013333024457097054, -0.015299773775041103, 0.02970557101070881, 0.01509543601423502, -0.023486046120524406, -0.0323619581758976, -0.016640739515423775, 0.005079703405499458, -0.028147496283054352, -0.03351135551929474, -0.0011956938542425632, 0.013626759871840477, 0.0037866299971938133, 0.02550387941300869, -0.02259206958115101, 0.02916918508708477, -0.012573144398629665, 0.00817988719791174, -0.01204314362257719, 0.008084104396402836, 0.04171040281653404, -0.0071837417781353, -0.03849208354949951, -0.011130010709166527, 0.0013162210816517472, 0.020842429250478745, -0.018620258197188377, -0.0028719003312289715, 0.02090628445148468, -0.00996784120798111, -0.00981458742171526, 0.024584360420703888, -0.005178679712116718, -0.009150490164756775, 0.0012292180908843875, -0.02593809738755226, 0.048555709421634674, -0.013141457922756672, -0.0013489470584318042, 0.023051830008625984, -0.012566759251058102, 0.011972903273999691, 0.005130787845700979, 0.0033172923140227795, -0.011640854179859161, 0.0034130755811929703, 0.010983143001794815, -0.003987774718552828, -0.006158861331641674, -0.0058874753303825855, -0.0006229900754988194, 0.013613988645374775, 0.005392595659941435, 0.0009865672327578068, 0.002372231101617217, -0.020791344344615936, 0.005172294098883867, 0.006762295495718718, -0.030906053259968758, -0.0143674835562706, 0.01612989418208599, -0.0072859106585383415, 0.021723635494709015, -0.004849823657423258, -0.00026599798002280295, 0.038389917463064194, 0.007068801671266556, 0.017802909016609192, 0.01914387382566929, 0.00227165874093771, 0.03716389089822769, -0.006200367119163275, 0.01785399205982685, 0.027202434837818146, -0.015465797856450081, 0.019156644120812416, 0.00183105596806854, -0.028275206685066223, 0.005418137647211552, -0.02227279171347618, 0.051288723945617676, 0.001430362812243402, 0.0038441000506281853, 0.03422653675079346, -0.0134607357904315], [-0.0007742119487375021, -0.038749683648347855, -0.010565362870693207, -0.029825951904058456, -0.025328006595373154, 0.03425173833966255, -0.033000972121953964, 0.051954884082078934, 0.022597970440983772, 0.019338762387633324, 0.007191902957856655, 0.010312804020941257, 0.019531188532710075, 0.00977160781621933, -0.023969002068042755, 0.03526197373867035, -0.014071114361286163, 0.05421588569879532, -0.025592591613531113, -0.0005408208817243576, 0.036055728793144226, 0.004594158846884966, 0.013325465843081474, 0.005114309024065733, -0.018436769023537636, -0.03651273995637894, -0.0218402948230505, -0.06022918224334717, 0.041106898337602615, -0.05484126880764961, 0.07581564784049988, -0.037763506174087524, 0.058834098279476166, -0.02515963464975357, 0.020216703414916992, 0.016127662733197212, 0.02999432571232319, 0.03531007841229439, 0.04945335537195206, -0.014239487238228321, -0.05931515991687775, 0.02376454882323742, 0.016296034678816795, 0.003313326509669423, 0.02229730412364006, 0.029417049139738083, 0.0647030770778656, 0.011407224461436272, -0.036825429648160934, 0.022489730268716812, -0.00298710516653955, 0.024401959031820297, 0.024185480549931526, 0.015526332892477512, 0.021876374259591103, -0.008148017339408398, 0.01053529605269432, 0.014888922683894634, 0.0347568579018116, 0.014768657274544239, 0.006524427328258753, -0.011497423984110355, -0.02457033097743988, 0.07047583907842636, -0.04550863057374954, 0.018220290541648865, -0.022285278886556625, 0.03261612355709076, -0.05007873475551605, 0.018569061532616615, -0.032231271266937256, 0.009350677020847797, 0.0018731419695541263, -0.05339807644486427, 0.00858097430318594, 0.062009118497371674, 0.01615171507000923, -0.013529918156564236, 0.053109437227249146, 0.04247792810201645, -0.0034005194902420044, 0.032495856285095215, -0.0488760769367218, 0.006476320791989565, 0.013121013529598713, -0.04699992761015892, -0.07365085929632187, 0.014912975952029228, -0.01965145394206047, 0.008550908416509628, -0.01882161945104599, -0.02927272953093052, -0.01825636997818947, 0.038052141666412354, 0.03237558901309967, 0.015285801142454147, -0.01248360425233841, -0.0012319742236286402, -0.043055206537246704, 0.026073655113577843, 0.006380108185112476, -0.0035779117606580257, 0.011942408047616482, -0.007276089396327734, 0.024654516950249672, -0.042309556156396866, -0.00718588987365365, 0.03822051361203194, 0.036079782992601395, -0.0076128337532281876, -0.02096235379576683, 8.305866504088044e-05, -0.006897251587361097, 0.07163039594888687, 0.028142228722572327, 0.0004863253852818161, 0.007426421623677015, 0.006061403080821037, 0.006897251587361097, -0.012519683688879013, -0.00882150698453188, 0.009855793789029121, 0.056188248097896576, -0.07345843315124512, -0.008400576189160347, -0.031100772321224213, -0.03927885368466377, -0.014576232060790062, -0.04264630004763603, 0.01727018877863884, 0.0709087997674942, -0.00441075349226594, 0.04012071713805199, -0.03155778348445892, -0.012423471547663212, 0.0023993055801838636, -0.0041130948811769485, -0.02328348532319069, -0.011635729111731052, -0.03603167459368706, 0.02662687934935093, 0.006392134819179773, 0.06378905475139618, 0.027685219421982765, -0.012447524815797806, -0.0007261055870912969, 0.0035869316197931767, 0.03735459968447685, -0.006680772639811039, -0.012543736957013607, -0.027661165222525597, -0.02826249599456787, -0.020012252032756805, 0.002829256234690547, -0.058401141315698624, 0.016849257051944733, -0.007402368355542421, 0.017330322414636612, -0.03422768414020538, 0.014347726479172707, -0.023439832031726837, -0.05686173588037491, -0.005562299862504005, -0.0033674463629722595, 0.0218402948230505, -0.020361023023724556, 0.009669381193816662, 0.0032622136641293764, -0.049309033900499344, 0.013253306038677692, -0.020252784714102745, 0.007059610448777676, -0.003797397017478943, -0.036584898829460144, -0.01681317761540413, -0.08548502624034882, -0.030619706958532333, 0.012519683688879013, 0.007095690350979567, -0.008526855148375034, -0.012387391179800034, 0.010475163348019123, -0.03220721706748009, 0.018989991396665573, -0.023067006841301918, 0.030523495748639107, 0.0261458158493042, -0.011996527202427387, -0.004467879422008991, -0.009254463948309422, -0.04199686646461487, 0.003039721632376313, -0.012651977129280567, 0.013986928388476372, -0.022261224687099457, 0.05060790851712227, 0.010896094143390656, 0.013517891056835651, 0.009266490116715431, 0.019507134333252907, 0.023680362850427628, -0.012651977129280567, 0.006073429714888334, 0.029898112639784813, -0.03218316659331322, -0.013181147165596485, 0.0006468052743002772, 0.0011162182781845331, 0.04623022675514221, -0.026242027059197426, -0.007390341721475124, 0.01260387059301138, -0.04897229000926018, -0.012748189270496368, -0.019350789487361908, 0.03860536590218544, 0.03624815493822098, -0.05440831184387207, 0.02109464630484581, 0.04815448075532913, -0.0029720719903707504, -0.038966163992881775, 0.011304997839033604, -0.011822141706943512, 0.006542467046529055, 0.018881753087043762, 0.006458281073719263, -0.02778143249452114, -0.04317547008395195, -0.06859969347715378, -0.0201325174421072, 0.0201325174421072, -0.05474505573511124, 0.010523269884288311, -0.037522971630096436, 0.04216523841023445, -0.03579114377498627, -0.04214118421077728, 0.013842609710991383, -0.032255325466394424, 0.0155744394287467, -0.036344368010759354, -0.018220290541648865, 0.009747554548084736, 0.00823220331221819, -0.0316539965569973, -0.006229775492101908, -0.010625495575368404, 0.030114591121673584, -0.030018378049135208, 0.030739974230527878, -0.038461048156023026, 0.024846943095326424, -0.087361179292202, 0.015538359060883522, 0.04382490739226341, 0.04810637608170509, -0.021912453696131706, 0.031269144266843796, -0.06455875188112259, 0.029368942603468895, -0.010890080593526363, -0.0025015315040946007, -0.016704939305782318, -0.05253216251730919, -0.041852544993162155, 0.04317547008395195, 0.001436426304280758, -0.006446254439651966, 0.057150375097990036, -0.04959767311811447, 0.0038515166379511356, -0.007059610448777676, 0.0025466312654316425, 0.0130729079246521, -0.00648233387619257, 0.015009189024567604, -0.033000972121953964, -0.015069321729242802, 0.05084843933582306, -0.057150375097990036, -0.043752748519182205, -0.021130725741386414, -0.03259206935763359, -0.012748189270496368, 0.01132303848862648, 0.03239964321255684, -0.019422948360443115, 0.003776350524276495, 0.00870124064385891, 0.047865841537714005, 0.0007490313146263361, 0.030282963067293167, -0.0280460175126791, 0.06484739482402802, 0.006344028282910585, -0.001206417684443295, -0.0030457349494099617, 0.021323150023818016, -0.013614104129374027, 0.030884291976690292, 0.01692141778767109, 0.015081348828971386, -0.056188248097896576, 0.002808209741488099, 0.0609026700258255, 0.00584191782400012, 0.009543102234601974, -0.003656084416434169, -0.03497333452105522, 0.002564671216532588, 0.05200299248099327, -0.05051169544458389, -0.018328528851270676, -0.0032050872687250376, -0.05440831184387207, -0.03665705770254135, 0.007059610448777676, -0.017017630860209465, -0.022309331223368645, 0.05402345955371857, 0.018701354041695595, 0.013602077960968018, -0.009086092002689838, 0.02291066199541092, 0.009001905098557472, 0.028382761403918266, 0.015550386160612106, -0.03879779204726219, -0.00803376454859972, 0.02924867533147335, -0.012044633738696575, 0.03742675855755806, -0.04702398180961609, 0.012098753824830055, -0.016296034678816795, 0.0025015315040946007, 0.008111937902867794, -0.04072204604744911, 0.02347591146826744, 0.05411967262625694, -0.0017603926826268435, -0.04175633192062378, 0.03648868575692177, 0.0024098288267850876, -0.008406588807702065, 0.061961010098457336, 0.016452379524707794, -0.0076609402894973755, 0.027997910976409912, 0.019182417541742325, -0.01012037880718708, -0.015382013283669949, -0.04906850308179855, -0.01917039044201374, -0.008081871084868908, 0.04449839890003204, -0.01665683276951313, 0.015382013283669949, 0.03932696208357811, 0.0049459366127848625, 0.019591322168707848, 0.03148562088608742, 0.03862942010164261, -0.02048128843307495, 0.013758423738181591, -0.024389931932091713, 0.006356054916977882, -0.003926682751625776, -0.026987675577402115, 0.03718622773885727, 0.04216523841023445, 0.0636928379535675, 0.006338014733046293, -0.009729514829814434, -0.008214163593947887, 0.018280422315001488, 0.033457983285188675, -0.04979009926319122, -0.025328006595373154, -0.031100772321224213, 0.033000972121953964, 0.022044746205210686, 0.03182236850261688, 0.06316366791725159, 0.039904236793518066, -0.0633079931139946, 0.027949804440140724, -0.011695862747728825, -0.013193173334002495, 0.009206357412040234, 0.004443826619535685, -0.015045268461108208, -0.022477703168988228, 0.03167804703116417, 0.02756495214998722, 0.04372869431972504, 0.0584973506629467, -0.0018641219940036535, -0.03208695352077484, -0.0026488571893423796, -0.04055367410182953, -0.0015529339434579015, -0.0471682995557785, -0.030379176139831543, -0.03095645271241665, 0.001351488521322608, -0.03155778348445892, 0.02855113334953785, -0.0015138474991545081, 0.03718622773885727, 0.028430867940187454, 0.05233973637223244, 0.01678912527859211, 0.0065605067647993565, -0.017414508387446404, 0.0020385077223181725, 0.05921894684433937, 0.03220721706748009, -0.01270008273422718, 0.04139553755521774, 0.023993054404854774, 0.04459460824728012, -0.029441101476550102, -0.0032171139027923346, -0.0004540039226412773, -0.0007802252657711506, 0.03574303537607193, -0.009927953593432903, -0.06754135340452194, 0.0405777283012867, 0.006199709139764309, -0.007588780485093594, 0.018701354041695595, 0.012507657520473003, -0.038942109793424606, 0.020336970686912537, 0.004263427574187517, -0.005902050994336605, -0.04216523841023445, 0.0008057818049564958, 0.03699380159378052, 0.004543046001344919, 0.001159814652055502, -0.017342347651720047, -0.020565476268529892, -0.01908620446920395, 0.0012725639389827847, -0.008779413066804409, 0.005156402010470629, 0.0021647869143635035, 0.014323673211038113, -0.060806456953287125, 0.013866662979125977, -0.023932920768857002, -0.034636590629816055, -0.004813644103705883, -0.023067006841301918, 0.04851527884602547, -0.021082619205117226, -0.023560097441077232, 0.06239396706223488, 0.04392112046480179, 0.027420634403824806, 0.06388526409864426, 0.030307017266750336, 0.001581497141160071, -0.03622410073876381, 0.0161757692694664, -0.015345933847129345, 0.0009365709847770631, 0.004395720083266497, 0.00635004136711359, 0.004233361221849918, 0.03735459968447685, 0.009867819957435131, -0.009416823275387287, -0.06590573489665985, -0.019447002559900284, -0.02470262348651886, 0.011431277729570866, 0.006722866091877222, -0.011900314129889011, -0.04067394137382507, 0.03326555714011192, 0.02544827200472355, 0.04483514279127121, -0.031726155430078506, -0.02638634666800499, -0.03793187811970711, -0.01577889174222946, -0.026674985885620117, 0.021647868677973747, -0.011004333384335041, -0.019988199695944786, -0.006578546948730946, -0.030547548085451126, 0.01078785490244627, 0.04476298391819, -0.026699038222432137, -0.03579114377498627, -0.029825951904058456, -0.02288660779595375, 0.01585105061531067, 0.07110122591257095, -0.01724613644182682, -0.008659147657454014, -0.04721640795469284, 0.013734370470046997, -0.04315141960978508, -0.038966163992881775, 0.016861284151673317, 0.022489730268716812, -0.008093897253274918, -0.017919624224305153, -0.025303954258561134, -0.014311647042632103, 0.02107059210538864, -0.00506018940359354, -0.014744604006409645, 0.012591843493282795, 0.016849257051944733, -0.007654926739633083, -0.022092852741479874, 0.007630873937159777, 0.03045133501291275, 0.004834690596908331, -0.032976921647787094, -0.002746573416516185, -0.008208150044083595, -0.02590528316795826, -0.06282692402601242, -0.05258026719093323, 0.011046426370739937, 0.025135580450296402, 0.008839546702802181, -0.0022189065348356962, 0.0018505920888856053, -0.013998955488204956, -0.027492793276906013, 0.012243072502315044, -0.007715059909969568, 0.013950848951935768, 0.032736387103796005, 0.025303954258561134, -0.004843710456043482, -0.0008050301112234592, -0.018400687724351883, 0.02544827200472355, 0.00435663340613246, 0.024798836559057236, -0.02467857114970684, 0.015790916979312897, -0.03220721706748009, -0.006903264671564102, 0.0013349519576877356, 0.045893482863903046, -0.004227347671985626, 0.011238851584494114, 0.007937551476061344, 9.019944991450757e-05, 0.0068852249532938, -0.024750730022788048, -0.006801038980484009, -0.006079443264752626, -0.006422201171517372, 0.0013402135809883475, 0.023704417049884796, -0.011659782379865646, 0.0011710895923897624, -0.023944947868585587, 0.02778143249452114, -0.0016686898889020085, 0.014888922683894634, 0.020036304369568825, -0.004302513785660267, 0.004302513785660267, -0.044955406337976456, 0.0194349754601717, 0.004534025676548481, 0.04247792810201645, -0.00028807451599277556, 0.002307602670043707, -0.0006475569098256528, 0.004380686674267054, 0.004320553969591856, -0.012188952416181564, -0.023752523586153984, -0.006151602603495121, 0.04630238562822342, -0.015706731006503105, 0.01654859259724617, -0.0073963552713394165, 0.003776350524276495, -0.006734892725944519, 0.014888922683894634, 0.024510197341442108, 0.024798836559057236, -0.003415552666410804, -0.023139165714383125, -0.0007486554677598178, -0.006115523166954517, -0.011990513652563095, 0.014455965720117092, -0.02325943298637867, -0.008015724830329418, -0.01652454026043415, -0.009344663470983505, 0.011304997839033604, -0.004639258608222008, 0.01911025680601597, 0.01884567178785801, 0.05893031135201454, -0.04149174690246582, -0.0571022666990757, 0.009254463948309422, -0.022585943341255188, -0.06580951809883118, -0.016849257051944733, 0.006969410926103592, -0.018196236342191696, -0.008454695343971252, 0.027516847476363182, 0.019374841824173927, -0.003893609857186675, -0.0035027454141527414, -0.02881571836769581, -0.06489550322294235, 0.002459438517689705, -0.022441623732447624, -0.017630986869335175, 0.042574141174554825, 0.050223056226968765, 0.011473370715975761, -0.0130729079246521, -0.01911025680601597, 0.0211788322776556, 0.01921849697828293, 0.009555128403007984, 0.031124824658036232, 0.030042432248592377, -0.020457236096262932, 0.0237404964864254, -0.04242982342839241, 0.038268622010946274, 0.005616419482976198, 0.02612176164984703, 0.014059088192880154, 0.025111528113484383, 0.00408302852883935, 0.034636590629816055, -0.029922164976596832, 0.01764301396906376, -0.018304476514458656, 0.02387278899550438, 0.008370509371161461, 0.04175633192062378, 0.047601256519556046, 0.0244380384683609, 3.866362021653913e-05, -0.013638157397508621, 0.00773309962823987, -0.01911025680601597, 0.009392770007252693, 0.045388363301754, 0.019362816587090492, 0.056188248097896576, 0.002827752847224474, -0.004080021753907204, -0.032447751611471176, 0.010415030643343925, 0.005216535180807114, 0.008779413066804409, -0.022104879841208458, -0.03018674999475479, 0.033482037484645844, -0.049741990864276886, 0.013541944324970245, -0.03338582441210747, 0.00788944587111473, -0.04202091693878174, -0.021515576168894768, 0.0018190223490819335, 0.00803376454859972, -0.007197916507720947, -0.0017363395309075713, 0.017919624224305153, -0.01221901923418045, 0.002554147969931364, -0.0065725333988666534, -0.014323673211038113, 0.0340593121945858, 0.023403750732541084, -0.03709001466631889, 0.02515963464975357, -0.01268805656582117, -0.008430642075836658, -0.018388662487268448, -0.01868932694196701, -0.0034726790618151426, 0.0022910661064088345, 0.005430006887763739, 0.00516542186960578, -0.03239964321255684, -0.01625995524227619, 0.004019889049232006, -0.023776575922966003, 0.030836187303066254, 0.048298802226781845, 0.006398147903382778, -0.01606752909719944, -0.017390454187989235, -0.0019122284138575196, -0.004777564201503992, -0.03355419635772705, 0.04875580966472626, -0.029633527621626854, -0.011774035170674324, 0.020409129559993744, 0.007841339334845543, -0.03309718519449234, 0.03742675855755806, -0.0021647869143635035, -0.016007395461201668, 0.007522634230554104, -0.0025586578994989395, -0.014732577838003635, 0.013806529343128204, -0.01498513575643301, 0.0010823934571817517, 0.030619706958532333, -0.0016341134905815125, 0.004365653730928898, 0.009915926493704319, 0.002033997792750597, -0.016055501997470856, -0.03362635523080826, -0.009663368575274944, -0.026290133595466614, -0.018172184005379677, 0.05041548237204552, -0.033722568303346634, 0.01559849176555872, -0.012140846811234951, 0.018593113869428635, -0.019182417541742325, 0.01200254075229168, -0.02929678186774254, -0.012507657520473003, -0.007348248735070229, 0.0031239078380167484, 0.008274296298623085, 0.02430574595928192, -0.008989878930151463, -0.030403228476643562, -0.0021001440472900867, -0.008135991171002388, -0.0005765248206444085, 0.01897796429693699, 0.009278517216444016, 0.010962240397930145, 0.011924367398023605, -0.0008035267819650471, 0.007161836605519056, 0.015550386160612106, -0.017198029905557632, -0.03713812306523323, -0.06263449788093567, 0.01079988107085228, -0.026266081258654594, -0.02339172549545765, 0.05686173588037491, 0.03949533402919769, 0.020733848214149475, -0.006440240889787674, -0.014119220897555351, -0.016728991642594337, -0.04483514279127121, 0.009813700802624226, -0.029152464121580124, 0.03783566504716873, -0.03066781349480152, -0.007817286066710949, -0.027757378295063972, 0.013121013529598713, -0.004329573828727007, 0.014455965720117092, 0.015177560970187187, 0.024750730022788048, -0.01801583729684353, 0.006404160987585783, -0.04550863057374954, 0.005324774421751499, -0.035863302648067474, -0.01356599759310484, 0.021058565005660057, -0.011792074888944626, -0.0238968413323164, -0.02242959663271904, 0.012664003297686577, -0.006662732921540737, -0.0009448392665944993, 0.009958019480109215, 0.0416601225733757, 0.0633079931139946, -0.0022594963666051626, -0.05171435326337814, -0.0018656253814697266, -0.007438448257744312, -0.016536567360162735, -0.023656310513615608, 0.014347726479172707, 0.010631509125232697, 0.014083141461014748, 0.0011898811208084226, -0.011431277729570866, -0.021407337859272957, 0.009561141952872276, 0.00831638928502798, -0.01668088510632515, 0.01585105061531067, -0.033000972121953964, 0.014840817078948021, -0.04704803600907326, 0.045460525900125504, -0.02461843751370907, -0.036801375448703766, 0.029922164976596832, -0.003358426271006465, 0.012050647288560867, -0.03598356992006302, 0.0017859492218121886, 0.04045746102929115, -0.014107194729149342, 0.010637522675096989, 0.0009343160199932754, 0.015177560970187187, -0.016476433724164963, 0.007191902957856655, -0.008394562639296055, 0.07543079555034637, -0.04466677084565163, -0.020120492205023766, -0.02544827200472355, -0.01991603896021843, 0.021539630368351936, -0.007540674414485693, -0.010306790471076965, -0.0034426124766469, 0.038990218192338943, 0.0023241392336785793, -0.05248405411839485, -0.022008666768670082, 0.0022459663450717926, 0.0001340777234872803, 0.007678980007767677, -0.0046663181856274605, -0.016019422560930252, -0.02400508150458336, -0.031726155430078506, -0.049549564719200134, -0.009074064902961254, 0.00475952448323369, -0.004034921992570162, 0.04704803600907326, 0.014600285328924656, -0.005306734703481197, 0.04286278039216995, 0.036103833466768265, -0.009062038734555244, 0.03138941153883934, 0.002101647201925516, -0.036296259611845016, -0.008117950521409512, -0.0012996237492188811, 0.012880481779575348, 0.013517891056835651, -0.004521999042481184, 1.435204831068404e-05, 0.013938821852207184, -0.006121536251157522, 0.022790394723415375, 0.009434862993657589, 0.026723090559244156, 0.011768021620810032, -0.02708388864994049, 0.012435497716069221, 0.06013296917080879, 0.03422768414020538, 0.019002018496394157, -0.006512400694191456, 0.022597970440983772, 0.009777620434761047, -0.004780570976436138, -0.0027044801972806454, -0.027877643704414368, -0.0014694994315505028, 0.020385077223181725, -0.007871405221521854, 0.008430642075836658, -0.008562934584915638, 0.027973856776952744, -0.002459438517689705, -0.010102339088916779, 0.011034400202333927, 0.0046783448196947575, -0.031245090067386627, -0.016849257051944733, -0.006975424475967884, 0.012928588315844536, 0.05084843933582306, -0.05277269333600998, -0.01609158329665661, -0.02946515567600727, 0.010607455857098103, 0.028911931440234184, -0.04755315184593201, 0.0035658851265907288, 0.03879779204726219, 0.01639224775135517, 0.014949056319892406, 0.007179876323789358, 0.004212314262986183, 0.0016401266911998391, -0.009897886775434017, -0.003466665744781494, -0.018881753087043762, 0.02288660779595375, -0.001764902612194419, 0.0057426984421908855, -0.007468514610081911, 0.06701218336820602, 0.01713789626955986, 0.027516847476363182, -0.0036169979721307755, -0.017041683197021484, 0.014347726479172707, -0.025472326204180717, 0.0074324351735413074, 0.018460821360349655, 0.04776963219046593, 0.0232353787869215, 0.0008621564484201372, -0.012098753824830055, 0.00924845039844513, 0.010938187129795551, 7.845473010092974e-05, -0.021912453696131706, 0.0161757692694664, 0.004699391312897205, 0.0027435666415840387, -0.005917083937674761, 0.02072182111442089, 0.02061358094215393, -0.028887879103422165, -0.01463636476546526, 0.01903809793293476, -0.00033937543048523366, 0.01772719994187355, -0.016837231814861298, 0.03384283557534218, 0.016368193551898003, 0.03410742059350014, -0.039663705974817276, 0.031245090067386627, 0.0256406981498003, -0.023451857268810272, -0.0019934079609811306, 0.005601386073976755, 0.009470942430198193, -0.010860013775527477, 0.021347204223275185, 0.033722568303346634, 0.02430574595928192, 0.02657877281308174, 0.023836709558963776, -0.007221969775855541, -0.0018881752621382475, 0.042526036500930786, 0.010541309602558613, 0.025087473914027214, 0.043800853192806244, 0.02242959663271904, 0.016620753332972527, -0.02977784536778927, 0.017811385914683342, -0.011497423984110355, -0.02881571836769581, -0.009062038734555244, 0.03398715332150459, -0.02277836948633194, 0.0037372640799731016, -0.007125756703317165, 0.044233810156583786, -0.011581609956920147, -0.008172070607542992, 0.030042432248592377, 0.0027074869722127914, 0.03810025006532669, 0.018725406378507614, 0.007047583814710379, -0.0017994791269302368, -0.018112050369381905, 0.015442145988345146, 0.007847352884709835, 0.018725406378507614, -0.009597222320735455, 0.0037041909527033567, -0.02948920801281929, 0.0057787783443927765, 0.013373572379350662, 0.006969410926103592, -0.0011981494026258588, -0.0034486257936805487, -0.008695227093994617, -0.012237058952450752, -0.017089789733290672, 0.009982072748243809, -0.024041160941123962, 0.021888401359319687, 0.0005896789371035993, 0.004019889049232006, -0.023993054404854774, 0.03237558901309967, 0.017077762633562088, -0.03312123939394951, 0.030162697657942772, -0.007240009494125843, 0.028430867940187454, 0.023403750732541084, -0.0009576175361871719, -0.04218929260969162, 0.046350494027137756, 0.009603234939277172, -0.004702398087829351, 0.0263382401317358, -0.010487189516425133, -0.018653247505426407, -0.01355397142469883, 0.0028097128961235285, -0.01511742826551199, 0.006758945528417826, -0.04259819537401199, 0.0143717797473073, -0.022597970440983772, -0.010048219002783298, 0.030090536922216415, 0.016825204715132713, 0.03194263204932213, 0.005817864555865526, -0.002065567532554269, 0.010439082980155945, -0.030619706958532333, -0.03136535733938217, 0.0068792118690907955, 0.00939878262579441, -0.005003063008189201, -0.029922164976596832, 0.002585717709735036, 0.013012774288654327, 0.002415842143818736, -0.04863554611802101, 0.00035478451172821224, 0.0059832301922142506, 0.03071592003107071, -0.0017739225877448916, -0.017558826133608818, -0.013710317201912403, 0.0062959217466413975, 0.038966163992881775, -0.015225667506456375, 0.030066484585404396, 0.03600762039422989, 0.032952867448329926, 0.003986815921962261, 0.02024075761437416, -0.02076992765069008, -0.05565907433629036, -0.021720027551054955, 0.012375365011394024, -0.003944722935557365, 0.024654516950249672, 0.026434453204274178, -0.02352401800453663, -0.029585421085357666, -0.01053529605269432, 0.010366924107074738, -0.004407746717333794, 0.0006858916603960097, 0.00923642423003912, -0.006993464194238186, 0.007997685112059116, -0.006578546948730946, 0.006136569660156965, 0.02705983631312847, -0.002931482158601284, 0.01796773076057434, 0.006861171685159206, 0.03379472717642784, 0.0007817285950295627, 0.027204155921936035, -0.00038278393913060427, 0.011725928634405136, -0.04103473946452141, 0.05055980011820793, -0.0022895627189427614, 0.009801673702895641, 0.015213641338050365, 0.0381724089384079, 0.024281693622469902, -0.009290543384850025, -0.01019855123013258, 0.018701354041695595, -0.015129455365240574, 0.025015315040946007, 0.018545007333159447, -0.026747144758701324, 0.022152986377477646, -0.0008862096583470702, -0.0001524934486951679, -0.041106898337602615, -0.003623011289164424, 0.011046426370739937, 0.02074587345123291, 0.02852708101272583, 0.006157616153359413, -0.03432389721274376, 0.05532233044505119, 0.004365653730928898, 0.013409651815891266, 0.032279375940561295, -0.02157570980489254, 0.0213351771235466, -0.012615896761417389, -0.006915291305631399, -0.01932673715054989, -0.004594158846884966, -0.0047204382717609406, 0.009555128403007984, 0.008340442553162575, 0.021263018250465393, -0.030018378049135208, -0.012327258475124836, 0.001303382101468742, -0.030764026567339897, 0.007095690350979567, 0.0031419475562870502, 0.061479948461055756, -0.010306790471076965, 0.008677187375724316, -0.010102339088916779, 0.03458848223090172, 0.019242549315094948, 0.0024669549893587828, -0.0036771311424672604, 0.010475163348019123, 0.0508965440094471, -0.036584898829460144, 0.03326555714011192, 0.032038845121860504, 0.0268433578312397, 0.01391476858407259, 0.007582767400890589, 0.016668859869241714, 0.0009967039804905653, 0.021238964051008224, -0.005054175853729248, -0.007071637082844973, -0.03093239851295948, 0.0071437968872487545, -0.02903219684958458, -0.010108351707458496, -0.023536043241620064, -0.008111937902867794, 0.03264017403125763, 0.0066026002168655396, 0.0118702482432127, -0.01425151340663433, -0.006674759555608034, -0.007498581428080797, 0.01585105061531067, 0.0025225779972970486, -0.0405777283012867, -0.012411444447934628, -0.01438380591571331, 0.048803918063640594, -0.01438380591571331, -0.012170912697911263, -0.0003087452205363661, -0.023704417049884796, 0.018545007333159447, -0.007829312235116959, 0.05416777729988098, -0.008472735062241554, -0.009410809725522995, 0.03093239851295948, 0.011792074888944626, -0.02826249599456787, 0.009488982148468494, -0.03403526172041893, 0.007095690350979567, -0.013854635879397392, 0.02802196331322193, -0.030884291976690292, -0.02732442133128643, -0.039687760174274445, -0.005417980719357729, -0.003731250762939453, -0.0007437696331180632, -0.04031314328312874, 0.025352058932185173, 0.005953163839876652, 0.002507544821128249, -0.023812655359506607, 0.013505864888429642, -0.0036741243675351143, 0.018388662487268448, 0.020204678177833557, -0.025977442041039467, -0.008478748612105846, 0.01546619925647974, -0.015213641338050365, -0.0038244568277150393, -0.001398091553710401, 0.02144341729581356, 0.0020700774621218443, -0.02282647415995598, 0.016235901042819023, 0.015093374997377396, 0.04776963219046593, 0.05931515991687775, -0.016596699133515358, 0.01625995524227619, -0.01228516548871994, 0.04192470759153366, -0.019471054896712303, 0.005619425792247057, -0.02785359136760235, 0.004479906056076288, 0.030138643458485603, -0.018220290541648865, 0.036801375448703766, 0.00572766549885273, -0.0013146570418030024, -0.010878054425120354, 0.008015724830329418, -0.01735437475144863, 0.01849690079689026, -0.032760441303253174, -0.003059264738112688, 0.0020234743133187294, 0.014708524569869041, -0.0005979472189210355, -0.001138768158853054, -0.009729514829814434, 0.02708388864994049, 0.003998842556029558, -0.041155003011226654, -0.025520432740449905, 0.011834167875349522, -0.029344888404011726, -0.030643761157989502, -0.017258161678910255, -0.015766864642500877, 0.002827752847224474, 0.015189588069915771, -0.004555072635412216, 0.0018776520155370235, -0.011743969283998013, 0.020890193060040474, 0.0118702482432127, 0.036055728793144226, 0.009230410680174828, -0.027709271758794785, 0.039423175156116486, 0.004335586912930012, -0.0022594963666051626, 0.006470307242125273, -0.014888922683894634, 0.011611676774919033, 0.003337379777804017, 0.012032606638967991, -0.02898409031331539, -0.0016130668809637427, -0.02395697496831417, 0.02852708101272583, 0.01569470576941967, -0.01812407746911049, -0.0073723020032048225, -0.009579181671142578, -0.02165989577770233, -0.030884291976690292, 0.02876761183142662, 0.00140184978954494, -0.02214095927774906, -0.004564092494547367, -0.026073655113577843, -0.0330490805208683, 0.01855703443288803, 0.0031960674095898867, 0.011527489870786667, 0.05233973637223244, -0.003084821393713355, -0.0031720141414552927, -0.00766695337370038, 0.029946219176054, 0.02999432571232319, -0.04582132399082184, 0.006680772639811039, -0.021154778078198433, 0.0005964438896626234, 0.02782953716814518, 0.024654516950249672, -0.01580294407904148, 0.019579295068979263, 0.018677299842238426, -0.0010583403054624796, -0.012363338842988014, -0.02657877281308174, 0.0201325174421072, -0.0032381603959947824, -0.03915859013795853, 0.0005656257271766663, -0.014239487238228321, 0.0010380453895777464, 0.006674759555608034, -0.000964382488746196, -0.014287593774497509, 0.025328006595373154, -0.012213005684316158, -0.0020279844757169485, 0.007149809971451759, -0.021852320060133934, 0.01112459972500801, -0.00963931530714035, -0.0025105513632297516, 0.0004288232303224504, 0.06585762649774551, -0.003081814618781209, 0.007137783337384462, -0.02352401800453663, -0.01072170864790678, -0.03997639939188957, 0.012110779993236065, 0.007149809971451759, 0.04416165128350258, -0.027180101722478867, -0.002666897140443325, -0.02855113334953785, -0.01260387059301138, -0.004819657653570175, -0.0161757692694664, -0.02256188914179802, -0.000900491198990494, 0.010974266566336155, -0.018063943833112717, 0.022838501259684563, 0.03264017403125763, 0.027492793276906013, -0.005917083937674761, -0.01834055595099926, 0.0660981610417366, -0.04839501529932022, 0.011689849197864532, 0.0034335926175117493, 0.0022324365563690662, -0.048587437719106674, 0.0041612014174461365, -0.011274931952357292, -0.0005844173138029873, -0.016211848706007004, 0.007456487976014614, 0.01450407225638628, 0.019266603514552116, 0.0038184435106813908, 0.009470942430198193, -0.01796773076057434, -0.022381491959095, -0.009982072748243809, 0.0011365130776539445, -0.014179354533553123, -0.02242959663271904, -0.015947263687849045, -0.005950157064944506, -0.017041683197021484, 0.0180759709328413, 0.001882161945104599, 0.008400576189160347, -0.0003594823938328773, -0.020084410905838013, -0.016007395461201668, -0.0013259319821372628, 0.03882184624671936, -0.0026278106961399317, 0.011341078206896782, 0.0015860070707276464, -0.0062598418444395065, -0.009825726971030235, -0.023439832031726837, -0.015682678669691086, -0.007462501525878906, -0.0034275793004781008, 0.0014386812690645456, 0.01121479831635952, 0.028671398758888245, 0.007480541244149208, 0.00778721971437335, 0.022609995678067207, -0.037234336137771606, 0.020060358569025993, -0.005381900817155838, 0.023620231077075005, 0.02125099115073681, 0.00020407626288942993, -0.03834078088402748, -0.03555061295628548, -0.012435497716069221, -0.049741990864276886, 0.029152464121580124, -1.4821836884948425e-05, -0.005971204023808241, -0.034684695303440094, -0.04365653544664383, -0.04175633192062378, -0.02470262348651886, -0.023800628259778023, 0.018881753087043762, 0.0010951716685667634, 0.049982525408267975, 0.005613412708044052, -0.0412752702832222, 0.006422201171517372, 0.0036079781129956245, 0.00957316905260086, 0.03911048173904419, -0.013806529343128204, -0.021130725741386414, 0.02256188914179802, 0.026049602776765823, 0.016668859869241714, -0.0021963566541671753, -0.02026480995118618, 0.008190110325813293, -0.03045133501291275, 0.006849145051091909, -0.010541309602558613, -0.01343370508402586, -0.03569493070244789, -0.010625495575368404, -0.006656719837337732, 0.02146746963262558, -0.01571875810623169, 0.01641630008816719, -0.004101068712770939, -0.00435663340613246, -0.030018378049135208, -0.03687353804707527, 0.00566151924431324, 0.0009606241947039962, -0.01858108676970005, -0.012116793543100357, 0.013854635879397392, 0.022092852741479874, -0.007925525307655334, -0.02662687934935093, 0.0213351771235466, 0.02520774118602276, -0.021623816341161728, 0.010577389039099216, 0.008196123875677586, -0.010661575011909008, 0.01777530647814274, 0.0015679671196267009, 0.015345933847129345, -0.03312123939394951, -0.0030682848300784826, 0.05007873475551605, 0.0020039312075823545, -0.004007862415164709, 0.00448591960594058, -0.04074610024690628, -0.028142228722572327, 0.006698812823742628, -0.028599239885807037, -0.01965145394206047, 0.005998263601213694, -0.021828267723321915, -0.047384779900312424, 0.024870995432138443, -0.008611041121184826, 0.0043897065334022045, 0.017017630860209465, 0.030018378049135208, -0.028430867940187454, 0.02758900634944439, -0.004912863485515118, 0.008334429934620857, 0.036320313811302185, 0.04993441700935364, -0.02437790483236313, -0.01228516548871994, -0.020433183759450912, 0.002101647201925516, 0.020336970686912537, -0.004287480842322111, 0.008731307461857796, -0.031533729285001755, 0.0003794014628510922, 0.03288070857524872, 0.012784269638359547, 0.02903219684958458, 0.021852320060133934, -0.002274529542773962, -0.019964145496487617, -0.010613469406962395, 0.020625608041882515, 0.03814835473895073, 0.014925003051757812, 0.01268805656582117, 0.0013830582611262798, -0.037979982793331146, 0.022465677931904793, -0.006374094635248184, 0.03574303537607193, 0.0028112162835896015, -0.015887130051851273, 0.00473246444016695, 0.031293198466300964, -0.041347429156303406, 0.032038845121860504, 0.008063831366598606, 0.056957948952913284, -0.038990218192338943, 0.014828789979219437, -0.007793232798576355, 0.013758423738181591], [0.02051730453968048, -0.0028786398470401764, -0.012123861350119114, -0.028848573565483093, -0.012540425173938274, 0.037055496126413345, -0.03218108043074608, 0.046729713678359985, 0.03185777738690376, 0.04638154059648514, 0.011819210834801197, 0.025665283203125, 0.04466554895043373, 0.019050005823373795, -0.023999027907848358, 0.017906010150909424, -0.02089034579694271, 0.06794336438179016, -0.014113418757915497, 0.004582197871059179, 0.02024373970925808, 0.05446411669254303, 0.019609568640589714, -0.024993807077407837, -0.012540425173938274, -0.03556332737207413, -0.026859017089009285, 0.00637901620939374, 0.040835652500391006, -0.03760262206196785, 0.05555837228894234, -0.025690151378512383, 0.039318617433309555, -0.029122136533260345, 0.04317338019609451, 0.014834633097052574, 0.0010662780841812491, 0.04752553626894951, 0.037154972553253174, -0.006251560524106026, -0.04618258774280548, 0.01854018121957779, 0.03081326000392437, 0.0021558713633567095, -0.00928252562880516, 0.0164884515106678, 0.015493673272430897, 0.009108440019190311, -0.05530967935919762, 0.018216880038380623, -0.03543898090720177, 0.0022537948098033667, 0.018390964716672897, -0.04702814668416977, -0.019174354150891304, 0.030713781714439392, -0.011514559388160706, 0.03521515429019928, 0.0293210931122303, 0.005856757517904043, -0.0049987612292170525, -0.013305161148309708, -0.017321579158306122, 0.017756793648004532, 0.004047504626214504, 0.024658069014549255, -0.002828900935128331, 0.03145986795425415, -0.07187274098396301, 0.028102489188313484, -0.0043459380976855755, -0.014275070279836655, -0.018366096541285515, -0.013118639588356018, 0.03016665391623974, 0.04764988645911217, 0.0278040561825037, 0.004460959229618311, 0.042825210839509964, -0.004063047934323549, -0.02485702559351921, 0.0042868731543421745, -0.05799558013677597, 0.018652094528079033, -0.02132556214928627, -0.020318347960710526, -0.04996274411678314, 0.006422537844628096, -0.02290477231144905, 0.0017191014485433698, 0.0030744869727641344, 0.01340463850647211, 0.029370831325650215, 0.03456854820251465, 0.041606605052948, 0.012241991236805916, 0.01822931319475174, 0.0017968184547498822, -0.05784636363387108, 0.041606605052948, 0.017072884365916252, -0.027853794395923615, -0.033275336027145386, 0.014896806329488754, 0.049539964646101, -0.04021391645073891, -0.04202938824892044, 0.02514302358031273, 0.019161919131875038, -0.0022973164450377226, -0.029470309615135193, -0.004927261732518673, -0.022767990827560425, 0.018279053270816803, 0.013292726129293442, 0.025466326624155045, -0.007976879365742207, -0.007187273818999529, -0.0379507951438427, 0.00877270195633173, 0.015879150480031967, -0.04896796494722366, -0.01264612004160881, -0.09947783499956131, -0.028972920030355453, -0.029370831325650215, -0.09077353030443192, -0.01471028570085764, -0.02792840264737606, -0.0290475282818079, 0.030788391828536987, -0.00633860332891345, 0.02845066227018833, 0.0026641408912837505, 0.014250200241804123, -0.0027014450170099735, 0.031037084758281708, -0.03031587041914463, -0.016190018504858017, -0.002975009148940444, 0.034170638769865036, 0.002807140350341797, 0.01698584109544754, -0.010171608999371529, -0.008337486535310745, -0.007802792824804783, 0.02464563399553299, 0.03195725381374359, -0.007348925340920687, 0.012745598331093788, -0.04730171337723732, -0.00232063140720129, 0.015816977247595787, -0.01773192547261715, -0.07863723486661911, 0.035389240831136703, -0.0027993684634566307, 0.018154704943299294, -0.035289764404296875, 0.03929374739527702, -0.021462343633174896, -0.014200461097061634, -0.01037056464701891, 0.016314364969730377, 0.035662803798913956, -0.01825418323278427, 0.0232156403362751, 0.019733916968107224, -0.05090778321027756, -0.006590406876057386, 0.0071624042466282845, 0.010445172898471355, -0.00263460841961205, -0.014747589826583862, 0.0076597933657467365, -0.06172600015997887, -0.03044021874666214, -0.013504116795957088, 0.017309144139289856, -0.04240242764353752, 0.04255164414644241, 0.0186645295470953, 0.010961214080452919, 0.021860254928469658, 0.0021325561683624983, 0.02337729185819626, 0.012011948972940445, -0.021773211658000946, -0.009406873025000095, 0.03519028425216675, 0.018888354301452637, -0.018266618251800537, -0.03195725381374359, 0.0010678324615582824, -0.021375300362706184, 0.048470575362443924, 0.008928135968744755, -0.015456369146704674, 0.025715021416544914, 0.027903534471988678, 0.009245221503078938, -0.0023330661933869123, -0.010874170809984207, 0.004588415380567312, -0.02278042584657669, -0.043471816927194595, 0.030241262167692184, -0.003988439682871103, 0.0016102974768728018, 0.000924833002500236, -0.010115652345120907, -0.03247951343655586, -0.05046013370156288, 0.0013126411940902472, -0.02919674478471279, -0.012217122130095959, 0.014760023914277554, -0.012994292192161083, 0.022233296185731888, 0.00042744382517412305, -0.01098608411848545, -0.03165882080793381, -0.005365585908293724, 0.00627643009647727, 0.011868949979543686, 0.025615543127059937, 0.008175835013389587, -0.03387220576405525, -0.0696842223405838, -0.056553151458501816, -0.03412089869379997, 0.05555837228894234, 0.01633923500776291, -0.006671232637017965, -0.09952757507562637, 0.03573741391301155, -0.007348925340920687, 0.010115652345120907, 0.028898311778903008, -0.007958226837217808, -0.03245464339852333, -0.020355653017759323, 0.005890953354537487, 0.019883133471012115, 0.0001277474220842123, -0.02894805185496807, -0.014946545474231243, -0.03996521979570389, 0.013429508544504642, 0.01233525201678276, 0.040288522839546204, 0.03245464339852333, -0.016078105196356773, -0.02643623575568199, 0.034021422266960144, 0.026187540963292122, 0.062472082674503326, -0.012733163312077522, 0.0075167943723499775, -0.012770467437803745, -0.002399902790784836, -0.03449394181370735, -0.018776442855596542, -0.025254936888813972, -0.055409155786037445, -0.02520519681274891, 0.08918188512325287, -0.03827409818768501, -0.003994656726717949, 0.004607067443430424, -0.06267103552818298, 0.046854060143232346, 0.018900789320468903, -0.0135911600664258, -0.010525998659431934, -0.013939332216978073, 0.007647358812391758, -0.011135300621390343, 0.014784893952310085, 0.03822435811161995, -0.04451633244752884, -0.05814479663968086, 0.0025724347215145826, 0.010961214080452919, 0.0318080373108387, -0.008374790661036968, 0.023737899959087372, 0.018739137798547745, -0.018552616238594055, 0.0037179843056946993, 0.005483715794980526, 0.015618020668625832, 0.004414329305291176, -0.029246484860777855, -0.0054433029145002365, 0.00613653939217329, -0.047351449728012085, 0.019137049093842506, 0.04929126799106598, -0.03106195479631424, 0.016351670026779175, 0.03976626694202423, -0.00468167569488287, 0.005987322423607111, 0.001354608335532248, 0.07003239542245865, 0.024633198976516724, -0.006528233177959919, -0.04003982990980148, 0.008542659692466259, -0.01943548209965229, 0.03568767383694649, -0.011390212923288345, -0.019385743886232376, 0.02157425694167614, -0.06500876694917679, -0.03267847001552582, 0.00959339365363121, -0.008573746308684349, -0.0397413969039917, 0.05157925933599472, 0.0082628782838583, 0.04854518547654152, -0.002953248331323266, 0.01806766167283058, 0.004442307166755199, 0.016413843259215355, 0.02944543957710266, 0.0012722283136099577, 0.003789483802393079, -0.02225816622376442, -0.04665510728955269, 0.017060449346899986, -0.02730666659772396, 0.014536199159920216, 0.029843350872397423, -0.020094523206353188, -0.014486460015177727, -0.03807514160871506, 0.004488937556743622, 0.017284274101257324, 0.005110674072057009, -0.04782396927475929, -0.01472271978855133, -0.008113660849630833, 0.002457413589581847, 0.03247951343655586, 0.02246955595910549, -0.001698895008303225, 0.03404628857970238, 0.011757036671042442, -0.0034537462051957846, -0.016563059762120247, 0.017408622428774834, -0.013553855940699577, -0.033399682492017746, 0.01210520975291729, 0.0075167943723499775, -0.02892318181693554, 0.025254936888813972, 0.017097754403948784, 0.0007911596912890673, -0.0064349728636443615, 0.017309144139289856, -0.02805275097489357, 0.037254448980093, -0.030017437413334846, 0.004224699456244707, -0.0134543776512146, -0.025739891454577446, 0.04752553626894951, 0.05346933752298355, 0.024757547304034233, -0.021872689947485924, -0.0017501881811767817, -0.01568019390106201, 0.046854060143232346, 0.030241262167692184, -0.036433760076761246, -0.052275605499744415, -0.005135543644428253, -0.014424286782741547, 0.023725464940071106, 0.0065841893665492535, 0.09947783499956131, 0.029594656080007553, -0.059040095657110214, 0.0076597933657467365, -0.004342829342931509, -0.026311887428164482, -0.0007476381142623723, 0.008530224673449993, -0.020231304690241814, -0.020318347960710526, 0.006061930675059557, 0.013852288946509361, 0.0134543776512146, 0.06918683648109436, -0.009506351314485073, -0.009096005000174046, 0.045834414660930634, -0.022394947707653046, -0.020218871533870697, -0.01887591928243637, -0.009046265855431557, -0.01980852521955967, -0.031783170998096466, -0.017458360642194748, -0.004740740638226271, 0.0036278325133025646, 0.0629197359085083, 0.05789610370993614, 0.033897072076797485, 0.01837853156030178, 0.00033107466879300773, -0.003422659356147051, 0.017284274101257324, 0.05421542376279831, 0.016998276114463806, -0.009543655440211296, 0.0070815784856677055, 0.04916692152619362, 0.020131828263401985, -0.00468167569488287, -0.0026750213000923395, 0.01987069845199585, 0.02033078297972679, 0.05336986109614372, -0.0593385323882103, -0.07654819637537003, 0.025864237919449806, 0.000354389805579558, -0.001018870621919632, 0.04944048449397087, 0.0015799878165125847, 0.001974013401195407, -0.02435963600873947, -0.016625232994556427, -0.01104825735092163, -0.008188270032405853, -0.0038982878904789686, 0.02491919882595539, -0.01943548209965229, -0.0015691075241193175, 0.011582951061427593, -0.0025133697781711817, -0.012571511790156364, -0.001827905303798616, -0.010345695540308952, 0.0005848208675161004, -0.018714267760515213, 0.012670990079641342, -0.07784140855073929, 0.0180054884403944, -0.060830697417259216, -0.03160908445715904, 0.005054717883467674, -0.04764988645911217, 0.015157935209572315, -0.02578962966799736, 0.028599878773093224, 0.06933605670928955, 0.0367073230445385, 0.037403665482997894, 0.0525740385055542, 0.03673219308257103, -0.0015217000618577003, -0.022792859002947807, 0.0192862655967474, -0.03514054790139198, -0.046356674283742905, 0.03543898090720177, 0.03852279111742973, 0.010637911036610603, 0.004373916424810886, -0.021810516715049744, 0.0018621007911860943, 0.004498263355344534, -0.020666521042585373, 0.030291002243757248, 0.034916721284389496, 0.024682939052581787, 0.03683166950941086, -0.04178069159388542, -0.0060370611026883125, 0.030415348708629608, 0.01609054021537304, -0.04165634512901306, -0.007939575240015984, 0.006652580574154854, -0.0038858531042933464, 0.01692366786301136, 0.014958979561924934, -0.011862732470035553, -0.057150017470121384, -0.05247455835342407, 0.0001868123799795285, 0.025404153391718864, 0.01856505125761032, -0.030291002243757248, -0.025739891454577446, -0.014399416744709015, 0.008797571063041687, -0.029619526118040085, 0.05759766697883606, 0.032504383474588394, -0.0186272244900465, -0.03121117129921913, 0.034792374819517136, -0.025739891454577446, -0.043571293354034424, 0.01943548209965229, 0.006627711001783609, -0.026759538799524307, -0.00651579862460494, -0.03275308012962341, 0.009699089452624321, 0.0004783485201187432, -0.019273830577731133, -0.023302683606743813, 0.042054254561662674, 0.014399416744709015, -0.0036900059785693884, -0.012869945727288723, -0.014337243512272835, 0.01850287802517414, 0.014585938304662704, -0.09445420652627945, -0.012981858104467392, 0.010215130634605885, -0.03650836646556854, -0.04265112429857254, -0.017595142126083374, 0.0018108075018972158, 0.011340473778545856, -0.01441185176372528, 0.028400922194123268, 0.05799558013677597, -0.024682939052581787, 0.00530030345544219, 0.0038112446200102568, -0.027480753138661385, 0.004675458185374737, 0.003590528154745698, 0.0330515131354332, 0.01032082550227642, 0.026610322296619415, -0.005297194700688124, 0.038298968225717545, 0.007715750019997358, -0.01665010303258896, -0.04076104611158371, 0.0023548270110040903, 0.008915700949728489, 0.03588663041591644, -0.02207164466381073, 0.06461085379123688, 0.003646484576165676, -0.008598615415394306, 0.006534450687468052, -0.025640413165092468, 0.0003753734054043889, -0.034419331699609756, -0.015816977247595787, -0.01885105110704899, -0.02001991495490074, -0.0015046022599563003, 0.03800053521990776, -0.011912471614778042, -0.02919674478471279, -0.0064349728636443615, 0.04993787407875061, -0.036806799471378326, -0.0010079903295263648, 0.044317375868558884, -0.0037335276138037443, 0.013628464192152023, -0.03586176037788391, -0.011185039766132832, 0.04367076978087425, 0.047251973301172256, -0.014138287864625454, 0.040189046412706375, 0.007610054686665535, -0.02389955148100853, 0.014672981575131416, 0.011477255262434483, -0.028873441740870476, -0.005499259103089571, 0.04857005551457405, -0.006901274900883436, -0.008810006082057953, 0.02327781356871128, 0.010743606835603714, -0.012932118959724903, 0.030216393992304802, -0.014585938304662704, 0.03394681215286255, 0.007491924799978733, -0.0011206800118088722, 0.007168621756136417, 0.013180813752114773, -0.038423314690589905, 0.028475530445575714, -0.017719490453600883, 0.031509604305028915, -0.03128578141331673, -0.012217122130095959, 0.030639173462986946, -0.004112787079066038, 0.01466054655611515, 0.003478615777567029, 0.03292716294527054, 0.0007624043500982225, -0.030340740457177162, -0.0021512082312256098, -0.03812488168478012, -0.05884114280343056, -0.00796444434672594, 0.010202695615589619, -0.028251705691218376, -0.0007585185230709612, 0.016376540064811707, -0.03183290734887123, -0.019336005672812462, 0.022307904437184334, -0.004992544185370207, -0.04929126799106598, 0.026585452258586884, -0.004128330387175083, 0.006615276448428631, 0.05346933752298355, 0.04200451821088791, -0.000573551922570914, -0.024931633844971657, -0.011203691363334656, 0.02296694554388523, -0.02458346076309681, 0.0253544133156538, 0.009904262609779835, 0.012186035513877869, 0.003954244311898947, 0.009288743138313293, -0.022855034098029137, 0.027256928384304047, 0.03275308012962341, 0.053767770528793335, -0.00171443831641227, 0.038050271570682526, 0.003459963481873274, 0.014784893952310085, -0.04707788676023483, 0.012030601501464844, -0.02275555580854416, 0.013814984820783138, 0.003164638765156269, 0.054762549698352814, 0.06023383140563965, -0.02086547575891018, 0.013056466355919838, -0.013740376569330692, 0.020790867507457733, -0.01872670277953148, -0.00827531237155199, 0.03710523247718811, 0.03282768651843071, 0.007728184573352337, 0.008443181402981281, -0.007833879441022873, -0.0278040561825037, -0.0008665452478453517, 0.017085319384932518, 0.03295203298330307, -0.0028646509163081646, -0.001297874958254397, 0.03133551776409149, -0.025690151378512383, 0.021226083859801292, -0.012857510708272457, 0.02554093487560749, -0.04374537989497185, -0.040586959570646286, 0.016724711284041405, 0.023800073191523552, -0.018366096541285515, -0.03548871725797653, -0.03747827559709549, 0.013814984820783138, 0.007056709378957748, 0.004464067984372377, 0.0024403156712651253, 0.029768742620944977, 0.01673714630305767, 0.004653697833418846, 0.007827662862837315, -0.005067152436822653, -0.011968427337706089, -0.03961705043911934, -0.017781663686037064, -0.003836114192381501, 0.004314851015806198, -0.015605585649609566, -0.020318347960710526, -0.04926639795303345, -0.03019152395427227, -0.003466180991381407, -0.0014268852537497878, 0.002661032136529684, 0.0271823201328516, 0.02606319449841976, -0.02991795912384987, -0.0006730297463946044, -0.012049253098666668, -0.025565804913640022, -0.0186272244900465, 0.02033078297972679, -0.05521019920706749, -0.013814984820783138, 0.006096126511693001, -0.006640145555138588, -0.019149484112858772, 0.06326790899038315, 0.006410103291273117, -0.00818205252289772, -0.009195482358336449, -0.004333503544330597, -0.02132556214928627, -0.010221348144114017, -0.011775689199566841, 0.0354638509452343, 0.015816977247595787, -0.04864466190338135, -0.008101226761937141, 0.019074875861406326, 0.018341226503252983, -0.004725197330117226, -0.008841092698276043, 0.03218108043074608, -0.0164884515106678, -0.007784140761941671, 0.03964192047715187, -0.028848573565483093, 0.022606339305639267, -0.02126338705420494, 0.0018512203823775053, -0.013665768317878246, 0.008387225680053234, -0.030241262167692184, -0.043397206813097, -0.005054717883467674, -0.020877910777926445, 0.009537437930703163, -0.013367334380745888, -0.0054961503483355045, -0.02001991495490074, -0.03449394181370735, -0.010637911036610603, -0.0075914026238024235, 0.011955992318689823, 0.025814499706029892, -0.0037490709219127893, 0.010451390407979488, -0.0012100546155124903, -0.005592519883066416, 0.0035470067523419857, 0.0075167943723499775, -0.01887591928243637, -0.038821227848529816, 0.015332021750509739, -0.010414086282253265, -0.01900026760995388, 0.019758785143494606, -0.008138530887663364, 0.025491196662187576, 0.0033076382242143154, -0.008399659767746925, -0.0013989071594551206, -0.06053226441144943, -0.014958979561924934, -0.027978142723441124, 0.04827162250876427, 0.003655810607597232, -0.010656563565135002, -0.03218108043074608, 0.010022392496466637, 0.008175835013389587, 0.02845066227018833, 0.0008556648390367627, 0.04692867025732994, 0.006888840347528458, 0.03695601597428322, -0.06615275889635086, -0.02501867711544037, -0.029594656080007553, -0.02219599299132824, -0.0075105768628418446, -0.010407868772745132, -0.010756040923297405, -0.012297947891056538, 0.01798061840236187, 0.0017657316057011485, -0.010115652345120907, 0.00360296294093132, 0.039940353482961655, 0.036035846918821335, -0.003062052186578512, -0.044093552976846695, -0.04605823755264282, 0.030987346544861794, -0.02981848269701004, -0.002818020759150386, 0.01244716439396143, 0.022021906450390816, 0.029594656080007553, 0.035289764404296875, -0.03658297657966614, -0.05759766697883606, 0.0458095446228981, -0.010109435766935349, -0.032031863927841187, 0.045237548649311066, -0.005231912713497877, 0.015070892870426178, -0.0034848330542445183, 0.04135791212320328, -0.005194608587771654, -0.03449394181370735, 0.011371560394763947, -0.004958348348736763, 0.023116162046790123, -0.014237765222787857, 0.01897539757192135, 0.0284257922321558, -0.011558081023395061, -0.01295698806643486, 0.04478989541530609, -0.0048650880344212055, 0.0070131877437233925, -0.007709532510489225, 0.004544893745332956, 0.06252182275056839, -0.013740376569330692, -0.00939443800598383, -7.800850289640948e-05, -0.035513587296009064, 0.0033667031675577164, -0.025590673089027405, 0.001493721967563033, -0.006301299203187227, 0.017060449346899986, 0.010532216168940067, -0.03397168219089508, -0.027232058346271515, -0.006257777567952871, -0.006926144473254681, 0.016202453523874283, -0.0008556648390367627, 0.003920048475265503, -0.04645615071058273, -0.010395433753728867, 0.0017657316057011485, -0.015157935209572315, -0.006285755895078182, 0.006820449139922857, 0.0247699823230505, 0.01704801432788372, 0.002811803249642253, 0.053021688014268875, -0.012440946884453297, -0.019398178905248642, 0.02250686101615429, 0.013292726129293442, -0.017756793648004532, -0.007597620133310556, -0.013379769399762154, -0.024595895782113075, 0.017769228667020798, -0.005328281782567501, -0.04571006819605827, -0.0032858774065971375, -0.011172604747116566, -0.010482477024197578, 0.022183557972311974, 0.010731171816587448, -0.00931361224502325, -0.02275555580854416, -0.02294207736849785, 0.07376281917095184, 0.019584698602557182, -0.01365333329886198, -0.01773192547261715, 0.0378761887550354, 0.01030839141458273, -0.03683166950941086, -0.009382003918290138, 0.004417437594383955, -0.014386982657015324, 0.013553855940699577, 0.0007612386252731085, 0.04327286034822464, -0.027754316106438637, 0.01735888235270977, -0.018900789320468903, -0.011042039841413498, 0.022855034098029137, 0.019883133471012115, -0.030912738293409348, -0.035016197711229324, -0.0032983121927827597, 0.021064432337880135, 0.022108949720859528, -0.05575732886791229, -0.035538457334041595, 0.004728306084871292, 0.021350430324673653, 0.012161165475845337, -0.016637668013572693, 0.017259404063224792, 0.024944068863987923, 0.017644882202148438, 0.02213381975889206, -0.01974635012447834, -0.04404381290078163, -0.038796357810497284, 0.02489432878792286, -0.014648111537098885, -0.03777670860290527, -0.007877401076257229, -0.019385743886232376, -0.0035936369094997644, -0.014175591990351677, 0.05660289153456688, -0.03419550880789757, 0.02036808803677559, -0.018179574981331825, -0.03986574336886406, 0.03548871725797653, -0.014362112618982792, 0.0014812871813774109, -0.019236527383327484, 0.0476747527718544, -0.01633923500776291, -0.004955240059643984, 0.019224092364311218, -0.019820960238575935, 0.01446159090846777, 0.02396172471344471, 0.004656806122511625, 0.02049243450164795, 0.023986592888832092, -0.006820449139922857, -0.02281772904098034, 0.024968937039375305, 0.003736636368557811, -0.00829396490007639, -0.005660910625010729, 0.03645862638950348, -0.021474778652191162, -0.008853527717292309, -0.01831635646522045, -0.014946545474231243, 0.025565804913640022, 0.020069653168320656, -0.0189380943775177, 0.015593151561915874, 0.020853042602539062, -0.008878396824002266, 0.008847310207784176, -0.028525270521640778, 0.012061688117682934, -0.034767504781484604, 0.00928252562880516, 0.05789610370993614, 0.012577729299664497, 0.0005859866505488753, 0.06331764161586761, -0.028326313942670822, -0.020479999482631683, 0.012639902532100677, 0.0012108318042010069, 0.01872670277953148, 0.005757279694080353, 0.026386497542262077, 0.030266132205724716, 0.00039052823558449745, 0.009636915288865566, 0.02728179655969143, 0.006254669278860092, 0.01376524567604065, 0.027082841843366623, -0.03902018070220947, 0.010581955313682556, 0.024720242246985435, 0.02498137205839157, -0.036284539848566055, -0.015618020668625832, 0.023563813418149948, 0.013528985902667046, 0.01508332695811987, 0.01729670912027359, 0.010756040923297405, -0.0016507103573530912, -0.018303921446204185, -0.006263995077461004, -0.007348925340920687, -0.0054277596063911915, -0.022394947707653046, 0.012527990154922009, -0.027256928384304047, 0.023613551631569862, -0.006009083241224289, -0.012266861274838448, 0.006155191455036402, -0.004414329305291176, -0.008051487617194653, -0.01590401865541935, 0.02641136571764946, -0.016202453523874283, -0.029122136533260345, 0.029843350872397423, -0.008903266862034798, 0.02817709743976593, 0.009525002911686897, 0.027828926220536232, 0.04645615071058273, -0.013317595236003399, 0.033126119524240494, 0.006211147643625736, 0.0049987612292170525, 0.009885610081255436, -0.0008517790120095015, -0.027008233591914177, 0.02668493054807186, 0.016699841246008873, 0.016873927786946297, 0.04349668323993683, -0.01571749895811081, -0.021835384890437126, -0.03185777738690376, -0.010756040923297405, -0.004373916424810886, 0.012627468444406986, -0.02319077029824257, 0.013839853927493095, 0.0006975106080062687, 0.01717236265540123, 0.04658049717545509, -0.0018045901088044047, 0.02777918614447117, 0.009898045100271702, -0.0011222343891859055, 0.0010126533452421427, -0.02033078297972679, -0.0293210931122303, 0.014921675436198711, -0.0013445051154121757, 0.0009512568358331919, -0.03106195479631424, -0.009064918383955956, 0.015518542379140854, -0.013019162230193615, -0.04779910296201706, -0.007317838724702597, 7.528840069426224e-05, 0.021524516865611076, -0.01621488854289055, -0.026759538799524307, 0.01887591928243637, -0.007958226837217808, 0.04165634512901306, 0.018465572968125343, 0.005583193618804216, 0.0030263024382293224, 0.012018166482448578, -0.0048868488520383835, 0.014983849599957466, -0.03334994614124298, -0.015058457851409912, -0.002931487513706088, 0.020343217998743057, -0.02309129387140274, 0.023824943229556084, 0.007423533592373133, -0.007243230007588863, -0.04033826291561127, -0.00981100182980299, 0.0003029022482223809, 0.0005164298927411437, -0.001293211942538619, 0.005191499833017588, 0.003941809292882681, 0.020691391080617905, -0.00492104422301054, 0.03168369084596634, 0.011806775815784931, -0.019696611911058426, 0.05963696539402008, 0.0019118397030979395, 0.020790867507457733, -0.003960461355745792, 0.03185777738690376, 0.011371560394763947, 0.00818205252289772, -0.0373290590941906, 0.04148225858807564, -0.031509604305028915, 0.0025382391177117825, 0.017620012164115906, 0.011651341803371906, 0.010762258432805538, -0.005306520964950323, -0.009487698785960674, 0.03533950075507164, -0.01303159724920988, 0.0007064481033012271, 0.004184286575764418, -0.0036091802176088095, 0.02290477231144905, -0.007908488623797894, 0.007815227843821049, -0.05700080096721649, 0.01508332695811987, -0.02666006051003933, 0.01471028570085764, 0.007523011416196823, 0.01667497307062149, -0.020106958225369453, 0.0027698359917849302, 0.0034630722366273403, 0.001681797206401825, 0.011800558306276798, 0.023427030071616173, 0.0216986034065485, -0.03431985527276993, -0.013802549801766872, 0.01723453588783741, -0.0005506253801286221, 0.002822683658450842, -0.029022660106420517, -0.002017534803599119, -0.010103218257427216, 0.006882622838020325, -0.014038809575140476, 0.005185282323509455, 0.0025926411617547274, -0.0076597933657467365, -0.0005440194508992136, 0.0776921883225441, 0.020803302526474, 0.023824943229556084, 0.01472271978855133, 0.016625232994556427, 0.013528985902667046, -0.019534960389137268, 0.00846183393150568, 0.029345963150262833, 0.045088332146406174, -0.04377024993300438, 0.0134543776512146, 0.02036808803677559, 0.018279053270816803, -0.00047757133143022656, 0.02907239831984043, -0.0367073230445385, -0.04103460907936096, 0.02182295173406601, -0.0003048451617360115, 0.006528233177959919, 0.0002024529385380447, 0.021686168387532234, -0.019273830577731133, -0.01781896874308586, -0.025379283353686333, -0.01633923500776291, 0.030614305287599564, -0.010737389326095581, 0.03158421441912651, 0.013752811588346958, 0.0082442257553339, -0.043819986283779144, 0.007908488623797894, 0.018950527533888817, -0.045337025076150894, -0.040288522839546204, -0.0036589193623512983, 0.017843836918473244, -0.003997765481472015, -0.01702314428985119, 0.0055179111659526825, -0.021064432337880135, -0.0027387491427361965, -0.02479485049843788, 0.049117181450128555, -0.017520533874630928, -0.004582197871059179, 0.05421542376279831, -0.005381129216402769, 0.002926824614405632, 0.0022164906840771437, -0.013939332216978073, 0.008443181402981281, -0.027455883100628853, 0.01825418323278427, -0.013553855940699577, -0.02442180924117565, -0.00883487518876791, -0.021872689947485924, -0.02123851887881756, -0.004995652474462986, 0.002584869507700205, 0.007684662938117981, 0.019659308716654778, -0.02290477231144905, -0.024173114448785782, -0.0005311961285769939, 0.0020968064200133085, 0.025242501869797707, 0.020915215834975243, -0.01661279983818531, 0.009954000823199749, -0.00025432909023948014, -0.009618263691663742, -0.00682666664943099, -0.030589435249567032, 0.005154195707291365, -0.037254448980093, -0.005266108084470034, 0.011620255187153816, 0.034394461661577225, 0.02433476597070694, 0.04314851388335228, -0.007361359894275665, 0.012907249853014946, 0.00928252562880516, 0.037304189056158066, -0.012602598406374454, -0.010407868772745132, 0.01918678730726242, -0.026560582220554352, 0.00013658773968927562, -0.015493673272430897, 0.023924419656395912, 0.00578836677595973, 0.0066214934922754765, -4.4517302740132436e-05, 0.015642890706658363, -0.007212143391370773, 0.02057947777211666, -0.02929622307419777, -0.005514802876859903, -0.0024170007091015577, -0.00360296294093132, 0.01071251928806305, 0.023228075355291367, 0.017060449346899986, -0.03648349642753601, 0.0223203394562006, -0.04135791212320328, 0.007479489780962467, -0.021250953897833824, -0.011837862432003021, -0.038547661155462265, -0.01633923500776291, -0.00637901620939374, 0.013976636342704296, 0.011526994407176971, -0.01696097105741501, 0.02333998866379261, -0.010675215162336826, 0.01636410504579544, -0.0044050030410289764, 0.021586690098047256, -0.010115652345120907, 0.0033511596266180277, 0.05212638899683952, 0.001570661785081029, 0.017433490604162216, 0.00028211294556967914, -0.012316599488258362, -0.008953005075454712, 0.008300182409584522, 0.005135543644428253, -0.009910480119287968, -0.037801578640937805, 0.018017923459410667, 0.019236527383327484, 0.030912738293409348, -0.027903534471988678, -0.0026252823881804943, -0.04658049717545509, -0.01028973888605833, -0.017893576994538307, 0.027008233591914177, 0.004731414839625359, -0.004336611833423376, -0.013255422003567219, -0.012391208671033382, -0.011464821174740791, 0.0090213967487216, 0.01949765719473362, 0.03486698120832443, 0.029147006571292877, -0.009786132723093033, 0.003369811689481139, -0.026237279176712036, 0.020144261419773102, 0.00790227111428976, -0.019833393394947052, -0.01025865226984024, -0.02966926619410515, -0.020169131457805634, -0.000732871878426522, 0.03446907177567482, -0.005993539933115244, 0.0028972921427339315, -0.013180813752114773, -0.03215621039271355, 0.006913709919899702, -0.01627706177532673, 0.019783655181527138, 0.03625967353582382, -0.023203205317258835, -0.008486703038215637, 0.011203691363334656, -0.02954491786658764, 0.02730666659772396, -0.0030760413501411676, -0.0018372313352301717, 0.015754802152514458, -0.0016895688604563475, -0.008349920623004436, -0.011464821174740791, -0.03245464339852333, -0.007392446976155043, -0.01522010937333107, 0.02008208818733692, 0.017222100868821144, 0.052375081926584244, -0.002109240973368287, 0.01371550653129816, -0.009580959565937519, 0.0038205706514418125, -0.02969413436949253, 0.0031024650670588017, 0.006633928511291742, 0.009419308044016361, -0.027381274849176407, -0.01837853156030178, -0.048769012093544006, 0.00939443800598383, 0.0007526897243224084, -0.022419817745685577, -0.03193238750100136, 0.015058457851409912, 0.004255786072462797, -0.0090213967487216, 0.005903387907892466, 0.029520047828555107, 0.014436720870435238, 0.02207164466381073, -0.039940353482961655, 0.025192761793732643, -0.028500400483608246, 0.007261882070451975, 0.0006528233061544597, 0.02894805185496807, -0.025055980309844017, 0.0036806799471378326, 0.001919611357152462, -0.01314350962638855, -0.04439198598265648, -0.02643623575568199, 0.03814975172281265, 0.020417826250195503, 0.0038858531042933464, 0.010457607917487621, -0.027356404811143875, -0.0010507346596568823, -0.008126095868647099, -0.0033107467461377382, -0.02715745009481907, -0.011862732470035553, -0.007112665567547083, -0.002179186325520277, -0.018652094528079033, 0.000532361853402108, -0.02278042584657669, -0.019298700615763664, -0.022680947557091713, -0.027629969641566277, -0.007361359894275665, 0.03330020606517792, 0.03924400731921196, -0.01810496672987938, -0.01891322433948517, -0.0033076382242143154, -0.02576475962996483, -0.009058700874447823, -0.005900279153138399, -0.00077989068813622, 0.006410103291273117, -0.017097754403948784, -0.00360296294093132, 0.0028801942244172096, 0.012820206582546234, 0.008430746383965015, 0.0015364662976935506, 0.027878664433956146, 0.00832505151629448, 0.025665283203125, -0.025366848334670067, 0.029470309615135193, 0.0232529453933239, -0.03777670860290527, -0.027953272685408592, -0.009668002836406231, 0.014013940468430519, -0.035414110869169235, -0.018701832741498947, 0.011153952218592167, -0.023302683606743813, -0.03573741391301155, -0.01995774172246456, -0.039194267243146896, 0.008542659692466259, -0.003528354689478874, 0.03404628857970238, 0.015207674354314804, 0.03782644867897034, 0.005415325053036213, -0.07082822173833847, 0.02111417055130005, 0.012670990079641342, 0.030042307451367378, 0.06520771980285645, 0.013566290028393269, -0.0318080373108387, -0.01993287168443203, -0.0024154463317245245, 0.014038809575140476, 0.012347687035799026, -0.007342707831412554, -0.020815737545490265, -0.020131828263401985, -0.010034826584160328, -0.00953122042119503, -0.02144990861415863, 0.010233782231807709, -0.01860235631465912, -0.01266477257013321, -0.015170370228588581, 0.0008797571063041687, -0.0005374134634621441, 0.02448398247361183, -0.007634924259036779, -0.035165414214134216, -0.019845828413963318, -0.004631937015801668, 0.02603832446038723, 0.016003496944904327, 0.0015341348480433226, 0.005474389996379614, 0.018328791484236717, 0.0013647115556523204, -0.001995774218812585, -0.004485828801989555, 0.021101737394928932, -0.011334256269037724, 0.014747589826583862, -0.02767970785498619, -0.024633198976516724, 0.01376524567604065, 0.019410613924264908, 0.013628464192152023, -0.04312364384531975, -0.0415319986641407, 0.02203434146940708, 0.035538457334041595, -0.010731171816587448, 0.025317110121250153, -0.021163910627365112, -0.019460352137684822, -0.00796444434672594, -0.02030591294169426, -0.05322064459323883, 0.013255422003567219, 0.0010041043860837817, 0.01061925943940878, 0.019634438678622246, -0.013118639588356018, 0.026137802749872208, -0.002222707960754633, 0.04491424560546875, -0.00027026108000427485, 0.03496646136045456, -0.0020424043759703636, 0.0074857072904706, 0.017184795811772346, 0.02966926619410515, -0.019012702628970146, 0.008517789654433727, 0.002224262338131666, -0.0201815664768219, 0.02340216189622879, 0.008306399919092655, 0.009406873025000095, -0.03471776470541954, 0.012434729374945164, 0.022146252915263176, 0.007504359353333712, 0.026734668761491776, 0.0013888039393350482, -0.00946904718875885, -0.009058700874447823, -0.003051171777769923, 0.030291002243757248, 0.04262625426054001, 0.01351655088365078, -0.015493673272430897, -0.030216393992304802, -0.05048500373959541, 0.02105199731886387, 0.011962209828197956, 0.003341833595186472, 0.013665768317878246, -8.621736196801066e-05, 0.0022149363067001104, 0.004476502537727356, -0.037925925105810165, 0.035787153989076614, -0.02098982408642769, 0.027008233591914177, -0.006745840888470411, 0.0064722769893705845, 0.015618020668625832, -0.017259404063224792], [-0.022028876468539238, -0.0026307660154998302, 0.0065154931508004665, -0.007491860073059797, -0.012750201858580112, 0.012979934923350811, -0.05503390356898308, 0.07387203723192215, 0.04801427200436592, 0.053553398698568344, 0.0320860929787159, 0.005232815630733967, 0.011914227157831192, 0.011812123470008373, -0.008385268040001392, 0.023343462496995926, 0.02153112180531025, 0.04722296819090843, -0.016272779554128647, -0.029380343854427338, -0.014741224236786366, 0.0031061863992363214, -0.008934075012803078, -0.0018921095179393888, -0.04553825780749321, -0.021135469898581505, -0.03553209453821182, -0.01687263883650303, 0.024900544434785843, -0.01931036449968815, 0.07964089512825012, -0.033158183097839355, 0.054114967584609985, -0.06432534009218216, 0.008621382527053356, 0.03134584054350853, -0.016745008528232574, 0.041300952434539795, 0.05375760793685913, -0.0308097954839468, -0.05161342769861221, 0.020624950528144836, -0.0077024488709867, -0.0035225781612098217, 0.02153112180531025, 0.01282039750367403, 0.029048506170511246, 0.03892704099416733, -0.052226051688194275, 0.03494499623775482, -0.0277722105383873, -0.0025653557386249304, 0.023585958406329155, -0.023522144183516502, 0.03673181310296059, 0.01525174267590046, -0.026827750727534294, 0.01637488417327404, 0.013439401984214783, 0.01993575133383274, 0.00899150874465704, 0.014894379302859306, -0.015073060989379883, 0.0625385269522667, -0.00952117145061493, 0.03571077436208725, -0.04168384149670601, 0.02239900268614292, -0.04334302619099617, 0.0377017967402935, -0.030605588108301163, 0.000676437106449157, -0.01745973527431488, -0.004029905889183283, 0.02644486166536808, 0.02751695178449154, 0.030631113797426224, 0.02154388464987278, 0.04329197481274605, -0.007153641432523727, -0.013273483142256737, 0.033719751983881, -0.06264062970876694, 0.005293439608067274, -0.0041160560213029385, 0.014894379302859306, -0.03565972298383713, -0.00476696714758873, -0.023585958406329155, -0.016745008528232574, 0.0018953002290800214, -0.009093612432479858, 0.021607698872685432, 0.036680757999420166, 0.030171647667884827, 0.014894379302859306, 0.010567734949290752, -0.039386507123708725, -0.07106418907642365, 0.025449350476264954, 0.008232112042605877, 0.010127412155270576, 0.007504622917622328, 0.009068085812032223, 0.052226051688194275, -0.020663239061832428, 0.002415390918031335, 0.04232199117541313, 0.0220544021576643, -0.016234491020441055, -0.027976417914032936, -0.01932312734425068, -0.023598721250891685, 0.02566632069647312, 0.0371147021651268, -0.038059160113334656, -0.0002754008455667645, -0.017906438559293747, -0.02948244847357273, -0.010229515843093395, -0.016974743455648422, -0.025206854566931725, 0.03808468580245972, -0.04525747150182724, -0.008321452885866165, -0.01689816452562809, -0.06355956196784973, -0.006014546845108271, -0.04329197481274605, -0.005433832295238972, 0.01877432130277157, -0.020267587155103683, 0.061517488211393356, 0.004457465372979641, 0.02403266169130802, -0.01131436787545681, -0.006847330369055271, -0.028818773105740547, -0.023930558934807777, -0.01211843453347683, 0.0168598759919405, 0.011078253388404846, 0.050847649574279785, -0.005886917468160391, -0.015545290894806385, -0.008066193200647831, 0.007466334383934736, 0.033132657408714294, -0.03660418093204498, 0.0305800624191761, -0.04957135394215584, -0.010599642060697079, -0.023585958406329155, 0.009757285937666893, -0.034204743802547455, 0.030758744105696678, -0.012992697767913342, -0.013860579580068588, 0.022271372377872467, 0.07591411471366882, -0.039105724543333054, -0.03024822659790516, 0.007568438071757555, 0.012035475112497807, 0.046457190066576004, -0.04193910211324692, -0.004173489287495613, 0.0068728565238416195, -0.04579351469874382, 0.027338270097970963, -0.02376464009284973, -0.030197173357009888, -0.009674327448010445, -0.007268508430570364, -0.01294164638966322, -0.049239516258239746, 0.007383374962955713, 0.01174192689359188, -0.00042516624671407044, -0.003131712321192026, 0.012558757327497005, 0.01744697242975235, -0.00925953034311533, 0.03213714435696602, -0.023113729432225227, -0.00014328421093523502, -0.02506646141409874, -0.014970957301557064, 0.024441076442599297, 0.05375760793685913, -0.025704611092805862, -0.0166301429271698, 0.012188631109893322, 0.02866561897099018, -0.006630360148847103, 0.034204743802547455, 0.02479843981564045, -0.030375855043530464, 0.010574116371572018, -0.0024313447065651417, 0.020356928929686546, 0.009565841406583786, 0.03576182574033737, 0.02230966091156006, -0.06805212795734406, -0.023853980004787445, -0.04339407756924629, -0.005009463522583246, 0.030095070600509644, -0.008219349198043346, 7.423458737321198e-05, 0.017931964248418808, -0.04061175137758255, 0.017064083367586136, -0.03109058178961277, 0.01715342327952385, 0.031141633167862892, -0.020535610616207123, 0.000346394837833941, 0.0583522729575634, 0.021901246160268784, -0.032571084797382355, 0.02479843981564045, 0.00993596762418747, 0.026049209758639336, -0.005385971162468195, -0.002809447469189763, -0.03185635805130005, -0.050873175263404846, -0.05641230195760727, -0.03471526503562927, -8.669841918163002e-05, -0.00367573369294405, -0.0166301429271698, -0.01160153467208147, 0.04604877531528473, -0.05309393256902695, -0.037778373807668686, -0.0007067491533234715, -0.0023723160848021507, -0.026317233219742775, -0.012431127019226551, -0.008072574622929096, -0.02155664749443531, 0.013541505672037601, -0.018697742372751236, -0.02999296598136425, -0.0253855362534523, 0.07198312133550644, 0.009757285937666893, 0.08734972774982452, 0.021645987406373024, -0.022016113623976707, -0.06075171008706093, 0.03925887867808342, 0.06054750457406044, 0.05503390356898308, -0.0004865880182478577, 0.036655232310295105, -0.005759287625551224, 0.002061218721792102, 0.0017325724475085735, -0.04232199117541313, -0.0006118246237747371, -0.04525747150182724, -0.023905033245682716, 0.05840332433581352, -0.019169973209500313, -0.02321583218872547, 0.015085823833942413, -0.05452338233590126, 0.011256935074925423, -0.018940240144729614, -0.013286245986819267, -0.021620461717247963, -0.01716618798673153, 0.04229646548628807, -0.010976149700582027, -0.004084148444235325, 0.028410358354449272, -0.04232199117541313, -0.08576712012290955, 0.016247253865003586, -0.04714639112353325, -0.008761774748563766, -0.024951595813035965, 0.007721593603491783, -0.04393012449145317, 0.012628952972590923, 0.014805038459599018, -0.019208261743187904, 0.009221241809427738, 0.026010921224951744, -0.008066193200647831, 0.04829505831003189, 0.026878803968429565, -0.02068876475095749, -0.011710019782185555, 0.022718077525496483, 0.030146121978759766, -0.009240386076271534, 0.019425231963396072, -0.05942436307668686, 0.04206673055887222, 0.0371147021651268, 0.04030544310808182, 0.014498727396130562, 0.04206673055887222, -0.028512462973594666, -0.044338539242744446, -0.01992298662662506, 0.0038480337243527174, -0.059883829206228256, -0.016196202486753464, -0.018480772152543068, -0.02423686906695366, 0.0014501918340101838, 0.013681897893548012, -0.03943755850195885, -0.019489046186208725, 0.02641933597624302, 0.0020691954996436834, 0.047069814056158066, 0.002227137330919504, -0.005363635718822479, -0.0332602858543396, -0.0036853060591965914, 0.00620918208733201, -0.02266702428460121, -0.0057273805141448975, 0.016132386401295662, -0.02098231390118599, 0.016004757955670357, -0.05158790200948715, -0.007262126542627811, 0.014422149397432804, 0.06401903182268143, 0.002335622441023588, -0.008666052483022213, -0.017038557678461075, 0.02156941033899784, 0.011639823205769062, -0.06330430507659912, -0.014945431612432003, -0.030044017359614372, 0.028971929103136063, 0.05375760793685913, 0.04145411029458046, -0.007262126542627811, 0.03645102679729462, 0.036629706621170044, 0.004345789551734924, -0.011914227157831192, -0.024058187380433083, 0.003138093976303935, -0.027925366535782814, 0.02209269069135189, -0.03808468580245972, -0.02367529831826687, -0.002477610483765602, 0.010184845887124538, 0.01433280948549509, -0.02179914340376854, 0.02344556525349617, -0.028793247416615486, -0.009910441935062408, -0.003940565045922995, 0.03024822659790516, -0.02313925512135029, 0.015200690366327763, 0.02288399450480938, 0.04492563381791115, 0.04655929282307625, 0.030656641349196434, 0.0038384615909308195, -0.011658968403935432, 0.03484289348125458, 0.0234583280980587, -0.004345789551734924, -0.011416471563279629, 0.011690875515341759, 0.0038767503574490547, -0.023343462496995926, -0.005251959897577763, 0.01911891996860504, 0.023113729432225227, -0.049775559455156326, 0.04199015349149704, 0.0010816612048074603, -0.009814719669520855, -0.015162401832640171, 0.000660483434330672, -0.02020377293229103, -0.028512462973594666, 0.012156723998486996, 0.018736030906438828, 0.045410625636577606, 0.08826866000890732, -0.02178638055920601, -0.027389321476221085, 0.01388610526919365, -0.04219435900449753, 0.0020915307104587555, 0.016196202486753464, -0.053553398698568344, -0.0011925394646823406, 0.007370612118393183, -0.02230966091156006, 0.036706287413835526, -0.006751608103513718, 0.03522578254342079, 0.039667293429374695, 0.048090849071741104, 0.01660461723804474, -0.020242061465978622, -0.011142067611217499, 0.032060567289590836, 0.011518575251102448, 0.01038267184048891, 0.017306579276919365, 0.05539126694202423, 0.04163279011845589, -0.005743334069848061, 0.02233518846333027, 0.010746415704488754, 0.013835053890943527, -0.008749011904001236, 0.05179211124777794, -0.005934778600931168, -0.012686386704444885, 0.04684007912874222, 0.0015028390334919095, 0.027440372854471207, 0.024083713069558144, 0.002547806827351451, 0.0010353955440223217, 0.02126309834420681, -0.014217942021787167, -0.046482715755701065, -0.028410358354449272, -0.004549996927380562, 0.03223924711346626, 0.041556213051080704, 0.03520025685429573, -0.05105185881257057, -0.02045903168618679, -0.03703812137246132, 0.04191357642412186, 0.006193228531628847, 0.0316266268491745, 0.012354549951851368, 0.011582390405237675, -0.06294693797826767, 0.036629706621170044, -0.007064300589263439, 0.002547806827351451, 0.01934865489602089, -0.03392396122217178, 0.08944285660982132, -5.2796793170273304e-05, 0.01529003120958805, 0.03407711535692215, 0.04178594425320625, 0.015226216986775398, 0.05753544345498085, -0.017842624336481094, 0.034791842103004456, -0.03795705735683441, -1.653950494073797e-05, 0.016528038308024406, -0.043240923434495926, 0.020037854090332985, 0.04033096879720688, 0.04936714470386505, 0.020880209282040596, -0.0032800817862153053, -0.032315824180841446, -0.05804596096277237, -0.025832239538431168, 0.03160110116004944, 0.00757481949403882, -0.014281757175922394, -0.003192336531355977, -0.03714022785425186, 0.026904329657554626, 0.02618960291147232, 0.08055983483791351, -0.017395921051502228, -0.032545559108257294, -0.04500221088528633, -0.004955220967531204, -0.0076067266054451466, 0.020905734971165657, -0.012871449813246727, -0.05243025720119476, -0.04336855188012123, 0.004297928418964148, 0.004368124529719353, 0.014932668767869473, -0.027083011344075203, -0.0025685466825962067, -0.0343068465590477, 0.0031173541210591793, -0.008123626932501793, 0.03683391585946083, 0.04244961962103844, -0.025717373937368393, -0.0490097850561142, 0.022820180281996727, -0.02838483266532421, -0.013618082739412785, 0.02427515760064125, 0.0011047940934076905, -0.014779512770473957, -0.019208261743187904, -0.027619054540991783, 0.008608619682490826, 0.01712789759039879, -0.005899680312722921, -0.005430641584098339, 0.013196905143558979, 0.057433340698480606, -0.021965062245726585, -0.0006042465684004128, -0.018723268061876297, 0.01822551339864731, -0.025474876165390015, -0.07494412362575531, -0.0185573510825634, 0.010331619530916214, -0.008149152621626854, -0.010950623080134392, -0.02510475181043148, 0.025513166561722755, 0.018736030906438828, 0.01115483045578003, 0.030477959662675858, 0.04124990105628967, 0.0038065542466938496, -0.003059920622035861, -0.002908360445871949, 0.00033083997550420463, 0.00010798664152389392, 0.022998861968517303, 0.014205179177224636, 0.018365906551480293, 0.020778106525540352, -0.01606857217848301, -0.0009667945560067892, -0.0016974742757156491, 0.009176571853458881, -0.016693957149982452, 0.008851115591824055, 0.006738845258951187, 0.019986802712082863, 0.003487480105832219, 0.067439503967762, 0.017906438559293747, -0.003551294794306159, -0.02179914340376854, -0.02536001056432724, -0.019706016406416893, -0.005880536045879126, 0.01225244626402855, -0.02151835709810257, 0.020829157903790474, -0.018595639616250992, 0.0038256985135376453, -0.0022335187532007694, -0.025576980784535408, -0.025959869846701622, 0.0442364364862442, -0.020867446437478065, 0.012992697767913342, 0.012105671688914299, -0.013477690517902374, 0.017076846212148666, -0.03218819573521614, -0.027108537033200264, 0.008136389777064323, 0.0430622436106205, -0.02238623984158039, 0.027159588411450386, 0.015494238585233688, 0.003672542981803417, 0.014728461392223835, 0.010982531122863293, -0.001659185392782092, -0.0163365937769413, 0.04806532338261604, 0.00142865430098027, -0.013050131499767303, -0.010516682639718056, 0.013962683267891407, 0.019463520497083664, 0.052481308579444885, -0.052481308579444885, 0.018097883090376854, 0.012411982752382755, -0.0004375303687993437, -0.012865068390965462, 0.014932668767869473, -0.022411765530705452, 0.0027615863364189863, -0.010414578951895237, 0.0028668809682130814, -0.00036314621684141457, -0.014217942021787167, 0.010459248907864094, -0.002324454952031374, 0.0025988586712628603, 0.0006166106904856861, 0.02156941033899784, -0.013835053890943527, -0.05978172644972801, -0.012188631109893322, -0.049494776874780655, -0.01988469809293747, -0.008672433905303478, 0.01077194232493639, -0.00994873046875, -0.028716670349240303, 0.02431344799697399, -0.006649504415690899, -0.022424528375267982, 0.017855387181043625, -0.0006692579481750727, -0.02347109094262123, -0.006432534195482731, -0.02805299498140812, 0.012922501191496849, 0.02751695178449154, 0.016783298924565315, -0.0022287326864898205, -0.028563514351844788, -0.018136171624064445, -0.005500837694853544, 0.0030088687781244516, -0.0035608671605587006, 0.014064786955714226, 0.040203336626291275, -0.01714066043496132, 0.0024122002068907022, -0.029890863224864006, 0.0676947608590126, 0.015200690366327763, 0.07627147436141968, 0.013975446112453938, 0.018136171624064445, 0.0090170344337821, 0.017842624336481094, -0.03930993005633354, 0.018161699175834656, -0.0011319153709337115, 0.014894379302859306, -0.0012739034136757255, 0.03481736779212952, 0.03152452036738396, 0.04668692499399185, 0.0015259719220921397, -0.027491426095366478, 0.025755662471055984, -0.030733218416571617, -0.03106505610048771, 0.033898431807756424, 0.040203336626291275, 0.03211161866784096, 0.027925366535782814, 0.01857011392712593, -0.004712724592536688, -0.010440104641020298, 0.011231408454477787, 0.016489749774336815, -0.004885024856775999, 0.0032003133092075586, -0.015698445960879326, -0.03522578254342079, 0.004974365234375, -0.003187550464645028, 0.05646335333585739, -0.05396181344985962, -0.022169269621372223, -0.0004989521694369614, 0.02784878760576248, -0.020599424839019775, -0.018633928149938583, -0.03617024049162865, -0.031014002859592438, -0.006043263711035252, 0.015047535300254822, -0.00870434194803238, 0.05748439207673073, 0.03959071636199951, -0.024645283818244934, 0.006151748821139336, -0.0204207431524992, -0.007919419556856155, 0.0005775241297669709, -0.06636741757392883, 0.007459952495992184, 0.036680757999420166, 0.020037854090332985, -0.009584986604750156, -0.048141900449991226, -0.0021617270540446043, -0.017804335802793503, 0.015570816583931446, 0.019004054367542267, 0.019999565556645393, 0.013732949271798134, -0.01632383093237877, 1.8234586605103686e-05, -0.014052024111151695, -0.040382020175457, 6.341598054859787e-05, 0.01225244626402855, -0.022028876468539238, -0.003573630005121231, 0.037191279232501984, -0.021429017186164856, -0.01742144674062729, 0.0071727861650288105, 0.012609808705747128, -0.031243737787008286, 0.004179870709776878, -0.014281757175922394, -0.0021681084763258696, 0.002799875335767865, -0.018646690994501114, 0.025245143100619316, 0.015430424362421036, -0.014256231486797333, -0.0032226485200226307, 0.00224787718616426, 0.01802130602300167, -0.006304904352873564, 0.0013241575798019767, 0.027695633471012115, -0.043189872056245804, -0.013401112519204617, 0.04735059663653374, -0.03849310055375099, 0.0452829971909523, -0.011486668139696121, -0.0017006649868562818, -0.010516682639718056, 0.003959709778428078, -0.01171640120446682, -0.025832239538431168, 0.02695538103580475, 0.004039478022605181, 0.010267805308103561, 0.009476501494646072, -0.007740737870335579, -0.0426027737557888, -0.00422135042026639, -0.02209269069135189, -0.0073067969642579556, -0.002133010420948267, 0.007153641432523727, 0.03349001705646515, 0.015596342273056507, 0.01660461723804474, -0.01858287677168846, -0.0037076412700116634, -0.003289654152467847, -0.0360681377351284, -0.034996047616004944, 0.0035800114274024963, -0.022730840370059013, 0.004339408129453659, 0.004266020841896534, 0.008902167901396751, 0.018480772152543068, -0.00029753660783171654, -0.015328320674598217, -0.039131250232458115, -0.016260016709566116, -0.028180625289678574, -0.030682167038321495, 0.014919904991984367, -0.018621165305376053, -0.016221728175878525, -0.029559025540947914, -0.0022127788979560137, -0.010395434685051441, 0.02506646141409874, -0.007274889852851629, 0.026368284597992897, -0.014256231486797333, 0.00661121541634202, -0.04495115950703621, -0.00559975067153573, -0.0354810394346714, -0.008372504264116287, 0.05937331169843674, 0.003765074536204338, -0.044287487864494324, -0.0019670918118208647, 0.004706343170255423, -0.024134766310453415, 0.007951326668262482, 0.008047048933804035, 0.033183708786964417, 0.06835843622684479, 0.008334215730428696, -0.035021573305130005, -0.013503216207027435, 0.011958898045122623, -0.03987150266766548, 0.020101668313145638, 0.028435884043574333, 0.020918497815728188, 0.023637009784579277, 0.044823531061410904, -0.027925366535782814, -0.02866561897099018, 0.018123408779501915, -0.01225244626402855, -0.0163365937769413, 0.04280698299407959, -0.003867178224027157, 0.047580331563949585, -0.04860137030482292, 0.008646908216178417, 0.02453041821718216, -0.03632339835166931, 0.03463868424296379, 0.025002647191286087, 0.010197608731687069, -0.011071871966123581, 0.025717373937368393, 0.026342758908867836, -0.0050445618107914925, -0.022973336279392242, 0.03252003341913223, -0.0005831079324707389, -0.01851906068623066, 0.025219617411494255, -0.004384078085422516, 0.038288895040750504, -0.030120596289634705, 0.009151045233011246, 0.014868853613734245, -0.025296196341514587, 0.03052901104092598, -0.013375586830079556, -0.017536312341690063, 0.028563514351844788, 0.00939354207366705, -1.3311372640600894e-05, -0.021352440118789673, -0.007938563823699951, 0.002586095593869686, -0.004738250747323036, -0.006257043220102787, 0.01105272676795721, 0.017804335802793503, -0.02096955105662346, 0.01309480145573616, 5.4940574045758694e-05, 0.00505413394421339, -0.005906061735004187, -0.00647082319483161, 0.025143040344119072, -0.0018777510849758983, -0.024760151281952858, 0.056054938584566116, 0.014651883393526077, -0.004597858060151339, 0.02864009141921997, 0.014090312644839287, -0.01433280948549509, 0.006308095064014196, -0.04655929282307625, -0.027338270097970963, -0.02458146959543228, 0.0328008197247982, -0.008193823508918285, 0.002755204914137721, -0.011550482362508774, 0.007849222980439663, 0.03795705735683441, 0.02703195810317993, -0.00914466381072998, -0.012163105420768261, 0.021173758432269096, 0.05128159001469612, 0.051690004765987396, -0.00033582549076527357, 0.0055901785381138325, 0.02833378128707409, 0.006809041369706392, -0.03798258304595947, 0.029329292476177216, -0.009476501494646072, -0.028257202357053757, 0.01296717207878828, -0.013196905143558979, 0.011231408454477787, -0.03877388685941696, -0.022552158683538437, -0.02886982634663582, -0.005759287625551224, 0.016413172706961632, 0.010146556422114372, -0.04040754586458206, -0.004601048771291971, -0.0128076346591115, 0.028435884043574333, 0.022169269621372223, -0.021697038784623146, -0.04791216924786568, 0.030324803665280342, -0.020037854090332985, 0.003327942918986082, -0.006062407977879047, 0.024951595813035965, 0.03553209453821182, 0.008461845107376575, 0.016451461240649223, 0.005641230382025242, -0.024645283818244934, -0.01747249811887741, 0.0037937911693006754, 0.0029434587340801954, -0.009578605182468891, -0.009859389625489712, 0.02700643241405487, 0.0021521549206227064, 0.03152452036738396, 0.05365550145506859, 0.008551185950636864, 0.015672920271754265, -0.03839099779725075, -0.00081842509098351, 0.021965062245726585, -0.03923335298895836, -0.023649772629141808, 0.00587096344679594, 0.007747119292616844, 0.051230538636446, -0.030605588108301163, -0.00661121541634202, 0.01660461723804474, -0.003742739325389266, 0.009227623231709003, -0.020663239061832428, 0.017281053587794304, -0.00524876918643713, 0.026023684069514275, 0.025564217939972878, 0.04461932182312012, -0.0019288030453026295, -0.002611621515825391, -0.05993488058447838, 0.006623978726565838, -0.009757285937666893, 0.016515275463461876, 0.03402606397867203, -0.024390025064349174, 0.022998861968517303, 0.03841652348637581, -0.05539126694202423, 0.02644486166536808, -0.016757771372795105, -0.008308690041303635, 0.008391649462282658, 0.032315824180841446, 0.011339893564581871, -0.00929143838584423, 0.01239283848553896, 0.040509648621082306, 0.0005994605016894639, 0.0007246970781125128, 0.06585689634084702, 0.01310756430029869, -0.017612891271710396, 0.016272779554128647, -0.007817315869033337, 0.033158183097839355, 0.009846626780927181, 0.03392396122217178, 0.03923335298895836, -0.005976258311420679, 0.026827750727534294, 0.011997186578810215, 0.008908549323678017, 0.04806532338261604, 0.02045903168618679, -0.01632383093237877, 0.04775901138782501, 0.033183708786964417, 0.014945431612432003, -0.0003252561728004366, -0.02232242561876774, 0.008621382527053356, -0.01693645305931568, -0.008627763949334621, -0.015583579428493977, 0.023266883566975594, 0.00587096344679594, -0.02210545353591442, 0.0007119341171346605, 0.015736734494566917, 0.007676923181861639, 0.016004757955670357, 0.008889405056834221, -0.014039261266589165, 0.04684007912874222, 0.000621795654296875, -0.0021122705657035112, 0.004971174523234367, 0.0021585363429039717, -0.031218210235238075, 0.00018266992992721498, 0.015915416181087494, -0.044568270444869995, 0.001904872478917241, 0.011499430984258652, -0.017319342121481895, 0.021645987406373024, -0.016502512618899345, 0.013694660738110542, 0.02616407722234726, -0.03813573718070984, 0.022973336279392242, -0.02373911440372467, 0.016719482839107513, -0.008532041683793068, -0.00871710479259491, -0.033132657408714294, 0.020624950528144836, 0.009604130871593952, -0.019808121025562286, 0.01541766058653593, -0.00857033021748066, -0.04170936718583107, -0.013260720297694206, 0.013439401984214783, 0.02103336527943611, 0.014396623708307743, -0.04903531074523926, 0.008270400576293468, -0.0006692579481750727, -0.017880912870168686, 0.009827482514083385, -0.019680490717291832, 0.03948861360549927, -0.0026531012263149023, 0.005462548695504665, 0.01132713072001934, -0.008487371727824211, -0.029916388913989067, 0.0006194026209414005, -0.01857011392712593, 0.007823697291314602, -0.02316478081047535, -0.009578605182468891, 0.006477204617112875, 0.023917796090245247, -0.004514898639172316, -0.0006533042178489268, 0.024479364976286888, 0.017510786652565002, -0.005909252446144819, -0.038544151932001114, -0.0026052400935441256, -0.01130160503089428, 0.018416957929730415, 0.005555080249905586, 0.03999913111329079, 0.05375760793685913, 0.02095678821206093, 0.02703195810317993, -0.010688982903957367, 0.007619489915668964, -0.008615001104772091, -0.012539612129330635, 0.03685944154858589, 0.004323454108089209, 0.0035481040831655264, 0.01830209046602249, 0.027644580230116844, 0.01227797195315361, -0.0030950189102441072, 0.005229624453932047, 0.022296898066997528, 0.022539395838975906, 0.02513027749955654, -0.0013648394960910082, 0.026317233219742775, -0.02423686906695366, 0.030758744105696678, -0.005089232232421637, -0.017064083367586136, 0.03190740942955017, 0.02209269069135189, 0.027414847165346146, 0.009572223760187626, 0.03188188374042511, 0.03864625468850136, 0.004751013591885567, -0.03731890767812729, 0.017102371901273727, -0.015915416181087494, 0.0004626574518624693, 0.01119950134307146, -0.019463520497083664, -0.005593369249254465, 0.006445297040045261, 0.030911900103092194, 0.02509198896586895, -0.03078426979482174, 0.0009261125815100968, 0.04362381249666214, -0.012380075640976429, 0.02971218153834343, -0.001167013542726636, 0.02075258083641529, -0.020050616934895515, 0.0025190901942551136, -0.046508241444826126, 0.011435615830123425, 0.012852305546402931, -0.01253323070704937, -0.010905953124165535, 0.02779773622751236, 0.012514086440205574, -0.025308959186077118, -0.004192634020000696, -0.003863987512886524, -0.002929100301116705, -0.01931036449968815, -0.003131712321192026, -0.017868150025606155, 0.015455950051546097, -0.008423556573688984, 0.01215034257620573, -0.006911145057529211, 0.006528256461024284, 0.006116650532931089, -0.02996744029223919, 0.0069813416339457035, -0.02319030649960041, -0.02020377293229103, 0.002281379885971546, 0.06667372584342957, 0.006049645133316517, 0.03655312955379486, -0.0005149058415554464, -0.01460083108395338, 0.003165215253829956, -0.008206586353480816, 0.0008004771661944687, 0.03599156066775322, 0.03244345635175705, -0.057433340698480606, 0.03185635805130005, 0.01634935662150383, -0.009514790028333664, 0.001412700628861785, 0.02264149859547615, -0.017829861491918564, -0.029584551230072975, 0.019450757652521133, -0.006429343484342098, 0.007064300589263439, -0.008883023634552956, 0.02478567697107792, -0.00019034765136893839, -0.0015730353770777583, -0.027976417914032936, -0.003956519067287445, 0.02861456573009491, 0.008659671060740948, 0.01877432130277157, -0.01006997935473919, 0.012673623859882355, -0.034204743802547455, -0.02700643241405487, 0.02700643241405487, -0.015455950051546097, 0.0002319269988220185, -0.02506646141409874, 0.026317233219742775, 0.0014932667836546898, -0.05258341506123543, -0.015864364802837372, -0.004467037506401539, 0.006853711791336536, -0.023917796090245247, 0.035812877118587494, -0.00982110109180212, -0.010854900814592838, 0.04224541410803795, -0.012092908844351768, 0.042628299444913864, -0.010516682639718056, -0.027083011344075203, -0.0007386565557681024, -0.0018027686746791005, -0.008219349198043346, -0.003704450326040387, -0.040484122931957245, -0.033107127994298935, -0.0016400408931076527, -0.016974743455648422, 0.018723268061876297, 0.004891406279057264, -0.009399923495948315, -0.010631549172103405, -0.022488342598080635, -0.010280568152666092, -0.010018927045166492, 0.0012866663746535778, -0.0025063271168619394, -0.014856090769171715, -0.01850629784166813, 0.005165809765458107, -0.010842137970030308, 0.005832674913108349, 0.010286949574947357, -0.012105671688914299, 0.01611962355673313, -0.01883813552558422, -0.04686560481786728, 0.001805959502235055, 0.0163365937769413, 0.037216804921627045, 0.036655232310295105, -0.009234004653990269, 0.028180625289678574, -0.0291761364787817, 0.024989884346723557, -0.0022175649646669626, 0.005366826429963112, 0.023049913346767426, 0.015940941870212555, 0.017804335802793503, -0.021314149722456932, 0.011761072091758251, 0.005880536045879126, -0.0018633927684277296, -0.024173054844141006, -0.0013664348516613245, -0.0221182182431221, 0.0024122002068907022, -0.02371358871459961, 0.01772775687277317, 0.02948244847357273, 0.03703812137246132, -0.0002568546624388546, 0.005593369249254465, -0.0007083445088937879, 0.038288895040750504, 0.013515979051589966, -0.03734443336725235, -0.0180340688675642, -0.022194795310497284, 0.005363635718822479, -0.018046831712126732, 0.020586661994457245, -0.021480068564414978, 0.005893298890441656, 0.0014254635898396373, 0.018876424059271812, -0.008659671060740948, -0.025232380256056786, -0.01712789759039879, 0.0008351764990948141, 0.0050445618107914925, 0.009974257089197636, -0.06059855595231056, 0.015545290894806385, 0.003742739325389266, -0.0027791354805231094, -0.004722296725958586, 0.007191930431872606, -0.0034364282619208097, -0.0032306252978742123, 0.01714066043496132, -0.018633928149938583, -0.012756583280861378, -0.025742899626493454, 0.008002378977835178, 0.03703812137246132, -0.0033311336301267147, 0.01253323070704937, 0.004747822880744934, 0.0056444210931658745, -0.004671244882047176, 0.03086084872484207, -0.016208965331315994, -0.010810230858623981, -0.010708127170801163, 0.021148232743144035, 0.0003485884517431259, 0.027593528851866722, 0.018723268061876297, 0.004310691263526678, 0.05186868831515312, 0.008883023634552956, -0.005580606404691935, -0.02807852253317833, 0.019284838810563087, 0.007376993540674448, -0.024058187380433083, 0.0014765154337510467, -0.03703812137246132, 0.012054620310664177, -0.0038256985135376453, 0.011888701468706131, 0.0033343243412673473, 0.0316266268491745, -0.015162401832640171, -0.012284353375434875, 0.03568524867296219, -0.017817098647356033, -0.03198399022221565, 0.04878005012869835, -0.04908636212348938, 0.001293047796934843, 0.015698445960879326, -0.010829375125467777, 0.00832783430814743, 8.470420289086178e-05, -0.00041439750930294394, 0.013171379454433918, -0.00033622432965785265, 0.016757771372795105, -0.0015355441719293594, -0.016553563997149467, 0.017587365582585335, -0.0316266268491745, -0.006400626618415117, 0.027338270097970963, 0.030477959662675858, -0.008525660261511803, 0.005529554560780525, 0.0037235948257148266, -0.004272402264177799, -0.019795358180999756, 0.0003697271167766303, 0.0013560649240389466, 0.008615001104772091, -0.0058613913133740425, -0.016745008528232574, -0.032060567289590836, -2.933986070274841e-05, -0.0038990855682641268, -0.03387290611863136, -0.04163279011845589, -0.0008088528993539512, -0.00442874850705266, 0.0007936968468129635, 0.03109058178961277, 0.04329197481274605, 0.014409386552870274, 0.005050943233072758, -0.0491374135017395, 0.08081509172916412, -0.03782942518591881, 0.017880912870168686, 0.0338473804295063, 0.018314853310585022, -0.01883813552558422, -0.007542911916971207, 0.0006545007927343249, -0.012175868265330791, -0.04525747150182724, 0.013567031361162663, 0.018736030906438828, 0.022156506776809692, -0.0006676625926047564, -0.0017804335802793503, -0.030758744105696678, -0.001368827885016799, -0.019744306802749634, -0.02968665584921837, -0.028793247416615486, -0.017510786652565002, 0.004128818865865469, -0.035608671605587006, -0.000769367441534996, 0.0022223512642085552, -0.018953002989292145, 0.0177405197173357, 0.0038831320125609636, -0.020612187683582306, 0.027083011344075203, 0.02103336527943611, 0.008646908216178417, -0.0005515993689186871, -0.008423556573688984, 0.0035768207162618637, -0.015507001429796219, -0.01689816452562809, -0.020510083064436913, -0.02287123166024685, 0.0025462114717811346, -0.004189442843198776, -0.02807852253317833, 0.00925953034311533, 0.004687198903411627, 0.009878534823656082, 0.005947541445493698, 0.01962943933904171, -0.02504093572497368, 0.0305800624191761, -0.03269871324300766, -0.0057241893373429775, 0.017625654116272926, -0.032035041600465775, -0.029125085100531578, -0.02177361771464348, 0.006084743421524763, -0.030401380732655525, -0.005111567210406065, -0.0073642306961119175, -0.018608402460813522, -0.04244961962103844, -0.00845546368509531, -0.0102103715762496, -0.023254120722413063, -0.01293526403605938, 0.050030820071697235, 0.0035991559270769358, 0.0090170344337821, -0.0003878744610119611, -0.03481736779212952, -0.0054785022512078285, 0.025615269318223, 0.030886374413967133, 0.06376376748085022, -0.009342489764094353, -0.017013031989336014, -0.01581331342458725, -0.008985127322375774, 0.023815691471099854, -0.03466420993208885, 0.004955220967531204, 0.009234004653990269, -0.009087231010198593, -0.012826778925955296, -0.010516682639718056, -0.015315556898713112, -0.0076896860264241695, -0.020650476217269897, -0.023815691471099854, 0.002613216871395707, 0.0013433019630610943, 0.01720447652041912, 0.018761558458209038, 7.044558151392266e-05, 0.013452164828777313, -0.0033470874186605215, 0.018953002989292145, -0.002361148362979293, -0.0073514673858881, -0.0019654964562505484, -0.0025940726045519114, -0.006502730306237936, 0.015226216986775398, -0.005226433742791414, 0.02920166216790676, 0.030631113797426224, 0.009578605182468891, 0.02016548439860344, -0.029252713546156883, -0.03167767822742462, 0.020331403240561485, -0.006713319104164839, 0.008059811778366566, -0.06264062970876694, -0.034204743802547455, 0.033694226294755936, -0.017089609056711197, 0.002308501163497567, -0.02098231390118599, -0.018212750554084778, -0.014817801304161549, 0.01146114245057106, -0.014141364954411983, -0.03272424265742302, 0.00954669713973999, -0.024402787908911705, -0.03706364706158638, 0.008678816258907318, -0.006643122993409634, 0.02805299498140812, -0.0039022762794047594, 0.04257724806666374, -0.00027998752193525434, 0.018199987709522247, 0.01256513874977827, 0.018442483618855476, 0.0008463441045023501, 0.03435790166258812, 0.015009245835244656, -0.009214860387146473, 0.012494942173361778, -0.019833646714687347, 0.03540446236729622, 0.0055901785381138325, 0.010727271437644958, -0.015073060989379883, -0.004473418928682804, 0.010663457214832306, 0.003988426178693771, 0.037727322429418564, 0.022437291219830513, -0.012297116219997406, -0.014677409082651138, -0.012979934923350811, 0.022564921528100967, 0.0359405092895031, 0.018761558458209038, -0.029814284294843674, 0.005902871023863554, -0.023075439035892487, 0.03632339835166931, -0.0074982414953410625, 0.013579794205725193, 0.013592557050287724, 0.002879643812775612, -0.009910441935062408, 0.0168598759919405, -0.04898425564169884, 0.0006656683399342, 0.0005874952184967697, 0.035327885299921036, -0.01745973527431488, 0.006968578789383173, -0.02427515760064125, 0.004795684013515711], [0.010950804688036442, 0.01566283591091633, 0.03240207955241203, 0.02202242985367775, -0.0711747407913208, -0.017156627029180527, -0.0010956296464428306, -0.001941378810442984, 0.028711536899209023, 0.006562794093042612, -0.027173811569809914, 0.024120327085256577, -0.020144207403063774, 0.004363297019153833, -0.03211650252342224, 0.009748083539307117, -0.0012748021399602294, 0.03330274671316147, 0.016223007813096046, 0.0027912468649446964, 0.001332466839812696, 0.04406682774424553, -0.01515758316963911, 0.03532375767827034, -0.02625117637217045, -0.02653675340116024, 0.00832019466906786, 0.004906992893666029, 0.011258349753916264, -0.0501737967133522, 0.021341437473893166, -0.01341116614639759, 0.039761196821928024, -0.009215370751917362, 0.041584499180316925, 0.029128920286893845, -0.036246392875909805, -0.009314225055277348, 0.03380800038576126, -0.039871033281087875, -0.08685953915119171, 0.02326359413564205, 0.01937534473836422, 0.0028585223481059074, -0.022494731470942497, 0.07214130461215973, 0.050437405705451965, -0.010753097012639046, -0.0454288125038147, 0.03358832374215126, -0.005220029968768358, 0.005598969291895628, -0.01590447872877121, 0.013586905784904957, 0.0750410184264183, 0.02306588739156723, 0.006974685005843639, -0.013971337117254734, 0.014553476125001907, -0.028821375221014023, -0.025262638926506042, 0.027701031416654587, -0.0030946731567382812, 0.03543359786272049, -0.012170001864433289, 0.00668910751119256, -0.0065682861022651196, 0.033083073794841766, -0.029656140133738518, 0.03352242335677147, -0.004124400205910206, 0.008622248657047749, -0.009297749027609825, -0.06331036984920502, -0.017090724781155586, 0.01868336834013462, 0.04999805614352226, -0.0018233034061267972, 0.037828054279088974, 0.021561112254858017, -0.0038772658444941044, 0.035938847810029984, -0.032797493040561676, 0.023549173027276993, 0.04274877905845642, -0.0035065640695393085, -0.022582601755857468, 0.0036713203880935907, -0.030732547864317894, -0.016651373356580734, -0.012642302550375462, -0.03185289353132248, -0.0019454977009445429, 0.07600758969783783, 0.024471808224916458, 0.0038580442778766155, 0.01924354024231434, -0.03189682587981224, -0.03916807472705841, 0.04077170044183731, 0.015333322808146477, -0.0005742444773204625, 0.04189204424619675, 0.032511916011571884, 0.04573635756969452, -0.06577073037624359, -0.0565883107483387, 0.014707248657941818, 0.029304660856723785, -0.01408117450773716, -0.02822825312614441, 0.03433522209525108, -0.019452231004834175, 0.043517641723155975, -0.0016530551947653294, -0.021297503262758255, 0.012850994244217873, -0.02243981324136257, 0.05109643191099167, -0.002979343757033348, -0.05092069134116173, 0.0013654181966558099, 0.03369816392660141, -0.09885380417108536, -0.008452000096440315, 0.03402767702937126, -0.06809928268194199, 0.014333801344037056, -0.021616030484437943, -0.009511932730674744, 0.024318035691976547, -0.017277447506785393, 0.04560455307364464, -0.018101230263710022, -0.02475738525390625, -0.04903148487210274, 0.03207256644964218, 0.008303719572722912, -0.017870571464300156, -0.015245453454554081, 0.041826143860816956, -0.007353624328970909, 0.005038797855377197, -0.018320905044674873, -0.050613146275281906, 0.008419048972427845, 0.013751662336289883, 0.029128920286893845, 0.008825447410345078, 0.0009041004232130945, -0.057335205376148224, 0.06243166700005531, -0.0021377133671194315, 6.924914487171918e-05, 0.004676334094256163, 0.012993782758712769, -0.030930256471037865, 0.041628435254096985, 0.0019702112767845392, 0.025196736678481102, -0.057686686515808105, -0.048899680376052856, 0.027722999453544617, -0.021099794656038284, 0.022077349945902824, 0.020254045724868774, -0.029172854498028755, 0.00043111242121085525, -0.041496630758047104, -0.020913071930408478, -0.05004199221730232, -0.03389586880803108, -0.023900652304291725, -0.04744982346892357, 0.005390278063714504, -0.05544599890708923, 0.019737809896469116, 0.019792728126049042, 0.013466084375977516, -0.04110121354460716, 0.020803233608603477, 0.015552998520433903, -0.003251191694289446, -0.011741635389626026, -0.012082131579518318, 0.030908288434147835, -0.007057063281536102, -0.011752618476748466, -0.0009988353122025728, 0.011664748191833496, 0.00983046181499958, -0.017782701179385185, -0.012785091996192932, 0.0565883107483387, -0.03400570899248123, -0.0018054548418149352, -0.02855776436626911, -0.04766950011253357, 0.012752140872180462, -0.008160930126905441, 0.03932184725999832, -0.05535813048481941, 0.021187664940953255, -0.0041738273575901985, -0.034225381910800934, -0.04657112434506416, 0.027173811569809914, -0.014795118942856789, 0.06638582050800323, -0.011219906620681286, 0.0037948875688016415, -0.028777441009879112, -0.041386790573596954, 0.007990682497620583, -0.03143550828099251, 0.03125976771116257, 0.01579464040696621, 0.004846582189202309, -0.02015519142150879, 0.018189098685979843, 0.015596933662891388, -0.02633904665708542, -0.005214537959545851, 0.03745460882782936, -0.014531509019434452, -0.01236770860850811, 0.0008059330866672099, 0.014959875494241714, -0.025438377633690834, -0.03688345104455948, -0.03512605279684067, 0.05988343805074692, -0.029238758608698845, -0.007578791584819555, 0.021121762692928314, 0.036510005593299866, 0.0149488914757967, -0.024010490626096725, -0.00038031255826354027, -9.670853614807129e-05, 0.015047745779156685, 0.0488557443022728, 0.025636086240410805, 0.025701988488435745, -0.000188440055353567, 0.017211545258760452, -0.010791540145874023, -0.008699134923517704, 0.059224411845207214, 0.016376780346035957, -0.028645634651184082, -0.006249757017940283, 0.009303241036832333, -0.03501621261239052, 0.0024562424514442682, 0.009001187980175018, 0.04193598031997681, 0.023461302742362022, 0.05553387105464935, -0.022340958938002586, 0.00875405315309763, -0.01785958744585514, -0.010835475288331509, 0.019891582429409027, -0.021989479660987854, 0.01248853001743555, 0.07442592829465866, -0.02998565323650837, -0.03701525554060936, -0.0014416179619729519, -0.029238758608698845, 0.01879320666193962, -0.002566079841926694, -0.016980886459350586, -0.01594841293990612, 0.01509168092161417, 0.00984144490212202, -0.009072582237422466, 0.004939944017678499, 0.023483270779252052, -0.06726451963186264, -0.04015661031007767, 0.021714884787797928, -0.02313178963959217, 0.010138006880879402, -0.041979916393756866, 0.004283664748072624, 0.00802912563085556, 0.019792728126049042, 0.03936577960848808, 0.02486722357571125, 0.007057063281536102, 0.021407339721918106, -0.0011148512130603194, 0.04277074337005615, 0.01058834046125412, -0.01792548969388008, -0.027744967490434647, 0.057467009872198105, 0.0031688136514276266, -0.0004942690138705075, 0.018628450110554695, 0.011939342133700848, 0.04230942577123642, -0.0025399934966117144, 0.01586054265499115, 0.010407108813524246, 0.07187769562005997, -0.038113631308078766, -0.0021335945930331945, -0.003687795950099826, 0.03694935515522957, -0.06682517379522324, -0.01661842316389084, -0.034269317984580994, -0.0050113387405872345, 0.003885503625497222, 0.019924532622098923, 0.009759066626429558, 0.004305632319301367, 0.02664659172296524, 0.02625117637217045, 0.013938385993242264, -0.008913317695260048, 0.010851950384676456, -0.041738271713256836, 0.02499902807176113, 0.03134763985872269, -0.027898740023374557, -0.0012720562517642975, -0.016223007813096046, -0.010192925110459328, 0.024449840188026428, -0.04560455307364464, -0.01577267423272133, 0.018101230263710022, 0.02680036425590515, 0.0490754209458828, -0.0039651356637477875, -0.016157105565071106, 0.019254524260759354, -0.0044154697097837925, 0.0032072567846626043, -0.032687656581401825, -0.011686716228723526, -0.002982089761644602, 0.02052863873541355, 0.013345262967050076, 0.038113631308078766, 0.059136539697647095, 0.030666645616292953, -0.016003333032131195, -0.001440244959667325, -0.04461601749062538, -0.07258065789937973, -0.009857920929789543, 0.03708115965127945, -0.030622711405158043, -0.03844314441084862, 0.008627739734947681, -0.024230165407061577, -0.029722042381763458, 0.043385837227106094, 0.03372013196349144, -0.030490906909108162, -0.0019798220600932837, 0.027107909321784973, 0.0037564444355666637, 0.0018946978962048888, -0.03029319830238819, 0.02816234901547432, 0.016387764364480972, -0.025152800604701042, -0.04088154062628746, 0.013455101288855076, -0.0034132020082324743, -0.005815898533910513, 0.002388966968283057, -0.01008857972919941, -0.009314225055277348, 0.05882899463176727, 0.033105041831731796, 0.018265986815094948, 0.04762556403875351, 0.0859808400273323, 0.023922620341181755, -0.047098346054553986, 0.010829983279109001, 0.012861978262662888, 0.016453666612505913, -0.03033713437616825, 0.025372475385665894, -0.02499902807176113, 0.0061069680377841, -0.03760838136076927, 0.02495509386062622, 0.07231704890727997, 0.041716303676366806, -0.00782043393701315, -0.015289387665688992, 0.006172870751470327, -0.007079030387103558, 0.010445551946759224, -0.06581466645002365, 0.019023865461349487, -0.010665226727724075, -0.0007510142750106752, 0.004926214460283518, 0.03367619588971138, 0.0025701988488435745, 0.040090709924697876, -0.022011445835232735, 0.021659966558218002, -0.02800857648253441, 0.019935516640543938, 0.016277926042675972, 0.028909245505928993, 0.04439634084701538, 0.0011491754557937384, -0.011719667352735996, 0.025614118203520775, 0.015563981607556343, -0.04081563651561737, 0.009380127303302288, -0.030952224507927895, 0.02469148300588131, 0.004184810910373926, 0.03167715296149254, 0.0008938031387515366, -0.07038390636444092, -0.02484525553882122, 0.006381561979651451, 0.034620799124240875, 0.015574965626001358, -0.04048612341284752, 0.00866618286818266, 0.022055381909012794, -0.021297503262758255, -0.029348595067858696, -0.004994863178580999, -0.024164263159036636, -0.004206778481602669, 0.010072103701531887, 0.04294648393988609, -0.04305632412433624, 0.012060163542628288, -0.026932168751955032, 0.017628928646445274, 0.034620799124240875, 0.007293213624507189, -0.04044218733906746, -0.014267899096012115, -0.02677839621901512, 0.023878684267401695, -0.03165518492460251, 0.019364360719919205, 0.0353676937520504, -0.026954136788845062, 0.029150888323783875, -0.04582422971725464, 0.0246475487947464, 0.04621964320540428, 0.008479459211230278, 0.028975147753953934, 0.034620799124240875, 0.034686699509620667, 0.011620813980698586, -0.03227027505636215, -0.025372475385665894, -0.053776469081640244, -0.03826740384101868, -0.02853579819202423, 0.009698656387627125, 0.019803712144494057, -0.023768847808241844, -0.0246475487947464, -0.00020525894069578499, -0.056148961186409, -0.005623682867735624, -0.019078783690929413, 0.019770760089159012, 0.03407160937786102, -0.021473241969943047, -0.03404964134097099, 0.0387946255505085, 0.021143730729818344, 0.07903910428285599, -0.015498079359531403, -0.022604569792747498, -0.044989462941884995, -0.06717664748430252, -0.03161124885082245, 0.03380800038576126, -0.007924780249595642, -0.012038196437060833, 0.020045354962348938, 0.0012761751422658563, -0.0002181305317208171, 0.04736195504665375, -0.0385749489068985, 0.0045610046945512295, -0.04982231557369232, 0.020407818257808685, -0.04391305521130562, 0.04107924550771713, -0.032753560692071915, 0.017343349754810333, -0.01160982996225357, -0.029041050001978874, -0.0150038106366992, -0.06247560307383537, -0.02664659172296524, 0.014707248657941818, 0.011033182963728905, -0.011961310170590878, -0.04986625164747238, 0.016497600823640823, 0.025152800604701042, -0.002491939580067992, -0.009358160197734833, -0.027107909321784973, 0.01148900855332613, -0.046746864914894104, -0.02622920833528042, -0.014795118942856789, 0.018178116530179977, 0.0027431929484009743, -0.03431325405836105, -0.006590253673493862, -0.0020347407553344965, 0.003932184539735317, -0.04947083443403244, -0.039914969354867935, 0.011752618476748466, 0.030534841120243073, -0.006079508922994137, 0.031237801536917686, 0.0006343118730001152, -0.00669459905475378, -0.00970964040607214, 0.00811699591577053, -0.048504266887903214, 0.02275834232568741, 0.0026566958986222744, 0.026888234540820122, 0.021231599152088165, 0.03905823454260826, 0.012433611787855625, 0.006392545998096466, -0.013894450850784779, 0.01233475748449564, 0.03919003903865814, 0.02213226817548275, 0.006716566625982523, -0.017134658992290497, -0.01335624698549509, 0.03776215389370918, -0.01608021929860115, 0.0045610046945512295, -0.02491115778684616, 0.007825925946235657, 0.017156627029180527, -0.040024805814027786, -0.0249770600348711, -0.0041738273575901985, 0.03413751348853111, -0.017475156113505363, -0.00894077681005001, 0.029260724782943726, -0.004003578796982765, -0.008056584745645523, 0.06221199408173561, 0.017321383580565453, -0.0027528037317097187, 0.014926924370229244, 0.0023532696068286896, 0.013531987555325031, -0.04468191787600517, -0.019430264830589294, 0.013960354030132294, 0.008578313514590263, 0.053908273577690125, 0.0010489487322047353, -0.006765993777662516, -0.017145643010735512, 0.002276383340358734, 0.0057390122674405575, -0.017519090324640274, -0.028733504936099052, 0.018298937007784843, 0.006958209443837404, -0.015849560499191284, 0.006947225425392389, -0.0067220586352050304, -0.019562069326639175, 0.06348610669374466, -0.04246319830417633, 0.027393486350774765, -0.013586905784904957, 0.04639538377523422, 0.020913071930408478, -0.012708205729722977, 0.00165717420168221, 0.03848708048462868, -0.02137438952922821, -0.025921663269400597, -0.007661169860512018, -0.025899697095155716, 0.011066134087741375, 0.0077929748222231865, 0.04406682774424553, -0.016651373356580734, -0.005909260828047991, -0.02133045345544815, -0.0572473369538784, 0.009879888035356998, -0.045077335089445114, -0.045253075659275055, -0.013191490434110165, 0.01055538933724165, -0.013971337117254734, 0.030996158719062805, 0.015421193093061447, -0.018123196437954903, -0.020045354962348938, -0.009940299205482006, -0.005771963857114315, -0.04026645049452782, 0.020034370943903923, -0.010632275603711605, -0.01763991266489029, 0.03903626650571823, -0.004698301665484905, -0.0335443913936615, -0.038091663271188736, -0.011774586513638496, 0.017826635390520096, 0.005574256181716919, 0.03400570899248123, -0.0029546304140239954, 0.03141354024410248, 0.0021583079360425472, 0.013037717901170254, -0.02825021930038929, 0.05171152204275131, -0.009885380044579506, 0.012741156853735447, 0.01145605742931366, 0.019276492297649384, -0.00874307006597519, 0.00045307993423193693, -0.0076831369660794735, 0.018935995176434517, -0.05144791305065155, 0.00712845753878355, -0.029041050001978874, -0.045077335089445114, 0.036444101482629776, 0.02308785542845726, -0.002814587438479066, -0.03336865082383156, 0.01746417209506035, -0.016541536897420883, -0.021616030484437943, 0.019210588186979294, 0.007337148766964674, 0.012609351426362991, -0.01677219569683075, 0.0073701003566384315, -0.009984234347939491, 0.006760501768440008, 0.007419527042657137, -0.008545362390577793, -0.021813739091157913, -0.021637998521327972, -0.01566283591091633, -0.023680977523326874, 0.018408775329589844, -0.02818431705236435, 0.04560455307364464, -0.01033022254705429, -0.012170001864433289, -0.010412600822746754, 0.036685746163129807, 0.0016214769566431642, 0.016179071739315987, 0.0422215573489666, -0.02008928917348385, 0.028645634651184082, -0.016530552878975868, 0.014520525000989437, 0.025723956525325775, 0.006908782292157412, 0.01696990244090557, 0.02849186211824417, 0.07086719572544098, 0.006337627302855253, 0.0075238728895783424, -0.017497122287750244, 0.019792728126049042, -0.010505962185561657, 0.0061069680377841, -0.01254344917833805, -0.08483853191137314, -0.03369816392660141, 0.0033088563941419125, 0.04118908569216728, 0.004327599890530109, 0.011033182963728905, -0.006562794093042612, -0.008902333676815033, 0.00894077681005001, -0.01859549805521965, -0.018990913406014442, -0.03538966178894043, 0.03659787401556969, 0.0056401584297418594, -0.010818999260663986, 0.03466473147273064, 0.01621202379465103, -0.032885365188121796, 0.020770281553268433, -4.1446517570875585e-05, -0.028997115790843964, 0.0037234933115541935, -0.024230165407061577, -0.030556809157133102, -0.01670629344880581, -0.015673819929361343, 0.03727886825799942, 0.043517641723155975, -0.0010393379488959908, -0.012993782758712769, 0.023615075275301933, -0.0005965552409179509, 0.029612205922603607, -0.01664038933813572, 0.003583450336009264, -0.006041065789759159, -0.019089767709374428, 0.044967494904994965, -0.04714227840304375, 0.004140875767916441, -0.05847751721739769, -0.0015830338234081864, 0.010203909128904343, -0.01230180636048317, -0.01579464040696621, -0.02822825312614441, 0.028975147753953934, -0.004269935190677643, 0.0054616727866232395, -0.005101954564452171, -0.025240670889616013, 0.0335443913936615, -0.01140113826841116, 0.025833792984485626, -0.00619483832269907, 0.020715363323688507, 0.01701383851468563, 0.0023065886925905943, 0.010247844271361828, 0.021813739091157913, 0.029326628893613815, -0.008968236856162548, -0.019320426508784294, -0.022626537829637527, -0.006074016913771629, 0.0196169875562191, -0.011104577220976353, -0.009901856072247028, 0.020858151838183403, 0.05078888684511185, -0.005717044696211815, 0.02860170044004917, 0.006496891379356384, 0.015179550275206566, -0.016420714557170868, -0.010148989968001842, -0.03571917489171028, 0.012312790378928185, -0.0027184796053916216, -0.014388720504939556, 0.005269456654787064, -0.010857442393898964, 0.005022322293370962, 0.015552998520433903, 0.02297801710665226, 0.020056338980793953, 0.014322817325592041, -0.014553476125001907, -0.02195652760565281, -0.01690400019288063, -0.03244601562619209, -0.0059477039612829685, 0.0016791416564956307, 0.004434691276401281, -0.02289014682173729, 0.01872730441391468, 0.007232803385704756, -0.008858399465680122, -0.001794471056200564, 0.005008592735975981, 0.03703722357749939, 0.04599997028708458, 0.005269456654787064, -0.0157507061958313, -0.00986341293901205, 0.027481356635689735, -0.036092620342969894, 0.0011944834841415286, 0.0037729202304035425, 0.0017477901419624686, 0.01957305334508419, 0.04268287494778633, -0.008852907456457615, -0.016563503071665764, 0.03161124885082245, 0.01694793440401554, -0.050261665135622025, 0.029326628893613815, -0.00840806495398283, 0.02811841480433941, 0.0027733983006328344, 0.04824065417051315, 0.02271440625190735, -0.055402062833309174, 0.003959644120186567, -0.007699612993746996, -0.016190055757761, 0.011917375028133392, 0.01650858484208584, 0.005340851377695799, -0.013081653043627739, 0.030644679442048073, 0.04474782198667526, -0.02629511058330536, -0.011906391009688377, 0.01096727978438139, 0.032775528728961945, 0.06612221151590347, -0.018145164474844933, -0.001742298249155283, 0.0009741218527778983, -0.027679065242409706, 0.017672862857580185, 0.009649229235947132, -0.0428805835545063, -0.036400165408849716, 0.03156731277704239, -0.017178593203425407, -0.003067213809117675, -0.04391305521130562, 0.02655872143805027, 0.019342394545674324, -0.01861746609210968, 0.001187618589028716, -0.02052863873541355, -0.020495688542723656, 0.006436480674892664, -0.0034900885075330734, -0.026932168751955032, -0.0043907565996050835, 0.028821375221014023, 0.01792548969388008, -0.013619856908917427, 0.008847415447235107, -0.03488440811634064, -0.013586905784904957, 0.009495456703007221, 0.06805535405874252, 0.006864847149699926, 0.0142569150775671, -0.019891582429409027, -0.02640494890511036, -0.011148512363433838, -0.006875831168144941, 0.026031501591205597, -0.004201286472380161, -0.016332844272255898, 0.012741156853735447, -0.005689585581421852, 0.026273144409060478, 0.043100256472826004, -0.034818507730960846, -0.024449840188026428, 0.0002229359233751893, 0.05878506228327751, 0.039585456252098083, 0.00012880169379059225, 0.026844298467040062, 0.018265986815094948, 0.008869382552802563, -0.0002799141511786729, 0.02629511058330536, -0.013784613460302353, -0.018265986815094948, -0.02636101469397545, -0.025921663269400597, 0.005733520723879337, -0.0410572774708271, 0.019111735746264458, -0.04228746145963669, 0.0030232788994908333, -0.05311744287610054, 0.004668096080422401, -0.027305616065859795, -0.0006857982371002436, -0.008869382552802563, -0.008688150905072689, 0.01924354024231434, 0.010780556127429008, 0.004679080098867416, -0.025745922699570656, 0.03396177291870117, -0.01774974912405014, -0.019737809896469116, 0.018090246245265007, -0.003481850493699312, 0.02106684446334839, 0.041408758610486984, 0.02671249397099018, -0.018826156854629517, -0.009072582237422466, -0.019298458471894264, 0.005085479002445936, 0.011082609184086323, 0.02178078703582287, -0.019144685938954353, -0.014641346409916878, -0.005104700569063425, 0.014685281552374363, 0.005651142448186874, 0.02855776436626911, -0.00011850443115690723, 0.013608873821794987, -0.027525292709469795, 0.0021885132882744074, 0.02293408289551735, -0.027217747643589973, 0.04371534660458565, 0.004917976446449757, 0.00035731529351323843, 0.010423583909869194, -0.048767875880002975, 0.041826143860816956, 0.027876771986484528, -0.005881801247596741, -0.007710596546530724, 0.013927401974797249, 0.01311460416764021, -0.012016228400170803, 0.020144207403063774, -0.010945312678813934, 0.021033892408013344, -0.012927880510687828, 0.05118430033326149, -0.01608021929860115, 0.006128935609012842, 0.016354812309145927, 0.02996368519961834, 0.013762646354734898, 0.034203413873910904, -0.04780130460858345, 0.04239729791879654, 0.04129892215132713, 0.021769804880023003, -0.003133116289973259, -0.0019729570485651493, 0.014817086979746819, -0.015432177111506462, -0.012170001864433289, 0.046746864914894104, 0.017310399562120438, -0.011033182963728905, 0.026932168751955032, -0.0035065640695393085, 0.009193403646349907, -0.015607916750013828, 0.005898276809602976, 0.00700763612985611, 0.012905913405120373, 0.0005745877278968692, 0.024208197370171547, -0.006063033360987902, 0.03227027505636215, 0.0021157460287213326, -0.02302195131778717, 0.002155562164261937, 0.028667602688074112, 0.00787535309791565, 0.01763991266489029, 0.012290822342038155, -0.011258349753916264, 0.0011670240201056004, 0.00555503461509943, 0.00785338506102562, -0.007633710280060768, -0.008369621820747852, 0.005472656339406967, 0.0367516465485096, -0.006233281455934048, -0.0037234933115541935, 0.0249770600348711, -7.281028956640512e-05, 0.027722999453544617, 0.023790815845131874, -0.005634666886180639, -0.01742023602128029, -0.032929301261901855, 0.020385850220918655, 0.0029409006237983704, -0.00040983138023875654, 0.02097897417843342, -0.03683951869606972, -0.025614118203520775, 0.014806102961301804, -0.03701525554060936, -0.024318035691976547, -0.00015360096585936844, -0.027393486350774765, 0.03018336184322834, 0.012587384320795536, 0.02460361272096634, 0.03721296414732933, -0.01621202379465103, 0.03244601562619209, 0.01830992102622986, 0.017321383580565453, -0.0034900885075330734, 0.025548215955495834, -0.01742023602128029, 0.028931213542819023, 0.03508211672306061, 0.019671905785799026, 0.017244497314095497, -0.025789858773350716, -0.03716902807354927, -0.013191490434110165, 0.01623399183154106, -0.003231970127671957, -0.02280227653682232, -0.037937890738248825, 0.0026264905463904142, 0.018848124891519547, -0.020627493038773537, 0.01230180636048317, 0.03543359786272049, 0.005162365268915892, 0.005870817694813013, 0.0011931104818359017, 0.023417366668581963, -0.040002837777137756, -0.022297024726867676, -0.01338919810950756, -0.016541536897420883, -0.014784134924411774, -0.018946979194879532, -0.014597411267459393, -0.009006679989397526, 0.007079030387103558, -0.03657590597867966, 0.01616808772087097, 0.000746208883356303, 0.02475738525390625, -0.013927401974797249, -0.017804667353630066, 0.00915496051311493, -0.014992826618254185, 0.004725760780274868, -0.013531987555325031, 0.016783179715275764, 0.023922620341181755, 0.0390143021941185, 0.0285138301551342, -0.030688613653182983, -0.0014443638501688838, -0.031018126755952835, -0.024318035691976547, -0.004401740152388811, -0.03765231370925903, -0.01959501951932907, 0.03132567182183266, -0.007046079263091087, -0.003904725192114711, -0.019067799672484398, -0.015168567188084126, 0.009424062445759773, 0.013883467763662338, 0.015574965626001358, -0.0034516453742980957, 0.023329496383666992, 0.012235904112458229, 0.02013322524726391, 0.0005193257238715887, -0.027063975110650063, 0.05601715296506882, -0.00025434259441681206, 0.03372013196349144, -0.00020405759278219193, 0.010379648767411709, 0.038135599344968796, -0.0017175847897306085, -0.006529842969030142, 0.05825784057378769, -0.028865309432148933, -0.001806827844120562, 0.021451275795698166, 0.014872005209326744, 0.015311355702579021, 0.010714653879404068, 0.02211030013859272, -0.0015102664474397898, -0.03506014868617058, 0.027261681854724884, -0.004835598636418581, 0.002129475586116314, 0.034423090517520905, 0.004080465063452721, -0.032687656581401825, -0.015827592462301254, 0.0030919271521270275, -0.03411554545164108, -0.010692685842514038, -0.0045610046945512295, -0.0024740910157561302, 0.008951760828495026, 0.0527220293879509, 0.018178116530179977, -0.022648504003882408, 0.004690063651651144, -0.04784524068236351, -0.003311602398753166, -0.027085941284894943, 0.026163306087255478, 0.01107711810618639, 0.022582601755857468, -0.0029903275426477194, 0.01707974076271057, 0.041430726647377014, 0.032797493040561676, 0.023505236953496933, -0.01794745773077011, -0.0062991841696202755, -0.04059595987200737, -0.005936719942837954, -0.027832837775349617, 0.05114036798477173, 0.0005680661415681243, -0.005052527878433466, -0.0071009979583323, 0.03202863037586212, -0.017189577221870422, 0.00974259153008461, 0.003734476864337921, -0.011807537637650967, 0.025570183992385864, -0.004508831538259983, 0.03932184725999832, 0.023637043312191963, -0.007386575918644667, -0.02046273648738861, 0.00709550641477108, 0.008276260457932949, 0.012104098685085773, 0.029700076207518578, 0.015256436541676521, -0.004190302919596434, -0.026031501591205597, 0.024054424837231636, -0.01770581491291523, -0.018123196437954903, -0.041716303676366806, -0.005483639892190695, -0.0015102664474397898, 0.013433133251965046, 0.016398746520280838, -0.008237816393375397, 0.043671414256095886, -0.012060163542628288, 0.008863890543580055, -0.001314618275500834, -0.023373432457447052, -0.019836662337183952, 0.02024306170642376, 0.0374106727540493, 0.032863397151231766, -0.007924780249595642, 0.007046079263091087, 0.00927578192204237, 0.02640494890511036, -0.001064737793058157, 0.03510408475995064, -0.013872483745217323, -0.02653675340116024, 0.029590237885713577, -0.025196736678481102, 0.027744967490434647, 0.013037717901170254, -0.000853987003210932, -0.003682304173707962, 0.012883945368230343, -0.014630362391471863, -0.016244973987340927, -0.015333322808146477, 0.0037042717449367046, -0.01407019142061472, 0.01830992102622986, -0.006562794093042612, -0.004462150856852531, 0.015520047396421432, -0.001272742752917111, -0.0339837409555912, 0.0196169875562191, -0.014619379304349422, -0.011291300877928734, -0.025482313707470894, -0.014553476125001907, -0.023637043312191963, 0.020254045724868774, 0.015585949644446373, 0.02313178963959217, -0.007935763336718082, -0.0465271882712841, 0.013586905784904957, 0.018035326153039932, -0.032380111515522, -0.0038250929210335016, -0.031237801536917686, 0.009138484485447407, 0.05127217248082161, -0.018716320395469666, -0.023900652304291725, 0.001281667035073042, 0.027217747643589973, -0.002143205376341939, 0.01338919810950756, 0.004517069552093744, -0.001045516226440668, -0.027283649891614914, 0.02475738525390625, 0.039936937391757965, 0.010000709444284439, -0.0025688258465379477, -0.019737809896469116, 0.0371909961104393, 0.006436480674892664, -0.015432177111506462, -0.007666661404073238, -0.02669052593410015, 0.02827218733727932, 0.012104098685085773, 0.0076227267272770405, 0.01759597659111023, 0.0031193867325782776, 0.027459388598799706, 0.03218240290880203, -0.024340003728866577, -0.011895407922565937, -0.004981133155524731, -0.01761794462800026, -0.022450797259807587, -0.008627739734947681, 0.050657082349061966, -0.011291300877928734, 0.0059202443808317184, -0.01661842316389084, 0.027679065242409706, 0.016190055757761, 0.021495210006833076, 0.003534023417159915, -0.017936473712325096, -0.020869135856628418, -0.004324853885918856, 0.04591209813952446, 0.03125976771116257, -0.004942690022289753, 0.003067213809117675, 0.008501427248120308, 0.03038106858730316, 0.04037628695368767, 0.01941928081214428, 0.004267189186066389, -0.006463940255343914, -0.018562547862529755, 0.0007688628975301981, 0.017563026398420334, -0.02313178963959217, 0.018342873081564903, -0.008715610019862652, -0.030996158719062805, -0.05610502511262894, 0.0223519429564476, -0.02622920833528042, -0.01866140030324459, 0.06581466645002365, -0.016717275604605675, 0.0005217284196987748, 0.015256436541676521, -0.004863057751208544, -0.0023999507538974285, 0.01238967664539814, 0.006441972684115171, 0.0014347530668601394, -0.01841975934803486, 0.006947225425392389, -0.0004026232927571982, -0.019847646355628967, 0.019968468695878983, -0.02471345104277134, -0.010181942023336887, -0.01594841293990612, -0.003737222868949175, 0.021187664940953255, 0.006798944901674986, -0.03205059841275215, -0.017299415543675423, -0.020726347342133522, -0.0371909961104393, -0.019913548603653908, 0.014278882183134556, -0.034401122480630875, 0.008688150905072689, 0.021385371685028076, 0.019606003537774086, 0.0196169875562191, 0.00832019466906786, 0.0025399934966117144, -0.014158060774207115, -0.00880897231400013, -0.01828795298933983, -0.013345262967050076, -0.0064584482461214066, -0.002390339970588684, -0.021099794656038284, 0.021824723109602928, 0.03198469802737236, 0.054171882569789886, -0.029634173959493637, 0.024340003728866577, -0.004777933936566114, -0.014762167818844318, -0.027042007073760033, 0.016673341393470764, 0.014158060774207115, -1.4845232726656832e-05, -0.013872483745217323, 0.008023633621633053, 0.009572342969477177, -3.232914241380058e-05, -0.006101476494222879, -0.04556062072515488, -0.034488994628190994, -0.015179550275206566, -0.014487573876976967, -0.004791663493961096, -0.006771485321223736, 0.016958918422460556, -0.027591194957494736, 0.015959396958351135, 0.0003899233415722847, 0.03767428174614906, -0.03125976771116257, 0.017123674973845482, -0.0009487218922004104, -0.01404822338372469, -0.01937534473836422, 0.023680977523326874, -0.004300140310078859, 0.02816234901547432, -0.03211650252342224, -0.02638298086822033, 0.03765231370925903, 0.016519568860530853, 0.01957305334508419, 0.01603628322482109, -0.013575921766459942, 0.013597889803349972, -0.005016830284148455, -0.002546858275309205, 0.010972771793603897, -0.0055330670438706875, 0.029019081965088844, -0.016827113926410675, 0.0007057063048705459, 0.01799139194190502, 0.000198908950551413, 0.0030727055855095387, 0.011862455867230892, -0.02633904665708542, -0.025306573137640953, 0.016321860253810883, -0.029436465352773666, -0.025130832567811012, -0.05127217248082161, 0.021121762692928314, -0.04916328936815262, 0.006293692160397768, -0.0034626289270818233, -0.02319769188761711, -0.037630345672369, 0.005997130647301674, -0.007952239364385605, -0.017068756744265556, -0.0029518844094127417, 0.010884902440011501, -0.005231013521552086, -0.024230165407061577, -0.04784524068236351, 0.022340958938002586, 0.011033182963728905, 0.016025299206376076, 0.04547274857759476, -0.010884902440011501, -0.01408117450773716, -0.022406861186027527, -0.0004448421241249889, -0.013971337117254734, -0.01675022765994072, -0.01498184259980917, -0.030908288434147835, -0.017277447506785393, 0.006595745217055082, 0.012071147561073303, -0.0018040818395093083, -0.019924532622098923, 0.012049180455505848, 0.027239713817834854, 0.015520047396421432, 0.020078305155038834, -0.023812782019376755, -0.039783164858818054, 0.006057541351765394, 0.020056338980793953, 0.04373731464147568, 0.022253088653087616, -0.008248800411820412, 0.00532712135463953, -0.006063033360987902, 0.02126455120742321, -0.027854803949594498, 0.020627493038773537, -0.004302886314690113, -0.01959501951932907, -0.0018892060033977032, -0.023746879771351814, -0.02217620238661766, 0.017134658992290497, -0.005777455400675535, 0.029765978455543518, 0.01677219569683075, 0.00790830422192812, -0.009259305894374847, 0.01314755529165268, 0.0019523625960573554, 0.012609351426362991, 0.013806581497192383, -0.00029398707556538284, 0.017497122287750244, -0.008797988295555115, -0.02836005762219429, 0.010736620984971523, -0.0010448297252878547, -0.030578775331377983, 0.0019372599199414253, -0.003231970127671957, 0.016552520915865898, -0.0025331287179142237, 0.008622248657047749, -0.008160930126905441, -0.014685281552374363, 0.0264708511531353, -0.04599997028708458, 0.012686237692832947, -0.0035230396315455437, -0.041452694684267044, 0.011412122286856174, 0.014366752468049526, -0.001379147870466113, 0.027085941284894943, -0.06014704704284668, -0.0337640643119812, 0.028645634651184082, -0.034203413873910904, -0.022494731470942497, 0.006755009759217501, -0.02998565323650837, 0.008073060773313046, 0.018156148493289948, -0.005975163076072931, 0.029304660856723785, 0.026119371876120567, 0.016541536897420883, 0.004753220360726118, 0.039958905428647995, -0.013312311843037605, 0.014882989227771759, 0.008715610019862652, 0.0009418570552952588, -0.02208833210170269, -0.017848603427410126, 0.030512873083353043, -0.00305348401889205, -0.01005562860518694, 0.007216327358037233, 0.05505058541893959, -0.036488037556409836, 0.0112308906391263, -0.00022791292576584965, -0.010670718736946583, 0.017431220039725304, 0.05434762313961983, -0.009879888035356998, -0.007787482813000679, -0.009176927618682384, 0.01859549805521965, 0.0011409376747906208, -0.019056815654039383, 0.003130370518192649, 0.0015940176090225577, -0.024010490626096725, 0.05179939419031143, -0.015267420560121536, 0.020166175439953804, -0.008386097848415375, 0.0062991841696202755, 0.008550853468477726, -0.010895885527133942, -0.04206778481602669, 0.022121284157037735, -0.02297801710665226, 0.017738765105605125, -0.025218702852725983, -0.014125109650194645, 0.013784613460302353, 0.021923577412962914], [0.012398647144436836, 0.022681884467601776, 0.01668822579085827, -0.050064679235219955, -0.04710310697555542, -0.021788712590932846, 0.023692579939961433, 0.02789989300072193, 0.02197674848139286, 0.047126609832048416, 0.024538744240999222, -0.011728767305612564, 0.004163242410868406, 0.0032465651165694, -0.035703402012586594, -0.012762967497110367, -0.06256909668445587, 0.0288400761783123, 0.03278883919119835, 0.01610061340034008, 0.0017026104032993317, 0.061299849301576614, 0.03344696760177612, 0.042778268456459045, -0.05081682279706001, 0.03546835854649544, -0.0325302891433239, -0.018744874745607376, -0.0007356187561526895, -0.011399704031646252, 0.04275476559996605, -0.017792940139770508, 0.03998123109340668, 0.004086852539330721, 0.032765332609415054, -0.029827266931533813, -0.01191092748194933, -0.03151959180831909, 0.0054031070321798325, -0.018086746335029602, -0.06553066521883011, 0.02375134266912937, 0.02695971168577671, 0.01605360396206379, 0.001032730913721025, 0.10285588353872299, 0.03309439867734909, -0.022799408063292503, -0.004219065885990858, 0.017851701006293297, -0.007615472190082073, 0.0039046923629939556, -0.018298286944627762, 0.010524159297347069, 0.02134212665259838, 0.052791204303503036, 0.012433904223144054, 0.02554943971335888, 0.018709616735577583, 0.017240583896636963, -0.000964420847594738, 0.02318723313510418, 0.025431916117668152, 0.056786976754665375, -0.04519923776388168, 0.03130805119872093, 0.006939716637134552, 0.04595138505101204, -0.050957851111888885, -0.042049627751111984, -0.03859446197748184, -0.023387020453810692, -0.0409214124083519, -0.02382185496389866, -0.019861340522766113, 0.003372902050614357, 0.04432956874370575, 0.03908805549144745, 0.01815726049244404, -0.017910461872816086, 0.021635932847857475, -0.002152134897187352, -0.04315434396266937, 0.02848750725388527, 0.007609596010297537, 0.008896470069885254, -0.012057831510901451, -0.002725058002397418, -0.016511941328644753, 0.020025871694087982, 0.002301976317539811, 0.023692579939961433, -0.01426725834608078, 0.08085563033819199, 0.0393466055393219, -0.00038341787876561284, -0.009748510085046291, -0.031402070075273514, -0.00907863024622202, 0.040404312312603, 0.025008834898471832, -0.019179707393050194, 0.005003529600799084, 0.02644261159002781, 0.03257729858160019, -0.06350927799940109, -0.0026104734279215336, 0.039205580949783325, 0.025267384946346283, -0.01799272932112217, -0.13021516799926758, -0.004224941600114107, -0.016135869547724724, 0.01573629304766655, 0.0003867232007905841, -0.012093087658286095, 0.013996955938637257, -0.016982033848762512, -0.014079221524298191, -0.021530162543058395, -0.02895759791135788, -0.002259374363347888, 0.03652606159448624, -0.06755205988883972, -0.002879306674003601, -0.015618769451975822, -0.049171507358551025, -0.017816444858908653, -0.07827012985944748, -0.0037930458784103394, 0.010059945285320282, -0.017217079177498817, 0.06153489649295807, -0.05067579820752144, -0.06727000325918198, 0.003540372010320425, 0.022094272077083588, 0.03610298037528992, 0.004042781423777342, 0.004924201872199774, 0.017804691568017006, -0.01248091273009777, -0.0023093214258551598, -0.01463157869875431, -0.09110361337661743, -0.03471621125936508, -0.021753456443548203, 0.01809849962592125, -0.02329300343990326, -0.01437302865087986, 0.0031584231182932854, 0.019497020170092583, 0.006211075931787491, -0.011734643951058388, 0.009237285703420639, 0.03476322069764137, -0.013103783130645752, -0.012539674527943134, -0.014349523931741714, 0.03057941235601902, -0.015465989708900452, 0.003972267732024193, 0.007251151837408543, -0.008191333152353764, 0.031707629561424255, -0.014995899051427841, -0.002823483431711793, 0.03499826788902283, -0.03401107341051102, -0.030297357589006424, -0.01335058081895113, -0.024092158302664757, -0.023057958111166954, -0.013808920048177242, -0.018897652626037598, -0.033282432705163956, 0.010994250886142254, -0.024350708350539207, -0.014326019212603569, 0.02869904786348343, -0.01174639631062746, 0.04578685015439987, -0.02214127965271473, -0.0419791154563427, -0.04809029772877693, 0.028675543144345284, -0.07070166617631912, 0.011170534417033195, -0.006258084904402494, -0.003178989514708519, -0.014749101363122463, 0.013526865281164646, -0.027476811781525612, 0.03840642422437668, -0.03795984014868736, 0.03415210172533989, -0.00498296320438385, -0.004095666576176882, -0.005955463740974665, -0.0035315577406436205, -0.023257745429873466, -0.018791882321238518, 0.004224941600114107, 0.017863454297184944, -0.04541077837347984, -0.03006231226027012, -0.020542971789836884, 0.007862269878387451, 0.0251733660697937, 0.05744510516524315, 0.06444945931434631, 0.019638046622276306, -0.0052091944962739944, -1.0093870514538139e-05, -0.026419106870889664, 0.0022358696442097425, 0.0032583174761384726, -0.011358571238815784, -0.025996025651693344, 0.03053240291774273, -0.01112352591007948, -0.04531675949692726, 0.06811616569757462, 0.0036520184949040413, -0.012057831510901451, 0.0018201331840828061, 0.010917861014604568, -0.01893291063606739, -0.007662481162697077, -0.04522274434566498, -0.01793396659195423, 0.021177593618631363, -0.010195096023380756, 0.00897285994142294, 0.020002366974949837, 0.0028161380905658007, -0.04343639686703682, -0.05288522318005562, 0.016088860109448433, 0.019602790474891663, 0.015959585085511208, 0.0022872858680784702, -0.04625694453716278, -0.02156541869044304, 0.008773070760071278, 0.015019403770565987, -0.02418617531657219, -0.025267384946346283, 0.034481167793273926, 0.04950056970119476, -0.00018693457241170108, 0.012339885346591473, 0.018321791663765907, -0.08151375502347946, 0.059560514986515045, 0.025361403822898865, 0.010459521785378456, 0.020519467070698738, 0.09378313273191452, -0.02024916559457779, 0.04186159372329712, -0.0036108854692429304, -0.04233168438076973, 0.03297687694430351, -0.019391248002648354, 0.013914690352976322, 0.019261972978711128, 0.007004354149103165, -0.017369858920574188, 0.02019040286540985, -0.05847930535674095, 0.02811143547296524, -0.004069223999977112, -0.001803973806090653, -0.04378896579146385, 0.05735108628869057, -0.021953243762254715, -0.0004355685960035771, -0.01309203077107668, 0.0461629256606102, -0.026842189952731133, -0.01955578103661537, 0.05222709849476814, -0.0356798991560936, 0.003731346456333995, 0.0024988269433379173, 0.022153032943606377, 0.024256689473986626, -0.02385711297392845, 0.04028678685426712, -0.003622637828812003, -0.03222472965717316, 0.015042908489704132, -0.007004354149103165, 0.04536376893520355, 0.03875899314880371, 0.00020493024203460664, -0.04449410364031792, -0.0005666798679158092, 0.06708196550607681, 0.031496088951826096, 0.015642274171113968, -0.029968293383717537, -0.004609828814864159, 0.0017878144280984998, 0.030814457684755325, 0.018239526078104973, -0.0019934792071580887, 0.014067469164729118, -0.032506782561540604, -0.011064764112234116, 0.04315434396266937, -0.006002472713589668, -0.029028112068772316, -0.029991798102855682, 0.003590319072827697, 0.03586793318390846, 0.0023093214258551598, 0.006140562240034342, -0.005685161799192429, -0.004509934224188328, 0.008872965350747108, -0.016171125695109367, -0.013597378507256508, 0.003593257162719965, -0.023222489282488823, 0.019649798050522804, 0.0061346860602498055, -0.03499826788902283, -0.03365850821137428, -0.028722552582621574, -0.05471858009696007, 0.008173705078661442, 0.01550124678760767, -0.03476322069764137, 0.018027985468506813, 0.027077235281467438, 0.027523821219801903, -0.022047262638807297, 0.010183343663811684, 0.032295241951942444, -0.03544485196471214, -0.045810356736183167, -0.029827266931533813, -0.01605360396206379, -0.04087440297007561, -0.008179581724107265, 0.02093079686164856, 0.0025502429343760014, 0.03741923347115517, -0.021624181419610977, 0.01324481051415205, -0.032083701342344284, 0.012962755747139454, -0.03100249357521534, 0.019073937088251114, 0.0754965990781784, 0.0038018599152565002, -0.007932784035801888, 0.011117649264633656, -0.029615726321935654, 0.004800803028047085, 0.0031084760557860136, 0.00820896215736866, -0.021107081323862076, 0.018639102578163147, -0.002606066409498453, -0.0170525461435318, 0.014279010705649853, -0.025831494480371475, 0.032295241951942444, 0.0007829951355233788, -0.02167118899524212, -0.04148552194237709, -0.04809029772877693, -0.019167955964803696, 0.037160683423280716, 0.013479855842888355, -0.0026001902297139168, -0.0009401817806065083, 0.02385711297392845, -0.02942768856883049, -0.015336714684963226, -0.036737602204084396, 0.018368801102042198, 0.024056900292634964, -0.05161597952246666, -0.018791882321238518, 0.012163601815700531, 0.03095548413693905, -0.00654601538553834, 0.006822193972766399, 0.00017371326975990087, -0.050910841673612595, -0.005012344103306532, 0.013914690352976322, 0.03955814614892006, 0.04663301631808281, -0.01237514242529869, -0.03927609324455261, 0.014666835777461529, 0.008485140278935432, -0.025055844336748123, 0.017698921263217926, -0.03133155778050423, -0.042613737285137177, -0.034175608307123184, -0.0003529354289639741, 0.06144087761640549, -0.005987782496958971, 0.04200262203812599, -0.0188859011977911, 0.028181947767734528, 0.019532276317477226, 0.007638976909220219, -0.016641216352581978, 0.0029703867621719837, -0.004827245604246855, 0.06985550373792648, -0.00611118134111166, 0.0002715876617003232, 0.028087930753827095, 0.014596321620047092, 0.034904249012470245, -0.026348594576120377, 0.012316380627453327, -0.029498202726244926, -0.013867680914700031, -0.01579505391418934, -0.04165005311369896, -0.011775776743888855, 0.016500189900398254, 0.0393231026828289, 0.009924793615937233, -0.05655193328857422, 0.016276895999908447, -0.022576114162802696, -0.026043035089969635, -0.004266074858605862, 0.004407101776450872, -0.008814203552901745, 0.014619826339185238, -0.016253391280770302, -0.00014240448945201933, -0.004791988991200924, -0.008596787229180336, -0.010735700838267803, 0.06393235921859741, 0.02475028485059738, 0.012057831510901451, 0.0021873917430639267, 0.01524269673973322, -0.009013992734253407, 0.02869904786348343, -0.06745804101228714, 0.0009019869030453265, 0.022799408063292503, -0.0686802789568901, 0.04609240964055061, -0.026724666357040405, -0.012704205699265003, 0.008279475383460522, 0.006428492721170187, 0.04841936007142067, 0.022905178368091583, 0.040944915264844894, 0.00708074402064085, -0.003428725292906165, -0.045880869030952454, -0.0034610440488904715, -0.011047136038541794, 0.008602662943303585, 0.030461888760328293, 0.0022373388055711985, -0.0314725860953331, 0.0022946312092244625, -0.05166298896074295, -0.02627808041870594, -0.07986844331026077, -0.02921614795923233, 0.015418981201946735, 0.060923777520656586, -0.011417332105338573, 0.01067693904042244, 0.037278205156326294, 0.04296630620956421, 0.0340815894305706, 0.031543098390102386, -0.036949142813682556, -0.03476322069764137, -0.019426506012678146, 0.001458016224205494, 0.008238342590630054, -0.010165715590119362, 0.0025561191141605377, -0.055846795439720154, -0.04113295301795006, -0.037278205156326294, 0.0019699744880199432, -0.01082971878349781, 0.01524269673973322, -0.021729951724410057, -0.027476811781525612, -0.01767541654407978, 0.039417121559381485, -0.0024459415581077337, 0.014796110801398754, -0.019532276317477226, 0.012386894784867764, 0.0014646268682554364, -0.055470723658800125, -0.0264896210283041, -0.006046543829143047, -0.006075924728065729, -0.035162799060344696, -0.027077235281467438, 0.018862396478652954, 0.02801741659641266, -0.002326949965208769, 0.0011355632450431585, -0.00523269921541214, 0.0073569221422076225, 0.01782819628715515, 0.024726780131459236, -0.012598435394465923, 0.012198857963085175, -0.03389355167746544, -0.05965453386306763, -0.006499006412923336, -0.009901288896799088, -0.02564345672726631, -0.010600549168884754, -0.0029101562686264515, 0.04841936007142067, -0.024938320741057396, -0.007874022237956524, 0.05072280764579773, -0.004853688180446625, -0.0037930458784103394, -0.00902574509382248, 0.020155146718025208, -0.013914690352976322, -0.022423334419727325, 0.0019185583805665374, -0.0016423800261691213, -0.02785288542509079, -0.009378313086926937, 0.035491861402988434, 0.001516043092124164, 0.02375134266912937, 0.05603483319282532, 0.018697865307331085, -0.027829380705952644, -0.0037548509426414967, 0.020166898146271706, -0.010917861014604568, 0.02916913852095604, -0.025431916117668152, 0.04696207866072655, -0.006892707664519548, 0.017228830605745316, 0.013221305795013905, -0.014749101363122463, -0.02265837974846363, -0.021424392238259315, -0.02087203599512577, -0.008173705078661442, -0.006140562240034342, -0.06035966798663139, -0.0466800257563591, 0.005291460547596216, 0.04233168438076973, 0.0015307334251701832, -0.0288400761783123, 0.05208607017993927, 0.023269498720765114, -0.0023636757396161556, -0.02140088751912117, -0.016453180462121964, 0.010441893711686134, 0.00038084707921370864, -0.028816571459174156, 0.01647668518126011, -0.03295337036252022, -0.011241048574447632, 0.01046539843082428, 0.014396533370018005, -0.009378313086926937, -0.007380426861345768, 0.05170999839901924, 0.001843637670390308, -0.0409214124083519, 0.002285816939547658, -0.011129401624202728, -0.036643583327531815, 0.010136334225535393, -0.024115663021802902, 0.04625694453716278, -0.0054442398250103, 0.006404988467693329, 0.0027852884959429502, -0.011387951672077179, 0.0014117417158558965, 0.01684100553393364, 0.0012868738267570734, -0.005758613348007202, 0.024726780131459236, -0.014443541876971722, 0.000921818835195154, 0.017745930701494217, 0.016864510253071785, 0.02181221731007099, 0.004841936286538839, -0.010347875766456127, -0.055940814316272736, -0.028605030849575996, -0.024844303727149963, -0.008062059059739113, -0.026137052103877068, -0.01463157869875431, 0.0023974634241312742, -0.0014411223819479346, 0.046609509736299515, 0.004850750323385, 0.03838292136788368, -0.018662607297301292, -0.027147747576236725, -0.019073937088251114, -0.004959458950906992, -0.007045486941933632, 0.012128344736993313, 0.025784485042095184, 0.017804691568017006, -0.004227879922837019, 0.0031878037843853235, -0.016065355390310287, 0.03184865787625313, -0.023104967549443245, -0.008114944212138653, -0.004154428374022245, 0.041932106018066406, -0.021647684276103973, 0.007732994854450226, -0.03189566731452942, 0.01288049016147852, -0.008778947405517101, 0.02496182546019554, 0.016958529129624367, 0.02905161678791046, 0.012175354175269604, -0.018122004345059395, -0.03347047045826912, 0.013656140305101871, -0.015818558633327484, 0.020131641998887062, -0.001129687181673944, 0.0028543330263346434, 0.016535446047782898, 0.034222617745399475, 0.020813273265957832, -0.035703402012586594, 0.04968860745429993, -0.021060071885585785, -0.005015281960368156, -0.02712424471974373, 0.012457408010959625, 5.733823491027579e-05, -0.019379496574401855, 0.015971338376402855, 0.023680828511714935, -0.010459521785378456, 0.004789050668478012, -0.02223529852926731, -0.004806679207831621, -0.007891650311648846, 0.037842314690351486, 0.01400870829820633, -0.010124582797288895, -0.004277827218174934, 0.017134811729192734, -0.002228524535894394, 0.005655780900269747, -0.015994843095541, 0.03036787174642086, 0.05330830439925194, 0.021494906395673752, -0.018192516639828682, -0.02024916559457779, 0.020378438755869865, -0.01206958293914795, -0.0006316846120171249, -0.004515810403972864, 0.032083701342344284, 0.0036990277003496885, 0.02559644915163517, 0.02156541869044304, -0.01852158084511757, -0.009854280389845371, -0.0027015535160899162, -0.04437657818198204, 0.05467157065868378, 0.05692800506949425, -0.0033934684470295906, -0.032647810876369476, -0.005629338324069977, -0.014408285729587078, 0.03741923347115517, 0.010042316280305386, 0.03697264939546585, 0.020213907584547997, 0.014713844284415245, -0.019450010731816292, -0.01867436058819294, 0.001721707871183753, -0.012151849456131458, 0.043671444058418274, -0.032177720218896866, 0.0007176231010816991, 0.04851337894797325, -0.0007150523015297949, -0.025713970884680748, 0.036479052156209946, -0.019167955964803696, -0.015595264732837677, -0.008808327838778496, 0.017428619787096977, 0.001074598403647542, 0.03591494262218475, -0.00886708963662386, -0.012210610322654247, 0.010183343663811684, 0.004836060106754303, 0.03335294872522354, -0.03126104176044464, 0.006410864181816578, 0.04310733452439308, -0.01360913086682558, -0.014796110801398754, -0.014467046596109867, 0.0033670258708298206, 0.003043838543817401, -0.011053011752665043, -0.0004513606836553663, -0.02507934905588627, -0.005823250859975815, -0.007756499573588371, 0.0003801125567406416, 0.018451066687703133, -0.05847930535674095, 0.04139150306582451, -0.04430606588721275, 0.0069162119179964066, -0.00805030670017004, -0.009225533343851566, -0.00043042696779593825, -0.016171125695109367, 3.1905583455227315e-05, 0.01861559972167015, -0.016876263543963432, 0.01999061554670334, -0.00032869636197574437, 0.02891058847308159, 0.017381610348820686, -0.002215303247794509, -0.03488074243068695, -0.02853451669216156, -0.0259725209325552, 0.015360219404101372, -0.006117057520896196, -0.011270429007709026, -0.051380932331085205, 0.0003937011060770601, 0.01999061554670334, 0.002603128319606185, 0.03184865787625313, -0.0036960896104574203, 0.006234580185264349, 0.002315197605639696, -0.016770491376519203, -0.024209680035710335, 0.003372902050614357, -0.0025238003581762314, -0.010541788302361965, -0.02891058847308159, -0.006434368900954723, -0.00297626294195652, 0.009836651384830475, -0.032130710780620575, 0.02203550934791565, 0.025314394384622574, -0.011382075026631355, 0.0060289157554507256, 0.014090973883867264, -0.044353075325489044, -0.03730171173810959, -0.027993911877274513, 0.009108010679483414, -0.01452580839395523, 0.008044430054724216, 0.0059584020636975765, 0.01082971878349781, 0.027453307062387466, -0.002479729475453496, 0.02108357660472393, 0.05072280764579773, 0.023010948672890663, -0.026466116309165955, 0.0029380680061876774, 0.04442358762025833, -0.008408750407397747, -0.01678224466741085, 0.011064764112234116, 0.01269245333969593, 0.029333671554923058, 0.04108594357967377, -0.0023460472002625465, -0.0005387682467699051, 0.045457787811756134, -0.0007896057795733213, -0.07145381718873978, 0.025267384946346283, -0.024162670597434044, 0.02670116163790226, 0.032389260828495026, 0.022458592429757118, 0.007309913169592619, -0.0288400761783123, -0.0022608432918787003, 0.005846755113452673, 0.017980976030230522, 0.006640033796429634, -0.009378313086926937, 0.053731389343738556, -0.0038606212474405766, 0.008496892638504505, 0.0006948530790396035, -0.007445064373314381, -0.024092158302664757, 0.01426725834608078, -0.004874255042523146, 0.04212014377117157, -0.05147495120763779, 0.0014829898718744516, 0.017440371215343475, -0.04595138505101204, 0.02088378742337227, -0.005056415218859911, -0.022106023505330086, -0.007680109702050686, 0.0021638870239257812, -0.028558021411299706, -0.0212363563477993, 0.011276304721832275, 0.010900232009589672, 0.005135742947459221, 0.019344240427017212, -0.001349307713098824, 0.02067224681377411, -0.012175354175269604, -0.02811143547296524, 0.009607482701539993, -0.009501711465418339, 0.02046070620417595, -0.01422024890780449, -0.0014668304938822985, -0.04543428495526314, 0.010600549168884754, -0.02202375791966915, 0.008020925335586071, -0.03332944214344025, 0.04096842184662819, 0.002960103563964367, -0.017851701006293297, -0.024092158302664757, -0.0036960896104574203, 0.005079919472336769, -0.007227647118270397, 0.004959458950906992, -0.017698921263217926, 0.005837941076606512, 0.03908805549144745, -0.009460578672587872, 0.006234580185264349, -0.004072162322700024, -0.011340942233800888, 0.01878013089299202, 0.02050771377980709, 0.03871198371052742, 0.06167592480778694, 0.0056234621442854404, 0.00024294150352943689, 0.054013442248106, -0.003743098583072424, -0.022681884467601776, 0.02475028485059738, -0.03441065177321434, 0.02712424471974373, -0.00322012254036963, 0.0016791059169918299, 0.014255505986511707, -0.017499133944511414, 0.02259961888194084, -0.02623107098042965, -0.0016746987821534276, -0.03382303938269615, 0.0005619055009447038, 0.04724413529038429, -0.01872137002646923, 0.00036689123953692615, -0.0029674486722797155, 0.002491481602191925, -0.013703148812055588, -0.013644387945532799, -0.04190860316157341, 0.011346818879246712, 0.006052420008927584, -0.041462015360593796, 0.031543098390102386, 0.03450467064976692, -0.01952052302658558, 0.023774845525622368, 0.04132098704576492, -0.02403339557349682, 0.0025370216462761164, -0.0035315577406436205, 0.015983089804649353, -0.028816571459174156, -0.005837941076606512, 0.012292876839637756, -0.009918917901813984, 0.024209680035710335, 0.010770956985652447, 0.0018010357161983848, 0.007439188193529844, 0.059983596205711365, 0.03339995816349983, 0.007104248274117708, -0.009072753600776196, 0.009519340470433235, -0.05039374157786369, 0.026372099295258522, 0.016229888424277306, -0.008690805174410343, -0.022775903344154358, -0.049218516796827316, -0.031754638999700546, 0.06412039697170258, 0.015172183513641357, 0.024844303727149963, 0.0020169836934655905, 0.015818558633327484, 0.015277953818440437, 0.02801741659641266, -0.020484210923314095, -0.02067224681377411, 0.00980727095156908, -0.027359290048480034, 0.007403931580483913, -0.008914098143577576, -0.02093079686164856, -0.013938195072114468, 0.0062757134437561035, 0.019837835803627968, -0.048654407262802124, 0.05697501450777054, 0.021118832752108574, 0.009642738848924637, -0.023257745429873466, 0.028934093192219734, 0.0194147527217865, -0.040827393531799316, 0.015089916996657848, 0.02397463470697403, 0.03908805549144745, -0.01078270934522152, 0.04313083738088608, 0.044447094202041626, -0.015418981201946735, 0.0017143626464530826, 0.03231874853372574, 0.02109532803297043, 0.02712424471974373, 0.006969097536057234, -0.00453931512311101, -0.02644261159002781, 0.010741576552391052, 0.03351747989654541, -0.014619826339185238, 0.02439771592617035, 0.015924328938126564, 0.03189566731452942, 0.030179833993315697, 0.02529088966548443, 0.014890128746628761, -0.0038900021463632584, -0.022811159491539, 0.014184992760419846, -0.029803762212395668, -0.014666835777461529, -0.005494187120348215, 0.04284878447651863, -0.027100740000605583, -0.01605360396206379, 0.026419106870889664, -0.009613358415663242, -0.011117649264633656, 0.01610061340034008, 0.0055970195680856705, 0.0011362978257238865, -0.01950877159833908, -0.004709722939878702, 0.0007638976676389575, 0.0011891829781234264, 0.036267511546611786, -0.04228467494249344, -0.005044662859290838, -0.02403339557349682, -0.017287591472268105, 0.0037959839683026075, -0.005655780900269747, 0.04216715320944786, 0.008884717710316181, 0.0007807915681041777, -0.007586091756820679, 0.01815726049244404, 0.0018113189144060016, 0.014502303674817085, 0.0004910246352665126, 0.02181221731007099, -0.004938892088830471, 0.007433312013745308, -0.01222236268222332, 0.010788585990667343, 0.04978262260556221, -0.009384188801050186, 0.0188741497695446, -0.009830775670707226, -0.030203338712453842, 0.029545212164521217, 0.01010107807815075, -0.0561288520693779, 0.016041850671172142, -0.044235553592443466, 0.011881547048687935, 0.008620291948318481, -0.013585626147687435, 0.01309203077107668, 0.017275840044021606, 0.028205452486872673, -0.03335294872522354, 0.015148678794503212, 0.012856985442340374, -0.007210019044578075, -0.03821839019656181, -0.0199318528175354, -0.0383124053478241, -0.023951129987835884, -0.028416993096470833, -0.028816571459174156, -0.008843584917485714, 0.000216682514292188, -7.478301267838106e-05, 0.013315323740243912, -0.016030099242925644, -0.004677404183894396, 0.006986725609749556, -0.04296630620956421, 0.0029674486722797155, -0.033705517649650574, 0.011053011752665043, 0.005970153957605362, 0.011070639826357365, 0.03271832689642906, 0.01915620267391205, 0.005467744544148445, -0.010159838944673538, 0.007827012799680233, -0.015054660849273205, -0.0029395369347184896, 0.010823842138051987, -0.009084505960345268, 0.0188859011977911, 0.04023978114128113, 0.04496419429779053, -0.005000591743737459, -0.02029617317020893, 0.005361974239349365, 0.013162544928491116, 0.03236575797200203, 0.018662607297301292, -0.007544958498328924, 0.035538870841264725, -0.029028112068772316, 0.015959585085511208, 0.0032436270266771317, 0.0011120587587356567, 0.03546835854649544, 0.006122933700680733, -0.0073569221422076225, -0.03210720792412758, 0.06647085398435593, 0.005890826229006052, 0.003960515838116407, -0.008649672381579876, 0.0032289368100464344, -0.007680109702050686, 0.0259725209325552, 0.009202028624713421, -0.004254322499036789, 0.0036843372508883476, 0.005303212907165289, -0.002015514764934778, 0.03546835854649544, -0.0013272722717374563, 0.01726408675312996, 0.032389260828495026, -0.010436017997562885, 0.0440475158393383, 0.013703148812055588, 0.000551255012396723, 0.00897285994142294, -0.02365732379257679, -0.01950877159833908, 0.009613358415663242, 0.007450940553098917, -0.021130584180355072, 0.0016232825582847, 0.02371608465909958, 0.04289579391479492, -0.033752527087926865, -0.01709955558180809, 0.0064696259796619415, -0.012821728363633156, -0.00912563968449831, 0.002488543512299657, 0.005535319913178682, 0.004439420532435179, 0.012633692473173141, 0.019391248002648354, 0.0025267384480684996, 0.025902006775140762, 0.012962755747139454, 0.029827266931533813, 0.028040921315550804, 0.007539082318544388, -0.012304629199206829, 0.007785880006849766, 0.08485140651464462, 0.00734516978263855, 0.0103596281260252, -0.019015176221728325, 0.05965453386306763, 0.022905178368091583, 0.029145633801817894, 0.004042781423777342, -0.03504527360200882, 0.010900232009589672, -0.023481039330363274, -0.0058614457957446575, -0.01135269459336996, -0.03382303938269615, -0.00037533818976953626, -0.0020404881797730923, 0.0031143520027399063, -0.021060071885585785, 0.03292986750602722, -0.013280067592859268, 0.002614880446344614, 0.008884717710316181, 0.03455168008804321, 0.0006544546340592206, -0.012046079151332378, -1.5929837900330313e-05, -0.008091439493000507, -0.009372437372803688, 0.0028176072519272566, 0.018768377602100372, -0.003170175477862358, 0.018274782225489616, -0.016652969643473625, -0.0170525461435318, 0.008150200359523296, -0.0141614880412817, 0.001363263581879437, 0.029122130945324898, 0.041932106018066406, 0.015595264732837677, -0.0006460077129304409, -0.0028939968906342983, -0.0007069726125337183, 0.025690466165542603, 0.006475501693785191, 0.0077976323664188385, -0.03901754319667816, -0.044658634811639786, 0.005626400001347065, -0.021964997053146362, 0.03398757055401802, -0.011429084464907646, 0.02768835239112377, -0.013409342616796494, -0.013891185633838177, 0.0034581059589982033, 0.0005501532577909529, -0.027100740000605583, -0.031025998294353485, 0.012798224575817585, 0.03530382364988327, 0.016382666304707527, -0.008250094950199127, 0.028769562020897865, 0.012962755747139454, 0.0033347071148455143, 0.0094370748847723, 0.0037225321866571903, -0.0010510938009247184, 0.01590082421898842, -0.03871198371052742, -0.02844049781560898, -0.01151135005056858, -0.013080278411507607, 0.03645554929971695, -0.008737814612686634, -0.027946902438998222, -0.012316380627453327, 0.022881673648953438, -0.019579285755753517, -0.00410448107868433, -0.024256689473986626, 0.02533789910376072, 0.024115663021802902, -0.01997886225581169, -0.02674817107617855, -0.014596321620047092, 0.03901754319667816, 0.005256203468888998, 0.02050771377980709, 0.01211659237742424, -0.006269837263971567, -0.0029380680061876774, -0.002751500578597188, 0.05335531383752823, 0.03666708990931511, -0.029404183849692345, -0.001762840780429542, 0.005826188717037439, 0.0024576939176768064, 1.6572539607295766e-05, -0.031496088951826096, -0.01909744180738926, 0.0188741497695446, -0.012187106534838676, 0.028087930753827095, 0.004927140194922686, -0.003328830935060978, 0.0006974238785915077, 0.01893291063606739, 0.0030232719145715237, -0.023739589378237724, -0.03875899314880371, -0.03048539347946644, -0.029286662116646767, -0.011158782057464123, 0.027570830658078194, -0.003522743470966816, 0.034434158354997635, -0.015571760013699532, 0.028981102630496025, -0.011129401624202728, 0.021906234323978424, -0.04132098704576492, -0.02827596664428711, 0.01437302865087986, -0.005464806687086821, 0.025572944432497025, -0.01180515717715025, 0.004747917875647545, 0.009155020117759705, 0.02003762312233448, -0.003176051424816251, 0.023304754868149757, 0.0016335657564923167, 0.025008834898471832, 0.0003002338344231248, -0.002945413114503026, 0.03133155778050423, -0.005150433164089918, -0.030649924650788307, 0.009266666136682034, -0.01626514457166195, -0.01946176216006279, -0.03419911116361618, 0.028769562020897865, -0.015489494428038597, 0.0019787887576967478, 0.019532276317477226, 0.035280320793390274, -0.012657197192311287, 0.028558021411299706, -0.0037225321866571903, -0.021412638947367668, 0.022646628320217133, -0.012504417449235916, 0.01452580839395523, -0.0076742335222661495, 0.009883660823106766, -0.03104950301349163, -0.0054031070321798325, -0.0435304157435894, -0.04259023442864418, -0.027030225843191147, 0.021494906395673752, -0.02329300343990326, -0.01390293799340725, 0.022670133039355278, -0.010541788302361965, -0.037372224032878876, -0.028558021411299706, -0.015019403770565987, -0.042261168360710144, 0.0377718023955822, -0.012269372120499611, 0.0063285985961556435, 0.020942548289895058, 0.004841936286538839, 0.0011656784918159246, -0.018345296382904053, 0.011722891591489315, 0.023269498720765114, -0.003566814586520195, -0.022470343858003616, 0.004674466326832771, -0.001583618693985045, -0.028887083753943443, -0.01579505391418934, 0.03156660124659538, 0.012316380627453327, 0.07074867933988571, -0.022329317405819893, 0.0013419626047834754, 0.012093087658286095, -0.00991304125636816, -0.05250915139913559, 0.007685985881835222, 0.02486780844628811, 0.033282432705163956, -0.005573514848947525, -0.013750158250331879, 0.0011987317120656371, -0.029991798102855682, -0.015712788328528404, -0.028299471363425255, 0.007227647118270397, -0.02811143547296524, 0.0007521454244852066, 0.0006129544344730675, 0.029968293383717537, -0.003320016898214817, 0.010265609249472618, 0.017534390091896057, 0.023116718977689743, 0.038523945957422256, -0.02224705182015896, 0.03137856721878052, -0.00019831958343274891, 0.027876390144228935, -0.017851701006293297, -0.006575396284461021, -0.007715366780757904, -0.02259961888194084, -0.021118832752108574, -0.016547199338674545, 0.023387020453810692, 0.01914445124566555, 0.014831366948783398, 0.0019156202906742692, -0.031449079513549805, 0.014608073979616165, 0.008814203552901745, 0.0033640877809375525, -0.004985901527106762, -0.03556237369775772, 0.013949946500360966, -0.005896702408790588, 0.02223529852926731, -0.014725596643984318, 0.0222940593957901, -0.002714774804189801, -0.008144324645400047, -0.021177593618631363, -0.029498202726244926, -0.009395941160619259, -0.006087677087634802, -0.010148086585104465, 0.009730881080031395, -0.004971210844814777, -0.038476940244436264, 0.02182396873831749, -0.025502430275082588, -0.005106362048536539, -0.03645554929971695, 0.005197442136704922, 0.014995899051427841, 0.006763432640582323, -0.011100021190941334, -0.014713844284415245, 0.011793404817581177, 0.05302625149488449, -0.03586793318390846, 0.016817500814795494, 0.03168412670493126, 0.011170534417033195, 0.02439771592617035, 0.00718651432543993, -0.007527330424636602, -0.01731109619140625, -0.004703846760094166, 0.001334617380052805, -0.009196152910590172, -0.025996025651693344, 0.002835235558450222, -0.00923140998929739, -0.006816317792981863, 0.00862616766244173, 0.010259733535349369, -0.003769541159272194, 0.033964067697525024, 0.023269498720765114, -0.010659310966730118, 0.006340350955724716, -0.022200042381882668, -0.03687863051891327, 0.034904249012470245, -0.006980849429965019, 0.04752618819475174, 4.3290594476275146e-05, -0.025220375508069992, 0.027406297624111176, -0.010629929602146149, 0.008097315207123756, 0.010665186680853367, 0.004927140194922686, 0.005438364110887051, -0.01117641106247902, -0.025243880227208138, 0.0027500316500663757, -0.005799746140837669, 0.019273726269602776, -0.02046070620417595, 0.005141619127243757, 0.0010004121577367187, -0.03412859886884689, -0.03142557665705681, 0.02418617531657219, 0.010500655509531498, 0.008320608176290989, 0.021365631371736526, 0.03332944214344025, 0.01590082421898842, -0.023986387997865677, 0.024256689473986626, 0.015712788328528404, -0.001252351445145905, -0.02963922917842865, 0.017557894811034203, 0.022435087710618973, 0.012527922168374062, 0.04526975005865097, 0.009871908463537693, -0.011370323598384857, -0.03248327970504761, 0.05377839505672455, -0.00228287884965539, 0.026889197528362274, -0.017381610348820686, -0.023387020453810692, 0.001102510024793446, 0.029662733897566795, 0.010365503840148449, 0.008279475383460522, -0.04526975005865097, -0.026419106870889664, 0.02076626382768154, -0.06957344710826874, 0.006499006412923336, -0.0001243169972440228, 0.004847812000662088, 0.0016188754234462976, -0.018791882321238518, 0.010130458511412144, 0.03436364233493805, -0.03332944214344025, 0.037066664546728134, -0.005567638669162989, 0.04343639686703682, 0.0013463696232065558, -0.00970737636089325, 0.003525681560859084, 0.026983216404914856, 0.008267723023891449, 0.0033376452047377825, 0.028134938329458237, 0.024562248960137367, 0.006075924728065729, -0.014020460657775402, -0.0004315287515055388, -0.02214127965271473, 0.00012321522808633745, 0.027876390144228935, -0.01335058081895113, 0.021389134228229523, 0.0170525461435318, -0.004630395211279392, -0.04856038838624954, 0.0022916931193321943, 0.007756499573588371, 0.051427941769361496, 0.00015828841424081475, -0.01820426993072033, 0.009525216184556484, -0.045974887907505035, -0.011440836824476719, 0.01288049016147852, -0.01492538582533598, 0.06153489649295807, -0.0023504544515162706, 0.01094136480242014, 0.022834664210677147, -0.0058350032195448875, 0.00305559067055583, 0.012028450146317482, 0.014384781010448933, -0.006310970056802034, -0.02182396873831749, 0.003922320902347565, -0.012257619760930538], [0.02470429614186287, 0.015556801110506058, -0.0001909199054352939, 0.013230550102889538, -0.057962410151958466, 0.005046267528086901, -0.001404685783199966, 0.020342577248811722, 0.02951430343091488, -0.019603507593274117, -0.029950477182865143, 0.01444213930517435, -0.0025155614130198956, -0.02680034562945366, -0.022668827325105667, 0.049529753625392914, 0.027478834614157677, 0.030362416058778763, 0.0029214436654001474, 0.007487619295716286, 0.010389374569058418, 0.04342334344983101, 0.014248284511268139, 0.016041437163949013, -0.02408638596534729, -0.012661103159189224, 0.004131517838686705, 0.011267776601016521, 0.05287373811006546, -0.030144330114126205, 0.02342001162469387, -0.03242211788892746, 0.05185600370168686, 0.007075679022818804, 0.021311847493052483, 0.02449832670390606, -0.020851444453001022, 0.0232746209949255, 0.020330460742115974, -0.04182404652237892, -0.05946478247642517, 0.024122733622789383, -0.0009541262406855822, -0.0227536391466856, -0.036396127194166183, 0.009395871311426163, 0.014272516593337059, -0.016683578491210938, -0.03702615574002266, 0.04427145794034004, 0.001548561966046691, 0.0023625981993973255, -0.0056126853451132774, 0.0006709173321723938, 0.017858820036053658, 0.0068091293796896935, -0.04751851409673691, 0.004361719824373722, -0.0007754168473184109, -0.027163822203874588, -0.015787003561854362, -0.013000348582863808, -0.00593072734773159, 0.02500719390809536, -0.02321404218673706, -0.0033894197549670935, -0.020802980288863182, 0.06251798570156097, -0.07579699903726578, 0.05398840084671974, 0.004782747011631727, 0.007130200508981943, -0.03457874432206154, -0.04279331862926483, -0.015932394191622734, 0.05951324477791786, 0.051516756415367126, 0.010595344007015228, 0.06770358234643936, 0.005982219707220793, -0.02214784361422062, 0.019494464620947838, -0.0007269533234648407, -0.007935906760394573, -0.005882263649255037, 0.01158278901129961, -0.05384301021695137, 0.034699905663728714, -0.04240560904145241, -0.010389374569058418, -0.018803859129548073, -0.03697769343852997, -0.0023323085624724627, 0.0516621470451355, -0.003531781490892172, 0.030313953757286072, 0.004734283313155174, -0.009256538935005665, -0.03881930559873581, 0.059804026037454605, 0.019458116963505745, -0.026364173740148544, -0.0070877945981919765, -0.0017870935844257474, 0.07405231148004532, -0.06920595467090607, -0.043496038764715195, 0.030289720743894577, 0.035160306841135025, -0.03540262579917908, -0.038843538612127304, 0.02726074866950512, -0.034651439636945724, 0.03850429505109787, -0.02597646415233612, -0.0032561449334025383, 0.007002983707934618, -0.0015871813520789146, 0.014175589196383953, -0.013993850909173489, -0.018961366266012192, -0.01076496671885252, -0.0011388935381546617, -0.09600629657506943, 0.014599645510315895, 0.005855002906173468, -0.05219524726271629, -0.02491026744246483, -0.03104090690612793, -0.011340471915900707, 0.024886034429073334, -0.03058050200343132, 0.04337488114833832, -0.015399293974041939, -0.018755394965410233, 0.01250359695404768, 0.02429235726594925, 0.007142316084355116, -0.02740613929927349, -0.049069348722696304, 0.04153326526284218, -0.02684880793094635, 0.008965757675468922, -0.007814748212695122, -0.030095867812633514, 0.05578155070543289, 0.008983931504189968, 0.046403851360082626, 0.022874796763062477, -0.018900785595178604, -0.045434582978487015, 0.038068123161792755, -0.002547365613281727, -0.02900543622672558, -0.03184055536985397, 0.01393327210098505, -0.019918520003557205, 0.040733616799116135, -0.019421769306063652, 0.004092141520231962, -0.044101834297180176, -0.03176786005496979, 0.014611761085689068, 0.00019006800721399486, 0.054279182106256485, 0.0014819245552644134, -0.022123612463474274, 0.024001574143767357, -0.05757470056414604, -0.030822820961475372, -0.051129050552845, -0.039255477488040924, -0.02500719390809536, -0.011388935148715973, 0.02050008252263069, -0.03869814798235893, -0.03314907103776932, 0.01135258749127388, 0.0026352056302130222, -0.032494813203811646, -0.007263475097715855, -0.0052704112604260445, -0.0322282649576664, 0.02500719390809536, -0.03251904621720314, 0.014660225249826908, 0.0062820883467793465, -0.01084372028708458, 0.014369443990290165, 0.03549955412745476, 0.04790622368454933, 0.006312377750873566, -0.009819927625358105, 0.057913947850465775, -0.0347726009786129, 0.004585863556712866, -0.022789986804127693, -0.02305653505027294, 0.019676202908158302, 0.02086355909705162, 0.06377803534269333, -0.04698541387915611, 0.026097623631358147, 0.03099244274199009, -0.03685653209686279, -0.034142572432756424, 0.04504687339067459, 0.02675188146531582, 0.08326038718223572, 0.011437398381531239, -0.006245740689337254, -0.042478304356336594, -0.05839858204126358, 0.0393766388297081, -0.03496645390987396, 0.03508761152625084, 0.030192794278264046, -0.019773129373788834, -0.03457874432206154, 0.022886913269758224, 0.026049159467220306, -0.029029669240117073, 0.00902633648365736, 0.03564494475722313, -0.008529585786163807, -0.031380150467157364, 0.014042315073311329, -0.017398415133357048, -0.03777734190225601, -0.03174362704157829, -0.04991745948791504, 0.035766102373600006, -0.04836662858724594, -0.0130366962403059, -0.021105878055095673, 0.05534537881612778, -0.016707809641957283, -0.024219661951065063, -0.008014660328626633, 0.034796830266714096, 0.02111799269914627, 0.009607899934053421, -0.003580244956538081, 0.020875675603747368, -0.02670341730117798, 0.008632570505142212, -0.031477078795433044, -0.003901316085830331, 0.0260733924806118, -0.0016598766669631004, 0.018089020624756813, -0.006203334778547287, 0.040224749594926834, 0.002527677221223712, 0.02561298757791519, -0.017616501078009605, 0.03293098509311676, 0.0013668236788362265, 0.010807372629642487, -0.031985945999622345, 0.021590514108538628, -0.0043677776120603085, -0.04475609213113785, 0.006857593078166246, -0.03952202945947647, 0.001023792545311153, 0.09159611910581589, 0.021723788231611252, 0.009765406139194965, 0.029490072280168533, -0.04473185911774635, 0.019288495182991028, 0.01657453551888466, -0.029950477182865143, -0.0054460917599499226, -0.016695694997906685, -0.020391039550304413, -0.03225249424576759, 0.03448181971907616, 0.02796347066760063, -0.036589983850717545, -0.03455451503396034, 0.04259946569800377, -0.016683578491210938, 0.008105529472231865, -0.03978857770562172, 0.02137242816388607, 0.021542049944400787, 0.014466370455920696, 0.041339412331581116, 0.03620227426290512, -0.026969967409968376, -0.0018204122316092253, 0.011388935148715973, 0.03227672725915909, -0.0018946221098303795, -0.03549955412745476, -0.026170318946242332, 0.032034408301115036, -0.00431022746488452, 0.003819533856585622, 0.02726074866950512, 0.031113602221012115, 0.0342637337744236, 0.019143104553222656, 0.027066895738244057, 0.006312377750873566, 0.01565372757613659, -0.022668827325105667, -0.03125899285078049, 0.024861803278326988, -0.006209393031895161, -0.04562843590974808, -0.043956443667411804, -0.008571990765631199, -0.012455133721232414, -0.031574007123708725, 0.025952233001589775, 0.007445213384926319, 0.012515712529420853, 0.03453028202056885, 0.04255099967122078, 0.009365581907331944, -0.02189341001212597, 0.026558026671409607, 0.0016916809836402535, 0.03998243063688278, 0.05844704434275627, -0.022305350750684738, -0.01978524588048458, -0.02919929102063179, -0.022717291489243507, 0.016756273806095123, -0.028036165982484818, -0.02143300697207451, -0.027163822203874588, -0.008129761554300785, 0.019664086401462555, -0.012455133721232414, -0.002009723102673888, 0.008341789245605469, -0.0016765360487625003, 0.010080419480800629, -0.03445758670568466, -0.012455133721232414, -0.004852413199841976, 0.014829847030341625, 0.029344681650400162, -0.014854079112410545, 0.03804389014840126, 0.010861894115805626, 0.020887792110443115, -0.0022687001619488, -0.011316239833831787, -0.040636688470840454, -0.04044283553957939, 0.01275803055614233, -0.01963985525071621, -0.0005652818945236504, 0.023480592295527458, -0.012364264577627182, 0.0061639584600925446, 0.04587075486779213, 0.03777734190225601, -0.00940798781812191, 0.02537067048251629, -0.0054006571881473064, 0.0011896288488060236, -0.01973678171634674, 0.0067606656812131405, 0.013388056308031082, 0.03365793824195862, -0.028084630146622658, -0.021566281095147133, -0.008499295450747013, -0.009292886592447758, 0.019918520003557205, 0.026097623631358147, -0.03409411013126373, -0.032349422574043274, 0.022886913269758224, 0.02168744057416916, 0.03961895406246185, 0.034142572432756424, 0.06111254170536995, 0.013993850909173489, -0.05752623826265335, 0.02213572897017002, -0.007814748212695122, 0.023504823446273804, -0.02878735028207302, -0.0034863469190895557, -0.0237713735550642, -0.0022505263332277536, -0.026364173740148544, 0.015326598659157753, 0.06450498849153519, 0.05713852867484093, 0.0016311014769598842, -0.028763119131326675, -0.015108512714505196, 0.01129806600511074, -0.03043511137366295, -0.0823395773768425, 0.02332308515906334, 0.01728937216103077, 0.0362992025911808, 0.019300609827041626, 0.033876024186611176, -0.004737312439829111, 0.021651092916727066, -0.015229672193527222, 0.006803071592003107, 0.007911675609648228, 0.00897181499749422, 0.016344333067536354, 0.011219312436878681, 0.05287373811006546, 0.008329673670232296, -0.04024898260831833, 0.045579973608255386, 0.01671992614865303, -0.014260401017963886, -0.01340017281472683, -0.01393327210098505, -0.010092535056173801, -0.00877190288156271, 0.027115358039736748, -0.00028737372485920787, -0.05355222523212433, -0.028448106721043587, 0.025806842371821404, 0.056847747415304184, 0.015193324536085129, -0.029223522171378136, -0.01897348091006279, 0.013024579733610153, 0.0031168123241513968, -0.031525541096925735, -0.02019718661904335, 0.01651395671069622, -0.01014705654233694, 0.02975662238895893, 0.04914204403758049, -0.04996592551469803, -0.024001574143767357, -0.02859349735081196, 0.026679186150431633, 0.018428266048431396, 0.004122430924326181, -0.039449334144592285, -0.014696572907269001, -0.08917293697595596, 0.029465841129422188, -0.019288495182991028, -0.029950477182865143, -0.009444335475564003, -0.03969164937734604, 0.04793045297265053, -0.07012676447629929, 0.047324661165475845, 0.072646863758564, 0.025249511003494263, 0.03130745515227318, 0.022693058475852013, 0.032906752079725266, -0.020548546686768532, 0.0041678654961287975, -0.02086355909705162, -0.03314907103776932, -0.011594905517995358, -0.000894304015673697, 0.004407154396176338, 0.03661421313881874, 0.010413605719804764, -0.05650850385427475, -0.036589983850717545, -0.04167865589261055, -0.02392887882888317, 0.022232655435800552, -0.010007724165916443, 0.03927971050143242, -0.012891305610537529, -0.04691271856427193, -0.01681685261428356, 0.039958201348781586, 0.04613730311393738, -0.01774977706372738, -0.01630798541009426, -0.043084099888801575, -0.047688137739896774, -0.011928091756999493, 0.015193324536085129, -0.011249602772295475, -0.005164397414773703, 0.027599994093179703, -0.01743476279079914, -0.04914204403758049, 0.032082874327898026, -0.0107346773147583, 0.013024579733610153, -0.02699420042335987, -0.002438322640955448, -0.03455451503396034, 0.02745460346341133, -0.024619486182928085, -0.03348831459879875, 0.010365142486989498, 0.006724318023771048, -0.03591149300336838, -0.023395780473947525, -0.002047585090622306, 0.05074134096503258, -0.0008867316064424813, -0.011558557860553265, -0.022172076627612114, 0.017883051186800003, 0.0019173393957316875, 0.012073483318090439, -0.0055430191569030285, 0.015435641631484032, 0.016344333067536354, -0.03186478838324547, -0.03959472477436066, 0.032591741532087326, -0.02189341001212597, -0.0035166365560144186, -0.06431113928556442, -0.005933756474405527, 0.008505353704094887, -0.00657286960631609, -0.04531342163681984, -0.026654954999685287, -0.013024579733610153, 0.027987701818346977, -0.01298823207616806, 0.022886913269758224, 0.016089899465441704, -0.015253903344273567, -0.038068123161792755, 0.02495872974395752, -0.010468127205967903, 0.013945387676358223, -0.012043192982673645, 0.005212861113250256, 0.016429144889116287, 0.06872131675481796, -0.010437837801873684, -0.000688333937432617, -0.0021990337409079075, 0.006633448880165815, 0.004597979597747326, 0.03722000867128372, 0.011455572210252285, -0.001687137526459992, 0.003122870344668627, 0.03923124819993973, -0.006088234018534422, -0.003038058988749981, -0.01718032918870449, -0.00011084145080531016, 0.011182964779436588, -0.01902194507420063, 0.00955943576991558, -0.013194202445447445, 0.04390798136591911, 0.0032682609744369984, -0.003958866465836763, 0.013727301731705666, 0.009595783427357674, -0.005882263649255037, 0.024728529155254364, -0.01846461370587349, -0.010643808171153069, 0.05461842566728592, 0.002795741194859147, 0.05994941666722298, -0.04519226402044296, -0.0449984110891819, 0.00369534594938159, 0.024667948484420776, 0.042066365480422974, 0.004149691667407751, -0.014563297852873802, -0.020136605948209763, 0.0342637337744236, -0.006006451789289713, -0.003783186199143529, -0.010577170178294182, 0.04029744490981102, -0.03154977411031723, -0.0005607384373433888, -0.007215011399239302, 0.0008185796905308962, 0.00026105952565558255, 0.071580670773983, -0.059755563735961914, 0.02255978435277939, -0.01621105894446373, 0.02520104870200157, 0.024352936074137688, -0.011182964779436588, -0.020427387207746506, 0.009183843620121479, -0.022184191271662712, -0.0113828768953681, 0.020645473152399063, -0.030386649072170258, 0.017761891707777977, 0.03952202945947647, 0.013545563444495201, 0.005258295685052872, 0.02970815822482109, -0.00828726775944233, -0.05098365992307663, -0.009771464392542839, -0.0526798814535141, -0.03108936920762062, -0.02019718661904335, -0.004928137641400099, -0.012697450816631317, 0.04058822616934776, -0.01625952310860157, -0.004207242280244827, -0.0118917440995574, 0.030847052112221718, -0.00026105952565558255, -0.03297944739460945, 0.029732391238212585, -0.018791742622852325, -0.005818655248731375, 0.03390025720000267, 0.01000166591256857, 0.0006341910338960588, -0.027115358039736748, 0.0079237911850214, 0.010607460513710976, -0.003340956289321184, 0.01917945221066475, 0.03053203970193863, 0.03440912440419197, -0.02300807274878025, 0.02491026744246483, -0.05437610670924187, 0.02587953768670559, -0.002242953749373555, 0.036129578948020935, 0.02024564892053604, 0.028908509761095047, -0.01759226992726326, 0.018500961363315582, -0.026315709576010704, 0.019409652799367905, -0.031162064522504807, 0.005591482389718294, -0.04720349982380867, -0.019724667072296143, 0.055199988186359406, -0.007602720055729151, -0.02392887882888317, -0.05098365992307663, 0.008674976415932178, -0.010989110916852951, -0.03789849951863289, 0.04228445142507553, 0.04669463261961937, 0.038892000913619995, 0.018222296610474586, 0.021748019382357597, -0.00031520240008831024, -0.00820245686918497, 0.01135258749127388, -0.009377697482705116, 0.0005391570157371461, -0.0011949294712394476, -0.002638234756886959, -0.0419209748506546, 0.01363037433475256, -0.02745460346341133, 0.04473185911774635, 0.0005016734939999878, -0.028981205075979233, -0.0003435990365687758, 0.018476730212569237, 0.02429235726594925, -0.010044071823358536, 0.013363825157284737, -0.03559647873044014, 0.010262157768011093, -0.019349073991179466, 0.0080570662394166, 0.013872692361474037, 0.0232625063508749, -0.005485468544065952, 0.010110708884894848, 0.025443365797400475, -0.02561298757791519, -0.03130745515227318, -0.021602628752589226, 0.01948234811425209, -0.001899165567010641, 0.008814308792352676, -0.01595662534236908, -0.07691165804862976, -0.049529753625392914, -0.014236168935894966, 0.022935377433896065, 0.05297066271305084, 0.025491829961538315, -0.0026624666061252356, -0.008069181814789772, -0.018173832446336746, -0.03353678062558174, -0.009492798708379269, -0.044828787446022034, 0.013315360993146896, -0.018028441816568375, -0.020524315536022186, 0.03404564782977104, 0.0005315846065059304, -0.032349422574043274, 0.018549425527453423, 0.01933695748448372, 0.0022732436191290617, -0.0041830106638371944, 0.003063805401325226, -0.02008814364671707, -0.009480683133006096, 0.012636872008442879, 0.044828787446022034, 0.023395780473947525, -0.01101940032094717, -0.0023656273260712624, 0.017362067475914955, 0.015011586248874664, 0.014866195619106293, -0.01692589558660984, 0.03445758670568466, -0.010668040253221989, 0.0018158687744289637, 0.03869814798235893, -0.04577382653951645, 0.018440382555127144, -0.05175907537341118, 0.022668827325105667, -0.004570718854665756, 0.00540974410250783, -0.01081343088299036, -0.057913947850465775, -0.007887443527579308, -0.010159172117710114, 0.008571990765631199, -0.008983931504189968, -0.02818155661225319, 0.006681912578642368, -0.002383801154792309, 0.020984718576073647, 0.0184161514043808, 0.011158733628690243, -0.011540384031832218, 0.006978751625865698, -0.006899998523294926, 0.004143633879721165, 0.015787003561854362, -0.0036832301411777735, 0.013497100211679935, -0.03506338223814964, -0.027478834614157677, -0.003913431894034147, 0.021033182740211487, -0.0005917854141443968, 0.016041437163949013, 0.048148542642593384, 0.004794863052666187, 0.031889017671346664, -0.0022899028845131397, -0.010995169170200825, -0.03348831459879875, 0.0030092839151620865, -0.049529753625392914, 0.019918520003557205, 0.007893501780927181, -0.013703069649636745, 0.011673658154904842, 0.01559314876794815, -0.01606566831469536, 0.0016144420951604843, -0.0002305804955540225, 0.02961123175919056, 0.016198942437767982, -0.0044980235397815704, -0.014720804058015347, -0.016477609053254128, -0.0649411603808403, 0.014539065770804882, -0.008693150244653225, 0.007039331365376711, -0.027139591053128242, 0.01152826752513647, 0.014405791647732258, -0.00595798809081316, -0.00016782399325165898, -0.004098199307918549, 0.054182253777980804, 0.07526390254497528, -0.025588756427168846, -0.040903240442276, -0.00708173681050539, 0.010922473855316639, -0.015581032261252403, 0.018937133252620697, -0.008269093930721283, 0.03906162455677986, 0.011619136668741703, 0.053309909999370575, -0.03738963231444359, -0.04742158576846123, 0.04136364161968231, 0.013569795526564121, -0.029732391238212585, 0.012697450816631317, -0.02633994072675705, 0.0327128991484642, -0.02398945949971676, 0.028520802035927773, 0.002485271543264389, -0.07032061368227005, 0.02684880793094635, 0.020548546686768532, -0.008069181814789772, 0.005736873019486666, 0.009432218968868256, 0.03176786005496979, -0.01390904001891613, 0.0186584684997797, 0.027599994093179703, -0.019046176224946976, 0.03358524292707443, -0.0011033030459657311, 0.029998939484357834, 0.07448848336935043, -0.018113253638148308, 0.015629496425390244, 0.012230989523231983, -0.018597889691591263, 0.01999121531844139, 0.02602492831647396, 0.0031925365328788757, -0.005585424602031708, 0.041145555675029755, 0.00740280793979764, 0.01556891668587923, -0.03358524292707443, 0.032955218106508255, 0.014938890933990479, -0.007893501780927181, 0.03777734190225601, 0.015944508835673332, -0.03217979893088341, -0.009759347885847092, -0.0014705659123137593, -0.0076632993295788765, 0.005031122826039791, 0.03545108810067177, -0.015120629221200943, 0.008438716642558575, 0.012745914980769157, -0.003937663976103067, -0.017834587022662163, -0.005043238401412964, 0.02219630777835846, -0.0027669661212712526, -0.001080585760064423, -0.040636688470840454, -0.04618576541543007, -0.024050038307905197, -0.026364173740148544, 0.042066365480422974, 0.012818610295653343, 0.006145784631371498, -0.006045828573405743, -0.012018960900604725, 0.027066895738244057, -0.0034348543267697096, -0.02126338519155979, -0.0108679523691535, -0.005079586058855057, 0.06334186345338821, 0.011164790950715542, 0.0005675536231137812, 0.01152826752513647, -0.007887443527579308, -0.008414484560489655, -0.02010025829076767, 0.003819533856585622, 0.020597010850906372, -0.001929455203935504, -0.013315360993146896, 0.0007958624046295881, 0.020693937316536903, -0.026097623631358147, 0.005040209740400314, -0.013182086870074272, -0.027527298778295517, -0.015253903344273567, 0.012315800413489342, 0.011922034434974194, -0.04407760128378868, -0.02280210144817829, -0.011806933209300041, 0.022584015503525734, -0.011867512948811054, 0.028060397133231163, 0.007845037616789341, 0.00048766451072879136, 0.0018188977846875787, -0.0378258042037487, 0.027745384722948074, 0.015605264343321323, -0.0033136955462396145, 0.031065138056874275, 0.005176513455808163, -0.02980508655309677, -0.03646882250905037, -0.01104363240301609, 0.017761891707777977, -0.02234169840812683, 0.017362067475914955, -0.019773129373788834, -0.027987701818346977, 0.005164397414773703, 0.042720623314380646, 0.008983931504189968, 0.03264020383358002, -0.006627391092479229, -0.004319314379245043, 0.004610095638781786, -0.003698374843224883, -0.005276469513773918, 0.01835557073354721, 0.02168744057416916, 0.024171197786927223, -0.001023792545311153, -0.002364112762734294, -0.048245467245578766, 0.006463826633989811, 0.01163125317543745, 0.005046267528086901, 0.03278559446334839, 0.0073482864536345005, 0.0021005922462791204, 0.006996925454586744, 0.024486210197210312, -0.026218783110380173, 0.01529025100171566, 0.010649866424500942, 0.051129050552845, -0.021093761548399925, 0.02438928373157978, 0.009813869372010231, -0.004697935655713081, 0.020584894344210625, 0.02684880793094635, -0.04320525750517845, -0.00010232246131636202, 0.021723788231611252, 0.0027063866145908833, -0.010661981999874115, -0.006803071592003107, 0.014696572907269001, 0.0322282649576664, 0.003283405676484108, 0.05641157552599907, 0.00046191824367269874, -0.008184283040463924, 0.028811583295464516, -0.01790728233754635, -0.000536128063686192, -0.029732391238212585, 0.00394977955147624, 0.009777521714568138, 0.011667600832879543, -0.00650623207911849, 0.049723606556653976, -0.028254251927137375, 0.02295960858464241, 0.020802980288863182, 0.013460752554237843, -0.033318694680929184, 0.01273379847407341, -0.025661451742053032, 0.005745959933847189, 0.004828181583434343, -0.010413605719804764, -0.023856183513998985, 0.016732042655348778, 0.015484105795621872, 0.02383195236325264, 0.008699207566678524, 0.014951006509363651, 0.01917945221066475, -0.0033803328406065702, 0.00941404514014721, 0.029829317703843117, -0.028399642556905746, 0.009262597188353539, 0.016792621463537216, -0.0038831422571092844, -0.013896924443542957, -0.004434415139257908, 0.03545108810067177, -0.027018431574106216, 0.014018082991242409, 0.010801314376294613, 0.006942403968423605, -0.030677430331707, 0.015629496425390244, -0.009298944845795631, -0.015508336946368217, 0.0009866877226158977, 0.0015523482579737902, 0.023856183513998985, 0.02459525316953659, 0.014151358045637608, 0.013339593075215816, -0.02956276759505272, 0.010934589430689812, -0.00033791971509344876, 0.016017204150557518, -0.0014228596119210124, 0.031065138056874275, -0.002818458480760455, 0.017725544050335884, 0.022063033655285835, 0.026727650314569473, 0.008250920102000237, -0.04894819110631943, -0.05001438781619072, 0.0040527647361159325, -0.016889547929167747, -0.01790728233754635, -0.0025776552502065897, -0.04415029659867287, -0.015968741849064827, -0.004958427511155605, -0.011158733628690243, 0.009492798708379269, 0.022971725091338158, -0.00024137122090905905, 0.01554468460381031, -0.0046615879982709885, 0.01595662534236908, -0.02878735028207302, -0.008299383334815502, 0.004070938564836979, -0.007293764967471361, -0.010958821512758732, 0.0033167244400829077, -0.035111844539642334, -0.013969619758427143, 0.004788804799318314, -0.03927971050143242, -0.011516151949763298, 0.019252147525548935, 0.00941404514014721, -0.008147935383021832, 0.007396749686449766, -0.0035105787683278322, 0.01917945221066475, -0.02008814364671707, -0.015992972999811172, 0.008147935383021832, 0.04623423144221306, 0.021360311657190323, 0.00543397618457675, -0.018076905980706215, -0.015144860371947289, -0.04480455443263054, -0.018379801884293556, 0.007517908699810505, -0.04034590721130371, -0.009365581907331944, -0.014914658851921558, 0.00708173681050539, -0.008505353704094887, -0.026146087795495987, 0.019748898223042488, 0.007590604014694691, -0.007838980294764042, 0.012079540640115738, -0.003086522687226534, 0.05117751285433769, -0.028351178392767906, 0.023892531171441078, 0.033415619283914566, -0.0065486375242471695, 0.023335201665759087, 0.0010502961231395602, 0.016659347340464592, -0.030241258442401886, 0.03179209306836128, 0.010861894115805626, -0.010116767138242722, 0.004034590907394886, 0.05713852867484093, -0.027284981682896614, -0.00397401163354516, -0.002118766075000167, 0.0028260310646146536, 0.02413485012948513, 0.002106650033965707, 0.01917945221066475, 0.017761891707777977, -0.026509564369916916, 0.011031516827642918, -0.004676733165979385, -0.0021763164550065994, 0.023698678240180016, 0.015520453453063965, 0.0016947098774835467, -0.014369443990290165, -0.005109875928610563, -0.038746610283851624, 0.003716548904776573, 0.005397628527134657, -0.013703069649636745, -0.007408865727484226, 0.03159823641180992, 0.0006186675745993853, 9.162640344584361e-05, 0.011691831983625889, -0.0373411700129509, 0.00739069189876318, -0.03496645390987396, 0.0030653197318315506, 0.010056187398731709, 0.010649866424500942, 0.04172711819410324, 0.01045601163059473, 0.030144330114126205, 0.011806933209300041, 0.013824229128658772, -0.0068212454207241535, 0.0038982871919870377, -0.03356100991368294, -0.003204652573913336, 0.0058913505636155605, 0.07099910825490952, 0.033827561885118484, -0.0029320449102669954, 0.023953111842274666, 0.02970815822482109, -0.010686214081943035, 0.008590164594352245, -0.0007553499308414757, -0.007893501780927181, 0.02203880064189434, -0.007221069652587175, 0.018791742622852325, 0.037704646587371826, 0.014902543276548386, -0.017410531640052795, -0.006045828573405743, -0.0062639145180583, 0.017458995804190636, 0.03317330405116081, -0.006578927394002676, 0.0010389374801889062, -0.028036165982484818, 0.014902543276548386, -0.009099031798541546, -0.0092080757021904, -0.02869042381644249, 0.003834678791463375, 0.006073089316487312, -0.010425722226500511, 0.018488846719264984, 0.02091202326118946, 0.033367156982421875, -0.011510093696415424, 0.025079889222979546, 0.01615048013627529, -0.011903860606253147, -0.04097593575716019, -0.012661103159189224, 0.024110618978738785, -0.00049372244393453, -0.0009026337065733969, 0.026194550096988678, -0.01590816117823124, 0.01784670352935791, 0.007681473158299923, 0.0470338799059391, -0.010353026911616325, -0.029926244169473648, 0.023286737501621246, -0.027842311188578606, 0.0008132790098898113, 0.011958382092416286, -0.03319753333926201, 0.012079540640115738, 0.017919398844242096, -0.0063971891067922115, -0.026218783110380173, 0.003525723470374942, -0.027018431574106216, 0.01625952310860157, -0.008614396676421165, -0.01053476519882679, -0.023856183513998985, 0.013436520472168922, 0.02965969406068325, -0.032349422574043274, 0.01595662534236908, -0.03586303070187569, 0.0153387151658535, -0.015302367508411407, -0.019664086401462555, -0.01697435975074768, 0.012661103159189224, -0.003259174060076475, -0.004549515899270773, 0.006875766906887293, -0.026121854782104492, 0.016889547929167747, 0.02076663263142109, -0.005609656218439341, -0.011370761319994926, -0.03399718180298805, 0.02919929102063179, 0.04223598539829254, -0.0035196656826883554, -0.03179209306836128, -0.003586302977055311, 0.02818155661225319, -0.0003417059197090566, 0.007118084467947483, 0.012352148070931435, -0.027551529929041862, -0.014769268222153187, -0.01194020826369524, 0.03494222089648247, 0.009020279161632061, -0.019870057702064514, -0.02249920554459095, 0.011485862545669079, 0.0028426903299987316, -0.0008920322870835662, -0.011146617121994495, -0.013521331362426281, 0.005603598430752754, 0.021239152178168297, 0.0250556580722332, 0.03062896616756916, 0.013109391555190086, -0.011758469976484776, 0.012000787071883678, -0.04095170274376869, -0.008129761554300785, 0.008899119682610035, -0.015871813520789146, -0.02051219902932644, -0.0028199730440974236, 0.04494994506239891, 0.0009601841447874904, -0.013521331362426281, 0.010213693603873253, 0.016029320657253265, -0.005488497670739889, 0.028981205075979233, 0.03021702542901039, -0.015156976878643036, 0.004558602813631296, 5.594132744590752e-05, 0.018779627978801727, 0.03726847469806671, -0.01595662534236908, 0.007735994644463062, 0.012927653267979622, 0.01845249906182289, 0.014745036140084267, -0.001964288530871272, 0.005043238401412964, -0.013666721992194653, -0.0017007678980007768, 0.001294885529205203, 0.0035105787683278322, 0.004816065542399883, 0.014199821278452873, -0.005633888300508261, -0.03440912440419197, -0.03445758670568466, -0.00540974410250783, -0.02597646415233612, -0.0342637337744236, 0.021808600053191185, 0.01656241901218891, -0.006469884421676397, 0.001667449134401977, -0.03685653209686279, -0.00034189524012617767, -0.0022156930062919855, 0.00963818933814764, 0.02194187417626381, 0.002177831018343568, 0.022886913269758224, -0.0189250186085701, -0.010286388918757439, 0.009813869372010231, -0.0085659334436059, -0.01727725751698017, 0.012255221605300903, -0.007154432125389576, -0.015920277684926987, -0.022680943831801414, -0.0352814681828022, -0.012400612235069275, 0.0022747579496353865, -0.038019657135009766, 0.007251359056681395, 0.025128353387117386, -0.025709915906190872, 0.013981735333800316, 0.023189811035990715, 0.030677430331707, 0.007118084467947483, -0.012176468037068844, -0.009323175996541977, -0.0054460917599499226, -0.010237925685942173, 0.0028926683589816093, -0.008075240068137646, -2.697678246477153e-05, 5.27703741681762e-06, -0.021093761548399925, 0.007754168473184109, -0.004610095638781786, 0.056993138045072556, -0.03564494475722313, 0.029126595705747604, -0.02864195965230465, -0.006079147104173899, -0.003613563720136881, 0.01390904001891613, 0.004276908468455076, -0.0015000983839854598, -0.004437444265931845, -0.03370640054345131, 0.025491829961538315, -0.0001257023395737633, 0.007578488439321518, -0.01870693266391754, -0.02132396399974823, 0.012200700119137764, -0.01805267296731472, -0.0237834881991148, -0.010861894115805626, 0.021723788231611252, -0.030798587948083878, 0.02316557802259922, -0.037559255957603455, 0.024776991456747055, -0.023868300020694733, 0.005309788044542074, 0.011401050724089146, 0.0024867861066013575, -0.022111495956778526, 0.0031864787451922894, -0.013690954074263573, 0.020076027140021324, -0.00854170136153698, -0.014115010388195515, 0.006542579736560583, 0.004840297624468803, 0.02065758965909481, 0.023916764184832573, -0.024861803278326988, -0.005182571243494749, -0.04007935896515846, 0.0023323085624724627, -0.0017310575349256396, -0.01014705654233694, -0.002910842187702656, -0.012879189103841782, -0.007838980294764042, 0.017713429406285286, -0.0004058822523802519, -0.011843280866742134, 0.005040209740400314, -0.014914658851921558, -0.011982613243162632, 0.016586652025580406, -0.012552060186862946, -0.017253024503588676, -0.029441608116030693, -0.014745036140084267, -0.06014326959848404, -0.01600508950650692, 0.012303684838116169, 0.011116327717900276, -0.011776643805205822, 0.030313953757286072, -0.02402580715715885, -0.006039770320057869, 0.015532569028437138, -0.04494994506239891, -0.02065758965909481, -0.025952233001589775, -0.02643686905503273, 0.04923897236585617, -0.005327961873263121, -0.001492526032961905, 0.05631465092301369, -0.012673219665884972, -0.04167865589261055, -0.03860121965408325, 0.026776112616062164, -0.03978857770562172, 0.0023292796686291695, -0.014284632168710232, -0.035160306841135025, -0.014817731454968452, -0.004434415139257908, -0.026824576780200005, -0.002000636188313365, -0.01393327210098505, 0.023177694529294968, 0.029877781867980957, 0.018985597416758537, 0.002750306623056531, -0.02583107352256775, -0.007984370924532413, 0.009256538935005665, 0.02239016257226467, 0.054230716079473495, 0.039812810719013214, -0.004582834895700216, 0.014490602537989616, 0.012830725871026516, 0.008559875190258026, -0.02413485012948513, -0.0038558815140277147, -0.00543397618457675, -0.017216676846146584, -0.007154432125389576, -0.03501491621136665, -9.475003753323108e-05, 0.0097169429063797, 0.008638628758490086, 0.01968831941485405, -0.004388980567455292, 0.0063850730657577515, 0.02980508655309677, -0.001368338125757873, 0.007311938796192408, -0.011952323839068413, -0.0071847219951450825, 0.001430432079359889, 0.015883930027484894, -0.006006451789289713, -0.011934150010347366, -0.007626951672136784, -0.013194202445447445, -0.02035469189286232, -0.024837572127580643, -0.017422648146748543, 0.009620015509426594, -0.003340956289321184, 0.02199033834040165, -0.031234759837388992, -0.027430372312664986, 0.02520104870200157, -0.043084099888801575, -0.017422648146748543, -0.022886913269758224, -0.05961017310619354, 0.011413167230784893, 0.02791500650346279, -0.007893501780927181, 0.02680034562945366, -0.07177451997995377, -0.032446350902318954, 0.018646351993083954, -0.024813339114189148, -0.015072165057063103, 0.012467249296605587, -0.019034061580896378, -0.004985688254237175, 0.018234411254525185, -0.009280771017074585, 0.03671114146709442, 0.00935346633195877, 0.03911008685827255, 0.0020051796454936266, 0.03957049176096916, -0.006330551579594612, -0.0027518211863934994, 0.0021005922462791204, 0.005125020630657673, -0.015387178398668766, -0.007027215324342251, 0.030362416058778763, -0.02394099533557892, 0.003586302977055311, -0.009468566626310349, 0.041194021701812744, -0.035620711743831635, -0.035111844539642334, 0.023044420406222343, -0.009735116735100746, 0.03278559446334839, 0.04250253736972809, -0.01158278901129961, -0.0069848098792135715, -0.01444213930517435, 0.04771236702799797, 0.029683927074074745, 0.004452588967978954, -0.01959139108657837, 0.007717820815742016, -0.02408638596534729, 0.03993396833539009, -0.013812112621963024, -0.003813475836068392, -0.0017340865451842546, -0.006954520009458065, -0.0037226066924631596, 0.0022550697904080153, -0.044828787446022034, 0.02397734299302101, -0.028520802035927773, 0.04427145794034004, -0.02638840489089489, -0.015108512714505196, 0.015205440111458302, 0.001870390260592103]], "input": ["100 ML:Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.", "3.4 OZ:Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.", "CLEAR RESEALABLE PLASTIC BAG:Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.", "DOCTOR'S NOTE:Document required for carrying medications and special food products at the security checkpoint.", "DUTY FREE:Duty-free products cannot be purchased if they are prohibited aboard the aircraft, even for connecting flights.", "CONNECTING FLIGHT:Type of flight that may have additional restrictions regarding the carrying of liquids.", "PLASTIC BAG:Type of bag required for carrying liquids in carry-on luggage.", "PERMITTED AMOUNT:The maximum amount of liquids allowed in carry-on bags, which is subject to specific guidelines.", "OVERSIZED BAGGAGE:Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.", "SUNDOR:Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.", "LITE SERVICE:Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.", "CLASSIC SERVICE:Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.", "FLEX SERVICE:Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.", "BAGGAGE ALLOWANCE:Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.", "MANAGE YOUR BOOKING:\"Manage Your Booking\" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.", "ADDITIONAL PIECES OF BAGGAGE:Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-89cf2f2bab88b9586e2cf3e0cf95930f b/cache/text_embedding/embedding-89cf2f2bab88b9586e2cf3e0cf95930f deleted file mode 100644 index fe51394e637614012201bd3a975206a99c65b35a..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-89cf2f2bab88b9586e2cf3e0cf95930f +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.00811008270829916, 0.004236517008394003, 0.0418270006775856, 0.0517643578350544, -0.0018507384229451418, 0.05501840263605118, -0.020275207236409187, 0.008886047638952732, -0.001971200807020068, 0.0645802915096283, 0.023141270503401756, 0.0064455135725438595, -0.0013782760361209512, 0.017021162435412407, -0.023566799238324165, -0.011070013046264648, 0.013078760355710983, 0.03827258199453354, 0.0047559128142893314, 0.00017042673425748944, 0.08255263417959213, 0.02096356265246868, -0.010675773024559021, -0.018773339688777924, -0.042753152549266815, -0.07203956693410873, -0.011526830494403839, 0.013717053458094597, 0.019261447712779045, -0.08065026998519897, 0.04523123428225517, -0.02196480892598629, -0.017283989116549492, -0.04703347384929657, -0.007108838297426701, -0.007152642589062452, -0.009192679077386856, -0.04250284284353256, -0.00042709350236691535, 0.043804459273815155, 0.005134508479386568, -0.027158765122294426, -0.03163933753967285, 0.01659563183784485, -0.03449288383126259, 0.03286585956811905, -0.005400464404374361, -0.05927369371056557, 0.0027158765587955713, 0.003591965651139617, -0.0003277512441854924, 0.049887023866176605, 0.004023752640932798, -0.054517779499292374, 0.013892271555960178, 0.008842242881655693, 0.022703226655721664, 0.05326622352004051, 0.004896712955087423, -0.01622016541659832, 0.0031398411374539137, -0.04523123428225517, -0.015606903471052647, -0.007014971226453781, 0.022215118631720543, 0.021226389333605766, 0.0010208003222942352, -0.011777142062783241, 0.007309087086468935, -0.008979914709925652, 0.05647020787000656, 0.0668831542134285, 0.0011655115522444248, 0.010638225823640823, 0.002590721007436514, -0.010231470689177513, -0.023754533380270004, 0.025631867349147797, -0.03291592374444008, -0.007753389421850443, -0.03359176218509674, 0.021038657054305077, -0.0005397335044108331, -0.04673309996724129, -0.015581872314214706, -0.01509376522153616, -0.05626995861530304, 0.0019539918284863234, -0.02450546622276306, -0.016282742843031883, -0.006420482415705919, 0.011088786646723747, -0.083804190158844, 0.02938653528690338, 0.02391723543405533, -0.07008713483810425, 0.0046464018523693085, -0.029586784541606903, -0.01967446133494377, 0.004070685710757971, -0.03679574653506279, -0.03086337074637413, -0.046057261526584625, 0.0244053415954113, 0.013729569502174854, -0.0009504003683105111, 0.0040362682193517685, 0.0505378320813179, 0.0018554318230599165, -0.04625751078128815, -0.02713373489677906, -0.021551795303821564, -0.008629478514194489, 0.03709612041711807, -0.026808328926563263, -0.020074957981705666, -0.03286585956811905, -0.0029755744617432356, 0.019987350329756737, -0.026307707652449608, -0.047058507800102234, 0.0024827742017805576, 0.03206486627459526, -0.008616963401436806, 0.031213806942105293, -0.03244033083319664, -0.020062442868947983, -0.028635602444410324, -0.04778440669178963, -0.025494195520877838, 0.04948652535676956, -0.008585674688220024, 0.06838501989841461, -0.034342698752880096, -0.03166436776518822, -0.010369141586124897, -0.01727147214114666, -0.03584456443786621, 0.002578205429017544, -0.012284021824598312, 0.04215240478515625, 0.018247686326503754, 0.008767149411141872, 0.053566597402095795, -0.05742138996720314, 0.011989906430244446, 0.010613194666802883, 0.027158765122294426, 0.028735725209116936, -0.031564243137836456, 0.021927261725068092, 0.029061131179332733, -0.03163933753967285, -0.01665821112692356, 0.005807220004498959, -0.009349123574793339, 0.02287844382226467, 0.05667045712471008, 0.018147561699151993, 0.006192073225975037, -0.012815933674573898, -0.015869731083512306, -0.021401608362793922, -0.007797194179147482, 0.005168926436454058, 0.011946101672947407, -0.043854523450136185, 0.02635776996612549, -0.045957136899232864, -0.022803351283073425, -0.02928641065955162, -0.05727120488882065, -0.05596958473324776, 0.02277831919491291, -0.0012069693766534328, -0.05206473171710968, 0.00377344130538404, 0.0032446589320898056, 0.02310372330248356, 0.00381098804064095, -0.009098812006413937, 0.021614372730255127, -0.1145424097776413, -0.02928641065955162, -0.0022105607204139233, 0.017834672704339027, 0.011558120138943195, 0.008222723379731178, -0.028260134160518646, 0.026107458397746086, -0.0005905780126340687, 0.021939776837825775, 0.03043784201145172, 0.007578171789646149, 0.007659522816538811, 0.005575682036578655, -0.02062564343214035, -0.027534231543540955, 0.04140147194266319, -0.05018739774823189, 0.020788345485925674, -0.056870706379413605, 0.0430535264313221, -0.009392928332090378, -0.029111193493008614, -0.03989960625767708, -0.05551902577280998, -0.031464118510484695, -0.02780957520008087, -0.0435541495680809, 0.004621370695531368, -0.03474319353699684, 0.025469165295362473, 0.02881081961095333, 0.0012640715576708317, -0.00233258749358356, -0.061226118355989456, 0.0482349693775177, 0.031088652089238167, 0.017909767106175423, -0.012709551490843296, 0.024155031889677048, 0.01808498427271843, -0.031363993883132935, -0.027684418484568596, 0.012828448787331581, 0.02013753540813923, -0.06352898478507996, -0.00527530862018466, -0.08360394090414047, 0.01798485964536667, 0.0005060979747213423, 0.005096961744129658, -0.031889647245407104, 0.014743329957127571, -0.04410483315587044, 0.04798465594649315, 0.01760939322412014, 0.0212389063090086, 0.027934730052947998, 0.04004979133605957, -0.0009331914479844272, 0.0029458499047905207, 0.0036326413974165916, 0.020600611343979836, 0.011376644484698772, 0.012046226300299168, -0.02125142142176628, 0.012565622106194496, 0.0012163559440523386, 0.025606835260987282, 0.02876075729727745, 0.06087568402290344, -0.06152649223804474, -0.048059750348329544, 0.02506866678595543, -0.007115095853805542, -0.020275207236409187, -0.03286585956811905, 0.05992450192570686, -0.03239027038216591, 0.014280254021286964, -0.0010419203899800777, -0.026282675564289093, -0.053616657853126526, -0.01635783724486828, -0.01052558608353138, -0.002313814125955105, -0.01411755196750164, 0.014630690217018127, -0.005353530868887901, 0.029511690139770508, 0.006689566653221846, -0.056920766830444336, -0.09732099622488022, 0.03341654688119888, -0.005760286469012499, -0.0032164989970624447, 0.008598189800977707, -0.031889647245407104, -0.018347810953855515, -0.008210207335650921, -0.013178884983062744, -0.023266425356268883, 0.040975943207740784, 0.027258889749646187, -0.028961006551980972, -0.013942333869636059, 0.004123877268284559, 0.01694606803357601, 0.05181441828608513, 0.020362816751003265, 0.0220649316906929, -0.006426739972084761, 0.04037519544363022, 0.037346430122852325, 0.025231368839740753, -0.01947421208024025, 0.011764626950025558, -0.00983097217977047, 0.039073579013347626, 0.0046870773658156395, -0.021076202392578125, -0.04493086040019989, -0.04360421001911163, 0.0025922853965312243, 0.0025922853965312243, -0.031213806942105293, -0.04633260518312454, 0.010250243358314037, -0.012891027145087719, 0.04100097343325615, -0.0302375927567482, -0.0703374445438385, -0.019724523648619652, 0.004220872651785612, 0.016245197504758835, 0.02808491699397564, 0.020225144922733307, 0.009662012569606304, -0.00019448007515165955, -0.008673283271491528, 0.004264676943421364, -0.017634423449635506, -0.00051000906387344, -0.03874817490577698, -0.03832264617085457, 0.0009918581927195191, -0.02488093264400959, 0.013942333869636059, -0.003751539159566164, 0.00530972657725215, 0.0377969928085804, 0.0010262759169563651, -0.010256501846015453, -0.019987350329756737, -0.040600478649139404, 0.055719275027513504, 0.04800968989729881, 0.04645776003599167, 0.007446758449077606, -0.04110109806060791, -0.04350408539175987, 0.03163933753967285, -0.03191467747092247, 0.042853277176618576, 0.01301618292927742, 0.010556874796748161, -0.01871076226234436, 0.050788141787052155, 0.023716986179351807, 0.013066244311630726, -0.042327623814344406, -0.015431685373187065, -0.05616983398795128, 0.012021195143461227, 0.025757022202014923, 0.0165580864995718, -0.016145072877407074, 0.002831645542755723, -0.03396723046898842, 0.005675806663930416, 0.007227736059576273, 0.011946101672947407, 0.014292770065367222, -0.011570635251700878, -0.045581668615341187, 0.009173905476927757, -0.01938660256564617, -0.00990606565028429, 0.0042990949004888535, 0.03291592374444008, 0.0044524106197059155, 0.0075531406328082085, 0.008266527205705643, -0.02521885372698307, -0.0007043913938105106, 0.03622003272175789, -0.00018597340385895222, 0.025807084515690804, 0.027333984151482582, 0.04680819436907768, 0.02020011469721794, -0.0013681071577593684, 0.032465364784002304, 0.030613059177994728, -0.056870706379413605, -0.03474319353699684, -0.04473061114549637, 0.01674581877887249, 0.017909767106175423, -0.017684485763311386, -0.0354941301047802, 0.04307855665683746, -0.049786899238824844, 0.012133835814893246, -0.012953604571521282, -0.01354183629155159, 0.052615415304899216, 0.01521892100572586, 0.00024229341943282634, -0.031414054334163666, -0.02803485468029976, 0.019486727192997932, -0.03536897152662277, 0.016245197504758835, -0.04037519544363022, -0.015606903471052647, -0.02928641065955162, 0.013379133306443691, 0.014305285178124905, 0.019787101075053215, 0.0372212752699852, 0.023704471066594124, 0.019987350329756737, -0.02020011469721794, -0.003710863646119833, 0.03999973088502884, -0.01117013767361641, -0.06683309376239777, 0.030638091266155243, 0.024054907262325287, 0.007790936157107353, -0.056920766830444336, -0.023341519758105278, 0.051564108580350876, 0.0650809109210968, -0.03531891107559204, -0.006267166696488857, -0.03123883716762066, -0.04515613988041878, 0.02015005238354206, 0.01346674282103777, 0.02913622371852398, -0.02254052460193634, -0.02866063266992569, 0.034342698752880096, -0.002573512028902769, -0.006013726815581322, -0.04688328877091408, 0.0186106376349926, -0.034718163311481476, 0.02670820616185665, -0.009862261824309826, -0.007265282794833183, -0.008667025715112686, 0.027384046465158463, -0.009899808093905449, -0.0012335649225860834, -0.020875955000519753, 0.017822157591581345, 0.01876082457602024, -0.035394005477428436, 0.003892339300364256, -0.016145072877407074, -0.0006351646734401584, 0.0012327827280387282, -0.012165124528110027, 0.009161390364170074, -0.05166423320770264, 0.011451737955212593, 0.05081317573785782, 0.05546896159648895, 0.0493864007294178, -0.0005901868571527302, -0.0424027182161808, -0.005156410858035088, -0.03974941745400429, -0.02272825688123703, -0.019724523648619652, 0.02254052460193634, -0.013191400095820427, -0.06798452138900757, -0.006702082231640816, -0.004361672792583704, -0.03206486627459526, -0.03234020620584488, -0.026908453553915024, -0.006204588804394007, -0.05496833845973015, 0.01664569415152073, 0.05071305111050606, -0.03516872227191925, -0.020976079627871513, 0.057070955634117126, 0.0013164804549887776, 0.041326381266117096, 0.007941123098134995, -0.022991083562374115, -0.0046464018523693085, -0.026808328926563263, 0.002708054380491376, 0.02420509234070778, -0.013053729198873043, 0.014893516898155212, 0.004740268457680941, -0.03719624504446983, -0.015356591902673244, 0.014868485741317272, 0.025156276300549507, 0.04923621192574501, -0.0360698439180851, 0.022815866395831108, 0.04367930442094803, 0.015819668769836426, 0.020650673657655716, 0.015344076789915562, -0.002402987563982606, -0.041651785373687744, 0.01684594340622425, -0.0719894990324974, -0.0024890319909900427, 0.0232539102435112, 0.015369107946753502, -0.019749553874135017, 0.010200181044638157, 0.030562998726963997, -0.01451804954558611, -0.038923390209674835, 0.03206486627459526, -0.0186106376349926, -0.02913622371852398, 0.021351546049118042, 0.021276451647281647, -0.003313494613394141, 0.00822898093611002, -0.009336607530713081, -0.02861057035624981, -0.018986104056239128, -0.0016849072417244315, 0.0004106668056920171, 0.0023122497368603945, -0.02501860447227955, 0.019787101075053215, 0.01184597797691822, 0.00995612796396017, -0.0006981336046010256, -0.004405477084219456, -0.02698354795575142, -0.0017427917337045074, 0.010994919575750828, -0.010969888418912888, 0.005087575409561396, 0.049736835062503815, 0.007465531583875418, 0.021789589896798134, 0.024142514914274216, 0.03474319353699684, -0.002767503261566162, 5.632001921185292e-05, 0.005046899430453777, 0.006501833442598581, 0.0048372638411819935, 0.006336002144962549, -0.0034417789429426193, 0.005566295236349106, -0.004683948587626219, -0.044905830174684525, -0.010425461456179619, -0.01904868334531784, -0.013429195620119572, 0.0400998555123806, 0.04260296747088432, -0.005281566176563501, -0.023341519758105278, 0.019411634653806686, 0.028635602444410324, -0.012096288613975048, -0.017108770087361336, 0.016520539298653603, 0.025444133207201958, -0.02397981286048889, 0.005034383852034807, -0.00011586670734686777, 0.029486659914255142, 0.02718379721045494, 0.016445446759462357, -0.0662323459982872, 0.032615549862384796, 0.010919826105237007, -0.026482924818992615, 0.029486659914255142, -0.014993640594184399, -0.020162567496299744, -0.005244019906967878, 0.01598237082362175, -0.013504289090633392, -0.013479257933795452, -0.00885475892573595, 0.04468055069446564, 0.005090704187750816, -0.010763381607830524, 0.012315311469137669, 0.010556874796748161, 0.025857146829366684, 0.018773339688777924, 0.009887292049825191, -0.013216431252658367, -0.019924771040678024, -0.013228947296738625, 0.0036639301106333733, 0.004596339538693428, 0.02521885372698307, 0.0002278223109897226, -0.04350408539175987, 0.025006089359521866, 0.014155098237097263, -0.01832278072834015, 0.040225010365247726, 0.00985600333660841, -0.021401608362793922, 0.016683241352438927, 0.002198045141994953, -0.0221024788916111, -0.003704605856910348, 0.01784718781709671, -0.033716920763254166, -0.020400362089276314, -0.0009488359210081398, -0.0008080358384177089, -0.02903609909117222, 0.016971100121736526, -0.01416761428117752, -0.025581805035471916, -0.009724589996039867, -0.01674581877887249, -0.008535612374544144, -0.011858493089675903, -0.023716986179351807, -0.015707027167081833, -0.020850922912359238, -0.04660794511437416, -0.011833461932837963, -0.021839652210474014, 0.0013767116470262408, -0.002191787352785468, 0.00889856368303299, 0.007321602664887905, -0.015569357201457024, 0.004261548165231943, 0.018598122522234917, 0.028535477817058563, 0.020688220858573914, -0.05546896159648895, 0.02096356265246868, 0.03627009317278862, -0.03394220024347305, 0.02147670090198517, -0.015294014476239681, -0.027384046465158463, 0.0049499040469527245, -0.013316555880010128, -0.0209135003387928, -0.009217710234224796, 0.026057396084070206, 0.015757089480757713, -0.012402920052409172, 0.010319079272449017, -0.001295360503718257, 0.02918628603219986, -0.042277563363313675, 0.03919873386621475, 0.0005315201706252992, 0.016820913180708885, 0.03536897152662277, -0.008153887465596199, 0.03421754017472267, -0.008222723379731178, 0.007853513583540916, 0.03086337074637413, -0.05827244743704796, -0.004527504090219736, 0.04725875332951546, -0.03244033083319664, -0.013429195620119572, -0.019586851820349693, -0.017784610390663147, 0.011307808570563793, -0.03526884689927101, 0.03474319353699684, 0.01275335531681776, -0.0004896713071502745, -0.013391649350523949, 0.02474326267838478, 0.003313494613394141, -0.024467920884490013, 0.028735725209116936, -0.02191474661231041, 0.020788345485925674, 0.03191467747092247, -0.005782188847661018, 0.019173838198184967, 0.01583218388259411, 0.020450424402952194, 0.0056413887068629265, 0.056970831006765366, 0.022327758371829987, -0.0008158580749295652, -0.04330383986234665, -0.08760891854763031, 0.036345187574625015, -0.01613255776464939, 0.00816014502197504, -0.037146180868148804, -0.03276573494076729, -0.02823510393500328, -0.037872083485126495, 0.0024655654560774565, 0.04836012423038483, -0.03076324611902237, -0.03699599578976631, 0.0022074319422245026, -0.051313795149326324, -0.004352285992354155, 0.018485482782125473, 0.018835917115211487, 0.021163811907172203, -0.049111057072877884, -0.02723385952413082, 0.011508057825267315, -0.0152439521625638, 0.018973588943481445, -0.036245062947273254, -0.01451804954558611, -0.004352285992354155, -0.006217104382812977, 0.009818457067012787, 0.021614372730255127, -0.005525619722902775, -0.02286592870950699, 0.003604481229558587, -0.015594388358294964, -0.013917302712798119, 0.010938599705696106, -0.006501833442598581, 0.017434176057577133, -0.022753288969397545, -0.020225144922733307, -0.033716920763254166, 0.011583151295781136, -0.04440520703792572, -0.029311440885066986, -0.0010990225709974766, -0.017484238371253014, 0.007471789605915546, -0.002964623272418976, -0.012840964831411839, 0.012284021824598312, 0.020262692123651505, 0.001968071796000004, 0.011451737955212593, 0.009636981412768364, -0.034718163311481476, -0.006298455409705639, 0.009843488223850727, -0.007828482426702976, -0.020262692123651505, -0.010225212201476097, -0.01899862103164196, 0.05852276086807251, 0.006051273085176945, -0.008541869930922985, -0.008529353886842728, 0.009317834861576557, 0.014530565589666367, -0.016257712617516518, 0.0313890241086483, -0.018435420468449593, 0.04583198204636574, 0.01564444974064827, -0.005269050598144531, 0.010588163509964943, -0.02698354795575142, 0.028410321101546288, 0.03707109019160271, 0.00018548451771494, -0.0031101165805011988, 0.029736971482634544, 0.022603102028369904, 0.007978669367730618, 0.038022272288799286, -0.020988594740629196, -0.00825401209294796, -0.03554419055581093, -6.243113602977246e-05, 0.011914812959730625, -0.015356591902673244, -0.031939707696437836, -0.0152439521625638, -0.0348433181643486, -0.050512801855802536, -0.0017005517147481441, -0.034718163311481476, -0.010068767704069614, -0.019499242305755615, -0.0008956447709351778, 0.012115062214434147, -0.0476592518389225, -0.015494263730943203, 0.017046192660927773, -0.030462874099612236, -0.009468020871281624, -0.006576926913112402, 0.034092385321855545, 0.08215213567018509, -0.017521783709526062, -0.020700735971331596, 0.0006523735937662423, -0.010888537392020226, 0.023028630763292313, -0.028435353189706802, 0.012478013522922993, -0.022740771993994713, -0.008585674688220024, -0.027208827435970306, 0.0017459206283092499, 0.013842209242284298, -0.018873464316129684, -0.0036232545971870422, -0.00652060704305768, 0.01516885869204998, -0.02344164438545704, -0.006451771128922701, -0.010788412764668465, 0.0006109157693572342, -0.01361692976206541, -0.009080038405954838, 0.002085405169054866, -0.00017140450654551387, 0.025431618094444275, 0.0186106376349926, -0.007740873843431473, -0.01698361523449421, 0.004048783797770739, 0.010269016958773136, -0.013253978453576565, -0.03401729092001915, -0.003976819105446339, 0.007991185411810875, -0.018573090434074402, 0.02530646324157715, -0.005290952976793051, -0.04703347384929657, -0.02511872909963131, -0.019874708727002144, -0.01999986544251442, -0.008516838774085045, 0.01908622868359089, 0.006354775745421648, 0.006852269172668457, -0.01779712736606598, -0.007490562740713358, 0.012446724809706211, -0.010982404462993145, 0.012672004289925098, 0.003254045732319355, 0.0032227567862719297, -0.03271567448973656, 0.031363993883132935, 0.023228880017995834, -0.004524374846369028, -0.004718366079032421, 0.02182713709771633, -0.024180062115192413, 0.03386710584163666, 0.021927261725068092, 0.013529320247471333, 0.014080004766583443, 0.02018759772181511, 0.013391649350523949, 0.004890454933047295, -0.04092588275671005, 0.023516736924648285, 0.005412979982793331, -0.022277697920799255, 0.0032853344455361366, -0.023191332817077637, 0.0007071291329339147, 0.014655720442533493, 0.008554385043680668, 0.037972208112478256, 0.015294014476239681, 0.009004945866763592, 0.005678935442119837, -0.017108770087361336, 0.01129529345780611, -0.030888402834534645, 0.026282675564289093, 0.025706959888339043, -0.008817211724817753, -0.008623220957815647, -0.021013624966144562, 0.042753152549266815, 0.0033666857052594423, 0.004098846111446619, 0.045481543987989426, -0.04300346598029137, 0.017884735018014908, -0.010926083661615849, -0.006820980459451675, -0.028935974463820457, 0.009568145498633385, 0.016758335754275322, -0.006958651356399059, 0.030562998726963997, -0.0027471655048429966, -0.017621908336877823, 0.013153853826224804, 0.010638225823640823, 0.009455505758523941, 0.006695824675261974, -0.027409076690673828, -0.01755933091044426, -0.013316555880010128, -0.007446758449077606, 0.002959929872304201, -0.006626989226788282, -0.013191400095820427, 0.018735794350504875, -0.024192577227950096, 0.06873545795679092, 0.01127026230096817, 0.013291524723172188, -0.01986219361424446, 0.036245062947273254, -0.021351546049118042, 0.03709612041711807, 0.0020556808449327946, 0.007427984848618507, -0.03396723046898842, -0.011145106516778469, -0.002542223082855344, 0.028310196474194527, 0.06898576766252518, -0.01509376522153616, -0.003310365602374077, -0.006273424718528986, 0.00980594102293253, 0.02640783227980137, -0.006695824675261974, -0.023141270503401756, -0.009036234579980373, 0.04640769585967064, -0.03249039500951767, 0.01994980312883854, -0.019686976447701454, 0.002016569720581174, -0.005043770652264357, -0.0022355918772518635, 0.03276573494076729, 0.04846024885773659, -0.03279076889157295, 0.009123843163251877, -0.027208827435970306, -0.032615549862384796, 0.021401608362793922, 0.009142616763710976, -0.025419102981686592, 0.04633260518312454, -0.02660808153450489, 0.007427984848618507, 0.029561752453446388, 0.0005256535368971527, -0.0293364729732275, 0.02081337571144104, 0.02808491699397564, 0.025581805035471916, 0.004943646024912596, -0.03869811072945595, 0.04640769585967064, -0.0094492482021451, 0.004333512857556343, 0.0116269551217556, 0.014580627903342247, -0.002961494494229555, -0.019511757418513298, 0.017146317288279533, -0.009324092417955399, 0.017334051430225372, -0.024092452600598335, -0.025706959888339043, 0.03128889948129654, 0.022703226655721664, -0.006264037918299437, -0.014768361113965511, 0.007722100708633661, -0.003826632397249341, -0.009205194190144539, 0.01574457436800003, 0.009718332439661026, 0.02670820616185665, -0.03616996854543686, 0.0013610671740025282, 0.01299115177243948, 0.011952360160648823, 0.0177095178514719, 0.007265282794833183, -0.014480503275990486, 0.021414123475551605, 0.03589462488889694, 0.010976145975291729, 0.012978635728359222, 0.03224008157849312, 0.017534298822283745, -0.007834740914404392, 0.03702102601528168, 0.02493099495768547, 0.04120122268795967, -0.03191467747092247, -0.01275335531681776, -0.0028691920451819897, -0.02775951288640499, 6.419113196898252e-05, -0.010857248678803444, -0.030062375590205193, 0.018172593787312508, 0.0140925208106637, -0.0200499277561903, -0.04981192946434021, -0.0020994851365685463, -0.004793459549546242, -0.008172661066055298, 0.009749621152877808, -0.001964943017810583, 0.00875463429838419, -0.008954883553087711, -0.005181442014873028, -0.012865995988249779, 0.048209939152002335, -0.021076202392578125, 0.00925525650382042, 0.04808478057384491, 0.01722140982747078, 0.03852289542555809, 0.014292770065367222, 0.031138714402914047, -0.02938653528690338, -0.004399219527840614, -0.01359189860522747, 0.02613248862326145, -0.02650795690715313, -0.01871076226234436, -0.028735725209116936, 0.06412973254919052, -0.000890951429028064, -0.006501833442598581, -0.0290861614048481, -0.055669210851192474, 0.04057544469833374, 0.014455472119152546, -0.01569451205432415, 0.03436772897839546, -0.03249039500951767, 0.011426706798374653, 0.010218954645097256, -0.026432862505316734, -0.009568145498633385, 0.010581905953586102, -0.006351646967232227, 0.019298993051052094, -0.006370420102030039, -0.008698314428329468, -0.008072536438703537, -0.021426638588309288, 0.02128896862268448, 0.016245197504758835, -0.0063985800370574, 0.05431753024458885, 0.026207583025097847, 0.001447893911972642, 0.002490596380084753, -0.014755845069885254, 0.003698348067700863, 0.016195135191082954, 0.021076202392578125, 0.011019950732588768, -0.0018210139824077487, -0.015969853848218918, 0.01723392680287361, 0.03867308050394058, -0.003933014813810587, -0.006282811053097248, -0.0036013524513691664, -0.004849779419600964, -0.008823470212519169, -0.05647020787000656, -0.00406755693256855, 0.01618262007832527, -0.015707027167081833, 0.03168939799070358, -0.05281566455960274, 0.019837163388729095, 0.025381555780768394, 0.007972411811351776, 0.022365305572748184, 0.008391682989895344, -0.007772163022309542, 0.016958583146333694, 0.0027174409478902817, 0.01117013767361641, 0.002609494375064969, 0.02306617796421051, -0.005444268696010113, -0.004693334922194481, 0.00013483560178428888, -0.0019086229149252176, 0.007040002383291721, 0.015081250108778477, 0.0325404554605484, 0.0056820642203092575, -0.005475557409226894, -0.0106006795540452, 0.028935974463820457, 0.013191400095820427, -0.004142650403082371, 0.008441745303571224, -0.037721898406744, -0.012715809047222137, 0.0017975473310798407, -0.0010333159007132053, -0.006489317864179611, -0.04025004059076309, -0.04455539584159851, -0.006298455409705639, 0.018197624012827873, 0.0031101165805011988, -0.029461627826094627, 0.011689533479511738, 0.03884829953312874, 0.004812232684344053, 0.00293176993727684, 0.003304107813164592, 0.001536285039037466, 1.0193337402597535e-05, -0.020825892686843872, 0.016345322132110596, -0.021739527583122253, -0.04272812232375145, 0.0021120007149875164, -0.024517983198165894, -0.004302223678678274, 0.014029942452907562, -0.027734480798244476, 0.0031977256294339895, -0.00870457198470831, -0.005791575647890568, 0.009912323206663132, 0.0678844004869461, 0.01304121408611536, -0.011470510624349117, 0.049111057072877884, 0.0506129264831543, -0.026307707652449608, 0.008141371421515942, 0.0270336102694273, -0.014868485741317272, -0.012478013522922993, -0.04400470852851868, 0.0062515223398804665, 0.032089896500110626, -0.014430440962314606, -0.02038784697651863, -0.022890958935022354, 0.01937408745288849, 0.045957136899232864, 0.003498099045827985, 0.024605590850114822, 0.029411565512418747, -0.02230272814631462, -0.0030459745321422815, -0.008516838774085045, -0.02531897835433483, -0.031163744628429413, 0.018911011517047882, -0.025243883952498436, 0.036620527505874634, 0.009605692699551582, -0.005037513095885515, -0.0018163206987082958, -0.0040049790404737, 0.02833522856235504, -0.0034480367321521044, 0.007678295951336622, 0.012021195143461227, -0.015056218951940536, 0.005578810814768076, -0.004120748024433851, 0.00019897785387001932, -0.01579463668167591, 0.008535612374544144, -0.024818355217576027, 0.019248930737376213, 0.027409076690673828, -0.001958685228601098, -0.014230191707611084, 0.009787168353796005, -0.006608215626329184, -0.006733371410518885, 0.04037519544363022, -0.04513110965490341, -0.02459307573735714, -0.028410321101546288, 0.009430474601686, 0.007859772071242332, -0.0018773339688777924, 0.01165198627859354, -0.02713373489677906, 0.014780876226723194, 0.010306564159691334, -0.003692090278491378, 0.022603102028369904, -0.019411634653806686, 0.003576321294531226, -0.0052659218199551105, -0.002119822893291712, -0.01637035235762596, -0.015043702907860279, -0.011070013046264648, -0.017584361135959625, 0.022427882999181747, 0.019799616187810898, 0.0048810685984790325, 0.019636914134025574, 0.01952427439391613, 0.0272839218378067, -0.01359189860522747, -0.019499242305755615, 0.007740873843431473, 0.008648252114653587, 0.006407966837286949, 0.010932342149317265, -0.008153887465596199, 0.020125020295381546, -0.00415203720331192, 0.016382867470383644, 0.010857248678803444, 0.06633246690034866, -0.0014682316686958075, -0.0009988981764763594, 0.030512936413288116, -0.00021902230218984187, 0.0009636981412768364, 0.002498418791219592, -0.020926017314195633, -0.010168892331421375, -0.018172593787312508, -0.0209135003387928, 0.020926017314195633, 0.011633212678134441, 0.0015871294308453798, -0.0007106491248123348, -0.025331493467092514, -0.0027565520722419024, -0.020312754437327385, -0.030838340520858765, 0.01938660256564617, -0.003254045732319355, 0.02186468429863453, -0.00889856368303299, 0.026583049446344376, 0.01660814881324768, -0.02545665018260479, -0.005619486328214407, -0.03449288383126259, -0.01364196091890335, -0.011614440008997917, 0.007953638210892677, -0.016545571386814117, -0.0009511825628578663, 0.02374201826751232, 0.023178817704319954, 0.03694593161344528, 0.02257806994020939, 0.008297815918922424, 0.00754688261076808, 0.008404199033975601, 0.020350301638245583, -0.01043171901255846, 0.006695824675261974, -0.0037202502135187387, -0.011013693176209927, -0.009011203423142433, -0.0059167309664189816, 0.0006637158221565187, 0.0036326413974165916, -0.014655720442533493, 0.009793425910174847, 0.014217676594853401, 0.009017460979521275, 0.0034323923755437136, -0.009818457067012787, -0.0046870773658156395, -0.002396729774773121, 0.014155098237097263, -0.015419170260429382, -0.02147670090198517, 0.004020623862743378, -0.022653164342045784, -0.0038078592624515295, 0.005869797896593809, 0.03316623345017433, -0.007402953691780567, -0.008003700524568558, 0.010700804181396961, -0.000597617996390909, -0.016533054411411285, -0.019649429246783257, 0.020062442868947983, 0.01002496387809515, -0.00978090986609459, 0.017534298822283745, 0.019549304619431496, -0.025957271456718445, -0.021451670676469803, 0.009004945866763592, 0.06913595646619797, -0.02708367258310318, -0.007859772071242332, -0.017884735018014908, 0.05306597426533699, 0.008967398665845394, -0.03932388871908188, -0.01613255776464939, -0.020988594740629196, 0.03043784201145172, -0.03071318380534649, -0.009893550537526608, 0.00926151406019926, 0.004718366079032421, -0.042227499186992645, -0.021764559671282768, 0.0077158426865935326, -0.0025922853965312243, -0.006113850977271795, -0.0022105607204139233, 0.009349123574793339, 0.007859772071242332, -0.0024201965425163507, 0.006176428869366646, 0.02981206402182579, 0.013141337782144547, 0.0212013591080904, -0.023041145876049995, 0.022840896621346474, -0.015018671751022339, 0.04100097343325615, 0.007321602664887905, -0.03301604837179184, -0.03727133944630623, -0.012715809047222137, -0.012659489177167416, -0.0027002322021871805, -0.0010583470575511456, 0.0001799111778382212, 0.0034730678889900446, 0.02359183132648468, -0.016570601612329483, 0.032991018146276474, -0.03481828793883324, 0.041601721197366714, 0.02861057035624981, -0.023767048493027687, -0.00949931051582098, -0.035093631595373154, 0.0064455135725438595, -0.00872960314154625, -0.04050035402178764, -0.017046192660927773, -0.022653164342045784, 0.04130134731531143, -0.036820776760578156, -0.0036420279648154974, 0.016332805156707764, 0.00700871367007494, 0.002351360861212015, -0.01105123944580555, -0.041902095079422, 0.03181455284357071, 0.016570601612329483, 0.0014416361227631569, -0.04135141149163246, -0.010137603618204594, -0.01684594340622425, 0.002631396520882845, -0.01908622868359089, -0.010944857262074947, -0.0064455135725438595, -0.02259058691561222, 0.007928607054054737, 0.043854523450136185, 0.008197692222893238, -0.008942367509007454, 0.012953604571521282, -0.014417924918234348, -0.003135147737339139, -0.025606835260987282, -0.007690811529755592, 0.0014439827064052224, 0.0010497425682842731, -0.020825892686843872, -0.023529253900051117, -0.01399239618331194, -0.010118830017745495, 0.02861057035624981, -0.021551795303821564, -0.006889815907925367, -0.00887979008257389, 0.0019086229149252176, -0.03769686818122864, 0.016996130347251892, 0.000644551357254386, 0.05286572501063347, 0.0029380277264863253, -0.02234027534723282, -0.01956181973218918, -0.031789522618055344, 0.006989940535277128, 0.007728358265012503, -0.011983648873865604, 0.005632001906633377, -0.02474326267838478, -0.012740840204060078, 0.007265282794833183, 0.0258821789175272, -0.004095716867595911, -0.0036263836082071066, -0.044580426067113876, -0.0067896912805736065, 0.006514349021017551, 0.017722032964229584, 0.0319647416472435, 0.009167647920548916, 0.025731991976499557, -0.04330383986234665, 0.00928028766065836, -0.0015753961633890867, 0.005854153074324131, 0.048159874975681305, 0.01229653786867857, 0.0020728895906358957, 0.013379133306443691, -0.03862302005290985, 0.047108568251132965, 0.019261447712779045, 0.01598237082362175, 0.04335390031337738, -0.004674561787396669, -0.014242707751691341, 0.002819129964336753, 0.021852167323231697, 0.01832278072834015, 0.012790902517735958, 0.045857012271881104, -0.00037175125908106565, 0.022177573293447495, -0.01103246584534645, -0.024718230590224266, -0.015231437049806118, -0.00030056899413466454, -0.007853513583540916, -0.04257793724536896, 0.009392928332090378, -0.020738283172249794, -0.031464118510484695, -0.012659489177167416, 0.012071257457137108, 0.026908453553915024, 0.015669481828808784, 0.0037828281056135893, 0.020888470113277435, -0.037446554750204086, 0.06833495944738388, -0.0038547925651073456, 0.003804730251431465, -0.03336648270487785, -0.020062442868947983, -0.03559425473213196, 0.018122531473636627, 0.0020791473798453808, 0.03822252154350281, -0.023003598675131798, 0.04120122268795967, 0.027859637513756752, 0.003094472223892808, 0.0360698439180851, -0.003804730251431465, -0.003241530153900385, -0.035569220781326294, -0.020800860598683357, 0.013654476031661034, -0.0027643742505460978, -0.022190088406205177, 0.02986212633550167, 0.023191332817077637, 0.03171442821621895, -0.010763381607830524, 0.008103825151920319, 0.007140127010643482, 0.03234020620584488, 0.011664502322673798, -0.014906032010912895, -0.012208929285407066, -0.01837284304201603, 0.026332737877964973, 0.005688322242349386, 0.023992327973246574, -0.0032164989970624447, -0.02966187708079815, 0.022452915087342262, -0.03086337074637413, 0.016971100121736526, 0.025782054290175438, -0.008667025715112686, -0.034042324870824814, -0.012665746733546257, -0.020788345485925674, 0.05421740561723709, 0.01301618292927742, 0.0080099580809474, -0.009223967790603638, -0.009893550537526608, -0.01723392680287361, -0.047108568251132965, -0.015231437049806118, -0.020900985226035118, -0.0293364729732275, -0.0077033271081745625, 0.03474319353699684, 0.02421760931611061, 0.00755939818918705, -0.034092385321855545, 0.01002496387809515, -0.002902045613154769, 0.027333984151482582, -0.03759674355387688, 0.03884829953312874], [-0.005602669436484575, -0.0035865313839167356, 0.06676571816205978, 0.03949984908103943, -0.005294077098369598, 0.03050266019999981, -0.046988360583782196, 0.05041716620326042, 0.0052632177248597145, 0.05239215865731239, 0.0037956885062158108, -0.031791891902685165, 0.014483277685940266, 0.0180903822183609, -0.03176446259021759, 0.019585341215133667, 0.01108190231025219, 0.026401808485388756, -0.00046331743942573667, 0.0017238323343917727, 0.05952407792210579, 0.0007350503583438694, -0.044601913541555405, -0.016129104420542717, -0.06473585963249207, -0.03694881498813629, 0.03140786662697792, -0.0024635973386466503, 0.0448213554918766, -0.09035590291023254, 0.06808237731456757, -0.04243490844964981, -0.015223899856209755, -0.013557500205934048, -0.022506684064865112, -0.024330809712409973, -0.04202345013618469, 0.00859258882701397, 0.012933457270264626, 0.012206550687551498, -0.0014503850834444165, -0.004707750864326954, -0.004697464406490326, 0.011452212929725647, -0.05483347177505493, 0.05296820029616356, -0.0233844593167305, -0.05826227739453316, 0.026113789528608322, 0.010643014684319496, 0.020037943497300148, 0.046686626970767975, -0.005520378239452839, -0.055683813989162445, 0.009936681017279625, 0.024056505411863327, 0.012213408015668392, 0.01651313155889511, 0.042215462774038315, 0.0010449286783114076, 0.021478042006492615, -0.0014306694502010942, -0.009161770343780518, 0.020778566598892212, -0.011843097396194935, 0.008777744136750698, -0.017349759116768837, 0.014579284004867077, -0.010437286458909512, 0.007056483533233404, 0.04098109155893326, 0.05176125839352608, 0.0006197567563503981, -0.024865703657269478, 0.005146638490259647, 0.004577456507831812, -0.03508354723453522, 0.005654101725667715, -0.029871759936213493, -0.025496603921055794, -0.03105127066373825, 0.03341028839349747, 0.014853589236736298, -0.0028116211760789156, 0.014263833872973919, -0.0022355816327035427, -0.06572335958480835, -0.018419547006487846, -0.015690216794610023, -0.029954051598906517, -0.003531670430675149, 0.03069467470049858, -0.05831713601946831, 0.020298533141613007, 0.03472695127129555, -0.001849840977229178, 0.015690216794610023, -0.01667771302163601, -0.013859234750270844, 0.03609847277402878, -0.030008912086486816, -0.060566432774066925, -0.02017509564757347, -0.009360641241073608, 0.002182435244321823, -0.028993986546993256, -0.02135460637509823, 0.046028297394514084, 0.013255764730274677, -0.031846754252910614, -0.019050447270274162, -0.0466591976583004, 0.0030464944429695606, 0.0933183953166008, -0.0234393198043108, -0.035549864172935486, -0.04103595390915871, -0.011253342032432556, 0.007810820825397968, 0.027430450543761253, -0.03689395636320114, -0.021011725068092346, 0.011726517230272293, -0.07406221330165863, 0.01916017010807991, -0.003939698450267315, -0.008139986544847488, -0.023398173972964287, -0.05280361697077751, -0.03362973406910896, 0.05678103119134903, -0.034699518233537674, 0.04484878480434418, -0.059908103197813034, -0.035412710160017014, -0.017829792574048042, -0.005407227668911219, -0.02785562165081501, -0.010574438609182835, -0.055738676339387894, 0.061279624700546265, -0.004063135478645563, -0.005359224043786526, 0.02689555659890175, -0.08816146850585938, 0.008476009592413902, 0.0009600657504051924, 0.037031106650829315, -0.006487301550805569, -0.01283059362322092, -0.02184835448861122, 0.011843097396194935, -0.05870116502046585, -0.028390515595674515, 0.025962920859456062, -0.010382425040006638, 0.03848492354154587, 0.05052689090371132, -0.009470363147556782, -0.015333621762692928, -0.0006771892658434808, -0.03431549295783043, -0.022904425859451294, 0.00034159483038820326, 0.0041557131335139275, 0.039774153381586075, -0.0013912381837144494, 0.037689439952373505, -0.06100532039999962, -0.03939012810587883, -0.03187418356537819, -0.0138249471783638, -0.05093834549188614, 0.009669234044849873, -0.028075065463781357, -0.04624773934483528, 0.00881888996809721, -0.011657941155135632, 0.0190641637891531, -0.004591171629726887, 0.008242850191891193, 0.01763777993619442, -0.08174274116754532, -0.05870116502046585, -0.05439458414912224, 0.051267512142658234, -0.0018875579116865993, 0.026346947997808456, -0.03645506873726845, -0.02242439240217209, 0.016856011003255844, 0.03782659024000168, 0.014140397310256958, 0.013077467679977417, -0.021944360807538033, 0.0060209836810827255, 0.017980659380555153, -0.017404621466994286, -0.003360230242833495, -0.02043568529188633, 0.0233295988291502, -0.05694561451673508, 0.04685121029615402, 0.041913729161024094, -0.006977621000260115, -0.006549019832164049, -0.043422404676675797, -0.004628888331353664, -0.018378401175141335, -0.07691498100757599, 0.01763777993619442, -0.014839873649179935, -0.008661164902150631, 0.04045991599559784, -0.017308613285422325, -0.01374951284378767, -0.035193268209695816, 0.0011400780640542507, 0.00820856261998415, 0.045369964092969894, -0.0022390105295926332, -0.0054106563329696655, 0.018021805211901665, -0.036317914724349976, -0.04487621784210205, 0.005671245511621237, 0.007584519684314728, -0.07686012238264084, -0.01662285253405571, -0.07543373852968216, -0.025030285120010376, 0.02306900918483734, -0.011061329394578934, -0.006302145775407553, -0.01921503059566021, -0.023206161335110664, 0.01011497899889946, -0.017198892310261726, 0.0027601891197264194, 0.01987336203455925, 0.00879145972430706, -0.01357121579349041, 0.01420897338539362, 0.010361853055655956, 0.04065192863345146, -0.0052357870154082775, -0.01072530634701252, -0.05645186826586723, 0.014935879968106747, 0.039417557418346405, 0.05510777607560158, 0.032505083829164505, 0.048826202750205994, -0.02943287417292595, -0.007090771570801735, 0.020970579236745834, -0.025935491546988487, -0.044601913541555405, 0.022383248433470726, -0.027663609012961388, -0.014277549460530281, 0.014908449724316597, -0.004368299152702093, -0.028993986546993256, -0.053544238209724426, -0.026511529460549355, 0.008764028549194336, -0.02913113869726658, -0.014250119216740131, 0.0501154325902462, -0.05088348686695099, 0.03491896390914917, 0.021478042006492615, -0.028801972046494484, -0.048771340399980545, 0.03653736039996147, -0.027115000411868095, -0.048058148473501205, -0.017363475635647774, -0.01926989108324051, -0.03851235285401344, -0.0035556722432374954, 0.002991633489727974, -0.021011725068092346, 0.032038766890764236, 0.03009120374917984, 0.013605503365397453, -0.028993986546993256, -0.021011725068092346, 0.01763777993619442, 0.055080343037843704, 0.004200287628918886, 0.02622351050376892, 0.006641597952693701, 0.050554320216178894, -0.008722883649170399, 0.019832216203212738, -0.02201293595135212, 0.013886665925383568, 0.008976615034043789, 0.019845930859446526, -0.00132780522108078, -0.010896746069192886, -0.033876605331897736, -0.03933526575565338, 0.04259948804974556, 0.03604361042380333, -0.0028561956714838743, -0.05892060697078705, 0.004851760808378458, -0.026305802166461945, 0.023658763617277145, -0.06479072570800781, -0.07055111974477768, -0.03442521393299103, -0.012672867625951767, -0.0018789859022945166, 0.007111344486474991, -0.010073833167552948, 0.01288545411080122, 0.023343313485383987, -0.002753331558778882, 0.014469563029706478, -0.030557522550225258, -0.008537727408111095, -0.037634577602148056, -0.0005670388345606625, 0.020188812166452408, -0.026154935359954834, -0.035659585148096085, -0.02556517906486988, -0.015361052006483078, 0.005112349987030029, 0.009778955951333046, -0.03741513565182686, -0.006576450541615486, -0.03195647522807121, 0.05881088599562645, 0.001123791211284697, 0.03694881498813629, 0.02327473647892475, -0.010272704064846039, -0.04207831248641014, 0.0182001031935215, -0.018529269844293594, 0.0626511499285698, 0.028020204976201057, 0.022506684064865112, 0.02430337853729725, 0.06687543541193008, 0.021011725068092346, 0.04163942486047745, -0.030968979001045227, -0.021368321031332016, -0.05373625084757805, 0.013660363852977753, 0.004334011115133762, 0.03604361042380333, -0.03678423538804054, -0.0005666102515533566, 0.0014795298920944333, 0.010005257092416286, 0.0010740736033767462, 0.018638990819454193, 0.04789356514811516, -0.044958509504795074, -0.006665599532425404, -0.009710379876196384, 0.03269709646701813, -0.009024618193507195, -0.004210574086755514, 0.04879876971244812, 0.049073074012994766, 0.018817288801074028, -0.011657941155135632, -0.039774153381586075, -0.012624864466488361, 0.027018994092941284, -0.003552243346348405, 0.0020572838839143515, 0.014510707929730415, 0.022630121558904648, 0.012089971452951431, 0.019845930859446526, 0.019749924540519714, 0.025181153789162636, -0.06319975852966309, -0.020559122785925865, -0.04361441731452942, 0.020051660016179085, 0.0023813059087842703, -0.012419136241078377, -0.030118634924292564, 0.010197269730269909, -0.03236792981624603, 0.04822273179888725, 0.026456668972969055, 0.021052870899438858, 0.03675680235028267, 0.024536537006497383, -0.030365508049726486, -0.05881088599562645, -0.0017864081310108304, 0.011493358761072159, -0.052940770983695984, -0.028527667745947838, -0.05656158924102783, -0.02169748581945896, -0.02913113869726658, -0.005054060369729996, 0.019091593101620674, -0.00884632021188736, 0.03944498673081398, 0.005516949109733105, 0.03116099163889885, -0.02278098836541176, -0.04067935794591904, 0.049429669976234436, -0.012597434222698212, -0.011445355601608753, 0.02668982744216919, 0.014839873649179935, 0.019695064052939415, -0.00024708834826014936, -0.042160604149103165, 0.020051660016179085, 0.03678423538804054, 0.009196058847010136, -0.00746108265593648, -0.06073101609945297, -0.012467139400541782, 0.02567490190267563, 0.020929433405399323, 0.009538939222693443, -0.06643655151128769, -0.018021805211901665, 0.01468900591135025, 0.003572816262021661, -0.014140397310256958, -0.03497382253408432, 0.03206619620323181, -0.026113789528608322, 0.022300956770777702, 0.005722677800804377, -0.024728551506996155, -0.0052460734732449055, 0.017116600647568703, -0.0016466842498630285, -0.011863669380545616, -0.0048106154426932335, -0.020065374672412872, 0.010691017843782902, -0.05077376216650009, -0.02165633998811245, -0.035549864172935486, -0.0013852377887815237, 0.02154661901295185, -0.0416942834854126, 0.022657552734017372, -0.026977848261594772, 0.019599057734012604, 0.03450750559568405, 0.052995629608631134, 0.07208722084760666, 0.030118634924292564, -0.02348046563565731, -0.029295720160007477, -0.003471666481345892, -0.03085925616323948, -0.034836672246456146, -0.02002422884106636, -0.02800649031996727, -0.004680320620536804, -0.022232379764318466, 0.011753948405385017, -7.736244151601568e-05, -0.0016689714975655079, -0.03544014319777489, 0.013132328167557716, 0.0005747536779381335, 0.05028001591563225, 0.058371998369693756, -0.05667131021618843, -0.019173884764313698, 0.08300454169511795, 0.013914096169173717, 0.06177337467670441, -0.013667222112417221, -0.0198184996843338, -0.014839873649179935, -0.004951196257025003, 0.0029316293075680733, 0.009093194268643856, -0.016279973089694977, 0.016540560871362686, 0.006593594327569008, -0.02297300286591053, 0.0013603789266198874, 0.013276337645947933, 0.015278761275112629, 0.029405442997813225, -0.02577090822160244, 0.018789857625961304, 0.02577090822160244, 0.014414701610803604, 0.0031785033643245697, -0.0165268462151289, -0.02688184194266796, -0.037085969001054764, 0.0021652912255376577, -0.05439458414912224, 0.019749924540519714, 0.007872539572417736, -0.004169428255409002, -0.02481084316968918, -0.003634534776210785, 0.029158568009734154, -0.02622351050376892, -0.05549180135130882, -0.01600566692650318, 0.0026264656335115433, -0.025386881083250046, -0.010601868852972984, 0.028747111558914185, -0.006730746943503618, 0.02515372261404991, -0.02129974402487278, -0.04194115847349167, -0.0313255749642849, 0.011294487863779068, -0.004124853760004044, -0.021272314712405205, -0.02668982744216919, 0.03313598409295082, 0.0030259215272963047, -0.00019565626280382276, -0.005564952734857798, 0.016650283709168434, -0.0019989940337836742, -0.034946393221616745, 0.008894323371350765, -0.010581295937299728, 0.011863669380545616, 0.007049625739455223, -0.015525635331869125, -0.005297505762428045, 0.023014148697257042, 0.024824557825922966, 0.009394928812980652, 0.01977735385298729, 0.01804923638701439, 0.014263833872973919, -0.007515943609178066, 3.439521242398769e-05, -0.001464957487769425, 0.004759183153510094, 0.011465928517282009, -0.038402631878852844, 0.011959676630795002, -0.021999221295118332, -0.01681486703455448, 0.02145061269402504, -0.00035230984212830663, -0.016348548233509064, -0.01308432500809431, 0.01023841556161642, 0.03176446259021759, 0.007063340861350298, -0.02541431225836277, 0.007742244750261307, -0.03480924293398857, 0.021519187837839127, 0.003624248318374157, -0.028047636151313782, 0.04462934285402298, 0.029185999184846878, 0.004889477975666523, -0.040898799896240234, 0.047701552510261536, 0.009120624512434006, -0.013029463589191437, 0.02465997450053692, -0.022328386083245277, -0.0003876694245263934, -0.010526435449719429, 0.012460282072424889, -0.004375156946480274, -0.03856721147894859, 0.009744667448103428, 0.03234050050377846, -0.0018738426733762026, 0.009970968589186668, -0.011987106874585152, 0.024893132969737053, -0.0027499026618897915, 0.04051477462053299, -0.018364686518907547, 0.02271241322159767, 0.007474797777831554, 0.018789857625961304, 0.005544379819184542, -0.030118634924292564, -0.011136762797832489, 0.034534938633441925, -0.035302989184856415, 0.022040367126464844, 0.013996386900544167, -0.008757171221077442, 0.024632545188069344, 0.01743205077946186, 0.0024395957589149475, 0.02317873015999794, -0.015772508457303047, -0.04720780625939369, -0.02485198900103569, 0.007783390115946531, -0.035549864172935486, -0.018721282482147217, -0.006922760047018528, -0.02419365756213665, -0.01977735385298729, -0.0013955241302028298, 0.004546597134321928, -0.014977025799453259, -0.027211006730794907, -0.004827759228646755, -0.010581295937299728, -0.04350469261407852, 0.014071821235120296, -0.012377990409731865, -0.012583719566464424, 0.016225110739469528, -0.013118612580001354, -0.009545796550810337, -0.0012643723748624325, 0.020764850080013275, 0.02896655537188053, -0.009943538345396519, 0.0011537933023646474, 0.021162591874599457, 0.017980659380555153, 0.01728118397295475, 0.04301094636321068, -0.04646718129515648, -0.004944338463246822, 0.03535785153508186, -0.0010372139513492584, 0.01891329512000084, 0.004141998011618853, -0.015566780231893063, 0.012213408015668392, -0.008784601464867592, 0.008229135535657406, -0.009998398832976818, 0.02725215256214142, 0.007406221702694893, -0.04624773934483528, 0.030886687338352203, 0.02658010646700859, 0.04369670897722244, -0.023507896810770035, 0.051267512142658234, 0.0005297505995258689, 0.011795093305408955, 0.04534253478050232, 0.008654306642711163, 0.04131025820970535, -0.028856834396719933, -0.013187188655138016, 0.0015249615535140038, -0.03766200691461563, 0.0010997896315529943, 0.04279150441288948, -0.04254462942481041, 0.0009120624745264649, -0.018419547006487846, -0.020353393629193306, 0.0012515143025666475, -0.02053169161081314, 0.015717647969722748, -0.008524012751877308, -0.0038814088329672813, -0.0060381279326975346, 0.0077696749940514565, 0.019173884764313698, -0.029707178473472595, 0.0023967355955392122, -0.025290874764323235, -0.012131116352975368, 0.04290122538805008, -0.007207350805401802, 0.017829792574048042, 0.00043931580148637295, 0.007221065927296877, 0.008524012751877308, 0.04018561169505119, 0.014414701610803604, -0.001175223384052515, -0.05063661187887192, -0.08536355942487717, 0.012131116352975368, 0.011061329394578934, -0.00787939690053463, -0.032806817442178726, -0.04410816356539726, -0.0347818098962307, -0.012014537118375301, 0.005369510501623154, 0.05326993390917778, -0.0024190228432416916, -0.017294898629188538, -0.020819712430238724, -0.04808557778596878, -0.009367498569190502, 0.041502270847558975, 0.015827370807528496, -0.03140786662697792, -0.019599057734012604, -0.008784601464867592, 0.0012883739545941353, -0.007399363908916712, 0.022794704884290695, -0.048716481775045395, -0.013372344896197319, 0.00032616520184092224, 0.0017709784442558885, 0.01219969242811203, 0.01534733735024929, -0.013557500205934048, -0.0016603994881734252, 0.04402587190270424, -0.0008297711028717458, 0.0012703727697953582, 0.0060106972232460976, -0.02913113869726658, 0.004865475930273533, -0.02002422884106636, 0.0021704344544559717, -0.02749902568757534, -0.008421148173511028, -0.01662285253405571, -0.04550711810588837, -0.014716437086462975, -0.013866093009710312, 0.0031990762799978256, -0.011328776367008686, 0.015251330099999905, 0.03746999427676201, -0.009209773503243923, -0.0016809722874313593, -0.003312226850539446, 0.012288841418921947, -0.03327313810586929, -0.02744416519999504, 0.004227718338370323, 0.007282784674316645, -0.005108921322971582, 0.003655107459053397, -0.02627837099134922, 0.02088828757405281, 0.03777173161506653, -0.0070119090378284454, -0.018584130331873894, -0.014442131854593754, 0.00613756338134408, -0.009840673767030239, -0.015566780231893063, -0.013646649196743965, 0.035906460136175156, -0.012878596782684326, -0.00458774296566844, 0.0014443846885114908, 0.006758177187293768, 0.02496170997619629, 0.020984293892979622, -0.03579673916101456, -0.011863669380545616, 0.004556883592158556, 0.0015541064785793424, 0.00470089353621006, 0.02998148277401924, -0.005551237612962723, -0.002722472185268998, -0.021875783801078796, 0.007666810881346464, -0.004100852180272341, -0.008860035799443722, -0.023219875991344452, 0.005674674641340971, -0.0012566575314849615, -0.020010514184832573, 0.0055786678567528725, 0.008023406378924847, -0.0397467240691185, -0.017829792574048042, 0.016238827258348465, 0.007646237965673208, -0.04750953987240791, -0.022588975727558136, 0.01739090494811535, -0.03406861796975136, -0.015895945951342583, -0.008880608715116978, 0.021478042006492615, 0.09946281462907791, -0.004868905059993267, -0.04476649686694145, -0.005551237612962723, 0.0023881637025624514, -0.015278761275112629, -0.042105741798877716, 0.022136373445391655, 0.001926989178173244, -0.0065113031305372715, -0.028884263709187508, 0.018570415675640106, 0.02278098836541176, 0.019530480727553368, -0.010094406083226204, -0.007282784674316645, -0.0037133973091840744, -0.0058598299510777, 0.006312432233244181, -0.0028767685871571302, 0.028033919632434845, -0.0010209270985797048, 0.014469563029706478, -0.0061958529986441135, 0.008503439836204052, -0.00932635273784399, 0.02627837099134922, 0.006147849839180708, 0.026676112785935402, 0.004416302312165499, -0.021080302074551582, -0.03266966715455055, -0.005012915004044771, -0.014881019480526447, 0.019228745251893997, -0.005678103305399418, 0.053599100559949875, -0.007543373852968216, -0.03415090963244438, -0.031435295939445496, -0.023398173972964287, 0.0031030697282403708, -0.004265435039997101, -0.011047613807022572, -0.024824557825922966, 0.03009120374917984, -0.02261640690267086, -0.04087137058377266, -0.012425994500517845, -0.032148487865924835, -0.0006951904506422579, -0.011404209770262241, 0.014757581986486912, -0.041584562510252, 0.014222688972949982, 0.03437035530805588, -0.01773378625512123, -0.009778955951333046, 0.015841085463762283, 0.0005228929803706706, 0.017089171335101128, 0.01932475157082081, 0.006655313074588776, -0.027718469500541687, 0.052172716706991196, -0.0030156350694596767, -0.007070198655128479, -0.037223123013973236, -0.01570393331348896, 0.00851715449243784, 0.007303357589989901, -0.036400206387043, -0.0090177608653903, 0.02663496695458889, 0.017363475635647774, 0.0017658352153375745, 0.010896746069192886, 0.01916017010807991, 0.011795093305408955, 0.006192424334585667, -0.030173495411872864, 0.010636157356202602, -0.03736027330160141, 0.047756414860486984, 0.012021394446492195, -0.007337645627558231, -0.007351360749453306, 0.001462385873310268, 0.03338285908102989, 0.023357028141617775, 0.017500627785921097, 0.03373945504426956, -0.0379088819026947, 0.015950806438922882, -0.0076188077218830585, -0.010889888741075993, -0.0432029590010643, -0.018927011638879776, -0.008805174380540848, 0.020449399948120117, 0.001565250102430582, 0.0077971057035028934, -0.005496376659721136, -0.007701098918914795, 0.028692251071333885, 0.002384734805673361, 0.01722632348537445, -0.022383248433470726, -0.02017509564757347, 0.00787939690053463, 0.023823346942663193, -0.012206550687551498, 0.02220495045185089, -0.002679612021893263, 0.02424851804971695, 0.007790247909724712, 0.05974351987242699, -0.012453424744307995, 0.004591171629726887, -0.0019955653697252274, 0.037442564964294434, 0.003967128694057465, 0.0054312292486429214, 0.025332020595669746, 0.011164193041622639, -0.04369670897722244, -0.03135300427675247, 0.03472695127129555, 0.01468900591135025, 0.04243490844964981, -0.010320707224309444, -0.00894918479025364, 0.003603675402700901, 0.011465928517282009, 0.018419547006487846, -0.011829381808638573, 0.002283585024997592, 0.006734175607562065, 0.023192446678876877, -0.05376368388533592, 0.008366287685930729, 0.01468900591135025, -0.0023281595204025507, 0.02428966388106346, 0.021999221295118332, -0.02383706159889698, 0.05721991881728172, -0.057055335491895676, 0.005828970577567816, 0.008551442995667458, -0.03349258005619049, -0.0029693462420254946, 0.03157244995236397, -0.010224699974060059, 0.04062449559569359, -0.018076667562127113, 0.026950417086482048, 0.03138043358922005, 0.026909271255135536, -0.031846754252910614, 0.0347818098962307, 0.03192904591560364, 0.005122636444866657, -0.02481084316968918, -0.006014126352965832, 0.041611991822719574, -0.028692251071333885, 0.0049683405086398125, 0.037031106650829315, 0.008606303483247757, -0.0019595627672970295, -0.0165268462151289, 0.019832216203212738, 0.001702402369119227, 0.016074243932962418, -0.004289436619728804, -0.016430839896202087, 0.02154661901295185, 0.03105127066373825, -0.00041917155613191426, -0.0026967560406774282, 0.036400206387043, -0.010773309506475925, 0.01430497970432043, 0.03615333512425423, 0.03159987926483154, 0.031188422814011574, -0.005163782276213169, 0.013619218952953815, 0.026648683473467827, -0.0055683813989162445, 0.03151758760213852, -0.001572964945808053, -0.019503049552440643, 0.030776964500546455, 0.054312292486429214, 0.04111824557185173, 0.023165015503764153, -0.007070198655128479, 0.02551031857728958, -0.012384848669171333, 0.008338856510818005, 0.018131528049707413, 0.030612383037805557, -0.03922554478049278, -0.018282394856214523, -0.0009206344839185476, -0.010883031412959099, 0.0066861724480986595, 0.019173884764313698, -0.021423181518912315, 0.01064987201243639, 0.024673691019415855, -0.028829403221607208, -0.03236792981624603, -0.006017555017024279, 0.014675291255116463, -0.0024807413574308157, 0.021327175199985504, 0.008578873239457607, 0.03206619620323181, 0.0049580540508031845, -0.01681486703455448, -0.020860858261585236, 0.05071890354156494, -0.021766062825918198, 0.0043408689089119434, 0.027814475819468498, 0.007899969816207886, 0.02272612787783146, 0.01313918549567461, 0.014455847442150116, -0.011260200291872025, 0.019941937178373337, -0.0146615756675601, 0.04117310792207718, -0.02099801041185856, -0.00710448669269681, -0.04808557778596878, 0.04778384417295456, 0.021670056506991386, -0.0034733808133751154, -0.016074243932962418, -0.007927400059998035, 0.0206825602799654, -0.0015489632496610284, 0.005030058789998293, 0.03982901573181152, -0.029570026323199272, 0.004608315881341696, 0.0015926805790513754, -0.011740232817828655, -0.02734815888106823, -0.029460303485393524, 0.00012975888967048377, 0.01103389821946621, -5.930763290962204e-05, -0.041968587785959244, 6.246856355573982e-05, 0.01130820345133543, 0.006487301550805569, 0.020065374672412872, -0.02541431225836277, 0.03404118865728378, 0.02571604773402214, 0.022630121558904648, 0.012425994500517845, 0.002532173413783312, -0.005276932846754789, 0.03815575689077377, 0.010217842645943165, 0.023699909448623657, -0.01957162655889988, -0.004659747704863548, -0.0069741918705403805, 0.005643815267831087, 0.009552654810249805, -0.012693440541625023, -0.004872333724051714, -0.011411067098379135, -0.0037339699920266867, -0.016952019184827805, -0.016485700383782387, 0.0074816555716097355, 0.0013595216441899538, 0.007995976135134697, -0.04128282889723778, 0.0072896420024335384, 0.03766200691461563, -0.016074243932962418, 0.01169222965836525, -0.0008336285245604813, 0.009004045277833939, 0.0012832307256758213, 0.0022150089498609304, 0.0028373373206704855, 0.017198892310261726, 0.016595423221588135, 0.013434062711894512, -0.026305802166461945, 0.03746999427676201, -0.022849565371870995, 0.026209795847535133, 0.0006506160134449601, 0.0050780619494616985, 0.010046402923762798, -0.028225934132933617, -0.008674879558384418, 0.05244702100753784, -0.0019029874820262194, 0.0011477929074317217, -0.00843486376106739, -0.032614804804325104, 0.0017744072247296572, 0.01874871365725994, -0.009525223635137081, -0.01946190372109413, -0.023247307166457176, -0.01686972752213478, 0.019557911902666092, 0.04731752723455429, 0.003517955308780074, -0.02308272384107113, 0.025729762390255928, 0.04133768752217293, 0.00594555027782917, 0.009079478681087494, -0.04218803346157074, -0.014798727817833424, -0.007406221702694893, -0.0182001031935215, 0.020106520503759384, -0.021368321031332016, -0.05310535058379173, -0.026497814804315567, -0.0260314978659153, -0.003072210354730487, 0.02811621129512787, 0.0032659380231052637, 0.004875762388110161, -0.011795093305408955, 0.023713624104857445, 0.027430450543761253, 0.08179759979248047, -0.002977918367832899, -0.024673691019415855, -0.004286007955670357, 0.04128282889723778, -0.011507074348628521, -0.005386654753237963, 0.021258598193526268, -0.001557535259053111, -0.01540219783782959, -0.03818318620324135, 0.011609937995672226, 0.011472785845398903, 0.0017084027640521526, -0.005678103305399418, -0.009285207837820053, 0.013859234750270844, 0.04899078607559204, 0.02531830593943596, 0.007762817665934563, 0.016142820939421654, -0.027320727705955505, 0.0020812854636460543, -0.016074243932962418, -0.021409466862678528, -0.013612360693514347, 0.007083913777023554, -0.008537727408111095, 0.004059706814587116, 0.022300956770777702, -0.022479254752397537, -0.002753331558778882, -0.009991541504859924, 0.019585341215133667, -0.0023367314133793116, -0.02165633998811245, 0.00384369189850986, 0.0016158249927684665, 0.014826158061623573, -0.005321507342159748, -0.016046812757849693, 0.002569890348240733, -0.00807826779782772, -0.007077055983245373, 0.01062244176864624, 0.007255353964865208, -0.03859464451670647, -0.0072896420024335384, -0.017857223749160767, -0.021779777482151985, -0.003039636882022023, 0.020106520503759384, -0.04970397800207138, -0.00859258882701397, -0.028075065463781357, 0.016074243932962418, -0.006398152559995651, -0.010985895060002804, -0.04479392617940903, -0.014455847442150116, -0.004457448143512011, 0.022451823577284813, -0.01895444095134735, 0.04270921275019646, -0.016197681427001953, 0.020764850080013275, 0.0037956885062158108, 0.013420348055660725, -0.03390403836965561, 0.01014240924268961, 0.001689544296823442, -0.022246094420552254, -0.0019544195383787155, -0.01671885885298252, -0.007968545891344547, 0.015292475931346416, -0.007426794618368149, 0.00500605721026659, -0.01763777993619442, -0.01263172272592783, -0.007008479908108711, -0.0006621882203035057, 0.04122796654701233, 0.03574187681078911, 0.005660959053784609, -0.006007268559187651, 0.00932635273784399, 0.03741513565182686, 0.0008370573632419109, 0.05815255641937256, -0.005849543493241072, -0.004882620181888342, 0.026442954316735268, 0.008345714770257473, 0.021011725068092346, 0.014058105647563934, -0.03535785153508186, -0.019242461770772934, -0.006579879205673933, -0.03151758760213852, 0.04026789963245392, -0.015731362625956535, -0.005990124773234129, 0.02984433062374592, -0.03711339831352234, 0.01769264042377472, 0.0034545224625617266, -0.019585341215133667, 0.030255787074565887, 0.0017881224630400538, 0.006182137876749039, -0.01136306393891573, 0.03892380744218826, -0.027485311031341553, -0.013029463589191437, -0.00894232653081417, 0.0029607743490487337, -0.031133560463786125, 0.010162982158362865, 0.032505083829164505, -0.0198184996843338, -0.005671245511621237, 0.03576930612325668, 0.00550323398783803, -0.0074816555716097355, 0.05417513847351074, -0.006230141036212444, 0.03579673916101456, -0.010889888741075993, 0.02363133244216442, -0.0018978442531079054, -0.013550642877817154, -0.0018584129866212606, -0.014428417198359966, -0.013132328167557716, 0.02479712665081024, -0.02252040058374405, 0.004430017899721861, -0.003699681954458356, -0.008578873239457607, 0.00196299166418612, -0.004745468031615019, 0.004944338463246822, -0.0180903822183609, -0.013756371103227139, 0.003079068148508668, 0.0039774151518940926, -0.01728118397295475, -0.02622351050376892, -0.0037065395154058933, -0.02216380462050438, 0.02907627820968628, 0.008530870079994202, 0.021930644288659096, 0.022396963089704514, -0.004971769172698259, 0.006439298391342163, -0.0008966328459791839, 0.015525635331869125, -0.012549431063234806, -0.006123848259449005, 0.015196469612419605, 0.003699681954458356, -0.0233295988291502, 0.023727338761091232, -0.014935879968106747, -0.01621139608323574, 0.012089971452951431, 0.016993163153529167, -0.0006801894633099437, -0.010608727112412453, -0.010917318984866142, 0.038457490503787994, 0.006267857737839222, -0.04021304100751877, -0.011184765957295895, -0.002804763615131378, 0.026950417086482048, -0.045013368129730225, -0.019832216203212738, 0.013920953497290611, 0.023343313485383987, -0.02496170997619629, -0.023754769936203957, 0.012110543437302113, -0.0020761422347277403, 0.01859784498810768, 0.002257868880406022, 0.03415090963244438, -0.0004161713586654514, 0.010574438609182835, 0.010128693655133247, 0.007886254228651524, 0.0007641952252015471, 0.005935263819992542, -0.04218803346157074, 0.022657552734017372, 0.01204882562160492, 0.037085969001054764, 0.012192835099995136, -0.013194046914577484, -0.018666421994566917, -0.01100646797567606, -0.026909271255135536, -0.0379088819026947, -0.0198184996843338, -0.018776142969727516, -0.010320707224309444, -0.012131116352975368, 0.0007080485229380429, 0.02032596431672573, 0.02083342708647251, 0.00948407780379057, 0.021532904356718063, 0.004666605498641729, -0.042928654700517654, -0.014510707929730415, 0.004553454928100109, -0.005451802164316177, -0.0347818098962307, 0.000606898742262274, -0.012384848669171333, 0.027691040188074112, -0.021162591874599457, 0.002139575080946088, 0.0046426039189100266, 0.015182754024863243, -0.017171461135149002, 0.02978946827352047, -0.05689075589179993, 0.010732163675129414, 0.006610738579183817, 0.011527646332979202, -0.020627697929739952, -0.014894734136760235, -0.013482066802680492, -0.003180217929184437, -0.017322329804301262, -0.0009566369699314237, -0.019448189064860344, 0.0007967688725329936, 0.012487712316215038, 0.011980249546468258, -0.005342080257833004, 0.0006647598347626626, 0.03475438058376312, -0.027814475819468498, -0.019599057734012604, -0.02201293595135212, -0.012604291550815105, -0.0014872447354719043, 0.0035453857854008675, -1.912630978040397e-05, -0.006552448961883783, 0.008558300323784351, -0.010080690495669842, -0.012007679790258408, -0.007941115647554398, 0.005071204621344805, -0.020819712430238724, 0.005472375079989433, -0.04213317111134529, 0.012535715475678444, -0.010759593918919563, 0.023658763617277145, 0.026086358353495598, -0.008194847032427788, -0.021738631650805473, -0.04133768752217293, -0.003379088593646884, -0.001302089192904532, 0.022479254752397537, -0.005623242352157831, 0.0004386728978715837, -0.05006057024002075, 0.006425582803785801, 0.003847120562568307, -0.004786613397300243, 0.005564952734857798, -0.017240038141608238, -0.007666810881346464, 0.034178342670202255, 0.018940726295113564, 0.016691429540514946, 0.019091593101620674, 0.002665896899998188, -0.020463116466999054, 0.013680936768651009, -0.009614372625946999, -0.015319906175136566, 0.04473906382918358, 0.011116189882159233, -0.008386860601603985, 0.01977735385298729, 0.00035230984212830663, 0.050088003277778625, -0.024618828669190407, 0.010313848964869976, 0.013996386900544167, 0.00524950260296464, 0.008839462883770466, 0.033108554780483246, 0.007344502955675125, 0.008853177540004253, 0.004107709974050522, 0.024879418313503265, -0.0002927343302872032, 0.03829290717840195, -0.004224289208650589, -0.022492969408631325, -0.012028252705931664, 0.007954830303788185, -0.018474407494068146, -0.04600086435675621, 0.00265561044216156, 0.007186777889728546, -0.01671885885298252, -0.013578073121607304, 0.021272314712405205, 0.03516583889722824, 0.012103686109185219, 0.0020915719214826822, -0.019448189064860344, -0.03843006119132042, 0.05442201346158981, 0.00017401191871613264, 0.03234050050377846, -0.007447367068380117, -0.000383597711334005, -0.009086336940526962, 0.032806817442178726, 0.00500605721026659, 0.038814086467027664, -0.05236472934484482, 0.037442564964294434, 0.04051477462053299, -0.007262211758643389, 0.025455458089709282, 0.0020212812814861536, -0.004165999591350555, -0.024125080555677414, 0.0026590393390506506, -0.006453013513237238, 0.0011889386223629117, 0.010773309506475925, 0.03949984908103943, -0.0029933478217571974, 0.02785562165081501, 0.012336845509707928, 0.012823735363781452, 0.017528057098388672, 0.021368321031332016, 0.022232379764318466, -0.006082702428102493, -0.02475598081946373, -0.0233844593167305, -0.015950806438922882, -0.00223729619756341, 0.020600268617272377, -0.02967974729835987, -0.024234803393483162, 0.021971790120005608, -0.003919125534594059, 0.023562757298350334, 0.0016741147264838219, -0.004601458087563515, -0.025894345715641975, -0.022438108921051025, -0.010354994796216488, 0.017610348761081696, 0.0007839108584448695, 0.006881614215672016, -0.018227534368634224, -0.015237615443766117, 0.0014418130740523338, -0.04468420520424843, -0.030968979001045227, -5.0039143388858065e-05, -0.04133768752217293, -0.015991952270269394, 0.040130749344825745, 0.0016415410209447145, -0.013002033345401287, -0.034891534596681595, 0.04056963697075844, -0.014414701610803604, 0.005513520445674658, -0.005276932846754789, 0.03634534776210785], [0.01605742983520031, 0.011659033596515656, 0.05451386049389839, 0.054776448756456375, -0.012820998206734657, 0.04416777938604355, -0.022385869175195694, 0.018827764317393303, 0.0009962039766833186, 0.05734984204173088, -0.0053338767029345036, -0.017934955656528473, 0.013786019757390022, 0.016254372894763947, -0.01360220555216074, 0.004470609128475189, 0.00870488677173853, 0.04574332386255264, -0.020757805556058884, 0.004664269741624594, 0.06932398676872253, 0.025182461366057396, -0.020324531942605972, 0.0035384115763008595, -0.07179233431816101, -0.06969161331653595, -0.01091064978390932, -0.010976297780871391, 0.035292208194732666, -0.07725422829389572, 0.07237003743648529, -0.03718286380171776, 0.022700978443026543, -0.040780358016490936, -0.0027375095523893833, -0.0173835139721632, 0.0020153848454356194, -0.026232825592160225, 0.021637486293911934, 0.04860556498169899, 0.011403007432818413, -0.0019513781880959868, -0.022517165169119835, 0.0025290781632065773, -0.014087999239563942, 0.029830319806933403, 0.0031707845628261566, -0.056982215493917465, 0.009085643105208874, 0.013628465123474598, 0.033664148300886154, 0.06816858053207397, -0.0018906540935859084, -0.04500807076692581, 0.004106264561414719, 0.005852493457496166, 0.010293561033904552, 0.05304335057735443, 0.008376647718250751, -0.04280230775475502, 0.016976498067378998, -0.04211957007646561, -0.017357254400849342, -0.0017002756940200925, 0.022175796329975128, 0.00048743427032604814, -0.0032889503054320812, 0.008560461923480034, -0.038863446563482285, -0.03579113259911537, 0.04755520075559616, 0.036473870277404785, 0.030854424461722374, -0.015689803287386894, -0.001477073528803885, -0.006482711527496576, -0.04201453551650047, 0.008731145411729813, -0.01603117026388645, -0.013641594909131527, -0.02883247472345829, 0.02673174813389778, -0.010785918682813644, -0.033664148300886154, 0.013996091671288013, -0.016411928460001945, -0.05808509513735771, -0.004230995196849108, -0.02526124007999897, 0.002353470539674163, -0.04196201637387276, 0.0002884396235458553, -0.06239158660173416, 0.039467405527830124, 0.008658933453261852, -0.03833826258778572, 0.0341368094086647, -0.03106449730694294, -0.023725083097815514, 0.018670208752155304, -0.017462290823459625, -0.03584365174174309, -0.023541269823908806, 0.013241142965853214, 0.021177951246500015, -0.007726735435426235, 0.0009125031647272408, 0.04261849448084831, 0.012945728376507759, -0.03584365174174309, 0.03017168864607811, -0.03978251293301582, -0.020692158490419388, 0.06354698538780212, -0.012046354822814465, -0.004880907479673624, -0.033375296741724014, -0.012715961784124374, 0.036053724586963654, 0.015217139385640621, -0.04653109982609749, -0.015217139385640621, 0.03668393939733505, -0.05162535980343819, 0.024631021544337273, -0.05306961014866829, -0.010497068986296654, -0.003958556801080704, -0.06711822003126144, -0.030723128467798233, 0.054618895053863525, -0.026508545503020287, 0.053726088255643845, -0.039178553968667984, -0.01248619519174099, -0.009177549742162228, -0.020324531942605972, -0.03495084121823311, 0.0015517477877438068, -0.006906139198690653, 0.015926135703921318, 0.03552854061126709, 0.02421087585389614, 0.035265952348709106, -0.04844801127910614, -0.007076823152601719, 0.011153546161949635, 0.007162165362387896, 0.031852271407842636, -0.01918226107954979, 0.002018667059019208, 0.03119579330086708, -0.0020285143982619047, -0.014114257879555225, 0.008882135152816772, 0.01039203256368637, 0.017724882811307907, 0.0641246810555458, 0.021663744002580643, 0.0008837823406793177, -0.040202658623456955, -0.014705087058246136, -0.019497370347380638, -0.003554823575541377, 0.00794993806630373, 0.006722325459122658, -0.012151391245424747, 0.02691556140780449, -0.03846956044435501, -0.03904725983738899, -0.03274507820606232, -0.03106449730694294, -0.04542821645736694, 0.016608871519565582, -0.02585206925868988, -0.044666703790426254, 0.0221626665443182, 0.01523026917129755, 0.004112828988581896, 0.01813189871609211, 0.0011504761641845107, 0.009249762631952763, -0.11406946182250977, -0.015545378439128399, -0.01664825901389122, 0.026495415717363358, 0.0029114759527146816, -0.003032924374565482, -0.045848362147808075, 0.006712478585541248, -0.001068416517227888, 0.020153846591711044, 0.02930513769388199, 0.018197545781731606, -0.001877524540759623, 0.00649912329390645, -0.03303392976522446, 0.011258582584559917, 0.023541269823908806, -0.026994338259100914, 0.015860486775636673, -0.0526232048869133, 0.02392202615737915, -0.008468554355204105, -0.03629005327820778, 0.004552668891847134, -0.03597494587302208, 0.017462290823459625, 0.011468655429780483, -0.04944585636258125, 0.01618872582912445, -0.030644351616501808, -0.00474961195141077, 0.02423713542521, 0.013694112189114094, 0.012098873034119606, -0.04802786558866501, 0.029751542955636978, -0.0011307818349450827, 0.03534472733736038, -0.018473265692591667, 0.03224615752696991, -0.003059183247387409, -0.03726164251565933, -0.03594868630170822, -0.003390704281628132, 0.03132708743214607, -0.06864124536514282, 0.005064720753580332, -0.05960812047123909, 0.025615736842155457, -0.0058853174559772015, 0.013431522063910961, -0.02778211236000061, -0.0019218367524445057, -0.02746700309216976, 0.003932297695428133, -0.019838739186525345, 0.0413055419921875, 0.024197746068239212, 0.04164690896868706, -0.004188323859125376, -0.008094362914562225, 0.004634728655219078, 0.027703333646059036, -0.007752994541078806, -0.00039675834705121815, -0.03972999379038811, 0.0199306458234787, 0.018394488841295242, 0.019418593496084213, 0.025353146716952324, 0.07772689312696457, -0.07819955050945282, -0.03387421742081642, 0.016083689406514168, -0.0054257833398878574, -0.058767832815647125, -0.021493060514330864, 0.00542906578630209, -0.02614091895520687, -0.014875771477818489, 0.004693811293691397, -0.02197885327041149, -0.07725422829389572, -0.015637284144759178, -0.036342572420835495, 0.0010930343996733427, -0.035292208194732666, 0.04626850783824921, -0.02346249297261238, 0.011389877647161484, 0.01725221797823906, -0.04240842163562775, -0.06738080829381943, 0.030959460884332657, 0.0028162868693470955, 0.00059985596453771, -0.004989225883036852, -0.02155870757997036, -0.045086849480867386, -0.02020636573433876, -0.042881086468696594, -0.05351601541042328, 0.022674718871712685, 0.010286996141076088, -0.016530094668269157, -0.03358536958694458, -0.012729091569781303, -0.00358436512760818, 0.07326284795999527, 0.00029479924705810845, 0.0063153100199997425, -0.00973555538803339, 0.05603688582777977, 0.02899003028869629, -0.0010224630823358893, 0.003554823575541377, -0.0333227775990963, -0.004424655809998512, 0.0070374347269535065, 0.020140718668699265, -0.004477174021303654, -0.0440102256834507, -0.05175665766000748, 0.010155701078474522, 0.005744174588471651, -0.0112848412245512, -0.021072914823889732, 0.0016805813647806644, -0.029515210539102554, 0.05052248015999794, -0.024788575246930122, -0.040045104920864105, -0.04248720034956932, 0.0012054560938850045, -0.007693911902606487, 0.030197948217391968, 0.006364545784890652, 0.0034169633872807026, 0.008875570259988308, 0.007464144844561815, 0.018210675567388535, -0.005941118113696575, -0.0038141319528222084, -0.02780837006866932, -0.003620471339672804, 0.025510700419545174, -0.048369232565164566, -0.04206705465912819, -0.016713907942175865, -0.002565184375271201, 0.0492883026599884, -0.004158782307058573, -0.04886815696954727, -0.03161593899130821, -0.015939263626933098, 0.02109917439520359, 0.018381359055638313, 0.01373350154608488, 0.017422903329133987, -0.027992183342576027, -0.015991782769560814, 0.003041130257770419, -0.02583893947303295, 0.04760771989822388, 0.018184415996074677, 0.017882436513900757, -0.017120923846960068, 0.023869507014751434, 0.0163462795317173, 0.03001413308084011, -0.062339067459106445, -0.005520972423255444, -0.06076352298259735, 0.007477274164557457, 0.022635331377387047, 0.013122977688908577, -0.006223402917385101, -0.0029804061632603407, 0.005182886961847544, -0.005136933643370867, 0.03776056319475174, 0.023409973829984665, 0.040491510182619095, -0.016136206686496735, -0.041095469146966934, 0.0008300332701765001, 0.04949837550520897, -0.03487206622958183, 0.03487206622958183, 0.05243939161300659, 0.01462631020694971, -0.007903984747827053, -0.0030345653649419546, -0.009125031530857086, 0.01366785354912281, 0.028018442913889885, -0.007194989360868931, 0.016608871519565582, -0.0001454507146263495, 0.025366276502609253, 0.0034268104936927557, 0.023213030770421028, 0.014678828418254852, 0.037235382944345474, -0.05128399282693863, -0.03802315518260002, -0.01989125646650791, 0.015584766864776611, 0.017304737120866776, -0.007595440372824669, -0.03757674992084503, 0.05409371480345726, -0.06081603839993477, 0.022530294954776764, -0.0002792079176288098, 0.009820898063480854, 0.03408429026603699, 0.023147383704781532, 0.005993635859340429, -0.050023555755615234, -0.021663744002580643, 0.020403308793902397, -0.04282856732606888, 0.008750840090215206, -0.04553325101733208, -0.012597795575857162, -0.02200511284172535, 0.004273666068911552, 0.023685693740844727, 0.023725083097815514, 0.05913545936346054, -0.01693710871040821, 0.02316051349043846, -0.005898446775972843, -0.037077829241752625, 0.048526789993047714, -0.01331335585564375, -0.04114798456430435, 0.05138902738690376, 0.03432062268257141, 0.005898446775972843, -0.03518717363476753, -0.04133179783821106, 0.05243939161300659, 0.06034337729215622, -0.03193104639649391, 0.001543541788123548, -0.08528950810432434, -0.01373350154608488, 0.017777400091290474, 0.0123220756649971, 0.023436233401298523, -0.04230338707566261, -0.047476425766944885, 0.03327025845646858, 0.016280632466077805, 0.0038371088448911905, -0.03728789836168289, -0.0036336008924990892, -0.03400551527738571, 0.0165038350969553, -0.019707443192601204, -0.005987071432173252, 0.015663543716073036, 0.009847156703472137, -0.0065450770780444145, -0.021519320085644722, -0.0021204210352152586, 0.00013816791761200875, 0.011626210063695908, -0.06223402917385101, -0.01085813157260418, -0.011114157736301422, 0.009157855994999409, -0.008192834444344044, -0.05440882220864296, 0.0216900035738945, -0.0347670279443264, -0.00019109639106318355, 0.05228183791041374, 0.07100456207990646, 0.04343252629041672, 0.011567126959562302, -0.018013732507824898, -0.02287166193127632, -0.02258281223475933, -0.0029886120464652777, -0.008737710304558277, 0.015309046022593975, -0.031169533729553223, -0.051362767815589905, -0.011547432281076908, 0.031143274158239365, -0.014298071153461933, -0.022989828139543533, -0.04408900439739227, -0.00221068668179214, -0.011475220322608948, -0.0002131499204551801, 0.06722325831651688, -0.06228654831647873, -0.021755652502179146, 0.06291676312685013, -0.02379073016345501, 0.03741919621825218, 0.019287297502160072, -0.01278817467391491, -0.01576858013868332, -0.019970033317804337, 0.007444450631737709, 0.03266629949212074, -0.01420616451650858, 0.02082345448434353, 0.003581082681193948, -0.04416777938604355, 0.005324029363691807, 0.02914758399128914, 0.0178561769425869, 0.030092911794781685, -0.07615134865045547, 0.017344124615192413, 0.03920481353998184, 0.020626511424779892, -0.008960912935435772, 0.0037320724222809076, -0.015256527811288834, -0.026508545503020287, 0.01708153448998928, -0.06023833900690079, 0.025064297020435333, 0.02733570709824562, -0.0006335003999993205, -0.02021949551999569, -0.008205964230000973, 0.020153846591711044, -0.03468824923038483, -0.037392936646938324, 0.024079579859972, -0.004516562446951866, -0.025628866627812386, 0.011179805733263493, 0.009630518965423107, -0.013996091671288013, 0.014389978721737862, -0.013431522063910961, -0.031747233122587204, -0.01137674879282713, 0.009551742114126682, 0.021768780425190926, -0.033952996134757996, -0.03119579330086708, 0.03563357889652252, -0.00464785797521472, 0.0051205214112997055, -0.007234377786517143, -0.0014278377639129758, -0.004877625033259392, -0.041253022849559784, 0.036788977682590485, 0.008133751340210438, -0.0012711038580164313, 0.029042547568678856, -0.0018512654351070523, -0.015702933073043823, 0.02259594202041626, 0.019825609400868416, 0.0052912053652107716, 0.013615335337817669, 0.00036065210588276386, 0.016464445739984512, 0.008744275197386742, -0.03636883199214935, -0.006912704091519117, 0.006932398304343224, -0.010989426635205746, -0.05259694531559944, 0.01706840470433235, -0.01425868272781372, -0.02835981175303459, 0.016989627853035927, 3.638832276919857e-05, -0.0026603734586387873, 0.001210379647091031, 0.0023616764228791, 0.021335506811738014, 4.6440625737886876e-05, -0.02364630624651909, 0.012466500513255596, 0.017278477549552917, -0.010877826251089573, 0.02126985788345337, -0.023147383704781532, 0.03907351940870285, 0.017344124615192413, 0.013943574391305447, -0.037655528634786606, 0.04238216206431389, 0.029462693259119987, -0.027545779943466187, 0.03773430362343788, -0.03208860009908676, -0.005369982682168484, -0.025628866627812386, 0.024118969216942787, -0.011790328659117222, -0.022530294954776764, -0.01062180008739233, 0.01494141947478056, 0.015492860227823257, 0.0004238380352035165, 0.009170984849333763, 0.001774129457771778, 0.006318592466413975, 0.03392673656344414, 0.014744476415216923, -0.004939990118145943, -0.004483738914132118, 0.003315209411084652, -0.005599749740213156, -0.004562515765428543, 0.0033480331767350435, 0.0019087071996182203, -0.0368414968252182, 0.007602004799991846, 0.019234780222177505, -0.010181959718465805, 0.04920952394604683, 0.020416438579559326, 0.0069914814084768295, 0.019405463710427284, -0.002486407058313489, -0.04650484025478363, -0.0025602607056498528, 0.010562716983258724, -0.03384796157479286, -0.031117014586925507, 0.0016493987059220672, 0.013431522063910961, -0.025773292407393456, -0.003249561646953225, -0.007109647151082754, -0.018381359055638313, -0.023068604990839958, -0.005721197929233313, -0.023081734776496887, -0.026495415717363358, -0.025970235466957092, -0.01617559604346752, -0.038994740694761276, -0.0035121524706482887, -0.031143274158239365, -0.02793966606259346, 0.018932800740003586, -0.016018042340874672, -0.0008443936822004616, -0.01047737430781126, 0.008612980134785175, 0.01797434315085411, 0.04146309569478035, 0.02870117872953415, 0.03521343320608139, -0.02838607132434845, 0.04485051706433296, 0.026350991800427437, -0.0006257047643885016, 0.03673645853996277, -0.0035745177883654833, 0.0012825921876356006, -0.0033004386350512505, 0.0004611751646734774, -0.019956903532147408, -0.02182129956781864, 0.019851867109537125, 0.015794839709997177, -0.02334432676434517, 0.025090554729104042, 0.0019907669629901648, 0.01872272789478302, -0.03925733268260956, 0.018604561686515808, -0.0019234779756516218, 0.04387893155217171, 0.024118969216942787, -0.023856379091739655, 0.0309332013130188, -0.018985318019986153, 0.004624881315976381, 0.020455826073884964, -0.04944585636258125, -0.012932599522173405, 0.04976096376776695, -0.037655528634786606, -0.008724580518901348, -0.02078406512737274, -0.026259085163474083, 0.005799975246191025, -0.027703333646059036, 0.015072714537382126, -0.010457680560648441, -0.0007504353998228908, -0.01784304715692997, -0.008416037075221539, -0.019352944567799568, -0.02883247472345829, 0.030381761491298676, -0.024762317538261414, 0.005415936000645161, 0.011481785215437412, -0.0014335819287225604, 0.02570764347910881, -0.0017839765641838312, 0.010897519998252392, 0.019116614013910294, 0.06307432055473328, 0.006197143811732531, -0.0002279206528328359, -0.030670611187815666, -0.08061538636684418, 0.030119169503450394, -0.010011276230216026, -0.008370082825422287, -0.05322716385126114, -0.05107391998171806, 0.002722738776355982, -0.041253022849559784, -0.010063794441521168, 0.06449231505393982, -0.022832274436950684, -0.03355911001563072, -0.00464785797521472, -0.07152974605560303, -0.0006544256466440856, -0.005678527057170868, -0.010667753405869007, 0.0019284015288576484, -0.03214111924171448, -0.01827632263302803, 0.014245553873479366, -0.03631631284952164, 0.023226160556077957, -0.053594790399074554, -0.019497370347380638, 0.016766425222158432, -0.0014836383052170277, -0.0006322695408016443, 0.014783864840865135, 0.013523428700864315, -0.008429165929555893, 0.024184616282582283, -0.02822851575911045, -5.477480954141356e-05, -0.004775871057063341, -0.022202055901288986, 0.005783563479781151, -0.03458321467041969, -0.015256527811288834, -0.03676271811127663, -0.010273867286741734, -0.015256527811288834, -0.04062280431389809, -0.009781508706510067, -0.000523950788192451, 0.010241042822599411, -0.014087999239563942, -0.011166675947606564, 0.03731415793299675, 0.025234980508685112, -0.004073440562933683, -0.024027062579989433, 0.0113636190071702, -0.011823153123259544, -0.01814502663910389, -0.0016444751527160406, 0.014534403569996357, 0.0016182160470634699, 0.01919539086520672, -0.02480170503258705, 0.040649063885211945, 0.004687246400862932, 0.015847356989979744, -0.003326697740703821, 0.03521343320608139, 0.01159995049238205, -0.019812479615211487, -0.01336587406694889, 0.003352956846356392, 0.04314367473125458, -0.005136933643370867, -0.02555008977651596, 0.01337900385260582, 0.0022697695530951023, 0.023843249306082726, 0.03182601183652878, -0.0016617076471447945, -0.01919539086520672, 0.00579341035336256, -0.00044558383524417877, -0.01947111077606678, 0.03836452215909958, -0.01529591716825962, -0.002680067904293537, -0.004076723009347916, 0.029095066711306572, 0.0029771237168461084, -0.012217039242386818, -0.03728789836168289, 0.0031888375524431467, -0.01003753487020731, -0.04353756085038185, 0.0011874029878526926, -0.017580457031726837, -0.016149336472153664, -0.02275349758565426, 0.004818541929125786, 0.022359611466526985, -0.049708448350429535, -0.04553325101733208, 0.01427181251347065, -0.01368098333477974, -0.01301137637346983, -0.0067485845647752285, -0.0009125031647272408, 0.10220035910606384, -0.02274036779999733, -0.03489832207560539, -0.0010725194588303566, -0.016136206686496735, 0.005356853362172842, -0.03481954708695412, 0.03636883199214935, -0.018959058448672295, 0.003267614869400859, -0.023409973829984665, -0.0007836695294827223, 0.014915159903466702, -0.011915059760212898, 0.001497588469646871, 0.02096787840127945, 0.015282787382602692, -0.02092849090695381, -0.004339313600212336, 0.002565184375271201, 4.548540346149821e-06, -0.0019398898584768176, 0.02065277099609375, -0.0029426587279886007, 0.0031970436684787273, 0.009919369593262672, 0.0007020201883278787, -0.007398497313261032, -0.009978451766073704, 0.009939063340425491, 0.007510098163038492, -0.0381019301712513, -0.02959398925304413, -0.014705087058246136, 0.0178561769425869, -0.01462631020694971, 0.03342781588435173, -0.012210474349558353, -0.0406753234565258, -0.037655528634786606, -0.026337862014770508, -0.02600962296128273, -0.004316336940973997, 0.042592234909534454, 0.001020001363940537, 0.02930513769388199, -0.016241243109107018, -0.03702531009912491, 0.005274793598800898, -0.046005915850400925, 0.01373350154608488, -0.005071285646408796, 0.01651696488261223, -0.036920271813869476, 0.024565374478697777, -0.0007118673529475927, -0.018801504746079445, 0.013168931007385254, 0.022924181073904037, -0.02988283894956112, 0.011777199804782867, 0.00775955943390727, 0.02648228593170643, -0.009860286489129066, 0.029909096658229828, -0.00862610898911953, 0.02066589891910553, -0.01781678944826126, 0.02170313335955143, -0.005911576561629772, -0.02648228593170643, -0.01316236611455679, -0.033506590873003006, 0.03122205100953579, 0.03671019896864891, 0.010943473316729069, 0.008534202352166176, 0.026193436235189438, 0.009046254679560661, 0.000933838717173785, -0.015978652983903885, -0.0024535832926630974, -0.022320222109556198, 0.034845806658267975, 0.031904786825180054, 0.00104872218798846, -0.020166976377367973, 0.004132523667067289, 0.016569482162594795, 0.02318677119910717, 0.011278277263045311, 0.014179905876517296, -0.03776056319475174, 0.00743132084608078, -0.004792282823473215, 0.006325156893581152, -0.04290734604001045, 0.009623954072594643, 0.03384796157479286, 0.0033381860703229904, 0.006449887529015541, 0.002476559951901436, 0.009052819572389126, -0.002115497598424554, 0.041095469146966934, -0.006364545784890652, 0.025445053353905678, -0.017304737120866776, -0.041673168540000916, -0.03182601183652878, 0.015729190781712532, 0.004706941079348326, -0.002343623200431466, 0.017632976174354553, 0.04758146032691002, -0.012525583617389202, 0.06438727676868439, 0.0028835756238549948, 0.022504035383462906, 0.008041844703257084, 0.02348875068128109, -0.014298071153461933, 0.009026560001075268, -0.0008993736701086164, 0.006508970633149147, -0.043301232159137726, 0.0011209347285330296, 0.026692358776926994, 0.042749788612127304, 0.06433475762605667, -0.00041973506449721754, 0.004746329504996538, -0.008205964230000973, 0.0032233025413006544, 0.02896377071738243, -0.004007792565971613, 0.011192934587597847, -0.010175395756959915, 0.013372438959777355, -0.06407216936349869, 0.00808779802173376, -0.025143073871731758, -0.012276122346520424, 0.004871060140430927, 0.0061314962804317474, 0.019431723281741142, 0.019523629918694496, -0.013772889971733093, 0.007457579951733351, -0.003709095763042569, -0.06149877607822418, 0.003001741599291563, 0.03177349269390106, 0.0014828176936134696, 0.026180308312177658, -0.009998146444559097, 0.016897721216082573, 0.03925733268260956, -0.010359209030866623, -0.03001413308084011, 0.05131025239825249, 0.02778211236000061, 0.008304435759782791, 0.0007254072115756571, -0.022385869175195694, 0.04829045757651329, -0.021046657115221024, -0.010746530257165432, 0.050286147743463516, 0.02037704922258854, 0.001600162941031158, -0.014074869453907013, 0.026547934859991074, -0.00810092780739069, 0.015269657596945763, 0.006656677927821875, -0.017199700698256493, 0.031117014586925507, 0.044351592659950256, -0.015663543716073036, -0.014298071153461933, 0.021151693537831306, 0.0004316336999181658, -0.003860085504129529, 0.0013597282813861966, 0.01545347087085247, 0.029462693259119987, -0.01605742983520031, 0.01974683254957199, -0.009170984849333763, -0.014127387665212154, 0.031300827860832214, 0.021650616079568863, -0.0112848412245512, 0.02587832883000374, 0.03153716027736664, 0.026968080550432205, 0.010286996141076088, 0.029068807139992714, 0.009354799054563046, 0.0054093715734779835, 0.041410576552152634, 0.03061809204518795, 0.012177650816738605, -0.005954247433692217, 0.0011685292702168226, -0.005845928564667702, -0.015400953590869904, 0.011842846870422363, -0.020744677633047104, -0.0074247559532523155, -0.026337862014770508, -0.01751480996608734, -0.020298272371292114, -0.04114798456430435, 0.014836383052170277, 0.0013203396229073405, 0.00743132084608078, 0.013851666823029518, -0.012098873034119606, 0.010536457411944866, 0.004057028796523809, -0.02285853400826454, 0.014902030117809772, 0.060133304446935654, 0.007142471149563789, 0.013293661177158356, 0.039178553968667984, -0.004404961597174406, 0.04695124179124832, 0.006906139198690653, 0.02930513769388199, -0.003544976469129324, 0.005058156326413155, -0.01255840715020895, 0.030197948217391968, -0.024013932794332504, -0.009591130539774895, -0.020560862496495247, 0.058032575994729996, -0.0010076924227178097, -0.008271611295640469, -0.006571335718035698, -0.027703333646059036, 0.011127287521958351, 0.01486264169216156, -0.001134064164943993, 0.03728789836168289, -0.02066589891910553, 0.019392333924770355, 0.02543192356824875, -0.026941820979118347, -0.03862711414694786, 0.005212428513914347, -0.004034051671624184, 0.005018767435103655, 0.004057028796523809, -0.03348033130168915, -0.00021950952941551805, -0.007844901643693447, 0.027729593217372894, 0.001533694681711495, -0.019497370347380638, 0.050601255148649216, 0.03487206622958183, -0.00966334342956543, 0.006449887529015541, 0.012689702212810516, -0.0074378857389092445, 0.019694313406944275, 0.015847356989979744, 0.00343337538652122, -0.02841232903301716, -0.02749326080083847, -0.0023222877644002438, 0.023409973829984665, -0.010890955105423927, 0.0051500629633665085, -0.0008361877407878637, -0.014744476415216923, -0.02052147500216961, -0.04500807076692581, -0.00710308225825429, 0.012400852516293526, 0.007739865221083164, 0.014718216843903065, -0.036500126123428345, 0.013536558486521244, 0.02201824262738228, 0.013536558486521244, 0.004930143244564533, 0.006436758209019899, 0.0032233025413006544, -0.0022139691282063723, -0.014521273784339428, -0.011652468703687191, 0.019851867109537125, 0.0006568874232470989, -0.0033595217391848564, -0.010851566679775715, -0.004992508329451084, 0.013470910489559174, -0.007385367527604103, 0.011199499480426311, 0.04057028517127037, 0.023843249306082726, -0.010195089504122734, -0.003820696845650673, 0.006965222302824259, 0.0074969688430428505, 0.0323774516582489, 0.019733702763915062, -0.03996632620692253, 0.0024634303990751505, 0.004779153503477573, 0.016385668888688087, -0.009216939099133015, -0.026390379294753075, -0.04230338707566261, -0.0074969688430428505, 0.039467405527830124, -0.006860185880213976, -0.014823253266513348, 0.01588674634695053, 0.023134253919124603, 0.0037878728471696377, -0.004989225883036852, -0.019812479615211487, 0.016385668888688087, -0.0014664058107882738, 0.015821099281311035, 0.009315410628914833, -0.0218475591391325, -0.04324871301651001, -0.007930243387818336, -0.01589987613260746, -0.004601904656738043, 0.018223805353045464, -0.007969631813466549, -0.0035712355747818947, -0.0030641069170087576, -0.0042145829647779465, -0.004743047058582306, 0.07594127207994461, 0.00041132394107989967, -0.01515149138867855, 0.012387722730636597, 0.05041744187474251, -0.023593787103891373, -0.0027030445635318756, 0.005412654019892216, 0.01049050409346819, -0.005284640938043594, -0.0413055419921875, 0.01725221797823906, 0.031747233122587204, 0.005297770258039236, 0.009709296748042107, -0.02289792150259018, 0.03271881863474846, 0.04724009335041046, 0.00928258616477251, 0.02451285533607006, 0.003285667859017849, -0.03153716027736664, 0.0009929216466844082, -0.011823153123259544, -0.017724882811307907, -0.018538914620876312, 0.024000803008675575, -0.00024351198226213455, 0.023528140038251877, 0.01840761862695217, -0.01166559848934412, -0.016727037727832794, -0.003600776894018054, 0.011974142864346504, 0.004057028796523809, -0.011265147477388382, 0.006847056094557047, -0.02883247472345829, 0.01947111077606678, 0.018552042543888092, -0.03169471397995949, -0.01173124648630619, -0.00427038362249732, -0.009479529224336147, 0.009623954072594643, 0.012262992560863495, -0.004769306164234877, -0.02301608771085739, -0.006403934210538864, 0.00928258616477251, -0.012413982301950455, 0.005947682540863752, -0.02925262041389942, -0.025024907663464546, -0.034556955099105835, 0.02003568224608898, 0.002488048281520605, 0.0026324731297791004, -0.014849511906504631, -0.02614091895520687, -0.002332134870812297, 0.016228115186095238, -0.0377868227660656, 0.03342781588435173, -0.03240371122956276, 0.02318677119910717, -0.013589076697826385, -0.0072212484665215015, -0.0028261339757591486, -0.008685192093253136, -0.017120923846960068, -0.02301608771085739, 0.01143583096563816, 0.004805412609130144, 0.004884189926087856, 0.02375134266912937, -0.011265147477388382, 0.02883247472345829, -0.02259594202041626, -0.006180732045322657, -0.02614091895520687, -0.008514508605003357, 0.02423713542521, 0.015702933073043823, -0.004667552188038826, 0.020613381639122963, 0.0006412960938178003, 0.012610925361514091, 0.009840591810643673, 0.060711003839969635, -0.011120722629129887, -0.005432348232716322, 0.03256126493215561, -0.018236935138702393, 0.01725221797823906, 0.0030099474824965, -0.025681383907794952, -0.004930143244564533, -0.011199499480426311, -0.022661590948700905, 0.03303392976522446, 0.013175495900213718, -0.00039368111174553633, 0.008567026816308498, -0.015059584751725197, -0.005317464470863342, -0.029699023813009262, -0.020455826073884964, 0.010536457411944866, -0.008494813926517963, 0.005941118113696575, 0.00043983967043459415, 0.0395461805164814, -0.010365773923695087, -0.020114459097385406, -0.024013932794332504, -0.03896848112344742, -0.02275349758565426, -0.004204736091196537, 0.01486264169216156, -0.03271881863474846, -0.005432348232716322, 0.012538712471723557, 0.019300427287817, 0.024749187752604485, 0.031300827860832214, -0.015112102963030338, 0.02003568224608898, 0.004559233784675598, 0.00884274672716856, -0.00586890522390604, -0.00020884178229607642, 0.0026045730337500572, -0.025051167234778404, -0.013201754540205002, -0.00029459409415721893, 0.008488249033689499, 0.006906139198690653, -0.005068003199994564, 0.0003899884468410164, 0.012604360468685627, -0.004989225883036852, -0.0006622212822549045, -0.0036139064468443394, 0.0012825921876356006, 0.0020925207063555717, -0.003820696845650673, -0.013497169129550457, -0.02629847265779972, -0.0005169757059775293, -0.01886715181171894, -0.0030050240457057953, 0.007897419854998589, 0.055774297565221786, 0.03264004364609718, -0.01025417260825634, 0.018473265692591667, -0.005622726399451494, 0.0033595217391848564, -0.017173441126942635, 0.004388549365103245, 0.01234176941215992, -0.011192934587597847, 0.0010528251295909286, 0.020902231335639954, -0.014613180421292782, -0.017147181555628777, 0.013182060793042183, 0.016149336472153664, -0.0002876190410461277, -0.010411727242171764, -0.012715961784124374, 0.05041744187474251, 0.002609496470540762, -0.04175194352865219, -0.0140354810282588, -0.012991681694984436, 0.02661358192563057, -0.0663304477930069, -0.008639238774776459, 0.01990438625216484, 0.010464245453476906, -0.01188223622739315, -0.022031372413039207, -0.008612980134785175, -0.023961415514349937, 0.025471312925219536, -0.002008819952607155, 0.014993937686085701, -0.01277504488825798, 0.020009422674775124, 0.014087999239563942, 0.025970235466957092, 0.0004915372119285166, 0.02258281223475933, -0.04235590249300003, 0.03242997080087662, -0.007011175621300936, 0.037209123373031616, 0.021072914823889732, -0.0028737285174429417, -0.028018442913889885, -0.015190880745649338, -0.02287166193127632, -0.002514307387173176, -0.024998648092150688, 0.009400752373039722, -0.006430193316191435, 0.011442395858466625, 0.003195402445271611, 0.015190880745649338, -0.0015016914112493396, 0.024302782490849495, 0.06107863038778305, -0.009289151057600975, -0.01931355707347393, -0.020468955859541893, -0.014022351242601871, 0.0024913307279348373, -0.035292208194732666, -0.024604761973023415, -0.011160111054778099, 0.0496034100651741, -0.04172568395733833, 0.005031897220760584, 0.015282787382602692, -0.016858331859111786, 0.005192733835428953, 0.028175998479127884, -0.051809173077344894, 0.03676271811127663, 0.007227812893688679, -0.012236732989549637, -0.024880481883883476, -0.010851566679775715, -0.0025290781632065773, -0.01270939689129591, -0.009669908322393894, -0.016149336472153664, -0.021493060514330864, -0.029830319806933403, 0.02379073016345501, 0.02498551830649376, 0.001533694681711495, -0.005284640938043594, 0.042277127504348755, -0.028727438300848007, -0.02157183736562729, -0.016569482162594795, -0.0017872588941827416, -0.010877826251089573, -0.029200101271271706, -0.0035876473411917686, -0.017751140519976616, -0.010181959718465805, -0.00788429006934166, 0.012519018724560738, -0.0068076676689088345, 0.0003774743527173996, -0.009538612328469753, 0.009637083858251572, -0.03881092742085457, 0.02733570709824562, 0.005445477552711964, 0.022700978443026543, 0.025195591151714325, -0.008941218256950378, -0.017567327246069908, -0.021479930728673935, -0.005251816939562559, -0.010024406015872955, 0.0031100602354854345, -0.00013078254414722323, -0.030119169503450394, -0.01175094023346901, 0.0112848412245512, -0.0006815053056925535, -0.0030247182585299015, 0.013359309174120426, -0.014245553873479366, 0.0015066149644553661, 0.006436758209019899, 0.017357254400849342, 0.01123232301324606, 0.02421087585389614, -0.005688374396413565, -0.046137209981679916, -0.0057671512477099895, -0.008219093084335327, -0.00030628760578110814, 0.04025517776608467, 0.014967678114771843, 0.026863044127821922, 0.005182886961847544, -0.008199399337172508, 0.0475289449095726, 0.02762455679476261, 0.032167378813028336, 0.02793966606259346, -0.011626210063695908, -0.01062180008739233, -0.0037222253158688545, 0.0046741170808672905, 0.0060428716242313385, -0.0025372840464115143, 0.05333220213651657, 0.005123803857713938, 0.019983163103461266, -0.022674718871712685, -0.03875840827822685, 0.001553389010950923, 0.009985016658902168, -0.009518918581306934, -0.02644289843738079, 0.01242054719477892, 0.012164521031081676, -0.03221989795565605, -0.01870959810912609, 0.04104295000433922, 0.033690404146909714, 0.02201824262738228, 0.0013104924000799656, 0.0037222253158688545, -0.034268107265233994, 0.04634728282690048, -0.0003198274353053421, 0.00943357590585947, -0.020245755091309547, -0.01331335585564375, -0.009157855994999409, -0.0046445755288004875, -0.023449363186955452, 0.04934082180261612, -0.011192934587597847, 0.03697279095649719, 0.015440342016518116, 0.011777199804782867, 0.024722928181290627, 0.007188424468040466, -0.01427181251347065, -0.035581059753894806, -0.012433676980435848, -0.010063794441521168, 0.006308745127171278, -0.01047081034630537, 0.023659436032176018, -0.014376848936080933, 0.014495015144348145, 0.006938963197171688, 0.008639238774776459, 0.01947111077606678, 0.023278677836060524, 0.010982861742377281, -0.0014598410343751311, 0.007969631813466549, -0.027860889211297035, 0.02124360017478466, 0.004260536283254623, 0.037970636039972305, 0.0032561265397816896, -0.00013991168816573918, 0.035318467766046524, -0.0347670279443264, 0.026863044127821922, 0.013424957171082497, -0.00490060169249773, -0.010536457411944866, -0.008205964230000973, 0.0011094462824985385, 0.050916366279125214, 0.0009789714822545648, 0.00012832076754420996, 0.0022812578827142715, 0.006476146634668112, -0.019523629918694496, -0.07095205038785934, -0.02019323594868183, -0.0007184321293607354, -0.030539315193891525, -0.0029804061632603407, 0.03211485967040062, -0.018341969698667526, 0.008448860608041286, -0.03815444931387901, 0.024407818913459778, -0.025510700419545174, 0.027414483949542046, -0.0406753234565258, 0.036053724586963654], [-0.006067836191505194, 0.011987182311713696, 0.054536283016204834, 0.039741288870573044, -0.03061591275036335, 0.010583278723061085, 0.0045491899363696575, 0.007512237876653671, 0.020005635917186737, 0.04173915460705757, -0.0068845306523144245, -0.0190202035009861, 0.001704258844256401, -0.017670294269919395, -0.0441419892013073, 0.039039336144924164, 0.002477081026881933, 0.04608585685491562, 0.0010951128788292408, -0.01819675974547863, 0.06025988981127739, 0.022907938808202744, -0.001074864179827273, 0.02265145629644394, -0.03309974446892738, -0.01675235852599144, 0.006432311609387398, 0.010610276833176613, 0.017832284793257713, -0.05885598808526993, 0.09794931858778, -0.02089657448232174, 0.008801399730145931, -0.025081289932131767, 0.0052815149538218975, 0.04082121700048447, -0.03010294772684574, 0.002090669935569167, 0.012095175683498383, 0.012736381962895393, -0.011190736666321754, 0.04187414422631264, -0.049730610102415085, -0.004042974207550287, -0.03833738714456558, 0.050162579864263535, 0.04303506389260292, -0.006263572722673416, 0.02772710844874382, 0.02116655744612217, 0.005969967693090439, 0.028915029019117355, 0.01077901478856802, -0.037662431597709656, 0.04451996460556984, -0.0069587756879627705, 0.0010824574856087565, 0.01698184199631214, 0.019074199721217155, -0.010806012898683548, 0.012824125587940216, -0.04198213666677475, -0.024851804599165916, 0.030723905190825462, -0.005733733996748924, -0.01714383065700531, 0.006091459654271603, 0.014633001759648323, -0.040011271834373474, -0.004927163943648338, 0.041064199060201645, 0.031182873994112015, 0.015010976232588291, -0.03218180686235428, -0.004886666778475046, -0.031155874952673912, 0.014282026328146458, 0.0008398958598263562, -0.02894202619791031, 0.007937458343803883, -0.023164421319961548, 0.03183082863688469, 0.019303683191537857, 0.015645433217287064, -0.0006838127737864852, -0.009273868054151535, -0.05966593325138092, 0.006162329576909542, -0.07159911841154099, 0.012412403710186481, -0.027362633496522903, 0.03226279839873314, -0.027227643877267838, 0.0655515268445015, 0.04179314896464348, -0.017602799460291862, 0.042117126286029816, -0.017076335847377777, -0.016941344365477562, 0.027592118829488754, -0.0046234349720180035, -0.010374042205512524, 0.0218685083091259, 0.017089834436774254, 0.029589982703328133, -0.04138817638158798, -0.03552957624197006, 0.04635583981871605, -0.007100515998899937, -0.0375814363360405, -0.04581587761640549, -0.02205749601125717, -0.03382869437336922, 0.062311749905347824, -0.029373997822403908, -0.02921200729906559, -0.047894734889268875, 0.009908324107527733, 0.08245237916707993, 0.015766924247145653, -0.06722541898488998, 0.003189157461747527, 0.005777605809271336, -0.0787806287407875, 0.018642228096723557, -0.023758379742503166, -0.01017155684530735, -0.029266003519296646, -0.061177827417850494, -0.033639706671237946, 0.04524891451001167, -0.011602458544075489, 0.034773629158735275, -0.04905565455555916, -0.0003686936106532812, 0.0079847052693367, 0.003246528562158346, 0.00476517528295517, -0.010178306140005589, -0.042900074273347855, 0.021423039957880974, 0.013782559894025326, 0.008598913438618183, 0.018763720989227295, -0.06166379526257515, -0.01534845307469368, 0.03026493638753891, 0.06895329803228378, 0.018804218620061874, 0.0010385854402557015, -0.006665170658379793, 0.03531359136104584, -0.0223004799336195, -0.00868665799498558, 0.033639706671237946, 0.0037324954755604267, 0.013350589200854301, 0.07586482912302017, 0.012547394260764122, -0.02240847237408161, -0.0031165999826043844, -0.0183587484061718, -0.026147717610001564, 0.0005462908884510398, 0.042549099773168564, 0.016603868454694748, -0.031884826719760895, 0.044303979724645615, -0.06538954377174377, -0.08261436969041824, -0.033369723707437515, -0.06366165727376938, -0.07586482912302017, 0.007707974407821894, -0.010515782982110977, -0.04735477268695831, -0.02589123509824276, -0.030669908970594406, 0.014538508839905262, -0.010232302360236645, -0.021261049434542656, 0.004363577347248793, -0.06333768367767334, -0.041145194321870804, -0.06614548712968826, 0.03693348169326782, -0.012837624177336693, 0.03045392408967018, -0.024203849956393242, 0.008551666513085365, 0.015064972452819347, 0.047273777425289154, 0.024068858474493027, 0.023339908570051193, -0.027322137728333473, 0.03212780877947807, -0.0018645604141056538, 0.009145626798272133, -0.011568711139261723, 0.0106035266071558, 0.055778197944164276, -0.029158011078834534, 0.06258173286914825, -0.0030794774647802114, -0.040902212262153625, -0.025297274813055992, 0.0068710315972566605, -0.00029465960687957704, -0.002288094023242593, -0.021463535726070404, -0.021544530987739563, -0.05966593325138092, 0.00574048375710845, 0.0009061257005669177, -0.03955230116844177, 0.024581823498010635, -0.018493739888072014, 0.064795583486557, -0.02003263309597969, 0.0345306470990181, 0.023609889671206474, -0.004717928357422352, 0.013283094391226768, -0.009024134837090969, -0.014268526807427406, 0.03741944953799248, -0.012223416939377785, -0.034584641456604004, 0.016266390681266785, -0.054968252778053284, -0.009638343006372452, 0.009948821738362312, -0.014943481422960758, -0.008119696751236916, -0.012473149225115776, -0.041145194321870804, -0.028645046055316925, 0.003840488148853183, 0.016927845776081085, 0.032235801219940186, 0.055778197944164276, 0.009942072443664074, -0.008477422408759594, -0.004204963333904743, 0.006793411914259195, -0.0033899564296007156, -0.037824422121047974, -0.013526077382266521, 0.0349896140396595, 0.029778968542814255, 0.020923573523759842, 0.002537827007472515, 0.02178751491010189, -0.027511123567819595, 0.010353794321417809, 0.013478830456733704, -0.012783627957105637, -0.03396368399262428, 0.03466563671827316, -0.01011755969375372, -0.015280958265066147, -0.009233370423316956, -0.01671186089515686, 0.024851804599165916, -0.06673944741487503, -0.021018067374825478, 0.01862872950732708, -0.05364534258842468, -0.036798492074012756, 0.04209012910723686, -0.04730077460408211, 0.04009226709604263, 0.026390699669718742, -0.0030592288821935654, -0.022165488451719284, -0.004069972317665815, -0.0020670464728027582, -0.0231914184987545, 0.0053017633035779, -0.0009339675889350474, -0.027470625936985016, 0.002654256531968713, 0.02327241376042366, -0.017751289531588554, -0.0036717497278004885, 0.031452856957912445, -0.01933068223297596, -0.001905057579278946, -0.022273480892181396, 0.02772710844874382, 0.015361952595412731, -0.013188600540161133, -0.020140627399086952, -0.021220553666353226, 0.021693021059036255, 0.03172283619642258, -0.011379724368453026, -0.026080220937728882, -0.006172453984618187, 0.007276003714650869, 0.008538167923688889, 0.03247878700494766, -0.009550598450005054, -0.008936390280723572, -0.031182873994112015, 0.013485580682754517, 0.008247938007116318, 0.006061086896806955, -0.020707588642835617, -0.003914732951670885, -0.047111786901950836, -0.0057506076991558075, -0.005045280791819096, -0.021342044696211815, -0.06096184253692627, -0.012473149225115776, 0.009408858604729176, -0.017778288573026657, -0.02265145629644394, 0.003965354524552822, 0.018831215798854828, -0.004073347430676222, 0.048407699912786484, -0.0450599268078804, 0.024608822539448738, -0.029104014858603477, 0.023987865075469017, 0.014592505060136318, -0.0485696867108345, -0.025985728949308395, -0.04076721891760826, 0.009172624908387661, 0.019614161923527718, -0.010029816068708897, -0.01470049750059843, -0.009172624908387661, -0.0037831170484423637, 0.026539189741015434, 0.0036582504399120808, 0.014093038626015186, 0.021936004981398582, -0.028213076293468475, 0.0035266345366835594, -0.023056427016854286, -0.01505147386342287, 0.04784073680639267, 0.029185010120272636, 0.05089152976870537, 0.030372928828001022, 0.030561916530132294, -0.013283094391226768, 0.03347771614789963, -0.052268434315919876, 0.015996409580111504, -0.0769987478852272, 0.01605040580034256, -0.035043612122535706, -0.0016249517211690545, -0.02273244969546795, -0.027200644835829735, 0.006425561849027872, 0.010495534166693687, 0.012479899451136589, 0.024581823498010635, 0.004653807729482651, 0.026336703449487686, -0.009429107420146465, -0.0073165008798241615, 0.02655269019305706, -0.015955911949276924, 0.004400699865072966, 0.030750902369618416, -0.01850723847746849, -0.002279657172039151, -0.059341952204704285, -0.032586779445409775, -0.0122436648234725, 0.016954844817519188, -0.031452856957912445, 0.0002379212819505483, 0.02116655744612217, -0.0008588789496570826, 0.03350471705198288, -0.006756289396435022, 0.06814335286617279, 0.01984364725649357, -0.07402895390987396, -0.01503797434270382, 0.0011229546507820487, 0.01885821484029293, -0.002792621962726116, 0.037176463752985, -0.05097252503037453, 0.018520737066864967, -0.02378537878394127, 0.018291253596544266, 0.018372246995568275, 0.018966207280755043, 0.03847237676382065, 0.0018932458478957415, 0.007647228427231312, -0.015874916687607765, -0.017157329246401787, -0.04862368479371071, -0.02686316892504692, -0.02339390479028225, -0.04381801187992096, -0.01586141809821129, 0.02999495528638363, -0.012621639296412468, 0.04095620661973953, -0.004761800169944763, 0.05432029440999031, -0.011879189871251583, 0.01538895070552826, -0.009928572922945023, -0.04773274436593056, 0.04670681431889534, -0.016644364222884178, 0.002961360616609454, 0.02956298366189003, 0.037500444799661636, 0.016603868454694748, 0.00931436475366354, -0.03315373882651329, 0.023137422278523445, 0.014066040515899658, -0.023677386343479156, 0.01228416245430708, -0.10426688939332962, -0.00837617926299572, 0.019884144887328148, 0.044735949486494064, 0.006270322483032942, -0.061447810381650925, -0.03647451475262642, 0.036420516669750214, -0.008693407289683819, -0.026431197300553322, -0.03331572934985161, 0.016036907210946083, -0.01691434718668461, -0.00776197062805295, 0.027862099930644035, -0.007977955974638462, 0.05318637192249298, -0.013114355504512787, -0.007255755364894867, 0.0037932414561510086, 0.012621639296412468, -0.012500147335231304, -0.0042218370363116264, -0.024554826319217682, -0.016954844817519188, -0.04511392489075661, 0.03825639188289642, 0.03334272652864456, -0.042279116809368134, 0.04225211963057518, -0.07381296902894974, 0.0258102398365736, 0.05089152976870537, 0.0432780496776104, 0.08688007295131683, 0.0251487847417593, -0.017751289531588554, -0.061177827417850494, -0.03604254126548767, -0.03396368399262428, 0.00045432840124703944, -0.01702233962714672, -0.025985728949308395, 0.012871372513473034, -0.030129944905638695, 0.019884144887328148, -0.036960478872060776, -0.018885212019085884, -0.0485696867108345, -0.006381690036505461, -0.04160416126251221, 0.013343839906156063, 0.05653414502739906, -0.03172283619642258, -0.011237983591854572, 0.05982792004942894, 0.02500029467046261, 0.030561916530132294, -0.00011105102021247149, -0.0258102398365736, 0.0018308126600459218, 0.002870241878554225, -0.035016611218452454, 0.041847147047519684, -0.01534845307469368, -0.01196693442761898, -0.02159852720797062, -0.02603972516953945, 0.013485580682754517, 0.0454648993909359, -0.011467467993497849, 0.03893134370446205, -0.009152376092970371, 0.03053491748869419, -0.0009255306213162839, 0.03577256202697754, 0.02471681497991085, -0.012506897561252117, 0.004522191826254129, -0.0190202035009861, -0.006817035377025604, -0.0638776421546936, -0.008787901140749454, 0.015483444556593895, 0.004451321437954903, -0.002996795577928424, -0.000301620049867779, 0.002396086696535349, -0.013654318638145924, -0.02397436462342739, 0.027079153805971146, 0.01425502821803093, -0.042198121547698975, -0.0027200644835829735, 0.008484171703457832, -0.007249005604535341, 0.004593061748892069, -0.03261377662420273, -0.030561916530132294, -0.026687679812312126, 0.020748084411025047, 0.05205244943499565, -0.03685248643159866, -0.02826707251369953, 0.05040556192398071, 0.010893757455050945, 0.005349010229110718, -0.001626639044843614, -0.01617189683020115, -0.005659488961100578, -0.010968002490699291, 0.035286594182252884, -0.02667418122291565, 0.010016316547989845, 0.014120036736130714, 0.004846169613301754, -0.0017987523460760713, -0.005845101550221443, 0.02464931830763817, 0.01095450296998024, 0.01866922713816166, 0.02221948467195034, 0.0017000403022393584, 0.033720701932907104, -0.011413471773266792, 0.0034793878439813852, -0.013188600540161133, 0.023164421319961548, -0.04190114140510559, 0.04484394192695618, 0.0068474081344902515, 0.008814899250864983, 0.007512237876653671, -0.0027538121212273836, 0.0003389534540474415, -0.04009226709604263, 0.017049336805939674, 0.02190900593996048, 0.006904779002070427, 0.0035165101289749146, -0.0003030965162906796, -0.01654987223446369, 0.027241142466664314, 0.01656337082386017, -0.039741288870573044, 0.07003322243690491, 0.0014182470040395856, 0.01667136326432228, -0.02929300256073475, -0.00425558490678668, -2.3649754439247772e-05, -0.019263185560703278, 0.011048996821045876, -0.03007594868540764, -0.021895507350564003, 0.004893416538834572, -0.006557177752256393, 0.010002817958593369, -0.04146917164325714, 0.027673112228512764, 0.03377469629049301, 0.0323437936604023, -0.025054290890693665, 0.007748471572995186, 0.0183587484061718, 0.00837617926299572, 0.04179314896464348, -0.008288434706628323, 0.013647569343447685, 0.012304411269724369, 0.029373997822403908, 0.01687384955585003, 0.000803195231128484, -0.024743812158703804, -0.010077062994241714, 0.004721303004771471, 0.019938141107559204, 0.021463535726070404, 0.005794479977339506, 0.012466399930417538, 0.02760561741888523, 0.026957660913467407, 0.021180056035518646, 0.011622707359492779, -0.018169760704040527, -0.01933068223297596, 0.010556280612945557, -0.027943095192313194, -0.02424434758722782, -0.010083812288939953, 0.001488273497670889, -0.014781491830945015, -0.014767993241548538, 0.03744644671678543, -0.032802764326334, 0.011258232407271862, 0.0073907459154725075, -0.02143653854727745, -0.025486262515187263, 0.010988250374794006, -0.00343720312230289, -0.018993204459547997, 0.05045956000685692, -0.006263572722673416, 0.005625741556286812, 0.022718951106071472, 0.0030423549469560385, 0.032802764326334, -0.002412960398942232, -0.003772992640733719, -0.01933068223297596, 0.04759775474667549, 0.016860350966453552, 0.007464990951120853, -0.017940277233719826, 0.03169583901762962, 0.032667770981788635, 0.008612412959337234, 0.026836169883608818, -0.0065706768073141575, -0.0012056365376338363, -0.0026761924382299185, -0.023812375962734222, 0.00474492646753788, -0.029104014858603477, 0.030750902369618416, -0.017481308430433273, -0.03814839944243431, 0.025945231318473816, 0.04600486159324646, 0.01565893180668354, -0.0035131354816257954, 0.014052541926503181, -0.03347771614789963, 0.016860350966453552, 0.026998158544301987, -0.014309024438261986, 0.010529281571507454, -0.01949267089366913, -0.007599981967359781, 0.004856294021010399, -0.0603678822517395, -0.013026611879467964, 0.04670681431889534, 0.0008567696786485612, -0.008558416739106178, 0.028024088591337204, -0.039930276572704315, -0.005780980922281742, -0.04038924723863602, 0.021801013499498367, -0.02593173086643219, -0.027619116008281708, -0.014403518289327621, -0.01374881248921156, -0.01592891477048397, -0.017238324508070946, 0.022705452516674995, -0.04595086723566055, 0.008909392170608044, -0.013505829498171806, -0.001861185533925891, 0.018399246037006378, -0.021315045654773712, 0.01827775314450264, 0.0027976841665804386, 0.05194445699453354, 0.01327634509652853, -0.014606003649532795, -0.03841837868094444, -0.06258173286914825, 0.007930709049105644, 0.025756243616342545, -0.006374940276145935, -0.051053520292043686, -0.03636651858687401, -0.002976546995341778, 0.013647569343447685, 0.011379724368453026, 0.0498386025428772, -0.02209799364209175, -0.007410994730889797, -0.006094834301620722, -0.03960629925131798, -0.003020419040694833, -0.035124603658914566, 0.011649705469608307, -0.027430130168795586, -0.004532315768301487, -0.005139774642884731, 0.01386355422437191, -0.026930663734674454, 0.040281254798173904, -0.03822939470410347, -0.0310478825122118, 0.02093707211315632, 0.01534845307469368, 0.0050925277173519135, 0.014727495610713959, 0.010718269273638725, 0.015321454964578152, 0.028051087632775307, 0.013944549486041069, 0.03385569155216217, -0.0032380917109549046, 0.006442435551434755, 0.020127126947045326, -0.020289115607738495, -0.007053269073367119, -0.021963002160191536, 0.020410608500242233, -0.009915074333548546, -0.06333768367767334, -0.005484001245349646, -0.016036907210946083, -0.018304752185940742, -0.008227689191699028, -0.00013024502550251782, 0.04786773771047592, -0.0020889826118946075, 0.02632320486009121, -0.02729513868689537, 0.011669954285025597, 0.00944935530424118, -0.03720346465706825, 0.01784578338265419, 0.00880814902484417, -0.025985728949308395, 0.008011703379452229, -0.012074926868081093, 0.014228030107915401, -0.0008398958598263562, 0.04052423685789108, 0.0042859576642513275, 0.01714383065700531, -0.007856464013457298, -0.024190351366996765, -0.0026137593667954206, 0.02104506455361843, 0.048245709389448166, -0.002053547417744994, 0.022853940725326538, 0.0033832069020718336, 0.01807526685297489, 0.026566188782453537, 0.02554025873541832, -0.0017498182132840157, -0.0021244175732135773, -0.02510828711092472, -0.02991396002471447, -0.034341659396886826, 0.02764611504971981, -0.003931607119739056, -0.015672432258725166, -0.007350248750299215, -0.002121042925864458, 0.018304752185940742, -0.01702233962714672, -0.010515782982110977, -0.008295184001326561, -0.007410994730889797, -0.035637568682432175, 0.004002477042376995, 0.0046875555999577045, -0.011433720588684082, -0.002105856314301491, -0.017238324508070946, -0.002843243535608053, -0.05853200703859329, -0.015429448336362839, 0.038094401359558105, -0.03933631628751755, -0.010947753675282001, -0.002399461343884468, 0.031884826719760895, 0.06873731315135956, -0.00490016583353281, -0.025432266294956207, -0.0012478211428970098, 0.025634752586483955, -0.03596154972910881, -0.008274936117231846, 0.04624784737825394, -0.009375111199915409, -0.005133024882525206, 0.013485580682754517, -0.0023809000849723816, -0.000823443871922791, 0.02170651964843273, -0.010725018568336964, 0.005602118093520403, -0.0017903153784573078, -0.013067108578979969, 0.001399685861542821, -0.0020181124564260244, 0.013478830456733704, 0.011366224847733974, -0.029616979882121086, -0.0016257953830063343, 0.02518928237259388, -0.03925532475113869, 0.006597674917429686, -0.004947412759065628, 0.05388832464814186, 0.016414880752563477, 0.00565273966640234, -0.026498693972826004, -0.0026694429107010365, 0.0030896018724888563, 0.04511392489075661, 0.009165874682366848, 0.03237079456448555, -0.010387541726231575, -0.0336667038500309, 0.0042488351464271545, -0.03385569155216217, -0.013316841796040535, 0.006965524982661009, -0.013512578792870045, -0.012047928757965565, 0.022745948284864426, -0.026741676032543182, -0.03201981633901596, -0.02690366469323635, -0.01862872950732708, 0.02386637218296528, -0.017940277233719826, 0.024824807420372963, -0.017440810799598694, 0.01027279905974865, -0.011474217288196087, 0.011494466103613377, -0.014673499390482903, 0.003033918095752597, -0.02135554328560829, 0.007977955974638462, 0.00016167256399057806, 0.028186077252030373, -0.0056493645533919334, 0.011811694130301476, -0.012189668603241444, 0.049379631876945496, -0.009834079071879387, 0.04819171503186226, 0.013580073602497578, -0.002580011496320367, -0.03045392408967018, -0.009381860494613647, 0.04338604211807251, 0.022462468594312668, 0.023731382563710213, 0.020869577303528786, 0.013458582572638988, 0.02772710844874382, 0.032802764326334, -0.03444965183734894, 0.006250073667615652, 0.016765857115387917, 0.053051382303237915, 0.036960478872060776, -0.0002824260445777327, -0.003212780924513936, 0.015334954485297203, 0.02003263309597969, 0.037041474133729935, 0.023596391081809998, 0.013971547596156597, -0.0216390248388052, -0.013775810599327087, -0.02339390479028225, 0.00392485735937953, -0.016468876972794533, -0.004613310564309359, -0.013418084941804409, 0.007107265293598175, -0.019857145845890045, 0.0028044336941093206, 0.012331409379839897, -0.008774401620030403, 0.029670976102352142, -0.019344180822372437, 0.007748471572995186, 0.008659659884870052, -0.023366905748844147, 0.0035873802844434977, 0.026971161365509033, -0.010002817958593369, -0.030804898589849472, 0.013661068864166737, 0.027038656175136566, 0.007930709049105644, 0.05955793708562851, -0.006017214618623257, -0.0008280841866508126, -0.00835593044757843, 0.004552564583718777, 0.02745712734758854, -0.008619162254035473, 0.01726532354950905, 0.003843862796202302, -0.039066337049007416, -0.014025543816387653, 0.014997477643191814, 0.00964509230107069, 0.03018394112586975, 0.005102652125060558, 0.009084880352020264, -0.030372928828001022, 0.004282583016902208, 0.03725745901465416, -0.04057823121547699, 0.058208029717206955, -0.006455934606492519, 0.011582210659980774, -0.020086631178855896, -0.008106197230517864, -0.03361270949244499, -0.025918232277035713, 0.002348839771002531, 0.01683335192501545, 0.00784971471875906, 0.0354485847055912, -0.050513554364442825, -0.009537099860608578, -0.01208842545747757, -0.034773629158735275, 0.013472081162035465, 0.050513554364442825, -0.004910290241241455, 0.02756511978805065, -0.02566174976527691, 0.04119919240474701, 0.03779742121696472, 0.01011755969375372, -0.03628552705049515, 0.031020885333418846, 0.03755443915724754, -0.024392835795879364, -0.017589300870895386, -0.03760843724012375, 0.03142585605382919, -0.018736721947789192, -0.03385569155216217, 0.06571351736783981, 0.02432534098625183, 0.0018746847053989768, 0.010441537946462631, 0.01687384955585003, -0.0022425346542149782, 0.023137422278523445, 0.00636481586843729, -0.012533895671367645, 0.019695157185196877, 0.034854624420404434, 0.02147703617811203, -0.01257439237087965, -0.013613821938633919, -0.0074312430806458, 0.03639351949095726, 0.015901915729045868, 0.023717882111668587, 0.016036907210946083, 0.0018679351778700948, 0.012412403710186481, 0.027430130168795586, 0.006206201855093241, 0.02151753194630146, 0.03358570858836174, -0.028483057394623756, 0.031101878732442856, 0.007950957864522934, 0.01937117986381054, 0.02502729371190071, 0.007208508439362049, 0.0024652692954987288, 0.017197826877236366, 0.00016568010323680937, 0.017238324508070946, 0.016698362305760384, -0.005855225957930088, -0.045275911688804626, -0.007532486226409674, -0.011602458544075489, 0.0007774626137688756, 0.006391813978552818, -0.04198213666677475, -0.008558416739106178, -0.023852873593568802, -0.036960478872060776, -0.019897643476724625, 0.02721414342522621, 0.01115023996680975, 0.020356612280011177, 0.024082357063889503, -0.02518928237259388, 0.017116833478212357, -0.009989318437874317, -0.007572983391582966, -0.02143653854727745, 0.03706847131252289, 0.03123687021434307, 0.0023674010299146175, 0.006469433661550283, 0.012581141665577888, 0.028051087632775307, -0.0013473768485710025, 0.01142022106796503, -0.0001572431792737916, 0.005845101550221443, -0.011366224847733974, 0.01823725737631321, -0.04306206479668617, -0.0049204146489501, -0.05013558268547058, 0.02636370249092579, 0.0045356908813118935, -0.024041861295700073, 0.0229619350284338, 0.008254687301814556, 0.035826556384563446, 0.02421734854578972, -0.018804218620061874, 0.04476294666528702, -0.03812140226364136, -0.015483444556593895, -0.016725359484553337, -0.01912819594144821, -0.028105083853006363, -0.016225893050432205, -0.017251823097467422, -0.011960184201598167, 0.020356612280011177, -0.041334182024002075, -0.01999213732779026, 0.0074784900061786175, 0.019965138286352158, 0.0016764169558882713, -0.044033996760845184, -0.010731767863035202, 0.03264077380299568, -0.010846510529518127, 0.005942969582974911, 0.002477081026881933, -0.004974410869181156, 0.014511510729789734, 0.003948480822145939, 0.006270322483032942, -0.0502975694835186, -0.022232983261346817, 0.00953035056591034, -0.00804545171558857, -0.031209871172904968, 0.006506556179374456, 0.021693021059036255, -0.005693236831575632, -0.0017380064819008112, -0.017832284793257713, -0.031101878732442856, 0.0030372929759323597, 0.013026611879467964, -0.000620113976765424, -0.01877721957862377, 0.004630184266716242, 0.004761800169944763, 7.329578511416912e-05, 0.004066597670316696, 0.02737613394856453, 0.025405267253518105, -0.01870972476899624, 0.01648237556219101, -0.001209854963235557, -0.0012351657496765256, 0.0002847462019417435, 0.009483103640377522, -0.020923573523759842, 0.025391768664121628, -0.03542158380150795, 0.038796354085206985, -0.0010968002025038004, 0.0271061509847641, -0.023407403379678726, -0.0033832069020718336, 0.00944935530424118, 0.002097419463098049, 0.014484512619674206, 0.01995163969695568, 0.002586761023849249, -0.025945231318473816, 0.00432645482942462, 0.0106035266071558, 0.001118736225180328, 0.0009812143398448825, -0.008727154694497585, -0.026701178401708603, 0.012817376293241978, 0.004542440176010132, -0.015145966783165932, -0.00465718237683177, 0.024784309789538383, 0.003297150135040283, 0.017602799460291862, 0.007485239766538143, -0.049028657376766205, 0.039768289774656296, -0.00045770316501148045, 0.00751898717135191, 0.007728223223239183, -0.020748084411025047, -0.029508987441658974, -0.018561234697699547, -0.004694304894655943, -0.0023809000849723816, 0.03285675868391991, 0.0061015840619802475, -0.0006593456491827965, -0.018169760704040527, 0.009962320327758789, -0.011102993041276932, 0.0822363942861557, -0.007971206679940224, -0.009219870902597904, -0.003168908879160881, 0.051485490053892136, -0.03174983337521553, -0.0021750391460955143, -0.003928232006728649, 0.00037776329554617405, 0.006779912859201431, -0.03841837868094444, 0.043251052498817444, 0.03798640891909599, 0.010313296690583229, -0.0017236637650057673, -0.013141353614628315, 0.0018088766373693943, 0.04381801187992096, 0.035907551646232605, -0.014633001759648323, 0.024689815938472748, -0.03142585605382919, 0.004171215463429689, -0.004002477042376995, -0.010536031797528267, -0.01910119690001011, 0.005723609589040279, -0.014147035777568817, -0.023758379742503166, 0.01980314962565899, -0.007599981967359781, 0.0041610910557210445, -0.02273244969546795, -0.01097475178539753, -0.008976887911558151, -0.005821478087455034, 0.009989318437874317, -0.007444742135703564, 0.019263185560703278, 0.021922504529356956, 0.00614208122715354, 0.009908324107527733, -0.009921823628246784, -0.020275617018342018, 0.021882008761167526, 0.01470049750059843, -0.030372928828001022, -0.007863214239478111, 0.005139774642884731, 7.725058821961284e-06, -0.0018729972653090954, -0.022975433617830276, -0.054536283016204834, -0.03423366695642471, -0.020140627399086952, -0.002517578424885869, -0.0015971098328009248, -0.016023406758904457, -0.04003826901316643, -0.011885939165949821, 0.02335340715944767, 0.04009226709604263, -0.061177827417850494, -0.00031132251024246216, 0.02011362835764885, -0.023839375004172325, 0.007377246860414743, 0.011555211618542671, -0.004458071198314428, 0.023717882111668587, -0.026701178401708603, -0.0006871875375509262, 0.040875211358070374, -0.0010546155972406268, -0.010218802839517593, 0.030750902369618416, -0.02764611504971981, 0.019789651036262512, -0.003904608776792884, -0.03315373882651329, -0.009766584262251854, -0.0073030018247663975, 0.01879071816802025, 0.04568088427186012, -0.013040110468864441, 0.005328761413693428, 0.04468195140361786, 0.007964457385241985, -0.0170628372579813, 0.0358535535633564, -0.00995557103306055, -0.001925306161865592, 0.005359134636819363, 0.025553757324814796, 0.010549530386924744, 0.019573666155338287, -0.022084493190050125, -0.04095620661973953, 0.020059632137417793, -0.022502966225147247, 0.004289332311600447, -0.034773629158735275, -0.015591436997056007, 0.008369429036974907, -0.025675248354673386, -0.008173692971467972, -0.0008757527684792876, -0.005102652125060558, -0.004495193716138601, -0.002358964178711176, -0.003054166678339243, -0.0026778799947351217, 0.02502729371190071, -0.031452856957912445, -0.01556443888694048, -0.021274549886584282, 0.03053491748869419, -0.03574556112289429, -0.024460332468152046, -0.00273862574249506, -0.012270662933588028, 0.0177242923527956, 0.008922891691327095, 0.0017000403022393584, 0.011447219178080559, 0.037905413657426834, -0.024163352325558662, 0.025715745985507965, 0.004029475152492523, 0.006493057124316692, -0.009300866164267063, 0.01737331598997116, 0.019546667113900185, 0.007471740711480379, 0.0015237085754051805, 0.0058754743076860905, -0.01491648331284523, -0.005423255264759064, -0.014983978122472763, -0.017899779602885246, -0.01636088453233242, 0.018223756924271584, -0.01687384955585003, -0.01142022106796503, -0.045005932450294495, 0.022327477112412453, 0.00418808963149786, -0.020842578262090683, 0.015766924247145653, 0.01586141809821129, 0.0034051428083330393, 0.011987182311713696, -0.0008917829254642129, 0.006790036801248789, 0.00789021234959364, -0.012918619439005852, 0.03509760648012161, -0.0009381860145367682, 0.03129086643457413, -0.01730581931769848, 0.0045491899363696575, 0.009705837815999985, -0.042549099773168564, -0.01937117986381054, 0.006604424677789211, -0.014727495610713959, -0.003988977987319231, 0.020316114649176598, -0.015118968673050404, -0.016266390681266785, -0.027943095192313194, -0.03034593164920807, 0.024851804599165916, 0.017643297091126442, -0.04030825197696686, -0.010698020458221436, 0.023987865075469017, 0.0003988556272815913, -0.02921200729906559, 0.0021429788321256638, -0.020329613238573074, 0.00865290965884924, 0.017818784341216087, -0.014012044295668602, -0.024041861295700073, -0.0034827624913305044, -0.006381690036505461, -0.01702233962714672, 0.016779355704784393, -0.005487375892698765, 0.01534845307469368, 0.0059767174534499645, 0.011953434906899929, -0.019276686012744904, -0.0009466229239478707, -0.022124990820884705, 0.01339783612638712, -0.029104014858603477, 0.010056814178824425, -0.007714724168181419, 0.02327241376042366, -0.007748471572995186, -0.01893920823931694, -0.01421453058719635, 0.0074042449705302715, -0.05993591248989105, -0.0009702463285066187, -0.01586141809821129, 0.016576869413256645, -0.0028921777848154306, 0.025607753545045853, -0.0036919983103871346, 0.010016316547989845, 0.03579955920577049, -0.013289843685925007, -0.005915971472859383, -0.002412960398942232, 0.0009415607783012092, -0.00331402407027781, -0.028888029977679253, -0.015672432258725166, -0.019924640655517578, 0.048326704651117325, -0.024581823498010635, -0.0011406722478568554, 0.019735654816031456, -0.00046487455256283283, 0.015753425657749176, 0.017292320728302002, -0.048515692353248596, 0.027943095192313194, 0.0010056814644485712, 0.006688794121146202, 0.008787901140749454, -0.022975433617830276, -0.0009213121957145631, -0.030237937346100807, -0.02019462361931801, -0.007647228427231312, -0.021031565964221954, -0.01862872950732708, 0.008949889801442623, -0.00589572312310338, -0.01274988055229187, 0.018844714388251305, 0.01866922713816166, -0.017710791900753975, -0.021234052255749702, -0.012446151115000248, -0.03615053370594978, -0.012135672383010387, 0.005160022992640734, 0.014471013098955154, 0.0018325001001358032, 0.03760843724012375, -0.017359815537929535, 0.012344907969236374, -0.01819675974547863, 0.013465331867337227, -0.02799709141254425, -0.016887348145246506, -0.023717882111668587, 0.02011362835764885, 0.009341362863779068, 0.021301547065377235, 0.054104309529066086, 0.004036224912852049, -0.038634367287158966, -0.06096184253692627, 0.03215480595827103, -0.004086846485733986, 0.016185397282242775, -0.010110810399055481, -0.023015931248664856, -0.03409867361187935, 0.012257164344191551, 0.012027679942548275, -0.0009888075292110443, 0.020518600940704346, -0.011271730996668339, 0.005716860294342041, 0.02522978000342846, 0.008727154694497585, 0.010846510529518127, 0.019195690751075745, 0.008902642875909805, -0.03898534178733826, -0.00010003028728533536, -0.0005606336635537446, 0.002345465123653412, 0.038526371121406555, 0.014120036736130714, 0.022084493190050125, 0.011953434906899929, 0.01470049750059843, 0.022934935986995697, -0.008322182111442089, 0.04654482752084732, 0.007620230317115784, -0.03490861877799034, -0.02780810371041298, -0.0015987972728908062, 0.04052423685789108, 0.021531032398343086, 0.020100129768252373, 0.012479899451136589, 0.0036413767375051975, 0.01636088453233242, -0.0018881837604567409, -0.029670976102352142, 0.019047200679779053, -0.005291639361530542, -0.021328546106815338, -0.029859963804483414, 0.0258102398365736, 0.012972615659236908, -0.032316796481609344, -0.03525959700345993, 0.013654318638145924, 0.005183646455407143, 0.0041475920006632805, 0.001128860516473651, -0.019749153405427933, -0.03282976150512695, 0.03042692504823208, -0.012999613769352436, 0.002522640395909548, 0.0025412016548216343, -0.023636888712644577, -0.00933461356908083, 0.013931049965322018, -0.03917432948946953, 0.02686316892504692, -0.05345635488629341, 0.00031090067932382226, 0.04595086723566055, -0.005433379672467709, 0.01452500931918621, 0.02510828711092472, -0.008382928557693958, -0.0003788179310504347, 0.008254687301814556, -0.007964457385241985, 0.043521031737327576, -0.02733563631772995, 0.0402272567152977, 0.010340294800698757, 0.033909689635038376, 0.007343499455600977, 0.006992523092776537, 0.029967956244945526, 0.01632038690149784, -0.04038924723863602, -0.008389677852392197, -0.006601050030440092, -0.018129263073205948, 0.019303683191537857, 0.0009938697330653667, 0.006945276632905006, -0.03628552705049515, -0.005602118093520403, 0.026080220937728882, -0.028375064954161644, 0.01916869357228279, 0.01995163969695568, 0.006901404354721308, -3.245579500799067e-05, 0.003830363741144538, -0.001182856853120029, 0.008031952194869518, -0.023326409980654716, 0.0036245028022676706, 0.016846850514411926, 0.01819675974547863, 0.0054097562097013, -0.03841837868094444, -0.008322182111442089, 0.0032009691931307316, -0.016590368002653122, -0.01534845307469368, 0.03331572934985161, -0.03812140226364136, 0.009962320327758789, -0.024109356105327606, 0.026579687371850014, -0.010016316547989845, -0.005608867388218641, 0.0050047836266458035, 0.029158011078834534], [0.0063979108817875385, 0.03059452213346958, 0.06217862293124199, 0.04782970994710922, -0.030814427882432938, -0.013373076915740967, 0.015118586830794811, 0.028422942385077477, 0.018073583021759987, 0.025729084387421608, 0.0005781141226179898, 0.007126351818442345, -0.0010866484371945262, -0.030786938965320587, -0.01509109791368246, 0.05434444546699524, -0.01043869648128748, 0.05439942330121994, -0.0024516163393855095, 0.0019808784127235413, 0.050606030970811844, 0.020657487213611603, 0.012761461548507214, 0.017248932272195816, -0.06052932143211365, -0.009449116885662079, -0.0018382826820015907, 0.020836161449551582, -0.006487247999757528, -0.045190829783678055, 0.08966696262359619, -0.003499609185382724, -0.007806688081473112, -0.0028690954204648733, 0.028285501524806023, 0.03631209582090378, -0.04741738364100456, 0.004353465512394905, 0.008810012601315975, 0.01779869943857193, -0.03567986562848091, 0.03818130120635033, -0.05244775116443634, 0.0017566767055541277, -0.05893499776721001, 0.05739565193653107, 0.030429590493440628, -0.0018073582323268056, -0.006432271096855402, 0.031804006546735764, -0.006329189985990524, 0.0042916168458759785, 0.013572366908192635, -0.005274325143545866, 0.020382603630423546, 0.017963629215955734, -0.006274213548749685, 0.005738190840929747, -0.0034377602860331535, -0.027955640107393265, 0.012562170624732971, -0.027062268927693367, -0.04549320042133331, 0.02223806641995907, -0.019791604951024055, -0.0002594212128315121, 0.0035941002424806356, 0.014527587220072746, -0.05049607902765274, 0.0008444074192084372, 0.021358439698815346, 0.04224957525730133, -0.006518172565847635, -0.043651483952999115, -0.005721010733395815, -0.009648406878113747, 0.01972288265824318, 0.009627791121602058, -0.04351403936743736, -0.02019018493592739, -0.013964076526463032, -0.0046936338767409325, -0.019076908007264137, 0.027694500982761383, -0.047554824501276016, -0.020918626338243484, -0.020918626338243484, 0.024973155930638313, -0.07487823814153671, 0.010418080724775791, 0.005318993702530861, 0.016273096203804016, -0.011847473680973053, 0.024189738556742668, 0.026485014706850052, -0.017716234549880028, 0.029577452689409256, -0.019021930173039436, -0.013050088658928871, 0.03881353512406349, 0.013166914694011211, 0.0017214572289958596, -0.006786183454096317, 0.0015565272187814116, 0.031281728297472, -0.028697825968265533, -0.033480796962976456, 0.005762243177741766, -0.005274325143545866, -0.02010772004723549, -0.07174456119537354, -0.020121464505791664, -0.03985809162259102, 0.03955572098493576, -0.013771657831966877, -0.018857000395655632, -0.01602570153772831, -0.01239036861807108, 0.06514736264944077, 0.0020513173658400774, -0.039335813373327255, 0.021592089906334877, -0.015654608607292175, -0.05005626380443573, -0.010919742286205292, -0.02098734676837921, -0.0033020367845892906, -0.027570804581046104, -0.0587150901556015, -0.02704852633178234, 0.024162249639630318, -0.0003165453963447362, 0.042084645479917526, -0.04211213439702988, -0.017166467383503914, -0.015420958399772644, -0.03754907101392746, -0.0018073582323268056, -0.029907312244176865, -0.06322318315505981, 0.01529726106673479, 0.0020873956382274628, 0.02326887845993042, 0.031171776354312897, -0.02693857252597809, -0.03798888623714447, 0.003618152579292655, 0.07289907336235046, 0.008363327011466026, 0.0025031568948179483, -0.017125235870480537, 0.013428053818643093, -0.01735888607800007, -0.024437133222818375, 0.0010290946811437607, 0.0003294305643066764, 0.005569824483245611, 0.0783417671918869, 0.013641088269650936, -0.007854793220758438, 0.019557952880859375, -0.03218884393572807, -0.01980534754693508, -0.016699165105819702, 0.03955572098493576, -0.016630444675683975, -0.05822030082345009, 0.03271112218499184, -0.0628383457660675, -0.07757209241390228, -0.03095186874270439, -0.07520809769630432, -0.044833481311798096, 0.030979357659816742, -0.009916418232023716, -0.030814427882432938, -0.020203929394483566, -0.021537113934755325, 0.03361823782324791, -0.03653200343251228, 0.0024498982820659876, -0.02031388320028782, -0.04268939048051834, -0.04703254625201225, -0.06938056647777557, 0.02401106432080269, -0.008830629289150238, 0.00950409285724163, -0.03444289043545723, 0.05552644282579422, 0.02823052369058132, 0.026155155152082443, 0.03053954429924488, 0.010761684738099575, -0.056186165660619736, 0.03609218820929527, -0.01735888607800007, -0.015572143718600273, -0.008067827671766281, 0.011524486355483532, 0.01641053892672062, -0.030347125604748726, 0.07168959081172943, -0.02223806641995907, -0.025083109736442566, -0.054564353078603745, -0.006909881252795458, -0.004971953108906746, 0.004257256630808115, 0.00950409285724163, -0.010369976051151752, -0.08752287179231644, 0.008122804574668407, 0.016314329579472542, -0.026443781331181526, 0.028340477496385574, -0.03449786454439163, 0.07625265419483185, -0.03205140307545662, -0.026031456887722015, 0.014053413644433022, 0.0274333618581295, 0.018857000395655632, -0.00802659522742033, 0.020465068519115448, 0.04222209006547928, 0.0035700479056686163, -0.06113406643271446, 0.015365981496870518, -0.025619132444262505, 0.015737073495984077, 0.008789395913481712, 0.02131720632314682, -0.019887812435626984, 0.018403442576527596, -0.043101716786623, -0.0004133988404646516, 0.026086432859301567, 0.025055620819330215, 0.0097721042111516, 0.037714000791311264, 0.004965081345289946, 0.027831943705677986, 0.020684974268078804, 0.02625136449933052, -0.008356454782187939, -0.02596273645758629, -0.02429969236254692, 0.030786938965320587, 0.036174654960632324, 0.024024808779358864, 0.006803364027291536, 0.022719111293554306, -0.026924828067421913, 0.022430485114455223, -0.004841383546590805, 0.03136419504880905, -0.01605319045484066, 0.04543822258710861, 0.008542001247406006, 0.0004217741952743381, -0.027625780552625656, -0.017894908785820007, 0.0018898233538493514, -0.061683833599090576, -0.04703254625201225, 0.04191971570253372, -0.05948476493358612, -0.041287485510110855, 0.04378892481327057, -0.06036439165472984, 0.004061402287334204, 0.0391983725130558, 0.001944800023920834, -0.04535575956106186, -0.013551751151680946, -0.005305249243974686, -0.009916418232023716, 0.030759451910853386, 0.0024997207801789045, -0.016630444675683975, 0.008651955053210258, 0.026828618720173836, -0.0166167002171278, -0.019942790269851685, 0.026182642206549644, -0.003923960495740175, -0.009236081503331661, -0.030374614521861076, 0.033783167600631714, 0.012630891986191273, -0.01608067750930786, -0.019997766241431236, -0.02108355611562729, 0.010095092467963696, 0.024698272347450256, -0.008844372816383839, -0.013208147138357162, -0.0004479740164242685, 0.007868536747992039, 0.02128971926867962, 0.046400316059589386, -0.03510260954499245, 0.01797737367451191, -0.027447106316685677, 0.0006940805469639599, 0.02814805880188942, -0.004013297613710165, -0.004178227391093969, -0.01656172424554825, -0.051458168774843216, -0.013235635124146938, 0.009078023955225945, -0.035432469099760056, -0.04859938472509384, -0.025385480374097824, 0.049121662974357605, -0.004442802630364895, -0.043981343507766724, 0.02105606719851494, 0.03361823782324791, -0.008775652386248112, 0.05898997560143471, -0.03644953668117523, 0.029220104217529297, -0.03433293476700783, 0.01895320974290371, -0.010424952954053879, -0.03485521301627159, -0.017097746953368187, -0.022870298475027084, 0.0035563039127737284, 0.010905998758971691, -0.009229210205376148, -0.0234475526958704, -0.010507417842745781, 0.011998659931123257, 0.0027453978545963764, 0.0038002629298716784, 0.007421851623803377, 0.038923487067222595, -0.02861536107957363, 0.003532251575961709, -0.026897339150309563, -0.02462955191731453, 0.05211789160966873, 0.005305249243974686, 0.03414051607251167, 0.031556613743305206, 0.03048456832766533, -0.03796139732003212, 0.03232628479599953, -0.040930137038230896, -0.0029532783664762974, -0.09516462683677673, 0.011579462327063084, -0.02078118361532688, 0.0008482729317620397, -0.012225438840687275, -0.028890244662761688, -0.012452217750251293, -0.00971025601029396, 0.013964076526463032, 0.006614381447434425, -0.012087997049093246, 0.028450431302189827, -0.02095985785126686, 0.007621142081916332, 0.03232628479599953, -0.0013658268144354224, 0.005133447237312794, 0.05016621947288513, -0.00260967412032187, -0.01746883988380432, -0.06069425120949745, -0.035817306488752365, -0.0069408053532242775, 0.020684974268078804, -0.029989777132868767, 0.0004428199608810246, 0.07878158241510391, -0.0245058536529541, 0.04466855153441429, -0.02365371584892273, 0.09571439772844315, 0.017867419868707657, -0.06982038170099258, 0.0016596084460616112, 0.00838394369930029, -0.007985362783074379, -0.0025873398408293724, 0.00873441994190216, -0.005215912126004696, -0.0057416269555687904, 0.00918110553175211, 0.03169405460357666, 0.022664135321974754, 0.04079269617795944, 0.04703254625201225, -0.008239629678428173, 0.038566138595342636, -0.004346593748778105, -0.018046094104647636, -0.051897983998060226, -0.020918626338243484, -0.016479259356856346, -0.03287605196237564, -0.021949438378214836, 0.018169792369008064, -0.004621476866304874, 0.05800039693713188, -0.0067140269093215466, 0.04227706417441368, -0.001262745587155223, 0.0011631003580987453, -0.00631888210773468, -0.024175994098186493, 0.06888578087091446, -0.010452440939843655, -0.014431377872824669, 0.031171776354312897, 0.03163907676935196, 0.014939912594854832, -0.005363662261515856, -0.033453308045864105, 0.006040562409907579, 0.02460206300020218, -0.017303910106420517, 0.01646551489830017, -0.06591703742742538, -0.02625136449933052, 0.034607820212841034, 0.026265107095241547, 0.03488270193338394, -0.025440458208322525, -0.03829125687479973, 0.05404207482933998, -0.0015977596631273627, -0.015407213941216469, -0.04502590000629425, 0.02028639428317547, -0.04180976375937462, -0.0058378358371555805, 0.02900019846856594, 0.014829958789050579, 0.03606469929218292, 0.005621365271508694, 0.00601651007309556, 0.019049419090151787, 0.022361762821674347, 0.014513842761516571, 0.002565005561336875, -0.03240875154733658, 0.00023880494700279087, -0.07135973125696182, 0.03238126263022423, -0.0033484234008938074, -0.05893499776721001, 0.04574059695005417, -0.08372948318719864, 0.016121910884976387, 0.05008375272154808, 0.0351850725710392, 0.06745638698339462, 0.01744135096669197, -0.013338716700673103, -0.058165326714515686, -0.03235377371311188, -0.020643742755055428, 0.025742828845977783, 0.0019362098537385464, 0.005140319466590881, 0.0166716780513525, 0.005511411931365728, 0.005690086167305708, -0.062068670988082886, -0.030402103438973427, -0.007112607825547457, -0.02406604029238224, -0.0008087584865279496, 0.006315445993095636, 0.052282821387052536, -0.030264660716056824, 0.0002540523710194975, 0.06580708175897598, 0.01410151831805706, 0.036999303847551346, 0.0018520267913118005, -0.011558846570551395, 0.025976480916142464, -0.0391983725130558, -0.017839932814240456, 0.034992653876543045, -0.015682097524404526, -0.008212141692638397, -0.024959411472082138, -0.0264300387352705, -0.003652513027191162, 0.02784568816423416, -0.01263776421546936, 0.024230970069766045, -0.010266894474625587, 0.032628659158945084, 0.0007791225798428059, 0.045960500836372375, 0.006363550666719675, -0.011503869667649269, 0.043239157646894455, -0.017400119453668594, -0.017743723466992378, -0.059979554265737534, 0.0015384879661723971, 0.018692070618271828, 0.015036121010780334, 0.013132553547620773, 0.006236416753381491, 0.02445087768137455, 0.010473056696355343, -0.019269324839115143, 0.013208147138357162, 0.029082663357257843, -0.007167584262788296, 0.01980534754693508, 0.013256251811981201, -0.005370534025132656, -0.0075867814011871815, -0.04233204200863838, -0.01245908997952938, -0.023131437599658966, 0.021976927295327187, 0.03015470691025257, -0.01641053892672062, -0.011668799445033073, 0.05624113976955414, 0.0005450422177091241, 0.006136771757155657, 0.041699811816215515, -0.020946113392710686, -0.02185322903096676, 0.0014732031850144267, 0.02190820686519146, -0.01836221106350422, 0.00839768722653389, 0.008638210594654083, 0.008493896573781967, 0.0112358583137393, 0.023172669112682343, 0.02034137025475502, 0.0066109453327953815, 0.021069811657071114, 0.020410092547535896, -0.02223806641995907, 0.05915490537881851, -0.00027488337946124375, 0.0009500657324679196, -0.03007224202156067, 0.01679537445306778, -0.04420124739408493, 0.039390791207551956, -0.02128971926867962, 0.012912646867334843, 0.013483029790222645, 0.02216934598982334, 0.007930385880172253, -0.05472928285598755, 0.026471270248293877, 0.03878604620695114, 0.018760791048407555, -0.007366874720901251, -0.011091545224189758, -0.013606728054583073, 0.0235300175845623, 0.014142750762403011, -0.054509375244379044, 0.08175031840801239, 0.00799910631030798, 0.005562952719628811, -0.06668671220541, -0.009339163079857826, 0.0053945863619446754, -0.021358439698815346, -0.0037933907005935907, -0.0061676958575844765, -0.006531916558742523, -0.0037590302526950836, -0.009730871766805649, 0.015778306871652603, -0.021921949461102486, 0.052667658776044846, 0.017537560313940048, 0.01676788739860058, -0.0083083501085639, 0.021220996975898743, 0.00811593234539032, 0.01892572082579136, 0.018513396382331848, -0.03012721985578537, 0.022334275767207146, 0.010239406488835812, 0.010514290072023869, -0.009854569099843502, -0.00357348402030766, -0.025536667555570602, -0.03944576531648636, 0.02403855323791504, 0.013476158492267132, 0.009029919281601906, 0.0060817948542535305, 0.011964299716055393, 0.02758454903960228, -0.0009131282567977905, 0.010342487134039402, 0.01587451621890068, -0.0030494877137243748, -0.012624019756913185, 0.009229210205376148, -0.03202391415834427, -0.0165892131626606, -0.00033737640478648245, -0.00334155117161572, -0.004989133682101965, -0.018513396382331848, 0.015036121010780334, -0.025852782651782036, 0.029082663357257843, 0.01010883692651987, -0.027419617399573326, -0.030704474076628685, 0.02185322903096676, -0.022993994876742363, 0.00202898308634758, 0.04216711223125458, -0.010280638933181763, -0.0033432692289352417, -0.009909546002745628, 0.0018537448486313224, 0.01230103150010109, 0.03367321565747261, 0.016960304230451584, -0.029165128245949745, 0.02291152998805046, 0.024395901709794998, 0.0072156889364123344, -0.03337084501981735, 0.036559492349624634, 0.054536864161491394, 0.00891309417784214, 0.004346593748778105, -0.0030305893160402775, -0.006765567231923342, 0.003130234545096755, -0.04082018509507179, 0.03405805304646492, -0.029604941606521606, 0.025330504402518272, -0.01599821262061596, -0.029494987800717354, -0.004779534880071878, 0.03922586143016815, 0.03680688515305519, -0.0010436978191137314, 0.016121910884976387, -0.019640417769551277, 0.006102411076426506, 0.03570735082030296, -0.013153170235455036, 0.01641053892672062, -0.03977562487125397, 0.012397240847349167, 0.00696142204105854, -0.06036439165472984, -0.008328966796398163, 0.04964394122362137, 0.014582564122974873, 0.0010110554285347462, 0.04392636567354202, -0.012472833506762981, -0.010342487134039402, -0.017455095425248146, 0.013998436741530895, -0.019145628437399864, -0.0034394783433526754, -0.01407402940094471, 0.013826634734869003, 0.018279746174812317, -0.015764562413096428, 0.030841916799545288, -0.021770764142274857, 0.02784568816423416, -0.010699835605919361, -0.003820879152044654, 0.011606951244175434, 0.015627121552824974, 0.017839932814240456, -0.010294383391737938, 0.03749409317970276, 0.019283069297671318, -0.007133224047720432, -0.035020142793655396, -0.06322318315505981, -0.006116155534982681, 0.010411208495497704, -0.0037212339229881763, -0.03565237671136856, -0.03955572098493576, -0.0175650492310524, 0.011201498098671436, 0.023406321182847023, 0.05154063552618027, -0.028258012607693672, -0.00848702434450388, 0.005824091844260693, -0.04351403936743736, 0.01735888607800007, -0.04406380653381348, 0.021688299253582954, -0.016932817175984383, 0.0020410092547535896, -0.0029945108108222485, 0.008260245434939861, -0.004497779533267021, 0.04158985614776611, -0.008713803254067898, -0.02976987138390541, 0.015146074816584587, 0.02078118361532688, 0.01702902652323246, 0.0092704426497221, 0.015627121552824974, 0.03631209582090378, -0.0001604202261660248, 0.006930497474968433, 0.04136994853615761, -0.00910551194101572, -0.002140654483810067, 0.022581670433282852, -0.03686186298727989, 0.01096784695982933, -0.031089311465620995, 0.0331234484910965, -0.021894462406635284, -0.05662597715854645, -0.018527140840888023, -0.031556613743305206, -0.03015470691025257, -0.015462190844118595, -0.011373300105333328, 0.012500322423875332, -0.029604941606521606, 0.016534235328435898, -0.007442467845976353, 0.012562170624732971, -0.004916976671665907, -0.03493767976760864, 0.026003967970609665, -0.007765455637127161, -0.0025770317297428846, 0.005641981493681669, 0.013483029790222645, 0.03427795693278313, -0.018169792369008064, 0.03397558629512787, 0.0146512845531106, 0.007311898283660412, 0.00817778054624796, -0.009009303525090218, 0.01327686756849289, 0.02137218415737152, 0.02478073723614216, 0.012101741507649422, 0.02578406222164631, -9.64239370659925e-05, -0.007538676727563143, 0.030676987022161484, 0.028258012607693672, -0.019461743533611298, -0.014513842761516571, -0.05329988896846771, -0.03397558629512787, -0.04994631186127663, 0.019667906686663628, -0.0015591041883453727, -0.0051368833519518375, -0.013826634734869003, 0.010631115175783634, 0.030402103438973427, 0.0011210087686777115, -0.005037237890064716, -0.005174679681658745, -0.01990155689418316, -0.024203483015298843, 0.0029051739256829023, -0.009840825572609901, -0.008102187886834145, -0.02193569391965866, -0.017166467383503914, -0.006116155534982681, -0.07383368164300919, -0.010273766703903675, 0.04178227484226227, -0.03161159157752991, 0.006191748194396496, 0.013778530061244965, 0.025825293734669685, 0.052282821387052536, 0.0065147364512085915, -0.029852336272597313, -0.009146744385361671, 0.031171776354312897, -0.03647702559828758, 0.019612930715084076, 0.02509685419499874, 0.020093975588679314, 0.004411878529936075, 0.023969830945134163, -0.004834511782974005, 0.005607621278613806, 0.013077577576041222, -0.01998402178287506, -0.005202168133109808, -0.0020118027459830046, -0.003528815461322665, -0.0007619424141012132, 0.006033690180629492, 0.005360226146876812, 0.004666145425289869, -0.01977786049246788, 0.002678395016118884, 0.03273861110210419, -0.045603156089782715, 0.027859430760145187, 0.005559516604989767, 0.058495186269283295, 0.02031388320028782, -0.015008633024990559, 0.004916976671665907, 0.00892683770507574, 0.005370534025132656, 0.026100177317857742, 0.034195493906736374, 0.010885382071137428, -0.004408442415297031, -0.0010471339337527752, -0.002805528696626425, -0.03480023890733719, 0.010603627189993858, 0.015173562802374363, -0.026924828067421913, 0.012926391325891018, 0.015723329037427902, -0.04568561911582947, -0.024052295833826065, -0.03554242104291916, -0.004573372192680836, 0.0023399449419230223, 0.011799369938671589, -0.002913763979449868, 0.005274325143545866, -0.014087773859500885, -0.009634662419557571, 0.021330950781702995, -0.009201721288263798, 0.007861664518713951, -0.028752801939845085, 0.0014654720434919, 0.022870298475027084, 0.04354152828454971, 0.008548873476684093, 0.005215912126004696, -0.0006580020999535918, 0.030292149633169174, -0.00011596643162192777, 0.05530653893947601, -0.0032659582793712616, -0.023048972710967064, -0.009359779767692089, -0.014829958789050579, 0.018582116812467575, 0.012988240458071232, 0.00852825678884983, 0.030676987022161484, -0.0007726800395175815, 0.016932817175984383, 0.0011811396107077599, -0.0010325306793674827, 0.003779646707698703, 0.009785848669707775, 0.0547567717730999, 0.024753248319029808, -0.02625136449933052, -0.011558846570551395, 0.03196893632411957, 0.012795821763575077, 0.01638305000960827, 0.015022377483546734, 0.03210638090968132, -0.02468452788889408, 0.010294383391737938, -0.011208370327949524, 0.001783306011930108, -0.02457457408308983, 0.020520044490695, -0.023901110514998436, -0.0034257343504577875, -0.010397464036941528, 0.007717350963503122, 0.007305026054382324, -0.01797737367451191, 0.016932817175984383, 0.01154510211199522, -0.011964299716055393, -0.03163907676935196, -0.02116602100431919, 0.009139873087406158, 0.04983635991811752, -0.015517167747020721, -0.02681487426161766, 0.0056969583965837955, 0.013771657831966877, 0.005600749049335718, 0.03686186298727989, -0.006267341319471598, -0.01447261031717062, 0.0010333897080272436, 0.0039926813915371895, 0.01980534754693508, 0.004336285404860973, 0.010225662030279636, 0.021207254379987717, -0.04296427220106125, -0.01096784695982933, 0.010754812508821487, 0.015365981496870518, 0.015530911274254322, -0.0027471159119158983, 0.005401458591222763, -0.02028639428317547, 0.0077860718593001366, 0.035075120627880096, -0.04180976375937462, 0.03867609426379204, -0.006136771757155657, 0.01410151831805706, -0.011579462327063084, -0.017221445217728615, -0.04307422786951065, -0.01385412272065878, 0.001099533517844975, 0.02861536107957363, 0.00839768722653389, 0.05390463396906853, -0.032216332852840424, -0.01617688685655594, -0.027076013386249542, -0.03985809162259102, 0.028752801939845085, 0.02900019846856594, -0.008102187886834145, 0.023667460307478905, -0.00045785264228470623, 0.00016890295955818146, 0.02894522063434124, -0.0013117091730237007, -0.03482772409915924, 0.03394809737801552, 0.016712909564375877, -0.016809118911623955, -0.022306786850094795, -0.02652624621987343, 0.02370869182050228, -0.0020135208033025265, -0.01635556109249592, 0.05046859011054039, 0.024148505181074142, 0.0032144177239388227, 0.01487119123339653, -0.00892683770507574, 0.016575468704104424, 0.022980250418186188, -0.0024481802247464657, -0.004405006300657988, 0.04450362175703049, 0.04978138208389282, 0.01504986546933651, -0.028725314885377884, -0.02226555533707142, -0.013565495610237122, 0.05044110119342804, 0.034222982823848724, -0.011318323202431202, 0.01214984618127346, -0.001540206023491919, 0.012692740187048912, 0.01977786049246788, 0.005102523136883974, -0.008356454782187939, 0.023777412250638008, -0.01942051202058792, 0.006191748194396496, 0.017125235870480537, 0.008899349719285965, 0.007834176532924175, 0.014238959178328514, -0.021949438378214836, 0.02761203609406948, 0.01370293740183115, -0.011318323202431202, 0.004226332064718008, -0.0016681986162438989, -0.04527329280972481, -0.007085119374096394, -0.03554242104291916, 0.023213902488350868, -0.002487694611772895, -0.03559739887714386, -0.011524486355483532, -0.0035116353537887335, -0.03653200343251228, -0.005391150247305632, 0.014362657442688942, 0.002271224046126008, 0.009394139982759953, 0.02519306354224682, -0.031144287437200546, 0.015022377483546734, -0.055801328271627426, 0.013146298006176949, -0.03007224202156067, 0.019269324839115143, 0.027694500982761383, 0.013379949145019054, 0.0037624663673341274, 0.0051678079180419445, 0.03837371990084648, 0.00083538779290393, 0.02324139140546322, -0.016781629994511604, 0.01154510211199522, -0.008954326622188091, 0.022815320640802383, -0.04043534770607948, 0.014816214330494404, -0.0548117496073246, 0.006287957541644573, 0.012500322423875332, -0.005848144181072712, 0.015214795246720314, 0.001303978031501174, 0.04532827064394951, 0.0254542026668787, -0.026003967970609665, 0.012362880632281303, -0.012410985305905342, -0.0066109453327953815, -0.00430192518979311, -0.01065860316157341, -0.015077353455126286, -0.002027265029028058, -0.013998436741530895, -0.006301701534539461, 0.030209684744477272, -0.0448884591460228, -0.021124787628650665, -5.0171587645309046e-05, 0.007250049617141485, -0.01605319045484066, -0.04582305997610092, -0.006500991992652416, 0.02773573435842991, -0.021234741434454918, -0.0036318968050181866, 0.003917088266462088, -0.015036121010780334, -0.009854569099843502, 0.016328074038028717, -0.0166716780513525, -0.04431120306253433, -0.017633769661188126, 0.0030752578750252724, -0.005635109264403582, -0.022719111293554306, 0.026141410693526268, 0.0067999279126524925, -0.004896360449492931, -0.011558846570551395, -0.00018737168284133077, -0.03240875154733658, 0.013957204297184944, 0.01625935174524784, -0.019846580922603607, -0.024409644305706024, 0.025055620819330215, 0.010253150016069412, 0.023969830945134163, -0.006384166888892651, 0.01145576499402523, 0.012974495999515057, -0.023777412250638008, 0.03562488779425621, 0.014967400580644608, 0.018650837242603302, 0.004054530058056116, 0.00592717295512557, -0.0007550703012384474, 0.010830405168235302, -0.02001151069998741, 0.03048456832766533, 0.0002473950444255024, -0.003528815461322665, -0.01664418913424015, 0.01190245058387518, 0.0013718398986384273, 0.009256698191165924, 0.027955640107393265, 0.01261027529835701, -0.0014482918195426464, -0.026677433401346207, 0.016341816633939743, 0.00812967587262392, 0.029632428660988808, -0.008624466136097908, -0.017193956300616264, -0.028422942385077477, 0.016685422509908676, -0.003611280582845211, -0.016314329579472542, -0.0031439787708222866, 0.02078118361532688, 0.022925274446606636, -0.0004943605745211244, 0.01900818571448326, -0.04543822258710861, 0.026924828067421913, 0.0041507394053041935, 0.001058301073499024, -0.018430931493639946, -0.026691177859902382, -0.009510965086519718, -0.010692964307963848, -0.013311227783560753, 0.015036121010780334, 0.05200793594121933, -0.009648406878113747, 0.008081571198999882, -0.010452440939843655, 0.0033999639563262463, -0.00125845056027174, 0.08411432057619095, 0.0015762844122946262, -0.004776098765432835, 0.019530463963747025, 0.015022377483546734, -0.03611967712640762, 0.0069167534820735455, 0.004329413175582886, 0.0002478245587553829, -0.02601771242916584, -0.05253021419048309, 0.0195442084223032, 0.040930137038230896, -0.004741738550364971, -0.0019619802478700876, -0.012081124819815159, -0.0003554156282916665, 0.019736627116799355, 0.016809118911623955, -0.016657933592796326, 0.012129229493439198, -0.015338493511080742, 0.006775875575840473, -0.006013073958456516, -0.03095186874270439, -0.014568819664418697, 0.028835266828536987, -0.0254816897213459, -0.018870744854211807, 0.020148951560258865, -0.015585888177156448, 0.015462190844118595, -0.0063120098784565926, -0.020739952102303505, 0.005126575008034706, 0.01702902652323246, 0.009249825961887836, -0.02537173591554165, 0.03298600763082504, 0.005318993702530861, 0.006954549811780453, 0.017070258036255836, -0.005085342563688755, -0.01327686756849289, 0.023392576724290848, 0.028312988579273224, -0.03315093740820885, -0.036202143877744675, 0.021330950781702995, 0.0013374794507399201, 0.0016681986162438989, -0.009009303525090218, -0.04604296758770943, -0.037301674485206604, -0.037301674485206604, -0.015915747731924057, -8.251870167441666e-05, 0.0038758558221161366, -0.011208370327949524, -0.012046764604747295, 0.01687783934175968, 0.02368120476603508, -0.049506496638059616, -0.015462190844118595, 0.022402996197342873, -0.041205018758773804, 0.012940135784447193, 0.0033845016732811928, -0.007318770047277212, 0.00348071102052927, -0.041699811816215515, -0.01777121052145958, 0.044036317616701126, -0.010548650287091732, 0.02170204371213913, 0.030292149633169174, -0.028285501524806023, 0.010809789411723614, -0.012575915083289146, -0.030237173661589622, 0.006140207871794701, 0.023433808237314224, -0.00300825503654778, 0.044036317616701126, -0.02696605958044529, -0.023516273126006126, 0.038538649678230286, 0.012445345520973206, 0.0007761160959489644, 0.013331844471395016, 0.010033243335783482, -7.774045661790296e-05, -2.9474800612661056e-05, 0.029055174440145493, 0.011160265654325485, 0.03798888623714447, -0.01841718703508377, -0.047115013003349304, -0.01782618835568428, -0.03570735082030296, 0.002807246521115303, -0.030264660716056824, -0.01762002520263195, 0.010974719189107418, -0.04818705841898918, -0.011304579675197601, -0.02625136449933052, -0.003855239599943161, -0.014417633414268494, -0.0031061822082847357, -0.011716904118657112, -0.004233204293996096, 0.00784792099148035, -0.014046541415154934, -0.026265107095241547, -0.019681651145219803, 0.022375507280230522, -0.04612543433904648, -0.007944130338728428, -0.01132519543170929, 0.0051506273448467255, 0.008864989504218102, 0.015544655732810497, -0.0025031568948179483, 0.00665217824280262, 0.008562617935240269, -0.019269324839115143, 0.009078023955225945, -0.0013125682016834617, 0.013620471581816673, 0.0008779088384471834, 0.008273989893496037, 0.019021930173039436, 0.03122675232589245, -0.004539011977612972, 0.016218120232224464, -0.00799910631030798, -0.019379278644919395, -0.00219563115388155, -0.0017231752863153815, -0.01823851279914379, 0.017936140298843384, -0.0156958419829607, 0.006982038263231516, -0.02131720632314682, 0.028422942385077477, -0.008198397234082222, -0.026924828067421913, 0.0107341967523098, 0.016712909564375877, 0.011180881410837173, -0.0018004862358793616, 0.015544655732810497, 0.008280862122774124, -0.00931167509406805, -0.028079338371753693, 0.03950074315071106, -0.005580132827162743, 0.00032685353653505445, -0.019997766241431236, -0.017111491411924362, 0.006978602148592472, -0.05052356794476509, -0.016547979786992073, 0.008775652386248112, -0.003659385023638606, 0.0035631759092211723, 0.006370422430336475, -0.010273766703903675, -0.0044187502935528755, -0.04782970994710922, -0.031034335494041443, -0.0006189171108417213, 0.02267787978053093, -0.0352400504052639, -0.007318770047277212, 0.026498759165406227, 0.009792720898985863, -0.03823627904057503, -0.023956086486577988, -0.014967400580644608, 0.003449786454439163, 0.01113277766853571, -0.031171776354312897, -0.02460206300020218, -0.002599366009235382, -0.02675989829003811, -0.018348466604948044, 0.017015282064676285, 0.0013503646478056908, 0.004638656973838806, -0.015723329037427902, 0.012981368228793144, 0.005494231823831797, -0.005459871143102646, -0.00754554895684123, 0.025055620819330215, -0.028477918356657028, -0.00910551194101572, -0.009964522905647755, 0.011359555646777153, -0.006370422430336475, -0.04060027748346329, -0.010603627189993858, 0.012802693992853165, -0.04032539203763008, 0.00888560526072979, -0.016740398481488228, 0.040847670286893845, -0.005666033830493689, 0.02483571507036686, -0.015379725955426693, 0.010301254689693451, 0.028258012607693672, 0.00031955193844623864, 0.010301254689693451, 0.011318323202431202, 0.01352426316589117, 0.0015135767171159387, -0.03666944429278374, 0.00348071102052927, 0.0010419798782095313, 0.016547979786992073, -0.0448884591460228, -0.01990155689418316, 0.018101071938872337, 0.021220996975898743, 0.012273543514311314, 0.007737967185676098, -0.03804386034607887, 0.044393666088581085, 0.004432494752109051, -0.005023493897169828, 0.010486801154911518, -0.019915301352739334, 0.010308126918971539, -0.024588318541646004, 0.0005583568708971143, -0.007305026054382324, -0.012933263555169106, -0.022595414891839027, 0.013070705346763134, -0.01039059180766344, -0.024148505181074142, 0.005377406254410744, -0.009517837315797806, -0.005844708066433668, -0.0011931656626984477, -0.03587228059768677, -0.031116800382733345, -0.022870298475027084, 0.0069717299193143845, 0.007717350963503122, -0.006023382302373648, 0.022430485114455223, -0.01487119123339653, 0.022100623697042465, -0.03251870349049568, 0.010301254689693451, -0.04458608478307724, -0.04697757214307785, -0.00649755634367466, 0.017812443897128105, -0.019269324839115143, 0.006865212693810463, 0.03983060270547867, -0.0067999279126524925, -0.03210638090968132, -0.045218318700790405, 0.038511164486408234, 0.008411431685090065, -0.007380619179457426, -0.0034240162931382656, -0.030292149633169174, -0.025357993319630623, 0.029907312244176865, 0.014513842761516571, -0.012142973951995373, 0.0371367447078228, -0.01166192814707756, -0.014706261456012726, 0.05401458591222763, 0.0031353887170553207, -0.01581953838467598, 0.033398330211639404, 0.014582564122974873, -0.006019946187734604, -0.005597312934696674, 0.014307680539786816, -0.008466408587992191, 0.03562488779425621, 0.009029919281601906, 0.0024584883358329535, 0.016547979786992073, 0.03279358893632889, 0.012871414422988892, -0.0033003187272697687, 0.056900862604379654, -0.0102462787181139, -0.015146074816584587, 0.010995335876941681, 0.0023468169383704662, 0.03337084501981735, 0.009098640643060207, 0.021770764142274857, 0.010342487134039402, 0.02979736030101776, 0.024079784750938416, -0.0052537089213728905, -0.009146744385361671, -0.0053086853586137295, -0.0033449872862547636, -0.010988463647663593, -0.015572143718600273, 0.002889711642637849, -0.0002626424829941243, 0.0024052297230809927, -0.0273508969694376, 0.0003685155534185469, 0.014829958789050579, 0.007483700290322304, 0.0016493003349751234, -0.003748722141608596, -0.03526753932237625, 0.0019155936315655708, -0.02223806641995907, -0.0072019449435174465, -0.03284856677055359, -0.023172669112682343, -0.031556613743305206, 0.019997766241431236, -0.028093082830309868, 0.016506748273968697, -0.04172729700803757, -0.0008517089881934226, 0.02812056988477707, 0.002554697450250387, 0.008012850768864155, 0.017729979008436203, -0.009538454003632069, 0.0033484234008938074, -0.01065860316157341, 0.02223806641995907, 0.0352400504052639, -0.031804006546735764, 0.04771975800395012, 0.0033467053435742855, 0.03878604620695114, -0.0045218318700790405, 0.0002819702203851193, 0.008287734352052212, 0.01744135096669197, -0.029934801161289215, -0.01283018197864294, -0.005641981493681669, -0.007889153435826302, 0.010314999148249626, -0.0063257538713514805, -0.013647960498929024, -0.022334275767207146, -0.008583233691751957, 0.004288180731236935, -0.015530911274254322, 0.02601771242916584, 0.031089311465620995, 0.014211471192538738, -0.01708400249481201, -0.011469509452581406, -0.00010968491551466286, 0.028422942385077477, -0.00988893024623394, -0.01628684066236019, 0.015764562413096428, 0.017606280744075775, 0.0035803562495857477, -0.01803234964609146, -0.005002877674996853, 0.004370646085590124, -0.007841048762202263, -0.022251810878515244, 0.047499850392341614, -0.03556990996003151, 0.017510071396827698, -0.021839484572410583, 0.019640417769551277, 0.005906556732952595, -0.010617370717227459, 0.017922397702932358, 0.02850540727376938], [0.01717676967382431, 0.014579642564058304, 0.0655190721154213, 0.02730419486761093, -0.04424735903739929, 0.022645853459835052, 0.009302938356995583, -0.020433485507965088, 0.002061212435364723, 0.055075597018003464, -0.01416740007698536, 0.029901321977376938, -0.03482075035572052, -0.021079331636428833, -0.027331676334142685, 0.027565279975533485, 0.0027895073872059584, 0.045016881078481674, 0.006826048716902733, 0.006509996019303799, 0.05361900478601456, 0.033474091440439224, 0.034683335572481155, 0.011295444332063198, -0.050925686955451965, -0.01783635839819908, 0.031357910484075546, 0.021450350061058998, 0.03767896443605423, -0.031247980892658234, 0.0895940363407135, -0.018605876713991165, 0.00748220132663846, -0.013019992038607597, 0.037459101527929306, 0.020886952057480812, -0.03133042901754379, 0.0415540412068367, 0.05062337592244148, 0.027812626212835312, -0.015830110758543015, 0.025559034198522568, -0.026122432202100754, -0.032182395458221436, -0.042708322405815125, 0.0886046513915062, 0.027331676334142685, -0.047133058309555054, 0.0002567927003838122, -0.003930044826120138, 0.011000003665685654, 0.015211747959256172, 0.015431609936058521, -0.049359165132045746, 0.03215491399168968, 0.002214085776358843, 0.011281702667474747, 0.0270018819719553, 0.026575898751616478, -0.02378639206290245, 0.015871334820985794, -0.05254717543721199, 0.017822617664933205, 0.03111056610941887, -0.027991265058517456, -0.006815742235630751, -0.017740167677402496, 0.025105567649006844, -0.03520550951361656, 0.0003465413465164602, 0.06722300499677658, 0.0355353020131588, 0.0047304825857281685, -0.03443598747253418, 0.04531919211149216, -0.02566896565258503, 0.009014368988573551, 0.03471081703901291, -0.00999687984585762, -0.021299194544553757, -0.03223736211657524, 0.017616495490074158, 0.028747042641043663, 0.02954404428601265, -0.00872579962015152, 0.010264838114380836, -0.02590256929397583, 0.005232044029980898, -0.0728844702243805, 0.010010621510446072, 0.001409354037605226, 0.017479080706834793, -0.028582146391272545, 0.041966285556554794, 0.01827608421444893, -0.03721175342798233, 0.0447695329785347, -0.01138476375490427, -0.00014063480193726718, 0.0493866503238678, 0.007173019461333752, -0.005032793618738651, 0.012477206066250801, 0.02582012116909027, 0.009138042107224464, -0.09223238378763199, -0.04237852618098259, 0.05150282755494118, 0.04886447638273239, -0.059802643954753876, -0.06535417586565018, -0.00015888513007666916, -0.019883830100297928, 0.06793756037950516, -0.03215491399168968, -0.009770146571099758, -0.03471081703901291, 0.043725185096263885, 0.035123061388731, -0.021312937140464783, -0.030341047793626785, -0.004544973373413086, -0.001064959797076881, -0.05826360359787941, -0.02899438887834549, 0.009983139112591743, -0.026232363656163216, -0.003978140186518431, -0.06689321249723434, -0.05974767729640007, 0.05188758671283722, -0.031357910484075546, 0.024940669536590576, -0.07766648381948471, -0.04246097430586815, 0.006657716352492571, -0.039190519601106644, 0.016132421791553497, 0.0023222994059324265, -0.042625874280929565, 0.019045602530241013, -0.004311369266360998, 0.03036852926015854, 0.009515930898487568, -0.03655216842889786, 0.006832919083535671, 0.021532800048589706, 0.06139664724469185, -0.0037823247257620096, 0.0011018897639587522, -0.023800132796168327, 0.00204918859526515, -0.0027912252116948366, -0.03635978698730469, 0.020886952057480812, -0.037074342370033264, 0.027331676334142685, 0.060352299362421036, 0.030423495918512344, -0.030231116339564323, -0.0019495633896440268, -0.030258597806096077, -0.00616302527487278, -0.0036036863457411528, 0.053976282477378845, 0.0161599051207304, -0.04246097430586815, 0.024212375283241272, -0.04661088436841965, -0.08657091856002808, -0.03259463980793953, -0.03644223511219025, -0.030258597806096077, 0.002609151415526867, -0.0265346746891737, -0.017355408519506454, -0.029021870344877243, -0.008430358953773975, 0.020790763199329376, -0.02116178162395954, 0.00759900314733386, 0.014634608291089535, -0.049166787415742874, -0.04042724519968033, -0.05199752002954483, 0.04438477382063866, 0.0051942551508545876, 0.016187388449907303, 0.020790763199329376, 0.047517817467451096, 0.01600874960422516, 0.03314429521560669, 0.05040351301431656, 0.028884457424283028, -0.03718427196145058, 0.026438483968377113, 0.0078463489189744, 0.0038956915959715843, 0.016187388449907303, -0.010099940933287144, 0.028005005791783333, -0.021848851814866066, 0.06502438336610794, -0.0025198322255164385, -0.018454721197485924, -0.07887572795152664, -0.002564491704106331, 0.028664594516158104, 0.02621862292289734, -0.0180012546479702, -0.010168648324906826, -0.06491445004940033, 0.025930052623152733, 0.017204253003001213, -0.01995253562927246, -0.038283586502075195, -0.011570272035896778, 0.04111431539058685, -0.013906313106417656, 0.011295444332063198, 0.025559034198522568, 0.01345971692353487, 0.004232356324791908, -0.01897689513862133, 0.00027826367295347154, 0.006832919083535671, -0.0014557312242686749, -0.054168663918972015, 0.015033109113574028, -0.05469083786010742, -0.0011594319948926568, 0.0010666773887351155, -0.004792318679392338, -0.028087453916668892, 0.0028410376980900764, -0.006314180791378021, -0.02594379335641861, -0.028114937245845795, -0.007365399040281773, 0.026273587718605995, 0.05892319232225418, 0.018166152760386467, -0.02081824466586113, 0.00180012546479702, -0.011068711057305336, -0.007832607254385948, -0.015019367448985577, -0.020598383620381355, 0.03259463980793953, 0.02140912599861622, 0.024830739945173264, -0.022013748064637184, 0.00267098774202168, -0.015294196084141731, 0.0006140695186331868, -0.02073579654097557, -0.010574019514024258, -0.01929294876754284, 0.020900694653391838, 1.4613674466090742e-05, -0.008299815468490124, -0.013198629952967167, -0.04182887077331543, 0.0383385494351387, -0.037349168211221695, -0.048809509724378586, 0.05122799798846245, -0.025064343586564064, -0.03482075035572052, 0.06266085803508759, -0.02456965297460556, 0.005970645230263472, 0.03853093087673187, -0.01967770792543888, -0.05177765712141991, 0.013528424315154552, -0.009694568812847137, 0.0008000080706551671, 0.0019409750821068883, -0.041801389306783676, -0.029131801798939705, -0.0008420911617577076, 0.04023486748337746, -0.00902123935520649, -0.013294819742441177, -0.002385853324085474, -0.02801874838769436, 0.0038304198533296585, -0.017712686210870743, 0.03869582712650299, 0.03608495742082596, 0.00616302527487278, -0.011419116519391537, -0.008210496045649052, 0.020282329991459846, -0.006214555352926254, -0.019883830100297928, -0.03146784380078316, 0.01607745699584484, 0.007530296221375465, 0.0415540412068367, 0.03897065669298172, -0.01416740007698536, -0.019787639379501343, -0.036057475954294205, -0.013349785469472408, 0.009935043752193451, 0.014346038922667503, -0.04017990082502365, 0.001793254865333438, -0.04149907827377319, 0.021340418606996536, 0.04273580387234688, -0.013466588221490383, -0.047407884150743484, 0.026548415422439575, 0.02751031517982483, 0.0443572923541069, -0.03627733886241913, 0.01056714914739132, 0.017011873424053192, 0.0014136481331661344, 0.015830110758543015, -0.04911182075738907, 0.07436854392290115, -0.024047479033470154, 0.00532136345282197, 0.03361150249838829, -0.02069457247853279, -0.013569648377597332, -0.017272960394620895, 0.010299191810190678, 0.019746415317058563, 0.00884260144084692, -0.020337296649813652, -0.007344787009060383, -0.03594754636287689, 0.03627733886241913, 0.03083573840558529, 0.014277331531047821, -0.01565147377550602, -0.022041231393814087, -0.0023222994059324265, -0.019883830100297928, -0.020433485507965088, 0.028307316824793816, -0.0008201907621696591, 0.051942553371191025, 0.0017417245544493198, 0.04320301115512848, -0.016049973666667938, 0.029434112831950188, -0.04144411161541939, 0.01901811920106411, -0.0701911523938179, 0.011797006241977215, -0.018440980464220047, -0.02296190708875656, -0.03451843559741974, -0.013356656767427921, -0.006008434109389782, 0.006874143611639738, 0.006685198750346899, 0.014991885051131248, 0.0025559035129845142, -0.00021696407929994166, 0.010168648324906826, 0.005475954152643681, 0.017465339973568916, -0.010354157537221909, 0.0415540412068367, 0.06634356081485748, -0.03498564660549164, -0.029901321977376938, -0.04053717851638794, 0.005785136017948389, -0.018014997243881226, 0.019773898646235466, -0.02981887385249138, 0.018688326701521873, 0.05051344633102417, 0.012573395855724812, 0.047600265592336655, 0.0027568715158849955, 0.04977140948176384, 0.04847971722483635, -0.05414117872714996, -0.013975020498037338, 0.005764523986726999, -0.005142725072801113, -0.015321679413318634, 0.039850108325481415, -0.01736914925277233, 0.017479080706834793, -0.02680950239300728, 0.03427109122276306, 0.0247208084911108, 0.03729420527815819, 0.025064343586564064, -0.019114309921860695, 0.03696440905332565, -0.01071830466389656, -0.018097445368766785, -0.015596507117152214, -0.020213622599840164, -0.022233610972762108, -0.002305122558027506, -0.026012500748038292, 0.027840109542012215, -0.010086199268698692, 0.026699570938944817, -0.00798376277089119, 0.04081200435757637, -0.009172394871711731, 0.003854467300698161, 0.01220924872905016, -0.01732792519032955, 0.03886072337627411, -0.038943175226449966, -0.0007381716859526932, 0.03259463980793953, -0.007056217174977064, 0.006668022368103266, -0.002336040837690234, -0.03803623840212822, 0.021381642669439316, 0.013549036346375942, -0.03344660624861717, 0.002923486288636923, -0.09008872509002686, -0.048342302441596985, 0.03581013157963753, 0.04210370033979416, 0.019691448658704758, -0.06029733270406723, 0.007516554556787014, 0.033089328557252884, -0.026465967297554016, 0.021780144423246384, -0.04375267028808594, -0.011123676784336567, -0.039108071476221085, 0.012937542982399464, 0.03168770670890808, 0.012910060584545135, 0.047517817467451096, -0.0025163968093693256, 0.04006997123360634, 0.006272956263273954, 0.005864149425178766, 0.0031313251238316298, 0.00904185138642788, -0.022975647822022438, -0.0017984078731387854, -0.03825610131025314, -0.007695192936807871, 0.008368522860109806, -0.05864836275577545, 0.045016881078481674, -0.05991257354617119, 0.024033736437559128, 0.03363898769021034, 0.07096067070960999, 0.029516562819480896, 0.013033733703196049, 0.005482824984937906, -0.03630482032895088, -0.011020615696907043, -0.03130294755101204, -0.0045621502213180065, 0.01984260417521, -0.023580269888043404, 0.039108071476221085, -0.001441989908926189, 0.021505316719412804, -0.058868225663900375, -0.013178017921745777, -0.012937542982399464, -0.03267708793282509, 0.0009103688062168658, -0.002353217452764511, 0.03635978698730469, -0.03581013157963753, -0.041609007865190506, 0.030890703201293945, 0.052767038345336914, 0.052492208778858185, -0.003641475224867463, -0.04259838908910751, -0.0028118372429162264, -0.047105573117733, 0.00245971349067986, 0.041966285556554794, -0.016091197729110718, -0.019073085859417915, -0.032374776899814606, -0.0337214358150959, -0.039740175008773804, 0.028774525970220566, -0.02202749066054821, 0.08013994246721268, -0.06881701201200485, 0.019691448658704758, -0.022371025756001472, 0.05298690125346184, -0.024487202987074852, 0.010333544574677944, 0.02194504253566265, -0.03133042901754379, 0.01677826978266239, -0.07513806223869324, -0.01596752554178238, 0.044632118195295334, 0.03204498067498207, 0.00177092500962317, 0.01355590671300888, 0.010848848149180412, -0.013693321496248245, -0.0069806394167244434, -0.005565273575484753, -0.004115554038435221, -0.023030612617731094, -0.004033105447888374, 0.010464088059961796, -0.013885701075196266, 0.022096198052167892, -0.03462836891412735, -0.03407871350646019, -0.020488452166318893, 0.022096198052167892, 0.026740795001387596, -0.038091205060482025, -0.029791390523314476, 0.05254717543721199, 0.007557779084891081, -0.004239226691424847, 0.01406433992087841, -0.027441607788205147, -0.0034903197083622217, -0.02625984698534012, 0.006729858461767435, -0.022082455456256866, -7.219611143227667e-05, -0.0035040611401200294, -0.015252972021698952, -0.002363523468375206, 0.02484448067843914, 0.0300112534314394, 0.0009764994028955698, 0.008808247745037079, -0.005049970466643572, -0.007303562480956316, 0.033666469156742096, -0.021175522357225418, -0.023497821763157845, 0.01402998622506857, -0.000995393842458725, -0.044742051512002945, 0.02973642386496067, -0.004108683206140995, 0.003213773714378476, -0.028224868699908257, -0.008313557133078575, 0.016297319903969765, -0.023305442184209824, 0.015569024719297886, -0.002945816144347191, 0.01050531305372715, 0.005950033199042082, 0.012999380007386208, -0.006953156553208828, 0.014895695261657238, 0.05106310173869133, -0.035700198262929916, 0.0337214358150959, 0.0014540136326104403, 0.039108071476221085, -0.07684200257062912, -0.0003003787714987993, -0.0098045002669096, -0.018564652651548386, -0.020089950412511826, -0.006114930380135775, -0.03341912478208542, -0.011693945154547691, 0.00044960196828469634, 0.001980481669306755, -0.0079631507396698, 0.006898190826177597, 0.03723923861980438, 0.028046229854226112, -0.014469711109995842, 0.035865094512701035, 0.0021711436565965414, 0.008760152384638786, 0.023250475525856018, -0.025215499103069305, -0.005733605939894915, 0.0017468775622546673, 0.02734541893005371, 0.0030935362447053194, -0.004771706648170948, -0.004768271464854479, -0.0332542285323143, -0.020886952057480812, 0.0024786079302430153, 0.0038441612850874662, -0.0014411309966817498, 0.009990009479224682, 0.03363898769021034, 0.003443942405283451, 0.01850968785583973, 0.008148659951984882, -0.01490943692624569, -0.015156782232224941, 0.012477206066250801, -0.016049973666667938, 0.0039437864907085896, 0.002420207019895315, -0.01603623293340206, 0.012374144978821278, -0.022371025756001472, 0.014758281409740448, -0.022247353568673134, 0.010766400024294853, 0.00630043912678957, -0.0069703334011137486, -0.02476203255355358, 0.04163648933172226, 0.0037136177998036146, 0.005496566649526358, -0.003768583294004202, 0.015088074840605259, -0.011151159182190895, 0.0026812937576323748, -0.002207214944064617, 0.008581514470279217, 0.0003467560454737395, 0.0006235167384147644, -0.012662715278565884, 0.030066218227148056, 0.004771706648170948, 0.03685447946190834, -0.01643473282456398, 0.03248470649123192, 0.029763907194137573, -0.006963462568819523, 0.01681949384510517, -0.0010744070168584585, 0.003155372804030776, 0.009138042107224464, -0.011377892456948757, 0.0075440374203026295, -0.009777017869055271, 0.022632112726569176, -0.016929425299167633, -0.017204253003001213, 0.013191759586334229, 0.005046535283327103, 0.05394880101084709, -0.04070207476615906, 0.006255779881030321, -0.013975020498037338, 0.007104312069714069, 0.03262212127447128, -0.014772022143006325, 0.01706683821976185, -0.016063716262578964, 0.024308566004037857, -0.02757902257144451, -0.053701452910900116, 0.021848851814866066, 0.07101564109325409, 0.010986262001097202, -0.020845727995038033, 0.00535915233194828, -0.023140544071793556, 0.021532800048589706, -0.015307937748730183, 0.03451843559741974, -0.020570900291204453, -0.009405999444425106, 0.0029664281755685806, 0.0033357287757098675, 0.008547160774469376, -0.028692077845335007, 0.035232990980148315, -0.0572192557156086, -0.008368522860109806, -0.004648033995181322, -0.0017623365856707096, -0.012003127485513687, -0.005331669468432665, -0.0010993132600560784, 0.01177639327943325, 0.04946909844875336, 0.01042973529547453, -0.007509683724492788, -0.03721175342798233, -0.061176784336566925, 0.0369369275867939, 0.013033733703196049, -0.03168770670890808, -0.04367022216320038, -0.03861337900161743, -0.012779517099261284, 0.012092445977032185, 0.01681949384510517, 0.05793381109833717, 0.0015854159137234092, 0.001299422699958086, -0.009460965171456337, -0.04358777031302452, -0.002198626520112157, -0.028032489120960236, 0.0037823247257620096, -0.011948161758482456, -0.008169271983206272, 0.0071592777967453, 0.010711434297263622, -0.01519800629466772, 0.03575516492128372, -0.015404127538204193, -0.010409122332930565, 0.030258597806096077, 0.013549036346375942, -0.018715808168053627, 0.02766147069633007, -0.01791880652308464, 0.021903816610574722, 0.017231736332178116, 0.00904185138642788, 0.030313564464449883, 0.007626486010849476, -0.008760152384638786, 0.03592006117105484, -0.024349790066480637, -0.014050598256289959, -0.015665214508771896, 0.027249228209257126, -0.026108691468834877, -0.04924923554062843, -0.014510935172438622, -0.01925172470510006, 0.02344285510480404, -0.008368522860109806, -0.02128545381128788, 0.030066218227148056, -0.011041227728128433, 0.02566896565258503, -0.026191139593720436, 0.01230543851852417, -0.011054969392716885, -0.035782646387815475, 0.04831482097506523, 0.0067126816138625145, 0.0194028802216053, 0.03594754636287689, -0.013865089043974876, 0.021931299939751625, -0.025600258260965347, 0.020447228103876114, -0.013926925137639046, -0.013074957765638828, 0.0023910063318908215, -0.007461588829755783, -0.014895695261657238, 0.002275922102853656, 0.03122049756348133, 0.009172394871711731, 0.022824492305517197, 0.00798376277089119, 0.023882580921053886, 0.006063399836421013, -0.0014514371287077665, -0.030725806951522827, -0.0057885716669261456, -0.04125173017382622, -0.015940042212605476, -0.026149915531277657, 0.025174275040626526, 0.017822617664933205, 0.0038785147480666637, 0.006228297017514706, 0.012113058008253574, 0.03317178040742874, 0.003517802571877837, 0.0071936314925551414, 0.01791880652308464, 0.0022793575190007687, -0.03913555294275284, 0.009770146571099758, 0.011371022090315819, -0.025133050978183746, -0.03067084029316902, -0.0006333934143185616, -0.008279203437268734, -0.06491445004940033, -0.013940666802227497, 0.04358777031302452, -0.008650221861898899, -0.014813246205449104, 0.0073310453444719315, 0.030643358826637268, 0.04246097430586815, 0.00668176356703043, -0.05732918903231621, -0.0023188639897853136, -0.0051805139519274235, -0.034765783697366714, -0.005891632288694382, 0.038173653185367584, -1.1473546237539267e-06, 0.0029509691521525383, 0.015830110758543015, -0.038201138377189636, -0.022989388555288315, 0.03009370155632496, -0.027812626212835312, -0.0011285138316452503, 0.03267708793282509, 0.006173331290483475, -0.008299815468490124, 0.013961278833448887, -0.01694316603243351, 0.017795134335756302, -0.06343037635087967, 0.005534355528652668, 0.025806380435824394, -0.03336415812373161, 0.015678955242037773, 0.01576140522956848, 0.048259854316711426, 0.031825121492147446, -0.002930356888100505, 0.0013604002306237817, 0.026630865409970284, 0.008203625679016113, 0.02359401248395443, 0.0466383658349514, 3.6634828575188294e-05, -0.02011743374168873, 0.018207376822829247, 0.04394504800438881, -0.04268083721399307, 0.005008746404200792, 0.007729546632617712, -0.0062626502476632595, -0.006468771491199732, 0.006709246430546045, -0.022439733147621155, -0.010993133299052715, 0.0022054973524063826, 0.006805436220020056, 0.00874641165137291, -0.005915679503232241, 0.012793258763849735, 0.011831359006464481, -0.0022123679518699646, 0.0006479936419054866, 0.01698439009487629, -0.012731421738862991, 0.0052045611664652824, -0.010065587237477303, 0.031797636300325394, -0.01732792519032955, 0.019045602530241013, 0.027249228209257126, -0.016324803233146667, 0.007248597219586372, 0.02399251237511635, 0.003978140186518431, 0.05510307848453522, 0.0041808257810771465, -0.04487946629524231, 0.0031124306842684746, -0.009014368988573551, 0.04883699491620064, 0.0006857825792394578, 0.012277955189347267, 0.031000634655356407, 0.017973773181438446, 0.03130294755101204, -0.017671460285782814, -0.02039226144552231, -0.017231736332178116, 0.010161777026951313, 0.038833241909742355, 0.023291699588298798, -0.006372581701725721, 0.0028633675538003445, 0.017506564036011696, 0.008499066345393658, 0.0003345175937283784, -0.00379950157366693, 0.014978143386542797, -0.02378639206290245, -0.01948532834649086, -0.00962586235255003, -0.0013277643593028188, -0.016874458640813828, -0.013061216101050377, -0.029846355319023132, -0.005424424074590206, -0.01944410428404808, 0.018564652651548386, 0.00904185138642788, -0.013013120740652084, 0.003084947820752859, -0.0077707706950604916, 0.0313853956758976, -0.015816370025277138, -0.0019392573740333319, -0.016063716262578964, -0.002492349362000823, -0.002301687141880393, -0.018358532339334488, 0.0013011402916163206, 0.0064619011245667934, -0.0034267655573785305, 0.06524424254894257, 0.00497782789170742, 0.01073891669511795, -0.02981887385249138, -0.001496955519542098, 0.010065587237477303, -0.007908185012638569, 0.014950660988688469, 0.01768520288169384, -0.03729420527815819, -0.00898001529276371, 0.009935043752193451, 0.01859213598072529, 0.013329173438251019, 0.0067436001263558865, 0.011000003665685654, -0.012030609883368015, 0.00025915453443303704, -0.0026984706055372953, -0.01250468846410513, 0.025050600990653038, 0.041801389306783676, 0.030808255076408386, -0.03712930530309677, -0.03842100128531456, -0.04765523225069046, -0.012683327309787273, 0.02554529346525669, -0.0037136177998036146, 0.015871334820985794, 0.06255092471837997, -0.03399626538157463, 0.007674580905586481, -0.018963154405355453, -0.017657719552516937, 0.015170523896813393, 0.036139924079179764, 0.011068711057305336, 0.02636977843940258, -0.004486572463065386, 0.012353532947599888, 0.013899442739784718, 0.027537798509001732, -0.029159285128116608, 0.0337214358150959, 0.05441600829362869, -0.0070493463426828384, -0.035590268671512604, -0.03133042901754379, 0.0161599051207304, -0.009089946746826172, -0.014689574018120766, 0.051475346088409424, 0.0012023738818243146, -0.0035006257239729166, 0.012092445977032185, 0.01831730827689171, 0.0053385403007268906, -0.005166772287338972, 0.024349790066480637, 0.010010621510446072, 0.008512807078659534, 0.03932793438434601, -0.010972521267831326, -0.008052470162510872, -0.007715804968029261, 0.027963781729340553, 0.025641482323408127, 0.03589257970452309, -7.278656266862527e-05, 0.01089694257825613, -0.010608373209834099, 0.011061839759349823, 0.02691943384706974, 0.015527800656855106, 0.024899445474147797, 0.02206871472299099, -0.033006880432367325, 0.010635856539011002, -0.009522801265120506, 0.02276952750980854, 0.019966278225183487, 0.02500937692821026, 0.009007498621940613, 0.004428171552717686, -0.02852717973291874, 0.03391381353139877, 0.012113058008253574, 0.02272830158472061, -0.04716053977608681, -0.033666469156742096, -0.0475727841258049, 0.005098065361380577, 0.0039987522177398205, -0.04158152639865875, 0.000713694782461971, 0.001691053039394319, -0.039465345442295074, -0.014579642564058304, -0.014565900899469852, 0.011103063821792603, 0.0012719398364424706, 0.018495945259928703, 0.014112434349954128, 0.03635978698730469, -0.007365399040281773, -0.004785448312759399, -0.023058095946907997, 0.03712930530309677, 0.017479080706834793, -0.0021969089284539223, 0.005706123076379299, 0.012827612459659576, 0.03314429521560669, 0.015156782232224941, 0.016462216153740883, -0.00803872849792242, -0.021780144423246384, -0.03012118488550186, 0.009777017869055271, -0.0521898977458477, 0.0012126800138503313, -0.055542804300785065, 0.018605876713991165, 0.026246104389429092, -0.01580262929201126, 0.0056305453181266785, 0.010470959357917309, 0.0065890089608728886, 0.01855091191828251, -0.007090570870786905, 0.03803623840212822, -0.031000634655356407, -0.008760152384638786, -0.013026862405240536, 0.00874641165137291, -0.031907569617033005, -0.006884449627250433, -0.011309185065329075, 0.01249781809747219, 0.03784386068582535, -0.044082462787628174, -0.026699570938944817, -0.004527796525508165, -0.008732669986784458, 0.006084011867642403, -0.020790763199329376, 0.007564649451524019, 0.014332297258079052, -0.042708322405815125, -0.013157405890524387, 0.01161836739629507, 0.014428487047553062, 0.03196253255009651, 0.0031416313722729683, -0.013164276257157326, -0.01514304056763649, -0.013356656767427921, 0.02636977843940258, 0.007949409075081348, -0.009371645748615265, 0.0029183332808315754, 0.021725179627537727, 0.016915682703256607, 0.013425363227725029, -0.012016868218779564, -0.0009722051909193397, -0.007605873979628086, 0.008416617289185524, 0.004740788601338863, -0.009062464348971844, 0.0355353020131588, 0.011645849794149399, 0.04171894118189812, -2.3148382410909107e-07, 0.004778577480465174, 0.03388633206486702, -0.02687820978462696, 0.01933417282998562, -0.009062464348971844, 0.02253592200577259, 0.012786387465894222, 0.018688326701521873, -0.017286701127886772, 0.00630043912678957, -0.028389764949679375, 0.012298567220568657, 0.004569021053612232, 0.018372273072600365, -0.0031880084425210953, 0.016846975311636925, -0.005754217971116304, 0.004290757235139608, -0.0030402883421629667, 0.01177639327943325, 0.012662715278565884, -0.012772646732628345, 0.008533419109880924, 0.012271084822714329, 0.013191759586334229, 0.007282950449734926, -0.02613617293536663, -0.032264843583106995, 0.02907683700323105, -0.0011036074720323086, -0.014662090688943863, -0.0143185555934906, 0.03149532526731491, 0.024679582566022873, -0.01819363422691822, -0.008237979374825954, -0.06991632282733917, -0.0020406004041433334, 0.006008434109389782, -0.011068711057305336, -0.00997626781463623, -0.001423954265192151, -0.03028608113527298, -0.006063399836421013, 0.005527484696358442, -0.006853531114757061, 0.024954412132501602, 0.0033838236704468727, -0.020955659449100494, 0.0143185555934906, -0.003151937387883663, 0.014249848201870918, 0.08789009600877762, 0.004706434905529022, -0.02488570474088192, 0.031825121492147446, 0.030973151326179504, -0.027166780084371567, 0.00017294861027039587, 0.03067084029316902, -0.011900066398084164, -0.01418114174157381, -0.033748917281627655, 0.023222994059324265, 0.029131801798939705, -0.0031931616831570864, 0.01709432154893875, -0.002689882181584835, -0.00482323719188571, 0.03363898769021034, 0.024129927158355713, -0.008203625679016113, 0.005369458347558975, -0.017850099131464958, -0.02836228348314762, 0.012999380007386208, -0.023113062605261803, -0.013425363227725029, 0.016269836574792862, 0.0017760780174285173, -0.013645226135849953, 0.004957215860486031, -0.0020663654431700706, 0.0088838255032897, -0.003978140186518431, 0.01148095354437828, -0.009639603085815907, -0.0143185555934906, 0.008856343105435371, -0.010326674208045006, 0.034298576414585114, 0.02397877164185047, -0.013411622494459152, 0.020488452166318893, -0.007908185012638569, -0.00338897667825222, 0.009969397448003292, 0.03330919146537781, -0.005317928269505501, -0.0088838255032897, 0.008354781195521355, -0.021780144423246384, -0.005187384784221649, -0.010312932543456554, -0.013700191862881184, -0.02206871472299099, -0.0246933251619339, -0.00669894041493535, -0.0012161153135821223, 0.002366958884522319, -0.04858964681625366, 0.0007639368413947523, 0.004215179476886988, 0.038201138377189636, -0.05666960030794144, -0.0014119305415078998, 0.020241105929017067, -0.011590884998440742, 0.009660215117037296, 0.01651718281209469, -0.020763279870152473, -0.004964086692780256, -0.014689574018120766, -0.019622743129730225, 0.012587137520313263, 0.008608996868133545, 0.007537166588008404, 0.045209258794784546, -0.03701937571167946, 0.026988141238689423, -0.0003493325784802437, -0.008890695869922638, -0.011460341513156891, -0.017932547256350517, 0.016503440216183662, 0.04999127238988876, -0.024940669536590576, -0.038998138159513474, 0.018248600885272026, 0.011687074787914753, -0.033474091440439224, 0.019581517204642296, 0.013961278833448887, -0.008011245168745518, 0.013830735348165035, 0.024116184562444687, 0.006716117262840271, 0.018990637734532356, 0.0014376956969499588, -0.058593399822711945, -0.007660839706659317, -0.006922238506376743, -0.000614928372669965, -0.009845724329352379, -0.011419116519391537, 0.015211747959256172, -0.02582012116909027, 0.011989385820925236, -0.006190508138388395, 0.009570896625518799, -0.02871955931186676, -0.013954408466815948, -0.0071936314925551414, -0.019581517204642296, 0.01861961930990219, -0.013988761231303215, -0.0194028802216053, 0.008677704259753227, 0.028197385370731354, -0.011151159182190895, 0.006173331290483475, 0.0004161072720307857, 0.0007609309395775199, -0.004094942007213831, 0.018633360043168068, 0.008657092228531837, -0.027029365301132202, 0.018757032230496407, -0.014153658412396908, 0.026246104389429092, -0.014043726958334446, 5.6146567658288404e-05, 0.03545285388827324, 0.02422611601650715, -0.01596752554178238, 0.00484041403979063, -0.014936919324100018, 0.05427859351038933, -0.00028126960387453437, 0.0033030929043889046, 0.00890443753451109, -0.0070699588395655155, -0.0038956915959715843, 0.018207376822829247, -0.008272332139313221, -0.006355404853820801, -0.03410619497299194, 0.00180012546479702, -0.013377268798649311, -0.013816993683576584, 0.017740167677402496, 0.012332920916378498, 0.005232044029980898, 0.011687074787914753, -0.0009490165393799543, 0.013700191862881184, -0.02527046389877796, -0.030341047793626785, 0.020172398537397385, -0.012779517099261284, 0.02109307423233986, -0.03776141256093979, 0.009852595627307892, 0.002001093700528145, -0.02778514288365841, -0.016874458640813828, 0.03847596421837807, -0.010072457604110241, -0.0010306062176823616, 0.012037480250000954, -0.014414745382964611, -0.0028015312273055315, -0.03932793438434601, -0.05150282755494118, 0.01921050064265728, 0.0438351184129715, -0.024445978924632072, 0.011432858183979988, 0.02899438887834549, 0.0023102755658328533, -0.0247208084911108, 0.0062935687601566315, -0.024322306737303734, 0.008107435889542103, -0.009193007834255695, -0.035865094512701035, -0.008093694224953651, 0.0013363526668399572, 0.017341667786240578, 0.00283244950696826, 0.027482831850647926, 0.003905997611582279, 0.009268585592508316, 0.005098065361380577, 0.011838230304419994, -0.03399626538157463, 0.007372269872575998, -0.024899445474147797, 0.012855094857513905, -0.009131170809268951, 0.0036105571780353785, -0.017341667786240578, 0.004115554038435221, -0.00815553031861782, -0.006692069582641125, -0.022906940430402756, 0.010415993630886078, -0.046775780618190765, -0.010835106484591961, -0.00662336265668273, 0.039492830634117126, 0.0014763433719053864, 0.01842723973095417, -0.023470338433980942, 0.03303436562418938, 0.019554035738110542, -0.028307316824793816, 0.012903190217912197, -0.01859213598072529, 0.02488570474088192, -0.026149915531277657, -0.01952655240893364, -0.01435977965593338, -0.0175615306943655, 0.046858228743076324, -0.00788070261478424, -0.004163648933172226, 0.017575271427631378, -0.009509059600532055, 0.019925054162740707, 0.037541549652814865, -0.03773392736911774, 0.012353532947599888, 0.009220490232110023, -0.007468459662050009, -0.005558402743190527, -0.03256715461611748, 0.006417241413146257, -0.03839351609349251, 0.02499563619494438, 0.012058092281222343, -0.005166772287338972, -0.0036071217618882656, -0.006159589625895023, 0.00407776515930891, 0.01713554561138153, 0.011391634121537209, -0.00450031366199255, -0.011961902491748333, -0.020089950412511826, -0.026438483968377113, -0.018921930342912674, 0.0032446919940412045, 0.019663967192173004, 0.015541541390120983, -0.0031089955009520054, 0.004053717944771051, -0.019086826592683792, -0.009790758602321148, -0.019086826592683792, -0.02007620967924595, -0.005871020257472992, -0.014813246205449104, -0.022604629397392273, 0.010010621510446072, -0.00960525032132864, -0.01402998622506857, 0.05320676416158676, -0.004101812839508057, -0.033858850598335266, -0.04905685409903526, 0.0281699039041996, -0.017355408519506454, 0.01588507741689682, -0.015074333176016808, -0.02035103738307953, -0.0265346746891737, 0.009241102263331413, -0.0019736108370125294, -0.007667710073292255, 0.012222989462316036, 0.03188008442521095, -0.0012547631049528718, 0.010038104839622974, -0.012133670039474964, -0.007708934601396322, 0.027716437354683876, 0.015211747959256172, -0.026891952380537987, 0.011089323088526726, 0.0194028802216053, 0.0037307944148778915, 0.048617132008075714, 0.01089694257825613, -0.00436289981007576, -0.009034981019794941, 0.016970649361610413, 0.03204498067498207, -0.01312992349267006, 0.028197385370731354, -0.005922550335526466, -0.016338543966412544, -0.005500001832842827, 0.013432234525680542, 0.02742786705493927, -0.004342287313193083, -0.001181761734187603, 0.014813246205449104, 0.007839477621018887, 0.024555910378694534, 0.00406058831140399, -0.02727671153843403, 0.005998128093779087, 0.004173954948782921, -0.02636977843940258, -0.013294819742441177, 0.005785136017948389, 0.014717056415975094, -0.011219866573810577, -0.011982514522969723, 0.01440100371837616, 0.03358402103185654, -0.005520613864064217, -0.006489383988082409, -0.011590884998440742, -0.03242974355816841, 0.04438477382063866, -0.013748287223279476, 0.0123604042455554, -0.013088698498904705, 0.001032323925755918, -0.016530923545360565, 0.029489079490303993, -0.047682713717222214, 0.04509932920336723, -0.04738040268421173, -0.008925049565732479, 0.04292818531394005, 0.0265346746891737, 0.01418114174157381, 0.024239858612418175, -0.01772642694413662, -0.009735793806612492, 0.00884260144084692, 0.013452846556901932, 0.0443572923541069, -0.011192383244633675, 0.04487946629524231, 0.015459093265235424, 0.01519800629466772, -0.02605372481048107, 0.016998132690787315, 0.003421612549573183, 0.030341047793626785, -0.041031867265701294, -0.010945037938654423, 0.01635228469967842, -0.009962527081370354, 0.010787012055516243, -0.023374149575829506, 0.0008008669246919453, -0.031825121492147446, -0.017108062282204628, 0.020598383620381355, -0.019183017313480377, 0.0011319491313770413, 0.02880200743675232, -0.023539045825600624, 0.007186760660260916, -0.0015819804975762963, 0.008691445924341679, 0.013658967800438404, 0.0013947536936029792, -5.9313533711247146e-05, 0.012724551372230053, -0.020612124353647232, 0.016462216153740883, -0.012752033770084381, -0.0143185555934906, 0.009158654138445854, -0.006523737218230963, -0.00038948326255194843, 0.017341667786240578, -0.019416620954871178, 0.019100569188594818, -0.025462843477725983, 0.03012118488550186, 0.010409122332930565, 0.00016758085985202342, 0.014607124961912632, 0.011364150792360306], [-0.0006688098656013608, 0.019916776567697525, 0.039568349719047546, 0.04996432363986969, -0.01355852372944355, -0.017105620354413986, -0.006434497889131308, 0.04062916338443756, 0.038083210587501526, 0.04060264304280281, -0.009640144184231758, -0.001868026447482407, -0.011125283315777779, -0.035086411982774734, -0.007452215533703566, 0.06370186060667038, -0.02133561484515667, 0.04412984848022461, -0.02453131601214409, 0.0162437092512846, 0.037393681704998016, 0.003384658368304372, -0.012265658006072044, -0.0065936194732785225, -0.04110652953386307, -0.014864650554955006, -0.0008316612802445889, 0.00792958214879036, -0.014294463209807873, -0.02146821655333042, 0.06656605750322342, -0.009156147949397564, 0.008108594454824924, 0.01668129488825798, 0.04869134724140167, 0.03391951695084572, -0.03840145468711853, -0.0020984220318496227, 0.013213759288191795, 0.01027000229805708, -0.015302236191928387, 0.03670415282249451, -0.024106990545988083, 0.002643746556714177, -0.05479102209210396, 0.07377959042787552, 0.04214082285761833, -0.024120250716805458, 0.01134407613426447, 0.028748048469424248, -0.020844988524913788, -0.00549302576109767, -0.00425319978967309, -0.03267306089401245, 0.032885223627090454, 0.0060797883197665215, 0.030684033408761024, 0.010057839564979076, -0.002468049293383956, -0.02601645514369011, -0.004518403206020594, -0.010309782810509205, -0.03105531819164753, -0.004074187483638525, 0.020142199471592903, -0.006981479469686747, -0.03524553403258324, 0.0015506112249568105, -0.04047004133462906, 0.01780840940773487, 0.03787104785442352, 0.04630451649427414, 0.014387284405529499, -0.011184954084455967, -0.0004131371679250151, -0.00503886491060257, 0.027156827971339226, 0.02177320048213005, -0.05083949491381645, -0.02276771329343319, -0.02755463309586048, 0.011277775280177593, -0.009852306917309761, 0.0024746793787926435, 0.007836760953068733, -0.00774393929168582, -0.030630992725491524, 0.0007541722152382135, -0.06211063638329506, 0.01665477454662323, 0.01568678207695484, 0.03691631555557251, -0.006417922675609589, 0.03163876757025719, 0.025512568652629852, -0.058875154703855515, 0.02598993480205536, 0.016813896596431732, -0.020884769037365913, 0.04683492332696915, 0.001962505280971527, 0.0012555724242702127, 0.018736621364951134, -0.011602649465203285, 0.03463556617498398, -0.018630539998412132, -0.036465469747781754, 0.015951985493302345, 0.01695975847542286, -0.032142654061317444, -0.06120894476771355, 0.010634656995534897, -0.025525828823447227, 0.01568678207695484, -0.02292683534324169, -0.03240785747766495, -0.04468677565455437, -0.014334243722259998, 0.06295929104089737, -0.0026023085229098797, -0.038852300494909286, -0.004107337910681963, -0.026056235656142235, -0.06126198545098305, 0.009129627607762814, 0.010236851871013641, 0.018431637436151505, -0.01676085591316223, -0.03344215080142021, -0.020195240154862404, 0.010283262468874454, 0.012510971166193485, 0.04070872440934181, -0.01599176600575447, -0.01849793829023838, -0.013094417750835419, -0.01446684543043375, -0.013737536035478115, -0.03328302875161171, -0.035139452666044235, -0.000909979164134711, 0.02182624116539955, 0.01405578013509512, 0.014214902184903622, -0.060996782034635544, -0.02494238130748272, 0.0004392431292217225, 0.058822114020586014, 0.015103333629667759, -0.023908087983727455, -0.010879970155656338, 0.013220389373600483, -0.04110652953386307, -0.0020172034855931997, -0.002161407843232155, -0.008997025899589062, 0.022940095514059067, 0.053836289793252945, -0.019810695201158524, 0.007989252917468548, 0.014930951409041882, -0.02681206353008747, -0.005887515842914581, 0.009739595465362072, 0.018352076411247253, 0.00836716778576374, -0.04940739646553993, 0.03134704381227493, -0.06916505098342896, -0.04105348885059357, -0.012544121593236923, -0.08873706310987473, -0.04434201121330261, -0.0072599430568516254, -0.02744855172932148, -0.032964784651994705, 0.006815727334469557, -0.02233012765645981, 0.02343072183430195, -0.05012344568967819, -0.016482392325997353, -0.010283262468874454, -0.06264104694128036, -0.05142294242978096, -0.0648687556385994, 0.020513484254479408, -0.018206214532256126, 0.017609506845474243, -0.009434611536562443, 0.016455871984362602, 0.004031091928482056, 0.05274895578622818, 0.018816182389855385, 0.013180608861148357, -0.05548055097460747, 0.02808503992855549, -0.008678781799972057, 0.011271145194768906, 0.004528348334133625, 0.01556743960827589, 0.019386369735002518, -0.024438494816422462, 0.053067199885845184, 0.005860995501279831, -0.034317322075366974, -0.03466208651661873, 0.002778005786240101, -0.0044885678216814995, 0.00741243502125144, 0.011476677842438221, 0.005582531914114952, -0.06916505098342896, 0.010097620077431202, -0.014267942868173122, -0.022449469193816185, 0.01949245110154152, -0.04927479475736618, 0.09473066031932831, 0.01103909220546484, -0.01731778308749199, 0.024266112595796585, 0.022674892097711563, -0.004220049362629652, 0.011721991002559662, 0.0055759018287062645, 0.04176953807473183, 0.028323723003268242, -0.06136806681752205, 0.027634194120764732, -0.04492545872926712, 0.010163920931518078, 0.015421577729284763, 0.03383995592594147, -0.03784452751278877, 0.024120250716805458, -0.054631900042295456, -0.0011776689207181334, 0.038056690245866776, 0.028562406077980995, 0.018047092482447624, 0.02284727431833744, 0.009600363671779633, 0.00513500114902854, 0.0057383389212191105, 0.02251577004790306, -0.022940095514059067, -0.04033743962645531, 0.00016026159573812038, 0.013193869031965733, 0.010753998532891273, -0.0052178772166371346, 0.04216734319925308, 0.03818929195404053, -0.022290347144007683, 0.017742108553647995, -0.005585846956819296, 0.04935435578227043, -0.019174207001924515, 0.05548055097460747, 0.004525033291429281, 0.016097847372293472, -0.03890534117817879, -0.03675719350576401, -0.00982578657567501, -0.08794145286083221, -0.04224690422415733, 0.04871786758303642, -0.06974849849939346, -0.06120894476771355, 0.0163497906178236, -0.06152718886733055, 0.01583264395594597, 0.010787148959934711, 0.00026043804246000946, -0.022807493805885315, 0.004690785426646471, 0.013207129202783108, -0.010150660760700703, 0.042299944907426834, 0.0049095782451331615, -0.0040344069711863995, -0.006520688533782959, 0.03251393884420395, 0.02419981174170971, -0.014652487821877003, 0.01695975847542286, -0.02392134815454483, 0.00814837496727705, 0.011072242632508278, 0.055904876440763474, 0.004031091928482056, -0.016522172838449478, -0.046808402985334396, 0.0035371503327041864, -0.022582070901989937, 0.03561681881546974, -0.005125056020915508, -0.0400191955268383, -0.016124367713928223, 0.014334243722259998, 0.007763829547911882, 0.037340641021728516, -0.04768357425928116, -0.0010773888789117336, -0.02450479567050934, 0.02507498301565647, 0.038640137761831284, -0.03495381027460098, -0.04351988062262535, -0.02039414271712303, -0.06348969787359238, 0.001788465422578156, 0.025008682161569595, -0.011702100746333599, -0.024478275328874588, -0.03466208651661873, 0.038666658103466034, -0.005483080632984638, -0.04065568372607231, 0.016084587201476097, 0.022144485265016556, -0.032328296452760696, 0.06163327023386955, -0.01673433557152748, 0.008625741116702557, 0.0019542176742106676, 0.0053637390956282616, -0.01844489760696888, -0.03203657269477844, 0.02392134815454483, 0.009573843330144882, 0.00910973735153675, 0.004939413629472256, -0.0033249875996261835, -0.024783259257674217, -0.023934608325362206, 0.0025542404036968946, 0.023669404909014702, -0.014334243722259998, 0.041636936366558075, 0.005045494996011257, -0.00938820093870163, 0.011019201949238777, -0.03317694738507271, -0.035139452666044235, 0.06200455501675606, 0.00971970520913601, 0.031559206545352936, 0.02510150335729122, -0.0013359622098505497, -0.0015182895585894585, 0.034290801733732224, -0.04150433465838432, -0.017768628895282745, -0.10470230132341385, 0.04208778217434883, -0.01880292221903801, 0.0036830122116953135, 0.01588568463921547, -0.01405578013509512, -0.029888423159718513, -0.005837790202349424, 0.02510150335729122, 0.009215818718075752, -0.01926702819764614, -0.003726107766851783, -0.024650657549500465, -0.004578073974698782, 0.05046821013092995, -0.015010512433946133, 0.022993136197328568, 0.027607673779129982, -0.015421577729284763, 0.0008643973269499838, -0.023695925250649452, -0.01106561254709959, -0.00955395307391882, 0.020831728354096413, -0.028323723003268242, 0.03747324272990227, 0.09298031777143478, -0.023669404909014702, 0.054631900042295456, -0.033733874559402466, 0.06730862706899643, 0.02752811275422573, -0.043758563697338104, 0.0018133282428607345, 0.002486282028257847, -0.024756738916039467, -0.005048810038715601, 0.015739822760224342, -0.0038255590479820967, -0.013107677921652794, -0.007724049035459757, 0.005270917899906635, 0.015434837900102139, 0.06216367706656456, 0.04256514832377434, -0.011861222796142101, 0.04126565158367157, -0.015381797216832638, -0.053040679544210434, -0.06428530812263489, -0.02488934062421322, -0.013273430056869984, -0.03564333915710449, -0.012968447059392929, 0.03747324272990227, 0.0076643782667815685, 0.07075627148151398, -0.030577952042222023, 0.03471512719988823, -0.004491882864385843, 0.01737082377076149, -0.011682210490107536, -0.0029769083485007286, 0.06799815595149994, -0.011967304162681103, -0.023550063371658325, 0.03532509505748749, 0.01591220498085022, 0.01441380474716425, -0.0099384980276227, -0.021587558090686798, -0.014957471750676632, -0.00021754966292064637, -0.010992681607604027, 0.029782341793179512, -0.0799323096871376, -0.03134704381227493, 0.01946593075990677, 0.03025970794260502, 0.043917685747146606, -0.021507997065782547, -0.005390259437263012, 0.04195518046617508, -0.00645438814535737, 0.0022509139962494373, -0.027103787288069725, 0.002032121177762747, -0.022953355684876442, -0.03548421710729599, 0.0005051296320743859, 0.02364288456737995, 0.029119333252310753, -0.0057051884941756725, -0.0362798273563385, 0.01518289465457201, 0.008048923686146736, 0.025499308481812477, 0.007253312971442938, -0.021401915699243546, 0.015288976021111012, -0.07606033980846405, 0.012424780055880547, -0.0057549141347408295, -0.07600729912519455, 0.048876989632844925, -0.06009509041905403, 0.011330815963447094, 0.04203474149107933, 0.04508458077907562, 0.055374469608068466, 0.025592129677534103, -0.004462047480046749, -0.05696569010615349, -0.018869223073124886, -0.022197525948286057, 0.019611792638897896, -0.006288636010140181, -0.025618650019168854, 0.024544576182961464, 0.028986731544137, 0.017251482233405113, -0.0360676646232605, -0.021242793649435043, 0.016694555059075356, 0.006245540454983711, -0.023722445592284203, -0.007783719804137945, 0.05147598311305046, -0.013299950398504734, -0.03033926896750927, 0.06020117178559303, 0.016866937279701233, 0.016442611813545227, -0.006056583020836115, -0.02287379465997219, 0.026891624554991722, -0.010502055287361145, -0.018590759485960007, 0.02056652493774891, -0.014546406455338001, -0.02315225824713707, -0.025883853435516357, -0.036571551114320755, 0.008048923686146736, 0.025976674631237984, -0.0254330076277256, 0.02197210304439068, 0.00026230275398120284, 0.018100133165717125, 0.032964784651994705, 0.06168631091713905, 0.013591674156486988, 0.01479834970086813, 0.06805119663476944, -0.014294463209807873, -0.0021017370745539665, -0.033760394901037216, -0.011131913401186466, 0.0028443066403269768, -0.015395057387650013, 0.0022310237400233746, 0.01563374139368534, -0.009573843330144882, -0.002710047410801053, -0.010024689137935638, -0.007140601519495249, 0.03381343558430672, -0.02750159241259098, 0.0199830774217844, -0.0023288174998015165, -0.012073385529220104, 0.008075444027781487, -0.037340641021728516, -0.018975304439663887, -0.02213122509419918, 0.03495381027460098, 0.03315042704343796, -0.022979876026511192, -0.005960446782410145, 0.05213898792862892, -0.02064608596265316, 0.009786006063222885, 0.029304975643754005, -0.037208039313554764, -0.030896196141839027, 0.011483307927846909, 0.0036133963149040937, -0.03460904583334923, 0.013843617402017117, 0.00021775685308966786, -0.010011428967118263, 0.002226051175966859, 0.006616824772208929, 0.009149517863988876, -0.0032404542434960604, 0.007750569377094507, 0.045323263853788376, -0.02455783635377884, 0.03182440996170044, 0.014002739451825619, -0.00029980417457409203, -0.03492728993296623, 0.016614994034171104, -0.043838124722242355, 0.06317145377397537, 0.004004571586847305, 0.008068813942372799, 0.010316412895917892, 0.022727932780981064, -0.008605850860476494, -0.0397009514272213, 0.0400722362101078, 0.02276771329343319, 0.027846356853842735, -0.0022111334837973118, -0.009812526404857635, -0.006732851266860962, 0.024902600795030594, 0.009063326753675938, -0.03113487921655178, 0.06338361650705338, -0.0031111675780266523, -0.010621396824717522, -0.057655218988657, 0.016999538987874985, -0.0026835270691663027, -0.011940783821046352, 0.006795837078243494, 0.005529491230845451, -0.009951758198440075, -0.019121166318655014, -0.003069729544222355, -0.003129400312900543, -0.023085957393050194, 0.04625147581100464, 0.03993963450193405, 0.02240968868136406, -0.026560120284557343, -0.008731822483241558, 0.004462047480046749, 0.010833559557795525, 0.01762276701629162, -0.022422948852181435, 0.03551073744893074, 0.007704158779233694, 0.020473703742027283, -0.003971421159803867, 0.010893230326473713, -0.02755463309586048, -0.038719698786735535, 0.04267122969031334, 0.003281892044469714, 0.021706899628043175, 0.023470502346754074, 0.010800409130752087, 0.02744855172932148, -0.008943985216319561, 0.009673294611275196, 0.0075516668148338795, -0.006653290241956711, 0.00686213793233037, 0.019717874005436897, -0.028615446761250496, -0.002254229038953781, 0.005075330380350351, -0.014201642014086246, 0.003944900818169117, -0.007571557071059942, 0.02108367159962654, -0.04047004133462906, 0.043864645063877106, 0.005837790202349424, -0.018736621364951134, -0.023245079442858696, -0.02182624116539955, -0.00960699375718832, -0.002128257416188717, 0.04277731105685234, -0.017543205991387367, -0.003247084328904748, -0.0011959016555920243, 0.008910834789276123, 0.014957471750676632, 0.031506165862083435, 0.027925917878746986, -0.024027429521083832, 0.016442611813545227, 0.004405691754072905, -0.008426838554441929, -0.03909098356962204, 0.016005026176571846, 0.021680379286408424, -0.0034045486245304346, 0.004793551750481129, -0.004694100469350815, -4.361353057902306e-05, -0.002807841170579195, -0.06311841309070587, 0.021043891087174416, -0.02813808061182499, 0.009958388283848763, -0.025207584723830223, -0.029888423159718513, 0.03195701166987419, 0.06720254570245743, 0.02453131601214409, -0.01885596290230751, 0.008380427956581116, -0.012325328774750233, -0.016310010105371475, -0.003673067083582282, 0.005612367298454046, 0.01548787858337164, -0.05855691060423851, 0.005814584903419018, 0.010866709984838963, -0.06200455501675606, 0.00666986545547843, 0.038030169904232025, -0.007107451092451811, -0.0022144485265016556, 0.058185625821352005, -0.013081157580018044, -0.012292178347706795, -0.026918144896626472, 0.005837790202349424, 0.03036578930914402, -0.02172015979886055, -0.01230543851852417, 0.003626656485721469, 0.013379511423408985, -0.0009580472833476961, 0.008764972910284996, -0.03110835887491703, 0.01855097897350788, 0.001591220498085022, -0.013213759288191795, 0.015037032775580883, 0.009182668291032314, -0.00037563577643595636, -0.005118425935506821, 0.025950154289603233, 0.012975077144801617, -0.017052579671144485, -0.024955641478300095, -0.07091539353132248, -0.0029603331349790096, 0.009998168796300888, -0.02018197998404503, -0.03498033061623573, -0.03545769676566124, -0.028721528127789497, 0.031240960583090782, 0.029092812910676003, 0.06364881992340088, -0.022529030218720436, -0.0009729649755172431, 0.012835845351219177, -0.0323813371360302, 0.006828987505286932, -0.06067853793501854, 0.045986272394657135, -0.009945128113031387, -0.016230449080467224, 0.009381570853292942, 0.0036498617846518755, -0.00869867205619812, 0.05083949491381645, 0.0027514854446053505, -0.04927479475736618, 0.03625330701470375, 0.026613160967826843, 0.0001883358636405319, 0.00010504540841793641, 0.006381457205861807, 0.02502194233238697, -0.004694100469350815, 0.007903061807155609, 0.036332868039608, 0.0009008627966977656, 0.0070809307508170605, 0.030630992725491524, -0.012491080909967422, 0.004767031408846378, -0.021229533478617668, 0.022144485265016556, -0.03972747176885605, -0.061845432966947556, -0.029835382476449013, -0.021852761507034302, -0.002610596129670739, -0.013538633473217487, -0.012398259714245796, 0.019412890076637268, 0.009209188632667065, 0.0030780171509832144, -0.0016392885008826852, 0.011363966390490532, 0.0009215818135999143, -0.01693323813378811, 0.04076176509261131, -0.020433923229575157, -0.004485252778977156, -0.0016144257970154285, 0.012703243643045425, 0.03463556617498398, -0.030127106234431267, 0.032911743968725204, 0.01742386445403099, 0.01803383231163025, 0.024756738916039467, -0.029119333252310753, -0.011927523650228977, 0.011390486732125282, 0.01290877629071474, -0.01367123518139124, 0.017145400866866112, -0.02453131601214409, 0.004223364405333996, 0.030047545209527016, 0.014360764063894749, -0.015342016704380512, 0.0013691126368939877, -0.043864645063877106, -0.02000959776341915, -0.04004571586847305, 0.03187745064496994, 0.003300124779343605, 0.006709645967930555, -0.00035968213342130184, -0.011377226561307907, 0.02629491686820984, -0.009547322988510132, -0.0036332865711301565, -0.009693184867501259, 0.013856877572834492, -0.03757932409644127, 0.002582418266683817, 0.01153634861111641, -0.012968447059392929, -0.00532727362588048, 0.002353680320084095, 0.008208045735955238, -0.07006674259901047, -0.028986731544137, 0.04259166866540909, -0.015779603272676468, 0.017238222062587738, 0.012975077144801617, 0.03826885297894478, 0.05431365594267845, -0.000616183562669903, -0.01566026173532009, -0.02364288456737995, 0.014254682697355747, -0.024080470204353333, 0.017887970432639122, 0.03490076959133148, 0.017609506845474243, -0.000844921451061964, 0.01855097897350788, -0.00924896914511919, -0.017158661037683487, 0.0032255365513265133, -0.032301776111125946, 0.005489710718393326, -0.01109213288873434, 0.0006431182846426964, 0.016535433009266853, -0.005778119433671236, 0.026440778747200966, 0.011556238867342472, -0.009461131878197193, 0.013962958939373493, 0.03824233263731003, -0.04129217192530632, 0.025154544040560722, 0.020128939300775528, 0.03922358527779579, 0.010860079899430275, -0.014944211579859257, -0.011118653230369091, 0.01485139038413763, 0.03246089816093445, 0.021879281848669052, 0.02218426577746868, 0.004727250896394253, -0.009129627607762814, -0.018630539998412132, 0.004717305768281221, -0.03185093030333519, 0.002030463656410575, -0.0011710388353094459, -0.022555550560355186, -0.013207129202783108, 0.015951985493302345, -0.03757932409644127, 0.0029172375798225403, -0.025472788140177727, 0.005032234825193882, -0.02394786849617958, -0.0011478335363790393, 0.006146089173853397, 0.00996501836925745, -0.005953816697001457, -0.010508685372769833, 0.0073395040817558765, -0.005343848839402199, -0.01660173386335373, -0.020168719813227654, 0.013167348690330982, 0.03572290018200874, 0.02975582145154476, 0.020195240154862404, -0.030180146917700768, -0.02064608596265316, 0.04195518046617508, 0.013711015693843365, 0.056010957807302475, 0.009573843330144882, -0.02075216732919216, -0.005844420287758112, -0.007067670579999685, 0.017596246674656868, 0.010999311693012714, 0.0022359963040798903, 0.017742108553647995, 0.009083217009902, 0.0017470273887738585, 0.021600818261504173, -0.03044535033404827, 0.01523593533784151, -0.01046227477490902, 0.039382707327604294, 0.03813625127077103, -0.023881567642092705, 0.0003748070157598704, 0.009898717515170574, 0.011025832034647465, 0.03532509505748749, 0.0044719926081597805, 0.0022475989535450935, -0.014201642014086246, 0.005436670035123825, -0.006527318619191647, 0.014612707309424877, -0.010415864177048206, 0.01515637431293726, -0.029782341793179512, 0.028668487444519997, 0.01554091926664114, 0.01290877629071474, 0.01566026173532009, 0.0071936422027647495, 0.00779697997495532, 0.006974849384278059, -0.01676085591316223, -0.00026996879023499787, -0.029145853593945503, 0.025366706773638725, 0.04253862798213959, -0.00010214474605163559, -0.016416091471910477, -0.0032073038164526224, 0.027766795828938484, 0.01764928735792637, 0.038852300494909286, -0.006553838960826397, -0.005708503536880016, 0.017185181379318237, -0.01637631095945835, 0.017026059329509735, 0.017874710261821747, 0.01192089356482029, 0.0323813371360302, -0.048213981091976166, -0.013856877572834492, -0.007710788864642382, 0.0054499302059412, 0.012318698689341545, 0.009262229315936565, 0.005002399440854788, -0.02348376251757145, 0.007989252917468548, 0.03413167968392372, -0.033017825335264206, 0.02596341446042061, -0.006988109555095434, 0.006649975199252367, -0.026162315160036087, -0.02507498301565647, -0.03187745064496994, -0.025512568652629852, 0.010409234091639519, 0.0126634631305933, 0.014891170896589756, 0.02811156027019024, -0.03694283589720726, -0.0031211127061396837, -0.02510150335729122, -0.030074065551161766, 0.022621851414442062, 0.012146316468715668, -0.01924050785601139, 0.03856057673692703, -0.01583264395594597, 0.04208778217434883, 0.030206667259335518, 0.015766343101859093, -0.035775940865278244, 0.021600818261504173, 0.01657521352171898, -0.018948784098029137, -0.04195518046617508, -0.02742203138768673, 0.027209868654608727, 0.01109213288873434, -0.016482392325997353, 0.04614539444446564, 0.043122075498104095, 0.02665294148027897, 0.0181133933365345, -0.01367123518139124, -0.002968620741739869, 0.04283035174012184, 0.010256742127239704, 0.02161407843232155, 0.043175116181373596, 0.04336075857281685, 0.02811156027019024, -0.018285775557160378, -0.018100133165717125, 0.013737536035478115, 0.046675801277160645, 0.018630539998412132, 0.022834014147520065, 0.028721528127789497, 0.008082074113190174, 0.0022989821154624224, 0.020195240154862404, 0.01706583984196186, -0.01548787858337164, 0.03824233263731003, -0.022754453122615814, -0.005632257554680109, 0.00886442419141531, -0.008692041970789433, 0.028482845053076744, 0.03262002021074295, -0.007100821007043123, 0.013684495352208614, -0.0081218546256423, -0.016097847372293472, 0.012133056297898293, -0.006003542337566614, -0.047524452209472656, 0.015249195508658886, -0.04556194692850113, 0.013193869031965733, -0.006106308661401272, -0.04649015888571739, -0.003427753923460841, -0.024876080453395844, -0.04542934522032738, -0.012146316468715668, 0.012312068603932858, 0.0010342933237552643, 0.006437812931835651, 0.008062183856964111, -0.017026059329509735, 0.01599176600575447, -0.033044345676898956, -0.010037949308753014, -0.03405211865901947, 0.012868995778262615, 0.0038653395604342222, 0.007598077412694693, -0.004283035174012184, 0.004859852604568005, 0.046781882643699646, -0.002859224332496524, 0.03455600515007973, -0.018564239144325256, 0.019585272297263145, -0.010641287080943584, -0.00023267454525921494, -0.015978505834937096, -0.005227822344750166, -0.040284398943185806, 0.004074187483638525, -0.014254682697355747, -0.026546860113739967, 0.030763594433665276, -0.007677638437598944, 0.031400084495544434, 0.027289429679512978, -0.022250566631555557, 0.024478275328874588, -0.015845904126763344, -0.006981479469686747, -0.002502857241779566, -0.013008227571845055, 0.0020835043396800756, -0.026507079601287842, 0.018617279827594757, 0.008128484711050987, 0.04789573699235916, -0.053014159202575684, -0.019744394347071648, -0.0020553264766931534, 0.0041802688501775265, -0.03235481679439545, -0.022449469193816185, -0.02397438883781433, 0.012133056297898293, -0.0005892488406971097, -0.0016160833183676004, -0.004117283038794994, -0.02890717051923275, 0.0031426604837179184, 0.013896658085286617, 0.0072201625443995, -0.024796519428491592, -0.019028345122933388, 0.022224046289920807, -0.01767580769956112, -0.03198353201150894, 0.0007193642668426037, 0.02435893379151821, 0.005874255672097206, -0.013949698768556118, 0.022091444581747055, -0.03487424924969673, -0.006895288359373808, 0.016363050788640976, 0.00010473462316440418, -0.01408230047672987, 0.015607220120728016, 0.014267942868173122, 0.020513484254479408, 0.004236624576151371, -0.006156034301966429, 0.023656144738197327, 0.01563374139368534, 0.01690671779215336, -0.008546180091798306, 0.003557040588930249, -0.01957201212644577, 0.015806123614311218, -0.014533146284520626, -0.0011072242632508278, -0.02890717051923275, 0.016150888055562973, 0.021627338603138924, 0.0180073119699955, -0.02665294148027897, 0.025088243186473846, -0.0051217409782111645, 0.0073395040817558765, 0.03195701166987419, -0.003911750391125679, -0.021428436040878296, -0.014758569188416004, -0.01306126732379198, -0.012729763984680176, 0.022635111585259438, -0.008983765728771687, -0.007511886302381754, -0.009507542476058006, 0.017821669578552246, -0.0015017143450677395, -0.00919592846184969, 0.009732965379953384, 0.020327841863036156, 0.016164148226380348, -0.0081218546256423, 0.012782804667949677, -0.04468677565455437, 0.035112932324409485, 0.004594649188220501, 0.015845904126763344, -0.019770914688706398, -0.03309738636016846, -0.007007999811321497, -0.010933010838925838, -0.003180783474817872, 0.01331321056932211, 0.04256514832377434, -0.007969362661242485, -0.0018497937126085162, -0.01857749931514263, 0.03935618698596954, -0.025751251727342606, 0.07850021123886108, -0.01158938929438591, -0.0012315383646637201, 0.015554179437458515, 0.035935062915086746, -0.026149054989218712, 0.017582986503839493, 0.0007293093949556351, 0.0026984447613358498, -0.0033531654626131058, -0.03681023418903351, 0.040151797235012054, 0.041583895683288574, 0.006882028188556433, -0.002027148613706231, -0.007087560836225748, 0.0015514399856328964, 0.005967076867818832, 0.021985363215208054, -0.009474392049014568, 0.038640137761831284, -0.034423403441905975, 0.010860079899430275, -0.004717305768281221, -0.02100411057472229, -0.009693184867501259, 0.026334697380661964, 0.004332760814577341, -0.04415636882185936, 0.019890256226062775, -0.0008208873914554715, 0.020248280838131905, -0.0015970218228176236, -0.006603564601391554, -0.009341790340840816, 0.015647001564502716, 0.014572926796972752, -0.014148601330816746, 0.03487424924969673, 0.016455871984362602, 0.02752811275422573, -0.009779375977814198, -0.00021982875477988273, -0.025512568652629852, 0.02128257416188717, 0.026334697380661964, -0.0199300367385149, -0.01739734411239624, 0.005741653963923454, -0.0046178544871509075, 0.0013525374233722687, -0.041000448167324066, -0.03614722564816475, -0.028880650177598, -0.015288976021111012, -0.003477479564025998, 0.0038918599020689726, -0.01336625125259161, -0.025035202503204346, -0.02271467261016369, -9.09564842004329e-05, 0.014241422526538372, -0.04906263202428818, -0.00977274589240551, 0.022475989535450935, -0.032964784651994705, 0.013432552106678486, 0.0063880872912704945, -0.010574986226856709, -0.01701279915869236, -0.03460904583334923, -0.018988564610481262, 0.03635938838124275, 0.00046410594950430095, 0.02279423363506794, 0.015501138754189014, -0.0288276094943285, 0.02819112129509449, -0.02683858387172222, -0.016005026176571846, -0.004816757049411535, 0.020327841863036156, -0.007206902373582125, 0.051104698330163956, -0.023311380296945572, -0.026188835501670837, 0.026135794818401337, 0.010084359906613827, -0.01621718890964985, 0.012152946554124355, -0.0030432092025876045, 0.006146089173853397, 0.014559666626155376, 0.019253768026828766, 0.003381343325600028, 0.01408230047672987, -0.012902146205306053, -0.04503154009580612, -0.003020003903657198, -0.02665294148027897, -0.007266573142260313, -0.022197525948286057, -0.014559666626155376, 0.021905802190303802, -0.02880108915269375, -0.003368083154782653, -0.013028117828071117, -0.00927548948675394, -0.01706583984196186, -0.0019741079304367304, 0.007425695192068815, -0.015739822760224342, 0.027766795828938484, -0.020579785108566284, -0.005950501654297113, -0.02648055925965309, 0.011914263479411602, -0.04190213978290558, 0.002902319887652993, -0.012842475436627865, -0.0023603104054927826, 0.001993998186662793, 0.01813991367816925, -0.018511198461055756, 0.00792958214879036, -0.001410550670698285, -0.0015721590025350451, -0.003928325604647398, 0.024929121136665344, 0.024186551570892334, -0.013187238946557045, 0.013989479281008244, 0.021958842873573303, 0.023576583713293076, 0.0036200264003127813, 0.02827068231999874, -0.04187561944127083, -0.02675902284681797, 0.004594649188220501, 0.02130909450352192, -0.005386944394558668, 0.007704158779233694, -0.0144933657720685, -0.009116367436945438, -0.03458252549171448, 0.0395948700606823, 0.0045847040601074696, -0.01888248324394226, 0.007147231604903936, 0.006649975199252367, 0.009805896319448948, 0.01134407613426447, 0.0074058049358427525, 0.019863735884428024, -0.0036796971689909697, -0.024982161819934845, 0.025923633947968483, 0.010813669301569462, 0.020274801179766655, 0.007200272288173437, -0.013452442362904549, 0.002126599894836545, -0.03776496648788452, -0.009845676831901073, 0.02581755258142948, -0.005638887640088797, -0.010753998532891273, 0.0019210671307519078, -0.020049378275871277, -0.015925465151667595, -0.03460904583334923, -0.04004571586847305, -0.014533146284520626, 0.03561681881546974, -0.03132052347064018, 0.0005424238624982536, 0.011874482966959476, 0.005804639775305986, -0.05410149320960045, -0.007133971434086561, -0.020685866475105286, 0.008294236846268177, 0.009706445038318634, -0.02450479567050934, -0.015076813288033009, -0.007975992746651173, -0.0539688915014267, -0.019770914688706398, 0.03320346772670746, -0.006570414174348116, 0.014374024234712124, -0.016946498304605484, 0.010866709984838963, 0.004425582010298967, -0.009182668291032314, 0.016641514375805855, 0.023417461663484573, -0.015063553117215633, -0.014002739451825619, -0.004800181835889816, 0.030074065551161766, 0.014161861501634121, -0.0433872789144516, 0.0035703007597476244, 0.038056690245866776, -0.03179788962006569, 0.031214440241456032, -0.007684268523007631, 0.029782341793179512, -0.0011718675959855318, 0.01065454725176096, -0.024478275328874588, 0.0014395572943612933, 0.022343387827277184, -0.02827068231999874, 0.017689067870378494, 0.016668034717440605, 0.013326470740139484, 0.0031608932185918093, -0.019028345122933388, 0.006623454857617617, -0.0397009514272213, 0.015766343101859093, -0.038109730929136276, -0.0001258680276805535, 0.007041150238364935, 0.027925917878746986, 0.006298581138253212, -0.02105715125799179, -0.018922263756394386, 0.030843155458569527, 0.001803383114747703, -0.00795610249042511, 0.026467299088835716, -0.0027315951883792877, 0.016071327030658722, -0.021322354674339294, -0.008950615301728249, -0.0033929459750652313, -0.009129627607762814, -0.016336530447006226, -0.00509190559387207, 0.00905669666826725, -0.002355337841436267, 0.025618650019168854, -0.0018282459350302815, 0.0027249651029706, 0.008778233081102371, -0.024518055841326714, -0.040841326117515564, 0.004239939618855715, -0.01200045458972454, 0.019200727343559265, 0.019784174859523773, 0.024133510887622833, 0.01660173386335373, 0.04410332813858986, -0.024491535499691963, -0.007147231604903936, -0.02755463309586048, -0.02069912664592266, -0.006709645967930555, 0.005622312426567078, -0.007869911380112171, 0.06200455501675606, 0.02606949396431446, -0.004104022867977619, -0.024372193962335587, -0.035749420523643494, 0.04725924879312515, 0.01946593075990677, 0.002320529893040657, -0.012935296632349491, -0.022608591243624687, -0.020778687670826912, 0.031240960583090782, 0.014320983551442623, -0.01676085591316223, 0.007180382031947374, 0.010634656995534897, -0.04842614382505417, 0.021481476724147797, 0.002108367159962654, -0.012265658006072044, 0.005420094821602106, 0.0163497906178236, -0.01665477454662323, -0.0023321325425058603, -0.003460904350504279, 0.01556743960827589, 0.03704891726374626, 0.01208664570003748, 0.015395057387650013, -0.008493139408528805, 0.013923178426921368, -0.002189585706219077, -0.022038403898477554, 0.058132585138082504, 0.020327841863036156, 0.00025277200620621443, -0.009878827258944511, -0.015262455679476261, 0.051794227212667465, 0.019837215542793274, 0.015421577729284763, 0.001215791911818087, 0.011443527415394783, 0.0234572421759367, 0.006049952935427427, -0.012212617322802544, -0.012597162276506424, -0.015076813288033009, -0.026546860113739967, -0.0325934998691082, 0.026149054989218712, -0.0015622138744220138, -0.005310698412358761, -0.004243254661560059, -0.001478509046137333, -0.0026868421118706465, -0.0034575893077999353, -0.004067557398229837, -0.010700957849621773, -0.026798803359270096, -0.01054183579981327, -0.006693070754408836, 0.007995883002877235, -0.016416091471910477, -0.03641242906451225, -0.038640137761831284, 0.019426150247454643, -0.030206667259335518, 0.017384083941578865, -0.0468614436686039, 0.0008511371561326087, 0.039435748010873795, 0.00919592846184969, -0.0010193756315857172, 0.028615446761250496, -0.01852445863187313, -0.004054297227412462, -0.009673294611275196, 0.00029110218747518957, 0.030021024867892265, -0.02524736523628235, 0.02386830747127533, 0.006653290241956711, 0.024769999086856842, 0.0012406547321006656, 0.009083217009902, 0.030604472383856773, 0.010972791351377964, -0.030233187600970268, 0.027687234804034233, -0.0013227020390331745, 0.003948215860873461, 0.010800409130752087, 0.006729536224156618, 0.0049593038856983185, -0.039462268352508545, -0.016561953350901604, 0.010508685372769833, -0.0078102401457726955, 0.016482392325997353, 0.03328302875161171, 0.0127165038138628, -0.029384536668658257, -0.032301776111125946, 0.00535379396751523, 0.02880108915269375, -0.007253312971442938, -0.006384772248566151, 0.022727932780981064, 0.01742386445403099, 0.0075516668148338795, 0.008884314447641373, -0.01962505280971527, -0.0013583387481048703, -0.017198441550135612, -0.038003649562597275, 0.05585183575749397, -0.009593733586370945, 0.02425285242497921, -0.017795149236917496, 0.01322701945900917, -0.01037608366459608, -0.008208045735955238, 0.02111019194126129, 0.03694283589720726], [0.012355690822005272, 0.00608684029430151, 0.04399045929312706, 0.03643003851175308, -0.025201408192515373, 0.006811380852013826, 0.011648651212453842, 0.027945563197135925, 0.0151908490806818, 0.02060915157198906, -0.03488995134830475, -0.017500977963209152, -0.008295463398098946, -0.03441392257809639, -0.006020336411893368, 0.03441392257809639, 0.015806883573532104, 0.03771810978651047, 0.0004930900759063661, 0.004627258516848087, 0.06899585574865341, -0.005572311580181122, 0.04029425233602524, 0.03166976943612099, -0.05026280879974365, -0.028701605275273323, 0.015414861962199211, 0.025593431666493416, 0.0341339074075222, -0.06059538945555687, 0.07874040305614471, -0.007581423968076706, 0.03609401732683182, -0.021463200449943542, 0.0067203757353127, 0.05454704910516739, -0.019265076145529747, 0.03606601804494858, 0.013293743133544922, 0.026839500293135643, -0.02198122814297676, 0.02108517847955227, -0.04695862531661987, -0.04231036454439163, -0.06972389668226242, 0.027763552963733673, 0.00984255038201809, -0.024151349440217018, -0.0016188404988497496, 0.031165743246674538, -0.020245131105184555, 0.010031560435891151, -5.086221790406853e-05, -0.03351787477731705, 0.015960892662405968, -0.02998967655003071, 0.005176789592951536, 0.004942276515066624, -0.012810716405510902, -0.05796324089169502, 0.0393982008099556, -0.034049902111291885, -0.042926400899887085, 0.012677708640694618, -0.0030171687249094248, -0.0035982010886073112, 0.008547477424144745, 0.01751497946679592, -0.03911818563938141, 0.03399389982223511, 0.027791554108262062, 0.07549221813678741, 0.01946108788251877, -0.023689324036240578, 0.030269691720604897, -0.025873446837067604, 0.02408134564757347, 0.021435197442770004, -0.02037113904953003, -0.04119030386209488, -0.01849503442645073, -0.003899218048900366, 0.027301525697112083, 0.0220092311501503, -0.04172233119606972, -0.025215409696102142, -0.032369811087846756, 0.045782558619976044, -0.05003879591822624, 0.030101682990789413, 0.010437583550810814, 0.026965508237481117, 0.014840830117464066, 0.045278530567884445, 0.045502543449401855, -0.01660492829978466, 0.02156120538711548, -0.04779867082834244, -0.007805436383932829, 0.029541650786995888, 0.03438592329621315, -0.004448748659342527, -0.03508596122264862, 0.0004887148388661444, 0.03785811737179756, -0.04743465036153793, -0.01962909661233425, -0.004336742218583822, 0.008771490305662155, -0.046174582093954086, -0.09761345386505127, 0.012390692718327045, -0.026601487770676613, 0.04217035695910454, 0.006555866450071335, -0.013629761524498463, -0.020959172397851944, -0.03150176256895065, 0.02787555754184723, -0.0011419388465583324, -0.02968166023492813, -0.004697262775152922, -0.025845445692539215, -0.02920563332736492, -0.0015348357846960425, -0.030549708753824234, 0.007623426150530577, -0.0402662493288517, -0.030801722779870033, -0.033825889229774475, 0.043850451707839966, 0.0018183516804128885, 0.03281783312559128, -0.02856159768998623, -0.020917169749736786, -0.0055198087356984615, -0.04161032661795616, -0.03231380507349968, -0.029149629175662994, -0.010346578434109688, 0.012810716405510902, -0.0017360970377922058, 0.02221924252808094, 0.0222612451761961, -0.041526321321725845, -0.01171165518462658, 0.01638091541826725, 0.04079828038811684, -0.005449804477393627, -0.011137622408568859, -0.04261838272213936, 0.0038712164387106895, -0.030577709898352623, -0.023773329332470894, -0.00029007872217334807, 0.01590488851070404, 0.022737272083759308, 0.07818037271499634, -0.00034520679037086666, -0.018341025337576866, -0.005565311294049025, -0.027315527200698853, -0.023297302424907684, -0.009254517033696175, 0.012250685133039951, -0.055807121098041534, -0.08792491257190704, 0.035197969526052475, -0.06384357064962387, -0.04320641607046127, -0.03528197109699249, -0.056283146142959595, -0.03696206584572792, 0.06081939861178398, -0.00888349674642086, -0.04096629098057747, -0.009065506979823112, -0.04298240318894386, 0.027273524552583694, -0.04331842064857483, 0.02783355675637722, 0.016786938533186913, -0.02387133426964283, -0.05071083456277847, -0.04967477545142174, 0.012474697083234787, -0.050178803503513336, 0.007805436383932829, -0.0397622212767601, 0.044354479759931564, 0.031025733798742294, 0.057459212839603424, 0.027427533641457558, 0.03886617347598076, -0.050654832273721695, 0.029065625742077827, 0.0003963971685152501, -0.0006650371942669153, 0.017122957855463028, 0.0011314383009448647, 0.030689716339111328, -0.001074560103006661, 0.053707003593444824, -0.02804356813430786, -0.017024951055645943, -0.09374924004077911, 0.0002841721288859844, -0.019447086378932, -0.0026426478289067745, -0.0017649736255407333, -0.002348631387576461, -0.059531327337026596, -0.011179625056684017, 0.026377474889159203, -0.060707394033670425, -0.016030896455049515, -0.0505148246884346, 0.07594024389982224, -0.009177513420581818, -0.03598201274871826, 0.0017938503297045827, 0.022863278165459633, 0.023311303928494453, -0.03015768527984619, -0.004343742970377207, 0.027497537434101105, -0.0003716770152095705, -0.10024560242891312, 0.01078060269355774, -0.03211779519915581, 0.012950723990797997, 0.002535891719162464, 0.028029566630721092, -0.03629002720117569, 0.018299022689461708, -0.032593823969364166, -0.0038572156336158514, 0.0308857262134552, 0.004991278983652592, 0.02878560870885849, 0.008505475707352161, 0.00336018786765635, 0.025817442685365677, -0.008029448799788952, 0.025691436603665352, 0.015778882429003716, -0.03444192558526993, -0.012383691966533661, 0.001975860446691513, 0.03368588164448738, 0.02945764735341072, 0.034049902111291885, 0.018173016607761383, -0.0016162153333425522, -0.008043449372053146, -0.0019531091675162315, 0.011991670355200768, -0.02641947753727436, 0.04530653357505798, 0.023241300135850906, 0.0021858722902834415, -0.024655377492308617, -0.006562866736203432, -0.008890497498214245, -0.04522252827882767, -0.05244693160057068, 0.027007509022951126, -0.06373156607151031, -0.04169433191418648, 0.0448865108191967, -0.02009112387895584, 0.011095620691776276, 0.042422372847795486, -0.022065233439207077, -0.06759577989578247, -0.009170512668788433, -0.03203378990292549, -0.02032913640141487, 0.01078060269355774, -0.03329386189579964, -0.03883817046880722, -0.002528891433030367, 0.022289246320724487, -0.028015566989779472, -0.010157567448914051, 0.004802268464118242, 0.012586703523993492, -0.008043449372053146, -0.027553539723157883, 0.009583535604178905, 0.019531091675162315, -0.021225186064839363, -0.024641377851366997, -0.03130574896931648, 0.024249356240034103, -0.010479586198925972, 0.008890497498214245, -0.008736488409340382, 0.037074074149131775, 0.013608761131763458, 0.012054674327373505, 0.020511146634817123, -0.05146687850356102, 0.041974347084760666, -0.040154244750738144, 0.010486586019396782, -0.0010063062654808164, -0.01498083770275116, -0.04569855332374573, -0.001981110777705908, -0.017038952559232712, 0.025817442685365677, -0.020959172397851944, 5.542888175114058e-05, -0.05479906499385834, -0.006954888813197613, 0.043682441115379333, -0.014966837130486965, -0.01730496808886528, 0.026111459359526634, 0.03234180808067322, -0.017668988555669785, 0.02574743889272213, -0.01870504580438137, 0.013153735548257828, -0.031025733798742294, -0.0006313478224910796, -0.04919875040650368, -0.05423903092741966, -0.00022149675351101905, -0.026713494211435318, -0.009198513813316822, -0.009737544693052769, 0.01572287827730179, -0.04233836755156517, 0.006121842190623283, 0.003267432563006878, -0.001672218437306583, 0.023969339206814766, 0.007896441034972668, 0.021589206531643867, -0.02062315307557583, 0.012306688353419304, -0.006135843228548765, 0.007245405111461878, 0.04259037971496582, 0.024613376706838608, 0.04124630615115166, -0.00890449807047844, 0.04147031903266907, -0.0203851405531168, 0.03878216817975044, -0.0402662493288517, -0.0003502383187878877, -0.10775002092123032, 0.03390989452600479, -0.006825381424278021, 0.010129566304385662, -0.010549589991569519, 0.014406805858016014, -0.03645803779363632, 0.0022891280241310596, -0.017136957496404648, 0.01845303177833557, -0.005344798788428307, 0.028841612860560417, 0.001467457041144371, 0.008631482720375061, 0.0196991004049778, -0.014406805858016014, 0.02336730621755123, 0.05941932275891304, -0.02177121676504612, 0.0004143356636632234, -0.0370180681347847, -0.05731920525431633, -0.013874775730073452, 0.026321470737457275, -0.004679761826992035, -0.003829214023426175, 0.04544654116034508, -0.023003285750746727, 0.026489481329917908, -0.010934610851109028, 0.06434759497642517, 0.044830504804849625, -0.031473759561777115, -0.011522644199430943, 0.012740712612867355, 0.01262870617210865, -0.008120453916490078, -0.011067618615925312, 0.002437886316329241, -0.007231404073536396, 0.004837270360440016, 0.041078295558691025, 0.05127086490392685, 0.0373820886015892, 0.07342010736465454, 0.005026280879974365, 0.04799468442797661, -0.020315134897828102, -0.0054743061773478985, -0.04186233878135681, -0.02454337291419506, 0.011536644771695137, -0.04119030386209488, -0.05115886032581329, 0.005089284386485815, 0.024669378995895386, 0.046902623027563095, 0.005796323996037245, 0.03502995893359184, -0.025705436244606972, -0.02290528081357479, 0.004151232074946165, -0.01485483068972826, 0.05807524546980858, -0.003192178439348936, -0.008484474383294582, 0.006072839722037315, -0.016212906688451767, -0.0024046343751251698, -0.014084787108004093, -0.011760657653212547, 0.005400802008807659, 0.029597654938697815, -0.005194290541112423, 0.015400861389935017, -0.0832766592502594, -0.03144575655460358, 0.038726165890693665, 0.04018224775791168, 0.020525148138403893, 0.006895385682582855, 0.006244349293410778, 0.061659447848796844, -0.014077787287533283, -0.0392581932246685, -0.03704607114195824, 0.0037032070104032755, -0.05807524546980858, -0.007763434201478958, 0.014672820456326008, 0.013363746926188469, 0.02524341084063053, 0.033349864184856415, 0.0020248631481081247, -0.0007704805466346443, 0.030045678839087486, 0.00344944279640913, 0.003071421757340431, -0.04001423716545105, 0.030521705746650696, -0.07935643941164017, 0.028379587456583977, -0.012537701055407524, -0.05099084973335266, 0.07342010736465454, -0.05622714385390282, 0.010458584874868393, 0.027931561693549156, 0.03830614313483238, 0.05538709834218025, 0.02156120538711548, 0.009198513813316822, -0.014420806430280209, -0.04278639331459999, -0.05493907257914543, 0.01587688736617565, -0.028701605275273323, -0.007294407580047846, 0.01800500601530075, 0.019349081441760063, -0.019097067415714264, -0.03480594605207443, -0.020931169390678406, 0.011907665990293026, -0.025201408192515373, 0.024137349799275398, -0.025089401751756668, 0.027945563197135925, -0.0477706715464592, 0.004434748087078333, 0.04891873523592949, 0.054631054401397705, 0.02619546465575695, -0.025397419929504395, -0.008421470411121845, 0.005950332619249821, 0.021113179624080658, 0.00021460575226228684, 0.026615487411618233, -0.01682894118130207, -0.010185569524765015, -0.014392804354429245, 0.002234874991700053, -0.03208979219198227, 0.03760610148310661, -0.0287576075643301, 0.035197969526052475, -0.021631209179759026, 0.03973422199487686, 0.011879663914442062, 0.040098242461681366, 0.015064842067658901, 0.005617814138531685, 0.02107117883861065, -0.006860383320599794, -0.00046377594117075205, -0.04911474511027336, 0.0022698768880218267, 0.04634259268641472, 0.017907001078128815, 0.0011743156937882304, 0.007350410800427198, -0.0043647438287734985, 0.002240125322714448, -0.026153462007641792, -0.01730496808886528, -0.005894329398870468, -0.016912944614887238, 0.006891885306686163, 0.017682988196611404, 0.00924051646143198, 0.01733296923339367, -0.04121830314397812, -0.003223680192604661, -0.04278639331459999, 0.018117012456059456, 0.03603801503777504, -0.014952835626900196, -0.00817645713686943, 0.057403210550546646, 0.018887056037783623, -0.012411694042384624, 0.008253461681306362, -0.035673994570970535, 0.014896832406520844, -0.028141573071479797, -0.0027616543229669333, -0.014196793548762798, 0.0016065897652879357, 0.016016894951462746, 0.012418693862855434, 0.023241300135850906, 0.031193744391202927, 0.008519476279616356, -0.011179625056684017, 0.004606257658451796, 0.002054614946246147, 0.0003622702497523278, 0.04511052370071411, 0.015974892303347588, -0.001093811122700572, -0.00784043874591589, 0.019125068560242653, -0.04309440776705742, 0.030689716339111328, -0.019237075001001358, -0.0030014177318662405, 0.025089401751756668, 0.02219124138355255, -0.004896773956716061, -0.03819413483142853, 0.037326086312532425, 0.022569261491298676, 0.014518811367452145, -0.024851389229297638, -0.00910750962793827, -0.02830958180129528, 0.02968166023492813, 0.026601487770676613, -0.020511146634817123, 0.0607633963227272, 0.015022839419543743, 0.001692344667389989, -0.06709174811840057, 0.005554810632020235, -0.005684318020939827, -0.015260852873325348, -0.016296911984682083, 0.01098361425101757, -0.019769106060266495, -0.03346187248826027, 0.01591889001429081, 0.018607040867209435, -0.03150176256895065, 0.022779272869229317, 0.03587000444531441, 0.00865248404443264, -0.03668205067515373, 0.038698162883520126, 0.017136957496404648, 0.011606648564338684, 0.0156948771327734, -0.00403922563418746, 0.006293351761996746, -0.014063786715269089, 0.005701818969100714, -0.009772546589374542, -0.011221627704799175, -0.02221924252808094, -0.015414861962199211, 0.004172233399003744, 0.008946499787271023, 0.02079116180539131, 0.01799100637435913, 0.019839109852910042, 0.031473759561777115, 0.02786155790090561, -0.009730543941259384, 0.018285023048520088, -0.015596872195601463, -0.025901447981595993, -0.00032201799331232905, -0.014574814587831497, -0.005603813100606203, 0.012908721342682838, -0.03945420682430267, -0.018159015104174614, -0.018873054534196854, 0.005113786086440086, -0.02646148018538952, 0.02693750523030758, 0.00924051646143198, 0.005631814710795879, -0.0375220961868763, 0.004501251503825188, -0.029569653794169426, 0.00010692003706935793, 0.03208979219198227, -0.024165350943803787, -0.02084716595709324, 0.010997614823281765, -0.004308741074055433, 0.014294799417257309, 0.026083458214998245, 0.011704654432833195, -0.02107117883861065, 0.03693406656384468, 0.04849871248006821, -0.005848826840519905, -0.024487368762493134, 0.040378257632255554, 0.03956621140241623, 0.032173797488212585, 0.04133031144738197, 0.010766602121293545, -0.0005499682738445699, 0.006352855358272791, -0.04023825004696846, -0.005491807125508785, -0.027245523408055305, 0.02693750523030758, -0.012467697262763977, -0.01849503442645073, 0.024613376706838608, 0.005894329398870468, 0.024515369907021523, -0.015484865754842758, 0.0011305632069706917, -0.026839500293135643, 0.010892609134316444, 0.02196722850203514, 0.0038397146854549646, 0.023955339565873146, -0.00045196275459602475, 0.0308857262134552, -0.0006982890190556645, -0.05712319537997246, -0.012089676223695278, 0.06333953887224197, 0.02452937141060829, -0.02737152948975563, 0.038222137838602066, -0.018159015104174614, -0.001923357485793531, -0.0014298299793154001, 0.013188737444579601, -0.03018568828701973, 0.02667149156332016, -0.009877552278339863, 0.0062828510999679565, -0.01617090404033661, -0.03858615830540657, 0.012327688746154308, -0.029625656083226204, 0.008456472307443619, -0.0074624172411859035, -0.023115292191505432, 0.01017856877297163, 0.025215409696102142, 0.014518811367452145, -0.016478920355439186, 0.027497537434101105, 0.011907665990293026, -0.003801212413236499, -0.014301799237728119, -0.05734720453619957, 0.015008838847279549, 0.02035713754594326, -0.01402878388762474, -0.026811499148607254, -0.017892999574542046, -0.042002346366643906, 0.00023320053878705949, 0.0034196912311017513, 0.04659460484981537, -0.042422372847795486, -0.0034144409000873566, 0.03248181566596031, -0.05199890583753586, 0.018383027985692024, -0.01920907385647297, 0.01113062258809805, -0.026335472241044044, -0.02058115042746067, -0.008596480824053288, -0.016016894951462746, 0.005820825230330229, 0.04869472235441208, 0.005110285710543394, -0.0416383296251297, -0.001544461352750659, 0.011074619367718697, -0.011074619367718697, 0.027287526056170464, -0.013832773081958294, 0.023535314947366714, -0.0030539208091795444, -0.00755342235788703, 0.019139070063829422, 0.005362299736589193, -0.013958780094981194, -0.010290575213730335, -0.03530997410416603, 0.014161791652441025, -0.03962221369147301, 0.02480938658118248, -0.016268908977508545, -0.04847070947289467, -0.006366855930536985, -0.028645601123571396, 0.006709875073283911, -0.008519476279616356, -0.013475753366947174, 0.039874229580163956, -0.01663292944431305, 0.01311173290014267, -0.016030896455049515, 0.012831717729568481, -0.03110973909497261, -0.034049902111291885, 0.011536644771695137, -0.01685694232583046, -0.0018498534336686134, 0.03343386948108673, 0.012775714509189129, 0.04281439259648323, -0.012355690822005272, 0.016926946118474007, -0.009212515316903591, 0.029429646208882332, 0.0019391083624213934, -0.021155182272195816, 0.03668205067515373, -0.003962221555411816, -0.0017325968947261572, -0.02296128310263157, 0.01657692715525627, 0.010717598721385002, -0.01962909661233425, 0.007133398670703173, 0.0010535588953644037, -0.02528541348874569, -0.01751497946679592, -0.003874716581776738, -0.024459367617964745, -0.028897615149617195, 0.01346175279468298, 0.024921393021941185, -0.011907665990293026, -0.005435803905129433, 0.03018568828701973, 0.021155182272195816, 0.0020633654203265905, -0.019293079152703285, -0.003944720607250929, -0.007749433163553476, -0.02034313790500164, -0.010899608954787254, -0.0175709817558527, -0.011669652536511421, -0.026755494996905327, -0.013160735368728638, -0.006590868346393108, -0.0645156055688858, 0.0001728221686789766, 0.025439422577619553, -0.04275839030742645, 0.029093626886606216, 0.016254909336566925, 0.020903168246150017, 0.02293328195810318, -0.008050450123846531, -0.036850061267614365, -0.01895705983042717, -0.0011428139405325055, -0.018369026482105255, -0.016044896095991135, 0.0317537747323513, 0.011858662590384483, -0.032453812658786774, 0.004900273866951466, 0.002658398589119315, -0.019517092034220695, -0.0073924134485423565, -0.0332658588886261, -0.0009354273206554353, -0.021631209179759026, 0.0012469447683542967, 0.005579311866313219, -0.006842882372438908, 0.0020231131929904222, -0.009149511344730854, -0.03558998927474022, -0.007868439890444279, 0.018663043156266212, -0.028477592393755913, 0.03813813254237175, -0.0016634679632261395, 0.050906844437122345, 0.012845718301832676, 0.0023818830959498882, 0.006146343424916267, -0.01710895635187626, 0.006583868060261011, 0.03208979219198227, 0.02436136268079281, -0.029373642057180405, -0.0041162301786243916, -0.004126730840653181, 0.01664693094789982, -0.011389636434614658, 0.01734696887433529, -0.002117618452757597, -0.028141573071479797, 0.005467305425554514, 0.004700762685388327, -0.05068283528089523, -0.003295434173196554, -0.009933555498719215, -0.0038887173868715763, 0.012460696510970592, 0.004021724686026573, -0.03645803779363632, -0.02431936003267765, -0.0011428139405325055, -0.01990911364555359, 0.013699766248464584, -0.0021578706800937653, 0.010220571421086788, -0.013412749394774437, 0.013363746926188469, 0.022751271724700928, 0.02179921790957451, 0.03066171333193779, 0.007084396202117205, 0.007756433449685574, 0.02483738772571087, -0.0005092784995213151, 0.054155029356479645, -0.011641650460660458, -0.017949003726243973, -0.01871904730796814, -0.0050962851382792, 0.01182366069406271, 0.00807145144790411, 0.011935667134821415, 0.053454987704753876, 0.018075009807944298, 0.004662260878831148, -0.0010894358856603503, -0.05197090655565262, 0.006629370618611574, 0.0003869903739541769, 0.05082284286618233, 0.026069456711411476, -0.027245523408055305, -0.022513259202241898, 0.03133375197649002, 0.038894172757864, 0.024851389229297638, -0.009177513420581818, 0.021155182272195816, -0.019545093178749084, 0.012698709964752197, -0.01402878388762474, -0.009863551706075668, -0.009352522902190685, -0.009394525550305843, -0.024473369121551514, 0.0007328534848056734, 0.0015147096710279584, 0.01989511214196682, 0.011774658225476742, -0.02598545327782631, 0.0032446812838315964, 0.004035725723952055, -0.018537037074565887, -0.03623402491211891, -0.04821869730949402, 0.0059713339433074, 0.016338912770152092, -0.007315408904105425, -0.003983222879469395, 0.005799824371933937, 0.016338912770152092, -0.0012854468077421188, 0.035673994570970535, -0.0055443099699914455, 0.00011408450518501922, -0.0101925702765584, -0.0017807245021685958, 0.014812828041613102, 0.0008492349879816175, 0.002665399108082056, 0.02083316445350647, -0.029373642057180405, -0.0034476928412914276, 0.011739656329154968, -0.0008658609003759921, -0.013937778770923615, -0.02734352834522724, 0.024753384292125702, -0.011375635862350464, 0.007094896864145994, 0.028141573071479797, -0.03399389982223511, 0.009555534459650517, 0.03743809461593628, 0.008064450696110725, -0.01065459568053484, -0.008953500539064407, -0.04253437742590904, -0.016450919210910797, 0.005099785048514605, 0.02293328195810318, 0.002723152283579111, 0.052054911851882935, -0.04001423716545105, 0.005281795281916857, -0.0034284417051821947, -0.06065139174461365, 0.015960892662405968, -0.0007149149896577001, 0.01688494347035885, 0.03508596122264862, -0.015428862534463406, 1.1532871212693863e-05, 0.03603801503777504, 0.00830246414989233, -0.03721408173441887, 0.013762769289314747, 0.0005350924329832196, -0.03774610906839371, -0.018439030274748802, -0.03337786719202995, 0.028127573430538177, 0.0014963336288928986, -0.01895705983042717, 0.029065625742077827, 0.015778882429003716, -0.001004556193947792, 0.003829214023426175, 0.027707548812031746, -0.00022795023687649518, -0.0009704292751848698, 0.003204429056495428, 0.008113453164696693, 0.04835870489478111, 0.043402425944805145, 0.013727767392992973, -0.023101290687918663, 0.006247849203646183, -0.0014420805964618921, 0.0518869012594223, 0.0306337121874094, -0.011403637938201427, 0.023773329332470894, 0.004074227996170521, 0.027301525697112083, 0.03643003851175308, -0.010346578434109688, 0.004322741646319628, 0.024893391877412796, -0.019307078793644905, 0.017192961648106575, 0.013888776302337646, 0.03323785960674286, 0.020987173542380333, 0.01892905868589878, 0.000756479799747467, 0.035954009741544724, 0.010213570669293404, 0.008547477424144745, 0.0033531873486936092, 0.017640985548496246, -0.04732264578342438, -0.017038952559232712, -0.04359843581914902, 0.021617207676172256, -0.020875167101621628, -0.03676605597138405, -0.018383027985692024, 6.0487756854854524e-05, -0.03323785960674286, -0.002177121816202998, 0.02268126793205738, -0.013160735368728638, -0.0013484504306688905, 0.009905553422868252, -0.012068674899637699, 0.023311303928494453, -0.03234180808067322, -0.011767657473683357, -0.03841814771294594, 0.05057082697749138, 0.007224403787404299, 0.010941611602902412, 0.0011410637525841594, -0.005810325033962727, 0.05451904609799385, -0.0059188310988247395, 0.02343731001019478, -0.02430535852909088, 0.00949253048747778, -0.013265741989016533, 0.02221924252808094, -0.039930231869220734, 0.01591889001429081, -0.05757121741771698, 0.011424638330936432, 0.03785811737179756, 0.01660492829978466, 0.02854759618639946, 0.007770434487611055, 0.05880328640341759, 0.004322741646319628, 0.011900665238499641, 0.026111459359526634, -0.024249356240034103, 0.001383452326990664, -0.011970669031143188, -0.01121462695300579, -0.0009406775934621692, 0.009653539396822453, -0.01253070030361414, 0.006055338308215141, 0.00853347685188055, -0.05446304380893707, -0.034553930163383484, -0.017892999574542046, 0.02968166023492813, 0.0036892062053084373, -0.01273371186107397, 0.004196734633296728, 0.042954400181770325, -0.01028357446193695, -0.0003318623057566583, 0.003487945068627596, -0.0014062036061659455, -0.02172921411693096, 0.03458193317055702, -0.033797889947891235, -0.05359499529004097, -0.01214567944407463, -0.014217794872820377, -0.00926151778548956, -0.0011979419505223632, 0.01821501925587654, 0.007854439318180084, 0.01705295406281948, 0.021015174686908722, -0.007385412696748972, -0.020917169749736786, 0.017878999933600426, 0.02625146694481373, 0.00781943742185831, -0.027441533282399178, 0.034469928592443466, -0.003160676686093211, 0.017892999574542046, 0.016912944614887238, -0.0037172078154981136, -9.494280675426126e-05, -0.03298584371805191, 0.029597654938697815, 0.01510684471577406, 0.030045678839087486, 0.016016894951462746, 0.002317129634320736, -0.015400861389935017, 0.006870883982628584, -0.05068283528089523, 0.0032464314717799425, -0.007052894216030836, -0.020539147779345512, -0.006695874501019716, 0.02364732138812542, -0.005820825230330229, 0.00935952365398407, 0.02669949270784855, 0.024207353591918945, -0.022345248609781265, -0.005372800398617983, 0.0292616356164217, 0.017696989700198174, 0.027959562838077545, 0.007777434773743153, 0.007336410228163004, -0.008603480644524097, 0.015078842639923096, 0.012565702199935913, 0.0040462263859808445, -0.024389363825321198, 0.016786938533186913, 0.010941611602902412, -0.00018474469834472984, 0.0022313748486340046, -0.03340586647391319, 0.009436527267098427, -0.013258741237223148, 0.006800880189985037, -0.015820885077118874, -0.027693549171090126, -0.022989286109805107, -0.029345640912652016, -0.01404278539121151, 0.006415858864784241, 0.030773719772696495, 9.062225581146777e-05, -0.002388883614912629, 0.011655651964247227, 0.010598592460155487, 0.009023504331707954, 0.08355667442083359, -0.01217368058860302, -0.013034728355705738, 0.03127774968743324, 0.009933555498719215, -0.03914618864655495, -0.024277357384562492, 0.0168149396777153, 0.00655236653983593, -0.011256629601120949, -0.06042737886309624, 0.0119426678866148, 0.06563566625118256, -0.010535589419305325, 0.0028351584915071726, -0.006734376307576895, -0.0012329439632594585, 0.027497537434101105, 0.0095975361764431, -0.017192961648106575, 0.0023853834718465805, -0.02506140060722828, 0.002213873667642474, -0.00031129864510148764, -0.031473759561777115, -0.0060343374498188496, 0.022541260346770287, -0.038978178054094315, -0.004371744580566883, 0.03200579062104225, -0.007700430694967508, 0.04376644641160965, -0.005817325320094824, 0.005848826840519905, -0.001672218437306583, 0.0024553872644901276, 0.01227168645709753, -0.031249746680259705, 0.015120845288038254, -0.015400861389935017, 0.0008649858646094799, -0.0153168560937047, -0.005348299164324999, -0.01587688736617565, 0.010682596825063229, 0.038530152291059494, 0.0023801331408321857, -0.024417364969849586, 0.006912886630743742, -0.021183183416724205, 0.0004690262139774859, -0.00474626524373889, -0.03530997410416603, -0.036178022623062134, -0.017864998430013657, -0.0053237974643707275, -0.010913610458374023, -0.02058115042746067, -0.010514588095247746, -0.01943308673799038, 0.0067483773455023766, 0.018859054893255234, -0.04866671934723854, -0.011753656901419163, 0.005624814424663782, -0.012250685133039951, -0.00236788229085505, -0.009380524046719074, -0.002149120206013322, -0.011900665238499641, -0.014910833910107613, 0.0047392649576067924, 0.03018568828701973, -0.025873446837067604, 0.015078842639923096, 0.03979022428393364, -0.028463590890169144, 0.023549316450953484, -0.013370747677981853, -0.05435103923082352, -0.007896441034972668, 0.02574743889272213, 0.013363746926188469, 0.021827220916748047, -0.030969731509685516, -0.007770434487611055, 0.039426203817129135, 0.010521587915718555, -0.004035725723952055, 0.04326241835951805, -0.009121510200202465, -0.02079116180539131, 0.03186578303575516, 0.02079116180539131, 0.01867704465985298, 0.047630663961172104, -0.017430974170565605, -0.011802660301327705, -0.036878060549497604, -0.01871904730796814, -0.003043420147150755, -0.011900665238499641, -0.023983340710401535, -0.0008864245610311627, -0.020455144345760345, -0.017220962792634964, -0.00971654336899519, 0.013727767392992973, -0.0017194711836054921, 0.017458975315093994, -0.0031116739846765995, -0.022065233439207077, 0.021351194009184837, -0.00935952365398407, -0.007469417527318001, 0.001002806005999446, 0.020035119727253914, -0.03704607114195824, 0.00607633963227272, 0.009786547161638737, -0.012677708640694618, -0.0023958839010447264, 0.0036892062053084373, 0.011536644771695137, -0.00607633963227272, 0.0038642159197479486, -0.0024693880695849657, -0.015512866899371147, 0.0005832200986333191, 0.01657692715525627, 0.007357411552220583, 0.023815331980586052, 0.010122565552592278, 0.016310911625623703, -0.007315408904105425, 0.00784043874591589, -0.022121237590909004, -0.008379468694329262, -0.002112368121743202, 0.018131013959646225, -0.0189430583268404, 0.01052858866751194, 0.005089284386485815, 0.011046617291867733, 0.0031379254069179296, 0.040546268224716187, -0.018145013600587845, -0.015288854949176311, 0.02032913640141487, -0.011046617291867733, 0.009723543189466, 0.006002835463732481, 0.011256629601120949, 0.0050962851382792, -0.017710989341139793, -0.018565038219094276, 0.021701212972402573, -0.024893391877412796, 0.005831325892359018, -0.026531483978033066, 0.00971654336899519, 0.02336730621755123, -0.039930231869220734, -0.02102917619049549, 0.033573877066373825, -0.015456863678991795, -0.004445248749107122, 0.0014009532751515508, -0.012908721342682838, -0.0019338581478223205, -0.029177630320191383, -0.016478920355439186, 0.0034914452116936445, 0.03315385431051254, -0.011956668458878994, -0.0069268872030079365, -0.0029769164975732565, 0.006916386540979147, 0.019489089027047157, 0.001210192684084177, 0.0032656826078891754, -0.00277915527112782, -0.019741103053092957, -0.01615690253674984, -0.032369811087846756, -0.01227168645709753, -0.015274854376912117, -0.015484865754842758, 0.009856550954282284, -0.0045642550103366375, -0.002572643803432584, -0.018999062478542328, 0.0069023859687149525, 0.01827102154493332, -0.00526429433375597, -0.030829723924398422, 0.032873839139938354, -0.021351194009184837, 0.0046097575686872005, 0.008281462825834751, 0.008953500539064407, -0.012712710537016392, -0.03547798469662666, -0.006335354410111904, 0.009457528591156006, -0.04701462760567665, 0.003934219945222139, -0.002038863953202963, 0.030017677694559097, 0.009499531239271164, 0.03015768527984619, 0.00014361740613821894, 0.013657763600349426, 0.01346175279468298, 0.0005105910240672529, -0.003059171140193939, 0.00303816981613636, 0.015218851156532764, 0.015554869547486305, -0.047630663961172104, -0.006226848345249891, 0.009646539576351643, 0.027259523048996925, -0.016674932092428207, -0.01939108408987522, 0.039678219705820084, 0.027889559045433998, 0.02406734600663185, -0.01733296923339367, -0.01846703328192234, 0.025649433955550194, 0.020441142842173576, -0.007756433449685574, -0.016926946118474007, -0.01007356308400631, 0.02832358330488205, -0.049534767866134644, 0.003965721931308508, -0.0008452972397208214, -0.03553398698568344, -0.016702933236956596, -0.005397301632910967, -0.01586288772523403, 0.011333633214235306, 0.007651427760720253, 0.018355026841163635, 0.004998279269784689, -0.012159680016338825, -0.03502995893359184, -0.03466593846678734, -0.015414861962199211, 0.005439304281026125, 0.003636703360825777, -0.012306688353419304, -0.0017728491220623255, -0.01967109926044941, 0.008743489161133766, -0.027945563197135925, 0.0067518772557377815, -0.044550489634275436, -0.023255299776792526, 0.009170512668788433, 0.002920913277193904, -0.0168149396777153, 0.015834884718060493, 0.013503754511475563, -0.013615760952234268, -0.029765663668513298, -0.025705436244606972, 0.029625656083226204, -0.010976613499224186, -0.009954556822776794, 0.001106936833821237, -0.03141775727272034, -0.023997342213988304, 0.017234964296221733, 0.01566687598824501, -0.01265670731663704, 0.028813611716032028, -0.00266364892013371, -0.038446150720119476, 0.017710989341139793, -0.015078842639923096, -0.0015523367328569293, 0.012866719625890255, 0.015120845288038254, -0.02013312466442585, 0.020931169390678406, 0.004133731126785278, 0.022037232294678688, 0.03281783312559128, 0.020217129960656166, 0.008036449551582336, 0.016786938533186913, 0.010003559291362762, 0.022779272869229317, 0.009702542796730995, 0.03040969930589199, 0.0013747018529102206, 0.000623909872956574, 0.01666093058884144, 0.040602270513772964, 0.03668205067515373, -0.0026268968358635902, 0.016492921859025955, 0.01779499463737011, 0.01867704465985298, 0.02808557078242302, -0.012705710716545582, 0.0072174035012722015, -0.014770825393497944, 0.004445248749107122, -0.00013771082740277052, 0.0035089461598545313, 0.02364732138812542, 0.01265670731663704, -0.0050752838142216206, -0.010010560043156147, 0.0003268307773396373, -0.006468361709266901, 0.008862495422363281, 0.0009441777947358787, 0.005215291399508715, -0.041302308440208435, 0.01379077136516571, 0.04071427509188652, 0.007798436097800732, -0.025677435100078583, -0.0002528891491238028, -0.012810716405510902, 0.027721550315618515, -0.021925225853919983, 0.004221235867589712, -0.01158564817160368, 0.009933555498719215, 0.026111459359526634, 0.03749409690499306, 0.017010951414704323, 0.009121510200202465, -0.010395580902695656, 0.016450919210910797, 0.007084396202117205, 0.034749943763017654, 0.055807121098041534, -0.0205671489238739, 0.03645803779363632, 0.0029104126151651144, 0.034497927874326706, -0.001550586661323905, -0.006849883124232292, 0.004921275191009045, -0.00690938625484705, -0.03553398698568344, 0.006261850241571665, -0.006429859437048435, -0.011809660121798515, 0.01876104809343815, -0.01897106133401394, -0.012166679836809635, 0.0020703657064586878, -0.0074624172411859035, -0.011872664093971252, -0.010150567628443241, -0.0007993571925908327, 0.02340930886566639, 0.029877670109272003, -0.039650216698646545, -0.00620234664529562, 0.015134845860302448, 0.02223324216902256, 0.004886273294687271, -0.023913336917757988, 0.016212906688451767, -0.0016573426546528935, -0.014490810222923756, -0.044102463871240616, 0.009506531059741974, -0.008036449551582336, -0.03332186117768288, -0.024053344503045082, 0.007245405111461878, -0.024613376706838608, 0.00015127408551052213, -0.03704607114195824, 0.018411029130220413, 0.0024046343751251698, -0.017850998789072037, -0.004917774815112352, 0.021617207676172256], [0.012480637058615685, 0.025429466739296913, 0.06067756935954094, 0.04414373263716698, -0.028813818469643593, 0.013671180233359337, -0.022874480113387108, 0.021322760730981827, 0.0002967997279483825, 0.038364917039871216, 0.0018961740424856544, -0.027556391432881355, 0.02081443928182125, -0.006260383874177933, -0.04007716104388237, 0.014741331338882446, -0.004936072044074535, 0.04502660781145096, -0.015102507546544075, 0.00012279566726647317, 0.0473274327814579, 0.026566501706838608, -0.01452730130404234, 0.010286827571690083, -0.056610994040966034, -0.04821030795574188, 0.012801682576537132, 0.000978184980340302, 0.02219225838780403, -0.0637810081243515, 0.09770479798316956, -0.018513614311814308, 0.01419287919998169, -0.02433256059885025, -0.01050085760653019, 0.006374087650328875, -0.01566433720290661, -0.0020583688747137785, 0.028171727433800697, 0.014099241234362125, 0.002021582331508398, 0.007604761514812708, -0.023142017424106598, -0.0007206798763945699, -0.04146835580468178, 0.04604325070977211, 0.028037959709763527, -0.006133303511887789, 0.005507933907210827, 0.01989143341779709, 0.02086794748902321, 0.01685488037765026, 0.011303471401333809, -0.0062102205120027065, 0.004487946163862944, 0.028546281158924103, -0.013804949820041656, 0.05650397762656212, 0.005360788200050592, -0.027743667364120483, -0.0098119480535388, -0.02825198881328106, -0.04462530091404915, 0.013450462371110916, -0.018834659829735756, 0.0015617518220096827, -0.03226505592465401, 0.028091467916965485, -0.017430085688829422, -0.00882874708622694, 0.0369202122092247, 0.03140893578529358, 0.014139371924102306, -0.04007716104388237, -0.028359005227684975, -0.013303316198289394, 0.018353091552853584, 0.01908882148563862, -0.02308851107954979, -8.209020597860217e-05, -0.008614716120064259, 0.02699456177651882, -0.005614949390292168, 0.02450646087527275, 0.02153679169714451, 0.015196145512163639, -0.07351937890052795, 0.010153058916330338, -0.0443042553961277, 0.010621249675750732, -0.07367990165948868, -0.02215212769806385, -0.024145284667611122, 0.035475511103868484, 0.056557487696409225, -0.045080117881298065, 0.04550817608833313, 0.004497978836297989, -0.022031735628843307, -0.001275820774026215, -0.012801682576537132, -0.005497901234775782, 0.013423708267509937, 0.032586101442575455, 0.01974428817629814, 0.023021625354886055, -0.03528823330998421, 0.03202427178621292, 0.009243430569767952, -0.023195525631308556, -0.04556168243288994, 0.008213410153985023, -0.03448561951518059, 0.0738404244184494, -0.051581285893917084, -0.0080528873950243, -0.06345996260643005, 0.020092086866497993, 0.02900109626352787, 0.004584928508847952, -0.05409613996744156, -0.020051956176757812, 0.04438451677560806, -0.049976058304309845, 0.024493083357810974, -0.05404262989759445, -0.004665189888328314, -0.01966402679681778, -0.0805288702249527, -0.05155453085899353, 0.05543382838368416, -0.014500548131763935, 0.029830463230609894, -0.07806752622127533, -0.018941674381494522, 0.03611760213971138, -0.006942605599761009, -0.021496661007404327, 0.01396547257900238, -0.06517220288515091, 0.016346558928489685, 0.025603365153074265, 0.03675968945026398, 0.026165194809436798, -0.04716691002249718, 0.01396547257900238, 0.03980962187051773, 0.021376268938183784, 0.014072487130761147, -0.03041904605925083, -0.01668098010122776, 0.02806471288204193, -0.029857216402888298, 0.0080528873950243, -0.0025131830479949713, 0.006387464702129364, 0.00583901209756732, 0.06763355433940887, 0.013463838957250118, -0.019062066450715065, -0.02041313238441944, -0.011089441366493702, -0.03793685883283615, -0.0213093850761652, 0.008982581086456776, 0.015102507546544075, -0.009838702157139778, 0.04952124506235123, -0.03713424503803253, -0.06388802081346512, -0.04636429622769356, -0.009905586019158363, -0.07549916207790375, 0.011664647608995438, -0.014781462028622627, -0.05832323804497719, 0.0278506837785244, -0.003608415834605694, 0.021122107282280922, 0.008775238879024982, -0.018741020932793617, 0.005350755527615547, -0.07282378524541855, -0.0570390559732914, -0.08914358913898468, 0.026620009914040565, 0.005123348440974951, 0.02526894398033619, -0.016841502860188484, -3.5858945466316072e-06, 0.018607253208756447, 0.017456840723752975, 0.017095664516091347, 0.017135795205831528, -0.020051956176757812, 0.014018979854881763, -0.0009823653381317854, 0.02468036115169525, 0.003150257281959057, 0.00032167238532565534, 0.03518121689558029, -0.043608658015728, 0.06126615032553673, 0.03357599303126335, -0.026834039017558098, 0.01775113120675087, -0.017470216378569603, 0.03820439428091049, 0.007644892204552889, -0.028546281158924103, 0.007785349618643522, -0.0563969649374485, -0.0018894856330007315, 0.02201835997402668, -0.003842511447146535, 0.017724378034472466, -0.006333956960588694, 0.008929073810577393, -0.0005760422791354358, 0.038364917039871216, 0.017162548378109932, 0.024212168529629707, 0.013724688440561295, -0.022219013422727585, -0.05725308507680893, 0.014246386475861073, 0.007711776532232761, -0.021724067628383636, 0.004464536905288696, -0.045882727950811386, 0.01587836816906929, 0.0033910414204001427, -0.023877747356891632, -0.01868751458823681, -0.016306428238749504, -0.0389535017311573, -0.019503504037857056, -0.00911634974181652, 0.036492154002189636, 0.027690161019563675, 0.0402911901473999, 0.007236897014081478, -0.011189768090844154, 0.002687082625925541, 0.049574751406908035, -0.021068600937724113, -0.021697314456105232, -0.005635014735162258, 0.0426187701523304, 0.008126460015773773, 0.013430397026240826, -0.01176497433334589, 0.05324001982808113, -0.022606942802667618, -0.012106084264814854, -0.003161962144076824, -0.008708355017006397, -0.0624433197081089, 0.01690838858485222, -0.03964909911155701, -0.001989812357351184, -0.014554055407643318, -0.02833225019276142, 0.007792037911713123, -0.08288320153951645, -0.009136415086686611, -0.005150102078914642, -0.009892209433019161, -0.004076607059687376, 0.02433256059885025, -0.05040411651134491, 0.02793094515800476, 0.00365857919678092, -0.03665267676115036, -0.034137822687625885, 0.01578472927212715, 0.00016303083975799382, -0.024452952668070793, 0.019463373348116875, 0.0038324787747114897, -0.04639105126261711, -0.003966247662901878, -0.0049394164234399796, -0.043929703533649445, -0.010614561848342419, 0.018674137070775032, -0.02731560729444027, -0.021938098594546318, -0.033736515790224075, 0.0017991915810853243, 0.05677151679992676, -0.024814128875732422, -0.0026268865913152695, -0.03175673633813858, 0.02249992825090885, 0.03962234407663345, 0.012186345644295216, -0.0073773544281721115, -0.017470216378569603, -0.0031251756008714437, -0.007183389272540808, 0.06046354025602341, -0.02098833955824375, -0.002967997221276164, -0.040237683802843094, 0.02335604839026928, -0.005594884045422077, 0.021938098594546318, -0.019329603761434555, 0.0018159126630052924, -0.018888168036937714, 0.0348869264125824, 0.004956137388944626, -0.041923169046640396, -0.055808380246162415, -0.006236974615603685, 0.0033542548771947622, 0.003631825326010585, 0.009022711776196957, 0.005929306149482727, 0.0270079392939806, 0.015049000270664692, 0.04013066738843918, -0.030445799231529236, -0.01416612509638071, 0.004598305560648441, 0.01591849885880947, 0.018165815621614456, -0.04149511083960533, -0.024452952668070793, -0.03405756130814552, 0.021510036662220955, 0.049440983682870865, -0.043394628912210464, -0.022754088044166565, -0.017496971413493156, -0.025924410670995712, 0.02517530508339405, 0.013022401370108128, 0.027288854122161865, 0.033067669719457626, -0.023503193631768227, 0.010755018331110477, 0.007952560670673847, -0.015731221064925194, 0.0369202122092247, 0.02352994866669178, 0.0189550518989563, 0.0017206023912876844, 0.0345926359295845, -0.002334267133846879, 0.0046952879056334496, -0.09433382004499435, 0.016560588032007217, -0.05618293583393097, -0.008634781464934349, 0.012166280299425125, -0.03625136986374855, -0.003591694636270404, -0.03542200103402138, -0.008293671533465385, 0.011979004368185997, 0.023302540183067322, 0.022673826664686203, 0.009343757294118404, -0.0027639996260404587, -0.02286110259592533, 0.016172658652067184, 0.030579568818211555, -0.00728371599689126, 0.009691555984318256, 0.05591539666056633, 0.005016333423554897, -0.007845545187592506, -0.042244214564561844, -0.04417048767209053, -0.018165815621614456, 0.021188993006944656, -0.01672111079096794, -0.0416288785636425, 0.002743934281170368, 0.004885908681899309, 0.01322974357753992, -0.001941321068443358, 0.058162715286016464, 0.01947675086557865, -0.08614716678857803, 0.010300204157829285, 0.004932727664709091, 0.013938718475401402, 0.00420368742197752, 0.03148919716477394, -0.046016499400138855, 0.03871271759271622, -0.001074331346899271, 0.011530878022313118, 0.025523103773593903, 0.033468976616859436, 0.03675968945026398, 0.005350755527615547, 0.01989143341779709, -0.00796593725681305, -0.002325906651094556, -0.020934831351041794, -0.04154861718416214, -0.028037959709763527, -0.03975611552596092, -0.026191947981715202, -0.0005622473545372486, 0.002429577521979809, 0.036411892622709274, 0.02504153549671173, 0.045267391949892044, -0.016654226928949356, 0.021282630041241646, -0.04096003249287605, -0.02117561548948288, 0.03229181095957756, -0.015570699237287045, 0.0008373096352443099, 0.062389809638261795, 0.007792037911713123, 0.004421061836183071, -0.041441600769758224, -0.026700271293520927, 0.0426187701523304, 0.012213099747896194, -0.027502883225679398, 0.00842744018882513, -0.11108168959617615, -9.118230809690431e-05, 0.05939338728785515, 0.027556391432881355, 0.013711310923099518, -0.02691430039703846, -0.017189301550388336, 0.06592130661010742, -0.006079796236008406, -0.039970144629478455, -0.04684586450457573, 0.013095973990857601, -0.009731686674058437, 0.00976512860506773, -0.0056517357006669044, -0.005277182906866074, 0.059981971979141235, 5.029396925237961e-05, -0.005815602373331785, -0.009062842465937138, 0.02171069011092186, -0.007979314774274826, -8.836061897454783e-05, -0.0315694585442543, -0.010494169779121876, -0.039836376905441284, 0.0202927403151989, 0.012621094472706318, -0.06228279694914818, 0.026138441637158394, -0.05666450038552284, -0.011711466126143932, 0.017336448654532433, 0.07079049944877625, 0.04237798601388931, 0.00617343420162797, -0.0016336526023223996, -0.05048437789082527, -0.02379748597741127, -0.005731997080147266, 0.016935141757130623, -0.0042705717496573925, -0.04700638726353645, 0.0034060904290527105, -0.01882128231227398, 0.06613533943891525, 0.010862033814191818, -0.03657241538167, -0.07421498000621796, 0.013196300715208054, -0.028412511572241783, -0.027904190123081207, 0.07159311324357986, -0.025068290531635284, -0.027636652812361717, 0.04039820656180382, 0.02023923397064209, 0.018714267760515213, 0.005815602373331785, -0.02419879287481308, -0.006043009459972382, 0.0011035933857783675, -0.039301298558712006, 0.025295697152614594, -0.015557321719825268, -0.009029400534927845, -0.02385099232196808, -0.039568837732076645, 0.005551408976316452, 0.044732317328453064, -0.01606564410030842, 0.0399433895945549, -0.03948857635259628, 0.019048690795898438, -0.00298137404024601, 0.008460882119834423, -0.014620939269661903, -0.0031218314543366432, -0.027743667364120483, -0.030579568818211555, 0.014018979854881763, -0.040103912353515625, 0.008420751430094242, 0.021831082180142403, -0.008935761637985706, -0.03322819247841835, -0.025870904326438904, 0.005354099906980991, -0.015503814443945885, -0.02322227880358696, 0.015811482444405556, 0.0030766844283789396, -0.019369734451174736, -0.006842278875410557, -0.018567122519016266, -0.012815060093998909, 0.015115885064005852, -0.01983792707324028, -0.04269903153181076, -0.015757976099848747, 0.015089130960404873, 0.03801712021231651, -0.04342138022184372, -0.031301919370889664, 0.03405756130814552, 0.012360245920717716, -0.005287215579301119, 0.01416612509638071, -0.025857526808977127, 0.026138441637158394, -0.026084933429956436, 0.04652481898665428, 0.012580963782966137, 0.00638412032276392, 0.020627163350582123, -0.0029880625661462545, -0.008373932912945747, 0.004705320578068495, 0.03911402449011803, 0.009136415086686611, 0.0342448353767395, 0.015049000270664692, 0.007450927048921585, 0.001717258128337562, -0.04039820656180382, -0.003322484903037548, -0.007899053394794464, 0.023302540183067322, -0.03416457399725914, 0.0322115495800972, -0.016787996515631676, -0.01690838858485222, 0.010948983952403069, -0.005544720683246851, 0.003304091515019536, -0.021202368661761284, 0.009123038500547409, 0.015182768926024437, 0.04687261953949928, -0.0067452965304255486, 0.033736515790224075, -0.03015150874853134, 0.004909318406134844, 0.02798445150256157, -0.016025513410568237, 0.04342138022184372, 0.00620687659829855, 0.0469796359539032, -0.01633318141102791, 0.02534920535981655, -0.016159281134605408, -0.03799036517739296, -0.000493690837174654, -0.030392291024327278, -0.004785581957548857, -0.01591849885880947, 0.013570853509008884, 0.0023944631684571505, -0.028626542538404465, 0.004304014146327972, 0.003578317817300558, 0.01672111079096794, 0.004628403577953577, 0.000492854742333293, 0.027262099087238312, -4.40758049080614e-05, 0.037749581038951874, 0.00907621905207634, 0.014473794028162956, 0.007952560670673847, 0.02192472107708454, 0.011437240056693554, -0.016921764239668846, -0.008628093637526035, -0.01018650084733963, -0.028011206537485123, 0.015597452409565449, 0.003488023765385151, 0.0011127899633720517, -0.001066806958988309, 0.03274662420153618, 0.0038558882661163807, 0.035475511103868484, 0.001355246058665216, -0.0049394164234399796, -0.010688134469091892, 0.018660759553313255, -0.016787996515631676, -0.02245979756116867, 0.00365857919678092, -0.00947752594947815, -0.01245388388633728, -0.022540058940649033, 0.03175673633813858, -0.013597607612609863, 0.015115885064005852, 0.004407684784382582, -0.02237953618168831, -0.01606564410030842, 0.02806471288204193, -0.011550943367183208, -0.015771351754665375, 0.029750201851129532, -0.011778350919485092, 0.006651658099144697, -0.006514545064419508, 0.005591539666056633, 0.037348274141550064, -0.0003379754489287734, 0.004986235406249762, -0.020426509901881218, 0.03210453316569328, 0.035609278827905655, 0.019423242658376694, -0.03143569082021713, 0.03927454724907875, -0.0020316150039434433, -0.013296627439558506, 0.030392291024327278, -0.020038580521941185, 0.018794529139995575, -0.0017289628740400076, 0.0021787607111036777, -0.005715275648981333, -0.027877436950802803, 0.02397138439118862, 0.011002491228282452, -0.01496873889118433, 0.02660663239657879, 0.023917878046631813, 0.012841813266277313, -0.034672897309064865, 0.009444084018468857, -0.02838575839996338, 0.00770508823916316, 0.018259452655911446, -0.026004672050476074, 0.034325096756219864, -0.024452952668070793, -0.0013276562094688416, -0.0013276562094688416, -0.06527921557426453, -0.012420441024005413, 0.016801372170448303, -0.009838702157139778, 0.006287137977778912, -0.012801682576537132, -0.015289784409105778, 0.004969514440745115, -0.05249091237783432, 0.010594496503472328, -0.025683626532554626, -0.009196611121296883, -0.013677868992090225, -0.0466318354010582, -0.0405854806303978, -0.0018727644346654415, 0.020439885556697845, -0.020172348245978355, 0.018032046034932137, -0.03421808034181595, -0.015115885064005852, 0.009932340122759342, -0.0003404836170375347, 0.009484214708209038, 0.01771100051701069, 0.05216986685991287, 0.020346248522400856, -0.011684712953865528, -0.030579568818211555, -0.08614716678857803, -0.0015341619728133082, 0.010888787917792797, -0.002262366469949484, -0.035743046551942825, -0.032853640615940094, -0.00027736142510548234, -7.775316771585494e-05, 0.025028159841895103, 0.057841669768095016, -0.018433352932333946, -0.007123193237930536, 0.001917911460623145, -0.03068658336997032, -0.009959094226360321, -0.041388094425201416, 0.010761707089841366, -0.005591539666056633, -0.02056027762591839, -0.01463431678712368, -0.0055313436314463615, -0.01134360209107399, 0.020894700661301613, -0.04451828822493553, -0.015383422374725342, 0.03542200103402138, 0.03100762888789177, 0.012253230437636375, 0.008795304223895073, -0.001789158908650279, 0.01209939643740654, 0.00731715839356184, -0.012487325817346573, 0.028305497020483017, 0.01125665195286274, -0.018072176724672318, -0.0009990864200517535, -0.021911343559622765, -0.010333647020161152, -0.04109380394220352, 0.003785659559071064, -0.013637738302350044, -0.04834407567977905, 0.0036518906708806753, -0.024573344737291336, 0.020132217556238174, -0.008594650775194168, -0.005855733063071966, 0.010828591883182526, 0.019369734451174736, 0.044197242707014084, -0.013470527715981007, 0.01125665195286274, 0.006955982185900211, -0.04585597664117813, -0.0174434632062912, 0.011564320884644985, -0.01416612509638071, 0.03020501509308815, -0.03884648531675339, 0.016868257895112038, 0.005023021716624498, 0.038766223937273026, -0.00047696969704702497, 0.02601804956793785, 0.0042237527668476105, -0.044464778155088425, -0.0041434913873672485, -0.00041698271525092423, 0.0537215881049633, 0.00691585149616003, -0.004297325387597084, 0.0045147002674639225, 0.009310314431786537, 0.014888477511703968, 0.021242499351501465, 0.003922772593796253, -0.0005271330592222512, -0.013069220818579197, -0.057092562317848206, -0.05109971761703491, 0.03700047358870506, -0.020854569971561432, 0.0063673993572592735, -0.006517888978123665, 0.010748330503702164, 0.013196300715208054, -0.016841502860188484, -0.014955362305045128, 0.002864326350390911, -0.007725153584033251, -0.03229181095957756, 0.004059885628521442, -0.010300204157829285, -0.01668098010122776, -0.0042705717496573925, 0.005056464113295078, -0.01819256879389286, -0.0711650475859642, -0.02708820067346096, 0.004059885628521442, -0.019824549555778503, -0.0091431038454175, -0.00589251983910799, 0.023369425907731056, 0.07100452482700348, 0.0027639996260404587, -0.03585006296634674, 0.00534741161391139, -0.0031569458078593016, -0.012005757540464401, -0.014380156062543392, 0.021563544869422913, -0.019276097416877747, 0.005578162614256144, 0.0038960189558565617, 0.0006834754021838307, 0.00270881992764771, 0.0015274735633283854, -7.341612945310771e-05, 0.008353867568075657, -0.004752140026539564, -0.025108421221375465, -0.016092397272586823, 0.006230285856872797, 0.00045105197932571173, 0.004942760337144136, 0.01452730130404234, 0.0005869109882041812, -0.0045213885605335236, -0.022834349423646927, 0.025108421221375465, 0.021550167351961136, 0.035957079380750656, 0.01672111079096794, 0.0033341895323246717, -0.016159281134605408, -0.01734982430934906, -0.0023693814873695374, 0.018834659829735756, 0.006578085012733936, 0.052196621894836426, -0.0416288785636425, -0.04871863126754761, -0.008614716120064259, -0.009798571467399597, 0.0008113919175229967, 0.012246541678905487, -0.009390575811266899, -0.013316692784428596, 0.04302007332444191, -0.03750879690051079, -0.0315694585442543, -0.00047237140825018287, -0.028760312125086784, 0.020587032660841942, -0.02953617088496685, 0.025335827842354774, -0.023596832528710365, 0.0035816619638353586, -0.016533834859728813, 0.024854259565472603, -0.006223597563803196, 0.018620628863573074, -0.02865329571068287, 0.006303858943283558, -0.005330690182745457, 0.017804639413952827, 0.007230208721011877, 0.017737755551934242, -0.02126925438642502, 0.0325593464076519, -0.014647693373262882, 0.010801837779581547, 0.025991294533014297, -0.015383422374725342, -0.004604993853718042, -0.02744937688112259, 0.04363541305065155, 0.052517667412757874, 0.010286827571690083, 0.021162237972021103, 0.01463431678712368, 0.014661069959402084, 0.02060040831565857, -0.025523103773593903, -0.014661069959402084, -0.00985207874327898, 0.045748960226774216, 0.04414373263716698, 0.01708228699862957, 0.011838546954095364, 0.014032356441020966, 0.011417174711823463, 0.03477990999817848, -0.0019078787881880999, 0.006323924288153648, -0.03247908502817154, -0.01721605658531189, -0.009189922362565994, 0.0059025525115430355, -0.007029555272310972, -0.004701976664364338, 0.004845777992159128, 0.007444238755851984, -0.006166745908558369, -0.002478068694472313, 0.026258833706378937, -0.024533214047551155, 0.023650340735912323, -0.001123658730648458, 0.02651299349963665, 0.016386689618229866, 0.0036619233433157206, -0.021202368661761284, -0.013303316198289394, 0.02001182548701763, -0.029776955023407936, -0.0009246774716302752, 0.025630120187997818, -0.01748359389603138, 0.04275253787636757, -0.003409434575587511, 0.013249808922410011, 0.009524345397949219, -0.006624904461205006, 0.009577852673828602, -0.0038391670677810907, 0.02966994047164917, -0.0056116050109267235, -0.04253850877285004, 0.00770508823916316, 0.03737502917647362, 0.017724378034472466, 0.05992846190929413, -0.006869032513350248, 0.02366371639072895, -0.019985072314739227, 0.019811172038316727, 0.026272209361195564, -0.008373932912945747, 0.04422399401664734, 0.008206721395254135, 0.016654226928949356, -0.03638513758778572, 0.01605226658284664, -0.02419879287481308, -0.022620318457484245, 0.0033425502479076385, 0.014099241234362125, 0.0014430319424718618, 0.02521543577313423, -0.034806665033102036, -0.01738995499908924, 0.0012624439550563693, -0.03122165985405445, -0.003538187127560377, 0.06014249473810196, -0.012239853851497173, 0.04066574200987816, -0.02108197659254074, 0.05329352617263794, 0.02727547660470009, -0.0022021704353392124, -0.03239882364869118, 0.04146835580468178, 0.03322819247841835, -0.021242499351501465, -0.005899208132177591, -0.03502069413661957, 0.047434449195861816, -0.008079640567302704, -0.024145284667611122, 0.06891772896051407, 0.023610210046172142, 0.014540678821504116, 0.021938098594546318, 0.015276406891644001, 0.004116737749427557, 0.017537102103233337, 0.020038580521941185, 0.005109971389174461, 0.02865329571068287, 0.042244214564561844, -0.0064075300469994545, -0.012400375679135323, -0.00838730949908495, 0.0005752062425017357, 0.03609084710478783, 0.02437269128859043, 0.005310624837875366, -0.004976202733814716, 0.013938718475401402, 0.007384042721241713, 0.027061445638537407, -0.0006454348913393915, 0.01503562368452549, 0.011463994160294533, -0.03041904605925083, 0.01574459858238697, 0.011825170367956161, 0.018259452655911446, -0.002725541125983, 0.008266917429864407, -0.007557942532002926, 0.026660140603780746, 0.045882727950811386, 0.03132867440581322, 0.013697934336960316, -0.020653916522860527, -0.02536258101463318, -0.016252920031547546, -0.005467803217470646, -0.002372725633904338, -0.015691090375185013, -0.0061567132361233234, -0.010106239467859268, -0.02100171521306038, -0.026499617844820023, -0.016881633549928665, 0.045802466571331024, -0.0005476163933053613, 0.023917878046631813, 0.007022866979241371, -0.009805259294807911, 0.021938098594546318, 0.018286207690835, -0.029964230954647064, -0.013450462371110916, 0.03464614227414131, 0.004314046818763018, -0.004832400940358639, -0.004267227835953236, 0.008995957672595978, 0.04066574200987816, 0.002615181729197502, -0.0008678256999701262, 0.008748485706746578, -0.00691585149616003, -0.04013066738843918, 0.02641935646533966, -0.01534329168498516, -0.0021938097197562456, -0.05495226010680199, 0.044598549604415894, 0.014580809511244297, -0.027636652812361717, 0.02825198881328106, 0.014152748510241508, 0.03946182131767273, 0.023409556597471237, -0.002815835177898407, 0.03932805359363556, -0.03202427178621292, 0.0026185261085629463, 0.008715042844414711, -0.005390886217355728, -0.03804387152194977, -0.015156014822423458, 0.022901233285665512, -0.011397109366953373, 0.016025513410568237, -0.036144353449344635, -0.000605722249019891, 0.01903531327843666, 0.023409556597471237, -0.0067085097543895245, -0.045668698847293854, -0.010072797536849976, 0.03697372227907181, -0.019998449832201004, -0.0021586953662335873, -0.019316228106617928, 0.008480947464704514, 0.027101576328277588, 0.012948828749358654, 0.02152341417968273, -0.047621723264455795, -0.03638513758778572, -0.011550943367183208, -0.0035883504897356033, -0.009129726327955723, 0.01423300988972187, 0.0029863903764635324, 0.004481257870793343, -0.00943070650100708, -0.030499307438731194, -0.018647383898496628, 0.010601184330880642, 0.003215469652786851, 0.010193189606070518, -0.03590356931090355, 0.01698864996433258, 0.022847726941108704, 0.03215803951025009, 0.0027723603416234255, 0.006517888978123665, 0.01872764527797699, -0.009845389984548092, 0.012815060093998909, -0.014661069959402084, 0.03317468613386154, -0.008179967291653156, -0.0031184873078018427, -0.007357289083302021, 0.02108197659254074, -0.016266297549009323, 0.02793094515800476, 0.011437240056693554, 0.029482662677764893, -0.005558097269386053, -0.03598383069038391, 0.007725153584033251, 0.014500548131763935, 0.022754088044166565, 0.013236431404948235, 0.018005292862653732, -0.019048690795898438, -0.00949759129434824, 0.000256669067312032, 0.025295697152614594, -0.010226631537079811, -0.019998449832201004, -0.023690469563007355, 0.004982891026884317, 0.02561674267053604, -0.017376579344272614, -0.015329915098845959, 0.012975581921637058, 0.007136570289731026, 0.018353091552853584, 0.020841192454099655, -0.020801061764359474, 0.03314793109893799, 0.006758673116564751, 0.003952870611101389, -0.019557012245059013, -0.033522482961416245, -0.015450307168066502, -0.03528823330998421, 0.014206255786120892, -0.00907621905207634, 0.01425976399332285, 0.00045063396100886166, -0.019409865140914917, -0.011878677643835545, 0.01416612509638071, -0.0035649409983307123, 0.08197357505559921, -0.014366778545081615, -0.022312650457024574, 0.007103127893060446, 0.060035478323698044, -0.011905430816113949, 0.004712009336799383, 0.012547521851956844, -0.008166590705513954, 0.033121176064014435, -0.05315975844860077, 0.030392291024327278, 0.024613475427031517, -0.005337378941476345, -0.005561441648751497, -0.0036151043605059385, 0.010734953917562962, 0.04676560312509537, 0.028225235641002655, 0.04015742242336273, -0.006825557444244623, -0.04157537221908569, 0.0010918885236606002, -0.02660663239657879, -0.0019396488787606359, -0.020707424730062485, -0.0032071091700345278, 0.0006454348913393915, -0.02077430859208107, 0.005614949390292168, -0.006678411737084389, 0.0011353634763509035, -0.018205946311354637, 0.004424406215548515, -0.013610984198749065, -0.0063272686675190926, 0.027904190123081207, -0.0025131830479949713, 0.037348274141550064, 0.034860171377658844, -0.02571038156747818, 0.0007206798763945699, -0.00796593725681305, 0.0003482171450741589, -0.004160212352871895, 0.012059265747666359, -0.04248499870300293, -0.004651813302189112, 0.013336758129298687, 0.015945252031087875, -0.015851613134145737, -0.0017741098999977112, -0.06453011184930801, -0.019944941624999046, -0.016654226928949356, 0.007952560670673847, -0.007711776532232761, -0.007932495325803757, -0.04240473732352257, -0.01886141300201416, 0.03210453316569328, 0.03539524972438812, -0.045347653329372406, 0.007016178220510483, -0.0058624218218028545, 0.011310159228742123, 0.013992225751280785, -0.010701511055231094, -0.003491368144750595, 0.010862033814191818, -0.030793597921729088, -0.015811482444405556, 0.026793908327817917, 0.011035933159291744, -0.015905121341347694, 0.01301571261137724, -0.015022246167063713, 0.024533214047551155, -0.01939648948609829, -0.0031067824456840754, -0.00344789307564497, -0.009323691949248314, 0.023342670872807503, 0.06008898466825485, -0.001492359209805727, -0.013764819130301476, 0.02362358570098877, -0.0010709872003644705, -0.024345938116312027, 0.05455095320940018, -0.0042371298186481, -0.01356416568160057, 0.011972315609455109, -0.00034173770109191537, 0.007872299291193485, 0.012975581921637058, -0.015396798960864544, -0.042725782841444016, 0.015543945133686066, -0.019249344244599342, 0.028920834884047508, -0.02161705307662487, -0.009029400534927845, 0.007537877187132835, -0.020533524453639984, -0.017911653965711594, -0.00022594402253162116, -0.016747865825891495, -0.00989889819175005, 0.0018560433527454734, -0.0024429543409496546, -0.006889097858220339, 0.0145941860973835, -0.022392911836504936, -0.021162237972021103, -0.0145941860973835, -0.006675067823380232, -0.030178261920809746, -0.016226166859269142, -0.0010960688814520836, -0.011979004368185997, 0.008193344809114933, -0.0026987872552126646, 0.009838702157139778, 0.01850023679435253, 0.0335492379963398, -0.03732151910662651, 0.032051026821136475, 0.019771041348576546, 0.009243430569767952, 0.011878677643835545, 0.008989269845187664, 0.02205849066376686, -0.011169702745974064, -0.0047688609920442104, -0.01100917998701334, 0.009865455329418182, -0.007992691360414028, -0.01419287919998169, -0.013537411577999592, -0.02241966687142849, -0.0019078787881880999, -0.013042466714978218, -0.014955362305045128, -0.040853019803762436, 0.018125684931874275, -0.004544797819107771, -0.026660140603780746, 0.0019078787881880999, 0.00495948176831007, -0.02526894398033619, 0.019757665693759918, -0.007798726204782724, 0.025683626532554626, 0.030659830197691917, 0.006303858943283558, 0.018139062449336052, -0.007658268790692091, 0.023717224597930908, -0.01855374500155449, -0.009691555984318256, 0.008226786740124226, -0.031917259097099304, 0.007404108066111803, 0.02205849066376686, -0.014727954752743244, -0.009724997915327549, 0.023463062942028046, 0.009557787328958511, 0.003865920938551426, -0.02134951576590538, -0.05350755527615547, 0.012761551886796951, 0.01171815488487482, -0.018781151622533798, -0.006889097858220339, 0.01203251164406538, 0.0037956922315061092, -0.03082035295665264, -0.0077184648253023624, -0.008634781464934349, -0.017644116654992104, -0.0001244677696377039, -0.040986787527799606, -0.04328761249780655, -0.018165815621614456, 0.026405978947877884, -0.01412599440664053, 0.030124753713607788, -0.018888168036937714, 0.02184445969760418, 0.005310624837875366, 0.010594496503472328, -0.018874790519475937, 0.0013987210113555193, -0.054203152656555176, 0.010286827571690083, 0.012607717886567116, 0.02806471288204193, 0.021764198318123817, 0.018674137070775032, -0.020961584523320198, 0.0010701511055231094, -0.0036920213606208563, -0.0040966724045574665, -0.026232078671455383, 0.0006847294862382114, 0.003265633014962077, -0.016119150444865227, -0.009724997915327549, 0.014741331338882446, 0.013350135646760464, 0.00878861639648676, 0.04644455760717392, 0.008414063602685928, -0.021938098594546318, 0.0009171529673039913, -0.008942450396716595, -0.0015467028133571148, -0.04438451677560806, 0.002558330073952675, -0.01301571261137724, 0.05511278286576271, -0.015049000270664692, 0.0021988260559737682, 0.004457848146557808, -0.003263960825279355, 0.02316877245903015, 0.021643806248903275, -0.04411698132753372, 0.03282688558101654, -0.029027849435806274, 0.010681445710361004, -0.011684712953865528, -0.016172658652067184, -0.008681600913405418, -0.025295697152614594, -0.014661069959402084, -0.02771691419184208, -0.012025822885334492, 0.003849199740216136, 0.029509417712688446, 0.007149947341531515, -0.009330379776656628, -0.005079873837530613, 0.026165194809436798, -0.022941363975405693, -0.02712833136320114, -0.021456530317664146, -0.029616432264447212, 0.002021582331508398, -0.020051956176757812, -0.004792270716279745, -0.027061445638537407, 0.02833225019276142, -0.021322760730981827, 0.004467880818992853, -0.00270881992764771, 0.017135795205831528, -0.012494014576077461, -0.015677714720368385, -0.028974341228604317, 0.013423708267509937, 0.01668098010122776, 0.013463838957250118, 0.027502883225679398, -0.011932184919714928, -0.02819848246872425, -0.03477990999817848, 0.0020684015471488237, -0.004193654749542475, 0.013577542267739773, -0.016520457342267036, -0.025630120187997818, -0.0352347269654274, -0.012895321473479271, -0.003190387971699238, 0.0005150102078914642, 0.029482662677764893, -0.012447195127606392, 0.012835125438869, 0.03988988324999809, -0.015182768926024437, -0.0034679584205150604, 0.04879889264702797, 0.004855810664594173, -0.027195215225219727, -0.002984718419611454, 0.007236897014081478, 0.013550788164138794, 0.015022246167063713, 0.003039898118004203, 0.023503193631768227, 0.013537411577999592, 0.018660759553313255, 0.039221037179231644, 0.002720524789765477, 0.03716099634766579, 0.025322450324892998, -0.02171069011092186, -0.010480792261660099, -0.012902009300887585, 0.04235123097896576, 0.014580809511244297, -0.020760931074619293, 0.010126304812729359, 0.011423863470554352, 0.019289473071694374, -0.016961894929409027, -0.0386057011783123, 0.0234898179769516, 0.007691711187362671, -0.017590608447790146, -0.0056584239937365055, 0.04425074905157089, 0.020185725763440132, -0.024881012737751007, -0.05048437789082527, 0.02517530508339405, 0.007323846686631441, -0.005216986872255802, 0.005849044770002365, 0.004972858354449272, -0.03962234407663345, 0.04248499870300293, 0.0053206575103104115, 0.0014890149468556046, 0.0012958861188963056, -0.019503504037857056, 0.00417024502530694, -0.01069482322782278, -0.017911653965711594, 0.04920019954442978, -0.03512771055102348, -0.008701666258275509, 0.006220253184437752, 0.009845389984548092, -0.0016838159644976258, 0.004344144836068153, -0.0084742596372962, -0.010132993571460247, 0.002638591453433037, 0.0023392834700644016, 0.028439266607165337, 0.0023777419701218605, 0.020439885556697845, 0.013049155473709106, 0.009102973155677319, -0.004788926336914301, -0.004217064473778009, 0.030579568818211555, 0.02473386749625206, -0.014982115477323532, 0.0006257875938899815, -0.007992691360414028, -0.02308851107954979, -0.0027723603416234255, 0.007711776532232761, -0.0019664026331156492, -0.0037890037056058645, -0.007745218928903341, 0.043929703533649445, -0.02580401860177517, 0.02695443108677864, 0.0053574442863464355, 0.021991604939103127, -0.012286672368645668, 0.009617983363568783, -0.001435507438145578, 0.00635067792609334, 0.011905430816113949, -0.01775113120675087, 0.01645357348024845, 0.013992225751280785, -0.005451082251966, -0.061319660395383835, -0.007711776532232761, -0.006715198513120413, -0.034726403653621674, 0.0013209677999839187, 0.034672897309064865, -0.02536258101463318, 0.015637584030628204, -0.03550226241350174, 0.013276562094688416, -0.010012601502239704, -0.008875565603375435, 0.01385845709592104, 0.03646539896726608], [-0.019989054650068283, 0.017675571143627167, 0.0673167034983635, 0.0654546320438385, -0.013923215679824352, 0.016194378957152367, 0.01426177378743887, 0.05078376457095146, -0.012540768831968307, 0.018705353140830994, -0.020087800920009613, -0.04099378362298012, 0.012075250968337059, -0.015319769270718098, -0.03622575104236603, 0.04576181620359421, -0.0003270968154538423, 0.04319441318511963, -0.007568191736936569, -0.019382471218705177, 0.05845775455236435, 0.018564287573099136, 0.027310380712151527, -0.0008278811583295465, -0.042912282049655914, -0.012695941142737865, -0.02148435451090336, 0.011623839847743511, 0.011659106239676476, -0.06889664381742477, 0.077360600233078, -0.019156765192747116, 0.007176733575761318, -0.009402049705386162, 0.012561928480863571, 0.018507860600948334, -0.013394217938184738, -0.0012713574105873704, 0.0143605200573802, 0.02217557653784752, -0.017181839793920517, 0.03489973023533821, -0.061561208218336105, -0.0056955404579639435, -0.07645777612924576, 0.03667716309428215, 0.02815677598118782, -0.018507860600948334, 0.01605331152677536, 0.018409114331007004, 0.013662243261933327, 0.019946733489632607, -0.0036712430883198977, -0.03284016624093056, 0.008195935748517513, -0.01960817538201809, 0.010883242823183537, 0.02956743724644184, 0.010340139269828796, -0.027705365791916847, 0.0068205418065190315, -0.020412251353263855, -0.028114456683397293, 0.016490617766976357, 0.016688110306859016, 0.01495299767702818, -0.00967007502913475, -0.0056461673229932785, -0.027606619521975517, -0.012427915818989277, 0.038736727088689804, 0.04088092967867851, 0.019989054650068283, -0.03233233094215393, -0.003914582077413797, -0.025123856961727142, 0.019678708165884018, 0.012554875575006008, -0.03647967055439949, 0.00517359608784318, -0.043476544320583344, 0.023868368938565254, -0.01244907546788454, -0.002747260732576251, -0.0011003148974850774, -0.04474613815546036, -0.0406552255153656, -0.012442022562026978, -0.08193114399909973, 0.04181196540594101, -0.026040786877274513, 0.02437620796263218, -0.023628557100892067, 0.03554863482713699, 0.03247339650988579, -0.012752368114888668, 0.01585582084953785, -0.015432622283697128, -0.023445172235369682, 0.005857766140252352, 0.003494910430163145, -0.004006274975836277, 0.012300956062972546, 0.023543918505311012, 0.041163064539432526, -0.011821332387626171, -0.009832301177084446, 0.01904391124844551, 0.03405333682894707, -0.031401295214891434, -0.06709099560976028, 0.0005334058660082519, -0.029398158192634583, 0.035605061799287796, -0.02104705013334751, -0.000580133986659348, 0.0019326043548062444, -0.00729311304166913, 0.04209410026669502, -0.019297830760478973, -0.061956193298101425, -0.003129902295768261, 0.018084663897752762, -0.042517296969890594, 0.008992958813905716, -0.021329181268811226, -0.003332684515044093, -0.02842480130493641, -0.077360600233078, -0.039949893951416016, 0.01990441419184208, -0.015347982756793499, 0.017943596467375755, -0.02052510529756546, -0.013471804559230804, -0.008880105800926685, -0.03611290082335472, -0.005889506079256535, -0.0031863285694271326, -0.05154552310705185, 0.010862083174288273, 0.023600343614816666, 0.027775898575782776, 0.027084674686193466, -0.06776811182498932, -0.010121486149728298, 0.02075081132352352, 0.061561208218336105, 0.007356592454016209, -0.018239835277199745, -0.013344844803214073, 0.018380900844931602, -0.011024309322237968, -0.002493341686204076, 0.005110116209834814, 0.015728861093521118, 0.013641083613038063, 0.07115370035171509, 0.017153628170490265, -0.025504736229777336, -0.01476961188018322, -0.01495299767702818, -0.02242949604988098, -0.010488257743418217, 0.02845301479101181, -0.0020719070453196764, -0.05907844752073288, 0.04215052351355553, -0.06816309690475464, -0.0713794007897377, -0.04516933858394623, -0.06274615973234177, -0.06031982600688934, 0.034589387476444244, 0.003808782435953617, -0.040542371571063995, 0.005455728154629469, -0.022485923022031784, -0.006203378085047007, -0.01677274890244007, -0.009705341421067715, -0.015051743946969509, -0.07504712045192719, -0.04003453627228737, -0.06985589116811752, 0.02052510529756546, 0.01694202795624733, 0.027719471603631973, -0.001357760396786034, 0.04378689080476761, 0.002401648787781596, 0.03647967055439949, 0.028495334088802338, 0.028565866872668266, -0.039554908871650696, 0.020186547189950943, -0.005445148330181837, -0.0004954944015480578, 0.0020190072245895863, 0.00604467885568738, 0.03413797542452812, -0.053040821105241776, 0.07882768660783768, 0.01333779189735651, -0.057385653257369995, -0.03450474515557289, -0.031062737107276917, -0.01980566792190075, -0.007144993636757135, 0.0025532948784530163, 0.0047151315957307816, -0.07702204585075378, 0.028340162709355354, -0.006873441394418478, -0.012900486588478088, 0.02042635902762413, -0.05625712499022484, 0.05851418152451515, -0.01575707457959652, 0.014205347746610641, 0.018437327817082405, 0.021949872374534607, 0.0016443007625639439, -0.023642664775252342, -0.004510585684329271, 0.07019444555044174, 0.008964745327830315, -0.04691855609416962, 0.014141867868602276, -0.04105021059513092, 0.035181865096092224, 0.007130886893719435, -0.018536074087023735, -0.017887171357870102, -0.001322493888437748, -0.026858968660235405, -0.0003017490089405328, 0.03109094873070717, 0.027479659765958786, 0.006855808198451996, 0.02391069009900093, 0.023007865995168686, 0.027225740253925323, 0.0084075341001153, 0.03413797542452812, -0.011884811334311962, -0.03650788590312004, -0.007092094048857689, 0.0203558262437582, 0.00585423968732357, -0.004768031183630228, 0.008746093139052391, 0.04711604863405228, -0.0495988093316555, -0.0026255911216139793, 0.011574466712772846, -0.005113643128424883, -0.04107842221856117, 0.02259877510368824, -0.01200471818447113, 0.014642652124166489, -0.03337622061371803, -0.01812698319554329, 0.012477288953959942, -0.06991231441497803, -0.026224171742796898, 0.025871507823467255, -0.04406902194023132, -0.016264911741018295, 0.04206588491797447, -0.05628534033894539, 0.02371319755911827, 0.0178307443857193, 0.00215125665999949, -0.02743734046816826, 0.002819556975737214, -0.024489060044288635, -0.026097211986780167, 0.018112875521183014, -0.01457211934030056, -0.027409126982092857, 0.014628545381128788, 0.00026736417203210294, -0.015996886417269707, -0.010072113014757633, 0.021978085860610008, -0.017393440008163452, -0.015178702771663666, -0.030075274407863617, 0.03944205865263939, 0.03190913051366806, -0.03385584428906441, -0.03673359006643295, -0.010579951107501984, 0.02328999899327755, 0.03642324358224869, 0.001374511979520321, -0.021272754296660423, -0.0020771969575434923, -0.010015686973929405, -0.01756271906197071, 0.044322941452264786, -0.02210504375398159, -0.01228685025125742, -0.039554908871650696, 0.017322907224297523, -0.00012453483941499144, 0.006767642218619585, 0.006023518741130829, -0.018987486138939857, -0.04110663756728172, -0.011165374889969826, 0.0015658327611163259, -0.03236054256558418, -0.03252982348203659, -0.02099062316119671, 0.03845459595322609, 0.013577603735029697, -0.03568970039486885, -0.007243739906698465, 0.017943596467375755, -0.006443190388381481, 0.0714358314871788, -0.04265836253762245, 0.01664578914642334, -0.02608310617506504, 0.04962702468037605, -0.025547055527567863, -0.0692916288971901, -0.000971592147834599, -0.006757061928510666, -0.002648514462634921, 0.019721029326319695, 0.0033027080353349447, -0.01575707457959652, -0.021498460322618484, 0.0212868619710207, 0.008696720004081726, 0.022443603724241257, 0.023727303370833397, 0.03588719293475151, -0.0297367163002491, 0.006644209381192923, -0.030018847435712814, -0.02203451097011566, 0.0672602728009224, 0.03298123553395271, 0.04697498306632042, 0.011454559862613678, 0.006083471700549126, -0.032811954617500305, 0.024954577907919884, -0.05016307532787323, 0.0017395202303305268, -0.08672738820314407, -0.012032930739223957, -0.0061363717541098595, -0.01495299767702818, -0.021329181268811226, -0.02039814554154873, -0.006206904537975788, -0.008414587937295437, 0.03504079952836037, 0.007363645825535059, 0.019749242812395096, 0.02118811570107937, -0.038341742008924484, 0.019199084490537643, 0.05321010202169418, -0.01323904562741518, 0.013768043369054794, 0.04477435350418091, -0.02104705013334751, 0.0058013396337628365, -0.06658315658569336, -0.043307267129421234, 0.00957132875919342, 0.02193576470017433, -0.02556116133928299, 0.0059106661938130856, 0.05016307532787323, 0.009148131124675274, 0.011257068254053593, -0.029623862355947495, 0.06331042945384979, 0.01743575930595398, -0.08407534658908844, -0.004231980536133051, -0.026435770094394684, 0.0008878342341631651, 0.01664578914642334, 0.010516471229493618, -0.039554908871650696, 0.0041579208336770535, -0.007469445466995239, -0.0019625809509307146, 0.025744548067450523, 0.0006555161089636385, 0.03681822866201401, 0.00359013001434505, -0.0009574855794198811, -0.023036079481244087, 0.00277194706723094, -0.047511033713817596, -0.034194402396678925, -0.00374177610501647, -0.036592524498701096, -0.012801740318536758, -0.0030576058197766542, -0.0013771569356322289, 0.03585898131132126, -0.02674611657857895, 0.05862703546881676, -0.00430251331999898, -0.00671826908364892, -0.007518818601965904, -0.03687465563416481, 0.060376252979040146, 0.009500795975327492, -0.019184978678822517, 0.0426301509141922, 0.03247339650988579, -0.00718731340020895, -0.030047060921788216, -0.020440464839339256, 0.019100338220596313, 0.0035143070854246616, -0.038539234548807144, 0.013112085871398449, -0.08469603210687637, -0.021653633564710617, 0.03213483840227127, 0.03780569136142731, 0.009775875136256218, -0.03199377283453941, -0.034391894936561584, 0.056821390986442566, -0.00468691810965538, -0.007659884635359049, -0.037382494658231735, 0.006266857497394085, -0.022852694615721703, 0.0010244919685646892, -0.0059882523491978645, 0.0009063491597771645, 0.030300980433821678, -0.005014896858483553, -0.03173985332250595, -0.013373058289289474, 0.018042342737317085, -0.0003035123518202454, 0.004831511061638594, -0.039780616760253906, 0.01642008312046528, -0.0445486456155777, 0.03227590397000313, -0.007159100379794836, -0.04186839237809181, 0.06601889431476593, -0.08706594258546829, 0.001987267518416047, 0.07487784326076508, 0.0396113358438015, 0.05507217347621918, 0.019326044246554375, -0.04009095951914787, -0.05851418152451515, -0.03927277773618698, 0.0039604282937943935, 0.012258636765182018, -0.011715532280504704, -0.012357383035123348, -0.017492186278104782, 0.014699079096317291, 0.032247692346572876, -0.03783390671014786, -0.05405649542808533, -0.07882768660783768, -0.006778222043067217, -0.036197539418935776, 0.007398912217468023, 0.027028247714042664, -0.02108936943113804, 0.008950638584792614, 0.07403144240379333, 0.008753146044909954, 0.024164607748389244, -0.002761367242783308, -0.011475720442831516, 0.01661757566034794, -0.007934963330626488, -0.015559581108391285, 0.0594170056283474, -0.016758643090724945, -0.011637946590781212, 0.0007040075724944472, -0.03391227126121521, -0.0004571420431602746, 0.00470455177128315, -0.020087800920009613, 0.04841385409235954, -0.030470259487628937, 0.041727326810359955, 0.025081537663936615, 0.03845459595322609, 0.02355802431702614, -0.0022006297949701548, 0.001601099269464612, -0.009733554907143116, -0.02793106995522976, -0.06189976632595062, -0.0013595237396657467, 0.02336053177714348, -0.01634955033659935, 0.0019237877568230033, 0.0023910689633339643, -0.004404786508530378, 0.007829164154827595, -0.02114579640328884, 0.034589387476444244, -0.00374177610501647, -0.023741411045193672, -0.01766146533191204, -0.002324062632396817, -0.010495311580598354, 0.00996631383895874, -0.0396113358438015, -0.031034523621201515, -0.02440441958606243, 0.03870851546525955, 0.043532971292734146, -0.024940472096204758, -0.025011004880070686, 0.05676496401429176, -0.007102673873305321, -0.004789191298186779, 0.031175589188933372, -0.029623862355947495, 0.010058007203042507, -0.014120708219707012, 0.01585582084953785, -0.009987473487854004, -0.006834648549556732, 0.02010190673172474, -0.00023297933512367308, 0.006802908610552549, 0.017097201198339462, 0.02361445128917694, 0.0043236734345555305, 0.013429484330117702, 0.028495334088802338, 0.0168150682002306, 0.04556432366371155, -0.01716773398220539, 0.0038828421384096146, -0.03131665661931038, 0.015799393877387047, -0.030413832515478134, 0.04852670803666115, 0.004239033907651901, -0.004768031183630228, 0.03286838158965111, 0.025702226907014847, 0.017026668414473534, -0.023924795910716057, 0.024926364421844482, 0.03859566152095795, -0.009338569827377796, -0.0126324612647295, 0.011532146483659744, -0.004242560360580683, -0.009684181772172451, -0.00450705923140049, -0.03114737570285797, 0.06912234425544739, 0.01960817538201809, 0.009141077287495136, -0.04494363069534302, -0.010290766134858131, -0.006333863828331232, -0.02286680042743683, 0.010008634068071842, -0.005684960167855024, -0.01950942911207676, -0.0018726512789726257, -0.014515692368149757, 0.002526845084503293, -0.004394206218421459, 0.0515737347304821, 0.0277617909014225, 0.020567424595355988, -0.003094635671004653, 0.02003137394785881, 0.021357394754886627, 0.01871946081519127, 0.02217557653784752, 0.0021971031092107296, 0.010925563052296638, 0.02148435451090336, 0.00947258248925209, -0.00030505526228807867, -0.016321338713169098, 0.002244713017717004, -0.03413797542452812, 0.004006274975836277, 0.0014177134726196527, 0.03831353038549423, 0.0041861338540911674, 0.03199377283453941, 0.0287210401147604, 0.014811931177973747, 0.012893433682620525, 0.012173997238278389, -0.01901569776237011, -0.005536841228604317, 0.04655178636312485, -0.04026024043560028, -0.02200629748404026, -0.006111685186624527, 0.012858167290687561, -0.012442022562026978, -0.013471804559230804, 0.02855176106095314, -0.02450316585600376, 0.028072137385606766, 0.021794699132442474, -0.01953764259815216, -0.023050187155604362, 0.0034014543052762747, -0.00996631383895874, 0.0011488063028082252, 0.047708526253700256, -0.015616008080542088, 0.0030082326848059893, 0.01634955033659935, -0.01128528080880642, 0.028467122465372086, 0.02506742998957634, 0.043899744749069214, -0.03329157829284668, 0.027197526767849922, 0.03188091889023781, 0.011454559862613678, -0.020412251353263855, 0.04206588491797447, 0.04539504274725914, -0.0002816912019625306, 0.02802981622517109, -0.017393440008163452, -0.006383236963301897, -0.0038652087096124887, -0.03433546796441078, 0.009049384854733944, -0.03312230110168457, 0.02252824231982231, -0.0013436537701636553, -0.0168150682002306, 0.023473383858799934, 0.031401295214891434, 0.02345927804708481, -0.016758643090724945, 0.015023530460894108, -0.0035830766428261995, 0.0168714951723814, 0.032416969537734985, -0.002378725679591298, 0.021752379834651947, -0.027451446279883385, -0.0034525906667113304, 0.023741411045193672, -0.04505648463964462, 0.006700635887682438, 0.05301260948181152, -0.009204557165503502, 0.006541936192661524, 0.021554887294769287, -0.04612858593463898, -0.019072124734520912, -0.034758664667606354, 0.01792949065566063, -0.018465541303157806, -0.0033485544845461845, -0.01343653816729784, 0.004094440955668688, -0.012625408358871937, -0.02075081132352352, 0.04045773297548294, -0.03487151861190796, 0.027282167226076126, -0.027310380712151527, 0.0038616820238530636, 0.019946733489632607, 0.005614427383989096, 0.004207293968647718, -0.016363658010959625, 0.03035740554332733, 0.011264121159911156, -0.019974946975708008, -0.05134803056716919, -0.0851474478840828, 0.012244530022144318, 0.02805802971124649, -0.002563874702900648, -0.030865244567394257, -0.028184989467263222, -0.027705365791916847, 0.025913827121257782, 0.024051755666732788, 0.067373126745224, -0.01842322200536728, -0.019382471218705177, -0.02956743724644184, -0.0407116524875164, 0.009465529583394527, -0.0336301364004612, 0.02914423868060112, -0.013274312019348145, -0.019086232408881187, 0.007998443208634853, -0.007638724520802498, -0.024291567504405975, 0.03315051272511482, -0.020440464839339256, -0.04979630187153816, 0.035351142287254333, 0.026915395632386208, -0.00248805177398026, 0.014727291651070118, 0.013810362666845322, 0.0008256770088337362, 0.01428998727351427, -0.0030241026543080807, 0.023346425965428352, -0.005036056507378817, -0.009260984137654305, 0.025349562987685204, -0.033799417316913605, -0.02588561363518238, -0.031175589188933372, 0.015474941581487656, -0.01667400263249874, -0.06460823118686676, -0.008449854329228401, -0.02000316046178341, -0.02233074977993965, -0.021893445402383804, -0.008555653505027294, 0.01963638886809349, -0.01151098683476448, 0.025645801797509193, -0.012660674750804901, 0.013161459006369114, 0.01506585069000721, -0.042714789509773254, -0.0016654606442898512, 0.023628557100892067, -0.011835438199341297, 0.012343276292085648, -0.0037206162232905626, 0.04711604863405228, 0.0005051926709711552, 0.031457722187042236, 0.01651882939040661, 0.021794699132442474, 0.02168184705078602, -0.03343264386057854, 0.0003464933834038675, -0.0007608748273923993, 0.02015833370387554, 0.020539211109280586, 0.0287210401147604, 0.003854628885164857, 0.00784326996654272, 0.041332341730594635, 0.032642677426338196, -0.01575707457959652, -0.005131276324391365, -0.035802554339170456, -0.03317872807383537, -0.03766462579369545, 0.034391894936561584, -0.02099062316119671, 0.01304155308753252, -0.008097189478576183, 0.005677907261997461, 0.01776021160185337, 0.007420072332024574, -0.019481215626001358, 0.00927508994936943, -0.0031105056405067444, -0.04736996814608574, -0.0024457320105284452, -0.009564275853335857, -0.008315841667354107, -0.004567012190818787, -0.006101104896515608, -0.0038405221421271563, -0.07121012359857559, -0.006411450449377298, 0.029877781867980957, -0.0336301364004612, 0.0012061144225299358, 0.00019231265468988568, 0.045084696263074875, 0.05117874965071678, -0.013605817221105099, -0.015333876013755798, 0.002253529615700245, 0.01057289820164442, -0.01575707457959652, -0.009599542245268822, 0.018112875521183014, -0.017943596467375755, -0.014713184908032417, 0.024065861478447914, 0.0143605200573802, 0.011884811334311962, -0.0067923287861049175, -0.027423232793807983, 0.02410818263888359, -0.010925563052296638, -0.023656770586967468, 0.017026668414473534, 0.010565844364464283, 0.01332368515431881, 0.013500017113983631, -0.020144226029515266, 0.0076739913783967495, 0.021004728972911835, -0.03910350054502487, 0.013570550829172134, -0.009458476677536964, 0.028608188033103943, 0.012463182210922241, 0.002202393254265189, -0.018677139654755592, -0.020073693245649338, 0.0109185092151165, 0.03309408575296402, -0.00881662592291832, 0.013457697816193104, -0.015192809514701366, -0.013902056030929089, -0.011863651685416698, -0.029990633949637413, -0.0050819031894207, 0.018789993599057198, -0.010192019864916801, -0.003971008118242025, 0.015319769270718098, -0.01478371862322092, -0.029285304248332977, -0.01080565620213747, -0.012420862913131714, 0.017675571143627167, 0.010650483891367912, 0.0188182070851326, -0.006510196719318628, 0.005127749405801296, -0.007659884635359049, 0.009465529583394527, -0.006256277672946453, 0.007568191736936569, -0.049655236303806305, 0.009931047447025776, 0.020116014406085014, 0.0336301364004612, 0.024362100288271904, 0.012025877833366394, 0.00554389413446188, 0.026266491040587425, -0.016998454928398132, 0.04598752036690712, -0.005519207566976547, -0.0059670922346413136, -0.006263331044465303, -0.005942405667155981, 0.021794699132442474, 0.03055489808320999, 0.0076316711492836475, 0.04533861577510834, 0.006034098565578461, 0.004683391656726599, 0.0075540849938988686, -0.017647357657551765, 0.018507860600948334, 0.0009451422956772149, 0.0326991006731987, 0.023600343614816666, -0.021554887294769287, -0.0015649511478841305, 0.024362100288271904, 0.009324463084340096, 0.011757852509617805, 0.0014970630872994661, 0.02881978638470173, -0.01677274890244007, 0.01805645041167736, 0.00901411846280098, 0.0015305662527680397, 0.007250793278217316, 0.006436137016862631, -0.011934184469282627, 0.010410672053694725, -0.007927910424768925, -0.007913803681731224, -0.0021212801802903414, -0.011659106239676476, 0.02331821247935295, -0.02358623780310154, -0.0003749270108528435, -0.02292322739958763, -0.026337025687098503, -0.02075081132352352, 0.02010190673172474, 0.0037347227334976196, -0.02862229384481907, 0.009119917638599873, 0.025307243689894676, -0.013570550829172134, 0.04026024043560028, -0.007906749844551086, 0.010086219757795334, -0.008936531841754913, 0.001360405352897942, -0.002749023959040642, 0.012717100791633129, 0.0021618367172777653, -0.009846407920122147, -0.028495334088802338, 0.00642203027382493, 0.024714766070246696, 0.03354549780488014, 0.03701572120189667, -0.0016584072727710009, 0.02391069009900093, -0.016956135630607605, 0.009789980947971344, 0.04237623140215874, -0.034589387476444244, 0.03188091889023781, -0.0007965821423567832, 0.006940447725355625, -0.015333876013755798, -0.006101104896515608, -0.06861451268196106, -0.03890600800514221, -0.008978852070868015, 0.01447337307035923, 0.01598277874290943, 0.04319441318511963, -0.03154236078262329, -0.005554474424570799, -0.039780616760253906, -0.031796280294656754, 0.0297085028141737, 0.03509722277522087, -0.021032942458987236, 0.05010664835572243, 0.01101725548505783, 0.013775096274912357, 0.02618185244500637, 0.014141867868602276, -0.04624143987894058, 0.039159923791885376, 0.018268048763275146, -0.02013012021780014, -0.017985917627811432, -0.031429506838321686, 0.016194378957152367, 0.002110700123012066, -0.011461613699793816, 0.0465235710144043, 0.031401295214891434, 0.010424778796732426, -0.0013136772904545069, 0.003329157829284668, -0.0017703784396871924, 0.024235140532255173, 0.003819362260401249, -0.013655190356075764, 0.0287774670869112, 0.06065838411450386, -0.0035601535346359015, -0.02289501391351223, -0.005610900931060314, -0.012293903157114983, 0.027352700009942055, 0.01608152501285076, 0.00594593258574605, 0.01128528080880642, -0.0008115703822113574, 0.02694360911846161, 0.006704162340611219, 0.010735123418271542, 0.003091108985245228, 0.04316620156168938, 0.014741398394107819, -0.003533703740686178, 0.019565856084227562, 0.004235506989061832, 0.016123846173286438, 0.009155184030532837, -0.024333886802196503, 0.01691381447017193, 0.013739829882979393, -0.004489426035434008, 0.009923993609845638, -0.007793897297233343, -0.04584645479917526, -0.0007278124685399234, -0.02348749153316021, 0.020242972299456596, -0.006757061928510666, -0.04031666740775108, -0.024136394262313843, -0.005921246018260717, -0.018239835277199745, 0.006083471700549126, 0.04514112323522568, 0.014431052841246128, 0.010410672053694725, 0.021427927538752556, -0.028791572898626328, 0.01644829660654068, -0.032021984457969666, 0.004997263662517071, -0.025800973176956177, 0.030865244567394257, 0.015503155067563057, 0.015912245959043503, 0.009430263191461563, -0.001113539794459939, 0.016758643090724945, -0.013457697816193104, 0.02753608673810959, -0.008393427357077599, -0.000581456464715302, -0.008428694680333138, 0.033601924777030945, -0.036169327795505524, -0.004831511061638594, -0.04903454706072807, 0.01805645041167736, -0.0014891281025484204, 4.237490793457255e-05, 0.030639538541436195, 0.00087284593610093, 0.04339190572500229, 0.031401295214891434, -0.013626976870000362, 0.01618027128279209, -0.01990441419184208, -0.018141089007258415, -0.0021424400620162487, -0.021159902215003967, -0.021371500566601753, 0.007025087717920542, -0.017887171357870102, -0.015573687851428986, 0.018959272652864456, -0.03611290082335472, -0.0037347227334976196, 0.007208473514765501, 0.011433400213718414, -0.0050819031894207, -0.023332318291068077, 0.002482761861756444, 0.030272766947746277, -0.009945154190063477, -0.0021159902680665255, -0.005099536385387182, -0.007949070073664188, 0.002609721152111888, 0.027409126982092857, -0.007077987305819988, -0.04519755020737648, -0.027211634442210197, -0.0037347227334976196, -0.009084651246666908, -0.01253371499478817, 0.015362088568508625, 0.01465675886720419, -0.017252372577786446, -0.0038334690034389496, -0.009430263191461563, -0.018479647114872932, 0.009141077287495136, 0.016589364036917686, 0.000729575811419636, -0.01485425140708685, 0.02914423868060112, 0.010890296660363674, 0.01111600175499916, 0.007007454056292772, 0.015996886417269707, 0.0005056334775872529, -0.00955722201615572, 0.03986525535583496, 0.002010190626606345, 0.01228685025125742, 0.014219454489648342, 0.006735902279615402, -0.00965596828609705, -0.0019766874611377716, -0.010382458567619324, 0.025998465716838837, 0.003639503149315715, 0.02852354757487774, -0.010791550390422344, -0.011948291212320328, -0.011574466712772846, 0.020764917135238647, 0.040147386491298676, 0.014741398394107819, 0.007568191736936569, -0.01943889632821083, 0.011955345049500465, 0.007920856587588787, 0.026195958256721497, 0.0075752451084554195, -0.017605038359761238, -0.018112875521183014, 0.009056437760591507, 0.014628545381128788, -0.002491578459739685, -0.020017268136143684, 0.028467122465372086, 0.01353528443723917, 0.009324463084340096, 0.006146951578557491, -0.030498472973704338, 0.047708526253700256, 0.005917719099670649, 0.009719448164105415, -0.0277617909014225, -0.05470540001988411, -0.018042342737317085, 0.0016425374196842313, -0.020581532269716263, -0.008689666166901588, 0.023247679695487022, -0.004461212549358606, 0.01118653453886509, -0.004298986867070198, 0.024432633072137833, -0.03089345619082451, 0.08949227631092072, -0.0031193222384899855, -0.022147364914417267, 0.019890308380126953, 0.06212547421455383, -0.030272766947746277, -0.002331115771085024, -0.004475319292396307, 0.0038299423176795244, 0.011123055592179298, -0.051601946353912354, 0.03148593381047249, 0.03134486824274063, 0.00035046087577939034, 0.011468666605651379, -0.021258648484945297, 0.002424572128802538, 0.02996242046356201, 0.011750798672437668, 0.006055258680135012, 0.004066227935254574, -0.02420692704617977, 0.007120307069271803, -0.0005990897188894451, -0.026957714930176735, -0.013492964208126068, 0.02670379728078842, -0.008696720004081726, 0.0013163222465664148, 0.008160669356584549, -0.0048632510006427765, 0.011969450861215591, 0.002433388726785779, 0.0013136772904545069, -0.013408324681222439, 0.0178589578717947, -0.004101494327187538, -0.022457709535956383, 0.03628217801451683, 0.005628534127026796, -0.008153615519404411, -0.006972187664359808, 0.00205251039005816, -0.014543905854225159, 0.02733859419822693, 0.02654862403869629, -0.032445184886455536, -0.006139898207038641, 0.022655202075839043, -0.0020683803595602512, -0.01924140378832817, 0.0010747467167675495, -0.060150548815727234, -0.035210076719522476, -0.03707214817404747, 0.01694202795624733, 0.004425946157425642, 0.011913024820387363, -0.028311949223279953, -0.01795770414173603, 0.02233074977993965, 0.039978109300136566, -0.045479681342840195, 0.01486835815012455, -0.004634018521755934, -0.04556432366371155, 0.011362867429852486, 0.004782137926667929, -0.004277826752513647, 0.004277826752513647, -0.042686574161052704, -0.01467086561024189, 0.03193734586238861, -0.012583088129758835, 0.013626976870000362, 0.026661476120352745, -0.012484341859817505, 0.006161058321595192, 0.01080565620213747, -0.029003173112869263, 0.014515692368149757, 0.0237837303429842, 0.009797034785151482, 0.05769599974155426, -0.03151414915919304, -0.007257846184074879, 0.039188139140605927, -0.0007520581712014973, -0.01199061144143343, 0.04674927517771721, -0.010431831702589989, -0.018564287573099136, 0.014346413314342499, 0.021258648484945297, 0.019001591950654984, 0.006041151937097311, -0.02099062316119671, -0.01465675886720419, -0.016405977308750153, -0.033686563372612, 0.010086219757795334, -0.01397964172065258, -0.018042342737317085, 0.01427588053047657, -0.027578406035900116, -0.0016090342542156577, -0.01924140378832817, -0.018366795033216476, -0.001473258133046329, -0.01506585069000721, -0.002659094287082553, 0.007977282628417015, 0.024362100288271904, -0.007328379433602095, -0.017774317413568497, -0.023826049640774727, 0.021470246836543083, -0.04302513599395752, -0.010974936187267303, -0.01074217725545168, -0.018282154574990273, 0.021103475242853165, 0.0076528312638401985, 0.01100314874202013, 0.016307231038808823, 0.025434201583266258, -0.027014141902327538, -0.0034878572914749384, 0.025518842041492462, 0.01325315237045288, -0.006975714582949877, 0.00661246944218874, 0.019819775596261024, 0.003653609659522772, -0.0017783134244382381, 0.0003799965779762715, 0.007413018960505724, -0.008231202140450478, -0.005078376270830631, 0.006661842577159405, -0.016490617766976357, 0.028664613142609596, -0.02055331878364086, -0.009592489339411259, -0.03312230110168457, 0.020736703649163246, -0.004662231542170048, -0.009931047447025776, 0.016758643090724945, 0.028170883655548096, -0.012674781493842602, 0.005529787857085466, 0.0017756684683263302, 0.018465541303157806, 0.018987486138939857, -0.011976504698395729, 0.03789032995700836, 0.004224927164614201, 0.0025674013886600733, -0.015799393877387047, -0.013119139708578587, 0.015192809514701366, -0.039554908871650696, -0.019777454435825348, 0.02420692704617977, -0.027945177629590034, -0.0009768821764737368, 0.016335444524884224, 0.01642008312046528, -0.025081537663936615, -0.029652075842022896, -0.022415390238165855, -0.003907528705894947, 0.0036500832065939903, -0.029003173112869263, -0.0029447530396282673, 0.004898517392575741, 0.00976882129907608, -0.024884045124053955, -0.025152070447802544, -0.018691247329115868, 0.004182607401162386, 0.0143605200573802, -0.013168512843549252, -0.02684486284852028, -0.014924784190952778, -0.026633262634277344, -0.014247667044401169, 0.010241392999887466, 0.00986756756901741, 0.018592501059174538, -0.006760588847100735, 0.002830136800184846, 0.0035107803996652365, -0.0015764127019792795, -0.020468678325414658, 0.007744524162262678, -0.025053324177861214, 0.03094988316297531, 0.012138730846345425, 0.012406756170094013, -0.0006043796893209219, -0.02897495962679386, -0.019058018922805786, 0.014797824434936047, -0.02704235538840294, 0.01894516497850418, 0.0006987176020629704, 0.023699089884757996, -0.00830878783017397, 0.022457709535956383, -0.0026167745236307383, 0.019495323300361633, 0.03278374299407005, -0.004369519650936127, -0.0036289230920374393, 0.0017933016642928123, 0.014198293909430504, -0.0008587393676862121, -0.0535486601293087, 0.007229633163660765, -0.02400943636894226, 0.03786211833357811, -0.031062737107276917, 0.002967676380649209, 0.011567412875592709, 0.007808004040271044, 0.020271185785531998, 0.013887949287891388, -0.037974972277879715, 0.05648283287882805, -0.008612080477178097, 0.006489036604762077, -0.009190450422465801, -0.020680278539657593, 0.0009698288631625473, -0.01960817538201809, -0.016010992228984833, -0.011814278550446033, -0.02069438435137272, -0.03210662305355072, 0.02005958743393421, 0.0019590542651712894, -0.020609743893146515, 0.00975471455603838, 0.025744548067450523, -0.012526662088930607, 0.005071323364973068, -0.01465675886720419, -0.02650630474090576, -0.015545474365353584, 0.015460834838449955, 0.0034931472036987543, 0.006739428732544184, 0.02341695874929428, -0.011567412875592709, 0.03563327342271805, -0.009105810895562172, 0.01168026588857174, -0.03272731602191925, -0.024884045124053955, -0.01228685025125742, 0.021752379834651947, -0.008887158706784248, 0.0228244811296463, 0.03780569136142731, 0.01080565620213747, -0.02707056887447834, -0.04722890257835388, 0.026139533147215843, 0.0042108204215765, -0.003914582077413797, -0.007568191736936569, -0.030047060921788216, -0.0218088049441576, 0.018395008519291878, 0.009789980947971344, -0.004708078224211931, 0.027310380712151527, -0.02052510529756546, -0.001653117360547185, 0.04872420057654381, 0.01733701303601265, 0.012195156887173653, 0.038934219628572464, 0.006644209381192923, -0.03227590397000313, -0.009684181772172451, 0.007504711858928204, 0.017224160954356194, 0.02321946620941162, 0.020186547189950943, 0.00976882129907608, 0.029793141409754753, -0.0010862082708626986, 0.02437620796263218, 0.016335444524884224, 0.042122311890125275, 0.011165374889969826, -0.036959294229745865, -0.006002359092235565, -0.027479659765958786, 0.03884958103299141, 0.020468678325414658, 0.01388089545071125, 0.03506901115179062, 0.024362100288271904, 0.020116014406085014, 0.002734917448833585, -0.0272398479282856, -0.01225158292800188, 0.002770183840766549, -0.007864430546760559, -0.009606595151126385, 0.024362100288271904, 0.014106601476669312, -0.010058007203042507, -0.02704235538840294, 0.014938890933990479, -0.0056461673229932785, -0.006009411998093128, 0.0017474552150815725, -0.0040873875841498375, -0.027677152305841446, 0.02089187689125538, -0.007638724520802498, -0.004503532312810421, -0.02391069009900093, -0.005790759809315205, -0.007758630905300379, 0.009098757989704609, -0.026732008904218674, 0.04375867918133736, -0.0435611866414547, 0.011264121159911156, 0.02010190673172474, 0.005893032532185316, 0.012258636765182018, 0.01637776382267475, -0.013112085871398449, -0.016984347254037857, 0.012660674750804901, 0.0076528312638401985, 0.0406552255153656, -0.023501597344875336, 0.0376928374171257, 0.002671437570825219, 0.024249248206615448, 0.006210431456565857, -0.005096009932458401, 0.007511765230447054, 0.030047060921788216, -0.02345927804708481, -0.010072113014757633, -0.004835037514567375, -0.0030611325055360794, 0.019184978678822517, 0.01378214918076992, -0.02111758291721344, -0.004937310703098774, 0.0061152116395533085, 0.009747661650180817, -0.011130108498036861, 0.03094988316297531, 0.01074217725545168, 0.01756271906197071, -0.022655202075839043, 0.010241392999887466, -0.014029014855623245, 0.01253371499478817, 0.013210832141339779, -0.01448747981339693, 0.023304104804992676, 0.01080565620213747, -0.00014139663835521787, -0.046664636582136154, -0.0023963588755577803, 0.004852670710533857, -0.013048605993390083, -0.045902881771326065, 0.05693424493074417, 0.0006590427947230637, 0.008703772909939289, -0.027056461200118065, 0.019692815840244293, 0.0026749642565846443, -0.0031598787754774094, 0.00883073266595602, 0.02437620796263218], [-0.004809936974197626, 0.0027865502052009106, 0.06506971269845963, 0.06265972554683685, -0.025398610159754753, 0.030231978744268417, -0.02031085453927517, 0.053582098335027695, -0.009793928824365139, 0.0560724213719368, -0.010690980590879917, -0.004806589800864458, 0.01565154269337654, 0.01417877059429884, -0.015999652445316315, 0.011420671828091145, -0.0015137746231630445, 0.05336787551641464, -0.013121053576469421, 0.0003334655484650284, 0.08226097375154495, -0.004224176052957773, 0.007645022124052048, -0.013375441543757915, -0.05687575042247772, -0.04771779105067253, -0.03025875613093376, 0.005569753237068653, 0.01978868991136551, -0.0756736695766449, 0.07213901728391647, -0.029053760692477226, 0.014192160218954086, -0.01602642983198166, -0.03376663103699684, -0.01217044610530138, -0.01778036542236805, -0.03746194764971733, 0.004923742264509201, 0.021328406408429146, 0.022479845210909843, -0.008997294120490551, -0.06094595417380333, -0.0013757023261860013, -0.04064848646521568, 0.019694969058036804, 0.0017974504735320807, -0.05004744604229927, 0.020404577255249023, -0.0009188084513880312, 0.015290044248104095, 0.04576301947236061, -0.007584772072732449, -0.05382309854030609, 0.008562156930565834, 0.0036049424670636654, -0.003681928152218461, 0.047610677778720856, 0.0002497853711247444, -0.01109934039413929, 0.01953430287539959, -0.024514947086572647, 0.01590592972934246, 0.02590738609433174, 0.022426290437579155, 0.009057543240487576, -0.0021740111988037825, -0.009003988467156887, -0.02738015726208687, -0.03178508207201958, 0.06030328944325447, 0.0506097786128521, 0.016066595911979675, 0.00030961670563556254, 0.015664931386709213, -0.001120477681979537, -0.031195973977446556, 0.027339991182088852, -0.044370584189891815, -0.03130308538675308, -0.010429898276925087, 0.02155601605772972, 0.02207818068563938, -0.04075559973716736, 0.018918417394161224, -0.04640568420290947, -0.05687575042247772, 0.004267689771950245, -0.06051751226186752, 0.0024384406860917807, -0.019038915634155273, 0.013208081014454365, -0.05500131472945213, 0.025599442422389984, 0.03108886256814003, -0.05058300122618675, 0.023390285670757294, -0.03928282856941223, -0.01070436928421259, 0.020873185247182846, -0.02790232188999653, -0.03245452418923378, -0.025652999058365822, -0.005358878988772631, 0.006232500541955233, -0.016642315313220024, 0.0262153297662735, 0.052350323647260666, 0.010142038576304913, -0.04386180639266968, -0.049297671765089035, -0.037033502012491226, -0.012217307463288307, 0.050984665751457214, -0.03510551154613495, -0.020083244889974594, -0.045870132744312286, -0.03357918560504913, 0.04337980970740318, 0.0043748002499341965, -0.025545887649059296, -0.0021405392326414585, 0.00602162629365921, -0.017151091247797012, 0.027273045852780342, -0.05671508237719536, -0.012210613116621971, -0.027875544503331184, -0.05810752138495445, -0.04252292588353157, 0.0494583398103714, -0.021194517612457275, 0.04252292588353157, -0.03628372773528099, -0.008843322284519672, -0.04016648977994919, -0.04003260284662247, -0.02486305683851242, -0.007156329695135355, -0.03207963705062866, 0.024327503517270088, 0.015477487817406654, 0.00048408989096060395, 0.029294760897755623, -0.06496260315179825, 0.006035014986991882, -0.0009330341126769781, 0.019253138452768326, -0.0029689730145037174, -0.029134094715118408, -0.0026375995948910713, 0.015664931386709213, -0.04418313875794411, -0.018409641459584236, 0.0073839398100972176, 0.018155254423618317, 0.023711618036031723, 0.06710481643676758, -9.926562051987275e-05, -0.00886340532451868, -0.02602788619697094, -0.02361789532005787, -0.038533054292201996, 0.001906234654597938, 0.005469337105751038, 0.005810752045363188, -0.048012346029281616, 0.03665861487388611, -0.04220159351825714, -0.05976773798465729, -0.05026166886091232, -0.041371483355760574, -0.06185639649629593, 0.029294760897755623, -0.044825803488492966, -0.059553515166044235, 0.02174345962703228, -0.005104491487145424, 0.009800623171031475, 0.010155427269637585, 0.0007267624023370445, 0.0012175467563793063, -0.07347790151834488, -0.031329862773418427, -0.014419769868254662, 0.034757401794195175, -0.018905028700828552, 0.024314114823937416, -0.03569462150335312, 0.023082343861460686, 0.024635447189211845, 0.030472977086901665, 0.038586609065532684, 0.008321157656610012, 0.012163751758635044, 0.016709260642528534, -0.008106936700642109, 0.01642809435725212, 0.018905028700828552, -0.012485084123909473, 0.031142419204115868, -0.04412958398461342, 0.061106618493795395, -0.015437320806086063, -0.030231978744268417, -0.028384320437908173, -0.03406118229031563, -0.009854178875684738, 0.009579707868397236, -0.02875920757651329, 0.006035014986991882, -0.041371483355760574, 0.023068953305482864, 0.003959746565669775, 0.0010292662773281336, 0.013395524583756924, -0.06212417036294937, 0.06094595417380333, -0.005124574527144432, 0.00605175131931901, -0.009157959371805191, 0.03869371861219406, 0.017994588240981102, -0.030553309246897697, -0.01314113661646843, 0.012826499529182911, 0.013763717375695705, -0.07845854759216309, 0.0009330341126769781, -0.05575108900666237, 0.029482204467058182, -0.005840877071022987, 0.017298368737101555, -0.06148150935769081, -0.01148761622607708, -0.05245743691921234, 0.04271036759018898, 0.009485986083745956, 0.025545887649059296, 0.026442939415574074, 0.03513228893280029, -0.018583696335554123, 0.014727712608873844, 0.020029690116643906, 0.016896704211831093, 0.0011522761778905988, 0.002393253380432725, -0.03272230178117752, 0.016401316970586777, 0.028544984757900238, 0.02025729976594448, 0.0312227513641119, 0.04257648065686226, -0.012913526967167854, -0.02285473234951496, 0.008301074616611004, -0.05446575954556465, -0.048199787735939026, -0.0062258061952888966, 0.02440783753991127, -0.00818057544529438, -0.025331666693091393, -0.02563961036503315, 0.008173881098628044, -0.050931110978126526, -0.033204298466444016, -0.0037890388630330563, -0.0067345816642045975, -0.037676166743040085, 0.04051459953188896, -0.03513228893280029, 0.03483773395419121, 0.033659517765045166, -0.08306430280208588, -0.08916960656642914, 0.020685741677880287, -0.0013623134000226855, -0.010630731470882893, -0.00580740487203002, -0.04710190370678902, -0.019052304327487946, 0.002025060588493943, -0.00506432494148612, -0.021636350080370903, 0.013623134233057499, 0.011567949317395687, 0.0009790582116693258, -0.015678320080041885, -0.002691154833883047, 0.0029488897416740656, 0.05612597614526749, 0.01096545159816742, 0.03207963705062866, -0.007912798784673214, 0.06121373176574707, 0.036846060305833817, 0.040273599326610565, 0.0029589314945042133, -0.004927089437842369, 0.0076918830163776875, 0.04996711388230324, 0.006356346886605024, -0.0264295507222414, -0.04983322694897652, -0.04552202299237251, -0.006547138094902039, -0.0034308875910937786, 0.004866839852184057, -0.01889164000749588, -0.0036919699050486088, -0.022252235561609268, 0.016843147575855255, -0.025786885991692543, -0.056768640875816345, -0.04142504185438156, 0.023256396874785423, 0.026978492736816406, 0.02361789532005787, 0.004435049835592508, 0.0161737073212862, 0.006861775182187557, -0.0064165969379246235, 0.030928198248147964, -0.01895858347415924, -0.007290218025445938, -0.033793408423662186, -0.008528684265911579, 0.012913526967167854, -0.03333818539977074, -0.0058576129376888275, -0.002045143861323595, 0.0043781474232673645, 0.023591117933392525, 0.025679776445031166, -0.022627122700214386, -0.026857992634177208, -0.03861338645219803, 0.016923481598496437, 0.03668539598584175, 0.015075822360813618, 0.013763717375695705, -0.01595948450267315, -0.019828857854008675, 0.009646652266383171, -0.029749980196356773, 0.0638379380106926, 0.0029304802883416414, 0.018597085028886795, -0.026375995948910713, 0.050395555794239044, -0.005486072972416878, 0.03984515741467476, -0.05853596329689026, -0.0095730135217309, -0.06897925585508347, -0.007758826948702335, 0.01236458495259285, 0.0246086698025465, -0.02545216679573059, -0.004274384118616581, -0.014741102233529091, 0.014687546528875828, 0.03044619970023632, 0.003032570006325841, 0.04951189458370209, -0.018396252766251564, -0.0205116868019104, 0.008033297955989838, 0.012732777744531631, -0.025974329560995102, -0.011494310572743416, 0.03764938935637474, 0.017941031605005264, 0.00801321491599083, -0.02089996449649334, -0.019708357751369476, 0.027219491079449654, 0.011340338736772537, -0.019748523831367493, 0.03542684391140938, 0.026576828211545944, 0.016454871743917465, 0.000640571815893054, -0.015383766032755375, 0.01907908357679844, 0.018262363970279694, -0.06812236458063126, -0.04734290391206741, -0.051386330276727676, 0.03301685303449631, 0.023872284218668938, -0.018195420503616333, -0.03304363414645195, 0.029482204467058182, -0.05251099169254303, -0.008120325393974781, -0.014874990098178387, 0.016910092905163765, 0.048574674874544144, 0.0344092920422554, 0.013897605240345001, -0.04220159351825714, -0.04158570617437363, 0.015584598295390606, -0.03609628602862358, -0.0010309398639947176, -0.044102806597948074, 0.02194429188966751, -0.029508981853723526, -0.011835725978016853, 0.014098438434302807, -0.0029589314945042133, 0.05226999148726463, 0.019253138452768326, 0.024568503722548485, 0.009044154547154903, -0.05869663134217262, 0.0398719348013401, 0.00704252440482378, -0.009104404598474503, 0.03979160264134407, 0.026630382984876633, 0.009057543240487576, -0.020993685349822044, -0.033070411533117294, 0.015102600678801537, 0.03660506010055542, -0.022292401641607285, -0.005235032644122839, -0.056233085691928864, -0.025612831115722656, 0.03175830468535423, 0.004538813605904579, 0.02147568389773369, -0.03331140801310539, -0.021649738773703575, 0.05095788836479187, 0.011534476652741432, -0.019253138452768326, -0.016736038029193878, 0.007430800702422857, -0.029187649488449097, 0.017097536474466324, 0.0011706858640536666, -0.0227877888828516, 0.03992548957467079, -0.00010480943456059322, -0.021341795101761818, -0.01752597838640213, 0.0053387959487736225, 0.027273045852780342, -0.003333818633109331, -0.023778561502695084, 0.006322875153273344, -0.024782724678516388, 0.009037460200488567, 0.023028787225484848, -0.004247606266289949, 0.046111129224300385, -0.04849434271454811, -0.025171000510454178, 0.05336787551641464, 0.021770237013697624, 0.06346305459737778, 0.02226562425494194, -0.037488725036382675, -0.032615188509225845, -0.016347762197256088, -0.020163578912615776, -0.0012225675163790584, -0.0019781996961683035, -0.012900137342512608, -0.058589521795511246, -0.021448906511068344, -0.00953954178839922, -0.030151644721627235, -0.020083244889974594, -0.042683590203523636, -0.011413977481424809, -0.025545887649059296, 0.009532847441732883, 0.05213610455393791, -0.06185639649629593, -0.03312396630644798, 0.070639468729496, -0.02206479199230671, 0.04653957486152649, 0.011400588788092136, 0.0041739679872989655, -0.015249877236783504, -0.010322787798941135, 0.004806589800864458, 0.014259103685617447, -0.015397154726088047, 0.03427540510892868, -0.003815816482529044, -0.06485549360513687, -0.004605757538229227, 0.023122509941458702, 0.0027580989990383387, 0.02790232188999653, -0.028973428532481194, 0.012418139725923538, 0.039684493094682693, 0.016642315313220024, -0.0012552028056234121, 0.0026543354615569115, -0.0018593737622722983, -0.028544984757900238, 0.003973135259002447, -0.06030328944325447, 0.014486714266240597, -0.004873534198850393, 0.01440638117492199, -0.007765521295368671, 0.018262363970279694, 0.016709260642528534, -0.02284134365618229, -0.04372791945934296, 0.030392644926905632, 0.0102558434009552, -0.02720610238611698, -0.015477487817406654, 0.02849142998456955, 0.011956225149333477, 0.006366388872265816, -0.02921442687511444, -0.02945542521774769, -0.022345956414937973, 0.010476759634912014, 0.01460721343755722, -0.020752687007188797, -0.0209669079631567, 0.034891292452812195, -0.007149635348469019, 0.016628926619887352, -0.0038425943348556757, -0.005368920974433422, -0.00934540294110775, -0.017619701102375984, 0.023470619693398476, 0.0019982829689979553, 0.01492854580283165, 0.04024682193994522, -0.004458480514585972, -0.002682786900550127, 0.006383124738931656, 0.0157184861600399, 0.0031262917909771204, 0.012337806634604931, 0.009485986083745956, -7.771797390887514e-05, 0.01417877059429884, -0.01661553792655468, 0.0008937044185586274, -0.008260908536612988, -0.007544605527073145, -0.059285737574100494, 0.04257648065686226, -0.018476584926247597, -0.022694066166877747, 0.031704749912023544, 0.03818494454026222, -0.0017238118452951312, -0.019186193123459816, 0.02798265404999256, 0.04292459040880203, 0.008682656101882458, -0.015932707116007805, 0.011641588062047958, 0.010731147602200508, -0.01986902393400669, -0.002717932453379035, -0.00032656194525770843, 0.04129115119576454, 0.035989176481962204, -0.000637643039226532, -0.05119888484477997, 0.026590216904878616, 0.02530488930642605, -0.02636260725557804, 0.022185292094945908, -0.022734234109520912, -0.014419769868254662, -0.012531944550573826, -0.009787234477698803, -0.00042321253567934036, -0.011474227532744408, 0.002548898570239544, 0.020083244889974594, 0.007906104438006878, -0.0040601626969873905, 0.0038760663010179996, 0.00017091678455471992, 0.01074453629553318, 0.024715779349207878, 0.010121955536305904, -0.008207352831959724, -0.003956399392336607, 0.0018409640761092305, -0.015330210328102112, 0.015584598295390606, -0.017941031605005264, 0.0010367975337430835, -0.031892191618680954, 0.033257853239774704, 0.021984459832310677, -0.002701196353882551, 0.03668539598584175, 0.01978868991136551, -0.020953519269824028, 0.009921123273670673, -0.0102558434009552, -0.02310912124812603, -0.006908636074513197, 0.02304217591881752, -0.042415812611579895, -0.0033154089469462633, -0.0009798950050026178, 0.0003813724615611136, -0.019387025386095047, -0.0128800543025136, -0.0051413108594715595, -0.016240650787949562, -0.0009890998480841517, 0.007778910454362631, -0.014044882729649544, -0.026041274890303612, -0.0029237857088446617, -0.01895858347415924, -0.02739354595541954, -0.00473964586853981, -0.02584044262766838, -0.03049975447356701, 0.007524522487074137, 0.003638414666056633, 0.015691708773374557, 0.00538900401443243, -0.0047028264962136745, 0.017365312203764915, 0.019949356094002724, 0.04691446200013161, 0.008354630321264267, -0.0389614962041378, 0.024501558393239975, 0.03497162461280823, -0.020605409517884254, 0.04354047402739525, 0.0056534335017204285, 0.008582239970564842, -0.010751230642199516, -0.004886922892183065, -0.001127172145061195, -0.01875775121152401, 0.02434089221060276, 0.008950432762503624, -0.011588032357394695, 0.007839160040020943, 0.007812382187694311, 0.026924937963485718, -0.0194807481020689, 0.03518584370613098, -0.0041739679872989655, 0.04686090350151062, 0.034891292452812195, -0.01875775121152401, 0.03582850843667984, -0.005506156478077173, -0.00765841081738472, 0.02420700527727604, -0.026309050619602203, 0.006148820277303457, 0.058803740888834, -0.026978492736816406, 0.0128800543025136, -0.008542073890566826, -0.018195420503616333, 0.0004156813374720514, -0.008655878715217113, 0.010557092726230621, -0.012900137342512608, 0.01022237166762352, -0.012612277641892433, 0.02857176400721073, 0.010309399105608463, -0.017124313861131668, 0.008709433488547802, -0.04220159351825714, 0.006185639649629593, 0.007792299147695303, 0.0021187823731452227, 0.023403674364089966, 0.014915157109498978, 0.028250431641936302, 0.009131181985139847, 0.04795878753066063, 0.016521817073225975, 0.017927642911672592, -0.044879358261823654, -0.10866374522447586, 0.034114737063646317, -0.005911168642342091, -0.007410717196762562, -0.04495969042181969, -0.042281925678253174, -0.01609337329864502, -0.020980296656489372, 0.024635447189211845, 0.054037317633628845, -0.04734290391206741, -0.022546790540218353, -0.009198126383125782, -0.05181477218866348, 0.0033873741049319506, 0.006523707415908575, 0.007169718388468027, 0.014821434393525124, -0.028116542845964432, -0.03408795967698097, 0.01508921105414629, -0.02064557559788227, 0.03226707875728607, -0.045655909925699234, -0.02525133267045021, 0.018356086686253548, 0.005820794031023979, 0.00895712710916996, 0.008749600499868393, 0.017566144466400146, -0.01661553792655468, 0.013248247094452381, -0.023336730897426605, 0.02972320280969143, -0.012056641280651093, -0.017994588240981102, 0.027299825102090836, -0.021716682240366936, -0.024180227890610695, -0.05288587883114815, -0.006058445665985346, -0.030231978744268417, -0.03834560886025429, -0.021663127467036247, -0.023323342204093933, -0.01695025898516178, -0.018463196232914925, -0.012344500981271267, 0.05320721119642258, 0.008595628663897514, 0.006798178423196077, -0.012933610007166862, 0.011735309846699238, -0.013502635061740875, -0.02162296138703823, 0.0005723724607378244, 0.013027331791818142, 0.00927845947444439, 0.018141863867640495, -0.013683384284377098, 0.04214803874492645, 0.005964723881334066, -0.0025706554297357798, 0.017017202451825142, 0.01757953315973282, 0.036444395780563354, -0.012036558240652084, 0.035667844116687775, -0.00944582000374794, 0.045602355152368546, 0.011514393612742424, -0.004518730100244284, 0.0043814945966005325, -0.003956399392336607, 0.03130308538675308, 0.025612831115722656, -0.031972527503967285, 0.002711238106712699, 0.008655878715217113, 0.0035714705009013414, 0.00022489050752483308, 0.03108886256814003, -0.00918473768979311, -0.013482552021741867, -0.035801731050014496, 0.028919873759150505, 0.038907941430807114, -0.010603953152894974, -0.02862531878054142, -0.010409815236926079, -0.02537183277308941, -0.046057574450969696, 0.003778997343033552, -0.022734234109520912, -0.015544431284070015, -0.0026727451477199793, 0.0006531238905154169, 0.004973950330168009, -0.06083884462714195, -0.03162441775202751, 0.021140962839126587, -0.033525630831718445, -0.02375178411602974, 0.003862677374854684, 0.03331140801310539, 0.08627761900424957, -0.010175511240959167, -0.01803475432097912, -0.0026543354615569115, -0.003342186799272895, -0.009291848167777061, -0.02019035629928112, 0.018730973824858665, -0.008173881098628044, -0.006968886125832796, -0.0005422476097010076, 0.016454871743917465, 0.02667054906487465, -0.017766976729035378, -0.004050121176987886, 0.00925168115645647, 0.0032652008812874556, -0.03130308538675308, -0.0062258061952888966, -0.009914428927004337, 0.019186193123459816, -0.00918473768979311, 0.005814099218696356, -0.000396016490412876, -0.0030861252453178167, 0.0016267428873106837, 0.017820533365011215, -0.01196961384266615, 0.01292022131383419, 0.01595948450267315, 0.015798820182681084, -0.03778328001499176, -0.024555115029215813, -0.013937772251665592, 0.004317897837609053, -0.008408185094594955, 0.024006173014640808, 0.010463370941579342, -0.0428442545235157, -0.033846963196992874, -0.023484008386731148, -0.007316995412111282, 0.015209711156785488, 0.028277209028601646, 0.002823369577527046, 0.001112109748646617, -0.018998749554157257, -0.03837238624691963, 0.0053421431221067905, -0.037943944334983826, 0.02966964803636074, 0.0053421431221067905, 0.00853537954390049, -0.015102600678801537, 0.020016301423311234, 0.008542073890566826, -0.014888378791511059, -0.011534476652741432, 0.019320081919431686, -0.00739732850342989, 0.024354280903935432, 6.678725185338408e-05, 0.014272492378950119, -0.0020869839936494827, 0.048253342509269714, -0.0005384819814935327, 0.006597346160560846, -0.009787234477698803, 0.03673895075917244, 0.005148005206137896, -0.013636522926390171, -0.009157959371805191, -0.02401956170797348, 0.016521817073225975, 0.029830314218997955, 0.006219111382961273, 0.02675088308751583, 0.023189453408122063, 0.008501906879246235, 0.00563335046172142, -0.03542684391140938, 0.021756848320364952, -0.007283523678779602, 0.030660420656204224, 0.023095732554793358, -0.005874349270015955, -0.009271765127778053, 0.02596094086766243, 0.027018658816814423, 0.019453970715403557, 0.011333644390106201, 0.014781268313527107, -0.025934163480997086, 0.04758390039205551, -0.009398958645761013, 0.0003361851559020579, -0.03743517026305199, -0.013034026138484478, 0.00696219177916646, -0.010168815962970257, 0.012511861510574818, -0.005757196806371212, -0.0018175336299464107, -0.005476031452417374, 0.02881276234984398, -0.012846582569181919, 0.008287685923278332, -0.026630382984876633, -0.024635447189211845, -0.014245714992284775, -0.0021639696788042784, -0.00024016214592847973, -0.027500657364726067, 0.005706988740712404, 0.019253138452768326, -0.01824897527694702, 0.0629274994134903, 0.014299270696938038, 0.018851472064852715, 0.01366330124437809, 0.02498355694115162, -0.007229968439787626, 0.01843641884624958, -0.00027719061472453177, 0.005251768510788679, -0.03344529867172241, -0.01616031862795353, 0.005084407981485128, 0.01966819167137146, 0.02629566192626953, -0.019320081919431686, 0.019520914182066917, -0.010905202478170395, 0.008421573787927628, 0.02368484064936638, -0.01921297051012516, -0.022426290437579155, -0.011246616952121258, 0.038318831473588943, -0.0419338159263134, 0.006855080835521221, -0.024622058495879173, -0.029749980196356773, 0.013884216547012329, 0.012404751032590866, 0.0070626079104840755, 0.045013245195150375, -0.03724772483110428, 0.005733766593039036, -0.020083244889974594, -0.045468468219041824, -0.018543530255556107, 0.02193090319633484, 0.015102600678801537, 0.05160054937005043, -0.007209884934127331, 0.01349594071507454, 0.020337631925940514, -0.012451612390577793, -0.03513228893280029, 0.036578282713890076, 0.01857030764222145, -0.003979829605668783, -0.017807144671678543, -0.054090872406959534, 0.04324592277407646, -0.02474255859851837, -0.014259103685617447, 0.02330995351076126, 0.00804668664932251, -0.0016233955975621939, -0.025144223123788834, 0.026509882882237434, -0.00475638173520565, 0.015075822360813618, -0.006433332804590464, -0.013355357572436333, 0.030285533517599106, 0.02484966814517975, -0.021971069276332855, -0.013489246368408203, 0.0021288238931447268, -0.024113282561302185, 0.006560526788234711, 0.031142419204115868, 0.010925285518169403, 0.024956779554486275, -0.03331140801310539, 0.019105860963463783, 0.020284077152609825, 0.012418139725923538, 0.021462295204401016, 0.015276654623448849, -0.03467706963419914, 0.020592020824551582, 0.0412643738090992, 0.013616439886391163, 0.022747622802853584, 0.011213145218789577, 0.016736038029193878, -0.00412375945597887, 0.011280089616775513, -0.00024016214592847973, 0.02972320280969143, -0.007189801894128323, -0.017017202451825142, -0.022426290437579155, -0.026710715144872665, 0.009733679704368114, -0.0037354836240410805, -0.020136799663305283, -0.008990599773824215, -0.010034928098320961, -0.013060803525149822, -0.03280263394117355, 0.026175161823630333, 0.013710161671042442, 0.0019464012002572417, 0.030151644721627235, -0.019949356094002724, 0.013114359229803085, -0.006403207778930664, -0.018597085028886795, -0.021596182137727737, 0.06024973466992378, -0.009037460200488567, -0.008327852003276348, 0.04016648977994919, 0.010208982974290848, 0.02653666026890278, 0.013703467324376106, 0.025023723021149635, 0.004686090629547834, 0.010751230642199516, -0.018342697992920876, 0.046432461589574814, -0.03076753206551075, -0.015450709499418736, -0.03864016383886337, 0.057732634246349335, 0.010731147602200508, -0.01889164000749588, -0.006031667813658714, -0.021783625707030296, 0.02155601605772972, 0.01798119954764843, 0.00013671250781044364, 0.027795210480690002, -0.03159764036536217, 0.009827401489019394, 0.00506432494148612, -0.031972527503967285, -0.022560179233551025, 0.00032530672615393996, -0.004006607457995415, 0.012625666335225105, 0.011112729087471962, -0.009298542514443398, -0.01713770255446434, -0.015624764375388622, 0.004783159587532282, 0.016254039481282234, -0.020819630473852158, 0.041692815721035004, 0.04418313875794411, -0.002746383659541607, -0.0034409293439239264, -0.0021991152316331863, -0.005074366461485624, 0.018128475174307823, 0.017418866977095604, 0.015745263546705246, -0.0066207763738930225, -0.02252001129090786, 0.005887737963348627, 0.018195420503616333, -0.012799721211194992, -0.00804668664932251, 0.026068052276968956, -0.01895858347415924, -0.01887824945151806, -0.04718223586678505, 0.002552245743572712, 0.014982100576162338, 0.022613734006881714, 0.02563961036503315, -0.038586609065532684, 0.029830314218997955, 0.019909190014004707, 0.03783683478832245, -0.0009330341126769781, 0.007785604801028967, -0.012150363065302372, 0.012531944550573826, 0.00935209821909666, 0.012612277641892433, 0.00770527170971036, 0.009044154547154903, 0.0021355184726417065, 0.002582370536401868, 0.004732951521873474, -0.015356987714767456, 4.4010550482198596e-05, 0.00943912472575903, 0.013428996317088604, 0.010242454707622528, 0.00029601866845041513, -0.00568021135404706, 0.022145124152302742, 0.019775301218032837, 0.0015531042590737343, 0.003862677374854684, -0.03355240821838379, -0.009030765853822231, 0.010208982974290848, 0.001584902754984796, 0.019842246547341347, -0.0172046460211277, -0.035533953458070755, -0.005395698361098766, 0.025719942525029182, -0.004113717935979366, -0.005897779483348131, 0.014982100576162338, 0.023202842101454735, 0.0005004075355827808, -0.0007238336256705225, -0.025800274685025215, 0.011467533186078072, 0.009372181259095669, -0.0006857591215521097, 0.020551854744553566, -0.021984459832310677, -0.03914893791079521, -0.0172046460211277, -0.018262363970279694, -0.025947552174329758, 0.04051459953188896, 0.0051413108594715595, -0.004515382926911116, 0.018918417394161224, 0.014165381900966167, 0.012766249477863312, 0.07481678575277328, 0.0009070932283066213, -0.015276654623448849, 0.017177868634462357, 0.05251099169254303, -0.020083244889974594, -0.0060952650383114815, 0.023403674364089966, -0.008850016631186008, -0.0003052234824281186, -0.05055622383952141, 0.012210613116621971, 0.028839539736509323, -0.011728615500032902, -0.011507699266076088, 0.00042300333734601736, 0.016254039481282234, 0.052484214305877686, 0.021756848320364952, -0.005255115684121847, 0.006389819085597992, -0.013375441543757915, -0.008595628663897514, -0.015209711156785488, -0.033472076058387756, -0.025492332875728607, 0.03869371861219406, -0.008501906879246235, 0.029937423765659332, 0.013034026138484478, -0.016307594254612923, -0.020980296656489372, 0.01369677297770977, 0.022667288780212402, -0.004913700744509697, -0.009144570678472519, 0.0009162980713881552, -0.026442939415574074, 0.019641414284706116, 0.01460721343755722, -0.013596356846392155, 0.00012259147479198873, -0.013649912551045418, -0.03149052709341049, 0.007892715744674206, 0.011079256422817707, 0.0006916167330928147, -0.009419041685760021, -0.008294380269944668, -0.010523620061576366, -0.014861601404845715, 0.022279012948274612, -0.05350176617503166, -0.018730973824858665, -0.027875544503331184, -0.0016669093165546656, 0.0018074921099469066, -0.0032099720556288958, -0.017177868634462357, -0.019949356094002724, 0.006035014986991882, 0.009633263573050499, -0.03017842210829258, 0.04453124850988388, 0.003541345475241542, 0.0009255028562620282, 0.003333818633109331, 0.008521989919245243, 0.008749600499868393, 0.0024869751650840044, -0.03708706051111221, -0.016401316970586777, 0.02835754118859768, 0.010282621718943119, -0.001427583978511393, 0.030285533517599106, 0.008147102780640125, 0.014687546528875828, -0.009519457817077637, -0.020337631925940514, -0.011474227532744408, 0.014392992481589317, 0.009318625554442406, 0.017659867182374, -0.03392729535698891, 0.008542073890566826, 0.028223654255270958, 0.027929099276661873, -0.007591466419398785, 0.07963676005601883, -0.01522309985011816, -0.005278546363115311, 0.012384667992591858, -0.012478389777243137, 0.009131181985139847, 0.008622406981885433, -0.017110925167798996, -0.008173881098628044, -0.02835754118859768, -0.020565243437886238, 0.029616091400384903, 0.010383037850260735, 0.015865763649344444, -0.017833922058343887, -0.02889309450984001, -0.010249149054288864, 0.0037187475245445967, -0.018342697992920876, 0.016254039481282234, 0.002582370536401868, 0.013281719759106636, -0.005871002096682787, 0.04088948667049408, -0.008843322284519672, -0.017218034714460373, -0.015999652445316315, -0.0027279742062091827, -0.027246268466114998, -0.012585500255227089, 0.027299825102090836, -0.029776757583022118, -0.0066140820272266865, 0.0014551985077559948, 0.005415781866759062, 0.0392024926841259, 0.0241534486413002, -0.005897779483348131, 0.017686644569039345, 0.013509329408407211, 0.010302704758942127, -0.006928719580173492, 0.001127172145061195, -0.018583696335554123, -0.021207906305789948, -0.018356086686253548, 0.015986263751983643, 0.008682656101882458, -0.0013455774169415236, -0.008649184368550777, 0.02752743475139141, -0.0049003115855157375, -0.0031011877581477165, -0.0022509971167892218, -0.016200484707951546, 0.0055329338647425175, -0.018583696335554123, 0.028277209028601646, 0.008809850551187992, -0.033713072538375854, 0.002259365050122142, -0.017539367079734802, -0.003986523952335119, -0.02076607570052147, 0.03063364326953888, 0.006306138820946217, -0.027112381532788277, 0.030687198042869568, -0.005596531089395285, -0.010624036192893982, -0.022426290437579155, 0.0064132497645914555, 0.022627122700214386, -0.01119306217879057, -0.00739732850342989, 0.02667054906487465, -0.02835754118859768, -0.02162296138703823, 0.02474255859851837, 0.049297671765089035, -0.005874349270015955, 0.0007593976915813982, -0.00608522305265069, 0.03786361217498779, 0.004953867290169001, -0.027406934648752213, -0.0034024363849312067, -0.00580740487203002, 0.02388567291200161, -0.030740754678845406, -0.01249177847057581, 0.016267428174614906, 0.022546790540218353, -0.026068052276968956, -0.008796460926532745, -0.008823239244520664, 0.004736298695206642, 0.011213145218789577, -0.010296010412275791, 0.017766976729035378, -0.012511861510574818, 0.015290044248104095, 0.00730360671877861, 0.02614838443696499, 0.009706901386380196, 0.024903224781155586, -0.036256950348615646, 0.027821989730000496, -0.03454318270087242, 0.029053760692477226, 0.015571209602057934, -0.019226359203457832, -0.03797072172164917, -0.0227877888828516, -0.027955876663327217, 0.00579066900536418, -0.020431354641914368, -0.009686818346381187, 0.005593183916062117, 0.02167651616036892, -0.020886573940515518, 0.027768433094024658, -0.015102600678801537, 0.03973804786801338, 0.03660506010055542, -0.018262363970279694, -0.013964549638330936, -0.028330763801932335, 0.020404577255249023, 0.007444189395755529, -0.03631050884723663, -0.021368572488427162, -0.0017790407873690128, 0.05596530809998512, -0.03438251465559006, 0.008635795675218105, 0.016736038029193878, 0.0050208112224936485, -0.005673516541719437, 0.0011497657978907228, -0.06035684421658516, 0.03178508207201958, 0.009131181985139847, -0.005168088246136904, -0.030392644926905632, -0.007169718388468027, -0.007517828140407801, -0.0168699249625206, -0.04067526385188103, 0.0013957854826003313, -0.02725965715944767, -0.008006520569324493, 0.011675059795379639, 0.04257648065686226, -0.0071295518428087234, -0.005238379817456007, 0.012578805908560753, -0.02298862114548683, -0.021917514503002167, -0.021248072385787964, -0.0067345816642045975, -0.006028320640325546, 0.00935209821909666, -0.02641616202890873, -0.017378700897097588, -0.016200484707951546, -0.0002571073709987104, 0.019306693226099014, -0.012190530076622963, 0.0016568676801398396, -0.024822890758514404, -0.002179032191634178, -0.0280362106859684, 0.015919318422675133, 0.0013037372846156359, 0.039550602436065674, 0.029910646378993988, -0.004019996151328087, -0.022560179233551025, -0.042415812611579895, 0.028866317123174667, 0.0006589815020561218, 0.014433158561587334, -0.006269319448620081, -0.036631837487220764, -0.032882966101169586, 0.02862531878054142, 0.012772943824529648, -0.014419769868254662, 0.01399132702499628, -0.02336350828409195, -0.0052149491384625435, 0.01998952403664589, 0.00970020703971386, 0.04236225783824921, 0.010784702375531197, 0.009144570678472519, -0.03869371861219406, 0.0005769748822785914, 0.0007275992538779974, 0.016240650787949562, 0.035480398684740067, 0.01000145636498928, 0.017673255875706673, 0.013951160944998264, -0.01512937806546688, 0.05476031452417374, -0.01431265939027071, 0.03387374058365822, 0.03888116404414177, -0.009693512693047523, -0.007102774456143379, 0.007209884934127331, 0.01836947537958622, -0.001906234654597938, 0.007892715744674206, 0.038533054292201996, -0.007732049562036991, 0.015062433667480946, -0.028250431641936302, -0.021596182137727737, -0.0017924295971170068, -5.517662430065684e-05, -0.0239392276853323, -0.028544984757900238, 0.006988969165831804, -0.010242454707622528, -0.011561254970729351, -0.011849114671349525, 0.016079984605312347, 0.034569960087537766, 0.030606865882873535, 0.004953867290169001, 0.013636522926390171, -0.040273599326610565, 0.05457287281751633, -0.00860232301056385, -0.00024622894125059247, -0.02376517280936241, -0.01249177847057581, -0.024180227890610695, 0.020404577255249023, -0.011146200820803642, 0.049029894173145294, -0.03601595386862755, 0.05026166886091232, 0.023269787430763245, 0.017418866977095604, 0.039363160729408264, 0.00739732850342989, -0.00765841081738472, -0.02440783753991127, 0.005586489103734493, 0.004096982069313526, 0.004826673306524754, -0.022680677473545074, 0.026857992634177208, 0.006624123547226191, 0.023122509941458702, -0.0064199441112577915, -0.007149635348469019, 0.0027748350985348225, 0.034891292452812195, 0.005101144313812256, -0.00847512949258089, -0.0010075094178318977, -0.017378700897097588, 0.016843147575855255, 0.004568938165903091, 0.013636522926390171, 0.005295282229781151, -0.016468260437250137, -0.0015121010364964604, -0.024434614926576614, 0.01551765389740467, 0.01227086316794157, 0.016320982947945595, -0.03031231090426445, -0.029642868787050247, 0.00483336765319109, 0.03513228893280029, 0.01590592972934246, -0.0071362461894750595, 0.002232587430626154, 0.004622493404895067, -0.02115435153245926, -0.05350176617503166, -0.009117793291807175, -0.0004123341350350529, -0.044102806597948074, -0.02135518379509449, 0.05944640561938286, 0.023390285670757294, 0.009934511967003345, -0.0325884111225605, 0.014031494036316872, -0.01366330124437809, 0.02395261637866497, -0.035801731050014496, 0.05939285084605217], [0.017818281427025795, 0.022650359198451042, 0.02749556675553322, 0.04858337715268135, -0.017319317907094955, 0.02972777560353279, 0.0025785299949347973, 0.014785103499889374, 0.015520419925451279, 0.06281699240207672, 0.009408105164766312, 0.008167259395122528, 0.010511079803109169, -0.017897065728902817, -0.004730314016342163, 0.022440267726778984, 0.0208908524364233, 0.0371071957051754, -0.0014665286289528012, 0.001680722227320075, 0.0892883688211441, 0.013472039252519608, 0.010694908909499645, -0.012927117757499218, -0.03668701648712158, -0.07269123941659927, -0.007090547122061253, 0.020956505089998245, 0.017319317907094955, -0.08109484612941742, 0.061976633965969086, -0.02543405443429947, 0.03014795482158661, -0.012145844288170338, -0.023096799850463867, 0.014588143676519394, 0.004109891131520271, -0.023425066843628883, -0.009191449731588364, 0.030673181638121605, 0.0012022744631394744, -0.011213568970561028, -0.024961352348327637, -0.009040447883307934, -0.03957575559616089, 0.0541507713496685, 0.013301340863108635, -0.0512620285153389, 0.001377076143398881, -0.0027196842711418867, 0.008580874651670456, 0.04259580373764038, -0.00039515027310699224, -0.026051195338368416, 0.0102156400680542, -0.005035601556301117, 0.00018711165466811508, 0.03122466802597046, -0.03697589039802551, -0.0367395393550396, 0.03387705981731415, -0.0281520988792181, -0.001226073713041842, -0.019183868542313576, 0.017004182562232018, 0.01045199204236269, -0.01679409295320511, 0.012638243846595287, -0.03492750972509384, -0.015979992225766182, 0.08398359268903732, 0.05514869838953018, 0.009158623404800892, 0.02072015404701233, 0.015848685055971146, -0.02786322310566902, -0.04112517461180687, 0.015966862440109253, -0.023004885762929916, -0.0005826722481288016, -0.04797936975955963, 0.03702841326594353, 0.0051078200340271, -0.05793239548802376, -0.011062566190958023, -0.026445114985108376, -0.05228621885180473, -0.004996209405362606, -0.04327859729528427, -0.019945446401834488, -0.013695260509848595, 0.030568135902285576, -0.0559365376830101, 0.03487498685717583, 0.017240533605217934, -0.0598757304251194, 0.017148619517683983, -0.02687842585146427, -0.03240642696619034, 0.0018760405946522951, -0.026917817071080208, -0.03973332419991493, -0.05065802112221718, -0.00426745880395174, 0.034901250153779984, 0.010530775412917137, -0.006972371134907007, 0.038919225335121155, -0.011614053510129452, -0.046088557690382004, -0.03831521421670914, -0.034796204417943954, 0.020339366048574448, 0.05851014330983162, -0.01619008183479309, 0.0015174099244177341, -0.03424471616744995, -0.04808441177010536, 0.016925398260354996, -0.002647465793415904, -0.036450665444135666, -0.029176287353038788, -0.02337254397571087, -0.024593694135546684, 0.03290539234876633, -0.05183977633714676, -0.02668146602809429, -0.01679409295320511, -0.03897174820303917, -0.02395029179751873, 0.0414140485227108, -0.004477549344301224, 0.0835634097456932, -0.05583149194717407, -0.026143109425902367, 0.0021156747825443745, -0.02710164710879326, -0.011509008705615997, -0.002238774672150612, -0.004123021848499775, 0.030568135902285576, 0.027127908542752266, 0.0036765800323337317, 0.029859080910682678, -0.06019086763262749, 0.024593694135546684, -0.0025194420013576746, 0.023398805409669876, 0.009841416962444782, -0.036870844662189484, -0.017240533605217934, 0.03847278282046318, -0.007103677839040756, -0.03374575078487396, 0.018973778933286667, -0.0030939076095819473, 0.031355973333120346, 0.05441338196396828, 0.007963734678924084, 0.019170738756656647, -0.023490719497203827, -0.013104381039738655, -0.015139630995690823, 0.015481027774512768, 0.0109378257766366, -0.0069001526571810246, -0.030305523425340652, 0.003453359007835388, -0.044985581189394, -0.027443043887615204, -0.013124077580869198, -0.07022267580032349, -0.05399320274591446, 0.026733988896012306, -0.022492790594697, -0.03939192742109299, -0.010878737084567547, -0.008699051104485989, 0.016045644879341125, 0.00355840427801013, 0.004129587206989527, 0.01383969746530056, -0.09264981746673584, -0.028782369568943977, -0.04081003740429878, -0.0008920630207285285, -0.01231654267758131, -0.010865607298910618, -0.04115143418312073, 0.0392606221139431, 0.006893587298691273, 0.015586072579026222, 0.016544610261917114, -0.01114791538566351, 0.019551526755094528, 0.017818281427025795, -0.015428504906594753, -0.04094134271144867, 0.023018017411231995, -0.01776576042175293, 0.005528000649064779, -0.05023783817887306, 0.0030364610720425844, -0.025683537125587463, -0.04217562451958656, -0.046561259776353836, -0.04162413626909256, -0.006588299758732319, 0.010957521386444569, -0.07038024812936783, 0.012520067393779755, 0.0032695301342755556, -0.004379069432616234, 0.03382453694939613, -0.008882880210876465, 0.018868733197450638, -0.04133526235818863, 0.07867880910634995, 0.011476181447505951, 0.004405330400913954, -0.010747430846095085, 0.019118215888738632, 0.05092063173651695, -0.05441338196396828, -0.02031310461461544, 0.009191449731588364, 0.0022157959174364805, -0.07883638143539429, 0.0013910274719819427, -0.08188268542289734, 0.0055214352905750275, 0.012296847067773342, 0.007642033975571394, -0.026077456772327423, 0.022243307903409004, -0.05604158341884613, 0.02720669098198414, 0.008259174413979053, 0.00869248528033495, 0.03151354193687439, 0.03957575559616089, -0.001171909854747355, -0.01153526920825243, 0.013498300686478615, 0.014259877614676952, -0.01658400148153305, -0.01777889020740986, -0.03800008073449135, 0.011121653951704502, 0.011719098314642906, 0.049423739314079285, 0.013879089616239071, 0.08787026256322861, -0.044617924839258194, -0.039602018892765045, 0.006299425847828388, -0.02020805887877941, -0.042543280869722366, 0.012034233659505844, 0.06244933605194092, -0.03434976190328598, 0.0008013795595616102, -0.026628943160176277, -0.010274727828800678, -0.054045725613832474, -0.015638595446944237, -0.017516277730464935, 0.015047716908156872, -0.02072015404701233, 0.046193599700927734, -0.01934143714606762, 0.05499113351106644, 0.02943890169262886, -0.03395584225654602, -0.11859596520662308, 0.012736723758280277, -0.01580929383635521, 0.017161749303340912, 0.010497949086129665, -0.011292352341115475, -0.008042518980801105, 0.01659713312983513, -0.015389113686978817, -0.024317950010299683, 0.026839034631848335, 0.03403462469577789, 0.0034402282908558846, -0.0006475048139691353, -0.017529407516121864, 0.01913134567439556, 0.059035368263721466, 0.009053578600287437, 0.021652430295944214, -0.02513205073773861, 0.014509360305964947, 0.02337254397571087, 0.018028372898697853, -0.04934495687484741, 0.008521786890923977, -0.012080191634595394, 0.0042116534896194935, 0.02296549454331398, -0.002550627337768674, -0.011876665987074375, -0.026143109425902367, 0.030279261991381645, -0.013537692837417126, -0.0453532412648201, -0.006378209684044123, 0.0032974325586110353, -0.01089843362569809, 0.013524562120437622, -0.036660753190517426, -0.03936566784977913, -0.01727992668747902, 0.00549517385661602, 0.02170495316386223, 0.027548087760806084, 0.026812773197889328, 0.02570979855954647, 0.010333815589547157, -0.0025095941964536905, 0.03408714756369591, 0.006279729772359133, -0.028230881318449974, -0.03639814257621765, -0.040284812450408936, 0.012566025368869305, -0.04532697796821594, -0.009243972599506378, -0.016662785783410072, -0.01001868024468422, 0.04335738345980644, -0.005409824661910534, -0.028125837445259094, -0.008850052952766418, -0.03012169525027275, 0.023884639143943787, 0.02746930532157421, 0.007110243197530508, 0.011942319571971893, -0.03151354193687439, -0.045510806143283844, 0.022991755977272987, -0.014640666544437408, 0.03613552823662758, -0.00027697448967956007, 0.026366330683231354, -0.020155536010861397, 0.02746930532157421, 0.001369690173305571, 0.06460276246070862, -0.0537831112742424, 0.018015241250395775, -0.05661933124065399, 0.015218415297567844, 0.015323460102081299, -0.006328969728201628, -9.063220932148397e-05, 0.012526633217930794, -0.03553152084350586, -0.015664856880903244, 0.007083981763571501, 0.027942007407546043, 0.024777522310614586, 0.015625465661287308, -0.022991755977272987, 0.01015655230730772, 0.015008324757218361, -0.020378757268190384, 0.025486577302217484, 0.010281293652951717, 0.00941467098891735, 0.010360077023506165, -0.012086756527423859, -0.01579616405069828, 0.003755363868549466, 0.02286044880747795, -0.006906718015670776, 0.02161303721368313, 0.015861816704273224, 0.01697792112827301, 0.01231654267758131, -0.013189730234444141, 0.02678651176393032, 0.03424471616744995, -0.06764907389879227, -0.0371071957051754, -0.028913674876093864, -0.0028591975569725037, 0.011942319571971893, -0.008685920387506485, -0.028125837445259094, 0.025250226259231567, -0.028913674876093864, 0.03209128975868225, -0.02219078689813614, 0.022637227550148964, 0.04238571599125862, -0.01571737974882126, 0.0009363789577037096, -0.019407089799642563, -0.014850757084786892, 0.014404315501451492, -0.042044319212436676, 0.02442299574613571, -0.014456837438046932, -0.03821016848087311, -0.0014550393680110574, 0.012894291430711746, 0.02237461507320404, 0.05693446844816208, 0.04472297057509422, 0.00863996334373951, 0.024409864097833633, -0.01650521717965603, -0.0013934894232079387, 0.03957575559616089, -0.029964126646518707, -0.05425581708550453, 0.0367395393550396, 0.022610966116189957, -0.011902927421033382, -0.02807331457734108, -0.02454117126762867, 0.047559186816215515, 0.0752648413181305, -0.0326165147125721, 0.00517675606533885, -0.048740945756435394, -0.031145883724093437, 0.020260581746697426, 0.03975958749651909, 0.043331120163202286, -0.042044319212436676, -0.013406386598944664, 0.020483803004026413, -0.025893626734614372, 0.001682363566942513, -0.022794796153903008, 0.0091848848387599, -0.034796204417943954, 0.014811364933848381, 0.002297862432897091, -0.02433108165860176, 0.004454570356756449, 0.0005322013748809695, 0.00941467098891735, 0.01212614867836237, 0.0007308023050427437, 0.012973074801266193, 0.021626168861985207, -0.04543202370405197, -0.028099576011300087, -0.020339366048574448, 0.0017348862020298839, 0.015441635623574257, -0.025210833176970482, 0.0257229283452034, -0.05015905573964119, 0.0007324436446651816, 0.0351376011967659, 0.04934495687484741, 0.05577896907925606, 0.015546681359410286, -0.04908234253525734, -0.021534254774451256, -0.04614107683300972, -0.01747688464820385, -3.89174829251715e-06, 0.018698034808039665, -0.036476925015449524, -0.03905053064227104, -0.007024894002825022, 0.0020237602293491364, -0.0267077274620533, -0.026366330683231354, -0.021179726347327232, -0.005603501573204994, -0.012060495093464851, -0.02425229735672474, 0.05898284539580345, -0.06313212960958481, -0.015625465661287308, 0.051892299205064774, 0.006854195613414049, 0.045510806143283844, -0.008095040917396545, 0.008095040917396545, -0.03290539234876633, -0.013110946863889694, 0.011719098314642906, 0.00714306952431798, -0.014456837438046932, -0.0019515417516231537, 0.002240415895357728, -0.034691158682107925, -0.041282739490270615, 0.026537029072642326, 0.0070314593613147736, 0.013787174597382545, -0.031539805233478546, 0.01805463433265686, 0.0398121103644371, 0.02041815035045147, -0.016820352524518967, 0.002355308970436454, 0.010904998518526554, -0.023989684879779816, 0.017306186258792877, -0.041072651743888855, -0.01844855211675167, 0.030594397336244583, 0.022912971675395966, -0.03311548009514809, -0.005603501573204994, 0.03471741825342178, -0.00022465709480457008, -0.045694638043642044, 0.03395584225654602, -0.014391184784471989, -0.02710164710879326, 0.033903319388628006, 0.019288914278149605, -0.00640118820592761, 0.02003736048936844, -0.00041894958121702075, -0.027731917798519135, -0.019801009446382523, 0.0022732424549758434, 0.006555473431944847, -0.01777889020740986, -0.005573957692831755, 0.016951659694314003, -0.005091406870633364, -0.0027689242269843817, -0.011141350492835045, 0.012493806891143322, -0.019709095358848572, 0.0019613897893577814, -0.008823791518807411, -0.003620774718001485, 0.015966862440109253, -0.009624761529266834, 0.018908126279711723, 0.0030676464084535837, 0.020352495834231377, 0.015218415297567844, -0.0031300168484449387, 0.011627184227108955, -0.005390129052102566, 0.007989996112883091, 0.02012927457690239, -0.0167678315192461, -0.008882880210876465, 0.01477197278290987, 0.018133416771888733, -0.04409269988536835, 0.020759545266628265, -0.011942319571971893, -0.010169683024287224, -0.003620774718001485, 0.013229122385382652, 0.00022198993247002363, -0.012073625810444355, 0.04868842288851738, -0.004661377985030413, -0.01329477597028017, 0.0014624253381043673, 0.007307202555239201, -0.002494822023436427, -0.001066044089384377, 0.026235023513436317, -0.006755715701729059, 0.06476032733917236, 0.0036306227557361126, 0.02051006443798542, -0.06040095537900925, -0.0019252804340794683, 0.024882568046450615, -0.006847630254924297, 0.0037914731074124575, -0.043541211634874344, -0.009756067767739296, -0.027810702100396156, 0.03314174339175224, 0.007707687094807625, -0.02337254397571087, -0.02023432031273842, 0.032826606184244156, -0.00714306952431798, 0.0009544335771352053, 0.01516589242964983, 0.011377701535820961, 0.03847278282046318, 0.031067101284861565, 0.003958888817578554, 0.014378054067492485, -0.027626872062683105, 0.010084333829581738, 0.012579156085848808, 0.0024226035457104445, -0.0029297745786607265, 0.01630825735628605, -0.00859400536864996, 0.0038768223021179438, 0.008666223846375942, -0.0036404707934707403, 0.03119840659201145, 0.0021058267448097467, -0.013708391226828098, 0.02167869172990322, -0.031067101284861565, -0.03385079652070999, 0.0015116652939468622, 0.01846168376505375, -0.04409269988536835, -0.016741570085287094, -0.006749150343239307, -0.0036273400764912367, -0.01118730753660202, 0.011896362528204918, -0.0083379577845335, -0.00772738317027688, -0.004828793928027153, 0.029465163126587868, -0.02423916570842266, -0.006099183578044176, -0.05223369598388672, -0.023516980931162834, -0.0376586839556694, -0.023123061284422874, -0.012086756527423859, -0.024685608223080635, 0.008869749493896961, 0.02867732383310795, -0.007077416405081749, 0.005669155158102512, -0.009053578600287437, 0.007569815497845411, 0.017792019993066788, 0.0347699411213398, 0.007917777635157108, -0.03301043435931206, 0.05036914721131325, 0.025972411036491394, -0.0208908524364233, 0.033929578959941864, 0.014798234216868877, -0.010721169412136078, -0.004277307074517012, 0.0001785972563084215, -0.03119840659201145, -0.026366330683231354, 0.03978584706783295, 0.01364273764193058, -0.013275079429149628, -0.0017151902429759502, 0.008646528236567974, 0.02316245436668396, -0.04855711758136749, 0.03899800777435303, -0.007103677839040756, 0.02788948453962803, 0.02198069542646408, 0.012001407332718372, 0.044985581189394, 2.188867802033201e-05, -0.006089335773140192, 0.023438196629285812, -0.08435124903917313, -0.004372504074126482, 0.04377756267786026, -0.021521123126149178, 0.005751221440732479, -0.01335386373102665, -0.025657275691628456, 0.011272656731307507, -0.018816210329532623, -0.0018235179595649242, -0.008469264954328537, -0.012717027217149734, -0.000407460262067616, -0.0007796318968757987, -0.014929540455341339, -0.0498439185321331, 0.0559365376830101, -0.027942007407546043, 0.008896009996533394, 0.017424363642930984, -0.0019482590723782778, 0.023884639143943787, 0.013399820774793625, 0.018382899463176727, 0.01031411997973919, 0.05567392334342003, 0.013905351050198078, -0.011233264580368996, -0.010300989262759686, -0.0724286288022995, 0.011390832252800465, -0.012434718199074268, -0.02836218848824501, -0.04317355155944824, -0.03290539234876633, -0.032537732273340225, -0.034901250153779984, 0.017398102208971977, 0.03660823032259941, -0.04503810405731201, -0.022151393815875053, 0.032432686537504196, -0.03912931680679321, -0.0038538435474038124, 0.0006048302166163921, 0.0041525657288730145, -0.014509360305964947, 0.008370785042643547, -0.019210129976272583, 0.016715308651328087, -0.01015655230730772, 0.025841105729341507, -0.035190124064683914, -0.02954394556581974, 0.00018618840840645134, -0.007129938807338476, 0.020825199782848358, 0.005505022127181292, 0.005114385392516851, -0.024370472878217697, -0.005344171542674303, -0.023425066843628883, 0.0019105084938928485, 0.020365627482533455, -0.010596428997814655, 0.03180241584777832, -0.05317910388112068, 0.0050159054808318615, -0.01984040066599846, 0.0067228889092803, -0.02925507165491581, -0.04837328940629959, -0.010458556935191154, -0.011430224403738976, 0.008377349935472012, -0.027705656364560127, -0.014798234216868877, 0.032642778009176254, 0.02022119052708149, 0.018094025552272797, -0.004287154879420996, 0.011167611926794052, -0.03164484724402428, -0.033719491213560104, 0.04564211517572403, -0.00795716978609562, -0.008298566564917564, 0.02707538567483425, -0.006887021940201521, 0.03844652324914932, -0.0007718356209807098, 0.022519052028656006, 0.0076223379001021385, 0.015100238844752312, -0.004408613312989473, -0.003095549065619707, 0.008259174413979053, 0.002045097528025508, 0.03487498685717583, 0.0012441284488886595, -0.013235688209533691, -0.015572941862046719, -0.026537029072642326, 0.029071243479847908, 0.04172918200492859, 0.0029806559905409813, -0.04209684208035469, -0.008705615997314453, 0.03012169525027275, 0.0028690453618764877, 0.026576420292258263, -0.02875610813498497, -0.01747688464820385, -0.022912971675395966, 0.006230489816516638, 0.033430617302656174, -0.03248520940542221, -0.02915002591907978, -0.0007492672884836793, -0.018592990934848785, -0.04511689022183418, -0.0013393255649134517, -0.017161749303340912, 0.005291649140417576, -0.0035288601648062468, -0.0217837356030941, 0.006706475745886564, -0.05961311608552933, -0.05328414961695671, 0.010432295501232147, -0.008075345307588577, -0.020733285695314407, 0.002141935983672738, 0.035478997975587845, 0.06507546454668045, 0.009388409554958344, -0.03860408812761307, -0.018908126279711723, -0.0010882019996643066, 0.00456289853900671, -0.044512879103422165, 0.030489351600408554, 0.009782329201698303, -0.0025325727183371782, -0.004274024162441492, -0.005094689317047596, -0.007944039069116116, -0.003765211906284094, -0.014850757084786892, 0.00029400328639894724, 0.01854046806693077, -0.03369322791695595, -0.020549455657601357, -0.016531478613615036, -0.018816210329532623, 0.0004969127476215363, -0.0035354255232959986, 0.02169182151556015, 0.005679002963006496, -0.002695064526051283, 0.011075696907937527, 0.008029388263821602, -0.0005436906940303743, 0.01709609664976597, -0.0035846654791384935, -0.0290449820458889, -0.018474813550710678, 0.0003450897056609392, 0.0031858221627771854, -0.010366642847657204, 0.01452249102294445, -0.016071906313300133, -0.03818390890955925, -0.0494762621819973, 0.0002860017993953079, -0.019590919837355614, -0.005462347529828548, 0.020273711532354355, -0.013511431403458118, 0.011128219775855541, -0.008193520829081535, -0.012132713571190834, 0.002097620163112879, -0.018527336418628693, 0.012894291430711746, -0.010609559714794159, 0.0014821212971583009, -0.019485874101519585, -0.007766775321215391, -0.008817226625978947, 0.007385986391454935, 0.00022465709480457008, 0.009690414182841778, -0.01699105091392994, 0.0014632459497079253, -0.012933682650327682, 0.03915557637810707, 0.029386378824710846, -0.0017086248844861984, -0.0007792215910740197, 0.011430224403738976, -0.02865106239914894, 0.03776372969150543, 0.014312400482594967, -0.03631935641169548, -0.014758842065930367, -0.009427801705896854, -0.0021189574617892504, 0.019774748012423515, 0.03584665432572365, 0.04729657620191574, 0.02933385595679283, 0.024094728752970695, 0.0218756515532732, -0.03613552823662758, 0.010149986483156681, -0.014903279021382332, 0.026064325124025345, 0.029465163126587868, -0.02150799334049225, -0.02216452546417713, -0.0039129313081502914, 0.027915745973587036, -0.007589511573314667, -0.01864551194012165, 0.04884599149227142, -0.04109891131520271, 0.025197703391313553, -0.005823439918458462, 0.005321193020790815, -0.05244378745555878, 0.004733596928417683, 0.01629512757062912, 0.0059777251444756985, 0.02983281947672367, -0.007983431220054626, 0.013229122385382652, 0.01569111831486225, 0.04172918200492859, 0.03750111535191536, 0.011837274767458439, -0.027022862806916237, -0.03723850101232529, -0.004421744029968977, 0.03377201408147812, 0.00795716978609562, 0.0016011177795007825, -0.00902731716632843, 0.04782180115580559, -0.006049943622201681, 0.058142486959695816, 0.013091250322759151, 0.018212201073765755, 0.014194224961102009, 0.03736981004476547, -0.016938529908657074, 0.02278166450560093, 0.003909648861736059, 0.020864591002464294, -0.045510806143283844, -0.01913134567439556, 0.013498300686478615, 0.015073977410793304, 0.07174583524465561, -0.022519052028656006, 0.0035288601648062468, -0.02040501870214939, -0.008035953156650066, 0.024659346789121628, -0.047664232552051544, -0.011751925572752953, -0.0017939740791916847, 0.02540779300034046, -0.04582594335079193, 0.005390129052102566, -0.012007973156869411, -0.020352495834231377, 0.0011792958248406649, 0.029911603778600693, 0.006588299758732319, 0.0428321547806263, -0.017883935943245888, 0.009329321794211864, -0.007320333272218704, -0.05328414961695671, 0.00795716978609562, 0.02237461507320404, 0.00295767723582685, 0.02060197852551937, -0.024711869657039642, -3.744284913409501e-05, 0.04046864062547684, 0.009808589704334736, -0.019105084240436554, 0.0028641214594244957, 0.020194929093122482, -0.020103013142943382, -0.0017529408214613795, -0.027127908542752266, 0.027022862806916237, -0.02286044880747795, 0.0010561960516497493, 0.020825199782848358, 0.018002111464738846, 0.006256751250475645, 0.005603501573204994, 0.01776576042175293, -0.03466489538550377, 0.010248466394841671, 0.0003052874526474625, -0.0037520811893045902, 0.025578491389751434, 0.01383969746530056, 0.005367150064557791, -0.008620266802608967, 0.029202548786997795, 0.0007377779693342745, 0.04267458990216255, -0.012579156085848808, -0.007517293095588684, 0.024278558790683746, -0.02148173190653324, -0.004887881688773632, 0.017135487869381905, 0.004441440105438232, 0.03161858767271042, 0.01805463433265686, -0.013616476207971573, 0.03574160858988762, 0.025158312171697617, 0.013787174597382545, 0.026353199034929276, 0.057564739137887955, 0.0372910238802433, -0.000354937685187906, 0.04073125496506691, 0.004868185613304377, 0.023004885762929916, -0.027127908542752266, 0.014299269765615463, -0.005222713109105825, -0.023438196629285812, 0.008941967971622944, -0.012296847067773342, -0.02857227809727192, 0.0009987495141103864, 0.004283871967345476, -0.011200438253581524, -0.042648326605558395, 0.0006425808533094823, 0.0035912308376282454, 0.003353237872943282, 0.0036732973530888557, 0.004989644046872854, 0.0031431475654244423, -0.004411895759403706, -0.0124150225892663, -0.005744656082242727, 0.05625167489051819, -0.013064989820122719, 0.013682129792869091, 0.03671327605843544, 0.006644105073064566, 0.02334628254175186, -0.0036536012776196003, 0.025066396221518517, 0.00122114981058985, -0.00416897889226675, -0.0035288601648062468, 0.02707538567483425, -0.011003478430211544, -0.005590371321886778, -0.03014795482158661, 0.06234429031610489, 0.02875610813498497, -0.0009527922375127673, 0.006187815219163895, -0.00743850925937295, 0.0297540370374918, 0.021258510649204254, -0.011266091838479042, 0.030883271247148514, -0.027259213849902153, 0.03975958749651909, -0.006932979449629784, -0.0410463884472847, -0.02936011739075184, 0.0033745751716196537, -0.009066708385944366, 0.015100238844752312, -0.01670217700302601, -0.01942022144794464, -0.01280237641185522, -0.03873539716005325, 0.025683537125587463, 0.0066506704315543175, -0.015284067951142788, 0.04832076653838158, 0.041282739490270615, 0.017490016296505928, 0.0031973114237189293, -0.008482394739985466, -0.004802532494068146, 0.005170190706849098, -0.006670366507023573, 0.017227403819561005, -0.002381570404395461, -0.023044278845191002, 0.00849552545696497, 0.035295166075229645, -0.025578491389751434, -0.008869749493896961, -0.01570424810051918, -0.006775411777198315, -0.032826606184244156, -0.04955504462122917, -0.012743288651108742, 0.01815967820584774, -0.015520419925451279, 0.019748486578464508, -0.038420259952545166, 0.023582633584737778, 0.027337998151779175, -0.007779906038194895, 0.006115596741437912, 0.017595062032341957, -0.011318613775074482, 0.004513658583164215, 0.014693189412355423, 0.0064832549542188644, 0.0006548907840624452, 0.016216343268752098, 0.0033909885678440332, 0.010694908909499645, -0.0014451913302764297, 0.006437297444790602, 0.003817734308540821, 0.020470671355724335, 0.01070147380232811, 0.002688499167561531, -0.0075632501393556595, -0.009631326422095299, 0.0107999537140131, -0.010360077023506165, 0.012979640625417233, 0.012533198110759258, -0.0519973449409008, 0.0007271093199960887, 0.002137012081220746, -0.0022683185525238514, 0.003821016987785697, -0.026090586557984352, -0.03272156044840813, -0.015244675800204277, 0.008252608589828014, 0.0075960769318044186, -0.039444450289011, 0.002969166496768594, 0.024186644703149796, -0.012172105722129345, 0.004723748657852411, -0.01991918496787548, 0.013025597669184208, -0.016649654135107994, 0.0053638676181435585, 0.01679409295320511, -0.016649654135107994, -0.058142486959695816, -0.004953534808009863, -0.04446035623550415, -0.019971707835793495, 0.025644145905971527, -0.019879793748259544, -0.014798234216868877, 0.004431591834872961, -0.01776576042175293, 0.023241236805915833, 0.06817429512739182, -0.011745359748601913, -0.017713237553834915, 0.026615813374519348, 0.0555688813328743, -0.029885342344641685, -0.011075696907937527, 0.04979139566421509, 0.00795060396194458, -0.017490016296505928, -0.05239126458764076, 0.016019383445382118, 0.04782180115580559, -0.002888741437345743, -0.0349537692964077, -0.035794131457805634, 0.011640314944088459, 0.018566729500889778, 0.006932979449629784, 0.015034586191177368, 0.03455985337495804, -0.03427097573876381, -0.008475829847157001, -0.001166165224276483, -0.022217048332095146, -0.019459612667560577, -0.0010816366411745548, -0.03857782855629921, 0.007195592392235994, 0.014863887801766396, 0.0009585369261913002, -0.0021271640434861183, 0.0028903826605528593, 0.0051734731532633305, -0.011318613775074482, -0.007294071838259697, -0.009624761529266834, -0.02375333197414875, -0.012756419368088245, -0.00014679647574666888, -0.003371292492374778, -0.004704052582383156, -0.011824144050478935, -0.019590919837355614, 0.007326898630708456, 0.03660823032259941, -0.007904646918177605, -0.016728438436985016, -0.0027065537869930267, 0.013472039252519608, 0.01206706091761589, 0.03912931680679321, -0.043725039809942245, -0.0033302593510597944, -0.021915042772889137, -0.016347650438547134, 0.019892923533916473, 0.0037849077489227057, -0.0018924538744613528, -0.009782329201698303, 0.00044521084055304527, 0.021127203479409218, -0.016019383445382118, 0.0027640003245323896, -0.008357654325664043, 0.020076753571629524, 0.007162765599787235, -0.004815663211047649, -0.02216452546417713, -0.0065423427149653435, -0.03101457841694355, -0.013078120537102222, 0.030594397336244583, 0.035400211811065674, -0.008528352715075016, 0.029911603778600693, 0.01403665728867054, 0.021074682474136353, -0.01579616405069828, 0.005892375949770212, -0.011883231811225414, 0.007392551749944687, 0.01844855211675167, 0.03217007592320442, -0.01915760710835457, 0.02699660137295723, -0.005534566007554531, -0.00011797061597462744, 0.020562587305903435, 0.06680870801210403, 0.011942319571971893, -0.0031940287444740534, 0.042753372341394424, -0.0024422996211797, 0.013734652660787106, 0.013813436031341553, -0.01089843362569809, -0.03385079652070999, -0.01099034771323204, -0.010688343085348606, 0.013235688209533691, 0.018684905022382736, -0.0038374303840100765, 0.03287912905216217, -0.01315690390765667, -0.006253468804061413, -0.024659346789121628, -0.0014722732594236732, 0.007307202555239201, 0.003939192742109299, 0.0020762828644365072, -0.010813084430992603, 0.01668904721736908, 0.010648950934410095, -0.02161303721368313, -0.018409160897135735, -0.0031907460652291775, -0.030069172382354736, -0.020733285695314407, 0.029885342344641685, -0.020785806700587273, -0.02817835845053196, 0.00162573775742203, 0.018514206632971764, 0.031067101284861565, 0.01896064728498459, -0.00682136882096529, 0.020536325871944427, 0.0038833876606076956, 0.00024168589152395725, 0.009657587856054306, 0.02236148528754711, -0.023871509358286858, -0.011384267359972, -0.01496893260627985, -0.0015838837716728449, -0.00789808202534914, 0.016229474917054176, -0.01477197278290987, -0.001780843362212181, 0.0005802102969028056, -0.0008292821585200727, -0.008416742086410522, -0.0007771698874421418, -0.011502442881464958, -0.002739380346611142, 0.006158271338790655, -0.02169182151556015, -0.015375982969999313, -0.0063256872817873955, 0.02140294760465622, -0.0008104068692773581, 0.007149634882807732, 0.03516386076807976, -0.0050979722291231155, -0.018277853727340698, 0.020733285695314407, -0.012946813367307186, -0.013084685429930687, -0.027416782453656197, 0.013215991668403149, 0.009092969819903374, -0.023018017411231995, 0.015730509534478188, 0.01785767450928688, -0.02335941419005394, -0.012664505280554295, 0.03387705981731415, 0.03487498685717583, -0.018422292545437813, 0.007313767913728952, -0.015940601006150246, 0.04046864062547684, 0.01114791538566351, -0.04335738345980644, -0.00951315090060234, -0.008475829847157001, 0.012881160713732243, -0.015979992225766182, 0.009152057580649853, 0.024212904274463654, 0.024357343092560768, -0.027049124240875244, 0.0018661925569176674, -0.00760264229029417, -0.00947375874966383, 0.00917831901460886, -0.00608277041465044, 0.00027184534701518714, 0.000354937685187906, 0.005111102480441332, 0.02825714275240898, 0.03603048250079155, 0.006017116829752922, 0.020838329568505287, -0.0062764473259449005, 0.009795459918677807, -0.014758842065930367, 0.02649763785302639, -0.0024226035457104445, -0.02169182151556015, -0.03810512647032738, -0.014338661916553974, -0.012651374563574791, -0.028414711356163025, -0.01973535679280758, -0.010261597111821175, -0.023083670064806938, -0.008311697281897068, -0.01206706091761589, 0.024764392524957657, -0.010694908909499645, 0.033430617302656174, 0.01457501295953989, -0.013340733014047146, 0.005344171542674303, -0.008009691722691059, 0.013511431403458118, 0.014627535827457905, -0.025079527869820595, -0.022768534719944, -0.007648599334061146, 0.034901250153779984, -0.0457208976149559, -0.020378757268190384, 0.03377201408147812, -0.015651725232601166, 0.005606784485280514, -0.0035419908817857504, -0.03201250731945038, 0.03159232810139656, 0.02051006443798542, -0.0030889837071299553, -0.009007620625197887, -0.0124150225892663, -0.017792019993066788, -0.01934143714606762, -0.02032623440027237, -0.007097112480551004, -0.024462386965751648, -0.026812773197889328, -0.018776819109916687, 0.02699660137295723, 0.0021468601189553738, 0.007077416405081749, 0.0009339169482700527, -0.016413303092122078, -0.009946461766958237, -0.00795060396194458, -0.019485874101519585, -0.03582039475440979, 0.003909648861736059, -0.016045644879341125, -0.014273008331656456, -0.0077536446042358875, -0.011765056289732456, 0.0122771505266428, -0.01167970709502697, 0.009237406775355339, -0.025184573605656624, 0.011449920013546944, -0.04188675060868263, 0.013360428623855114, 0.009099535644054413, 0.0476904958486557, -0.02138981781899929, -0.014535621739923954, -0.016439564526081085, -0.029885342344641685, 0.026944078505039215, 0.009742937050759792, -0.01355082355439663, 0.03876165673136711, -0.035295166075229645, -0.01074086595326662, 0.03206503018736839, 0.017411231994628906, 0.011561530642211437, 0.0023175585083663464, -0.03245894983410835, -0.000968384905718267, -0.005849701352417469, 0.05063175782561302, 0.022716011852025986, 0.024659346789121628, 0.017240533605217934, -0.029885342344641685, -0.0008325648377649486, -0.0056625897996127605, 0.010261597111821175, 0.0372910238802433, 0.007412247825413942, 0.0033877058885991573, 0.03043683059513569, -0.03348314017057419, 0.0457208976149559, 0.014312400482594967, 0.02216452546417713, 0.031172145158052444, -0.007451639510691166, -0.01393161155283451, 0.014062918722629547, 0.017004182562232018, 0.005193169228732586, 0.01934143714606762, 0.05349423736333847, 0.0009002697188407183, 0.031355973333120346, -0.01903943158686161, -0.027337998151779175, -0.027653133496642113, 0.025289617478847504, 0.015638595446944237, -0.02552596852183342, 0.01679409295320511, 0.006801672745496035, -0.029885342344641685, -0.046666305512189865, 0.03905053064227104, 0.029491422697901726, 0.028440972790122032, -0.011653445661067963, 0.008646528236567974, -0.03403462469577789, 0.07059033215045929, 0.004083629697561264, -0.006217359099537134, -0.02875610813498497, -0.003313845954835415, -0.022834187373518944, 0.032353904098272324, -0.005439368542283773, 0.023924030363559723, -0.025079527869820595, 0.03968080133199692, 0.02828340418636799, -0.007175896316766739, 0.049029819667339325, 0.0024685608223080635, -0.008127868175506592, -0.010714604519307613, 0.0015461331931874156, 0.005774199962615967, -0.019669702276587486, -0.01640017330646515, 0.007090547122061253, 0.004077064339071512, 0.004707335494458675, -0.002854273421689868, -0.003111962229013443, -0.011824144050478935, 0.03159232810139656, 0.017608191817998886, -0.009165188297629356, 0.013202860951423645, -0.02707538567483425, 0.005426238290965557, 0.010169683024287224, 0.009401540271937847, 0.0013352222740650177, -0.024501780048012733, 0.021915042772889137, -0.03119840659201145, 0.0218756515532732, 0.013301340863108635, -0.006125445012003183, -0.03516386076807976, -0.011686271987855434, 0.021836258471012115, 0.049423739314079285, -0.0013869241811335087, 0.0061451406218111515, 0.001125952578149736, 0.004818945657461882, -0.012185236439108849, -0.06638853251934052, -0.0021764039993286133, 0.0051078200340271, -0.020273711532354355, 0.015047716908156872, 0.029701514169573784, 0.013314471580088139, 0.021074682474136353, -0.047637972980737686, 0.007845559157431126, -0.024711869657039642, 0.044118959456682205, -0.04847833141684532, 0.03857782855629921], [0.0011287485249340534, -0.007745335344225168, 0.02926015667617321, 0.022437775507569313, 0.01049549039453268, 0.025742949917912483, -0.04709563031792641, -0.022001242265105247, 0.027389302849769592, 0.0275639146566391, -0.015927202999591827, 0.006226825527846813, -0.0008590337820351124, 0.03507227450609207, -0.009179656393826008, 0.032428134232759476, 0.017586028203368187, 0.04058505967259407, 0.007695445790886879, 0.007121717557311058, 0.04834286496043205, 0.02284936234354973, 0.045623891055583954, -0.01874595694243908, -0.0607653371989727, -0.05038833245635033, 0.029659271240234375, 0.001311936299316585, -0.015852369368076324, -0.010938259772956371, 0.08521116524934769, -0.0040285722352564335, -0.012759224511682987, -0.04188218340277672, 0.0077952248975634575, -0.01129372138530016, -0.00017860809748526663, -0.00545042147859931, 0.02065422758460045, 0.03636940196156502, -0.020591866225004196, -0.03811553120613098, -0.008219284936785698, -0.033800095319747925, -0.0688474252820015, 0.03569589555263519, -0.024919774383306503, -0.030831674113869667, 0.0021312145981937647, 0.02704007551074028, 0.016101816669106483, -0.004904755391180515, 0.011967229656875134, -0.020878730341792107, -0.0029076188802719116, 0.008942682296037674, 0.011181470938026905, 0.03666873648762703, 0.03943760320544243, -0.00992176216095686, 0.011144053190946579, -0.023410620167851448, -0.00648562703281641, 0.013856791891157627, 0.01631384715437889, -0.0027704229578375816, -0.016201594844460487, 0.020267585292458534, -0.03449854627251625, -0.01627643033862114, 0.06799930334091187, 0.007414817810058594, 0.004714551847428083, -0.01323317363858223, 0.0009330884204246104, 0.00825670175254345, -0.004829921294003725, 0.006417029071599245, -0.01078859157860279, 0.018035031855106354, -0.03664379194378853, 0.017161967232823372, -0.00572481332346797, 0.022288106381893158, -0.006847325712442398, 0.02292419783771038, -0.022974086925387383, -0.004780031740665436, -0.035197000950574875, -0.02704007551074028, -0.05358125641942024, -0.00703441072255373, -0.03619478642940521, 0.03477293998003006, 0.007071828003972769, -0.026067232713103294, -0.00441209739074111, -0.006716365925967693, -0.016488458961248398, 0.02763875015079975, -0.004299846012145281, 0.012603319250047207, -0.01214807853102684, 0.03394976258277893, 0.025568338111042976, -0.016999825835227966, -0.02783830650150776, 0.045673780143260956, -0.048991430550813675, 0.008375189267098904, -0.0031040585599839687, -0.01737399771809578, 0.01683768630027771, 0.0856102779507637, -0.04240602254867554, -0.014842107892036438, -0.036020174622535706, 0.03447360172867775, 0.020791424438357353, 0.035172056406736374, -0.03250297158956528, -0.02728952281177044, 0.04218152165412903, -0.02534383535385132, 0.020579393953084946, -0.031056176871061325, 0.028910929337143898, -0.037367191165685654, -0.020092971622943878, -0.02018027752637863, 0.07004477083683014, -0.03911332041025162, 0.06590394675731659, -0.06380859017372131, -0.05298258364200592, -0.007140425965189934, -0.007346219848841429, -0.013420259580016136, -0.012035827152431011, -0.048417702317237854, 0.03916320949792862, 0.007764044217765331, 0.05552694573998451, 0.03148023784160614, -0.03636940196156502, 0.0005628152284771204, 0.03482282906770706, 0.03809058666229248, -0.009185893461108208, 0.008736887946724892, 0.0262168999761343, 0.006654004100710154, -0.053132254630327225, 0.022213272750377655, 0.03257780522108078, -0.060266442596912384, 0.0261670108884573, 0.0966857299208641, 0.011393500491976738, -0.020479615777730942, 0.0025162985548377037, 0.01596461981534958, -0.030232999473810196, -0.047270242124795914, -0.008605928160250187, -0.005063778255134821, -0.023123756051063538, -0.02316117286682129, -0.03497249633073807, -0.046796295791864395, -0.03936276584863663, -0.05373092740774155, 0.003227223176509142, -0.02150234766304493, -0.015553032979369164, -0.013033616356551647, 0.005840182304382324, 0.007240205071866512, -0.014555243775248528, 0.014305796474218369, 0.03290208429098129, -0.00840013474225998, -0.11773907393217087, -0.046746402978897095, -0.02432110160589218, 0.03360053896903992, -0.008050908334553242, 0.012921364977955818, -0.04639717936515808, -0.02266227826476097, 0.03836498036980629, 0.041782405227422714, -0.001370400539599359, 0.037142686545848846, -0.005812119692564011, 0.0234979260712862, -0.02148987539112568, 0.006647767964750528, 0.010420656763017178, -0.041557904332876205, 0.02177673950791359, -0.03394976258277893, 0.028037864714860916, 0.009192129597067833, -0.02676568366587162, 0.01120017934590578, -0.0070905364118516445, 0.031629905104637146, 0.031106065958738327, -0.03414932265877724, 0.00532569782808423, -0.03509721904993057, 0.010676340200006962, 0.028486870229244232, -0.008624636568129063, 0.0004969455767422915, 0.00300583872012794, 0.006890978664159775, 0.04390270635485649, 0.0018708539428189397, 0.0032396954484283924, 0.00642326520755887, 0.01686263084411621, -0.007009466178715229, -0.028337201103568077, -0.014891997911036015, -0.003439253196120262, -0.041483066976070404, 0.02509438805282116, -0.03210385516285896, 0.011923575773835182, -0.0069969939067959785, -0.029210267588496208, -0.05278302729129791, 0.010320877656340599, -0.05742274597287178, 0.007115481421351433, -0.026541180908679962, 0.0060958657413721085, 0.00523527292534709, 0.026965241879224777, 0.03671862557530403, -0.013969043269753456, 0.007221496198326349, 0.034897662699222565, -0.016475986689329147, 0.009990360587835312, -0.03701796382665634, 0.03704290837049484, 0.015004249289631844, 0.0013345425250008702, -0.003551504574716091, 0.0496150478720665, -0.02457054890692234, -0.029908718541264534, -0.006741310469806194, 0.016463514417409897, -0.04584839567542076, 0.03726741299033165, 0.006629059091210365, -0.03689324110746384, 0.005702986381947994, -0.009765857830643654, -0.02868642844259739, -0.020741533488035202, -0.05467882379889488, 0.0028546112589538097, -0.008662054315209389, -0.045374445617198944, 0.0064980993047356606, -0.05101195350289345, 0.00882419478148222, 0.015627866610884666, -0.07029422372579575, -0.0441521555185318, 0.0033893638756126165, 0.004614773206412792, -0.02561822719871998, -0.011013093404471874, 0.014006460085511208, -0.001598021131940186, 0.027114911004900932, 0.021639544516801834, -0.05572650209069252, -0.0385894812643528, 0.04165768250823021, -0.007720390800386667, 0.03731730207800865, -0.01157435029745102, -0.023011503741145134, 0.051186565309762955, 0.026865463703870773, 0.0026114003267139196, -0.03389987349510193, 0.03721752017736435, -0.014704911969602108, 0.006629059091210365, -0.0006485627382062376, -0.027938086539506912, 0.0032209870405495167, 0.01904529333114624, 0.027414247393608093, -0.0009034665417857468, -0.06660240143537521, -0.02427121251821518, 0.04120867699384689, 0.004022336099296808, -0.014567716047167778, -0.018010087311267853, 0.01323317363858223, -0.0022824418265372515, 0.008793014101684093, 0.003470434108749032, -0.05068767070770264, -0.06794941425323486, 0.034673161804676056, 0.00908611435443163, 0.027239633724093437, -0.00676001887768507, -0.0030915862880647182, 0.06769996881484985, -0.02235046960413456, 0.0579216405749321, -0.036519069224596024, 0.023098809644579887, 0.023260951042175293, -0.0034298989921808243, 0.037367191165685654, -0.014368158765137196, -0.0636090338230133, -0.04569872468709946, -0.006853561848402023, 0.04205679893493652, -0.03921309858560562, -0.0038321325555443764, 0.000873065204359591, 0.0010032454738393426, 0.05637506768107414, -0.05208457633852959, 0.04258063808083534, 0.016663072630763054, -0.024607965722680092, 0.021040871739387512, -0.006803672295063734, -0.05328192189335823, 0.03038266859948635, -0.010090138763189316, -0.006342194974422455, -0.007782752625644207, 0.01875842921435833, -0.010189917869865894, 0.02321106195449829, -0.035122163593769073, -0.030208054929971695, -0.05467882379889488, 0.007240205071866512, 0.029883773997426033, -0.029185321182012558, -0.01366970594972372, -0.018084920942783356, -0.012060771696269512, -0.0005117565160617232, 0.01574011892080307, 0.032702527940273285, 0.03230341151356697, -0.019431937485933304, -0.02180168591439724, 0.026142066344618797, 0.00044900496141053736, -0.03611995279788971, 0.04517488554120064, 0.039013542234897614, 0.03843981400132179, -0.0056156800128519535, -0.018970459699630737, -0.020329946652054787, -0.009628661908209324, -0.009516410529613495, 0.03287713974714279, -0.008980099111795425, 0.010246044024825096, 0.017249273136258125, 0.01227280218154192, 0.044576212763786316, 0.01905776560306549, 0.028561703860759735, -0.035720840096473694, -0.02511933259665966, -0.006909687537699938, -0.006392084527760744, 0.018683595582842827, 0.003539032069966197, -0.00601167744025588, 0.019918357953429222, -0.02564317174255848, 0.04248085618019104, 0.03646918013691902, 0.03641929104924202, 0.05193490535020828, -0.03829014301300049, 0.039562325924634933, -0.028486870229244232, 0.0007982310489751399, 0.022525081411004066, 0.021427514031529427, -0.007807697169482708, -0.020055554807186127, -0.0386643148958683, 0.006691420916467905, 0.011144053190946579, -0.011917339637875557, 0.007489651907235384, 0.03761663660407066, -0.019157545641064644, 0.03138045594096184, -0.026715794578194618, -0.029958607628941536, 0.007620611693710089, 0.004237484186887741, -0.001010261126793921, 0.03809058666229248, -0.018346840515732765, -0.028786206617951393, -0.03888881951570511, -0.024782579392194748, 0.03621973469853401, 0.020005665719509125, -0.046721458435058594, 0.024483243003487587, -0.1021735742688179, -0.020616810768842697, 0.04335392266511917, 0.03005838766694069, -0.0017804293893277645, -0.014979303814470768, -0.026142066344618797, -0.00036364723928272724, -0.0014514708891510963, -0.0009003484738059342, -0.022724639624357224, 0.02509438805282116, -0.0045524113811552525, 0.029734106734395027, 0.020778952166438103, 0.0385894812643528, -0.02182663045823574, -0.012603319250047207, -0.0083003556355834, 0.026965241879224777, -0.015166389755904675, -0.013694651424884796, 0.020467141643166542, 0.002528771059587598, -0.03649412468075752, -0.04205679893493652, -0.006064685061573982, 0.05078744888305664, -0.09139744937419891, 0.013694651424884796, -0.04362831637263298, 0.0015800921246409416, 0.057771969586610794, 0.047045741230249405, 0.011811324395239353, -0.0221010223031044, -0.0030853499192744493, 0.002025199355557561, -0.00607403926551342, 0.0024243148509413004, -0.05353136733174324, 0.009503938257694244, -0.029983552172780037, -0.04741991311311722, -0.022512609139084816, 0.0386393703520298, 0.0032178687397390604, 0.021739322692155838, 0.014143656007945538, 0.000873065204359591, -0.05567661300301552, -0.021652016788721085, 0.060066886246204376, -0.05567661300301552, -0.03948749229311943, 0.05607572942972183, 0.044301822781562805, 0.02459549345076084, -0.01569022797048092, -0.0552775003015995, -0.008456259965896606, -0.05358125641942024, -0.012204203754663467, 0.006323486566543579, -0.01295878179371357, 0.003607630031183362, -0.02317364513874054, -0.06091500446200371, -0.027738528326153755, 0.023934459313750267, -0.025306418538093567, 0.05662451311945915, -0.02152729220688343, -0.004951526876538992, -0.010252280160784721, 0.013694651424884796, -0.01736152544617653, 0.028561703860759735, 0.029035653918981552, -0.049540214240550995, -0.004895401187241077, 0.010015305131673813, -0.028312256559729576, 0.0001040662536979653, 0.013058560900390148, -0.005980496760457754, -0.012590846978127956, 0.03222857788205147, -0.0030432557687163353, -0.04579850658774376, 0.012578374706208706, 0.022425303235650063, -0.0165134035050869, 0.029858829453587532, 0.000145575831993483, -0.023597704246640205, 0.041508015245199203, 0.014605133794248104, -0.052832916378974915, -0.030557282269001007, -0.011511988006532192, 0.003797833574935794, -0.0014904469717293978, -0.06256135553121567, 0.004932818468660116, -0.013332952745258808, 0.0055720265954732895, -0.017249273136258125, -0.018646178767085075, -0.010177445597946644, -0.01020862627774477, 0.02319858968257904, 0.0012581492774188519, -0.0130959777161479, 0.028287312015891075, -0.018646178767085075, -0.021602127701044083, 0.01852145418524742, 0.015440781600773335, -0.004402743186801672, 0.012540957890450954, 0.06011677533388138, -0.017498720437288284, 0.027164800092577934, -0.041807349771261215, -0.02176426723599434, 0.01216055080294609, 0.022138439118862152, -0.05058789253234863, -0.002215402899309993, 0.009871873073279858, -0.013283063657581806, 0.0044838134199380875, 0.013632289133965969, 0.0031071766279637814, -0.015827424824237823, 0.037067852914333344, 0.00028511034906841815, 0.025718005374073982, 0.013569927774369717, 0.021589655429124832, 0.0030354605987668037, -0.010826008394360542, 0.021352680400013924, -0.03202902153134346, 0.04245591163635254, -0.009067405946552753, 0.002162395277991891, -0.05986732617020607, 0.0032147506717592478, 0.03479788452386856, -0.0130959777161479, 0.010077666491270065, -0.014455464668571949, -0.027963031083345413, -0.019743746146559715, 0.010295933112502098, -0.0077266269363462925, -0.03093145228922367, -0.023622648790478706, -0.028337201103568077, -0.0018770901951938868, -0.014567716047167778, -0.0039599742740392685, 0.018396731466054916, -0.011705310083925724, 0.05318214371800423, 0.03998638689517975, 0.011430918239057064, -0.04522477835416794, 0.03125573322176933, -0.026117121800780296, -0.04300469532608986, -0.031006285920739174, 0.03330120071768761, -0.01817222870886326, 0.00979703851044178, 0.031280677765607834, -0.01106298342347145, -0.002416519680991769, 0.021078288555145264, -0.019456882029771805, 0.01602698303759098, -0.005085604730993509, -0.01742388680577278, -0.006903451401740313, 0.026042288169264793, 0.0036637557204812765, 0.011399736627936363, -0.0022419067099690437, -0.024196378886699677, -0.009129767306149006, -0.013445204123854637, -0.014867053367197514, -0.004792504478245974, 0.011275012977421284, 0.0023791026324033737, -0.02097850851714611, -0.025792840868234634, 0.014916942454874516, 0.02263733372092247, -0.034922607243061066, -0.00695957662537694, -0.0008652699762023985, -0.032178688794374466, -0.009547591209411621, 0.009871873073279858, -0.01988094113767147, 0.012796641327440739, 0.0020984746515750885, -0.0029325636569410563, 0.012154314666986465, 0.005129258148372173, 0.040160998702049255, -0.021589655429124832, 0.0002720533520914614, 0.030033443123102188, -0.027514025568962097, -0.01051419973373413, -0.002718974370509386, -9.21785322134383e-05, 0.031081121414899826, 0.011767671443521976, -0.018097393214702606, 0.03567094728350639, 0.004299846012145281, 0.01658823899924755, -0.01254719402641058, -0.007464707363396883, -0.00641079293563962, 0.039063431322574615, -0.050862282514572144, -0.026291733607649803, -0.0074522350914776325, -0.0008847580174915493, 0.0010858748573809862, -0.003651283448562026, 0.04522477835416794, -0.03811553120613098, -0.002690911525860429, 0.019269796088337898, -0.05597595125436783, 0.03138045594096184, 0.03836498036980629, -0.04307953268289566, -0.006435737479478121, 0.0028171942103654146, -0.01656329445540905, 0.03362548351287842, -0.04492544010281563, 0.04367820546030998, -0.0007627627346664667, -0.024445826187729836, -0.029759051278233528, 0.0003435745311435312, 0.00647315476089716, -0.0029060598462820053, 0.04387776181101799, -0.03285219520330429, -0.015153917483985424, 0.029659271240234375, 0.019818579778075218, 0.008144451305270195, -0.018571343272924423, 0.04392765089869499, -0.0024508186616003513, 0.02816258929669857, 0.03474799543619156, -0.004221893846988678, -0.03669368103146553, -0.10142523050308228, -0.023086337372660637, 0.014991776086390018, -0.029883773997426033, -0.04891659691929817, -0.03150518238544464, -0.008007255382835865, -0.010713757015764713, -0.013607344590127468, 0.062461577355861664, -0.01078859157860279, -0.0234480369836092, -0.018084920942783356, -0.04188218340277672, 0.012085716240108013, 0.004555529449135065, -0.006479390896856785, 0.04165768250823021, -0.005986732896417379, -0.004851747769862413, 0.005238390993326902, -0.037915974855422974, 0.02432110160589218, -0.045075107365846634, -0.0002827717689797282, 0.006385848391801119, -0.006978285498917103, -0.01900787651538849, 0.039836715906858444, -0.02430862933397293, -0.011755199171602726, 0.023335784673690796, 0.0031929241959005594, 0.019943302497267723, 0.005927489139139652, -0.006491863168776035, -0.0030557282734662294, -0.028287312015891075, -0.02018027752637863, -0.006382730323821306, 0.007171607110649347, -0.028761262074112892, -0.013195756822824478, -0.00579964742064476, -0.01907023787498474, 0.03604511916637421, 0.010819772258400917, -0.015016721561551094, 0.07114233821630478, 0.007951129227876663, -0.010782355442643166, -0.03345086798071861, 0.009772093966603279, -0.033475812524557114, -0.031031230464577675, 0.04120867699384689, -0.025992397218942642, 0.014941886998713017, 0.031280677765607834, 0.009940470568835735, 0.0015652811853215098, -0.028536759316921234, 0.004321672488003969, 0.002439905423671007, -0.02096603624522686, 0.010626450181007385, -0.016463514417409897, -0.0275888592004776, -0.0024102835450321436, 0.03646918013691902, 0.0015457931440323591, -0.02868642844259739, 0.002561511006206274, 0.00428737374022603, 0.004661544691771269, 0.004405861254781485, -0.009198365733027458, -0.0071092452853918076, -0.00023600042914040387, -0.0009401041315868497, -0.03724246472120285, 0.014829635620117188, 0.013757012784481049, -0.01186121441423893, 0.009578772820532322, 0.014792218804359436, -0.024957191199064255, -0.00926072709262371, 0.00798230990767479, -0.006080275401473045, -0.021439986303448677, -0.036294568330049515, 6.47003689664416e-05, -0.004421451594680548, -0.006155109498649836, -0.03494755178689957, -0.014006460085511208, 0.0012612673453986645, -0.059418320655822754, -0.00029816734604537487, 0.01819717325270176, -0.017062189057469368, 0.0020127270836383104, -0.022288106381893158, -0.011487043462693691, 0.08396392315626144, -0.0033145295456051826, -0.07139179110527039, 0.0005982834845781326, 0.0003689090081024915, -0.024171432480216026, 0.014181072823703289, -0.005603207740932703, 0.0359453409910202, 0.045973118394613266, -0.04255569353699684, 0.05153579264879227, 0.005082486663013697, -0.03153012692928314, 0.0073649282567203045, -0.010027777403593063, 0.017473775893449783, 0.0387142039835453, 0.008350244723260403, 0.001364943920634687, 0.007938656955957413, 0.023098809644579887, 0.023510398343205452, 0.022550025954842567, -0.011243832297623158, -0.03150518238544464, -0.009547591209411621, -0.010919551365077496, 0.041034065186977386, 0.014230962842702866, 0.009254490956664085, 0.004437041934579611, -0.0038071877788752317, 0.00909858662635088, 0.024458298459649086, 0.023248478770256042, 0.029035653918981552, -0.006672712508589029, -0.01817222870886326, -0.013158340007066727, -0.004368443973362446, 0.01989341340959072, -0.004162650089710951, 0.01144962664693594, -0.011867450550198555, 0.030158165842294693, -0.043777983635663986, -0.007421053946018219, 0.0065604611299932, -0.019406991079449654, -0.002269969554618001, -0.03220363333821297, 0.06550483405590057, 0.014717384241521358, 0.02233799733221531, -0.007184079382568598, 0.055626723915338516, 0.000779912224970758, -0.014355686493217945, -0.014729856513440609, 0.022225745022296906, -0.029958607628941536, 0.03332614526152611, 0.009466521441936493, 0.00800101924687624, 0.0012293069157749414, 0.025817785412073135, -0.020267585292458534, 0.034673161804676056, -0.007820169441401958, -0.0746346041560173, -0.00854980293661356, -0.027963031083345413, 0.025593282654881477, 0.03509721904993057, -0.0021982535254210234, 0.004281137604266405, 0.027938086539506912, 0.057771969586610794, 0.021165594458580017, -0.008499912917613983, -0.014081294648349285, -0.03943760320544243, 0.032378245145082474, 0.028337201103568077, 0.0051853833720088005, -0.034024596214294434, 0.0071341898292303085, 0.022762056440114975, 0.010963204316794872, 0.017985142767429352, 0.011193943209946156, -0.018558871001005173, 0.007489651907235384, -2.174136898247525e-05, -0.007240205071866512, -0.024495715275406837, -0.007788988761603832, -0.029060598462820053, -0.0029107369482517242, -0.030682004988193512, -0.0027688639238476753, 0.01762344501912594, 0.00949770212173462, 0.014442992396652699, 0.008817958645522594, 0.022225745022296906, -0.0059337252750992775, 0.011250068433582783, -0.02569306083023548, 0.052034683525562286, -0.0037541803903877735, -0.023934459313750267, 0.007483415771275759, 0.01406882144510746, -0.02044219709932804, 0.025817785412073135, -0.025792840868234634, 0.0358206182718277, -0.008269174955785275, 0.011530696414411068, -0.013470148667693138, -0.01240999810397625, 0.055876173079013824, 0.02262486144900322, -0.03262769430875778, -0.028811151161789894, 0.03674357384443283, 0.010096374899148941, 0.027264578267931938, -0.0007927743718028069, 0.03135551139712334, 0.006915923673659563, 0.017610972747206688, -0.0034766702447086573, -0.004851747769862413, 0.021976297721266747, -0.022687222808599472, 0.018870679661631584, -0.00709677254781127, 0.00572481332346797, -0.029858829453587532, -0.012578374706208706, 0.0013516920153051615, 0.0165508221834898, -0.012266566045582294, 0.02731446735560894, -0.030706949532032013, 0.028287312015891075, 0.01569022797048092, -0.014293324202299118, 0.032153744250535965, 0.033276256173849106, 6.869541721243877e-06, 0.04008616507053375, 0.030033443123102188, 0.02786325104534626, 0.008649581111967564, 0.01791030913591385, -0.025431141257286072, 0.0040722256526350975, 0.012528485618531704, 0.020504560321569443, -0.014118711464107037, -0.053082361817359924, 0.03005838766694069, -0.016101816669106483, -0.020230168476700783, 0.05053800344467163, 0.031330566853284836, -0.01257213857024908, 0.002639463171362877, -0.003638810943812132, 0.0038103058468550444, 0.02122795581817627, -0.0193196851760149, -4.550462472252548e-05, 0.0331515334546566, 0.0330766998231411, -0.010327113792300224, -0.008799250237643719, 0.022163383662700653, -0.003953738138079643, -5.787954432889819e-05, 0.028861040249466896, 0.002982452977448702, 0.021327735856175423, 0.028362145647406578, -0.019269796088337898, 0.030133221298456192, 0.004309200216084719, 0.04634729027748108, 0.0039163208566606045, -0.01051419973373413, 0.007464707363396883, 0.002422755816951394, 0.027439191937446594, -0.009753385558724403, 0.02425874024629593, 0.02534383535385132, 0.008998807519674301, 0.017199384048581123, 0.035995230078697205, 0.004393388982862234, 0.005805883556604385, -0.029035653918981552, 0.01353251002728939, -0.05417993292212486, -0.01933215744793415, 0.022188328206539154, -0.009104822762310505, 0.001158370403572917, -0.0006142636993899941, -0.04796869680285454, -0.047619469463825226, 0.010034013539552689, 0.0017180675640702248, 0.01656329445540905, 0.009341797791421413, 0.014655022881925106, 0.03205396607518196, 0.025231583043932915, -0.03816542029380798, -0.0096473703160882, 0.013008670881390572, 0.01600203849375248, 0.016064399853348732, 0.006797436159104109, 0.0011778584448620677, 0.013694651424884796, 0.020604338496923447, 0.0110505111515522, 0.004271783400326967, -0.015004249289631844, 0.014679967425763607, 0.022762056440114975, -0.010034013539552689, -0.001591784879565239, 0.003004279686138034, 0.03417426720261574, -0.004992062225937843, -0.012634500861167908, 0.0024570547975599766, 0.0030666415113955736, -0.008331536315381527, 0.00785758625715971, -0.012247857637703419, 0.0579216405749321, -0.04445149004459381, 0.061713237315416336, 0.023098809644579887, 0.019157545641064644, -0.018059976398944855, 0.011680364608764648, 0.03424910083413124, -0.014842107892036438, 0.017598500475287437, -0.023884568363428116, -0.00634843111038208, 0.004711433779448271, 0.01146209891885519, -0.001978428103029728, -0.011624239385128021, -0.015490670688450336, 0.025593282654881477, -0.026566127315163612, 0.008462496101856232, -0.02040478028357029, -0.007539541460573673, 0.0011872127652168274, -0.004109642468392849, -0.02978399582207203, -0.016139233484864235, -0.03474799543619156, 0.004134587477892637, -0.014891997911036015, -0.008368953131139278, -0.014916942454874516, -0.014567716047167778, -0.012067007832229137, -0.03384998440742493, -0.023410620167851448, -0.03290208429098129, 0.0031118537299335003, 0.006342194974422455, -0.0035140872932970524, -0.018833262845873833, -0.018908098340034485, 0.023310840129852295, 0.008462496101856232, 0.0165258776396513, -0.0037479440215975046, 0.01686263084411621, -0.0072464412078261375, 0.03504732996225357, -0.00279380870051682, 0.05462893471121788, -0.004982707556337118, -0.001311936299316585, -0.03290208429098129, 0.00021436868701130152, -0.04390270635485649, 0.022275634109973907, 0.0077952248975634575, 0.005706104449927807, -0.011680364608764648, -0.0089738629758358, 0.01212313398718834, -0.01848403736948967, 0.006965812761336565, -0.018546398729085922, 0.007283858023583889, -0.003079113783314824, 0.019955776631832123, -0.0011677247239276767, -0.010189917869865894, -1.6771913578850217e-05, -0.00800101924687624, -0.025256529450416565, 0.01171154621988535, 0.01844662055373192, 0.0017165085300803185, -0.01188615895807743, 0.0070406473241746426, 0.031131010502576828, -0.022288106381893158, -0.009023752063512802, -0.02846192568540573, -0.017885364592075348, 0.034323934465646744, -0.0029808939434587955, -0.005151084624230862, 0.031305622309446335, -0.011193943209946156, -0.041034065186977386, -0.013619816862046719, 0.00202987645752728, 0.03282725065946579, 0.0057965293526649475, -0.011954756453633308, -0.009204601868987083, -0.0021826629526913166, -0.0032241051085293293, 0.06864786893129349, 0.011225123889744282, 0.0023557168897241354, 0.03332614526152611, 0.022225745022296906, -0.00912353117018938, 0.000547614530660212, -0.008294119499623775, -0.0262168999761343, 0.014206018298864365, -0.05378081649541855, 0.016126761212944984, 0.024732690304517746, -0.021988769993185997, -0.020217696204781532, -0.033800095319747925, 0.023260951042175293, 0.03153012692928314, -0.004829921294003725, 0.009185893461108208, 0.01872101239860058, -0.041034065186977386, -0.001978428103029728, -0.02704007551074028, 0.004889165051281452, -0.003688700497150421, 0.002798485802486539, 0.004854865837842226, 0.00868699885904789, 0.004923464264720678, -0.010626450181007385, -0.014929414726793766, -0.0031929241959005594, 0.014131183736026287, 0.010352058336138725, 0.009341797791421413, 0.020354891195893288, -0.0010827567894011736, 0.019668910652399063, 0.00857474748045206, -0.01008390262722969, -0.0010515758767724037, -0.014455464668571949, 0.0040971701964735985, -0.0024695273023098707, 0.015615394338965416, -0.0013532510492950678, -0.012640736997127533, 0.0017851064912974834, 0.013757012784481049, 0.011511988006532192, 0.010140028782188892, -0.010732465423643589, -0.006984521634876728, -0.02319858968257904, -0.0017523665446788073, 0.0076330844312906265, 0.018010087311267853, -0.005715459119528532, 0.00908611435443163, -0.020068027079105377, 0.029858829453587532, -0.02202618680894375, -0.0019441291224211454, 0.01143715437501669, -0.012042063288390636, 0.023136228322982788, -0.02100345306098461, -0.016426097601652145, -0.0386892594397068, -0.03287713974714279, -0.022425303235650063, 0.014542771503329277, 0.038190364837646484, 0.010246044024825096, 0.024670327082276344, -0.029659271240234375, -0.008244229480624199, 0.0020906792487949133, 0.010102611035108566, -0.012067007832229137, -0.01988094113767147, 0.005260217934846878, 0.049515269696712494, -0.04310447722673416, -0.023360729217529297, 0.02455807663500309, 0.011206415481865406, 0.013470148667693138, 0.03414932265877724, 0.01353251002728939, 0.01650093123316765, -0.001708713243715465, -0.009042460471391678, -0.018970459699630737, -0.00013826780195813626, -0.02041725255548954, -0.015914730727672577, 0.013844319619238377, -0.002371307462453842, 0.04864220321178436, -0.008980099111795425, -0.029759051278233528, 0.023522870615124702, -0.0037167633417993784, 0.022699695080518723, -0.0017165085300803185, -0.04365326091647148, -0.02232552319765091, 0.019506771117448807, 0.018022559583187103, -0.017473775893449783, 0.028536759316921234, -0.009073642082512379, -0.0037261175457388163, -0.0358954519033432, 0.003152388846501708, -0.025019554421305656, -0.014667495153844357, 0.007321275305002928, -0.021876519545912743, -0.016388680785894394, 0.02202618680894375, 0.021053344011306763, 0.01928226836025715, 0.02783830650150776, -0.0019129482097923756, -0.013320480473339558, -0.005768466275185347, -0.034598324447870255, 0.018010087311267853, -0.001888003433123231, -0.018683595582842827, 0.028935875743627548, 0.02015533298254013, -0.03454843536019325, -0.009903053753077984, 0.026690850034356117, 0.037067852914333344, 0.0014265261124819517, -0.00025938611361198127, 0.007470943499356508, 0.016139233484864235, 0.0043871523812413216, 0.004421451594680548, 0.01933215744793415, -0.020018137991428375, 0.022487664595246315, -0.0015800921246409416, -0.016413625329732895, -0.029584437608718872, 0.019194962456822395, -0.020092971622943878, 0.056424956768751144, -0.023660067468881607, 0.006654004100710154, -0.010557852685451508, 1.0663624379958492e-05, 0.026840519160032272, -0.015041666105389595, 0.007757807616144419, -0.004090934060513973, 0.0008933327626436949, -0.024844940751791, 0.049515269696712494, -0.013495093211531639, -0.005805883556604385, -0.004730142652988434, -0.005428594537079334, 0.0019410110544413328, -0.042879972606897354, -0.04200690612196922, 0.023073865100741386, -0.0015372183406725526, -0.007576958741992712, -0.014854580163955688, 0.009323089383542538, 0.0027174153365194798, -0.03784114122390747, -0.029983552172780037, -0.03881398215889931, 0.010545380413532257, -0.00828788336366415, -0.036544013768434525, -0.032378245145082474, -0.0275639146566391, 0.011212651617825031, -0.023784790188074112, 0.047918807715177536, -0.02791314199566841, -0.021864047273993492, -0.011193943209946156, -0.0030572873074561357, -0.015029193833470345, 0.049540214240550995, -0.0038383686915040016, -0.004458868410438299, 0.030806729570031166, 0.0192947406321764, 0.00978456623852253, 0.0004369223606772721, -0.01762344501912594, 0.012441178783774376, -0.010582797229290009, 0.0009923321194946766, 0.0040722256526350975, 0.015428309328854084, 0.006220589391887188, 0.03549633547663689, -0.029110487550497055, -0.004355971701443195, -0.0030931453220546246, 0.009834455326199532, 0.0386393703520298, 0.002528771059587598, -0.0023182998411357403, -0.0021733087487518787, -0.008506149053573608, 0.006909687537699938, -0.026092177256941795, -0.0038695496041327715, -0.013195756822824478, 0.025593282654881477, -0.015141445212066174, -0.011081691831350327, 0.004586710128933191, 0.01419354509562254, 0.0073150391690433025, 0.03477293998003006, 0.0013181725516915321, 0.016338791698217392, 0.01075740996748209, -0.01605192758142948, 0.024495715275406837, -0.008886556141078472, -0.00082005764124915, 0.012933837249875069, 0.004109642468392849, -0.01574011892080307, -0.004876692779362202, -0.014879525639116764, 0.0058651273138821125, -0.019219907000660896, -0.005681159906089306, -0.01983105204999447, 0.012796641327440739, 0.023236006498336792, -0.014605133794248104, -0.03484777361154556, -0.022188328206539154, -0.01595214754343033, -0.029110487550497055, 0.006167581770569086, -0.023310840129852295, 0.039911553263664246, -0.00642326520755887, -0.0009829779155552387, -0.017299162223935127, 0.005163556896150112, -0.019194962456822395, -0.02152729220688343, -0.006516808178275824, 0.025306418538093567, -0.003178892657160759, 0.022974086925387383, 0.021415041759610176, -0.02072906121611595, -0.024944718927145004, -0.025718005374073982, 0.017461303621530533, 0.011536932550370693, -0.02457054890692234, -0.007651792839169502, 0.011368555948138237, -0.035720840096473694, 0.030532337725162506, 0.035221945494413376, -0.029135432094335556, 0.04163273796439171, 0.03167979419231415, -0.006878506392240524, 0.001708713243715465, -0.02294914238154888, -0.0066352952271699905, 0.027738528326153755, -0.001947247190400958, -0.012896420434117317, 0.01984352432191372, 0.001825641724281013, -0.011480807326734066, 0.015440781600773335, 0.005369350779801607, 0.0019378928700461984, -0.0003328561142552644, 0.023909512907266617, 0.0441022627055645, 0.014467937871813774, 0.027189744636416435, 0.012908892706036568, -0.006504335440695286, -0.010564088821411133, -0.0058620092459023, 0.0012043622555211186, 0.012603319250047207, -0.017161967232823372, -0.012746751308441162, 0.0075894310139119625, 0.029135432094335556, 0.008556039072573185, -0.01764838956296444, -0.020068027079105377, -0.010507963597774506, -0.02561822719871998, -0.026341624557971954, 0.026616016402840614, -0.008237993344664574, 0.014418047852814198, -0.014580188319087029, 0.021876519545912743, 0.0330517552793026, 0.014405575580894947, 0.00021612261480186135, 0.02094109170138836, -0.032677583396434784, 0.08112023025751114, -0.01763591729104519, -0.009316853247582912, 0.02238788641989231, 0.0007997900829650462, 0.02591756358742714, 0.006364021450281143, -0.004103406332433224, 0.04609784111380577, -0.021689433604478836, 0.0018802082631736994, 0.0033207659143954515, -0.003835250623524189, 0.018122339621186256, 0.018022559583187103, -0.010570324957370758, -0.005026360973715782, 0.002307386603206396, 0.005010770633816719, 0.018583815544843674, -0.025318890810012817, 0.020217696204781532, 0.02120301127433777, 0.004652190022170544, -0.020055554807186127, 0.002433669287711382, 0.05056294798851013, 0.028037864714860916, 0.0038227783516049385, 0.020866258069872856, 0.031330566853284836, 0.009560063481330872, 0.008381425403058529, -0.014829635620117188, 0.00647315476089716, -0.016924992203712463, -0.0024523776955902576, 0.03252791613340378, -0.011399736627936363, 0.009759621694684029, 0.028062809258699417, -0.02589261904358864, 0.008088325150310993, -0.022038659080863, -0.002322976943105459, 0.024221323430538177, 0.004745732992887497, -0.0007023497601039708, -0.0089489184319973, 0.0009821982821449637, -0.005618798080831766, -0.03883892670273781, -0.021178066730499268, -0.020853785797953606, -0.03414932265877724, 0.029958607628941536, 0.02811269834637642, -0.029684215784072876, 0.018945515155792236, -0.03966210409998894, 0.015253695659339428, -0.022861836478114128, 0.021714378148317337, -0.01990588568150997, 0.036519069224596024], [0.010703965090215206, -0.009379151277244091, 0.02211976982653141, 0.03097822330892086, -0.016306409612298012, 0.04998698830604553, -0.03949393704533577, -0.025059405714273453, 0.04389680176973343, 0.028869066387414932, -0.025613058358430862, -0.00870685838162899, -0.0015835145022720098, 0.021737484261393547, -0.012951533310115337, 0.015976853668689728, 0.004903786815702915, 0.047271449118852615, 0.013511777855455875, 0.02741902321577072, 0.04389680176973343, 0.011494898237287998, 0.05441621318459511, 0.014592720195651054, -0.04740327224135399, -0.0327446423470974, 0.027840854600071907, 0.025547146797180176, 0.021632026880979538, 0.00020978270913474262, 0.09164281189441681, -0.002928101224824786, -0.022647058591246605, -0.024940764531493187, 0.016675511375069618, -0.008482759818434715, -0.014711360447108746, 0.013149267062544823, 0.021737484261393547, 0.030398204922676086, -0.017730088904500008, -0.03374648839235306, -0.04400225728750229, -0.02668081782758236, -0.057579949498176575, 0.04445045441389084, -0.007658871356397867, -0.026206258684396744, 0.003961257636547089, 0.022541601210832596, 0.013445867225527763, 0.008324573747813702, 0.019048310816287994, -0.01937786675989628, -0.02573169767856598, -0.0032527134753763676, -0.007929107174277306, 0.0504615493118763, 0.00506856432184577, -0.026852186769247055, 0.013749058358371258, -0.015330924652516842, -0.01028213370591402, 0.017281893640756607, -0.010288724675774574, 0.0018109078519046307, -0.01338654663413763, 0.019311955198645592, -0.027840854600071907, -0.0016049356199800968, 0.09570293873548508, 0.04584776982665062, -0.010842378251254559, 0.00943847093731165, 0.015568205155432224, -0.015436382964253426, 0.027049921452999115, 0.014922276139259338, -0.010829195380210876, -0.0034109000116586685, -0.04049578681588173, 0.03366739675402641, 0.024097103625535965, 0.02186930738389492, -0.028948159888386726, 0.04060124605894089, -0.0279199481010437, 0.016596417874097824, -0.0454523041844368, -0.027392657473683357, -0.05280798301100731, -0.0011723939096555114, -0.03559200093150139, 0.012694479897618294, 0.028262684121727943, -0.02447938732802868, 0.013221769593656063, -0.014210435561835766, -0.013432684354484081, 0.04542594030499458, -0.011870590969920158, -0.0014632267411798239, -0.03147914633154869, -0.0017812477890402079, 0.04764055088162422, -0.023543449118733406, -0.020590631291270256, 0.0667547732591629, -0.038412995636463165, -0.04408135265111923, -0.013089947402477264, -0.016490960493683815, -0.014803635887801647, 0.0823097974061966, -0.01811237446963787, -0.005546420346945524, -0.06090186908841133, 0.030609121546149254, 0.02101246267557144, 0.019799698144197464, -0.025164863094687462, -0.021381564438343048, 0.046322330832481384, -0.03738478198647499, 0.028869066387414932, -0.019285591319203377, -0.008126839995384216, -0.02126292511820793, -0.005312435794621706, -0.046665068715810776, 0.061534613370895386, -0.03683112934231758, 0.06807299703359604, -0.0708676278591156, 0.007586368825286627, 0.0034471512772142887, -0.046427786350250244, -0.03867664188146591, -0.017057795077562332, -0.023701636120676994, 0.03577655181288719, 0.02501985803246498, 0.056683555245399475, 0.022699786350131035, -0.03923029452562332, 0.003602042328566313, 0.026997191831469536, 0.04893241077661514, -0.011844227090477943, 0.007441364694386721, 0.011455351486802101, -0.004277631174772978, -0.05170067772269249, 0.01576593890786171, 0.0180728267878294, -0.048220571130514145, 0.02396528050303459, 0.10382318496704102, 0.020946551114320755, 0.0019427300430834293, -0.0005631280946545303, 0.026693999767303467, -0.03817571699619293, -0.0420512892305851, -0.021645208820700645, -0.019193315878510475, -0.02757721021771431, 0.0047324178740382195, -0.045821405947208405, -0.03564472869038582, -0.044872283935546875, -0.05589262396097183, -0.026258986443281174, -0.005948477890342474, -0.007230449002236128, -0.03928302228450775, 0.00546732684597373, -0.016280043870210648, -0.012101280502974987, 0.018138738349080086, 0.017308257520198822, -0.008027973584830761, -0.11537081003189087, -0.043817706406116486, -0.03103095106780529, 0.04800965264439583, -0.020445626229047775, 0.0031357211992144585, -0.0436595194041729, -0.01651732437312603, 0.03422104939818382, 0.021987946704030037, -0.009721889160573483, 0.033904675394296646, -0.019101040437817574, 0.01662278175354004, -0.01921967975795269, -0.02126292511820793, 0.04508320242166519, -0.016794150695204735, 0.008265253156423569, -0.028948159888386726, 0.045821405947208405, 0.0163723211735487, -0.001579395029693842, -0.02152656950056553, -0.018283743411302567, 0.012318787164986134, 0.03187461569905281, -0.044872283935546875, 0.009181417524814606, -0.06954940408468246, 0.00928687583655119, 0.0025243957061320543, 0.01941741444170475, -0.014856364578008652, 0.024901218712329865, -0.01003167126327753, 0.011573991738259792, -0.009576885029673576, 0.007566595915704966, 0.028842702507972717, 0.020089706405997276, -0.0016807334031909704, -0.014935458078980446, -0.0015225467504933476, 0.0033944223541766405, -0.05810723826289177, 0.03480106592178345, -0.020181981846690178, -0.020010612905025482, 0.002707298845052719, 0.00021688875858671963, -0.040970347821712494, -0.00044819555478170514, -0.05141066759824753, 0.022383414208889008, 0.0013577688951045275, -0.004959810990840197, 0.007665462326258421, 0.031215501949191093, 0.03849209100008011, -0.00915505364537239, 0.026087617501616478, 0.023042524233460426, -0.0062483735382556915, 0.0031917456071823835, -0.006581224501132965, 0.017202800139784813, 0.027603574097156525, 0.020630178973078728, 0.006172575522214174, 0.04603232070803642, -0.012793347239494324, -0.03063548542559147, -0.02718174271285534, 0.01741371676325798, -0.030793672427535057, 0.033008284866809845, -0.005038904491811991, -0.028394507244229317, 0.02011607214808464, -0.01671505719423294, -0.03509107604622841, -0.04629596695303917, -0.048563309013843536, 0.007190902251750231, 0.004109557718038559, -0.0240707378834486, -0.006439515855163336, -0.024940764531493187, 0.02963363565504551, 0.017202800139784813, -0.06976032257080078, -0.07308223843574524, 0.007625915575772524, -0.010624871589243412, -0.011527854017913342, -0.020340168848633766, 0.0017038022633641958, -0.0172687117010355, 0.0020514833740890026, 0.03269191086292267, -0.03759569674730301, -0.028763609007000923, 0.02367527224123478, 0.001217707758769393, 0.030240017920732498, -0.006502131465822458, -0.01746644452214241, 0.043712250888347626, 0.0186132974922657, -0.00024757860228419304, -0.012186964973807335, 0.040759433060884476, -0.008990275673568249, 0.0012671410804614425, -0.020445626229047775, -0.032560087740421295, -0.005404711235314608, -0.006894302554428577, 0.046269599348306656, 0.009161644615232944, -0.03567109256982803, -0.02088063955307007, 0.015475928783416748, 0.002521099988371134, 0.014605902135372162, -0.04218311235308647, 0.022185681387782097, -0.022660240530967712, -0.01456635631620884, 0.0021717711351811886, -0.06707114726305008, -0.061429157853126526, 0.013426093384623528, 0.016253679990768433, 0.03137369081377983, -0.019654693081974983, -0.005272889044135809, 0.037305690348148346, -0.0232666227966547, 0.06454016268253326, -0.047218721359968185, 0.011995822191238403, 0.006620771251618862, 0.0010644644498825073, 0.0504615493118763, -0.03611928969621658, -0.023082071915268898, -0.045663218945264816, -0.007019533310085535, 0.04234129935503006, -0.02947544865310192, -0.050777919590473175, -0.042657673358917236, 0.01737416908144951, 0.050382453948259354, -0.0524388812482357, 0.025494419038295746, 0.024940764531493187, -0.013037217780947685, 0.008594809100031853, 0.024400293827056885, -0.03828117251396179, 0.01020963117480278, -0.038623910397291183, -0.007751146797090769, 0.0011476771906018257, 0.04215674847364426, -0.017980551347136497, 0.05061973258852959, -0.06253646314144135, -0.024242106825113297, -0.06533109396696091, 0.01686006225645542, 0.037806615233421326, -0.01657005399465561, 0.00022245000582188368, -0.023938916623592377, -0.006070413626730442, -0.007500684820115566, 0.017756452783942223, 0.02446620538830757, 0.019180133938789368, -0.0076522803865373135, -0.01356450654566288, 0.028552694246172905, -0.003035206813365221, -0.033561937510967255, 0.017848730087280273, 0.04769328236579895, 0.0354338139295578, -0.014276347123086452, -0.04234129935503006, 0.0035361312329769135, -0.03714750334620476, -0.0028737245593219995, 0.017743270844221115, 0.003700908971950412, 0.02537577785551548, 0.009754844941198826, 0.011073066852986813, 0.025916248559951782, 0.05504896119236946, 0.037859342992305756, -0.04094398394227028, -0.04529411718249321, -0.0021750666201114655, -0.010400773957371712, -0.004745600279420614, 0.002872076816856861, 0.010130537673830986, 0.017400532960891724, -0.013155858032405376, 0.04893241077661514, 0.029950009658932686, 0.04310586676001549, 0.0549435019493103, -0.03553927317261696, 0.027999039739370346, -0.014329075813293457, -0.024703484028577805, 0.027656303718686104, -0.002349731046706438, -0.0060012065805494785, 0.005622217897325754, -0.02702355571091175, 0.01278675626963377, 0.004791737999767065, 0.013604053296148777, 0.0033466366585344076, 0.03332465887069702, -0.018244195729494095, 0.05990001931786537, -0.036962952464818954, -0.006640544626861811, 0.017598267644643784, 0.007915924303233624, -0.007408408913761377, 0.016912791877985, -0.056578099727630615, -0.009365969337522984, -0.027260836213827133, -0.03403649851679802, 0.02842087112367153, 0.022093404084444046, -0.06390741467475891, 0.045663218945264816, -0.1199054941534996, -0.022989796474575996, 0.028315413743257523, 0.03282373398542404, 0.016912791877985, -0.023688454180955887, -0.029791822656989098, 0.014882729388773441, 0.013149267062544823, -0.020907005295157433, -0.03153187781572342, 0.03343011438846588, -0.05689447373151779, 0.049828801304101944, 0.02947544865310192, 0.014724542386829853, -0.030108196660876274, -0.0075600044801831245, -0.013017444871366024, 0.04094398394227028, -0.0050454954616725445, -0.010090990923345089, 0.004514911212027073, -0.020432444289326668, -0.0304245688021183, -0.037964802235364914, -0.006436219904571772, 0.024439839646220207, -0.05784359201788902, 0.014579538255929947, -0.04128672182559967, 0.04605868458747864, 0.0599527470767498, 0.03118913806974888, 0.0034405600745230913, 0.028394507244229317, -0.016398685052990913, -0.01301085390150547, -0.012872439809143543, -0.008172977715730667, -0.026693999767303467, 0.014210435561835766, -0.038571182638406754, -0.046375058591365814, 0.0022838199511170387, 0.05821269378066063, -0.02292388491332531, 0.0180728267878294, -0.011026929132640362, -0.01138284895569086, -0.04284222424030304, -0.0223702322691679, 0.056683555245399475, -0.04189310222864151, -0.03820208087563515, 0.0279199481010437, 0.040522150695323944, 0.0420512892305851, 0.007566595915704966, -0.060532767325639725, -0.009576885029673576, -0.049327876418828964, -0.015027733519673347, 0.008917773142457008, -0.014882729388773441, 0.02672036550939083, -0.007019533310085535, -0.027049921452999115, -0.043422240763902664, 0.04880058765411377, -0.015884578227996826, 0.08362802118062973, -0.027260836213827133, -0.014355440624058247, 0.0027567322831600904, 0.009873484261333942, -0.012160600163042545, 0.02301616035401821, 0.03137369081377983, -0.04263130575418472, 0.004949924536049366, -0.024163013324141502, -0.01526501402258873, 0.012879031710326672, 0.01827055960893631, -0.022449325770139694, -0.01902194693684578, 0.02258114702999592, 0.014170888811349869, -0.02823632024228573, 0.005144362337887287, 0.02092018723487854, -0.026417173445224762, 0.03366739675402641, 0.017888275906443596, -0.013683146797120571, 0.03137369081377983, 0.0009993772255256772, -0.054468944668769836, -0.03659385070204735, -0.025639422237873077, -0.007269995752722025, -0.0047719646245241165, -0.04466136917471886, 0.01581866666674614, 0.004996062256395817, 0.021447475999593735, -0.030503662303090096, -0.02027425728738308, -0.033403750509023666, -0.01737416908144951, 0.032665546983480453, 0.00185869331471622, -0.034563787281513214, 0.024492569267749786, -0.01048645842820406, -0.0017153366934508085, 0.06301102042198181, 0.01133671123534441, -0.01886375993490219, 0.017255529761314392, 0.03809662163257599, -0.019654693081974983, 0.02913271263241768, -0.035565637052059174, -0.006887711118906736, 0.011376257985830307, 0.018797848373651505, -0.04753509536385536, 0.016306409612298012, 0.010446911677718163, -0.02577124536037445, -0.0036382933612912893, 0.018547387793660164, 0.000632746668998152, -0.03377285227179527, 0.03720023110508919, -0.008001608774065971, 0.04869512841105461, 0.0029198622796684504, 0.003941484726965427, 0.003839322365820408, 0.012799938209354877, 0.031215501949191093, -0.029897280037403107, 0.05133157595992088, -0.013762240298092365, 0.01546274684369564, -0.0794624388217926, -0.012055142782628536, -0.002280524466186762, -0.02277887985110283, 0.0004399566678330302, 0.001317398389801383, 0.0021454067900776863, -0.016332773491740227, 0.0037470466922968626, 0.014170888811349869, 0.0030121379531919956, -0.028552694246172905, -0.04107580706477165, -0.015357289463281631, -0.009787799790501595, 0.02797267585992813, 0.019153770059347153, 0.00703271571546793, 0.061429157853126526, 0.010308497585356236, 0.011448760516941547, -0.03263918310403824, 0.033957406878471375, -0.02457166276872158, -0.030846400186419487, -0.006320875603705645, 0.011923320591449738, -0.012879031710326672, 0.016029583290219307, 0.015080462209880352, 0.008996866643428802, -0.0021635321900248528, 0.027761761099100113, -0.028605422005057335, 0.013920427300035954, -0.0007229624898172915, -0.0028341778088361025, 2.0713081539724953e-05, 0.012839484959840775, -0.011066475883126259, 5.720878471038304e-05, -0.0006360422121360898, -0.011910137720406055, -0.00031348972697742283, -0.01881103217601776, -0.01891648955643177, 0.0037042044568806887, -0.005701311398297548, -0.0058957492001354694, -0.012266058474779129, -0.029791822656989098, 0.039810311049222946, 0.007592960260808468, -0.013973155990242958, -0.013241542503237724, -0.0036745446268469095, -0.0177169069647789, -0.01028213370591402, 0.022910702973604202, -0.022040676325559616, 0.03580291569232941, 0.012483565136790276, -0.0001643658324610442, 0.035249263048172, -0.012799938209354877, 0.03422104939818382, -0.02643035538494587, 0.003756933379918337, 0.03087276592850685, -0.029765458777546883, 0.0018735233461484313, 0.012470382265746593, 0.005984729155898094, 0.021381564438343048, 0.007184311281889677, -0.020946551114320755, 0.002870428841561079, 0.008752996101975441, -0.007566595915704966, -0.0008766177925281227, -0.005935295484960079, -0.02276569791138172, 0.031162774190306664, -0.032164622098207474, -0.009346195496618748, 0.00514106685295701, -0.015845030546188354, -0.0025936022866517305, -0.02152656950056553, 0.059636373072862625, -0.03909847140312195, 0.009893258102238178, 0.006666908971965313, -0.07107854634523392, 0.008219115436077118, 0.04574231058359146, -0.008403667248785496, -0.015278195962309837, 0.019496507942676544, -0.017703725025057793, 0.018797848373651505, -0.02707628533244133, 0.023938916623592377, -0.0025639422237873077, -0.006861346773803234, -0.025243956595659256, 0.009128688834607601, -0.019905155524611473, -0.010367818176746368, 0.02621944062411785, -0.0388348288834095, -0.020590631291270256, 0.0188769418746233, 0.015370471403002739, 0.02126292511820793, 0.0181651022285223, 0.02918544039130211, -0.0011204888578504324, 0.018692390993237495, 0.014210435561835766, 0.006294511258602142, -0.03198007121682167, -0.09965760260820389, -0.015607750974595547, 0.007751146797090769, -0.010341453365981579, -0.032560087740421295, -0.03894028440117836, -0.01832328923046589, -0.012206737883388996, 0.01071055606007576, 0.036514755338430405, -0.030055467039346695, -0.00389864225871861, 0.004030464682728052, -0.03414195775985718, 0.01721598207950592, 0.004307291004806757, 0.009069369174540043, 0.008990275673568249, -0.007019533310085535, -0.015199102461338043, 0.006953622214496136, -0.04139217734336853, 0.015937307849526405, -0.035512905567884445, -0.017650995403528214, 0.004557753447443247, -1.217167118738871e-05, -0.026904916390776634, 0.04168218746781349, -0.03258645534515381, 0.0077247824519872665, 0.01086215116083622, -0.02122337743639946, 0.012345151044428349, 0.018455112352967262, 0.019746968522667885, -0.008041155524551868, -0.021737484261393547, -0.004317177925258875, -0.00940551608800888, 0.007658871356397867, -0.023411627858877182, -0.008746404200792313, 5.741475979448296e-05, -0.006887711118906736, 0.038913920521736145, 0.006353831384330988, -0.041260357946157455, 0.06559474021196365, 0.0025622944813221693, -0.023635724559426308, -0.02693128027021885, 0.011435577645897865, -0.02177703194320202, -0.047719646245241165, 0.025560328736901283, -0.02557351253926754, -0.018244195729494095, 0.054627131670713425, 0.012180374003946781, 0.016438230872154236, -0.0185210220515728, 0.010400773957371712, 0.001209468930028379, -0.014487262815237045, 0.007592960260808468, -0.022633876651525497, -0.020854275673627853, -0.003059923416003585, 0.016754604876041412, 0.02567896991968155, -0.00739522697404027, 0.02022152952849865, 0.0015332573093473911, 0.01243742648512125, 0.012252875603735447, 0.0011674505658447742, -0.018547387793660164, -0.019338320940732956, 0.0026611611247062683, -0.025903066620230675, 0.021895671263337135, 0.0279199481010437, -0.014236800372600555, 0.008891409263014793, 0.020735636353492737, -0.0056881289929151535, -0.004188651219010353, -0.01126420870423317, -0.02963363565504551, -0.02947544865310192, -0.028816338628530502, -0.009451653808355331, 0.00915505364537239, -0.012371515855193138, -0.01428952906280756, -0.015146373771131039, -0.013775422237813473, -0.07983154058456421, 0.003697613487020135, 0.023095253854990005, -0.023161165416240692, -0.014184071682393551, -0.003206575522199273, 0.012444018386304379, 0.0717640221118927, -0.017782818526029587, -0.07482229173183441, -0.0038261401932686567, -0.0051674311980605125, -0.027392657473683357, -0.007415000349283218, 0.017637813463807106, 0.017782818526029587, 0.0436595194041729, -0.03477470204234123, 0.04645415022969246, -0.014210435561835766, -0.009708707220852375, 0.004603891167789698, -0.014394987374544144, 0.005457439925521612, 0.03522289916872978, 0.012417653575539589, 0.003806366818025708, -0.00024284125538542867, 0.0009655978064984083, 0.019746968522667885, 0.013089947402477264, 0.009029822424054146, -0.0354338139295578, 0.011699222028255463, -0.008779359981417656, 0.023398444056510925, 0.011705813929438591, 0.010328271426260471, 0.020300623029470444, -0.004913673270493746, 0.04305313900113106, 0.03754296898841858, 0.035011984407901764, 0.03419468551874161, -0.019456960260868073, -0.025059405714273453, -0.018745120614767075, 0.01766417734324932, 0.01621413417160511, -0.008192751556634903, -0.0023810388520359993, -0.005984729155898094, 0.044371362775564194, -0.029844552278518677, -0.003981031011790037, 0.0009392333449795842, -0.020643360912799835, 0.0048477621749043465, -0.026153529062867165, 0.046770524233579636, 0.023701636120676994, 0.017505992203950882, 0.006310989148914814, 0.036962952464818954, -0.005088337697088718, 0.0016189416637644172, -0.005632104352116585, -0.007889560423791409, -0.021882489323616028, 0.02437392994761467, 0.014078613370656967, -0.009919621981680393, 0.0010982438689097762, 0.03047729842364788, -0.03477470204234123, 0.04339587688446045, 0.001959207933396101, -0.05699992924928665, -0.017426898702979088, -0.014579538255929947, 0.06016366183757782, 0.021539751440286636, 0.03142641857266426, 0.026258986443281174, 0.02101246267557144, 0.06765116751194, 0.0025425211060792208, -0.011910137720406055, -0.024953946471214294, -0.0236225426197052, 0.04099671170115471, 0.023292986676096916, -0.008317982777953148, -0.03593473881483078, 0.00342737790197134, 0.045610491186380386, 0.017782818526029587, 0.0163723211735487, 0.01936468482017517, -0.02331935241818428, 0.011488307267427444, -0.009873484261333942, 0.00499276677146554, -0.024611208587884903, -0.019839243963360786, -0.023385262116789818, -0.0013956677867099643, -0.021197013556957245, -0.0028094612061977386, 0.006861346773803234, 0.002005345653742552, 0.015937307849526405, 0.027840854600071907, 0.025810791179537773, 0.019193315878510475, 0.011554217897355556, -0.0049696979112923145, 0.01133671123534441, -0.006423037964850664, -0.01286584883928299, 0.007447955664247274, 0.001527489977888763, -0.02662809006869793, 0.013617236167192459, -0.013492004945874214, 0.006907484494149685, -0.00831139087677002, 0.013393137603998184, -0.0035657912958413363, -0.0014615788822993636, 0.04329041764140129, 0.0066438401117920876, -0.03988940641283989, -0.03498561680316925, 0.03229644522070885, 0.0011287278030067682, 0.03208553045988083, -0.002870428841561079, 0.03234917297959328, -0.005836429074406624, -0.005576080176979303, -0.01276039145886898, -0.009899849072098732, 0.014895911328494549, -0.01660959981381893, 0.005480508785694838, -0.02056426741182804, 0.003516357857733965, -0.049723342061042786, -0.010334862396121025, 0.015172737650573254, 0.01936468482017517, -0.010427137836813927, 0.027208106592297554, -0.022554783150553703, 0.007929107174277306, 0.008265253156423569, -0.0034932889975607395, 0.0032873167656362057, 0.029897280037403107, -0.013142676092684269, 0.048774223774671555, 0.017005067318677902, 0.01802009902894497, 0.007922515273094177, 0.026417173445224762, -0.02462439239025116, 0.0027863923460245132, 0.009721889160573483, 0.007316133473068476, 0.0012893861858174205, -0.06243100389838219, 0.04423953965306282, -0.0023612657096236944, -0.03482743352651596, 0.04207765311002731, 0.007355680223554373, -0.020946551114320755, 0.0004506672266870737, 0.0044061578810215, -0.002728719962760806, 0.012608795426785946, -0.010598506778478622, -0.008443213067948818, 0.03957303240895271, 0.03659385070204735, 0.005061973351985216, -0.005875975824892521, 0.02762993797659874, -0.019311955198645592, 0.025336232036352158, 0.04028487205505371, 0.014223618432879448, 0.0010183267295360565, 0.008140021935105324, -0.00408978434279561, 0.015304560773074627, -0.01997106708586216, 0.04658597335219383, 0.019496507942676544, -0.04779873788356781, 0.002346435561776161, 0.02712901309132576, 0.03424741327762604, -0.007012942340224981, 0.023292986676096916, 0.013749058358371258, 0.004903786815702915, 0.0118112713098526, 0.030793672427535057, 0.016200952231884003, 0.003575677750632167, -0.016939155757427216, -0.025744879618287086, -0.04305313900113106, -0.0036745446268469095, 0.004584117792546749, -0.016398685052990913, -0.026588542386889458, 0.005958364345133305, -0.019694240763783455, -0.03153187781572342, 0.013254724442958832, -0.019905155524611473, 0.00020844388927798718, 0.02322707511484623, 0.00033738251659087837, 0.024848489090800285, 0.004893899895250797, -0.03688385710120201, -0.03198007121682167, 0.0047324178740382195, 0.019733786582946777, 0.019641511142253876, -0.004982880316674709, -0.010901697911322117, 0.03158460557460785, 0.02101246267557144, 0.005309140309691429, 8.123030056594871e-06, -0.01882421411573887, -0.014157706871628761, 0.016952337697148323, -0.03498561680316925, -0.008067520335316658, -0.022291138768196106, 0.031110044568777084, 0.01075669378042221, -0.0011073066852986813, -0.0031835066620260477, 0.004505024757236242, 0.014830000698566437, 0.003941484726965427, -0.017031431198120117, 0.042420390993356705, -0.03382558375597, 0.054574400186538696, 0.02892179600894451, 0.0040963757783174515, -0.020208347588777542, 0.020643360912799835, 0.00779728451743722, 0.0086804935708642, 0.012094689533114433, -0.02963363565504551, -0.008291617967188358, -0.029238170012831688, 0.02111792005598545, -0.011099431663751602, -0.03843935951590538, -0.0005829014116898179, 0.01370951160788536, -0.03870300576090813, 0.00026899971999228, -0.019549235701560974, -0.014711360447108746, -0.01129057351499796, 0.015291377902030945, -0.01857375167310238, -0.026193076744675636, -0.03213825821876526, 0.011626720428466797, 3.905748235411011e-05, 0.001524194492958486, -0.01338654663413763, -0.008812315762043, -0.012707662768661976, -0.0012350095203146338, -0.02396528050303459, -0.017295075580477715, 0.008838680572807789, -0.018507840111851692, 0.006821800023317337, -0.039915770292282104, -0.009669160470366478, 0.013617236167192459, 0.0037042044568806887, 0.037912070751190186, -0.004959810990840197, 0.0010117355268448591, -0.023213893175125122, 0.017545538023114204, -0.009952577762305737, 0.05794905126094818, -0.00020144083828199655, -0.0014393338933587074, -0.030055467039346695, 0.009998715482652187, -0.02197476476430893, 0.019351502880454063, 0.006452697794884443, -0.0161086767911911, 0.01071055606007576, -0.006370308808982372, 0.011356485076248646, -0.015001369640231133, 0.010822604410350323, -0.03654111921787262, 0.008423440158367157, -0.01048645842820406, 0.015172737650573254, 0.023082071915268898, 0.004076602403074503, 0.000574662524741143, 0.0006603469373658299, -0.008126839995384216, -0.005137771368026733, 0.013880880549550056, -0.013920427300035954, -0.0019048311514779925, -0.018046462908387184, 0.03103095106780529, -0.023464355617761612, 0.00035756779834628105, -0.02267342247068882, -0.012905395589768887, 0.023042524233460426, -0.004943333566188812, -0.005019131116569042, 0.007856604643166065, -0.018481476232409477, -0.034352872520685196, -0.01786191202700138, 0.013261315412819386, 0.02011607214808464, 0.003251065732911229, -0.002428824547678232, -0.003236235585063696, -0.024057555943727493, -0.002142111072316766, 0.07840786129236221, -0.00021091556118335575, 0.003615224501118064, 0.055681709200143814, 0.028948159888386726, -0.021987946704030037, 0.019008764997124672, 0.001924604526720941, -0.021856125444173813, -0.0082322983071208, -0.043158598244190216, 0.02077518217265606, 0.050435181707143784, -0.012766982428729534, -0.008153204806149006, -0.015515475533902645, 0.007355680223554373, 0.02337208017706871, 0.01856056973338127, 0.006979987025260925, 0.03466924652457237, -0.037252962589263916, 0.0075270491652190685, -0.008502533659338951, 0.0004133862676098943, -0.01941741444170475, 0.008350937627255917, -0.02247568964958191, 0.003542722202837467, 0.018336471170186996, 0.0010537538910284638, 0.010499640367925167, -0.009095733985304832, 0.021210195496678352, 0.023701636120676994, 0.010381000116467476, 0.0161086767911911, -0.0022920588962733746, 0.006947031244635582, 0.026812640950083733, -0.010598506778478622, 4.52366512035951e-05, -0.010928062722086906, -0.02548123523592949, 0.012892213650047779, 0.027656303718686104, 0.0026496266946196556, 0.003017081180587411, 0.0164645966142416, 0.009148462675511837, 0.018797848373651505, 0.005701311398297548, -0.02126292511820793, -0.009847120381891727, -0.024637574329972267, 0.00430399551987648, -0.005932000000029802, 0.008502533659338951, 0.0021470545325428247, 0.018600115552544594, -0.02902725338935852, 0.030846400186419487, -0.002493087900802493, 0.0010735272662714124, -0.005223455838859081, -0.004373202100396156, 0.03474833816289902, -0.025046221911907196, -0.007540231104940176, -0.020788364112377167, -0.029660001397132874, -0.026812640950083733, 0.012338560074567795, 0.03957303240895271, 0.011791498400270939, 0.009840529412031174, -0.022647058591246605, -0.0008234769338741899, -0.0034537422470748425, -0.008627764880657196, -0.004709349013864994, -0.0386502780020237, -0.0001774450793163851, 0.04379134252667427, -0.04679688811302185, -0.005948477890342474, 0.02267342247068882, 0.016649147495627403, -0.001743348897434771, 0.03764842823147774, 0.032955557107925415, -0.01486954651772976, 0.0001442835491616279, -0.008397075347602367, -0.011152160353958607, -0.007335906848311424, -0.005849611014127731, -0.03258645534515381, 0.011224662885069847, 0.009141871705651283, 0.04439772665500641, 0.0014022588729858398, -0.03179552033543587, 0.010123946703970432, -0.01635913737118244, 0.0073622711934149265, -0.02677309326827526, -0.023187529295682907, -0.012101280502974987, 0.009240738116204739, 0.016135040670633316, -0.029290897771716118, -0.002290411153808236, 0.00586938438937068, -0.014421351253986359, -0.03337738662958145, -0.010671009309589863, -0.018850577995181084, -0.0028177001513540745, 0.004027169197797775, -0.0006034985999576747, -0.011442169547080994, 0.0061330292373895645, 0.0029973078053444624, 0.007184311281889677, 0.019404230639338493, 0.006139620207250118, 0.011672858148813248, -0.0064065600745379925, -0.027761761099100113, 0.009451653808355331, -0.004132626578211784, -0.0050454954616725445, 0.02152656950056553, 0.01243742648512125, -0.022277956828475, -0.007869786582887173, 0.007533640135079622, 0.016846880316734314, -0.0008032916812226176, 0.007276586722582579, 0.012694479897618294, 0.021144285798072815, 0.0020811434369534254, 0.004531389102339745, 0.028710881248116493, -0.022607510909438133, -0.002680934499949217, -0.021803395822644234, 0.0014698178274556994, -0.014236800372600555, -0.0012473678216338158, -0.017637813463807106, 0.050382453948259354, -0.0354338139295578, 0.0016774378018453717, 0.006040753331035376, 0.01642504893243313, 0.007817057892680168, -0.020181981846690178, 0.002474962268024683, 0.013169039972126484, 0.0008972150390036404, -0.013142676092684269, 0.042657673358917236, -0.0036877267993986607, -0.01936468482017517, -0.01311631128191948, -0.006887711118906736, 0.013360182754695415, -0.040363963693380356, -0.026997191831469536, 0.02267342247068882, -0.0013437628513202071, -0.014474079944193363, -0.015528658404946327, 0.0161086767911911, 0.005562897771596909, -0.043474968522787094, -0.010954426601529121, -0.038412995636463165, 0.0033120333682745695, -0.019298773258924484, -0.03432650864124298, -0.03087276592850685, -0.016991885378956795, -0.013538142666220665, -0.025046221911907196, 0.05409984290599823, -0.013004262931644917, -0.01336677372455597, -0.03298192098736763, 0.01431589387357235, -0.003513062372803688, 0.035354722291231155, -0.006129733286798, 0.005183909088373184, 0.006512017920613289, 0.007210675626993179, 0.01479045394808054, -0.018652845174074173, -0.023846641182899475, 0.008199342526495457, -0.012193555943667889, -0.009273693896830082, -0.013867697678506374, 0.0070920358411967754, -0.0065614511258900166, 0.03488016128540039, -0.001957559958100319, 0.009517564438283443, -0.013867697678506374, 0.02747175097465515, 0.019298773258924484, -0.007856604643166065, -0.005269593559205532, -0.006795435678213835, 0.00019361388694960624, -0.009682342410087585, -0.04060124605894089, -0.016794150695204735, 0.0010455150622874498, 0.03343011438846588, -0.012411062605679035, -0.0286317877471447, 0.009016640484333038, 0.02476939558982849, 0.013828151859343052, 0.0015596216544508934, -0.008100476115942001, 0.030213654041290283, 0.020762000232934952, -0.02702355571091175, 0.003142312401905656, 0.012582431547343731, -0.0034471512772142887, 0.0018900011200457811, 0.015093645080924034, -0.0336410328745842, -0.01065782643854618, 0.014381804503500462, -0.001759826671332121, -0.009372560307383537, -0.009715298190712929, -0.017387351021170616, 0.010222813114523888, 0.02172430232167244, -0.01712370663881302, -0.025995342060923576, -0.029607271775603294, -0.0058858622796833515, -0.013432684354484081, 0.014526809565722942, -0.0023991644848138094, 0.04624323546886444, -0.030213654041290283, 0.0002477845991961658, -0.0381229892373085, -0.0020514833740890026, -0.018455112352967262, -0.018797848373651505, -0.014355440624058247, 0.01977333426475525, -0.011310347355902195, -0.004706053528934717, 0.029712729156017303, -0.005042199976742268, -0.02356981299817562, -0.02678627520799637, 0.011376257985830307, 0.002071256749331951, -0.038360267877578735, -0.005322322249412537, -0.008060929365456104, -0.02963363565504551, 0.015634115785360336, 0.02267342247068882, -0.026839004829525948, 0.015555022284388542, 0.013129493221640587, -0.004676393233239651, 0.013867697678506374, -0.02167157456278801, 0.007045898120850325, 0.03498561680316925, -0.008621173910796642, -0.01981288008391857, 0.01138284895569086, 0.02498031221330166, 0.0071249911561608315, -0.004864240065217018, 0.022686604410409927, -0.013511777855455875, 0.0025804201140999794, 0.014487262815237045, 0.046875983476638794, 0.006304397713392973, 0.035011984407901764, -0.0006010269280523062, -0.00029639402055181563, -0.019101040437817574, 0.014882729388773441, 0.016187768429517746, 0.013122902251780033, -0.013986337929964066, 0.0032164622098207474, 0.0008333636214956641, 0.03377285227179527, 0.0064889490604400635, -0.014342257753014565, -0.006762480363249779, -0.016490960493683815, -0.022502053529024124, -0.031162774190306664, 0.010400773957371712, 0.00928687583655119, 0.012556066736578941, -0.019852427765727043, 0.021935218945145607, 0.02942272089421749, 0.010624871589243412, -0.00991303101181984, 0.02422892488539219, -0.03427377715706825, 0.043764978647232056, -0.026839004829525948, -0.0030747533310204744, -0.008515715599060059, -0.032612819224596024, 0.01982606202363968, 0.007579777855426073, -0.016688693314790726, 0.042657673358917236, -0.02256796509027481, 0.004646733403205872, 0.021131101995706558, 0.017005067318677902, 0.018099190667271614, 0.030266383662819862, -0.0037635245826095343, 0.008581627160310745, 0.008693675510585308, -0.0022607510909438133, 0.019839243963360786, 0.005997911095619202, 0.03688385710120201, 0.038861192762851715, 0.001639538910239935, -0.032454632222652435, 0.006551564671099186, 0.03443196415901184, 0.010736919939517975, 0.008845271542668343, 0.017690543085336685, 0.017440080642700195, -0.0007534464239142835, 0.0062483735382556915, -0.014302711002528667, 0.026839004829525948, -0.016293227672576904, -0.0037635245826095343, 0.0454523041844368, -0.008996866643428802, 0.00520697794854641, 0.035407450050115585, -0.006933848839253187, -0.010868742130696774, -0.0063307625241577625, -0.0025688856840133667, 0.0168205164372921, 0.01766417734324932, -0.02571851573884487, -0.0023662089370191097, -0.01370951160788536, -0.0077247824519872665, -0.034616515040397644, -0.01787509396672249, -0.01792782172560692, -0.0015505589544773102, 0.025454871356487274, 0.010354635305702686, -0.02963363565504551, 0.03171642869710922, -0.04508320242166519, 0.00991303101181984, -0.008568444289267063, 0.008443213067948818, -0.01249015610665083, 0.03464287891983986], [0.0236667487770319, -0.011026116088032722, 0.013736195862293243, 0.03341791033744812, 0.006573385093361139, 0.01932293176651001, -0.03295661881566048, -0.02073243074119091, 0.024576514959335327, 0.02818995527923107, -0.022628845646977425, 0.011807747185230255, 0.006221010349690914, 0.010968455113470554, -0.013608059845864773, 0.028164327144622803, 0.009661465883255005, 0.032136548310518265, -0.005237565375864506, -0.007431897334754467, 0.04072166979312897, 0.02854873612523079, 0.05274084210395813, -0.013454296626150608, -0.06232542544603348, -0.04149048775434494, 0.03718511387705803, 0.0043085780926048756, 0.0014871802413836122, -0.02274416759610176, 0.0989723652601242, -0.0008116624667309225, 0.00016377402062062174, -0.03772328421473503, -0.004946055822074413, 0.0005966339958831668, 7.92341961641796e-05, 0.0016625666758045554, 0.017682788893580437, 0.038774002343416214, -0.03080393187701702, -0.019258864223957062, -0.018003130331635475, -0.03569873422384262, -0.056277401745319366, 0.06350427865982056, -0.008617156185209751, -0.026037266477942467, 0.014530640095472336, 0.01053279172629118, 0.039901599287986755, 0.003270675428211689, 1.4628043572884053e-05, -0.011634763330221176, 0.0048083094879984856, -0.004366239532828331, 0.018041571602225304, 0.028830636292696, 0.022526336833834648, -0.024845600128173828, 0.020091749727725983, -0.03882525488734245, -0.0029263095930218697, 0.004680173005908728, 0.0017826942494139075, 0.010404655709862709, -0.006099280901253223, 0.031495869159698486, -0.02043771743774414, -0.005951924715191126, 0.07836807519197464, 0.026985473930835724, 0.019425440579652786, -0.012345918454229832, -0.0023977479431778193, -0.023692375048995018, 0.0022407809738069773, -0.028881890699267387, 0.0021414754446595907, 0.008380104787647724, -0.05397094786167145, 0.008284002542495728, -0.017939062789082527, -0.001146818627603352, -0.02967633493244648, 0.03249533101916313, -0.03682633116841316, -0.006566978059709072, -0.04172113165259361, -0.021193720400333405, -0.062069155275821686, -0.006477282848209143, -0.019156355410814285, 0.026575438678264618, 0.010923607274889946, -0.028651244938373566, 0.013063481077551842, -0.021706264466047287, -0.021488433703780174, 0.059198904782533646, -0.03418672829866409, 7.067510159686208e-05, -0.02739551104605198, 0.008796547539532185, 0.04413009434938431, -0.027754291892051697, -0.02475590631365776, 0.053765930235385895, -0.03262346610426903, 0.001450341078452766, 0.0019524747040122747, -0.008937496691942215, -0.009328312240540981, 0.10896699130535126, -0.02475590631365776, -0.041054826229810715, -0.03572436049580574, 0.031829021871089935, 0.0007932428852654994, 0.020053308457136154, -0.0363394133746624, -0.023525798693299294, 0.04013224318623543, -0.03610876947641373, 0.028061818331480026, -0.01251890230923891, 0.017464958131313324, -0.018630998209118843, -0.019989240914583206, -0.01399246882647276, 0.06268420815467834, -0.012967378832399845, 0.06601575016975403, -0.0852874293923378, -0.024320242926478386, 0.012480461969971657, -0.01755465380847454, -0.0006939373561181128, -0.014915049076080322, -0.03769765794277191, 0.03280285745859146, 0.011948696337640285, 0.06350427865982056, 0.023410476744174957, -0.022039419040083885, 0.005971144884824753, 0.038184575736522675, 0.04067041724920273, -0.012762361206114292, 0.02770303748548031, 0.029906978830695152, 0.015453220345079899, -0.033827945590019226, 0.01514569390565157, 0.051459480077028275, -0.05220267176628113, 0.029855724424123764, 0.08369854092597961, 0.015952952206134796, -0.03167525678873062, 0.009603804908692837, 0.020860565826296806, -0.031290847808122635, -0.03400733694434166, -0.015299457125365734, -0.020053308457136154, -0.030342642217874527, 0.0004064318782184273, -0.039927225559949875, -0.04159299656748772, -0.04751288890838623, -0.04643654450774193, -0.005958331283181906, -0.023999901488423347, -0.011384897865355015, -0.03000948764383793, 0.011557881720364094, -0.019169168546795845, -0.002080610953271389, 0.01902821846306324, 0.030445151031017303, -0.0024345871061086655, -0.11839780956506729, -0.02480716072022915, -0.05125446245074272, 0.06493940204381943, -0.010033060796558857, 0.01399246882647276, -0.04779478535056114, -0.023564239963889122, 0.02193691022694111, 0.027216119691729546, 0.004222086165100336, 0.033546045422554016, -0.008854208514094353, 0.013300533406436443, -0.01731119491159916, -0.00013954828318674117, 0.04123421385884285, -0.040183499455451965, 0.030086370185017586, -0.028036192059516907, 0.020412089303135872, 0.009962586686015129, -0.016824277117848396, -0.006714334711432457, -0.02134748362004757, 0.014402504079043865, 0.0321878045797348, -0.034750524908304214, -0.005426566116511822, -0.035852495580911636, 0.035903751850128174, 0.02162938378751278, 0.00993055198341608, 0.017759671434760094, 0.014466572552919388, -0.020412089303135872, 0.027831172570586205, -0.011391304433345795, 0.002151085762307048, 0.003469286486506462, 0.022308504208922386, 0.00237692566588521, -0.026652321219444275, -0.00012453232193365693, 0.0080469511449337, -0.04459138214588165, 0.026421675458550453, -0.016068274155259132, 0.0028077836614102125, 0.008828581310808659, -0.012320291250944138, -0.0506906621158123, 0.029010025784373283, -0.03147023916244507, 0.0028462244663387537, -0.023846138268709183, 0.001415904494933784, 0.004439917858690023, 0.045949626713991165, 0.03372543677687645, -0.031265221536159515, -0.011141438968479633, 0.020335208624601364, -0.011628355830907822, -0.00505176791921258, -0.014902235008776188, 0.026421675458550453, 0.01638861373066902, 0.004177238792181015, -0.034135472029447556, 0.04323314130306244, -0.03029138781130314, -0.04084980860352516, -0.0060768574476242065, 0.017349636182188988, -0.024909669533371925, 0.01819533482193947, -0.00284302094951272, -0.02248789556324482, 0.005945517681539059, 0.006631046067923307, -0.02934318035840988, -0.030932068824768066, -0.06104406714439392, 0.008854208514094353, -0.0025338924024254084, -0.028343718498945236, 0.010552012361586094, -0.03603188693523407, 0.014107790775597095, 0.009443635120987892, -0.07083366811275482, -0.03636503964662552, 0.001288569183088839, -0.0038761186879128218, -0.03485303372144699, -0.013121142983436584, 0.02019425854086876, -0.012128087691962719, -0.008002103306353092, 0.011436152271926403, -0.035852495580911636, -0.031034577637910843, 0.030932068824768066, -0.018361911177635193, 0.025012178346514702, -0.004853156860917807, -0.02562723122537136, 0.0455908440053463, 0.007412676699459553, 0.016209224238991737, 0.004411087371408939, 0.028599990531802177, -0.011448965407907963, -0.014722844585776329, 0.003978627733886242, -0.047436006367206573, -0.014863794669508934, -0.005458600353449583, 0.04351503774523735, 0.007201252039521933, -0.06483689695596695, -0.026882965117692947, 0.019194796681404114, -0.00160170195158571, -0.017785299569368362, -0.04484765604138374, 0.02107839845120907, -0.012787988409399986, -0.013595246709883213, -0.004202865995466709, -0.054022204130887985, -0.06273546069860458, 0.0415673702955246, -0.008572309277951717, 0.025473468005657196, -0.012307478114962578, -0.03229031339287758, 0.05263833329081535, -0.022411013022065163, 0.05320213362574577, -0.054278478026390076, 0.017042109742760658, -0.009283464401960373, -0.006682300474494696, 0.025998827069997787, -0.02538377232849598, -0.051997654139995575, -0.05596987530589104, 0.0012581369373947382, 0.013749009929597378, -0.04866611212491989, -0.0010923607042059302, -0.031239595264196396, 0.018964150920510292, 0.03346916288137436, -0.04487328231334686, 0.03885088115930557, 0.03551934286952019, -0.0053785149939358234, 0.01725994050502777, 0.01454345416277647, -0.052330806851387024, 0.016913972795009613, -0.008995158597826958, 0.00320020061917603, -0.017516212537884712, 0.0489480122923851, -0.012172934599220753, 0.03200841322541237, -0.02652418427169323, -0.020412089303135872, -0.05514980107545853, 0.004974886309355497, 0.032982245087623596, -0.03603188693523407, -0.007816305384039879, -0.006900132168084383, -0.012647038325667381, -0.0017010074807330966, 0.012941751629114151, 0.03623690456151962, 0.01959201879799366, -0.0028366141486912966, -0.01733682118356228, 0.037005722522735596, 0.0022503912914544344, -0.022385386750102043, 0.05074191838502884, 0.04933242127299309, 0.031803395599126816, -0.0018803981365635991, -0.013121142983436584, -0.017785299569368362, 0.0034116252791136503, -0.005083802156150341, 0.049076147377491, -0.017503399401903152, 0.035852495580911636, 0.004507189150899649, 0.02020707167685032, 0.04289998486638069, 0.03938905522227287, 0.02913816273212433, -0.03995285555720329, -0.004170831758528948, 0.0006526935612782836, -0.015965765342116356, 0.0027421137783676386, -0.0038921358063817024, 0.0031008950900286436, 0.022244436666369438, -0.009020785801112652, 0.03477615490555763, 0.03175213932991028, 0.04118296131491661, 0.05412471294403076, -0.03718511387705803, 0.025473468005657196, -0.029163789004087448, -0.013761823065578938, 0.019771408289670944, 0.012185748666524887, -0.002910292474552989, 0.0019813054241240025, -0.029291925951838493, -0.002750122221186757, 0.008700445294380188, -0.0013750611105933785, 0.033597301691770554, 0.03938905522227287, -0.021783147007226944, 0.033546045422554016, -0.03495554253458977, 0.013185210525989532, 0.009866484440863132, -0.008501834236085415, -0.01010353583842516, 0.006160145625472069, -0.006022399291396141, -0.03167525678873062, -0.034981172531843185, -0.01676020957529545, 0.03867149353027344, -0.008642783388495445, -0.06816843897104263, 0.04379693791270256, -0.10855695605278015, -0.05504729226231575, 0.028830636292696, 0.03521181643009186, 0.004590477794408798, -0.021129652857780457, -0.02389739267528057, 0.005826991982758045, 0.0017602704465389252, -0.022026605904102325, -0.026344794780015945, 0.023295152932405472, -0.04543708264827728, 0.037595149129629135, 0.05330464243888855, 0.041054826229810715, -0.029522569850087166, -0.03508368134498596, 0.008034137077629566, 0.03377668932080269, 0.0008336858591064811, 0.002923106076195836, 0.011263168416917324, 0.0014775700401514769, -0.041362352669239044, -0.021424366161227226, -0.004865970462560654, 0.028010563924908638, -0.09077165275812149, 0.022026605904102325, -0.02424336038529873, 0.03708260506391525, 0.05040876567363739, 0.03495554253458977, -0.008873429149389267, -0.014761284925043583, -0.02191128209233284, 0.00205658539198339, -0.011999950744211674, -0.001106776064261794, -0.02647292986512184, 0.021155279129743576, -0.047410380095243454, -0.03592937812209129, -0.017682788893580437, 0.04469389095902443, 0.0026796474121510983, 0.0158888828009367, 0.004180442076176405, -0.008380104787647724, -0.04876862093806267, -0.002873453311622143, 0.07385767996311188, -0.07401144504547119, -0.03390482813119888, 0.062376681715250015, 0.04361754655838013, 0.05153636261820793, -0.002806181786581874, -0.058891378343105316, -0.0032514550257474184, -0.059762705117464066, -0.010878759436309338, 0.018925709649920464, -0.013749009929597378, 0.006528537254780531, -0.014030909165740013, -0.05099819228053093, -0.03682633116841316, 0.048563603311777115, -0.004923631902784109, 0.07257632166147232, -0.027318628504872322, 0.01673458144068718, 0.002932716393843293, 0.010673741810023785, -0.022411013022065163, 0.022270064800977707, 0.028369344770908356, -0.025857876986265182, -0.010859539732336998, 0.014607521705329418, -0.03856898471713066, 0.0025675282813608646, 0.014581894502043724, -0.026908593252301216, -0.01676020957529545, 0.019656086340546608, 0.018220961093902588, -0.04013224318623543, 0.0008481012191623449, -0.0010723394807428122, -0.012038392014801502, 0.022359758615493774, 0.005067784804850817, -0.012711106799542904, 0.011096591129899025, 0.018208147957921028, -0.049127403646707535, -0.022949185222387314, -0.00330911623314023, 0.002633197931572795, 0.000253068923484534, -0.06555445492267609, -0.007412676699459553, -0.0017506602453067899, 0.011160659603774548, -0.029753215610980988, -0.004273341037333012, -0.026703575626015663, 0.00028310081688687205, 0.0419774055480957, 0.02593475766479969, -0.015325084328651428, 0.02446119301021099, -0.024653397500514984, -0.0080469511449337, 0.041336722671985626, 0.002338484860956669, -0.014402504079043865, 0.008918276987969875, 0.056277401745319366, -0.026652321219444275, 0.026703575626015663, -0.050844427198171616, -0.012115273624658585, 0.001408696873113513, 0.022680100053548813, -0.03510930761694908, 0.008149459958076477, 0.03295661881566048, -0.01179493311792612, 0.0057501099072396755, 0.02162938378751278, 0.0020085342694073915, -0.03403296321630478, 0.02567848563194275, 0.015991391614079475, 0.02908690832555294, 0.011577101424336433, 0.023487357422709465, -0.020591480657458305, -0.002513070357963443, 0.03264909237623215, -0.04551396146416664, 0.04200303182005882, -0.002607570728287101, -0.0012621411588042974, -0.07411395013332367, 0.008040543645620346, 0.014287181198596954, -0.010449503548443317, 0.006214603781700134, -0.0146844033151865, -0.020002054050564766, -0.017477771267294884, 0.006320315878838301, -0.018861642107367516, -0.02962508052587509, -0.017118990421295166, -0.021437179297208786, 0.0042765443213284016, -0.020014867186546326, 0.015196948312222958, 0.021526874974370003, -0.004513596184551716, 0.050536900758743286, 0.029010025784373283, 0.019797036424279213, -0.046872206032276154, 0.04430948197841644, -0.040465399622917175, -0.03721074014902115, -0.01786218024790287, 0.023974275216460228, -0.01081469189375639, 0.009661465883255005, 0.026882965117692947, 0.0022503912914544344, 0.002818995388224721, 0.018836015835404396, -0.022962000221014023, 0.011397711001336575, -0.0006462867604568601, -0.023782070726156235, -0.010859539732336998, 0.026024453341960907, 0.01413341797888279, 0.00496847927570343, 0.006224213633686304, -0.011621949262917042, -0.0044495281763374805, -0.01870787888765335, -0.00806617084890604, 0.0033699809573590755, 0.0024393920321017504, -0.0012717513600364327, -0.014569081366062164, -0.03713385760784149, 0.009603804908692837, 0.02305169403553009, -0.039901599287986755, -0.013723382726311684, 0.006560571491718292, -0.034135472029447556, -0.014325622469186783, 0.02133467048406601, -0.019181983545422554, 0.009943366050720215, 0.009116888046264648, -0.008175087161362171, 0.03426360711455345, -0.016798650845885277, 0.03744138404726982, -0.024948108941316605, 0.01672176830470562, 0.02101432904601097, -0.01783655397593975, -0.012576564215123653, 0.0053881253115832806, 0.006371570285409689, 0.018554115667939186, 0.01255734357982874, -0.021514059975743294, 0.019720153883099556, 0.0042669340036809444, -0.005080598872154951, -0.0067848097532987595, -0.010141977109014988, 0.0019316525431349874, 0.025729740038514137, -0.02447400614619255, -0.021821588277816772, -0.0026956642977893353, 0.013050667941570282, 0.0009089658851735294, -0.008085391484200954, 0.0426437146961689, -0.042489949613809586, 0.0146844033151865, 0.021988164633512497, -0.04674407094717026, 0.022821050137281418, 0.03910715505480766, -0.029599452391266823, -0.007489558309316635, 0.00237372238188982, -0.019207609817385674, 0.040798552334308624, -0.03467364236712456, 0.031265221536159515, 0.0011572296498343349, -0.030137624591588974, -0.026126962155103683, -0.002292035613209009, -0.02877938188612461, -0.005782144144177437, 0.04064479097723961, -0.021808773279190063, -0.007489558309316635, 0.03549371659755707, 0.02020707167685032, 0.002804580144584179, 0.0024073580279946327, 0.04225930571556091, -0.0051863109692931175, 0.03628816083073616, 0.02790805511176586, 0.011128624901175499, -0.034417372196912766, -0.08621000498533249, -0.03111145831644535, 0.011756492778658867, -0.017054922878742218, -0.04100356996059418, -0.042515575885772705, 0.001989313866943121, -0.017746858298778534, -0.00567963533103466, 0.04041414335370064, -0.01267907302826643, -0.01732400804758072, -0.010308553464710712, -0.041387978941202164, 0.008982344530522823, 0.0003423637826927006, -0.009526923298835754, 0.019950799643993378, -0.0033571673557162285, -0.008841394446790218, 0.016568005084991455, -0.033597301691770554, 0.0010843522613868117, -0.057661272585392, -0.0061120945028960705, 0.011269574984908104, -0.011820560321211815, -0.02683171071112156, 0.04523206502199173, -0.018246589228510857, -0.008021323010325432, 0.02070680260658264, -0.008828581310808659, 0.020335208624601364, -0.011468186043202877, 0.001936457701958716, 0.002511468715965748, -0.01668332703411579, -0.02279542200267315, -0.010058687999844551, 0.00474744476377964, -0.020348021760582924, -0.01496630348265171, -0.005996772088110447, -0.02419210597872734, 0.039619699120521545, 0.011135032400488853, -0.017195872962474823, 0.0748315155506134, 0.00937956664711237, -0.019720153883099556, -0.04179801419377327, 0.010494351387023926, -0.025230009108781815, -0.03485303372144699, 0.037056975066661835, -0.03190590441226959, 0.005285616498440504, 0.03113708645105362, -0.005724482703953981, -0.005368905141949654, -0.027523646131157875, -0.001749058603309095, -0.002524282317608595, -0.005573922768235207, 0.012928938493132591, -0.017234312370419502, -0.016529563814401627, 0.0002792967716231942, 0.027190493419766426, -0.008187900297343731, -0.004680173005908728, 0.001816330011934042, 0.010276519693434238, 0.01035340130329132, -0.006906538736075163, -0.0035429648123681545, -0.008424952626228333, -0.0011548270704224706, -0.002279222011566162, -0.0415673702955246, 0.013063481077551842, 0.029906978830695152, 0.007604880724102259, -0.0026107742451131344, 0.015222575515508652, -0.017067736014723778, -0.02565285935997963, 0.0086491908878088, -0.01754184067249298, -0.027549274265766144, -0.031188340857625008, -0.02050178498029709, -0.0030768695287406445, -0.010206044651567936, -0.04213116690516472, -0.00424451008439064, -0.00597755191847682, -0.060685284435749054, -0.0025194771587848663, 0.006028806325048208, -0.035903751850128174, -0.017157431691884995, -6.807233148720115e-06, -0.005199124570935965, 0.07088492065668106, 0.005317650735378265, -0.06734836101531982, 7.688169716857374e-05, -0.010596860200166702, -0.024358684197068214, 0.014338435605168343, -0.003978627733886242, 0.017798112705349922, 0.04389944672584534, -0.04000410810112953, 0.04920428618788719, -0.006771996151655912, -0.02451244741678238, 0.016824277117848396, -0.00877732690423727, 0.011135032400488853, 0.02103995718061924, 0.012070425786077976, -0.0017794908490031958, 0.006160145625472069, 0.007816305384039879, 0.017477771267294884, 0.02448681928217411, -0.005759720224887133, -0.04433511197566986, -0.006349146831780672, 0.0021558909211307764, 0.019156355410814285, 0.018208147957921028, 0.008040543645620346, 0.007329388055950403, 0.0148509806022048, 0.03341791033744812, 0.030368268489837646, 0.03541683405637741, 0.03890213742852211, -0.03200841322541237, -0.025217195972800255, -0.015248202718794346, -0.0029615468811243773, 0.013159583322703838, -0.009296278469264507, 0.009853670373558998, 0.00222796737216413, 0.03223905712366104, -0.04589837044477463, -0.025998827069997787, -0.0008857412030920386, -0.0201814454048872, 0.005634787492454052, -0.032418448477983475, 0.07401144504547119, 0.01340304221957922, 0.021232161670923233, -0.013915586285293102, 0.03321289271116257, 0.0025226806756109, -0.009219396859407425, -0.0113656772300601, -0.0037864234764128923, -0.029035653918981552, 0.035339951515197754, 0.03026575967669487, 0.00598716177046299, -0.00041403996874578297, 0.03631378710269928, -0.02967633493244648, 0.03890213742852211, -0.00834807101637125, -0.07165373861789703, -0.0128072090446949, -0.018874455243349075, 0.04354066774249077, 0.0358012430369854, 0.014889421872794628, 0.019797036424279213, 0.02449963241815567, 0.06171037256717682, 0.008802954107522964, -0.007297354284673929, -0.007873967289924622, -0.02767740935087204, 0.03147023916244507, 0.033546045422554016, 0.0024506039917469025, -0.03605751320719719, 0.017951875925064087, 0.028830636292696, 0.014299995265901089, 0.026959847658872604, 0.021475620567798615, -0.014569081366062164, 0.0075536263175308704, 0.009283464401960373, -0.017054922878742218, -0.0362112782895565, -0.015606983564794064, -0.03264909237623215, -0.007105149794369936, -0.027139239013195038, 0.009161734953522682, 0.006579791661351919, 0.0030464371666312218, 0.018925709649920464, -0.0013302135048434138, 0.034417372196912766, -0.007143590599298477, 0.009546143934130669, -0.026575438678264618, 0.030086370185017586, 0.011852595023810863, -0.008521054871380329, 0.009418007917702198, -0.0008961522253230214, -0.015504474751651287, 0.0274211373180151, -0.012531716376543045, 0.023974275216460228, -0.01369775552302599, 0.015632610768079758, -0.022065047174692154, -0.005657211411744356, 0.049434930086135864, 0.024550888687372208, -0.041926149278879166, -0.031008949503302574, 0.03592937812209129, 0.0024201716296374798, 0.027882426977157593, -0.009904924780130386, 0.026114149019122124, -0.017746858298778534, 0.012275444343686104, 0.013672128319740295, -0.018220961093902588, 0.008694038726389408, -0.027523646131157875, 0.006868097931146622, -0.010795471258461475, -0.010507164523005486, -0.03782579302787781, 0.003385998075827956, 0.0053881253115832806, 0.017349636182188988, -0.00823915470391512, 0.02934318035840988, -0.02906128019094467, 0.016222037374973297, 0.0018627793760970235, -0.022346945479512215, 0.025191567838191986, 0.034442998468875885, 0.0004969280562363565, 0.03346916288137436, 0.020834939554333687, 0.030111996456980705, 0.02790805511176586, 0.013025040738284588, -0.009065632708370686, 0.0012853657826781273, 0.013595246709883213, 0.019194796681404114, -0.015184134244918823, -0.03838959336280823, 0.011609136126935482, 0.003472489770501852, -0.026101335883140564, 0.0358012430369854, 0.023205457255244255, -0.020309580489993095, -0.011788526549935341, -0.007681762799620628, -0.0020774074364453554, 0.010065095499157906, -0.005673228297382593, 0.013095514848828316, 0.04784604161977768, 0.03938905522227287, 0.005509854760020971, -0.0002574735844973475, 0.023961462080478668, -0.015683865174651146, 0.01642705500125885, 0.0374157577753067, -0.009014378301799297, 0.02647292986512184, 0.03600626066327095, -0.016247665509581566, 0.0262166578322649, -0.009776788763701916, 0.041926149278879166, 0.012249816209077835, -0.003389201359823346, 0.009815230034291744, 0.013428669422864914, 0.015171321108937263, -0.018490048125386238, 0.016606446355581284, 0.026652321219444275, 0.023743629455566406, 0.008886242285370827, 0.01587606966495514, 0.01873350702226162, 0.007675355765968561, -0.024409938603639603, -0.0037575927563011646, -0.05473976582288742, -0.009828043170273304, 0.004587274510413408, -0.006650266703218222, -0.026575438678264618, -0.018592556938529015, -0.0426437146961689, -0.02885626256465912, 0.010058687999844551, -0.004004254937171936, -0.008975937962532043, 0.0227313544601202, 0.013620873913168907, 0.011128624901175499, 0.018592556938529015, -0.022923558950424194, -0.008264781907200813, 0.010763437487185001, 0.02934318035840988, 0.004289357922971249, 0.013057074509561062, 0.011090184561908245, 0.023692375048995018, 0.01155147422105074, -0.0071884384378790855, 0.022295691072940826, -0.03723636642098427, 0.00411957735195756, 0.027318628504872322, -0.015017557889223099, -0.011705238372087479, -0.004946055822074413, 0.012871276587247849, -0.006336332764476538, -0.0038248642813414335, 0.0008376901387237012, 0.008277595974504948, -0.0012573359999805689, 0.004792292136698961, -0.026101335883140564, 0.05643116310238838, -0.026152590289711952, 0.0628892257809639, 0.038184575736522675, 0.01700366847217083, -0.01646549627184868, 0.020527413114905357, 0.024256175383925438, 0.0021046362817287445, 0.010411063209176064, -0.03467364236712456, -0.0008076582453213632, -0.0009522118489257991, 0.011423338204622269, 0.001514409203082323, -0.019143542274832726, -0.011051743291318417, 0.02446119301021099, -0.026882965117692947, 0.002493849955499172, -0.016888344660401344, 0.0018307453719899058, -0.003872915403917432, -0.012288257479667664, -0.03490428999066353, -0.019130729138851166, -0.03369981050491333, -0.0037832199595868587, -0.014210299588739872, 0.0002857036015484482, -0.0032498533837497234, -0.02243664115667343, -0.03193153068423271, -0.029855724424123764, -0.016824277117848396, -0.0321878045797348, 0.010238079354166985, -0.004097153432667255, 0.005394532345235348, -0.03690321370959282, -0.022936372086405754, 0.03134210407733917, 0.005308040417730808, 0.016068274155259132, -0.019412627443671227, 0.000780829694122076, -0.012525309808552265, 0.028036192059516907, -0.009488482028245926, 0.043386902660131454, -0.010033060796558857, -0.006874504964798689, -0.018656624481081963, 0.002186323283240199, -0.037338875234127045, 0.025998827069997787, 0.00691294576972723, -0.0023320780601352453, -0.00015636614989489317, -0.015440407209098339, 0.012909717857837677, -0.020553039386868477, 0.016273291781544685, -0.01642705500125885, 0.021757518872618675, -0.0016753802774474025, 0.01810563914477825, 7.86836098995991e-05, -0.0009514109697192907, 0.0019861103501170874, -0.013172397390007973, -0.009590991772711277, 0.00022724147129338235, 0.0047826822847127914, -0.005215141456574202, -0.014748471789062023, -0.004202865995466709, 0.045411452651023865, -0.006932165939360857, -0.012243409641087055, -0.027856800705194473, -0.02192409709095955, 0.00819430686533451, 0.0005710067343898118, -0.022654471918940544, 0.022244436666369438, -0.019989240914583206, -0.045078299939632416, -0.003283489029854536, 0.006695114076137543, 0.03364855423569679, 0.006156942341476679, -0.01906665973365307, -0.019246051087975502, -0.02708798460662365, -0.008444172330200672, 0.07621538639068604, 0.009443635120987892, -0.002721291733905673, 0.041644252836704254, 0.015645423904061317, -0.010289333760738373, -0.0027741477824747562, -0.007041081786155701, -0.021501246839761734, 0.0019989239517599344, -0.05225392431020737, 0.025242822244763374, 0.04013224318623543, -0.018861642107367516, -0.00907204020768404, -0.025460654869675636, 0.009738348424434662, 0.036160022020339966, 0.008258375339210033, 0.009834449738264084, 0.026447303593158722, -0.04236181452870369, 0.0044527314603328705, -0.01760590821504593, -0.010462317615747452, 0.002562723122537136, 0.00938597321510315, -0.011487406678497791, -0.0033027094323188066, 0.009661465883255005, -0.01613234169781208, -0.013556805439293385, -0.00526639586314559, 0.023461731150746346, 0.006855284329503775, 0.00026748422533273697, 0.020860565826296806, 0.001963686663657427, 0.026062894612550735, 0.016593633219599724, -0.022667286917567253, -0.01281361561268568, -0.026024453341960907, 0.0006474879919551313, 0.01538915280252695, 0.02191128209233284, -0.018003130331635475, -0.019745782017707825, 0.008597936481237411, 0.014171859249472618, 0.01081469189375639, -0.0024634175933897495, -0.0077522373758256435, -0.010789064690470695, -0.026344794780015945, -0.0028686481527984142, 0.0060800607316195965, 0.002524282317608595, -0.011596322059631348, 0.004443121142685413, -0.02134748362004757, 0.026626693084836006, -0.036441922187805176, -0.005660414695739746, 0.0059070768766105175, -0.007047488819807768, 0.04261808469891548, 0.0029407248366624117, -0.011910255998373032, -0.03926092013716698, -0.028625616803765297, -0.024384310469031334, 0.012185748666524887, 0.03833833709359169, 0.010564826428890228, 0.01483816746622324, -0.030137624591588974, 0.0066566732712090015, 0.006631046067923307, -0.008802954107522964, -0.012858463451266289, -0.02798493765294552, -0.0042349002324044704, 0.037620775401592255, -0.029906978830695152, -0.021539688110351562, 0.028113072738051414, -0.0019380593439564109, 0.0017154228407889605, 0.03628816083073616, 0.016773022711277008, 0.013159583322703838, 0.008841394446790218, -0.02564004436135292, -0.01107096392661333, 0.0011596322292461991, -0.016657700762152672, -0.019399814307689667, 0.0069898273795843124, -0.010282926261425018, 0.03167525678873062, 0.0062530445866286755, -0.028830636292696, 0.01819533482193947, 0.0007848339737392962, 0.017529025673866272, -0.005711669102311134, -0.030445151031017303, -0.006361960433423519, 0.024435564875602722, 0.008706851862370968, -0.007598474156111479, 0.014761284925043583, 0.0038216609973460436, -0.0018531691748648882, -0.02877938188612461, 0.0064420453272759914, -0.024589328095316887, -0.002589951967820525, 0.014287181198596954, -0.001670575118623674, -0.014223113656044006, 0.02106558345258236, 0.019258864223957062, 0.010065095499157906, 0.023794883862137794, -0.01870787888765335, -0.006349146831780672, -0.012480461969971657, -0.03882525488734245, 0.01239076629281044, 0.0006851280340924859, -0.010776250623166561, 0.024717465043067932, 0.012544529512524605, -0.03136773034930229, -0.002652418566867709, 0.014492199756205082, 0.033879201859235764, -0.018490048125386238, 0.010616080835461617, 0.0002582744346000254, 0.009860076941549778, 0.010270113125443459, 0.0038504914846271276, 0.023846138268709183, -0.02101432904601097, 0.008546682074666023, 0.002260001376271248, -0.008213527500629425, -0.034109845757484436, 0.010199638083577156, -0.009341126307845116, 0.05033188313245773, -0.022308504208922386, 0.025255637243390083, -0.0009514109697192907, 0.009257837198674679, 0.026626693084836006, -0.019169168546795845, -0.006070450413972139, 0.002934318035840988, 0.003552574897184968, -0.016632072627544403, 0.05102381855249405, -0.021244974806904793, -0.0017698806477710605, 0.012672665528953075, -0.021257787942886353, -0.002604367444291711, -0.04125984385609627, -0.038517728447914124, 0.0105263851583004, -0.0021815181244164705, -0.020553039386868477, -0.009257837198674679, 0.005333667621016502, 0.006842470727860928, -0.045667726546525955, -0.02480716072022915, -0.014889421872794628, 0.021193720400333405, 0.00011822562373708934, -0.034109845757484436, -0.012493275105953217, -0.014863794669508934, 0.005099819041788578, -0.02274416759610176, 0.05571360141038895, -0.03080393187701702, -0.018361911177635193, -0.020283954218029976, 0.00010431084228912368, -0.02191128209233284, 0.04674407094717026, 0.011839780956506729, 0.003153751138597727, 0.01267907302826643, 0.018810387700796127, 0.005336870905011892, -0.013902773149311543, -0.021142465993762016, 0.0146844033151865, -0.006025602575391531, 0.004715410526841879, -0.0064420453272759914, 0.009571771137416363, 0.00034716891241259873, 0.023448916152119637, -0.00937316007912159, 0.001239717355929315, -0.011346456594765186, 0.01610671542584896, 0.02565285935997963, 0.017926247790455818, -0.007592067122459412, -0.005010123830288649, -0.006333129480481148, 0.0031825818587094545, -0.033392284065485, -0.01905384659767151, -0.013249278999865055, 0.02826683595776558, -0.003671100828796625, -0.02365393377840519, -0.023987088352441788, 0.017746858298778534, 0.02683171071112156, 0.015978578478097916, 0.0007548020803369582, 0.0057372963055968285, 0.008706851862370968, -0.02765178307890892, 0.020540226250886917, -0.0055643124505877495, -0.008604343049228191, 0.026396049186587334, -0.0001820934994611889, -0.0207196157425642, -0.013089108280837536, 0.004949259106069803, -0.0074254903011024, -0.02358986623585224, -0.012057612650096416, -0.010481537319719791, 0.009738348424434662, 0.02826683595776558, -0.01845160685479641, -0.0198482908308506, -0.023794883862137794, -0.015363525599241257, -0.026652321219444275, 0.01643986813724041, -0.013889959082007408, 0.026421675458550453, -0.01647830940783024, -0.004097153432667255, -0.027805546298623085, 0.018656624481081963, -0.019079474732279778, -0.006006382405757904, -0.014364062808454037, 0.026421675458550453, -0.0004176437796559185, 0.0007475944003090262, 0.030111996456980705, -0.018528487533330917, -0.01963046006858349, -0.017939062789082527, 0.012544529512524605, 0.0024778328370302916, -0.04484765604138374, -0.00805335771292448, -0.005807771347463131, -0.027856800705194473, 0.022616032510995865, 0.03546808660030365, -0.03918403759598732, 0.029266297817230225, 0.011782119981944561, -0.016516750678420067, 0.012371545657515526, -0.02074524387717247, -0.0015664645470678806, 0.03951719030737877, -0.009552550502121449, -0.025845063850283623, 0.0051574804820120335, 0.035852495580911636, -0.005875042639672756, 0.016606446355581284, 0.0038120506796985865, -0.011000488884747028, 0.00036018271930515766, 0.02852310799062252, 0.042489949613809586, 0.007290947251021862, 0.026447303593158722, -0.004129187669605017, -0.008027730509638786, -0.017157431691884995, 0.0032995061483234167, 0.008988751098513603, -0.004990903194993734, -0.02132185734808445, -0.0027148849330842495, -0.0014967904426157475, 0.03226468339562416, 0.009040005505084991, -0.01399246882647276, -0.014569081366062164, -0.012051205150783062, -0.036980096250772476, -0.023474544286727905, 0.012108867056667805, -0.0014183070743456483, 0.00691294576972723, -0.02218036912381649, 0.0018595759756863117, 0.025204382836818695, 0.02271854132413864, -0.006554164458066225, 0.021129652857780457, -0.034699272364377975, 0.07539531588554382, -0.031829021871089935, -0.006416418123990297, -0.0073934560641646385, -0.015952952206134796, 0.015914510935544968, 0.017785299569368362, -0.004673766437917948, 0.05925016105175018, -0.01251890230923891, -0.007085929624736309, 0.0204505305737257, -0.0048307329416275024, 0.015606983564794064, 0.026703575626015663, -0.011006896384060383, -0.0017170244827866554, 0.0001968091237358749, -0.009738348424434662, 0.010065095499157906, -0.017375262454152107, 0.018233776092529297, 0.03226468339562416, 0.012659852392971516, -0.032751601189374924, 0.013076295144855976, 0.06519567966461182, 0.018361911177635193, 0.004302171524614096, 0.006172959227114916, 0.02098870277404785, 0.008078984916210175, 0.002934318035840988, -0.0179006215184927, 0.011026116088032722, -0.018502861261367798, 0.002216755412518978, 0.039619699120521545, 0.003376387758180499, 0.0002833010221365839, 0.027318628504872322, -0.02854873612523079, 0.01761872135102749, -0.028113072738051414, -0.005913483444601297, 0.01783655397593975, -0.001896415138617158, 0.0037992370780557394, -0.008597936481237411, -0.008463392965495586, -0.006413214839994907, -0.030368268489837646, -0.02332078106701374, -0.016337359324097633, -0.01932293176651001, 0.04028600826859474, 0.03159837797284126, -0.029573824256658554, 0.016849905252456665, -0.04782041534781456, 0.020553039386868477, -0.008886242285370827, 0.015671052038669586, -0.004648139234632254, 0.04584711790084839]], "input": ["# Pet Transportation Regulations in Israel\n\nThe community focuses on the regulatory framework governing the transportation of pets in Israel, primarily involving the Ministry of Agriculture, Veterinary Services Department, and the authorization process required for compliance. The relationships among these entities highlight the structured approach to ensuring the health and safety of animals during transport.\n\n## Role of the Ministry of Agriculture\n\nThe Ministry of Agriculture serves as the primary regulatory authority overseeing pet transportation in Israel. It establishes the necessary regulations and guidelines that must be adhered to by all entities involved in the transportation process. This includes ensuring that all procedures align with health and safety standards for animals. The Ministry's involvement is crucial as it directly impacts the legal framework within which pet transportation operates, making compliance essential for all stakeholders. [Data: Relationships (0, 1, 3, 4, 2)]\n\n## Importance of Authorization\n\nAuthorization from the Ministry of Agriculture is a mandatory requirement for transporting animals, including pets. This authorization ensures that all transport activities comply with established regulations, thereby safeguarding animal welfare. Without this authorization, individuals or entities are prohibited from legally transporting animals, highlighting the significance of this process in maintaining standards within the community. [Data: Entities (8), Relationships (1)]\n\n## Veterinary Services Department's role\n\nThe Veterinary Services Department operates under the Ministry of Agriculture and is responsible for managing the regulations related to pet transportation. This department plays a critical role in the authorization process, ensuring that all health and safety protocols are followed. Their oversight is vital for the welfare of animals during transport, as they conduct necessary inspections and assessments. [Data: Relationships (4, 113)]\n\n## Animal Tests as a compliance measure\n\nAnimal tests are a key component of the authorization process for transporting pets. These tests are conducted to ensure the health and safety of animals during their journey, reflecting the community's commitment to animal welfare. The requirement for these tests underscores the rigorous standards that must be met before any transport can occur, thereby enhancing the overall safety of the process. [Data: Entities (9), Relationships (2, 112)]\n\n## Interconnectedness of entities\n\nThe relationships among the Ministry of Agriculture, Veterinary Services Department, and the authorization process illustrate a well-structured regulatory framework. Each entity plays a specific role that contributes to the overall effectiveness of pet transportation regulations. This interconnectedness ensures that all aspects of animal transport are covered, from initial authorization to compliance with health standards, thereby reinforcing the community's integrity. [Data: Relationships (0, 1, 4)]", "# EL AL Business Cabin Pet Transport\n\nThe community focuses on the EL AL Business Cabin, which allows for the transportation of pets under specific conditions. The relationships highlight the necessity of prior approval for transporting animals, particularly pets, emphasizing the regulatory framework governing this service.\n\n## Business Cabin as a designated transport area\n\nThe Business Cabin is specifically designed for the transportation of animals, including pets, under certain conditions. This indicates a specialized service that caters to pet owners, enhancing the travel experience for those who wish to bring their pets along. However, the requirement for prior approval suggests that there are limitations and regulations that must be adhered to, which could impact customer satisfaction and operational efficiency. [Data: Entities (31), Relationships (18)]\n\n## Approval requirement for pet transport\n\nApproval from the EL AL service center is a critical requirement for transporting pets in the Business Cabin. This policy ensures that all necessary protocols are followed, which is essential for the safety and well-being of the animals during travel. The need for approval may also serve as a barrier for some pet owners, potentially affecting their decision to travel with EL AL. [Data: Entities (39), Relationships (140)]\n\n## Specific conditions for pet transport\n\nPets weighing up to 9 kg can be transported in the Business Cabin with prior approval. This weight limit indicates a targeted service for smaller pets, which may appeal to a specific segment of travelers. However, it also restricts larger animals from being transported, which could limit the customer base for this service. Understanding these conditions is crucial for both the airline and pet owners when planning travel. [Data: Relationships (79)]\n\n## Regulatory framework governing pet transport\n\nThe relationships between the entities highlight a regulatory framework that governs the transport of pets in the Business Cabin. This framework includes the necessity of prior approval and specific conditions for pet transport, which are essential for compliance and operational integrity. The existence of such regulations underscores the importance of maintaining safety standards and customer trust in the airline's services. [Data: Relationships (18, 140)]", "# Israel's Animal Transport Regulations and EL AL Cargo\n\nThe community focuses on Israel's regulations regarding the transport of animals, particularly through the EL AL Cargo Store, which plays a crucial role in facilitating these operations. The entities are interconnected through various regulations and services that ensure compliance with health and safety standards for animal transport.\n\n## Israel's role as a high-risk country for animal transport\n\nIsrael is classified as a high-risk country for the transport of animals, particularly dogs, which imposes specific regulations that must be adhered to by travelers. This classification affects how animals are transported and the necessary permits required for their movement. The Centers for Disease Control and Prevention (CDC) has designated Israel as a high-risk country, which influences the protocols that must be followed to ensure public health and safety during animal transport [Data: Entities (48); Relationships (124, 126)].\n\n## EL AL Cargo Store's significance in animal transport\n\nThe EL AL Cargo Store is a dedicated facility that provides essential services for transporting animals from Israel to various international destinations. This facility is crucial for ensuring that animals are handled properly during transit, adhering to the regulations set forth by the Ministry of Agriculture and the Ministry of Health. The store's operations are vital for maintaining the integrity of animal transport and ensuring compliance with international standards [Data: Entities (13); Relationships (123)].\n\n## Ministries' oversight in animal transport regulations\n\nThe Ministry of Agriculture and the Ministry of Health in Israel play pivotal roles in regulating the transport of animals. The Ministry of Agriculture oversees the necessary permits and conditions for pet transportation, while the Ministry of Health is responsible for ensuring that animals entering the country meet health standards. This dual oversight is essential for safeguarding public health and animal welfare during transport [Data: Entities (53); Relationships (3, 125)].\n\n## Specific guidelines for transporting service dogs\n\nIsrael has established specific requirements for the transport of service dogs, which must be strictly followed by passengers. These guidelines are crucial for ensuring that service dogs are transported safely and in compliance with health regulations. The relationship between service dogs and the regulations set by the Ministry of Agriculture highlights the importance of adhering to these protocols to avoid potential health risks [Data: Relationships (59)].\n\n## Guidelines for carrying liquids in carry-on bags\n\nIsrael has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions are part of broader security measures that ensure passenger safety and compliance with international aviation standards. Understanding these guidelines is essential for travelers to avoid complications during check-in and boarding [Data: Relationships (127)].", "# Baggage Management Community\n\nThe Baggage Management Community encompasses various entities involved in the handling, tracking, and claims process related to passenger baggage. Key entities include airlines, baggage service centers, and documentation necessary for managing baggage issues, all of which are interconnected to ensure a smooth travel experience for passengers.\n\n## EL AL's role in baggage management\n\nEL AL is a central entity in the baggage management community, responsible for managing baggage and addressing various issues such as delays, damages, and claims. As the airline, EL AL's policies and efficiency directly affect passenger experiences. The airline's commitment to handling baggage issues is crucial for maintaining customer satisfaction and operational integrity. Any shortcomings in their baggage management can lead to significant passenger complaints and operational challenges, impacting the airline's reputation and financial performance. [Data: Relationships (24, 193)]\n\n## Importance of the Baggage Service Center\n\nThe Baggage Service Center plays a vital role in assisting travelers with baggage-related issues, including delays and damages. This center serves as a crucial resource for passengers seeking support and resolution for their baggage concerns. The effectiveness of the Baggage Service Center can significantly influence passenger satisfaction, as it is often the first point of contact for travelers facing baggage problems. A well-functioning service center can mitigate negative experiences, while inefficiencies can exacerbate issues, leading to increased frustration among passengers. [Data: Relationships (186)]\n\n## Documentation requirements for baggage claims\n\nPassengers must provide specific documentation when filing claims for lost or damaged baggage, including flight tickets, boarding passes, baggage tags, and damage reports. These documents are essential for validating claims and ensuring that the process is handled efficiently. The requirement for thorough documentation underscores the importance of proper record-keeping by both passengers and airlines. Failure to provide the necessary documents can result in claim denials, further complicating the resolution process and potentially leading to legal disputes. [Data: Relationships (194, 195, 196, 197, 198)]\n\n## Baggage claim area as a critical touchpoint\n\nThe baggage claim area is where travelers report issues related to their baggage and receive assistance from airline representatives. This area is a critical touchpoint for passenger interaction with airline staff and can significantly influence overall travel experience. Efficient handling of baggage issues in this area can enhance customer satisfaction, while delays or poor service can lead to negative perceptions of the airline. The baggage claim area serves as a reflection of the airline's commitment to customer service and operational efficiency. [Data: Relationships (189)]\n\n## Impact of baggage policies on passenger experience\n\nBaggage policies govern the rules regarding what types of baggage are allowed and the associated fees. These policies can greatly affect passenger experience, as unclear or overly restrictive baggage rules can lead to confusion and dissatisfaction. Airlines must balance the need for operational efficiency with customer service, ensuring that policies are communicated clearly and enforced fairly. Poorly designed baggage policies can result in increased complaints and a negative impact on the airline's reputation. [Data: Relationships (200)]", "# Baggage Service Community\n\nThe Baggage Service Community is centered around the Baggage Service Center, which manages various issues related to baggage, including delays, damages, and forgotten items. The community includes essential entities such as the Claims Department and contact details for travelers, highlighting the interconnectedness of services aimed at assisting passengers with baggage-related concerns.\n\n## Central role of the Baggage Service Center\n\nThe Baggage Service Center is the primary entity in this community, responsible for managing a wide range of baggage-related issues. It serves as a crucial resource for travelers facing challenges such as delayed or damaged baggage. The center's operations are vital for maintaining passenger satisfaction and ensuring that issues are resolved efficiently. The relationships it holds with other entities, such as the Claims Department and various baggage processes, underscore its importance in the overall baggage management system. [Data: Entities (113), Relationships (186, 222, 223, 228, 230, +more)]\n\n## Importance of contact details for travelers\n\nThe contact details provided for the Baggage Service Center are essential for travelers seeking assistance. These details include phone numbers and WhatsApp chat options, which facilitate immediate communication for reporting baggage issues. The availability of such contact methods is crucial for ensuring that passengers can quickly address their concerns, thereby enhancing the overall travel experience. The relationship between the contact details and the Baggage Service Center highlights the importance of accessibility in service delivery. [Data: Entities (118), Relationships (188, 233)]\n\n## Claims Department's role in baggage management\n\nThe Claims Department is integral to the baggage management process, coordinating with the Baggage Service Center to process claims related to lost or damaged baggage. This collaboration ensures that passengers receive timely updates and resolutions regarding their claims, which is essential for maintaining trust and satisfaction among travelers. The relationship between the Claims Department and the Baggage Service Center emphasizes the importance of effective communication and coordination in handling baggage issues. [Data: Entities (202), Relationships (222, 232)]\n\n## Processes for handling delayed baggage\n\nDelayed baggage is a common issue faced by travelers, and the Baggage Service Center plays a critical role in managing reports and claims associated with this problem. Passengers are advised to report delayed baggage immediately to facilitate its recovery. The structured process for handling delayed baggage, including the issuance of baggage reports, is vital for ensuring that travelers can retrieve their belongings efficiently. This highlights the importance of prompt action in baggage management. [Data: Entities (115, 122), Relationships (223, 249)]\n\n## Assistance with forgotten items\n\nThe Baggage Service Center also assists travelers with forgotten items left on board aircraft. This service is crucial for helping passengers recover personal belongings that may have been inadvertently left behind. The center's role in managing forgotten items underscores its comprehensive approach to baggage services, ensuring that all aspects of baggage management are addressed. This service can significantly impact traveler satisfaction and the overall perception of the airline's customer service. [Data: Entities (121), Relationships (226)]", "# Oversized and Overweight Baggage Management\n\nThe community focuses on the management of oversized and overweight baggage within the airline industry. It includes key entities such as oversized and overweight baggage and the designated location for handling such baggage, highlighting their interrelated roles in ensuring proper processing and compliance with airline regulations.\n\n## Definition and implications of oversized and overweight baggage\n\nOversized and overweight baggage refers to luggage that exceeds standard airline size and weight limits, necessitating special handling procedures. This category of baggage can lead to additional fees and operational challenges for airlines, impacting customer experience and efficiency. The need for special handling can create bottlenecks in the check-in process, leading to longer wait times for passengers and potential flight delays. [Data: Entities (340); Relationships (199)]\n\n## Role of the designated baggage location\n\nThe designated oversized/overweight baggage location is critical for managing the check-in process for passengers with such baggage. This location serves as a specific point for handling oversized and overweight items, ensuring that they are processed appropriately. By centralizing the handling of these items, airlines can streamline operations and reduce confusion among passengers, thereby enhancing overall travel experience. [Data: Entities (342); Relationships (323, 403, 417)]\n\n## Interconnectedness of baggage categories\n\nThe relationships between oversized baggage, overweight baggage, and the designated baggage location illustrate the interconnected nature of baggage management. Passengers with either type of baggage must utilize the designated location for check-in, which emphasizes the importance of clear signage and communication from airlines to avoid misunderstandings. This interconnectedness can also lead to operational challenges if not managed effectively, as multiple passengers may arrive simultaneously with oversized or overweight items. [Data: Relationships (323, 403, 417)]\n\n## Potential for additional fees\n\nPassengers with oversized and overweight baggage often incur additional fees, which can lead to dissatisfaction and complaints. Airlines must balance the need to enforce baggage policies with the importance of customer service. Clear communication regarding fees and policies at the time of booking and check-in can mitigate negative experiences and enhance customer satisfaction. [Data: Entities (340); Relationships (199)]\n\n## Operational challenges in baggage handling\n\nThe handling of oversized and overweight baggage presents unique operational challenges for airlines. These items require special equipment and procedures, which can strain resources, especially during peak travel times. Airlines must ensure that staff are adequately trained to manage these items efficiently to minimize delays and maintain a positive customer experience. [Data: Relationships (323, 403, 417)]", "# Lost Baggage Claims Community\n\nThe community focuses on the processes and systems related to lost baggage claims, primarily involving the Lost Baggage Report Number and Claim Status. These entities are interconnected, providing travelers with essential tools to track and manage their baggage claims effectively.\n\n## Importance of the Lost Baggage Report Number\n\nThe Lost Baggage Report Number is a critical identifier for travelers seeking updates on their lost baggage claims. This unique 10-character identifier allows individuals to check the status of their claims, ensuring they can track the progress of their lost items. The existence of this system is vital for maintaining customer satisfaction and trust in airline services. Without it, travelers would face significant challenges in retrieving their belongings, leading to frustration and potential financial loss. [Data: Entities (119); Relationships (191, 250)]\n\n## Role of Claim Status in the baggage claim process\n\nClaim Status refers to the current state of a baggage claim, which can be checked using the Lost Baggage Report Number. This process is facilitated through a worldwide system managed by the Baggage Service Center, allowing travelers to stay informed about their claims. The ability to check claim status is essential for travelers, as it provides peace of mind and helps them plan accordingly while dealing with the inconvenience of lost baggage. [Data: Entities (116); Relationships (224, 250)]\n\n## Interconnection between Lost Baggage Report Number and Claim Status\n\nThe relationship between the Lost Baggage Report Number and Claim Status is crucial for the effective management of lost baggage claims. Travelers must use the report number to verify the status of their claims, highlighting the importance of accurate and timely information. This interconnection ensures that travelers can efficiently navigate the claims process, reducing the time and effort required to resolve issues related to lost baggage. [Data: Relationships (191, 250)]\n\n## Baggage Service Center's role in managing claims\n\nThe Baggage Service Center plays a pivotal role in the lost baggage claims process by providing a worldwide system for checking claim status. This centralized service allows travelers to access information about their claims from anywhere, enhancing the overall customer experience. The effectiveness of the Baggage Service Center directly impacts how quickly and efficiently travelers can resolve issues related to lost baggage, making it a key player in this community. [Data: Relationships (224)]", "# Courier Service and Baggage Delivery\n\nThe community is centered around the Courier Service and Baggage Delivery, which work together to ensure that delayed baggage is delivered to passengers' specified addresses. The relationship between these entities highlights their collaborative role in enhancing the travel experience by addressing baggage delays.\n\n## Role of the Courier Service\n\nThe Courier Service is a critical entity in this community, responsible for delivering retrieved delayed baggage to passengers. This service plays a vital role in alleviating the inconvenience caused by baggage delays, ensuring that travelers receive their belongings promptly. The efficiency and reliability of the Courier Service directly impact customer satisfaction and the overall travel experience. [Data: Entities (117); Relationships (187, 251)]\n\n## Importance of Baggage Delivery\n\nBaggage Delivery is an essential service that ensures retrieved baggage is sent to the passenger's specified address. This service is crucial for maintaining the flow of travel logistics, especially in cases of delays. The relationship between Baggage Delivery and the Courier Service underscores the importance of timely and efficient baggage handling in the travel industry. [Data: Entities (126); Relationships (187)]\n\n## Collaboration between entities\n\nThe relationship between the Courier Service and Baggage Delivery illustrates a collaborative effort to enhance the travel experience. The Courier Service is tasked with the delivery of baggage after it has been retrieved, which highlights the interdependence of these entities. This collaboration is vital for ensuring that passengers do not face prolonged inconveniences due to baggage delays. [Data: Relationships (187, 251)]\n\n## Impact on customer satisfaction\n\nThe services provided by the Courier Service and Baggage Delivery significantly impact customer satisfaction. By ensuring that delayed baggage is delivered promptly, these entities help mitigate the stress and frustration that can arise from travel disruptions. Their effectiveness in handling such situations can enhance the reputation of the airlines and travel companies involved. [Data: Relationships (187, 251)]", "# EL AL Israel Airlines and Baggage Liability\n\nThe community centers around EL AL Israel Airlines, which is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability. The relationships with various items such as fragile, perishable, and valuable items highlight the airline's liability limitations and contractual obligations.\n\n## EL AL Israel Airlines' responsibility for baggage claims\n\nEL AL Israel Airlines plays a crucial role in managing baggage claims, which is a significant aspect of its operations. The airline is tasked with ensuring compliance with international conventions regarding baggage liability, which adds a layer of legal responsibility. This responsibility is critical as it directly affects customer satisfaction and the airline's reputation. Failure to manage baggage claims effectively can lead to legal disputes and financial repercussions for the airline. [Data: Entities (250), Relationships (193)]\n\n## Contract of carriage outlines liability terms\n\nThe contract of carriage is a fundamental document that outlines the terms and conditions under which EL AL Israel Airlines operates, particularly concerning baggage liability. This contract serves as a legal framework that defines the airline's obligations and the limitations of its liability. Understanding this contract is essential for both the airline and its customers, as it sets expectations regarding what can be claimed in the event of lost or damaged baggage. [Data: Entities (260), Relationships (361)]\n\n## Liability limitations for fragile items\n\nEL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged. This limitation is significant as it informs customers about the risks associated with traveling with fragile items. The airline's policy on fragile items can impact customer decisions and may lead to dissatisfaction if expectations are not clearly communicated. This aspect of liability is crucial for maintaining trust and transparency with customers. [Data: Entities (256), Relationships (357)]\n\n## Liability limitations for perishable items\n\nSimilar to fragile items, EL AL Israel Airlines may also refuse to accept liability for perishable items if they are lost or damaged. This policy is important for customers who may be traveling with food or other perishable goods. The airline's stance on perishable items can affect customer choices and their overall experience, especially if they are not adequately informed about these limitations prior to travel. [Data: Entities (257), Relationships (358)]\n\n## Liability limitations for valuable items\n\nThe airline's policy regarding valuable items, which include cash, jewelry, and electronics, indicates that EL AL Israel Airlines may refuse to accept liability for these items if they are lost or damaged. This limitation is particularly relevant for travelers carrying high-value goods, and it underscores the importance of understanding the airline's liability policies. Customers need to be aware of these limitations to avoid potential losses and dissatisfaction. [Data: Entities (258), Relationships (359)]\n\n## International conventions governing liability\n\nInternational conventions play a vital role in governing the liability of carriers like EL AL Israel Airlines regarding baggage claims. These legal frameworks establish the baseline for liability and ensure that airlines adhere to certain standards. Understanding these conventions is essential for both the airline and its customers, as they provide a legal context for baggage claims and the airline's responsibilities. [Data: Entities (259), Relationships (360)]", "# Baggage Claims Community\n\nThe Baggage Claims Community is centered around the Baggage Claims Department, which coordinates with various service providers and cities to manage baggage issues. Key entities include service providers like WeShoes, Memsi Touring, and Shin Tik, as well as cities such as Kiryat Ono and Ramat Gan, which host stores related to baggage services.\n\n## Central role of the Baggage Claims Department\n\nThe Baggage Claims Department is the core entity in this community, responsible for managing reports of damaged baggage and processing claims. This department plays a crucial role in ensuring that passengers receive assistance and compensation for baggage issues, which is vital for maintaining customer satisfaction in the travel industry. The department's relationships with various service providers and cities enhance its operational capabilities, making it a pivotal player in the baggage handling ecosystem. [Data: Entities (114); Relationships (222, 235, 240, 236, 238, +more)]\n\n## Diverse service providers supporting baggage claims\n\nMultiple service providers, including WeShoes, Memsi Touring, and Shin Tik, are linked to the Baggage Claims Department, offering various services that assist with baggage handling and claims. These providers contribute to the efficiency of the claims process by offering specialized services that can expedite the resolution of baggage issues. Their involvement is crucial for the department's ability to manage claims effectively, thereby enhancing the overall travel experience for passengers. [Data: Entities (208, 209, 211); Relationships (238, 239, 241, 242, +more)]\n\n## Importance of the Digital Contact Form\n\nThe Digital Contact Form is a key tool used by passengers to report baggage issues to the Baggage Claims Department. This form streamlines the claims process, allowing for quicker reporting and resolution of baggage problems. Its integration into the claims management system is essential for improving passenger experience, as it provides a user-friendly method for submitting claims. [Data: Entities (206); Relationships (236)]\n\n## Geographical distribution of baggage-related services\n\nCities such as Kiryat Ono, Ramat Gan, Gevataim, and others host various stores and services related to baggage handling. This geographical distribution indicates a well-established network of support for the Baggage Claims Department, allowing passengers to access assistance and services conveniently. The presence of these cities in the community highlights the importance of local partnerships in enhancing the efficiency of baggage claims processing. [Data: Entities (213, 214, 215, 216, 217, 218); Relationships (243, 244, 245, 246, 247, 248)]\n\n## Collaboration with airlines\n\nThe Baggage Claims Department operates under EL AL Israel Airlines Ltd., which emphasizes the department's role in the airline's customer service strategy. This collaboration ensures that baggage issues are addressed promptly, reflecting the airline's commitment to passenger satisfaction. The relationship with the airline is critical for the department's operational success, as it aligns the baggage claims process with the airline's overall service standards. [Data: Relationships (235)]", "# Ben Gurion Airport and Animal Transport Community\n\nThe community centers around Ben Gurion Airport, which serves as the primary hub for animal transport in Israel, particularly through EL AL Israel Airlines and the Veterinary Services that manage the authorization process for transporting pets. The interconnections among these entities highlight the regulatory and operational framework governing animal transport.\n\n## Ben Gurion Airport as a central hub for animal transport\n\nBen Gurion Airport is the main international airport in Israel and plays a crucial role in the transport of animals, particularly pets. It serves as the primary location where animals are released after transport, making it a key entity in the community. The airport's operations are closely linked with EL AL Israel Airlines and the Veterinary Services, which oversee the necessary regulations for animal transport. This centrality means that any issues at the airport could have widespread implications for animal welfare and compliance with transport regulations. [Data: Entities (54), Relationships (19, 131, 184)]\n\n## Role of EL AL Israel Airlines in animal transport\n\nEL AL Israel Airlines Ltd. is a significant player in this community, operating flights that include the transport of animals. The airline is responsible for managing baggage claims, which includes pets, and ensuring that animals are released at Ben Gurion Airport. The relationship between EL AL and the airport is vital for understanding how animal transport is facilitated, and any operational disruptions could impact the safe transport of animals. [Data: Entities (205), Relationships (19, 184)]\n\n## Veterinary Services' regulatory oversight\n\nThe Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes issuing flight permits and ensuring compliance with health regulations. Their role is critical in maintaining the safety and welfare of animals during transport, and any lapses in this process could lead to significant public health concerns. The Veterinary Services' relationship with Ben Gurion Airport underscores their importance in the community. [Data: Entities (18), Relationships (131, 4)]\n\n## Authorization process for animal transport\n\nThe authorization process is a key component of the community, involving obtaining necessary permits and performing animal tests before transport. This process is managed by the Veterinary Services to ensure compliance with regulations. The effectiveness of this process directly impacts the safety and legality of animal transport, making it a critical area of focus for stakeholders involved in this community. [Data: Entities (20), Relationships (130)]\n\n## Interconnectedness of entities\n\nThe relationships among Ben Gurion Airport, EL AL Israel Airlines, and Veterinary Services illustrate a complex network of interdependencies that are essential for the smooth operation of animal transport. Each entity plays a specific role that contributes to the overall functionality of the community, and disruptions in one area can have cascading effects on the others. Understanding these relationships is crucial for stakeholders to navigate potential challenges in animal transport. [Data: Relationships (19, 131, 184)]", "# Animal Transport Documentation in Israel\n\nThe community focuses on the essential documentation required for the transportation of animals to and from Israel, including the Certificate of Good Health and the Rabies Antibody Test. These entities are interconnected through various relationships that outline the requirements for compliance with regulations governing animal transport.\n\n## Importance of Documentation for Animal Transport\n\nThe entity 'DOCUMENTS' encompasses all essential paperwork required for transporting animals to and from Israel. This includes specific documents necessary for obtaining authorization to transport an animal into the country. The requirement for passengers to have all necessary documentation readily available is crucial for compliance with regulations regarding animal transport. Failure to complete these documents can lead to significant delays or denial of transport, impacting both the animals and their owners. [Data: Entities (60), Relationships (66, 132, 202, 180, 185)]\n\n## Role of the Certificate of Good Health\n\nThe 'CERTIFICATE OF GOOD HEALTH' is a vital document required for transporting pets, ensuring that they are fit for travel. This certificate confirms the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey. The relationships with the Cargo Division and Veterinary Services Department highlight its necessity, as these entities require this certificate for compliance with transport regulations. [Data: Entities (43), Relationships (115, 151, 180)]\n\n## Rabies Antibody Test Requirement\n\nThe 'RABIES ANTIBODY TEST' is a specific requirement to confirm that the animal has been vaccinated against rabies. This test is crucial for ensuring public health and safety, as rabies is a serious disease that can be transmitted to humans. The relationship between the rabies test and the documentation required for transport emphasizes the importance of this test in the overall compliance process. [Data: Entities (55), Relationships (185)]\n\n## Interconnectedness of Documentation Entities\n\nThe relationships among the entities highlight the interconnectedness of the documentation required for animal transport. For instance, the Certificate of Good Health is linked to both the DOCUMENTS entity and the Rabies Antibody Test, indicating that these documents must be completed in conjunction to ensure compliance. This interconnectedness underscores the complexity of the requirements for transporting animals and the need for thorough preparation by passengers. [Data: Relationships (66, 115, 151, 180, 185)]\n\n## Passenger Responsibilities\n\nPassengers are required to have all necessary documents available for their flight, which includes the completion of the DOCUMENTS entity. This responsibility places a significant burden on pet owners, as they must ensure that all paperwork is in order before travel. The potential for oversight in documentation can lead to complications during travel, emphasizing the importance of awareness and preparation among passengers. [Data: Relationships (202)]", "# Lithium-Ion Battery Regulations and Transport\n\nThe community focuses on the regulations and classifications surrounding lithium-ion batteries and their transport, particularly in the context of air travel. Key entities include various types of batteries, regulatory frameworks, and their relationships that dictate how these batteries can be carried on aircraft.\n\n## Lithium-ion batteries are subject to strict transport regulations\n\nLithium-ion batteries are widely used in portable electronic devices but come with specific regulations for air travel. These regulations are crucial for ensuring safety during flights, as lithium-ion batteries can pose fire hazards if not properly managed. The regulations specify watt-hour limits, with larger batteries restricted to two per passenger, highlighting the importance of compliance for travelers. [Data: Entities (388, 406); Relationships (430, 431, 432, 433)]\n\n## Classification of lithium batteries\n\nLithium batteries are classified into lithium-ion and lithium metal types, which affects their transport regulations. Understanding this classification is essential for compliance with air travel regulations, as different types of lithium batteries may have varying restrictions. This classification relationship is significant for manufacturers and consumers alike, as it impacts the types of batteries that can be safely transported. [Data: Entities (406); Relationships (431)]\n\n## Watt-hour limits for battery transport\n\nThe watt-hour capacity of batteries is a critical factor in determining their eligibility for air travel. Batteries with a capacity of 100 watt-hours are allowed in carry-on luggage, while those with a capacity of 160 watt-hours are subject to specific regulations. This distinction is vital for travelers to understand, as exceeding these limits can lead to confiscation or penalties. [Data: Entities (398, 399); Relationships (432, 433)]\n\n## Dry cell alkaline batteries and their transport\n\nDry cell alkaline batteries, such as AA and 9-volt batteries, are also permitted in carry-on baggage, which provides travelers with more options for powering their devices. The inclusion of these batteries alongside lithium-ion batteries in transport regulations indicates a broader understanding of battery safety and management during air travel. This relationship is important for consumers who may not be aware of the differences in battery types and their respective regulations. [Data: Entities (387); Relationships (429)]\n\n## Regulatory framework under 49 CFR\n\nThe 49 CFR outlines the requirements for the transport of hazardous materials, including batteries. This regulatory framework is essential for ensuring that all parties involved in the transport of lithium batteries are aware of the legal requirements and safety measures necessary to prevent incidents. Compliance with these regulations is critical for airlines, manufacturers, and consumers to mitigate risks associated with battery transport. [Data: Entities (402); Relationships (442)]", "# Regulations on Spare Batteries and Portable Chargers\n\nThis community focuses on the regulations surrounding spare batteries and portable chargers, particularly in the context of air travel. The entities are interconnected through safety regulations that dictate how these items must be handled to prevent hazards during flights.\n\n## Spare Batteries and Their Regulations\n\nSpare batteries are critical components in various devices, but they come with stringent regulations when it comes to air travel. Specifically, spare lithium batteries are prohibited from being placed in checked baggage, which highlights the importance of understanding these regulations to ensure safety during flights. The requirement for spare batteries to be insulated and protected from short circuits is crucial to prevent incidents that could jeopardize aircraft safety. [Data: Entities (386, 371); Relationships (421, 428)]\n\n## Prohibited Items in Air Travel\n\nThe classification of spare batteries and portable chargers as prohibited items in checked baggage underscores the heightened safety concerns associated with these entities. The regulations are designed to mitigate risks, particularly with lithium batteries, which can pose fire hazards if not handled correctly. Understanding what constitutes a prohibited item is essential for travelers to avoid penalties and ensure compliance with aviation safety standards. [Data: Entities (371, 389); Relationships (421, 422)]\n\n## Insulation and Protection Requirements\n\nInsulation and the use of non-conductive caps are mandatory for spare batteries to prevent short circuits during transport. These requirements are critical in ensuring that batteries do not inadvertently discharge or cause fires while aboard an aircraft. The relationships between spare batteries, insulation, and non-conductive caps highlight the interconnected nature of safety regulations in air travel. [Data: Entities (416, 404); Relationships (428, 427)]\n\n## Portable Chargers as Lithium Batteries\n\nPortable chargers are classified as lithium batteries and are subject to the same regulations as spare lithium batteries. This classification means they are also prohibited in checked baggage and must be carried in the cabin. The implications of this classification are significant for travelers, as they must be aware of the restrictions to avoid complications during security checks. [Data: Entities (389); Relationships (435, 422)]\n\n## Interconnectedness of Battery Regulations\n\nThe relationships among spare batteries, portable chargers, and their respective regulations illustrate a complex web of safety measures designed to protect air travel. Each entity plays a role in the broader context of aviation safety, and understanding these connections is vital for compliance and risk management. The regulations are not standalone; they are part of a comprehensive approach to ensuring the safety of passengers and crew. [Data: Relationships (426, 435)]", "# Lithium Battery Transport Regulations\n\nThe community focuses on the regulations surrounding the transport of various types of batteries, including lithium metal and non-spillable wet batteries, particularly in the context of air travel. The entities are interconnected through specific guidelines that dictate how these batteries can be carried in carry-on baggage, ensuring safety and compliance with aviation standards.\n\n## Carry-on baggage regulations for lithium batteries\n\nCarry-on baggage regulations allow for the transport of lithium-ion batteries under specific watt-hour limits, which is crucial for ensuring passenger safety during air travel. These regulations are designed to mitigate the risks associated with lithium batteries, which can pose fire hazards if damaged or improperly handled. The guidelines specify that lithium-ion batteries must not exceed certain watt-hour ratings to be permitted in carry-on luggage, thus balancing convenience for travelers with safety measures. [Data: Entities (396); Relationships (430)]\n\n## Non-spillable wet batteries and their transport\n\nNon-spillable wet batteries are allowed in carry-on baggage if they meet specified voltage and watt-hour limits, making them a safer option for air travel. These batteries are designed to prevent leakage, which is a significant safety concern when transporting batteries on aircraft. The regulations stipulate that these batteries must not exceed 12 volts, ensuring compliance with safety standards while providing flexibility for users. This careful regulation helps to minimize the risk of battery-related incidents during flights. [Data: Entities (394); Relationships (438, 439)]\n\n## Restrictions on lithium metal batteries\n\nLithium metal batteries can be brought aboard aircraft in carry-on baggage if they meet specific weight restrictions, which is essential for maintaining safety in air travel. These batteries are commonly used in smaller electronic devices, and their transport is regulated to prevent potential hazards. The regulations specify that consumer-grade lithium metal batteries must contain no more than 2 grams of lithium, which is a critical factor in reducing the risk of fire or explosion during transport. [Data: Entities (393); Relationships (436, 437)]\n\n## Importance of strong outer packaging\n\nBatteries must be packaged in strong outer packaging to prevent damage and leakage during transport, which is a key safety requirement. This regulation is particularly important for non-spillable wet batteries, as proper packaging can significantly reduce the risk of incidents during air travel. The requirement for strong outer packaging ensures that batteries are protected from physical damage, which could lead to dangerous situations if the batteries were to leak or short-circuit. [Data: Entities (403); Relationships (440)]\n\n## Handling requirements for electronic devices\n\nElectronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement that enhances safety. This regulation is in place to mitigate risks associated with lithium batteries that cannot be removed from the device, ensuring that any potential hazards are managed effectively. By requiring these devices to be stored in the hold, airlines can better control the environment and reduce the likelihood of incidents related to battery overheating or fire. [Data: Entities (385); Relationships (385)]"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-8d9ece9e506775d2162b3b2b801f11fc b/cache/text_embedding/embedding-8d9ece9e506775d2162b3b2b801f11fc deleted file mode 100644 index ac27c6c29f461c02b6e72a00f27f1b5351f646be..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-8d9ece9e506775d2162b3b2b801f11fc +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.01026834174990654, -0.022754646837711334, 0.02940853126347065, -0.028399299830198288, -0.03778749704360962, 0.011729380115866661, 0.012451098300516605, 0.04757469519972801, 0.043608181178569794, 0.07496476173400879, -0.023834288120269775, -0.0038520952221006155, 0.0007103492389433086, -0.0010598396183922887, -0.06313563138246536, 0.014493031427264214, -0.001688408781774342, -0.003007157240062952, -0.004251093603670597, 0.047527752816677094, -0.014938971027731895, 0.03663744404911995, -0.0009461543522775173, 0.04971051216125488, -0.035276155918836594, -0.01614770106971264, 0.030206527560949326, 0.0085784662514925, 0.006337034050375223, -0.030183058232069016, 0.09176964312791824, -0.029830999672412872, 0.04550929367542267, -0.02501954883337021, 0.03722420707345009, 0.02046627178788185, -0.05046156793832779, -0.0036936693359166384, 0.005588911939412355, -0.003532309550791979, -0.019809098914265633, 0.02943200245499611, -0.024808313697576523, -0.06524798274040222, -0.030652467161417007, 0.03889061138033867, 0.014011885970830917, -0.007258250843733549, -0.010168592445552349, 0.03145046532154083, 0.008519790135324001, -0.04196524620056152, -0.010995927266776562, 0.013472064398229122, -0.001167657203041017, 0.0300187636166811, -0.00032253595418296754, 0.02190970815718174, 0.021334681659936905, -0.02713189274072647, -0.01417617965489626, -0.007663116790354252, -0.00034087226958945394, 0.060694701969623566, -0.01214598212391138, 0.031145349144935608, 0.02875135838985443, 0.036919090896844864, 0.0015343836275860667, -0.0025538832414895296, 0.003940109629184008, -0.008238144218921661, -0.026193073019385338, -0.046401169151067734, -0.019844304770231247, 0.00859020184725523, 0.025183841586112976, 0.032506637275218964, 0.00807385053485632, -0.04445311799645424, 0.012063834816217422, -0.0035645815078169107, 0.010538253001868725, 0.0007151166792027652, 0.007803939748555422, 0.016699258238077164, -0.06632762402296066, -0.01167657133191824, 0.011430131271481514, 0.003816889366135001, -0.009223905391991138, -0.0372476764023304, 0.02832888811826706, 0.026357367634773254, 0.017907988280057907, 0.00802691001445055, -0.0199733916670084, -0.03473633527755737, -0.050790153443813324, 0.02823500707745552, -0.006014314480125904, 0.012392422184348106, -0.021287739276885986, 0.040228430181741714, 0.02225003018975258, -0.11040521413087845, -0.05769047886133194, 0.09979654848575592, 0.015361439436674118, -0.03698950260877609, -0.01781410723924637, 0.01497417688369751, 0.01246283296495676, 0.06632762402296066, 0.040791723877191544, 0.020161155611276627, -0.025794075801968575, -0.04820840060710907, 0.06172740459442139, 0.03600374236702919, -0.009018538519740105, -0.05210450291633606, -0.0037171398289501667, -0.07416676729917526, -0.004720503464341164, -0.012251598760485649, -0.013495535589754581, -0.006618679966777563, -0.002377854660153389, 0.013472064398229122, 0.05585978180170059, -0.054545432329177856, 0.01627678982913494, -0.03729461878538132, -0.015138469636440277, -0.004427122417837381, -0.013249094597995281, -0.022332176566123962, 0.002952881855890155, 0.00041440094355493784, 0.0033797514624893665, -0.007798072416335344, 0.0215693861246109, -0.015654820948839188, -0.023224055767059326, -0.011782188899815083, -0.005043223034590483, 0.08261614292860031, -0.019867774099111557, 0.028587063774466515, -0.016464553773403168, -0.0047029005363583565, -0.040721312165260315, 0.04431229829788208, 0.016828345134854317, 0.046823639422655106, -0.031286172568798065, 0.002572953235358, 0.0023323805071413517, 0.0585823580622673, -0.029830999672412872, 0.016523228958249092, 0.02875135838985443, -0.004673562478274107, -0.0045855483040213585, -0.006694959010928869, -0.03149740397930145, -0.01152988150715828, -0.04158971831202507, -0.04384288564324379, -0.0732748880982399, -0.048959456384181976, -0.045720525085926056, -0.02235564775764942, -0.023341407999396324, -0.030582057312130928, 0.004969877656549215, -0.003039429197087884, 0.016746198758482933, -0.0022032929118722677, 0.021111711859703064, 0.0005449556047096848, -0.055672015994787216, -0.02215614914894104, -0.019398365169763565, -0.002275171224027872, 0.018717721104621887, 0.01496244128793478, 0.03159128874540329, 0.0031127745751291513, -0.008161865174770355, 0.005336604081094265, -0.020665772259235382, 0.03778749704360962, -0.01598340831696987, 0.0015167808160185814, 0.0007165835704654455, 0.0017382836667820811, 0.02235564775764942, -0.0007825943757779896, 0.00443005608394742, 0.0037376764230430126, 0.033539339900016785, 0.019292747601866722, -0.03255357965826988, 0.017602872103452682, 0.021111711859703064, -0.0005071827326901257, 0.019398365169763565, 0.020125949755311012, 0.009135890752077103, 0.005553706083446741, -0.0035733829718083143, -0.00828508473932743, -0.06468468904495239, -0.013941474258899689, 0.03499450907111168, -0.007756998762488365, -0.0036995369009673595, 0.006260755006223917, 0.023400085046887398, -0.0710686594247818, 0.015572674572467804, -0.005550772417336702, 0.018224840983748436, 0.002822327194735408, -0.005154707469046116, -0.009364727884531021, 0.021381622180342674, -0.056798599660396576, -0.050696272403001785, 0.022320441901683807, 0.00204633385874331, -0.10589887946844101, -0.019011102616786957, 0.000426136190071702, -0.027836007997393608, -0.06707867980003357, -0.012861832045018673, 0.013073066249489784, -0.02215614914894104, 0.05041462555527687, 0.006606944836676121, -0.02931465022265911, -0.004400718025863171, -0.047926753759384155, -0.008349629119038582, -0.004952274728566408, 0.08158344775438309, 0.022578617557883263, 0.0010657071834430099, 0.0005933634820394218, 0.022801587358117104, -0.03816302493214607, 0.03048817440867424, -0.01043850276619196, 0.05083709582686424, 0.018964160233736038, 0.051822856068611145, -0.06679703295230865, 0.01742684282362461, -0.009130023419857025, -0.02213267795741558, 0.035722095519304276, -0.03654356300830841, -0.036895621567964554, 0.008255747146904469, -0.00819707103073597, -0.015549203380942345, -0.01779063604772091, -0.07027066498994827, 0.0348067469894886, 0.013296036049723625, -0.03637927025556564, -0.04222342371940613, -0.016605375334620476, -0.017649812623858452, -0.02152244560420513, 0.011171956546604633, -0.015866056084632874, -0.018717721104621887, -0.04112030938267708, 0.0037758159451186657, -0.05276167392730713, -0.005794278811663389, -0.01810748688876629, 0.022062266245484352, -0.008402437902987003, -0.001433167140930891, 0.01879986748099327, -0.013472064398229122, 0.005327802617102861, 0.0021182121708989143, 0.020102480426430702, 0.04867780953645706, 0.04053354635834694, 0.00033298766356892884, -0.006119932048022747, 0.038491614162921906, 0.017825841903686523, -0.027460480108857155, -0.03201375529170036, 0.0129909198731184, 0.011723512783646584, -0.017884517088532448, 0.02487872540950775, -0.02305976301431656, 0.038538552820682526, 0.0015446520410478115, 0.005999645683914423, -0.013202154077589512, 0.026826776564121246, -0.003746477887034416, -0.05144732818007469, -0.02940853126347065, 0.001563721802085638, 0.01028007734566927, 0.01779063604772091, 0.009974961169064045, -0.01659364067018032, 0.05970894172787666, -0.04480517655611038, 0.015373175032436848, -0.03316381201148033, -0.0024130602832883596, 0.018154429271817207, -0.007886086590588093, 0.010878575034439564, -0.03982943296432495, 0.0040193223394453526, -0.015032852999866009, -0.01722734421491623, 0.008513922803103924, -0.036355797201395035, -0.007052883971482515, -0.0033944204915314913, -0.0326005183160305, 0.026286955922842026, 0.0015402513090521097, 0.018659044057130814, -0.004735172726213932, -0.017086520791053772, 0.015584409236907959, -0.015185411088168621, 0.0028545991517603397, 0.05271473526954651, 0.004259895067662001, 0.014504767023026943, 0.03954778611660004, -0.0027533825486898422, -0.045227646827697754, -0.0009923619218170643, -0.04431229829788208, -0.00140309554990381, -0.07139725238084793, -0.03539350628852844, 0.04419494420289993, -0.010761222802102566, -0.03360975161194801, 0.0022663697600364685, 0.006389842368662357, -0.03656703233718872, 0.021358150988817215, 0.02605225145816803, -0.04262242093682289, -0.01776716485619545, -0.02305976301431656, -0.003696603234857321, -0.008772097527980804, -0.02825847640633583, 0.05088403448462486, 0.000623068306595087, -0.003740610321983695, -0.018987631425261497, -0.0326005183160305, 0.055108726024627686, -0.00819707103073597, 0.015572674572467804, -0.06205599009990692, -0.004048660397529602, 0.019058043137192726, 0.027812538668513298, -0.020301979035139084, -0.008660612627863884, 0.04442964866757393, 0.000597030739299953, -0.05374743416905403, 0.023716935887932777, 0.02992488257586956, 0.01965654082596302, -0.009071346372365952, 0.008619539439678192, 0.052339207381010056, 0.007950630970299244, -0.010057107545435429, 0.029009534046053886, 0.055155664682388306, 0.05581283941864967, -0.012134246528148651, -0.0020610028877854347, 0.00926497858017683, -0.06801749765872955, 0.02139335684478283, -0.02818806655704975, 0.014493031427264214, 0.01659364067018032, 0.01152988150715828, 0.021205592900514603, 0.011477072723209858, -0.020818330347537994, 0.02659207209944725, -0.04750428348779678, 0.03222499042749405, 0.04536847025156021, 0.01547879260033369, 0.022437794134020805, 0.013788916170597076, 0.01749725453555584, 0.023740407079458237, 0.019245807081460953, 0.0450868234038353, 0.003887300845235586, -0.030887173488736153, 0.008537393063306808, 0.011119147762656212, 0.052996378391981125, -0.006166873034089804, -0.01174111571162939, -0.0040193223394453526, -0.049053337424993515, -0.013941474258899689, -0.008038644678890705, 0.025301195681095123, 0.0305116456001997, -0.024057257920503616, 0.004488732200115919, 0.010508914478123188, -0.032929107546806335, -0.01218118704855442, -0.018295250833034515, -0.01661711186170578, -0.004327372647821903, 0.030323881655931473, -0.01078469306230545, -0.03985290229320526, 0.007780469488352537, -0.02774212695658207, 0.009974961169064045, 0.011166088283061981, -0.017708489671349525, -0.04112030938267708, -0.012674068100750446, -0.0676419660449028, 0.02274291031062603, -0.03379751369357109, -0.03170863911509514, 0.023388348519802094, -0.036261916160583496, 0.04581440985202789, -0.00806211493909359, 0.028727887198328972, 0.020278507843613625, -0.0006003312882967293, 0.06060082092881203, 0.017098257318139076, -0.028939122334122658, 0.013788916170597076, -0.02431543357670307, -0.008161865174770355, 0.020994359627366066, -0.03389139473438263, -0.014586913399398327, 0.043537769466638565, 0.026967599987983704, -0.042927537113428116, 0.02602878026664257, -0.01246283296495676, -0.03759973496198654, 0.007428411860018969, 0.01106633897870779, -0.02391643635928631, 0.04388982802629471, -0.019597863778471947, -0.002430663211271167, -0.010872707702219486, 0.04980439320206642, 0.07923639565706253, 0.023423554375767708, -0.025113429874181747, -0.021193858236074448, -0.009135890752077103, -0.016781404614448547, -0.005615316331386566, -0.010086446069180965, -0.007475352846086025, 0.013976680114865303, -0.013413388282060623, -0.016898756846785545, 0.016534963622689247, -0.024268493056297302, 0.04654199257493019, 0.0032330609392374754, -0.006301828194409609, -0.0022737043909728527, -0.01571349799633026, -0.0034442953765392303, 0.022895468398928642, -0.051259562373161316, -0.027953360229730606, -0.027460480108857155, -0.006741899996995926, 0.016652317717671394, 0.019351424649357796, -0.04161319136619568, 0.01603034883737564, -0.01867077872157097, -0.012439362704753876, 0.03048817440867424, 0.0023411819711327553, 0.004559143912047148, 0.015959937125444412, -0.015220616944134235, -0.026498189195990562, -0.03429039567708969, -0.003382685361430049, 0.05717412754893303, 0.01270927395671606, -0.07717099040746689, -0.0017177469562739134, -0.018436074256896973, -0.004873061552643776, -0.012650597840547562, -0.002870735013857484, 0.04790328070521355, -0.00886011216789484, -0.001503578620031476, -0.029784059152007103, 0.02431543357670307, 0.01361288782209158, -0.03377404436469078, 0.010467841289937496, -0.032506637275218964, -0.010233135893940926, -0.0033122736494988203, 0.008150129579007626, -0.031849462538957596, -0.036238446831703186, -0.008907053619623184, -0.00914175808429718, -0.004911201074719429, -0.023904699832201004, 0.003250663634389639, 0.030816761776804924, -0.0001754786353558302, -0.0033122736494988203, 0.024174610152840614, 0.03102799504995346, -0.03776402771472931, -0.009552491828799248, 0.02546548843383789, -0.020231567323207855, -0.004934671800583601, -0.00970504991710186, -0.002398391254246235, -0.03440774604678154, 0.03487715870141983, 0.011840865015983582, -0.01218118704855442, -0.0009674245375208557, -0.045180704444646835, -0.010632134974002838, -0.008461114019155502, 0.0143991494551301, 0.007751131430268288, 0.012638862244784832, 0.0009945622878149152, 0.004491666331887245, -0.008502187207341194, 0.01737990230321884, 0.019797364249825478, 0.01671099290251732, 0.02985447086393833, -0.01803707703948021, -0.0629948079586029, 0.006249019410461187, -0.029173826798796654, -0.022285236045718193, -0.03555780276656151, -0.015126734972000122, -0.023423554375767708, 0.0272023044526577, -0.0160538200289011, -0.01174111571162939, 0.020137686282396317, 0.030276939272880554, 0.014551707543432713, 0.004500467795878649, 0.01563134975731373, -0.03379751369357109, 0.02242605946958065, 0.015361439436674118, -0.018964160233736038, -0.01117782387882471, -0.0092532429844141, -0.04811451584100723, -0.03835079073905945, -0.007563367486000061, -0.0007187839364632964, 0.04541540890932083, 0.011582689359784126, 0.0016473354771733284, -0.0009417536784894764, 0.035792507231235504, -0.01698090322315693, -0.028563594445586205, 0.0006006979965604842, -0.025770604610443115, -0.0578313022851944, -0.005348339211195707, -0.029220767319202423, 0.006677356082946062, -0.01112501509487629, 0.02225003018975258, -0.027343127876520157, 0.005081362556666136, 0.0038022203370928764, -0.042904067784547806, -0.01914018951356411, 0.02359958365559578, -0.0006072990945540369, 0.01248630415648222, 0.05107180029153824, 0.02321232110261917, 0.007117427885532379, -0.016429347917437553, -0.014070562086999416, -0.004887730814516544, 0.017027845606207848, -0.04748081415891647, 0.03440774604678154, 0.0007433546124957502, -0.020747918635606766, 0.034126102924346924, -0.03222499042749405, 0.020841799676418304, 0.0214402973651886, 0.014058827422559261, 0.0544046089053154, 4.203602657071315e-05, -0.008895318023860455, 0.04381941631436348, -0.007944762706756592, 0.015995142981410027, -0.005298464559018612, 0.0107201486825943, 0.0018879079725593328, -0.012509774416685104, 0.025207312777638435, 0.025700192898511887, 0.004045726731419563, -0.016722727566957474, 0.031825993210077286, 0.006307695992290974, -0.01796666532754898, -0.002561217872425914, 0.031215758994221687, 0.03598026931285858, 5.873354211871629e-07, 0.006108196452260017, -0.039618197828531265, -0.011130882427096367, 0.00569746270775795, 0.027413539588451385, -0.015959937125444412, 0.0003328043094370514, -0.018095752224326134, -0.03323422372341156, 0.02553590014576912, 0.013847592286765575, 0.051728975027799606, -0.01668752357363701, -0.01354247611016035, -0.02198011986911297, 0.019104983657598495, -0.007434279657900333, -0.021557651460170746, -0.004931738134473562, -0.03619150444865227, 0.011887806467711926, -0.00999843142926693, 0.010127519257366657, 0.030229998752474785, -0.045767467468976974, -0.008326158858835697, 0.0027988567017018795, 0.01840086840093136, 0.027343127876520157, 0.04820840060710907, -0.016781404614448547, -0.000375894655007869, -0.025254253298044205, 0.002976352348923683, -0.005797212477773428, -0.07092783600091934, -0.039007965475320816, -0.011330381967127323, -0.008625407703220844, 0.065670445561409, -0.0006689091096632183, -0.03659050166606903, -0.03330463543534279, 0.018048811703920364, 0.02254341170191765, -0.02985447086393833, -0.0330934002995491, 0.015173675492405891, -0.0074518825858831406, -0.04769204929471016, 0.055202607065439224, -0.02377561293542385, -0.06867466866970062, 0.011975820176303387, 0.0038902347441762686, -0.02190970815718174, 0.007123295683413744, -0.015889525413513184, -0.04503988102078438, -0.01769675314426422, -0.004708768334239721, -0.01382412202656269, 0.010602796450257301, -0.0018306986894458532, -0.008384834975004196, 0.018201369792222977, 0.01361288782209158, 0.006471989210695028, -0.05773742124438286, -0.02163979783654213, -0.010638002306222916, -0.0024071927182376385, 0.02997182309627533, -0.025043020024895668, -0.00117792550008744, -0.03421998396515846, 0.017274284735322, 0.00445939414203167, 0.020501477643847466, 0.024151140823960304, 0.01106633897870779, -0.0031391787342727184, -0.003441361477598548, 0.0076513816602528095, -0.025770604610443115, -0.050696272403001785, 0.03328116238117218, -0.010532384738326073, -0.021240798756480217, 0.03281175345182419, -0.011682439595460892, -0.017919722944498062, 0.015314498916268349, -0.01914018951356411, 0.009394066408276558, 0.04602564126253128, -0.004013455007225275, 0.018811602145433426, -0.0014544372679665685, -0.016922228038311005, -0.013366447761654854, -0.009012670256197453, 0.006395710166543722, -0.006554136052727699, 0.006254887208342552, -0.004861326422542334, 0.037881381809711456, -0.015091529116034508, -0.021792355924844742, 0.03593333065509796, -0.012638862244784832, 0.01583085022866726, 0.022907204926013947, 0.008337893523275852, -0.0022223626729100943, 0.008819038979709148, -0.012263334356248379, -0.014610383659601212, -0.000572826771531254, 0.015619615092873573, 0.010778825730085373, -0.0143991494551301, 0.026756364852190018, 0.0160538200289011, 0.017919722944498062, -0.05064933001995087, -0.02825847640633583, -0.02014942094683647, -0.0023323805071413517, -0.060178350657224655, 0.0330934002995491, 0.0009424870950169861, 0.01497417688369751, 0.021217327564954758, 0.0006520397146232426, 0.022825056686997414, 0.030910642817616463, 0.003620323957875371, -0.04004066810011864, 0.005131237208843231, 0.027530891820788383, -0.05304332077503204, -0.02078312449157238, 0.031943343579769135, 0.038045674562454224, 0.033468928188085556, 0.04710528627038002, -0.03781097009778023, -0.04034578427672386, 0.011441866867244244, -0.006096461322158575, -0.036895621567964554, 0.020067274570465088, -0.0018967094365507364, 0.049147218465805054, -0.03278828412294388, 0.02443278580904007, -0.010062974877655506, -0.017802370712161064, 0.01553746871650219, -0.0028193932957947254, -0.009910416789352894, -0.010350489057600498, 0.018201369792222977, 0.028587063774466515, -0.006560003850609064, -0.004236424341797829, 0.015408380888402462, 0.0002348883281229064, 0.01525582280009985, 0.015373175032436848, 0.010878575034439564, 0.055202607065439224, -0.010667340829968452, -0.03835079073905945, 0.008924656547605991, -0.014903765171766281, 0.05224532261490822, -0.0013664229772984982, 0.03170863911509514, -0.04694099351763725, 0.02296588011085987, -0.013624623417854309, -0.0022238295059651136, -0.004271630197763443, 0.02112344652414322, -0.023364879190921783, -0.013906269334256649, 0.02445625700056553, -0.002936745760962367, 0.016499759629368782, 0.003954778425395489, -0.023317938670516014, -0.02208573743700981, -0.0014867092249915004, 0.014305267482995987, -0.002704974729567766, -0.008155997842550278, 0.0023543841671198606, 0.00800343882292509, -0.020360656082630157, -0.00954662449657917, 0.051259562373161316, 0.024597080424427986, 0.01438741385936737, -0.04008760675787926, -0.03400874882936478, -0.02947894297540188, -0.03588638827204704, 0.0365200936794281, 0.042364247143268585, -0.011119147762656212, 0.0019480511546134949, 0.01500938180834055, 0.04811451584100723, -0.002289840253069997, 0.0037376764230430126, 0.0064309160225093365, 0.003344545606523752, 0.04745734483003616, -0.007181971799582243, -0.00868995115160942, 0.03431386500597, -0.010643869638442993, 0.020583625882864, -0.016159435734152794, 0.011846733279526234, 0.007187839597463608, -0.018565163016319275, 0.00800343882292509, -0.01837739907205105, 0.013812387362122536, -0.008854244835674763, -0.006618679966777563, -0.05445155128836632, 0.028094183653593063, -0.023904699832201004, 4.4992757466388866e-05, -0.016218112781643867, 0.012603656388819218, -0.006865120027214289, -0.0016532030422240496, 0.02823500707745552, -0.029056474566459656, -0.026756364852190018, 0.02436237409710884, 0.030699409544467926, -0.008021041750907898, -0.040791723877191544, 0.04332653433084488, 0.008373099379241467, 0.0287982989102602, 0.05050850659608841, -0.03344545513391495, -0.024620549753308296, -0.02213267795741558, -0.0008354029851034284, -0.02436237409710884, -0.01547879260033369, 0.010121650993824005, 0.012850096449255943, -0.010485444217920303, -0.02372867241501808, 0.04374900460243225, 0.008736892603337765, 0.016382405534386635, 0.014211385510861874, -0.010450238361954689, -0.0051869796589016914, -0.02364652417600155, 0.006853384897112846, 0.0092532429844141, -0.0023910568561404943, -0.0055067650973796844, -0.028986062854528427, -0.023975111544132233, -0.00025157438358291984, -0.0005860289675183594, 0.01585431955754757, -0.006337034050375223, 0.02706148289144039, -0.015748701989650726, -0.01975042186677456, -0.011277573183178902, 0.017297755926847458, 0.044758234173059464, 0.010274210013449192, -0.023470496758818626, 0.04269283264875412, -0.010972457006573677, 0.006994207855314016, -0.02301282063126564, 0.03229540213942528, 0.02301282063126564, 0.03539350628852844, -0.06050693988800049, 0.04654199257493019, 0.0070118107832968235, 0.0020345987286418676, -0.005726801231503487, -0.010285944677889347, 0.04506335407495499, 9.388198668602854e-05, 0.002476137364283204, 0.04881863296031952, 0.027413539588451385, 0.01275621447712183, 0.0038550288882106543, 0.004321505315601826, 0.001996458973735571, 0.00020866737759206444, 0.0034442953765392303, 0.034642450511455536, 0.03328116238117218, 0.02945547178387642, 0.015431851148605347, -0.016288524493575096, 0.0300187636166811, 0.021804090589284897, -0.007786337286233902, 0.012803155928850174, 0.01242762804031372, 0.01598340831696987, 0.0023822553921490908, 0.018987631425261497, 0.0004283365560695529, -0.02112344652414322, 0.035698626190423965, 0.032483167946338654, 0.004899465944617987, 0.021827561780810356, -0.023517437279224396, 0.03654356300830841, 0.017168667167425156, -0.011488807387650013, -0.014094033278524876, 0.008719289675354958, 0.028634004294872284, 9.819101978791878e-05, -0.003790485206991434, -0.03668438643217087, -0.01774369552731514, 0.011295176111161709, 0.0144578255712986, -0.008648877963423729, 0.029572825878858566, -0.029126886278390884, 0.011271705850958824, 0.004192417487502098, -0.020841799676418304, -0.01326083019375801, 0.017391636967658997, -0.014070562086999416, 0.02494913712143898, 0.006425048224627972, 0.023118438199162483, -0.012122510932385921, -0.040791723877191544, 0.02499607764184475, -0.002606692025437951, -0.018154429271817207, 0.02605225145816803, 0.010638002306222916, -0.03767014667391777, 0.04546235129237175, 0.022836793214082718, 0.01826004683971405, 0.010520650073885918, -0.02445625700056553, -0.00988694652915001, -0.008725157007575035, 0.01410576794296503, -0.03769361600279808, 0.022895468398928642, -0.0289156511425972, 0.029760589823126793, 0.012134246528148651, -0.039618197828531265, 0.03757626563310623, 0.0232827328145504, 0.00694726686924696, 0.006923796143382788, 0.00518991332501173, -0.017274284735322, -0.00036250913399271667, -0.026286955922842026, 0.007921292446553707, 0.017192138358950615, -0.013296036049723625, -0.022296970710158348, -0.03558127209544182, -0.008912920951843262, 0.0017441512318328023, -0.02555936947464943, -0.027953360229730606, 0.019398365169763565, 0.017919722944498062, -0.04398370906710625, -0.0038374261930584908, -0.02494913712143898, -0.001063506817445159, 0.00434497557580471, -0.022238295525312424, -0.004609018564224243, -0.003212524112313986, 0.040158018469810486, 0.01411750353872776, 0.024174610152840614, -0.013530741445720196, -0.007768734358251095, -0.03400874882936478, 0.03565168380737305, -0.013730240054428577, 0.004130807239562273, 0.06247846037149429, -0.04367859289050102, -0.015443586744368076, -0.011664836667478085, -0.016042083501815796, 0.010990059934556484, 0.00719957472756505, 0.012310274876654148, -0.009863476268947124, 0.04668281599879265, -0.02152244560420513, 0.02835235930979252, -0.0033034724183380604, 0.00367019884288311, 0.03532309830188751, 0.01078469306230545, 0.013073066249489784, -0.02102956362068653, 0.0051429723389446735, 0.0010598396183922887, 0.00561238219961524, -0.003899036208167672, 0.06285399198532104, 0.0031714506912976503, -0.0014779077610000968, 0.03166170045733452, 0.01220465824007988, -0.00039569789078086615, 0.040134549140930176, 0.013120007701218128, 0.023435290902853012, -0.017344696447253227, 0.008290953002870083, -0.019292747601866722, 0.0040633296594023705, 0.020090743899345398, 0.022508205845952034, 0.016429347917437553, -0.007399073801934719, -0.01941009983420372, -0.06027223542332649, 0.0004393383569549769, 0.018835073336958885, 0.012052100151777267, -0.01552573312073946, 0.02931465022265911, -0.010203798301517963, 0.014622119255363941, -0.0020111282356083393, -0.00414841016754508, -0.010256607085466385, 0.009646373800933361, 0.004336174111813307, -0.012521510012447834, -0.020818330347537994, -0.033468928188085556, -0.008666480891406536, 0.006413313094526529, 0.03098105452954769, 0.018424339592456818, -0.004899465944617987, 0.021405091509222984, -0.026498189195990562, 0.005632919259369373, 0.01933968812227249, 0.06088246777653694, 0.02670942433178425, -0.011130882427096367, 0.01958612911403179, 0.004629555158317089, -0.014469561167061329, -0.0030658335890620947, 0.016675787046551704, -0.02656860090792179, 0.036848679184913635, -0.0010040971683338284, 0.035698626190423965, 0.007023545913398266, 0.018483014777302742, 0.011301043443381786, 0.003359214635565877, 0.009212169796228409, 0.006888590753078461, 0.004556210245937109, -0.00806211493909359, 0.006677356082946062, -0.003458964405581355, -0.005354207009077072, -0.002154884859919548, -0.02002033405005932, -0.03607415407896042, -0.04109684005379677, 0.03222499042749405, 0.012908772565424442, 0.012638862244784832, 0.018952425569295883, 0.0015505196060985327, -0.011207161471247673, -0.022954145446419716, 0.02717883512377739, -0.0025524164084345102, -0.014011885970830917, 0.007768734358251095, 0.021264269948005676, 0.04677669703960419, -0.017649812623858452, 0.010368091985583305, -0.024268493056297302, -0.0025978905614465475, 0.023763876408338547, -0.004556210245937109, -0.01774369552731514, 0.0032447960693389177, 0.020348919555544853, -0.0107201486825943, 0.01852995716035366, 0.026803307235240936, -0.00593216810375452, -0.011512278579175472, 0.024690961465239525, -0.04424188658595085, -0.0030599660240113735, -0.015126734972000122, 0.011195426806807518, -0.005216317716985941, 0.006043652538210154, 4.666594759328291e-05, -0.00965810939669609, 0.007181971799582243, 0.013495535589754581, -0.037998732179403305, -0.017931459471583366, -0.0033621485345065594, -1.0978874342981726e-05, 0.015467057004570961, -0.009147625416517258, -0.06341727823019028, 0.023188849911093712, 0.027038011699914932, 0.022367382422089577, 0.018694249913096428, -0.029126886278390884, 0.012580186128616333, -0.0017837577033787966, -0.03609762340784073, -0.020677506923675537, -0.005847087129950523, 0.017907988280057907, 0.04006413742899895, -0.009798931889235973, 0.0005453223129734397, -0.003676066407933831, 0.03778749704360962, 0.014023621566593647, 0.05365355312824249, 0.00971678551286459, -0.004409519489854574, 0.011700042523443699, -0.027859479188919067, 0.002697640098631382, 0.005298464559018612, -0.021675003692507744, -0.03281175345182419, -0.017215609550476074, 0.013706769794225693, 0.00840830523520708, -0.024597080424427986, -0.002289840253069997, 0.019715216010808945, -0.006031917408108711, -0.017931459471583366, -0.003723007394000888, 0.00017080287216231227, 0.0025978905614465475, -0.012603656388819218, -0.026286955922842026, -0.024644020944833755, -0.008384834975004196, -0.010332886129617691, 0.019257541745901108, 0.021557651460170746, 0.03560474142432213, 0.001123649999499321, -0.0034296263474971056, 0.003934241831302643, -0.008238144218921661, -0.01725081540644169, -0.001541718258522451, -0.008625407703220844, 0.011430131271481514, 0.007950630970299244, 0.006436783354729414, 0.03386792540550232, 0.04006413742899895, -0.001340752118267119, -0.020994359627366066, 0.030675938352942467, -0.014645589515566826, 0.03882019966840744, -0.011700042523443699, 0.005230986978858709, -0.01941009983420372, -0.035745564848184586, 0.020008597522974014, 0.03330463543534279, -0.006295960396528244, 0.004878929350525141, 0.009734388440847397, -0.035745564848184586, -0.013084801845252514, -0.011905409395694733, 0.006689091213047504, -0.01140666101127863, -0.00561238219961524, 0.009669844061136246, 0.026991071179509163, 0.0047058346681296825, -0.03229540213942528, 0.006536533124744892, -0.010045371949672699, 0.02828194759786129, -0.008085586130619049, -0.004653025884181261, 0.028657475486397743, -0.0071291630156338215, 0.03386792540550232, 0.019985128194093704, -0.011318646371364594, -0.04102642834186554, 0.029525883495807648, 0.015901261940598488, -0.024573609232902527, 0.026732895523309708, -0.03473633527755737, 0.005715065635740757, -0.00024295630282722414, -0.018224840983748436, 0.001704544760286808, 0.009000935591757298, -0.04060395807027817, -0.01968001015484333, 0.0016209310851991177, 0.0062900930643081665, 0.011107412166893482, 0.008443511091172695, -0.008114923723042011, 0.013378182426095009, -0.022778116166591644, 0.014598648995161057, -0.04644811153411865, -0.03926613926887512, 0.007815674878656864, -0.012451098300516605, 0.03429039567708969, 0.01106633897870779, 0.04114377871155739, -0.0421530120074749, 0.0035968534648418427, -0.017215609550476074, 0.00835549645125866, -0.025747133418917656, -0.0010811097454279661, 0.04149583727121353, -0.004456460475921631, -0.012955714017152786, 0.027601303532719612, 0.020114215090870857, 0.019492246210575104, -0.017192138358950615, -0.003734742756932974, -0.03224845975637436, -0.02240258827805519, -0.008819038979709148, -0.005101899150758982, -1.782061553967651e-05, 0.0021196792367845774, 0.035299625247716904, 0.010145122185349464, 0.011342117562890053, 0.0028311286587268114, -0.02490219660103321, 0.010057107545435429, 0.011846733279526234, 0.022050531581044197, -0.011389058083295822, 0.011500542983412743, -0.011823262088000774, 0.003142112633213401, -0.0666562095284462, 0.04790328070521355, 0.03384445607662201, -0.00776286656036973, 0.014809883199632168, 0.025254253298044205, -0.0453449971973896, -0.011764585971832275, 0.017086520791053772, -0.019914716482162476, -0.030816761776804924, 0.005580110475420952, -0.003687801770865917, 0.014187915250658989, 0.01247456856071949, -0.0010759755969047546, 0.026779836043715477, 0.006882722955197096, 0.006114064250141382, -0.02555936947464943, 0.007921292446553707, -0.00593216810375452, -0.004391916561871767, -0.019832570105791092, 0.006337034050375223, 0.0024291963782161474, -0.04595522955060005, 0.034173041582107544, -0.01931621879339218, -0.002454133704304695, -0.018612103536725044, 0.030887173488736153, -0.01152988150715828, 0.025301195681095123, -0.0010378359584137797, 0.032952576875686646, -0.007991704158484936, -0.01948051154613495, -0.018001871183514595, -0.0010114316828548908, 0.0010752420639619231, 0.008120791986584663, 0.023611318320035934, 0.02014942094683647, 0.005712131969630718, -0.013249094597995281, 0.028610534965991974, -0.020665772259235382, -0.01248630415648222, 0.00033518802956677973, -0.040204960852861404, -0.02141682803630829, -0.018541691824793816, -0.00886011216789484, 0.02499607764184475, -0.005266192369163036, 0.01779063604772091, 0.01247456856071949, 0.03288216516375542, 0.0026404308155179024, -0.012627126649022102, 0.031215758994221687, 0.00035810843110084534, 0.0016047952231019735, 0.03426692262291908, 0.01214598212391138, 0.0035088390577584505, -0.009570094756782055, 0.0060055130161345005, 0.04658893495798111, 0.0038139557000249624, 0.026756364852190018, -0.023658260703086853, -0.013155212625861168, 0.03126269951462746, 0.01803707703948021, 0.0040427930653095245, -0.014633853919804096, -0.00414841016754508, 0.00610232912003994, 0.008302687667310238, -0.007997571490705013, 0.011389058083295822, -0.02071271277964115, -0.003652595914900303, 0.030652467161417007, -0.03644968196749687, 0.003582184435799718, -0.041847895830869675, -0.02553590014576912, -0.02607572078704834, -0.01654670014977455, 0.03677826747298241, -0.006659753154963255, -0.011289308778941631, -0.002501074690371752, 0.03560474142432213, -0.01992645114660263, 0.011735248379409313, -0.0012901438167318702, -0.01936315931379795, 0.06581126898527145, 0.011893673799932003, 0.0020008597057312727, 0.005272060167044401, -0.020184626802802086, 0.020818330347537994, -0.0075105587020516396, 0.011553351767361164, -0.014657325111329556, -0.0035381773486733437, 0.011958218179643154, 0.03229540213942528, -0.03281175345182419, 0.0068123117089271545, 0.004638356622308493, -0.0008948126342147589, 0.005178178194910288, -0.01833045668900013, -0.000609132694080472, -0.025348136201500893, -0.010332886129617691, 0.018729455769062042, -0.019785627722740173, 0.02166326716542244, 0.005788411013782024, -0.002458534436300397, 0.03891408070921898, 0.0009923619218170643, 0.019574394449591637, 0.010327017866075039, -0.007563367486000061, -0.011834997683763504, 0.014270061627030373, 0.0027211105916649103, 0.019668275490403175, -0.02886871062219143, 0.015021117404103279, -0.000592996773775667, -0.025911428034305573, 0.02359958365559578, 0.03560474142432213, -0.03173211216926575, -0.0017705555073916912, -0.02485525608062744, 0.020548420026898384, 0.034079160541296005, -0.0011955284280702472, 0.0008236677385866642, 0.025230783969163895, -0.02075965330004692, 0.04304489120841026, -0.03595679998397827, -0.005474493373185396, 0.009347124956548214, -0.027296187356114388, -0.005847087129950523, 0.020255038514733315, -0.048959456384181976, -0.004494599997997284, -0.03429039567708969, 0.06027223542332649, -0.022848527878522873, 0.018940690904855728, 0.001835099421441555, 0.035182274878025055], [-0.01745321974158287, -0.0056822397746145725, 0.03584226965904236, -0.0001730919029796496, -0.03064841590821743, 0.049973294138908386, -0.014435170218348503, 0.042603638023138046, 0.01582721620798111, 0.002140709897503257, -0.002421458950266242, 0.006287604570388794, 0.02856619656085968, 0.004395474214106798, -0.04763372242450714, 0.015055157244205475, -0.012516719289124012, 0.05708559975028038, -0.031490664929151535, -0.003105784300714731, 0.0027373014017939568, 0.04391380026936531, 0.006913440302014351, 0.02538437582552433, -0.01797962374985218, -0.03317515552043915, 0.010171297006309032, -0.04637035354971886, 0.034181173890829086, -0.06312169879674911, 0.05610297992825508, -0.03422796353697777, 0.055260732769966125, -0.025641728192567825, -0.03923465311527252, -0.032543472945690155, -0.007814176380634308, 0.02858959138393402, 0.028145072981715202, -0.0005998813430778682, 0.022389721125364304, 0.027864323928952217, -0.0037345446180552244, -0.029197880998253822, 0.017078887671232224, 0.0047815036959946156, 0.05437169596552849, -0.04491981491446495, 0.009136036038398743, 0.02369988150894642, 0.028917131945490837, 0.028191864490509033, 0.023044802248477936, -0.01135863084346056, 0.036193206906318665, -0.03011031448841095, 0.022038785740733147, 0.008358127437531948, 0.055167149752378464, 0.00899566151201725, 0.0018160941544920206, -0.05694522708654404, -0.04594922810792923, 0.02272895909845829, 0.003997746855020523, -0.009059999138116837, -0.010364311747252941, 0.011575041338801384, -0.03230951353907585, -0.021442193537950516, -0.01476271077990532, 0.017804156988859177, 0.04428813233971596, -0.05221928656101227, -0.024588920176029205, 0.05081554129719734, -0.018634704872965813, -0.057272765785455704, 0.03364307060837746, 0.030040128156542778, 0.0015090251108631492, 0.028846945613622665, 0.0004353800613898784, 0.0026539540849626064, 0.04052141681313515, -0.03015710599720478, -0.07659764587879181, 0.01455214899033308, -0.03221593052148819, -0.000392244168324396, -0.018201883882284164, 0.0039129373617470264, -0.006281755398958921, 0.039889734238386154, 0.009960735216736794, 0.019921470433473587, 0.005767049267888069, 0.004445190075784922, -0.011539947241544724, 0.020354291424155235, -0.02377006970345974, -0.05193853750824928, -0.0054746028035879135, 0.03139708191156387, 0.03018050268292427, -0.021395402029156685, -0.015406093560159206, 0.03745657578110695, -0.019710909575223923, 0.03336232155561447, 0.037316203117370605, -0.013382362201809883, -0.05689843371510506, 0.03233290836215019, -0.012224272824823856, 0.012598604895174503, 0.010177145712077618, -0.02915108948945999, -0.02421458810567856, -0.0015719011425971985, 0.010358463041484356, 0.013101613149046898, 0.02739640884101391, -0.07856288552284241, -0.008428314700722694, -0.028308842331171036, -0.011545796878635883, 0.002624709391966462, -0.05133024975657463, -0.01892715133726597, 0.008089076727628708, -0.02844921685755253, 0.041504040360450745, -0.008638876490294933, 0.044615671038627625, 0.006229115184396505, 0.03165443241596222, -0.04012368991971016, 0.005606203805655241, -0.03336232155561447, -0.003023899160325527, -0.0014205599436536431, 0.04328211396932602, -0.015534769743680954, -0.012774072587490082, 0.035584915429353714, 0.01692681573331356, 0.05198533087968826, 0.010294124484062195, -0.023465925827622414, 0.002292782301083207, -0.0004818059678655118, -0.016517391428351402, -0.033596280962228775, -0.009188676252961159, 0.01950034685432911, -0.0020588249899446964, 0.04283759742975235, -0.009323201142251492, -0.0075802188366651535, -0.03020389750599861, -0.025220604613423347, 0.01137032825499773, -0.01855281926691532, 0.0626537874341011, 0.04119989275932312, -0.022869333624839783, 0.008083227090537548, -0.057881053537130356, -0.01001337543129921, -0.0291276928037405, -0.0008268930832855403, -0.007960399612784386, -0.029361650347709656, -0.0021260876674205065, -0.07758026570081711, 0.002738763578236103, -0.0015192606952041388, 0.00596591318026185, 0.0401470847427845, -0.023501018062233925, -0.00011588201596168801, -0.03549133241176605, 0.006515712942928076, -0.05072195827960968, 0.03867315500974655, 0.07617652416229248, -0.028729965910315514, -0.009855454787611961, 0.028355633839964867, 0.015487978234887123, 0.0022883955389261246, -0.006960231810808182, -0.0031730469781905413, -0.05404415354132652, 0.0570388101041317, 0.002766546094790101, -0.018599610775709152, -0.03848598897457123, 0.0062642088159918785, 0.04899067431688309, -0.008925474248826504, 0.048897091299295425, 0.05919121578335762, -0.0487099252641201, -0.008568689227104187, 0.016260037198662758, -0.016458900645375252, 0.062092289328575134, 0.009814511984586716, -0.0063636405393481255, -0.049505382776260376, -0.04316513612866402, 0.011510702781379223, -0.02378176711499691, 0.05820859596133232, 0.01633022539317608, -0.03018050268292427, -0.009527914226055145, 0.0771123543381691, -0.02106786146759987, -0.010960903018712997, -0.02114974707365036, 0.009592252783477306, -0.01579212211072445, -0.013920463621616364, 0.05619656294584274, 0.021325215697288513, -0.0179913230240345, -0.07191849499940872, -0.009691684506833553, 0.022062180563807487, -0.013815183192491531, 0.018728287890553474, -0.021875014528632164, 0.061483997851610184, -0.05231286957859993, -0.039936523884534836, 0.01947695203125477, 0.03649735078215599, 0.022974614053964615, -0.0484759695827961, 0.010200541466474533, 0.027209242805838585, -0.008492653258144855, 0.01245823036879301, -0.0054921493865549564, 0.009136036038398743, 0.06644389778375626, -0.008428314700722694, 0.03846259415149689, -0.012352949939668179, 0.046744685620069504, -0.07238641381263733, 0.016587577760219574, 0.040942542254924774, 0.023547809571027756, -0.012575209140777588, 0.039842940866947174, -0.024144401773810387, 0.00926471222192049, -0.03900069370865822, -0.025477958843111992, 0.0443115271627903, -0.03315176069736481, -0.013534434139728546, 0.03539775311946869, 0.008206055499613285, -0.015464582480490208, 0.03645056113600731, -0.038790132850408554, 0.007638708222657442, 0.00500083900988102, 0.0052815875969827175, 0.01576872728765011, 0.00015243786037899554, 0.005652995314449072, 0.0037433181423693895, -0.005410264246165752, 0.041433852165937424, -0.05502677708864212, -0.004538773093372583, -0.04293118044734001, -0.002209434984251857, 0.012914447113871574, 0.002082220744341612, 0.022611981257796288, -0.03383023664355278, -0.01735963672399521, 0.0011193398386240005, 0.03392381966114044, 0.002115851966664195, 0.03062502108514309, -0.018739985302090645, 0.053155116736888885, 0.010416951961815357, -0.026133039966225624, -0.03857957199215889, -0.0009234005119651556, 2.632020550663583e-05, 0.010522233322262764, 0.06443186104297638, 0.023957235738635063, -0.048382386565208435, -0.022565189749002457, 0.03602943569421768, -5.858073564013466e-05, 0.03701205551624298, -0.024167796596884727, 0.001068892772309482, -0.016493994742631912, 0.015172136016190052, -0.043001364916563034, -0.04286099225282669, 0.015195531770586967, -0.0072175851091742516, -0.022530095651745796, 0.0259458739310503, 0.03329213336110115, -0.007007023319602013, 0.06237303838133812, 0.029759379103779793, 0.015499676577746868, -0.010434499010443687, 0.01349934097379446, -0.01450535748153925, 0.04548131301999092, 0.0697660893201828, -0.04017048329114914, -0.028800154104828835, -0.008042285218834877, -0.03560831397771835, 0.039866335690021515, -0.03350269794464111, -0.0029434761963784695, -0.006059496197849512, 0.0055184694938361645, 0.0018160941544920206, 0.01631852798163891, 0.014493659138679504, 0.02589908242225647, -0.023454226553440094, -0.02384025603532791, -0.01847093552350998, -0.025501353666186333, -0.02592247724533081, 0.04398398846387863, 0.05184495449066162, -0.023629695177078247, 0.031981974840164185, 0.024401754140853882, 0.006825706455856562, -0.032496679574251175, 0.008252846077084541, 0.0073462617583572865, -0.00039918976835906506, 0.005699786823242903, -0.029478630051016808, -0.03329213336110115, 0.014879689551889896, 0.036731310188770294, 0.030741998925805092, 0.05867651104927063, 0.04665110260248184, 0.0646190270781517, 0.03907088190317154, -0.009685835801064968, 0.01684493198990822, 0.0044919815845787525, -0.007977946661412716, -0.02110295556485653, 0.013932161964476109, 0.030812187120318413, -0.01636531949043274, -0.020997675135731697, -0.04641714319586754, 0.044124361127614975, 0.02699868194758892, -0.00423462875187397, -0.01899733953177929, -0.0317012257874012, 0.012563510797917843, 0.014751012437045574, 0.03631018474698067, 0.054184529930353165, -0.0031613491009920835, -0.06747330725193024, 0.020740320906043053, -0.00659759808331728, 0.0004456157039385289, -0.026039456948637962, -0.011200709268450737, -0.038322217762470245, -0.012200877070426941, 0.011539947241544724, 0.011715415865182877, 0.04665110260248184, 0.036169812083244324, -0.015616655349731445, -0.04407757148146629, 0.027606969699263573, -0.04141045734286308, 0.02751338854432106, -0.046768080443143845, -0.03427475690841675, 0.004819522146135569, -0.03530417010188103, -0.01293784286826849, 0.012762375175952911, -0.012703885324299335, 0.016505692154169083, 0.028729965910315514, 0.05245324596762657, 0.0020310424733906984, 0.015990987420082092, -0.021500682458281517, -0.02068183198571205, 0.03174801543354988, -0.025477958843111992, -0.04005350172519684, 0.01635362021625042, 0.06967251002788544, 0.03011031448841095, -0.0053927176631987095, -0.04824201017618179, -0.016798140481114388, -0.013078217394649982, 0.018342258408665657, -0.0009372917702421546, -0.04641714319586754, 0.022623678669333458, -0.017862645909190178, 0.012750676833093166, 0.020845603197813034, 0.023419134318828583, -0.05905084311962128, 0.029899753630161285, 0.009124337695538998, -0.012376345694065094, -0.03946860879659653, -0.013323872350156307, -0.002961023012176156, 0.017733968794345856, 0.0026524916756898165, -0.03483625501394272, 0.04225270077586174, -0.032473284751176834, 0.0024770237505435944, -0.06672464311122894, -0.0007983795367181301, -0.0526404082775116, 0.0005593043752014637, -0.09086904674768448, 0.02382855862379074, -0.024004027247428894, -0.023021405562758446, -0.02697528526186943, 0.0028235730715095997, 0.04225270077586174, -0.0029566362500190735, 0.002257688669487834, 0.04501339793205261, 0.03214574232697487, 0.05881688371300697, 0.012949541211128235, 0.009288107976317406, -0.019161108881235123, -0.011165616102516651, 0.021383704617619514, -0.042018745094537735, -0.014376681298017502, -0.006714576855301857, 0.007439844775944948, -0.014119327999651432, 0.043492674827575684, -0.011364479549229145, -0.04959896579384804, -0.0805281326174736, -0.01787434332072735, -0.051564205437898636, 0.018155092373490334, -0.014014046639204025, 0.015932496637105942, -0.05745993182063103, 0.01734793931245804, 0.012996332719922066, 0.02214406616985798, 0.014914782717823982, -0.014072536490857601, -0.04290778189897537, 0.005497998557984829, 0.0023966007865965366, 0.05441848561167717, -0.010475441813468933, -0.015967590734362602, 0.0119318263605237, -0.0602206289768219, 0.03160764276981354, 0.04487302526831627, -0.010469593107700348, -0.024682503193616867, -0.03235630691051483, 0.01745321974158287, -0.010241484269499779, 0.02805148996412754, -0.009013207629323006, 0.010762039572000504, -0.04550471156835556, 0.017745666205883026, 0.018798476085066795, -0.032520074397325516, 0.006661936175078154, 0.030484646558761597, 0.015640050172805786, -0.05755351483821869, -0.033619675785303116, 0.0032754032872617245, -0.01746491901576519, -0.01953544095158577, 0.015523072332143784, 0.01031752023845911, -0.01576872728765011, -0.0066268425434827805, -0.02010863646864891, -0.010949205607175827, -0.0010579259833320975, -0.011563342995941639, -0.060501378029584885, 0.006141381338238716, 0.02062334306538105, -0.00902490597218275, -0.02276405319571495, -0.04866313561797142, 0.034134380519390106, 0.014949876815080643, -0.025758707895874977, 0.008317184634506702, 0.019827887415885925, -0.01847093552350998, -0.03139708191156387, 0.044171154499053955, -0.0017546802992001176, 0.010656758211553097, 0.008048133924603462, 0.03811165690422058, 0.000479978189105168, 0.02371158078312874, 0.009323201142251492, 0.015055157244205475, 0.0011193398386240005, -0.028776757419109344, 0.03223932534456253, -0.02592247724533081, -0.019336577504873276, 0.008381523191928864, -0.010633362457156181, 0.0423462837934494, -0.006217417307198048, 0.03343250975012779, -0.016505692154169083, 0.00873830821365118, 0.03233290836215019, -0.0007281923317350447, -0.014996668323874474, -0.0002617398276925087, -0.011966919526457787, 0.01696190983057022, -0.012048805132508278, -0.030461249873042107, -0.002263537608087063, -0.01001922506839037, 0.008293788880109787, 0.00036501005524769425, -0.013686507008969784, 0.04852275922894478, -0.00128384109120816, 0.012540115043520927, -0.0232553631067276, 0.02167615108191967, -0.01637701690196991, 0.006305151153355837, 0.03008691966533661, -0.0018541122553870082, 0.009065848775207996, 0.0003229708527214825, 0.006410432048141956, -0.007960399612784386, -0.020494665950536728, 0.003211064962670207, 0.030905770137906075, -0.005293285474181175, 0.01789774000644684, 0.015979288145899773, 0.007416449021548033, 0.008445861749351025, 0.031490664929151535, -0.006234964355826378, 0.02279914729297161, 0.04276740923523903, -0.007498334161937237, -0.00543950917199254, -0.011335235089063644, -0.014329889789223671, 0.022050483152270317, -0.008059831336140633, -0.017149075865745544, 0.04236968234181404, 0.004766881465911865, 0.02690509893000126, -0.011270896531641483, 0.04604281112551689, 0.03282422199845314, 0.01633022539317608, -0.045177169144153595, -0.014154421165585518, 0.010042620822787285, -0.005375170614570379, -0.030765395611524582, -0.02213236875832081, 0.043328907340765, -0.03011031448841095, 0.004181988071650267, 0.0010235635563731194, 0.004661600571125746, -0.03205215930938721, -0.008404918946325779, -0.022319534793496132, -0.030274083837866783, 0.021956900134682655, -0.001798547338694334, -0.032028764486312866, 0.024097610265016556, -0.002865977818146348, -0.020342594012618065, -0.01801471784710884, -0.024986647069454193, 0.0115984370931983, -0.041504040360450745, -0.003494738368317485, 0.032917801290750504, 0.03801807388663292, -0.02543116733431816, -0.016458900645375252, 0.0031964427325874567, 0.026764724403619766, 0.027232639491558075, 0.02856619656085968, 0.01951204612851143, 0.010762039572000504, -0.005775822792202234, 0.0158506128937006, -0.0368482880294323, -0.01682153530418873, -0.057272765785455704, 0.02213236875832081, -0.008258695714175701, -0.010101109743118286, 0.028308842331171036, 0.028355633839964867, -0.009662440046668053, -0.015640050172805786, 0.0014286022633314133, -0.043328907340765, 0.02433156780898571, 0.01947695203125477, -0.00902490597218275, 0.017266053706407547, 0.019909773021936417, -0.0195822324603796, -0.015172136016190052, -0.04110630974173546, -0.000692733156029135, 0.009621497243642807, -0.004018217790871859, -0.0368482880294323, 0.00023249514924827963, -0.06518052518367767, 0.018131697550415993, -0.03455550596117973, -0.0016479372279718518, -0.027677157893776894, -0.045645084232091904, 0.0018438765546306968, -0.022448210045695305, -0.011346932500600815, -0.007486636284738779, 0.020284105092287064, -0.04335230216383934, 0.005477527156472206, -0.020775415003299713, -0.013592923991382122, 0.027700552716851234, 0.02216746099293232, 9.440545545658097e-05, 0.015569863840937614, 0.010229785926640034, -0.020284105092287064, -0.00014457834186032414, -0.020892394706606865, -0.042088933289051056, 0.03588906303048134, 0.02226104401051998, 0.02636699564754963, -0.05451206862926483, -0.028215259313583374, -0.01003092247992754, -0.029993336647748947, 0.018236977979540825, 0.0487099252641201, -0.0066092959605157375, -0.020857300609350204, -0.015745332464575768, -0.018646402284502983, -0.01423630677163601, -0.021769734099507332, 0.028332239016890526, -0.033081572502851486, -0.0253375843167305, 0.011709567159414291, 0.0024521658197045326, -0.04842917621135712, 0.03750336915254593, 0.003117482177913189, -0.010294124484062195, -0.004126423038542271, -0.02486966922879219, -0.05348265543580055, -0.0074281468987464905, -0.012352949939668179, -0.01166277565062046, 0.006942685227841139, 0.003562001045793295, -0.0056559196673333645, 0.00297418306581676, 0.007147397845983505, 0.029244672507047653, -0.02847261354327202, -0.02847261354327202, -0.03495323285460472, -0.018178489059209824, 0.02491646073758602, -0.019359972327947617, 0.028238655999302864, -0.009440179914236069, -0.03738638758659363, -0.015101948752999306, 0.027139056473970413, 0.0175000112503767, -0.011253349483013153, 0.03631018474698067, 0.008346429094672203, 0.007188340649008751, 0.008486803621053696, -0.010218088515102863, -0.021956900134682655, -0.00649231718853116, -0.0021041540894657373, 0.00894302036613226, 0.007977946661412716, 0.011095428839325905, 0.004907255992293358, 0.00897811446338892, 0.017160773277282715, 0.028379030525684357, 0.01905582845211029, -0.01158089004456997, -0.03930484130978584, 0.0018760457169264555, 0.01899733953177929, -0.010182994417846203, -0.02061164565384388, 0.025548145174980164, 0.04632356017827988, 0.03244988992810249, 0.018599610775709152, -0.018295466899871826, -0.00727607449516654, -0.020904092118144035, -0.005386868491768837, -0.03577208146452904, 0.0006857875850982964, -0.011510702781379223, -0.00013525660324376076, -0.007545125670731068, 0.005395642016083002, -0.012118992395699024, -0.012832562439143658, -0.010855622589588165, 0.013230289332568645, -0.012586906552314758, -0.011966919526457787, -0.034181173890829086, -0.008141716942191124, -0.048803508281707764, 0.0015031761722639203, -0.005056404042989016, -0.002224057214334607, -0.0036819041706621647, 0.00017400580691173673, 0.003716997802257538, -0.02222595177590847, 0.003412853227928281, -0.020880695432424545, -0.003035597037523985, 0.08356957882642746, -0.03820523992180824, -0.009861303493380547, -0.012048805132508278, -0.005623750388622284, -0.03230951353907585, -0.014891386963427067, 0.010206390172243118, -0.035093605518341064, 0.024542128667235374, 0.020868998020887375, -0.02744320034980774, -0.01215408556163311, 0.03055483289062977, -0.010732795111835003, 0.022518398240208626, 0.013054821640253067, -0.03111633099615574, 0.03577208146452904, -0.016224944964051247, 0.00870321411639452, -0.017570199444890022, 0.001636239467188716, 0.010609966702759266, 0.0014417623169720173, 0.011563342995941639, 0.010218088515102863, -0.031981974840164185, 0.015382697805762291, -0.011276745237410069, -0.00370529992505908, -0.02915108948945999, 0.0007241711718961596, -0.014014046639204025, -0.012867655605077744, 0.00014576641842722893, 0.06859630346298218, -0.05666447803378105, 0.010124505497515202, -0.008206055499613285, -0.04166780784726143, 0.021839920431375504, 0.0012809166219085455, 0.023091593757271767, -0.0065274108201265335, 0.030040128156542778, 0.003015125636011362, -0.01899733953177929, -0.0238636527210474, -0.016026079654693604, 0.010212239809334278, -0.011235803365707397, -0.010890715755522251, 0.006784764118492603, -0.01849433034658432, 0.010820528492331505, -0.03209895268082619, 0.0012962700566276908, 0.006211568601429462, 0.007246829569339752, 0.008311335928738117, -0.006995325442403555, 0.004606036003679037, -0.011463911272585392, 0.061016082763671875, 0.021348610520362854, 0.02161766216158867, -0.025548145174980164, -0.020810509100556374, 0.0031467266380786896, -0.003447946859523654, 0.005290361121296883, 0.009738476015627384, 0.02585229091346264, 0.013113311491906643, -0.00032351919799111784, -0.006153079215437174, -0.001933072810061276, 0.02482287771999836, -0.031467266380786896, 0.014645732007920742, -0.021933503448963165, -0.005761200562119484, 0.03738638758659363, 0.015417790971696377, 0.03556152060627937, 0.012493323534727097, 0.03432154655456543, 0.009650741703808308, -0.012750676833093166, 0.030952561646699905, 0.008428314700722694, -0.0008283553179353476, -0.010223937220871449, -0.025501353666186333, 0.009685835801064968, 0.01293784286826849, 0.03443852439522743, 0.013674808666110039, -0.015230624936521053, 0.0015660522039979696, 0.015113646164536476, -0.026296809315681458, -0.01906752586364746, 0.03118651919066906, 0.00634024478495121, 0.030437855049967766, -0.029408441856503487, 0.03914107009768486, -0.05025404319167137, 0.005106119904667139, 0.019804492592811584, -0.03848598897457123, 0.015534769743680954, 0.038813527673482895, 0.03111633099615574, 0.03135028854012489, 0.014622336253523827, 0.009352446533739567, -0.04283759742975235, -0.0038573723286390305, 0.01903243362903595, -0.027068868279457092, 0.03747997060418129, -0.01845923624932766, -0.013335570693016052, 0.0004152743495069444, 0.06606956571340561, 0.03233290836215019, 0.05530752241611481, -0.0028367331251502037, 0.010475441813468933, 0.012364647351205349, 0.0056295995600521564, 0.002691972069442272, -0.01455214899033308, 0.007281923200935125, 0.002474099164828658, 0.004898482467979193, -0.00369067769497633, -0.0296190045773983, 0.002765083685517311, 0.011890883557498455, 0.010042620822787285, 0.0036936020478606224, 0.010376010090112686, 0.012317855842411518, -0.0006269326549954712, 0.0017415202455595136, -0.014095932245254517, -0.015137041918933392, -0.003509360598400235, 0.02648397535085678, -0.006667785346508026, 0.0263202041387558, 0.02107955887913704, 0.021301819011569023, 0.006088740658015013, 0.022483304142951965, -0.03703545406460762, 0.0291276928037405, 0.018272072076797485, -0.0012970012612640858, 0.0275367833673954, 0.00818265974521637, 0.029689190909266472, -0.018856965005397797, -0.01140542235225439, 0.012469928711652756, 0.02954881638288498, 0.003225687425583601, -0.00024602081975899637, 0.025665124878287315, -0.014926481060683727, 0.04922463372349739, 0.04372663423418999, -0.026109643280506134, 0.01166277565062046, 0.03577208146452904, 0.0030092766974121332, -0.02543116733431816, 0.015441186726093292, -0.013663111254572868, -0.004658676218241453, -0.03635697811841965, 0.02746659703552723, -0.010569024831056595, 0.024518733844161034, 0.017827551811933517, 0.016786441206932068, -0.007644557394087315, 0.0069543831050395966, 0.017839249223470688, 0.0067087276838719845, 0.028846945613622665, 0.006088740658015013, 0.05919121578335762, -0.0006642196094617248, -0.02119653858244419, 0.009317352436482906, 0.003880768083035946, 0.016049476340413094, 0.02489306591451168, 0.002955174073576927, -0.03205215930938721, -0.007065512705594301, 0.0201320331543684, -0.022424815222620964, -0.03216914087533951, -0.020810509100556374, 0.013300476595759392, 0.0057553513906896114, 0.015733633190393448, -0.002880600281059742, -0.012727281078696251, 0.03490643948316574, 0.014622336253523827, 0.04087235406041145, 0.023477623239159584, -0.009288107976317406, -0.010042620822787285, -0.009650741703808308, 0.04162101820111275, 0.023091593757271767, 0.025711916387081146, 0.0040650092996656895, 0.0097911162301898, -0.017254356294870377, 0.005717333406209946, 0.0017897739307954907, -0.0010579259833320975, 0.02381686121225357, -0.027817532420158386, -0.03235630691051483, -0.035982646048069, 0.00212462549097836, 0.0027373014017939568, 0.0020500514656305313, -0.028917131945490837, -0.004459812305867672, 0.0047844285145401955, -0.014493659138679504, 0.0065566557459533215, 0.004138120915740728, -0.0022606132552027702, 0.028823548927903175, 0.019991658627986908, 0.008983963169157505, -0.05596260353922844, -0.04648733139038086, -0.006106287706643343, -0.026507370173931122, -0.020810509100556374, 0.0006707996944896877, -0.024542128667235374, -0.004427643492817879, 0.02377006970345974, -0.032496679574251175, -0.012657093815505505, 0.015090251341462135, 0.018833568319678307, -0.03333892673254013, -0.030858978629112244, 0.0038164297584444284, 0.021570870652794838, -0.00725852744653821, 0.001985713141039014, 0.02643718384206295, 0.05806821957230568, 0.04903746768832207, 0.0032344607170671225, 0.017710573971271515, -0.008568689227104187, -0.02592247724533081, -0.024074213579297066, 0.01803811453282833, -0.009843756444752216, 0.015218927524983883, 0.0007391590625047684, -0.04323532432317734, -0.0051295156590640545, -0.0007457391475327313, 0.030975956469774246, 0.004951123148202896, 0.0075100320391356945, 0.01903243362903595, 0.02210897207260132, 0.006620993837714195, 0.011750509031116962, 0.002373205265030265, 0.014786106534302235, 0.019184505566954613, 0.0014176354743540287, 0.028917131945490837, 0.017160773277282715, 0.017769062891602516, -0.020389385521411896, -0.010393556207418442, -0.005433660000562668, -0.005714409053325653, 0.05231286957859993, -0.001284572179429233, 0.008972265757620335, 0.021816525608301163, 0.03008691966533661, 0.010247332975268364, -0.009194524958729744, 0.002664189552888274, 0.017862645909190178, -0.013230289332568645, 0.062139078974723816, 0.019207900390028954, -0.04800805449485779, -0.0010915574384853244, 0.0012809166219085455, 0.007486636284738779, -0.027068868279457092, -0.015008365735411644, -0.011393724009394646, 0.02543116733431816, 0.010364311747252941, 0.00448905723169446, 0.003023899160325527, 0.03397061303257942, 0.0012736055068671703, 0.015452885068953037, 0.021255027502775192, -0.010346764698624611, 0.014996668323874474, -0.028168467804789543, 0.010703549720346928, -0.0007333101821132004, 0.0016040703048929572, -0.029455233365297318, 0.015008365735411644, 0.0116569260135293, -0.0038778434973210096, 0.0017195867840200663, -0.0010264880256727338, 0.017535105347633362, -0.01580382138490677, 0.002137785544618964, -0.04017048329114914, 0.07145058363676071, 0.01059242058545351, 0.006837404333055019, 0.004731787834316492, 0.03640376776456833, 0.018751684576272964, 0.002292782301083207, 0.005980535410344601, 0.024986647069454193, 0.039889734238386154, -0.03689507767558098, 0.025080230087041855, 0.005164609290659428, 0.022845938801765442, 0.022389721125364304, 0.05816180258989334, 0.04491981491446495, 0.04077877104282379, 0.03387703001499176, 0.027302825823426247, -0.00950451847165823, -0.02423798479139805, 0.020693529397249222, 0.004205383826047182, 0.0158506128937006, -0.03967916965484619, -0.015710238367319107, 0.011680321767926216, -0.02316178008913994, 0.01960562914609909, 0.0018614233704283834, 0.004819522146135569, 0.022881031036376953, 0.003129179822281003, -0.0031613491009920835, -0.02854279987514019, -0.010656758211553097, 0.017710573971271515, 0.008878682740032673, -0.018225280568003654, -0.011060334742069244, -0.002576455706730485, 0.0094869714230299, 0.008317184634506702, -0.006825706455856562, 0.0465107262134552, -0.009019057266414165, 0.0063460939563810825, 0.032917801290750504, -0.014879689551889896, 0.029946545138955116, -0.008510199375450611, -0.03698866069316864, -0.01790943741798401, 0.0007205156143754721, 0.014119327999651432, -0.011200709268450737, -0.01004846952855587, -0.025173813104629517, 0.00011231782264076173, 0.01752340793609619, -0.006176474969834089, -0.021418798714876175, 0.039328236132860184, -0.006784764118492603, -0.017616990953683853, -0.015452885068953037, -0.002339573809877038, -0.01685662940144539, 0.02068183198571205, 0.013850276358425617, -0.02267047017812729, -0.013312174938619137, 0.01185579039156437, -0.0059746867045760155, 0.004263873212039471, -0.0035532277543097734, 0.013861974701285362, -0.03020389750599861, -0.03069520741701126, 0.007293621078133583, -0.02006184495985508, 0.04644053801894188, 0.020962581038475037, 0.0031145575921982527, 0.016061173751950264, -0.014528753235936165, 0.04908425733447075, -0.0253375843167305, 0.0424632653594017, -0.0035473788157105446, -0.037784118205308914, -0.013686507008969784, 0.006714576855301857, 0.03062502108514309, -0.019746001809835434, -0.012493323534727097, -0.009586403146386147, 0.01746491901576519, -0.012855958193540573, 0.006176474969834089, -0.030531438067555428, -0.005509696435183287, 0.002617398276925087, 0.022600281983613968, -0.011265047825872898, -0.0026276337448507547, 0.004193685948848724, -0.005734880454838276, 0.01137617789208889, 0.000713204441126436, -0.014458565972745419, 0.004886784590780735, -0.009346596896648407, -0.04739976301789284, -0.03139708191156387, 0.014446868561208248, -0.0035035116598010063, 0.012224272824823856, -0.010071865282952785, -0.01688002422451973, 0.0015002517029643059, 0.0011515090009197593, 0.004360380582511425, 0.01086147129535675, 0.008767552673816681, -0.0003860296856146306, 0.05193853750824928, 0.0291276928037405, 0.013955557718873024, -0.0013035812880843878, 0.008767552673816681, 0.010118656791746616, -0.023501018062233925, 0.010516383685171604, -0.025618333369493484, 0.007866816595196724, -0.007211736403405666, 0.015698540955781937, -0.0012699499493464828, -0.011791451834142208, 0.0011376177426427603, -0.020412780344486237, -0.02374667301774025, -0.03266045078635216, 0.03841580078005791, -0.01059242058545351, -0.04594922810792923, 0.011183162219822407, -0.00927640963345766, 0.005989308934658766, 0.021535776555538177, -0.009446029551327229, 0.007112304214388132, 0.037807513028383255, -0.0007537814090028405, -0.0015324208652600646, -0.009902246296405792, 0.02952542155981064, 0.0020339670591056347, -0.00658005103468895, -0.004848766606301069, -0.008428314700722694, -0.023933839052915573, -0.0217229425907135, -0.003556152107194066, -0.0030122012831270695, 0.007352110464125872, -0.0007318479474633932, -0.01948864944279194, 0.012809166684746742, -0.020319199189543724, 0.0032754032872617245, 0.013744995929300785, -0.03848598897457123, -0.004407172091305256, 0.0042024594731628895, 0.028215259313583374, -0.04742316156625748, 0.007814176380634308, 0.01108958013355732, -0.0073462617583572865, -0.01086147129535675, 0.002528202021494508, 0.01161598414182663, 0.009346596896648407, 0.001589447958394885, -0.00394510617479682, -0.007416449021548033, 0.007357959635555744, 0.025033438578248024, 0.021021069958806038, 0.01579212211072445, -0.02123163267970085, -0.010598269291222095, -0.03972596302628517, 0.02161766216158867, -0.03205215930938721, 0.029993336647748947, -0.0024097610730677843, -0.0013569528236985207, 0.008732459507882595, 0.009767720475792885, -0.015710238367319107, 0.017862645909190178, -0.046744685620069504, -0.02123163267970085, -0.036146413534879684, 0.00501546123996377, 0.012961238622665405, 0.031958576291799545, 0.01580382138490677, 0.011335235089063644, 0.015230624936521053, 0.044685859233140945, -0.054278112947940826, 0.014400077052414417, 0.01059242058545351, 0.01684493198990822, -0.06419790536165237, -0.012622000649571419, -0.005866481456905603, 0.008902078494429588, -0.02274065650999546, 0.026764724403619766, 0.006281755398958921, -0.013487642630934715, 0.019149411469697952, 0.02000335603952408, -0.02905750647187233, -0.0013957020128145814, -0.02278744801878929, 0.01801471784710884, 0.01637701690196991, -0.03261365741491318, -0.029174484312534332, -0.015382697805762291, -0.03214574232697487, -0.016248339787125587, 0.005483375862240791, -0.0007384279742836952, -0.01847093552350998, -0.006117985583841801, -0.025150418281555176, -0.009112640284001827, 0.04162101820111275, -0.024401754140853882, -0.03876673802733421, -0.002817724132910371, -0.010106958448886871, -0.0047025433741509914, -0.016271736472845078, -0.03972596302628517, -0.0013920464552938938, 0.01319519616663456, -0.01953544095158577, 0.001122264307923615, 0.016072871163487434, -0.007194189354777336, -0.005141213536262512, 0.03273063898086548, -0.04433492198586464, 0.017055492848157883, 0.011633530259132385, 0.02954881638288498, 0.04375002905726433, -0.0073462617583572865, -0.02384025603532791, -0.029735982418060303, -0.0038485988043248653, -0.028262050822377205, 0.015476280823349953, -0.018236977979540825, -0.009995829313993454, -0.01802641525864601, -0.017137378454208374, -0.02648397535085678, -0.004541697446256876, -0.00793700385838747, -0.0005450475728139281, 0.030508041381835938, 0.04765711724758148, 0.03130349889397621, -0.014107629656791687, 0.005895725917071104, 0.025010043755173683, -0.0016786442138254642, 0.004009444732218981, -0.007808327674865723, -0.00029811286367475986, 0.024401754140853882, 0.007708895485848188, 0.04115310311317444, -0.012949541211128235, 0.006211568601429462, 0.04768051207065582, -0.008890380151569843, -0.011516551487147808, -0.013475945219397545, -0.051002707332372665, -0.02274065650999546, -0.006474770605564117, 0.012095596641302109, 0.020775415003299713, -0.010884867049753666, 0.041948556900024414, 0.029993336647748947, 0.0008963492000475526, 0.005612052511423826, -0.04391380026936531, -0.0057114847004413605, 0.00780247850343585, -0.03656753897666931, 0.009925642050802708, 0.027653761208057404, 0.007591916713863611, -0.03116312250494957, -0.027115659788250923, 0.0005662499461323023, 0.032426491379737854, -0.0027870172634720802, -0.013663111254572868, -0.0018263297388330102, -0.028706571087241173, 0.018646402284502983, -0.004579715896397829, -0.004480283707380295, -0.013288779184222221, -0.014575544744729996, 0.007948702201247215, -0.013546132482588291, -0.004389625508338213, 0.01559325959533453, -0.06873667985200882, -0.017745666205883026, 0.012774072587490082, 0.006919289473444223, -0.020295802503824234, 0.00017574219964444637, -0.02379346452653408, -0.028636382892727852, 0.013908766210079193, -0.062045495957136154, -0.0010462281061336398, 0.004214157350361347, 0.029268067330121994, 0.006860800087451935, 0.009814511984586716, 0.019172806292772293, 0.011738811619579792, 0.009527914226055145, 0.010095261037349701, -0.04225270077586174, -0.02324366569519043, -0.0035035116598010063, -0.012727281078696251, 0.014049140736460686, 0.04227609932422638, 0.0369652658700943, -0.01450535748153925, -0.0156049570068717, 0.009557158686220646, 0.0035853968001902103, 0.02221425250172615, 0.012505021877586842, 0.024542128667235374, -0.008141716942191124, 0.020728623494505882, 0.018190186470746994, 0.02688170224428177, 0.0018160941544920206, 0.0031321044079959393, 0.003854447742924094, -0.01945355534553528, 0.02489306591451168, -0.028940526768565178, 0.01588570512831211, 0.004375002812594175, -0.03972596302628517, 0.01789774000644684, 0.029969939962029457, -0.03876673802733421, 0.04421794414520264, -0.011200709268450737, 0.03654414415359497, -0.005576958879828453, -0.0038427498657256365, -0.0007102799718268216, 0.014528753235936165], [-0.0060199894942343235, -0.018088994547724724, 0.01628938317298889, -0.02035302110016346, -0.04038095101714134, -0.01019392628222704, 0.013978914357721806, 0.07523535192012787, 0.026611024513840675, 0.020306579768657684, -0.03002448007464409, 0.010582874529063702, 0.015894629061222076, -0.004301650915294886, -0.06134932488203049, 0.021351514384150505, -0.03318250551819801, 0.04748651385307312, -0.010373887605965137, 0.004046222660690546, 0.021978477016091347, 0.03822141885757446, 0.005337878596037626, 0.023069852963089943, -0.011598783545196056, -0.012446342967450619, 0.024683699011802673, -0.021409567445516586, 0.03766411915421486, -0.03318250551819801, 0.013851200230419636, -0.01156975794583559, 0.03787310793995857, -0.01241151150316, -0.00016245481674559414, 0.010298419743776321, -0.07560689002275467, 0.01423434354364872, 0.00237722834572196, -0.07082340866327286, -0.019389359280467033, 0.0174968633800745, -0.02095676213502884, -0.07792896777391434, -0.021885592490434647, 0.08145852386951447, 0.06381072849035263, -0.04226183518767357, 0.01379314810037613, 0.020248528569936752, 0.019099099561572075, -0.03680495172739029, -0.009270899929106236, -0.01102987490594387, 0.02130507305264473, 0.035713572055101395, -0.021247021853923798, -0.00691979518160224, 0.048299241811037064, -0.018681123852729797, 0.017345929518342018, 0.003503436455503106, 0.01657964289188385, 0.06850132346153259, -0.03448287025094032, -0.0004633273056242615, 0.03782666474580765, 0.004972151480615139, -0.054290205240249634, 0.025542868301272392, -0.020852267742156982, 0.025148114189505577, 0.023127906024456024, -0.04593072086572647, -0.03715326264500618, 0.03752479329705238, 0.03692105412483215, 0.0026703907642513514, 0.057169582694768906, 0.0012473916867747903, 0.01733431965112686, -0.010513212531805038, -0.01619650050997734, 0.04391051083803177, -0.025148114189505577, -0.007285522297024727, -0.04802059009671211, -0.0009433445520699024, -0.01215608324855566, -0.004435170441865921, 0.037617675960063934, 0.020434293895959854, 0.007163613103330135, 0.02279120497405529, 0.0023191762156784534, 0.03696749731898308, -0.0034424818586558104, -0.023661984130740166, -0.003921410534530878, 0.06868709623813629, 0.007761548738926649, -0.015290888957679272, 0.029978038743138313, 0.038058873265981674, 0.025891179218888283, -0.061860181391239166, -0.04114723578095436, 0.06306765973567963, 0.04254048317670822, 0.004922807216644287, -0.021421177312731743, 0.0018953968537971377, -0.035620689392089844, 0.036410197615623474, -0.003007092047482729, -0.01883205957710743, -0.00919543206691742, -0.005230482667684555, 0.0020666501950472593, -0.010484186001121998, -0.01241151150316, -0.020747775211930275, -0.03383268788456917, -0.03768733888864517, -0.013816369697451591, -0.037640899419784546, -0.12046945095062256, -0.009532134048640728, -0.008568471297621727, -0.017671020701527596, -0.003979462664574385, -0.01996987871825695, 0.08136564493179321, -0.019099099561572075, 0.0024860757403075695, -0.046650566160678864, 0.009706289507448673, -0.03977721184492111, -0.005677483044564724, -0.020492346957325935, 0.03613154590129852, -0.044932227581739426, 0.022071359679102898, 0.01505868136882782, -0.019424188882112503, 0.020155644044280052, -0.00048074289225041866, 0.04384084790945053, -0.040566716343164444, 0.01857663132250309, -0.003114488208666444, -0.006089651957154274, -0.005709411576390266, -0.016602864488959312, 0.010693172924220562, 0.061674416065216064, -0.007157808169722557, -2.1803503841510974e-05, -0.020817436277866364, 0.021514059975743294, -0.026680685579776764, -0.02960650622844696, -0.0020942247938364744, -0.03576001524925232, 0.06771182268857956, 0.033809468150138855, 0.023290451616048813, -0.00878326315432787, -0.05995607748627663, -0.03959144651889801, -0.02352265827357769, -0.049274515360593796, 0.021188968792557716, 0.01182518620043993, 0.026843231171369553, -0.0831768661737442, -0.032509103417396545, 0.02342977561056614, 0.02758629620075226, 0.00219146185554564, 0.01545343454927206, 0.017299488186836243, 0.0158481877297163, 0.03880193829536438, -0.04834568127989769, -0.0055555738508701324, -0.014129850082099438, 0.00711717177182436, -0.015070292167365551, 0.033554039895534515, 0.04460713639855385, -0.012504395097494125, -0.03253232315182686, 0.01762457937002182, 0.006972041912376881, 0.0197841115295887, -0.010960211977362633, -0.02440504916012287, -0.002946137450635433, 0.0004183370328973979, -0.010989238508045673, -0.02121219038963318, 0.01436205767095089, 0.04007907956838608, -0.018495358526706696, -0.0038778716698288918, 0.05656583979725838, -0.019946657121181488, 0.10133552551269531, 0.045791395008563995, 0.04783482477068901, 0.00043938084854744375, -0.03197502717375755, -0.0016399682499468327, -0.028956323862075806, -0.008928393013775349, 0.018077384680509567, -0.006960431579500437, 0.04256370663642883, 0.012074810452759266, 0.009305731393396854, -0.06399649381637573, 0.0016269064508378506, -0.023638762533664703, 0.004589008167386055, -0.01879722811281681, -0.0013983268290758133, 0.004002683330327272, 0.008260795846581459, -0.05809841305017471, -0.005567184183746576, 0.027539854869246483, -0.016150059178471565, -0.03002448007464409, 0.0005645554047077894, 0.05252542346715927, -0.01184260193258524, -0.034343548119068146, 0.003001286881044507, -0.0207013338804245, 0.016858292743563652, 0.007610613480210304, -0.004478709772229195, 0.016092006117105484, -0.019470632076263428, -0.027934608981013298, -0.03490084409713745, -0.026936115697026253, 0.05182880163192749, 0.0007303663878701627, 0.02577507495880127, 0.006408937741070986, 0.02942073903977871, -0.03898770362138748, 0.052571866661310196, 0.0360851064324379, 0.0014600070426240563, -0.0036863002460449934, 0.05415087938308716, -0.03817497566342354, 0.009967523626983166, -0.005404638592153788, -0.03843040391802788, 0.03362370282411575, -0.001996987732127309, -0.03106941469013691, 0.05150371044874191, 0.005616528447717428, 0.004818313755095005, 0.03411133959889412, -0.01949385181069374, -0.02108447626233101, 0.020469125360250473, 0.0076512498781085014, -0.012469563633203506, 0.014512993395328522, -0.0027661763597279787, -0.03195180371403694, -0.010524822399020195, 0.05201456695795059, -0.058469947427511215, 0.001110969576984644, 0.03158027306199074, -0.08675286918878555, -0.003909800201654434, -0.007837016135454178, 0.052989840507507324, 0.042052850127220154, 0.01971445046365261, 0.004472904372960329, 0.007837016135454178, 0.011860017664730549, 0.006699197459965944, -0.016986006870865822, 0.04165809601545334, 0.015441824682056904, -0.04811347275972366, -0.011830992065370083, 0.009427640587091446, -0.029490401968359947, 0.03116229921579361, 0.015093512833118439, -0.005996768828481436, 0.025287438184022903, -0.012039978988468647, 0.05080708488821983, 0.012829485349357128, 0.021734658628702164, -0.021003203466534615, 0.004394534043967724, 0.003616637783125043, 0.02716832235455513, -0.05572989210486412, -0.006478600203990936, 0.0004528053686954081, 0.010246173478662968, -0.020016320049762726, -0.021386345848441124, 0.008980640210211277, -0.003041923278942704, 0.03966110572218895, 0.016115227714180946, 0.013584161177277565, -0.030326349660754204, 0.03037279099225998, -0.023894190788269043, 0.022814424708485603, 0.005816807504743338, -0.015999123454093933, -0.008998055942356586, -0.07082340866327286, -0.017775513231754303, 0.0037269366439431906, -0.034413207322359085, -0.012144472450017929, -0.011262082494795322, -0.0006697745993733406, -0.020782606676220894, -0.03782666474580765, 0.009880445897579193, 0.009694679640233517, 0.0031725403387099504, -0.038500066846609116, -0.02260543778538704, 0.015163174830377102, 0.031626712530851364, 0.01826315000653267, 0.05651940032839775, 0.04358541965484619, 0.026262711733579636, -0.023638762533664703, 0.02707543969154358, -0.02101481333374977, -0.023627152666449547, 0.014083408750593662, -0.024683699011802673, 0.05206100642681122, -0.043353211134672165, 0.012457952834665775, 0.00677466532215476, -0.042331498116254807, -0.017229825258255005, 0.029443960636854172, -0.009061913006007671, -0.004821216221898794, 0.013978914357721806, 0.011848407797515392, 0.0231743473559618, -0.004803800489753485, -0.0052478983998298645, 0.02370842546224594, 0.05749467387795448, -0.02795782871544361, -0.0009426188771612942, -0.0061360932886600494, -0.020329801365733147, 0.020248528569936752, 0.051178619265556335, 0.03643341735005379, 0.008237575180828571, 0.011494290083646774, -0.01060609519481659, 0.04458391293883324, 0.04402661696076393, 0.01714855246245861, -0.011622005142271519, -0.033461157232522964, -0.0036340535152703524, 0.05141082778573036, -0.010060406289994717, -0.0017662312602624297, -0.019726060330867767, -0.01914554089307785, -0.00028372902306728065, 0.0094798868522048, 0.010246173478662968, 0.025798296555876732, 0.05080708488821983, -0.04504832997918129, -0.042238615453243256, -0.04904230684041977, -0.034250661730766296, 0.01579013653099537, -0.02205974981188774, -0.014594265259802341, 0.03854651004076004, -0.04576817527413368, -0.02830614149570465, 0.024242503568530083, -0.019853774458169937, -0.03021024540066719, -0.04221539571881294, 0.03817497566342354, -0.007459678221493959, 0.021815931424498558, 0.029815493151545525, 0.03408811613917351, 0.01930808648467064, -0.005358196794986725, -0.047881267964839935, -0.001671896781772375, 0.018309591338038445, 0.02709866128861904, 0.016184890642762184, -0.04293523728847504, -0.013944083824753761, 0.008080834522843361, -0.0006120854523032904, -0.0064321584068238735, -0.07175223529338837, -0.028956323862075806, -0.007157808169722557, 0.04242438077926636, 0.043190665543079376, -0.029443960636854172, -0.025728633627295494, -0.014721980318427086, -0.008945808745920658, 0.0012227196712046862, -0.04774194210767746, -0.04625581204891205, 0.005111475940793753, 0.0026674880646169186, 0.025635750964283943, -0.05512615293264389, -0.012318628840148449, -0.009085133671760559, 0.06343919783830643, 0.0022916016168892384, 0.005517839919775724, -0.05034267157316208, -0.002454147208482027, 0.0023191762156784534, 0.04356219992041588, -0.06074558198451996, -0.030001258477568626, -0.007041704375296831, -0.029118869453668594, 0.0003653645981103182, -0.012620498426258564, -0.010936991311609745, 0.03661918267607689, 0.01187162846326828, 0.010130069218575954, 0.0217114370316267, 0.013978914357721806, -0.007709302008152008, 0.010397108271718025, 0.0009447958436794579, 0.011209835298359394, 0.0035266573540866375, 0.012086420319974422, 0.037617675960063934, 0.04117045924067497, 0.004127494990825653, -0.022489333525300026, -0.024776581674814224, -0.02663424424827099, -0.023534270003437996, -0.04713819921016693, -0.001628357800655067, -0.009294120594859123, 0.03854651004076004, 0.011058900505304337, -0.0030157999135553837, 0.018460527062416077, 0.07124137878417969, -0.04065960273146629, -0.05280407518148422, -0.06441447138786316, -0.01591785065829754, 0.01187162846326828, 0.015732083469629288, -0.010037185624241829, -0.050389111042022705, -0.0005235561984591186, -0.03826785832643509, 0.03715326264500618, 0.03531881794333458, -0.016405487433075905, 0.029815493151545525, -0.058562830090522766, 0.017740681767463684, -0.010124264284968376, 0.02526421844959259, -0.007088145706802607, 0.0023656177800148726, -0.03306640312075615, 0.022361619397997856, -0.021548891440033913, -0.06204594671726227, -0.018437305465340614, 0.009061913006007671, -0.007006872911006212, -0.024706918746232986, 0.00866715982556343, 0.03097653202712536, 0.03153382986783981, -0.028515128418803215, 0.001087023178115487, -0.016475150361657143, 0.02127024158835411, 0.0064321584068238735, 3.553415444912389e-05, -0.03197502717375755, 0.012492784298956394, -0.02031818963587284, -0.05006401985883713, -0.01536055188626051, -0.009665653109550476, 0.014838083647191525, -0.06000251695513725, -0.039103809744119644, 0.015859799459576607, -0.01705566979944706, -0.0013097976334393024, 0.02301180176436901, 0.04881009832024574, -0.016533201560378075, -0.012202524580061436, 0.041611652821302414, -0.035458143800497055, 0.01383959036320448, -0.012701771222054958, 0.019133929163217545, -0.011546537280082703, 0.024962347000837326, -0.008684574626386166, -0.029745830222964287, -0.006600509397685528, -0.02079421654343605, 0.006397327408194542, 0.011447848752140999, 0.0022204879205673933, 0.009375393390655518, -0.015279279090464115, 0.0465344600379467, 0.010344861075282097, 0.03731580823659897, -0.03262520954012871, 0.007784769404679537, 0.005747145041823387, -0.00837109424173832, -0.030953310430049896, 0.00048691092524677515, 0.026262711733579636, 0.012992030940949917, -0.030349571257829666, -0.018994605168700218, -0.007546756416559219, -0.047974150627851486, 0.052293214946985245, 0.016858292743563652, -0.018077384680509567, 0.052478983998298645, -0.00033452449133619666, 0.00269070896320045, -0.04497866705060005, -0.0009005311876535416, -0.0017328513786196709, 0.04293523728847504, 0.027888167649507523, 0.051875241100788116, 0.008359484374523163, 0.008040198124945164, -0.007691886276006699, 0.01046096533536911, -0.005572989117354155, -0.010577069595456123, 0.043608639389276505, -0.008022782392799854, -0.0002129781641997397, -0.014350447803735733, 0.008272405713796616, -0.023545879870653152, 0.0384768471121788, 0.005311755463480949, 0.02251255512237549, 0.0069314055144786835, 0.01905265636742115, -0.002866316121071577, -0.030419232323765755, -0.004638352431356907, -0.0049547357484698296, -0.015139954164624214, -0.010675757192075253, -0.032950300723314285, 0.011407212354242802, -0.02323239855468273, -0.020492346957325935, 0.039637885987758636, 0.006850132718682289, -0.01971445046365261, -0.010310030542314053, -0.021606944501399994, -0.012794654816389084, -0.04637191444635391, -0.02603050321340561, -0.02932785637676716, -0.008591691963374615, -0.007546756416559219, -0.02786494605243206, -0.0015340233221650124, 0.0019447410013526678, 0.0033176701981574297, 0.0017909032758325338, 0.003715326078236103, -0.031046194955706596, 0.017229825258255005, -0.02288408763706684, 0.019668007269501686, 0.0527576319873333, -0.017253046855330467, -0.0028184233233332634, -0.0025571894366294146, -0.011935485526919365, 0.0038343328051269054, -0.025240996852517128, 0.012817875482141972, -0.014710369519889355, 0.009317341260612011, -0.0004673183721024543, -0.00416813138872385, 0.00182863709051162, 0.012492784298956394, 0.05289695784449577, 0.027214763686060905, -0.02279120497405529, 0.029931597411632538, 0.01654481142759323, 0.02355748973786831, 0.02568219229578972, -0.010757029987871647, 0.0008635231060907245, 0.017171774059534073, -0.014176291413605213, 0.011703277938067913, 0.026007283478975296, 0.017206603661179543, -0.00431035878136754, -0.043956954032182693, 0.0010151838650926948, -0.035365261137485504, -0.018495358526706696, 0.007877652533352375, 0.011691667139530182, 0.026239491999149323, 0.021096086129546165, -0.011093731969594955, -0.029978038743138313, -0.04681311175227165, 0.010054601356387138, 0.013595771975815296, -0.010211342014372349, -0.019668007269501686, -0.023093074560165405, -0.02733086794614792, 0.008661353960633278, -0.021537281572818756, 0.03933601453900337, -0.03130162134766579, -0.004664476029574871, 0.006606314331293106, 0.028491906821727753, 0.01626616157591343, -0.020213697105646133, 0.004150716122239828, -0.015929460525512695, -0.021827541291713715, -0.012260576710104942, -0.008458171971142292, -0.0027821408584713936, 0.03065144084393978, 0.004290040582418442, -0.008516224101185799, 0.0028053615242242813, 0.0010565458796918392, 0.00866715982556343, 0.005065034609287977, -0.01788000762462616, 0.025473205372691154, 0.036758508533239365, -0.022721542045474052, -0.08220159262418747, -0.0003860456054098904, -0.008969029411673546, 0.01047838106751442, 0.00029007846023887396, 0.011128563433885574, -0.019551904872059822, -0.0034918261226266623, -0.011349160224199295, -0.00640313234180212, -0.015952682122588158, -0.012701771222054958, -0.007895068265497684, -0.02298858016729355, 0.0002918925601989031, 0.025449983775615692, 0.007024288643151522, -0.06260324269533157, 0.020689722150564194, -0.007157808169722557, 0.010925381444394588, 0.008585887029767036, -0.01769424043595791, -0.008365289308130741, -0.034575752913951874, -0.020283358171582222, 0.01889011077582836, 0.03264842927455902, -0.010966017842292786, 0.04307456314563751, 0.02542676404118538, 0.0065714833326637745, 0.02612338773906231, -0.05614786595106125, 0.00963662751019001, -0.015395383350551128, -0.020364630967378616, 0.023418165743350983, 0.015465045347809792, 0.0298619344830513, -0.02311629429459572, 0.003451189724728465, -0.020109202712774277, 0.02269832044839859, 0.021978477016091347, -0.03325216844677925, -0.018495358526706696, -0.008847120217978954, 0.006757249590009451, 0.0034424818586558104, 0.0018228319240733981, 0.02498556859791279, 0.01033325120806694, 0.02282603457570076, 0.01032164040952921, -0.001166844624094665, -0.0028401927556842566, 0.015418604016304016, 0.02535710111260414, -0.01736914925277233, -0.029583284631371498, 0.02352265827357769, 0.023197567090392113, -0.03966110572218895, -0.001754620810970664, -0.0020085982978343964, 0.010037185624241829, 0.02051556669175625, 0.0036892027128487825, 0.049181628972291946, 0.016498370096087456, 0.006391522008925676, -0.0028111666906625032, -0.012330238707363605, -0.02114252746105194, -0.03833752125501633, -0.026193048804998398, -0.0007822503102943301, -0.008736821822822094, -0.014687148854136467, 0.007976341061294079, -0.0008874695049598813, -0.05024978518486023, 0.0015703057870268822, 0.003050631145015359, 0.026703907176852226, 0.02104964479804039, -0.00848139263689518, -0.010844108648598194, -0.006867548450827599, -0.03715326264500618, -0.0013156027998775244, -0.02323239855468273, 0.014954187907278538, -0.025937620550394058, -0.019702838733792305, 0.006838522385805845, -0.007662860210984945, 0.0032741311006247997, -0.01775229349732399, 0.030674662441015244, 0.05252542346715927, -0.02146761864423752, -0.036340534687042236, 0.0132358493283391, 0.014269175007939339, -0.05730890482664108, 0.009688873775303364, -0.020294969901442528, 0.014559434726834297, 0.04295846074819565, 0.018332812935113907, -0.0019070073030889034, -0.03116229921579361, 0.010275199078023434, -0.002345299581065774, -0.036944273859262466, 0.029978038743138313, -0.016591252759099007, 0.00021315958292689174, -0.008446562103927135, 0.03357725962996483, -0.03896448388695717, -0.01341000571846962, 0.017740681767463684, -0.014083408750593662, 0.003712423611432314, -0.006101262290030718, 0.013177797198295593, 0.05326848849654198, -0.007575782481580973, -0.012666940689086914, 0.02225712686777115, -0.0008323201327584684, 0.003152222139760852, 0.012643719092011452, 0.0208870992064476, 0.07523535192012787, -0.03534204140305519, 0.0174968633800745, -0.0009847065666690469, -0.031719598919153214, 0.03559746965765953, -0.02767918072640896, -0.009671458043158054, -0.014396889135241508, -0.0022959555499255657, 0.008777458220720291, -0.008864535950124264, -0.023464607074856758, 0.0058806645683944225, 0.02139795757830143, -0.03325216844677925, 0.002712478395551443, -0.0053640021942555904, 0.012574057094752789, -0.013746706768870354, -0.024869464337825775, 0.006606314331293106, 0.04885653778910637, 0.005047618877142668, 0.007657055277377367, 0.010054601356387138, 0.0020245625637471676, -0.007790574803948402, 0.03508661314845085, 0.02951362170279026, 0.029025986790657043, -0.010199731215834618, -0.009439250454306602, 0.008893562480807304, -0.01756652630865574, -0.05512615293264389, 0.029815493151545525, 0.01545343454927206, 0.003561488352715969, 0.0233601126819849, -0.02073616348206997, 0.026007283478975296, 0.020364630967378616, -0.00600837916135788, 0.04261014610528946, -0.0011196774430572987, -0.0007122251554392278, 0.05712313950061798, 0.02570541389286518, -0.02890988253057003, 0.015743695199489594, 0.02498556859791279, -0.0004999726079404354, -0.008742626756429672, 0.0351794958114624, -0.02612338773906231, -0.020933540537953377, 0.0037675730418413877, -0.0264716986566782, 0.03081398643553257, -0.008649744093418121, 0.024939127266407013, -0.05610142648220062, -0.01253922563046217, -0.04871721565723419, 0.012399900704622269, 0.0024918809067457914, -0.014129850082099438, 0.020144034177064896, -0.0003755236975848675, 0.033112846314907074, -0.018530189990997314, 0.015302499756217003, -0.028399024158716202, 0.0017996111419051886, -0.0038749692030251026, -0.01996987871825695, 0.010344861075282097, 0.020016320049762726, 0.01733431965112686, 0.019586734473705292, 0.010530627332627773, -0.018901722505688667, -0.012933979742228985, -0.005123086739331484, 0.00649021053686738, -0.00690237944945693, -0.021897204220294952, -0.00874843169003725, 0.00965404324233532, 0.014896135777235031, 0.05712313950061798, 0.0313248448073864, 0.02770240046083927, -0.008905172348022461, 0.03673528879880905, 0.04330677166581154, 0.0012706125853583217, 0.02777206338942051, -0.034413207322359085, 0.034413207322359085, 0.023847749456763268, -0.0069836522452533245, 0.016718968749046326, -0.013050083070993423, 0.020457515493035316, 0.020457515493035316, -0.008945808745920658, 0.01572047360241413, -0.014977408573031425, 0.020376242697238922, -0.0316963754594326, 0.01143043301999569, -0.010060406289994717, 0.003935923799872398, 0.011517510749399662, 0.0078079900704324245, 0.009543743915855885, 0.012214134447276592, 0.043631862848997116, 0.019505461677908897, 0.013142966665327549, 0.03492406755685806, -0.03759445622563362, 0.03021024540066719, 0.024892685934901237, 0.002207426121458411, -0.004992469679564238, 0.014164681546390057, 0.010246173478662968, -0.022837646305561066, 0.007767353672534227, 0.02663424424827099, -0.00028318478143773973, -0.012875927612185478, -0.006658561062067747, 0.003462800057604909, -0.006316054612398148, 0.015964291989803314, 0.0032363974023610353, 0.002518004272133112, 0.02795782871544361, 0.015406993217766285, 0.009038692340254784, -0.016626084223389626, 0.03473829850554466, 0.002966455649584532, 0.005735534708946943, 0.014942577108740807, 0.03873227536678314, 0.018170267343521118, 0.02865445241332054, 0.056798048317432404, 0.028793778270483017, -0.026494920253753662, 0.007871847599744797, -0.024288944900035858, 0.013851200230419636, -0.005755852907896042, -0.016916343942284584, 0.016033954918384552, -0.035969000309705734, -0.0009527779766358435, -0.003901092568412423, 0.020178865641355515, 0.007912483997642994, 0.01918037235736847, 0.008742626756429672, -0.010397108271718025, 0.021572113037109375, 0.015372161753475666, -0.02358071133494377, 0.011465264484286308, -0.006316054612398148, 0.00502439821138978, -0.018251540139317513, 0.014420109800994396, -0.007215860299766064, 0.00683271698653698, 0.03039601258933544, 0.037617675960063934, 0.019981488585472107, -0.029560064896941185, 0.005642651580274105, -0.023847749456763268, 0.0029142089188098907, 0.04277269169688225, 0.011250471696257591, 0.019795723259449005, -0.004237793851643801, 0.022268736734986305, -0.017125330865383148, 0.0037849885411560535, 0.01889011077582836, 0.00740162655711174, 0.026587802916765213, 0.011053095571696758, -0.02440504916012287, -0.03801243007183075, 0.009044497273862362, -0.01991182565689087, 0.01696278527379036, -0.01921520195901394, -0.023987075313925743, -0.010826692916452885, -0.010884745046496391, 0.013897642493247986, 0.04200640693306923, 0.026076946407556534, 0.017392370849847794, 0.026448478922247887, 0.0013090720167383552, -0.04716142266988754, -0.009828198701143265, 0.004153618589043617, -0.007250691298395395, 0.0031870531383901834, -0.03803565353155136, -0.03870905563235283, -0.014280784875154495, 0.026448478922247887, -0.02431216649711132, -0.012039978988468647, -0.028445465490221977, 0.04096147045493126, -0.018971383571624756, -0.002943234983831644, 0.0019316793186590075, 0.033368274569511414, 0.00642054807394743, -0.024010295048356056, 0.03522593528032303, 0.029443960636854172, 0.036270871758461, 0.025310659781098366, 0.020109202712774277, 0.008167912252247334, -0.01588301919400692, -0.013851200230419636, 0.017543306574225426, -0.014582655392587185, 0.016184890642762184, 0.018112214282155037, -0.028352582827210426, 0.0034773130901157856, -0.014571044594049454, 0.03039601258933544, 0.008916783146560192, 0.027470193803310394, 0.019737670198082924, 0.026425257325172424, -0.00296065048314631, -0.007732522673904896, 0.03629409149289131, -0.018948163837194443, -0.02577507495880127, 0.02041107416152954, 0.0298619344830513, 0.035202715545892715, 0.01753169484436512, 0.009595991112291813, 0.017032448202371597, -0.004905391484498978, 0.021456008777022362, 0.043887291103601456, -0.022593827918171883, -0.01746203377842903, 0.016846682876348495, -0.011813576333224773, -0.03248588368296623, -0.001465086592361331, 0.007935704663395882, 0.029304634779691696, -0.012074810452759266, 0.03385591134428978, 0.006995262578129768, 0.0015035460237413645, 0.019099099561572075, 0.035992223769426346, 0.006095456890761852, 0.024265723302960396, -0.003314767498522997, -0.040334511548280716, 0.02482302300632, -0.01519800629466772, 0.00711717177182436, -0.014861304312944412, 0.019203592091798782, -0.0008910977630876005, -0.016161669045686722, -0.027888167649507523, -0.029188530519604683, -0.02196686528623104, -0.027470193803310394, 0.010368081741034985, 0.005244995467364788, -0.013781538233160973, -0.0008635231060907245, 0.032764531672000885, 0.0032596183009445667, -0.012655329890549183, -0.010472576133906841, 0.014698759652674198, 0.001902653370052576, 0.0399397574365139, -0.013444836251437664, 0.00781379546970129, 0.0763963982462883, -0.005059229210019112, 0.017009228467941284, -0.031464166939258575, 0.037640899419784546, 0.015139954164624214, 0.009625016711652279, 0.019993098452687263, -0.005422054324299097, 0.050389111042022705, -0.043538980185985565, -0.02225712686777115, 0.01017651055008173, 0.0019505462842062116, -0.028840219601988792, 0.030187025666236877, 0.02053878828883171, 0.025055231526494026, 0.028677674010396004, 0.010658342391252518, -0.024753360077738762, -0.00016454105207230896, 0.035806454718112946, -0.0031638324726372957, 0.006252197548747063, -0.004008488729596138, -0.01579013653099537, -0.0038459431380033493, -0.0075119249522686005, 0.011616199277341366, 0.028073932975530624, 0.02174626849591732, -0.004258112050592899, 0.009863030165433884, -0.009572770446538925, -0.03176603838801384, -0.03239300101995468, 0.03262520954012871, 0.03106941469013691, 0.0005540334968827665, -0.01866951398551464, 0.01210964098572731, -0.02238484099507332, 0.013711875304579735, 0.002284344984218478, 0.026076946407556534, -0.020852267742156982, 0.0011748267570510507, -0.010582874529063702, -0.02396385371685028, 0.013270680792629719, 0.019760891795158386, -0.017798734828829765, -0.02770240046083927, 0.029443960636854172, 0.01709050126373768, -0.008992250077426434, -0.023000191897153854, -0.01591785065829754, 0.013003641739487648, 0.005155015271157026, -0.028259700164198875, 0.0015470850048586726, -0.014036966487765312, -0.0012205427046865225, -0.006147703621536493, -0.015801746398210526, -0.03657274320721626, 0.011099536903202534, 0.017891617491841316, 0.010141679085791111, -0.0018184779910370708, -0.0007684629526920617, 0.004571592900902033, -0.0002458138042129576, 0.02238484099507332, -0.05726246535778046, -0.016718968749046326, 0.009102549403905869, -0.030163804069161415, -0.00047384921344928443, 0.018530189990997314, 0.028770556673407555, 0.038314301520586014, -0.0009462471352890134, -0.019331306219100952, 0.013096524402499199, 0.026982557028532028, 0.02161855436861515, 0.03654951974749565, -0.0020419780630618334, -0.026587802916765213, -0.0005369807477109134, -0.025333881378173828, 0.011993537656962872, 0.00906771793961525, 0.0007125879637897015, -0.03587611764669418, -0.013433226384222507, 0.0018416987732052803, 0.01523283775895834, -0.022872477769851685, -0.023000191897153854, 0.01788000762462616, 0.027748841792345047, 0.016556423157453537, -0.011819381266832352, -0.02663424424827099, -0.01267855055630207, -0.023987075313925743, -0.004530956503003836, -0.033554039895534515, 0.029536843299865723, -0.009915276430547237, -0.027981050312519073, -0.023162737488746643, 0.051689475774765015, 0.0072042495012283325, 0.00011283851927146316, 0.0094798868522048, 0.001751718227751553, -0.0017415591282770038, 0.016788629814982414, 0.021862372756004333, -0.02108447626233101, 0.013955693691968918, -0.007628029212355614, 0.028166817501187325, 0.016057174652814865, 0.015685642138123512, 0.019772501662373543, -0.014989019371569157, -0.021247021853923798, 0.0469059944152832, -0.01921520195901394, -0.009137379936873913, -0.017984500154852867, -0.0007858785684220493, 0.04428204521536827, 0.003593417117372155, 0.0011603138409554958, 0.020770994946360588, -0.01815865747630596, -0.024706918746232986, -0.02456759475171566, 0.010170705616474152, -0.008754237554967403, -0.024288944900035858, 0.04532697796821594, -0.0265645831823349, 0.024428268894553185, 0.05879503861069679, 0.008829704485833645, -0.012992030940949917, 0.010594484396278858, 0.007302938029170036, 0.004507735837250948, -0.02612338773906231, 0.0034192611929029226, -0.0017125331796705723, -0.006287028547376394, -0.012632109224796295, -0.026425257325172424, -0.03350759670138359, -0.006414742674678564, -0.006948821246623993, 0.003819819772616029, 0.03350759670138359, -0.04723108559846878, -0.007639639545232058, 0.024753360077738762, -0.010681563057005405, 0.009683068841695786, 0.011169198900461197, -0.012074810452759266, 0.01383959036320448, 0.018379254266619682, 0.02526421844959259, -0.006223171483725309, 0.03880193829536438, -0.012736602686345577, -0.014338837005198002, 0.013642213307321072, -0.026076946407556534, 0.020689722150564194, -0.00515211233869195, -0.001803965074941516, -0.004147813189774752, 0.030860427767038345, -0.0029069525189697742, 0.04038095101714134, -0.014838083647191525, 0.03429710492491722, -0.0381053127348423, 0.03369336575269699, -0.004501930437982082, 0.00037842628080397844, 0.02779528498649597, -0.0007974889595061541, -0.018297981470823288, -0.010141679085791111, 0.0033205728977918625, -0.016033954918384552, 0.006345080677419901, 0.012353459373116493, -0.03982365131378174, -0.004208767786622047, -0.011958706192672253, 0.027121881023049355, -0.0019505462842062116, 0.04964604601264, -0.007262301631271839, 0.052571866661310196, -0.02412639930844307, 0.043004900217056274, -0.04251726344227791, 0.013827979564666748, 0.024846244603395462, -0.014071797952055931, -0.048392124474048615, 0.004173936787992716, -0.008905172348022461, -0.005279826931655407, -0.010408718138933182, -0.0009070620872080326, 0.04168131574988365, 0.010971822775900364, 0.015418604016304016, 0.018367644399404526, -0.022802814841270447, 0.022582216188311577, -0.020271748304367065, 0.039893314242362976, -0.025589309632778168, -0.017891617491841316, -0.009851419366896152, -0.0014556532260030508, -0.007912483997642994, 0.004188449587672949, 0.01350288838148117, 0.0017894520424306393, -0.04546630382537842, -0.001856211805716157, -0.02846868708729744, -0.014687148854136467, -0.005448177456855774, -0.016823461279273033, -0.00950891338288784, 0.003660176880657673, -0.025984061881899834, -0.015267668291926384, -0.0251016728579998, -0.020875489339232445, 0.004214573185890913, 0.026425257325172424, -0.002729893894866109, -0.006821106653660536, -0.012748212553560734, -0.004574495367705822, -0.057076700031757355, 0.009543743915855885, -0.03843040391802788, 0.018460527062416077, 0.004449683707207441, -0.0026486210990697145, 0.04330677166581154, 0.0037907937075942755, 0.0099384980276227, -0.040311288088560104, 0.05735534802079201, -0.03325216844677925, 0.017206603661179543, 0.006228976417332888, -0.023162737488746643, -0.06348563730716705, -0.024869464337825775, 0.015511486679315567, -0.0006327665178105235, 0.0018721760716289282, 0.011523316614329815, -0.020167255774140358, 0.032509103417396545, -0.0192384235560894, 0.0004549823352135718, -0.03046567551791668, 0.03211434930562973, 0.01597590185701847, 0.01654481142759323, -0.006612119730561972, 0.004702209495007992, 0.02447471208870411, 0.02526421844959259, 0.021734658628702164, 0.008365289308130741, -0.02298858016729355, 0.018251540139317513, -0.03504016995429993, 0.005233385134488344, -0.014965798705816269, 0.02709866128861904, 0.005738437175750732, 0.0023685204796493053, 0.03843040391802788, 0.0197841115295887, 0.013584161177277565, -0.04330677166581154, -0.009288315661251545, 0.02830614149570465, -0.002160984557121992, -0.001960705267265439, -0.026587802916765213, 0.00963662751019001, -0.025032009929418564, 0.015952682122588158, 0.024451490491628647, 0.03592256084084511, -0.029931597411632538, 8.23158843559213e-05, 0.022524164989590645, 0.05874859541654587, 0.018297981470823288, 0.008818094618618488, 0.02637881599366665, -0.009439250454306602, 0.02881699800491333, -0.037199702113866806, 0.003398942993953824, -0.01940096914768219, -0.03413455933332443, 0.006664366461336613, 0.0379195474088192, -0.006258002482354641, -0.004806703422218561, -0.03987009450793266, 0.003764670342206955, -0.01753169484436512, -0.021630164235830307, -0.013328732922673225, 0.02063167095184326, -0.023847749456763268, -0.011389796622097492, 0.0041071767918765545, -0.0013243105495348573, 0.02178109996020794, 0.013816369697451591, -0.0025267121382057667, -0.003805306740105152, 0.008493003435432911, -0.03153382986783981, -0.007378405425697565, -0.00795892532914877, 0.03812853619456291, -0.011622005142271519, 0.03176603838801384, 0.022617047652602196, 0.0094798868522048, 0.005741340108215809, -0.029652947559952736, 0.02770240046083927, -0.020840657874941826, 0.00808663945645094, -0.00600837916135788, -0.017763903364539146, 0.01956351473927498, 0.03931279480457306, -0.005549768451601267, -0.017671020701527596, -0.0028634134214371443, 0.00032581668347120285, 0.009683068841695786, 0.006554067600518465, -0.04537342116236687, -0.0066875871270895, -0.011598783545196056, 0.01366543397307396, -0.01188904419541359, -0.0030216050799936056, 0.022721542045474052, -0.04644157737493515, 0.00919543206691742, 0.00507954740896821, -0.025148114189505577, -0.0006222445517778397, 0.003500533988699317, 0.03638697415590286, -0.015581149607896805, 0.0010906513780355453, -0.016150059178471565, 0.025658970698714256], [-0.01142843160778284, -0.0016820719465613365, 0.0033882884308695793, -0.04172182455658913, -0.04906177520751953, 0.0023098308593034744, -0.012630295008420944, 0.0036404652055352926, -0.014701362699270248, -0.004324561450630426, -0.03152744844555855, 0.03777284547686577, 0.03659244254231453, 0.04279491677880287, -0.014980366453528404, 0.004244079347699881, -0.02779308706521988, 0.01737336255609989, 0.027857473120093346, 0.011213812977075577, 0.023586565628647804, 0.008949588984251022, 0.006653171498328447, -0.01602126657962799, -0.013692655600607395, -0.0022414212580770254, 0.017287515103816986, 0.019262004643678665, 0.02014194056391716, -0.011074311099946499, 0.030819207429885864, -0.009561250917613506, 0.08576152473688126, -0.02914518304169178, 0.02637660503387451, -0.011696704663336277, -0.03230007365345955, -0.0003973794518969953, 0.0332658588886261, -0.039425406605005264, -0.05601540952920914, 0.02560397982597351, -0.014293587766587734, 0.011578664183616638, -0.05391215160489082, 0.05412676930427551, -0.009416383691132069, -0.00841840822249651, -0.07382874190807343, 0.01660073548555374, 0.004439918790012598, -0.009631002321839333, 0.00694290641695261, -0.0235007181763649, 0.025153281167149544, 0.04785991087555885, -0.0058805448934435844, 0.02487427555024624, 0.0394468680024147, -0.019283466041088104, 0.009995853528380394, 0.004203838761895895, -0.011868399567902088, 0.037257760763168335, 0.0070609464310109615, 0.03189229965209961, 0.00042554811807349324, 0.012362021952867508, -0.03129136934876442, 0.016386117786169052, 0.016911933198571205, 0.02427334524691105, -0.02168719284236431, -0.02468111924827099, -0.017255321145057678, 0.010693363845348358, 0.0013856302248314023, 0.009695387445390224, -0.0024707945995032787, 0.012340559624135494, 0.008235982619225979, 0.018822036683559418, -0.03717191144824028, 0.05137965455651283, 0.05159427225589752, -0.028608636930584908, -0.03717191144824028, -0.044340167194604874, -0.013928736560046673, -0.005783966742455959, -0.02075360156595707, 0.014143354259431362, -0.00861692987382412, 0.06588786095380783, 0.0657590851187706, -0.013520961627364159, 0.021064799278974533, -0.05541447922587395, -0.086061991751194, 0.021225763484835625, 0.02111845463514328, 0.01800648681819439, 0.013617539778351784, 0.02796478196978569, 0.044340167194604874, -0.04541325941681862, -0.084516741335392, 0.03792307525873184, 0.008944223634898663, -0.03425310179591179, -0.03436041250824928, 0.03657098114490509, 0.018446454778313637, 0.08816525340080261, -0.00879399012774229, -0.02912372164428234, 0.010248030535876751, 0.006776576861739159, 0.023350484669208527, -0.0010382166365161538, -0.025324974209070206, -0.038245003670454025, 0.0005472769844345748, -0.06618832796812057, -0.019852204248309135, 0.019208349287509918, -0.05223812535405159, 0.005912737920880318, -0.06292612105607986, 0.0006180340424180031, 0.04024095460772514, -0.002803453244268894, 0.03388825058937073, -0.008874472230672836, 0.006980464328080416, 0.0026921199169009924, 0.03856693208217621, 0.03446771949529648, 0.005335950758308172, -0.026097601279616356, 0.002465429250150919, -1.1139618436573073e-05, 0.012565908953547478, -0.020238518714904785, -0.01899373158812523, -0.008246713317930698, -0.002670658053830266, 0.029853424057364464, -0.04889008030295372, 0.016675852239131927, -0.04296661168336868, 0.01954100839793682, 0.031827911734580994, -0.009845620952546597, -0.013714117929339409, -0.026140525937080383, -0.033351704478263855, 0.004230665974318981, -0.001279662363231182, 0.055242784321308136, -0.011321122758090496, -0.04635758325457573, -0.010033411905169487, 0.0262049101293087, 0.010580688714981079, -0.0031844009645283222, 0.005462039262056351, 0.03936102241277695, -0.04139989614486694, 0.014551130123436451, -0.01582811027765274, -0.02935980074107647, -0.027878934517502785, -0.02603321522474289, 0.016117844730615616, -0.026440991088747978, -0.004386264365166426, -0.001716947415843606, 0.03927517309784889, -0.027106307446956635, 0.012662487104535103, 0.006223934702575207, -0.05910591781139374, -0.037644073367118835, -0.04640050604939461, 0.02427334524691105, -0.005907372571527958, -0.013918004930019379, 0.016375387087464333, -0.030969439074397087, -0.006755114998668432, -0.01662219688296318, 0.007152159232646227, 0.04846084117889404, -0.022921249270439148, 0.03798746317625046, -0.030003657564520836, -0.015431065112352371, -0.020056093111634254, 0.02953149564564228, 0.04028388112783432, -0.03090505488216877, 0.04170036315917969, -0.007248737383633852, -0.05580079182982445, -0.007232641335576773, 0.038051847368478775, -0.06206765025854111, 0.029982194304466248, 0.007543838117271662, 0.015613490715622902, -0.008402311243116856, -0.04532741382718086, 0.014722824096679688, -0.030797744169831276, 0.03324439376592636, -0.0036968025378882885, -0.019315658137202263, -0.04206521436572075, 0.06314074248075485, 0.020474597811698914, -0.02618344873189926, -0.03305123746395111, 0.001513059949502349, -0.009266151115298271, 0.00620783818885684, -0.005950295832008123, -0.02152622863650322, -0.0244665015488863, -0.06979391723871231, -0.08404457569122314, 0.041786208748817444, 0.013918004930019379, -0.04511279612779617, -0.02584005892276764, 0.01762017421424389, -0.012855644337832928, -0.08769309520721436, -0.0205497145652771, -0.023135866969823837, 0.009631002321839333, 0.017341168597340584, -0.007216544821858406, 0.05176596716046333, 0.005255468655377626, -0.023908494040369987, -0.0034285294823348522, 0.005987854208797216, 0.03150598704814911, 0.01487305760383606, 0.011331853456795216, 0.007447259500622749, -0.003294392954558134, 0.01956246979534626, 0.021279416978359222, 0.0137785030528903, 0.04670096933841705, 0.015881763771176338, 0.048589613288640976, -0.038073308765888214, 0.0189508069306612, 0.0014741603517904878, -0.02702045999467373, 0.005832255817949772, -0.053096599876880646, -0.006985830143094063, 0.10052727162837982, -0.009330536238849163, -0.010398263111710548, -0.013156109489500523, -0.07292734086513519, 0.024530887603759766, -0.02307148091495037, -0.013123917393386364, -0.042751990258693695, 0.03191376104950905, -0.012844913639128208, -0.023929955437779427, -0.046443428844213486, 0.0012602126225829124, -0.03135575354099274, -0.04084188863635063, 0.029424186795949936, -0.032385922968387604, -0.011621587909758091, -0.026569761335849762, 0.020764334127306938, 7.172112236730754e-05, 0.027921857312321663, 0.02800770476460457, 0.05481354892253876, 0.0001728684437694028, -0.014733555726706982, 0.023157328367233276, 0.014636977575719357, 0.016375387087464333, 0.007828207686543465, -0.04084188863635063, 0.0016847547376528382, 0.005563982762396336, -0.024402115494012833, -0.023007096722722054, -0.005982488859444857, 0.016783161088824272, 0.009561250917613506, 0.01993805170059204, 0.018897153437137604, 0.02057117596268654, -0.005671292077749968, -0.019111771136522293, -0.017308976501226425, 0.02345779538154602, -0.06670340895652771, -0.03929663449525833, -0.02757846936583519, -0.014132623560726643, 0.022341778501868248, 0.01896153762936592, 0.00644928403198719, -0.01487305760383606, 0.013649731874465942, 0.024724043905735016, -0.01143916230648756, 0.018285490572452545, 0.03811623528599739, -0.013177571818232536, 0.015194985084235668, 0.03693583235144615, 0.00027397385565564036, -0.0068570589646697044, -0.011503548361361027, 0.0022669071331620216, 0.04249444976449013, -0.0072380066849291325, -0.034317485988140106, 0.027685778215527534, 0.002464087912812829, 0.052109356969594955, -0.017448479309678078, 0.010178279131650925, 0.022534934803843498, -0.009201765060424805, -0.037644073367118835, -0.0027524814940989017, -0.030862130224704742, -0.010151451453566551, 0.005499597173184156, 0.006631709635257721, 0.020785795524716377, 0.0018846180755645037, 0.02972465381026268, -0.028050629422068596, -0.012834182009100914, -0.012812720611691475, -0.05150842294096947, -0.0473877489566803, 0.0543413870036602, -0.006036143284291029, -0.0382879301905632, 0.002781991381198168, -0.017534326761960983, 0.0001292740780627355, 0.007468721363693476, 0.03285808116197586, -0.03390971198678017, -0.000912799034267664, -0.0489330030977726, -0.025153281167149544, -0.030626051127910614, -0.05502816662192345, 0.04399677738547325, 0.022148622199892998, 0.008783259429037571, -0.0539550743997097, 0.030411431565880775, -0.023822646588087082, -0.0009362729033455253, -0.0018591322004795074, -0.027149232104420662, -0.017652366310358047, 0.015431065112352371, -0.03011096641421318, 0.0558866411447525, 0.012962953187525272, 0.038845937699079514, 0.003216593759134412, -0.023007096722722054, 0.007157524581998587, 0.05266736447811127, -0.0030744089744985104, -0.004316513426601887, 0.016160767525434494, -0.0011254054261371493, 0.0077262637205421925, 0.004729653708636761, 0.03661390393972397, 0.03478964790701866, 0.05992146581411362, 0.0021582567133009434, -0.05657341703772545, 0.02111845463514328, -0.0267843808978796, 0.018306951969861984, 0.021612076088786125, -0.03579835593700409, -0.022213008254766464, -0.00928224716335535, -0.03320147097110748, 0.02521766535937786, -0.01272687315940857, 0.005987854208797216, -0.004976464901119471, 0.005521059036254883, -0.020184863358736038, 0.045069869607686996, 0.010602150112390518, 0.002352754585444927, 0.03693583235144615, 0.016321731731295586, -0.018092334270477295, 0.014218471013009548, 0.025561055168509483, -0.039403945207595825, 0.019712703302502632, -0.013263419270515442, 0.008649122901260853, 0.0028893006965517998, 0.028501328080892563, -0.0028946660459041595, -0.018274759873747826, 0.018521571531891823, 0.00454186275601387, 0.006138087250292301, 0.02017413266003132, -0.01916542649269104, -0.011331853456795216, 0.004136770498007536, -0.03478964790701866, -0.012522985227406025, 0.01125673670321703, -0.02227739244699478, 0.015302293933928013, 0.06777650117874146, 0.021408189088106155, -0.0005824878462590277, 0.011310391128063202, -0.003297075629234314, 0.00861692987382412, 0.015313025563955307, -0.00030063348822295666, -0.03418871760368347, 0.019015192985534668, -0.04773113876581192, -0.02056044526398182, -0.025303512811660767, -0.03912493959069252, 0.013971660286188126, -0.016761699691414833, 0.01957320049405098, -0.07876496762037277, 0.017566518858075142, 0.010983098298311234, 0.040219493210315704, 0.028029168024659157, -0.008235982619225979, 0.012930760160088539, 0.03948979079723358, -0.0500919409096241, 0.004997926764190197, -0.03049727901816368, -0.03854547068476677, -0.021558420732617378, 0.034939881414175034, 0.0017558470135554671, 0.02367241308093071, 0.044340167194604874, 0.0026773649733513594, -0.020764334127306938, -0.0049093966372311115, -0.031033825129270554, 0.016590004786849022, 0.01938004419207573, -0.008536447770893574, -0.000777321110945195, 0.021794501692056656, 0.04307391867041588, 0.0895388126373291, -0.004198472946882248, -0.04092773422598839, -0.029595881700515747, -0.016192961484193802, -0.0066102477721869946, 0.02384410798549652, -0.006733653135597706, -0.03594858571887016, 0.03584127873182297, 0.014347242191433907, -1.3675637092092074e-05, 0.04558495432138443, -0.03970440849661827, 0.033566322177648544, -0.03848108649253845, 0.028501328080892563, 0.00552642485126853, 0.014830133877694607, 0.023393409326672554, 0.024766966700553894, -0.01025339588522911, 0.01663292944431305, 0.0133921904489398, -0.01584957167506218, -0.02526059001684189, 0.04245152696967125, 0.010205106809735298, -0.003610955085605383, -0.048804230988025665, 0.008922761306166649, 0.021075529977679253, 0.001459405291825533, -0.010092431679368019, -0.028458403423428535, 0.004488207865506411, -0.02974611520767212, -0.020302902907133102, -0.0019785137847065926, 0.05481354892253876, 0.009051532484591007, -0.09881033003330231, -0.025496669113636017, -0.024552349001169205, 0.014883788302540779, -0.041957903653383255, -0.04210813716053963, -0.0026800476480275393, 0.022835401818156242, 0.004501621704548597, -0.0017223128816112876, 0.004968416877090931, 0.041936442255973816, 0.003788015339523554, 0.00791942048817873, -0.059148840606212616, 0.004037509206682444, -0.01436870452016592, 0.005665926728397608, 0.033566322177648544, 0.001745116082020104, -0.040198031812906265, 0.0100817009806633, 0.007790649309754372, -0.012254712171852589, 0.053697530180215836, 0.050735797733068466, 0.007812111172825098, -0.018510838970541954, -0.008450601249933243, 0.0379016138613224, -0.014465282671153545, -0.016547081992030144, 0.004820866510272026, -0.008928126655519009, 0.02247055061161518, -0.04260176047682762, -0.03730068355798721, -0.006996560841798782, 0.022427625954151154, -0.042387139052152634, 0.006883886177092791, 0.005174987018108368, -0.01341365184634924, -0.026119062677025795, 0.025947367772459984, 0.014797940850257874, 0.05301075428724289, -0.018703997135162354, -0.018060140311717987, -0.02232031710445881, -0.01564568467438221, -0.012995146214962006, -6.178663170430809e-05, 0.023393409326672554, 0.03285808116197586, 0.023371947929263115, 0.0015291563468053937, -0.02110772207379341, 0.00571421580389142, 0.03131283074617386, -0.011793282814323902, -0.05730312317609787, 0.03446771949529648, 0.005317171569913626, -0.01605345867574215, 0.03384532779455185, 0.007082408294081688, 0.0026800476480275393, 0.06889251619577408, -0.040798965841531754, 0.04910469800233841, -0.05296782776713371, 0.013016607612371445, 0.0201634019613266, -0.002681388985365629, 0.01173962838947773, 0.011846937239170074, -0.015323756262660027, 0.0021220396738499403, -0.011868399567902088, 0.009609539993107319, 0.001226007821969688, -0.001688778749667108, 0.0371289886534214, 0.013639001175761223, 0.03897470608353615, 0.006030777934938669, -0.03678559884428978, -0.01222252007573843, -0.05653049424290657, -0.02682730369269848, -0.037257760763168335, 0.009529058821499348, -0.029574420303106308, 0.034703802317380905, 0.011514279060065746, -0.008853009901940823, -0.01045728288590908, 0.02050679177045822, 0.014518937095999718, -0.027320927008986473, 0.030068041756749153, 0.01876838132739067, -0.021397458389401436, 0.02564690262079239, 0.013220495544373989, 0.010977732948958874, -0.033544860780239105, -0.009470038115978241, 0.025153281167149544, 0.00670146057382226, -0.0038228908088058233, 0.03927517309784889, 0.048975925892591476, 0.023007096722722054, 0.027900395914912224, -0.013982390984892845, 0.01683681644499302, -0.0006505621131509542, 0.03463941439986229, 0.011471355333924294, 0.004329926799982786, 0.000708911509718746, 0.0238870307803154, -0.009604174643754959, 0.014851595275104046, -0.046829741448163986, 0.019841473549604416, -0.01623588427901268, -0.006492207758128643, 0.03463941439986229, 0.021086260676383972, 0.008493524044752121, -0.014025314711034298, 0.024509424343705177, -0.01900446228682995, -0.02191254124045372, 0.023951416835188866, 0.045284491032361984, -0.01640757918357849, -0.026548299938440323, 0.005378874484449625, 0.0081233074888587, 0.029789038002490997, 0.018435724079608917, 0.009013974107801914, -0.027857473120093346, -0.00047752601676620543, 0.0057034846395254135, -0.018435724079608917, 0.03669975325465202, -0.018231835216283798, 0.0313342921435833, -0.037279222160577774, -0.010473379865288734, 0.020850181579589844, 0.01025876123458147, 0.013628270477056503, -0.03262200206518173, -0.008724239654839039, -0.012383483350276947, 0.02914518304169178, 0.021032607182860374, -0.002956368960440159, 0.027471158653497696, 0.011160158552229404, -0.016085650771856308, 0.021815963089466095, 0.024981586262583733, 0.005569348111748695, 0.0003541204205248505, -0.020292172208428383, 0.003906055586412549, -0.019991707056760788, 8.64342218847014e-05, -0.019669778645038605, -0.06168133765459061, -0.020206324756145477, 0.02427334524691105, 0.039017632603645325, 0.011406969279050827, 0.048632536083459854, -0.00036786941927857697, 0.0010261443676427007, 0.020206324756145477, 0.006824865937232971, -0.01243713777512312, 0.008193058893084526, 0.04635758325457573, -9.850650531006977e-05, -0.00028403408941812813, 0.05103626474738121, 0.011149427853524685, -0.026355143636465073, 0.020388750359416008, 0.033974096179008484, -0.03798746317625046, -0.0023111721966415644, -0.020657023414969444, -0.02135453373193741, -0.036270514130592346, -0.012265443801879883, 0.03195668384432793, 0.04309538006782532, -0.02757846936583519, -0.02461673505604267, -0.007710167206823826, 0.005789332091808319, 0.032364457845687866, 0.008831548504531384, 0.0044908905401825905, -0.010097797028720379, -0.0021971561945974827, 0.04088481143116951, -0.05829036608338356, 0.005902006756514311, -0.05695973336696625, 0.002993927104398608, 0.025088895112276077, -0.013767772354185581, -0.017137281596660614, -0.01439016591757536, 0.0332658588886261, 0.008370119147002697, 0.005215228069573641, -0.015205715782940388, -0.05674511194229126, 0.033330243080854416, -0.0069536371156573296, 0.0109509052708745, -0.02032436616718769, -0.005319854244589806, 0.02483135275542736, 0.00958271324634552, 0.008021363988518715, 0.0010536423651501536, -0.0033292684238404036, -0.013799965381622314, -0.03848108649253845, -0.034338947385549545, -0.014851595275104046, -0.019025923684239388, -0.005000609438866377, -0.03974733501672745, -0.024509424343705177, 0.009491500444710255, -0.019809281453490257, 0.03466087579727173, -0.028072090819478035, -0.023972878232598305, -0.029209569096565247, -0.012383483350276947, -0.010290954262018204, 0.03008950501680374, -0.01272687315940857, -0.022792477160692215, -0.01260883267968893, -0.0018135257996618748, 0.006835597101598978, -0.020399482920765877, 0.02347925677895546, 0.0500919409096241, 0.03459649160504341, -0.012984415516257286, 0.008257444016635418, -0.00310391909442842, -0.03214984014630318, -0.025882983580231667, 0.024337729439139366, -0.0043138302862644196, -0.04324561357498169, -0.028222324326634407, 0.018897153437137604, -0.007452624849975109, 0.019090309739112854, -0.009716849774122238, 0.03073335997760296, 0.04610003903508186, 0.00812867283821106, -0.01834987662732601, -0.0399404913187027, 0.024552349001169205, -0.002873204182833433, -0.025668364018201828, 0.0281364768743515, -0.0012166182277724147, 0.02249201200902462, 0.03418871760368347, -0.023221714422106743, -0.02817939966917038, -0.0013192326296120882, 0.006551227532327175, -0.04309538006782532, 0.024144573137164116, -0.004442601464688778, 0.02050679177045822, 0.0017545056762173772, 0.0466151237487793, 0.02955295890569687, -0.05949223041534424, -0.014336511492729187, -0.015881763771176338, 0.008853009901940823, -0.0012085700873285532, 0.03221422806382179, 0.023329023271799088, -0.01660073548555374, -0.008922761306166649, 0.01437943521887064, -0.03792307525873184, -0.007822842337191105, 0.019820012152194977, 0.02794332057237625, 0.0673043429851532, -0.012286905199289322, -0.05206643044948578, -0.014443820342421532, -0.029381264001131058, 0.018113795667886734, 0.01408969983458519, -0.0062668584287166595, -0.008198424242436886, 0.03989756479859352, -0.0138750821352005, -0.02562544122338295, -0.02403726428747177, -0.010140720754861832, 0.04695851355791092, -0.03968294709920883, 0.030583126470446587, 0.010382167063653469, -0.022191546857357025, -0.010183644481003284, -0.029381264001131058, -0.02759993076324463, -0.003063678042963147, 0.019852204248309135, 0.014776479452848434, -0.019616125151515007, 0.0015600076876580715, -0.0035787622909992933, 0.0055049629881978035, 0.007425797637552023, 0.05635879933834076, 0.015752993524074554, -0.018822036683559418, -0.021762309595942497, -0.032385922968387604, -0.0321069173514843, 0.016922663897275925, 0.02815793827176094, -0.023350484669208527, -0.004904031287878752, -0.0022253249771893024, -0.006341974716633558, 0.03996195271611214, 0.010205106809735298, -0.016353923827409744, -0.01757724955677986, -0.011857668869197369, 0.04067019373178482, 0.03534765541553497, -0.002406409243121743, -0.0012092407559975982, -0.010500206612050533, 0.021998388692736626, -0.04139989614486694, 0.025518132373690605, -0.04324561357498169, -0.0434173084795475, -0.012029362842440605, -0.0016109795542433858, 0.0046652681194245815, -0.04266614466905594, -0.032579079270362854, -0.01564568467438221, 0.011492816731333733, -0.021794501692056656, 0.015377410687506199, -0.0013272808864712715, -0.02442357689142227, -0.012587371282279491, 0.011503548361361027, 0.012168864719569683, -0.006138087250292301, -0.014261394739151001, 0.02461673505604267, 0.0032890273723751307, -0.000816891435533762, -0.01094017457216978, 0.01880057528614998, 0.0013279515551403165, 0.04442601650953293, 0.028265247121453285, 0.00030499292188324034, -0.015688607469201088, 0.0030609953682869673, -0.007538472302258015, 0.02817939966917038, 0.0028141841758042574, 0.021182838827371597, 0.014465282671153545, 0.016697313636541367, -0.022771015763282776, 0.021848157048225403, -0.00571958115324378, 0.015409603714942932, -0.016343193128705025, -0.009030070155858994, -0.03438187390565872, -0.008493524044752121, 0.034939881414175034, -0.035476427525281906, 0.0390605553984642, 0.019133232533931732, -0.03427456319332123, 0.004866472911089659, -0.017072895541787148, 0.01997024565935135, 0.03221422806382179, 0.040992122143507004, 0.008971050381660461, 0.020259980112314224, -0.005639099515974522, -0.0075492034666240215, 0.026140525937080383, 0.022213008254766464, 0.025153281167149544, 0.006744384299963713, 0.007538472302258015, 0.009856351651251316, -0.02545374631881714, 0.006309782154858112, 0.04910469800233841, 0.026698533445596695, 0.015194985084235668, -0.01777040585875511, 0.055843714624643326, 0.014776479452848434, 0.00504085049033165, 0.004657220095396042, -0.016289539635181427, -0.01722312904894352, -0.011106504127383232, -0.01222252007573843, 0.05223812535405159, 0.033716555684804916, -0.017834791913628578, 0.05142257735133171, 0.02504597045481205, -0.02504597045481205, -0.0011260760948061943, 0.006637074984610081, 0.03869570419192314, 0.04283783957362175, 0.0039328825660049915, 0.032772235572338104, 0.0062132035382092, 0.008928126655519009, 0.016965586692094803, -0.05030656233429909, -0.005698119290173054, -0.0051910835318267345, 0.015527643263339996, 0.020270710811018944, -0.007694070693105459, 0.03579835593700409, -0.01525937020778656, 0.025367898866534233, 0.01507694460451603, 0.015109137631952763, 0.018843498080968857, -0.028308171778917313, 0.043932393193244934, 0.0053225369192659855, -0.02837255597114563, 0.015484719537198544, 0.011675242334604263, 0.007844303734600544, 0.01897227019071579, -0.0033319510985165834, -0.02721361815929413, -0.0009503572364337742, -0.004276272375136614, 0.01407896913588047, -0.010591419413685799, 0.04562787711620331, -0.06683217734098434, 0.021054068580269814, 0.03073335997760296, -0.06223934516310692, -0.029445648193359375, 0.015323756262660027, -0.01358534675091505, 0.04949101060628891, -0.0001421847118763253, 0.05455600470304489, 0.03594858571887016, 0.006502938456833363, 0.008938857354223728, -0.012372752651572227, 0.02169792354106903, -0.004136770498007536, -0.011396238580346107, -0.007243372034281492, -0.0031226982828229666, 0.018306951969861984, 0.026569761335849762, 0.013327804394066334, -0.003120015375316143, -0.014518937095999718, 0.00978660024702549, 0.013016607612371445, -0.009030070155858994, -0.007640416268259287, -0.01601053588092327, 0.013660463504493237, 0.010172913782298565, -0.011503548361361027, -0.005494231823831797, 0.0248528141528368, 0.007865765132009983, -0.003659244393929839, -0.008981781080365181, 0.025346437469124794, -0.06279735267162323, -0.014518937095999718, -0.05537155643105507, -0.005067677702754736, -0.01271614246070385, 0.00571421580389142, -0.006578054744750261, -0.009056897833943367, 0.0003906726196873933, -0.04747359827160835, 0.010639708489179611, 0.003865814534947276, 0.03933955729007721, -0.007264833897352219, -0.02854425087571144, -0.025131817907094955, -0.014197009615600109, 0.04532741382718086, -0.010129990056157112, -0.012007901445031166, 0.017716752365231514, 0.01739482395350933, 0.010875789448618889, 0.0019007144728675485, -0.023586565628647804, -0.02740677446126938, -0.035326194018125534, 0.015956880524754524, -0.02115064673125744, -0.012297635897994041, -0.00010932126315310597, 0.031162597239017487, -0.0014674535486847162, -0.00693754106760025, -0.019315658137202263, -0.009180303663015366, -0.0262049101293087, 0.04403970390558243, -0.004649171605706215, 0.017888447269797325, -0.006739018950611353, 0.029488572850823402, 0.005172304343432188, -0.008853009901940823, 0.028458403423428535, -0.0033560956362634897, 0.027342388406395912, 0.005204496905207634, 0.0025821279268711805, 0.025367898866534233, 0.015752993524074554, -0.020624831318855286, 0.06584493815898895, -0.013445844873785973, 0.017148012295365334, 0.02996073290705681, -0.01007633563131094, 0.026076139882206917, 0.0201634019613266, 0.03410286828875542, 0.008225250989198685, -0.019691241905093193, 0.012834182009100914, 0.00474038440734148, 0.0021153329871594906, 0.018532302230596542, 0.025367898866534233, -0.006400994956493378, -0.03521888330578804, 0.006545862182974815, -0.010639708489179611, 0.02191254124045372, -0.0029241761658340693, 0.005491549149155617, 0.009845620952546597, 0.012823451310396194, 0.0021850839257240295, -0.024509424343705177, 0.002460063900798559, -0.03380240499973297, -0.018296221271157265, -0.011954247020184994, 0.0028812524396926165, -0.004512352403253317, 0.02035655826330185, -0.017920639365911484, 0.016343193128705025, -0.007635050918906927, 0.014840864576399326, 0.0172123983502388, 0.015742262825369835, -0.0018363290000706911, -0.02893056534230709, -0.03214984014630318, -0.021601345390081406, 0.0535687617957592, 0.006658536847680807, -0.003651196137070656, 0.03483257070183754, 0.02483135275542736, -0.017459210008382797, 0.00645464938133955, 0.044340167194604874, 0.008085749112069607, 0.03410286828875542, -0.00791405513882637, 0.03302977606654167, -0.005309123545885086, 0.022642245516180992, -0.032364457845687866, 0.01260883267968893, -0.020657023414969444, -0.028415480628609657, 0.03657098114490509, 0.01875765062868595, 0.004512352403253317, -0.013810696080327034, 0.00810184609144926, -0.02188034914433956, 0.015001828782260418, -0.029831962659955025, -0.018500108271837234, 0.01778113655745983, 0.008810087107121944, 0.04328853636980057, -0.016750968992710114, 0.019841473549604416, -0.02208423614501953, -0.02541082166135311, -0.017641635611653328, -0.01737336255609989, -0.02249201200902462, -0.019015192985534668, 0.03195668384432793, 0.026677072048187256, 0.0010120600927621126, -0.005408384371548891, 0.0008537789690308273, 0.03672121465206146, 0.030561665073037148, 0.03556227311491966, -0.02663414739072323, -0.02073214016854763, 0.02251347340643406, -0.02227739244699478, 0.04288076236844063, 0.0009476745035499334, -0.01935858279466629, 0.0041153086349368095, -0.0015948832733556628, 0.0005291685811243951, -0.021944735199213028, -0.014175547286868095, -0.008364753797650337, 0.018092334270477295, 0.003307806560769677, 0.008869106881320477, 0.013553153723478317, -0.015473988838493824, -0.0031226982828229666, -0.015334486961364746, 0.006561958696693182, -0.013746310956776142, -0.002763212425634265, 0.017856253311038017, -0.0051910835318267345, -0.013810696080327034, 0.007613589055836201, -0.029424186795949936, 0.019519547000527382, 0.019283466041088104, -0.01535594929009676, 0.019476622343063354, -0.010242664255201817, 0.031978145241737366, -0.008520351722836494, 0.006798038724809885, 0.013735579326748848, 0.04240860044956207, -0.005341316107660532, -0.009512961842119694, 0.0016632928745821118, 0.028200862929224968, -0.002900031628087163, 0.014465282671153545, 0.018843498080968857, -0.014626245945692062, 0.004123356658965349, -0.014304318465292454, 0.02369387447834015, -0.0046652681194245815, -0.017276784405112267, -0.030175352469086647, 0.02193400450050831, 0.003948979079723358, 0.00719508295878768, -0.026462452486157417, 0.010146086104214191, 0.05064994841814041, 0.004128722008317709, 0.012801989912986755, 0.006052239798009396, -0.025518132373690605, 0.03208545595407486, 0.02133307233452797, -0.025925906375050545, -0.02682730369269848, -0.019412238150835037, -0.004434553440660238, 0.0008101845742203295, 0.016139306128025055, -0.011460624635219574, -0.026290757581591606, 0.01956246979534626, -0.008370119147002697, -0.011578664183616638, -0.023221714422106743, -0.0007330561056733131, 0.005333268083631992, 0.012877105735242367, 0.0124264070764184, -0.026569761335849762, 0.047988682985305786, 0.019294196739792824, -0.00547545263543725, 0.021182838827371597, 0.0008054897771216929, 0.0011220519663766026, 0.052152279764413834, 0.003967758268117905, 0.020850181579589844, -0.006540496833622456, 0.012544447556138039, -0.004080432932823896, 0.022213008254766464, 0.012995146214962006, 0.040219493210315704, 0.0023728751111775637, -0.02914518304169178, -0.03461795300245285, 0.00430041691288352, -0.01408969983458519, 0.005639099515974522, 0.04502694681286812, -0.01643977127969265, 0.0064063603058457375, 0.04090627282857895, 0.030840668827295303, 0.010709459893405437, 0.025582516565918922, 0.005821525119245052, 0.014915981329977512, -0.016869008541107178, 0.01504475250840187, 0.02912372164428234, 0.0020657023414969444, 0.007232641335576773, -0.022942710667848587, -0.00791405513882637, 0.015001828782260418, 0.02405872568488121, 0.01154647208750248, 0.01777040585875511, -0.02109699137508869, -0.008563275448977947, 0.008010633289813995, -0.02695607580244541, -0.01782406121492386, 0.026505377143621445, -0.026290757581591606, 0.010355339385569096, 0.002505670301616192, 0.003270248416811228, -0.008557910099625587, 0.03466087579727173, 0.00026927905855700374, -0.015978341922163963, -0.029982194304466248, 0.007844303734600544, -0.013038069941103458, -0.025324974209070206, -0.01289856806397438, -0.02208423614501953, 0.038266465067863464, -0.001172353164292872, 0.04974855110049248, -0.007753090932965279, 0.029789038002490997, -0.0248528141528368, 0.0071682557463645935, -0.017169473692774773, 0.01583884097635746, 0.049190543591976166, -0.006508303806185722, -0.009673926047980785, 0.0027685777749866247, -0.0014406262198463082, 0.007989170961081982, -0.01554910559207201, -0.02562544122338295, -0.021268686279654503, 0.015956880524754524, -0.00552642485126853, -0.003801428945735097, 0.006154183764010668, 0.011117234826087952, 0.004834280349314213, 0.008869106881320477, 0.006132721900939941, 0.03468233719468117, -0.038051847368478775, 0.0062668584287166595, 0.014422358945012093, -0.02266370691359043, -0.030776282772421837, 0.013048800639808178, -0.0023098308593034744, -0.0129092987626791, -0.01757724955677986, -0.005073043052107096, -0.015098406933248043, -0.0009557227022014558, 0.015162792056798935, 0.031763527542352676, -0.0067873080261051655, -0.013810696080327034, -0.0025781039148569107, -0.002627734327688813, -0.010022681206464767, 0.009325170889496803, -0.006057605147361755, -0.029574420303106308, 0.04446893930435181, 0.0028249151073396206, -0.0037638708017766476, 0.00016222136036958545, -0.0017786502139642835, -0.015785185620188713, -0.007715532556176186, 0.001577445538714528, 0.010532399639487267, 0.002018754603341222, -0.04558495432138443, 0.02951003424823284, -0.030068041756749153, 0.009207130409777164, -0.04328853636980057, -0.0013420358300209045, -0.018940076231956482, -0.01777040585875511, -0.009539789520204067, 0.0014996463432908058, 0.017169473692774773, 0.021472573280334473, 0.00047014851588755846, 0.0006445259787142277, -0.046872664242982864, 0.03311562538146973, 0.01582811027765274, 0.002806135918945074, 0.03232153505086899, -0.0013252687640488148, -0.022406164556741714, -0.03468233719468117, 0.003390971338376403, 0.00018175497825723141, 0.02132234163582325, -0.010376800782978535, -0.011117234826087952, -0.037622611969709396, 0.014819403178989887, 0.024316268041729927, -0.019444430246949196, -0.013735579326748848, 0.02232031710445881, -0.008928126655519009, 0.011310391128063202, 0.035497888922691345, -0.020066823810338974, 0.014626245945692062, 0.005950295832008123, 0.003294392954558134, 0.045284491032361984, 0.024123111739754677, 0.0017491402104496956, 0.017148012295365334, -0.0055747139267623425, 0.02721361815929413, -0.03189229965209961, -0.002221300732344389, 0.010387532413005829, -0.0275570061057806, -0.016150036826729774, -0.009647098369896412, 0.0005935541121289134, 0.007039484567940235, -0.007796014659106731, -0.0028115015011280775, 0.0062990509904921055, -0.015495451167225838, -0.014948173426091671, 0.013059531338512897, -0.02069994807243347, 0.019680511206388474, -0.00988854467868805, 0.016353923827409744, 0.015173522755503654, -0.0395541787147522, -0.026719994843006134, -0.024745505303144455, 0.03586274012923241, -0.022792477160692215, 0.012941491790115833, 0.006315147504210472, 0.01757724955677986, -0.015194985084235668, 0.009893910028040409, -0.04182913154363632, -0.04339584708213806, 0.042322754859924316, -0.013080993667244911, 0.029810499399900436, 0.005378874484449625, 0.0003484196204226464, 0.01757724955677986, 0.027921857312321663, 0.005491549149155617, -0.004265541210770607, -0.03466087579727173, -0.004319196101278067, 0.012941491790115833, -0.0191439650952816, -0.038438159972429276, -0.012104479596018791, -0.021086260676383972, -0.012555178254842758, -0.0024292124435305595, 0.01163231860846281, 0.01309172436594963, 0.035283271223306656, 0.040369726717472076, -0.0076887053437530994, -0.0009228592389263213, -0.009030070155858994, 0.026848765090107918, 0.025904444977641106, 0.012061555869877338, 0.004032143857330084, -0.014422358945012093, 0.06696095317602158, 0.005110601428896189, 0.024187497794628143, -0.015731530264019966, 0.01683681644499302, -0.008949588984251022, 0.027235079556703568, 0.001891324995085597, -0.009990488179028034, -0.00958271324634552, 0.03225715085864067, -0.04067019373178482, -0.008337926119565964, -0.007742359768599272, 0.028029168024659157, 0.030647512525320053, -0.009620271623134613, -0.010011949576437473, -0.014497474767267704, -0.035905662924051285, 0.02817939966917038, -0.013327804394066334, 0.03208545595407486, -0.016278808936476707, -0.003484866814687848, 0.012394214048981667, 0.010119259357452393, -0.018639611080288887, -0.005698119290173054, -0.03322293236851692, 0.01723385974764824, -0.024724043905735016, 0.014175547286868095, 0.0015707386191934347, -0.00911055225878954], [-0.019575726240873337, 0.01890227571129799, 0.01992957293987274, 0.0026724005583673716, -0.061409566551446915, 0.02591072767972946, 0.024951916188001633, 0.0009837801335379481, 0.008874709717929363, 0.04246163368225098, -0.03933408111333847, -0.002745167352259159, 0.011288858950138092, 0.04606859013438225, -0.05469788983464241, 0.025773754343390465, -0.018457112833857536, 0.03364970162510872, -0.0025668172165751457, -0.001986108720302582, 0.02060302346944809, 0.01798912137746811, 0.05574801564216614, 0.03164076432585716, -0.03227997198700905, 0.007259569596499205, 0.04561201110482216, 0.007579173427075148, 0.0458403006196022, 0.0026652663946151733, 0.05328249931335449, -0.02172163687646389, 0.03394647687673569, -0.03207451477646828, 0.013822860084474087, 0.019199050962924957, -0.016550906002521515, 0.054469600319862366, 0.03853507339954376, -0.02376481704413891, -0.0310243871062994, 0.023194096982479095, -0.011368759907782078, -0.05287158116698265, -0.028102295473217964, 0.03157227858901024, 0.005059440620243549, -0.017806490883231163, -0.01901642046868801, 0.025979213416576385, -0.007099767681211233, 0.003235987387597561, -0.007602002006024122, -0.05250632017850876, 0.015877455472946167, 0.015957355499267578, -0.005941204261034727, -0.006489096209406853, 0.04444774240255356, -0.002241506241261959, -0.023125609382987022, -0.017212942242622375, -0.013594571501016617, 0.026983683928847313, -0.008109943941235542, -0.013959832489490509, 0.05246066302061081, 0.001792063587345183, -0.028855647891759872, 0.02392461895942688, -0.022315185517072678, 0.06802992522716522, 0.01997523009777069, -0.027508746832609177, -0.014313679188489914, -0.021150914952158928, 0.017886392772197723, 0.005418994929641485, 0.04638819396495819, -0.014610454440116882, -0.02828492596745491, 0.00901168305426836, 0.010255854576826096, -0.009536745958030224, 0.014564796350896358, -0.011482903733849525, -0.04223334416747093, -0.02035190723836422, -0.021025357767939568, 0.011870994232594967, -0.028193611651659012, -0.00986205693334341, 0.014222363941371441, 0.049858175218105316, 0.009171484038233757, 0.02986011654138565, 0.021949924528598785, -0.02085414156317711, -0.04268992319703102, 0.05209540203213692, 0.029266566038131714, -0.0015680555952712893, -0.01356032770127058, 0.05337381735444069, 0.033832333981990814, -0.0784398764371872, -0.05387604981660843, 0.0574830062687397, 0.0207285825163126, -0.023650672286748886, 0.032257143408060074, 0.005884132348001003, -0.016585148870944977, 0.04976686090230942, -0.012498787604272366, -0.00644914573058486, -0.020077960565686226, 0.000450869498308748, 0.02284025028347969, 0.011551390402019024, -0.022851664572954178, -0.05383039265871048, 0.022657617926597595, -0.08172722905874252, -0.018342968076467514, 0.001919048954732716, -0.02080848254263401, -0.004200505558401346, -0.021379204466938972, -0.004939589183777571, 0.004343186039477587, -0.018514186143875122, 0.04376287758350372, 0.017247185111045837, 0.027348944917321205, 0.015306733548641205, 0.033535558730363846, 0.004097776021808386, 0.0076362453401088715, -0.013172238133847713, -0.006003983784466982, 0.02143627591431141, 0.028170783072710037, 0.0224293302744627, -0.037736065685749054, 0.01677919365465641, -0.013720129616558552, 0.06853216141462326, 0.003917998634278774, 0.02101394347846508, -0.03396930545568466, 0.02737177349627018, -0.009782155975699425, 0.0027237653266638517, 0.001687907031737268, 0.030339522287249565, -0.0188908614218235, 0.03816981241106987, 0.005085123237222433, 0.023125609382987022, -0.03390081971883774, -0.017886392772197723, -0.030841756612062454, -0.026641249656677246, 0.02397027611732483, -0.03709685802459717, -0.009622354060411453, 0.023445213213562965, -0.042005058377981186, -0.048077527433633804, -0.04643385112285614, -0.041343022137880325, 0.03999611735343933, -0.010820867493748665, -0.011134764179587364, -0.02438119612634182, 0.024746457114815712, -0.019758356735110283, 0.032006025314331055, -0.01636827550828457, 0.019084906205534935, -0.004214773885905743, -0.04830581322312355, -0.018742473796010017, -0.027645720168948174, 0.04289538040757179, 0.016413932666182518, -0.021150914952158928, -0.02696085348725319, -0.01748688705265522, 0.03969934582710266, 0.0031789152417331934, -0.015843210741877556, 0.03622936084866524, -0.037781722843647, -0.000619232130702585, -0.020043717697262764, -0.012715660966932774, 0.03876336291432381, -0.040521182119846344, 0.033581215888261795, -0.03097872994840145, -0.007368006743490696, 0.02043180726468563, -0.024746457114815712, -0.028376242145895958, 0.029335053637623787, -0.014770256355404854, 0.022646203637123108, -0.006392073817551136, -0.01050697173923254, -0.03762191906571388, -0.07862250506877899, 0.04389984905719757, -0.03613804653286934, -0.016630806028842926, 0.01685909554362297, -0.008492326363921165, -0.005473213270306587, 0.029061106964945793, 0.011197543703019619, -0.03924276679754257, -0.018582671880722046, -0.03549883887171745, -0.018879447132349014, 0.02928939461708069, -0.029517684131860733, 0.0008753431611694396, 0.002860738430172205, -0.04552069678902626, -0.016048671677708626, 0.043169327080249786, -0.0001389348617522046, -0.026139015331864357, 0.04405965283513069, 0.0201007891446352, -0.01968987099826336, -0.05985720455646515, -0.015261076390743256, 0.03627501800656319, -0.015808967873454094, 0.03326161205768585, 0.0010472728172317147, 0.0207285825163126, -0.01185957994312048, -0.024518169462680817, -0.011123349890112877, 0.015295319259166718, 0.010084637440741062, 0.017726590856909752, 0.03949388489127159, 0.02919808030128479, 0.014690355397760868, -0.026549935340881348, -0.001135734491981566, 0.014770256355404854, 0.044881489127874374, 0.005724330432713032, 0.023194096982479095, -0.040018949657678604, -0.03707402944564819, 0.04609141871333122, -0.03164076432585716, 0.003849512431770563, -0.0620487742125988, -0.02600204385817051, 0.0641946867108345, -0.0067744567058980465, -0.011893822811543941, 0.017464058473706245, -0.02833058498799801, 0.04921896755695343, 0.013058093376457691, -0.0069799162447452545, -0.024244222790002823, -0.017041726037859917, 0.0015951648820191622, -0.030339522287249565, 0.02696085348725319, -0.014256607741117477, -0.02529434859752655, -0.01798912137746811, 0.0241300780326128, -0.06926268339157104, -0.017452644184231758, -0.03301049396395683, 0.02915242314338684, 0.024312708526849747, 0.024769285693764687, 0.037987180054187775, 0.025522638112306595, -0.03248543292284012, -0.0190278347581625, -0.004074946977198124, 0.010021858848631382, -0.004853981081396341, -0.0286958459764719, -0.01693899556994438, -0.015489364974200726, -0.005384751595556736, -0.022246699780225754, -0.01295536383986473, -0.011511440388858318, 0.03648047894239426, -0.003983631730079651, -0.0008204112527891994, 0.009245677851140499, 0.0008682091138325632, -0.0027722767554223537, -0.005176438484340906, -0.0019889622926712036, 0.06319021433591843, -0.020329076796770096, -0.050771329551935196, -0.01661939173936844, -0.03974500298500061, -0.01934743858873844, 0.02376481704413891, 0.03006557561457157, 0.01445065252482891, 0.015489364974200726, 0.020751411095261574, 0.02027200534939766, -0.005812792107462883, -0.02686953917145729, 0.04780358076095581, 0.04319215565919876, 0.008709200657904148, -0.043717220425605774, 0.01682485081255436, -0.036023903638124466, 0.03654896467924118, 0.03709685802459717, -0.007231033407151699, -0.023182682693004608, -0.005438969936221838, -0.02156183496117592, 0.05419565364718437, -0.020568780601024628, 0.004343186039477587, 0.013663058169186115, -0.013320624828338623, 0.07277832925319672, 0.0002910676412284374, -0.04095492884516716, 0.015546436421573162, 0.006471974775195122, -0.0007301660371012986, 0.02549980953335762, 0.01695040985941887, 0.0036668817047029734, 0.010221610777080059, -0.012875462882220745, 0.024267051368951797, -0.04444774240255356, 0.0015566411893814802, -0.0031018678564578295, 0.052186716347932816, -0.03556732460856438, -0.00198325514793396, -0.005969740450382233, -0.014781670644879341, 0.02342238463461399, 0.046707797795534134, -0.002852177480235696, 0.0196099691092968, -0.023148437961935997, -0.014462066814303398, 0.023125609382987022, -0.0028079466428607702, 0.04383136332035065, 0.011203250847756863, -0.05241500586271286, -0.02853604406118393, -0.0055987718515098095, -0.004257577937096357, -0.024404024705290794, 0.027600061148405075, -0.008789101615548134, 0.00029784496291540563, 0.012590102851390839, -0.03006557561457157, -0.0057129161432385445, -0.022794591262936592, 0.03269089013338089, 0.013902761042118073, -0.0265042781829834, -0.029220908880233765, 0.024929087609052658, -0.00027751302695833147, -0.039608027786016464, 0.06848650425672531, 0.014142462983727455, 0.008321110159158707, -0.005832767579704523, 0.034197594970464706, 0.05720905959606171, 0.03364970162510872, -0.006135249510407448, -0.008834758773446083, 0.04195939749479294, -0.046411022543907166, -0.013309210538864136, -0.00841242540627718, 0.007031281013041735, 0.02823926880955696, -0.026572763919830322, -0.014564796350896358, 0.008948903530836105, 0.009856349788606167, 0.04116038978099823, -0.02027200534939766, 0.03648047894239426, -0.009782155975699425, 0.021618906408548355, -0.008720614947378635, 0.010763796046376228, 0.05200408771634102, -0.0006466981139965355, -0.052186716347932816, 0.03926559537649155, -0.022520646452903748, -0.015877455472946167, 0.022064069285988808, -0.03209734335541725, -0.004719861783087254, -0.0005899827228859067, 0.01401690486818552, -3.397572800167836e-05, -0.05022343620657921, 0.008058578707277775, -0.004600010346621275, 0.041639793664216995, 0.027759863063693047, -0.02479211427271366, -0.02408442087471485, 0.009239970706403255, -0.0333072692155838, 0.03412910923361778, -0.027714205905795097, -0.009222849272191525, -0.012053624726831913, 0.02272610552608967, 0.01574048213660717, 0.0016265545273199677, 0.01566058024764061, -0.022372258827090263, -0.004639960825443268, 0.06287061423063278, -0.009976200759410858, -0.018000535666942596, -0.04631970822811127, -0.08898679912090302, 0.05930931493639946, 0.006700262892991304, -0.002656705677509308, 0.04040703922510147, -0.025773754343390465, 0.04661647975444794, -0.03031669370830059, 0.059994179755449295, 0.051775798201560974, 0.0622314028441906, 0.036982711404561996, -0.00036472632200457156, 0.06277929991483688, -0.0024041617289185524, -0.030887413769960403, -0.012202012352645397, -0.02263478934764862, -0.00535621540620923, -0.017589617520570755, 0.0126243457198143, 0.025842241942882538, 0.02890130504965782, -0.0068714795634150505, 0.0016779194120317698, -0.06108996272087097, -0.01948441006243229, 0.0074764434248209, -0.0017107358435168862, 0.022315185517072678, -0.006169492844492197, -0.032462604343891144, 0.03638916462659836, 0.0018405747832730412, 0.05296289920806885, 0.022463573142886162, -0.04166262224316597, -0.03755343332886696, -0.02438119612634182, 0.016334030777215958, 0.01131739467382431, -0.009399772621691227, -0.008948903530836105, -0.0333072692155838, 0.012179183773696423, 0.02949485555291176, 0.050314754247665405, -0.04079512879252434, 0.03472265973687172, -0.04444774240255356, 0.02027200534939766, -0.0368913970887661, -0.0011485758004710078, 0.018628329038619995, -0.030590638518333435, -0.025842241942882538, -0.015797553583979607, -0.001171404612250626, -0.0343802273273468, 0.00219156825914979, 0.03198319673538208, -0.009662304073572159, -0.03501943126320839, -0.032964836806058884, 0.007219619117677212, 0.03198319673538208, -0.020077960565686226, -0.0007754669641144574, 0.011928066611289978, 0.002565390430390835, 0.007664781529456377, -0.007134011015295982, 0.017509715631604195, 0.011505733244121075, 0.0436030738055706, -0.12108413875102997, 0.020203519612550735, -0.001843428472056985, 0.0032787914387881756, -0.03593258559703827, -0.014987130649387836, -0.010204489342868328, 0.013115165755152702, -0.024289879947900772, 0.01485015731304884, 0.0005486054578796029, 0.016139985993504524, -0.020032303407788277, 0.04426511004567146, -0.04376287758350372, -0.013320624828338623, -0.005613039713352919, 0.01046702079474926, -0.006951380521059036, 0.04355741664767265, 0.019792599603533745, 0.009650889784097672, -0.028604529798030853, 0.0006195888272486627, 0.022155383601784706, 0.01042136363685131, 0.016094328835606575, -0.031047215685248375, 0.011226079426705837, 0.028010981157422066, -0.019986644387245178, -0.019256122410297394, 0.008948903530836105, -0.0060096909292042255, 0.009416894055902958, -0.023810474202036858, -0.002240079455077648, -0.0019532921724021435, 0.0530085563659668, -0.011511440388858318, 0.01695040985941887, -0.01677919365465641, -0.010701016522943974, -0.005453237798064947, 0.0006377805839292705, 0.021630320698022842, 0.010952133685350418, 0.03136681765317917, -0.003723953617736697, 0.02276034839451313, -0.02894696220755577, 0.015363805927336216, -0.01090076845139265, 0.014553382061421871, 0.018582671880722046, 0.012943949550390244, -0.030271034687757492, -0.02741743065416813, 0.003840951481834054, -0.005667258519679308, -0.0344715416431427, -0.025408493354916573, 0.02641296200454235, 0.04084078595042229, -0.012030796147882938, -0.0070027452893555164, 0.007048402912914753, 0.004525816533714533, 0.056387223303318024, -0.03609238937497139, 0.02625316008925438, -0.027211971580982208, 0.026344476267695427, 0.025203034281730652, -0.0007005598745308816, 0.020294833928346634, 0.007516393903642893, -0.029882945120334625, -0.022543475031852722, 0.011802507564425468, -0.013948418200016022, 0.02134496159851551, -0.0009331286419183016, 0.026321647688746452, 0.010872232727706432, 0.02949485555291176, 0.0132521390914917, -0.014587625861167908, 0.026321647688746452, -0.08104236423969269, -0.0034471540711820126, -0.0010258707916364074, -0.011494318023324013, -0.042301829904317856, 0.022851664572954178, 0.014713183976709843, -0.03148096427321434, -0.00982210598886013, -0.004425940569490194, -0.011665535159409046, -0.024038763716816902, 0.03714251518249512, -0.006791578605771065, -0.0172814279794693, 0.04752963408827782, -0.018628329038619995, 0.007048402912914753, -0.010352876968681812, -0.02499757520854473, -0.00892607495188713, 0.0161628145724535, -0.018217410892248154, 0.038443759083747864, 0.059583257883787155, -0.028376242145895958, -0.011003498919308186, -0.06405770778656006, 0.02392461895942688, 0.0010622541885823011, 0.025979213416576385, 0.007333763409405947, 0.0032930595334619284, 0.01636827550828457, 0.02110525779426098, -0.00830969586968422, 0.0014589052880182862, -0.0016308348858729005, 0.007436492945998907, -0.04613707587122917, -0.026801051571965218, 0.05469788983464241, 0.01740698702633381, 0.009810691699385643, -0.020705753937363625, 0.004717008210718632, -0.029563341289758682, -0.0036583207547664642, 0.028558872640132904, 0.015580680221319199, 0.015009959228336811, 0.007333763409405947, 0.008480912074446678, 0.005202120635658503, -0.004597156774252653, -0.0010915036546066403, -0.02226952835917473, -0.023331070318818092, -0.018696816638112068, 0.005735744722187519, -0.00631217285990715, 0.032873522490262985, -0.032964836806058884, 0.03812415525317192, -0.039676517248153687, -0.025408493354916573, -0.030933070927858353, 0.020237762480974197, -0.0401102639734745, -0.00474554393440485, 0.0006392073701135814, -0.013663058169186115, -0.027851179242134094, -0.006517632398754358, 0.018970761448144913, 0.0597202330827713, -0.029472026973962784, 0.001031577936373651, -0.003975071012973785, 0.00780746154487133, 0.015649165958166122, -0.0007533515454269946, -0.027234800159931183, -0.033786676824092865, 0.0074764434248209, 0.04202788695693016, -0.0021245083771646023, -0.05597630515694618, -0.040384210646152496, -0.02488343045115471, 0.003849512431770563, 0.02995143085718155, -0.0018719644285738468, -0.01632261648774147, -0.0008339658961631358, 0.015455121174454689, -0.03086458519101143, -0.007156839594244957, -0.02438119612634182, -0.002474074950441718, -0.01505561638623476, -0.04588595777750015, 0.01158563420176506, -0.007938727736473083, -0.03488245978951454, 0.025225862860679626, 0.01657373458147049, -0.006357830483466387, 0.03360404446721077, -0.022212456911802292, -0.027554403990507126, -0.022908736020326614, -0.03759909048676491, 0.02422139421105385, 0.00024540998856537044, -0.02367350272834301, 0.016881924122571945, 0.0076134162954986095, -0.03173208236694336, 0.002899262122809887, 0.0002316770114703104, -0.00836676824837923, 0.002347089583054185, 0.013731543906033039, 0.02915242314338684, -0.030476495623588562, -0.02691519632935524, -0.012921120971441269, -0.027691377326846123, 0.01786356419324875, -5.484270877786912e-05, 0.002850750694051385, -0.03988197445869446, 0.009930543601512909, 0.0026724005583673716, 0.00662606954574585, -0.006175199989229441, -0.02686953917145729, 0.0143935801461339, -0.00039237059536390007, -0.011939480900764465, 0.03620653226971626, 0.01893651857972145, 0.019199050962924957, 0.030134063214063644, -0.003866633865982294, 0.0013290662318468094, 0.015808967873454094, -0.0029706021305173635, 0.013594571501016617, -0.03431173786520958, -0.014382165856659412, -0.009045925922691822, -0.01341194100677967, -0.016516661271452904, 0.011802507564425468, 0.01603725738823414, 0.003161793574690819, 0.045497868210077286, 0.013377697207033634, -0.014028319157660007, 0.006043934263288975, -0.0005147188785485923, -0.013263553380966187, 0.04501846432685852, -0.005496041849255562, -0.047164373099803925, 0.04132018983364105, 0.01764668896794319, 0.01603725738823414, -0.021938510239124298, 0.016996067017316818, 0.025271520018577576, 0.039151452481746674, -0.009211434982717037, 0.013286381959915161, 0.004209066275507212, -0.03648047894239426, -0.006454853340983391, 0.018628329038619995, -0.010318633168935776, -0.05711774528026581, 0.023194096982479095, 0.039562370628118515, -0.023194096982479095, 0.02508888952434063, -0.017669517546892166, 0.043671563267707825, 0.06825821846723557, -0.040270064026117325, -0.007544930092990398, 0.003184622386470437, 0.0189821757376194, -0.06017680838704109, -0.03659462183713913, 0.026801051571965218, 0.023445213213562965, 0.035612981766462326, 0.03394647687673569, -0.009023097343742847, -0.02268044836819172, 0.034243252128362656, -0.007493565324693918, -0.0033301562070846558, 0.009993322193622589, -0.010752381756901741, 0.03803284093737602, -0.021036772057414055, 0.05803089961409569, -0.023365313187241554, -0.02575092576444149, 0.024609483778476715, -0.00845237635076046, -0.017543960362672806, -0.028193611651659012, 0.025773754343390465, 0.023741988465189934, -0.0001074560423148796, -0.0020702900364995003, -0.01789780706167221, -0.020237762480974197, 0.008440962061285973, 0.010997791774570942, 0.03547601029276848, 0.03280503675341606, -0.05241500586271286, -0.03762191906571388, 0.004286113660782576, -0.04132018983364105, 0.03549883887171745, -0.03716534376144409, 0.01984967291355133, -0.03408345207571983, 0.01528390496969223, 0.007733267731964588, -0.009245677851140499, -0.017304256558418274, -0.00714542530477047, 0.038443759083747864, -0.018765302374958992, -0.0021987021900713444, 0.01528390496969223, -0.007567758671939373, 0.006043934263288975, 0.036731597036123276, -0.005906960926949978, -0.013035264797508717, 0.0007868814282119274, -0.0019532921724021435, -0.027691377326846123, -0.003469982882961631, 0.009713669307529926, -0.0026124748401343822, 0.0006491949898190796, 0.04444774240255356, -0.014998544938862324, -0.021653149276971817, -0.03410628065466881, -0.05255197733640671, 0.01773800514638424, -0.01289829146116972, 0.012498787604272366, 0.011505733244121075, -0.014416409656405449, 0.020580194890499115, 0.016379689797759056, 0.039014481008052826, 0.016996067017316818, -0.02616184577345848, -0.025613952428102493, -0.02118515968322754, 0.03737080469727516, 0.04264426231384277, -0.0035612983629107475, 0.020751411095261574, -0.006574704311788082, -0.00036954175448045135, -0.013046679086983204, -0.011146178469061852, -0.0024954769760370255, -0.0026709737721830606, -0.020363321527838707, -0.025180205702781677, 0.026070529595017433, -0.009690840728580952, -0.003920852206647396, -0.024860601872205734, 0.031298331916332245, -0.053556445986032486, 0.021071014925837517, -0.0036925640888512135, -0.027234800159931183, 0.03346707299351692, 0.008817637339234352, 0.03869487717747688, -0.0024269905406981707, -0.013777201995253563, 0.011311687529087067, 0.005190706346184015, 0.021413447335362434, -0.015443706884980202, 0.03476831689476967, 0.0030847464222460985, 0.05830484628677368, 0.036526136100292206, -0.013058093376457691, -0.028673017397522926, -0.03759909048676491, -0.02974597178399563, -0.01368588674813509, -0.00373822171241045, 0.011488610878586769, -0.03867204487323761, -0.035407524555921555, 0.003661174327135086, 0.04284972324967384, -0.014085391536355019, 0.03442588448524475, 0.0015409464249387383, 0.0484427884221077, -0.012670003809034824, 0.001920475740917027, 0.01059257984161377, -0.011477196589112282, 0.05154750868678093, 0.029517684131860733, -0.012886877171695232, -0.02238367311656475, -0.015295319259166718, 0.010312926024198532, 0.006021105218678713, 0.02903827838599682, 0.0029563340358436108, 0.021618906408548355, 0.015101274475455284, 0.025111718103289604, -0.0223380159586668, 0.01706455461680889, -0.007596294861286879, 0.013046679086983204, 0.06291627138853073, -0.009154362604022026, 0.02965465746819973, -0.031001558527350426, 0.050771329551935196, 0.03629784658551216, 0.04435642808675766, -0.013571742922067642, 0.034243252128362656, 0.010078930296003819, 0.02661842107772827, -0.033741019666194916, -0.0830969586968422, 0.015306733548641205, 0.008629299700260162, 0.00015240031643770635, 0.07848553359508514, 0.03136681765317917, -0.007796047255396843, 0.033832333981990814, 0.01931319385766983, 0.0017863563261926174, 0.024495340883731842, 0.002277176361531019, -0.024700799956917763, 0.011791093274950981, 0.016630806028842926, 0.008623592555522919, 0.03497377410531044, 0.038101326674222946, 0.028262097388505936, -0.016345445066690445, 0.004822591319680214, -0.01698465272784233, 0.010866525582969189, 0.01069530937820673, 0.013332040049135685, 0.024677971377968788, -0.023159854114055634, 0.0378730371594429, 0.046000104397535324, 0.021048186346888542, 0.010404241271317005, -0.02675539441406727, 0.016756365075707436, 0.0013504682574421167, -0.008943196386098862, 0.011642705649137497, -0.0022957248147577047, -0.0009859203128144145, 0.016311202198266983, 0.007670488674193621, 0.005496041849255562, -0.0032388409599661827, -0.02828492596745491, -0.022372258827090263, -0.05195842683315277, 0.0056158932857215405, -0.02217821404337883, -0.05328249931335449, 0.03052215278148651, -0.025728097185492516, -0.03301049396395683, 0.005364776123315096, -0.04405965283513069, 0.026116186752915382, 0.03622936084866524, 0.0034471540711820126, 0.009628061205148697, -0.0218471959233284, 0.0009238544153049588, 0.019952401518821716, 0.020968284457921982, 0.028673017397522926, 0.009793570265173912, 0.004229041747748852, 0.024107249453663826, 0.045657671988010406, 0.03574995696544647, 0.030339522287249565, 0.004779787268489599, -0.027211971580982208, -0.026344476267695427, 0.0011043448466807604, -0.010341462679207325, 0.0023356752935796976, -0.048123184591531754, -0.010147416964173317, -0.011397295631468296, 0.0007697597611695528, 0.028558872640132904, 0.0160715002566576, 0.002579658292233944, 0.01824023947119713, -0.005664404481649399, 0.02591072767972946, -0.03832961246371269, -0.017133040353655815, -0.017247185111045837, -0.0051650237292051315, 0.007225326262414455, 0.0050023687072098255, -0.03273655101656914, -0.027600061148405075, 0.02043180726468563, -0.03848941624164581, -0.01285263430327177, -0.004711301065981388, 0.05209540203213692, 0.019290365278720856, -0.039813488721847534, -0.018183168023824692, -0.002347089583054185, -0.021984167397022247, 0.006791578605771065, 0.007122596725821495, 0.030271034687757492, 0.01574048213660717, 0.029517684131860733, 0.006768749561160803, -0.019838258624076843, -0.01163129135966301, -0.01507844589650631, -0.00544182350859046, -0.010735259391367435, 0.012647174298763275, -0.004657082259654999, -0.012555859051644802, -0.0320516861975193, 0.0038951700553297997, -0.005361922550946474, -0.011157592758536339, -0.014793084934353828, 0.03832961246371269, -0.004968125373125076, 0.012909706681966782, -0.017886392772197723, 0.03762191906571388, 0.012030796147882938, 0.022029826417565346, 0.04830581322312355, -0.0004151994362473488, 0.04086361452937126, -0.008977439254522324, 0.0021573249250650406, 0.01445065252482891, 0.023901790380477905, -0.0009402626310475171, 0.046502336859703064, 0.005176438484340906, -0.017966292798519135, 0.006163785699754953, -0.002101679565384984, -0.011654119938611984, -0.019461581483483315, 0.025180205702781677, 0.005053733475506306, -0.01935885287821293, -0.010541214607656002, 0.00432891771197319, -0.016425346955657005, 0.018616914749145508, 0.02084272727370262, -0.011226079426705837, -0.0106097012758255, -0.016893338412046432, -0.03584127128124237, -0.01632261648774147, 0.013663058169186115, -0.0032045976258814335, 0.002591072814539075, 0.0033301562070846558, 0.006546168588101864, -0.0031361111905425787, -0.00019047809473704547, -0.03684573993086815, -0.009234263561666012, -0.006831529084593058, -0.0032559626270085573, -0.002755155088379979, -0.011226079426705837, -0.005490334704518318, 0.00126914051361382, 0.004931028466671705, 0.007048402912914753, 0.025111718103289604, 0.00752780819311738, 0.016973238438367844, -0.001843428472056985, -0.02260054647922516, -0.01378861628472805, 0.06871479004621506, -0.0024926234036684036, -0.0003888036007992923, 0.016082914546132088, 0.04394550621509552, -0.013469012454152107, 0.009028804488480091, 0.017543960362672806, -0.003118989523500204, 0.012612931430339813, 0.011791093274950981, 0.02499757520854473, 0.02293156459927559, 0.0031532328575849533, -0.005587357562035322, 0.012590102851390839, -0.03164076432585716, 0.02080848254263401, 0.01935885287821293, 0.0275772325694561, 0.03218865767121315, -0.030590638518333435, 0.035658638924360275, -0.016471004113554955, -0.028376242145895958, -0.021961338818073273, -0.01628837361931801, 0.014701769687235355, 0.0070769391022622585, 0.050908301025629044, 0.0071853757835924625, -0.002074570395052433, -0.0012926828349009156, -0.02712065540254116, 0.012510201893746853, -0.026938024908304214, -0.010221610777080059, 0.008732029236853123, 0.03737080469727516, 0.015215418301522732, -0.0017592471558600664, -0.013035264797508717, 0.0020802775397896767, -0.005196413490921259, 0.0005771414726041257, -0.0005603765603154898, -0.007116889115422964, -0.011676949448883533, -0.002729472704231739, 0.008606471121311188, 0.010369998402893543, 0.006021105218678713, -0.03716534376144409, -0.004451622720807791, -0.02782835066318512, -0.008047164417803288, -0.0030048454646021128, -0.02712065540254116, -0.011311687529087067, -0.0013597424840554595, 0.018205996602773666, 0.004859688226133585, -0.016254130750894547, 0.0023627844639122486, -0.022395087406039238, 0.004876810126006603, -0.006717384792864323, 0.008001506328582764, -0.009371236898005009, -0.003452861215919256, 0.0024983305484056473, -0.05182145535945892, -0.006500510964542627, -0.002318553626537323, 0.03207451477646828, 0.013765787705779076, -0.04517826437950134, 0.027691377326846123, -0.022657617926597595, 0.03782738000154495, -0.009713669307529926, -0.011477196589112282, 0.03036235086619854, 0.048123184591531754, -0.0034214716870337725, 0.006146663799881935, -0.010723845101892948, 0.030910242348909378, -0.0047598122619092464, -0.01989533007144928, 0.011385881341993809, -0.017886392772197723, 0.0005082982825115323, -0.027097826823592186, 0.03803284093737602, -0.02986011654138565, -0.023194096982479095, -0.03442588448524475, -0.0006509784725494683, -0.004882517270743847, 0.014941472560167313, 0.008577934466302395, -0.012430300936102867, 0.028262097388505936, 0.026481449604034424, -0.014096805825829506, 0.03271372243762016, -0.0011756849708035588, 0.032416947185993195, 0.022543475031852722, -0.03148096427321434, 0.006021105218678713, 0.020545952022075653, -0.009411186911165714, -0.027737034484744072, -0.009325578808784485, 0.027006512507796288, -0.028467556461691856, 0.004845420364290476, 0.004020728636533022, -0.01997523009777069, -0.01914197765290737, 0.029266566038131714, 0.007151132449507713, -0.01640251837670803, 0.007796047255396843, -0.021790122613310814, 0.04344327375292778, 0.002385613275691867, -0.0036297847982496023, 0.005016636569052935, 0.00039023038698360324, 0.015215418301522732, 0.031914710998535156, 0.03782738000154495, -0.02027200534939766, -0.012361814267933369, 0.005718623287975788, 0.023331070318818092, -0.026732565835118294, 0.049903832376003265, 0.023947447538375854, 0.004360307473689318, -0.030796099454164505, -0.007562051527202129, 0.0010094625176861882, 0.003464275738224387, -0.0025011843536049128, 0.00528487516567111, 0.028718674555420876, -0.0023927472066134214, 0.01959855481982231, -0.011283151805400848, 0.0031532328575849533, 0.00826403871178627, -0.00495385704562068, -0.020408978685736656, -0.021904267370700836, 0.02949485555291176, -0.02716631442308426, 0.01602584309875965, 0.018765302374958992, -0.03953954204916954, 0.021733051165938377, 0.029426367953419685, -0.007676195818930864, -0.011722606606781483, 0.024951916188001633, -0.03294200822710991, -0.01822882518172264, -0.017806490883231163, -0.013514670543372631, 0.037941522896289825, 0.04040703922510147, -0.019199050962924957, -0.007259569596499205, 0.0241757370531559, 0.0005992569494992495, -0.020797068253159523, 0.023993106558918953, -0.00019850385433528572, 0.006477681919932365, -0.017795076593756676, 0.004471598193049431, -0.021493347361683846, -0.04563483968377113, 0.015261076390743256, -0.026275988668203354, 0.043420445173978806, 0.008669249713420868, 0.02280600555241108, -0.01636827550828457, 0.0196099691092968, -0.03253109008073807, -0.0080357501283288, -0.01055262889713049, -0.0037610505241900682, 0.04880804941058159, -0.00714542530477047, -0.0066660200245678425, 0.008834758773446083, 0.010860818438231945, 0.009730790741741657, -0.0042176274582743645, -0.009462552145123482, -0.026801051571965218, 0.0015766164287924767, -0.005427555646747351, 0.023901790380477905, 0.031184189021587372, 0.01241888664662838, -0.02620750293135643, 0.007693317253142595, -0.0009067328064702451, 0.011500026099383831, -0.031754910945892334, 0.010535507462918758, 0.00035242014564573765, 0.024929087609052658, -0.013697301037609577, 0.019381681457161903, -0.010643944144248962, 0.005553114227950573, -0.024906259030103683, 0.012475958094000816, 0.04177676886320114, -0.014085391536355019, 0.031754910945892334, 0.038945991545915604, -0.0037182464729994535, 0.0028550312854349613, 0.0027993859257549047, -0.00012680704821832478, -0.021858610212802887, -0.009502502158284187, -0.010341462679207325, -0.0264586191624403, 0.019370267167687416, -0.004528670106083155, 0.008583641611039639, 0.01578613929450512, -0.0018576964503154159, -0.022109726443886757, -0.017623860388994217, 0.029677486047148705, 0.008315403014421463, -0.004565767012536526, -0.031252674758434296, 0.005924082826822996, -0.06487955152988434, 0.033626873046159744, -0.005964033305644989, -0.00011236067075515166, -0.01918763667345047, 0.010215903632342815, -0.04376287758350372, 0.006420610006898642, -0.0287871602922678, -0.020169274881482124, -0.03408345207571983, 0.017270013689994812, -0.015261076390743256, 0.03346707299351692, 0.025636781007051468, 0.023319654166698456, 0.026778222993016243, -0.042142029851675034, -0.006078177131712437, -0.02342238463461399, 0.03501943126320839, -0.012704246677458286, -0.03406062349677086, -0.002013217890635133, -0.045954443514347076, -0.00481688417494297, -0.0149528868496418, -0.001971840625628829, 0.007664781529456377, -0.01462186872959137, 0.013777201995253563, -0.01467894110828638, 0.007442200090736151, 0.02367350272834301, -0.005747159011662006, -0.011288858950138092, -0.00930275022983551, -0.016996067017316818, 0.040018949657678604, 0.04120604693889618, 0.00279225199483335, -0.016048671677708626, 0.001187099376693368, 0.018137509003281593, -0.0189821757376194, 0.0223380159586668, -0.01538663450628519, -0.0029563340358436108, -0.0573003776371479, 0.016836265102028847, -0.027463087812066078, 0.001154996338300407, 0.016185645014047623, 0.006089591886848211, 0.007379421032965183, 0.00027929653879255056, 0.012487372383475304, 0.010541214607656002, 0.015877455472946167, 0.009850642643868923, -0.021984167397022247, -0.0012406045570969582, 0.02915242314338684, -0.027463087812066078, -0.02970031462609768, -0.007453614845871925, 0.037941522896289825, -0.022623375058174133, -0.0069799162447452545, 0.0011592768132686615, 0.019575726240873337, 6.014863174641505e-05, 0.02031766250729561, -0.027508746832609177, -0.05437828600406647, 0.020945455878973007, -0.00784741248935461, -0.01023873221129179, 0.0010344316251575947, -0.0166536346077919, 0.012772733345627785, 0.018537014722824097, -0.037028372287750244, 0.051730141043663025, -0.05337381735444069, -0.010518386028707027, 0.014153878204524517, -0.011802507564425468, -0.021048186346888542, -0.011066277511417866, -0.011083399876952171, 0.009782155975699425, -0.01252161618322134, 0.009194313548505306, 0.01959855481982231, 0.0015109835658222437, 0.015717653557658195, 0.024951916188001633, 0.007653366774320602, -0.02088838443160057, -0.0011457221116870642, 0.053602103143930435, 0.00046442411257885396, -0.012202012352645397, -0.008024335838854313, 0.015375220216810703, -0.01078091748058796, 0.03737080469727516, -0.012019381858408451, 0.020408978685736656, -0.01505561638623476, 0.01112905703485012, 0.02376481704413891, 0.007402249611914158, 0.005239217542111874, 0.020945455878973007, -0.013206481002271175, 0.023365313187241554, -0.02595638483762741, 0.031207017600536346, 0.04264426231384277, 0.0057443054392933846, -0.004822591319680214, 0.0023114194627851248, 0.006192321423441172, 0.025476979091763496, -0.02226952835917473, 0.03940257057547569, -0.003404350019991398, 0.005159316584467888, -0.001198513898998499, -0.0207285825163126, -0.05004080757498741, 0.0015009959461167455, -0.030453665181994438, 0.05182145535945892, -0.007796047255396843, -0.014656112529337406, -0.004993807524442673, 0.004126311745494604], [0.025829564779996872, -0.009825070388615131, 0.042101334780454636, 0.023605827242136, -0.0623929388821125, -0.010070964694023132, -0.0025003680493682623, 0.030191510915756226, 0.03036256693303585, 0.041160523891448975, -0.008611636236310005, 0.0012334793573245406, -0.0005646208301186562, -0.00478424271568656, -0.014368764124810696, 0.007253874093294144, -0.035665325820446014, 0.027497367933392525, -0.009905253536999226, 0.027604278177022934, 0.024097615852952003, 0.0387871116399765, -0.03224419057369232, 0.02080477401614189, -0.01776851713657379, -0.0400058887898922, 0.008996514603495598, -0.023178186267614365, 0.008905640803277493, -0.038936786353588104, 0.06059684231877327, -0.02591509371995926, 0.03466036915779114, 0.017918191850185394, 0.03761109709739685, 0.02895134873688221, -0.04635637253522873, 0.014048033393919468, 0.012754417024552822, -0.046655718237161636, -0.04776758700609207, 0.03530183061957359, 0.03269321471452713, -0.037632476538419724, -0.0023052566684782505, 0.03861605376005173, 0.042079951614141464, 0.015277503058314323, -0.027946392074227333, 0.05264270678162575, 0.019254572689533234, -0.030533624812960625, -0.0021555819548666477, -0.026128914207220078, 0.029828015714883804, 0.025850946083664894, 0.011140068992972374, -0.01617555133998394, 0.012872017920017242, -0.027540132403373718, -0.013876976445317268, 0.0035387359093874693, -0.017608150839805603, 0.043020766228437424, -0.020975830033421516, 0.022600868716835976, 0.019308026880025864, 0.0029213279485702515, -0.013983886688947678, 0.02499566227197647, -0.014400837942957878, -0.017426403239369392, 0.007515804376453161, -0.06825163215398788, -0.012284010648727417, -0.008216068148612976, 0.06354757398366928, -0.016207624226808548, 0.03994174301624298, -0.021039975807070732, -0.003966377582401037, -0.0012615432497113943, -0.017864735797047615, 0.024931516498327255, 0.0317310206592083, 0.02101859450340271, -0.028288504108786583, 0.004778896924108267, -0.039642393589019775, 0.010755191557109356, -0.01536303199827671, -0.05580725520849228, -0.009515030309557915, 0.04188751429319382, 0.031004030257463455, 0.008568872697651386, 0.016784939914941788, -0.009413464926183224, -0.05088937282562256, 0.03583638370037079, 0.03243663161993027, -0.016325226053595543, 0.00656964723020792, 0.05764611437916756, 0.045714907348155975, -0.05067555233836174, -0.03314223885536194, 0.055507905781269073, 0.06773845851421356, -0.006489464081823826, -0.018837621435523033, 0.025615744292736053, -0.004533003084361553, 0.05405392497777939, 0.02567989006638527, -0.03585776314139366, -0.0072218007408082485, -0.0005465796566568315, 0.044431984424591064, 0.006457391194999218, -0.054481565952301025, -0.007670824881643057, 0.008675782941281796, -0.09613387286663055, -0.00806104764342308, -0.006858305539935827, -0.04751100391149521, -0.0018722692038863897, -0.028438178822398186, 0.005441742017865181, 0.020398514345288277, -0.012316083535552025, 0.07513666152954102, 0.0012361520202830434, -0.012112953700125217, -0.01388766709715128, 0.029229316860437393, -0.010883484035730362, 0.017073599621653557, -0.027390457689762115, 0.0372689813375473, -0.015437868423759937, -0.029229316860437393, -0.0239479411393404, -0.01641075313091278, 0.02120034210383892, 0.019564611837267876, 0.06932073831558228, -0.01116145122796297, -0.00033710201387293637, -0.03517353907227516, 0.024332817643880844, -0.015951039269566536, 0.003645646385848522, 0.004682677797973156, 0.054695386439561844, -0.0320303700864315, 0.004917880520224571, 0.02324233204126358, 0.064060740172863, -0.01855965331196785, -0.019778432324528694, 0.013770066201686859, 0.0023640573490411043, 0.010129764676094055, 0.02813882939517498, -0.02813882939517498, -0.019350791350007057, -0.05358351767063141, -0.045714907348155975, -0.02179904095828533, -0.028117448091506958, -0.01155701931566, -0.05157360062003136, 0.021895259618759155, -0.0342327244579792, -0.006377208512276411, 0.003014874644577503, 0.03230833634734154, -0.04999132454395294, 0.028908586129546165, 0.008151921443641186, -0.003172567579895258, 0.009814378805458546, -0.04184475168585777, 0.025487450882792473, 0.035665325820446014, -0.038958169519901276, -0.010760536417365074, 0.03410443291068077, 0.0024896771647036076, -0.012198482640087605, -0.02486737072467804, 0.028053302317857742, -0.03908646106719971, 0.02858785353600979, -0.013545554131269455, -0.026471028104424477, 0.03316362202167511, -0.0006307716248556972, 0.02719801850616932, -0.03267183154821396, -0.004196234978735447, 0.0015769291203469038, -0.03722621873021126, -0.0411391407251358, 0.028780292719602585, 0.027882244437932968, 0.048280760645866394, 0.005789200775325298, 0.013705919496715069, -0.024589402601122856, -0.029828015714883804, 0.01261543296277523, -0.05512302741408348, 0.04785311594605446, 0.0015314922202378511, 0.0027930354699492455, -0.005714363418519497, 0.010856756009161472, 0.019799815490841866, -0.0674818754196167, 0.003562790807336569, 0.041759222745895386, -0.009707468561828136, -0.0291865523904562, -0.0234561525285244, 0.0006040440639480948, -0.03470313176512718, -0.0378035344183445, -0.039770688861608505, 0.05183018743991852, -0.013737992383539677, -0.033911995589733124, 0.013267586939036846, 0.027283547446131706, 0.017490549013018608, -0.0455438531935215, 0.01751193217933178, -0.009402774274349213, -0.009349319152534008, 0.011075922288000584, -0.01905144192278385, 0.01396250445395708, 0.01465742290019989, -0.04451750963926315, -0.013064457103610039, 0.0013965177349746227, 0.07308398187160492, 0.009776960127055645, -0.007927409373223782, 0.029913542792201042, 0.01073380932211876, -0.03335605934262276, 0.018709328025579453, 0.018356524407863617, 0.04507344588637352, 0.03023427538573742, 0.05054726079106331, -0.04451750963926315, 0.035686708986759186, 0.01966083236038685, -0.06162318214774132, 0.020633716136217117, -0.03955686464905739, -0.00978765171021223, 0.06495878845453262, 0.00750511372461915, -0.0119739705696702, 0.021895259618759155, -0.02141416259109974, 0.021189650520682335, -0.0029079641681164503, -0.007996901869773865, -0.02696281485259533, 0.020377131178975105, 0.031453054398298264, -0.03850914537906647, 0.010172529146075249, -0.01816408522427082, -0.023392006754875183, -0.03528044745326042, -0.004102688282728195, -0.05426774546504021, 0.026321353390812874, -0.04580043628811836, -0.0009468256612308323, 0.025423305109143257, 0.00992128998041153, 0.024439727887511253, 0.02873752824962139, 0.04473133012652397, 0.02578680031001568, 0.00698125222697854, 0.05242888256907463, 0.025423305109143257, -0.01919042505323887, -0.0018856331007555127, 0.03374093770980835, -0.004939262755215168, -0.010338240303099155, -0.0034932990092784166, 0.0025605051778256893, 0.013107220642268658, 0.018185466527938843, 0.02546606957912445, -0.02141416259109974, 0.03923613578081131, -0.0028197630308568478, 0.018752092495560646, -0.02897273190319538, 0.03436101973056793, -0.04498791694641113, -0.029742486774921417, 0.009942672215402126, -0.004605167545378208, 0.006537573877722025, 0.024012086912989616, 0.006847614422440529, -0.011867060326039791, 0.03151720017194748, -0.0013818175066262484, 0.05336969718337059, -0.004161489196121693, 0.0010744499741122127, -0.010316858068108559, 0.026706229895353317, 0.020558878779411316, -0.008071739226579666, -0.01811062917113304, -0.02801053784787655, 0.022857453674077988, 0.0027422530110925436, -0.06654106080532074, -0.03247939422726631, 0.01307514775544405, 0.02920793555676937, 0.016838395968079567, -0.008360397070646286, 0.013053765520453453, 0.03130337968468666, -0.023306477814912796, -0.018174776807427406, -0.023049892857670784, 0.002584560075774789, 0.008702510967850685, 0.0027075072284787893, 0.04644189774990082, 0.03303533047437668, 0.041267432272434235, 0.03750418499112129, -0.010787264443933964, 0.002520413836464286, -0.011802913621068, -0.057389527559280396, -0.045116208493709564, 0.030854355543851852, -0.012989619746804237, -0.039535485208034515, 0.0015408468898385763, -0.009851797483861446, -0.013288969174027443, 0.06264952570199966, 0.03634955361485481, -0.017191199585795403, -0.01042911410331726, 0.0011486191069707274, 0.03489556908607483, -0.0041855438612401485, -0.004867098294198513, 0.05255717784166336, 0.030683299526572227, 0.0044394563883543015, -0.03301394730806351, 0.009023241698741913, 0.0019217153312638402, 0.008697165176272392, 0.018249614164233208, -0.005321467760950327, -0.025594361126422882, 0.029336227104067802, 0.01430461835116148, 0.02546606957912445, 0.02826712280511856, 0.09057453274726868, 0.015159902162849903, -0.07038983702659607, -0.01575860008597374, 0.035921912640333176, -0.009889216162264347, -0.03196622431278229, 0.04609978571534157, 0.027475984767079353, 0.022836072370409966, 0.007574605289846659, 0.04515897482633591, 0.06226464733481407, 0.06252123415470123, -0.02651379071176052, -0.03645646199584007, 0.0051103197038173676, -0.030555006116628647, 0.010332894511520863, -0.06359033286571503, 0.012743725441396236, 0.014582585543394089, -0.026556555181741714, 0.014871243387460709, 0.026299970224499702, -0.014988845214247704, 0.032885655760765076, -0.02826712280511856, -0.0010136447381228209, -0.014678805135190487, 0.007911372929811478, 0.01764022372663021, -0.002122172387316823, 0.014689495787024498, 0.005746436771005392, -0.02499566227197647, 0.02730492874979973, 0.04026247560977936, -0.044089868664741516, 0.017020143568515778, -0.021403471007943153, 0.007510459050536156, 0.004083978943526745, 0.03250077739357948, -0.013278277590870857, -0.06996219605207443, -0.02801053784787655, -0.01511713769286871, 0.011257669888436794, 0.024439727887511253, -0.018602417781949043, -0.000840583408717066, 0.013791447505354881, -0.03596467524766922, -0.03070468083024025, 0.011182832531630993, -0.009504338726401329, -0.008804075419902802, -0.0004172848421148956, -0.004618531558662653, -0.041973043233156204, -0.02018469199538231, -0.03557979688048363, 0.018420670181512833, 0.008782693184912205, 0.026577938348054886, -0.032415248453617096, -0.017896808683872223, -0.036477845162153244, 0.0201526191085577, -0.020558878779411316, -0.02672761306166649, 0.025059809908270836, -0.03493833541870117, 0.005960257723927498, -0.026235824450850487, 0.022814689204096794, 0.017971646040678024, 0.014710878022015095, 0.031453054398298264, 0.009760923683643341, 0.018602417781949043, -0.001149287330918014, -0.02072993665933609, 0.013064457103610039, -0.03735451027750969, -0.03996312618255615, -0.03500248119235039, 0.0087666567414999, 0.039407189935445786, -0.018420670181512833, -0.028801675885915756, -0.018730711191892624, -0.03690548613667488, -0.02687728777527809, -0.018174776807427406, -0.0034184616524726152, 0.03072606399655342, -0.023776883259415627, -0.023563062772154808, 0.019275953993201256, 0.040668733417987823, 0.1032327264547348, -0.03209451586008072, -0.010509297251701355, -0.03677719458937645, -0.027411838993430138, -0.00018592395645100623, 0.035793617367744446, -0.006681903265416622, -0.05661977455019951, -0.01706290803849697, -0.02136070840060711, 0.02195940539240837, 0.03605020418763161, -0.04359808191657066, 0.03992036357522011, -0.008408506400883198, 0.026064768433570862, -0.032415248453617096, 0.04704059660434723, -0.028309887275099754, -0.010242020711302757, -0.044902388006448746, -0.021243106573820114, -0.01190982386469841, -0.028331268578767776, -0.013438643887639046, 0.019489774480462074, -0.0011172142112627625, 0.02732631005346775, -0.025594361126422882, 0.019094206392765045, 0.003234041156247258, -0.009477611631155014, -0.02743322215974331, 0.003477262333035469, 0.003969050478190184, -0.04905051365494728, -0.018313759937882423, -0.027625659480690956, 0.01116145122796297, -0.00043098273454234004, -0.07180105894804001, -0.01688116043806076, -0.007355439011007547, -0.007002634461969137, -0.03634955361485481, 0.005249302834272385, 0.020986521616578102, 0.008905640803277493, -0.003966377582401037, 0.02463216707110405, 0.011696003377437592, -0.008365742862224579, 0.0007991556194610894, 0.007751007564365864, -0.0300204548984766, 0.011760149151086807, -0.0019136969931423664, 0.024824606254696846, 0.010755191557109356, 0.02054818905889988, 0.01126836147159338, 0.007007979787886143, -0.019596684724092484, 0.004228308331221342, 0.029036877676844597, 0.0264924094080925, 0.004818988498300314, 0.0015141192125156522, 0.0055112335830926895, 0.03938581049442291, -0.0356011800467968, -0.0055914162658154964, -0.003584172809496522, -0.00875596608966589, -0.008226758800446987, -0.018698638305068016, 0.01116145122796297, -0.003151185577735305, 0.03192346170544624, -0.013032384216785431, -0.016485590487718582, 0.0200777817517519, -0.0026219787541776896, -0.005380268208682537, 0.04887945577502251, 0.006409281399101019, 0.00028431497048586607, 0.012380230240523815, -0.01145010907202959, 0.017030835151672363, -0.03690548613667488, -0.02452525682747364, -0.01892315037548542, 0.017789898440241814, 0.04810970276594162, 0.008424543775618076, 0.011075922288000584, -0.015769291669130325, 0.0051103197038173676, 0.005064882338047028, -0.04062597081065178, -0.012754417024552822, -0.00010941616346826777, 0.014700186438858509, -0.012198482640087605, 0.0085207624360919, -0.0033863885328173637, -0.024204526096582413, 0.05709017813205719, -0.046185314655303955, 0.05221506208181381, 0.008841494098305702, 0.025295011699199677, -0.0026700885500758886, -0.014988845214247704, -0.024439727887511253, 0.03572947159409523, -0.03679857775568962, -0.04090393707156181, -0.008093121461570263, -0.02290021814405918, 0.006441354751586914, 0.002405485138297081, 0.029934925958514214, 0.0073394025675952435, 0.011599783785641193, -0.014603967778384686, -0.03243663161993027, 0.018570344895124435, -0.046185314655303955, -0.02768980711698532, 0.007697552442550659, -0.013331732712686062, -0.003838085103780031, 0.00841385219246149, 0.008750620298087597, -0.037525568157434464, -0.022600868716835976, -0.0007343411562032998, -0.005965603049844503, -0.03992036357522011, 0.03855190798640251, -0.000497133587487042, -0.010813991539180279, 0.0318806953728199, 0.022814689204096794, -0.006067167967557907, -0.02143554575741291, -0.012797180563211441, 0.017811281606554985, 0.007628060411661863, 0.004754842258989811, -0.00806104764342308, 0.028416797518730164, -0.02038782276213169, 0.012390920892357826, -0.03733312711119652, 0.03399752452969551, 0.012658197432756424, 0.023306477814912796, 0.017522621899843216, 0.0032474049367010593, -0.005235939286649227, 0.01581205613911152, 0.0017680315067991614, 0.022579487413167953, -0.03831670433282852, 0.011514255777001381, -0.022729162126779556, -0.016036568209528923, 0.03910784050822258, 0.030897120013833046, 1.357261589873815e-05, -0.03466036915779114, 0.04370499029755592, -0.01045584212988615, -0.031239233911037445, -0.010680354200303555, 0.0029854741878807545, 0.008451270870864391, 0.0033088785130530596, 0.0033783703111112118, -0.002902618609368801, 0.005153083708137274, 0.005131701473146677, -0.01955392025411129, -0.01769367977976799, -0.029036877676844597, -0.0300204548984766, -0.0332491509616375, 0.03382646664977074, -0.0200777817517519, 0.050162382423877716, -0.025979239493608475, -0.020644407719373703, -0.014336691237986088, 0.010979702696204185, -0.013748683966696262, -0.014176325872540474, -0.0019270608900114894, -0.035686708986759186, -0.004129416309297085, -0.03919336944818497, -0.013705919496715069, 0.027497367933392525, 0.022151844576001167, 0.0204198956489563, 0.014956771396100521, 0.02486737072467804, 0.0014245817437767982, 0.005960257723927498, -0.03876572847366333, 0.04695506766438484, -0.012711652554571629, 0.0007136272615753114, -0.03010598197579384, -0.10810784995555878, -0.046784013509750366, -0.016549738124012947, 0.008916331455111504, 0.030041836202144623, 0.008472653105854988, 0.001710567157715559, -0.019072823226451874, 0.008157267235219479, -0.0003771934425458312, -0.04036938399076462, -0.03891540318727493, 0.02183111384510994, -0.00752649549394846, -0.018260303884744644, 0.039278898388147354, -0.011685311794281006, -0.0386374369263649, 0.0409894660115242, 0.030148746445775032, -0.00031321420101448894, 0.009258445352315903, -0.005773164331912994, -0.01209157146513462, -0.02347753383219242, -0.032885655760765076, 0.031944841146469116, 0.026813140138983727, -0.010723117738962173, -0.00679950462654233, 0.03254354000091553, -0.01419770810753107, 0.027283547446131706, -0.006933142431080341, 0.00046238768845796585, -0.03185931220650673, -0.027882244437932968, 0.0318806953728199, -0.043747756630182266, -0.008627673611044884, -0.017950264737010002, -0.01536303199827671, 0.008499381132423878, 4.539517976809293e-05, -0.014176325872540474, -0.015630308538675308, 0.01968221366405487, -0.005762473214417696, 0.004682677797973156, -0.01108661387115717, -0.01612209528684616, 0.01866656355559826, -0.009033933281898499, -0.00046572863357141614, -0.002135536167770624, 0.015491324476897717, -0.005003408994525671, 0.00023319841420743614, -0.007189727853983641, 0.020526805892586708, 0.01120421476662159, -0.028117448091506958, -0.00030619819881394506, -0.023392006754875183, -0.005741090979427099, 0.006259606685489416, 0.0004988040891475976, -0.004770878702402115, 0.0071576545014977455, 0.05289928987622261, 0.006387899164110422, 0.009584521874785423, -0.0021422181744128466, -0.009247753769159317, -0.03034118562936783, -0.023285096511244774, -0.04184475168585777, 0.029357610270380974, 0.0034745896700769663, -0.0011920514516532421, 0.0039209406822919846, -0.005059537012130022, -0.006868996191769838, 0.015202665701508522, 0.030448095872998238, 0.009819724597036839, -0.010482569225132465, 0.015673071146011353, -0.029357610270380974, -0.019767742604017258, -0.00621684268116951, -0.04190889745950699, 0.014689495787024498, -0.01261543296277523, -0.02311403863132, 0.025893710553646088, 0.006345135159790516, -0.028331268578767776, 0.016143478453159332, -0.000997608178295195, 0.03776077181100845, 0.05054726079106331, -0.004476875066757202, -0.016025876626372337, -0.013524171896278858, 0.02942175604403019, -0.037311747670173645, -0.032415248453617096, 0.013374497182667255, 0.026342734694480896, 0.04562937840819359, 0.03583638370037079, -0.04169507697224617, -0.04148125275969505, 0.039065077900886536, 0.007692206650972366, -0.02170282043516636, 0.0006140668992884457, -0.014689495787024498, 0.02567989006638527, -0.013342424295842648, 0.0381028838455677, 0.002632669871672988, -0.04447474703192711, 0.007622715085744858, 0.006366517394781113, -0.013235514052212238, -0.005308103747665882, 0.02112550474703312, -0.0011172142112627625, -0.011995352804660797, 0.006163387559354305, 0.028673382475972176, 0.0067727770656347275, -0.00891098566353321, 0.037418656051158905, 0.03036256693303585, 0.06461667269468307, -0.04866563528776169, -0.009664705023169518, 0.004212271887809038, -0.03912922367453575, 0.04075426235795021, -0.02591509371995926, 0.005350867751985788, 0.012914782389998436, 0.028459561988711357, 0.008392469957470894, -0.0030389295425266027, -0.022109080106019974, 0.004313836805522442, -0.004332546144723892, 0.0032073133625090122, -0.0066444845870137215, -0.019831888377666473, -0.0059976764023303986, -0.007098854053765535, -0.0008653064724057913, -0.019019369035959244, 0.012946855276823044, 0.03327053040266037, 0.028053302317857742, -0.0007102863164618611, -0.01604725793004036, -0.011941896751523018, -0.010252712294459343, 0.00825883261859417, 0.05029067397117615, 0.020751317963004112, 0.015769291669130325, -0.031602729111909866, -0.036948252469301224, -0.03331329673528671, 0.0011419372167438269, 0.02687728777527809, 0.013182057999074459, -0.018762784078717232, -0.019724978134036064, -0.005773164331912994, 0.043362878262996674, 0.02858785353600979, -0.0291865523904562, -0.016955997794866562, 0.0013858267338946462, 0.057517822831869125, 0.036713048815727234, -0.01805717498064041, 0.02897273190319538, 0.00018158071907237172, 0.007761698681861162, -0.01295754685997963, 0.02013123780488968, -0.022044934332370758, -0.024824606254696846, -0.010712427087128162, -0.011760149151086807, 0.0054390691220760345, -0.03630678728222847, 0.01971428655087948, -0.043512552976608276, -0.019414937123656273, -0.03232971951365471, 0.0063985902816057205, -0.04768206179141998, -0.013556244783103466, -0.013331732712686062, 0.007515804376453161, 0.02300712838768959, -0.04661295562982559, -0.004161489196121693, -0.05067555233836174, 0.04383328557014465, 0.0033302605152130127, -0.044431984424591064, 0.028630618005990982, 0.006425317842513323, 0.01957530342042446, 0.05234335735440254, -0.004214944317936897, -0.022558104246854782, -0.03540873900055885, -0.01934009976685047, -0.0320303700864315, -0.015437868423759937, 0.0170415248721838, -0.013759374618530273, 0.004426092375069857, -0.022942982614040375, 0.05281376093626022, 0.0036189185921102762, 0.030063217505812645, -0.00929051823914051, 0.013812829740345478, -0.0016009840182960033, -0.015544779598712921, 0.007408894132822752, -0.014026651158928871, 0.04391881078481674, 0.01677425019443035, -0.009354664012789726, 0.0019471065606921911, -0.027112489566206932, 0.02512395568192005, 0.03303533047437668, -0.02146761864423752, 0.015983112156391144, -0.003934304695576429, -0.011033158749341965, 0.013021692633628845, -0.010969012044370174, -0.004917880520224571, -0.0026567247696220875, -0.003421134315431118, 0.0627778172492981, -0.022942982614040375, 0.014475674368441105, 0.026128914207220078, 0.02275054343044758, 0.021221723407506943, 0.02313542179763317, -0.040818408131599426, 0.04686954244971275, 0.03307809308171272, 0.007756352890282869, 0.025252247229218483, -0.009632631205022335, 0.02405485138297081, -0.022365665063261986, -0.014251163229346275, 0.047339946031570435, 0.020644407719373703, 0.015042300336062908, 0.06166594848036766, -0.005334831308573484, 0.01886969432234764, 0.004051906056702137, 0.007072126027196646, 0.019436320289969444, -0.0144222192466259, 0.013876976445317268, 0.007622715085744858, -0.00960590410977602, 0.03949271887540817, 0.0030068564228713512, -0.019639449194073677, -0.01179222296923399, 0.010332894511520863, 0.008216068148612976, 0.02188456803560257, 0.01596173085272312, 0.009087388403713703, -0.012102263048291206, -0.015694454312324524, 0.00750511372461915, 0.009354664012789726, -0.007462349254637957, -0.002809072146192193, 0.03245801106095314, 0.0018455416429787874, -0.00030703344964422286, -0.010364968329668045, -0.010332894511520863, 0.01244437601417303, 0.003803339321166277, -0.0006407945184037089, -0.0502479113638401, 0.005799891892820597, 0.008183995261788368, 0.002160927513614297, -0.011492873542010784, 0.009338627569377422, -0.018773475661873817, -0.02721939980983734, 0.025594361126422882, -0.03583638370037079, -0.02555159665644169, 0.009835761040449142, -0.03312085568904877, 0.027753952890634537, 0.00715230917558074, 0.013385187834501266, 0.034510694444179535, -0.022600868716835976, 0.03389061242341995, 0.010445150546729565, 0.015630308538675308, -0.006190115120261908, 0.01966083236038685, -0.03483142331242561, 0.03399752452969551, 0.04323458671569824, 0.02638549916446209, 0.0041748532094061375, -0.03260768577456474, -0.0532841682434082, -0.013524171896278858, 0.013481407426297665, 0.010092345997691154, -0.007601332850754261, -0.02287883684039116, -0.01066431775689125, -0.007590641733258963, -0.0012455066898837686, 0.004992717877030373, 0.02465355023741722, 0.011663929559290409, 0.003880849340930581, -0.005233266390860081, -0.0027983810286968946, -0.009066006168723106, -0.013812829740345478, 0.0012749071465805173, -0.006393244955688715, -0.009702123701572418, -0.016036568209528923, -0.03750418499112129, -0.005570034496486187, -0.0004947949200868607, -0.044303689152002335, 0.011589093133807182, -0.004864425398409367, 0.017084289342164993, -0.014390146359801292, -0.007483731489628553, -0.007852572947740555, -0.015630308538675308, 0.013288969174027443, -0.02706972509622574, 0.0015969747910276055, 0.022558104246854782, 0.06662659347057343, 0.012284010648727417, -0.022579487413167953, 0.015106446109712124, -0.02895134873688221, -0.023071274161338806, 0.009814378805458546, -0.009862489067018032, -0.013021692633628845, 0.029058260843157768, -0.002071389928460121, -0.01740502193570137, -0.00023085974680725485, -0.0006615084130316973, 0.009007205255329609, 0.011460799723863602, 0.026364115998148918, 0.013460025191307068, 0.029721105471253395, 0.004428765270859003, 0.031474437564611435, -0.013278277590870857, -0.027390457689762115, 0.05875798314809799, 0.0038915404584258795, 0.02766842395067215, 0.0053107766434550285, 0.013684537261724472, -0.006254261359572411, -0.007200418971478939, -0.0020927719306200743, 0.05854416266083717, -0.013406570069491863, -0.010172529146075249, 0.04118190333247185, 0.0028197630308568478, -0.0014927370939403772, 0.016891850158572197, 0.022472577169537544, 0.014379455707967281, -0.03699101507663727, 0.030875736847519875, 0.011653238907456398, 0.0007436958258040249, 0.030619151890277863, 0.013011001981794834, -0.014892625622451305, -0.0015248103300109506, -0.010236675851047039, -0.035793617367744446, -0.0007644097204320133, 0.008488689549267292, 0.012797180563211441, -0.01937217265367508, 0.03761109709739685, 0.017960956320166588, -0.016261078417301178, -0.0004450147389434278, -0.019479084759950638, 0.0029186552856117487, -0.006601720117032528, 0.027112489566206932, 0.005273357965052128, 0.009707468561828136, -0.009221026673913002, -0.0015662381192669272, 0.023392006754875183, 0.019019369035959244, 0.016688721254467964, 0.00251640472561121, 0.006917105987668037, -0.049349863082170486, -0.00939742848277092, 0.008761310949921608, 0.05559343472123146, 0.02240842953324318, -0.0030710026621818542, -0.005468469578772783, 0.03433963656425476, -0.002126181498169899, 0.013577627018094063, 0.013353114947676659, 0.0026700885500758886, 0.06388968229293823, -0.027262164279818535, 0.03416857868432999, 0.03739727661013603, 0.008408506400883198, -0.015416487120091915, 0.013727301731705666, -1.3134115761204157e-05, 0.004508948419243097, 0.0204947330057621, 0.008103812113404274, -0.004920553416013718, -0.017394330352544785, 0.009862489067018032, -0.015191975049674511, -0.025658506900072098, -0.05088937282562256, -0.010840719565749168, 0.013011001981794834, -0.0013831539545208216, 0.02167074754834175, 0.017576077952980995, 0.024439727887511253, -0.008445925079286098, 0.006521537434309721, -0.0008606291376054287, -0.03470313176512718, -0.04853734374046326, 0.01905144192278385, 0.036713048815727234, 0.029143787920475006, -0.030277039855718613, 0.009231717325747013, 0.006911760661751032, 0.011952588334679604, 0.007574605289846659, 0.03773938864469528, -0.0264924094080925, -0.023306477814912796, 0.020216766744852066, -0.039984509348869324, 0.045928727835416794, 0.00621684268116951, -0.02625720575451851, -0.012209173291921616, 0.003426479874178767, -0.00636117160320282, -0.008809421211481094, -0.040668733417987823, 0.004455492831766605, -0.019414937123656273, 0.013876976445317268, -0.0041855438612401485, 0.010477224364876747, 0.00029500602977350354, -0.0009795669466257095, -0.032073136419057846, 0.015619616955518723, -0.00823210459202528, 0.015972420573234558, -0.00028615249902941287, 0.00047809016541577876, -0.03664890304207802, -0.002667415654286742, 0.04299938306212425, 0.010712427087128162, -0.011300434358417988, -0.028181593865156174, 0.03536597639322281, 0.0027248801197856665, -0.014871243387460709, -0.0010777909774333239, -0.02290021814405918, 0.002290556440129876, 0.055764488875865936, -0.003626937046647072, -5.729731856263243e-05, -0.016688721254467964, 0.04716889187693596, -0.0004196235095150769, 0.023776883259415627, 0.005377595778554678, -0.0022010188549757004, -0.008804075419902802, -0.008654400706291199, 0.014315309002995491, 0.012348156422376633, -0.013395879417657852, -0.029036877676844597, 0.02164936624467373, 0.008552836254239082, -0.0019711614586412907, -0.018409978598356247, 0.0031404944602400064, 0.03361264616250992, -0.006264952477067709, 0.005075573455542326, 0.003570809029042721, 0.011396653950214386, 0.02287883684039116, 0.013919740915298462, -0.0400058887898922, -0.006163387559354305, -0.008595599792897701, -0.003044275101274252, -0.038359470665454865, -0.010193911381065845, 0.037311747670173645, -0.005064882338047028, 0.01610071398317814, 0.003287496278062463, 0.026535173878073692, 0.009632631205022335, 0.0010978366481140256, 0.004474202170968056, 0.005479160696268082, 0.0006237556808628142, -0.011963278986513615, 0.04870840162038803, 0.017180509865283966, -0.006521537434309721, -0.007125581614673138, 0.00563418073579669, 0.025957856327295303, 0.031110940501093864, -0.009172916412353516, -0.021392781287431717, -0.004059924278408289, -0.024461111053824425, 0.014432910829782486, 0.023156803101301193, -0.022493958473205566, 0.0034104434307664633, -0.009792997501790524, -0.020302293822169304, -0.03838085010647774, -0.0012729025911539793, -0.014283236116170883, -0.02164936624467373, 0.07017602026462555, -0.03925751522183418, 0.004348582588136196, 0.019757051020860672, -0.00764944264665246, 0.02264363318681717, -0.00530008552595973, 0.02766842395067215, 0.018912458792328835, -0.029122406616806984, 0.02627858892083168, 0.008649054914712906, 0.00929051823914051, 0.008071739226579666, -0.039535485208034515, -0.018602417781949043, -0.022451194003224373, 0.00840316154062748, 0.002838472370058298, 0.016164859756827354, -0.03838085010647774, -0.011075922288000584, 0.004749496933072805, -0.03716207295656204, -0.009819724597036839, 0.02696281485259533, -0.046997833997011185, -0.010813991539180279, 0.015202665701508522, 0.022942982614040375, 0.024012086912989616, 0.011824295856058598, 0.003413116093724966, -0.008868222124874592, -0.025615744292736053, -0.002817090367898345, -0.016870468854904175, -0.01751193217933178, -0.004271072335541248, -0.005292067304253578, 0.037653859704732895, 0.019928107038140297, 0.0365847572684288, -0.014582585543394089, 0.010375658981502056, -0.031217850744724274, -0.014700186438858509, -0.025038426741957664, 0.01805717498064041, 0.033462971448898315, 0.0008245468488894403, -8.440078818239272e-05, 0.006291680037975311, -0.0058212741278111935, 0.005917493253946304, 0.008226758800446987, -0.03553703427314758, -0.033569879829883575, -0.013909049332141876, -0.01633591577410698, -0.0065803383477032185, 0.012177100405097008, 0.03446792811155319, -0.030170129612088203, 0.028074683621525764, -0.01785404421389103, 0.05841587111353874, -0.026770375669002533, 0.008670437149703503, 0.002603269414976239, -0.0030202202033251524, -0.04017694666981697, 0.01850619912147522, 0.007291292771697044, 0.029357610270380974, -0.04195166006684303, -0.015972420573234558, 0.05127425119280815, 0.014454293064773083, 0.025252247229218483, 0.03594329208135605, -0.029849397018551826, 0.010028200224041939, -0.01378075685352087, -0.006125968880951405, -0.009204989299178123, 0.004198907874524593, 0.0035307176876813173, 0.015106446109712124, 0.009472265839576721, 0.010364968329668045, -0.005206538829952478, -0.034275490790605545, -0.02080477401614189, -0.0036670283880084753, -0.00044234198867343366, 0.0033088785130530596, 0.01236953865736723, -0.004410055931657553, -0.04609978571534157, 0.012765107676386833, -0.027475984767079353, -0.0065268827602267265, -0.020377131178975105, -0.017244655638933182, -0.027155254036188126, -0.002774326130747795, -0.026107531040906906, 0.0027034978847950697, 0.009392082691192627, -0.0037204837426543236, -0.027112489566206932, 0.004618531558662653, -0.02334924228489399, 0.02719801850616932, 0.0036750466097146273, 0.01675286702811718, 0.04077564552426338, 0.008371087722480297, -0.018987296149134636, -0.04299938306212425, 0.03720483556389809, -0.014807097613811493, -0.021627983078360558, 0.013737992383539677, -0.04648466408252716, -0.015715835615992546, -0.00571970921009779, 0.01145010907202959, -0.008504725992679596, -0.015566161833703518, 0.032286956906318665, 0.04263588786125183, 0.030319804325699806, 0.03222281113266945, -0.03149581700563431, -0.031453054398298264, 0.015191975049674511, 0.01928664557635784, 0.037889063358306885, 0.015972420573234558, -0.016367990523576736, 0.00694383354857564, -0.013823521323502064, 0.05217229947447777, -0.059142861515283585, 0.039278898388147354, -0.023178186267614365, 0.007676170207560062, 0.023327859118580818, 0.006147350650280714, -0.04062597081065178, 0.0015943021280691028, -0.012818562798202038, 0.007259219419211149, 0.01986396126449108, 0.00513704726472497, -0.006056476850062609, 0.019767742604017258, -0.0015582197811454535, 0.03481004387140274, -0.014251163229346275, -0.011065231636166573, 0.003562790807336569, -0.020612334832549095, -0.038936786353588104, 0.009632631205022335, 0.017597459256649017, 0.0023293113335967064, -0.000572639110032469, -0.002237101085484028, 0.024076232686638832, -0.009648667648434639, 0.022558104246854782, 0.011995352804660797, -0.03226557374000549, 0.01913697086274624, -0.042079951614141464, 0.004132088739424944, -0.016603192314505577, -0.05606383830308914, 0.03220142796635628, 0.00946157518774271, -0.010616207495331764, 0.031581345945596695, -0.04644189774990082, -0.028053302317857742, -0.0005636185524053872, -0.000279136496828869, -0.0369696319103241, 0.027625659480690956, -0.01601518504321575, -0.002803726587444544, -0.0009728851146064699, -0.016132786870002747, 0.009306554682552814, -0.0031404944602400064, 0.03481004387140274, 0.017340874299407005, 0.03669166564941406, 0.0021194997243583202, 0.02813882939517498, 0.005112992133945227, 0.020291604101657867, -0.00764944264665246, -0.002281201770529151, 0.023605827242136, -0.0019631432369351387, 0.01832445152103901, -0.010327549651265144, 0.04188751429319382, -0.044303689152002335, 0.0013604355044662952, -0.004541021306067705, -0.013663155026733875, 0.024354200810194016, 0.05580725520849228, -0.014732260257005692, -0.007318020332604647, -0.0003558113530743867, 0.02721939980983734, 0.0175333134829998, 0.01267957966774702, -0.013502789661288261, -0.0012842618161812425, -0.006794158834964037, 0.037782151252031326, -0.010017508640885353, -0.007938100956380367, 0.010129764676094055, 0.010969012044370174, 0.018099939450621605, -0.0006742040277458727, -0.057261236011981964, 0.02324233204126358, -0.03912922367453575, 0.02730492874979973, -0.0019965525716543198, 0.007676170207560062, 0.004963317420333624, 0.01384490355849266], [0.04425077140331268, 0.012644745409488678, -0.002742321928963065, -0.010934260673820972, -0.05977940559387207, 0.03360256552696228, -0.0033012942876666784, 0.0008815127075649798, 0.03362591564655304, 0.005575130227953196, -0.0028838892467319965, 0.02098117023706436, 0.02101619727909565, 0.026106785982847214, -0.02521943673491478, 0.035797588527202606, 0.021845169365406036, 0.04158871993422508, 0.0015995660796761513, 0.015225066803395748, -0.00312907830812037, 0.04411066323518753, 0.01548193208873272, -0.00897858664393425, -0.017081497237086296, -0.011576421558856964, 0.006614264100790024, -0.03617120906710625, 0.055856380611658096, -0.014349392615258694, 0.0431065559387207, -0.0262001920491457, 0.048991091549396515, -0.007530803792178631, 0.00701707461848855, 0.012084313668310642, -0.03806266933679581, 0.05735086649656296, 0.0307303499430418, -0.05487562716007233, -0.03967390954494476, 0.03477013111114502, 0.04053790867328644, -0.036965154111385345, -0.04931800812482834, 0.013812311924993992, 0.008610802702605724, -0.007180533837527037, -0.06351561844348907, 0.016941389068961143, -0.02428538352251053, 0.019731873646378517, -0.02003544196486473, -0.03558742627501488, 0.04207909479737282, 0.0066843181848526, -0.046515848487615585, 0.02484581433236599, 0.011080206371843815, 0.004130266606807709, 0.004950481932610273, -0.015306796878576279, -0.0020009169820696115, -0.006567561533302069, -0.009433937259018421, 0.0003008308121934533, -0.004804536234587431, 0.03649812936782837, -0.042499419301748276, 0.050158657133579254, -0.005359130445867777, 0.006695993710309267, -0.005875778384506702, -0.04411066323518753, -0.028885595500469208, 0.0375022366642952, 0.055856380611658096, -0.006602588575333357, 0.10078433901071548, 0.0014893769985064864, -0.027974892407655716, 0.0036982668098062277, 0.01548193208873272, 0.012387880124151707, 0.008768424391746521, 0.005718156695365906, -0.07061441987752914, 0.01852928102016449, -0.035423967987298965, -0.032948724925518036, -0.029305920004844666, -0.03367261961102486, -0.001837457763031125, 0.041938990354537964, 0.005239454563707113, 0.020584197714924812, 0.012563015334308147, 0.015773823484778404, -0.030870458111166954, 0.04165877401828766, 0.015960633754730225, -0.016684524714946747, -0.009498153813183308, 0.019439982250332832, 0.06108707934617996, -0.060293134301900864, -0.0526806004345417, 0.03895001858472824, 0.02713424526154995, -0.02771802805364132, -0.00036541183362714946, 0.007956965826451778, -0.056043192744255066, 0.03911347687244415, -0.01626420207321644, -0.016345931217074394, -0.019369928166270256, 0.00956236943602562, 0.00031031729304231703, -0.00539707625284791, -0.013882366009056568, -0.022825924679636955, -0.0007822695770300925, -0.07136166095733643, 0.006631777621805668, -0.017525173723697662, -0.05669702962040901, -0.0006220940267667174, -0.03719867020845413, -0.012948312796652317, 0.023211222141981125, -0.015014905482530594, 0.04759000986814499, -0.009212099947035313, -0.005131454672664404, 0.030823756009340286, 0.0208177100867033, -0.00577361648902297, -0.009311342611908913, -0.041331853717565536, 0.024565599858760834, -0.00577361648902297, 0.009317181073129177, -0.01146550290286541, -0.026713920757174492, 0.03367261961102486, 0.022195439785718918, 0.05795799940824509, 0.013543771579861641, -0.010940098203718662, -0.04488125443458557, 0.02157662808895111, 0.019159765914082527, -0.03666158765554428, -0.00823134370148182, 0.008394802920520306, -0.01584387756884098, 0.06659799069166183, -0.0186927393078804, 0.012095988728106022, -0.03271521255373955, -0.028231758624315262, -0.0020651333034038544, -0.016906362026929855, 0.04903779178857803, 0.010811666026711464, -0.00783437117934227, 0.006876966450363398, -0.06505680829286575, -0.032785266637802124, -0.04219585284590721, -0.02484581433236599, 0.023176195099949837, -0.02444884181022644, 0.03234159201383591, -0.022814249619841576, -0.03439651057124138, 0.019556738436222076, 0.026013381779193878, -0.008745073340833187, -0.005977940279990435, -0.01384733896702528, -0.038856614381074905, -2.6680718292482197e-06, -0.06206783652305603, 0.02103954739868641, 0.03628796711564064, -0.03528385981917381, -0.0043725366704165936, 0.026013381779193878, 0.07285615056753159, -0.004474698565900326, -0.01517836470156908, 0.006550048012286425, -0.05039216950535774, 0.00849988404661417, -0.0052628060802817345, -0.02196192555129528, 0.008476532995700836, -0.008283884264528751, 0.037362128496170044, -0.029399324208498, 0.014734689146280289, 0.014209284447133541, -0.006748534273356199, -0.037922561168670654, 0.02844191901385784, 0.00222421414218843, 0.07617203891277313, 0.01833079382777214, 0.0005151887307874858, -0.05230697989463806, -0.07939451932907104, 0.04072472080588341, 0.0005418237997218966, 0.020327333360910416, 0.03187456727027893, -0.02291933074593544, -0.01931154914200306, 0.04256947338581085, 0.021670034155249596, -0.047473255544900894, -0.004390050191432238, 0.005391238257288933, -0.01460625696927309, -0.038296181708574295, 0.029702892526984215, 0.008196316659450531, -0.04698287695646286, -0.03757229074835777, -0.03610115498304367, 0.028605379164218903, -0.02958613447844982, -0.024495545774698257, -0.026270246133208275, 0.05767778679728508, 0.0030064836610108614, -0.018972955644130707, -0.020385710522532463, 0.017840415239334106, 0.006275670137256384, 0.003534807590767741, 0.007046263664960861, 0.02867543324828148, -0.023736627772450447, 0.001381377107463777, -0.037945911288261414, -0.008307235315442085, 0.041542015969753265, -0.019439982250332832, 0.025172734633088112, 0.02100452221930027, 0.049364712089300156, 0.0005753913428634405, 0.012854906730353832, 0.013753932900726795, 0.04565184935927391, 0.010268747806549072, 0.019766900688409805, -0.03731542453169823, 0.0173617135733366, 0.010910908691585064, -0.05898546054959297, -0.023795004934072495, -0.025709813460707664, -0.013251880183815956, 0.0787406861782074, 0.004819130524992943, -0.013041717931628227, 0.04698287695646286, -0.042476069182157516, 0.01479306723922491, 0.008569938130676746, -0.03339240327477455, 0.006269832141697407, -0.03668493777513504, 0.02596667967736721, -0.02428538352251053, 0.026970786973834038, 0.010776638984680176, -0.0288622435182333, -0.005324103403836489, 0.027974892407655716, -0.016766255721449852, 0.034116294234991074, -0.03463002294301987, 0.026970786973834038, 0.014209284447133541, 0.0020826468244194984, 0.0019089712295681238, 0.030613593757152557, -0.018435874953866005, -0.012843231670558453, 0.002289889845997095, 0.02561640925705433, -0.004463023040443659, -0.07145506888628006, -0.0065325344912707806, 0.03229488804936409, -0.01871609129011631, -0.003666158765554428, 0.04434417560696602, 0.02255738526582718, 0.018797820433974266, -0.015248418785631657, 0.017875442281365395, 0.01835414581000805, 0.012574691325426102, -0.05328773334622383, -0.031244078651070595, -0.01702312007546425, 0.013975771144032478, -0.03413964435458183, -0.041355203837156296, -0.0016316741239279509, -0.027204299345612526, -0.024869166314601898, 0.02521943673491478, 0.018389172852039337, 0.011214476078748703, 0.04277963563799858, 0.05132622271776199, 0.02484581433236599, 0.007192209828644991, 0.005096427630633116, 0.026013381779193878, 0.01777036301791668, 0.08224338293075562, 0.006567561533302069, -0.02444884181022644, -0.03955715149641037, -0.01836582086980343, 0.03731542453169823, -0.026597164571285248, -0.024939220398664474, -0.022966032847762108, -0.0030210784170776606, 0.04065466672182083, -0.018856199458241463, 0.028418568894267082, 0.01812063157558441, 0.0007468776893801987, 0.02447219379246235, -0.01155307050794363, -0.004664428066462278, -0.0066843181848526, 0.03271521255373955, 0.021915223449468613, -0.007384858094155788, 0.010998476296663284, 0.01098680030554533, 0.010782476514577866, -0.01173404324799776, 0.011208638548851013, -0.024799112230539322, -0.02561640925705433, 0.010175341740250587, 0.006643453147262335, -0.008278046734631062, 0.028348514810204506, 0.008762586861848831, 0.00758918235078454, 0.04376039281487465, 0.0343264564871788, 0.006468318402767181, 0.016847984865307808, -0.03423304855823517, 0.015038256533443928, -0.019778575748205185, -0.02213706076145172, 0.017233282327651978, 0.032014671713113785, 0.015119986608624458, -0.030683647841215134, -0.007980316877365112, -0.009352208115160465, 0.0009953504195436835, 0.03341575339436531, -0.004889184609055519, -0.0328553207218647, 0.007886911742389202, 0.013391987420618534, 0.06963366270065308, 0.03859974816441536, 0.05235368013381958, 0.04455433785915375, -0.05011195316910744, 0.019334901124238968, -0.006579237058758736, -0.010583990253508091, -0.027647973969578743, 0.03157099708914757, 0.011039340868592262, -0.001930863130837679, 0.01230615098029375, 0.020175548270344734, 0.05557616427540779, 0.08196316659450531, 0.0032721050083637238, -0.024191977456212044, -0.008564100600779057, -0.016567768529057503, -0.014979878440499306, -0.06314199417829514, 0.006760209798812866, 0.014956526458263397, 0.003499780548736453, 0.009848423302173615, 0.03768904507160187, 0.01137793529778719, 0.02634030021727085, -0.024892518296837807, 0.008966910652816296, -0.006491669919341803, 0.0018681064248085022, 0.015622039325535297, 0.0011544313747435808, 0.03635802119970322, -0.00021089169604238123, -0.060666754841804504, 0.04964492842555046, 0.017887119203805923, -0.023935113102197647, 0.0036252939607948065, -0.005449616815894842, -0.027577919885516167, -0.004772427957504988, 0.03902007266879082, -0.02102787233889103, -0.031197376549243927, -0.05277400463819504, 0.018996307626366615, 0.058331623673439026, 0.01585555262863636, -0.00783437117934227, -0.033158887177705765, 0.008972748182713985, -0.019031334668397903, -0.014652960002422333, -0.04200904443860054, 0.002216916996985674, -0.03248170018196106, 0.015797175467014313, 0.036568183451890945, -0.011844961903989315, -0.00520150875672698, -0.009854260832071304, 0.02538289502263069, 0.02519608475267887, 0.009509828872978687, -0.03871650621294975, -0.029842998832464218, -0.09891623258590698, 0.058331623673439026, -0.0280682984739542, -0.06430955976247787, -0.0214131698012352, -0.049224603921175, 0.021062899380922318, -0.041542015969753265, 0.04527822881937027, 0.06407605111598969, 0.033719319850206375, 0.02732105553150177, -0.0025847002398222685, 0.05744427070021629, -0.024869166314601898, 0.019953710958361626, 0.011039340868592262, -0.028371866792440414, -0.0381794236600399, -0.003453077981248498, 0.005420427303761244, 0.05067238584160805, 0.03806266933679581, -0.04950482025742531, -0.03453661873936653, -0.03376602381467819, -0.0313841886818409, 0.012492961250245571, -0.03241164609789848, 0.021156305447220802, -0.006036318838596344, -0.03918353095650673, -0.011313719674944878, 0.013532095588743687, 0.028208406642079353, -0.01889122650027275, -0.028955649584531784, -0.0401642881333828, -0.04319996014237404, -0.010951774194836617, 0.0071279932744801044, -0.010064423084259033, -0.03607780486345291, 0.009054478257894516, -0.01260971836745739, -0.016731228679418564, 0.026270246133208275, -0.034466564655303955, 0.012539664283394814, -0.030099865049123764, 0.001555782393552363, -0.05029876530170441, 0.03955715149641037, -0.03292537480592728, -0.03880991041660309, 0.0012894312385469675, -0.008657505735754967, 0.0004863644135184586, -0.019988738000392914, -0.012411232106387615, 0.04032774642109871, 0.005630589555948973, -0.022790897637605667, -0.031174026429653168, 0.02346808649599552, 0.011693178676068783, -0.006538372486829758, -0.0022110790014266968, 0.0208177100867033, 0.004982590209692717, -0.02193857543170452, -0.030847106128931046, 0.0179571732878685, 1.7331065464532003e-05, 0.0070871287025511265, -0.094712994992733, -0.004787022713571787, 0.0214131698012352, -0.017326686531305313, -0.040771421045064926, -0.016696201637387276, -0.023958465084433556, 0.010864206589758396, -0.026293598115444183, 0.013742257840931416, 0.008056208491325378, -0.00080562086077407, -0.022265493869781494, 0.025826571509242058, -0.04074807092547417, 0.006585075054317713, -0.013929068110883236, 0.01452452689409256, 0.002969997236505151, 0.08285051584243774, -0.0026314030401408672, 0.0025379976723343134, -0.017700308933854103, -0.00458561722189188, -0.00152659323066473, 0.006135561969131231, 0.014956526458263397, 0.0010041071800515056, 0.0187511183321476, 0.03939369320869446, 0.019825279712677002, -0.019545063376426697, -0.02599002979695797, 0.017840415239334106, 0.004299563821405172, -0.03227153792977333, 0.021086251363158226, -0.03612450882792473, 0.03423304855823517, -0.009807558730244637, -0.007881074212491512, 0.011518043465912342, 0.026410354301333427, 0.005709400400519371, 0.011512205936014652, -0.01852928102016449, 0.0022388086654245853, 0.04875757545232773, 0.006976210046559572, 0.05113941431045532, -0.04394720122218132, -0.01452452689409256, -0.006409940309822559, 0.019778575748205185, 0.01003523450344801, 0.001990700839087367, -0.005256968084722757, -0.03229488804936409, 0.02329295128583908, -0.0026241056621074677, -0.022627439349889755, -0.022954357787966728, 0.042149148881435394, -0.018634362146258354, 0.020911116153001785, 0.003998915199190378, 0.006678480189293623, -0.011255340650677681, 0.06533702462911606, -0.060666754841804504, 0.031174026429653168, -0.007939452305436134, 0.014150906354188919, 0.01640430837869644, -0.01722160540521145, -0.033112186938524246, 0.00858745165169239, -0.030123215168714523, -0.018202362582087517, 0.018097281455993652, -0.033369049429893494, 0.017455119639635086, 0.019790252670645714, 0.014197608456015587, -0.01221274584531784, 0.03803931549191475, -0.002825510920956731, -0.03110397234559059, 0.0008180262520909309, -0.04539498686790466, -0.008575775660574436, -0.005239454563707113, 0.0036895100492984056, -0.005248211324214935, 0.009982693940401077, -0.00917123444378376, -0.0076884254813194275, -0.03059024177491665, 0.026316948235034943, 0.001833079382777214, -0.04560514912009239, 0.046515848487615585, -0.006380750797688961, -0.00429080706089735, 0.01891457661986351, 0.005011779256165028, -0.0026314030401408672, -0.023619869723916054, 0.003654483240097761, -0.0025803218595683575, -0.011769070290029049, 0.01155307050794363, 0.02944602631032467, 0.04565184935927391, -0.04046785458922386, 0.006398264318704605, -0.05482892319560051, 0.011091881431639194, 0.038973368704319, 0.040374450385570526, 0.0011690260143950582, 0.015388526022434235, -0.022382250055670738, 0.02998310700058937, -0.018634362146258354, -0.010017720982432365, -0.0393703430891037, 0.015785498544573784, -0.054315194487571716, -0.02848862297832966, 0.03547067195177078, -0.00019502009672578424, -0.019171442836523056, -0.04913119971752167, 0.03759564086794853, -0.021693386137485504, -0.025873273611068726, 0.05062568187713623, 0.02676062472164631, 0.018038902431726456, 0.006666804663836956, -0.014477824792265892, -0.008353938348591328, -0.01490982435643673, 0.02405186928808689, -0.01873944140970707, 0.006678480189293623, -0.01836582086980343, -0.0005367157282307744, -0.0473564974963665, 0.03075370192527771, -0.03575088456273079, 0.040607962757349014, -0.021810142323374748, -0.05361465364694595, 0.009007775224745274, 0.013030041940510273, 0.017466794699430466, -0.00925296451896429, 0.00510810362175107, -0.042919743806123734, 0.002622646279633045, -0.011220313608646393, -0.006993723101913929, 0.04418071731925011, 0.004822049755603075, 0.0026664300821721554, 0.009358045645058155, 0.017046470195055008, -0.03301877900958061, -0.028418568894267082, -0.01814398355782032, 0.024518895894289017, 0.023386357352137566, 0.01699976809322834, -0.04161207005381584, -0.07673247158527374, -0.05384816601872444, -0.0004834455030504614, -0.015411878004670143, 0.052026763558387756, 0.01443112175911665, -0.0022519438061863184, -0.00635156175121665, -0.009749180637300014, -0.032014671713113785, -0.005723994690924883, -0.028745487332344055, 0.009702477604150772, -0.02958613447844982, -0.04179888218641281, 0.031407538801431656, -0.03780580312013626, -0.042522773146629333, 0.03958050534129143, 0.036404725164175034, 0.003943455871194601, -0.002812375780194998, -0.013018366880714893, -0.005429184064269066, -0.025873273611068726, -0.01641598530113697, 0.026036733761429787, 0.018564308062195778, -0.012399556115269661, -0.013263555243611336, 0.02137814275920391, -0.00014913837367203087, 0.015423553064465523, 0.001180701656267047, 0.025336192920804024, -0.020187225192785263, 0.009410586208105087, 0.04625898599624634, -0.015762148424983025, 0.023246249184012413, -0.032575104385614395, 0.013123447075486183, -0.0037916721776127815, -0.007519128266721964, -0.015014905482530594, -0.05029876530170441, 0.016567768529057503, -0.028231758624315262, 0.0073906960897147655, -0.021144628524780273, -0.01836582086980343, 0.00946896430104971, -0.004515563603490591, 0.012843231670558453, 0.029702892526984215, 0.025336192920804024, -0.016696201637387276, 0.006561723537743092, 0.01088172011077404, 0.010484747588634491, -0.004282050300389528, 0.0024372951593250036, 0.014477824792265892, -0.0489443875849247, -0.027180947363376617, -0.005899129901081324, 0.022393925115466118, -0.004360860679298639, 0.027391109615564346, 0.03803931549191475, 0.020700953900814056, 0.013356960378587246, -0.009089505299925804, -0.015995660796761513, -0.02825510874390602, 3.2655374525347725e-05, -0.029539432376623154, 0.039066776633262634, 0.010671557858586311, -0.024869166314601898, 0.031641051173210144, 0.006129723973572254, -0.018412522971630096, 0.02293100580573082, 0.01327523123472929, 0.023199547082185745, 0.0086808567866683, 0.008219667710363865, -0.02217208780348301, -0.02561640925705433, -0.041775528341531754, -0.0020490791648626328, 0.007081290706992149, 0.009217937476933002, -0.02521943673491478, -0.00048745900858193636, 0.018400847911834717, -0.01288993377238512, -0.002920375671237707, -0.021086251363158226, 0.02003544196486473, 0.075564906001091, -0.0446944460272789, -0.041565366089344025, -0.00849988404661417, 0.0024533490650355816, -0.02388841100037098, 0.00564226508140564, 0.009906801395118237, 0.02505597658455372, 0.018575983121991158, 0.04464774206280708, -0.021249709650874138, -0.03593769669532776, 0.036778345704078674, 0.002651835326105356, -0.02040906250476837, 0.017046470195055008, -0.007869398221373558, 0.03934698924422264, -0.004941725172102451, 0.011570584028959274, 0.0009501072345301509, -0.059125568717718124, 0.019451657310128212, 0.008283884264528751, -0.003453077981248498, 0.017046470195055008, 0.019626792520284653, -0.0022607005666941404, -0.00906615424901247, 0.00768258748576045, 0.006882804445922375, -0.029329270124435425, 0.023199547082185745, -0.002867835108190775, 0.029889702796936035, 0.05590308457612991, -0.04551174119114876, -0.004080644808709621, 0.012060961686074734, -0.03787585720419884, 0.011868313886225224, 0.004022266715764999, 0.005972102750092745, 0.0018214037409052253, 0.022008627653121948, -0.0011347286636009812, 0.007291452959179878, -0.042662881314754486, 0.02692408300936222, 0.005537183955311775, -0.004366698674857616, 0.03801596537232399, 0.016672849655151367, -0.02713424526154995, -0.0030415107030421495, 0.0068185883574187756, -0.008745073340833187, 0.008517397567629814, 0.028231758624315262, -0.005423346534371376, -0.004559347406029701, 0.01213101577013731, 0.024962572380900383, -0.020969495177268982, 0.00477534718811512, 0.04660925641655922, -0.008459019474685192, -0.007122155744582415, -0.022779222577810287, -0.039253585040569305, -0.01569209434092045, -0.021728413179516792, 0.019393280148506165, -0.0032078889198601246, 0.00983090978115797, -0.005435022059828043, -0.008931883610785007, 0.04126179963350296, -0.012726474553346634, -0.01022204477339983, -0.004206158220767975, -0.03271521255373955, 0.04014093801379204, 0.03187456727027893, 0.016859659925103188, 0.010350476950407028, -0.005411670543253422, -0.02580321952700615, -0.011091881431639194, -0.03035672940313816, 0.01127869263291359, -0.0037566451355814934, -0.03208472579717636, 0.003925942350178957, 0.02158830501139164, -0.01779371313750744, 0.0033567536156624556, -0.02103954739868641, -0.007443236652761698, -0.02004711702466011, 0.0059224809519946575, 1.0318824934074655e-05, -0.04319996014237404, -0.0031086457893252373, 0.0184942539781332, 0.03304213285446167, -0.0036807532887905836, 0.03703520819544792, -0.00391426682472229, 0.005516751669347286, 0.01850592903792858, -0.02371327579021454, 0.025733165442943573, 0.011990907602012157, 0.008616641163825989, 0.025896625593304634, -0.009515667334198952, -0.004778265953063965, -0.04312990605831146, -0.006182264536619186, -0.00506431981921196, -0.017513496801257133, 0.01452452689409256, -0.04025769233703613, -0.013917393051087856, 0.009293829090893269, 0.062161240726709366, -0.010473071597516537, 0.04560514912009239, -0.01605403982102871, 0.013718906790018082, 0.000988782849162817, 0.0067718857899308205, -0.010583990253508091, 0.028955649584531784, 0.014267662540078163, 0.030473485589027405, -0.010531449690461159, -0.0032341592013835907, -0.04716968536376953, 0.00983090978115797, 0.005163562949746847, 0.009778369218111038, 0.030473485589027405, 0.0021964844781905413, 0.016579443588852882, 0.016532741487026215, -0.001006296370178461, -0.019229819998145103, -0.004311239346861839, -0.00444259075447917, 0.04434417560696602, 0.010105287656188011, 0.03836623579263687, 0.009007775224745274, 0.012819880619645119, 0.015563661232590675, 0.02925921604037285, -0.03568083047866821, 0.01278485357761383, 0.008441505953669548, 0.007735128048807383, -0.011798259802162647, -0.04941141605377197, 0.008931883610785007, 0.02064257487654686, -0.0010427827946841717, 0.06388923525810242, 0.017139876261353493, -0.014863121323287487, 0.029516080394387245, -0.017443442717194557, -0.0011704853968694806, 0.001393782556988299, 0.01319350115954876, -0.022428952157497406, 0.005852426867932081, -0.010624854825437069, 0.027367759495973587, -0.006993723101913929, 0.03822612762451172, 0.009223775006830692, 0.007273939438164234, -0.022113708779215813, 0.01260971836745739, -0.042312610894441605, 0.012247772887349129, -0.0028663757257163525, 0.0037099425680935383, -0.02827846072614193, 0.012644745409488678, 0.013823986984789371, 0.019580090418457985, 0.01195588055998087, 0.0011281610932201147, 0.017887119203805923, -0.015038256533443928, -0.0037741586565971375, 0.00810874905437231, -0.036404725164175034, -0.013975771144032478, 0.018260739743709564, 0.014139230363070965, -0.01683630980551243, 0.0026547543238848448, 0.014174257405102253, -0.022627439349889755, -0.01145966537296772, 0.015155012719333172, -0.010648206807672977, -0.0307303499430418, 0.036591533571481705, -0.011839124374091625, -0.030706999823451042, -0.001431728363968432, -0.013987446203827858, 0.006328210234642029, 0.011360421776771545, 0.021319763734936714, 0.007869398221373558, -0.007495776750147343, 0.020093819126486778, 0.017151551321148872, 0.015061607584357262, -0.025546355172991753, 0.018447550013661385, -0.0262001920491457, -0.00449221208691597, 0.020735980942845345, 0.027764732018113136, 0.03378937393426895, -0.03813272342085838, -0.02811500057578087, -0.006538372486829758, -0.014874797314405441, -0.015446905046701431, -0.007495776750147343, -0.03175780922174454, -0.008558262139558792, -0.009498153813183308, -0.009953504428267479, 0.010922584682703018, 0.009673288092017174, -0.00491253612563014, 0.013403663411736488, 0.01195588055998087, -0.0014273501001298428, -0.045908715575933456, -0.008482370525598526, -0.011395448818802834, -0.0043550231494009495, 0.019790252670645714, 0.011483016423881054, -0.04408730939030647, -0.03194461762905121, 0.02844191901385784, -0.055109139531850815, -0.007939452305436134, 0.003984320908784866, 0.03189791738986969, -0.008850154466927052, 0.007291452959179878, 0.008569938130676746, 0.01722160540521145, -0.04051455855369568, 0.011879988946020603, 0.0013507284456864, 0.037548936903476715, 0.03652147948741913, 0.012995014898478985, -0.030800404027104378, -0.00379459117539227, -0.036941803991794586, -0.001018701819702983, 0.020385710522532463, -0.03378937393426895, -0.0008450262248516083, -0.011535556986927986, 0.01910138875246048, -0.013415339402854443, -0.018832847476005554, 0.03645142540335655, 0.004646914545446634, -0.02542959898710251, 0.015026580542325974, 0.022055331617593765, 0.04983173683285713, -0.008575775660574436, 0.0313841886818409, 0.04184558242559433, -0.004932968411594629, 0.022580735385417938, -0.001841836143285036, -0.011237827129662037, -0.025149382650852203, 0.012504637241363525, 0.0024664842057973146, -0.014045825228095055, -0.010630693286657333, 0.054735518991947174, -0.021623332053422928, 0.008966910652816296, 0.007554155308753252, 0.00073337770299986, 0.015119986608624458, -0.03262180835008621, 0.02023392729461193, 0.024308733642101288, -0.027974892407655716, 0.004533077124506235, -0.02638700231909752, -0.017315011471509933, 0.010689071379601955, 0.02690073288977146, -0.005776535253971815, -0.007192209828644991, 0.00823134370148182, -0.024215329438447952, 0.007670911960303783, 0.008873505517840385, 0.0018739441875368357, 0.022300520911812782, 0.010899233631789684, -0.00415945565328002, -0.005452535580843687, -0.007752641569823027, -0.03974396362900734, -0.002232970902696252, -0.01737338863313198, -0.025079328566789627, 0.012166042812168598, -0.0008712965063750744, 0.011488853953778744, -0.010992638766765594, 0.0008121884311549366, 0.009001937694847584, 0.00784020870923996, 0.0017615659162402153, -0.0007851884583942592, -0.019019657745957375, -0.016719551756978035, -0.014547878876328468, 0.06986717879772186, 0.0065033454447984695, 0.006859453395009041, 0.019416630268096924, 0.03871650621294975, -0.0024051868822425604, 0.0100410720333457, 0.016135768964886665, 0.03904342278838158, 0.027040839195251465, -0.01031544990837574, 0.006602588575333357, 0.01890290156006813, 0.01891457661986351, -0.018575983121991158, -0.0040572937577962875, 0.0013222690904513001, 0.005531346425414085, 0.04046785458922386, 0.006911993492394686, 0.004676104057580233, -0.03610115498304367, 0.03096386417746544, -0.015505283139646053, -0.020198900252580643, -0.03880991041660309, -0.004276212304830551, 0.02904905378818512, -0.009988531470298767, 0.02729770541191101, 0.020105494186282158, 0.029119107872247696, 0.007326480001211166, 0.01288993377238512, 0.020572520792484283, -0.01641598530113697, -0.027624623849987984, 0.007898587733507156, 0.03934698924422264, -0.013742257840931416, -0.01568041741847992, -0.0007300939178094268, -0.004334590397775173, 0.018797820433974266, -0.011844961903989315, 0.04759000986814499, -0.030239973217248917, -0.008237181231379509, 0.013321933336555958, -0.01758355088531971, 0.00946896430104971, -0.027180947363376617, -0.01968517154455185, 0.008418154902756214, 0.008756748400628567, 0.025266138836741447, -0.017501821741461754, -0.009760855697095394, -0.0181556586176157, 0.023164520040154457, -0.004553509410470724, 0.001171944895759225, -0.028908945620059967, 0.022113708779215813, -0.002567186951637268, -0.016672849655151367, -0.019533388316631317, -0.03642807528376579, 0.007454912178218365, -0.029072405770421028, -0.006071345880627632, -0.01660279557108879, -0.0015587012749165297, 0.01587890461087227, 0.004153617657721043, -0.00577361648902297, -0.038272831588983536, 0.030333377420902252, -0.01720993034541607, -0.001688593067228794, -0.01702312007546425, -0.01624085009098053, 0.019556738436222076, 0.05524924769997597, 0.0074140471406280994, -0.0041361041367053986, -0.013707230798900127, 0.04074807092547417, -0.001252944814041257, 0.0005706481169909239, 0.0049738334491848946, -0.020385710522532463, 0.004176969174295664, -0.021821817383170128, 0.023152843117713928, -0.0158322025090456, -0.010175341740250587, -0.006363237276673317, 0.014571229927241802, 0.0038091856986284256, 0.0015878904378041625, -0.014664635062217712, -0.035237155854701996, 0.0032370781991630793, 0.025172734633088112, 0.016532741487026215, 0.03855304419994354, 0.03292537480592728, -0.011879988946020603, 0.023176195099949837, -0.02484581433236599, 0.0011909177992492914, 0.00041667529148980975, -0.011220313608646393, -0.031080620363354683, -0.013894041068851948, 6.9233043177519e-05, -0.0077468035742640495, -0.013345285318791866, 0.016672849655151367, 0.012679772451519966, -0.0012646204559132457, 0.04294309765100479, 0.02617684006690979, -0.01327523123472929, 0.013707230798900127, 0.0077001010067760944, 0.028978999704122543, 0.007635884918272495, -0.00890269409865141, 0.014968202449381351, 0.0033479968551546335, 0.013707230798900127, 0.030520187690854073, 0.025919975712895393, -0.010846693068742752, -0.021156305447220802, -0.004226590506732464, 0.010899233631789684, 0.011261179111897945, 0.03852969408035278, 0.023012734949588776, -0.01098096277564764, -0.023059438914060593, -0.023841707035899162, 0.007787668611854315, -0.01969684660434723, -0.032761916518211365, 0.024892518296837807, 0.020560845732688904, -0.008143776096403599, 0.03455996885895729, -0.021308088675141335, 0.012656420469284058, -0.005472967866808176, 0.0018097280990332365, -0.004311239346861839, -0.004244104027748108, 0.008733397349715233, -0.010046909563243389, 0.0050351303070783615, 0.009235450997948647, -0.013730581849813461, -0.006339886225759983, -0.002088484587147832, 0.012901609763503075, 0.0016039444599300623, -0.019731873646378517, -0.026620516553521156, 0.00831307377666235, 0.013975771144032478, -0.007092966698110104, 0.010426368564367294, 0.02521943673491478, -0.004352103918790817, -0.000844296533614397, 0.04161207005381584, 0.02312949299812317, -0.0058932919055223465, -0.008926046080887318, 0.02085273712873459, -0.008388965390622616, -0.03495693951845169, 0.010928422212600708, -0.01278485357761383, 0.0036515642423182726, 0.023771654814481735, -0.027017489075660706, 0.012294474989175797, 0.0016958903288468719, 0.05230697989463806, -0.02734440751373768, 0.04312990605831146, -0.046492498368024826, -0.003248753724619746, -0.01792214624583721, -0.007548317313194275, 0.027227651327848434, 0.003815023461356759, -0.012329502031207085, -0.020292306318879128, -0.007285614963620901, -0.008067884482443333, 0.012236096896231174, -0.005963345989584923, -0.004080644808709621, 0.008423992432653904, -0.00677772331982851, 0.011395448818802834, -0.01796884834766388, 0.007425723131746054, -0.016497714444994926, 0.03624126315116882, -0.03470007702708244, 0.02333965338766575, -0.03577423840761185, 0.027064191177487373, -0.010817503556609154, 0.008348100818693638, -0.014968202449381351, 0.013497068546712399, -0.0034005374182015657, 0.020876089110970497, -0.007198047358542681, -0.014571229927241802, 0.008067884482443333, 0.01088755764067173, 0.013532095588743687, 0.03806266933679581, 0.004416320472955704, 0.003654483240097761, -0.041728828102350235, 0.0080153439193964, -0.02371327579021454, -0.01660279557108879, -0.019218144938349724, -0.02711089327931404, 0.011815773323178291, 0.011348746716976166, 0.0011952961795032024, -0.021728413179516792, 0.0026781056076288223, -0.008114587515592575, 0.0074315606616437435, 0.01622917503118515, 0.0017017282079905272, -0.009188747964799404, -0.022825924679636955, -0.012294474989175797, -0.04392385110259056, -0.008336424827575684, 0.02538289502263069, 0.0033830238971859217, -0.009136207401752472, 0.01230615098029375, -0.03787585720419884, -0.024939220398664474, 0.0007122155511751771, -0.03675499185919762, -0.021845169365406036, -0.0026036733761429787, -0.016474362462759018, 0.03652147948741913, -0.006748534273356199, 0.011453826911747456, 0.042522773146629333, -0.012002583593130112, -0.039627205580472946, -0.02788148820400238, 0.025873273611068726, -0.03329899534583092, -0.01912473887205124, -0.00899026170372963, -0.015587013214826584, -0.012936636805534363, -0.0034122131764888763, -0.024985922500491142, -0.0017615659162402153, 0.0003546483349055052, 0.021810142323374748, 0.023561492562294006, 0.018786145374178886, 0.013030041940510273, -0.030146567150950432, -0.01012863963842392, 0.014664635062217712, 0.02405186928808689, 0.050719089806079865, 0.025126030668616295, -0.011348746716976166, -0.004950481932610273, 0.021494898945093155, 0.005674373358488083, -0.03136083483695984, 0.014022473245859146, -0.01906636171042919, -0.011915015988051891, -0.015038256533443928, -0.017700308933854103, -0.003035672940313816, 0.010741611942648888, 0.01589057967066765, -0.005785292014479637, -0.014711338095366955, 0.010671557858586311, 0.04418071731925011, 0.01641598530113697, -0.0055488599464297295, 0.003064861986786127, -0.0036807532887905836, -0.02944602631032467, 0.03757229074835777, -0.01720993034541607, -0.003286699764430523, -0.025149382650852203, 0.0023541059345006943, -0.022463979199528694, -0.009363883174955845, -0.021436521783471107, 0.02524278685450554, -0.016918038949370384, 0.010525612160563469, -0.028792189434170723, -0.038109369575977325, 0.0032837807666510344, -0.04053790867328644, -0.039230234920978546, -0.02692408300936222, -0.041191745549440384, 0.006935345008969307, 0.0158322025090456, -0.03761899098753929, 0.04446093365550041, -0.07252923399209976, -0.038272831588983536, 0.01988365687429905, 0.0019191874889656901, -0.021728413179516792, 0.023654896765947342, -0.022067006677389145, 0.001739674131385982, 0.008972748182713985, -0.0025219435337930918, 0.045161470770835876, -0.005221941042691469, 0.03993077576160431, 0.009136207401752472, 0.04011758416891098, -0.0004407563537824899, 0.002605132758617401, 0.006240643095225096, 0.015061607584357262, -0.017817065119743347, -0.013030041940510273, 0.0363113172352314, -0.01855263113975525, 0.019007982686161995, -0.010940098203718662, 0.039790667593479156, -0.03343910351395607, -0.025289490818977356, 0.031244078651070595, 0.01557533722370863, 0.005219022277742624, 0.027180947363376617, 0.00015898971469141543, -0.007980316877365112, -0.005268643610179424, 0.025639761239290237, 0.050719089806079865, 0.012352854013442993, -0.001198215177282691, -0.007437398657202721, -0.010105287656188011, 0.026083435863256454, 0.012317826971411705, 0.0004579050000756979, -0.007092966698110104, -0.016544416546821594, 0.0022825924679636955, -0.01367220375686884, -0.05594978481531143, 0.042522773146629333, -0.030823756009340286, 0.04086482897400856, -0.014115879312157631, -0.016847984865307808, 0.022265493869781494, -0.0022139979992061853], [0.04586531221866608, 0.035371292382478714, -0.019526703283190727, -0.0026235051918774843, -0.04579627513885498, 0.000718803028576076, -0.0014066820731386542, 0.04186101630330086, 0.03461185842752457, 0.009815131314098835, -0.006150278728455305, 0.022161714732646942, -0.002275430364534259, 0.033645302057266235, -0.05081315338611603, 0.02219623513519764, -0.011794266290962696, 0.01763962022960186, -0.03233354911208153, 0.06429889053106308, 0.046739816665649414, 0.034496791660785675, 0.02462412789463997, -0.014394758269190788, -0.0163393747061491, -0.05316049978137016, 0.010361694730818272, -0.06567968428134918, 0.027822962030768394, -0.022311300039291382, 0.04736117273569107, -0.00917651504278183, 0.0006202777149155736, -0.026235051453113556, 0.04579627513885498, 0.01621280238032341, -0.040480226278305054, 0.01951519586145878, -0.0030176062136888504, -0.026695314794778824, -0.048143621534109116, 0.011541121639311314, 0.008422832004725933, -0.06107703968882561, -0.04993865266442299, 0.06784292310476303, 0.04084843397140503, 0.015982668846845627, -0.009118981659412384, 0.06089293584227562, -0.006955740507692099, 0.0103099150583148, -0.026004919782280922, -0.06931576877832413, 0.038915324956178665, 0.027684884145855904, -0.02093050815165043, -0.007456277962774038, -0.009257061406970024, -0.005853983573615551, -0.026557236909866333, -0.027431737631559372, 0.018606174737215042, 0.05159560218453407, -0.0041337464936077595, 0.01181728020310402, 0.006173291709274054, -0.0019474923610687256, -0.043057702481746674, 0.02217322215437889, -0.00279322755523026, -0.00903268251568079, -0.05108931288123131, -0.05730287730693817, -0.010355941019952297, 0.033092986792325974, 0.015856096521019936, -0.010833465494215488, 0.03615374118089676, 0.018755760043859482, 0.011253456585109234, 0.01679963804781437, 0.009072955697774887, -0.0052786534652113914, -0.04393220320343971, 0.018686721101403236, -0.03440473973751068, 0.03686715289950371, -0.02660326287150383, -0.017029769718647003, -0.024232903495430946, 0.005595085211098194, -0.010781685821712017, 0.038616154342889786, 0.04809759557247162, 0.012967940419912338, -0.030791666358709335, 0.005183724220842123, -0.026856407523155212, 0.06673829257488251, 0.012553702108561993, -0.05039891600608826, 0.01749003492295742, 0.002590423682704568, 0.015453365631401539, -0.02959498018026352, -0.017259903252124786, -0.00583672383800149, -0.024440022185444832, -0.02145981229841709, 0.016109243035316467, -0.006742868572473526, -0.02093050815165043, 0.06296412646770477, 0.0032678749412298203, -0.008635704405605793, 0.00910747516900301, -0.015706511214375496, -0.029687032103538513, -0.023841679096221924, 0.018376043066382408, -0.03484198823571205, -0.0041682664304971695, -0.08036210387945175, 0.008198454044759274, -0.0072836787439882755, -0.06811907887458801, 0.009113228879868984, -0.042873598635196686, -0.024002771824598312, 0.02363456040620804, -0.021666930988430977, 0.04591134190559387, 0.009377880021929741, 0.01950369030237198, 0.015200220979750156, 0.0313439816236496, -0.031090836971998215, -0.0004904688685201108, -0.046279553323984146, 0.05716479569673538, -0.025498628616333008, -0.017444007098674774, -0.03214944526553154, -0.0185026153922081, 0.01694922335445881, 0.05108931288123131, 0.06172141060233116, 0.011966865509748459, 0.037764664739370346, -0.021966101601719856, 0.012542195618152618, 0.018514122813940048, -0.022127194330096245, -0.04321879521012306, 0.07332006841897964, -0.031044811010360718, 0.017720166593790054, 0.007577097043395042, 0.008428585715591908, -0.06287207454442978, -0.005362076219171286, 0.04025009274482727, -0.01393449492752552, 0.02079242840409279, -0.005770560819655657, -0.01201289240270853, 0.004107856657356024, -0.038201916962862015, 0.011144143529236317, -0.0156259648501873, 0.008348039351403713, 0.037626586854457855, -0.01302547287195921, 0.011437562294304371, -0.00732970517128706, -0.016972238197922707, -0.020849961787462234, 0.0383630096912384, 0.0056468648836016655, 0.039789829403162, -0.019031919538974762, -0.055277712643146515, 0.015441859140992165, -0.00018006033496931195, 0.024831246584653854, 0.0066162957809865475, -0.013669842854142189, -0.01620129495859146, 0.009642532095313072, -0.012473155744373798, -0.0384090356528759, -0.036199767142534256, 0.03926052525639534, 0.013301631435751915, -0.007841749116778374, -0.017881259322166443, -0.014107093214988708, 0.011155650019645691, -0.047591302543878555, 0.03511814773082733, -0.0511813648045063, -0.005828093737363815, 0.023001696914434433, -0.022414859384298325, -0.029387859627604485, 0.013946001417934895, 0.024417009204626083, 0.034082554280757904, -0.0019532456062734127, -0.007755449507385492, -0.027201605960726738, -0.09499850124120712, 0.028950609266757965, -0.01821495033800602, 0.05320652574300766, 0.012990953400731087, 0.0028378155548125505, -0.006639309227466583, 0.004927702248096466, -0.03155110031366348, -0.037051256746053696, -0.002058243378996849, -0.008739263750612736, -0.0220696609467268, 4.7599573008483276e-05, -0.03544033318758011, -0.02931882068514824, -0.05918996036052704, -0.06577173620462418, -0.03201136738061905, 0.061675384640693665, -0.007824488915503025, 0.0020726267248392105, 0.009573492221534252, 0.053988974541425705, -0.03212643042206764, -0.03203437849879265, -0.013370671309530735, -0.004205662757158279, 0.013681349344551563, 0.006857934407889843, -0.03198835253715515, -0.0018338646041229367, -0.01620129495859146, 0.01357778999954462, -0.005131944082677364, 0.013853948563337326, 0.053574737161397934, 0.0185026153922081, -0.013773402199149132, -0.04050323739647865, 0.04961646720767021, -0.025291509926319122, 0.010160328820347786, 0.01577555015683174, 0.06057075038552284, -0.0024566594511270523, 0.0035584166180342436, 0.0030089763458818197, -0.006547256372869015, -0.026073958724737167, -0.03000921756029129, -0.04736117273569107, -0.053114473819732666, -0.02148282527923584, 0.07037437707185745, -0.018698228523135185, -0.0011765500530600548, 0.07166311144828796, -0.05288434028625488, 0.009067201986908913, 0.02076941542327404, -0.006570269353687763, -0.022990189492702484, -0.006092745345085859, -0.0008780975476838648, -0.03212643042206764, 0.006581776309758425, 0.024693166837096214, -0.059834327548742294, -0.0014253802364692092, 0.008796797133982182, -0.04319578409194946, -0.019446156919002533, 0.005882750265300274, 0.048005543649196625, 0.0008522076532244682, -0.00867597758769989, 0.06775087118148804, 0.04241333529353142, 0.0048298961482942104, 0.017720166593790054, -0.014130107127130032, 0.004254566039890051, -0.014970088377594948, -0.05320652574300766, 0.007260665763169527, -0.012703288346529007, -0.02717859297990799, -0.0032793814316391945, 0.03799479827284813, 0.0012448704801499844, 0.08160481601953506, -0.03168918192386627, 0.00657602259889245, 0.019825873896479607, 0.02131022699177265, -0.01444078516215086, 0.00853214506059885, -0.05108931288123131, 0.027938028797507286, -0.043587006628513336, -0.01735195517539978, -0.023657573387026787, 0.008923369459807873, -0.0669223964214325, -0.011138390749692917, 0.020286139100790024, 0.011575641110539436, 0.05233202502131462, 0.004703323356807232, 0.017547568306326866, 0.0008514884975738823, -0.0031010292004793882, 0.025383563712239265, 0.011477835476398468, 0.017582086846232414, -0.04236730560660362, 0.005643988028168678, -0.06733663380146027, 0.0074735376983881, 0.025659721344709396, -0.031182890757918358, -0.060800883919000626, -0.03175821900367737, 0.03074564039707184, 0.014245172962546349, -0.049892622977495193, 0.009918690659105778, 0.014843516051769257, 0.026557236909866333, -0.002219335874542594, 0.00398991396650672, 0.008221467025578022, -0.0078359954059124, -0.035555399954319, 0.05159560218453407, -0.001193090807646513, 0.012312063947319984, 0.013554777018725872, -0.006829168181866407, -0.01343971025198698, -0.004570997320115566, -0.03785672038793564, -0.0011650434462353587, -0.026534223929047585, 0.006742868572473526, -0.012864380143582821, 0.028122134506702423, 0.008330779150128365, -0.02533753588795662, 0.048281699419021606, 0.05108931288123131, -0.00896364264190197, 0.01393449492752552, -0.03017031028866768, 0.053298577666282654, 0.005137697793543339, -0.015050634741783142, 0.023657573387026787, 0.014613384380936623, 0.040204066783189774, -0.06655418127775192, 0.006345890928059816, -0.010108549147844315, -0.012726301327347755, 0.02547561563551426, -0.0256136953830719, 0.0017677017021924257, 0.009533219039440155, -0.0011743925279006362, 0.02531452290713787, 0.05375884100794792, 0.09352565556764603, 0.049018122255802155, -0.04614147171378136, -0.004099227022379637, 0.01309451274573803, -0.0058683669194579124, -0.04181499034166336, 0.0036619759630411863, -0.0025630954187363386, 0.00768641009926796, 0.0033081478904932737, 0.031390007585287094, 0.035486359149217606, 0.05523168668150902, -0.001986327115446329, -0.027845975011587143, 0.01223151758313179, -0.05421910807490349, -0.055691950023174286, -0.04397823289036751, 0.016247320920228958, 0.017098810523748398, -0.008578171953558922, 0.0007860446930862963, 0.03583155572414398, -0.01879028044641018, 0.042045123875141144, 0.004153883084654808, 0.015591445378959179, -0.03017031028866768, -0.01579856313765049, 0.017973311245441437, -0.02446303516626358, 0.034358713775873184, -0.004369631875306368, 0.008054621517658234, 0.008647210896015167, -0.005094547756016254, -0.012461649253964424, 0.010465254075825214, -0.03088371828198433, 0.00700752018019557, 0.025935880839824677, 0.023116761818528175, -0.016960730776190758, -0.04041118547320366, -0.00804886780679226, -0.0017331818817183375, -0.01694922335445881, 0.009331854060292244, 0.005738917738199234, -0.03873122110962868, -0.0006245927070267498, 0.02517644502222538, -0.043448928743600845, -0.02274855226278305, 0.004893182311207056, -0.0455431304872036, 0.012841367162764072, 0.01834152266383171, -0.04609544575214386, -0.02402578480541706, -0.0412856861948967, 0.04370207339525223, -0.023726612329483032, -0.03712029755115509, 0.002189130987972021, -0.004087720066308975, -0.03339215740561485, -0.01245014276355505, -0.023979756981134415, -0.006742868572473526, -0.009602258913218975, -0.033806394785642624, 0.011000311002135277, -0.0313439816236496, 0.004478944465517998, 0.08275547623634338, 0.04710802808403969, 0.05481744930148125, 0.027063526213169098, 0.09292731434106827, -0.021989116445183754, -0.019894914701581, 0.003814438357949257, -0.06443697214126587, -0.04050323739647865, -0.055553872138261795, -0.011794266290962696, 0.06558763235807419, 0.07322800904512405, -0.038639169186353683, -0.0033340377267450094, -0.012208504602313042, -0.03930655121803284, -0.02377263829112053, -0.005218243692070246, 0.05223997309803963, -0.011121130548417568, -0.052424076944589615, 0.012818354181945324, 0.028927596285939217, 0.03212643042206764, 0.026649288833141327, -0.011736733838915825, -0.02288663014769554, -0.034657884389162064, 0.007968321442604065, 0.0327477864921093, -0.009659792296588421, -0.027776936069130898, -0.01707579754292965, 0.0031297956593334675, -0.004896059166640043, 0.008566664531826973, -0.012749314308166504, 0.0012556578731164336, -0.020815441384911537, 0.015407339669764042, 0.016604026779532433, 0.06747471541166306, -0.043471939861774445, -0.01933109015226364, 0.0017274285200983286, 0.00667958240956068, -0.022587459534406662, -0.05375884100794792, 0.010706893168389797, 0.02149433270096779, 0.018594667315483093, -0.004645790439099073, -0.0426664799451828, -0.019963953644037247, -0.014889542013406754, -0.0312749445438385, 0.0019834504928439856, 0.007226145826280117, 0.004916195757687092, -0.0017950298497453332, -0.033783383667469025, -0.0038921080995351076, -0.01991792768239975, -0.0016209925524890423, -0.05988035351037979, -0.016604026779532433, 0.008716250769793987, -0.012461649253964424, -0.044461507350206375, -0.0026335734874010086, -0.01946916989982128, -0.02416386269032955, -0.001408839481882751, 0.02120666764676571, 0.03854711353778839, -2.0254540231690044e-06, -0.0009003915474750102, -0.007554084062576294, -0.02618902549147606, 0.023381413891911507, -0.011598654091358185, 0.00982663780450821, 0.025291509926319122, 0.026511210948228836, -0.004605517257004976, -0.004746472928673029, 0.010424980893731117, 0.02402578480541706, 0.012335076928138733, 0.013899974524974823, 0.0036734824534505606, -0.0008500501862727106, 0.0076116169802844524, 0.044622600078582764, -0.010200602002441883, 0.00810064747929573, -0.00512043759226799, 0.014832009561359882, 0.010942778550088406, -0.008681731298565865, 0.0050916713662445545, -0.007928048260509968, 0.026994487270712852, -0.01747852750122547, -0.010856478475034237, -0.019388623535633087, 0.0001950728619704023, -0.018675213679671288, 0.05219394341111183, -0.002125844592228532, -0.003020482836291194, 0.028237199410796165, -0.008008594624698162, 0.030699612572789192, -0.05454128980636597, -0.019169997423887253, 0.0035727997310459614, 0.021402278915047646, 0.018111390992999077, 0.008284753188490868, -0.019135478883981705, -0.041055552661418915, 0.04142376407980919, 0.0033110245130956173, -0.021655423566699028, 0.016719091683626175, -0.015856096521019936, -0.003489376977086067, -0.026212038472294807, 0.006857934407889843, 0.0005221120663918555, -0.04314975440502167, 0.060938961803913116, -0.055415794253349304, 0.028904583305120468, -0.03173520788550377, -0.003969777375459671, 0.007841749116778374, -0.002971579786390066, -0.007663396652787924, 0.03376036882400513, -0.0019259174587205052, -0.02761584334075451, 0.001879891031421721, -0.05343665927648544, 0.006207811646163464, 0.022794578224420547, 0.0046860636211931705, -0.013681349344551563, 0.012196998111903667, 0.008302013389766216, -0.035624437034130096, -0.02174747735261917, -0.020965028554201126, -0.005034137982875109, -0.02432495541870594, -0.0071340929716825485, 0.014889542013406754, 0.0029744564089924097, -0.022426366806030273, 0.0039841607213020325, -0.019837381318211555, -0.0007781339227221906, 0.019434649497270584, -0.04015804082155228, 0.01833001710474491, -0.02348497323691845, 0.0016612656181678176, 0.005960419774055481, -0.008336532860994339, 0.0312519297003746, -0.017455514520406723, -0.020953521132469177, 0.0012153848074376583, 0.003903614589944482, -0.0019417389994487166, 0.04450753331184387, 0.0038086851127445698, -0.022426366806030273, -0.012657261453568935, -0.0526542104780674, 0.01819193735718727, 0.0061387717723846436, 0.021954596042633057, 0.04593435302376747, 0.02276005782186985, 0.011310989037156105, -0.0036734824534505606, -0.013106019236147404, 0.0073527186177670956, -0.03992790728807449, 0.008302013389766216, -0.02830624021589756, -0.0031758220866322517, 0.032517656683921814, -0.015844590961933136, -0.0027285029646009207, -0.013071499764919281, 0.016304854303598404, 0.0051722172647714615, -0.03327709063887596, -0.0170642901211977, 0.02361154556274414, -0.007928048260509968, -0.007024780381470919, 0.013370671309530735, 4.9981801566900685e-05, 0.009366373531520367, 0.012979446910321712, -0.043333861976861954, -0.027408724650740623, -0.019561221823096275, 0.004599764011800289, -0.024255916476249695, 0.012323570437729359, -0.021379265934228897, 0.04892607033252716, -0.001569212763570249, -0.012243024073541164, 0.0032649983186274767, 0.0326787494122982, 0.009728831239044666, -0.017041277140378952, 0.019388623535633087, -0.038316983729600906, -0.009619519114494324, -0.05352871119976044, 0.0025026858784258366, 0.046739816665649414, 0.0263271052390337, 0.011909333057701588, -0.0038345749489963055, 0.026373131200671196, -0.010499773547053337, -0.019952448084950447, -0.025291509926319122, 0.006357397418469191, 0.014889542013406754, 0.002757269423455, 0.03824794292449951, -0.09702366590499878, -0.03254066780209541, -0.0025285757146775723, -0.01129948254674673, 0.055277712643146515, 0.0011585709871724248, 0.014406264759600163, -0.040894463658332825, 0.0012937735300511122, -0.012127958238124847, -0.02816816046833992, -0.0383860245347023, 0.004332235548645258, -0.0020510517060756683, -0.002609121846035123, 0.03311599791049957, 0.015602951869368553, -0.04522094503045082, 0.03086070530116558, 0.024555087089538574, 0.029779084026813507, 0.050168782472610474, -0.02830624021589756, 0.01329012494534254, -0.011742486618459225, -0.008394066244363785, 0.027638856321573257, 0.007157106418162584, 0.003155685495585203, -0.01052854023873806, 0.05191778764128685, 0.0022222124971449375, 0.011052090674638748, -0.027684884145855904, 0.007749696262180805, -0.018594667315483093, -0.023139776661992073, -0.0024983708281069994, -0.02060832269489765, 0.003906491212546825, -0.004631407093256712, -0.01765112765133381, 0.009159254841506481, -0.02648819610476494, 0.012323570437729359, -0.0483737513422966, 0.0014541468117386103, 0.0440932959318161, 0.007093819789588451, -0.015533911995589733, -0.026212038472294807, -0.01679963804781437, 0.0005623851320706308, 0.0341515950858593, 0.016753612086176872, 0.017098810523748398, -0.0045019579119980335, 0.02674134261906147, -0.004473191220313311, -0.0045393542386591434, 0.027247631922364235, -0.004562367685139179, -0.011017571203410625, -0.02218472771346569, 0.003155685495585203, -0.022817591205239296, 0.005327556747943163, 0.004257442429661751, 0.004533600993454456, 0.03072262555360794, -0.0044674379751086235, -0.010614840313792229, 0.01609773561358452, -0.01890534721314907, -0.06637007743120193, -0.011794266290962696, -0.0043955217115581036, 0.023427441716194153, 0.01776619255542755, -0.01266876794397831, 0.027961041778326035, 0.005773437209427357, -0.011782759800553322, 0.0007033410365693271, 0.01822645775973797, -0.005485772155225277, 0.017973311245441437, -0.011989878490567207, -0.03914545848965645, -0.019411636516451836, -0.026142999529838562, -0.03498006984591484, -0.046026404947042465, -0.025406576693058014, -0.02150583826005459, 0.03233354911208153, 0.0063516441732645035, -0.018237963318824768, 0.02973305806517601, -0.013911481015384197, -0.02648819610476494, 0.0370052307844162, 0.0003060036979150027, -0.03173520788550377, -0.028260214254260063, 0.00019453348068054765, -0.036222781985998154, -0.027822962030768394, 0.03999694809317589, 0.0069499872624874115, 0.04579627513885498, 0.009976224042475224, -0.023554014042019844, -0.03753453493118286, 0.05578400567173958, 0.0003088803496211767, 0.008112153969705105, 0.0027558309957385063, -0.029111701995134354, 0.030354414135217667, 0.0030176062136888504, 0.055415794253349304, 0.005920146591961384, -0.014693929813802242, 0.015154194086790085, -0.004366755485534668, 0.01563747227191925, 0.030814679339528084, 0.01152961514890194, 0.01879028044641018, 0.00700752018019557, -0.018951373174786568, -0.006938480772078037, 0.01795029826462269, 0.008209960535168648, 0.016431426629424095, 0.004415658302605152, 0.05136546865105629, -0.05794724449515343, 0.023496480658650398, 0.014256679452955723, -0.020872974768280983, 0.041469793766736984, 0.009406646713614464, 0.016730599105358124, -0.015856096521019936, 0.009026928804814816, 0.01266876794397831, 0.019963953644037247, 0.00015632796566933393, -0.018387548625469208, -0.018985891714692116, -0.006363150663673878, 0.019986966624855995, -0.030055243521928787, -0.011121130548417568, 0.0032678749412298203, 0.002645079977810383, -0.017397981137037277, -0.010689632967114449, 0.0370052307844162, 0.011627420783042908, 0.011748240329325199, 0.009113228879868984, 7.757966523058712e-05, 0.021367758512496948, 0.0017116069793701172, 0.01705278269946575, 0.013888468034565449, -0.022288287058472633, -0.034059539437294006, -0.04818964749574661, -0.016569506376981735, 0.008273246698081493, 0.008020101115107536, -0.006921221036463976, -0.011075103655457497, 0.00795681495219469, 0.005603714846074581, 0.032080404460430145, 0.0014656534185633063, -0.02204664796590805, 0.00023426722327712923, -0.014958581887185574, 0.029341833665966988, 0.007789969444274902, 0.013255605474114418, 0.031505074352025986, 0.00017754326108843088, 0.0019446156220510602, -0.022253766655921936, -0.0025803553871810436, 0.018594667315483093, -0.004102103412151337, -0.010413474403321743, 0.0003110378165729344, 0.01251918263733387, -0.03608470410108566, 0.018951373174786568, 0.008768030442297459, -0.02307073585689068, -0.026119986549019814, 0.007312445435672998, -0.020424216985702515, -0.0037080023903399706, -0.004852909129112959, 0.047315146774053574, 0.05191778764128685, -0.017455514520406723, 0.009084462188184261, -0.04151581972837448, 0.023381413891911507, 0.004637160338461399, -0.03580854460597038, 0.011920839548110962, 0.005744670983403921, 0.037028245627880096, 0.029111701995134354, 0.01338217779994011, -0.03233354911208153, -0.022564446553587914, -0.04782143607735634, -0.019699301570653915, -0.013129032216966152, 0.018134403973817825, -0.032241497188806534, -0.03787973150610924, 0.008008594624698162, 0.06655418127775192, -0.0033915708772838116, 0.03884628787636757, -0.019388623535633087, 0.01606321521103382, 0.010114302858710289, 0.007531070616096258, -0.0013577790232375264, 0.004697570111602545, 0.03086070530116558, 0.007916541770100594, -0.019894914701581, -0.006127265281975269, -0.03672907128930092, 0.028674451634287834, 0.019169997423887253, 0.0009169323020614684, -0.0026925448328256607, -0.0023890582378953695, -0.004084843676537275, -0.027822962030768394, 0.002261047251522541, -0.009481439366936684, -0.026511210948228836, -0.010056769475340843, 0.06370054930448532, -0.015683498233556747, -0.00028478840249590576, 0.025429589673876762, -0.002518507419154048, -0.0047579798847436905, 0.034082554280757904, -0.06162935867905617, 0.04586531221866608, 0.0455431304872036, 0.007565590552985668, 0.01329012494534254, -0.017248395830392838, 0.03813287615776062, -0.0035123901907354593, 0.00413087010383606, 0.024578101933002472, 0.028996635228395462, -0.00377128878608346, 0.02674134261906147, -0.02334689535200596, -0.009958963841199875, 0.020700376480817795, 0.008865836076438427, -0.00953897275030613, 0.040894463658332825, 0.02159789204597473, 0.0006817661342211068, 0.015591445378959179, 0.05633632093667984, 0.01623581536114216, -0.009843898005783558, -0.019561221823096275, -0.023726612329483032, -0.0011010379530489445, 0.011086611077189445, 0.009124735370278358, -0.0170642901211977, -0.04563518241047859, 0.003293764777481556, 0.016408413648605347, 0.018456589430570602, 0.013635322451591492, 0.017984818667173386, 0.0071686129085719585, -0.02218472771346569, -0.0029384982772171497, 0.00016028336540330201, -0.018709734082221985, 0.021943088620901108, 0.022668005898594856, 0.006196305155754089, -0.03366831690073013, -0.00975759793072939, 0.01935410313308239, 0.002798980800434947, 0.00526427011936903, 0.006271097809076309, -0.023254841566085815, -0.039628736674785614, 0.013186565600335598, -0.04294263571500778, -0.017697153612971306, -0.005203860346227884, -0.025728760287165642, -0.0038921080995351076, 0.05233202502131462, 0.026810381561517715, 0.026810381561517715, -0.008002841845154762, 0.03099878504872322, 0.030239349231123924, 0.03502609580755234, -0.0001256736577488482, -0.013416697271168232, -0.004179772920906544, 0.018514122813940048, 0.036360859870910645, 0.022794578224420547, 0.021367758512496948, 0.00518947746604681, -0.04278154298663139, -0.04499081149697304, 0.028950609266757965, 0.0015965410275384784, -0.01045374758541584, -0.02108009345829487, 0.025659721344709396, -0.012634248472750187, 0.011569888330996037, 0.008647210896015167, 0.004349495284259319, 0.012576715089380741, 0.016730599105358124, -0.02547561563551426, 0.0398358553647995, -0.03014729544520378, -0.00750805763527751, -0.0028076109010726213, -0.01821495033800602, 0.01663854531943798, 0.008302013389766216, -0.005638234782963991, -0.032632723450660706, 0.006731362082064152, -0.050168782472610474, -0.006955740507692099, 0.002965826541185379, 0.021367758512496948, -0.005431116092950106, -0.02145981229841709, 0.022023634985089302, 0.01822645775973797, -0.0017677017021924257, -0.0213332399725914, -0.003282258054241538, 0.04077939689159393, 0.02957196533679962, 0.02259896509349346, 0.008071880787611008, -0.014452291652560234, -0.013301631435751915, -0.028973622247576714, 0.011017571203410625, -0.017328942194581032, -0.0016037325840443373, -0.009866910986602306, -0.013324644416570663, -0.015522405505180359, 0.006000692956149578, 0.00715135270729661, 0.0024796726647764444, 0.011414548382163048, 6.21176659478806e-05, 0.010148822329938412, 0.024831246584653854, 0.0013433957938104868, 0.04100952669978142, -0.014889542013406754, -0.01663854531943798, 0.03617675602436066, -0.023680586367845535, 0.005062904674559832, -0.014061067253351212, 0.03256368264555931, 0.01864069513976574, -0.03617675602436066, -0.01487803552299738, 0.01472845021635294, -0.027224618941545486, -0.036199767142534256, 0.013992027379572392, 0.049432359635829926, -0.02075790986418724, 0.01934259757399559, 0.029664019122719765, 0.01795029826462269, -0.011955359019339085, 0.014337225817143917, 0.013543270528316498, -0.026787368580698967, -0.013255605474114418, 0.03873122110962868, 0.00975759793072939, -0.01719086244702339, 0.002429331187158823, -0.0010255258530378342, -0.0053908429108560085, -0.0071340929716825485, -0.010074029676616192, -0.012220011092722416, 0.0026565867010504007, -0.017559073865413666, -0.011023323982954025, -0.019848886877298355, -0.016557998955249786, 0.005649741273373365, -0.02119516022503376, 0.002965826541185379, 0.010499773547053337, 0.019296571612358093, 0.008773784153163433, -0.01478598266839981, -0.0049420855939388275, 0.030676599591970444, 0.027822962030768394, -0.024255916476249695, -0.0051003010012209415, -0.040917474776506424, -0.003705125767737627, 0.005413855891674757, 0.05431115999817848, 0.0019776972476392984, -0.012104945257306099, 0.019584236666560173, 0.038639169186353683, -0.0012563770869746804, 0.014636397361755371, 0.002166117774322629, 0.0063861641101539135, 0.029364846646785736, -0.023933731019496918, 0.006380410399287939, 0.01479749009013176, 0.01935410313308239, -0.01734044775366783, 0.01992943324148655, 0.010350188240408897, 0.0053937193006277084, 0.024992339313030243, 0.00707656005397439, 0.013186565600335598, 0.004967975430190563, 0.0170642901211977, -0.005373583175241947, -0.021724464371800423, -0.030469480901956558, -0.007784216199070215, 2.424926424282603e-05, -0.018249470740556717, 0.04066433012485504, 0.013957507908344269, -0.013969014398753643, -0.01578705757856369, -0.008837070316076279, 0.050444941967725754, -0.0005832408787682652, -0.04278154298663139, 0.01692621037364006, 0.03242560476064682, -0.009072955697774887, 0.021390771493315697, 0.004188403021544218, 0.014544344507157803, -0.01238110288977623, -0.007789969444274902, 0.048603884875774384, -0.0035555399954319, -0.03661400452256203, 0.02519945800304413, -0.01074141263961792, 0.023243336006999016, 0.03168918192386627, -0.0036418393719941378, -0.003966900985687971, -0.0019546840339899063, -0.01132249552756548, -0.025130417197942734, -0.028996635228395462, 0.006357397418469191, -0.030699612572789192, -0.017605099827051163, 0.010983050800859928, -0.00519235385581851, 0.005439745727926493, 0.044024258852005005, -0.01679963804781437, 0.011782759800553322, -0.007260665763169527, 0.02690243534743786, 0.006219318136572838, 0.011126883327960968, -0.0020625584293156862, 0.025222470983862877, 0.007174366153776646, 0.01904342509806156, 0.01537282019853592, -0.02388770505785942, 0.0234504546970129, 0.014486811123788357, 0.004783869720995426, -0.022679511457681656, -0.012335076928138733, 0.002673846436664462, 0.046279553323984146, 0.02132173255085945, -0.03325407952070236, 0.01691470481455326, 0.010827711783349514, 0.019676288589835167, -0.021011054515838623, -0.0039496407844126225, -0.021805010735988617, -0.0017001003725454211, -0.011777007021009922, 0.04423137754201889, -0.014268185943365097, 0.01694922335445881, -0.01907794550061226, 0.029664019122719765, -0.00810064747929573, 0.016316361725330353, -0.014279692433774471, -0.018951373174786568, 0.005902886390686035, 0.03086070530116558, 0.013117525726556778, 0.006829168181866407, 0.035946622490882874, -0.02145981229841709, 0.022955670952796936, -0.016465947031974792, 0.02901965007185936, 0.005068657919764519, -0.0011182978050783277, -0.024370981380343437, -0.011069350875914097, 0.013083006255328655, -0.012104945257306099, -0.0017547567840665579, -0.0026335734874010086, 0.025084391236305237, -0.021413786336779594, -0.0073181986808776855, 0.018468094989657402, -0.012150971218943596, -0.012749314308166504, 0.00917651504278183, 0.050859179347753525, -0.015315286815166473, -0.0024135096464306116, 0.020378191024065018, -0.00982663780450821, 0.01836453564465046, 0.031965337693691254, 0.014521331526339054, -0.0014491126639768481, -0.00029359813197515905, -0.01165618747472763, -0.004007174167782068, 0.0049075656570494175, 0.03343818336725235, -0.022714031860232353, -0.010269641876220703, -0.0038345749489963055, -0.005310296546667814, 0.014164626598358154, -0.020401204004883766, -0.01877877302467823, 0.011454821564257145, -0.005143451038748026, -0.006265344563871622, 0.023933731019496918, -0.006892454344779253, 0.01678813248872757, 0.030354414135217667, 0.0014972965000197291, 0.012944926507771015, -0.03058454766869545, 0.015510899014770985, -0.011115376837551594, -0.03240258991718292, 0.042482372373342514, 0.005350569728761911, -0.010862232185900211, -0.006225071381777525, -0.007674903143197298, 0.04025009274482727, 0.00398991396650672, -0.015902122482657433, -0.01721387542784214, 0.004153883084654808, 0.006495476700365543, -0.0036533460952341557, 0.011017571203410625, -0.03714330866932869, 0.019296571612358093, 0.00917651504278183, 0.012150971218943596, -0.03260970860719681, -0.011472081765532494, 0.01734044775366783, 0.003906491212546825, -0.020366685464978218, -0.014049560762941837, 0.0014771600253880024, -0.025820814073085785, 0.010004989802837372, -0.027915015816688538, 0.013623815961182117, 0.00657602259889245, 0.013853948563337326, -0.03744248300790787, 0.022127194330096245, -0.02150583826005459, -0.01266876794397831, -0.038915324956178665, -0.024140849709510803, 0.00803160760551691, -0.024117836728692055, -0.02160939760506153, -0.016615532338619232, 0.007772709242999554, 0.007657643407583237, -0.002571725519374013, -0.019020412117242813, -0.04050323739647865, -0.0024250163696706295, 0.0036734824534505606, 0.007243405561894178, 0.007859009318053722, 0.03376036882400513, -0.02050476334989071, 0.006714101880788803, -0.012266037054359913, 0.06291809678077698, -0.0156719908118248, 0.01808837801218033, -0.0029384982772171497, -0.00286658201366663, -0.028513358905911446, 0.009746091440320015, -0.011851799674332142, 0.020378191024065018, 0.012196998111903667, -0.009487193077802658, 0.02501535229384899, 0.03689016401767731, 0.015856096521019936, 0.01478598266839981, -0.0018985893111675978, 0.027915015816688538, -0.04335687309503555, -0.0028723354917019606, -0.021793503314256668, -0.00953897275030613, -0.0017705783247947693, -0.032793816179037094, 0.01194385252892971, -0.009481439366936684, 0.0010952845914289355, -0.011420302093029022, 0.003276504809036851, -0.009400893934071064, -0.016017189249396324, -0.018111390992999077, 0.028421305119991302, -0.011195923201739788, -0.023151282221078873, -0.011138390749692917, -0.04328783601522446, -0.019940940663218498, 0.022529926151037216, 0.008900356478989124, 0.003115412313491106, 0.02404879778623581, -0.027707897126674652, 0.01833001710474491, -0.010678126476705074, -0.028973622247576714, -0.003270751563832164, -0.017697153612971306, -0.02819117344915867, 0.011431808583438396, 0.03921449929475784, -0.0013592173345386982, 0.03288586810231209, -0.053114473819732666, -0.0065012299455702305, -0.022794578224420547, 0.0027241879142820835, -0.012358089908957481, -0.020286139100790024, 0.014233666472136974, -0.03739645704627037, -0.011328249238431454, -0.008952136151492596, 0.0012822669232264161, -0.0032074651680886745, -0.0018410562770441175, 0.0020726267248392105, 0.029341833665966988, 0.0004027310642413795, -0.008762276731431484, -0.05274626240134239, 0.00533330999314785, 0.00667958240956068, -0.00590864010155201, 0.011454821564257145, 0.013140538707375526, -0.02775392308831215, -0.0009924443438649178, 0.010131563059985638, -0.00398703757673502, -0.012415623292326927, 0.0022222124971449375, -0.008480365388095379, -0.019883407279849052, -0.018456589430570602, -0.01364682987332344, -0.03679811209440231, -0.0005674192798323929, -0.012967940419912338, -0.0031930820550769567, 0.012473155744373798, 0.008129414170980453, 0.02858239784836769, 0.01564897783100605, 0.006357397418469191, -0.001336923218332231, 0.01287588756531477, -0.04356399551033974, 0.037212349474430084, -0.011138390749692917, -0.026142999529838562, -0.02388770505785942, 0.004663050174713135, 0.0030837692320346832, 0.023795651271939278, 0.029341833665966988, 0.030101269483566284, -0.005416732747107744, 0.007571343798190355, -0.012001385912299156, -0.01536131277680397, -0.013048485852777958, -0.022725537419319153, -0.014118599705398083, 0.0035181434359401464, -0.037327416241168976, 0.023565519601106644, 0.010419228114187717, -0.01543035265058279, 0.005925899837166071, -0.043471939861774445, -0.04961646720767021, -0.025728760287165642, 0.005851106718182564, -0.034082554280757904, 0.009015422314405441, 0.0013563407119363546, 0.008359545841813087, -0.0017288669478148222, -0.019526703283190727, 0.027938028797507286, -0.0018237963085994124, 0.03532526642084122, 0.016017189249396324, -0.001677087158896029, -0.01009704265743494, 0.012576715089380741, 0.01877877302467823, 0.02262197807431221, -0.03500308096408844, -0.012703288346529007, 0.02119516022503376, -2.2058065951569006e-05, 0.033806394785642624, -0.029410874471068382, 0.04855785891413689, -0.020458737388253212, -0.014935568906366825, 0.019733821973204613, -0.011592901311814785, 0.0051722172647714615, 0.021114613860845566, -0.013589296489953995, -0.015706511214375496, 0.01088524516671896, 0.0006094903219491243, 0.04225224256515503, -0.01876726746559143, -0.014498317614197731, 0.011155650019645691, -0.0020150935743004084, -0.00014976560487411916, -0.005848230328410864, -0.009274320676922798, 0.011414548382163048, -0.0024480295833200216, 0.0036130729131400585, 0.00048615390551276505, -0.07801476120948792, 0.013600802980363369, -0.02503836527466774, 0.023496480658650398, -0.001437606057152152, 0.0067543750628829, 0.015108168125152588, 0.026004919782280922], [0.015050079673528671, -0.02389245294034481, -0.014171857386827469, -0.017179466784000397, -0.01586814969778061, -0.030437011271715164, -0.016914797946810722, 0.021690882742404938, 0.02058408223092556, 0.012391352094709873, -0.030364828184247017, 0.005786641500890255, 0.018623119220137596, 0.02438570000231266, -0.017925353720784187, -0.0061896611005067825, -0.02024722844362259, 0.016830584034323692, -0.01200637873262167, 0.03621162101626396, 0.058708544820547104, 0.015447083860635757, 0.021666821092367172, -0.029691124334931374, 0.006057326216250658, -0.03873801603913307, -0.006063341163098812, -0.018081750720739365, 0.0323137603700161, 0.004168547224253416, 0.031062593683600426, -0.02062017284333706, 0.06717797368764877, -0.04169750213623047, 0.04915637522935867, 0.048290181905031204, 0.03678908199071884, 0.012523687444627285, 0.04622094705700874, -0.030677620321512222, -0.09085387736558914, 0.011308613233268261, -0.006099432706832886, 0.010689045302569866, 0.0035369491670280695, 0.07045025378465652, 0.056735552847385406, 0.016132818534970284, -0.04537881538271904, 0.023820269852876663, -0.027718132361769676, -0.005627238191664219, 0.03945983946323395, 0.006033265497535467, -0.005425727926194668, 0.012132697738707066, -0.017011040821671486, 0.017371954396367073, 0.02368793450295925, -0.00429787440225482, 0.01074919756501913, -0.014328253455460072, 0.00680922856554389, 0.08787032961845398, -0.024481944739818573, 0.03269873559474945, 0.00026429371791891754, 0.02273753099143505, -0.052548959851264954, 0.03361304849386215, -0.020560020580887794, -0.010225873440504074, -0.03914704918861389, -0.010135645046830177, 0.02839183621108532, 0.06640802323818207, 0.027212854474782944, 0.004195615649223328, 0.03404614329338074, 0.02983548864722252, 0.029161784797906876, 0.030196402221918106, -0.07848658412694931, 0.028175288811326027, 0.004598635248839855, -0.023880422115325928, -0.06236579641699791, 0.0008526573656126857, 0.0037174057215452194, 0.0042196763679385185, -0.0006488918443210423, -0.017660684883594513, -0.0097506707534194, 0.032049089670181274, 0.010286025702953339, 0.0026060938835144043, -0.005494903307408094, 0.008012272417545319, -0.0570242814719677, 0.023459356278181076, 0.020896872505545616, 0.007128035183995962, 0.01637342758476734, 0.001806069747544825, 0.04792926833033562, -0.011537191458046436, -0.050575967878103256, 0.009991279803216457, 0.048795461654663086, 0.004463293123990297, -0.04739993065595627, 0.0021624714136123657, 0.013353787362575531, 0.08873651921749115, 0.026707574725151062, -0.00753105478361249, 0.010857471264898777, 0.020271290093660355, 0.025239862501621246, -0.021714942529797554, -0.02136605978012085, 0.022472860291600227, 0.045451000332832336, -0.04468104988336563, -0.029787367209792137, 0.01545911468565464, -0.008168668486177921, -0.00615657726302743, -0.033083707094192505, -0.010376254096627235, 0.08661916106939316, -0.011675541289150715, 0.05601372569799423, -0.01693885773420334, -0.02632260136306286, 0.0018075734842568636, 0.0037474818527698517, 0.013065056875348091, 0.004264790564775467, -0.04985414072871208, 0.012571808882057667, 0.0052362484857439995, 0.06323198974132538, 0.03265061229467392, -0.0028662520926445723, 0.003494842676445842, 0.0038948548026382923, 0.05760174244642258, -0.021269816905260086, 0.005648291204124689, 0.0010534153552725911, -0.018659211695194244, -0.0033414545468986034, -0.0021504410542547703, -0.05514753237366676, -0.019236672669649124, -0.01161538902670145, 0.0060302577912807465, -0.010863486677408218, -0.0010661976411938667, -0.010340162552893162, -0.0379440039396286, -0.0006567867822013795, 0.021065298467874527, -0.006201691459864378, -0.02649102732539177, 0.01902012526988983, -0.010586787015199661, -0.05630245432257652, 0.027621889486908913, -0.022905956953763962, -0.007266385480761528, 0.0042196763679385185, -0.01902012526988983, -0.03650035336613655, -0.07737978547811508, -0.03108665533363819, 0.017335863783955574, 6.710729212500155e-05, 0.0059249913319945335, 0.004643749445676804, 0.016770431771874428, -0.0076212831772863865, 0.011007851921021938, -0.030148280784487724, 0.009955188259482384, 0.0037534970324486494, -0.03286715969443321, -0.017179466784000397, -0.038256797939538956, -0.05182713270187378, -0.01636139675974846, -0.010652953758835793, 0.06515686213970184, -0.024662399664521217, 0.02815122716128826, -0.02021113783121109, 0.0032331806141883135, 0.02706848829984665, 0.029955793172121048, 0.03332431614398956, -0.00039098926936276257, -0.012704144231975079, 0.01595236174762249, -0.01644561067223549, -0.0015549343079328537, 0.00787392258644104, -0.00680922856554389, 0.03743872791528702, 0.005624230485409498, 0.0011849983129650354, 0.0530782975256443, -0.01744413748383522, -0.03017234243452549, -0.024614278227090836, 0.033252134919166565, 0.042058415710926056, -0.01666215807199478, 0.034816090017557144, 0.01739601604640484, -0.008559657260775566, -0.031591933220624924, 0.029282089322805405, 0.015134292654693127, -0.012535717338323593, 0.007116004824638367, -0.0408313125371933, -0.022508952766656876, -0.0588529072701931, -0.03784776106476784, -0.061980824917554855, 0.023423265665769577, -0.06573431938886642, -0.01072513684630394, -0.01707119308412075, 0.039243292063474655, -0.020367532968521118, -0.0976390466094017, -0.01785317249596119, -0.025576714426279068, 0.004243737552314997, -0.03592289239168167, -0.018454693257808685, -0.004475323483347893, -0.012776326388120651, -0.05331890657544136, -0.01873139478266239, -0.006965624168515205, 0.02810310572385788, -0.017335863783955574, 0.04035009443759918, -0.013077087700366974, -0.015218505635857582, -0.06005595251917839, 0.001700803404673934, 0.03784776106476784, 0.0341423861682415, 0.001971488120034337, 0.023447325453162193, -0.049613531678915024, 0.059574734419584274, -0.01686667650938034, -0.010881531983613968, -0.01934494636952877, -0.03373335301876068, -0.0445607453584671, 0.04703901708126068, 0.016602005809545517, 0.0118800587952137, 0.0408313125371933, -0.02119763381779194, 0.01390718761831522, -0.03342055901885033, -0.016890736296772957, -0.025239862501621246, -0.0008910043979994953, -0.02041565626859665, -0.034527361392974854, -0.022749559953808784, 0.031062593683600426, -0.04249151051044464, -0.02793467976152897, 0.003151975106447935, -0.03327619656920433, -0.0165779460221529, -0.009479986503720284, 0.008950646966695786, 0.008535596542060375, 0.037053752690553665, 0.02815122716128826, 0.05004662647843361, 0.015759875997900963, 0.03344462066888809, -0.004240729846060276, 0.03257843106985092, 0.004767061676830053, 0.013835005462169647, -0.01393124833703041, -0.010135645046830177, -0.040855370461940765, 0.0016692234203219414, -0.03161599487066269, 0.008216789923608303, -0.04590815678238869, 0.026009809225797653, 0.026635391637682915, 0.027140671387314796, 0.014653075486421585, -0.012228941544890404, -0.022533012554049492, -0.022881895303726196, 0.05500316992402077, -0.05967097729444504, 0.003600108902901411, -0.005470842123031616, -0.011140186339616776, -0.017504289746284485, 0.009353666566312313, 0.006682909093797207, -0.01856296695768833, 0.023663874715566635, -0.0005958827096037567, -0.010689045302569866, -0.012656021863222122, 0.046269070357084274, 0.014809470623731613, 0.011729678139090538, 0.015086171217262745, -0.03257843106985092, 0.019236672669649124, 0.013413939625024796, -0.0061174784786999226, 0.02954675815999508, -0.028247471898794174, -0.027333157137036324, -0.004812175873667002, -0.0064062089659273624, 0.006568619981408119, -0.05500316992402077, 0.030894167721271515, 0.04290054738521576, 0.011248460970818996, -0.05250083655118942, 0.028415897861123085, 0.012559778988361359, -0.011188308708369732, 0.029811428859829903, 0.021053269505500793, 0.005864839069545269, 0.021149512380361557, 0.017660684883594513, -0.04648561775684357, 0.011146201752126217, -0.0570242814719677, -0.03409426659345627, -0.01793738454580307, 0.028945237398147583, -0.0013759814901277423, -0.0026857955381274223, 0.0361153781414032, -0.009967219084501266, -0.013822974637150764, 0.009064936079084873, 0.001030858256854117, -0.030027976259589195, 0.003404614282771945, -0.018791547045111656, -0.02136605978012085, -0.031062593683600426, -0.020271290093660355, 0.07997836172580719, 0.03570634499192238, 0.030557315796613693, -0.021354028955101967, 0.03568228334188461, -0.027766253799200058, -0.0060302577912807465, 0.033372439444065094, -0.03926735371351242, -0.02947457693517208, -0.01649373210966587, -0.0020421671215444803, 0.03765527531504631, 0.026057930663228035, 0.051682766526937485, 0.042010292410850525, -0.024036817252635956, 0.004640741739422083, 0.02145027369260788, -0.010298055596649647, 0.011043943464756012, 0.000589867471717298, -0.007007730659097433, -0.023856360465288162, 0.031808480620384216, 0.02194352075457573, 0.01892388053238392, 0.055243778973817825, -0.014556831680238247, -0.054618194699287415, -0.012126682326197624, -0.014232009649276733, -0.027501584962010384, -0.03058137744665146, -0.014135765843093395, -0.016192970797419548, 0.01909230649471283, -0.018466724082827568, 0.03349274396896362, -0.010442420840263367, 0.02827153168618679, 0.026057930663228035, 0.013173330575227737, -0.004345996305346489, 0.01157328300178051, -0.022881895303726196, 0.02165479026734829, 0.03260248899459839, 0.024614278227090836, 0.012547748163342476, 0.0034798046108335257, 0.0064122239127755165, 0.0028827940113842487, 0.0015804989961907268, -0.01289663091301918, -0.03484015166759491, 0.025143617764115334, 0.012367291375994682, -0.0017654669936746359, -0.06708172708749771, -0.00803633313626051, 0.016770431771874428, -0.044416382908821106, 0.04220278188586235, 0.01814190298318863, 0.00859574880450964, 0.02450600452721119, -0.004529460333287716, -0.012240972369909286, -0.02430148795247078, -0.008655901066958904, 0.009961203671991825, 0.03402208164334297, 0.0137628223747015, -0.04422389343380928, -0.02294204756617546, -0.020848751068115234, 0.029787367209792137, 0.04152907803654671, -0.014171857386827469, 0.0044061485677957535, 0.027501584962010384, -0.008270926773548126, -0.016265153884887695, -0.024782704189419746, -0.0521639846265316, 0.04376673698425293, -0.035730402916669846, 0.02793467976152897, -0.03464766591787338, -0.01275226566940546, 0.03281904011964798, 0.01847875490784645, 0.0007842342602089047, 0.051730889827013016, 0.02690006233751774, 0.03334837779402733, -0.045523181557655334, 0.03989293798804283, -0.03921923041343689, 0.0002851590106729418, -0.03686126694083214, 0.008367170579731464, 0.05206774175167084, 0.04658186063170433, 0.03686126694083214, 0.032097212970256805, -0.018587028607726097, -0.029041480273008347, -0.035441674292087555, 0.030076097697019577, 0.013149269856512547, -0.025071434676647186, -0.04720744490623474, 0.04042227566242218, 0.029161784797906876, 0.06708172708749771, -0.03508076071739197, -0.046605922281742096, -0.023952605202794075, -0.028704628348350525, -0.04193811118602753, -0.003425667528063059, -0.010953715071082115, -0.05062408745288849, 0.029643002897500992, -0.018093781545758247, -0.013389878906309605, 0.05331890657544136, -0.05447382852435112, -0.01103191263973713, -0.027910619974136353, 0.014713226817548275, 0.02682787925004959, 0.052837688475847244, -0.013642517849802971, -0.018286267295479774, -0.016385458409786224, 0.032963402569293976, -0.04715932160615921, -0.010959730483591557, -0.002735421061515808, 0.0029760298784822226, 0.004303889814764261, 0.013714700937271118, -0.010051432065665722, -0.04533069580793381, 0.030966350808739662, -0.007344583049416542, -0.0006308461306616664, -0.012018408626317978, 0.04239526763558388, -0.018911849707365036, -0.010556710883975029, -0.01134470384567976, 0.03736654296517372, 0.0020135948434472084, -0.07035400718450546, -0.03000391460955143, -0.024518035352230072, -0.026178235188126564, -0.04237120598554611, -0.043093033134937286, 0.012884600088000298, 0.014520740136504173, -0.009804807603359222, 0.004171554930508137, 0.0043640416115522385, 0.010057447478175163, -0.0008301003254018724, -0.00818069837987423, -0.028199350461363792, 0.01174170896410942, -0.009889021515846252, 0.0118800587952137, 0.0165779460221529, 0.005524979438632727, -0.04061476141214371, 0.018418602645397186, -0.0019233664497733116, 0.01636139675974846, -0.012234956957399845, 0.04559536650776863, -0.008661916479468346, 0.0024181182961910963, -0.004833228886127472, 0.03503263741731644, -0.003967037424445152, -0.014701196923851967, 0.02810310572385788, 0.004090349189937115, 0.0029173814691603184, -0.018069719895720482, -0.010610847733914852, -0.015904240310192108, 0.03758309409022331, -0.024734582751989365, 0.031591933220624924, 0.01188607420772314, -0.011206354014575481, -0.03796806558966637, 0.01975398138165474, 0.008487475104629993, 0.050816576927900314, -0.01843063347041607, -0.010574756190180779, 0.004195615649223328, -0.04369455575942993, -0.022123977541923523, 0.00702577643096447, 0.05067221075296402, -0.012800387106835842, 0.015964392572641373, -0.0003611011488828808, -0.002833168487995863, 0.01731180213391781, 0.0075491005554795265, -0.014232009649276733, -0.023278899490833282, 0.023796208202838898, -0.024193214252591133, 0.009913082234561443, 0.00890854001045227, 0.005212187767028809, -0.042299024760723114, 0.04179374501109123, 0.016806524246931076, 0.024686461314558983, -0.035441674292087555, -0.020740477368235588, 0.019525403156876564, -0.0003629809070844203, -0.004267798271030188, 0.005130982492119074, -0.019032154232263565, 0.011813891120254993, -0.027309097349643707, 0.008812297135591507, -0.009744655340909958, -0.003780565457418561, 0.03842522203922272, 0.014845562167465687, 0.05389636754989624, -0.033949900418519974, -0.03727030009031296, -0.022725500166416168, -0.026130113750696182, -0.04037415236234665, -0.0019699844997376204, -0.011807875707745552, -0.010664984583854675, 0.004475323483347893, 0.01951337233185768, 0.012944752350449562, 0.0048211985267698765, 0.026876000687479973, -0.012643991969525814, -0.04641343653202057, -0.0003556498559191823, -0.005082860589027405, -0.010075492784380913, 0.03012421913444996, 0.054040733724832535, 0.036524415016174316, -0.012908661738038063, -0.02078859880566597, 0.00847544427961111, 0.015495206229388714, 0.0025309035554528236, 0.016842614859342575, 0.039532024413347244, 0.008096485398709774, 0.05630245432257652, -0.020884841680526733, 0.025408288463950157, -0.0032692719250917435, 0.018707333132624626, -0.01287257019430399, 0.01892388053238392, -0.004550513811409473, 0.05153840035200119, -0.018538907170295715, 0.01876748539507389, -0.012379322201013565, 0.014520740136504173, 0.03996511921286583, 0.030244523659348488, 0.029402393847703934, 0.0004597883380483836, 0.0039880904369056225, -0.01275226566940546, -0.009654427878558636, 0.008535596542060375, -0.015362870879471302, -0.017179466784000397, 0.028295593336224556, 0.06097026541829109, -0.009287498891353607, -0.015386931598186493, -0.04689465090632439, 0.0014128247275948524, 0.023591691628098488, -0.017263680696487427, -0.018899820744991302, -0.014616983942687511, 0.029402393847703934, -0.012090591713786125, 0.012740234844386578, -0.03902674466371536, -0.004000121261924505, -0.03373335301876068, 0.003852748079225421, 0.005714458879083395, 0.0016526816179975867, -0.016974950209259987, -0.014328253455460072, 0.004015159327536821, 0.0037354514934122562, 0.03431081399321556, 0.00178802409209311, -0.0028015885036438704, 0.014424496330320835, 0.038954563438892365, -0.023459356278181076, 0.02280971221625805, -0.012367291375994682, 0.007627298589795828, -0.014857592061161995, -0.007807754911482334, -0.001744413748383522, -0.026346661150455475, 0.009046890772879124, -0.008397246710956097, -0.01203043945133686, -0.012301123701035976, 0.02637072280049324, 0.0340702049434185, -0.004727962426841259, 0.03536949306726456, 0.006899456959217787, -0.02723691426217556, 0.005182111635804176, 0.019032154232263565, -0.020547989755868912, -0.035561978816986084, 0.04376673698425293, -0.013377848081290722, 0.01649373210966587, 0.0308701079338789, 0.027477523311972618, -0.002478270558640361, 0.03200097009539604, 0.010027371346950531, -0.00247375899925828, 0.007940090261399746, -0.02757376618683338, 0.010917623527348042, 0.004697886761277914, -0.0032662642188370228, 0.00731450691819191, 0.028704628348350525, -0.016806524246931076, -0.019188551232218742, -0.010219858027994633, -0.017949415370821953, -0.014099675230681896, -0.03289122134447098, 0.011296582408249378, -0.011946226470172405, -0.01983819343149662, 0.03789588436484337, -0.03592289239168167, 0.022208191454410553, -0.023086413741111755, 0.026851940900087357, 0.03628380596637726, -0.0035008578561246395, -0.04590815678238869, -0.03760715201497078, -0.020740477368235588, 0.010532649233937263, 0.008355139754712582, 0.007976180873811245, -0.02046377770602703, 0.023627782240509987, -0.008481459692120552, -0.001921862713061273, -0.01983819343149662, 0.013943279162049294, 0.00492947269231081, -0.000298505270620808, 0.0030406934674829245, -0.011230414733290672, -0.01147102378308773, 0.014809470623731613, -0.02157057821750641, -0.02839183621108532, -0.055243778973817825, -0.02149839513003826, -0.016806524246931076, -0.02236458659172058, 0.0144846485927701, 0.0024918047711253166, -0.025287983939051628, -0.0031459599267691374, -0.02487894892692566, -0.0072844307869672775, -0.06977654993534088, 0.0020827697589993477, -0.014580892398953438, 0.045234452933073044, -0.019393067806959152, -0.016589974984526634, -0.02078859880566597, 0.004755031317472458, -0.03284309804439545, -0.027164731174707413, 0.022581133991479874, 0.024241335690021515, 0.006616741418838501, -0.014965866692364216, -0.014665105380117893, 0.0063821482472121716, -0.030677620321512222, -0.0014406450791284442, 0.026226358488202095, -0.0038407177198678255, -0.017432106658816338, -0.014725257642567158, 0.0007447593961842358, 0.016541853547096252, 0.007218263577669859, -0.004117417614907026, 0.04662998393177986, 0.04720744490623474, 0.026274479925632477, -0.0625101625919342, -0.029691124334931374, -0.014027492143213749, -0.004093356896191835, -0.016854645684361458, -0.008481459692120552, 0.020547989755868912, 0.03864176943898201, 0.0041414787992835045, -0.007705496158450842, -0.018659211695194244, -0.016926828771829605, 0.022340524941682816, -0.03344462066888809, -0.0035549947060644627, -0.0097506707534194, 0.012932722456753254, -0.04318927600979805, 0.0768023207783699, -0.005374598782509565, -0.06188457831740379, 0.03666877746582031, -0.022905956953763962, -0.01105597335845232, -0.029161784797906876, 0.03876207396388054, 0.03375741094350815, -0.00919727049767971, 0.007122020237147808, 0.014532770961523056, 0.02471052296459675, -0.009943158365786076, 0.023567629978060722, 0.008264911361038685, 0.06534934788942337, -0.04812175780534744, -0.03046107292175293, -0.01876748539507389, -0.0030557315330952406, 0.02839183621108532, -0.0070859286934137344, -0.005161058623343706, 0.011525160633027554, 0.035971011966466904, 0.014520740136504173, -0.03236187994480133, 0.0011391321895644069, 0.008096485398709774, 0.02062017284333706, 0.011765769682824612, 0.007988211698830128, -5.5029860959621146e-05, -0.03346868231892586, -0.048458609730005264, -0.0465337373316288, -0.03356492519378662, 0.0027805352583527565, 0.007525039836764336, 0.04400734603404999, 0.005332492291927338, -0.01591627113521099, 0.04877140000462532, -0.00020056997891515493, -0.010737166740000248, 0.027453461661934853, 0.033781472593545914, -0.029209906235337257, -0.005530994385480881, -0.010905593633651733, 0.003173028351739049, 0.015050079673528671, 0.00026805323432199657, -0.03945983946323395, 0.0021098381839692593, -0.016914797946810722, 0.027020366862416267, 0.01735992357134819, 0.05004662647843361, -0.003488827496767044, -0.03298746421933174, 0.010207828134298325, 0.05678367242217064, 0.04694277420639992, -0.015687692910432816, 0.0080603938549757, -0.023940574377775192, 0.015531296841800213, 0.005711451172828674, 0.010051432065665722, -0.05572499334812164, -0.025023313239216805, 0.024903008714318275, -0.006929533090442419, 0.016421549022197723, -0.014761349186301231, -0.016385458409786224, -0.015820028260350227, -0.01938103698194027, 0.00905290525406599, 0.011837951838970184, -0.03274685516953468, -0.007591207046061754, -0.0350566990673542, 0.020740477368235588, 0.03772745653986931, -0.05096093937754631, -0.00973262544721365, -0.021065298467874527, -0.010755212977528572, 0.021438242867588997, -0.045282572507858276, -4.553709368337877e-05, 0.017913324758410454, 0.0011849983129650354, 0.0042617833241820335, 0.007976180873811245, -0.004144486505538225, 0.03917111083865166, -0.026851940900087357, 0.03758309409022331, -0.00193238933570683, 0.026057930663228035, 0.0053505380637943745, 0.0027263984084129333, -0.002807603683322668, 0.04487353935837746, 0.0028662520926445723, 0.015242566354572773, 0.0137628223747015, -0.007813770323991776, 0.015844088047742844, -0.029209906235337257, 0.007001715712249279, 0.002517369342967868, 0.03905080631375313, 0.030557315796613693, -7.265257590916008e-05, 0.003064754419028759, 0.01393124833703041, 0.00444223964586854, 0.012788357213139534, 0.0053956517949700356, 0.023339051753282547, -0.004114410374313593, -0.0015083163743838668, -0.012204880826175213, 0.02954675815999508, 0.022412708029150963, -0.014256070367991924, -0.010298055596649647, 0.004502391908317804, -0.018947942182421684, -0.017744898796081543, -0.0013692143838852644, 0.057313013821840286, 0.018358450382947922, 0.013678609393537045, -0.031760361045598984, 0.02396463416516781, 0.02148636430501938, -0.010231888853013515, 0.0152064748108387, 0.0435742512345314, 0.0057325041852891445, 0.016060637310147285, 0.0006492677493952215, 0.03373335301876068, -0.0010353696998208761, 0.01880357600748539, 0.01814190298318863, -0.013955309987068176, 0.009076965972781181, 0.046100642532110214, -0.013221452943980694, 0.032337822020053864, 0.03409426659345627, 0.003368522971868515, 0.02462630905210972, -0.017468197271227837, -0.01260790042579174, -0.01393124833703041, -0.016565915197134018, 0.003527926281094551, 0.025576714426279068, -0.008126561529934406, 0.03298746421933174, -0.016842614859342575, 0.00784986186772585, -0.017047133296728134, -0.006099432706832886, 0.029739245772361755, 0.014388405717909336, 0.037053752690553665, 0.013257544487714767, 0.0017579479608684778, -0.010358207859098911, -0.001161689287982881, 0.02289392612874508, 0.025985749438405037, 0.038713954389095306, -0.00787392258644104, -0.005714458879083395, -0.012523687444627285, 0.008860418573021889, 0.0144846485927701, 0.012944752350449562, 0.011049958877265453, 0.019032154232263565, -0.01951337233185768, -0.011477039195597172, -0.021137481555342674, -0.017179466784000397, -0.018875759094953537, 0.04152907803654671, -0.00357604818418622, 0.005681375041604042, -0.016686219722032547, 0.04790521040558815, 0.023002199828624725, -0.022039765492081642, 0.0160846970975399, -0.011170262470841408, 0.027453461661934853, 0.027140671387314796, 0.017636623233556747, -0.0313994474709034, 0.05153840035200119, 0.025263922289013863, -0.00013515446335077286, 0.026346661150455475, 0.0020060758106410503, -0.021847277879714966, -0.02347138710319996, 0.0020060758106410503, -0.04075912758708, -0.018322359770536423, -0.017744898796081543, 0.01954946294426918, -0.022821743041276932, -0.00594303710386157, 0.02815122716128826, 0.029787367209792137, 0.024157121777534485, -0.008878463879227638, -0.026707574725151062, 0.04537881538271904, -0.012331199832260609, 0.03185660392045975, 0.00243917154148221, 0.015266627073287964, 0.002341424347832799, -0.036596596240997314, 0.030316706746816635, 0.007735572289675474, -0.027333157137036324, -0.04220278188586235, -0.0130409961566329, 0.0072784158401191235, 0.02574514038860798, -0.019525403156876564, -0.006153569556772709, -0.01847875490784645, 0.01000331062823534, 0.04225090146064758, -0.018093781545758247, 0.026924123987555504, 0.024205243214964867, 0.03257843106985092, -0.009088996797800064, 0.019525403156876564, -0.0027594820130616426, -0.016926828771829605, -0.016180939972400665, 0.024903008714318275, -0.01190411951392889, -0.0018286267295479774, 0.004794130101799965, -0.004499384202063084, -0.03108665533363819, 0.00507383793592453, 0.0007413758430629969, -0.016253123059868813, -0.020800629630684853, 0.01560347992926836, -0.009828869253396988, -0.006225752178579569, -0.022749559953808784, 0.006706969812512398, 0.018081750720739365, 0.00040941088809631765, 0.00843333825469017, -0.007952120155096054, 0.029618941247463226, -0.0013007912784814835, 0.017143376171588898, -0.0027865504380315542, -0.00013336869596969336, -0.029330210760235786, 0.0635688379406929, -0.012102621607482433, 0.006273874081671238, 0.01289663091301918, -0.0029474576003849506, 0.0350566990673542, 0.001845168648287654, 0.009594275616109371, 0.021293876692652702, -0.023327020928263664, -0.01909230649471283, 0.02757376618683338, 0.01693885773420334, -0.0010007821256294847, 0.018262207508087158, -0.0005240759928710759, -0.06376133114099503, 0.006875396240502596, 0.043453946709632874, 0.02562483586370945, 0.013401909731328487, 0.007254354655742645, -0.05538814142346382, 0.08844778686761856, 0.00843333825469017, 0.010153690353035927, 0.03686126694083214, -0.0038046264089643955, 0.005759572610259056, -0.030942289158701897, -0.004890373442322016, -0.03291528299450874, -0.01345003116875887, -0.01088754739612341, 0.03609131649136543, 0.0037174057215452194, 0.019477281719446182, -0.024734582751989365, 0.002142922021448612, -0.016108758747577667, -0.03387771546840668, -0.0004962556413374841, 0.011110110208392143, 0.06679300218820572, -0.03638004884123802, 0.015110231935977936, 0.024734582751989365, 0.01088754739612341, 0.020235199481248856, 0.0052452716045081615, -0.012379322201013565, -0.008830342441797256, 0.06635989993810654, -0.023411234840750694, 0.026130113750696182, 0.03755903244018555, 0.027020366862416267, -0.011561252176761627, 0.008896510116755962, -0.006725015584379435, -0.005801679566502571, 0.038545526564121246, -0.019994590431451797, -0.004818190820515156, -0.019561493769288063, 0.008998768404126167, -0.05428134277462959, -0.0019263740396127105, -0.025239862501621246, -0.0036662763450294733, 0.0232668686658144, -0.012884600088000298, -0.003051220206543803, -0.0023760118056088686, -0.02492707036435604, -0.0323137603700161, 0.006225752178579569, -0.009510062634944916, -0.027212854474782944, -0.009143133647739887, -0.019621646031737328, 0.034743908792734146, 0.011404856108129025, 0.006090410053730011, 0.019320884719491005, -0.0342145711183548, 0.0005383621319197118, 0.023940574377775192, 0.057890474796295166, -0.004758038558065891, -0.029522698372602463, 0.03149569034576416, -0.006063341163098812, 0.006243797950446606, 0.029330210760235786, -0.02017504721879959, 0.007049837615340948, -0.00715209636837244, 0.011260490864515305, -0.00608439464122057, -0.018911849707365036, -0.011146201752126217, -0.007831815630197525, 0.00919727049767971, -0.008030318655073643, -0.01744413748383522, -0.02347138710319996, 0.04022978991270065, -0.02574514038860798, 0.004003128502517939, 0.0016271169297397137, -0.002640681341290474, 0.0006921262247487903, -0.005768595729023218, -0.014821501448750496, 0.0034437132999300957, 0.004051250405609608, -0.0012256009504199028, 0.013606427237391472, -0.001924870302900672, 0.004072303883731365, 0.005967097822576761, -0.004809168167412281, -0.005786641500890255, -0.009143133647739887, 0.022268343716859818, 0.04819393903017044, -0.009359681978821754, 0.019645707681775093, -0.02343529649078846, -0.002529399935156107, 0.012289093807339668, 0.007482933346182108, 0.004159524571150541, -0.006255828309804201, 0.020343473181128502, -0.016505762934684753, 0.028776811435818672, -0.0007571657770313323, 0.018659211695194244, -0.016794493421912193, 0.016180939972400665, 0.001295527908951044, 0.008090469986200333, -0.026803819462656975, 0.012253002263605595, -0.0014444045955315232, -0.004595628008246422, 0.014244040474295616, -0.023699965327978134, -0.021305907517671585, 0.021173574030399323, -0.01202442403882742, -0.04128846898674965, -0.034166447818279266, -0.0041023800149559975, 0.0054558040574193, -0.027525644749403, 0.004051250405609608, 0.006785167846828699, 0.013678609393537045, 0.011049958877265453, -0.018671242520213127, 0.006700954865664244, -0.010568740777671337, 0.03327619656920433, 0.002559476066380739, 0.05331890657544136, 0.022869864478707314, -0.008529581129550934, 0.06058529391884804, -0.0076212831772863865, -0.025576714426279068, -0.0022090894635766745, -0.010610847733914852, 0.0027519629802554846, 0.003401606809347868, 0.0006590425036847591, -0.022388648241758347, 0.0006834793020971119, -0.0025639873929321766, 0.013702670112252235, -0.005392644554376602, 0.011404856108129025, -0.000463171920273453, -0.017925353720784187, -0.0007586695719510317, -0.024662399664521217, 0.008156637661159039, 0.00023252583923749626, 0.00048535302630625665, 0.028199350461363792, -0.04415171220898628, 0.00014417729107663035, 0.024830827489495277, 0.021883368492126465, 0.006544558797031641, 0.024229304865002632, 0.00029079828527756035, 0.012643991969525814, -0.04578785225749016, 0.02273753099143505, 0.04152907803654671, -0.061066508293151855, 0.01243947446346283, -0.012138713151216507, 0.028945237398147583, 0.021065298467874527, 0.03260248899459839, -0.01814190298318863, 0.009991279803216457, 0.007789709605276585, 0.005485880188643932, -0.021799156442284584, -0.02764594927430153, -0.009365697391331196, 0.024951130151748657, -0.026009809225797653, 0.013004904612898827, -0.011843967251479626, -0.020343473181128502, -0.005636260844767094, 0.008776205591857433, -0.023423265665769577, 0.020102864131331444, -0.0025669948663562536, 0.016337336972355843, 0.012138713151216507, -0.051730889827013016, 0.0009744655690155923, -0.026442905887961388, 0.02884899266064167, -0.005822732578963041, 0.03777557983994484, 0.004761046264320612, 0.015555357560515404, -0.030148280784487724, -0.01591627113521099, -0.008914555422961712, 0.002589551964774728, 0.03058137744665146, 0.03835304081439972, -0.010069477371871471, 0.014568861573934555, -0.02550453133881092, 0.014003431424498558, -0.011825921945273876, -0.01171764824539423, -0.0010774761904031038, 0.013943279162049294, 0.020367532968521118, -0.03397396206855774, 0.016024544835090637, 0.019080277532339096, 0.014821501448750496, -0.002660230966284871, -0.019164489582180977, 0.05100906267762184, -0.022328495979309082, 0.013065056875348091, 0.03645223006606102, -0.022304434329271317, -0.047423992305994034, -0.0034707817249000072, -0.012126682326197624, -0.015050079673528671, -0.009437879547476768, 0.009528107941150665, -0.014532770961523056, 0.013859066180884838, 0.01134470384567976, 0.014869622886180878, -0.01502601895481348, -0.014941805973649025, -0.015122261829674244, -0.032097212970256805, -0.00803633313626051, -0.010412345640361309, -0.009582244791090488, 0.005633253138512373, 0.014424496330320835, 0.018454693257808685, -0.012956783175468445, 0.007759633474051952, -0.010159705765545368, -0.014845562167465687, -0.011976302601397038, -0.021101390942931175, 0.025191739201545715, -0.003353484906256199, -0.00027951973606832325, 0.0013218445237725973, -0.024481944739818573, -0.021378090605139732, -0.04785708710551262, 0.00054625712800771, -0.004842252004891634, -0.017251649871468544, 0.007230293937027454, 0.007988211698830128, 0.03719811886548996, 0.0050918832421302795, -0.0024151105899363756, 0.01316130068153143, -0.024686461314558983, 0.0028572294395416975, 0.014268101193010807, 0.004995639901608229, 0.030244523659348488, 0.0077415877021849155, -0.007711511570960283, -0.05764986574649811, 0.008830342441797256, -0.03690938651561737, 0.027164731174707413, 0.008932600729167461, -0.002025625202804804, -0.01871936395764351, -0.025769200176000595, -0.0118800587952137, -0.029811428859829903, -0.05206774175167084, 0.0052452716045081615, -0.001078228116966784, 0.01678246259689331, -0.00550693366676569, -0.04095161706209183, -0.01674637198448181, 0.005401667207479477, -0.004827213939279318, 0.037751518189907074, -0.009642397053539753, -0.02735721878707409, 0.03202502802014351, 0.004481338430196047, 0.026298539713025093, -0.032626550644636154, -0.027381280437111855, -0.005338507238775492, -0.007494963705539703, 0.0022226236760616302, -0.015110231935977936, -0.010466482490301132, -0.012487595900893211, -0.01318536140024662, 0.013630487956106663, 0.014713226817548275, -0.02562483586370945, -0.014087644405663013, -0.007982196286320686, -0.014135765843093395, 0.006556589622050524, -0.00630395021289587, 0.010773258283734322, 0.02690006233751774, -0.007302476558834314, -0.019032154232263565, 0.00011118757538497448, 0.041745625436306, 0.01624109223484993, -0.020511899143457413, 0.01578393578529358, 0.014292161911725998, -0.004418178927153349, 0.018502814695239067, 0.024409761652350426, 0.0054287356324493885, 0.02377214841544628, -0.015928301960229874, 0.00594002939760685, 0.014929775148630142, -0.009287498891353607, 0.06900659948587418, 0.024782704189419746, -0.014015461318194866, -0.00931757502257824, -0.006574634928256273, -0.02620229683816433, -0.021835247054696083, -0.010382269509136677, -0.04355018958449364, 0.027429401874542236, -0.02596168778836727, -0.03156787157058716, 0.0016421549953520298, -0.01378688309341669, 0.003798611229285598, 0.019609615206718445, 0.006129508838057518, -0.009245392866432667, 0.016505762934684753, -0.04227496311068535, 0.015423023141920567, 0.0388583205640316, 0.03804025053977966, -0.0006706970161758363, -0.01450870931148529, 0.0085536427795887, 0.02913772314786911, 0.02149839513003826, -0.028656506910920143, 0.011314627714455128, -0.03289122134447098, 0.022172098979353905, 0.029450515285134315, -0.013269574381411076, 0.01301693543791771, 0.0332280732691288, -0.028656506910920143, -0.006965624168515205, -0.0332280732691288, 0.015278657898306847, 0.008427322842180729, 0.006027250085026026, -0.0018571990076452494, -0.016602005809545517, -0.03178441897034645, 0.03339650109410286, 0.00572348153218627, 0.04071100801229477, -0.010959730483591557, -0.004352011252194643, 0.037053752690553665, 0.03387771546840668, -0.03303558751940727, 0.005708443466573954, -0.008439352735877037, 0.0304129496216774, -0.030653558671474457, 0.005007670260965824, 0.012800387106835842, 0.017203528434038162], [0.08791150152683258, 0.019306717440485954, 0.06861605495214462, 0.0021442517172545195, -0.09521491825580597, 0.01839379034936428, -0.008565736003220081, -0.03910934552550316, 0.018506497144699097, 0.06316103041172028, 0.0029585601296275854, 0.01242031715810299, -0.045623812824487686, 0.02285698987543583, -0.0009523745975457132, 0.07821869105100632, 0.018709370866417885, 0.009782971814274788, 0.008796785026788712, -0.029371457174420357, -0.002000550040975213, 0.04316680133342743, 0.013355785980820656, -0.02342052571475506, 0.001283451565541327, 0.01677080988883972, 0.027861183509230614, 0.0010594462510198355, 0.05734534561634064, -0.012307610362768173, 0.004125078208744526, -0.01035214215517044, 0.01185678131878376, -0.011980759911239147, 0.007551372516900301, 0.0022456878796219826, -0.036043714731931686, 0.020456328988075256, 0.00911800004541874, -0.015564844012260437, -0.03570559248328209, 0.05455021187663078, 0.017424510791897774, -0.01360374130308628, -0.012341422028839588, 0.005418391432613134, 0.012397775426506996, 0.02371356263756752, -0.01402075681835413, 0.005686070770025253, 0.02351069077849388, 0.045195527374744415, 0.02116638422012329, 0.00941103883087635, 0.05585761368274689, 0.06014048308134079, 0.024367263540625572, 0.02932637371122837, 0.019768817350268364, 0.0043871221132576466, -0.02315002866089344, -0.010464849881827831, -0.013468492776155472, 0.014178547076880932, 0.026531239971518517, -0.019892795011401176, 0.008717890828847885, 0.04485740512609482, 0.007883857935667038, -0.018281083554029465, -0.01360374130308628, 0.021786272525787354, -0.039312221109867096, -0.03167068213224411, 0.008075459860265255, -0.039943378418684006, 0.030588693916797638, -0.004964745603501797, 0.059599488973617554, 0.0346686877310276, -0.029574330896139145, 0.009670265018939972, 0.004978834185749292, 0.0013228990137577057, -0.01589169353246689, 0.03151289001107216, 0.0034741947893053293, 0.009106730110943317, -0.039650339633226395, -0.020388705655932426, -0.02727510593831539, -0.023826271295547485, 0.02720748260617256, 0.016849704086780548, 0.01171026285737753, 0.0048548560589551926, -0.008774244226515293, 0.0024823728017508984, -0.04508281871676445, 0.03263996168971062, 0.014742081984877586, 0.04927552118897438, 0.031084604561328888, -0.004632259719073772, 0.0012186450185254216, -0.04113807529211044, -0.021031135693192482, -0.02946162223815918, 0.020467599853873253, -0.023600855842232704, 0.011777887120842934, -0.00989004410803318, -0.03444327414035797, 0.06334136426448822, -6.815254164393991e-05, -0.022597763687372208, -0.005508556962013245, 0.015711363404989243, 0.02344306744635105, 0.010690263472497463, 0.026238201186060905, -0.021121300756931305, -0.019678650423884392, -0.08132940530776978, -0.032414548099040985, -0.0056325350888073444, -0.04643530398607254, 0.011535566300153732, -0.015485948882997036, 0.02819930389523506, -0.027523061260581017, 0.00614253431558609, 0.05788633972406387, -0.018765723332762718, -0.014167276211082935, -0.01127634011209011, 0.025381628423929214, -0.003975741099566221, 0.020264727994799614, -0.03282029181718826, 0.019825169816613197, 0.038455646485090256, 0.0010305651230737567, 0.006176346447318792, -0.041431110352277756, 0.04535331577062607, -0.01736815646290779, 0.11469069123268127, -0.00013577677600551397, 0.006841317750513554, -0.03365432471036911, -0.012769708409905434, 0.016883516684174538, 0.006187617313116789, -0.005531098693609238, 0.0017511857440695167, 0.0316932238638401, 0.03351907804608345, -0.0048548560589551926, 0.0012123052729293704, -0.030836649239063263, -0.023262735456228256, -0.03415023535490036, 0.002256958745419979, 0.0465705543756485, 0.03239200636744499, -0.0021301633678376675, 0.005722700618207455, -0.04542094096541405, -0.016026942059397697, -0.029867367818951607, 0.0042518735863268375, 0.013479763641953468, -0.037238407880067825, 0.0037165149115025997, -0.012611919082701206, -0.012442857958376408, -0.004787231795489788, 0.01423490047454834, -0.00289375358261168, -0.04131840541958809, 0.010870595462620258, -0.03584084287285805, -0.01717655546963215, -0.04174669086933136, 0.042287684977054596, 0.050943586975336075, -0.025088589638471603, 0.02441234700381756, -0.0032403278164565563, -0.0020428153220564127, 0.01625235751271248, -0.035885926336050034, -0.013581199571490288, -0.046052101999521255, -0.012983852066099644, 0.03493918478488922, -0.01631998084485531, 0.06000523269176483, -0.02212439477443695, 0.019182739779353142, -0.021741190925240517, 0.013074018061161041, 0.013445951044559479, -0.04395575076341629, -0.03584084287285805, 0.020219644531607628, -0.007258334197103977, 0.006728610955178738, -0.004342039115726948, -0.015857882797718048, -0.03775686025619507, -0.04134094715118408, 0.00685258861631155, 0.01921655237674713, 0.03606625646352768, 0.06541517376899719, -0.0024302457459270954, -0.05319772660732269, 0.04415862262248993, -0.033203497529029846, 0.0013066973770037293, 0.042355310171842575, -0.03275267034769058, -0.06879638135433197, -0.036607250571250916, 0.026080410927534103, 0.013231807388365269, -0.013502304442226887, 0.00016201638209167868, -0.047968119382858276, -0.002835991093888879, -0.02648615650832653, -0.02034362219274044, -0.011056561954319477, 0.0213016327470541, -0.03989829495549202, 0.010059104301035404, -0.039943378418684006, 0.010577556677162647, -0.010476120747625828, 0.02576483227312565, 0.015857882797718048, 0.03868106007575989, -0.03926713764667511, -0.012533023953437805, -0.020749367773532867, 0.0024274280294775963, 0.010143634863197803, -0.008075459860265255, 0.004936568904668093, 0.0030459079425781965, 0.009580099023878574, -0.026643946766853333, 0.023127486929297447, 0.04868944734334946, -0.004218061454594135, 0.01697368174791336, 0.05531661957502365, -0.012690814211964607, 0.029303833842277527, -0.008047283627092838, -0.08466553688049316, -0.02156085893511772, -0.02400660142302513, -0.020253457129001617, 0.057119932025671005, 0.008943304419517517, 0.003214968601241708, 0.01962229795753956, -0.0316932238638401, 0.02605787105858326, 0.0027641404885798693, -0.01615091972053051, -0.01154120173305273, -0.010076010599732399, 0.028447259217500687, -0.012645730748772621, -0.018371248617768288, 0.0024513783864676952, -0.0343531109392643, 0.026508698239922523, 0.02104240655899048, -0.02833455242216587, 0.026463614776730537, 0.0036517083644866943, 0.024885715916752815, 0.008689713664352894, 0.009997115470468998, 0.03671995550394058, 0.0445869080722332, -0.005517010111361742, -0.0184952262789011, 0.007410488557070494, 0.017120201140642166, 0.008920762687921524, -0.06582091748714447, 0.01892351359128952, 0.014088381081819534, -0.04882469400763512, -0.019994230940937996, 0.05134933069348335, 0.04402337223291397, -0.0037587801925837994, -0.038523271679878235, 0.04828369989991188, 0.037306033074855804, 0.05211574211716652, -0.03726094961166382, 0.00508590554818511, -0.01547467801719904, 0.02156085893511772, -0.056488774716854095, -0.03295554220676422, -0.07127594202756882, -0.03430802747607231, 0.0111467270180583, 0.025314003229141235, -0.0002551758079789579, -0.004792867228388786, 0.08448520302772522, 0.014325066469609737, 0.03385719656944275, 0.005407120566815138, 0.016398875042796135, 0.03967288136482239, -0.01687224581837654, 0.02952924743294716, 0.005979109089821577, -0.04564635455608368, -0.04783287271857262, 0.023736104369163513, 0.04805828630924225, -0.01338959764689207, -0.023026050999760628, -0.014516668394207954, 0.0017652742099016905, 0.02556195855140686, 0.010036562569439411, 0.04841895028948784, -0.019070032984018326, -0.01594804786145687, 0.025314003229141235, 0.027883725240826607, -0.035683050751686096, 0.005945296958088875, 0.03313587233424187, 0.01683843322098255, 0.032369464635849, -0.00494502205401659, -0.0356605090200901, -0.007201980333775282, -0.031129688024520874, 0.009179988875985146, -0.02599024586379528, -0.026035329326987267, 0.029303833842277527, -0.02169610746204853, -0.016139648854732513, 0.022045498713850975, -0.019892795011401176, -0.0010045015951618552, 0.05373872071504593, 0.028424717485904694, -0.01793169230222702, -0.005956567823886871, -0.02080572210252285, -0.0052859606221318245, 0.01875445246696472, 0.009241977706551552, 0.009433580562472343, 0.02876283973455429, 0.0027106045745313168, -0.050087012350559235, -0.004705519415438175, -0.003722150344401598, 0.0022006051149219275, 0.046119723469018936, -0.004601265303790569, -0.005531098693609238, 0.025516876950860023, 0.009529381059110165, 0.039312221109867096, 0.041205696761608124, 0.02342052571475506, 0.03777940198779106, 0.011270704679191113, 0.025178754702210426, 0.021955333650112152, -0.025516876950860023, -0.04210735484957695, 0.04778778925538063, 0.07420632243156433, 0.014933683909475803, 0.006632809992879629, 1.7918660887517035e-05, 0.06401760131120682, 0.0366523340344429, -0.009551922790706158, -0.03827531263232231, 0.0036319848150014877, -0.06509958952665329, 0.016534123569726944, -0.02441234700381756, 0.022417431697249413, -0.008779879659414291, -0.0034178413916379213, 0.01309655886143446, 0.02867267280817032, -0.0006956138531677425, 0.03273012861609459, 0.002442925237119198, 0.022541409358382225, -0.019633568823337555, 0.020073125138878822, 0.026734111830592155, 0.006418666336685419, 0.04932060465216637, -0.004806955810636282, -0.034691229462623596, -0.01146230660378933, 0.015305617824196815, -0.058833081275224686, 0.004733696114271879, -0.00358408410102129, 0.01810075156390667, 0.011270704679191113, 0.02635090798139572, -0.02258649282157421, -0.02450251206755638, -0.0017695006681606174, 0.016331251710653305, 0.09169845283031464, 0.030002616345882416, -0.04765254259109497, 0.007134356535971165, 0.006046733353286982, -0.016962410882115364, -0.018551580607891083, -0.021842626854777336, -0.0005681139882653952, -0.023330358788371086, 0.026215659454464912, 0.01753721758723259, 0.0201407503336668, 0.008610818535089493, -0.014156005345284939, 0.021324174478650093, 0.01555357314646244, -0.004618171602487564, 0.021808814257383347, -0.02391643635928631, -0.036742497235536575, 0.01302893552929163, -0.03597608953714371, 0.004553365055471659, 0.007680985610932112, -0.050447676330804825, 0.034691229462623596, -0.016703184694051743, 0.05757076293230057, 0.05103375390172005, 0.043843042105436325, 0.027230024337768555, 0.005460656713694334, 0.03669741749763489, -0.00437585124745965, -0.00812617875635624, -0.018540309742093086, -0.03856835141777992, -0.0026415714528411627, -0.03309078887104988, 0.026666488498449326, 0.028289468958973885, 0.04289630427956581, -0.026869360357522964, -0.04300900921225548, -0.030137864872813225, -0.035547804087400436, -0.01931798830628395, 0.002017456106841564, 0.0008805238176137209, -0.018078211694955826, -0.02070428431034088, 0.0024513783864676952, 0.034826479852199554, 0.04055199772119522, 0.0005124648450873792, 0.007714797742664814, -0.02414184994995594, -0.07059969753026962, 0.005917120259255171, -0.00999148003757, -0.008746067062020302, -0.001453920966014266, -0.04332458972930908, 0.020354893058538437, -0.012409046292304993, -0.007038555108010769, -0.000848824973218143, 0.03358669951558113, -0.0012059654109179974, 0.028064055368304253, 0.005511374678462744, 0.05716501548886299, -0.00825579185038805, -0.011777887120842934, -0.015023849904537201, -0.0023555774241685867, -0.006948389578610659, -0.01402075681835413, -0.000429695617640391, 0.053152646869421005, 0.010718440636992455, -0.004629442002624273, -0.015215451829135418, 0.004435022361576557, 0.009044741280376911, -0.022789366543293, -0.02183135598897934, -0.013648823834955692, -0.0010911450954154134, -0.05630844086408615, -0.011958218179643154, -0.028988253325223923, 0.0034882831387221813, 0.010025291703641415, -0.060681477189064026, -0.014325066469609737, 0.004759055096656084, -0.016996223479509354, -0.03196372091770172, -0.029867367818951607, -0.0037024265620857477, -0.020918428897857666, -0.015226722694933414, 0.037801943719387054, 0.036539625376462936, 0.01575644500553608, -0.04307663440704346, 0.012578106485307217, -0.04819353669881821, 0.03243708983063698, -0.01249921228736639, 0.0017032852629199624, 0.024051684886217117, 0.04521806910634041, 0.008638995699584484, 0.023668481037020683, -0.026531239971518517, -0.015192910097539425, -0.01096639595925808, -0.020253457129001617, 0.03263996168971062, -0.010408496484160423, 0.015395782887935638, 0.024818092584609985, 0.011552472598850727, -0.007979659363627434, -0.017627382650971413, 0.014573021791875362, 0.010199988260865211, 0.01207092497497797, 0.0026176213286817074, -0.009264519438147545, 0.018641745671629906, -0.03570559248328209, -0.017525946721434593, 0.0488697774708271, -0.005125353112816811, -0.02219201810657978, 0.02797389030456543, 0.015395782887935638, -0.031152229756116867, 0.055136289447546005, 0.008943304419517517, 0.003071267157793045, -0.03263996168971062, -0.016072025522589684, -0.002237234963104129, -0.006249606143683195, 0.03570559248328209, 0.030994439497590065, -0.03669741749763489, -0.009484298527240753, 0.046480387449264526, -0.020659202709794044, -0.014539209194481373, -0.0033417639788240194, 0.044631991535425186, -0.020039314404129982, -0.005288778338581324, 0.028424717485904694, 0.0003631280269473791, -0.019723733887076378, 0.057119932025671005, -0.04620989039540291, 0.04287376254796982, -0.026959527283906937, -0.0033135872799903154, 0.018112022429704666, -0.005159165244549513, 0.003871487220749259, 0.007004742976278067, 0.00012045566109009087, -0.030228031799197197, 0.017154013738036156, -0.023803729563951492, -0.0010601506801322103, 0.032549794763326645, -0.012848603539168835, 0.013772801496088505, 0.006108722183853388, 0.004801320377737284, -0.030002616345882416, 0.0018512132810428739, -0.030498528853058815, -0.0298899095505476, -0.0008445984567515552, 0.001263023354113102, 0.004798502661287785, -0.0056917062029242516, 0.005762148182839155, 0.008779879659414291, -0.0173343438655138, -0.01799931563436985, 0.018900971859693527, -0.03969542309641838, 0.025719748809933662, -0.00018561442266218364, -0.014967496506869793, 0.01025634165853262, 0.017390698194503784, -0.02783864177763462, -0.008475570008158684, -0.0048548560589551926, 0.05671418830752373, 0.0020808540284633636, -0.0009657585178501904, 0.026080410927534103, 0.05793142318725586, 0.008920762687921524, -0.004961927887052298, -0.04012370854616165, 0.0262607429176569, 0.01515909843146801, 0.02162848226726055, -0.009585734456777573, -0.0033304933458566666, 0.0018653017468750477, 0.016004400327801704, -0.006756787654012442, 0.007179439067840576, 0.007365405559539795, -0.0013898188481107354, -0.04578160494565964, 0.022169476374983788, -0.007850046269595623, -0.010921313427388668, 0.01753721758723259, -0.018010586500167847, 0.027320189401507378, -0.007337228860706091, -0.040799953043460846, 0.016736997291445732, 0.0007995156338438392, 0.0203098114579916, -0.017954234033823013, 0.01921655237674713, 0.008295238949358463, 0.024029143154621124, 0.014381419867277145, -0.026959527283906937, 0.013964403420686722, -0.020354893058538437, -0.009225072339177132, -0.06730864942073822, 0.00393065856769681, -0.004539276473224163, 0.016962410882115364, 0.000310472707496956, -0.00885313842445612, -0.012375234626233578, 0.015925506129860878, -0.02549433521926403, 0.012059654109179974, 0.0026105770375579596, -0.010137999430298805, -0.0022287818137556314, -0.004367398098111153, -0.01757102832198143, 0.05455021187663078, -0.0038517634384334087, -0.006655351258814335, 0.005652258638292551, -0.015361971221864223, -0.03304570913314819, -0.028064055368304253, -0.03151289001107216, -0.013367055915296078, 0.012341422028839588, 0.03196372091770172, -0.06721848249435425, -0.0677143931388855, -0.015733905136585236, -0.00896584615111351, -0.028875546529889107, 0.017548488453030586, 0.03771178051829338, 0.014696999453008175, -0.030836649239063263, 0.003243145300075412, -0.0252689216285944, -0.04300900921225548, -0.00814308412373066, 0.0034601064398884773, 0.0025584499817341566, -0.01299512293189764, 0.016691913828253746, -0.026643946766853333, -0.04190448299050331, -0.0028824827168136835, 0.0100703751668334, 0.02520129643380642, 0.03309078887104988, -0.003423476591706276, 0.004384304396808147, -0.02797389030456543, 0.02143688127398491, 0.02612549439072609, 0.005139441695064306, -0.009501204825937748, 0.012758438475430012, 0.05062800645828247, 0.004389939829707146, 0.020816992968320847, -0.0014137690886855125, 0.02104240655899048, -0.013784072361886501, 0.017807714641094208, 0.006948389578610659, -0.031016981229186058, -0.015068932436406612, -0.03550272062420845, 0.013017664663493633, -0.02959687076508999, -0.015204180963337421, -0.019735004752874374, -0.02662140503525734, 0.0028148586861789227, 0.008672807365655899, 0.006272147409617901, -0.019543401896953583, -0.01962229795753956, 0.008205072954297066, 0.007680985610932112, -0.003040272742509842, 0.026598863303661346, 0.04837386682629585, 0.015136556699872017, 0.016590477898716927, -0.004133530892431736, 0.00972661841660738, 0.02711731567978859, 0.0024372900370508432, -0.019678650423884392, -0.04418116435408592, -0.002225964330136776, -0.007151262369006872, 0.006058003753423691, 0.026441074907779694, -0.004094083793461323, 0.035119518637657166, 0.053287893533706665, -5.561058515013428e-06, -0.0005427548894658685, -0.02005058340728283, -0.04167906567454338, -0.02441234700381756, -0.021380526944994926, 0.03304570913314819, 0.019701192155480385, -0.008419216610491276, 0.04039420560002327, 0.006722975522279739, -0.008723525330424309, 0.02212439477443695, 0.025246379896998405, 0.045127902179956436, 0.013254349119961262, -0.02677919529378414, -0.009529381059110165, -0.01700749434530735, -0.0336768664419651, -0.036877747625112534, 0.013400868512690067, 0.005508556962013245, -0.0353449322283268, 0.009816784411668777, 0.029934993013739586, -0.007416123989969492, -0.0026345273945480585, -0.0025964886881411076, -0.007850046269595623, 0.03074648417532444, -0.02846980094909668, -0.027523061260581017, -0.030656317248940468, 0.010926948860287666, -0.006339771673083305, -0.004043365363031626, 0.007466841954737902, 0.02364593930542469, 0.03223421797156334, 0.010515567846596241, -0.01189059391617775, -0.024795550853013992, 0.043211884796619415, 0.012363963760435581, -0.013581199571490288, 0.041363488882780075, -0.0019850528333336115, 0.008577006869018078, -0.005595905240625143, 0.010898771695792675, 0.040304042398929596, -0.04900502413511276, 0.019272904843091965, 0.029078418388962746, 0.05116900056600571, 0.04373033717274666, 0.006362312939018011, -0.006649715825915337, -0.0075964550487697124, 0.007410488557070494, 0.02123400755226612, -0.017616111785173416, 0.007585184648633003, -0.010312695056200027, 0.040574539452791214, 0.005316955037415028, -0.0376441553235054, -0.0010601506801322103, -0.006824411917477846, -0.008182532154023647, 0.01575644500553608, 0.008176896721124649, -0.0049027567729353905, -0.044203706085681915, 0.0505378432571888, -0.0024922345764935017, 0.021707378327846527, -0.01109600905328989, 0.012544294819235802, -0.024773009121418, 0.007393582724034786, 0.04415862262248993, -0.00583822512999177, -0.04485740512609482, -0.017976773902773857, -0.006491926033049822, 0.005359220318496227, -0.013772801496088505, 0.009918220341205597, -0.0014074293430894613, 0.0021414340008050203, 0.0023879806976765394, 0.0359986312687397, -0.03223421797156334, 0.010707169771194458, 0.03381211683154106, 0.014505397528409958, 0.008830597624182701, -0.019036220386624336, -0.039515092968940735, -0.024953341111540794, -0.004274414852261543, 0.0005343018565326929, -0.005764965433627367, 0.0038517634384334087, -0.007196345366537571, -0.0274103544652462, 0.018934784457087517, 0.0010693081421777606, -0.019565943628549576, -0.05013209581375122, -0.02156085893511772, 0.041205696761608124, 0.06135771796107292, -0.005333861336112022, 0.03216659277677536, 0.012116007506847382, -0.025809913873672485, 0.012972581200301647, -0.04023641720414162, 0.019678650423884392, -0.003307951847091317, -0.044496744871139526, -0.013017664663493633, 0.006644080858677626, -0.04300900921225548, 0.0004832314734812826, -0.033113330602645874, -0.012048384174704552, -0.030137864872813225, 0.037599071860313416, -0.00530004920437932, -0.016635561361908913, 0.02599024586379528, 0.007979659363627434, 0.011868052184581757, 0.012003300711512566, 0.03415023535490036, -0.01594804786145687, 0.0031952448189258575, 0.056488774716854095, -0.014223629608750343, 0.02094097062945366, 0.018675558269023895, 0.014832247979938984, 0.008920762687921524, -0.012724625878036022, 0.029664495959877968, -0.015643738210201263, -0.004277232568711042, -0.030047699809074402, -0.035390015691518784, 0.013502304442226887, 0.007573913782835007, -0.019272904843091965, 0.013107829727232456, 0.013513575308024883, -0.002521820366382599, 0.03516459837555885, -0.008024741895496845, 0.008994022384285927, -0.01476462371647358, 0.0036150787491351366, 0.016421416774392128, 0.022383620962500572, 0.011028384789824486, 0.030430903658270836, 0.01813456416130066, -0.043054092675447464, -0.045330774039030075, 0.0014426502166315913, 0.02578737400472164, -0.0014405370457097888, -0.008819326758384705, 0.00010390180977992713, 0.03374449163675308, 0.00035309005761519074, 0.007833139970898628, -0.003369940910488367, 0.008599547669291496, -0.00027067301562055945, 0.0088362330570817, 0.02810913883149624, -0.008109272457659245, -0.00011402784002711996, 0.06063639372587204, 0.02251886948943138, 0.03094935603439808, -0.034105151891708374, 0.04666071757674217, 0.0015778987435624003, 0.01210473757237196, -0.018303625285625458, -0.014358878135681152, 0.01537324208766222, -0.012713355012238026, -0.022800635546445847, 0.057119932025671005, 0.03358669951558113, -0.028514884412288666, 0.018799535930156708, 0.000572340504731983, -0.00911800004541874, 0.006835682783275843, -0.002107621869072318, -0.007714797742664814, 0.016984952613711357, 0.013975674286484718, 0.004409663379192352, 0.020253457129001617, 0.01757102832198143, 0.00570579431951046, -0.032910458743572235, -0.01260064821690321, 0.04510536044836044, -0.05211574211716652, 0.029416540637612343, 0.019723733887076378, 0.00446601677685976, -0.018607934936881065, 0.0005607175990007818, 0.0010841009207069874, 0.04616480693221092, 0.03322603926062584, -0.03771178051829338, 0.029484163969755173, -0.010493026115000248, 0.005855131428688765, 0.004494193475693464, 0.00023474765475839376, -0.025404170155525208, 0.00720761576667428, 0.028357094153761864, -0.004742149263620377, -0.013851696625351906, -0.013321973383426666, 0.014257442206144333, -0.012228715233504772, 0.03378957509994507, -0.002654250944033265, -0.03744128346443176, 0.0222934540361166, -0.006012921221554279, -0.014167276211082935, -0.0013306476175785065, -0.014933683909475803, 0.018213460221886635, 0.04118315503001213, 0.035187140107154846, 0.006367948371917009, -0.017841525375843048, 0.05004192888736725, 0.029146043583750725, -0.0007924714591354132, -0.0034741947893053293, -0.01885589025914669, -0.018405061215162277, -0.008627724833786488, 0.06122247129678726, -0.014156005345284939, 0.024885715916752815, -0.013829154893755913, -0.042918846011161804, -0.00835722777992487, -0.001475053490139544, -0.01721036620438099, -0.022372350096702576, -0.028018971905112267, 0.0048238616436719894, -0.014561750926077366, 0.004837950225919485, -0.011417224071919918, 0.021222738549113274, 0.016004400327801704, 0.0017540034605190158, -0.026869360357522964, 0.015733905136585236, -0.025043506175279617, -0.01207092497497797, -0.023984059691429138, -0.005331043619662523, 0.0009425127063877881, -0.02952924743294716, -0.025223838165402412, -0.022879531607031822, 0.028740298002958298, -0.010543745011091232, 0.01035214215517044, -0.009839325211942196, -4.052610893268138e-05, 0.008661536499857903, 0.01726672053337097, -0.008791149593889713, 0.00018350116442888975, -0.036539625376462936, -0.019960418343544006, 0.014854789711534977, 0.017255449667572975, 0.03651708364486694, 0.012217444367706776, -0.0014377193292602897, -0.006007285788655281, -0.06239462271332741, 0.01572263427078724, 0.04023641720414162, -0.022451244294643402, 0.011135456152260303, -0.003307951847091317, 0.029709579423069954, -0.007201980333775282, -0.028131680563092232, -0.020749367773532867, -0.010188717395067215, -0.05707485228776932, -0.00720761576667428, 0.06248478963971138, 0.05035750940442085, -0.0006586318486370146, 0.008672807365655899, -0.0012440041173249483, -0.027658309787511826, 0.0468861348927021, -0.021121300756931305, 0.0004719607823062688, 0.0003345990553498268, -0.02275555394589901, 0.03146781027317047, -0.012747167609632015, -0.03820769116282463, 0.04217498004436493, -0.004082812927663326, 0.022383620962500572, -0.00645811390131712, 0.010464849881827831, 0.021955333650112152, 0.014325066469609737, 0.06104213744401932, -0.0024260191712528467, -0.014437773264944553, 0.02222583070397377, -0.0031698858365416527, 0.015316887758672237, 0.013040205463767052, 0.03507443517446518, -0.011338328942656517, -0.025900080800056458, -0.006413031369447708, -0.024953341111540794, 0.025945162400603294, -0.011338328942656517, -0.008870044723153114, 0.0012341422261670232, -0.027793558314442635, 0.0030769025906920433, -0.005629717372357845, -0.022733012214303017, -0.041791774332523346, -0.026441074907779694, -0.015035120770335197, -0.016556665301322937, -0.004942204337567091, 0.014606833457946777, 0.008238885551691055, -0.012183631770312786, -0.011343964375555515, 0.020456328988075256, 0.010183081962168217, 0.007720433175563812, -0.0026627040933817625, -0.022473786026239395, -0.030228031799197197, -0.005759330466389656, 0.041994646191596985, 0.026012787595391273, 0.0003080072347074747, 0.04415862262248993, 0.03726094961166382, 0.004018006380647421, -0.01654539443552494, 0.0032685045152902603, 0.00433358596637845, 0.021414339542388916, -0.012442857958376408, 0.05211574211716652, -0.022597763687372208, 0.0015032303053885698, -0.009450485929846764, -0.010329601354897022, -0.009151812642812729, -0.011327059008181095, 0.019701192155480385, -0.006328500807285309, 0.008774244226515293, -0.05031242594122887, 0.03324858099222183, -0.010087281465530396, -0.0040095532312989235, -0.016703184694051743, -0.0038038629572838545, -0.01813456416130066, -0.023172570392489433, 0.008689713664352894, -0.0004515326290857047, 0.019070032984018326, 0.012555565685033798, 0.024953341111540794, 0.04481232166290283, -0.02094097062945366, -0.03140018507838249, 0.028717756271362305, 0.02995753474533558, -0.021944062784314156, -0.01426871307194233, 0.0043561276979744434, 0.0160156711935997, 0.041994646191596985, 0.015587384812533855, 0.031219853088259697, -0.007410488557070494, -0.015936776995658875, 0.026035329326987267, -0.010504296980798244, 0.0045759063214063644, -0.010177446529269218, -0.0010742390295490623, 0.009202530607581139, 0.016804620623588562, 0.008554465137422085, 0.017976773902773857, 0.01671445555984974, -0.026305826380848885, 0.028920629993081093, -2.914533979492262e-05, 0.010261977091431618, -0.05238623544573784, 0.0033107695635408163, 0.0002152000233763829, -0.04438403621315956, -0.010718440636992455, -0.009506839327514172, -0.029844827950000763, -0.027928806841373444, -0.004265961702913046, 0.006565185729414225, -0.010053468868136406, -0.004601265303790569, -0.0038207690231502056, 0.006677892990410328, -0.01591423526406288, 0.03451089933514595, -0.028357094153761864, 0.006074910052120686, -0.018731912598013878, -0.012442857958376408, -0.0026204390451312065, 0.05125916749238968, 0.021143842488527298, 0.006266511976718903, 0.003722150344401598, 0.03892901539802551, 0.03279775008559227, 0.03444327414035797, 0.008988386951386929, 0.011372141540050507, 0.006339771673083305, -0.010673358105123043, -0.004916844889521599, -0.0005846678395755589, 0.015835341066122055, -0.04738204553723335, 0.017165284603834152, 0.010019657202064991, -0.004468834493309259, -0.005956567823886871, -0.02826692909002304, -0.017909150570631027, 0.018878430128097534, 0.012747167609632015, 0.027523061260581017, 0.0422651432454586, 0.022665387019515038, -0.033699408173561096, -0.030836649239063263, 0.015812799334526062, 0.03509697690606117, 0.008999657817184925, -0.006508832331746817, -0.017773902043700218, -0.013592470437288284, -0.018810806795954704, -0.0037136974278837442, 0.01352484617382288, 0.0316932238638401, -0.022417431697249413, 0.01136087067425251, 0.015485948882997036, -0.010504296980798244, 0.014325066469609737, -0.02675665356218815, 0.01099457312375307, -0.003353034844622016, -0.0037277857773005962, -0.0024964611511677504, 0.008295238949358463, 0.014279983006417751, 0.023984059691429138, -0.009134906344115734, -0.0006558141321875155, -0.03552526235580444, 0.0037700508255511522, 0.010656451806426048, 0.01012109313160181, -0.0009333552443422377, 0.014122193679213524, -0.02556195855140686, -0.03415023535490036, -0.023803729563951492, 0.008971481584012508, -0.023003509268164635, -0.0008241703035309911, 0.03417277708649635, 0.009709712117910385, -0.05202557519078255, -0.009720982983708382, 0.002237234963104129, -0.006700434256345034, -0.0336768664419651, 0.00742175942286849, -0.027928806841373444, 0.018743183463811874, -0.0038461280055344105, 0.008824962191283703, -0.011744074523448944, 0.007613361347466707, -0.0027106045745313168, 0.03018294833600521, 0.02946162223815918, 0.001854030997492373, 0.008627724833786488, -0.00777678657323122, -0.018641745671629906, -0.021425610408186913, 0.01856285147368908, -0.03025057166814804, 0.03038582019507885, 0.007359770592302084, -0.015711363404989243, -0.019757546484470367, 0.04918535798788071, 0.027365271002054214, -0.015407053753733635, -0.0028782563749700785, 0.028244387358427048, 0.03282029181718826, -0.024096768349409103, -0.022338537499308586, -0.014156005345284939, -0.005223971791565418, 0.02903333678841591, -0.015046391636133194, 0.023104945197701454, 0.0038292219396680593, 0.004054636228829622, -0.010577556677162647, 0.02995753474533558, -0.03996592015028, -0.02017456293106079, -0.010301424190402031, -0.017187824472784996, 0.023758646100759506, -0.003074084874242544, -0.02258649282157421, 0.01112982165068388, -0.03978559002280235, -0.01690605841577053, 0.015587384812533855, 0.013321973383426666, -0.029934993013739586, 0.0011996256653219461, -0.0022245554719120264, 0.021143842488527298, -0.0056409877724945545, 0.01331070251762867, -0.010904407128691673, 0.020715555176138878, 0.020332351326942444, 0.03306824713945389, -0.043211884796619415, 0.0014877330977469683, -0.009647723287343979, -0.012735896743834019, -0.03807244077324867, -0.006875129882246256, 0.024457430467009544, 0.023533232510089874, 0.0014299707254394889, -0.03541255369782448, 0.015542302280664444, -0.005728336051106453, -0.031219853088259697, 0.018574122339487076, -0.02592262253165245, -0.039154428988695145, -0.030137864872813225, 0.005533916410058737, -0.013851696625351906, -0.02111002989113331, -0.03282029181718826, -0.034758854657411575, 0.04122823849320412, 0.0021372074261307716, -0.010955125093460083, -0.024525053799152374, 0.008560100570321083, -0.020433789119124413, -0.009298332035541534, 0.030295655131340027, -0.004198337439447641, -0.01760484091937542, 0.0006519398302771151, 0.02189897932112217, -0.042648348957300186, -0.006035462487488985, 0.022451244294643402, 0.00032121510594151914, 0.003322040429338813, 0.008131813257932663, -0.0034798302222043276, -0.017165284603834152, -0.02044505812227726, -0.027523061260581017, -0.012239986099302769, -0.0017892244504764676, 0.006362312939018011, 0.03843310475349426, -0.0071287211030721664, -0.010047833435237408, 0.03550272062420845, -0.017413239926099777, -0.026305826380848885, -0.02583245560526848, 0.019081303849816322, -0.019374342635273933, -0.046119723469018936, -0.004736513830721378, -0.007303416728973389, -0.038523271679878235, -0.0008199437870644033, 0.0007047712570056319, -0.02684681862592697, 0.015012579038739204, -0.013321973383426666, 0.026012787595391273, 0.007551372516900301, 0.02783864177763462, -0.047111548483371735, -0.017683736979961395, 0.0037728685420006514, 0.013750259764492512, 0.03408261388540268, 0.02876283973455429, -0.006908942013978958, 0.018145835027098656, -0.005116899963468313, 0.020557766780257225, 0.015519760549068451, 0.049095191061496735, -0.005604357924312353, -0.015237993560731411, 0.011372141540050507, -0.0010488800471648574, -0.00949556939303875, 0.0071287211030721664, 0.026824278756976128, -0.024389805272221565, -0.029777202755212784, 0.01391932088881731, -0.0012989487731829286, 0.015812799334526062, 0.01497876737266779, 0.02450251206755638, -0.004742149263620377, -0.029213666915893555, 0.03960525617003441, 0.0049591101706027985, -0.010391590185463428, -0.007788057439029217, 0.011586285196244717, -0.02457013726234436, -0.020388705655932426, 0.005457838997244835, 0.04140856862068176, -0.016984952613711357, -0.021211467683315277, -0.04104790836572647, -0.015812799334526062, -0.010532474145293236, -0.032053884118795395, -0.013648823834955692, -0.010464849881827831, -0.05157474800944328, -0.011868052184581757, 0.03721586987376213, -0.04348238185048103, 0.02542671002447605, -0.06379219144582748, -0.039808131754398346, 0.018337437883019447, 0.012859874404966831, 0.0045759063214063644, 0.00481259124353528, -0.014279983006417751, 0.027816100046038628, -0.0051732538267970085, -0.000782609567977488, 0.019464507699012756, -0.008689713664352894, 0.03133255988359451, 0.024615220725536346, 0.008351592347025871, -0.01806694082915783, 0.020557766780257225, 0.02371356263756752, 0.030092783272266388, -0.02205676957964897, -0.02684681862592697, 0.05247640237212181, -0.031264934688806534, 0.012938769534230232, -0.017018765211105347, 0.03128747642040253, -0.023668481037020683, -0.0050351875834167, 0.026824278756976128, 0.0018709370633587241, 0.01902494952082634, 0.05630844086408615, -0.02533654496073723, 0.044136080890893936, 0.036381836980581284, 0.024367263540625572, 0.045330774039030075, 0.006136898882687092, 0.008064189925789833, -0.012386504560709, -0.04125078022480011, 0.006841317750513554, -0.002007594332098961, -0.011766616255044937, -0.005463474430143833, -0.01281479187309742, 0.022406160831451416, -0.00018085959891323, -0.049095191061496735, 0.027432896196842194, -0.012431588023900986, 0.009287061169743538, -0.017976773902773857, -0.004677342716604471, 0.019656110554933548, 0.03074648417532444], [0.017127299681305885, -0.023386022076010704, 0.06358582526445389, 0.01211103331297636, -0.03738976642489433, 0.024291737005114555, 0.016720889136195183, -0.004444389138370752, 0.027380457147955894, 0.019078070297837257, -0.02342085726559162, 0.009498394094407558, -0.0028419706504791975, -0.025011664256453514, 0.016871841624379158, 0.012482608668506145, -0.006398062687367201, 0.03878317400813103, -0.04684171453118324, -0.005620076786726713, -0.014723672531545162, 0.019170964136719704, 0.0037912295665591955, 0.03529965505003929, 0.00723991310223937, 0.01711568795144558, 0.03265218064188957, 0.002437011571601033, 0.04932662472128868, -0.025569027289748192, 0.04159321263432503, -0.021841662004590034, 0.054575126618146896, -0.04579665884375572, 0.02141202799975872, 0.011031142435967922, -0.018729718402028084, 0.015153306536376476, 0.032234158366918564, -0.03606602922081947, -0.06590817123651505, 0.015490046702325344, 0.01998378522694111, 0.0022236460354179144, -0.016117079183459282, 0.0507664792239666, 0.02791459672152996, -0.028588077053427696, -0.041268084198236465, 0.030887199565768242, -0.021586203947663307, 0.0005232535186223686, -0.01904323510825634, -0.0065780445002019405, 0.0425453744828701, 0.00917907152324915, 0.015942903235554695, 0.013144477270543575, 0.006821890827268362, -0.03525320813059807, 0.01807946152985096, -0.012308432720601559, -0.0017882062820717692, 0.006380645092576742, -0.00040060465107671916, 0.028820311650633812, -0.0015153306303545833, 0.029935037717223167, -0.054714467376470566, 0.02923833392560482, 0.010467973537743092, -0.0075011770240962505, 0.017266640439629555, -0.03381335362792015, 0.03246639296412468, 0.022364189848303795, 0.04974464699625969, 0.020111514255404472, 0.06107769533991814, -0.0037447826471179724, -0.014770119450986385, 0.0123897148296237, -0.005350104067474604, 0.05615432187914848, 0.01579195074737072, 0.0050627137534320354, -0.029726026579737663, 0.0005156333209015429, -0.01036346796900034, 0.009556452743709087, -0.011826545931398869, -0.05401776358485222, -0.0025444200728088617, 0.060009416192770004, -0.009231324307620525, 0.01255227904766798, 0.007832110859453678, -0.01565260998904705, 0.001058844500221312, 0.06864853948354721, -0.0038376764860004187, -0.0010856966255232692, 0.04059460386633873, 0.03718075528740883, 0.017684662714600563, -0.042429257184267044, -0.08457983285188675, 0.031096210703253746, 0.015292647294700146, -0.03643760457634926, 0.038458045572042465, 0.023444080725312233, -0.07459374517202377, 0.020262466743588448, -0.00017653456598054618, -0.037714894860982895, -0.07045996934175491, 0.04900149628520012, 0.03337210789322853, -0.007565041538327932, -0.02747335098683834, -0.02670697681605816, 0.0030248553957790136, -0.07519755512475967, -0.00042382811079733074, -0.008099180646240711, -0.048629920929670334, 0.0310033168643713, 0.004694041330367327, -0.022468695417046547, 0.023873714730143547, -0.012041362933814526, 0.04561087116599083, -0.06103124842047691, -0.022120343521237373, 0.01813752017915249, 0.013690228573977947, -0.0004477773036342114, -0.03381335362792015, -0.022584812715649605, 0.010920831002295017, 0.01351605262607336, 0.014688837341964245, 0.048072557896375656, -0.03467262163758278, 0.02014634944498539, 0.036994967609643936, 0.020796606317162514, -0.0027519797440618277, -0.029354451224207878, -0.03262895718216896, 0.014874625019729137, -0.03114265762269497, 0.049373071640729904, 0.015757115557789803, -0.011716234497725964, -0.005837796721607447, 0.06795183569192886, 0.006868337746709585, 0.037993576377630234, -0.042429257184267044, 0.012308432720601559, 0.02119140513241291, -0.02083144150674343, 0.058105092495679855, 0.007181854452937841, -0.03332566097378731, -0.007588264998048544, -0.03806324675679207, -0.040362369269132614, -0.026799870654940605, -0.006026487331837416, -0.008412697352468967, -0.0453554131090641, 0.007837916724383831, -0.027844926342368126, -0.0640038475394249, 0.01689506508409977, 0.05123094841837883, -0.03281474485993385, 0.018996788188815117, 0.009510005824267864, -0.03204837068915367, 0.0003387359029147774, -0.01571066863834858, 0.012889019213616848, 0.004061202052980661, 0.01986766792833805, -0.015013965778052807, 0.022143566980957985, 0.02640507183969021, 0.010723431594669819, 0.03999079391360283, 0.026637306436896324, -0.021597815677523613, 0.005991652142256498, -0.030608518049120903, -0.016651218757033348, -0.01536231767386198, -0.008070151321589947, 0.03188580647110939, -0.039503101259469986, 0.04928017780184746, 0.017905285581946373, -0.04941951856017113, -0.021655874326825142, 0.017080852761864662, -0.001506621832959354, 0.06655842810869217, 0.02554580383002758, 0.020796606317162514, -0.016790559515357018, -0.04386911168694496, 0.015095247887074947, 6.84910555719398e-05, -0.03764522448182106, 0.009196489118039608, 0.008366250433027744, -0.0017490166937932372, 0.04591277614235878, 0.004232475068420172, -0.010595702566206455, -0.043938782066106796, 0.0023267001379281282, -0.003663500538095832, -0.02133074589073658, -0.011739457957446575, 0.023687927052378654, -0.015571328811347485, -0.020703712478280067, -0.05141673609614372, 0.037111084908246994, 0.0010544901015236974, -0.07138890773057938, 0.019716715440154076, 0.06483989208936691, -0.032118041068315506, -0.03790068253874779, -0.02347891591489315, -0.008493979461491108, 0.007698576431721449, 0.03353467211127281, -0.05406421050429344, 0.02496521733701229, -0.024477524682879448, -0.009980280883610249, -0.01189041044563055, -0.011077589355409145, 0.04129130765795708, 0.0032657987903803587, 0.01785883866250515, 0.0024050793144851923, 0.01102533657103777, -0.03585701808333397, 0.0281932782381773, -0.012575502507388592, 0.00789597537368536, 0.01739436946809292, 0.04793321713805199, -0.03183935955166817, 0.005733291152864695, -0.007576653268188238, -0.0007046867976896465, 0.012378103099763393, 0.03320954367518425, -0.026915987953543663, 0.050441350787878036, -0.034742292016744614, 0.008505591191351414, -0.007756635081022978, -0.01824202574789524, -0.008081763051450253, 0.01395729836076498, -0.03525320813059807, -0.03376690670847893, 0.03643760457634926, 0.032675404101610184, -0.037738118320703506, 0.0026257021818310022, -0.02323506958782673, -0.0495588593184948, -0.013748287223279476, 0.016964735463261604, -0.06182084605097771, 0.004987237509340048, -0.0714353546500206, -0.007001872640103102, 0.036553721874952316, 0.023850491270422935, -0.00013525849499274045, -0.0006945265340618789, -0.02601027302443981, -0.015025577507913113, -0.046888161450624466, 0.05652589723467827, -0.00034962189965881407, -0.01854393072426319, -0.028541630133986473, 0.005399453919380903, 0.007193466182798147, -0.018648436293005943, 0.01932191662490368, 0.018996788188815117, -0.00175482255872339, -0.025731591507792473, 0.00048769262502901256, 0.039781782776117325, -0.006932202260941267, -0.05712970718741417, -0.007866946049034595, -0.01992572657763958, 0.04679526761174202, -0.021423639729619026, -0.045099955052137375, 0.0033151486422866583, 0.019252246245741844, -0.04839768633246422, 0.037877459079027176, 0.015896456316113472, 0.00837786216288805, 0.023107340559363365, -0.010560867376625538, -0.011925245635211468, -0.009846745990216732, 0.03985145315527916, -0.014828178100287914, 0.037273649126291275, 0.06827696412801743, -0.01904323510825634, 0.011820740066468716, -0.04463548585772514, 0.0049204700626432896, 0.049976881593465805, -0.01202975120395422, -0.016802171245217323, 0.004760808777064085, -0.008604290895164013, 0.03304697945713997, 0.011234347708523273, -0.0025487744715064764, 0.02480265311896801, -0.023734373971819878, 0.03009760193526745, -0.01794012077152729, 0.035183537751436234, 0.04753841832280159, 0.03072463534772396, 0.034765515476465225, 0.00588424364104867, 0.05657234415411949, 0.01550165843218565, 0.031491007655858994, -0.0068509201519191265, 0.007884363643825054, -0.017208581790328026, 0.003437071805819869, 0.05285659059882164, 0.014433379285037518, -0.039805006235837936, 0.007553429808467627, -0.013411547057330608, 0.022631259635090828, 0.01857876591384411, 0.03878317400813103, -0.001090776757337153, -0.005469124298542738, -0.023142175748944283, 0.02450074814260006, -0.01184976939111948, -0.014201144687831402, -0.009550646878778934, 0.0024921672884374857, -0.06349293142557144, -0.01625641994178295, 0.057826410979032516, 0.0014304198557510972, 0.0028013295959681273, 0.030794305726885796, -0.014061803929507732, 0.0006731174071319401, 0.07375770062208176, 0.0345100574195385, 0.011994916014373302, 0.03218771144747734, 0.08959610015153885, 0.048351239413022995, -0.028750641271471977, -0.03235027566552162, -0.024245290085673332, -0.005448803771287203, -0.010380885563790798, 0.04670237377285957, -0.024407854303717613, -0.04307951405644417, -0.05564340576529503, 0.00939969439059496, 0.05494670197367668, 0.06219242140650749, 0.014654002152383327, -0.021783603355288506, 0.00789597537368536, -0.039061855524778366, -0.011054365895688534, -0.026776647195219994, 0.011785904876887798, 0.03409203514456749, 0.016627995297312737, 0.00675802631303668, 0.029633132740855217, -0.01769627444446087, 0.06052033230662346, 0.0037854237016290426, 0.007025096099823713, -0.023525362834334373, -0.003637374145910144, 0.022840270772576332, 0.02907576970756054, 0.035485442727804184, -0.03869028016924858, 0.01291224267333746, 0.029424121603369713, 0.012320044450461864, -0.03395269438624382, 0.043938782066106796, -0.037529107183218, 0.0052252779714763165, -0.019136128947138786, -0.013562499545514584, 0.019577374681830406, -0.04779387637972832, -0.0101834861561656, -0.00016510426939930767, 0.0011335950111970305, 0.020819829776883125, -0.03353467211127281, 0.001891260384581983, 0.025174228474497795, -0.01780078001320362, 0.008319803513586521, -0.03193225339055061, 0.0019565762486308813, 0.007628906052559614, 0.02482587657868862, 0.034022364765405655, -0.03509064391255379, 0.01056667324155569, -0.04721328988671303, 0.027937820181250572, 0.05629366263747215, 0.022666094824671745, -0.02803071402013302, -0.0006317506195046008, -0.06758026033639908, -0.0004521317023318261, -0.03246639296412468, -0.006711579393595457, 0.012122645042836666, -0.036228593438863754, 0.024988440796732903, -0.056758131831884384, 0.04507673159241676, 0.03583379462361336, 0.039363760501146317, 0.013968910090625286, 0.06428252905607224, 0.028448736295104027, -0.024152396246790886, 0.019670268520712852, -0.013307041488587856, -0.032861191779375076, -0.009091983549296856, 0.01373667549341917, 0.04707394912838936, -0.004136678297072649, 0.00741989491507411, -0.009475170634686947, -0.015838397666811943, -0.03687885031104088, -0.007483759429305792, 0.027496574446558952, 0.00029736911528743804, 0.021017229184508324, -0.02422206662595272, -0.03553188964724541, 0.015408764593303204, 0.018056238070130348, 0.04338141903281212, -0.015884844586253166, -0.0353228785097599, -0.035949911922216415, 0.015524881891906261, -0.011100812815129757, 0.01918257586658001, -0.009510005824267864, -0.020111514255404472, 0.04507673159241676, -0.03279152140021324, -0.007100572343915701, 0.05048779770731926, -0.0409429557621479, 0.02353697456419468, -0.06836985796689987, 0.03348822519183159, -0.05977718159556389, 0.016221584752202034, -0.009957057423889637, 0.01705762930214405, 0.017742721363902092, -0.025127781555056572, 0.030515624210238457, -0.04561087116599083, -0.04489094391465187, 0.021516533568501472, 0.025592250749468803, 0.016244808211922646, -0.049373071640729904, -0.010113815777003765, 0.016349313780665398, -0.02030891366302967, -0.004807255696505308, 0.03207159414887428, 0.0041395812295377254, -0.042127352207899094, 0.007059931289404631, -0.01962382160127163, -0.00263586244545877, -0.013156089000403881, -0.06590817123651505, 0.027844926342368126, -0.02320023439824581, 0.020517924800515175, -0.05954494699835777, -0.02315378747880459, 0.011321435682475567, 0.03014404885470867, -0.007733411621302366, 0.011594311334192753, 0.008430114947259426, -0.012703231535851955, -0.043474312871694565, -0.004502447787672281, -0.025151005014777184, 0.00350964511744678, 0.022549977526068687, -0.0023789529222995043, 0.013469605706632137, 0.021841662004590034, 0.012227150611579418, 0.013237371109426022, -0.01483978983014822, -0.0016256420640274882, 0.018694883212447166, 0.019960561767220497, -0.021237852051854134, -0.0039015410002321005, 0.016082243993878365, 0.04163965955376625, -0.010386691428720951, 0.005892952438443899, -0.008244327269494534, 0.01964704506099224, 0.0003155124431941658, -0.004403748083859682, -0.006345809902995825, 0.0007217415259219706, -0.004548894707113504, -0.03244316950440407, -0.0014521918492391706, 0.016384148970246315, 0.0067986673675477505, 0.019298693165183067, 0.0551789365708828, 0.018590377643704414, 0.00689736707136035, 0.0063051688484847546, 0.008441726677119732, 0.06697645038366318, -0.027728809043765068, 0.0009906255872920156, -0.009062954224646091, 0.020181184634566307, 0.03555511310696602, 0.0006357421516440809, -0.022619647905230522, -0.03685562685132027, 0.03009760193526745, -0.019879279658198357, -0.017266640439629555, -0.019612209871411324, 0.034719068557024, -0.0014863013057038188, 0.026497965678572655, 0.0137947341427207, -0.011936857365071774, -0.020483089610934258, 0.07106377929449081, -0.029633132740855217, -0.0033674014266580343, -0.010514420457184315, 0.015095247887074947, 0.022666094824671745, -0.028727417811751366, -0.019252246245741844, 0.029029322788119316, -0.01691828854382038, -0.023281516507267952, -0.02339763380587101, -0.020053455606102943, -0.00036776522756554186, 0.0026213477831333876, 0.03228060528635979, -0.005913272965699434, 0.015675833448767662, -0.022724153473973274, -0.009359053336083889, 0.0006012698286212981, -0.04300984367728233, -0.03346500173211098, -0.034486833959817886, 0.002534259809181094, 0.004273116122931242, 0.017150523141026497, -0.00785533431917429, -0.004795643966645002, -0.01866004802286625, 0.01932191662490368, 0.004319563042372465, -0.029354451224207878, 0.04960530623793602, -0.007605682592839003, 0.010473779402673244, 0.005634591449052095, -0.0189619529992342, 0.004104746039956808, -0.02849518321454525, 0.01703440584242344, -0.01171042863279581, -0.0005239792517386377, 0.010247350670397282, -0.009794493205845356, 0.04886215552687645, -0.03560156002640724, 0.015954514965415, -0.02670697681605816, 0.018056238070130348, -0.012761290185153484, 0.006160022225230932, -0.016883453354239464, 0.016186749562621117, 0.029609909281134605, 0.031676795333623886, 0.009945445694029331, 0.014863013289868832, -0.013678616844117641, -0.014421767555177212, -0.026776647195219994, -0.01785883866250515, 0.047886770218610764, 0.015025577507913113, 0.02596382610499859, -0.011234347708523273, -0.010131233371794224, -0.043172407895326614, -0.00197399384342134, 0.023432468995451927, 0.009945445694029331, 0.013156089000403881, 0.007181854452937841, 0.027937820181250572, -0.013341876678168774, -0.019693491980433464, 0.028146831318736076, 0.01571066863834858, -0.013759898953139782, -0.013481217436492443, -0.03086397610604763, 0.0042760190553963184, 0.02231774292886257, -0.0397353358566761, 0.0281932782381773, -0.01581517420709133, -0.020657265558838844, -0.011884604580700397, 0.038295481353998184, -0.02789137326180935, -0.011362076736986637, 0.018915506079792976, -0.0225732009857893, 0.009388082660734653, 0.005951011087745428, 0.0029522820841521025, 0.029795696958899498, -0.02353697456419468, 0.002598124323412776, 0.03248961642384529, 0.03797035291790962, -0.035485442727804184, 0.00562297971919179, -0.002734562149271369, -0.009916416369378567, 0.03646082803606987, 0.031792912632226944, -0.02775203250348568, -0.06994905322790146, -0.024175619706511497, -0.018149131909012794, 0.0036693064030259848, 0.02984214387834072, 0.014073415659368038, -0.019774774089455605, -0.03478873893618584, -0.013678616844117641, -0.02596382610499859, 0.0035444803070276976, -0.04918728396296501, 0.013980521820485592, -0.01904323510825634, -0.0059800404123961926, 0.02970280312001705, -0.021237852051854134, -0.025661921128630638, 0.03334888443350792, -0.025569027289748192, -0.017591768875718117, -0.005997458007186651, -0.005895855370908976, -0.032977309077978134, 0.009393888525664806, -0.04542508348822594, 0.00944033544510603, 0.0391315259039402, 0.0004717264964710921, -0.01052603218704462, 0.025313569232821465, -0.0008454790222458541, 0.019914114847779274, 0.0007881461060605943, 0.019368363544344902, 0.025499356910586357, 0.0010363467736169696, 0.014363708905875683, -0.00934163574129343, 0.011292406357824802, -0.029261557385325432, 0.004336980637162924, 0.0325128398835659, 0.008163045160472393, -0.004850799683481455, -0.011019530706107616, 0.011048560030758381, -0.007826304994523525, 0.007669547107070684, -0.0020828538108617067, -0.007803082000464201, 0.03455650433897972, 0.004264407325536013, 0.027659138664603233, 0.026196060702204704, 0.010723431594669819, -0.011623340658843517, -0.017591768875718117, 0.028262948617339134, -0.003390624886378646, 0.009933833964169025, 0.0017969150794669986, -0.01645381934940815, -0.016604771837592125, -0.006624491419643164, 0.005591047462075949, 0.006177439820021391, -0.023722762241959572, 0.014990742318332195, 0.015443599782884121, 0.015838397666811943, 0.004226669203490019, 0.024686535820364952, -0.0021917137783020735, -0.04417101666331291, -0.039619218558073044, -0.043311748653650284, 0.034626174718141556, -0.002824553055688739, -0.02231774292886257, 0.03186258301138878, -0.025917379185557365, -0.024384630843997, 0.011292406357824802, 0.003892832202836871, 0.01777755655348301, 0.016744112595915794, 0.015536493621766567, -0.04728296026587486, -0.03678595647215843, -0.04684171453118324, 0.018276860937476158, 0.013318653218448162, -0.0003955245192628354, -0.025754814967513084, 0.005184636916965246, 0.004188931081444025, 0.010816325433552265, 0.012482608668506145, -0.03274507448077202, -0.0007482307846657932, 0.05657234415411949, 0.0033151486422866583, -0.01401535701006651, 0.0007540366495959461, 0.010531838051974773, -0.05694391950964928, 0.012447773478925228, -0.002175747649744153, 0.010897607542574406, -0.015327482484281063, 0.04802611097693443, -0.015408764593303204, -0.03339533135294914, 0.007135407533496618, 0.009991892613470554, -0.037854235619306564, 0.011571087874472141, 0.03954954817891121, 0.044821273535490036, -0.01607063226401806, 0.0031554873567074537, 0.026474742218852043, -0.01313286554068327, 0.029935037717223167, -0.002936315955594182, 0.0123897148296237, -0.018776165321469307, 0.025452909991145134, 0.015466823242604733, -0.0014638035790994763, -0.00043616557377390563, 0.03365078940987587, -0.01058409083634615, -0.0016416081925854087, -0.00978288147598505, 0.03455650433897972, 0.08174657076597214, -0.030167272314429283, 0.03058529458940029, 0.020761771127581596, -0.016384148970246315, -0.0066361031495034695, -0.0010639246320351958, -0.05833732709288597, -0.014491437934339046, 0.03882962092757225, -0.0027577856089919806, 0.020634042099118233, -0.01651187799870968, 0.03601958230137825, -0.0030683993827551603, -0.046284351497888565, 0.0076114884577691555, -0.006293557118624449, -0.015431988053023815, -0.028262948617339134, -0.008691378869116306, 0.004775323439389467, -0.0013469605473801494, -0.002824553055688739, -0.006154216360300779, 0.01558294054120779, 0.030956869944930077, -0.0006927122012712061, -0.007147019263356924, -0.02171393297612667, 0.02893642894923687, 0.0029595394153147936, 0.024036278948187828, 0.0020160863641649485, -0.05285659059882164, 0.02645151875913143, -0.018938729539513588, 0.053228165954351425, 0.00021191405539866537, 0.04753841832280159, 0.005097548943012953, 0.0073386128060519695, 0.019972173497080803, -0.011153065599501133, 0.008319803513586521, 0.001987057039514184, 0.02155136875808239, 0.044380027800798416, 0.012482608668506145, 0.012668396346271038, 0.013260594569146633, 0.014793342910706997, -0.022724153473973274, 0.017104076221585274, 0.02670697681605816, -0.0055504064075648785, -0.01425920333713293, -0.025197451934218407, -0.02700888179242611, -0.004772420506924391, 0.008615902625024319, -0.04031592234969139, -0.012099421583116055, -0.00833722110837698, -0.005335589405149221, 0.02279382385313511, -0.006450315471738577, -0.0004176593793090433, 0.027635915204882622, -0.007797276135534048, 0.03455650433897972, -0.0019348043715581298, 0.002648925641551614, -0.0014064706629142165, -0.014073415659368038, 0.008511397056281567, -0.017905285581946373, -0.0027113386895507574, -0.010096398182213306, 0.014909460209310055, 0.05550406500697136, -0.029447345063090324, -0.007565041538327932, -0.013771510683000088, -0.0026068331208080053, 0.011867186985909939, -0.03304697945713997, -0.012157480232417583, -0.026753423735499382, -0.010555061511695385, 0.0026663432363420725, 0.016140302643179893, -0.005367521662265062, 0.020494701340794563, 0.001979799708351493, 0.0463540218770504, 0.009155848063528538, 0.0007460535853169858, 0.029354451224207878, 0.03725042566657066, 0.018044626340270042, 0.01920579932630062, -0.0035560920368880033, -0.01920579932630062, -0.04203445836901665, -0.002551677403971553, -0.0012460836442187428, 0.0020015717018395662, -0.01576872728765011, -0.007565041538327932, -0.006560626905411482, 0.018033014610409737, 0.007489565294235945, 0.006572238635271788, 0.023188622668385506, -0.029006099328398705, 0.009237130172550678, 0.007042513694614172, 0.03469584509730339, 0.025336792692542076, -0.009852551855146885, 0.014166309498250484, 0.007657935377210379, -0.024477524682879448, 0.021725544705986977, 0.020401807501912117, 0.020854664966464043, -0.000451405969215557, -0.0027563341427594423, 0.0025821581948548555, -0.0033615955617278814, -0.0008904744754545391, 0.07041352242231369, -0.005660717841237783, -0.010880189947783947, 0.01920579932630062, -0.002715693088248372, 0.0038638028781861067, -0.017359534278512, 0.00974224042147398, -0.009289382956922054, -0.0010283637093380094, 0.008650737814605236, 0.010694402270019054, -0.021876497194170952, 0.013109642080962658, 0.009573870338499546, -0.023606644943356514, 0.019310304895043373, 0.030631741508841515, 0.004325368907302618, -0.009062954224646091, 0.015211365185678005, -0.02205067314207554, -0.014433379285037518, 0.01263356115669012, 0.018392978236079216, 0.007565041538327932, -0.025174228474497795, -0.005109160672873259, 0.01785883866250515, -0.013225759379565716, 0.024105949327349663, 0.019368363544344902, -0.006566432770341635, -0.0014006647979840636, 0.0882955864071846, -0.026915987953543663, 0.0005733291036449373, -0.022143566980957985, -0.011013724841177464, -0.07714832574129105, -0.020401807501912117, 0.025429686531424522, -0.016790559515357018, -0.025197451934218407, 0.03265218064188957, -0.04238281026482582, -0.037854235619306564, 0.039781782776117325, 0.015002354048192501, 0.03987467661499977, -0.008354638703167439, 0.024013055488467216, 0.030236942693591118, 0.013585723005235195, 0.026381848379969597, 0.0004833382263313979, 0.0064154802821576595, -0.0010269122431054711, 0.032396722584962845, 0.00482177035883069, 0.06497923284769058, 0.04291694983839989, 0.025801261886954308, 0.01387601625174284, 0.0030625935178250074, -0.04765453562140465, -0.022399025037884712, -0.01766143925487995, -0.033302437514066696, -0.02747335098683834, -0.02369953878223896, -0.008563649840652943, 0.005762320477515459, -0.005120772402733564, 0.0016416081925854087, 0.01934514008462429, 3.864528480335139e-05, 0.012180703692138195, 0.011524640955030918, 0.05202054604887962, -0.02369953878223896, -0.0015240394277498126, 0.022642871364951134, 0.0022192916367202997, 0.012877407483756542, -0.013585723005235195, -0.001637253793887794, -0.02419884316623211, -0.0015704863471910357, -0.012587114237248898, -0.0024210454430431128, 0.02392016164958477, 0.008592679165303707, -0.010862772352993488, -0.005956816952675581, 0.007536012213677168, 0.010218321345746517, -0.01291224267333746, -0.012540667317807674, 0.0073386128060519695, 0.03441716358065605, 0.0294008981436491, 0.01506041269749403, -0.0259870495647192, -0.00781469326466322, -0.03272185102105141, -0.0005432111793197691, -0.003547383239492774, -0.036994967609643936, 0.02540646307170391, 0.022840270772576332, 0.01964704506099224, -0.009144236333668232, -0.0247794296592474, 0.030933646485209465, -0.0008970060735009611, 0.004322465974837542, 0.016825394704937935, 0.003605441888794303, 0.03567123040556908, 0.001831750269047916, 0.010026727803051472, 0.020134737715125084, -0.00859848503023386, 0.04463548585772514, -0.0101834861561656, 0.015246200375258923, -0.018265249207615852, -0.015687445178627968, 0.03720397874712944, 0.013701840303838253, -0.025011664256453514, 0.06507212668657303, -0.04489094391465187, -0.017080852761864662, -0.013725063763558865, 0.009707405231893063, 0.0017446622950956225, 0.012378103099763393, 0.01550165843218565, -0.01587323285639286, -0.04444969817996025, 0.03999079391360283, -0.005710067693144083, 0.00723991310223937, 0.0395263247191906, 0.030980093404650688, 0.004368912894278765, 0.01758015714585781, 0.006084545981138945, -0.0325128398835659, 0.01453788485378027, 0.010456361807882786, -0.011460776440799236, 0.02064565382897854, 0.05996296927332878, 0.008023704402148724, -0.022851882502436638, 0.0005442997789941728, -0.023873714730143547, 0.012830960564315319, -0.011321435682475567, -0.0006415480165742338, 0.004011852201074362, 0.02083144150674343, -0.01699957065284252, -0.01233165618032217, 0.033441778272390366, 0.009202294982969761, 0.00015512543905060738, -0.022120343521237373, -0.011356270872056484, -0.0046011474914848804, -0.017324699088931084, -0.0041395812295377254, 0.07199271768331528, 0.0032774105202406645, 0.011124036274850368, 0.010671178810298443, 0.007030901964753866, -0.018497483804821968, 0.025499356910586357, 0.005448803771287203, -0.011936857365071774, 0.020622430369257927, -0.014897848479449749, 0.009295188821852207, 0.04712039604783058, 0.015884844586253166, 0.012343267910182476, 0.017301475629210472, -0.006868337746709585, 0.016906676813960075, 0.02207389660179615, 0.013667005114257336, 0.0023092825431376696, -0.01403858046978712, 0.04468193277716637, -0.01733631081879139, -0.05996296927332878, -0.013457993976771832, 0.026474742218852043, 0.02703210525214672, 0.0021481697913259268, 0.013783122412860394, -0.0022628356236964464, 0.038620609790086746, -0.026637306436896324, 0.023084117099642754, 0.006444509606808424, -0.01854393072426319, 0.007431506644934416, 0.022886717692017555, 0.04356720671057701, 0.007414089050143957, -0.02524389885365963, 0.03764522448182106, -0.002358632395043969, 0.016651218757033348, 0.011652369983494282, -0.0002518293622415513, -0.015350705944001675, -0.03864383324980736, -0.009869969449937344, -0.03376690670847893, -0.0032309636007994413, -0.004093134310096502, -0.007872751913964748, -0.009626123122870922, -0.00899908971041441, -0.006125187035650015, 0.016651218757033348, -0.014665613882243633, -0.00583489378914237, -0.0036286653485149145, 0.02375759743154049, 0.02147008664906025, -0.03146778419613838, -0.0009296640637330711, 0.0010232835775241256, 0.0027505282778292894, -0.018392978236079216, -0.005907467100769281, 0.018091073259711266, -0.0033935278188437223, -0.007878557778894901, -0.038295481353998184, -0.02673020027577877, 0.005631688516587019, 0.005858117248862982, 0.01807946152985096, -0.0469578318297863, 0.02895965240895748, -0.005428483244031668, 0.028588077053427696, 0.001721438835375011, -0.038597386330366135, -0.021946167573332787, 0.02733401022851467, -0.007779858540743589, -0.008331415243446827, -0.01970510371029377, 0.03987467661499977, -0.027961043640971184, -0.01928708143532276, 0.025499356910586357, -0.0028869661036878824, 0.016987958922982216, -0.009597093798220158, 0.017533710226416588, 0.008029510267078876, 0.01749887503683567, -0.020796606317162514, -0.034324269741773605, -0.017974955961108208, -0.017603380605578423, -0.006932202260941267, -0.030469177290797234, 0.0012163285864517093, 0.03808647021651268, 0.0028274559881538153, 0.019832832738757133, 0.014874625019729137, -0.02243386022746563, 0.024152396246790886, -0.05949850007891655, -0.003091622842475772, 0.03132844343781471, -0.03413848206400871, -0.014363708905875683, 0.022410636767745018, 0.017324699088931084, -0.021144958212971687, -0.013841181062161922, -0.0022497724276036024, 0.01335348840802908, 0.027194669470191002, 0.014085027389228344, 0.017673050984740257, -0.03053884766995907, 0.008412697352468967, -0.010020921938121319, 0.02149331010878086, 0.006543209310621023, -0.00912101287394762, 0.01269161980599165, 0.05355329439043999, 0.015211365185678005, 0.015304259024560452, 0.021679097786545753, -0.0050917430780828, -0.016024185344576836, -0.007083154749125242, 0.01691828854382038, 0.015548105351626873, 0.013992133550345898, 0.012134256772696972, -0.008946836926043034, -0.007623100187629461, -0.02171393297612667, 0.00012618683103937656, -0.013341876678168774, -0.008482367731630802, 0.024036278948187828, -0.009370665065944195, -0.006125187035650015, 0.02612639032304287, -0.018125908449292183, 0.0037389767821878195, 7.320832082768902e-05, 0.01062473189085722, 0.0058436025865375996, -0.042150575667619705, 0.016326090320944786, -0.011031142435967922, 0.011135648004710674, -0.002357180928811431, 0.006334198173135519, -0.011902022175490856, -0.020517924800515175, -0.006792861502617598, -0.00597423454746604, 0.0027127901557832956, -0.05401776358485222, 0.032419946044683456, -0.039781782776117325, -0.042731162160634995, -0.0037447826471179724, 0.013423158787190914, -0.012842572294175625, 0.024291737005114555, 0.02851840667426586, 0.007170242723077536, -0.01573389209806919, 0.003852191148325801, -0.007472147699445486, 0.0004321740416344255, -0.031235551461577415, -0.011501417495310307, 0.00258651259355247, -0.010682790540158749, 0.035648006945848465, -0.009916416369378567, 0.03072463534772396, -0.0053820363245904446, 0.026614082977175713, -0.01739436946809292, 0.01727825216948986, -0.024732982739806175, 0.0075011770240962505, -0.03381335362792015, 0.010299603454768658, -0.00942291785031557, -0.010723431594669819, 0.00829658005386591, 0.002345569198951125, -0.004397942218929529, 0.0004158450465183705, -0.01171042863279581, -0.0019841541070491076, -0.03634471073746681, -0.009091983549296856, 0.0011401266092434525, 0.011513029225170612, -0.005646203178912401, 0.005617173854261637, -0.03365078940987587, 0.010984695516526699, -0.03304697945713997, -0.008180462755262852, -0.028123607859015465, 0.004151192959398031, 0.00801789853721857, 0.012261985801160336, -0.0317000187933445, -0.003201934276148677, -0.006914784666150808, 0.009829328395426273, 0.0075592356733977795, 0.02213195525109768, 0.011013724841177464, 0.022584812715649605, 0.018764553591609, 0.005515571217983961, -0.01096727792173624, 0.01425920333713293, -0.008081763051450253, -0.005503959488123655, 0.028425512835383415, -0.013237371109426022, 0.012238762341439724, -0.03885284438729286, 0.018276860937476158, -0.024152396246790886, 0.02408272586762905, 0.020703712478280067, -0.010758266784250736, -0.01629125513136387, -0.03320954367518425, 0.019147740676999092, -0.03197870030999184, 0.0027171445544809103, -0.05564340576529503, -0.012865795753896236, -0.0684163048863411, -0.00143622572068125, -0.005416871514171362, 0.009608705528080463, -0.0036664034705609083, 0.023989832028746605, -0.05931271240115166, -0.017545321956276894, 0.0018157841404899955, -0.02295638807117939, 0.004197639878839254, -0.008888778276741505, -0.03971211239695549, 0.03557833656668663, 0.0061426046304404736, -0.003123555099591613, 0.0475616417825222, -0.0019188382430002093, -0.03457972779870033, -0.0026736005675047636, 0.02656763605773449, -0.03437071666121483, 0.0015037189004942775, -0.027705585584044456, -0.030956869944930077, -0.01492107193917036, -0.019112905487418175, 0.022224849089980125, -0.004058299120515585, -0.03058529458940029, 0.02091272361576557, 0.020320525392889977, -0.003474809927865863, -0.0038289676886051893, -0.024268513545393944, -0.022782212123274803, -0.007059931289404631, 0.016651218757033348, 0.04389233514666557, 0.010717625729739666, -0.0024137881118804216, 0.01092663686722517, -0.0031932254787534475, -0.012621949426829815, -0.05503959581255913, 0.02923833392560482, -0.005239792633801699, -0.018276860937476158, -0.003138069761916995, -0.01940319873392582, -0.01904323510825634, 0.009132624603807926, 0.007791470270603895, -0.012517443858087063, -0.008952642790973186, -0.006450315471738577, 0.005727485287934542, 0.019310304895043373, -0.017382757738232613, 0.005562018137425184, -0.008325609378516674, -0.020111514255404472, -0.0030422729905694723, 0.0006800118717364967, 0.005666523706167936, -0.007292165886610746, -0.01607063226401806, -0.019008399918675423, 0.010009310208261013, 0.004368912894278765, 0.009411306120455265, 0.0030306612607091665, -0.013806345872581005, -0.010514420457184315, -0.028123607859015465, 0.04602889344096184, -0.051881205290555954, -0.03864383324980736, -0.004482127260416746, -0.01645381934940815, -0.0019057750469073653, 0.010949860326945782, -0.03427782282233238, 0.018927117809653282, -0.05875534936785698, -0.04705072566866875, 0.021261075511574745, -0.009028119035065174, -0.017324699088931084, 0.025313569232821465, -0.029935037717223167, 0.0037012386601418257, -0.015803562477231026, -0.017963344231247902, 0.030956869944930077, -0.013899239711463451, 0.005231083836406469, 0.027659138664603233, 0.0237808208912611, 0.018567154183983803, -0.016639607027173042, -0.019252246245741844, 0.02193455584347248, -0.024407854303717613, -0.04633079841732979, 0.03437071666121483, -0.007443118374794722, 0.02614961378276348, 0.013852792792022228, 0.07148180156946182, 0.005033684428781271, 0.005135287065058947, 0.03232705220580101, 0.008987477980554104, -0.0010232835775241256, 0.03790068253874779, -0.008389473892748356, 0.01697634719312191, -0.0101834861561656, 0.0027461738791316748, -0.0013455090811476111, -0.0073908655904233456, 0.004784032236784697, -0.02405950240790844, 0.009144236333668232, 0.04723651334643364, -0.014154697768390179, 0.003228060668334365, 0.01744081638753414, 0.0026082845870405436, 0.007750829216092825, -0.013713452033698559, -0.03437071666121483, 0.024570418521761894, -0.013469605706632137, 0.029029322788119316, 0.0003320228715892881, -0.01423597987741232, 0.011605923064053059, 0.02273576520383358], [-0.01709401234984398, 0.005553463939577341, 0.026372423395514488, -0.007470793556421995, -0.05872148275375366, 0.024219999089837074, 0.0011375980684533715, 0.014972932636737823, 0.05625559762120247, 0.006258748937398195, 0.021691422909498215, -0.016216324642300606, 0.028232285752892494, -0.029695097357034683, 0.0014745674561709166, -0.009168701246380806, -0.013395184651017189, -0.022506417706608772, -0.014241526834666729, 0.0046183085069060326, 0.038492873311042786, 0.05236869677901268, -0.007251371629536152, -0.008531332947313786, 0.015704339370131493, -0.020134571939706802, -0.017658239230513573, -0.04146029055118561, 0.01160846371203661, -0.03262072429060936, 0.0536225363612175, -0.010730776004493237, 0.043132077902555466, -0.03483584150671959, 0.017031319439411163, -0.012015962041914463, -0.04593231901526451, 0.000285868882201612, 0.05433304235339165, -0.025703709572553635, 0.004620920866727829, -0.0273337010294199, 0.04689359664916992, 0.0027558347210288048, -0.040478117763996124, 0.037845056504011154, -0.05174177512526512, -0.023906540125608444, -0.04114683344960213, -0.02808600477874279, -0.044302329421043396, -0.023593079298734665, 0.006300543434917927, 0.007543934043496847, -0.016613373532891273, -0.03947504609823227, -0.021607832983136177, 0.038179412484169006, -0.00720957713201642, 0.013332492671906948, 0.031617652624845505, -0.003340959781780839, -0.0028185267001390457, -0.017125356942415237, -0.0008515659719705582, 0.03968401998281479, 0.03600608929991722, 0.04283951595425606, -0.005381061229854822, -0.007899188436567783, -0.008322359062731266, 0.08877183496952057, 0.02396923117339611, -0.047144364565610886, -0.01551626343280077, 0.03567173331975937, 0.04789666831493378, 0.006305767688900232, 0.03790774568915367, -0.046392060816287994, -0.01441915426403284, 0.007946208119392395, 0.031011629849672318, 0.028044208884239197, 0.01504607405513525, 0.020249508321285248, -0.037113647907972336, 0.032265469431877136, -0.06457273662090302, 0.03163854777812958, -0.00746556930243969, 0.005652726162225008, -0.04614129289984703, 0.05617200955748558, 0.0006380214472301304, 0.009450814686715603, 0.05521073192358017, -0.003118925727903843, -0.007251371629536152, 0.027041137218475342, -0.011483079753816128, 0.013133968226611614, -0.005751988384872675, 0.062232233583927155, 0.04910871386528015, -0.023781156167387962, -0.036152370274066925, 0.007862618193030357, 0.041418496519327164, -0.0015516263665631413, 0.009398572146892548, -0.002789792837575078, 0.007862618193030357, -0.0055116694420576096, 0.009445590898394585, 0.015087868086993694, -0.06114557012915611, -0.03972581401467323, -0.009670237079262733, -0.01836874894797802, 0.0009338491945527494, -0.010762122459709644, -0.006441600155085325, -0.0032861041836440563, 0.010271035134792328, -0.03611057624220848, -0.05834532901644707, -0.01034417562186718, -0.02933984436094761, -0.018044840544462204, 0.05880507081747055, 0.0007503445376642048, 0.053162794560194016, 0.0044798641465604305, 0.04589052498340607, -0.006864771246910095, -0.008933606557548046, -0.005522117950022221, 0.0008874832419678569, -0.048607178032398224, 0.0077842534519732, 0.04171105846762657, 0.03295508027076721, 0.013938515447080135, 0.010218791663646698, -0.035943400114774704, -0.06030967831611633, 0.012266729958355427, -0.007220025639981031, -0.029632406309247017, -0.035295579582452774, 0.016435746103525162, 0.019925599917769432, 0.020886875689029694, -0.007564831525087357, 0.01309217419475317, -0.012392113916575909, 0.018086634576320648, -0.0005279839388094842, 0.0325162373483181, -0.06578477472066879, -0.014554986730217934, -0.003988776821643114, -0.034564174711704254, 0.01182788610458374, -0.021346617490053177, 0.0005919820396229625, -0.05487637594342232, -0.045765139162540436, -0.03420891985297203, -0.03834659233689308, -0.01167115569114685, 0.012632432393729687, 0.02183770388364792, -0.059264812618494034, 0.0015320350648835301, 0.026309732347726822, 0.005715418141335249, 0.02164962887763977, 0.009403795935213566, -0.012099551036953926, 0.03431340679526329, -0.056088417768478394, 0.03326854109764099, -0.0009220944484695792, 0.03239085152745247, 0.03769877180457115, -0.025264864787459373, -0.024449869990348816, 0.049443069845438004, 0.02850395068526268, -0.028984589502215385, 0.05228510499000549, 0.04085426777601242, -0.07652600109577179, 0.016184978187084198, 0.00500229699537158, -0.010741224512457848, 0.029632406309247017, 0.0005870842142030597, 0.012057756073772907, -0.053162794560194016, -0.008238770067691803, 0.009461264126002789, -0.05328817665576935, -0.005793783348053694, 0.04948486387729645, -0.03082355298101902, 0.07309883832931519, -0.0003332143824081868, 0.059808142483234406, -0.039642225950956345, -0.019967393949627876, -0.028211388736963272, 0.015756582841277122, 0.0061281402595341206, -0.0015594628639519215, -0.033101361244916916, 0.05541970580816269, 0.0009266657289117575, 0.01483710017055273, -0.024679740890860558, 0.012621983885765076, 0.029298048466444016, 0.04446950554847717, -0.020980913192033768, -0.038179412484169006, -0.007904413156211376, -0.008541781455278397, -0.08400724828243256, -0.028232285752892494, -0.009785172529518604, -0.0029256255365908146, -0.017417920753359795, 0.013113071210682392, -0.012172691524028778, 0.01441915426403284, -0.006556535605341196, 0.006316216196864843, 0.003873841604217887, -0.02691575326025486, 0.009680685587227345, 0.009194822981953621, 0.013813131488859653, 0.0016443582717329264, -0.018379196524620056, -0.003933921456336975, -0.03863915428519249, 0.023049749433994293, 0.01639395020902157, 0.010114304721355438, 0.0230079535394907, -0.005506445188075304, -0.027271008118987083, -0.022130265831947327, 0.022757185623049736, 0.041543882340192795, 0.04530540108680725, 0.034585073590278625, -0.023906540125608444, -0.023070646449923515, -0.015025176107883453, -0.00994190201163292, -0.019006116315722466, -0.01213089656084776, -0.04252605512738228, 0.02754267305135727, -0.028692027553915977, 0.018818041309714317, 0.07915906608104706, -0.016843244433403015, 0.05165818706154823, 0.027814339846372604, -0.03786595165729523, -0.024721534922719002, 0.04881615191698074, 0.04041542485356331, -0.003769354894757271, 0.019842009991407394, 0.0117651941254735, -0.008296238258481026, -0.00038235573447309434, 0.012747367843985558, 0.01974797248840332, -0.01641484908759594, -0.043550025671720505, 0.047980256378650665, -0.005642277654260397, -0.011650258675217628, -0.002541637048125267, 0.08162494748830795, -0.00396004319190979, -0.0038346590008586645, -0.013844477944076061, 0.04718615859746933, -0.025160379707813263, 0.019894253462553024, 0.018504580482840538, 0.0378868505358696, 0.004315297584980726, -0.016132734715938568, -0.019862907007336617, -0.04363361373543739, -0.020176365971565247, -0.030635477975010872, 0.04252605512738228, 0.009826966561377048, 0.020343545824289322, -0.006781181786209345, 0.02449166402220726, 0.02524396777153015, 0.0347522497177124, -0.05149100720882416, -0.06657887250185013, 0.01896432228386402, -0.008614921942353249, 0.02004053443670273, 0.04338284581899643, 0.010490456596016884, 0.042923104017972946, 0.025787297636270523, -0.006112467497587204, 0.04509642720222473, -0.03228636831045151, 0.05391509830951691, -0.007852169685065746, 0.029089076444506645, -0.008980625309050083, -0.06917014718055725, 0.013551915064454079, -0.02977868728339672, 0.026121655479073524, 0.013395184651017189, -0.021775012835860252, -0.023906540125608444, -0.006279645953327417, 0.02944432944059372, -0.009236617013812065, -0.03197290748357773, -0.04093785956501961, 0.02384384721517563, -0.02511858381330967, 0.011692052707076073, 0.013196660205721855, 0.021116746589541435, 0.040290042757987976, -0.002956971526145935, 0.05734225735068321, 0.03243264928460121, 0.0023287455551326275, 0.04031093791127205, -0.0031685568392276764, -0.013436979614198208, 0.028880102559924126, -0.01826426200568676, 0.005783334374427795, 0.02162873186171055, -0.004236932378262281, -0.023593079298734665, 0.0033461840357631445, -0.033498410135507584, -0.007794701959937811, 0.0005221065948717296, 0.021691422909498215, 0.01657157763838768, 0.03159675374627113, -0.04150208830833435, 0.020155468955636024, -0.00015468918718397617, -0.018076185137033463, 0.0006719796219840646, -0.02332141436636448, 0.00396004319190979, -0.02722921408712864, 0.020458480343222618, -0.008703735657036304, 0.021398860961198807, 0.022401932626962662, 0.003163332585245371, 0.0040357960388064384, -0.0027166521176695824, -0.0034349977504462004, 0.04869076609611511, 0.003207739209756255, 0.039203379303216934, 0.004438069183379412, -0.010553148575127125, -0.02584999054670334, 0.07247192412614822, -0.015422225929796696, -0.01447139773517847, -0.020771941170096397, 0.0428813099861145, 0.024052821099758148, 0.019653933122754097, 0.013750439509749413, 0.017031319439411163, 0.05245228484272957, 0.030322017148137093, -0.006593105848878622, -0.019319577142596245, -0.05328817665576935, 0.019110603258013725, -0.033101361244916916, 0.020145021378993988, 0.00638413242995739, -0.010103856213390827, 0.016529783606529236, 0.02616344951093197, -0.05391509830951691, 0.06591016054153442, 0.03103252686560154, 0.01842099241912365, -0.0022033615969121456, 0.037113647907972336, -0.00545942597091198, -0.01751195825636387, 0.045430783182382584, 0.0449710413813591, -0.041857339441776276, 0.02342590130865574, 0.01943451166152954, -0.006185607984662056, -0.0018337402725592256, -0.032578930258750916, 0.005417631473392248, -0.027521776035428047, 0.015234149992465973, 0.0249096117913723, -0.01171295065432787, 0.013133968226611614, -0.0029439106583595276, -0.03264161944389343, 0.04062439873814583, -0.04672641679644585, 0.020186815410852432, 0.05307920277118683, -0.036047883331775665, 0.046601034700870514, 0.025160379707813263, 0.04077067971229553, -0.007747683208435774, 0.024136409163475037, -0.024470767006278038, -0.04127221554517746, 0.004422396421432495, -0.04685180261731148, -0.0129772387444973, 0.04085426777601242, -0.02883830852806568, -0.05161639302968979, 0.01229807548224926, -0.03558814525604248, -0.007476017810404301, -0.03377007693052292, -0.048732560127973557, -0.04100055247545242, 0.0055116694420576096, 0.0032469218131154776, -0.0045164343900978565, 0.024867815896868706, 0.023091543465852737, 0.03379097208380699, 0.03623596206307411, 0.02819049172103405, -0.005814680363982916, -0.009774724021553993, -0.0030666824895888567, -0.008040245622396469, 0.01241301093250513, -0.045430783182382584, 0.039307866245508194, -0.009252290241420269, -0.00022431972320191562, -0.0031032527331262827, -0.013384736143052578, -0.014126591384410858, -0.061061982065439224, -0.04139760136604309, -0.06382042914628983, 0.03870184347033501, 0.018974769860506058, -0.04283951595425606, -0.010835262946784496, 0.056757133454084396, 0.02923535741865635, 0.054124072194099426, -0.02839946374297142, 0.014460948295891285, -0.02702024020254612, 0.04125132039189339, 0.020291302353143692, 0.06678784638643265, -0.006504292134195566, 0.021221233531832695, 0.009278411976993084, -0.03092803992331028, 0.032996874302625656, 0.021064503118395805, -0.014074347913265228, -0.022673597559332848, -0.035838913172483444, -0.004900422412902117, -0.03939145803451538, 0.04973563179373741, 0.016352156177163124, -0.0019003504421561956, -0.015161008574068546, -0.03776146471500397, -0.008264891803264618, 0.005736315622925758, 0.025703709572553635, -0.0034689558669924736, -0.014816203154623508, 0.014231078326702118, -0.0010605392744764686, 0.007779029197990894, 0.04246336221694946, -0.0023287455551326275, 0.01172339916229248, 0.007507363799959421, -0.009743377566337585, -0.0011264963541179895, -0.014502743259072304, -0.05078049749135971, -0.0032129636965692043, 0.029527919366955757, -0.08045469969511032, 4.1911994230758864e-06, -0.005689296405762434, -0.011838334612548351, -0.008437294512987137, -0.024449869990348816, 0.0300921481102705, 0.034668661653995514, -0.011106927879154682, 0.03124150075018406, 0.020030084997415543, -0.00799845065921545, 0.006566984113305807, 0.036570318043231964, 0.009435142390429974, -0.016080491244792938, 0.004095875658094883, 0.011430836282670498, -0.022778084501624107, 0.0013975085457786918, 0.006389357149600983, -0.005297471769154072, 0.00680730352178216, 0.021775012835860252, -0.006802079267799854, 0.020824184641242027, -0.0428813099861145, -0.009884434752166271, 0.02047937735915184, 0.03999748080968857, 0.018389645963907242, 0.015902863815426826, -0.001528116874396801, -0.002868157811462879, 0.011420387774705887, -0.03326854109764099, -0.011305452324450016, 0.0015555445570498705, 0.03870184347033501, 0.0008855241467244923, -0.019925599917769432, 0.004182077012956142, -0.0004336194833740592, 0.034041740000247955, -0.015359533950686455, -0.018797144293785095, 0.010657635517418385, 0.04881615191698074, 0.002121078548952937, 0.04421873763203621, -0.06306812912225723, 0.03905709832906723, 0.03780325874686241, -0.0046444302424788475, 0.050404347479343414, 0.05792738497257233, 0.024575253948569298, 0.009858313016593456, 0.009362000972032547, -0.023175133392214775, 0.01742836833000183, 0.001087966957129538, 0.006034102290868759, -0.024951405823230743, -0.0017919455422088504, 0.042379774153232574, 0.0006370418705046177, 0.006337113678455353, 0.0061072432436048985, -0.002277808263897896, 0.02683216519653797, 0.007747683208435774, 0.021064503118395805, 0.01969572901725769, -0.01798214763402939, -0.052828434854745865, 0.04697718471288681, -0.011598015204071999, -0.05370612442493439, 0.010103856213390827, 0.003014439018443227, 0.02321692742407322, -0.018128428608179092, 0.008343257009983063, -0.0018964322516694665, 0.03909889608621597, 0.015453571453690529, 0.0027793440967798233, -0.010354624129831791, -0.03991388902068138, -0.0010494375601410866, -0.018149325624108315, 0.05650636553764343, 0.003918248228728771, -0.04363361373543739, -0.040290042757987976, -0.04204541817307472, -0.0378868505358696, 0.0005864311824552715, -0.016770102083683014, -0.011702502146363258, 0.03688377887010574, 0.023384105414152145, 0.004197750240564346, 0.014283321797847748, 0.006561759859323502, -0.00966501235961914, 0.0030640701297670603, -0.016550680622458458, -0.023927437141537666, -0.0004741080629173666, -0.025202173739671707, -0.010662860237061977, 0.001576441922225058, -0.029089076444506645, 0.04072888568043709, -0.014690819196403027, 0.06691323220729828, -0.006274421699345112, -0.0045425561256706715, 0.02946522831916809, 0.03103252686560154, -0.034271612763404846, 0.06110377609729767, 0.037636082619428635, -0.0399765819311142, 0.0014079572865739465, 0.006796855013817549, -0.0011264963541179895, 0.017804520204663277, 0.01922553777694702, -0.005417631473392248, 0.019058359786868095, -0.040499016642570496, 0.014763959683477879, -0.02986227720975876, 0.008176078088581562, 0.029736893251538277, 0.035107504576444626, 0.02323782444000244, -0.008249218575656414, 0.019444961100816727, -0.05132382735610008, -0.022046677768230438, 0.011535323224961758, 0.010647187009453773, -0.0311370138078928, 0.02107495255768299, -0.016811897978186607, -0.03966312110424042, 0.02860843762755394, 0.008181302808225155, 0.02138841152191162, 0.014450499787926674, -0.03051009401679039, -0.03494032844901085, 0.02227654866874218, -0.00683864951133728, -0.017125356942415237, -0.03305956721305847, -0.030238429084420204, -0.03748980164527893, -0.007152109406888485, -0.02194219082593918, -0.005323593504726887, 0.03888992220163345, 0.03479404374957085, -0.004876913037151098, 0.004307460971176624, -0.031011629849672318, 0.02798151783645153, -0.02281987853348255, -0.023509489372372627, 0.006028878036886454, 0.024428972974419594, 0.016216324642300606, -0.032767005264759064, -0.03017573617398739, 0.0399765819311142, -0.00720957713201642, -0.021461552008986473, 0.035838913172483444, -0.0017109684413298965, -0.025703709572553635, -0.004268278367817402, 0.014492294751107693, 0.03872274234890938, 0.028148695826530457, 0.02011367492377758, 0.029381638392806053, -0.011180068366229534, 0.0045530046336352825, 0.030029455199837685, 0.022318342700600624, 0.03916158527135849, 0.009628442116081715, 0.000932543131057173, 0.008170854300260544, -0.020991362631320953, -0.03571352735161781, -0.031178807839751244, -0.018609067425131798, -0.006828201003372669, 0.0203226488083601, -0.030489197000861168, -0.016216324642300606, 0.006953584961593151, 0.027041137218475342, 0.03028022311627865, -0.022569110617041588, -0.011692052707076073, 0.008196975104510784, -0.013259352184832096, 0.041752856224775314, 0.0135728120803833, -0.019915150478482246, -0.0026957548689097166, -0.03608968108892441, 0.031178807839751244, -0.0021550366654992104, 0.029799584299325943, -0.0028812186792492867, -0.005767661612480879, 0.016602924093604088, 0.0040357960388064384, 0.03778236359357834, -0.016122285276651382, 0.02628883346915245, 0.006812527775764465, -0.004939605016261339, -0.014346013776957989, -0.025682812556624413, 0.022882569581270218, -0.00021795256179757416, 0.02144065499305725, 0.01927778124809265, -0.013363839127123356, 0.025160379707813263, -0.004255217500030994, -0.01419973187148571, -0.027103830128908157, 0.011848783120512962, -0.03970491513609886, -0.04338284581899643, 0.037531595677137375, 0.023384105414152145, -0.015359533950686455, -0.019371820613741875, 0.0022477684542536736, -0.0024475990794599056, -0.00907988753169775, 0.011211414821445942, -0.030990732833743095, 0.028106901794672012, 0.006331889424473047, -0.030468299984931946, -0.011483079753816128, -0.0034532828722149134, 0.006222178228199482, 0.011430836282670498, 0.024658843874931335, 0.018117981031537056, 0.009398572146892548, 0.030886245891451836, -0.01753285527229309, 0.01768958568572998, -0.01873445138335228, -0.011221863329410553, 0.04463668540120125, -0.0014144876040518284, -0.019298680126667023, 0.02344679832458496, 0.03968401998281479, 0.024533459916710854, 0.02996676415205002, 0.0061438134871423244, 0.014272872358560562, 0.04685180261731148, 0.0006416131509467959, -0.049150507897138596, -0.02725011110305786, -0.02311244048178196, -0.024324486032128334, -0.014534089714288712, 0.0041089365258812904, 0.00638413242995739, 0.007350633852183819, 0.0011846170527860522, -0.014523640275001526, -0.0018598618917167187, 0.01925688423216343, -0.04889973998069763, -0.000490107573568821, 0.04685180261731148, -0.014544538222253323, -0.0026957548689097166, -0.010668084025382996, 0.034773148596286774, -0.008066367357969284, -0.028545744717121124, 0.00941946916282177, 0.0019878579769283533, -0.01721939630806446, 0.020510723814368248, -0.003278267802670598, 0.009968023747205734, -0.027166521176695824, 0.024784227833151817, 0.015004279091954231, 0.04371720179915428, -0.02292436547577381, 0.023509489372372627, 0.004320521838963032, 0.038179412484169006, -0.017083562910556793, -0.043215665966272354, 0.01709401234984398, -0.0143564622849226, 0.01246525440365076, -0.024387177079916, -0.013739991001784801, 0.01695817895233631, -0.006943135987967253, -0.009570974856615067, -0.042797721922397614, -0.023405004292726517, 0.027584468945860863, 0.014262423850595951, -0.016080491244792938, -0.021482449024915695, 0.030426504090428352, 0.0019330024952068925, -0.015704339370131493, -0.004116773139685392, -0.017720932140946388, 0.005148578435182571, -0.001831128029152751, 0.023572182282805443, -0.002831587567925453, -0.004913483280688524, 0.004124609287828207, 0.001328286249190569, -0.002057080389931798, 0.03596429526805878, -0.0026513480115681887, -0.012611535377800465, -0.05567047372460365, 0.006305767688900232, 0.01171295065432787, 0.001883371383883059, 0.0023222151212394238, -0.0009011971415020525, 0.020385339856147766, 0.015234149992465973, 0.01597600430250168, 0.04083337262272835, -0.02428269200026989, -0.016247669234871864, -0.021148093044757843, -0.03874364122748375, 0.028587540611624718, -0.015913313254714012, 0.014544538222253323, -0.012172691524028778, 0.040269143879413605, 0.047060776501894, -0.0147848566994071, 0.020249508321285248, 0.018013494089245796, 0.011242760345339775, 0.019925599917769432, 0.022151164710521698, -0.0030222756322473288, -0.031074320897459984, 0.0143564622849226, -0.005443753208965063, -0.0023470306769013405, 0.011368144303560257, 0.020385339856147766, -0.005253064911812544, -0.03934966400265694, 0.00614903774112463, 0.011942820623517036, -0.008996298536658287, -0.04626667499542236, 0.00833803229033947, -0.018285159021615982, -0.0071939039044082165, -0.022778084501624107, -0.01303993072360754, 0.023091543465852737, 0.0034532828722149134, -0.00010318053682567552, 0.015746133401989937, -0.0029648079071193933, -0.01592376083135605, -0.04526360332965851, 0.005237392149865627, -0.02936074137687683, -0.0024541295133531094, 0.04095875471830368, -0.04856538400053978, 0.015693889930844307, 0.007381979841738939, 0.019580792635679245, 0.008463416248559952, 0.04626667499542236, -0.03813761845231056, -0.024052821099758148, -0.014701267704367638, 0.004808996804058552, -0.0021289149299263954, -0.03028022311627865, -0.0023039299994707108, 0.005579585675150156, -0.0681670755147934, -0.01721939630806446, 0.021168990060687065, 0.005318369250744581, 0.021043606102466583, -0.0061281402595341206, 0.02796062082052231, 0.011890578083693981, -0.004963114392012358, -0.01057927031069994, -0.032453544437885284, -0.010093407705426216, -0.0029256255365908146, -0.03180572763085365, -0.04173195734620094, -0.0014941587578505278, 0.00103572360239923, -0.031492266803979874, 0.028650231659412384, 0.028253182768821716, 6.714081973768771e-05, -0.014680370688438416, 0.030447401106357574, 0.004202974494546652, -0.008787324652075768, -0.005819905083626509, 0.05228510499000549, 0.013792234472930431, 0.0014262424083426595, 0.014481846243143082, -0.013896720483899117, 0.013416082598268986, -0.01251749787479639, 0.055586881935596466, 0.005401958245784044, -0.0010017654858529568, 0.03909889608621597, 0.018985219299793243, -0.03968401998281479, 0.016184978187084198, 0.001964348601177335, 0.012109999544918537, -0.024136409163475037, -0.000347744527971372, 0.012611535377800465, 0.005877372343093157, 0.0157356858253479, 0.0014928525779396296, -0.010365072637796402, -0.050947677344083786, -0.01648798957467079, 0.06039326637983322, -0.005007521249353886, -0.010730776004493237, 0.005945289041846991, 0.00520343380048871, -0.004728019703179598, -0.008766427636146545, 0.021879497915506363, -0.006028878036886454, -0.006880444008857012, -0.022945262491703033, 0.005751988384872675, 0.024721534922719002, -0.029047280550003052, 0.015150560066103935, 0.0159969013184309, -0.015369982458651066, -0.011096479371190071, -0.03598519414663315, -0.021461552008986473, 0.0015215864405035973, 0.004720183089375496, -0.026581397280097008, 0.01016132440418005, -0.03170124068856239, 0.013207108713686466, -5.6365635828115046e-05, -0.0038607807364314795, -2.2836040443507954e-05, 0.02115854062139988, -0.017574649304151535, 0.00545942597091198, -0.010244913399219513, -0.015119214542210102, 0.0195389986038208, 0.021200336515903473, 0.011357695795595646, 0.008473864756524563, -0.023488592356443405, 0.031178807839751244, -0.018671760335564613, 0.056757133454084396, 0.0519089549779892, 0.005840802099555731, 0.022088471800088882, -0.011096479371190071, -0.017501508817076683, 0.016216324642300606, 0.01946585811674595, -0.003314838046208024, 0.03165944665670395, 0.028002414852380753, 0.02138841152191162, 0.04242156818509102, -0.0157356858253479, 0.011336798779666424, 0.006901341490447521, 0.033728282898664474, -0.028336772695183754, -0.03686287999153137, 0.012266729958355427, -0.014847548678517342, -0.03830479457974434, -0.010088182985782623, -0.01725074090063572, -0.05140741914510727, -0.05057152733206749, 0.011305452324450016, -0.002808077959343791, 0.00011713930143741891, -0.019653933122754097, 0.03082355298101902, -0.004289175849407911, -0.012109999544918537, 0.008129059337079525, -0.001631297403946519, 0.04363361373543739, 0.02850395068526268, 0.006237851455807686, 0.0030588458757847548, 0.005297471769154072, -0.00037125402013771236, -0.00999414548277855, -0.001210085698403418, -0.03759428858757019, -0.020134571939706802, -0.015087868086993694, 0.007820824161171913, 0.019559895619750023, 0.022861672565340996, -0.0007627523737028241, -0.013311595655977726, -0.020124124363064766, 0.045974113047122955, 0.044929247349500656, -0.015234149992465973, 0.03180572763085365, -0.002600410720333457, 0.01777317374944687, 0.0015999514143913984, 0.03886902332305908, 0.01993604749441147, 0.009074662812054157, -0.00037419272121042013, 0.02915176749229431, 0.02344679832458496, -0.00456606550142169, 0.0076536452397704124, 0.0006713265320286155, 0.01293544378131628, -0.004944829270243645, 0.03136688470840454, -0.055377911776304245, -0.033393923193216324, 0.015087868086993694, 0.0030039905104786158, 0.003448058618232608, 0.005626604426652193, -0.03205649554729462, 0.03395815193653107, -0.016456643119454384, 0.010991992428898811, -0.02449166402220726, -0.011702502146363258, 0.0034976897295564413, -0.007240923121571541, -0.0050414795987308025, -0.0009011971415020525, 0.022882569581270218, -0.028775615617632866, -0.011263658292591572, 0.033414822071790695, -0.003957430832087994, -0.0330386683344841, 0.02206757478415966, 0.012674227356910706, -0.025787297636270523, 0.009628442116081715, 0.014565435238182545, 0.01821201853454113, 0.008364154025912285, -0.017125356942415237, 0.005305308382958174, 0.009153028018772602, -0.05746764317154884, -0.028483053669333458, -0.0357971154153347, -0.003946982324123383, 0.04022734984755516, 0.013802682980895042, 0.03191021457314491, -0.014053450897336006, 0.01763734221458435, -0.03535827249288559, 0.052619464695453644, 0.013008584268391132, -0.00020244282495696098, 0.043215665966272354, 0.06248300150036812, 0.004957890138030052, 0.0037824157625436783, 0.006399805657565594, -0.0005240656901150942, -0.0016234609065577388, -0.016717860475182533, -0.001994388410821557, -0.0039913891814649105, -0.00965456385165453, -0.0018676983891054988, 0.03347751498222351, 0.0002274216676596552, -0.009847864508628845, -0.010495681315660477, -0.01472216472029686, 0.005699745379388332, 0.0051224566996097565, 0.023363208398222923, 0.004210811108350754, -0.006075897254049778, -0.011106927879154682, 0.02313333749771118, 0.06310991942882538, 0.008228321559727192, -0.039955683052539825, 0.014575883746147156, 0.01419973187148571, 0.03834659233689308, -0.01182788610458374, 0.044594891369342804, -0.017083562910556793, -0.009738152846693993, -0.009476936422288418, 0.016696961596608162, 0.012569740414619446, -0.008416397497057915, 0.0011663319310173392, 0.0085574546828866, 0.0003337041416671127, -0.002349643036723137, 0.044929247349500656, 0.0013857538579031825, -0.014387807808816433, 0.005326205398887396, -0.03374917805194855, -0.008045470342040062, -0.0009586647502146661, -0.030760861933231354, -0.011754744686186314, -0.021221233531832695, 0.008891811594367027, -0.0071677821688354015, 0.004205586388707161, 0.006906565744429827, 0.02986227720975876, -0.008385051041841507, -0.02105405367910862, 0.040582604706287384, -0.022213855758309364, -0.030886245891451836, 0.018953872844576836, -0.014314667321741581, -0.001447139773517847, 0.016550680622458458, -0.03366558998823166, -0.0014706492656841874, -0.024784227833151817, 0.008186526596546173, -0.01552671194076538, -0.010793467983603477, 0.009090336039662361, -0.0331849530339241, 0.002904728055000305, 0.01086660847067833, 0.04150208830833435, 0.017073113471269608, 0.01408479642122984, 0.05416586622595787, 0.04898332804441452, -0.040164656937122345, 0.0007379367598332465, -0.010709878988564014, 0.003931309096515179, -0.011211414821445942, 0.028211388736963272, 0.006248299963772297, -0.013280250132083893, -0.004495536908507347, -0.015349084511399269, 0.014398256316781044, 0.002093650633469224, -0.05002819374203682, 0.024846918880939484, 0.014126591384410858, 0.0006889586802572012, 0.020124124363064766, -0.012966790236532688, -0.018619516864418983, 0.03895261138677597, -0.026769472286105156, 0.011284555308520794, -0.01097109541296959, -0.012120448052883148, -0.00022007494408171624, -0.02522307075560093, -0.014565435238182545, -0.025808196514844894, -0.01367729902267456, -0.02881741151213646, -0.01751195825636387, 0.028524847701191902, 0.027208317071199417, 0.03019663318991661, 0.03262072429060936, 0.011681604199111462, 0.006086345762014389, -0.030342916026711464, 0.025055892765522003, 0.005407182965427637, 0.010234464891254902, -0.010030715726315975, -0.01108603086322546, -0.016864141449332237, 0.02534845471382141, 0.010720327496528625, 0.023509489372372627, -0.005856475327163935, 0.012162243016064167, 0.033728282898664474, 0.01172339916229248, 0.01182788610458374, -0.016373053193092346, -0.018431439995765686, 0.03222367540001869, 0.00026872652233578265, 0.003931309096515179, 0.041334908455610275, 0.009633666835725307, -0.010412092320621014, -0.032265469431877136, 0.013531018048524857, -0.03402084484696388, -0.00010244586883345619, -0.01367729902267456, -0.021346617490053177, 0.024240896105766296, 0.027709852904081345, 0.004085427150130272, 0.03692557290196419, 0.03249533846974373, -0.025097686797380447, 0.015338636003434658, -0.016331259161233902, -0.0041742403991520405, 0.0007496915059164166, -0.01962258853018284, 0.011451734229922295, -0.02417820505797863, -0.024240896105766296, 0.020824184641242027, 0.014440051279962063, -0.010793467983603477, -0.0014562823344022036, -0.009555301629006863, 0.0036387466825544834, -0.02954881638288498, -0.042066313326358795, 0.0015411777421832085, 0.03360289707779884, -0.008364154025912285, -0.005997532047331333, 0.008813446387648582, 0.01029193215072155, -0.010145651176571846, -0.009894883260130882, 0.010506129823625088, -0.005950513295829296, -0.0036021764390170574, 0.0075909532606601715, 0.005454201716929674, -0.003967879340052605, -0.005631829146295786, -0.01361460704356432, -0.010067285969853401, 0.027814339846372604, 0.045765139162540436, -0.01910015381872654, -0.0023169908672571182, 0.024721534922719002, 0.00352119910530746, 0.001461506588384509, 0.023530388250947, -0.001354407868348062, -0.002967420034110546, -0.014638575725257397, -0.0023130725603550673, -0.01161891222000122, -0.03650762513279915, -0.005028418730944395, -0.02302885241806507, -0.010621065273880959, 0.017595548182725906, -0.01873445138335228, -0.009957575239241123, 0.017292536795139313, -0.0019160234369337559, 0.004780263174325228, -0.004163791891187429, 0.007350633852183819, 0.011869680136442184, -0.0032129636965692043, -0.0004394968564156443, 0.0011075582588091493, 0.02376025728881359, -0.03345661610364914, -0.014910240657627583, 0.04961024969816208, 0.014868446625769138, -0.03611057624220848, 0.0018076185369864106, -0.0076745422556996346, 0.004409335553646088, 0.02480512484908104, 0.013468326069414616, -0.03769877180457115, 0.05625559762120247, 0.0076275235041975975, 0.0219630878418684, 0.01693728193640709, -0.0013335105031728745, 0.01557895541191101, -0.02639332041144371, -0.0005054540233686566, -0.016916384920477867, -0.007705888245254755, 0.021242130547761917, -0.007188679650425911, -0.043132077902555466, -0.010229240171611309, -0.022109368816018105, 0.007768580224364996, -0.015004279091954231, -0.02808600477874279, 0.018379196524620056, -0.024094615131616592, 0.016999972984194756, -0.04035273194313049, 0.008902260102331638, -0.005302696023136377, -0.005007521249353886, -0.027521776035428047, -0.025808196514844894, -3.5835644666804e-05, 0.012433907948434353, -0.01803439110517502, 0.011869680136442184, 0.029715996235609055, 0.01419973187148571, -0.013071276247501373, -0.0012642880901694298, 0.023509489372372627, -0.03145047277212143, -0.00833803229033947, -0.0006448783678933978, 0.018953872844576836, -0.011127824895083904, -0.04173195734620094, 0.009309758432209492, -0.051031265407800674, 0.02681126818060875, 0.025599222630262375, 0.013938515447080135, 0.0066975923255085945, 0.020521173253655434, 0.020991362631320953, 0.024784227833151817, 0.0380331315100193, 0.03134598582983017, 0.00736108236014843, 0.0028759941924363375, -0.03809582442045212, 0.03575532138347626, 0.02217206172645092, 0.010349400341510773, -0.04129311442375183, -0.028671128675341606, 0.010129977948963642, -0.010197894647717476, -0.012287626974284649, 0.008139507845044136, -0.020134571939706802, 0.005569137167185545, 0.024742431938648224, -0.011963718570768833, -0.010119529440999031, 0.009628442116081715, 0.0195389986038208, 0.025515632703900337, 0.0135728120803833, 0.004383213818073273, -0.024637944996356964, 0.027291905134916306, -0.009947126731276512, -0.0525776669383049, -0.03439699485898018, -0.013844477944076061, 0.015672992914915085, -0.004921319894492626, 0.01646709255874157, -0.014116142876446247, 0.02628883346915245, -0.0026617967523634434, 0.028065107762813568, 0.001383141614496708, 0.030468299984931946, -0.004999685101211071, 0.029214460402727127, -0.00463136937469244, -0.022966159507632256, 0.08007854968309402, -0.0004613737401086837, 0.0010749060893431306, -0.012538394890725613, -0.02313333749771118, 0.019497204571962357, 0.012287626974284649, 0.01948675513267517, 0.009910556487739086, -0.02162873186171055, 0.011336798779666424, -0.030948936939239502, -0.018692657351493835, -0.020709248259663582, -0.0018885957542806864, -0.004973563365638256, 0.009215719997882843, -0.032767005264759064, -0.009497834369540215, 0.02376025728881359, 0.0015934209804981947, 0.02764715999364853, 0.0031581080984324217, 0.03771967068314552, 0.00971725583076477, -0.005783334374427795, 0.024219999089837074, 0.01714625395834446, 0.0021367515437304974, -0.009220944717526436, -0.013980310410261154, 0.023467695340514183, 0.015808826312422752, 0.00720957713201642, -0.0015516263665631413, -0.011263658292591572, 0.019476305693387985, -0.02037489227950573, -0.00773200998082757, 0.0633188933134079, 0.024951405823230743, 0.028483053669333458, -0.03504481166601181, -0.007606626022607088, -0.0005831659655086696, 0.02829497680068016, 0.04572334513068199, 0.012601086869835854, -0.013238455168902874, -0.003181617707014084, 0.028253182768821716, -0.015202803537249565, 0.02311244048178196, 0.013834028504788876, 0.008243994787335396, 0.030948936939239502, 0.007235698867589235, -0.01292499527335167, 0.014753511175513268, -0.013551915064454079, 0.018483683466911316, -0.003996613435447216, 0.030551888048648834, 0.019455408677458763, -0.0008319747284986079], [-0.04022124782204628, -0.022311244159936905, 0.0017376188188791275, 0.015219144523143768, 0.012876899912953377, 0.08314424753189087, -0.041354238986968994, 0.021526863798499107, 0.0244029238820076, 0.01339981984347105, -0.03544960543513298, -0.02632029540836811, 0.0514640212059021, 0.02148328721523285, -0.049633804708719254, -0.008279562927782536, -0.024686170741915703, 0.011449764482676983, 0.0008034444763325155, -0.00269221980124712, 0.019271772354841232, -0.027889056131243706, -0.004420306533575058, 0.028041573241353035, -0.034403763711452484, -0.026712486520409584, -0.04059164971113205, -0.02642923779785633, 0.04453533515334129, -0.03353223204612732, 0.09098803997039795, -0.027867266908288002, 0.03688763454556465, -0.015622228384017944, -0.009875558316707611, -0.04632197692990303, -0.017201881855726242, 0.0035732851829379797, 0.028215879574418068, -0.014685330912470818, 0.0074788425117731094, 0.024163251742720604, -0.028194092214107513, 0.027714747935533524, -0.007990867830812931, 0.016308560967445374, 0.0009328126325272024, -0.030547231435775757, 0.008072574622929096, 0.06771811097860336, 0.00846476387232542, 0.029479602351784706, -0.037650223821401596, 0.0001809452223824337, -0.013508761301636696, 0.011929107829928398, -0.018422028049826622, 0.03268248587846756, -0.016156041994690895, 0.018825111910700798, -0.023204565048217773, 0.01995810493826866, -1.576674731040839e-05, 0.07242438942193985, 0.003603244200348854, 0.02472974732518196, -0.009298167191445827, 0.022006208077073097, -0.047890737652778625, 0.013116571120917797, -0.00400632806122303, 0.06802314519882202, 0.03220314159989357, -0.00925459060817957, -0.0003184840315952897, 0.052553437650203705, -0.010534655302762985, 0.02536160871386528, 0.025753799825906754, -0.009341743774712086, 0.00759867811575532, 0.033510442823171616, -0.024816902354359627, -0.022616280242800713, 0.054514385759830475, -0.04810861870646477, -0.07442891597747803, -0.028085149824619293, -0.017692118883132935, 0.004417582880705595, -0.051333293318748474, -0.001160228275693953, -0.036168619990348816, 0.034360188990831375, 0.022529127076268196, 0.04011230543255806, 0.008132492192089558, -0.026930369436740875, -0.04606051743030548, 0.02133077010512352, -0.0024443776346743107, -0.049808111041784286, -0.006285931449383497, 0.009690357372164726, 0.02116735652089119, -0.06253249198198318, -0.041681066155433655, 0.03523172065615654, 0.037323400378227234, 0.02780190110206604, -0.023792849853634834, -0.014707119204103947, -0.020622648298740387, -0.003088494995608926, 0.020873215049505234, -0.042421866208314896, 0.0021052968222647905, -0.020666224882006645, 0.011095704510807991, 0.018073415383696556, -0.049110881984233856, -0.03124445676803589, 0.04259617254137993, -0.045450445264577866, -0.006122519262135029, -0.011613177135586739, -0.02913098968565464, -0.015894582495093346, -0.04453533515334129, -0.015317192301154137, -0.0015701211523264647, -0.022049784660339355, -0.009635886177420616, 0.011264563538134098, 0.006280484609305859, 0.03407694026827812, -0.03599431365728378, -0.02913098968565464, -0.016373924911022186, -0.018868688493967056, 0.00777298491448164, 0.016482867300510406, 0.017855532467365265, 0.03906646743416786, -0.0456247515976429, 0.009837428107857704, -0.022986682131886482, -0.0124738160520792, -0.055952418595552444, 0.01281153503805399, -0.03381548076868057, 0.004324982408434153, -0.02690858021378517, 0.04370737820863724, -0.004491118248552084, 0.028411975130438805, 0.006574627012014389, 0.013650385662913322, -0.0034017020370811224, 0.024010732769966125, -0.021929947659373283, -0.008214198052883148, -0.01003352366387844, -0.0060517070814967155, -0.017626754939556122, -0.009341743774712086, -0.02265985682606697, 0.009690357372164726, -0.06610577553510666, -0.017692118883132935, -0.04080953076481819, 0.01898852549493313, -0.07351380586624146, 0.046234823763370514, -0.021352557465434074, -0.05220482498407364, 0.036582596600055695, -0.03843460604548454, -0.040722377598285675, 0.0032028837595134974, -0.009766616858541965, 0.012855111621320248, -0.04240008071064949, -0.008551917038857937, -0.039175406098365784, 0.02801978588104248, 0.018661700189113617, 0.0036931210197508335, 0.014184199273586273, 0.016482867300510406, -0.004967737942934036, 0.019565915688872337, 0.003984539769589901, 0.019184619188308716, 0.0002769500424619764, 0.0029958945233374834, -0.0001877540780697018, 0.015502393245697021, -0.027148252353072166, -0.022191409021615982, 0.00024018222757149488, -0.034883107990026474, 0.03867427632212639, 0.029218142852187157, -0.025710223242640495, 0.010256853885948658, -0.002315009478479624, -0.04566832631826401, -0.0009988584788516164, 0.01066538505256176, 0.01517556793987751, 0.026276718825101852, -0.0031211774330586195, 0.005861059296876192, -0.03307467699050903, -0.016482867300510406, -0.008960448205471039, -0.04845723509788513, 0.009221908636391163, 0.048152197152376175, -0.03599431365728378, -0.026385661214590073, -0.03375011309981346, -0.02100394479930401, -0.03008967638015747, 0.01941339671611786, 0.015927264466881752, -0.025230878964066505, 0.005231921561062336, -0.05316350981593132, 0.025797376409173012, 0.012255932204425335, -0.0021025734022259712, -0.008225092664361, 0.009499709121882915, -0.002524722134694457, -0.020502813160419464, -0.05172548070549965, 0.014478341676294804, 0.006541944574564695, -0.04159391298890114, -0.025078361853957176, 0.04871869459748268, 0.023073835298419, 0.026777850463986397, 0.012593651190400124, -0.009221908636391163, -0.04218219593167305, -0.011133833788335323, 0.0209494736045599, 0.08100899308919907, 0.04266154021024704, 0.011776589788496494, -0.04409956932067871, 0.010403924621641636, 0.010175147093832493, 0.007925502955913544, -0.031484127044677734, 0.0302421934902668, -0.04054807126522064, -0.0060571543872356415, 0.009597756899893284, -0.02000168152153492, 0.01676611602306366, -0.0652342438697815, 0.010550996288657188, 0.013465184718370438, 0.008372163400053978, 0.010616361163556576, 0.027823690325021744, -0.030285770073533058, 0.04309730604290962, 0.032333873212337494, -0.043533071875572205, -0.024860478937625885, -0.03494847193360329, -0.012713487260043621, 0.005487934220582247, 0.013933633454144001, -0.0030585359781980515, -0.01750691793859005, -0.012713487260043621, -0.03250817954540253, -0.03318361937999725, 0.012669910676777363, 0.0027276258915662766, -0.01342160813510418, 0.01883600652217865, -0.04233471304178238, -0.004875137470662594, 0.0019963551312685013, -0.019979894161224365, 0.021025732159614563, -0.02828124538064003, 0.06004862114787102, 0.05930781736969948, 0.030808690935373306, 0.016809692606329918, 0.017844637855887413, -0.0035678381100296974, -0.027518654242157936, 0.004210593644529581, -0.010790667496621609, -0.019271772354841232, 0.013966316357254982, 0.027605807408690453, -0.027605807408690453, 0.01580742932856083, 0.02175564132630825, -0.007533313240855932, -0.0005658155423589051, 0.034098729491233826, -0.018661700189113617, -0.05346854776144028, 0.01613425463438034, -0.028324821963906288, -0.007555101532489061, 0.03843460604548454, 0.06606219708919525, -0.00618243683129549, 0.01308388914912939, -0.0003921898314729333, 0.03830387443304062, -0.06405767053365707, -0.03516635671257973, -0.0069668167270720005, 0.009902792982757092, 0.037323400378227234, -0.05189978703856468, -0.007059417199343443, -0.026342084631323814, -0.025797376409173012, 0.053512126207351685, -0.0026813256554305553, -0.007974526844918728, -0.045755479484796524, 0.0014502853155136108, -0.005980894900858402, -0.008192409761250019, 0.006623650435358286, 0.055255189538002014, 0.00280524673871696, -0.04488394781947136, 0.01601441763341427, -0.00522647425532341, 0.04810861870646477, -0.010147912427783012, 0.025165515020489693, -0.0018111544195562601, 0.005201962310820818, -0.023901792243123055, -0.006122519262135029, -0.0456247515976429, -0.00015481625450775027, 0.0038156802766025066, -0.0075605483725667, 0.028695223852992058, 0.002783458447083831, 0.013465184718370438, 0.02647281438112259, -0.005959106609225273, 0.006874216254800558, 0.009140201844274998, 0.01824772171676159, -0.005577811039984226, 0.011373504996299744, -0.017485130578279495, -0.016199618577957153, 0.00189966952893883, -0.015295404009521008, -0.009270931594073772, 0.027562230825424194, 0.011547812260687351, 0.021243616938591003, -0.04006872698664665, 0.0032246720511466265, 0.03161485865712166, 0.02179921790957451, -0.03209420293569565, -0.011242775246500969, -0.024228617548942566, -0.018018944188952446, -0.011068468913435936, 0.010561889968812466, 0.024599017575383186, 0.002291859360411763, -0.022834163159132004, -0.013552337884902954, -0.06549569964408875, 0.0371273048222065, -0.001365174655802548, 0.015785640105605125, 0.00777298491448164, 0.007413477171212435, -0.02806336246430874, -0.0021597675513476133, 0.07473395019769669, 0.007429818622767925, -0.02016509510576725, 0.009886451996862888, -0.021570440381765366, -0.02218051441013813, 0.004651807248592377, 0.02313920110464096, -0.023836426436901093, -0.006345849484205246, -0.0334232896566391, 0.0006366276065818965, -0.03832566365599632, 0.015611334703862667, 0.012778852134943008, 0.016624491661787033, 0.05172548070549965, 0.0222785621881485, 0.030525442212820053, 0.0009573245188221335, -0.03497026115655899, 0.044600699096918106, -0.00386742758564651, -0.011983578093349934, 0.0684589147567749, 0.01957681030035019, -0.010207829996943474, -0.034033361822366714, -0.01963127963244915, -0.02006704732775688, -0.007800220046192408, -0.0058229295536875725, 0.020306717604398727, -0.05852343887090683, 0.022529127076268196, 0.020546389743685722, 0.023422447964549065, 0.002712646499276161, -0.01989274099469185, -0.01942429132759571, 0.01302941795438528, 0.009107519872486591, -0.0027099228464066982, -0.03039471246302128, -0.03897931054234505, 0.05586526542901993, 0.004899649415165186, -0.06000504642724991, -0.05760832875967026, -0.029523178935050964, -0.031135516241192818, 0.024686170741915703, -0.013933633454144001, 0.042639750987291336, -0.056911103427410126, -0.031854528933763504, -0.060833003371953964, 0.024337558075785637, -0.002617322374135256, -0.01485963724553585, -0.03930613771080971, -0.007043075747787952, 0.06815388053655624, -0.042639750987291336, -0.040090516209602356, 0.04919803515076637, -0.004316811915487051, 0.004393070936203003, 0.07229366153478622, -0.05294562876224518, -0.04884942248463631, 0.010338559746742249, 0.0451018325984478, -0.007887373678386211, -0.025296244770288467, 0.029479602351784706, 0.012767958454787731, -0.027976209297776222, 0.02154865302145481, 0.013388925231993198, -0.002985000377520919, -0.08846059441566467, 0.011645859107375145, 0.019435185939073563, 0.012637227773666382, 0.027191828936338425, -0.03239923715591431, 0.009352638386189938, 0.00012341042747721076, 0.0017594072269275784, 0.04632197692990303, -0.020502813160419464, -0.007026734761893749, -0.028259456157684326, 0.04209504276514053, -0.014685330912470818, 0.029087413102388382, -0.008007208816707134, -0.0011438870569691062, -0.016090678051114082, -0.00806712731719017, 0.01989274099469185, 0.013258195482194424, -0.02239839732646942, 0.021080203354358673, -0.05590884014964104, -0.017485130578279495, 0.02233303338289261, 0.039502233266830444, 0.051769059151411057, -0.0007932311855256557, -0.08344928175210953, -0.05970000848174095, 0.01236487366259098, 0.011329928413033485, 0.024795113131403923, -0.013301772065460682, -0.019598597660660744, -0.059612855315208435, -0.01989274099469185, -0.021897265687584877, -0.018977630883455276, -0.015829218551516533, -0.026973946020007133, 0.011155622079968452, -0.03187631815671921, -0.04858796298503876, 0.006068048533052206, -0.0015633122529834509, 0.0073753478936851025, 0.00667267432436347, -0.03638650104403496, -0.01119919866323471, 0.020393870770931244, -0.020306717604398727, -0.0477600060403347, -0.03161485865712166, 0.024533653631806374, -0.003295483998954296, 0.028825953602790833, -0.0291745662689209, 0.02616777829825878, 0.01369396224617958, -0.0753440260887146, 0.05189978703856468, 0.023269930854439735, 0.018323980271816254, -0.008393951691687107, 0.0024552717804908752, -0.0051148091442883015, 0.0013447481906041503, 0.012659016065299511, -0.0070648640394210815, 0.010583678260445595, 0.03375011309981346, 0.026233142241835594, -0.027257192879915237, -0.06039723381400108, 0.005433463491499424, 0.004850625526160002, 0.018639910966157913, -0.028673434630036354, -0.001141844317317009, -0.02795442007482052, -0.050374604761600494, 0.0183021929115057, -0.010115229524672031, -0.0005675177671946585, 0.023901792243123055, 0.03529708459973335, -0.005861059296876192, 0.023901792243123055, -0.01358501985669136, 0.01186374295502901, -0.024381134659051895, 0.0001605186698725447, 0.003418043488636613, -0.020524602383375168, 0.007495183497667313, 0.01788821443915367, -0.010229618288576603, 0.005389886908233166, 0.019696645438671112, -0.0006992690614424646, 0.025121938437223434, 0.032660696655511856, 0.014456553384661674, 0.021254509687423706, -0.03640829026699066, 0.026037048548460007, -0.02658175490796566, -0.012190567329525948, -0.02945781499147415, 0.02721361629664898, 0.04884942248463631, 0.012375768274068832, -0.01623230241239071, -0.0025860017631202936, -0.014314929023385048, 0.05346854776144028, 0.01244113314896822, -0.0012875538086518645, 0.017071152105927467, -0.0047335135750472546, -0.0044312006793916225, -0.026821427047252655, 0.03318361937999725, -0.02902204729616642, -0.05686752498149872, -0.003989987075328827, -7.268448825925589e-05, 0.03455628082156181, 0.010556443594396114, 0.03845639154314995, 0.007222829386591911, 0.012953158468008041, 0.01989274099469185, -0.028978470712900162, -0.011526023969054222, 0.03390263393521309, -0.05651891231536865, -0.05747760087251663, -0.011013997718691826, 0.004967737942934036, -0.0063567436300218105, -0.02138524129986763, 0.012876899912953377, -0.010839691385626793, -0.024707959964871407, -0.008399398997426033, -0.02075337804853916, -0.021472394466400146, 0.005335415713489056, -0.022529127076268196, -0.0069668167270720005, 0.030917631462216377, 0.011776589788496494, -0.00064479821594432, 0.012550074607133865, -0.011613177135586739, 0.021635806187987328, -0.01576385274529457, 0.026603544130921364, 0.015382557176053524, 0.0009273655596189201, -0.006705356761813164, 0.0024988483637571335, -0.011362611316144466, 0.03039471246302128, -0.008121597580611706, 0.046670589596033096, 0.034883107990026474, -0.0022510061971843243, 0.026886792853474617, 0.022943105548620224, 0.01746334135532379, -0.008807930164039135, 0.00928727351129055, 0.02233303338289261, 0.014227775856852531, -0.031593069434165955, 0.023204565048217773, 0.051115408539772034, -0.0413978174328804, -0.008421187289059162, -0.010954080149531364, -0.021733853965997696, 0.0008293180726468563, 0.0008715330041013658, 0.003311825217679143, 0.020154200494289398, 0.01861812360584736, -0.019762009382247925, -0.008252328261733055, -0.04113635793328285, -0.01395542174577713, 0.02950139157474041, -0.028847740963101387, -0.013770220801234245, -0.005566916894167662, -0.03564569726586342, 0.011210093274712563, -0.005381715949624777, -0.021036626771092415, -0.058610592037439346, 0.028455551713705063, 0.007043075747787952, 0.015905477106571198, -0.01050741970539093, -0.028041573241353035, -0.021298086270689964, -0.021091097965836525, -0.02621135488152504, -0.016166936606168747, -0.028259456157684326, 0.0546451173722744, -0.00832858681678772, -0.011874636635184288, 0.005577811039984226, -0.002286412287503481, 0.004466606304049492, -0.02101483941078186, -0.013334454968571663, -0.04972095787525177, 0.02005615271627903, 0.041724640876054764, -0.005063062068074942, -0.03782453015446663, -0.024272194132208824, -0.023945368826389313, -0.034883107990026474, 0.019064784049987793, 0.016199618577957153, 0.0005794332246296108, -0.023204565048217773, -0.027453288435935974, -0.03588537126779556, -0.0023558626417070627, 0.008807930164039135, 0.013388925231993198, -0.055952418595552444, -0.031810954213142395, 0.014521918259561062, -0.009543285705149174, -0.034839529544115067, 0.007696725428104401, -0.022529127076268196, -0.01739797741174698, -0.011471552774310112, 0.022245878353714943, -0.03348865360021591, -0.013846480287611485, -0.02435934729874134, -0.008285010233521461, 0.007713066879659891, -0.02377106249332428, 0.013225512579083443, 0.0034643434919416904, -0.009608651511371136, -0.034621648490428925, -0.02366212010383606, 0.00488058477640152, 0.0015701211523264647, -0.029305296018719673, 0.03723624721169472, -0.0124738160520792, 0.027889056131243706, -0.03298752382397652, -0.020404765382409096, -0.021134674549102783, 0.005980894900858402, 0.0015319915255531669, 0.017256353050470352, -0.005948212463408709, 0.0031783718150109053, 0.004820666741579771, 0.0334232896566391, -0.04579905793070793, -0.04627840220928192, 0.03627755865454674, -0.034992050379514694, 0.0225509162992239, -0.02488226629793644, 0.013040312565863132, -0.006204225588589907, 0.04126708582043648, -0.0008102533174678683, 0.039872635155916214, -0.01661359705030918, 0.009107519872486591, -0.04240008071064949, -0.04070058837532997, -0.0031211774330586195, 0.015240932814776897, -0.05651891231536865, 0.03904467821121216, -0.015360768884420395, 0.012746170163154602, 0.019642174243927002, -0.006149754393845797, 0.004771642852574587, -0.01275706384330988, -0.008524682372808456, -0.018127886578440666, 0.008769800886511803, -0.03046007826924324, 0.0024702511727809906, 0.00515838572755456, 0.010338559746742249, -0.03390263393521309, 0.04078774154186249, -0.05582168698310852, 0.022594492882490158, -0.027126463130116463, -0.012408451177179813, -0.024206828325986862, 0.014794272370636463, -0.0424436554312706, 0.04070058837532997, -0.013835585676133633, 0.007130229379981756, -0.05320708826184273, -0.029087413102388382, 0.015742063522338867, 0.011373504996299744, 0.0038374685682356358, 0.004779813811182976, 0.02891310676932335, 0.08270847797393799, 0.015284509398043156, 0.014151516370475292, 0.010866926982998848, 0.001575568225234747, -0.008127044886350632, -0.028150515630841255, -0.008813377469778061, -0.05311993509531021, 0.03592894598841667, 0.016689855605363846, -0.00561049347743392, 0.030067887157201767, 0.013225512579083443, -0.0167225394397974, 0.016700750216841698, -0.039829056710004807, -0.015578651800751686, 0.010790667496621609, -0.03799883648753166, 0.033989787101745605, 0.001782557344995439, 0.00787647906690836, 0.026145989075303078, -0.015644017606973648, 0.0012473815586417913, -0.003663162002339959, -0.023749273270368576, 0.0047335135750472546, -0.013160147704184055, 0.005615940783172846, -0.01419509295374155, -0.01212520245462656, -0.010387583635747433, 0.011667647399008274, -0.044382818043231964, 0.04684489592909813, -0.006209672428667545, -0.057390447705984116, -0.030155040323734283, -0.023792849853634834, -0.010011735372245312, 0.0006706718704663217, 0.01606888882815838, -0.04307551681995392, 0.0663672387599945, 0.01628677174448967, -0.03220314159989357, 0.0009348553139716387, -0.03651723265647888, 0.03954580798745155, 0.008606388233602047, -0.015001261606812477, -0.009608651511371136, 0.049851685762405396, 0.016417501494288445, 0.006275037303566933, -0.010447501204907894, 0.012223250232636929, -0.03168022260069847, -0.006776168942451477, -0.002283688634634018, 0.008432081900537014, -0.021744748577475548, 0.031070150434970856, 0.0058501651510596275, -0.007429818622767925, -0.0063567436300218105, -0.022572703659534454, 0.016635386273264885, 0.008889636024832726, -0.028368398547172546, -0.0035433261655271053, 0.02573201060295105, 0.03649544343352318, 0.045973364263772964, 0.006482026539742947, 0.014870531857013702, 0.0017022128449752927, -0.012288615107536316, 0.0212218277156353, 0.0009586862870492041, -0.021940842270851135, 0.03401157259941101, -0.006732592359185219, -0.0076749371364712715, -0.0015238209161907434, 0.022245878353714943, -0.0034343847073614597, -0.023836426436901093, 0.026385661214590073, -0.014434765093028545, -0.030917631462216377, 0.010937739163637161, -0.01281153503805399, 0.032442815601825714, -0.014718012884259224, -0.01212520245462656, 0.021635806187987328, 0.013595914468169212, -0.0025587663985788822, -0.015273615717887878, -0.00785469077527523, -0.016624491661787033, 0.02488226629793644, -0.045494019985198975, 0.020404765382409096, -0.04558117315173149, -0.023814639076590538, -0.023683909326791763, -0.04150675609707832, -0.004352218005806208, -0.014445658773183823, 0.026015259325504303, 0.02355317957699299, -0.012212355621159077, 0.02068801410496235, 0.001503394334577024, -0.0062369080260396, 0.005474316421896219, 0.04126708582043648, -0.006187884137034416, -0.020971262827515602, -0.041092779487371445, -0.00909662526100874, 0.009973605163395405, -0.01723456382751465, 0.05298920348286629, 0.0355585440993309, 0.03893573582172394, 0.025121938437223434, 0.018182355910539627, -0.0024103333707898855, 0.010866926982998848, 0.02743150107562542, 0.01058912556618452, 0.024577230215072632, -0.0004085310793016106, -0.005122979637235403, -0.03359759598970413, 0.0305036548525095, -0.03666974976658821, -0.008611835539340973, 0.00032307999208569527, 0.033357925713062286, 0.004779813811182976, -0.017441553995013237, -0.008579152636229992, 0.01776837930083275, -0.0023000300861895084, -0.012800640426576138, 0.014423870481550694, 0.003175648394972086, -0.0018166014924645424, 0.03475237637758255, 0.0355367586016655, 0.027366135269403458, 0.010856032371520996, 0.049633804708719254, -0.02425040490925312, 0.04359843581914902, 0.003600520547479391, 0.0023231799714267254, 0.006754380650818348, -0.026777850463986397, 0.025405187159776688, 0.0030040652491152287, -0.010115229524672031, 0.003251907415688038, -0.006612756289541721, 0.033728327602148056, -0.023357084020972252, 0.03751949593424797, 0.0102132773026824, 0.026995733380317688, 0.006890557706356049, 0.0190974660217762, -0.014107939787209034, 0.0017920896643772721, 0.009183778427541256, -0.020437447354197502, 0.011035786010324955, -0.03370653837919235, -0.0015170121332630515, -0.0023027535062283278, 0.05403504520654678, -0.015992630273103714, -0.023792849853634834, 0.032704275101423264, -0.005986342206597328, -0.011264563538134098, 0.006307719741016626, 0.024228617548942566, 0.00561049347743392, -0.007102993782609701, -0.010289535857737064, 0.0366043858230114, -0.024185040965676308, -0.040199458599090576, -0.008137939497828484, -0.0022782415617257357, 0.00040036046993918717, 0.03878321871161461, 0.011961789801716805, -0.00649836752563715, 0.008840613067150116, 0.013802903704345226, -0.0061279661022126675, -0.026254931464791298, -0.026538178324699402, -0.016471972689032555, -0.0037530388217419386, 0.020720696076750755, -0.0011309501715004444, -0.010779773816466331, -0.0064330026507377625, 0.008007208816707134, 0.020284930244088173, -0.0008926404407247901, -0.04357665032148361, -0.007059417199343443, -0.011231881566345692, 0.002260538749396801, 0.025383397936820984, -0.003339060815051198, 0.020993050187826157, -0.0026813256554305553, -0.006482026539742947, -0.02105841599404812, 0.009020366705954075, -0.01000084076076746, 0.018215039744973183, -0.0012616801541298628, -0.02562307007610798, -0.009608651511371136, 0.017201881855726242, -0.012898688204586506, 0.013704855926334858, -0.04383810982108116, 0.02854270488023758, -0.014489235356450081, -0.003235566196963191, 0.02514372579753399, 0.034883107990026474, -0.006645438726991415, 0.004251446574926376, 0.013683067634701729, -0.017387082800269127, -0.003698568092659116, -0.0249476321041584, 0.0057194349355995655, 0.019870951771736145, -0.034839529544115067, -0.00158510054461658, 0.000930770009290427, 0.026276718825101852, 0.007015840616077185, -0.029806427657604218, 0.005022208672016859, 0.00022673474450130016, 0.02001257613301277, 0.014412976801395416, -0.03884858265519142, 0.029958946630358696, 0.023160988464951515, 0.024795113131403923, -0.017387082800269127, -0.004134334623813629, -0.013519654981791973, -0.008846059441566467, 0.034033361822366714, 0.02303025871515274, -0.05072321742773056, 0.0047062779776751995, -0.014925002120435238, -0.01910836063325405, 0.020077940076589584, 0.015687594190239906, 0.039763692766427994, -0.006721698213368654, 0.02510014921426773, -0.008235986344516277, -0.018084309995174408, -0.006427555810660124, -0.019500549882650375, 0.014173304662108421, -0.015785640105605125, -0.008263221941888332, -0.002445739461109042, -0.028259456157684326, 0.010038970038294792, 0.034730590879917145, 0.01485963724553585, 0.01586190052330494, -0.008061680011451244, -0.023574966937303543, 0.0005467507871799171, 0.023596756160259247, 0.006280484609305859, -0.01692952774465084, 0.003679503221064806, 0.020393870770931244, -0.024686170741915703, -0.0002701411722227931, -0.006645438726991415, -0.0006962050683796406, -0.018639910966157913, 0.005861059296876192, 0.02031761221587658, 0.009379873983561993, -0.004384900443255901, 0.014761589467525482, -0.01580742932856083, -0.008094362914562225, 0.028629858046770096, 0.043010152876377106, 0.02011062391102314, 0.0008197856950573623, -0.029000259935855865, 0.011580494232475758, 0.030176829546689987, -0.00407441658899188, -0.003619585419073701, 0.02117825113236904, -0.012887793593108654, 0.0026309401728212833, 0.017910001799464226, -0.007653148844838142, 0.05586526542901993, -0.002675878582522273, 0.02673427388072014, 0.010273194871842861, -0.010779773816466331, -0.015938159078359604, 0.02324814163148403, -0.005376269109547138, -0.0031075598672032356, -0.020807849243283272, -0.00517472717911005, 0.004681766033172607, -0.01273527555167675, 0.027409711852669716, 0.005931871477514505, 0.05434007942676544, -0.0063567436300218105, -0.00561049347743392, -0.009951816871762276, 0.05699825659394264, 0.011003104038536549, -0.010948632843792439, -0.02116735652089119, -0.010866926982998848, -0.0012909582583233714, -0.012038049288094044, 0.009891899302601814, 0.006035365629941225, -0.005204685963690281, -0.015731170773506165, 0.04307551681995392, 0.022376609966158867, 0.023160988464951515, 0.018215039744973183, 0.004689936991780996, -0.027104675769805908, 0.0012378491228446364, 0.018422028049826622, 0.004022669512778521, -0.014630859717726707, -0.015927264466881752, 0.012528286315500736, 0.03878321871161461, -0.022006208077073097, 0.029305296018719673, -0.00936897937208414, -0.021319875493645668, -0.0024348453152924776, 0.01334534864872694, -0.008655412122607231, -0.03161485865712166, -0.0021529588848352432, 0.006748933345079422, 0.0183021929115057, -0.0305036548525095, -0.05603957176208496, -0.012038049288094044, 0.016330348327755928, -0.014162410981953144, 0.008911424316465855, -0.012767958454787731, -0.02684321627020836, -0.035841792821884155, -0.002449824707582593, -0.0066672274842858315, -0.015851005911827087, 0.019718432798981667, -0.02233303338289261, -0.018541863188147545, -0.01095952745527029, 0.012255932204425335, 0.013410713523626328, 0.0011881445534527302, 0.0005981575814075768, -0.03198526054620743, -0.01581832394003868, 0.01080156210809946, -0.0514640212059021, 0.011112045496702194, -0.009815639816224575, -0.03527529537677765, -0.0005865825223736465, 0.0057521178387105465, 0.04181179404258728, 0.03634292632341385, 0.027889056131243706, -0.025448763743042946, -0.012942264787852764, -0.009140201844274998, -0.006770721636712551, -0.00787647906690836, 0.003864703932777047, -0.0038374685682356358, -0.015480604022741318, -0.018748853355646133, 0.02058996632695198, 0.032922159880399704, 0.025535916909575462, 0.010708961635828018, 0.006438449956476688, -0.017321716994047165, -0.016798797994852066, 0.025971682742238045, -0.003355402033776045, 0.04000336304306984, -0.006541944574564695, -0.0440342053771019, 0.013247300870716572, -0.021929947659373283, 0.03904467821121216, -0.0009409832418896258, -0.01728903502225876, 0.03457807004451752, 0.018966736271977425, -0.01491410844027996, 0.05028745159506798, 0.019500549882650375, -0.026712486520409584, 0.032442815601825714, -0.006002683192491531, 0.0005157705163583159, -0.019979894161224365, -0.01771390810608864, -0.01942429132759571, -0.02536160871386528, -0.019587703049182892, -0.0018166014924645424, 0.011994472704827785, 0.013748432509601116, 0.00671080406755209, -0.0044012414291501045, 0.020557284355163574, -0.021657593548297882, -0.0013304495951160789, -0.021712064743041992, -0.023749273270368576, 0.002437568735331297, 0.012855111621320248, 0.0004960248479619622, 0.05878489837050438, 0.029305296018719673, -0.0070648640394210815, 0.006601862143725157, 0.0456247515976429, -0.01575295813381672, 0.0039954339154064655, 0.015949053689837456, 0.04579905793070793, -0.014260458759963512, -0.02520909160375595, -0.008219645358622074, 0.013476078398525715, 0.016363032162189484, 0.05773906037211418, 0.02388000302016735, -0.0037530388217419386, 0.035798218101263046, -0.027823690325021744, -0.041942525655031204, 0.0185745470225811, -0.00026963051641359925, 0.02276879921555519, -0.018552757799625397, 0.01650465652346611, 0.011073916219174862, -0.017201881855726242, 0.0033826373983174562, -0.01106302160769701, 0.023945368826389313, 0.025187302380800247, -0.0035269849468022585, -0.003665885655209422, 0.004156122915446758, 0.030852267518639565, 0.019772903993725777, -0.009358085691928864, 0.012964053079485893, -0.0013454289874061942, -0.03799883648753166, 0.0010519674979150295, 0.004567377269268036, -0.04176821932196617, -0.015371662564575672, -0.021200040355324745, -0.008797035552561283, 0.0062586963176727295, -0.016003524884581566, 0.04688847437500954, 0.0061279661022126675, -0.03205062448978424, -0.036103252321481705, 0.011188304983079433, 0.007892820052802563, -0.03294394537806511, 0.00027405627770349383, -0.005169279873371124, 0.014205987565219402, 0.021134674549102783, -0.007026734761893749, 0.0012221888173371553, -0.001984099391847849, 0.019173724576830864, -0.005022208672016859, -0.0029387001413851976, 0.009363532066345215, 0.033989787101745605, 0.021025732159614563, 0.001849284046329558, -0.01745244860649109, -0.004278682172298431, -0.06266321986913681, 0.028346609324216843, 0.014532811939716339, 0.01767033152282238, 0.025448763743042946, -0.02068801410496235, 0.001606888952665031, -0.005479763727635145, -0.014282247051596642, -0.015393450856208801, -0.04893657565116882, 0.004744407720863819, 0.005550575442612171, 0.0036931210197508335, 0.03137518838047981, 0.04141960293054581, 0.028194092214107513, 0.03200704976916313, 0.02886953018605709, 0.004875137470662594, -0.05634460598230362, -0.01831308752298355, 0.027039309963583946, 0.03586358204483986, -0.0015292679890990257, 0.0003006107872352004, 0.0044312006793916225, 0.015720276162028313, -0.04945949465036392, 0.010839691385626793, 0.049154460430145264, -0.0018683488015085459, 0.005354480817914009, 0.02068801410496235, -0.039829056710004807, 0.016798797994852066, -0.013160147704184055, -0.00740258302539587, -0.011155622079968452, -0.006307719741016626, 0.006689015775918961, -0.010523760691285133, -0.03505741432309151, -0.04701920226216316, 0.0038347451481968164, -0.002675878582522273, -0.0014666265342384577, -0.015295404009521008, -0.004025392699986696, -0.020415659993886948, 0.03745412826538086, -0.009156543761491776, -0.013519654981791973, 0.017310824245214462, -0.01974022202193737, 0.04444818198680878, -0.004341323859989643, -0.021396134048700333, -0.0037911683320999146, 0.00923280231654644, -0.02721361629664898, 0.021951736882328987, 0.016678962856531143, -0.004009051714092493, -0.011003104038536549, 0.02717003971338272, -0.04802146553993225, 0.02780190110206604, 0.025906316936016083, 0.022834163159132004, 0.02939244918525219, 0.031549494713544846, -0.0026050666347146034, -0.012604545801877975, -0.0167225394397974, -0.014434765093028545, 0.024163251742720604, -0.009924582205712795, -0.02058996632695198, -0.03368474915623665, -0.04429566487669945, -0.021559547632932663, 0.04466606676578522, -0.04749854654073715, 0.009984499774873257, 0.016700750216841698, 0.0310483630746603, 0.021526863798499107, 0.013236407190561295, 0.02510014921426773, -0.01894494891166687, 0.01963127963244915, 0.010289535857737064, -0.009505156427621841, 0.012800640426576138, -0.0033690195996314287, 0.006193330977112055, 0.015306297689676285, 0.0034834083635360003, -0.02233303338289261, 0.022964894771575928, 0.000751697167288512, 0.013072994537651539, 0.03492668271064758, -0.008927766233682632, 0.016951316967606544, -0.005430739838629961, 0.03327077254652977, 0.03540602698922157, -0.0025860017631202936, -0.013301772065460682, -0.014151516370475292, -0.014423870481550694, -0.016951316967606544, -0.05142044648528099, 0.020807849243283272, -0.009260037913918495, -0.008274116553366184, -0.005713988095521927, 0.04579905793070793, 0.03464343398809433, -0.011427976191043854, -0.034403763711452484, -0.0015238209161907434, 0.0222785621881485, -0.0028352057561278343, 0.012550074607133865, 0.003439831780269742, -0.0033254430163651705, 0.03991620987653732, 0.005757564678788185, 0.017223671078681946, -0.0027848202735185623, 0.005833823699504137, 0.048893000930547714, 0.022725222632288933, -0.017278140410780907, 0.010028076358139515, -0.03505741432309151, 0.023269930854439735, -0.0115369176492095, -0.016112465411424637, -0.015665804967284203, 0.016090678051114082, -0.008039891719818115, -0.011308140121400356, 0.012887793593108654, 0.017910001799464226, -0.0025560427457094193, 0.004970461595803499, 0.02265985682606697, -0.021559547632932663, 0.012027154676616192, 0.010861479677259922, -0.013792009092867374, 0.029370661824941635, 0.027823690325021744, 0.02636387199163437, 0.03538423776626587, -0.01729992963373661, -0.012343085370957851, 0.0012235506437718868, 0.03751949593424797, 0.01703847013413906, 0.014630859717726707, 0.01746334135532379, 0.04749854654073715, -0.010670831426978111, 0.04198610037565231, -0.002060358412563801, 0.018705276772379875, -0.011013997718691826, -0.006934134289622307, 0.026865003630518913, 0.024969419464468956, 0.036321137100458145, -0.018814217299222946, 0.022082466632127762, -0.006781615782529116, -0.00637853192165494, -0.06654154509305954, -0.01541523914784193, 0.03490489721298218, -0.032900370657444, -0.019827375188469887, 0.018215039744973183, -0.0334450788795948, 0.0005372183513827622, 0.01856365241110325, 0.003911004401743412, -0.02016509510576725, -0.01013701781630516, -0.028673434630036354, 0.006144307553768158], [0.0004161721153650433, 0.006428056862205267, 0.030305195599794388, -0.002899441635236144, -0.004996687173843384, 0.02705446444451809, 0.002642529085278511, -0.038778066635131836, -0.0009732529288157821, 0.06547600030899048, -0.04349686950445175, -0.004991443827748299, -0.01572933979332447, -0.02227274514734745, 0.00972073245793581, 0.005704507231712341, 0.013044865801930428, 0.008876590989530087, 0.011398528702557087, 0.015991495922207832, 0.033765651285648346, 0.03443676978349686, 0.027809472754597664, 0.01517357025295496, 0.021224122494459152, 0.01641094498336315, 0.03389148414134979, -0.00781223876401782, 0.04974665865302086, 0.0010243732249364257, 0.014984818175435066, -0.02684473991394043, 0.013642581179738045, -0.04911748692393303, 0.047062184661626816, 0.011608253233134747, -0.004325568675994873, 0.0035915325861424208, 0.03403829038143158, 0.007151606492698193, -0.03754069283604622, 0.0344577394425869, -0.05389920622110367, -0.0309763140976429, -0.019399520009756088, 0.013778901658952236, 0.020573977380990982, -0.013988626189529896, 0.008598705753684044, 0.015572046861052513, -0.024957219138741493, -0.04085433855652809, 0.026089731603860855, -0.008541031740605831, -0.03059880994260311, 0.015498642809689045, 0.02357303723692894, 0.004695207811892033, 0.044671326875686646, -0.042448244988918304, 0.027683638036251068, -0.027033492922782898, -0.01641094498336315, 0.030284222215414047, -0.031144093722105026, -0.02359401062130928, -0.05310225114226341, 0.03173132240772247, -0.013747443445026875, -0.022377608343958855, 0.045300498604774475, -0.021108774468302727, -0.012604444287717342, 0.02770461142063141, 0.0014969088369980454, 0.0062026032246649265, 0.0003775041550397873, 0.028962958604097366, -0.03825375437736511, 0.04217560216784477, 0.009107287973165512, 0.037876252084970474, -0.02818697690963745, -0.00885561853647232, -0.020584462210536003, -0.012038188055157661, 0.026739878579974174, -3.0209344913600944e-05, 0.04559411481022835, -0.012436664663255215, -0.02010209672152996, -0.029822828248143196, 0.0339963473379612, 0.030829505994915962, 0.0008094056393019855, 0.03389148414134979, 0.00984132383018732, -0.0012249223655089736, -0.052263353019952774, 0.023908596485853195, 0.0021024884190410376, 0.0684540867805481, 0.025921951979398727, 0.008236930705606937, -0.01147193182259798, -0.03865223005414009, -0.025921951979398727, -0.04307742044329643, 0.00763397291302681, 0.020825646817684174, -0.03403829038143158, 0.0036334774922579527, -0.01836138218641281, 0.04370659217238426, 0.028082115575671196, 0.018424300476908684, -0.005020280834287405, 0.02688668482005596, -0.011503390967845917, 0.007901371456682682, 0.0030908153858035803, -0.0008526613237336278, 0.0036963948514312506, -0.06581155955791473, -0.024621659889817238, -0.03494010865688324, -0.010522928088903427, 0.006842263042926788, -0.029130738228559494, 0.0640498697757721, 0.012919031083583832, -0.011262207292020321, -0.001516570569947362, -0.02029084786772728, -0.054905883967876434, 0.011765546165406704, -0.024328045547008514, 0.009746947325766087, -5.25130562891718e-05, -0.031311873346567154, 0.015425239689648151, -0.013422369956970215, 0.04129476100206375, 0.023258451372385025, -0.0034080236218869686, 0.0414205938577652, -0.013327994383871555, 0.05998121574521065, 0.06216235086321831, -0.04108503460884094, -0.02688668482005596, -0.0009411388309672475, -0.0018521298188716173, -0.017407136037945747, -0.006071525160223246, -0.01655775122344494, 0.03382856771349907, 0.007602514233440161, 0.0012124700006097555, 0.0440840981900692, -0.02862739935517311, 0.00769164739176631, 0.004385864362120628, 0.03651304170489311, 0.01924222521483898, -0.019315630197525024, -0.041609346866607666, -0.02988574653863907, -0.04907554015517235, -0.07050938904285431, -0.03212979808449745, -0.018728401511907578, -0.02405540458858013, -0.07155801355838776, -0.005494782701134682, 0.02661404386162758, -0.015897119417786598, -0.016715046018362045, -0.014229809865355492, -0.027851417660713196, -0.02946629747748375, 0.0007713930681347847, -0.059477876871824265, -0.012761738151311874, 0.014838011004030704, 0.030032552778720856, -0.021056342869997025, 0.021937185898423195, 0.02640431933104992, -0.002962358994409442, -0.028040170669555664, 0.03556928038597107, -0.000362430204404518, 0.03972182795405388, -0.010150667279958725, 0.02183232456445694, 0.01190186757594347, 0.0024196968879550695, 0.036366235464811325, -0.022356634959578514, 0.04039294645190239, -0.010528171434998512, 0.004482862073928118, -0.005730723030865192, -0.06455320864915848, -0.021024884656071663, 0.011377556249499321, -0.005767424590885639, -0.003588911145925522, -0.001913736341521144, -0.04735580086708069, -0.02248246967792511, 0.00882940273731947, 0.008048178628087044, -0.005321760196238756, 0.006527676247060299, 0.0494110994040966, -0.02032230794429779, 0.0019084932282567024, 0.013516746461391449, 0.016085872426629066, -0.023845680058002472, 0.027117382735013962, -0.008205472491681576, -0.022608304396271706, -0.01922125369310379, 0.029151709750294685, -0.03586289659142494, -0.006349410396069288, -0.034793298691511154, 0.004113222472369671, 0.01770075038075447, -0.011807491071522236, 0.0010584534611552954, -0.03577900677919388, 0.006889450829476118, -0.025900980457663536, -0.026131676509976387, -0.02728516235947609, -0.012258399277925491, -0.010643520392477512, 0.01428224053233862, -0.028249895200133324, 0.020878076553344727, -0.02290191873908043, -0.0010518996277824044, 0.0007740146247670054, 0.01814117282629013, 0.02248246967792511, -0.004739774391055107, -0.03164743259549141, 0.007366574369370937, -0.0021772028412669897, -0.04479715973138809, -0.01136706955730915, 0.017312759533524513, -0.02338428609073162, 0.011146859265863895, 0.048572201281785965, -0.025921951979398727, 0.016882825642824173, -0.0018599944887682796, -0.03452065959572792, 0.014156405813992023, -0.028438646346330643, -0.0034604547545313835, 0.023258451372385025, -0.003505021333694458, -0.045300498604774475, -0.011713115498423576, 0.034185100346803665, -0.0055996449664235115, -0.041168924421072006, -0.030829505994915962, -0.029801856726408005, -0.020647380501031876, 0.0013501016655936837, 0.014942873269319534, 0.012824655510485172, -0.026068760082125664, -0.009626355953514576, 0.01967216096818447, 0.061239562928676605, -0.006910423282533884, -0.02902587503194809, -0.022776084020733833, 0.009636842645704746, 0.026089731603860855, -0.0033687003888189793, 0.03422704339027405, 0.03076658956706524, -0.0009398280526511371, 0.0021483656018972397, -0.031962018460035324, -0.0002713311114348471, -0.008923779241740704, -0.027893362566828728, 0.011031510308384895, 0.011104914359748363, 0.0031380034051835537, 0.019357575103640556, 0.03552733734250069, 0.013778901658952236, -0.017333732917904854, -0.06555988639593124, 0.07063522189855576, -0.0018691698787733912, 0.06509849429130554, -0.028648370876908302, -0.04689440503716469, 0.018864721059799194, 0.0322556346654892, -0.018717914819717407, -0.004079142119735479, -0.03257022053003311, 0.00021136300347279757, 0.023090671747922897, 0.020416682586073875, -0.0259848702698946, -0.028333785012364388, 0.03292675316333771, -0.02420221082866192, 0.03139576315879822, -0.07801752537488937, 0.06455320864915848, 0.0072826845571398735, -0.013810360804200172, 0.015142111107707024, -0.002550774719566107, 0.009012911468744278, -0.0157188531011343, 0.03923945873975754, 0.0015965279890224338, 0.006380869075655937, 0.006926152855157852, -0.013799874112010002, -0.04089628532528877, 0.030703671276569366, -0.021496765315532684, 0.03187812864780426, -0.025900980457663536, -0.0020068015437573195, 0.0014130190247669816, 0.03412218019366264, 0.0004764679179061204, -0.009117773734033108, 0.0003653794701676816, 0.00906534306704998, 0.022000104188919067, -0.01922125369310379, -0.04383242875337601, -0.03192007541656494, -0.02881615050137043, -0.017312759533524513, -0.05759035795927048, 0.009206906892359257, 0.026970574632287025, -0.05675145983695984, -0.012247912585735321, -0.0037986356765031815, -0.02619459480047226, -0.025062082335352898, 0.013107783161103725, 0.043119363486766815, -0.03277994319796562, 0.006553891580551863, 0.017585402354598045, -0.042070742696523666, -0.0011606941698119044, -2.6087561764143175e-06, 0.03326231241226196, -0.007607757579535246, -0.010344662703573704, -0.019724592566490173, 0.021916214376688004, 0.008100610226392746, 0.02707543782889843, 0.016327055171132088, -0.04798497259616852, -0.042888667434453964, 0.027662666514515877, 0.03173132240772247, 0.024579714983701706, -0.006197359878569841, 0.03605164587497711, 0.020458627492189407, 0.0024970327503979206, 0.030640754848718643, 0.026551125571131706, -0.030263250693678856, 0.028501564636826515, 0.0012413071235641837, 0.05943593382835388, 0.022776084020733833, 0.013422369956970215, -0.03762458264827728, 0.04588772729039192, 0.038966819643974304, 0.014586341567337513, -0.04668468236923218, -0.001727605820633471, -0.042217548936605453, 0.020815160125494003, -0.03993155062198639, 0.04240630194544792, -0.01859208010137081, 0.016756990924477577, 0.008451898582279682, 0.030640754848718643, 0.07755613327026367, 0.004010981880128384, -0.00972073245793581, 0.019084932282567024, -0.023740816861391068, 0.02290191873908043, 0.0005059604300186038, 0.022880947217345238, 0.004962606821209192, 0.03647109493613243, 0.029424352571368217, -0.002400035038590431, 0.019797995686531067, -0.03716318681836128, 0.020018206909298897, -0.0025219374801963568, 0.07566861063241959, 0.008373252116143703, 0.04293061047792435, -0.043161310255527496, -0.04184004291892052, -0.01257298607379198, 0.03500302508473396, 0.11702629178762436, 0.020794186741113663, -0.05981343612074852, -0.05486393719911575, 0.003528615226969123, -0.00020841375226154923, -0.03563219681382179, -0.01895909756422043, 0.045761894434690475, 0.037687499076128006, 0.008656379766762257, -0.02426512911915779, -0.024747494608163834, 0.02313261665403843, -0.05134056508541107, 0.046181343495845795, 0.007287927437573671, -0.035485390573740005, -0.01485898345708847, 0.024600688368082047, -0.033304255455732346, 0.020133554935455322, -0.04651690274477005, -0.03343009203672409, -0.02709640935063362, -0.06849603354930878, 0.054234765470027924, -0.017092550173401833, 0.036345262080430984, 0.04915942996740341, 0.010570116341114044, -0.01637948676943779, -0.0035758032463490963, 0.021045856177806854, 0.021213635802268982, -0.0545283779501915, -0.022608304396271706, -0.0007903993246145546, -0.0072040376253426075, 0.00030377288931049407, 0.06929298490285873, -0.005872286856174469, 0.022566359490156174, 0.04123184457421303, 0.0048262858763337135, -0.03238146752119064, -0.028061142191290855, -0.006139685865491629, -0.012866600416600704, 0.022608304396271706, -0.010958107188344002, -0.02334234118461609, 0.03947015851736069, 0.05280863866209984, 0.021287040784955025, 0.023698871955275536, 0.008179256692528725, -0.014995303936302662, 0.006296979263424873, -0.05440254509449005, 0.023489147424697876, -0.006129199638962746, -0.036366235464811325, 0.01221645437180996, -0.01663115620613098, 0.001738092047162354, 0.016526293009519577, -0.029801856726408005, 0.04588772729039192, 0.008027206175029278, 0.027159327641129494, 0.011660683900117874, 0.06857991963624954, -0.016421431675553322, 0.031165065243840218, -0.043329089879989624, -0.03252827376127243, -0.00545283779501915, 0.009353714063763618, 0.07210329174995422, 0.017302274703979492, -0.0229648370295763, -0.008970966562628746, 0.026928629726171494, -0.015897119417786598, -0.011220262385904789, 0.00036603485932573676, 0.020605435594916344, 0.023908596485853195, 0.012919031083583832, -0.0023253208491951227, -0.022314690053462982, 0.010517685674130917, -0.0008454520138911903, -0.007413762155920267, -0.0021942430175840855, 0.006066282279789448, -0.0046191830188035965, -0.006595836486667395, -0.010874217376112938, -0.038106948137283325, 0.03202493488788605, 0.018036309629678726, -0.010370878502726555, 0.04932720959186554, -0.019609244540333748, -0.0019858290906995535, -0.0072354963049292564, 0.04655884578824043, 0.010192612186074257, 0.03254924714565277, 0.00045680624316446483, -0.013348966836929321, -0.004357027355581522, -0.019756050780415535, 0.010737895965576172, 0.009888512082397938, 0.028103087097406387, 0.0008533166837878525, -0.0450068861246109, -0.019504381343722343, -0.026760850101709366, -0.007046744227409363, 0.021979130804538727, 0.01659969612956047, 0.03359787166118622, -0.01354820467531681, -0.0006416260148398578, -0.020227931439876556, 0.03603067621588707, 0.04324520006775856, 0.014617799781262875, -0.006291735917329788, 0.0099199702963233, -0.005888016428798437, -0.006857992149889469, 0.027033492922782898, -0.048362478613853455, -0.06740546226501465, 0.017333732917904854, 0.017543457448482513, -0.010638277046382427, 0.005704507231712341, 0.003392294282093644, 0.030452001839876175, -0.01969313435256481, -0.02382470667362213, 0.010370878502726555, 0.014680717140436172, 0.010113965719938278, 0.02512499876320362, -0.07705279439687729, -0.04655884578824043, 0.009804622270166874, -0.025880007073283195, -0.0189695842564106, -0.00951100792735815, 0.035506363958120346, -0.02797725237905979, -0.010286988690495491, -0.004328189883381128, 0.02988574653863907, -0.00020038524235133082, 0.02290191873908043, -0.008451898582279682, 0.026551125571131706, -0.0176902636885643, 0.027767527848482132, 0.044419657438993454, 0.01123074907809496, -0.011283179745078087, 0.012604444287717342, -0.007497651968151331, 0.004842014983296394, 0.010769355110824108, 0.016264136880636215, 0.0005957487737759948, -0.006999556440860033, -0.013736956752836704, -0.01190186757594347, 0.03204590827226639, -0.005494782701134682, -0.020594948902726173, 0.033702731132507324, -0.0009208217961713672, -0.008598705753684044, 0.005872286856174469, -0.03464649245142937, -0.029361434280872345, -0.014313699677586555, 0.013390911743044853, -0.0042128413915634155, 0.04404215142130852, -0.007051987573504448, -0.018424300476908684, -0.08649040013551712, -0.0031511110719293356, 0.01573982648551464, -0.021014397963881493, -0.002713311230763793, 0.05956176668405533, -0.016547266393899918, 0.015897119417786598, 0.02906781993806362, -0.0012118145823478699, -0.018025822937488556, -0.009705002419650555, -0.011356583796441555, 0.02556542120873928, 0.02835475653409958, 0.014240295626223087, -0.05691923946142197, 0.007419005502015352, 0.0009594897273927927, 0.02380373515188694, -0.002928278874605894, -0.0043229470029473305, -0.0019543704111129045, 0.022314690053462982, 0.00863016489893198, 0.029969636350870132, -0.010863730683922768, 0.002909927861765027, -0.012709306553006172, -1.10852931811678e-06, -7.196992373792455e-05, 0.023845680058002472, -0.00960538350045681, -0.004010981880128384, 0.00643854308873415, 0.00151263817679137, -0.05331197753548622, -0.022671222686767578, 0.008100610226392746, 0.0554511658847332, -0.05071139335632324, 0.03928140550851822, -0.010339419357478619, 0.0030200332403182983, 0.015435725450515747, -0.002723797457292676, 0.012845627963542938, -0.036995407193899155, -0.05016610771417618, -0.03775041550397873, 0.00915971864014864, -0.028962958604097366, 0.03800208494067192, -0.015215515159070492, -0.011052482761442661, -0.00555770006030798, 0.012122077867388725, 0.0018272249726578593, 0.022440524771809578, 0.03173132240772247, -0.008876590989530087, 0.016033440828323364, -0.0015558939194306731, -0.0012937382562085986, -0.016054412350058556, -0.0026897171046584845, -0.006663997191935778, 0.018822776153683662, 0.013118269853293896, 0.01788950338959694, 0.027641693130135536, -0.00785942655056715, 0.014041057787835598, -0.0024288722779601812, -0.005914231762290001, -0.03626137226819992, -0.05213752016425133, 0.001790523179806769, -0.010328933596611023, 0.001481179497204721, -0.024831384420394897, 0.020385224372148514, 0.0072354963049292564, -0.03867320343852043, -0.0024970327503979206, -0.005625860765576363, -0.019472923129796982, -0.009400902315974236, -0.009673544205725193, -0.016117330640554428, -0.032842863351106644, -0.022608304396271706, 0.015823716297745705, -0.033283282071352005, -0.05956176668405533, -0.013495774008333683, -0.022650249302387238, 0.04655884578824043, 0.019252711907029152, 0.001069595105946064, 0.0005757593899033964, 0.044881049543619156, 0.0277255829423666, 0.002962358994409442, -0.0021667166147381067, 0.023656927049160004, 0.05964565649628639, 0.0414205938577652, -0.012751251459121704, -0.018613051623106003, 0.02839670144021511, -0.001027650199830532, 0.02732710726559162, -0.010538658127188683, -0.014554882422089577, 0.023447202518582344, -0.025942925363779068, 0.02355206571519375, 0.015330863185226917, 0.00915447622537613, -0.022524414584040642, 0.0061449287459254265, -0.012059160508215427, 0.00534797552973032, 0.0038222295697778463, -0.02311164326965809, -0.028669344261288643, 0.011849435977637768, -0.007104418706148863, -0.022377608343958855, 0.020815160125494003, 0.02399248629808426, 0.033304255455732346, 0.014009598642587662, -0.0323604941368103, 0.016924770548939705, 0.04261602461338043, 0.03280091658234596, -0.038987789303064346, -0.015582532621920109, -0.03173132240772247, 0.006008607801049948, -0.021916214376688004, -0.017186924815177917, 0.013999112881720066, 0.028543509542942047, 0.019074445590376854, 0.034583576023578644, -0.0009562128107063472, -0.014817038550972939, 0.0007871224079281092, -0.013695011846721172, -0.02642529085278511, 0.017071576789021492, -0.0009575235890224576, 0.017197411507368088, 0.01749102585017681, 0.04697829484939575, 0.0028050655964761972, 0.0032848105765879154, -0.001903250114992261, 0.004296731203794479, 0.020353766158223152, -0.036764711141586304, 0.003455211641266942, 0.008168770931661129, -0.01429272722452879, 0.00425740797072649, 0.030829505994915962, 0.003143246518447995, -0.04104309156537056, 0.019472923129796982, 0.023279422894120216, 0.010627790354192257, 0.0109056755900383, -0.0020107340533286333, 0.02577514573931694, 0.020615922287106514, -0.027138354256749153, -0.05821952968835831, -0.0309763140976429, -0.0052929227240383625, 0.006616808939725161, 0.041357677429914474, 0.021024884656071663, -0.02160162664949894, 0.015435725450515747, 0.023069698363542557, -0.003282188903540373, -0.05192779377102852, 0.028291840106248856, -0.023237477988004684, -0.02944532409310341, 0.04601356387138367, 0.011450959369540215, 0.0084990868344903, -0.019609244540333748, 0.012646389193832874, 0.025838062167167664, -0.017564428970217705, 0.03435287997126579, -0.006302222143858671, 0.008745512925088406, 0.017375677824020386, -0.031584516167640686, 0.02225177362561226, -0.007072960026562214, 0.0033451062627136707, 0.021245095878839493, 0.03791819512844086, -0.002055300399661064, -0.01112588681280613, 0.0008113717776723206, 0.03800208494067192, -0.0028103087097406387, -0.004079142119735479, 0.003455211641266942, 0.01101053785532713, 0.03294772282242775, -0.01944146491587162, -0.010119209066033363, -0.009143989533185959, 0.027390023693442345, -0.035233721137046814, -0.0010394472628831863, 0.01036563515663147, -0.0019818968139588833, -0.05020805448293686, 0.05285058170557022, 0.028249895200133324, -0.013726470991969109, -0.014502451755106449, -0.04108503460884094, -0.000737312831915915, -0.038736119866371155, -0.00600336492061615, 0.009233122691512108, 0.006449029315263033, 0.0038117433432489634, 0.026089731603860855, 0.010129694826900959, 0.004131573252379894, -0.005961420014500618, 0.03856834024190903, 0.015561560168862343, -0.003937578294426203, -0.008509572595357895, -0.03124895505607128, 0.007439977955073118, 0.0032218932174146175, 0.01724984310567379, 0.025062082335352898, 0.026362374424934387, 0.012226940132677555, -0.01640045829117298, 0.02529277838766575, -0.008415197022259235, -0.017962906509637833, -0.08091172575950623, 0.004385864362120628, 0.06409181654453278, 0.01858159340918064, -0.016201220452785492, 0.022629277780652046, 0.009301283396780491, 0.00045025235158391297, 0.03452065959572792, -0.030955340713262558, -0.0027421482373028994, -0.020825646817684174, -0.013023893348872662, -0.017952419817447662, -0.014565369114279747, -0.022104965522885323, 0.0033555924892425537, -0.01408300269395113, 0.007911858148872852, -0.01453390996903181, 0.053144197911024094, -0.030493946745991707, -0.028459619730710983, 0.0009227879345417023, 0.021517736837267876, 0.03791819512844086, -0.008986696600914001, 0.02269219420850277, 0.0005927995080128312, 0.012520554475486279, 0.03078756108880043, -0.045510224997997284, -0.019965775310993195, -0.005468567367643118, -0.0010977768106386065, 0.012415692210197449, -0.014366130344569683, 0.0011960852425545454, 0.005479053594172001, -0.016327055171132088, -0.053395867347717285, -0.02753683179616928, -0.009296040050685406, 0.021790379658341408, -0.009961915202438831, 0.046433012932538986, 0.006354653276503086, 0.01969313435256481, 0.03649206832051277, -0.005515755154192448, -0.035485390573740005, -0.022188855335116386, 0.004391107242554426, 0.023237477988004684, 0.005929961334913969, -0.0041158441454172134, 0.022755112498998642, -0.0027080681174993515, 0.0036859086249023676, -0.016274623572826385, -0.005119900219142437, 0.00939565896987915, 0.020133554935455322, 0.013065838254988194, -0.00573596591129899, 0.015089680440723896, -0.002744769910350442, 0.05549311265349388, 0.01158728078007698, -0.012048674747347832, -0.0061344425193965435, 0.03563219681382179, -0.03204590827226639, 0.012940003536641598, -0.018434787169098854, 0.03378662094473839, 0.011188804171979427, -0.0027080681174993515, -0.04066558554768562, 0.02317456156015396, -0.011671170592308044, -0.0009064032346941531, 0.04538438841700554, -0.0036177481524646282, -0.013695011846721172, -0.009002425707876682, 0.032675083726644516, 0.01837186887860298, 0.04496493935585022, 0.0017131873173639178, 0.03384954109787941, -0.03464649245142937, -0.0169981736689806, 0.03433190658688545, -0.021685516461730003, 0.014942873269319534, 0.015299404971301556, 0.03334620222449303, 0.014124947600066662, -0.036345262080430984, 0.01945194974541664, 0.0614912323653698, 0.009982887655496597, -0.00046630940050818026, 0.016431916505098343, -0.029990607872605324, 0.0869937390089035, 0.021308012306690216, 0.013495774008333683, 0.021433847025036812, 0.03147965297102928, 0.010842758230865002, -0.0019019393948838115, 0.02229371853172779, 0.00012624434020835906, 0.014806551858782768, -0.01059108879417181, -0.01593906432390213, 0.02579611726105213, 0.04337103292346001, 0.03080853447318077, 0.03936529532074928, 0.029424352571368217, -0.0020684082992374897, -0.038526397198438644, 0.00758678512647748, 0.014051543548703194, -0.0016791070811450481, 0.01982945390045643, -0.00016155342746060342, -0.0045300498604774475, -0.016473861411213875, -0.03447871282696724, 0.0010289610363543034, 0.019336601719260216, 0.02491527423262596, 0.010727410204708576, 0.032842863351106644, 0.04127378761768341, 0.02114023268222809, -0.05410892888903618, 0.03181521221995354, -0.010412823408842087, 0.008105853572487831, -0.002888955408707261, 0.005929961334913969, -0.03185715526342392, 0.042490191757678986, 0.03586289659142494, -0.002768363803625107, 0.04045586287975311, -0.019483409821987152, -0.04041391611099243, -0.03135381639003754, -0.013390911743044853, 0.005966662894934416, -0.010302717797458172, -0.021129745990037918, 0.013485287316143513, -0.0028391459491103888, -0.03171034902334213, 0.007445220835506916, 0.017753181979060173, 0.03598872944712639, 0.0012806304730474949, -0.01765880547463894, 0.036135535687208176, -0.009705002419650555, 0.0008415196789428592, -0.013904736377298832, 0.01614878885447979, -0.0007569745066575706, -0.03772944211959839, 0.04047683626413345, 0.0040529267862439156, 0.0024406693410128355, -0.03124895505607128, 0.0003008236235473305, -0.0011941191041842103, 0.0010473119327798486, -0.019095418974757195, 0.020144041627645493, -0.03412218019366264, -0.018665483221411705, -0.008824159391224384, -0.038547370582818985, 0.031144093722105026, 0.02554444782435894, 0.05431865528225899, 0.026509180665016174, 0.004252165090292692, 0.003719988977536559, -0.026278484612703323, -0.03422704339027405, 0.014617799781262875, -0.03204590827226639, -0.01474363449960947, 0.0025206266436725855, 0.03164743259549141, 0.007188308518379927, 0.0318991020321846, -0.0279562808573246, 0.0007294481620192528, 0.02229371853172779, -0.005893259309232235, 0.00010338763968320563, 0.0668182373046875, -0.022545387968420982, 0.005494782701134682, -0.0072040376253426075, 0.01659969612956047, 0.011933325789868832, 0.01111540012061596, 0.006506703794002533, -0.02797725237905979, -0.0033346200361847878, 0.014911414124071598, -0.017941933125257492, -0.037666525691747665, 0.02026987634599209, -0.03424801677465439, 0.041126981377601624, -0.004173518158495426, -0.014502451755106449, 0.022440524771809578, 0.017124008387327194, 0.016337541863322258, 0.0028286597225815058, -0.03447871282696724, -0.003680665511637926, 0.00882940273731947, 0.03605164587497711, 0.0036937734112143517, 0.0004672924696933478, 0.025041108950972557, -0.048991650342941284, 0.01178651861846447, -0.028438646346330643, 0.011293666437268257, 0.03433190658688545, 0.01771123707294464, -0.007780780084431171, 0.01859208010137081, -0.004299352876842022, -0.029759911820292473, -0.02292289212346077, -0.046391066163778305, -0.040057387202978134, 0.015886632725596428, -0.006349410396069288, 0.008320820517838001, -0.02487332932651043, 0.004320325329899788, 0.010643520392477512, 0.031982991844415665, 0.028690315783023834, -0.030850479379296303, 0.022608304396271706, -0.01123074907809496, 0.00820022914558649, -0.011849435977637768, 0.041777126491069794, 0.03173132240772247, 0.03183618560433388, 0.011335611343383789, 0.04058169573545456, 0.009421874769032001, 0.00981510803103447, -0.022587332874536514, -0.004962606821209192, -0.0466427356004715, 0.013537718914449215, -0.001970099750906229, 0.044000208377838135, 0.022880947217345238, 0.0027526344638317823, 0.016085872426629066, 0.016022954136133194, 0.01014542393386364, -0.011325124651193619, 0.0020212202798575163, 0.03561122715473175, 0.022650249302387238, -0.01810971274971962, 0.038799040019512177, -0.013799874112010002, -0.024600688368082047, -0.04215463250875473, -0.01517357025295496, 0.0299276914447546, -0.014701689593493938, 0.0034919134341180325, 0.01562447752803564, -0.0028312811627984047, -0.018256520852446556, 0.0017184304306283593, 0.031332846730947495, -0.02206302061676979, 0.01704011857509613, 0.010627790354192257, 0.027222244068980217, -0.013369939289987087, -0.0009614559239707887, -0.016956228762865067, -0.009678787551820278, 0.042217548936605453, -0.025649311020970345, 0.03294772282242775, -0.012583471834659576, -0.026068760082125664, 0.06300125271081924, -0.018015338107943535, 0.007219767197966576, 0.030829505994915962, 0.008771728724241257, 0.022629277780652046, 0.0009417942492291331, -0.006129199638962746, 0.00018547513172961771, -0.003001682460308075, -0.021066829562187195, 0.0077283489517867565, 0.013590149581432343, 0.009238366037607193, -0.030724644660949707, -0.01569788157939911, 0.030242277309298515, -0.05389920622110367, -0.006936639081686735, -0.029214628040790558, -0.01569788157939911, -0.025712227448821068, 0.024516798555850983, -0.027599748224020004, 0.009128260426223278, 0.0067478870041668415, -0.00016777962446212769, 0.008231688290834427, 0.001995004713535309, 0.003712124191224575, -0.029969636350870132, -0.025460558012127876, -0.01506870798766613, -0.0005518376710824668, 0.023740816861391068, 0.03124895505607128, -0.002599273342639208, -0.004128951579332352, -0.008242174051702023, 0.019116390496492386, 0.00940614566206932, 0.05582867190241814, 0.011849435977637768, -0.0073141432367265224, 0.011849435977637768, 0.003866796148940921, 0.007875156588852406, -0.004671614151448011, -0.0003532547561917454, -0.003667557844892144, 0.015236487612128258, -0.01963021606206894, 0.027872391045093536, -0.005704507231712341, -0.010570116341114044, -0.003937578294426203, 0.03294772282242775, 0.002747391350567341, 0.03248633071780205, -0.03449968621134758, 0.004404215142130852, -0.03661790490150452, -0.03238146752119064, -0.010633033700287342, 0.004459267947822809, 1.3773413229500875e-05, 0.025712227448821068, 0.00468472158536315, 0.020678838714957237, -0.02246149815618992, 0.00649621756747365, 0.006873721722513437, 0.030221305787563324, -0.031123120337724686, 0.01810971274971962, 0.00885561853647232, -0.006501460447907448, 0.023195533081889153, -0.025838062167167664, -0.011461446061730385, 0.04150448366999626, 0.022188855335116386, -0.03695346415042877, -0.01744908094406128, 0.015309890732169151, 0.03187812864780426, -0.010612061247229576, -0.02053203247487545, -0.03689054399728775, -0.037016380578279495, 0.0357370600104332, 0.010832272469997406, 0.02229371853172779, -0.012069647200405598, -0.00589850265532732, -0.013695011846721172, -0.0072931707836687565, 0.03800208494067192, 0.003507642773911357, 0.006071525160223246, 0.0002493755891919136, 0.014984818175435066, 0.013695011846721172, 0.009547709487378597, -0.032234661281108856, -0.012761738151311874, -0.0005567530752159655, 0.0021064206957817078, -0.006622052285820246, 0.030305195599794388, 0.017994364723563194, 0.0015414752997457981, 0.005515755154192448, 0.0014064651913940907, -0.025250833481550217, -0.03389148414134979, 0.02665598876774311, 0.002063165185973048, -0.003990009427070618, -0.03426899015903473, -0.0401412770152092, -0.03869417682290077, -0.04374853894114494, -0.03487718850374222, 0.01678844913840294, -0.014041057787835598, -0.015246973372995853, -0.030011581256985664, -0.04320325329899788, -0.006270763464272022, 0.017564428970217705, 0.01365306694060564, -0.02623653970658779, 0.008357523009181023, -0.019714105874300003, -0.02730613388121128, -0.023006781935691833, 0.00189669628161937, -0.000927375687751919, -0.009096801280975342, 0.008378495462238789, 0.0035941542591899633, 0.04144156724214554, -0.02311164326965809, 0.006952368188649416, -0.020615922287106514, -0.039218489080667496, -0.03653401508927345, -0.0035548307932913303, -0.001443166984245181, 0.030074497684836388, -0.014775093644857407, 0.04087531194090843, -0.012447151355445385, -0.018875207751989365, 0.007875156588852406, 0.030934369191527367, -0.004157789051532745, 0.020144041627645493, 0.014712176285684109, -0.0005361083312891424, 0.013034380041062832, -0.00452480698004365, -0.03796014189720154, -0.008027206175029278, 0.003719988977536559, -0.0022597818169742823, 0.00013501016655936837, -0.015100166201591492, 0.01495335903018713, -0.010187368839979172, -0.03819083794951439, -0.017386164516210556, -0.0024721280205994844, -0.01837186887860298, -0.027767527848482132, 0.006622052285820246, 0.008121582679450512, -0.000823168782517314, -0.010082506574690342, -0.002970223780721426, -0.033493008464574814, -0.051424454897642136, -0.046139396727085114, -0.00036210252437740564, -0.015110652893781662, -0.013170700520277023, -0.009280310943722725, -0.02466360479593277, 0.008242174051702023, -0.006663997191935778, -0.011776032857596874, -0.006459515541791916, 0.028040170669555664, -0.0030724643729627132, -0.014869469217956066, 0.008320820517838001, -0.001572933979332447, 0.0007694268715567887, 0.003950685728341341, 0.01808874122798443, -0.03187812864780426, -0.005227384157478809, 0.007550083100795746, -0.01922125369310379, -0.023510120809078217, 0.014911414124071598, 0.03477232903242111, 0.02600584179162979, 0.013107783161103725, -0.02202107571065426, 0.02118217758834362, -0.03470940887928009, 0.020353766158223152, 0.006291735917329788, -0.02971796691417694, -0.016715046018362045, 0.03011644259095192, -0.023719845339655876, -0.0029361434280872345, 0.004417323041707277, 0.017637833952903748, 9.888184285955504e-05, -0.02074175700545311, -0.023237477988004684, -0.005489539820700884, -0.008472871035337448, 0.010066777467727661, -0.009385173209011555, -0.023740816861391068, -0.009846567176282406, 0.014921900816261768, -0.012950490228831768, -0.011325124651193619, -0.01641094498336315, -0.02514597214758396, 0.009432360529899597, -0.0005783809465356171, 0.019315630197525024, 0.02292289212346077, -0.006040066480636597, -0.009400902315974236, -0.016736017540097237, -0.014229809865355492, 0.02317456156015396, 0.023656927049160004, 0.03212979808449745, 0.01366355363279581, -0.028228921815752983, 0.03498205170035362, 0.010690707713365555, 0.04823664203286171, -0.0037881494499742985, -0.0083837378770113, 0.006328437943011522, -0.0056887781247496605, -0.013034380041062832, 0.00861967820674181, 0.001368452562019229, 0.01657872460782528, -0.0198923721909523, 0.001046656514517963, -0.0061921169981360435, 0.005091063212603331, -0.02621556632220745, 0.02142336033284664, -0.008986696600914001, -0.024726523086428642, -0.02510402724146843, -0.019703619182109833, 0.03208785504102707, 0.048614148050546646, -0.02334234118461609, -0.0012340977555140853, -0.021465305238962173, -0.019105905666947365, 0.09286602586507797, -0.0218113511800766, 0.03126992657780647, -0.013506259769201279, -0.007240739651024342, 0.04087531194090843, 0.051885850727558136, -0.0005328314146026969, -0.0017013902543112636, -0.05528338626027107, -0.00682653347030282, 0.003772420110180974, 0.009453332982957363, -0.019714105874300003, 0.021045856177806854, 0.004548400640487671, -0.01877034641802311, 0.016725530847907066, -0.0515083447098732, 0.025628337636590004, -0.003001682460308075, -0.0010610750177875161, -0.02579611726105213, 0.03206688165664673, -0.0013461693888530135, -0.007340358570218086, 0.011545335873961449, 0.05037583410739899, -0.059729546308517456, -0.011849435977637768, 0.017606373876333237, 0.004136816598474979, -0.00523524871096015, 0.0028391459491103888, -0.004902311135083437, -0.03435287997126579, -0.01636900007724762, 0.0363033153116703, -0.030955340713262558, 0.01330702193081379, 0.05721285194158554, -0.029319489374756813, -0.004613939672708511, 0.012384233996272087, 0.026928629726171494, 0.00016573152970522642, 0.009123017080128193, 0.0035443445667624474, 0.01101053785532713, -0.027557803317904472, 0.03533858433365822, 0.0110210245475173, -0.03552733734250069, 0.0034289960749447346, 0.02491527423262596, 0.005594402085989714, -0.009862296283245087, -0.001357966335490346, 0.009579167701303959, 0.00785942655056715, 0.02967602200806141, -0.02464263327419758, -0.003761933883652091, -0.00245639868080616, 0.011356583796441555], [-0.0029304365161806345, 0.024488743394613266, 0.03406665846705437, 0.0062768408097326756, -0.0223555788397789, 0.011593756265938282, 0.005540898535400629, -0.009993881918489933, 0.011839070357382298, 0.026173945516347885, -0.052561208605766296, 0.02975766360759735, -0.04262065514922142, -0.011433769017457962, 0.02154497615993023, 0.03681844472885132, 0.019145164638757706, 0.014878831803798676, -0.044583167880773544, 0.012169711291790009, -0.011604422703385353, 0.009705904871225357, 0.0021491646766662598, 0.023784799501299858, 0.005183592904359102, -0.03579452261328697, 0.026813894510269165, -0.011391106061637402, 0.04046615585684776, -0.037351734936237335, 0.049958743155002594, -0.02566198632121086, 0.0061328518204391, -0.043772563338279724, 0.009311269037425518, -0.026344599202275276, -0.07457547634840012, 0.029373694211244583, 0.005540898535400629, 0.002439808566123247, -0.05435306578874588, 0.0313575379550457, -0.03664778918027878, -0.04099944978952408, -0.050129398703575134, 0.06216045469045639, 0.03954889625310898, -0.0141535559669137, 0.01594541408121586, 0.031144222244620323, -0.012180376797914505, 0.01061249990016222, 0.0386103019118309, -0.06143517792224884, 0.06983985006809235, 0.03553854301571846, 0.01608407124876976, 0.013118970207870007, 0.01491082925349474, -0.023422161117196083, -0.0050609358586370945, -0.02935236319899559, -0.009049956686794758, 0.03227480128407478, -0.005452905315905809, -0.0071194409392774105, 0.019059836864471436, 0.014420201070606709, -0.053201157599687576, 0.0034317306708544493, 0.028733745217323303, 0.028264448046684265, -0.005367578472942114, 0.02174762636423111, -0.022867538034915924, 0.008761978708207607, -0.04372990131378174, 0.019721118733286858, 0.008863303810358047, 0.02038240060210228, -0.010127205401659012, 0.0001509048161096871, -0.017790602520108223, -0.010516507551074028, 0.008047368377447128, 0.02645125612616539, -0.0049169473350048065, -0.0023598147090524435, -0.009897889569401741, -0.04360191151499748, -0.043388593941926956, 0.03150685876607895, 0.00902862474322319, 0.04272731393575668, -0.007002117112278938, 0.003031762083992362, 0.012532349675893784, -0.026088619604706764, -0.057296834886074066, 0.029480352997779846, 0.027517840266227722, 0.03626381978392601, 0.0075620729476213455, 0.03771437332034111, 0.026109950616955757, -0.08263884484767914, -0.019315816462039948, -0.003151752520352602, -0.020489057525992393, 0.00886863749474287, 0.04863618314266205, 0.00912994984537363, -0.05844874680042267, 0.06536020338535309, -0.022056935355067253, 0.00021548308723140508, -0.04454050213098526, 0.01564677245914936, 0.01756662130355835, 0.00808469858020544, -0.01605207286775112, 0.0014745509251952171, 0.02308085560798645, -0.10409849137067795, 0.0053755780681967735, 0.02389145828783512, -0.03818367049098015, 0.04872150719165802, -0.06041125953197479, 0.08084698766469955, 0.0283071119338274, -0.030525604262948036, 0.03752238675951958, -0.010159202851355076, 0.016734685748815536, 0.0007539408397860825, -0.0022531563881784678, 0.010532506741583347, -0.008617989718914032, -0.0044289855286479, 0.01222304068505764, -0.013694925233721733, 0.016244057565927505, 0.03937824070453644, -0.057296834886074066, -0.016542701050639153, -0.0246807299554348, 0.095821812748909, 0.029736332595348358, -0.03142153471708298, -0.010239196009933949, -0.009124617092311382, -0.036541130393743515, -0.03794902190566063, 0.030610930174589157, -0.0026704571209847927, 0.04067947342991829, 0.033661358058452606, 0.00525558739900589, 0.009220609441399574, 0.017374636605381966, -0.0246807299554348, 0.009337933734059334, 0.0059142024256289005, 0.02990698628127575, -0.0029064384289085865, -0.04155407100915909, -0.02070237509906292, -0.039527565240859985, -0.04061547666788101, -0.024552740156650543, -0.024723391979932785, 0.027304522693157196, -0.06582950055599213, -0.035410553216934204, -0.021150339394807816, -0.00625017611309886, -0.02854175865650177, -0.03393866866827011, -0.02500070445239544, 0.0007546074339188635, -0.015657437965273857, -0.07039447128772736, 0.010644497349858284, 0.016948003321886063, 0.04436985030770302, 0.0052475882694125175, 0.03169884532690048, 0.02668590471148491, 0.01997709833085537, 0.008633988909423351, 0.023976784199476242, -0.014420201070606709, 0.04323927313089371, -0.01238302793353796, 0.0029890986625105143, -0.027880478650331497, -0.031058894470334053, -0.000489294936414808, -0.016105402261018753, 0.027069874107837677, -0.00815935991704464, 0.04287663474678993, 0.0005922868149355054, -0.03208281472325325, -0.04204469919204712, 0.05960065498948097, -0.01657469943165779, -0.011796407401561737, 0.01718265190720558, -0.036775778979063034, -0.0037970351986587048, -0.040060855448246, -0.017609285190701485, 0.006964786443859339, 0.01616939716041088, 0.0004286330076865852, 0.03353336825966835, -0.023998117074370384, 0.007167437579482794, 0.028264448046684265, 0.037351734936237335, 0.041383419185876846, 0.011209786869585514, -0.039527565240859985, -0.029160378500819206, -0.011892399750649929, -0.0055835614912211895, 0.03974087908864021, -0.08229754120111465, -0.0290323868393898, 0.02282487414777279, -0.010847148485481739, 0.008484667167067528, -0.03282942250370979, 0.03498392179608345, -0.03447195887565613, -0.033490702509880066, -0.02252623252570629, -0.02159830369055271, -0.002042506355792284, 0.05780879408121109, -0.015668103471398354, 0.025384673848748207, -0.002657124772667885, -0.0065648178569972515, -0.02798713557422161, 0.021491646766662598, 0.05960065498948097, 0.017438631504774094, -0.00619151396676898, -0.011156457476317883, -0.010815151035785675, -0.016979999840259552, 0.005716884508728981, 0.02935236319899559, 0.03351203724741936, 0.03957022726535797, 0.06314171105623245, 0.0037997018080204725, -0.0075460742227733135, -0.012916319072246552, -0.02061704732477665, 0.015657437965273857, 0.000997921684756875, 0.013886909931898117, 0.017054662108421326, -0.03786369413137436, -0.029949648305773735, 0.013908241875469685, -0.00952458567917347, 0.0022691551130264997, 0.007242097984999418, -0.0007079444476403296, -0.015273467637598515, -0.018974510952830315, 0.008836640045046806, -0.03596517816185951, 0.0007826052606105804, -0.0038450316060334444, -0.052049245685338974, 0.00513826310634613, 0.08745980262756348, -0.027197865769267082, -0.004682299215346575, -0.021331658586859703, 0.0009999214671552181, 0.046929650008678436, 0.004935612436383963, 0.029075050726532936, 0.056016936898231506, 0.0003573052817955613, 0.04191670939326286, -0.022547563537955284, 0.02421143278479576, -0.005828875582665205, -0.05008673667907715, -0.005151595454663038, 0.015188140794634819, -0.0291817095130682, -0.0006556151784025133, 0.013822915032505989, 0.011796407401561737, -0.014004234224557877, -0.07943909615278244, 0.021843617781996727, 0.022696884348988533, 0.02839243784546852, -0.05541964992880821, -0.00923127494752407, -0.009780565276741982, 0.031485527753829956, -0.010772488079965115, 0.005684887059032917, -0.061861809343099594, -0.01695866882801056, 0.010527173988521099, 0.04223668575286865, -0.0018198571633547544, -0.0007799387676641345, 0.039762213826179504, -0.009161947295069695, 0.026792563498020172, -0.06702407449483871, 0.06698140501976013, -0.005663555581122637, -0.013662927784025669, -0.0008652654360048473, -0.023144850507378578, -0.004842286463826895, -0.009529918432235718, 0.058662060648202896, 0.0068314638920128345, 0.02709120698273182, 0.048124223947525024, 0.0030130967497825623, -0.03167751431465149, 0.03112288936972618, -0.009241941384971142, 0.03901560232043266, 0.01254301518201828, -0.029949648305773735, 0.02766716107726097, -0.003639714326709509, 0.01347094215452671, 0.005732883233577013, 0.05832075700163841, 0.04287663474678993, 0.04276997596025467, -0.0014945493312552571, 0.00039163592737168074, -0.000519292545504868, -0.017203982919454575, -0.001005921047180891, -0.03747972473502159, -0.01834522746503353, 0.031058894470334053, -0.022376909852027893, -0.0059621986001729965, -0.012041721493005753, -0.06919990479946136, 0.01948647014796734, 0.015860088169574738, 0.037351734936237335, -0.027965804561972618, -0.01864386908710003, -0.011892399750649929, -0.0290323868393898, -0.029715001583099365, 0.0031624184921383858, -0.014974824152886868, -0.03562387079000473, -0.020681044086813927, -0.048038896173238754, 0.03907959908246994, 0.002637126250192523, 0.0023211510851979256, 0.0371597483754158, -0.03383200988173485, -0.03169884532690048, 0.05925934761762619, 0.034386634826660156, 0.02276087924838066, 0.025043368339538574, 0.05209191143512726, 0.009993881918489933, -0.015177475288510323, 0.01849454827606678, 0.0013045642990618944, -0.003477060468867421, -0.0034130653366446495, 0.042983293533325195, -0.0031304210424423218, -0.023144850507378578, 0.03227480128407478, 0.011359108611941338, 0.06826131045818329, 0.04488180950284004, 0.0067994664423167706, -0.04897748678922653, 0.024894045665860176, 0.00020081756520085037, 0.008980628103017807, -0.034130655229091644, 0.02845643274486065, 0.0006586149684153497, -0.022483568638563156, -0.03538922220468521, 0.051195982843637466, 0.04042349383234978, 0.0004682965809479356, 0.0038930277805775404, 0.0075940703973174095, -0.013140302151441574, -0.009401928633451462, -0.02982165850698948, 0.03336271271109581, 0.04189537838101387, 0.037266407161951065, -0.03733040392398834, -0.028819071128964424, -0.017587952315807343, 0.03291475027799606, 0.03854630887508392, 0.0005252921255305409, 0.021406318992376328, -0.017993254587054253, -0.008154026232659817, -0.0127030024304986, -0.05298784002661705, -0.0627150759100914, -0.013492274098098278, 0.05217723920941353, 0.00928993709385395, -0.021150339394807816, 0.010260527953505516, 0.014718844555318356, -0.004274331033229828, -0.006202179938554764, 0.014900163747370243, 0.026472589001059532, -0.0011992391664534807, 0.03899427130818367, 0.023998117074370384, -0.047868240624666214, 0.010735156945884228, -0.027709824964404106, 0.021043680608272552, 0.05200658366084099, -0.051025327295064926, 0.02107567898929119, -0.01206305343657732, -0.00808469858020544, -0.011636420153081417, -0.026728568598628044, -0.0172786433249712, 0.004615637473762035, -0.053841106593608856, 0.07594070583581924, -0.03470660746097565, 0.04200203716754913, 0.04961743950843811, 0.03353336825966835, 0.055675629526376724, -0.009823229163885117, 0.04106344282627106, -0.023528819903731346, -0.014452198520302773, -0.03664778918027878, -0.027944473549723625, 0.021886281669139862, -0.023998117074370384, 0.014601520262658596, 0.0015772095648571849, 0.02630193531513214, -0.018601207062602043, 0.0058982037007808685, -0.026152614504098892, -0.01608407124876976, -0.021587638184428215, 0.01643604226410389, 0.024488743394613266, -0.0178545992821455, 0.003605050267651677, -0.0354318842291832, 0.029970981180667877, 0.04428452253341675, -0.0007886047824285924, -0.008351344615221024, -0.03989020362496376, -0.03884495049715042, -0.044199198484420776, 0.04509512707591057, -0.007108775433152914, 0.014836168847978115, 0.018302563577890396, 0.011103128083050251, 0.031165553256869316, 0.04889216274023056, -0.03481326624751091, 0.009609912522137165, -0.036861106753349304, 0.018185239285230637, 0.021001018583774567, 0.04131942242383957, -0.0027517839334905148, -0.013257625512778759, 0.01854787766933441, -0.052475880831480026, -0.0004556309140753001, -0.013065640814602375, -0.011156457476317883, 0.001578542753122747, 0.013673593290150166, -0.013140302151441574, 0.006527487654238939, 0.0033864008728414774, 0.0023678140714764595, 0.007700728718191385, 0.033021409064531326, 0.018558543175458908, -0.0014518860261887312, -0.02029707282781601, 0.008020703680813313, 0.0033810678869485855, -0.008601991459727287, 0.011913731694221497, -0.05260387063026428, 0.04769758880138397, -0.004276997409760952, 0.016969334334135056, -0.029928317293524742, -0.04308995231986046, -0.020041093230247498, 0.007668731268495321, -0.0014625518815591931, -0.014228216372430325, -0.004404987674206495, 0.00958324782550335, 0.0014372204896062613, 0.0016558700008317828, -0.03240279108285904, -0.002509136451408267, -0.004308994859457016, 0.009519252926111221, 0.046673670411109924, 0.021971609443426132, 0.016628028824925423, 0.003922358620911837, -0.01524147018790245, -0.015668103471398354, 0.005791545379906893, 0.0034050659742206335, -0.0037890358362346888, 0.01033518835902214, 0.033000074326992035, 0.03210414573550224, 0.025363342836499214, -0.005642223637551069, 0.009039290249347687, 0.01492149569094181, 0.023144850507378578, 0.019059836864471436, 0.008948630653321743, -0.018857186660170555, 0.021555641666054726, -0.0037997018080204725, -0.02276087924838066, 0.0037490390241146088, -0.02653658390045166, -0.02613128162920475, -0.018270565196871758, 0.023998117074370384, 0.0223555788397789, 0.014398870058357716, 0.004919613711535931, 0.03496258705854416, -0.03481326624751091, 0.0002426476130494848, 0.003719707950949669, 0.017001332715153694, 0.04136208817362785, 0.016564033925533295, -0.035346560180187225, -0.03811967372894287, 0.005940867122262716, -0.018014585599303246, -0.026109950616955757, -0.05473703518509865, 0.053286485373973846, 0.045308444648981094, -0.025597991421818733, 0.013278957456350327, 0.00920461118221283, 0.010953806340694427, 0.059046030044555664, -0.02412610687315464, 0.015273467637598515, -0.025704648345708847, 0.03737306594848633, 0.02935236319899559, 0.0009839227423071861, -0.014494862407445908, 0.03289341926574707, -0.004242333583533764, 0.004023684188723564, 0.00985522661358118, -0.003522390266880393, -0.027624499052762985, 0.030760252848267555, 0.024552740156650543, -0.013417613692581654, -0.016660025343298912, -0.0060901883989572525, -0.03664778918027878, -0.005071601830422878, -0.009769899770617485, -0.00415967358276248, 0.01660669595003128, -0.010633831843733788, -0.03656246140599251, -0.016073405742645264, 0.012724334374070168, -0.04445517808198929, -0.010713825933635235, 0.01584942266345024, -0.021907612681388855, -0.04262065514922142, 0.04300462454557419, -0.046588342636823654, -0.005562230013310909, 0.013225628063082695, 0.038077011704444885, -0.02549133263528347, -0.0007359422161243856, 0.011593756265938282, 0.015252135694026947, -0.02250489965081215, -0.002005175920203328, 0.02879774011671543, 0.05089733749628067, 0.0055355653166770935, 0.0164040457457304, -0.04680166020989418, 0.029459020122885704, 0.002699787961319089, 0.0012485686456784606, 0.016478706151247025, 0.0012672338634729385, 0.006527487654238939, 0.017267977818846703, -0.021299662068486214, 5.8120436733588576e-05, 0.00199584336951375, -0.022867538034915924, 0.0018185238586738706, -0.03086690977215767, 0.027624499052762985, -0.019326481968164444, 0.0013618931407108903, -0.052049245685338974, 0.009823229163885117, 0.006367499940097332, -0.02195027656853199, 0.029075050726532936, 0.026984548196196556, -0.0002958101104013622, -0.01721464842557907, 0.03961288928985596, 0.015145477838814259, -0.0008619323489256203, 0.013982902280986309, -0.030909573659300804, -0.013769585639238358, -0.02031840570271015, 0.03867429867386818, -0.042812637984752655, 0.023187512531876564, -0.014484195969998837, 0.05089733749628067, -0.020201081410050392, 0.01386557798832655, -0.016308052465319633, 0.005935533903539181, 0.0038130339235067368, -0.02459540218114853, 0.018366558477282524, -0.02259022742509842, 0.03329871967434883, 0.0018665201496332884, 0.030056307092308998, -0.020574385300278664, -0.057936783879995346, -0.0014665515627712011, -0.009492588229477406, -0.012905653566122055, 0.003074425272643566, 0.0204677265137434, -0.021992940455675125, -0.014174886979162693, -0.010127205401659012, -0.0007226099260151386, -0.03361869603395462, -0.04398588091135025, -0.01194572914391756, -0.018366558477282524, -0.02508603036403656, -0.013790917582809925, 0.025939296931028366, 0.014868166297674179, -0.018633203580975533, 0.03989020362496376, 0.002091835718601942, -0.017811935395002365, -0.03278676047921181, 0.003058426547795534, -0.00200650910846889, 0.024574071168899536, 0.03669045493006706, 0.029864322394132614, -0.04262065514922142, -0.00018898517009802163, -0.010836482979357243, 0.01616939716041088, 0.04479648172855377, -0.009711237624287605, -0.0065008229576051235, -0.012948316521942616, 0.019795779138803482, 0.03487726300954819, 0.02073437161743641, 0.008489999920129776, -0.007231432478874922, 0.03415198624134064, 0.0011752410791814327, 0.008628656156361103, -0.030760252848267555, 0.014729510061442852, 0.024574071168899536, 0.00985522661358118, -0.013780251145362854, -0.03193349391222, -0.008991294540464878, -0.046119045466184616, 0.0006089521921239793, 0.006148850545287132, -0.002603795612230897, 0.01238302793353796, 0.0082020228728652, -0.04110610485076904, 0.0035597204696387053, 0.0044103204272687435, -0.012479020282626152, -0.006948787719011307, 0.018803857266902924, -0.0037943688221275806, -0.010281859897077084, -0.03464261442422867, -0.007978040724992752, 0.0019011840922757983, -0.00201050890609622, -0.014174886979162693, -0.004263665527105331, 0.010644497349858284, 0.012628342024981976, -0.020393066108226776, -0.0394848994910717, 0.0032690768130123615, -0.010265860706567764, -0.02331550233066082, -0.024254096671938896, -0.004444984253495932, 0.020510390400886536, 0.03391733765602112, 0.02252623252570629, -0.024488743394613266, -0.009551250375807285, -0.0005562896840274334, -0.0145161934196949, 0.016884008422493935, 0.0259819608181715, 0.004751626867800951, 0.028755076229572296, 0.01370559073984623, 0.009481922723352909, -0.010852481238543987, -0.008772645145654678, 0.007519409526139498, -0.002062504645437002, 0.041852716356515884, -0.027539171278476715, 0.02653658390045166, 0.02203560434281826, -0.05072668567299843, -0.011881734244525433, 0.014612186700105667, -0.019721118733286858, -0.05597427114844322, 0.004684965591877699, 0.026408594101667404, -0.016468040645122528, -0.00016423710621893406, 0.015412123873829842, -0.005796878132969141, 0.024638066068291664, -0.029736332595348358, -0.03246678411960602, 0.011124460026621819, 0.018910516053438187, 0.00928993709385395, 0.03248811513185501, 0.008713982999324799, -0.008495332673192024, 0.007967374287545681, 0.0060741896741092205, -0.0031624184921383858, -0.03893027827143669, 0.0508120097219944, -0.006618147250264883, 0.0031464197672903538, 0.008601991459727287, 0.01800392009317875, 0.04038083180785179, -0.004127676133066416, 0.02006242424249649, 0.0061221858486533165, -0.06600014865398407, 0.003682377515360713, 0.012127048335969448, 0.02276087924838066, 0.01584942266345024, -0.017609285190701485, 0.042258016765117645, 0.011700415052473545, 0.0021731627639383078, 0.011689748615026474, -0.04415653273463249, -0.010607167147099972, 0.03487726300954819, 0.010399183258414268, 0.02203560434281826, -0.0076740640215575695, 0.02958700992166996, 0.0034717274829745293, -0.012788329273462296, 0.026963217183947563, 0.018921181559562683, 0.0033464040607213974, -0.007759390864521265, 0.012308367528021336, -0.013289623893797398, 0.032360125333070755, -0.010687161237001419, 0.01178574189543724, -0.04114877060055733, -0.049105480313301086, 0.042983293533325195, -0.003197082318365574, -0.012649673968553543, -0.029565678909420967, 0.012862990610301495, -0.02694188430905342, -0.02081969939172268, 0.013502939604222775, 0.0023171515204012394, 0.012116381898522377, 0.029544347897171974, 0.01768394559621811, 0.017171984538435936, -0.0013798916479572654, 0.02604595571756363, 0.01024986244738102, 0.0023238176945596933, -0.0016998666105791926, -0.009535251185297966, -0.006618147250264883, 0.0059621986001729965, 0.044412512332201004, 0.008372675627470016, 0.03199748694896698, 0.01616939716041088, 0.018281230702996254, 0.05388376861810684, -0.012798995710909367, -0.020713040605187416, -0.044199198484420776, 0.012756331823766232, 0.04390055313706398, 0.050385378301143646, 0.0064528267830610275, 0.044839147478342056, 0.01463351771235466, -0.0033304053358733654, 0.030845578759908676, 0.009732569567859173, -0.008644654415547848, -0.013406947255134583, -0.04752693697810173, -0.019795779138803482, -0.008836640045046806, -0.02984299138188362, 0.010676494799554348, -0.027645830065011978, 0.0001188240057672374, -0.014857500791549683, 0.046119045466184616, -0.024296758696436882, -0.017235979437828064, -0.004300995729863644, 0.005274252500385046, 0.07235698401927948, 0.016617361456155777, 0.04191670939326286, -0.009615245275199413, 0.018387889489531517, -0.00853799656033516, -0.03095223754644394, -0.007002117112278938, 0.005042270757257938, 0.006415496580302715, 0.0054875691421329975, 0.007471413351595402, 0.022974196821451187, -0.0259819608181715, -0.012009724043309689, -0.013780251145362854, -0.0029117714148014784, 0.0245314072817564, 0.016180062666535378, -0.009535251185297966, 0.007108775433152914, 0.0005832875613123178, 0.004999607335776091, 0.032125476747751236, -0.011529761366546154, 0.0028264448046684265, -0.02250489965081215, -0.0028477765154093504, 0.01282032672315836, 0.013193630613386631, 0.027304522693157196, 0.00901795830577612, -0.01761995069682598, -0.006186181213706732, -0.013961570337414742, 0.009380596689879894, -0.0164040457457304, 0.007503410801291466, -0.0029491018503904343, -0.02055305242538452, 0.021203668788075447, -0.018622538074851036, 0.03383200988173485, -0.021704962477087975, -0.011636420153081417, 0.040316835045814514, 0.02990698628127575, -0.0598139725625515, -0.0027997801080346107, -0.012766997329890728, 0.0006272841128520668, -0.00423166761174798, 0.0016012076521292329, -0.039036937057971954, 0.02694188430905342, 0.019561130553483963, 0.028285779058933258, 0.006607481278479099, 0.026323266327381134, 0.021768957376480103, 0.016937337815761566, 0.018025251105427742, 0.05964331701397896, 0.04134075343608856, -0.03406665846705437, 0.02380613051354885, -0.03765037655830383, 0.004258332308381796, 0.017641281709074974, 0.008761978708207607, -0.01571076735854149, 0.01904917135834694, 0.0070234485901892185, 0.029331030324101448, -0.011135125532746315, 0.023422161117196083, 0.06288573145866394, 0.0034583951346576214, 0.007903379388153553, -0.0012372361961752176, -0.015593442134559155, 0.041447412222623825, 0.011423103511333466, -0.0027171201072633266, 0.017150653526186943, 0.01672402024269104, 0.04961743950843811, 0.013353618793189526, 0.004727629013359547, -0.01971045322716236, -0.00423966720700264, -0.01122045237571001, 0.008889968506991863, -0.002019841456785798, 0.025533994659781456, -0.008052701130509377, 0.02276087924838066, -0.016041407361626625, 0.003613049630075693, -0.012319033034145832, 0.010500509291887283, -0.02790180966258049, -0.03506924584507942, 0.0018358558882027864, -0.04134075343608856, -0.016500037163496017, -0.017033329233527184, -0.029928317293524742, 0.02250489965081215, 0.004191671032458544, 0.0002958101104013622, 0.016884008422493935, -0.004165006335824728, 0.04671633243560791, 0.010340522043406963, 0.012468354776501656, 0.026749899610877037, -0.01508148293942213, 0.018835855647921562, -0.017118657007813454, 0.03436530381441116, -0.010996470227837563, 0.035815853625535965, 0.020862361416220665, -0.00879930891096592, 0.05443839356303215, -0.029245704412460327, -0.03752238675951958, -0.02159830369055271, -0.010623166337609291, -0.004103677812963724, -0.020713040605187416, -0.009065954945981503, 0.043132614344358444, 0.03470660746097565, 0.003103756345808506, 0.011103128083050251, 0.031101558357477188, 0.00023931454052217305, 0.0032824089284986258, -0.051579952239990234, 0.03233879432082176, -0.06685341894626617, -0.020201081410050392, -0.010815151035785675, 0.027923140674829483, 0.012532349675893784, -0.008921965956687927, 0.020595716312527657, 0.01519880723208189, 0.02766716107726097, -0.02476605586707592, -0.00016173730546142906, 0.009433926083147526, 0.018942512571811676, 0.01447353046387434, -0.06309904903173447, -0.04127676039934158, 0.007615402340888977, 0.023699473589658737, -0.034450627863407135, 0.011465766467154026, 0.026835227385163307, 0.026579247787594795, 0.0006582816713489592, 0.007908712141215801, -0.016148066148161888, -0.028605753555893898, -0.022739548236131668, 0.007092776708304882, -0.03547454997897148, 2.118583688570652e-05, 0.008937965147197247, -0.007775389589369297, -0.005791545379906893, 0.008548662066459656, -0.02070237509906292, -0.034685276448726654, -0.028093794360756874, 0.028840402141213417, -0.022163594141602516, 0.04855085536837578, -0.035837188363075256, -0.022739548236131668, -0.007044780533760786, 0.008836640045046806, 0.034685276448726654, -0.01948647014796734, 0.035709198564291, -0.01475084200501442, -0.0013505606912076473, -0.007439415901899338, -0.00950858648866415, -0.022974196821451187, 0.05627291649580002, -0.04415653273463249, 0.042258016765117645, 0.0011212453246116638, -0.006852795369923115, 0.007919378578662872, 0.024296758696436882, 0.0068154651671648026, 0.004061014391481876, -0.004551642574369907, 0.027453845366835594, 0.005319582298398018, 0.011327111162245274, 0.007754058111459017, -0.018803857266902924, -0.02975766360759735, -0.02053172141313553, 0.009689905680716038, -0.01878252625465393, 0.027240527793765068, -0.026173945516347885, 0.00950858648866415, 0.006804799195379019, 0.033661358058452606, -0.016180062666535378, 0.00533558102324605, 0.017086658626794815, -0.042663317173719406, -0.034130655229091644, -0.015529447235167027, -0.02749650739133358, 0.031805504113435745, -0.011540427803993225, -0.053670454770326614, -0.014302876777946949, 0.016265390440821648, -0.0006082855979911983, 0.003546388354152441, 0.00413034250959754, -0.007332757581025362, -0.0035143906716257334, -0.025192689150571823, 0.0038157005328685045, 0.037586383521556854, 0.014974824152886868, 0.025235353037714958, 0.015433454886078835, -0.00039296914474107325, -0.007780722342431545, 0.03182683512568474, -0.0015692102024331689, -0.008047368377447128, -0.00407967995852232, 0.0003473060787655413, 0.04044482484459877, 0.02999231219291687, 0.007412751205265522, -0.019518468528985977, 0.04432718828320503, 0.009929887019097805, -0.012276370078325272, 0.012084384448826313, 0.013982902280986309, -0.008793976157903671, -0.03709575533866882, 0.005636890884488821, -0.02212093025445938, -0.01017520111054182, -0.0598139725625515, -0.010692493990063667, 0.009060622192919254, -0.013769585639238358, 0.005322248674929142, 0.01061249990016222, 0.00014507194282487035, -0.013737588189542294, 0.012756331823766232, 0.018515879288315773, 0.0036690453998744488, -0.021384987980127335, -0.004125009290874004, 0.03071758896112442, 0.004586306866258383, 0.014441533014178276, 0.034855931997299194, -0.01374825369566679, 0.024702060967683792, 0.006047525443136692, 0.040402162820100784, 0.015636105090379715, -0.021352989599108696, 0.016542701050639153, -0.02067037671804428, -0.008756645955145359, -0.012521684169769287, 0.015988077968358994, -0.022163594141602516, 0.02316618151962757, 0.0038263662718236446, -0.03182683512568474, -0.008548662066459656, -0.015220138244330883, 0.005098266527056694, 0.012276370078325272, 0.0005242921761237085, -0.03385334089398384, -0.017235979437828064, 0.047313619405031204, 0.0037303739227354527, -0.021587638184428215, -0.013684258796274662, 0.0004179671814199537, -0.019561130553483963, -0.005412908270955086, -0.029139045625925064, -0.0017811935395002365, 0.0032637438271194696, 0.009839227423071861, 0.0001349894009763375, -0.005759547930210829, -0.025939296931028366, 0.0012845657765865326, -0.01750262640416622, -0.010207198560237885, -0.023272840306162834, -0.017609285190701485, 0.038631632924079895, 0.01660669595003128, -0.03901560232043266, 0.024808719754219055, 0.015902752056717873, 0.004170339088886976, 0.004626303445547819, 0.026920553296804428, -0.008266017772257328, -0.006495490204542875, 0.007876714691519737, 0.029288368299603462, 0.025832638144493103, -0.02035040222108364, -0.012031055986881256, 0.002054505283012986, -0.021235667169094086, -0.0245314072817564, 0.004279664251953363, 0.011081797070801258, 0.021704962477087975, 0.018558543175458908, 0.0304829403758049, 0.03498392179608345, -0.04294062778353691, 0.015390791930258274, 0.0069594536907970905, -0.02171562798321247, -0.0006872793892398477, 0.02299552783370018, -0.029885653406381607, 0.03152819350361824, -0.0145161934196949, 0.0461617112159729, 0.005460904445499182, -0.019561130553483963, -0.013812249526381493, 0.020361067727208138, 0.0027544505428522825, -0.0027184532955288887, 0.025342009961605072, -0.02662190981209278, 0.016073405742645264, -0.0063728331588208675, 0.014292211271822453, 0.003946356941014528, 0.016393380239605904, 0.001515881041996181, 0.01776927150785923, 0.012329698540270329, 0.03794902190566063, -0.00509560015052557, -0.014964158646762371, -0.03811967372894287, -0.012766997329890728, -0.009647242724895477, 0.010527173988521099, 0.012319033034145832, 0.015380126424133778, -0.019795779138803482, -0.01756662130355835, -0.03434396907687187, 0.022654222324490547, 0.0013985568657517433, 0.0012998979073017836, 0.008388674817979336, -0.004631636198610067, 0.019113166257739067, 0.016105402261018753, -0.001546545303426683, -0.03191216289997101, 0.025768643245100975, -0.012607010081410408, 0.02355015091598034, 0.00968457292765379, 0.006591482553631067, 0.004722295794636011, 0.009049956686794758, 0.018963845446705818, 0.00302642909809947, 0.012276370078325272, 0.014612186700105667, 0.03762904554605484, 0.02749650739133358, -0.007871381938457489, -0.0038183669093996286, -0.04127676039934158, -0.032210804522037506, -0.0102338632568717, -0.007050113286823034, -0.002609128598123789, -0.019603794440627098, -0.011903065256774426, 0.0027731156442314386, 0.011977726593613625, -0.041383419185876846, -0.0013238961109891534, -0.005380910821259022, 0.01756662130355835, -0.004221002105623484, -0.010169868357479572, -0.026579247787594795, -0.03451462462544441, -0.001057250308804214, -0.0061061871238052845, 0.025427337735891342, 0.03765037655830383, 0.012553681619465351, -0.054481055587530136, 0.03016296587884426, -0.04221535101532936, 0.002070504240691662, -0.023016860708594322, -0.00731675885617733, 0.023059522733092308, 0.0012119049206376076, 0.01122045237571001, 0.009924554266035557, 0.016393380239605904, 0.013524271547794342, -0.012244371697306633, 0.020115753635764122, 0.0034743938595056534, 0.02163030207157135, 0.005108932498842478, -0.004127676133066416, -0.00826068501919508, 0.032360125333070755, -0.018238568678498268, -0.015348128043115139, 0.03933557868003845, 0.01982777751982212, -0.04244999960064888, -0.008228687569499016, -0.003173084231093526, -0.00025264683063142, -0.042577989399433136, -0.007423417177051306, 0.03120821714401245, 0.04825221374630928, -0.0328080914914608, 0.019934434443712234, 0.005668888334184885, -0.009209943935275078, 0.0011499096872285008, 0.014089561067521572, 0.015124145895242691, -0.022376909852027893, -0.00200650910846889, 0.023614145815372467, 0.010505842044949532, -0.0360078401863575, 0.004626303445547819, -0.009892556816339493, -0.014708179049193859, 0.011540427803993225, -0.026109950616955757, -0.027645830065011978, 0.004511645995080471, 0.000520625791978091, -0.029693668708205223, -0.011209786869585514, -0.007524742744863033, -0.009455258026719093, -0.03265877068042755, 0.01326829195022583, -0.05469437316060066, 0.04200203716754913, -0.01631871983408928, -0.02021174691617489, -0.03016296587884426, 0.04247133433818817, 0.0067834677174687386, 0.01884652115404606, 0.0023558151442557573, -0.01547611877322197, -0.0010865813819691539, -0.020606381818652153, 0.019849108532071114, 0.06015527620911598, -0.023464825004339218, 0.0008912633638828993, 0.047953568398952484, -0.0268565583974123, 0.01540145743638277, -0.016297386959195137, 0.03216814249753952, -0.03760771453380585, -0.023592814803123474, -0.016158731654286385, -0.0259819608181715, -0.01222304068505764, 0.0009592580026946962, 0.025342009961605072, 0.00619151396676898, -0.009641909971833229, 0.006447494029998779, 0.00824468582868576, -0.017491960898041725, -0.03809834271669388, 0.000511959835421294, 0.011135125532746315, 0.03451462462544441, 0.015934748575091362, 2.3664808395551518e-05, -0.002697121584787965, 0.01631871983408928, 0.00991388875991106, -0.013758920133113861, 0.01733197271823883, 0.01652137003839016, 0.006634145975112915, -0.011167122982442379, -0.007892713882029057, 0.0033624027855694294, 0.013630930334329605, -0.025683317333459854, -0.0062928395345807076, 0.013620263896882534, 0.00912994984537363, -0.018707863986492157, 0.005356912966817617, -0.004871617536991835, 0.015636105090379715, 0.009263272397220135, -0.0034637281205505133, 0.002721119672060013, -0.02412610687315464, -0.020329071208834648, -0.02203560434281826, -0.04914814233779907, -0.025192689150571823, -0.019209159538149834, -0.027432512491941452, 0.0042343344539403915, 0.02798713557422161, 0.019870439544320107, -0.010127205401659012, -0.009759234264492989, -0.01564677245914936, -0.01803591661155224, 0.032594773918390274, -0.011689748615026474, -0.0038530309684574604, -0.02845643274486065, -0.03261610493063927, -0.003703709226101637, 0.012681671418249607, 0.0013618931407108903, -0.0034663944970816374, -0.0336826890707016, -0.00721543375402689, -0.004711630288511515, -0.03161351755261421, -0.029736332595348358, 0.01677734963595867, -0.027709824964404106, -0.018515879288315773, 0.0017571953358128667, -0.03410932421684265, -0.016212061047554016, 0.013609598390758038, 0.0028264448046684265, -0.0050289384089410305, -0.0033410710748285055, 0.00022214923228602856, -0.02099035307765007, 0.013214962556958199, 0.01878252625465393, -0.02493670955300331, -0.02250489965081215, 0.028968391939997673, 0.02180095575749874, -0.010516507551074028, 0.007876714691519737, 0.01645737513899803, -0.05853407084941864, 0.002118500415235758, 0.03852497413754463, 0.008111363276839256, -0.002525135176256299, 0.039527565240859985, -0.03829032927751541, 0.028371106833219528, 0.0018038584385067225, 0.027304522693157196, 0.0023291504476219416, -0.02218492515385151, 0.0232301764190197, -0.011764409951865673, -0.011817739345133305, 0.040658142417669296, 0.0068954587914049625, -0.013940239325165749, -0.019721118733286858, 0.0004669633344747126, 0.009193944744765759, -0.0065168216824531555, -0.019358480349183083, 0.02093702368438244, -0.008553994819521904, 0.022931532934308052, -0.01846254989504814, -0.029629673808813095, 0.023464825004339218, 0.030781583860516548], [0.010021870955824852, -0.019353358075022697, 0.019636301323771477, 0.005480621941387653, -0.04303009808063507, 0.01981738582253456, -0.024468982592225075, -0.026551449671387672, 0.004572372417896986, 0.02544230967760086, -0.041106078773736954, 0.0314180850982666, -0.051110975444316864, 0.010853725485503674, 0.010774501599371433, 0.009359782561659813, -0.008646763861179352, 0.014215098693966866, 0.010514193214476109, -0.0012279762886464596, 0.008742964826524258, 0.03737122192978859, 0.00955218356102705, 0.015233696438372135, 0.017282210290431976, -0.0028450002428144217, 0.010542487725615501, 0.012460846453905106, 0.05201639607548714, 0.008165759034454823, 0.05921448767185211, -0.02843019738793373, 0.01905909739434719, -0.030241036787629128, 0.0019749479833990335, 0.005325003061443567, -0.0337495394051075, 0.02253364771604538, 0.03370426967740059, 0.004626131616532803, -0.07265997678041458, 0.05355560779571533, -0.013615257106721401, -0.05554753541946411, -0.02292976900935173, 0.04898323863744736, 0.031010644510388374, -0.03273094445466995, -0.024265263229608536, 0.012947509996592999, -0.006264376454055309, 0.0020315367728471756, 0.018651656806468964, -0.040381744503974915, 0.050748806446790695, 0.004306405317038298, 0.010729230009019375, 0.00040814647218212485, 0.042939554899930954, -0.012415575794875622, 0.007843202911317348, -0.01433959323912859, -0.01535819098353386, 0.008641105145215988, 0.004136638715863228, -0.004614814184606075, 0.004176251124590635, 0.028973449021577835, -0.01627492904663086, -0.007526305969804525, 0.010361403226852417, 0.004711014684289694, -0.009105132892727852, -0.03632998839020729, 0.02523859031498432, 0.017440658062696457, -0.014871528372168541, 0.052786003798246384, -0.004733650479465723, 0.019964516162872314, -0.016772910952568054, 0.04454667866230011, -0.015199743211269379, 0.03673742711544037, 0.007882814854383469, 0.006224764510989189, -0.011147987097501755, -0.011770463548600674, -0.010898996144533157, -0.0128230145201087, -0.024514254182577133, -0.00023307498486246914, -0.01826685480773449, 0.0644206553697586, -0.033840082585811615, -0.015211060643196106, 0.03626208379864693, -0.03062584064900875, -0.030014682561159134, 0.028226476162672043, -0.018074452877044678, 0.02424262836575508, 0.0379597432911396, 0.03277621418237686, -0.009467300958931446, -0.058444879949092865, -0.053465068340301514, 0.02038327418267727, -0.004719503223896027, 0.005497598554939032, -0.009399394504725933, 0.0209378432482481, -0.02512541227042675, 0.06342469155788422, 0.01224580965936184, -0.008720329031348228, 0.01032744999974966, 0.04649333283305168, 0.026823075488209724, -0.006847240962088108, -9.460934234084561e-05, -0.03026367351412773, 0.01579958386719227, -0.06994371861219406, -0.016920041292905807, 0.029652513563632965, -0.026144010946154594, 0.02994677610695362, -0.02935825288295746, 0.015844855457544327, 0.00310106435790658, -0.023359842598438263, 0.04072127863764763, -0.004419582895934582, -0.022624189034104347, -0.02149241417646408, -0.048349443823099136, 0.0066265445202589035, -0.0015477028209716082, -0.016931358724832535, 0.014305640012025833, 0.009603113867342472, 0.05636241286993027, 0.019964516162872314, -0.02188853546977043, -0.02090389095246792, -0.004634620156139135, 0.10013948380947113, 0.019953198730945587, -0.011668603867292404, -0.03406643867492676, -0.009812491945922375, -0.005726783070713282, -0.048349443823099136, 0.0010921632638201118, -0.017406703904271126, 0.028203841298818588, 0.018651656806468964, -0.004546907264739275, 0.018323441967368126, -0.01232503354549408, -0.007469717413187027, -0.00662088580429554, -0.027049431577324867, 0.01962498389184475, -0.0021984735503792763, -0.015460051596164703, -0.0056617059744894505, -0.04198886454105377, -0.018493209034204483, -0.020519087091088295, -0.02333720773458481, 0.006926465313881636, -0.062157101929187775, -0.008725987747311592, 0.0007098353235051036, 0.017440658062696457, 0.006151198875159025, 0.019953198730945587, -0.028203841298818588, 0.030557934194803238, 0.03062584064900875, -0.048756882548332214, -0.013920837081968784, 0.004071561619639397, 0.03309310972690582, -0.0038508656434714794, 0.011849687434732914, 0.03958950191736221, -0.02476324513554573, -0.023880459368228912, -0.018278172239661217, -0.001607120968401432, 0.03338737413287163, -0.03458705544471741, 0.05192585289478302, -0.033274196088314056, -0.030286308377981186, 0.008725987747311592, -0.015890125185251236, 0.016376789659261703, -0.04011011868715286, 0.055140092968940735, 0.029086627066135406, -0.04821363091468811, -0.053827233612537384, -0.0026936253998428583, -0.0060776337049901485, 0.024038909003138542, 0.0018391349585726857, -0.028566010296344757, 0.006564296782016754, -0.0586259625852108, 0.01559586450457573, -0.03365899994969368, -0.021526366472244263, -0.01426036935299635, -0.03282148391008377, -0.02408417873084545, 0.02947142906486988, 0.04015538841485977, -0.01790468581020832, 0.02329193614423275, -0.004900587256997824, -0.05432521551847458, -0.030761653557419777, -0.010304814204573631, -0.020802030339837074, -0.02528386190533638, -0.06849504262208939, -0.024785879999399185, 0.03909152001142502, 0.0007434349390678108, -0.00845436193048954, -0.052786003798246384, 0.03354582190513611, -0.006015385966747999, -0.04925486445426941, -0.03202924132347107, -0.011210234835743904, 0.018493209034204483, 0.05658876895904541, -0.03273094445466995, 0.013943471945822239, -0.02716260775923729, -0.015120518393814564, 0.0146564906463027, 0.005375932902097702, 0.035356663167476654, 0.01405664999037981, 0.008709011599421501, -0.03354582190513611, -0.012189220637083054, -0.02501223422586918, 0.02182062901556492, 0.012879603542387486, 0.04140034317970276, 0.05427994579076767, 0.07315795868635178, -0.04076654836535454, 0.00893536675721407, -0.010802796110510826, -0.002535176696255803, 0.0036895875819027424, -0.026777803897857666, -0.03689587488770485, 0.028973449021577835, -0.004770433064550161, -0.018323441967368126, 0.029584607109427452, -0.015188424848020077, 0.0009683753014542162, -0.03999694064259529, -0.008907072246074677, -0.010338767431676388, 0.035356663167476654, 0.02070017158985138, -0.0023852165322750807, -0.032323502004146576, 0.002430487656965852, -0.028747092932462692, -0.019364675506949425, 0.04024593159556389, -0.030173130333423615, 0.025827113538980484, 0.012868286110460758, 0.007101890165358782, -0.010208613239228725, 0.011396978050470352, -0.015980668365955353, 0.02736632712185383, -0.014045331627130508, -0.0355830155313015, -0.05772054195404053, -0.012664565816521645, 0.02895081415772438, -0.0058965496718883514, -0.0032680013682693243, 0.011470543220639229, 0.025781841948628426, 0.011996818706393242, 0.005271243862807751, 0.03585464134812355, -0.0018292318563908339, -0.020994432270526886, 0.046448059380054474, 0.013966107740998268, 0.04848525673151016, -0.03823137283325195, 0.013083322905004025, -0.025532850995659828, 0.015290284529328346, -0.008233665488660336, -0.02584974840283394, -0.0549590103328228, -0.0018235730240121484, -0.0036414870992302895, 0.03560565412044525, 0.0017896197969093919, 0.027524776756763458, 0.03051266260445118, -0.006066315807402134, 0.019681572914123535, -0.024695338681340218, 0.06324360519647598, -0.00728863338008523, -0.012370304204523563, 0.04916432127356529, -0.010316132567822933, -0.024152085185050964, -0.006717086769640446, 0.02193380706012249, 0.009206992574036121, 0.0017811314901337028, 0.003771641291677952, -0.007181114517152309, 0.00443655950948596, 0.06722745299339294, -0.02408417873084545, 0.0164786484092474, -0.015426098369061947, -0.007514988072216511, -0.013547350652515888, 0.044727761298418045, 0.019036460667848587, -0.0055937995202839375, 0.013886883854866028, 0.019613666459918022, 0.04649333283305168, 0.0022706242743879557, -0.017655694857239723, -0.013388901948928833, 0.0035198212135583162, -0.01366052869707346, -0.07039642333984375, 0.01847057417035103, 0.004985470324754715, -0.05265018716454506, -0.024740608409047127, -0.0072942920960485935, -0.006456778384745121, -0.03386271744966507, 0.037665482610464096, 0.017135078087449074, -0.00993132870644331, -0.010966903530061245, -0.04513520002365112, -0.016659732908010483, -0.01619570516049862, -0.029245074838399887, 0.0018829911714419723, 0.01839134842157364, 0.0036980758886784315, -0.08836901932954788, -0.015765629708766937, -0.0022423299960792065, -0.006456778384745121, 0.045723725110292435, -0.027456870302557945, 0.002526688389480114, 0.050748806446790695, 0.06849504262208939, 0.020032424479722977, 0.005975774023681879, 0.06478282064199448, 0.0032934662885963917, 0.0001426213711965829, 0.032527223229408264, 0.020915208384394646, -0.035311389714479446, -0.033161018043756485, 0.04545209929347038, 0.038548268377780914, 0.012132631614804268, -0.007582894992083311, 0.01162333320826292, 0.06899302452802658, 0.015505322255194187, -0.011770463548600674, -0.049028508365154266, 0.0028308529872447252, -0.03592254966497421, 0.013264407403767109, -0.021831946447491646, 0.01509788352996111, -0.006219105329364538, 0.01224580965936184, -0.019715527072548866, 0.015188424848020077, -0.005930502898991108, 0.027343692258000374, -0.05283127352595329, 0.03019576705992222, 0.001751422300003469, 0.01366052869707346, 0.035718828439712524, -0.046040620654821396, 0.01945521868765354, 0.019432581961154938, 0.004589349031448364, 0.0293129812926054, -0.01854979805648327, -0.044569313526153564, 0.012528752908110619, 0.02101706899702549, 0.015324237756431103, -0.00881087128072977, 0.03162180259823799, -6.684548134217039e-05, -0.013966107740998268, -0.024853786453604698, 0.0032368774991482496, 0.0293129812926054, 0.004838339518755674, -0.026234552264213562, -0.019964516162872314, 0.02600819803774357, -0.04753456264734268, 0.04255475476384163, -0.01682949997484684, -0.022907132282853127, -0.005794689990580082, 0.033115748316049576, -0.0015816560480743647, 0.04092499613761902, 0.010972562246024609, -0.025985561311244965, -0.005449498072266579, 0.031644437462091446, -0.05120151489973068, -0.018515843898057938, 0.03250458836555481, -0.07718707621097565, 0.012336350977420807, -0.030286308377981186, -0.022069619968533516, -0.01878747157752514, -0.0706680491566658, 0.03309310972690582, -0.05930502712726593, 0.04282638058066368, 0.0586259625852108, 0.030920103192329407, 0.03067111223936081, 0.011119692586362362, 0.01766701228916645, 0.00426679290831089, -0.0319160632789135, -0.02077939547598362, -0.04239630326628685, 0.009637067094445229, 0.032640401273965836, 0.05735837295651436, -0.0029595925007015467, 0.030806925147771835, -0.011097056791186333, -0.016818182542920113, -0.08864064514636993, 0.002294674515724182, -0.033364735543727875, 0.023269301280379295, -0.00620212871581316, -0.017180349677801132, -0.04495411738753319, 0.01274379063397646, 0.047036584466695786, 0.05156368389725685, 0.01091031450778246, -0.006377554032951593, -0.008527927100658417, -0.047081854194402695, -0.01415850967168808, 0.06532607227563858, -0.00841474998742342, -0.02090389095246792, -0.005721124354749918, 0.006156858056783676, -0.02261287160217762, 0.014701761305332184, -0.021266058087348938, 0.06537134200334549, -0.013502079993486404, 0.057494185864925385, -0.03728067874908447, 0.024582160636782646, -0.00997094064950943, 0.020586993545293808, -0.04246421158313751, -0.011295118369162083, 0.005590970162302256, -0.005970114842057228, 0.03685060515999794, 0.026619356125593185, 0.006807628553360701, 0.018878012895584106, -0.01240425743162632, 0.013615257106721401, 0.003052963875234127, -0.020077694207429886, -0.0021192494314163923, 0.0037348587065935135, 0.015482686460018158, 0.0065586380660533905, -0.03257249295711517, -0.025351768359541893, 0.02285054512321949, -0.0014953581849113107, -0.06695582717657089, 0.005630582571029663, -0.008924048393964767, -0.02105102129280567, -0.051065701991319656, -0.055773887783288956, -0.00027799230883829296, 0.01994188129901886, 0.006377554032951593, 0.017055854201316833, 0.00023272130056284368, 0.036986418068408966, -0.01080845482647419, 0.00547496322542429, -0.048394713550806046, 0.0114479074254632, -0.012890920974314213, 0.013151229359209538, 0.021198151633143425, 0.003599045565351844, 0.013490762561559677, 0.03291202709078789, -0.011770463548600674, -0.013988743536174297, 0.0004587227012962103, 0.04194359481334686, -0.03752966970205307, 0.012777743861079216, 0.03359109163284302, 0.02811329998075962, 0.024785879999399185, -0.010774501599371433, -0.016840817406773567, -0.004314893390983343, 0.008194053545594215, 0.029131896793842316, 0.0003724248381331563, -0.003358543384820223, 0.019206227734684944, -0.025464944541454315, -0.026347730308771133, 0.0282717477530241, -0.03207451477646828, -0.02659672126173973, 0.033636365085840225, 0.017531199380755424, 0.00014881078095640987, 0.0018164993962273002, 0.001170680159702897, 0.01798390969634056, -0.044161874800920486, 0.0173953864723444, 0.016399424523115158, -0.00040637809433974326, 0.035832006484270096, 0.01610516384243965, -0.05799216777086258, -0.031644437462091446, 0.0013135668123140931, 0.008641105145215988, -0.020790712907910347, -0.007339563220739365, 0.04130979999899864, -0.009812491945922375, -0.016489965841174126, 0.0006985176005400717, 0.010599075816571712, -0.01750856451690197, 0.05115624517202377, -0.018051816150546074, 0.012879603542387486, -0.043007463216781616, 0.03497185930609703, 0.03234614059329033, -0.03098800964653492, -0.010740548372268677, 0.02182062901556492, -0.02831701934337616, -0.023903096094727516, 0.0022069618571549654, -0.03356845676898956, 0.006298329681158066, 0.03780129551887512, 0.007809249684214592, -0.005217484198510647, 0.008358160965144634, -0.022952403873205185, -0.01057078130543232, -0.004139468539506197, -0.013105958700180054, -0.04246421158313751, -0.017961274832487106, -0.01986265741288662, -0.01515447162091732, -0.008941025473177433, 0.018085770308971405, 0.004860975313931704, 0.0172708909958601, 0.023382479324936867, -0.024785879999399185, -0.07492353022098541, 0.049752842634916306, -0.006428483873605728, 0.0020315367728471756, 0.020722806453704834, 0.04097026586532593, -0.032323502004146576, -0.027072066441178322, 0.008329866454005241, -0.0012576853623613715, -0.010304814204573631, 0.0037433470133692026, 0.020847301930189133, 0.015856172889471054, 0.02345038577914238, 0.0285207387059927, -0.033523187041282654, 0.00449597742408514, 0.027388963848352432, -0.0005591677618212998, -0.014226416125893593, -0.024152085185050964, -0.001286687096580863, 0.04124189540743828, -0.015267649665474892, -0.021277377381920815, -0.0032000946812331676, 0.016218340024352074, 0.01517710741609335, -0.00926924031227827, 0.043007463216781616, -0.007962039671838284, 0.01730484515428543, -0.0301052238792181, 0.011436589993536472, -0.00899195484817028, -0.036556344479322433, 0.04067600518465042, -0.01583353616297245, 0.024989599362015724, -0.008250642567873001, 0.024106815457344055, -0.011940229684114456, 0.015199743211269379, 0.019998470321297646, 0.02863391675055027, -0.009388076141476631, 0.014067967422306538, -0.03103327937424183, -0.007141502574086189, 0.02879236452281475, -0.022884497418999672, 0.03784656897187233, -0.04126453027129173, -0.0016212682239711285, -0.024785879999399185, 0.02376728132367134, 0.008335525169968605, -0.011430931277573109, 0.00031848865910433233, -0.02648354321718216, 0.010610394179821014, 0.035673558712005615, 0.0137397525832057, -0.00045766166294924915, -0.008505291305482388, -0.008188394829630852, 0.023699374869465828, 0.030399486422538757, 0.028203841298818588, 0.0023102364502847195, -0.029448794201016426, 0.010067141614854336, 0.0014048161683604121, 0.02659672126173973, -0.05328398197889328, -0.0549590103328228, -0.0218545813113451, -0.019036460667848587, -0.03497185930609703, 0.004085708875209093, 0.003644316690042615, -0.01823290064930916, -0.01274379063397646, 5.658876762026921e-05, -0.010095436125993729, -0.008929707109928131, 0.01603725738823414, -0.024989599362015724, 0.004793068394064903, -0.013943471945822239, 0.052469104528427124, 0.009201333858072758, -0.05631713941693306, -0.018753517419099808, -0.019930563867092133, -0.00937109999358654, 0.002791241044178605, 0.01001055259257555, -0.011549767106771469, -0.02508014254271984, 0.007124525960534811, 0.004490318708121777, 0.051382601261138916, 0.011736510321497917, 0.009580478072166443, 0.05532117933034897, -0.01413587387651205, 0.0009825224988162518, -0.01646733097732067, 0.015980668365955353, -0.023020310327410698, 0.03275357931852341, 0.03470023348927498, -0.02292976900935173, 0.027977487072348595, -0.03956686705350876, -0.0012343424605205655, -0.010814113542437553, -0.014690443873405457, -0.022363880649209023, -0.004479000810533762, 0.008924048393964767, 0.018447937443852425, 0.006717086769640446, -0.025102777406573296, -0.032481953501701355, 0.03589991480112076, -0.021945124492049217, -0.010780160315334797, 0.015822218731045723, 0.0031435061246156693, 0.014928116463124752, -0.0018136700382456183, 0.013004099018871784, 0.001175631652586162, 0.011249846778810024, 0.00039152352837845683, -0.030580569058656693, -0.0486663393676281, -0.025940291583538055, -0.048439983278512955, -0.012370304204523563, -0.013807659037411213, 0.002294674515724182, -0.007628165651112795, -0.018017863854765892, 0.020790712907910347, -0.03239141032099724, -0.02858864516019821, -0.02695888839662075, -0.017078489065170288, 0.008278937079012394, 0.01619570516049862, -0.005489110480993986, 0.02300899289548397, 0.0314180850982666, -0.0014281590702012181, 0.015641136094927788, 0.01946653611958027, 0.011713874526321888, 0.006258717738091946, -0.009042885154485703, -0.030014682561159134, 0.009801174513995647, 0.0011480445973575115, -0.037461765110492706, -0.05663403868675232, 0.0075036706402897835, -0.019568394869565964, -0.04490884393453598, -0.016682367771863937, 0.04214731231331825, 0.005695659201592207, -0.03135017678141594, -0.018255535513162613, 0.025691300630569458, 0.05799216777086258, 0.021503731608390808, -0.02926770970225334, -0.009240945801138878, -0.0003664122777990997, -0.024514254182577133, 0.0005895842332392931, 0.04146824777126312, 0.01475835032761097, 0.021277377381920815, 0.001721713226288557, -0.0044648535549640656, -0.021639544516801834, 0.03832191228866577, -0.02209225483238697, -0.04662914574146271, 0.06605041027069092, 0.02280527353286743, 0.03275357931852341, -0.013864248059689999, 0.028022756800055504, 0.04549736902117729, -0.019726844504475594, -0.006898170802742243, 0.025578122586011887, 0.03632998839020729, 0.023903096094727516, 0.017916003242135048, 0.04361862316727638, -0.016456013545393944, 0.019670255482196808, 0.00457803113386035, -0.015403462573885918, -0.0024757585488259792, 0.022035665810108185, 0.007220726925879717, 0.02732105739414692, -0.03329683095216751, -0.01583353616297245, 0.023631468415260315, -0.019511807709932327, 0.014622537419199944, 0.027864309027791023, -0.004181909840553999, -0.0066265445202589035, 0.03139544650912285, -0.021447142586112022, 0.04246421158313751, -0.03497185930609703, 0.01170255709439516, -0.033477913588285446, 0.011176281608641148, 0.03329683095216751, 0.00042512311483733356, -0.041015539318323135, -0.01120457611978054, -0.003808424109593034, -0.026709897443652153, -0.03288939222693443, 2.1894989913562313e-05, 0.014316958375275135, 0.018153676763176918, 0.012234491296112537, 0.013932154513895512, 0.0008368063718080521, -0.004181909840553999, 0.03700905293226242, 0.00313501781783998, -0.02237519808113575, -0.006303988862782717, -0.018085770308971405, -0.020089011639356613, 0.018991190940141678, 0.020009787753224373, 0.011940229684114456, -0.014418818056583405, 0.005460815969854593, 0.00999357644468546, 0.06242872774600983, 0.03852563351392746, -0.003185947658494115, -0.055728618055582047, -0.008590174838900566, 0.02070017158985138, 0.046040620654821396, -0.01003318838775158, 0.02157163806259632, -0.02512541227042675, 0.03594518452882767, 0.02947142906486988, -0.0033472254872322083, -0.033885352313518524, -0.006151198875159025, -0.022126207128167152, -0.011300777085125446, -0.0017019071383401752, -0.04099290445446968, -0.016931358724832535, -0.04214731231331825, 0.02784167416393757, -0.027547411620616913, 0.02843019738793373, -0.023156123235821724, -0.010582099668681622, -0.027524776756763458, 0.014531995169818401, 0.02261287160217762, -0.0033047839533537626, -0.004303575959056616, -0.005902208387851715, 0.04511256515979767, 0.008420408703386784, -0.02727578580379486, -0.007752661127597094, -0.0011169208446517587, 0.011481860652565956, 0.03302520513534546, -0.023518292233347893, 0.03762021288275719, -0.006988712586462498, -0.0068359230645000935, -0.02213752642273903, -0.008963660337030888, 0.020168237388134003, 0.005092989187687635, 0.0067001101560890675, 0.008154441602528095, 0.038661446422338486, -0.0020301220938563347, 0.033885352313518524, -0.0036499754060059786, 0.007860179990530014, -0.037507034838199615, 0.0013326654443517327, 0.006711427588015795, 0.02376728132367134, 0.002106516854837537, 0.05151841416954994, 0.007684754673391581, -0.010717912577092648, -0.032051876187324524, 0.01028783805668354, 0.028452832251787186, 0.005211825482547283, -0.04481830447912216, -0.017734918743371964, 0.0060323625802993774, -0.004054585006088018, 0.03078429028391838, 0.0008771258872002363, 0.027072066441178322, 0.010797136463224888, 0.019251499325037003, 0.027185244485735893, 0.01045194547623396, 0.007741343230009079, 0.019534442573785782, -0.014599901624023914, 0.02313348837196827, -0.049752842634916306, 0.06274562329053879, 0.03175761550664902, 0.0155732287093997, 0.0058286432176828384, -0.02680044062435627, 0.0031718004029244184, -0.009144744835793972, -0.00290583330206573, 0.04103817418217659, 0.0026738191954791546, -0.0164786484092474, 0.027456870302557945, -0.03139544650912285, 0.0025592269375920296, -0.006179493386298418, 0.011951548047363758, 0.008143123239278793, 0.025397038087248802, 0.028452832251787186, 0.02022482454776764, -0.03026367351412773, 0.007237703539431095, 0.04463721811771393, -0.020236143842339516, 0.04463721811771393, 0.014984705485403538, -0.015822218731045723, 0.035039763897657394, -0.014181145466864109, 0.00015933274698909372, 0.005678682588040829, 0.0465838722884655, 0.01651260256767273, 0.030852196738123894, -0.010519851930439472, -0.013524715788662434, 0.04717239737510681, -0.04366389289498329, 0.01579958386719227, -0.0036810992751270533, 0.010123730637133121, -0.004413923714309931, 0.021831946447491646, 0.01280037872493267, 0.01473571453243494, -0.007843202911317348, -0.0014055235078558326, -0.010638688690960407, 0.015312920324504375, 0.043482810258865356, -0.0455426387488842, 0.02607610449194908, 0.00895234290510416, 0.009953964501619339, -0.01671632193028927, 0.004877951927483082, 0.005101477261632681, 0.04748929291963577, 0.030082589015364647, 0.07533096522092819, 0.041536156088113785, 0.004487489350140095, 0.023699374869465828, 0.01274379063397646, 0.02010033093392849, -0.0036018749233335257, -0.011917594820261002, -0.01957971416413784, 0.01830080710351467, 0.029924139380455017, 0.015143154188990593, 0.03549247607588768, -0.031236998736858368, -0.02245442196726799, -0.018040498718619347, 0.001114091370254755, -0.023156123235821724, -0.006258717738091946, 0.005599458701908588, 0.012381622567772865, -0.014882845804095268, -0.03956686705350876, 0.016738956794142723, 0.02863391675055027, 0.004824192263185978, -0.00020053643675055355, -0.004003655165433884, 0.04094763100147247, -0.021039703860878944, -0.028203841298818588, -0.011481860652565956, 0.006473754998296499, 0.018934601917862892, -0.008205370977520943, -0.008941025473177433, -0.03162180259823799, 0.0010829675011336803, -0.015641136094927788, 0.008148782886564732, 0.016738956794142723, 0.0015816560480743647, 0.004331870004534721, 0.00789413321763277, -0.02240915223956108, -0.011894959025084972, -0.0034971858840435743, 0.008725987747311592, 0.006892511621117592, 0.0293129812926054, 0.0332515612244606, 0.03354582190513611, -0.00989171676337719, -0.03481340780854225, -0.051065701991319656, -0.005257096607238054, 0.036827970296144485, -0.0014981876593083143, 0.011793099343776703, 0.026777803897857666, -0.00537310354411602, -0.005936161614954472, 0.028701823204755783, -0.014147192239761353, -0.016580509021878242, -0.024197356775403023, 0.008233665488660336, -0.008827847428619862, 0.05133732780814171, -0.01651260256767273, 0.022103572264313698, -0.00284217088483274, -0.01200813613831997, 0.041649334132671356, 0.004603496287018061, 0.00466574402526021, -0.002470099600031972, -0.017440658062696457, 0.017259573563933372, 0.015663770958781242, -0.046244341880083084, 0.032006606459617615, -0.05160895735025406, 0.04597271606326103, 0.013354948721826077, -0.007718707900494337, 0.004855316132307053, 0.019296769052743912, 0.02017955482006073, 0.0067001101560890675, -0.04825890064239502, 0.020677534863352776, 0.006847240962088108, 0.00516372499987483, 0.03694114834070206, 0.002267794916406274, -0.005262755323201418, -0.03537929803133011, 0.007843202911317348, -0.007509329356253147, 0.021707450971007347, 0.01342285517603159, -0.005271243862807751, 0.0104066738858819, 0.0565434955060482, 0.0026144010480493307, -0.03207451477646828, 0.00424698693677783, -0.06433010846376419, -0.024536889046430588, -0.00267664878629148, -0.003703734837472439, 0.030580569058656693, -0.010604734532535076, -0.01858375035226345, 0.01675027422606945, 0.005670194514095783, 0.007022665813565254, 0.007254680152982473, -0.003270830726251006, 0.0017825461691245437, -0.016772910952568054, -0.01413587387651205, -0.017599105834960938, 0.04142297804355621, 0.024468982592225075, -0.01028783805668354, 0.017768872901797295, 0.014022696763277054, -0.006615227088332176, -0.001402694033458829, 0.003839547745883465, -0.009325828403234482, 0.0335005484521389, 0.015403462573885918, 0.055502261966466904, -0.012868286110460758, 0.031531259417533875, 0.01162333320826292, 0.011578061617910862, 0.008448703214526176, 0.015527958050370216, 0.004781750962138176, 0.007520647253841162, 0.009597455151379108, -0.02831701934337616, 0.003367031691595912, -0.028181206434965134, -0.009348464198410511, -0.04730821028351784, -0.0074357641860842705, 0.031802888959646225, -0.012030771933495998, 0.015165789984166622, -0.00805824063718319, 0.014034014195203781, -0.015346873551607132, 0.006683133542537689, 0.021843263879418373, -0.016659732908010483, -0.004331870004534721, 0.012109995819628239, 0.04051755741238594, 0.01787073351442814, -0.022952403873205185, -0.01547136902809143, 0.009823810309171677, 0.06356050074100494, -0.002455952577292919, 0.040585462003946304, -0.013524715788662434, -0.041581425815820694, 0.045361556112766266, -0.034202251583337784, 0.013569986447691917, 0.008646763861179352, -0.0007540453225374222, -0.016456013545393944, 0.014283005148172379, -0.01240425743162632, 0.007022665813565254, -0.006264376454055309, -0.011549767106771469, -0.004269622266292572, 0.0014423062093555927, 0.006852899678051472, -0.03139544650912285, 0.011561085470020771, 0.003548115724697709, -0.02085861936211586, 0.005200507584959269, -0.013434173539280891, -0.0020442691165953875, -0.020326685160398483, -0.003282148391008377, -0.031101185828447342, 0.0007041764911264181, 0.0028916860464960337, 0.032051876187324524, -0.008160100318491459, -0.01475835032761097, 0.012607977725565434, -0.05002446845173836, -0.003494356293231249, -0.017044536769390106, 0.0001238763506989926, 0.012155267409980297, 0.03119172900915146, -0.03413434326648712, -0.013105958700180054, 0.01978343352675438, 0.012211855500936508, -0.01384161226451397, 0.014690443873405457, 0.012177902273833752, -0.0008014384075067937, 0.007967698387801647, 0.016025938093662262, -0.00035686290357261896, 0.0026441102381795645, 0.0014854550827294588, -0.028384925797581673, 0.03071638196706772, -0.015063929371535778, -0.011295118369162083, -0.02249969355762005, -0.03669215738773346, 0.01212131418287754, -0.0030190106481313705, 0.012177902273833752, 0.031078550964593887, -0.01140829548239708, 0.024468982592225075, -0.012313716113567352, -0.036827970296144485, -0.011600697413086891, 0.017418023198843002, 0.004504465963691473, 0.013762388378381729, 0.003375519998371601, 0.02376728132367134, -0.0384577251970768, 0.0027388962917029858, -0.0030190106481313705, 0.00767909549176693, -0.010157683864235878, 0.006547320168465376, 0.014984705485403538, -0.01763305999338627, 0.03510767221450806, -0.0016057062894105911, 0.0027884114533662796, 0.012076042592525482, 0.02101706899702549, 0.0016806863714009523, 0.0028435855638235807, 0.01363789290189743, 0.03585464134812355, 0.015312920324504375, -0.0041253212839365005, -0.02935825288295746, -0.0282717477530241, 0.01615043357014656, 0.01982870325446129, 0.010678300634026527, 0.028090663254261017, 0.0006656253826804459, -0.06088951230049133, -0.03411170840263367, 0.007028324995189905, -0.017768872901797295, -0.005947479512542486, 0.008624128066003323, 0.00986908096820116, -0.01878747157752514, 0.015007341280579567, 0.02316744066774845, 0.025102777406573296, -0.0434601716697216, 0.010021870955824852, -0.0036329987924546003, -0.0009931328240782022, 0.015641136094927788, 0.004224351607263088, -2.1729201762354933e-05, 0.008397772908210754, -0.0031604827381670475, -0.022046983242034912, 0.0028251942712813616, 0.03377217799425125, 0.018855378031730652, -0.002757287584245205, -0.02910926192998886, -0.026030832901597023, -0.017259573563933372, -0.043256454169750214, 0.004555395804345608, 0.015527958050370216, -0.027072066441178322, -0.0007929501007311046, 0.009620090015232563, 0.024106815457344055, 0.0060323625802993774, 0.008544904179871082, -0.019353358075022697, -0.0018957237480208278, -0.04506729543209076, 0.005958797410130501, -0.036194175481796265, -0.03417961671948433, 0.022839225828647614, 6.724337436025962e-05, 0.0007073595770634711, 0.015527958050370216, -0.0035169918555766344, -0.0038876482285559177, -0.01366052869707346, -0.03386271744966507, -0.011187599040567875, -0.03872935101389885, 0.004719503223896027, 0.03408907353878021, 0.01222317386418581, -0.026574084535241127, 0.03356845676898956, 0.010191637091338634, -0.00957481935620308, -0.048756882548332214, 0.0018575262511149049, -0.02847546711564064, 0.01473571453243494, 0.011023491621017456, 0.034632325172424316, -0.00616251677274704, 0.010797136463224888, 0.01070659514516592, -0.01814235933125019, 0.01610516384243965, 0.008658081293106079, -0.03956686705350876, 0.007950722239911556, -0.014565948396921158, -0.020926525816321373, -0.02073412388563156, -0.00817707646638155, -0.014305640012025833, 0.028022756800055504, -0.0350850373506546, 0.00397819047793746, 0.011210234835743904, -0.013004099018871784, 0.017576470971107483, 0.02248837612569332, -0.02077939547598362, -0.01839134842157364, -0.021198151633143425, -0.007758319843560457, -0.014294322580099106, -0.022397834807634354, 0.0032962956465780735, -0.021232105791568756, 0.041173987090587616, -0.009818150661885738, 0.011436589993536472, 0.004886440001428127, -0.0019240181427448988, -0.021232105791568756, -0.019172273576259613, 0.009365441277623177, 0.005146748386323452, -0.006852899678051472, -0.040857091546058655, 0.008471338078379631, -0.06401321291923523, 0.008658081293106079, -0.005158066283911467, -0.006886852905154228, -0.024627432227134705, 0.0021008579060435295, -0.002274868544191122, -0.003983849193900824, 0.004863804671913385, 0.019840022549033165, 0.003604704514145851, -0.039702679961919785, -0.010904655791819096, 0.0293129812926054, -0.033477913588285446, 0.01670500449836254, 0.02695888839662075, -0.031169092282652855, -0.016501285135746002, -0.015844855457544327, 0.025397038087248802, -0.02560075744986534, 0.012709837406873703, -0.03015049546957016, -0.026868347078561783, -0.043256454169750214, 0.016614461317658424, 0.006886852905154228, -0.01130643580108881, 9.469776705373079e-05, 0.03214241936802864, 0.014350911602377892, 0.002304577501490712, -0.0017584959277883172, -0.03266303613781929, -0.004719503223896027, 0.0324593186378479, 0.009190015494823456, 0.04124189540743828, 0.006507708225399256, -0.014599901624023914, 0.01730484515428543, 0.006479413714259863, 0.016931358724832535, -0.0166257806122303, 0.020473815500736237, 0.00568434176966548, -0.0070849135518074036, -0.0016750275390222669, -0.011861005797982216, 0.01853848062455654, 0.024423711001873016, -0.003720711451023817, -0.03202924132347107, -0.029245074838399887, 0.010961243882775307, -0.003599045565351844, 0.027728496119379997, 0.015109200961887836, 0.005987091455608606, -0.012777743861079216, -0.022748684510588646, 0.013004099018871784, -0.043890248984098434, 0.007033983711153269, -0.049481216818094254, 0.004920393228530884, -0.049073778092861176, 0.002068319357931614, 0.033726904541254044, 0.051065701991319656, -0.0096144312992692, 0.015403462573885918, -0.0038197417743504047, -0.010078459046781063, 0.049435947090387344, -0.013287042267620564, -0.013502079993486404, -0.021956441923975945, 0.004626131616532803, 0.01779150776565075, 0.04130979999899864, -0.01766701228916645, 0.012076042592525482, -0.085833840072155, 0.011063103564083576, 0.006671815644949675, -0.018413985148072243, -0.0017160543939098716, 0.001741519314236939, -0.017123760655522346, -0.005873913876712322, -0.005109965801239014, -0.008878777734935284, -0.0021475437097251415, 0.04103817418217659, 0.06618621945381165, -0.0063549187034368515, 0.010270860977470875, -0.013920837081968784, 0.020507769659161568, 0.021549003198742867, 0.010021870955824852, -0.013128593564033508, -0.006388871930539608, 0.047715649008750916, 0.031169092282652855, 0.024740608409047127, 0.007458399515599012, 0.004928881768137217, -0.04952649027109146, 0.008273277431726456, 0.031214363873004913, -0.013185182586312294, 0.009710632264614105, 0.05486846715211868, -0.030693747103214264, 0.012076042592525482, 0.021390553563833237, 0.0031208705622702837, 0.05332925543189049, -0.011498837731778622, 0.021107610315084457, -0.01938731223344803, -0.02684571035206318, 0.046764958649873734, -0.011759146116673946, -0.0010829675011336803, -0.015505322255194187, -0.007945062592625618, 0.012211855500936508, 0.007701731286942959, -0.001037696492858231, 0.010067141614854336, 0.013569986447691917, 0.03712223097681999, -0.021152881905436516, 0.014724397100508213, 0.009337146766483784, 0.00877125933766365]], "input": ["FLIGHT SEGMENT:A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.", "$5:An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.", "50% DISCOUNT:Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.", "TICKET TYPE:The ticket type determines the baggage allowance and rules applicable to each passenger's reservation.", "CHECKED BAGGAGE RULES:Checked baggage rules may vary when several airlines are involved in a flight route.", "FREE BAGGAGE ALLOWANCE:The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.", "ADDITIONAL PIECES OF CHECKED BAGGAGE:There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.", "INFANT'S CHECKED BAGGAGE:Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.", "LITE TICKETS:Lite tickets are a type of ticket that does not include any baggage allowance.", "MAXIMUM SIZE:The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.", "EXCESS BAGGAGE RATES:Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.", "GOVERNMENT SERVICE TAX:A government service tax will be collected for air travel for flights originating in India.", "CODESHARE FLIGHTS:Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.", "LINEAR DIMENSION:Linear dimension refers to the measurement of length, which is one of the components used to calculate the size of baggage.", "MEASUREMENT UNIT:Measurement units such as kilograms and pounds are used to quantify the weight of baggage.", "SIZE CATEGORY:Size category refers to the classification of baggage based on its dimensions, which affects the allowance and fees."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-9738d6d3be2fee12daea8e476acf0742 b/cache/text_embedding/embedding-9738d6d3be2fee12daea8e476acf0742 deleted file mode 100644 index 3533f67bf66d3176b622370e63050a5577c4f977..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-9738d6d3be2fee12daea8e476acf0742 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.03514596074819565, -0.005625739227980375, 0.01968582719564438, -0.009081834927201271, -0.02269606664776802, 0.01327912975102663, -0.04234781488776207, -0.010473360307514668, 0.008019731380045414, 0.016459759324789047, -0.002913684118539095, 0.0026737169828265905, -0.005316196009516716, 0.028216730803251266, -0.039939623326063156, 0.005103207193315029, -0.003200508886948228, 0.022048581391572952, -0.02229848876595497, 0.005816008895635605, 0.03566849231719971, 0.014801288954913616, 0.03414633497595787, -0.028216730803251266, -0.021469252184033394, -0.04879995062947273, -6.584898073924705e-05, -0.02639922872185707, 0.032919518649578094, -0.0018132430268451571, 0.05634258687496185, -0.007582394871860743, -0.03414633497595787, -0.016698306426405907, -0.0057052550837397575, -0.0007916076574474573, 0.009984905831515789, -0.018322700634598732, 0.03094298578798771, 0.0038167559541761875, -0.024967946112155914, 0.006043197121471167, -0.025240570306777954, -0.04573291540145874, -0.043438319116830826, 0.0615224726498127, 0.004898738116025925, -0.005404231138527393, -0.03078395500779152, 0.02689904160797596, 0.04107556492090225, 0.03067035973072052, 0.004319408908486366, 0.024718038737773895, 0.010354086756706238, 0.021242063492536545, -0.00967820268124342, 0.0195949524641037, 0.013835740275681019, -0.01159226056188345, -0.018368138000369072, -0.012109112925827503, 0.010831180959939957, 0.035509463399648666, -0.012256784364581108, -0.004288170952349901, -0.01568732224404812, 0.04643719643354416, 0.008542262949049473, -0.03101114183664322, 0.01967446878552437, 0.025558633729815483, 0.005940962582826614, -0.017073167487978935, -0.0001736744598019868, 0.0009442495065741241, 0.055024899542331696, -0.04666438698768616, 0.032510582357645035, 0.05357089638710022, -0.028080418705940247, 0.02365025505423546, -0.024513568729162216, 0.029216358438134193, -0.055433835834264755, 0.05820553004741669, -0.014914882369339466, -0.029102765023708344, -0.032169800251722336, -0.04952695220708847, -0.0622040331363678, -0.03021598421037197, 0.010427922941744328, 0.024877069517970085, 0.025649508461356163, 0.04287034645676613, 0.024967946112155914, -0.0027731116861104965, -0.03441895917057991, 0.05752396583557129, 0.004444362595677376, -0.0040496233850717545, -0.036463651806116104, 0.006003438960760832, 0.028739264234900475, -0.05302564427256584, -0.006963307969272137, 0.06134071946144104, -0.011961440555751324, 0.02229848876595497, 0.05016307905316353, -0.009195428341627121, -0.01898154616355896, 0.06284016370773315, -0.036713555455207825, -0.0034163373056799173, -0.01904970221221447, 0.002592781325802207, -0.016732385382056236, -0.022162174805998802, -0.005906884092837572, -0.0003029762883670628, 0.03421448916196823, -0.06079547107219696, 0.027944106608629227, 0.006304462905973196, 0.0015207387041300535, -0.025331445038318634, 0.016107618808746338, 0.001726627699099481, 0.024422693997621536, -0.06315822154283524, 0.05865990370512009, -0.04884538799524307, -0.005980720277875662, 0.009144310839474201, 0.021923627704381943, -0.017118604853749275, -0.011478666216135025, -0.028012262657284737, 0.048118386417627335, -0.01895882561802864, 0.05797833949327469, 0.009445334784686565, -0.027875950559973717, 0.03001151606440544, 0.04966326430439949, 0.02739885449409485, -0.02653554081916809, 0.005364473443478346, 0.013767584227025509, -0.0010280250571668148, 0.0009719380177557468, 0.03698618337512016, 0.026035727933049202, -0.00019115727627649903, 0.021264784038066864, 0.07688037306070328, 0.0019807941280305386, -0.017095886170864105, -0.01881115511059761, 0.005935282912105322, -0.01175697147846222, -0.025808541104197502, -0.01585771143436432, -0.0133018484339118, -0.016675587743520737, -0.011098126880824566, -0.04518766328692436, -0.03882640600204468, -0.03585024178028107, -0.021526049822568893, -0.002183843171223998, -0.047482263296842575, -0.0027390336617827415, -0.03521411865949631, 0.04527853801846504, -0.0263765100389719, -0.009894031099975109, 0.025649508461356163, -0.010320008732378483, -0.01926553063094616, -0.07319992780685425, -0.03344205394387245, -0.0313292033970356, 0.07915224879980087, 0.0190269835293293, 0.02330947294831276, -0.05852359160780907, -0.015085273422300816, 0.03909903019666672, -0.028602950274944305, -0.03460070863366127, 0.028921013697981834, -0.01954951509833336, -0.009859953075647354, -0.009814515709877014, -0.010518797673285007, 0.04893626272678375, -0.043847255408763885, 0.03510052338242531, -0.025354163721203804, 0.007128018885850906, 0.02254839427769184, -0.010621031746268272, -0.010484719648957253, 0.03176086023449898, 0.032306112349033356, 0.02639922872185707, -0.016686948016285896, -0.016641510650515556, -0.01877707615494728, -0.005850087385624647, -0.009059115312993526, 0.0005676146829500794, 0.032919518649578094, 0.05884165316820145, -0.017288995906710625, 0.015210227109491825, -0.008462747558951378, -0.040075939148664474, -0.015380618162453175, -0.021367017179727554, 0.003549810266122222, -0.03928077965974808, -0.03028414025902748, -0.025058820843696594, -0.0036946425680071115, -0.0055206650868058205, -0.009882671758532524, -0.04096196964383125, 0.0014667815994471312, -0.017152683809399605, -0.04214334860444069, 0.03780405968427658, -0.020117484033107758, 0.025513196364045143, -0.04555116593837738, 0.007065542507916689, -0.014187881723046303, 0.00024919668794609606, 0.03800852969288826, -0.01574411801993847, -0.008326434530317783, 0.0037769980262964964, -0.025899415835738182, -0.0015093793626874685, 0.005514984950423241, 0.062385786324739456, -0.0003061711322516203, -0.02696719765663147, -0.07410867512226105, 0.051798831671476364, -0.009252225048840046, 0.0011245799250900745, 0.00748016033321619, 0.0008455648203380406, -0.004237053450196981, 0.04271131753921509, -0.001148008625023067, -0.04314297437667847, 0.023900162428617477, -0.00284410803578794, -0.012427175417542458, -0.05466139689087868, -0.055342961102724075, 0.039939623326063156, 0.010808462277054787, -0.03546402230858803, -0.0009201107895933092, -0.0473913848400116, 0.027921387925744057, -0.0033964584581553936, -0.036554526537656784, -0.03026142157614231, -0.0055320244282484055, 0.009814515709877014, -0.036463651806116104, -0.025149695575237274, 0.03364652022719383, -0.004731187131255865, 0.023854725062847137, 0.021923627704381943, -0.05420702323317528, -0.017584340646862984, 0.010791422799229622, 0.025967571884393692, 0.016505198553204536, 0.010013304650783539, -0.0057279737666249275, 0.0543433353304863, -0.004702788777649403, 0.004890218377113342, -0.010212094523012638, 0.023922881111502647, -0.024604445323348045, -0.0371452160179615, 0.03371467813849449, -0.03853106126189232, -0.00979747623205185, -0.01177969016134739, 0.05002676695585251, 0.03466886654496193, -0.05770571529865265, -0.017300354316830635, 0.0372588075697422, -0.019254170358181, 0.047891199588775635, -0.01903834193944931, 0.018118230625987053, 0.004654511343687773, -0.008564982563257217, 0.014415069483220577, -0.04898170009255409, -0.03723609074950218, 0.00476810522377491, -0.051798831671476364, -0.03082939237356186, 0.02274150401353836, -0.022059939801692963, 0.0707462951540947, -0.0022519996855407953, 0.05838727951049805, -0.05043570324778557, 0.0024507890921086073, -0.005182723049074411, 0.03387371078133583, 0.06011390686035156, -0.020605938509106636, -0.020299235358834267, -0.051662519574165344, 0.0196517501026392, 0.03114745393395424, -0.01323369238525629, -0.00924654584378004, -0.028761982917785645, 0.016834620386362076, 0.016198493540287018, -0.040212251245975494, 0.03348749130964279, 0.032987676560878754, 0.02721710503101349, 0.012120472267270088, 0.01575547829270363, -0.035645775496959686, 0.00011732122948160395, -0.0029562818817794323, 0.04202975332736969, -0.005273598246276379, 0.024627164006233215, 0.0022633590269833803, 0.024081911891698837, -0.025172414258122444, -0.039621561765670776, -0.022218972444534302, -0.03339661285281181, 0.05879621580243111, -0.018390856683254242, -0.0024039314594119787, 0.003686122829094529, 0.03900815546512604, 0.007735746446996927, 0.036577243357896805, 0.05997759476304054, 0.02708079293370247, 0.004538077395409346, 0.007258651778101921, 0.028580231592059135, -0.006383978761732578, -0.009837234392762184, 0.07338167726993561, 0.010280250571668148, 0.05352545902132988, -0.03407817706465721, -0.003598087700083852, 0.007093940861523151, 0.007457441184669733, 0.016561994329094887, 0.012086394242942333, -0.025422321632504463, -0.006327181588858366, -0.02296869270503521, 0.02235528454184532, 0.04684613645076752, 0.008803529664874077, 0.02680816687643528, -0.06138615682721138, -0.020844485610723495, -0.009837234392762184, 0.024218225851655006, -0.02628563530743122, 0.006917870137840509, 0.017209479585289955, 0.008627458475530148, 0.002379792742431164, 0.03032957948744297, 0.04571019485592842, 0.05643346160650253, 0.018334059044718742, -0.08065168559551239, -0.011336673982441425, -0.036827150732278824, 0.01161497924476862, -0.021401096135377884, 0.06329453736543655, -0.015039836056530476, 0.04327928647398949, -0.040007781237363815, -0.0013695168308913708, -0.01182512752711773, 0.010047382675111294, 0.005963681265711784, 0.021003516390919685, 0.007037143688648939, 0.03376011550426483, -0.0012204247759655118, 0.01967446878552437, 0.021934987977147102, 0.015062554739415646, -0.03819027915596962, 0.01573275960981846, -0.052071455866098404, -0.06588447839021683, -0.017334433272480965, -0.01605082117021084, -0.0010521637741476297, -0.010047382675111294, -0.035554900765419006, 0.039916906505823135, -0.07578986883163452, -0.03500964865088463, 0.02261655032634735, 0.020821766927838326, -0.028625668957829475, -0.04852732643485069, -0.017459386959671974, 0.0026353790890425444, -0.0387355275452137, -0.031238330528140068, -0.025308726355433464, 0.020833125337958336, -0.03048861026763916, 0.06206772103905678, 0.040802937000989914, 0.0011075407965108752, -0.017879683524370193, -0.03914446756243706, 0.001835961826145649, 0.036668118089437485, -0.01344952080398798, 0.007213214412331581, 0.0014568420592695475, 0.014687694609165192, -0.03094298578798771, -0.009950827807188034, -0.01943592168390751, 0.032783206552267075, -0.06538466364145279, 0.0004362716863397509, -0.013347286731004715, 0.024468131363391876, 0.05884165316820145, 0.043869975954294205, -0.012824754230678082, 0.015301101841032505, 0.013370005413889885, 0.015516930259764194, -0.004867499694228172, 0.0074517615139484406, -0.06729304045438766, 0.0227869413793087, -0.03510052338242531, -0.0473913848400116, -0.023741131648421288, 0.04087109491229057, -0.024104630574584007, 0.007230253424495459, -0.002557283267378807, -0.01942456141114235, -0.02630835399031639, 0.024240944534540176, 0.01958359219133854, -0.05029939115047455, -0.03069307841360569, 0.054979462176561356, 0.04493775591254234, 0.05070832744240761, -0.01163201779127121, -0.050844643265008926, -0.03010239079594612, -0.07292730361223221, -0.014858085662126541, -0.021367017179727554, -0.00939421821385622, 0.012086394242942333, -0.009593007154762745, -0.04970870167016983, 0.00471698772162199, 0.024218225851655006, -0.005137285217642784, 0.050935517996549606, 0.020060688257217407, -0.005546223372220993, 0.013029223307967186, 0.004640311934053898, -0.04641447961330414, 0.022014502435922623, 0.022230330854654312, -0.027603324502706528, -0.051299016922712326, 0.0005793290329165757, -0.04280219227075577, 0.014642257243394852, 0.02324131689965725, -0.03512324392795563, -0.047982074320316315, 0.024490850046277046, 0.01571004092693329, -0.021287502720952034, 0.014290115796029568, 0.03959884122014046, -0.03394186496734619, 0.013585833832621574, -0.012211346998810768, -0.02230984717607498, 0.007003065664321184, 0.012472612783312798, -0.03035229817032814, -0.017334433272480965, -0.016505198553204536, -0.027898669242858887, 0.0016854498535394669, -0.09078426659107208, -0.03067035973072052, 0.00018654252926353365, -0.0014852406457066536, 0.0013460880145430565, 0.01957223378121853, -0.014733131974935532, 0.002930723363533616, 0.03830387070775032, 0.014596819877624512, -0.010649430565536022, 0.016232572495937347, -0.0055320244282484055, -0.014221959747374058, 0.04689157381653786, -0.025036102160811424, 0.008207160979509354, 0.0004696398973464966, 0.020140202715992928, -0.003970107529312372, 0.008519544266164303, -0.03523683547973633, 0.004538077395409346, 0.04907257482409477, 0.0390763096511364, -0.01970854587852955, 0.010501758195459843, 0.006832674611359835, -0.0005583851598203182, 0.008706974796950817, 0.0036776033230125904, -0.0030556765850633383, -0.015607805922627449, 0.03819027915596962, -0.002727674087509513, 0.0034589350689202547, 0.027626043185591698, 0.0062760645523667336, -0.03928077965974808, -0.020060688257217407, 0.03001151606440544, -0.02626291662454605, 0.047709450125694275, 0.008706974796950817, -0.002815709449350834, -0.04309753701090813, -0.0031238330993801355, 0.017118604853749275, 0.01578955538570881, 0.02275286428630352, 0.020605938509106636, -0.014971680007874966, -0.005906884092837572, -0.021480612456798553, -0.03128376603126526, -0.03373739495873451, -0.004688589368015528, -0.029443545266985893, 0.000428107101470232, -0.013892536982893944, -0.01571004092693329, -0.008525224402546883, -0.0016953893937170506, 0.06865616887807846, 0.013858458958566189, 0.02324131689965725, -0.05802377685904503, 0.04059847071766853, -0.031897176057100296, -0.012279503978788853, -0.005969360936433077, 0.05756940320134163, -0.044074442237615585, -0.007042823359370232, 0.025649508461356163, -0.014517303556203842, -0.028512075543403625, 0.022071300074458122, -0.00759943388402462, -0.016368884593248367, -0.004018384963274002, -0.020344672724604607, -0.03080667369067669, 0.015278383158147335, 0.008786490187048912, -0.011024290695786476, 0.0008285256917588413, 1.838690764088824e-06, -0.011995518580079079, -0.013006504625082016, -0.0038763927295804024, -0.01522158645093441, -0.032192520797252655, -0.006929229479283094, 0.0027972504030913115, -0.05884165316820145, 0.028216730803251266, -0.024263663217425346, -0.008621779270470142, -0.000750429870095104, 0.010138258337974548, -0.025354163721203804, -0.0374859943985939, 0.012029596604406834, 0.0008917123195715249, 0.017141323536634445, 0.0051685236394405365, 0.0189133882522583, 0.043551910668611526, -0.040166813880205154, 0.03475974127650261, -0.036054711788892746, -0.0154374148696661, 0.01522158645093441, -0.03450983390212059, -0.0044216434471309185, 0.047664012759923935, -0.0013787462376058102, 0.004319408908486366, 0.03903087228536606, 0.007076901849359274, 0.011995518580079079, 0.00040325845475308597, 0.019254170358181, 0.013756224885582924, -0.024536287412047386, -0.009621405974030495, 0.020299235358834267, 0.006900831125676632, -0.03814484179019928, -0.008695615455508232, -0.016130337491631508, -0.0029477623756974936, -0.006429416127502918, 0.04584651067852974, -0.027603324502706528, 0.00027085051988251507, 0.003288544248789549, -0.02730797976255417, 0.0014135343953967094, -0.0062760645523667336, -0.028989169746637344, -0.033214863389730453, -0.012472612783312798, -0.024059193208813667, 0.04639175906777382, -0.01874299719929695, 0.025422321632504463, 0.004262612201273441, -0.044347070157527924, -0.04225694015622139, 0.025785820558667183, 0.001590315019711852, -6.496152491308749e-05, 0.01973126456141472, -0.011359392665326595, -0.001351767685264349, 0.025740383192896843, 0.016561994329094887, 0.03105657920241356, -0.012767957523465157, 0.007707348093390465, -0.03728152811527252, 0.01900426484644413, 0.007923176512122154, -0.0064521352760493755, -0.031238330528140068, -0.051707956939935684, -0.05257127061486244, -0.0064862133003771305, -0.00797997321933508, -0.03530499339103699, -0.036645401269197464, -0.01539197750389576, -0.012779316864907742, -0.015346539206802845, 0.01914057694375515, 0.01856124773621559, 0.0032686651684343815, -0.028921013697981834, -0.004711308050900698, -0.02324131689965725, -0.0026027208659797907, -0.01907242089509964, 0.02335491217672825, 0.016914134845137596, -0.019856218248605728, -0.0092011084780097, -0.03491877391934395, 0.007769824471324682, -0.006202228367328644, 0.004430163186043501, 0.017834246158599854, -0.020060688257217407, -0.009206787683069706, 0.00582736823707819, -0.004384725820273161, 0.015448774211108685, 0.009638444520533085, -0.0002641058817971498, 0.03151095658540726, 0.009059115312993526, -0.0193109679967165, 0.007412003818899393, -0.040212251245975494, -0.02739885449409485, 0.002706375205889344, 0.0024280701763927937, -0.025445040315389633, -0.020390110090374947, 0.0076051135547459126, -0.017800169065594673, 0.004262612201273441, 0.003683282993733883, -0.027648761868476868, 0.04237053543329239, -0.04884538799524307, -0.014948960393667221, -0.025376884266734123, 0.00677587790414691, -0.008474106900393963, -0.017254916951060295, 0.016902776435017586, -0.017527543008327484, 0.005895524751394987, 0.028739264234900475, 0.01945864036679268, -0.005140125285834074, -0.011171963065862656, -0.0036293258890509605, -0.00791181717067957, 0.007985653355717659, -0.0023883122485131025, -0.011700174771249294, -0.029579859226942062, 0.0005519954720512033, 0.013926615938544273, -0.025467758998274803, -0.03378283232450485, 0.01318825501948595, 0.027285261079669, 0.001786264474503696, -0.003064196091145277, -0.0014234739355742931, -0.008786490187048912, -0.03430536761879921, -0.0005850087036378682, -0.05475227162241936, 0.008099246770143509, 0.018436294049024582, -0.006622525863349438, 0.03051132895052433, 0.0051685236394405365, -0.02621747925877571, -0.011881925165653229, 0.04893626272678375, -0.007145057898014784, -0.011359392665326595, -0.010053062811493874, -0.029534421861171722, 0.024081911891698837, -0.021934987977147102, -0.0382811538875103, -0.009257905185222626, 0.006145431660115719, -0.04555116593837738, 0.01933368667960167, 0.010041703470051289, -0.0527530200779438, -0.015516930259764194, 0.005816008895635605, 0.014664975926280022, 0.07479023933410645, 0.016437040641903877, -0.051935143768787384, -0.0006041777087375522, -0.00941125676035881, -0.014119724743068218, 0.001638592453673482, -0.021662361919879913, 0.02998879738152027, 0.06752023100852966, -0.016698306426405907, 0.03450983390212059, -0.03003423474729061, 0.007196175400167704, 0.017822887748479843, -0.032328832894563675, -0.011745612137019634, -0.003490173490718007, -0.004413124173879623, 0.002653838135302067, 0.02232120744884014, -0.016652869060635567, -0.004577835090458393, 0.032033488154411316, 0.00012601826165337116, -0.0378267765045166, 0.02257111296057701, 0.0038962718099355698, 0.028284888714551926, 0.009871312417089939, 0.0037145214155316353, 0.02994336001574993, -0.003552650101482868, 0.024081911891698837, 0.016789183020591736, 0.04970870167016983, 0.032578736543655396, -0.024377256631851196, -0.016891416162252426, 0.003129512770101428, 0.006185189355164766, 0.04112100228667259, -0.0016570513835176826, 0.02262791059911251, -0.012404456734657288, 0.04225694015622139, -0.009167029522359371, 0.008684256114065647, -0.020855845883488655, -0.003637845627963543, 0.009502132423222065, -0.01502847671508789, 0.07438130676746368, 0.0311020165681839, -0.002446529222652316, -0.016936855390667915, -0.0026509982999414206, 0.0035043726675212383, -0.020174281671643257, -0.0029988796450197697, 0.005745012778788805, -0.03341933339834213, 0.020503703504800797, 0.005512145347893238, 0.003938869573175907, 0.0055178250186145306, 0.03857649862766266, -0.007258651778101921, 0.025399602949619293, -0.016800541430711746, -0.04934520274400711, 0.003288544248789549, 0.007326808292418718, 0.03046589158475399, 0.022025862708687782, -0.01496032066643238, -0.008672896772623062, 0.01331320870667696, 0.05334370955824852, 0.01151274424046278, 0.02335491217672825, -0.03450983390212059, -0.024377256631851196, 0.036463651806116104, 0.043438319116830826, 0.009280623868107796, 0.024195507168769836, 0.01168881542980671, 0.03485061600804329, -0.00026002360391430557, 0.015062554739415646, -0.0021881030406802893, 0.027512449771165848, 0.0037315604276955128, -0.0035299311857670546, 0.020072046667337418, -0.032624177634716034, -0.010706227272748947, -0.051389891654253006, -0.008866005577147007, -0.03335117548704147, 0.0077925436198711395, -0.01962903141975403, 0.0157213993370533, -0.00292788352817297, -0.005236680153757334, 0.04068934544920921, -0.007559675723314285, 0.032828643918037415, -0.043506473302841187, 0.044188037514686584, 0.016902776435017586, -0.0035810484550893307, -0.006736119743436575, -0.010484719648957253, -0.02313908375799656, -0.006031837314367294, 0.009235186502337456, 0.018220465630292892, 0.00095560890622437, 0.005503625608980656, -0.012802035547792912, -0.018311340361833572, 0.03721337020397186, 0.020833125337958336, -0.02360481768846512, -0.017845606431365013, 0.047618575394153595, -0.002307376591488719, 0.025717664510011673, 0.004319408908486366, 0.0372588075697422, -0.021582845598459244, -0.015346539206802845, -0.008275317959487438, -0.00957596767693758, 0.013994771987199783, -0.017777450382709503, -0.025899415835738182, -0.010388164781033993, 0.01574411801993847, -0.015948588028550148, -0.008962560445070267, 0.010700548067688942, 0.012915629893541336, -0.000568324641790241, 0.006281744223088026, -0.02259383164346218, 0.010518797673285007, 0.006815635599195957, -0.00139152561314404, 0.01917465403676033, 0.0317835807800293, -0.009286304004490376, 0.005338914692401886, 0.02285509742796421, 0.04282490909099579, 0.009593007154762745, 0.012790676206350327, -0.018299981951713562, -0.007218894083052874, 0.016380244866013527, -0.0007341007585637271, -0.006230626720935106, -0.024195507168769836, 0.006980346981436014, -0.010865258984267712, -0.03553218021988869, 0.03841746598482132, 0.03450983390212059, -0.031238330528140068, 0.0018884990131482482, -0.03391914814710617, 0.01316553633660078, 0.02721710503101349, -0.01524430513381958, 0.009973546490073204, 0.03516868129372597, 0.033169426023960114, -0.018038716167211533, 0.020946720615029335, 0.05797833949327469, -0.02633107267320156, -0.011745612137019634, 0.020378749817609787, -0.0015562367625534534, 0.0027248342521488667, 0.040371280163526535, -0.00792885571718216, 0.05856902897357941, -0.01861804537475109, 0.024967946112155914, 0.008729693479835987, 0.01944728009402752, 0.036372777074575424, 0.012540769763290882, 0.03094298578798771, -0.027512449771165848, -0.001776325050741434, 0.01934504508972168, -0.020412828773260117, -0.015130710788071156, 0.0013176895445212722, 0.01500575803220272, 0.025013383477926254, -0.005478067323565483, 0.025354163721203804, -0.004452881868928671, -0.005929602775722742, 0.036236461251974106, 0.0037684785202145576, -0.06552097946405411, -0.01146730687469244, -0.03191989287734032, -0.016618791967630386, -0.0021171069238334894, -0.0032203877344727516, -0.0006595547311007977, 0.02308228611946106, 0.03469158709049225, -0.007940215058624744, 0.01567596197128296, 0.01371078658849001, 0.011643377132713795, -0.016107618808746338, 0.036509089171886444, 0.016618791967630386, -0.032964956015348434, -0.016414321959018707, 0.0189133882522583, 0.008780810981988907, 0.0017323073698207736, -0.0023059567902237177, -0.03378283232450485, 0.009928109124302864, 0.010115539655089378, -0.016675587743520737, -0.014778570272028446, -0.0003052836691495031, 0.017050448805093765, -0.039894185960292816, 0.014244678430259228, 0.0013808761723339558, 0.028239449486136436, 0.0035782086197286844, -0.009763398207724094, -0.04264315962791443, 0.062476661056280136, -0.04998132959008217, 0.04898170009255409, 0.028580231592059135, 0.016618791967630386, 0.01588043011724949, -0.001540617668069899, -0.003947388846427202, -0.021094392985105515, 0.018209107220172882, -0.008945521898567677, 0.017061807215213776, -0.03026142157614231, 0.03373739495873451, 0.000545250833965838, -0.05329827219247818, -0.02721710503101349, 0.004350647330284119, -0.007349526975303888, -0.029761608690023422, -0.012483973056077957, 0.03464614599943161, 0.03028414025902748, -0.029375389218330383, -0.012654363177716732, -0.00943965557962656, -0.051889706403017044, -0.02678544819355011, -0.01565324328839779, -0.004063822794705629, -0.005026531405746937, -0.029625296592712402, -0.011995518580079079, -0.023945599794387817, -0.010053062811493874, 0.006690682377666235, 0.01922009326517582, 0.009138631634414196, 0.008019731380045414, -0.0018686200492084026, -0.02344578690826893, 0.02261655032634735, 0.007349526975303888, 0.015494211576879025, -0.003103954019024968, 0.019890297204256058, -0.005537704098969698, 0.03142008185386658, -0.0003620806382969022, 0.020992157980799675, -0.0010344147449359298, 0.0004575705388560891, -0.00955324899405241, 0.0061340718530118465, -0.024263663217425346, 0.01898154616355896, -0.02283237874507904, -0.0007596593932248652, -0.002741873497143388, -0.01877707615494728, 0.02245751954615116, -0.029897920787334442, -0.021037595346570015, -0.006849713623523712, 0.026013009250164032, -0.0065202913247048855, 0.00040893812547437847, -0.004529557656496763, -0.016868697479367256, -0.014994398690760136, 0.032533299177885056, -0.0061340718530118465, 0.011268517933785915, 0.004461401607841253, 0.007201855070888996, -0.02285509742796421, 0.015494211576879025, 0.010007625445723534, -0.028284888714551926, -0.010206414386630058, -0.04839101433753967, -0.04157537594437599, 0.002256259322166443, 0.00335102085955441, -0.00943397544324398, 0.0371452160179615, -0.006849713623523712, -0.032987676560878754, 0.012381738051772118, 0.0010649430332705379, 0.0380539670586586, 0.005449668504297733, 0.0030244383960962296, -0.03319214656949043, -0.016698306426405907, -0.01893610693514347, 0.051889706403017044, 0.032374270260334015, -0.014233319088816643, 0.024240944534540176, 0.011143564246594906, -0.0005960131529718637, 0.01168881542980671, -0.013460880145430565, -0.010200734250247478, 0.020140202715992928, -0.04230237752199173, 0.03007967211306095, 0.025195132941007614, -0.009286304004490376, 0.011365072801709175, -0.010240492410957813, 0.01936776377260685, -0.00795725453644991, 0.019958453252911568, 0.004640311934053898, 0.024036474525928497, -0.01567596197128296, 0.012279503978788853, -0.010700548067688942, 0.016141697764396667, 0.0032061885576695204, 0.0015178988687694073, 0.021469252184033394, -0.01950407773256302, 0.0012140350881963968, -0.023900162428617477, -0.0024280701763927937, -0.012961067259311676, 0.019924374297261238, 0.027966825291514397, -0.020469626411795616, -0.00048312917351722717, 0.03425993025302887, 0.02249159850180149, 0.027762355282902718, -0.0020049328450113535, -0.008468427695333958, -0.0017834246391430497, 5.574311217060313e-06, -0.01125147845596075, 0.02735341712832451, -0.012438534758985043, 0.00972364004701376, 0.018243184313178062, 0.005889845080673695, -0.010166656225919724, 0.012608925811946392, -0.003064196091145277, 0.004708468448370695, -0.0004479860363062471, 0.004711308050900698, 0.0025033261626958847, -0.009195428341627121, -0.016175774857401848, 0.0076278322376310825, -0.029829764738678932, 0.013040582649409771, -0.017107244580984116, 0.012336300686001778, 0.007900457829236984, -0.014971680007874966, 0.032874081283807755, -0.006168150343000889, -0.006804276257753372, -0.023809287697076797, 0.0016329126665368676, -0.01847037300467491, -0.0022023022174835205, 0.01853852905333042, 0.020003890618681908, 0.0009634185116738081, -0.014801288954913616, 0.0025019063614308834, 0.0011316795134916902, -0.010530157014727592, -0.014562741853296757, -0.03571392968297005, 0.018140949308872223, 0.02664913609623909, -0.023945599794387817, -0.020435547456145287, 0.018038716167211533, -0.00926926452666521, 0.0033368216827511787, 0.017402589321136475, 0.012006877921521664, 0.020946720615029335, 0.0026609378401190042, -0.02340034954249859, 0.009036396630108356, -0.005940962582826614, -0.014869445003569126, -0.025853978469967842, -0.00797997321933508, -0.035600338131189346, 0.010694867931306362, 0.0018146629445254803, -0.029716171324253082, -0.003632165724411607, 0.036713555455207825, 0.024240944534540176, 0.0007724387105554342, -0.028194012120366096, -0.007610793225467205, 0.025240570306777954, -0.003600927535444498, 0.005094687454402447, 0.01321097370237112, 0.0064521352760493755, -0.010337047278881073, -0.03539586812257767, 0.014040209352970123, -0.0004128429281990975, -0.0025288849137723446, 0.025445040315389633, 0.010848220437765121, 0.0013496378669515252, 0.01872027851641178, 0.024354537948966026, -0.00587848573923111, -0.00010871293488889933, -0.010178015567362309, 0.024331819266080856, -0.005986399948596954, -0.032237958163022995, 0.02337763085961342, 0.001973694423213601, -0.005395711399614811, 0.02245751954615116, 0.017845606431365013, -0.05425246059894562, -0.02358209900557995, 0.01873163878917694, 0.04843645170331001, -0.02737613581120968, -0.0068724327720701694, 0.006934909150004387, 0.0037769980262964964, 0.005057769827544689, 0.005162843968719244, -0.005375832784920931, -0.04173440858721733, 0.016721026971936226, 0.0133586460724473, 0.0189701858907938, -0.04482416436076164, 0.017413949593901634, -0.02340034954249859, 0.017005011439323425, -0.014744491316378117, 0.04296122491359711, -0.010831180959939957, 0.0078039029613137245, 0.040030501782894135, -0.017936481162905693, -0.03755415230989456, 0.012824754230678082, 0.03196533024311066, -0.004626112524420023, 0.01886795088648796, 0.029011888429522514, 0.004362006671726704, 0.0020276515278965235, -0.018288621678948402, -0.021151188760995865, -0.014608179219067097, -0.00571093475446105, 0.0036037673708051443, -0.02355938032269478, -0.002792990766465664, 0.0017820047214627266, 0.024377256631851196, 0.0317835807800293, -0.06134071946144104, -0.01929960772395134, -0.004725507460534573, 0.027694199234247208, 0.005429789889603853, -0.01886795088648796, -0.03432808443903923, -0.0008015471394173801, 0.006213587708771229, -0.0037202010862529278, 0.03523683547973633, -0.006514611653983593, -0.0018884990131482482, -0.026194758713245392, -0.008701294660568237, -0.033169426023960114, 0.051435329020023346, 0.0003342146228533238, -0.02229848876595497, 0.02626291662454605, 0.029057325795292854, -0.010598313063383102, -0.0314427986741066, -0.008894404396414757, 0.0005821688682772219, -0.0009194008307531476, -0.012404456734657288, -0.029443545266985893, 0.01496032066643238, -0.0057279737666249275, 0.011052689515054226, 0.020072046667337418, -0.0016783502651378512, -0.005568942055106163, -0.012518051080405712, -0.0007987073040567338, 0.013051941990852356, -0.02703535556793213, 0.027830511331558228, -0.0007014424772933125, -0.020208358764648438, -0.04870907589793205, -0.03846290335059166, 0.021412454545497894, 0.040348563343286514, 0.03173814341425896, -0.012540769763290882, -0.011081087402999401, 0.02342306822538376, 0.009286304004490376, 0.014210600405931473, 0.008780810981988907, -0.014460506848990917, -0.007519918028265238, -0.025354163721203804, 0.00481638265773654, -0.010172336362302303, -0.021934987977147102, 0.032737769186496735, -0.005114566534757614, -0.011722893454134464, 0.003228907473385334, 0.0030954345129430294, 0.009524851106107235, -0.0190269835293293, -0.007042823359370232, 0.003586728358641267, 0.003953068517148495, 0.025467758998274803, -0.03328302130103111, 0.00788341835141182, -0.031897176057100296, -0.028375763446092606, -0.007553996052592993, -0.0051230862736701965, 0.006145431660115719, 0.04530125856399536, -0.029239077121019363, 0.007093940861523151, -0.009218147024512291, -0.006957627832889557, -0.02240072190761566, 0.005160004366189241, -0.029193639755249023, 0.022184893488883972, -0.006991706322878599, 0.005997759290039539, 0.026103883981704712, -0.036486368626356125, -0.0007447501993738115, -0.03369195759296417, 0.006429416127502918, 0.0018643602961674333, -0.016834620386362076, 0.024218225851655006, -0.011677456088364124, -0.02683088555932045, 0.013801662251353264, 0.0041916160844266415, -0.03837202861905098, 0.00972932018339634, 0.024877069517970085, -0.012404456734657288, 0.027580605819821358, -0.009280623868107796, -0.0031749503687024117, 0.014528662897646427, -0.01338136475533247, -0.023922881111502647, 0.003240266814827919, 0.03332845866680145, -0.008144684135913849, 0.014119724743068218, -0.01944728009402752, 0.004546597134321928, -0.00023943469568621367, 0.03346477076411247, 0.024627164006233215, 0.003930349834263325, 0.024945225566625595, -0.0038451545406132936, -0.017856964841485023, -0.02349122427403927, -0.007809582632035017, 0.0007113819592632353, 0.004319408908486366, 0.00015716784400865436, 0.016993651166558266, 0.0006751738837920129, 0.03073851764202118, -0.0004242023278493434, 0.02712623029947281, -0.017334433272480965, 0.021628282964229584, 0.00013010053953621536, -0.02321859821677208, 0.0011678875889629126, 0.020072046667337418, 0.01933368667960167, -0.017572980374097824, -0.003609447041526437, 0.027739636600017548, -0.009132951498031616, -0.006946268491446972, -0.013176895678043365, -0.03098842315375805, 0.03462342917919159, -0.040303125977516174, -0.00568537600338459, 0.00040041859028860927, -0.022082660347223282, 0.023922881111502647, 0.04607369750738144, -0.0026879163924604654, 0.05629714950919151, -0.05302564427256584, -0.017209479585289955, 0.01120036095380783, -0.007275691255927086, -0.007213214412331581, 0.013097379356622696, -0.016732385382056236, 0.01918601430952549, 0.014085646718740463, -0.017811527475714684, 0.010677829384803772, -0.015301101841032505, 0.02651282213628292, 0.03055676631629467, 0.011950081214308739, -0.04902713745832443, 0.008474106900393963, 0.06642972677946091, 0.03716793283820152, 0.008269637823104858, 0.01860668510198593, 0.04143906384706497, 0.015346539206802845, 0.0017223679460585117, -0.015971306711435318, 0.027671480551362038, -0.010331368073821068, 0.01949271745979786, 0.008491146378219128, -0.012370378710329533, 0.006395338103175163, 0.011285556480288506, -0.03182901814579964, 0.01903834193944931, -0.007150737568736076, -0.0013475079322233796, -0.0014341233763843775, 0.0009385698358528316, 0.005381512455642223, 0.0005044280551373959, -0.010126898996531963, 0.036122869700193405, 0.006457814946770668, -0.009967867285013199, 0.002073089126497507, -0.01575547829270363, 0.06674779206514359, -0.0020134523510932922, -0.03328302130103111, 0.020889922976493835, -0.04643719643354416, 0.03921262547373772, -0.029761608690023422, -0.004895898047834635, -0.00979179609566927, 0.03171542286872864], [0.024015652015805244, -0.023520993068814278, 0.019378231838345528, 0.010412553325295448, -0.01760982908308506, 0.03133659064769745, -0.031855981796979904, 0.004801275674253702, 0.01918036863207817, 0.014777911826968193, -0.031559187918901443, -0.025499626994132996, 0.01503760740160942, 0.040710363537073135, -0.0342056080698967, 0.015495166182518005, 0.0018333266489207745, 0.026711538434028625, -0.0065480368211865425, -0.00707361102104187, 0.016744177788496017, 0.014988141134381294, 0.014246153645217419, -0.007834147661924362, -0.03113872930407524, -0.039201658219099045, 0.00941087119281292, -0.036481037735939026, 0.05505545064806938, -7.564791303593665e-05, 0.07315994054079056, -0.018920673057436943, -0.033043161034584045, -0.007308573927730322, -0.01383806113153696, 0.002187316305935383, -0.0032585603184998035, -0.01722646877169609, 0.017560362815856934, 0.0031874533742666245, -0.018933039158582687, -0.023211833089590073, -0.025400694459676743, -0.026216881349682808, -0.044914957135915756, 0.033636752516031265, 0.034081943333148956, -0.025821154937148094, 0.0047208936884999275, 0.03593691438436508, 0.07785918563604355, 0.07093397527933121, -0.02483183890581131, 0.009862245991826057, -0.015470433048903942, 0.012391186319291592, -0.00021138906595297158, 0.04194701090455055, 0.01958846114575863, -0.02604375034570694, -0.023595193400979042, -0.00880491454154253, 0.008508119732141495, 0.029902083799242973, -0.018487848341464996, 0.003338942304253578, 0.004535396583378315, 0.06094188243150711, 0.0060595618560910225, -0.01582906022667885, 0.018426015973091125, 0.05144444480538368, 0.042540598660707474, -0.017510898411273956, -0.03163338825106621, 0.008996594697237015, 0.034675534814596176, -0.06534434109926224, 0.009954994544386864, 0.06386036425828934, -0.0329195000231266, 0.007630101405084133, -0.010455836541950703, 0.025672756135463715, -0.03336469084024429, 0.04699252173304558, -0.041477084159851074, -0.013120806775987148, -0.018660977482795715, -0.05008413642644882, -0.06366249918937683, -0.01151316799223423, -0.006498571019619703, 0.034378740936517715, 0.0443955659866333, 0.013565999455749989, 0.03581324964761734, -0.01015285775065422, -0.044346101582050323, 0.043554648756980896, 0.0024933861568570137, -0.016966773197054863, -0.03009994700551033, -0.0012273704633116722, 0.009763314388692379, -0.047041986137628555, -0.01565592922270298, 0.048872221261262894, -0.00962110050022602, 0.02358282543718815, 0.06217852607369423, -0.03749508783221245, -0.018809374421834946, 0.07622681558132172, -0.024188783019781113, -0.004167494829744101, -0.009342855773866177, 0.01124728936702013, 0.019155636429786682, -0.005639102775603533, -0.016768909990787506, -0.029827885329723358, 0.059507373720407486, -0.047041986137628555, 0.012873477302491665, -0.03178178519010544, -0.00048074586084112525, -0.03556592017412186, -0.0017931356560438871, -0.016237152740359306, 0.039795245975255966, -0.04862489551305771, 0.07103290408849716, -0.0490700863301754, 0.02340969629585743, 0.013603098690509796, 0.011105074547231197, -0.032894764095544815, -0.020528312772512436, -0.01512417197227478, 0.05179070681333542, -0.03220224380493164, 0.05406613275408745, 0.016880208626389503, -0.024139316752552986, 0.013479433953762054, 0.05752874165773392, 0.005818416364490986, -0.03833600506186485, -0.008019644767045975, -0.003913982305675745, -0.009590184316039085, 0.007061244919896126, 0.029135363176465034, 0.04330731928348541, 0.0026417835615575314, -0.0018487847410142422, 0.08280576765537262, 0.00884819682687521, -0.02876437082886696, -0.03353781998157501, -0.011389503255486488, -0.028269711881875992, -0.03927585482597351, -0.011476068757474422, -0.0016911125276237726, -0.015903258696198463, -0.012323170900344849, -0.04484076052904129, -0.05075192451477051, -0.06015042960643768, -0.0465225949883461, -0.012094391509890556, -0.05307681858539581, -0.0050331465899944305, -0.03623370826244354, 0.03813813999295235, -0.023669391870498657, -0.01071553211659193, 0.02965475432574749, -0.005159902386367321, -0.025140998885035515, -0.09373771399259567, 0.008279340341687202, -0.044791292399168015, 0.03764348477125168, 0.017003873363137245, 0.018413648009300232, -0.06890587508678436, -0.01133385393768549, 0.020083120092749596, -0.012898210436105728, -0.03598637878894806, 0.009750948287546635, -0.020936405286192894, -0.009695298969745636, -0.014246153645217419, -5.395227617555065e-06, 0.030025748535990715, -0.039844710379838943, -0.0010720168938860297, -0.0245350431650877, 0.02920956164598465, 0.020911673083901405, 0.003031326923519373, 0.016447382047772408, 0.0006044104229658842, 0.02394145354628563, 0.03099033236503601, -0.03766821697354317, -0.0004220052214805037, -0.004807458724826574, 0.019934723153710365, -0.004665244370698929, 0.013046608306467533, 0.0454590804874897, 0.03554118797183037, -0.014580048620700836, 0.0094541534781456, -0.0011369407875463367, -0.05010886862874031, -0.03826180472970009, -0.03126239404082298, 0.0008556039538234472, -0.03581324964761734, -0.012261338531970978, -0.009627283550798893, 0.0038830663543194532, 0.00947270356118679, 0.016002191230654716, -0.028517041355371475, 0.004448831547051668, -0.008792548440396786, -0.04380197823047638, 0.003032872686162591, -0.011976909823715687, 0.022989235818386078, -0.033785149455070496, -0.007259108126163483, -0.0003304161655250937, 0.02589535340666771, 0.026315812021493912, -0.019848156720399857, 0.01330630388110876, 0.015791960060596466, -0.018574412912130356, -0.008056744001805782, -0.007358039729297161, 0.05866645276546478, -0.015841426327824593, -0.0006391910719685256, -0.05134551227092743, 0.07063718140125275, -0.040265172719955444, -0.006087386514991522, 9.806211164686829e-05, 0.003833600552752614, -0.03193018212914467, 0.06806495785713196, -0.009652016684412956, -0.05594583600759506, 0.039819978177547455, -0.013565999455749989, -0.008341172710061073, -0.05639102682471275, -0.015148905105888844, 0.028517041355371475, -0.0027639023028314114, -0.020280983299016953, 0.011111258529126644, -0.05822126194834709, 0.04625053331255913, -0.002714436501264572, -0.044618163257837296, -0.02814604714512825, 0.025944819673895836, 0.006381089799106121, -0.04395037516951561, -0.03734668716788292, 0.05312628298997879, 0.000803046568762511, -0.007463154383003712, 0.0055463542230427265, -0.06306891143321991, -0.002481019590049982, 0.019835790619254112, -0.0022120492067188025, 0.04845176264643669, -0.018858840689063072, 0.001796227297745645, 0.02891276776790619, -0.005373223684728146, 0.009355221875011921, -0.007914530113339424, 0.04229326918721199, -0.010363087989389896, -0.034997060894966125, 0.03596164658665657, -0.03571431711316109, -0.01603928953409195, 0.004362266510725021, 0.05193910375237465, 0.020132586359977722, -0.06747137010097504, -0.014864476397633553, 0.018994871526956558, -0.022358547896146774, 0.03885539621114731, -0.004121120553463697, 0.02606848254799843, -0.018475480377674103, -0.012632331810891628, -0.012749813497066498, -0.060447223484516144, -0.03195491433143616, -0.00259386352263391, -0.04936688020825386, -0.0070365117862820625, 0.028541773557662964, -0.037371423095464706, 0.05733087658882141, -0.0015952724497765303, 0.047487180680036545, -0.062376391142606735, -0.012910577468574047, -0.007648651488125324, 0.043109454214572906, 0.08503173291683197, -0.04696778953075409, -0.022803740575909615, -0.06643258780241013, 0.007376589346677065, 0.08023355156183243, -0.021245567128062248, -0.040883492678403854, -0.049292683601379395, 0.004281884524971247, 0.016657613217830658, -0.04600320756435394, 0.0245350431650877, 0.032894764095544815, 0.015012874267995358, -0.0030761552043259144, 0.016583412885665894, -0.03643156960606575, -0.01710280403494835, -0.005802958272397518, 0.03390881419181824, 0.008291706442832947, 0.03841020539402962, -0.004309708718210459, 0.01846311427652836, -0.04484076052904129, -0.018129220232367516, -0.0414276197552681, -0.02873963676393032, 0.06638312339782715, -0.005472155753523111, 0.010548584163188934, 0.0035584468860179186, 0.03465080261230469, 0.018104488030076027, 0.044494498521089554, 0.05490705370903015, 0.04528595134615898, 0.01340523548424244, -0.007061244919896126, 0.025400694459676743, -0.020342815667390823, -0.006152310408651829, 0.05149390920996666, 6.878839485580102e-05, 0.05856752395629883, -0.01864861138164997, -0.013133172877132893, -0.0054103233851492405, 0.005490705370903015, 0.012898210436105728, 0.023755956441164017, -0.02601901814341545, 0.004439556505531073, -0.013034241273999214, 0.00029447616543620825, 0.03284529969096184, 0.02417641505599022, 0.034527137875556946, -0.039374787360429764, -0.017449066042900085, 0.005549445748329163, 0.01716463640332222, -0.0414276197552681, 0.0023202558513730764, -0.018636245280504227, 0.022915037348866463, -0.021356863901019096, 0.00607501994818449, 0.0013834969140589237, 0.059853632003068924, 0.019069069996476173, -0.0577760674059391, -0.019143270328640938, -0.04209540784358978, -0.008403005078434944, 0.01814158633351326, 0.028986966237425804, -0.0007566723506897688, 0.015940358862280846, -0.04471709579229355, 0.006003913003951311, -0.0043251668103039265, -0.010338354855775833, 0.024807104840874672, 0.030891399830579758, 0.0071045272052288055, 0.03554118797183037, -0.01257668249309063, 0.004442648496478796, 0.022779006510972977, -0.001601455733180046, -0.057874999940395355, 0.012242788448929787, -0.03007521480321884, -0.06272265315055847, -0.010344537906348705, -0.029753686860203743, 0.005778225138783455, -0.016682345420122147, -0.07494070380926132, 0.036753099411726, -0.09457863122224808, -0.010437286458909512, 0.01924220100045204, 0.020404648035764694, -0.005935897585004568, -0.0180550217628479, -0.028096580877900124, -0.002658787416294217, -0.013417601585388184, -0.029382692649960518, -0.028492307290434837, 0.01962556131184101, -0.037989743053913116, 0.052582159638404846, 0.03826180472970009, -0.012397369369864464, -0.02888803370296955, -0.020639609545469284, 0.025029702112078667, 0.028517041355371475, -9.220495485351421e-06, -0.002525848103687167, 0.0153467683121562, -0.002032735850661993, -0.015470433048903942, -0.01953899674117565, 0.0006225735996849835, 0.013504167087376118, -0.08300363272428513, 0.0013533537276089191, -0.021418696269392967, 0.02260587550699711, 0.0715770274400711, 0.04558274522423744, 0.014122489839792252, 0.015074706636369228, 0.014134855940937996, -0.005793683230876923, -0.01436981838196516, -0.0017096621450036764, -0.05287895351648331, 0.011080342344939709, -0.05851805582642555, -0.025648023933172226, -0.02545016072690487, 0.052631624042987823, 0.0020961137488484383, 0.015730127692222595, -0.020293349400162697, -0.010437286458909512, -0.04125448688864708, 0.00027631293050944805, 0.020058387890458107, -0.04815496876835823, -0.0237930566072464, 0.0605461560189724, 0.016669979318976402, 0.07261580973863602, 0.003978906199336052, -0.0497131422162056, -0.047660309821367264, -0.0694499984383583, -0.0023712674155831337, -4.055327008245513e-05, -0.012539583258330822, 0.017832426354289055, -0.006084294989705086, -0.04939161241054535, -0.007858880795538425, 0.03794027864933014, 0.011531717143952847, 0.03922639042139053, -0.004016005899757147, -0.010202324017882347, 0.01947716437280178, 0.009342855773866177, -0.010462019592523575, 0.014134855940937996, -0.0043653580360114574, -0.04595373943448067, -0.020763274282217026, -0.00707361102104187, -0.04904535412788391, 0.010121941566467285, 0.012898210436105728, -0.03235064074397087, -0.041303955018520355, 0.051098182797431946, -0.005738034378737211, -0.01616295427083969, -0.0009669020655564964, 0.02663733996450901, -0.028714904561638832, 0.007308573927730322, 0.0037068442907184362, 0.003212186275050044, 0.012607598677277565, 0.00559272849932313, -0.011222556233406067, -0.026909401640295982, -0.02039228193461895, -0.023483894765377045, 0.004489022307097912, -0.07449551671743393, 0.005308300256729126, 0.006161585450172424, -0.008613234385848045, -0.006956129800528288, 0.028393376618623734, -0.0005182316526770592, -0.011228739283978939, 0.05253269150853157, 0.02977841906249523, -0.0014097756939008832, 0.01864861138164997, -0.002986498409882188, -0.01828998513519764, 0.020256251096725464, -0.015730127692222595, -0.00021486711921170354, 0.020973505452275276, 0.013145539909601212, 0.004006730858236551, -0.02012021839618683, -0.0371735580265522, -0.00847720354795456, 0.018005555495619774, 0.024633973836898804, -0.0299515500664711, 0.014184322208166122, 0.00508261239156127, -0.005886431783437729, 0.009874613024294376, -0.009342855773866177, -0.0049218484200537205, -0.007976362481713295, 0.023743590340018272, -0.00967674981802702, 0.027502991259098053, 0.005555629264563322, 0.007994911633431911, -0.0439751073718071, -0.024992601945996284, 0.02770085446536541, -0.04308472201228142, 0.04068563133478165, -0.010301255621016026, 0.011086525395512581, -0.045830074697732925, 0.012273704633116722, 0.011012326925992966, 0.0014066840521991253, 0.01383806113153696, 0.006374906748533249, 0.005728759337216616, -0.0059235310181975365, -0.00015351791807916015, -0.017350133508443832, -0.02918482944369316, -0.007623918354511261, -0.039325322955846786, 0.004962039180099964, -0.002986498409882188, 0.006257425528019667, -0.007722849957644939, 0.008693616837263107, 0.06761976331472397, 0.008928579278290272, -0.0009166633244603872, -0.03873173147439957, 0.031188195571303368, -0.01882174238562584, -0.025165732949972153, -0.009423237293958664, 0.023966185748577118, -0.05391773581504822, -0.002600046806037426, 0.006628418806940317, 0.018104488030076027, -0.023038702085614204, 0.009837513789534569, 0.0005503071588464081, 0.022655341774225235, -0.0006446013576351106, -0.03697569668292999, -0.02873963676393032, 0.028343910351395607, -0.02041701413691044, -0.024844205006957054, -0.0032183693256229162, 0.005540171172469854, 0.002770085586234927, -0.014357452280819416, -0.0032647436019033194, -0.006634602323174477, -0.0382370725274086, -0.007011779118329287, -0.006350173614919186, -0.05371987074613571, 0.0439751073718071, -0.00432207528501749, -0.02589535340666771, -0.004263334907591343, -0.01680601015686989, -0.021764958277344704, -0.031534455716609955, 0.02222251705825329, 0.011748130433261395, 0.009868429973721504, 0.010505301877856255, 0.024164048954844475, 0.050801388919353485, -0.04484076052904129, 0.03133659064769745, -0.0299515500664711, -0.0004266426258254796, 0.014073023572564125, -0.015940358862280846, 0.008792548440396786, 0.011135990731418133, 0.0041891359724104404, 0.010709348134696484, 0.014777911826968193, 0.0032616520766168833, 0.007970179431140423, 0.018401281908154488, -0.008532852865755558, -4.4411749513528775e-06, -0.01139568630605936, -0.007370406296104193, -0.003790317801758647, -0.004074746277183294, -0.03390881419181824, -0.01778296008706093, -0.011976909823715687, 0.008019644767045975, -0.013714396394789219, 0.047338783740997314, -0.04367831349372864, 0.009645833633840084, -0.005589636974036694, -0.012255155481398106, -0.0067891827784478664, 0.005419597961008549, -0.03670363128185272, -0.02169075794517994, 0.005799866747111082, -0.01015285775065422, 0.012601415626704693, -0.041452351957559586, 0.026414744555950165, -0.0020141860004514456, -0.024732906371355057, -0.01607638970017433, 0.015965091064572334, -0.02062724344432354, -0.004244784824550152, 0.0324990376830101, -0.018240518867969513, -0.005691660102456808, 0.028962234035134315, 0.012508667074143887, 0.03596164658665657, -0.009614917449653149, 0.02101060375571251, -0.02255641110241413, 0.03128712624311447, 0.017127538099884987, -0.0062141427770257, -0.01905670389533043, -0.05856752395629883, -0.01037545409053564, 0.005821507889777422, 0.009862245991826057, -0.03299369663000107, -0.02557382546365261, 2.1762059986940585e-05, -0.005997729953378439, -0.009837513789534569, 0.01610112190246582, 1.850137414294295e-05, 0.008798731490969658, -0.025400694459676743, -0.02415168285369873, -0.010134308598935604, -0.004931122995913029, -0.006801549345254898, 0.008186591789126396, 0.00831643957644701, -0.017498530447483063, -0.016892574727535248, -0.027008334174752235, 0.022037019953131676, -0.040710363537073135, -0.013009509071707726, 0.014864476397633553, -0.010468202643096447, -0.018846474587917328, 0.013652564026415348, 0.014790277928113937, 0.002402183599770069, 0.020429380238056183, -0.01271271426230669, 0.029234295710921288, -0.005753492470830679, -0.026538409292697906, 0.0018797009252011776, -0.03279583528637886, -0.031361326575279236, 0.007976362481713295, -0.011698665097355843, 0.011945993639528751, -0.00670261774212122, 0.011364770121872425, -0.012242788448929787, 0.00015313147741835564, -0.005954447202384472, -0.02977841906249523, 0.04892168939113617, -0.03007521480321884, 0.004906390327960253, -0.03645630553364754, 0.00929338950663805, -0.010925761424005032, -0.011135990731418133, -0.021851522848010063, 0.0013170272577553988, 0.006056470330804586, 0.03294423222541809, 0.02169075794517994, -0.007741399575024843, -0.021851522848010063, 0.005673110485076904, -0.022271981462836266, 0.012582866474986076, 0.005128986667841673, -0.0245350431650877, -0.0335625521838665, 0.025672756135463715, 0.00923155713826418, -0.017622195184230804, -0.03131185844540596, -0.006690251175314188, 0.041625481098890305, 0.02604375034570694, 0.0022676982916891575, 0.000308388436678797, -0.00884819682687521, -0.02370649017393589, -0.006350173614919186, -0.047932371497154236, 0.007123076822608709, 0.009652016684412956, -0.009750948287546635, 0.0371735580265522, 0.012521034106612206, -0.031089263036847115, 0.000770198181271553, 0.01571776159107685, -0.0030622428748756647, -0.025969551876187325, -0.02051594667136669, -0.024201149120926857, 0.021789690479636192, -0.030743002891540527, -0.022692441940307617, -0.020800374448299408, 0.006838648580014706, -0.04157601669430733, -0.00659131957218051, -0.0007292343070730567, -0.04066089913249016, -0.021616559475660324, -0.0006627645925618708, 0.004019097425043583, 0.07004359364509583, 0.009707666002213955, -0.038756463676691055, 0.0030622428748756647, 0.00520936818793416, -0.014493483118712902, -0.02500496804714203, 0.0021424880251288414, 0.030001014471054077, 0.07459444552659988, -0.018153952434659004, 0.04335678368806839, -0.0229397714138031, -0.012193323113024235, 0.02183915674686432, -0.012205689214169979, -0.013788594864308834, -0.008328806608915329, -0.0014615601394325495, -0.0032461939845234156, 0.027206197381019592, -0.0089223962277174, 0.009386138059198856, 0.023607559502124786, -0.0035739049781113863, -0.031064530834555626, 0.009577818214893341, 0.00021989099332131445, 0.020441746339201927, 0.005756583996117115, 0.011228739283978939, 0.020886939018964767, 0.004028372000902891, 0.025116266682744026, 0.024040384218096733, 0.024337179958820343, 0.04617633670568466, -0.03853386640548706, -0.03838546946644783, -0.013454700820147991, -0.015012874267995358, 0.022358547896146774, -0.007017962168902159, 0.0033142094034701586, -0.012725080363452435, 0.03215277940034866, 0.0004714710230473429, -0.013887526467442513, -0.012514851056039333, -0.022989235818386078, 0.030644070357084274, -0.015322035178542137, 0.07271474599838257, 0.027156731113791466, 0.016645245254039764, -6.782226409995928e-05, -0.0033142094034701586, 0.01767166145145893, -0.008811097592115402, 0.0020203692838549614, -0.010344537906348705, -0.04271372780203819, 0.0237930566072464, -0.005540171172469854, 0.012762179598212242, 0.008792548440396786, 0.030446207150816917, -0.02054067887365818, 0.027873985469341278, -7.86791406426346e-06, -0.05555010586977005, -0.022766640409827232, 0.009973544627428055, 0.022531677037477493, 0.029580555856227875, -0.010245606303215027, -0.011123624630272388, 0.027131998911499977, 0.05253269150853157, 0.011457518674433231, 0.03113872930407524, -0.02281610667705536, -0.02784925326704979, 0.03660470247268677, 0.04847649484872818, 0.004489022307097912, 0.01512417197227478, 0.013504167087376118, 0.04966367781162262, -0.001249011722393334, 0.014431650750339031, 0.011111258529126644, 0.013219738379120827, -0.0033667669631540775, -0.013912259601056576, 0.033785149455070496, -0.029902083799242973, -0.005660743918269873, -0.01775822602212429, -0.0010217782109975815, -0.022173050791025162, -0.006350173614919186, -0.00014066840230952948, 0.01000446081161499, 0.013912259601056576, -0.027033066377043724, 0.032746367156505585, 0.006442922167479992, 0.026241613551974297, -0.04459343105554581, 0.017189370468258858, 0.021678391844034195, -0.030767735093832016, 0.012496300972998142, -0.01249011792242527, -0.03343889117240906, 0.008675066754221916, -0.004374632611870766, 0.01725120283663273, -0.012403552420437336, 0.000589338771533221, -0.0027190737891942263, -0.03336469084024429, 0.037420887500047684, 0.02332312986254692, -0.022234883159399033, -0.03071826882660389, 0.05028199777007103, 0.007364222779870033, 0.045830074697732925, -0.008390638045966625, 0.03623370826244354, -0.008297890424728394, -0.009423237293958664, 0.00545360567048192, -0.004281884524971247, 0.01096286065876484, -0.023743590340018272, -0.013355769217014313, -0.017214102670550346, 0.021121902391314507, -0.019168002530932426, 0.001663287985138595, -0.017881890758872032, 0.00982514675706625, -0.0018364182906225324, 0.017869524657726288, -0.02888803370296955, 0.020788008347153664, 0.002674245508387685, -0.006993229500949383, 0.039300587028265, 0.038929592818021774, -0.0061028446070849895, 0.028418108820915222, 0.01064133271574974, 0.04954001307487488, 0.0020945679862052202, 0.016385549679398537, -0.03512072563171387, -0.0049929553642869, 0.03519492596387863, 0.008705982938408852, 0.008934762328863144, -0.021764958277344704, 0.013145539909601212, -0.014184322208166122, -0.021653659641742706, 0.03299369663000107, 0.031089263036847115, -0.043703045696020126, 0.0014631060184910893, -0.008971861563622952, 0.013528900220990181, 0.02326129749417305, 0.007512620184570551, -0.006065745372325182, 0.026909401640295982, 0.046448398381471634, -0.010783547535538673, 0.006745900027453899, 0.04894642159342766, -0.025375962257385254, -0.01222423929721117, 0.024522677063941956, 0.0023187098558992147, 0.010901028290390968, 0.04770977795124054, 0.003864516504108906, 0.046300001442432404, -0.02009548619389534, 0.027873985469341278, 0.013528900220990181, 0.02033044956624508, 0.03625844046473503, 0.0068324655294418335, 0.03056987188756466, -0.02831917814910412, 0.008823464624583721, 0.006198684684932232, -0.022506944835186005, 0.0025196648202836514, 0.01362783182412386, 0.027799786999821663, -0.016373183578252792, -0.0015844517620280385, 0.019786324352025986, -0.015111805871129036, -0.004247876815497875, 0.02258114330470562, -0.01550753228366375, -0.04835283011198044, -0.019613195210695267, -0.04315892234444618, -0.024423744529485703, 0.015816694125533104, -0.009596367366611958, 0.014196688309311867, 0.01286111120134592, 0.006956129800528288, -0.018413648009300232, 0.008260790258646011, 0.00858231820166111, 0.008069111034274101, -0.004578679334372282, 0.03299369663000107, 0.0015666750259697437, -0.015173638239502907, 0.0023635383695364, 0.023360230028629303, 0.005580361932516098, -0.007951629348099232, -0.0031039798632264137, -0.01490157563239336, -0.023286031559109688, 0.039350055158138275, -0.015260202810168266, -0.004757992923259735, -0.01161828264594078, 0.041625481098890305, -0.029630022123456, 0.019279301166534424, -0.005014596972614527, 0.03670363128185272, -0.018327083438634872, -0.00041930004954338074, -0.01746143214404583, 0.044321369379758835, -0.060892414301633835, 0.05619316175580025, 0.033809881657361984, -0.010585684329271317, -0.005484521854668856, 0.015680663287639618, -0.0013757678680121899, -0.0068324655294418335, 0.010443469509482384, -0.01582906022667885, -0.011457518674433231, -0.02636527828872204, 0.037371423095464706, -0.015309669077396393, -0.06113974377512932, -0.008297890424728394, 0.021777324378490448, -0.00798872858285904, -0.015272569842636585, -0.02349626086652279, 0.026241613551974297, 0.00659131957218051, 0.006993229500949383, -0.0024423745926469564, -0.026711538434028625, -0.034848663955926895, -0.016731811687350273, -0.004591045901179314, 0.0023248931393027306, 0.01383806113153696, -0.02272954024374485, -0.018302351236343384, -0.01671944558620453, -0.011055609211325645, -0.0028133681043982506, 0.027033066377043724, -0.015730127692222595, -0.0010859292233362794, -0.005382498726248741, -0.040537234395742416, 0.03732195496559143, -0.006294524762779474, 0.006492387969046831, 0.015791960060596466, -0.005713301245123148, -0.010690798982977867, 0.02891276776790619, 0.0014592414954677224, 0.014258520677685738, 0.013590731658041477, 0.007259108126163483, -0.008161858655512333, 0.01563119702041149, -0.013974091969430447, 0.020194418728351593, -0.023990919813513756, 0.01361546479165554, -0.001555081456899643, -0.022098852321505547, 0.02098587155342102, -0.030025748535990715, 0.0031302585266530514, -0.010035376995801926, 0.03131185844540596, -0.004383907653391361, -0.011834695935249329, 0.004819825291633606, -0.0013479434419423342, -0.013664931058883667, 0.003651195205748081, -0.004631236661225557, 0.014740812592208385, -0.00035669488715939224, -0.007370406296104193, -0.016002191230654716, 0.0020574687514454126, 0.004621962085366249, -0.032424841076135635, -0.01037545409053564, -0.041303955018520355, -0.02648894302546978, -0.018957773223519325, 0.005252650938928127, -0.0047456263564527035, 0.023805422708392143, -0.03215277940034866, -0.014258520677685738, -0.0031148004345595837, 0.005283567123115063, 0.00809384323656559, -1.9696957679116167e-05, -0.010053926147520542, -0.03007521480321884, -0.00559272849932313, -0.007605368737131357, 0.05767713859677315, 0.008403005078434944, -0.008075294084846973, -0.0025706763844937086, 0.037866078317165375, -0.003164266236126423, 0.007611551787704229, -0.034255076199769974, -0.017498530447483063, 0.015433333814144135, -0.02903643250465393, 0.029456891119480133, 0.019613195210695267, -0.02094877138733864, -0.00432207528501749, -0.006943763233721256, 0.00822987500578165, 0.004343716893345118, 0.002657241653650999, 0.013232104480266571, 0.016113488003611565, -0.03267217054963112, 0.011686298064887524, -0.008279340341687202, 0.01362783182412386, 0.005629827734082937, -0.005246467888355255, 0.016348451375961304, -0.009818963706493378, 0.022853204980492592, -0.015606463886797428, -0.008112393319606781, -0.006306891329586506, 0.002099205506965518, 0.01882174238562584, -0.017424331977963448, 0.005537079181522131, 0.024757638573646545, 0.017560362815856934, 0.03296896442770958, -0.027948183938860893, -0.012725080363452435, -0.007215825375169516, 0.0063037993386387825, 0.0005622871685773134, 0.009324305690824986, -0.022247249260544777, -0.0016030014958232641, 0.020973505452275276, 0.00437154108658433, 0.014023558236658573, 0.010666065849363804, -0.0051908185705542564, -0.019279301166534424, -0.007939263246953487, 0.001921437680721283, -0.005626736208796501, -0.00260777585208416, -0.023372596129775047, 0.019291667267680168, -0.02098587155342102, 0.01760982908308506, -0.018747543916106224, 0.008390638045966625, 0.011030876077711582, 6.212210428202525e-05, 0.03056987188756466, -0.0036882946733385324, -0.006260517053306103, -0.015420966781675816, -0.021616559475660324, -0.029259027913212776, -0.010239423252642155, 0.029135363176465034, 0.00853903591632843, 0.008885296992957592, -0.022890305146574974, 0.013343403115868568, -0.0036202792543917894, -0.018809374421834946, -0.006121394224464893, -0.03232590854167938, 0.02601901814341545, 0.02723092958331108, -0.014740812592208385, -0.01459241472184658, 0.017622195184230804, -0.004875474143773317, 0.01867334358394146, 0.00532066635787487, 0.007815598510205746, 0.015099439769983292, 0.006634602323174477, -0.04093296080827713, 0.004424098413437605, -0.00925010722130537, -0.03235064074397087, -0.01271271426230669, 0.005932806059718132, -0.01422142144292593, 0.030001014471054077, -0.02151762880384922, -0.040388837456703186, -0.0029385783709585667, 0.03225170820951462, 0.0046374197117984295, 0.005333032924681902, -0.0414276197552681, -0.009305755607783794, 0.03301842883229256, -0.009831330738961697, -0.00010791662498377264, 0.026835203170776367, -0.006640785373747349, -0.009577818214893341, -0.045508548617362976, 0.01146988570690155, -0.0187970083206892, -0.00703032873570919, 0.022853204980492592, -0.007382772397249937, 0.0012683343375101686, 0.02237091399729252, 0.017646929249167442, -0.006739716976881027, 0.034255076199769974, -0.02143106423318386, 0.013590731658041477, -0.010610416531562805, -0.03917692229151726, 0.015408600680530071, 0.00019457841699477285, 0.01182232890278101, 0.012477750889956951, 0.0237930566072464, -0.06603685766458511, -0.005843149032443762, 0.029902083799242973, 0.04068563133478165, -0.025499626994132996, 0.012112940661609173, 0.01106797531247139, -0.0023820879869163036, -0.0025289396289736032, 0.006987045984715223, 0.0017792234430089593, -0.03388408198952675, 0.012589049525558949, 0.030223611742258072, 0.008811097592115402, -0.038756463676691055, 0.014777911826968193, -0.03361202031373978, 0.02509153261780739, -0.005413414910435677, 0.0450386218726635, -0.01710280403494835, 0.010833012871444225, 0.031707584857940674, -0.004464289639145136, -0.037396155297756195, -0.0029973189812153578, 0.017201736569404602, -0.0012103666085749865, 0.014691346324980259, 0.0005692432750947773, -0.014728445559740067, 0.01022705715149641, -0.017597462981939316, -0.02003365382552147, -0.016533948481082916, -0.01618768647313118, 0.015260202810168266, -0.022012285888195038, 0.005008413456380367, 0.0031318042892962694, 0.009732398204505444, 0.023780688643455505, -0.049886271357536316, -0.01710280403494835, 0.008242241106927395, 0.039968375116586685, 0.00933667179197073, -0.029580555856227875, -0.027354594320058823, -0.01958846114575863, -0.0029741320759058, -0.00383669207803905, 0.03536805510520935, -0.02041701413691044, -0.0015334401978179812, -0.009528351947665215, 0.0021409422624856234, -0.044494498521089554, 0.033488355576992035, -0.018413648009300232, -0.02154236100614071, 0.018401281908154488, 0.019427698105573654, 0.009311939589679241, -0.027502991259098053, 0.0030174145940691233, -0.0028303719591349363, 0.015099439769983292, -0.012125307694077492, -0.022531677037477493, 0.006136852316558361, -0.012057292275130749, 0.013664931058883667, 0.0063037993386387825, -0.006161585450172424, 0.015989823266863823, 0.006245058961212635, 0.009497435763478279, 0.014505849219858646, -0.02521519735455513, 0.0030591513495892286, -0.006393456365913153, -0.010727898217737675, -0.04897115379571915, -0.028492307290434837, 0.02213595062494278, 0.030891399830579758, 0.02181442268192768, -0.01135240402072668, -0.021295031532645226, 0.005425781477242708, 0.012063475325703621, 0.006418189033865929, -2.1768098577013006e-06, 0.033983014523983, -0.007951629348099232, -0.026563141494989395, 0.01049293577671051, -0.029605288058519363, -0.020528312772512436, 0.034873396158218384, 0.007259108126163483, -0.013565999455749989, 0.009806597605347633, -0.0037408520001918077, -0.00874308217316866, -0.008192774839699268, -0.01346706785261631, -0.007543536368757486, 0.01208820752799511, 0.02260587550699711, -0.01580432802438736, -0.0008602414163760841, -0.02876437082886696, -0.03598637878894806, -0.02831917814910412, -0.001737486687488854, -0.005710209719836712, 0.043282587081193924, 0.000993953668512404, 0.012193323113024235, -0.016410283744335175, 0.007611551787704229, -0.012075841426849365, -0.007419872097671032, -0.04573114216327667, 0.027453526854515076, 0.006492387969046831, -0.013652564026415348, 0.024040384218096733, -0.0026819745544344187, -0.011111258529126644, -0.016138222068548203, -0.003413141006603837, -0.006152310408651829, -0.016348451375961304, 0.004065471701323986, -0.017189370468258858, -0.029902083799242973, -0.009151175618171692, 0.00032152776839211583, -0.020367547869682312, 0.009546902030706406, 0.015680663287639618, -0.02370649017393589, 0.03564011678099632, 0.008464837446808815, -0.001110662124119699, 0.02797291800379753, -0.00224141962826252, -0.016830742359161377, -0.0068571981973946095, 0.014617147855460644, -0.0013850427931174636, 0.014357452280819416, -0.002915391232818365, 0.007710483390837908, 0.003465698566287756, 0.03086666762828827, 0.04308472201228142, 0.02891276776790619, 0.038632798939943314, 0.014703712426126003, -0.025116266682744026, -0.0331420935690403, -0.010202324017882347, 0.0034378739073872566, 0.023310763761401176, -0.016558680683374405, 0.0005035465001128614, 0.0019477163441479206, 0.021443430334329605, 0.011785229668021202, 0.009553085081279278, 0.0011694027343764901, -0.01167393196374178, 4.9900569138117135e-05, -0.015297302976250648, 0.03509599342942238, 0.026538409292697906, 0.0015612647403031588, -0.02219778299331665, 0.0007149355951696634, 0.0520380362868309, -0.0017714943969622254, -0.017894256860017776, -0.0015465795295313, -0.01414722204208374, 0.033958278596401215, -0.034081943333148956, 0.005107345059514046, 0.0039479900151491165, -0.027502991259098053, 0.022012285888195038, 0.02619214728474617, -0.011803779751062393, 0.03897906094789505, -0.04662152752280235, -0.015025240369141102, 0.00596990529447794, -0.003286384977400303, 0.009998277761042118, 0.01519837137311697, -0.021480528637766838, -0.01695440709590912, 0.03294423222541809, -0.015458066016435623, 0.0009661291260272264, -0.010628966614603996, 0.015148905105888844, 0.0240032859146595, 0.006118302699178457, -0.042837392538785934, 0.017572730779647827, 0.056341562420129776, 0.028418108820915222, 0.019229834899306297, 0.024572143331170082, 0.030644070357084274, -0.005775133613497019, -0.0027716313488781452, -0.003771768184378743, 0.04419770464301109, -0.01438218541443348, 0.010363087989389896, 0.01782005839049816, -0.010010643862187862, 0.006690251175314188, 0.02204938605427742, -0.013355769217014313, 0.010282705537974834, 0.00272989459335804, -0.02504206821322441, -0.0018920673755928874, 0.004689977504312992, 0.011135990731418133, 0.006993229500949383, -0.017795326188206673, 0.006894297432154417, -0.033958278596401215, -0.006906663998961449, 0.005833874456584454, -0.03099033236503601, 0.047190386801958084, 0.010332171805202961, -0.057133015245199203, 0.015816694125533104, -0.03744561970233917, 0.055451177060604095, -0.02281610667705536, -0.001610730541869998, -0.01701623946428299, 0.026216881349682808], [0.044926948845386505, -0.021137459203600883, 0.03523785248398781, 0.038808900862932205, -0.03544791415333748, 0.03831000253558159, -0.038178715854883194, -0.0073915463872253895, 0.024984214454889297, 0.007017374038696289, -0.005116972140967846, -0.014087263494729996, 0.04750020429491997, 0.03534288331866264, -0.02143942378461361, 0.019824573770165443, -0.00030647675157524645, 0.018958069384098053, -0.031115390360355377, 0.007949522696435452, 0.024997344240546227, 0.044270504266023636, 0.008940751664340496, -0.005878445692360401, -0.027202991768717766, -0.03891393169760704, 0.0053335982374846935, -0.03828374668955803, 0.07436184585094452, -0.0393865704536438, 0.040988292545080185, -0.02712421864271164, -0.022161509841680527, -0.021741386502981186, -0.015242602676153183, -0.030984101817011833, -0.01877426542341709, -0.022568505257368088, 0.014822479337453842, 0.010424312204122543, -0.020481016486883163, -0.024314643815159798, -0.015872787684202194, 0.02864716574549675, -0.011737197637557983, 0.024354029446840286, 0.023671329021453857, -0.045583389699459076, 0.013575238175690174, 0.025220533832907677, 0.08764825016260147, 0.07746025174856186, -0.005852187983691692, -0.013667140156030655, -0.001944711897522211, 0.00785105675458908, 0.01541327778249979, 0.04941701889038086, 0.023671329021453857, 0.010962595231831074, -0.04521578177809715, -0.02300175651907921, -0.02514176070690155, 0.02490544132888317, 0.0033051897771656513, -0.008310566656291485, -0.007831363007426262, 0.027911949902772903, -0.018642976880073547, -0.008264615200459957, -0.012820328585803509, 0.03284839913249016, 0.06968796998262405, -0.05876476317644119, -0.05687420815229416, 0.015190087258815765, 0.012643089517951012, -0.053276900202035904, -0.008218664675951004, 0.028568392619490623, -0.05009971931576729, -0.0028785017784684896, -0.010877258144319057, -0.008573143742978573, -0.012170450761914253, 0.01751389540731907, -0.05209530517458916, -0.022463474422693253, -0.04476940259337425, -0.03544791415333748, -0.06280845403671265, 0.008967009373009205, -0.035290367901325226, 0.04899689555168152, 0.016463587060570717, 0.037968654185533524, 0.023487525060772896, -0.027071703225374222, -0.008120197802782059, 0.042091116309165955, -0.01685745269060135, -0.027806919068098068, -0.006292004603892565, -0.0001679057750152424, 0.015583952888846397, -0.014244809746742249, -0.024393416941165924, 0.050651129335165024, -0.028725938871502876, 0.012065418995916843, 0.04860302805900574, -0.041644733399152756, -0.00874381884932518, 0.05813457816839218, -0.03781110793352127, 0.027833176776766777, -0.006239489186555147, -0.026769738644361496, 0.045373328030109406, -0.005881727673113346, -0.03429257497191429, 0.0010429235408082604, 0.060917895287275314, -0.05661163106560707, -0.006393753457814455, -0.047999098896980286, 0.004893781617283821, -0.039675407111644745, -0.02930360846221447, -0.004447400104254484, 0.030931586399674416, -0.06322857737541199, 0.09657587110996246, -0.04395541176199913, 0.0231986902654171, 0.004985683597624302, 4.7310040827142075e-05, -0.054143406450748444, -0.006246053613722324, 0.004772339481860399, 0.028778454288840294, 0.012485543265938759, 0.02536495216190815, 0.03636693209409714, -0.05009971931576729, 0.006265746895223856, 0.06800747662782669, 0.002348424168303609, 0.001954558538272977, -0.0025338693521916866, -0.009807256050407887, -0.010805048979818821, -0.006242771632969379, 0.003899270435795188, 0.04067320004105568, 0.010739404708147049, -0.0005768491537310183, 0.059342432767152786, 0.023251205682754517, -0.04511075094342232, -0.05440598353743553, -0.023343106731772423, -0.013759042136371136, -0.054300952702760696, -0.006840134505182505, 0.004145436454564333, 0.005609304178506136, 0.008829155936837196, -0.04792032763361931, -0.023224947974085808, -0.06627447158098221, -0.04369283467531204, -0.03187686577439308, -0.04335148632526398, 0.008363082073628902, -0.04660744220018387, 0.07856307923793793, 0.004348933696746826, -0.03479146957397461, 0.03450263664126396, 0.004115896765142679, -0.005517402198165655, -0.03471269831061363, -0.012708733789622784, -0.04287884756922722, 0.046476151794195175, 0.002842397429049015, 0.027911949902772903, -0.043220195919275284, 0.02209586650133133, 0.004723106045275927, -0.002835833001881838, -0.012124499306082726, 0.019719542935490608, 0.013903459534049034, 0.00660709710791707, 0.004611510783433914, -0.011166092939674854, 0.04566216468811035, -0.0019906628876924515, -0.009380567818880081, -0.04432301968336105, 0.019063100218772888, 0.000342375977197662, -0.023566298186779022, -0.017828987911343575, -0.011120141483843327, 0.02363194152712822, 0.047368913888931274, -0.03957037627696991, 0.024104580283164978, -0.01092320866882801, -0.0003499660815577954, 0.02166261337697506, 0.00273736659437418, 0.02996005117893219, 0.015098185278475285, -0.004191387444734573, 0.023920776322484016, 0.007043631747364998, -0.06890024244785309, -0.02646777592599392, -0.01574149914085865, -0.006318262312561274, -0.020861754193902016, 0.016069721430540085, 0.015216344967484474, -0.003538226941600442, 0.0023566298186779022, -0.019548868760466576, -0.015912175178527832, 0.011638731695711613, -0.0214131660759449, -0.00961032323539257, 0.00710927601903677, 0.0023090376053005457, 0.008395903743803501, -0.030563978478312492, 0.02888348512351513, 0.007122404873371124, 0.047368913888931274, 0.0282007846981287, -0.008021731860935688, -0.007365288678556681, -0.00678105466067791, -0.0032231344375759363, -0.025916364043951035, -0.05634905397891998, 0.0489443801343441, -0.027833176776766777, -0.004496633540838957, -0.04390289634466171, 0.073416568338871, -0.03741724044084549, -0.0033839629031717777, 0.011435233987867832, -0.009019524790346622, -0.03019637055695057, 0.0534081906080246, -0.04508449509739876, -0.03628816083073616, 0.042537495493888855, 0.025220533832907677, -0.009341181255877018, -0.035526685416698456, -0.013010697439312935, 0.01882678084075451, -0.003922245930880308, -0.04214363172650337, 0.04159221798181534, -0.05876476317644119, 0.014625546522438526, 0.010982288978993893, -0.012216401286423206, -0.03547416999936104, 0.0650666132569313, -0.004224209580570459, -0.026795996353030205, -0.05482610687613487, 0.03211318328976631, -0.029172319918870926, -0.018511688336730003, -0.027386795729398727, -0.053670767694711685, -0.006659612525254488, 0.03450263664126396, -0.025233663618564606, 0.01599094830453396, -0.011336768046021461, -0.010693454183638096, 0.037942394614219666, 0.002235187916085124, 0.024419674649834633, -0.005757003556936979, 0.03082655556499958, -0.007404675241559744, -0.03786362335085869, -0.014376098290085793, -0.038598839193582535, -0.008796334266662598, -0.0010593346087262034, 0.06837508827447891, 0.018104692921042442, -0.05222659185528755, -0.03363613039255142, 0.017592668533325195, -0.029172319918870926, 0.021071815863251686, 0.0002091385831590742, 0.01859046146273613, -0.006620225962251425, 0.01948322355747223, 0.004069945774972439, -0.038178715854883194, -0.017579538747668266, 0.004706695210188627, -0.04350903257727623, 0.006977987475693226, 0.02621832676231861, -0.04518952593207359, 0.03720717877149582, -0.007897007279098034, 0.0376010462641716, -0.05619150772690773, -0.00886854249984026, -0.008494370616972446, 0.05482610687613487, 0.0778803825378418, -0.05797703191637993, -0.029014773666858673, -0.07157852500677109, 0.022844210267066956, 0.08507499098777771, 0.002458378439769149, 0.005930961109697819, -0.023776359856128693, 0.011395847424864769, -0.01377217099070549, -0.021360650658607483, 0.021150588989257812, 0.023566298186779022, 0.012078547850251198, -0.020060893148183823, 0.01335861161351204, -0.011737197637557983, 0.012899101711809635, -0.031167905777692795, 0.04839296638965607, -0.01943070814013481, 0.024393416941165924, -0.0003321190597489476, 0.015111314132809639, -0.03347858414053917, 0.00021724155521951616, -0.03043268993496895, -0.04658118262887001, 0.034240059554576874, -0.004030559211969376, 0.008671609684824944, 0.003306830767542124, 0.04353528842329979, 0.010745969600975513, 0.044060442596673965, 0.07373166084289551, 0.07362663000822067, 0.012406770139932632, -0.010457134805619717, 0.01992960460484028, 0.0056979237124323845, -0.006971423048526049, 0.019837703555822372, -0.00399773707613349, 0.032034412026405334, -0.018695492297410965, -0.0790882334113121, -0.02248973213136196, 0.018485430628061295, -0.0017412146553397179, 0.02817452698945999, -0.027859434485435486, -0.004171694163233042, -0.024130837991833687, -0.01878739334642887, 0.010365232825279236, 0.018984327092766762, 0.02318556047976017, -0.04069945588707924, -0.013194501399993896, -0.015636468306183815, -0.006167280487716198, -0.02733428031206131, -0.02097991295158863, -0.03544791415333748, 0.016883710399270058, -0.04810412973165512, 0.020375985652208328, 0.021163716912269592, 0.018761135637760162, 0.02424899861216545, -0.05855470150709152, -0.014205423183739185, -0.04020056128501892, 0.007568785920739174, 0.008258051238954067, 0.0024189918767660856, -0.021347520872950554, -0.008231793530285358, -0.031141648069024086, -0.01572837121784687, 0.0029146061278879642, 0.005126818548887968, -0.021754516288638115, 0.04490068927407265, 0.0029211705550551414, 0.024354029446840286, -0.024367159232497215, -0.02489231340587139, 0.05025726556777954, -0.0005522325518541038, -0.04545210301876068, 0.030117597430944443, 0.006840134505182505, -0.0249185711145401, -0.03941283002495766, -0.04988965764641762, -0.01225578784942627, 0.011750326491892338, -0.031850606203079224, 0.026835383847355843, -0.1026676595211029, 0.013411127030849457, 0.01883990876376629, 0.03649822250008583, 0.015190087258815765, -0.026822254061698914, -0.04660744220018387, -0.002844038652256131, -0.005553506314754486, -0.01389033067971468, -0.00041376412264071405, 0.009236150421202183, -0.01617475226521492, 0.030879070982336998, 0.007148662582039833, -0.018327884376049042, -0.04345651715993881, -0.012951617129147053, 0.020927397534251213, -0.005947371944785118, 0.005487862043082714, -0.008002038113772869, 0.01148774940520525, -0.002804652089253068, -0.010299588553607464, -0.008015166968107224, 0.0011085678124800324, 0.01026676595211029, -0.06559176743030548, -0.021084943786263466, -0.004017430357635021, 0.013056647963821888, 0.0755171850323677, 0.023513782769441605, 0.03712840750813484, 0.02423587068915367, -0.0032132877968251705, -0.030458947643637657, 0.021255619823932648, -0.015925303101539612, -0.039281539618968964, 0.0092886658385396, -0.027413053438067436, -0.04902315139770508, -0.03563171625137329, 0.06060280278325081, 0.00046689496957696974, 0.023789487779140472, -0.039439085870981216, -0.022857340052723885, -0.02315930277109146, -0.005930961109697819, 0.024354029446840286, -0.03547416999936104, -0.022463474422693253, 0.07751277089118958, 0.03150925785303116, 0.039465345442295074, -0.010227379389107227, -0.06569679826498032, -0.014730577357113361, -0.05364450812339783, 0.006564428564161062, 0.0064397044479846954, -0.014678061939775944, 0.03216569870710373, -0.008612530305981636, -0.05138634517788887, 0.01148774940520525, 0.017776472494006157, 0.023540040478110313, 0.01750076562166214, -0.005911267828196287, 0.00229919096454978, 0.018419785425066948, 0.00896044448018074, 0.02229279838502407, -0.011435233987867832, -0.02096678502857685, -0.03279588371515274, -0.02757059969007969, 0.012426462955772877, -0.012505236081779003, 0.008402468636631966, -0.0028473208658397198, -0.02687476947903633, -0.03781110793352127, 0.05876476317644119, -0.003085281467065215, -0.009695661254227161, 0.011888179928064346, 0.006075378507375717, -0.0073915463872253895, 0.025640657171607018, -0.014691190794110298, 0.013397998176515102, 0.018642976880073547, -0.007575350347906351, -0.00273736659437418, -0.03295342996716499, 0.00010677453246898949, -0.02183328941464424, -0.022043351083993912, -0.058502186089754105, 0.02276543714106083, -0.013470207341015339, -0.01923377439379692, -0.023316849023103714, 0.03757478669285774, 0.013837815262377262, -0.026966672390699387, 0.04353528842329979, 0.032664597034454346, 0.00660709710791707, 0.01421855203807354, 0.01746137998998165, 0.0064397044479846954, 0.027439311146736145, 0.001682134810835123, 0.007595043629407883, 0.033347297459840775, 0.00596706522628665, 0.005743874702602625, -0.0371546633541584, -0.03450263664126396, 0.013864072971045971, 0.02867342345416546, -0.00018965044000651687, -0.059815071523189545, 0.005067738704383373, -0.019745800644159317, -0.006531606428325176, 0.022594762966036797, -0.009111426770687103, -0.0152951180934906, 0.01944383792579174, 0.011756891384720802, 0.0046476153656840324, 0.0136540113016963, -0.029461154714226723, 0.013995361514389515, -0.025942621752619743, -0.004345651715993881, 0.01576775684952736, -0.0847598984837532, 0.039202768355607986, 0.004345651715993881, 0.003303548553958535, -0.020861754193902016, 0.018235981464385986, 0.02796446532011032, 0.017763342708349228, 0.027202991768717766, -0.020402243360877037, 0.02932986617088318, -0.018761135637760162, 0.0033938095439225435, 0.0029933792538940907, -0.034476377069950104, -0.018958069384098053, -0.03353109955787659, 0.008225228637456894, 0.024997344240546227, 0.008244922384619713, 0.008231793530285358, 0.002908041700720787, 0.052567943930625916, 0.0011865204432979226, -0.009334617294371128, -0.017120029777288437, -0.005527248606085777, -0.008153020404279232, -0.024603478610515594, 0.011212043464183807, 0.01433671172708273, -0.04576719552278519, 0.0024009395856410265, 0.016739292070269585, 0.0007885519880801439, -0.029644958674907684, 0.03754853084683418, 0.010161735117435455, 0.021990835666656494, -0.010791920125484467, -0.04634486511349678, -0.022003963589668274, 0.0031197445932775736, -0.024419674649834633, -0.024603478610515594, -0.015308246947824955, 0.019785188138484955, -0.019063100218772888, 0.010903515852987766, -0.012314868159592152, -0.016949353739619255, -0.025220533832907677, -0.008061118423938751, -0.0011257994920015335, -0.039465345442295074, -0.008684738539159298, -0.00011856998753501102, -0.006479091010987759, -0.011330203153192997, -0.03652447834610939, -0.017238188534975052, -0.0185773316770792, 0.0037975218147039413, 0.04216988757252693, 0.00038648073677904904, -0.002712750108912587, -0.004765775054693222, 0.028725938871502876, -0.03513282164931297, 0.03542165458202362, -0.01970641501247883, 0.0031476435251533985, 0.038362517952919006, -0.008875107392668724, 0.013719655573368073, 0.01856420375406742, 0.02099304273724556, 0.011829099617898464, 0.011770020239055157, -0.007595043629407883, 0.029828762635588646, 0.01922064647078514, 0.016568617895245552, -0.013260145671665668, 0.011619037948548794, 0.01094290241599083, -0.002908041700720787, -0.020625434815883636, -0.034187544137239456, -0.027649372816085815, 0.017343219369649887, 0.028122011572122574, -0.016345426440238953, 0.03628816083073616, -0.0314829982817173, 0.0185773316770792, -0.014980025589466095, -0.03143048286437988, -0.028332073241472244, 0.002425556303933263, -0.03634067624807358, -0.005835776682943106, 0.00047510050353594124, -0.02189893275499344, 0.017592668533325195, -0.058502186089754105, 0.00580295454710722, -0.005612586159259081, -0.027675630524754524, -0.010640938766300678, -0.00699111633002758, -0.006134458351880312, -0.010686889290809631, 0.04705382138490677, -0.021596970036625862, -0.01767144165933132, 0.00796921644359827, 0.019719542935490608, 0.02494482882320881, 0.00492003932595253, 0.024655994027853012, -0.0161878801882267, 0.05393334478139877, 0.03557920083403587, -0.009662838652729988, -0.011461491696536541, -0.05792451649904251, -0.01246584951877594, 0.0010166658321395516, 0.02757059969007969, -0.04153970256447792, -0.019548868760466576, -0.010575294494628906, -0.01944383792579174, -0.014481129124760628, 0.02948741242289543, 0.017842115834355354, 0.006912343204021454, -0.0476052351295948, -0.01941758021712303, 0.012623395770788193, -0.009433083236217499, -0.01553143747150898, 0.007739461027085781, 0.0006223898963071406, -0.017185673117637634, -0.021373778581619263, -0.016739292070269585, 0.009183635003864765, -0.03592055290937424, 0.0033544229809194803, 0.02360568381845951, -0.00584890553727746, -0.025443725287914276, 0.030012566596269608, 0.00404368806630373, -0.0349227599799633, 0.04308890923857689, -0.010745969600975513, 0.01368026901036501, -0.008028295822441578, -0.009098297916352749, 0.007135533727705479, -0.03823123127222061, -0.04090951755642891, -0.008999831043183804, -0.011494314298033714, 0.009511856362223625, -0.04046313837170601, 0.00415200088173151, -0.015780886635184288, -0.0025863847695291042, -0.026139553636312485, -0.005218720529228449, 0.0463973805308342, -0.023014886304736137, -0.011166092939674854, -0.026966672390699387, 0.010962595231831074, -0.026178941130638123, -0.014349840581417084, -0.014087263494729996, 0.014730577357113361, -0.0031295912340283394, 0.03571049124002457, 0.0004098665085621178, -0.006380624603480101, -0.004427706822752953, 0.008907929062843323, -0.01103480439633131, 0.021505067124962807, -0.006689152680337429, 0.012262352742254734, -0.044743143022060394, 0.023736972361803055, 0.006177127361297607, 0.005281082820147276, -0.01475683506578207, -0.015820272266864777, 0.028148269280791283, -0.00017077771190088242, 0.03366238996386528, 0.009249279275536537, -0.021990835666656494, -0.009006395936012268, 0.0018150644609704614, -0.02539120987057686, -0.0015697189373895526, -0.023041144013404846, -0.008527192287147045, 0.021544454619288445, 0.022253412753343582, -0.03166680410504341, 0.015675855800509453, 0.017133157700300217, 0.020691078156232834, -0.02255537547171116, -0.045950997620821, -0.02227967046201229, 0.007089582737535238, -0.016660518944263458, 0.0038762949407100677, -0.027675630524754524, 0.04345651715993881, -0.045583389699459076, -0.01005670428276062, -0.0007384981727227569, -0.024997344240546227, -0.0367082841694355, 0.020008377730846405, -0.01659487560391426, 0.07992848008871078, 0.01160590909421444, -0.013109163381159306, 0.006984551902860403, 0.0035808957181870937, -0.005504273343831301, -0.020481016486883163, 0.0340299978852272, 0.007142098154872656, 0.0402793325483799, -0.03255956619977951, 0.027071703225374222, -0.009754740633070469, -0.02142629399895668, 0.015426406636834145, -0.017185673117637634, -0.00215805578045547, -0.03166680410504341, -0.018524816259741783, -0.008244922384619713, 0.0034102206118404865, -0.005986758507788181, 0.0008459907257929444, 0.02911980450153351, 0.001632080995477736, -0.03481772914528847, -0.00875038281083107, -0.01725131832063198, 0.00557648204267025, -0.002020202809944749, 0.011875051073729992, -0.012209837324917316, -0.01377217099070549, 0.008251486346125603, 0.020691078156232834, 0.0037482886109501123, 0.035316623747348785, -0.021163716912269592, -0.04038436338305473, -0.015281989239156246, -0.02342187985777855, 0.02251598984003067, -0.010877258144319057, 0.003093486884608865, -0.012006339617073536, 0.02691415697336197, 0.015229473821818829, -0.01324045192450285, -0.015190087258815765, -0.005625715013593435, 0.00984664261341095, -0.011494314298033714, 0.040121786296367645, 0.0033675518352538347, 0.033110976219177246, -0.00972848292440176, -0.013174807652831078, -0.005415653344243765, 0.018249111250042915, -0.018748007714748383, 0.0020792826544493437, -0.03342606872320175, 0.03526410833001137, -0.022817952558398247, 0.02841084636747837, -0.0005468989256769419, 0.026336487382650375, -0.02799072302877903, 0.009229586459696293, 0.003159131156280637, -0.040751971304416656, -0.0073587242513895035, 0.015570824034512043, 0.0092886658385396, 0.05159640684723854, -0.011323639191687107, -0.006495501846075058, 0.02996005117893219, 0.03339981287717819, 0.023907648399472237, 0.02867342345416546, -0.03473895415663719, -0.017579538747668266, 0.05096622183918953, 0.018472300842404366, 0.01258400920778513, 0.010319281369447708, 0.014297325164079666, 0.03450263664126396, 0.0012726786080747843, 0.04151344671845436, 0.00895388051867485, 0.002085847081616521, 0.0041979518719017506, -0.0152951180934906, 0.04437553510069847, -0.03413502871990204, 0.007365288678556681, 0.005747157149016857, -0.004683719482272863, -0.037706077098846436, -0.010726275853812695, 0.0035973067861050367, 0.007562221493571997, 0.023500652983784676, -0.03219195827841759, 0.027255507186055183, 0.0058915745466947556, 0.029146062210202217, -0.052384138107299805, 0.01616162247955799, 0.032690852880477905, -0.024550963193178177, 0.003676079912111163, 0.006035991944372654, -0.010391490533947945, 0.004391602706164122, 0.0003220672660972923, -0.0051399474032223225, -0.003735159756615758, -0.004936450161039829, 0.003106615738943219, -0.04159221798181534, 0.045373328030109406, 0.027439311146736145, -0.016713034361600876, -0.024419674649834633, 0.015255731530487537, 0.018905553966760635, 0.030458947643637657, -0.013667140156030655, -0.0006269029108807445, -0.0022302644792944193, -0.019982120022177696, -0.004319394007325172, -0.010004188865423203, -0.010023882612586021, 0.007739461027085781, -0.007903572171926498, -0.015544566325843334, 0.016568617895245552, 0.010608116164803505, 0.00020616408437490463, -0.025273049250245094, 0.009991060011088848, -0.008783205412328243, 0.02778066135942936, -0.017999662086367607, 0.02841084636747837, -0.013759042136371136, -0.027833176776766777, 0.03544791415333748, 0.03933405503630638, 0.0038204973097890615, 0.0267040953040123, -0.025640657171607018, 0.044926948845386505, -0.02448531799018383, 0.007503141649067402, -0.027465568855404854, 0.013969103805720806, 0.021767644211649895, 0.005875163245946169, 0.021780773997306824, 0.006328109186142683, 0.02271292172372341, -0.035500429570674896, -0.04132964089512825, 0.04067320004105568, 0.03040643222630024, -0.019575126469135284, 0.006584121845662594, 0.03972792252898216, -0.002844038652256131, 0.030275143682956696, 0.007214306853711605, -0.014468000270426273, 0.03799491003155708, 0.04600351303815842, -0.031141648069024086, -0.015649598091840744, 0.018944939598441124, -0.004634486511349678, -0.025089245289564133, 0.035763006657361984, -0.007306208834052086, 0.026559676975011826, 0.04508449509739876, 0.01813095062971115, 0.030222628265619278, 0.003101692534983158, 0.025312436744570732, -0.0027357256039977074, 0.008579707704484463, 0.03725969418883324, 0.03439760580658913, 0.02778066135942936, -0.015859659761190414, 0.01637168414890766, 0.003029483836144209, -0.020152796059846878, -0.0030869224574416876, 0.023789487779140472, 0.01901058480143547, -0.038415033370256424, 0.0003713004698511213, 0.03951786085963249, 0.014415484853088856, -0.008579707704484463, 0.0037154664751142263, -0.013627753593027592, -0.04981088265776634, -0.01321419421583414, -0.022660406306385994, -0.03127293661236763, -0.0002857577637769282, -0.0053368802182376385, 0.016476714983582497, 0.012636524625122547, -0.004933168180286884, 0.01016830001026392, 0.006226360332220793, 0.01255118753761053, 0.00940682552754879, 0.007936393842101097, 0.023500652983784676, -0.010719711892306805, -0.006564428564161062, -0.015216344967484474, 0.01681806519627571, 0.0016575182089582086, 0.010549036785960197, -0.0067679258063435555, -0.03917650878429413, 0.000591619114857167, 0.04781529679894447, -0.014179165475070477, -0.01576775684952736, -0.015570824034512043, 0.06144304946064949, -0.011001981794834137, 0.0041651297360658646, 0.010037011466920376, 0.020953655242919922, -0.021334392949938774, 0.004030559211969376, 0.003718748688697815, 0.04156596213579178, -0.0437190942466259, 0.028936000540852547, 0.03405625373125076, -0.02686164155602455, -0.02888348512351513, -0.016699906438589096, -0.0005399242509156466, 0.008553449995815754, -0.005504273343831301, -0.02671722322702408, -0.005743874702602625, -0.011015110649168491, 0.0019840984605252743, 0.0003434016543906182, -0.05897482484579086, 0.0214131660759449, 0.029172319918870926, 0.018669234588742256, -0.002514176070690155, -0.01987708918750286, 0.02448531799018383, 0.020586047321558, 0.019758930429816246, 0.021347520872950554, -0.06391127407550812, -0.01660800352692604, -0.03174557536840439, 0.012511800974607468, -0.016279783099889755, 0.015400148928165436, -0.008967009373009205, -0.03014385513961315, -0.01599094830453396, -0.021715128794312477, 0.005478015635162592, 0.03754853084683418, -0.018944939598441124, 0.021465681493282318, -0.014783092774450779, -0.017868373543024063, 0.039885468780994415, -0.007220871280878782, -0.009807256050407887, 0.02951367013156414, -0.008376210927963257, -0.0034200672525912523, 0.03250705078244209, -0.008015166968107224, 0.024524705484509468, 0.005898138973861933, -0.007739461027085781, -0.011756891384720802, -0.0021055403631180525, -0.0024944827891886234, 0.025745688006281853, -0.037285953760147095, 0.0119013087823987, 0.01463867537677288, -0.026940414682030678, 0.022857340052723885, -0.03568423166871071, 0.008061118423938751, 0.0350540466606617, 0.01771082729101181, -0.017382606863975525, 0.011087319813668728, -0.0022204178385436535, 0.0050414809957146645, -0.021754516288638115, -0.0005235131829977036, -0.02364507131278515, 0.004083074629306793, 0.01662113331258297, -0.01368026901036501, -0.0129056666046381, 0.02340875193476677, -0.009741611778736115, -0.02007402293384075, -0.001364580588415265, -0.010253637097775936, -0.008284308947622776, -0.02096678502857685, 0.02846336178481579, 0.012400205247104168, 0.025312436744570732, -0.04532081261277199, -0.00715522700920701, -0.021058686077594757, 0.008855413645505905, -0.018905553966760635, -0.007713203318417072, 0.011231737211346626, -0.055193714797496796, 0.022817952558398247, 0.008172713220119476, 0.07604233920574188, 0.00993854459375143, -0.010424312204122543, -0.01621413789689541, 0.051491376012563705, 0.003488993737846613, 0.020861754193902016, -0.030669009312987328, -0.010240508243441582, 0.03347858414053917, -0.008921057917177677, 0.023789487779140472, 0.025089245289564133, -0.0299863088876009, -0.0008550168131478131, -0.02293611317873001, 0.016568617895245552, 0.007916701026260853, 0.0008919417159631848, 0.01817033812403679, 0.015846529975533485, -0.020389115437865257, -0.005681512877345085, -0.01368026901036501, 0.017343219369649887, -0.008153020404279232, 0.012511800974607468, 0.006137740798294544, -0.0077854120172560215, 0.0564015693962574, -0.024800410494208336, -0.005159640684723854, 0.007115840446203947, 0.011061062105000019, 0.020953655242919922, -0.0074243685230612755, 0.009249279275536537, 0.004496633540838957, 0.004027276765555143, 0.0179077610373497, -0.010128913447260857, 0.02121623232960701, -0.006853263359516859, -0.01814408041536808, 0.010089526884257793, 0.0023090376053005457, -0.023435009643435478, -0.009886029176414013, 0.03431883081793785, 0.00797578040510416, 0.013732784427702427, 0.013457078486680984, -0.009268973022699356, -0.005166205111891031, -0.012321432121098042, -0.00047797244042158127, 0.011671553365886211, 0.002036613877862692, -0.01659487560391426, -0.0010987211717292666, -0.0185773316770792, -0.01410039234906435, -0.01683119498193264, 0.005044763442128897, 0.007463755086064339, 0.017238188534975052, 0.0066694593988358974, -0.006971423048526049, -0.02510237507522106, 0.010037011466920376, -0.04568842053413391, -0.02977624721825123, -0.002036613877862692, 0.0040010190568864346, -0.012951617129147053, 0.015032541006803513, -0.005540377460420132, 0.004460528958588839, 0.0031410790979862213, 0.002433761954307556, 0.013319225050508976, -0.044034186750650406, 0.026283971965312958, 0.007640994619578123, -0.02296237088739872, 0.0012907307827845216, 0.017330091446638107, 0.004453964531421661, 0.025259921327233315, 0.011494314298033714, -0.004956143442541361, 0.0069648586213588715, -0.022410959005355835, -0.030984101817011833, -0.007595043629407883, 0.0037220309022814035, -0.027465568855404854, 0.00042545702308416367, 0.02275230921804905, -0.025640657171607018, 0.02293611317873001, -0.009426519274711609, -0.03778484836220741, -0.0015048951609060168, 0.012564316391944885, 0.010903515852987766, -0.01541327778249979, -0.06312354654073715, 0.0017658312572166324, 0.02712421864271164, 0.0011930848704650998, -0.00883572082966566, 0.031798090785741806, 0.00531062250956893, 0.0035841779317706823, -0.05666414648294449, 0.017763342708349228, -0.009971367195248604, 0.018524816259741783, 0.022148381918668747, -0.023973291739821434, 0.02402580715715885, 0.0040994854643940926, 0.02032347023487091, -0.01575462892651558, 0.011750326491892338, 0.010857564397156239, 0.0067351036705076694, 0.001499971840530634, -0.026546549052000046, -0.00024206329544540495, 0.009117990732192993, 0.016660518944263458, 0.014914381317794323, -0.004729670472443104, -0.0407257154583931, -0.00644298642873764, 0.006712127942591906, 0.00021436961833387613, -0.0032526743598282337, -0.024971086531877518, 0.019509481266140938, -0.014573031105101109, -0.009669402614235878, -0.012085112743079662, 0.027255507186055183, -0.029566185548901558, 0.013969103805720806, 0.02360568381845951, -0.002967121545225382, -0.025509368628263474, 0.008028295822441578, -0.019496353343129158, 0.029041031375527382, 0.011947259306907654, 0.03368864580988884, -0.023553168401122093, 0.011750326491892338, 0.018209723755717278, -0.0028062930796295404, -0.04718511179089546, -0.003100051311776042, -0.0035316625144332647, -0.009886029176414013, -0.0032723676413297653, -0.0161878801882267, -0.0055305310525000095, 0.014047876931726933, -0.013601495884358883, -0.034870244562625885, -0.01058842334896326, -0.01680493727326393, 0.02687476947903633, -0.021964577957987785, -0.008343388326466084, -0.014704319648444653, -0.013036955147981644, 0.029434897005558014, -0.044034186750650406, -0.00606881408020854, 0.013187936507165432, 0.03741724044084549, 0.027623115107417107, -0.00952498521655798, -0.024091452360153198, -0.02036285772919655, 0.02554875612258911, -0.007247128989547491, 0.02053353190422058, -0.010233944281935692, -0.000204010124434717, 0.004834701307117939, -0.003423349466174841, -0.026139553636312485, 0.005999887362122536, -0.042327433824539185, -0.006741668097674847, 0.010489956475794315, 0.039675407111644745, -0.004191387444734573, -0.008074247278273106, -0.004453964531421661, -0.010660631582140923, -0.01324045192450285, -0.003961632493883371, -0.015492050908505917, -0.0009690737351775169, -0.02972373180091381, 0.0005136665422469378, -0.013063212856650352, 0.001736291334964335, 0.008047989569604397, 0.008389339782297611, 0.026585934683680534, 0.018288496881723404, -0.01947009563446045, 0.0035415091551840305, -0.009675967507064342, 0.004749363753944635, -0.039832953363657, -0.02271292172372341, 0.0018610154511407018, 0.04069945588707924, -0.005162923131138086, -0.022043351083993912, -0.0238682609051466, -0.01225578784942627, 0.021478809416294098, 0.021780773997306824, -0.019102485850453377, 0.03951786085963249, 0.001731368014588952, -0.010535907931625843, -0.0035907423589378595, -0.028804711997509003, -0.030879070982336998, 0.024117710068821907, -0.00394193921238184, -0.028725938871502876, -0.00410604989156127, -0.01683119498193264, 0.0038040862418711185, 0.0048740883357822895, -0.0267040953040123, -0.026100168004631996, 0.02843710407614708, -0.011835664510726929, -0.033793676644563675, 0.0019135308684781194, -0.023750102147459984, -0.03240201994776726, -0.02361881360411644, 0.0029769681859761477, -0.009374003857374191, 0.01115952804684639, 0.005330315791070461, 0.008369646035134792, -0.004181541036814451, 0.014704319648444653, 0.01058842334896326, 0.011514007113873959, -0.04899689555168152, 0.027728145942091942, 0.022594762966036797, 0.01496689673513174, -0.00010482571815373376, -0.018012791872024536, -0.0029277349822223186, -0.002844038652256131, -0.021728258579969406, -0.008041424676775932, 0.015570824034512043, -0.00037581351352855563, -0.010759098455309868, -0.03038017451763153, -0.00382377952337265, -0.018971197307109833, -0.02275230921804905, 0.020625434815883636, -0.014468000270426273, -0.017632054165005684, 0.008061118423938751, 0.022253412753343582, 0.013548980467021465, 0.011625602841377258, -0.006482372991740704, -0.025286179035902023, -0.023067401722073555, -0.0068335700780153275, 0.00884228479117155, -0.005441911052912474, -0.0033609874080866575, 0.018656104803085327, -0.0023615530226379633, 0.016266653314232826, 0.05598144605755806, 0.016017206013202667, 0.02444593235850334, 0.023224947974085808, -0.040358107537031174, -0.03831000253558159, -0.023303721100091934, 0.0020415373146533966, 0.029671216383576393, -0.024590348824858665, 0.013837815262377262, 0.003208364360034466, 0.012780942022800446, -0.008783205412328243, -0.006905778776854277, -0.002614283701404929, 0.0036301289219409227, -0.0066694593988358974, -0.027675630524754524, 0.02582446113228798, 0.016949353739619255, -0.0016583387041464448, -0.03610435500741005, 0.027649372816085815, 0.025233663618564606, 0.02184641733765602, -0.01687058061361313, -0.005350009072571993, -0.03718092292547226, 0.03384619206190109, -0.02599513716995716, -0.002458378439769149, 0.00365966884419322, -0.005067738704383373, 0.021741386502981186, 0.016752421855926514, -0.005031634587794542, 0.019575126469135284, -0.05613899230957031, -0.005819365847855806, 0.0119341304525733, -0.002492841798812151, 0.005093996413052082, 0.0024715072941035032, -0.015912175178527832, -0.0041651297360658646, 0.035736747086048126, -0.037312209606170654, -0.007339030969887972, 0.00043243172694928944, 0.011710939928889275, -0.004014147911220789, 0.02578507550060749, -0.016713034361600876, 0.009945109486579895, 0.04130338504910469, 0.02163635566830635, 0.02623145654797554, 0.01368026901036501, -0.01037836167961359, -0.00028227042639628053, 0.018498558551073074, 0.016109107062220573, 0.02822704240679741, -0.013535851612687111, 0.0025847437791526318, 0.029566185548901558, -0.028148269280791283, 0.02948741242289543, 0.003329806262627244, -0.0033101129811257124, 0.0009551243274472654, 0.0034922759514302015, -0.011533700861036777, 0.0007770642405375838, -0.001298115705139935, -0.008907929062843323, 0.01136302575469017, -0.03240201994776726, 0.015137571841478348, -0.07026564329862595, -0.019496353343129158, 0.011940695345401764, -0.019168131053447723, 0.02932986617088318, 0.027911949902772903, -0.03912399336695671, 0.018721750006079674, -0.022621020674705505, 0.047552719712257385, -0.02623145654797554, 0.014113521203398705, -0.03592055290937424, 0.027938207611441612], [0.027053942903876305, 0.0012705969857051969, 0.030270926654338837, -0.027590107172727585, -0.03460491821169853, 0.05062282085418701, -0.005920144263654947, -0.001066743046976626, 0.016721615567803383, 0.04052506387233734, -0.02314441278576851, -0.02439546212553978, 0.017190758138895035, 0.004858986474573612, -0.05397384613752365, 0.033688973635435104, -0.008332882076501846, 0.02982412278652191, 0.013191868551075459, -0.005115898326039314, 0.04812072217464447, 0.056297220289707184, -0.014040795154869556, -0.020061470568180084, -0.012186561711132526, -0.013929094187915325, 0.027880528941750526, -0.008600964210927486, 0.06961195915937424, -0.043429285287857056, 0.05857592076063156, -0.029042217880487442, 0.009042182937264442, -0.010058660060167313, -0.004730530548840761, 0.008986332453787327, -0.016230132430791855, 0.05772699415683746, 0.03502938151359558, -0.004093835595995188, -0.007997780106961727, 0.054733410477638245, 0.004174818750470877, -0.02486460655927658, -0.019156694412231445, 0.03938571363687515, 0.028550734743475914, -0.023278454318642616, -0.036615535616874695, 0.03820168599486351, 0.024998648092150688, 0.03523044288158417, -0.017146078869700432, 0.06188226491212845, 0.03199112042784691, 0.007919589057564735, -0.021435391157865524, 0.03878252953290939, 0.023881638422608376, -0.0398101769387722, -0.03540916368365288, -0.02982412278652191, -0.011561037041246891, 0.0367048941552639, 0.007668262347579002, -0.01650938391685486, 0.010717695578932762, 0.018732231110334396, -0.0117174182087183, -0.0034068755339831114, 0.003970964811742306, 0.018776910379529, 0.06420563906431198, -0.0795309990644455, -0.026763521134853363, 0.026562459766864777, 0.02045242302119732, -0.023747598752379417, 0.015883859246969223, 0.017559371888637543, -0.01835244707763195, 0.015794498845934868, -0.029757102951407433, 0.03239324316382408, 0.015414715744554996, -0.0034599334467202425, -0.07743102312088013, -0.003968172241002321, -0.027187984436750412, -0.025512471795082092, -0.049773894250392914, -0.020899226889014244, -0.02589225396513939, 0.060586534440517426, 0.021558262407779694, 0.006970132235437632, 0.030293267220258713, 0.0304943285882473, -0.038536787033081055, 0.03746446222066879, 0.023836959153413773, -0.027947548776865005, -0.01117566879838705, 0.009293509647250175, -0.017972664907574654, -0.041284628212451935, 0.008712665177881718, 0.07144385576248169, 0.04237929731607437, -0.034649599343538284, 0.014398237690329552, -0.04896964877843857, -0.035476185381412506, 0.06876303255558014, -0.019469456747174263, -0.0049706874415278435, -0.009779408574104309, -0.01276740524917841, 0.03328685089945793, -0.026562459766864777, -0.048924967646598816, -0.026919901371002197, 0.04126228764653206, -0.04311652481555939, -0.0274337250739336, -0.004504336044192314, -0.014007285237312317, -0.005071218125522137, -0.04901432618498802, 0.025065667927265167, 0.027187984436750412, -0.0512930229306221, 0.021211989223957062, -0.054912131279706955, 0.0148227009922266, 0.006595934275537729, 0.0008196049020625651, -0.015984389930963516, -0.002937732031568885, -0.0021348821464926004, 0.03628043085336685, 0.004976272117346525, -0.0016070958226919174, -0.02002795971930027, -0.04184313490986824, 0.022217296063899994, 0.022139105945825577, 0.04005591943860054, -0.015381204895675182, 0.010399348102509975, -0.014387067407369614, -0.009740312583744526, 0.02678585983812809, 0.038000624626874924, 0.029757102951407433, 0.06125674024224281, 0.012454642914235592, 0.02611565589904785, -0.0021265046671032906, 0.007361085154116154, -0.04233461618423462, -0.020932737737894058, 0.007534221280366182, -0.05039941892027855, 0.026160335168242455, -0.010013979859650135, 0.011371145024895668, 0.019156694412231445, -0.036972977221012115, -0.048388801515102386, -0.04233461618423462, -0.008729420602321625, 0.006473063491284847, -0.046065423637628555, 0.04847816377878189, -0.037509139627218246, -0.0009131543338298798, 0.0003361497074365616, 0.027120962738990784, 0.02917625941336155, -0.01698969677090645, -0.017291288822889328, -0.07198002189397812, -0.008159746415913105, -0.01997211016714573, 0.029913485050201416, 0.06250778585672379, -0.004588111769407988, 0.014186006039381027, -0.015995560213923454, 0.0013487875694409013, -0.013906754553318024, -0.03699531778693199, 0.03152197599411011, -0.05978228896856308, -0.007489541079849005, 0.006819336209446192, 0.016576403751969337, 0.002968449844047427, -0.0019938598852604628, 0.02696458250284195, -0.044389910995960236, 0.024350782856345177, 0.009036597795784473, -0.028729455545544624, -0.02767946757376194, 0.021357199177145958, 0.020128490403294563, 0.025244388729333878, -0.016877995803952217, 0.016163110733032227, -0.0304943285882473, -0.03737509995698929, 0.024172062054276466, -0.013884413987398148, 0.043540988117456436, 0.010354667901992798, -0.003194643883034587, -0.06116737797856331, 0.0548674501478672, 0.01984923891723156, -0.03246026486158371, -0.013147188350558281, -0.005182918626815081, -0.0014011473394930363, -0.015012592077255249, 0.02707628346979618, 0.000278553954558447, -0.02624969743192196, -0.07997780293226242, -0.008327297866344452, 0.03880487009882927, -0.003141585970297456, -0.011728587560355663, -0.0018961216555908322, 0.02074284479022026, 0.03310812637209892, -0.0318123996257782, 0.011281784623861313, -0.0029544872231781483, 0.002562138019129634, 0.0032895896583795547, -0.015191313810646534, 0.06853963434696198, 0.026339057832956314, 0.00783022865653038, -0.009304679930210114, -0.0030159226153045893, 0.047852639108896255, 0.003057810477912426, 0.00384809379465878, -0.04298248142004013, 0.06858431547880173, -0.06009504944086075, 0.012409962713718414, 0.03648149222135544, -0.025869913399219513, -0.021122628822922707, 0.015202484093606472, -0.05692274495959282, -0.026093315333127975, -0.024060361087322235, -0.023836959153413773, 0.03053900972008705, -0.061480142176151276, 0.006763485725969076, 0.03335386887192726, 0.03301876783370972, -0.024172062054276466, 0.02133486047387123, -0.05518021434545517, 0.011951989494264126, -0.02021785080432892, -0.008316127583384514, -0.02236250787973404, -0.0095057412981987, 0.0023317548912018538, -0.011119818314909935, -0.02557949163019657, -0.02493162639439106, -0.023769937455654144, 0.014152496121823788, -0.04284844174981117, -0.023278454318642616, -0.005643684882670641, -0.01806202530860901, 0.0016420022584497929, -0.01984923891723156, -0.013348249718546867, 0.026986923068761826, 0.06496520340442657, 0.0013257493264973164, 0.010125680826604366, 0.020932737737894058, 0.010533388704061508, 0.015079612843692303, -0.06139077991247177, 0.005383980460464954, 0.0015400752890855074, -0.0030075451359152794, 0.020608805119991302, 0.043250564485788345, 0.041887812316417694, 0.010388177819550037, -0.04213355481624603, 0.03156665712594986, 0.0017467217985540628, 0.07345446944236755, -0.013325910083949566, 0.003281212178990245, -0.03024858608841896, 0.05004197359085083, -0.02236250787973404, -0.02953370101749897, 0.009913449175655842, -0.025624172762036324, -0.025735873728990555, 0.023412495851516724, 0.0018402712885290384, -0.016777465119957924, 0.037866584956645966, 0.008584209717810154, 0.02796988934278488, 0.008975162170827389, 0.012119540944695473, -0.013136018067598343, 0.022742290049791336, 0.04847816377878189, -0.028059249743819237, -0.024596523493528366, -0.04132930934429169, -0.030382627621293068, 0.04208887368440628, 0.00496230972930789, -0.020229021087288857, -0.026316717267036438, -0.0034543483052402735, 0.026339057832956314, 0.020832207053899765, 0.014152496121823788, 0.04036868363618851, -0.02942200005054474, -0.0002666857617441565, -0.01022062636911869, -0.019290734082460403, -0.011404655873775482, -0.00699247233569622, 0.06500988453626633, -0.021502410992980003, 0.008556284010410309, 0.03364429250359535, 0.022284317761659622, -0.020955076441168785, 0.013638672418892384, -0.012253581546247005, -0.015023762360215187, -0.00786373857408762, -0.006936621852219105, -0.014655149541795254, -0.003133208490908146, 0.043853748589754105, 0.027657127007842064, 0.00920973438769579, 0.041105907410383224, 0.031834740191698074, -0.019983280450105667, -0.007617997005581856, -0.01186262909322977, -0.01770458184182644, -0.014364727772772312, 0.008511603809893131, 0.034292157739400864, 0.019983280450105667, -0.030516669154167175, -0.049773894250392914, -0.002571911783888936, 0.024105040356516838, 0.045886702835559845, -0.024306101724505424, 0.02193804457783699, 0.0020804281812161207, 0.01859818957746029, 0.004146893508732319, 0.012678044848144054, 0.03317514806985855, 0.03929635509848595, -0.0477185994386673, 0.014096645638346672, 0.002228431636467576, -0.007333159912377596, -0.03348791226744652, 0.023814618587493896, -0.02086571604013443, 0.029556041583418846, -0.01509078312665224, -0.03239324316382408, 0.04633350670337677, 0.058620598167181015, -0.015269504860043526, -0.07113109529018402, 0.012711555697023869, -0.03281770646572113, 0.008857876062393188, -0.04231227561831474, -0.0096230274066329, -0.00813182070851326, -0.0011456316569820046, -0.020519444718956947, 0.0057805185206234455, 0.0015931332018226385, 0.0006883564055897295, -0.01144933607429266, 0.02553481049835682, -0.004180403891950846, 0.020296042785048485, 0.041932493448257446, -0.03018156625330448, 0.04345162585377693, 0.0030410552863031626, -0.045238837599754333, 0.043540988117456436, 0.006925452034920454, -0.016364172101020813, -0.014621639624238014, -0.02767946757376194, 0.0015303015243262053, -0.008031290024518967, 0.000614703691098839, 0.013415270484983921, -0.08877982199192047, 0.03659319505095482, 0.01213071122765541, 0.04123995080590248, -0.008260277099907398, -0.019112013280391693, 0.00893606711179018, 0.015705138444900513, -0.03784424439072609, -0.002338736318051815, -0.010081000626087189, 0.006970132235437632, 0.03487300127744675, 0.00494555477052927, 0.009857598692178726, -0.010745620355010033, 0.005358847789466381, -0.004515506327152252, 0.011661567725241184, -0.013493461534380913, -0.013917923904955387, -0.03395705297589302, -0.04986325278878212, -0.057905714958906174, 0.0012517474824562669, -0.007489541079849005, -0.0024169269017875195, -0.03737509995698929, -0.03310812637209892, 0.050667498260736465, -0.035900648683309555, -0.012398793362081051, 0.04879092425107956, 0.04615478590130806, 0.028237972408533096, 0.023233775049448013, 0.04937177151441574, -0.025869913399219513, -0.013683352619409561, 0.023635897785425186, -0.025557151064276695, 0.024172062054276466, -0.0179279837757349, -0.03949741646647453, 0.002180958865210414, 0.05071217939257622, -0.032728344202041626, -0.02575821243226528, -0.05991632863879204, -0.005048878025263548, -0.003680542577058077, -0.003998890053480864, -0.018073195591568947, -0.0001578647061251104, -0.024909285828471184, 0.026026295498013496, -0.02385929971933365, 0.056297220289707184, 0.007042737677693367, -0.010444028303027153, -0.04407715052366257, -0.08623304963111877, -0.009684463031589985, 0.022809311747550964, -0.008321712724864483, 0.004060325212776661, -0.013817393220961094, -0.03346557170152664, 0.00357163418084383, 0.047673918306827545, -0.0008600964210927486, 0.041642073541879654, -0.031767718493938446, 0.01554875634610653, -0.006651784759014845, 0.044814374297857285, -0.029980504885315895, -0.00397375738248229, -0.019502965733408928, -0.01494557224214077, -0.026383737102150917, -0.034403856843709946, 0.008494848385453224, 0.05728019028902054, 0.03268366679549217, -0.02350185625255108, -0.040279321372509, 0.03686127811670303, -0.02265292964875698, -0.034403856843709946, 0.0006440251599997282, -0.006333437282592058, -0.04740583524107933, -0.05504617094993591, -0.02414972148835659, 0.0181178767234087, 0.03067304939031601, 0.018073195591568947, 0.015995560213923454, -0.008924896828830242, 0.016062580049037933, -0.006657369900494814, -0.05267811566591263, -0.027299685403704643, -0.0027869357727468014, -0.0010011187987402081, -0.017604051157832146, 0.024462483823299408, 0.006512159015983343, 0.001852837624028325, -0.05647594481706619, 0.043540988117456436, -0.023166753351688385, 0.032616645097732544, -0.02289867214858532, -0.009522496722638607, 0.016308322548866272, 0.029198598116636276, 0.033398550003767014, 0.031588997691869736, -0.020698165521025658, 0.002091598231345415, 0.03364429250359535, -0.0314326174557209, 0.007852569222450256, -0.04566330090165138, 0.019279563799500465, 0.02061997540295124, 0.005462171044200659, 0.01539237517863512, -0.01186262909322977, 0.017849793657660484, -0.0068305060267448425, 0.0017969872569665313, 0.018084365874528885, 0.023524196818470955, 0.014699829742312431, -0.02553481049835682, -0.008891386911273003, 0.010148021392524242, 0.010287647135555744, 0.013080167584121227, 0.0029600721318274736, 0.0125886844471097, -0.06174822151660919, 0.04327290505170822, 0.03578894957900047, 0.006221736781299114, -0.020709335803985596, -0.0034683109261095524, 0.0028218424413353205, 0.004870156291872263, 0.04499309882521629, -0.009343774989247322, -0.026272036135196686, -0.03746446222066879, 0.008561869151890278, -0.00854511372745037, -0.03393471613526344, -0.02314441278576851, 0.04472501575946808, 0.022563569247722626, 0.005523606203496456, 0.02271994948387146, -0.01614077016711235, 0.008986332453787327, 0.03813466429710388, -0.03270600363612175, -0.020843375474214554, -0.006411627866327763, 0.016721615567803383, -0.004786381032317877, 0.004655132535845041, 0.010013979859650135, -0.02206091582775116, -0.021122628822922707, -0.02864009514451027, 0.023278454318642616, -0.024886947125196457, -0.03603468835353851, 0.03442619740962982, 0.0014227894134819508, 0.006216151639819145, 0.02671884000301361, -0.006942206993699074, -0.028014570474624634, 0.013772713020443916, -0.020776355639100075, -0.03384535387158394, -0.036079369485378265, 0.028416693210601807, 0.00022340167197398841, -0.00481151370331645, 0.02557949163019657, 0.008835536427795887, -0.009734728373587132, -0.04034634307026863, 0.018397128209471703, -0.059871647506952286, 0.03053900972008705, -0.004345162771642208, -0.040212299674749374, 0.03067304939031601, -0.006540083792060614, -0.006260831840336323, -0.02528906986117363, 0.0006565914954990149, 0.03994422033429146, 0.00041259496356360614, 0.0148227009922266, 0.001324353041127324, 0.052275992929935455, 0.0027925209142267704, 0.003778280923143029, -0.013113678433001041, 0.014051965437829494, 0.0065735941752791405, 0.005417490378022194, 0.017615221440792084, -0.012867936864495277, 0.0016433985438197851, 0.0008698702440597117, -0.014454088173806667, 0.016810975968837738, -0.0401899628341198, 0.04762923717498779, 0.0022060915362089872, -0.010667430236935616, 0.03214750066399574, 0.01626364141702652, 0.004384257830679417, -0.05057813972234726, 0.01649821363389492, -0.02553481049835682, -0.0009683066164143384, 0.022440697997808456, 0.0010562710231170058, 0.014621639624238014, -0.005330922547727823, -0.008360807783901691, -0.033085789531469345, -0.014096645638346672, -0.01022062636911869, -0.005177333950996399, -0.02864009514451027, -0.040033578872680664, -0.025088008493185043, -0.03992187976837158, 0.01626364141702652, -0.05053345859050751, 0.04418884962797165, -0.05643126368522644, -0.03192409873008728, -0.010740035213530064, 0.01129854004830122, -0.006897526793181896, 0.006769070867449045, 0.023524196818470955, -0.020005619153380394, -0.010282061994075775, -0.013649842701852322, -0.012387623079121113, 0.029556041583418846, -0.0009913449175655842, -0.010767960920929909, 0.03257196396589279, 0.04619946703314781, -0.0007658488466404378, -0.02761244773864746, -0.0468696728348732, -0.07113109529018402, 0.034940022975206375, 0.021926874294877052, -0.01076237577944994, -0.04619946703314781, -0.008863461203873158, -0.0030326778069138527, -0.017168419435620308, 0.04327290505170822, 0.01383973378688097, -0.003194643883034587, -0.0023554915096610785, -0.030874110758304596, -0.025132687762379646, -0.016096090897917747, -0.029980504885315895, 0.004398220684379339, -0.024618864059448242, -0.028304992243647575, 0.016576403751969337, -0.005677195265889168, -0.03744212165474892, 0.028975198045372963, -0.0009417776600457728, 0.004110591020435095, 0.020474763587117195, -0.02026253193616867, -0.026316717267036438, -0.014398237690329552, 0.002585874404758215, 0.02063114382326603, 0.02785818837583065, -0.0199050884693861, 0.008053630590438843, 0.028528394177556038, -0.015571096912026405, 0.012041349895298481, -0.040927186608314514, 0.008461338467895985, -0.007478371262550354, -0.009192978963255882, 0.029734762385487556, -0.021859854459762573, -0.006925452034920454, -0.03502938151359558, -0.011125403456389904, -0.015001422725617886, 0.03779956325888634, 0.005241561681032181, -0.033443231135606766, 0.03071773052215576, -0.03806764632463455, 0.006204981356859207, -0.011639227159321308, -0.022753460332751274, -0.007288479711860418, 0.009745897725224495, -0.006975717376917601, 0.05187387019395828, 0.0023973791394382715, 0.0021460524294525385, 0.011851458810269833, -0.034515559673309326, 0.012007839977741241, 0.02181517332792282, -0.008444583043456078, 0.029556041583418846, -0.034225136041641235, 0.002915391931310296, 0.005358847789466381, -0.013359420001506805, -0.008014535531401634, 0.010349082760512829, 0.03199112042784691, 0.0057693482376635075, 0.016587574034929276, -0.0022591494489461184, -0.02486460655927658, -0.01357165165245533, -0.016364172101020813, -0.03762084245681763, 0.003599559422582388, -0.017023207619786263, 0.0107288658618927, 0.018519999459385872, 0.02481992542743683, -0.013203038834035397, 0.01752586103975773, 0.007187949027866125, 0.022921012714505196, 0.012666874565184116, -0.0304943285882473, -0.025557151064276695, -0.002985204802826047, -0.02649543806910515, -0.0055487388744950294, -0.012074860744178295, 0.0004701907164417207, -0.049595173448324203, -0.02611565589904785, 0.0274337250739336, -0.02079869620501995, -0.036012351512908936, 0.0016852864064276218, 0.009818503633141518, 0.07443743944168091, -0.004099420737475157, -0.036325111985206604, -0.0013920717174187303, -0.01895563118159771, -0.022574739530682564, -0.019893918186426163, 0.026406077668070793, -0.02475290559232235, 0.04347396641969681, 0.020664654672145844, -0.022496549412608147, -0.013113678433001041, 0.03460491821169853, -0.0005026537692174315, 0.002705952851101756, 0.004029607865959406, -0.035431504249572754, 0.007846984080970287, 0.008600964210927486, 0.008193256333470345, -0.01602907106280327, -0.041284628212451935, -0.0353868268430233, -0.01052780356258154, -0.013191868551075459, 0.024529503658413887, -0.01512429304420948, 0.02493162639439106, 0.020608805119991302, 0.00754539156332612, -0.03248260170221329, -0.010974607430398464, 0.0024420595727860928, 0.020955076441168785, 0.01949179545044899, 0.018642868846654892, -0.012912617065012455, -0.0304943285882473, 0.004529469180852175, -0.03949741646647453, 0.0019701234996318817, 0.021502410992980003, 0.004007267765700817, -0.017425330355763435, 0.017671072855591774, 0.007014812435954809, -0.02050827443599701, 0.0010451009729877114, -0.028059249743819237, 0.007796718273311853, -0.012689215131103992, 0.037107016891241074, -0.027053942903876305, 0.004012852441519499, -0.009433135390281677, -0.007763208355754614, 0.007439275737851858, 0.010890831239521503, 0.0012678045313805342, -0.0019701234996318817, -0.011136573739349842, 0.015448225662112236, 0.007914003916084766, 0.008204426616430283, 0.007752038072794676, 0.01046078372746706, 0.006500988733023405, -0.005009782500565052, -0.018553508445620537, -0.024909285828471184, -0.029489021748304367, 0.005579456686973572, 0.04396544769406319, 0.015191313810646534, -0.027992229908704758, 0.006808165926486254, 0.012979636900126934, -0.00039828330045565963, 0.001519131357781589, 0.01554875634610653, -0.02821563184261322, -0.017972664907574654, 0.06438436359167099, 0.030695389956235886, 0.02390397898852825, 0.0411282479763031, 0.01841946877539158, 0.0028553525917232037, -0.02439546212553978, 0.005730253178626299, 0.01583917811512947, 0.0032644569873809814, -0.03487300127744675, -0.006796996109187603, 0.019447116181254387, -0.022798141464591026, -0.004253009334206581, 0.013783883303403854, -0.01285676658153534, 0.0005434943595901132, -0.019569987431168556, -0.018341276794672012, -0.03777722269296646, 0.026316717267036438, -0.013459950685501099, 0.027098624035716057, -0.01620779186487198, 0.01960349641740322, -0.033621951937675476, 0.008115066215395927, 0.013113678433001041, -0.04503777623176575, 0.014487599022686481, 0.0358559675514698, -0.013549312017858028, 0.0662609338760376, 0.020586464554071426, 0.017179587855935097, -0.0274337250739336, -0.03478363901376724, -0.025780552998185158, -0.012655705213546753, 0.016185451298952103, -0.00923765916377306, 0.003323099808767438, -0.0072605544701218605, 0.019234884530305862, 0.04179845377802849, 0.05182918906211853, 0.0234348364174366, -0.005953654646873474, -0.007282894570380449, 0.010483123362064362, 0.011259444057941437, -0.00013299380952958018, 0.0214577317237854, 0.03641447424888611, 0.01414132583886385, -0.012666874565184116, -0.033510252833366394, 0.003929077181965113, -0.0028735040687024593, 0.014476428739726543, -0.009556006640195847, 0.0125886844471097, 0.03496236354112625, 0.02127900905907154, -0.009416380897164345, -0.02403802052140236, -0.00989110954105854, 0.0009843636071309447, 0.02481992542743683, -0.00397375738248229, 6.283172115217894e-05, 0.020832207053899765, 0.058263156563043594, 0.04202185571193695, 0.05316959694027901, -0.0322815403342247, 0.05866527929902077, 0.03578894957900047, -0.016632255166769028, -0.0012021802831441164, -0.03364429250359535, 0.019167862832546234, -0.021669961512088776, -0.010924342088401318, 0.039184652268886566, 0.011410240083932877, 0.004967894870787859, -0.004026815295219421, 0.030092205852270126, -4.033883669762872e-05, -0.0022409979719668627, 0.02163645252585411, 0.015224823728203773, 0.027456065639853477, 0.027411386370658875, 0.0007609619642607868, 0.013951434753835201, 0.019748708233237267, 0.007768793031573296, -0.009678877890110016, -0.010114510543644428, 0.011276199482381344, -0.018341276794672012, 7.875782102928497e-06, -0.0064563085325062275, 0.0073834252543747425, -0.03418045490980148, 0.04389842972159386, 0.010315571911633015, 0.005023745354264975, 0.017380651086568832, -0.0107288658618927, 0.051203664392232895, -0.019525306299328804, 0.02450716309249401, 0.003105283249169588, 0.0017118153627961874, -0.00962861254811287, 0.03149963542819023, 0.009064522571861744, -0.0007061587530188262, 0.006495403591543436, 0.018397128209471703, 0.023122074082493782, -0.019514136016368866, -0.004018437582999468, -0.015258334577083588, -0.043540988117456436, 0.003934661857783794, -0.03505172207951546, -0.02314441278576851, -0.015135463327169418, -0.001956160878762603, 0.017481181770563126, 0.005601796787232161, 0.01972636766731739, 0.009438720531761646, 0.011762098409235477, 0.036079369485378265, 0.027523085474967957, 0.017782773822546005, 0.0018989142263308167, -0.01437589805573225, -0.012086031027138233, 0.015168973244726658, 0.01846414804458618, 0.0068360911682248116, 0.038045305758714676, -0.002062276704236865, -0.026584798470139503, -0.05111430212855339, 0.0029600721318274736, -0.028595414012670517, -0.021837513893842697, -0.021614111959934235, 0.02193804457783699, -0.016163110733032227, -0.007461615838110447, 0.021837513893842697, 0.02839435264468193, -0.008533944375813007, 0.015939708799123764, -0.017302459105849266, 0.015146633610129356, -0.015917370095849037, -0.07457147538661957, 0.004375880118459463, -0.02593693509697914, -0.033443231135606766, 0.005026537459343672, -0.02935498021543026, -0.026339057832956314, 0.03053900972008705, -0.025624172762036324, -0.00965095218271017, -0.0050125750713050365, 0.03657085448503494, -0.01650938391685486, -0.05848655849695206, 0.00412455340847373, 0.018642868846654892, -0.033510252833366394, -0.018665209412574768, -0.0019743123557418585, 0.02582523413002491, 0.04222291707992554, 0.039184652268886566, 0.002086013089865446, -0.03127623349428177, -0.04762923717498779, 0.01216422114521265, 0.013616331852972507, -0.01961466670036316, 0.008824366144835949, 0.021256668493151665, -0.01228709239512682, -0.010326742194592953, -0.03628043085336685, -0.004920422099530697, 0.01733596995472908, -0.002122315810993314, 0.003270041896030307, -0.00938287004828453, 0.012934956699609756, 0.010812641121447086, 0.005596212111413479, 0.007344330195337534, 0.010304402559995651, 0.0104942936450243, 0.011639227159321308, 0.0004862477071583271, -0.006400458049029112, 0.009142713621258736, 0.012275922112166882, -0.013616331852972507, -0.008349637500941753, 0.028349673375487328, 0.026763521134853363, 0.002542590256780386, 0.004445693455636501, 0.02649543806910515, 0.011114233173429966, 0.015191313810646534, 0.028260311111807823, -0.00539794284850359, -0.014253026805818081, 0.03645915165543556, 0.0038564715068787336, -0.02318909391760826, -0.002204695250838995, 0.00536443293094635, -0.01655406318604946, -0.01004749070852995, -0.00855069886893034, -0.03442619740962982, 0.00854511372745037, 0.015459395945072174, -0.010209456086158752, 0.015157803893089294, 0.011041628196835518, -0.010589239187538624, 0.028237972408533096, 0.006126790773123503, -0.04669094830751419, -0.0057693482376635075, -0.002060880418866873, -0.007897249422967434, 0.0200949814170599, 0.015336524695158005, -0.053303640335798264, 0.01022062636911869, -0.0075062960386276245, 0.036369793117046356, -0.004853401333093643, -0.0018877441762015224, -0.0027981060557067394, -0.04968453198671341, -0.001942198257893324, 0.007199118845164776, 0.060943976044654846, 0.03666021302342415, -0.026629479601979256, -0.007115343119949102, 0.05745891109108925, -0.01535886526107788, 0.022150276228785515, -0.017179587855935097, 0.03259430453181267, 0.05026537552475929, -0.005802858620882034, 0.04488139599561691, -3.2899388315854594e-05, -0.0020427291747182608, 0.01858701929450035, 0.029801784083247185, 0.023345474153757095, 0.03355493023991585, 0.020943906158208847, 0.0042837271466851234, 0.010851736180484295, -0.005495680961757898, 0.012946126982569695, 0.021602941676974297, -0.0234348364174366, -0.034761302173137665, -0.016174281015992165, 0.013940264470875263, -0.0031750963535159826, 0.0313432551920414, -0.03136559575796127, 0.03031560778617859, -0.0052331844344735146, 0.006188226398080587, -0.008137405849993229, -0.045350540429353714, -0.016274811699986458, 0.016453532502055168, 0.05111430212855339, 0.007986609824001789, -0.03983251750469208, -0.0007686413591727614, 0.011661567725241184, 0.01686682552099228, 0.004456863272935152, 0.016051409766077995, -0.001405336195603013, 0.006601519417017698, 0.01079588569700718, -0.028416693210601807, 0.003970964811742306, -0.008383147418498993, -0.02642841823399067, -0.003208606503903866, -0.023881638422608376, 0.01709022745490074, 0.00171460781712085, -0.034403856843709946, -0.04005591943860054, -0.0014032417675480247, 0.0047975508496165276, 0.03306344896554947, -0.026763521134853363, 0.0433846041560173, -0.002827427349984646, 0.00018273558816872537, -0.006808165926486254, -0.021357199177145958, -0.004227876663208008, 0.010081000626087189, -0.00021467504848260432, -0.023568876087665558, -0.010857321321964264, -0.0033594027627259493, -0.0014535071095451713, 0.02678585983812809, 0.0033482324797660112, 0.024127380922436714, -0.03127623349428177, -0.003138793632388115, -0.014331217855215073, -0.041999515146017075, 0.03149963542819023, 0.008807610720396042, 0.0022982447408139706, 0.017380651086568832, -0.0017927984008565545, 0.03156665712594986, -0.0340687558054924, 0.046244148164987564, -0.04258035868406296, 0.014621639624238014, 0.010807055979967117, -0.008846706710755825, 0.017950324341654778, -0.005886634346097708, -0.02092156745493412, -0.020106149837374687, 0.012745065614581108, -0.007969854399561882, 0.0005979485576972365, -0.003957001958042383, 0.0001713909732643515, 0.017537031322717667, 0.011527526192367077, 0.02164762280881405, 0.01607375033199787, 0.008506018668413162, -0.002408549189567566, -0.00813182070851326, -0.01509078312665224, -0.008662399835884571, 0.02767946757376194, 0.0058922190219163895, -0.03460491821169853, -0.03958677500486374, 0.0031443785410374403, -0.01144933607429266, 0.012097200378775597, 0.0008817384950816631, -0.005964824929833412, 0.012789745815098286, -0.004428938031196594, 0.0038453012239187956, 0.01524716429412365, 0.00015280325897037983, -0.03681659698486328, 0.037151698023080826, -0.007908419705927372, -0.009684463031589985, 0.040078260004520416, 0.012890276499092579, 0.03909529373049736, -0.030293267220258713, -0.005157785955816507, -0.015470566228032112, 0.001870988984592259, 0.010538973845541477, -0.022496549412608147, -0.005518021527677774, 0.00017488162848167121, 0.03337620943784714, -0.02553481049835682, -0.040279321372509, -0.01300197746604681, 0.014353557489812374, -0.004384257830679417, -0.02206091582775116, 0.020240191370248795, 0.041105907410383224, -0.035431504249572754, 0.01996093988418579, -0.0007756226696074009, 0.007852569222450256, 0.017112568020820618, 0.017246609553694725, 0.013672182336449623, -0.001977104926481843, 0.01960349641740322, -0.017246609553694725, -0.0053560552187263966, 0.012711555697023869, 0.009818503633141518, -0.005953654646873474, 0.002266130642965436, -0.0022759046405553818, 0.002580289263278246, -0.008740590885281563, -0.008841121569275856, -0.012030180543661118, -0.009466646239161491, -0.031231554225087166, 0.0032421168871223927, 0.00870149489492178, -0.030829431489109993, 0.010449613444507122, 0.020776355639100075, 0.016163110733032227, -0.05522489547729492, 0.0114828459918499, 0.03152197599411011, 0.014610469341278076, -0.003524161409586668, -0.00965095218271017, -0.0018179310718551278, 0.01243230327963829, 0.0061491308733820915, 0.001562415505759418, 0.02678585983812809, 0.01643119379878044, 0.023278454318642616, -0.00969004724174738, 0.017972664907574654, -0.04946113005280495, -0.03239324316382408, -0.06724390387535095, 0.016475873067975044, -0.001056969165802002, 0.01300197746604681, 0.006763485725969076, -0.00965653732419014, -0.008684740401804447, -0.006685295142233372, -0.015928538516163826, -0.010946681722998619, -0.05857592076063156, -0.005378395318984985, -0.004105005878955126, 0.026674160733819008, 0.01019270159304142, 0.04825476184487343, -0.0038508863653987646, -0.008176500909030437, 0.007539806421846151, 0.025378430262207985, -0.02785818837583065, 0.03299642726778984, 0.007165608927607536, -0.010773546062409878, -0.008293787017464638, -0.02079869620501995, -0.0031834738329052925, 0.053303640335798264, -0.005668817553669214, -0.013627502135932446, 0.014487599022686481, -0.024529503658413887, 0.014253026805818081, 0.049103688448667526, -0.03085177205502987, 0.02283165045082569, -0.03690595552325249, -0.003166718641296029, -0.030985811725258827, -0.03170069679617882, -0.022921012714505196, -0.011706247925758362, 0.01471100002527237, -0.008059215731918812, 0.009282339364290237, -0.019100842997431755, 0.002976827323436737, -0.020653484389185905, -6.964939984754892e-06, 0.014766850508749485, 0.04615478590130806, 0.007422520779073238, 0.0013376175193116069, -0.006126790773123503, -0.0221167653799057, -0.008193256333470345, -0.005043292883783579, 0.0035660492721945047, -0.009567176923155785, 0.02115613780915737, -0.02756776660680771, 0.011974330060184002, 0.0032867970876395702, -0.0036163146141916513, 0.015180143527686596, -0.003281212178990245, -0.049773894250392914, 0.019815728068351746, 0.01048870850354433, 0.005353262647986412, 0.014532279223203659, -0.0037028826773166656, -0.02379227802157402, -0.050488777458667755, -0.0033510250505059958, -0.029801784083247185, 0.0304943285882473, 0.0005152201047167182, -0.007651507388800383, -0.04161973297595978, -0.04901432618498802, -0.023099733516573906, 0.017470011487603188, 0.010779131203889847, 0.028617754578590393, 0.021323690190911293, 0.017805112525820732, 0.03355493023991585, -0.008092725649476051, 0.003532538888975978, 0.031901758164167404, -0.026048636063933372, 0.013795053586363792, 0.012711555697023869, -0.011494016274809837, 0.046422868967056274, -0.00040317021193914115, 0.03974315896630287, 0.030293267220258713, 0.008165331557393074, 0.006618274375796318, -0.0017509106546640396, 0.046780310571193695, -0.009477815590798855, -0.008109481073915958, -0.04184313490986824, 0.009014257229864597, 0.004881326574832201, 0.025020986795425415, -0.021971555426716805, 0.021625282242894173, -0.0007155835046432912, -0.00810389593243599, -0.0013376175193116069, -0.025624172762036324, -0.007495126221328974, 0.004993027541786432, -0.02575821243226528, -0.03424747660756111, 0.022105595096945763, 0.020363062620162964, -0.033152807503938675, 0.000309620751067996, -0.0013320324942469597, 0.0610780194401741, -0.027902869507670403, -0.0030215077567845583, -0.008344052359461784, -0.032907065004110336, -0.01853116974234581, -0.0067076352424919605, -0.008774100802838802, 0.014275367371737957, 0.0019282357534393668, 0.0016629461897537112, -0.0008244917844422162, -0.010890831239521503, 0.03552086651325226, -0.06049717217683792, -0.011851458810269833, 0.05075686052441597, 0.016487043350934982, 0.002652894938364625, -0.012443473562598228, -0.02486460655927658, 0.0068360911682248116, 0.0026040258817374706, -0.003834131173789501, 0.028617754578590393, -0.02910923771560192, 0.0009208337869495153, -0.005540361627936363, 0.010203871876001358, -0.016163110733032227, 0.00783581379801035, 0.012934956699609756, 0.025691192597150803, -0.021089117974042892, -0.005353262647986412, 0.020653484389185905, -0.012722725048661232, 0.0005962032009847462, 0.00920414924621582, 0.017492350190877914, -0.022753460332751274, -0.004261387046426535, 0.019145524129271507, -0.020418912172317505, 0.02284282073378563, 0.024886947125196457, -0.001971519785001874, 0.002901429310441017, 0.012007839977741241, 0.011337635107338428, 0.013068998232483864, 0.012387623079121113, 0.0009536459110677242, 0.021301349624991417, -0.006601519417017698, 0.010466368868947029, -0.03199112042784691, 0.017738092690706253, 0.012812086381018162, -0.027835847809910774, 0.00024260026111733168, 0.011130988597869873, -0.031656015664339066, 0.007221458945423365, -0.030628370121121407, 0.049773894250392914, -0.027456065639853477, -0.005836368538439274, -0.0054314532317221165, -0.004523884039372206]], "input": [" is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium", " may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does “protected against short circuit” mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view", " terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.", "How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-9f88eb180d8e97fdc9b4b9dc9b36a30a b/cache/text_embedding/embedding-9f88eb180d8e97fdc9b4b9dc9b36a30a deleted file mode 100644 index b0226d2ab9117a7b626608deb889e1e855eeed2a..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-9f88eb180d8e97fdc9b4b9dc9b36a30a +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.029346289113163948, 0.03723587095737457, 0.016491927206516266, 0.020141778513789177, -0.022366100922226906, 0.01898660697042942, -0.03168121352791786, 0.04664929583668709, -0.009419568814337254, 0.03612985461950302, 0.029297133907675743, -0.016786864027380943, 0.014857481233775616, -0.017487341538071632, -0.06405061483383179, 0.06355904787778854, 0.018236974254250526, 0.0063411579467356205, -0.029026774689555168, -0.011631601490080357, 0.01733987219631672, 0.031582899391651154, -0.06390314549207687, -0.004752796143293381, -0.01436591800302267, -0.013886644504964352, 0.016995778307318687, -0.0380469486117363, 0.061199549585580826, -0.02397596836090088, 0.12161260098218918, -0.027601242065429688, 0.06754070520401001, 0.005889534950256348, -0.005290443077683449, 0.022304654121398926, -0.023164888843894005, 0.008258252404630184, 0.04436352849006653, -0.013087855651974678, -0.022402968257665634, 0.005954052321612835, -0.0017957397503778338, -0.030280258506536484, 0.03281180560588837, 0.05908583104610443, 0.07407849282026291, -0.020055755972862244, -0.006611517630517483, 0.021223217248916626, 0.020903700962662697, 0.05500585958361626, -0.016332168132066727, 0.029395446181297302, 0.006605373229831457, 0.02387765608727932, -0.014181582257151604, 0.057168737053871155, 0.0033272646833211184, 0.0031260312534868717, -0.042151495814323425, -0.03858766704797745, -0.00698633398860693, 0.059675704687833786, -0.041831981390714645, 0.016172410920262337, -0.048148561269044876, 0.07255464792251587, -0.021002013236284256, 0.007066213060170412, -0.01219075359404087, -0.04288884252309799, 0.02073165401816368, -0.055202484130859375, -0.030157368630170822, 0.02397596836090088, 0.019576482474803925, -0.024504397064447403, 0.025315476581454277, -0.01295267604291439, -0.022783929482102394, 0.024344639852643013, -0.011723768897354603, 0.010550163686275482, -0.012160031124949455, 0.0018448960036039352, -0.10843872278928757, 0.002685160841792822, 0.004267378244549036, -0.03775200992822647, -0.049672406166791916, -0.022648748010396957, 0.0023226335179060698, 0.05682464316487312, -0.008350420743227005, 0.002894075121730566, 0.040627650916576385, 0.017315294593572617, -0.04468304291367531, 0.01089425664395094, 0.0024977526627480984, -0.02860894612967968, -0.016811441630125046, 0.002241218462586403, 0.017991192638874054, -0.029420023784041405, -0.04222523048520088, 0.011017147451639175, -0.008516322821378708, 0.010310526005923748, 0.004768157843500376, -0.026175711303949356, -0.06262508034706116, 0.06945779919624329, -0.021210927516222, 0.014488808810710907, -0.08361480385065079, 0.002362573053687811, 0.03875971585512161, 0.005769716575741768, -0.02870725840330124, 0.013309058733284473, 0.041291262954473495, -0.03445854038000107, 0.008080060593783855, -0.03730960562825203, 0.015631692484021187, 0.008245963603258133, -0.08179602026939392, -0.024811623618006706, 0.0663609579205513, -0.04372449591755867, 0.03241855651140213, -0.03305758908390999, 0.03522046282887459, 0.03686719760298729, 0.02375476434826851, -0.0023210973013192415, -0.0032105185091495514, -0.011877382174134254, -0.025364631786942482, -0.03470432385802269, 0.030648929998278618, 0.02565957047045231, -0.022144896909594536, 0.005090745631605387, 0.01736444979906082, -0.00658079469576478, 0.02742919512093067, -0.007742111571133137, 0.0010560916271060705, 0.018175529316067696, 0.010341249406337738, 0.0031260312534868717, -0.01635674759745598, -0.004242800176143646, 0.03576118126511574, 0.007613076362758875, -0.007238260004669428, -0.02267332747578621, -0.04338040202856064, 0.01354255061596632, -0.053039610385894775, -0.037358760833740234, 0.03991488739848137, -0.02108803763985634, 0.020301537588238716, 0.03755538538098335, -0.028584368526935577, -0.022022007033228874, -0.08302493393421173, 0.004989360924810171, -0.04994276538491249, 0.005176769103854895, -0.058151859790086746, -0.05338370427489281, 0.05230226367712021, -0.015361332334578037, 0.0034102159552276134, 0.03146000951528549, -0.02006804570555687, 0.03482721373438835, -0.028043648228049278, -0.024369217455387115, -0.037137556821107864, -0.006218267604708672, -0.02371789701282978, -0.023287780582904816, -0.007834279909729958, -0.0031490731053054333, 0.007791267707943916, -0.02511885203421116, -0.021346107125282288, -0.02784702368080616, -0.023902233690023422, -0.0039017784874886274, -0.01001558918505907, 0.02600366435945034, 0.026298601180315018, 0.023742476478219032, 0.007600787561386824, -0.00532730994746089, 0.0077728345058858395, 0.04925457760691643, -0.04819771647453308, 0.01041498314589262, -0.019416725262999535, 0.017929747700691223, 0.007213681936264038, 0.021702490746974945, 0.04239727929234505, -0.0123689454048872, -0.021800803020596504, -0.001983148045837879, 0.01603723131120205, 0.025610413402318954, 0.03514672815799713, -0.01295267604291439, 0.027158835902810097, 0.0440194346010685, -0.03517130762338638, 0.0033364815171808004, 0.008614635095000267, 0.014316761866211891, -0.01150871068239212, -0.0277487114071846, 0.0435032956302166, -0.0048787593841552734, -0.017892880365252495, -0.059774018824100494, -0.035539980977773666, -0.007410306949168444, -0.008743670769035816, -0.011244495399296284, -0.018212396651506424, 0.03200072795152664, -0.04876301437616348, -0.048123981803655624, 0.019871419295668602, 0.01420616079121828, 0.0005737457540817559, -0.0029217253904789686, -0.01571771502494812, -0.02578246034681797, 0.0217762254178524, -0.021604178473353386, -0.0204121395945549, 0.02253814786672592, 0.033672042191028595, -0.0195641927421093, 0.04733748361468315, -0.050975047051906586, 0.0554974228143692, -0.04593652859330177, 0.01188967190682888, 0.029002195224165916, 0.012043285183608532, -0.04079969972372055, 0.009868119843304157, -0.02486078068614006, 0.005649898201227188, -0.010912690311670303, -0.005957124754786491, 0.007477896753698587, -0.06616432964801788, -0.013235324062407017, 0.016909755766391754, -0.013690019957721233, 0.024971382692456245, 0.025217164307832718, -0.05353117361664772, 0.03286096453666687, -0.00968378409743309, -0.01145955454558134, -0.030747244134545326, 0.007078501861542463, 0.017167825251817703, -0.058594267815351486, 0.013714597560465336, 0.02568414807319641, -0.045322075486183167, -0.040627650916576385, -0.011262929067015648, -0.09113571792840958, 0.004138343036174774, 0.0006159894401207566, 0.0135917067527771, -0.03003447689116001, -0.0271834135055542, 0.04409316927194595, 0.059134986251592636, -0.07712617516517639, 0.004107620567083359, -0.016885176301002502, 0.021038880571722984, -0.008934151381254196, -0.01581602729856968, 0.010156912729144096, -0.049451202154159546, -0.01670084148645401, -0.0059663415886461735, 0.06341157853603363, -0.006255134474486113, 0.015201575122773647, -0.03907923027873039, -0.015103261917829514, 0.012055573984980583, 0.008221385069191456, -0.019883709028363228, -0.02393910102546215, 0.00028437667060643435, 0.02393910102546215, -0.012743761762976646, -0.05942992493510246, -0.024885358288884163, 0.01550880167633295, -0.05569404736161232, -0.0025023610796779394, 0.04404401406645775, 0.006258206907659769, 0.017511919140815735, -0.008528611622750759, 0.0462314672768116, 0.01348110567778349, -0.011434976011514664, -0.019699372351169586, 0.04195487126708031, 0.034655164927244186, -0.012596292421221733, -0.022488990798592567, -0.06803227216005325, 0.01587747409939766, 0.042913418263196945, -0.045961108058691025, -0.011932683177292347, -0.036621417850255966, -0.0003425577306188643, -0.0008425691048614681, 0.025856195017695427, -0.03745707497000694, 0.05495670437812805, -0.03426191583275795, -0.00077305908780545, 0.02969038300216198, -0.000859466555994004, 0.023631874471902847, 0.03676888719201088, 0.02892846241593361, -0.009671495296061039, 0.01918323151767254, 0.004823458380997181, -0.016172410920262337, -0.09005427360534668, -0.0007143019465729594, -0.027035946026444435, -0.050090234726667404, 0.02796991355717182, -0.017794568091630936, -0.01512784045189619, 0.028805570676922798, 0.033672042191028595, -0.003113742219284177, 0.036965511739254, 0.030108211562037468, 0.02543836645781994, -0.007877291180193424, -0.04286426305770874, -0.007797412574291229, -0.005044661462306976, -0.029665805399417877, -0.005960197187960148, 0.0010875823209062219, 0.01098642498254776, -0.02568414807319641, -0.01316158939152956, -0.016528794541954994, -0.003852622117847204, -0.03369661793112755, 0.001360245980322361, -0.03347541764378548, 0.007299705408513546, -0.009812818840146065, -0.014722301624715328, 0.010931123979389668, 0.04033271595835686, 0.012092441320419312, -0.0760938972234726, 0.003268891479820013, -0.0010952630545943975, -0.005459417589008808, 0.0135917067527771, 0.022181764245033264, -0.015447355806827545, 0.032688915729522705, 0.0021874536760151386, -0.001990828663110733, 0.0026144988369196653, 0.04972156137228012, 0.011871238239109516, -0.00287717767059803, -0.021395264193415642, 0.018814560025930405, 0.0038188272155821323, 0.022464413195848465, -0.037260446697473526, 0.014697723090648651, 0.030845556408166885, 0.017475051805377007, -0.006666818168014288, -0.056087296456098557, 0.0135917067527771, 0.022218631580471992, 0.04492882639169693, 0.01654108241200447, 0.021260084584355354, -0.0015568711096420884, 0.026913054287433624, 0.02273477241396904, -0.038243573158979416, -0.04743579402565956, 0.03875971585512161, -0.0006179095944389701, -0.011275217868387699, 0.002963201142847538, 0.006758986506611109, 0.0277241338044405, -0.011336663737893105, -0.016295300796628, 0.009806674905121326, -0.0816485583782196, 0.03089471161365509, 0.020375272259116173, 0.028854727745056152, -0.0003631034924183041, 0.0015000341227278113, -0.0429379977285862, 0.03797321394085884, -0.0036959366407245398, -0.03674430772662163, -0.09261040389537811, -0.0005391828017309308, 0.0003214358875993639, 0.012362800538539886, -0.002007726114243269, -0.04165993258357048, 0.024283194914460182, -0.009290534071624279, 0.02127237431704998, 0.008147650398314, -0.01575458236038685, 0.005502429325133562, -0.0060707987286150455, -0.056726329028606415, -0.037162136286497116, -0.0008540900889784098, -0.004534665495157242, -0.005017011426389217, -0.0337211973965168, 0.058790892362594604, -0.00833813101053238, 0.02032611519098282, 0.00019268871983513236, 0.025389211252331734, 0.05141745135188103, 0.02524174191057682, 0.0135917067527771, -0.012534847483038902, -0.02632317878305912, -0.0045500267297029495, -0.023484405130147934, -0.01190810464322567, -0.021223217248916626, -0.006814287044107914, -0.009616194292902946, 0.07958399504423141, 0.0214935764670372, -0.013038699515163898, -0.048787593841552734, 0.008356564678251743, -0.0457153245806694, -0.030845556408166885, 0.07245633006095886, -0.04347871616482735, -0.05589067190885544, -0.01300183217972517, 0.018138661980628967, 0.04733748361468315, 0.03332794830203056, -0.029567493125796318, 0.000837960687931627, 0.02393910102546215, -0.0418565608561039, 0.02035069279372692, -0.011981839314103127, 0.014230738393962383, -0.0007262069848366082, -0.019441302865743637, 0.00338563765399158, 0.06144532933831215, -0.005677548702806234, 0.031361695379018784, -0.038882605731487274, 0.02178851328790188, -0.006043148227035999, 0.001623692805878818, -0.016344457864761353, 0.010808233171701431, -0.011066303588449955, 0.013444238342344761, 0.0012657737825065851, -0.011170760728418827, 0.04338040202856064, 0.008547045290470123, -0.021481286734342575, -0.018519623205065727, -0.031165070831775665, -0.011041725985705853, 0.025929929688572884, -0.021825380623340607, 0.013911223039031029, 0.02816653996706009, -0.009812818840146065, -0.017610231414437294, -0.026519805192947388, -0.01527530886232853, 0.004387196619063616, 0.004420991521328688, -0.035539980977773666, -0.00024232502619270235, 0.01930612325668335, 0.018359864130616188, -0.03404071182012558, -0.04807482659816742, 0.05195816978812218, 0.00636573601514101, -0.011772925034165382, 0.009530170820653439, 0.02794533595442772, 0.02051045186817646, 0.007004767656326294, 0.07579895853996277, 0.004808097146451473, -0.014611699618399143, -0.0059663415886461735, 0.0012066327035427094, -0.0020722437184304, 0.0036467802710831165, 0.0054532731883227825, -0.00677127530798316, 0.015582535415887833, -0.0023226335179060698, 0.02403741329908371, -0.005179841537028551, -0.023926811292767525, 0.030329415574669838, 0.0017511919140815735, 0.037678275257349014, -0.008424154482781887, -0.0024670299608260393, -0.02486078068614006, -0.0038126828148961067, 0.011920394375920296, 0.006255134474486113, 0.008510177955031395, -0.013739176094532013, -0.011023292317986488, 0.01166846789419651, 0.020977435633540154, -0.01689746603369713, -0.0050108665600419044, -0.041586197912693024, -0.018617935478687286, 0.012928097508847713, -0.012522558681666851, 0.026888476684689522, 0.015914341434836388, 0.021321529522538185, 0.0034132881555706263, 0.03819441795349121, 0.014906637370586395, -0.0068695880472660065, 0.007785123307257891, -0.017597943544387817, -0.01625843532383442, -0.01730300486087799, -0.003247385611757636, -0.018937451764941216, -0.028682680800557137, -0.018495043739676476, 0.005318093579262495, 0.016786864027380943, 0.005785077810287476, 0.010371971875429153, -0.007994037121534348, 0.018273841589689255, 0.04829603061079979, 0.00038633751682937145, 0.034974683076143265, -0.012977253645658493, 0.0008586985059082508, 0.029125086963176727, -0.007490186020731926, 0.003573046065866947, -0.021161772310733795, -0.005735921673476696, -0.009149209596216679, 0.009143064729869366, 0.0011605486506596208, -0.0026375409215688705, 0.01946588046848774, 0.0041752103716135025, 0.035638291388750076, 0.011944971978664398, -0.030108211562037468, -0.0407751202583313, -0.0026759442407637835, 0.007004767656326294, 0.0008318161708302796, -0.008172228932380676, 0.012037140317261219, -0.03947247937321663, -0.014402785338461399, 0.01880227029323578, -0.008743670769035816, -0.027576664462685585, 0.023902233690023422, -0.0032074463088065386, -0.01762252114713192, 0.022218631580471992, -0.04620688781142235, -0.012497980147600174, 0.0008763640071265399, -0.015385910868644714, 0.017954325303435326, 0.0009823571890592575, 0.011256784200668335, 0.0015852894866839051, -0.0021091110538691282, 0.0028910026885569096, 0.022599592804908752, 0.02632317878305912, 0.022624170407652855, 0.013665441423654556, -0.04222523048520088, 0.033229634165763855, -0.005311948712915182, -0.000254806102020666, 0.017278427258133888, -0.01587747409939766, 0.007262838073074818, 0.0331558994948864, 0.020817678421735764, -0.0135917067527771, -0.05677548423409462, 0.0185073334723711, 0.00959161575883627, -0.013530261814594269, 0.031705789268016815, -0.0031291034538298845, -0.012350511737167835, -0.0015138593735173345, 0.008725237101316452, -0.01022450253367424, 0.011944971978664398, -0.0015561030013486743, -0.028756415471434593, 0.030599774792790413, 0.0012650057906284928, 0.005440983921289444, -0.016184700652956963, 0.007355005946010351, -0.038341887295246124, -0.0075823538936674595, -0.04143873229622841, -0.030157368630170822, -0.039644528180360794, -0.035859495401382446, -0.011815937235951424, -0.06355904787778854, 0.017376739531755447, -0.02892846241593361, -0.010507151484489441, -0.013517973013222218, -0.028756415471434593, -0.04750952869653702, -0.031926993280649185, 0.005241286475211382, -0.023201756179332733, 0.007490186020731926, 0.00431038998067379, -0.02425861731171608, 0.0293708685785532, 0.014980372041463852, 0.004918698687106371, 0.033131323754787445, 0.04197945073246956, 0.008866561576724052, -0.005757427308708429, -0.04342956095933914, -0.04741121828556061, 0.020621052011847496, 0.008030904456973076, -0.0026144988369196653, -0.022439835593104362, -0.03342625871300697, 0.0024286266416311264, 0.0029432312585413456, 0.028584368526935577, 0.05382610857486725, -0.03283638507127762, 0.03197614848613739, 0.008043194189667702, -0.008805115707218647, -0.01555795781314373, -0.03576118126511574, 0.012596292421221733, 0.00954245962202549, 0.004884903784841299, 0.0026052820030599833, -0.0359332300722599, -0.017548786476254463, 0.035613711923360825, -0.016885176301002502, 0.0228576622903347, 0.0009908059146255255, -0.009413424879312515, 0.00032489217119291425, -0.00873138103634119, -0.0025330837815999985, -0.0017634809482842684, 0.021604178473353386, -0.004977071657776833, 0.001602186937816441, 0.021518154069781303, -0.007840423844754696, -0.01073449943214655, 0.01774541102349758, -0.009057041257619858, -0.031484588980674744, -0.002158267190679908, 0.02291910909116268, -0.04625604301691055, 0.04043102636933327, -0.018236974254250526, -0.02534005418419838, 0.011969550512731075, -0.01698348857462406, -0.022378388792276382, 0.01695891097187996, 0.042348120361566544, -0.024811623618006706, 0.008884995244443417, -0.0016329096397385001, 0.0039325011894106865, -0.005228997673839331, 0.005594597198069096, -0.009474869817495346, 0.030206523835659027, -0.04925457760691643, -0.008540901355445385, 0.015951206907629967, 0.02622486650943756, -0.002233537845313549, 0.02750292979180813, 0.016110965982079506, -0.03273807093501091, -0.024774758145213127, 0.006537782959640026, 0.023447537794709206, -0.026691852137446404, -0.002212031977251172, -0.005192130338400602, -0.0009416496613994241, 0.017008068040013313, 0.0315583199262619, -0.006445615086704493, -0.0008633068646304309, 0.0041598486714065075, -0.034974683076143265, -0.051614075899124146, -0.0037881045136600733, -0.02257501520216465, 0.0037543096113950014, 0.018187817186117172, 0.011705335229635239, -0.016774576157331467, 0.01392351184040308, -0.01603723131120205, 0.00145087786950171, 0.006040075793862343, 0.00272202817723155, -0.03460600972175598, -0.01638132520020008, -0.028117382898926735, -0.03249229118227959, 0.007250548806041479, -0.00419057160615921, -0.06449301540851593, -0.02086683362722397, 0.01698348857462406, -0.0010860462207347155, -0.019883709028363228, -0.035613711923360825, 0.019883709028363228, 0.06346073746681213, 0.009032463654875755, 0.003597624134272337, 0.02273477241396904, 0.005825017113238573, -0.0016313735395669937, 0.0013725350145250559, 0.011170760728418827, -0.0016313735395669937, 0.02416030317544937, 0.029862429946660995, -0.012350511737167835, -0.010881967842578888, 0.021555021405220032, -0.01016305759549141, -0.015963496640324593, -0.003053833032026887, -0.018409021198749542, -0.0013848241651430726, -0.026052819564938545, -0.005831161979585886, -0.028338586911559105, 0.020313825458288193, 0.013456527143716812, -0.03057519719004631, -0.01644277013838291, -0.01311243325471878, 0.06149448826909065, 0.025733305141329765, -0.005938691087067127, -0.006894166115671396, 0.007219826336950064, -0.019920576363801956, 0.006236701272428036, 0.004258161410689354, 0.02489764802157879, 0.043355826288461685, -0.018753115087747574, -0.039767418056726456, -0.004912554286420345, -0.0033702764194458723, 0.011901960708200932, -0.006132244132459164, -0.02003117837011814, -0.0014877450885251164, 0.0168605986982584, -0.0070170569233596325, -0.03467974439263344, -0.0048726145178079605, 0.03785032406449318, 0.006083087529987097, -0.036375634372234344, 0.023472115397453308, -0.007840423844754696, 0.0010353538673371077, 0.000686651561409235, -0.023349225521087646, 0.028879305347800255, -0.0041752103716135025, -0.04664929583668709, -0.0067835645750164986, -0.001731222146190703, 0.01647963747382164, 0.026175711303949356, -0.02365645207464695, -0.026495225727558136, 0.028854727745056152, -0.010169202461838722, -0.01479603536427021, -0.012553281150758266, -0.035638291388750076, 0.007791267707943916, -0.005241286475211382, 0.01952732540667057, 0.05938076600432396, -0.002130616921931505, 0.003947862423956394, 0.034655164927244186, 0.05077842250466347, -0.004436352755874395, 0.01041498314589262, 0.012497980147600174, -0.028756415471434593, 0.03436022996902466, 0.03401613608002663, 0.023521272465586662, 0.02492222562432289, 0.015951206907629967, 0.010027877986431122, -0.004605327732861042, 0.03217277675867081, -0.007649943698197603, 0.016147833317518234, 0.005201347172260284, -0.0011536360252648592, 0.0320744626224041, 0.003471661126241088, 0.006599228363484144, -0.017892880365252495, -0.002720491960644722, 0.009032463654875755, 0.0015453500673174858, 0.02219405397772789, -0.006574650295078754, 0.0060707987286150455, 0.006055437494069338, 0.025831617414951324, 0.026372335851192474, -0.01926925592124462, -0.012540992349386215, -0.015447355806827545, 0.021419841796159744, -0.016995778307318687, -0.001360245980322361, -0.021985139697790146, 0.014243027195334435, 0.03686719760298729, -0.0070600686594843864, -0.011398108676075935, 0.02568414807319641, 0.018949739634990692, 0.022378388792276382, -0.0031275672372430563, 0.034335650503635406, 0.0021751646418124437, -0.0440685898065567, 0.015078684315085411, 0.08130446076393127, 0.008270541206002235, 0.04984445124864578, -0.011293651536107063, -0.01338279340416193, 0.0026267878711223602, 0.010396549478173256, 0.01435362920165062, 0.020596474409103394, 0.023201756179332733, -0.01888829469680786, -0.012657738290727139, -0.033893242478370667, 0.005084601230919361, -0.0182246845215559, -0.031361695379018784, 0.03200072795152664, 0.02239067852497101, 0.002405584789812565, -0.0055331517942249775, -0.017659388482570648, 0.01647963747382164, 0.019035764038562775, 0.016504215076565742, -0.01214774139225483, 0.037260446697473526, 0.010249081067740917, 0.009640771895647049, -0.0031168144196271896, 0.011791358701884747, 0.014968082308769226, 0.0016728491755202413, -0.012473402544856071, 0.029075929895043373, 0.0386122465133667, -0.0013871283736079931, -0.017536496743559837, -0.012067862786352634, 0.03234482184052467, -0.004626833368092775, -0.055743202567100525, 0.04527292028069496, 0.014169293455779552, 0.013014120981097221, 0.004611472133547068, 0.011324374005198479, 0.00565911503508687, 0.02969038300216198, 0.023914523422718048, 0.005361105315387249, 0.01746276207268238, 0.024873070418834686, -0.018200106918811798, -0.018433598801493645, 0.013653152622282505, 0.01794203743338585, 0.020977435633540154, 0.0016574878245592117, 0.006623806431889534, -0.0009854295058175921, 0.01834757626056671, 0.011484132148325443, 0.012756050564348698, -0.021616466343402863, 0.013309058733284473, 0.01436591800302267, -0.006881876848638058, 0.04419148340821266, -0.013653152622282505, 0.032025307416915894, 0.006691396702080965, -0.017511919140815735, 0.0024286266416311264, -0.0004266610194463283, 0.0544159859418869, 0.02740461751818657, 0.0029985320288687944, -0.023164888843894005, -0.003993946593254805, 0.006445615086704493, 0.011551721952855587, 0.0038065381813794374, -0.014759168028831482, -0.019551904872059822, -0.052154798060655594, 0.010150768794119358, -0.011250640265643597, -0.011582444421947002, 0.018556490540504456, 0.014034113846719265, 0.01918323151767254, 0.019121786579489708, -0.021567311137914658, 0.006881876848638058, 0.00018337590154260397, -0.001826462452299893, 0.018200106918811798, 0.01560711394995451, 0.01392351184040308, 0.007047779392451048, -0.008018615655601025, -0.0063841696828603745, 0.02089141309261322, 0.02397596836090088, 0.003499311627820134, 0.035294197499752045, -0.0402589812874794, -0.05026227980852127, 0.02359500713646412, -0.013198456726968288, 0.00793873704969883, -0.05392442271113396, 0.02137068659067154, 0.007484041154384613, -0.024725601077079773, 0.02870725840330124, -0.013726887293159962, 0.04070138558745384, 0.03492552414536476, 0.006931033451110125, -0.029936164617538452, -0.028756415471434593, -0.007465607486665249, -0.011545578017830849, -0.0070539237931370735, -0.018519623205065727, -0.024946805089712143, -0.002600673586130142, -0.01247954647988081, 0.01597578637301922, -0.02337380312383175, 0.01126907393336296, 0.01816323958337307, 0.02740461751818657, -0.03762912005186081, -0.042151495814323425, -0.0028310935012996197, 0.009487158618867397, 0.0023548922035843134, -0.015189285390079021, -0.03168121352791786, 0.03708840161561966, 0.023803921416401863, -0.003563829232007265, 0.018421310931444168, -0.03448311984539032, -0.049647826701402664, -0.024393796920776367, 0.002723564160987735, 0.012362800538539886, 0.022378388792276382, 0.007963314652442932, 0.024787046015262604, -0.026077399030327797, -0.02223092131316662, 0.020915990695357323, 0.04374907538294792, 0.004519304260611534, -0.016455059871077538, -0.044117748737335205, 0.04473220184445381, 0.008737525902688503, 0.036400213837623596, 0.0059755584225058556, 0.029862429946660995, -0.00447629252448678, -0.03271349519491196, 0.017696255818009377, 0.009794386103749275, 0.020252380520105362, -0.009911132045090199, -0.03340168297290802, -0.01689746603369713, 0.013640863820910454, 0.019011184573173523, 0.014476520009338856, 0.01908491924405098, -0.013014120981097221, -0.0054440563544631, 0.01271918322890997, 0.01724155992269516, -0.000447014783276245, -0.006562361493706703, 0.01880227029323578, 0.02492222562432289, -0.0418565608561039, -0.0187654048204422, 0.00303232716396451, 0.0478782020509243, -0.050532639026641846, -0.012461112812161446, -0.02698678895831108, -0.002577631501480937, 0.03386866673827171, -0.013259902596473694, -0.03404071182012558, 0.0010722209699451923, 0.021677913144230843, 0.009720651432871819, 0.01209858525544405, 0.031607478857040405, 0.0293708685785532, -0.013886644504964352, 0.007232115603983402, -0.012915808707475662, -0.013223035261034966, -0.03966910392045975, -0.017647098749876022, 0.020657919347286224, 0.03745707497000694, 0.0016697768587619066, -0.018937451764941216, -0.005056950729340315, -0.01550880167633295, -0.0022873023990541697, -0.02720799297094345, 0.07756858319044113, -0.01704493537545204, -0.007600787561386824, -0.011023292317986488, 0.03386866673827171, -0.011650034226477146, -0.01145955454558134, 0.01310014445334673, 0.006110738031566143, 0.007963314652442932, -0.018089504912495613, 0.051269982010126114, 0.014378207735717297, 0.007865002378821373, -0.004780446644872427, 0.016725419089198112, -0.0004443265497684479, 0.01698348857462406, -0.0035085284616798162, 0.027330882847309113, 0.005032372660934925, -0.01527530886232853, 0.03401613608002663, -0.030501462519168854, 0.006605373229831457, -0.037678275257349014, -0.0012242982629686594, 0.02239067852497101, -0.026814742013812065, 0.00973294023424387, -0.008743670769035816, 0.008362709544599056, -0.03369661793112755, -0.023508982732892036, -0.009788241237401962, -0.020018888637423515, -0.00868222489953041, -0.00978209637105465, 0.026937633752822876, 0.012915808707475662, -0.03699008747935295, 0.004921771120280027, -0.037801168859004974, 0.022181764245033264, -0.000695100286975503, 0.02181309275329113, -0.025634991005063057, -0.03266433626413345, 0.020178645849227905, 0.011846659705042839, 0.003723587142303586, -0.010089322924613953, -0.0652303621172905, -0.017769990488886833, 0.003437866223976016, 0.02870725840330124, 0.0021751646418124437, 0.008737525902688503, -0.04121752828359604, -0.012399667873978615, 0.019170943647623062, -0.01117690559476614, -0.018876004964113235, 0.005155263002961874, 0.012092441320419312, 0.027797866612672806, 0.009603905491530895, -0.03622816503047943, 0.03035399317741394, -0.02267332747578621, -0.010267514735460281, -0.010457995347678661, 0.0010729890782386065, 0.0006467120838351548, -0.003993946593254805, 0.011490277014672756, -0.02486078068614006, 0.024111147969961166, -0.017057223245501518, -0.0005844986881129444, -0.007477896753698587, 0.0015668559353798628, 0.026274023577570915, 0.030624352395534515, -0.0034962391946464777, 0.009093908593058586, -0.004347257316112518, -0.008245963603258133, -0.008823549374938011, 0.010249081067740917, -0.006239773239940405, -0.0015960424207150936, 0.0004089954891242087, -0.01338279340416193, 0.015926629304885864, 0.011404253542423248, -0.0010345857590436935, -0.02502053789794445, 0.018998896703124046, -0.014513387344777584, 0.009014029987156391, -0.021456709131598473, 0.0031106697861105204, 0.004488581325858831, 0.005189058370888233, -0.00544712832197547, -0.0009255203185603023, 0.022624170407652855, -0.015803739428520203, 0.005241286475211382, -0.00011338583863107488, 0.0053058043122291565, -8.223113400163129e-05, -0.008055482991039753, -0.020154068246483803, 0.007637654431164265, -0.001783450716175139, -0.01965021714568138, -0.029739540070295334, -0.004768157843500376, 0.0009854295058175921, -0.0022442906629294157, 0.02502053789794445, -0.01223990973085165, 0.01257171481847763, 0.024627288803458214, -0.036916352808475494, 0.012940386310219765, 0.00793873704969883, -0.0002010414464166388, -0.008418010547757149, -0.0009861974976956844, 0.03298385441303253, 0.0040369583293795586, 0.005705198738723993, -0.051614075899124146, 0.009247521869838238, -0.01065461989492178, 0.013259902596473694, -0.016774576157331467, -0.01126907393336296, -0.010709920898079872, -0.029936164617538452, -0.028879305347800255, -0.02796991355717182, -0.005250503309071064, -0.012915808707475662, -0.009757518768310547, -0.00011741818889277056, 0.025831617414951324, -0.014918926171958447, 0.01017534639686346, -0.025634991005063057, 0.006992478389292955, 0.04699338972568512, 0.03733418136835098, 0.0228576622903347, -0.002104502636939287, 0.05284298583865166, -0.0013725350145250559, -0.038120683282613754, 0.012964964844286442, -0.01924467831850052, 0.01111546065658331, 0.009757518768310547, 0.010077034123241901, -0.025290897116065025, 0.02257501520216465, 0.0006931801326572895, -0.014390496537089348, -0.016627106815576553, -0.02848605439066887, 0.014464231207966805, 0.011041725985705853, -0.017450474202632904, -0.02981327474117279, 0.0007119977963156998, 0.023164888843894005, -0.0337211973965168, -0.01255942601710558, 0.00712765846401453, -0.031263384968042374, 0.020903700962662697, -0.014169293455779552, -0.006267423741519451, -0.015963496640324593, 0.025708725675940514, -0.01812637224793434, 0.00438105221837759, -0.029739540070295334, 0.030378570780158043, -0.017806855961680412, 0.02289452962577343, -0.022943686693906784, -0.021407553926110268, -0.02105117030441761, 0.004553099162876606, 0.015471934340894222, 0.006003208924084902, 0.02213260717689991, 1.2325069292273838e-05, -0.00674669723957777, 0.021542733535170555, 0.0050262282602488995, -0.01123835053294897, -0.05682464316487312, -0.014144714921712875, -0.013567129150032997, -0.032688915729522705, 0.015066394582390785, 0.03195157274603844, 0.029026774689555168, -0.0036037685349583626, 0.019895998761057854, 0.021038880571722984, -0.01108473725616932, 0.017794568091630936, -0.003407143522053957, -0.01666397415101528, -0.01117690559476614, -0.009929565712809563, 0.012454968877136707, 0.03131254017353058, -0.020743943750858307, -0.0033364815171808004, -0.016246145591139793, -0.01073449943214655, 0.00954245962202549, 0.02207116223871708, -0.018421310931444168, 0.04930373281240463, -0.024025123566389084, -0.007195248268544674, -0.030747244134545326, -0.008301264606416225, -0.02698678895831108, -0.033770352602005005, -0.012221476063132286, 4.867622192250565e-05, -0.01017534639686346, 0.016110965982079506, -0.009333545342087746, 0.002158267190679908, 0.005656042601913214, -0.03244313597679138, 0.018519623205065727, -0.003542323363944888, -0.031140493229031563, -0.021100327372550964, -0.017315294593572617, 0.004221294075250626, -0.02193598262965679, -0.00447629252448678, -0.017475051805377007, 0.014955793507397175, -0.06542699038982391, -0.0315583199262619, 0.0017803783994168043, -0.01112774945795536, -0.01310014445334673, -0.010009444318711758, -0.045199185609817505, -0.006055437494069338, 0.029985321685671806, 0.011600878089666367, 0.013653152622282505, 0.001537669450044632, -0.020535029470920563, -0.0004811937396880239, -0.03544166684150696, -0.009149209596216679, 0.03340168297290802, -0.006550072226673365, -0.00636573601514101, -0.037383340299129486, -0.0271834135055542, 0.005001649726182222, 0.004424063954502344, -0.0076868110336363316, 0.029764117673039436, -0.00553929666057229, 0.03539251163601875, -0.018716247752308846, -0.00462068896740675, 0.04480593651533127, 0.02991158701479435, -0.002663654973730445, -0.019502747803926468, -0.0024639577604830265, -0.010648475959897041, -0.010771366767585278, -0.009315111674368382, 0.012504125013947487, 0.014070980250835419, 0.0009708362049423158, 0.025032827630639076, -0.012270632199943066, 0.0015929702203720808, 0.021407553926110268, -0.05299045145511627, -0.0001547654246678576, -0.024442952126264572, 0.029764117673039436, 0.0024163376074284315, -0.01784372329711914, 0.04232354462146759, -0.0033794932533055544, -0.022525858134031296, 0.013345926068723202, -0.0358840748667717, 0.019736239686608315, -0.00693717785179615, 0.018482755869627, 0.00798789318650961, 0.017733123153448105, 0.023091156035661697, -0.04829603061079979, -0.05451429635286331, 0.0028141960501670837, -0.007213681936264038, -0.031066758558154106, 0.019097208976745605, 0.001814173418097198, -0.0359332300722599, 0.03163205459713936, 0.02197284996509552, -0.0029386228416115046, 0.004648339468985796, -0.025315476581454277, 0.013579417951405048, -0.023472115397453308, -0.01512784045189619, 0.01430447306483984, -0.016688551753759384, -0.013763753697276115, -0.010427272878587246, -0.014587121084332466, -0.01295267604291439, -0.01606180891394615, -0.01398495677858591, 0.012196898460388184, 0.013124722987413406, -0.00030818674713373184, -0.01271918322890997, 0.019859131425619125, 0.018187817186117172, 0.014808325096964836, -0.0036559971049427986, -0.029985321685671806, 0.0005844986881129444, 0.058250173926353455, 0.04266763851046562, -0.014660855755209923, -0.019662505015730858, 0.019453590735793114, -0.038341887295246124, 0.012350511737167835, 0.0008072380442172289, 0.007139947265386581, -0.031263384968042374, -0.005714415572583675, 0.035957805812358856, -0.020694786682724953, 0.05446514114737511, 0.0014885130804032087, 0.002138297539204359, 0.014439652673900127, 0.02127237431704998, -0.014648566953837872, 0.029444603249430656, 0.0013095536269247532, -0.032148197293281555, -0.011361241340637207, 0.0075762090273201466, -0.003425577189773321, -0.04613315314054489, -0.012608582153916359, 0.01087582390755415, -0.025364631786942482, -0.0008794362656772137, 0.018236974254250526, -0.009597760625183582, -0.022329233586788177, -0.034114446491003036, 0.02794533595442772, -0.041291262954473495, -0.002015406731516123, 0.0027619677130132914, 0.02422174997627735], [0.030840426683425903, 0.03840237483382225, -0.003923205658793449, 0.01112957764416933, -0.01866782084107399, 0.008504229597747326, -0.047102171927690506, 0.03674301505088806, 0.015325392596423626, 0.01562170684337616, 0.023349592462182045, -0.009677635505795479, 0.02029162459075451, -0.02423853613436222, -0.047623686492443085, 0.029109949246048927, 0.04314341023564339, 0.004930675495415926, -0.023871107026934624, 0.00032001978252083063, 0.038497194647789, 0.04060695692896843, -0.08235175907611847, 0.010649547912180424, -0.0033987287897616625, 0.0004955861950293183, 0.01293116994202137, -0.008225694298744202, 0.08448522537946701, -0.05153504014015198, 0.09600593894720078, -0.029607757925987244, 0.03273683786392212, -0.005277363583445549, 0.005994444712996483, 0.0002957590331789106, -0.005283289588987827, 0.009440584108233452, 0.027166124433279037, -0.024416325613856316, -0.030864130705595016, 0.008462745696306229, -0.006121860351413488, -0.035699985921382904, -0.00014445338456425816, 0.06646929681301117, 0.041460342705249786, -0.024297799915075302, -0.0031350087374448776, 0.02274511009454727, 0.03389839455485344, 0.06452547013759613, -0.03503623977303505, -0.004818075802177191, 0.028375089168548584, 0.0048773386515676975, -0.024250388145446777, 0.05983185023069382, 0.0016104700043797493, -0.0009770974284037948, -0.04001432657241821, -0.026336444541811943, -0.02472449280321598, 0.03771492466330528, -0.030129270628094673, 0.004506945610046387, -0.03619779273867607, 0.046912532299757004, -0.047102171927690506, 0.0005344775272533298, -0.010270264931023121, 0.013748998753726482, 0.0315752848982811, -0.07552467286586761, -0.03380357101559639, 0.04402050003409386, 0.009002038277685642, -0.05897846445441246, 0.03965874761343002, 0.011212545447051525, -0.04361751303076744, 0.04925934225320816, -0.017648499459028244, 0.01558614894747734, 0.0009622817160561681, -0.0116807222366333, -0.10610434412956238, -0.000547811680007726, 0.016617324203252792, -0.019912343472242355, -0.0644780620932579, -0.007692327722907066, 0.007959011010825634, 0.032973892986774445, -0.012563739903271198, 0.015538739040493965, 0.028138035908341408, -0.004966232925653458, -0.06680116802453995, 0.026976482942700386, -0.01931971311569214, -0.03920835256576538, -0.016961049288511276, 0.01359491515904665, 0.006904130801558495, -0.013843819499015808, -0.055564917623996735, 0.010442127473652363, 0.01338156871497631, -0.01665288209915161, 0.027948394417762756, -0.01702031120657921, -0.04288265109062195, 0.05817248672246933, -0.02657349593937397, -0.004569171462208033, -0.07296451181173325, -0.01824112795293331, 0.04831113666296005, -0.000987468520179391, -0.02728465013206005, 0.028446203097701073, 0.02676313742995262, -0.04707846790552139, -0.03558145835995674, -0.03107747808098793, 0.026549790054559708, -0.00666707893833518, -0.03276054561138153, -0.020007163286209106, 0.039066120982170105, -0.022673994302749634, 0.050966113805770874, -0.03133823350071907, 0.01616692543029785, 0.05850435793399811, 0.0338272787630558, -0.003517254488542676, -0.0038906109984964132, -0.04333304986357689, -0.012030373327434063, -0.04183962568640709, 0.029892219230532646, 0.013701587915420532, -0.025530468672513962, -0.020469414070248604, 0.025933455675840378, -0.01960417628288269, 0.02016124688088894, -0.0012830423656851053, 0.01931971311569214, 0.00091264903312549, 0.0053603313863277435, 0.00536329485476017, -0.01872708462178707, 0.02628903277218342, 0.04669918492436409, 0.02560158260166645, -0.03131452947854996, -0.025886045768857002, -0.05011272802948952, 0.005375147331506014, -0.03925576061010361, -0.05068165436387062, 0.04307229444384575, -0.02203395590186119, 0.025554172694683075, 0.04944898560643196, -0.03238126263022423, -0.033400584012269974, -0.07149479538202286, -0.007455275859683752, -0.04679400473833084, -0.018027782440185547, -0.044091615825891495, -0.03728823363780975, 0.05215137451887131, 0.00710562476888299, 0.01271782349795103, 0.0056181252002716064, -0.011408112943172455, 0.03655337169766426, -0.05030237138271332, -0.027047598734498024, -0.03437249734997749, -0.0027497997507452965, -0.011971110478043556, -0.005757393315434456, -0.032618314027786255, -0.01443644892424345, 0.014258659444749355, -0.01831224374473095, -0.011609607376158237, -0.04667548090219498, -0.023740727454423904, -0.025364531204104424, -0.023634053766727448, 0.030650785192847252, 0.019331566989421844, -0.0030238907784223557, 0.012457067146897316, -0.012160751968622208, 0.018490033224225044, 0.04729181528091431, -0.030864130705595016, 0.02285178378224373, -0.001045249868184328, 0.005544046405702829, 0.02265029028058052, 0.0024282983504235744, 0.04835854843258858, 0.00400913693010807, -0.04001432657241821, -0.002271251520141959, 0.042598191648721695, 0.009304279461503029, 0.0019823447801172733, 0.012125194072723389, 0.029181065037846565, 0.05613384395837784, -0.0543796606361866, 0.004287672694772482, -0.014886846765875816, 0.012421509250998497, -0.02481931261718273, -0.04492129758000374, 0.034016918390989304, -0.022176185622811317, -0.022045807912945747, -0.06115933880209923, -0.03356651961803436, 0.013227485120296478, 0.005867029540240765, -0.010768073610961437, -0.01275338139384985, 0.027853574603796005, -0.031030068174004555, -0.05191432312130928, 0.02109760046005249, 0.03124341368675232, -0.0073723080568015575, -0.011609607376158237, -0.02119242213666439, 0.006993025075644255, 0.054853763431310654, -0.009920613840222359, -0.020718319341540337, 0.002786839148029685, 0.026265328750014305, -0.021796904504299164, 0.038497194647789, -0.048690419644117355, 0.08273104578256607, -0.05978443846106529, 0.03437249734997749, 0.02764022722840309, 0.0209316648542881, -0.03629261627793312, 0.020137540996074677, -0.028801782056689262, 0.0006681894883513451, 0.017221806570887566, 0.008308662101626396, 0.018881168216466904, -0.054427068680524826, 0.004818075802177191, 0.014400891028344631, -0.027592817321419716, 0.015906168147921562, 0.026857957243919373, -0.0317649282515049, 0.014803878962993622, 0.004266930744051933, -0.009594667702913284, -0.03418285399675369, 0.023954074829816818, 0.03302130103111267, -0.05798284709453583, 0.005176616366952658, 0.03743046149611473, -0.050966113805770874, -0.04063066095113754, -0.019710848107933998, -0.09899278730154037, 0.001425273367203772, 0.007224150467664003, 0.010205076076090336, -0.01187628973275423, -0.024096304550766945, 0.023325886577367783, 0.042764127254486084, -0.05599161237478256, 0.016060251742601395, -0.006619668565690517, 0.050349779427051544, -0.0057277618907392025, -0.006098154932260513, -0.0016845486825332046, -0.04677030071616173, -0.017707761377096176, 0.007052287925034761, 0.050017908215522766, -0.007822706364095211, -0.0008667202782817185, -0.04605914652347565, -0.015538739040493965, -0.005547009874135256, 0.037809744477272034, -0.030650785192847252, -0.001523057115264237, 0.005247732158750296, 0.02479560859501362, -0.003472807351499796, -0.06609001010656357, -0.011947405524551868, -0.005194395314902067, -0.017909256741404533, -0.03484660014510155, 0.05580196902155876, -0.022626584395766258, 0.03268942981958389, 0.00675597321242094, 0.030769310891628265, -0.010436201468110085, -0.0014408298302441835, -0.005798877216875553, 0.026976482942700386, 0.01496981456875801, -0.040298789739608765, -0.011218471452593803, -0.05622866377234459, 0.020149394869804382, 0.020919812843203545, -0.015123898163437843, -0.032618314027786255, -0.03972986340522766, 0.004824002273380756, -0.002662386978045106, -0.002589789917692542, -0.03714600205421448, 0.06618483364582062, -0.021796904504299164, -0.010928083211183548, 0.018418917432427406, 0.007698253728449345, 0.0015349097084254026, 0.019616028293967247, 0.0465332493185997, -0.017008459195494652, 0.010732515715062618, -0.008551640436053276, 0.0023082909174263477, -0.06665893644094467, -0.005164763890206814, -0.029892219230532646, -0.01588246412575245, 0.04221890866756439, -0.012385951355099678, 0.0005400333902798593, 0.01545577123761177, 0.031124887987971306, 0.00292907003313303, 0.045774683356285095, 0.023942220956087112, 0.05916810408234596, -0.03268942981958389, -0.04124699532985687, -0.03193086385726929, -0.0032239030115306377, -0.04345157742500305, -0.007158961147069931, -0.013523799367249012, 0.00807161070406437, -0.016818817704916, -0.0030698194168508053, -0.02362220175564289, -0.013725293800234795, -0.005102538038045168, -0.01629730500280857, -0.013180074281990528, 0.01213704701513052, -0.007200445514172316, -0.0135475043207407, 0.002684610430151224, 0.05243583768606186, 0.016569914296269417, -0.09135972708463669, -0.0038402376230806112, 0.01702031120657921, -0.005997408181428909, 0.026431264355778694, 0.007010804023593664, -0.0319545678794384, 0.04160257428884506, -0.010833262465894222, 0.015562443993985653, -0.007330823689699173, 0.04456571862101555, -0.009499846957623959, 0.006797457579523325, -0.035889625549316406, 0.009944318793714046, 0.004112847149372101, -0.006222607102245092, -0.02031533047556877, 0.0018060376169160008, 0.027118714526295662, 0.006430027540773153, 0.018063340336084366, -0.03079301491379738, 0.004708439577370882, 0.028991423547267914, 0.030484847724437714, 0.024677081033587456, 0.02939441055059433, -0.018821904435753822, 0.014045313000679016, 0.022626584395766258, -0.02410815842449665, -0.07609359174966812, 0.025364531204104424, -0.0012956357095390558, -0.027213534340262413, -0.00728341331705451, -0.020327182486653328, -0.010673252865672112, -0.01668843999505043, -0.023645907640457153, -0.004261004272848368, -0.07509797811508179, -0.00545218912884593, -0.003126119263470173, 0.024866722524166107, -0.017577383667230606, -0.014874993823468685, -0.03081672079861164, 0.006732268258929253, -0.02048126608133316, -0.03965874761343002, -0.07011989504098892, 0.01824112795293331, -0.017636645585298538, 0.02958405204117298, 0.0014897218206897378, -0.04968603700399399, 0.012036300264298916, -0.009612446650862694, 0.010916231200098991, -0.011076240800321102, -0.030674489215016365, 0.009345763362944126, -0.0015852832002565265, -0.06912427395582199, -0.020528677850961685, 0.003591333283111453, -0.012291130609810352, -0.038900185376405716, -0.021145012229681015, 0.01398605015128851, -0.020327182486653328, -0.01905895583331585, -0.009861350990831852, 0.05509081482887268, 0.04044102132320404, 0.02825656160712242, 0.027213534340262413, -0.004551392514258623, -0.007354529108852148, 0.0037987534888088703, -0.036150384694337845, -0.0008904254646040499, -0.00237348023802042, -0.010376937687397003, -0.01909451372921467, 0.07130514830350876, 0.00905537512153387, -0.02797210030257702, -0.023479970172047615, -0.001270448905415833, -0.035794805735349655, 0.001120810047723353, 0.04795555770397186, -0.027569113299250603, -0.033519111573696136, 0.014661647379398346, 0.025554172694683075, 0.04122329130768776, 0.00807161070406437, -0.06898204237222672, -0.03266572579741478, 0.023029573261737823, -0.034206561744213104, 0.011982963420450687, -0.010608063079416752, 0.007887895219027996, 0.0018134454730898142, -0.026692021638154984, 0.004548429511487484, 0.0954844281077385, 0.007621211931109428, 0.04477906599640846, -0.05376332625746727, 0.040915124118328094, -0.012291130609810352, 0.010193223133683205, -0.02754540741443634, 0.018288537859916687, -0.01231483556330204, 0.015088340267539024, 0.0043439725413918495, -0.01640397682785988, 0.025459352880716324, -0.0024401508271694183, -0.030247796326875687, -0.04458942636847496, -0.029797399416565895, -0.03354281559586525, 0.006305575370788574, -0.04058324918150902, 0.041460342705249786, 0.03875795379281044, -0.019627880305051804, -0.017577383667230606, -0.010934009216725826, -0.007490833755582571, -0.013464536517858505, -0.0038283849135041237, -0.043380461633205414, 0.02135835774242878, 0.010133960284292698, 0.0026223843451589346, -0.04795555770397186, -0.0465332493185997, 0.047102171927690506, 0.022804373875260353, 0.0015526886563748121, 0.0060744499787688255, 0.03840237483382225, -0.003641706658527255, 0.0043439725413918495, 0.07272746413946152, 0.010424348525702953, -0.006673005409538746, 0.00027501702425070107, 0.005055127665400505, -0.007295266259461641, 0.008770912885665894, -0.0017704798374325037, -0.015301687642931938, 0.011846658773720264, -0.027166124433279037, 0.014021608047187328, -0.020101984962821007, -0.033590227365493774, 0.014531268738210201, 0.022022102028131485, 0.016190631315112114, -0.028019510209560394, 0.0028475834988057613, -0.03539181873202324, -0.001555651775561273, 0.020113836973905563, -0.002589789917692542, 0.01743515208363533, 0.015088340267539024, 0.0029024018440395594, 0.0037187484558671713, 0.012000742368400097, -0.029062537476420403, 0.00010463609942235053, -0.051772091537714005, -0.0032001978252083063, 0.008682018145918846, -0.0076449173502624035, 0.04570356756448746, 0.033068712800741196, 0.03380357101559639, -0.0061751967296004295, 0.01565726473927498, 0.014874993823468685, -0.0005770727293565869, 0.03380357101559639, -0.018584853038191795, 0.012729676440358162, -0.018620410934090614, 0.03159899264574051, -0.023385150358080864, -0.03017668053507805, -0.02922847494482994, 0.013879377394914627, 0.042337432503700256, -0.015645412728190422, 0.030935246497392654, -0.02259102649986744, 0.007164887618273497, 0.03162269666790962, 0.02113315835595131, 0.0334479957818985, -0.008693871088325977, -0.0025053401477634907, 0.021180570125579834, 0.013322305865585804, -0.022318417206406593, -0.014898699708282948, -0.01403346098959446, 0.00032168655889108777, 0.0035617018584161997, 0.02012568898499012, -0.01171628013253212, -0.004832891747355461, 0.0056922039948403835, 0.006821162533015013, 0.00844496674835682, -0.03695635870099068, -0.03283166140317917, -0.003935058135539293, -0.027308356016874313, -0.008883512578904629, -0.027142420411109924, 0.020623497664928436, -0.01093993615359068, -0.004346935544162989, 0.025388237088918686, 0.0006230014842003584, -0.046201374381780624, 0.0005352182779461145, -0.0042580412700772285, -0.04774221405386925, 0.013357862830162048, -0.01403346098959446, 0.0042580412700772285, -0.004071362782269716, -0.02044570818543434, 0.014851288869976997, 0.012954874895513058, 0.026241622865200043, 0.022709552198648453, -0.010732515715062618, 0.004951417446136475, 0.018644116818904877, -0.0011467376025393605, 0.029702577739953995, 0.008101241663098335, -0.04534798860549927, 0.011390333995223045, -0.01610766351222992, -0.008581271395087242, 0.010880673304200172, 0.009855424053966999, 0.009351689368486404, 0.01760108955204487, 0.019758259877562523, -0.015100193209946156, -0.06234459578990936, 0.008504229597747326, 0.007935306057333946, -0.006803383585065603, 0.032618314027786255, 0.010400643572211266, -0.029109949246048927, 0.019165629521012306, -0.015550591051578522, -0.009322058409452438, 0.017932960763573647, -0.010311748832464218, -0.0435463972389698, 0.030958952382206917, -0.01581134833395481, 0.008978333324193954, -0.017778877168893814, 0.0062107546254992485, -0.050349779427051544, 0.004020989406853914, -0.06718045473098755, -0.020979074761271477, -0.031385645270347595, -0.0368141271173954, 0.0012430398492142558, -0.04987567663192749, 0.008124946616590023, -0.020753875374794006, -0.012385951355099678, -0.015918022021651268, -0.026620905846357346, -0.04805038124322891, -0.03404062241315842, 0.0019453054992482066, -0.027308356016874313, -0.004118773154914379, 0.019070809707045555, -0.018430769443511963, 0.039160940796136856, 0.017506267875432968, -0.02356293797492981, 0.014803878962993622, 0.049828268587589264, 0.007698253728449345, -0.022496206685900688, -0.012895612046122551, -0.0364348478615284, 0.014021608047187328, -0.010264338925480843, 0.007834558375179768, -0.032428670674562454, -0.021310947835445404, 0.02029162459075451, 0.015953579917550087, 0.04174480587244034, 0.03404062241315842, -0.02647867426276207, 0.01074436865746975, 0.01752997376024723, -0.01649879850447178, -0.0026357185561209917, -0.04124699532985687, 0.003952837083488703, 0.010442127473652363, -0.01249262411147356, -0.004850670229643583, -0.016747701913118362, -0.008764986880123615, 0.032096799463033676, -0.05798284709453583, 0.026810547336935997, 0.000101580357295461, -0.008267178200185299, -0.011550343595445156, 0.00033576152054592967, -0.006192975677549839, 0.006086302455514669, 0.036861538887023926, -0.01786184497177601, -0.015965431928634644, 0.015835054218769073, 0.00029890736914239824, -0.009973950684070587, 0.002327551366761327, -0.006530774291604757, -0.012670413590967655, -0.016475092619657516, 0.0009756159270182252, -0.030295206233859062, 0.03541552275419235, -0.027663933113217354, -0.050966113805770874, 0.00886573363095522, -0.03107747808098793, -0.018738936632871628, 0.010365085676312447, 0.02702389284968376, -0.03750157728791237, 0.0079886419698596, 0.0160721056163311, -0.0068152365274727345, -0.0014415706973522902, -0.025933455675840378, 0.004984011873602867, 0.029062537476420403, -0.03027150221168995, 0.0033928025513887405, 0.01665288209915161, 0.01918933540582657, 0.02472449280321598, 0.033234648406505585, 0.03565257415175438, -0.03427767753601074, -0.011870363727211952, -0.0013223040150478482, 0.023124393075704575, 0.0012526700738817453, -0.023811843246221542, -0.0026860921643674374, 0.006637447513639927, 0.01336971577256918, 0.01947379671037197, -0.003644669894129038, 0.011692575179040432, -0.011508859694004059, -0.03404062241315842, -0.04416273161768913, 0.0017008458962664008, -0.023717021569609642, -0.0052240267395973206, 0.006844867952167988, 0.02913365326821804, -0.03415914997458458, -0.01150293368846178, -0.008160504512488842, -0.010548800230026245, -0.010199149139225483, -0.009541330859065056, -0.03541552275419235, 0.0038698690477758646, -0.020362740382552147, -0.007318971212953329, -0.015906168147921562, 0.004178036004304886, -0.04274041950702667, -0.03354281559586525, 0.009310205467045307, -0.00784048531204462, -0.00044113839976489544, -0.05196173116564751, 0.006181123200803995, 0.044707950204610825, 0.017612941563129425, -0.00036928209010511637, 0.03415914997458458, 0.014673500321805477, 0.016925491392612457, -0.03418285399675369, 0.027332060039043427, -0.008077536709606647, 0.023717021569609642, 0.018122602254152298, -0.028991423547267914, -0.02436891384422779, 0.012125194072723389, -0.01928415521979332, 0.0019112293375656009, -0.01558614894747734, -0.009079080075025558, -0.006566332187503576, -0.022508058696985245, 0.01834780164062977, -0.05210396274924278, 0.026857957243919373, -0.0031350087374448776, -0.018584853038191795, -0.008735354989767075, 0.0003944688360206783, 0.04646213352680206, -0.001730477437376976, 0.0015541701577603817, -0.013559357263147831, -0.005952960811555386, -0.02404889464378357, 8.455383976979647e-06, 0.014839435927569866, 0.02896771766245365, 0.05072906240820885, -0.015467623248696327, -0.04601173475384712, -0.019556764513254166, -0.004723255056887865, 0.011674796231091022, -0.0050847590900957584, -0.021891724318265915, -0.02761652320623398, 0.03418285399675369, -0.00845681969076395, -0.021891724318265915, -0.003852090099826455, 0.00849237758666277, 0.03202568367123604, -0.028920307755470276, 0.013891229405999184, -0.010702883824706078, 0.003327613230794668, -0.03318723663687706, -0.02832767739892006, 0.02038644626736641, 0.01213704701513052, -0.030058154836297035, -0.009784309193491936, 0.004364714492112398, 0.028232857584953308, -0.0012052597012370825, 0.001447496935725212, -0.01271782349795103, 0.03610297292470932, -0.013037843629717827, -0.01698475517332554, -0.009896908886730671, -0.02567269839346409, 0.01588246412575245, -0.004450645763427019, 0.018881168216466904, 0.04212408512830734, 0.00029872218146920204, -0.0036150384694337845, 0.043830860406160355, 0.04176850989460945, 0.0006970801623538136, -0.01109994575381279, 0.005144021939486265, -0.029963335022330284, 0.051155757158994675, 0.0024001484271138906, 0.02560158260166645, 0.012468919157981873, 0.013215632177889347, 0.005787024740129709, 0.002521637361496687, 0.022662142291665077, -0.008338293060660362, 0.01837150752544403, -0.016961049288511276, 0.009648004546761513, 0.041531458497047424, 0.009227237664163113, 0.029370704665780067, -0.02462967112660408, 0.020718319341540337, 0.011757764033973217, -0.004601765889674425, 0.04221890866756439, -0.01134292408823967, 0.0002626088389661163, -0.00657818466424942, 0.026905367150902748, 0.03295018523931503, -0.02903883345425129, -0.018940430134534836, -0.018881168216466904, 0.013251190073788166, -0.025008954107761383, -0.021405767649412155, -0.012148899957537651, 0.00235718279145658, 0.04828743264079094, 0.019841227680444717, -0.009808014146983624, 0.03418285399675369, 0.01048361137509346, 0.00522698974236846, -0.00781085342168808, 0.008219767361879349, 0.014507563784718513, -0.03724082186818123, 0.010791778564453125, 0.061301570385694504, 0.017648499459028244, 0.03548663854598999, 0.006465584971010685, -0.008759059943258762, -0.007129329722374678, 0.018383359536528587, 0.012504477053880692, -0.016249893233180046, 0.01831224374473095, 0.007994568906724453, -0.0055677518248558044, -0.03273683786392212, 0.01769590936601162, -0.014460153877735138, -0.028730666264891624, 0.01649879850447178, 0.009802088141441345, 0.003935058135539293, -0.01879820041358471, -0.017719615250825882, 0.03292648121714592, 0.01377270370721817, 0.01636841893196106, -0.0036476331297308207, 0.025648994371294975, 0.030129270628094673, 0.005280326586216688, -0.0014356443425640464, 0.017648499459028244, 0.010566579177975655, -0.0007770850788801908, -0.03520217910408974, 0.03584221750497818, 0.02861214056611061, -0.007561949081718922, -0.004687697160989046, 0.0029853698797523975, 0.0059796292334795, 0.0031853821128606796, -0.03804679587483406, 0.031812336295843124, 0.02154799923300743, 0.015989137813448906, -0.007236002944409847, 0.010299895890057087, 0.009393173269927502, 0.02061164565384388, 0.027332060039043427, -0.010193223133683205, 0.016249893233180046, 0.01844262145459652, 0.0037543063517659903, -0.009760603308677673, 0.015076488256454468, 0.0011282179038971663, 0.01336971577256918, -0.018229275941848755, 0.006003334186971188, 0.007650843821465969, 0.01769590936601162, -0.0014749059919267893, 0.017292922362685204, -0.023681465536355972, 0.016344714909791946, 0.0049484544433653355, -0.001539354445412755, 0.04006173834204674, -0.0019186371937394142, 0.023444412276148796, -0.0020593865774571896, -0.027071304619312286, -0.01831224374473095, 0.014981667511165142, 0.0607326440513134, 0.007158961147069931, 0.024416325613856316, -0.027687638998031616, -0.007052287925034761, 0.011953331530094147, 0.017411448061466217, 0.00026094206259585917, -0.01496981456875801, -0.003964689560234547, -0.0508238859474659, 0.012777086347341537, -0.0017852956661954522, -0.009381321258842945, 0.0205523818731308, 0.015147603116929531, 0.008711650036275387, 0.0057781352661550045, -0.007164887618273497, 0.003508365247398615, 0.0012156307930126786, -0.0019512318540364504, 0.014151986688375473, 0.03724082186818123, 0.006951541174203157, 0.005218100734055042, 0.006750047206878662, -0.008284957148134708, 0.022116923704743385, 0.023728875443339348, 0.033139828592538834, 0.017767025157809258, -0.02462967112660408, -0.043641217052936554, 0.034396201372146606, -0.028185447677969933, -0.0007233780925162137, -0.06234459578990936, 0.009819867089390755, 0.030152976512908936, -0.00770418019965291, 0.013227485120296478, 0.009754677303135395, 0.030484847724437714, 0.021654672920703888, -0.003721711691468954, -0.018786346539855003, -0.029062537476420403, -0.0004341009189374745, -0.016522502526640892, -0.011769616976380348, -0.01540836039930582, -0.02702389284968376, -0.002659423742443323, -0.01616692543029785, 0.011011051014065742, -0.031006362289190292, 0.0060151866637170315, 0.003463917877525091, 0.03081672079861164, -0.012302983552217484, -0.018620410934090614, 0.0013971234438940883, 0.006945614702999592, 0.015242423862218857, -0.024191126227378845, -0.013346010819077492, 0.012077784165740013, 0.025980865582823753, 0.0222354494035244, 0.030958952382206917, -0.03944540396332741, -0.045869503170251846, -0.01584690622985363, -0.005701093468815088, 0.012623002752661705, 0.00752639165148139, 0.03285536542534828, 0.020564235746860504, -0.014661647379398346, -0.015301687642931938, 0.013938640244305134, 0.03072190098464489, -0.008824249729514122, -0.01249262411147356, -0.027260946109890938, 0.010412495583295822, 0.020433856174349785, 0.025317121297121048, 0.009600593708455563, 0.010934009216725826, -0.01271782349795103, -0.013879377394914627, -0.006862646900117397, -0.006044818554073572, 0.013523799367249012, -0.003375023603439331, -0.01616692543029785, -0.01275338139384985, 0.015515034087002277, 0.008747207932174206, 0.013203779235482216, 0.016486946493387222, -0.0029942593537271023, -0.0011134021915495396, 0.005022532772272825, 0.008421261794865131, 0.011182913556694984, 0.009144268929958344, 0.031646400690078735, 0.021085748448967934, -0.030484847724437714, -0.013227485120296478, -0.00818420946598053, 0.039492812007665634, -0.029465526342391968, -0.007532317657023668, -0.021476883441209793, 0.014057165943086147, 0.033234648406505585, -0.010768073610961437, -0.026644611731171608, 0.015254276804625988, 0.00900796428322792, -0.011953331530094147, -0.013263043016195297, 0.00928650051355362, 0.01642768271267414, -0.01377270370721817, 0.019521206617355347, -0.021121306344866753, -0.019070809707045555, -0.029536642134189606, -0.02832767739892006, 0.020113836973905563, 0.039777275174856186, 0.002324588131159544, -0.00400913693010807, -0.008273104205727577, -0.006406322121620178, 0.01088659930974245, -0.04032249376177788, 0.06400395929813385, -0.0015941726742312312, -0.02479560859501362, -0.011805174872279167, 0.03427767753601074, 0.003946910612285137, -0.006495216395705938, 0.0035409596748650074, -0.012658560648560524, 0.01505278330296278, 0.006797457579523325, 0.04688882455229759, 0.020670907571911812, 0.01149108074605465, -0.001181554514914751, 0.00844496674835682, 0.01134292408823967, 0.024937838315963745, 0.003514291485771537, 0.004335083067417145, 0.001014877576380968, -0.013286747969686985, 0.041721098124980927, -0.019556764513254166, 0.010489537380635738, -0.028114331886172295, -0.015147603116929531, -0.016178779304027557, -0.04598803073167801, 0.005932218860834837, -0.005585530772805214, 0.0037098589818924665, -0.025388237088918686, -0.002287548966705799, -0.005467004608362913, -0.015491328202188015, -0.0001518612407380715, -0.0160721056163311, 0.04463683441281319, 0.012433361262083054, -0.01908266171813011, -0.0115384915843606, -0.03904241323471069, 0.03197827562689781, 0.010003581643104553, 0.038805361837148666, -0.024558555334806442, -0.02780616469681263, 0.016095809638500214, -0.006370764225721359, -0.007236002944409847, -0.0028475834988057613, -0.04759998247027397, -0.019556764513254166, -0.006501142866909504, 0.014057165943086147, -0.0037898640148341656, 0.005834435112774372, -0.037738628685474396, -0.022116923704743385, 0.006044818554073572, 0.012267425656318665, -0.028635844588279724, 0.01918933540582657, 0.005570714827626944, 0.03745416924357414, -0.014483858831226826, -0.03143305703997612, 0.03399321436882019, -0.025127479806542397, -0.013215632177889347, -0.005748503841459751, -0.0013023028150200844, -0.017221806570887566, 0.00016167666763067245, 0.022863635793328285, -0.02427409403026104, 0.013251190073788166, -0.011194766499102116, 0.015360950492322445, 0.00042039636173285544, -0.00843904074281454, 0.016510650515556335, 0.03231014683842659, -0.0006689302390441298, 0.002869807183742523, -0.013073401525616646, -0.009873203001916409, -0.0049128965474665165, 0.021536147221922874, -0.006098154932260513, -0.004874375648796558, -0.0077456641010940075, -0.022496206685900688, 0.01760108955204487, 0.019426386803388596, -0.0112599553540349, -0.020433856174349785, 0.030864130705595016, -0.003549849148839712, 0.0073486026376485825, -0.007947158068418503, 0.00858719740062952, 0.007467128336429596, 0.020813139155507088, -0.014151986688375473, 0.0022979199420660734, 0.007935306057333946, -0.026905367150902748, -0.014519416727125645, 0.005875919014215469, -0.007953084073960781, 0.009387247264385223, 0.00369504326954484, -0.03911352902650833, 0.004089141730219126, 0.014412743039429188, -0.025198595598340034, -0.004806223325431347, -0.012990432791411877, 0.006299648899585009, 0.009576888754963875, 0.03131452947854996, 0.009962097741663456, 0.013488241471350193, 0.024131862446665764, -0.03797568380832672, 0.026549790054559708, 0.0063115013763308525, -0.004059510305523872, -0.0023942221887409687, -0.003072782652452588, 0.033850982785224915, -0.015277981758117676, -0.025530468672513962, -0.03330576419830322, 0.007929379120469093, -0.006252238526940346, 0.005804803688079119, -0.031290825456380844, -0.0068804253824055195, -0.007384160533547401, -0.028801782056689262, -0.0026638684794306755, -0.030390027910470963, 0.002712760353460908, -0.025127479806542397, -0.019296009093523026, 0.007147108670324087, 0.023420708253979683, -0.0152305718511343, 0.022863635793328285, -0.021950988098978996, 0.004663992207497358, 0.052056554704904556, 0.015088340267539024, 0.013583062216639519, -0.0025246005970984697, 0.03797568380832672, 0.0009333910420536995, -0.02780616469681263, 0.004299525171518326, -0.01908266171813011, 0.007455275859683752, -0.007775295525789261, 0.014282365329563618, -0.023918516933918, 0.004261004272848368, 0.004669918678700924, -0.010596211068332195, -0.03477548435330391, -0.025222301483154297, 0.03091154247522354, 0.00909093301743269, -0.010957715101540089, -0.028232857584953308, 0.0011363666271790862, 0.024392619729042053, -0.05366850644350052, -0.01649879850447178, 0.01752997376024723, -0.024937838315963745, 0.013938640244305134, -0.024961544200778008, -0.008468671701848507, -0.012421509250998497, 0.011390333995223045, -0.012919317930936813, -0.0013319342397153378, -0.038283850997686386, 0.03406433016061783, 0.011182913556694984, 0.027782458811998367, 0.004586950410157442, -0.02184431441128254, -0.03188345208764076, 0.03925576061010361, 0.004213593900203705, 0.026265328750014305, 0.010525095276534557, -0.008563492447137833, 0.010175444185733795, -0.005333663430064917, -0.030935246497392654, -0.02330218255519867, -0.03918464481830597, 0.011248103342950344, -0.02300586737692356, -0.022282859310507774, 0.00782863236963749, 0.017032165080308914, 0.029252178966999054, -0.01581134833395481, 0.03117229789495468, 0.01908266171813011, -0.007846411317586899, 0.028896601870656013, -0.008255325257778168, -0.01545577123761177, -0.020042721182107925, -0.03171751648187637, 0.014531268738210201, 0.05428484082221985, -0.016569914296269417, -0.000499290123116225, -0.01050139032304287, -0.030034450814127922, 0.012990432791411877, 0.04001432657241821, -0.009932465851306915, 0.0349414199590683, -0.01460238453000784, -0.0004052102449350059, -0.031219709664583206, -0.004483240190893412, -0.03088783659040928, -0.011153282597661018, -0.03081672079861164, 0.001084511517547071, 0.019651586189866066, 0.009890981949865818, -0.004850670229643583, 0.007727885618805885, -0.026810547336935997, -0.02764022722840309, 0.013737145811319351, -0.03152787685394287, -0.042693011462688446, -0.008154578506946564, -0.037667516618967056, -0.001717143226414919, -0.02790098451077938, 0.005644793622195721, -0.01194147951900959, 0.016759555786848068, -0.051582448184490204, -0.028375089168548584, 0.018383359536528587, -0.013606767170131207, -0.010145812295377254, 0.00025131183792836964, -0.06286611407995224, 0.011034756898880005, 0.03802309185266495, -0.008919070474803448, 0.033945802599191666, 0.003893574234098196, -0.012302983552217484, -0.0035676280967891216, -0.04864300787448883, 0.0015897279372438788, 0.04944898560643196, -0.000831903307698667, -0.03795197606086731, -0.03396951034665108, -0.03484660014510155, -0.011574049480259418, 0.00986727699637413, 0.0028712886851280928, 0.021085748448967934, -0.009713193401694298, 0.025743814185261726, -0.013120811432600021, 0.009079080075025558, 0.032357558608055115, 0.009677635505795479, 0.005952960811555386, -0.027758754789829254, -0.004447682294994593, -0.012148899957537651, 0.0011163653107360005, -0.008919070474803448, 0.013227485120296478, 0.03515476733446121, 0.008255325257778168, 0.03679042309522629, -0.011704427190124989, 0.020813139155507088, 0.035178471356630325, -0.04202926531434059, -0.006874499376863241, -0.028541024774312973, 0.036316320300102234, -0.0002402000391157344, -0.013606767170131207, 0.026857957243919373, -0.005544046405702829, -0.030081860721111298, 0.009002038277685642, -0.02842249907553196, 0.017612941563129425, 0.011822953820228577, 0.00785826425999403, -0.004806223325431347, 0.017944812774658203, 0.012101489119231701, -0.04591691493988037, -0.04714958369731903, 0.011574049480259418, 0.008658313192427158, -0.01811075024306774, 0.014803878962993622, 0.015029077418148518, -0.02984480932354927, 0.006293722428381443, 0.0014512009220197797, 0.004548429511487484, 0.00785826425999403, -0.02920476906001568, 0.016795113682746887, -0.014578679576516151, -0.026976482942700386, 0.00606852350756526, -0.02700018882751465, -0.008373850956559181, -0.011751838028430939, -0.02236582711338997, -0.025103775784373283, -0.01629730500280857, -0.007775295525789261, 0.0022253228817135096, 0.026905367150902748, 0.007668622303754091, -0.01461423747241497, 0.019651586189866066, 0.009144268929958344, 0.014815730974078178, 0.008628682233393192, -0.02948923222720623, 0.01443644892424345, 0.05049201101064682, 0.05523304641246796, -0.021299095824360847, -0.030247796326875687, 0.024582261219620705, -0.03337687999010086, 0.012184456922113895, -0.004661029204726219, 0.008616829290986061, -0.026881663128733635, 0.004871412646025419, 0.02835138328373432, -0.013642325066030025, 0.0383075550198555, -0.00027501702425070107, -0.02278066799044609, -0.0039261686615645885, 0.02375257946550846, -0.03882906958460808, 0.05414260923862457, 0.0006926354253664613, 0.002518674358725548, 0.0031824191100895405, 0.00023779248294886202, -0.002623866079375148, -0.04494500160217285, -0.018904872238636017, 0.004228409845381975, -0.0463436059653759, 0.011834805831313133, 0.019106367602944374, -0.004800296854227781, -0.00701673049479723, -0.023918516933918, 0.044352371245622635, -0.03468066453933716, 0.016925491392612457, 0.02074202336370945, 0.012741528451442719], [0.03643679618835449, 0.030630800873041153, -0.0021294618491083384, 0.0174060370773077, -0.04066585376858711, -0.006194255314767361, -0.044440943747758865, 0.05404592305421829, 0.006791579537093639, 0.016151655465364456, 0.029746759682893753, 0.003428642638027668, -0.0030105155892670155, -0.026449529454112053, -0.018779883161187172, 0.024143856018781662, -0.0042499639093875885, 0.00850590132176876, -0.03270949050784111, -0.012723011896014214, 0.006373452488332987, 0.06752156466245651, -0.04893282428383827, 0.011420845054090023, 0.004375401884317398, -0.021216966211795807, -0.006707954220473766, -0.025015950202941895, 0.07339923828840256, -0.03722526505589485, 0.08873853087425232, -0.030511336401104927, 0.04284011200070381, 0.01830202341079712, -0.027811428532004356, 0.025684954598546028, 0.013176978565752506, -0.01082351990044117, 0.048861145973205566, -0.03201659396290779, -0.003165819915011525, 0.03856327012181282, 0.014096857979893684, -0.03373688831925392, 0.006791579537093639, 0.06044923886656761, 0.054428208619356155, -0.051130976527929306, -0.04009241983294487, 0.027190212160348892, 0.025708846747875214, 0.04338965192437172, -0.037750907242298126, -0.011916624382138252, -0.009581085294485092, 0.0014559784904122353, -0.03070247918367386, 0.03736862167716026, -0.016964016482234, 0.01082351990044117, -0.04544444754719734, -0.04047470912337303, -0.005713408812880516, 0.03242277354001999, -0.009766255505383015, -0.023916874080896378, -0.047499243170022964, 0.02666456624865532, -0.0422905758023262, -0.018290076404809952, 0.0018337862566113472, 0.017394090071320534, 0.04740367457270622, -0.04580284282565117, -0.031944915652275085, 0.03323513641953468, -0.014694183133542538, -0.057534296065568924, 0.023773515596985817, 0.015267614275217056, -0.027261890470981598, 0.004602385219186544, -0.0044440943747758865, 0.017633019015192986, -0.011516416445374489, -0.003536161035299301, -0.11506859213113785, -0.032733384519815445, 0.0209063570946455, 0.002301192609593272, -0.07894241064786911, -0.017776377499103546, 0.02016567625105381, 0.06637469679117203, -0.008493954315781593, 0.035051003098487854, 0.017382143065333366, -0.0036884788423776627, -0.05184776708483696, 0.04401087015867233, -0.012227232567965984, -0.022507186979055405, -0.0017516540829092264, 0.01338006928563118, 0.02647342160344124, 0.007161920890212059, -0.022507186979055405, 0.018720149993896484, 0.002480390015989542, 0.00422905758023262, -0.004500840324908495, -0.029746759682893753, -0.07803447544574738, 0.06474997848272324, -0.05046197399497032, 0.02115723490715027, -0.07459388673305511, -0.013117246329784393, 0.02396465837955475, -0.013344229198992252, -0.034214746206998825, -0.004901047796010971, 0.04018799215555191, -0.05896787717938423, -0.005334107670933008, -0.01697596162557602, -0.006242041010409594, 0.006552649661898613, -0.04546834155917168, -0.012758851051330566, 0.028910506516695023, -0.00667808810248971, 0.04733199253678322, 0.006065830588340759, 0.011731453239917755, 0.0448710173368454, 0.011665747500956059, 0.013523426838219166, 0.0009452660451643169, -0.04460819438099861, 0.011600041761994362, -0.03837212547659874, 0.037894267588853836, 0.005035445559769869, -0.061118245124816895, 0.00023052992764860392, 0.023331495001912117, 0.004877154715359211, 0.009593031369149685, -0.03113255277276039, 0.015817152336239815, 0.005967271979898214, 0.03034408576786518, 0.0006854298990219831, 0.006881178356707096, 0.03335459902882576, 0.030965302139520645, 0.006684061139822006, -0.030487442389130592, -0.019006865099072456, -0.03098919615149498, -0.012806637212634087, -0.036771297454833984, -0.023379281163215637, 0.04988854378461838, -0.02351069264113903, 0.018290076404809952, 0.03794205188751221, -0.029842332005500793, -0.028695469722151756, -0.06130938604474068, -0.008219185285270214, -0.06494112312793732, -0.012531868182122707, -0.028504325076937675, -0.06761713325977325, 0.07110550999641418, 0.01661756820976734, 0.0074964226223528385, 0.00870899111032486, -0.03309177607297897, 0.0034674687776714563, -0.04200385883450508, -0.010883252136409283, -0.035051003098487854, 0.0036765323020517826, 0.0002154101530322805, -0.022937260568141937, -0.05227784067392349, -0.01470612920820713, 0.047045279294252396, -0.026879603043198586, -0.023725729435682297, -0.011749372817575932, -0.02429916150867939, -0.011641854420304298, -0.03447756916284561, 0.057821013033390045, 0.0025923883076757193, 0.03113255277276039, 0.034453678876161575, -0.03158652037382126, 0.011534336023032665, 0.06408097594976425, -0.036126185208559036, 0.05036640167236328, -0.0035779736936092377, 0.014216323383152485, 0.006349559407681227, -0.0275008212774992, 0.03720137104392052, -0.006379425525665283, -0.0743071660399437, -0.01978338696062565, 0.035051003098487854, 0.0312759131193161, 0.04348522424697876, -0.005874686408787966, 0.006833392195403576, 0.05356806144118309, -0.028958292677998543, 0.018481221050024033, -0.012484082020819187, -0.009730416350066662, -0.01551849115639925, -0.03220773860812187, 0.009115171618759632, -0.012024142779409885, 0.004375401884317398, -0.08472450822591782, -0.007914549671113491, 0.0064391582272946835, -0.0057193823158741, -0.023630157113075256, -0.019018812105059624, 0.043270185589790344, -0.03139537572860718, -0.027166318148374557, 0.03294841945171356, 0.04298347234725952, 0.004691984038800001, -0.013272550888359547, -0.03595893457531929, 0.012077901512384415, 0.0275008212774992, -0.011594068259000778, 0.005611863918602467, 0.02735746279358864, 0.04436926543712616, 0.009449673816561699, 0.02922111563384533, -0.03098919615149498, 0.06494112312793732, -0.037655338644981384, 0.02917332947254181, 0.023152297362685204, 0.0005084724980406463, -0.03330681473016739, 0.03153873234987259, -0.03354574367403984, -0.0005820180522277951, 0.0004285803297534585, -0.02898218482732773, 0.005154910497367382, -0.0712488666176796, 0.031944915652275085, -0.0054177334532141685, -0.036078400909900665, 0.0033898164983838797, 0.009825987741351128, -0.05662636458873749, 0.023546531796455383, -0.009007653221487999, -0.004303723108023405, -0.02606724202632904, -0.020930251106619835, 0.02046433836221695, -0.03502710908651352, 0.04482322931289673, 0.05227784067392349, -0.045970093458890915, -0.022256311029195786, -0.023092566058039665, -0.06604019552469254, 0.027261890470981598, -0.004447081126272678, 0.019317474216222763, -0.04585063084959984, -0.03172987699508667, 0.018827669322490692, 0.06570569425821304, -0.035935044288635254, 0.01296194177120924, -0.04757092520594597, 0.04472766071557999, -0.018278129398822784, -0.01551849115639925, 0.008493954315781593, -0.01163588184863329, -0.024466412141919136, 0.005062325391918421, 0.08405550569295883, 0.003353977110236883, -0.026043348014354706, -0.07296916097402573, 0.013296443969011307, -0.0022474334109574556, 0.04059417545795441, -0.04389140382409096, 0.006012071389704943, 0.018361754715442657, 0.023008940741419792, 0.005226589273661375, -0.07387709617614746, -0.01864847168326378, -0.0171671062707901, -0.05466713756322861, -0.01084741298109293, 0.060927100479602814, 0.0077891116961836815, 0.02857600525021553, 0.013105299323797226, 0.028122037649154663, 0.0009236130281351507, -0.005331121385097504, -0.021575361490249634, 0.041549891233444214, 0.022268258035182953, -0.03232720121741295, -0.041095927357673645, -0.05696086585521698, 0.013965447433292866, 0.026449529454112053, -0.03070247918367386, -0.03865884244441986, -0.0598280243575573, -0.008912081830203533, -0.015243721194565296, 0.010680162347853184, -0.03939952328801155, 0.06900292634963989, -0.01983117312192917, -0.003177766455337405, 0.026831816881895065, -0.010978824459016323, -0.003044861601665616, 0.0029209167696535587, 0.05715201050043106, -0.005835860501974821, 0.044488728046417236, -0.019855067133903503, -0.008195292204618454, -0.07511953264474869, -0.009294369257986546, -0.031849343329668045, -0.04083310440182686, -0.0011752359569072723, -0.01814671792089939, -0.011504470370709896, 0.020894411951303482, 0.02941225841641426, -0.014598610810935497, 0.044393155723810196, 0.028934398666024208, 0.04171714186668396, -0.01653394289314747, -0.03784647956490517, 0.0015784300630912185, -0.0006331639597192407, -0.03428642824292183, 0.009061412885785103, -0.030583014711737633, -0.002747692633420229, -0.032398879528045654, -0.008983761072158813, -0.0009012133814394474, 0.016605621203780174, 0.010285927914083004, -0.007562128361314535, -0.02489648573100567, -0.01271106582134962, -0.00853576697409153, 0.014562771655619144, -0.005358000751584768, 0.0457550585269928, 0.02169482596218586, -0.0686684250831604, -0.024311106652021408, 0.013607052154839039, -0.0026177747640758753, 0.023295655846595764, 0.004745743237435818, -0.04510994628071785, 0.020105943083763123, -0.0009176397579722106, 0.007586021441966295, -0.018421487882733345, 0.07230015844106674, -0.0002467696904204786, -0.006325666327029467, -0.028145931661128998, 0.00434254901483655, -0.010011158883571625, -0.017883894965052605, -0.01300972793251276, 0.009802095592021942, 0.011259566992521286, 0.027142425999045372, -0.014061018824577332, -0.047642603516578674, 0.006104656495153904, 0.031658198684453964, 0.05074869096279144, 0.010638349689543247, 0.016510048881173134, -0.0034764285665005445, 0.021061662584543228, 0.022662492468953133, -0.031013088300824165, -0.06799942255020142, 0.03462092950940132, 0.0037123719230294228, -0.009366048499941826, 0.0004132738977205008, 0.008183346129953861, -0.014562771655619144, 0.006737820338457823, -0.022495241835713387, -0.013630945235490799, -0.07158336788415909, 0.012424349784851074, 0.014061018824577332, 0.025398237630724907, -0.0068274191580712795, -0.026043348014354706, -0.012071928009390831, 0.024382786825299263, 0.018911294639110565, -0.051083192229270935, -0.04059417545795441, -0.003327097510918975, -0.007597967982292175, 0.01653394289314747, 0.01942499354481697, -0.04353300854563713, 0.0004502333467826247, -0.003359950380399823, 0.018385648727416992, -0.027333568781614304, -0.01303362101316452, 0.015817152336239815, -0.012203339487314224, -0.07612303644418716, -0.019496671855449677, -0.006570569705218077, -0.02848043292760849, -0.0017979467520490289, -0.018086986616253853, -0.0021578348241746426, -0.005967271979898214, -0.034262534230947495, 0.026497315615415573, 0.05586178973317146, 0.04186050221323967, 0.04241003841161728, 0.017967522144317627, -0.015458757989108562, 0.004706917330622673, 0.010512911714613438, -0.022841690108180046, -0.01824229024350643, -0.005462532863020897, -0.01027995441108942, 0.02229215018451214, 0.08252635598182678, -0.007657700218260288, -0.005596930626779795, -0.040952567011117935, 0.011540309526026249, -0.032398879528045654, -0.01786000281572342, 0.05399813503026962, -0.02120501920580864, -0.049506254494190216, 0.025637168437242508, -0.027811428532004356, 0.023928819224238396, 0.033760782331228256, -0.019269688054919243, -0.01584104634821415, 0.02902997098863125, -0.05218226835131645, 0.028002573177218437, -0.011307353153824806, 0.028408752754330635, -0.004948833491653204, -0.03550496697425842, 0.02503984421491623, 0.07034093141555786, 0.008876241743564606, 0.037416405975818634, -0.043700262904167175, 0.013965447433292866, -0.007621860597282648, 0.02213684655725956, -0.011928570456802845, 0.021312538534402847, -0.012926102615892887, -0.0008638805593363941, 0.03292452543973923, -0.01953251101076603, -0.007848843932151794, -0.015303454361855984, -0.028504325076937675, -0.038587164133787155, -0.028265396133065224, -0.02213684655725956, -0.01697596162557602, -0.021061662584543228, 0.03177766501903534, 0.024753127247095108, -0.013021674007177353, -0.008225158788263798, -0.025015950202941895, -0.006289827171713114, -0.017573287710547447, -0.012973888777196407, -0.049554042518138885, 0.024514198303222656, 0.024681448936462402, -0.011408898048102856, -0.0374641939997673, -0.04790542647242546, 0.0202612467110157, 0.005967271979898214, 0.019245795905590057, -2.2889662432135083e-05, 0.03533771634101868, 0.033426281064748764, 0.017895841971039772, 0.05471492558717728, 0.008541740477085114, -0.008517847396433353, 0.00011629161599557847, -0.005316188093274832, -0.017429929226636887, 0.004456040915101767, 0.009133092127740383, -0.017453821375966072, 0.018899347633123398, 0.0028850773815065622, 0.020380713045597076, -0.023869087919592857, -0.01593661867082119, 0.009718469344079494, 0.02759639173746109, 0.0286237895488739, -0.014001286588609219, -0.0009594524744898081, -0.0030732345767319202, -0.002931369934231043, 0.0034047497902065516, 0.016318906098604202, 0.01289026252925396, 0.0015470704529434443, 0.0067557403817772865, 0.02232798933982849, 0.01992674544453621, -0.009037519805133343, -0.0039572748355567455, -0.04171714186668396, -0.004462013952434063, 0.03146705403923988, -0.003342030569911003, 0.04386751353740692, 0.030511336401104927, 0.03641290217638016, -0.0009131598635576665, 0.015960510820150375, 0.03466871380805969, 0.0025356425903737545, 0.01648615673184395, -0.011343192309141159, -0.00883442908525467, -0.012448242865502834, 0.005125044379383326, -0.016796765848994255, -0.04190828651189804, 0.0074964226223528385, -0.0074844760820269585, 0.016354745253920555, -0.006725873798131943, 0.01623528078198433, -0.01937720738351345, 0.008183346129953861, 0.03715358301997185, 0.020082049071788788, 0.025207094848155975, -0.005889619700610638, 0.005059338640421629, 0.010727948509156704, -0.004647184628993273, 0.006474997848272324, -0.011737426742911339, -0.022172685712575912, 0.0072037335485219955, 0.004850274883210659, 0.01268717274069786, -0.0020323966164141893, 0.0037004253827035427, 0.010297874920070171, -4.0249404264613986e-05, 0.005071285180747509, -0.03734472766518593, -0.0537114180624485, -0.011743400245904922, -0.011665747500956059, -0.005438639782369137, -0.0295078307390213, -1.705641443550121e-05, -0.02912554331123829, 0.005635756533592939, 0.022949207574129105, -0.0016306958859786391, -0.01480170153081417, 0.017143214121460915, -0.016498103737831116, -0.049410682171583176, 0.016223333775997162, -0.03232720121741295, -0.03648458048701286, 0.012794691137969494, -0.016964016482234, -0.004638224840164185, -0.002761132549494505, 0.021718719974160194, 0.007562128361314535, -0.024239428341388702, 0.008971814066171646, 0.02484869956970215, 0.02936447225511074, 0.017895841971039772, -0.005319174844771624, -0.02647342160344124, 0.011576148681342602, 0.002770092338323593, -0.009891693480312824, 0.02365405112504959, 0.0007907082908786833, 0.003058301517739892, 0.006845338735729456, 0.03459703549742699, 0.013738463632762432, -0.06154831871390343, 0.01431189477443695, 0.016999855637550354, -0.001815866562537849, 0.019269688054919243, -0.0026237478014081717, -0.031108660623431206, 0.0023220989387482405, 0.002874624216929078, -0.01765691302716732, 0.028074251487851143, -0.0061584156937897205, -0.024418625980615616, 0.011809105984866619, 0.005871700122952461, -0.02169482596218586, -0.010805600322782993, -0.041932180523872375, -0.03280506283044815, -0.02926890179514885, -0.0537114180624485, -0.017549393698573112, 0.0011162501759827137, -0.020643534138798714, 0.012627440504729748, -0.04573116451501846, 0.01780026964843273, -0.009981292299926281, -0.018063092604279518, -0.01711932010948658, -0.013929607346653938, -0.04993632808327675, -0.004491880536079407, 0.018469274044036865, -0.03822876885533333, 0.019651975482702255, 0.009049465879797935, -0.01564990170300007, 0.027094639837741852, 0.014132698066532612, -0.015315400436520576, -0.014228269457817078, 0.03488375246524811, 0.02021346054971218, -0.02055990882217884, -0.022507186979055405, -0.03954288363456726, -0.009814041666686535, 0.02341512031853199, 0.010805600322782993, -0.0352182537317276, -0.04812046140432358, 0.02425137534737587, -0.007586021441966295, 0.01507647056132555, 0.03846769779920578, -0.020739106461405754, 0.01547070499509573, 0.0211452879011631, -0.02124086022377014, -0.02435889281332493, -0.04338965192437172, 0.0133083900436759, 0.008547713980078697, -0.01617554761469364, -0.010017132386565208, -0.0422188974916935, -0.03275727480649948, 0.04245782643556595, -0.04833550006151199, -0.010070891119539738, -0.00852979440242052, -0.011952463537454605, -0.008117640390992165, 0.01293804869055748, -0.009694577194750309, 0.0021667946130037308, 0.016952069476246834, -0.024585876613855362, -0.007448636461049318, -0.008302810601890087, -0.012794691137969494, 0.003309177700430155, -0.0004856994783040136, -0.0012603547656908631, -0.014718076214194298, -0.00784287042915821, 0.0048472885973751545, -0.025446023792028427, 0.020010370761156082, -0.04207553714513779, -0.027070745825767517, -0.01604413613677025, -0.02922111563384533, -0.018469274044036865, -0.0211452879011631, 0.04018799215555191, -0.02941225841641426, 0.008201265707612038, 0.028456538915634155, -0.019616136327385902, -0.029722867533564568, -0.01263938657939434, 0.0027014000806957483, 0.026234492659568787, -0.030965302139520645, -0.012579654343426228, 0.0026073213666677475, 0.00885234959423542, 0.022566920146346092, 0.07860790193080902, 0.028169823810458183, -0.014921166002750397, -0.019759494811296463, 0.02055990882217884, 0.024633662775158882, -0.002768599195405841, -0.018947133794426918, 0.008482008241117, 0.027811428532004356, 0.013248657807707787, 0.010835466906428337, -0.009049465879797935, -0.0011095302179455757, -0.002749186009168625, -0.0422905758023262, -0.04467987269163132, -0.0004438867617864162, -0.008392409421503544, -0.02100192941725254, 0.015136202797293663, 0.011163994669914246, -0.009682630188763142, -0.005662636365741491, 0.0033002179116010666, 0.012806637212634087, -0.006265934091061354, -0.011134129017591476, -0.051035404205322266, 0.007138027809560299, -0.01517204288393259, 0.0014574717497453094, -0.02277000993490219, 0.012065955437719822, -0.02685570903122425, -0.007860790938138962, 0.021324485540390015, -0.0032763248309493065, -0.01932942122220993, -0.05237341299653053, -0.011594068259000778, 0.052994631230831146, -0.011510442942380905, 0.00341968284919858, 0.01431189477443695, -0.004521746654063463, 0.003141926834359765, -0.022053221240639687, 0.004160365089774132, -0.023522639647126198, 0.038682736456394196, 0.028456538915634155, -0.010512911714613438, -0.01830202341079712, 0.01507647056132555, 0.005340081173926592, 0.010094784200191498, 0.0031837397255003452, -0.03299620747566223, -0.02051212452352047, -0.0038796227890998125, 0.031849343329668045, -0.03134759142994881, 0.018959080800414085, 0.014276055619120598, -0.015530437231063843, -0.01986701227724552, 0.010829493403434753, 0.024418625980615616, -0.0035182414576411247, 0.0005077258101664484, -0.00341968284919858, -0.012269045226275921, -0.025899991393089294, -0.012854423373937607, 0.021515628322958946, 0.019269688054919243, 0.05715201050043106, -0.008900134824216366, -0.018803775310516357, -0.03968624025583267, 0.00113790319301188, 0.003885595826432109, 0.014873379841446877, -0.003150886856019497, -0.008249051868915558, 0.015064524486660957, -0.0013835529098287225, -0.028408752754330635, 0.0038378098979592323, 0.013845982030034065, 0.03567222133278847, -0.0295078307390213, 0.01628306694328785, 0.010692108422517776, 0.0027461994905024767, -0.019890906289219856, -0.031108660623431206, 0.012699118815362453, 0.023534584790468216, -0.02273417077958584, -0.007442663423717022, 0.007824950851500034, 0.014204376377165318, -0.0015784300630912185, -0.0008773203589953482, -0.009013626724481583, 0.03653236851096153, -0.01568574085831642, 0.00020999689877498895, -0.010901172645390034, -0.019102437421679497, 0.024466412141919136, -0.011582122184336185, 0.05012747272849083, 0.01858873851597309, 0.005110111087560654, -0.012436295859515667, 0.0395667739212513, 0.05027082934975624, 0.010668215341866016, 0.010064917616546154, -0.007693539839237928, -0.049410682171583176, 0.03302009776234627, -0.007645753677934408, 0.028122037649154663, 0.022590812295675278, 0.03619786351919174, 0.011797158978879452, 0.002492336556315422, 0.002320605795830488, -0.027907000854611397, 0.012675225734710693, 0.03005736880004406, -0.0027043865993618965, 0.04465597867965698, 0.007257492747157812, 0.022638598456978798, 0.005154910497367382, 0.008398382924497128, -0.011181915178894997, 0.003619786584749818, 0.0010826506186276674, -0.01932942122220993, 0.015255668200552464, -0.00651681050658226, 0.02592388354241848, 0.011832998134195805, -0.008822483010590076, -0.035935044288635254, -0.014861433766782284, 0.03485985845327377, -0.04245782643556595, -0.010590563528239727, 2.1198020476731472e-05, -0.010076864622533321, 0.015864938497543335, 0.027214104309678078, 0.007890656590461731, 0.0215873084962368, 0.016354745253920555, -0.017967522144317627, -0.0026984135620296, 0.035289932042360306, 0.02060769498348236, -0.036126185208559036, -0.010333714075386524, 0.057725440710783005, 0.028145931661128998, 0.026497315615415573, 0.012125687673687935, -0.00867912545800209, -0.015829099342226982, 0.012352670542895794, 0.007448636461049318, -0.01141487155109644, 0.015183988958597183, -0.0003324484277982265, -0.002296712715178728, -0.02449030429124832, 0.0033121644519269466, -0.017179053276777267, -0.02601945586502552, 0.021969595924019814, 0.022363830357789993, 0.019687816500663757, 0.005166857037693262, -0.019711708649992943, 0.010506938211619854, -0.004384361673146486, -0.0031897127628326416, 0.014491092413663864, 0.044058654457330704, 0.03488375246524811, 0.005797034129500389, -0.012340724468231201, 0.030439656227827072, 0.006725873798131943, 0.009240610525012016, -0.00654070358723402, 0.021372271701693535, 0.027142425999045372, -0.005734315142035484, 0.01338006928563118, -0.0030075288377702236, 0.011862864717841148, -0.01039941981434822, -0.02788310870528221, 0.025398237630724907, 0.008726910687983036, -0.026258384808897972, 0.007382930722087622, -0.0030911543872207403, -0.002015970181673765, 0.026975175365805626, 0.01512425672262907, -0.029531722888350487, 0.028050359338521957, 0.04692581295967102, -0.00421711103990674, -0.023104511201381683, 0.02115723490715027, -0.004142445512115955, 0.021276699379086494, -0.016641460359096527, 0.012167500331997871, 0.00860744621604681, 0.009509406052529812, 0.013977393507957458, -0.005856766831129789, -0.0106741888448596, 0.02169482596218586, 0.01874404400587082, 0.0024654569569975138, 0.010184383019804955, 0.010381500236690044, 0.03266170248389244, -0.029866226017475128, -0.01505257748067379, -0.011187887750566006, 0.016880391165614128, 0.054571568965911865, 0.014479146338999271, 0.015864938497543335, -0.00664224848151207, 0.008499927818775177, 0.006911044474691153, 0.006176335271447897, -0.025613274425268173, -0.012101794593036175, 0.004363455343991518, -0.04979297146201134, 0.013535372912883759, -0.0053072283044457436, 0.0010206782026216388, 0.02079883962869644, 0.017477715387940407, 0.008738857693970203, 0.029388366267085075, -0.019616136327385902, -0.00828489102423191, 0.018182558938860893, -0.0014933112543076277, 0.02253108099102974, 0.009330208413302898, 0.006773659959435463, 0.0015157109592109919, -0.022543026134371758, -0.004512786865234375, 0.01682065799832344, 0.041645463556051254, 0.02857600525021553, 0.012077901512384415, -0.03973402455449104, -0.04790542647242546, 0.018517060205340385, -0.011850918643176556, -0.005229576025158167, -0.03808541223406792, 0.023152297362685204, 0.0052833352237939835, -0.015279561281204224, 0.03646068647503853, 0.016342798247933388, 0.019699761644005775, 0.03247056156396866, 0.009401887655258179, -0.0007944416138343513, -0.018230343237519264, -0.0030254486482590437, -0.01633085124194622, -0.02788310870528221, -0.03275727480649948, -0.02745303511619568, 0.009282423183321953, -0.036675725132226944, 0.022160738706588745, -0.03822876885533333, 0.026377851143479347, -0.005596930626779795, 0.02587609738111496, -0.007227626629173756, -0.05227784067392349, -0.014479146338999271, 0.0017426942940801382, -0.012985834851861, -0.017346303910017014, -0.00532514788210392, 0.039280060678720474, 0.0004647931200452149, 0.0005278855096548796, 0.014037125743925571, -0.03729694336652756, -0.05710422247648239, -0.026497315615415573, 0.003524214494973421, 0.006077776663005352, -0.004103619605302811, 0.034549251198768616, 0.028886612504720688, -0.02518320083618164, -0.00534904096275568, -0.0006869231583550572, 0.03693854808807373, 0.010017132386565208, -0.009963372722268105, -0.033665210008621216, 0.01291415560990572, 0.009927533566951752, 0.026282278820872307, -0.0030911543872207403, 0.038204874843358994, 0.012627440504729748, -0.018959080800414085, 0.014526932500302792, -0.00023015659826342016, 0.030678587034344673, -0.017382143065333366, -0.01834980957210064, -0.0024191641714423895, 0.024681448936462402, 0.005202696658670902, 0.002387804677709937, 0.021969595924019814, 0.0022220471873879433, 0.004226070828735828, 0.00404388690367341, -0.00269244029186666, 0.005823913961648941, 0.01335617620497942, 0.02518320083618164, 0.0167250856757164, -0.036030612885951996, -0.0030821943655610085, 0.002569988602772355, 0.01082351990044117, -0.03010515496134758, -0.02281779609620571, -0.013630945235490799, -0.00043343359720893204, 0.01271106582134962, -0.004826381802558899, -0.018576791509985924, -0.007353064604103565, 0.015064524486660957, 0.016641460359096527, 0.021503683179616928, 0.010291901417076588, 0.018230343237519264, -0.024119963869452477, 0.02281779609620571, -0.01977144181728363, -0.034501463174819946, -0.011361111886799335, -0.018385648727416992, 0.02213684655725956, 0.01858873851597309, 0.022172685712575912, -0.0022534066811203957, 0.017597179859876633, -0.002882090862840414, -0.01050096470862627, -0.029675081372261047, 0.06083152815699577, 0.004130498971790075, -0.018624577671289444, -0.02119307406246662, 0.032494451850652695, -0.008523820899426937, 0.010202302597463131, 0.006248014513403177, 0.01475391536951065, 0.020404605194926262, -0.007006616331636906, 0.019245795905590057, 0.029053865000605583, 0.01568574085831642, -0.0017456809291616082, -0.007317225448787212, 0.02075105346739292, 0.03428642824292183, 0.017107373103499413, 0.014049072749912739, 0.014503039419651031, -0.023594317957758904, 0.02144395001232624, -0.019711708649992943, 0.023032832890748978, -0.02764417789876461, -0.012723011896014214, 0.0005861246609129012, -0.027524713426828384, 0.0021369284950196743, 0.003049341728910804, 0.01333228312432766, -0.026306170970201492, -0.011026610620319843, -0.010184383019804955, -0.016510048881173134, -0.0031747797038406134, -0.012436295859515667, 0.03089362382888794, 0.001142383087426424, -0.0036496527027338743, -0.02445446513593197, -0.028074251487851143, 0.027142425999045372, -0.013822088949382305, 0.022590812295675278, -0.0012476615374907851, -0.004408254753798246, 0.046854134649038315, -0.005805994383990765, 0.002202634233981371, -0.020010370761156082, -0.04580284282565117, -0.01721489243209362, -0.0014679250307381153, 0.011892731301486492, 0.018290076404809952, -0.005746261682361364, -0.03540939837694168, -0.01367873139679432, 0.01978338696062565, 0.006857285276055336, -0.04248172044754028, 0.029890118166804314, 0.010787680745124817, 0.006337612867355347, -0.023833248764276505, -0.028599897399544716, 0.012083875015377998, 0.00021559681044891477, -0.007173867430537939, -0.007138027809560299, 0.013762356713414192, -0.010124650783836842, -0.0049189673736691475, 0.011181915178894997, -0.02828928828239441, 0.01800336129963398, -0.015482651069760323, -0.010817546397447586, -0.014276055619120598, -0.015136202797293663, 0.028360968455672264, 0.036173973232507706, 0.0022325003519654274, -0.007998174987733364, -0.025302665308117867, 0.0033808567095547915, -0.005089204758405685, 0.00808777380734682, -0.03161041438579559, -0.017573287710547447, 0.017680805176496506, -0.0024221509229391813, 0.015243721194565296, 0.014037125743925571, -0.031013088300824165, -0.033665210008621216, 0.02666456624865532, -0.02079883962869644, -0.001524670864455402, -0.0019368247594684362, 0.00866120494902134, 0.02292531542479992, 0.028958292677998543, -0.006582516245543957, 0.014586664736270905, 0.012006222270429134, -0.006982723716646433, -0.0126632796600461, -0.017848055809736252, 0.007771191652864218, 0.01060250960290432, -0.0071798404678702354, -0.05672193691134453, 0.0008982267463579774, 0.003029928542673588, -0.03708190470933914, -0.015542383305728436, 0.007418770343065262, -0.015614062547683716, 0.004473960492759943, 0.03705801069736481, 0.0037721041589975357, 0.006206201855093241, 0.025207094848155975, -0.037989839911460876, 0.03227941691875458, 0.014562771655619144, -0.0030373951885849237, -0.009186850860714912, 0.0122212590649724, 0.03703412041068077, -0.012496029026806355, 0.0006466037593781948, -0.03777480125427246, -0.0014701649779453874, -0.015410972759127617, 0.01658172905445099, -0.006212174892425537, -0.0006088976515457034, -0.00667808810248971, -0.037989839911460876, -0.03715358301997185, -0.03576778993010521, -0.006719900760799646, -0.017155159264802933, -0.02537434548139572, -0.0075561548583209515, 0.02449030429124832, -0.009814041666686535, 0.042911794036626816, -0.04037913680076599, 0.0004472467117011547, 0.06494112312793732, 0.029627295210957527, 0.027309676632285118, -0.0003987140953540802, 0.043986976146698, 0.006624328903853893, -0.016450317576527596, 0.011396951973438263, -0.0057104225270450115, -0.002383324783295393, -0.004898061044514179, 0.003718344960361719, -0.001248408225364983, 0.021228913217782974, 0.026497315615415573, -0.01370262447744608, -0.012997780926525593, -0.024191642180085182, 0.030630800873041153, 0.006113616283982992, -0.001820346456952393, -0.02410801686346531, 0.017585232853889465, 0.023044779896736145, -0.04353300854563713, -0.021264752373099327, 0.024335000663995743, -0.020476283505558968, -0.006041937507688999, -0.02331954799592495, -0.006731847301125526, -0.007376957684755325, 0.008075827732682228, -0.020989982411265373, -0.0019532511942088604, -0.01256770733743906, 0.027261890470981598, 0.0013185938587412238, 0.04823992773890495, -0.011385004967451096, -0.019651975482702255, -0.01658172905445099, 0.028122037649154663, -0.00821321178227663, 0.012746904976665974, -0.004482920281589031, -0.020774945616722107, 0.001231981790624559, -0.020739106461405754, -0.015482651069760323, 0.0012752878246828914, -0.03502710908651352, 0.002178741153329611, -0.005713408812880516, -0.008231131359934807, 0.04205164685845375, 0.02022540755569935, 0.020237354561686516, 0.006976750213652849, 0.03270949050784111, 0.02164703980088234, -0.005080244969576597, 0.03000958263874054, -0.003619786584749818, -0.01224515214562416, -0.010023104958236217, -0.03144316375255585, 0.010716001503169537, 0.05156105011701584, -0.028958292677998543, 0.0005409520235843956, 0.0009594524744898081, -0.018170611932873726, -0.0012334751663729548, 0.019592244178056717, -0.026330064982175827, 0.007239573169499636, -0.016295012086629868, 0.0042230840772390366, -0.02542213164269924, -0.019855067133903503, -0.010578617453575134, -0.007370984647423029, -0.01732240989804268, -0.006361505948007107, -0.008720938116312027, 0.0037452245596796274, -0.0026536141522228718, -0.009282423183321953, -0.004560572560876608, -0.012579654343426228, 0.03615007922053337, -0.011199834756553173, -0.025899991393089294, 0.007335145026445389, -0.028408752754330635, -0.0014671783428639174, -0.014921166002750397, -0.019938692450523376, -0.01756134070456028, 0.024263322353363037, -0.05022304505109787, -0.011659773997962475, 0.013248657807707787, -0.021909862756729126, -0.028456538915634155, 0.003730291500687599, -0.05571842938661575, 0.0125438142567873, 0.03935173898935318, -0.004276843275874853, 0.026784030720591545, 4.598931991495192e-05, -0.0028238515369594097, -0.029842332005500793, -0.04250561073422432, -0.010566670447587967, 0.03134759142994881, -0.011713533662259579, -0.032494451850652695, -0.02838486060500145, -0.01161198876798153, -0.007365011144429445, 0.01918606273829937, -0.007394877262413502, 0.01937720738351345, -0.018266184255480766, 0.04205164685845375, -0.02095414325594902, 0.0018576792208477855, 0.026282278820872307, 0.007478503044694662, -0.00890610832720995, -0.020786892622709274, 0.017573287710547447, -0.007329171523451805, -0.006373452488332987, -0.0006055377307347953, 0.015530437231063843, 0.02991401217877865, -0.013977393507957458, 0.025398237630724907, 0.007197760511189699, 0.03371299430727959, 0.010381500236690044, -0.024633662775158882, -0.009557192213833332, -0.03772701695561409, 0.031944915652275085, 0.007173867430537939, 0.010931038297712803, 0.01702374778687954, 0.0024550037924200296, 0.016844552010297775, -0.00875677727162838, -0.0310369823127985, -0.01507647056132555, -0.009061412885785103, 0.012830530293285847, -0.0028268382884562016, 0.009246583096683025, 0.01770469918847084, -0.010423312894999981, -0.027429141104221344, 0.022889474406838417, 0.005528238136321306, -0.0005319921183399856, 0.0006846832111477852, 0.01732240989804268, -0.046161238104104996, 0.013499533757567406, -0.01291415560990572, -0.013547319918870926, 0.016306959092617035, -0.02321203052997589, 0.030630800873041153, -0.012985834851861, -0.011731453239917755, -0.0023683917243033648, -0.04993632808327675, -0.015864938497543335, -0.00851187389343977, -0.02346290647983551, -0.0029179302509874105, -0.005907539278268814, -0.012161526829004288, 0.03892166540026665, 0.01082351990044117, -0.014741969294846058, 0.006077776663005352, 0.02035681903362274, 0.009694577194750309, 0.033928032964468, 0.007890656590461731, -0.04912396892905235, 0.019568350166082382, 0.054189279675483704, 0.0400446355342865, -0.029890118166804314, -0.025302665308117867, 0.02115723490715027, -0.0307980515062809, 0.03113255277276039, 0.013141139410436153, 0.03024851344525814, -0.03118033893406391, -0.008935974910855293, 0.03476428613066673, -0.029770653694868088, 0.03196880593895912, -0.00665419502183795, 0.015960510820150375, -0.024084124714136124, 0.014741969294846058, -0.016103869304060936, 0.008822483010590076, 0.011468630284070969, 0.003126993775367737, 0.0027088667266070843, 0.015554330311715603, -0.010489018633961678, -0.03469260782003403, -0.024800913408398628, 0.0027223064098507166, -0.043748047202825546, 0.013834035955369473, 0.04305515065789223, -0.0071201082319021225, -0.0007787618087604642, -0.03134759142994881, 0.048670001327991486, -0.01653394289314747, 0.001912931795231998, 0.02666456624865532, 0.02174261212348938], [0.012049572542309761, 0.0061483136378228664, 0.04986029863357544, 0.04725498706102371, -0.053139399737119675, 0.023582573980093002, -0.032117217779159546, 0.021460141986608505, 0.0048456573858857155, 0.010803064331412315, -0.015530808828771114, -0.03267870843410492, 0.035059425979852676, 0.005325731355696917, -0.038765259087085724, 0.005140439607203007, -0.026075588539242744, 0.061179935932159424, -0.018753761425614357, -0.015317442826926708, 0.03151081129908562, 0.0505790039896965, -0.020168716087937355, 0.012790738604962826, -0.01464365515857935, -0.04453737661242485, 0.002347027650102973, -0.01885482855141163, 0.04498656839132309, -0.052330855280160904, 0.06275210529565811, -0.02047191932797432, 0.004233633633702993, -0.03775457665324211, 0.020033957436680794, 0.0042448630556464195, 0.004685632884502411, 0.0005376265035010874, 0.02189810387790203, -0.003703025635331869, -0.007681181188672781, 0.019786901772022247, -0.009023142047226429, 0.011168032884597778, -0.009747464209794998, 0.03553107753396034, 0.013026564382016659, -9.975217835744843e-05, -0.008849079720675945, 0.017967674881219864, 0.008826620876789093, 0.010067513212561607, 0.024997528642416, 0.01957353577017784, 0.0321621373295784, 0.034048743546009064, -0.0032145294826477766, 0.04247109219431877, 0.03032045252621174, -0.003088194178417325, -0.03265624865889549, -0.0009650606662034988, -0.040292512625455856, 0.020718974992632866, -0.018910977989435196, 0.01773184910416603, 0.002839735010638833, 0.01754094287753105, -0.005395917687565088, -0.00836619921028614, 0.025019988417625427, 0.03575567528605461, -0.0012415944365784526, -0.04220157861709595, -0.06135961040854454, 0.015463430434465408, 0.01988797076046467, 0.053363993763923645, 0.019674604758620262, 0.012678440660238266, -0.01928156055510044, 0.02172965742647648, -0.0278723556548357, 0.015407281927764416, 0.02263927087187767, 0.01621582731604576, -0.052330855280160904, -0.023335518315434456, -0.022684190422296524, 0.049141593277454376, -0.04927634820342064, 0.005213433410972357, -0.005438029300421476, 0.03618240728974342, 0.04027005285024643, -0.02286386676132679, 0.06333605200052261, 0.004272937774658203, -0.018978357315063477, 0.01928156055510044, 0.015317442826926708, -0.03422842174768448, 0.012105721049010754, 0.05322923883795738, 0.03328511863946915, -0.010050668381154537, -0.047614339739084244, 0.019595995545387268, 0.02942206896841526, 0.015609418042004108, 0.0015777865191921592, -0.009730619378387928, -0.02567131631076336, 0.04491918906569481, -0.05295972153544426, -0.027310866862535477, -0.03916953131556511, 0.019259102642536163, -0.0054155695252120495, -0.007231989409774542, -0.022145159542560577, -0.007731715217232704, 0.04242617264389992, -0.02951190620660782, 0.02189810387790203, -0.05677785351872444, -0.017787998542189598, -0.01847301609814167, -0.06396492570638657, -0.04345931485295296, 0.00999451894313097, -0.01460996549576521, 0.027692679315805435, -0.03564337641000748, -0.022717880085110664, 0.03925937041640282, -0.0010057686595246196, 0.004890576470643282, 0.009623936377465725, -0.02580607309937477, -0.01231908705085516, 0.005059023387730122, 0.03384660929441452, 0.03881017863750458, -0.06850176304578781, 0.02324567921459675, 0.0464913584291935, 0.013734041713178158, 0.035733215510845184, -0.008029304444789886, -0.021426452323794365, 0.05183674395084381, 0.004663173109292984, 0.02625526487827301, -0.008646943606436253, -0.0042448630556464195, -0.010763760656118393, 0.04179730266332626, 0.027018891647458076, 0.005496985744684935, -0.014115855097770691, 0.0039107766933739185, -0.008388658054172993, -0.024907689541578293, 0.008618868887424469, 0.009635166265070438, 0.0156655665487051, 0.04644643887877464, -0.02463817410171032, -0.03112899698317051, -0.0024691515136510134, 0.01986551098525524, -0.07034344971179962, -0.0015525193884968758, -0.02632264420390129, -0.05951792374253273, 0.03173540532588959, 0.03283592686057091, 0.0033829763997346163, 0.03952888399362564, 0.003874280024319887, -0.02038208208978176, -0.07690165191888809, -0.04496410861611366, -0.04172992706298828, 0.021269235759973526, 0.014834561385214329, -0.007568883243948221, -0.015193914994597435, -0.050264570862054825, 0.01475595310330391, -0.00306854210793972, 0.002738666720688343, 0.025716235861182213, 0.0053509981371462345, 0.005547519773244858, -0.037799496203660965, 0.013790191151201725, 0.018607772886753082, -0.01161160971969366, 0.044155560433864594, -0.08611008524894714, 0.03220705687999725, 0.03445301577448845, -0.06854668259620667, 0.03467761352658272, 0.023784710094332695, 0.034700073301792145, 0.02767021954059601, -0.00879854615777731, 0.0009433029335923493, -0.005421184469014406, -0.02248205430805683, 0.011106269434094429, -0.002425636164844036, 0.004685632884502411, -0.013363458216190338, 0.009837302379310131, 0.029781421646475792, 0.05525059998035431, 0.009180358611047268, 0.017496023327112198, 0.007894547656178474, -0.012476304545998573, -0.05713720619678497, 0.007692411076277494, -0.026142967864871025, -0.005292041692882776, -0.018619002774357796, -0.047524500638246536, -0.002417213749140501, 0.010224729776382446, -0.017585862427949905, -0.003893932094797492, -0.019652144983410835, -0.033734310418367386, -0.04680579528212547, -0.022459594532847404, 0.01089851837605238, 0.020303472876548767, 0.010118046775460243, -0.0040483418852090836, -0.026277724653482437, -0.0067659527994692326, 0.009652010165154934, -0.02425636164844036, -0.006131469272077084, 0.027176108211278915, 0.019517386332154274, -0.003708640346303582, -0.013026564382016659, 0.002338605234399438, 0.04379620775580406, -0.06975949555635452, 0.003851820481941104, 0.0205392986536026, 0.013363458216190338, -0.05718212574720383, -0.0002896936784964055, -0.014317991212010384, 0.004938303027302027, -0.018619002774357796, -0.007428510580211878, 0.0044133104383945465, -0.08310049772262573, -0.00834935437887907, -0.026592159643769264, -0.01659763976931572, 0.015216374769806862, 0.011533001437783241, -0.044514916837215424, 0.004256092943251133, -0.02073020488023758, -0.023402897641062737, -0.02773759886622429, 0.03009585663676262, 0.00809106882661581, 0.0006011450896039605, 0.03618240728974342, 0.02463817410171032, -0.058664459735155106, 0.00426170788705349, -0.00014967213792260736, -0.043549153953790665, 0.002274033846333623, -0.007158995606005192, -0.04157270863652229, -0.0004400676698423922, -0.006698573939502239, 0.000641502148937434, 0.03730538487434387, -0.019450008869171143, -0.010629002936184406, -0.007692411076277494, 0.0034110508859157562, 0.03568829596042633, -0.011308405548334122, 0.014430289156734943, -0.01957353577017784, -0.029107633978128433, -0.0003646174736786634, 0.028658442199230194, -0.02412160485982895, 0.0013995134504511952, -0.056688014417886734, 0.04478443041443825, -0.004604216665029526, 0.026884134858846664, 0.02150506153702736, 0.011656529270112514, -0.004101683385670185, 0.06100025773048401, 0.013947407715022564, -0.03744014352560043, -0.011415088549256325, -0.032476574182510376, -0.04027005285024643, 0.016103528439998627, 0.01592385210096836, 0.000962955120485276, 0.03254395350813866, 0.04247109219431877, 0.018169810995459557, -0.022257458418607712, -0.003703025635331869, 0.013610513880848885, 0.02234729565680027, 0.029916178435087204, -0.06594137102365494, -0.010954666882753372, -0.038540665060281754, 0.017945215106010437, 0.051881663501262665, -0.03651930019259453, 0.013778961263597012, -0.0205392986536026, -0.043099962174892426, -0.0061483136378228664, 0.0028271013870835304, 0.04294274374842644, 0.016036150977015495, -0.0008176696137525141, 0.002981511177495122, -0.0024691515136510134, 0.009141054935753345, 0.04514378309249878, 0.008843464776873589, 0.025064906105399132, -0.00047165146679617465, 0.016541490331292152, 0.010550394654273987, -0.016125988215208054, -0.08799669146537781, 0.009112980216741562, -0.058889053761959076, -0.016721168532967567, 0.020685285329818726, -0.034048743546009064, -0.021426452323794365, -0.021336615085601807, -0.012375236488878727, 0.01847301609814167, 0.0644141137599945, 0.035216644406318665, -0.0021659471094608307, -0.016507800668478012, -0.03737276419997215, 0.026681996881961823, 0.02964666485786438, -0.02351519465446472, 0.01754094287753105, 0.03119637630879879, -0.007035467773675919, -0.02373979054391384, -0.02360503375530243, -0.035284023731946945, 0.019393859431147575, 0.02964666485786438, -0.0024214249569922686, -0.020516838878393173, -0.010118046775460243, 0.011184877716004848, 0.008180906996130943, 0.001022613374516368, 0.031218836084008217, 0.027086270973086357, -0.08314541727304459, -0.00035391407436691225, -0.004623868968337774, 0.017709389328956604, 0.0040062302723526955, 0.03788933530449867, -0.0450764037668705, 0.0173724964261055, -0.016036150977015495, -0.017877837643027306, 0.040606945753097534, 0.018428096547722816, -0.021224316209554672, -0.04121335595846176, 0.015238834545016289, -0.032925765961408615, 0.006238152272999287, -0.027894815430045128, -0.02964666485786438, 0.0005274495342746377, -0.026861675083637238, -0.008804161101579666, 0.03856312111020088, 0.03090440109372139, 0.02293124608695507, 0.03283592686057091, 0.02683921530842781, -0.011196107603609562, -0.008439192548394203, -0.02971404232084751, -0.04379620775580406, 0.049456026405096054, -0.013340998440980911, -0.020483149215579033, 0.07389206439256668, 0.06445903331041336, 0.018708841875195503, -0.03710325062274933, -0.022560661658644676, 0.030365370213985443, -0.007310597691684961, -0.036990951746702194, 0.030724724754691124, -0.06468363106250763, -0.019551075994968414, 0.03317281976342201, 0.0084784971550107, 0.020202403888106346, -0.02448095753788948, -0.0015848050825297832, 0.07434125244617462, 0.0033633240964263678, 0.015317442826926708, -0.013958637602627277, -0.013419607654213905, 0.0339139886200428, 0.04536838084459305, -0.01006189826875925, -0.03434072062373161, 0.029983557760715485, -0.017877837643027306, 0.024997528642416, 0.01209449116140604, 0.010421251878142357, -0.013722811825573444, -0.033532172441482544, -0.033734310418367386, -0.002216481138020754, -0.04498656839132309, 0.002987125888466835, -0.029826341196894646, -0.05286988243460655, 0.014890710823237896, -0.020269783213734627, -0.024997528642416, 0.03434072062373161, 0.055789630860090256, 0.01957353577017784, 0.02589591220021248, 0.035284023731946945, -0.05322923883795738, -0.005205010995268822, -0.0027976231649518013, 0.014587506651878357, -0.01805751398205757, -0.0341610424220562, 0.005811419803649187, -0.015328672714531422, 0.08328017592430115, 0.018776221200823784, 0.00046673844917677343, -0.06737878173589706, 0.0005951792700216174, -0.0545768141746521, 6.654531898675486e-05, 0.05295972153544426, -0.011656529270112514, -0.04345931485295296, 0.04570527374744415, 0.008439192548394203, -0.013329769484698772, -0.018809910863637924, -0.003955695778131485, -0.035957809537649155, -0.0033773614559322596, -0.035957809537649155, 0.007462200243026018, -0.009365650825202465, -0.008231441490352154, -0.03193754330277443, -0.06059598550200462, 0.019708294421434402, 0.03878771886229515, -0.013060254044830799, 0.038540665060281754, -0.049680620431900024, 0.014329221099615097, 0.0035682679153978825, 0.034744992852211, 0.025491639971733093, 0.001073147519491613, -0.04110105708241463, -0.01441905926913023, -0.01747356355190277, -0.017518483102321625, -0.014059705659747124, 0.014744723215699196, -0.012970415875315666, -0.03858558088541031, -0.02102218009531498, -0.005685084965080023, -0.01231908705085516, -0.010370717383921146, 0.02463817410171032, 0.01585647277534008, 0.007467815186828375, -0.025244584307074547, -0.04815337061882019, 0.0030545047484338284, 0.017810458317399025, 0.0064571332186460495, -0.04662611708045006, 0.0037254851777106524, 0.02877073921263218, 0.019393859431147575, -0.043481774628162384, -0.03600272908806801, 0.006266226526349783, 0.03016323409974575, 0.0064571332186460495, -0.0031274985522031784, 0.012442614883184433, 0.028366466984152794, -0.02353765442967415, 0.06041630730032921, 0.026053128764033318, -0.00254776026122272, 0.020494379103183746, -0.011499311774969101, -0.005511023104190826, -0.021067099645733833, 0.03598026931285858, -0.002062071580439806, 0.042807985097169876, -0.005699121858924627, 0.008416732773184776, -0.029309770092368126, -0.05318431928753853, 0.005395917687565088, -0.018293339759111404, 0.042448632419109344, -0.02868090197443962, 0.019169263541698456, -0.0012486129999160767, -0.000681508332490921, 0.00991591066122055, -0.015777865424752235, -0.006249382160604, 0.015092846937477589, 0.04455983266234398, 0.01888851821422577, 0.030881941318511963, -0.025019988417625427, 0.012285398319363594, -0.02183072455227375, 0.002633387455716729, 0.02486276999115944, -3.189086783095263e-05, 0.010376332327723503, -0.00302362279035151, 0.07205037772655487, -0.0009517252910882235, -0.013239930383861065, -0.010522319935262203, -0.007338672410696745, 0.03461023420095444, -0.033599551767110825, -0.000774154148530215, -0.018124891445040703, 0.005328538827598095, -0.03613748773932457, -0.02683921530842781, 0.005856339354068041, 0.019708294421434402, 0.023200761526823044, 0.007619417272508144, -0.006968088913708925, 0.002268418902531266, 0.008062994107604027, 0.03429580107331276, 0.014115855097770691, 0.01837194710969925, 0.00021020775602664798, 0.016092298552393913, 0.015025468543171883, -0.0008689055684953928, 0.019101884216070175, -0.017192820087075233, -0.05161214619874954, -0.01747356355190277, -0.01733880676329136, 0.008096683770418167, -0.011780057102441788, 0.03937166929244995, 0.018102433532476425, 0.007422895636409521, 0.008248286321759224, -0.01704683154821396, -0.007125306408852339, 0.020483149215579033, -0.043189797550439835, -0.038675419986248016, -0.004587372299283743, -0.010679536499083042, -0.049815379083156586, 0.01201588287949562, 0.02713118866086006, 0.014991778880357742, 0.00826513022184372, 0.025019988417625427, -0.02172965742647648, -0.04110105708241463, 0.012914266437292099, -0.03090440109372139, -0.0090399868786335, 0.007377976551651955, -0.022145159542560577, 0.007759789936244488, -0.021010950207710266, -0.016586409881711006, 0.051746904850006104, -0.023066002875566483, 0.021785806864500046, -0.009438644163310528, 0.006923169828951359, 0.036474380642175674, 0.014621195383369923, -0.040382351726293564, 0.04779401421546936, 0.015834013000130653, -0.0162495169788599, 0.006923169828951359, -0.00994960032403469, 0.03562091663479805, 0.004166254773736, -0.004884961526840925, -0.025985749438405037, -0.013127632439136505, 0.01006189826875925, -0.009388110600411892, -0.004491918720304966, 0.04372882843017578, 0.02257189154624939, -0.0003597044269554317, -0.026120508089661598, -0.005438029300421476, -0.013284849934279919, 0.007147765718400478, 0.01007874310016632, -0.01243138499557972, 0.00999451894313097, -0.001305463956668973, -0.027490543201565742, 0.003003970719873905, -0.06585153192281723, -0.01766446977853775, -0.009096135385334492, -0.017810458317399025, 0.0013468738179653883, -0.007450970355421305, -0.04397588595747948, 0.00967446994036436, -0.023852089419960976, 0.01021911483258009, -0.034924667328596115, -0.034048743546009064, -0.002181387972086668, -0.034116122871637344, -0.02167350798845291, 0.03180278465151787, 0.013082713820040226, 0.0028481571935117245, 0.008933303877711296, -0.016709938645362854, 0.00905683171004057, 0.015542038716375828, 0.008742396719753742, -0.005322923883795738, 0.021201856434345245, 0.021033409982919693, 0.024436037987470627, -0.03925937041640282, -0.006142699159681797, -0.01960722543299198, 0.006524512078613043, 0.02034839242696762, -0.009191588498651981, -0.05134263262152672, -0.02015748620033264, 0.034992046654224396, 0.0006088655791245401, -0.0026769028045237064, 0.023694870993494987, 0.012712130323052406, -0.02234729565680027, -6.606279202969745e-05, -0.04770417883992195, -0.013026564382016659, -0.03690111264586449, 0.010685151442885399, -0.006591890938580036, -0.030702264979481697, -0.003295945469290018, -0.01614844799041748, -0.02522212453186512, 0.01828210987150669, -0.04860256239771843, -0.005895643495023251, 0.047838933765888214, 0.04734482243657112, -0.015452200546860695, -0.012453844770789146, -0.01393617782741785, 0.030859481543302536, -0.02002272754907608, -0.0056513953022658825, 0.018327029421925545, 0.037574902176856995, -0.01422815304249525, 0.011476852931082249, -0.012757048942148685, -0.02015748620033264, -0.02609804831445217, -0.004986030049622059, 0.005075868219137192, -0.04078662395477295, 0.0024214249569922686, -0.06144944950938225, 0.013554365374147892, 0.001359507325105369, -0.006878250744193792, -0.006451518274843693, 0.03633962199091911, 0.014284301549196243, -0.0013868799433112144, 0.005496985744684935, 0.02079758420586586, -0.01779922842979431, -0.04031497240066528, 0.00046428191126324236, -0.02179703675210476, 0.0393267497420311, -0.031690485775470734, 0.007787864189594984, -0.0014303954085335135, 0.031173916533589363, -0.005581208970397711, 0.050983279943466187, 0.009270197711884975, -0.010814294219017029, -0.0364968404173851, -0.01663132943212986, 0.02722102776169777, 0.03804655373096466, 0.010410021990537643, -0.0035907276906073093, 0.00526396743953228, 0.011437548324465752, 0.008248286321759224, 0.038967397063970566, -0.006805256940424442, -0.008826620876789093, -0.03665405884385109, -0.05331907793879509, 0.02147137187421322, -0.0494111068546772, 0.009180358611047268, 0.0007243219297379255, -0.0002977650729008019, -0.00796192605048418, -0.009573401883244514, -0.003307175124064088, 0.01995535008609295, -0.0023540460970252752, -0.04262831062078476, 0.008147217333316803, -0.01309394370764494, 0.0010127873392775655, 0.016294434666633606, -0.006451518274843693, -0.0040736086666584015, -0.033082980662584305, -0.03804655373096466, -0.011370169930160046, -0.011510541662573814, -0.0010492841247469187, -0.02179703675210476, 0.010426866821944714, 0.06248259171843529, 0.02143768221139908, -0.0163730438798666, -0.00815283227711916, -0.0077261002734303474, -0.009927140548825264, -0.007737330161035061, 0.009483563713729382, -0.013374688103795052, -0.012004652991890907, -0.007855243049561977, -0.006069705355912447, 0.017810458317399025, 0.019640915095806122, -0.025177204981446266, 0.029377149417996407, 0.005833879578858614, -0.030769644305109978, -0.000537275627721101, 0.0015033890958875418, 0.012285398319363594, -0.008484112098813057, 0.029556825757026672, -0.005460488609969616, -0.008439192548394203, 0.003251026151701808, 0.013453296385705471, 0.03452039510011673, 0.01756340265274048, 0.005800190381705761, -0.0007509926799684763, -0.010376332327723503, -0.035575997084379196, -0.013273620046675205, 0.00600794143974781, -0.01811366342008114, 0.058215267956256866, -0.039191991090774536, -0.05161214619874954, 0.0037928640376776457, -0.016676248982548714, 0.008534645661711693, 0.002838331274688244, -0.021336615085601807, -0.03346479684114456, 0.05385810509324074, -0.001419165637344122, -0.013846339657902718, -0.0019371400121599436, -0.02596329152584076, 0.0211232490837574, -0.012262938544154167, 0.021785806864500046, -0.021145706996321678, -0.015227604657411575, -0.024458497762680054, 0.025132285431027412, 0.004000615328550339, 0.01733880676329136, -0.01682223565876484, 0.0062606120482087135, 0.021853184327483177, -0.0054801409132778645, -0.00532011641189456, 0.008085453882813454, -0.026232805103063583, 0.017675699666142464, -0.010887288488447666, -0.014576276764273643, 0.01621582731604576, -0.01743987388908863, 0.034048743546009064, -0.003166802693158388, 0.0545768141746521, 0.05466665327548981, -0.024166522547602654, 0.003543000901117921, 0.006737878080457449, -0.007052312605082989, 0.03151081129908562, -0.037574902176856995, -0.015485890209674835, -0.011533001437783241, 0.048198290169239044, 0.08089945465326309, 0.03494712710380554, -0.0033099825959652662, 0.015777865424752235, 0.013296079821884632, 0.034048743546009064, -0.0007292349473573267, -0.017574632540345192, -0.021999172866344452, -0.027018891647458076, -0.019360169768333435, 0.012262938544154167, 0.01876499131321907, 0.009146669879555702, 0.025109825655817986, -0.00012923039321321994, -0.019270332530140877, 0.014284301549196243, 0.018012594431638718, 0.009208433330059052, 0.01183620560914278, -0.011926044709980488, 0.004174677189439535, 0.023717330768704414, -0.0170805212110281, -0.038024093955755234, -0.018742531538009644, 0.04242617264389992, -0.03663159906864166, -0.012824428267776966, 0.013632973656058311, -0.00519097363576293, 0.029758961871266365, 0.003806901164352894, 0.003823745995759964, 0.010443711653351784, -0.029040254652500153, -0.013992327265441418, -0.022650500759482384, 0.023717330768704414, -0.022695420309901237, -0.02009010687470436, 0.03833852708339691, 0.029332229867577553, 0.02589591220021248, 0.045615434646606445, 0.02034839242696762, 0.00392481405287981, -0.005140439607203007, 0.018169810995459557, 0.024997528642416, -0.0066592697985470295, 0.04152778908610344, 0.01569925621151924, 0.023560114204883575, -0.05987727642059326, -0.004329086747020483, -0.009988903999328613, -0.016586409881711006, -0.013060254044830799, -0.004410502966493368, -0.004738974384963512, -0.01052793487906456, -0.009427414275705814, 0.008484112098813057, 0.0038995470385998487, -0.017642011865973473, 0.01246507465839386, 0.04211173951625824, -0.030275532975792885, 0.020808814093470573, -0.0009622532525099814, 0.05489124730229378, 0.011847435496747494, 0.011044505052268505, -0.03804655373096466, 0.04294274374842644, 0.037215545773506165, -0.0014100413536652923, 0.007900162599980831, -0.02034839242696762, 0.011106269434094429, -0.008551490493118763, -0.01675485633313656, 0.05677785351872444, 0.01995535008609295, 0.020494379103183746, 0.04130319505929947, -0.003259448567405343, -0.019304020330309868, 0.022167619317770004, -0.0007264274754561484, -0.012925496324896812, 0.02367241121828556, 0.020393311977386475, 0.019416319206357002, 0.012307857163250446, -0.0033773614559322596, 0.015362362377345562, 0.02921993099153042, 0.0008927688468247652, 0.011027660220861435, -0.006911939941346645, 0.015440970659255981, 0.004489111248403788, 0.02906271442770958, 0.013835109770298004, 0.026816755533218384, 0.022324835881590843, -0.007276908494532108, -0.014104625210165977, -0.009893450886011124, 0.02038208208978176, -0.006569431163370609, -0.009129825048148632, 0.00993275549262762, 0.03368939086794853, 0.03377922996878624, 0.04172992706298828, 0.01653026044368744, -0.04379620775580406, -0.02832154743373394, 0.019719524309039116, 0.03148835152387619, -0.0009320731624029577, -0.005732811521738768, -0.011858665384352207, -0.026345103979110718, 0.016811005771160126, 0.004649135749787092, -0.012824428267776966, 0.047838933765888214, -0.007024237886071205, 0.02948944643139839, 0.014800872653722763, 0.02432374097406864, 0.03375677019357681, 0.018809910863637924, 0.0007460796623490751, 0.03368939086794853, 0.021561210975050926, 0.02596329152584076, 0.0071646105498075485, -0.0005225365166552365, 0.0201237965375185, 0.03384660929441452, -0.00160445726942271, 0.022908786311745644, -0.019292790442705154, 0.005746848415583372, -0.0289953351020813, 0.027423163875937462, 0.021695967763662338, -0.029826341196894646, -0.03317281976342201, 0.03586797043681145, -0.006575046107172966, -0.032409194856882095, 0.03487974777817726, 0.020629137754440308, 0.03523910418152809, 0.021325385197997093, 0.001176321180537343, 0.03523910418152809, -0.04462721198797226, -0.022717880085110664, 0.02015748620033264, -0.010404407046735287, -0.009775537997484207, -0.02661461941897869, 0.03701341152191162, -0.022560661658644676, 0.016945764422416687, -0.04471705108880997, 0.005241507664322853, 0.02942206896841526, 0.005224662832915783, -0.023066002875566483, -0.04006791487336159, -0.011780057102441788, 0.00783278327435255, 0.023582573980093002, -0.03198246285319328, -0.021201856434345245, 0.004573334939777851, 0.026277724653482437, 0.017462333664298058, 0.020393311977386475, -0.06504298746585846, -0.035890430212020874, 0.00409326096996665, -0.011050119996070862, -0.020146256312727928, 0.0284563060849905, 0.018001364544034004, 0.0035458083730190992, -0.028568603098392487, -0.03467761352658272, -0.018708841875195503, 0.0054155695252120495, 0.012487534433603287, 0.023560114204883575, -0.03562091663479805, 0.01238646637648344, 0.020528068765997887, 0.01067392248660326, 0.010971511714160442, 0.006075320299714804, 0.03142097219824791, 0.016260746866464615, 0.012038342654705048, -0.028658442199230194, 0.008495341055095196, -0.01837194710969925, 0.0008934707148000598, -0.003514926414936781, 0.027468083426356316, -0.002880442887544632, 0.007411666214466095, 0.02131415531039238, 0.03254395350813866, 0.005148862022906542, -0.033532172441482544, 0.006535741966217756, -0.008034919388592243, -0.0005256948643364012, 0.01272336021065712, -0.004522800911217928, -0.018416866660118103, -0.01902327686548233, 0.015003008767962456, 0.021235546097159386, -0.024683093652129173, -0.02102218009531498, -0.05300464108586311, 0.004772663582116365, 0.01940508931875229, -0.010241574607789516, -0.013981097377836704, 0.04202190041542053, -0.009876606054604053, 0.024233901873230934, 0.013262390159070492, 0.006333605386316776, 0.045907411724328995, -0.00524712260812521, 0.018585313111543655, -0.013004104606807232, -0.04395342618227005, -0.03393644839525223, 0.003416665829718113, 0.02267296053469181, -0.0008485515136271715, -0.013318539597094059, -0.010971511714160442, -0.028950417414307594, -0.002488803816959262, -0.003857435192912817, -0.010763760656118393, 0.06737878173589706, -0.01194850355386734, -0.01869761198759079, 0.0033212124835699797, 0.08148340880870819, -0.010853598825633526, 0.007787864189594984, 0.00868624821305275, -0.03512680530548096, 0.03202738240361214, -0.025985749438405037, 0.0321621373295784, -0.0021154130809009075, -0.008613253943622112, -0.020078876987099648, 0.00403711199760437, 0.03281346708536148, 0.024593254551291466, 0.025918371975421906, 0.028927957639098167, -0.013913718052208424, -0.019562305882573128, 0.01021911483258009, -0.0017602706793695688, 0.019685834646224976, -0.021841954439878464, -0.027018891647458076, 0.034992046654224396, -0.02993863821029663, 0.008164062164723873, 0.002703573554754257, 0.006356065161526203, -0.0456603541970253, -0.008197751827538013, 0.014845791272819042, -0.0043094344437122345, -0.012397696264088154, 0.017024371773004532, 0.01427307166159153, 0.04202190041542053, -0.0077261002734303474, 0.00018265967082697898, 0.010971511714160442, -0.010073128156363964, -0.021886873990297318, 0.003815323580056429, -0.021516291424632072, -0.013318539597094059, 0.03400382399559021, -0.006356065161526203, -0.006872635800391436, 0.005471718497574329, -0.031533271074295044, -0.0075969574972987175, -0.03258886933326721, 0.02017994597554207, -0.004208366386592388, -0.028703361749649048, -0.01892220787703991, -0.02767021954059601, 0.04305504262447357, 0.01019104104489088, -0.04197698086500168, -0.005979866720736027, -0.012195559218525887, 0.0037002181634306908, -0.03184770420193672, -0.022841406986117363, -0.0064571332186460495, 0.02050560899078846, 0.009556557051837444, -0.023178301751613617, 0.019393859431147575, 0.014059705659747124, -0.003722677705809474, 0.007580113131552935, -0.011892355047166348, 0.021920563653111458, -0.03225197643041611, 0.024615714326500893, -0.005362228024750948, -0.011634069494903088, 0.011145573109388351, 0.07537439465522766, -0.005732811521738768, -0.0010913958540186286, 0.004696862772107124, 0.02448095753788948, -0.024368658661842346, 0.027535462751984596, 0.0071982997469604015, -0.026053128764033318, 0.015036698430776596, -0.02064036764204502, 0.0062213074415922165, -0.001221942249685526, -0.03851820528507233, -0.021752117201685905, 0.004298205021768808, -0.0019567920826375484, 0.035149265080690384, -0.009090520441532135, -0.030477669090032578, -0.00528081227093935, -0.0009475141414441168, -0.010965896770358086, 0.009601476602256298, -0.030702264979481697, -0.014576276764273643, -0.0022698226384818554, -0.0063279904425144196, -0.013116402551531792, 0.02434620074927807, -0.013531905598938465, -0.03842836618423462, -0.022807717323303223, 0.00046182540245354176, -0.02854614332318306, -0.004396465606987476, -0.0012823024298995733, 0.006254997104406357, -0.00046744028804823756, -0.01017419621348381, 0.0023540460970252752, 0.004859694745391607, 0.043077502399683, -0.02773759886622429, 0.019876740872859955, 0.03892247751355171, 0.0008225826313719153, 0.020820043981075287, 0.012218018993735313, 0.025177204981446266, -0.003416665829718113, -0.005143247079104185, -0.018551625311374664, 0.02403176575899124, 0.0029225547332316637, -0.007355517242103815, -0.009270197711884975, 0.020269783213734627, 0.023986846208572388, -0.0084784971550107, -0.017877837643027306, -0.039191991090774536, 0.03312790021300316, -0.011072579771280289, -0.022178849205374718, 0.003436317900195718, 0.0030853867065161467, -0.03784441575407982, 0.007158995606005192, -0.0013854762073606253, 0.044357698410749435, 0.032341815531253815, -0.009966445155441761, -0.0007762596942484379, 0.004702477715909481, 0.028658442199230194, 0.0040202671661973, -0.03377922996878624, 0.011622839607298374, -0.0032706784550100565, 0.015508349984884262, 0.002234729705378413, -0.005530674941837788, -0.016092298552393913, -0.0042111738584935665, 0.01834948919713497, -0.01937139965593815, 0.00021196241141296923, -0.05170198529958725, 0.025177204981446266, 0.0018164196517318487, -0.032925765961408615, 0.0024649405386298895, -0.020483149215579033, 0.019876740872859955, -0.01004505343735218, -0.015418510884046555, 0.0037760192062705755, -0.020584218204021454, 0.00041444969247095287, -0.03575567528605461, -0.026457400992512703, -0.053723350167274475, 0.005353805609047413, 0.009236508049070835, 0.01973075419664383, -0.01857408508658409, 0.03562091663479805, 0.02971404232084751, 0.03687865287065506, -0.03611502796411514, -0.02098849043250084, -0.06131469085812569, 0.004281360190361738, -0.0011250852840021253, 0.039057232439517975, 0.013610513880848885, 0.006502052303403616, -0.008192136883735657, 0.004570527467876673, 0.017237737774848938, 0.026142967864871025, -0.01673239842057228, 0.008770471438765526, 0.02508736588060856, -0.006827716715633869, 0.0067659527994692326, 0.012644750997424126, -0.007046697661280632, 0.008849079720675945, 0.05408270284533501, 0.01243138499557972, -0.01989920064806938, -0.005634550470858812, -0.02405422553420067, -0.009741849265992641, -0.05767623707652092, -0.004253285471349955, -0.027715139091014862, 0.044874269515275955, -0.0014044265262782574, 0.0062213074415922165, 0.011139958165585995, -0.034475475549697876, 0.00952848233282566, 0.019259102642536163, 0.0004512974701356143, 0.01467734482139349, -0.038765259087085724, 0.016125988215208054, -0.01754094287753105, -0.0295792855322361, -0.0247055534273386, -0.01227416843175888, -0.013453296385705471, -0.056912612169981, 0.013082713820040226, -0.012858117930591106, 0.034565314650535583, 0.010943436995148659, -0.014654885046184063, 0.009404955431818962, 0.04521116241812706, -0.03252149373292923, -0.01788906753063202, -0.013644203543663025, -0.037350304424762726, 0.023919466882944107, -0.03571075573563576, -0.012734590098261833, -0.024233901873230934, 0.03898985683917999, -0.0006874741520732641, 0.02089865133166313, 0.026973972097039223, 0.006760337855666876, -0.0033549019135534763, 0.014857021160423756, -0.04667103663086891, 0.00617638835683465, 0.028748279437422752, 0.029399609193205833, 0.014407829381525517, 0.0029225547332316637, 0.011746367439627647, -0.027782518416643143, 0.0036609137896448374, -0.0018669537967070937, 0.028074491769075394, -0.028119411319494247, -0.02558147720992565, -0.020707745105028152, -0.038765259087085724, 0.004797930829226971, 0.03393644839525223, 0.021291695535182953, -0.015609418042004108, -0.010353872552514076, 0.026165427640080452, -0.009135439991950989, 0.026794295758008957, 0.03267870843410492, 0.001911872997879982, -0.009000682272017002, 0.006704188883304596, -0.0132062416523695, -0.00967446994036436, 0.004882154054939747, -0.0065301270224153996, 0.030050937086343765, 0.009348805993795395, -0.0038546277210116386, 0.015586958266794682, -0.011151188053190708, 0.028366466984152794, 0.028725821524858475, -0.01582278311252594, -0.018562855198979378, -0.014183233492076397, 0.039191991090774536, 0.03171294555068016, -0.01763078197836876, 0.011117499321699142, 0.0038883171509951353, 0.014475208707153797, -0.015339902602136135, -0.03326265886425972, 0.009910295717418194, 0.004901806358247995, -0.01727142743766308, 0.015766635537147522, 0.04152778908610344, 0.04680579528212547, -0.016676248982548714, -0.021067099645733833, 0.02002272754907608, 0.021684737876057625, -0.027760058641433716, 0.016945764422416687, -0.013172551989555359, -0.012442614883184433, 0.052330855280160904, 0.007900162599980831, -0.01773184910416603, 0.00427855271846056, -0.01969706453382969, 0.011634069494903088, -0.023807169869542122, -0.021875644102692604, 0.019236642867326736, -0.05870937928557396, -0.012858117930591106, -0.004550875164568424, -0.022234998643398285, -0.019977807998657227, 0.0060247862711548805, -0.01268967054784298, -0.00606409041211009, -0.007276908494532108, -0.011100654490292072, 0.026277724653482437, -0.013251160271465778, -0.006861405912786722, -0.0007236200617626309, 0.0029478217475116253, -0.01231908705085516, -0.004228018689900637, 0.02913009375333786, 0.0046828254126012325, -0.009876606054604053, 0.0013314328389242291, -0.008658173494040966, -0.014183233492076397, 0.009719389490783215, 0.020033957436680794, -0.008439192548394203, -0.0069287847727537155, 0.01940508931875229, 0.02338043786585331, -0.0298712607473135, 0.040809083729982376, -0.007473430130630732, 0.007602572441101074, -0.022594351321458817, 0.02993863821029663, 0.003371746512129903, 0.02463817410171032, 0.00608093524351716, -0.02838892675936222, 0.005539097357541323, 0.011566691100597382, 0.02405422553420067, -0.03775457665324211, 0.003893932094797492, -0.004174677189439535, -0.03324019908905029, -0.0024579218588769436, 0.032993145287036896, -0.018192270770668983, 0.03586797043681145, -0.03103915974497795, 0.009972060099244118, -0.015800325199961662, 0.013026564382016659, -0.002719014650210738, 0.011207337491214275], [0.00723848445340991, 0.01039167307317257, 0.04567861929535866, 0.0093636903911829, -0.057993095368146896, 0.035515978932380676, -0.017811251804232597, 0.009161289781332016, 0.01459414791315794, 0.027228206396102905, 0.0223705917596817, -0.03962790593504906, 0.04525251314043999, 0.005651237443089485, -0.02882610633969307, -0.014551537111401558, -0.0009494185796938837, 0.043249811977148056, -0.001028647762723267, -0.02665296196937561, 0.02816564030945301, -0.003320967545732856, -0.026887321844697, 0.029209600761532784, -0.03898874670267105, -0.0676657110452652, -0.006636608857661486, -0.01843975856900215, 0.022434508427977562, -0.05692782998085022, 0.03372633084654808, -0.03824305906891823, 0.021070966497063637, -0.06340464949607849, 0.02151837944984436, -0.03632558137178421, -0.001523330807685852, -0.01299624890089035, 0.03010442480444908, -0.014093472622334957, -0.017438409850001335, 0.017939085140824318, 0.012144035659730434, 0.043590694665908813, -0.008665941655635834, 0.014839159324765205, 0.0005872280453331769, -0.012218603864312172, 0.003078619483858347, 0.04376113787293434, 0.029635708779096603, 0.018951086327433586, 0.015265265479683876, 0.00587494345381856, -0.011920330114662647, 0.026035107672214508, 0.0024780756793916225, 0.06557779014110565, 0.031510576605796814, -0.01090832706540823, -0.031169692054390907, -0.01764081045985222, -0.07363120466470718, 0.024032406508922577, -0.03662385419011116, 0.005880269687622786, -0.0032037883065640926, 0.04186496511101723, -0.0199417844414711, -0.002102569444105029, 0.022647561505436897, 0.029230907559394836, 0.01160074956715107, -0.05748176947236061, -0.0214544627815485, -0.01789647340774536, -0.012985596433281898, -0.00891627836972475, 0.02876218967139721, 0.031148385256528854, 0.0193452350795269, 0.01625596359372139, -0.004934845957905054, -0.009294448420405388, -0.0013781882589682937, -0.012378394603729248, -0.08245161175727844, -0.01538244541734457, 0.00921455305069685, 0.02846391499042511, -0.06421425193548203, -0.015978993847966194, -0.01927066780626774, 0.03099924884736538, 0.06451252847909927, -0.00858072005212307, 0.010226556099951267, -0.035622503608465195, -0.011398348957300186, 0.022434508427977562, -0.027590395882725716, -0.03082880564033985, 0.01843975856900215, 0.0628933236002922, 0.023350637406110764, -0.008149286732077599, -0.08611612766981125, 0.022029707208275795, 0.009374342858791351, -0.017299924045801163, -0.01607486791908741, 0.031212301924824715, 0.011547486297786236, 0.05718349292874336, -0.017001649364829063, 0.00026099022943526506, 0.0011558139231055975, 0.02671687863767147, -0.012932333163917065, -0.02181665413081646, -0.02865566313266754, -0.01650097407400608, 0.04908747225999832, -0.06873098015785217, 0.011696623638272285, -0.036964740604162216, -0.027995197102427483, 0.002335596363991499, -0.06834748387336731, -0.005912228021770716, 0.007206526584923267, -0.005310352426022291, 0.036346886307001114, -0.016969691962003708, -0.00882040522992611, 0.01927066780626774, 0.014839159324765205, -0.04028837010264397, 0.028059113770723343, -0.026631657034158707, 0.03312978148460388, 0.020921830087900162, 0.01945176161825657, 0.017449062317609787, -0.06851793080568314, 0.012932333163917065, 0.019196098670363426, 0.002146511571481824, 0.005858964752405882, -0.019600899890065193, -0.01166466623544693, 0.026759488508105278, 0.020655512809753418, 0.01383780874311924, 0.005624605808407068, 0.014903075061738491, -0.022327981889247894, 0.0244798194617033, -0.0047803823836147785, 0.024096323177218437, -0.013390397652983665, -0.00915596354752779, -0.013251912780106068, -0.000275804108241573, 0.013273217715322971, -0.006359639577567577, 0.0024581020697951317, 0.04333503171801567, -0.02931612730026245, -0.024927230551838875, -0.04512467980384827, -0.01353953406214714, -0.09178334474563599, 0.007057389244437218, -0.040160540491342545, -0.05343375727534294, 0.04823525622487068, 0.009113352745771408, 0.005267741624265909, 0.01660750061273575, -0.010556789115071297, 0.007946886122226715, -0.019260015338659286, -0.032000597566366196, -0.049641408026218414, 0.025843359529972076, 0.030381394550204277, 0.04084230959415436, -0.017630156129598618, -0.010679294355213642, 0.005291710142046213, 0.014913728460669518, 0.012069467455148697, -0.007382295560091734, -0.02925221249461174, 0.025161590427160263, -0.024394597858190536, 0.010285145603120327, -0.0005332989385351539, 0.0015446360921487212, 0.049343135207891464, -0.04376113787293434, 0.011110727675259113, 0.0525815449655056, -0.06702655553817749, 0.010652663186192513, 0.022093622013926506, 0.020580945536494255, -0.009470216929912567, -0.007930907420814037, 0.009859039448201656, -0.034173741936683655, -0.045849062502384186, 0.040650561451911926, -0.010950937867164612, 0.01105746440589428, 0.008703225292265415, 0.003241072641685605, 0.022519730031490326, 0.0610184520483017, -0.01416804175823927, 0.0006870967335999012, -0.014423705637454987, -0.024884620681405067, -0.054839909076690674, 0.019803300499916077, -0.015595498494803905, -0.027547786012291908, 0.004551350139081478, -0.06902925670146942, 0.017971042543649673, 0.04678649455308914, -0.0020426481496542692, -0.007872317917644978, 0.007339684758335352, -0.012772542424499989, -0.016639459878206253, -0.0447411835193634, 0.03813653439283371, 0.0022889908868819475, -0.02869827300310135, -0.0019241372356191278, -0.028059113770723343, -0.008362340740859509, 0.018386496230959892, -0.006679219659417868, 0.009459564462304115, -0.020165489986538887, 0.02428807131946087, -0.0036858213134109974, 0.010439609177410603, -0.018109526485204697, 0.015041559934616089, -0.050365790724754333, -0.02013353258371353, 0.048618752509355545, 0.023776743561029434, -0.07912798225879669, 0.057993095368146896, -0.05518079176545143, 0.011867066845297813, -0.006663240492343903, -0.00018425777670927346, -0.01130247488617897, -0.0876075029373169, 0.02882610633969307, -0.011728581972420216, -0.04105536267161369, 0.003339609829708934, 0.033577192574739456, -0.01959024742245674, -0.0033955362159758806, 0.019004350528120995, 0.0018935108091682196, -0.03477029129862785, 0.05594778433442116, -0.031212301924824715, 0.000473710591904819, 0.03717779368162155, 0.021656863391399384, -0.026567740365862846, 0.007014778442680836, -0.02556639164686203, -0.02707906812429428, 0.024330681189894676, -0.02247711829841137, 0.016351837664842606, -0.00898019503802061, -0.014093472622334957, 0.0007143942057155073, 0.05956969037652016, -0.043718528002500534, 0.009017478674650192, -0.03413113206624985, 0.02375543862581253, 0.03281020000576973, 0.0030306826811283827, -0.010237208567559719, 0.028868716210126877, 0.004633908160030842, -0.01679924875497818, 0.07380165159702301, -0.012026856653392315, 0.0034914102870970964, -0.03155318647623062, 0.04084230959415436, -0.0026218865532428026, 0.012442310340702534, 0.008197223767638206, 0.005486121401190758, -0.0039761061780154705, 0.06562040001153946, -0.04286631569266319, -0.039137884974479675, -0.011685971170663834, -0.01699099689722061, -0.02938004396855831, -0.020825956016778946, 0.0178325567394495, -0.018450412899255753, 0.021070966497063637, 0.03909527137875557, -0.021315978839993477, -0.017864516004920006, -0.008175918832421303, 0.017566241323947906, 0.03918049484491348, 0.034109827131032944, -0.04768132045865059, -0.012751237489283085, -0.02869827300310135, -0.021497074514627457, 0.04139624908566475, -0.05475468561053276, 0.015670066699385643, -0.0012390378396958113, -0.04013923183083534, 0.004359602462500334, -0.0035473366733640432, -0.02839999832212925, 0.03875438868999481, -0.001904163509607315, -0.027057763189077377, 0.022391896694898605, 0.009081395342946053, 0.03076489083468914, 0.03579294681549072, 0.023073667660355568, -0.011004201136529446, 0.015062864869832993, 0.012346436269581318, -0.0029454613104462624, -0.07235288619995117, 0.03125491365790367, -0.03274628520011902, -0.013379744254052639, 0.01553158275783062, -0.012602100148797035, 0.001585915219038725, 0.02494853548705578, -0.003363578347489238, -0.010450262576341629, 0.03788086771965027, 0.05637389048933983, 0.011217254213988781, -0.009560764767229557, -0.016085520386695862, 0.03992617875337601, 0.04751087725162506, -0.001880194991827011, 0.028144335374236107, 0.030679669231176376, -0.022200148552656174, -0.02035723812878132, -0.006434208247810602, -0.05083450675010681, 0.023052362725138664, 0.024522429332137108, -0.013070817105472088, -0.03883960843086243, -0.010077418759465218, -0.016660764813423157, -0.006322355475276709, 0.02471417747437954, 0.033875469118356705, 0.027654312551021576, -0.07929842174053192, 0.02635468728840351, 0.03621905297040939, 0.0013409039238467813, 0.01178184524178505, -0.012229257263243198, -0.054797299206256866, 0.023606300354003906, -0.03609122335910797, 0.009118678979575634, 0.07056324183940887, 0.046616051346063614, 0.008415604010224342, -0.012367741204798222, 0.02096443995833397, -0.015371792949736118, 0.019643509760499, 0.0009727212600409985, -0.05752437934279442, -0.02526811696588993, 0.007185221184045076, -0.01650097407400608, -0.01862085424363613, 0.024522429332137108, 0.04465596377849579, 0.04542295262217522, 0.03800870105624199, 0.010679294355213642, 0.017374493181705475, -0.05594778433442116, -0.034237656742334366, 0.04866136237978935, 0.011590097099542618, -0.0048416354693472385, 0.05939924716949463, 0.04883180558681488, 0.012325131334364414, -0.014658063650131226, -0.043718528002500534, 0.04001140221953392, 0.044698573648929596, 0.004540697671473026, -0.010370367206633091, -0.06779354810714722, 0.018897823989391327, 0.040884919464588165, -0.014711327850818634, 0.018887171521782875, 0.010098724626004696, -0.041183196008205414, 0.03347066789865494, 0.008495498448610306, -0.059015750885009766, -0.019643509760499, -0.005890922620892525, 0.017672767862677574, 0.03521770238876343, -0.0187273807823658, -0.011142685078084469, 0.04367591813206673, -0.003435483667999506, -0.01716144010424614, -0.03191537782549858, 0.026972541585564613, -0.05573473125696182, -0.016905775293707848, -0.06395858526229858, -0.006503450684249401, -0.03376894071698189, 0.043590694665908813, -0.027995197102427483, -0.036304276436567307, -0.0036618527956306934, -0.024991147220134735, -0.03837089240550995, 0.013326480984687805, 0.0441020242869854, 0.009022805839776993, 0.0020066953729838133, 0.03319369629025459, -0.03824305906891823, -0.019110877066850662, -0.014871117658913136, 0.014828506857156754, -0.018695423379540443, -0.021806001663208008, -0.011430307291448116, -0.02490592561662197, 0.06485341489315033, 0.04678649455308914, -0.020453112199902534, -0.048064813017845154, -0.0025699548423290253, -0.048022203147411346, -0.003885558806359768, 0.028293471783399582, -0.04043750837445259, 0.014562190510332584, 0.03999009728431702, 0.023009750992059708, 0.010130682028830051, -0.017321228981018066, -0.01594703644514084, -0.02573683299124241, 0.021007051691412926, -0.019313277676701546, 0.014711327850818634, -0.00752610620111227, -0.010562115348875523, -0.012708626687526703, -0.04721260070800781, 0.0005323002696968615, 0.006029407028108835, 0.002902850741520524, 0.019174793735146523, -0.018386496230959892, 0.04163060709834099, -0.029806150123476982, 0.03082880564033985, -0.017246661707758904, -0.007664591073989868, -0.027334732934832573, 0.004404875915497541, -0.012911027297377586, -0.03462115302681923, 0.020346585661172867, 0.017694072797894478, -0.029891371726989746, -0.051218003034591675, -0.07243810594081879, -0.023009750992059708, -0.0070680417120456696, -0.03766781464219093, -0.0033768941648304462, -0.034408099949359894, -0.013859114609658718, -0.018290622159838676, -0.038093920797109604, -0.0018815265502780676, 0.01626661606132984, 0.0105780940502882, -0.04913008213043213, -0.0024114965926855803, 0.014903075061738491, 0.023116277530789375, -0.03832828253507614, -0.037199098616838455, 0.0019361214945092797, 0.030360089614987373, -0.002881545340642333, -0.019803300499916077, 0.040224455296993256, 0.0018069578800350428, -0.046743884682655334, 0.020453112199902534, 0.005427531898021698, 0.02140120044350624, 0.01999504864215851, 0.0029507875442504883, 0.0074994745664298534, -0.03398199379444122, 0.010306451469659805, 0.025161590427160263, 0.031084470450878143, -0.020719429478049278, 0.047723930329084396, -0.012037509121000767, -0.015403750352561474, -0.0007962865638546646, -0.016405100002884865, 0.034599848091602325, -0.04307936877012253, 0.013358439318835735, -0.04878919571638107, -0.02895393781363964, 0.042887620627880096, -0.008974868804216385, -0.018279969692230225, 0.013859114609658718, 0.03715648874640465, -0.0052091521210968494, -0.001703094458207488, -0.020698124542832375, -0.0025579705834388733, -0.014221305027604103, 0.016777943819761276, 0.023734133690595627, 0.009784471243619919, 0.03082880564033985, 0.0070946733467280865, 0.046275168657302856, 0.024138934910297394, -0.0012037509586662054, -0.006210502237081528, -0.007467516697943211, 0.014881770126521587, -0.008394298143684864, -0.011824456043541431, -0.004588634707033634, 0.027100374922156334, -0.026397299021482468, -0.03711387887597084, -0.02724951133131981, 0.014487621374428272, 0.01843975856900215, 0.01717209257185459, -0.025225505232810974, 0.018780644983053207, -0.00843158271163702, 0.0172147024422884, 0.03283150866627693, 0.01078582089394331, 0.00970457587391138, 0.01296429056674242, 0.0386691652238369, -0.012527531944215298, 0.03033878467977047, 0.011952287517488003, -0.05978274345397949, -0.0338328555226326, -0.022754088044166565, 0.017299924045801163, -0.015563540160655975, 0.025523779913783073, 0.03270367532968521, 0.01796039007604122, 0.012410352006554604, -0.011856413446366787, -0.029635708779096603, 0.0033076517283916473, -0.029997898265719414, -0.06310637295246124, -0.041481468826532364, -0.005480795167386532, -0.018897823989391327, -0.00345945218577981, 0.022583644837141037, 0.016277268528938293, -0.03545206040143967, -0.0032517253421247005, -0.021113578230142593, -0.0018122842302545905, -0.012016203254461288, -0.018237357959151268, -0.03553728386759758, 0.03176623955368996, -0.020591598004102707, -0.0010219898540526628, -0.003025356214493513, -0.03355588763952255, 0.03174493461847305, -0.016831208020448685, 0.013326480984687805, 0.006700525060296059, 0.012016203254461288, 0.02200840227305889, -0.0009041447774507105, -0.05045101046562195, 0.052538931369781494, -0.001957426778972149, 0.0011764534283429384, 0.05458424612879753, -0.005432858131825924, 0.022391896694898605, -0.0007776443962939084, 0.005454163532704115, -0.02025071159005165, -0.05969752371311188, 0.008996173739433289, -0.004391560330986977, -0.014604800380766392, 0.041545383632183075, 0.042461514472961426, 0.003318304428830743, -0.012751237489283085, 0.0008555419626645744, -0.019558288156986237, -0.0055234055034816265, 0.019015002995729446, -0.024458514526486397, 0.020570291206240654, 0.02181665413081646, -0.021795347332954407, -0.006258439272642136, -0.04116189107298851, 0.007313053123652935, -0.03540945053100586, -0.019185446202754974, -0.007488822098821402, -0.0027563765179365873, -0.04175843670964241, 0.029870066791772842, -0.03479159623384476, 0.022455813363194466, -0.0332363098859787, 0.004069317132234573, 0.008655288256704807, -0.025651611387729645, -0.015435708686709404, 0.000797618122305721, 0.02013353258371353, 0.002707107923924923, 0.02948657050728798, -0.02955048717558384, -0.0380726158618927, 0.0256942231208086, -0.013166691176593304, 0.012335783801972866, 0.03883960843086243, 0.03172362968325615, 0.010056113824248314, -0.03330022469162941, -0.00209324830211699, -0.019867215305566788, 0.0126873217523098, 0.02822955697774887, 0.026866015046834946, -0.05718349292874336, -0.01612813211977482, -0.008713877759873867, -0.016160089522600174, -0.01459414791315794, 0.01807756908237934, 0.0044608027674257755, -0.031169692054390907, -0.014860464259982109, -0.03905266150832176, -0.02127336710691452, -0.021060314029455185, 0.0410979725420475, -0.012452962808310986, -0.010237208567559719, 0.01250622607767582, -0.009640660136938095, -0.03016834147274494, 0.013070817105472088, -0.07452602684497833, -0.025310726836323738, 0.02176338993012905, 0.025161590427160263, -0.022327981889247894, 0.0052490998059511185, -0.02701515331864357, 0.007813728414475918, 0.026866015046834946, -0.01890847645699978, 0.0031345461029559374, 0.010082744993269444, -0.0326397605240345, -0.01800299994647503, -0.021837959066033363, -0.00891627836972475, -0.03521770238876343, -0.0229671411216259, -0.009438259527087212, -0.022413203492760658, -0.012484921142458916, -0.02303105778992176, 0.007020104676485062, -0.007978844456374645, 0.01903630793094635, 0.0035153788048774004, 0.009267816320061684, 0.04665866494178772, 0.001109208562411368, 0.00398675911128521, 0.0059069013223052025, -0.04278109222650528, -0.03093533217906952, 0.013070817105472088, -0.013859114609658718, 0.023371942341327667, -0.013848462142050266, 0.005273068323731422, -0.005640584975481033, 0.02833608351647854, -0.0026112340856343508, 0.03879699856042862, -0.001154482364654541, -0.00782438088208437, -0.013560839928686619, -0.022455813363194466, 0.04738304391503334, 0.017864516004920006, -0.0226688664406538, 0.03148927167057991, 0.019686121493577957, -0.008543435484170914, -0.005398236680775881, 0.020218754187226295, 0.011845760978758335, 0.023244110867381096, -0.009406301192939281, -0.04431507736444473, 0.023883270099759102, -0.033321529626846313, 0.009922955185174942, 0.015989646315574646, -0.008559414185583591, -0.026184245944023132, -0.013241260312497616, -0.019654162228107452, 0.006050712428987026, -0.0013781882589682937, -0.007898949086666107, 0.019441109150648117, -0.011504875496029854, -0.010769842192530632, 0.011014853604137897, 0.0038509375881403685, 0.01890847645699978, -0.02392587997019291, -0.031936682760715485, 0.004980119876563549, 0.026439908891916275, -0.018088221549987793, -0.02194448560476303, 0.0027537134010344744, 0.05833398178219795, 0.0038269690703600645, -0.01824801228940487, -0.005827006418257952, 0.001691110199317336, -0.009321079589426517, -0.031574491411447525, -0.0008282445487566292, -0.03606991469860077, -0.0017377156764268875, -0.005313015542924404, -0.018887171521782875, 0.026866015046834946, 0.02465026266872883, -0.015190697275102139, 0.0021931170485913754, 0.007813728414475918, -0.0320432111620903, 0.0018628843827173114, 0.01223990973085165, 0.02967831864953041, -0.0025526443496346474, 0.02320149913430214, 0.011877719312906265, 0.0030333457980304956, 0.0247780941426754, 0.003318304428830743, 0.005326331593096256, -0.011952287517488003, -0.0047803823836147785, -0.02277539297938347, -0.008122655563056469, -0.014817854389548302, 0.0047990246675908566, -0.0007163916015997529, -0.005390247330069542, 0.05718349292874336, 0.00012183983199065551, -0.040650561451911926, -0.012655363418161869, 0.004625918809324503, 0.0052490998059511185, -0.009102700278162956, 0.0032517253421247005, -0.02931612730026245, 0.047297824174165726, -0.021284019574522972, -0.030083119869232178, -0.021411852911114693, -0.04444291070103645, 0.009747186675667763, 0.0031665039714425802, 0.011547486297786236, -0.02797389216721058, 0.02369152195751667, -0.0160109531134367, 0.0038802323397248983, 0.002362227998673916, 0.007819054648280144, -0.03800870105624199, 0.029806150123476982, -0.0018322579562664032, 0.03594208508729935, -0.004793698433786631, 0.010349062271416187, -0.011259865015745163, 0.016213353723287582, 0.006546061486005783, -0.011739234440028667, -0.0037124529480934143, -0.027483869343996048, 0.004372918047010899, -0.010056113824248314, 0.023776743561029434, 0.04793698340654373, 0.005837659351527691, -0.001456751604564488, 0.009230532683432102, -0.001585915219038725, 0.0027617027517408133, -0.021965790539979935, -0.019185446202754974, 0.005784396082162857, 0.03751868009567261, 0.050195347517728806, 0.029443960636854172, -0.012378394603729248, -0.0035819578915834427, 0.026077719405293465, 0.031404051929712296, 0.002024005865678191, -0.00023152897483669221, -0.04512467980384827, -0.011398348957300186, -0.0022197486832737923, 0.024096323177218437, 0.009342385455965996, 0.013923030346632004, 0.002371549140661955, -0.009608701802790165, -0.008708551526069641, -0.00223705917596817, 0.006998799275606871, -0.023073667660355568, 0.00290817697532475, 0.006237133871763945, -0.0023848649580031633, -0.0011997561668977141, -0.015584846027195454, -0.050493620336055756, 0.021241409704089165, 0.0338328555226326, -0.050152737647295, 0.00619452353566885, 0.029273517429828644, -0.000361191836418584, 0.012953638099133968, -0.0022330645006150007, 0.016426406800746918, 0.009289122186601162, -0.023073667660355568, -0.013678018935024738, -0.012133383192121983, 0.008452887646853924, 0.006652588024735451, -0.026610352098941803, 0.01253818441182375, 0.04708477109670639, 0.05143105611205101, 0.055095572024583817, 0.010306451469659805, 0.013592798262834549, -0.019675469025969505, -0.007313053123652935, 0.02859174646437168, -0.019750036299228668, 0.014732632786035538, 0.03438679501414299, 0.024565041065216064, -0.025395948439836502, 0.02158229425549507, 0.008964215405285358, 0.014381094835698605, -0.03847741708159447, -0.0008628657087683678, 0.027057763189077377, -0.018471717834472656, -0.030019203200936317, -0.0062850709073245525, -0.008090697228908539, -0.00813330803066492, 0.0027617027517408133, 0.03636819124221802, -0.006929557304829359, 0.0157126784324646, -0.023606300354003906, 0.07652872800827026, 0.03244801238179207, 0.005070667713880539, -0.020048310980200768, 0.051771942526102066, 0.040330979973077774, -0.02882610633969307, 0.01868477091193199, 0.010290472768247128, 0.0071798949502408504, -0.013251912780106068, -0.010365040972828865, 0.04648822173476219, 0.02822955697774887, -0.001070592668838799, 0.019377194344997406, 0.006817704066634178, 0.0005349633865989745, 0.0014207989443093538, 0.009651312604546547, 0.008346361108124256, 0.007621980272233486, 0.04299414902925491, 0.016458364203572273, -0.011440959759056568, -0.005981469992548227, 0.0020160165149718523, -0.013433007523417473, -0.014690021984279156, -0.015030907467007637, 0.007259789854288101, 0.0005735793383792043, 0.004295686259865761, 0.004170517437160015, -0.013741934671998024, 0.0059495121240615845, 0.022583644837141037, -0.01849302276968956, 0.008676594123244286, 0.027398649603128433, 0.027100374922156334, 0.007084020879119635, 0.006881620269268751, 0.004202475305646658, 0.03195798769593239, 0.05070667341351509, 0.021177493035793304, 0.010215903632342815, -0.036836907267570496, -0.01771537773311138, -0.011462265625596046, -0.003624568460509181, 7.169741729740053e-05, -0.002050637500360608, 0.006892272736877203, 0.010508852079510689, 0.00903878454118967, -0.00654073478654027, -0.017757989466190338, 0.022519730031490326, -0.021742084994912148, 0.00676976703107357, 0.0036085895262658596, -0.004106601700186729, 0.011036158539354801, 0.015212002210319042, -0.007653938140720129, 0.005480795167386532, 0.04163060709834099, 0.02955048717558384, -0.023883270099759102, 0.014029556885361671, 0.0033875468652695417, 0.012634058482944965, 0.008032107725739479, 0.013305176049470901, -0.004745761398226023, -0.021550336852669716, -0.039372242987155914, 0.02767561748623848, 0.027696924284100533, -0.009800449945032597, -0.021901875734329224, 0.021731432527303696, 0.015595498494803905, -0.005068004131317139, 0.02091117762029171, 0.012559489347040653, 0.025949886068701744, 0.0380726158618927, 0.018418453633785248, 0.057268716394901276, -0.03511117771267891, -0.014732632786035538, -0.002158495830371976, -0.020527681335806847, -0.01722535490989685, -0.02369152195751667, 0.04678649455308914, 0.003241072641685605, -0.020282670855522156, -0.006791072431951761, 0.014125430956482887, 0.006913578137755394, 0.04640299826860428, -0.025289421901106834, -0.03694343566894531, 0.01723600924015045, 0.037561289966106415, 0.01368867140263319, 0.004625918809324503, -0.007291747722774744, 0.014242609962821007, 0.023180194199085236, 0.02176338993012905, 0.018482370302081108, -0.02520420029759407, -0.06216894090175629, -0.05330592393875122, -0.0015978994779288769, -0.01957959495484829, 0.026375994086265564, 0.041673216968774796, 0.0001422296918462962, 0.0031984620727598667, -0.032852813601493835, -0.04156669229269028, 0.0018935108091682196, -0.0005476134247146547, 0.005470142234116793, -0.02496984228491783, 0.008293097838759422, 0.021177493035793304, 0.007339684758335352, 0.005832333117723465, 0.020506376400589943, 0.022498423233628273, -0.003960127476602793, -0.003502062987536192, -0.016224006190896034, 0.01921740360558033, 0.007904276251792908, -0.0051612150855362415, 0.006221155170351267, 0.017257314175367355, -0.008021455258131027, 0.004615266341716051, 0.0005762424552813172, 0.014530232176184654, 0.007382295560091734, -0.028293471783399582, 0.03366241604089737, 0.020559638738632202, -0.011717929504811764, 0.05083450675010681, 0.02938004396855831, -0.006386271212249994, 0.016362490132451057, -0.007712528109550476, 0.04043750837445259, -0.03536684066057205, -0.019728731364011765, -0.042568039149045944, 0.012452962808310986, 0.03969182074069977, -0.023840660229325294, -0.028208252042531967, 0.009044110774993896, 0.028293471783399582, 0.024373292922973633, -0.007590022403746843, 0.022818004712462425, 0.0202400591224432, -0.0037683795671910048, 0.018706075847148895, -0.02714298479259014, -0.014391747303307056, -0.011504875496029854, -0.0038269690703600645, 0.0011478244559839368, 0.003294335911050439, 0.002474081004038453, -0.018940433859825134, 0.008767141960561275, -0.02852783165872097, 0.01247426774352789, -0.013997598551213741, 0.061188895255327225, 0.013518229126930237, -0.03890352323651314, 0.013454313389956951, 0.052794598042964935, -0.010833757929503918, 0.00985371321439743, 0.020591598004102707, -0.015861814841628075, 0.035665113478899, -0.02211492881178856, 0.003379557281732559, 0.030487921088933945, -0.016298573464155197, 0.009938934817910194, -0.0012689984869211912, 0.018450412899255753, -0.0031105775851756334, 0.0012776537332683802, 0.03615513816475868, -0.015158738940954208, -0.04267456755042076, -0.005395573563873768, -0.005864290986210108, -0.010775168426334858, -0.020016353577375412, -0.008042760193347931, 0.0037524004001170397, -0.03651732951402664, 0.04114058241248131, 0.027036458253860474, -0.0051425728015601635, -0.03276759013533592, 0.007994823157787323, 0.023180194199085236, -0.017683420330286026, 0.0030839459504932165, -0.007323705591261387, 0.01102550607174635, 0.025097673758864403, -0.04150277376174927, -0.004205138888210058, -0.014029556885361671, -0.01247426774352789, -0.02000570110976696, -0.012112077325582504, -0.02060225047171116, -0.016042910516262054, 0.02031462825834751, -0.0223705917596817, 0.004956151358783245, -0.0016085520619526505, -0.022391896694898605, -0.011323780752718449, -0.0021065641194581985, 0.036176443099975586, -0.010721905156970024, -0.009353037923574448, -0.013550187461078167, -0.018631506711244583, 0.03771042823791504, -0.011643360368907452, -0.04951357841491699, 0.018237357959151268, -0.022434508427977562, 0.0031744935549795628, -0.0034940734039992094, -0.01626661606132984, -0.002725750207901001, 0.03197929263114929, 0.00500142527744174, 0.001346230274066329, 0.004500749986618757, -0.003270367393270135, -0.010072092525660992, 0.014540884643793106, -0.005009414628148079, 0.00409594876691699, -0.02126271463930607, -0.004370254930108786, -0.0021784694399684668, -0.006609977222979069, 0.03219234570860863, 0.047297824174165726, -0.0024487809278070927, -0.006844335701316595, -0.027121679857373238, 0.020442459732294083, -0.004849624820053577, 0.036964740604162216, -0.004093285650014877, -0.02724951133131981, 0.004346286412328482, -0.023350637406110764, 0.03969182074069977, 0.006418229546397924, 0.0036778319627046585, -0.027760839089751244, 0.012452962808310986, -0.02737734280526638, 0.05688522011041641, -9.670620784163475e-05, -0.0008175918483175337, -0.004729782231152058, 0.015968341380357742, -0.01995243690907955, 0.019121529534459114, -0.013976293615996838, -0.006226481404155493, 0.004207802005112171, -0.01166466623544693, -0.01447696890681982, 0.012634058482944965, -0.021710127592086792, -0.009012152440845966, -0.03208582103252411, 0.020889872685074806, -0.016586195677518845, -0.005281057674437761, -0.012708626687526703, -0.0012696642661467195, -0.028421305119991302, 0.008554087951779366, 0.013454313389956951, 0.01353953406214714, 0.013273217715322971, -0.0036591896787285805, 0.037561289966106415, 0.0350472591817379, 0.003384883515536785, 0.021965790539979935, 0.01576594077050686, 0.03016834147274494, -0.0214544627815485, -0.014349136501550674, -0.007680569775402546, 0.009603375568985939, 0.022285370156168938, 0.005890922620892525, -0.012751237489283085, -0.029806150123476982, 0.012729932554066181, -0.014210652559995651, -0.01716144010424614, -0.013805851340293884, 0.03852003067731857, 0.012293173000216484, -0.04192887991666794, 0.007813728414475918, -0.0027723554521799088, -0.03106316551566124, -0.0005099962581880391, -0.013518229126930237, 0.028059113770723343, 0.04606211557984352, 0.0021784694399684668, -0.004873593337833881, -0.008298424072563648, 0.02411762811243534, -0.00845821388065815, 0.0034381470177322626, 0.02616293914616108, -0.03788086771965027, -0.023798048496246338, 0.01105746440589428, -0.0199417844414711, 0.0051425728015601635, 0.0031824831385165453, -0.0006418229313567281, -0.003486083820462227, 0.010386345908045769, -0.050621453672647476, 0.022072317078709602, 0.02622685581445694, -0.03883960843086243, -0.012655363418161869, -0.01281515322625637, 0.018535632640123367, -0.017811251804232597, 0.01405086275190115, 0.0016724680317565799, -0.022434508427977562, -0.005294373258948326, -0.034173741936683655, -0.036709077656269073, -0.02181665413081646, 0.03161710500717163, 0.0014088146854192019, 0.027569090947508812, 0.0052064890041947365, 0.03615513816475868, 0.007680569775402546, 0.02471417747437954, -0.019547635689377785, -0.00014381094661075622, -0.08692573010921478, 0.030296172946691513, -0.011206601746380329, 0.024437207728624344, 0.018343886360526085, 0.013219954445958138, -0.0059495121240615845, 0.0169164277613163, -0.010466241277754307, -0.01607486791908741, -0.03553728386759758, 0.019323930144309998, 0.0008149287314154208, -0.02648252062499523, 0.018045611679553986, 0.03540945053100586, 0.01818409562110901, -0.0070733679458498955, 0.03969182074069977, 0.00839962437748909, -0.020772691816091537, 0.000887499947566539, -0.011941635049879551, 0.0083144037052989, -0.04146016389131546, 0.005933533422648907, -0.027164289727807045, 0.04320720210671425, 0.0028202924877405167, 0.004181170370429754, 0.039372242987155914, -0.02096443995833397, -0.008958889171481133, 0.042099323123693466, -0.013305176049470901, 0.012133383192121983, -0.018642159178853035, 0.005880269687622786, -0.01099354773759842, -0.029422655701637268, -0.023137584328651428, -0.02682340517640114, -0.0051665413193404675, -0.028847411274909973, -0.0032836832106113434, -0.004183833487331867, 0.03370502591133118, -0.01897239312529564, -0.04222715646028519, -0.0029454613104462624, 0.012900374829769135, -0.03941485285758972, -0.04367591813206673, -0.0003924840420950204, -0.07196938991546631, 0.012719279155135155, -0.004945498891174793, -0.013646061532199383, -0.01903630793094635, -0.0007383626652881503, -0.0018895160173997283, 0.015797898173332214, 0.018045611679553986, 0.020261364057660103, -0.014977644197642803, 0.016351837664842606, -0.0262907724827528, 0.018471717834472656, 0.018216053023934364, 0.01398694608360529, 0.007014778442680836, 0.015457013621926308, -0.015542235225439072, -0.029891371726989746, 0.004974793642759323, -0.0281017255038023, 0.010146661661565304, -0.022029707208275795, -0.021486420184373856, -0.029806150123476982, -0.02955048717558384, -0.0320219062268734, 0.017907125875353813, 0.0009221211075782776, -0.019206751137971878, 0.04139624908566475, 0.05407291650772095, 0.005131920333951712, 0.0012017535045742989, 0.04188627004623413, -0.003946811426430941, -0.002263690810650587, -0.007579369470477104, -0.004327644128352404, 0.013699324801564217, 0.008570067584514618, -0.012197298929095268, 0.03462115302681923, 0.020687472075223923, -0.001849568565376103, 0.019366541877388954, 0.0036858213134109974, 0.042141932994127274, 0.01800299994647503, -0.027760839089751244, -0.02042115479707718, 0.003600599942728877, 0.008058739826083183, 0.017800599336624146, -0.015190697275102139, 0.003890885040163994, 0.007360990159213543, 0.008692572824656963, -0.018961740657687187, -0.052240658551454544, 0.007105326279997826, 0.008942910470068455, -0.004138559568673372, -0.0018482370069250464, 0.046871718019247055, 0.023009750992059708, -0.020527681335806847, -0.009124006144702435, 0.02435198798775673, 0.007835033349692822, 0.0002403507096460089, 0.0025712864007800817, 0.009715228341519833, -0.017598198726773262, 0.07963930815458298, -0.006396924145519733, -0.005283720791339874, 0.013358439318835735, -0.014604800380766392, 0.016820555552840233, -0.018961740657687187, 0.001166466623544693, 0.028847411274909973, -0.03010442480444908, -0.026908626779913902, 0.0009767160518094897, 0.004087959416210651, -0.01253818441182375, -0.006380944978445768, 0.0017044260166585445, -0.01940915174782276, 0.011355738155543804, -0.008058739826083183, 0.018514327704906464, 0.013816503807902336, -0.002069279784336686, -0.02126271463930607, 0.021305326372385025, 0.009741860441863537, -0.01576594077050686, 0.010492872446775436, -0.00010427958477521315, -0.017757989466190338, 0.018812602385878563, 0.010327756404876709, -0.005265078507363796, -0.007968191988766193, 0.023542385548353195, 0.004889572039246559, -0.021965790539979935, -0.006535408552736044, 0.02852783165872097, -0.02133728377521038, 0.009981544688344002, -0.018759340047836304, 0.006173218134790659, -0.030871417373418808, 0.03208582103252411, 2.2444453406933462e-06, 0.02889002114534378, -0.008623330853879452, -0.033619802445173264, 0.021347936242818832, -0.0086073512211442, 0.0023302698973566294, -0.04682910442352295, -0.01178184524178505, 0.011249211616814137, -0.03153188154101372, -0.000830241886433214, 0.01891912892460823, -0.0063330079428851604, 0.01717209257185459, -0.018386496230959892, 0.017779294401407242, -0.024075018242001534, 0.02876218967139721, -0.005097299348562956, 0.01952633075416088], [0.012078904546797276, 0.052473343908786774, 0.015316672623157501, 0.004877559840679169, -0.040812600404024124, -0.02150546945631504, -0.00968343485146761, 0.0009543051710352302, 0.02807658351957798, 0.039331112056970596, -0.022461267188191414, -0.006929540075361729, 0.018148226663470268, -0.070872463285923, -0.03278389200568199, 0.04549601301550865, 0.010107570327818394, 0.008859057910740376, -0.04193566367030144, 0.03665487840771675, 0.005140404216945171, 0.06270039081573486, -0.06566336750984192, 0.0023222919553518295, -0.016810107976198196, -0.006816038861870766, 0.029199646785855293, -0.02277190238237381, 0.035507917404174805, 0.002274502068758011, 0.04685802757740021, -0.01612910069525242, 0.03178030252456665, 0.007664310280233622, 0.03739561885595322, 0.06757496297359467, -0.0010931947035714984, 0.025567613542079926, 0.038662053644657135, -0.03173251450061798, -0.036057502031326294, 0.011326213367283344, -0.0172999557107687, -0.0701078251004219, -0.044014524668455124, 0.05376367270946503, 0.06002415344119072, -0.006114124320447445, -0.007013172376900911, 0.023763542994856834, 0.0008027214789763093, 0.011917613446712494, -0.02642783150076866, 0.02879343368113041, 0.027765950188040733, 0.03161304071545601, -0.020681092515587807, 0.026666780933737755, -0.025687087327241898, -0.025734877213835716, -0.03990459069609642, -0.02630835585296154, -0.024193651974201202, 0.024145862087607384, -0.04377557709813118, -0.030872294679284096, -0.01586625725030899, 0.03256883844733238, -0.06518546491861343, 0.0007377570727840066, -0.00030223396606743336, 0.008446870371699333, 0.0016756344120949507, -0.03775404393672943, 0.00744925532490015, 0.02609330229461193, 0.04305872693657875, -0.017945118248462677, -9.0679524873849e-05, 0.000866939197294414, -0.006146979983896017, -0.0003414366510696709, 0.006356060970574617, -0.0046595181338489056, -0.014002449810504913, 0.0004487773112487048, -0.10141023248434067, 0.003936695400625467, -0.0010931947035714984, -0.0329272635281086, -0.03670266643166542, -0.02230595052242279, 0.05553190037608147, 0.042365774512290955, -0.0140621867030859, -0.008070524781942368, 0.04117102548480034, 7.476510654669255e-05, -0.049605946987867355, 0.06896086782217026, 0.015161355026066303, 0.0001761320309014991, 0.014779035933315754, -0.005003008525818586, 0.0164636317640543, -0.0458066500723362, -0.05271229147911072, -0.019725292921066284, 0.03930721804499626, -0.010358467698097229, 0.020561616867780685, -0.01847080886363983, -0.03885321319103241, 0.03608139604330063, -0.01458787638694048, 0.010657154023647308, -0.07589040696620941, -0.030370499938726425, 0.05553190037608147, 0.018279647454619408, -0.014468401670455933, 0.028004899621009827, -0.01599767990410328, -0.06671474128961563, -0.023261748254299164, 0.01826770044863224, 0.013190020807087421, 0.008494660258293152, -0.0618879608809948, 0.0014232438988983631, 0.03708498552441597, -0.00900840200483799, 0.013106388039886951, -0.021099254488945007, -0.03309452533721924, 0.018028751015663147, 0.03596192225813866, 0.000495820539072156, -0.038279734551906586, -0.011684638448059559, -0.008888927288353443, -0.03476717323064804, 0.019259341061115265, 0.024802973493933678, -0.04391894489526749, 0.012162537313997746, 0.03918774425983429, 0.021995315328240395, 0.04167281836271286, -0.041816189885139465, 0.02757479064166546, 0.025280872359871864, -0.01678621396422386, 0.003850076347589493, -0.019438553601503372, 0.025854352861642838, 0.012986913323402405, -0.006905645132064819, 0.002371575217694044, -0.006048412993550301, -0.051039647310972214, 0.00045549776405096054, 0.0019145840778946877, -0.02130236104130745, 0.044134002178907394, -0.04461190104484558, 0.017658378928899765, 0.03077671490609646, -0.04812445864081383, -0.08229426294565201, -0.053476933389902115, -0.05199544504284859, -0.031708620488643646, 0.0064396932721138, -0.036965511739254, -0.019976191222667694, 0.02078861929476261, 0.013942711986601353, 0.02951028198003769, -0.04853067547082901, -0.0023656014818698168, 0.007933128625154495, -0.022532952949404716, -0.00791520718485117, -0.036678772419691086, -0.005170273128896952, -0.016272472217679024, 0.035292863845825195, -0.029104067012667656, 0.022461267188191414, 0.026714570820331573, -0.03945058584213257, -0.004796914290636778, -0.0045938072726130486, -0.06642800569534302, -0.019044287502765656, -0.03493443876504898, 0.02908017300069332, 0.0006832466460764408, 0.03242546692490578, 0.002761361887678504, -0.04774213954806328, 0.0180645938962698, 0.01961776614189148, -0.019163761287927628, -0.007532887626439333, -0.00791520718485117, 0.006559167988598347, 0.04169671609997749, 0.0370371975004673, 0.01323781069368124, -0.019438553601503372, -0.06031089276075363, -0.010280808433890343, 0.0005413703038357198, 0.01885312795639038, 0.018542492762207985, 0.0345999114215374, 0.005606356076896191, 0.00839310698211193, 0.019558029249310493, 0.004883533343672752, 0.04537653923034668, 0.034791070967912674, 0.016069363802671432, 0.024970239028334618, -0.0009901475859805942, -0.013381180353462696, -0.028219953179359436, -0.07909233123064041, -0.05357251316308975, 0.03228209912776947, -0.008428948931396008, -0.015053828246891499, 0.011547242291271687, 0.02150546945631504, -0.003966564312577248, -0.02769426442682743, -0.009348904713988304, 0.011517372913658619, 0.025472033768892288, -0.015675097703933716, -0.01935492269694805, 0.025663193315267563, 0.03311842307448387, -0.021158991381525993, -0.019223500043153763, 0.02879343368113041, 0.03448043391108513, -0.01902039162814617, 0.03400253504514694, 0.017825644463300705, 0.06217470020055771, -0.0059797149151563644, 0.04265251383185387, 0.005513763055205345, 0.0022685283329337835, 0.01873365230858326, 0.013273653574287891, -0.03402642905712128, -0.0014926886651664972, 0.01624857634305954, -0.047335926443338394, 0.03792130947113037, -0.07694178819656372, 0.004557964392006397, 0.05142196640372276, -0.03326179087162018, 0.028984593227505684, 0.0562487468123436, -0.05223439261317253, 0.04167281836271286, 0.03182809427380562, -0.007957023568451405, 0.0013515589525923133, 0.0018981562461704016, -0.02571098320186138, -0.020979778841137886, 0.059068355709314346, 0.05357251316308975, -0.01222824864089489, -0.013476760126650333, -0.006114124320447445, -0.02647562138736248, -0.01654726266860962, -0.017873434349894524, 0.012114747427403927, -0.009444485418498516, -0.022031158208847046, 0.08468375355005264, 0.041027653962373734, -0.0394027978181839, -0.02807658351957798, -0.0041846055537462234, 0.00812428817152977, 0.009181640110909939, -0.025878246873617172, -0.016678685322403908, 0.004919375758618116, 0.012664331123232841, 0.02449234016239643, 0.03603360801935196, -0.020776672288775444, 0.038112469017505646, -0.04489864036440849, -0.0015576530713588, 0.03378748148679733, -0.01633220911026001, -0.005752712953835726, -0.019844768568873405, 0.009755119681358337, -0.02470739372074604, -0.008022734895348549, -0.04683413356542587, -0.019414659589529037, -0.0451136939227581, -0.016738422214984894, -0.007054988294839859, 0.054528310894966125, 0.027813740074634552, 0.01746721938252449, -0.001708489959128201, 0.039593957364559174, -0.010328598320484161, 0.004653544630855322, -0.0003479704319033772, 0.04360831156373024, -0.0026762362103909254, -0.031636934727430344, 0.006953435018658638, -0.04248524829745293, 0.006093216128647327, 0.01751500926911831, -0.02403833530843258, -0.025519823655486107, -0.00980888307094574, -0.00999406911432743, 0.01281964872032404, 0.0034199669025838375, -0.008679846301674843, 0.009408642537891865, -0.00017697208386380225, 0.034408748149871826, 0.014528138563036919, 0.01599767990410328, -0.008321421220898628, -0.01145166251808405, 0.04317820072174072, -0.01721632294356823, 0.024360917508602142, 0.02218647487461567, 0.017562799155712128, 0.029558071866631508, 0.0007455975865013897, -0.08057381957769394, 0.017252163961529732, 0.002017631195485592, -0.01498214341700077, 0.0209200419485569, 0.025902142748236656, -0.017144637182354927, -0.01633220911026001, 0.023966649547219276, 0.02857837826013565, 0.00438771303743124, -0.001539731863886118, -0.03433706611394882, -0.02475518360733986, 0.01835133321583271, -0.02053772285580635, 0.009874594397842884, -0.017694221809506416, -0.07120699435472488, -0.01982087455689907, -0.01923544704914093, -0.0015576530713588, -0.015603411942720413, -0.0010118024656549096, -0.029916496947407722, 0.017311902716755867, 0.04215071722865105, -0.04367999732494354, 0.03419369459152222, 0.008757504634559155, 0.0618879608809948, 0.0028987580444663763, -0.04936699941754341, -0.02757479064166546, 0.02125457115471363, 0.011296344920992851, -0.026881836354732513, 0.019498292356729507, 0.005319616757333279, 0.0014389249263331294, -0.006158927455544472, 0.004728216212242842, 0.013010808266699314, 0.06360840052366257, 0.006451640743762255, -0.04583054408431053, -0.019414659589529037, -0.0030032985378056765, -0.03548402339220047, -0.04532874748110771, 0.01321391575038433, 0.031159033998847008, 0.02504192292690277, -0.0017413456225767732, 0.027837634086608887, -0.04566327854990959, 0.020466037094593048, -0.013882975094020367, 0.009414616040885448, -0.017909277230501175, 0.012192405760288239, 0.007156542036682367, 0.04090818017721176, 0.06972550600767136, 0.012401486746966839, -0.03565128892660141, 0.07493460923433304, 0.019522186368703842, -0.019713345915079117, 0.057300128042697906, -0.024946343153715134, -0.03591413423418999, -0.0006824999582022429, -0.0020758751779794693, 0.07192384451627731, -0.07345312088727951, -0.05940288305282593, 0.03400253504514694, 0.05997636169195175, 0.01611715368926525, -0.030967874452471733, -0.036057502031326294, -0.0010483915684744716, -0.009313062764704227, -0.0004577379149850458, -0.05505400151014328, 0.0265950970351696, -0.02829163894057274, -0.027885423973202705, 0.026045512408018112, -0.028936803340911865, 0.0057228440418839455, -0.05462389066815376, 0.01290328148752451, 0.05954625457525253, 0.023393170908093452, -0.01935492269694805, -0.00980888307094574, -0.05022721737623215, -0.005152351688593626, -0.0018354320200160146, -0.03679824620485306, -0.015985731035470963, -0.04360831156373024, 0.014779035933315754, -0.03395474702119827, -0.016762318089604378, 0.03414590656757355, 0.04356051981449127, 0.011152975261211395, 0.05185207352042198, 0.03615308180451393, -0.03694161772727966, -0.01701321452856064, -0.0007564249681308866, 0.0004353364056441933, -0.010006017051637173, -0.02962975762784481, 0.036224767565727234, 0.009826804511249065, 0.019175710156559944, -0.0009632657747715712, -0.010495863854885101, -0.02989260107278824, 0.009976147674024105, -0.004793927539139986, 0.024683499708771706, 0.04903246834874153, -0.012700174003839493, -0.03768236190080643, 0.011917613446712494, 0.010603390634059906, 0.033070631325244904, 0.016726475208997726, -0.055579688400030136, -0.019474396482110023, -0.01726411283016205, -0.03596192225813866, -0.01831549033522606, -0.01087818294763565, 0.015806520357728004, -0.05084848776459694, 0.010740786790847778, 0.005427144002169371, 0.05271229147911072, -0.013954659923911095, 0.011660742573440075, -0.01759864203631878, 0.025065818801522255, 0.033859167248010635, 0.04121881350874901, -0.0018384188879281282, -0.006732406560331583, 0.040095750242471695, 0.0016502459766343236, 0.027264155447483063, -0.01868586242198944, 0.019522186368703842, -0.033190105110406876, -0.013166125863790512, -0.023058641701936722, 0.03144577518105507, -0.029605861753225327, 0.010107570327818394, -0.010442099533975124, 0.013034703209996223, 0.0410037599503994, 0.04145776480436325, -0.014707351103425026, -0.04477916657924652, 0.013464813120663166, -0.031421877443790436, 0.003186990972608328, -0.042748093605041504, -0.0003250088484492153, 0.00656514149159193, 0.0055376579985022545, -0.02951028198003769, -0.01961776614189148, 0.03156524896621704, 0.01641584187746048, 0.005591421853750944, 0.0225210040807724, 0.0229033250361681, 0.01893676072359085, 0.040263015776872635, 0.055627480149269104, -0.0038291681557893753, -0.0007590384921059012, -0.012485119514167309, 0.03182809427380562, -0.009838751517236233, 0.009850699454545975, 0.024086125195026398, -0.006959408521652222, 0.030633345246315002, 0.010758708231151104, -0.005415196530520916, 0.027670370414853096, 0.020012034103274345, -0.005576487630605698, 0.030537765473127365, 0.04812445864081383, -0.01801680400967598, 0.032807786017656326, 0.006362034473568201, 0.023381223902106285, -0.005746738985180855, -0.01750306226313114, 0.044014524668455124, 0.0009020349243655801, 0.04167281836271286, 0.009546038694679737, 0.004220448434352875, 0.028673958033323288, -0.006487483158707619, -0.026499517261981964, -0.0014217504067346454, 0.001158159109763801, 0.016977373510599136, 0.025902142748236656, 0.0019698413088917732, 0.04088428616523743, -0.03149356320500374, -0.03338126465678215, 0.016487525776028633, 0.003515546675771475, 0.015352515503764153, 0.015687044709920883, 0.004710295237600803, -0.013333390466868877, 0.008351290598511696, -0.00869179330766201, -0.040095750242471695, 0.025400348007678986, 0.03187588229775429, 0.018339386209845543, -0.009546038694679737, -0.00033415615325793624, -0.03228209912776947, 0.0008811268489807844, 0.0482439361512661, -0.021780259907245636, 0.033142317086458206, 0.00910995528101921, 0.014169714413583279, 0.03443264588713646, 0.011696585454046726, -0.027670370414853096, -0.003682811511680484, 0.031756408512592316, 0.0030227131210267544, 0.015137460082769394, -0.005277800373733044, 0.01701321452856064, 0.021457679569721222, -0.009223456494510174, 0.01326170563697815, 0.025328662246465683, -0.016308313235640526, -0.011362056247889996, -0.023046694695949554, -0.025687087327241898, 0.008154156617820263, -0.01821991056203842, -0.011200765147805214, 0.008703741244971752, -0.0008086952148005366, 0.026021616533398628, -0.02352459356188774, 0.029223542660474777, 0.02088419906795025, -0.0031123191583901644, -0.05605758726596832, 0.03237767890095711, -0.023811332881450653, -0.01574678160250187, 0.02238958328962326, 0.01500603836029768, 0.012951071374118328, -0.016953477635979652, 0.02891290746629238, -0.01079455018043518, 0.014074134640395641, -0.011188817210495472, 0.008626081980764866, 0.011093237437307835, -0.006845907308161259, -0.01155321579426527, -0.06136227026581764, 0.018912864848971367, -0.0006705524865537882, 0.0025687087327241898, 0.021015621721744537, 0.005905043333768845, 0.014396716840565205, 0.004223435185849667, -0.015244987793266773, 0.028936803340911865, -0.05825592577457428, 0.01121868658810854, -0.016607001423835754, -0.015794571489095688, 0.0763683095574379, 0.023393170908093452, -0.015113565139472485, 0.01718048006296158, -0.015890151262283325, -0.004223435185849667, -0.046451810747385025, -0.026069406419992447, -0.0003830661589745432, 0.05266450345516205, -0.007873390801250935, 0.023142274469137192, -0.017526956275105476, -0.034743279218673706, -0.03538844361901283, -0.01893676072359085, -0.028650064021348953, -0.006344113033264875, 0.010615338571369648, 0.021565206348896027, 0.002158014103770256, -0.019605819135904312, 0.02016735076904297, 0.015400305390357971, 0.0016144035616889596, -0.031087350100278854, 0.01334533840417862, -0.004286159295588732, -0.011206738650798798, 0.009832778014242649, -0.00511352252215147, -0.017909277230501175, 0.02790931984782219, 0.007090830709785223, 0.00989251583814621, 0.006893697660416365, -0.031421877443790436, 0.011648795567452908, 0.027981003746390343, 0.007210305891931057, -0.03366800770163536, -0.00892476923763752, 0.005170273128896952, -0.009814856573939323, 0.020095665007829666, 0.0041129207238554955, -0.03178030252456665, -0.018423018977046013, 0.0010685529559850693, 0.029868707060813904, 0.02951028198003769, 0.013201967813074589, 0.017825644463300705, 0.02070498652756214, -0.001292568282224238, 0.0013649999164044857, -0.02302279882133007, -0.04604559764266014, 0.012031114660203457, 2.093142938974779e-05, 0.007574704010039568, 0.0047312029637396336, 0.0035424286033958197, 0.007281990721821785, 0.03228209912776947, -0.021457679569721222, 0.009414616040885448, 0.008022734895348549, 0.008685819804668427, -0.01948634348809719, 0.012132668867707253, 0.021541310474276543, 0.024193651974201202, -0.007228226866573095, -0.00679811742156744, -0.009492275305092335, 0.012700174003839493, 0.003378150751814246, 0.026380041614174843, -0.013859080150723457, 0.02824384905397892, 0.006224638316780329, 0.01403829175978899, 0.004602767527103424, -0.05615316703915596, 0.011487504467368126, -0.051326386630535126, -0.022951114922761917, 0.011887745000422001, -0.01534056756645441, -0.015304725617170334, -0.023429013788700104, 0.005976728163659573, -0.018172120675444603, 0.007957023568451405, 0.012640436179935932, -0.0156631488353014, 0.03397864103317261, -0.009307089261710644, 0.013751552440226078, -0.0009804402943700552, -0.012986913323402405, 0.002290929900482297, -0.004814835265278816, 0.010388336144387722, 0.022592689841985703, 0.040979865938425064, 0.024396760389208794, -0.035507917404174805, -0.030203236266970634, 0.009540065191686153, 0.027503104880452156, -0.0030227131210267544, 0.009862646460533142, -0.03598581627011299, 0.0128793865442276, 0.00203704577870667, 0.027049100026488304, -0.0016786212800070643, 0.009587855078279972, -0.02996428683400154, -0.03311842307448387, -0.05218660458922386, 0.008267657831311226, 0.0049223629757761955, -0.009330984205007553, 0.016893740743398666, 0.014862668700516224, 0.007054988294839859, -0.02172052301466465, 0.014348926953971386, 0.005128456745296717, 0.020931988954544067, -0.015567569993436337, -0.04757487401366234, -0.0005029143649153411, -0.062270279973745346, 0.004853664897382259, -0.013405075296759605, 0.0006567381788045168, -0.026738466694951057, 0.027120785787701607, 0.01885312795639038, -0.01422945223748684, 0.028769537806510925, -0.01801680400967598, 0.043799471110105515, 0.022544899955391884, 0.008739583194255829, -0.011589057743549347, 0.004692373797297478, 0.04931920766830444, -0.015710938721895218, -0.009844725951552391, 0.03875763341784477, 0.03565128892660141, 0.024384811520576477, 0.048220038414001465, -0.01641584187746048, -0.038494788110256195, 0.047001395374536514, -0.006188795901834965, -0.029916496947407722, 0.00047827267553657293, -0.013082493096590042, 0.010740786790847778, -0.021684680134058, 0.018542492762207985, -0.006397876888513565, -0.008172078058123589, 0.031756408512592316, 0.011857876554131508, -0.034623805433511734, 0.018291596323251724, 0.055245161056518555, 0.0345282256603241, -0.002144573023542762, -0.016571158543229103, -0.011379976756870747, 0.014934353530406952, 0.05285566300153732, 0.02370380610227585, 0.035125598311424255, 0.05615316703915596, -0.007043040823191404, 0.006350087001919746, -0.015256935730576515, -0.015579516999423504, 0.017479166388511658, -0.009958227165043354, -0.03419369459152222, -0.03173251450061798, 0.01911597140133381, 0.0012246170081198215, -0.010716891847550869, 0.01243732962757349, 0.019092077389359474, 0.0030062852893024683, -0.012759911827743053, 0.0005439838278107345, 0.024635709822177887, -0.035460129380226135, -0.03682214021682739, 0.01222824864089489, 0.0016786212800070643, 0.0017936158692464232, 0.004710295237600803, -0.020908094942569733, 0.021374046802520752, 0.023249801248311996, 0.01037638820707798, -0.038279734551906586, -0.024731289595365524, 0.040263015776872635, -0.009958227165043354, 0.006042439490556717, -0.03918774425983429, -0.03878152742981911, 0.001301528885960579, -7.070483115967363e-05, 0.031636934727430344, 0.059163935482501984, 0.010179255157709122, -0.012509014457464218, 0.026547307148575783, 0.018912864848971367, 0.01965360902249813, -0.015973784029483795, -0.017395535483956337, -0.04179229587316513, 0.05467167869210243, -0.0028703827410936356, -0.03538844361901283, 0.03426538035273552, -0.027622580528259277, -0.009850699454545975, -0.01157711073756218, -0.0201554037630558, -0.002656821394339204, 0.020860305055975914, 0.015878204256296158, 0.01637999899685383, 0.018112383782863617, -0.03894879296422005, 0.02697741612792015, -0.028387218713760376, 0.013536497950553894, -0.017992908135056496, 0.027646474540233612, 0.03746730461716652, -0.026403935626149178, -0.00467146560549736, 0.012676279060542583, 0.014934353530406952, -0.006660721730440855, -0.015973784029483795, -0.01534056756645441, -0.005334550980478525, -0.002931613475084305, -0.04265251383185387, 0.002028085058555007, 0.02344096079468727, 0.007980918511748314, 0.0451136939227581, 0.0021624944638460875, -0.01583041436970234, 0.03106345422565937, -0.006403850857168436, 0.004450437147170305, 0.000504407798871398, 0.03211483359336853, 0.012998861260712147, -0.036344241350889206, -0.020908094942569733, 0.047837719321250916, 0.0053226035088300705, 0.021565206348896027, 0.029319122433662415, -0.001653232960961759, -0.004268238320946693, 0.018530545756220818, -0.007592624984681606, -0.031421877443790436, 0.016845950856804848, 0.007311859168112278, -0.006224638316780329, -0.016356103122234344, -0.00214158627204597, -0.031159033998847008, -0.035627394914627075, 0.04437294974923134, 0.03178030252456665, 0.006857854779809713, -0.029151856899261475, -0.009629670530557632, 0.013417023234069347, -0.00010566054697846994, -0.018960654735565186, -0.015089670196175575, 0.04752708598971367, -0.023859122768044472, 0.01671452820301056, -0.021266518160700798, 0.004092012997716665, 0.03875763341784477, 0.026499517261981964, -0.032138727605342865, 0.000796001055277884, 0.008028708398342133, -0.0005697455490007997, 0.0010371907847002149, 0.00433693639934063, -0.0022371660452336073, 0.006684616673737764, -0.03715667128562927, 0.05266450345516205, 0.007479124236851931, 0.013811290264129639, 0.015352515503764153, -0.03591413423418999, 0.012951071374118328, 0.015113565139472485, 0.034456539899110794, 0.01199527271091938, 0.009396694600582123, 0.012724068947136402, 0.011033500544726849, -0.014396716840565205, -0.004193566273897886, 0.027981003746390343, 0.010573522187769413, -0.014241399243474007, 0.012520961463451385, 0.008428948931396008, 0.03808857500553131, 0.018865074962377548, 0.015316672623157501, -0.004778992850333452, 0.0011753336293622851, 0.025352558121085167, 0.007508992683142424, -0.015412252396345139, 0.014779035933315754, 0.013070546090602875, 0.008847110904753208, 0.001018522889353335, 0.00989251583814621, 0.025734877213835716, 0.005770633928477764, -0.016356103122234344, -7.765863847453147e-05, -0.008685819804668427, -0.019307132810354233, 0.02664288692176342, -0.005313642788678408, 0.03178030252456665, -0.0021356125362217426, -0.020513826981186867, -0.06628463417291641, 0.04035859555006027, -0.019175710156559944, -0.00228346255607903, 0.026117196306586266, 0.027383629232645035, 0.036965511739254, 0.04327378049492836, -0.005949846468865871, 0.0018518598517403007, -0.02394275553524494, 0.005773621145635843, 0.031015664339065552, 0.02176831290125847, -0.022580742835998535, 0.014683456160128117, -0.03608139604330063, 0.004889507312327623, 0.035292863845825195, -0.0051732598803937435, 0.03851868212223053, -0.028363322839140892, -0.02087225206196308, -0.02218647487461567, 0.0013649999164044857, -0.037061091512441635, -0.010866235010325909, -0.07058572769165039, -0.01454008650034666, 0.03218651935458183, -0.004668478854000568, 0.027001310139894485, 0.003416979918256402, 0.035842448472976685, 0.013464813120663166, 0.00330945267342031, 0.00724017433822155, -0.011839955113828182, 0.016953477635979652, -0.012317854911088943, -0.010388336144387722, 0.0005872934125363827, -0.027765950188040733, 0.011612952686846256, -0.018948707729578018, 0.021075358614325523, -0.03149356320500374, 0.00797494500875473, -0.007108752150088549, -0.00566011993214488, -0.060263101011514664, -0.03005986660718918, -0.04121881350874901, -0.01066910196095705, 0.003186990972608328, -0.03653540089726448, -0.013584287837147713, 0.02155325934290886, 0.020489932969212532, -0.014217504300177097, 0.004256290849298239, -0.009790961630642414, -0.040645334869623184, -0.005911016836762428, 0.010955841280519962, -0.012759911827743053, -0.009731224738061428, 0.014886563643813133, -0.008118314668536186, -0.02058551274240017, -0.00016717141261324286, -0.0054659731686115265, 0.029868707060813904, -0.003054075175896287, -0.00482976995408535, -0.013440918177366257, 0.032975051552057266, -0.010358467698097229, 0.010704944841563702, 0.014325032010674477, 0.0038530630990862846, 0.015902100130915642, -0.04071702063083649, 0.01149347797036171, -0.02559150755405426, 0.03796910122036934, 0.006158927455544472, 0.01409802958369255, -0.011332186870276928, 0.029247436672449112, -0.009826804511249065, -0.008912822231650352, 0.010663128457963467, -0.013727657496929169, 0.016977373510599136, 0.03034660592675209, 0.013871027156710625, 0.007347701583057642, 0.0094504589214921, -0.0023670950904488564, -0.001850366359576583, 0.011129080317914486, 0.024850763380527496, -0.0018996497383341193, 0.02172052301466465, -0.02702520601451397, -0.0059080300852656364, -0.017144637182354927, -0.004991061054170132, 0.001087967655621469, -0.014133871532976627, -0.01401439681649208, 0.010501837357878685, 0.005534671247005463, -0.0031810172367841005, -0.01362012978643179, -0.004217461217194796, 0.04121881350874901, -0.035507917404174805, 0.018088487908244133, -0.028267743065953255, -0.007359649054706097, -0.0027628552634269, 0.00658903643488884, 0.021278467029333115, 0.044420741498470306, 0.017228269949555397, -0.010997657664120197, 0.0023730688262730837, -0.0036947589833289385, 0.011063368991017342, -0.02016735076904297, 0.06117111071944237, 0.009330984205007553, -0.008166104555130005, 0.0048506781458854675, 0.02951028198003769, -0.02235374040901661, 0.008094419725239277, 0.018673915416002274, -0.02415780909359455, -0.008960612118244171, 0.010471968911588192, 0.040430281311273575, 0.029223542660474777, 0.013727657496929169, -0.030872294679284096, 0.001450872397981584, -0.002824086230248213, 0.03273610398173332, 0.008028708398342133, -0.005212089512497187, 0.03189978003501892, 0.0060513997450470924, 0.04862625524401665, -0.015244987793266773, -0.003079463727772236, -0.02824384905397892, 0.0030436210799962282, 0.005331564228981733, -0.04210292920470238, 0.015543675050139427, 0.048889100551605225, 0.015077723190188408, -0.042413562536239624, -0.0013821744360029697, 0.008022734895348549, -0.003906826954334974, -0.02862616814672947, -0.028052689507603645, 0.021911682561039925, -0.004531082697212696, 0.02731194533407688, -0.00864997785538435, -0.015161355026066303, -0.004853664897382259, 0.026451727375388145, 0.04970152676105499, -0.027335839346051216, -0.02520918846130371, 0.04867404326796532, -0.017992908135056496, 0.011863850057125092, 0.02256879396736622, -0.052377764135599136, -0.02045409008860588, -0.0014583396259695292, 0.011708533391356468, 0.006935513578355312, 0.020645249634981155, -0.027049100026488304, -0.005955819971859455, 0.01716853305697441, -0.01758669503033161, -0.025663193315267563, -0.023381223902106285, 0.03493443876504898, 0.004973139613866806, -0.017526956275105476, -0.02307058870792389, 0.007180436979979277, -0.023894965648651123, -0.008339342661201954, -0.007616519927978516, 0.0001509303110651672, -0.006090229377150536, -0.003682811511680484, 0.019390763714909554, -0.022461267188191414, 0.015722887590527534, 0.0008900874527171254, -0.013440918177366257, 0.02146962657570839, -0.01591404713690281, 0.008034681901335716, 0.05997636169195175, -0.008554397150874138, -0.016224680468440056, 1.7781214410206303e-05, -0.0096595399081707, 0.0014434052864089608, -0.026738466694951057, -0.0006578582688234746, 0.004504201002418995, -0.013309495523571968, -0.009611750021576881, 0.02530476823449135, 0.009492275305092335, -0.002831553341820836, -0.026905730366706848, 0.02238958328962326, 0.013058598153293133, -0.007592624984681606, -0.023799385875463486, -0.015280830673873425, 0.00330945267342031, 0.0037485226057469845, 0.019844768568873405, -0.0033154264092445374, 0.005176246631890535, -0.02908017300069332, -0.013094441033899784, -0.015639254823327065, 0.029247436672449112, 0.001070046448148787, 0.0021804156713187695, -0.030489975586533546, -0.009456432424485683, 0.04836340993642807, -0.024850763380527496, -0.011230633594095707, 0.018004857003688812, 0.01709684729576111, -0.010113543830811977, 0.017323849722743034, -0.002967455890029669, -0.013727657496929169, 0.02352459356188774, -0.02542424388229847, 0.02989260107278824, 0.01583041436970234, 0.02041824720799923, -0.04234187677502632, 0.010442099533975124, 0.01796901412308216, -0.007001224905252457, -0.006947461050003767, -0.027049100026488304, -0.03906826674938202, -0.020131507888436317, -0.001983282156288624, -0.02285553328692913, 0.013644024729728699, 0.02719246968626976, -0.04105155169963837, 0.006762275006622076, -0.029486387968063354, 0.005000021308660507, -0.007156542036682367, -0.017323849722743034, -0.01001796405762434, 0.035627394914627075, -0.004495240282267332, 0.016869844868779182, -0.005155338905751705, 0.003957603592425585, 0.005373380146920681, -0.01373960543423891, 0.011093237437307835, -0.004444463644176722, 0.04676244780421257, -0.004044222645461559, -0.032903365790843964, -0.003942669369280338, -0.0265234112739563, -0.005495842080563307, 0.005080666858702898, 0.018829232081770897, -0.021732470020651817, -0.011188817210495472, -0.02630835585296154, -0.03701329976320267, -0.053094614297151566, -0.032688312232494354, -0.005212089512497187, 0.03522117808461189, -0.05428935959935188, 0.003948642872273922, 0.010149386711418629, 0.01789732836186886, -0.049988266080617905, -0.014169714413583279, -0.023775490000844002, -0.012628489173948765, 0.006583062931895256, -0.030920084565877914, -0.0006843667360953987, -0.02155325934290886, 0.016093259677290916, -0.034743279218673706, -0.00438771303743124, -0.03225820139050484, 0.03577076271176338, -0.024313127622008324, 0.02635614573955536, -0.016021573916077614, 0.003019726136699319, -0.0012970485258847475, 0.021409889683127403, 0.00599763635545969, -0.01326170563697815, 0.02227010764181614, 0.005961793940514326, 0.03813636302947998, -0.010537679307162762, 0.01771811582148075, 0.009438510984182358, -0.017957067117094994, 0.0033303608652204275, 0.007718073669821024, -0.01826770044863224, -0.010824419558048248, -0.021147044375538826, -0.014133871532976627, -0.006810064893215895, -0.01898455061018467, 0.014002449810504913, 0.01666673831641674, 0.015890151262283325, 0.010412231087684631, 0.011141027323901653, -0.0031153061427176, -0.05514958128333092, -0.007276016753166914, 0.021409889683127403, -0.046571288257837296, -0.029605861753225327, 0.0026508476585149765, 0.00869179330766201, 0.039378903806209564, 0.005337537731975317, -0.009223456494510174, 0.042748093605041504, -0.0265234112739563, -0.026069406419992447, -0.01058546919375658, 0.010770655237138271, 0.01583041436970234, -0.011541267856955528, -0.011230633594095707, 0.0032198466360569, -0.005752712953835726, 0.016678685322403908, -0.03295115754008293, -0.00373657513409853, -0.0036051529459655285, -0.012891333550214767, -0.014002449810504913, -0.011099210940301418, -0.04229408875107765, -0.02265242673456669, -0.04231798276305199, 0.032688312232494354, -0.040215227752923965, 0.012234222143888474, -0.006463588215410709, 0.04293925315141678, -0.029223542660474777, 0.01128439698368311, -0.0024462470319122076, -0.008524528704583645, -0.023225905373692513, -0.04243745654821396, -0.018112383782863617, 0.0009513183031231165, 0.008321421220898628, 0.01721632294356823, 0.028673958033323288, -0.01936686970293522, 0.00640982436016202, -0.020322667434811592, 0.023213958367705345, 0.0036081396974623203, 0.0049582053907215595, -0.015041880309581757, -0.02989260107278824, -0.01365597266703844, -0.021230677142739296, -0.005588435102254152, 0.018721705302596092, 0.0014665535418316722, 0.027981003746390343, -0.026714570820331573, 0.010000042617321014, 0.0050298902206122875, 0.00041778854210861027, -0.015137460082769394, 0.00610217684879899, -0.005713883321732283, -0.02824384905397892, 0.004677439574152231, -0.022700216621160507, -0.0033930849749594927, -0.01046002097427845, 0.003808259963989258, -0.006141006015241146, -0.025854352861642838, -0.018841180950403214, -0.0378735214471817, -0.0007818134035915136, -0.02298695594072342, -0.008010786958038807, -0.005343511700630188, -0.016260523349046707, 0.059450674802064896, 0.013106388039886951, -0.008871005848050117, 0.010633259080350399, 0.0018891956424340606, 0.01046002097427845, -0.002804671647027135, -0.021409889683127403, 0.006804091390222311, 0.016607001423835754, -0.0015337581280618906, -0.007126673590391874, -0.012532909400761127, -0.012664331123232841, -0.011499452404677868, -0.0160813108086586, 0.02387106977403164, -0.013118335977196693, -0.01370376255363226, 0.0055436319671571255, -0.013309495523571968, -0.006869802717119455, 0.01679816097021103, -0.002619485603645444, 0.016236629337072372, 0.01334533840417862, -0.04174450412392616, 0.01881728507578373, -0.006822012364864349, -0.031039560213685036, -0.0124612245708704, -0.03837531432509422, -0.03538844361901283, -0.0046236757189035416, -0.04315430670976639, -0.04845898970961571, 0.018530545756220818, -0.020179297775030136, 0.012628489173948765, 0.011660742573440075, 0.0056153167970478535, 0.012867438606917858, 0.019032340496778488, 0.011403871700167656, -0.00384111562743783, 0.01678621396422386, -0.03753899037837982, 0.006708511617034674, 0.03328568488359451, 0.024731289595365524, -0.026069406419992447, -0.021899735555052757, 0.02352459356188774, -0.006523325573652983, 0.011923587881028652, -0.012192405760288239, 0.01633220911026001, -0.007192384451627731, -0.038447000086307526, 0.006096202880144119, -0.01191163994371891, 0.042533036321401596, 0.04917583987116814, 0.004638609942048788, 0.011505425907671452, -0.014731246046721935, 0.007383544463664293, 0.02912796288728714, 0.012712121941149235, -0.011547242291271687, 0.021278467029333115, 0.027957109734416008, -0.0037096934393048286, -0.011356081813573837, -0.015627307817339897, 0.0017040097154676914, -0.0008632056415081024, 0.0009333970956504345, 0.03283168375492096, -0.025018028914928436, -0.005161312408745289, -0.03837531432509422, 0.04248524829745293, -0.0124612245708704, 0.013835185207426548, 0.006666695233434439, 0.013440918177366257], [0.005217770114541054, 0.006205207202583551, -0.021755995228886604, 0.041979577392339706, -0.02122720517218113, -0.02954757772386074, -0.026935994625091553, -0.014072330668568611, 0.026007911190390587, 0.014342122711241245, 0.010543456301093102, 0.011752123013138771, 0.006302332039922476, -0.03211599588394165, -0.049555324018001556, 0.048864658921957016, 0.0024807339068502188, 0.029072744771838188, -0.0013732393272221088, -0.019986163824796677, -0.024022245779633522, 0.040317658334970474, -0.04156949371099472, 0.0046458118595182896, -0.01633858121931553, -0.023331578820943832, 0.009820414707064629, -0.04843299090862274, -0.019295496866106987, -0.03744707629084587, 0.06298015266656876, -0.010807852260768414, 0.018173163756728172, 0.004006405360996723, 0.048217158764600754, 0.06362765282392502, -0.04588615894317627, 0.007063144352287054, 0.00802360288798809, -0.022899912670254707, -0.03997232764959335, 0.026158995926380157, 0.02070920541882515, 0.0037878742441534996, -0.05697999149560928, 0.08585848659276962, 0.0325908288359642, 0.028295744210481644, -0.015119122341275215, 0.03263399377465248, -0.011924789287149906, -0.01425578910857439, 0.032741911709308624, 0.07010265439748764, 0.048907823860645294, 0.018183955922722816, 0.019090455025434494, 0.041353657841682434, -0.013500372879207134, -0.02142145484685898, -0.06522481888532639, 0.033928994089365005, -0.013899664394557476, -0.010743102058768272, -0.005039707291871309, -0.00010538734932197258, 0.028576327487826347, 0.032936159521341324, -0.0347059927880764, 0.018723538145422935, 0.04016657546162605, 0.03423115983605385, -0.00020622197189368308, 0.003596322378143668, -0.040317658334970474, 0.006199811585247517, 0.049037326127290726, 0.007672873791307211, -0.005967790726572275, -0.004211447201669216, -0.006215998902916908, 0.00171857257373631, 0.016522038727998734, -0.011061456054449081, 0.029828161001205444, -0.0027194994036108255, -0.04817399010062218, 5.665624121320434e-05, -0.02231716178357601, 0.001512182061560452, 0.0431450754404068, 0.041159410029649734, 0.02747557871043682, 0.022813579067587852, -0.014223414473235607, 0.03008716180920601, 0.03414482623338699, -0.009831206873059273, -0.0381593257188797, 0.043231409043073654, 0.02369849570095539, -0.01271258108317852, 0.024022245779633522, -0.01907966285943985, 0.05154098942875862, -0.03250449523329735, -0.034101661294698715, 0.013705413788557053, 0.04090040922164917, -0.0069768112152814865, 0.04262707382440567, 0.0068311239592731, -0.0431450754404068, 0.017439329996705055, -0.019187580794095993, 0.01747170463204384, 0.0002684426726773381, -0.028597911819815636, 0.04489332437515259, -0.02266249619424343, -0.035288743674755096, -0.01000926923006773, 0.01754724606871605, -0.045799825340509415, -0.006296936422586441, -0.0011284034699201584, -0.039108991622924805, 0.007532582152634859, -0.047181159257888794, 0.009199894033372402, -0.015788204967975616, 0.002007249742746353, 0.02507982961833477, -0.04739699140191078, -0.00892470683902502, -0.009431915357708931, 0.0533108226954937, -0.005322988610714674, -0.0030270619317889214, -0.0013246767921373248, -0.012863663956522942, 0.00382024934515357, -0.010543456301093102, 0.03695065900683403, -0.06306648999452591, -0.018572455272078514, 0.03075624443590641, 0.05028915777802467, -0.00417097844183445, -0.035008158534765244, -0.01681341417133808, 0.06172832101583481, -0.026720162481069565, 0.047699157148599625, 0.003876905655488372, -0.031144743785262108, 0.004837363492697477, 0.013295331038534641, -0.017838621512055397, -0.007991227321326733, -0.027367662638425827, -0.00041446738759987056, 0.00035747388028539717, -0.002665541134774685, 0.030216660350561142, 0.03177066147327423, -0.002867884933948517, 0.0464041568338871, -0.033583659678697586, -0.040317658334970474, -0.04351199045777321, 0.0027262442745268345, -0.06315281987190247, 0.016101162880659103, -0.0016295413952320814, -0.02848999574780464, 0.01161183137446642, 0.002364723477512598, 0.01116937305778265, -0.049555324018001556, 0.032051242887973785, 0.011136998422443867, -0.020072495564818382, -0.039108991622924805, -0.04541132599115372, 0.03073466196656227, 0.008649519644677639, 0.035806745290756226, -0.009788040071725845, 0.006145853083580732, -0.0037177284248173237, -0.018076037988066673, -0.008428290486335754, -0.039626993238925934, -0.05926782265305519, -0.01737458072602749, -0.01614432968199253, 0.015248621813952923, -0.02159412018954754, 0.03243974596261978, 0.01150391437113285, -0.035331908613443375, 0.0074408529326319695, 0.025727327913045883, -0.059354156255722046, -0.004926395136862993, 0.012291706167161465, -0.011708956211805344, 0.01718033105134964, 0.014547163620591164, 0.008174685761332512, -0.04245441034436226, -0.01116937305778265, -0.006415644660592079, -0.00442997831851244, -0.006550540681928396, -0.0007068540435284376, 0.02266249619424343, 0.0030081765726208687, 0.01871274597942829, 0.013327705673873425, 4.299803913454525e-05, 0.05780015513300896, -0.010548852384090424, -0.03779241070151329, 0.032741911709308624, -0.00268172868527472, 0.0016524737002328038, 0.0128960395231843, -0.06427515298128128, -0.020353078842163086, 0.030518827959895134, -0.005924623925238848, -0.025835245847702026, -0.006183623801916838, 0.010640581138432026, -0.0027613171841949224, 0.007144081871956587, -0.01104526873677969, 0.000716296723112464, 0.026223745197057724, 0.010354602709412575, -0.02905116230249405, -0.036518994718790054, 0.0011742679635062814, 0.0018494215328246355, -0.023849578574299812, 0.029353328049182892, 0.0368211604654789, 0.0494689904153347, 0.01641412265598774, -0.003205124521628022, 0.03768449276685715, -0.021788371726870537, 0.015237830579280853, 0.002626421395689249, 0.04588615894317627, -0.030497243627905846, 0.06371399015188217, -0.031533244997262955, 0.03304407745599747, -0.0025535777676850557, -0.005169207230210304, 0.0370154082775116, -0.04791499301791191, 0.020482579246163368, 0.054735325276851654, -0.10282298177480698, -0.014892497099936008, 0.08011732250452042, -0.08123965561389923, 0.02766982838511467, -0.002902957843616605, 0.009070394560694695, 0.004052270203828812, 0.003447936847805977, -0.023417912423610687, -0.023612162098288536, 0.07062065601348877, 0.03487865999341011, -0.010413956828415394, -0.05723898857831955, 0.025015078485012054, -0.019122829660773277, 0.01373778935521841, 0.008714268915355206, -0.015496830455958843, 0.0033616034779697657, -0.027734577655792236, 0.04038240760564804, -0.020309913903474808, -0.03541824221611023, -0.06725365668535233, 0.032396577298641205, 0.016619164496660233, 0.04327457398176193, -0.014212622307240963, 0.01176291424781084, 0.027756161987781525, 0.000868054514285177, -0.01986745558679104, 0.03593624383211136, -0.023396329954266548, 0.0024672443978488445, -0.04111624136567116, 0.00734912371262908, 0.015658706426620483, -0.0182163305580616, -0.0005746561218984425, -0.0015040882863104343, -0.001085911295376718, 0.0024631975684314966, -0.024345995858311653, -0.011002101935446262, -0.03800824284553528, -0.016306204721331596, -0.01502199750393629, -0.016036413609981537, -0.008018206804990768, 0.03811616078019142, 0.04247599095106125, 0.016057997941970825, 0.05188632383942604, -0.015054372139275074, -0.011633414775133133, -0.010014665313065052, 0.03574199229478836, -0.016921330243349075, -0.036713242530822754, 0.02122720517218113, -0.01883145421743393, 0.02164807915687561, 0.00551723875105381, -0.05262015759944916, -0.004278894979506731, -0.025554662570357323, -0.0257920790463686, 0.022748829796910286, 0.022058162838220596, -0.018032871186733246, -0.009755664505064487, -0.0011445909040048718, 0.021712830290198326, -0.027238162234425545, -0.015259413979947567, 0.04981432482600212, 0.028792161494493484, 0.03379949554800987, 0.007413873448967934, 0.03882841020822525, 0.011482330970466137, 0.014201831072568893, -0.0023377444595098495, 0.02954757772386074, -0.07226098328828812, 0.013284538872539997, 0.004540592897683382, -0.03535349294543266, -1.2435707503755111e-05, 0.00580591568723321, -0.019165996462106705, -0.008692685514688492, 0.02019120380282402, 0.07359915226697922, -0.05028915777802467, 0.030173495411872864, -0.03518082574009895, -0.02159412018954754, 0.07541215419769287, 0.007435456849634647, 0.009372561238706112, -0.012561497278511524, -0.03818091005086899, -0.02162649668753147, -0.03215916082262993, -0.013111872598528862, -0.0026938694063574076, 0.002120562130585313, -0.014385289512574673, -0.0053526656702160835, 0.0515841580927372, -0.010074019432067871, 0.004154791124165058, 0.03196490928530693, 0.040296077728271484, 0.009642352350056171, -0.07083648443222046, 0.025640996173024178, 0.040123410522937775, 0.010559643618762493, -0.01754724606871605, 0.008201665244996548, -0.05443315580487251, -0.00815849844366312, -0.011320455931127071, 0.014547163620591164, 0.024648161605000496, 0.024497078731656075, 0.010732310824096203, -0.02764824591577053, -0.019630037248134613, -0.0305835772305727, -0.024108579382300377, -0.04830349236726761, -0.01823791302740574, -0.004332853481173515, 0.03265557810664177, -0.02544674463570118, 0.004284291062504053, -0.018399788066744804, 0.050073325634002686, -0.01103447750210762, 0.02162649668753147, -0.006259165704250336, 0.02887849509716034, -0.011029081419110298, -0.007527186069637537, 0.051627323031425476, -0.0214754119515419, 0.0027397337835282087, 0.057325322180986404, 0.06651981920003891, 0.0018426767783239484, 0.05046182498335838, -0.010969727300107479, -0.0005969139747321606, 0.006388665642589331, 0.0056872074492275715, 0.03142532706260681, -0.04016657546162605, -0.005150321871042252, 0.005913832224905491, 0.028123078867793083, 0.04981432482600212, 0.014363706111907959, -0.043058741837739944, 0.006167436484247446, -0.04400840774178505, -0.0010886092204600573, -0.02231716178357601, -0.056634657084941864, 0.018108412623405457, -0.009172914549708366, 0.026590662077069283, -0.0238711629062891, 0.012593872845172882, -0.0021394474897533655, -0.0048454576171934605, 0.0014919476816430688, 0.015140705741941929, -0.009653144516050816, -0.012496748007833958, -0.06272115558385849, 0.0030270619317889214, -0.05706632137298584, -0.012798914685845375, -0.008277206681668758, -0.03228865936398506, 0.03615207597613335, -0.0060649155639112, 0.023072579875588417, 0.02956916205585003, 0.024842411279678345, 0.04208749160170555, 0.03494340926408768, -0.010689144022762775, -0.0013752627419307828, -0.01917678862810135, -0.053699322044849396, 0.012863663956522942, -0.029137494042515755, -0.009728685952723026, 0.06910981982946396, 0.015151496976613998, 0.010074019432067871, 0.05443315580487251, 0.030648328363895416, -0.02063366211950779, -0.004443468060344458, -0.0542604885995388, 0.017115579918026924, 0.07502365112304688, 0.006992998532950878, -0.006383269559592009, 0.029137494042515755, -0.005676415748894215, 0.006286144722253084, -0.009993081912398338, -0.033108826726675034, -0.06129665672779083, -0.02717341110110283, -0.03284982591867447, 0.010613602586090565, -0.007505602668970823, -0.017957329750061035, -0.03606574237346649, -0.006248374003916979, 0.009523644112050533, 0.02717341110110283, -0.028986411169171333, 0.0015782809350639582, 0.0061350613832473755, 0.010284456424415112, 0.02073078788816929, 0.008762831799685955, 0.021615704521536827, 0.010246685706079006, 0.059699490666389465, 0.010003873147070408, 0.02890007756650448, 0.0008350050775334239, -0.0014905986608937383, 0.02053653821349144, -0.03895790874958038, -0.025015078485012054, 0.02695757895708084, 0.0051665096543729305, 0.030518827959895134, 0.006626082118600607, 0.018421372398734093, -0.009944519028067589, 0.007192644756287336, -0.004786103498190641, -0.07251998782157898, -0.037360742688179016, 0.0035639472771435976, -0.01999695412814617, 0.003569343127310276, 0.04051190987229347, 0.013975205831229687, 0.0056116655468940735, -0.03388582542538643, 0.00436792615801096, 0.02028832957148552, 0.007009186316281557, 0.006626082118600607, 0.009404935874044895, -0.004184468183666468, 0.00427619693800807, 0.029979243874549866, -0.0043787178583443165, -0.03897949308156967, -0.004915603436529636, -0.0023620256688445807, 0.027799328789114952, -0.0038148534949868917, -0.010969727300107479, 0.012680206447839737, -0.010516476817429066, 0.011395998299121857, 0.01947895437479019, -0.007354519329965115, 0.035008158534765244, 0.010624393820762634, 0.005463280249387026, 0.0035720409359782934, 0.04912365600466728, 0.01913362182676792, 0.03520241007208824, 0.009615372866392136, 0.027087079361081123, 0.02697916142642498, -0.027453994378447533, 0.00571418646723032, -0.02320207841694355, 0.03613049164414406, -0.0008694034768268466, -0.022381912916898727, 0.030151911079883575, -0.006577519699931145, -0.030669910833239555, 0.020201995968818665, -0.003164655761793256, 0.004335551522672176, 0.02095741219818592, 0.016522038727998734, 0.045972492545843124, -0.02318049594759941, -0.022619329392910004, 0.0079102898016572, 0.008287998847663403, 0.0028409056831151247, -0.0043085720390081406, -0.03401532769203186, 0.02836049534380436, 0.007764602545648813, 0.011255706660449505, -0.026029495522379875, 0.014655080623924732, 0.014633497223258018, 0.011784497648477554, 0.002098978729918599, -0.022964661940932274, 0.001056908629834652, -0.009199894033372402, 0.037554994225502014, -0.031209494918584824, 0.008967873640358448, 0.029806578531861305, 0.015842163935303688, 0.0013125361874699593, -0.027777744457125664, -0.01340324804186821, -0.009712498635053635, 0.002997384872287512, -0.005617061629891396, -0.014093914069235325, -0.01263703964650631, 0.04454799368977547, -0.0001644042640691623, 0.04536815732717514, -0.028727412223815918, -0.008865352720022202, -0.008325769565999508, 0.015529205091297626, -0.02285674586892128, -0.04415949061512947, -0.020568912848830223, -0.013856497593224049, -0.02137828804552555, 0.018550870940089226, -0.010235893540084362, 0.02088187076151371, -0.030626744031906128, -0.0012106898939236999, 0.020763162523508072, -0.014029163867235184, -0.013694622553884983, -0.012140622362494469, 0.02055812068283558, -0.010176539421081543, 0.060562822967767715, -0.013586705550551414, 0.02611582912504673, 0.0009665284887887537, -0.011266497895121574, 0.0005658878944814205, -0.016381746158003807, 0.017536455765366554, -0.023979078978300095, -0.010273665189743042, 0.0069174570962786674, 0.006631478201597929, -0.02009407989680767, 0.030713077634572983, 0.006906665395945311, 0.0007412524428218603, -0.03043249435722828, 0.04059824347496033, -0.001582327880896628, 0.03369157761335373, 0.006534352898597717, 0.019219955429434776, -0.0018817965174093843, 0.004589155316352844, -0.032051242887973785, -0.025856828317046165, 0.05046182498335838, 0.037188075482845306, -0.008779019117355347, -0.0035639472771435976, -0.02406541258096695, -0.009286227636039257, -0.009572206996381283, -0.022943079471588135, 0.022986246272921562, 0.018701955676078796, 0.002962311962619424, -0.01425578910857439, -0.0072951652109622955, -0.05305182561278343, -0.039799660444259644, 0.000604333239607513, -0.004411092959344387, 0.007813164964318275, 0.011698164977133274, -0.015356538817286491, -0.008169290609657764, 0.0011257055448368192, 0.027453994378447533, -0.003256384748965502, -0.029331745579838753, 0.004413791000843048, 0.022640911862254143, 0.008228644728660583, -0.02201499603688717, -0.0011344737140461802, -0.005757353268563747, 0.013543539680540562, 0.04485015943646431, -0.011061456054449081, 0.05085032433271408, -0.04163424298167229, -0.03095049411058426, -0.018324246630072594, 0.007953456602990627, 0.05430365726351738, -0.008385123685002327, 0.001889890292659402, 0.028597911819815636, -0.00892470683902502, 0.027928829193115234, -0.019727163016796112, -0.05775699019432068, -0.015593955293297768, -0.011395998299121857, 0.029094327241182327, 0.011654998175799847, 0.0433393269777298, 0.00963695626705885, 0.005193488672375679, -0.004896718077361584, -0.011460747569799423, -0.009135143831372261, -0.029353328049182892, 0.02182074636220932, -0.021885495632886887, -0.02663382887840271, 0.013057914562523365, 0.007645894307643175, -0.011957164853811264, 0.012852872721850872, -0.03468441218137741, -0.036670077592134476, 0.020752370357513428, 0.04446166008710861, -0.021237995475530624, -0.00324019743129611, -0.0073113529942929745, 0.014223414473235607, -0.005333780311048031, 0.009297018870711327, 0.008525415323674679, 0.006604498717933893, 0.0036961452569812536, -0.008633331395685673, -0.04588615894317627, -0.008099144324660301, 0.03414482623338699, 0.008374331519007683, 0.028619494289159775, -0.05188632383942604, 0.021011371165513992, -0.022986246272921562, -0.004745634738355875, 0.02577049471437931, -0.017568830400705338, 0.0041170199401676655, -0.007338332012295723, 0.0197487473487854, 0.0238711629062891, 0.004667394794523716, 0.017234288156032562, -0.01374858058989048, 0.028986411169171333, -0.00031211518216878176, -0.01923074573278427, -0.016986079514026642, 0.00815849844366312, 0.006032540462911129, -0.01666232943534851, -0.004087342880666256, 0.023849578574299812, 0.03487865999341011, -0.030195077881217003, -0.05184315890073776, -0.020309913903474808, -0.003000082680955529, 0.02848999574780464, -0.01443924754858017, 0.039799660444259644, -0.04292924329638481, 0.015809789299964905, 0.031209494918584824, 0.013327705673873425, 0.01871274597942829, -0.022619329392910004, -7.659552647965029e-05, -0.010154956951737404, -0.020676828920841217, 0.00898406095802784, -0.02423807978630066, -0.013057914562523365, -0.02372007817029953, -0.007489415351301432, 0.0061944155022501945, -0.017460914328694344, -0.011881622485816479, -0.01104526873677969, 0.02648274600505829, -0.026007911190390587, 0.007575748488306999, 0.010840226896107197, -0.02438916265964508, 0.009788040071725845, 0.005179998930543661, -0.01340324804186821, -0.006545144598931074, 0.0009638305637054145, 0.020601287484169006, 0.0067124152556061745, 0.01502199750393629, -0.022791996598243713, 0.03768449276685715, 0.003631395287811756, 0.004143999423831701, -0.007915685884654522, 0.009507456794381142, 0.02890007756650448, -0.03658374398946762, -0.0019829683005809784, -0.004756426438689232, 0.06958465278148651, -0.03893632814288139, 0.01890699751675129, -0.013726997189223766, 6.845962343504652e-05, 0.03371316194534302, -0.026849661022424698, -0.030281411483883858, 0.010386977344751358, 0.01104526873677969, 0.029504410922527313, 0.006129665765911341, 0.04018815979361534, 0.012647830881178379, -0.009415727108716965, 0.04549765959382057, 0.010306039825081825, -0.010764685459434986, 0.03179224580526352, 0.04284290969371796, 0.006178228184580803, -0.012658623047173023, -0.009485873393714428, -0.00031666792347095907, -0.01118016429245472, 0.00661529041826725, -0.005522634368389845, 0.010446331463754177, 0.05244749039411545, -0.027561912313103676, -0.036518994718790054, 0.045799825340509415, -0.020072495564818382, 0.0107862688601017, 0.017687538638710976, -0.015129913575947285, -0.05136832222342491, 0.012011122889816761, -0.02051495388150215, -0.0028166244737803936, -0.027626661583781242, -0.0009058253490366042, -0.018248705193400383, -0.017817039042711258, 0.024453911930322647, 0.023590579628944397, -0.04748332500457764, -0.00420335354283452, 0.017655164003372192, 0.01915520429611206, -0.024108579382300377, 0.01651124656200409, 0.0015877236146479845, 0.04549765959382057, 0.02036387100815773, -0.0022675986401736736, -0.04731065779924393, -0.014860122464597225, 0.042519159615039825, 0.0010150909656658769, 0.0019398017320781946, -0.02525249496102333, 0.00673939473927021, -0.022047370672225952, 0.007586540188640356, 0.03149007633328438, 0.01553999725729227, -0.009162123315036297, 0.00950206071138382, -0.016575997695326805, 0.025899995118379593, 0.03060516156256199, -0.009302414953708649, -0.0136622479185462, -0.001753645483404398, 0.029159078374505043, 0.009906748309731483, -0.013683831319212914, -0.004281593021005392, -0.01374858058989048, -0.016284622251987457, -0.001054885215125978, -0.0073707071132957935, 0.005228561349213123, 0.00356124946847558, -0.004143999423831701, -0.011698164977133274, 0.024648161605000496, 0.0036179055459797382, 0.008644123561680317, -0.05991532281041145, 0.026849661022424698, -0.0048319678753614426, 0.016824204474687576, 0.028252577409148216, -0.0027545723132789135, -0.01892857998609543, -0.016727080568671227, -0.005579290445894003, -0.0008788462146185338, -0.03714491054415703, -0.020255954936146736, 0.05797282233834267, 0.0038445305544883013, -0.03110157698392868, 0.018173163756728172, 0.030022410675883293, 0.021702038124203682, 0.02458341233432293, 0.00956681091338396, -0.04396524280309677, -0.010635185986757278, -0.015691081061959267, 0.016025621443986893, -0.001637635170482099, 0.020568912848830223, 0.011978748254477978, -0.03846149146556854, 0.028554745018482208, 0.03280666097998619, 0.0015971664106473327, 0.013985997065901756, 0.010813248343765736, 0.023612162098288536, -0.018453747034072876, 0.015852956101298332, 0.010370790027081966, -0.02887849509716034, 0.03477074205875397, -0.04847615957260132, -0.029159078374505043, -0.02441074512898922, 0.014223414473235607, -0.004529801197350025, -0.0015593955758959055, -0.009005644358694553, 0.018076037988066673, 0.03095049411058426, -0.04267024248838425, -0.030820993706583977, 0.05862032249569893, 0.014298955909907818, 0.036885909736156464, -0.007840144447982311, 0.03384266048669815, -0.026871245354413986, 0.019219955429434776, -0.027281329035758972, 0.021356703713536263, 0.032914578914642334, 0.00536345737054944, -0.059397321194410324, 0.017072413116693497, 0.005015426315367222, -0.00020891988242510706, -0.03990757465362549, 0.008099144324660301, 0.002158332848921418, 0.0038256451953202486, -0.02270566299557686, 0.05469215661287308, 0.05719582363963127, 0.030799411237239838, 0.0159177053719759, -0.03179224580526352, -0.020309913903474808, 0.01762278936803341, 0.023806411772966385, -0.019360246136784554, 0.027281329035758972, 0.029849745333194733, 0.04653365910053253, -0.025878412649035454, -0.020914245396852493, 0.033756326884031296, -0.013316914439201355, 0.005789727903902531, 0.01932787150144577, -0.004535197280347347, 0.05067765712738037, 0.02678491175174713, -0.004521707538515329, 0.030648328363895416, 0.01982428878545761, 0.0299144946038723, 0.01648966409265995, 0.02747557871043682, 0.012831289321184158, 0.032029662281274796, 0.030799411237239838, 0.019414205104112625, -0.00041918872739188373, 0.021961037069559097, 0.007408477831631899, -0.028986411169171333, 0.006809540558606386, -0.06733998656272888, -0.05417415872216225, 0.044073157012462616, 0.009426519274711609, 0.012669414281845093, 0.03414482623338699, -0.03861257806420326, -0.013878080993890762, 0.020180413499474525, -0.01905808039009571, 0.016306204721331596, 0.008654914796352386, -0.00256706727668643, 0.029979243874549866, 0.02542516216635704, 0.020698413252830505, 0.004435374401509762, -0.019360246136784554, 0.021874703466892242, 0.014622705988585949, 0.009145935997366905, 0.013705413788557053, 0.03572041168808937, -0.03992915898561478, -0.009404935874044895, 0.018647996708750725, -0.03848307579755783, 0.028792161494493484, -0.023266829550266266, 0.001602562260814011, 0.00163089029956609, 0.022597745060920715, 0.00950206071138382, -0.0121298311278224, -0.05003015697002411, 0.02782091125845909, 0.031036827713251114, -0.0072412071749567986, 0.04230332747101784, 0.0005540845450013876, 0.03742549195885658, 0.01871274597942829, -0.010743102058768272, 0.049900658428668976, -0.046663157641887665, 0.0017927653389051557, -0.006798748858273029, -0.033756326884031296, -0.00899485219269991, -0.04351199045777321, 0.011601039208471775, -0.015065164305269718, 0.019932204857468605, -0.0494689904153347, 0.006421040277928114, 0.007883311249315739, 0.002989291213452816, -0.06591548770666122, -0.004624228458851576, -0.019241537898778915, -0.0025481819175183773, 0.026223745197057724, -0.026158995926380157, -0.0006805493612773716, 0.003342718118801713, -0.001505437190644443, 0.0044515617191791534, -0.00042492180364206433, -0.03129582852125168, -0.03861257806420326, 0.0007999321678653359, -0.008811394684016705, -0.029310161247849464, -0.004694374278187752, 0.042519159615039825, 0.011223331093788147, -0.014870913699269295, -0.023072579875588417, -0.0028759785927832127, -0.012345664203166962, 0.020158829167485237, -0.014557955786585808, -0.022295579314231873, 0.013101081363856792, -0.02251141332089901, -0.0008984060841612518, 0.001571536180563271, -0.006771769840270281, 0.05499432235956192, 0.022813579067587852, 0.04126732423901558, -0.018950162455439568, -0.016996871680021286, 0.027928829193115234, 0.021831538528203964, -0.016532830893993378, 0.0581023246049881, 0.001854817382991314, -0.004556780215352774, -0.010694540105760098, 0.009982289746403694, 0.014137080870568752, 0.03477074205875397, 0.017558038234710693, 0.006178228184580803, 0.0159177053719759, 0.006696227937936783, -0.006350894458591938, 0.0034425409976392984, 0.002263551577925682, -0.012043497525155544, 0.043878909200429916, -0.02853316068649292, -0.00950206071138382, -0.028986411169171333, 0.004497426096349955, 0.024691328406333923, 0.003938957583159208, 0.015162289142608643, 0.009831206873059273, 0.018475329503417015, 0.008811394684016705, -0.014525581151247025, 0.014849330298602581, 0.03733915835618973, -0.013845705427229404, 0.018335038796067238, 0.016651539131999016, -0.010327623225748539, 0.005784332286566496, -0.016975289210677147, 0.0014164060121402144, 0.01752566359937191, -0.013554330915212631, 0.0015256715705618262, 0.006167436484247446, -0.028252577409148216, 0.02747557871043682, -0.020601287484169006, 0.05469215661287308, -0.007322144694626331, -0.009064998477697372, 0.01027906034141779, 0.06310965865850449, -0.015960872173309326, -0.009129748679697514, 0.040468741208314896, -0.021928662434220314, 0.018000496551394463, -0.007127894554287195, 0.026245329529047012, 0.03386424481868744, 0.01529178861528635, -0.024432329460978508, -0.015863746404647827, -0.011201747693121433, -0.019662413746118546, 0.03507291153073311, 0.02236032858490944, 0.008503831923007965, -0.029266994446516037, 0.04912365600466728, 0.01167658157646656, 0.0020531141199171543, -0.009248456917703152, -0.019112037494778633, 0.01297158095985651, -0.025684161111712456, -0.01624145545065403, 0.022295579314231873, 0.04139682650566101, -0.027583494782447815, -0.016079580411314964, 0.0037177284248173237, -0.011115415021777153, -0.030820993706583977, -0.01546445582062006, 0.01710478775203228, 0.06267798691987991, 0.005843686405569315, -0.020892662927508354, -0.027410827577114105, 0.0061944155022501945, 0.04213066026568413, 0.021507788449525833, -0.05469215661287308, -0.014924872666597366, 0.01373778935521841, -0.00012275518383830786, 0.03742549195885658, -0.0052933115512132645, -0.034101661294698715, -0.010667560622096062, -0.009270040318369865, 0.004068457521498203, -0.0074246651493012905, -0.016273830085992813, -0.017644371837377548, -0.02352582849562168, 0.023396329954266548, 0.0001785683271009475, -0.04178532585501671, -0.031231077387928963, 0.005719582084566355, -0.021874703466892242, -0.015982454642653465, -0.005112551152706146, -0.029266994446516037, 0.007138686254620552, 0.014212622307240963, -0.007489415351301432, 0.022986246272921562, 0.008190873079001904, -0.007284373510628939, 0.028209412470459938, -0.017504079267382622, 0.013122664764523506, 0.021734412759542465, -0.01942499727010727, -0.008028998970985413, -0.01767674647271633, 0.03006557747721672, 0.09617531299591064, -0.008255623281002045, -0.020072495564818382, 0.0006424412713386118, 0.005708790849894285, -0.018183955922722816, -0.007705248426645994, -0.003429051488637924, -0.0006798748509027064, -0.02818782813847065, -0.019392620772123337, 0.04515232518315315, -0.002007249742746353, -0.01193558145314455, -0.021831538528203964, 0.02318049594759941, -0.0022163381800055504, 0.0015027392655611038, -0.003310343250632286, -0.03211599588394165, -0.0009624816011637449, -0.004502822179347277, 0.014633497223258018, -0.009361769072711468, -0.014396080747246742, -0.008881540037691593, -0.017611997202038765, -0.010856415145099163, -0.0008060024701990187, 0.004038780461996794, -0.024108579382300377, -0.02577049471437931, -0.032569244503974915, 0.039778076112270355, -0.03295774385333061, 0.025036662817001343, -0.016057997941970825, -0.009091977961361408, 0.0034236556384712458, 0.019975371658802032, 0.01202191412448883, -0.01695370487868786, 0.023633746430277824, 4.641258783522062e-05, 0.02853316068649292, 0.06086498871445656, 0.010149560868740082, -0.020655246451497078, 0.008530811406672001, 0.019338663667440414, 0.02803674526512623, 0.012097456492483616, 0.01047870609909296, -0.06198732182383537, -0.011050664819777012, 0.0173529963940382, 0.02715182863175869, -0.037900324910879135, 0.041504740715026855, -0.01426658034324646, -0.03518082574009895, -0.03848307579755783, 0.02993607707321644, -0.0018494215328246355, -0.02248982898890972, 0.02956916205585003, 0.028986411169171333, 0.006113477982580662, 0.00855239387601614, -0.007786185946315527, 0.013057914562523365, 0.027259744703769684, 0.0025239004753530025, -0.018281079828739166, 0.004054968245327473, 0.030130328610539436, -0.015388913452625275, -0.01892857998609543, -0.001432593446224928, -0.03645424172282219, -0.012561497278511524, 0.0045109158381819725, 0.007397686131298542, -0.005676415748894215, 0.0021569840610027313, -0.012885247357189655, -0.0429508239030838, -0.03794349357485771, -0.02335316315293312, -0.028252577409148216, 0.0039875200018286705, -0.05037549138069153, 0.0011965258745476604, -3.796052260440774e-05, 0.016619164496660233, -0.040619827806949615, -0.013500372879207134, -0.033108826726675034, -0.009955310262739658, -0.00866570696234703, 0.005708790849894285, -0.006377873942255974, -0.024194912984967232, -0.019705580547451973, -0.035828325897455215, -0.02458341233432293, 0.01612274721264839, 0.04094357416033745, -0.01494645606726408, 0.008940894156694412, 0.007376102730631828, -0.021011371165513992, -0.02870582789182663, -0.006955227814614773, 0.0197487473487854, 0.0006205207318998873, -0.014298955909907818, 0.030993660911917686, 0.02389274537563324, -0.012658623047173023, -0.00014096611994318664, 0.0071656652726233006, -0.028317328542470932, 0.035288743674755096, 0.0024847807362675667, 0.013025538995862007, -0.013262956403195858, -0.006879686377942562, 0.003957842942327261, 0.0031835411209613085, 0.00892470683902502, 0.01047870609909296, -0.01986745558679104, 0.0364326611161232, -0.01142837293446064, 0.019381830468773842, -0.023266829550266266, 0.011957164853811264, -0.006108082365244627, 0.027583494782447815, -0.0305835772305727, -0.00048495043301954865, 0.024108579382300377, 0.0022487130481749773, 0.0223387461155653, 0.014644289389252663, -0.0223387461155653, -0.003118791151791811, 0.0006235558539628983, 0.0249287448823452, 0.0062645613215863705, -0.03386424481868744, 0.018335038796067238, 0.014838539063930511, -0.017460914328694344, -0.005730373784899712, 0.011147789657115936, -0.023266829550266266, -0.005908436607569456, -0.01641412265598774, -0.01838899590075016, 0.009394143708050251, 0.003404770279303193, -0.019586872309446335, -0.012647830881178379, -0.0003621952491812408, -0.030130328610539436, 0.044245824217796326, -0.012874456122517586, -0.02523091249167919, 0.013144247233867645, 0.028597911819815636, -0.007975040003657341, 0.017169538885354996, 0.009075789712369442, 0.047699157148599625, 0.0001768821239238605, -0.020072495564818382, -0.017396163195371628, 0.006939040496945381, 0.03004399500787258, 0.016727080568671227, 0.01794653758406639, -0.010759289376437664, 0.0054983533918857574, -0.02939649485051632, 0.029849745333194733, -0.00324019743129611, 0.022986246272921562, -0.021043745800852776, -0.01952212117612362, -0.02283516339957714, -0.01767674647271633, 0.0007635102956555784, 0.012172997929155827, 0.00011668487422866747, 0.012043497525155544, -0.022295579314231873, 0.04938265681266785, 0.005606269929558039, 0.0004252590297255665, 0.00712249893695116, -0.009124352596700191, 0.019187580794095993, -0.030993660911917686, -0.00919449795037508, 0.009507456794381142, -0.005150321871042252, 0.004991144873201847, 0.009091977961361408, 0.010289852507412434, -0.015982454642653465, -0.021734412759542465, -0.012593872845172882, 0.027410827577114105, -0.0013314216630533338, -0.020353078842163086, -0.007446248549968004, -0.009831206873059273, 0.03897949308156967, 0.030324578285217285, -0.018550870940089226, -0.024173328652977943, 0.02734607830643654, 0.04843299090862274, 0.01742853783071041, -0.011083039455115795, -0.008762831799685955, -0.013640664517879486, 0.005317592993378639, -0.003056738991290331, -0.0036583743058145046, 0.030151911079883575, -0.023309996351599693, -0.01373778935521841, 0.0020625570323318243, -0.007386894430965185, 0.022899912670254707, 0.015788204967975616, -0.03561249375343323, -0.031511660665273666, 0.00773222791031003, -0.00783474836498499, 0.0033238327596336603, -0.001287580467760563, -0.04480699077248573, -0.013813330791890621, -0.007672873791307211, -0.028252577409148216, 0.01932787150144577, -0.034964993596076965, -0.038202494382858276, -0.0010103696258738637, -0.04834665730595589, -0.05430365726351738, 0.020104872062802315, -0.0009793435456231236, 0.019090455025434494, 0.027756161987781525, -0.004211447201669216, 0.02423807978630066, 0.012162205763161182, 0.002626421395689249, -0.0034209578298032284, 0.024475496262311935, 0.0036583743058145046, 0.002262202790006995, 0.0072412071749567986, -0.0009908097563311458, -0.004529801197350025, -0.002278390107676387, 0.0028355098329484463, -0.018496913835406303, 0.008072164840996265, 0.03729599341750145, 0.007624310906976461, -0.014665872789919376, -0.0076297069899737835, 0.01925233006477356, -0.010295248590409756, 0.04692215844988823, 0.026504328474402428, -0.006750186439603567, -0.016349371522665024, -0.01992141269147396, -0.017191121354699135, 0.0477423258125782, -0.01712637208402157, -0.002490176586434245, -0.007376102730631828, 0.005401228088885546, 0.029180660843849182, 0.00018632483261171728, -0.0400802418589592, -0.007160269655287266, -0.0025198536459356546, -0.030000828206539154, 0.019759537652134895, 0.010840226896107197, 0.029504410922527313, 0.005649436265230179, 0.02663382887840271, -0.004500124137848616, -0.003331926418468356, 0.010608206503093243, 0.01187083125114441], [-0.025307225063443184, 0.017915869131684303, 0.050856392830610275, 0.02448461949825287, -0.050566062331199646, 0.02241600677371025, 0.029952527955174446, 0.007252237759530544, 0.010784603655338287, 0.04826760292053223, -0.01653679646551609, 0.020964350551366806, 0.016319047659635544, -0.037428561598062515, 0.02040788158774376, 0.013367343693971634, 0.01619807630777359, 0.030146082863211632, -0.04352552443742752, 0.013343149796128273, 0.01833927072584629, 0.03701725974678993, -0.03343650698661804, 0.033460699021816254, -0.017419887706637383, 0.012835069559514523, 0.035444632172584534, -0.00375616317614913, 0.03307359293103218, -0.021303070709109306, 0.04838857427239418, -0.009109149686992168, 0.007101023569703102, -0.02554916776716709, 0.052162885665893555, 0.040089935064315796, -0.026686299592256546, 0.02171437256038189, 0.017117459326982498, -0.011044692248106003, -0.017552955076098442, -0.01703277789056301, -0.018399756401777267, -0.0477595254778862, -0.038759250193834305, 0.06537296622991562, 0.018641699105501175, -0.018484435975551605, 0.03326714411377907, 0.029613807797431946, 0.005737070459872484, 0.003160378895699978, -0.025936275720596313, 0.02687985450029373, 0.050904780626297, 0.008443806320428848, 0.02644435688853264, 0.052840325981378555, 0.04057382047176361, -0.04386424273252487, -0.03895280137658119, -0.0016905758529901505, -0.029879944398999214, 0.009913609363138676, 0.026274995878338814, -0.03854149952530861, 0.017964258790016174, 0.07834110409021378, -0.0367269292473793, 0.004246097523719072, -0.04442071169614792, 0.07292158156633377, 0.049888622015714645, -0.05472747981548309, -0.024206385016441345, 0.060001835227012634, 0.02521044760942459, -0.011849152855575085, 0.020976446568965912, -0.029541226103901863, -0.013960104435682297, -0.03725920245051384, -0.015169817954301834, 0.07229252904653549, -0.012097143568098545, 0.016633572056889534, -0.01786748133599758, 0.009949901141226292, 0.012157629244029522, 0.006925615016371012, -0.00241640442982316, -0.016258561983704567, -0.011703986674547195, 0.03655757009983063, -0.002632641000673175, -0.012762486934661865, 0.016415825113654137, 0.01256893202662468, -0.010137406177818775, 0.03331553563475609, 0.04023510217666626, -0.02351684682071209, 0.002251580823212862, 0.03602529317140579, -0.027266962453722954, -0.0419045053422451, -0.04814663156867027, 0.008522437885403633, 0.047541774809360504, -0.004566671792417765, 0.013512509874999523, -0.005712876096367836, -0.029226699844002724, -0.009224072098731995, 0.01182495802640915, 0.02262165956199169, 0.024157995358109474, -0.04439651966094971, 0.027702460065484047, -0.01554482989013195, -0.01201851200312376, -0.008522437885403633, -0.0033025203738361597, -0.026613716036081314, -0.00880672037601471, -0.016270658001303673, -0.006665526423603296, -0.018254589289426804, -0.047856301069259644, -0.035178493708372116, 0.041952893137931824, -0.0340171679854393, 0.03278325870633125, -0.016440019011497498, -0.02487172745168209, -0.01653679646551609, 0.044928792864084244, 0.015593218617141247, -0.012508446350693703, 0.003686604555696249, 0.00915753748267889, 0.00893374066799879, 0.049525707960128784, 0.042654529213905334, -0.013935909606516361, 0.054969422519207, -0.014189950190484524, 0.047614358365535736, 0.020674018189311028, -0.01768602430820465, -0.033170368522405624, 0.04846115782856941, 0.02547658421099186, 0.014770613051950932, 0.05913084000349045, -0.005464884918183088, -0.01468593254685402, 0.026904048398137093, 0.01016160100698471, 0.004980999045073986, -0.04350132867693901, -0.008679701015353203, 0.0023029937874525785, -0.0031180388759821653, 0.029662197455763817, -0.0018962272442877293, 0.019706247374415398, -7.844241736165714e-06, -0.05748562887310982, -0.032880038022994995, -0.01622227020561695, -0.0396544374525547, 0.0002574423560872674, -0.017806995660066605, -0.016923904418945312, -0.01375445257872343, 0.060001835227012634, 0.021702276542782784, 0.02775084786117077, 0.016052909195423126, 0.00010660607949830592, -0.0243273563683033, -0.005192698910832405, -0.019863510504364967, -0.06469552218914032, -0.03590432181954384, 0.02910572849214077, -0.020553046837449074, -0.031500961631536484, 0.012750389985740185, 0.025621751323342323, -0.02750890515744686, 0.01705697365105152, 0.020153841003775597, -0.05893728509545326, 0.013911715708673, 0.004258194472640753, -0.07955081760883331, 0.03164612874388695, -0.017456179484725, -0.014383504167199135, -0.01256893202662468, -0.02971058525145054, -0.03135579824447632, -0.021351458504796028, -0.011927783489227295, 0.012798777781426907, -0.009955949150025845, 0.029347671195864677, 0.03343650698661804, 0.015895647928118706, -0.025694333016872406, -0.013766549527645111, -0.029033144935965538, -0.014927875250577927, 0.007615152280777693, -0.0018266687402501702, 0.006986100692301989, 0.003453734563663602, -0.014202047139406204, 0.03590432181954384, -0.024424133822321892, 0.013657675124704838, -0.016863418743014336, -0.03834794461727142, -0.00986522063612938, -0.0382995568215847, 0.03036383166909218, -0.003166427370160818, -0.05104994773864746, -0.02687985450029373, 0.02063772827386856, 0.019766733050346375, -0.03527527302503586, 0.01656099036335945, 0.02675888128578663, -0.027218572795391083, -0.040404461324214935, 0.013500412926077843, 0.016742447391152382, 0.028984757140278816, 0.016585184261202812, 0.008304689079523087, -0.01126244105398655, -0.007476035039871931, -0.011135420762002468, -0.032226789742708206, 0.00020810867135878652, 0.0014705590438097715, -0.023952344432473183, 0.01833927072584629, -0.029952527955174446, 0.05627591162919998, -0.07171186804771423, 0.01656099036335945, -0.007379257585853338, -0.0010259890696033835, -0.02317812852561474, 0.03684790059924126, -0.03754953294992447, -0.0012240797514095902, 0.010506369173526764, -0.028331510722637177, -0.0069558578543365, -0.006937711965292692, -0.018012646585702896, 0.02675888128578663, -0.01518191583454609, -0.01521820668131113, -0.022718437016010284, -0.006774400360882282, -0.0007802657783031464, 0.03171871230006218, -0.01273829210549593, -0.03261389955878258, -0.010857186280190945, -0.008292592130601406, -0.032178401947021484, -0.0261298306286335, 0.006738109048455954, -0.04359810799360275, 0.019851412624120712, 0.02349265292286873, -0.05274354666471481, -0.0009677715133875608, 0.018254589289426804, 0.020032869651913643, 0.018641699105501175, 0.019536888226866722, 0.028500871732831, 0.01849653385579586, -0.016185978427529335, -0.02340797334909439, 0.00628446601331234, -0.012024560943245888, -0.031549349427223206, -2.40879653574666e-05, 0.01944011077284813, -0.009568841196596622, 0.005864090286195278, 0.00931480061262846, 0.010923720896244049, -0.027315350249409676, 0.007663540542125702, -0.08298640698194504, 0.03602529317140579, 0.02615402452647686, 0.0004313387908041477, -0.01862960122525692, 0.02620241418480873, -0.005522346124053001, -0.0015741408569738269, -0.05951794609427452, -0.025016892701387405, -0.012351184152066708, -0.027581488713622093, -0.020359493792057037, -0.0060394988395273685, 0.011643500998616219, 0.016476310789585114, 0.0017011607997119427, 0.008957934565842152, -0.001952176564373076, -0.024992698803544044, -0.0011756911408156157, -0.026468550786376, 0.03631562739610672, -0.010010386817157269, -0.06585685163736343, -0.03503333032131195, -0.059034060686826706, -0.017105361446738243, 0.04679175093770027, -0.01554482989013195, -0.025065282359719276, -0.01719004102051258, -0.005864090286195278, -0.03883183002471924, 0.03699306771159172, -0.016258561983704567, 0.011141469702124596, -0.01485529262572527, 0.0016104322858154774, 0.04384005069732666, 0.003532365895807743, 0.044590070843696594, 0.04442071169614792, 0.0028065373189747334, 0.02032320201396942, 0.00510197039693594, -0.017419887706637383, 0.019524790346622467, -0.007578860502690077, 0.03263809531927109, -0.08409934490919113, -0.05627591162919998, 0.017964258790016174, -0.010367251932621002, -0.058405011892318726, 0.02842828817665577, -0.045582037419080734, -0.010288621298968792, 0.02717018499970436, 0.07679267227649689, -0.06566330045461655, 0.014964167028665543, -0.020807087421417236, -0.04413038119673729, 0.04045284911990166, 0.0029698489233851433, -0.00511406734585762, -0.020419979467988014, -0.05763079226016998, -0.024121705442667007, -0.03208162635564804, -0.04425135254859924, -0.006913517601788044, -0.021774858236312866, 0.053179044276475906, 0.0055888802744448185, 0.02419428713619709, -0.04780791327357292, -0.023117640987038612, 0.008601069450378418, 0.07040537893772125, 0.04420296475291252, -0.06246965005993843, -0.01743198372423649, 0.014613349922001362, -0.0367269292473793, 0.006550603546202183, 0.02971058525145054, 0.017516665160655975, -0.0300734993070364, -0.015435955487191677, -0.01727472059428692, 0.041662562638521194, 0.05375970900058746, 0.02126677893102169, -0.055646862834692, 0.005238063167780638, -0.04751758277416229, 0.008461952209472656, -0.05172738805413246, -0.006967954803258181, 0.03140418604016304, -0.015472247265279293, -0.015617412514984608, 0.012750389985740185, 0.008207912556827068, -0.018073132261633873, -0.02406121976673603, 0.03858988732099533, -0.003169451607391238, 0.056082360446453094, 0.017238430678844452, -0.041977088898420334, 0.02153291553258896, -0.04512234777212143, -0.03137999027967453, 0.043646495789289474, 0.028887979686260223, 0.044323936104774475, -0.001953688682988286, -0.0385173074901104, 0.02586369402706623, 0.016863418743014336, 0.03365425392985344, 0.03948507830500603, -0.07809916138648987, -0.0281621515750885, 0.010185794904828072, 0.03701725974678993, 0.04021090641617775, -0.02717018499970436, -0.009937803260982037, 0.016476310789585114, -0.019065098837018013, -0.006617137696594, -0.014419795013964176, 0.0008702382910996675, 0.00151365518104285, -0.010421689599752426, 0.008068795315921307, -0.012653612531721592, 0.06184059754014015, -0.004717885982245207, 0.02335958555340767, 0.026928242295980453, 0.007421597838401794, -0.03375102952122688, 0.006405437830835581, -0.00538322888314724, -0.02876700833439827, -0.04091253876686096, 0.00510197039693594, -0.04940473660826683, -0.025041088461875916, 0.05850178748369217, 0.004385214764624834, -0.003075698856264353, -0.010839041322469711, 0.0331219807267189, 0.03169451653957367, 0.019923996180295944, 0.04309002682566643, -0.006045547779649496, -0.015895647928118706, -0.020964350551366806, 0.026226608082652092, -0.02912992238998413, 0.020855475217103958, 0.016524698585271835, 0.06048572063446045, 0.02153291553258896, 0.052114494144916534, 0.004602963104844093, 0.0006177104078233242, -0.05719529464840889, -0.02124258503317833, -0.014214144088327885, 0.012980235740542412, -0.017565052956342697, 0.009671666659414768, 0.04548526182770729, 0.050856392830610275, 0.034839775413274765, 0.003245058935135603, -0.047565970569849014, -0.07238931208848953, -0.06087282672524452, 0.0038136246148496866, 0.050566062331199646, -0.011716083623468876, -0.021799053996801376, -0.0063147093169391155, -0.034186527132987976, 0.03271067515015602, 0.0105305640026927, -0.02025061845779419, -0.01750456728041172, 0.010312815196812153, 0.04023510217666626, -0.0039557660929858685, 0.01973044127225876, -0.01088138110935688, -0.0022878723684698343, 0.0039739119820296764, -0.021617596969008446, -0.006369146052747965, -0.031283214688301086, 0.011183809489011765, 0.025670139119029045, -0.011576966382563114, -0.02513786405324936, 0.005755216348916292, -0.009332946501672268, -0.003471880219876766, -0.04328358173370361, 0.04674336314201355, 0.0005152627127245069, 0.01842395029962063, -0.017444081604480743, -0.014117366634309292, 0.019512692466378212, 0.02401283010840416, -0.008480098098516464, -0.0340171679854393, -0.02299666963517666, 0.03796083852648735, 0.004808614496141672, -0.025597555562853813, -0.017177945002913475, 0.050178952515125275, -0.007082877680659294, 0.015254498459398746, -0.0060576447285711765, 0.01862960122525692, -0.010845089331269264, -0.0041946847923099995, 0.02912992238998413, -0.012605223804712296, 0.036799512803554535, -0.02644435688853264, 0.007427646312862635, 0.0018629601690918207, 0.00314223300665617, 0.06730850785970688, -0.0033630060497671366, -0.019222361966967583, 0.01572628691792488, 0.01732311025261879, -0.007482083514332771, -0.014153658412396908, -0.008044600486755371, -0.03399297595024109, 0.009695860557258129, -0.021496623754501343, -0.018907835707068443, -0.01933123543858528, 0.005008217412978411, 0.024424133822321892, 0.03958185389637947, -0.0029592637438327074, 1.1943567187699955e-05, 0.01671825349330902, -0.021702276542782784, -0.04555784538388252, -0.021992607042193413, 0.0029199481941759586, -0.03273487091064453, 0.043017443269491196, -0.011879395693540573, 0.026105636730790138, 0.054485537111759186, 0.017940064892172813, 0.020674018189311028, -0.027363739907741547, -0.015073041431605816, 0.00561005063354969, -0.004309607669711113, 0.04023510217666626, 2.8187290809000842e-05, -0.027896013110876083, 0.0040404461324214935, 0.04248517006635666, 0.011244295164942741, -0.024121705442667007, -0.022065190598368645, 0.021121613681316376, 0.03196065500378609, -0.0018705208785831928, 0.028694424778223038, -0.008824866265058517, 0.004004154819995165, 0.008026454597711563, -0.010470078326761723, 0.006015304941684008, 0.0052410876378417015, 0.019137682393193245, 0.004485016223043203, -0.024920117110013962, -0.008619215339422226, -0.018351366743445396, 0.03338811546564102, -0.030557384714484215, 0.004297510255128145, 0.012629418633878231, 0.015689995139837265, 0.002994043054059148, 0.002546448726207018, 0.002262166002765298, 0.00027653315919451416, -0.00982288084924221, -0.0041674659587442875, 0.0016920879716053605, -0.004327753093093634, 0.012508446350693703, -0.02876700833439827, 0.01777070388197899, 0.0032632045913487673, 0.016440019011497498, 0.025016892701387405, 0.038710858672857285, -0.042944859713315964, -0.0059396978467702866, -0.017625538632273674, -0.03963024169206619, -0.0038106003776192665, 0.03147676959633827, -0.030194470658898354, 0.007476035039871931, -0.040356073528528214, 0.009308752603828907, -0.03070255182683468, 0.0004593134217429906, -0.0016164808766916394, 0.006145349238067865, 0.012835069559514523, -0.020492561161518097, 0.038372140377759933, 0.006677623372524977, 0.00909100379794836, -0.026904048398137093, 0.06116316094994545, 0.07843787968158722, 0.0033992973621934652, -0.05521136522293091, 0.023480556905269623, 0.025234641507267952, -0.0026734687853604555, -0.016923904418945312, 0.021484527736902237, -0.01831507496535778, 0.025041088461875916, 0.005600977689027786, -0.03181548789143562, 0.036170460283756256, 0.030194470658898354, 0.008371223695576191, 0.01565370336174965, -0.00391947478055954, 0.009841026738286018, -0.016185978427529335, -0.00767563795670867, -0.003620070405304432, 0.04192870110273361, -0.032517123967409134, 0.032468732446432114, -0.028694424778223038, -0.05332421138882637, 0.0019113487796857953, 0.009968046098947525, 0.00823210645467043, 0.004297510255128145, -0.03283165022730827, 0.00031112341093830764, 0.00048728808178566396, -0.014552864246070385, 0.005788483191281557, -0.0014569497434422374, -0.004503161646425724, -0.008474049158394337, 0.06527619063854218, 0.015484344214200974, -0.0059911105781793594, 0.021980511024594307, 0.01606500707566738, 0.0021623645443469286, 0.0074034519493579865, -0.0024647931568324566, -0.005126164760440588, 0.0017253551632165909, 0.003532365895807743, 0.041952893137931824, 0.003169451607391238, 0.01998448185622692, -0.005646341945976019, 0.0015393615467473865, -0.017081167548894882, 0.00258274027146399, 0.03365425392985344, -0.008068795315921307, -0.03861408308148384, -0.008461952209472656, 0.0032299375161528587, -0.0017162823351100087, -0.01964576169848442, 0.02937186509370804, -0.006556652020663023, 0.003166427370160818, 0.01342782936990261, -0.06203415244817734, -0.03072674572467804, -0.03539624437689781, 0.009883366525173187, -0.022500688210129738, -0.011395509354770184, -0.0024405987933278084, -0.005815702024847269, -0.009369238279759884, 0.021024836227297783, -0.012447960674762726, 0.02325071021914482, 0.02808956801891327, -0.002629616530612111, 0.024424133822321892, 0.02881539613008499, 0.016524698585271835, 0.0376221165060997, 0.00823210645467043, 0.004729983396828175, 0.03890441358089447, -0.007572812028229237, -0.013839132152497768, -0.011800764128565788, -0.024774949997663498, 0.02552497386932373, -0.006774400360882282, 0.0027400031685829163, 0.006326806265860796, -0.039436690509319305, -0.017552955076098442, -0.028912173584103584, 0.010675729252398014, 0.02471446432173252, 0.008226057514548302, 0.006550603546202183, -0.04674336314201355, 0.013960104435682297, -0.009520452469587326, 0.008220009505748749, -0.02110951580107212, 0.0035777303855866194, -0.017649732530117035, -0.049598291516304016, -0.03101707622408867, 0.04352552443742752, 0.013149595819413662, 0.0207224078476429, 0.026081442832946777, -0.016996487975120544, 0.004457797389477491, 0.01894412748515606, -0.00011908126180060208, -0.01122010126709938, -0.06856661289930344, 0.01342782936990261, -0.01698439009487629, -0.01144389808177948, 0.012702001258730888, -0.02944444864988327, -0.01666986383497715, 0.024266870692372322, 0.02550077997148037, -0.03459783270955086, -0.0581146776676178, -0.0027989766094833612, -0.0038075761403888464, -0.010875332169234753, 0.0005780166829936206, -0.031500961631536484, -0.026662105694413185, 0.01680293306708336, -0.003081747330725193, -0.02435155026614666, 0.017081167548894882, -0.005643317475914955, 0.02259746380150318, 0.016319047659635544, 0.020044967532157898, 0.017855383455753326, -0.040380265563726425, -0.02322651632130146, 0.024944311007857323, -0.0020686115603893995, 0.025089476257562637, -0.02552497386932373, -0.015000458806753159, -0.01567789912223816, 0.0030273103620857, 0.009635374881327152, 2.9445441214193124e-06, 0.005673560313880444, 0.02225874550640583, 0.005794532131403685, -0.03621884807944298, 0.014347212389111519, 0.012532641179859638, -0.027049213647842407, -0.014552864246070385, 0.028379900380969048, 0.057050131261348724, -0.00392552325502038, 0.06072766333818436, -0.017153749242424965, 0.03573496267199516, 0.007034488953649998, 0.016427921131253242, -0.01373025868088007, -0.0013261494459584355, 0.0070465863682329655, 0.006598991807550192, 0.0024481595028191805, 0.009889415465295315, -0.011335023678839207, -3.414135426282883e-05, 0.010082969442009926, -0.026613716036081314, -0.021206293255090714, 0.011927783489227295, 0.018702184781432152, -0.03796083852648735, 0.007929678075015545, -0.0043126316741108894, -0.008667603135108948, -0.020129647105932236, -0.01358509249985218, 0.0024481595028191805, 0.03888022154569626, 0.017129555344581604, -0.034476861357688904, 0.031234825029969215, 0.016294851899147034, -0.04088834673166275, 0.022040996700525284, 0.008891400881111622, -0.04425135254859924, -0.015593218617141247, 0.016911806538701057, -0.007064731791615486, -0.015895647928118706, -0.011679792776703835, 0.015895647928118706, -0.00970795750617981, -0.018823156133294106, 0.01865379512310028, 0.021411944180727005, 0.007082877680659294, -0.0425819456577301, 0.009121246635913849, -0.0034749044571071863, 0.029226699844002724, 0.004733007401227951, -0.00030658699688501656, 0.017734412103891373, 0.011867297813296318, -0.022936183959245682, -0.01849653385579586, -0.0062965634278953075, 0.039702825248241425, 0.03268648311495781, 0.03655757009983063, -0.014008492231369019, -0.04642883688211441, 0.0119943181052804, -0.02435155026614666, -0.00679254624992609, 0.04771113395690918, -0.015278692357242107, -0.03292842581868172, 0.000339854130288586, 0.02205309271812439, -9.436716936761513e-05, 0.004784420598298311, -0.024133801460266113, 0.02239181287586689, 0.054969422519207, 0.04579978808760643, -0.01849653385579586, 0.03280745446681976, -0.004977974575012922, -0.01599242351949215, 0.0011114251101389527, 0.027605682611465454, -0.004197708796709776, 0.016343241557478905, 0.002727905986830592, 0.006762303411960602, 0.002659859601408243, 0.0010055750608444214, 0.013633481226861477, -0.019742539152503014, 0.010591049678623676, -0.022403910756111145, 0.005486054811626673, 0.05874373018741608, -0.028500871732831, -0.004394287709146738, -0.015581121668219566, -0.009677714668214321, 0.022295035421848297, -0.007294577546417713, -0.0022092408034950495, 0.026008859276771545, 0.01852072775363922, 0.023347487673163414, 0.01813361793756485, 0.010379349812865257, 0.00165277230553329, 0.025234641507267952, -0.018048938363790512, -0.004082785919308662, -0.006045547779649496, -0.032275181263685226, -0.002404307248070836, -0.023117640987038612, -0.002033832250162959, -0.012103192508220673, -0.01256893202662468, -0.014395601116120815, 0.058017902076244354, 0.006877226289361715, 0.010415640659630299, 0.004572720266878605, -0.009006323292851448, 0.009405529126524925, 0.014637543819844723, 0.015641607344150543, -0.0472998321056366, 0.024230578914284706, 0.017468275502324104, 0.0038771345280110836, -0.01656099036335945, -0.034162335097789764, -0.014552864246070385, 0.047904688864946365, -0.020940156653523445, 0.0009949901141226292, -0.047251444309949875, 0.020698213949799538, 0.011970124207437038, 0.006804643198847771, -0.020649824291467667, -0.008377271704375744, -0.009859172627329826, 0.060050223022699356, 0.015798870474100113, 0.03396878018975258, -0.017625538632273674, 0.022004704922437668, 0.03796083852648735, 0.03929152339696884, -0.046574003994464874, 0.047590162605047226, -0.013355246745049953, -0.012617320753633976, -0.03597690537571907, 0.022984573617577553, -0.001803986611776054, -0.022948281839489937, -0.04018671065568924, 0.04488040506839752, 0.034234918653964996, 0.0003103673516307026, 0.009351092390716076, -0.0014894608175382018, -0.01229069847613573, 0.0016104322858154774, 0.03283165022730827, 0.012786680832505226, 0.011437849141657352, -0.009236169047653675, 0.03137999027967453, -0.0038741102907806635, -0.028912173584103584, 0.01883525215089321, 0.021049030125141144, 0.04717886075377464, 0.0019431037362664938, 0.04354971647262573, 0.02777504175901413, 0.011177760548889637, 0.0313074067234993, -0.0013700015842914581, 0.0378398671746254, 0.00790548324584961, 0.009538598358631134, -0.008885351940989494, -0.03721081465482712, 0.03718661889433861, -0.0029804338701069355, 0.025258837267756462, 0.0268072709441185, 0.025258837267756462, -0.006744157522916794, -0.0023045057896524668, 0.002997067291289568, 0.044590070843696594, -0.02910572849214077, 0.020601436495780945, -0.03561399132013321, -0.010627340525388718, 0.012847166508436203, -0.004760226234793663, -0.012980235740542412, 0.012030609883368015, -0.016911806538701057, 0.007899435237050056, 0.034501053392887115, -0.0033539331052452326, 0.041686758399009705, -0.015097235329449177, 0.021460333839058876, -0.009889415465295315, -0.03764631226658821, 0.045315902680158615, 0.03682370483875275, 0.021472429856657982, 0.014806903898715973, 0.01161325816065073, -0.03290423005819321, -0.001885642297565937, 0.028912173584103584, 0.0028549260459840298, 0.041372232139110565, -0.023008767515420914, -0.017286818474531174, -0.03067835606634617, 0.024774949997663498, 0.025307225063443184, -0.022488590329885483, -0.04584817588329315, 0.00835912674665451, -0.028525065630674362, 0.031597740948200226, 0.025307225063443184, 0.021774858236312866, -0.0036472887732088566, -0.02712179720401764, -0.007034488953649998, 0.03389619663357735, -0.018750572577118874, 0.010839041322469711, 0.014008492231369019, -0.042702917009592056, -0.0310896597802639, 0.008328883908689022, -0.00712521793320775, -0.014819000847637653, 0.03169451653957367, -0.034476861357688904, -0.004669497720897198, -0.019040904939174652, 0.011135420762002468, -0.040743179619312286, -0.015097235329449177, 0.0006437948904931545, -0.012677806429564953, -0.016972292214632034, -0.006435680668801069, -0.003922498784959316, 0.0013866351218894124, 0.02225874550640583, 0.010960012674331665, 0.014794806949794292, -0.02306925319135189, -0.019198168069124222, -0.022500688210129738, 0.0057340459898114204, -0.048920851200819016, 0.009332946501672268, 0.01852072775363922, 0.004273315891623497, -0.018750572577118874, -0.03728339821100235, -0.019222361966967583, 0.03329133987426758, -0.014927875250577927, -0.002268214477226138, -0.01036120392382145, 0.014577058143913746, -0.035783350467681885, 0.014988360926508904, 0.004678570199757814, 0.030533190816640854, 0.025089476257562637, -0.006974003277719021, 0.056033968925476074, -0.025984665378928185, -0.0077361236326396465, 0.011328975670039654, 0.00678044930100441, -0.00030658699688501656, 0.05695335194468498, -0.03950927034020424, -0.0009949901141226292, -0.013887520879507065, -0.005579807795584202, -0.007832900620996952, -0.024762853980064392, 0.00964142382144928, -0.012835069559514523, 0.0010811822721734643, 0.0013949519488960505, 0.0052138688042759895, 0.020855475217103958, 0.00471486197784543, 0.012266503646969795, 0.014625446870923042, -0.021799053996801376, 0.007209897506982088, -0.026468550786376, -0.0034113945439457893, 0.010209989733994007, 0.0028927295934408903, 0.007893386296927929, 0.006302611902356148, 0.023057155311107635, -0.007240140810608864, -0.013911715708673, -0.015266595408320427, -0.013113304041326046, -0.02683146484196186, 0.032880038022994995, -0.00852848682552576, -0.005035436246544123, -0.044638462364673615, -0.00986522063612938, -0.006907469127327204, 0.03137999027967453, 0.011764472350478172, -0.002785367425531149, -0.0281621515750885, -0.01502465270459652, 0.029541226103901863, 0.01158906426280737, 0.07432485371828079, -0.01941591501235962, -0.014988360926508904, 0.007899435237050056, 0.012472155503928661, -0.014056880958378315, -0.01656099036335945, 0.04120287299156189, -0.004076737444847822, 0.041009318083524704, -0.029904140159487724, 0.026662105694413185, 0.005591904744505882, -0.0030378953088074923, -0.03067835606634617, 0.022307133302092552, 0.046574003994464874, 0.01664566993713379, 0.025766916573047638, 0.02029900811612606, 0.022500688210129738, -0.010657583363354206, 0.021726470440626144, -0.016137590631842613, 0.006187689024955034, 0.00644777761772275, -0.00544069055467844, -0.033823613077402115, -0.010978157632052898, 0.0060394988395273685, 0.006435680668801069, 0.025670139119029045, -0.025089476257562637, -0.02306925319135189, -0.001584725803695619, -0.015714189037680626, 0.007724026218056679, 0.02521044760942459, 0.0023786008823662996, 0.01719004102051258, 0.002563082380220294, -0.014831098727881908, 0.020214326679706573, 0.009611180983483791, -0.005510249175131321, 0.04451749101281166, -0.050517674535512924, -0.06401808559894562, 0.04773532971739769, -0.023371681571006775, 0.0022818236611783504, 0.000824873975943774, -0.014286726713180542, -0.01977883093059063, 0.0006290514720603824, 0.001734427991323173, 0.00038521841634064913, -0.05492103472352028, -0.009000275284051895, 0.001207446213811636, 0.005195723380893469, -0.006967954803258181, -0.014141561463475227, -0.0019113487796857953, 0.011643500998616219, 0.012702001258730888, -0.005238063167780638, -0.00752442330121994, -0.02813795581459999, -0.043912630528211594, -0.008879303932189941, -0.06295353919267654, -0.003007652470842004, -0.01039749477058649, 0.013960104435682297, 0.0427996963262558, -0.028379900380969048, 0.030605774372816086, -0.015847258269786835, -0.017540859058499336, -0.026105636730790138, -0.01567789912223816, 0.03525107726454735, 0.006435680668801069, 0.007621200755238533, -0.04925956949591637, -0.007603054866194725, 0.021097419783473015, -0.004252145998179913, 0.028573453426361084, 0.01732311025261879, -0.003405346069484949, -0.028355704620480537, -0.004736031871289015, 0.001508362591266632, 0.004288437310606241, -0.006967954803258181, -0.03571076691150665, -0.00453945342451334, -0.017335206270217896, 0.003093844512477517, 0.001593798748217523, -0.03425911068916321, 0.012308843433856964, -0.007409500423818827, -0.005510249175131321, -0.03174290433526039, 0.009278509765863419, -0.01373025868088007, -0.0055888802744448185, -0.007439743261784315, 0.00528342742472887, 0.010185794904828072, -0.008220009505748749, -0.007645395118743181, 0.0005352986045181751, 0.04635625705122948, -0.0304122194647789, -0.004463845863938332, 0.037791475653648376, -0.008068795315921307, -0.01792796701192856, 0.011576966382563114, 0.003626118879765272, -0.01862960122525692, 0.017806995660066605, -0.014443989843130112, 0.0019173972541466355, 0.015569023787975311, -0.012030609883368015, -0.0022137772757560015, 0.035468824207782745, 0.017782801762223244, 0.014964167028665543, -0.00303033459931612, 0.006544554606080055, -0.03699306771159172, -0.016657767817378044, 0.004348922986537218, 0.003922498784959316, -0.022319231182336807, 0.020395783707499504, 0.010512418113648891, -0.01860540732741356, -0.006514311768114567, 0.029517030343413353, -0.010506369173526764, -0.01716584712266922, 0.05206610634922981, 0.01766183041036129, 0.01585935615003109, -0.017177945002913475, 0.0017873529577627778, -0.011377363465726376, 0.015242401510477066, -0.010578952729701996, 0.009647471830248833, -0.018714280799031258, -0.015593218617141247, -0.020867573097348213, 0.005670536309480667, -0.009127294644713402, -0.03363005816936493, 0.00876438058912754, 0.0009571865084581077, -0.0013352222740650177, -0.02709760144352913, 0.02678307704627514, -0.024678172543644905, 0.006320757791399956, -0.011322926729917526, -0.04969506710767746, 0.012351184152066708, -0.005718924570828676, -0.005349962040781975, 0.012266503646969795, -0.009097051806747913, -0.014831098727881908, -0.03950927034020424, -0.0014531693886965513, 0.0035928518045693636, -0.016911806538701057, 0.003961814567446709, -0.02712179720401764, -0.059034060686826706, -0.0022425081115216017, -0.0013987323036417365, -0.026662105694413185, 0.010379349812865257, -0.01766183041036129, 0.008824866265058517, -0.006562700495123863, 0.010675729252398014, -0.011933832429349422, -0.009508355520665646, -0.06038894131779671, 0.018532823771238327, -0.004503161646425724, -0.004149320535361767, 0.010748311877250671, 0.03167032077908516, 0.008643409237265587, -0.01946430467069149, -0.02110951580107212, 0.0135729955509305, -0.043670687824487686, 0.01748037338256836, -0.016367435455322266, 0.004596914630383253, -0.019500596448779106, 0.023940248414874077, 0.009816831909120083, 0.0031936459708958864, 0.018145715817809105, 0.008746234700083733, 0.00554654048755765, 0.019561082124710083, 0.007984114810824394, 0.002718833042308688, -0.04188031330704689, -0.021278876811265945, 0.004890270531177521, 0.0033448601607233286, -0.05259838327765465, 0.018194103613495827, -0.025645945221185684, -0.021956315264105797, 0.042630333453416824, -0.027726653963327408, -0.025355612859129906, 0.03486396744847298, -0.012460058555006981, 0.0034113945439457893, -0.025718526914715767, -0.00662318617105484, 0.01127453800290823, -0.04050123691558838, 0.005549564957618713, 0.0021411944180727005, 0.032202597707509995, -0.012822972610592842, 0.01272619515657425, -0.02302086539566517, -0.05303387716412544, 0.031138047575950623, 0.0034113945439457893, -0.008304689079523087, -0.041372232139110565, -0.040041547268629074, -0.014226241037249565, -0.03454944118857384, -0.02424267679452896, 0.02306925319135189, -0.04899343103170395, -0.002930533140897751, 0.001043378608301282, 0.015508538112044334, -0.0056160991080105305, 0.020698213949799538, -0.03633981943130493, 0.025234641507267952, -0.03764631226658821, 0.011322926729917526, 0.017226332798600197, 0.024569299072027206, 0.006242126226425171, -0.01059709768742323, -0.006124178878962994, -0.00800830963999033, 0.018581213429570198, -0.008286543190479279, 0.0006407705950550735, 0.011153566651046276, -0.01852072775363922, -0.01996028795838356, 0.006647380534559488, 0.031863875687122345, 0.019972383975982666, 0.05748562887310982, 0.00823210645467043, -0.029250893741846085, 0.014262532815337181, 0.011673743836581707, -0.006478020455688238, -0.006090912036597729, 0.01977883093059063, 0.020988544449210167, -0.02484753355383873, 0.010234183631837368, 0.010113212279975414, 0.017516665160655975, 0.006127203349024057, 0.029904140159487724, -0.0022077288012951612, 0.02108532190322876, 0.01982721872627735, -0.00926036387681961, 0.0331219807267189, 0.01599242351949215, -0.009399481117725372, 0.01619807630777359, 0.018073132261633873, -0.004400336183607578, 0.006496166344732046, -0.009961998090147972, 0.02401283010840416, 0.0005160187720321119, 0.04507395625114441, 0.009242217987775803, -0.028597647324204445, -0.03699306771159172, 0.032226789742708206, 0.005464884918183088, -0.03203323855996132, 0.025694333016872406, 0.027581488713622093, -0.03629143163561821, 0.012835069559514523, -0.0037319688126444817, 0.012810875661671162, 0.0015575073193758726, 0.019210264086723328, -0.025283031165599823, -0.040767375379800797, 0.04376746714115143, 0.001210470451042056, -0.00314223300665617, 0.0028065373189747334, -0.005731021985411644, -0.01914977841079235, 0.012883458286523819, -0.028525065630674362, -0.05661463364958763, -0.03038802556693554, -0.019077196717262268, -0.023807179182767868, -0.013996395282447338, -0.03958185389637947, -0.013464121147990227, -0.03631562739610672, 0.0046543763019144535, -0.01039749477058649, 0.0026492744218558073, 0.03917055204510689, -0.012066900730133057, -0.007070780731737614, 0.004778371658176184, 0.014202047139406204, 0.002430013846606016, -0.017419887706637383, 0.03457363694906235, 0.01408107578754425, -0.019319139420986176, 0.012024560943245888, -0.011087032034993172, 0.007657492067664862, 0.025089476257562637, 0.01664566993713379, -0.006949808914214373, 0.007844997569918633, -0.02750890515744686, -0.014903681352734566, 0.01538756676018238, 0.004088834393769503, 0.027194378897547722, -0.00041924163815565407, 0.012242309749126434, 0.017589246854186058, 0.01076645776629448, 0.01596822962164879, -0.01852072775363922, -0.022839408367872238, 0.008988178335130215, 0.01957317814230919, 0.02586369402706623, -0.0238797627389431, -0.012484252452850342, -0.021351458504796028, -0.030654162168502808, 0.01930704154074192, 0.0026114708743989468, -0.06363097578287125, -0.0019642736297100782, -0.025936275720596313, 0.02058933861553669, -0.02090386487543583, -0.014032687060534954, 0.00572799751535058, 0.012472155503928661], [-0.03203631192445755, 0.03504497930407524, 0.036970529705286026, 0.027318717911839485, -0.04486527666449547, 0.0074073439463973045, 0.02051912434399128, 0.019448038190603256, 0.028570324182510376, 0.041832540184259415, -1.4784789527766407e-05, -0.03983478248119354, 0.044407960027456284, -0.057573895901441574, 0.02582641877233982, 0.039955127984285355, 0.011769914999604225, 0.04269903525710106, -0.044937487691640854, 0.010241510346531868, -0.0025618819054216146, 0.031867824494838715, -0.0019195310305804014, 0.030182970687747, -0.007894748821854591, 0.05776645243167877, 0.019448038190603256, 0.026500359177589417, 0.049197763204574585, -0.007389292120933533, 0.07466313987970352, -0.017594698816537857, 0.021409692242741585, 0.023768488317728043, 0.036561351269483566, 0.028690671548247337, -0.044624585658311844, 0.033841513097286224, 0.006134676747024059, -0.003559255972504616, -0.012720653787255287, -0.008863540366292, -0.0036104032769799232, -0.06147313117980957, -0.03201224282383919, 0.03952188044786453, 0.0075637949630618095, 0.029629375785589218, 0.03278246149420738, 0.060077112168073654, 0.03814992681145668, 0.004163998644798994, -0.0005682624178007245, 0.011059869080781937, 0.08169139176607132, 0.009760123677551746, 0.003052295185625553, 0.053867217153310776, 0.026259666308760643, -0.015945948660373688, -0.02548944763839245, -0.014224988408386707, -0.06864579766988754, -0.014140746556222439, 0.006853749044239521, -0.01877409778535366, 0.00451300386339426, 0.04108639061450958, -0.07360408455133438, 0.02374441921710968, -0.017570629715919495, -0.006318205501884222, -0.000287139875581488, -0.04987170547246933, -0.01063263788819313, -0.02302233874797821, 0.045467011630535126, 0.019869253039360046, 0.05044936761260033, -0.00886955764144659, 0.03533381223678589, 0.0008522056159563363, -0.013815809972584248, 0.06248404458165169, -0.022528916597366333, 0.04510597139596939, -0.05839225649833679, -0.0010003825882449746, 0.012209180742502213, -0.01701703481376171, -0.007178685162216425, 0.010560429655015469, 0.007425396237522364, 0.04221764951944351, 0.00018221253412775695, -0.025970833376049995, 0.013948190957307816, 0.007106476929038763, -0.0007769888616167009, 0.03203631192445755, 0.02539316937327385, -0.013695462606847286, -0.03078470565378666, 0.04828312620520592, -0.004443804733455181, -0.025369100272655487, -0.052086085081100464, 0.039858851581811905, 0.003547221189364791, -0.03401000052690506, -0.00456114299595356, -0.016968894749879837, -0.057381343096494675, 0.03817399591207504, 0.036128103733062744, 0.024610916152596474, -0.006667211186140776, -0.02041081339120865, 0.05357838422060013, -0.012034677900373936, -0.04231392592191696, 0.0013975269393995404, -0.02984599955379963, -0.020567264407873154, -0.016523612663149834, -0.027944521978497505, 0.01025956217199564, -0.023287100717425346, -0.03689832240343094, 0.02943682111799717, -0.0422898568212986, -0.03381744399666786, 0.060799192637205124, -0.005093677435070276, -0.006697298027575016, 0.012504030019044876, 0.05824783816933632, -0.003333605593070388, -0.03855910524725914, -0.0212412066757679, -0.0271502323448658, 0.0439506433904171, 0.021518003195524216, 0.02272147126495838, -0.028762878850102425, 0.02144579589366913, 0.00046371115604415536, 0.07220806181430817, 0.001476504490710795, -0.019628558307886124, -0.020446917042136192, -0.0026882460806518793, 0.00885752309113741, 0.018954617902636528, 0.03940153494477272, -0.0389682874083519, 0.009375013411045074, 0.043469253927469254, -0.030447734519839287, 0.01740214414894581, -0.06951230019330978, 0.013214075937867165, -0.026596637442708015, -0.011745844967663288, 0.011138093657791615, -0.027294648811221123, -0.029773792251944542, 0.03068842738866806, -0.045659568160772324, -0.03552636876702309, -0.028040798380970955, -0.024839574471116066, -0.021024581044912338, 0.022023459896445274, -0.05983641743659973, -0.03078470565378666, 0.024647019803524017, 0.004669454880058765, 0.020711680874228477, -0.03889607638120651, -0.012937278486788273, 0.0026024989783763885, -0.03225293755531311, 0.017329934984445572, -0.02175869792699814, -0.021891077980399132, -0.0024941868614405394, -0.02209566719830036, -0.04943845421075821, -0.007948904298245907, 0.020675575360655785, -0.04664640873670578, 0.03350454196333885, 0.016090363264083862, -0.04703151807188988, 0.0027123154141008854, -0.04207323119044304, -0.06657583266496658, 0.01285303570330143, -0.01636716164648533, -0.0375000536441803, -0.003005660604685545, -0.027655689045786858, -0.01540438737720251, -0.03918490931391716, 0.001258375938050449, -0.03620031103491783, -0.033432334661483765, 0.03148271515965462, 0.015211832709610462, -0.021012546494603157, -0.018328813835978508, -0.01834084838628769, -0.0024054311215877533, -0.008063234388828278, -0.03309536352753639, 0.006853749044239521, -0.005439674481749535, -0.010205406695604324, 0.004106833599507809, -0.0012501021847128868, 0.021686488762497902, 0.00933890976011753, 0.04303600639104843, 0.009976747445762157, -0.01363528985530138, -0.007774401921778917, 0.04606874659657478, 0.0030146867502480745, -0.02695767767727375, -0.027655689045786858, 0.005722489207983017, 0.007293014787137508, -0.018617646768689156, -0.004233197774738073, 0.02219194546341896, -0.0574294812977314, -0.043156351894140244, -0.022733505815267563, 0.021590212360024452, 0.014947069808840752, -0.004314431920647621, -0.022757574915885925, -0.0030432690400630236, 0.003126007504761219, -0.009471291676163673, -0.02674105390906334, 0.028425907716155052, 0.003805966814979911, -0.025441307574510574, 0.03610403090715408, -0.04354146495461464, 0.03836655244231224, -0.0576220378279686, 0.044432029128074646, 0.03109760768711567, 0.0271502323448658, 0.023575933650135994, 0.03713901340961456, -0.02654849924147129, 0.020470986142754555, -0.013502907939255238, -0.028642533347010612, 0.008105355314910412, -0.03557450696825981, 0.01435737032443285, 0.03699459880590439, -0.07865865528583527, 0.010716880671679974, -0.031266093254089355, -0.03201224282383919, 0.02041081339120865, 0.01959245465695858, -0.006697298027575016, -0.0016201684484258294, -0.0003394155064597726, 0.015235901810228825, -0.05560021102428436, -0.02446649968624115, 0.003676594002172351, -0.022107701748609543, -0.00232118833810091, 0.035454161465168, -0.04953473433852196, 0.0226131584495306, 0.027029884979128838, 0.0456114262342453, 0.007190719712525606, 0.00023956529912538826, 0.05978827923536301, 0.024743296205997467, -0.014200919307768345, -0.01731790043413639, -0.007293014787137508, -0.02406935580074787, -0.021818870678544044, -0.01575339213013649, 0.009820296429097652, -0.028281493112444878, -0.011938400566577911, 0.0016306987963616848, 0.008532586507499218, -0.024298014119267464, 0.000825127586722374, -0.04792208597064018, 0.03254176676273346, 0.026043042540550232, -0.023792557418346405, -0.011793984100222588, -0.021686488762497902, 0.005454717669636011, -0.01887037418782711, -0.045154109597206116, -0.027414996176958084, -0.003348649013787508, -0.04693524166941643, -0.022829784080386162, 0.015705253928899765, 0.006715349853038788, -0.04849975183606148, 0.0252968929708004, -0.006161754950881004, -0.012094850651919842, -0.03829434514045715, -0.011529221199452877, -0.033937789499759674, 0.01175787951797247, 0.01207078155130148, -0.023600002750754356, -0.023792557418346405, -0.03449138626456261, -0.05194166675209999, 0.01836491748690605, -0.014333301223814487, -0.03588740900158882, -0.0032222848385572433, -0.016728201881051064, -0.00782855786383152, -0.008893626742064953, -0.01456195954233408, 0.012937278486788273, -0.034563593566417694, -0.022877922281622887, 0.0068778181448578835, -0.029581237584352493, 0.012149007059633732, 0.03129016235470772, -0.005695411004126072, 0.021289344877004623, 0.022733505815267563, -0.02115696296095848, 0.02416563220322132, -0.026404082775115967, -0.00020515364303719252, -0.049197763204574585, -0.06917532533407211, 0.01306965947151184, -0.013093729503452778, -0.041206736117601395, 0.016294952481985092, -0.014249058440327644, 0.022757574915885925, 0.0252968929708004, 0.03357674926519394, -0.02654849924147129, 0.016415299847722054, -0.039040494710206985, -0.03961815685033798, -0.010151250287890434, 0.01669209823012352, -0.030399596318602562, -0.006823662202805281, -0.05454115942120552, -0.015368282794952393, -0.029797861352562904, -0.03129016235470772, -0.024322083219885826, -0.010963590815663338, -0.00652881246060133, 0.011998573318123817, 0.05266374722123146, -0.01978500932455063, -0.005018460564315319, 0.00034242417314089835, 0.06753861159086227, 0.023142684251070023, -0.05714064836502075, 0.0031681288965046406, 0.039136771112680435, -0.03283059969544411, 0.020591333508491516, 0.04320449382066727, 0.03100132942199707, -0.02498399093747139, -0.020194189622998238, -0.017895566299557686, 0.04221764951944351, 0.053048860281705856, -0.019111067056655884, -0.06845324486494064, 0.02321489341557026, -0.051267728209495544, 0.0032764410134404898, 0.0025814382825046778, -0.007293014787137508, 0.021084755659103394, 0.0032824582885950804, -0.02353982999920845, -0.005189954768866301, -0.0062098936177790165, 0.020663540810346603, -0.050738200545310974, 0.022420603781938553, 0.024213770404458046, 0.026067111641168594, 5.949761089141248e-06, -0.022228049114346504, 0.04385436326265335, -0.02570607140660286, -0.049823563545942307, -0.0018307752907276154, 0.01930362358689308, 0.021481899544596672, 0.04113452881574631, -0.023684244602918625, 0.02227618731558323, -0.0185574721544981, 0.01990535669028759, 0.02084406092762947, -0.013827844522893429, -0.0002927811292465776, 0.00803314708173275, 0.051797252148389816, 0.02748720347881317, 0.04342111572623253, -0.02818521484732628, -0.004362570587545633, -0.03220479562878609, -0.03449138626456261, -0.010728915221989155, -0.03733156993985176, -0.02279367856681347, 0.02030250057578087, 0.008183580823242664, 0.019207345321774483, 0.05237491801381111, 0.017546560615301132, 0.006510760635137558, 0.021602246910333633, 0.005632229149341583, -0.02645222097635269, 0.005966191180050373, -0.044744931161403656, -0.007323101162910461, -0.042337995022535324, -0.06128057837486267, -0.060702912509441376, -0.05516696348786354, 0.03319163993000984, 0.0004185811267234385, -0.008971852250397205, 0.03215665742754936, 0.027318717911839485, 0.06296543031930923, 0.02748720347881317, 0.004807853605598211, -0.02333523891866207, -0.016042225062847137, -0.043709948658943176, 0.03403406962752342, -0.0034359004348516464, 0.024719227105379105, 0.044744931161403656, -0.012173076160252094, -0.007780419196933508, 0.02746313437819481, -0.04272310435771942, 0.02539316937327385, -0.018509333953261375, -0.021734626963734627, -0.005689393728971481, 0.014814687892794609, -0.039545949548482895, 0.013430699706077576, 0.04922183230519295, -0.006980112753808498, 0.026091180741786957, 0.019845183938741684, -0.0714859813451767, -0.04943845421075821, -0.03138643875718117, 0.014778584241867065, 0.040075477212667465, -0.011222336441278458, -0.017991842702031136, -0.01782335713505745, -0.013936156406998634, 0.030231110751628876, 0.0319400355219841, 0.00035107412259094417, -0.017293831333518028, -0.021120859310030937, 0.05574462562799454, -0.002503213007003069, 0.037379708141088486, -0.009001938626170158, -0.0267651230096817, 0.022757574915885925, 0.004157980903983116, 0.03336012735962868, -0.024334117770195007, -0.0016998981591314077, 0.007190719712525606, -0.03357674926519394, -0.02859439328312874, 0.009874452836811543, 0.0003798445104621351, -0.012106885202229023, -0.04837940260767937, 0.0634949579834938, 0.0008672489784657955, 0.022649263963103294, 0.032493628561496735, -0.024719227105379105, -0.0026987765450030565, -0.026380013674497604, -0.0013448751997202635, -0.049486592411994934, 0.011775932274758816, -0.00829790998250246, 0.003995513077825308, -0.036970529705286026, -0.04014768451452255, 0.05497440695762634, -0.010295666754245758, 0.007178685162216425, 0.011649567633867264, 0.03109760768711567, 0.01742621324956417, 0.021818870678544044, 0.029003573581576347, -0.012961347587406635, 0.0022113719023764133, -0.029773792251944542, 0.04060500115156174, -0.007094442378729582, 0.027005815878510475, 0.03285466879606247, -0.010999695397913456, -0.01409260742366314, 0.01678837463259697, 0.015488630160689354, -0.01658378541469574, 0.017185520380735397, -0.008779297582805157, -0.0010500255739316344, 0.03222886472940445, -0.033432334661483765, 0.013791740871965885, 0.0033877617679536343, -0.013767670840024948, 0.01982111483812332, 0.04404691979289055, -0.007028251886367798, -0.010644672438502312, -0.014008364640176296, -0.011192250065505505, -0.02186700887978077, -0.026933608576655388, -0.004868027288466692, -0.0406290702521801, 0.023720350116491318, 0.005704437382519245, 0.01678837463259697, 0.05174911394715309, 0.0014772566501051188, 0.028738809749484062, -0.03357674926519394, -0.03348047286272049, -0.002324197208508849, 0.005538960453122854, 0.03733156993985176, 0.009212546050548553, -0.030231110751628876, -0.04000326991081238, 0.007720245514065027, 0.02974972315132618, -0.001447922084480524, -0.023684244602918625, 0.022252118214964867, 0.02560979314148426, -0.017474351450800896, 0.036128103733062744, -0.026259666308760643, 0.011336666531860828, 0.012696584686636925, -0.021108824759721756, 0.02230025827884674, 0.01802794635295868, 0.008989904075860977, 0.042650897055864334, -0.01968873292207718, 0.00010267084144288674, 0.0157774630934, 0.017703009769320488, -0.020266396924853325, 0.03981071338057518, 0.05439674109220505, 0.01968873292207718, 0.0010199389653280377, 0.0336008183658123, -0.009405100718140602, 0.018497299402952194, 0.00025254019419662654, 0.009615707211196423, 0.021385621279478073, -0.0185574721544981, 0.005623203236609697, -0.00902600772678852, 0.0016126467380672693, 0.007623968180269003, 0.010205406695604324, 0.0452263168990612, 0.016427334398031235, -0.025994904339313507, 0.0017660888843238354, -0.026163389906287193, -0.0574294812977314, 0.0034840391017496586, 0.000501319533213973, -0.03172340989112854, -0.004338501486927271, -0.037066806107759476, -0.010030903853476048, -0.011968486942350864, 0.01690872199833393, -0.031771548092365265, -0.0035803166683763266, 0.014453647658228874, -0.011884244158864021, 0.061232440173625946, 0.019327692687511444, 0.0040586949326097965, -0.045659568160772324, 0.04103824868798256, 0.04818684980273247, 0.03376930579543114, -0.028666602447628975, -0.0020759818144142628, 0.01794370450079441, -0.00492519186809659, -0.006769506260752678, 0.014441613107919693, -0.034467317163944244, 0.013334422372281551, 0.0003593479632399976, -0.06320612877607346, 0.04813871160149574, 0.0007168154697865248, 0.009513412602245808, 0.025417238473892212, -0.005135798826813698, 0.00326741486787796, -0.030110763385891914, 0.013406630605459213, -0.016812443733215332, 0.02674105390906334, -0.04532259702682495, 0.02883508801460266, 0.009693932719528675, -0.04602060839533806, -0.008442326448857784, 0.011769914999604225, -5.128841075929813e-05, 0.01207679882645607, -0.02106068655848503, -0.005665324628353119, 0.024634985253214836, -0.022252118214964867, 0.010169302113354206, -0.01803998090326786, -0.020759819075465202, -0.010999695397913456, 0.059018056839704514, -0.0014170833164826035, 0.008887609466910362, 0.027005815878510475, 0.009663846343755722, -0.00027566932840272784, 0.01493503525853157, -0.007557777687907219, 0.031025398522615433, 0.007142581045627594, -0.011775932274758816, 0.037259362637996674, -0.0016201684484258294, 0.021842939779162407, -0.001508847693912685, -0.01440550945699215, -0.051556557416915894, -0.025369100272655487, 0.029172059148550034, -0.010734932497143745, -0.027848243713378906, 0.004239215049892664, 0.011974504217505455, -0.005310301668941975, 0.005397553090006113, 0.02290199138224125, 0.002570908050984144, 0.03047180362045765, -0.006859766319394112, -0.03153085336089134, -0.05574462562799454, -0.03668169677257538, 0.008466395549476147, -0.04582805186510086, -0.026404082775115967, 0.01140887476503849, 0.006026364862918854, -0.004479908850044012, 0.028377769514918327, -0.03969036787748337, 0.017895566299557686, -0.007527690846472979, -0.0025694037321954966, -0.006582968402653933, 0.034996841102838516, 0.018208466470241547, 0.02808893658220768, 0.011475064791738987, 0.04455237463116646, 0.044407960027456284, -0.0017525498988106847, 0.02736685611307621, -0.004404691979289055, -0.028546255081892014, 0.012961347587406635, -0.019147172570228577, -0.0019135137554258108, 0.027439065277576447, -0.03401000052690506, -0.004461856558918953, -0.01648750901222229, -0.016511578112840652, 0.009086181409657001, 0.019002756103873253, 0.01083120983093977, -0.02707802504301071, 0.04383029416203499, 0.010277614928781986, 0.007978991605341434, -0.051893528550863266, 0.014249058440327644, -0.0009334397036582232, -0.0017751149134710431, -0.021277310326695442, 0.04558735713362694, 0.02613931894302368, 0.022781644016504288, 0.053433969616889954, 0.0075998990796506405, 0.014730445109307766, 0.03304722532629967, 0.012780827470123768, -0.026163389906287193, -0.06200265884399414, 0.037187155336141586, -0.011830087751150131, 0.00043400056893005967, -0.0043445187620818615, -0.027414996176958084, -0.014489751309156418, 0.02155410684645176, 0.02943682111799717, -0.013755636289715767, -0.030977260321378708, -0.017847426235675812, 0.0024746304843574762, -0.011071903631091118, 0.005827792454510927, -0.003974452149122953, -0.008129424415528774, 0.025417238473892212, 0.005232076160609722, 0.004762723576277494, 0.012455890886485577, 0.03196410462260246, 0.013346457853913307, 0.030712496489286423, 0.032084450125694275, 0.011114024557173252, -0.01835288293659687, -0.031145745888352394, 0.002438526600599289, -0.03911270201206207, 0.01390005275607109, -0.05622601509094238, 0.003360683796927333, 0.0025618819054216146, -0.0031380420550704002, 0.019869253039360046, -0.048162780702114105, -0.0007815018761903048, 0.04551514983177185, -0.019231414422392845, -0.034371040761470795, 0.018292710185050964, 0.01908699795603752, -0.004163998644798994, -0.003493065247312188, 0.02965344488620758, 0.03579113259911537, 0.01730586588382721, 0.06282101571559906, -0.02136155217885971, -0.012877104803919792, 0.02965344488620758, -0.0035893425811082125, 0.014020399190485477, -0.012780827470123768, 0.014249058440327644, 0.012552168220281601, -0.02062743715941906, 0.025537585839629173, -0.001997756538912654, 0.02187904343008995, 0.02239653468132019, -0.01383987907320261, -0.017690975219011307, 0.004669454880058765, 0.01751045510172844, 0.03131423145532608, -0.023287100717425346, -0.009230597876012325, 0.000517491134814918, -0.02322692796587944, -0.007437430787831545, 0.01595798321068287, 0.01627088338136673, 0.007575829513370991, -0.01617460697889328, 0.01741417869925499, -0.0076660895720124245, -0.04751290753483772, 0.024815505370497704, -0.0006404704763554037, -0.025248752906918526, 0.002110581612214446, 0.019351761788129807, -0.013310353271663189, 0.006474656518548727, -0.015247936360538006, 0.018112190067768097, -0.025056198239326477, -0.033336058259010315, 0.0076660895720124245, 0.008045181632041931, -0.040580932050943375, -0.04645385593175888, 0.015115555375814438, -0.008833453059196472, 0.018846305087208748, -0.004287353716790676, -0.01689668744802475, 0.013755636289715767, -0.004329475108534098, -0.028666602447628975, -0.004230189137160778, -0.008833453059196472, 0.034996841102838516, -0.009038043208420277, 0.01456195954233408, -0.02476736716926098, -0.034250691533088684, -0.0027424022555351257, -0.006739419419318438, -0.004543090704828501, 0.043084144592285156, -0.01814829371869564, -0.021313413977622986, 0.004476900212466717, 0.0176308024674654, 0.00927873607724905, 0.006992147769778967, -0.005220041610300541, 0.01051830779761076, 0.02165038511157036, 0.017245693132281303, -0.02611524984240532, 0.029172059148550034, -0.0007363718468695879, 0.0017736105946823955, -0.008249771781265736, 0.04467272385954857, -0.007449465338140726, 0.03078470565378666, 0.004874044563621283, 0.01534421369433403, 0.019760940223932266, 0.017125345766544342, 0.03112167678773403, -0.024526672437787056, 0.007708210963755846, -0.04342111572623253, 0.015705253928899765, 0.020976442843675613, -0.03227700665593147, 0.012672515586018562, 0.01930362358689308, -0.008785314857959747, 0.03745191544294357, -0.018701888620853424, 0.0003209874266758561, 0.040075477212667465, 0.03015890158712864, -0.013719532638788223, -0.004395666066557169, 0.007473534904420376, 0.031458646059036255, 0.020687609910964966, -0.001273419358767569, -0.0036705767270177603, -0.0071004596538841724, 0.024406326934695244, 0.004792810417711735, -0.01950821280479431, 0.01487486157566309, 0.021746661514043808, -0.03292687609791756, -0.017462316900491714, 0.027655689045786858, -0.00476573221385479, 0.002038373611867428, 0.023888835683465004, -0.019159207120537758, 0.004386640153825283, -0.009880470111966133, 0.010012852028012276, -0.013033555820584297, 0.027751967310905457, -0.008394187316298485, -0.009170424193143845, -5.053624408901669e-05, -0.0013907573884353042, -0.018617646768689156, 0.012925243936479092, -0.012877104803919792, -0.026572568342089653, -0.0336008183658123, 0.015416421927511692, 0.0541079118847847, 0.005722489207983017, -0.04553921893239021, 0.020146049559116364, 0.022528916597366333, 0.008941765874624252, -0.0026476290076971054, 0.027920451015233994, -0.016042225062847137, 0.01239571813493967, 0.03658542037010193, 0.012828966602683067, -0.0069620609283447266, 0.03875166177749634, 0.023299135267734528, 0.006829679477959871, -0.042337995022535324, 0.028377769514918327, 0.019038859754800797, -0.02859439328312874, -0.03480428829789162, 0.001411818084307015, 0.0373075008392334, -0.0010176823707297444, 0.004994390998035669, 0.0023362317588180304, -0.007557777687907219, 0.012528099119663239, 0.04455237463116646, -0.03263804689049721, 0.0076299854554235935, 0.018713923171162605, 0.029099849984049797, -0.006679246202111244, -0.022516882047057152, 0.06556492298841476, 0.006956043653190136, 0.010157267563045025, 0.006438552401959896, 0.045972466468811035, 0.0023633097298443317, 0.015584907494485378, 0.05516696348786354, 0.020386744290590286, 0.030399596318602562, 0.017859460785984993, 0.022468743845820427, -0.005683376453816891, -0.01238368358463049, 0.02384069561958313, -0.010343804955482483, -0.0010470169363543391, 0.03227700665593147, 0.023720350116491318, -0.022841818630695343, -0.019556351006031036, 0.00043174406164325774, 0.025369100272655487, 0.013984295539557934, 0.021108824759721756, -0.018509333953261375, -0.011914330534636974, 0.037692610174417496, -0.022420603781938553, -0.02302233874797821, 0.01794370450079441, -0.0007897756877355278, -0.00704630371183157, 0.01897868700325489, 0.00389923551119864, 0.026211528107523918, 0.0252968929708004, -0.024634985253214836, 0.007214789278805256, -0.02924426645040512, 0.052423056215047836, 0.03658542037010193, -0.011685672216117382, -0.013298318721354008, 0.008448343724012375, -0.017257727682590485, 0.007708210963755846, 0.03762040287256241, 0.026211528107523918, 0.02830556221306324, -0.05266374722123146, -0.0252006147056818, -0.020158084109425545, 0.006595003418624401, 0.019520247355103493, -0.03169934079051018, -0.025465378537774086, 0.01161346398293972, -0.01258827280253172, 0.02353982999920845, 0.00938704889267683, 0.020470986142754555, 0.009435187093913555, -0.0042452323250472546, -0.003080877475440502, 0.008069251663982868, -0.02539316937327385, 0.0014268615050241351, 0.0029996433295309544, -0.039040494710206985, -0.018485264852643013, 0.011059869080781937, -0.04529852792620659, -0.03143457695841789, 0.030953191220760345, -0.017245693132281303, -0.01031973585486412, -0.006763488985598087, 0.019050894305109978, -0.049294039607048035, -0.00823171902447939, -0.0024971954990178347, -0.019977563992142677, -0.05516696348786354, -0.005593116395175457, 0.011132076382637024, 0.010674758814275265, 0.01753452606499195, 0.01435737032443285, 0.032806530594825745, -0.044648654758930206, -0.026572568342089653, -0.042025092989206314, 0.010494238696992397, -0.023924939334392548, 0.008075268939137459, 0.0073411534540355206, 0.00565328961238265, -0.02664477564394474, 0.0017690976383164525, 0.0017615759279578924, 0.014393473975360394, -0.01678837463259697, -0.009254666976630688, 6.374618533300236e-05, 0.018521368503570557, -0.03150678426027298, 0.015945948660373688, -0.009621724486351013, -0.012672515586018562, 0.007509639021009207, 0.008051198907196522, 0.026620706543326378, -0.009248649701476097, -0.00104325613938272, 0.01722162403166294, -0.018786132335662842, 0.007660072296857834, 0.07307456433773041, -0.02476736716926098, 0.01646343804895878, -0.0013885009102523327, -0.046092815697193146, 0.03181968629360199, 0.007293014787137508, 0.02043488249182701, -0.019147172570228577, -0.00652881246060133, 0.022625192999839783, 0.017366040498018265, 0.007816523313522339, 0.010241510346531868, 0.017438247799873352, 0.03668169677257538, -0.031458646059036255, 0.006029373500496149, -0.0504012294113636, 0.03925711661577225, 0.01540438737720251, -0.01063263788819313, -0.019628558307886124, -0.008713106624782085, -0.012221215292811394, 0.002447552513331175, 0.001674324506893754, -0.004091790411621332, 0.004528047516942024, -0.022023459896445274, 0.03268618509173393, 0.005854870658367872, 0.003001147648319602, -0.025032129138708115, -0.0035442125517874956, 0.0008642402826808393, 0.042362064123153687, 0.005755584686994553, 0.018304744735360146, 0.01280489657074213, -0.0008484447607770562, 0.03350454196333885, -0.016535647213459015, 0.08077675849199295, 0.014658236876130104, -0.013418665155768394, 0.011336666531860828, 0.010428047738969326, 0.003049286315217614, -0.01836491748690605, 0.015693219378590584, -0.020807957276701927, 0.015247936360538006, -0.011637533083558083, 0.029918208718299866, 0.02984599955379963, 0.002124120481312275, -0.028570324182510376, -0.004305406007915735, 0.014766549691557884, 0.008382152765989304, 0.034876495599746704, 0.0410141795873642, 0.002951504662632942, -0.017703009769320488, 0.05632229149341583, -0.014718410558998585, 0.0031831723172217607, -0.028281493112444878, 0.015440491028130054, -0.027390925213694572, -0.043060075491666794, 0.011541255749762058, 0.019327692687511444, 0.007389292120933533, -0.006354309618473053, -0.03369709849357605, 0.008749210275709629, -0.022938095033168793, 0.0003595360030885786, 0.01688465289771557, 0.014658236876130104, 0.007672106847167015, -0.011733810417354107, -0.019965529441833496, 0.014429578557610512, 0.012997452169656754, 0.017751149833202362, 0.05203794687986374, -0.025369100272655487, -0.04325263202190399, 0.040677208453416824, 0.003478021826595068, 0.05454115942120552, 0.03172340989112854, -0.046285368502140045, -0.011071903631091118, -0.008568690158426762, 0.015524733811616898, -0.00928475335240364, -0.03408220782876015, -0.03326384723186493, -0.0022956146858632565, -0.006679246202111244, 0.023876801133155823, -0.012528099119663239, -0.017594698816537857, 0.011432943865656853, 0.006769506260752678, -0.032084450125694275, -0.01950821280479431, -0.019760940223932266, -0.008743193000555038, 0.010909435339272022, -0.020555229857563972, 0.015055381692945957, -0.022637227550148964, 0.006643142085522413, 0.03203631192445755, -0.0375000536441803, 0.012431821785867214, 0.002700280863791704, 0.0020519124809652567, 0.006456604693084955, -0.003493065247312188, 0.010488221421837807, 0.006661193910986185, -0.0034960738848894835, -0.04428761452436447, -0.02893136441707611, 0.014862827025353909, -0.007870678789913654, 0.01647547446191311, 0.024334117770195007, 0.0032613975927233696, -0.03210851922631264, 0.005978226196020842, -0.0036344726104289293, -0.027342787012457848, -0.0017766192322596908, -0.03783702477812767, 0.02126527577638626, -0.024418361485004425, -0.030014485120773315, -0.01030770130455494, -0.017269762232899666, 0.016042225062847137, 0.0019526263931766152, -0.006913922261446714, 0.009044060483574867, 0.026572568342089653, -0.021024581044912338, -0.03502091020345688, -0.015825601294636726, 0.0036826112773269415, 0.03037552535533905, -0.010060990229249, -0.013394596055150032, -0.01844916120171547, 0.03206038102507591, -0.001904487726278603, -0.005457726307213306, 0.0236361064016819, -0.021493934094905853, -0.004997399635612965, 0.019231414422392845, -0.009928609244525433, -0.03244549036026001, 0.029460890218615532, -0.03887200728058815, 0.026524430140852928, 0.010127181187272072, 0.011324631981551647, -0.0013681923737749457, 0.0385831780731678, 0.020711680874228477, 0.00043023971375077963, 0.0055509950034320354, -0.0010620602406561375, -0.036248449236154556, 0.006408466026186943, 0.0031229988671839237, -0.013815809972584248, -0.01456195954233408, -0.005698419641703367, 0.00017130610649473965, -0.04900520667433739, 0.0126003073528409, 0.012467926368117332, 0.007816523313522339, 0.010349822230637074, 0.018437126651406288, 0.002551351673901081, -0.006582968402653933, -0.023287100717425346, 0.002665681065991521, -0.02197532169520855, 0.014706376008689404, 0.014477716758847237, 0.0014531873166561127, 0.0037036719731986523, 0.007166650611907244, -0.027968591079115868, -0.01575339213013649, -0.013430699706077576, -0.04118266701698303, 0.012419787235558033, -0.010957573540508747, 4.094610994798131e-05, -0.024538706988096237, 0.025633864104747772, -0.025369100272655487, -0.03535788133740425, -0.02301030419766903, -0.024634985253214836, -0.0016562724485993385, 0.018533403053879738, -0.007954921573400497, 0.009471291676163673, 0.018401021137833595, -0.0126003073528409, -0.07538522034883499, -0.009356961585581303, 0.008917695842683315, 0.022938095033168793, -0.019953494891524315, 0.0033787356223911047, 0.00277399318292737, -0.00554798636585474, 0.012660481035709381, -0.017594698816537857, -0.0005833057803101838, -0.044961556792259216, 0.012443856336176395, -0.016090363264083862, 0.03153085336089134, -0.004133911803364754, 0.003962417598813772, -0.04652606323361397, 0.03853503614664078, 0.0227094367146492, -0.017859460785984993, 0.004991382360458374, 0.005884957499802113, -0.009423152543604374, -0.020783888176083565, -0.00959765538573265, 0.009248649701476097, -0.03742784634232521, 0.007467517629265785, -0.030303318053483963, -0.0003412959340494126, -0.02240856923162937, 0.02364814095199108, 0.007774401921778917, 0.01057848148047924, 0.017269762232899666, 0.00593610480427742, -0.022733505815267563, 0.015175728127360344, -0.0035442125517874956, 0.007690159138292074, -0.0288110189139843, -0.0053554316982626915, 0.034876495599746704, -0.0019466091180220246, -0.03275839239358902, 0.010343804955482483, -0.023612037301063538, -0.02393697388470173, 0.023395413532853127, -0.01677634008228779, -0.02664477564394474, 0.023275066167116165, -0.015187762677669525, 0.0205070897936821, -0.008490464650094509, 0.0029018616769462824, 0.00404365174472332, -0.03764447197318077, 0.0161625724285841, 0.010006834752857685, 0.028786947950720787, 0.005722489207983017, -0.02321489341557026, -0.014922999776899815, -0.032132588326931, 0.025585724040865898, 0.022420603781938553, -0.012660481035709381, -0.033745236694812775, -0.014778584241867065, -0.041615914553403854, -0.033841513097286224, -0.0350690521299839, 0.016728201881051064, -0.05786272883415222, 0.013815809972584248, 0.0028808009810745716, 0.009375013411045074, -0.012756758369505405, -0.025730140507221222, -0.02508026733994484, -0.0031440595630556345, -0.01897868700325489, 0.03100132942199707, -0.01280489657074213, 0.033432334661483765, 0.020266396924853325, -0.029918208718299866, -0.01056644693017006, -0.02249281294643879, 0.03473208099603653, 0.00906812958419323, 0.01782335713505745, 0.007323101162910461, -0.017354005947709084, -0.021301379427313805, 0.012672515586018562, 0.03153085336089134, 0.014646202325820923, 0.026283735409379005, 0.03119388408958912, -0.003037251764908433, -0.0004922935040667653, 0.007870678789913654, 0.006378379184752703, 0.027824174612760544, 0.020892200991511345, 0.007365222554653883, -0.024634985253214836, 0.003231310984119773, 0.014694341458380222, 0.018076086416840553, 0.017185520380735397, 0.015067416243255138, -0.005060581956058741, 0.01187822688370943, 0.024310048669576645, -0.0126484464854002, 0.005725497845560312, 0.005746558308601379, -0.04077348858118057, 0.010734932497143745, -0.02291402593255043, -0.018533403053879738, 0.021842939779162407, -0.026524430140852928, 0.020446917042136192, 0.034250691533088684, 0.0021075729746371508, -0.002163233235478401, -0.0097902100533247, -0.03119388408958912, -0.0031049468088895082, -0.01109597273170948, -0.018015911802649498, 0.005584090482443571, 0.03689832240343094, -0.042362064123153687, 0.01285303570330143, 0.0021587202791124582, 0.005424630828201771, -0.005788679700344801, -0.009976747445762157, 0.007244875654578209, -0.03928118571639061, 0.02727057971060276, -0.0068116276524960995, -0.005851862020790577, -0.03740377724170685, -0.025056198239326477, -0.018473230302333832, 0.0030989295337349176, -0.028329631313681602, -0.04055686295032501, -0.02396104298532009, 0.0022459717001765966, -0.011186232790350914, -0.02032656967639923, -0.028859157115221024, 0.007792453747242689, -0.03222886472940445, 0.01575339213013649, -0.0007732280064374208, -0.008376135490834713, 0.019026825204491615, 0.014056503772735596, 0.0007664585136808455, 0.009158389642834663, -1.1840759725600947e-05, 0.011890261434018612, 0.009308823384344578, 0.043180424720048904, 0.011709741316735744, -0.0176308024674654, -0.012155024334788322, 0.01856950670480728, -0.01238368358463049, 0.013647324405610561, 0.02508026733994484, 0.018292710185050964, 0.00802712980657816, -0.018822235986590385, -0.008243754506111145, 0.021806836128234863, 0.029701584950089455, 0.020904235541820526, -0.011697706766426563, 0.03682611510157585, 0.012756758369505405, 0.010801123455166817, 0.036561351269483566, -0.00938704889267683, -0.02031453512609005, 0.01461009867489338, 0.0011478073429316282, 0.030303318053483963, 0.0017059155507013202, -0.0126484464854002, -0.006426517851650715, -0.04881265386939049, -0.019351761788129807, -0.006667211186140776, -0.03940153494477272, 0.0012192633002996445, -0.011318613775074482, 0.015247936360538006, 0.0006397183169610798, 0.0053554316982626915, 0.011444978415966034, 0.02787231281399727], [-0.01233198307454586, -0.0015340510290116072, 0.01152176596224308, -0.0037442760076373816, -0.04410918056964874, 0.03426742181181908, 0.030049527063965797, 0.03815170004963875, 0.04692110791802406, 0.0590505376458168, 0.02386566251516342, 0.014583909884095192, -0.02826228365302086, -0.04408534988760948, 0.04701643064618111, 0.005832372698932886, -0.006392375566065311, 0.002314480720087886, -0.04701643064618111, 0.012093683704733849, 0.003923000302165747, 0.04351343214511871, -0.05228284001350403, 0.031622301787137985, -0.02723759599030018, -0.004164278041571379, 0.05075772479176521, -0.005802585277706385, 0.05885989964008331, -0.03917638584971428, 0.04951857030391693, -0.016883498057723045, -0.016526049003005028, -0.006916633807122707, 0.07668467611074448, 0.03669807314872742, -0.012105598114430904, -0.0031395917758345604, 0.00302788894623518, -0.0403917133808136, -0.013690288178622723, -0.00958558451384306, -0.0002036713412962854, -0.06872548162937164, -0.04761217534542084, 0.04770749807357788, 0.03798488900065422, 0.000678408017847687, 0.0335763543844223, 0.002974271774291992, -0.012391557916998863, 0.0001227799366461113, -0.02709461748600006, 0.03412444144487381, 0.07625573873519897, -0.0002358789643039927, 0.037079352885484695, 0.03500615060329437, 0.06048033386468887, -0.032003581523895264, -0.03217038884758949, 0.020934583619236946, -0.02807164378464222, 0.005254496820271015, -0.007714936044067144, -0.03426742181181908, 0.0046051316894590855, 0.0912209302186966, -0.04889899119734764, -0.004804707132279873, -0.012135385535657406, 0.04975686967372894, -0.007434934377670288, -0.018885210156440735, -0.005880032200366259, 0.035649556666612625, -0.012951560318470001, -0.022507358342409134, 0.04794579744338989, -0.027928665280342102, -0.014619654975831509, -0.03943851590156555, -0.030645275488495827, 0.0496615506708622, 0.019337978214025497, 0.0018691591685637832, -0.029858887195587158, 0.009663032367825508, -0.018301377072930336, 0.020267345011234283, 0.020660540089011192, -0.018301377072930336, 0.00856685545295477, 0.033028267323970795, -0.016275834292173386, -0.03309975564479828, -0.0033153374679386616, -0.007851958274841309, -0.024949925020337105, 0.019743086770176888, 0.04379938915371895, -0.03236103057861328, 0.013833267614245415, 0.024759285151958466, -0.021172882989048958, -0.059336498379707336, -0.07778085023164749, 0.0029966123402118683, 0.05619094893336296, -0.005772797856479883, -0.007732808589935303, -0.015644341707229614, -0.039891283959150314, 0.004631940275430679, 0.016716687008738518, 0.03448189049959183, 0.009287710301578045, -0.02871505171060562, 0.020732028409838676, -0.030454635620117188, 0.014560080133378506, -0.0009576648590154946, 0.0022444804199039936, -0.03655509650707245, -0.002941505517810583, 0.011599212884902954, 0.010979634709656239, 0.011325168423354626, -0.07434934377670288, -0.007250252645462751, 0.06567525863647461, -0.015787320211529732, -0.011539638042449951, -0.0224358681589365, -0.022757571190595627, -0.013034965842962265, 0.014000076800584793, 0.008745579980313778, -0.036054667085409164, -0.03600700572133064, -0.0004505343968048692, 0.006696206983178854, 0.03576870635151863, 0.015918385237455368, -0.023091191425919533, 0.004858324769884348, -0.00034646468702703714, 0.05752542242407799, 0.04663515090942383, -0.03066910430788994, -0.027928665280342102, 0.044871736317873, -0.010127715766429901, 0.028810370713472366, 0.04928027093410492, 0.01654987782239914, -0.009615371935069561, 0.014119226485490799, -0.02119671180844307, -0.01834903657436371, -0.04989985004067421, -0.012284322641789913, -0.00726812519133091, -0.02080351859331131, -0.015823066234588623, 0.02568865194916725, 0.00010583834955468774, 0.007738765794783831, -0.05390327423810959, -0.023508215323090553, -0.009960905648767948, -0.04730238765478134, -0.017884353175759315, -0.01674051769077778, -0.0392240472137928, -0.018944784998893738, 0.027714194729924202, 0.03500615060329437, 0.013761777430772781, 0.006249396130442619, 0.027380576357245445, -0.00590684125199914, -0.020529475063085556, -0.004497896879911423, -0.05757308378815651, -0.046587489545345306, 0.017324350774288177, -0.028119303286075592, -0.025498012080788612, 0.01714562624692917, 0.025212053209543228, -0.03379082307219505, 0.021089477464556694, 0.00726812519133091, -0.03924787417054176, 0.013964332640171051, 0.011629000306129456, -0.0675816461443901, 0.00565066933631897, -0.018110737204551697, -0.015227317810058594, -0.019445212557911873, -0.0055732219479978085, 0.01777711883187294, -0.025760142132639885, 0.01122984942048788, 0.00035353918792679906, -0.02723759599030018, 0.023972898721694946, -0.001654690015129745, 0.04079682007431984, -0.023949068039655685, -0.03033548593521118, -0.021685225889086723, -0.019040104001760483, -0.017038391903042793, -0.023484384641051292, 0.04701643064618111, 0.02912016026675701, -0.0272852573543787, 0.03012101724743843, -0.012355812825262547, 0.007840042933821678, -0.001238411059603095, 0.018515845760703087, -0.018897125497460365, 0.010038353502750397, 0.022173739969730377, -0.006547269877046347, -0.04947090893983841, -0.025092903524637222, 0.03872361779212952, 0.027332916855812073, -0.03436274081468582, 0.03531593829393387, 0.006297056097537279, -0.01957627758383751, -0.02101798728108406, 0.03126485273241997, -0.0031008680816739798, 0.02021968550980091, 0.0014312844723463058, 0.004000447690486908, 0.010902187786996365, 0.004608110524713993, -0.023389065638184547, -0.03500615060329437, 0.01858733594417572, -0.005168113391846418, -0.028738882392644882, 0.030383145436644554, 0.0009509626543149352, 0.0457296147942543, -0.06143353134393692, 0.026999298483133316, -0.007971107959747314, 0.006922591477632523, 0.00029173033544793725, 0.036864884197711945, -0.07444466650485992, 0.0017693714471533895, -0.013583053834736347, -0.03336188569664955, 0.0015802214620634913, -0.016240090131759644, -0.007750681135803461, 0.033647846430540085, -0.022114165127277374, -0.0212086271494627, 0.010497079230844975, -0.05781138315796852, 0.005323008168488741, 0.008525153622031212, -0.010628143325448036, -0.007041740696877241, 0.013392413966357708, -0.025569502264261246, -0.054427534341812134, -0.00011775330494856462, 0.01796775870025158, -0.023555874824523926, -0.005409391596913338, 0.04005809128284454, -0.06939272582530975, 0.013023050501942635, -0.007274082396179438, -0.010836655274033546, -0.0015876683173701167, 0.037913400679826736, 0.05028112605214119, 0.0034910831600427628, -0.01291581615805626, -0.025617161765694618, 0.023710768669843674, -0.03340954706072807, 0.007119188085198402, 0.026808658614754677, -0.01193283125758171, -0.013523478992283344, 0.020088620483875275, 0.00681535666808486, 0.004283427726477385, -0.02408013306558132, 0.016919242218136787, -0.09231710433959961, 0.01637115329504013, 0.015310722403228283, 0.010753250680863857, -0.003937894012778997, 0.0035417217295616865, -0.009663032367825508, 0.01435752585530281, -0.04222661629319191, -0.030240166932344437, 0.010139630176126957, -0.00641024811193347, 0.0034046994987875223, -0.012308153323829174, -0.011676659807562828, 0.016192428767681122, 0.005740031599998474, -0.0014469228917732835, 0.02909632958471775, -0.016847752034664154, -0.00571322301402688, 0.008161746896803379, 0.01656179316341877, -0.036888714879751205, -0.0383661687374115, -0.008912389166653156, -0.06553227454423904, -0.05156794190406799, 0.03355252370238304, -0.016847752034664154, -0.006958336103707552, 0.0057370527647435665, -0.02626056969165802, -0.02323416993021965, 0.04761217534542084, -0.010765166021883488, 0.017824778333306313, -0.012868155725300312, -0.020243516191840172, 0.052997738122940063, 0.006434077862650156, 0.06162416934967041, 0.005951521918177605, -0.007697063498198986, -0.012069853954017162, 0.035482749342918396, -0.029858887195587158, -0.0062017361633479595, 0.04465726763010025, 0.011754107661545277, -0.07735191285610199, -0.018432442098855972, 0.010651973076164722, -0.04680195823311806, -0.033028267323970795, 0.01839669793844223, -0.014738804660737514, 0.006249396130442619, 0.041321080178022385, 0.06048033386468887, -0.05376029759645462, -0.0017351158894598484, -0.03412444144487381, -0.02749972604215145, 0.04908963292837143, -0.010455376468598843, -0.01019920501857996, -0.04263172298669815, -0.03407678380608559, 0.0009338349336758256, -0.015060508623719215, 0.011730276979506016, 0.0073157851584255695, -0.0468972809612751, 0.004491939675062895, 0.024151623249053955, 0.03724616393446922, -0.028810370713472366, 0.006338758394122124, -0.013189859688282013, 0.05914585664868355, 0.04225044697523117, -0.0716327354311943, -0.030859744176268578, -0.0051621561869978905, -0.02626056969165802, -0.023972898721694946, 0.02623674087226391, 0.017074136063456535, -0.03979596495628357, -0.01516774296760559, -0.027809515595436096, 0.03088357485830784, 0.03912872448563576, 0.005561307072639465, -0.0428461916744709, -0.00978218112140894, -0.02203075960278511, -0.010657930746674538, -0.05109134688973427, 0.0010514952009543777, 0.030359316617250443, -0.01573966071009636, -0.01618051528930664, 0.020493729040026665, 0.022066503763198853, 0.0025900143664330244, 0.007667276076972485, 0.02199501544237137, -0.03522061929106712, 0.033052098006010056, 0.00017909673624671996, -0.027118446305394173, 0.057096485048532486, -0.03398146480321884, -0.02204267494380474, 0.03329039737582207, 0.04460960626602173, 0.039891283959150314, 0.014166886918246746, -0.013964332640171051, 0.0132136894389987, 0.001726179732941091, 0.01120601873844862, 0.03214655816555023, -0.07048889994621277, -0.010783038102090359, 0.010848570615053177, 0.014417100697755814, 0.010991550050675869, -0.0064638652838766575, 0.008572813123464584, -0.00017323234351351857, -0.0171575415879488, -0.03550658002495766, -0.02950143814086914, 0.026212910190224648, -0.00010146332351723686, 0.017097966745495796, -0.03455338254570961, -0.036888714879751205, 0.07067953795194626, -0.007196635473519564, 0.009383030235767365, 0.042536403983831406, -0.0018155418802052736, -0.06062331423163414, 0.020100535824894905, -0.02061287872493267, -0.0027776749338954687, -0.04165469855070114, -0.012891985476016998, -0.04630153253674507, -0.038795106112957, 0.05199688300490379, -0.01544178742915392, 0.0144409304484725, -0.02745206654071808, 0.04975686967372894, 0.04177384823560715, 0.04239342361688614, 0.05337901785969734, -0.0005506945308297873, -0.010252822190523148, 0.01654987782239914, 0.02523588389158249, -0.010866442695260048, 0.011599212884902954, -0.0005979820271022618, 0.037913400679826736, 0.01898052915930748, 0.036221474409103394, -0.014369441196322441, 0.04246491566300392, -0.052425820380449295, -0.007411104626953602, -0.015537106432020664, -0.0003081134054809809, -0.02466396614909172, 0.010592399165034294, 0.03855680674314499, 0.03884276747703552, 0.050853047519922256, -0.002823845250532031, -0.05519009009003639, -0.04205980524420738, -0.03193208947777748, 0.009722606278955936, 0.03136017173528671, -0.01060431357473135, -0.000565588241443038, -0.0014975614612922072, 0.001024686498567462, 0.028572071343660355, 0.015930300578475, 0.0025185244157910347, -0.007571956608444452, 0.008548983372747898, 0.05476115271449089, 0.008280896581709385, 0.027404407039284706, 0.0010343673638999462, -0.0058293938636779785, 0.05156794190406799, 0.0026466103736311197, 0.003803850617259741, -0.028834201395511627, 0.022960126399993896, 0.028357602655887604, -0.03588785603642464, -0.03419593349099159, -0.020326919853687286, -0.025926951318979263, 0.015489446930587292, -0.027714194729924202, 0.048803672194480896, -0.006061735562980175, 0.020934583619236946, -0.00786983035504818, 0.007327700033783913, 0.017074136063456535, 0.003601296339184046, -0.019063934683799744, -0.03419593349099159, -0.008942176587879658, 0.04189299792051315, 0.011468147858977318, -0.03012101724743843, -0.011551553383469582, 0.03476785123348236, -0.003395763458684087, 0.04263172298669815, -0.007554084062576294, 0.008977921679615974, -0.0581926591694355, 0.018325207754969597, 0.04177384823560715, 0.0010864953510463238, 0.03267081826925278, -0.009579626843333244, -0.0032319326419383287, 0.001822988735511899, 0.012284322641789913, 0.05495179072022438, -0.013559223152697086, -0.011146443895995617, 0.020886924117803574, -0.010729420930147171, 0.01755073480308056, -0.0052336459048092365, -0.020851178094744682, -0.029334628954529762, -0.0011974533554166555, -0.041535548865795135, -0.004774919711053371, 0.007125145755708218, -0.020696284249424934, 0.012963475659489632, 0.03212273120880127, 0.016013706102967262, -0.004572365432977676, 0.022340549156069756, -0.008632387965917587, -0.03290911763906479, -0.016883498057723045, -0.010401759296655655, -0.04177384823560715, 0.03974830359220505, -0.012689431197941303, 0.02623674087226391, 0.06491269916296005, 0.007661318872123957, 0.021899694576859474, -0.026141420006752014, -0.030168676748871803, 0.0054034339264035225, -0.009311540983617306, 0.026498869061470032, -0.0009226646507158875, -0.00979409646242857, 0.010943889617919922, 0.03858063742518425, 0.00849536620080471, -0.041106607764959335, -0.03479168191552162, 0.02869122102856636, 0.0347440205514431, 0.007565998937934637, 0.002478311536833644, 0.00026231526862829924, -0.006839186418801546, 0.035482749342918396, -0.02180437557399273, 0.01332092471420765, 0.012463047169148922, 0.03512530028820038, 0.015274977311491966, -0.0068511017598211765, -0.019290318712592125, -0.012498792260885239, 0.025617161765694618, 0.0010939422063529491, -0.01734818145632744, 0.04001043364405632, 0.021101392805576324, 0.008263024501502514, 0.017455415800213814, 0.002679376397281885, 0.016073279082775116, -0.007035783492028713, 0.005171092227101326, 0.009174518287181854, -0.007691106293350458, 0.005611945874989033, -0.020243516191840172, 0.043918538838624954, -0.00509960250928998, 0.019326064735651016, 0.019457127898931503, 0.0224358681589365, 0.005629818420857191, -0.021506501361727715, -0.023794174194335938, -0.05175858363509178, 0.004060022532939911, 0.016716687008738518, -0.0206247940659523, 0.02506907470524311, -0.03460104018449783, 0.001989798154681921, -0.04692110791802406, -0.0019153297180309892, -0.010288567282259464, 0.012617941945791245, 0.0018766060238704085, 0.0028268240857869387, 0.019909895956516266, 0.0019138403004035354, -0.015644341707229614, -0.037055522203445435, 0.05395093560218811, 0.05509477108716965, -0.005883011035621166, -0.036674246191978455, -0.024806944653391838, 0.003940872848033905, -0.011515808291733265, 0.001726179732941091, 0.010246864520013332, -0.01120601873844862, 0.0147626344114542, -0.022257143631577492, -0.053045399487018585, 0.06252970546483994, 0.035435087978839874, -0.0038783191703259945, 0.006434077862650156, -0.0018617124296724796, 0.01183155458420515, -0.036269135773181915, 0.002074692165479064, 0.00297873979434371, 0.04611089080572128, -0.041726186871528625, 0.027404407039284706, -0.05295008048415184, -0.04503854736685753, -0.007244294974952936, 0.020755859091877937, -0.020469900220632553, -0.018325207754969597, -0.04036788269877434, -0.010437504388391972, 0.010866442695260048, -0.025092903524637222, 0.019075850024819374, 0.0010753250680863857, -0.028452923521399498, -0.016526049003005028, 0.01061622891575098, 0.025950782001018524, -0.016704773530364037, 0.016657112166285515, -0.008977921679615974, -0.008304726332426071, 0.01595413126051426, -0.0076553612016141415, 0.005123432260006666, -0.002928101224824786, 0.0012890496291220188, 0.02464013546705246, 0.001441710046492517, 0.018146483227610588, -0.015048593282699585, -0.01819414272904396, -0.018861381337046623, 0.006428120657801628, 0.03031165711581707, 0.0029846972320228815, -0.016490302979946136, -0.03417210280895233, -0.0008630898664705455, 0.020076707005500793, -0.007035783492028713, 0.031050384044647217, -0.01777711883187294, -0.0013985183322802186, 0.005040027666836977, -0.03152698278427124, -0.03269464895129204, -0.02442566677927971, 0.02466396614909172, -0.027332916855812073, -0.002707674400880933, 0.009847713634371758, -0.015286892652511597, 0.009817926213145256, 0.006600887514650822, 0.004611089359968901, -0.0032438477501273155, 0.025188224390149117, 0.01162304263561964, 0.041678525507450104, 0.02847675234079361, 0.035649556666612625, 0.03093123435974121, 0.02466396614909172, -0.0010209630709141493, 0.021256286650896072, 0.0009680904331617057, 0.0005302156787365675, 2.9391783755272627e-05, -0.03529210761189461, 0.02421119622886181, -0.014274121262133121, 0.005897904746234417, -0.01861116662621498, -0.04420449957251549, -0.0063864183612167835, -0.054046254605054855, 0.016919242218136787, 0.01718137040734291, 0.021303946152329445, 0.023520128801465034, -0.04932793229818344, 0.004816622473299503, 0.0004028745461255312, 0.008048554882407188, -0.008280896581709385, 0.009216221049427986, 0.013344754464924335, -0.026189079508185387, -0.005805563647300005, 0.036650415509939194, 0.026999298483133316, 0.021518416702747345, 0.017324350774288177, -0.012165172956883907, 0.00661876006051898, 0.039295535534620285, -0.0021044795867055655, 0.0031515066511929035, -0.036221474409103394, -0.00840004626661539, -0.0010433036368340254, -0.014726889319717884, 0.01837286725640297, -0.03519678860902786, -0.02788100391626358, 0.01594221591949463, 0.02001713216304779, -0.007297912612557411, -0.02324608527123928, -0.01654987782239914, -0.027571216225624084, -0.011551553383469582, -0.011074954643845558, -0.005617903079837561, -0.008507280610501766, 0.027761854231357574, 0.002432140987366438, -0.02990654669702053, -0.007238337770104408, 0.013511563651263714, 0.03891425579786301, 0.01082474086433649, 0.02990654669702053, 0.013463904149830341, -0.02323416993021965, -0.03662658482789993, 0.018682656809687614, 0.00023290021636057645, 0.0048464094288647175, -0.03066910430788994, -0.007202592678368092, -0.0024961838498711586, 0.015417957678437233, 0.00033771462040022016, -0.03407678380608559, 0.030430804938077927, 0.047564517706632614, 0.03090740367770195, -0.023198425769805908, 0.03915255516767502, 0.008364301174879074, -0.027976324781775475, -0.0363406240940094, 0.009246008470654488, 0.0844055712223053, -0.00514726247638464, 0.06081395223736763, -0.00022582571546081454, -0.005066836252808571, 0.008531110361218452, 0.007929405197501183, -0.03205123916268349, -0.008441749028861523, 0.016013706102967262, 0.00827493891119957, -0.009210263378918171, 0.031622301787137985, 0.023758428171277046, 0.015084338374435902, 0.017932014539837837, -0.011462191119790077, -0.02362736500799656, 0.021327776834368706, 0.04527684673666954, -0.03071676567196846, -0.01677626185119152, -0.008447705768048763, 0.007834085263311863, -0.013356668874621391, -0.017848609015345573, 0.0014521356206387281, 0.03290911763906479, 0.022507358342409134, -0.01180176716297865, 0.006678334437310696, -0.0034374657552689314, -0.03893808647990227, 0.022102249786257744, 0.009591542184352875, -0.042345765978097916, -0.010217077098786831, 0.00869196280837059, 0.027785684913396835, -0.019230743870139122, 0.00631492817774415, 0.02161373570561409, -0.01120601873844862, 0.0010284099262207747, 0.011873256415128708, 0.015799235552549362, -0.002059798687696457, -0.028858032077550888, -0.017443500459194183, 0.0003943106858059764, -0.008554941043257713, -0.0007752170204184949, 0.0012890496291220188, 0.022340549156069756, 0.012296237982809544, -0.010270695202052593, -0.015227317810058594, -0.026927808299660683, 0.06114757061004639, 0.02361544966697693, 0.030573785305023193, -0.022280974313616753, -0.04163086786866188, -0.00031593258609063923, -0.02138735167682171, 0.010943889617919922, 0.06791526824235916, 0.0004065979737788439, -0.021756716072559357, 0.016192428767681122, 0.017872439697384834, -0.0019480958580970764, -0.020743943750858307, -0.020720114931464195, -0.007863872684538364, 0.050996024161577225, 0.03338571637868881, -0.01977883279323578, 0.0248307753354311, -0.012808580882847309, -0.01899244450032711, 0.00788174569606781, 0.011295381002128124, 0.0005071304622106254, 0.018718400970101357, 0.008817070163786411, -0.0031932091806083918, 0.004718323703855276, 0.00880515482276678, 0.006014075595885515, -0.043727900832891464, 0.014965188689529896, -0.012856241315603256, 0.004894069395959377, 0.03981979191303253, -0.04325130209326744, 0.0068511017598211765, 0.015834981575608253, 0.0045127905905246735, 0.031026553362607956, 0.004929814487695694, 0.004360875114798546, 0.0331474170088768, 0.02645120956003666, -0.013416243717074394, 0.0012793687637895346, -0.0008258555899374187, 0.014905613847076893, 0.007178762927651405, -0.015799235552549362, -0.01796775870025158, -0.015489446930587292, -0.051806241273880005, 0.0010150056332349777, -0.01937372423708439, -0.012439217418432236, -0.00038984257844276726, -0.022328633815050125, -0.01940946839749813, 0.023925237357616425, 0.000405108614359051, 0.0026361846830695868, 0.01996947079896927, -0.0187541451305151, 0.008304726332426071, 0.0028774626553058624, -0.017288606613874435, -0.03881893679499626, 0.008543025702238083, 0.0031634217593818903, -0.007601744029670954, -0.01740775629878044, -0.04282236471772194, -0.01526306290179491, 0.0609569326043129, -0.016514133661985397, 0.020326919853687286, -0.04801728576421738, -0.00014642368478234857, -0.011063039302825928, 0.029167819768190384, -0.004944708198308945, -0.017276691272854805, -0.02828611247241497, 0.04742153733968735, 0.005123432260006666, 0.025092903524637222, -0.012248578481376171, 0.012999220751225948, -0.006934506352990866, 0.04377555847167969, -0.019504787400364876, 0.04684961959719658, -0.012451132759451866, 0.01936180889606476, -0.02647504024207592, 0.023174595087766647, 0.0028059729374945164, -0.022531187161803246, -0.018265632912516594, 0.032003581523895264, 0.024711625650525093, 0.015680085867643356, 0.010681760497391224, 0.0017797970212996006, 0.0065353550016880035, 0.002359161851927638, -0.009531967341899872, -0.0037442760076373816, 0.013261349871754646, -0.006499610375612974, 0.02807164378464222, -0.008930262178182602, -0.025807801634073257, 0.02300778590142727, 0.012296237982809544, 0.026141420006752014, -0.002676397794857621, 0.023317575454711914, 0.002966824918985367, -0.003357039764523506, 0.042321935296058655, 0.013332839123904705, 0.03472018986940384, 0.009835799224674702, 0.010479206219315529, 0.006773654371500015, -0.0051085385493934155, 0.026379719376564026, 0.018122652545571327, 0.0067200371995568275, 0.03700786456465721, 0.019302234053611755, -0.0094843078404665, 0.007899617776274681, -0.003821723163127899, 0.015834981575608253, -0.03936702385544777, 0.031002724543213844, -0.040129583328962326, 0.004131512250751257, 0.015787320211529732, -0.02830994315445423, -0.018634995445609093, 0.04060618206858635, -0.03674573451280594, -0.017026476562023163, -0.010044310241937637, 0.0001018356706481427, 0.04265555366873741, 0.003181294072419405, 0.02427077107131481, -0.03338571637868881, -0.059098199009895325, 0.03107421286404133, 0.01898052915930748, 0.012808580882847309, -0.016871582716703415, -0.01011580042541027, -0.03924787417054176, 0.050805386155843735, 0.03052612580358982, -0.005019176751375198, 0.045538973063230515, -0.009508137591183186, -0.0171575415879488, -0.0171575415879488, 0.028452923521399498, 0.0035208703484386206, -0.00990728847682476, -0.05528540909290314, -0.006183863617479801, -0.01695498637855053, 0.016061365604400635, 0.03815170004963875, 0.0032438477501273155, -0.012570281513035297, -0.005540456157177687, 0.004188108257949352, 0.03169379010796547, -0.019075850024819374, 0.010866442695260048, 0.005838329903781414, -0.01404773723334074, -0.019469043239951134, -0.01761030964553356, 0.011754107661545277, -0.007875788025557995, 0.003321294905617833, -0.04511003568768501, -0.002037458121776581, -0.017705628648400307, -0.0019555427134037018, -0.035458918660879135, -0.006100459024310112, 0.0020702241454273462, -0.015906469896435738, -0.01404773723334074, -0.011712404899299145, -0.004089809954166412, -0.02400864288210869, 0.040081921964883804, 0.01000260841101408, 0.047373875975608826, -0.0050310916267335415, -0.003511934308335185, -0.012212833389639854, 0.037055522203445435, -0.04932793229818344, 0.008590685203671455, 0.017681799829006195, -0.02871505171060562, -0.024163536727428436, -0.005841308739036322, -0.0015295828925445676, 0.036864884197711945, -0.01573966071009636, 0.008441749028861523, -0.005290241912007332, 0.013392413966357708, -0.0147626344114542, 0.02082734927535057, 0.015227317810058594, 0.015930300578475, 0.036221474409103394, -0.003622147487476468, 0.03286145627498627, -0.005543434992432594, -0.010026438161730766, 0.004462152253836393, -0.0032676775008440018, 0.003339167218655348, 0.04844622313976288, -0.03653126582503319, 0.002189373830333352, 0.003884276608005166, -0.032456349581480026, -0.005769819021224976, -0.006368545815348625, 0.012582196854054928, -0.025807801634073257, 0.0015310723101720214, 0.009520052000880241, -0.00448598200455308, -0.00848345085978508, 0.011992406100034714, -0.01008601300418377, 0.03126485273241997, -0.03924787417054176, -0.008084299974143505, -0.030764425173401833, 0.010467291809618473, 0.02826228365302086, -0.0012302194954827428, 0.02081543393433094, 0.010574526153504848, 0.001357560628093779, -0.02866739220917225, -0.015108168125152588, -0.011533680371940136, -0.0029370374977588654, -0.01091410219669342, 0.044728755950927734, -0.01696690171957016, -0.0003440444415900856, -0.04348960146307945, -0.03174145147204399, -0.006803441792726517, 0.040296390652656555, 0.012796666473150253, -0.01618051528930664, -0.011033251881599426, -0.016645198687911034, 0.016037534922361374, 0.02042224071919918, 0.07177571207284927, -0.018515845760703087, -0.016216259449720383, -0.0059991818852722645, 0.004941729363054037, -0.0451815240085125, -0.029191650450229645, 0.04215512424707413, -0.037913400679826736, 0.021160967648029327, -0.015989875420928, 0.030430804938077927, -0.0098060118034482, -0.00806642696261406, -0.010068140923976898, 0.017276691272854805, 0.0359116867184639, 0.026212910190224648, 0.014977104030549526, 0.029763568192720413, 0.027332916855812073, -0.05661988630890846, 0.024389920756220818, -0.013654543086886406, -0.012391557916998863, -0.003905127989128232, -0.005865138489753008, -0.015560937114059925, -0.0201958566904068, 0.003225975204259157, 0.0007256954559125006, 0.016109025105834007, -0.056476905941963196, -0.016490302979946136, -0.003583424026146531, -0.008572813123464584, 0.017705628648400307, 0.006142161320894957, 0.029739737510681152, -8.298583270516247e-05, -0.0052723693661391735, -0.006499610375612974, 0.03774658963084221, 0.021494586020708084, -0.02142309583723545, 0.03796105831861496, -0.04520535469055176, -0.058526281267404556, 0.03193208947777748, -0.022566933184862137, 0.02101798728108406, 0.011372828856110573, -0.009394945576786995, -0.019063934683799744, -0.008513238281011581, 0.021935440599918365, -0.01740775629878044, -0.059717774391174316, -0.016204344108700752, 0.012796666473150253, -0.0005317050381563604, -0.008876645006239414, -0.03009718656539917, 0.002487247809767723, 0.015930300578475, -0.01233198307454586, -0.00611833157017827, -0.0033421460539102554, 0.005972373299300671, -0.02871505171060562, -0.008251109160482883, -0.05838330090045929, 0.0005935138906352222, -0.028858032077550888, 0.026546528562903404, 0.023496299982070923, -0.04141639918088913, 0.021542245522141457, -0.009716649539768696, 0.031145703047513962, -0.006171948742121458, -0.029858887195587158, 0.0453006736934185, 0.01859925128519535, -0.0014849017607048154, -0.0456104651093483, -0.02181629091501236, 0.028524411842226982, -0.005912798456847668, 0.017074136063456535, 0.004923856817185879, -0.017693715170025826, -0.020362665876746178, 0.002262352965772152, 0.0055732219479978085, -0.004444279707968235, -0.02528354339301586, -0.03838999941945076, -0.014595825225114822, -0.0033510823268443346, -0.00879323948174715, 0.00636258814483881, -0.04248874634504318, 0.007959192618727684, -0.011557510122656822, -0.007971107959747314, -0.03145549073815346, 0.015525192022323608, -0.01394050195813179, 0.006171948742121458, -0.027118446305394173, -0.009478350169956684, 0.029358459636569023, -0.022280974313616753, 0.00046282168477773666, 0.005900883581489325, 0.049232613295316696, -0.027166107669472694, 0.004086831118911505, 0.040677670389413834, -0.014989018440246582, -0.012963475659489632, 0.018229886889457703, -0.003967681434005499, -0.00798302236944437, 0.008120045065879822, -0.041106607764959335, 0.014274121262133121, 0.024902265518903732, -0.010228992439806461, -0.0017083073034882545, 0.03865212947130203, 0.02263842336833477, 0.023710768669843674, 0.012272408232092857, 0.018492016941308975, -0.02604610100388527, -0.021554160863161087, 0.005188964772969484, 0.006231523584574461, -0.014488589949905872, 0.029549099504947662, 0.003205124055966735, -0.03512530028820038, 0.0061302464455366135, 0.02447332628071308, 0.005662584211677313, -0.039295535534620285, 0.031646132469177246, 0.018694570288062096, 0.005120453890413046, -0.00419406546279788, 0.001620434457436204, 0.010133672505617142, -0.0009971332037821412, -0.02002904564142227, -0.007148975506424904, 0.009692818857729435, -0.006749824620783329, -0.0009427711484022439, -0.009603457525372505, -0.011843468993902206, -0.030812084674835205, 0.003169379197061062, -0.005394497886300087, 0.009049411863088608, -0.02184011973440647, -0.001166921341791749, -0.03186060115695, -0.006952378898859024, -0.006380460690706968, -0.02284097671508789, 0.0006344715948216617, -0.0014089439064264297, -0.024401836097240448, 0.00014735454169567674, 0.00879323948174715, 0.005224709399044514, -0.04735004901885986, -0.0002418364310869947, 0.008823026902973652, -0.01089623011648655, 0.02830994315445423, -0.01052090898156166, -0.048994313925504684, -0.024354176595807076, -0.015525192022323608, -0.021923525258898735, -0.002027032431215048, -0.027023127302527428, 0.004852367099374533, -0.014095396734774113, 0.015799235552549362, -0.010497079230844975, -0.004760026000440121, -0.03579253703355789, 0.026975467801094055, 0.003303422359749675, -0.0041404482908546925, 0.008960049599409103, 0.02587929181754589, 0.031050384044647217, -0.020898837596178055, -0.04260789230465889, -0.0009963884949684143, -0.004089809954166412, 0.00024723540991544724, -0.009454520419239998, 0.010783038102090359, -0.010270695202052593, 0.001654690015129745, 0.0011542616412043571, 0.010866442695260048, 0.00033622526098042727, -2.9321969122975133e-05, -0.009496222250163555, 0.011396658606827259, 0.033624015748500824, 0.0009107497171498835, -0.02668950892984867, -0.03755595162510872, 0.025521842762827873, -0.0004654281074181199, -0.05538073182106018, 0.01716945692896843, -0.013690288178622723, -0.01761030964553356, 0.041678525507450104, -0.0036668286193162203, 0.004721302539110184, 0.020279260352253914, -0.03588785603642464, 0.012808580882847309, 0.0020151175558567047, 0.00686301663517952, 0.012891985476016998, -0.035268280655145645, -0.0034404443576931953, 0.017896268516778946, 0.029263140633702278, -0.02528354339301586, -0.017836693674325943, -0.024330345913767815, -0.0480649471282959, 0.03662658482789993, -0.01634732447564602, -0.004974495619535446, -0.03962915390729904, -0.051424965262413025, -0.011033251881599426, -0.019635852426290512, -0.03257549926638603, 0.013964332640171051, -0.04348960146307945, 0.014119226485490799, -0.00838217418640852, 0.008143874816596508, -0.019111594185233116, 0.004608110524713993, -0.0496615506708622, -0.0008258555899374187, -0.05681052431464195, 0.010836655274033546, -0.009037496522068977, 0.0062613110058009624, -0.00879323948174715, -0.0011594744864851236, -0.015417957678437233, -0.03338571637868881, 0.01796775870025158, -0.011682617478072643, 0.00999069306999445, 0.025116734206676483, -0.024616306647658348, -0.022376293316483498, 0.015120083466172218, 0.017705628648400307, 0.015000933781266212, 0.027309086173772812, 0.012367727234959602, -0.004727260209619999, 0.0007186209550127387, -0.011408573016524315, -0.004640876781195402, -0.0050102402456104755, 0.004611089359968901, 0.03500615060329437, -0.03460104018449783, 0.0029400161001831293, 0.007375359535217285, 0.012677516788244247, -0.005802585277706385, 0.023567790165543556, -0.005340880248695612, 0.009567712433636189, 0.02082734927535057, -0.034624870866537094, 0.007941320538520813, 0.01363071333616972, -0.0027478875126689672, 0.018074993044137955, 0.014429016038775444, -0.007423019502311945, 0.03047846630215645, -0.02245969884097576, 0.022543102502822876, -0.010675803758203983, 0.03147932142019272, 0.01131325401365757, -0.02365119382739067, -0.043108321726322174, 0.01858733594417572, -0.003845553146675229, -0.02284097671508789, 0.01775329001247883, 0.0068570589646697044, -0.031812939792871475, -0.009299625642597675, -0.017646053805947304, 0.004950665403157473, -0.015191572718322277, 0.00383661687374115, -0.024806944653391838, -0.034672532230615616, 0.033052098006010056, 0.00918047595769167, 0.022388208657503128, -0.01018728967756033, -0.016025619581341743, -0.022983957082033157, 0.005701308138668537, -0.0068689738400280476, -0.04027256369590759, -0.029167819768190384, -0.035435087978839874, -0.011861342005431652, -0.030216336250305176, -0.03188443183898926, -0.008650260046124458, -0.029382290318608284, 0.013368584215641022, 0.0005372901796363294, -0.005722159054130316, 0.04196448624134064, -0.01839669793844223, -0.010354099795222282, 0.012891985476016998, 0.035268280655145645, -0.005531519651412964, -0.009561754763126373, 0.04463343694806099, -0.008572813123464584, -0.025498012080788612, 0.017455415800213814, -0.0031932091806083918, 0.01181368250399828, 0.01820605807006359, 0.02143501117825508, 0.003821723163127899, -0.004024277441203594, -0.03193208947777748, -0.03920021653175354, 0.03650743514299393, 0.020243516191840172, 0.03390997275710106, -0.02365119382739067, -0.006583014968782663, -0.01223666314035654, 0.007875788025557995, 0.04055852070450783, -0.0011579850688576698, -0.029048670083284378, 0.011074954643845558, 0.03479168191552162, 0.02002904564142227, -0.026618018746376038, -0.03352869674563408, -0.03050229512155056, -0.021160967648029327, -0.010646016336977482, 0.023305660113692284, -0.03841383010149002, -0.003943851683288813, -0.030001867562532425, 0.028381433337926865, -0.0049715167842805386, -0.008072384633123875, 0.013666458427906036, 0.012135385535657406], [0.02851087972521782, 0.05847363546490669, 0.028525114059448242, 0.05235297977924347, -0.0406525582075119, 0.031685080379247665, -0.020297810435295105, -0.010967365466058254, -0.05389025807380676, 0.029606904834508896, 0.035898372530937195, 0.054174941033124924, -0.004875175189226866, -0.042559925466775894, 0.022945351898670197, 0.015202006325125694, 0.0009163194335997105, 0.0014847933780401945, 0.01634073443710804, 0.03689475730061531, 0.036410797387361526, 0.03717944025993347, -0.007721993140876293, -0.0012107872171327472, 0.04497972130775452, 0.02063942886888981, 0.035613689571619034, -0.028069622814655304, 0.06097883731126785, 0.0007561859674751759, 0.06411033868789673, -0.02703053504228592, 0.07350483536720276, -0.0613773912191391, 0.0027222693897783756, 0.009223689325153828, -0.016867395490407944, 0.05166974291205406, -0.010518991388380527, 0.015059665776789188, 0.009017295204102993, -0.03171354904770851, -0.03137193247675896, 0.029464563354849815, -0.037094034254550934, -0.0004385878564789891, -0.03698016330599785, 0.0528654046356678, 0.03729331120848656, 0.033080022782087326, -0.0010986936977133155, 0.02966384030878544, -0.018504315987229347, 0.12024958431720734, -0.020468618720769882, 0.01270392443984747, 0.005053101573139429, 0.021820858120918274, -0.01915908418595791, -0.03410487622022629, -0.004924994893372059, -0.006672229152172804, 0.0018966923234984279, -0.052609190344810486, -0.03236831724643707, 0.00554417772218585, -0.04347090795636177, -0.006907091476023197, -0.015372815541923046, 0.00835540983825922, 0.004398333374410868, 0.002820128807798028, 0.007294970564544201, 0.010639981366693974, 0.034645773470401764, -0.057648058980703354, 0.0047470685094594955, -0.0212514940649271, 0.00700317183509469, 0.029920054599642754, -0.025308210402727127, 0.000705032201949507, -0.025251273065805435, -0.039371490478515625, 0.012497530318796635, -0.010611512698233128, -0.1146128848195076, 0.003925050143152475, -0.014589941129088402, 0.048111218959093094, 0.005405395291745663, 0.005917822476476431, 0.02861051820218563, -0.004135002847760916, -0.016653884202241898, -0.03222597762942314, 0.029606904834508896, 0.011579431593418121, 0.01296013779938221, 0.02429758943617344, 0.058758318424224854, -0.0031902152113616467, 0.014789218083024025, -0.024454165250062943, 0.02082447148859501, -0.016255328431725502, -0.035670626908540726, -0.0048324731178581715, -0.012198613956570625, -0.009522605687379837, 0.03222597762942314, 0.01679622381925583, -0.019685745239257812, 0.02226211503148079, 0.022418688982725143, -0.029407627880573273, 0.0075013646855950356, -0.014155801385641098, -0.0019038093741983175, -0.053121618926525116, -0.044695038348436356, 0.039741575717926025, 0.044182609766721725, -0.02610531821846962, 0.027471791952848434, -0.035385943949222565, 0.05724950507283211, -0.017621802166104317, -0.003234696574509144, -0.022931117564439774, -0.009010178036987782, 0.019315658137202263, -0.017792610451579094, -0.026048382744193077, 0.02596297860145569, 0.02481001615524292, 0.004021130036562681, 0.04384099319577217, -0.026745852082967758, -0.007985323667526245, -0.016653884202241898, 0.0085902726277709, 0.016810458153486252, 0.017949186265468597, -0.014589941129088402, -0.019614573568105698, 0.002734724199399352, 0.02435452491044998, 0.025948744267225266, 0.007344789803028107, 0.0013700310373678803, 0.018575485795736313, 0.02281724475324154, -0.023528948426246643, 0.01069691777229309, -0.04153507202863693, 0.011671952903270721, 0.004106534644961357, -0.049733906984329224, -0.020767536014318466, -0.016497308388352394, -0.006181153003126383, -0.012903201393783092, -0.05813201889395714, -0.014760750345885754, 0.03310849145054817, -0.02799845300614834, 0.04569142311811447, -0.09030105918645859, -0.005761247593909502, -0.037663400173187256, 0.009401615709066391, 0.009280625730752945, 0.015500922687351704, -0.0376918651163578, -0.008070728741586208, -0.011059886775910854, -0.03669548034667969, -0.014226972125470638, -0.015529390424489975, 0.043727122247219086, 0.03749258816242218, 0.0025728114414960146, 0.021778155118227005, -0.05161280557513237, 0.0018877959810197353, -0.031685080379247665, 0.05892912670969963, -0.023571651428937912, -0.004722158890217543, 0.00898171029984951, -0.04059562087059021, -0.01020584162324667, -0.0288382638245821, -0.03661007434129715, -0.032197508960962296, 0.00023130394401960075, 0.04754185676574707, 0.006302142981439829, -0.010148905217647552, 0.013116712681949139, 0.037606462836265564, 0.028126560151576996, -0.004056715406477451, 0.013913821429014206, 0.029464563354849815, -0.07720569521188736, -0.022931117564439774, 0.006398222874850035, 0.020796002820134163, 0.04386946186423302, 0.0007237144745886326, -0.026688916608691216, 0.0014162918087095022, 0.003978427965193987, -0.020468618720769882, -0.010447820648550987, 0.030432481318712234, 0.0125687001273036, -0.005732779391109943, -0.020724833011627197, 0.003035419387742877, 0.03661007434129715, 0.04850977286696434, -0.023856332525610924, 0.03535747528076172, 0.007907036691904068, 0.0018015018431469798, 0.013778598047792912, -0.010988716036081314, -0.016725054010748863, -0.024183716624975204, 0.009280625730752945, -0.0048787337727844715, -0.04090877249836922, 0.007052991073578596, 0.01004214957356453, 0.008796666748821735, 0.005629581864923239, -0.009273508563637733, -0.011259163729846478, -0.023016521707177162, -0.006736282259225845, -0.018248101696372032, -0.047057896852493286, 0.02156464383006096, 0.011657718569040298, 0.03068869560956955, -0.03401947021484375, 0.01735135354101658, 0.06678634136915207, 0.022703371942043304, -0.01648307405412197, 0.018134228885173798, 0.006732724141329527, -0.014177151955664158, 0.016212627291679382, 0.008511984720826149, -0.018347740173339844, 0.013885353691875935, -0.00784298311918974, 0.0003078121808357537, -0.04318622499704361, -0.001326439087279141, -0.05178361386060715, 0.00387167208828032, 0.07367563992738724, -0.02943609468638897, 0.009849989786744118, -0.008177484385669231, 0.0029571319464594126, 0.06439501792192459, 0.004309370182454586, -0.009693413972854614, -0.030774099752306938, 0.0011529611656442285, 0.052096765488386154, 0.020796002820134163, -0.013045541942119598, 0.015059665776789188, 0.01814846321940422, -0.01938682794570923, 0.042930010706186295, -0.03245372325181961, -0.05949849262833595, 0.02814079262316227, -0.03202670067548752, 0.029179882258176804, 0.00809919647872448, 0.0004652767674997449, 0.007163305301219225, -0.04497972130775452, 0.004238199908286333, -0.018575485795736313, -0.06217449903488159, 0.027699535712599754, -0.039513830095529556, 0.00939449854195118, -0.03905833885073662, 0.0005337783368304372, 0.03199823200702667, 0.08158979564905167, -0.0007019184995442629, 0.01989925652742386, -0.0029820415657013655, 0.028667455539107323, 0.037008631974458694, 0.020027363672852516, -0.018034590408205986, -0.020312044769525528, 0.04005472734570503, 0.024525335058569908, 0.017009735107421875, -0.005686518270522356, -0.003275619586929679, 0.010618629865348339, 0.026404233649373055, -0.0005595776019617915, 0.024368759244680405, -0.00607439735904336, 0.04850977286696434, -0.0006547680823132396, 0.02045438624918461, -0.06188981607556343, -0.012590051628649235, -0.04782653972506523, 0.01605605147778988, 0.027272513136267662, -0.0009981654584407806, -0.011643484234809875, -0.005106479395180941, -0.013138064183294773, -0.023856332525610924, -0.023827863857150078, -0.03142886608839035, -0.020852940157055855, 0.006383989006280899, 0.007700642105191946, -0.00404959823936224, -0.05300774797797203, 0.001983876107260585, -0.057932741940021515, 0.0051313890144228935, -0.0001545733102830127, 0.01689586415886879, -0.014476068317890167, -0.009757467545568943, -0.020582491531968117, 0.00874684751033783, 0.024269120767712593, -0.005273730028420687, -0.016511542722582817, -0.06097883731126785, 0.006362637504935265, 0.015899477526545525, 0.023443544283509254, -0.024753080680966377, -0.04660240560770035, 0.01809152588248253, 0.004739951342344284, -0.007035198155790567, -0.013572203926742077, -0.015187772922217846, 0.014298141933977604, 0.0020301369950175285, 0.05932768061757088, -0.06661553680896759, 0.017251715064048767, -0.03618305176496506, 0.007544067222625017, -0.03498739004135132, 0.03401947021484375, -0.055114392191171646, 0.05329242721199989, -0.021906262263655663, 0.03897293657064438, 0.01809152588248253, -0.0006049487856216729, 0.01611298881471157, -0.048168156296014786, 0.021920496597886086, 0.009736116975545883, 0.0028094532899558544, 0.011024301871657372, 0.03396253660321236, -0.027087470516562462, 0.007551183924078941, 0.03259606286883354, -0.018447378650307655, -0.028966370970010757, 0.056822482496500015, -0.03735024854540825, -0.016838926821947098, 0.012340954504907131, 0.013892470858991146, -0.005102920811623335, 0.013942290097475052, 0.04290154203772545, 0.011622133664786816, 0.025393614545464516, 0.011031419038772583, -0.04375558719038963, -0.023087691515684128, -0.0029162089340388775, 0.02453956939280033, -0.0023521832190454006, 0.004156353883445263, -0.00881801825016737, -0.00761523749679327, -0.023258501663804054, 0.047741133719682693, -0.039969321340322495, 0.0365816093981266, 0.010099085979163647, 0.03698016330599785, -0.029179882258176804, 0.01254734955728054, 0.02703053504228592, -0.016596946865320206, 0.011387270875275135, -0.013180766254663467, -0.033165425062179565, -0.0635979101061821, 0.0354713499546051, -0.04452423006296158, 0.03965616971254349, -0.029549967497587204, -0.0026190723292529583, 0.05648086220026016, -0.022561030462384224, 0.015273177064955235, 0.021778155118227005, -0.008234419859945774, 0.07549760490655899, 0.003051432780921459, -0.017564864829182625, -0.053207024931907654, -0.04207596555352211, -0.029080243781208992, -0.006181153003126383, -0.009849989786744118, -0.03985544666647911, 0.029236817732453346, 0.032055169343948364, -0.04267379641532898, 0.016952799633145332, 0.030119331553578377, -0.027286747470498085, 0.006181153003126383, -0.04073796048760414, 0.03911527618765831, -0.002364638028666377, -0.06439501792192459, -0.030204735696315765, -0.058160487562417984, -0.001202780520543456, -0.0005529053742066026, -0.011686187237501144, 0.019699979573488235, -0.007184656336903572, 0.031229590997099876, -0.007163305301219225, -0.008291356265544891, 0.009579542092978954, -0.001000834396108985, -0.004038922488689423, 0.001549736363813281, 0.01864665560424328, 0.001367362099699676, 0.010860609821975231, -0.012255550362169743, 0.0621175616979599, 0.002259661676362157, 0.029521500691771507, -0.01134456880390644, -0.015216240659356117, -0.03720790892839432, 0.009807286784052849, 0.01985655352473259, -0.05090110003948212, -0.035158198326826096, -0.035898372530937195, -0.01730865240097046, -0.030631758272647858, 0.010156022384762764, 0.09645018726587296, 0.027429088950157166, 0.06069415435194969, -0.02055402472615242, -0.021123386919498444, -0.012020687572658062, -0.025151634588837624, 0.06980396807193756, -0.01634073443710804, -0.021465005353093147, -0.03347857668995857, 0.029635373502969742, 0.01597064733505249, 0.07310628145933151, -0.04540674388408661, -0.027571430429816246, 0.002430470660328865, -0.0036901875864714384, -0.001096024876460433, 0.03273840248584747, 0.006657994817942381, -0.015942178666591644, 0.04500818997621536, 0.015088134445250034, 0.04415414482355118, -0.007042315322905779, -0.01548668835312128, 0.008241537027060986, -0.01418426912277937, -0.028596283867955208, -0.047655727714300156, -0.015088134445250034, 0.007198890205472708, 0.009159635752439499, 0.050246331840753555, 0.01837620884180069, -0.0006956910947337747, 0.015073900111019611, -0.02787034586071968, 0.0049427873454988, -0.052239105105400085, -0.027528727427124977, -0.04648853465914726, 0.021735453978180885, 0.004505089018493891, 0.0016102312365546823, -0.0473141111433506, -0.001955407904461026, 0.04845283925533295, -0.039229147136211395, 0.0002379761717747897, 0.009059997275471687, -0.0014696696307510138, -0.010967365466058254, 0.033677853643894196, 0.030318608507514, 0.026276128366589546, -0.00835540983825922, -0.023571651428937912, 0.009067114442586899, 0.0057790400460362434, 0.021678516641259193, 0.0005106479511596262, 0.001873561879619956, 0.0066402023658156395, 0.024496866390109062, -0.006230972241610289, 0.003893023356795311, -0.00932332780212164, 0.0010800114832818508, -0.016554245725274086, 0.015401284210383892, -0.003101252019405365, -0.016127223148941994, 0.007757578510791063, -0.01790648326277733, -0.012319603934884071, -0.0063163768500089645, -0.023400841280817986, 0.02318732999265194, 0.007280736230313778, 0.04392639920115471, 0.012775094248354435, 0.023158863186836243, -0.02532244473695755, -0.048623647540807724, -0.022205177694559097, 0.002240089699625969, 0.04893679544329643, 0.026788555085659027, 0.009600892663002014, 0.029051775112748146, 0.0067611923441290855, 0.006960469298064709, -0.02421218529343605, -0.004519323352724314, -0.00275429617613554, -0.004021130036562681, 0.02986311726272106, -0.02846817672252655, 0.0012134560383856297, 0.017379822209477425, -0.01013467088341713, -0.008227303624153137, -0.00048306939424946904, -0.0023859890643507242, -0.003094135085120797, 0.04310081899166107, -0.014817686751484871, 0.009529722854495049, 0.005184766836464405, 0.01991349086165428, -0.01574290171265602, 0.012419242411851883, -0.0290233064442873, -0.003949959762394428, -0.02972077764570713, -0.0012837368994951248, 0.01159366499632597, 0.03791961073875427, 0.012397890910506248, -0.01648307405412197, 0.003850321052595973, 0.013522384688258171, 0.012497530318796635, 0.031001845374703407, -0.0123836575075984, -0.010063501074910164, 0.01044070441275835, 0.01490309089422226, 0.010390885174274445, -0.035528283566236496, 0.023770928382873535, -0.009622244164347649, -0.004590493626892567, -0.06758345663547516, 0.019415296614170074, 0.020440151914954185, 0.013963640667498112, 5.601892189588398e-05, 0.03535747528076172, -0.02471037767827511, -0.03877365589141846, -0.004974814131855965, -0.02647540532052517, -0.008618740364909172, -0.003718655789270997, -0.004320045933127403, -0.004836031701415777, 0.011081238277256489, 0.01735135354101658, 0.025151634588837624, -0.032425254583358765, 0.004473062232136726, -0.016952799633145332, -0.011166642419993877, 2.5055610421986785e-06, -0.0003638588823378086, -0.04970543831586838, 0.0016093417070806026, 0.029635373502969742, 0.007643705699592829, 0.017066672444343567, -0.00692132581025362, -0.016184158623218536, 0.03865978494286537, 0.01679622381925583, -0.004789771046489477, -0.013436979614198208, -0.017934951931238174, -0.03233984857797623, -0.009522605687379837, 0.022091304883360863, -0.05124272033572197, -0.04053868353366852, 0.0033734790049493313, 0.037094034254550934, -0.022333284839987755, -0.019500700756907463, -0.004441035445779562, 0.02425488643348217, -0.0038823476061224937, -0.042702265083789825, -0.003400167915970087, -0.011671952903270721, 0.06046640872955322, 0.027713770046830177, 0.02045438624918461, 0.01749369502067566, 0.04267379641532898, 0.02174968831241131, 0.002339728409424424, -0.015372815541923046, -0.021820858120918274, -0.002110203728079796, -0.021493474021553993, -0.03162814676761627, -0.010618629865348339, -0.0009305535349994898, 0.00981440395116806, 0.03652467206120491, 0.02601991407573223, 0.05192595720291138, 0.001980317523702979, 0.005387602373957634, -0.024923888966441154, 0.029692308977246284, 0.001020406256429851, -0.024368759244680405, 0.017806844785809517, -0.004828914534300566, 0.031314995139837265, 0.020767536014318466, 0.01642613857984543, -0.11051346361637115, 0.012561582960188389, 0.012582934461534023, -0.0277280043810606, -0.0002631082315929234, -0.01068980060517788, -0.015984881669282913, -0.013017074204981327, 0.021408069878816605, -0.001227690139785409, 0.007857216522097588, 0.02435452491044998, 0.04036787524819374, -0.0480542816221714, -0.02041168324649334, -0.016725054010748863, 0.027429088950157166, -0.03009086288511753, 0.0025763700250536203, 0.00033761479426175356, -0.03689475730061531, -0.014283907599747181, 0.013565086759626865, -0.042474519461393356, -0.01634073443710804, -0.020354747772216797, -0.006497861351817846, 0.033905599266290665, -0.002240089699625969, -0.005882237106561661, -0.006782543379813433, 0.024639207869768143, -0.028155026957392693, 0.01648307405412197, -0.0032240210566669703, 0.010575927793979645, 0.003458883613348007, -0.0023272735998034477, 0.036638543009757996, -0.02207707241177559, 0.027799176052212715, 0.023913269862532616, -0.022005900740623474, 0.05272306501865387, 0.0084977513179183, -0.034418027848005295, 0.05124272033572197, -0.028852498158812523, -0.0074088433757424355, -0.009223689325153828, 0.024525335058569908, -0.0063412864692509174, 0.011515378020703793, -0.012469061650335789, 0.019514935091137886, 0.007558301091194153, -0.003640368115156889, 0.023856332525610924, 0.012554465793073177, -0.03680935502052307, 0.0022454275749623775, 0.019514935091137886, 0.02818349562585354, 0.021166089922189713, 0.0484243705868721, 0.04415414482355118, -0.0021653608419001102, -0.028638986870646477, 0.019785383716225624, -0.0035442879889160395, 0.01110970601439476, 0.023870566859841347, -0.024980826303362846, -0.03401947021484375, 0.028496645390987396, 0.004487296566367149, -0.010269895195960999, -0.04483737796545029, -0.030745631083846092, -0.02542208321392536, -0.020895641297101974, 0.026959363371133804, -0.030062396079301834, 0.001978538231924176, 0.03319389373064041, -0.02369975857436657, 0.020796002820134163, -0.0024607181549072266, 0.0020977489184588194, 0.018547017127275467, -0.01846161298453808, -0.015956413000822067, -0.02462497353553772, 0.027742238715291023, 0.00277742650359869, 0.01740829087793827, -0.040624089539051056, 0.00016302480071317405, -0.10430740565061569, 0.012419242411851883, 0.03828969970345497, -0.03105878084897995, -0.04341397061944008, -0.009494137018918991, 0.055057454854249954, 0.01819116622209549, -0.0030265231616795063, -0.014205620624125004, 0.021137621253728867, 0.017422525212168694, -0.025436315685510635, -0.0003749792813323438, -0.002837921492755413, -0.010454937815666199, -0.008376761339604855, 0.011743123643100262, -0.02869592234492302, -0.006718489807099104, 0.015287411399185658, -0.007423077244311571, 0.009245040826499462, 0.005138506181538105, 0.015116602182388306, 0.034731175750494, -0.0007735337712801993, 0.011323217302560806, 0.016838926821947098, 0.020240874961018562, 0.04295847937464714, 0.009679180569946766, -0.025066230446100235, 0.025023527443408966, 0.002273895777761936, -0.020867174491286278, -0.023486247286200523, 0.004668781068176031, -0.020482853055000305, -0.009351796470582485, -0.00497837271541357, -0.003332555992528796, 0.001870003412477672, 0.03754952549934387, 0.020568259060382843, -0.009294860064983368, -0.01270392443984747, -0.01611298881471157, 0.00042390896123833954, -0.05110037699341774, -0.02448263205587864, -0.0036314718890935183, 0.0033645827788859606, -0.028254665434360504, -0.021052217110991478, 0.021265728399157524, 0.004088742192834616, 0.018959805369377136, -0.008433697745203972, -0.022845711559057236, 0.002925105160102248, 0.000555574253667146, -0.03874519094824791, -0.03211210295557976, 0.02750025875866413, -0.018803231418132782, -0.010568810626864433, -0.002752516884356737, -0.012348071672022343, 0.004152795299887657, 0.03333623707294464, -0.010141788050532341, -0.03225444629788399, 0.014412014745175838, -0.004764861427247524, 0.004487296566367149, -0.011131057515740395, -0.019002508372068405, -0.03233984857797623, 0.006554797757416964, 0.027713770046830177, 0.02065366320312023, -0.007828748784959316, 0.039513830095529556, 0.021265728399157524, 0.006117099430412054, -0.00932332780212164, 0.025436315685510635, 0.013814182952046394, -0.028895199298858643, 0.01360778883099556, 0.004807563498616219, 0.021493474021553993, -0.011081238277256489, -0.0030621082987636328, -0.036638543009757996, -0.018404677510261536, -0.027799176052212715, -0.025635594502091408, 0.010938896797597408, -0.015159304253757, 0.00466166390106082, 0.0006876843981444836, 0.011864112690091133, -0.013913821429014206, -0.0012410345952957869, 0.006430249661207199, 0.014718047343194485, 0.015358582139015198, -0.010035032406449318, -0.031144186854362488, 0.031001845374703407, 0.0112733980640769, 0.025891806930303574, 0.011679070070385933, 0.0017365588573738933, -0.0247673150151968, 0.02842547558248043, 0.0169955026358366, -0.03484505042433739, 0.0005164305330254138, -0.0002095079980790615, -0.0067611923441290855, 0.013614905998110771, 0.0002058382669929415, 0.023315437138080597, 0.040026258677244186, 0.026461170986294746, 0.0031137068290263414, -0.006793218664824963, 0.047883473336696625, -0.0025514604058116674, -0.016312265768647194, 0.03376325964927673, -0.026603512465953827, 0.006131333764642477, 0.016967033967375755, 0.01772144064307213, 0.03040401265025139, 0.0410226434469223, 0.005337783135473728, 0.021137621253728867, -0.008967475965619087, 0.004910760559141636, -0.007245151326060295, 0.047285642474889755, -0.006625968497246504, 0.004409009125083685, -0.019016742706298828, -0.012134560383856297, -0.018262336030602455, 0.0075155990198254585, 0.011287632398307323, -0.014333727769553661, -0.0015470675425603986, 0.017934951931238174, 0.02287418022751808, 0.01062574703246355, -0.02824043110013008, 0.01722324825823307, 0.019984660670161247, -0.002044371096417308, -0.01796342059969902, -0.010348182171583176, 0.028667455539107323, -0.012789328582584858, 0.0009483461617492139, 0.006843038368970156, 0.0026012796442955732, -0.013977875001728535, 0.0028005570638924837, -0.001194773823954165, -0.011800059117376804, -0.00567228440195322, -0.0002479845134075731, 0.02651810646057129, 0.004273785278201103, -0.003828969784080982, 0.00636619608849287, 0.002606617519631982, -0.030318608507514, 0.011116823181509972, 0.013237702660262585, -0.014226972125470638, 0.052836935967206955, 0.008049377240240574, 0.03749258816242218, -0.010476289317011833, -0.002432249952107668, -0.0020532673224806786, 0.028268899768590927, 0.008440814912319183, -0.011159525252878666, 0.012696807272732258, 0.013899588026106358, -0.0208814088255167, 0.009565307758748531, 0.0007237144745886326, -0.020497087389230728, -0.031001845374703407, 0.06069415435194969, 0.018874401226639748, 0.03504432737827301, 0.023813629522919655, 0.012582934461534023, -0.016696585342288017, 0.004608286079019308, 0.03891599923372269, 0.004234641324728727, 0.005028191953897476, 0.02078177034854889, -0.013821300119161606, -0.04187668859958649, 0.037094034254550934, 0.03729331120848656, 0.020610960200428963, -0.00017269952513743192, 0.004718600306659937, -0.02957843616604805, -0.02684549055993557, -0.0036688363179564476, -0.05676554515957832, 0.03322236239910126, -0.0022258555982261896, 0.021365366876125336, 0.02472461201250553, -0.0023201564326882362, 0.012782211415469646, -0.020112767815589905, 0.029692308977246284, 0.01934412680566311, -0.013728778809309006, -0.01360778883099556, -0.008483516983687878, 0.0018237426411360502, 0.03148580342531204, 0.004850265569984913, 0.011558080092072487, 0.03310849145054817, -0.023358140140771866, 0.004238199908286333, -0.06297160685062408, -0.02174968831241131, -0.01948646828532219, -0.009173870086669922, -0.01874629408121109, 0.05147046595811844, 0.014945792965590954, -0.014390663243830204, 0.003832528367638588, -0.000568473944440484, 0.013572203926742077, 0.017365587875247, 0.018532782793045044, -0.016212627291679382, -0.038545913994312286, 0.02133689820766449, -0.018618188798427582, 0.0038005015812814236, 0.020255107432603836, 0.01948646828532219, 0.02115185558795929, -0.026745852082967758, 0.0008642760803923011, -0.0030656668823212385, -0.0016244653379544616, -0.015757136046886444, 0.013664725236594677, 0.00021039762941654772, 0.007686407770961523, -0.007956855930387974, 0.003675953485071659, 0.004996165167540312, 0.014198503457009792, -0.06758345663547516, -0.013614905998110771, 0.014604175463318825, -0.012511763721704483, -0.013501033186912537, -0.02869592234492302, -0.01101718470454216, -0.006629526615142822, -0.003097693668678403, -0.001957187196239829, 0.0023859890643507242, -0.030859503895044327, 0.012718157842755318, -0.026233425363898277, 0.02485271915793419, 0.03296614810824394, -0.030489418655633926, -0.013643373735249043, -0.0071312785148620605, -0.0062096212059259415, 0.024610739201307297, -0.010611512698233128, 0.0035407296381890774, -0.014689579606056213, -0.00029802622157149017, 0.010704034939408302, -0.009387381374835968, 0.026361532509326935, 0.007978206500411034, -0.038859061896800995, 0.013223468326032162, 0.008447932079434395, 0.014846154488623142, 0.025379380211234093, -0.01903097704052925, 0.01351526752114296, -0.014917325228452682, -0.02592027559876442, -0.019272956997156143, 0.010348182171583176, -0.008312707766890526, 0.018077293410897255, 0.007387491874396801, 0.008149015717208385, -0.002232972765341401, -0.01874629408121109, 0.006942676845937967, -0.025948744267225266, 0.057790398597717285, -0.01841890998184681, 0.006736282259225845, -0.0223617535084486, -0.0020710600074380636, -0.01564326323568821, 0.023087691515684128, 0.03137193247675896, -0.019543403759598732, -0.028155026957392693, -0.01254734955728054, -0.0052025592885911465, 0.004924994893372059, 0.00883936882019043, -0.019059445708990097, -0.016540011391043663, 0.0020568259060382843, -0.011415739543735981, 0.012333838269114494, -0.024525335058569908, 0.002992717083543539, 0.012789328582584858, -0.014817686751484871, 0.023116160184144974, -0.023358140140771866, -0.0299485232681036, -0.008141898550093174, -0.024568036198616028, 0.13345882296562195, -0.025165868923068047, -0.023158863186836243, -0.0033058670815080404, 0.01574290171265602, -0.006106424145400524, -0.0016360306181013584, -0.0038005015812814236, -0.03740718588232994, 0.006419573910534382, -0.017707206308841705, -0.01224131602793932, 0.03680935502052307, 0.013586437329649925, 0.010803673416376114, -0.013636256568133831, -0.02583487145602703, 7.306090992642567e-05, 0.019329892471432686, 0.005900029558688402, -0.03239678591489792, -0.01685316115617752, 0.023301202803850174, -0.039086807519197464, 0.009657829068601131, -0.008362527005374432, 0.0007548514986410737, -0.004120768513530493, 0.04571989178657532, 0.04475197568535805, 0.03171354904770851, 0.00693200109526515, 0.0053093149326741695, -0.02898060530424118, -0.018119994550943375, 0.000806894910056144, -0.013237702660262585, -0.019016742706298828, -0.029692308977246284, 0.00916675291955471, -0.03416181355714798, -0.02869592234492302, 0.019002508372068405, 0.024838484823703766, -0.003126161638647318, 0.012582934461534023, -0.030204735696315765, -0.05761959031224251, -0.015714433044195175, 0.00018504315812606364, 0.0717398077249527, -0.0035460672806948423, 0.015244709327816963, 0.0012330278987064958, 0.011764474213123322, -0.0317704863846302, -0.020070064812898636, -0.003999779000878334, 0.014362195506691933, 0.03009086288511753, -0.020610960200428963, 0.010511874221265316, -0.007017405703663826, -0.004405450541526079, -0.010938896797597408, 0.02616225555539131, 0.006444483529776335, 0.0006205172976478934, 0.02838277257978916, -0.026774320751428604, -0.02647540532052517, 0.020625194534659386, 0.016639649868011475, -0.009785936214029789, -0.007665056735277176, 0.0171805452555418, -0.025635594502091408, 0.024425696581602097, -0.01722324825823307, 0.030859503895044327, -0.003309425665065646, 0.01985655352473259, 0.012298252433538437, -0.0059569659642875195, -0.012924552895128727, -0.015984881669282913, 0.00425955094397068, -0.0011013626353815198, -0.022105539217591286, -0.01125204749405384, 0.035015858709812164, 0.019643042236566544, -0.010540342889726162, 0.0009234364842996001, -0.006305701099336147, -0.018774762749671936, 0.006843038368970156, -0.008960358798503876, 0.05044560879468918, -0.03544288128614426, 0.021408069878816605, -0.032795339822769165, -0.0036546022165566683, 0.010476289317011833, 0.0005297749885357916, -0.029151413589715958, 0.042702265083789825, 0.02577793411910534, 0.031542740762233734, -0.019514935091137886, -0.001732110627926886, -0.01708090677857399, 0.026973597705364227, -0.015088134445250034, -0.016540011391043663, -0.008084962144494057, 0.0358414351940155, -0.01159366499632597, -0.0021208792459219694, 0.013109595514833927, -0.027671068906784058, 0.00785010028630495, 0.031542740762233734, 0.008398111909627914, 0.009458552114665508, 0.016084520146250725, -0.025948744267225266, 0.004298694897443056, 0.020952578634023666, 0.03518666699528694, 0.009294860064983368, 0.013693192973732948, 0.00923080649226904, -0.016596946865320206, -0.006497861351817846, 0.006914208643138409, -0.020952578634023666, 0.015016963705420494, 0.0013513488229364157, 0.009864223189651966, -0.029407627880573273, -0.018176931887865067, -0.004622520413249731, -0.026745852082967758, -0.03151427209377289, 0.0036723949015140533, 0.016511542722582817, 0.006159801967442036, -0.003853879403322935, -0.0018842375138774514, 0.008946124464273453, 0.01587100885808468, -0.034133344888687134, -0.004252433776855469, 0.007565418258309364, 0.01652577705681324, -0.010333948768675327, 0.021877793595194817, 0.012988605536520481, -0.013138064183294773, -0.030261673033237457, -0.04449576139450073, -0.037378717213869095, 0.0005818183999508619, 0.02824043110013008, 0.01059727929532528, -0.012917435728013515, 0.020482853055000305, 0.022788776084780693, 0.011059886775910854, -0.014198503457009792, -0.029151413589715958, -0.011472675949335098, -0.01644037291407585, -0.021607346832752228, -0.023301202803850174, 0.01994195766746998, 0.043727122247219086, -0.020240874961018562, 0.01425543986260891, 0.015842540189623833, -0.01940106227993965, -0.005736337974667549, 0.04475197568535805, 0.0032418137416243553, 0.049136072397232056, -0.0013584658736363053, -0.033535514026880264, 0.0014563251752406359, -0.01564326323568821, 0.001099583343602717, -0.056452397257089615, 0.005547736305743456, -0.005818183533847332, -0.03148580342531204, 0.012931669130921364, -0.01207762397825718, -0.00709569314494729, -0.005988992750644684, -0.013550852425396442, 0.0010515432804822922, -0.02045438624918461, -0.009159635752439499, -0.005761247593909502, 0.03222597762942314, -0.015372815541923046, -0.02545055001974106, -0.01726594939827919, -0.01140862237662077, -0.02397020533680916, -0.020112767815589905, -0.0009172090794891119, 0.0029749246314167976, 0.005971200298517942, 0.023272734135389328, 0.04591916874051094, -0.0022258555982261896, -0.027300981804728508, -0.019287189468741417, 0.04005472734570503, -0.02633306384086609, 0.016725054010748863, -0.0013406731886789203, -0.0005377816851250827, -0.0028076739981770515, -0.034047938883304596, -0.003989103250205517, -0.0006472062086686492, 0.01432661060243845, -0.024639207869768143, 0.03458883613348007, 0.03484505042433739, -0.0032186834141612053, -0.020198171958327293, 0.001344231772236526, -0.025080464780330658, -0.051214251667261124, -0.016810458153486252, -0.010661332868039608, 0.019329892471432686, 0.02258949913084507, -0.016596946865320206, -0.034275684505701065, -0.01948646828532219, -0.03635386377573013, 0.013586437329649925, -0.004885850939899683, -0.0098855746909976, -0.01231248676776886, 0.004455269780009985, -0.03046094998717308, 0.0012054493417963386, 0.008882070891559124, 0.011679070070385933, 0.000958132091909647, -0.020312044769525528, 0.00930197723209858, -0.02762836590409279, -0.012098975479602814, -0.008433697745203972, -0.02676008641719818, 0.00378982606343925, 0.022746073082089424, -0.009529722854495049, 0.014846154488623142, 0.02666044794023037, 0.0058253007009625435, 0.020838705822825432, 0.008739730343222618, 0.004586935043334961, 0.006974703632295132, 0.0158852431923151, -0.022091304883360863, -0.013365808874368668, -0.014305259101092815, 0.008768199011683464, -0.004433918744325638, -0.008106313645839691, -0.013764363713562489, -0.030375545844435692, -0.0044623869471251965, -0.0043164873495697975, -0.0009999447502195835, -0.0001876008464023471, 0.038033485412597656, -0.005572645924985409, 0.02435452491044998, 0.026404233649373055, -0.010405118577182293, 0.021735453978180885, -0.03814735636115074, 0.0014483184786513448, -0.015443986281752586, -0.015159304253757, 0.030119331553578377, 0.022105539217591286, 0.0003247151616960764, 0.013878236524760723, 0.011280515231192112, -0.02244715765118599, 0.03666701167821884, -0.01948646828532219, 0.030062396079301834, -0.0136789595708251, -0.014170035719871521, 0.035101260989904404, 0.006611734163016081, -0.026831258088350296, -0.005878678523004055, 0.00047194899525493383, -0.0015372815541923046, -0.010405118577182293, -0.00809919647872448, 0.00972188264131546, -0.014291024766862392, 0.008433697745203972, -0.0006641091895289719, -0.015116602182388306, 0.0014207399217411876, -0.009173870086669922, 0.003097693668678403, -0.0007895471062511206, -0.027115939185023308, -0.02156464383006096, 0.11062733829021454, 0.013330223970115185, -0.05448809266090393, 0.037748802453279495, -0.0019518494373187423, 0.018319271504878998, -0.010639981366693974, 0.0009189883712679148, -0.0010675566736608744, 0.02957843616604805, 0.004423242993652821, -0.007173980586230755, -0.02935069054365158, -0.007544067222625017, 0.033620916306972504, -0.015543624758720398, 0.01321635115891695, 0.05198289081454277, 5.298862015479244e-05, 0.015315879136323929, 0.01110970601439476, 0.026133786886930466, 0.013202116824686527, 0.02661774680018425, -0.012618519365787506, -0.002560356631875038, -0.002795219188556075, -0.044467292726039886, -0.0010195166105404496, -0.02026934176683426, 0.029834650456905365, -0.01726594939827919, 0.03669548034667969, 0.0039036988746374846, 0.016468839719891548, -0.012433476746082306, -0.013821300119161606, 0.0010212959023192525, -0.0023112602066248655, 0.025720998644828796, 0.007786046713590622, 0.06058027967810631, 0.001646706135943532, -0.016411904245615005, -0.016781991347670555, 0.04221830889582634, -0.03236831724643707, 0.0061242165975272655, -0.0032560478430241346, -0.007992440834641457, 0.026503873988986015, -0.01221996545791626, 0.027713770046830177, -0.008511984720826149, -0.015173538587987423, -0.032197508960962296, -0.0020087857265025377, -0.043214693665504456, -0.022475626319646835, 0.03382019326090813, 5.494163815455977e-06, 0.02059672586619854, -0.03942842409014702, 0.05206829681992531, 0.01698126830160618], [0.07735008746385574, 0.01150396466255188, 0.022706251591444016, 0.010639156214892864, -0.01964925415813923, -0.01291179284453392, 0.001426682691089809, 0.009935242123901844, 0.030730871483683586, 0.021801220253109932, -0.020202329382300377, -0.009653676301240921, 0.017869357019662857, -0.03384820371866226, -0.021398983895778656, 0.00444722780957818, -0.016360970214009285, 0.041913047432899475, 0.024496205151081085, 0.010091109201312065, 0.027854880318045616, 0.0401432067155838, 0.002958952449262142, 0.00781344436109066, -0.018844781443476677, -0.010141388513147831, 0.03684486448764801, 0.047343239188194275, -0.010669323615729809, -0.05583043023943901, 0.012901736423373222, -0.014017943292856216, -0.020855963230133057, -0.04110857471823692, 0.044527582824230194, 0.032802388072013855, 0.018915172666311264, -0.0325610488653183, 0.04754435643553734, -0.00679779751226306, -0.07537912577390671, 0.00884920358657837, 0.00783858448266983, -0.03569849207997322, -0.01001066155731678, 0.051084037870168686, 0.030308522284030914, -0.03010740503668785, -0.020715180784463882, 0.050158895552158356, -0.0016831085085868835, -0.02099674753844738, -0.023591171950101852, 0.0347130112349987, 0.026326380670070648, 0.020976634696125984, 0.0024146761279553175, -0.007441375870257616, 0.012248102575540543, -0.033184513449668884, -0.026024702936410904, -0.007823500782251358, -0.02160010114312172, 0.026708506047725677, -0.019488360732793808, 0.012459276244044304, 0.009392223320901394, 0.05675557255744934, -0.02594425529241562, 0.03390853852033615, 0.02332971803843975, 0.014058167114853859, -0.044527582824230194, -0.04223483428359032, -0.01866377517580986, 0.0184526015073061, 0.03270183131098747, -0.009930213913321495, 0.03441133350133896, 0.015355379320681095, 0.00046540022594854236, 0.012217934243381023, -0.025059334933757782, 0.05007844790816307, -0.0022839494049549103, 0.019840316846966743, -0.014470458962023258, -0.002241211710497737, 0.018472712486982346, -0.022967705503106117, -0.004934939555823803, 0.0010866671800613403, 0.01627046801149845, 0.04521138593554497, 0.024878328666090965, -0.01242910884320736, 0.01704477332532406, -0.015727449208498, -0.015606777742505074, 0.09211216866970062, 0.044366687536239624, 0.02668839320540428, -0.013334141112864017, 0.040887344628572464, 0.0428784154355526, -0.05961145460605621, -0.08181490749120712, 0.02326938323676586, -0.013183302246034145, -0.007386068347841501, -0.022585581988096237, -0.00900507066398859, -0.005757010541856289, 0.07509756088256836, 0.010111221112310886, -0.030127516016364098, 0.02703029476106167, -0.008089981973171234, -0.0092212725430727, -0.04488959535956383, 0.02306826412677765, -0.010820162482559681, 0.02002132311463356, -0.07602270692586899, -0.015355379320681095, 0.02339005470275879, -0.027331972494721413, 0.027693985030055046, -0.03591972216963768, -0.01649169810116291, 0.012348661199212074, -0.02560235559940338, 0.0037709674797952175, 0.018271595239639282, -0.014892807230353355, -0.015747560188174248, 0.0059631564654409885, 0.007803388871252537, -0.02077551744878292, -0.04509071633219719, 0.021398983895778656, -0.04698122665286064, 0.044085122644901276, -0.020373281091451645, -0.0640360563993454, 0.0056313113309443, 0.009839710779488087, 0.056675128638744354, 0.0033813007175922394, -0.003426552517339587, -0.03205825015902519, 0.044567808508872986, -0.001911880448460579, 0.014772136695683002, 0.016371026635169983, 0.007376012392342091, -0.030268298462033272, 0.04730301722884178, -0.025924144312739372, 0.014993366785347462, -0.022505134344100952, -0.04388400539755821, -0.04529183357954025, -0.03270183131098747, 0.025843696668744087, -0.005173767451196909, -0.0032857696060091257, 0.008265960961580276, -0.018643662333488464, 0.011795585975050926, -0.04171192646026611, 0.019387800246477127, -0.04356221482157707, 0.006767629645764828, -0.015868231654167175, 0.014168782159686089, 0.00016372284153476357, -0.01036764681339264, -0.012479388155043125, -0.05430193245410919, 0.017547568306326866, 0.010508429259061813, -0.042355507612228394, -0.04649854451417923, -0.011524076573550701, 0.03899683058261871, -0.005389969330281019, 0.002305318135768175, -0.009256468154489994, 0.0031047631055116653, -0.0021167697850614786, 0.021459318697452545, 0.0024750116281211376, 0.044406913220882416, -0.02914203703403473, 0.008678252808749676, -0.03537670150399208, -0.018764333799481392, 0.01367604173719883, 0.005234102718532085, 0.0526125393807888, -0.04923374950885773, 0.004987732972949743, 0.023309607058763504, -0.03519569709897041, -0.04062588885426521, 0.052934326231479645, 0.017567681148648262, 0.05056113004684448, 0.02626604586839676, 0.0019546181429177523, -0.026829175651073456, -0.029544273391366005, 0.05301477387547493, -0.057922061532735825, -0.00941736251115799, 0.04372311010956764, -0.005907848943024874, 0.044849373400211334, 0.016431361436843872, -0.0034743179567158222, 0.0041380082257092, -0.0014027998549863696, -0.0012117375154048204, -0.0181810911744833, -0.027251524850726128, -0.037307437509298325, -0.03503480181097984, 0.03499457985162735, -0.04108846187591553, -0.03032863512635231, 0.017064884305000305, 0.017155388370156288, -0.04372311010956764, 0.03720688074827194, 0.04428624361753464, 0.0013009838294237852, -0.05965167656540871, -0.0040349350310862064, -0.017175499349832535, -0.0014518224634230137, 0.029986733570694923, -0.027150966227054596, -0.022766588255763054, -0.010659268125891685, -0.015234708786010742, 0.0021419094409793615, 0.037307437509298325, 0.05072202533483505, -0.012479388155043125, -0.017839189618825912, -0.02869957685470581, 0.01849282532930374, 0.003006718121469021, 0.02773420885205269, -0.022766588255763054, 0.05112426355481148, -0.02371184341609478, 0.050440460443496704, -0.018804557621479034, 0.015526330098509789, -0.02431519888341427, 0.0072302017360925674, -0.013907328248023987, -0.051687393337488174, 0.0020589481573551893, 0.039318621158599854, -0.05007844790816307, -0.031133107841014862, 0.033667199313640594, -0.02463698759675026, 0.03968063369393349, 0.018693942576646805, -0.007979366928339005, -0.012036927975714207, 0.05518685281276703, 0.0022437255829572678, -0.0023467987775802612, 0.001706991228275001, 0.0016265439335256815, -0.051687393337488174, -0.0010986084816977382, 0.026708506047725677, -0.01833193004131317, 0.00679779751226306, -0.03479345887899399, -0.02050400711596012, 0.0010684407316148281, 0.0039092362858355045, 0.028639240190386772, 0.03248060122132301, 0.008009535260498524, -0.034270551055669785, -0.007662605959922075, -0.001792466500774026, 0.0031776686664670706, -0.025642579421401024, 0.012690562754869461, -0.00033027390600182116, -0.011705082841217518, -0.025059334933757782, 0.043280649930238724, 0.002953924471512437, 0.027533089742064476, -0.031877245754003525, -0.009859822690486908, 0.012519611977040768, 0.03585938736796379, -0.03441133350133896, -0.021740883588790894, -0.04046499356627464, 0.06753551214933395, -0.017014605924487114, -0.003366217017173767, 0.005762038286775351, 0.051848288625478745, -0.014983310364186764, 0.009643620811402798, 0.05148627609014511, -0.006968747824430466, 0.015204540453851223, 0.008728533051908016, 0.026225822046399117, 0.0062648337334394455, 0.01623024418950081, 0.011403406038880348, 0.018754277378320694, 0.07409197092056274, -0.03461245447397232, -0.026185598224401474, -0.026447052136063576, 0.011886089108884335, -0.0011457456275820732, -0.03270183131098747, -0.045332055538892746, 0.008115122094750404, -0.0012507041683420539, -0.01128273457288742, -0.019226906821131706, -0.02198222652077675, 0.03728732466697693, 0.01038775872439146, 0.008703392930328846, -0.004356724210083485, -0.007647521793842316, 0.004497507121413946, 0.037468332797288895, 0.03720688074827194, -0.02988617494702339, 0.04255662485957146, 0.050762251019477844, 0.010971001349389553, -0.009693900123238564, -0.020111827179789543, -0.09637587517499924, 0.006360365077853203, -0.03167612850666046, -0.014983310364186764, -0.011644747108221054, -0.007396124303340912, -0.002800571732223034, -0.02224368043243885, 0.04617675393819809, 0.053577907383441925, -0.005601143464446068, 0.012740842066705227, 0.02664816938340664, 0.011343070305883884, 0.0689031183719635, 0.005601143464446068, 0.057439375668764114, -0.0030318577773869038, -0.02674872986972332, -0.05084269866347313, 0.04553317651152611, 0.022102897986769676, -0.028619129210710526, 0.00954808946698904, 0.004879632033407688, -0.01578778401017189, 0.018844781443476677, 0.008753672242164612, 0.00838663149625063, 0.05361812934279442, 0.052009183913469315, 0.042194612324237823, -0.04155103489756584, 0.0014857611386105418, 0.01638108305633068, 0.051405828446149826, -0.04497004300355911, -0.016089461743831635, -0.01150396466255188, 0.017115164548158646, -0.04320020228624344, 0.036442629992961884, 0.04046499356627464, 0.03223925828933716, -0.016029125079512596, -0.035135362297296524, 3.5333177947904915e-05, -0.031273890286684036, 0.006888300646096468, -0.036281734704971313, 0.040283989161252975, 0.041430361568927765, 0.0667712613940239, 0.011916257441043854, 0.03354652598500252, -0.007768192794173956, 0.013273805379867554, -0.01046820543706417, 0.012931904755532742, 0.007521823048591614, 0.03549737483263016, 0.00010385872883489355, 0.01665259152650833, 0.026225822046399117, 0.015556497499346733, -0.028518570587038994, 0.040183428674936295, -0.020876076072454453, -0.0336269736289978, -0.0029111867770552635, -0.004560356494039297, 0.028659353032708168, 0.01486263982951641, -0.023852625861763954, 0.03945940360426903, -0.02518000639975071, -0.024677211418747902, 0.014188893139362335, 0.025220230221748352, 0.011845866218209267, -0.05945055931806564, -0.03195769339799881, 0.016029125079512596, -0.019548695534467697, 0.02326938323676586, 0.009703956544399261, 0.009020154364407063, -0.021881667897105217, 0.02377217821776867, 0.05554886534810066, -0.03668397292494774, 0.01849282532930374, -0.005701703019440174, -0.010176584124565125, -0.00222361390478909, -0.005294438451528549, -0.03292306140065193, 0.01801014132797718, -0.02560235559940338, 0.006249750033020973, -0.04730301722884178, 0.03541692718863487, -0.02111741714179516, -0.07932104170322418, 0.041752152144908905, -0.008014562539756298, 0.0396001860499382, 0.05289410427212715, 0.03195769339799881, 0.023148711770772934, 0.0026447051204741, 0.05977234989404678, 0.00838663149625063, -0.03125377744436264, -0.016411250457167625, -0.07208078354597092, -0.01071960385888815, 0.0041732038371264935, -0.005550864152610302, -0.0074011520482599735, -0.00849221833050251, 0.005113431718200445, 0.0022839494049549103, 0.0001753499818732962, -0.04203371703624725, -0.022505134344100952, 0.025924144312739372, 0.05422148481011391, -0.05691646784543991, -0.010086080990731716, 0.057761166244745255, 0.026346493512392044, 0.05160694569349289, -0.005832429509609938, 0.005807289853692055, -0.03109288401901722, -0.03678452968597412, -0.032902948558330536, 0.017869357019662857, -0.004851978272199631, 0.00238702236674726, -0.015103981830179691, -0.051848288625478745, -0.006129079032689333, 0.024295086041092873, -0.013223526068031788, 0.009472670033574104, 0.014581074006855488, 0.023088376969099045, -0.020715180784463882, 0.0033335352782160044, -0.021097306162118912, 0.006460924167186022, 0.016200076788663864, -0.014460403472185135, -0.031937580555677414, -0.04428624361753464, -0.006229638122022152, 0.01605929434299469, -0.023048153147101402, -0.006279917899519205, -0.04247617721557617, -0.028357675299048424, -0.0011646004859358072, -0.008200597018003464, -0.02690962329506874, -0.010890553705394268, 0.003821247024461627, -0.03535659238696098, -0.028196780011057854, -0.0018364611314609647, 0.004595552571117878, 0.0287599116563797, -0.0306504238396883, -0.019076067954301834, -0.0036704083904623985, 9.545261127641425e-05, -0.03889627382159233, -0.05458349734544754, 0.00109483755659312, 0.02799566276371479, 0.030972212553024292, 0.012720730155706406, 0.011835809797048569, -0.005244158674031496, -0.03891638293862343, 0.0004977677017450333, -0.02914203703403473, 0.017165444791316986, -0.002229898702353239, 0.005777121987193823, 0.030368857085704803, 0.03668397292494774, -0.024073855951428413, 0.00724528543651104, -0.00432655680924654, -0.008472107350826263, 0.005188851151615381, 0.040404658764600754, -0.002405877225100994, 0.005842485465109348, -0.03555770963430405, 0.04726279154419899, -0.012791121378540993, -0.015144205652177334, -0.027975549921393394, 0.021298423409461975, 0.03000684455037117, -0.004660915583372116, -0.02067495696246624, 0.028337564319372177, 0.04806726425886154, 0.0037533696740865707, -0.030891764909029007, 0.010030773468315601, -0.024556539952754974, 0.0010244462173432112, 0.036925312131643295, 0.010101164691150188, -0.003584933001548052, 0.019015731289982796, -0.009447530843317509, 0.043320875614881516, -0.024938665330410004, -0.017929693683981895, 0.020272720605134964, 0.0025164922699332237, 0.03231970593333244, 0.025682803243398666, -0.053417012095451355, -0.017024660483002663, 0.02626604586839676, -0.009382166899740696, -0.04004264622926712, -0.01665259152650833, 0.016803430393338203, -0.0016014041611924767, -0.015395603142678738, 0.002830739598721266, -0.025039223954081535, -0.03213869780302048, 0.0276738740503788, -0.015124093741178513, 0.009206188842654228, -0.04388400539755821, 0.0493946447968483, -0.001740930019877851, -0.034210216253995895, -0.016612369567155838, 0.018201202154159546, -0.031454898416996, -0.058243848383426666, 0.006395560689270496, 0.008436910808086395, -0.022223567590117455, 0.020584454759955406, 0.017336394637823105, -0.0056916470639407635, 0.022806812077760696, 0.005364829674363136, -0.03467278927564621, 0.0044296300038695335, -0.043763335794210434, -0.017436953261494637, -0.03803146257996559, -0.0046307481825351715, -0.004562870599329472, -0.004263707436621189, -0.016179963946342468, -0.01391738373786211, -0.010131333023309708, -0.011916257441043854, -0.009367083199322224, -0.020383335649967194, 0.02056434191763401, -0.010191667824983597, 0.021620213985443115, 0.01615985296666622, -0.0024599276948720217, -0.03970074653625488, -0.027392307296395302, -0.011976592242717743, -0.007521823048591614, -0.007516795303672552, 0.0005590459331870079, 0.023832514882087708, 0.017668239772319794, -0.011443628929555416, -0.004195829853415489, -0.04987733066082001, 0.03674430772662163, -0.022867146879434586, -0.0012657881015911698, 0.023410165682435036, 0.008341380394995213, -0.008622945286333561, 0.022806812077760696, 0.016039181500673294, -0.013535259291529655, -0.06427739560604095, 0.005651423241943121, -0.04336109757423401, -0.021942002698779106, 0.06600701808929443, 0.012841401621699333, 0.04139013960957527, -0.026507386937737465, -0.004975162912160158, -0.022987818345427513, -0.04979688301682472, -0.014339732006192207, 0.004218455404043198, 0.04155103489756584, 0.0074011520482599735, -0.0008886913419701159, -0.0038388448301702738, 0.0010011919075623155, 0.02403363212943077, -0.04645831882953644, -0.04529183357954025, -0.017155388370156288, 0.002309089060872793, -0.006531315855681896, -0.0013022407656535506, 0.023289494216442108, 0.05583043023943901, -0.018734166398644447, -0.030047068372368813, -0.008441939018666744, 0.021579990163445473, 0.01267045084387064, -0.0023845084942877293, 0.0006504919147118926, -0.0168134868144989, 0.01595873385667801, -0.011916257441043854, 0.0033737588673830032, 0.00621455442160368, -0.01578778401017189, 0.024053744971752167, -0.0060687437653541565, 0.03624151274561882, 0.017406785860657692, -0.01278106588870287, 0.0062698619440197945, 0.03939906880259514, 0.002700012642890215, 0.0035648213233798742, -0.00920116063207388, -0.08744622021913528, -0.04116890951991081, 0.0031550428830087185, 0.025642579421401024, -0.010377702303230762, -0.005721814464777708, -0.013112911023199558, -0.024455981329083443, 0.014460403472185135, -0.044688478112220764, -0.016914045438170433, -0.04195326939225197, 0.013173246756196022, 0.01688387803733349, 0.005651423241943121, 0.01768835075199604, 0.015134149231016636, -0.023530837148427963, 0.026788953691720963, -0.0131531348451972, -0.01161457970738411, 0.00976429134607315, -0.03537670150399208, 0.004497507121413946, 0.03549737483263016, -0.04032421112060547, 0.018955396488308907, 0.04060577601194382, -0.014802304096519947, -0.0016014041611924767, 0.03173646330833435, -0.02827722765505314, 0.009372111409902573, -0.04738346487283707, 0.000166236815857701, 0.002085345098748803, -0.025582242757081985, -0.010880498215556145, -0.04074656218290329, -0.014560962095856667, -0.04090745374560356, 0.012217934243381023, 0.02956438437104225, 0.0017308740643784404, 0.032802388072013855, -0.01244922075420618, 0.02882024645805359, -0.0036477826070040464, 0.002868449315428734, 0.0097693195566535, -0.03093198873102665, 0.02409396879374981, 0.004082700703293085, -0.00032461746013723314, 0.005757010541856289, -0.0025893975980579853, 0.007084391079843044, 0.016753152012825012, 0.0004685427120421082, 0.012720730155706406, 0.06544388085603714, 0.019790036603808403, -0.016179963946342468, -0.012660394422709942, 0.018321873620152473, -0.00419080164283514, -0.035618044435977936, -0.009206188842654228, 0.01011624839156866, 0.0108503308147192, -0.050601355731487274, 0.017326338216662407, 0.019930820912122726, -0.012046984396874905, -0.0015360407996922731, -0.004507563076913357, -0.017014605924487114, 0.0015448397025465965, 0.0002479411195963621, -0.013082742691040039, 0.047665029764175415, 0.005324605852365494, -0.01941796764731407, -0.0002136881521437317, 0.03777001053094864, -0.0027025267481803894, 0.017064884305000305, -0.006868188735097647, -0.012137487530708313, 0.0008025876013562083, -0.03054986521601677, -0.02886047028005123, -0.013696153648197651, 0.0260448157787323, -0.04854995012283325, 0.00034378652344457805, 0.008989986032247543, -0.011131895706057549, 0.006053659599274397, -0.019186682999134064, 0.020584454759955406, 0.04062588885426521, -0.004711195360869169, -0.029483936727046967, -0.02773420885205269, -0.005095833912491798, -0.015465994365513325, 0.0032731997780501842, 0.002252524485811591, 0.01823137141764164, 0.03137445077300072, -0.008416799828410149, -0.02735208347439766, -0.017004549503326416, 0.04108846187591553, -0.023892849683761597, -0.04223483428359032, 0.03722698986530304, -0.0007724198512732983, 0.008939706720411777, 0.0008641800377517939, 0.06709305197000504, 0.025099558755755424, -0.030268298462033272, -0.001710762269794941, 0.037347663193941116, -0.010749771259725094, 0.004160634241998196, 0.0385141484439373, 0.02147943153977394, -0.004107840359210968, -0.03246048837900162, 0.015124093741178513, -0.008643057197332382, -0.018583327531814575, -0.01543582696467638, 0.01778891123831272, 0.05904832109808922, -0.0033637029118835926, 0.003705604001879692, 0.02306826412677765, 0.012459276244044304, 0.02198222652077675, 0.007109530735760927, -0.020976634696125984, -0.02886047028005123, 0.025039223954081535, -0.03006718121469021, -0.015858175233006477, -0.024435868486762047, 0.0032405180390924215, -0.008135234005749226, -0.0005112803191877902, 0.0010923235677182674, -0.00701399939134717, -0.002715096576139331, -0.011886089108884335, 0.011413461528718472, -0.009608425199985504, -0.023249272257089615, 0.0025705427397042513, 0.0016114601166918874, -0.000399722543079406, 0.026406828314065933, -0.012650338932871819, -0.03913761302828789, -0.00316761271096766, 0.033184513449668884, -0.005958128720521927, 0.021559877321124077, -0.03376775607466698, -0.04726279154419899, 0.0009597112075425684, -0.026024702936410904, 0.04352199286222458, 0.011001168750226498, -0.016903990879654884, 0.00034598627826198936, 0.012177711352705956, 0.006667070556432009, -0.010528541170060635, -0.029343154281377792, -0.010920722037553787, -0.030851541087031364, 0.045653846114873886, 0.024838104844093323, -0.005188851151615381, 0.01899562031030655, -0.012227990664541721, 0.02365150861442089, 0.018905116245150566, 0.037086207419633865, -0.005075722001492977, -0.005576003808528185, -0.01605929434299469, 0.0018314331537112594, -0.020916299894452095, -0.0005766437971033156, 0.0011162064038217068, -0.033063843846321106, -0.004867061972618103, -0.0021356246434152126, 0.00496259331703186, -0.013072687201201916, -0.021680548787117004, 0.0008880628156475723, -0.012057039886713028, 0.011524076573550701, -0.01244922075420618, -0.027854880318045616, -0.00444722780957818, 0.05406058952212334, -0.0026723588816821575, -0.05599132552742958, 0.023510724306106567, 0.00010535140609135851, 0.008416799828410149, 0.019598975777626038, 0.027251524850726128, -0.024536428973078728, -0.016179963946342468, -0.041148796677589417, 0.01326374989002943, -0.029202371835708618, 0.018191147595643997, 0.002659789053723216, -0.020383335649967194, 0.00036578383878804743, 0.05068180337548256, 0.0032028083223849535, 0.01415872573852539, 0.020634733140468597, 0.005274326540529728, -0.02636660449206829, -0.004846950061619282, 0.029001254588365555, -0.03406943380832672, 0.034592341631650925, 0.03587950021028519, -0.034371111541986465, -0.018040308728814125, -0.036221399903297424, 0.006083827465772629, 0.017436953261494637, -0.009724068455398083, 0.02208278514444828, -0.010221836157143116, -0.009749207645654678, -0.03022807464003563, 0.019407913088798523, -0.0037785093300044537, 0.00944250263273716, 0.012529667466878891, 0.029162148013710976, -0.025361012667417526, 0.015968790277838707, -0.0003137759049423039, 0.0011696284636855125, 0.047825925052165985, 0.03252082318067551, -0.004039963241666555, 0.04879128932952881, 0.032038141041994095, -0.0011847122805193067, -0.009130769409239292, 0.027432531118392944, 0.00031173331080935895, 0.01055870857089758, -0.0019043385982513428, 0.028297340497374535, 0.01255983579903841, 0.011845866218209267, 0.002921242732554674, -0.020634733140468597, -0.00968887284398079, -0.014229116961359978, -0.01337436493486166, 0.02534090168774128, -0.012921848334372044, 0.0007686488679610193, 0.022706251591444016, -0.024234751239418983, -0.007094446569681168, 0.0076827178709208965, 0.004507563076913357, -0.019729701802134514, -0.05518685281276703, 0.008185513317584991, 0.010191667824983597, -2.9873132007196546e-05, -0.01484252791851759, -0.027090629562735558, 0.027553202584385872, 0.019005676731467247, 0.03370742127299309, 0.0314750075340271, 0.0009383424185216427, 0.021680548787117004, 0.008612889796495438, -0.001337436493486166, 0.06886289268732071, 0.02495877631008625, 0.01914645917713642, -0.001445537549443543, 0.02859901636838913, -0.005349745973944664, -0.021177753806114197, 0.018623551353812218, -0.03911750391125679, 0.017185555770993233, 0.018000084906816483, 0.01567716896533966, -0.03949962556362152, 0.02652749978005886, -0.018472712486982346, 0.02355094812810421, 0.008587749674916267, -0.045814741402864456, 0.010699491947889328, 0.020443672314286232, 0.048751067370176315, 0.026889512315392494, -0.0006731176981702447, 0.00187165685929358, 0.002639677142724395, 0.03006718121469021, 0.03240015357732773, 0.05579020828008652, 0.008753672242164612, 0.024295086041092873, 0.02847834676504135, 0.016833599656820297, -0.01096094585955143, -0.008854231797158718, -0.03803146257996559, 0.009367083199322224, 0.02930293045938015, -0.045975636690855026, -0.010025745257735252, -0.04621697589755058, -0.011524076573550701, 0.0006913440302014351, -0.0065413713455200195, 0.03515547141432762, 0.02598447911441326, -0.009145853109657764, -0.01244922075420618, -0.00442208768799901, 0.074896439909935, -0.03875549137592316, 0.01046820543706417, -0.005701703019440174, -0.018160980194807053, 0.0017874385230243206, -0.028257116675376892, 7.569431909359992e-05, 0.00046068651136010885, -0.005917904898524284, 0.0027075547259300947, -0.0051461136899888515, 0.012388885021209717, 0.005229074973613024, -0.052934326231479645, -0.020433615893125534, 0.012730786576867104, 0.011031337082386017, -0.002424732083454728, -0.016562089323997498, -0.004645831882953644, 0.020755404606461525, 0.018050365149974823, 0.027874991297721863, -0.007652550004422665, -0.016803430393338203, -0.01974981278181076, -0.025521907955408096, -0.01676320657134056, 0.022545358166098595, 0.01055870857089758, 0.026990070939064026, 0.008457022719085217, 0.0009609682019799948, -0.050158895552158356, -0.019488360732793808, -0.0064709801226854324, 0.0019005675567314029, -0.009517922066152096, -0.0040475050918757915, 0.023631395772099495, -0.01634085923433304, 0.025361012667417526, 0.0011438601650297642, -0.010508429259061813, 0.009568201377987862, 0.0009509123046882451, 0.042838189750909805, -0.006702266167849302, -0.0071296426467597485, 0.03205825015902519, -0.022163232788443565, 0.02202245034277439, 0.02186155505478382, -0.04060577601194382, -0.016411250457167625, -0.01947830431163311, 0.023852625861763954, 0.017135275527834892, 0.004288847092539072, 0.029041476547718048, 0.015918510034680367, -0.028458233922719955, 0.011413461528718472, -0.003006718121469021, 0.017979972064495087, 0.006400588899850845, 0.0032204061280936003, -0.01623024418950081, -0.017225779592990875, -0.008808979764580727, -0.044728703796863556, -0.019991155713796616, 0.005244158674031496, -0.023571060970425606, -0.0423152819275856, 0.021841444075107574, -0.011202286928892136, -0.002622079337015748, 0.003954487852752209, -0.0412292443215847, -0.005229074973613024, 0.0027075547259300947, 0.038494035601615906, -0.013243637979030609, 0.013535259291529655, 0.0013550342991948128, 0.0017886955756694078, 0.054623719304800034, 0.043924227356910706, 0.025381125509738922, -0.007355900481343269, -0.003836330957710743, -0.042194612324237823, -0.003522083628922701, -0.015335267409682274, 0.04187282174825668, 0.014681633561849594, -0.04384378343820572, 0.057318706065416336, 0.01719561219215393, -0.028257116675376892, 0.014460403472185135, 0.01495314296334982, -0.015114037320017815, 0.020212385803461075, -0.040666114538908005, 0.018693942576646805, 0.030831430107355118, 0.0023555976804345846, -0.011413461528718472, 0.01660231314599514, 0.0014744482468813658, -0.014098390005528927, 0.03563815727829933, -0.0035547653678804636, 0.003698062151670456, -0.035778939723968506, 0.014822416007518768, -0.027593426406383514, -0.002244982635602355, -0.018794501200318336, -0.0010200466495007277, -0.00037992498255334795, -0.029544273391366005, 0.046739883720874786, 0.028679464012384415, 0.026567723602056503, -0.027271635830402374, 0.01937774568796158, 0.04155103489756584, -0.03278227895498276, -0.028840359300374985, -0.01093077752739191, 0.022766588255763054, 0.030630310997366905, -0.005565947853028774, -0.02399340830743313, -0.0056866188533604145, 0.015295043587684631, -0.016431361436843872, -0.0026245934423059225, 0.006968747824430466, -0.03563815727829933, 0.030992325395345688, -0.0483086071908474, 0.01071960385888815, 0.004867061972618103, -0.02485821768641472, -0.004967621061950922, 0.00632014125585556, 0.0022738934494554996, -0.019458191469311714, -0.049676209688186646, -0.014872695319354534, 0.0008113865042105317, 0.017819078639149666, 0.003559793345630169, -0.022042561322450638, -0.008089981973171234, -0.022987818345427513, -0.049676209688186646, 0.006898356601595879, -0.017839189618825912, 0.0028181697707623243, -0.01736656203866005, -0.011031337082386017, -0.009191105142235756, 0.009301720187067986, -0.016833599656820297, 0.03410965949296951, 0.012881624512374401, -0.05192873626947403, 0.003197780344635248, -0.025763249024748802, -0.040404658764600754, -0.02642693929374218, -0.025521907955408096, -0.02262580394744873, 0.0290213655680418, -0.01893528550863266, -0.03984152898192406, -0.01829170621931553, 0.040726449340581894, -0.01091066561639309, 0.01860344037413597, 0.0007353386608883739, 0.0032958255615085363, 0.00012192795111332089, -0.01299223955720663, 0.02077551744878292, 0.022002337500452995, 0.02326938323676586, -0.027955438941717148, -0.029644832015037537, 0.003828788874670863, 0.0170849971473217, 0.0027075547259300947, -0.04167170450091362, -0.03191746771335602, 0.001271444489248097, -0.0035723631735891104, -0.008527414873242378, 0.0031701265834271908, -0.0009050322114489973, 0.005922933109104633, -0.04275774210691452, 0.013143078424036503, 0.022364351898431778, -0.018653718754649162, 0.009839710779488087, -0.000596755591686815, 0.042355507612228394, -0.01992076449096203, 0.005822373554110527, 0.015938622877001762, 0.04758458212018013, -0.03992197662591934, 0.022163232788443565, 0.01096094585955143, -0.011383294127881527, -0.0015737503999844193, 0.011735251173377037, 0.0059882961213588715, 0.048911962658166885, 0.011121840216219425, 0.013414587825536728, 0.012610115110874176, 0.009754235856235027, 0.018593383952975273, 0.008321268483996391, 0.0014719342580065131, -0.015415715053677559, -0.009864850901067257, 0.03889627382159233, 0.016039181500673294, 0.018472712486982346, 0.013505091890692711, -0.02176099643111229, -0.017497289925813675, -0.025622466579079628, -0.00345169217325747, 0.007396124303340912, -0.003982141613960266, 0.013555371202528477, -0.010201724246144295, -0.00976429134607315, -0.002070261165499687, 0.010749771259725094, 0.010920722037553787, -0.01769840717315674, 0.005555891897529364, 0.005299466196447611, -0.009397250600159168, 0.03539681434631348, 0.001475705299526453, -0.00472125131636858, -0.0011834553442895412, -0.01096094585955143, -0.036925312131643295, 0.004356724210083485, 0.010287199169397354, 0.03575882688164711, -0.004912313539534807, -0.05056113004684448, -0.011433573439717293, -0.026487275958061218, -0.024556539952754974, -0.008014562539756298, 0.013505091890692711, -0.00759724248200655, 0.00507320836186409, 0.009719040244817734, 0.049515318125486374, -0.014430235140025616, -0.011312901973724365, -0.018925229087471962, 0.015486106276512146, -0.024214638397097588, -0.011654803529381752, -0.005374885629862547, -0.025300677865743637, 0.00023647108173463494, -0.011493909172713757, 0.03704598546028137, -0.020312944427132607, 0.023631395772099495, -0.023591171950101852, 0.007451431825757027, -0.030791206285357475, -0.011473797261714935, -0.04020354151725769, -0.005259242840111256, -0.0014053138438612223, -0.0033586749341338873, -0.013766544871032238, 0.009543061256408691, 0.041913047432899475, 0.00838160328567028, -0.01698443666100502, -0.009397250600159168, -0.039640411734580994, 0.01071960385888815, 0.023852625861763954, -2.553259218984749e-05, -0.004515104927122593, 0.022163232788443565, 0.00216327840462327, -0.0020966578740626574, -0.006958691868931055, 0.011835809797048569, -0.019840316846966743, 0.01893528550863266, 0.02035316824913025, 0.006888300646096468, -0.016903990879654884, -0.015365435741841793, 0.017567681148648262, 0.030891764909029007, -0.006817908957600594, 0.0013210956240072846, 0.020956523716449738, -0.018030252307653427, 0.010246975347399712, 0.03813202306628227, -0.004344154614955187, -0.02399340830743313, 0.0013085256796330214, -0.0036251568235456944, 0.02757331356406212, -0.010091109201312065, -0.005105889867991209, -0.031555455178022385, -0.0004418316821102053, -0.02349061332643032, -0.020051490515470505, -0.022585581988096237, -0.0010225606383755803, -0.02489844150841236, -0.011081616394221783, 0.013605650514364243, -0.028196780011057854, -0.03233981877565384, -0.06548410654067993, -0.009316803887486458, -0.030690647661685944, 0.01762801595032215, 0.003821247024461627, -0.003675436368212104, -0.01806041970849037, 0.005319578107446432, -0.0032028083223849535, 0.0035095138009637594, -0.0027704040985554457, -0.029483936727046967, -0.004092756658792496, -0.026004591956734657, -0.0017534998478367925, 0.04561362415552139, -0.008175457827746868, 0.004399462137371302, 0.057278480380773544, -0.0412292443215847, -0.009608425199985504, -0.02300792932510376, -0.004872090183198452, 0.0033586749341338873, -0.0038463869132101536, -0.0006850591162219644, -0.026406828314065933, -0.0023354857694357634, 0.020956523716449738, -0.00689332839101553, 0.005480472929775715, -0.000492739723995328, 0.010216807946562767, 0.04032421112060547, -0.004997788928449154, -0.011896145530045033, -0.024978889152407646, 0.020795628428459167, -0.0014845042023807764, 0.04710189625620842, 0.015254820697009563, 0.01348497997969389, -0.021177753806114197, 0.022545358166098595, -0.01688387803733349, 0.026346493512392044, -0.0038539287634193897, -0.008708421140909195, -0.02636660449206829, -0.008416799828410149, 0.02160010114312172, -0.02952416054904461, -0.010860386304557323, 0.028840359300374985, 0.013826880604028702, 0.024717435240745544, -0.008100038394331932, 0.0038313029799610376, -0.01622018776834011, 0.012238046154379845, 0.02707051858305931, 0.0026849289424717426, -0.01426934078335762, -0.012419052422046661, 0.012388885021209717, -0.011785530485212803, -0.021338647231459618, -0.0038891243748366833, 0.004879632033407688, -0.011654803529381752, 0.0145106827840209, 0.021398983895778656, -0.013887216337025166, 0.019709590822458267, 0.0025944255758076906, 0.00454275868833065, -0.022324128076434135, 0.06749528646469116, 0.013203414157032967, -0.014571018517017365, 0.010880498215556145, -0.03336552157998085, -0.003574877046048641, 0.027432531118392944, 0.00024385590222664177, 0.05538797006011009, -0.04130969196557999, 0.000954683288000524, 0.020956523716449738, -0.012177711352705956, -0.0357990525662899, -0.003215378150343895, -0.012539723888039589, -0.001890511717647314, 0.009895018301904202, 0.009422390721738338, 0.027935326099395752, -0.0030569976661354303, 0.01941796764731407, 0.029162148013710976, 0.02610515058040619, -0.031877245754003525, -0.007592214271426201, 9.081746975425631e-05, 0.003305881517007947, -0.002517749322578311, 0.0379711277782917, 0.022907370701432228, 0.013857048004865646, 0.025682803243398666, 0.005651423241943121, 0.024053744971752167, -0.027010183781385422, 0.022364351898431778, 0.022183343768119812, -0.012921848334372044, 0.036442629992961884, 0.03575882688164711, -0.023188935592770576, 0.005973212420940399, 0.0010747257620096207, 0.02479788288474083, 0.020715180784463882, -0.022967705503106117, -0.04106834903359413, 0.006415672600269318, 0.0029187288600951433, 0.030026957392692566, -0.02332971803843975, 0.0168235432356596, -0.034371111541986465, -0.03167612850666046, 0.02924259565770626, -0.016099516302347183, -0.019458191469311714, 0.0018138353480026126, -0.03463256359100342, 0.008562610484659672, -0.013032463379204273, -0.014591130428016186, 0.02837778627872467, 0.009719040244817734], [0.02064291201531887, -0.007900526747107506, 0.0244941096752882, 0.012866218574345112, -0.04183068871498108, -0.06949491798877716, 0.0034827948547899723, 0.049012985080480576, 0.07048557698726654, -0.015466704964637756, -0.021423058584332466, -0.005098811816424131, -0.004129820968955755, 0.004201024770736694, -0.00014047272270545363, 0.01795574277639389, 0.029546484351158142, 0.022005071863532066, 0.011807448230683804, -0.00942986086010933, 0.0432671494781971, 0.045917168259620667, -0.027119362726807594, 0.02189362235367298, 0.010439096949994564, 0.012500911951065063, 0.0362829826772213, 0.01872350461781025, 0.007231830153614283, -0.03494558855891228, 0.03232033550739288, -0.015553387813270092, 0.003125227987766266, -0.04215265437960625, 0.03187453746795654, 0.03821477293968201, -0.015342872589826584, -0.004213408101350069, 0.06553226709365845, 0.012637128122150898, -0.043465279042720795, 0.002600486855953932, 0.017571860924363136, -0.030017048120498657, 0.02283475175499916, 0.03695167973637581, 0.05527891963720322, 0.007349471095949411, -0.037323176860809326, 0.02117539383471012, -0.007597136776894331, 0.00015014715609140694, -0.00013979552022647113, 0.02252516895532608, 0.004507510457187891, -0.009578459896147251, -0.06424441188573837, -0.032270804047584534, 0.00889118853956461, 0.012395653873682022, 0.011937472969293594, -0.009572268463671207, 0.002256851177662611, 0.09847176820039749, 0.005306231323629618, 0.006513600237667561, 0.0001276057300856337, 0.03137920796871185, 0.006606474984437227, 0.007621902972459793, 0.04779942333698273, -0.015689603984355927, -0.032270804047584534, -0.049012985080480576, -0.0072999382391572, 0.05988549813628197, 0.020741978660225868, 0.019330285489559174, 0.007919101975858212, 0.03232033550739288, 0.023936862125992775, 0.046189598739147186, 0.011281159706413746, 0.0304133128374815, -0.05552658438682556, 0.015640070661902428, -0.040815260261297226, -0.001701151835732162, -0.007547603454440832, -0.026227766647934914, -0.0046839723363518715, -0.03137920796871185, -0.02620300091803074, 0.012203712947666645, -0.02132399193942547, 0.04034469649195671, 0.00953511893749237, -0.03236987069249153, -0.04111246019601822, 0.0839090421795845, 0.021348759531974792, -0.00482637993991375, -9.360011608805507e-05, -0.008587798103690147, 0.008315366692841053, -0.04339098185300827, -0.05057327821850777, 0.023503446951508522, -0.02252516895532608, 0.0145998764783144, -0.04358911141753197, -0.012977668084204197, 0.01435221079736948, 0.03623345121741295, 0.00037788323243148625, -0.04836905375123024, 0.023218631744384766, -0.019454117864370346, 0.00597802409902215, -0.03712504729628563, 0.038313839584589005, 0.020345713943243027, -0.010891086421906948, -0.06147055700421333, -0.013002434745430946, 0.02726796269416809, -0.037372712045907974, -0.02538570575416088, -0.012055113911628723, -0.04264798387885094, 0.007956251502037048, -0.017163213342428207, 0.05220786854624748, 0.001886900863610208, -0.0244941096752882, -0.0015541004249826074, 0.046016234904527664, -0.020853428170084953, -0.018562523648142815, -0.05319853127002716, 0.03729841113090515, -0.04730409383773804, 0.009702292270958424, -0.02516280673444271, -0.04029516130685806, 0.02776329219341278, 0.03462362661957741, 0.07841087132692337, -0.03336052969098091, 0.031503040343523026, -0.02445695921778679, 0.0051297699101269245, -0.021249692887067795, -0.027936657890677452, -0.0030075868126004934, 0.012352312915027142, -0.012990050949156284, 0.019057853147387505, -0.02654973231256008, -0.023986395448446274, -0.0036902145948261023, -0.03328623250126839, -0.046734463423490524, -0.038982536643743515, 0.010866319760680199, 0.02329293265938759, 0.010519588366150856, -0.0032196503598243, -0.06597806513309479, 0.001967392163351178, -0.03591148555278778, -0.020085664466023445, -0.03241940215229988, -0.007875760085880756, -0.04361388087272644, -0.018438689410686493, -0.038536738604307175, 0.012754769064486027, -0.036654479801654816, 0.009683717973530293, -0.02538570575416088, 0.020902961492538452, 0.008953104726970196, -0.03306333348155022, -0.0339549295604229, 0.031156308948993683, -0.01562768779695034, -0.010216197930276394, 0.009937575086951256, -0.02055623009800911, -0.01603633537888527, -0.003584956983104348, 0.019553184509277344, 0.04710596054792404, -0.008371091447770596, -0.0030586677603423595, -0.03766990825533867, -0.004928541835397482, -0.007504262030124664, 0.024741774424910545, 0.0011206859489902854, -0.03960169851779938, 0.018166258931159973, 0.03945310041308403, -0.03581241890788078, -0.034598857164382935, 0.03170117363333702, 0.0396759994328022, 0.055328454822301865, 0.03861103951931, 0.013287249952554703, -0.0033496746327728033, -0.018971171230077744, 0.032493703067302704, 0.002029308583587408, -0.00842062383890152, 0.010024257935583591, 0.013225332833826542, -0.02060576342046261, 0.03722411021590233, -0.015330488793551922, 0.01437697745859623, 0.03568858653306961, 0.0028605356346815825, -0.040864791721105576, -0.016667881980538368, -0.004584906157106161, -0.02526187151670456, -0.006111144088208675, -0.05661631375551224, -0.016766948625445366, 0.02445695921778679, -0.036704014986753464, 0.011689807288348675, 0.0010788924992084503, 0.026995530351996422, -0.00011812479351647198, -0.06132195517420769, 0.0030339013319462538, -0.003383728675544262, 0.01674218289554119, 0.020085664466023445, -0.011138752102851868, 0.014389360323548317, 0.01462464313954115, -0.02082866057753563, -0.03690214827656746, 0.011528825387358665, 0.026797397062182426, 0.013250099495053291, 0.018277708441019058, -0.0211010929197073, 0.010067598894238472, -0.014587492682039738, 0.04688306152820587, 0.040864791721105576, 0.01580105349421501, 0.034995123744010925, 0.008699247613549232, -0.0030447368044406176, 0.015194273553788662, 0.007516645360738039, 0.022760450839996338, 0.04750222712755203, -0.03286520019173622, -0.03581241890788078, 0.03749654442071915, -0.01921883597970009, -0.029620783403515816, 0.03397969529032707, -0.015565771609544754, 0.0029209039639681578, -0.002020020969212055, -0.010395755991339684, -0.04178115725517273, 0.03819000720977783, 0.006947014946490526, 0.016816481947898865, 0.007293746341019869, 0.026747865602374077, -0.049409251660108566, -0.0032413210719823837, 0.0793519988656044, -0.005207165144383907, 0.028679655864834785, 0.0006377384415827692, 0.06374907493591309, 0.0006888194475322962, -0.02714413031935692, 0.02435789443552494, 0.029744615778326988, 0.02365204691886902, -0.05423872545361519, -0.006996547803282738, 0.012816685251891613, -0.02659926563501358, -0.05884530395269394, -0.021373525261878967, -0.013126267120242119, -0.011993197724223137, 0.011974622495472431, 0.020345713943243027, -0.0027552777901291847, 0.006841756869107485, -0.04703166335821152, -0.012952901422977448, 0.030834343284368515, 0.02476654201745987, -0.03769467771053314, -0.021844089031219482, -0.03700121119618416, 0.053446196019649506, -0.0065940916538238525, -0.038982536643743515, -0.02687169797718525, -0.017225129529833794, -0.06895004957914352, 0.0009163620416074991, 0.02096487767994404, 0.006680774502456188, -0.01045767217874527, -0.013250099495053291, 0.016605965793132782, -0.049458783119916916, 0.03662971407175064, -0.0075414120219647884, 0.013312015682458878, 0.044133976101875305, -0.028332922607660294, -0.00546411843970418, -0.034598857164382935, -0.017348961904644966, -0.016085868701338768, -0.009392710402607918, -0.029001619666814804, -0.08762402087450027, 0.018475839868187904, -0.0006094890995882452, -0.03796710819005966, -0.011658849194645882, 0.04039422795176506, -0.015640070661902428, -0.030239947140216827, -0.0005115838721394539, 0.013819729909300804, 0.03053714521229267, 0.03972553089261055, 0.0536443293094635, 0.03207267075777054, 0.042747050523757935, 0.016469750553369522, -0.008179150521755219, -0.020122814923524857, -0.05096954107284546, -0.07385382801294327, -0.005231931805610657, -0.004891391843557358, -0.01493422407656908, -0.046684931963682175, 0.012717618606984615, -0.008915955200791359, -0.023231016471982002, 0.02704506367444992, 0.012333737686276436, 0.00358805269934237, -0.005495076533406973, 0.016308767721056938, 0.004092670977115631, 0.017163213342428207, -0.006618858315050602, 0.052059270441532135, 0.017051763832569122, 0.02001136541366577, -0.003990509081631899, -0.005018320400267839, 0.010321456007659435, -0.05473405495285988, 0.0251256562769413, -0.026673564687371254, -0.0006435430841520429, 0.022091755643486977, 0.009219344705343246, 0.004396060947328806, 0.018166258931159973, 0.07613234966993332, 0.007981018163263798, -0.004464169032871723, 0.0351189561188221, 0.02064291201531887, 0.0407409593462944, -0.03556475415825844, -0.0010657352395355701, -0.007349471095949411, -0.006008982192724943, 0.011584550142288208, 0.010271922685205936, 0.05319853127002716, 0.00944843515753746, -0.028580589219927788, -0.06924725323915482, -0.02654973231256008, 0.0078819515183568, 0.02620300091803074, -0.036704014986753464, -0.016692649573087692, 0.016828864812850952, -0.001005366793833673, -0.014847541227936745, 0.040641896426677704, -0.02969508245587349, 0.02892732061445713, -0.02423406019806862, 0.01617255248129368, 0.04351481422781944, 0.015119973570108414, 0.017708078026771545, 0.016952697187662125, 0.01202415581792593, -0.0037273645866662264, 0.00524121941998601, 0.0062937973998487, -0.038090940564870834, -0.01970178447663784, 0.01560292113572359, -0.015862969681620598, 0.04614006727933884, 0.009324602782726288, -0.005739646032452583, -0.010643420740962029, -0.053891994059085846, -0.030958177521824837, 0.014253145083785057, 0.034821756184101105, -0.021472591906785965, -0.060727559030056, -0.023094799369573593, 0.009683717973530293, -0.021237310022115707, -0.014265527948737144, 0.018215790390968323, 0.016271617263555527, -0.07127810269594193, 0.02786235883831978, 0.043242380023002625, -0.024729391559958458, -0.021125860512256622, -0.008624947629868984, 0.03873487189412117, -0.01728704571723938, -0.02969508245587349, -0.02897685393691063, 0.014785625040531158, -0.05498172342777252, -0.0015842847060412169, -0.03556475415825844, 0.009107895195484161, -0.010395755991339684, -0.05309946462512016, 0.019008319824934006, 0.0058418079279363155, 0.06642386317253113, 0.039874132722616196, 0.025682903826236725, 0.053446196019649506, 0.024023545905947685, 0.0362829826772213, 0.01285383477807045, -0.04150872305035591, -0.01845107413828373, -0.03464839234948158, 0.007436153944581747, -0.038412906229496, 0.023231016471982002, 0.017274662852287292, 0.003352770581841469, -0.015528621152043343, -0.02235180325806141, 0.011052069254219532, -0.024110227823257446, -0.010569121688604355, 0.04165732115507126, 0.034103527665138245, -0.021819323301315308, -0.01173314917832613, 0.043415747582912445, 0.04755175858736038, 0.053396664559841156, 0.02337961457669735, -0.026252534240484238, -0.030289480462670326, -0.057656507939100266, -0.02553430385887623, 0.030660977587103844, -0.01215418055653572, -0.020630529150366783, -0.014017862267792225, 0.0023342466447502375, -4.290609649615362e-05, -0.0004961047670803964, 0.008792121894657612, 0.05503125488758087, 0.033930160105228424, 0.0071203806437551975, 0.026277299970388412, 0.02736702747642994, 0.0012189781991764903, -0.016940314322710037, 0.0007159078377299011, -0.010302881710231304, -0.017039380967617035, -0.04007226228713989, -0.01493422407656908, 0.00890976283699274, 0.003584956983104348, 0.01898355409502983, -0.004399157129228115, -0.01651928387582302, 0.020073281601071358, -0.000565373688004911, -0.0065940916538238525, 0.0008513498469255865, 0.016729798167943954, 0.017448028549551964, -0.01715083047747612, 0.0004516023909673095, -0.01711368001997471, -0.011113985441625118, -0.08648476004600525, -0.02843198925256729, -0.007064655888825655, -0.01567722111940384, -0.018958788365125656, -0.03994842991232872, 0.04044376313686371, -0.014228378422558308, 0.022649001330137253, 0.04470360651612282, 0.025856269523501396, 0.012036539614200592, 0.00949796847999096, -0.00886642187833786, 0.009590842761099339, -0.016234468668699265, 0.017348961904644966, 0.005191686097532511, 0.05686397850513458, 0.01457510981708765, 0.010649613104760647, -0.0022723302245140076, -0.005637484136968851, 0.01670503243803978, 0.038363371044397354, 0.06196588650345802, -0.008897379972040653, 0.03623345121741295, -0.03653064742684364, 0.009219344705343246, -8.755358976486605e-06, 0.009411285631358624, 0.008581606671214104, 0.015243805944919586, 0.016234468668699265, 0.050672344863414764, 0.001701151835732162, -0.011083027347922325, 0.039874132722616196, 0.029496951028704643, -0.05280226469039917, -0.0018126012291759253, -0.04500080645084381, -0.03712504729628563, 0.040592361241579056, 0.033112864941358566, -0.046561099588871, 0.01629638485610485, 0.010959194973111153, 0.03573811799287796, -0.028357690200209618, -0.0018698738422244787, 0.02288428507745266, 0.022859517484903336, 0.028407223522663116, 0.023503446951508522, -0.004098862409591675, 0.01217894721776247, -0.019206453114748, -0.025732437148690224, -0.05245553329586983, 0.005519842728972435, 0.032270804047584534, 0.00268097803927958, -0.026401132345199585, -0.02664879895746708, -0.009293644689023495, -0.011943664401769638, 0.06944537907838821, -0.00913266185671091, 0.0038233348168432713, -0.038586270064115524, -0.0010858580935746431, -0.005058566108345985, -0.026004869490861893, -0.028729187324643135, -0.01791859231889248, -0.020531462505459785, -0.048740554600954056, -0.0009248755523003638, -0.018525373190641403, -0.018277708441019058, 0.03157734125852585, 0.043192848563194275, -0.006104952655732632, 0.017831910401582718, -0.013448231853544712, -0.04173162207007408, -0.009070745669305325, -0.053000397980213165, -0.03246893733739853, -0.033211931586265564, -0.00835251621901989, -0.004572522826492786, 0.0128786014392972, 0.027168896049261093, 0.008655906654894352, -0.028828253969550133, 0.016667881980538368, -0.031156308948993683, -0.06399673968553543, 0.011404992081224918, -0.04311854764819145, 0.011764107272028923, 0.027466094121336937, -0.013720664195716381, -0.00047907777479849756, -0.023701580241322517, 0.02534855529665947, 0.020927727222442627, 0.03908160328865051, -0.006005886476486921, 0.0037087895907461643, 0.03137920796871185, 0.0010355509584769607, 0.014649408869445324, -0.04438164085149765, 0.017584243789315224, 0.031453508883714676, 0.025633370503783226, -0.0005274499417282641, 0.005844903644174337, -0.024196911603212357, 0.003804759820923209, -0.008402049541473389, 0.03229556977748871, -0.027441328391432762, 0.004968787543475628, -0.01520665641874075, 0.009076937101781368, 0.049508314579725266, 0.044084444642066956, 0.015491471625864506, -0.02736702747642994, 0.02485322393476963, 0.030933409929275513, -0.034326426684856415, -0.013633981347084045, 0.00982612557709217, 0.0020447876304388046, -0.00470254709944129, -0.004866625182330608, -0.0239120963960886, -0.013237716630101204, -0.02781282551586628, 0.008971679955720901, -0.001287860213778913, 0.0027692089788615704, 0.019268369302153587, -0.01634591817855835, 0.008544457145035267, 0.0014867665013298392, 0.023119566962122917, 0.012965284287929535, 0.004817092325538397, -0.0010610915487632155, 0.03945310041308403, 0.01845107413828373, 0.017026998102664948, -0.006556941661983728, -0.028803488239645958, 0.005758220795542002, -0.002080389531329274, -0.0022707823663949966, 0.008302982896566391, 0.021844089031219482, 0.0204200129956007, -0.015788670629262924, 0.008965487591922283, 0.03999796509742737, 0.023478681221604347, 0.012098455801606178, 0.02887778729200363, -0.007244213484227657, 0.004885200411081314, -0.015726754441857338, -0.04648679867386818, -0.04883962124586105, 0.016457367688417435, -0.029274052008986473, -0.0033434832002967596, 0.011739340610802174, -0.014253145083785057, -0.010302881710231304, -0.010191432200372219, -0.02220320515334606, -0.012717618606984615, -0.009169812314212322, -0.010853936895728111, 0.01058769691735506, 0.018735889345407486, -0.00063657748978585, -0.002061814535409212, -0.03175070509314537, 0.014240761287510395, -0.02466747537255287, 0.009925191290676594, -0.024060694500803947, -0.012333737686276436, -0.009002638049423695, -0.004798517562448978, -0.013646364212036133, 0.008699247613549232, 0.04809662327170372, 0.022054605185985565, 0.016605965793132782, 0.005021416116505861, -0.004879008512943983, 0.018550138920545578, -0.06607713550329208, 0.025460004806518555, -0.011274968273937702, -0.015590538270771503, 0.002382231643423438, -0.0583995059132576, 0.00877354759722948, -0.04004749655723572, 0.0006617310573346913, 0.020308563485741615, 0.0031407070346176624, 0.018240557983517647, -0.03752131015062332, -0.009634184651076794, -0.0361839160323143, 0.009163619950413704, 0.03531708940863609, -0.012965284287929535, 0.004235078580677509, -0.012816685251891613, -0.011547399684786797, 0.027911892160773277, 0.03170117363333702, -0.006445492617785931, 0.02247563563287258, 0.014116928912699223, -0.0432671494781971, 0.024060694500803947, -0.020853428170084953, -0.030462846159934998, -0.0373479463160038, 0.020308563485741615, -0.01656881533563137, 0.002897685393691063, -0.0025633370969444513, 0.02853105589747429, -0.018475839868187904, 0.004306282382458448, 0.02758992649614811, 0.014612259343266487, -0.031106775626540184, -0.014810391701757908, -0.030066581442952156, -0.015788670629262924, -0.005628196522593498, 0.009553693234920502, 0.014909458346664906, 0.028456756845116615, -0.005909916013479233, -0.0337567962706089, 0.015912503004074097, 0.014686559326946735, 0.01826532371342182, -0.018153874203562737, 0.014525576494634151, -0.021831706166267395, -0.013250099495053291, -0.017039380967617035, -0.029893215745687485, -0.023305315524339676, 0.024110227823257446, -0.01643260009586811, -0.019491268321871758, -0.009367944672703743, -0.029843682423233986, 0.02490275725722313, -0.02776329219341278, 0.03700121119618416, 0.00790671817958355, 0.02072959579527378, -0.016965080052614212, -0.011875556781888008, -0.008823079988360405, -0.012668086215853691, -0.026970762759447098, 0.03085911087691784, 0.011671232990920544, 0.014884691685438156, 0.01562768779695034, 0.021113475784659386, -0.029571250081062317, 0.006083281710743904, -0.002442600205540657, -0.029843682423233986, 0.0361839160323143, -0.004522989504039288, 0.017992893233895302, -0.005851095542311668, 0.06622572988271713, 0.00032003014348447323, -0.032444167882204056, 0.033930160105228424, 0.014055012725293636, -0.024865606799721718, -0.00019774535030592233, -0.010358605533838272, 0.04661063104867935, 0.005114290863275528, -0.0020246647763997316, 0.01778237707912922, -0.012606170028448105, -0.010129515081644058, 0.02141067571938038, -0.0010030448902398348, 0.05275273323059082, -0.008011976256966591, -0.0073866210877895355, -0.004649918060749769, -0.0026840739883482456, 0.03219650313258171, 0.02220320515334606, -0.009683717973530293, -0.02360251359641552, 0.02986844815313816, 0.019639868289232254, 0.00575512507930398, -0.03913113474845886, 0.016284000128507614, -0.028283391147851944, -0.004721121862530708, 0.03573811799287796, -0.0099437665194273, -0.018872104585170746, 0.006318564061075449, 0.010717720724642277, -0.019206453114748, 0.012166563421487808, 0.025113273411989212, -0.015825819224119186, 0.006358809303492308, 0.009256495162844658, -0.016234468668699265, 0.03801663964986801, -0.024518875405192375, 0.013856880366802216, 0.02959601767361164, 0.03108200989663601, 0.0059625450521707535, -0.03556475415825844, 0.0039719343185424805, 0.008488732390105724, 0.027391795068979263, -0.013894029892981052, 0.033211931586265564, -0.003584956983104348, 0.025138039141893387, -0.02059337869286537, 0.01665549911558628, -0.003009134903550148, 0.0008970131748355925, -0.02158404141664505, 0.042796581983566284, 0.012730002403259277, -0.03883393853902817, 0.017844293266534805, 0.0012623196234926581, 0.011504058726131916, 0.02534855529665947, 0.03739747777581215, 0.019045470282435417, -0.002702648751437664, -0.010426714085042477, -0.0325927697122097, 0.006021365523338318, 0.00893452949821949, -0.037546075880527496, -0.0303142461925745, 0.00877354759722948, -0.018834954127669334, 0.04822045564651489, -0.020159965381026268, -0.013584448024630547, -0.0028404127806425095, 0.020122814923524857, 0.00911408755928278, -0.02271091938018799, -9.500290616415441e-05, -0.0009852439397946, 0.012209905311465263, -0.015392405912280083, -0.03630774840712547, 0.005789178889244795, 0.015169506892561913, 0.011665040627121925, 0.017361344769597054, 0.0337567962706089, -0.028630122542381287, 0.003498273901641369, 0.022091755643486977, 0.010346222668886185, -0.03430166095495224, 0.018116725608706474, 0.023008117452263832, -0.024370277300477028, -0.0033961120061576366, 0.03769467771053314, -0.001794026349671185, 0.02763945981860161, 0.02337961457669735, -0.022537553682923317, 0.005993503145873547, 0.007337087765336037, 0.013312015682458878, -0.02033333107829094, 0.041261058300733566, -8.237777365138754e-05, -0.01692793145775795, -0.011677424423396587, -0.013312015682458878, -0.012890985235571861, 0.010346222668886185, -0.014203611761331558, 0.035886719822883606, -0.027688993141055107, 0.019454117864370346, -0.03390539437532425, 0.0038326221983879805, -0.018735889345407486, 0.02069244533777237, 0.005281465128064156, 0.03519325703382492, -0.0028450563549995422, 0.038313839584589005, -0.025336172431707382, -0.026698332279920578, 0.018203407526016235, 0.03326146677136421, -0.06677059829235077, 0.03417782858014107, 0.012977668084204197, -0.0020277604926377535, -0.03407876193523407, 0.0489882193505764, 0.023491064086556435, 0.007207063492387533, -0.023850180208683014, 0.025806736201047897, 0.042747050523757935, -0.004420827608555555, -0.01493422407656908, -0.019355053082108498, 0.009968533180654049, -0.02408546209335327, 0.005330997984856367, 0.026054400950670242, 0.04311854764819145, 0.0072999382391572, 0.02342914789915085, -0.03680308163166046, 0.02211652137339115, -0.02216605469584465, -0.028184324502944946, -0.004634439013898373, -0.005953257437795401, -0.00012654154852498323, 0.029521716758608818, -0.009392710402607918, 0.002906972775235772, -0.02853105589747429, 0.025014206767082214, 0.009999491274356842, 0.04532277211546898, 0.029174985364079475, -0.00020567838510032743, -0.0006040714215487242, -0.0433662123978138, -0.007789077237248421, 0.03915590047836304, 0.001794026349671185, 0.010544355027377605, 0.008544457145035267, 0.02082866057753563, -0.008333940990269184, -0.01850060559809208, 0.02117539383471012, -0.006157581228762865, 0.011367842555046082, 0.01791859231889248, 0.023305315524339676, -0.018203407526016235, 0.039700765162706375, 0.00046359869884327054, 0.017212746664881706, 0.008711631409823895, -0.015739137306809425, 0.0028001670725643635, -0.002876014681532979, 0.03905683755874634, 0.0034301660489290953, -0.031453508883714676, 0.030685745179653168, 0.001919406931847334, 0.031998369842767715, 0.030363779515028, 0.03937879949808121, -0.019330285489559174, 0.014315061271190643, 0.01889687031507492, 0.032047905027866364, 0.010191432200372219, -0.022512786090373993, -0.01853775605559349, 0.017262279987335205, 0.03108200989663601, -0.016234468668699265, -0.023354848846793175, -0.05379292741417885, 0.011213052086532116, -0.0256581362336874, -0.012649510987102985, 0.01332439947873354, -0.004990458022803068, -0.002198030473664403, -0.03085911087691784, -0.01121924351900816, 0.023391999304294586, -0.010005682706832886, -0.017522327601909637, -0.0020447876304388046, -0.0019472693093121052, 0.00844539050012827, -0.015305723063647747, -0.020655294880270958, -0.012890985235571861, 0.009076937101781368, -0.04232601821422577, -0.007640478201210499, 0.023726345971226692, 0.039428334683179855, -0.010649613104760647, -0.022277504205703735, 0.005036895163357258, 0.012952901422977448, -0.021373525261878967, -0.005699400324374437, 0.03821477293968201, 0.02947218529880047, 0.02163357473909855, -0.00016427182708866894, 0.019949449226260185, -0.03165163844823837, 0.011423567309975624, -0.03539138659834862, -0.01119447685778141, 0.023131949827075005, 0.02593056857585907, 0.00810485053807497, -0.03975030034780502, -0.0033775370102375746, 0.008228683844208717, 0.0003595018351916224, -0.001280120573937893, -0.0046375347301363945, 0.0038604845758527517, -0.009299836121499538, 0.0046777804382145405, -0.014760858379304409, 0.05304993316531181, 0.03905683755874634, -0.000776663247961551, -0.0022057699970901012, 0.00835251621901989, 0.01804242469370365, -0.01269285287708044, 0.02548477053642273, -0.004012179560959339, -0.0232805497944355, -0.015751520171761513, 0.004690163768827915, 0.0017197267152369022, -0.008179150521755219, 0.03390539437532425, 0.014141695573925972, 0.026921231299638748, 0.01961510069668293, 0.011627891100943089, 0.006445492617785931, -0.009764209389686584, -0.02798619121313095, -0.00678603257983923, 0.02307003363966942, -0.010593888349831104, 0.04378724470734596, -0.008946913294494152, -0.017262279987335205, -0.009392710402607918, -0.045694269239902496, 0.005442447494715452, 0.0007689237245358527, 0.017299428582191467, -0.039700765162706375, 0.04960738122463226, 0.012754769064486027, 0.006532175466418266, 0.0032444170210510492, -0.03219650313258171, -0.008340132422745228, -0.00938032753765583, 0.02430836111307144, 0.024283593520522118, 0.009330794215202332, -0.008544457145035267, -0.0019364339532330632, 0.03328623250126839, 0.03707551211118698, 0.01764615997672081, -0.0034270700998604298, -0.012730002403259277, -0.0032815667800605297, -0.0048232837580144405, 0.01199938915669918, 0.07152577489614487, 0.0013892481802031398, -0.04931018501520157, 0.013448231853544712, 0.029026387259364128, 0.0034704115241765976, 0.034053996205329895, -0.010049024596810341, 0.014191227965056896, 0.03506942093372345, -0.0006973329582251608, 0.03442549332976341, -0.02430836111307144, 0.006649816408753395, 0.0036530648358166218, -0.008748780936002731, -0.003476603189483285, -0.007064655888825655, 0.04527323693037033, -0.020135197788476944, -0.00944843515753746, 0.002103608101606369, 0.026475433260202408, -0.029125452041625977, -0.00028752407524734735, -0.010476247407495975, -0.018512990325689316, -0.023751113563776016, -0.021373525261878967, 0.027168896049261093, -0.0002447630977258086, 0.02430836111307144, -0.027911892160773277, -0.013708280399441719, 0.036604948341846466, -0.012123222462832928, -0.019738933071494102, 0.02127445861697197, 0.028729187324643135, 0.002050979295745492, 0.022723302245140076, 0.014698942191898823, 0.0051638237200677395, -0.010228581726551056, 0.0303142461925745, 0.03184977173805237, -0.013844496570527554, -0.013386315666139126, 0.04027039557695389, -0.031007710844278336, 0.019738933071494102, 0.047130730003118515, -0.0327908992767334, -0.005925395060330629, -0.007931484840810299, -0.0018838050309568644, 0.008098659105598927, -0.0008420624071732163, -0.036208685487508774, 0.0008915954967960715, 0.00860018189996481, 0.019949449226260185, -0.023503446951508522, -0.006194731220602989, -0.002020020969212055, -0.02233942039310932, -0.004798517562448978, -0.013943563215434551, -0.03135444223880768, -0.014835158362984657, -0.0005239671445451677, 0.000996079295873642, 0.024642709642648697, 0.00781384389847517, 0.04294518381357193, -0.0029611496720463037, -0.04653633013367653, 0.00769001105800271, -0.010042832233011723, -0.036332517862319946, 0.012166563421487808, -0.007064655888825655, -0.0015161767369136214, 0.016816481947898865, 0.010872512124478817, -0.031948838382959366, 0.02122492529451847, 0.03281566873192787, 0.03791757673025131, 0.0006996548036113381, -0.012228479608893394, 0.002739798743277788, -0.019503651186823845, 0.011764107272028923, 0.013411082327365875, 0.00030300315120257437, 0.013621597550809383, -0.018574906513094902, -0.0016175647033378482, 0.001211238675750792, -0.01388164609670639, -0.0037056938745081425, -0.015095206908881664, -0.011281159706413746, -0.017311813309788704, 0.012791918590664864, -0.03749654442071915, 0.025583837181329727, 0.04841858893632889, -0.009751825593411922, -0.025311404839158058, 0.002114443574100733, 0.012730002403259277, 0.004591097589582205, 0.0062628393061459064, -0.01684124767780304, 0.017534710466861725, -0.00855064857751131, 0.026351600885391235, -0.0068603320978581905, 0.022104138508439064, -0.025113273411989212, 0.03464839234948158, -0.017757609486579895, -0.027911892160773277, 0.007850993424654007, 0.0051638237200677395, 0.0024998728185892105, 0.016816481947898865, 0.0068603320978581905, -0.014612259343266487, -0.00925030279904604, 0.0313296765089035, 0.02781282551586628, -0.010290497913956642, -0.003197979647666216, -0.004928541835397482, 0.0017522327834740281, 0.01116971019655466, 0.018661588430404663, 0.007064655888825655, 0.008018167689442635, -0.04883962124586105, -0.029843682423233986, -0.010346222668886185, 0.006984164472669363, -0.013064350932836533, -0.016804099082946777, -0.010822978802025318, -0.0024487918708473444, 0.01580105349421501, 0.021212542429566383, 0.02341676503419876, 0.0013219141401350498, -0.0033063332084566355, 0.019949449226260185, -0.018463457003235817, 0.01036479789763689, 0.051167674362659454, -0.013287249952554703, -0.01097157783806324, -0.002256851177662611, -0.005281465128064156, -0.02132399193942547, 0.0002828803553711623, -0.0034301660489290953, 0.026079168543219566, -0.016593582928180695, -0.05240600183606148, 0.007337087765336037, -0.02714413031935692, -0.0724669024348259, -0.04022086411714554, -0.0019348860951140523, -0.0186739731580019, 0.026945997029542923, 0.020259030163288116, 0.033335763961076736, -0.008111041970551014, -0.008389665745198727, -0.0014604519819840789, 0.04249938577413559, -0.04116199165582657, -0.00972086749970913, 0.020803894847631454, -0.002832673257216811, -0.003721172921359539, -0.01911976933479309, 0.020098049193620682, -0.011002535931766033, 0.010804403573274612, -0.0257076695561409, 0.03170117363333702, -0.02141067571938038, -0.0026747863739728928, -0.012240863405168056, 0.001149322371929884, 0.013720664195716381, 0.04331668093800545, -0.0014287198428064585, -0.014698942191898823, 0.021918389946222305, -0.005971832200884819, -0.002351273549720645, -0.017881443724036217, -0.03539138659834862, 0.022265121340751648, -0.00749187869951129, 0.016048718243837357, 0.008730205707252026, 0.01776999421417713, 0.019206453114748, -0.009857083670794964, -0.013151033781468868, 0.014661792665719986, -0.019194070249795914, 0.02288428507745266, 0.031007710844278336, -0.04393584281206131, -0.061817288398742676, 0.012575211003422737, 0.003817143151536584, -0.01684124767780304, -0.010420522652566433, -0.012408037669956684, 0.034995123744010925, 0.0257572028785944, 0.040319930762052536, 0.0326918363571167, -0.0422021858394146, -0.017299428582191467, 0.010742487385869026, 0.00918219517916441, 0.007213255390524864, -0.05304993316531181, 0.003662352217361331, -0.01498375739902258, 0.006352617871016264, -0.025583837181329727, -0.009225537069141865, -0.0060678026638925076, 0.0011717670131474733, -0.010408138856291771, -0.014562726020812988, -0.017088914290070534, 0.004708738531917334, -0.00678603257983923, -0.021844089031219482, -0.017051763832569122, -0.016630733385682106, 0.029794149100780487, 0.024246444925665855, -0.006928440183401108, -0.00019484302902128547, 0.06632480025291443, -0.004259845241904259, 0.007912909612059593, 0.006767457351088524, -0.025360938161611557, -0.012674277648329735, -0.031948838382959366, -0.04440641030669212, 0.07177343964576721, 0.002484393771737814, -0.03229556977748871, 0.047452691942453384, -0.02490275725722313, -0.0007743414025753736, -0.04881485179066658, -0.01620970107614994, -0.01894640363752842, 4.4260519644012675e-05, 0.01947888545691967, -0.027243195101618767, -0.03487129136919975, -0.009163619950413704, -0.01157835777848959, -0.016333533450961113, -0.00933698657900095, 0.00626903073862195, 0.04339098185300827, 0.005200973711907864, -0.0038264307659119368, -0.02305765077471733, 0.010544355027377605, 0.02059337869286537, 0.005235027521848679, 0.02180694043636322, 0.01357206515967846, -0.017757609486579895, 0.02377587929368019, 0.002306384267285466, 0.006210210267454386, 0.009386518970131874, 0.027168896049261093, -0.010240964591503143, -0.011491674929857254, 0.020345713943243027, -0.026302067562937737, -0.01800527609884739, 0.014414126984775066, 0.02132399193942547, -0.0013884742511436343, 0.0022707823663949966, 0.006321659777313471, -0.0010649613104760647, 0.030438078567385674, 0.04527323693037033, 0.0030029432382434607, 0.01495899073779583, 0.00428770761936903, 0.003944071941077709, -0.007343279663473368, -0.019280752167105675, -0.004002892412245274, 0.0031917879823595285, -0.0010734747629612684, -0.017992893233895302, 0.0028682751581072807, 0.04244985058903694, 0.002793975407257676, 0.009937575086951256, 0.0002306384121766314, -0.006114239804446697, 0.043638646602630615, -0.0004148395673837513, 0.024469342082738876, 0.016048718243837357, -0.02843198925256729, 0.025063740089535713, 0.04571903496980667, 0.004928541835397482, 0.0009875658433884382, -0.0489882193505764, -0.017745226621627808, 0.02981891669332981, -0.04034469649195671, -0.026723098009824753, 0.015441938303411007, -0.024816075339913368, -0.010055216029286385, -0.02261185273528099, 0.03014088049530983, 0.008544457145035267, 0.0004419279866851866, 0.04817092418670654, 0.03170117363333702, 0.0016779331490397453, 0.009665142744779587, -0.014711325988173485, 0.03960169851779938, 0.028332922607660294, -0.038759637624025345, 0.03323669731616974, 0.038041409105062485, -0.019330285489559174, 0.02986844815313816, -0.025831501930952072, -0.016804099082946777, -0.046462032943964005, -0.002766113029792905, 0.009244111366569996, -0.04106292501091957, 0.017992893233895302, 0.011398800648748875, -0.05874623730778694, -0.006507408805191517, 0.021336374804377556, 0.014389360323548317, 0.021571658551692963, -0.028853021562099457, -0.0024797499645501375, 0.011367842555046082, -0.018277708441019058, 0.024605559185147285, -0.02117539383471012, -0.0056901127099990845, -0.026574499905109406, 0.008767355233430862, 0.035663820803165436, 0.009541310369968414, -0.04611530154943466, -0.0022444678470492363, -0.019776083528995514, 0.0007464790251106024, -0.016952697187662125, -0.031899306923151016, 0.018153874203562737, 0.005829424597322941], [0.012147583067417145, -0.0064817084930837154, 0.042140740901231766, 0.020350895822048187, -0.010034121572971344, 0.06125824898481369, -0.004843615926802158, 0.040393441915512085, 0.048487547785043716, -0.001002930453978479, -0.06470146030187607, 0.005787928123027086, 0.04694581404328346, 0.003003170248121023, -0.03659049794077873, 0.003178221406415105, -0.03080899454653263, 0.013682893477380276, 0.042449090629816055, 0.0062825679779052734, 0.0592539943754673, 0.002214637352153659, 0.007715096231549978, -0.010098360478878021, 0.022753430530428886, -0.0036102281883358955, 0.024731989949941635, 0.023485755547881126, 0.049926500767469406, -0.09049981087446213, 0.041575439274311066, -0.03080899454653263, 0.032068077474832535, -0.04465891048312187, 0.03882601484656334, 0.03713010624051094, -0.01293772179633379, 0.06249163672327995, 0.011993409134447575, -0.025297293439507484, -0.0389287956058979, -0.039262838661670685, 0.002229091012850404, -0.07898819446563721, -0.016432320699095726, 0.06531815230846405, 0.022072497755289078, -0.02672339789569378, 0.005415342282503843, 0.016162516549229622, -0.009764318354427814, -0.025220206007361412, -0.011929170228540897, 0.020839111879467964, -0.023010388016700745, 0.0075223795138299465, -0.008890668861567974, 0.07045726478099823, 0.009770742617547512, -0.014710716903209686, 0.010676511563360691, -0.04116431251168251, 0.008678680285811424, 0.056787218898534775, -0.01510899793356657, -0.020222418010234833, 0.0018356275977566838, 0.05555383116006851, -0.07395186275243759, 0.0428859144449234, 0.013605806976556778, 0.011363867670297623, 0.04391373693943024, -0.08335644751787186, 0.005421766079962254, -0.0276484377682209, 0.04409360513091087, 0.035536978393793106, 0.01788412034511566, -0.0034592668525874615, 0.018012598156929016, 0.03314729034900665, 0.003147707786411047, 0.014119718223810196, 0.010804989375174046, 0.010528761893510818, -0.03972535952925682, 0.0071305218152701855, 0.008954907767474651, -0.0044100028462708, 0.017370209097862244, -0.01029750145971775, 0.015327409841120243, 0.01859074831008911, 0.019335919991135597, 0.0008599987486377358, -0.0031862512696534395, -0.002829725155606866, -0.022496474906802177, 0.030834689736366272, -0.029755474999547005, -0.02570842206478119, -0.015584366396069527, 0.02677478827536106, -0.010348892770707607, -0.046149253845214844, -0.050517499446868896, 0.030680516734719276, 0.060281816869974136, -0.007618737872689962, -0.046997204422950745, -0.03389246389269829, -0.020916197448968887, 0.07600750774145126, -0.012404538691043854, -0.006510616280138493, -0.009924915619194508, -0.005540608428418636, -0.012488049454987049, -0.01508330274373293, -0.03253059834241867, -0.01049664244055748, 0.0205950029194355, -0.03363550826907158, -0.03975105285644531, 0.015263170935213566, 0.007811454590409994, 0.0015529763186350465, -0.07811454683542252, -0.009115505032241344, 0.07040587812662125, -0.03173403441905975, 0.028059568256139755, -0.07241012901067734, 0.03363550826907158, -0.025631336495280266, -0.06213190034031868, -0.027263004332780838, -0.024372251704335213, 0.0025743753649294376, 0.034971676766872406, 0.02680048532783985, 0.06480424106121063, 0.01594410464167595, -0.019798440858721733, -0.02705744095146656, 0.009616568684577942, 0.04399082437157631, 0.0033532725647091866, 0.04121570289134979, -0.010515914298593998, 0.0042397696524858475, 0.06639736145734787, 0.04093305021524429, 0.013927001506090164, -0.008453844115138054, 0.028110958635807037, 0.013111166656017303, 0.0004460591298993677, 0.01099128182977438, -0.018462270498275757, 0.01422250084578991, -0.0324535109102726, -0.0335841178894043, 0.0002900789550039917, -0.022419389337301254, 0.011228966526687145, 0.02099328488111496, -0.06963500380516052, -0.06192633509635925, -0.02099328488111496, -0.002381658647209406, 0.016213906928896904, -0.009031994268298149, -0.08834138512611389, -0.020864807069301605, -0.011839236132800579, 0.016008343547582626, -0.006879989989101887, -0.005746172741055489, 0.021661369130015373, 0.0022499687038362026, -0.04314287006855011, -0.020787719637155533, 0.005142326932400465, -0.01591840758919716, -0.0077793351374566555, -0.034894589334726334, -0.021044675260782242, -0.040419138967990875, -0.01896333321928978, 0.009115505032241344, 0.017961205914616585, 0.052213408052921295, 0.015725690871477127, -0.025297293439507484, -0.013927001506090164, 0.006446377374231815, 0.027725525200366974, 0.00457060057669878, -0.012969841249287128, -0.03846627473831177, 0.015725690871477127, 0.006051308009773493, -0.058226171880960464, -0.025695575401186943, 0.013040504418313503, 0.0017199974972754717, 0.028650565072894096, -0.0026257664430886507, 0.03371259570121765, 0.029472824186086655, -0.03139999136328697, 0.022869061678647995, -0.011993409134447575, -0.012308180332183838, 0.02130163088440895, -0.02641505002975464, 0.03337855264544487, 0.055091310292482376, -0.005884286481887102, 0.013657198287546635, 0.025669878348708153, -0.011511617340147495, -0.007136946078389883, 0.0409073531627655, -0.0220082588493824, -0.015006215311586857, -0.022059651091694832, -0.01180711667984724, -0.049875110387802124, 0.04648329317569733, -0.04059900715947151, -0.006867142394185066, -0.04393943399190903, 0.010959162376821041, -0.004066324792802334, -0.06100129336118698, 0.019631419330835342, -0.0038350645918399096, 0.021070370450615883, 0.03615367412567139, 0.019772743806242943, 0.020325198769569397, 0.037798188626766205, -0.009237559512257576, -0.017472991719841957, 0.06161798909306526, -0.011376715265214443, 0.010233262553811073, 0.07862845808267593, 0.010837108828127384, 0.004548116587102413, -0.03504876419901848, 0.015147541649639606, 0.038157928735017776, 0.03856905922293663, -0.020338047295808792, 0.0232801903039217, -0.047254160046577454, -0.011081216856837273, -0.02821374125778675, 0.025657031685113907, 0.03908297047019005, -0.05611913651227951, -0.03589671850204468, 0.024680599570274353, -0.04347691312432289, 0.006215116940438747, 0.060230426490306854, -0.06691128015518188, -0.0008001762325875461, -0.004731197841465473, -0.005100571550428867, -0.037541233003139496, -0.015674300491809845, 0.005158386658877134, -0.026003921404480934, 0.0061669377610087395, -0.0006600550841540098, -0.023087473586201668, -0.02127593569457531, 0.0024266259279102087, -0.02646644227206707, -0.016997622326016426, -0.009796437807381153, 0.012340299785137177, -0.019078964367508888, -0.006128394510596991, 0.0333014652132988, 0.02875334769487381, -0.026260877028107643, -0.01988837495446205, -0.028393609449267387, 0.02274058386683464, -0.032941725105047226, -0.017652859911322594, -0.0009571601403877139, -0.00394427077844739, -0.014582239091396332, 0.022393694147467613, -0.005755808670073748, 0.0007616328657604754, 0.009597296826541424, -0.0021134610287845135, 0.0019078963669016957, -0.011704334057867527, -0.01201910525560379, 0.019207442179322243, 0.02627372555434704, -0.04000800848007202, 0.017986902967095375, -0.026569224894046783, -0.005726901348680258, 0.009712927043437958, 0.013605806976556778, 0.008087682537734509, 0.026170942932367325, 0.004721561912447214, 0.0033950277138501406, 0.038646142929792404, -0.026260877028107643, 0.02037659101188183, -0.01639377698302269, 0.004294373095035553, 0.0016244420548900962, 0.04121570289134979, 0.006523463875055313, -0.03453485295176506, -0.020916197448968887, -0.04262895882129669, -0.08561765402555466, 0.00941100437194109, -0.028522087261080742, -0.031143035739660263, -0.04406791180372238, 0.01865498721599579, -0.016098277643322945, -0.029267258942127228, -0.021764151751995087, 0.028830435127019882, -0.021597130224108696, 0.022188128903508186, 0.03412372246384621, -0.03643632307648659, -0.007747215684503317, -0.011280356906354427, 0.045249905437231064, -0.026081008836627007, 0.04427347704768181, 0.031143035739660263, 0.023639928549528122, 0.016175365075469017, 0.004686230327934027, -0.03998231515288353, -0.01627814583480358, 0.0056626624427735806, -0.008967755362391472, -0.05149393156170845, 0.016625037416815758, 0.00327297393232584, 0.010181871242821217, -0.020363742485642433, 0.040162183344364166, 0.0062825679779052734, -0.007085554767400026, -0.011659367009997368, 0.005887498613446951, 0.007085554767400026, -0.041010137647390366, 0.023639928549528122, 0.020132482051849365, -0.04363108426332474, 0.022021107375621796, -0.007085554767400026, 0.058534517884254456, 0.013181829825043678, 0.03332715854048729, -0.014595086686313152, -0.011492345482110977, 0.024976098909974098, 0.017370209097862244, -0.028265131637454033, 0.03885170817375183, 0.0162267554551363, -0.00032661485602147877, 0.032659076154232025, 0.0002023526467382908, 0.0488215908408165, -0.02615809440612793, 0.00676436023786664, -0.012706461362540722, 0.05951094999909401, -0.003809368936344981, -0.014440912753343582, 0.009218287654221058, 0.02172560803592205, 0.05002928525209427, -0.008627288974821568, -0.04088165983557701, 0.01972135342657566, -0.01735736057162285, 0.012154006399214268, -0.022098194807767868, -0.032068077474832535, 0.02065924182534218, 0.015738539397716522, -0.006154090166091919, -0.018629292026162148, -0.00964868813753128, 0.01938731037080288, -0.033763986080884933, 0.008383180946111679, 0.018860552459955215, -0.009243982844054699, 0.033815376460552216, -0.02505318447947502, -0.0041915904730558395, -0.008877821266651154, 0.0196057241410017, 0.053035665303468704, -0.010798565112054348, -0.022367997094988823, -0.02342151664197445, -0.01873207464814186, -0.005829683504998684, -0.01465932559221983, 0.011858507990837097, 0.02462920919060707, -0.02276627905666828, 0.042680349200963974, 0.012757852673530579, 0.012989113107323647, 0.0445818230509758, -0.03826070949435234, -0.019567180424928665, -0.027185918763279915, -0.055091310292482376, -0.006346806883811951, -0.03152846917510033, -0.0007487850962206721, 0.0100148506462574, 0.009333917871117592, 0.055039919912815094, -0.049592457711696625, -0.03327576816082001, 0.019965462386608124, 0.0569927841424942, 0.01077929325401783, -0.025746965780854225, 0.013220373541116714, -0.021121762692928314, -0.10093221813440323, -0.007869269698858261, -0.008408877067267895, -0.0004986547282896936, -0.01823101006448269, -0.028599174693226814, 0.03987953066825867, 0.009841404855251312, 0.025181662291288376, 0.03828640654683113, -0.0030417137313634157, 0.00034227309515699744, -0.0057686567306518555, 0.023935427889227867, 0.008742919191718102, -0.00990564376115799, 0.0059260418638587, 0.027519959956407547, -0.028701957315206528, 0.033507030457258224, 0.03165694698691368, 0.008498811163008213, 0.02644074708223343, 0.009629416279494762, 0.0018629292026162148, -0.026697702705860138, 0.011929170228540897, 0.0033468485344201326, 0.006790055427700281, 0.05791782587766647, -0.030988862738013268, 0.0024137781001627445, 0.08757051825523376, 0.018346641212701797, 0.06958361715078354, 0.019708504900336266, 0.006430317647755146, -0.028933217748999596, -0.030937472358345985, 0.004721561912447214, -0.018487965688109398, -0.012976265512406826, -0.022470779716968536, 0.010470946319401264, 0.024526426568627357, 0.0017617528792470694, 0.013014808297157288, -0.021096067503094673, 0.03931422904133797, -0.04650899022817612, -0.014633629471063614, -0.005865015089511871, 0.0569927841424942, 0.004503149539232254, 0.0008856943459250033, 0.03576824069023132, -0.035562675446271896, -0.04314287006855011, -0.04709998890757561, 0.02500179409980774, 0.014813498593866825, -0.014453760348260403, 0.0025133483577519655, -0.016689276322722435, -0.01627814583480358, -0.017331665381789207, -0.025464314967393875, 0.0008057971717789769, -0.020068243145942688, 0.02319025620818138, -0.04406791180372238, 0.0034432068932801485, 0.040110792964696884, 0.02821374125778675, 0.013875610195100307, -0.042731739580631256, -0.02158428356051445, 0.0071883369237184525, 0.000881679414305836, -0.04743403196334839, -0.026646310463547707, -0.012410962954163551, 0.003372544189915061, -0.03615367412567139, 0.018783465027809143, 0.02731439657509327, 0.008363910019397736, -0.03461194038391113, -0.003468902548775077, -0.02545146644115448, 0.015391649678349495, -0.02118600159883499, 0.02505318447947502, -0.021224545314908028, 0.007862845435738564, 0.008852125145494938, -0.007503107655793428, -0.039262838661670685, -0.0008106150780804455, 0.018770616501569748, 0.02627372555434704, -0.003552413312718272, -0.010593000799417496, -0.022470779716968536, -0.013849915005266666, 0.005874650552868843, 0.004721561912447214, 0.024308012798428535, 0.0008343032095581293, 0.009719351306557655, -0.014774955809116364, 0.01137029193341732, 0.025515705347061157, -0.004056688863784075, -0.008017019368708134, -0.00899987481534481, -0.02965269237756729, -0.0004793830739799887, -0.06331389397382736, 0.017729947343468666, 0.002914841752499342, 0.012327452190220356, 0.008306094445288181, 0.03733567148447037, 0.037541233003139496, -0.052444666624069214, 0.016034038737416267, 0.006154090166091919, -0.004442122299224138, -0.016625037416815758, -0.00853735487908125, -0.042757436633110046, -0.04925841838121414, 0.026928963139653206, 0.01605973392724991, -0.04026496410369873, -0.020607851445674896, 0.02420523203909397, 0.019772743806242943, 0.0214429572224617, 0.018243858590722084, -0.01724173128604889, -0.011376715265214443, 0.02575981430709362, -0.01070863101631403, 0.009340341202914715, -0.0015569912502542138, 0.03345564007759094, 0.014929128810763359, -0.04622633755207062, 0.01424819603562355, 0.006308263633400202, -0.025913987308740616, -0.04347691312432289, 0.02299753949046135, -0.015019063837826252, -0.003276185831055045, 0.012783548794686794, 0.006835022941231728, -0.01201910525560379, 0.004753681365400553, 0.009790013544261456, -0.022111041471362114, 0.054474618285894394, -0.0471256822347641, 0.027391482144594193, -0.017138948664069176, -0.0016541526420041919, -0.012590831145644188, -0.013670045882463455, 0.018295248970389366, 0.011126183904707432, -0.03769540786743164, -0.027802612632513046, -0.011254661716520786, -0.03792666643857956, 0.025464314967393875, -0.025181662291288376, -0.022791974246501923, 0.028059568256139755, 0.03648771718144417, 0.03201668709516525, -0.01915605179965496, -0.004509573336690664, -0.006041672080755234, -0.02443649061024189, 0.026029616594314575, 0.021147457882761955, 0.0389287956058979, 0.019567180424928665, 0.0004147426225244999, -0.040085095912218094, 0.03772110491991043, -0.00921186339110136, 0.0016260481206700206, 0.005617694929242134, 0.01179426908493042, -0.01568714901804924, 0.028701957315206528, 0.016483711078763008, 0.002057251986116171, -0.008363910019397736, 0.012449505738914013, 0.029267258942127228, 0.006192633416503668, 0.07133091241121292, 0.007972052320837975, 0.0541662722826004, -0.051853667944669724, -0.0015529763186350465, -0.005383222829550505, -0.05349818617105484, 0.030038127675652504, 0.01141525898128748, 0.03674467280507088, 0.0013321549631655216, 0.004657323006540537, -0.03880031779408455, -0.024950403720140457, -0.049875110387802124, 0.0048789470456540585, -0.04057331383228302, -0.010798565112054348, -0.014980520121753216, 0.006529888138175011, 0.027442874386906624, -0.005791140254586935, 0.014415217563509941, -0.031168732792139053, -0.01230175606906414, 0.003854336217045784, 0.06937804818153381, -0.0025583156384527683, -0.0335841178894043, -0.01701047085225582, -0.013734284788370132, -0.019541485235095024, 0.007066282909363508, -0.00502348504960537, 0.021661369130015373, 0.0021134610287845135, -0.04563533887267113, 0.0457124263048172, 0.032967422157526016, 0.014016935601830482, -0.005633754655718803, -0.02011963538825512, 0.002845784882083535, 0.015455888584256172, 0.017537230625748634, -0.01141525898128748, -0.010580153204500675, -0.03990522772073746, 0.015622909180819988, 0.00180029624607414, -0.010136904194951057, -0.008781462907791138, -0.0313229039311409, -0.004037417005747557, -0.01658649370074272, -0.03633354231715202, 0.014749259687960148, -0.024988945573568344, -0.005640178453177214, -0.01735736057162285, -0.013772827573120594, 0.012057648040354252, 0.028342219069600105, -0.015905560925602913, 0.01752438209950924, -0.038697537034749985, -0.019066115841269493, 0.009443123824894428, 0.009012722410261631, -0.002924477681517601, -0.0027397905942052603, -0.012147583067417145, 0.044787388294935226, -0.018552204594016075, -0.026697702705860138, 0.00016190219321288168, 0.03777249529957771, -0.06429032981395721, 0.014749259687960148, -0.0074067492969334126, 0.04047052934765816, 0.02139156684279442, -0.027442874386906624, 0.01309189572930336, 0.00035311339888721704, 0.015404497273266315, -0.016483711078763008, -0.0279310904443264, 0.004011721815913916, 0.01381137128919363, 0.005274016875773668, -0.03260768577456474, 0.024847621098160744, 0.017036166042089462, 0.010387436486780643, -0.006963500753045082, -0.016175365075469017, 0.020055396482348442, 0.0011466650757938623, -0.0008527718600817025, 0.01943870261311531, 0.009944187477231026, 0.039828140288591385, 0.01743444800376892, 0.004454970359802246, 0.0007941538351587951, 0.025682726874947548, -0.0016734242672100663, 0.03445776551961899, -0.02175130322575569, -0.025066033005714417, -0.015610061585903168, 0.015147541649639606, 0.016072582453489304, -0.0039346348494291306, -0.021789846941828728, 0.016997622326016426, 0.019335919991135597, -0.03882601484656334, -0.03946840390563011, -0.012828515842556953, 0.003048137528821826, -0.01853935793042183, 0.014993367716670036, -0.026620615273714066, 0.004037417005747557, 0.041267093271017075, 0.022637801244854927, -0.021288784220814705, 0.021173153072595596, 0.037592627108097076, 0.022303758189082146, 0.01271288562566042, -0.02646644227206707, 0.001760146813467145, 0.023524299263954163, 0.004435698501765728, 0.009372460655868053, 0.00612197071313858, 0.004535268992185593, -0.05802060663700104, -0.06675710529088974, 0.0327361635863781, -0.002097401302307844, 0.02646644227206707, -0.014749259687960148, 0.019027573987841606, 0.04075318202376366, -0.013618654571473598, -0.06382780522108078, -0.0166507326066494, -0.023858340457081795, -0.026569224894046783, -0.012340299785137177, 0.03327576816082001, -0.012783548794686794, 0.012507321313023567, 0.013059776276350021, -0.045429777354002, -0.015250323340296745, 0.020492220297455788, -0.00569156976416707, -0.020415134727954865, 0.02872765250504017, 0.014196804724633694, -0.015417344868183136, -0.010104784741997719, 0.053087055683135986, -0.004727985709905624, -0.03854336217045784, 0.026029616594314575, -0.00231420760974288, -0.02302323468029499, 0.004711925983428955, -0.03687315061688423, 0.005848955363035202, 0.005640178453177214, -0.009282526560127735, 0.023794101551175117, 0.027545655146241188, 0.014376673847436905, -0.005017060786485672, 0.017498686909675598, 0.02288190834224224, -0.03972535952925682, -0.04224352538585663, 0.014800650998950005, -0.029755474999547005, 0.020325198769569397, -0.009121929295361042, -0.008203311823308468, -0.018526509404182434, 0.004220498260110617, -0.00253261998295784, -0.05807199701666832, -0.006080215331166983, -0.008518083021044731, 0.021764151751995087, -0.02931865118443966, 0.0162267554551363, -0.02026095986366272, -0.010856380686163902, -0.005999916698783636, 0.007136946078389883, -0.021096067503094673, 0.002596859121695161, -0.027417177334427834, 0.024218078702688217, 0.008852125145494938, 0.012661494314670563, 0.008312518708407879, 0.012809243984520435, -0.011723605915904045, 0.05370375141501427, 0.004011721815913916, -0.04997789114713669, -0.049618154764175415, -0.017472991719841957, -0.01406832691282034, -0.007226880174130201, 0.056787218898534775, 0.016830600798130035, -0.0056530265137553215, 0.02065924182534218, 0.011736453510820866, 0.03746414929628372, -0.025554249063134193, 0.02028665691614151, -0.032042380422353745, -0.0026225545443594456, 0.022702040150761604, 0.02877904288470745, -0.010972009971737862, -0.008440996520221233, -0.0035042339004576206, 0.006093062926083803, -0.05349818617105484, 0.016445167362689972, -0.010194718837738037, 0.03106595017015934, -0.007175489328801632, 0.009757894091308117, -0.05832895636558533, -0.027725525200366974, -0.0017456931527704, -0.030963167548179626, -0.0005552652874030173, -0.006738664582371712, 0.0037258584052324295, 0.013721437193453312, -0.009115505032241344, -0.003754765959456563, 0.008286822587251663, -0.006070579402148724, 0.0016164121916517615, -0.012430233880877495, 0.009989154525101185, 0.0327361635863781, 0.019451549276709557, -0.024513578042387962, 0.029729779809713364, 0.008588746190071106, -0.0031974930316209793, 0.047305554151535034, -0.020800568163394928, -0.023549994453787804, -0.008652985095977783, -0.03021799586713314, -0.019117508083581924, -0.03677036613225937, -0.008184040896594524, -0.02584974840283394, -0.01698477566242218, 0.007400325499475002, 0.07256430387496948, 0.023717015981674194, 0.04381095618009567, 0.03468902409076691, -0.020530764013528824, 0.005383222829550505, 0.001339381793513894, 0.025669878348708153, -0.032890334725379944, 0.01423534844070673, 0.02931865118443966, -0.0014750865520909429, 0.005335043650120497, 0.0019833771511912346, 0.019631419330835342, 0.016714971512556076, 0.013046927750110626, 0.018346641212701797, -0.03363550826907158, -0.002070099813863635, 0.01577708311378956, 0.00633395928889513, -0.006157302297651768, 0.018950486555695534, 0.011954866349697113, 0.004544904921203852, -0.0011354231974110007, 0.019477246329188347, -0.026672005653381348, 0.02759704738855362, 0.03772110491991043, 0.020248113200068474, -0.01851366087794304, 0.050209153443574905, 0.011890627443790436, -0.030654819682240486, 0.0034978101029992104, 0.025297293439507484, -0.0158027783036232, 0.008659408427774906, -0.0166507326066494, -0.013258916325867176, 0.006494556553661823, -0.007541651371866465, -0.004326492547988892, -0.005627330858260393, -0.0018356275977566838, -0.00024230123381130397, -0.0008278792956843972, 0.017537230625748634, 0.06043599173426628, 0.044453345239162445, 0.030295083299279213, -0.021918324753642082, -0.014530847780406475, 0.029755474999547005, 0.003481750376522541, 0.020299503579735756, 0.004911066498607397, -0.002272452460601926, 0.014428065158426762, -0.00030794538906775415, 0.02073632925748825, -0.012565135955810547, 0.04188378527760506, 0.0029678388964384794, -0.010464522987604141, 0.022098194807767868, -0.02629942074418068, 0.04093305021524429, -0.026672005653381348, 0.0026643099263310432, 0.04368247836828232, 0.03242781385779381, 0.02130163088440895, -0.001023808028548956, -0.024089600890874863, -0.009937763214111328, -0.004715138114988804, -0.009051266126334667, -0.0030465314630419016, -0.05267592892050743, 0.021635673940181732, 0.024552121758461, -0.0431685671210289, 0.041575439274311066, -0.05031193420290947, -0.012822091579437256, 0.03052634187042713, -0.030012430623173714, 0.02110891416668892, 0.01467217318713665, 0.03980244696140289, 0.01653510145843029, -0.0015858988044783473, -0.0046219914220273495, -0.01788412034511566, 0.022509323433041573, 0.016290994361042976, 0.009571601636707783, 0.006796479690819979, -0.009886371903121471, 0.019939765334129333, -0.009712927043437958, 0.030295083299279213, 0.007644433528184891, -0.019233137369155884, -0.035485588014125824, 0.018218161538243294, -0.01755007728934288, 0.002139156684279442, 0.011563008651137352, 0.01069578342139721, 0.0008840883383527398, 0.02573411725461483, 0.019207442179322243, 0.018128227442502975, 0.006205481477081776, 0.025579944252967834, 0.013862762600183487, 0.023652777075767517, -0.018320944160223007, -0.04381095618009567, 0.004943185951560736, 0.022342301905155182, 0.028958912938833237, -0.008858549408614635, 0.015237475745379925, -0.012687190435826778, -0.0037258584052324295, -0.001242220401763916, -0.007310390938073397, 0.021070370450615883, 0.007336086593568325, -0.022419389337301254, -0.00012536630674730986, 0.01684344932436943, 0.00636286661028862, 0.0025824052281677723, 0.010573728941380978, 0.015224628150463104, 0.023074626922607422, 0.00654594786465168, 0.03715579956769943, 0.013310307636857033, -0.00941100437194109, 0.0013337609125301242, 0.00084554502973333, 0.02110891416668892, 0.024333709850907326, 0.015815626829862595, -0.001108924625441432, 0.002760668285191059, 0.005980644840747118, -0.009051266126334667, -0.010804989375174046, 0.003757977858185768, -0.02757135219871998, 0.013111166656017303, -0.008119801990687847, 0.013014808297157288, -0.0026193426456302404, 0.05318984016776085, 0.0019191382452845573, 0.02618379145860672, 0.009513786993920803, 0.035254329442977905, -0.004011721815913916, -0.01672782003879547, 0.0030641972552984953, 0.02847069688141346, -0.009218287654221058, 0.0004693457449320704, 0.03545989468693733, -0.0055855754762887955, -0.012584407813847065, 0.022098194807767868, -0.01295056939125061, 0.019451549276709557, 0.026363659650087357, -0.021121762692928314, -0.0031075584702193737, -0.017344512045383453, 0.006725816521793604, -0.025824053213000298, -0.00964868813753128, -0.011890627443790436, 0.010875651612877846, 0.026672005653381348, 0.013875610195100307, 0.0030063821468502283, -0.016458015888929367, -0.005492429248988628, 0.01364434976130724, 0.01201910525560379, -0.018346641212701797, 0.02880473993718624, -0.006125182844698429, 0.006892838049679995, 0.0041562593542039394, 0.00676436023786664, -0.03417511284351349, 0.0011554978555068374, 0.04347691312432289, 0.022470779716968536, -0.03142568841576576, -0.05344679579138756, 0.0007688597543165088, -0.03520293906331062, 0.060847122222185135, 0.0007182715926319361, 0.026877570897340775, -0.027237309142947197, 0.007413173094391823, 0.03412372246384621, 0.012404538691043854, 0.08433287590742111, 0.0007046208484098315, -0.011113336309790611, 0.010657239705324173, 0.018063988536596298, -0.03800375387072563, -0.03420080989599228, 0.014016935601830482, -0.012834939174354076, 0.04375956207513809, -0.00021700715296901762, 0.020158179104328156, -0.005694781895726919, 0.010907771065831184, 0.0025101364590227604, 0.04450473561882973, 0.0445818230509758, 0.018744921311736107, -0.004615567624568939, -0.0114281065762043, 0.023948276415467262, 0.0014750865520909429, 0.021404413506388664, -0.03849197179079056, -0.0324535109102726, -0.030834689736366272, -0.043014392256736755, 0.009969882667064667, -0.013605806976556778, -0.0010864409850910306, 0.010792141780257225, 0.003918575122952461, -0.012841363437473774, -0.021764151751995087, 0.0122760608792305, -0.03908297047019005, 0.014183957129716873, -0.02203395590186119, 0.0118520837277174, 0.015507278963923454, -0.04422208294272423, -0.0021279146894812584, -0.0038318524602800608, 0.007098402362316847, -0.019515788182616234, 0.04766529053449631, -0.030603429302573204, -0.0191817469894886, 0.004287948831915855, -0.026337964460253716, 0.024693448096513748, 0.002009072806686163, -0.019734201952815056, 0.01114545576274395, -0.02417953498661518, -0.006202269345521927, 0.007824302650988102, -0.0406247042119503, -0.03705301880836487, -0.021905478090047836, 0.013670045882463455, 0.022252367809414864, 0.0016396988648921251, 0.005665874108672142, 0.025939682498574257, 0.010612272657454014, -0.03615367412567139, -0.0316055566072464, 0.0031525257509201765, 0.002863450674340129, 0.03142568841576576, 0.0006893640966154635, -0.02432086132466793, -0.021481500938534737, 0.03371259570121765, 0.005697993561625481, 0.011909899301826954, 0.021995412185788155, -0.014569390565156937, 0.011903475038707256, -0.001817961921915412, -0.018102532252669334, 0.03253059834241867, 0.02960130199790001, 0.009507362730801105, -0.039545487612485886, -0.011736453510820866, -0.009237559512257576, -0.022496474906802177, 0.02901030331850052, -0.016714971512556076, -0.0030898929107934237, -0.03286464139819145, -0.01757577247917652, 0.0034367830958217382, -8.496602822560817e-05, -0.0072654238902032375, -0.047613900154829025, -0.013098319061100483, 0.002590435091406107, 0.02299753949046135, -0.0062247528694570065, -0.013072623871266842, 0.008222583681344986, -0.016329538077116013, -0.002869874471798539, 0.017472991719841957, 0.00962299294769764, -6.855498941149563e-05, -0.03024369105696678, -0.016213906928896904, 0.026337964460253716, 0.019515788182616234, -0.036693282425403595, -0.02620948664844036, -0.00484682759270072, 0.030038127675652504, -0.020132482051849365, 0.0330188125371933, -0.017280273139476776, -0.019400158897042274, 0.003120406297966838, 0.016213906928896904, 0.013233221136033535, 0.02189262956380844, 0.020350895822048187, -0.04352830350399017, 0.028033871203660965, 0.004426062572747469, 0.023858340457081795, 0.006661577615886927, 0.023074626922607422, 0.042115047574043274, -0.000809009128715843, -0.037541233003139496, 0.013682893477380276, -0.015468736179172993, -0.017164643853902817, 0.028059568256139755, 0.012295332737267017, -0.011421683244407177, 0.0004175530921202153, 0.010258957743644714, 0.009346765466034412, -0.003905727295204997, 0.00459950789809227, -0.0029084179550409317, 0.0015072060050442815, -0.020633546635508537, 0.04031635820865631, 0.018976181745529175, 0.01794835925102234, 0.0004870114498771727, 0.017896967008709908, 0.02734009176492691, -0.022637801244854927, -0.0041915904730558395, -0.004994577262550592, -0.01512184552848339, 0.021340174600481987, -0.00655237166211009, 0.03653910756111145, 0.003941058646887541, -0.0032472782768309116, -0.02606816031038761, 0.023061778396368027, -0.01788412034511566, -0.0011595127871260047, 0.0010751992231234908, 0.03214516490697861, -0.03211946785449982, -0.014800650998950005, 0.01577708311378956, -0.007194760721176863, -0.030320778489112854, 0.007156217470765114, 0.01440236996859312, -0.013914153911173344, -0.04548116773366928, -0.004069536458700895, 0.00969365518540144, 0.028316523879766464, -0.0007684582960791886, 0.021057523787021637, -0.003033683868125081, -0.0019175322959199548, 0.00919901579618454, 0.0012197367614135146, 0.01113260816782713, 0.011575856246054173, 0.02759704738855362, 0.029498519375920296, -0.01887339912354946, -0.028316523879766464, -0.030115213245153427, -0.0409073531627655, 0.036667585372924805, 0.012693613767623901, -0.031117340549826622, 0.0027044592425227165, 0.003995662089437246, 0.005511700641363859, 0.025772660970687866, 0.00784357450902462, 0.018153922632336617, -0.05128836631774902, 0.014453760348260403, 0.0038125808350741863, 0.011691486462950706, 0.004490301478654146, 0.03720719367265701, 0.03510015457868576, -0.009205440059304237, -0.03283894434571266, 0.006578067317605019, 0.004185166675597429, 0.036693282425403595, 0.024089600890874863, -0.005306136328727007, -0.0012534622801467776, -0.016483711078763008, -0.012590831145644188, 0.002081341575831175, -0.005341467447578907, -0.021622825413942337, -0.0014566178433597088, -0.0069313813000917435, 0.03335285559296608, 0.012912026606500149, -0.020749175921082497, 0.009815709665417671, 0.011563008651137352, -0.0023929004091769457, -0.03504876419901848, -0.014710716903209686, -0.022496474906802177, 0.0015594002325087786, -0.011832811869680882, -0.02615809440612793, -0.01468502078205347, 0.022059651091694832, -0.013734284788370132, -0.010637967847287655, -0.0013827431248500943, 0.004477453883737326, 0.007400325499475002, 0.0008511659107170999, -0.03078329935669899, -0.017164643853902817, -0.005450673867017031, 0.03304450958967209, -0.020273808389902115, 0.03828640654683113, -0.03689884394407272, 0.040110792964696884, 0.010278229601681232, 0.0030417137313634157, 0.01468502078205347, -0.0010647603776305914, 0.014954824931919575, -0.023806950077414513, -0.02274058386683464, 0.042140740901231766, 0.004801860544830561, -0.018192466348409653, 0.012674341909587383, -0.02483477257192135, 0.00360059249214828, -0.010246110148727894, -0.001560203148983419, -0.027185918763279915, 0.028599174693226814, 0.020248113200068474, -0.03368689864873886, -0.012417386285960674, -0.037515539675951004, -0.0005873847985640168, 0.03507446125149727, 0.0057012056931853294, 0.046714555472135544, 0.003324365010485053, -0.014171109534800053, -0.014273892156779766, -0.020929045975208282, 0.017023317515850067, 0.0196057241410017, 0.02316456101834774, 0.020055396482348442, 0.011068369261920452, -0.030038127675652504, 0.006019188556820154, -0.004997789394110441, 0.03342994302511215, 0.0023045719135552645, 0.00962299294769764, 0.01769140362739563, 0.011241814121603966, 0.007548075169324875, -0.007059859111905098, -0.00528365233913064, 0.001517644850537181, -0.010965586639940739, 0.0021038250997662544, 0.007053435314446688, -0.03890309855341911, 0.012552288360893726, 0.00569156976416707, 0.01309189572930336, -0.03574254363775253, -0.02051791548728943, -0.006610186770558357, 0.020183874294161797, -0.008620865643024445, -0.005492429248988628, -0.001339381793513894, 0.04134418070316315, -0.0113574443385005, -0.008158344775438309, -0.02734009176492691, 0.024475034326314926, -0.019258832558989525, -0.0025358321145176888, 0.011087640188634396, 0.0018854128429666162, 0.08263696730136871, -0.005990280769765377, -0.011897050775587559, -0.002362386789172888, 0.008826429955661297, -0.007496683858335018, 0.013220373541116714, -0.005996704567223787, 0.022663496434688568, 0.014299587346613407, 0.027468569576740265, 0.007567346561700106, -0.01379852369427681, -0.015764234587550163, -0.002617736579850316, -0.0030770450830459595, 0.017755642533302307, -0.014312434941530228, 0.021121762692928314, 0.01158228050917387, -0.03566545620560646, 0.01797405444085598, -0.0153788011521101, 0.024513578042387962, -0.02931865118443966, 0.018950486555695534, 0.041010137647390366, 0.007805030792951584, 0.029549911618232727, 0.015353105962276459, 0.004923914559185505, 0.00747098820284009, -0.0057012056931853294, 0.011563008651137352, -0.0033532725647091866, 0.00457702437415719, 0.012128311209380627, -0.0018950486555695534, -0.04465891048312187, -0.01859074831008911, 0.0036808911245316267, -0.01599549502134323, 0.001711967634037137, -0.03363550826907158, 0.013490176759660244, 0.03571685031056404, 0.02559279277920723, 0.008652985095977783, 0.034637633711099625, 0.007400325499475002, 0.03129721060395241, -0.0006600550841540098, 0.005556668154895306, 0.02245793305337429, -0.0037162224762141705, 0.01726742647588253, 0.007849997840821743, -0.021031828597187996, 0.016445167362689972, -0.0074645644053816795, 0.044427648186683655, -0.022111041471362114, 7.096394983818755e-05, 0.04134418070316315, 0.003484962275251746], [0.0022437209263443947, 0.018028724938631058, 0.050822582095861435, 0.0013159653171896935, -0.020621176809072495, 0.05879732966423035, 0.013699199073016644, 0.05763928219676018, 0.06506132334470749, 0.048164330422878265, 0.0017288494855165482, -0.00799448974430561, 0.004418353550136089, 0.05700761824846268, -0.029872413724660873, 0.018910421058535576, -0.016739079728722572, 0.022002940997481346, -0.023266267031431198, 0.03695230558514595, 0.019384169951081276, 0.04813801124691963, -0.0020463261753320694, -0.009718404151499271, 0.011343620717525482, 0.016646960750222206, -0.01813400164246559, -0.013962391763925552, 0.011106747202575207, 0.008981463499367237, 0.04940133914351463, -0.022726722061634064, -0.0012534569250419736, -0.00928413588553667, -0.0026681197341531515, 0.009988176636397839, -0.03763660788536072, 0.02992505207657814, 0.0035366567317396402, -0.0474800281226635, -0.05013827979564667, 0.05092785879969597, 0.0039051270578056574, -0.03384662792086601, -0.0032520792447030544, -0.0015668212436139584, 0.08495872467756271, -0.027161523699760437, 0.0025200736708939075, 0.06648256629705429, -0.010442185215651989, -0.011047529056668282, -0.00492171011865139, 0.03858410194516182, 0.020792251452803612, 0.017883969470858574, 0.028951236978173256, -0.007566800806671381, 0.011212024837732315, -0.04634829983115196, -0.0063725621439516544, 0.0020529059693217278, 0.030819907784461975, 0.0239768885076046, 0.0015520165907219052, 0.029109153896570206, -0.016304809600114822, 0.03179372102022171, -0.01563366875052452, 0.05132264643907547, -0.02039746195077896, 0.024069005623459816, 0.014791450463235378, -0.05303340405225754, -0.034425653517246246, -0.028609085828065872, 0.024121643975377083, -0.02655618079006672, 0.05879732966423035, 0.011777889914810658, 0.06169245392084122, 0.015212559141218662, -0.017002271488308907, 0.03811035677790642, 0.02067381516098976, -0.011975284665822983, -0.050743624567985535, -0.039584238082170486, -0.01864722929894924, -0.020923849195241928, -0.053243957459926605, 0.012705645523965359, -0.024516433477401733, 0.0783262550830841, 0.03729445859789848, -0.007685237564146519, 0.02289779670536518, -0.041926655918359756, -0.06679840385913849, 0.03708390146493912, -0.03176740184426308, -0.051901672035455704, 0.011113326996564865, 0.030609354376792908, 0.018963061273097992, -0.0490591861307621, -0.03900521248579025, 0.03889993578195572, 0.04424275457859039, 0.03695230558514595, -0.0037373416125774384, -0.057849835604429245, 0.007553641218692064, 0.0740625262260437, 0.00020284371566958725, 0.0024855295196175575, 0.02112124301493168, 0.0020200067665427923, 0.03537314757704735, -0.030214564874768257, -0.017133869230747223, -0.013014896772801876, 0.04108443856239319, -0.03400454297661781, 0.01754181832075119, 0.019792119041085243, -0.017923448234796524, -0.0007188460440374911, -0.03400454297661781, 0.0034149300772696733, 0.07127268612384796, -0.033951904624700546, 0.05458624288439751, 0.006379141937941313, -0.029188111424446106, 0.0067772213369607925, 0.035346828401088715, -0.022213494405150414, 0.0011654518311843276, -0.02374001406133175, -0.013883434236049652, 0.005908684339374304, 0.003454409074038267, 0.02616139128804207, -0.03055671416223049, -0.029635539278388023, 0.007566800806671381, 0.040663328021764755, -0.03103046305477619, -0.009909219108521938, -0.03616272658109665, 0.002199307084083557, 0.023963728919625282, -0.0019657232332974672, 0.00373076181858778, 0.013922912999987602, -0.00634953286498785, 0.006435070652514696, 0.02012111060321331, 6.235414184629917e-05, -0.038084037601947784, -0.03908417001366615, -0.016304809600114822, 0.00020993759972043335, 0.05490207299590111, 0.034636206924915314, -0.03368871286511421, 0.004115681629627943, -0.05579692870378494, -0.030346160754561424, -0.033478159457445145, -0.0474800281226635, -0.03868938237428665, -0.07190434634685516, 0.0006505803903564811, 0.008974883705377579, -0.003750501200556755, -0.029872413724660873, -0.043163664638996124, -0.05711289495229721, 0.01172525156289339, 0.019160455092787743, -0.01968684047460556, -0.03492572158575058, -0.062376756221055984, 0.011955545283854008, -0.01216609962284565, 0.005530344322323799, 0.03687334805727005, -0.005161873996257782, -0.007704976946115494, 0.020779091864824295, -0.0012501670280471444, 0.03637327998876572, 0.0030875836964696646, 0.021529192104935646, 0.0038195892702788115, -0.009810521267354488, 0.01037638634443283, 0.00980394147336483, 0.013567602261900902, -0.034636206924915314, 0.03413614258170128, 0.02850380912423134, -0.03126733750104904, 0.002775041852146387, 0.022529326379299164, 0.0008311143610626459, 0.0033557116985321045, 0.01714702881872654, 0.03726813942193985, -0.0053461091592907906, -0.020608017221093178, 0.05171743780374527, -0.012567468918859959, 0.018357716500759125, -0.010639579966664314, -0.00958680734038353, 0.04005798324942589, 0.06006065756082535, -0.019555244594812393, -0.007435203995555639, -0.003855778370052576, -0.043084703385829926, -0.01410714816302061, 0.0006978728924877942, -0.03389926627278328, -0.02929338812828064, 0.02356893941760063, 0.005043437238782644, 0.022450368851423264, -0.0002136387483915314, -0.015028323978185654, -0.03666279464960098, -0.006283734459429979, 0.039794791489839554, -0.023305745795369148, -0.03424141928553581, -0.001788067864254117, 0.0007978039793670177, -0.014883567579090595, 0.026924651116132736, 0.02913547307252884, 0.048006415367126465, -0.022568805143237114, -0.024042686447501183, -0.018041884526610374, 0.009968437254428864, 0.06248203292489052, -0.04195297509431839, 0.0735887810587883, 0.030030328780412674, -0.039873749017715454, 0.0028556447941809893, -0.006556797306984663, 0.04134763032197952, 0.021700268611311913, 0.035109955817461014, 0.025253374129533768, -0.048243287950754166, 0.011317301541566849, 0.03382030874490738, -0.03700494393706322, -0.03913680836558342, -0.03176740184426308, -0.017002271488308907, 0.02262144349515438, 0.007606279570609331, 0.018318237736821175, 0.03234642744064331, -0.04553240165114403, -0.0076128593645989895, -0.03039879910647869, -0.0005638088914565742, -0.0022864898201078176, 0.007810254115611315, 0.026608819141983986, -0.012047662399709225, -0.01988423615694046, 0.01929205097258091, -0.016344290226697922, -0.010086874477565289, 0.05858677625656128, -0.026661457493901253, 0.012587208300828934, -0.015304677188396454, 0.00799448974430561, 0.028345894068479538, 0.0073167672380805016, 0.01738390140235424, 0.005602722521871328, -0.044558584690093994, 0.012975418008863926, -0.04211089015007019, 0.02821429632604122, 0.016410088166594505, -0.034873079508543015, -0.01976579986512661, 0.013297829777002335, 0.0008594898390583694, 0.020963327959179878, 0.002779976697638631, -0.04608510434627533, -0.0484275259077549, -0.01718650758266449, 0.05298076570034027, 0.05334923416376114, 0.010771175846457481, 0.017133869230747223, -0.03350447863340378, -0.09332825988531113, 0.015896860510110855, -0.07648390531539917, 0.0026105463039129972, -0.04469018429517746, 0.04384796321392059, 0.0024657901376485825, 0.03853146359324455, 0.037768203765153885, 0.008718269877135754, 0.01313991378992796, -0.004243988078087568, 0.025213895365595818, 0.0049250004813075066, 0.02039746195077896, -0.013909753412008286, -0.0021433786023408175, 0.004938160069286823, -0.041373949497938156, -0.026661457493901253, -0.012745124287903309, 0.02850380912423134, -0.016528524458408356, -0.023397862911224365, -0.03092518448829651, 0.0003043169854208827, -0.004194639623165131, -0.032083235681056976, -0.017318103462457657, 0.00940915197134018, 0.01616005413234234, -0.03197795897722244, -0.011422579176723957, 0.031688444316387177, -0.0042966268956661224, 0.01952892541885376, 0.011916066519916058, 0.05474415794014931, 0.042374081909656525, 0.011619973927736282, 0.0007867005188018084, 0.002863869536668062, -0.015291517600417137, -0.007152271457016468, -0.05579692870378494, -0.04805905371904373, 0.0024657901376485825, 0.020923849195241928, -0.007803674321621656, 0.00013653140922542661, -0.07179906964302063, -0.039242085069417953, -0.009928958490490913, 0.05748136714100838, 0.03587321564555168, 0.008330060169100761, -0.0509541779756546, -0.024042686447501183, -0.04611142352223396, -0.014988845214247704, 0.005079626105725765, 0.003684703027829528, 0.030740950256586075, -0.014409820549190044, -0.031688444316387177, 0.01667327992618084, 0.021779226139187813, -0.009290715679526329, -0.00932361464947462, 0.015173080377280712, 0.009244656190276146, 0.011330461129546165, 0.024161122739315033, 0.008270842023193836, 0.05411249399185181, -0.0024345358833670616, -0.03063567355275154, -0.04821696877479553, -0.043005745857954025, 0.07527321577072144, -0.02175290696322918, -0.0045960089191794395, 0.008428758010268211, 0.010856714099645615, -0.05227014422416687, 0.002977371448650956, 0.028477489948272705, 0.038478825241327286, 0.0004223426221869886, -0.032925453037023544, -0.011330461129546165, -0.013804476708173752, -0.03179372102022171, -0.020371142774820328, -0.014001871459186077, -0.025292852893471718, -0.0048065632581710815, -0.004342685453593731, 0.01841035485267639, 0.015725785866379738, 0.02135811746120453, -0.027477355673909187, 0.027240483090281487, 0.046611491590738297, -0.004309786483645439, 0.015515231527388096, -0.03747869282960892, 0.027714230120182037, 0.034425653517246246, -0.02266092225909233, -0.022239813581109047, 0.02651670202612877, 0.025266533717513084, -0.04642725735902786, 0.029030194506049156, -0.03203059732913971, -0.005076336208730936, 0.00910648051649332, 0.013764997012913227, -0.07558904588222504, -0.021173881366848946, 0.005612592212855816, 0.042137209326028824, 0.019713161513209343, -0.015015164390206337, -0.02797742374241352, 0.023753173649311066, -0.013080695644021034, -0.03845250606536865, -0.052849166095256805, -0.01367287989705801, -0.007955010049045086, -0.006981195881962776, -0.006658784579485655, -0.01148837711662054, -0.011955545283854008, -0.003145157126709819, 0.013429426588118076, 0.001622749725356698, -0.004313076380640268, -0.004954609554260969, 0.002564487513154745, 0.022792520001530647, 0.00322904996573925, -0.015936339274048805, -0.00833663996309042, 0.030188243836164474, 0.02123968116939068, 0.004441382829099894, -0.023121511563658714, -0.04932238161563873, -0.011751570738852024, 0.03329392150044441, -0.023029392585158348, -0.02120020240545273, 0.0478748194873333, 0.038794659078121185, 0.01091593224555254, 0.02333206497132778, -0.016304809600114822, -0.04932238161563873, 0.027793187648057938, 0.03216219320893288, 0.04821696877479553, 0.047769542783498764, -0.009395992383360863, 0.01144889835268259, -0.04869071766734123, 0.011784469708800316, 0.012100301682949066, 0.018515631556510925, -0.001959143439307809, -0.038873616605997086, -0.012172679416835308, 0.011481797322630882, 0.03508363664150238, 0.03571530058979988, 0.006915397942066193, -0.058007750660181046, 0.0011045883875340223, -0.021015966311097145, -0.005204643122851849, -0.01539679430425167, -0.014765131287276745, 0.027687910944223404, -0.05248069763183594, 0.011942385695874691, -0.013975552283227444, 0.01339652668684721, -0.03513627499341965, 0.02039746195077896, 0.013567602261900902, 0.018265599384903908, 0.022674081847071648, 0.01504148356616497, 0.05187535285949707, 0.015646828338503838, -0.0502435564994812, 0.014712492004036903, 0.038557782769203186, -0.03360975533723831, 0.0003832748916465789, 0.0034609888680279255, 0.005981062538921833, 0.02147655375301838, -0.0005950630875304341, 0.014488778077065945, 0.032609619200229645, -0.03447829186916351, -0.015094121918082237, 0.002220691414549947, -0.0012345400173217058, -0.03513627499341965, 0.005714579485356808, -0.006365982349961996, -0.03205691650509834, 0.009672345593571663, -0.0477958619594574, -0.02897755615413189, 0.02445063553750515, 0.03176740184426308, -0.00808002706617117, -0.001799582620151341, -0.0056915502063930035, -0.028003742918372154, -0.012080561369657516, -0.02163447067141533, 0.0507962629199028, 0.002327613765373826, -0.019042018800973892, 0.017002271488308907, -0.019344691187143326, -0.00505988672375679, 0.0009993112180382013, -0.02071329392492771, 0.031925320625305176, -0.029319707304239273, 0.0005670987884514034, 0.01167261227965355, -0.028187977150082588, -0.0015898506389930844, 0.013593921437859535, 0.016686439514160156, -0.004382164683192968, 0.0247664675116539, -0.012416132725775242, 0.023476822301745415, -0.02452959306538105, 0.018594590947031975, -0.004467702470719814, 0.027161523699760437, 0.01097515132278204, 0.01300173718482256, -0.013258351013064384, -0.019028859212994576, 0.02647722326219082, -0.007606279570609331, 0.0034346694592386484, -0.019700001925230026, -0.046295661479234695, 0.027714230120182037, 0.04671676829457283, 0.02039746195077896, -0.05600748583674431, 0.021858183667063713, -0.010178991593420506, -0.006612726021558046, 0.0063199233263731, 0.009593387134373188, 0.03147789090871811, 0.017160188406705856, 0.03447829186916351, 0.017633935436606407, -0.028161657974123955, 0.011212024837732315, 0.009152539074420929, -0.04013694450259209, -0.015409953892230988, -0.004628907889127731, -0.0013982132077217102, -0.002646735170856118, -0.0127780232578516, -0.019463127478957176, 0.0006657962221652269, -0.0026286407373845577, 0.04555872082710266, -0.02309519238770008, 0.02663513831794262, 0.006040280684828758, 0.04295310750603676, 0.026687776669859886, -0.04892759025096893, 0.00865247193723917, -0.013370207510888577, -0.017923448234796524, -0.01777869090437889, 0.005319789983332157, 0.006053440738469362, 0.000676077208481729, 0.026371944695711136, -0.03382030874490738, 0.03576793894171715, 0.0036682533100247383, -0.025700803846120834, -0.023266267031431198, 0.009817101061344147, -0.012541149742901325, -0.017765531316399574, 0.00799448974430561, -0.003094163490459323, -0.026582499966025352, 0.01398871187120676, 0.03576793894171715, -0.03287281468510628, -0.019423648715019226, -0.0017123998841270804, 0.022252973169088364, -0.02789846435189247, 0.03576793894171715, -0.02039746195077896, -0.022634603083133698, 0.013310989364981651, 0.007665498182177544, 0.011337040923535824, -0.003342551877722144, -0.017673414200544357, 0.026819372549653053, 0.004457832779735327, -0.014725652523338795, -0.015896860510110855, 0.018357716500759125, 0.007797094527631998, -0.005629041697829962, -0.01679171808063984, 0.0069680362939834595, -0.013896593824028969, 0.01131072174757719, 0.0022947145625948906, 0.005892234854400158, -0.0026927939616143703, 0.01864722929894924, -0.013363627716898918, -0.03416246175765991, -0.050743624567985535, 0.024187441915273666, -0.02317414991557598, 0.009389412589371204, 0.034899402409791946, 0.017160188406705856, 0.013686039485037327, -0.03516259416937828, -0.011258083395659924, -0.005701419897377491, -0.02039746195077896, -0.022160856053233147, 0.02742471732199192, 0.03092518448829651, 0.015567869879305363, -0.02758263424038887, -0.03239906579256058, 0.02643774263560772, -0.006474549416452646, -0.02031850442290306, -0.021423915401101112, 0.0020611307118088007, -0.02643774263560772, -0.025384971871972084, 0.006694973446428776, -0.012172679416835308, 0.03126733750104904, -0.01929205097258091, -0.019002540037035942, -0.009850000962615013, 0.04311102256178856, -0.032451704144477844, 0.006188326980918646, 0.013554442673921585, -0.03797876089811325, 0.024319039657711983, 0.0244111567735672, 0.016620641574263573, 0.029977690428495407, 0.02452959306538105, -0.035188913345336914, 0.005777087993919849, 0.005464545916765928, -0.008501135744154453, -0.0008685371140018106, 0.031109420582652092, 0.015462592244148254, 0.023503141477704048, -0.017278624698519707, -0.007428624201565981, -0.01612057536840439, 0.0030250754207372665, -0.04142658784985542, 0.03500467911362648, 0.025661323219537735, 0.00785631313920021, 0.014580896124243736, -0.009711824357509613, 0.01972632110118866, -0.01805504411458969, 0.0036254844162613153, -0.027398398146033287, 0.010350067168474197, 0.008132665418088436, -0.022989913821220398, 0.010961990803480148, 0.0046124584041535854, -0.03758396953344345, 0.022568805143237114, 0.001737074228003621, 0.01496252603828907, 0.018384035676717758, -0.02571396343410015, 0.006622595712542534, 0.017831331118941307, -0.020686974748969078, -0.00033639362663961947, 0.010731697082519531, -0.00614226795732975, 0.004125551320612431, -0.030135605484247208, -0.01433086208999157, -0.013896593824028969, -0.015159920789301395, -0.008099766448140144, -0.03416246175765991, -0.008014229126274586, 0.01659432239830494, -0.03305704891681671, -0.018305078148841858, -0.03397822380065918, 0.02960922010242939, -0.00132665759883821, 0.01734442263841629, 0.0060567306354641914, -0.004033433739095926, 0.0030448148027062416, -0.034188780933618546, 0.010652739554643631, 0.03713654354214668, 0.0028852540999650955, 0.009994756430387497, 0.018594590947031975, -0.038399867713451385, 0.03992638736963272, -0.05295444652438164, 0.04369004815816879, 0.025608684867620468, 0.04766426607966423, 0.014844088815152645, -0.03024088405072689, -0.029898732900619507, 0.0066028558649122715, 0.024674350395798683, -0.015067802742123604, 0.010639579966664314, -0.028714364394545555, 0.0001943105016835034, -0.004480862058699131, 0.031372614204883575, -0.013462325558066368, 0.01202792301774025, 0.008303740993142128, -0.021305479109287262, -0.006270574871450663, 0.012501670978963375, -0.05345451086759567, 0.02905651368200779, -0.010935671627521515, 0.03310968726873398, 0.011560755781829357, 0.007810254115611315, -0.016502205282449722, 0.005602722521871328, -0.038320910185575485, 0.008889345452189445, 0.0008570224163122475, -0.020779091864824295, -0.02643774263560772, 0.027372078970074654, 0.0126398466527462, -0.02600347436964512, -0.005444806534796953, 0.03421510010957718, -0.04884863272309303, -0.007487842813134193, 0.01131072174757719, -0.007231229450553656, 0.013166232965886593, 0.0022947145625948906, 0.048795994371175766, 0.05663914605975151, 0.025384971871972084, -0.026082433760166168, -0.011738411150872707, 0.04071596637368202, 0.014396660961210728, -0.01956840418279171, 0.0008989688358269632, 0.00843533780425787, 0.019081497564911842, 0.021423915401101112, -0.0007426979136653244, 0.008494555950164795, -0.03595217317342758, 0.008547195233404636, -0.04016326367855072, 0.03205691650509834, -0.0507962629199028, 0.03447829186916351, 0.013567602261900902, 0.01663380116224289, -0.008231363259255886, -0.03805771842598915, -0.010554041713476181, -0.01339652668684721, 0.006306763738393784, 0.005823146551847458, 0.004184769932180643, 0.05505998805165291, -0.006079759914427996, -0.01671276055276394, -0.002658250043168664, -0.021015966311097145, -0.005510604940354824, -0.011185705661773682, 0.0072114900685846806, 0.040110621601343155, -0.026845693588256836, -0.06316633522510529, -0.016054777428507805, -0.04750634729862213, 0.0007607924635522068, -0.03176740184426308, -0.05663914605975151, 0.013896593824028969, 0.008428758010268211, -0.004362425301223993, -0.0003748445014934987, -0.019120976328849792, -0.022437209263443947, 0.05611276254057884, 0.01091593224555254, -0.014317702502012253, -0.0027569474186748266, -0.006523898337036371, 0.033320240676403046, -0.04111075773835182, 0.005461256019771099, 0.015107282437384129, 0.0006333083147183061, 0.015028323978185654, -0.01558102946728468, 0.005849465727806091, 0.007652338594198227, 0.006685103755444288, 0.01769973337650299, 0.01539679430425167, 0.010981731116771698, 0.011264663189649582, -0.01025795005261898, -0.033951904624700546, -0.014909886755049229, 0.01996319368481636, 0.005675100721418858, -0.003011915599927306, -0.0028984136879444122, -0.007902371697127819, -0.010231630876660347, 0.012712225317955017, -0.0038919674698263407, -0.0045960089191794395, 0.02976713515818119, -0.027608953416347504, 0.043163664638996124, 0.041768740862607956, -0.0026056114584207535, 0.023305745795369148, -0.022950435057282448, -0.0032158903777599335, 0.0025628425646573305, 0.026016633957624435, -0.0057474784553050995, 0.00132007768843323, 0.004135421011596918, -0.012258216738700867, 0.033872947096824646, -0.03497835993766785, 0.017515499144792557, -0.03334655985236168, -0.02797742374241352, -0.035425785928964615, 0.018949901685118675, -0.006550217512995005, 0.035820577293634415, 0.008198464289307594, -0.01464669406414032, 0.032372746616601944, -0.009343354031443596, -0.021213361993432045, -0.011692351661622524, 0.01037638634443283, 0.012402973137795925, -0.01194896548986435, 0.00010044516966445372, 0.02309519238770008, -0.020094791427254677, 0.007343086414039135, -0.004270307719707489, 0.014475618489086628, -0.027135204523801804, -0.021187040954828262, 0.03124101646244526, -0.024661190807819366, -0.02116072177886963, 0.02020006813108921, 0.02135811746120453, -0.015699466690421104, 0.057218171656131744, 0.012054242193698883, 0.03632064163684845, 0.016423247754573822, -0.012310856021940708, -0.0016679860418662429, 0.027529994025826454, 0.03947896137833595, 0.011060688644647598, 0.034873079508543015, 0.05821830779314041, -0.010652739554643631, -0.0007850555703043938, -0.009915798902511597, 0.03163580596446991, 0.006283734459429979, 0.012087141163647175, 0.014857248403131962, 0.0053954580798745155, 0.012666166760027409, -0.016896994784474373, 0.03374135121703148, -0.006244255695492029, -0.011804209090769291, -0.022634603083133698, 0.056218039244413376, -0.0015783358830958605, 0.027477355673909187, 0.013699199073016644, -0.0010626419680193067, 0.02214769646525383, 0.03295177221298218, -0.043479494750499725, 0.044637542217969894, 0.03329392150044441, 0.015844222158193588, 0.021581832319498062, -0.0066719441674649715, 0.02845117077231407, -0.013896593824028969, -0.009178858250379562, 0.040979161858558655, 0.03584689646959305, 0.018791984766721725, 0.045979827642440796, -0.004885521251708269, -0.001987107563763857, 0.0248454250395298, -0.0018752506002783775, 0.003202730556949973, 0.03147789090871811, 0.00098697398789227, -0.008626152761280537, -0.0025282984133809805, 0.019357850775122643, 0.02108176425099373, -0.017923448234796524, 0.034346695989370346, 0.001648246543481946, 0.043005745857954025, 0.037241820245981216, -0.0028194556944072247, 0.03000400960445404, 0.03221483156085014, -0.009455210529267788, 0.0021927272900938988, -0.009632865898311138, 0.006214646156877279, -0.0077181365340948105, 0.010264529846608639, -0.005688260309398174, 0.010389545932412148, 0.011573915369808674, -0.018068203702569008, 0.04140026867389679, 0.07253600656986237, -0.006981195881962776, -0.013607081957161427, -0.021252840757369995, -0.025503408163785934, -0.027135204523801804, -0.02837221324443817, -0.03945264220237732, -0.07195698469877243, -0.007981330156326294, 0.05319131910800934, -0.03692598640918732, 0.013909753412008286, 0.045269206166267395, 0.01504148356616497, 0.018120842054486275, 0.0255560465157032, -0.005086205899715424, 0.0510331355035305, -0.018620910122990608, 0.012626687064766884, -0.0027701070066541433, 0.020186908543109894, -0.0003655916079878807, 0.021700268611311913, -0.001967368181794882, 0.030898865312337875, 0.011975284665822983, -0.03868938237428665, -0.005862625781446695, -0.00270924367941916, -0.041294991970062256, -0.006889078300446272, 0.024634871631860733, -0.041373949497938156, -0.005142134614288807, -0.03708390146493912, -0.006477839313447475, 0.0004077436460647732, -0.02027902565896511, -0.007777355145663023, 0.01750233955681324, 0.028319573029875755, 0.005829726345837116, -0.005441516637802124, 0.048401206731796265, -9.741227404447272e-05, -0.04013694450259209, -0.022331932559609413, 0.033162325620651245, -0.0008594898390583694, -0.024687509983778, -0.006510738283395767, -0.020371142774820328, 0.019265731796622276, -0.045111291110515594, -0.010231630876660347, -0.010843554511666298, -0.005622461903840303, -0.04063700884580612, 0.0005358446505852044, -0.01679171808063984, 0.007685237564146519, -0.03366239368915558, 0.004326235968619585, -0.01691015437245369, 0.011290982365608215, -0.001927889185026288, 0.011146225966513157, -0.023082032799720764, -0.01897622086107731, -0.035267870873212814, -0.019581563770771027, 0.04950661584734917, 0.017081230878829956, 0.025766601786017418, 0.06358744204044342, 0.012001603841781616, -0.04055805131793022, 0.039426323026418686, -0.03947896137833595, 0.04103180021047592, -0.001799582620151341, 0.0513489656150341, 0.014436139725148678, 0.0515068843960762, -0.007112792693078518, -0.005915264133363962, -0.02175290696322918, 0.01144889835268259, -0.007099633105099201, -0.014488778077065945, 0.025858718901872635, -0.00018454357632435858, -0.006129108369350433, 0.019621042534708977, 0.018397195264697075, -0.010251370258629322, 0.019002540037035942, -0.014278223738074303, -0.003576135728508234, -0.002136798808351159, -0.005734318867325783, 0.005987642332911491, 0.020450102165341377, 0.013593921437859535, 0.045979827642440796, -0.04442698881030083, 0.0001373538834741339, 0.017041750252246857, 0.019239412620663643, -0.004072912503033876, -0.00020510553440544754, 0.0010815589921548963, 0.030267203226685524, -0.006194906774908304, -0.008152404800057411, -0.012606947682797909, -0.013646560721099377, -0.0016556489281356335, 0.002577647101134062, 0.00861299317330122, 0.015238878317177296, 0.012949098832905293, -0.019936874508857727, -0.005313210189342499, -0.019818438217043877, 0.004566399846225977, 0.016883835196495056, 0.01531783677637577, -0.023753173649311066, -0.016462726518511772, 0.021252840757369995, -0.01988423615694046, 0.04726947471499443, 0.004536790307611227, 0.0025710673071444035, 0.0244901143014431, -0.013646560721099377, -0.027872145175933838, -0.032004278153181076, 0.07211489975452423, -0.00013951289292890579, 0.0070009357295930386, -0.021305479109287262, 0.024832265451550484, -0.018963061273097992, 0.007876052521169186, 0.011330461129546165, 0.029424984008073807, 0.052533335983753204, -0.008165565319359303, 0.020502740517258644, 0.012389813549816608, -0.0016926603857427835, -0.04334789887070656, 0.018476152792572975, 0.006579826585948467, -0.005339529365301132, 0.02262144349515438, 0.015659987926483154, 0.03184635937213898, -0.033004410564899445, 0.034188780933618546, 0.02968817763030529, -0.03376767039299011, -0.03637327998876572, -0.012692485935986042, 0.023476822301745415, -0.019594723358750343, -0.00545796612277627, -0.017647095024585724, -0.01097515132278204, -0.02087121084332466, -0.001166274305433035, -0.011087007820606232, -0.022766200825572014, -0.009935538284480572, 0.00754048116505146, 0.005352688953280449, 0.01571262627840042, -0.006635755300521851, -0.02195030264556408, -0.02850380912423134, -0.007566800806671381, -0.019305210560560226, -0.01306095626205206, -0.04147922620177269, -0.026082433760166168, -0.004938160069286823, -0.014186106622219086, 0.0022947145625948906, -0.019068337976932526, 0.018318237736821175, -0.0024986891075968742, 0.012850401923060417, 0.03584689646959305, 0.020015832036733627, -0.018436674028635025, -0.029240749776363373, -0.017607616260647774, 0.026069272309541702, -0.029872413724660873, -0.047769542783498764, -0.016857516020536423, 0.0007899904157966375, -0.013725518248975277, 0.009461790323257446, -0.03818931430578232, 0.0072114900685846806, 0.019594723358750343, 0.015252037905156612, -0.026082433760166168, 0.010317168198525906, 0.015804743394255638, -0.017923448234796524, -0.012192418798804283, -0.01773921214044094, -0.005829726345837116, -0.012745124287903309, -0.03868938237428665, -0.019581563770771027, 0.0027618822641670704, 0.005619172006845474, 0.00448415195569396, 0.007560221012681723, 0.002503623953089118, -0.039426323026418686, 0.009711824357509613, 0.016173213720321655, 0.0466904491186142, 0.00962628610432148, 0.009422311559319496, -0.003164896508678794, -0.03266226127743721, 0.0041058119386434555, 0.003123772796243429, 0.005010537803173065, -0.015238878317177296, 0.019739480689167976, -0.010350067168474197, 0.0002354344178456813, -0.045900870114564896, -0.008738010190427303, 0.009395992383360863, -0.028003742918372154, 0.01691015437245369, -0.035030998289585114, -0.00825768243521452, 0.022687241435050964, -0.01873934641480446, -0.018160320818424225, -0.00910648051649332, 0.0030333001632243395, -0.005323079880326986, 0.016581162810325623, 0.0017930027097463608, 0.016462726518511772, -0.0015010229544714093, -0.021344957873225212, -0.034188780933618546, 0.009823680855333805, 0.002478949725627899, 0.03445197269320488, -0.01860775053501129, -0.0019459837349131703, 0.017923448234796524, -0.0028819639701396227, 0.012679326348006725, -0.004250567872077227, 0.02008163183927536, -0.01562050823122263, 0.011784469708800316, 0.010744856670498848, 0.0243321992456913, -0.015238878317177296, -0.002398346783593297, -0.02031850442290306, -0.021410755813121796, 0.0051355548202991486, 0.024595392867922783, 0.0016614062478765845, 0.03687334805727005, 0.00033063627779483795, -0.016725920140743256, -0.04358477145433426, 0.0006896480917930603, -0.04482178017497063, 0.035899534821510315, 0.004760504700243473, 0.055428460240364075, -0.02500334195792675, 0.03439933434128761, -0.00681670056656003, 0.01631797105073929, -0.01602845825254917, -0.007593119982630014, 0.008784068748354912, -0.0014821059303358197, 0.0025019790045917034, 0.01273854449391365, 0.00463548768311739, 0.014949366450309753, 0.00037936813896521926, -0.031109420582652092, -0.0060337008908391, 0.011652872897684574, -0.0072970278561115265, 0.04624302312731743, -0.03274121880531311, -0.0023259688168764114, -0.032372746616601944, -0.03618904575705528, 0.009310455061495304, -0.014725652523338795, -0.0753258541226387, 0.00481314305216074, -0.005359268747270107, 0.031609486788511276, -0.019397329539060593, -0.009632865898311138, -0.014317702502012253, 0.008988043293356895, 0.056218039244413376, -0.008165565319359303, 0.014528256841003895, 0.00804054830223322, -0.027056246995925903, -0.007586540188640356, 0.023082032799720764, -0.002284844871610403, -0.013567602261900902, -0.011521276086568832, -0.02913547307252884, -0.03811035677790642, 0.0046321977861225605, -0.027293121442198753, 0.020726453512907028, 0.022950435057282448, 0.04024222120642662, 0.008139245212078094, 0.009935538284480572, -0.009317034855484962, -0.003530076937749982, -0.010804075747728348, -0.01850247196853161, -0.019107816740870476, 0.03592585399746895, 0.025016501545906067, -0.01531783677637577, 0.028293253853917122, 0.03139893338084221, -0.008455077186226845, -0.003258659038692713, 0.004658517427742481, 0.044479627162218094, 0.0008956788806244731, 0.024226922541856766, 0.021502872928977013, 0.017647095024585724, -0.012238477356731892, -0.00835638027638197, -0.011541016399860382, -0.008172145113348961, -0.027161523699760437, -0.007843153551220894, 0.05053306743502617, 0.004803273361176252, -0.009178858250379562, 0.006089629605412483, -0.024542752653360367, 0.02774054929614067, -0.004823012743145227, -0.03108310140669346, 2.143584242730867e-05, 0.0018768955487757921, -0.02289779670536518, -0.007303607650101185, 0.023318905383348465, -0.005819856654852629, 0.01602845825254917, 0.0035004678647965193, -0.02047642134130001, -0.00606331042945385, 0.024108484387397766, -0.029556581750512123, 0.03837354853749275, 0.020739613100886345, 0.0018012275686487556, 0.00039787389687262475, -0.025345493108034134, 0.01281750202178955, -0.035741619765758514, 0.0043854545801877975, -0.0015528390649706125, 0.004171609878540039, -0.04350581392645836, 0.007132532075047493, 0.016225852072238922, 0.025779761373996735, -0.03926840424537659, 0.021621311083436012, -0.02020006813108921, -0.004457832779735327, 0.01052114274352789, 0.040031664073467255, 0.03797876089811325, -0.005230962298810482, -0.013817636296153069, -0.08280053734779358, -0.0072114900685846806, 0.007658918388187885, 0.0003639466594904661, 0.032083235681056976, -0.01101463008671999, -0.028477489948272705, 0.0028934788424521685, -0.024305880069732666, -0.015225718729197979, 0.003034945111721754, -0.009488110430538654, -0.008645892143249512, 0.004563109949231148, -0.0035432367585599422, -0.004467702470719814, -0.03389926627278328, 0.0012592143611982465, 0.010593520477414131, -0.004451252520084381, -0.003288268344476819, -0.05953427031636238, 0.0252796933054924, -0.012995157390832901, 0.019081497564911842, -0.019739480689167976, -0.02047642134130001, -0.00933019444346428, -0.008757749572396278, -0.043163664638996124, 0.00041740774759091437, -0.031188378110527992, -0.03561002016067505, 0.02612191252410412, -0.002997111063450575, 0.010823815129697323, -0.026371944695711136, -0.024319039657711983, -0.004355845041573048, 0.0001389988319715485, 0.0253981314599514, -0.011580495163798332, -0.002857289742678404, -0.00013324148312676698, -0.0013299474958330393, -0.026661457493901253, 0.0031435121782124043, 0.013962391763925552, -0.02016058936715126, 0.016370609402656555, 0.033004410564899445, 0.0485064834356308, -0.022331932559609413, 0.011297562159597874, 0.02059485763311386, -0.013284670189023018, 0.04647989571094513, 0.007948430255055428, -0.009474950842559338, -0.004638777580112219, -0.026345625519752502, -0.00980394147336483, 0.013264930807054043, 0.011777889914810658, -0.01893674023449421, -0.052612293511629105, -0.0015602414496243, 0.011718670837581158, -0.03031984157860279, -0.012587208300828934, -0.015804743394255638, -0.02588503807783127, -0.0261087529361248, 0.0036320642102509737, -0.00980394147336483, 0.006194906774908304, -0.013778156600892544, -0.0049118404276669025, 0.0012699065264314413, -0.006681813858449459, 0.005379008129239082, -0.01722598634660244, 0.05148056522011757, 0.029398664832115173, 0.013113594613969326, -0.020107951015233994, 0.007987909950315952, -0.009619706310331821, 0.02592451684176922, -0.01766025461256504, -0.037452373653650284, -0.01769973337650299, 0.05021723732352257, -0.0075075821951031685, -0.014054509811103344, 0.03474148362874985, 0.03953159973025322, 0.027214163914322853, 0.01492304727435112, -0.02195030264556408, -0.007691817358136177, 0.03234642744064331, -0.022279292345046997, -0.023068871349096298, 0.020068472251296043, -0.013501804322004318, 0.01750233955681324, -0.01988423615694046, 0.007415464613586664, 0.014712492004036903, -0.010152672417461872, -0.0014969105832278728, 0.005671810358762741, -0.009343354031443596, -0.011784469708800316, -0.012837241403758526, 0.022845158353447914, -0.016620641574263573, -0.00308593874797225, -0.012896460480988026, 0.049796126782894135], [0.008306327275931835, -0.02068997360765934, -0.023092681542038918, -0.01725580170750618, -0.003327991347759962, -0.007711717858910561, -0.011036675423383713, 0.02934214472770691, 0.018687719479203224, 0.01658838428556919, -0.043904002755880356, -0.006504296790808439, 0.031283725053071976, -0.0018475358374416828, -0.02526482567191124, -0.02178211323916912, 0.009950603358447552, 0.00716564804315567, 0.02471875585615635, 0.018032435327768326, 0.03213316947221756, 0.02357807569205761, -0.00715958047658205, -0.029609112069010735, 0.015035118907690048, -0.011655554175376892, 0.01778973825275898, 0.026793820783495903, -0.012814436107873917, -0.03451160341501236, -0.03545812517404556, -0.01316634751856327, -0.021527281031012535, -0.01783827692270279, 0.06926590949296951, 0.007092838641256094, 0.02871113084256649, -0.02759472280740738, 0.062324754893779755, -0.0021873125806450844, -0.0572766438126564, 0.019731318578124046, 0.0026120333932340145, -0.01953716017305851, 0.019646374508738518, 0.06373240053653717, 0.028444163501262665, -0.0005836120108142495, -0.047350309789180756, 0.024488192051649094, -0.013615338131785393, -0.020447276532649994, -0.021357392892241478, 0.023408187553286552, -0.041040170937776566, 0.0018050636863335967, -0.047350309789180756, 0.0009245263645425439, 0.05319932475686073, -0.02693943865597248, -0.05688832700252533, -0.006589240860193968, 0.01323915645480156, 0.0459912046790123, 0.003959005232900381, 0.01726793684065342, -0.05523798242211342, 0.04834537208080292, -0.04191388189792633, 0.02414841577410698, 0.01230477076023817, 0.0009283184772357345, -0.03732689842581749, -0.06591667979955673, -0.013651742599904537, 0.006947220303118229, -0.007365873549133539, -0.015581188723444939, 0.046840645372867584, -0.003203609026968479, 0.020386602729558945, -0.006352610886096954, -0.031987547874450684, 0.0654798224568367, 0.0012172803981229663, -0.005184628535062075, -0.013809495605528355, -0.022255374118685722, 0.0066256457939744, -0.0218063835054636, -0.004860020242631435, -0.0016366922063753009, 0.02587156929075718, 0.04897638410329819, 0.03436598554253578, -0.048588067293167114, -0.002740966621786356, -0.02356594055891037, -0.02184278890490532, 0.057228103280067444, 0.006243397016078234, 0.015399165451526642, -0.019986150786280632, 0.07251805812120438, 0.038783084601163864, -0.04293321445584297, -0.04315164312720299, 0.003346193814650178, -0.009228577837347984, -0.00014372251462191343, -0.01952502503991127, 0.000566168106161058, 0.0034281043335795403, 0.04067612439393997, 0.033055420964956284, 0.012207691557705402, 0.05213145539164543, 0.010739371180534363, -0.010132626630365849, -0.03781229257583618, 0.010162963531911373, -0.034220367670059204, 0.0400451123714447, -0.06514004617929459, -0.0026514718774706125, 0.019270192831754684, -0.01719512790441513, -0.01036318950355053, -0.0012756794458255172, 0.004492940381169319, 0.02001042105257511, -0.02420908957719803, 0.01322702132165432, -0.02011963538825512, -0.02231604792177677, -0.0031004624906927347, 0.009707905352115631, 0.0021660765632987022, 0.016418496146798134, 0.004344287794083357, 0.0011975611560046673, -0.03499700129032135, 0.02805584855377674, -0.031235186383128166, -0.05150043964385986, -0.006100811995565891, 0.051937296986579895, 0.07086770981550217, -0.014768151566386223, 0.006261599250137806, -0.04781143739819527, 0.00862790085375309, 0.02419695444405079, 0.012511063367128372, 0.024536732584238052, -0.025434713810682297, -0.014052193611860275, 0.05742226168513298, -0.014513319358229637, -0.013663877733051777, -0.03223024681210518, -0.03271564096212387, -0.036380376666784286, 0.0061736213974654675, 0.016491305083036423, -0.01893041655421257, 0.007026096805930138, -0.006552836392074823, -0.03346800431609154, -0.0034918123856186867, -0.05344201996922493, 0.008834194391965866, -0.06295576691627502, 0.0434914194047451, 0.013760956935584545, -0.022097621113061905, -0.02936641499400139, -0.0032612495124340057, 0.0010094705503433943, -0.0015183771029114723, -0.040530506521463394, 0.026721009984612465, -0.016843216493725777, -0.04113725200295448, -0.04521457105875015, 0.03514261916279793, -0.04540872946381569, -0.01781400665640831, -0.01231083832681179, 0.03225451707839966, -0.033540815114974976, 0.02926933579146862, -0.018250862136483192, 0.0516945980489254, -0.024014931172132492, 0.021405931562185287, -0.04378265514969826, 0.0012400333071127534, 0.045117493718862534, 0.005208898335695267, 0.014246352016925812, -0.031283725053071976, 0.005315078422427177, 0.0044504678808152676, -0.05455842986702919, -0.005670023616403341, 0.05397595465183258, 0.04545726999640465, 0.04635525122284889, -0.045724235475063324, 0.035919252783060074, -0.04087028279900551, -0.02579876035451889, 0.05916968733072281, -0.044462207704782486, -0.00122562306933105, 0.018214458599686623, 0.02516774646937847, 0.022801443934440613, 0.035288237035274506, -0.02237672358751297, 0.030846871435642242, -0.0018536032875999808, -0.009974873624742031, -0.0190153606235981, -0.008755317889153957, -0.019318733364343643, -0.07931359112262726, 0.02183065377175808, -0.030749792233109474, -0.007305199280381203, 0.010994203388690948, 0.00034698177478276193, -0.04698626324534416, 0.013433314859867096, 0.04883076623082161, 0.0017853445606306195, -0.04725323244929314, 0.007262727245688438, -0.035870712250471115, -0.003722375025972724, -0.0036768692079931498, -0.035894982516765594, -0.007638908457010984, -0.0012187972897663713, -0.01667332835495472, -0.006210025865584612, -0.03900151327252388, 0.06135396286845207, -0.0017625916516408324, 0.028832480311393738, -0.014816691167652607, 0.00032877945341169834, 0.0013007076922804117, 0.0230562761425972, 0.026065727695822716, 0.04650086909532547, -0.023808639496564865, 0.043297260999679565, -0.004465636797249317, 0.029002368450164795, -0.022522341459989548, 0.004235073924064636, 0.017971761524677277, -0.0322059765458107, -0.01294791977852583, 0.04099163040518761, -0.04489906504750252, -0.03286126255989075, 0.05523798242211342, -0.008245652541518211, 0.014683207497000694, 0.012438254430890083, -0.01893041655421257, -0.029536303132772446, 0.02060502953827381, 0.02473088912665844, -0.014840961433947086, 0.008712845854461193, -0.009052622132003307, -0.03579790145158768, -0.01778973825275898, 0.0016457934398204088, -0.02184278890490532, -0.02244953252375126, -0.024221224710345268, -0.01730434224009514, 0.03426890820264816, -0.00031588616548106074, 0.011285440064966679, 0.06062587350606918, 0.01143712643533945, -0.03237586468458176, -0.021539416164159775, 0.005903620272874832, -0.0003959005407523364, -0.029026638716459274, 0.021952001377940178, -0.002690910128876567, -0.02752191387116909, 0.0006131907575763762, 0.0234688613563776, 0.003191474126651883, 0.01033891923725605, -0.039389826357364655, 0.019245922565460205, 0.010866787284612656, 0.011382519267499447, -0.006498229224234819, 0.02241312712430954, -0.05101504549384117, 0.050286952406167984, -0.002114503178745508, 0.0013014661381021142, -0.029948890209197998, 0.03174485266208649, -0.03604060038924217, -0.009774647653102875, 0.05159752070903778, -0.003522149519994855, 0.023966392502188683, -0.006006766576319933, 0.04489906504750252, -0.014476914890110493, 0.031356535851955414, -0.030337205156683922, 0.002496751956641674, 0.04747166112065315, -0.04873368889093399, -0.00949554517865181, -0.04776289686560631, 0.008743182756006718, 0.01354252826422453, 0.007311266381293535, -0.042714785784482956, -0.018651314079761505, 0.011958926916122437, -0.03773948550224304, -0.04150129854679108, 0.021563686430454254, 0.014234216883778572, -0.015836020931601524, -0.01150993537157774, 0.002483100164681673, -0.019318733364343643, 0.02403920143842697, 0.024233359843492508, 0.029657652601599693, -0.009629028849303722, 0.047350309789180756, 0.031162377446889877, -0.013263426721096039, 0.0013970283325761557, -0.002966978820040822, -0.08373069018125534, -0.009313521906733513, -0.03288552910089493, 0.006904747802764177, -0.017911085858941078, 0.03293406963348389, 0.027983037754893303, -0.0196099691092968, -0.0028228769078850746, 0.08513833582401276, -0.0319632813334465, 0.07431402057409286, -0.00458395155146718, 0.046767834573984146, 0.06780972331762314, -0.027133597061038017, 0.052568309009075165, 0.009277117438614368, 0.028905289247632027, -0.05688832700252533, 0.062227677553892136, 0.01231083832681179, -0.005612383130937815, 0.007371941115707159, 0.03846757858991623, 0.003807319328188896, 0.016843216493725777, -0.027352023869752884, 0.007778459694236517, 0.021126829087734222, 0.021685034036636353, 0.024269765242934227, -0.00503294263035059, -0.01006588526070118, 0.01463466789573431, 0.0068319388665258884, -0.017595579847693443, -0.03693858161568642, -0.0437341146171093, 0.03048282489180565, -0.03616194799542427, 0.01672186702489853, -0.0017914120107889175, 0.047277502715587616, -0.0013924777740612626, -0.05552922189235687, 0.007875538431107998, -0.060043398290872574, -0.04002084210515022, -0.0235295370221138, -0.0006260841037146747, 0.00802722480148077, 0.023250434547662735, -0.009380264207720757, 0.0194886215031147, -0.02642977423965931, -0.007202052511274815, -0.018602775409817696, 0.023153355345129967, -0.011188361793756485, -0.006716657429933548, 0.01673400215804577, -0.007347671315073967, 0.025119205936789513, 0.0020432109013199806, 0.004395861178636551, -0.006698455195873976, -0.015884561464190483, -0.03392913192510605, 0.01209241058677435, -0.03201181814074516, 0.004796312190592289, -0.010272177867591381, 0.02183065377175808, 0.017595579847693443, -0.06062587350606918, 0.03667161241173744, -0.00024459371343255043, 0.012462523765861988, 0.0022009643726050854, -0.008555091917514801, -0.04834537208080292, 0.01493803970515728, -0.015678267925977707, 0.03223024681210518, -0.016879621893167496, -0.02764326147735119, 0.0109031917527318, 0.05844159424304962, 0.011333979666233063, -0.02249807119369507, -0.003564621554687619, -0.018117379397153854, 0.019112439826130867, -0.03621048852801323, 0.011534205637872219, -0.018699852749705315, 0.030871139839291573, -0.04315164312720299, 0.017559174448251724, -0.030774060636758804, 0.0037951844278723, -0.01205600518733263, -0.07256659865379333, 0.02130885235965252, -0.026793820783495903, -0.006564971525222063, 0.017061645165085793, -0.00942880380898714, -0.004213837906718254, 0.02754618227481842, -0.006382948253303766, 0.03608914092183113, -0.04094309359788895, -0.0005483449785970151, -0.0530051663517952, -0.0059157549403607845, -0.0424235500395298, 0.023905718699097633, -0.029487764462828636, 0.0365988053381443, 0.022801443934440613, 0.023832907900214195, 0.002740966621786356, -0.014464779756963253, -0.04065185412764549, 0.028589783236384392, 0.07208120077848434, -0.05683979019522667, -0.021587954834103584, 0.027837419882416725, 0.03691431134939194, 0.04091882333159447, 0.009453073143959045, -0.01956143043935299, 0.011467463336884975, -0.05499528720974922, -0.024585271254181862, 0.03227878734469414, -0.011170159094035625, -0.020544355735182762, -0.010842517018318176, -0.06426633894443512, -0.022813579067587852, 0.013760956935584545, -0.03045855462551117, 0.025992916896939278, 0.0015593323623761535, 0.01672186702489853, 0.02754618227481842, 0.018529964610934258, 0.028395624831318855, 0.04288467392325401, 0.0061705876141786575, 0.03965679556131363, -0.028492704033851624, -0.02866259217262268, -0.02868686243891716, 0.015823885798454285, -0.0123897148296237, -0.0034099018666893244, -0.0530051663517952, -0.027667531743645668, -0.004896425176411867, -0.01495017483830452, -0.016406361013650894, -0.02764326147735119, -0.050772346556186676, -0.04239927977323532, -0.01230477076023817, 0.027157867327332497, 0.0023602345027029514, -0.0078087965957820415, -0.02693943865597248, -0.05329640209674835, 0.014173542149364948, -0.0292936060577631, -0.02934214472770691, -0.0402878075838089, 0.008482282981276512, 0.0303614754229784, 0.007954414933919907, 0.0012013533851131797, 0.04771435633301735, -0.02696370892226696, -0.03499700129032135, -0.005536539945751429, -0.016758272424340248, 0.007529694586992264, -0.015836020931601524, -0.005773170385509729, 0.02992461994290352, -0.018821202218532562, -0.04232646897435188, 0.011261170729994774, 0.02132098749279976, 0.0400451123714447, 0.010824315249919891, 0.020374467596411705, -0.018056705594062805, 0.005700360983610153, -0.019937612116336823, 0.029026638716459274, 0.004674963187426329, 0.008464080281555653, -0.011115551926195621, -0.014185677282512188, 0.03722981736063957, 0.00017434412438888103, -0.03266710415482521, 0.04116152226924896, 0.05130628123879433, -0.011886117048561573, -0.005205864552408457, 0.0063222735188901424, -0.02805584855377674, 0.02473088912665844, 0.0265025831758976, 0.03502127155661583, -0.013518258929252625, 0.011613082140684128, -0.009859591722488403, 0.05033549293875694, -0.04065185412764549, -0.015666132792830467, 0.03429317846894264, -0.006904747802764177, 0.028298545628786087, -0.0013234606012701988, -0.021357392892241478, -0.010721168480813503, 0.0009154251893050969, -0.004687098320573568, -0.005039009731262922, -0.036962851881980896, -0.008275989443063736, 0.012838705442845821, 0.0057428330183029175, -0.005418224725872278, -0.007189917843788862, -0.014719611965119839, 0.01519287284463644, -0.01323915645480156, -0.0035160821862518787, -0.024488192051649094, 0.03431744873523712, -0.041064441204071045, -0.031186647713184357, -0.01237757969647646, 0.03781229257583618, -0.08072123676538467, -0.03230305761098862, 0.0005070105544291437, 0.019173113629221916, -0.0240027979016304, -0.0017823107773438096, 0.03849184513092041, 0.005700360983610153, -0.007614638656377792, -0.034220367670059204, -0.003962039016187191, 0.0013242190470919013, -0.03271564096212387, -0.008700710721313953, -0.01548410952091217, 0.0062494645826518536, -0.021138964220881462, -0.017340747639536858, -0.015569053590297699, -0.024318303912878036, -0.019197383895516396, -0.008263855241239071, 0.0026302356272935867, -0.02179424837231636, -0.041064441204071045, -0.015241412445902824, -0.014476914890110493, -0.005612383130937815, 0.01953716017305851, 0.0065467688255012035, -0.032545752823352814, 0.010223638266324997, -0.002977596828714013, -0.00864003598690033, -0.013044998049736023, 0.007651043124496937, 0.021369528025388718, 0.01674613729119301, 0.019270192831754684, 0.012802300974726677, -0.00588845182210207, 0.02592010796070099, -0.00950768031179905, 0.04458355903625488, 0.015593323856592178, 0.007420480716973543, 0.0424235500395298, 0.014040058478713036, 0.023929987102746964, -0.0402878075838089, 0.015836020931601524, -0.017377151176333427, 0.004808447323739529, 0.04244781658053398, 0.005211932118982077, 0.04725323244929314, -0.03786083310842514, 0.014853095635771751, -0.011661621741950512, -0.01293578464537859, -0.013651742599904537, -0.006746994331479073, 0.022036945447325706, -0.007814864628016949, -0.010508808307349682, -0.028953829780220985, 0.0038133866619318724, 0.007244524545967579, -0.026284154504537582, -0.034220367670059204, 0.007123176008462906, -0.01462253276258707, -0.0019734352827072144, 0.01730434224009514, -0.01354252826422453, 0.06460611522197723, -0.01029038056731224, -0.0292936060577631, -0.026065727695822716, 0.027157867327332497, 0.026187075302004814, -0.02516774646937847, -0.030215857550501823, -0.030798330903053284, 0.014040058478713036, 0.011940724216401577, 0.011000270955264568, 0.03218170627951622, 0.022231103852391243, 0.021430201828479767, -0.019185248762369156, 0.010387458838522434, 0.004847885575145483, -0.015435569919645786, 0.006868343334645033, 0.02128458395600319, 0.0015001748688519, 0.015993773937225342, -0.011400721967220306, -0.07751762866973877, -0.014234216883778572, -0.004316984210163355, 0.028881018981337547, -0.019270192831754684, 0.017656253650784492, -0.008506552316248417, -0.04176826402544975, 0.008694643154740334, -0.035263966768980026, 0.006771264132112265, -0.010272177867591381, 0.012274433858692646, 0.023226164281368256, 0.0036283298395574093, -0.001375033869408071, 0.006255531683564186, -0.014367700554430485, 0.05096650496125221, -0.02127244882285595, 0.011121619492769241, 0.017365016043186188, -0.04773862659931183, -0.024427518248558044, 0.039826683700084686, -0.03312822803854942, -0.0001786102948244661, 0.021357392892241478, -0.013566798530519009, -0.018736258149147034, 0.0021630427800118923, -0.041574105620384216, 0.038176339119672775, -0.051888756453990936, -0.006134183146059513, 0.0015851189382374287, -0.02754618227481842, -0.000945762381888926, -0.01899109035730362, 0.0011126169702038169, -0.02244953252375126, 0.045724235475063324, 0.05557776242494583, 0.022558746859431267, 0.01944008097052574, -0.02126031368970871, 0.013384775258600712, -0.007626773323863745, 0.008743182756006718, -0.002322313142940402, 0.0024315270129591227, 0.0011846679262816906, -0.04116152226924896, 0.021405931562185287, -0.0006257048808038235, -0.005909687839448452, 0.017911085858941078, 0.015314221382141113, -0.007183850277215242, -0.015920965000987053, 0.05630585178732872, 0.002049278235062957, -0.03317676857113838, -0.005494067911058664, 0.03235159441828728, -0.021017616614699364, -0.03235159441828728, -0.02064143493771553, 0.0057155294343829155, 0.03749678656458855, -0.047423120588064194, -0.0010413245763629675, 0.022740770131349564, -0.019233789294958115, 0.03152642399072647, 0.019876936450600624, -0.0390985906124115, -0.03436598554253578, -0.0059976656921207905, -0.06635353714227676, -0.0006025727489031851, 0.0083487993106246, -0.0333951972424984, -0.02752191387116909, 0.029026638716459274, 0.019427945837378502, 0.017413556575775146, -0.035361047834157944, -0.01789895072579384, 0.013639607466757298, -0.02706078812479973, -0.03405047953128815, -0.0007724611205048859, 0.011006338521838188, -0.028589783236384392, -0.04773862659931183, 0.017668388783931732, 0.00235871784389019, 0.05795619636774063, 0.0017443893011659384, 0.006243397016078234, 0.052034374326467514, 0.003297654213383794, -0.011182294227182865, -0.08717699348926544, -0.019270192831754684, -0.015241412445902824, -0.03278845176100731, 0.022510206326842308, 0.03436598554253578, 0.01526568178087473, -0.011176226660609245, -0.020993346348404884, -0.028881018981337547, 0.017680523917078972, -0.014440509490668774, -0.016418496146798134, 0.0247794296592474, -0.019779857248067856, 0.029512032866477966, 0.011309710331261158, 0.026187075302004814, -0.0028183264657855034, -0.035263966768980026, -0.01782614178955555, -0.019112439826130867, -0.01895468682050705, 0.017619848251342773, 0.0015820852713659406, 0.008676440455019474, -0.003925634548068047, -0.018129514530301094, 0.0074326153844594955, -0.007378008216619492, -0.01177083607763052, 0.0005760276690125465, 0.020301658660173416, 0.024949317798018456, -0.003127765841782093, -0.046792104840278625, -0.012353310361504555, -0.013833765871822834, 0.0014038542285561562, 0.0036161949392408133, 0.004232040140777826, 0.004659794736653566, 0.03567655384540558, -0.021405931562185287, -0.015047254040837288, -0.021066155284643173, 0.02348099648952484, -0.01037532463669777, 0.02118750475347042, -0.024403247982263565, -0.0008426159038208425, 0.0014053710037842393, 0.01237757969647646, -0.0160423144698143, -0.012013533152639866, -0.005961260758340359, -0.01208634302020073, 0.009525883011519909, 0.005251370370388031, 0.007911942899227142, -0.016418496146798134, -0.015156468376517296, -0.0018369178287684917, 0.041015900671482086, 0.0098049845546484, -0.00047477727639488876, -0.011837577447295189, -0.018602775409817696, 0.0030595071148127317, -0.00857936218380928, 0.03373497352004051, 0.018627043813467026, -0.029439223930239677, 0.02288638800382614, 0.02817719615995884, -0.002293492667376995, -0.01003554742783308, -0.008166776038706303, -0.0015138265443965793, -0.01377309113740921, 0.03288552910089493, 0.0609656497836113, 0.019694913178682327, 0.009665433317422867, 0.021114695817232132, 0.036501724272966385, -0.008397338911890984, 0.02701224759221077, -0.038855891674757004, 0.004180466756224632, -0.003106529824435711, 0.010156896896660328, 0.002343549160286784, -0.026842359453439713, -0.008834194391965866, -0.0038892298471182585, -0.012547467835247517, 0.001343179726973176, 0.06776118278503418, -0.0015434053493663669, -0.0025968647096306086, -0.030725521966814995, -0.007911942899227142, -0.0045354124158620834, -0.019148843362927437, -0.015775347128510475, -0.0023936054203659296, 0.047374580055475235, 0.012195556424558163, -0.002483100164681673, -0.002495235064998269, 0.06276161223649979, -0.004192601889371872, 0.009841389954090118, 0.028395624831318855, 0.002953327028080821, -0.012183422222733498, -0.03213316947221756, 0.01613939367234707, -0.0021357391960918903, 0.05504382774233818, 0.005849013105034828, -0.020240982994437218, 0.017656253650784492, 0.00864610355347395, 0.016321416944265366, 0.014125002548098564, 0.018250862136483192, 0.00546069722622633, 0.00533631443977356, -0.025653140619397163, 0.01598164066672325, -0.018481425940990448, 0.008991947397589684, 0.023820774629712105, -0.0400451123714447, -0.00415619695559144, -0.0034129356499761343, 0.008263855241239071, 0.012219826690852642, 0.010241840966045856, 0.02635696344077587, 0.04142848774790764, 0.025143476203083992, -0.005988564342260361, 0.024294033646583557, -0.0057974401861429214, 0.024973588064312935, -0.014756016433238983, 0.020423006266355515, -0.01946435123682022, 0.02759472280740738, 0.023311108350753784, -0.005078448448330164, 0.02868686243891716, 0.004896425176411867, 0.0025998984929174185, 0.021466607227921486, 0.041671186685562134, 0.013603202998638153, -0.017571309581398964, 0.071061871945858, -0.014161407947540283, -0.017704792320728302, 0.001233207411132753, 0.0062494645826518536, 0.015411300584673882, 0.03827342018485069, 0.016163663938641548, 0.007323401514440775, -0.007086771074682474, 0.01208634302020073, -0.015168602578341961, 0.0055122701451182365, 0.011176226660609245, 0.02181851863861084, -0.0012324489653110504, -0.05586899816989899, 0.009962738491594791, 0.008367001079022884, -0.026842359453439713, 0.01837221160531044, -0.04878222569823265, 0.02243739739060402, -0.01146139670163393, -0.002046244451776147, 0.0212117750197649, -0.03276418149471283, 0.02300773747265339, 0.04099163040518761, 0.01789895072579384, 0.023347513750195503, 0.04009364917874336, 0.0006636263569816947, -0.005927890073508024, -0.0007371940882876515, 0.06421779841184616, 0.010630156844854355, -0.020447276532649994, 0.028589783236384392, 0.015678267925977707, 0.007378008216619492, -0.0009139082976616919, -0.0009541051113046706, -0.01777760311961174, 0.011964993551373482, 0.0014463262632489204, -0.032327327877283096, -0.01831153780221939, 0.03487564995884895, -0.04060331732034683, 0.004969234112650156, 0.0005248336819931865, -0.07232389599084854, 0.03230305761098862, 0.05732518434524536, 0.03402620926499367, 0.043904002755880356, 0.015690403059124947, 2.230258542113006e-05, -0.0010087121045216918, 0.039414096623659134, 0.03837049752473831, 0.03951117768883705, -0.019840532913804054, 0.04232646897435188, 0.03276418149471283, 0.009301387704908848, 0.021466607227921486, -0.03832195699214935, -0.051451899111270905, 0.020993346348404884, 0.026211345568299294, -0.015241412445902824, -0.011849712580442429, -0.015544784255325794, 0.06213059648871422, 0.00532721308991313, 0.020884132012724876, 0.005151257384568453, 0.03045855462551117, 0.018711987882852554, -0.02229177951812744, 0.0240027979016304, 0.06489735096693039, -0.050917964428663254, 0.01260814256966114, 0.006449690088629723, -0.008919138461351395, -0.017462095245718956, -0.018165918067097664, 0.006807669065892696, 0.02761899121105671, 0.011054878123104572, -0.022012677043676376, 0.003579790238291025, 0.004113724920898676, -0.006492162123322487, -0.0663049966096878, -0.021357392892241478, 0.012996458448469639, 0.0052847410552203655, 0.012438254430890083, 0.021381663158535957, -0.0015062422025948763, 0.027206405997276306, 0.02348099648952484, 0.0377880223095417, -0.002310178242623806, -0.016515575349330902, -0.03497273102402687, -0.04429231956601143, -0.0019719183910638094, 0.023905718699097633, 0.03201181814074516, 0.007626773323863745, 0.015241412445902824, -0.0025422577746212482, -0.008761384524405003, -0.010775775648653507, 0.007839133962988853, 0.012043870985507965, -0.015071523375809193, -0.008900935761630535, 0.03686577081680298, -0.0010754539398476481, 0.019355136901140213, 0.004887323826551437, -0.011018472723662853, 0.012802300974726677, 0.030337205156683922, 0.042860403656959534, 0.010381392203271389, -0.005933957640081644, 0.04543299973011017, 0.004107657819986343, -0.002334448043256998, 0.022570880129933357, -0.015338490717113018, -0.004235073924064636, -0.03679296374320984, 0.01846929080784321, 0.037593863904476166, -0.002522538648918271, 0.03293406963348389, 0.021357392892241478, -0.02810438722372055, -0.003555520437657833, -0.0063465433195233345, 0.034171827137470245, 0.007129243109375238, -0.007189917843788862, 0.018117379397153854, -0.027958769351243973, -0.011121619492769241, -0.021648630499839783, 0.009525883011519909, 0.015653997659683228, -0.03509407863020897, -0.023893583565950394, 0.005160358734428883, 0.016527710482478142, -0.004071252886205912, 0.0033037217799574137, -0.002070514252409339, -0.04363703727722168, 0.00019434772548265755, -0.0006033311947248876, 0.02359021082520485, -0.0030049001798033714, -0.007614638656377792, 0.011570610105991364, 0.03960825502872467, 0.018699852749705315, -0.0022677062079310417, 0.004122826270759106, 0.010405661538243294, -0.03664734587073326, 0.019355136901140213, -0.002346582943573594, 0.05130628123879433, 0.004996537696570158, -0.031138107180595398, 0.06077149137854576, 0.010806112550199032, -0.020920537412166595, 0.010205435566604137, 0.004541479516774416, -0.03383205085992813, 0.022570880129933357, -0.04523884132504463, 0.005230134353041649, -0.0048539526760578156, -0.019427945837378502, -0.02344459295272827, 0.020459411665797234, 0.0019400642486289144, -0.023687290027737617, 0.01786254718899727, -0.011406789533793926, 0.009871726855635643, -0.027885958552360535, 0.016491305083036423, -0.0007576717180199921, 0.017389286309480667, -0.015022983774542809, -0.008761384524405003, -0.0005172493401914835, -0.014258486218750477, 0.009277117438614368, 0.02931787632405758, 0.01772906258702278, -0.013263426721096039, -0.011346114799380302, 0.02179424837231636, -0.025944378226995468, -0.027691802009940147, -0.021660765632987022, 0.021333122625947, 0.02122390829026699, -0.015120062977075577, -0.02070210874080658, -0.010478470474481583, 0.014222081750631332, -0.006558903958648443, 0.028347084298729897, 0.00865217112004757, -0.015120062977075577, 0.013202751986682415, -0.025677410885691643, 0.002452763030305505, 0.012972189113497734, -0.029584843665361404, 0.002235851949080825, -0.003822488011792302, 0.00288203451782465, -0.006898680701851845, -0.03043428435921669, 0.006771264132112265, -0.0026120333932340145, 0.02592010796070099, -0.0021569752134382725, -0.02703651785850525, -0.01144926156848669, -0.0013924777740612626, -0.0222796443849802, 0.0015608492540195584, -0.031356535851955414, 0.014464779756963253, 0.0005726147792302072, 0.028832480311393738, 0.010818247683346272, 9.774268255569041e-05, -0.014197812415659428, 0.013384775258600712, 0.0200832299888134, -0.021964136511087418, 0.017607714980840683, -0.002687876345589757, -0.0001861945929704234, -0.020313793793320656, 0.013578933663666248, -0.01152207050472498, 0.01778973825275898, -0.041015900671482086, -0.014513319358229637, -0.031186647713184357, -0.0004649176844395697, 0.007390143349766731, 0.02531336434185505, 0.004028780851513147, -0.04744739085435867, 0.014513319358229637, -0.016843216493725777, 0.017122318968176842, 0.022121889516711235, -0.011297575198113918, -0.030822601169347763, -0.019731318578124046, -0.005054178647696972, -0.00013026037777308375, -0.011018472723662853, -0.03142934665083885, 0.010241840966045856, 0.005093616899102926, -0.009082959033548832, -0.029973158612847328, -0.015593323856592178, 0.015326356515288353, -0.001320426817983389, -0.015641862526535988, 0.0019597834907472134, -0.012019600719213486, -0.020787052810192108, 0.004838784225285053, -0.004817548207938671, 0.03332238644361496, 0.001475905068218708, 0.028371354565024376, -0.017668388783931732, 0.026089996099472046, -0.04526311159133911, 0.022765038534998894, 0.02873540110886097, -0.024585271254181862, -0.03276418149471283, 0.016539843752980232, 0.01789895072579384, 0.04077320545911789, -0.041719723492860794, 0.022049080580472946, 0.01954929530620575, 0.02183065377175808, 0.004025747068226337, 0.0030215857550501823, 0.02987607941031456, -0.03781229257583618, -0.016236472874879837, 0.030725521966814995, 0.011479598470032215, 0.02407560683786869, 0.03960825502872467, 0.0015836021630093455, -0.02812865749001503, -0.007013962138444185, 0.01728007197380066, 0.010169031098484993, 0.008282057009637356, 0.020459411665797234, -0.024427518248558044, 0.0245974063873291, 0.02181851863861084, 0.028225736692547798, -0.03164777159690857, 0.01493803970515728, 0.0015942201716825366, -0.03230305761098862, -0.0461125522851944, 0.049607399851083755, 0.017559174448251724, -0.026575392112135887, 0.018141649663448334, -0.024900779128074646, -0.00747508741915226, 0.030628442764282227, 0.03972960263490677, 0.006995759438723326, 0.013190616853535175, -0.04421951249241829, 0.011242968030273914, -0.015156468376517296, 0.004929795861244202, 0.004016646184027195, 0.016952430829405785, -0.006461824756115675, 0.016551978886127472, -0.0005009431042708457, 0.006674185395240784, -0.007729920092970133, 0.00803935993462801, -0.010235773399472237, 0.022303912788629532, -0.025701681151986122, -0.026696741580963135, -0.003203609026968479, -0.00533631443977356, -0.006892613135278225, -0.016479169949889183, 0.008512619882822037, 0.004125860054045916, 0.007790594361722469, 0.013736686669290066, -0.008203180506825447, -0.01204993762075901, -0.01713445410132408, -0.0303614754229784, 0.02582302875816822, 0.02013177052140236, 0.011600947007536888, -0.019719183444976807, 0.02524055540561676, -0.0008160708239302039, 0.020520085468888283, -0.0367201529443264, 0.0023374815937131643, -0.03276418149471283, 0.02350526675581932, 0.027837419882416725, -0.009695771150290966, -0.008925206027925014, 0.014828826300799847, -0.019330866634845734, 0.0026605729945003986, -0.017413556575775146, 0.021357392892241478, -0.0017110183835029602, -0.007790594361722469, 0.03164777159690857, 0.00415619695559144, -0.03715701028704643, -0.03487564995884895, 0.02229177951812744, 0.01828726753592491, -0.014234216883778572, -0.0038315891288220882, 9.224406676366925e-05, -0.020216714590787888, -0.007111040875315666, 0.03514261916279793, -0.01496230997145176, -0.03611341118812561, -0.0005013223271816969, 0.017425691708922386, 0.03849184513092041, -0.01900322549045086, -0.009920266456902027, -0.03725408762693405, 0.028614051640033722, 0.012765896506607533, -0.011103416793048382, -0.018117379397153854, -0.015229277312755585, -0.007572166621685028, -0.01526568178087473, -0.005591147113591433, 0.014125002548098564, -0.032448675483465195, -0.039414096623659134, 0.0028501804918050766, 0.013676011934876442, 0.008530822582542896, -0.00916790310293436, -0.03237586468458176, -0.01843288540840149, -0.009920266456902027, 0.002909338101744652, -0.009307454340159893, 0.007104973774403334, -0.00417743343859911, -0.0034887786023318768, 0.0042502423748373985, -0.022170430049300194, 0.031235186383128166, 0.010872854851186275, -0.00128629757091403, 0.04421951249241829, -0.03616194799542427, -0.005773170385509729, -0.008973745629191399, 0.015933100134134293, -0.007001827005296946, -0.003294620430096984, -0.0002408015716355294, -0.014828826300799847, -0.014792421832680702, 0.023092681542038918, -0.0491948127746582, -0.0034918123856186867, -0.005293842405080795, 0.01401578914374113, 0.003980241250246763, -0.002948776353150606, -0.02349313162267208, -0.008063629269599915, 0.024378977715969086, -0.002687876345589757, 0.007863403297960758, 0.013008593581616879, 0.010120491497218609, 0.006152385380119085, 0.04353995621204376, 0.0017550073098391294, 0.009586556814610958, 0.012644547037780285, 0.020301658660173416, 0.02803157828748226, 0.003537318203598261, 0.025968648493289948, -0.03800645098090172, -0.008136438205838203, 0.0028304613661020994, -0.0026272020768374205, -0.001905176555737853, -0.02359021082520485, 0.00018022196309175342, -0.04237500950694084, 0.00037712938501499593, 0.022716499865055084, -0.03150215372443199, 0.007553964387625456, 0.012104544788599014, 0.01462253276258707, -0.012875109910964966, -0.03798218071460724, 0.002918439218774438, 0.007845201529562473, -0.003394733415916562, -0.0028987200930714607, 0.018190188333392143, -0.0046810307539999485, 0.04402535408735275, -0.013724551536142826, -0.012140949256718159, -0.03278845176100731, 0.015289952047169209, 0.0251920148730278, -0.010320717468857765, 0.02003469131886959, -0.02294706180691719, 0.00803329236805439, 0.027133597061038017, 0.0007334019173868, 0.009629028849303722, -0.024973588064312935, -0.038224879652261734, 0.0008706778171472251, 0.014282756485044956, -0.011121619492769241, 0.011801172979176044, -0.01889401115477085, 0.005154291167855263, 0.046840645372867584, 0.000259762309724465, 0.04725323244929314, 0.026526853442192078, 0.03676869347691536, 0.01493803970515728, -0.018796931952238083, -0.013372640125453472, 0.023784369230270386, 0.004338220227509737, 0.00979891698807478, -0.046864915639162064, -0.019731318578124046, 0.006419352721422911, 0.016467034816741943, 0.04179253429174423, -0.023966392502188683, -0.002894169418141246, -0.0457485057413578, 0.04353995621204376, 0.025677410885691643, -0.0083487993106246, 0.009641163982450962, 0.01900322549045086, -0.007262727245688438, -0.009993075393140316, 0.0207385141402483, 0.0055153039284050465, 0.006100811995565891, -0.017498500645160675, -0.006819803733378649, -0.0011376452166587114, -0.006880478467792273, -0.012875109910964966, -0.0459912046790123, 0.015569053590297699, -0.039365559816360474, -0.019694913178682327, 0.03946263715624809, -0.005242269020527601, -0.0177654679864645, 0.0034372054506093264, -0.023226164281368256, 0.008700710721313953, -0.011346114799380302, 0.010102289728820324, 0.014974445104598999, 0.006382948253303766]], "input": ["FRAGILE ITEMS:Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.", "PERISHABLE ITEMS:Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.", "VALUABLE ITEMS:Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.", "INTERNATIONAL CONVENTIONS:International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.", "CONTRACT OF CARRIAGE:The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.", "MISSING ITEMS:Missing items refer to belongings that are not present in the baggage upon receipt, which may lead to a claim against the airline.", "CLAIM:A claim is a formal request made by a passenger to the airline for compensation due to lost, damaged, or delayed baggage.", "21 DAYS:21 days is the time frame within which passengers must contact the airline regarding delayed baggage outside their country of residence.", "7 DAYS:7 days is the time frame within which passengers must contact the airline regarding damaged or missing items from their baggage.", "AFTER 21 DAYS:After 21 days refers to the period after which passengers must contact the airline regarding lost baggage.", "DAMAGE:", "CARRY-ON BAGGAGE:Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.", "PERSONAL BAGS:Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.", "SUN DOR:Sun Dor is an airline that operates flights with specific carry-on baggage policies.", "MATMID FREQUENT FLYER CLUB:The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.", "TROLLEY:A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-a69e9762202bf8f960b2f5d4edd2bf07 b/cache/text_embedding/embedding-a69e9762202bf8f960b2f5d4edd2bf07 deleted file mode 100644 index db8782e78378ec6866e8f86001aeaa312236f0bf..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-a69e9762202bf8f960b2f5d4edd2bf07 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.017803194001317024, -0.01783686876296997, 0.007773462682962418, -0.004268388729542494, -0.023011693730950356, 0.02619965560734272, -0.006925958674401045, 0.0006643924862146378, 0.023842360824346542, 0.03987196832895279, -0.03288988396525383, 0.04831333085894585, -0.04413755238056183, 0.01825220137834549, 0.006881057750433683, 0.045282524079084396, 0.026356808841228485, 0.014862187206745148, -0.03392260521650314, -0.00033991358941420913, -0.002778241178020835, 0.03280008211731911, -0.004206649959087372, -0.0028848806396126747, 0.00084750383393839, 0.00031044738716445863, 0.00983890239149332, -0.01158442348241806, 0.030016228556632996, -0.0020612303633242846, 0.062052998691797256, -0.02023906633257866, 0.033945053815841675, -0.01725315861403942, 0.011157865636050701, -0.007229039445519447, -0.02120443433523178, 0.018802238628268242, 0.042745623737573624, 0.023258648812770844, -0.07413133233785629, 0.04389059543609619, -0.007891327142715454, -0.026603763923048973, -0.047729622572660446, 0.07107806950807571, 0.029028410091996193, -0.01664699614048004, -0.013795791193842888, -1.3275133824208751e-05, -0.012965125031769276, -0.005463873967528343, 0.040388330817222595, 0.026446610689163208, 0.03832288831472397, 0.03187961503863335, 0.002275912556797266, 0.02983662486076355, -0.0028554145246744156, -0.013503935188055038, -0.0028189325239509344, -0.023034144192934036, 0.010282298550009727, -0.008985785767436028, 0.008935272693634033, -0.014850961975753307, 0.012291612103581429, 0.019284922629594803, -0.03839024156332016, 0.005489130970090628, 0.022888217121362686, 0.027883438393473625, 0.028826355934143066, -0.023640306666493416, 0.014401952736079693, 0.016613321378827095, -0.007969903759658337, -0.007043823599815369, 0.00804848037660122, 0.022607585415244102, -0.052534013986587524, 0.04934605211019516, -0.01660209521651268, 0.06304081529378891, 0.008037255145609379, -0.029971327632665634, -0.027793636545538902, -0.015793880447745323, -0.02346070297062397, 0.007032598368823528, -0.018409354612231255, -0.02007068693637848, -0.01386314257979393, 0.05859563127160072, -0.01735418476164341, -0.009232740849256516, 0.04391304776072502, -0.014738709665834904, -0.035808440297842026, 0.033989954739809036, -0.014850961975753307, 0.012269161641597748, 0.04606828838586807, 0.06672269105911255, 0.023258648812770844, -0.07619676738977432, -0.05356673523783684, 0.0037015152629464865, 0.003011164255440235, -0.008037255145609379, 0.011197153478860855, 0.02500978298485279, -0.06735129654407501, 0.0856708511710167, 0.0059886532835662365, 0.0012944077607244253, -0.017174581065773964, 0.04867253825068474, 0.009990442544221878, 0.0005370564758777618, 0.01415499858558178, -0.010125145316123962, 0.011730351485311985, -0.0927651897072792, -0.003968114033341408, 0.02438117004930973, -0.047101009637117386, 0.03560638800263405, -0.04485596716403961, -0.010226172395050526, 0.035179827362298965, 0.0034685919526964426, 0.027187474071979523, -0.025234287604689598, -0.034012407064437866, 0.014839736744761467, -0.00676319282501936, 0.014895862899720669, -0.013739665038883686, -0.022641262039542198, 0.022326955571770668, 0.005056960042566061, 0.027501780539751053, 0.02685071900486946, -0.03587579354643822, -0.030061129480600357, 0.023213747888803482, 0.061963196843862534, 0.001814275630749762, -0.003423691028729081, -0.025122035294771194, 0.0026379257906228304, -0.010293523781001568, -0.027344627305865288, 0.011797702871263027, -0.0029129437170922756, 0.029005959630012512, 0.04786432534456253, -0.02438117004930973, -0.01135430671274662, -0.019105318933725357, -0.01415499858558178, 0.009406731463968754, -0.015906132757663727, 0.03477572277188301, -0.002041586209088564, -0.041600652039051056, 0.01204465702176094, -0.028871256858110428, -0.039759717881679535, -0.01999211125075817, -0.013200854882597923, 0.0008685511420480907, -0.06717169284820557, -0.023011693730950356, -0.016231663525104523, 0.02712012268602848, 0.005893238820135593, 0.011337468400597572, -0.04997466504573822, 0.03502267599105835, 0.012931449338793755, -0.04332933574914932, -0.003451754106208682, -0.02408931404352188, 0.019711479544639587, 0.0349104218184948, 0.01536732167005539, -0.002991520334035158, 0.02462812513113022, -0.006824931595474482, 0.0003998983302153647, 0.0207442007958889, 0.03782897815108299, -0.012190585024654865, 0.03839024156332016, -0.028265096247196198, 0.0038530556485056877, -0.023640306666493416, -0.013447809033095837, -0.009653686545789242, -0.05114208534359932, 0.06811461597681046, 0.02373010851442814, -0.0395127609372139, -0.019588002935051918, 0.005461067892611027, -0.0017707779770717025, 0.010753757320344448, 0.021372811868786812, -0.019767606630921364, -0.025705745443701744, -0.0518605001270771, 0.014918312430381775, -0.0426558218896389, -0.051591094583272934, 0.0203064177185297, -0.0028273514471948147, 0.012908998876810074, 0.037918779999017715, 0.0365942046046257, -0.024852629750967026, 0.011820153333246708, 0.017443986609578133, -0.04079243540763855, -0.03996177017688751, -0.004094397649168968, -0.014053971506655216, 0.004675302654504776, -0.05599138140678406, -0.022001424804329872, 0.03778408095240593, 0.006948409136384726, -0.054015740752220154, -0.04133124649524689, 0.0216197669506073, -0.009373055770993233, -0.036100298166275024, -0.0014789223205298185, -0.01585000567138195, -0.014738709665834904, 0.04041077941656113, -0.04633769392967224, 0.014256024733185768, -0.011079289019107819, -0.008149507455527782, 0.006723904516547918, 0.00491383858025074, 0.04907664656639099, 0.008407686837017536, 0.043127283453941345, -0.010001667775213718, 0.009148551151156425, -0.01812872476875782, 0.036728907376527786, 0.0008573259110562503, 0.02893860824406147, 0.037290170788764954, 0.0755232572555542, -0.017443986609578133, 0.01802769862115383, -0.03441651538014412, 0.026109853759407997, 0.007442318834364414, -0.017174581065773964, -0.015120366588234901, 0.031026499345898628, -0.014132548123598099, -0.029791725799441338, 0.027838537469506264, -0.05644039064645767, 0.018095050007104874, -0.008688317611813545, -0.0045686629600822926, -0.0286692027002573, 0.03740242123603821, 0.01730928383767605, -0.03324909135699272, -0.03865964710712433, -0.01718580722808838, -0.034214459359645844, -0.01904919184744358, 0.009979217313230038, -0.0409046895802021, 0.017926670610904694, -0.008452587760984898, -0.04907664656639099, 0.03187961503863335, 0.044362057000398636, -0.026760917156934738, 0.009996055625379086, -0.007408643141388893, -0.03446141630411148, -0.0547790564596653, 0.012213035486638546, 0.036122746765613556, -2.088284873025259e-06, 0.00047531776363030076, 0.031475506722927094, 0.033091939985752106, 0.00010506100807106122, 0.04133124649524689, 0.023864811286330223, 0.0018760142847895622, -0.01938594877719879, 0.017286833375692368, 0.012504891492426395, -0.009300092235207558, -0.050737980753183365, -0.010922135785222054, -0.035471685230731964, 0.03500022366642952, 0.00026344179059378803, -0.012751845642924309, -0.0674860030412674, 0.026311907917261124, -0.022607585415244102, 0.08055215328931808, -0.01187627948820591, 0.027838537469506264, 0.03872699663043022, 0.02310149557888508, 0.006746354978531599, -0.03143060579895973, 0.07938472926616669, -0.001227758009918034, -0.015154042281210423, 0.047370415180921555, -0.013245755806565285, -0.038210637867450714, -0.008671480230987072, 0.01950942724943161, 0.018768562003970146, -0.027905888855457306, 0.019722705706954002, -0.007694886066019535, 0.01433460135012865, 0.06236730515956879, -0.016052059829235077, 0.010978261940181255, -0.0013891205890104175, -0.018600184470415115, 0.0065330760553479195, 0.006347860209643841, 0.03107140026986599, 0.02561594359576702, 0.0190267413854599, 0.04103939235210419, 0.0006745653809048235, 0.0077397869899868965, 0.003774479031562805, -0.013481484726071358, 0.010731306858360767, -0.025189386680722237, -0.03594314306974411, -0.037020765244960785, -0.002688439330086112, -0.03266537934541702, -0.021428938955068588, -0.0037043215706944466, -0.018936939537525177, -0.017825644463300705, 0.028399797156453133, 0.08998133987188339, 0.009844514541327953, -0.026985419914126396, -0.005618221126496792, -0.00632540974766016, 0.005938139744102955, -0.029387617483735085, -0.02707522176206112, -0.0051355366595089436, -0.01187627948820591, -0.07790300250053406, -0.022697387263178825, -0.004344158805906773, 0.012819197028875351, 0.04454166069626808, -0.019138993695378304, -0.01706232875585556, 0.06640838086605072, 0.03874944895505905, 0.00315989856608212, 0.017443986609578133, 0.05271361768245697, 0.01764604076743126, -0.02435871958732605, 0.021417712792754173, -0.005954977590590715, -0.03567373752593994, -0.01827465184032917, 0.03203676640987396, -0.027546681463718414, -0.01416622381657362, 0.006892282981425524, 0.019733930006623268, 0.028512049466371536, 0.003213218180462718, 0.023662757128477097, -0.06407353281974792, -0.024111764505505562, -0.02132791094481945, -0.013649863190948963, -0.023977063596248627, 0.01802769862115383, -0.05379123613238335, 0.009822064079344273, -0.0044536045752465725, 0.012392639182507992, 0.01158442348241806, 0.04135369881987572, 0.010181271471083164, 0.034304261207580566, 0.02806304208934307, -0.023617856204509735, -0.008682705461978912, -0.010849172249436378, 0.021361587569117546, -0.006252445746213198, -0.029028410091996193, 0.028107943013310432, 0.021148307248950005, -0.01508669089525938, 0.047550018876791, -0.0009913269896060228, -0.004021433647722006, -0.00024607780505903065, -0.004807198885828257, -0.025054683908820152, -0.021967748180031776, 0.0006503610056824982, 0.004360996652394533, 0.026087403297424316, 0.023909712210297585, 0.008918434381484985, -0.02808549255132675, 0.02954477071762085, -0.02222592942416668, 0.032126568257808685, -0.009154164232313633, -0.05608118325471878, -0.003889537649229169, 0.0231912974268198, 0.0032272497192025185, 0.02738952822983265, 0.009541434235870838, -0.02586289867758751, -0.005371266044676304, 0.05940384790301323, -0.03044278733432293, -0.023617856204509735, 0.0389290526509285, -0.040680184960365295, -0.013649863190948963, -0.03623500093817711, -0.02469547651708126, -0.017657265067100525, -0.04137614741921425, 0.020250290632247925, -0.05944874882698059, 0.01871243678033352, 0.04103939235210419, 0.05491375923156738, 0.030330535024404526, 0.015737753361463547, 0.022237153723835945, 0.031587760895490646, -0.009154164232313633, 0.0043722218833863735, -0.04844803363084793, 0.035179827362298965, 0.03205921873450279, 0.028826355934143066, -0.028287546709179878, 0.043419137597084045, -0.007229039445519447, 0.008127056993544102, -0.037379972636699677, 0.0010537671623751521, -0.0161418616771698, 0.020171714946627617, -0.014592781662940979, -0.05455455183982849, -0.06313061714172363, 0.01384069211781025, 0.023213747888803482, 0.031161202117800713, 0.010226172395050526, -0.004467636346817017, -0.017556238919496536, -0.034551218152046204, -0.007099949289113283, 0.06268160790205002, -0.008609740994870663, -0.01769094169139862, -0.025773096829652786, -0.018959389999508858, -0.004251550883054733, 0.032732732594013214, -0.025436341762542725, 0.03553903475403786, -0.029791725799441338, 0.04270072281360626, -0.05873033404350281, 0.040365878492593765, 0.015906132757663727, 0.0095863351598382, 0.01664699614048004, 0.002085084095597267, 0.01507546566426754, 0.0005275851581245661, 0.004240325652062893, 0.015951033681631088, 0.01934104785323143, 0.0039091818034648895, -0.021361587569117546, 0.01808382384479046, 0.027546681463718414, -0.007150462828576565, -0.012594693340361118, -0.0038783124182373285, 0.029679473489522934, -0.015591826289892197, -0.027569131925702095, -0.05787721648812294, 0.0028203355614095926, 0.019419625401496887, -0.03908620402216911, 0.016040833666920662, 0.003485429799184203, -0.012201810255646706, -0.030016228556632996, -0.0400964729487896, -0.006830544210970402, -0.02373010851442814, 0.02530163899064064, -0.010843559168279171, -0.007021373137831688, 0.020564597100019455, 0.0024990139063447714, -0.017298059538006783, -0.03201431781053543, 0.008665867149829865, 0.011472171172499657, 0.02197897434234619, 0.020418668165802956, 0.027187474071979523, 0.00425435695797205, 0.015176492743194103, 0.003911987878382206, -0.027187474071979523, -0.021103406324982643, 0.038502492010593414, -0.027187474071979523, -0.01783686876296997, 0.03131835535168648, 0.029477419331669807, 0.002636522753164172, -0.008688317611813545, 0.010029731318354607, 0.011494621634483337, -0.0032244434114545584, 0.0052253385074436665, 0.010866009630262852, -0.029185563325881958, 6.985066283959895e-05, -0.03230617195367813, -0.026603763923048973, 0.029028410091996193, -0.018308328464627266, -0.014177448116242886, 0.03297968581318855, -0.004526568576693535, -0.003889537649229169, 0.03693096339702606, 0.01508669089525938, 0.002771225292235613, -0.027793636545538902, 0.025391440838575363, 0.020542146638035774, 0.004237519111484289, 0.05230950936675072, -0.0012670463183894753, -0.03434916213154793, -0.03697586432099342, 0.011528297327458858, 0.003541555954143405, -0.040994491428136826, 0.004501312039792538, 0.04195985943078995, -0.005716441664844751, -0.028803905472159386, -0.0019994915928691626, 0.005752923432737589, 0.0005026792059652507, 0.050782881677150726, -0.019228795543313026, 0.02045234479010105, -0.04503557085990906, 0.04472126439213753, 0.015962257981300354, -0.005764148663729429, -0.01842058077454567, 0.013919268734753132, -0.02714257314801216, 0.0008026029681786895, 0.0034377225674688816, -0.011752801947295666, -0.004158942960202694, 0.030218282714486122, -0.0037800916470587254, 0.003246893873438239, -0.010136370547115803, 0.0052786581218242645, 0.007453543599694967, 1.4294611901277676e-05, -0.022989243268966675, -0.044025298207998276, -0.0065948148258030415, -0.007223426830023527, 0.010220559313893318, 0.007346904370933771, -0.002212770748883486, -0.022989243268966675, -0.009928704239428043, 0.03237352520227432, 0.0001588192826602608, -0.05585667863488197, 0.06465724855661392, -0.009328154847025871, -0.008441362529993057, 0.0074198683723807335, 0.011359918862581253, 0.0036678395699709654, -0.02021661587059498, 0.007397417910397053, -0.006056004203855991, 0.009204677306115627, 0.00011488307791296393, 0.010647118091583252, 0.005208500660955906, 0.005943752359598875, 0.02256268449127674, -0.024156665429472923, 0.0211819838732481, 0.018061373382806778, -0.01861140877008438, -0.008104606531560421, -0.01262836903333664, 0.01025423500686884, 0.0547790564596653, -0.009563884697854519, 0.009350605309009552, -0.003566812491044402, -0.0015280325897037983, -0.019206345081329346, -0.01308860257267952, 0.028399797156453133, -0.01087162271142006, -0.0045770821161568165, -0.03201431781053543, -0.02007068693637848, 0.006808093748986721, -0.009726650081574917, 0.03966991603374481, 0.005054153967648745, -0.0021384037099778652, 0.0013610575115308166, -0.0035555872600525618, -0.005096248351037502, -0.009114875458180904, 0.032710280269384384, 0.013986620120704174, 0.00234466721303761, -0.0014466497814282775, -0.015502024441957474, -0.03385525196790695, 0.046786703169345856, -0.04085978865623474, 0.04781942442059517, -0.05446474999189377, -0.01597348414361477, -0.01776951737701893, -0.001902674208395183, 0.018061373382806778, -0.01839813031256199, 0.010489964857697487, -0.03163266181945801, 0.03982706740498543, 0.021732019260525703, 0.01931859739124775, 0.00503450958058238, -0.019711479544639587, -0.002305378904566169, 0.008177570067346096, 0.039737265557050705, -0.01720825769007206, 0.0033759837970137596, -0.022012649103999138, 0.011764027178287506, 0.004038271494209766, 0.03288988396525383, -0.04835823178291321, -0.048537835478782654, -0.02743442915380001, -0.022753514349460602, -0.024134214967489243, 0.02314639650285244, 0.015737753361463547, -0.016175536438822746, -0.022989243268966675, 0.009518983773887157, -0.0036397764924913645, -0.03248577564954758, -0.025773096829652786, 0.02435871958732605, -0.015883682295680046, -0.000670706678647548, 0.04056793451309204, 0.009715424850583076, -0.01871243678033352, 0.026873169466853142, -0.03172246366739273, -0.0027122930623590946, 0.02316884696483612, 0.0005328470142558217, -0.06793501228094101, -0.0011919776443392038, -0.016007158905267715, -7.844497304176912e-05, 0.06833911687135696, -0.021462613716721535, -0.007341291755437851, 0.04943585395812988, -0.01904919184744358, 0.024179115891456604, -0.018499156460165977, 0.00315989856608212, 0.030083579942584038, 0.016108185052871704, 0.05150129273533821, -0.007762237451970577, 0.025683294981718063, -0.0493011511862278, 0.013189629651606083, 0.014951988123357296, 0.011202766560018063, 0.0007787494105286896, 0.0029353941790759563, -0.016467392444610596, 0.013919268734753132, 0.006134580820798874, -0.01970025524497032, -0.011719126254320145, 0.033383794128894806, -0.01934104785323143, -0.000557051389478147, 0.007408643141388893, 0.00935621839016676, -0.009081200696527958, -0.031475506722927094, 0.00862657930701971, 0.02525673806667328, 0.00962001085281372, -0.022495334967970848, -0.011438495479524136, -0.04728061333298683, 0.002487788675352931, -0.01582755520939827, -0.029342716559767723, -0.009171001613140106, 0.007958678528666496, 0.03295723721385002, 0.010461902245879173, 0.007610696833580732, -0.046113189309835434, -0.0406128354370594, -0.02559349313378334, -0.017174581065773964, -0.002111743902787566, 0.030891796573996544, -0.03253067657351494, -0.00731322867795825, 0.012123233638703823, -0.01672557182610035, -0.01106245070695877, 0.01585000567138195, 0.030846895650029182, 0.01647861860692501, 0.01083233393728733, -0.03329399228096008, -0.0314081571996212, 0.0025565430987626314, -0.033945053815841675, -0.02958967164158821, 0.004077559802681208, -0.020777875557541847, -0.02860185131430626, -0.001549079897813499, 0.021922847256064415, -0.0040102084167301655, -0.01977883093059063, -0.019352274015545845, 0.012370188720524311, 0.04651729762554169, -0.014087647199630737, -0.02920801378786564, -0.01831955276429653, 0.01689395122230053, -0.025683294981718063, 0.014817286282777786, 0.01647861860692501, 0.027636483311653137, 0.028242645785212517, 0.020373767241835594, -0.04359874129295349, -0.025997601449489594, 0.003830605186522007, -0.00391479441896081, -0.020441118627786636, 0.015109141357243061, 0.007273940369486809, 0.031565308570861816, -0.009939929470419884, 0.010203721933066845, 0.04723571240901947, -0.027546681463718414, 0.0240668635815382, 0.02135036140680313, 0.028175294399261475, 0.021148307248950005, 0.015142817050218582, 0.05275851860642433, -0.008705155923962593, 0.011348693631589413, 0.017702165991067886, -0.01415499858558178, 0.005056960042566061, 0.0016543163219466805, 0.024515872821211815, 0.04332933574914932, -0.024897530674934387, 0.018218526616692543, 0.015591826289892197, -0.0319918654859066, -0.0006201931973919272, 0.02898350916802883, -0.010018506087362766, 0.005954977590590715, 0.01672557182610035, -0.006241220515221357, 0.01963290385901928, -0.0035022676456719637, -0.009187839925289154, -0.016377590596675873, -0.011387982405722141, 0.013930493965744972, -0.01955432817339897, -0.02983662486076355, -0.02040744386613369, -0.019935984164476395, -0.0005170615622773767, -0.031228553503751755, 0.0034685919526964426, 0.025099584832787514, 0.01929614692926407, 0.017881769686937332, 0.0547790564596653, -0.03282253444194794, -0.006100905127823353, 0.04052303358912468, 0.016613321378827095, -0.012841647490859032, -0.014996889047324657, -0.03327154368162155, -0.01430092565715313, 0.008570453152060509, 0.02435871958732605, -0.0011232232209295034, -0.020328868180513382, 0.0038530556485056877, 0.0038109610322862864, 0.08629946410655975, -0.005685572046786547, 0.0001263713784283027, -0.025773096829652786, 0.002983101410791278, 0.03839024156332016, 0.051905401051044464, 0.004706172272562981, 0.013750890269875526, -0.00873883068561554, -0.0025677683297544718, 0.023595405742526054, -0.006931571289896965, -0.03077954426407814, 0.0010418404126539826, -0.022326955571770668, -0.014132548123598099, 0.0030223894864320755, -0.02593025006353855, -0.017096005380153656, -0.06290611624717712, 0.009732263162732124, 0.006892282981425524, -0.0008215455454774201, -0.028781455010175705, 0.008222470991313457, -0.021563641726970673, -0.0181511752307415, 0.05612608417868614, 0.010467514395713806, -0.03268783167004585, -0.0065948148258030415, 0.041578203439712524, 0.011079289019107819, 0.005065379198640585, 0.005497549660503864, 0.010282298550009727, 0.02741197869181633, 0.025189386680722237, -0.010776207782328129, 0.04510292038321495, -0.010692019015550613, -0.032777633517980576, 0.007964291609823704, -0.021361587569117546, 0.020351316779851913, 0.0187348872423172, 0.012448765337467194, -0.002602847060188651, 0.031161202117800713, 0.009131713770329952, 0.02799569070339203, -0.018723661080002785, 0.024897530674934387, -0.021720794960856438, 0.005517194047570229, 0.019161444157361984, 0.03839024156332016, -0.0035443620290607214, 0.039422959089279175, 0.005466680508106947, -0.003005551639944315, -0.021990198642015457, 0.03145305812358856, 0.030083579942584038, -0.008418912068009377, -0.05473415553569794, -0.028130393475294113, -0.0036959026474505663, -0.022259604185819626, 0.0731884092092514, 0.02833244763314724, 0.03742487356066704, 0.014817286282777786, 0.030936697497963905, 0.007369354832917452, -0.011831378564238548, 0.057428207248449326, 0.025458790361881256, -0.0012965125497430563, 0.026738466694951057, -0.01793789677321911, 0.04939095303416252, 0.036684006452560425, 0.02469547651708126, -0.004512537270784378, -0.024179115891456604, 0.004697753116488457, 0.013223305344581604, -0.008503101766109467, 0.07767850160598755, 0.015479573979973793, -0.022865766659379005, 0.0374697744846344, -0.033091939985752106, -0.020272741094231606, 0.007981128990650177, 0.0030757093336433172, 0.009098038077354431, 0.0021959329023957253, 0.049166448414325714, 0.02115953341126442, -0.015423447825014591, 0.011264504864811897, 0.059224244207143784, -0.013705989345908165, 0.025458790361881256, -0.009300092235207558, -0.01280797179788351, 0.0019714287482202053, -0.01278552133589983, 0.0028273514471948147, 0.016703123226761818, 0.027344627305865288, 0.053746338933706284, 0.017488887533545494, -0.017724616453051567, -0.00600549066439271, 0.04290277883410454, -0.010877234861254692, 0.015558150596916676, -0.002367117442190647, 0.009008236229419708, 0.009277641773223877, 0.024583224207162857, -0.010080244392156601, -0.012908998876810074, -0.021024830639362335, -0.0020949060562998056, -0.052578914910554886, -0.0034349162597209215, 0.03690851107239723, -0.050962481647729874, 0.04227416589856148, -0.004209456034004688, -0.015793880447745323, -0.030038679018616676, -0.00339001533575356, -0.01735418476164341, 0.03652685508131981, -0.009704199619591236, 0.05307282507419586, 0.05819152295589447, 0.036369699984788895, 0.03524718061089516, 0.0059269145131111145, 0.018375679850578308, -0.008104606531560421, 0.011651774868369102, -0.030532589182257652, 0.006847382057458162, 0.017848094925284386, 0.024448521435260773, 0.013919268734753132, -0.014177448116242886, -0.015445898286998272, 0.001371581107378006, 0.00012926539056934416, -0.024134214967489243, -0.03381035104393959, -0.0018549670930951834, 0.023258648812770844, -0.003423691028729081, -0.03531453013420105, 0.015928583219647408, 0.0015532893594354391, -0.005009253043681383, 0.023528054356575012, 7.743645255686715e-05, 0.010607829317450523, -0.04348649084568024, -0.006207544822245836, 0.007728561758995056, 0.037649378180503845, 0.025211837142705917, 0.0015897713601589203, -0.025054683908820152, -0.016029609367251396, -0.0008678495651111007, -0.013245755806565285, 0.02561594359576702, 0.013324332423508167, 0.010944586247205734, -0.022147351875901222, -0.028422247618436813, -0.019902309402823448, 0.01386314257979393, -0.01312227826565504, -0.0007380580063909292, 0.009182226844131947, 0.026020051911473274, 0.022529009729623795, 0.018813462927937508, -0.008014804683625698, -0.038569845259189606, -0.03291233628988266, -0.015299970284104347, 0.021462613716721535, -0.004661271348595619, 0.012055882252752781, 0.03468592092394829, -0.0036706458777189255, -0.0075826337561011314, 0.013661088421940804, -0.0034068531822413206, -0.041286345571279526, -0.016545969992876053, -0.003794123185798526, -0.020946254953742027, 0.04328443482518196, -0.019576778635382652, -0.004652852192521095, -0.015344871208071709, 0.03149795904755592, 0.042857877910137177, 0.02799569070339203, 0.03648195415735245, -0.004060721956193447, -0.01104000024497509, 0.009726650081574917, 0.019767606630921364, -0.0628163143992424, 0.026446610689163208, -0.07300880551338196, 0.03538188338279724, 0.015894906595349312, 0.011539522558450699, -0.03017338179051876, 0.03297968581318855, -0.00579782435670495, 0.024515872821211815, -0.041308797895908356, 0.01871243678033352, -0.009339380078017712, -0.01585000567138195, 0.03798613324761391, -0.008806182071566582, -0.007767850067466497, -0.03383280336856842, 0.00949092023074627, -0.016074510291218758, 0.04041077941656113, -0.011376757174730301, 0.005758536048233509, 0.022237153723835945, 0.0334511436522007, -0.012605918571352959, -0.02381991036236286, 0.0093674436211586, -0.05141149088740349, -0.009316929616034031, -0.019599229097366333, -0.0018493544775992632, 0.002316604135558009, -0.011505846865475178, -0.0420721136033535, 0.011460945941507816, 0.02135036140680313, -0.011606873944401741, 0.003723965724930167, -0.006836156826466322, -0.021754469722509384, -0.03524718061089516, -0.011954856105148792, -0.030330535024404526, 0.05518316477537155, 0.034865524619817734, 0.0013498322805389762, 0.007913777604699135, 0.007880101911723614, -0.024246467277407646, 0.00600549066439271, 0.01235896348953247, -0.0025495272129774094, 0.019251246005296707, -0.011202766560018063, 0.025503691285848618, 0.007868876680731773, 0.027501780539751053, -0.01342535950243473, 0.015255069360136986, -0.025413891300559044, 0.01003534346818924, 0.010388937778770924, -0.005632252432405949, -0.03874944895505905, -0.04795412719249725, 0.0010109710274264216, -0.00013277326070237905, -0.04321708530187607, -0.03744732216000557, -0.010551703162491322, 0.03964746370911598, -0.009260803461074829, -0.007245877292007208, -0.0036790648009628057, 0.012145684100687504, -0.02072175033390522, 0.02743442915380001, 0.013470259495079517, -0.0003188663104083389, -0.03482062369585037, 0.002483579097315669, 0.03780652955174446, 0.02045234479010105, -0.016590870916843414, -0.004268388729542494, 0.014963213354349136, 0.029769275337457657, -0.004972770810127258, 0.029679473489522934, -0.02099115587770939, -0.03666155785322189, 0.02958967164158821, -0.0541953444480896, -0.009266416542232037, -0.01781441830098629, 0.016074510291218758, -0.02433626912534237, 0.017556238919496536, 0.01025423500686884, -0.02952232025563717, -0.01754501275718212, -0.011118576861917973, -0.01955432817339897, 0.031026499345898628, 0.009126100689172745, -0.03755957633256912, 0.014940762892365456, 0.031587760895490646, -0.017601139843463898, 0.007363742217421532, -0.020789101719856262, 0.0009401118732057512, -0.01616431213915348, 0.0015925775514915586, -0.04416000097990036, 0.006207544822245836, 0.011118576861917973, 0.01994721032679081, -0.005113086197525263, -0.04925625026226044, 0.031812265515327454, -0.03827798739075661, 0.0007689273334108293, -0.022719837725162506, -0.01568162813782692, 0.012819197028875351, 0.03966991603374481, -0.018689986318349838, 0.00016443188360426575, 0.012426314875483513, 0.03964746370911598, -0.007835200987756252, -0.00631979713216424, 0.024762827903032303, 0.0120334317907691, 0.015513249672949314, 0.01672557182610035, -0.012841647490859032, -0.0031402544118463993, -0.0019209152087569237, -0.019397174939513206, -0.000481982744531706, -0.0074198683723807335, -0.035157378762960434, -0.013369233347475529, -0.011797702871263027, 0.005230951122939587, 0.003446141490712762, 0.013021251186728477, 0.02239430695772171, -0.011489009484648705, -0.013234530575573444, -0.014862187206745148, -0.052848320454359055, -0.004316095728427172, 0.0074928319081664085, -0.012942674569785595, 0.0012305643176659942, 0.005831500049680471, 0.020328868180513382, -0.01936349831521511, -0.023393351584672928, -0.018050149083137512, 0.026424160227179527, -0.018824689090251923, 0.0018563702469691634, 0.01011953316628933, -0.0276813842356205, 0.01415499858558178, 0.006297346670180559, 0.021563641726970673, 0.014458078891038895, 0.004711784888058901, 0.010635892860591412, 0.023213747888803482, -0.0051355366595089436, 0.03351849690079689, 0.0196104533970356, -0.004021433647722006, -0.04238641634583473, -0.004602338653057814, 0.011298180557787418, 0.018476705998182297, -0.0003746416186913848, 0.02310149557888508, 0.0015350483590736985, -0.03524718061089516, -0.04355384036898613, 0.007004535291343927, 0.004498505499213934, 0.005242176353931427, 0.023707658052444458, 0.0007471785065717995, -0.006965246982872486, 0.027569131925702095, 0.015030564740300179, -0.007588246371597052, -0.02273106388747692, 0.00653868867084384, 0.0019994915928691626, -0.014749934896826744, -0.01386314257979393, -0.02103605680167675, 0.011242054402828217, 0.006398373283445835, 0.004464829806238413, -0.016635771840810776, 0.004882969427853823, 0.04701120778918266, 0.01385191734880209, -0.0023853585589677095, -0.019037967547774315, -0.0005163599853403866, -0.03134080395102501, -0.03982706740498543, -0.0020682462491095066, 0.017926670610904694, -0.0371779166162014, -0.005306721199303865, 0.012134458869695663, 0.019116543233394623, -0.02350560389459133, 0.015333645977079868, -0.009159776382148266, -0.00016706279711797833, -0.029926426708698273, 0.021754469722509384, 0.009749100543558598, -0.023842360824346542, 0.015535700134932995, -0.01384069211781025, 0.016950076445937157, 0.0033591461833566427, 0.013155953958630562, -0.00678003067150712, -0.004972770810127258, -0.051276788115501404, 0.007206588983535767, -0.00753773283213377, -0.015356096439063549, 0.014974438585340977, 0.0012235486647114158, -0.02469547651708126, 0.028803905472159386, 0.001963009824976325, -0.00929447915405035, -0.032395973801612854, -0.013649863190948963, -0.023864811286330223, 0.026334358379244804, 0.0055649010464549065, 0.02833244763314724, -0.02956722117960453, 0.002929781563580036, 0.007470381446182728, 0.006375922821462154, 0.026603763923048973, 0.02530163899064064, -0.007964291609823704, 0.00026677429559640586, -0.013470259495079517, -0.010551703162491322, -0.03327154368162155, -0.018386904150247574, -0.04485596716403961, 0.05118698626756668, -0.024583224207162857, 0.01624288782477379, 0.0111017394810915, -0.020160488784313202, -0.0012193392030894756, 0.015793880447745323, -0.0075545706786215305, -0.0048156180419027805, -0.0004290137439966202, 0.005452648736536503, -0.012269161641597748, -0.045484576374292374, -0.0013393086846917868, -0.05001956596970558, 0.018431805074214935, -0.011977306567132473, -0.006998922675848007, -0.002896105870604515, -0.00853116437792778, -0.03661665692925453, -0.0020401831716299057, -0.013896818272769451, -0.0001911794679472223, 0.00084539910312742, -0.03378790244460106, 0.01672557182610035, -0.07574775815010071, 0.007150462828576565, 0.0006415912648662925, -0.013683538883924484, -0.015939807519316673, -0.0010916523169726133, -0.0026730047538876534, -0.014839736744761467, 0.0051832436583936214, 0.01034964993596077, -0.0025832029059529305, -0.025817997753620148, -0.007711723912507296, 0.02896105870604515, -0.012168134562671185, 0.022910667583346367, 0.046472396701574326, -0.03473082184791565, 0.00753773283213377, -0.023281099274754524, 0.02243920788168907, -0.043980397284030914, 0.011842603795230389, -0.016467392444610596, -0.03219392150640488, -0.039445411413908005, 0.023864811286330223, -0.011315017938613892, 0.024515872821211815, -0.0035752314142882824, 0.015569375827908516, 0.006448886822909117, 0.024605674669146538, -0.01800524815917015, -0.009911865927278996, -0.005693991202861071, 0.03313684090971947, 0.021754469722509384, 0.023999512195587158, -0.002041586209088564, -0.020351316779851913, 0.012156909331679344, 0.002076665172353387, 0.0029353941790759563, -0.018499156460165977, -0.005054153967648745, 0.004074753727763891, -0.02040744386613369, 0.009406731463968754, -0.004888582043349743, -0.012998800724744797, 0.0009688765276223421, -0.016366366297006607, -0.025975150987505913, -0.02830999717116356, 0.00676319282501936, -0.001815678784623742, 0.028444698080420494, 0.002828754484653473, 0.025144485756754875, -0.031812265515327454, -0.038839250802993774, -0.011707901023328304, -0.03511247783899307, -0.017410311847925186, -0.02893860824406147, 0.018936939537525177, -0.016994977369904518, 0.02586289867758751, 0.022843316197395325, 0.026064952835440636, -0.020811552181839943, -0.004414316266775131, -0.011921180412173271, -0.001608012244105339, 0.02584044821560383, -0.003564006183296442, -0.030914247035980225, 0.014727484434843063, -0.015513249672949314, 0.012987575493752956, -0.003187961410731077, 0.00027992884861305356, 0.021372811868786812, -0.061693791300058365, -0.008222470991313457, -0.015187717974185944, -0.02651396207511425, 0.0034264973364770412, 0.008475038222968578, -0.019273696467280388, 0.0003244789259042591, -0.007464768830686808, -0.02958967164158821, 0.0196104533970356, 0.02862430177628994, 0.030330535024404526, 0.019127769395709038, 0.020755425095558167, -0.009429181925952435, 0.01967780478298664, -0.004540600348263979, 0.008705155923962593, -0.011663000099360943, -0.012751845642924309, 0.05311772599816322, 0.02920801378786564, 0.015468348748981953, 0.01839813031256199, 0.02285454049706459, -0.027501780539751053, 0.018510382622480392, 0.035179827362298965, -0.01996966078877449, -0.002896105870604515, 0.02772628515958786, -0.04602338746190071, 0.008374011144042015, -0.026581313461065292, 0.01277429610490799, 0.020295191556215286, -0.012583468109369278, 0.03865964710712433, 0.0006016014376655221, -0.0011604067403823137, 0.03372054919600487, -0.007947453297674656, 0.007958678528666496, -0.029926426708698273, 0.008357173763215542, 0.009165389463305473, -0.020688073709607124, -0.038502492010593414, 0.005312333814799786, 0.011006324551999569, 0.026446610689163208, -0.031228553503751755, 0.015311195515096188, 0.03219392150640488, 0.008374011144042015], [0.025545137003064156, -0.02613709308207035, 0.05874015390872955, 0.009232222102582455, -0.02889196015894413, -0.0014756186865270138, 0.026820117607712746, -0.025954952463507652, 0.037498075515031815, 0.028095098212361336, -0.0025926493108272552, 0.007632805034518242, 0.005839864257723093, -0.0002764117089100182, 0.028231702744960785, 0.0023294000420719385, -0.032056644558906555, 0.03030354529619217, 0.009881095960736275, 0.03824940323829651, 0.00991524662822485, 0.012203381396830082, 0.030918268486857414, 0.0057687158696353436, 0.015527436509728432, 0.008293062448501587, 0.07194530963897705, 0.017360219731926918, 0.009072849527001381, -0.03665567934513092, 0.009112692438066006, -0.03701995685696602, 0.06129011511802673, -0.037498075515031815, 0.006602575536817312, -0.015299761667847633, -0.007376670837402344, -0.0002488416794221848, 0.034743208438158035, 0.010695033706724644, -0.07695415616035461, 0.012362753972411156, -0.0003724620910361409, 0.014332142658531666, -0.008469510823488235, 0.046764448285102844, 0.015094853937625885, -0.0036200329195708036, -0.01841890998184681, 0.007758026476949453, 0.008867941796779633, 0.020570438355207443, 0.05509735643863678, 0.02508978731930256, 0.005569500382989645, 0.03283073753118515, -0.02379203960299492, 0.01051289401948452, 0.03824940323829651, -0.004661646205931902, -0.010148613713681698, -0.03701995685696602, 0.015231458470225334, 0.03182896599173546, -0.0042632147669792175, -0.04227925091981888, 0.014787492342293262, -0.004641724284738302, -0.061153508722782135, 0.006722104735672474, -0.002207024721428752, -0.005216604098677635, -0.013125465251505375, -0.037475306540727615, 0.03139638528227806, 0.012021240778267384, -0.000880817708093673, 0.008497970178723335, 0.01121868658810854, 0.028277236968278885, -0.012749801389873028, -0.004604727495461702, 0.007854788564145565, -0.02996203303337097, -0.017667582258582115, -0.019614202901721, 0.04095873609185219, -0.01567542552947998, -0.015231458470225334, -0.0070806932635605335, 0.01705285906791687, 0.004345746710896492, 0.029324542731046677, 0.03701995685696602, -0.016335682943463326, -0.03499365225434303, 0.02383757382631302, 0.014150002039968967, -0.024475064128637314, 0.05377683788537979, 0.013091313652694225, -0.00685870973393321, 0.0023194393143057823, 0.02773081697523594, 0.031168710440397263, -0.06802929937839508, -0.06384007632732391, -0.0061073824763298035, -0.025977719575166702, -0.0065854997374117374, -0.05391344428062439, -0.02233492024242878, -0.0391601026058197, 0.09006823599338531, 0.027776353061199188, -0.018976712599396706, 0.03376420587301254, 0.01564127393066883, 0.010780411772429943, -0.029415613040328026, -0.00847520213574171, -0.04603588953614235, 0.014297991059720516, -0.07476847618818283, -0.0021742964163422585, -0.0131937675178051, -0.06051601842045784, -0.0006467393250204623, -0.050589390099048615, -0.016267379745841026, 0.02868705242872238, -0.003042307449504733, 0.033741436898708344, -0.04423725605010986, -0.010438899509608746, -0.029757125303149223, 0.018100164830684662, 0.02766251564025879, 0.018862875178456306, -0.010194148868322372, 0.02083226479589939, -0.008247527293860912, 0.03508472070097923, -0.0263192318379879, -0.0522741861641407, -0.0015325375134125352, 0.02119654417037964, 0.0392739400267601, 0.007001006975769997, -0.019079167395830154, -0.08000500500202179, 0.007524659391492605, 0.004843785893172026, -0.020058169960975647, 0.03558560460805893, -0.021902337670326233, -0.017861105501651764, 0.016791032627224922, 0.009960781782865524, -0.0035033493768423796, -0.03333162143826485, 0.012157846242189407, -0.026478605344891548, -0.009448513388633728, 0.05150008946657181, -0.030576754361391068, -0.0195117499679327, 0.03667844459414482, -0.027912957593798637, -0.03301287814974785, -0.01717808097600937, -0.005597959738224745, -0.052000973373651505, -0.021913720294833183, 0.01716669648885727, -0.01045028306543827, -0.002877243096008897, -0.005822788458317518, 0.0014130080817267299, -0.007871863432228565, 0.027958491817116737, -0.006340749096125364, -0.049268875271081924, -0.028504911810159683, -0.053002744913101196, 0.03449276462197304, 0.027799120172858238, -0.012988859787583351, 0.020217541605234146, 0.00842966791242361, -0.02768528275191784, 0.04182390123605728, 0.024497831240296364, -0.004152223002165556, -0.031191477552056313, 0.026569675654172897, -0.00589109119027853, -0.012135078199207783, 0.019329609349370003, -0.01062103919684887, 0.008964703418314457, 0.008190608583390713, 0.031168710440397263, 0.0261598601937294, -0.05354916304349899, -0.024452297016978264, 0.002928470028564334, 0.004462430253624916, 0.03799895942211151, 0.01581203006207943, -0.04414618760347366, -0.03032631240785122, -8.524472650606185e-05, 0.06825697422027588, -0.04455600306391716, 0.014924097806215286, 0.04573991149663925, -0.033536531031131744, -0.025545137003064156, 0.019409295171499252, -0.003796480828896165, -0.021663278341293335, 0.003412279300391674, 0.02342776022851467, -0.032307084649801254, 0.02511255443096161, -0.008697185665369034, -0.02345052734017372, 0.01189601980149746, -0.052410788834095, -0.021993406116962433, -0.0035972653422504663, 0.026956722140312195, 0.0012529240921139717, -0.02745760791003704, -0.008031236007809639, -0.010188457556068897, -0.019955715164542198, 0.0057146428152918816, -0.006295214407145977, -0.0031760665588080883, 0.021959256380796432, -0.055643774569034576, 0.0018000556156039238, -0.04721979796886444, -0.022904107347130775, -0.016108008101582527, -0.016119390726089478, 0.01843029260635376, -0.022562595084309578, -0.0022952486760914326, -0.009408670477569103, -0.03251199424266815, -0.0396382212638855, 0.03305841237306595, 0.02754867821931839, -0.004809634760022163, -0.057191964238882065, 0.04079936444759369, -0.017963558435440063, -0.0048722452484071255, -0.00042795788613148034, -0.009550967253744602, 0.037179332226514816, -0.06771054863929749, 0.019033631309866905, 0.03533516451716423, -0.023313922807574272, -0.029187938198447227, -0.006972547620534897, 0.0008210530504584312, -0.0045250412076711655, -0.012317218817770481, 0.02098025381565094, -0.025636207312345505, 0.011372366920113564, -0.05140902101993561, -0.011087773367762566, -0.03797619417309761, -0.022744733840227127, 0.0020846494007855654, -0.03781682252883911, 0.03394634649157524, -0.02379203960299492, -0.006226911675184965, 0.019386528059840202, -0.04858585074543953, 0.03451553359627724, 0.029779892414808273, 0.023165933787822723, 0.013307604938745499, -0.002199909882619977, -0.022744733840227127, 0.0016051088459789753, 0.006995314732193947, 0.06060709059238434, -0.04045785218477249, -0.006050463765859604, 0.022630896419286728, 0.0197280403226614, 0.057100895792245865, 0.0037481000181287527, -0.011503280140459538, 0.02223246544599533, -0.01593725197017193, -0.016108008101582527, 0.014047549106180668, -0.030986569821834564, -0.025158090516924858, -0.030599523335695267, -0.03549453616142273, 0.0664811059832573, -0.04976975917816162, -0.004493735730648041, -0.07331135869026184, -0.0016150696901604533, 0.004032693803310394, 0.03403741493821144, 0.010814563371241093, 0.008776872418820858, 0.006363516673445702, 0.009607885964214802, 0.02233492024242878, -0.06320258229970932, 0.056964289397001266, 0.00026058117509819567, 0.002013501012697816, 0.03667844459414482, -0.01567542552947998, 0.003190296236425638, -0.009328983724117279, -0.016506439074873924, 0.024224622175097466, -0.01586894877254963, 0.02370096929371357, -0.011759414337575436, 0.016551973298192024, 0.028618749231100082, 0.008230451494455338, -0.022949641570448875, -0.03046291694045067, -0.02240322157740593, 0.031237011775374413, -0.03401464968919754, 0.027912957593798637, 0.029415613040328026, -0.021606359630823135, 0.024520600214600563, 0.012749801389873028, 0.028163399547338486, -0.027981258928775787, -0.03269413113594055, -0.06037941575050354, 0.026546906679868698, -0.0524563230574131, -0.006198452319949865, 0.013114080764353275, -0.017929406836628914, -0.06921320408582687, -0.00913546048104763, -0.0016862180782482028, 0.008355673402547836, -0.009454205632209778, 0.04646847024559975, -0.0522286482155323, 0.02372373640537262, 0.011531739495694637, 0.013353140093386173, -0.007456356659531593, -0.02996203303337097, 0.013057162053883076, -0.001761635416187346, -0.054459866136312485, -0.05395897850394249, -0.041436854749917984, 0.0031504530925303698, 0.01367188524454832, 0.016768265515565872, -0.014924097806215286, -0.041527923196554184, 0.0652516633272171, -0.013170999474823475, 0.011930171400308609, -0.0077011073008179665, 0.03194280341267586, 0.013922327198088169, -0.033354390412569046, 0.0528661385178566, -0.011452053673565388, -0.04111810773611069, -0.047902822494506836, -0.022562595084309578, -0.020695658400654793, -0.011577274650335312, 0.014115851372480392, 0.006329365540295839, 0.03793065994977951, 0.002962621161714196, -0.0003576987946871668, -0.08747274428606033, 0.023404991254210472, -0.03390080854296684, -0.037498075515031815, 0.007797869388014078, -0.008099539205431938, -0.0008182071032933891, 0.012635963968932629, -0.0032614446245133877, 0.004103842191398144, 0.006722104735672474, 0.051773298531770706, 0.011770798824727535, 0.016517823562026024, -0.011702495627105236, -0.004897858947515488, -0.0006246833363547921, -0.0015638427576050162, -0.0398431271314621, 0.015504668466746807, 0.03003033436834812, 0.03576774522662163, 0.05933210998773575, -0.046445704996585846, 0.03528962656855583, 0.042552459985017776, 0.016620276495814323, -0.007638496812433004, 0.01828230358660221, 0.010677958838641644, -0.08464957028627396, -0.03016694076359272, 0.051636695861816406, 0.0523652546107769, 0.04585374891757965, -0.010108770802617073, -0.04061722382903099, 0.008731337264180183, -0.038659218698740005, 0.027912957593798637, -0.049359943717718124, -0.004078228957951069, 0.012670114636421204, 0.04626356437802315, 0.04831263795495033, 0.0130230113863945, 0.0028544755186885595, -0.021640511229634285, 0.08018714189529419, 0.024361226707696915, -0.013125465251505375, 0.024406762793660164, 0.042848438024520874, 0.0011028008302673697, -0.0020931873004883528, 0.0030622289050370455, -0.00016417502774856985, -0.025795578956604004, -0.027070559561252594, 0.08560580760240555, -0.027025025337934494, 0.04890459403395653, 0.033627599477767944, 0.008885017596185207, 0.05896782875061035, -0.019466213881969452, 0.01705285906791687, -0.02213001251220703, -0.0647963136434555, -0.03239815682172775, -0.025226391851902008, 0.005190990399569273, 0.05919550359249115, 0.07558810710906982, 0.0057943291030824184, 0.03041738271713257, -0.008674418553709984, -0.008076771162450314, -0.02993926592171192, -0.048084963113069534, 0.01953451707959175, -0.005535348784178495, -0.007581578101962805, -0.05027064308524132, -0.016677195206284523, 0.01060396432876587, 0.08788255602121353, 0.027138862758874893, 0.01384264137595892, 0.00044325480121187866, -0.013114080764353275, -0.055780380964279175, -0.008998855017125607, 0.037543609738349915, -0.009476972743868828, -0.016244612634181976, 0.004416895564645529, -0.008731337264180183, -0.041527923196554184, 0.015345295891165733, -0.02736653760075569, 0.006477354094386101, -0.028072329238057137, 0.041368551552295685, 0.003380974056199193, 0.03834047168493271, 0.012203381396830082, 0.01992156356573105, -0.0198532622307539, -0.017633430659770966, 0.02086641639471054, 0.011121924966573715, -0.014195537194609642, 0.01820261776447296, 0.032102178782224655, -0.012271683663129807, -0.03572221100330353, -0.011042238213121891, -0.011520355939865112, 0.017667582258582115, -0.03431062400341034, -0.027844654396176338, 0.01384264137595892, -0.017997710034251213, -0.024179087951779366, 0.01384264137595892, 0.034743208438158035, 0.0003916721907444298, -0.051864370703697205, -0.03278520330786705, -0.012590428814291954, -0.02222108095884323, -0.03824940323829651, -0.04205157607793808, -0.01449151523411274, -0.01237413752824068, -0.013660500757396221, 0.02634199894964695, -0.004408357664942741, -0.004061153158545494, -0.007114844396710396, 0.010182765312492847, -0.021435603499412537, -0.0034435847774147987, 0.025454066693782806, -0.0031276855152100325, 0.04981529340147972, -0.00759865390136838, 0.004362822510302067, 0.033604834228754044, 0.012476591393351555, -0.020524902269244194, 0.0021116856951266527, -0.03328608721494675, -0.021469755098223686, 0.018862875178456306, -0.023200083523988724, 0.009642036631703377, -0.03194280341267586, -0.02207309380173683, 0.0023578593973070383, -0.02234630286693573, 0.04514795541763306, -0.025704510509967804, 0.010803179815411568, 0.004863707814365625, 0.04339485988020897, -0.004402665887027979, 0.017565127462148666, 0.004058307036757469, -0.045125190168619156, -0.01862381584942341, -0.004322979599237442, 0.013592198491096497, 0.037270400673151016, 0.028231702744960785, 0.006830250378698111, 0.010558429174125195, -0.04312164708971977, 0.003158990992233157, -0.012875022366642952, 0.00786047987639904, -0.014707806520164013, 0.008093846961855888, -0.032147713005542755, -0.01969388872385025, -0.004610419273376465, 0.021253462880849838, -0.04237031936645508, 0.031145943328738213, 0.016699962317943573, 0.013205151073634624, 0.013034394942224026, 0.017337452620267868, 0.01860104873776436, -0.008190608583390713, 0.04205157607793808, -0.008230451494455338, 0.0263192318379879, -0.009437129832804203, 0.019147468730807304, -0.010746261104941368, -0.00783771276473999, 0.0026310693938285112, -0.01443459652364254, -0.036086492240428925, -0.032193247228860855, 0.042757369577884674, 0.00924929790198803, -0.020570438355207443, 0.03267136588692665, 0.012909173965454102, 0.011480513028800488, -0.012624579481780529, -0.004385590087622404, -0.013512512668967247, 0.006528581026941538, -0.04703765735030174, -0.052410788834095, 0.003429354866966605, 0.003853399772197008, -0.006989622954279184, 0.026615209877490997, 0.009522507898509502, -0.016825184226036072, 0.016745498403906822, -0.021549440920352936, -0.013546663336455822, -0.02124207839369774, -0.0036741055082529783, 0.0049462397582829, 0.010825946927070618, 0.02356436476111412, 0.026478605344891548, -0.034879811108112335, -0.03030354529619217, 0.0015339604578912258, 0.02770804986357689, -0.004852323792874813, -0.006716412957757711, 0.0263192318379879, 0.01178218238055706, 0.016335682943463326, 0.03164682909846306, -0.021549440920352936, 0.033786971122026443, 0.008071079850196838, 0.008873634040355682, 0.032216016203165054, 0.009636345319449902, 0.04054892063140869, 0.028300004079937935, -0.009733106940984726, 0.02497594989836216, -0.00850935373455286, 0.0068985531106591225, -0.022027557715773582, -0.01708701066672802, 0.04567160829901695, -0.009653421118855476, 0.0039387778379023075, -0.006181376986205578, 0.011964322067797184, -0.030485685914754868, -0.0395243838429451, 0.01585756428539753, 0.013512512668967247, -0.012009857222437859, -0.0006022715824656188, 0.030622290447354317, 0.003847707761451602, 0.012704266235232353, 0.02214139513671398, -0.0031504530925303698, 0.013546663336455822, 0.003008156083524227, 0.016085240989923477, -0.009374518878757954, -0.009067157283425331, -0.05113580822944641, 0.07522382587194443, -0.020684275776147842, -0.01860104873776436, -0.011952938511967659, 0.011315448209643364, 0.041618991643190384, 0.017530975863337517, 0.02220969833433628, 0.004382743965834379, 0.013466977514326572, -0.010359213687479496, 0.03032631240785122, -0.010222608223557472, -0.001868358114734292, 0.015436366200447083, 0.020536286756396294, 0.04596758633852005, 0.0392511747777462, -0.0029853887390345335, -0.017530975863337517, 0.017417138442397118, 0.03440169617533684, 0.04041231423616409, 0.025954952463507652, -0.07458633929491043, -0.04305334761738777, -0.009209454990923405, 0.044009581208229065, -0.024429529905319214, 0.014263840392231941, 0.01947759836912155, 0.0024304308462888002, -0.006090306676924229, -0.052092045545578, -0.009334675967693329, -0.0005827057757414877, 0.03681505098938942, 0.014445980079472065, -0.006152917165309191, 0.04248415678739548, 0.015618505887687206, -0.027047792449593544, -0.017496826127171516, -0.0393422432243824, 0.0027406380977481604, -0.017906639724969864, 0.010899941436946392, -0.018168466165661812, 0.012635963968932629, 0.022585362195968628, 0.011827717535197735, 0.02107132226228714, -0.02230076864361763, 0.019340991973876953, 0.025476833805441856, -0.012635963968932629, 0.026023253798484802, -0.007069309242069721, 0.002710755681619048, 0.011110540479421616, 0.0027932878583669662, 0.02477104216814041, -0.024406762793660164, 0.048084963113069534, -0.0015766494907438755, 0.0037167947739362717, 0.05641787126660347, 0.019898796454072, 0.049268875271081924, 0.004229063633829355, 0.002016346901655197, 0.020103704184293747, 0.006801791023463011, -0.0021970639936625957, -0.020012633875012398, -0.014081699773669243, -0.01846444420516491, -0.03551730141043663, 0.0014969632029533386, 0.03542623296380043, -0.013501128181815147, 0.04314441606402397, 0.01836198940873146, -0.010643807239830494, 0.00360580300912261, -0.009659112431108952, -0.0035545763093978167, -0.023006560280919075, -0.002327976981177926, 0.006813175044953823, 0.01434352621436119, 0.028345540165901184, -0.0009007392800413072, 0.017838338389992714, -0.012738416902720928, 0.03708826005458832, -0.002362128347158432, -0.009061465971171856, 0.02379203960299492, -0.04712872952222824, -0.034902580082416534, -0.002286711009219289, -0.020695658400654793, -0.0261598601937294, -0.0004838094173464924, -0.0051084584556519985, -0.029620520770549774, -6.661273073405027e-05, 0.01451428234577179, 0.029392844066023827, -0.014252455905079842, -0.04885905981063843, 0.005489814095199108, 0.01705285906791687, -0.02866428531706333, -0.02108270674943924, 0.024634437635540962, 0.017565127462148666, -0.03667844459414482, 0.010985319502651691, 0.006073231343179941, -0.007826329208910465, 0.03044014982879162, -0.00860042404383421, 0.017690349370241165, 0.035016417503356934, 0.0022938258480280638, -0.030758894979953766, -0.024088017642498016, 0.04223371669650078, -0.028482144698500633, 0.018009094521403313, 0.03419678658246994, -0.006033387966454029, -0.005205220077186823, 0.014673654921352863, -0.027252700179815292, -0.02367820218205452, 0.018100164830684662, 0.006374900694936514, -0.023905877023935318, 0.026774581521749496, -0.043986812233924866, 0.01369465235620737, -0.01104793045669794, 0.024702738970518112, 0.033513762056827545, -0.023883109912276268, 0.0056406487710773945, 0.03635970130562782, 0.002962621161714196, 0.009328983724117279, 0.001253635622560978, 0.0008729913970455527, -0.004721410572528839, -0.008645959198474884, 0.008890709839761257, 0.005037309601902962, 0.01717808097600937, 0.010313678532838821, -0.013239302672445774, 0.013182383961975574, -0.03510748967528343, -0.009044390171766281, 0.02752590924501419, -0.004092458635568619, -0.010939784348011017, 0.03021247498691082, -0.018122931942343712, -0.013990629464387894, 0.0012863638112321496, -0.03556283935904503, -0.00984125304967165, 0.01059827208518982, 0.0020021172240376472, -0.010973935946822166, 0.011975705623626709, 0.028322773054242134, -0.016369834542274475, -0.028072329238057137, 0.01380848977714777, 0.000236568579566665, 0.0016449519898742437, -0.047811754047870636, -0.02354159764945507, 0.01964835450053215, -0.006095998454838991, 0.05154562368988991, 0.0015353834023699164, -0.013774339109659195, 0.01723499968647957, 0.04023017734289169, -0.022107243537902832, 0.009767258539795876, -0.03540346398949623, -0.032124944031238556, -0.012727033346891403, 0.0057288724929094315, 0.026751814410090446, 0.015037935227155685, -0.023177316412329674, 0.03585881367325783, -0.0010209801839664578, 0.029415613040328026, 0.010495818220078945, -0.04234755411744118, -0.013125465251505375, -0.006255371030420065, 0.010063235647976398, 0.03185173496603966, -0.003366744378581643, -0.006824558600783348, 0.02474827505648136, 0.013956478796899319, 0.004305903799831867, 0.03130531683564186, -0.005205220077186823, -0.013706035912036896, -0.017622046172618866, 0.014218305237591267, -0.023131782189011574, -0.0666632428765297, -0.009311907924711704, 0.0014492938062176108, 0.04551223665475845, -0.018714886158704758, 0.027776353061199188, 0.01116746012121439, -0.019488980993628502, 0.003753791796043515, -0.017462674528360367, 0.021526673808693886, -0.005071461200714111, 0.01047874242067337, -0.01248797494918108, 0.05336702615022659, 0.023154549300670624, -0.054368793964385986, 0.037224866449832916, -0.0022881338372826576, 0.010951168835163116, 0.029529450461268425, -0.024179087951779366, -0.017656197771430016, -0.016369834542274475, -0.03576774522662163, 0.03435616195201874, 0.0008708569221198559, 0.03451553359627724, -0.007871863432228565, 0.005162531044334173, 0.021355917677283287, 0.006204144097864628, 0.037475306540727615, 0.007735258899629116, -0.022084476426243782, -0.01049012690782547, 0.01695040427148342, -0.007968625985085964, 0.047720685601234436, -0.007268525194376707, 0.010552736930549145, 0.012613195925951004, 0.020137855783104897, -0.017485441640019417, -0.02611432410776615, 0.027184396982192993, 0.040207408368587494, 0.007370978593826294, -0.023029327392578125, 0.01591448299586773, 0.03023524209856987, -0.038636449724435806, 0.027002256363630295, 0.027935724705457687, -0.022630896419286728, 0.011406518518924713, 0.023257004097104073, -0.009402978233993053, -0.004843785893172026, -0.006579807959496975, -0.008025544695556164, 0.005936626344919205, 0.022790269926190376, -0.061107974499464035, 0.007302676327526569, 0.05027064308524132, -0.007746642455458641, 0.01817985065281391, -0.028095098212361336, -0.04735640436410904, -0.018191233277320862, 0.02618262730538845, 0.03661014139652252, 0.03706549480557442, -0.017553744837641716, 0.02870981954038143, 0.036223094910383224, -0.03649630397558212, 0.0047299484722316265, -0.025476833805441856, 0.028368307277560234, 0.0056406487710773945, 0.06761948019266129, 0.009511124342679977, -0.01591448299586773, -0.005373130552470684, 0.023404991254210472, -0.036245863884687424, 0.024247389286756516, -0.016495054587721825, 0.014252455905079842, 0.04155069217085838, 0.0036001112312078476, -0.02752590924501419, 0.010279526934027672, 0.023279771208763123, 0.026000486686825752, -0.0098924795165658, 0.019432062283158302, -0.0261598601937294, 0.011082081124186516, 0.0032728284131735563, -0.0014556971145793796, 0.035949885845184326, 0.00978433433920145, 0.0018897026311606169, -0.005264984909445047, 0.010165689513087273, -0.017656197771430016, -0.022801652550697327, -0.00010485501843504608, 0.019318224862217903, -0.0067676398903131485, 0.04350869730114937, -0.05395897850394249, 0.03160129114985466, 0.03192003816366196, -0.04455600306391716, -0.0048608616925776005, -0.0010110193397849798, -0.05127241462469101, 0.028254469856619835, -0.03173789754509926, 0.0015296915080398321, 0.042689066380262375, -0.039228405803442, 0.040207408368587494, 0.0037623296957463026, 0.037657447159290314, 0.0017872488824650645, -0.001030940911732614, -0.014582584612071514, -0.004260368645191193, 0.03465213626623154, -0.03032631240785122, -0.014525665901601315, -0.02761697955429554, -0.03676951676607132, -0.03535792976617813, 0.016085240989923477, -0.012169229798018932, -0.03260306268930435, -0.013876792043447495, -0.005145455244928598, 0.00016257418610621244, -0.023883109912276268, -0.004177836701273918, 0.020763961598277092, -0.004137993324548006, 0.009363135322928429, -0.009340367279946804, 0.02216416224837303, -0.0647963136434555, 0.005472738295793533, 0.019193004816770554, -0.022687815129756927, -0.000723579665645957, 0.029757125303149223, 0.01952313259243965, 0.015322528779506683, 0.006255371030420065, -0.053139351308345795, 0.013990629464387894, 0.00848658662289381, -0.00759296165779233, -0.009795717895030975, -0.050407249480485916, -0.008811023086309433, 0.012328602373600006, -0.004584805574268103, 0.028004027903079987, 0.00048025199794210494, 0.037315934896469116, 0.015481901355087757, -0.0001637303503230214, 0.010939784348011017, -0.02775358408689499, -0.020137855783104897, -0.027070559561252594, 0.030485685914754868, -0.013057162053883076, 0.014662271365523338, 0.0195572841912508, 0.028322773054242134, -0.03795342519879341, 0.005677645560353994, 0.0061699929647147655, -0.0009199493797495961, 0.006317981984466314, -0.000481674971524626, -0.011702495627105236, 0.03176066651940346, 0.013774339109659195, 0.002914240350946784, -0.033786971122026443, 0.037338703870773315, 0.030918268486857414, -0.02757144533097744, 0.02370096929371357, -0.013546663336455822, -0.011434977874159813, 0.006306597962975502, 0.003250060835853219, -0.02347329445183277, 0.029187938198447227, -0.0651605874300003, 0.00798000954091549, 0.03012140467762947, 0.03283073753118515, 0.020365530624985695, -0.022790269926190376, 0.029324542731046677, -0.0033411309123039246, 0.009363135322928429, 0.01697317324578762, 0.001992156496271491, 0.017394371330738068, 0.010922709479928017, 0.011150384321808815, -0.005401589907705784, -0.018976712599396706, 0.03433339297771454, -0.05159115791320801, -0.018862875178456306, 0.017291918396949768, -0.019409295171499252, 0.009226529859006405, 0.009055773727595806, 0.016836566850543022, 0.005697567481547594, -0.01516315620392561, -0.008133689872920513, -0.016677195206284523, -0.04350869730114937, -0.0008573387167416513, -0.009852636605501175, -0.0019039323087781668, -0.02213001251220703, 0.030895499512553215, 0.02379203960299492, 0.038704752922058105, -0.009818485006690025, 0.011702495627105236, -0.01947759836912155, 0.006528581026941538, 0.021606359630823135, 0.008828098885715008, 0.04954208433628082, 0.019989866763353348, 0.014901329763233662, 0.037384238094091415, 0.03148745372891426, -0.043964046984910965, 0.009642036631703377, -0.0008594731916673481, -0.037270400673151016, 0.0019679658580571413, -0.010524277575314045, -0.0038903967943042517, 0.03034907951951027, -0.034720439463853836, -0.03708826005458832, 0.008759796619415283, -0.043918512761592865, -0.029370076954364777, 0.02351882867515087, -0.0262736976146698, 0.0019693889189511538, -0.03185173496603966, 0.0006737757357768714, -0.020012633875012398, -0.0195458997040987, -0.0032529067248106003, 0.011668344959616661, 0.010985319502651691, -0.018965329974889755, 0.040207408368587494, 0.013558047823607922, 0.022027557715773582, -0.0003770867479033768, 0.012522125616669655, -0.004234755411744118, -0.007086385041475296, -0.018988097086548805, -0.02996203303337097, 0.022027557715773582, 0.020456600934267044, -0.008270295336842537, 0.009716031141579151, -0.025954952463507652, 0.02768528275191784, -0.030553987249732018, 0.01976219192147255, -0.01565265841782093, -0.012886405922472477, 0.05619019642472267, -0.020547671243548393, 0.06292937695980072, -0.0004859438631683588, -0.011639885604381561, -0.006653802469372749, 0.0024617360904812813, -0.02111685834825039, 0.0018427446484565735, -0.012055392377078533, -0.008913476951420307, 0.002834554063156247, 0.00856627244502306, 0.008930552750825882, -0.03253475949168205, 0.021446986123919487, 0.010177073068916798, -0.009340367279946804, -0.0001575938076712191, 0.020502135157585144, 0.008054004050791264, -0.0050031584687530994, 0.004695797339081764, -0.017451290041208267, 0.011355291120707989, 0.014776108786463737, 0.021594975143671036, 0.042689066380262375, -0.029734358191490173, 0.024292925372719765, -0.04444216191768646, -0.0012977475998923182, -0.04571714252233505, -0.02996203303337097, -0.019352376461029053, 0.05537056550383568, 0.0008196300477720797, -0.004140839446336031, 0.025180857628583908, 0.039865896105766296, 0.022084476426243782, 0.0006317981751635671, 0.025180857628583908, -0.0031931421253830194, -0.00025791311054490507, 0.02092333510518074, -0.0049917749129235744, 0.01845305971801281, 0.010968243703246117, -0.003984312992542982, 0.01703009195625782, -0.0044709681533277035, 0.025863882154226303, -0.009038697928190231, -0.027867421507835388, 0.03173789754509926, 0.008941936306655407, -0.007148995529860258, 0.02914240211248398, -0.023245619609951973, 0.003218755591660738, -0.019397912546992302, -0.01831645518541336, 0.003961545415222645, -0.005401589907705784, -0.011793565936386585, 0.0026979490648955107, -0.014241072349250317, -0.003181758336722851, 0.005532503128051758, -0.011429285630583763, -0.02351882867515087, 0.03264859691262245, -0.02479380927979946, -0.002214139560237527, -0.007849096320569515, -0.01581203006207943, -0.004883629269897938, 0.025863882154226303, 0.0130230113863945, 0.05122688040137291, 0.0018498594872653484, 0.009966474026441574, 0.021947871893644333, -0.0066367266699671745, 0.029279006645083427, -0.007410821970552206, -0.023040711879730225, -0.02092333510518074, -0.0016406831564381719, 0.025362996384501457, -0.017314685508608818, -0.00851504597812891, 0.034811511635780334, -0.006659494247287512, -0.02606878988444805, -0.018191233277320862, 0.02090056613087654, -0.016529206186532974, 0.010342137888073921, -0.0012109464732930064, -0.010222608223557472, -0.02123069576919079, -0.012419672682881355, 0.003158990992233157, -0.016358450055122375, 0.01720084808766842, 0.021378684788942337, -0.02257397770881653, 0.004957623314112425, 0.02472550794482231, -0.0038220942951738834, -0.006528581026941538, -0.00014051818288862705, -0.04353146255016327, -0.017337452620267868, 0.03763468191027641, -0.0034521224442869425, 0.00721160601824522, -0.004747024271637201, 0.007467740681022406, -0.018919793888926506, 0.005569500382989645, 0.006687953602522612, 0.005654878448694944, -0.012032624334096909, -0.011230070143938065, -0.036200329661369324, 0.001926699886098504, 0.023257004097104073, -0.0076783401891589165, -0.0038420159835368395, -0.033399924635887146, 0.009317600168287754, -0.011577274650335312, -0.0048608616925776005, 0.004391281865537167, -0.006522889249026775, -0.008122306317090988, -0.01113330852240324, 0.0019807727076113224, 0.00375663791783154, -0.0007847673259675503, -0.034970883280038834, 0.001706139650195837, -0.026683513075113297, -0.013740187510848045, -0.021458370611071587, -0.010991011746227741, 0.03321778401732445, -0.03128254786133766, -0.01451428234577179, 0.02734377048909664, 0.018680734559893608, 0.013068546541035175, -0.03192003816366196, 0.016255997121334076, -0.03656460717320442, -0.03003033436834812, 0.011713880114257336, 0.00013616033538710326, -0.005253600887954235, 0.007803561165928841, 0.017542360350489616, 0.024383993819355965, 0.02738930471241474, 0.01706424355506897, 0.010256759822368622, -0.03676951676607132, 0.0016349912621080875, -0.011002395302057266, -0.03016694076359272, -0.012089543975889683, -0.025818347930908203, -0.018612433224916458, -0.0131368488073349, 0.00692132068797946, -0.027844654396176338, 0.0007563079707324505, 0.013250686228275299, 0.005868323612958193, -0.03162406012415886, -0.008287371136248112, -0.00524221733212471, 3.363987343618646e-05, 0.008042620494961739, -0.05792052671313286, -0.00310776405967772, -0.03695165738463402, 0.022801652550697327, -0.028208935633301735, -0.009516815654933453, -0.028482144698500633, -0.004294520244002342, -0.027912957593798637, -0.02098025381565094, 0.019955715164542198, 0.002279596170410514, 0.029483914375305176, -0.011531739495694637, -0.01823676936328411, -0.04330378770828247, -0.007871863432228565, -0.003198833903297782, -0.012408288195729256, -0.008110922761261463, 0.021651893854141235, 0.007285600528120995, 0.02107132226228714, -0.026501372456550598, 0.002421892946586013, 0.02248290739953518, 0.0030508453492075205, -0.010302294977009296, 0.04309888184070587, 0.0031618368811905384, 0.019944332540035248, 0.007769410032778978, -0.008845174685120583, 0.013740187510848045, -0.02474827505648136, 0.007854788564145565, -0.009368826635181904, 0.02477104216814041, -0.02083226479589939, -0.025454066693782806, -0.03387804329395294, 0.042893972247838974, 0.011588658206164837, -0.006944088265299797, -0.004764099605381489, 0.014730573631823063, 0.02100302092730999, 0.010979628190398216, -0.009044390171766281, -0.009738799184560776, 0.013979245908558369, 0.024611668661236763, 0.003429354866966605, 0.005814251024276018, -0.00040768057806417346, -0.004858015570789576, 0.0035659600980579853, -0.026865651831030846, 0.008253219537436962, -0.0008075348450802267, -0.014002013951539993, 0.03328608721494675, -0.02506702020764351, 0.021526673808693886, 0.02086641639471054, -0.02763974666595459, 0.024566134437918663, -0.00022696352971252054, 0.008389824070036411, -0.0051198420114815235, 0.004715718794614077, -0.016051089391112328, 0.0012820949777960777, 0.0070806932635605335, 0.008435359224677086, -0.02098025381565094, -0.005202373955398798, 0.026865651831030846, -0.005182452499866486, -0.016119390726089478, -0.037452541291713715, 0.0024645819794386625, -0.02085503190755844, -0.013330372050404549, 0.01600555330514908, 0.02079811319708824, -0.00043791867210529745, 0.005301982164382935, -0.037475306540727615, -0.013273453339934349, 0.08528706431388855, 0.020536286756396294, 0.0014841565862298012, 0.009647728875279427, 0.025727277621626854, 0.011639885604381561, 0.02372373640537262, -0.018657967448234558, 0.02090056613087654, -0.04633186757564545, -0.03538069874048233, 0.018145699054002762, -0.015504668466746807, 0.008099539205431938, 0.02111685834825039, -0.014821643941104412, 0.00496046943590045, -0.019420679658651352, -0.021298998966813087, 0.013774339109659195, 0.024406762793660164, 0.0393194742500782, -0.004027002025395632, 0.017849721014499664, -0.007632805034518242, 0.021469755098223686, 0.02345052734017372, -0.006192760542035103, -0.010211224667727947, 0.0023080555256456137, 0.021959256380796432, 0.03574497625231743, 0.023200083523988724, 0.008583348244428635, -0.016551973298192024, -0.03642800450325012, -0.013580814935266972, 0.028595982119441032, -0.014104467816650867, 0.007928782142698765, 0.037498075515031815, -0.04034401476383209, 0.007319751661270857, 0.004752716049551964, 0.012203381396830082, -0.010996703058481216, 0.026820117607712746, 0.020319994539022446, 0.014730573631823063, -0.04241585731506348, 0.028004027903079987, -0.026774581521749496, -0.0019380835583433509, -0.0098924795165658, 0.0012963246554136276, 0.03442446142435074, -0.002327976981177926, -0.025249158963561058, 0.005908166524022818, -0.015151772648096085, -0.015436366200447083, -0.0033582064788788557, -0.0012301566312089562, -0.027935724705457687, 0.012112311087548733], [0.05708030238747597, 0.0347340852022171, 0.018675243481993675, 0.009497810155153275, -0.02473568730056286, 0.018421612679958344, -0.01987665332853794, 0.001520116813480854, 0.04770930856466293, 0.0009552874253131449, -0.007782463915646076, 0.0054964483715593815, -0.01899562031030655, 0.0013624317944049835, 0.013001920655369759, 0.028700338676571846, -0.01693987473845482, 0.03342588245868683, -0.009497810155153275, 0.013909652829170227, 0.057827845215797424, 0.05510465055704117, -0.007301900070160627, -0.00788925588130951, -0.004538658075034618, 0.012821709737181664, 0.021078063175082207, 0.019302645698189735, 0.04915099963545799, -0.007915954105556011, 0.04498611390590668, -0.029794955626130104, 0.046160824596881866, -0.05350277200341225, -0.000798436754848808, 0.05825501307845116, -0.01989000290632248, 0.05446389690041542, 0.046347711235284805, -0.011066316626966, -0.021478531882166862, 0.025857003405690193, -0.023948095738887787, -0.01808788813650608, 0.008596752770245075, 0.04757581651210785, 0.01097287330776453, -0.01418998185545206, -0.04140858352184296, 0.016806384548544884, 0.03871208429336548, 0.043838098645210266, 0.03724369406700134, -0.01218763180077076, 0.02310710959136486, 0.013182132504880428, -0.025937097147107124, 0.04794958978891373, 0.026938270777463913, -0.03556172177195549, -0.023267297074198723, -0.006230643484741449, 0.008082816377282143, 0.04244980216026306, -0.044024985283613205, -0.02318720333278179, -0.031476929783821106, 0.06690516322851181, -0.07021570950746536, 0.019729813560843468, 0.02813968062400818, -0.0025696814991533756, 0.014403565786778927, -0.05069948360323906, 0.004772265441715717, 0.024428660050034523, -0.00836981926113367, 0.036068983376026154, 0.005413017235696316, 0.01987665332853794, 0.00010314184328308329, 0.01764737069606781, -0.027525627985596657, 0.021732162684202194, -0.02902071550488472, 0.02652445249259472, -0.07406022399663925, 0.011840558610856533, 0.009197457693517208, -0.018875477835536003, -0.04989854246377945, -0.019930049777030945, 0.022412961348891258, 0.04266338795423508, -0.014990921132266521, 0.029981842264533043, 0.002094123512506485, -0.013549230061471462, -0.0753951221704483, 0.12879110872745514, 0.001435016980394721, 0.003278846852481365, -0.007755766157060862, -0.010992896743118763, 0.039726607501506805, -0.03697671368718147, -0.04271678254008293, 0.03395984321832657, -0.011186457239091396, -0.04386479780077934, -0.01155355479568243, -0.021184854209423065, -0.00855003111064434, 0.1097821295261383, 0.008222980424761772, 0.010265377350151539, -0.01727359928190708, -0.03574860841035843, 0.019022317603230476, -0.002532971790060401, -0.005513134878128767, 0.0360155887901783, 0.002865028101950884, -0.10038444399833679, -0.041702259331941605, -0.015177806839346886, -0.01736704260110855, 0.008002722635865211, -0.019489532336592674, -0.06071122735738754, 0.02732539176940918, -0.03235796466469765, 0.0399668887257576, -0.04327744245529175, 0.002406156389042735, 0.011880605481564999, -0.01891552470624447, -0.028620244935154915, -0.030942969024181366, -0.007361970841884613, -0.006727893371134996, 0.0030702687799930573, 0.04899081215262413, 0.00927755143493414, 0.0007700701244175434, -0.007014896720647812, -0.02318720333278179, 0.05304890498518944, 0.0009002228616736829, 0.022359566763043404, -0.07293890416622162, -0.018488356843590736, -0.011887280270457268, -0.031663816422224045, -0.027338741347193718, 0.0020791059359908104, 0.02070429176092148, 0.02123825065791607, -0.00047597510274499655, 0.022359566763043404, -0.016793034970760345, -0.0033472604118287563, -0.04442545399069786, -0.00935764517635107, 0.025496579706668854, -0.054330408573150635, -0.011313272640109062, 0.026631245389580727, -0.04933788627386093, -0.014537055045366287, -0.04172895848751068, 0.0096713462844491, -0.03163711726665497, 0.02525629848241806, -0.044265266507864, -0.03604228422045708, 0.03395984321832657, -0.0031854037661105394, -0.026390962302684784, -0.021985793486237526, 0.011753790080547333, -0.004818987101316452, -0.05211447551846504, 0.01621902920305729, -0.01756727695465088, 0.013562578707933426, -0.01855510286986828, -0.011126386933028698, 0.014443612657487392, -0.025590023025870323, 0.015444787219166756, -0.0239881444722414, 0.01414993405342102, 0.047789402306079865, 0.013395716436207294, -0.02175886183977127, -0.025750210508704185, -0.026097284629940987, 0.005846859887242317, 0.021879002451896667, 0.00011722085764631629, -0.023681117221713066, -0.0027215261943638325, 0.05804143100976944, -0.042609989643096924, -0.02480243146419525, 0.01712675951421261, 0.07998717576265335, 0.0211448073387146, -0.025656767189502716, 0.008049444295465946, -0.04765591025352478, -0.03190409764647484, 0.039352837949991226, -0.004495273809880018, -0.0023510917089879513, 0.03366616368293762, -0.005760091356933117, -0.009217481128871441, 0.03323899582028389, -0.023627720773220062, 0.024695640429854393, 0.001586027443408966, 0.04989854246377945, -0.01244793739169836, 0.013135410845279694, -0.030702687799930573, -0.04074113070964813, -0.04808307811617851, -0.08441904187202454, -0.044211871922016144, 0.029981842264533043, 0.02741883508861065, -0.0340399369597435, -0.028059586882591248, 0.05761426314711571, -0.07379323989152908, -0.02776590920984745, 0.0007095825276337564, -0.009898279793560505, 0.0061405375599861145, -0.006981524173170328, 0.027552325278520584, 0.027125157415866852, -0.005319574382156134, -0.02992844581604004, -0.00197064527310431, 0.01196069922298193, 0.033986542373895645, 0.03182400390505791, 0.027178553864359856, -0.045813750475645065, -0.002728200750425458, -0.0485636442899704, 0.02338743954896927, -0.007041594944894314, 0.0040347338654100895, -0.0006499291630461812, 0.003120327601209283, -0.012841733172535896, -0.010131887160241604, -0.02257315069437027, -0.01942278817296028, 0.00716841034591198, -0.06824006140232086, -0.0012806692393496633, 0.04469243437051773, -0.0040847924537956715, 0.03163711726665497, 0.04068773612380028, -0.04677487909793854, 0.04271678254008293, 0.033719561994075775, -0.06306064873933792, -0.007682346273213625, -0.007221806328743696, -0.00386453396640718, -0.03262494504451752, 0.011566904373466969, -0.0017420437652617693, -0.06962835788726807, -0.024028191342949867, 0.04640110582113266, -0.04741562902927399, 0.011426739394664764, -0.006380819715559483, 0.04605403169989586, -0.024495406076312065, -0.022092586383223534, 0.025136157870292664, 0.0469350665807724, -0.04920439422130585, 0.014056491665542126, -0.04162216559052467, 0.01316878292709589, -0.04023386910557747, -0.0350811593234539, 0.030382312834262848, -0.024962620809674263, -0.050192221999168396, 0.028433358296751976, 0.01621902920305729, 0.04020717367529869, 0.05574540048837662, 0.047789402306079865, 0.010385517962276936, -0.0014775668969377875, -0.016873128712177277, -0.03620247542858124, -0.016819734126329422, 0.021798908710479736, -0.019849956035614014, -0.05256834253668785, -0.045199695974588394, -0.03574860841035843, -0.029367787763476372, -0.033185601234436035, 0.018034491688013077, 0.04378470405936241, 0.0024662266951054335, 0.028353264555335045, 0.016779687255620956, 0.022733338177204132, -0.0075288331136107445, 0.05240815505385399, -0.03019542619585991, -0.01907571405172348, 0.04132848605513573, -0.004925779066979885, -0.026457708328962326, -0.019476182758808136, -0.006037082988768816, -0.008263027295470238, 0.020370565354824066, -0.014230028726160526, -0.03195749223232269, 0.031156552955508232, 0.014323471114039421, -0.010879430919885635, -0.035508327186107635, -7.587026175315259e-06, -0.018221378326416016, -0.005403005518019199, 0.030035238713026047, 0.012487984262406826, -0.007702370174229145, 0.009778138250112534, 0.05347607284784317, -0.03339918330311775, 0.014296773821115494, 0.025549976155161858, 0.0003145356895402074, 0.008256353437900543, -0.0241082850843668, -0.05438380315899849, -0.0594831220805645, 0.0076489741913974285, -0.01620567962527275, -0.05777445062994957, 0.0062740277498960495, 0.003340585855767131, -0.007956000976264477, 0.035241346806287766, 0.001877202419564128, -0.0014592120423913002, -0.0029467905405908823, 0.011206480674445629, -0.00035520840901881456, 0.0012197643518447876, -0.040260568261146545, 0.029447883367538452, 0.03441371023654938, 0.013762813992798328, -0.02660454623401165, -0.008403192274272442, 0.05214117467403412, 0.0024361915420740843, 0.05005872994661331, -0.02382795512676239, 0.008389843627810478, 0.029875049367547035, 0.0011972379870712757, 0.001591867650859058, -0.00333724869415164, 0.046160824596881866, -0.01648600772023201, -0.01747383363544941, 0.019209204241633415, 0.010051793418824673, 0.01962302252650261, -0.007448738906532526, -0.03737718611955643, -0.009951675310730934, 0.02017033100128174, -0.0356685146689415, 0.03302541375160217, 0.004128176718950272, 0.007468762341886759, 0.019035667181015015, -0.02266659401357174, 0.012508007697761059, -0.01294185034930706, 0.007462088018655777, -0.022172680124640465, 0.04928448796272278, 0.016245726495981216, -0.00423163129016757, 0.03428021818399429, 0.008483286015689373, -0.048857320100069046, 0.01918250508606434, 0.027659116312861443, 0.03278513252735138, -0.0009694707696326077, -0.006681171711534262, 0.0363626629114151, 0.01683308184146881, 0.010559055022895336, -0.017500532791018486, 0.0036008914466947317, 0.038124728947877884, -0.02533639222383499, 0.009157410822808743, 0.027979493141174316, 0.009891605004668236, -0.009744766168296337, -0.015004269778728485, 0.016085539013147354, 0.030595896765589714, -0.03772426024079323, -0.021078063175082207, 0.01491082739084959, 0.03126334398984909, 0.01747383363544941, -0.06722553819417953, 0.0023894701153039932, -0.01719350554049015, 0.00012326962314546108, 0.013669370673596859, -0.004525309428572655, -0.017513880506157875, -0.027018364518880844, 0.018328169360756874, 0.06658478826284409, -0.012314448133111, 0.0035775306168943644, -0.022866828367114067, 0.05366295948624611, 0.03198419138789177, -0.018328169360756874, 0.006767940241843462, -0.004648787435144186, -0.07293890416622162, -0.032384660094976425, 0.013001920655369759, -0.012174283154308796, 0.00985155813395977, -0.06327423453330994, 0.003754404839128256, -0.02266659401357174, 0.047335535287857056, 0.05537163093686104, 0.06434215605258942, 0.021812258288264275, -0.01604549214243889, 0.0055097974836826324, -0.005022559314966202, -0.030142029747366905, -0.01960967294871807, -0.01800779439508915, -0.0011680370662361383, -0.013555903919041157, 0.058094825595617294, 0.02669798955321312, 0.04036736115813255, -0.011339970864355564, 0.016712941229343414, -0.0017787535907700658, 0.03385305032134056, -0.005503123160451651, 0.022012492641806602, 0.02608393505215645, -0.04933788627386093, -0.031930796802043915, 0.012347820214927197, 0.035615116357803345, 0.05745407193899155, 0.014363517984747887, -0.07309909164905548, -0.008169584907591343, -0.0472821407020092, -0.02464224398136139, 0.02597714401781559, -0.014870780520141125, 0.005309562664479017, 0.023080412298440933, 0.015484834089875221, -0.032464753836393356, 0.010018420405685902, 0.02625747211277485, 0.033105507493019104, -0.05179410055279732, -0.014683893881738186, 0.03807133436203003, 0.027445532381534576, 0.012708242982625961, 0.020904526114463806, 0.022105935961008072, 0.029581371694803238, 0.0020924548152834177, -0.02222607657313347, 0.0419425405561924, 0.01774081401526928, -0.011540206149220467, -0.0023611034266650677, -0.04485262185335159, -5.112769213155843e-05, -0.010038443841040134, -0.022092586383223534, -0.012721591629087925, 0.0031019726302474737, 0.024482056498527527, -0.02749892883002758, 0.0018021143041551113, 0.00647092517465353, -0.012154259718954563, 0.006320748943835497, -0.09087995439767838, -0.007428715471178293, -0.040714435279369354, -0.045466676354408264, -0.030409010127186775, -0.039646513760089874, -0.00836981926113367, -0.010211980901658535, -0.0027899399865418673, 0.00783586036413908, 0.026297518983483315, 0.01916915737092495, -0.014884129166603088, 0.006914779078215361, 0.003510785521939397, 0.018141284584999084, -0.002112478483468294, 0.027739211916923523, 0.009230829775333405, -0.0023577662650495768, 0.021612022072076797, -0.002052407944574952, -0.008022746071219444, -0.01647266000509262, -0.024308519437909126, 0.01924925111234188, -0.022626545280218124, 0.00599703611806035, 0.02384130470454693, -0.004902418237179518, -0.0075154840014874935, 0.007415366359055042, 0.022986968979239464, 0.012961873784661293, -0.03476078063249588, -0.00877696368843317, 0.018328169360756874, -0.030328916385769844, 0.043944891542196274, 0.01971646584570408, 0.009611275978386402, -0.0236410703510046, -0.010245353914797306, -0.048430152237415314, 0.04172895848751068, 0.02498931810259819, 0.01783425733447075, 9.010571375256404e-05, 0.0030752746388316154, 0.049044206738471985, -0.04010038077831268, 0.003534146351739764, 0.023000318557024002, 0.01414993405342102, 0.031023064628243446, -0.009824859909713268, -0.023240599781274796, -0.022052539512515068, 0.0005201936583034694, -0.010005071759223938, -0.02437526360154152, 0.03521464765071869, 0.00010700053826440126, -0.006397505756467581, -0.0236410703510046, 0.011500159278512001, -0.003861196804791689, 0.0119073037058115, 0.042770180851221085, -0.03468068689107895, 0.0033989876974374056, 0.007301900070160627, 0.016138935461640358, 0.020116934552788734, 0.0036976714618504047, 0.01334899477660656, -0.009350970387458801, -0.052087776362895966, -0.003355603665113449, 0.009604602120816708, -0.003363946685567498, 0.023868001997470856, 0.017860954627394676, 0.01612558588385582, 0.02014363370835781, 0.021158156916499138, -0.019689766690135002, -0.06984194368124008, -0.01317545771598816, -0.01799444481730461, -0.005543170031160116, -0.03297201544046402, -0.000601121922954917, -0.01711341179907322, 0.00806279294192791, 0.027979493141174316, 0.007355296052992344, 0.014710592105984688, 0.032037585973739624, 0.01406984031200409, -0.039993587881326675, 0.02616403065621853, -0.008216306567192078, -0.0119073037058115, 0.025216251611709595, 0.004738893359899521, -0.02713850699365139, -0.020584149286150932, 0.037670861929655075, -0.0018505044281482697, -0.0069548264145851135, 0.023534277454018593, 0.05659973621368408, 0.007241829764097929, -0.0004588716838043183, 0.017500532791018486, -0.032117679715156555, 0.02589705027639866, 0.023227250203490257, 0.03251815214753151, -0.000782167655415833, 0.020303821191191673, -0.012548055499792099, 0.03249145299196243, 0.025122808292508125, 0.00578011479228735, -0.0074086920358240604, 0.0100784907117486, -0.004355109762400389, 0.004244980402290821, 0.028273170813918114, -0.014697243459522724, 0.023053713142871857, -0.025096110999584198, -0.006334098055958748, 0.009724742732942104, 0.006928128190338612, 0.06124518811702728, 0.015645021572709084, 0.0555318184196949, 0.0028116321191191673, 0.015284598805010319, -0.02357432432472706, 0.008036094717681408, -0.02616403065621853, 0.0422896146774292, -0.0047522420063614845, 0.02894061990082264, -0.0062740277498960495, 0.00913071259856224, 0.00828972551971674, -0.038658689707517624, 0.026898223906755447, -0.0030635942239314318, -0.028193077072501183, -0.004338423255831003, -0.0006945648929104209, -0.01774081401526928, -0.018741989508271217, -0.008436564356088638, 0.024335216730833054, -0.0008751934510655701, -0.0021141469478607178, -0.008162910118699074, -0.018661893904209137, 0.011887280270457268, -0.031663816422224045, 0.017046665772795677, 0.02947458066046238, 0.010992896743118763, 0.001698659616522491, -0.048590339720249176, -0.023667767643928528, 0.005172735545784235, 0.012875105254352093, -0.017593974247574806, -0.0641285702586174, -0.03537483513355255, -0.0028016201686114073, 0.01692652516067028, 0.0300886332988739, 0.03831161558628082, 0.013936350122094154, -0.005669985432177782, -0.018701940774917603, -0.03916595131158829, 0.0006566036609001458, -0.02687152661383152, -0.018968921154737473, 0.005049257073551416, 0.004445215221494436, 0.03452049940824509, -0.006594403181225061, -0.011179783381521702, -0.025643419474363327, -0.02982165478169918, 0.01656610332429409, -0.015444787219166756, -0.0209712702780962, -0.03953972086310387, 0.00967802107334137, 0.009891605004668236, 0.03529474139213562, 0.01092615257948637, 0.012074165977537632, -0.032304566353559494, 0.007548856548964977, 0.010592427104711533, 0.009884930215775967, -0.01819467917084694, -0.014109887182712555, -0.010232004337012768, -0.02141178771853447, 0.044906020164489746, -0.023814607411623, 0.002678142162039876, -0.03251815214753151, -0.010512333363294601, -0.03302541375160217, 0.0020207040943205357, -0.004622089210897684, -0.04146197810769081, -0.010532356798648834, -0.017180155962705612, 0.011887280270457268, -0.030035238713026047, -0.019102411344647408, 0.00035854565794579685, -0.03617577627301216, 0.0035575071815401316, 0.019462835043668747, -0.01271491777151823, 0.016138935461640358, -0.002472901251167059, -0.0111530851572752, 0.009077316150069237, 0.0694681704044342, 0.03953972086310387, -0.014697243459522724, -0.017353693023324013, -0.01088610477745533, -0.011166433803737164, -0.020183680579066277, -0.0003762747801374644, -0.04146197810769081, -0.006173910107463598, 0.0023377425968647003, 0.016459310427308083, -0.013602625578641891, -0.01990335062146187, -0.047335535287857056, -0.008423215709626675, -0.029875049367547035, 0.021531928330659866, -0.0035641815047711134, -0.0054897740483284, 0.017620673403143883, 0.014483659528195858, 0.021972445771098137, 0.006130525842308998, -0.012881780043244362, 0.019329344853758812, -0.014990921132266521, 0.0071617355570197105, -0.026484405621886253, -0.008102839812636375, -0.05115334689617157, -0.03953972086310387, 0.008269702084362507, 0.0022709977347403765, -0.05734728276729584, -0.01754057966172695, 0.03983340039849281, -0.06295385956764221, 0.007668997626751661, -0.036950018256902695, -0.0035441580694168806, 0.0528620183467865, 0.01971646584570408, -0.05649294704198837, 0.02649775519967079, -0.004802301060408354, -0.00361757748760283, 0.011480135843157768, 0.018475009128451347, 0.033639468252658844, 0.0038244870956987143, 0.029260996729135513, -0.061939336359500885, -0.053449373692274094, 0.0601772665977478, -0.029314393177628517, -0.035882096737623215, 0.033265694975852966, -0.004775602836161852, 0.021571975201368332, -0.016686243936419487, 0.03537483513355255, 0.006207282654941082, -0.04317064955830574, 0.01418998185545206, 0.008710219524800777, -0.030489103868603706, 0.005820161662995815, 0.009637974202632904, 0.025723513215780258, -0.014029793441295624, -0.026818130165338516, 0.026137331500649452, 0.005696683656424284, 0.042049333453178406, -0.00037773483199998736, 0.01962302252650261, 0.017180155962705612, -0.04060764238238335, -0.03951302543282509, 0.006414191797375679, -0.02732539176940918, 0.0350811593234539, -0.009491135366261005, -0.006968175061047077, -0.016018792986869812, 0.01872863993048668, 0.008683521300554276, 0.02400149218738079, 0.008750266395509243, 0.001847167150117457, -0.007662322837859392, -0.029955144971609116, 0.031743910163640976, 0.005202770698815584, -0.037216998636722565, 0.006908104754984379, -0.017153458669781685, -0.011880605481564999, 0.007962675765156746, -0.03513455390930176, -0.0036843225825577974, 0.008850383572280407, 0.0009419384296052158, 0.010058467276394367, -0.01818133145570755, -0.007588903419673443, 0.019569626078009605, -0.012568078935146332, -0.004221619572490454, -0.046000637114048004, -0.0462409183382988, -0.021785559132695198, -0.020744338631629944, 0.0635412186384201, 0.04063434153795242, -0.024081585928797722, 0.016512706875801086, 0.009504484012722969, 0.025056062266230583, -0.011319947429001331, 0.01536469254642725, 0.0012931838864460588, 0.0015317971119657159, 0.043491024523973465, 0.0052394806407392025, 0.01513775996863842, -0.01523120328783989, 0.008129538036882877, 0.017060015350580215, -0.03088957443833351, -0.0072952257469296455, -0.018114585429430008, -0.0026547813322395086, 0.0006828845362178981, 0.018968921154737473, -0.007435390260070562, -0.049498073756694794, -0.005079292692244053, -0.013108712621033192, -0.01648600772023201, -0.03574860841035843, 0.052621737122535706, 0.008476611226797104, 0.002039059065282345, -0.014977572485804558, 0.021291647106409073, 0.010005071759223938, -0.011533531360328197, -0.01918250508606434, -0.0025096109602600336, 0.016512706875801086, 0.015271250158548355, -0.038551896810531616, -0.017620673403143883, -0.010312098078429699, -0.012514682486653328, 0.037216998636722565, -0.012394541874527931, -0.003741055727005005, 0.012427913956344128, 0.010692545212805271, -0.008209631778299809, -0.015871955081820488, -0.012514682486653328, 0.03441371023654938, -0.023320693522691727, -0.03169051185250282, 0.04688166826963425, 0.01008516550064087, 0.01990335062146187, -4.935477772960439e-05, -0.026217425242066383, -0.011052967980504036, -0.013896303251385689, 0.02803288958966732, 0.008750266395509243, 0.016966572031378746, 0.02348088100552559, -0.027525627985596657, -0.024668943136930466, -0.027899399399757385, 0.010699219070374966, 0.002244299743324518, 0.01447030995041132, -0.005256166681647301, -0.004541995469480753, -0.02392139844596386, 0.003487424924969673, 0.02121155336499214, -0.014043142087757587, 0.00855670589953661, -0.008309748955070972, 0.026804780587553978, -0.012861756607890129, -0.014497008174657822, -0.0008868738659657538, 0.001196403638459742, -0.004458564333617687, 0.03484087809920311, -0.007762440480291843, 0.010966199450194836, 0.007115014363080263, 0.03347927704453468, -0.02704506367444992, 0.011313272640109062, -0.012521357275545597, -0.0002515451342333108, 0.010472286492586136, 0.014216679148375988, 0.006314074620604515, -0.0343870110809803, -0.0031803979072719812, 0.03401323780417442, -0.0054897740483284, -0.0029250984080135822, 0.019930049777030945, 0.010465611703693867, 0.04247650131583214, 0.05024561658501625, 0.008523332886397839, -0.0023861327208578587, 0.005606577731668949, 0.0422896146774292, -0.009985048323869705, -0.0017887653084471822, 0.01924925111234188, -0.025870351120829582, 0.047255441546440125, -0.014577101916074753, 0.0015676725888624787, -0.013482484966516495, 0.022626545280218124, 0.019943397492170334, 0.028727035969495773, -0.005382982082664967, -0.00010189037129748613, 0.004315062426030636, -0.003405662253499031, 0.0018822082784026861, 0.029901748523116112, 0.005673322826623917, 0.007034920156002045, 0.02310710959136486, -0.0015025961911305785, 0.01545813586562872, 0.014697243459522724, 0.026444358751177788, -0.00249793054535985, 0.0027181890327483416, 0.020851129665970802, 0.006711207330226898, -0.036335963755846024, 0.024401962757110596, -0.0008418209617957473, 0.005009210202842951, 0.0009761452674865723, -0.020210377871990204, 0.02811298333108425, 0.02597714401781559, 0.02652445249259472, 0.024695640429854393, -0.00805611815303564, -0.005403005518019199, -0.0017587300390005112, 0.0033906446769833565, 0.02357432432472706, -0.011093014851212502, 0.00501588499173522, 0.001860516145825386, 0.02490922436118126, 0.0367097370326519, -0.01187393069267273, 0.0016561096999794245, -0.014657196588814259, -0.028166379779577255, 0.01392300147563219, -0.0472821407020092, -0.008750266395509243, -0.025750210508704185, 0.030675990507006645, -0.00886373221874237, -0.012741615064442158, 0.016726290807127953, 0.0027432183269411325, -0.005182747263461351, 0.014630498364567757, -0.016966572031378746, 0.026818130165338516, -0.028780432417988777, -0.005710032302886248, 0.014750638976693153, -0.009411041624844074, 0.002124158898368478, -0.020303821191191673, -0.0327584333717823, 0.002583030378445983, 0.008536682464182377, -0.018488356843590736, -0.010672521777451038, 0.027271997183561325, 0.00015883217565715313, -0.036068983376026154, -0.03743058070540428, -0.02365441806614399, -0.030035238713026047, -0.002324393717572093, 0.009197457693517208, 0.017447136342525482, 0.05296881124377251, 0.013395716436207294, -0.008610101416707039, 0.00707496702671051, -0.00814956147223711, -0.024028191342949867, -0.020544102415442467, -0.010545705445110798, -0.004141525831073523, 0.010018420405685902, -0.006354121491312981, -0.015725115314126015, -0.004208270460367203, 0.015618324279785156, -0.009497810155153275, 0.031316742300987244, 0.012147584930062294, 0.021652068942785263, -0.04434536024928093, 0.03777765482664108, -0.03510785475373268, 0.030435707420110703, 0.0234675332903862, -0.005423028953373432, 0.02239961363375187, 0.014363517984747887, 0.02516285516321659, 0.019943397492170334, 0.06439555436372757, 0.028006190434098244, 0.017353693023324013, -0.03913925215601921, 0.03521464765071869, -0.007942652329802513, -0.017620673403143883, 0.01871529035270214, 0.01720685511827469, 0.02856684848666191, 0.03478747978806496, 0.006621101405471563, 0.010445588268339634, -0.006547681987285614, 0.01456375326961279, -0.0031904098577797413, 0.004465238656848669, 0.024935921654105186, 0.0006261512753553689, 0.022132633253932, -0.05417022109031677, -0.004081455059349537, -0.02840666100382805, -0.007842534221708775, -0.010999571532011032, 0.012087514623999596, -0.03339918330311775, 0.029447883367538452, 0.03035561367869377, -0.00732192350551486, 0.014176632277667522, -0.021304994821548462, 0.004094804171472788, -0.04146197810769081, -0.00142667384352535, -0.010512333363294601, -0.010211980901658535, -0.030569197610020638, -0.012981897220015526, 0.017420439049601555, 0.043571118265390396, 0.014483659528195858, -0.0002617654390633106, -0.0026164029259234667, 0.0036042286083102226, 0.01017193403095007, -0.0009953344706445932, 0.06952156126499176, 0.04202263429760933, 0.005776777397841215, 0.007041594944894314, -0.0039012436755001545, -0.006170572713017464, -0.016459310427308083, 0.014697243459522724, 0.007388668600469828, 0.006961500737816095, 0.00788925588130951, 0.03243805840611458, 0.03019542619585991, 0.020023491233587265, -0.015805209055542946, 0.011373343877494335, -0.01898227073252201, -0.020730989053845406, 0.01989000290632248, 0.00434843497350812, 0.003964651376008987, 0.007375319488346577, 0.02741883508861065, -0.014924176037311554, -0.012815034948289394, -0.03625587001442909, 0.002804957563057542, 0.01683308184146881, -0.023427486419677734, 0.019396089017391205, 0.007909279316663742, 0.011580253019928932, -0.003362277988344431, -0.02920760028064251, -0.006270690355449915, -0.01186725590378046, -0.021718814969062805, -0.04202263429760933, 0.02580360695719719, 0.017687417566776276, -0.003694334300234914, -0.004889069125056267, -0.012060816399753094, 0.03377295657992363, 0.019596325233578682, 0.03809802979230881, 0.002639763755723834, -0.016726290807127953, 0.03198419138789177, -0.016098888590931892, -0.021798908710479736, 0.025282995775341988, -0.03921934589743614, -0.02059749886393547, 0.0038678711280226707, 0.003677648026496172, -0.012701568193733692, -0.00805611815303564, -0.03452049940824509, -0.01334899477660656, -0.0032671664375811815, -0.001737037906423211, -0.011593601666390896, -0.0008130372152663767, 0.03476078063249588, 0.0008743591606616974, -0.020023491233587265, -0.04002028703689575, -0.010732592083513737, 0.019049014896154404, 0.016499357298016548, 0.0059202793054282665, 0.008409867063164711, -0.004678822588175535, 0.0016394234262406826, 0.025296345353126526, -0.0067712776362895966, 0.011219830252230167, 0.00016707101895008236, 0.018848780542612076, 0.032277870923280716, -0.01352253183722496, 0.01872863993048668, 0.022786734625697136, -0.033372487872838974, -0.001987331546843052, -0.035161253064870834, 0.02095792256295681, 0.004315062426030636, -0.013295598328113556, 0.01810123771429062, -0.00012806692393496633, -0.008276376873254776, 0.014123236760497093, 0.013709417544305325, 0.004712195135653019, 0.00797602441161871, -0.03476078063249588, 0.014323471114039421, -0.026764733716845512, 0.011453437618911266, -0.030702687799930573, -0.011486809700727463, -0.007248504087328911, -0.013682719320058823, -0.006203945260494947, -0.007949326187372208, 0.017674069851636887, -0.012441263534128666, -0.007662322837859392, -0.018154632300138474, -0.01863519661128521, -0.023520927876234055, -0.011486809700727463, 0.000891879724804312, 0.0009703050600364804, -0.02007688768208027, 0.005710032302886248, 0.0046087405644357204, 0.01952957920730114, 0.007088316138833761, -0.030302217230200768, -0.003340585855767131, 0.02070429176092148, -0.011006246320903301, 0.030168728902935982, -0.045359883457422256, 0.018074538558721542, 0.018848780542612076, -0.008249678649008274, -0.005189421586692333, -0.004335085861384869, 0.028700338676571846, 0.023267297074198723, 0.0043751331977546215, 0.005696683656424284, -0.010018420405685902, -0.018955573439598083, 0.004128176718950272, -0.0067011951468884945, 0.01464384701102972, -0.025296345353126526, 0.013355669565498829, -0.018795384094119072, -0.013882954604923725, 0.020183680579066277, -0.024789083749055862, -0.016192330047488213, -0.02043731138110161, 0.005633275955915451, -0.0008968855836428702, 0.0007446235977113247, -0.015992095693945885, 0.0015142766060307622, 0.009517833590507507, 0.026137331500649452, 0.003172054886817932, -0.01060577668249607, 0.022332867607474327, -0.0006365801673382521, -0.03302541375160217, -0.00476892851293087, -0.0026113970670849085, 0.010552380234003067, 0.009477786719799042, 0.0027448870241642, 0.0030919609125703573, 0.020397264510393143, -0.015057666227221489, -0.004808975383639336, -0.01990335062146187, -0.022599847987294197, 0.016552753746509552, 0.01719350554049015, -0.05166060850024223, -0.006067118141800165, 0.031850703060626984, 0.041088204830884933, -0.027392137795686722, -0.02837996371090412, -0.0009644648525863886, 0.006564368028193712, -0.0017286947695538402, -0.005479762330651283, 0.01746048592031002, -0.043838098645210266, 0.0005473087658174336, -0.018475009128451347, -0.018127935007214546, -0.002511279657483101, 0.028086284175515175, -0.02596379444003105, 0.010619125328958035, -0.01828812249004841, -0.0030252160504460335, -0.01312206219881773, 0.03735048696398735, 0.06487611681222916, 0.0017437124624848366, -0.005649961996823549, 0.005860208533704281, 0.01979655958712101, -0.00886373221874237, -0.010725917294621468, -0.00034728244645521045, -0.01899562031030655, 0.0013098701601848006, 0.01656610332429409, -0.02472233772277832, -0.00036021426785737276, 0.029180902987718582, 0.02077103592455387, 0.018074538558721542, -0.004018047358840704, 0.007809162139892578, -0.02310710959136486, -0.01392300147563219, 0.015604974702000618, -0.025683466345071793, -0.02042396180331707, -0.01997009664773941, -0.002699834294617176, 0.029688164591789246, 0.004969163332134485, -0.01888882741332054, -0.015204505063593388, -0.012160934507846832, 0.008263027295470238, 0.02025042474269867, -0.028967319056391716, -0.00855670589953661, 0.00676126591861248, 0.006130525842308998, -0.04613412544131279, 0.01978321000933647, -0.0037944517098367214, -0.019956747069954872, -0.00953785702586174, -0.015418088994920254, 0.003340585855767131, 0.026844829320907593, -0.013015270233154297, -0.025189552456140518, -0.004445215221494436, 0.02453545294702053, 0.027111807838082314, -0.00788925588130951, -0.022199377417564392, -0.029074110090732574, -0.04650789871811867, 0.014323471114039421, -0.007762440480291843, 0.0216654185205698, -0.020664243027567863, 0.03924604505300522, -0.032117679715156555, 0.00021796405781060457, -0.007555530872195959, -0.026297518983483315, 0.00783586036413908, -0.03315890207886696, -0.05740067735314369, 0.055051255971193314, 0.006754591129720211, -0.026377612724900246, 0.02875373512506485, -0.030702687799930573, -0.007288550958037376, -0.017954397946596146, -0.04002028703689575, -0.004471913445740938, 0.03091627173125744, -0.02579025737941265, -0.01700661890208721, -0.02597714401781559, 0.002429516986012459, -0.010785987600684166, -0.004552007187157869, -0.008750266395509243, 0.05606577917933464, -0.0065076351165771484, 0.013041967526078224, -0.03716360032558441, -0.008997222408652306, 0.026217425242066383, 0.00832309853285551, -0.013776162639260292, 0.03339918330311775, 0.04808307811617851, -0.015124411322176456, 0.013635998591780663, 0.0022376251872628927, -0.015164458192884922, 0.008576729334890842, -0.01640591397881508, 0.036683037877082825, -0.0029317729640752077, -0.0336928628385067, -0.0347340852022171, -0.013415739871561527, -0.0108327092602849, -0.03217107802629471, -0.01846165955066681, -0.016552753746509552, 0.011106363497674465, 0.023894701153039932, 0.017246901988983154, 0.009457762353122234, 0.0075021348893642426, -0.02696496993303299, 0.018581800162792206, -0.011393367312848568, -0.01302861887961626, -0.01997009664773941, -0.03628256916999817, 0.033719561994075775, 0.0060270712710917, -0.017420439049601555, -0.0010904460214078426, 0.040794529020786285, -0.014617149718105793, 0.02615068107843399, -0.00976478960365057, -0.01138001773506403, 0.029581371694803238, 0.007228480651974678, -0.001023701042868197, -0.020290471613407135, -0.010639148764312267, 0.021999143064022064, 0.016873128712177277, -0.0007471265271306038, -0.0006165566737763584, -0.033799655735492706, 0.012154259718954563, 0.0029067436698824167, -0.007942652329802513, -0.002426179824396968, -0.01872863993048668, -0.018141284584999084, 0.014136585406959057, -0.00019825343042612076, 0.0011655341368168592, 0.004498611204326153, 0.03857859596610069, 0.04132848605513573, 0.028193077072501183, -0.015097713097929955, -0.0010186951840296388, -0.011086340062320232, 0.018875477835536003, 0.014657196588814259, -0.02757902257144451, -0.019115760922431946, 0.03823152184486389, -0.00398467481136322, -0.00044802564661949873, -0.015658371150493622, 0.021571975201368332, -0.010866081342101097, -0.012034119106829166, 0.0073953429237008095, -0.010992896743118763, 0.03572190925478935, 0.014216679148375988, -0.026177378371357918, -0.01792770065367222, -0.005666648503392935, 0.034066636115312576, 0.018221378326416016, -0.016793034970760345, -0.005219456739723682, 0.008810336701571941, -0.01133329700678587, 0.009124037809669971, -0.025149505585432053, -0.007068292703479528, -0.0016652870690450072, 0.010559055022895336, 0.019756512716412544, 0.008596752770245075, -0.053155697882175446, -0.008169584907591343, -0.017353693023324013, 0.009491135366261005, -0.031129855662584305, 0.003934616222977638, -0.011226505041122437, -0.00027845168369822204], [0.060956571251153946, 0.009421858936548233, -0.014561055228114128, 0.040732886642217636, -0.04118494316935539, 0.007090186700224876, -0.039067406207323074, -0.01133716106414795, 0.04929821193218231, 0.03404717147350311, -0.0191649179905653, 0.02384015917778015, 0.019390948116779327, 0.02273380383849144, -0.01824890449643135, -0.016880830749869347, 0.015310521237552166, 0.020045243203639984, 0.005980858113616705, 0.04699033126235008, 0.0279086884111166, 0.05415189638733864, -0.04189871996641159, 0.008791355416178703, -0.006465632002800703, 0.014561055228114128, 0.0432073138654232, -0.017094964161515236, 0.041089773178100586, 0.016202742233872414, 0.037520889192819595, -0.019914383068680763, -0.008256022818386555, -0.029502790421247482, 0.018070459365844727, -0.0022275797091424465, -0.023316722363233566, 0.024506350979208946, 0.01979542151093483, -0.02216278202831745, -0.042707670480012894, 0.012990744784474373, 0.029478998854756355, -0.0372115857899189, -0.04232698678970337, 0.0923151820898056, -0.004377833567559719, -0.015286728739738464, -0.03866293281316757, 0.01910543628036976, -0.005394965875893831, 0.021353835240006447, 0.01199740543961525, -0.018712859600782394, 0.024256529286503792, 0.0017547023016959429, -9.572793351253495e-05, 0.008678341284394264, -0.017225822433829308, 0.005041051656007767, -0.014941736124455929, -0.003729485906660557, -0.05600771680474281, 0.03616471216082573, -0.027742139995098114, -0.03949567303061485, -0.008803252130746841, 0.022698115557432175, -0.047537561506032944, 0.029883472248911858, 0.013466596603393555, 0.004032841417938471, -0.003420182503759861, -0.049488551914691925, 0.004184518940746784, 0.004699033219367266, 0.028503503650426865, -0.009588407352566719, 0.020687643438577652, 0.001552465371787548, -0.03007381223142147, 0.043064557015895844, -0.0059392210096120834, 0.05638840049505234, -0.04194630682468414, 0.023542750626802444, -0.08579602092504501, 0.003631341503933072, 0.008041889406740665, -0.08308366686105728, -0.09145864844322205, -0.0019509909907355905, 0.003913878463208675, 0.04641931131482124, -0.016880830749869347, -0.011688102036714554, -0.0026186699979007244, -0.005064844153821468, -0.027266288176178932, 0.08189404010772705, 0.015964817255735397, -0.012300760485231876, -0.02874142862856388, 0.013074018992483616, 0.023471374064683914, -0.0016744023887440562, -0.038306042551994324, -0.019950073212385178, -0.0065786466002464294, -0.016393082216382027, 0.05562703683972359, -0.04059012979269028, -0.04030461981892586, 0.12924125790596008, 0.007661208510398865, -0.029740717262029648, 0.022293642163276672, -0.014810876920819283, 0.022971728816628456, -0.016892727464437485, -0.016631009057164192, -0.015726890414953232, 0.03611712530255318, -0.09017385542392731, -0.03623608872294426, 0.05020232871174812, -0.031715501099824905, 0.0061265877448022366, -0.007607675157487392, -0.036259882152080536, 0.034927498549222946, -0.032072387635707855, 0.03816328942775726, -0.00659054284915328, 0.004767436999827623, 0.05148712918162346, 0.02253156714141369, -0.01861768774688244, -0.01895078457891941, 0.0046722665429115295, -0.012128264643251896, -0.03495129197835922, 0.039067406207323074, 0.0025458054151386023, -0.0094040147960186, 0.0020417002961039543, 0.022555358707904816, 0.03949567303061485, 0.05838697403669357, 0.015845853835344315, 0.014453988522291183, -0.030454494059085846, 0.034451644867658615, -0.007090186700224876, 0.004666318651288748, 0.0025681108236312866, 0.04335006698966026, 0.051296789199113846, -0.0006126587395556271, 0.017368579283356667, -0.022555358707904816, 0.017035482451319695, -0.024649105966091156, -0.02945520542562008, 0.040185656398534775, -0.033404771238565445, 0.025933904573321342, 0.013847277499735355, -0.03428509831428528, -0.009921503253281116, -0.01582206040620804, 0.004681188613176346, -0.024434972554445267, -0.009522977285087109, -0.05281951278448105, 0.007815860211849213, 0.030335530638694763, 0.001595589448697865, 0.013609351590275764, -0.004470029845833778, 0.003988230135291815, 0.02531529776751995, -0.053961556404829025, -0.013264359906315804, 0.004815021995455027, 0.02581494301557541, -0.009249363094568253, -0.018415451049804688, -0.03763985261321068, -0.01803477108478546, 0.046205177903175354, 0.016666697338223457, -0.03316684812307358, 0.01623843051493168, -0.022840870544314384, -0.04439694061875343, -0.032762374728918076, -0.029407620429992676, 0.06238412857055664, -0.031025515869259834, 0.013454699888825417, -0.03970980644226074, -0.01978352479636669, 0.058720070868730545, -0.03866293281316757, 0.007679053116589785, 0.01754702255129814, 0.023114485666155815, 0.04434935748577118, -0.003280400997027755, 0.029502790421247482, -0.0029517661314457655, -0.0439210906624794, 0.01532241702079773, 0.04315972700715065, -0.009106607176363468, 0.06119449809193611, -0.0011160203721374273, 0.010201065801084042, 0.013311944901943207, -0.06343100219964981, 0.028217991814017296, 0.007090186700224876, 0.01098622102290392, -0.026481134817004204, -0.002493759151548147, -0.026623889803886414, 0.002004524227231741, -0.02693319320678711, -0.021651241928339005, -0.08722357451915741, 0.007137772161513567, 0.004812047816812992, -0.022079508751630783, 0.04201768338680267, 0.06423994898796082, -0.009392118081450462, -0.050249915570020676, -0.03000243566930294, -0.0013056175084784627, 0.01846303604543209, 0.01451346930116415, -0.02392343245446682, 0.013335737399756908, 0.0041161151602864265, -0.018284592777490616, 0.01698789745569229, 0.054247066378593445, 0.03021656908094883, 0.021222975105047226, 0.006864157505333424, -0.02049730159342289, 0.03219135105609894, -0.043469030410051346, 0.010022621601819992, 0.031215855851769447, 0.0432073138654232, -0.027266288176178932, 0.029264865443110466, -0.03999531641602516, -0.014477781020104885, 0.02748042158782482, 0.00517488457262516, -0.03930533304810524, -0.06219378858804703, 0.0052284179255366325, 0.03454681485891342, -0.03604574874043465, 0.0007442614296451211, 0.03887706622481346, 0.0014922404661774635, 0.05162988603115082, 0.017963392660021782, -0.033262018114328384, -0.036259882152080536, 0.0008327400428242981, 0.011824908666312695, -0.0004855172010138631, -0.012693338096141815, -0.00028346621547825634, -0.044182807207107544, -0.006745194550603628, -0.0018439244013279676, -0.03507025167346001, 0.004707955289632082, 0.01581016555428505, 0.0016610190505161881, 0.010456835851073265, -0.016476357355713844, 0.021092116832733154, 0.0506305955350399, 0.007244838401675224, -0.011616723611950874, 0.030740004032850266, 0.03747330233454704, -0.025267712771892548, -0.02322155237197876, 0.00832740031182766, -0.031429991126060486, -0.04691895470023155, -0.010433043353259563, 0.049916818737983704, 0.02078281342983246, -0.012717130593955517, -0.013930551707744598, -0.0020937465596944094, 0.018938887864351273, 0.014537262730300426, -0.05910075083374977, -0.02798006683588028, -0.001379969296976924, 0.005290873348712921, -0.024887030944228172, -0.0722818374633789, -0.0087437704205513, 0.0070188092067837715, -0.031929634511470795, 0.022329330444335938, 0.041779760271310806, 0.011426383629441261, 0.03918636962771416, 0.0035510414745658636, 0.03844879940152168, -0.007399490103125572, 0.026600096374750137, -0.004550329875200987, 0.03050207905471325, 0.071568064391613, -0.029074525460600853, -0.01797528937458992, -0.04139907658100128, -0.0035213008522987366, -0.0014848052524030209, -0.012681441381573677, -0.022329330444335938, -0.06390684843063354, 0.03349994495511055, 0.03369028493762016, -0.021139701828360558, -0.014870358631014824, 0.02560080960392952, 0.016202742233872414, 0.01195576786994934, 0.0360933355987072, -0.03706882894039154, 0.008731874637305737, -0.021353835240006447, 0.03154895082116127, -0.02349516563117504, 0.04589587450027466, 0.006287187337875366, 0.033333394676446915, -0.026742853224277496, -0.01909353956580162, -0.04706171154975891, -0.03257203474640846, 0.013799692504107952, 0.005252210423350334, -0.00398525595664978, 0.04551519453525543, 0.03495129197835922, 0.0050469995476305485, 0.018498726189136505, 0.04061392322182655, 0.012633856385946274, 0.0015703098615631461, -0.028146613389253616, -0.017237719148397446, 0.041779760271310806, -0.034237511456012726, 0.017999080941081047, -0.028907977044582367, 0.01609567552804947, -0.051296789199113846, 0.010367614217102528, 0.037045035511255264, -0.036830902099609375, 0.0009427806944586337, 0.029835887253284454, -0.023947225883603096, 0.014394506812095642, -0.021841581910848618, 0.039424292743206024, 0.03790156915783882, 0.059005580842494965, 0.06733298301696777, -0.004743644502013922, -0.003446949180215597, 0.01832028105854988, -0.00961219985038042, 0.026552511379122734, 0.029360035434365273, 0.03999531641602516, 0.013668833300471306, -0.005722113884985447, 0.013728315010666847, 0.02041402831673622, 0.03226273134350777, -0.004029867239296436, -0.008166801184415817, -0.02938382886350155, -0.03930533304810524, -0.006209861487150192, 0.022912248969078064, 0.005751854740083218, -0.005097558721899986, 0.033595114946365356, -0.0046514482237398624, 0.020259376615285873, -0.008803252130746841, 0.019628873094916344, 0.015334313735365868, 0.01312160398811102, -0.01101001352071762, 0.03349994495511055, -0.005722113884985447, 0.04156562685966492, -0.0059094806201756, 0.0029398698825389147, -0.0618131048977375, 0.07280527800321579, -0.01234834548085928, -0.04763273149728775, 0.0037146154791116714, 0.01014753244817257, 0.0035569898318499327, -0.0013405628269538283, 0.006016546860337257, 0.03847259283065796, -0.059148337692022324, -0.028979353606700897, -0.004571148194372654, 0.027028363198041916, 0.01056390255689621, -0.052629172801971436, -0.018296489492058754, -0.015500861220061779, -0.0028699792455881834, -0.003967411816120148, -0.019010266289114952, -0.006727349944412708, -0.03583161532878876, 0.028075236827135086, 0.035141631960868835, -0.008464207872748375, -0.017380474135279655, -0.016059987246990204, 0.02938382886350155, 0.029407620429992676, -0.03797294571995735, -0.00871402956545353, -0.010682865045964718, -0.028789013624191284, 0.0006832929793745279, 0.01586964726448059, -0.021651241928339005, -0.028907977044582367, -0.026623889803886414, -0.01567930541932583, 0.006441839039325714, 0.017963392660021782, 0.05077335238456726, 0.058434560894966125, 0.000195173459360376, 0.01332384068518877, 0.03937670961022377, -0.022055715322494507, -0.00794077105820179, 0.002984480932354927, -0.07337629795074463, -0.017309097573161125, -0.022745700553059578, 0.0009524464257992804, -0.0044967965222895145, 0.056198056787252426, 0.003045449499040842, 0.030597249045968056, -0.006245550699532032, -0.013633144088089466, -0.016892727464437485, 0.023542750626802444, 0.026766644790768623, -0.018010977655649185, -0.030811382457613945, 0.023340513929724693, 0.042564913630485535, 0.05267675593495369, 0.041779760271310806, -0.03978118300437927, -0.022198470309376717, -0.024089980870485306, -0.019283881410956383, 0.004484900273382664, -0.010659072548151016, -0.013454699888825417, -0.023447580635547638, 0.0013294100062921643, -0.008761615492403507, 0.04846547171473503, 0.0066083874553442, 0.047323428094387054, -0.04513451084494591, 0.009891762398183346, -0.05695942044258118, 0.05010715872049332, 0.013300048187375069, 0.02602907456457615, 0.013764003291726112, 0.018082356080412865, 0.002574058948084712, -0.01999765820801258, -0.028551088646054268, 0.011021909303963184, -0.0016015375731512904, -0.01472760271281004, -0.044944170862436295, 0.01458484772592783, 0.012336449697613716, -0.03614091873168945, -0.006923638749867678, 0.04872719198465347, 0.014465884305536747, -0.025148749351501465, -0.014180373400449753, -0.008821096271276474, -0.004704981576651335, 0.020675746724009514, -0.049774061888456345, 0.03231031447649002, 0.002432790584862232, -0.02491082437336445, -0.012883678078651428, -0.05115403234958649, -0.01910543628036976, 0.025838734582066536, -0.007916978560388088, -0.008464207872748375, 0.03956704959273338, 0.014453988522291183, -0.025291506201028824, 0.03733054921030998, -0.029431413859128952, 0.0036343156825751066, -0.009356429800391197, 0.0195218063890934, 0.01552465371787548, 0.03576023876667023, -0.0044135223142802715, -0.004122063517570496, -0.02342378906905651, 0.008107319474220276, -0.004318351857364178, 0.00527897709980607, -0.021936751902103424, 0.020259376615285873, 0.057244930416345596, 0.025148749351501465, 0.003104930743575096, -0.01839165948331356, -0.013859174214303493, 0.02420894429087639, -0.013264359906315804, -0.02455393597483635, 0.014953631907701492, -0.012080678716301918, 0.03364269807934761, -0.014596743509173393, -0.017665985971689224, -0.003708667354658246, -0.002276651794090867, -0.01017727330327034, 0.007221045903861523, 0.02924107201397419, -0.015048802830278873, 0.03694986552000046, 0.014703810214996338, 0.018082356080412865, -0.05196297913789749, -0.014596743509173393, 0.0038365523796528578, 0.016393082216382027, 0.028789013624191284, 0.04030461981892586, -0.006661920342594385, -0.02085418999195099, 0.014323129318654537, -0.018938887864351273, -0.014561055228114128, -0.01098622102290392, -0.004809074103832245, 0.018225111067295074, -0.043754544109106064, -0.004847737029194832, -0.02049730159342289, -0.0005457421648316085, 0.03711641579866409, -0.027884896844625473, 0.015025010332465172, -0.046823784708976746, 0.011111131869256496, 0.026695268228650093, -0.015132077038288116, -0.0003081881732214242, 0.006697609554976225, -0.012467308901250362, -0.03775881230831146, 0.0331430546939373, -0.008696185424923897, 0.013561766594648361, 0.011699997819960117, 0.011670256964862347, 0.02092556841671467, 0.026148037984967232, 0.004273741040378809, -0.050535425543785095, 0.004812047816812992, 0.02042592503130436, 0.010480628348886967, -0.026885608211159706, -0.00031023286283016205, 0.007702845614403486, -0.011628620326519012, -0.027456630021333694, -0.00958245899528265, -0.034665778279304504, -0.0070961350575089455, 0.004963725805282593, -0.05139195919036865, 0.024530142545700073, -0.018201319500803947, -0.02392343245446682, -0.0313110277056694, -0.006971224211156368, -0.023744987323880196, -0.015203454531729221, 0.02693319320678711, -0.018225111067295074, -0.006697609554976225, -0.0063407206907868385, 0.03540334850549698, 0.050678182393312454, -0.026814229786396027, -0.008755667135119438, -0.061860691756010056, 0.007720690220594406, -0.004925062879920006, 0.015631720423698425, 0.009957191534340382, 0.016345497220754623, 0.00659054284915328, 0.020306961610913277, 0.0313110277056694, -0.02140142023563385, -0.038306042551994324, 0.005139195825904608, 0.01635739393532276, 0.004850710742175579, 0.05182022601366043, 0.004336196463555098, 0.015036906115710735, 0.004145856015384197, -0.023542750626802444, -0.008452312089502811, -0.0003472228709142655, -0.02224605530500412, -0.002685586689040065, 0.04223181679844856, 0.012966952286660671, 0.019426636397838593, -0.029264865443110466, -0.02552943117916584, -0.05353328958153725, -0.026124246418476105, -0.028170406818389893, -0.03404717147350311, 0.014216062612831593, -0.019474221393465996, 0.007387593854218721, -0.040732886642217636, 0.054247066378593445, -0.003488586051389575, -0.003381519578397274, -0.0014335025334730744, -0.00021803662821184844, -0.005793491844087839, 3.58979741577059e-05, -0.006459683645516634, -0.011592931114137173, -0.030311739072203636, 0.03390441834926605, 0.013371426612138748, 0.0357840321958065, 0.020045243203639984, 0.0055704363621771336, -0.036616768687963486, 0.02776593342423439, -0.0094040147960186, -0.011325265280902386, -0.03530817851424217, -0.033880624920129776, 0.000735339242964983, 0.013835381716489792, -0.019950073212385178, -0.0640496090054512, -0.04413522407412529, -0.012407827191054821, -0.001962887356057763, 0.0009628557018004358, 0.02069953829050064, 0.017523230984807014, -0.007619571406394243, 0.001600050600245595, -0.038639139384031296, -0.021877272054553032, -0.0030603196937590837, -0.02356654405593872, 0.017951495945453644, -0.016345497220754623, 0.03471336513757706, 0.01790391094982624, -0.03859155252575874, 0.02125866338610649, -0.0030722159426659346, 0.020402131602168083, -0.023554647341370583, -0.05110644921660423, -0.02104453183710575, 0.0006725119310431182, -0.03028794564306736, 0.009862021543085575, 0.023887744173407555, -0.006661920342594385, -0.02043781988322735, 0.026695268228650093, -0.020330753177404404, -0.015084491111338139, -0.0139543442055583, 0.020877983421087265, 0.025434261187911034, -0.018379762768745422, 0.003226867876946926, 0.005154066253453493, 0.01789201609790325, -0.020342649891972542, -0.007679053116589785, 0.004294559359550476, -0.03642642870545387, -0.015346209518611431, -0.0012111907126381993, 0.017106860876083374, -0.03188204765319824, 0.008107319474220276, -0.0506305955350399, 0.0052670808508992195, 0.021639345213770866, -0.03797294571995735, 0.008595067076385021, 0.04204147681593895, 0.020092828199267387, 0.003783019259572029, -0.007595778908580542, 0.008999540470540524, 0.0035986267030239105, 0.034879911690950394, 0.024030499160289764, -0.021698826923966408, -0.03342856466770172, 0.020889880135655403, -0.01873665116727352, 0.012705233879387379, 0.030264154076576233, -0.002638001460582018, 0.010260547511279583, 0.020283168181777, 0.029217280447483063, 0.01993817649781704, -0.008832992985844612, -0.033262018114328384, -0.029764508828520775, -0.0279086884111166, -0.0023480295203626156, 0.010962428525090218, -0.013240567408502102, 0.04525347426533699, 0.016250327229499817, -0.03616471216082573, 0.005930298939347267, 0.04817996174097061, 0.01664290577173233, -0.002571085002273321, -0.015060698613524437, -0.028313161805272102, -0.009326688945293427, -0.048917531967163086, -0.016452563926577568, -0.021805893629789352, 0.009635992348194122, -0.03825845941901207, 0.011069494299590588, 0.023697402328252792, 0.018700962886214256, 0.01902216300368309, -0.04634793475270271, 0.01950990967452526, 0.04813237488269806, 0.004556277766823769, -0.047323428094387054, -0.030621042475104332, 0.01707117073237896, 0.0038068117573857307, -0.020532991737127304, 0.04301697388291359, 0.005998702719807625, 0.04506313428282738, -0.013419011607766151, -1.6078574844868854e-05, -0.031786877661943436, 0.06523923575878143, -0.004743644502013922, -0.012752818875014782, -0.0040566339157521725, 0.002053596545010805, 0.02574356459081173, -0.02350706234574318, 0.040042899549007416, -0.025362882763147354, -0.0171306524425745, 0.012193693779408932, -0.04244595021009445, -0.005974909756332636, 0.021353835240006447, 0.019950073212385178, -0.018998369574546814, -0.01196171622723341, -0.013300048187375069, -0.005210573785007, -0.02524392120540142, 0.0320248045027256, -0.004975622054189444, 0.029145902022719383, 0.04275525361299515, -0.01118845771998167, -0.029550375416874886, -0.01280040480196476, -0.0030409882310777903, 0.02819420024752617, -0.00274655525572598, -0.02491082437336445, -0.006334772799164057, 0.04901270195841789, -0.006138483993709087, 0.013288152404129505, 0.030311739072203636, 0.018355971202254295, 0.010462784208357334, -0.01943853311240673, 0.014216062612831593, -0.014953631907701492, -0.017451852560043335, -0.008916267193853855, -0.006893898360431194, 0.0033874677028506994, -0.002471453510224819, -0.008386882022023201, -0.008493948727846146, -0.041303906589746475, -0.0020714409183710814, 0.03288133814930916, -0.019343361258506775, -0.01740426756441593, 0.027266288176178932, 0.0007658234681002796, 0.0018632558640092611, -0.0279086884111166, -0.04496796429157257, 0.021222975105047226, -0.012681441381573677, 0.05505601316690445, 0.03147757425904274, -0.0022171703167259693, 0.020663850009441376, 0.01077208761125803, 0.04197010025382042, -0.004922088701277971, -0.010665020905435085, -0.026623889803886414, -0.07056877017021179, 0.0174875408411026, 0.027646970003843307, 0.0042707668617367744, 0.012859885580837727, 0.014061410911381245, -0.003821682184934616, -0.015714995563030243, -0.007619571406394243, -0.008309556171298027, 0.011491812765598297, -0.0398525595664978, 0.0034528973046690226, 0.005502032581716776, -0.03616471216082573, 0.0021457928232848644, -0.003259582445025444, 0.0014506034785881639, -0.02581494301557541, 0.011890338733792305, -0.009594354778528214, -0.0047020073980093, 0.009778747335076332, 0.0020640057045966387, -0.004660370294004679, 0.0021279482170939445, -0.010849413461983204, -0.009070918895304203, 0.04106598347425461, -0.015691202133893967, -0.016190845519304276, -0.012122316285967827, -0.009314792230725288, -0.010379510000348091, 0.043540410697460175, -0.010688813403248787, 0.004838814493268728, 0.0053890179842710495, 0.04468245431780815, -0.0033012195490300655, -0.016773764044046402, 0.015833957120776176, -0.025791149586439133, -0.05419948324561119, -0.034261304885149, 0.05971935763955116, 0.009481340646743774, 0.05400914326310158, 0.009261258877813816, -0.022115197032690048, -0.005162988323718309, 0.011711894534528255, 0.021425211802124977, -0.001552465371787548, 0.01608377881348133, -0.02216278202831745, 0.002014933619648218, -0.03211997449398041, -0.01873665116727352, 0.011349057778716087, -0.011111131869256496, 0.03285754472017288, 0.015084491111338139, 0.00821438618004322, -0.032500654458999634, -0.024434972554445267, 0.007447075564414263, 0.034380268305540085, 0.03209618106484413, -0.0067154536955058575, 0.049488551914691925, -0.017951495945453644, -0.011075442656874657, -0.013038329780101776, 0.009873918257653713, 0.006929587107151747, 0.0267904382199049, -0.009118503890931606, 0.020616265013813972, 0.04335006698966026, 0.0094040147960186, -0.03090655244886875, -0.0453486442565918, 0.010421147570014, -0.006316928192973137, -0.02671905979514122, 0.050249915570020676, 0.005980858113616705, -0.017011690884828568, -0.004957777447998524, 0.005576384253799915, -0.00031320692505687475, -0.008702133782207966, 0.01630980893969536, -0.04085185006260872, 0.04154183343052864, 0.012610063888132572, 0.00468416279181838, -0.02524392120540142, 0.039424292743206024, -0.014751395210623741, -0.0028655179776251316, 0.00993339903652668, 0.033547528088092804, -0.02776593342423439, -0.022198470309376717, 0.011057598516345024, 0.018153732642531395, -0.021556071937084198, 0.0072329421527683735, 0.01280040480196476, 0.004386755637824535, 0.04187493026256561, 0.014525366015732288, 0.020604368299245834, -0.0026454366743564606, -0.006052236072719097, 0.03495129197835922, -0.005284925457090139, -0.0029294604901224375, 0.04608621448278427, -0.005778621416538954, -0.005954091437160969, -0.003991204313933849, -0.011616723611950874, -0.00937427394092083, 0.00895195547491312, 0.022353122010827065, 0.005097558721899986, -0.032762374728918076, 0.04356420040130615, 0.0027822440024465322, -0.012104472145438194, 0.015393794514238834, -0.030763797461986542, -0.0018617688911035657, 0.02819420024752617, 0.015310521237552166, 0.024815654382109642, 0.006495372392237186, 0.011890338733792305, 0.025933904573321342, 0.010849413461983204, 0.03828224912285805, 0.029122110456228256, -0.013894862495362759, -0.013252463191747665, 0.053057439625263214, 0.002358438912779093, 0.04082805663347244, -0.014251751825213432, -0.05220090597867966, -0.013038329780101776, 0.03035932406783104, -0.052153319120407104, -0.014180373400449753, -0.024149462580680847, 0.02938382886350155, 0.003265530802309513, 0.006596490740776062, -0.02560080960392952, 0.03159653767943382, 0.005162988323718309, 0.017023585736751556, 0.003066267818212509, 0.009594354778528214, -0.053057439625263214, 0.034380268305540085, 0.0003130210388917476, -0.006828468758612871, -0.00320010120049119, -0.009207725524902344, -0.009802539832890034, -0.017118755728006363, 0.013585559092462063, -0.021068323403596878, 0.021318145096302032, -0.018641481176018715, 0.03216755762696266, -0.017963392660021782, -0.06205103173851967, 0.02125866338610649, -0.01741616427898407, -0.0275518000125885, -0.026148037984967232, -0.02455393597483635, 0.021710723638534546, 0.02384015917778015, 0.021567968651652336, -0.01020701415836811, -0.014691914431750774, -0.03992393985390663, -0.013097811490297318, 0.007143720053136349, 0.041518040001392365, -0.014989321120083332, 0.006519164890050888, 0.0174875408411026, -0.005079714581370354, -0.03587920218706131, 0.006394254043698311, 0.0160124022513628, -0.021377626806497574, -0.006846312899142504, -0.004190466832369566, 0.014656225219368935, -0.014775187708437443, 0.0030127346981316805, 0.00428563728928566, -0.012633856385946274, 0.0223174337297678, -0.023399995639920235, 0.0010119278449565172, -0.026314586400985718, 0.005377121735364199, 0.026600096374750137, -0.020235583186149597, -0.01262196060270071, 0.03821087256073952, 0.007191305514425039, -0.029003147035837173, 0.00550500676035881, -0.015714995563030243, 0.023447580635547638, 0.022971728816628456, 0.05477050319314003, -0.01805856265127659, -0.017190134152770042, 0.0011494787177070975, 0.003446949180215597, -0.009897710755467415, -0.011295524425804615, 0.018712859600782394, 0.01196171622723341, -0.02624320797622204, -0.0027197885792702436, -0.012241278775036335, -0.012276967987418175, 0.011117080226540565, -0.014144685119390488, -0.02560080960392952, -0.031715501099824905, 0.02602907456457615, -0.014037618413567543, -0.02316207066178322, -0.015917232260107994, -0.039281539618968964, -0.002367360983043909, 0.00736380135640502, 0.007702845614403486, 0.013692625798285007, -0.023590335622429848, -0.01651204563677311, 0.01657152734696865, 0.03901981934905052, 0.035974372178316116, -0.007756378967314959, 0.015703098848462105, -0.02610045298933983, 0.002074415097013116, -0.03587920218706131, 0.0700453370809555, 0.015227247029542923, -0.03628367558121681, 0.0279086884111166, 0.010088050737977028, -0.011914131231606007, 0.029074525460600853, 0.010308132506906986, 0.010706658475100994, 0.0023093665950000286, -0.0076909493654966354, 0.007476815953850746, 0.028027651831507683, 0.019831109791994095, -0.016107572242617607, 0.010700710117816925, 0.0005725087830796838, 0.005448499228805304, 0.012931264005601406, 0.029693132266402245, 0.006239602342247963, -0.020842295140028, 0.03133481740951538, -0.04715688154101372, -0.0014312720159068704, -0.050249915570020676, -0.0223174337297678, 0.01923629641532898, 0.012574374675750732, 0.008083526976406574, 0.018237007781863213, 0.025220127776265144, -0.001620869035832584, -0.004196415189653635, 0.010730450972914696, 0.004324300214648247, -0.018355971202254295, 0.0001338332222076133, 0.007595778908580542, -0.00395551510155201, -0.013026433996856213, -0.030549664050340652, -0.004113140981644392, 0.013561766594648361, 0.031215855851769447, 0.061242084950208664, -0.0012825684389099479, -0.02127056010067463, 0.06428753584623337, -0.03890085592865944, 0.0031287234742194414, 0.004392703995108604, -0.03573644533753395, 0.0003180397907271981, 0.001166579662822187, 0.013823485001921654, -0.008696185424923897, -9.972434054361656e-05, -0.0005680476897396147, -0.01532241702079773, 0.001075870473869145, 0.006834416650235653, -0.012610063888132572, 0.015703098848462105, 0.009879865683615208, -0.008190593682229519, 0.009302896447479725, -0.01923629641532898, -0.006257446948438883, -0.030050020664930344, 0.007518453057855368, 0.017511334270238876, -0.005231392104178667, 0.005281951278448105, 0.024982202798128128, 0.00791103020310402, -0.03897223621606827, 0.007524401415139437, 0.004145856015384197, 0.010195117443799973, -0.0029041809029877186, -0.015025010332465172, 0.014156580902636051, 0.009463496506214142, -0.007405438460409641, 0.009106607176363468, -0.01833217777311802, 0.021520381793379784, 0.011949819512665272, -0.01978352479636669, 0.017320994287729263, -0.012241278775036335, -0.014263647608458996, -0.0005702782655134797, 0.015893438830971718, -0.017927704378962517, 0.011236042715609074, -0.0464668944478035, -0.0017695726128295064, 0.01035571750253439, -0.0029398698825389147, -0.010367614217102528, -0.026909399777650833, -0.0002182225143769756, -7.802290929248556e-05, 0.0004632116761058569, 0.01416847761720419, 0.02029506489634514, -0.01854631118476391, -0.014632432721555233, 0.0024431999772787094, 0.030525872483849525, 0.0030290919821709394, 4.9025711632566527e-05, -0.03821087256073952, -0.021104011684656143, 0.009856073185801506, 0.010456835851073265, -0.006162276491522789, 0.020842295140028, 0.027313875034451485, -0.014001929201185703, 0.029193487018346786, 0.018581999465823174, -0.0065786466002464294, 0.0062039135955274105, 0.004133959766477346, 0.024791860952973366, -0.009867969900369644, -0.02125866338610649, 0.0013985572149977088, 0.0004394190909806639, 0.02524392120540142, -0.0014736525481566787, 0.036759525537490845, -0.014846566133201122, -0.021520381793379784, -0.014787084423005581, 0.0005810592556372285, -0.007726638112217188, 0.022626737132668495, -0.020045243203639984, -0.019390948116779327, -0.0174875408411026, 0.003134671598672867, 0.027599385008215904, -0.01440640352666378, -0.011349057778716087, -0.006513216998428106, 0.005079714581370354, -0.04756135493516922, 0.006352616939693689, -0.01437071431428194, 0.017439955845475197, -0.010498473420739174, 0.004823944065719843, 0.014251751825213432, 0.000905604800209403, 0.047323428094387054, 0.002582981251180172, -0.02181779034435749, 0.004960751626640558, 0.027504215016961098, 0.01698789745569229, 0.013074018992483616, 0.02097315341234207, 0.0039793080650269985, 0.0031554901506751776, -0.004342144820839167, -0.006876053754240274, -0.036331258714199066, -0.01777305267751217, 0.02762317843735218, 0.00046358341933228076, 0.00656080199405551, -0.0323341079056263, 0.04292180389165878, 0.013407114893198013, -0.054865673184394836, -0.018451141193509102, -0.002040213206782937, 0.007988356053829193, 0.006168224848806858, -0.025838734582066536, -0.002959201345220208, -0.02127056010067463, -0.0008892474579624832, -0.017178237438201904, 0.036759525537490845, -0.007803963962942362, 0.005918402690440416, -0.01482277363538742, 0.04677619785070419, -0.007916978560388088, -0.025981489568948746, -0.002617183141410351, 0.009743059054017067, 0.009986932389438152, 0.01252678968012333, -0.000555036123842001, -0.010105895809829235, 0.00459791487082839, -0.0005453703925013542, 0.014299336820840836, -0.004523563198745251, -0.036474015563726425, 0.0036194452550262213, -0.009267207235097885, -0.007137772161513567, 0.009838229045271873, -0.0072329421527683735, 0.015833957120776176, -0.0019078670302405953, -0.00877945963293314, 0.010314080864191055, -0.016048090532422066, 0.022436397150158882, -0.0034826379269361496, -0.03330960124731064, -0.010480628348886967, -0.04149424657225609, 0.007137772161513567, 0.037592265754938126, -0.010688813403248787, -0.028765222057700157, 0.01705927588045597, -0.01377590000629425, -0.0010899972403421998, 0.0211991835385561, 0.0006312467157840729, 0.02567218616604805, -0.032976508140563965, -0.01374021079391241, -0.024030499160289764, 0.0053830696269869804, -0.009112555533647537, -0.00421128561720252, 0.0279086884111166, -0.026671474799513817, 0.006667868699878454, -0.012514893896877766, 0.010546058416366577, -0.010712605901062489, 0.01707117073237896, -0.01896268129348755, 0.02364981733262539, -0.007869393564760685, -0.020378338173031807, -0.005032129120081663, -0.014703810214996338, 0.012562478892505169, -0.027099741622805595, -0.01413278840482235, -0.0011093287030234933, 0.01684514246881008, -0.03868672251701355, -0.01958128809928894, -0.01810614764690399, -0.015964817255735397, -0.007066394202411175, -0.020259376615285873, -0.04542002081871033, 0.009094711393117905, 0.01458484772592783, -0.00101490190718323, 0.024089980870485306, -0.003265530802309513, 0.0219605453312397, -0.010920790955424309, -0.015691202133893967, 0.019950073212385178, -0.005638839676976204, -0.002600825624540448, -0.01811804436147213, -0.025553224608302116, 0.007934823632240295, 0.00010929713607765734, -0.007369749713689089, 0.026885608211159706, 0.015833957120776176, -0.020473510026931763, 0.0017130653141066432, -0.013133500702679157, 0.016464460641145706, 0.0018097226275131106, -0.013847277499735355, 0.006376409437507391, 0.011771375313401222, 0.03507025167346001, -0.03209618106484413, -0.019807318225502968, 0.03140619769692421, 0.0034915602300316095, 0.013407114893198013, 0.029550375416874886, 0.012610063888132572, -0.00076954101677984, 0.008446363732218742, -0.016976000741124153, -0.00741138681769371, 0.0037622007075697184, 0.014418299309909344, 0.044944170862436295, -0.014691914431750774, -0.013074018992483616, -0.006067106034606695, 0.00235100369900465, 0.010861310176551342, 0.030026227235794067, -0.032548241317272186, 0.0016937338514253497, 0.04668102785944939, 0.011093287728726864, -0.03376166149973869, -0.03471336513757706, 0.0033190639223903418, -0.00250119436532259, -0.002346542663872242, 0.015370002016425133, 0.00720320176333189, -0.005507980939000845, 0.0007554141920991242, -0.005020232871174812, 0.004761488642543554, 0.01492983940988779, -0.008107319474220276, 0.0018706910777837038, 0.013347634114325047, -0.041803549975156784, 0.0033012195490300655, -0.013192981481552124, -0.013526078313589096, 0.03166791424155235, -0.024161357432603836, -0.02147279679775238, -0.007726638112217188, -0.009088763035833836, -0.042707670480012894, 0.0035480675287544727, 0.014049514196813107, -0.0018781262915581465, 0.03611712530255318, 0.023685507476329803, 0.056626323610544205, 0.01678566075861454, 0.025339091196656227, 0.012788508087396622, -0.0014602692099288106, -0.04287421703338623, 0.02502978779375553, 0.026600096374750137, 0.03064483404159546, -0.01622653566300869, 0.0034082860220223665, 0.02945520542562008, -0.0087437704205513, 0.03421372175216675, -0.020818501710891724, 0.0573401004076004, -0.04882236197590828, -0.005704269278794527, 0.03747330233454704, -0.005314665846526623, 0.010159429162740707, 0.017190134152770042, -0.01797528937458992, 0.01742805913090706, 0.029621753841638565, 0.014156580902636051, 0.045491401106119156, -0.002734659006819129, -0.010105895809829235, -0.0024164333008229733, -0.0005747393588535488, 0.020996946841478348, -0.04668102785944939, -0.03021656908094883, -0.02805144339799881, -0.010421147570014, 0.025577016174793243, -0.011622671969234943, -0.05586496368050575, 0.006685713306069374, -0.03147757425904274, 0.0178444292396307, -0.013966240920126438, -0.0011152768274769187, 0.009606251493096352, 0.008832992985844612], [0.052701033651828766, 0.04139822721481323, 0.025043204426765442, 0.025410886853933334, 0.0014009351143613458, 0.023885687813162804, -0.02750803343951702, 0.029823066666722298, -0.0009719732333905995, 0.004354303702712059, 0.023817598819732666, 0.005610549356788397, -0.010233805514872074, 0.016491202637553215, 0.022741790860891342, -0.011609206907451153, 0.007319588214159012, -0.012943754903972149, -0.019133063033223152, 0.09172976016998291, 0.033227525651454926, 0.021148502826690674, -0.040499452501535416, 0.014530233107507229, -0.013536131009459496, -0.0012494366383180022, 0.0048581636510789394, -0.020862529054284096, 0.07413551211357117, -0.0019967155531048775, 0.02286435104906559, -0.023599714040756226, 0.004330472555011511, -0.0184385534375906, 0.01345442421734333, 0.03695881366729736, 0.0068123238161206245, 0.016831647604703903, 0.03646857291460037, -0.053027860820293427, -0.03992750123143196, -0.009335028007626534, -0.01691335439682007, 0.0050454093143343925, -0.0057739634066820145, 0.03546085208654404, -0.021298298612236977, -0.015606042928993702, -0.03682263568043709, -0.011575162410736084, -0.030095422640442848, 0.03137550130486488, 0.0006936586578376591, 0.0023933351039886475, 0.001021337928250432, 0.03464378044009209, 0.009886550717055798, 0.029768595471978188, -0.02647307701408863, 0.012419468723237514, -0.006764661055058241, 0.007305970415472984, -0.0322742760181427, 0.024198899045586586, -0.06874284893274307, -0.014993240125477314, -0.04382220283150673, 0.02050846442580223, -0.008654136210680008, 0.05577866733074188, -0.004633469507098198, -0.000232141581363976, 0.005515224300324917, -0.059972960501909256, 0.02763059362769127, 0.005573100410401821, 0.01782575063407421, 0.021407241001725197, -0.019242005422711372, -0.0026725006755441427, -0.009559722617268562, 0.019786719232797623, -0.050985187292099, -0.007871110923588276, -0.01052658911794424, 0.006706785410642624, -0.06155262887477875, 0.010839799419045448, 0.0014264686033129692, -0.08562896400690079, -0.060027431696653366, 0.0054947976022958755, -0.009689091704785824, 0.05343639850616455, -0.0385112464427948, 0.007217454258352518, -0.006318677216768265, 0.033227525651454926, -0.029033230617642403, 0.09396308660507202, -0.011670487001538277, -0.023708656430244446, -0.02462105080485344, -0.060027431696653366, 0.017185712233185768, 0.03665922209620476, -0.03382670879364014, -0.012671398930251598, -0.01700868085026741, -0.03292793408036232, 0.0022946058306843042, -0.0493510477244854, -0.002732078777626157, 0.07348185777664185, 0.06640058010816574, -0.039137668907642365, -0.006070151459425688, -0.011541117914021015, -0.0013183769769966602, -0.020971471443772316, -0.013876576907932758, -0.02018163725733757, 0.04325025528669357, -0.06596481055021286, 0.016654616221785545, 0.03606003522872925, -0.045102279633283615, -0.002391632879152894, 0.019718630239367485, -0.07996394485235214, 0.05120307207107544, -0.02221069484949112, 0.052537620067596436, -0.09178423136472702, -0.014353201724588871, 0.023640567436814308, 0.033173054456710815, -0.03096696361899376, -0.052101850509643555, -0.007837066426873207, -0.0036734119057655334, -0.0028325102757662535, 0.033118583261966705, 0.020413139835000038, -0.011289187707006931, -0.007830256596207619, -0.04009091481566429, 0.0004966255510225892, 0.009702709503471851, 0.05068559572100639, -0.025669625028967857, -0.019487125799059868, 0.011820283718407154, -0.014448526315391064, -0.019282858818769455, -0.039573438465595245, 0.029114939272403717, 0.03014989383518696, -0.02023610845208168, 0.04894251003861427, -0.044829923659563065, -0.015578807331621647, -0.026391370221972466, -0.025642389431595802, 0.04289619252085686, -0.04616447165608406, 0.04956893250346184, 0.029741359874606133, -0.04981405287981033, 0.02444401942193508, -0.031157614663243294, 0.0069280751049518585, -0.04907868802547455, 0.015401775017380714, -0.02270093560218811, 0.011078111827373505, 0.019133063033223152, 0.07353632897138596, 0.026731817051768303, -0.014080844819545746, 0.00689403060823679, 0.01619160920381546, -0.05272826924920082, 0.017539774999022484, 0.0011549629271030426, 0.010989595204591751, -0.028434045612812042, 0.011670487001538277, -0.00551181985065341, -0.03401736170053482, 0.005375641863793135, 0.02128468081355095, -0.039410024881362915, 0.005930568557232618, 0.007530664559453726, -0.051339250057935715, -0.03031330741941929, 0.004262383561581373, 0.005399473011493683, -0.016695469617843628, -0.023531625047326088, -0.022782644256949425, -0.015497099608182907, 0.0284885186702013, -0.014925151132047176, -0.008306881412863731, -0.0207399670034647, 0.03551532328128815, 0.0025431313551962376, -0.03600556403398514, 0.024484872817993164, -0.019705012440681458, -0.03423524647951126, 0.021080413833260536, 0.04736284166574478, -0.011554735712707043, 0.048098206520080566, -0.01561966072767973, -0.03123932145535946, 0.02708587981760502, -0.04109863564372063, 0.01399913802742958, -0.008429441601037979, 0.019119445234537125, -0.0016911652637645602, 0.03151167929172516, -0.022074516862630844, 0.006369743961840868, -0.01561966072767973, -0.06209734454751015, -0.05528842285275459, 0.046409592032432556, 0.009757181629538536, -0.05594208091497421, 0.01568775065243244, 0.040063679218292236, -0.027167586609721184, -0.03981855884194374, -0.02516576461493969, -0.019350947812199593, 0.01356336660683155, -0.021734070032835007, 0.003925342112779617, -0.023531625047326088, 0.02050846442580223, -0.038484010845422745, 0.04600105807185173, -0.007088084705173969, 0.02362694963812828, 0.01700868085026741, 0.05202014371752739, -0.00045960204442963004, -0.005276912357658148, -0.05196567252278328, 0.0012724167900159955, -0.03714946284890175, -0.007925582118332386, 0.0181661956012249, 0.023041382431983948, -0.01673632301390171, -0.016205227002501488, 0.006945097353309393, 0.002526109106838703, -0.04156164079904556, -0.03674092888832092, 0.021965572610497475, 0.0678168386220932, 0.0051918006502091885, 0.012079022824764252, 0.02099870704114437, -0.034153539687395096, 0.020971471443772316, 0.06242417171597481, -0.07124853134155273, -0.0629144161939621, 0.009995493106544018, 0.033336468040943146, -0.015851164236664772, -0.010056773200631142, 0.02532918006181717, -0.03388117998838425, -0.04207912087440491, 0.005995253100991249, -0.00828645471483469, 0.01755339279770851, 0.015456246212124825, 0.03477995842695236, 0.00272867432795465, 0.01740359701216221, 0.010798946022987366, 0.03652304410934448, -0.058665648102760315, -0.018506642431020737, -0.0061348360031843185, 0.028869817033410072, -0.04845226928591728, 0.020004604011774063, -0.02057655341923237, -0.033717766404151917, -0.029142174869775772, 0.02050846442580223, 0.06029978767037392, 0.0006787641323171556, 0.011146200820803642, 0.026268810033798218, 0.020331433042883873, 0.04161611571907997, -0.014039991423487663, -0.07713143527507782, -0.022782644256949425, 0.026677345857024193, 0.00916480552405119, -0.01722656562924385, -0.0640038400888443, -0.04316854849457741, 0.002536322455853224, -0.007346823811531067, 0.002686118707060814, 0.06656399369239807, 0.010696811601519585, -0.03535190969705582, -0.014938768930733204, 0.01233776193112135, 0.008347734808921814, 0.02063102461397648, -0.028815345838665962, -0.0009175018640235066, 0.03385394439101219, 0.010785328224301338, -0.04621894285082817, -0.024743612855672836, -0.02620072104036808, 0.0008289858815260231, 0.018615584820508957, 0.005610549356788397, -0.033009640872478485, 0.058556705713272095, 0.03548808768391609, 0.0038776795845478773, -0.01285523921251297, 0.03998197242617607, -0.012868857011198997, 0.005355214700102806, 0.05615996569395065, -0.025615153834223747, 0.007837066426873207, -0.05063112452626228, 0.022251548245549202, 0.04047221690416336, 0.04872462525963783, -0.005835243500769138, -0.011295996606349945, -0.04883356764912605, -0.038538482040166855, -0.009294174611568451, -0.018465789034962654, 0.07119406014680862, -0.01526559703052044, -0.02768506482243538, 0.0640038400888443, 0.00891968421638012, -0.006853177212178707, 0.003938959911465645, 0.012521602213382721, -0.009961448609828949, -0.024907026439905167, -0.021843012422323227, -0.028134454041719437, 0.013365908525884151, -0.047281134873628616, 0.04205188527703285, -0.010512971319258213, -0.0004157696384936571, -0.013549748808145523, -0.003758523380383849, 0.06514773517847061, -0.04300513491034508, -0.0008153680828399956, 0.039464496076107025, 0.006921266205608845, 0.02576494961977005, -0.04752625524997711, -0.0018111724639311433, 0.034208010882139206, 0.05605102330446243, 0.00992740411311388, -0.012814385816454887, -0.016041813418269157, -0.005144138354808092, -0.011520691215991974, 0.04398561641573906, 0.001943946466781199, 0.02346353605389595, -0.012766723521053791, -0.03491613641381264, 0.021625127643346786, 0.004010453354567289, 0.030994199216365814, 0.03211086243391037, 0.009430352598428726, -0.03600556403398514, -0.0032836012542247772, -0.01175900362432003, 0.0221017524600029, 0.03137550130486488, -0.004013857804238796, 0.0009413330699317157, -0.0083409259095788, -0.0021073604002594948, -0.04153440520167351, 0.056432321667671204, 0.002304819179698825, 0.044557567685842514, 0.03725840523838997, 0.04107140004634857, -0.003652985207736492, 0.07751273363828659, 0.010145289823412895, -0.052755504846572876, -0.0138970036059618, 0.01608266681432724, -0.03785759210586548, -0.0177712794393301, -0.008075377903878689, 0.017104005441069603, -0.006015680264681578, 0.025084057822823524, -0.000771961233112961, -0.020603789016604424, -0.05474371090531349, 0.022646464407444, 0.009362263604998589, -0.005362024065107107, 0.019990986213088036, -0.02057655341923237, 0.0138970036059618, -0.010928315110504627, 0.020208872854709625, -0.0195279810577631, -0.03965514525771141, -0.016123520210385323, -0.04305960610508919, -0.029850302264094353, 0.018833469599485397, -0.02023610845208168, -0.022605611011385918, 0.006386766210198402, -0.00025299389380961657, 0.023109471425414085, -0.009001391008496284, -0.03736734762787819, -0.007755359169095755, -0.02434869483113289, -0.018561113625764847, -0.0061722854152321815, -0.005065836012363434, -0.0051986100152134895, 0.002556749153882265, -0.04254212602972984, 0.004773052409291267, -0.010928315110504627, 0.03102143667638302, 0.04314131289720535, 0.027167586609721184, 0.006025893613696098, 0.0077485498040914536, -0.011425366625189781, 0.028079982846975327, -0.014108080416917801, -0.032519396394491196, -0.0071085114032030106, -0.002430784050375223, 0.041588880121707916, 0.01996375061571598, 0.028406810015439987, -0.017144858837127686, 0.02489340864121914, -0.03704052045941353, 0.04229700565338135, -0.03992750123143196, 0.021965572610497475, 0.02313670702278614, -0.005362024065107107, -0.025587918236851692, 0.030122658237814903, 0.07201112806797028, 0.0537087544798851, 0.03540638089179993, -0.04052668809890747, 0.015497099608182907, -0.007796212565153837, 0.006808919366449118, -0.007891537621617317, -0.015592425130307674, 0.023667803034186363, -0.06623716652393341, 0.013325055129826069, -0.06068108603358269, 0.025179382413625717, 0.039301082491874695, 0.013093551620841026, -0.053790461272001266, -0.046191707253456116, -0.03559703007340431, -0.011037258431315422, 0.05621443688869476, -0.032519396394491196, -0.03763970360159874, 0.029496237635612488, 0.009089906699955463, -0.01778489723801613, 0.020917000249028206, 0.0064718774519860744, -0.026731817051768303, -0.00883116852492094, -0.016586527228355408, 0.005430113058537245, 0.02117573842406273, -0.03369053080677986, -0.0360872708261013, 0.03532467409968376, 0.023667803034186363, -0.03183850646018982, -0.01304588932543993, -0.0007821745821274817, 0.017812132835388184, 0.028216160833835602, -0.052483148872852325, 0.022632846608757973, -0.026881612837314606, -0.017471686005592346, -0.041588880121707916, 0.00302316015586257, 0.008402206003665924, 0.01512941811233759, 0.002395037328824401, 0.01209264062345028, 0.021352769806981087, 0.0030248623806983232, -0.02587389200925827, 0.011636442504823208, -0.0013907217653468251, 0.015578807331621647, 0.0033874372020363808, -0.0020835292525589466, 0.008912875317037106, 0.001027295715175569, -0.004708367399871349, -0.006836154963821173, 0.0015269001014530659, 0.004602829460054636, -0.012065405026078224, 0.011854328215122223, -0.01789383962750435, 0.002912515075877309, 0.030776314437389374, 0.01903773844242096, -0.014734501019120216, -0.0035474468022584915, -0.006264205556362867, 0.00012958224397152662, 0.0014647687785327435, -0.0322742760181427, -0.0008030268945731223, -0.056868091225624084, 0.02056293562054634, 0.004293023608624935, 0.01854749582707882, -0.039192140102386475, -0.008776696398854256, -0.03690434247255325, 0.05550630763173103, 0.02527470886707306, 0.009096715599298477, 0.007231072057038546, 0.009770799428224564, 0.023776745423674583, -0.020876146852970123, 0.02018163725733757, 0.012725870124995708, 0.007551091257482767, 0.0071493652649223804, 0.046573005616664886, 0.00784387532621622, -0.010478926822543144, -0.00441558426246047, 0.006393575109541416, 0.006253992207348347, -0.029605180025100708, -0.0070540402084589005, 0.007714505307376385, 0.005913546308875084, -0.003389139426872134, 0.019242005422711372, -0.029169410467147827, 0.05038600042462349, 0.0005821625818498433, 0.013713163323700428, 0.003499784506857395, 0.010901079513132572, 0.021734070032835007, 0.008803932927548885, -0.025969218462705612, -0.009089906699955463, -0.00511349830776453, 0.016749940812587738, 0.007210645359009504, -0.011323232203722, -0.014135316014289856, 0.019323712214827538, 0.0006076960125938058, 0.015388157218694687, 0.03058566525578499, -0.009443971328437328, -0.05517948046326637, -0.0166818518191576, 0.03878360241651535, -0.01575583964586258, -0.02411719225347042, -0.008810741826891899, 0.0003087419318035245, 0.010832990519702435, -0.033390939235687256, 0.020317815244197845, -0.024607433006167412, -0.007462575566023588, -0.024811701849102974, -0.04360431805253029, 0.012998227030038834, -0.025288326665759087, -0.014543850906193256, -0.026595639064908028, 0.003959386609494686, -0.011078111827373505, -0.013774443417787552, 0.007115320768207312, -0.003128698328509927, 0.03265557810664177, 0.03113037906587124, 0.025451740249991417, 0.034044597297906876, -0.011908799409866333, 0.019405419006943703, -0.06329571455717087, 0.031920213252305984, -0.02280987985432148, 0.0076940786093473434, -0.022006426006555557, -0.016858883202075958, -0.0005906737642362714, -0.014802590012550354, -0.003241045633330941, 0.023232031613588333, -0.01684526540338993, -0.0003506593347992748, -0.007803021464496851, 0.015769457444548607, 0.03916490450501442, -0.0366319864988327, 0.005842052865773439, -0.0027422921266406775, 0.007326397113502026, 0.0010102733504027128, -0.020222490653395653, -0.033445410430431366, 0.011520691215991974, -0.0057433233596384525, -0.01211306732147932, 0.027317384257912636, 0.006992760114371777, 0.001105598290450871, -0.03834783285856247, 0.029959244653582573, -0.007258307654410601, -0.0022520499769598246, -0.03671369329094887, 0.007503428962081671, -0.039627909660339355, -0.025642389431595802, 0.02696331962943077, 0.04098969325423241, 0.012024551630020142, 0.006277823355048895, 0.004596020560711622, -0.0027473988011479378, -0.025301944464445114, 0.014039991423487663, 0.03358158841729164, -0.015034093521535397, 0.052864447236061096, 0.014720883220434189, 0.0023082236293703318, 0.01920115202665329, -0.04109863564372063, 0.007898346520960331, 0.04243318364024162, 0.023722274228930473, -0.008837977424263954, -0.0211621206253767, -0.040553923696279526, -0.01941903680562973, 0.02735823765397072, -0.026936084032058716, -0.05082177370786667, 0.006492304615676403, 0.0013805084163323045, 0.028352338820695877, 0.021298298612236977, 0.058284349739551544, 0.006318677216768265, 0.029496237635612488, -0.007612371817231178, -0.018847087398171425, 0.01022699661552906, 0.03802100569009781, -0.03600556403398514, 0.03676816448569298, -0.024321459233760834, 0.04058115929365158, -0.0038266126066446304, -0.01974586583673954, -0.012031360529363155, -0.006655718665570021, 0.011445793323218822, -0.03167509287595749, -0.0008200492011383176, -0.0005059877876192331, 0.013495277613401413, -0.041697822511196136, 0.028733639046549797, 0.02456657961010933, -0.003215512027963996, -0.019500743597745895, 0.012031360529363155, -0.01581031084060669, -0.009287365712225437, -0.015306450426578522, 0.04766243323683739, 0.01345442421734333, -0.01635502465069294, 0.0012758212396875024, -0.03736734762787819, -0.004599425010383129, 0.0107172392308712, 0.0061076004058122635, -0.004248765762895346, -0.006907648406922817, 0.004235147498548031, -0.004207911901175976, 0.012712252326309681, -0.050740066915750504, 0.012160729616880417, -0.0607355572283268, 0.017212947830557823, 0.005903332959860563, -0.05621443688869476, -0.011411748826503754, -0.004561976063996553, -0.058338820934295654, -6.691891030641273e-05, -0.0024614243302494287, 0.030449487268924713, -0.018588349223136902, 0.004841141402721405, -0.017090387642383575, -0.012542028911411762, -0.050467707216739655, -0.02532918006181717, -0.028788110241293907, 0.021897483617067337, 0.026391370221972466, -0.025615153834223747, -0.00213289400562644, 0.002875066129490733, 0.037503525614738464, 0.0038232081569731236, -0.01673632301390171, 0.005232654511928558, 0.002001822227612138, -0.003506593406200409, -0.002124382881447673, -0.0018673461163416505, -0.013461233116686344, 0.010955550707876682, 0.0018230881541967392, -0.006785087753087282, 0.002241836627945304, -0.031647857278585434, -0.009069480001926422, -0.01561966072767973, -0.004350899253040552, -0.02735823765397072, -0.008320499211549759, -0.04485715925693512, -0.025478975847363472, 0.009859315119683743, -0.010424455627799034, -0.07675013691186905, -0.016777176409959793, 0.014108080416917801, -0.007557900156825781, 0.0013626349391415715, -0.027644211426377296, 0.0211621206253767, 0.024049103260040283, 0.03676816448569298, -0.05381769686937332, -0.005270103458315134, 0.003843634855002165, -0.026704581454396248, -0.02280987985432148, 0.004378134850412607, 0.058393292129039764, 0.014829825609922409, -0.023531625047326088, 0.011282378807663918, -0.014148933812975883, 0.038429539650678635, -0.03614174202084541, -0.02324564941227436, -0.0024801488034427166, 0.0030299690552055836, -0.03358158841729164, -0.016273315995931625, 0.040444981306791306, -0.007162983063608408, -0.005110093858093023, 0.025696860626339912, -0.015674132853746414, -0.0028580438811331987, 0.007993671111762524, 0.03488890081644058, -0.01691335439682007, -0.02395377680659294, -0.003338072681799531, -0.001673291902989149, 0.005327979102730751, 0.026050925254821777, -0.0277940072119236, 0.008511149324476719, 0.030177129432559013, -0.0200726930052042, -0.034044597297906876, -0.004841141402721405, 0.013604220934212208, 0.00619611656293273, -0.017212947830557823, -0.005348405800759792, -0.010213378816843033, 0.0463823564350605, -0.026990555226802826, 0.012453513219952583, 0.04098969325423241, -0.01373359002172947, 0.007700887508690357, -0.03736734762787819, 0.010015919804573059, -0.01706315204501152, -0.01700868085026741, 0.03129379078745842, -0.020222490653395653, -0.021638745442032814, 0.0022877969313412905, -0.0017992568900808692, -0.0007323843892663717, -0.004749221261590719, 0.007067658007144928, 0.01651843823492527, -0.0013388036750257015, -0.04191570729017258, 0.017907457426190376, -0.012671398930251598, -0.04861568287014961, -0.015592425130307674, -0.017035916447639465, -0.009668665006756783, -0.010608295910060406, 0.0558876097202301, 0.027371855452656746, 0.009069480001926422, 0.023327356204390526, 0.022469433024525642, 0.051992908120155334, -0.0306401364505291, 0.026187103241682053, -0.0005187545320950449, -0.010301894508302212, 0.04491163045167923, 0.023340974003076553, 0.00426578801125288, -0.039246611297130585, 0.0004825821379199624, 0.0306401364505291, -0.007612371817231178, -0.04118034243583679, -0.006873603910207748, 0.0021056581754237413, 0.019078591838479042, 0.0026571806520223618, -0.01832961104810238, -0.029823066666722298, 0.007857493124902248, 0.004330472555011511, 0.010982786305248737, -0.0233137384057045, 0.023504389449954033, 0.0184385534375906, 0.014611940830945969, -0.01640949584543705, 0.00753747345879674, -0.030177129432559013, -0.008388588204979897, 0.004024071153253317, 0.04796202480792999, 0.01345442421734333, -0.024484872817993164, -0.002619731705635786, -0.0169542096555233, -0.0120041249319911, 0.0006013126694597304, 0.0458376444876194, -0.000803878006990999, -0.026391370221972466, 0.044121794402599335, 0.044938866049051285, 0.02757612243294716, -0.020413139835000038, 0.034425895661115646, 0.01865643821656704, -0.02154342085123062, -0.025233853608369827, 0.02741270884871483, -0.006529753562062979, 0.05583313852548599, 0.03548808768391609, -0.0357876792550087, 0.010649149306118488, 0.023490771651268005, 0.04199741408228874, 0.024648288264870644, 0.023872070014476776, -0.015769457444548607, 0.008545193821191788, -0.03965514525771141, 0.0032836012542247772, 0.007013186812400818, 0.021380005404353142, 0.034425895661115646, -0.017812132835388184, -0.006781683303415775, -0.047008778899908066, -0.020045457407832146, 0.038865309208631516, 0.01789383962750435, 0.0504404716193676, -0.011289187707006931, 0.02729014866054058, -0.004786670207977295, -0.008654136210680008, -0.020644642412662506, -0.025969218462705612, 0.011289187707006931, 0.011793048121035099, -0.004534740000963211, 0.01556518953293562, -0.009403117001056671, 0.0010638936655595899, -0.03014989383518696, -0.023177560418844223, 0.002298010280355811, 0.022183459252119064, -0.011064494028687477, 0.047471784055233, -0.009232894517481327, -0.028842581436038017, 0.01914668083190918, -0.0015643491642549634, -0.007367250509560108, 0.01028146781027317, -0.0031899786554276943, 0.004916039761155844, 0.04687260091304779, 0.010567442514002323, -0.019228387624025345, -0.02423975244164467, 0.04273277521133423, -0.008102613501250744, -0.006522944662719965, 0.03260110318660736, 0.039627909660339355, -0.0515298992395401, 0.007271925453096628, -0.002207792131230235, 0.029659651219844818, -0.016395878046751022, 0.005321170203387737, -0.008027715608477592, -0.018942413851618767, 0.02340906485915184, 0.028188925236463547, -0.00872903410345316, -0.00763279851526022, 0.0011592184891924262, 0.04118034243583679, -0.01575583964586258, 0.0020682092290371656, 0.032192569226026535, -0.00886521302163601, -0.01842493563890457, -0.0134884687140584, 0.003121889429166913, 0.00753747345879674, 0.01630055159330368, -0.014475761912763119, -0.024021867662668228, -0.023272885009646416, 0.009307792410254478, -0.02088976465165615, -0.005498202051967382, 0.0004142801626585424, -0.0015345601132139564, 0.029360059648752213, 0.016586527228355408, 0.0027661235071718693, -0.0008809039136394858, 0.008354543708264828, 0.0007221709820441902, 0.026132632046937943, 0.045919351279735565, 0.0030606091022491455, -0.03450760245323181, -0.021298298612236977, -0.022278783842921257, 0.026500312611460686, 0.02117573842406273, 0.002211196580901742, -0.0017013787291944027, 0.03347264602780342, -0.026827141642570496, -0.0037551189307123423, -0.0428689569234848, -0.021856630221009254, -0.016995063051581383, 0.019514363259077072, 0.007462575566023588, 0.0048922086134552956, 0.0028103813529014587, -0.011227907612919807, 0.03320029005408287, 0.024825319647789, -0.007455766666680574, -0.039791323244571686, -0.003224023152142763, 0.0032376409508287907, -0.017648719251155853, -0.0035951093304902315, -0.008742651902139187, -0.013291010633111, 0.015061329118907452, 0.011125774122774601, 0.009859315119683743, -0.025288326665759087, 0.025846656411886215, 0.008558811619877815, 0.025792185217142105, 0.009743562899529934, -0.051992908120155334, 0.009866124019026756, -0.01990927942097187, 0.020208872854709625, -0.026078160852193832, -0.022959675639867783, 0.023558860644698143, 0.021747687831521034, 0.024430401623249054, -0.0028614483308047056, -0.0014537042006850243, -0.037394583225250244, -0.0024290818255394697, -0.007734932005405426, 0.025097675621509552, 0.0017235076520591974, 0.00223502772860229, 0.03834783285856247, -0.016545673832297325, -0.018942413851618767, 0.021380005404353142, 0.030449487268924713, 0.01711762323975563, 0.009614193812012672, -0.018792616203427315, 0.01914668083190918, -0.03644133359193802, 0.0029584753792732954, -0.008803932927548885, 0.004136418458074331, 0.023014146834611893, -0.020413139835000038, -0.002335459226742387, -0.008279645815491676, 0.01082618162035942, 0.022673700004816055, -0.00768726971000433, -0.02783486247062683, 0.029142174869775772, 0.0008170703076757491, -0.002917621750384569, 0.013134405016899109, 0.00486837700009346, 0.01326377410441637, 0.017961928620934486, -0.0006251438753679395, -0.0023592906072735786, -0.008620091713964939, 0.0009336730581708252, -0.0007655778317712247, -0.011425366625189781, -0.009287365712225437, 0.0039764088578522205, 0.011330041103065014, -0.03747629001736641, -0.003341477131471038, -0.004013857804238796, -0.013413570821285248, 0.007973244413733482, -0.018887942656874657, -0.025914747267961502, -0.007285543717443943, 0.03096696361899376, -0.018016399815678596, -0.007496620062738657, 0.010410837829113007, 0.0005353512824513018, -0.028352338820695877, -0.01039041019976139, -0.0024869577027857304, -0.0009472908568568528, 0.01045169122517109, -0.011936035007238388, 0.007428530603647232, 0.03660475090146065, 0.015497099608182907, -0.0038232081569731236, 0.00615526270121336, -0.0006596140447072685, 0.014938768930733204, -0.013447615318000317, 0.08867936581373215, -0.005665020551532507, -0.011234716512262821, 0.000617483863607049, -0.02001822181046009, 0.002097147051244974, 0.033499881625175476, 0.017471686005592346, -0.004163654055446386, 0.0017269121017307043, 0.008837977424263954, 0.011146200820803642, 0.014611940830945969, 0.02148894965648651, -0.030939728021621704, 0.0017328698886558414, -0.024307841435074806, -0.008075377903878689, 0.006209734361618757, 0.021189356222748756, 0.019786719232797623, 0.0303677786141634, 0.01996375061571598, -0.029523473232984543, 3.3220079785678536e-05, -0.03725840523838997, 0.0003244875406380743, -0.003004435682669282, 0.029659651219844818, 0.004684536252170801, -0.0010766603518277407, 0.03385394439101219, -0.009226085618138313, -0.0107172392308712, -0.03655027970671654, -0.029605180025100708, 0.012569264508783817, -0.011357277631759644, 0.0045585716143250465, -0.009198850020766258, 0.015578807331621647, -0.008817550726234913, -0.009260130114853382, 0.03516125679016113, 0.02690884843468666, 0.009791226126253605, -0.011697723530232906, -0.037394583225250244, 0.015905635431408882, 0.00516796950250864, -0.008034524507820606, 0.030776314437389374, 0.015047711320221424, 0.011650060303509235, -0.009804843924939632, -0.004773052409291267, 0.004643682856112719, 0.02148894965648651, -0.0221017524600029, -0.013576984405517578, -0.02259199321269989, 0.010342747904360294, 0.0054369219578802586, 0.00615526270121336, 0.024198899045586586, 0.018833469599485397, 0.003615536028519273, -0.018152577802538872, -0.014938768930733204, -0.018847087398171425, 0.03674092888832092, 0.009525678120553493, -0.020848911255598068, 0.0012809279141947627, -0.009546104818582535, -0.006825941614806652, 0.006434428505599499, 0.01887432485818863, 0.01255564671009779, 0.0349978432059288, 0.013059507124125957, -0.01756701059639454, 0.0134884687140584, -0.02067187801003456, -0.04709048569202423, 0.025410886853933334, -0.029278352856636047, 0.003103164955973625, -0.007734932005405426, -0.002725269878283143, 0.019173916429281235, 0.012473939917981625, 0.0027337810024619102, -0.002701438730582595, 0.004732199013233185, 0.004916039761155844, -0.024362312629818916, -0.031266555190086365, -0.005236058961600065, -0.010342747904360294, 0.007374059408903122, -0.004378134850412607, -0.020603789016604424, -0.005327979102730751, -0.02286435104906559, -0.00038385280640795827, 0.00878350529819727, 0.006097387056797743, -0.0237358920276165, 0.00883116852492094, -0.033118583261966705, -0.01086022611707449, 0.02155703864991665, 0.00600206246599555, 0.008184321224689484, -0.007891537621617317, -0.03423524647951126, -0.00011415578774176538, 0.014761736616492271, -0.004071733448654413, 0.01689973659813404, -0.007952817715704441, -0.02067187801003456, 0.02483893744647503, -0.009546104818582535, 0.027208441868424416, 0.009804843924939632, -0.004749221261590719, -0.016491202637553215, -0.013216111809015274, 0.0218293946236372, 0.019064974039793015, 0.01602819561958313, 0.044067323207855225, 0.01783936843276024, -0.0037210744339972734, -0.029169410467147827, -0.016695469617843628, -0.0024239751510322094, -0.03529743850231171, 0.04346814006567001, -0.01974586583673954, 0.01570136845111847, -0.009804843924939632, 0.005600336007773876, -0.006373148411512375, -0.032573867589235306, 0.002972093177959323, -0.023068618029356003, -0.001751594478264451, -0.030286071822047234, 0.012514793314039707, -0.03271004930138588, 0.014271494932472706, -0.0018707505660131574, 0.0109146973118186, 0.01181347481906414, -0.005515224300324917, 0.018356846645474434, -0.013222920708358288, -0.02477084845304489, -0.0011396429035812616, -0.014039991423487663, 0.003361903829500079, 0.04807097092270851, -0.022306019440293312, 0.020426757633686066, 0.010608295910060406, -0.0166818518191576, 0.033064112067222595, -0.026609256863594055, 0.003632558276876807, 0.04649129882454872, -0.003979813307523727, 0.004878590814769268, 0.0051611606031656265, 0.01788022182881832, 0.005123711656779051, -0.007653225213289261, 0.005923759657889605, -0.010295085608959198, -0.011473028920590878, 0.0018350037280470133, 0.0023371614515781403, 0.02428060583770275, -0.006087173707783222, -0.005794390104711056, -0.019950132817029953, 0.008293263614177704, 0.0031916808802634478, 0.016586527228355408, -0.009001391008496284, 0.030939728021621704, 0.02730376645922661, -0.011724959127604961, 0.023558860644698143, 0.03856571763753891, 0.05406281724572182, -0.0057160877622663975, -0.006315272301435471, -0.008075377903878689, 0.011786239221692085, 0.008912875317037106, 0.015742221847176552, -0.028733639046549797, -0.019282858818769455, -0.017907457426190376, 0.005297339055687189, 0.002112467074766755, -0.0007098298519849777, -0.013141213916242123, -0.011663678102195263, -0.0027388876769691706, 0.048152677714824677, -0.01722656562924385, 0.0012324143899604678, -0.018887942656874657, 0.0229188222438097, -0.02362694963812828, 0.0014247663784772158, -0.005797794554382563, 0.010397220030426979, 0.027371855452656746, -0.0269769374281168, -0.026840759441256523, -0.028216160833835602, 0.014475761912763119, -0.032791756093502045, 0.010267850011587143, 0.01041764672845602, 0.01826152205467224, -0.009294174611568451, -0.005790985655039549, -0.05267379805445671, 0.012576073408126831, 0.003908319398760796, 0.005038600414991379, 0.032900698482990265, -0.018452171236276627, -0.0010162311373278499, 0.03151167929172516, 0.004245361313223839, -0.00815027579665184, -0.007905155420303345, -0.02351800724864006, -0.008810741826891899, 0.00899458210915327, -0.007871110923588276, -0.020590171217918396, 0.007544282358139753, 0.02799827605485916, -0.030449487268924713, 0.0041296095587313175, -0.045701466500759125, 0.004926253110170364, -0.04774414002895355, -0.028243396431207657, -0.007503428962081671, -0.0024239751510322094, 0.002594198100268841, -0.03113037906587124, -0.053027860820293427, 0.0004366219509392977, 0.019813954830169678, 0.010329130105674267, -0.015197508037090302, 0.014271494932472706, 0.0240082498639822, 0.027916569262742996, -0.02067187801003456, 0.021693216636776924, 0.04161611571907997, -0.019024120643734932, 0.008790314197540283, 0.007796212565153837, -0.02768506482243538, 0.011330041103065014, -0.0020716136787086725, 0.016763558611273766, 0.013107169419527054, -0.02674543485045433, 0.016858883202075958, -0.022197077050805092, -0.005324574653059244, -0.01367911882698536, 0.011595589108765125, -0.006236969958990812, 0.002769527956843376, 0.04292342811822891, -0.01837046444416046, -0.043686024844646454, 0.03461654484272003, -0.01974586583673954, -0.0005527991452254355, 0.027875715866684914, 0.013011844828724861, -0.019242005422711372, -0.04556528851389885, -0.02560153603553772, -0.02319117821753025, -0.006951906252652407, 0.020099928602576256, 0.025914747267961502, -0.0032546634320169687, -0.02050846442580223, 0.003908319398760796, -0.00028980462229810655, 0.02369503863155842, 0.011561544612050056, -0.03720393404364586, 0.024702759459614754, 0.026010071858763695, 0.010982786305248737, -0.04003644362092018, -0.03695881366729736, 0.005048813764005899, 0.0069485018029809, 0.005835243500769138, 0.0053415969014167786, 0.05441688373684883, -0.010043155401945114, 0.019010502845048904, 0.02466190606355667, 0.006512731313705444, 0.0693965032696724, -0.02516576461493969, -0.02154342085123062, -0.01738997921347618, -0.026187103241682053, 0.0017320187762379646, 0.011187054216861725, 0.0058386484161019325, 0.013890194706618786, -0.012399042025208473, 0.0035236156545579433, -0.021924719214439392, 0.01310036052018404, 0.00869498960673809, -0.01646396704018116, 0.013631456531584263, -0.020059075206518173, 0.011997316032648087, 0.08372247219085693, 0.007367250509560108, 0.051339250057935715, 0.01542901061475277, -0.0033363704569637775, -0.031266555190086365, 0.014530233107507229, -0.012970991432666779, 0.011833901517093182, 0.05332745611667633, -0.008715416304767132, -0.022469433024525642, 0.0017567011527717113, 0.007217454258352518, 0.015537953935563564, -0.045755937695503235, 0.04741731286048889, -0.028297867625951767, -0.0021056581754237413, 0.015932871028780937, -0.011418557725846767, 0.0030759291257709265, 0.02516576461493969, -0.021366387605667114, 0.010465309023857117, 0.011057685129344463, 0.03698604926466942, 0.02741270884871483, -0.014571087434887886, 0.0033040279522538185, 0.0007225965382531285, -0.02105317823588848, 0.012317335233092308, -0.029577944427728653, -0.018901560455560684, -0.016123520210385323, 0.01898326724767685, 0.005746727809309959, -0.006417406257241964, -0.029033230617642403, -0.038919780403375626, -0.025901127606630325, 0.0027235676534473896, -0.025193000212311745, 0.003932151012122631, 0.004098969511687756, 0.012814385816454887], [0.01936502940952778, 0.021325360983610153, 0.01909426599740982, 0.02056722156703472, 0.0009490272495895624, -0.008198728784918785, 0.01427466981112957, 0.006942384876310825, 0.01684151031076908, 0.06151754409074783, -0.033921293914318085, 0.020881308242678642, -0.008767332881689072, -0.023329012095928192, -0.016419120132923126, 0.05003715679049492, 0.014935333281755447, 0.004570493474602699, 0.0036661424674093723, 0.016830680891871452, 0.03697551041841507, 0.041762616485357285, -0.03541591018438339, -0.020328950136899948, -0.008415340445935726, -0.02527851238846779, -0.008225805126130581, -0.01788124442100525, 0.03877338394522667, -0.06225402280688286, 0.05168340355157852, -0.016040049493312836, 0.020718848332762718, 0.024455390870571136, -0.02250589057803154, 0.023047417402267456, -0.057142000645399094, 0.007083182223141193, -0.019115926697850227, -0.037971921265125275, -0.018855994567275047, 0.011274605989456177, 0.008155407384037971, -0.032903220504522324, -0.01437214482575655, 0.05462931469082832, -0.0053340476006269455, -0.06030452251434326, -0.011285437270998955, 0.027249673381447792, -0.02283080667257309, -0.015671811997890472, 0.018596060574054718, 0.034462820738554, 0.004028966184705496, 0.008702349849045277, 0.01917007938027382, -0.02744462341070175, -0.02384888008236885, -0.018758518621325493, 0.03452780470252037, 0.01863938383758068, -0.0038448465056717396, 0.025040240958333015, 0.023047417402267456, -0.008085008710622787, 0.01301832590252161, 0.018498586490750313, -0.030498839914798737, 0.05701203644275665, 0.04306228086352348, 0.05948140099644661, -0.008691519498825073, -0.009227631613612175, 0.0091030802577734, 0.0398564375936985, -0.0020550976041704416, -0.012357661500573158, 0.0027496067341417074, -0.01917007938027382, -0.00989912636578083, 0.012498458847403526, 0.008247466757893562, -0.02384888008236885, -0.05393615737557411, 0.01704729162156582, -0.04213085398077965, 0.001787041313946247, -0.014328822493553162, -0.024607017636299133, -0.022874129936099052, 0.026404889300465584, 0.00433763675391674, 0.07226145267486572, -0.016050880774855614, 0.008307035081088543, -0.010196966119110584, -0.01553101371973753, -0.022332601249217987, 0.07074517756700516, -0.05952472239732742, -0.03080209530889988, -0.0617341548204422, -0.011902778409421444, 0.03940155357122421, -0.022137651219964027, -0.05904817953705788, 0.00043965279473923147, -0.021682769060134888, -0.001007241546176374, -0.00588640570640564, 0.008128330111503601, 0.033336445689201355, 0.059827979654073715, 0.01009407639503479, 0.018466094508767128, 0.001860147574916482, -0.0623839907348156, -0.03749537840485573, -0.014415467157959938, -0.02835438959300518, -0.04925735667347908, -0.0008847208810038865, -0.03550255671143532, 0.0008603521273471415, -0.004107487387955189, -0.04873749241232872, -0.01581260748207569, 0.005631887819617987, 0.020350610837340355, 0.05138014629483223, -0.019982371479272842, 0.07399434596300125, -0.05112021416425705, -0.01858522929251194, -0.003766325069591403, 0.007234809920191765, 0.011036334559321404, 0.015411878004670143, -0.00341433216817677, -0.005696871317923069, 0.004760028328746557, 0.02250589057803154, 0.02636156789958477, -0.030173921957612038, 0.031603556126356125, 0.00042780686635524035, 0.03426787257194519, -0.0038529695011675358, -0.02995731122791767, -0.009790821000933647, 0.0175563283264637, 0.004987469874322414, 0.02147698774933815, -0.006752850022166967, -0.02410881221294403, 0.04232580214738846, 0.004741074983030558, 0.010716833174228668, 0.06602305173873901, -0.030715450644493103, -0.024022167548537254, -0.007337700109928846, -0.04635477066040039, 0.044665202498435974, -0.03298986703157425, 0.024585356935858727, -0.009790821000933647, -0.03132196143269539, 0.007819660007953644, -0.034051261842250824, -0.0597846582531929, -0.06156086549162865, 0.010202381759881973, -0.016733204945921898, -0.02296077460050583, -0.010543543845415115, -0.00021187271340750158, 0.015855930745601654, -0.026209939271211624, 0.03961816430091858, 0.019689947366714478, -0.05939475819468498, -0.03376966714859009, -0.015021977946162224, -0.0016976892948150635, -0.003731125732883811, -0.02560342848300934, -0.03342308849096298, 0.005929728038609028, -0.014729552902281284, 0.006222153082489967, -0.02976236119866371, -0.0181303471326828, 0.009130156598985195, -0.013451547361910343, -0.011751150712370872, -0.06147422268986702, 0.018888486549258232, -0.007283547427505255, -0.010532713495194912, -0.017328886315226555, 0.0010586866410449147, -0.020101508125662804, -0.05428273603320122, -0.00760304881259799, 0.021574463695287704, -0.012433475814759731, 0.04239078611135483, -0.007689693011343479, 0.007483912631869316, 0.016993138939142227, -0.02802947349846363, 0.029285816475749016, 0.0013680342817679048, 0.023069079965353012, 0.045228391885757446, 0.026859773322939873, 0.02501857839524746, 0.033661361783742905, 0.022170143201947212, 0.019321708008646965, 0.06104100123047829, -0.017307225614786148, 0.022614195942878723, 0.017253072932362556, 0.0044296965934336185, -0.02815943956375122, 0.003758202074095607, -0.058744922280311584, -0.04213085398077965, 0.05220326781272888, -0.041567664593458176, 0.009335936978459358, 0.024217117577791214, 0.009335936978459358, -0.013061647303402424, -0.005342170596122742, -0.03452780470252037, -0.010624772869050503, 0.043300554156303406, 0.02077300287783146, -0.029242495074868202, 0.020480576902627945, 0.034614451229572296, -0.010944274254143238, -0.024585356935858727, 0.0015081545570865273, 0.030325550585985184, 0.0030054787639528513, 0.05432605743408203, -0.005637302994728088, 0.03953152149915695, -0.03099704533815384, 0.0032220897264778614, 0.024542035534977913, 0.022397585213184357, -0.00435659009963274, 0.0349610261619091, 0.008891884237527847, -0.002562779700383544, 0.01607254147529602, -0.034636110067367554, -0.0048250118270516396, -0.05099024623632431, 0.018032871186733246, -0.020751340314745903, 0.009395505301654339, 0.004191424231976271, 0.04386374354362488, -0.0380585640668869, 0.039509858936071396, 0.016419120132923126, -0.005195958074182272, -0.09236296266317368, 0.0024991503451019526, 0.010657264851033688, -0.009812481701374054, 0.02462867833673954, 0.05904817953705788, -0.02488861232995987, 0.009964109398424625, -0.002262231893837452, 0.008983944542706013, 0.02521352842450142, 0.009054343216121197, 0.060217879712581635, -0.015292742289602757, -0.047047924250364304, 0.0405062697827816, 0.04080952703952789, -0.008209560066461563, 0.01621333882212639, -0.019343368709087372, -0.011729490011930466, -0.016635730862617493, 0.01588842272758484, -0.036304015666246414, 0.06801588088274002, -0.026729807257652283, -0.03775531053543091, -0.0011229930678382516, 0.008274543099105358, 0.04037630558013916, -0.028982561081647873, 0.06121429055929184, -0.01125294528901577, -0.02167193777859211, -0.006119262892752886, -0.04743782430887222, -0.0025573645252734423, 0.0023597069084644318, -0.03678055852651596, -0.03169019892811775, -0.005648133810609579, -0.055842336267232895, -0.043365538120269775, 0.011653675697743893, 0.04206587001681328, -0.013603175058960915, 0.011707828380167484, 0.020718848332762718, 0.06442013382911682, -0.031018706038594246, 0.0155959976837039, 0.002301492728292942, -0.008631951175630093, 0.04830427095293999, -0.04204421117901802, -0.027531268075108528, -0.0483475923538208, -0.008897299878299236, 0.01793539710342884, 0.01840111054480076, -0.016191678121685982, 0.008095839060842991, -0.023199046030640602, 0.053329646587371826, -0.017058122903108597, 0.013408225029706955, -0.002202663803473115, -0.012271017767488956, -0.010890121571719646, 0.009503810666501522, -0.004922486841678619, -0.033076509833335876, -0.03210176154971123, -0.005415276624262333, 0.03363969922065735, 0.0447518490254879, -0.010110321454703808, 0.029285816475749016, -0.018617721274495125, 0.031278640031814575, -0.0702253133058548, -0.009617531672120094, 0.03099704533815384, -0.004900825675576925, 0.01553101371973753, 0.04269404336810112, 0.010538129135966301, -0.023675590753555298, -0.0035090993624180555, 0.048650845885276794, 0.005680625326931477, 0.02731465734541416, -0.05991462245583534, -0.030108939856290817, -0.025625089183449745, -0.0120868980884552, -0.006936969701200724, -0.035979099571704865, -0.020783832296729088, 0.02835438959300518, -0.01231433916836977, 0.010364839807152748, -0.016419120132923126, 0.007570556830614805, -0.02501857839524746, 0.00017887336434796453, -0.00456237094476819, 0.006482086610049009, 0.034549467265605927, 0.02116290107369423, 0.03535092622041702, 0.03727876767516136, -0.022939112037420273, -0.02211599051952362, 0.0519433356821537, -0.0027617912273854017, -0.006958630867302418, 0.03015226125717163, 0.03701883181929588, -0.005550658795982599, -0.026144957169890404, 0.03311983495950699, 0.01986323483288288, 0.09314276278018951, -0.021888548508286476, -0.06506996601819992, -0.002370537491515279, 0.0015961528988555074, 0.005055160727351904, 0.005250110756605864, 0.0001547584543004632, 0.009086834266781807, 0.014253009110689163, -0.07005202025175095, 0.0633803978562355, -0.0029675716068595648, 0.007906303741037846, 0.042910654097795486, -0.0019887604285031557, 0.01581260748207569, 0.03368302062153816, -0.0052284495905041695, 0.0364123210310936, 0.029437445104122162, 0.006151754409074783, -0.03242667764425278, 0.015227758325636387, 0.03769032657146454, -0.019624963402748108, 0.025690073147416115, -0.0021701722871512175, 0.00862112082540989, 0.03268660977482796, -0.037387073040008545, 0.02141200378537178, -0.06177747994661331, -0.039314910769462585, -0.009530887007713318, 0.09496229141950607, 0.02534349635243416, -0.060087911784648895, -0.0315169095993042, -0.012400983832776546, -0.031733524054288864, 0.032318372279405594, 0.0031381528824567795, -0.009395505301654339, -0.01398224476724863, 0.01837944984436035, 0.012866698205471039, -0.04618148133158684, -0.010451484471559525, 0.0019346076296642423, 0.014426297508180141, -0.01520609762519598, 0.02193187177181244, -0.03292488306760788, 0.03795025870203972, -0.026144957169890404, -0.061820801347494125, -0.024087151512503624, -0.02501857839524746, 0.00750557379797101, -0.024282101541757584, -0.0038692152593284845, 0.0024314592592418194, 0.009157232940196991, 0.027184689417481422, 0.03149525076150894, 0.019982371479272842, -0.005772685166448355, 0.02096795104444027, -0.01794622838497162, -0.03602242097258568, -0.009043511934578419, -0.060347843915224075, 0.010473145171999931, -0.003417039755731821, 0.04011636972427368, 0.0015853223158046603, 0.031928472220897675, -0.032621629536151886, -0.011025503277778625, -0.022224295884370804, -0.016289152204990387, -0.0070344447158277035, 0.005496506113559008, 0.05367622524499893, -0.05367622524499893, 0.00253164186142385, 0.06377030164003372, 0.03730042651295662, 0.04044128581881523, -0.0016706129536032677, -0.026079973205924034, -0.02302575670182705, -0.005001008044928312, -0.0044784341007471085, -0.0033033189829438925, -0.007510988973081112, -0.008480323478579521, 0.002182356547564268, 0.02185605652630329, -0.015184435993432999, 0.020426424220204353, 0.016559917479753494, 0.004010012373328209, -0.03974813222885132, 0.003658019471913576, 0.01446961984038353, 0.08018942177295685, -0.02154197171330452, -0.03907663747668266, 0.020740510895848274, 0.034614451229572296, -0.006260060239583254, -0.009276369586586952, 0.03851344808936119, 0.02668648399412632, -0.019267555326223373, -0.044665202498435974, 0.0010769631480798125, 0.008350356481969357, 0.024736985564231873, -0.029675716534256935, 0.017437191680073738, 0.002287954557687044, 0.005859329365193844, 0.029567411169409752, -0.006861155852675438, 0.008025440387427807, 0.013408225029706955, 0.01664656028151512, -0.058095090091228485, -0.0027753293979912996, -0.004862918518483639, -0.006276305764913559, -0.010110321454703808, -0.029047545045614243, 0.005030792206525803, 0.0502970926463604, -0.010662680491805077, -0.01704729162156582, 0.027574589475989342, -0.001625936827622354, -0.006931554526090622, 0.016429949551820755, -0.0037121723871678114, -0.0005723270587623119, -0.04726453498005867, 0.034181226044893265, 0.033726345747709274, 0.009579624980688095, 0.013408225029706955, -0.022787485271692276, -0.006909893359988928, -0.025950007140636444, 0.011025503277778625, 0.01237932313233614, 0.029805684462189674, -0.014047227799892426, 0.02707638405263424, 0.03682388365268707, -0.019300047308206558, 0.030715450644493103, -0.005832253023982048, 0.01437214482575655, -0.006157169584184885, -0.003682388225570321, 0.010408162139356136, -0.013549022376537323, 0.06654292345046997, -0.029242495074868202, -0.024130472913384438, 0.026469873264431953, -0.029913989827036858, -0.0633803978562355, -0.016733204945921898, 0.002622347790747881, -0.026838112622499466, 0.03587079420685768, -0.012530950829386711, 0.01737220771610737, -0.018996791914105415, -0.020101508125662804, 0.02963239513337612, 0.03112701140344143, 0.018173668533563614, -0.010159059427678585, -0.022202635183930397, -0.027574589475989342, 0.011837795376777649, 0.019473334774374962, -0.03234003484249115, -0.048390913754701614, 0.018812671303749084, -0.019191741943359375, -0.017014799639582634, -0.010743909515440464, 0.0030217245221138, 0.04184925928711891, 0.030195584520697594, -0.029242495074868202, 0.04444859176874161, -0.02540847845375538, 0.006216737907379866, 0.01311580091714859, -0.005155343562364578, -0.010023677721619606, 0.018162839114665985, 0.016170017421245575, -0.01324576698243618, 0.013765634037554264, -0.014382975175976753, 0.0020320825278759003, 0.006070525385439396, -0.007196902763098478, -0.005891821347177029, -0.008204144425690174, 0.011881117708981037, -0.0428023487329483, 0.001208283705636859, -0.01722058095037937, -0.003468484850600362, -0.03522096201777458, 0.010938859544694424, -0.03272993490099907, 0.011632014997303486, -0.0013267428148537874, 0.002902588341385126, -0.019494997337460518, 0.01940835267305374, 0.004164347890764475, -0.015910083428025246, -0.0574885793030262, -0.005499213468283415, -0.04648473486304283, 0.005837668664753437, 0.028592661023139954, -0.01270423922687769, -0.028657644987106323, 0.0035930362064391375, 0.015130283311009407, 0.020621374249458313, -0.031603556126356125, -0.026859773322939873, 0.013819786719977856, 0.009958693757653236, 0.006173415575176477, 0.004215793218463659, 0.02127120830118656, 0.018758518621325493, -0.00628713658079505, 0.002140388125553727, 0.03145192936062813, 0.005837668664753437, 0.0008908130694180727, 0.01594257541000843, -0.010565205477178097, -0.048694171011447906, 0.02462867833673954, 0.013061647303402424, -0.009011020883917809, 0.048650845885276794, 0.002430105581879616, 0.003024432109668851, -0.014512942172586918, 0.02597166784107685, -0.00977998971939087, -0.01742636039853096, 0.0009280430967919528, 0.025733396410942078, 0.06922890245914459, 0.02038310281932354, -0.011761981062591076, -0.028571000322699547, -0.08274543285369873, -0.051596757024526596, 0.014350483193993568, -0.01954915001988411, -0.0033168571535497904, -0.00912474188953638, -0.039444874972105026, 0.012390153482556343, 0.030065616592764854, 0.01837944984436035, -0.009227631613612175, -0.01999320276081562, -0.014642908237874508, 0.01961413212120533, -0.023372335359454155, -0.0218019038438797, 0.052766457200050354, -0.026209939271211624, -0.017144765704870224, 0.00023065695131663233, 0.0019603301770985126, 0.03554587811231613, 0.028506018221378326, -0.01466456986963749, -0.01626749150454998, 0.024607017636299133, -0.0020564512815326452, -0.009113910607993603, -0.005653548985719681, -0.005241987761110067, -0.030195584520697594, 0.010624772869050503, -0.03270827233791351, -0.05549575760960579, -0.017014799639582634, -0.020978782325983047, -0.00536653958261013, 0.026859773322939873, 0.01954915001988411, -0.008252881467342377, -0.01992821879684925, 0.015086960978806019, -0.025365157052874565, -0.010267364792525768, 0.012975003570318222, -0.008187898434698582, -0.024000506848096848, 0.037647005170583725, 0.004169763065874577, 0.02077300287783146, -0.03188515082001686, -0.013917261734604836, 0.0018791010370478034, -0.014090550132095814, -0.0020185443572700024, -0.0036309431307017803, 0.02341565676033497, 0.013299919664859772, -0.02456369623541832, -0.0023069079034030437, 0.029740700498223305, -0.008512815460562706, 0.0005845114355906844, 0.017588818445801735, 0.002300138818100095, 0.02089213766157627, -0.0356108620762825, 0.03370468318462372, 0.037711989134550095, 0.0034820230212062597, 0.009113910607993603, -0.04392872750759125, 0.0011886532884091139, -0.03409458324313164, 0.022549211978912354, -0.01481619756668806, -0.038686737418174744, 0.020025692880153656, -0.028852595016360283, 0.023134062066674232, -0.013711481355130672, 0.00519054289907217, -0.011187962256371975, -0.017307225614786148, 0.07685361057519913, 0.0004014073929283768, -0.03730042651295662, 0.0018249483546242118, -0.00017735031724441797, 0.009590455330908298, -0.005637302994728088, 0.02603665180504322, 0.015704302117228508, -0.0011866225395351648, -0.028635984286665916, 0.028960900381207466, -0.049993835389614105, -0.007131919730454683, -0.0021241423673927784, 0.02501857839524746, -0.012336000800132751, -0.024455390870571136, 0.003000063356012106, 0.007088597398251295, 0.04059291630983353, 0.031170332804322243, -0.05670877918601036, -0.027617912739515305, -0.01241181418299675, -0.008902715519070625, -0.002880927175283432, -0.016050880774855614, -0.014253009110689163, -0.004475726280361414, -0.007678862661123276, 0.00750557379797101, -0.04187092185020447, 0.03309817239642143, 0.042997296899557114, -0.004093949217349291, -0.022809145972132683, -0.013364903628826141, -0.0447518490254879, -0.024845290929079056, 0.024477051571011543, -0.02436874620616436, 0.010153643786907196, -0.04033298045396805, -0.011404572986066341, 0.010852214880287647, 0.020144829526543617, -0.016603238880634308, -0.020350610837340355, 0.05679542198777199, 0.011610353365540504, 0.030195584520697594, -0.059698011726140976, -0.054239414632320404, 0.00025705641019158065, -0.0033520562574267387, -0.011437064968049526, 0.04347384348511696, 0.02436874620616436, 0.010700587183237076, 0.028787611052393913, -0.011133809573948383, -0.04139437526464462, -0.0004982054815627635, -0.054239414632320404, -0.06160419061779976, 0.0019454382127150893, -0.0441020131111145, 0.005973050370812416, -0.018368618562817574, -0.02740130014717579, -0.018022041767835617, -0.022202635183930397, 0.024866951629519463, -0.02206183783710003, -0.020231474190950394, 0.031018706038594246, 0.04795769229531288, 0.028397710993885994, 0.0013836032012477517, -0.008669857867062092, 0.016830680891871452, 0.0062654754146933556, 0.007153580896556377, -0.022484229877591133, 0.02616661787033081, 0.028982561081647873, 0.005718532484024763, -0.005109313875436783, -0.029978971928358078, 0.002233801642432809, 0.015444369986653328, 0.043820422142744064, -0.0277695395052433, -0.05120685696601868, 0.026924757286906242, 0.010169889777898788, -0.03318481519818306, -0.03099704533815384, -0.02636156789958477, 0.014003906399011612, -0.00025350265786983073, -0.004944147542119026, -0.01071141753345728, -0.048694171011447906, 0.007056105881929398, -0.004722121637314558, 0.022397585213184357, -0.01620250754058361, 0.02963239513337612, -0.025798378512263298, -0.026924757286906242, 0.04301895946264267, 0.011090487241744995, -0.01871519722044468, -0.018292805179953575, 0.04691796004772186, -0.017231410369277, 0.00016245830920524895, -0.008409924805164337, -0.026534857228398323, -0.007581387646496296, -0.004584031645208597, 0.0400080643594265, 0.005374662112444639, 0.03132196143269539, -0.0024910273496061563, 0.05090360343456268, 0.03491770476102829, 0.017794599756598473, -0.02694641798734665, -0.016928154975175858, -0.0017843337263911963, 0.026188278570771217, -0.0030785847920924425, -0.021650277078151703, -0.006617468316107988, 0.006888232193887234, 0.029913989827036858, -0.03673723712563515, 0.030585484579205513, 0.023675590753555298, -0.024347085505723953, 0.008664443157613277, -3.9916514651849866e-05, 0.0032843654043972492, -0.046961281448602676, 0.018411941826343536, -0.022592535242438316, 0.004110195208340883, -0.015346894972026348, -0.004186009056866169, 0.003787986235693097, -0.010911783203482628, 0.014848689548671246, 0.026253262534737587, -0.015801778063178062, -0.013419056311249733, -0.030975382775068283, 0.001895346911624074, 0.04063623771071434, 0.018422771245241165, -0.011902778409421444, 0.0002621332532726228, 0.0630338191986084, -0.00935759861022234, 0.03060714527964592, -0.020686358213424683, -0.029805684462189674, 0.005924312863498926, 0.03504767268896103, -0.0105760358273983, -0.0262965839356184, 0.012628425844013691, -0.005426107440143824, -0.03992142155766487, -0.025516783818602562, 0.059438079595565796, -0.032621629536151886, 0.0428023487329483, 0.015466030687093735, -0.019776590168476105, -0.02173692174255848, 0.00047620589612051845, -0.00887563917785883, -0.04847755655646324, 0.04943064600229263, 0.0036417737137526274, -0.0041481018997728825, -0.009395505301654339, -0.005277187097817659, 0.015780117362737656, -0.016614070162177086, 0.029220834374427795, 0.07672364264726639, -0.01800038106739521, -0.004096657037734985, -0.0009937032591551542, -0.00926012359559536, -0.014534602873027325, -0.01742636039853096, -0.026989739388227463, 0.02358894608914852, 0.01600755751132965, -0.02244090661406517, -0.02744462341070175, 0.01270423922687769, 0.04243411123752594, 0.01987406611442566, -0.028072794899344444, 0.029177511110901833, 0.025560107082128525, -0.04020301625132561, -0.014512942172586918, -0.0012752977199852467, 0.007814244367182255, -0.011382912285625935, -0.026383228600025177, 0.018498586490750313, -0.013159122318029404, 0.00609218655154109, 0.03786361590027809, 0.02309074066579342, -0.04635477066040039, 0.032946545630693436, 0.007489327806979418, 0.014166364446282387, 0.015466030687093735, 0.01295334193855524, 0.04371211305260658, 0.01398224476724863, 0.02012316882610321, -0.01491367258131504, 0.019018452614545822, -0.0076842778362333775, -0.001283420599065721, -0.007115673739463091, 0.02584170177578926, 0.004026258364319801, 0.0502970926463604, 0.013614006340503693, 0.03298986703157425, 0.029242495074868202, -0.00588640570640564, 0.02423877827823162, 0.003322272328659892, 0.01806536316871643, 0.004757320508360863, -0.020534729585051537, 0.025516783818602562, 0.00877816416323185, 0.004732951987534761, 0.018617721274495125, -0.016191678121685982, 0.014058059081435204, 0.009991185739636421, 0.023112401366233826, -0.004343051929026842, 0.0014851397136226296, 0.004378251265734434, -0.014090550132095814, -0.021964363753795624, 0.023004096001386642, 0.009395505301654339, 0.00852364581078291, -0.02397884614765644, -0.0035470062866806984, 0.024087151512503624, 0.031148672103881836, 0.013386564329266548, -0.02043725550174713, -0.020307287573814392, 0.005158051382750273, 0.02037227153778076, 0.024910273030400276, -0.006649959832429886, 0.014437127858400345, -0.002807821147143841, 0.005875575356185436, 0.009444243274629116, 0.028072794899344444, 0.0351126566529274, 0.01961413212120533, -0.03903331607580185, -0.004340344574302435, 0.027986150234937668, 0.020686358213424683, -0.008003778755664825, -0.029220834374427795, 0.017827091738581657, 0.016473272815346718, 0.031863488256931305, 0.026209939271211624, 0.015216927975416183, 0.032903220504522324, 0.036174047738313675, -0.032643288373947144, 0.031148672103881836, -0.04271570220589638, -0.0067799268290400505, -0.027228012681007385, -0.046961281448602676, 0.009769159369170666, -0.011978592723608017, -0.0016151063609868288, 0.01698230765759945, -0.012996664270758629, -0.016949815675616264, 0.011274605989456177, -0.01221686415374279, 0.03504767268896103, -0.009671684354543686, -0.030390534549951553, 0.050513703376054764, 0.0005171589436940849, 0.03721378371119499, -0.005875575356185436, -0.03448448330163956, 0.019191741943359375, -0.0005110667552798986, 0.0033899634145200253, 0.03223172947764397, -0.011296267621219158, -0.04527171328663826, -0.03073711134493351, 0.0037825708277523518, -0.012271017767488956, 0.012769223190844059, -0.005772685166448355, 0.004269945900887251, -0.03721378371119499, -0.04321390762925148, 0.021336190402507782, 0.036953847855329514, -0.01437214482575655, 0.01562848873436451, 0.008729426190257072, -0.00010644403664628044, -0.01845526322722435, -0.0165815781801939, 0.030390534549951553, 0.024217117577791214, 0.015769286081194878, 0.01549852266907692, 0.029307479038834572, -0.007765506859868765, 0.01979825273156166, 0.016289152204990387, 0.0032437508925795555, 0.004497387446463108, 0.02185605652630329, -0.01018613576889038, -0.03145192936062813, 0.0007121089147403836, -0.02815943956375122, 0.04072288051247597, 0.015422708354890347, -0.0054748449474573135, 0.011902778409421444, -0.039964742958545685, 0.01633247546851635, -0.0010214565554633737, -0.02404383011162281, -0.017123105004429817, 0.029740700498223305, 0.0071048433892428875, -0.008864807896316051, -0.034896042197942734, -0.031343623995780945, 0.015606828033924103, 0.007516404148191214, 0.023762235417962074, -0.027292994782328606, 0.003362886840477586, 0.016744036227464676, -0.003709464566782117, -0.0006792788044549525, -0.011177130974829197, -0.008366602472960949, -0.012931681238114834, 0.030910400673747063, 0.0030515084508806467, 0.008626536466181278, -0.04210919141769409, 0.003958567511290312, 0.0018655628664419055, 0.019700776785612106, 0.015086960978806019, -0.028765950351953506, 0.01607254147529602, -0.014523772522807121, 0.014512942172586918, 0.002583086956292391, 0.053849514573812485, 0.014642908237874508, -0.02932913973927498, 0.011632014997303486, 0.058614958077669144, -0.005371954757720232, 0.01292085088789463, 0.02746628411114216, 0.0136356670409441, -0.006390026770532131, -0.015314402990043163, 0.0416543111205101, 0.020913798362016678, 0.01481619756668806, -0.038231853395700455, -0.01672237552702427, -0.01863938383758068, -0.016603238880634308, -0.002416567411273718, 0.0060434490442276, 0.045228391885757446, -0.020491408184170723, 0.0021796489600092173, 0.01115547027438879, 0.02740130014717579, -0.03647730499505997, -0.032903220504522324, -0.008529061451554298, -0.033141493797302246, 0.016863172873854637, 0.00682866433635354, 0.018888486549258232, -0.0068449098616838455, -0.020155660808086395, 0.00919513963162899, -0.014642908237874508, -0.016256660223007202, 0.013711481355130672, -0.0038827534299343824, -0.019765760749578476, 0.017025630921125412, 0.014523772522807121, -0.030650466680526733, 0.0021322653628885746, 0.015379386022686958, 0.02495359629392624, 0.0020185443572700024, 0.002157987793907523, -0.006698697339743376, -0.0070344447158277035, 0.02141200378537178, 0.03329312056303024, -0.025820039212703705, -0.010332347825169563, -0.03684554249048233, -0.052636489272117615, 0.025560107082128525, -0.012195203453302383, -0.001294251182116568, 0.030563822016119957, -0.016484102234244347, 0.021650277078151703, 0.008285373449325562, 0.019451674073934555, 0.01857439987361431, -0.0037852784153074026, -0.017209749668836594, -1.6774665709817782e-05, 0.001426925417035818, 0.011805303394794464, 0.01587759144604206, -0.02655651792883873, 0.0025857947766780853, 0.007787168025970459, -0.02783452346920967, 0.014166364446282387, 0.026859773322939873, -0.0009456427069380879, 0.0044296965934336185, -0.005837668664753437, 0.014480450190603733, -0.037906937301158905, 0.013993075117468834, 0.02436874620616436, -0.003037970280274749, 0.011588692665100098, -0.012195203453302383, 0.0017829799326136708, 0.022852469235658646, 0.021487819030880928, 0.016809020191431046, 0.017978718504309654, -0.0032464584801346064, 0.022744162008166313, 0.018184499815106392, 0.011339589953422546, -0.0028132363222539425, -0.03708381578326225, 0.006861155852675438, 0.008491153828799725, 0.015606828033924103, -0.018801841884851456, 0.010056168772280216, 0.04791437089443207, 0.0038448465056717396, 0.006557900458574295, -0.01606171205639839, -0.01736137829720974, -0.007158996071666479, -0.023177385330200195, -0.025798378512263298, -0.013494869694113731, -0.001091178273782134, -0.028181100264191628, -0.011285437270998955, -0.02841937355697155, 0.042997296899557114, 0.0008914899663068354, 0.020458916202187538, 0.014686230570077896, 0.002374598989263177, -0.009243877604603767, 0.010056168772280216, -0.01633247546851635, 0.00044371423427946866, 0.007624709978699684, -0.0022297401446849108, 0.008962282910943031, 0.027682894840836525, -0.008079593069851398, 0.011112147942185402, 0.021650277078151703, 0.0047194138169288635, 0.025386817753314972, -0.008003778755664825, -0.013700650073587894, -0.015466030687093735, -0.0044946796260774136, -0.03106202743947506, -0.02822442352771759, -0.014740383252501488, 0.022018516436219215, -0.021953532472252846, -0.013711481355130672, -0.01749134436249733, 0.013516531325876713, -0.036932189017534256, -0.0006830017664469779, 0.007987533695995808, 0.02603665180504322, -0.0010695172240957618, 0.0029919403605163097, -0.03008727729320526, 0.01489201094955206, 0.0028619738295674324, -0.03652062639594078, -0.0014431712916120887, -0.0014079719549044967, 0.017642971128225327, -0.004424281418323517, 0.008458662778139114, 0.003823185572400689, -0.0029188343323767185, 0.015585166402161121, 0.013256597332656384, -0.0022324479650706053, -0.0019603301770985126, 0.0057293628342449665, -0.0029242495074868202, -0.003500976599752903, 0.01228184811770916, -0.03881670534610748, -0.01543353870511055, 0.014686230570077896, -0.053069714456796646, -0.001259051845408976, -0.004451357759535313, -0.006823248695582151, -0.011826965026557446, -0.007467666640877724, 0.012964173220098019, 0.02501857839524746, 0.0002986863546539098, -0.0006149723776616156, -0.004816888831555843, -0.006455009803175926, -0.016224170103669167, -0.019256724044680595, -0.012834206223487854, -0.009140986949205399, 0.044340286403894424, 0.017989549785852432, 0.015476861037313938, -0.006503747310489416, -0.003660727059468627, -0.018693536520004272, -0.028462694957852364, 0.011133809573948383, 0.011805303394794464, -0.003798816818743944, 0.007814244367182255, -0.01936502940952778, -0.03589245676994324, -0.002913418924435973, -0.038665078580379486, -0.028657644987106323, -0.0059838807210326195, -0.02315572462975979, 0.016180846840143204, 0.004529878962785006, -0.01018613576889038, 0.007711354177445173, 0.009964109398424625, 0.0020307288505136967, 0.017577989026904106, 0.022527551278471947, 0.047351181507110596, 0.022289279848337173, 0.019115926697850227, 0.0019454382127150893, -0.021487819030880928, -0.005951389204710722, 0.010722247883677483, -0.016635730862617493, -0.04488181322813034, 0.005139097571372986, -0.0017504882998764515, -0.009715006686747074, 0.017188088968396187, -0.01974410004913807, 0.022657519206404686, -0.02128203772008419, 0.0016584285767748952, 0.007001953199505806, 0.019841574132442474, -0.032881561666727066, 0.007527234964072704, 0.023610606789588928, -0.013516531325876713, -0.02789950557053089, 0.007245640270411968, -0.049733903259038925, -0.020686358213424683, 0.03275159373879433, -0.019527487456798553, -0.009568794630467892, -0.009249293245375156, 0.005761854350566864, -0.003417039755731821, -0.004898117855191231, 0.009617531672120094, -0.021693598479032516, -0.008361187763512135, -0.015574336051940918, 0.030498839914798737, -0.013408225029706955, -0.0011866225395351648, -0.011567031033337116, -0.014447958208620548, -0.026209939271211624, 0.005447768606245518, -0.060217879712581635, 0.01581260748207569, 0.03246999904513359, 0.03645564243197441, -0.012173542752861977, 0.004061457701027393, -0.0045325867831707, -0.02733631804585457, 0.038946669548749924, 0.020859645679593086, -0.040657900273799896, 0.022657519206404686, -0.000284978945273906, -0.031928472220897675, -0.010267364792525768, 0.0047681513242423534, 0.015866762027144432, 0.007711354177445173, -0.01767546311020851, -0.004150809720158577, -0.0032843654043972492, 0.05337296798825264, 0.011664506047964096, -0.007440590299665928, 0.029978971928358078, 0.006899062544107437, 0.01936502940952778, -0.0001148207884398289, -0.05341628938913345, 0.007521819323301315, 0.012585103511810303, 0.004646307323127985, 0.008767332881689072, -0.02887425571680069, 0.022354261949658394, -0.013039986602962017, -0.008556137792766094, 0.0022541088983416557, -0.0033303953241556883, -0.04011636972427368, 0.006162585224956274, 0.031993456184864044, 0.010348593816161156, 0.0029919403605163097, -0.011166300624608994, -0.001968453172594309, -0.0006501716561615467, -0.0028240669053047895, -0.0308670774102211, 0.014740383252501488, 0.0012739439262077212, 0.01953831873834133, -0.020328950136899948, -0.011263775639235973, 0.010532713495194912, -0.02289579063653946, -0.05207330361008644, 0.018292805179953575, 0.029415784403681755, 0.02147698774933815, -0.009568794630467892, -0.01774044707417488, 0.0006173415458761156, 0.07823991775512695, -0.007830490358173847, -0.029112529009580612, 0.012650086544454098, -0.025170207023620605, -0.012206033803522587, 0.037127137184143066, 0.016700712963938713, -0.024347085505723953, -0.030563822016119957, 0.00765178631991148, 0.008572382852435112, -0.03203677758574486, -0.02043725550174713, -0.025495123118162155, -0.011502048000693321, -0.00868068914860487, 0.011166300624608994, 0.010261950083076954, 2.2697624444845133e-05, 0.013419056311249733, 0.01904011331498623, -0.0045082177966833115, -0.011480387300252914, -0.004787104669958353, -0.004315975587815046, 0.008821485564112663, 0.019917387515306473, 0.005193250719457865, -0.02436874620616436, 0.013549022376537323, -0.046008192002773285, -0.01179447304457426, -0.019819913432002068, 0.001014010631479323, -0.0010681633139029145, -0.014491280540823936, 0.02038310281932354, -0.026578178629279137, 0.029935650527477264, 0.05289642512798309, -0.021910211071372032, -0.0015812608180567622, -0.0060434490442276, 0.04791437089443207, 0.03203677758574486, -0.023632267490029335, -0.010164475068449974, -0.01724224165081978, -0.01019155140966177, 0.043690454214811325, -0.043820422142744064, 0.006162585224956274, 0.02848435565829277, 0.026079973205924034, 0.02906920574605465, 0.016191678121685982, -0.02096795104444027, -0.00019799606525339186, -0.01710144430398941, 0.01691732555627823, -0.012845036573708057, 0.011112147942185402, -0.0165815781801939, -0.00266837771050632], [-0.01015004888176918, 0.018524546176195145, 0.007396247237920761, -0.026033885776996613, -0.02098996192216873, 0.004419088363647461, 0.00871942937374115, -0.035805076360702515, 0.014407980255782604, 0.023704180493950844, -0.005086333956569433, 0.032095640897750854, -0.013729425147175789, -0.018728112801909447, 0.0012765312567353249, -0.015719853341579437, 0.014973443001508713, 0.050620187073946, 0.012881232425570488, 0.0016200495883822441, -0.0007768038776703179, 0.028544539585709572, 0.01896560750901699, 0.03053496591746807, -0.017156127840280533, 0.005959973204880953, 0.005824262276291847, -0.00029898821958340704, 0.00166528660338372, 0.023274429142475128, 0.03707171231508255, -0.03383726626634598, 0.06274370104074478, 0.012688974849879742, 0.029245711863040924, 0.020006056874990463, 0.03621220961213112, -0.0109869334846735, 0.042681097984313965, -0.03354322537779808, -0.06287941336631775, 0.032140880823135376, 0.01224791444838047, -0.05229395627975464, -0.03205040469765663, 0.06767453253269196, 0.01266635674983263, 0.02011914923787117, -0.01518831867724657, -0.0009676474146544933, 0.002387664746493101, -0.0026265725027769804, 0.021928628906607628, -0.0036952963564544916, -0.027074337005615234, 0.015029989182949066, -0.024360118433833122, 0.03168850764632225, 0.04290728271007538, -0.022075649350881577, 0.007526303641498089, -0.004235312808305025, 0.010664619505405426, -0.020514974370598793, -0.014260959811508656, -0.043337032198905945, -0.04677504301071167, 0.0028951670974493027, -0.016228768974542618, -0.02614697813987732, 0.05496294051408768, 0.003138315863907337, -0.030467111617326736, 0.018558474257588387, -0.05166063830256462, 0.003073287894949317, -0.05568673089146614, 0.02836359106004238, -0.002844275673851371, 0.01595734804868698, 0.006214431021362543, 0.03858714923262596, -0.006406688131392002, 0.014374052174389362, 0.02383989281952381, 0.004037401173263788, -0.030738532543182373, -0.03324918448925018, -0.04458105191588402, -0.03381464630365372, -0.005846880376338959, -0.034312255680561066, -0.01046670787036419, 0.06315083056688309, -0.00123765564057976, -0.021917320787906647, -0.018988225609064102, -0.05347011983394623, -0.05473675578832626, 0.009607205167412758, -0.024088695645332336, 0.058084290474653244, 0.027956457808613777, 0.00913787167519331, -0.01182947214692831, -0.06224609538912773, -0.05971282348036766, 0.03922046720981598, -0.0024442109279334545, -0.03551103547215462, -0.03438011184334755, 0.013163963332772255, -0.008023910224437714, 0.08956923335790634, 0.03338489681482315, -0.018049558624625206, -0.00863461010158062, -0.007305773440748453, 0.011535431258380413, -0.035986024886369705, 0.008493244647979736, -0.019191792234778404, 0.01517700869590044, -0.07934567332267761, -0.018241815268993378, 0.010664619505405426, -0.004096774850040674, -0.004639618564397097, -0.043178703635931015, -0.016138294711709023, 0.011173536069691181, -0.02483510598540306, -0.03621220961213112, -0.022188741713762283, -0.028069550171494484, -0.00990124512463808, -0.0067572747357189655, -0.00855544488877058, -0.03709432855248451, 0.01876204088330269, 0.015199627727270126, -0.030557584017515182, 0.03320394828915596, 0.01593472808599472, -0.003112870268523693, -0.019169174134731293, -0.03234444558620453, 0.05853665992617607, 0.034809861332178116, 0.009200071915984154, -0.016160912811756134, 0.05310822278261185, -0.033972978591918945, -0.04650362208485603, 0.010246177203953266, -0.016839468851685524, 0.013899064622819424, -0.013605023734271526, 0.01959892548620701, 0.007922126911580563, 0.033430133014917374, -0.018999533727765083, 0.02698386274278164, 0.028408827260136604, -0.013932991772890091, -0.013853827491402626, 0.017529333010315895, -0.016839468851685524, -0.02465415745973587, 0.02763979882001877, -0.026395782828330994, 0.018038248643279076, -0.03591816872358322, -0.06966496258974075, -0.061296116560697556, 0.030059978365898132, 0.04682028293609619, 0.013978228904306889, 0.0027735927142202854, -0.025558898225426674, 0.029449278488755226, 0.025920793414115906, -0.07323868572711945, -0.050213053822517395, -0.04392511397600174, 0.019757254049181938, -0.03182421997189522, 0.018558474257588387, 0.029087383300065994, -0.00912656169384718, -0.040826380252838135, -0.006146575789898634, 0.012100894004106522, 0.06075327470898628, -0.024201788008213043, 0.03695861995220184, 0.00048735784366726875, -0.01021790411323309, 0.016850776970386505, -0.043020375072956085, 0.023862510919570923, -0.017020415514707565, 0.017484094947576523, -0.013955610804259777, -0.061160407960414886, 0.0005428438307717443, -0.03575983643531799, -0.042839426547288895, 0.03483248129487038, -0.009465839713811874, -0.03720742091536522, -0.05283680185675621, -0.07835046201944351, 0.031258758157491684, -0.02481248788535595, 0.016997797414660454, 0.01595734804868698, -0.029901647940278053, 0.01099258754402399, 0.023681562393903732, 0.04740836098790169, -0.017812063917517662, 0.024427972733974457, -0.0014207240892574191, -0.03924308717250824, -0.01826443336904049, -0.008589372970163822, -0.025717226788401604, -0.012869922444224358, -0.08472887426614761, -0.03166589140892029, 0.02415655180811882, 0.05084637179970741, -0.04976068437099457, -0.031439706683158875, 0.031281378120183945, -0.016635902225971222, -0.050077345222234726, 0.012349697761237621, -0.02836359106004238, -0.005637659691274166, 0.06088898330926895, -0.032276589423418045, -0.025943411514163017, 0.024925580248236656, -0.012383624911308289, 0.007939090952277184, -0.00014993587683420628, 0.04272633418440819, 0.009075670503079891, 0.0003908758517354727, -0.010913423262536526, -0.004359714686870575, -0.05885332077741623, 0.020073913037776947, 0.02836359106004238, 0.027232665568590164, 0.03526223078370094, 0.05926045402884483, -0.04781549423933029, 0.017993012443184853, -0.011388411745429039, -0.024925580248236656, 0.032299209386110306, -0.04114304110407829, -0.01746147684752941, 0.03609911724925041, -0.034990809857845306, -0.02112567238509655, -0.0054312655702233315, -0.07464102655649185, 0.005349273793399334, 0.003011086955666542, 0.005581113044172525, -0.003972372971475124, 0.015527595765888691, 0.001649736426770687, -0.013412767089903355, -0.04645838588476181, 0.018648948520421982, -0.01861502043902874, -0.008329260163009167, 0.034312255680561066, -0.024224406108260155, -0.025536278262734413, -0.0015140253817662597, -0.0311909019947052, -0.02144233137369156, 0.008459316566586494, 0.030127832666039467, 0.049398791044950485, -0.035307466983795166, 0.011625905521214008, -0.0018306843703612685, 0.003963890951126814, 0.027277903631329536, 0.024020839482545853, -0.03456105664372444, -0.0014871659222990274, 0.0228220596909523, -0.020922105759382248, -0.018829895183444023, -0.018072176724672318, -0.028227880597114563, 0.010353615507483482, -0.008255749940872192, 0.01945190504193306, -0.015866873785853386, -0.005233353935182095, -0.022720277309417725, -0.003155279904603958, -0.031598035246133804, -0.006553708575665951, -0.031077809631824493, -0.025423185899853706, 0.0034464930649846792, -0.025920793414115906, 0.06188419833779335, -0.021747682243585587, 0.003582203993573785, 0.016534117981791496, 0.006508471444249153, 0.05111779645085335, -0.011382756754755974, 0.055098649114370346, 0.019983438774943352, -0.03340751677751541, 0.029223093762993813, -0.011614596471190453, 0.009358401410281658, -0.021238764747977257, 0.006904295179992914, 0.00922269094735384, 0.005479330196976662, 0.031055191531777382, 0.010777711868286133, 0.004625482019037008, 0.05654623359441757, -0.04496556520462036, 0.019056079909205437, -0.004102429375052452, -0.00897388719022274, -0.0017925156280398369, 0.028951670974493027, -0.007758143357932568, 0.009929518215358257, 0.02397560328245163, 0.030942099168896675, -0.015414503403007984, 0.01031968742609024, -0.04259062185883522, -0.02800169587135315, -0.0005120968562550843, -0.013729425147175789, -0.10748308151960373, 0.0013797280844300985, 0.037478845566511154, -0.033611081540584564, -0.05514388903975487, 0.021917320787906647, -0.01827574335038662, -0.01709958165884018, -0.004045883193612099, 0.04440010339021683, -0.0449429452419281, 0.01893167942762375, -0.00964678730815649, -0.05871760845184326, 0.04627743735909462, -0.03521699458360672, 0.04899165779352188, -0.029268329963088036, 0.0012037279084324837, -0.026033885776996613, 0.018863823264837265, -0.017054343596100807, 0.030218306928873062, -0.0020045640412718058, -0.0372752770781517, -0.031258758157491684, 0.033271804451942444, -0.011541086249053478, 0.038157399743795395, 0.01925964653491974, 0.06287941336631775, 0.03275157883763313, -0.0348777174949646, 0.02182684652507305, -0.011524122208356857, 0.00047887591063044965, 0.021261384710669518, -0.0026534320786595345, -0.011382756754755974, 0.021566733717918396, -0.011705070734024048, 0.014046084135770798, 0.001495647826232016, 0.02734575793147087, 0.025377949699759483, -0.03284205123782158, 0.03571460023522377, -0.025197001174092293, -0.006067411042749882, 0.01909000799059868, -0.01728052832186222, 0.01574247144162655, -0.00923965498805046, -0.009290546178817749, 0.026124360039830208, 0.019734635949134827, 0.04912736639380455, 0.0041589755564928055, 0.014317505992949009, 0.014984752051532269, 0.008210512809455395, 0.0038366620428860188, -0.013706807047128677, 0.0067572747357189655, 0.025966031476855278, -0.016183532774448395, 0.04322393983602524, 0.011705070734024048, 0.0054001654498279095, 0.0007782175671309233, 0.007956054992973804, 0.030421873554587364, 0.006140920799225569, -0.019361430779099464, 0.00922269094735384, -0.07382676005363464, 0.014815113507211208, 0.015063916333019733, 0.004294686485081911, 0.004017610102891922, -0.0020823150407522917, -0.015493667684495449, -0.041188277304172516, -0.02365894429385662, -0.0036924690939486027, -0.01015004888176918, 0.000800129200797528, -0.030602822080254555, 0.02429226227104664, 0.01912393607199192, 0.01072116568684578, 0.0015437122201547027, -0.07568147778511047, -0.03600864112377167, 0.00419290317222476, -0.0462322011590004, -0.038496676832437515, 0.05871760845184326, -0.07011733204126358, 0.015968656167387962, -0.019022153690457344, 0.020062603056430817, -0.007775106932967901, -0.0683530867099762, 0.028589775785803795, -0.07681240141391754, 0.03367893770337105, 0.005530221853405237, 0.071745865046978, 0.031258758157491684, -0.04544055461883545, 0.017732899636030197, -0.0023593916557729244, -0.02564937248826027, 0.0331813283264637, -0.05586767941713333, 0.023206574842333794, 0.022200051695108414, 0.07088635861873627, -0.0355788916349411, 0.012462790124118328, 0.03116828389465809, -0.007803380489349365, -0.05564149469137192, -0.030105214565992355, -0.001969222677871585, 0.03510390222072601, 0.038835953921079636, -0.02499343454837799, -0.05052971467375755, 0.02917785756289959, 0.0727410763502121, 0.059939008206129074, 0.022053031250834465, -0.04039663076400757, -0.05288203805685043, -0.01944059506058693, -0.01023486815392971, 0.05315345898270607, -0.009132216684520245, -0.019078699871897697, -0.014272269792854786, 0.01729183830320835, -0.050620187073946, 0.0603913776576519, -0.04510127753019333, 0.03236706554889679, -0.014849040657281876, 0.038496676832437515, 0.014656784012913704, 0.010715511627495289, 0.03166589140892029, 0.05686289444565773, 0.01662459224462509, -0.01775551773607731, -0.016013894230127335, 0.0058751534670591354, 0.026033885776996613, -0.005482157226651907, -0.010455398820340633, -0.023726800456643105, -0.07504816353321075, -0.0142496507614851, 0.07292202115058899, -0.029743319377303123, -0.008408425375819206, 0.0014998888364061713, -0.009250964038074017, -0.004557626321911812, -0.04007996991276741, -0.010427125729620457, 0.038994282484054565, -0.013955610804259777, -0.07269583642482758, 0.004498253110796213, -0.005343619268387556, 0.0012857200345024467, -0.03523961454629898, -0.013718116097152233, -0.025377949699759483, 0.002393319271504879, 0.012971705757081509, 0.025920793414115906, -0.03503604605793953, -0.00946018472313881, 0.010789021849632263, -0.00553870340809226, -0.008713774383068085, 0.01877334900200367, 0.0015295756747946143, 0.013209200464189053, -0.025377949699759483, -0.04005735367536545, -0.002784901997074485, 0.034131307154893875, 0.02700648084282875, 0.016534117981791496, -0.030602822080254555, 0.03693599998950958, -0.03232182562351227, -0.0052079083397984505, 0.013378839008510113, 0.03818001598119736, -0.026079123839735985, -0.0032514084596186876, 0.020209623500704765, -0.00972595252096653, -0.025762464851140976, -0.0019550861325114965, -0.002210957696661353, 0.027752891182899475, 0.018739422783255577, -0.011484540067613125, 0.008798593655228615, 0.02969808131456375, -0.03150756284594536, -0.035940784960985184, 0.008419734425842762, 0.02562675252556801, 0.05767715722322464, -0.026463637128472328, 0.00012342982518021017, 0.04591554030776024, -0.026757678017020226, 0.057089079171419144, 0.014260959811508656, 0.01466809306293726, -0.010709856636822224, -0.007266190834343433, -0.0292004756629467, -0.023104790598154068, -0.013265746645629406, 0.010381888598203659, -0.010104811750352383, -0.0341765433549881, 0.00033804046688601375, 0.019689397886395454, -0.0331813283264637, -0.0010729647474363446, 0.005193771794438362, 0.011852090246975422, 0.002128965687006712, 0.00624270411208272, 0.013559786602854729, -0.019225720316171646, 0.005705514922738075, -0.012191368266940117, 0.017551951110363007, 0.006785547826439142, -0.006321868859231472, 0.0017204191535711288, -0.0038310072850435972, -0.0018278569914400578, -0.005730960983783007, -0.007594159338623285, 0.017653733491897583, -0.0014214309630915523, -0.004843184724450111, 0.004119392950087786, -0.021397095173597336, 0.019497141242027283, 0.009601550176739693, 0.013966919854283333, -0.022912533953785896, -0.01660197414457798, -0.020085223019123077, -0.0361669696867466, 0.04444533959031105, 0.028906434774398804, -0.030150452628731728, -0.01207827590405941, 0.024857724085450172, -0.009878627024590969, -0.018140031024813652, -0.009262273088097572, -0.011320555582642555, -0.015640689060091972, 0.03385988622903824, 0.02415655180811882, 0.0011634387774392962, 0.010664619505405426, 0.04881070926785469, -0.021091744303703308, -0.01593472808599472, 0.009692024439573288, 0.003929963335394859, -0.006406688131392002, -0.014588928781449795, 0.018988225609064102, -0.02347799576818943, 0.028046932071447372, -0.0028471029363572598, 0.04378940165042877, -0.0016257042298093438, -0.004908212926238775, 0.0008997919503599405, 0.03200516849756241, -0.012643737718462944, -0.008244440890848637, 0.001364884665235877, -0.004028919152915478, -0.010625037364661694, 0.0005287072854116559, 0.057767633348703384, 0.033769410103559494, 0.04532746225595474, -0.014543691650032997, 0.005035442300140858, -0.005982591304928064, 0.011167881079018116, -0.0009556313743814826, -0.022086959332227707, 0.005759234074503183, -0.03153017908334732, 0.0039978185668587685, -0.003859280375763774, -0.004690510220825672, 0.013288364745676517, 0.013955610804259777, -0.019033461809158325, 0.008951269090175629, 0.004916694946587086, -0.00954500399529934, 0.022720277309417725, -0.039175231009721756, 0.0005672294064424932, -0.021883392706513405, 0.005781852174550295, -0.004682028200477362, 0.0017161781433969736, -0.013605023734271526, 0.002977159107103944, 0.01466809306293726, -0.001747278613038361, 0.0012242259690538049, 0.00805218331515789, 0.00040041800821200013, -0.01846799999475479, -0.01550497766584158, -0.014792494475841522, 0.03836096450686455, 0.042681097984313965, 0.04288466274738312, 0.032457537949085236, -0.0047781565226614475, 0.0015111981192603707, 0.013107417151331902, -0.0022519538179039955, -0.030761150643229485, -0.036144353449344635, -0.00040041800821200013, -0.011145262978971004, -0.021521495655179024, 0.009262273088097572, 0.044694144278764725, -0.017993012443184853, -0.021238764747977257, 0.014125249348580837, -0.01307348906993866, 0.001060948707163334, -0.03051234781742096, 0.004506734665483236, -0.01443059928715229, -0.003228789893910289, 0.055234361439943314, 0.016534117981791496, -0.02881596051156521, 0.004682028200477362, -0.03035401739180088, -0.02802431397140026, 0.03585031256079674, 0.012259223498404026, -0.032457537949085236, -0.003601995063945651, 0.010579800233244896, -0.023206574842333794, 0.009177453815937042, 0.0097146425396204, -0.0041420115157961845, -0.0033249184489250183, -0.0064632343128323555, 0.04831310361623764, -0.031439706683158875, -0.004560453817248344, 0.006926913745701313, 0.004540662746876478, 0.010523254051804543, 0.00030747015262022614, 0.043020375072956085, -0.035646744072437286, -0.008436698466539383, 0.012745521031320095, -0.00012183946091681719, 0.001058121444657445, -0.014385362155735493, -0.031959932297468185, 0.013944300822913647, 0.006762929726392031, -0.029087383300065994, -0.06826261430978775, 0.016726376488804817, 0.008080456405878067, 0.019316192716360092, -0.01435143407434225, 0.005954318214207888, 0.03150756284594536, -0.020401882007718086, 0.017235292121767998, -0.008159621618688107, -0.009765534661710262, -0.014159176498651505, -0.026621967554092407, -0.018750730901956558, 0.009991719387471676, -0.02564937248826027, 0.014588928781449795, -0.02768503688275814, -0.027029098942875862, 0.0014716157456859946, 0.0051909442991018295, 0.03309085592627525, -0.026735059916973114, -0.009867317974567413, -0.0004647393652703613, -0.006751620210707188, -0.02094472572207451, -0.02684815227985382, -0.03236706554889679, 0.00964678730815649, 0.011840781196951866, 0.01997213065624237, 0.018196577206254005, -0.018004320561885834, 0.0167376846075058, 0.005612213630229235, 0.012881232425570488, -0.011648524552583694, 0.01550497766584158, 0.018671566620469093, -0.022347072139382362, -0.033972978591918945, 0.03146232292056084, -0.0006174141890369356, -0.07038874924182892, -0.0496249757707119, 0.005909081548452377, -0.015618070028722286, 0.009341437369585037, -0.01778944581747055, 0.03401821479201317, 0.020085223019123077, 0.01030272338539362, -0.04397035017609596, -0.036280062049627304, 0.0075545767322182655, 0.0051796347834169865, -0.0006962254992686212, 0.02383989281952381, 0.003955408930778503, 0.04243229329586029, 0.005750752054154873, 8.150609210133553e-05, -0.011235736310482025, -0.007944745942950249, -0.023885129019618034, -0.056591469794511795, 0.036280062049627304, 0.0031496251467615366, 0.017653733491897583, -0.01642102561891079, 0.028793342411518097, 0.032118260860443115, -0.005041096825152636, -0.002309913747012615, 0.01962154358625412, 0.022256597876548767, -0.01859240233898163, 0.015493667684495449, 0.006887331139296293, -0.021419713273644447, -0.011365792714059353, -0.0001087631462723948, -0.011128298938274384, 0.01157501433044672, 0.0019621544051915407, -0.028092168271541595, 0.04123351350426674, 0.001068016979843378, -0.0070513151586055756, 0.010709856636822224, -0.003946926910430193, 0.003978027496486902, 0.0010072297882288694, 0.00847062561661005, -0.02802431397140026, 0.05650099739432335, 0.005790334194898605, -0.0065650176256895065, -0.017857300117611885, 0.0016469090478494763, -0.023523233830928802, -0.02865763194859028, 0.02698386274278164, -0.00947714876383543, -0.03225397318601608, -0.024247024208307266, 0.02316133677959442, -0.0023042589891701937, -0.035986024886369705, -0.015210936777293682, 0.04795120656490326, -0.029132619500160217, -0.006909949705004692, 0.03150756284594536, -0.008204858750104904, 0.026282688602805138, 0.04358583688735962, -0.002243471797555685, 0.00461134547367692, 0.006932568270713091, -0.04157279059290886, -0.000764080963563174, 0.003536966862156987, 0.0209786519408226, 0.022855987772345543, 0.012802067212760448, 0.028883816674351692, 0.030059978365898132, 0.0560033917427063, 0.019384048879146576, 0.005507603287696838, -0.026463637128472328, 0.016726376488804817, 0.009578932076692581, 0.06545791774988174, 0.0015748125733807683, 0.008843830786645412, 0.004164630081504583, 0.03415392339229584, -0.01691863313317299, 0.0035426216199994087, -0.01332229282706976, -0.034289635717868805, -0.01207827590405941, -0.019553687423467636, -0.01525617390871048, 0.0010128844296559691, 0.005287073086947203, -0.035872932523489, 0.003556758165359497, 0.014577618800103664, 0.035782456398010254, -0.018343597650527954, -0.012745521031320095, -0.017054343596100807, 0.021725062280893326, 0.02969808131456375, -0.011965182609856129, -0.010280105285346508, 0.012293151579797268, 0.002906476380303502, 0.05690813064575195, -0.020334025844931602, 0.01980249024927616, 0.031417086720466614, -0.010059574618935585, 0.029223093762993813, -0.004125047940760851, 0.022358380258083344, 0.01912393607199192, -0.0011775753227993846, -0.004396469797939062, -0.008877758868038654, 0.016194840893149376, 0.019248338416218758, 0.011682451702654362, -0.0201304592192173, 0.0048799398355185986, -0.032095640897750854, 0.012089584954082966, -0.011167881079018116, -0.016341861337423325, -0.02483510598540306, -0.012202677316963673, 0.024857724085450172, -0.007203990127891302, 0.03639315441250801, -0.011461921967566013, 0.00962982326745987, -0.026870770379900932, -0.04157279059290886, -0.024201788008213043, 0.00019225719734095037, 0.002540339482948184, 0.023749418556690216, -0.022233979776501656, 0.03741098940372467, -0.015380575321614742, 0.022946462035179138, 0.034131307154893875, -5.212855830905028e-05, 0.03892642632126808, 0.060436613857746124, -0.010511945001780987, -0.009748570621013641, -0.01659066416323185, 0.00864026416093111, 0.012858613394200802, 0.013548477552831173, -0.030105214565992355, 0.05817476660013199, 0.024020839482545853, 0.0064632343128323555, 0.007520649116486311, -0.01023486815392971, 0.007243572734296322, 0.0028046933002769947, -0.02213219553232193, 0.016884705051779747, 0.05351535603404045, -0.0036783325485885143, 0.022200051695108414, 0.0029121311381459236, -0.022742895409464836, 0.01089080423116684, -0.01778944581747055, 0.04412868246436119, 0.0446489043533802, 0.024563683196902275, 0.03223135322332382, -0.026033885776996613, -0.017563261091709137, 0.024088695645332336, -0.009686369448900223, 0.01065331045538187, 0.010099157691001892, -0.017020415514707565, 0.037139564752578735, -0.003847971325740218, 0.02562675252556801, 0.029064763337373734, 0.03670981526374817, -0.0060956841334700584, 0.004045883193612099, 0.012428862042725086, -0.004289031960070133, 0.02044711820781231, 0.016240078955888748, -0.016534117981791496, 0.04826786369085312, 0.029630227014422417, 0.004933658987283707, 0.025739844888448715, 0.010506290011107922, -0.022505400702357292, -0.018558474257588387, 0.004673546180129051, -0.013163963332772255, 0.03456105664372444, 0.03082900680601597, -0.04211563616991043, 0.045372698456048965, 0.012474099174141884, -0.030489729717373848, -0.018151341006159782, 0.011456266976892948, 0.002667568624019623, 0.013084798119962215, -0.0036811598110944033, 0.038338348269462585, 0.003124179318547249, 0.003011086955666542, -0.007000423967838287, -0.019576305523514748, -0.004359714686870575, 0.038677625358104706, 0.001175454817712307, -0.0017868609866127372, 0.011705070734024048, 0.04994163289666176, -0.009539349935948849, 0.022889915853738785, 0.003771633841097355, -0.009805116802453995, -0.029290949925780296, 0.01977987214922905, 0.007136134896427393, -0.016319243237376213, -0.007283154875040054, 0.020424500107765198, 0.03639315441250801, -0.05772239714860916, -0.0006471009692177176, 0.027210047468543053, -0.0044106063432991505, 0.012281841598451138, -0.008922995999455452, 0.017574569210410118, -0.032118260860443115, -0.019723325967788696, 0.01384251844137907, -0.0016992143355309963, 0.0018504755571484566, 0.0007181371911428869, 0.032118260860443115, 0.007435829844325781, 0.006802511867135763, -0.05785810574889183, 0.018038248643279076, 0.0076563600450754166, 0.01643233560025692, -0.015335338190197945, 0.007690287660807371, -0.05179635062813759, 0.013729425147175789, 0.00594866368919611, -0.00014251418178901076, -0.004204212687909603, 0.02635054476559162, 0.00662156380712986, -0.029584988951683044, 0.011750306934118271, -0.03182421997189522, -0.03634791821241379, -0.01962154358625412, 0.0020851423032581806, -0.018671566620469093, 0.03768241032958031, 0.012937778607010841, -0.010998242534697056, -0.00662156380712986, 0.01994951069355011, -0.04575721174478531, 0.01677161268889904, -0.014984752051532269, 8.442175749223679e-05, -0.04406082630157471, 0.039808548986911774, -0.009997374378144741, 0.021578043699264526, 0.0083688423037529, 0.013107417151331902, 0.038157399743795395, 0.042477529495954514, 0.02063937485218048, -0.010528909042477608, 0.018015630543231964, 0.021566733717918396, 0.017857300117611885, -0.03275157883763313, 0.02227921597659588, -0.0432465597987175, 0.009669406339526176, 0.021012580022215843, 0.016036512330174446, 0.009680715389549732, 0.014204413630068302, -0.017371002584695816, 0.036121733486652374, -0.006276631727814674, 0.019372738897800446, 0.015516286715865135, -0.018015630543231964, 0.04003473371267319, -0.0035086937714368105, 0.0289969090372324, -0.039333559572696686, -0.019678089767694473, -0.026373162865638733, 0.0026110224425792694, -0.016522809863090515, 0.014509763568639755, 0.018852515146136284, 0.05781286954879761, 0.027888601645827293, -0.0179364662617445, 0.021702444180846214, -0.03571460023522377, 0.013480622321367264, -0.003370155580341816, -0.020051294937729836, -0.0014899933012202382, -0.014645474962890148, -0.008578063920140266, -0.014758567325770855, 0.0019748772028833628, 0.03306823596358299, 0.027798129245638847, 0.0028626529965549707, -0.02093341574072838, -0.03372417390346527, 0.01909000799059868, -0.03365631774067879, 0.05618433654308319, 0.014566309750080109, -0.02831835299730301, 0.0003785063454415649, 0.0028499301988631487, -0.00813134852796793, 0.014453217387199402, 0.03888119012117386, -0.03252539411187172, 0.013141344301402569, 0.015346648171544075, 0.04442271962761879, 0.0010651897173374891, -0.0048375301994383335, 0.015471049584448338, 0.011088716797530651, -0.011965182609856129, 0.003879071678966284, 0.03103257343173027, 0.004195730667561293, 0.02445059083402157, -0.017359694465994835, -0.005366237368434668, -0.03589554876089096, -0.0055443583987653255, -0.035646744072437286, -0.0046876827254891396, 0.01518831867724657, -0.009940828196704388, -0.010421470738947392, -0.007729870267212391, 0.01809479482471943, -0.022855987772345543, -0.036325301975011826, -0.031236140057444572, -0.004676373675465584, 0.012869922444224358, -0.0328872911632061, -0.0043512326665222645, 0.011201809160411358, -0.0032542357221245766, -0.008821212686598301, 0.015663307160139084, 0.03974069282412529, 0.004096774850040674, 0.03799906745553017, -0.02415655180811882, 0.009007815271615982, 0.02249409258365631, -0.024518446996808052, 0.010749438777565956, -0.006254013627767563, 0.011953873559832573, -0.010574146173894405, -0.007141789421439171, 0.0036104770842939615, -0.012293151579797268, -0.04071328788995743, -0.01573116146028042, -0.004365369211882353, -0.0131526542827487, 0.028205260634422302, -0.0318920761346817, -0.00379425217397511, 0.019734635949134827, -0.008600682020187378, -0.011320555582642555, -0.0035680674482136965, -0.007831653580069542, -0.01241755299270153, 0.011416684836149216, -0.021227456629276276, -0.005581113044172525, 0.00011512459605000913, 0.013401457108557224, 0.02763979882001877, 0.0031750709749758244, 0.00185471645090729, -0.0033956014085561037, 0.02684815227985382, 0.0009655269677750766, 0.03241230174899101, -0.0010369165102019906, 0.025445805862545967, -0.028273116797208786, -0.0331813283264637, 0.029042145237326622, -0.0311909019947052, -0.026893388479948044, -0.021566733717918396, 0.033792030066251755, 0.02298039011657238, 0.013525859452784061, 0.007577195297926664, 0.01342407613992691, 0.005213562864810228, -0.0126550467684865, -0.014962133020162582, 0.024088695645332336, -0.019734635949134827, 0.005812952760607004, -0.019915582612156868, -0.029924266040325165, 0.02983379364013672, 0.013582405634224415, -0.0072492272593081, -0.019067389890551567, -0.03033139929175377, 0.010189631022512913, -0.027798129245638847, -0.014136558398604393, 0.013333601877093315, -0.00954500399529934, -0.01709958165884018, 0.016545427963137627, 0.0026703958865255117, 0.05437485873699188, -0.01591210998594761, -0.0048375301994383335, -0.005733788013458252, -0.028205260634422302, -0.024744631722569466, 0.03535270690917969, 0.02363632619380951, 0.007905163802206516, 0.03639315441250801, -0.024586303159594536, 0.015799017623066902, 0.035940784960985184, 0.005363410338759422, -0.02716481126844883, 0.003262717742472887, -0.0019536723848432302, 0.017404930666089058, 0.008838176727294922, -0.014509763568639755, -0.022708967328071594, 0.007203990127891302, -0.035465799272060394, 0.009103943593800068, 0.01712219975888729, 0.005730960983783007, 0.019983438774943352, 0.0008255750290118158, -0.004207039717584848, 0.03399559482932091, 0.006525435484945774, -0.00018218490004073828, -0.03300038352608681, -0.02616959623992443, 0.01483773160725832, 0.0023735282011330128, -0.01977987214922905, -0.02800169587135315, 0.006044792477041483, 0.0044954256154596806, -0.003932790365070105, 0.007175717037171125, 0.017223982140421867, 0.02399822138249874, -0.01366156991571188, 0.006344487424939871, -0.04421915486454964, -0.010732474736869335, 0.018490618094801903, 0.01913524605333805, -0.002191166626289487, -0.016477571800351143, 0.010523254051804543, -0.01165983360260725, -0.014758567325770855, -0.04197992384433746, 0.016319243237376213, 0.024043459445238113, -0.02465415745973587, -0.023545851930975914, -0.013356219977140427, 0.022935152053833008, -0.021713754162192345, 0.014996061101555824, 0.0038366620428860188, 0.018049558624625206, -0.02682553417980671, 0.0036076498217880726, -0.03198254853487015, -0.03467414900660515, 0.0035313123371452093, -0.005386028904467821, 0.04197992384433746, 0.029969504103064537, 0.042002543807029724, -0.023410141468048096, -0.0031298340763896704, -0.016816850751638412, -0.010059574618935585, -0.005142880138009787, 0.010715511627495289, 0.035805076360702515, 0.017235292121767998, -0.023591088131070137, 0.024111313745379448, 0.011461921967566013, 0.014566309750080109, -0.02501605451107025, 0.009918209165334702, -0.04089423641562462, 0.014792494475841522, -0.0002532211074139923, -0.0073623196221888065, -0.01324312761425972, -0.012553263455629349, 3.233737879781984e-05, -0.02065068483352661, 0.021928628906607628, 0.012044347822666168, -0.022064341232180595, -0.0077637978829443455, 0.005824262276291847, -0.00527576357126236, -0.01810610480606556, -0.022245287895202637, -0.011444957926869392, 0.019225720316171646, -0.004026091657578945, 0.014000847935676575, 0.006344487424939871, -0.008679847232997417, 0.007486721500754356, -0.0043936423026025295, -0.019338812679052353, -0.02515176497399807, 0.011637214571237564, 0.01366156991571188, -0.012768139131367207, -0.0032344446517527103, 0.03501342982053757, -0.028386209160089493, -0.0001710523501969874, 0.007837307639420033, -0.018026938661932945, 0.015380575321614742, -0.011614596471190453, -0.03894904628396034, -0.011931255459785461, -0.005637659691274166, -0.016839468851685524, 0.001068016979843378, -0.025581516325473785, 0.010709856636822224, -0.04109780117869377, 0.038293108344078064, -0.01660197414457798, 0.0011698001762852073, -0.012779449112713337, 0.0026435365434736013, -0.019983438774943352, -0.0033786373678594828, 0.007995637133717537, 0.025242239236831665, -0.026916006579995155, -0.03166589140892029, -0.030467111617326736, 0.02397560328245163, -0.0039667184464633465, 0.0028824442997574806, 0.04383464157581329, -0.017393620684742928, 0.01283599529415369, -0.02716481126844883, -0.0015239210333675146, -0.017981702461838722, 0.00887210387736559, -0.023613708093762398, -0.028476683422923088, -0.024925580248236656, -0.0041109113954007626, 0.001979118213057518, 0.00636710599064827, 0.011173536069691181, 0.02129531092941761, 0.014611546881496906, 0.0179364662617445, 0.012915159575641155, -0.0027340103406459093, 0.0002825544506777078, 0.0008969646296463907, 0.0014603064628317952, 0.016986489295959473, 0.012236605398356915, 0.030308781191706657, -0.021928628906607628, -0.0035737219732254744, 0.0160930585116148, -0.022686349228024483, 0.03575983643531799, 0.006785547826439142, -0.010579800233244896, -0.03560150787234306, -0.02345537766814232, 0.024789869785308838, 0.003491729963570833, -0.020028676837682724, -0.008323605172336102, -0.0015465394826605916, -0.0018278569914400578, -0.001015711692161858, 0.04211563616991043, -0.013118726201355457, -0.02146494947373867, -0.023523233830928802, -0.001632772502489388, 0.004894076380878687, -0.03752408176660538, -0.02736837789416313, -0.005513257812708616, -0.003370155580341816, -0.028114788234233856, -0.005722478963434696, 0.026441019028425217, 0.009974755346775055, -0.018660256639122963, -0.009482803754508495, -0.02095603384077549, -0.04630005732178688, 0.0751386359333992, -0.018049558624625206, 0.011965182609856129, 0.02077508717775345, 0.009618514217436314, 0.0029573680367320776, 0.008572408929467201, 0.0014150694478303194, 0.030580203980207443, -0.026373162865638733, 0.019745944067835808, 0.030218306928873062, -0.009166144765913486, -0.018354907631874084, 0.022550638765096664, -0.010947350412607193, -0.023907747119665146, -0.001302683842368424, -0.011693760752677917, -0.008402770385146141, 0.025898175314068794, 0.0284993015229702, 0.0010524668032303452, 0.013684188947081566, 0.010953005403280258, 0.028544539585709572, 0.010257487185299397, 0.027594562619924545, -0.026079123839735985, -0.010325342416763306, 0.035126522183418274, 0.013819899410009384, 0.03309085592627525, -0.005829916801303625, -0.005926045123487711, -0.023885129019618034, 0.002174202585592866, 0.03759193792939186, -0.019564997404813766, 0.007339701056480408, 0.013559786602854729, -0.01964416168630123, 0.03085162490606308, -0.011133952997624874, 0.003477593418210745, 0.056591469794511795, -0.030240925028920174, 0.016828158870339394, 0.0035256575793027878, -0.02397560328245163, 0.04632267355918884, -0.005612213630229235, -0.010591109283268452, -0.01929357461631298, -0.003661368740722537, 0.027436232194304466, 0.007317082490772009, -0.03408607095479965, 0.008657228201627731, -0.019384048879146576, 0.040849000215530396, -0.013853827491402626, 0.013899064622819424, 0.0062879412434995174, 0.004930831491947174], [-0.010171356610953808, -0.007302512414753437, -0.03056865558028221, -0.01820775866508484, 5.339635208656546e-06, 0.0026611106004565954, -0.007102360483258963, 0.0004837004526052624, 0.04425176978111267, -0.0036269952543079853, -0.030447352677583694, 0.029865091666579247, 0.0004579233063850552, -0.0009749824530445039, -0.0014048541197553277, 0.007156947162002325, 0.00866718403995037, 0.008721771650016308, -0.007260055746883154, 0.0579834021627903, 0.018401846289634705, 0.026225965470075607, 0.008400315418839455, 0.03175743669271469, 0.005579992663115263, 0.0059105465188622475, 0.004206222947686911, 0.018329063430428505, -0.011457180604338646, 0.01627902314066887, 0.05987574905157089, -0.030277526006102562, 0.02068236470222473, 0.013501156121492386, 0.05492653697729111, 0.008151642046868801, -0.02075514756143093, 0.009916617535054684, 0.023448100313544273, -0.004621689673513174, -0.031781699508428574, 0.05085071548819542, -0.003639125730842352, -0.02819109335541725, -0.04689620062708855, 0.04136472940444946, -0.010286595672369003, 0.00022915119188837707, 0.011075072921812534, -0.008624727837741375, 0.0033267673570662737, -0.017601238563656807, 0.014483720064163208, -0.01701897755265236, 0.0003000383439939469, 0.024940142408013344, -0.04716306924819946, 0.03891438618302345, 0.05012289062142372, -0.02513422816991806, -0.025109967216849327, -0.027827180922031403, 0.008467032574117184, -0.013391982764005661, 0.005768014118075371, -0.02468540333211422, -0.024345751851797104, 0.01160274539142847, -0.0691433921456337, -0.023254012688994408, 0.058031924068927765, -0.009158466011285782, 0.0005212289397604764, -0.0066292742267251015, 0.00395754911005497, 0.023520883172750473, -0.06176809221506119, 0.04558611661195755, 0.020706625655293465, -0.007623968180269003, 0.011056876741349697, 0.017637629061937332, 0.00817590206861496, 0.04439733549952507, -0.00828507635742426, -0.014823372475802898, -0.026153182610869408, -0.02520701102912426, -0.006031850818544626, -0.017043238505721092, -0.037434473633766174, 0.05390758067369461, -0.014338155277073383, 0.05977870523929596, -0.01134194154292345, -0.03425630182027817, -0.01521154586225748, -0.018050063401460648, -0.01830480247735977, 0.015818066895008087, -0.03411073982715607, 0.00010784700862132013, 0.040006123483181, 0.025473879650235176, 0.0024761217646300793, -0.09253083914518356, -0.04709028825163841, 0.01999093033373356, -0.008266880176961422, -0.0073570990934967995, -0.027172138914465904, -0.012148614972829819, -0.048230547457933426, 0.09587883204221725, 0.0228294488042593, -0.01694619469344616, 0.005388938821852207, 0.014520111493766308, 0.02967100590467453, -0.035736214369535446, -0.0027156975120306015, -0.030762743204832077, 0.017746802419424057, -0.06540721654891968, -0.028094051405787468, 0.045028116554021835, -0.02036697417497635, -0.012979548424482346, -0.05735262110829353, -0.024649010971188545, 0.018923453986644745, -0.029185788705945015, -0.006896143313497305, -0.004882493522018194, -0.035493604838848114, -0.0459500290453434, -0.025376835837960243, -0.002053073374554515, -0.034086477011442184, -0.01755271665751934, 0.0004973472096025944, -0.04104933887720108, 0.04937080666422844, 0.03731317073106766, -0.00760577293112874, -0.04024872928857803, 0.001819562865421176, 0.0810311958193779, 0.060263920575380325, 0.005792275071144104, -0.07239434123039246, 0.03525099903345108, -0.013804417103528976, -0.022404884919524193, 0.02229570969939232, -0.0037422343157231808, -0.01287037506699562, -0.0060348836705088615, -0.0064837089739739895, 4.8474292270839214e-05, -0.0006550426478497684, -0.01747993379831314, 0.04255351051688194, 0.035881780087947845, 0.002931012539193034, -0.013476895168423653, -0.004336624871939421, 0.0030765775591135025, -0.042480725795030594, -0.0013373787514865398, -0.005880220793187618, -0.03287343680858612, -0.026080401614308357, -0.029040222987532616, -0.03772560507059097, -0.019384410232305527, 0.02274453639984131, 0.02252618782222271, -0.0227566659450531, -0.030398830771446228, -0.00966187845915556, 0.031053872779011726, -0.0572555772960186, -0.027705878019332886, -0.01612132601439953, -0.004506450612097979, -0.003927223384380341, -0.004767254460602999, -0.0002554969396442175, 0.038259342312812805, -0.013416243717074394, 0.011317680589854717, 0.03462021425366402, 0.017940890043973923, -0.008539815433323383, 0.03658534213900566, -0.033576998859643936, 0.011687658727169037, 0.02765735611319542, -0.04447011649608612, 0.018037933856248856, -0.018632324412465096, 0.05002584680914879, -0.001216074568219483, -0.07021086663007736, -0.025934835895895958, -0.005018960684537888, -0.024491315707564354, 0.011014420539140701, 0.0013108433922752738, 0.011499636806547642, -0.06186513602733612, -0.05031697824597359, 0.03204856812953949, -0.04968619719147682, -0.02222292684018612, 0.004388179164379835, -0.004263842478394508, 0.008363923989236355, 0.013416243717074394, 0.0229022316634655, -0.0006645194953307509, 0.025522401556372643, 0.007836250588297844, -0.06361191719770432, -0.0018316932255402207, -0.01709176041185856, -0.007472338154911995, 0.014447329565882683, -0.07418964058160782, -0.022477665916085243, 0.028603527694940567, 0.03078700415790081, -0.05366497486829758, -0.020912842825055122, 0.027463268488645554, -0.00996513944119215, -0.0823412835597992, -0.0030932568479329348, -0.025522401556372643, 0.012251723557710648, 0.047987937927246094, -0.020633842796087265, 0.0014905252028256655, -0.05541175603866577, -0.021240362897515297, 0.0038119840901345015, 0.0058226012624800205, 0.03418352082371712, 0.007375294808298349, 0.031854480504989624, -0.012991678901016712, 0.011032615788280964, -0.03190300241112709, 0.050899237394332886, 0.02646857500076294, 0.018159236758947372, 0.02603187970817089, 0.03224265202879906, -0.03690073639154434, 0.022344231605529785, -0.019663408398628235, -0.02016075700521469, -0.004130407702177763, -0.06467939168214798, -0.00795755535364151, 0.02945265732705593, -0.04626541957259178, -0.005507210269570351, 0.004412440117448568, -0.07632459700107574, -0.005440493114292622, 0.005155428312718868, -0.0004105388652533293, -0.007181208115071058, 0.02498866245150566, -0.020112235099077225, -0.019008366391062737, -0.0030871916096657515, -0.017734672874212265, -0.008909792639315128, 0.012700548395514488, 0.04883706569671631, 0.004039429593831301, -0.007769533433020115, 0.010535269044339657, -0.007811990100890398, 0.03100535087287426, 0.025910574942827225, 0.02460048906505108, 0.0411706417798996, -0.014253241941332817, -0.02697805128991604, -0.027608834207057953, -0.043839335441589355, 0.05279158428311348, 0.027536051347851753, 0.0088066840544343, 0.019020497798919678, 0.01208189781755209, -0.030301786959171295, -0.007896902970969677, 0.004703570157289505, -0.025522401556372643, 0.018462497740983963, 0.030738482251763344, 0.02996213547885418, -0.020609581843018532, -0.006362404674291611, -0.007065969053655863, -0.04709028825163841, -0.005073547828942537, -0.016897674649953842, -0.01368311233818531, -0.06239887699484825, -0.024624750018119812, -0.016545891761779785, 0.03612438961863518, 0.0007877190946601331, 0.027924224734306335, 0.025376835837960243, -0.009219118393957615, 0.022635361179709435, -0.019869625568389893, 0.05546027421951294, -0.011159985326230526, -0.04781811311841011, 0.03301900252699852, 0.006641404237598181, 0.017674021422863007, -0.025716489180922508, 0.005267634522169828, 0.027317704632878304, 0.008297206833958626, 0.018680844455957413, -0.0007179692038334906, 0.005801372695714235, 0.05371349677443504, -0.0807400718331337, 0.023545144125819206, 0.0035238866694271564, -0.01845036819577217, -0.009589096531271935, 0.021398060023784637, 0.008000011555850506, 0.06113731116056442, -0.02194392867386341, 0.03806525468826294, 0.01312511321157217, 0.0026156215462833643, -0.007563316263258457, -0.005179688800126314, 0.006586817558854818, -0.07176356017589569, -0.07559677213430405, -0.02819109335541725, -0.020318452268838882, -0.002310844836756587, -0.037216126918792725, 0.008976509794592857, 0.01208189781755209, -0.019578495994210243, 0.023144839331507683, 0.03093256801366806, -0.002618654165416956, 0.021398060023784637, -0.061816614121198654, -0.07025938481092453, -0.0018301770323887467, -0.059439051896333694, -0.017601238563656807, -0.018329063430428505, 0.013889329507946968, -0.0794299840927124, 0.004861265420913696, 0.005925709847360849, 0.014738459140062332, 0.02603187970817089, -0.008879466913640499, 0.04459141939878464, 0.04757550358772278, -0.04575594142079353, 0.02119184285402298, 0.01438667718321085, 0.08641710877418518, 0.02409101277589798, -0.024357881397008896, 0.01798941195011139, -0.010274465195834637, 0.01055952999740839, -0.0346444770693779, -0.011736180633306503, -0.014702067710459232, 0.027754398062825203, -0.036391258239746094, -0.011493572033941746, 0.007630033418536186, 0.020864320918917656, 0.03510543331503868, -0.005616384092718363, -0.004060657694935799, -0.005858992226421833, -0.03845342993736267, -0.01141472440212965, 0.02149510197341442, 0.026953790336847305, -0.026881009340286255, 0.01820775866508484, 0.028457963839173317, 0.005288862623274326, 0.01836545392870903, -0.0024518610443919897, 0.03132074326276779, 0.03762856125831604, -0.002319942694157362, 0.015818066895008087, -0.054683927446603775, 0.02342383936047554, 0.015090241096913815, -0.01932375691831112, 0.0287733543664217, 0.003851408138871193, 0.007939359173178673, -0.004709635395556688, -0.02816683240234852, 0.016558021306991577, 0.03025326505303383, -0.011893875896930695, 0.01939653977751732, -0.06104026734828949, 0.017528455704450607, 0.01137833297252655, 0.010601986199617386, 0.01747993379831314, 0.010395769029855728, -0.01591511070728302, 0.03270360827445984, -0.018753627315163612, 0.01887493208050728, 0.0025291924830526114, -0.0342077799141407, -0.04490680992603302, 0.018244151026010513, -0.005179688800126314, -0.0012509494554251432, 0.017055369913578033, -0.043693769723176956, -0.02802126854658127, 0.01806219480931759, -0.052160803228616714, -0.033649783581495285, 0.010377573780715466, -0.0708901658654213, 0.010141029953956604, -0.02974378690123558, -0.013998503796756268, -0.01946932263672352, -0.036706648766994476, 0.04439733549952507, -0.05017141252756119, 0.021689189597964287, 0.05395610257983208, 0.03990907967090607, 0.05657627433538437, 0.003930255770683289, 0.0013601232785731554, -0.018571671098470688, -0.019724061712622643, 0.03838064521551132, -0.04871576279401779, 0.005061417352408171, 0.024139534682035446, 0.047405678778886795, -0.03716760501265526, 0.028967440128326416, 0.01925097592175007, 0.0170311089605093, -0.05570288375020027, 0.00036410210304893553, -0.05055958777666092, 0.007551185786724091, -0.006641404237598181, -0.02700231224298477, -0.03323734924197197, 0.019602756947278976, 0.03622142970561981, 0.034304823726415634, 0.03949664533138275, 0.003417745465412736, -0.023254012688994408, -0.03331013023853302, -0.008467032574117184, 0.06555278599262238, -0.011062942445278168, -0.03626995161175728, -0.02773013710975647, -0.006241100840270519, -0.014398807659745216, 0.04597428813576698, -0.015260066837072372, 0.029937874525785446, 0.004554972518235445, 0.04255351051688194, 0.020985625684261322, 0.03503264859318733, 0.029113005846738815, 0.06031244248151779, 0.03726464882493019, 0.015029589645564556, 0.004858233034610748, -0.001180441351607442, -0.01658228226006031, 0.0070599038153886795, -0.02179836295545101, -0.004621689673513174, -0.04961341246962547, -0.013064461760222912, 0.04240794479846954, -0.020985625684261322, -0.019287366420030594, -0.009164531715214252, -0.007375294808298349, 0.004503418225795031, -0.045100897550582886, -0.015854457393288612, 0.007690685801208019, -0.0066353389993309975, -0.09481135755777359, -0.03396517410874367, 0.002448828425258398, -0.0009514797711744905, -0.025304054841399193, -0.03949664533138275, -0.003426843322813511, -0.02164066769182682, 0.01895984448492527, -0.00540713407099247, 0.015890849754214287, -0.04252924770116806, 0.0088430754840374, -0.006068242248147726, -0.03622142970561981, 0.023181231692433357, -0.02148297242820263, 0.031247960403561592, -0.014459459111094475, -0.01643671840429306, 0.0051827216520905495, 0.02446705475449562, 0.023181231692433357, 0.018838541582226753, -0.010286595672369003, 0.04983176290988922, -0.06366044282913208, -0.0011448082514107227, 0.015041719190776348, 0.014362416230142117, -0.00574072077870369, -0.00440334202721715, -0.011323746293783188, -0.029792308807373047, -0.008121315389871597, -0.006501904688775539, -0.017868107184767723, 0.009473857469856739, 0.0450766384601593, -0.02646857500076294, -0.017152411863207817, 0.02506144531071186, -0.017504194751381874, -0.00046247223508544266, 0.002216834109276533, 0.009540574625134468, 0.016861282289028168, 0.005843829363584518, 0.02222292684018612, -0.010171356610953808, -0.030956828966736794, 0.036100126802921295, 0.01984536647796631, 0.010947703383862972, 0.030884046107530594, 0.03010769933462143, -0.03660960495471954, -0.01487189345061779, 0.008436706848442554, 0.025473879650235176, -0.011299485340714455, -0.02654135599732399, -0.0026156215462833643, 0.026735443621873856, -0.02549814060330391, -0.009176662191748619, -0.012821853160858154, 0.0015860522398725152, 0.012354832142591476, -0.031490568071603775, 0.014265372417867184, -0.023314666002988815, 0.03292195871472359, 0.032461002469062805, -0.004348755348473787, -0.023254012688994408, 0.002852164674550295, -0.024285098537802696, -0.011050811968743801, -0.01323428750038147, -0.00866718403995037, 0.006896143313497305, 0.03301900252699852, -0.001576954498887062, -0.0087702926248312, 0.0033358652144670486, -0.028433702886104584, 0.04235942289233208, 0.02588631398975849, 0.010796072892844677, -0.02639579214155674, -0.017661890015006065, -0.0008430641028098762, -0.023460229858756065, -0.01829267106950283, 0.000700910750310868, -0.05390758067369461, -0.006083405110985041, 0.043232813477516174, 0.013391982764005661, -0.05041402205824852, 0.034765779972076416, -0.012542853131890297, -0.004045494832098484, 0.01991814747452736, 0.004767254460602999, -0.017504194751381874, -0.02906448394060135, 0.012263854034245014, -0.029282832518219948, 0.010213812813162804, 0.004021233879029751, 0.009916617535054684, -0.00040978071046993136, 0.03634273633360863, 0.03687647357583046, -0.01694619469344616, 0.028870398178696632, 0.0035602780990302563, 0.01837758533656597, 0.004263842478394508, -0.01933588832616806, 0.015951501205563545, 0.03418352082371712, -0.03306752070784569, 0.009085684083402157, -0.01263989694416523, 0.0021091767121106386, 0.02014862559735775, -0.0004541325615718961, 0.06036096438765526, 0.001178925158455968, 0.02996213547885418, -0.033358652144670486, -0.008163771592080593, 0.0199302788823843, -0.014459459111094475, -0.000551555014681071, 0.002097046235576272, -0.003833212424069643, 0.001234270166605711, -0.01144505012780428, -0.015490544959902763, -0.01371950376778841, 0.0005686134099960327, 0.002321458887308836, -0.007411686237901449, 0.021761972457170486, 0.007805924862623215, -0.010037921369075775, 0.020476147532463074, -0.043378379195928574, 0.03828360140323639, -0.028506483882665634, -0.016909804195165634, -0.013925720937550068, 0.003435941180214286, 0.007860511541366577, -0.012239593081176281, 0.01521154586225748, -0.030762743204832077, 0.021883275359869003, 0.010971964336931705, 0.029913613572716713, -0.014156199060380459, -0.018692975863814354, 0.014192590489983559, -0.004512515850365162, 0.024357881397008896, -0.005040189251303673, 0.0035784735810011625, -0.04793941602110863, -0.009255509823560715, -0.014847632497549057, 0.014580763876438141, -0.04104933887720108, -0.06254444271326065, 0.015927240252494812, -0.00844277162104845, 0.020269930362701416, 0.006768773775547743, 0.01431389432400465, 0.011323746293783188, -0.024867359548807144, 0.009649747982621193, -0.017746802419424057, -0.0030113765969872475, -0.03813803568482399, -0.003608799772337079, -0.03415926173329353, 0.0032994740176945925, 0.055945493280887604, 0.008594402112066746, -0.042723335325717926, 0.038404908031225204, -0.0286277886480093, -0.006962860468775034, 0.026881009340286255, -0.00836998876184225, -0.03216987103223801, -0.01022594328969717, -0.008497358299791813, -0.015223676338791847, 0.02974378690123558, -0.003108419943600893, -0.008467032574117184, 0.027099356055259705, -0.004348755348473787, 0.033479955047369, -0.051627062261104584, 0.007047773338854313, 0.012366962619125843, 0.012688417918980122, 0.02014862559735775, 0.012664157897233963, 0.013561808504164219, -0.05487801507115364, 0.026225965470075607, 0.01991814747452736, 0.016230501234531403, -0.0061865136958658695, 0.010965898633003235, -0.0014791529392823577, 0.02401822991669178, 0.009018966928124428, 0.004003038164228201, -0.0572555772960186, 0.017758933827280998, -0.017067499458789825, 0.03590603917837143, 0.014119807630777359, -0.009419270791113377, 0.03287343680858612, -0.01716454327106476, -0.0026990182232111692, 0.02520701102912426, 0.01346476562321186, -0.006477643735706806, -0.01584232784807682, -0.035954561084508896, 0.006738447584211826, -0.04716306924819946, 0.016752108931541443, -0.01521154586225748, -0.01208189781755209, 0.014859762974083424, -0.007811990100890398, 0.02371496893465519, 0.013525417074561119, 0.0020272962283343077, 0.01498106773942709, -0.024806706234812737, 0.029768047854304314, -0.004394244402647018, -0.007150881923735142, -0.011529963463544846, 0.020694494247436523, 0.0031903001945465803, -0.0039484514854848385, 0.0038908319547772408, 0.0344989113509655, 0.01872936636209488, 0.017225194722414017, -0.004054592456668615, 0.02327827364206314, 0.02319336123764515, -0.024624750018119812, -0.027172138914465904, 0.005567862186580896, -0.01442306861281395, -0.060263920575380325, -0.041898466646671295, -0.0022198667284101248, 0.0024912848602980375, -0.0002699018223211169, -0.016618674620985985, 0.05905088037252426, 0.06404861062765121, 0.01620624028146267, -0.03471725806593895, -0.053810540586709976, 0.012846114113926888, -0.004937080666422844, -0.004545874428004026, 0.007429881487041712, 0.013343460857868195, 0.05031697824597359, -0.016788499429821968, -0.020282059907913208, 0.017297977581620216, 0.004785450175404549, -0.022259319201111794, -0.027705878019332886, 0.04352394491434097, -0.01865658536553383, 0.021980319172143936, -0.016254762187600136, 0.021895406767725945, 0.043839335441589355, -0.025255532935261726, -0.004409407265484333, -0.02259897068142891, 0.020209278911352158, 0.02819109335541725, 0.002597426064312458, 0.04379081353545189, -0.00821835920214653, 0.022101623937487602, 0.04871576279401779, -0.018486758694052696, 0.0069264695048332214, 0.0010644443100318313, 0.03258230537176132, 0.035736214369535446, 0.007763468194752932, -0.0009704335243441164, -0.004494320135563612, -0.008012142032384872, -0.009219118393957615, 0.028943179175257683, -0.00014044750423636287, -0.011202442459762096, 0.02639579214155674, -0.0037816581316292286, 0.03180595859885216, -0.04519794136285782, -0.0006982572376728058, -0.03367404267191887, -0.002794545376673341, 0.03338291496038437, -0.005021993536502123, -0.05279158428311348, 0.0016360902227461338, -0.006344208959490061, -0.005440493114292622, -0.040709685534238815, -0.013015939854085445, 0.04039429500699043, 0.01717667281627655, 0.011808962561190128, 0.05531471222639084, -0.03828360140323639, -0.022441275417804718, 0.03682795166969299, -0.008363923989236355, 0.006144057027995586, -0.014665676280856133, -0.02365431748330593, -0.01726158708333969, 0.004451863933354616, 0.010074312798678875, -0.0015906011685729027, 0.006180448457598686, 0.008885531686246395, 0.03144204616546631, 0.06094322353601456, 0.01553906686604023, -0.02557092346251011, -0.02289010025560856, -0.007769533433020115, 0.03488708660006523, 0.033285871148109436, -0.014253241941332817, 0.03748299553990364, -0.03175743669271469, 0.03263082727789879, -0.016084935516119003, 0.014811241999268532, -0.004730863496661186, -0.013525417074561119, -0.025085706263780594, -0.0005386664415709674, -0.03153908997774124, -0.04454289749264717, -0.027196399867534637, -0.062204789370298386, 0.022198667749762535, -0.0005087194731459022, 0.013052331283688545, -0.024576228111982346, -0.008782423101365566, -0.01643671840429306, 0.014592894352972507, -0.0031235828064382076, 0.010104639455676079, -0.01055952999740839, 0.001790753100067377, 0.013391982764005661, 0.00999546516686678, -0.04349968209862709, 0.016618674620985985, 0.011208507232367992, 0.004797580651938915, 0.023072056472301483, -0.016934065148234367, 0.0358089953660965, -0.04080672934651375, -0.04017594829201698, 0.025595184415578842, -0.02365431748330593, 0.041898466646671295, -0.002598942257463932, -0.006189546547830105, -0.010092508979141712, 0.03673090785741806, -0.02833665907382965, 0.028360920026898384, 0.008339663036167622, -0.041825685650110245, -0.012833983637392521, 0.011499636806547642, 0.019384410232305527, -0.01731010712683201, 0.031199438497424126, 0.0013623976847156882, -0.010019726119935513, -0.03166039288043976, -0.03151482716202736, -8.278063614852726e-05, 0.005862025078386068, -0.00497953686863184, -0.011548158712685108, -0.0036269952543079853, 0.01671571657061577, -0.021592145785689354, 0.04066116362810135, -0.014495850540697575, 0.023035665974020958, 0.02557092346251011, 0.06021539866924286, -0.020112235099077225, 0.019420800730586052, 0.03139352425932884, 0.0014147100737318397, 0.01263989694416523, 0.016448847949504852, -0.01658228226006031, 0.021094799041748047, 0.030301786959171295, 0.02707509510219097, 0.005670970771461725, -0.0288461372256279, 0.019275235012173653, -0.005018960684537888, -0.03195152431726456, 0.045852985233068466, 0.03838064521551132, -0.012312375009059906, 0.04007890447974205, -0.010165290907025337, 0.00412434246391058, 0.02365431748330593, -0.013670981861650944, 0.017116021364927292, 0.015114502049982548, 0.0336255207657814, 0.0070113823749125, -0.038550470024347305, -0.009783183224499226, 0.03779838606715202, 0.031029611825942993, 0.01348902564495802, 0.007939359173178673, 0.012591375038027763, -0.020876450464129448, 0.0011084170546382666, 0.0031144851818680763, 0.012360896915197372, 0.020561059936881065, 0.018025802448391914, 0.015866588801145554, -0.006201676558703184, -0.01130555011332035, 0.05492653697729111, 0.010462486185133457, 0.00598939461633563, 0.011857484467327595, 0.02230784110724926, 0.013889329507946968, 0.020185017958283424, -0.00019171748135704547, 0.0031812023371458054, -0.0469689816236496, 0.029185788705945015, -0.01620624028146267, 0.024624750018119812, 0.03702203929424286, -0.05211228132247925, 0.01785597763955593, 0.02639579214155674, -0.05924496799707413, -0.0012388190953060985, 0.003193332813680172, -0.01999093033373356, 0.04512516036629677, 0.016679326072335243, 0.05191819369792938, 0.023035665974020958, -0.009243379347026348, 0.01323428750038147, 0.004843069706112146, 0.014750589616596699, 0.0016133456956595182, 0.013901459984481335, -0.00025341202854178846, 0.024649010971188545, 0.02452770806849003, 0.012482201680541039, 0.015417763032019138, -0.027341963723301888, -0.015599719248712063, -0.007411686237901449, 0.00046360946726053953, 0.006738447584211826, -0.019821105524897575, -0.004667178727686405, 0.03474152088165283, 0.027196399867534637, -0.04095229506492615, 0.014410938136279583, 0.04556185379624367, 0.01755271665751934, 0.0013282808940857649, 0.0056952317245304585, 0.02252618782222271, -0.028821876272559166, -0.02475818619132042, -0.0014526176964864135, -0.006514035165309906, 0.022356363013386726, 0.014799111522734165, -0.027705878019332886, -0.002160731004551053, 0.026783965528011322, -0.0407339483499527, 0.0055284383706748486, -0.01575741358101368, 0.014107677154242992, -0.013780156150460243, -0.018705105409026146, -0.00787870679050684, 0.01710388995707035, -0.02304779551923275, 0.015308588743209839, -0.01777106337249279, 0.004488254897296429, -0.0004818050947505981, 0.004730863496661186, 0.018862802535295486, -0.01523580588400364, -0.045852985233068466, -0.012457940727472305, 0.0016861282056197524, -0.004843069706112146, 0.02765735611319542, 0.035493604838848114, -0.026371531188488007, -0.0036967452615499496, 0.016084935516119003, -0.01813497580587864, 0.0006584543152712286, -0.06215626746416092, -0.01119031198322773, -0.05589697137475014, 0.05749818682670593, -0.02549814060330391, 0.01494467630982399, -0.008078859187662601, 0.014641416259109974, 0.022404884919524193, 0.026444314047694206, 0.05390758067369461, -0.00036163811455480754, 0.0009059906587935984, 0.029865091666579247, 0.017225194722414017, -0.029307091608643532, 0.01874149776995182, -0.04371802881360054, -0.0021592145785689354, 0.008497358299791813, 0.01829267106950283, -0.01108113769441843, 0.030204743146896362, -0.023520883172750473, 0.04061264172196388, -0.004667178727686405, 0.001569372951053083, -0.008376054465770721, -0.023605795577168465, 0.0051281345076859, 0.0015307072317227721, 0.009813508950173855, -0.033795349299907684, -0.010062182322144508, -0.012015179730951786, -0.02794848568737507, -0.0020409428980201483, -0.017055369913578033, 0.002488252241164446, 0.025837792083621025, -0.008982575498521328, 0.0037907559890300035, 0.0198574960231781, -0.024782445281744003, -0.01015316043049097, 0.0004184994613751769, 0.0069082737900316715, 0.01897197589278221, -0.020391235128045082, -0.02460048906505108, -0.0034086478408426046, -0.019906017929315567, 0.014859762974083424, 0.015623980201780796, -0.010310856625437737, -0.009291901253163815, -0.04012742638587952, 0.02037910372018814, -0.01659441366791725, 0.06021539866924286, 0.014131938107311726, -0.02692953124642372, 0.042796120047569275, -0.005119036883115768, -0.027924224734306335, -0.009025031700730324, 0.01635180413722992, -0.026517096906900406, 0.049031153321266174, 0.0038605057634413242, 0.036172907799482346, 0.021749841049313545, 0.017273716628551483, -0.01635180413722992, 0.02826387621462345, -0.008994705975055695, 0.004758156836032867, 0.041607338935136795, -0.021895406767725945, 0.004879461135715246, -0.015296458266675472, 0.010074312798678875, 0.0025913608260452747, -0.0010750583605840802, -0.053810540586709976, 0.0048006135039031506, 0.009637617506086826, -0.033479955047369, 0.00365428882651031, 0.0014526176964864135, 0.0045913634821772575, -0.02498866245150566, -0.003211528528481722, 0.011469311080873013, -0.014241112396121025, -0.018232019618153572, -0.024782445281744003, 0.02194392867386341, -0.0034783976152539253, 0.024588359519839287, 0.012554983608424664, 0.041680119931697845, 0.003945418633520603, -0.008030337281525135, 0.020937103778123856, -0.029015962034463882, -0.021022016182541847, 0.03241248056292534, -0.05274306237697601, 0.00410614674910903, -0.013670981861650944, 0.013780156150460243, -0.025934835895895958, -0.0016846118960529566, 0.0005981812719255686, -0.023387448862195015, -0.024721793830394745, -0.01977258361876011, -0.0014518594834953547, -0.011772572062909603, -0.006653534714132547, -0.046653591096401215, -0.029015962034463882, 0.00966187845915556, -0.025109967216849327, 0.008539815433323383, -0.037677083164453506, 0.0038180493284016848, -0.006216839887201786, 0.00644731754437089, -0.01904475875198841, 0.020257798954844475, -0.0037816581316292286, 0.03673090785741806, 0.02802126854658127, -0.023617925122380257, 0.02023353986442089, -0.028288137167692184, 0.0075693815015256405, -0.01000153087079525, 0.006350274197757244, -0.01346476562321186, 0.02520701102912426, -0.037580039352178574, -0.01590297929942608, 0.019141800701618195, -0.012749070301651955, -0.014253241941332817, 0.0005849136505275965, 0.035202477127313614, -0.010692964307963848, 0.002544355345889926, 0.029282832518219948, 0.015260066837072372, -0.005452623590826988, -0.006289622280746698, -0.03107813373208046, 0.017953019589185715, -0.007466272916644812, -0.0037543647922575474, -0.0088066840544343, -0.0455133318901062, 0.02794848568737507, -0.012979548424482346, -0.004418505355715752, -0.006514035165309906, -0.0287733543664217, 0.011542093940079212, -0.03195152431726456, -0.03202430531382561, -0.0043093315325677395, 0.015781674534082413, 0.010862790048122406, -0.0036148647777736187, 0.0025473879650235176, 0.017419282346963882, -0.042650554329156876, -0.03032604791224003, -0.03047161176800728, -0.00017361661593895406, 6.580515218956862e-06, 0.03762856125831604, 0.013319199904799461, -0.0019893888384103775, 0.014022764749825, 0.015660371631383896, 0.020609581843018532, 0.01249433122575283, -0.021664928644895554, -0.006104633212089539, 0.011238832958042622, -0.0073570990934967995, 0.020015191286802292, 0.03719186410307884, -0.004642917774617672, -0.03025326505303383, -0.010043987073004246, 0.0019348018104210496, 0.022271448746323586, 0.021968189626932144, 0.024200186133384705, 0.03694925829768181, -0.04810924082994461, -0.01498106773942709, 0.027536051347851753, -0.0021243395749479532, 0.005777112208306789, -0.016521630808711052, 0.008491293527185917, 0.002151633147150278, 0.026492835953831673, 0.009898422285914421, -0.01858380250632763, -0.0339166522026062, 0.01249433122575283, -0.0008741483325138688, -0.021385928615927696, 0.007793794386088848, 0.005131167359650135, 0.010371508076786995, 0.002197122201323509, -0.030617177486419678, -0.01829267106950283, -0.001596666406840086, 0.03107813373208046, -0.0010181970428675413, 0.010268399491906166, 0.014968937262892723, -0.032824914902448654, -0.006877947598695755, -0.016230501234531403, -0.003796821227297187, 0.013949981890618801, -0.02319336123764515, -0.03258230537176132, -0.011299485340714455, 0.004318429157137871, -0.0008938602404668927, -0.0023639153223484755, 0.0036027345340698957, 0.0011144822929054499, -0.003942386247217655, -0.0024018229451030493, -0.019505713135004044, -0.007005317136645317, -0.005134199745953083, -0.022805187851190567, 0.017043238505721092, 0.011724050156772137, 0.02364218607544899, -0.013840808533132076, 0.008679314516484737, -0.011360137723386288, 0.009310096502304077, -0.01820775866508484, 0.013852939009666443, 0.017346499487757683, -0.009916617535054684, 0.0014040960231795907, -0.010656572878360748, 0.033116042613983154, -0.004621689673513174, -0.014253241941332817, 0.016533760353922844, -0.031029611825942993, 0.02007584273815155, -0.002098562428727746, 0.027997007593512535, 0.0004893866134807467, 0.017225194722414017, -0.0010621697874739766, -0.012858244590461254, 0.007896902970969677, -0.005583025515079498, -0.01371950376778841, -0.006932534277439117, 0.026007618755102158, -0.014847632497549057, -0.00907355360686779, -0.004985602106899023, -0.041534554213285446, 0.040418557822704315, -0.05254897475242615, 0.007775598671287298, 0.025473879650235176, -0.013258548453450203, 0.0168855432420969, 0.012142549268901348, -0.020803669467568398, -0.012664157897233963, 0.0031599742360413074, 0.011893875896930695, -0.006004557479172945, -0.028676310554146767, 0.0037513321731239557, -0.04459141939878464, 0.01710388995707035, -0.0008938602404668927, -0.0025458717718720436, -0.005501145031303167, 0.0074177514761686325, -0.0331888273358345, -0.02794848568737507, 0.004943145904690027, -0.016824891790747643, -0.02646857500076294, -0.020209278911352158, -0.008733902126550674, -0.038841601461172104, 0.012518592178821564, -0.01368311233818531, -0.007211534306406975, -0.04900689423084259, 0.0007035643211565912, 0.005607286002486944, 0.015150893479585648, 0.01851101964712143, 0.01055346429347992, -0.04417898505926132, -0.04473698511719704, 0.005012895446270704, 0.02692953124642372, -0.03857473284006119, 0.007241860032081604, 0.043305594474077225, -0.023824142292141914, -0.0038908319547772408, -0.020185017958283424, 0.00557392742484808, -0.021058406680822372, 0.011930267326533794, -0.02675970457494259, -0.032072827219963074, -0.021883275359869003, 0.02603187970817089, 0.0003870361833833158, 0.02685674838721752, 0.004027299117296934, 0.023241883143782616, 0.014216851443052292, 0.011766506358981133, 0.005085678305476904, -0.010880986228585243, 0.014338155277073383, -0.0031114525627344847, -0.006811230443418026, 0.023533012717962265, -0.002970436355099082, 0.012833983637392521, -0.013149374164640903, 0.018777888268232346, 0.015490544959902763, 0.005846862215548754, -0.007181208115071058, -0.0034541368950158358, 0.000891585776116699, -0.01837758533656597, -0.011990919709205627, 0.014702067710459232, -0.009576966054737568, -0.021313145756721497, -0.007866576313972473, -0.008382119238376617, 0.014047025702893734, -0.018850671127438545, 0.017285848036408424, -0.01553906686604023, 0.008794553577899933, -0.03998186066746712, 0.0013760443544015288, 0.0018559540621936321, -0.02661413885653019, -0.031708914786577225, 0.005816536024212837, 0.019311627373099327, -0.029573962092399597, -0.0038544407580047846, 0.017649760469794273, 0.014774850569665432, -0.02617744356393814, 0.02455196902155876, -0.017067499458789825, -0.023435968905687332, 0.037288907915353775, -0.018389714881777763, -0.010389704257249832, 0.00037585344398394227, 0.010244138538837433, -0.012785461731255054, 0.015150893479585648, 0.021749841049313545, 0.0017498129745945334, -0.03748299553990364, 0.02029419131577015, 0.02378775179386139, 0.013028070330619812, -0.013379852287471294, 0.027851441875100136, -0.021313145756721497, -0.015163023956120014, 0.00896437931805849, -0.010614116676151752, 0.01649736985564232, 0.01598789170384407, 0.04602281004190445, -0.016849152743816376, 0.011178181506693363, 0.0043093315325677395, 0.0033752890303730965, 0.009170596487820148, -0.0176861509680748, -0.011984854005277157, 0.005949970334768295, 0.027026573196053505, 0.03250952437520027, 0.030204743146896362, 0.005422297399491072, 0.013307069428265095, -0.03554212674498558, 0.025328315794467926, 0.019675539806485176, -0.03677942976355553, 0.01148144155740738, 0.014835502952337265, -0.0040970491245388985, -0.0016087968833744526, 0.002852164674550295, 0.004882493522018194, 0.05778931826353073, -0.037507254630327225, 0.01163913682103157, 0.01249433122575283, -0.019020497798919678, 0.03544508293271065, -0.019226714968681335, -0.018559541553258896, -0.04267481341958046, -0.018474629148840904, -0.007909033447504044, 0.03360126167535782, -0.011426854878664017, 0.012354832142591476, -0.004721765406429768, 0.005522373132407665, -0.01672784797847271, 0.017807455733418465, 0.02245340496301651, 0.001216074568219483], [-0.03039439208805561, 0.004397100768983364, 0.043676357716321945, -0.005363216158002615, -0.04202177748084068, 0.031731653958559036, 0.003167499089613557, -0.01982095092535019, 0.033023588359355927, 0.01194470189511776, -0.008539214730262756, 0.02679058350622654, 0.01843835785984993, -0.032298292964696884, -0.007592931855469942, 0.03850863128900528, 0.004708751104772091, 0.06432459503412247, 0.021056219935417175, -0.008125570602715015, 0.06509522348642349, 0.020920226350426674, 0.017078429460525513, 0.021838178858160973, -0.019174985587596893, 0.018733009696006775, -0.0017027432331815362, 0.0042157769203186035, 0.022336818277835846, -0.02391206845641136, 0.06908434629440308, -0.02434271201491356, 0.039120595902204514, -0.01730508543550968, 0.04426565766334534, 0.0373300239443779, -0.0009158265893347561, 0.015582509338855743, 0.028490493074059486, 0.0001937189226737246, -0.06681779772043228, 0.019220316782593727, -0.04415233060717583, -0.017554404214024544, -0.04836810752749443, 0.03130101040005684, -0.004102449864149094, -0.01646646298468113, 0.019798286259174347, 0.005640868097543716, -0.032751601189374924, -0.026994572952389717, 0.017894387245178223, -0.03778333589434624, -0.004371602088212967, -0.013610613532364368, 0.02285812422633171, 0.007666594348847866, 0.020036272704601288, -0.0250680074095726, 0.02190617471933365, 0.004031619988381863, -0.00811423733830452, 0.036831386387348175, -0.009899143129587173, -0.004997735843062401, -0.006680646445602179, 0.04369902238249779, -0.05670899897813797, -0.012681329622864723, -0.005235723219811916, 0.03764734044671059, 0.016874440014362335, -0.02110155113041401, -0.015707168728113174, 0.04709884151816368, 0.018245700746774673, 0.026745252311229706, -0.013655944727361202, 0.003918292932212353, -0.013723940588533878, -0.0021433033980429173, -0.01867634616792202, 0.010227791965007782, -0.04546692967414856, -0.015514512546360493, -0.01728241890668869, -0.0005152852390892804, -0.012613332830369473, 0.011808708310127258, 0.04140980914235115, 0.016307804733514786, 0.04456030949950218, 0.06686312705278397, 0.02515866979956627, -0.025657309219241142, 0.00298617547377944, -0.037964656949043274, -0.04932005703449249, 0.05058932304382324, -0.003071170998737216, -0.0401405431330204, 0.01242067664861679, -0.04093383625149727, 0.041704460978507996, -0.07515869289636612, -0.011406396515667439, 0.03467816486954689, 0.0014831715961918235, -0.04524027556180954, -0.0352221354842186, -0.003957957495003939, -0.026246611028909683, 0.06926567107439041, 0.018517687916755676, 0.006856304127722979, 0.011854039505124092, -0.043449703603982925, 0.004606756381690502, -0.020319592207670212, 0.03186764940619469, 0.021758848801255226, -0.010165462270379066, -0.05911153927445412, -0.018143707886338234, -0.010397783480584621, 0.008148235268890858, 0.0031051691621541977, -0.05077064782381058, 0.013247965835034847, 0.0038247976917773485, -0.02713056467473507, 0.013701274991035461, -0.03712603822350502, 0.008488217368721962, -0.024048062041401863, -0.014766552485525608, -0.028603820130228996, -0.04927472770214081, -0.011786043643951416, 0.003130667842924595, -0.012681329622864723, 0.04673619568347931, 0.002554114907979965, -0.005145061295479536, -0.031278345733881, -0.026473267003893852, 0.05766094848513603, 0.03767000883817673, 0.027810528874397278, -0.05358116701245308, -0.017599735409021378, -0.0302810650318861, 0.0008159568533301353, -0.011752044782042503, 0.060244813561439514, -0.031935643404722214, 0.027175895869731903, 0.015809163451194763, 0.05367182940244675, -0.040435194969177246, 0.003711470402777195, 0.014324575662612915, -0.013825935311615467, -0.019174985587596893, -0.026291942223906517, -0.013134638778865337, 0.021713517606258392, -0.03819131478667259, -0.05122395604848862, -0.011406396515667439, -0.04222576692700386, -0.006448325701057911, 0.039845891296863556, -0.013327294960618019, 0.012953314930200577, 0.008091571740806103, 0.031504999846220016, -0.0028487660456448793, 0.014743886888027191, 0.0026036957278847694, -0.01948096975684166, -0.018733009696006775, -0.01264733076095581, 0.019231649115681648, 0.026291942223906517, 0.005771194584667683, 0.019503634423017502, 0.02611061930656433, 0.02272213064134121, -0.03413419425487518, -0.02377607487142086, 0.00859021209180355, 0.03699004277586937, -0.024750690907239914, 0.04097916558384895, -0.054442454129457474, -0.014075255952775478, 0.019809618592262268, -0.05589304491877556, 0.02552131749689579, 0.0061480081640183926, 0.027311889454722404, 0.044016338884830475, -0.042973726987838745, -0.039619237184524536, -0.01984361745417118, -0.018744342029094696, 0.055167749524116516, 0.0022651301696896553, -0.01576383225619793, -0.03247961401939392, -0.033680886030197144, 0.01842702552676201, 0.006210338324308395, 0.029079794883728027, 0.010312788188457489, 0.04231642931699753, -0.013905264437198639, -0.011281736195087433, 0.012318681925535202, -0.014063922688364983, 0.003051338717341423, 0.03390754014253616, 0.010987085290253162, 0.03563011437654495, 0.010885090567171574, -0.021486863493919373, -0.002966343192383647, -0.08377157151699066, -0.04299639165401459, 0.05299186334013939, 0.04524027556180954, -0.02101088874042034, -0.016489127650856972, 0.02088622935116291, -0.023504089564085007, 0.014369906857609749, -0.01299864612519741, 0.0022282989230006933, 0.03583410382270813, 0.012805989012122154, 0.018268367275595665, 0.0026419435162097216, 0.04258841276168823, -0.030893033370375633, 0.014891212806105614, 0.021135548129677773, 0.07021761685609818, -0.01107208151370287, -0.03837263584136963, -0.006499323062598705, -0.026813248172402382, -0.07878516614437103, 0.03968723490834236, 0.03628741577267647, 0.030553050339221954, -0.007116957101970911, 0.048776086419820786, -0.03585676848888397, 0.01995694451034069, 0.006368996575474739, -0.006108343601226807, 0.013825935311615467, -0.08667274564504623, -0.06015415117144585, 0.032048970460891724, -0.0580235980451107, -0.0202855933457613, 0.01560517493635416, -0.059428855776786804, 0.006657981313765049, 0.047053512185811996, 0.007071625906974077, -0.011253404431045055, -0.020115602761507034, -0.018970996141433716, 0.022189492359757423, -0.021634189411997795, -0.011786043643951416, -0.05462377890944481, -0.033363569527864456, -0.010284456424415112, -0.01903899386525154, -0.027425216510891914, 0.010856758803129196, -0.004844743758440018, -0.0005630952073261142, -0.04512694478034973, 0.0802810862660408, 0.028105180710554123, 0.005329218227416277, -0.05557572841644287, -0.026631925255060196, 0.04950138181447983, 0.014188583008944988, 0.044129665940999985, 0.021634189411997795, 0.020013608038425446, 0.05648234486579895, 0.03261560946702957, 0.02053491398692131, -0.03744335472583771, 0.01647779531776905, -0.016613787040114403, 0.042747072875499725, -0.00018539644952397794, 0.015503180213272572, -0.013429289683699608, -0.055621057748794556, -0.034859489649534225, -0.019390307366847992, 0.007592931855469942, -0.029963748529553413, 0.011247738264501095, -0.010420449078083038, 0.016058484092354774, 0.04805079102516174, -0.037284694612026215, -0.01680644415318966, 0.03547145798802376, 0.013723940588533878, 0.025543982163071632, -0.027289222925901413, 0.020795566961169243, -0.020625576376914978, 0.017112428322434425, 0.011978699825704098, -0.030779704451560974, 0.03320490941405296, 0.011933368630707264, -0.0322529599070549, 0.022926120087504387, -0.006391662172973156, 0.03118768334388733, 0.01775839366018772, -0.006244336254894733, 0.00934383925050497, -0.02413872256875038, -0.02341342903673649, -0.0012175606098026037, 0.0073946090415120125, 0.025679975748062134, 0.026926575228571892, 0.021838178858160973, 0.0025356991682201624, 0.05743429437279701, 0.05512241646647453, 0.012579334899783134, 0.00381346489302814, -0.002263713628053665, -0.018415693193674088, -0.014517231844365597, -0.03304625302553177, -0.03665006160736084, -0.00683930516242981, 0.008482551202178001, 0.0025017010048031807, -0.045058950781822205, -0.021305540576577187, 0.04276973754167557, 0.027742533013224602, -0.008845198899507523, 0.00780258746817708, -0.01983228512108326, 0.024274716153740883, -0.006788307800889015, 0.01833636313676834, 0.007609930820763111, -0.006533320993185043, -0.007150955032557249, -0.014834548346698284, 0.025339992716908455, -0.012182689271867275, -0.017917051911354065, 0.01983228512108326, 0.012794656679034233, 0.025000011548399925, -0.03209430351853371, 0.009887810796499252, 0.012205354869365692, 0.023685414344072342, 0.015106534585356712, -0.016069816425442696, 0.0791478157043457, -0.01293064933270216, -0.03291025757789612, 0.023572087287902832, 0.028445161879062653, -0.0071452888660132885, -0.060380805283784866, -0.0010440280893817544, 0.023130109533667564, -0.012896651402115822, -0.00010465071682119742, 0.018234368413686752, 0.021509528160095215, 0.0591568723320961, -0.021645521745085716, -0.0301450714468956, 0.031550332903862, -0.06890302151441574, -0.006975297816097736, -0.015627840533852577, -0.005241389386355877, -0.023368097841739655, -0.0156391728669405, -0.04616955667734146, 0.02132820524275303, -0.04891207814216614, 0.037284694612026215, -0.022552140057086945, 0.038803279399871826, 0.024569367989897728, -0.02724389173090458, -0.008431553840637207, 0.027901191264390945, 0.044945623725652695, 0.03424752131104469, 0.03354489430785179, 0.02238214947283268, 0.00045791329466737807, -0.013236633501946926, 0.04156846925616264, -0.0102107934653759, 0.03189031407237053, 0.0029748426750302315, 0.036627396941185, -0.007020628545433283, -0.027787864208221436, -0.01004080194979906, 0.0053348843939602375, -0.005006235092878342, 0.01512920018285513, -0.05684499442577362, -0.007966912351548672, 0.03399820253252983, -0.05616502836346626, -0.011457393877208233, 0.003711470402777195, -0.0010213626082986593, -0.0008952859789133072, -0.018393026664853096, 0.04097916558384895, 0.0018826504237949848, 0.00269719073548913, -0.004572757985442877, 0.028694482520222664, 0.038667287677526474, 0.03340889886021614, 0.003929625265300274, 0.011417729780077934, -0.019424306228756905, 0.03569811210036278, -0.02481868676841259, -0.000787625031080097, -0.008204899728298187, -0.04682685807347298, 0.053853150457143784, -0.03318224474787712, 0.031504999846220016, 0.0616954043507576, 0.022416148334741592, 0.04444698244333267, 0.03581143915653229, 0.03884861245751381, -0.010244791395962238, -0.02518133446574211, -0.03687671571969986, -0.01844969019293785, -0.011808708310127258, 0.03633274510502815, 0.07447873055934906, -0.021203545853495598, -0.021860843524336815, -0.02250680886209011, -0.022563472390174866, -0.050272006541490555, -0.05058932304382324, -0.015616507269442081, 0.010981419123709202, 0.013995926827192307, -0.02887580543756485, -0.026178615167737007, 0.02633727341890335, 0.0066636474803090096, 0.07248416543006897, 0.04369902238249779, -0.019809618592262268, -0.031051691621541977, -0.021781515330076218, -0.01622847467660904, 0.046781525015830994, -0.009366504848003387, -0.00951949693262577, 0.01456256303936243, 0.027901191264390945, -0.020104270428419113, 0.0176110677421093, 0.02434271201491356, -0.004592590499669313, -0.03812331706285477, 0.004983569961041212, 0.03871262073516846, 0.09197647124528885, 0.03220763057470322, -0.01982095092535019, -0.010120131075382233, 0.004227109719067812, -0.0352221354842186, -0.040752511471509933, 0.04641887918114662, -0.002758104121312499, -0.016092482954263687, 0.00847688503563404, -0.02214416302740574, -0.013247965835034847, -0.008170900866389275, -0.021532194688916206, 0.006986630614846945, 0.023481424897909164, 0.003957957495003939, -0.005431212950497866, -0.018710343167185783, -0.008833866566419601, 0.031618326902389526, -0.011361065320670605, -0.05820492282509804, 0.005235723219811916, -0.005187558941543102, 0.013610613532364368, -0.02851315774023533, 0.0006080720340833068, 0.03132367506623268, 0.02481868676841259, -0.0019223149865865707, 0.022291487082839012, 0.00461525609716773, -0.031935643404722214, -0.01983228512108326, 0.005533207207918167, 0.007241616956889629, 0.0033403232228010893, 0.023504089564085007, 0.004785246681421995, -0.014596560969948769, -0.02341342903673649, 0.01125907152891159, 0.013644611462950706, 0.00016202268307097256, -0.027923855930566788, -0.05158660560846329, 0.0061310091987252235, 0.0071792867965996265, -0.0028714314103126526, -0.020954225212335587, 0.05924753472208977, -0.009615824557840824, 0.0023147109895944595, -0.013814602978527546, -0.011842707172036171, 0.01079442910850048, -0.001034111948683858, -0.012398011051118374, 0.012658664025366306, 0.055621057748794556, 0.02087489515542984, 0.004507594741880894, -0.004176112357527018, -0.04027653485536575, -0.020376255735754967, 0.03374888002872467, 0.03096102923154831, 0.024796022102236748, 0.0340888649225235, 0.00985381193459034, -2.6561096433397324e-07, -0.04800546169281006, -0.002991841873154044, 0.015525845810770988, 0.02527199685573578, -0.0004936822224408388, 0.009899143129587173, -0.018483689054846764, 0.0020455585326999426, -0.02921578846871853, -0.04242975637316704, -0.024501370266079903, 0.024773355573415756, 0.004193111788481474, 0.026155950501561165, 0.022552140057086945, 0.009621490724384785, -0.03377154842019081, 0.029283784329891205, 0.021781515330076218, -0.042973726987838745, 0.013701274991035461, 0.0026589427143335342, 0.009468499571084976, -0.00811990350484848, 0.022994117811322212, -0.01357661560177803, 0.00851654913276434, 0.006601317320019007, -0.025204000994563103, -0.006725977640599012, -0.0032014972530305386, 0.003292159177362919, 0.016874440014362335, 0.012839987874031067, -0.011808708310127258, 0.018857669085264206, 0.00014325283700600266, -0.016738448292016983, 0.012194021604955196, -0.018970996141433716, -0.03653673455119133, -0.03245694935321808, 0.022654134780168533, -0.037284694612026215, 0.0029521770775318146, 0.0227447971701622, 0.0013563865795731544, 0.013961927965283394, -0.0028855972923338413, -0.012964647263288498, -0.05870356038212776, 0.025249330326914787, -0.039596572518348694, 0.01636446826159954, 0.04954671114683151, 0.03599276393651962, -0.038803279399871826, -0.014290577732026577, -0.029873086139559746, 0.0007791254320181906, 0.008754536509513855, -0.02087489515542984, 0.017123760655522346, 0.0017339083133265376, -0.014573896303772926, 0.034270185977220535, -0.03782866522669792, 0.052493222057819366, 0.039823226630687714, 0.02912512607872486, 0.05344517156481743, 0.009145515970885754, -0.0021716351620852947, 0.026586594060063362, -0.05253855511546135, 0.0008364974055439234, -0.04004988074302673, -0.001886900165118277, 0.005904354155063629, 0.036468736827373505, 0.028263838961720467, 0.015185863710939884, 0.010743431746959686, 0.009944474324584007, 0.029986413195729256, -0.026745252311229706, -0.012454674579203129, 0.028263838961720467, -0.007292614318430424, 0.027810528874397278, -0.02135086990892887, 0.05045333132147789, -0.026609258726239204, -0.06291934102773666, 0.01911832205951214, 0.04313238710165024, -0.0036349743604660034, -0.010635770857334137, 0.029601100832223892, -0.01129873562604189, -0.021384868770837784, -0.01467589009553194, 0.022450145334005356, 0.0022693800274282694, -0.028445161879062653, -0.04782413691282272, 0.05974617227911949, 0.010261790826916695, 0.0034083197824656963, 0.019220316782593727, -0.03952857479453087, 0.008040574379265308, 0.014539897441864014, 0.020500915125012398, 0.009695153683423996, 0.029850421473383904, 0.00927584245800972, 0.027085233479738235, 0.011695381253957748, 0.010023803450167179, 0.0075362678617239, -0.008754536509513855, 0.043427035212516785, 0.02470535971224308, -0.017565738409757614, 0.023980064317584038, -0.045625586062669754, -0.027651870623230934, -0.01741841249167919, 0.00024577867588959634, -0.0230961125344038, 0.010426115244626999, -0.007615596987307072, -0.02238214947283268, -0.012364013120532036, -0.02088622935116291, 0.01647779531776905, -0.012216687202453613, 0.010539442300796509, -0.011831373907625675, -0.013032644055783749, 0.04746149107813835, -0.014437902718782425, -0.05988216772675514, -0.0009236178011633456, 0.03132367506623268, -0.0340888649225235, 0.002566864248365164, -0.0022325485479086637, -0.036468736827373505, -0.007366277277469635, -0.008686540648341179, -0.014233914203941822, -0.007105624303221703, 0.004844743758440018, -0.017486408352851868, 0.009105851873755455, 0.010539442300796509, 0.030303729698061943, -0.051903922110795975, 0.013463287614285946, -0.009802814573049545, -0.00024312255845870823, 0.021622857078909874, -0.018869001418352127, 0.013236633501946926, 0.006414327304810286, 0.01322530023753643, -0.005201724823564291, -0.017792392522096634, 0.014177249744534492, -0.028105180710554123, -0.03087036684155464, 0.0329555906355381, 0.00626700185239315, 0.00799524411559105, -0.023232104256749153, 0.01050544437021017, -0.028467828407883644, 0.0005404297262430191, -0.005808026064187288, 0.03175432235002518, 0.0025441988836973906, -0.013157304376363754, -0.004388601053506136, 0.01362194586545229, 0.011315735056996346, 0.033703550696372986, -0.01578649878501892, -0.03143700212240219, -0.008068906143307686, 0.0020044774282723665, 0.006368996575474739, -0.021305540576577187, -0.007377609610557556, 0.01891433261334896, 0.019401639699935913, 0.024206720292568207, 0.002174468245357275, -0.02518133446574211, -0.044469647109508514, -0.0329555906355381, -0.01799638196825981, 0.008306893520057201, 0.009349505417048931, 0.03247961401939392, 0.02470535971224308, 0.02794652245938778, 0.03968723490834236, 0.020036272704601288, -0.0017254087142646313, 0.043427035212516785, -0.028105180710554123, 0.024886684492230415, -0.028921136632561684, -0.02297145128250122, -0.048322778195142746, -0.02124887704849243, 0.023005450144410133, 0.0013032644055783749, -0.05181325972080231, -0.0016630786703899503, 0.023594751954078674, -0.0002636631252244115, 0.016897106543183327, 0.006238670088350773, 0.020557578653097153, 0.04333637282252312, -0.0154238510876894, -0.0501360148191452, -0.01438123919069767, 0.030485054478049278, -0.049002740532159805, 0.0004858909815084189, 0.03771533817052841, -0.00519605865702033, 0.019458305090665817, -0.008318226784467697, -0.06155940890312195, -0.03633274510502815, 0.012137358076870441, -0.04700817912817001, -0.017089763656258583, 0.031844981014728546, -0.005819358862936497, 0.02957843616604805, -0.02272213064134121, 0.005448211915791035, -0.006057346239686012, -0.039959218353033066, -0.013032644055783749, 0.04512694478034973, -0.009190847165882587, 0.023526756092905998, -0.002343042753636837, 0.0183136984705925, -0.008499550633132458, 0.015729835256934166, 0.0015681670047342777, 0.007309613283723593, 0.007230284158140421, 0.001037653419189155, 0.021996837109327316, 0.02574797160923481, 0.02735722064971924, 0.032547611743211746, 0.0007486687391065061, -0.02724389173090458, 0.03587943688035011, 0.007575932424515486, -0.007490937132388353, -0.01600182056427002, 0.00933817308396101, 0.009972806088626385, 0.008459885604679585, -0.004567091818898916, 0.003957957495003939, -0.015038537792861462, 0.031550332903862, -0.02574797160923481, -0.006788307800889015, -0.06205805018544197, -0.029419777914881706, -0.046464208513498306, -0.02819584123790264, 0.009542161598801613, -0.030235733836889267, 0.03515414148569107, 0.028671815991401672, 0.013735273852944374, -0.00684497132897377, 0.004717250354588032, -0.014358573593199253, 0.020818231627345085, -0.021146882325410843, 0.024410709738731384, -0.013655944727361202, -0.04329104349017143, -0.012715327553451061, 0.017101095989346504, 0.030190402641892433, 0.00521589070558548, -0.0015625007217749953, 0.029079794883728027, -0.012001365423202515, -0.008437220007181168, -0.0034394848626106977, -0.03315958008170128, -0.027697201818227768, 0.0018599849427118897, 0.04306438937783241, -0.0045529259368777275, -0.009315507486462593, 0.005028900690376759, 0.03850863128900528, 0.036355409771203995, -0.029714427888393402, -0.026495931670069695, 0.027674537152051926, -0.012919316999614239, 0.011202407069504261, -0.012885318137705326, -0.017667733132839203, -0.009950140491127968, 0.030485054478049278, -0.007655261550098658, 0.001367719378322363, -0.011695381253957748, 0.043676357716321945, -0.035902101546525955, -0.023368097841739655, 0.024909349158406258, -0.019650960341095924, -0.01589982584118843, -0.054805099964141846, -0.015367187559604645, 0.0050685652531683445, 0.048776086419820786, 0.004221443552523851, -0.0052782208658754826, 0.016613787040114403, -0.0027807694859802723, 0.03875795006752014, 0.03628741577267647, 0.030553050339221954, -0.01242067664861679, -0.012137358076870441, 0.02216682769358158, -0.03703537583351135, -0.006640981882810593, 0.046554870903491974, 0.008250229991972446, 0.0012175606098026037, 0.011910703033208847, 0.012828654609620571, 0.011242072097957134, 0.018019046634435654, 0.002589529613032937, -0.03789666295051575, -0.006108343601226807, 0.011763378046452999, 0.00018327154975850135, -0.03395286947488785, 0.07234816998243332, -0.0024790356401354074, -0.0012926399940624833, 0.017769725993275642, -0.01856301911175251, -0.01252267137169838, 0.01738441362977028, -0.014188583008944988, -0.010046469047665596, -0.004323437809944153, 0.01553717814385891, 0.004544426221400499, -0.005385881755501032, 0.006153674330562353, -0.03003174439072609, 0.004700251389294863, 0.008063239976763725, -0.0070432941429317, 0.0014173000818118453, -0.030553050339221954, -0.010822760872542858, 0.04639621451497078, 8.481842814944685e-05, -0.012964647263288498, 0.06572985649108887, 0.002752437721937895, -0.013247965835034847, -0.00023055030032992363, 0.0041987779550254345, 0.004374435171484947, -0.0036576399579644203, 0.03270627185702324, 0.011423395946621895, 0.03406619653105736, -0.02495468035340309, -0.005513375159353018, 0.009468499571084976, 0.01936764270067215, 0.009967139922082424, -0.013667277060449123, -0.0014385489048436284, 0.05176793038845062, 0.029419777914881706, 0.005057232454419136, -0.004745582118630409, 0.0034281520638614893, 0.013927930034697056, 0.010596105828881264, 0.009961472824215889, 0.0062046716921031475, -0.015491846948862076, -0.026382604613900185, 0.02434271201491356, 0.01680644415318966, 0.005779694300144911, 0.004776747431606054, -0.0036774722393602133, 0.014630559831857681, 0.04544426128268242, 0.014301910065114498, 0.021872175857424736, 0.024524036794900894, -0.03934725373983383, -0.00019106280524283648, 0.03703537583351135, -0.025657309219241142, -0.022529475390911102, 0.016092482954263687, 0.005079898051917553, -0.03456483781337738, 0.030825035646557808, -0.007241616956889629, 0.020738903433084488, 0.010397783480584621, -0.02654126286506653, -0.016149146482348442, 0.0069129676558077335, -0.009355171583592892, -0.0013365542981773615, 0.005538873840123415, -0.009587492793798447, 0.02434271201491356, -0.015809163451194763, 0.02864915132522583, 0.013123305514454842, -0.0563463531434536, 0.022824125364422798, -0.03816864639520645, 0.03329557180404663, 0.01891433261334896, -0.007383276242762804, -0.018744342029094696, 0.009071853943169117, 0.04281507059931755, -0.017350414767861366, 0.026359939947724342, -0.000725294987205416, 5.7549041230231524e-05, -0.01926564797759056, 0.01706709712743759, 0.008244563825428486, 0.0308477021753788, -0.0006565902731381357, 0.0006587151437997818, 0.027583874762058258, 0.008618543855845928, 0.06722577661275864, -0.004694585222750902, 0.006408661138266325, -0.02540798857808113, 0.0018784006824716926, -0.010290122590959072, -0.02377607487142086, -0.04882141947746277, -0.011808708310127258, -0.0007840835023671389, -0.00323266233317554, -0.014222580939531326, -0.010953087359666824, 0.007241616956889629, 0.03594743087887764, -0.020387588068842888, 0.005164893344044685, 0.012953314930200577, 0.010080466978251934, 0.0011892287293449044, -0.03875795006752014, -0.018404358997941017, -0.013191302306950092, 0.0031901646871119738, 0.00115877203643322, 0.025770636275410652, -0.013723940588533878, 0.015627840533852577, 0.014165917411446571, 0.02715323120355606, -0.03989122435450554, -0.011865372769534588, -0.026949241757392883, -0.0010829843813553452, -0.016273805871605873, 0.020387588068842888, -0.04419766366481781, -0.0012189771514385939, -0.025000011548399925, -0.009967139922082424, -0.02794652245938778, -0.005949685350060463, 0.01112307794392109, -0.016783779487013817, 0.011327067390084267, 0.012568001635372639, -0.021849511191248894, 0.04650954157114029, 0.008459885604679585, -0.003711470402777195, 0.02169085294008255, 0.010477112606167793, -0.025657309219241142, -0.0031420004088431597, 0.029986413195729256, 0.0023302934132516384, 0.005315052345395088, -0.009683821350336075, 0.006708978675305843, -0.034270185977220535, -0.030802370980381966, 0.008601545356214046, 0.0223934818059206, -0.01784905605018139, 0.014698555693030357, -0.023028114810585976, 0.042860399931669235, -0.0007635429501533508, -0.006006348878145218, 0.016863107681274414, -0.0049807364121079445, 0.03175432235002518, -0.0394379124045372, 0.026858579367399216, -0.03723936527967453, -0.02966909669339657, -0.029170457273721695, -0.006997963413596153, 0.0055842045694589615, 0.0031759985722601414, -0.028603820130228996, 0.030190402641892433, -0.009695153683423996, -0.016749780625104904, -0.007966912351548672, -0.02132820524275303, -0.027810528874397278, -0.01740708015859127, -0.010987085290253162, -0.013587947934865952, 0.018529020249843597, -0.013009978458285332, -0.01252267137169838, 0.0005680532776750624, 0.015718501061201096, 0.034972816705703735, 0.005638035014271736, -0.013202634640038013, 0.0036633063573390245, 0.012669996358454227, 0.0025201167445629835, 0.05140528082847595, 0.023390762507915497, -0.009955806657671928, -0.006737310439348221, 0.026359939947724342, -0.002819017507135868, -0.012035363353788853, -0.022212158888578415, -0.01856301911175251, -0.0004848285170737654, -0.0140865882858634, 0.008080239407718182, 0.011202407069504261, -0.0281731765717268, 0.0394379124045372, -0.0035811439156532288, 0.0005630952073261142, -0.01205802895128727, 0.015457849018275738, -0.0173957459628582, 0.012046696618199348, 0.011763378046452999, 0.009587492793798447, -0.00040195792098529637, -0.000973906833678484, -0.02391206845641136, -0.011854039505124092, 0.01129873562604189, 0.0027042736764997244, 0.025136003270745277, -0.03499548137187958, 0.02481868676841259, -0.005742862820625305, -0.01578649878501892, 0.0034734830260276794, 1.3014936484978534e-05, -0.0177470613270998, -0.035448793321847916, 0.04886674880981445, 0.01235267985612154, -0.014029924757778645, -0.0048362440429627895, 0.016908438876271248, 0.0014746719971299171, -0.011514057405292988, 0.0326836034655571, -0.018415693193674088, -0.009111518040299416, 0.023152776062488556, 0.02724389173090458, 0.02878514491021633, 0.005519041325896978, 0.025249330326914787, -0.03139167279005051, -0.02470535971224308, -0.0368993803858757, -0.03383954241871834, -0.052810538560152054, -0.024750690907239914, 0.004612422548234463, -0.02935178019106388, 0.024206720292568207, -0.022336818277835846, 0.03327290713787079, 0.006861970294266939, -0.03495015203952789, -0.029170457273721695, -0.004309271927922964, -0.002991841873154044, -0.008839532732963562, 0.011842707172036171, 0.0019237315282225609, -0.011038082651793957, 0.0020993889775127172, 0.017701730132102966, 0.003042839001864195, -0.003960790578275919, 0.02540798857808113, -0.03526746854186058, -0.06912967562675476, 0.004558592103421688, 0.005181892774999142, 0.04236175864934921, 0.03143700212240219, -0.033250242471694946, -0.018608348444104195, -0.003416819265112281, 0.02887580543756485, 0.03499548137187958, -0.0029550103936344385, -0.011786043643951416, -0.013780604116618633, -0.010312788188457489, -0.013236633501946926, 0.008544881828129292, 0.014029924757778645, -0.000954074552282691, -0.018291031941771507, -0.004184612073004246, -0.02631460875272751, 0.009134183637797832, -0.03834997117519379, -0.030938364565372467, 0.01484588161110878, 0.016421131789684296, -0.013735273852944374, 0.018597016111016273, 0.021838178858160973, 0.002280712593346834, -0.003748301649466157, -0.03025840036571026, 0.005646534729748964, 0.016987768933176994, -0.016636453568935394, 0.001223935279995203, -0.0017112428322434425, -0.01601315289735794, -0.001181437517516315, 0.017191756516695023, -0.0036094756796956062, 0.024637363851070404, -0.018619682639837265, 0.01108341384679079, -0.005632368847727776, 0.004748415667563677, -0.024524036794900894, -0.01195603422820568, 0.013100640848279, 0.010868092067539692, 0.030349060893058777, -0.005618202965706587, 0.02203083410859108, 0.0021645522210747004, 0.02969176322221756, 0.027515878900885582, 0.029737094417214394, -0.02425205148756504, -0.015514512546360493, 0.007122623268514872, 0.03823664411902428, -0.00423277635127306, 0.0069299666211009026, -0.003977789543569088, 0.014041257090866566, -0.019560297951102257, 0.012024031020700932, -0.014528565108776093, 0.012375345453619957, 0.0008322476642206311, 0.00236145849339664, -0.004501928575336933, 0.02306211367249489, 0.014698555693030357, 0.03318224474787712, 0.0015214195009320974, 0.008102905005216599, 0.008051907643675804, 0.016636453568935394, -0.0008690790273249149, 0.016625121235847473, -0.022688133642077446, 0.027311889454722404, -0.04399367421865463, -0.020115602761507034, -0.00014537772221956402, 0.016285138204693794, 0.012216687202453613, 0.019628295674920082, -0.032434284687042236, -0.015809163451194763, -0.01680644415318966, -0.05262921750545502, -0.017917051911354065, 0.025702640414237976, -0.04349503293633461, 0.008901862427592278, -0.0016276639653369784, 0.0034394848626106977, -5.847867942065932e-05, -0.013089307583868504, -0.0023260435555130243, 0.02237081713974476, -0.022676801308989525, -0.02828650362789631, -0.0050685652531683445, 0.03340889886021614, -0.013769271783530712, -0.011491391807794571, 0.014619226567447186, 0.02214416302740574, 0.023866737261414528, -0.031255681067705154, 0.00781958643347025, -0.010743431746959686, -0.019888948649168015, -0.04476429894566536, 0.017361748963594437, -0.009411835111677647, 0.03073437511920929, -0.020500915125012398, 0.008731871843338013, -0.009309841319918633, -0.009077520109713078, -0.024070726707577705, 0.017112428322434425, -0.043313708156347275, -0.012307348661124706, -0.023572087287902832, 0.014823216013610363, 0.015967821702361107, 0.019503634423017502, 0.01456256303936243, 0.0020030606538057327, -0.028467828407883644, -0.001511503360234201, -0.060244813561439514, -0.004507594741880894, 0.007904581725597382, 0.007065959740430117, -0.03422485664486885, 0.01002946961671114, -0.01935631036758423, 0.012737993150949478, -0.04800546169281006, 0.016489127650856972, 0.034043531864881516, 0.026246611028909683, 0.014698555693030357, 0.004422599449753761, -0.031822316348552704, -0.01495920866727829, 0.02726655825972557, -0.0063746627420187, -0.028241172432899475, -0.01948096975684166, 0.0329555906355381, -0.01659112237393856, -0.012987312860786915, 0.001953480066731572, 0.023368097841739655, 0.020852230489253998, 0.018710343167185783, -0.013723940588533878, 0.0019520634086802602, 0.015684504061937332, 0.016523126512765884, -0.04358569532632828, 0.031935643404722214, 0.004742749035358429, -0.031482335180044174, 0.04138714447617531, 0.004807912278920412, -0.0001873442524811253, -0.03703537583351135, -0.016296470537781715, 0.008618543855845928, 0.06101543828845024, -0.005482209846377373, -0.007099957671016455, -0.007258615922182798, -0.008845198899507523, 0.010471446439623833, 0.020330924540758133, 0.001143897883594036, 0.03488215431571007, 0.018257034942507744, -0.020580245181918144, -0.0010674018412828445, -0.021135548129677773, -0.008068906143307686, -0.013077975250780582, -0.007235950790345669, -0.004518927540630102, -0.014709888957440853, -0.03327290713787079, -0.01512920018285513, -0.0038304640911519527, -0.021305540576577187, 0.040185876190662384, 0.03823664411902428, 0.00916818156838417, 0.02157752588391304, 0.0027311888989061117, -0.04782413691282272, 0.007184953428804874, -0.0027807694859802723, 0.02077290043234825, 0.047506820410490036, 0.04091116786003113, -0.004011787939816713, -0.02166818641126156, -0.004300772678107023, 0.007065959740430117, 0.005428379401564598, 0.0077119255438447, 0.0011679799063131213, -0.021883510053157806, -0.025226665660738945, -0.03304625302553177, -0.0102107934653759, 0.019526300951838493, -0.052946534007787704, 0.004762581549584866, 0.005235723219811916, -0.0011538140242919326, 0.024524036794900894, 0.028853140771389008, -0.026269277557730675, -0.021532194688916206, -0.007479604333639145, -0.021260209381580353, -0.010256124660372734, -0.021634189411997795, 0.031844981014728546, -0.032411620020866394, -0.0006817347602918744, 0.0016347469063475728, 0.015593841671943665, 0.02561197802424431, 0.030077075585722923, -0.03454217314720154, -0.022416148334741592, -0.009406168945133686, -0.044469647109508514, 0.06015415117144585, 0.011361065320670605, 0.020557578653097153, -0.02400273084640503, -0.015911158174276352, -0.021985502913594246, 0.012715327553451061, 0.004575591534376144, -0.006334998179227114, -0.01090775616466999, -0.010460113175213337, 0.032411620020866394, 0.008799867704510689, -0.023526756092905998, -0.0012104776687920094, -0.0011488558957353234, -0.00916818156838417, -0.006317999213933945, -0.016047151759266853, 0.03433818370103836, -0.004193111788481474, 0.05181325972080231, 0.0125340037047863, 0.03551678732037544, 0.0017169092316180468, -0.004997735843062401, -0.00024117474094964564, 0.012602000497281551, -0.02124887704849243, 0.0013606363208964467, -0.0006413619266822934, 0.01752040721476078, -0.00032315999851562083, 0.012737993150949478, 0.011599053628742695, -0.002341626212000847, 0.014891212806105614, -0.021158214658498764, -0.01514053251594305, 0.01473255455493927, 0.038803279399871826, -0.02190617471933365, -0.0176110677421093, 0.003357322420924902, 0.011100413277745247, 0.018948331475257874, -0.019526300951838493, 0.009791482239961624, 0.003770967246964574, -0.0050855642184615135, 0.047506820410490036, -0.027515878900885582, 0.03238895535469055, 0.009020856581628323, -0.01647779531776905, 0.018948331475257874, 0.0115480562672019, -0.017554404214024544, 0.004020287189632654, 0.00510822981595993, 0.024184053763747215, 0.0008258729940280318, 0.009865145199000835, 0.014857213944196701, 0.019310979172587395], [-0.014048242010176182, -0.03842749446630478, 0.06951707601547241, 0.021096501499414444, -0.04772057384252548, 0.038451630622148514, 0.0024680974893271923, 0.015906857326626778, 0.057255033403635025, 0.03705163300037384, 0.016691338270902634, 0.008629289455711842, -0.006143088452517986, -0.06280674785375595, 0.015725823119282722, 0.01651030406355858, -0.032175783067941666, 0.038403354585170746, 0.0010907300747931004, 0.05039987713098526, -0.0030760702211409807, 0.048517122864723206, -0.0563860684633255, 0.02151891402900219, -0.006257743574678898, -0.01747581921517849, 0.034758538007736206, 0.06864810734987259, 0.04178265854716301, -0.0449688546359539, 0.03729301318526268, -0.032055094838142395, 0.04412402957677841, -0.03519301861524582, 0.04706885293126106, 0.0447516143321991, -0.06053778529167175, 0.028337862342596054, 0.04460678994655609, -0.04757574573159218, -0.05165504664182663, -0.019672365859150887, -0.032779231667518616, -0.044920582324266434, -0.04721367731690407, 0.040261972695589066, 0.0038349044043570757, -2.8428001314750873e-05, 0.01529134251177311, 0.04291713610291481, -0.00040883521432988346, -0.013987896963953972, -0.01766892336308956, -0.05807572230696678, 0.03924817964434624, -0.004809471312910318, 0.009250839240849018, 0.02236373908817768, 0.05590331181883812, -0.048879191279411316, 0.022218910977244377, -0.015943065285682678, -0.003509043250232935, 0.02993096224963665, -0.008562910370528698, 0.007132741156965494, -0.01027669943869114, 0.04682747274637222, -0.04718954116106033, -0.008056014776229858, 0.033961985260248184, 0.04311024025082588, -0.03425164148211479, -0.033793020993471146, 0.021977532655000687, 0.03883783519268036, -0.0008176704286597669, 0.04419644549489021, 0.013360312208533287, 0.016039615496993065, 0.03251371532678604, 0.0333344005048275, 0.007223258260637522, 0.0739101693034172, 0.00010192593617830426, 0.052765388041734695, -0.06719983369112015, 0.017198234796524048, 0.028989585116505623, 0.004124558996409178, 0.004519816488027573, 0.047792986035346985, 0.013963758945465088, 0.013372381217777729, -0.0025842608883976936, -0.03693094477057457, -0.031017165631055832, -0.03985162824392319, -0.039658524096012115, 0.0692274197936058, -0.0037986976094543934, 0.007790498435497284, -0.016980992630124092, 0.009576700627803802, 0.013131002895534039, -0.03449302166700363, -0.06005502864718437, 0.04405161738395691, -0.02272580750286579, -0.03598956763744354, 0.0007482740329578519, 0.011459454894065857, -0.03806542605161667, 0.04711712896823883, 0.01687237247824669, -0.001060557784512639, -0.032948195934295654, 0.013034450821578503, 0.026020627468824387, -0.022424083203077316, -0.04699643701314926, -0.04400334134697914, 0.007627567742019892, -0.05484124645590782, -0.014506861567497253, -0.013396519236266613, -0.03302060812711716, -0.014301689341664314, -0.05339297279715538, -0.0008320023189298809, 0.03186199069023132, -0.046248164027929306, 0.005265073385089636, -0.03352750465273857, -0.015436169691383839, -0.025586144998669624, 0.021579258143901825, -0.004598264582455158, -0.03994818031787872, -0.04221713915467262, -0.012962037697434425, 0.03058268502354622, 0.02447580359876156, 0.03304474800825119, -0.03236888721585274, 0.040189556777477264, -0.0482998825609684, 0.06956534832715988, 0.008804288692772388, 0.009974976070225239, -0.03968266397714615, -0.006909465882927179, 0.01787409372627735, 0.010403422638773918, 0.036786116659641266, 0.00721118925139308, -0.013348243199288845, 0.058027446269989014, -0.007736188359558582, 0.041275762021541595, -0.06039295718073845, 0.005669382866472006, -0.007144810166209936, 0.006100847385823727, 0.04033438488841057, 0.014687895774841309, -0.009944803081452847, 0.015701686963438988, -0.0610688179731369, -0.03434819355607033, -0.018429266288876534, -0.04810677841305733, -0.040913693606853485, -0.03309302404522896, 0.01053618174046278, -0.021325809881091118, -0.013215485028922558, 0.03280336782336235, 0.004151714034378529, -0.03818611428141594, 0.029424065724015236, 0.025224076583981514, -0.06715156137943268, 0.010687042959034443, -0.039899904280900955, -0.011682730168104172, -0.01308272685855627, 0.04303782805800438, 0.012268073856830597, -0.018175818026065826, 0.03280336782336235, 0.006444811820983887, 0.029013723134994507, 0.035217154771089554, -0.007621533237397671, -0.026503384113311768, -0.013686173595488071, -0.045330923050642014, 0.019443055614829063, -0.005078005138784647, 0.0011548463953658938, -0.004091369453817606, 0.029761996120214462, 0.035651639103889465, -0.001379630295559764, 0.014772377908229828, 0.03425164148211479, -0.03034130483865738, 0.01514651533216238, 0.008237048983573914, -0.0033521470613777637, -0.00626981258392334, -0.017934439703822136, -0.020818915218114853, -0.027396485209465027, -0.032899919897317886, 0.027372347190976143, 0.00034849054645746946, -0.007687912322580814, 0.024584423750638962, 0.04308610409498215, 0.0022674514912068844, 0.012491349130868912, 0.032586127519607544, -0.018960298970341682, 0.0007844808278605342, -0.05266883596777916, 0.0321999229490757, -0.030075788497924805, -0.04381023719906807, -0.05015850067138672, 0.020601674914360046, -0.019551677629351616, -0.008243083022534847, 0.009009460918605328, 0.024982698261737823, -0.02681717649102211, -0.0483722947537899, -0.011724971234798431, -0.009413770399987698, 0.027613725513219833, 0.0654619112610817, -0.03487922623753548, 0.040068868547677994, -0.038693010807037354, -0.028627516701817513, -0.008448255248367786, -0.00928101222962141, 0.02927923947572708, -0.0063361916691064835, 0.009093943051993847, -0.05271711200475693, -0.025537868961691856, -0.023751666769385338, 0.029713721945881844, 0.01666720025241375, 0.05122056603431702, 0.047261953353881836, 0.021205121651291847, -0.001150320516899228, 0.00865946151316166, 0.02341373637318611, 0.01848961040377617, -0.0017907284200191498, -0.015508582815527916, -0.020541328936815262, 0.04646540433168411, -0.05416538566350937, 0.013360312208533287, -0.006939638406038284, -0.02253270335495472, 0.043182652443647385, 0.01823616214096546, -0.03623094782233238, -0.029520617797970772, 0.00817066989839077, 0.0036086118780076504, -0.044389545917510986, -0.051510218530893326, 0.014977550134062767, -0.06927569210529327, -0.0038349044043570757, 0.013481001369655132, -0.06468949466943741, 0.00917842611670494, -0.017934439703822136, 0.012696521356701851, 0.05469641834497452, 0.006049554329365492, 0.0333344005048275, 0.006372398231178522, 0.0013992423191666603, 0.018791332840919495, -0.01682409644126892, 0.03997231647372246, -0.013818931765854359, 0.009136185050010681, -0.03555508702993393, 0.005796106532216072, 0.010940490290522575, -0.03509646654129028, -0.007374119944870472, -0.013915483839809895, -0.0247895959764719, -0.005989209748804569, 0.04381023719906807, -0.0007467654068022966, -0.035579223185777664, -0.04074472934007645, -0.018091335892677307, -0.03285164386034012, -0.031693026423454285, -0.008725840598344803, -0.056965380907058716, -0.034806810319423676, 0.030993027612566948, 0.013649966567754745, 0.019636159762740135, -0.024330975487828255, -0.016329269856214523, 0.028868895024061203, -0.03183785453438759, -0.004046110901981592, 0.0016277977265417576, 0.07048258930444717, -0.027517175301909447, 0.010970663279294968, 0.025465454906225204, 0.002851286204531789, 0.0062818811275064945, -0.04004472866654396, -0.03932059556245804, 0.022918909788131714, -0.0017801681533455849, -0.010674973949790001, 0.02010684832930565, -0.003312923014163971, 0.03635163605213165, -0.030437856912612915, 0.00796549767255783, -0.023039599880576134, -0.03497577831149101, -0.010626697912812233, 0.041686106473207474, 0.002703441772609949, 0.026648210361599922, -0.0067103286273777485, 0.023486150428652763, 0.0155327208340168, 0.0334068164229393, 0.005328435450792313, -0.00620946753770113, -0.005503435153514147, -0.011978419497609138, -0.059041235595941544, -0.008900840766727924, 0.037679217755794525, -0.03639991208910942, -0.08824805915355682, 0.018948229029774666, -0.008297394029796124, -0.0015795220388099551, -0.009480149485170841, 0.030606823042035103, -0.037799909710884094, -0.012889623641967773, -0.02322063408792019, -0.020517190918326378, -0.003801714861765504, 0.008991357870399952, -0.0070844655856490135, -0.0357481874525547, -0.014325827360153198, -0.0230878759175539, 0.018598230555653572, 0.02561028301715851, -0.01538789365440607, 0.03700335696339607, -0.012213763780891895, -0.006541363429278135, 0.005277142394334078, 0.034686122089624405, 0.03697922080755234, 0.03806542605161667, 0.07955842465162277, 0.034806810319423676, -0.015110308304429054, -0.014627550728619099, 0.03548267111182213, -0.006607742514461279, 0.00657153595238924, 0.03509646654129028, 0.0005544167361222208, 0.002323270309716463, -0.01472410187125206, -0.023039599880576134, 0.027010278776288033, 0.06526880711317062, 0.010463767684996128, -0.03625508397817612, 0.004697833210229874, 0.006191364489495754, 0.005081022158265114, -0.0447516143321991, -0.009045667946338654, -0.011755144223570824, -0.0007769377552904189, -0.02628614380955696, 0.03526543080806732, 0.0016277977265417576, 0.031934406608343124, -0.02968958392739296, 0.006523259915411472, 0.00792929157614708, 0.04996539652347565, 0.006432742811739445, -0.023148220032453537, 0.048155054450035095, 0.025272352620959282, -0.0032827507238835096, 0.061213646084070206, 0.0008078644168563187, -0.0002909745089709759, 0.03089647740125656, -0.004006886854767799, 0.038403354585170746, 0.01286548562347889, -0.02005857229232788, -0.0459585078060627, -0.017210302874445915, 0.009196529164910316, 0.01308272685855627, 0.027734415605664253, 0.024934422224760056, -0.01718616485595703, -0.04274817183613777, 0.03137923404574394, -0.005485331639647484, -0.004040076397359371, 0.002649131463840604, 0.014760308898985386, -0.007024121005088091, 0.032827507704496384, 0.058751583099365234, -0.0574481375515461, 0.01637754589319229, -0.011248248629271984, -0.0097698038443923, 0.04776884987950325, -0.011338765732944012, 0.006800845731049776, 0.06237226352095604, -0.04747919365763664, 0.006197398994117975, -0.029351653531193733, -0.004453437402844429, -0.020336156710982323, -0.03022061660885811, 0.028989585116505623, -0.03514474257826805, 0.028410276398062706, 0.010125837288796902, 0.045644715428352356, -0.007959463633596897, 0.020324088633060455, -0.016039615496993065, -0.008351704105734825, 0.005696537904441357, -0.006595673505216837, -0.0032978367526084185, 0.010711180977523327, 0.06275846809148788, 0.04986884444952011, -0.03417922928929329, 0.036544740200042725, 0.036303360015153885, -0.006031450815498829, -0.00019536590843927115, 0.032779231667518616, -0.053006768226623535, 0.02256891131401062, -0.010590491816401482, -0.018513748422265053, 0.02468097396194935, 0.02017926052212715, 0.01921374723315239, 0.045692991465330124, -0.007820670492947102, -0.07082051783800125, -0.045161958783864975, 0.017427543178200722, -0.00817066989839077, -0.014929274097084999, -0.011447385884821415, -0.03895852714776993, 0.015508582815527916, 0.000675483257509768, -0.013867207802832127, 0.034203365445137024, -0.005385763011872768, 0.03263440355658531, -0.021941326558589935, 0.06488259881734848, -0.005874554626643658, 0.03859645873308182, 0.01840512827038765, -0.00865946151316166, 0.006372398231178522, 0.0014241344761103392, 0.0021075380500406027, -0.04381023719906807, 0.019515469670295715, 0.020565466955304146, -0.011103421449661255, -0.02131374180316925, -0.023691322654485703, -0.021205121651291847, 0.00020404045062605292, -0.023775804787874222, 0.014893067069351673, 0.01699306257069111, 0.03499991446733475, -0.031934406608343124, 0.002691372763365507, -0.00802584271878004, -0.0011631437810137868, 0.009244805201888084, -0.08409634977579117, 0.016160305589437485, -0.00998704507946968, 0.022146498784422874, -0.03627922385931015, -0.04991712048649788, 0.0033521470613777637, -0.0019053833093494177, 0.013034450821578503, -0.018030989915132523, -0.003294819500297308, -0.029351653531193733, -0.02459649182856083, 0.017608577385544777, -0.04586195945739746, 0.001976288389414549, 0.012008591555058956, 0.011018938384950161, 0.006818948779255152, 0.007609464228153229, 0.02561028301715851, 0.006354294717311859, -0.026793038472533226, -0.031017165631055832, -0.008152566850185394, 0.00908187497407198, 0.010554284788668156, 0.0003215240139979869, -0.002362494356930256, 0.019720641896128654, -0.04064817726612091, 0.00646291533485055, -0.015255135484039783, -0.007983601652085781, -0.020758571103215218, -0.018429266288876534, -0.01193014346063137, -0.0059137786738574505, 0.040672313421964645, -0.0005585654289461672, -0.04508954659104347, -0.011308593675494194, -0.0055155036970973015, 0.01272065844386816, 0.03753439337015152, 0.02831372432410717, 0.008550841361284256, 0.0356757752597332, -0.01211721170693636, 0.020963741466403008, -0.006155157461762428, -0.007006017491221428, 0.004393092822283506, 0.009618942625820637, 0.023691322654485703, -0.004513781983405352, -0.033551644533872604, 0.014820653945207596, 0.00528921140357852, -0.02017926052212715, -0.013915483839809895, -0.02932751551270485, -0.014712032862007618, 0.03321371227502823, -0.0029236997943371534, -0.0014045224525034428, -0.00571464141830802, -0.009317218326032162, 0.04472747817635536, -0.014494792558252811, 0.030679235234856606, -0.019189609214663506, 0.024258561432361603, 0.007132741156965494, -0.01486892905086279, -0.024318907409906387, 0.01929822936654091, -0.014893067069351673, 0.012829279527068138, 0.0062939501367509365, 0.01654651202261448, 0.012280142866075039, 0.010089630261063576, 0.037437841296195984, -0.017258578911423683, 0.0138310007750988, 0.01448272354900837, -0.019949952140450478, -0.00014973024372011423, -0.05469641834497452, -0.031282681971788406, -0.05208952724933624, 0.0086172204464674, 0.014941343106329441, 0.013275830075144768, 0.03709990903735161, -0.002981027355417609, 0.003312923014163971, 0.02017926052212715, -0.03748611733317375, -0.035048190504312515, 0.04972401633858681, 0.005005591083317995, -0.006493087857961655, 0.029351653531193733, 0.001544823870062828, 0.014084449037909508, -0.0005468736635521054, 0.013855138793587685, 0.010409457609057426, 0.004154731519520283, -0.008629289455711842, 0.008013773709535599, 0.013698242604732513, 0.010554284788668156, -0.01047583669424057, -0.046417128294706345, 0.040793005377054214, 0.01759650930762291, 0.028506826609373093, -0.004278437700122595, -0.009594804607331753, 0.0037232667673379183, 0.05020677298307419, -0.013106864877045155, 0.033430952578783035, -0.008587048389017582, 0.013468933291733265, -0.001722840592265129, -0.0005989209748804569, 0.0539722815155983, -0.018344782292842865, 0.006782742217183113, 0.0031590440776199102, 0.004646540619432926, 0.0010598034132272005, -0.017017200589179993, 0.03053440898656845, -0.011815488338470459, 0.04774470999836922, 0.00022044665820430964, 0.014953412115573883, -0.020010296255350113, -0.05387573316693306, 0.020843053236603737, 0.019841331988573074, -0.009317218326032162, -0.013951689936220646, -0.030389580875635147, -0.021180983632802963, 0.008478427305817604, -0.0167396143078804, 0.046537816524505615, -0.01949133165180683, -0.021748222410678864, -0.02402925118803978, 0.028482690453529358, -0.01828443817794323, -0.012998244725167751, 0.0047340402379632, -0.014808584935963154, 0.0016443926142528653, -0.012974106706678867, 0.010886180214583874, 0.03502405434846878, -0.014217207208275795, -0.009558597579598427, 0.006052571348845959, 0.007217223756015301, 0.02387235499918461, -0.022351669147610664, -0.02698614075779915, 0.0247895959764719, -0.015315480530261993, 0.008568944409489632, -0.03458957001566887, -0.07062741369009018, -0.0026249936781823635, 0.05711020529270172, 0.01128445565700531, 0.013987896963953972, 0.008912909775972366, -0.004203007090836763, -0.04530678689479828, -0.002981027355417609, -0.023968907073140144, -0.005470245145261288, -0.007289637345820665, 0.017077544704079628, -0.02155512012541294, -0.010801698081195354, 0.01885167881846428, 0.016606856137514114, -0.01508617028594017, 0.020903397351503372, -0.006824983283877373, 0.012195659801363945, -0.017198234796524048, -0.022037876769900322, -0.004079300444573164, -0.010632732883095741, 0.023196496069431305, -0.011906005442142487, 0.014120655134320259, -0.0074948095716536045, -0.0075008440762758255, 0.010771526023745537, 0.0034426641650497913, 0.02095167338848114, -0.0201430544257164, 0.011875833384692669, 0.004616368096321821, 0.027734415605664253, 0.026793038472533226, -0.0027004245202988386, 0.010843939147889614, -0.04559643939137459, 0.024403389543294907, 0.018501678481698036, 0.0004295787075534463, 0.02468097396194935, -0.012612038291990757, 0.018501678481698036, 0.012575831264257431, 0.008665496483445168, -0.013203416019678116, -0.03410681337118149, 0.028386138379573822, -0.014591343700885773, -0.0013637897791340947, 0.021265465766191483, 0.010180147364735603, 0.011580144055187702, 0.00019876028818544, 0.0070723965764045715, -0.034855086356401443, 0.005476279649883509, 0.010904284194111824, 0.0035935258492827415, -0.02544131688773632, 0.009250839240849018, -0.009558597579598427, 0.017862025648355484, 0.0004367446235846728, 0.009256874211132526, -0.017813749611377716, -0.005630158819258213, 0.04728609323501587, 0.03487922623753548, -0.030148202553391457, -0.004293524194508791, -0.013191347010433674, -0.015110308304429054, 0.02309994399547577, -0.01686030440032482, -0.04274817183613777, 0.010047389194369316, 0.0026249936781823635, 0.007374119944870472, 0.015496513806283474, 0.022629255428910255, 0.016655132174491882, 0.03512060269713402, -0.012913761660456657, -0.05459986627101898, -0.0224482212215662, -0.025996489450335503, 0.009184460155665874, -0.007187051698565483, -0.0062758466228842735, -0.049289535731077194, -0.013131002895534039, 0.02430683746933937, 0.018344782292842865, 0.006408605258911848, -0.04636885225772858, 0.020517190918326378, 0.03668956458568573, -0.0018737023929134011, -0.03256199136376381, 0.012998244725167751, -0.007591360714286566, -0.03685853257775307, -0.02633441798388958, 0.01929822936654091, 0.038765422999858856, 0.024693043902516365, 0.011580144055187702, -0.009196529164910316, -0.0155327208340168, -0.009395666420459747, -0.039537835866212845, -0.011598248034715652, 0.04344816878437996, 0.017849957570433617, 0.04890333116054535, -0.012087039649486542, 0.044148169457912445, -0.011091352440416813, -0.007235327269881964, 0.01051807776093483, 0.005216797813773155, 0.014362034387886524, -0.0075068785808980465, -0.016558580100536346, 0.049241259694099426, -0.021217189729213715, 0.012213763780891895, 0.009456011466681957, 0.0022855547722429037, -0.0013132510939612985, -0.01502582523971796, 0.03422750160098076, 0.06855155527591705, 0.02155512012541294, 0.03345509245991707, -0.0005830804584547877, -0.014555136673152447, 0.018030989915132523, 0.013758587650954723, -0.05382745712995529, -0.0031379233114421368, 0.05889640748500824, -0.02268959954380989, 0.0029583980794996023, 0.020879259333014488, 0.0070603275671601295, 0.0012717641657218337, -0.02652752213180065, 0.024656835943460464, -0.01661892607808113, -0.023124082013964653, -0.006426708772778511, -0.0055396417155861855, -0.031137855723500252, -0.015544789843261242, -0.014953412115573883, -0.00106659228913486, 0.022822357714176178, 0.01486892905086279, -0.0037715425714850426, -0.01670340821146965, 0.006993948481976986, 0.022918909788131714, -0.006939638406038284, 0.0008531229104846716, -0.013275830075144768, -0.031137855723500252, -0.019732709974050522, -0.02915854938328266, 0.04417230561375618, 0.022230980917811394, 0.029955100268125534, -0.005464211106300354, 0.009570666588842869, 0.04113093391060829, 0.00047257429105229676, -0.04810677841305733, 0.003665939439088106, -0.02860337868332863, 0.05122056603431702, 0.016172373667359352, -0.009751700796186924, 0.0207465011626482, 0.024415457621216774, -0.0070784310810267925, -0.021772360429167747, 0.056241244077682495, -0.02973785810172558, -0.002905596513301134, -0.008967219851911068, -0.03077578730881214, 0.013649966567754745, -0.027637863531708717, -0.017536165192723274, -0.0460309237241745, -0.0005431021563708782, -0.0014263973571360111, 0.025393042713403702, -0.003780594328418374, -0.006565501447767019, -0.004483609925955534, 0.011097386479377747, 0.03263440355658531, -0.00520774582400918, 0.012189625762403011, 0.0563860684633255, 0.01978098601102829, 0.01751202717423439, -0.04178265854716301, -0.0033913711085915565, -0.0029991306364536285, 0.015991341322660446, 0.0023670201189816, -0.049530915915966034, -0.03842749446630478, -0.0026838297490030527, 0.010379285551607609, 0.021953394636511803, -0.04086541756987572, 0.0201430544257164, -0.0006649229326285422, -0.02293097972869873, -0.005678434390574694, 0.03533784672617912, -0.01670340821146965, 0.040551625192165375, -0.010795663110911846, -0.009142219088971615, 0.011332730762660503, 0.0063120536506175995, 0.029713721945881844, -0.01239479798823595, 0.011857729405164719, 0.0014754274161532521, -0.022846495732665062, -0.02046891674399376, -0.008303428068757057, -0.028048207983374596, 0.007325844373553991, -0.0055155036970973015, -0.04231369122862816, -0.015955133363604546, -0.017294785007834435, -0.02160339616239071, 0.004426282364875078, -0.006164208985865116, 0.05039987713098526, -0.002563140355050564, 0.02410166524350643, 0.01892409287393093, 0.009293081238865852, 0.004770247265696526, 0.03842749446630478, 0.01314307190477848, 0.003484905231744051, -0.01937064342200756, 0.0287964828312397, -0.011073249392211437, -0.002736631315201521, -0.0030262856744229794, 0.025006836280226707, -0.001618746086023748, 0.002926717046648264, 0.032899919897317886, 0.029713721945881844, 0.008086186833679676, -0.009039632976055145, 0.02491028420627117, -0.011743075214326382, -0.0020260727033019066, -0.02220684289932251, 0.010644801892340183, -0.004860763903707266, 0.02742062322795391, -0.012431004084646702, 0.018755126744508743, -0.0033461125567555428, -0.02163960225880146, 0.029375791549682617, 0.04622402414679527, 0.025899937376379967, 0.0322723351418972, 0.02722752094268799, 0.017258578911423683, -0.011332730762660503, 0.010668939910829067, -0.001700211432762444, 0.03526543080806732, 0.015677548944950104, 0.009691355749964714, 0.04197575896978378, -0.01053618174046278, 0.018537886440753937, -0.024330975487828255, 0.02754131332039833, 0.052475735545158386, 0.013625829480588436, 0.0026415884494781494, 0.029858548194169998, 0.02148270606994629, -0.015267204493284225, -0.019274091348052025, 0.012853417545557022, -0.05131711810827255, -0.03970680013298988, 0.011272386647760868, -0.01658271811902523, 0.01457927469164133, 0.05691710487008095, -0.03471026197075844, -0.01286548562347889, 0.02831372432410717, -0.020239606499671936, 0.03818611428141594, 0.004930160474032164, 0.013843069784343243, 0.023268908262252808, 0.005283176898956299, 0.010662904940545559, -0.017934439703822136, -0.022617187350988388, 0.01168876513838768, -0.004646540619432926, 0.023449942469596863, 0.03799301013350487, 0.023305116221308708, 0.01118186954408884, -0.0038047321140766144, -0.00038922319072298706, 0.01389134582132101, -0.033793020993471146, -0.01892409287393093, 0.011743075214326382, -0.01804305985569954, -0.03009992651641369, 0.007959463633596897, 0.006631880532950163, 0.010699111968278885, 0.010337043553590775, 0.01573789305984974, 0.03562749922275543, 0.015701686963438988, -0.0009315710049122572, 0.03956197202205658, -0.030244754627346992, 0.01747581921517849, -0.0018752110190689564, 0.0066922251135110855, 0.005240935366600752, -0.04311024025082588, -0.012044798582792282, -0.014241345226764679, 0.012636176310479641, -0.024330975487828255, 0.004845677874982357, 0.0037293012719601393, -0.014229276217520237, -0.015955133363604546, -0.016896510496735573, -0.009510321542620659, 0.009202564135193825, 0.03401026129722595, 0.006945672910660505, 0.013481001369655132, 0.0310654416680336, 0.02386028692126274, 0.009908596985042095, 0.04417230561375618, -0.01864650659263134, -0.0494343638420105, -0.026672348380088806, 0.0006675630575045943, -0.030317168682813644, -0.010192216373980045, 0.034396469593048096, 0.03244129940867424, -0.023474080488085747, -0.03265853971242905, -0.011507730931043625, -0.0033310262951999903, -0.016329269856214523, 0.014965481124818325, 0.005702572409063578, 0.03746197745203972, -0.028241310268640518, -5.633741693600314e-06, 0.0414930023252964, -0.01706547662615776, 0.03693094477057457, 0.0031530095729976892, 0.025417178869247437, 0.0014105569571256638, 0.030727511271834373, 0.018332714214920998, -0.006619811523705721, 0.00736205093562603, 0.05310332030057907, -0.06304812431335449, 0.008870667777955532, -0.008013773709535599, -0.013275830075144768, 0.005210763309150934, 0.015786169096827507, 0.01819995604455471, 0.026189591735601425, -0.030679235234856606, 0.023437874391674995, 0.014905136078596115, 0.013360312208533287, -0.004178869072347879, 0.027155106887221336, 0.01096462830901146, 0.015762031078338623, -0.007639636751264334, -0.031137855723500252, 0.015351686626672745, 0.021627534180879593, 0.03499991446733475, 0.003967662807554007, -0.00757325766608119, -0.0036629221867769957, -0.0028603379614651203, -0.014362034387886524, -0.0155327208340168, -0.012660314328968525, 0.014530999585986137, 0.016630994156003, 0.027565449476242065, 0.015496513806283474, -0.02956889383494854, -0.012087039649486542, -0.014977550134062767, 0.026310281828045845, -0.01086204219609499, -0.0032405094243586063, 0.014313758350908756, -0.0060917953960597515, -0.019310297444462776, -0.010361181572079659, 0.0645446702837944, 0.011755144223570824, -0.022436153143644333, 0.016763752326369286, 0.011803419329226017, 0.005053867120295763, -0.024451665580272675, 0.007862911559641361, -0.057737790048122406, 0.010548250749707222, -0.01302238181233406, 0.028893033042550087, 0.013879276812076569, 0.041444726288318634, 0.002495252527296543, 0.018598230555653572, -0.017198234796524048, 0.010324974544346333, 0.03886197507381439, 0.026189591735601425, 0.01880340278148651, -0.006173260975629091, 0.029979238286614418, -0.010644801892340183, -0.016980992630124092, -0.035941291600465775, -0.04105852171778679, -0.02669648639857769, -0.004272403661161661, -0.016268925741314888, -0.0026762865018099546, -0.002810553414747119, -0.018827540799975395, -0.02491028420627117, 0.017849957570433617, 0.01605168543756008, 0.01484479196369648, 0.02370339073240757, 0.028048207983374596, 0.02055339887738228, -0.005256021860986948, 0.008671530522406101, -0.013275830075144768, 0.02927923947572708, 0.01433789636939764, 0.047913677990436554, -0.039658524096012115, -0.0009202563669532537, 0.04207231104373932, 0.003659904934465885, 0.005385763011872768, 0.0037443875335156918, 0.01582237519323826, -0.0015599100152030587, 0.02698614075779915, 0.023039599880576134, 0.009087909013032913, -0.017258578911423683, -0.023763734847307205, 0.0002623107866384089, -0.0006249446305446327, 0.028120622038841248, -0.03149992227554321, 0.013312037102878094, 0.015218928456306458, -0.02232753299176693, -0.03178957849740982, -0.0155327208340168, -0.01568961702287197, -0.0003599937481340021, 0.026962002739310265, -0.021422361955046654, -0.01905685104429722, -0.021205121651291847, 0.05097918584942818, 0.013577553443610668, -0.03569991514086723, 0.00626981258392334, 0.013601691462099552, -0.002333830576390028, -0.001232540118508041, 0.0035301637835800648, -0.005841365084052086, 0.05339297279715538, -0.0015237032203003764, -0.005443090107291937, 0.0027064590249210596, 0.003509043250232935, 0.025296490639448166, 0.006788776721805334, 0.027251658961176872, -0.010409457609057426, 0.010795663110911846, 0.00371119799092412, 0.00791118759661913, -0.019998228177428246, -0.015255135484039783, -0.04692402482032776, 0.0009836183162406087, -0.008882736787199974, 0.0014724102802574635, -0.025055112317204475, -0.022786151617765427, 0.010107734240591526, 0.01247928012162447, -0.002311201300472021, 0.0008553858497180045, 0.008043945766985416, -0.024210285395383835, -0.0007641145493835211, -0.015580996870994568, -0.011393075808882713, 0.004697833210229874, -0.00727153429761529, -0.01573789305984974, 0.01832064613699913, 0.046779196709394455, -0.011344799771904945, 0.00022874405840411782, -0.00490602245554328, 0.009504287503659725, -0.035410258919000626, -0.006474984344094992, 0.01298617571592331, -0.008381876163184643, 0.03555508702993393, -0.02621372975409031, 0.004281455185264349, 0.008593082427978516, -0.020118916407227516, 0.0026068901643157005, 0.00396464578807354, -0.009902562014758587, 0.024294769391417503, -0.0005928864702582359, 0.017210302874445915, -0.022544773295521736, -0.009558597579598427, 0.014253413304686546, -0.0049512810073792934, -0.010270664468407631, 0.010801698081195354, 0.0172344408929348, -0.03466198593378067, -0.013915483839809895, 0.008762047626078129, 0.014627550728619099, -0.0057055894285440445, 0.014663757756352425, -0.004990505054593086, 0.016884442418813705, 0.03335854038596153, 0.0003569764958228916, 0.019563745707273483, -0.017849957570433617, 0.012207728810608387, -0.008031876757740974, -0.00812842883169651, 0.010005148127675056, 0.017898231744766235, 0.021905118599534035, -0.0025540885981172323, -0.030437856912612915, 0.021410292014479637, -0.013481001369655132, -0.0016142202075570822, -0.004166800063103437, 0.012467211112380028, -0.014434447512030602, -0.0057236929424107075, -0.007283602841198444, -0.04805850237607956, 0.01739133708178997, -0.010602560825645924, -0.001884262659586966, 0.016365477815270424, 0.001980814151465893, 0.014712032862007618, -0.03077578730881214, -0.02026374451816082, -0.010590491816401482, -0.0037775770761072636, -0.005388780031353235, 0.01073531899601221, 0.001385664800181985, -0.01601547934114933, -0.012877554632723331, -0.019756847992539406, 0.023063737899065018, -0.007712050341069698, 0.019237885251641273, -0.014555136673152447, 0.004254300147294998, -0.010644801892340183, -0.00620946753770113, -0.03512060269713402, 0.006849121302366257, 0.028699930757284164, -0.019406849518418312, -0.03292405977845192, 0.03910335525870323, 0.008285325020551682, -0.0016579701332375407, 0.0021739171352237463, -0.027493037283420563, -0.011664627119898796, 0.02155512012541294, -0.0007543085375800729, -0.0067223976366221905, -0.056724000722169876, 0.029713721945881844, -0.005476279649883509, -0.01606375351548195, -0.030968889594078064, 0.026913728564977646, -0.02272580750286579, 0.019237885251641273, 0.029472341760993004, -0.008671530522406101, -0.021820636466145515, -0.022991323843598366, 0.0024454682134091854, 0.006191364489495754, -0.04113093391060829, 0.04311024025082588, 0.012231866829097271, -0.018067197874188423, 0.008852564729750156, -0.02098787948489189, -0.011562041006982327, -0.020927535369992256, -0.010077562183141708, 0.021543052047491074, 0.012153418734669685, -0.0033099057618528605, -0.009202564135193825, 0.00823101494461298, 0.015412031672894955, 0.006903431378304958, 0.01921374723315239, -0.025634421035647392, 0.0017680991441011429, -0.025899937376379967, -0.051268842071294785, 0.02050512284040451, -0.0021920206490904093, -0.011260317638516426, -0.02370339073240757, -0.017487889155745506, -0.031693026423454285, -0.008176703937351704, -0.014929274097084999, 0.004109472967684269, 0.0023956838995218277, 0.03434819355607033, 0.021168913692235947, 0.019274091348052025, -0.017934439703822136, -0.012949968688189983, -0.013239623047411442, -0.0287964828312397, -0.05793089419603348, 0.013963758945465088, -0.03871714696288109, -0.011236179620027542, 0.01654651202261448, -0.025706835091114044, -0.025127524510025978, -0.06290329247713089, 0.032779231667518616, -0.010856008157134056, 0.005443090107291937, 0.01823616214096546, 0.003934473264962435, -0.04692402482032776, 0.005651279352605343, 0.003490939736366272, 0.016775822266936302, 0.0161361675709486, 0.014494792558252811, 0.016884442418813705, 0.0038982664700597525, -0.014386172406375408, -0.046899884939193726, 0.03536198288202286, -0.02334132231771946, 0.0345412939786911, 0.025393042713403702, -0.004314644727855921, -0.019962020218372345, -0.007247396279126406, 0.014108586125075817, 0.02483787015080452, -0.03372060880064964, 0.013794793747365475, 0.02597235143184662, 0.003973697312176228, 0.004432316869497299, -0.021289603784680367, 0.011006870307028294, -0.02855510264635086, -0.016353407874703407, 0.012672383338212967, -0.01017411332577467, -0.006517225410789251, -0.007174982689321041, -0.007669808808714151, -0.0061400714330375195, 0.004912056960165501, -0.016932718455791473, -0.024113735184073448, -0.0036086118780076504, -0.012624107301235199, -0.037920597940683365, -0.01686030440032482, -0.013770656660199165, -0.013746518641710281, -0.0012393288780003786, 0.025875799357891083, 0.02621372975409031, -0.0247895959764719, -0.007253430783748627, 0.002685338258743286, -0.04117920994758606, 0.08660668879747391, -0.016172373667359352, 0.01316720899194479, -0.004127576015889645, -0.01630513370037079, -0.017005130648612976, 0.014651688747107983, -0.006746535189449787, -0.017017200589179993, -0.03591715544462204, -0.003427577903494239, -0.001224242732860148, -0.013420657254755497, -0.01852581650018692, -0.00554265920072794, -0.019358573481440544, -0.006010330282151699, -0.016980992630124092, 0.0012174539733678102, 0.019805124029517174, 0.0190447811037302, 0.011338765732944012, 0.016980992630124092, 0.0276620015501976, -0.005038781091570854, 0.04284472391009331, 0.014687895774841309, 0.04521023482084274, 0.0005004837294109166, -0.02318442612886429, 0.009395666420459747, -0.0035392155405133963, 0.03555508702993393, 0.0019913744181394577, -0.005877572111785412, -0.038765422999858856, 0.02628614380955696, 0.03398612514138222, 0.008798254653811455, 0.024258561432361603, 0.010892215184867382, -0.008665496483445168, 0.018224094063043594, -0.011393075808882713, -0.02002236433327198, 0.041082657873630524, -0.04388265311717987, -0.02884475700557232, -0.0029071050230413675, 0.0008244591881521046, 0.04214472696185112, -0.01993788219988346, -0.0037474047858268023, -0.004788350313901901, -0.01559306588023901, 0.015206859447062016, 0.013577553443610668, -0.027903379872441292, -0.0003952576662413776, -0.009510321542620659, 0.04842057079076767, -0.018296508118510246, 0.002789432881399989, 0.052524011582136154, 0.020372364670038223], [0.004228443372994661, -0.01168132945895195, 0.021954147145152092, -0.011279729194939137, -0.019951965659856796, 0.0001378682063659653, -0.0036289531271904707, -0.016646038740873337, 0.036760974675416946, -0.009062197059392929, -0.02723897434771061, -0.010051647201180458, 0.03433973342180252, 0.05252232775092125, -0.0027660944033414125, -0.03478207439184189, 0.01960274949669838, 0.0013823197223246098, 0.02733209915459156, 0.03748269006609917, 0.0062568155117332935, 0.03569003939628601, -0.0026511435862630606, -0.011448517441749573, -0.019975246861577034, -0.018811188638210297, -0.009166962467133999, 0.03138302266597748, 0.0005994902458041906, -0.013165503740310669, 0.051125459372997284, -0.017239710316061974, 0.042860642075538635, 0.01004000660032034, 0.037389565259218216, -0.03117349185049534, -0.03331536054611206, 0.026028351858258247, 0.015144404023885727, -0.03587628901004791, -0.026656944304704666, 0.013607846572995186, 0.0030061816796660423, -0.016611117869615555, -0.027983970940113068, 0.0647682249546051, 0.020138215273618698, -0.037296440452337265, -0.010767542757093906, 0.03510801121592522, -0.014993076212704182, -0.007188062649220228, 0.02670350670814514, 0.029171310365200043, 0.04847140610218048, 0.04609672352671623, 0.016494711861014366, -0.02129063382744789, 0.0429304838180542, -0.023257892578840256, 0.009562741965055466, 0.004871585872024298, 0.00545070506632328, 0.029753340408205986, 0.009137860499322414, 0.029031625017523766, -0.00414113886654377, 0.012443787418305874, -0.052149828523397446, 0.055362630635499954, 0.0238399226218462, 0.022291723638772964, -0.042977046221494675, -0.015156044624745846, -0.012758083641529083, 0.03054490126669407, -0.01536557450890541, 0.012455428019165993, -0.012571834027767181, 0.028938500210642815, 0.03827425092458725, 0.04334954544901848, -0.0013939603231847286, 0.049356088042259216, -0.0014172415249049664, -0.02101125940680504, -0.008515089750289917, -0.03496832400560379, -0.011943242512643337, -0.033478327095508575, 0.007973802275955677, -0.004309927579015493, 0.006268456112593412, 0.050613272935152054, 0.014387765899300575, -0.017356114462018013, -0.022652583196759224, -0.0697038322687149, -0.07007633149623871, 0.043396107852458954, 0.030870836228132248, -0.010459067299962044, 0.026470694690942764, 0.044001419097185135, -0.009522000327706337, -0.09889842569828033, -0.07221820205450058, 0.04828515648841858, -0.017565645277500153, -0.011943242512643337, -0.0073044681921601295, 0.020766807720065117, 0.005415783263742924, 0.07701412588357925, 0.009888678789138794, 0.02017313800752163, 0.01295597292482853, -0.01861329935491085, 0.016494711861014366, 0.012467068620026112, -0.008846846409142017, 0.013188784942030907, 0.02207055315375328, -0.04449032247066498, -0.0025245524011552334, 0.004560200031846762, -0.052568890154361725, 0.005177150946110487, -0.03778534382581711, -0.021744616329669952, -0.009836295619606972, -0.036062538623809814, 0.030172402039170265, 0.009388133883476257, -0.008439425379037857, -0.031406305730342865, 0.06695665419101715, 0.014189875684678555, -0.03857690468430519, -0.057504501193761826, 0.004286646377295256, -0.018077831715345383, 0.011745352298021317, 0.02074352651834488, 0.0037249878514558077, -0.03839065507054329, 0.004272095393389463, 0.06425604224205017, -0.04272095486521721, 0.015447058714926243, -0.03683081641793251, 0.03664456680417061, -0.017810098826885223, -0.017449239268898964, -0.02302508056163788, -0.032244425266981125, 0.025446323677897453, 0.018380487337708473, -0.005322658456861973, 0.03671441227197647, -0.030498338863253593, -0.04509563371539116, 0.012071289122104645, -0.027076005935668945, 0.010098209604620934, 0.017425958067178726, 0.010662777349352837, -0.02446851320564747, -0.02754162810742855, -0.009044735692441463, -0.026796631515026093, -0.04516547918319702, -0.045747507363557816, 0.0016005807556211948, -0.011890859343111515, -0.03964783996343613, -0.02041758969426155, -0.0019410678651183844, 0.010528910905122757, -0.030684586614370346, 0.024258984252810478, 0.023490704596042633, -0.06942445784807205, -0.04344267025589943, -0.033175673335790634, 0.005552560091018677, -0.0383673757314682, -0.001682064845226705, 0.02567913569509983, -0.023397579789161682, -0.0018537634750828147, -0.010592934675514698, 0.042138926684856415, 0.0251669492572546, 0.0080727469176054, -0.00773516995832324, -0.0004186973674222827, -0.017356114462018013, -0.006274276413023472, -0.00302946288138628, 0.03410692140460014, -0.05745793879032135, 0.06127604842185974, -0.024305546656250954, -0.04367548227310181, -0.044420480728149414, 0.05107889696955681, -0.014736982993781567, 0.018077831715345383, -0.004903597291558981, 0.001955618616193533, -0.024096015840768814, -0.07138007879257202, 0.029543809592723846, -0.010051647201180458, 0.017193147912621498, -0.0021185867954045534, 0.019742434844374657, 0.00018588562670629472, 0.05592137947678566, 0.025213511660695076, 0.006332479417324066, 0.0024285174440592527, 0.014725342392921448, 0.009946881793439388, 0.013712611980736256, -0.01722806878387928, -0.03566676005721092, -0.029753340408205986, -0.07715380936861038, -0.034386295825242996, 0.03748269006609917, -0.005476896185427904, -0.024282265454530716, 0.0006747902953065932, 0.021779539063572884, -0.014457609504461288, -0.06644447147846222, -0.025632573291659355, -0.026982881128787994, -0.020161496475338936, 0.03971768170595169, 0.006169511005282402, 0.02495741844177246, 0.0005372858722694218, 0.007158961147069931, -0.004068385343998671, -0.01181519590318203, 0.035433948040008545, -0.0003779553226195276, 0.03527097776532173, -0.007909778505563736, 0.0001172243501059711, 0.011861758306622505, 8.825929398881271e-05, 0.019649310037493706, 0.06369729340076447, 0.005619493313133717, 0.049775149673223495, -0.01897415705025196, 0.0012775544309988618, 0.026074914261698723, 0.015097841620445251, 0.052662014961242676, -0.06127604842185974, -0.014550733380019665, 0.08139098435640335, -0.03177880123257637, -0.003500906517729163, -0.02714584954082966, -0.05522294342517853, 0.0191836878657341, -0.004277915693819523, -0.03536410257220268, -0.034386295825242996, 0.044210948050022125, 0.012129492126405239, -0.00871879979968071, -0.05159108340740204, -0.007310288492590189, -0.04528188332915306, -0.025539448484778404, 0.05168420821428299, -0.02991630882024765, -0.0040800259448587894, 0.026866475120186806, 0.059180743992328644, -0.019206969067454338, -0.00026191319921053946, 0.015598386526107788, 0.024375388398766518, -0.017879942432045937, -0.001997815677896142, -0.023711875081062317, 0.014329562894999981, 0.03650487959384918, -0.010482348501682281, -0.047493595629930496, 0.008229895494878292, 0.004021822940558195, 0.01762384921312332, -0.015307372435927391, 0.011041096411645412, 0.025609292089939117, 0.008346300572156906, 0.023956328630447388, -0.0013975979527458549, 0.01939321868121624, -0.003166239708662033, -0.05149795860052109, -0.050799522548913956, 0.005863945931196213, -0.03385082632303238, -0.03620222583413124, -0.0047202580608427525, 0.0046649654395878315, -0.010610395111143589, 0.0020967607852071524, 0.029427403584122658, 0.02858928218483925, -0.004426333121955395, 0.012094570323824883, 0.0036114922259002924, -0.007991262711584568, 0.04248814284801483, 0.00962094496935606, -0.017391037195920944, 0.0035503790713846684, 0.010872308164834976, -0.020336106419563293, -0.05396576225757599, -0.05056671053171158, 0.014841748401522636, 0.005965800955891609, -0.008637315593659878, 0.00891669001430273, -0.015330652706325054, 0.07165945321321487, -0.047307346016168594, -0.019253531470894814, -0.028496157377958298, 0.014678779989480972, -0.02588866651058197, 0.02243141084909439, -0.01608729176223278, -0.02507382445037365, -0.004190611187368631, 0.01992868445813656, 0.003052743850275874, 0.020254621282219887, 0.03557363525032997, -0.0130607383325696, -0.02074352651834488, 0.0027151668909937143, -0.03711019083857536, -0.016320103779435158, 0.05778387561440468, -0.011058557778596878, -0.05675950273871422, 0.03634191304445267, -0.008061106316745281, -0.016320103779435158, -0.04085845872759819, 0.04144049063324928, -0.03829753026366234, 0.005645684897899628, -0.03433973342180252, -0.009102938696742058, -0.040905021131038666, -0.04376860707998276, 0.024305546656250954, 0.012944333255290985, 0.032733332365751266, -0.04258126765489578, 0.01569151133298874, -0.013281909748911858, -0.01563330926001072, -0.008637315593659878, -0.04639938101172447, 0.016436509788036346, 0.0036958863493055105, 0.027611471712589264, 0.06309197843074799, -0.0014463429106399417, 0.02423570305109024, 0.030917398631572723, -0.007723529357463121, -0.004728988278657198, -0.017088381573557854, -0.0013037457829341292, 0.002354308729991317, -0.00969660934060812, -0.01013313140720129, -0.003957799635827541, -0.0013983255485072732, 0.01954454556107521, 0.01393378246575594, 0.045561257749795914, -0.007915599271655083, -0.04151033237576485, -0.0014325197553262115, -0.0062160734087228775, 0.005011272616684437, -0.019777357578277588, -0.00827063713222742, 0.013840657658874989, -0.0024023260921239853, -0.03366457670927048, 0.05955324321985245, -0.007892318069934845, 0.019102202728390694, -0.03352488949894905, 0.0322909876704216, 0.0023164767771959305, 0.01876462623476982, 0.009329930879175663, -0.029869746416807175, 0.025609292089939117, -0.01963767036795616, 0.01762384921312332, 0.010761722922325134, -0.019532905891537666, -0.04325642064213753, 0.03869331255555153, 0.008381222374737263, 0.03177880123257637, 0.03517785295844078, 0.007019273936748505, -0.007997083477675915, -0.030870836228132248, 0.0174725204706192, 0.027169130742549896, -0.0002386320411460474, -0.008113489486277103, -0.022664222866296768, -0.03410692140460014, 0.017030179500579834, -0.006803923286497593, 0.01181519590318203, 0.022920316085219383, 0.007228804752230644, -0.009015634655952454, 0.02579554170370102, 0.022827191278338432, 0.006419783923774958, -0.05154452100396156, -0.01356128416955471, 0.024165859445929527, -0.01238558441400528, -0.04237173870205879, -0.06062417849898338, 0.07952848821878433, -0.04435063526034355, -0.03839065507054329, -0.02113930694758892, -0.0038006517570465803, -0.0003779553226195276, -0.016308462247252464, 0.028752250596880913, -0.08865471184253693, 0.028240064159035683, 0.0036871558986604214, 0.012595115229487419, -0.003925788216292858, 0.0014056009240448475, 0.017786817625164986, 0.0062160734087228775, -0.05722512677311897, -0.008544190786778927, -0.01996360719203949, -0.011419415473937988, 0.016529632732272148, 0.036784254014492035, 0.008573292754590511, 0.021116025745868683, -0.004755179863423109, -0.012187694199383259, 0.010819925926625729, -0.007636225316673517, -0.023979609832167625, 0.00079956284025684, 0.03964783996343613, -0.010191334411501884, 0.007706068456172943, 0.03724987804889679, 0.03992721438407898, 0.04721422120928764, 0.01656455546617508, -0.018415408208966255, -0.017565645277500153, -0.011425236240029335, -0.01470206119120121, 0.06528041511774063, -0.009684968739748001, -0.01726299151778221, -0.043582357466220856, 0.01148343924432993, -0.015505261719226837, 0.02889193780720234, -0.0332455150783062, 0.02898506261408329, -0.052475765347480774, 0.005698067136108875, 0.004525278229266405, 0.008625674992799759, -0.030358651652932167, 0.030265526846051216, -0.008189152926206589, -0.04700469225645065, -0.015447058714926243, -0.059879180043935776, 0.026750069111585617, -0.006844665389508009, -0.01168132945895195, -0.010348482057452202, -0.0324772372841835, -0.013607846572995186, 0.0036318630445748568, 0.0018828649772331119, 0.011227346025407314, 0.006157870404422283, 0.007642045617103577, -0.018985796719789505, -0.015831198543310165, -0.03692394122481346, 0.01671588234603405, 0.01228081900626421, -0.06309197843074799, -0.006239354610443115, -0.0037657299544662237, 0.012571834027767181, -0.024421950802206993, -0.035550352185964584, -0.007490717805922031, 0.006769001483917236, 0.00420807208865881, 0.002511456608772278, 0.004167329985648394, -0.0035067268181592226, -0.016192056238651276, -0.004798831883817911, -0.05615419149398804, -0.009481257759034634, 0.02207055315375328, 0.01656455546617508, 0.03943830728530884, 0.032034896314144135, -0.015493621118366718, -0.00390832731500268, 0.021965788677334785, -0.02784428372979164, 0.022629301995038986, 0.012979254126548767, 0.0025449234526604414, -0.027052724733948708, -0.021034540608525276, 0.023176409304142, -0.003125497605651617, -0.006745720282196999, -0.006443065125495195, 0.002374679781496525, 0.009615125134587288, 0.0008628584910184145, -0.03312911093235016, 0.0022713695652782917, 0.024538356810808182, -0.027355380356311798, -0.024258984252810478, 0.02414257824420929, -0.022349927574396133, -0.05871511995792389, 0.02847287617623806, -0.008637315593659878, 0.031825363636016846, 0.027890846133232117, -0.0174725204706192, 0.001009093364700675, -0.007484897505491972, -0.015738073736429214, 0.012304100207984447, 0.023316096514463425, 0.012851208448410034, 0.011105120182037354, -0.024119297042489052, -0.030568182468414307, -0.01563330926001072, 0.03392067179083824, -0.041324082762002945, -0.043885014951229095, 0.009650046937167645, 0.015458699315786362, -0.025539448484778404, 0.00023845015675760806, 0.0006442337180487812, 0.020766807720065117, 0.02973005920648575, -0.003186610760167241, 0.002569659613072872, -0.06351104378700256, 0.01103527657687664, 0.014760264195501804, -0.018205877393484116, -0.021325554698705673, 0.013491440564393997, -0.005581661593168974, 0.005773731041699648, -0.031615834683179855, -0.011739532463252544, 0.010523091070353985, -0.0020938506349921227, 0.01749580167233944, -0.006012363359332085, -0.00074026855872944, -0.029636934399604797, -0.03385082632303238, -0.01924188993871212, -0.04304689168930054, -0.045957036316394806, -0.019474701955914497, 0.03452598303556442, -0.022443052381277084, 0.024678044021129608, 0.01711166277527809, -0.0007493628072552383, 0.0031633295584470034, 0.01083738636225462, -0.011704610660672188, -0.01413167268037796, 0.02315312810242176, 0.01618041656911373, -0.017425958067178726, 0.006885407026857138, 0.002553653670474887, 0.024678044021129608, -0.024096015840768814, -0.0031225874554365873, 0.01675080507993698, -0.0014456154312938452, -0.010691879317164421, -0.0008897773805074394, -0.01638994738459587, 0.037203315645456314, 0.022349927574396133, -0.02570241689682007, 0.03271004930138588, 0.03406035900115967, 0.011448517441749573, 0.024282265454530716, 0.00030556542333215475, -0.005066565703600645, -0.01228081900626421, 0.012234256602823734, -0.020103294402360916, -0.053174201399087906, 0.013409956358373165, -0.026843193918466568, -0.02248961478471756, 0.03643503785133362, 0.03454926237463951, 0.030451776459813118, -0.026144757866859436, 0.014178235083818436, -0.012548552826046944, -0.02931099757552147, 0.02712256833910942, 0.01713494397699833, -0.011786093935370445, -0.000650781556032598, -0.007519819308072329, -0.007723529357463121, 0.027727877721190453, 0.01181519590318203, 0.04954233765602112, -0.0288686566054821, 0.004659145139157772, -0.042232051491737366, -0.03226770833134651, 0.05135827139019966, 0.00424008397385478, 0.02817022055387497, -0.03196505084633827, 0.008712979033589363, -0.00605892576277256, 0.030079277232289314, 0.02495741844177246, -0.007176422048360109, -0.012036367319524288, -0.03731972351670265, -0.0006638772320002317, 0.006821384187787771, 0.00013850479444954544, 0.027821002528071404, 0.014166594482958317, 0.012036367319524288, 0.021814459934830666, 0.05601450428366661, 0.011180783621966839, 0.013270269148051739, -0.025213511660695076, 0.01382901705801487, -0.03592285141348839, 0.0010782093740999699, -0.03138302266597748, -0.06146229803562164, -0.0226991456001997, 0.013142222538590431, 6.93433394189924e-05, 0.025213511660695076, -0.01521424762904644, 0.006227714009582996, -0.017751894891262054, 0.010767542757093906, -0.009603484533727169, 0.011902499943971634, 0.00795052107423544, 0.015447058714926243, -0.011372854001820087, -0.014364484697580338, 0.041300803422927856, 0.011588204652071, -0.03857690468430519, 0.01304909773170948, 0.025423042476177216, 0.0016776996199041605, -0.005092756822705269, -0.0016107662813737988, -0.04528188332915306, 0.0025434682611376047, -0.011436876840889454, 0.04029971361160278, 0.05582825466990471, -0.0011094934307038784, -0.01366604957729578, 0.009661687538027763, -0.007944700308144093, 0.018648220226168633, -0.014736982993781567, 0.0125834746286273, 0.011052737012505531, 0.011978164315223694, 0.021127665415406227, -0.055362630635499954, 0.004862855188548565, -0.04726078361272812, 0.021732976660132408, 0.026540538296103477, -0.005933789070695639, 0.029939590021967888, 8.425784471910447e-05, -0.001081847003661096, -0.01304909773170948, 0.007566381711512804, 0.0026409581769257784, -0.016378305852413177, 0.05340701341629028, -0.03257036209106445, 0.014457609504461288, 0.010523091070353985, 0.012606755830347538, 0.032733332365751266, 0.028240064159035683, 0.014934873208403587, 0.014469250105321407, 0.008515089750289917, 0.000413240835769102, -0.006122948601841927, -0.032733332365751266, -0.008544190786778927, -0.0358995720744133, -0.020696964114904404, -0.017414318397641182, -0.011867578141391277, 0.0033990514930337667, -0.007781732361763716, 0.019951965659856796, 0.01924188993871212, -0.028728969395160675, -0.03857690468430519, -0.028007252141833305, 0.01393378246575594, 0.021954147145152092, -0.010790823958814144, 0.012548552826046944, -0.0002437247894704342, -0.014178235083818436, 0.03433973342180252, 0.006803923286497593, 0.011233166791498661, 0.025748979300260544, 0.02940412238240242, -0.018380487337708473, -0.011541642248630524, 0.0191836878657341, -0.0249806996434927, -0.044117823243141174, -0.003829753026366234, 0.029473965987563133, -0.04912327602505684, -0.02619132027029991, 0.03364129737019539, 0.0024416132364422083, 0.022140396758913994, -0.021791178733110428, 0.07268382608890533, 0.04158017784357071, 0.0078050135634839535, -0.036248788237571716, 0.0011298644822090864, 0.019684232771396637, -0.006745720282196999, -0.02381664142012596, -0.008165871724486351, -0.0009996354347094893, 0.00639650272205472, 0.004173150286078453, -0.02691303752362728, -0.0286824069917202, 0.010971253737807274, -0.028659125789999962, -0.04642266035079956, 0.012758083641529083, -0.020755166187882423, 0.03536410257220268, -0.011890859343111515, 0.024701325222849846, 0.016797367483377457, -0.02095305733382702, 0.007351030595600605, -0.013165503740310669, -0.019882122054696083, -0.010307739488780499, 0.015167685225605965, 0.06956414878368378, 0.004129498265683651, -0.03135974332690239, 0.036178942769765854, -0.034409575164318085, -0.036877378821372986, 0.024817731231451035, 0.010994534008204937, 0.06262636184692383, 0.022058911621570587, -0.01650635153055191, 0.0019206968136131763, 0.008194973692297935, 0.04930952563881874, 0.030358651652932167, -0.034409575164318085, -0.06574603915214539, 0.03403707593679428, -0.0130607383325696, -0.020242981612682343, -0.004263365175575018, 0.013619487173855305, 0.011221526190638542, 0.012839567847549915, 0.008515089750289917, -0.024817731231451035, -0.013188784942030907, 0.00804364588111639, -0.011594024486839771, -0.02591194584965706, -0.02435210719704628, 0.03187192603945732, 0.02423570305109024, -0.014841748401522636, 0.03298942372202873, -0.0007220801780931652, -0.00044343361514620483, 0.016855569556355476, 0.05568856745958328, 0.014294641092419624, -0.009906139224767685, 0.01480682659894228, -0.024515075609087944, -0.032966144382953644, 0.029054904356598854, 0.05396576225757599, -0.025213511660695076, -0.008637315593659878, -0.014748623594641685, 0.03382754698395729, 0.05047358572483063, 0.010313560254871845, -0.04043940082192421, -0.006105487700551748, 0.005668966099619865, 0.014865029603242874, 0.014876670204102993, 0.0010520180221647024, -0.011343752034008503, -0.022931955754756927, 0.02072024531662464, -0.017751894891262054, 0.04747031256556511, -0.01444596890360117, -0.018985796719789505, -0.009178603067994118, -0.01336339395493269, -0.0240261722356081, -0.048843901604413986, -0.025120386853814125, -0.03361801430583, 0.03105708584189415, -0.013747532851994038, 0.0025973059237003326, 0.013863938860595226, 0.012187694199383259, -0.028007252141833305, 0.007525639608502388, 0.014213156886398792, 0.01848525181412697, -0.008864306844770908, 0.027611471712589264, 0.0324772372841835, -0.017635488882660866, -0.006716618780046701, 0.011756992898881435, 0.021989068016409874, 0.050194211304187775, 0.036248788237571716, -0.0006049467483535409, 0.016366666182875633, 0.008049465715885162, -0.004621312953531742, 0.017984706908464432, 0.008107668720185757, -0.004283735994249582, 0.022827191278338432, -0.001714076497592032, -0.029776621609926224, 0.04542157053947449, 0.003544558770954609, 0.022023990750312805, -0.02228008396923542, -0.0054827164858579636, -0.017635488882660866, 0.01574971340596676, 0.01037176325917244, -0.014003626070916653, 0.034200046211481094, 0.019521264359354973, -0.01930009387433529, 0.012234256602823734, -0.03198833391070366, 0.030987242236733437, 0.008398683741688728, 0.017961425706744194, -0.004059654660522938, -0.013328472152352333, -0.003157509258016944, -0.027797721326351166, 0.04819203168153763, -0.0023339376784861088, 0.04139392822980881, -0.028519438579678535, 0.018124394118785858, 0.021721335127949715, -0.006262635812163353, 0.018741345033049583, 0.024002891033887863, 0.00662931427359581, 0.02526007406413555, -0.024538356810808182, 0.05424513667821884, 0.006670056376606226, -0.00390832731500268, -0.01470206119120121, -0.0014157864497974515, 0.019369937479496002, -0.017297912389039993, 0.002582755172625184, 0.051311708986759186, 0.0453982912003994, 0.0074383351020514965, 0.02486429363489151, -0.0031429585069417953, 0.010587113909423351, 0.010755902156233788, 0.01696033589541912, 0.030079277232289314, 0.02570241689682007, 0.009230985306203365, 0.04483954235911369, -0.01335175335407257, 0.029683496803045273, 0.024910856038331985, -0.05159108340740204, 0.011617305688560009, 0.024887574836611748, 0.006326659116894007, 0.034828636795282364, -0.03403707593679428, 0.04353579506278038, -0.0034747151657938957, 0.040066901594400406, -0.006093847099691629, 0.008410324342548847, 0.0076129441149532795, 0.0005692974664270878, 0.026377569884061813, -0.013293550349771976, -0.0017737344605848193, 0.03550378978252411, 0.0017271720571443439, -0.00228883046656847, 0.040276430547237396, -0.011524180881679058, -0.017751894891262054, -0.023141486570239067, 0.010977073572576046, -0.03340848535299301, -0.0009829020127654076, 0.045328445732593536, -0.04386173188686371, 0.039368465542793274, 0.0383673757314682, -0.05582825466990471, -0.014690420590341091, -0.033478327095508575, -0.006943610031157732, 0.04598031938076019, 0.0011851572198793292, 0.0419759564101696, 0.03291958197951317, -0.014294641092419624, 0.012862849049270153, -0.0001770642411429435, 0.01827572099864483, -0.006483806762844324, 0.00995270162820816, -0.011890859343111515, -0.004571840632706881, -0.0023077463265508413, 0.043396107852458954, 0.004918147809803486, -0.023956328630447388, -0.0053604901768267155, -0.016576195135712624, 0.006443065125495195, -0.015540183521807194, 0.007234625052660704, -0.041533615440130234, 0.011401955038309097, -0.009440516121685505, -0.008910869248211384, 0.018776267766952515, 0.0054012322798371315, 0.005802832543849945, 0.018531814217567444, -0.022047271952033043, 0.06942445784807205, -0.05810980871319771, -0.027471786364912987, -0.03189520910382271, 0.0022757346741855145, -0.0050345538184046745, -0.002466349396854639, 0.022745708003640175, -0.004359399899840355, 0.007339389994740486, -0.024794450029730797, 0.006122948601841927, 0.01489995140582323, 0.030614744871854782, 0.0016864300705492496, -0.03850706294178963, -0.019497983157634735, 0.014888310804963112, 0.03813456371426582, 0.006373221520334482, -0.016226978972554207, -0.0017853750614449382, 0.017484162002801895, 0.02456163801252842, 0.0007515454199165106, -0.016995256766676903, -0.035643476992845535, -0.03538738563656807, 0.03794831410050392, -0.008096028119325638, -0.01356128416955471, 0.038320813328027725, -0.013863938860595226, -0.01073262095451355, -0.01641322858631611, -0.023234611377120018, -0.023863203823566437, -0.013375034555792809, -0.022291723638772964, -0.010918870568275452, 0.0058872271329164505, 0.014108391478657722, 0.01665768027305603, 0.008561652153730392, 0.0027646394446492195, 0.011716251261532307, 0.023735156282782555, 0.028635844588279724, 0.0009661687072366476, 0.0332455150783062, 0.025050543248653412, -0.009737350977957249, -0.013887220062315464, 0.026144757866859436, -0.048331718891859055, -0.026959599927067757, 0.04497922956943512, 0.007909778505563736, 0.018089471384882927, 0.00529064703732729, 0.0166227575391531, 0.009038915857672691, -0.04944921284914017, -0.004103307146579027, -0.00447289552539587, -0.009359031915664673, -0.0030061816796660423, 0.02315312810242176, -0.0036638746969401836, -0.024817731231451035, 0.013596205972135067, -0.017775176092982292, 0.038437217473983765, 0.0014005081029608846, -0.002959619276225567, -0.0020516535732895136, 0.04479297995567322, -0.008101848885416985, -0.01381737645715475, -0.004266275092959404, -0.05992574244737625, -0.042441580444574356, 0.014713701792061329, -0.0005827568820677698, -0.010424145497381687, 0.0030614743009209633, -0.03236083313822746, -3.524005762756133e-07, 0.0019745344761759043, 0.04320985823869705, 0.024910856038331985, 0.004851214587688446, -0.017670411616563797, -0.021127665415406227, -0.002092395443469286, -0.006262635812163353, 0.05415201187133789, 0.019102202728390694, -0.01279300544410944, 0.028403032571077347, -0.026051633059978485, -0.015435418114066124, 0.038344092667102814, 0.0030905758030712605, -0.007461616303771734, 0.020906494930386543, 0.0009879948338493705, 0.0358995720744133, 0.006111308000981808, 0.021022900938987732, -0.008485987782478333, 0.00797962211072445, -0.0020341926719993353, -0.023956328630447388, 0.016494711861014366, -0.021849382668733597, -0.004868675488978624, 0.0209879782050848, 0.029939590021967888, 0.0005540191777981818, 0.011809375137090683, -0.027611471712589264, -8.544009324396029e-05, 0.012269178405404091, -0.011914140544831753, 0.04325642064213753, -0.01133793219923973, 0.03797159343957901, -0.02474788762629032, -0.03310582786798477, 0.020452510565519333, 0.005799922626465559, -0.032453957945108414, -0.03692394122481346, 0.02351398579776287, 0.026261163875460625, -0.016809007152915, -0.013945423066616058, 0.006303377915173769, 0.02528335526585579, -0.024282265454530716, 0.04360564053058624, 0.004609672352671623, -0.020522354170680046, 0.004932698793709278, -0.044420480728149414, -0.015703152865171432, 0.043908294290304184, -0.02191922627389431, 0.004880316089838743, 0.001861038850620389, -0.014399406500160694, -0.025446323677897453, -0.004010182339698076, -0.005831934046000242, 0.002006546128541231, -0.019265171140432358, 0.024119297042489052, -0.012187694199383259, -0.021535085514187813, 0.04106799140572548, -0.0391356535255909, 0.003838483477011323, -0.01783338002860546, 0.01971915364265442, 0.026750069111585617, -0.013340112753212452, 0.006035644561052322, 0.007036734838038683, -0.02435210719704628, 0.05517638102173805, 0.019428139552474022, -0.006303377915173769, -0.0030585641507059336, 0.009853756986558437, 0.013538002967834473, -0.017216429114341736, -0.02351398579776287, -0.002405236242339015, 0.03480535373091698, 0.0010891223791986704, -0.051963578909635544, 0.012164413928985596, 0.03184864670038223, -0.0043535795994102955, 0.03541066497564316, 0.005590391810983419, -0.005660235416144133, -0.018240800127387047, 0.012513631023466587, 0.005596212111413479, 0.011780274100601673, -0.01093051116913557, -0.015086201019585133, 0.043908294290304184, 0.03371113911271095, 0.008672237396240234, -0.02368859387934208, -0.013619487173855305, 0.03995049372315407, 0.020557276904582977, 0.0033699499908834696, -0.007496538106352091, -0.013759173452854156, 0.006146229803562164, -0.0187064241617918, -0.01536557450890541, -0.02152344584465027, -0.004728988278657198, -0.01764713041484356, 0.020731884986162186, 0.012059648521244526, 0.03650487959384918, -0.018857751041650772, 0.027378661558032036, -0.018752986565232277, 0.0063499403186142445, -0.015086201019585133, 0.03452598303556442, -0.026377569884061813, -0.0011058558011427522, 0.008730440400540829, 0.004891956690698862, 0.011495079845190048, -0.000704983074683696, -0.0036871558986604214, -0.022419771179556847, 0.030614744871854782, 0.003838483477011323, 0.02744850516319275, 0.02486429363489151, 0.0032651845831424, -0.024934137240052223, -0.004996722098439932, -0.0020763897337019444, 0.024305546656250954, 0.0046242233365774155, 0.028007252141833305, 0.012432146817445755, -0.012781364843249321, -0.053686387836933136, 0.013165503740310669, -0.005145139526575804, -0.02826334536075592, 0.005881406832486391, -0.008963252417743206, 0.01716986671090126, 0.029008343815803528, 0.01884610950946808, -0.00014768994878977537, 0.01774025522172451, -0.01590104214847088, -0.01956782676279545, 0.013212066143751144, 0.02414257824420929, -0.01789158210158348, -0.015260810032486916, 0.019206969067454338, -0.015703152865171432, -0.028100376948714256, 0.02131391502916813, 0.010138951241970062, 0.02784428372979164, 0.008678057231009007, -0.04362891986966133, -0.03447942063212395, -0.0319184884428978, -0.055269505828619, -0.0022757346741855145, 0.020242981612682343, -0.02847287617623806, 0.013328472152352333, 0.008567471988499165, 0.02837975136935711, -0.0385536253452301, 0.02661038190126419, -0.015027998015284538, 0.00828227773308754, -0.014632217586040497, -0.02180282026529312, -0.008922509849071503, -0.014981435611844063, -0.01070351991802454, -0.014655498787760735, 0.002997451229020953, -0.002205891301855445, 0.007822474464774132, -0.01402690727263689, 0.015062919817864895, -0.004950159694999456, -0.0002659146557562053, -0.031639114022254944, -0.0101622324436903, 0.01091305073350668, 0.00969660934060812, -0.01698361709713936, 0.0004299741704016924, 0.003594031324610114, -0.001829027198255062, 0.003273915033787489, -0.05908761918544769, -0.032337550073862076, -0.0032564541324973106, -0.016168775036931038, -0.018904313445091248, -0.0010069108102470636, 0.0004688974004238844, 0.012222616001963615, -0.0004030553391203284, 0.01842704974114895, 0.05443138629198074, -0.018415408208966255, 0.01574971340596676, 0.04754015803337097, -0.02877553179860115, -0.028961781412363052, 0.0286824069917202, -0.017845019698143005, 0.010819925926625729, -0.029054904356598854, 0.008305558934807777, 0.04158017784357071, -0.009405594319105148, -0.022838830947875977, 0.024119297042489052, -0.02444523200392723, -0.0017053460469469428, 0.013619487173855305, 0.017670411616563797, -0.013281909748911858, -0.013293550349771976, 0.015202607028186321, 0.028216782957315445, 0.02600507065653801, 0.013409956358373165, -0.006821384187787771, 0.015598386526107788, 0.017810098826885223, -0.04963546246290207, 0.0032040716614574194, -0.006093847099691629, -0.016785725951194763, 0.001333574764430523, -0.03548051044344902, -0.003914147615432739, -0.031033804640173912, 0.015505261719226837, -0.02158164791762829, -0.01825243979692459, -0.024002891033887863, 0.042441580444574356, 0.012862849049270153, -0.0038617646787315607, 0.0006282279500737786, 0.012851208448410034, -0.018240800127387047, -1.266368508368032e-05, -0.03468894958496094, 0.016215337440371513, -0.0022117116022855043, 0.03426988795399666, 0.015260810032486916, -0.02949724718928337, -0.031406305730342865, -0.03445613756775856, -0.013095660135149956, 0.0011284094071015716, 0.014143313281238079, -0.0027108017820864916, 0.011943242512643337, -0.02672678790986538, 0.0006162235513329506, 0.0026817002799361944, 0.004103307146579027, 0.0029945410788059235, 0.02858928218483925, 0.014248078688979149, 0.028798813000321388, 0.009242625907063484, -0.022000709548592567, 0.05117202177643776, 0.016890492290258408, 0.006099667400121689, 0.024212421849370003, -0.0014361573848873377, -0.002574024721980095, 0.03487519919872284, 0.004117857664823532, 0.019591107964515686, -0.01356128416955471, 0.009853756986558437, 0.030777711421251297, -0.021814459934830666, -0.012106210924685001, -0.02041758969426155, -0.014224797487258911, 0.027588190510869026, -0.008532550185918808, 0.006856305990368128, 0.0033321180380880833, -0.015435418114066124, -0.017123304307460785, 0.008905049413442612, -0.009003994055092335, -0.002511456608772278, -0.0026089465245604515, 0.005299377255141735, -0.0031633295584470034, -0.026144757866859436, -0.030381932854652405, -0.01683228835463524, 0.017658770084381104, -0.042557984590530396, 0.01346815936267376, 0.026051633059978485, 0.04747031256556511, 0.009661687538027763, 0.019765716046094894, 0.0025973059237003326, -0.010412504896521568, 0.048750776797533035, -0.014387765899300575, 0.05336045101284981, 0.017193147912621498, -0.012560193426907063, 0.005174241028726101, 0.01620369777083397, 0.017158225178718567, -0.00272826268337667, -0.020813370123505592, 0.0034019616432487965, 0.009376493282616138, -0.04081190004944801, -0.03769221901893616, -0.003914147615432739, -0.021907584741711617, -0.015772994607686996, 0.00275881914421916, 0.0037278980016708374, 0.0038646748289465904, 0.039252061396837234, 0.020510714501142502, -0.009161141701042652, -0.01147179864346981, 0.005308107472956181, 0.02062712050974369, 0.011628946289420128, 0.018566736951470375, -0.021837741136550903, -0.001692250370979309, 0.07524475455284119, 0.00262640742585063, 0.01683228835463524, -0.025516167283058167, 0.0037278980016708374, -0.030055996030569077, 0.0015292820753529668, -0.016331743448972702, -0.017984706908464432, -0.005965800955891609, 0.04458344727754593, -0.0319184884428978, -0.014352844096720219, -0.006681696977466345, 0.026656944304704666, 0.03769221901893616, -0.03201161324977875, 0.0029334279242902994, -0.01948634348809719, -0.024701325222849846, 0.036039259284734726, -0.0345725417137146, -0.0017853750614449382, -0.03331536054611206, 0.01366604957729578, 0.0037861010059714317, -0.02150016464293003, -0.03466566652059555, -0.0017097112722694874, -0.004283735994249582, 0.013223706744611263, -0.027052724733948708, 0.019160406664013863, 0.0035882110241800547, 0.01201308611780405], [0.0038442087825387716, 0.007982711307704449, 0.0613601952791214, 0.00010164238483412191, 2.2680333131575026e-05, 0.042476359754800797, 0.014837296679615974, 0.05002989247441292, 0.013255469501018524, 0.05150135979056358, 0.033426836133003235, 0.015401359647512436, 0.017559511587023735, 0.006164835765957832, -0.01858953945338726, 0.014444905333220959, 0.03639429435133934, 0.013390353880822659, -0.012010852806270123, 0.04931868612766266, 0.015597554855048656, 0.047798167914152145, 0.021164607256650925, 0.028252175077795982, -0.00491102272644639, -0.01362333633005619, -0.023003941401839256, -0.009098573587834835, 0.006719701457768679, -0.026829756796360016, 0.07082663476467133, -0.020024219527840614, 0.05768152326345444, 0.017154857516288757, -0.0051685296930372715, -0.017915116623044014, 0.004739351570606232, 0.017130333930253983, 0.04877914488315582, -0.017633086070418358, -0.060281116515398026, 0.04949035495519638, -0.005199185106903315, -0.0028739599511027336, 0.0105700409039855, 0.02399718202650547, 0.01182691939175129, -0.02812955342233181, -0.0360509529709816, 0.052286144345998764, -0.03475115820765495, -0.01039837021380663, 0.03955794870853424, -0.025824254378676414, -0.002679297002032399, 0.0108091551810503, 0.04492880776524544, -0.0022255945950746536, 0.014334545470774174, -0.029821740463376045, 6.1646438552998e-05, 0.008718444965779781, 0.00327401515096426, 0.044242121279239655, 0.005116415210068226, 0.0036878653336316347, -0.011673642322421074, 0.0032586874440312386, -0.0113609554246068, 0.0020953083876520395, -0.010018240660429, 0.021520212292671204, -0.013022487051784992, 0.0011541822459548712, -0.0060391477309167385, 0.021642833948135376, -0.005910394247621298, 0.016492698341608047, 0.021336277946829796, -0.0029720577877014875, 0.032151564955711365, 0.022096537053585052, 0.010962432250380516, 0.03227418661117554, 0.00709983054548502, -0.04193682223558426, -0.005686608608812094, -0.003053294960409403, -0.0022209961898624897, -0.029772691428661346, -0.025284716859459877, -0.00954001396894455, -0.03965604677796364, 0.015806013718247414, 0.027173100039362907, -0.02214558608829975, 0.015855062752962112, -0.04095584526658058, -0.0759277194738388, 0.03146487846970558, -0.002182676689699292, -0.009313162416219711, 0.00228537293151021, -0.03266657888889313, 0.028006931766867638, -0.03793933615088463, -0.023715151473879814, 0.01894514448940754, -0.019460156559944153, 0.03369660675525665, -0.058172013610601425, 0.029331251978874207, 0.004018945619463921, 0.0435309112071991, 0.0018945143092423677, -0.02232951857149601, -0.019840287044644356, 0.03516807407140732, 0.014788247644901276, -0.011967935599386692, 0.019214913249015808, -0.004950874950736761, 0.041470859199762344, -0.051795653998851776, -0.0024570440873503685, 0.04404592514038086, -0.00017550315533299, 0.031146060675382614, -0.03563403710722923, -0.007535139564424753, 0.050569433718919754, -0.012299015186727047, 0.03713002800941467, -0.04473261162638664, -0.03369660675525665, 0.0028065175283700228, 0.02584877796471119, -0.03357398137450218, 0.002889287658035755, -0.03090081736445427, 0.030434852465987206, -0.02646188996732235, 0.029699118807911873, -0.00577857531607151, -0.02984626591205597, -0.05010346695780754, -0.004117043223232031, 0.06229212135076523, -0.023813247680664062, -0.00697720842435956, -0.04154442995786667, 0.010422894731163979, 0.004359222482889891, 0.011164759285748005, -0.006830061320215464, -0.004509434569627047, -0.03327969089150429, 0.04088227078318596, 0.028718139976263046, 0.024548983201384544, -0.033206116408109665, -0.03560951352119446, -0.01666436903178692, -0.02812955342233181, 0.00540457759052515, -0.00023968826280906796, -0.019877072423696518, -0.0006384022999554873, -0.061163999140262604, -0.04522310197353363, -0.04473261162638664, -0.048190560191869736, -0.02096841111779213, -0.07533913105726242, 0.014297759160399437, -0.05621005594730377, -0.01753498800098896, 0.010337059386074543, 0.011213808320462704, -0.03732622414827347, 0.04100489243865013, 0.009025000035762787, -0.04443831741809845, -0.04456093907356262, -0.05635720491409302, 0.049907270818948746, 0.004184485413134098, 0.0012668415438383818, 0.020809002220630646, 0.0033813095651566982, -0.0021397590171545744, 0.017988689243793488, 0.013181895948946476, 0.03977867215871811, 0.02057602070271969, 0.005671280901879072, -0.014628838747739792, 0.011790133081376553, -0.01705676130950451, -0.027491917833685875, -0.016468172892928123, -0.03296087309718132, 0.03754694387316704, 0.015119328163564205, 0.0018761210376396775, 0.037914812564849854, 0.019141338765621185, 0.002047792309895158, -0.016737941652536392, 0.001350377919152379, 0.006584817077964544, -0.027982406318187714, -0.039042938500642776, 0.01894514448940754, -0.0049294158816337585, -0.0412256121635437, -0.033598508685827255, -0.008730706758797169, 0.029723642393946648, 0.040072962641716, 0.018822520971298218, -0.020318513736128807, -0.022341780364513397, 0.011918886564671993, -0.024193378165364265, 0.007314419373869896, -0.02333502098917961, -0.04061250388622284, 0.025505436584353447, -0.023445380851626396, -0.02629021927714348, 0.026829756796360016, 0.0017856870545074344, -0.057338181883096695, -0.05871155112981796, 0.06322405487298965, -0.023751936852931976, -0.020343037322163582, 0.01938658393919468, -0.03475115820765495, 0.030434852465987206, 0.056455302983522415, -0.008712314069271088, 0.04961297661066055, 0.0038748644292354584, -0.01608804427087307, -0.027663588523864746, 0.006584817077964544, 0.050471335649490356, 0.002118299948051572, 0.02447540871798992, 0.04242731258273125, -0.011140234768390656, -0.01762082241475582, 0.006177098024636507, 0.031268682330846786, 0.0238255113363266, 0.049416784197092056, 0.05213899910449982, -0.03296087309718132, 0.0474548265337944, 0.008191169239580631, 0.014579790644347668, 0.00855290424078703, -0.0032035072799772024, 0.019803499802947044, 0.023261448368430138, -0.01004276517778635, 0.016860565170645714, -0.01793964020907879, -0.06052636355161667, -0.02158152312040329, 0.005496544297784567, 0.02663356065750122, 0.041250139474868774, -0.011833051219582558, 0.01419966109097004, -0.02505173347890377, 0.018172623589634895, 0.025529960170388222, -0.0379638597369194, -0.039705097675323486, 0.02712405100464821, -0.05287473276257515, 0.021679621189832687, -0.009546144865453243, 0.033206116408109665, -0.015683390200138092, 0.0019328338094055653, 0.03156297653913498, -0.025873303413391113, -0.021961651742458344, 0.00947257224470377, -0.030385803431272507, 0.028055978938937187, 0.01256878487765789, 0.0031513927970081568, -0.03445686399936676, 0.04828865826129913, 0.04232921451330185, -0.030557474121451378, 0.01201698463410139, -0.0402691587805748, 0.0021566194482147694, -0.015511719509959221, 0.011459052562713623, 0.0358547568321228, 0.02768811210989952, -0.05542527511715889, -0.03651691600680351, -0.010441288352012634, 0.04105394333600998, -0.016296502202749252, 0.015658866614103317, -0.0887785404920578, 0.013696909882128239, 0.0016170814633369446, 0.010465811938047409, 0.006713570561259985, 0.05066752806305885, 0.001217026263475418, -0.003071688348427415, 0.0190309789031744, -0.03440781310200691, 0.06391073763370514, 0.01828298345208168, -0.015217426232993603, -0.004236599896103144, -0.010079552419483662, -0.03779219090938568, 0.0033598507288843393, -0.01500896830111742, -0.021593784913420677, -0.005165463779121637, -0.0030885490123182535, -0.0025551419239491224, 0.021140081807971, 0.07685965299606323, -0.02346990630030632, 0.03310801833868027, 0.015094803646206856, 0.005640625488013029, -0.043015897274017334, 0.03671311214566231, -0.024929111823439598, 0.017387840896844864, 0.024953635409474373, 0.038871265947818756, 0.006189359817653894, 0.033206116408109665, 0.0046320571564137936, -0.029478399083018303, -0.021152345463633537, 0.004172223620116711, -0.056896742433309555, -0.004248862154781818, 0.060673508793115616, -0.02913505584001541, 0.020539233461022377, 0.011998591013252735, -0.046302177011966705, -0.0076577621512115, -0.027933357283473015, 0.011777871288359165, -0.037031929939985275, 0.020208153873682022, -0.01762082241475582, -0.019852548837661743, 0.026878805831074715, -0.04223111644387245, -0.0024662408977746964, 0.0079091377556324, 0.06675557792186737, -0.03112153708934784, -0.0018316704081371427, 0.025260191410779953, 0.023899083957076073, 0.02343311905860901, -0.05213899910449982, -0.023396333679556847, 0.029723642393946648, 0.0028632304165512323, 0.0475529246032238, 0.03212704136967659, 0.06459742039442062, 0.013611074537038803, -0.06597079336643219, 0.0006246072589419782, -0.01208442635834217, 0.02702595293521881, 0.0316365510225296, 0.0326911024749279, -0.00738186202943325, -0.03982771933078766, -0.06077160686254501, -0.007112092804163694, 0.02817860245704651, 0.05743627995252609, 0.03639429435133934, -0.05890774726867676, -0.005665149539709091, -0.019840287044644356, -0.005070431623607874, -0.031710125505924225, -0.018086787313222885, -0.04242731258273125, 0.0001051869330694899, -0.03391732648015022, 0.017866067588329315, 0.0040281424298882484, 0.019313011318445206, 4.330099545768462e-05, 0.021655095741152763, -0.005055103916674852, -0.0031605896074324846, 0.02183903008699417, -0.00938673596829176, -0.01228675339370966, 0.0327892005443573, -0.013991203159093857, -0.0044082715176045895, -0.019619565457105637, 0.019877072423696518, 0.013635598123073578, 0.051844704896211624, -0.017731182277202606, -0.007400255184620619, 0.034481387585401535, -0.014211922883987427, -0.05851535499095917, -0.05831916257739067, 0.030925340950489044, 0.013598811812698841, 0.02812955342233181, -0.039852242916822433, -0.020625069737434387, 0.020146841183304787, -0.008620346896350384, -0.03249490633606911, -0.029429350048303604, 0.055670518428087234, -0.004264190327376127, -0.008301529102027416, -0.02443862147629261, -0.028325749561190605, 0.007369599770754576, -0.004006683360785246, -0.019104553386569023, 0.028031455352902412, 0.001334283733740449, -0.030802719295024872, 0.007590319495648146, -0.04284422844648361, -0.0028509681578725576, -0.028546469286084175, -0.004803728312253952, 0.03327969089150429, -0.016271978616714478, 0.005367790814489126, -0.11389157921075821, -0.02127496711909771, 0.036198098212480545, 0.05920204147696495, 0.04365353658795357, -0.008663265034556389, 0.0007870818371884525, 0.0017994820373132825, -0.011324168182909489, 0.0024493802338838577, -0.025480911135673523, -0.015720177441835403, 0.014040252193808556, 0.0654802992939949, 0.016627581790089607, 0.0190800279378891, 0.02557900920510292, 0.009509358555078506, -0.046130504459142685, -0.0020769149996340275, 0.016848303377628326, 0.004110912326723337, 0.03968057408928871, -0.0179273784160614, -0.02756549045443535, 0.029208628460764885, 0.0316365510225296, 0.05831916257739067, 0.010735581628978252, -0.058122966438531876, -0.030925340950489044, 0.014775985851883888, -0.02712405100464821, 0.04826413467526436, -0.011765608564019203, 0.05380665883421898, -0.019840287044644356, 0.005478150676935911, -0.025677107274532318, 0.059447284787893295, -0.005159332882612944, 0.024904586374759674, -0.07607486844062805, 0.030704621225595474, 0.028472894802689552, 0.027540966868400574, 0.03401542454957962, -0.005144005175679922, 0.002915344899520278, -0.0061495075933635235, 0.018184885382652283, -0.05199185013771057, 0.019190387800335884, 0.005223709624260664, -0.013194158673286438, 0.008044022135436535, -0.023923609405755997, 0.009466440416872501, 0.007314419373869896, -0.026143072172999382, -0.006811668165028095, -0.01148970890790224, -0.018172623589634895, -0.015290999785065651, -0.02808050438761711, -0.01193114835768938, -0.00828313548117876, -0.021238179877400398, -0.038527924567461014, 0.0005372388986870646, -0.00614337669685483, 0.014861821196973324, -0.04716053232550621, -0.02224368415772915, -0.014579790644347668, -0.0016002209158614278, 0.030949866399168968, 0.009956929832696915, -0.011833051219582558, 0.011612330563366413, -0.0005165463662706316, 0.005254365038126707, -0.0179273784160614, -0.0010744777973741293, 0.02193712815642357, 0.007204059511423111, -0.012029246427118778, -0.011894362047314644, -5.992206570226699e-05, 0.013255469501018524, -0.014861821196973324, -0.0031100078485906124, -0.0047577447257936, 0.07980258762836456, -0.030165083706378937, 0.017436889931559563, 0.009331556037068367, -0.007921399548649788, 0.014518478885293007, -0.016983186826109886, 0.0009733143961057067, 0.0055486587807536125, 0.006051409989595413, -0.012249967083334923, 0.010085683315992355, 0.0037583732046186924, 0.01762082241475582, 0.015058017335832119, 0.014592052437365055, -0.028031455352902412, -0.030165083706378937, -0.0013634065398946404, 0.04409497603774071, -0.008601953275501728, 0.008368970826268196, 0.01442038081586361, -0.010116338729858398, 0.02979721687734127, 0.006278261076658964, 0.011765608564019203, 0.010012109763920307, 0.017081284895539284, 0.006498981267213821, -0.0014423446264117956, -0.021397588774561882, -0.0011488175950944424, -0.005147070623934269, -0.023531217128038406, -0.013390353880822659, -0.005726460833102465, 0.04387425631284714, 0.002078447723761201, -0.009503227658569813, -0.01722843199968338, 0.02180224284529686, 0.00988948717713356, 0.06209592893719673, -0.02884076163172722, -0.012936651706695557, 0.01120767742395401, 0.05591576546430588, 0.03838077560067177, -0.0021320951636880636, -0.028031455352902412, -0.004825186915695667, -0.007461566478013992, -0.030925340950489044, -0.012715931050479412, 0.011471315287053585, -0.016554009169340134, 0.03266657888889313, 0.016897350549697876, 0.02729572169482708, -0.01899419166147709, -0.011796263977885246, -0.05841725692152977, -0.0030333688482642174, -0.021201394498348236, -0.04338376596570015, 0.005150136072188616, -0.007516746409237385, 0.006505112629383802, -0.006897503975778818, 0.02773716114461422, 0.023089777678251266, 0.05866250395774841, 0.024732915684580803, -0.033475883305072784, -0.04919606074690819, 0.001427016919478774, 0.030581999570131302, -0.01906776614487171, 0.015131590887904167, 0.019619565457105637, 0.008117595687508583, 0.02224368415772915, 0.006468325853347778, -0.006750356871634722, 0.015487194992601871, -0.00010537853086134419, 0.025824254378676414, 0.03450591117143631, 0.008583560585975647, 0.008418019860982895, -0.048901770263910294, 0.03524164482951164, 0.026314742863178253, 0.005622231867164373, -0.033598508685827255, -0.009251851588487625, 0.005701936315745115, 0.03906746208667755, 0.0020738495513796806, 0.0015450408682227135, -0.00881041120737791, 0.011551019735634327, -0.043972354382276535, 0.016026733443140984, 0.06901182234287262, 0.004543155897408724, 0.0014454101910814643, -0.035094499588012695, -0.028669090941548347, 0.008982082828879356, -0.034088995307683945, 0.0381600558757782, 0.026780707761645317, -0.028669090941548347, -0.009527752175927162, -0.008148251101374626, -0.00931929424405098, 0.009969192557036877, 0.00482212146744132, 0.01639460027217865, -0.021924864500761032, -0.0011564814485609531, -0.02773716114461422, -0.029036957770586014, 0.04039178043603897, -0.01583053730428219, 0.0169709250330925, -0.005579314194619656, -0.021152345463633537, -0.01248294860124588, 0.015327786095440388, 0.0018132771365344524, -0.029821740463376045, 0.007903006859123707, -0.02205974981188774, 0.04306494817137718, 0.03168559819459915, 0.0031851138919591904, 0.019619565457105637, -0.038527924567461014, -0.007860088720917702, -0.010079552419483662, 0.02624117024242878, 0.011869837529957294, 0.03188179433345795, 0.006866848096251488, -0.015045754611492157, 0.028154077008366585, 0.03590380772948265, -0.02862004190683365, -0.044855233281850815, -0.03556046262383461, -0.014530741609632969, -0.009723947383463383, 0.010741712525486946, 0.0035069973673671484, -0.02535828948020935, -0.05000536888837814, 0.02962554432451725, -0.02241535484790802, 0.012740455567836761, 0.014187399297952652, 0.014775985851883888, -0.0018393343780189753, -0.05429714918136597, 0.020956149324774742, 0.035756658762693405, -0.05468954145908356, 0.01213347539305687, 0.018883831799030304, -0.008209561929106712, 0.01419966109097004, 0.02403396926820278, -0.00863874051719904, 0.020551495254039764, -0.02673165872693062, -0.002434052526950836, 0.003994421102106571, 0.018797997385263443, -0.03185727074742317, 0.02066185511648655, 0.015793750062584877, 0.01719164475798607, -0.022010700777173042, 0.012495211325585842, -0.0464983731508255, 0.006275195628404617, 0.0434328131377697, -0.02935577556490898, 0.023236922919750214, -0.016897350549697876, 0.018748948350548744, -0.00234668399207294, 0.0030839506071060896, 0.0017550315242260695, 0.026437366381287575, 0.022623812779784203, 0.0048926291055977345, 0.008969820104539394, -0.0002166965714422986, -0.0348002053797245, 0.03695835918188095, 0.003411965211853385, -0.008454807102680206, 0.01595315895974636, -0.0032494906336069107, 0.024463146924972534, -0.0026823626831173897, 0.02448767051100731, -0.017473675310611725, -0.00028145647956989706, -0.03484925627708435, 0.007706810720264912, -0.010238961316645145, -0.014923132956027985, 0.01397894136607647, -0.0077558597549796104, 0.02575067989528179, 0.00219187350012362, 0.03688478469848633, 0.023568004369735718, 0.02579972892999649, 0.006989470683038235, -0.022488927468657494, -0.018050000071525574, -0.02729572169482708, -0.011465184390544891, 0.01417513657361269, 0.029650069773197174, 0.005809230729937553, 0.0010622155386954546, -0.030140558257699013, -0.018307507038116455, 0.009282507002353668, -0.018565014004707336, 0.0070323883555829525, -0.0023727412335574627, 0.005787772126495838, -0.009509358555078506, -0.01256878487765789, -0.03933722898364067, -0.014690150506794453, -0.009662636555731297, 0.004484910052269697, -0.04029368236660957, -0.019595041871070862, 0.011961804702877998, -0.021299490705132484, 0.014972181059420109, 0.005401511676609516, 0.04664551839232445, 0.0011127972975373268, 0.0023236924316734076, -0.03612452745437622, -0.03207799047231674, -0.018221672624349594, -0.0025060931220650673, -0.015977684408426285, 0.05076562613248825, -0.004270321223884821, -0.0015833602519705892, 0.044413793832063675, -0.03423614427447319, -0.0039116512052714825, -0.0008008768199943006, -0.017081284895539284, -0.041863247752189636, 0.06273356080055237, -0.023273710161447525, 0.035143546760082245, -0.01342714112251997, 0.03972962126135826, 0.01248294860124588, -0.018172623589634895, -0.017069023102521896, 0.015499457716941833, -0.013635598123073578, 0.02122591808438301, 0.01336582936346531, 0.04831318184733391, -0.005910394247621298, -0.011318037286400795, 0.021642833948135376, -0.019840287044644356, 0.012630095705389977, 0.023837773129343987, 0.0017810887657105923, 0.03227418661117554, -0.0022072012070566416, -0.01278950460255146, -0.03340231254696846, -0.02290584333240986, 0.011974066495895386, -0.015707915648818016, -0.02874266542494297, 0.00599009869620204, 0.04331019148230553, 0.00821569375693798, 0.012838553637266159, 0.009031131863594055, -0.022525714710354805, -0.008939164690673351, 0.004120109137147665, 0.00811146479099989, 0.01982802338898182, -0.020563757047057152, 0.012047640047967434, 0.013549762777984142, -0.0009947733487933874, 0.01833203248679638, 0.02619212120771408, 0.01625971496105194, -0.0003671004669740796, 0.01726521924138069, 0.04137276113033295, -0.026780707761645317, -0.01314510963857174, 0.0014331480488181114, 0.0059686400927603245, -0.0029751232359558344, -0.01195567287504673, -0.008847198449075222, -0.012157999910414219, 0.020490184426307678, -0.00463512260466814, 0.0015986880753189325, 0.039361756294965744, 0.015303261578083038, 0.0014913935447111726, 0.04456093907356262, 0.0032096384093165398, -0.039705097675323486, -0.014089301228523254, 0.004920219536870718, 0.038209106773138046, 0.09844117611646652, -0.014555266126990318, 0.0038748644292354584, -0.00380129087716341, -0.015425884164869785, 0.011992460116744041, 0.015058017335832119, -0.0031360650900751352, -0.010576172731816769, 0.002723747631534934, -0.010122469626367092, 0.03318159282207489, -0.022918105125427246, -0.03124415874481201, -0.06209592893719673, -0.01223770435899496, 0.008350578136742115, 0.02624117024242878, -0.022035226225852966, -0.003353719599545002, -0.026143072172999382, -0.03862602263689041, 0.009748471900820732, -0.02066185511648655, -0.013905367814004421, 0.014825034886598587, 0.021238179877400398, 0.022783221676945686, -0.022746434435248375, 0.00029716745484620333, 0.013243206776678562, -0.01573243923485279, 0.015499457716941833, -0.009092442691326141, 0.0033475884702056646, -0.01819714717566967, -0.024377310648560524, -0.0020263332407921553, -0.005674346350133419, -0.006180163472890854, 0.027173100039362907, -0.006560292560607195, -0.001807146007195115, 0.021606046706438065, -0.026044974103569984, 0.037914812564849854, 0.013132846914231777, 0.01833203248679638, -0.0031375978142023087, 0.0018715226324275136, 0.0392146073281765, 0.0023160285782068968, 0.05787771940231323, 0.02874266542494297, -0.010441288352012634, -0.007167272735387087, -0.012145738117396832, 0.011134103871881962, 0.02109103463590145, -0.0047056302428245544, 0.010245092213153839, -0.038209106773138046, 0.04703791067004204, -0.029061483219265938, 0.054395247250795364, 0.007596450857818127, 0.010343190282583237, 0.0033598507288843393, 0.04576263949275017, 0.00654803030192852, 0.04066155105829239, -0.01634555123746395, 0.005518002901226282, 0.01867537386715412, 0.010698794387280941, -0.03663954138755798, 0.014567527920007706, 0.010441288352012634, -0.012225442565977573, 0.017032235860824585, -0.02918410487473011, 0.024450885131955147, -0.009650373831391335, -0.013279994018375874, 0.039410803467035294, 0.027222149074077606, -0.008430282585322857, 0.02602045051753521, 0.00927024520933628, 0.011465184390544891, 0.03212704136967659, -0.02241535484790802, 0.030361277982592583, 0.037914812564849854, 0.014015727676451206, 0.008816543035209179, -0.02035529911518097, 0.013721434399485588, -0.020453397184610367, -0.004806793760508299, 0.0358547568321228, 0.016296502202749252, -0.013795007951557636, 0.016492698341608047, -0.013255469501018524, 0.005980902351438999, -0.0013649393804371357, 0.02778621017932892, 0.023445380851626396, 0.009503227658569813, 0.009705553762614727, 0.008270873688161373, 0.002912279451265931, 0.026265693828463554, -0.039312705397605896, 0.018663112074136734, 0.01881025917828083, 0.006689046043902636, 0.09373247623443604, 0.016419123858213425, 0.0006537300650961697, -0.022758696228265762, -0.018883831799030304, -0.025456387549638748, -0.015438145957887173, 0.03274014964699745, -0.07063043862581253, 0.02852194383740425, 0.018712161108851433, -0.025211142376065254, 0.018050000071525574, 0.059054896235466, 0.019411107525229454, 0.051403265446424484, -0.0038932575844228268, 0.026927854865789413, 0.03933722898364067, -0.023494429886341095, 0.029110532253980637, 0.0032249661162495613, 0.01445716805756092, -0.014248710125684738, 0.024732915684580803, -0.05787771940231323, 0.0179764274507761, -0.0025903957430273294, -0.019521469250321388, 0.011869837529957294, -0.030581999570131302, -0.01858953945338726, -0.002064652740955353, 0.003252556314691901, -0.005570117384195328, -0.03227418661117554, -0.0348002053797245, 0.0027620671316981316, 0.010416763834655285, -0.04159348085522652, -0.019840287044644356, 0.022231420502066612, 0.02290584333240986, -0.005570117384195328, -0.023175612092018127, 0.039361756294965744, -0.041078466922044754, -0.009178278036415577, -0.027663588523864746, 0.01442038081586361, 0.004190616775304079, -0.009570669382810593, 0.02149568684399128, -0.008191169239580631, 0.004874235950410366, -0.014579790644347668, -0.015622079372406006, 0.04367806017398834, 0.021201394498348236, -0.00936221145093441, -0.014886345714330673, -0.040195588022470474, 0.016100306063890457, 0.005671280901879072, 0.022268207743763924, 0.02047792263329029, -0.009184409864246845, 0.0012392514618113637, 0.005104152951389551, 0.016321025788784027, -0.001030793646350503, -0.041127514094114304, -0.060330167412757874, 0.05454239249229431, -0.027050476521253586, -0.0061157867312431335, 0.04176515340805054, 0.0005418372456915677, -0.022010700777173042, 0.02215784788131714, -0.0026011252775788307, -0.01070492621511221, 0.008871722966432571, 0.027369294315576553, 0.004089453257620335, 0.04723410680890083, -0.024009443819522858, 0.005021382588893175, -0.002306831767782569, 0.029159581288695335, 0.03587928041815758, -0.0072592394426465034, 0.012764980085194111, -0.030263181775808334, 0.031268682330846786, 0.019521469250321388, 0.0058521488681435585, -0.01578148826956749, 0.03323063999414444, -0.04039178043603897, -0.01334130484610796, -0.0010093346936628222, 0.012047640047967434, -0.01188823115080595, 0.00620775343850255, -0.002124431077390909, 0.028644567355513573, -0.02430373802781105, 0.003332260763272643, 0.012887602671980858, 0.013476189225912094, 0.030876291915774345, -0.013243206776678562, -0.003350654151290655, 0.0026547724846750498, 0.010753974318504333, 0.022354044020175934, -0.0002055839286185801, -0.010379976592957973, 0.001532012247480452, -0.01498444378376007, 0.036762163043022156, -0.0065357680432498455, -0.010324796661734581, -0.004297911189496517, -0.00432856660336256, -0.018847046419978142, -0.022930368781089783, -0.003197376150637865, -0.001672261510975659, -0.008356709033250809, -0.006351834628731012, -0.008344447240233421, -0.0032494906336069107, 0.018650850281119347, 0.0016354747349396348, 0.0015442745061591268, 0.012243835255503654, -0.003871798748150468, 0.027148574590682983, -0.036590490490198135, 0.05419905111193657, 0.0007817170699127018, -0.0037645043339580297, 0.0067994059063494205, 0.03435876592993736, 0.009650373831391335, 0.004282583482563496, 0.01613709330558777, 0.011747214943170547, 0.011177022010087967, 0.00463512260466814, 0.008945295587182045, 0.02619212120771408, 0.006474456749856472, -0.017338791862130165, 0.024978160858154297, -0.01841786690056324, 0.025480911135673523, 0.014273234643042088, 0.023972658440470695, -0.01448169257491827, -0.0035069973673671484, 0.01947242021560669, -0.009159885346889496, -0.02646188996732235, -0.05076562613248825, -0.016321025788784027, 0.031317733228206635, 0.00414156774058938, -0.024585768580436707, -0.0005073497304692864, -0.0037491763941943645, 0.0014952255878597498, 0.014923132956027985, 0.003125335555523634, -0.009742341004312038, 0.004159961361438036, 0.002311430172994733, 0.051354214549064636, 0.014592052437365055, 0.012801767326891422, -0.0031605896074324846, -0.010576172731816769, 0.01625971496105194, 0.008908509276807308, 0.01846691593527794, -0.013206420466303825, 0.006164835765957832, 0.008626477792859077, -0.001023896154947579, -0.03330421447753906, -0.018258458003401756, 0.007455435115844011, -0.008516117930412292, 0.0009855766547843814, 0.020110055804252625, -0.008007235825061798, -0.024107541888952255, -0.03144035488367081, -0.03916556015610695, 0.028938859701156616, 0.0028877549339085817, -0.021336277946829796, 0.009092442691326141, 0.014162874780595303, -0.020845789462327957, -0.001509020570665598, 0.002119832905009389, -0.012863078154623508, 0.04171610251069069, 0.03212704136967659, -0.019533731043338776, -0.008700051344931126, -0.021593784913420677, -0.0247819647192955, -0.00432856660336256, -0.008319922722876072, 0.005898131988942623, 0.031170586124062538, -0.024401836097240448, -0.004389877896755934, 0.016799254342913628, 0.0023451512679457664, 0.04470808804035187, -0.0179273784160614, 0.0011327234096825123, 0.004748547915369272, 0.022121060639619827, -0.008687789551913738, 0.020710904151201248, 0.024990422651171684, -0.0014569060876965523, 0.01648043654859066, 0.014432643540203571, 0.0017197775887325406, -0.01784154400229454, -0.00670130830258131, -0.02004874497652054, -0.01831977069377899, -0.014187399297952652, -0.002329823561012745, -0.04505142942070961, -0.01314510963857174, 0.009956929832696915, -0.02606949955224991, -0.0059318533167243, 0.009276376105844975, -0.008418019860982895, 0.019877072423696518, 0.01250747311860323, -0.027639063075184822, -0.015290999785065651, 0.009785258211195469, -0.02365383878350258, 0.02839932218194008, 0.015855062752962112, 0.006370227783918381, -0.02329823561012745, -0.00020405114628374577, -0.017216170206665993, 0.008234086446464062, 0.007234714925289154, 0.05552337318658829, 0.0021167672239243984, -0.010048897005617619, -0.0066522592678666115, -0.027099525555968285, 0.03340231254696846, 0.015597554855048656, -0.0005859046359546483, -0.02624117024242878, 0.008037891238927841, 0.00407719099894166, 0.013451664708554745, -0.019104553386569023, 0.01683603972196579, -0.01960730366408825, -0.02350669354200363, -0.0025551419239491224, 0.057730574160814285, -0.01634555123746395, 0.027884308248758316, 0.007430910598486662, -0.019190387800335884, -0.007437041960656643, 0.04053892940282822, -0.031979892402887344, -4.58157119282987e-05, -0.019631829112768173, 0.022439878433942795, 0.017780231311917305, 0.05361046642065048, 0.0014316152082756162, -0.0019251699559390545, -0.009184409864246845, -0.018822520971298218, 0.01950920559465885, 0.01811131276190281, -0.03563403710722923, 0.012243835255503654, 0.015622079372406006, 0.024843275547027588, -0.03573213517665863, -0.014874083921313286, 0.01920264959335327, 0.023886822164058685, 0.0007376496796496212, -0.005925721954554319, -0.019926121458411217, 0.006633865647017956, -0.019374322146177292, -0.01846691593527794, -0.005996230058372021, 0.011587806046009064, -0.055621471256017685, -0.007584188599139452, -0.002516822423785925, 0.019362060353159904, -0.010189912281930447, 0.00927024520933628, -0.024647079408168793, 0.011673642322421074, -0.014089301228523254, -0.014493954367935658, -0.01259330939501524, -0.029699118807911873, -0.0017059826059266925, -0.013721434399485588, 0.04262350872159004, 0.027418343350291252, 0.029919838532805443, -0.002878558123484254, 0.0017504332354292274, -0.02394813299179077, 0.011937280185520649, -0.02663356065750122, 0.023972658440470695, 0.03671311214566231, 0.011747214943170547, -0.016210665926337242, 0.0013143576215952635, -0.022427616640925407, 0.0006897503626532853, -0.04105394333600998, -0.001469168346375227, -0.009662636555731297, 0.025775205343961716, 0.015585293062031269, -0.015364572405815125, -0.01899419166147709, 0.00984656997025013, -0.022488927468657494, -0.0017289742827415466, -0.0034763419535011053, 0.04414402320981026, -0.006928159389644861, -0.013243206776678562, -0.001413221936672926, 0.013010225258767605, -0.04421759769320488, -0.0006897503626532853, -0.0158673245459795, 0.02185129188001156, -0.04816603660583496, 0.027099525555968285, 0.03217608854174614, -0.003018041141331196, -0.015744701027870178, -0.0034947353415191174, -0.023568004369735718, -0.004258058965206146, 0.012305147014558315, 0.01583053730428219, -0.005508806556463242, -0.03445686399936676, 0.017817018553614616, -0.04264803230762482, 0.03455496206879616, -0.007289895322173834, 0.008160512894392014, 0.028546469286084175, -0.008479331620037556, 0.016235191375017166, -0.017510462552309036, 0.02606949955224991, 0.016370074823498726, -0.013390353880822659, -0.037252649664878845, -0.0034272929187864065, -0.042476359754800797, 0.007105961441993713, -0.009098573587834835, 0.019460156559944153, -0.019214913249015808, 0.004708695691078901, -0.02219463512301445, -0.006817799061536789, 0.02817860245704651, 0.020821264013648033, 0.0012699071085080504, 0.00019734524539671838, 0.017436889931559563, 0.020404348149895668, 0.010208305902779102, 0.01828298345208168, 0.042083971202373505, -0.004984596278518438, -0.00620775343850255, -0.038871265947818756, -0.009582932107150555, -0.04931868612766266, -0.00605447543784976, -0.004267255775630474, -0.0392146073281765, -0.0677855983376503, 0.0014492422342300415, -0.03663954138755798, -0.0016416058642789721, -0.012777242809534073, 0.009834307245910168, -0.03634524717926979, 0.030140558257699013, 0.01613709330558777, -0.03411352261900902, 0.02430373802781105, 0.028105027973651886, 0.03872412070631981, 0.012464555911719799, 0.02346990630030632, -0.026486413553357124, 0.010030503384768963, -0.00018469982023816556, -0.014518478885293007, -9.972640691557899e-05, 0.016333289444446564, 0.006186294369399548, -0.035756658762693405, -0.016026733443140984, 0.02835027314722538, 0.01955825462937355, 0.00022857560543343425, 0.018847046419978142, -0.00397909339517355, -0.015879586338996887, -0.010557779110968113, 0.01740010268986225, 0.04522310197353363, 0.007712942082434893, 0.016419123858213425, -0.03823363035917282, 0.010545517317950726, -0.00861421599984169, -0.02083352766931057, -0.03482472896575928, -0.031097011640667915, 0.013439402915537357, 0.0002885455614887178, 0.019362060353159904, 0.018381081521511078, 0.059005845338106155, -0.0030839506071060896, 0.010649745352566242, 0.013758220709860325, -0.0015396761009469628, 0.05297282710671425, 0.001748900394886732, -0.010171518661081791, 0.01059456542134285, 0.008405758067965508, 0.02624117024242878, 0.01899419166147709, 0.013745958916842937, -0.014665625989437103, -0.025701632723212242, -0.015119328163564205, 0.05748533084988594, -0.013770483434200287, -0.07004185020923615, 0.006811668165028095, -0.02154473587870598, -0.017608560621738434, 0.02364157699048519, 6.988512177485973e-05, 0.02105424739420414, 0.01930074766278267, 0.01039837021380663, 0.004310173448175192, -0.00509802158921957, 0.02294263057410717, -0.0047117616049945354, 0.029650069773197174, 0.050961822271347046, -0.0507165789604187, 0.006216950248926878, 0.009086311794817448, -0.009159885346889496, 0.013782745227217674, -0.03516807407140732, -0.010048897005617619, -0.018172623589634895, 0.01744915172457695, -0.016112569719552994, -0.006621603388339281, 0.027222149074077606, 0.03624714910984039, 0.00018125107453670353, -0.008430282585322857, -0.004972334019839764, 0.015634341165423393, 0.059005845338106155, -0.004800662398338318, -0.010637483559548855, -0.0006069803494028747, -0.007663893047720194, 0.02619212120771408, -0.020759953185915947, 0.012176393531262875, 0.0025183551479130983, 0.00911696720868349, 0.021777719259262085, -0.02984626591205597, -0.009398998692631721, 0.012004721909761429, 0.013059273362159729, 0.03305896744132042, 0.011410004459321499, -0.011722690425813198, -0.002530617406591773, 0.00562529731541872], [-0.010178063996136189, -0.0307049211114645, 0.021524963900446892, 0.032044485211372375, -0.026239704340696335, 0.014748342335224152, -0.004140173550695181, -0.015221130102872849, 0.01966007985174656, 0.024965805932879448, -0.03868977352976799, 0.018070988357067108, 0.008313179947435856, 0.020159132778644562, -0.023573709651827812, 0.00641218014061451, -0.011970716528594494, 0.030809983611106873, 0.030757451429963112, 0.024309156462550163, 0.013139552436769009, 0.04205181822180748, 0.02860364317893982, 0.001723704393953085, -0.05930856242775917, -0.020933978259563446, -0.007925757206976414, 0.027369141578674316, 0.0007871583220548928, -0.03824325278401375, 0.0652972012758255, -0.018819568678736687, 0.045939184725284576, -0.02820965275168419, -0.015391859225928783, 0.010624585673213005, -0.024479884654283524, 0.04060719162225723, 0.03763913735747337, -0.010670551098883152, -0.0033013042993843555, 0.015181731432676315, -0.0007518634083680809, -0.038610976189374924, -0.029785610735416412, 0.08562706410884857, 0.03616824373602867, -0.054318029433488846, -0.022523069754242897, 0.012154578231275082, -0.029470419511198997, -0.035117603838443756, 0.015812113881111145, -0.0314403660595417, 0.02250993810594082, 0.023337315768003464, -0.014879672788083553, 0.009790640324354172, 0.03664103150367737, -0.014459417201578617, -0.019791409373283386, -0.03128277137875557, 0.01971261203289032, 0.040764786303043365, 0.011320633813738823, -0.03312138840556145, -0.00046540016774088144, 0.020356127992272377, -0.03816445544362068, 0.009271888062357903, 0.0049478523433208466, 0.020933978259563446, -0.04084358364343643, -0.01447254978120327, 0.00800455454736948, 0.030888782814145088, -7.477080544049386e-06, 0.005049632862210274, 0.0002671741822268814, -3.875769834849052e-05, 0.012056080624461174, 0.02723781205713749, 0.00739387096837163, 0.04575532302260399, -0.012745562009513378, -0.007315073162317276, -0.040528394281864166, -0.015851514413952827, -0.023796970024704933, 0.015194864012300968, 0.0054469057358801365, -0.002342596184462309, -0.03414576128125191, 0.05710222199559212, -0.005381240975111723, -0.06214528903365135, 0.023337315768003464, -0.03889990225434303, -0.040528394281864166, 0.04265593737363815, 0.01040132436901331, -0.03456601873040199, -0.0071246447041630745, 0.03496000915765762, 0.02228667587041855, -0.0579952634871006, -0.07023520767688751, 0.0399768091738224, -0.017007216811180115, -0.0003545906220097095, -0.015851514413952827, 0.020671319216489792, -0.025438593700528145, 0.07028774172067642, 0.003173257689923048, -0.01174088940024376, -0.0023984115105122328, -0.021748224273324013, -0.011813120916485786, 0.010486689396202564, 0.0009701992967166007, -0.04496734216809273, -0.0027513604145497084, -0.12019308656454086, -0.017059748992323875, 0.008812232874333858, -0.0024985505733639, -0.009107725694775581, -0.05024680122733116, -0.058152858167886734, 0.03661476448178291, -0.02063192054629326, 0.020920846611261368, -0.0367986261844635, -0.035012539476156235, -0.005095598287880421, 0.019069094210863113, 0.022457405924797058, -0.04199928790330887, -0.03383057191967964, 0.01204951386898756, -0.0003045210905838758, 0.04570278897881508, 0.013540107756853104, -0.018084121868014336, -0.02507087029516697, -0.02428288944065571, 0.058993369340896606, -0.004150023218244314, -0.030284665524959564, -0.04391670227050781, 0.025438593700528145, -0.010867545381188393, -0.012108612805604935, -0.009652744047343731, -0.017755797132849693, 0.004596544895321131, 0.03406696394085884, -0.01182625349611044, 0.021459298208355904, 0.021341102197766304, -0.018136652186512947, 0.026410434395074844, 0.007341338787227869, 0.02626597136259079, -0.007538333535194397, -0.023271650075912476, 0.027815664187073708, -0.05473828315734863, -0.026765024289488792, -0.03955655172467232, -0.03264860063791275, -0.04614930972456932, -0.003710068529471755, -0.010847846046090126, -0.03932015970349312, -0.0010580261005088687, -0.029995739459991455, -0.007072112523019314, -0.006691256072372198, 0.07627637684345245, 0.061777565628290176, -0.06692569702863693, -0.06219781935214996, -0.05303099378943443, 0.03816445544362068, 0.028130855411291122, -0.02317971922457218, -0.0006767591694369912, -0.016206104308366776, 0.01158985961228609, -0.00393332913517952, 0.011898485012352467, 0.06708329170942307, 0.005167829804122448, -0.021669426932930946, -0.018583174794912338, -0.028498578816652298, 0.005936109460890293, -0.0068685514852404594, 0.029496684670448303, -0.04959015175700188, 0.04956388846039772, -0.005368107929825783, -0.07480548322200775, -0.029549216851592064, 0.010611452162265778, -0.005328708793967962, -0.0033275701571255922, -0.016311168670654297, -0.011931316927075386, -0.02672562561929226, -0.05237434804439545, 0.03795432671904564, -0.04370657727122307, -0.05915096774697304, -0.05048319697380066, -0.018425578251481056, -0.005036499816924334, 0.06713582575321198, 0.03947775438427925, -0.01709914766252041, 0.030757451429963112, 0.023599974811077118, -0.019213557243347168, 0.005020083859562874, -0.01635056734085083, -0.039635349065065384, -0.004248520825058222, -0.023678772151470184, 0.0012763619888573885, 0.0409223847091198, -0.005565102677792311, -0.0496952161192894, -0.020605653524398804, 0.003591871587559581, -0.014866539277136326, -0.035248931497335434, -0.007288807071745396, -0.011576727032661438, -0.01037505827844143, 0.07832512259483337, 0.011944450438022614, 0.016849620267748833, -0.011622692458331585, -0.0445733517408371, 0.001436420250684023, 0.006280850153416395, 0.017913391813635826, 0.014065427705645561, 0.0472787469625473, 0.027500471100211143, -0.0014282121555879712, -0.032727401703596115, 0.01549692265689373, 0.0462806411087513, 0.012633931823074818, 0.0053122928366065025, 0.0545806884765625, -0.04370657727122307, -0.036956220865249634, 0.01617983728647232, 0.015707051381468773, -0.016022242605686188, -0.03711381554603577, -0.012082346715033054, 0.0009160257177427411, 0.009166823700070381, -0.004054809454828501, 0.029444154351949692, -0.038427114486694336, 0.033068858087062836, 0.005788363516330719, -0.012995089404284954, -0.025386061519384384, 0.02300899103283882, -0.010677116923034191, -0.01293599046766758, -0.008989528752863407, -0.027710599824786186, -0.030232133343815804, -0.019279222935438156, 0.04375910758972168, -0.047436345368623734, 0.017046615481376648, 0.001800860627554357, -0.00545675540342927, 0.030731186270713806, 0.009600212797522545, 0.03440842032432556, 0.03992427513003349, 0.01947621814906597, 0.007334772497415543, 0.0018632423598319292, 0.019121626392006874, 0.033357784152030945, -0.014617012813687325, -0.0036903689615428448, 0.00747923506423831, 0.044862277805805206, -0.010611452162265778, 0.002401694655418396, -0.005778513848781586, 0.026068976148962975, 0.010769047774374485, 0.013290581293404102, 0.04614930972456932, -0.015418125316500664, -0.021892687305808067, 0.0026725626084953547, -0.046753428876399994, 0.015418125316500664, -0.018478110432624817, -0.001899358001537621, -0.0662953108549118, -0.019962137565016747, -0.038768574595451355, 0.04129010811448097, -0.006875117775052786, 0.04785659909248352, 0.04157903045415878, -0.0020356127060949802, 0.039740413427352905, 0.001699079992249608, 0.03496000915765762, -0.01036849245429039, -0.03249100595712662, 0.0013264315202832222, 0.009633044712245464, -0.026620561257004738, -0.030915047973394394, -0.01674455590546131, 0.016087906435132027, 0.025714386254549026, 0.026344768702983856, -0.02739540860056877, 0.0009168465621769428, 0.0960283875465393, -0.06014907360076904, -0.008674336597323418, -0.0372714139521122, 0.0069276499561965466, -0.005932826083153486, 0.018149785697460175, -0.044704683125019073, 0.03545906022191048, 0.01788712665438652, 0.051770228892564774, 0.014603880234062672, 0.012108612805604935, -0.013461310416460037, -0.01793965883553028, -0.03766540065407753, -0.0005396836204454303, -0.04331258684396744, -0.03932015970349312, 0.01293599046766758, -0.03251727297902107, -0.03932015970349312, 0.05061452463269234, 0.007860091514885426, -0.009088026359677315, 0.0004970013978891075, 0.02266753278672695, -0.025162801146507263, 0.017164811491966248, -0.045440129935741425, 0.0005831866292282939, -0.01139286532998085, -0.0060937050729990005, 0.017217343673110008, -0.009633044712245464, 0.019003430381417274, -0.06886937469244003, -0.028104588389396667, 0.006986748427152634, 0.010736215859651566, 0.04809299483895302, -0.015641385689377785, 0.027999525889754295, -0.01082814671099186, -0.00988913793116808, 0.021288570016622543, -0.0402132011950016, 0.07055039703845978, 0.023573709651827812, -0.04331258684396744, -0.0018353346968069673, -0.006320249289274216, -0.00457027880474925, -0.018149785697460175, 0.03254354000091553, 0.025386061519384384, -0.008923863992094994, -0.013106719590723515, 0.011465095914900303, 0.04223567992448807, 0.034382157027721405, 0.0029828292317688465, -0.02631850354373455, -0.005049632862210274, -0.031545430421829224, -0.008654637262225151, -0.019305488094687462, 0.025044603273272514, -0.0012312174076214433, -0.0419204905629158, -0.028104588389396667, -0.011064540594816208, -0.0007506321999244392, 0.018307382240891457, 0.006399047095328569, 0.028840037062764168, 0.0017828027484938502, -0.011130205355584621, 0.020185397937893867, -0.0633535236120224, 0.02312718704342842, 0.008024253882467747, -0.007301940117031336, 0.06550733000040054, -0.0049971011467278, 0.0033259287010878325, 0.0375078059732914, 0.006274283863604069, 0.014157358556985855, 0.0016104324022307992, -0.014761475846171379, -0.043837904930114746, -0.051822759211063385, -0.026187174022197723, 0.013894698582589626, 0.027946993708610535, 0.020881446078419685, 0.028629908338189125, 0.0015029060887172818, 0.02530726231634617, -0.016389966011047363, 0.004120474215596914, 0.008227815851569176, -0.007735328283160925, -0.027474205940961838, 0.05452815443277359, -0.004337168298661709, 0.009921970777213573, -0.007794426754117012, -0.012693030759692192, 0.0021570927929133177, 0.02490014024078846, -0.04599171504378319, -0.04273473471403122, 0.04701608791947365, -0.019016563892364502, 0.004337168298661709, -0.03277993202209473, -0.008043953217566013, -0.014380618929862976, -0.014997869729995728, 0.015654519200325012, -0.06046426668763161, 0.030179601162672043, 0.04494107514619827, 0.02563558705151081, 0.017164811491966248, 0.030783718451857567, 0.004576845560222864, 0.0037691667675971985, -0.0492224283516407, -0.005476454738527536, 0.006756920833140612, -0.007689362857490778, 0.03761287033557892, 0.015798982232809067, -0.0012295757187530398, 0.007755028083920479, 0.016258636489510536, -0.01874076947569847, -0.03464481607079506, 0.008385411463677883, -0.028130855411291122, -7.294963143067434e-05, 0.047436345368623734, -0.002235890831798315, 0.011084239929914474, 0.04756767302751541, 0.042997393757104874, 0.06661050021648407, 0.017821460962295532, -0.018898366019129753, -0.0051612635143101215, -0.013375945389270782, 0.00962647795677185, 0.0550534762442112, -0.01447254978120327, -0.03650970011949539, -0.03388310223817825, 0.014695811085402966, -0.017571935430169106, 0.030442260205745697, -0.0370350182056427, 0.03417202830314636, -0.02403336390852928, 0.031309038400650024, -0.04467841610312462, 0.049879077821969986, 0.015247396193444729, -0.017821460962295532, -0.03109890967607498, 0.0021636593155562878, 0.018675105646252632, -0.057575009763240814, -0.001074442407116294, -0.0032980209216475487, -0.025162801146507263, 0.00344740878790617, -0.018202317878603935, 0.0007186205475591123, -0.002598689403384924, -0.026357902213931084, -0.005092314910143614, -0.017690131440758705, 0.01037505827844143, -0.019975271075963974, -0.001376501051709056, -0.045939184725284576, 0.012679897248744965, 0.0392150953412056, -0.09802460670471191, 0.011248402297496796, -0.016600092872977257, -0.02141989953815937, -0.009547680616378784, -0.03942522406578064, 0.0032389224506914616, 0.022706931456923485, 0.006402330473065376, 0.008339446038007736, 0.004005560651421547, 0.02244427241384983, -0.028577376157045364, 0.01344817690551281, -0.037455275654792786, 0.010447289794683456, 0.00945574976503849, 0.019870206713676453, 0.014367486350238323, -0.0034342757426202297, -0.008372277952730656, 0.027710599824786186, 0.007781293708831072, -0.0199884045869112, -0.00587044470012188, 0.025990178808569908, -0.01897716335952282, -0.030179601162672043, -0.01600910909473896, 0.02165629342198372, 0.008208115585148335, -0.006802886724472046, 0.003311153966933489, -0.0023606540635228157, -0.01036849245429039, -0.019515616819262505, -0.005325425416231155, -0.02616090700030327, 0.03992427513003349, 0.016376832500100136, 0.00394646218046546, 0.030862515792250633, -0.013737102970480919, -0.0007978288922458887, 0.042866066098213196, 0.013605773448944092, 0.005886860657483339, 0.003956311848014593, -0.0046490770764648914, -0.007925757206976414, -0.032622337341308594, -0.012693030759692192, -0.004258370492607355, -0.0069276499561965466, 0.01002703420817852, 0.03172929212450981, -0.04202555492520332, -0.022864528000354767, -0.013829033821821213, 0.02768433280289173, -0.002081578131765127, -0.032727401703596115, 0.010309393517673016, 0.007098378613591194, -0.006802886724472046, -0.008208115585148335, -0.015601987019181252, 0.0035163569264113903, 0.036141976714134216, -0.019515616819262505, 0.01056548673659563, -0.0462806411087513, 0.03619450703263283, 0.015339327044785023, -0.03590558096766472, -0.05521107092499733, 0.007630264386534691, -0.025425460189580917, -0.0375078059732914, -1.614690336282365e-05, -0.04039706289768219, -0.014026028104126453, 0.01495847012847662, 0.04029199853539467, 0.0033439863473176956, -0.007656530477106571, -0.01669202372431755, 0.0018025023164227605, -0.005272893700748682, -0.02500520460307598, -0.007597432006150484, -0.01805785484611988, -0.013310280628502369, 0.00457027880474925, -0.004606394562870264, 0.027080215513706207, -0.013487576507031918, -0.0002727146493270993, 0.03522266820073128, 0.012890025041997433, -0.04980028048157692, 0.05156010016798973, 0.031755559146404266, -0.0011852519819512963, -0.006714238785207272, -0.009042060934007168, -0.015483790077269077, -0.022811995819211006, -0.01036849245429039, -0.013566373847424984, 0.003700218629091978, 0.021406766027212143, 0.014971603639423847, 0.007400437258183956, 0.026003310456871986, 0.03133530169725418, -0.04843445122241974, 0.03482867777347565, 0.012916291132569313, 0.022772597149014473, -0.03480241075158119, 0.0036673862487077713, -0.01772953011095524, 0.04436322674155235, -0.03918882831931114, 0.013540107756853104, -0.009882571175694466, 0.014367486350238323, -0.004130323883146048, -0.013027921319007874, 0.05599905177950859, -0.016547562554478645, 0.02700141817331314, -0.03918882831931114, -0.019384287297725677, 0.010184629820287228, -0.012738996185362339, 0.017585067078471184, 0.025149667635560036, 0.009705276228487492, 0.020658185705542564, -0.028288450092077255, 0.0016211029142141342, 0.008588972501456738, 0.0018911499064415693, 0.038663510233163834, -0.012069214135408401, 0.0118787856772542, 0.012660197913646698, -0.021669426932930946, 0.02314032055437565, -0.015116066671907902, 0.023770703002810478, -0.0494588240981102, -0.009672443382441998, -0.022838260978460312, 0.013592639937996864, 0.025556789711117744, -0.03650970011949539, 0.000547891715541482, -0.02836724929511547, -0.003897213377058506, 0.02518906630575657, 0.019016563892364502, 0.03259607031941414, 0.0004957701894454658, 0.014078560285270214, 0.017335541546344757, 0.029969472438097, 0.010893811471760273, -0.029549216851592064, -0.054265495389699936, 0.01347444299608469, -0.00854300707578659, 0.021603761240839958, -0.02700141817331314, -0.0426296703517437, -0.03687742352485657, -0.019069094210863113, -0.00690795062109828, 0.01846497692167759, 0.009600212797522545, -0.006861984729766846, -0.010933210141956806, 0.006861984729766846, -0.035642921924591064, -0.0032208648044615984, 0.021052176132798195, 0.0034112930297851562, -0.01885896734893322, -0.025057736784219742, 0.05077212303876877, -0.0023540875408798456, -0.019305488094687462, 0.020592521876096725, -0.027264077216386795, 0.008411677554249763, -0.0036903689615428448, -0.003801999380812049, -0.027500471100211143, -0.03503880649805069, -0.02933908998966217, 0.012115179561078548, 0.04654330015182495, -0.017979057505726814, 0.01207577995955944, 0.032674867659807205, -0.019515616819262505, 0.04121130704879761, -0.013205217197537422, 0.03207075223326683, 0.025661854073405266, 0.015510056167840958, 0.062250349670648575, -0.03099384531378746, 0.0219320859760046, -0.04289232939481735, 0.013001655228435993, 0.013605773448944092, 0.00891729723662138, 0.007873225025832653, -0.030468527227640152, 0.002446018625050783, -0.014617012813687325, 0.010815013200044632, -0.001253379276022315, -0.033305250108242035, 0.03322645276784897, -0.023902034386992455, -0.022457405924797058, 0.023718172684311867, -0.007295373361557722, 0.017926525324583054, 0.026252837851643562, 0.034487221390008926, 0.009035494178533554, 0.008411677554249763, -0.007603998761624098, -0.008818799629807472, -0.044126830995082855, -0.010926644317805767, -0.03251727297902107, 0.002467359649017453, -0.005817912518978119, 0.01771639660000801, 0.007242841646075249, -0.0003412524238228798, 0.002222757786512375, -0.022693799808621407, -0.03958281874656677, -0.00951484777033329, -0.035012539476156235, 0.03207075223326683, 0.008858198300004005, -0.014052294194698334, -0.0073807379230856895, 0.02973307855427265, -0.005624201148748398, 0.0009135633008554578, 0.03895243629813194, -0.02029046230018139, 0.026646828278899193, -0.0015012643998488784, -0.015812113881111145, -0.010782181285321712, 0.02210281416773796, -0.009501715190708637, -0.05190156027674675, -0.0002928245230577886, -0.018727637827396393, -0.09807713329792023, -0.018898366019129753, 0.02130170166492462, -0.03020586632192135, -0.003385026939213276, -0.0011105580488219857, 0.03304259106516838, 0.06251300871372223, 0.014866539277136326, -0.022575601935386658, -0.024716278538107872, -0.0036115709226578474, -0.01396036334335804, -0.033068858087062836, 0.028629908338189125, 0.013592639937996864, 0.024466751143336296, -0.011629258282482624, -0.002137393457815051, -0.019174158573150635, 0.03293752670288086, -0.04026573523879051, -0.05137623846530914, 0.013776501640677452, -0.023718172684311867, 0.011951017193496227, -0.0018205600790679455, 0.019358020275831223, 0.022431138902902603, -0.014078560285270214, 0.019213557243347168, 0.008510174229741096, -0.003943178802728653, -0.005788363516330719, 0.025491124019026756, 0.0584680512547493, -0.018373046070337296, 0.0059164101257920265, 0.005821195896714926, -0.009245621971786022, -0.011996982619166374, 0.015129199251532555, 0.0079782884567976, 0.055631328374147415, -0.04086985066533089, -0.014853406697511673, 0.01430182158946991, -0.025386061519384384, 0.01503726840019226, 0.029943207278847694, -0.01174088940024376, -0.02329791709780693, 0.05203288793563843, -0.005003667436540127, 0.015707051381468773, -0.012699596583843231, -0.005164546426385641, -0.01663949340581894, -0.001800860627554357, 0.00948858167976141, -0.004878904204815626, -0.028787504881620407, 0.004182856064289808, -0.0013789634685963392, -0.027447938919067383, -0.03317392244935036, -0.011182737536728382, 0.019699478521943092, -0.029522951692342758, 0.011432264000177383, 0.03790179640054703, -0.02216847985982895, -0.03406696394085884, 0.016376832500100136, 0.009639611467719078, -0.004031826741993427, -0.02011973410844803, -0.023783836513757706, -0.0336204431951046, 0.027264077216386795, 0.01347444299608469, 0.025425460189580917, -0.030284665524959564, 0.009239055216312408, 0.025963911786675453, 0.06671556830406189, 0.02398083172738552, -0.041447702795267105, -0.043102458119392395, -0.011583292856812477, 0.02694888599216938, 0.014708943665027618, -0.012942557223141193, 0.011471662670373917, -0.027080215513706207, 0.017453737556934357, -0.023678772151470184, 0.028734972700476646, -0.03648343309760094, -0.01336281280964613, -0.021052176132798195, -0.017637599259614944, -0.018267983570694923, -0.06760860979557037, -0.020658185705542564, -0.07690676301717758, 0.03763913735747337, -0.016101039946079254, -0.011609558947384357, -0.020080335438251495, -0.0018517510034143925, 0.0031404250767081976, -0.01256170030683279, 0.0021160522010177374, -0.0024690013378858566, -0.0426296703517437, -0.026134641841053963, 0.040029339492321014, 0.003127292264252901, -0.01663949340581894, 0.006356365047395229, 0.022431138902902603, 0.042078085243701935, 0.01645563170313835, -0.0064745619893074036, 0.006513960659503937, -0.03816445544362068, 0.018767036497592926, 0.0020093468483537436, -0.008365712128579617, 0.007617131806910038, -0.014708943665027618, -0.016613226383924484, -0.006563209462910891, 0.03698248788714409, -0.00891729723662138, 0.01107767317444086, -0.002148884814232588, -0.016495030373334885, -0.007098378613591194, 0.0314403660595417, 0.014577614143490791, -0.018031589686870575, -0.0023885618429630995, 0.014879672788083553, -0.01772953011095524, 0.004836221691220999, -0.03937269002199173, -0.016705157235264778, 0.022457405924797058, 0.03259607031941414, -0.018359914422035217, -0.004672059789299965, 0.009921970777213573, -0.01478774193674326, 0.0677662044763565, 0.012023248709738255, 0.04717368260025978, -0.009468882344663143, 0.03622077405452728, -0.0021472431253641844, -0.0010013901628553867, 0.014735209755599499, -0.00506933219730854, -0.0015102933393791318, 0.020894579589366913, -0.043732840567827225, 0.012811227701604366, 0.0392150953412056, 0.009685576893389225, -0.027841929346323013, -0.012837493792176247, 0.008641504682600498, -0.0057325479574501514, -0.016324300318956375, 0.06892190873622894, -0.0072297086007893085, -0.01744060404598713, 0.02399396523833275, -0.0027300193905830383, -0.0011360032949596643, 0.01344817690551281, -0.030179601162672043, 0.005269610323011875, 0.00739387096837163, 0.011261534877121449, 0.008595539256930351, -0.013375945389270782, 0.023429246619343758, 0.03790179640054703, 0.01993587240576744, 0.021524963900446892, -0.0025297412648797035, 0.021905818954110146, 0.004872337449342012, -0.016665758565068245, 0.02689635381102562, 0.006875117775052786, 0.06251300871372223, 0.01857004128396511, 0.030678654089570045, 0.015510056167840958, -0.02768433280289173, 0.012443503364920616, -0.007768161129206419, 0.03490747511386871, 0.007991421967744827, 0.0118787856772542, -0.0035590389743447304, 0.019410552456974983, -0.01805785484611988, -0.01190505176782608, -0.01503726840019226, -0.010860978625714779, -0.011937883682549, 0.010289694182574749, 0.03992427513003349, -0.022352341562509537, 0.032569803297519684, 0.007485801819711924, -0.011465095914900303, -0.014131092466413975, -0.00808991864323616, -0.003552472684532404, 0.04255087301135063, 0.04163156449794769, 0.016206104308366776, 0.03230714425444603, -0.0036115709226578474, 0.01908222772181034, 0.02564872056245804, 0.02609524317085743, 0.014026028104126453, 0.006297266576439142, -0.03813818842172623, -0.0005429668817669153, 0.01566765084862709, 0.03430335968732834, -0.019909605383872986, -0.003962878603488207, -0.004777123685926199, 0.01444628369063139, -0.00039193753036670387, -0.011760588735342026, -0.013270881958305836, -0.026870088651776314, 0.030468527227640152, -0.006225035060197115, -0.015129199251532555, 0.027080215513706207, 0.035695455968379974, 0.0075777326710522175, 0.00549615453928709, -0.005407506600022316, 0.01817605271935463, -0.0375078059732914, -0.022995857521891594, -0.021209770813584328, 0.0029302972834557295, 0.009495148435235023, -0.013947230763733387, -0.02718527987599373, -0.03327898681163788, -0.011845952831208706, -0.028840037062764168, 0.008437943644821644, -0.00014425763220060617, 0.02005406841635704, -0.011353465728461742, -0.054212965071201324, -0.00506933219730854, 0.028183387592434883, 0.0006931754178367555, 0.02563558705151081, -0.03503880649805069, 0.006921083200722933, 0.018504377454519272, 0.016849620267748833, 0.01732240803539753, -0.0034408422652632, -0.028183387592434883, 0.018924633041024208, -0.015247396193444729, 0.01948934979736805, -0.0013190442696213722, 0.043391384184360504, -0.007045846898108721, -0.019436819478869438, -0.0091405576094985, -0.00455714575946331, -0.004287919960916042, -0.03805939108133316, -0.010572053492069244, -0.03648343309760094, 0.024243490770459175, -0.03482867777347565, 0.019463084638118744, -0.008240948431193829, 0.008996095508337021, 0.04391670227050781, 0.006172503344714642, 0.02370503917336464, 0.007584298960864544, -0.017926525324583054, 0.008700602687895298, 0.03377803787589073, -0.022142212837934494, 0.025438593700528145, -0.03661476448178291, 0.005778513848781586, 0.018767036497592926, -0.012949123978614807, -0.007597432006150484, 0.017860859632492065, -0.0022900644689798355, 0.0013461309717968106, -0.029995739459991455, -0.0061134048737585545, -0.013060754165053368, -0.029995739459991455, -0.007039280142635107, 0.02085518091917038, 0.017401205375790596, -0.007341338787227869, -0.005798213183879852, -0.05468575283885002, 0.027946993708610535, 0.03293752670288086, -0.00024234462762251496, -0.027999525889754295, 0.003660819726064801, 0.019292356446385384, -0.006330098956823349, -0.04302366077899933, -0.047199949622154236, -0.010782181285321712, -0.020132867619395256, 0.009193089790642262, 0.015812113881111145, -0.027132747694849968, -0.03212328255176544, 0.004370001144707203, -0.027789397165179253, 0.01142569724470377, 0.009462316520512104, 0.015234263613820076, 0.004678626079112291, -0.03753407299518585, 0.01926608942449093, -0.010493255220353603, 0.08231755346059799, 0.025031469762325287, -0.03456601873040199, 0.02317971922457218, 0.018070988357067108, -0.026344768702983856, -0.004212405066937208, 0.004097491502761841, 0.005565102677792311, 0.027894461527466774, -0.013284014537930489, 0.03527519851922989, 0.016508162021636963, 0.03577425330877304, -0.017020348459482193, 0.002359012607485056, -0.0024739261716604233, -0.001000569318421185, 0.03853217884898186, -0.011931316927075386, 0.0021735092159360647, -0.010545787401497364, 0.004406116437166929, 0.009692143648862839, -0.0044980477541685104, -0.0604117326438427, 0.006477844901382923, 0.015982843935489655, -0.0011277950834482908, 0.020198531448841095, -0.0001846826053224504, -0.001379784313030541, -0.02319285273551941, -0.020211664959788322, 0.01333654671907425, -0.0029335806611925364, -0.05014174059033394, -0.02222101204097271, 0.02478194423019886, 0.019174158573150635, 0.01247633621096611, -0.0014774608425796032, 0.020579388365149498, 0.02786819450557232, 0.016665758565068245, 0.020211664959788322, 0.0052072289399802685, -0.022299809381365776, 0.02068445272743702, -0.0404495969414711, -0.003240564139559865, 0.009606778621673584, -0.016665758565068245, -0.007282240316271782, -0.007899491116404533, -0.028235919773578644, -0.018714504316449165, -0.006225035060197115, 4.542679016594775e-05, 0.006445012520998716, -0.0015775999054312706, 0.012207110412418842, -0.002207983285188675, -0.011602993123233318, 0.012784961611032486, -0.04220941662788391, -5.473787314258516e-05, -0.025543656200170517, 0.0017384790116921067, 0.017243610695004463, 0.0071706101298332214, -0.027763132005929947, 0.014656411483883858, 0.010329092852771282, 0.01772953011095524, -0.009902271442115307, -0.031939420849084854, -0.0054895877838134766, -0.02700141817331314, 0.019042829051613808, 0.0099942022934556, -0.029470419511198997, 0.022864528000354767, 0.02836724929511547, -0.03235967457294464, -0.011793420650064945, 0.020382393151521683, 0.031203974038362503, 0.013737102970480919, 0.04888097196817398, 0.030521057546138763, -0.005374674219638109, 5.827762288390659e-05, 0.01800532266497612, 0.0329112634062767, 0.0015964785125106573, -0.0037330512423068285, -0.04609677940607071, 0.010007334873080254, 0.009357252158224583, 0.0023458795621991158, -0.0009948236402124166, -0.0248476080596447, 0.019515616819262505, -0.02165629342198372, 0.00800455454736948, -0.015536322258412838, -0.0007165684946812689, 0.0008232740219682455, -0.016889018937945366, -0.00954111386090517, 0.0019387570209801197, 0.00602475693449378, -0.009088026359677315, 0.005263044033199549, -0.0016268485924229026, 0.03372550755739212, -0.031309038400650024, 0.016889018937945366, -0.024860741570591927, 0.004760707262903452, -0.021393632516264915, 0.019449951127171516, 0.004054809454828501, -0.005591368768364191, 0.03133530169725418, -0.003404726507142186, 0.020763250067830086, 0.024716278538107872, -0.005788363516330719, -0.030284665524959564, 0.008280347101390362, 0.004271503537893295, 0.019791409373283386, 0.009468882344663143, -0.01031596027314663, -0.023626241832971573, -0.007374171167612076, 0.0051612635143101215, 0.03459228575229645, 0.0006894817342981696, 0.03548532724380493, 0.008444509468972683, -0.020815782248973846, -0.013251182623207569, 0.015562587417662144, -0.014249289408326149, -0.011497928760945797, 0.020316729322075844, -0.01749313622713089, -0.011064540594816208, 0.029654281213879585, 0.015076667070388794, 0.012837493792176247, -0.01600910909473896, 0.01805785484611988, 0.01566765084862709, -0.020014669746160507, 0.0019847224466502666, -0.015759583562612534, 0.02616090700030327, 0.0088319331407547, -0.018307382240891457, -0.010381625033915043, 0.025149667635560036, 0.03929389268159866, -0.006096988450735807, 0.03390936926007271, -0.03065238893032074, -0.02865617536008358, -0.039792947471141815, -0.01977827586233616, -0.002056953962892294, 0.01817605271935463, -0.0265548974275589, -0.004363434389233589, 0.0062644341960549355, 0.03929389268159866, -0.009895704686641693, 0.0020520288962870836, -0.022759463638067245, -0.021052176132798195, 0.006471278611570597, -0.008766267448663712, -0.020828915759921074, -0.04819805547595024, 0.020067201927304268, -0.01947621814906597, 0.004107341170310974, 0.010105832479894161, 0.0266730934381485, 0.0020684453193098307, 0.029470419511198997, -0.028052056208252907, -0.0017204211326316, 0.0037232013419270515, 0.0088319331407547, 0.03285872936248779, -0.007853525690734386, -0.006287416908890009, 0.0035590389743447304, -0.014065427705645561, -0.0022194746416062117, 0.0008080890402197838, -0.01449881587177515, -0.031939420849084854, 0.005368107929825783, -0.017112279310822487, -0.0027316610794514418, -0.0026446550618857145, 0.02461121417582035, -0.0015644668601453304, 0.007925757206976414, 0.01674455590546131, -0.014236155897378922, 0.013855299912393093, 0.03929389268159866, 0.036430902779102325, -0.009160257875919342, -0.018018456175923347, -0.006310399621725082, -0.03966161608695984, 0.009409784339368343, -0.03572171926498413, 0.0039366125129163265, 0.009042060934007168, -0.008615238592028618, 0.0018238433403894305, -0.003166691167280078, -0.027369141578674316, 0.016678892076015472, -0.00985630601644516, -0.0021817171946167946, -0.01447254978120327, -0.031020112335681915, 0.021748224273324013, -0.021327968686819077, -0.0036181374453008175, -0.0028564243111759424, -0.009843172505497932, 0.0006981002516113222, 0.001537380157969892, -0.0528733991086483, -0.024479884654283524, 0.014905938878655434, 0.0008528232574462891, -0.010933210141956806, -0.048171792179346085, -0.008641504682600498, -0.02933908998966217, 0.0127915283665061, 0.007288807071745396, 0.008615238592028618, -0.009127425029873848, 0.00394646218046546, -0.005299159791320562, -0.008588972501456738, -0.021288570016622543, 0.022089682519435883, -0.016271770000457764, -0.019397418946027756, -0.003401443362236023, -0.0031765408348292112, -0.01885896734893322, 0.004182856064289808, 0.041841693222522736, -0.03459228575229645, -0.02490014024078846, -0.010191196575760841, 0.02029046230018139, -0.035301465541124344, 0.008733435533940792, -0.007459535729140043, -0.04483601078391075, -0.03514387086033821, 0.03157169744372368, -0.014971603639423847, 0.03918882831931114, 0.023626241832971573, 0.010079566389322281, 0.013868432492017746, 0.024479884654283524, 0.021065309643745422, -0.022365475073456764, 0.0314403660595417, 0.006303832866251469, 0.021222904324531555, 0.04150023311376572, 0.02027732878923416, -0.011983849108219147, -0.0039595952257514, 0.04318125545978546, 0.024374820291996002, -0.006142953876405954, 0.007853525690734386, 0.011274668388068676, 0.010086133144795895, -0.01942368596792221, 0.029260292649269104, 0.005253194365650415, 0.01696781814098358, -0.022549336776137352, -0.0020093468483537436, -0.025780050083994865, 0.016678892076015472, -0.021236037835478783, 0.021735090762376785, 0.006720805540680885, -0.001484848209656775, -0.022930191829800606, 0.0021735092159360647, 0.005302442703396082, -0.0392150953412056, -0.005377957597374916, -0.014866539277136326, 0.02933908998966217, -0.012732429429888725, 0.008300046436488628, 0.0008191699744202197, 0.045046139508485794, -0.001200847327709198, 0.0038216987159103155, -0.011445396579802036, -0.021735090762376785, 0.04523000121116638, -0.0012747204164043069, 0.01971261203289032, -0.003644403535872698, -0.015260528773069382, 0.009685576893389225, 0.024361688643693924, -0.0018419012194499373, 0.012896591797471046, -0.04888097196817398, 0.014104826375842094, -0.011708056554198265, -0.03411949798464775, -0.03220207989215851, 0.009475449100136757, -0.014420018531382084, 0.0008060369873419404, -0.011557027697563171, 0.002812100574374199, -0.002544515999034047, 0.01034222636371851, 0.054212965071201324, 0.008122751489281654, 0.00603788997977972, 0.002913881093263626, 0.03926762565970421, 0.030783718451857567, 0.016140438616275787, 0.0005803137901239097, -0.007630264386534691, 0.05542119964957237, 0.019843941554427147, 0.05106104910373688, -0.026410434395074844, 0.01290315855294466, -0.04662209749221802, 0.016994083300232887, 0.03002200461924076, -0.02855111099779606, 0.017795195803046227, 0.015116066671907902, -0.015510056167840958, 0.0031125175300985575, -0.01589091308414936, 0.02348177880048752, 0.040318265557289124, -0.01481400802731514, -0.013658304698765278, 0.0024657179601490498, -0.03146663308143616, 0.04273473471403122, -0.022404873743653297, -0.006576342508196831, -0.019226690754294395, -0.008694036863744259, 0.013264315202832222, -0.01709914766252041, -0.03795432671904564, 0.0027776265051215887, -0.0034277092199772596, 0.028340982273221016, -0.008339446038007736, 0.01822858303785324, 0.009724975563585758, -0.013244615867733955], [-0.0167375560849905, 0.003645490389317274, 0.03755806013941765, 0.0016293757362291217, -0.0514553040266037, 0.04427844285964966, -0.02979792095720768, 0.029645761474967003, 0.034844547510147095, 0.008945716544985771, -0.03900357708334923, 0.013973322696983814, -0.009922073222696781, -0.0058232746087014675, -0.020845863968133926, -0.0026406031101942062, -0.026805449277162552, 0.021784182637929916, -0.008622377179563046, 0.07121068984270096, 0.03223247453570366, 0.029924720525741577, 0.0026897378265857697, 0.003937129396945238, -0.06314623355865479, 0.028048085048794746, -0.004089289344847202, -0.020440105348825455, 0.02972184121608734, -0.03758342191576958, 0.046281877905130386, -0.033475112169981, 0.054016657173633575, -0.003490160685032606, -0.02302681840956211, 0.016128916293382645, -0.0025661082472652197, 0.017016515135765076, 0.014543921686708927, -0.012901865877211094, -0.015786558389663696, -0.003388721030205488, 0.016204997897148132, -0.008685776963829994, -0.03273967280983925, 0.027769125998020172, 0.009712854400277138, -0.03377943113446236, -0.05432097613811493, 0.0486149899661541, -0.023927096277475357, 0.007316340692341328, -0.02683080919086933, -0.04032229259610176, 0.0035313705448061228, 0.007588959764689207, -0.044481322169303894, 0.0019479598850011826, 0.03398231044411659, -0.008571657352149487, -0.005496765486896038, -0.013073045760393143, 0.010556071996688843, 0.02979792095720768, -0.05416881665587425, 0.010416592471301556, 0.0024995384737849236, 0.06294335424900055, -0.07724635303020477, 0.022468900308012962, 0.0037564400117844343, 0.011037910357117653, 0.005249505862593651, -0.05191178247332573, 0.005614055320620537, 0.06101599708199501, 0.03852173686027527, 0.006910581607371569, 0.010410252027213573, 0.0037564400117844343, 0.008400477468967438, 0.003044776851311326, 0.034311987459659576, -0.0015374459326267242, 0.010308812372386456, 0.0027467976324260235, -0.09149863570928574, 0.01582459732890129, -0.02300145849585533, 0.020224547013640404, -0.0024060236755758524, -0.022456221282482147, 0.0032587514724582434, 0.04361908510327339, -0.004063929431140423, 0.04699195548892021, 0.024852734059095383, -0.018677590414881706, -0.0263743307441473, 0.05569041147828102, 0.01141830999404192, -0.06187823414802551, -0.02781984582543373, 0.004019549116492271, 0.08394137769937515, -0.04618043825030327, -0.04478564113378525, 0.02064298465847969, 0.0026865678373724222, -0.021112143993377686, -0.01866491138935089, 0.012350287288427353, -0.026247531175613403, -0.0013512088917195797, 0.040119413286447525, 0.021403783932328224, -0.03943469375371933, -0.03537710756063461, -0.061776794493198395, -0.010422931984066963, -0.0014534411020576954, 0.003005152102559805, 0.04288364574313164, -0.031928155571222305, -0.003616960486397147, -0.028707444667816162, -0.07212364673614502, 0.011215430684387684, -0.04326404631137848, -0.020604945719242096, 0.04838675260543823, -0.01420156192034483, 0.021999740973114967, -0.0382934994995594, 0.01874099113047123, -0.027185847982764244, 0.007043721154332161, 0.012762386351823807, -0.023394538089632988, -0.09012920409440994, 0.031471677124500275, -0.013922602869570255, 0.03973901644349098, 0.030076880007982254, -0.027084408327937126, -0.015913357958197594, -0.0031176868360489607, 0.008330738171935081, -0.035732146352529526, -0.016433237120509148, -0.06015376001596451, 0.03890213742852211, -0.017980191856622696, -0.03461630642414093, -0.05924080312252045, 0.021644702181220055, -0.018094312399625778, 0.00475181732326746, -0.024916134774684906, 0.045901477336883545, -0.03360190987586975, -0.010150313377380371, -0.0283524040132761, -0.03951077535748482, 0.014125482179224491, -0.05295154079794884, -0.009941093623638153, 0.028479203581809998, -0.053052980452775955, -0.03466702625155449, -0.018068952485919, -0.03258751332759857, 0.008749176748096943, 0.005062476731836796, -0.00011213845573365688, -0.04846283048391342, 0.005097346380352974, 0.004295338410884142, -0.013859203085303307, -0.001109497039578855, 0.057871367782354355, 0.03405838832259178, -0.04372052475810051, 0.0013139614602550864, -0.016243036836385727, 0.007329020649194717, -0.001572315813973546, -0.013554884120821953, 0.001221239217557013, 0.039155736565589905, 0.03352583199739456, -0.023863697424530983, 0.022633740678429604, 0.033906228840351105, -0.026678649708628654, 0.04891930893063545, -0.018322551622986794, -0.02683080919086933, -0.007316340692341328, -0.015190599486231804, 0.04651011526584625, -0.04019549489021301, 0.03839493915438652, 0.016509316861629486, -0.013871883042156696, -0.043948762118816376, 0.005946904420852661, -0.011728968471288681, 0.09494759142398834, -0.02522045373916626, 0.02235478162765503, -0.052140023559331894, -0.07379740476608276, 0.03073623776435852, -0.019818786531686783, 0.056045450270175934, 0.0039719995111227036, -0.05039018765091896, 0.009459255263209343, -0.02023722603917122, 0.0066760024055838585, -0.033855509012937546, 0.006146613508462906, 0.010942811146378517, -0.0012252017622813582, 0.0214671827852726, -0.044887080788612366, -0.008165898732841015, -0.027135128155350685, -0.031015196815133095, -0.02153058350086212, 0.021238943561911583, -0.02158130332827568, 0.0030241720378398895, -0.0584292858839035, 0.01951446756720543, -0.00659992266446352, -0.0031303667929023504, 0.003629640443250537, -0.014822880737483501, 0.05416881665587425, -0.022722499445080757, -0.005747194867581129, 0.03443878889083862, -0.01200792845338583, -0.011196410283446312, -0.011786028742790222, -0.02136574313044548, 0.0311927180737257, -0.00391493970528245, 0.026780089363455772, 0.014112802222371101, 0.018385950475931168, -0.016319116577506065, 0.022709820419549942, -0.020807825028896332, 0.03857245668768883, -0.014620001427829266, 0.018056271597743034, -0.05089738592505455, 0.019615907222032547, -0.0056235650554299355, -0.01421424187719822, -0.020757105201482773, 0.005135386250913143, -0.01319984532892704, 0.06319694966077805, 0.021720781922340393, 0.04909683018922806, 0.024358214810490608, 0.008134198375046253, 0.008660417050123215, 0.04866570979356766, 0.004802537150681019, -0.037634141743183136, 0.013149125501513481, -0.005129046272486448, -0.01202060841023922, 0.014759480953216553, 0.005461895372718573, -0.01373240351676941, -0.0717686116695404, 0.013821163214743137, -0.043543003499507904, -0.02032598666846752, -0.017625153064727783, 0.07897082716226578, -0.011551449075341225, -0.018094312399625778, 0.016636116430163383, 0.021061424165964127, -0.03755806013941765, 0.017688553780317307, -0.03793846070766449, 0.06375487148761749, -0.006999341305345297, 0.02929072268307209, -0.012698986567556858, 0.03895285725593567, 0.047727394849061966, -0.010955491103231907, 0.04189460724592209, -0.04361908510327339, 0.04179316759109497, 0.006349493283778429, 0.017092594876885414, -0.011526089161634445, -0.0035979405511170626, 0.008666756562888622, -0.062182556837797165, 0.022874658927321434, 0.02830168418586254, -0.035757504403591156, -0.04917290806770325, 0.03169991448521614, -0.01558367908000946, 0.006289263255894184, 0.016483956947922707, 0.02452305518090725, -0.009307094849646091, 0.05949440225958824, 0.04529283940792084, 0.007265620864927769, -0.024358214810490608, 0.029696481302380562, -0.06071167811751366, 0.007912298664450645, 0.04514067992568016, -0.019844146445393562, 0.019501788541674614, 0.009326115250587463, -0.026501130312681198, 0.04889395087957382, -0.034819189459085464, -0.036188624799251556, -0.00390225974842906, -0.01852543093264103, 0.01558367908000946, 0.007303660735487938, -0.03902893513441086, 0.011652888730168343, -0.002119139302521944, -0.021238943561911583, -0.0350220687687397, -0.011113990098237991, -0.028986403718590736, 0.031420957297086716, 0.024028535932302475, 0.007012021262198687, 0.054980333894491196, 0.0013932113070040941, 0.0013004890643060207, -0.015837278217077255, -0.022608380764722824, -0.023115579038858414, 0.004602827597409487, 0.05031410604715347, -0.002325188834220171, -0.034311987459659576, 0.01997094787657261, -0.0102390730753541, 0.04217356815934181, 0.002453573513776064, 0.007601639721542597, -0.016902394592761993, 0.04280756786465645, -0.03306935355067253, 0.036746542900800705, -0.009763574227690697, -0.011957208625972271, 0.021454503759741783, 0.021403783932328224, -0.0029084673151373863, 0.017574433237314224, 0.0031303667929023504, 0.00784255936741829, -0.00899643637239933, 0.004666227847337723, -0.0011285169748589396, -0.022189941257238388, 0.009192975237965584, -0.00898375641554594, 0.02040206640958786, 0.020782465115189552, 0.05528465285897255, 0.02136574313044548, -0.08531081676483154, -0.019235508516430855, -0.0022110692225396633, 0.009522655047476292, -0.01823379099369049, -0.029138563200831413, -0.0032492412719875574, -0.015431518666446209, -0.030989836901426315, 0.04853891208767891, 0.030558718368411064, 0.06304479390382767, 0.012109368108212948, -0.007246600929647684, -0.012293227016925812, -0.01903262920677662, -0.022506941109895706, -0.028225604444742203, -0.0010936470935121179, 0.007259280886501074, -0.011773348785936832, -0.023635458201169968, 0.02420605532824993, -0.017688553780317307, 0.041641008108854294, 0.0011174220126122236, 0.02599393017590046, 0.021454503759741783, 0.005293886177241802, -0.01659807562828064, 0.0017434953479096293, 0.033424392342567444, 0.04813315346837044, -0.006783782038837671, 0.0466369166970253, 0.010150313377380371, -0.003223881358280778, -0.006866201758384705, -0.041057731956243515, -0.002380663761869073, -0.009725534357130527, -0.00372474011965096, -0.021302344277501106, -0.012787746265530586, 0.0037374200765043497, 0.027718406170606613, 0.005614055320620537, 0.011621189303696156, 0.002593053039163351, -0.02599393017590046, 0.02088390477001667, -0.01317448541522026, 0.0178533922880888, 0.015710478648543358, -0.009313435293734074, -0.004631357733160257, -0.005091006401926279, 0.02741408720612526, -0.05056770518422127, -0.03621398285031319, -0.01662343554198742, 0.04044909402728081, 0.008077139034867287, -0.0014241187600418925, -0.04503924027085304, 0.04884323105216026, -0.09575910866260529, 0.02741408720612526, -0.039688292890787125, -0.049248989671468735, -0.024700574576854706, -0.022494260221719742, 0.022240661084651947, -0.03796381875872612, 0.007443140260875225, 0.041514210402965546, 0.009440234862267971, 0.0002845067356247455, 0.010625812225043774, 0.01488628052175045, -0.036695823073387146, 0.0036106205079704523, -0.008172238245606422, -0.016712196171283722, -0.026982968673110008, 0.033322952687740326, 0.009471935220062733, -0.01132320985198021, -0.02468789368867874, -0.023432577028870583, -0.012546827085316181, -0.061726074665784836, -0.021644702181220055, 0.025106333196163177, 0.0012022192822769284, 0.01799287274479866, 0.004498218186199665, 0.012147407978773117, 0.010568751953542233, 0.029087843373417854, 0.060813117772340775, -0.01534275896847248, -0.015735838562250137, -0.03895285725593567, -0.01780267246067524, -0.0027515527326613665, 0.05640048906207085, -0.012863826006650925, -0.02040206640958786, 0.025803731754422188, -0.007259280886501074, -0.0025359932333230972, 0.007487520109862089, 0.0023331139236688614, -0.018119672313332558, -0.06877613812685013, -0.004903976805508137, -0.026653289794921875, 0.047778114676475525, 0.0063653429970145226, -0.029620401561260223, 0.013060365803539753, -0.03928253427147865, 0.03994189575314522, -0.03649294376373291, 0.0178533922880888, 0.004688417539000511, 0.009643114171922207, -0.0189311895519495, -0.026729369536042213, 0.0009684324031695724, 0.011373929679393768, 7.850682595744729e-05, -0.010143972933292389, 0.017904112115502357, 0.029671121388673782, 0.03651830181479454, 0.005839124321937561, 0.06071167811751366, -0.0020890245214104652, -0.017384234815835953, -0.07699275761842728, -0.004035399295389652, -0.014328362420201302, -0.019501788541674614, -0.02639969065785408, -0.001873465022072196, 0.007772819604724646, 0.0470680333673954, -0.02527117356657982, 0.003658170346170664, 0.023838337510824203, -0.025550132617354393, -0.04709339514374733, 0.012210807763040066, 0.022418180480599403, 0.010676532052457333, -0.003149386728182435, 0.02179686166346073, -0.010479992255568504, 0.023331137374043465, -0.018943870440125465, -0.027769125998020172, 0.007075421046465635, -0.018994590267539024, -0.024802014231681824, 0.0190579891204834, -0.004349228460341692, 0.011640208773314953, 0.0237495768815279, 0.037253741174936295, -0.01729547418653965, 0.01616695709526539, -0.03134487569332123, 0.005433365702629089, -0.008780877105891705, -0.04214820638298988, -0.017980191856622696, -0.012698986567556858, 0.032942552119493484, -0.01417620200663805, 0.0032143713906407356, 0.005170256365090609, -0.0018639550544321537, -0.019565187394618988, 0.015000400133430958, -0.04090557247400284, 0.060813117772340775, 0.026805449277162552, 0.0035218605771660805, 0.05655264854431152, -0.04136205092072487, -0.0107335913926363, -0.01143098995089531, 0.02514437399804592, 0.025474052876234055, 0.023597417399287224, -0.006438252981752157, 0.0010231147753074765, 0.02021186612546444, 0.021036064252257347, -0.00536679569631815, -0.007031041197478771, 0.04612971842288971, 0.012540486641228199, 0.027261927723884583, -0.02016114629805088, 0.0044696880504488945, -0.01563439890742302, 0.0462057963013649, -0.045850757509469986, 0.019400348886847496, 0.009922073222696781, 0.005601375363767147, 0.016052836552262306, -0.03978973627090454, -0.027185847982764244, 0.028910323977470398, -0.013757763430476189, -0.0015770707977935672, -0.004390438552945852, -0.0189311895519495, 0.019768066704273224, 0.004460178315639496, 0.019641267135739326, 0.015761198475956917, 0.01488628052175045, -0.031471677124500275, -0.044506680220365524, 0.026298251003026962, -0.04029693454504013, -0.03661974146962166, -0.024142656475305557, 0.007031041197478771, -0.0004410250694490969, 0.009294414892792702, -0.010460971854627132, -0.00504028657451272, -0.01246440690010786, 0.04940114915370941, 0.008673097006976604, -0.02647577039897442, 0.05437169596552849, -0.04460811987519264, -0.008812576532363892, 0.015279359184205532, 0.01997094787657261, -0.005731344688683748, -0.010207372717559338, 0.02875816449522972, -0.0029528471641242504, -0.04935042932629585, 0.022291380912065506, 0.020199187099933624, -0.014455161988735199, -0.006295603234320879, -0.0009676399058662355, -0.0437966026365757, 0.010017173364758492, -0.005446045659482479, 0.021048743277788162, 0.026501130312681198, 0.03644222393631935, -0.003651830367743969, 0.013161805458366871, -0.007088101003319025, 0.0215559434145689, -0.01989486813545227, 0.008001058362424374, -0.015672437846660614, 0.016445916146039963, 0.0635012686252594, 0.006929601542651653, -0.031420957297086716, -0.03907965496182442, -0.004365078639239073, -0.01417620200663805, -0.03253679350018501, 0.020389385521411896, 0.03887677565217018, 0.035757504403591156, 0.015139879658818245, 0.03380478918552399, -0.001789460307918489, 0.020630305632948875, 0.017472993582487106, 0.016268396750092506, 0.008280018344521523, 0.012813106179237366, 0.0007310793153010309, 0.0190579891204834, 0.0003213578893337399, -0.00836877804249525, 0.01079065166413784, -0.007405100390315056, 0.0021143844351172447, 0.004539427813142538, 0.02931608259677887, 0.025068294256925583, -0.021860262379050255, -0.00278800749219954, 0.00354722049087286, 0.001098402077332139, 0.023394538089632988, -0.005826444365084171, 0.024383574724197388, 0.04427844285964966, -0.015532959252595901, -0.007252940908074379, 0.018271831795573235, -0.026272891089320183, -0.0002815348852891475, -0.011209090240299702, -0.02792128548026085, 0.021695422008633614, 0.009865013882517815, 0.013390044681727886, -0.05320513993501663, -0.06106671690940857, -0.005842294543981552, 0.015266679227352142, 0.03134487569332123, -0.0017434953479096293, -0.00841949786990881, -0.00824831798672676, -0.009186635725200176, -0.0413874089717865, 0.017866073176264763, -0.02401585690677166, 0.028250964358448982, -0.040119413286447525, -0.011513409204781055, 0.02286197990179062, -0.0031478016171604395, -0.0032349764369428158, 0.017764633521437645, 0.00827367790043354, -0.015253999270498753, -0.015089159831404686, 0.03712693974375725, -0.028682084754109383, 0.003184256609529257, 0.011627528816461563, 0.02639969065785408, -2.259857296849077e-07, -0.01417620200663805, 0.0018813899951055646, 0.0058232746087014675, -0.013643643818795681, 0.03413446992635727, -0.011798708699643612, 0.026678649708628654, 0.006130763795226812, 0.0033031313214451075, 0.058835044503211975, -0.05538609251379967, 0.030152959749102592, -0.031040558591485023, 0.021276984363794327, -0.003553560469299555, -0.01080333162099123, -0.015507598407566547, -0.04843747243285179, 0.004815217107534409, 0.012039627879858017, 0.009839653968811035, 0.00010728440247476101, -0.05629904940724373, -0.009078855626285076, -0.019615907222032547, 0.04526748135685921, -0.00360111054033041, 0.020465465262532234, 0.039688292890787125, 0.015165239572525024, 0.023064859211444855, 0.0063209631480276585, 0.0034204209223389626, 0.024776654317975044, 0.008964736014604568, -0.03492062911391258, -0.03702550008893013, -0.007626999635249376, 0.025106333196163177, -0.028529923409223557, 0.016230357810854912, 0.01903262920677662, -0.010416592471301556, -0.0037279101088643074, -0.0048183873295784, -0.02929072268307209, -0.0429343655705452, -0.006809141952544451, -0.027084408327937126, 0.02741408720612526, -0.008267338387668133, -0.0038008198607712984, 0.011190070770680904, -0.0002516180684324354, -0.016192317008972168, 0.005043456796556711, -0.049198269844055176, 0.04146349057555199, -0.02139110304415226, 0.010999870486557484, -0.05003514885902405, -0.013402724638581276, -0.044887080788612366, -0.02577837184071541, -0.03309471160173416, 0.00017325984663330019, -0.04805707186460495, 0.00887597631663084, 0.008159558288753033, 0.014848240651190281, 0.02591785043478012, -0.017916793003678322, 0.035275667905807495, 0.043466925621032715, 0.01688971556723118, -0.03464166820049286, 0.02524581365287304, 0.02567693218588829, -0.016027476638555527, 0.02182222157716751, -0.003417250933125615, 0.001811650232411921, 0.0037659499794244766, 0.04894467070698738, -0.013326644897460938, -0.07192076742649078, 0.03783702105283737, -0.018893150612711906, -0.03360190987586975, 0.06228399649262428, -0.01365632377564907, 0.03172527626156807, -0.00593105424195528, -0.0037881399039179087, 0.0007576280040666461, -0.04858963191509247, 0.021733462810516357, 0.007728439290076494, 0.020490825176239014, 0.00353454053401947, 0.036137904971838, 0.043872684240341187, 0.0032682614400982857, -0.010245412588119507, -0.003055871929973364, -0.011798708699643612, 0.009998153895139694, -0.0054175155237317085, 0.03317079320549965, 0.07744923233985901, -0.0030114920809865, 0.008235638029873371, 0.006083213724195957, -0.01700383424758911, 0.023610098287463188, -0.01136759016662836, -0.0013924187514930964, -0.0001917844929266721, 0.01681363582611084, -0.006051513832062483, -0.01989486813545227, -0.017168674618005753, 0.012870165519416332, 0.03375406935811043, -0.011513409204781055, 0.005227316170930862, 0.030863037332892418, -0.04884323105216026, -0.0005884296842850745, -0.01833523064851761, -0.019818786531686783, -0.0029750370886176825, 0.010587772354483604, -0.022418180480599403, 0.009110555984079838, 0.029518961906433105, 0.011614848859608173, 0.022227980196475983, -0.013073045760393143, 0.008083478547632694, -0.010232732631266117, -0.012084008194506168, -0.0030194169376045465, -0.015076479874551296, 0.037634141743183136, -0.011329550296068192, 0.048817869275808334, 0.02312825806438923, -0.009706513956189156, 0.016991155222058296, 0.05074522644281387, 0.0072275809943675995, -0.0646171122789383, -0.018943870440125465, 0.006435082759708166, -0.02194902114570141, 0.07298588752746582, -0.010296132415533066, 0.030533358454704285, -0.030558718368411064, 0.005157576408237219, 0.019666627049446106, -0.05427025631070137, 0.01492432039231062, 0.03266359493136406, -0.009928413666784763, 0.024662533774971962, -0.005141726229339838, -0.008463877253234386, -0.015013080090284348, -0.003217541379854083, 0.0005404835683293641, -0.044050201773643494, -0.01198256853967905, 0.02302681840956211, -0.0029639422427862883, -0.04610435664653778, -0.016204997897148132, 0.01965394802391529, 0.02738872729241848, -0.014315682463347912, 0.007493860088288784, -0.017980191856622696, 0.031522396951913834, 0.0083243977278471, -0.025309212505817413, -0.007290980778634548, -0.022684460505843163, -0.013402724638581276, 0.03507278859615326, -0.019260868430137634, -0.02746480703353882, -0.023901736363768578, 0.0023711537942290306, 0.008711136877536774, -0.0214671827852726, 0.0028308024629950523, -0.006954961456358433, -0.020034346729516983, 0.013136445544660091, 0.04237644746899605, 0.040144775062799454, 0.02931608259677887, -0.008501917123794556, -0.016128916293382645, 0.054980333894491196, -0.0054682353511452675, -0.008001058362424374, 0.016585396602749825, 0.019210148602724075, 0.009237355552613735, 0.009154935367405415, -0.01487360056489706, -0.007563599850982428, 0.015063799917697906, 0.029189283028244972, -0.01016299333423376, 0.04833603277802467, -0.01721939444541931, -0.024269456043839455, -0.03547854721546173, 0.0311927180737257, -0.015773877501487732, -0.017016515135765076, -0.030558718368411064, -0.003689870238304138, -0.002225334057584405, 0.039662934839725494, 0.027084408327937126, -0.02016114629805088, -0.005018096882849932, 0.02695760875940323, -0.022468900308012962, 0.005436535459011793, 0.0004497425688896328, -0.026196811348199844, -0.013770443387329578, -0.008089818991720676, -0.009725534357130527, 0.004067099187523127, 0.020630305632948875, 0.02779448591172695, 0.026298251003026962, 0.011221770197153091, 0.0047708372585475445, 0.0033189812675118446, 0.029924720525741577, 0.016610756516456604, 0.016027476638555527, -0.0038388597313314676, 0.027616966515779495, 0.007550919894129038, 0.016217676922678947, -0.024485014379024506, 0.032815754413604736, 0.022126540541648865, -0.017574433237314224, -0.02066834457218647, -0.0034869906958192587, -0.022253340110182762, 0.00595641415566206, -0.004834237042814493, 0.04521676152944565, -0.0382934994995594, 0.0006375645752996206, 0.01727011427283287, 0.030989836901426315, -0.006473122630268335, 0.02090926468372345, 0.0024583283811807632, -0.01321252528578043, -0.007386080455034971, -0.004143178928643465, -0.011716288514435291, 0.005537975113838911, 0.013428084552288055, 0.009383175522089005, -0.01076529175043106, -0.029874000698328018, 0.02420605532824993, -0.007550919894129038, 0.0032318064477294683, 0.005306566134095192, 0.00951631460338831, -0.014987720176577568, 0.036746542900800705, -0.03020367957651615, -0.025042934343218803, 0.015330079011619091, 0.03563070669770241, 0.025474052876234055, -0.018170392140746117, -0.012591206468641758, -0.0008063666173256934, -0.032435353845357895, 0.02184758149087429, 0.016369836404919624, 0.014721441082656384, -0.023407217115163803, 0.03801453858613968, -0.0014463086845353246, -0.00445066811516881, 0.0015255584148690104, 0.04765131324529648, 0.016915075480937958, -0.022874658927321434, -0.03223247453570366, -0.003987849224358797, -0.012901865877211094, -0.021251624450087547, 0.028073444962501526, -0.01801823265850544, -0.007963018491864204, 0.011424649506807327, 0.025080973282456398, 0.028174884617328644, -0.0065301829017698765, -0.006381193175911903, 0.0394093357026577, 0.00266437791287899, -0.0072275809943675995, -0.03360190987586975, -0.009579714387655258, -0.017688553780317307, -0.012324927374720573, 0.008666756562888622, 0.006435082759708166, -0.0008289528195746243, -0.007367060519754887, -0.009522655047476292, -0.031065918505191803, 0.035858944058418274, 0.010562412440776825, -0.012191787362098694, -0.009617754258215427, -0.006349493283778429, -0.014848240651190281, 0.017612474039196968, 0.019958266988396645, 0.008115178905427456, 0.002849822398275137, 0.03750734031200409, 0.02216458134353161, -0.009047156199812889, -0.022151900455355644, -0.0042160889133811, -0.06334911286830902, -0.016534676775336266, -0.017384234815835953, -0.022659100592136383, 0.02683080919086933, -0.01258486695587635, -0.011082290671765804, 0.018918510526418686, -0.011798708699643612, 0.04524211958050728, 0.02974720112979412, 0.023191658779978752, 0.04032229259610176, 0.001833840156905353, 0.011944528669118881, -0.028098804876208305, 0.026602569967508316, 0.0313195176422596, 0.000791309168562293, 0.043923404067754745, 0.02885960415005684, 0.016217676922678947, -0.031040558591485023, 0.034413427114486694, 0.015761198475956917, 0.022747859358787537, -0.005680624861270189, 0.00063518708338961, -0.032917194068431854, 0.02163202315568924, 0.006783782038837671, -0.014835560694336891, 0.008501917123794556, -0.015089159831404686, 0.007893279194831848, 0.017549073323607445, -0.017155993729829788, 0.013453444465994835, 0.004063929431140423, -0.010042533278465271, 0.04166636988520622, -0.007867919281125069, 0.0457746796309948, -0.02842848375439644, -0.03697478026151657, -0.04285828769207001, 0.004358738660812378, 0.0273633673787117, 0.0083243977278471, -0.002469423459842801, 0.03649294376373291, 0.015279359184205532, -0.03948541358113289, 0.0156597588211298, -0.02040206640958786, -0.003740590065717697, -0.04955330863595009, -0.030584078282117844, -0.01196988858282566, 0.013871883042156696, 0.019552508369088173, -0.0035884305834770203, -0.0008313303114846349, 6.820435373811051e-05, 0.005179766099900007, -0.012775066308677197, 0.00593105424195528, 0.00946559477597475, -0.02551209181547165, 7.494058081647381e-05, 0.08145610243082047, 0.007766479626297951, 0.00565526494756341, 0.02500489354133606, 0.04694123566150665, 0.0026437730994075537, 0.01020103320479393, 0.025524772703647614, 0.002318848855793476, -0.02184758149087429, -0.010131292976439, 0.011234450154006481, -0.004143178928643465, 0.012324927374720573, -0.01300964504480362, 0.0065301829017698765, 0.0025106333196163177, -0.014252281747758389, 0.004396778531372547, -0.010632151737809181, 0.004441158380359411, -0.02781984582543373, 0.0385470986366272, 0.005008586682379246, -0.005794744472950697, -0.017422273755073547, 0.006222693715244532, 0.029113203287124634, 0.010568751953542233, 0.02741408720612526, 0.021276984363794327, 0.039231814444065094, -0.00278800749219954, 0.014455161988735199, 0.010112273506820202, -0.013909922912716866, 0.004130498971790075, -0.018297191709280014, 0.02310289815068245, -0.012413687072694302, -0.02596857026219368, -0.013833843171596527, -0.00781719945371151, 0.008641396649181843, -0.01541883870959282, 0.03279039263725281, -0.0011118745896965265, -0.03446414694190025, -0.007455820217728615, -0.036366142332553864, 0.005778894759714603, 0.03377943113446236, -0.01318716537207365, -0.02144182287156582, -0.007836218923330307, 0.0019099198980256915, -0.010143972933292389, -0.003791309893131256, -0.012350287288427353, 0.013909922912716866, -0.03213103488087654, -0.01196988858282566, 0.02433285489678383, 0.029493601992726326, 0.02832704409956932, -0.020440105348825455, -0.021327704191207886, 0.0036771902814507484, 0.010321492329239845, 0.013580244034528732, -0.02206314168870449, -0.005607715342193842, 0.012242507189512253, 0.005566505249589682, -0.00824831798672676, 0.015228639356791973, -0.026044650003314018, 0.013630963861942291, 0.019932907074689865, 0.011697269044816494, 0.04458276182413101, 0.010340512730181217, 0.021910982206463814, 0.013504164293408394, -0.03159847483038902, -0.00708176102489233, -0.009877693839371204, 0.03664510324597359, -0.02779448591172695, -0.002632678020745516, -0.007722099311649799, -0.040601253509521484, -0.004111479036509991, -0.01758711412549019, 0.059748001396656036, 0.01370704360306263, -0.008134198375046253, 0.012933565303683281, -0.01830987073481083, -0.015545639209449291, 0.03301863372325897, -0.0307615976780653, -0.020021667703986168, 0.031471677124500275, 0.00685986177995801, -0.004938846919685602, 0.02066834457218647, 0.011640208773314953, -0.005553825292736292, 0.013973322696983814, -0.03078695759177208, -0.029620401561260223, 0.009281734935939312, -0.04174244776368141, -0.018652230501174927, -0.008222958073019981, 0.019083349034190178, 0.011988908052444458, 0.018614189699292183, -0.009719193913042545, 0.01418888196349144, 0.0025122184306383133, 0.026551850140094757, 0.008387797512114048, -0.01592603698372841, 0.0046155075542628765, -0.012730685994029045, 0.028098804876208305, 0.029899360612034798, 0.0051765963435173035, 0.020566904917359352, 0.007411440368741751, 0.006695022340863943, 0.01869027130305767, 0.0035884305834770203, 0.021987061947584152, 0.005731344688683748, 0.01176700834184885, 0.035808224231004715, -0.009915733709931374, -0.020731745287775993, 0.024155335500836372, -0.007772819604724646, -0.020085066556930542, -0.017929472029209137, -0.011817729100584984, -0.011652888730168343, -0.027033688500523567, 0.006162463687360287, 0.010917451232671738, 0.009700174443423748, 0.010543392039835453, -0.03205495327711105, 0.03268895298242569, -0.0027515527326613665, -0.023166298866271973, 0.026298251003026962, -0.023014139384031296, 0.002764232689514756, -0.03208031505346298, -0.009871353395283222, 0.01236930675804615, -0.007798179518431425, -0.028986403718590736, 0.006828161887824535, 0.0014169862261041999, -0.016585396602749825, 0.004919826984405518, -0.017409594729542732, -0.01973002776503563, -0.007531899958848953, -0.04191996902227402, -0.030127599835395813, 0.04184388741850853, -0.016978474333882332, 0.010911110788583755, 0.017447633668780327, 0.026222171261906624, -8.078525570454076e-05, -0.015520279295742512, -0.010923790745437145, -0.0008915601065382361, -0.016052836552262306, 0.009376835078001022, 0.015773877501487732, 0.0006252808379940689, 0.006523842923343182, -0.015494918450713158, 0.007956678979098797, 0.01191282831132412, 0.03608718514442444, -0.04742307588458061, 0.027059048414230347, 0.011709949001669884, -0.013580244034528732, -0.025309212505817413, 0.021137503907084465, 0.022988779470324516, -0.004913487005978823, 0.0033189812675118446, -0.0190579891204834, 0.003328491235151887, -0.016395196318626404, -6.260733061935753e-05, -0.04306116700172424, -0.01200792845338583, -0.00898375641554594, -0.005097346380352974, -0.024649854749441147, 0.027490166947245598, 0.008305378258228302, -0.00891401618719101, 0.03568142652511597, -0.0558425709605217, 0.02037670649588108, -0.028022725135087967, 0.009617754258215427, 0.02468789368867874, 0.012014267966151237, 0.004396778531372547, 0.006961301434785128, -0.006441422738134861, -0.00631145341321826, -0.006663322448730469, -0.006688682362437248, 0.030533358454704285, 0.011113990098237991, 6.741184915881604e-05, 0.00570915499702096, 0.004244618583470583, 0.019932907074689865, -0.017891433089971542, 0.006371682975441217, 0.01442980207502842, -0.007886938750743866, -0.010822351090610027, 0.003585260594263673, -0.012698986567556858, -0.010746271349489689, 0.006339983083307743, 0.021276984363794327, -0.004222428891807795, -0.020541545003652573, -0.0010445122607052326, 0.0007176068611443043, -0.008666756562888622, 0.0035979405511170626, -0.012026947923004627, -0.035808224231004715, -0.015089159831404686, 0.008616036735475063, 0.013833843171596527, 0.01614159718155861, -0.003334831213578582, -0.002699247794225812, -0.030457278713583946, -0.017155993729829788, -0.011773348785936832, 0.0024060236755758524, -0.016851674765348434, 0.02018650621175766, -0.040499813854694366, 0.017904112115502357, -0.008077139034867287, -0.004539427813142538, 0.027185847982764244, -0.004742307588458061, -0.03474310785531998, -0.008489237166941166, 0.015279359184205532, -0.019806107506155968, 0.023356497287750244, -0.020541545003652573, -0.045850757509469986, 0.015887998044490814, 0.0019463748903945088, -0.004380928352475166, 0.0009509974624961615, 0.00021754066983703524, 0.04478564113378525, 0.016636116430163383, 0.057922087609767914, 0.027084408327937126, -0.046890515834093094, 0.0032429012935608625, -0.01010593306273222, 0.012198127806186676, 0.043999481946229935, 0.005965924356132746, -0.012534147128462791, -0.004422138445079327, 0.027287287637591362, 0.0010944396490231156, -0.03137023746967316, -0.012217147275805473, -0.000986659899353981, -0.049248989671468735, -0.049198269844055176, -0.010866731405258179, 0.01582459732890129, 0.008077139034867287, -0.017117954790592194, 0.011335889808833599, 0.02045278623700142, -0.009421215392649174, 0.03836957737803459, 0.031065918505191803, 0.009801614098250866, -0.033424392342567444, -0.024345535784959793, 0.0038515396881848574, 0.014759480953216553, -0.010739931836724281, 0.04126061126589775, -0.03492062911391258, -0.00473913736641407, -0.004907147027552128, -0.013542204163968563, -0.0009716024505905807, 0.03276503458619118, 0.0051765963435173035, 0.004957866854965687, -0.0030114920809865, -0.010182012803852558, 0.05614688992500305, -0.017384234815835953, -0.0073226806707680225, -0.01415084209293127, -0.039688292890787125, 0.014049402438104153, 0.004843747243285179, -0.02059226483106613, -0.00391493970528245, -0.004209748934954405, -0.022671779617667198, 0.003038436872884631, -0.009408535435795784, -0.03073623776435852, -0.0012291641905903816, -0.023381857201457024, 0.009795273654162884, 0.01710527390241623, -0.012908205389976501, 0.027591606602072716, 0.014797520823776722, 0.018880469724535942, -0.029645761474967003, -0.003607450518757105, 0.008153218775987625, 0.005490425508469343, 0.0022348440252244473, 0.031040558591485023, 0.011595829389989376, 0.002179369330406189, -0.014848240651190281, 0.006555542815476656, -0.00840681791305542, -0.01847471110522747, 0.019374988973140717, 0.02444697543978691, -0.01299696508795023, 0.0064160628244280815, -0.0014526486629620194, 0.010936470702290535, 0.003616960486397147, 0.03831885755062103, -0.026120731607079506, -0.026678649708628654, 0.01938766799867153, 0.025372613221406937, 0.015773877501487732, -0.009040815755724907, 0.008704797364771366, -0.02120090462267399, 0.04937578737735748, -0.026044650003314018, 0.024168016389012337, 0.026780089363455772, 0.00036593590630218387, -0.004209748934954405, 0.016217676922678947, -0.028529923409223557, 0.016319116577506065, -0.005439705681055784, 0.047270916402339935, -0.002876767423003912, 0.0023790786508470774, 0.010892091318964958, -0.005550655070692301], [-0.006186467595398426, -0.002816400956362486, 0.033975839614868164, -0.005755470134317875, -0.04683944955468178, 0.05222359672188759, -0.027026839554309845, 0.02718597650527954, 0.052356213331222534, 0.013884739950299263, -0.0010733488015830517, -0.0006779917166568339, -0.010244471952319145, 0.024228673428297043, 0.001363443094305694, 0.022531207650899887, -0.006037276238203049, 0.01357972715049982, -0.0016295008827000856, 0.023127973079681396, 0.014667166396975517, 0.013387436047196388, -0.015011963434517384, 0.05548591539263725, -0.041243117302656174, -0.003147937124595046, 0.0034811312798410654, -0.03803384304046631, 0.013268082402646542, -0.03922737389802933, 0.05527373403310776, -0.03217228129506111, 0.05909303203225136, 0.01306253019720316, -0.022730128839612007, 0.006405281368643045, -0.06726208329200745, 0.007824257016181946, 0.0402352474629879, -0.04031481593847275, -0.021377461031079292, -0.032410990446805954, 0.012936546467244625, 0.007207599002867937, -0.07580246031284332, 0.05360278859734535, 0.028963010758161545, -0.044319771230220795, -0.03859082609415054, 0.03609767183661461, -0.01709401234984398, -0.03986392542719841, -0.017849914729595184, -0.08683598786592484, 0.019069967791438103, 0.03206619247794151, 0.011186034418642521, 0.006070429924875498, 0.04219793900847435, -0.025568079203367233, -0.0027302014641463757, -0.026854440569877625, -0.002861158223822713, 0.015423068776726723, -0.0497569665312767, 0.0001956064224941656, 0.014985441230237484, 0.07060397416353226, -0.03307406231760979, 0.003507654182612896, 0.020038053393363953, 0.04625594615936279, -0.0249050073325634, -0.03493066504597664, -0.03219880536198616, 0.04591114819049835, 0.027477728202939034, 0.012830454856157303, 0.012114336714148521, 0.015568944625556469, 0.005261481273919344, -0.001637789304368198, -0.007585550658404827, 0.023844091221690178, 0.015794388949871063, 0.01652376912534237, -0.07208925485610962, -0.015157840214669704, 0.01860581710934639, 0.002489837585017085, 0.028856920078396797, 0.015462853014469147, -0.011079942807555199, 0.03935999050736427, -0.011590508744120598, 0.011537463404238224, -0.008553636260330677, 0.0029208348132669926, -0.03978435695171356, 0.049253031611442566, 0.017226627096533775, -0.050817884504795074, -0.03861735016107559, 0.0046514542773365974, 0.06673162430524826, -0.05291319265961647, -0.049279555678367615, 0.0344267301261425, 0.0031064951326698065, -0.03999653831124306, -0.01835384964942932, -0.0038027213886380196, 0.002612506039440632, 0.014693688601255417, 0.008454175665974617, 0.011060050688683987, -0.04710467904806137, -0.03185400739312172, -0.018818000331521034, -0.02718597650527954, -0.031270503997802734, -0.032357942312955856, 0.03867039456963539, -0.048908233642578125, -0.00537088792771101, -0.02071438729763031, -0.03450629860162735, 0.023486031219363213, -0.06545852869749069, -0.023923659697175026, 0.06869432330131531, -0.01798252947628498, 0.035089801996946335, -0.06163923069834709, -0.0023373309522867203, -3.7751105992356315e-06, 0.021390723064541817, -1.936120133905206e-05, -0.04766165837645531, -0.07484763860702515, 0.004571885801851749, 0.0073004295118153095, 0.0017107273451983929, 0.014892610721290112, -0.04636203497648239, -0.018592555075883865, -0.0031976676546037197, 0.024546947330236435, -0.00871940515935421, -0.0022909159306436777, -0.06100267916917801, 0.04530112072825432, -0.0327027402818203, 0.008520483039319515, -0.03689336031675339, 0.007731426507234573, 0.012903393246233463, 0.0306074321269989, -0.012306627817451954, 0.058456480503082275, -0.046521175652742386, 0.04917346313595772, -0.04060656577348709, -0.041561391204595566, 0.03935999050736427, -0.04917346313595772, 0.024175627157092094, 0.025634387508034706, -0.08959437161684036, -0.0403413362801075, -0.032808832824230194, -0.025554819032549858, -0.00021342649415601045, -0.012903393246233463, -0.035089801996946335, -0.05217055231332779, 0.02661573514342308, -0.030740046873688698, 0.001515949727036059, 0.01477325800806284, 0.028246892616152763, 0.042330555617809296, -0.07071006298065186, -0.03742381930351257, -0.017399026080965996, 0.0018002421129494905, -0.038352120667696, 0.016391154378652573, 0.01607288047671318, -0.027026839554309845, 0.028883442282676697, -0.021191800013184547, 0.0306074321269989, 0.004581831861287355, -0.026456596329808235, 0.029997404664754868, -0.01701444387435913, -0.020197192206978798, 0.016006572172045708, -0.009886412881314754, 0.013559835031628609, -0.021921180188655853, 0.047714706510305405, 0.0064284889958798885, -0.04638855904340744, -0.02524980530142784, 0.004432640504091978, 0.01018479559570551, 0.04856343939900398, 0.01644420064985752, 0.02222619391977787, 0.0039021822158247232, -0.07490067929029465, 0.026363767683506012, -0.02835298515856266, 0.026005707681179047, -0.012154120951890945, -0.03882953152060509, 0.019613686949014664, 0.03405540809035301, 0.029626084491610527, -0.032357942312955856, 0.04821864143013954, 0.035063277930021286, 0.008089485578238964, 0.01652376912534237, -0.027477728202939034, 0.01823449693620205, -0.03405540809035301, -0.02883039601147175, -0.025236543267965317, 0.012565226294100285, -0.01684204488992691, -0.01940150372684002, -0.017650993540883064, 0.0007592181209474802, -0.006057168357074261, -0.01989217847585678, -0.009329431690275669, -0.020303282886743546, 0.007996656000614166, 0.002388719003647566, -0.012147489935159683, 0.054292384535074234, -0.0028296622913330793, -0.0023307001683861017, -0.004561939742416143, -0.012770778499543667, -0.004618300590664148, 0.009157032705843449, 0.021722258999943733, 0.04914694279432297, 0.03593853488564491, -0.06949000805616379, 0.009322800673544407, -0.002050552051514387, 0.05649378523230553, 0.0059311846271157265, 0.014919133856892586, -0.020303282886743546, 0.030925706028938293, 0.01900366134941578, -0.014799780212342739, -0.036919884383678436, -0.03135007247328758, -0.009236601181328297, 0.05946435034275055, 0.003484446555376053, 0.03867039456963539, 0.027530774474143982, -0.002846239134669304, 0.02619136869907379, 0.008361345157027245, 0.002007452305406332, -0.03323319926857948, 0.006610834039747715, -0.0046249316073954105, -0.005636116955429316, -0.0023472770117223263, 0.003965174313634634, -0.000501863076351583, -0.07373367249965668, -0.004140888340771198, -0.05071179196238518, -0.010078703984618187, -0.013075792230665684, 0.011298757046461105, 0.010768298991024494, -0.004306656774133444, 0.00099378009326756, 0.0012333150953054428, -0.009137140586972237, 0.005162020213901997, -0.02542220428586006, 0.010198056697845459, 0.028193846344947815, 0.037344250828027725, 0.00484374538064003, 0.022517945617437363, 0.04243664816021919, -2.419178963464219e-05, 0.036283332854509354, -0.06323060393333435, 0.029758699238300323, 0.0109871132299304, 0.046972062438726425, 0.01929541304707527, -0.042330555617809296, -0.0012921626912429929, -0.04363017901778221, 0.005589702166616917, -0.002403638092800975, -0.05068527162075043, -0.0478738434612751, 0.02151007577776909, -0.031960099935531616, 0.0249315295368433, 0.016788998618721962, -0.013632772490382195, 0.022040532901883125, 0.027292069047689438, 0.0038756593130528927, -0.008228731341660023, 0.012677947990596294, 0.014667166396975517, -0.015436329878866673, 0.025767002254724503, 0.0021118861623108387, 0.031270503997802734, 0.030421771109104156, -0.0018930722726508975, -0.05596332624554634, 0.057448610663414, -0.04819211736321449, -0.007618704345077276, 0.012425980530679226, 0.0006688744761049747, 0.02883039601147175, 0.014110185205936432, -0.07198315858840942, 0.02011762373149395, -0.014415198005735874, -0.020064577460289, -0.023844091221690178, -0.010894282720983028, -0.03108484297990799, 0.013964309357106686, 0.010489808395504951, 0.024865223094820976, 0.0654054805636406, 0.002168247476220131, 0.0023307001683861017, -0.001612924155779183, -0.0077247959561645985, -0.031217457726597786, 0.011849107220768929, 0.07039178907871246, -0.0025296220555901527, -0.01417649257928133, 0.017345979809761047, -0.033577997237443924, 0.029705652967095375, -0.026509642601013184, 0.022517945617437363, -0.01570155844092369, 0.027504252269864082, -0.05914607644081116, 0.028246892616152763, 0.00951509177684784, -0.04299362748861313, -0.03792775422334671, -0.01800905168056488, -0.01880473829805851, 0.024294979870319366, -0.02334015630185604, 0.003255686489865184, 0.0019461180781945586, 0.01381843350827694, 0.019069967791438103, -0.030580908060073853, -0.0022096894681453705, 0.018645601347088814, 0.01587395742535591, 0.006760025396943092, 0.043444517999887466, 0.026151584461331367, -0.0766511932015419, -0.008951480500400066, 0.02567417174577713, -1.7716471120365895e-05, -0.006836278364062309, 0.006597572471946478, 0.0012457476695999503, -0.013791910372674465, -0.021788565441966057, 0.04779427498579025, 0.034294113516807556, 0.07341539859771729, 0.051984891295433044, 0.0007024425431154668, 0.008169054053723812, -0.013108945451676846, 0.028167324140667915, -0.01495891809463501, -0.047316860407590866, 0.01647072285413742, -0.03638942539691925, -0.020608296617865562, 0.0011918729869648814, -0.007797733880579472, 0.03402888774871826, -0.01235304307192564, 0.04108398035168648, -0.007671750150620937, 0.008188947103917599, -0.04100440815091133, 0.004406117368489504, 0.040049586445093155, 0.04458500072360039, 0.03715858981013298, 0.04607028514146805, -0.0068429093807935715, -0.0016062933718785644, -0.008401130326092243, 0.0077645801939070225, 0.011650186032056808, -0.03373713418841362, 0.028724305331707, 0.003756306366994977, -0.03569982945919037, 0.0010468258988112211, 0.026337243616580963, 0.04142877459526062, 0.00803644023835659, 0.05665292218327522, -0.02644333615899086, 0.015091532841324806, -0.009329431690275669, 0.035514168441295624, -0.017425548285245895, -0.002206374192610383, -0.0004600066167768091, 0.011398217640817165, 0.03917432948946953, -0.044691093266010284, -0.03105832077562809, -0.021960964426398277, 0.013261452317237854, 0.015091532841324806, 0.021443767473101616, -0.04089831933379173, 0.05606941878795624, -0.061904460191726685, 0.029334332793951035, -0.059994809329509735, -0.03912128508090973, -0.016218755394220352, -0.051162682473659515, 0.02467956207692623, -0.007194337900727987, 0.018048835918307304, 0.02356559969484806, 0.022067056968808174, 0.004750915337353945, 0.03209271281957626, -0.010947328992187977, -0.01666964590549469, 0.014149969443678856, -0.02173551917076111, -0.03386974707245827, -0.008679619990289211, 0.052276644855737686, 0.02698705531656742, -0.006783232558518648, 4.372134935692884e-05, 0.01721336506307125, -0.010509700514376163, -0.07246057689189911, -0.002668867353349924, 0.00830829981714487, 0.028936488553881645, 0.03028915636241436, 0.020873526111245155, 0.02353907749056816, 0.04495632275938988, 0.033180154860019684, 0.06423847377300262, -0.0008043899433687329, -0.037715569138526917, -0.028856920078396797, 0.007525874301791191, 0.0007658488466404378, -0.01803557574748993, -0.015290454030036926, 0.0015805993461981416, -0.010562746785581112, 0.028644736856222153, -0.005480295047163963, -0.0019610372837632895, -0.0020820479840040207, -0.025607863441109657, -0.0306074321269989, 0.031615301966667175, 0.005831723567098379, 0.051162682473659515, 0.021695734933018684, -0.03917432948946953, -0.0005321157514117658, -0.009110617451369762, -0.006372127681970596, -0.03760947659611702, 0.010549484752118587, 0.012034768238663673, -0.03994349390268326, -0.01132528018206358, -0.020754173398017883, 0.013128837570548058, -0.008527114056050777, -0.002314123325049877, 0.038086891174316406, -0.0006021528388373554, 0.011398217640817165, 0.019242366775870323, 0.02373799867928028, 0.0015922030434012413, 0.004492316860705614, 0.006166575010865927, -0.11648859828710556, 0.006982154678553343, -0.03381670266389847, -0.007605442777276039, -0.015277192927896976, -0.00080397556303069, 0.012087813578546047, 0.03416150063276291, -0.027849050238728523, 0.007638596463948488, 0.023645170032978058, 0.009336062707006931, -0.01664312183856964, 0.017332717776298523, -0.01977282576262951, 0.018459942191839218, 0.015343500301241875, 0.010648946277797222, -0.00480727618560195, 0.004240349400788546, -0.01023120991885662, -0.005341049749404192, 0.008626574650406837, -0.0024765762500464916, -0.007293798495084047, -0.0010012396378442645, 0.013738864101469517, 0.005215066019445658, -0.016165710985660553, 0.05055265501141548, -0.03532850742340088, 0.011404848657548428, 0.014295845292508602, -0.01738576404750347, -0.0025395681150257587, -0.04177357256412506, -0.04665378853678703, -0.02227924019098282, 0.030846137553453445, -0.01081471424549818, 0.006915847305208445, 0.0051686507649719715, -0.03564678505063057, -0.0401821993291378, 0.04869605228304863, 0.0018449994968250394, 0.05262144282460213, 0.05052613094449043, -0.00588476937264204, 0.015197624452412128, -0.021205062046647072, 0.008944849483668804, -0.012757517397403717, 0.005589702166616917, -0.01877821609377861, 0.016391154378652573, -0.023313632234930992, -0.025793524459004402, 0.035434599965810776, -0.004571885801851749, -0.03323319926857948, -0.04784731939435005, 0.04633551463484764, 0.012856977991759777, 0.024865223094820976, -0.001208449830301106, -0.002279312117025256, -0.0055731250904500484, 0.045062415301799774, -0.013619511388242245, 0.030580908060073853, 0.006630726158618927, 0.033127106726169586, -0.008586790412664413, -0.023671692237257957, -0.03386974707245827, 0.02906910330057144, -0.0345328226685524, 0.023857353255152702, -0.015210885554552078, -0.020038053393363953, 0.01855277083814144, 0.009236601181328297, 0.035487644374370575, -0.0013974255416542292, 0.028856920078396797, 0.005523394793272018, -0.01746533252298832, -0.004363017622381449, -0.02840602956712246, -0.0268411785364151, -0.029626084491610527, 0.017624469473958015, -0.03071352280676365, -0.0028628159780055285, 0.013871478848159313, -0.012797301635146141, -0.02034306712448597, 0.022093579173088074, -0.0023704846389591694, -0.022637298330664635, 0.07251361757516861, -0.029281286522746086, 0.008354715071618557, 0.010058811865746975, -0.0019759563729166985, -0.0077645801939070225, -0.01592700369656086, 0.014322368428111076, 0.021138755604624748, -0.03760947659611702, -0.0023605385795235634, -0.008613313548266888, 0.018473202362656593, -0.007313690613955259, 0.012936546467244625, -0.03299449384212494, 0.03686683624982834, -0.019467812031507492, 0.02658921107649803, 0.020011531189084053, 0.031270503997802734, -0.006501426920294762, 0.037715569138526917, -0.02664225734770298, -0.004038112238049507, -0.004800645634531975, 0.025435464456677437, -0.028989534825086594, -0.020634818822145462, 0.06376106292009354, 0.022544467821717262, 0.0022146624978631735, -0.016192233189940453, -0.019441287964582443, -0.032039668411016464, -0.034267593175172806, 0.0013128838036209345, 0.0038524519186466932, 0.021045925095677376, 0.018340587615966797, 0.029307808727025986, 0.014932394959032536, -0.021868133917450905, 0.007187706883996725, 0.01178279984742403, -0.027146192267537117, 0.0064085968770086765, 0.016735952347517014, -0.006123475730419159, -0.013367543928325176, 0.0012109363451600075, 0.020210452377796173, 0.0046514542773365974, 0.01855277083814144, -0.00881886575371027, 0.006305820308625698, 0.005225012078881264, -0.01273762434720993, -0.028591690585017204, 0.003065053140744567, -0.01900366134941578, 0.019043445587158203, -0.014653904363512993, 0.04267535358667374, 0.022531207650899887, -0.02143050730228424, 0.004969729110598564, 0.012386196292936802, 0.010105226188898087, 0.006975523661822081, -0.01860581710934639, -0.01952085830271244, 0.013566465117037296, -0.0005499358521774411, 0.013069161213934422, -0.03296796977519989, -0.05585723742842674, 0.025952661409974098, 0.019759563729166985, -0.007074984721839428, 0.0037264679558575153, -0.011749646626412868, 0.016709430143237114, -0.024838699027895927, -0.028167324140667915, 0.013201775960624218, 0.00985988974571228, 0.04951826110482216, -0.03938651457428932, 0.011663447134196758, 0.036919884383678436, 0.006289243698120117, -0.002435134258121252, 0.0018201343482360244, -0.011849107220768929, -0.03034220263361931, -0.021152015775442123, 0.024918269366025925, -0.03938651457428932, 0.014839565381407738, -0.012618271633982658, -0.008401130326092243, -0.014879349619150162, -0.011656816117465496, -0.010085334070026875, 0.0017140427371487021, -0.021178539842367172, 0.03174791485071182, -0.01798252947628498, 0.017730562016367912, 0.010476547293365002, 0.024613255634903908, 0.0344797745347023, -0.04919998720288277, 0.026575950905680656, -0.012512180022895336, 0.01761120930314064, 0.01377864833921194, -0.02917519398033619, 0.03599157929420471, -0.05909303203225136, 0.020873526111245155, 0.017425548285245895, 0.01080145314335823, 0.011192665435373783, -0.038537781685590744, 0.024056274443864822, 0.004127626772969961, 0.00976042915135622, 0.018645601347088814, 0.019759563729166985, 0.03410845622420311, 0.027371637523174286, 0.012770778499543667, 0.02572721801698208, -0.0065279495902359486, -0.001256522606126964, -0.0105428546667099, -0.06402628868818283, -0.039678264409303665, -0.005297950003296137, 0.032357942312955856, -0.013261452317237854, -0.009581399150192738, 0.007983393967151642, -0.0026970477774739265, 0.025395680218935013, 0.0068230172619223595, -0.03787470608949661, -0.019985008984804153, -5.884769416297786e-05, -0.02296883426606655, 0.0060306452214717865, 0.013082422316074371, -0.019242366775870323, -0.027902094647288322, -0.02026349864900112, -0.004522155039012432, 0.007797733880579472, -0.0402352474629879, 0.03333929181098938, 0.01689508929848671, -0.008427652530372143, -0.035036757588386536, 0.010078703984618187, -0.035805922001600266, -0.027902094647288322, 0.0012208824045956135, 0.012120966799557209, -0.06784559041261673, 0.029228240251541138, 0.03336581215262413, 0.009395739063620567, 0.019759563729166985, -0.022212931886315346, 0.02148355171084404, 0.029254762455821037, 0.046202898025512695, -0.06476893275976181, 0.04302015155553818, 0.04378931596875191, -0.019481074064970016, -0.037052497267723083, 0.02726554498076439, 0.023605383932590485, 0.01863233931362629, 0.03219880536198616, -0.011968460865318775, -0.0364689938724041, 0.044664569199085236, -0.00995935034006834, -0.03861735016107559, 0.03941303491592407, -0.00941563118249178, 0.05723642557859421, -0.00458846241235733, 0.01808862015604973, 0.01798252947628498, -0.028618212789297104, 0.03410845622420311, 0.010576007887721062, 0.004923314321786165, -0.006173206027597189, 0.04821864143013954, 0.02792861871421337, -0.017054228112101555, -0.0124525036662817, -0.013559835031628609, -0.011026897467672825, 0.014852826483547688, -0.021403983235359192, 0.0478738434612751, 0.08259232342243195, -0.006968893110752106, -0.0016013203421607614, 0.017757084220647812, -0.023525815457105637, 0.009395739063620567, -0.004263557028025389, -0.027769479900598526, -0.016086140647530556, 0.007883933372795582, -0.03445325419306755, -0.018022313714027405, -0.0365220382809639, 0.0036071150097995996, 0.03768904507160187, -0.02239859290421009, 0.013685818761587143, 0.026058753952383995, -0.01701444387435913, 0.0028628159780055285, -0.025753740221261978, -0.008009917102754116, -0.0077446880750358105, -0.007015308365225792, 0.0028429238591343164, 0.0027020208071917295, 0.0344797745347023, 0.005765416193753481, 0.010164903476834297, -0.01062905415892601, 0.019308675080537796, -0.02190791815519333, -0.01979934796690941, -0.022610776126384735, -0.011331911198794842, 0.023154495283961296, -0.012014875188469887, 0.050817884504795074, 0.03906823694705963, -0.004505578428506851, 0.004353071562945843, 0.016457462683320045, 0.030130019411444664, -0.03211923688650131, -0.03172139450907707, 0.003590538166463375, -0.030421771109104156, 0.04795341193675995, 0.008779081515967846, 0.023287110030651093, -0.030501339584589005, -0.006149998400360346, 0.009024417959153652, -0.04071265831589699, 0.02227924019098282, -0.005599648226052523, -0.02957303822040558, -0.0009407342877238989, -0.0023721421603113413, 0.023724738508462906, -0.04267535358667374, 0.013347651809453964, -0.023631907999515533, -0.0051388125866651535, -0.00881886575371027, 0.03604462742805481, 0.012578487396240234, -0.017902961000800133, -0.019428027793765068, 0.05819125100970268, 0.012479026801884174, -0.0030915760435163975, 0.018499726429581642, -0.008003286086022854, 0.020449159666895866, -0.0015457880217581987, -0.013467004522681236, 0.01090091373771429, -0.024666300043463707, 0.015621990896761417, 0.037742093205451965, -0.016019834205508232, -0.009820105507969856, -0.04437281936407089, 0.002007452305406332, 0.015210885554552078, -0.0017571423668414354, 0.02726554498076439, -0.02949346974492073, -0.028644736856222153, 0.033153630793094635, 0.040049586445093155, 0.007446305360645056, 0.03307406231760979, 0.002314123325049877, -0.02265056036412716, 0.028299938887357712, 0.006163259968161583, -0.027371637523174286, -0.040023062378168106, 0.03896214812994003, -0.010025657713413239, -0.0025810101069509983, -0.016682906076312065, -0.0021848243195563555, -0.008394499309360981, 0.03373713418841362, 0.014826303347945213, 0.026337243616580963, 0.01168333925306797, -0.03185400739312172, -0.020077837631106377, 0.032039668411016464, 0.014508028514683247, -0.008314930833876133, -0.02883039601147175, -0.017452070489525795, 0.010005765594542027, 0.01712053455412388, -0.027849050238728523, -0.005171966273337603, -0.02544872649013996, 0.027769479900598526, -0.015741344541311264, 0.030076973140239716, 0.0009274728363379836, -0.03257012739777565, -0.04935912415385246, -0.009369215928018093, -0.021377461031079292, -0.01572808250784874, 0.017796868458390236, 0.050393518060445786, 0.021894657984375954, 0.021191800013184547, 0.03994349390268326, -0.006083691027015448, 0.01914953626692295, -0.0073203216306865215, -0.008076224476099014, 0.001008699182420969, 0.028140801936388016, -0.0023058350197970867, 0.029440423473715782, -0.004455848131328821, 0.010264364071190357, 0.028989534825086594, -0.005218381527811289, 0.0035209155175834894, 0.007068354170769453, 0.020236976444721222, 0.011093204841017723, -0.028963010758161545, 0.020435897633433342, -0.030395248904824257, 0.015595467761158943, 0.005221696570515633, 0.0011230792151764035, 0.019162798300385475, -0.018619079142808914, 0.032782308757305145, 0.004949836991727352, 0.0007273077499121428, -0.010430132038891315, -1.2516790775407571e-05, 0.004923314321786165, 0.0091039864346385, 0.0181549284607172, -0.008228731341660023, -0.010416870936751366, 0.005785308312624693, 0.0013336047995835543, -0.01989217847585678, 0.0345328226685524, -0.015887219458818436, -0.006876063067466021, 0.03283535689115524, 0.0013758756686002016, 0.008348084054887295, -0.0220007486641407, 0.026058753952383995, 0.007923717610538006, 0.006199728697538376, -0.028087755665183067, 0.012691210024058819, -0.03068700060248375, 0.006355551071465015, 0.019878916442394257, 0.02917519398033619, -0.010450024157762527, 0.013752126134932041, 0.0032076137140393257, -0.011643555015325546, 0.008527114056050777, 0.016006572172045708, -0.009720643982291222, 0.012591748498380184, -0.00890506524592638, -0.005291319452226162, -0.0021168591920286417, -0.024812176823616028, 0.005278057884424925, -0.01570155844092369, -0.02056851238012314, -0.0006784061552025378, 0.021960964426398277, 0.021324414759874344, -0.007028569467365742, 0.015542421489953995, 0.014295845292508602, 0.0019859024323523045, 0.021006140857934952, -0.028671259060502052, -0.00497967517003417, -0.018937353044748306, -0.013241560198366642, 0.004900106694549322, -0.016391154378652573, -0.0016916639870032668, -0.023101449012756348, -0.003514284733682871, -0.015078270807862282, 0.0060107531026005745, 0.001013672212138772, 0.005964338313788176, -0.008891803212463856, -0.022809697315096855, -0.0005080793634988368, 0.042330555617809296, 0.02715945430099964, 0.004243664909154177, -0.007174445781856775, 0.022730128839612007, 0.0007389115635305643, 0.004439271055161953, 0.0011023582192137837, -0.006017384119331837, -0.047369908541440964, -2.651642944329069e-06, -0.026536164805293083, -0.01478651911020279, 0.011444632895290852, -0.0004935746546834707, 0.015714820474386215, 0.026934009045362473, -0.02379104495048523, 0.009196816943585873, 0.015807650983333588, 0.012916654348373413, 0.022637298330664635, 0.005815146956592798, -0.010503070428967476, -0.017796868458390236, 0.025979185476899147, 0.021470291540026665, 0.0024666301906108856, 0.022756651043891907, 0.025568079203367233, 0.00796350184828043, -0.005433879792690277, 0.04185314103960991, -0.008195577189326286, 0.029732175171375275, 0.02173551917076111, 0.019481074064970016, -0.012837085872888565, 0.016364632174372673, 0.0033153630793094635, -0.0381929837167263, -0.01960042677819729, -0.024294979870319366, 0.020674603059887886, 0.010251102037727833, -0.008911696262657642, 0.035089801996946335, 0.020157407969236374, 0.013659295625984669, 0.031137889251112938, 0.042410124093294144, 0.021244846284389496, -0.0041972496546804905, -0.03450629860162735, -0.04763513430953026, 0.024812176823616028, 0.016709430143237114, -0.004508893936872482, -0.001062573865056038, 0.011610401794314384, 0.03169487044215202, -0.004810591693967581, -0.010708622634410858, 0.0017256464343518019, 0.014335629530251026, -0.002324069384485483, 0.00014556515088770539, 0.013036007061600685, 0.025011098012328148, -0.014441721141338348, -0.028538644313812256, -0.03209271281957626, 0.0006891810917295516, 0.013898001983761787, -0.018937353044748306, 0.030474817380309105, 0.011371695436537266, -0.02601896971464157, 0.013533311896026134, 0.0843958780169487, 0.003404877847060561, 0.011351803317666054, 0.01644420064985752, 0.04882866516709328, 0.016019834205508232, 0.008314930833876133, 0.04254273697733879, -0.034347161650657654, -0.04323233291506767, -0.01934845931828022, 0.041216593235731125, -0.01081471424549818, 0.020475681871175766, -0.02153659798204899, 0.035912010818719864, -0.007326952181756496, 0.008752558380365372, 0.02837950736284256, 0.0002824274997692555, 0.010695361532270908, -0.010171533562242985, 0.01595352776348591, 0.0009672571904957294, 0.013977570459246635, -0.012346412055194378, -0.009654337540268898, 0.01513131707906723, 0.025143712759017944, 0.03034220263361931, 0.01669616810977459, 0.022809697315096855, -0.015688298270106316, -0.003965174313634634, 0.02242511510848999, 0.00029858987545594573, -0.0032241905573755503, 0.008699513040482998, 0.032384466379880905, 0.007260644808411598, -0.018619079142808914, -0.012359673157334328, 0.010317409411072731, 0.009442154318094254, -0.03405540809035301, 0.0018632339779287577, -0.013539942912757397, -0.010973851196467876, -0.00196932558901608, -0.02800818718969822, 0.024772392585873604, 0.0034380315337330103, -0.01133854128420353, -0.0143621526658535, -0.0005093226209282875, 0.02180182747542858, -0.011351803317666054, -0.021403983235359192, -0.027292069047689438, 0.013977570459246635, 0.007108138408511877, 0.01877821609377861, 0.01997174695134163, 0.014667166396975517, -0.003819298231974244, 0.0033684088848531246, -0.015157840214669704, 0.0096145523712039, -0.0019013606943190098, 0.01721336506307125, 0.0008155793184414506, -0.0024086113553494215, 0.011033528484404087, 0.0076584885828197, 0.007651858031749725, 0.009541614912450314, -0.032437510788440704, 0.013108945451676846, 0.0009556533768773079, 0.013765387237071991, 0.02689422480762005, 0.003560699988156557, 0.03832559660077095, 0.02567417174577713, -0.008467436768114567, 0.015582206659018993, -0.00025279642431996763, 0.024493902921676636, 0.0022958889603614807, 0.025316111743450165, 0.020329806953668594, -0.021669212728738785, -0.012518811039626598, -0.015078270807862282, 0.0439484529197216, -0.0016502219950780272, -0.026934009045362473, -0.02627093717455864, -0.004296710714697838, 0.00795024074614048, 0.035832442343235016, -0.04177357256412506, -0.04302015155553818, 0.023777782917022705, 0.008898434229195118, 0.0020837057381868362, 0.019109752029180527, 0.0009506803471595049, 0.002841266104951501, 0.023406462743878365, -0.035142846405506134, -0.016059618443250656, 0.0013767045456916094, -0.015940265730023384, -0.00040219497168436646, -0.022531207650899887, 0.0181549284607172, 0.004734338261187077, 0.01929541304707527, -0.013659295625984669, 0.003819298231974244, -0.02877735160291195, -0.0011711519910022616, -0.014401936903595924, -0.01704096607863903, 0.02083374187350273, -0.025806786492466927, 0.048908233642578125, 0.050022196024656296, 0.033206675201654434, 0.0008744269725866616, 0.010297517292201519, 0.01218064408749342, 0.02245163917541504, -0.005085766781121492, 0.023101449012756348, -0.0059908609837293625, 0.003915443550795317, 0.0076584885828197, -0.0015433015068992972, -0.04591114819049835, 0.011743015609681606, 0.016457462683320045, 0.009263124316930771, -0.0287508275359869, 0.022902527824044228, -0.001368416124023497, -0.03325972333550453, -0.0008077053353190422, -0.00527142733335495, 0.012684579007327557, 0.0402882918715477, -0.005649378523230553, 0.028963010758161545, 0.019507596269249916, -0.041216593235731125, 0.012969700619578362, -0.02912214957177639, 0.016430938616394997, 0.008268515579402447, -0.017876436933875084, -0.013964309357106686, -0.020356329157948494, -0.008692882023751736, -0.007240752689540386, 0.015476115047931671, -0.017624469473958015, 0.01900366134941578, -0.02883039601147175, -0.0420653261244297, -0.015157840214669704, -0.01282382383942604, -0.036283332854509354, 0.04031481593847275, -0.03177443891763687, -0.0029788536485284567, 0.0031396488193422556, 0.02373799867928028, -0.028856920078396797, 0.00022938167967367917, -0.028485599905252457, -0.010920805856585503, -0.0006518832524307072, 0.0036601608153432608, -0.0034015625715255737, -0.018619079142808914, 0.002851212164387107, -0.014043877832591534, 0.00622625183314085, 0.003713206620886922, 0.04641508311033249, -0.010953959077596664, 0.005831723567098379, 0.007293798495084047, 0.009097356349229813, -0.032039668411016464, 0.0027550666127353907, 0.028936488553881645, -0.011040158569812775, -0.015515899285674095, -0.005851615685969591, 0.021947702392935753, -0.015489376150071621, 0.03450629860162735, -0.049995675683021545, -0.00566264009103179, 0.00020192633382976055, -0.015409807674586773, -0.036256808787584305, 0.03554069250822067, -0.0073004295118153095, 0.012803931720554829, 0.005818461999297142, -0.03763600066304207, 0.004306656774133444, -0.024374548345804214, 0.02552829496562481, 0.005818461999297142, 0.027689911425113678, -0.004449217114597559, 0.01533023826777935, -0.017902961000800133, -0.006319081876426935, -0.014322368428111076, 0.013467004522681236, 0.01957390271127224, 0.0239103976637125, 9.251935262000188e-05, 0.0020837057381868362, -0.023353416472673416, 0.045460257679224014, -0.025992445647716522, -0.006783232558518648, -0.024043012410402298, -0.028485599905252457, 0.015250669792294502, 0.016006572172045708, 0.0011098177637904882, 0.00038085231790319085, -0.028963010758161545, -0.002602559980005026, 0.002451710868626833, -0.03410845622420311, -0.01383169461041689, 0.009309539571404457, 0.038935624063014984, -0.001954406499862671, -0.015356761403381824, -0.03172139450907707, -0.016987919807434082, 0.00873266626149416, 0.0035109694581478834, 0.03031568042933941, -0.005181912332773209, -0.014600859023630619, -0.036150719970464706, 0.016139186918735504, -0.025806786492466927, 0.03371061012148857, -0.018022313714027405, 0.02430824190378189, -0.027477728202939034, 0.0036502147559076548, -0.020051315426826477, -0.013460373505949974, 0.01313546858727932, -0.01689508929848671, -0.031615301966667175, -0.03291492536664009, 0.04479718580842018, -0.01497217919677496, 0.006763340439647436, -0.004359702579677105, -0.01838037185370922, -0.003494392614811659, 0.03479805216193199, -0.011232449673116207, -0.0027650126721709967, 0.012684579007327557, 0.02458673156797886, 0.010217948816716671, 0.037715569138526917, 0.027345113456249237, -0.03031568042933941, 0.017372502014040947, 0.006212990265339613, 0.010158272460103035, 0.02265056036412716, 0.0033452012576162815, -0.011935306712985039, -0.025210021063685417, 0.020926570519804955, 0.011988352984189987, -0.01900366134941578, -0.007711534388363361, 0.01437541376799345, -0.03949260339140892, -0.0612148642539978, -0.01641767844557762, 0.003055107081308961, -0.01437541376799345, -0.018963877111673355, 0.02148355171084404, 0.01004554983228445, -0.010529592633247375, 3.011023181898054e-07, 0.024812176823616028, 0.002919177059084177, -0.02017066814005375, -0.008752558380365372, 0.011736385524272919, -0.0005565665778703988, -0.006395335309207439, 0.00978695135563612, -0.02917519398033619, 0.011159512214362621, -0.033498428761959076, 0.007326952181756496, 0.014441721141338348, 0.014441721141338348, 0.00738662900403142, 0.018818000331521034, -0.0016477354802191257, -0.02632398158311844, 0.0763859674334526, -0.013102314434945583, 0.01960042677819729, -0.0029456999618560076, -0.01835384964942932, 0.014932394959032536, -0.017597947269678116, -0.008639835752546787, -0.019839132204651833, 0.005828408058732748, -0.008447544649243355, 0.007492720615118742, -0.03946608304977417, -0.01684204488992691, -0.012485656887292862, -0.008348084054887295, 0.0015847434988245368, 0.004091158043593168, -0.014706950634717941, 0.010244471952319145, 0.018115144222974777, 0.03490414097905159, -0.014216276817023754, 0.035063277930021286, 0.0018483148887753487, -0.005841669626533985, 0.0035938534419983625, 0.022146625444293022, 0.001982587156817317, -0.012671317905187607, -0.0018449994968250394, -0.003389958757907152, -0.0031015221029520035, -0.019215844571590424, 0.01090091373771429, -0.007499351166188717, 0.00406131986528635, 0.010967221111059189, -0.02416236512362957, 0.020648080855607986, -0.01028425619006157, -0.00846080668270588, -0.004598408471792936, -0.010774930007755756, -0.019454549998044968, 0.047741226851940155, -0.0008363003144040704, -0.01514457818120718, 0.021788565441966057, -0.036283332854509354, 0.05532677844166756, -0.029997404664754868, 0.013951047323644161, 0.01359298825263977, 0.01013174932450056, 0.011345172300934792, 0.028273416683077812, -0.032755788415670395, -0.013765387237071991, -0.0018018997507169843, 0.0480329804122448, -0.007525874301791191, 0.000270409305812791, 0.00484374538064003, -0.0069423699751496315], [-0.002953446703031659, 0.035845719277858734, -0.014469429850578308, 0.02176971733570099, -0.06198686361312866, 0.048828862607479095, -0.021146787330508232, 0.030031718313694, 0.015026787295937538, 0.011573358438909054, 0.026665717363357544, -0.03667629137635231, 0.01978071592748165, 0.012174430303275585, 0.021551145240664482, 0.024283288046717644, -0.038927577435970306, 0.00663364352658391, 0.029703861102461815, 0.04699286073446274, 0.021398145705461502, 0.01917964406311512, -0.04412957653403282, 0.018589502200484276, -0.008251071907579899, -6.0747493989765644e-05, 0.01265528704971075, -0.037419430911540985, 0.030578145757317543, 0.0177152156829834, 0.04607486352324486, -0.015693429857492447, 0.025135716423392296, -0.014447572641074657, 0.005300357937812805, 0.02856728807091713, -0.021332573145627975, -0.01836000196635723, 0.009906751103699207, -0.007125429343432188, -0.036195430904626846, -0.0315617173910141, 0.04808571934700012, -0.004114607814699411, -0.038337431848049164, 0.09617143869400024, 0.040151577442884445, 0.008562536910176277, -0.02887328900396824, 0.004297661129385233, -0.03982371836900711, -0.031037146225571632, -0.04874143376946449, -0.06430371850728989, -0.002413848415017128, 0.02004300244152546, 0.0026706699281930923, 0.0362391471862793, -0.0007684152806177735, -0.037856575101614, -0.010190893895924091, 0.016906501725316048, 0.014731716364622116, 0.012316501699388027, -0.014010430313646793, -0.012972216121852398, 0.022195931524038315, 0.03435943275690079, -0.01781357266008854, 0.024239573627710342, -0.015365573577582836, -0.002986232517287135, -0.010939501225948334, -0.014961215667426586, -0.011890286579728127, 0.03575829043984413, 0.07287172228097916, 0.014218073338270187, 0.015179787762463093, -0.017944715917110443, 0.029550859704613686, 0.0008940938278101385, 0.031321290880441666, 0.047211434692144394, 0.014239930547773838, 0.0024958127178251743, -0.07803000509738922, -0.004349572118371725, 0.0009220982901751995, 0.01963864453136921, 0.07269686460494995, -0.004830429330468178, -0.01377000194042921, 0.051320578902959824, -0.0012916206615045667, 0.0008797501213848591, -0.004685625433921814, 0.04443557560443878, -0.02211943082511425, 0.04008600488305092, -0.014819144271314144, -0.04214057698845863, -0.03606428951025009, 0.019365429878234863, 0.03171471878886223, 0.006628179457038641, -0.06535286456346512, -0.0006782545242458582, 0.01969328708946705, -0.006382286548614502, -0.012130715884268284, -0.015365573577582836, -0.00271438411436975, -0.011595215648412704, -0.016316359862685204, 0.0185239315032959, -0.08690401166677475, -0.034425005316734314, -0.02891700342297554, 0.04021714627742767, 0.02273143082857132, 0.02684057503938675, 0.016819072887301445, -0.030556289479136467, 0.03763800486922264, -0.017846358940005302, 0.006174643523991108, 0.05022772029042244, -0.020359931513667107, -0.026753146201372147, 0.06906858086585999, 6.736440263921395e-05, -0.020840788260102272, -0.053550004959106445, -0.006420536432415247, 0.05075228959321976, 0.02074243128299713, 0.017627786844968796, -0.046293433755636215, -0.0803905799984932, 0.015256287530064583, -0.007338536437600851, -0.001551857334561646, -0.011966787278652191, -0.014349215663969517, 0.00941496528685093, 0.007578965276479721, -0.0020573039073497057, 0.0441514328122139, -0.008229215629398823, -0.03409714624285698, 0.04624972119927406, 0.00824014376848936, -0.0005003237165510654, -0.0228844303637743, 0.012939429841935635, 0.017343644052743912, 0.03685114532709122, -0.04074171930551529, 0.032698288559913635, -0.0355178602039814, 0.045069433748722076, 0.01001603715121746, -0.017321787774562836, 0.026556432247161865, -0.04861029237508774, -0.008682751096785069, 0.005622750613838434, -0.06832543760538101, -0.026753146201372147, -0.00897782202810049, -0.02664385922253132, -0.010491429828107357, 0.019103145226836205, -0.045288003981113434, -0.009076179936528206, 0.0552111491560936, -0.002476687775924802, 0.02511386014521122, -0.004570875316858292, 0.06128743663430214, 0.0553860068321228, -0.035277433693408966, -0.004109143279492855, 0.022665860131382942, -0.0035517860669642687, -0.02795528806746006, 0.010715465061366558, 0.013671644032001495, 0.02334343083202839, 0.03160543367266655, -0.044676005840301514, 0.005764822009950876, 0.0014589644270017743, -0.02826128900051117, 0.013147072866559029, -0.02673128806054592, -0.007863108068704605, 0.004846822004765272, -0.03510257601737976, -0.0019739733543246984, -0.011518715880811214, -0.0005583817837759852, 0.014076001942157745, -0.035233717411756516, -0.006114536430686712, 0.0034561611246317625, -0.04039200395345688, 0.044370006769895554, -0.007721036672592163, 0.013376573100686073, 0.0010477768955752254, -0.03418457508087158, -0.0114640723913908, -0.020436430349946022, 0.02277514524757862, -0.010234608314931393, -0.03958329185843468, 0.01382464449852705, 0.0339878611266613, 0.008425929583609104, -0.021693216636776924, 0.020829860121011734, 0.05429314821958542, 0.01265528704971075, 0.016174286603927612, -0.029660146683454514, 0.029900575056672096, -0.06408514827489853, -0.014567787759006023, -0.08480572700500488, 0.04447929188609123, -0.004166518338024616, -0.034425005316734314, -0.01062803715467453, 0.010775572620332241, 0.0015313662588596344, -0.0051364293321967125, 0.0021665894892066717, -0.027474431321024895, 0.0018086787313222885, -0.02089543081820011, -0.010786500759422779, 0.03379114717245102, -0.023933574557304382, 0.021594859659671783, 0.007852178998291492, 0.014076001942157745, -0.0010006474331021309, -0.034884002059698105, 0.002009491203352809, 0.07641258090734482, 0.003855054033920169, -0.0678008645772934, -0.018993860110640526, 0.006393215153366327, 0.07300286740064621, 0.017780788242816925, 0.01947471685707569, -0.015015859156847, 0.02105936035513878, -0.007786607835441828, -0.007300286553800106, -0.03339771926403046, -0.014950287528336048, 0.020556645467877388, 0.018906431272625923, -0.024851573631167412, 0.035998716950416565, 0.042534004896879196, -0.01720157265663147, 0.05337514728307724, -0.01998835988342762, 0.03519000485539436, -0.019824430346488953, 0.01917964406311512, -0.004702018573880196, 0.014371072873473167, 0.007245643530040979, -0.017343644052743912, 0.021879002451896667, -0.07737429440021515, -0.05468657612800598, -0.04620600491762161, 0.014622430317103863, -0.01065535843372345, -0.01273178681731224, -0.0026337860617786646, -0.013059644028544426, 0.003406982636079192, 0.010540608316659927, -0.0008558438275940716, 0.0003975268336944282, -0.0177589301019907, 0.016272645443677902, 0.0006003884482197464, 0.028326859697699547, 0.02327786013484001, 0.027736717835068703, 0.003404250368475914, -0.0023564735893160105, 0.02607557363808155, -0.040151577442884445, 0.03779100254178047, 0.00045490183401852846, 0.010633501224219799, 0.016174286603927612, -0.01923428848385811, -0.021135859191417694, -0.0490037202835083, 0.008786572143435478, 0.014196216128766537, -0.07623772323131561, -0.040413860231637955, 0.02380243130028248, -0.027430716902017593, 0.009108965285122395, 0.006442393641918898, 0.001314160879701376, 0.015737144276499748, 0.007038000971078873, -0.00880296528339386, -0.0057702865451574326, 0.036304719746112823, -0.004423339851200581, 0.003049071878194809, -0.009059786796569824, 0.003923357464373112, 0.018731573596596718, 0.04371429234743118, -0.006360429339110851, -0.04308043420314789, 0.01801028847694397, -0.05604172125458717, -0.01192307285964489, 0.023409003391861916, -0.011781001463532448, 0.00933846551924944, -0.010026965290307999, -0.10972286760807037, 0.01695021614432335, 0.018993860110640526, 0.0035599826369434595, -0.01578085869550705, -0.0009384911973029375, -0.020370859652757645, 0.012382072396576405, 0.05110200494527817, 0.032348573207855225, 0.04362686350941658, -0.01199957262724638, 0.009185465052723885, -0.023452717810869217, -0.015136073343455791, -0.011398501694202423, 0.03901500254869461, 0.0395614318549633, -0.003150161122903228, -0.02714657410979271, 0.01851300150156021, -0.004262143280357122, 0.010103465057909489, -0.02211943082511425, -0.011174465529620647, -0.04102586209774017, 0.031386859714984894, -0.04878515005111694, 0.014043215662240982, -0.001639285939745605, -0.03293871879577637, -0.013791858218610287, -0.007912286557257175, -0.03267643228173256, 0.010442251339554787, -0.0003585937956813723, -0.03029400296509266, -0.0020176877733319998, 0.016196144744753838, 0.05945143476128578, -0.055429719388484955, 0.022665860131382942, -0.023256001994013786, -0.002699357457458973, 0.002779955742880702, 0.027889717370271683, 0.044566720724105835, -0.08546143770217896, -0.011628000997006893, 0.041113290935754776, -0.03829371929168701, 0.031168289482593536, -0.00755710806697607, 0.032392289489507675, -0.011507786810398102, 0.024633003398776054, 0.027583716437220573, 0.002685696817934513, 0.06246772035956383, 0.03733200579881668, 0.009147215634584427, 0.002312759170308709, -0.0015313662588596344, -0.02349643036723137, 0.002049107337370515, -0.009573429822921753, -0.002871482400223613, 0.006764786317944527, 0.02354014478623867, 0.014119715429842472, -0.039146147668361664, 0.015059572644531727, -0.03258900344371796, 0.012403929606080055, 0.009218251332640648, 0.012699001468718052, -0.049178577959537506, 0.04144114628434181, 0.014119715429842472, -0.013103358447551727, -0.016720715910196304, 0.032501574605703354, 0.04032643139362335, -0.04316786304116249, -0.017321787774562836, 0.00887946505099535, 0.0020614019595086575, -0.006737465038895607, 0.041222576051950455, -0.029048146679997444, -0.036304719746112823, -0.004625518340617418, 0.013300073333084583, -0.0012240001233294606, 0.04034829139709473, 0.00753525085747242, 0.011097965762019157, -0.012983144260942936, -0.026469003409147263, -0.03790029138326645, -0.020534787327051163, 0.022862574085593224, 0.016775358468294144, -0.041528575122356415, 0.01607592962682247, -0.04703657701611519, 0.01397764403373003, -0.009404037147760391, 0.01589014381170273, 0.0019220627145841718, 0.021726002916693687, -0.04205314815044403, 0.0418127179145813, -0.044763434678316116, 0.03293871879577637, -0.014677072875201702, -0.04843543469905853, 0.027321431785821915, 0.001551857334561646, -0.009212786331772804, 0.02891700342297554, 0.006775714922696352, 0.011496858671307564, -0.0006010715151205659, -0.012983144260942936, 0.020720573142170906, -0.041375577449798584, -0.009551572613418102, 0.07090458273887634, -0.03324471786618233, -0.050358861684799194, -0.045069433748722076, 0.022338002920150757, 0.05617286264896393, 0.006677357945591211, 0.007076250854879618, 0.03022843226790428, -0.02384614571928978, -0.03877457603812218, 0.02074243128299713, -0.00239062518812716, 0.03840300440788269, 0.0025067413225769997, -0.009327536448836327, -0.008174572139978409, 0.03014100342988968, 0.027255861088633537, 0.050621148198843, 0.007628143765032291, -0.04646829143166542, -0.004603661131113768, 0.030709289014339447, -0.007857643999159336, 0.012841072864830494, -0.007874036207795143, -0.04170343279838562, -0.000532426405698061, 0.03348514810204506, 0.00471841124817729, 0.010584322735667229, -0.0014343751827254891, -0.05350629240274429, -0.05459914728999138, 0.0339878611266613, -0.04017343372106552, 0.06985543668270111, -0.0009268795838579535, -0.007660929579287767, -0.03226114809513092, -0.011584286577999592, 0.003103714669123292, 0.0047211432829499245, -0.019168715924024582, -0.007371322251856327, -0.029966145753860474, 0.020786145702004433, 0.0006225871038623154, -0.049397148191928864, -0.017081359401345253, -0.012928501702845097, -0.003248518332839012, -0.006710143759846687, 0.01648028753697872, -0.009677250869572163, 0.010059751570224762, 0.01644750125706196, -0.00028841185849159956, 0.011791929602622986, -0.1103348657488823, 0.038337431848049164, -0.019398216158151627, 0.005314018577337265, 0.009316608309745789, -0.01321264449506998, 0.016731644049286842, 0.048479147255420685, -0.008573465049266815, 0.013431215658783913, 0.00604896480217576, 0.03178028762340546, -0.007278429344296455, 0.015660645440220833, -0.005764822009950876, 0.010059751570224762, 0.00940950121730566, 0.004453393165022135, 0.0032840361818671227, 0.0005491607589647174, -0.0016201608814299107, -0.0165895726531744, 0.00933300144970417, -0.025857003405690193, -0.02561657503247261, 0.0020450090523809195, -0.01613057404756546, 0.0057320361956954, -0.022753288969397545, 0.02911371737718582, -0.02181343175470829, 0.0011577457189559937, 0.004898732528090477, -0.007458750624209642, 0.009584357962012291, -0.051670290529727936, -0.018097715452313423, -0.008048893883824348, 0.04174714908003807, -0.03612986207008362, -0.00023923328262753785, 0.02430514618754387, 0.006568072363734245, -0.04896000400185585, 0.04769229143857956, -0.009136286564171314, 0.049440864473581314, 0.01969328708946705, 0.03053443133831024, 0.000926196516957134, -0.01072639413177967, 0.0162289310246706, -0.023212287575006485, 0.021824359893798828, -0.004633714910596609, -0.00019107926345895976, 0.021715072914958, -0.03169286251068115, 0.04843543469905853, -0.02181343175470829, -0.018556715920567513, -0.07142914831638336, -0.00043406925396993756, -0.0003406640898901969, -0.006841286551207304, -0.033004287630319595, -0.036654431372880936, -0.010081607848405838, 0.027824146673083305, -0.021124931052327156, 0.011475001461803913, 0.03768171742558479, 0.025092002004384995, 0.004365964792668819, 0.019015716388821602, -0.012906644493341446, 0.03339771926403046, 0.00880296528339386, 0.007950536906719208, -0.011573358438909054, -0.013037786819040775, 0.03276386111974716, -0.017485715448856354, 0.03370371833443642, 0.020731503143906593, 0.04321157559752464, -0.003822268219664693, 0.02151835896074772, -0.004294929094612598, -0.004046304151415825, 0.007934143766760826, -0.007234714925289154, 0.02638157457113266, 0.015474858693778515, 0.007158215157687664, 0.009961393661797047, -0.03210814669728279, -0.012294644489884377, 0.00804342981427908, -0.026359716430306435, -0.00222533056512475, 0.04113514721393585, -0.00655714375898242, 0.006420536432415247, 0.02810828946530819, 0.007939607836306095, -0.017289001494646072, 0.008256536908447742, 0.019671430811285973, 0.0015682501252740622, -0.044719718396663666, 0.0014357412001118064, -0.011125287041068077, 0.02907000295817852, -0.0018510270165279508, 0.006229286547750235, -0.02699357457458973, 0.016097787767648697, -0.06071915104985237, 0.027474431321024895, 0.02649085968732834, 0.014502216130495071, -0.0007451920537278056, 0.07177886366844177, -0.015944788232445717, -0.02714657410979271, -0.0118465730920434, 0.011879358440637589, 0.014808216132223606, 0.03064371831715107, 0.0457688607275486, 0.006885000970214605, -0.018633216619491577, -0.017802644520998, -0.013551429845392704, -0.028283145278692245, -0.041069574654102325, -0.013485858216881752, 0.03859971836209297, 0.007518858183175325, -0.020163215696811676, 0.021376287564635277, 0.020381787791848183, -0.008742857724428177, -0.0005508683389052749, -0.03368186205625534, -0.021114002913236618, -0.04008600488305092, 0.029157431796193123, 0.021288858726620674, -0.026622002944350243, -0.003792214673012495, -0.021343503147363663, 0.0020012948662042618, 0.005363197065889835, 0.01011985819786787, 0.010447715409100056, -0.009731894358992577, -0.026928003877401352, -0.007917750626802444, 0.018950145691633224, -0.004936982877552509, 0.006426000501960516, -0.004300393164157867, 0.020971931517124176, 0.0419001467525959, -0.04231543466448784, 0.009234643541276455, -0.0038113396149128675, 0.00936032272875309, 0.007092643529176712, -0.014808216132223606, -0.03654514625668526, 0.0026652056258171797, 0.006415072362869978, 0.01192307285964489, -0.007103572133928537, -0.04159414768218994, 0.027255861088633537, 0.021441860124468803, -0.003647411009296775, -0.0014862858224660158, -0.04069800302386284, 0.0008968259789980948, -0.03890571743249893, -0.01377000194042921, 0.02749628946185112, -0.0037812860682606697, 0.022512858733534813, 0.009901287034153938, 0.004300393164157867, 0.05337514728307724, -0.007502465043216944, 0.007338536437600851, 0.017933787778019905, 0.021889930590987206, -0.02461114525794983, -0.007076250854879618, 0.025813288986682892, -0.013223572634160519, -0.010873929597437382, 0.0009098036680370569, -0.012895715422928333, -0.008207358419895172, -0.003958875313401222, -0.034731004387140274, 0.03682928904891014, -0.033616289496421814, 0.03497143089771271, 0.007278429344296455, 0.0020682322792708874, 0.00719100097194314, -0.03169286251068115, 0.028895145282149315, -0.02207571640610695, 0.0442388616502285, 0.002311393152922392, 0.005863179452717304, 0.022053860127925873, -0.0031255718786269426, -0.004988893400877714, -0.06316714733839035, 0.024633003398776054, 0.009212786331772804, 0.0054260361939668655, -0.023452717810869217, -0.034119002521038055, 0.0011877992656081915, -0.04120071977376938, -0.005442429333925247, 0.004267607815563679, 0.026753146201372147, 0.017321787774562836, 0.024130288511514664, -0.007792072370648384, 0.010720930062234402, 0.006043500732630491, 0.014928430318832397, -0.026053717359900475, -0.04511314630508423, -0.008715536445379257, 0.00532494718208909, 0.012436715885996819, 0.024895288050174713, -0.01499400194734335, -0.005341339856386185, 0.025747716426849365, 0.036042433232069016, 0.009742822498083115, 0.025354288518428802, -0.0008032500627450645, -0.011562430299818516, -0.0025600180961191654, 0.03562714532017708, -0.003412446705624461, 0.010453179478645325, -0.02841428853571415, -0.022403573617339134, -0.004327714908868074, -0.00943682249635458, -0.024851573631167412, -0.012294644489884377, -0.0009412232902832329, 0.003576375311240554, -0.048828862607479095, 0.015398358926177025, -0.06430371850728989, 0.005281232763081789, 0.005114572122693062, -0.0036583396140486, -0.03363814577460289, 0.04520057514309883, 0.0013988573336973786, 0.02799900248646736, 0.02039271593093872, -0.018753429874777794, -0.019201502203941345, -0.007136357948184013, 0.023321574553847313, -0.03578014671802521, 0.007857643999159336, 0.07090458273887634, -0.04480714723467827, -0.023824287578463554, -0.004314054269343615, -0.009617144241929054, 0.02500457502901554, 0.015507644973695278, -0.003396054031327367, -0.011343858204782009, 0.04777972027659416, -0.005819465033710003, -0.05302543565630913, 0.0276930034160614, -0.016611430794000626, 0.029550859704613686, 0.001210339367389679, 0.0029780359473079443, 0.02515757456421852, -0.026163002476096153, 0.01806493103504181, -0.009715501219034195, 7.231641211546957e-05, 0.008076215162873268, 0.01922335848212242, -0.016928359866142273, -0.019594930112361908, -0.028326859697699547, -0.027059145271778107, 0.016775358468294144, 0.01182471588253975, -0.03449057415127754, 0.021879002451896667, 0.07977858185768127, -0.018086787313222885, 0.006786643527448177, 0.037725433707237244, 0.014622430317103863, -0.010589786805212498, -0.019310787320137024, -0.043605003505945206, 0.007901358418166637, -0.01248043030500412, -0.05302543565630913, -0.031168289482593536, -0.015737144276499748, 0.007983322255313396, 0.022086644545197487, -0.03800957649946213, 0.011617072857916355, -0.033157289028167725, 0.008333036676049232, -0.009753750637173653, -0.039452146738767624, -0.0166332870721817, -0.017868217080831528, -0.020436430349946022, 0.01628357358276844, 0.006945108063519001, -0.009884893894195557, 0.025988146662712097, 0.004264875315129757, -0.026818716898560524, 0.041069574654102325, -0.0039698039181530476, -0.002256750361993909, -0.016600502654910088, 4.875168087892234e-05, 0.02025064453482628, 0.0026242234744131565, 0.04185643419623375, 0.02380243130028248, -0.052238576114177704, 0.02121235989034176, -0.0005819465150125325, 0.018644144758582115, -0.04412957653403282, -0.00541510758921504, -0.023824287578463554, -0.02211943082511425, 0.04371429234743118, -0.01846928708255291, 0.0030190180987119675, -0.053899720311164856, 0.0011078841052949429, -0.00031590406433679163, -0.07545086741447449, -0.029594574123620987, 0.014196216128766537, -0.03322286158800125, 0.02312486059963703, 0.017015786841511726, -0.01587921567261219, -0.021529288962483406, 0.013759072870016098, -0.04620600491762161, -0.006120000500231981, 0.00816910807043314, 0.03606428951025009, -0.021332573145627975, -0.0015737144276499748, -0.04480714723467827, 0.03829371929168701, 0.011857501231133938, 0.010546072386205196, 0.02384614571928978, -0.013485858216881752, 0.04089471697807312, -0.02515757456421852, -0.005956071894615889, -0.004095482639968395, -0.03333214670419693, 0.007693714927881956, 0.027321431785821915, -0.009147215634584427, -0.005024411249905825, -0.015125144273042679, 0.016731644049286842, 0.015103287063539028, 0.024786002933979034, 0.006120000500231981, -0.03429386019706726, -0.044413719326257706, 0.04308043420314789, 0.040151577442884445, 0.021999217569828033, 0.008376751095056534, 0.014010430313646793, 0.0013742679730057716, 0.00953517947345972, -0.0031528931576758623, -0.04074171930551529, -0.020425502210855484, -0.0004207500605843961, -0.02891700342297554, -0.0021324376575648785, 0.03134314715862274, -0.016349144279956818, 0.03014100342988968, 0.01524535845965147, -0.011081572622060776, 0.001393393031321466, 0.011453144252300262, -0.02557286061346531, -0.024698574095964432, 0.02415214478969574, 0.012819215655326843, 0.011649858206510544, -0.04795457795262337, 0.018655072897672653, -0.02176971733570099, 0.00719100097194314, -0.022403573617339134, 0.016425644978880882, -0.019409144297242165, 0.013813715428113937, -0.005934215150773525, 0.014502216130495071, -0.005229322239756584, -0.05031514912843704, -0.015944788232445717, -0.021583931520581245, -0.01583550125360489, -3.327665035612881e-05, -0.006426000501960516, 0.015103287063539028, 0.012174430303275585, 0.02319043129682541, 0.0015313662588596344, -0.03905871883034706, 0.022185003384947777, -0.01131107285618782, 0.014065072871744633, -0.011223644018173218, 0.005144625436514616, 0.014655215665698051, 0.016141502186655998, -0.0024357056245207787, -0.00471841124817729, 0.018250716850161552, 0.011130751110613346, 0.020381787791848183, 0.002032714430242777, -0.031386859714984894, 0.0011912144254893064, 0.008557072840631008, -0.006770250853151083, -0.015802716836333275, -0.0299880038946867, -0.018644144758582115, -0.01740921661257744, 0.011934000998735428, -0.028217574581503868, 0.016174286603927612, -0.0039370181038975716, -0.017627786844968796, 0.0018646876560524106, 0.01938728801906109, -0.007568036671727896, 0.01943100243806839, 0.011649858206510544, -0.028436146676540375, -0.0007834420539438725, 0.008496965281665325, 0.01461150124669075, -0.011737287044525146, 0.02491714619100094, -0.0007971027516759932, -0.01186843030154705, 0.008229215629398823, -0.003070928854867816, 0.002682964550331235, -0.0217587873339653, 0.05245715007185936, -0.0017595002427697182, -0.028895145282149315, -0.038424860686063766, -0.0055626435205340385, -0.01248043030500412, -0.0006188304396346211, 0.0007151384488679469, 0.038075145334005356, -0.017485715448856354, 0.02110307291150093, -0.008360357955098152, -0.022294288501143456, 0.03525557368993759, -0.0026037325151264668, -0.018731573596596718, -0.020764287561178207, 0.0018141430336982012, -0.03672000393271446, 0.002969839610159397, 0.013464001938700676, 0.01724528707563877, 0.022447288036346436, 0.010103465057909489, 0.03494957461953163, 0.0010990046430379152, 0.019015716388821602, -0.035692717880010605, 0.01887364499270916, 0.008660893887281418, -0.009551572613418102, -0.022600287571549416, -0.04174714908003807, 0.043342720717191696, -0.05363743379712105, 0.01313614472746849, 0.013518644496798515, -0.02246914617717266, -0.01503771636635065, -0.029660146683454514, -0.0018114108825102448, -0.023758716881275177, 0.04102586209774017, -0.0052129290997982025, -0.011223644018173218, -0.05315657705068588, -0.049484577029943466, 0.008059822022914886, 0.011081572622060776, 0.02242543175816536, 0.012130715884268284, -0.017332715913653374, 0.03169286251068115, -0.008371287025511265, -0.005357732530683279, -0.003953411243855953, -0.004210232757031918, -0.005029875785112381, -0.004065428860485554, -0.028698431327939034, -0.03278571739792824, 0.0007547545246779919, -0.00036576567799784243, 0.012928501702845097, 0.03514628857374191, 0.002012223470956087, 0.040304575115442276, 0.014371072873473167, 0.006371357943862677, 0.028064575046300888, 0.023365288972854614, -0.0100706797093153, -0.00655714375898242, 0.006732000969350338, 0.004333178978413343, -0.002501277020201087, 0.04266514629125595, 0.0138465017080307, -0.020152287557721138, -0.02622857503592968, 0.003516268217936158, -0.002898803912103176, 0.035037003457546234, -0.01316893007606268, 0.0024520985316485167, -0.03333214670419693, 0.024283288046717644, 0.0022704110015183687, -0.015638787299394608, -0.028829574584960938, 0.02160578779876232, 0.007977858185768127, 0.011737287044525146, 0.010453179478645325, 0.016862787306308746, -0.018141429871320724, 0.016469359397888184, -0.011628000997006893, -0.0030053574591875076, 0.03595500439405441, -0.005906893406063318, -0.04327714815735817, -0.04176900535821915, 0.02303743176162243, 0.005890500731766224, -0.024676717817783356, 0.02185714617371559, 0.015387429855763912, 0.04856657609343529, -0.02476414479315281, -0.009267429821193218, 0.06919971853494644, 0.02186807431280613, -0.03779100254178047, 0.00663364352658391, 0.014600573107600212, 0.028370574116706848, -0.01121271587908268, -0.014316430315375328, -0.008415000513195992, 0.007048929575830698, -0.002565482398495078, -0.02500457502901554, 0.01526721566915512, -0.021398145705461502, -0.02703728899359703, 0.00447798240929842, 0.06640201061964035, -0.020523859187960625, 0.03901500254869461, 0.03556157648563385, 0.00811992958188057, 0.02388986013829708, 0.0030518039129674435, 0.057003434747457504, 0.012906644493341446, -0.008671822026371956, -0.021441860124468803, 0.013179858215153217, -0.02668757364153862, 0.014698930084705353, -0.028370574116706848, 0.03302614763379097, -0.008945036679506302, 0.03814071789383888, -0.0015381965786218643, -0.011770072393119335, 0.002620125189423561, 0.021780645474791527, 0.029157431796193123, -0.012764573097229004, -0.011781001463532448, -0.026053717359900475, -0.01519071590155363, 0.0049342503771185875, 0.023627573624253273, 0.007578965276479721, 0.023933574557304382, 0.010863001458346844, -0.04843543469905853, -0.011879358440637589, -0.012393001466989517, 0.008983287028968334, 0.016250787302851677, 0.01524535845965147, 0.008835750631988049, 0.0006318081286735833, -0.02004300244152546, -0.02257843129336834, 0.02257843129336834, 0.007852178998291492, 0.006589929107576609, 0.03905871883034706, -0.02399914525449276, -0.02633786015212536, -0.0019521162612363696, 0.00753525085747242, 0.03774728998541832, -0.004284000489860773, -0.0023387144319713116, -0.015507644973695278, 0.009294751100242138, -0.01016903668642044, -0.0030518039129674435, -0.019518431276082993, 0.015562287531793118, 0.0047867149114608765, 0.023168573155999184, 0.00887946505099535, 0.015704357996582985, 0.010305644012987614, 0.015813644975423813, -0.01887364499270916, -0.019398216158151627, 0.034621719270944595, -0.012873858213424683, 0.004483446944504976, -0.014207144267857075, 0.01131107285618782, -0.022359859198331833, -0.021114002913236618, -0.016666073352098465, -0.005895964801311493, -0.030425146222114563, 0.03053443133831024, -0.015136073343455791, 0.00016862446500454098, 0.02907000295817852, -0.004330446943640709, 0.03230486065149307, -0.0006437612464651465, 0.006256607826799154, 0.045943718403577805, -0.005748429335653782, 0.02653457410633564, 0.011737287044525146, -0.03302614763379097, 0.010234608314931393, -0.018392788246273994, -0.031736575067043304, -0.014851930551230907, 0.019059430807828903, 0.014250858686864376, -0.014906573109328747, -0.011343858204782009, -0.024982716888189316, 0.007048929575830698, 0.015791786834597588, -0.03505885973572731, -0.04769229143857956, 0.024982716888189316, 0.01764964498579502, 0.01679721660912037, 0.033966004848480225, 0.034119002521038055, -0.003975268453359604, 0.013627930544316769, 0.003978000488132238, -0.04699286073446274, 0.004267607815563679, -0.016753502190113068, -0.004947911482304335, 0.027321431785821915, 0.041725289076566696, 0.012250930070877075, 0.007256572134792805, 0.0016365537885576487, 0.007994251325726509, -0.01448035892099142, 0.006699215155094862, -0.052282292395830154, -0.010983215644955635, 0.010240072384476662, -0.015606001950800419, 0.0520637184381485, 0.04743000492453575, 0.007682786788791418, 0.012589715421199799, 0.013595144264400005, 0.0006283929105848074, -0.007032536435872316, 0.0043386435136199, 0.016196144744753838, -0.015376501716673374, 0.013059644028544426, 0.00811992958188057, -0.023474574089050293, -0.025332432240247726, 0.0008025670540519059, 0.002558652078732848, 0.0165458582341671, -0.015300001949071884, 0.011158072389662266, -0.009655393660068512, -0.0332665741443634, 0.014709859155118465, 0.01968235895037651, 0.015234430320560932, 0.02714657410979271, -0.0014343751827254891, 0.043342720717191696, 0.003090054029598832, -0.030818574130535126, 0.03901500254869461, -0.014786358922719955, 0.007688250858336687, 0.007693714927881956, -0.035386718809604645, -0.0020149555057287216, -0.03932100534439087, 0.001378366257995367, 0.009343929588794708, 0.027255861088633537, -0.034425005316734314, 0.020305287092924118, 0.0045790718868374825, -0.0022540180943906307, -0.021168645471334457, -0.008180036209523678, -0.025507288053631783, 0.02734328806400299, -0.04572514817118645, -0.02349643036723137, -0.000653665279969573, 0.014698930084705353, -0.022862574085593224, -0.0005969732883386314, -0.026600146666169167, -0.021376287564635277, 0.003434303915128112, 0.007753822486847639, 0.01593385823071003, -0.0035135361831635237, -0.01887364499270916, -0.008819358423352242, 0.013780930079519749, 0.0004723192541860044, 0.03505885973572731, 0.004751197062432766, 0.033004287630319595, 0.01923428848385811, -0.02151835896074772, -0.012119786813855171, 0.026097431778907776, 0.02237078733742237, -0.007070786319673061, -0.02653457410633564, 0.024939002469182014, 0.03765986114740372, 0.01255693007260561, 0.033507004380226135, -0.06670800596475601, -0.012994073331356049, -0.016873715445399284, 0.009644465520977974, 0.0004190424515400082, 0.03844671696424484, 0.0022116699256002903, 0.013551429845392704, 0.013354715891182423, -0.04207500442862511, 0.008152714930474758, -0.006988822016865015, 0.016567716374993324, 0.007655465044081211, -0.012699001468718052, 0.01623985916376114, -0.0015846430324018002, 0.006185572128742933, -0.0030518039129674435, -0.00469108996912837, 0.016917429864406586, 0.006819429341703653, 0.01332192961126566, 0.012087001465260983, 0.006475179456174374, -0.007130893878638744, 0.021332573145627975, -0.0387527197599411, -0.03298243135213852, -0.05573572218418121, -0.00824014376848936, -0.0013469465775415301, -0.024217717349529266, -0.005499804392457008, -0.02480785921216011, -0.022840715944767, -0.015748072415590286, 0.02115771733224392, -0.02308114618062973, -0.004131000488996506, 0.014545930549502373, -0.014414787292480469, 0.012207215651869774, -0.015179787762463093, -0.04128814861178398, -0.002937053795903921, -0.01448035892099142, -0.0016365537885576487, 0.047255147248506546, -0.002534062834456563, 0.01760593056678772, -0.01192307285964489, 0.02115771733224392, -0.034621719270944595, 0.03739757463335991, 0.003991661127656698, 0.03079671785235405, -0.010961358435451984, 0.014010430313646793, -0.015081429854035378, -0.017890073359012604, -0.005467018578201532, -0.010693608783185482, -0.01872064545750618, 0.005166482646018267, 0.013682573102414608, 0.01138757262378931, 0.01745293103158474, 0.01649121567606926, -0.01720157265663147, 0.0006895246333442628, 0.028370574116706848, -0.007223786320537329, 0.009404037147760391, 0.03626100346446037, 0.009223715402185917, 0.0012110224924981594, 0.026250431314110756, -0.004483446944504976, -0.041572291404008865, -0.009141750633716583, -0.006939643528312445, 0.022993717342615128, -0.00446432176977396, 0.013354715891182423, -0.018436502665281296, -0.018502073362469673, -8.273270941572264e-05, -0.010234608314931393, -0.019813502207398415, 0.0165895726531744, 0.00755710806697607, -0.028698431327939034, -0.030578145757317543, 0.003100982401520014, -0.010666286572813988, -0.00036064290907233953, -0.013158001005649567, 0.038577862083911896, 0.03951771929860115, -0.0173982884734869, -0.01576993055641651, -0.0030381432734429836, -0.0028605537954717875, 0.011201786808669567, 0.017321787774562836, 0.024567430838942528, 0.0056391432881355286, -0.007650000974535942, 0.042031291872262955, 0.005939679220318794, -0.004773054271936417, 0.022556573152542114, 0.01613057404756546, 0.010720930062234402, -0.004710214678198099, -0.010212751105427742, 0.009852108545601368, 0.006551679223775864, 0.020130431279540062, 0.06976800411939621, -0.03053443133831024, 0.01568250171840191, 0.027234002947807312, -0.04791086167097092, 0.010464108549058437, -0.03215185925364494, -0.013474930077791214, -0.03647957369685173, 0.028545431792736053, -0.005863179452717304, -0.0018701519584283233, 0.0017772591672837734, -0.02480785921216011, 0.02657828852534294, 0.011010536924004555, 0.007070786319673061, -0.0028004467021673918, 0.006841286551207304, 0.03626100346446037, 0.0017540359403938055, 0.02085171639919281, -0.021780645474791527, 0.05346257612109184, -0.003988929092884064, 0.008557072840631008, -0.02176971733570099, 0.008491501212120056, -0.03182400390505791, -0.0054205721244215965, -0.009447750635445118, 0.014775429852306843, -0.006070822011679411, 0.023474574089050293, 0.04769229143857956, 0.018447430804371834, 0.001301183132454753, 0.05604172125458717, -0.009185465052723885, -0.005100911483168602, -0.01128921564668417, 0.020884502679109573, -0.005803071893751621, -0.02136535942554474, -0.029856860637664795, 0.025354288518428802, 0.0018482948653399944, -0.01205421518534422, 0.01684093102812767, 0.014054144732654095, 0.03348514810204506, 0.00016546541883144528, 0.030009860172867775, 0.003029946703463793, -0.01131107285618782, 0.00411187531426549, 0.025354288518428802, -0.0014084198046475649, 0.01766057312488556, -0.014294573105871677, 0.024567430838942528, -0.0052839647978544235, 0.014119715429842472, 0.04165972024202347, -0.00327857187949121]], "input": ["WEIGHT CATEGORY:Weight category refers to the classification of baggage based on its weight, which influences the fees charged for excess baggage.", "WHEEL CONFIGURATION:Wheel configuration refers to the design and arrangement of wheels on baggage, which can affect handling and transport.", "SPECIAL ITEM:Special items refer to specific types of baggage that may have unique handling requirements, such as sports equipment or musical instruments.", "PROHIBITED ITEM:Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.", "RESTRICTED ITEM:Restricted items are those that may be allowed under certain conditions or with special permissions, often requiring prior approval.", "REQUIRED DOCUMENT:Required documents are necessary paperwork that passengers must present for travel, such as identification or boarding passes.", "LABEL TYPE:Label type refers to the categorization of baggage labels that indicate handling instructions or ownership.", "TAG CATEGORY:Tag category refers to the classification of tags used for baggage identification and tracking.", "SERVICE LOCATION:Service location refers to the specific places where baggage services, such as check-in or pickup, are provided.", "TIME PERIOD:Time period refers to the duration during which specific baggage policies or fees are applicable.", "PASSENGER TYPE:Passenger type refers to the classification of travelers, such as adults, children, or infants, which can affect baggage allowances.", "MEMBERSHIP LEVEL:Membership level refers to the tier of loyalty programs that may offer different baggage allowances or benefits.", "GROUP CATEGORY:Group category refers to classifications of passengers traveling together, which may influence baggage policies and allowances.)<|COMPLETE|>", "ADDITIONAL SERVICES:Refers to extra services that can be ordered by passengers, which may incur additional charges.", "CHANGE:Refers to the policy regarding changes made to additional services purchased by passengers.", "REFUND:Refers to the policy stating that no refund will be given for cancellation or change of additional services."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-a7ca03f9bb7556fed1d7e8bbf7fb2e47 b/cache/text_embedding/embedding-a7ca03f9bb7556fed1d7e8bbf7fb2e47 deleted file mode 100644 index 1a7fb9977bea5ed00801c94afa1056521444a74c..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-a7ca03f9bb7556fed1d7e8bbf7fb2e47 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.023450065404176712, -0.03933928906917572, 0.027081560343503952, 0.03067868761718273, -0.007182799745351076, 0.01831785775721073, 0.0024873451329767704, -0.01535080000758171, 0.012028612196445465, -0.028983227908611298, 0.017252465710043907, 0.0016897335881367326, -0.0031274391803890467, 0.02774599753320217, 0.017195187509059906, -0.00604294566437602, -0.020173700526356697, -0.007177071645855904, -0.016530750319361687, 0.021674413233995438, 0.0033021403942257166, -0.011077778413891792, 0.03732306510210037, 0.05104713886976242, 0.020746491849422455, -0.018363680690526962, 0.04536505043506622, -0.02105579897761345, -0.0018214755691587925, -0.01893647201359272, 0.041103485971689224, -0.008471579290926456, -0.008815254084765911, -0.0768914669752121, 0.006930771749466658, -0.03787294402718544, 0.012681594118475914, 0.007841509766876698, 0.018776090815663338, 0.023427153006196022, -0.040691077709198, -0.0019245778676122427, -0.00263770273886621, 0.018031463027000427, 0.011707848869264126, -0.0130710918456316, 0.012452477589249611, -0.010774199850857258, -0.0029355541337281466, 0.023873930796980858, 0.004937458783388138, -0.02408013492822647, 0.017114996910095215, 0.038124971091747284, -0.003473977791145444, -0.012933622114360332, 0.02123909257352352, 0.037575092166662216, -0.0034968892578035593, -0.013781352899968624, -0.032534532248973846, -0.04126386716961861, 0.025867244228720665, -0.017722155898809433, 0.015052949078381062, -0.03280946984887123, 0.011117874644696712, 0.01812310889363289, -0.00945105217397213, 0.0033250520937144756, -0.03565051406621933, 0.005788053385913372, 0.03482569381594658, 0.0004167054721619934, -0.04151589423418045, 0.04816026985645294, 0.0130710918456316, -0.04016410931944847, 0.025729773566126823, 0.012693049386143684, -0.06914733350276947, 0.020219523459672928, -0.04000372812151909, 0.03072451241314411, -0.017790889367461205, -0.018569884821772575, 0.025317363440990448, -0.020082054659724236, -0.024332163855433464, -0.04078272357583046, -0.03911017253994942, -0.061632316559553146, 0.04020993039011955, 0.03725432977080345, -0.026623327285051346, -0.027837645262479782, 0.005166575312614441, -0.0013238632818683982, -0.04676266014575958, 0.05622516945004463, 0.009731720201671124, 0.02999133989214897, -0.07964086532592773, 0.009645801037549973, -0.013941734097898006, -0.0018085876945406199, 0.00765248853713274, 0.005558937322348356, -0.035994190722703934, 0.008202367462217808, 0.06823086738586426, 0.007641032338142395, -0.01820329949259758, 0.08129050582647324, 0.023805195465683937, 0.00946823600679636, -0.04719798266887665, 0.03885814547538757, -0.02907487377524376, -0.015763210132718086, -0.005558937322348356, -0.01490402314811945, 0.005699270870536566, -0.045502521097660065, 0.043394651263952255, 0.004232925828546286, 0.016507837921380997, -0.017126452177762985, 0.01454889215528965, 0.018020005896687508, 0.04415073245763779, -0.014251041226089, 0.04126386716961861, -0.03363429009914398, -0.04153880849480629, 0.025844331830739975, -0.003915026783943176, -0.005175167229026556, -0.01964673213660717, -0.03203047439455986, 0.023576078936457634, -0.07162179052829742, 0.03134312480688095, 0.011409997940063477, 0.019497808068990707, -0.016519293189048767, -0.03262617811560631, 0.04719798266887665, -0.027402324602007866, -0.022189924493432045, 0.033107321709394455, 0.012143170461058617, -0.019864393398165703, 0.012475389055907726, -0.004593783989548683, -0.017195187509059906, 0.019841481000185013, 0.03947675973176956, 0.008116449229419231, -0.019142676144838333, -0.0351235456764698, 0.016244353726506233, 0.04719798266887665, -0.029647665098309517, -0.010739832185208797, 0.014629083685576916, -0.03409252315759659, -0.016416192054748535, -0.038193706423044205, 0.014846744015812874, -0.02705864980816841, 0.008391388691961765, -0.05191778019070625, -0.07235496491193771, 0.00527540547773242, -0.029556017369031906, 0.005238173995167017, -0.0009422412840649486, -0.05824139341711998, 0.03143477439880371, 0.013334575109183788, -0.052009426057338715, -0.01819184422492981, 0.0008792342850938439, -0.011868230067193508, 0.06571058928966522, 0.030907804146409035, -0.008574682287871838, -0.027173208072781563, 0.0031474868301302195, 0.049260031431913376, 0.031045274809002876, 0.01966964453458786, 0.019154133275151253, 0.01973837986588478, -0.02973931096494198, 0.002717893570661545, -0.005384235642850399, 0.026600416749715805, 0.007927427999675274, -0.010837206616997719, 0.014789464883506298, 0.018512606620788574, -0.01088302955031395, -0.07148431986570358, -0.006294973660260439, 0.06845998764038086, -0.01347204577177763, 0.015327888540923595, 0.0134835010394454, 0.0004353211843408644, 0.009370861575007439, -0.04852685704827309, 0.010453436523675919, -0.0005788769340142608, 0.029716400429606438, 0.0010045323288068175, -0.015499725937843323, -0.00604294566437602, 0.007675400003790855, -0.010487804189324379, -0.01687442511320114, 0.009840549901127815, 0.02973931096494198, -0.030014250427484512, 0.0254319217056036, -0.011513100005686283, 0.021468209102749825, 0.04229488968849182, -0.015453902073204517, -0.007320269476622343, 0.015396622940897942, -0.02760852873325348, -0.07322560995817184, 0.003282092744484544, 0.020792314782738686, 0.015591372735798359, -0.01417085062712431, 0.034642402082681656, -0.05095549300312996, 0.00950260367244482, 0.04857268184423447, -0.009611433371901512, 0.014193762093782425, 0.010762743651866913, 0.007595209404826164, -0.016966070979833603, 0.03413834795355797, 0.08532295376062393, 0.008706423453986645, -0.04536505043506622, -0.006713110953569412, -0.01743575930595398, -0.022693980485200882, 0.005063472781330347, -0.0036773185711354017, 0.044952642172575, 0.0683683380484581, 0.013712617568671703, -0.020620478317141533, 0.02408013492822647, 0.0070338742807507515, -0.017011893913149834, -0.018077285960316658, -0.05379653349518776, 0.04371541365981102, 0.008609049022197723, -0.0073546371422708035, -0.04346338286995888, -0.03365720063447952, -0.042638566344976425, -0.06864327937364578, -0.006438171491026878, -0.03184718266129494, -0.0033164601773023605, -0.03361137956380844, -0.010974676348268986, 0.01889064908027649, 0.013872998766601086, 0.060761675238609314, 0.005301181226968765, -0.0068505811505019665, -0.007028146181255579, -0.03881232067942619, -0.026692062616348267, -0.004946050699800253, 0.029647665098309517, 0.024286340922117233, 0.041103485971689224, -0.04834356531500816, 0.03058704175055027, 0.02843334712088108, 0.052009426057338715, -0.0026649103965610266, -0.010831478983163834, -0.01969255693256855, -0.03716268390417099, 0.03198465332388878, -0.013678249903023243, -0.03294694051146507, 0.0004406911029946059, 0.04153880849480629, -0.011936965398490429, -0.07872439920902252, -0.047060512006282806, 0.03120565600693226, -0.0321679450571537, 0.033977966755628586, -0.036108747124671936, 0.02183479443192482, 0.028204230591654778, 0.004338892176747322, 0.0032276776619255543, -0.0319388285279274, -0.0494433231651783, 0.050634726881980896, 0.006449627224355936, 0.016988983377814293, -0.010688280686736107, -0.038972701877355576, 0.07336308062076569, -0.03187009319663048, 0.05814974755048752, -0.07125520706176758, 0.003986625466495752, -0.04197412729263306, -0.016530750319361687, -0.011478732340037823, 0.032442886382341385, -0.02469874918460846, -0.008231007494032383, 0.026096360757946968, 0.03658989071846008, 0.016622396185994148, 0.08523130416870117, -0.027219031006097794, 0.01606106013059616, 0.023621901869773865, -0.008694968186318874, 0.03198465332388878, 0.005143663380295038, -0.0451817587018013, 0.03301567584276199, -0.031068187206983566, -0.017172275111079216, 0.03617748245596886, 0.047610390931367874, 0.022281572222709656, -0.012979445047676563, 0.008757974952459335, 0.0033536916598677635, -0.01665676385164261, -0.03551304340362549, -0.0018816186347976327, 0.003436746308580041, -0.021262003108859062, 0.053567416965961456, -0.019864393398165703, 0.03154933080077171, 0.007578025572001934, -0.027402324602007866, 0.024927865713834763, -0.0008462987607344985, 0.07730387896299362, -0.007663944270461798, -0.005338412709534168, -0.005882564000785351, 0.029578929767012596, 0.021708780899643898, 0.009748904034495354, -0.024309251457452774, 0.0002862165274564177, 0.03070160001516342, -0.022270115092396736, -0.018398048356175423, 0.040301576256752014, 0.022167013958096504, 0.006575641222298145, 0.039751697331666946, -0.05008484795689583, 0.027471058070659637, -0.017722155898809433, -0.030174631625413895, 0.001861570868641138, -0.00021461764117702842, -0.003393786959350109, 0.0005720750777982175, 0.05100131407380104, 0.02041427232325077, -0.026829533278942108, 0.0011434340849518776, -0.011530283838510513, 0.04953496903181076, -0.019268691539764404, 0.007830053567886353, -0.015820488333702087, 0.02921234257519245, 0.022911641746759415, 0.008929812349379063, -0.05448388308286667, 0.031572241336107254, -0.03629204258322716, -0.010711192153394222, 0.010825750418007374, 0.060715850442647934, -0.032442886382341385, -0.012074435129761696, 0.018604252487421036, 0.03134312480688095, 0.02050592005252838, -0.022121191024780273, 0.05544617399573326, 0.013895911164581776, 0.014892566949129105, -0.01560282800346613, -0.03136603906750679, 0.06034926325082779, 0.05379653349518776, -0.011072050780057907, -0.016897335648536682, -0.0052066706120967865, 0.019440528005361557, -0.01531643234193325, -0.013872998766601086, 0.038926880806684494, 0.014377055689692497, -0.04227197915315628, -0.02037990465760231, -0.02333550713956356, -0.07537930458784103, -0.053567416965961456, 0.03285529464483261, 0.041951216757297516, 0.005962754599750042, -0.028639553114771843, -0.0006644375971518457, -0.003657270921394229, -0.004450586624443531, 0.006529817823320627, -0.015751753002405167, 0.0012673002202063799, 0.029441459104418755, 0.06213637441396713, -0.018627164885401726, 0.0002573979727458209, -0.0012909278739243746, -0.04316553473472595, -0.017676331102848053, 0.08202368021011353, -0.02618800662457943, -0.016599483788013458, -0.010974676348268986, -0.0028482035268098116, -0.005441514775156975, -0.015144594945013523, -0.0392705537378788, 0.023152213543653488, -0.0321679450571537, 0.02623382955789566, -0.0025088246911764145, -0.03739180043339729, 0.01234937459230423, -0.023026200011372566, -0.017241010442376137, 0.005286861211061478, -0.025867244228720665, 0.023805195465683937, 0.027081560343503952, -0.020666301250457764, -0.010441980324685574, 0.05168866366147995, -0.026462946087121964, -0.05040561035275459, 0.000751072249840945, 0.022797083482146263, 0.008288286626338959, -0.0019245778676122427, 0.008946996182203293, 0.033153146505355835, 0.004126959480345249, -0.026714975014328957, 0.00945105217397213, 0.002299756044521928, -0.03734597563743591, -0.005329820793122053, 0.02611927129328251, 0.008099265396595001, -0.006415259558707476, -0.028639553114771843, -0.046281516551971436, -0.028822844848036766, -0.009708807803690434, 0.028066761791706085, -0.009731720201671124, 0.005103568080812693, 0.039660051465034485, -0.0026649103965610266, 0.004694022703915834, -0.018432416021823883, -0.024492545053362846, -0.0034482020419090986, -0.013746985234320164, 0.0007732679368928075, 0.03640659898519516, 0.011387086473405361, -0.039705876260995865, -0.007194255478680134, 0.02994551509618759, -0.048481035977602005, 0.012303551658987999, -0.014044836163520813, -0.022774172946810722, -0.01160474680364132, -0.011106418445706367, -0.029418548569083214, -0.05049725994467735, 0.018672987818717957, 0.055125411599874496, 0.012120258994400501, 4.6539273171219975e-05, 0.005186622962355614, 0.02318658120930195, -0.012830519117414951, -0.008597593754529953, -0.02194935269653797, 0.020127877593040466, 0.03704812377691269, -0.03136603906750679, 0.02327822893857956, -0.040301576256752014, -0.0011627657804638147, -0.023851018399000168, -0.07015544921159744, -0.006781845819205046, -0.02414887025952339, -0.00976608693599701, -0.01748158223927021, 0.031091097742319107, -0.008838165551424026, -0.0010539354989305139, 0.023507345467805862, -0.003431018441915512, -0.002200949704274535, -0.004636743571609259, -0.023644814267754555, 0.006254878360778093, 0.02340424247086048, -0.026714975014328957, -0.003379467176273465, 0.04142424836754799, 0.03947675973176956, -0.03187009319663048, 0.016519293189048767, -0.03844573348760605, -0.031778447329998016, 7.795327837811783e-05, 0.024377986788749695, 0.0211703572422266, -0.0004099035868421197, 0.038285352289676666, 0.006793302018195391, -0.009691624902188778, 0.022888729348778725, -0.0026634782552719116, -0.03184718266129494, -0.00871787965297699, 0.010321694426238537, 0.03491734340786934, -0.0035226650070399046, 0.0105851786211133, -0.003064432181417942, 0.03049539588391781, 0.020746491849422455, -0.004147007130086422, -0.011106418445706367, -0.017195187509059906, -0.026783708482980728, 0.004144143313169479, -0.0002831735764630139, 0.011513100005686283, 0.003568488173186779, -0.007337453309446573, 0.00047792252735234797, -0.04311970993876457, -0.027471058070659637, -0.005670631304383278, -0.03255744278430939, -0.005235310178250074, 0.006770390085875988, -0.024996601045131683, 0.014663450419902802, 0.00526108592748642, 0.037575092166662216, 0.018420960754156113, 0.012429566122591496, -0.00021032171207480133, 0.049260031431913376, 0.02474457398056984, -0.060211796313524246, 0.05471299961209297, 0.029441459104418755, 0.007159888278692961, 0.0015379439573734999, 0.051367901265621185, 0.025019513443112373, 0.024286340922117233, -0.011106418445706367, 0.025615215301513672, 0.002730781212449074, -0.00567635940387845, -0.005006193649023771, 0.010928853414952755, -0.022155556827783585, -0.0290977843105793, -0.0045193214900791645, -0.012647226452827454, 0.045479610562324524, 0.01893647201359272, 0.03810206055641174, 0.007875876501202583, -0.020196612924337387, 0.011536011472344398, 0.022075366228818893, -0.057874806225299835, -0.007789958268404007, 0.007136976346373558, -0.025363188236951828, -0.03505481034517288, -0.028708286583423615, -0.009983748197555542, -0.04085145890712738, -0.02611927129328251, 0.04509011283516884, 0.011810950934886932, -0.0269670020788908, -0.010757016018033028, -0.032419972121715546, 0.009657257236540318, -0.010631001554429531, 0.00265488657169044, 0.018810458481311798, -0.03885814547538757, 0.01450306922197342, -0.05397982895374298, 0.008620505221188068, 0.0269670020788908, -0.01882191374897957, 0.020689211785793304, 0.0062262387946248055, 0.011226704344153404, 0.00038806593511253595, 0.0064553553238511086, -0.020666301250457764, -0.0060773128643631935, -0.03067868761718273, -0.010774199850857258, -0.002643430605530739, -0.023049112409353256, -0.033176057040691376, 0.01974983513355255, -0.016576573252677917, -0.015213330276310444, -0.0337030254304409, 0.001395462197251618, 0.014090660028159618, 0.012463932856917381, 0.02559230476617813, -0.03846864774823189, -0.005613352172076702, 0.011289711110293865, 0.016588028520345688, 0.018054373562335968, 0.009685896337032318, -0.013277296908199787, -0.05457553267478943, 0.026806620880961418, -0.05407147482037544, -0.01970401220023632, -0.012647226452827454, 0.0003366937453392893, 0.015373711474239826, -0.03988916799426079, -0.030014250427484512, -0.013632426969707012, 0.028754111379384995, -0.017653420567512512, 0.016496382653713226, -0.018695900216698647, 0.014388510957360268, 0.014262497425079346, -0.010046754963696003, 0.01088875811547041, -0.0012164650252088904, -0.006403803825378418, 0.009748904034495354, -0.09334202855825424, 0.02825005352497101, 0.01834077015519142, -0.012406653724610806, -0.0037546453531831503, -0.04009537398815155, -0.005888292100280523, -0.003431018441915512, -0.018776090815663338, -0.006415259558707476, 0.002813836093991995, -0.006512633990496397, -0.020276803523302078, 0.032488707453012466, 0.021376561373472214, 0.015007125213742256, 0.017298290506005287, -0.0021851977799087763, -0.00380906043574214, -0.0013281592400744557, -0.005049153231084347, 0.02184624969959259, 0.01208589132875204, 0.030403748154640198, 0.009937924332916737, -0.017848169431090355, 0.012624314986169338, -0.054208945482969284, -0.0015522637404501438, 0.014686362817883492, -0.016610940918326378, -0.012773239985108376, -0.0031618066132068634, 0.0003748201415874064, 0.01061954628676176, 0.017779434099793434, 0.019509263336658478, -0.0196352768689394, 0.023152213543653488, -0.002500233007594943, 0.02834170125424862, -0.02485913224518299, -0.01892501674592495, -0.016336001455783844, -0.016507837921380997, 0.01666821911931038, 0.03484860807657242, -0.012578491121530533, -0.02701282501220703, 0.010430525057017803, -0.00300428899936378, -0.004258701577782631, 0.03592545539140701, 0.0004363951738923788, -0.010476347990334034, -0.03629204258322716, 0.006398076191544533, -0.005338412709534168, 0.019451983273029327, 0.013999013230204582, -0.02616509422659874, -0.024217605590820312, -0.03661280497908592, -0.01168493740260601, -0.0076009370386600494, -0.009846278466284275, -0.04149298369884491, 0.0030529762152582407, 0.016530750319361687, 0.008969907648861408, -0.0016840057214722037, -0.07102608680725098, -0.0005334116867743433, -0.009113105945289135, -0.027860555797815323, -0.03661280497908592, -0.0011470140889286995, 0.05306336283683777, 0.015511181205511093, 0.02467583864927292, -0.0017498766537755728, -0.03223668038845062, 0.0032563169952481985, 0.01234937459230423, 0.007452011574059725, -0.0037116860039532185, -0.005063472781330347, 0.024332163855433464, -0.0025661038234829903, -0.0233011394739151, -0.05975356325507164, 0.0025775597896426916, 0.02189207449555397, -0.006340797059237957, -0.001396894222125411, 0.010086850263178349, -0.023140758275985718, 0.027081560343503952, 0.01351786870509386, -0.01736702397465706, 0.046968866139650345, 0.004293068777769804, -0.019325969740748405, 0.04007246345281601, 0.0005187338683754206, -0.003831972135230899, -0.0363149531185627, 0.006300701294094324, 0.005037697032094002, -0.006031489931046963, -0.0036945021711289883, -0.030105898156762123, -0.030335014685988426, -0.024469632655382156, -0.028731198981404305, 0.012635770253837109, -0.025088248774409294, 0.016920248046517372, 0.0006060845335014164, -0.01971546746790409, 0.020597565919160843, -0.00600857799872756, -0.013391854241490364, 0.03070160001516342, -0.01457180455327034, 0.006827669218182564, 0.0028825709596276283, 0.018478238955140114, 0.005533161573112011, -0.0038634755183011293, 0.0055646649561822414, -0.009107377380132675, 0.04492972791194916, 0.018661532551050186, 0.017229555174708366, 0.017825257033109665, -0.018615709617733955, -0.032419972121715546, 0.01742430403828621, 0.016496382653713226, 0.02758561633527279, 0.019062485545873642, 0.05150537192821503, 0.013781352899968624, -0.0233011394739151, 0.04133260250091553, 0.007532202173024416, -0.04348629713058472, 0.010820022784173489, 0.0009852006332948804, 0.04073689877986908, -0.020253891125321388, 0.010195680893957615, 0.020173700526356697, -0.01666821911931038, -0.01486965548247099, 0.0016252945642918348, -0.02029971405863762, 0.03798750042915344, -0.04295932874083519, -0.012647226452827454, 0.008127904497087002, 0.011541740037500858, -0.000444987032096833, -0.029349813237786293, 0.004447722341865301, 0.016645308583974838, -0.02318658120930195, 0.012693049386143684, -0.010751288384199142, -0.018386593088507652, 0.011856774799525738, -0.017080629244446754, 0.014239585027098656, 0.0004786385106854141, 0.029326900839805603, 0.007623848970979452, 0.009972291998565197, -0.024240517988801003, -0.004533641040325165, 0.0012150330003350973, -0.007102609146386385, -0.03791876882314682, 0.02189207449555397, 0.02323240414261818, 0.008517403155565262, 0.02042572945356369, 0.05741657316684723, -0.0030300647486001253, 0.019990406930446625, -0.02177751623094082, -0.00871787965297699, 0.05100131407380104, 0.01351786870509386, 0.06497741490602493, 0.04935167729854584, 0.033794671297073364, -0.014159394428133965, 0.022739805281162262, 0.03159515559673309, -0.013632426969707012, 0.026554593816399574, 0.00908446591347456, -0.01024723146110773, 0.0023684909101575613, -0.03862902894616127, 0.013128370977938175, -0.07340890169143677, -0.014147939160466194, -0.008173728361725807, 0.013712617568671703, -0.04935167729854584, 0.009141745045781136, 0.023621901869773865, 0.004169918596744537, 0.058653801679611206, 0.0048773158341646194, 0.06800175458192825, 0.00032845986424945295, 0.03143477439880371, 0.007291629910469055, -0.021708780899643898, -0.01238374225795269, -0.005753686185926199, -0.00419283052906394, -0.004900227300822735, -0.00011178375279996544, 0.020208068192005157, 0.0209985189139843, 0.031755536794662476, 0.0023856747429817915, 0.032534532248973846, 0.05595022812485695, 0.05613352358341217, 0.01233791932463646, 0.0002477321249898523, 0.04371541365981102, 0.004668246954679489, 0.011902597732841969, -0.00941668450832367, 0.024400899186730385, 0.015327888540923595, 0.005839604884386063, 0.011547467671334743, 0.026531681418418884, -0.007663944270461798, -0.04350920766592026, -0.03794167935848236, 0.019280146807432175, 0.002404290484264493, 0.009697352536022663, -0.01685151271522045, 0.0017183731542900205, -0.004762757569551468, 0.00281240395270288, 0.03432163968682289, -0.01060236245393753, 0.03047248348593712, 0.019131220877170563, 0.02921234257519245, -0.0014692090917378664, 0.01905103027820587, -0.016599483788013458, 0.022751260548830032, 0.017241010442376137, -0.01200570072978735, -0.024515457451343536, 0.01735556870698929, -0.01233791932463646, -0.02110162191092968, -0.0410347506403923, 0.007177071645855904, 0.00709115294739604, -0.006100224796682596, 0.005662039387971163, 0.002865387126803398, -0.003766101086512208, 0.01742430403828621, 0.005905475467443466, -0.03988916799426079, -0.010384702123701572, -0.03214503452181816, 0.006925043649971485, 0.009250575676560402, 0.0033680114429444075, 0.00438471557572484, 0.041057661175727844, 0.015167507342994213, 0.013460589572787285, -0.04958079382777214, -0.02172023616731167, -7.634230860276148e-05, -0.03491734340786934, 0.03154933080077171, 0.01450306922197342, -0.028685376048088074, 0.061265729367733, -0.028845757246017456, 0.036727361381053925, 0.027493970468640327, 0.03571924939751625, 0.012246272526681423, 0.044952642172575, 0.0019002342596650124, 0.008299741894006729, 0.019222866743803024, 0.01757322996854782, -0.007314541842788458, -0.006506906356662512, -0.0008978499681688845, -0.0068849483504891396, -0.0067016552202403545, 0.008620505221188068, 0.012967988848686218, -0.024950778111815453, 0.01752740517258644, -0.04153880849480629, -0.003333643777295947, -0.006718839053064585, -0.01748158223927021, 0.05590440705418587, -0.02184624969959259, -0.02545483410358429, -0.004370395559817553, 0.014491613954305649, -0.016588028520345688, -0.002294028177857399, -0.000205130796530284, 0.015912136062979698, -0.024584190919995308, 0.020013319328427315, 0.05178030952811241, 0.02181188389658928, -0.004069680348038673, 0.010390429757535458, 0.009491147473454475, -0.005430059041827917, 0.007870148867368698, -0.0023269637022167444, -0.004900227300822735, 0.012326463125646114, 0.00490881921723485, -0.038285352289676666, 0.01201715599745512, -0.013598059304058552, 0.014926934614777565, -0.02177751623094082, 0.01735556870698929, 0.006478266790509224, 0.016416192054748535, -0.012887798249721527, 0.01753886230289936, 0.008815254084765911, -0.018375135958194733, 0.005576120689511299, -0.018386593088507652, 0.04788533225655556, -0.0054902019910514355, 0.01663385145366192, 0.03494025394320488, 0.030449572950601578, -0.0016510701971128583, 0.0105851786211133, 0.03368011489510536, 0.0056477198377251625, 0.029303990304470062, 0.0028095401357859373, 0.0015937910648062825, 0.008924084715545177, 0.006867764517664909, -0.008901173248887062, -0.04930585250258446, -0.015373711474239826, -0.005762278102338314, -0.02992260456085205, -0.005578984972089529, 0.005367052275687456, -0.03056412935256958, 0.011845318600535393, -0.041745010763406754, 0.0006433159578591585, -0.00833410955965519, -0.05375071242451668, 0.008145088329911232, -0.023736460134387016, -0.028822844848036766, -0.012555579654872417, -0.008677784353494644, -0.0282729659229517, 0.0059684826992452145, 0.0006476118578575552, 0.006420987658202648, 0.0036744545213878155, -0.002513120649382472, 0.027952203527092934, 0.020276803523302078, 0.007933155633509159, 0.015293520875275135, -0.019348882138729095, -0.002513120649382472, 0.008271102793514729, 0.005842468701303005, 0.02403431199491024, 0.02319803647696972, -0.010716920718550682, 0.014812376350164413, -0.019921673461794853, 0.03138894960284233, -0.012143170461058617, 0.0009107377845793962, -0.05187195539474487, 0.028158407658338547, 0.009330766275525093, 0.010212864726781845, -0.03047248348593712, -0.025340275838971138, 0.012555579654872417, -0.01962382160127163, -0.0008155112736858428, 0.0010331718949601054, 0.003253453178331256, 0.020173700526356697, 0.02907487377524376, -0.03633786365389824, 0.0007797118159942329, -0.003488297574222088, -0.0008162272279150784, 0.014262497425079346, 0.02260233461856842, -0.0012035771505907178, -0.013598059304058552, 0.02552356943488121, 0.07171344012022018, -0.009405229240655899, 0.0018658668268471956, 0.005753686185926199, -0.031663890928030014, -0.008895444683730602, -0.006604280788451433, -0.007560841739177704, -0.011891142465174198, -0.0016897335881367326, -0.013563691638410091, -0.022338850423693657, -0.00016020250041037798, 0.010270143859088421, 0.0020477280486375093, -0.0025632400065660477, -0.003869203617796302, -0.02410304732620716, 0.0038577476516366005, 0.016290176659822464, 0.07487524300813675, 0.022350307554006577, -0.006352252792567015, 0.038331177085638046, 0.020551742985844612, 0.053659066557884216, -0.027196118608117104, 0.0012572763953357935, -0.002607631264254451, 0.017928360030055046, -0.014594716019928455, 0.005578984972089529, 0.03287820518016815, 0.006747478619217873, -0.022040998563170433, 0.007864421233534813, 0.003408106742426753, 0.009599978104233742, -0.001736988895572722, -0.0021880618296563625, 0.01687442511320114, 0.0004052496515214443, -0.020666301250457764, 0.016141252592206, -0.007016690447926521, -0.03718559443950653, 0.017195187509059906, -0.014090660028159618, 0.03368011489510536, 0.005662039387971163, -0.02333550713956356, 0.005149391479790211, 0.0102014085277915, 0.02049446292221546, 0.006598552688956261, -0.009588521905243397, 0.009737447835505009, 0.012841975316405296, 0.020024774596095085, -0.022877274081110954, 0.029510194435715675, 0.012578491121530533, -0.01889064908027649, 0.03212212026119232, -0.023507345467805862, 0.007434827741235495, 0.02259087935090065, -0.00599139416590333, -0.009943652898073196, 0.0035341207403689623, 0.019291602075099945, -0.017641963437199593, 0.05659175664186478, -0.0070224180817604065, 0.03267200291156769, -0.01752740517258644, 0.002520280657336116, 0.0167942326515913, -0.011507372371852398, 0.00878088641911745, -0.034619491547346115, 0.020677756518125534, -0.0027021418791264296, -0.005295453127473593, 0.007543657906353474, -0.030747422948479652, 0.0033594195265322924, -0.029693488031625748, 0.003923618700355291, -0.03434455022215843, 0.005223854444921017, -0.02763143926858902, -0.023530256003141403, -0.025798508897423744, 0.0007159888045862317, 0.0008362749358639121, 0.01887919381260872, -0.01760759763419628, 0.018443871289491653, -0.02043718472123146, 0.01461762748658657, -0.03196173906326294, 0.013323119841516018, 0.02028825879096985, -0.04158462956547737, -0.03739180043339729, 0.023072022944688797, -0.0015851992648094893, -0.008305470459163189, 0.00953697133809328, 0.00017854971520137042, 0.017722155898809433, 0.0024744572583585978, -0.014961302280426025, -0.017114996910095215, 0.004499273840337992, -0.005507385823875666, -0.018569884821772575, 0.006254878360778093, 0.002235317137092352, 0.007704039569944143, 0.036085836589336395, -0.013953190296888351, 0.0391559973359108, 0.030312102288007736, 0.013300208374857903, 0.012990901246666908, -0.012452477589249611, 0.0036515428218990564, 0.0022023816127330065, 0.017080629244446754, 0.010470620356500149, 0.012967988848686218, 0.014193762093782425, 0.005601896438747644, -0.03338226303458214, 0.015717387199401855, 0.011673481203615665, 0.0034940254408866167, -0.019348882138729095, 0.027287766337394714, 0.0219378974288702, 0.01421667356044054, 0.029533106833696365, 0.004141279496252537, 0.00567635940387845, 0.016358911991119385, 0.004785669036209583, 0.027219031006097794, -0.021365106105804443, 0.015877768397331238, 0.013311663642525673, -0.013185650110244751, -0.00798470713198185, 0.017779434099793434, -0.031022362411022186, 0.0021236229222267866, -0.03058704175055027, 0.05026814341545105, -0.011742216534912586, -0.009256303310394287, -0.00675893435254693, -0.02630256488919258, 0.044127821922302246, -0.01953217387199402, 0.04135551303625107, -0.041172221302986145, 0.00562480790540576, -0.0033107323106378317, 0.00015903901658020914, -0.004805716685950756, 0.0018515470437705517, -0.03780420869588852, 0.00983482226729393, -0.0011190904770046473, -0.014411422424018383, 0.001824339502491057, 0.0060143060982227325, -0.017802346497774124, -0.005473018623888493, -0.010310239158570766, -0.005939843133091927, 0.036750271916389465, -0.0009708808502182364, 0.044036176055669785, 0.025156982243061066, 0.006770390085875988, -0.018042918294668198, -0.0012715961784124374, -0.012601402588188648, 0.006065857131034136, 0.009571338072419167, 0.014285408891737461, -0.013999013230204582, 0.0065183620899915695, -0.002790924394503236, -0.02685244381427765, 0.020677756518125534, -0.005547481123358011, 0.006461082957684994, -0.00506633659824729, 0.021342193707823753, -0.007079697214066982, -0.011026227846741676, -0.008076353929936886, -0.02703573741018772, 0.022155556827783585, -0.025088248774409294, 0.02325531654059887, 0.028891580179333687, 0.0276772640645504, -0.051276255398988724, -0.019085397943854332, -0.022086823359131813, 0.004900227300822735, -0.030861981213092804, -0.003027200698852539, 0.02265961468219757, 0.008946996182203293, 0.009279214777052402, 0.014835287816822529, -0.03505481034517288, 0.010527899488806725, 0.007331725209951401, 0.02102143131196499, 0.0013603786937892437, 0.004742709919810295, -0.005979938432574272, -0.006449627224355936, -0.00976608693599701, 0.014445790089666843, -0.011725032702088356, 0.00915320124477148, 0.043394651263952255, 0.020643388852477074, -0.0175044946372509, 0.004313116427510977, -0.018695900216698647, 0.030220456421375275, -0.006495450623333454, -0.010207136161625385, -0.012097346596419811, 0.03768965229392052, -0.006506906356662512, -0.00435034791007638, -0.04460896551609039, -0.007131248712539673, 0.019394705072045326, 0.016324544325470924, 0.024240517988801003, 0.05022231861948967, -0.030907804146409035, -0.004456314258277416, 0.022934554144740105, -0.01347204577177763, 0.007291629910469055, 0.007452011574059725, -0.0319388285279274, -0.03436746448278427, 0.0007976115448400378, -0.017183732241392136, -0.007681128103286028, -0.038903966546058655, -0.02049446292221546, -0.005198078695684671, 0.003943666350096464, 0.006403803825378418, -0.034527845680713654, 0.0077956863678991795, -0.014228129759430885, -0.01612979546189308, -0.041836656630039215, -0.01806582883000374, -0.03995790332555771, 0.03814788535237312, -0.004066816531121731, 0.016324544325470924, 0.03839991241693497, 0.04172210022807121, 0.0016739817801862955, -0.005862516351044178, 0.028708286583423615, 0.04172210022807121, -0.047793686389923096, 0.019429072737693787, 0.01816893182694912, -0.018042918294668198, -0.007996163330972195, -0.011776584200561047, 0.00978327076882124, -0.031732622534036636, -0.005962754599750042, 0.002866819268092513, -0.005553209222853184, -0.04903091490268707, -0.003743189387023449, -0.004009537398815155, -0.0377354733645916, -0.009342221543192863, 0.030426660552620888, -0.0018630028935149312, -0.014686362817883492, -0.0629153698682785, -0.03047248348593712, 0.011220976710319519, 0.02254505641758442, 0.01053362712264061, 0.01884482614696026, 0.026783708482980728, -0.00836847722530365, -0.005255357827991247, -0.007669671904295683, 0.008523130789399147, -0.010275871492922306, 0.01494984608143568, 0.02550065703690052, -0.007486378774046898, -0.008557498455047607, 0.006140320096164942, -0.02625674195587635, -0.0138386320322752, 0.02041427232325077, -0.022040998563170433, -0.006833397317677736, -0.011742216534912586, -0.017848169431090355, -0.007068241480737925, 0.0020606156904250383, -0.006587096955627203, -0.01599232666194439, -0.016977526247501373, -0.021330738440155983, -0.033130235970020294, -0.057004164904356, 0.010298782959580421, -0.014881111681461334, 0.009491147473454475, -0.008231007494032383, -0.005865380167961121, 0.04525049403309822, 0.010791383683681488, -0.027081560343503952, 0.017939815297722816, -0.03420707955956459, 0.07157596945762634, 0.02036844938993454, -0.006598552688956261, -0.015247697941958904, -0.02685244381427765, 0.003436746308580041, 0.01493839081376791, 0.011427181772887707, -0.011289711110293865, -0.01234937459230423, 0.0007299506105482578, 0.015831945464015007, -0.01343767810612917, -0.017263922840356827, -0.006403803825378418, -0.0261421836912632, -0.004507865756750107, 0.005521705839782953, -0.0057851895689964294, -0.00913601741194725, -0.013689706102013588, -0.01607251726090908, 0.05411729961633682, 0.01670258678495884, 0.002249636920168996, 0.012303551658987999, 0.025179894641041756, 0.00805344246327877, 0.010344605892896652, -0.020402817055583, 0.023621901869773865, 0.04871014878153801, -0.0001558170624775812, -0.00949687510728836, 0.02467583864927292, -0.03345099836587906, -0.013185650110244751, -0.012933622114360332, 0.047702036798000336, -0.014319776557385921, 0.030380837619304657, 0.0031016634311527014, 0.05590440705418587, -0.05022231861948967, 0.04286768287420273, -0.007171344012022018, -0.008116449229419231, 0.015534093603491783, -0.031640976667404175, -0.03766673803329468, 0.043371737003326416, 0.029670575633645058, -0.02113598957657814, -0.042638566344976425, -0.007824325934052467, 0.04586910828948021, 0.02540901117026806, 0.001158469938673079, 0.007102609146386385, -0.017321201041340828, 0.006317885126918554, 0.01595795899629593, 0.00870069582015276, 0.02770017459988594, 0.07304231077432632], [0.013766195625066757, -0.011654336005449295, 0.0274206530302763, -0.0008394362521357834, -0.04351101070642471, 0.018012262880802155, -0.010928035713732243, -0.04257240891456604, 0.031108027324080467, 0.009704497642815113, 0.0034303751308470964, -0.00018122604524251074, -0.025074142962694168, -0.008134569972753525, 0.0806305781006813, 0.009849757887423038, 0.03481774777173996, 0.06838402152061462, -0.00844185147434473, 0.028470996767282486, 0.027487697079777718, -0.014805364422500134, 0.02249298058450222, 0.01965481974184513, 0.005243333987891674, -0.023398064076900482, 0.026973698288202286, -0.010900100693106651, 0.06704316288232803, -0.03729834407567978, 0.01606801152229309, -0.023979105055332184, -0.01018497347831726, -0.037901733070611954, 0.027666477486491203, 0.009598346427083015, 0.00420416472479701, -0.014995320700109005, -0.026415005326271057, -0.013944977894425392, -0.049924809485673904, -0.018559781834483147, -0.019476039335131645, 0.0006023409077897668, 0.02067164145410061, 0.03291819244623184, -0.0113582294434309, -0.0006711299647577107, -0.003927611745893955, 0.0194313433021307, 0.024984750896692276, -0.004860629327595234, 0.01336393691599369, -0.010201734490692616, -0.013419806025922298, 0.006195905618369579, 0.04903090000152588, 0.05743364244699478, 0.016392052173614502, -0.011134752072393894, 0.016224445775151253, -0.009497781284153461, -0.012704678811132908, -0.023487454280257225, 0.051489148288965225, 0.0066875554621219635, -0.01972186379134655, 0.04974602535367012, 0.01481653843075037, -0.0038438078481703997, -0.01531936228275299, 0.0831335186958313, 0.023576844483613968, 0.026102136820554733, -0.008117809891700745, 0.06163501366972923, -0.02386736497282982, -0.04098571836948395, -0.0051734973676502705, 0.017610004171729088, -0.057165469974279404, 0.03171141445636749, -0.057165469974279404, 0.035912785679101944, -0.0018143556080758572, 0.00989445298910141, 0.03338749334216118, -0.049433156847953796, 0.019710689783096313, -0.016257965937256813, -0.0319572389125824, -0.006391447968780994, 0.0331193208694458, 0.0055254739709198475, -0.012794069945812225, -0.0019805666524916887, -0.0012514723930507898, -0.03973424807190895, -0.05962371826171875, 0.01043079886585474, -0.06159031763672829, 0.03394618630409241, -0.02186724543571472, 0.03356627747416496, -0.015431101433932781, -0.04313110187649727, -0.013229850679636002, 0.017028963193297386, -0.03309697285294533, 0.044941265136003494, 0.05189140886068344, 0.026102136820554733, -0.01225772500038147, 0.008715610951185226, -0.002676139585673809, -0.03580104932188988, -0.0039331987500190735, -0.014626583084464073, -0.02171081118285656, -0.04315344989299774, -0.009313412941992283, -0.004248860292136669, 0.04648325964808464, -0.027040742337703705, 0.005290823057293892, -0.0014155884273350239, -0.07915562391281128, 0.028046390041708946, 0.05229366570711136, 0.05685260146856308, 0.038058169186115265, -0.010067648254334927, 0.06091988459229469, -0.020615771412849426, -0.006201492622494698, 0.013553892262279987, -0.022336546331644058, -0.0153528843075037, 0.014123759232461452, 0.017643526196479797, 0.056673821061849594, 0.021789027377963066, 0.040114156901836395, 0.04044937342405319, -0.018112827092409134, 0.048002902418375015, 0.0073021175339818, 0.04255006089806557, -0.025677530094981194, -0.035778701305389404, -0.01591157726943493, 0.041030414402484894, -0.018392173573374748, 0.015799839049577713, 0.0027431827038526535, -0.005972428247332573, 0.009190499782562256, 0.039689552038908005, 0.011224142275750637, 0.040896330028772354, -0.04187962785363197, -0.013565066270530224, 0.0262138769030571, 0.011710206046700478, -0.03850512206554413, 0.012961678206920624, -0.012838765047490597, -0.046662040054798126, -0.036560870707035065, -0.01106770895421505, -0.03164437413215637, -0.018302783370018005, 0.0033996470738202333, -0.08653037250041962, -0.005944493692368269, -0.022973457351326942, 0.039041467010974884, 0.0073915086686611176, -0.044740136712789536, -0.006173557601869106, 0.039689552038908005, -0.0382816456258297, -0.06230544671416283, 0.008933501318097115, 0.0007947408012114465, 0.03019176982343197, -0.010603993199765682, 0.049209680408239365, -0.02473892644047737, -0.02686196006834507, 0.01053136307746172, -0.013777369633316994, 0.0185150858014822, -0.00479079270735383, 0.008039592765271664, 0.03197958692908287, -0.02444840595126152, 0.02111859619617462, -0.015654578804969788, -0.012213028967380524, -0.009777127765119076, 0.007006010506302118, 0.012034247629344463, 0.013486849144101143, -0.05698668584227562, 0.006128862500190735, 0.013933803886175156, -0.0018688280833885074, 0.04015885293483734, 0.012883461080491543, 0.0036594392731785774, -0.0034555161837488413, -0.013464502058923244, 0.005100867245346308, 0.03034820407629013, 0.019051432609558105, 0.025476401671767235, -0.000717920542228967, 0.013207502663135529, -0.013866760767996311, -0.026035094633698463, -0.008274243213236332, -0.0030811920296400785, -0.027688825502991676, -0.04514239728450775, -0.01297285221517086, 0.005114834755659103, -0.012034247629344463, 0.041678499430418015, -0.0075255949050188065, 0.013911455869674683, 0.011967204511165619, 0.002437298186123371, -0.01880560629069805, -0.05443904548883438, 0.015375231392681599, 0.015822187066078186, -0.0012766135623678565, -0.028247518464922905, -0.016157401725649834, 0.02970012091100216, 0.0379464291036129, -0.0037013411056250334, 0.04085163399577141, 0.033923838287591934, -0.008341286331415176, -0.018336305394768715, 0.030370552092790604, 0.016906050965189934, -0.047377169132232666, 0.007363574113696814, -0.019319605082273483, 0.006911032367497683, -0.04697490856051445, -0.026057442650198936, -0.014917103573679924, 0.01802343688905239, 0.008648567833006382, 0.02735361084342003, -0.0274206530302763, -0.01396732497960329, 0.037901733070611954, -0.0035225595347583294, -0.019096126779913902, -0.04733247309923172, 0.003159408923238516, 0.01553166564553976, -0.021621419116854668, -0.043533358722925186, 0.000721412361599505, -0.05743364244699478, 0.028113432228565216, -0.018425695598125458, -0.024828316643834114, -0.027063090354204178, 0.0073412260971963406, -0.004095220007002354, 0.013833238743245602, 0.03034820407629013, 0.044159095734357834, -0.003044876968488097, -0.023889712989330292, -0.028269866481423378, -0.013464502058923244, -0.015766317024827003, -0.006391447968780994, -0.016939572989940643, 0.04831577092409134, 0.01946486532688141, -0.00044974786578677595, 0.01659318245947361, 0.042952317744493484, 0.024850664660334587, -0.01883912831544876, 0.02771117351949215, 0.007330052554607391, 0.010134691372513771, 0.03148793801665306, 0.010911274701356888, -0.02142029069364071, -0.008123396895825863, 0.08791593462228775, -0.0206381194293499, -0.014481322839856148, -0.05792529135942459, 0.005363452713936567, -0.02438136376440525, 0.02494005672633648, 0.008430677466094494, 0.0011606847401708364, 0.03781234472990036, 0.019733037799596786, -0.020425816997885704, 0.0062070791609585285, -0.00653670821338892, 0.008531242609024048, -0.015866881236433983, 0.002523895585909486, 0.05457313358783722, -0.02914142794907093, 0.059221457690000534, 0.024917708709836006, 0.047153688967227936, -0.05577991157770157, 0.024984750896692276, -0.0009986637160182, 0.028024042025208473, 0.04364509880542755, -0.015297015197575092, -0.006905445829033852, -0.0776359811425209, -0.010307885706424713, 0.03839338570833206, 0.02581161819398403, 0.00021876323444303125, -0.047421861439943314, -0.001596465241163969, 0.03584574535489082, -0.03821460157632828, -0.008168091997504234, 0.0022096307948231697, 0.008346873335540295, 0.03164437413215637, -0.02278350107371807, -0.010330233722925186, 0.006441730540245771, -0.005776885896921158, -0.025498749688267708, 0.01315163355320692, 0.024560144171118736, -0.03153263404965401, -0.025051794946193695, 0.016637878492474556, -0.01378854364156723, -0.05805937945842743, -0.009916801005601883, 0.06556820869445801, 0.002258516615256667, 0.007966962642967701, 0.003620330709964037, -0.0133974589407444, 0.007698789704591036, 0.003963926807045937, 0.07718902826309204, 0.012525897473096848, 0.007816115394234657, -0.044159095734357834, -0.013129285536706448, -0.003014148911461234, -0.024001451209187508, 0.02744300104677677, -0.02458249218761921, 4.787628313351888e-06, 0.032650019973516464, 0.02278350107371807, -0.004212545230984688, -0.008570350706577301, 0.002994594629853964, 0.0028227963484823704, -0.007045119069516659, 0.004514239728450775, -0.0009162565693259239, 0.005318757612258196, 0.01727478764951229, 0.013319241814315319, 0.03803582116961479, -0.039264943450689316, -0.0086541548371315, 0.00012762643746100366, -0.02337571606040001, -0.012201855890452862, -0.00030064667225815356, -0.005843929015100002, -0.02607979066669941, -0.0017752470448613167, 0.03416966646909714, 0.007112162187695503, 0.019252561032772064, -0.006799294147640467, -0.030526986345648766, -0.011710206046700478, -0.022638240829110146, -0.050774022936820984, 0.03716425970196724, 0.029901249334216118, 0.016447922214865685, 0.0008827349520288408, -0.03256062790751457, 0.02777821756899357, 0.005693081766366959, -0.04746655747294426, 0.030683420598506927, 0.0319572389125824, -0.009883278980851173, -0.0013527354458346963, 0.0012542657786980271, 0.06762420386075974, -0.008676502853631973, 0.0029694533441215754, -0.02157672494649887, -0.0062573617324233055, 0.014995320700109005, -0.014023195020854473, 0.0010643101995810866, -0.014358410611748695, -0.044740136712789536, 0.0010691987117752433, -0.04326518625020981, 0.022258330136537552, -0.05381331220269203, -0.012492375448346138, 0.025074142962694168, 0.02301815152168274, 0.053679224103689194, -0.04625978320837021, -0.031219765543937683, 0.035354092717170715, -0.012302420102059841, 0.05010358989238739, -0.024001451209187508, 0.05577991157770157, -0.010799535550177097, 0.0003463896573521197, -0.01763235218822956, -0.026102136820554733, -0.03633739426732063, -0.046438563615083694, -0.015956273302435875, 0.018146349117159843, -0.03778999671339989, -0.001568530686199665, 0.059936586767435074, -0.020526381209492683, -0.0077993543818593025, -0.04489656910300255, -0.02128620445728302, -0.0002858063962776214, -0.012570592574775219, 0.026906656101346016, -0.018336305394768715, -0.012715852819383144, -0.008207200095057487, 0.027800563722848892, -0.02301815152168274, 0.015196450054645538, 0.010464319959282875, -0.01633618399500847, -0.007285356987267733, -0.023889712989330292, 0.004095220007002354, -0.009866518899798393, 0.02572222612798214, 0.03966720402240753, -0.005765711888670921, 0.03352158144116402, 0.0006966203800402582, 0.041477371007204056, 0.022347720339894295, 0.011291185393929482, -0.03412497043609619, -0.005843929015100002, 0.018213393166661263, -0.06069640815258026, -0.046304475516080856, 0.05506478250026703, 0.03099628910422325, 0.017252439633011818, -0.015431101433932781, -0.10011778771877289, -0.062216054648160934, -0.052338361740112305, -0.027241870760917664, 0.04022589698433876, -0.008341286331415176, -0.019509559497237206, -0.02028055675327778, -0.03363331779837608, 0.012514723464846611, 0.007894332520663738, 0.008508894592523575, 0.01225772500038147, 0.0005269173416309059, 0.016503792256116867, -0.00303649646230042, 0.09931326657533646, 0.016023315489292145, 0.01815752312541008, 0.030728116631507874, -0.07526712119579315, -0.03863921016454697, -0.014827712439000607, 0.014917103573679924, 0.009670975618064404, -0.03354392945766449, -0.0548413060605526, -0.05193610116839409, 0.013766195625066757, -0.005335518158972263, 0.0050030960701406, -0.027666477486491203, -0.02353215031325817, -0.007804941385984421, -0.02891794964671135, 0.0029582795687019825, 0.006408208981156349, 0.0036873738281428814, 0.03555522486567497, -0.0023716518189758062, -0.043667446821928024, -0.0035085920244455338, -0.011347055435180664, -0.013721500523388386, -0.06297587603330612, -0.0394437275826931, -0.0008799415081739426, 0.01832513138651848, 0.01635853201150894, 0.008235135115683079, -0.014704800210893154, 0.0008310558623634279, 0.0246718842536211, 0.002458249218761921, 0.010402863845229149, -0.01858212985098362, 0.009034066461026669, -0.0031091265846043825, 0.05627156049013138, 0.005416528787463903, -0.01962129957973957, 0.010425211861729622, 6.250377919059247e-05, 0.002321369480341673, -0.033141668885946274, -0.01591157726943493, -0.04346631467342377, 0.015866881236433983, 0.002666362328454852, -0.011609640903770924, -0.004673467017710209, 0.028605083003640175, -0.003053257241845131, -0.0011397337075322866, 0.06096458062529564, 0.0225935447961092, 0.01878325827419758, -0.005695875268429518, -0.02878386341035366, 0.06047293171286583, -0.011631988920271397, -0.030303509905934334, -0.06194788217544556, -0.008715610951185226, 0.02223598212003708, -0.04259475693106651, 0.014939451590180397, -0.0008534035878255963, 0.024627188220620155, -0.05046115443110466, 0.014682452194392681, 0.03942137956619263, 0.014995320700109005, 0.039913028478622437, 0.054751913994550705, -0.022023677825927734, -0.009598346427083015, 0.01701778918504715, -0.0014009227743372321, -0.05166792869567871, -0.020448165014386177, -0.03548818081617355, -0.01744239591062069, 0.008989370428025723, 0.016570834442973137, -0.011754901148378849, 0.012347115203738213, 0.01591157726943493, 0.05072932690382004, -0.003028116188943386, -0.05712077394127846, 0.019945340231060982, -0.006056232377886772, -0.02992359735071659, -0.006972488947212696, 0.06047293171286583, -0.01545344851911068, 0.012950504198670387, 0.009408390149474144, -0.0021816962398588657, 0.007296530995517969, -0.002437298186123371, -0.002364668296650052, -0.0016230031615123153, -0.0067657725885510445, -0.020660467445850372, -0.020593425258994102, 0.04333223029971123, -0.0028688886668533087, -0.0066372728906571865, 0.019375473260879517, -0.012581766583025455, -0.053902700543403625, -0.007508833892643452, -0.014961798675358295, 0.011855465359985828, -0.014704800210893154, 0.006849576253443956, 0.009967083111405373, -0.034929487854242325, 0.016928398981690407, -0.015196450054645538, -0.011090056039392948, -0.010888926684856415, 0.017297135666012764, -0.06927793473005295, -0.00632440485060215, -0.00755352945998311, 0.001962409121915698, -0.010615167208015919, -0.005355072673410177, -0.009670975618064404, 0.016704920679330826, -0.01635853201150894, 0.003977894317358732, -0.03148793801665306, 0.000759124115575105, 0.011291185393929482, -0.035287052392959595, -0.004139915108680725, 0.01640322618186474, 0.022973457351326942, 0.017218919470906258, 0.036359742283821106, -0.008715610951185226, -0.008899979293346405, -0.0013157220091670752, -0.0007982326205819845, -0.006346752867102623, 0.023710930719971657, -0.024537798017263412, 0.015598708763718605, 0.005137182306498289, -0.04375683516263962, 0.010598406195640564, -0.027532391250133514, 0.013922629877924919, -0.007693202700465918, 0.0554223470389843, -0.026973698288202286, -0.0070395320653915405, -0.006514360662549734, -0.028158128261566162, 0.011631988920271397, -0.04346631467342377, -0.045522306114435196, 0.00155875354539603, 0.03247123956680298, -0.0448518767952919, 0.008955849334597588, -0.007480899337679148, 0.004237686283886433, -0.008123396895825863, 0.0007444584625773132, -0.01812400110065937, 0.004374566487967968, -0.008587111718952656, 0.03448253124952316, 0.01914082281291485, -0.034214358776807785, 0.029655424878001213, -0.01871621608734131, 0.023263977840542793, 0.0020741478074342012, -0.005268475040793419, 0.019151996821165085, 0.013799717649817467, -0.010129104368388653, -0.007173618301749229, 0.009643041528761387, -0.011257664300501347, 0.03676199913024902, 0.0038019060157239437, -0.025074142962694168, 0.010000605136156082, -0.0020308492239564657, -0.01510705891996622, 0.015218798071146011, 0.001353433821350336, -0.024962404742836952, 0.01463775709271431, -0.0031286808662116528, -0.019744211807847023, 0.032739412039518356, -0.017755264416337013, 0.003966720309108496, 0.03296288847923279, 0.02070516347885132, 0.0316220261156559, -0.02057107724249363, -0.017844654619693756, -0.0004892055876553059, -0.04590221866965294, 0.007520007900893688, -0.06337813287973404, 0.0030476704705506563, 0.03184550255537033, -0.008212787099182606, 0.01669374667108059, -0.025185881182551384, 0.014682452194392681, 0.03582339733839035, 0.01564340479671955, -0.03338749334216118, -0.0020741478074342012, 0.014492496848106384, 0.009425151161849499, -0.00860387273132801, -0.008905566297471523, 0.010944795794785023, 0.002002914436161518, -0.02395675703883171, 0.0004081950755789876, 0.008648567833006382, 0.019598951563239098, 0.003637091489508748, 0.0012710265582427382, 0.020314078778028488, -0.034996531903743744, -0.03028116188943386, -0.04710899665951729, 0.0024666297249495983, 0.0067937071435153484, 0.006095340941101313, 0.0036594392731785774, 0.010095582343637943, -0.01183311827480793, -0.008514481596648693, -0.023062847554683685, -0.034862443804740906, 0.033298105001449585, 0.03425905480980873, -0.02030290476977825, -0.012849939055740833, 0.019632471725344658, 0.05850633233785629, 0.020783379673957825, -0.014660105109214783, -0.017252439633011818, 0.028024042025208473, -0.01698426716029644, -0.019699515774846077, -0.007626159582287073, -0.012592940591275692, -0.006391447968780994, 0.022638240829110146, 0.002624460496008396, 0.022872891277074814, -0.0511762797832489, -0.0026398245245218277, -0.015218798071146011, -0.01802343688905239, -0.011486728675663471, -0.025901008397340775, 0.013386284932494164, 0.03859451413154602, 0.005737777333706617, -0.03580104932188988, -0.013978498987853527, 0.04525413364171982, 0.032582975924015045, -0.042393624782562256, -0.020023558288812637, -0.03148793801665306, 0.006190318614244461, -0.03432609885931015, 0.026616135612130165, 0.020425816997885704, 0.017844654619693756, -0.03548818081617355, -0.018794432282447815, -0.018861476331949234, -0.04073989391326904, -0.040337637066841125, 0.020816901698708534, 0.020839249715209007, 0.047287777066230774, -0.00678812013939023, -0.02985655516386032, -0.026526743546128273, 0.002815812826156616, 0.0024428851902484894, 0.033499233424663544, 0.010201734490692616, 0.02949899062514305, 0.007626159582287073, -0.010246429592370987, -0.020269382745027542, -0.021632593125104904, 0.02692900411784649, 0.009676562622189522, -0.03810286521911621, 0.04313110187649727, -0.018593303859233856, 0.03419201076030731, -0.005274062044918537, 0.029230818152427673, -0.014358410611748695, -0.01193368248641491, 0.011352642439305782, -0.025409357622265816, 0.028515690937638283, 0.02024703472852707, -0.010201734490692616, -0.005084106232970953, 0.00687751080840826, -0.029610728845000267, 0.025833964347839355, 0.01965481974184513, 0.026616135612130165, 0.008425090461969376, 0.00849213358014822, 0.04916498437523842, -0.0037627974525094032, -0.019520733505487442, -0.015162928029894829, 0.01085540559142828, -0.0043913270346820354, -0.02607979066669941, 0.0023981898557394743, -0.02464953623712063, 0.008659741841256618, -0.06132214516401291, 0.0030951593071222305, 0.016392052173614502, 0.03262767195701599, 0.013352762907743454, 0.015632230788469315, 0.010369342751801014, 0.01417962834239006, -0.018727390095591545, 0.004896944388747215, -0.012492375448346138, 0.019509559497237206, 0.01450367085635662, 0.002009898191317916, 0.014794191345572472, 0.014034368097782135, 0.03394618630409241, -0.005871863570064306, -0.011777249164879322, 0.0025085315573960543, 0.0009239385835826397, -0.03559991717338562, -0.01832513138651848, -0.02402379922568798, -0.02614683285355568, 0.009648628532886505, 0.010860992595553398, 0.033432189375162125, -0.006039471365511417, -0.016637878492474556, -0.009849757887423038, 0.016995441168546677, 0.0722278356552124, -0.008967023342847824, -0.004371772985905409, -0.03099628910422325, -0.025923356413841248, 0.010626341216266155, -0.018336305394768715, -0.0012738200603052974, 0.0231745857745409, 0.006950140930712223, 0.011414098553359509, 0.04080693796277046, 0.00755352945998311, 0.004301936365664005, -0.026057442650198936, 0.017744090408086777, 0.02380032278597355, 0.008028418757021427, -0.014269019477069378, -0.020235860720276833, -0.02543170563876629, 0.008793828077614307, -0.02699604630470276, 0.03993537649512291, 0.005444463342428207, -0.011944856494665146, 0.0013038498582318425, -0.0159786194562912, 0.03325340896844864, 0.024470753967761993, 0.05050584673881531, -0.025565791875123978, 0.053902700543403625, 0.009140217676758766, -0.01708483323454857, -0.011073295958340168, 0.006195905618369579, -0.05050584673881531, 0.03204663097858429, -0.012067768722772598, 0.052830010652542114, -0.01452601794153452, -0.017677046358585358, -0.000882036576513201, -0.018336305394768715, 0.026593787595629692, 0.030437596142292023, -0.01594509929418564, -0.002509928308427334, 0.016313835978507996, -0.008145743981003761, 0.03946607559919357, -0.0023367335088551044, 0.02438136376440525, -0.011855465359985828, -0.00971567165106535, -0.009693323634564877, 0.022347720339894295, 0.022124243900179863, -0.016414400190114975, -0.022906413301825523, 0.003011355409398675, 0.03083985485136509, 0.03387914597988129, 0.028202824294567108, -0.017654698342084885, 0.017464743927121162, -0.03783469274640083, 0.058729808777570724, -0.002245945855975151, 0.049433156847953796, 0.027197176590561867, -0.0004280985158402473, 0.013777369633316994, 0.017453569918870926, -0.02216893807053566, -0.01832513138651848, 0.005670734215527773, -0.013296893797814846, 0.0029666598420590162, 0.0035365268122404814, -0.039913028478622437, 0.015040015801787376, 0.0026859166100621223, 0.024537798017263412, 0.002352097537368536, 0.02135324664413929, 0.01574396900832653, 0.012302420102059841, -0.026660829782485962, 0.019408995285630226, 0.007587051019072533, 0.01463775709271431, 0.006933380383998156, -0.042952317744493484, 0.015833359211683273, 0.01310693845152855, 0.017755264416337013, -0.007073053624480963, 0.015073537826538086, 0.05698668584227562, 0.0070395320653915405, 0.03562226518988609, 0.01946486532688141, -0.014235498383641243, -0.05278531461954117, 0.01137498952448368, -0.013721500523388386, -0.003938785754144192, 0.017777612432837486, 0.015688098967075348, -0.0258786603808403, -0.008034005761146545, 0.018503911793231964, 0.018492739647626877, 0.029655424878001213, -0.0351976603269577, -0.02650439739227295, -0.0006505281780846417, 0.019833602011203766, 0.005315964110195637, -0.008883219212293625, 0.005567376036196947, -0.01051460299640894, -0.006430556531995535, 0.053187575191259384, -0.009603932499885559, -0.021431464701890945, 0.00904523953795433, -0.06735602766275406, 0.004952813498675823, 0.040337637066841125, -0.014045542106032372, 0.010810709558427334, 0.0016160195227712393, -0.01645909622311592, -0.027241870760917664, 0.0037795582320541143, -0.022828197106719017, 0.014112585224211216, 0.033007584512233734, 0.04456135630607605, -0.007128922734409571, 0.0010922448709607124, 0.046438563615083694, -0.009615106508135796, 0.009536889381706715, -0.007715550716966391, 0.029163775965571404, -0.011788422241806984, -0.008184853009879589, 0.0014204769395291805, -0.008330113254487514, 0.03901911899447441, -0.02301815152168274, -0.03363331779837608, -0.008123396895825863, 0.04684082418680191, 0.02829221449792385, -0.015386405400931835, -0.028403952717781067, 0.026415005326271057, -0.00014918849046807736, 0.021442638710141182, 0.028202824294567108, -0.0013701946008950472, -0.01802343688905239, 0.016246793791651726, -0.027912303805351257, 0.047868818044662476, -0.02516353316605091, 0.03113037534058094, 0.020101774483919144, 0.021476158872246742, 0.024001451209187508, 0.019151996821165085, 0.024828316643834114, 0.00849213358014822, -0.009749192744493484, -0.005148356314748526, 0.0415220633149147, -0.015956273302435875, -0.013296893797814846, 0.009464259259402752, -0.03504122421145439, 0.015308188274502754, -0.015084711834788322, 0.015766317024827003, -0.020336424931883812, 0.005486365407705307, 0.0054751913994550705, 0.008374808356165886, -0.0270854365080595, -0.0006383067811839283, -0.003014148911461234, -0.029677772894501686, -0.04617039114236832, 0.03888503462076187, -0.02324162982404232, 0.019811253994703293, 0.0030923658050596714, -0.02891794964671135, -0.017710568383336067, 0.010866578668355942, -0.01035258173942566, 0.015866881236433983, -0.011391750536859035, 0.024850664660334587, -0.013900281861424446, -0.02480597048997879, -0.022124243900179863, -0.0025476401206105947, -0.009592759422957897, -0.003503005253151059, -0.014883581548929214, 0.03334279730916023, 0.06127744913101196, 0.0048019662499427795, 0.010570472106337547, 0.0007947408012114465, -0.01635853201150894, -0.02516353316605091, 0.027264218777418137, -0.052919402718544006, 0.012984025292098522, -0.023688584566116333, -0.030437596142292023, 0.002191473264247179, 0.024135537445545197, 0.04313110187649727, 0.009860931895673275, 0.0055254739709198475, -0.0019819634035229683, 0.018816780298948288, 0.02011294849216938, 0.008983783423900604, -0.025498749688267708, 0.011810770258307457, -0.02601274661719799, 0.01652614027261734, -0.02992359735071659, 0.05095280334353447, -0.01087216567248106, -0.0051455628126859665, 0.002532276092097163, 0.019151996821165085, 0.027018394321203232, -0.009575998410582542, -0.020425816997885704, -0.020984509959816933, -0.040114156901836395, 0.010374928824603558, 0.018559781834483147, -0.0066875554621219635, 0.025319967418909073, 0.006346752867102623, -0.023509802296757698, -0.007313291542232037, 0.013799717649817467, 0.021409116685390472, -0.03224775940179825, -0.006972488947212696, 0.008425090461969376, -0.03164437413215637, 0.0014763462822884321, 0.05537765100598335, 0.020660467445850372, 0.003935992252081633, 0.02324162982404232, 0.02451545000076294, 0.020168818533420563, 0.002840953879058361, -0.01640322618186474, -0.025476401671767235, -0.008637393824756145, -0.013699152506887913, 0.024336667731404305, 0.01310693845152855, -0.010358168743550777, -0.04453900828957558, 0.0015126613434404135, 0.009704497642815113, -0.02256002463400364, -0.022370068356394768, 0.0029135840013623238, -0.007665268145501614, -0.017431221902370453, -0.031309157609939575, 0.003637091489508748, -0.014414279721677303, -0.004321490414440632, -0.019677167758345604, -0.0029834206216037273, 0.03752182424068451, 0.02256002463400364, 0.01133029442280531, -0.007916679605841637, 0.03446018695831299, 0.007458551786839962, 0.050908107310533524, -0.006033884361386299, -0.020582251250743866, 0.03524235635995865, 0.034862443804740906, 0.003516972530633211, -0.01225772500038147, -0.05729955434799194, 0.004961194004863501, 0.02793464995920658, -0.01802343688905239, 0.001801784965209663, 0.005721016321331263, -0.017777612432837486, 0.011821944266557693, -0.011464380659162998, 0.02558813989162445, 0.005109247751533985, 0.018135175108909607, -0.03416966646909714, 0.012481202371418476, -0.025319967418909073, 0.018760912120342255, -0.012693505734205246, -0.0017850241856649518, 0.024895360693335533, -0.00815133098512888, 0.0011676683789119124, -0.012816417962312698, 0.03021411783993244, 0.006911032367497683, -0.0044416096061468124, 0.015308188274502754, -0.007732311263680458, -0.013632109388709068, -0.03405792638659477, 0.008453025482594967, -0.006117688491940498, -0.0028004487976431847, -0.019710689783096313, 0.015419927425682545, -0.01286111306399107, -0.0026509982999414206, 0.022582370787858963, -0.017565308138728142, -0.037343040108680725, -0.008670915849506855, -0.024850664660334587, -0.04328753426671028, 0.01090568769723177, 0.009827409870922565, -0.03633739426732063, 0.0050449981354177, 0.038192253559827805, 0.010307885706424713, -0.0007346813217736781, 0.027398305013775826, 0.014112585224211216, -0.03689608722925186, -0.04031528905034065, 0.023912061005830765, 0.015699272975325584, -0.016872528940439224, -0.009916801005601883, 0.023621540516614914, -0.012704678811132908, 0.023420412093400955, -0.020157644525170326, -0.04652795568108559, 0.0036901673302054405, 0.04697490856051445, -0.017386525869369507, 0.006240601185709238, -0.04639386758208275, -0.007732311263680458, 0.013721500523388386, -0.04299701377749443, 0.005109247751533985, -0.012738200835883617, 0.00313706137239933, 0.009570411406457424, -0.039689552038908005, -0.0011257664300501347, -0.020202338695526123, 0.0186826940625906, 0.01769939437508583, -0.02451545000076294, -0.008553589694201946, 0.01681665889918804, 0.02451545000076294, 0.02330867201089859, 0.002697090618312359, -0.007346813101321459, 0.01268233172595501, -0.010520189069211483, -0.01649261824786663, 0.02148733288049698, 0.054751913994550705, 0.0016635084757581353, 0.03725365176796913, 0.010581646114587784, -0.019129648804664612, -0.010240842588245869, 0.005522680468857288, -0.020805727690458298, 0.0044220550917088985, 0.01111799106001854, -0.020057078450918198, -0.025029446929693222, -0.020939813926815987, -0.01450367085635662, -0.0018897791160270572, -0.028403952717781067, 0.003972307313233614, 0.025074142962694168, 0.002238962333649397, -0.021085074171423912, 0.006648446898907423, -0.006095340941101313, 0.007385921664535999, -0.016671398654580116, -0.014347236603498459, -0.01375502161681652, 0.02970012091100216, 0.003366125514730811, -0.024694230407476425, 0.00653670821338892, 0.017487091943621635, 0.009732432663440704, 0.03857216611504555, -0.010123517364263535, -0.016704920679330826, 0.016392052173614502, -0.022761153057217598, -0.01790052466094494, -0.030884549021720886, -0.012984025292098522, -0.004260034300386906, 0.04471778869628906, -0.023688584566116333, 0.007994896732270718, 0.017721742391586304, 0.008972609415650368, -0.00920726079493761, -0.012916982173919678, -0.0200123842805624, 0.0270854365080595, 0.03213602304458618, -0.034370794892311096, -0.0038605686277151108, 0.0036650262773036957, -0.04237127676606178, 0.0019777733832597733, -0.010425211861729622, 0.05890859290957451, 0.009011718444526196, 0.03448253124952316, -0.03363331779837608, -0.016872528940439224, -0.04344397038221359, -0.01463775709271431, -0.040963370352983475, -0.018403347581624985, 0.029968293383717537, 0.004648325964808464, 0.009525716304779053, -0.004123154561966658, -0.04163380339741707, 0.014972972683608532, -0.0007744882022961974, 0.026280919089913368, 0.008726784959435463, 0.02028055675327778, -0.022280678153038025, 0.00513438880443573, 0.015609882771968842, -0.0043075233697891235, 0.017308309674263, -0.00023919044178910553, 0.002395396353676915, 0.00271385139785707, -0.008028418757021427, 0.010503428988158703, -0.00589979812502861, -0.007570290472358465, -0.04176789149641991, -0.024761274456977844, -0.0167272686958313, 0.027688825502991676, -0.024783622473478317, -0.014067890122532845, -0.010922448709607124, 0.0270854365080595, -0.0008904169662855566, -0.006095340941101313, -0.03787938505411148, -0.012458854354918003, 0.0031566154211759567, -0.00581040745601058, -0.001048946171067655, -0.019487211480736732, -0.01630266197025776, 0.0011474157217890024, 0.002947105560451746, 0.0050086830742657185, 0.009402803145349026, 0.0029443122912198305, -0.043399274349212646, -0.005628832150250673, -0.0319572389125824, 0.007631746586412191, 0.017677046358585358, -0.008559176698327065, -0.003377299290150404, -0.0008855284540913999, 0.004137121606618166, -0.04648325964808464, -0.019632471725344658, -0.017610004171729088, 0.010028539225459099, 0.010860992595553398, -0.027063090354204178, -0.002286451170220971, 0.011106817051768303, 0.010687797330319881, -0.02464953623712063, -0.014917103573679924, 0.002081131562590599, 0.03631504625082016, -0.009732432663440704, 0.04688551649451256, 0.012525897473096848, -0.0024945642799139023, -0.004598043393343687, 0.01662670448422432, 0.008559176698327065, 0.004857835825532675, -0.021599071100354195, 0.012693505734205246, -0.013330414891242981, -0.04469544067978859, 0.03206897899508476, 0.04306405782699585, -0.025029446929693222, 0.013408632017672062, -0.014101412147283554, -0.030504638329148293, -0.019319605082273483, -0.03083985485136509, 0.00024023799051064998, 0.023509802296757698, 0.005916559137403965, 0.005600897595286369, -0.014112585224211216, 0.024046147242188454, 0.0035784286446869373, -0.016146227717399597, -0.008011657744646072, -0.009481020271778107, 0.027487697079777718, 0.011095643043518066, 0.045946914702653885, 0.037700604647397995, 0.010860992595553398, 0.014123759232461452, 0.015609882771968842, 0.004341044928878546, -0.0014609822537750006, -0.03164437413215637, -0.00470978207886219, 0.002085321582853794, -0.006223840173333883, 0.007754658814519644, -0.0031230938620865345, -0.017364179715514183, -0.02118563838303089, -0.045388221740722656, 0.002109066117554903, -0.007911093533039093, -0.03211367502808571, 0.014738321304321289, 0.003924818243831396, -0.00018559083400759846, -0.011073295958340168, 0.05108688771724701, 0.008480959571897984, -0.013777369633316994, -0.00987769290804863, 0.007279769983142614, 0.002980627119541168, 0.04304170981049538, -0.048852115869522095, -0.015297015197575092, -0.020023558288812637, -0.050058893859386444, -0.010520189069211483, 0.02699604630470276, 0.0008561970316804945, -0.0025406565982848406, -0.0307057686150074, 0.010201734490692616, -0.015766317024827003, 0.015721620991826057, -0.021666115149855614, 0.014682452194392681, -0.023420412093400955, 0.009888865984976292, 0.03289584442973137, 0.0023423205129802227, 0.001391145633533597, 0.013162807561457157, -0.03316401690244675, 0.03584574535489082, -0.014861234463751316, -0.05551173910498619, -0.026169180870056152, -0.001910730148665607, -0.010911274701356888, -0.028761517256498337, 0.009805062785744667, 0.007559116464108229, -0.0004972367896698415, -0.009916801005601883, -0.004648325964808464, 0.021163292229175568, -0.02842630073428154, 0.012414158321917057, 0.026526743546128273, -0.010827470570802689, -0.05296409875154495, 0.060651712119579315, 0.00111459253821522, 0.006469665095210075, -0.017956392839550972, 0.009832996875047684, -0.03412497043609619, 0.011710206046700478, 0.019665993750095367, -0.00860387273132801, -0.008648567833006382, 0.027040742337703705, -0.0292084701359272, -0.004531000275164843, -0.02940960042178631, -0.01659318245947361, 0.0926983430981636, -0.003042083466425538, -0.03390149027109146, 0.02076103165745735, -0.02386736497282982, 0.009101109579205513, -0.02021351270377636, 0.005064552184194326, -0.011324707418680191, 0.029901249334216118], [0.01011788658797741, 0.022959595546126366, 0.029178792610764503, 0.0414535254240036, 0.02466636709868908, 0.04559186473488808, -0.008872877806425095, 0.007931815460324287, -0.010544579476118088, 0.023964954540133476, 0.0016614727210253477, -0.003328790655359626, -0.009796405211091042, 0.04966006055474281, 0.005643454380333424, 0.007329768966883421, 0.04542820155620575, 0.02131127379834652, 0.042949873954057693, 0.03916224092245102, 0.013209950178861618, -0.011053104884922504, 0.036964479833841324, 0.007569418288767338, -0.04100929573178291, -0.0263263788074255, -0.00586556876078248, 0.009539220482110977, -0.028313716873526573, -0.015314190648496151, 0.06509115546941757, -0.014110097661614418, -0.01135120540857315, -0.03387826308608055, 0.007025822997093201, -0.0009856318356469274, 0.0014766211388632655, -0.008826117031276226, -0.0026902123354375362, 0.02962302230298519, -0.034649815410375595, -0.0335509367287159, -0.003913301508873701, -0.02618609555065632, -0.05162401869893074, 0.02602243237197399, -0.01924210414290428, -0.02459622547030449, 0.006336099933832884, 0.01380615122616291, 0.006943991407752037, -0.005129084922373295, -0.0023555797524750233, -0.02574186772108078, 0.01757040247321129, 0.028804706409573555, 0.004453974310308695, 0.026864130049943924, 0.01681053824722767, 0.001495617674663663, -0.002953242277726531, -0.03217149153351784, -0.07219880819320679, -0.006745257880538702, -0.022340012714266777, 0.016097435727715492, -0.023929882794618607, 0.024245519191026688, -0.017897728830575943, 0.018844638019800186, 0.005348276346921921, 0.020948877558112144, 0.010082815773785114, -0.030908945947885513, -0.0002732589200604707, 0.023707769811153412, 0.017722375690937042, 0.036099404096603394, 0.013432065024971962, -0.029599640518426895, -0.025204118341207504, -0.0051846131682395935, 0.007797377649694681, -0.02487679198384285, -0.04313691705465317, 0.015957152470946312, 0.016132505610585213, -0.0014598164707422256, 0.003936681896448135, -0.04124310240149498, -0.001660011475905776, -0.01094789244234562, -0.02494693361222744, 0.05438290908932686, -0.025437921285629272, -0.02978668361902237, -0.03993379697203636, -0.01968633383512497, 0.024549465626478195, 0.02356748655438423, 0.026069194078445435, 0.030558239668607712, 0.01850561983883381, 0.015033625066280365, 0.024759888648986816, 0.01517390739172697, -0.06808385252952576, 0.0005282518686726689, -0.03878815472126007, 0.016132505610585213, 0.04386170953512192, -0.05312036722898483, -0.001955189509317279, 0.060040976852178574, 0.005146619863808155, 0.023894812911748886, 0.0193005558103323, -0.0032937198411673307, 0.015103766694664955, 0.03829716518521309, 0.016623495146632195, -0.01910182274878025, -0.0007532886229455471, 0.0004891626886092126, 0.028944987803697586, 0.006569904740899801, 0.029248934239149094, -0.006669271271675825, 0.0038986888248473406, -0.0512031689286232, 0.05947984755039215, -0.051016125828027725, 0.03149345517158508, -0.041149578988552094, -0.009509995579719543, -0.02515735663473606, -0.018879707902669907, -0.060461826622486115, -0.0023672699462622404, -0.01788603886961937, 0.02009548991918564, 0.010556270368397236, 0.06958019733428955, -0.015805179253220558, -0.042201701551675797, -0.018119843676686287, -0.02567172609269619, -0.004746229853481054, -0.007394065149128437, -0.029015129432082176, -0.007101809605956078, 0.018949849531054497, -0.01993182860314846, 0.03256895765662193, -0.014647847972810268, -0.04657384380698204, 0.03259233757853508, 0.043955232948064804, -0.008416959084570408, 0.008989780209958553, -0.01007112581282854, -0.0005428646691143513, -0.034135445952415466, -0.04051830619573593, 0.07537855207920074, -0.03705800324678421, 0.02023577317595482, -0.012450085952877998, -0.029529498890042305, 0.02196592651307583, -0.027799347415566444, 0.015618136152625084, -0.019218724220991135, -0.026373140513896942, -0.02768244408071041, 0.002776427660137415, -0.0019405768252909184, 0.03799321874976158, -0.0058889491483569145, 0.0005567467887885869, 0.07154415547847748, -0.006675116717815399, -0.05784321576356888, -0.0020326373632997274, 0.020843664184212685, -0.00890794862061739, 0.017757447436451912, -0.01906675100326538, -0.027144694700837135, -0.05139021575450897, 0.005056020803749561, 0.012415015138685703, 0.008574777282774448, -0.007867518812417984, 0.006154901813715696, 0.03182078152894974, -0.03588898107409477, -0.03373797982931137, 0.01052119955420494, -0.02625623717904091, -0.0112635288387537, 0.006476382724940777, 0.037736035883426666, 0.03289628401398659, -0.07173120230436325, 0.02332199178636074, 0.007364839781075716, 0.01913689263164997, 0.05363473668694496, 0.002159768482670188, 0.006178282201290131, 0.04453974589705467, 0.006856314837932587, 0.011690221726894379, -0.033644456416368484, -0.014846581034362316, 0.011433036997914314, 0.0193005558103323, 0.05704827979207039, -0.03058161959052086, 0.0018485162872821093, -0.005123239476233721, 0.0005772046861238778, -0.0012340489774942398, -0.02155676856637001, -0.009685348719358444, 0.009299571625888348, -0.0008519248804077506, 0.027752585709095, -0.004603024572134018, -0.027705825865268707, 0.013537276536226273, -0.037899699062108994, -0.060040976852178574, -0.030745282769203186, 0.004024358931928873, -0.026490041986107826, -0.009907462634146214, 0.010030210018157959, -0.004074042197316885, -0.0076570953242480755, 0.027051173150539398, 0.009609362110495567, -0.020130561664700508, 0.0200019683688879, -0.009439853951334953, 0.0056288414634764194, -0.032989803701639175, 0.027074553072452545, -0.039115481078624725, 0.040424786508083344, -0.012438395991921425, 0.05723532289266586, -0.03867125138640404, -0.008416959084570408, 0.023205090314149857, 0.007668785285204649, -0.041780851781368256, 0.03179740160703659, 0.028383858501911163, -0.0656055212020874, -0.04021436348557472, -0.00040404326864518225, -0.0461529940366745, -0.018984919413924217, 0.010842680931091309, 0.033340513706207275, -0.031914304941892624, -0.04895864799618721, 0.007996111176908016, -0.020960567519068718, -0.0009410628117620945, 0.05064203962683678, 0.006803709082305431, -0.05363473668694496, 0.056066300719976425, 0.031119368970394135, 0.008037026971578598, 0.0020297146402299404, -0.023333681747317314, -0.012415015138685703, 0.03743208944797516, 0.02408185601234436, -0.0714038759469986, -0.009960068389773369, -0.0027325893752276897, 0.003103753784671426, 0.0684579387307167, 0.02062155120074749, 0.009381403215229511, 0.008113013580441475, 0.020609861239790916, -0.013852912932634354, -0.033200230449438095, -0.008715060539543629, 0.0018704354297369719, 0.06228550150990486, 0.013151499442756176, -0.008083787746727467, -0.009755490347743034, -0.027518780902028084, 0.10193873196840286, -0.024455944076180458, 0.01622602716088295, -0.030908945947885513, 0.01446080394089222, 0.02826695516705513, -0.03787631914019585, -0.03186754509806633, -0.010591341182589531, 0.006949836853891611, -0.0030365351121872663, -0.021100850775837898, -0.05255923792719841, -0.0137009397149086, 0.002019485691562295, -0.020703382790088654, -0.015337570570409298, 0.017172936350107193, 0.00023873624741099775, 0.041570428758859634, -0.02335706353187561, -0.014729679562151432, 0.002224064664915204, -0.003974675200879574, 0.04388509318232536, -0.036379970610141754, 0.06265958398580551, -0.007189486175775528, -0.02473650872707367, -0.02934245578944683, -0.019499288871884346, 0.037969838827848434, -0.010912821628153324, -0.004971266724169254, 0.0025762326549738646, -0.02099563740193844, 0.008416959084570408, -0.013350233435630798, -0.0015124224592000246, 0.01439066231250763, 0.008282521739602089, -0.035070665180683136, 0.01155578438192606, -0.010515354573726654, 0.04189775511622429, -0.02106577903032303, -0.01920703426003456, 0.02971654385328293, -0.009030696004629135, -0.02304142713546753, -0.00934048742055893, -0.042926494032144547, -0.0418042317032814, 0.005836342927068472, 0.031399935483932495, 0.028874848037958145, 0.0009118372690863907, -0.053026843816041946, 0.011941561475396156, -0.005126161966472864, 0.046620603650808334, 0.04475016891956329, 0.02401171438395977, 0.004857287276536226, -0.029225554317235947, -0.0519045852124691, -0.01767561584711075, 0.03509404510259628, -0.009919152595102787, -0.00127350352704525, -0.007487586699426174, 0.006832934450358152, -0.020060420036315918, -0.03336389362812042, 0.026700466871261597, -0.028898227959871292, -0.01910182274878025, 0.04121972247958183, -0.03584221750497818, 0.026373140513896942, 0.002164152218028903, -0.024245519191026688, 0.046620603650808334, 0.011608390137553215, 0.023345371708273888, 0.011129090562462807, -0.021860715001821518, -0.026864130049943924, -0.046831026673316956, 0.0015168061945587397, -0.020855356007814407, -0.001422553788870573, -0.054055582731962204, -0.05788997560739517, 0.014753059484064579, 0.04121972247958183, 0.0207267627120018, -0.006406241562217474, -0.014951793476939201, 0.0284773800522089, -0.009708728641271591, 0.019218724220991135, 0.05054851621389389, 0.007078429218381643, 0.011888955719769001, 0.015419402159750462, -0.011900645680725574, -0.007803223095834255, -0.005129084922373295, -0.008639073930680752, -0.008194845169782639, 0.038110122084617615, 0.033130086958408356, 0.0013947895495221019, -0.016693636775016785, -0.005880181211978197, -0.013782771304249763, -0.030160771682858467, -0.001301998388953507, 0.0349537618458271, 0.02494693361222744, -0.018774496391415596, -0.016927441582083702, -0.011146626435220242, 0.06476382911205292, -0.0033989318180829287, -0.023625938221812248, 0.03649687021970749, -0.07972731441259384, 0.01578179933130741, 0.005868491251021624, 0.011801278218626976, 0.04608285427093506, -0.02796301059424877, -0.012157830409705639, 0.00024092815874610096, 0.015699967741966248, 0.00908330176025629, -0.03184416517615318, -0.01020556315779686, 0.014203619211912155, 0.08257972449064255, -0.00962105207145214, -0.037245046347379684, -0.028220195323228836, 0.032335150986909866, -0.014075026847422123, 0.017324907705187798, 0.0028173434548079967, -0.0018645903328433633, -0.00040075540891848505, -0.020083799958229065, 0.003904534038156271, -0.05718856304883957, 0.015887010842561722, 0.049285974353551865, -0.039045341312885284, 0.03287290409207344, -0.018739424645900726, 0.020750142633914948, 0.05428938940167427, 0.04687779024243355, 0.014764749445021152, -0.0026624479796737432, 0.01139796618372202, -0.0029240166768431664, -0.00972041953355074, -0.006979062221944332, -0.06036830320954323, -0.005462255794554949, 0.015699967741966248, 0.0035888981074094772, -0.022550437599420547, 0.03296642377972603, -0.007014133036136627, 0.021954236552119255, 0.023929882794618607, -0.007750616874545813, -0.01380615122616291, -0.04456312581896782, -0.01247346680611372, -0.04692455008625984, -0.023099876940250397, 0.013280091807246208, 0.08309409767389297, 0.024900171905755997, 0.010825145058333874, -0.0393025241792202, -0.012029238045215607, 0.0281266737729311, -0.008393579162657261, 0.019885066896677017, -0.010228944011032581, -0.00654652388766408, -0.02155676856637001, -0.062051694840192795, -0.03733856603503227, -0.023064807057380676, -0.031774021685123444, 0.02352072484791279, -0.004988802131265402, 0.022293252870440483, -0.012602059170603752, 0.011924025602638721, 0.03331713005900383, 0.052886560559272766, 0.05489727854728699, -0.021650290116667747, 0.009749644435942173, 0.02529763989150524, 0.043230440467596054, -0.01027570478618145, 0.010152957402169704, -0.0378529392182827, -0.03654363378882408, 0.014156858436763287, -0.018949849531054497, -0.015419402159750462, -0.00787336379289627, -0.0006089874659664929, 0.011678531765937805, 0.011655150912702084, -0.000588529568631202, -0.04311353713274002, 0.04456312581896782, 0.01615588553249836, -0.024409182369709015, -0.010141267441213131, -0.04311353713274002, 0.01394643448293209, 0.0004219439288135618, -0.036239687353372574, -0.0077155460603535175, -0.02999710850417614, 0.009708728641271591, -0.021685361862182617, 0.03144669532775879, -0.00388407614082098, -0.05400882288813591, 0.005006337538361549, -0.04234198108315468, 0.030394576489925385, -0.0005593040259554982, 0.012321493588387966, 0.027869489043951035, -0.015489543788135052, -0.002792501589283347, -0.02567172609269619, -0.019826615229249, 0.0019332703668624163, -0.010439367964863777, 0.011532403528690338, -0.031774021685123444, 0.0008110091439448297, -1.079975572793046e-05, 0.021054089069366455, -0.03228839114308357, -0.035164184868335724, -0.04241212457418442, -0.0070667387917637825, -0.005701905582100153, -0.00403897138312459, 0.0026770606637001038, 0.0050998590886592865, 0.026279618963599205, -0.008919638581573963, 0.014121787622570992, -0.032639097422361374, -0.028360476717352867, -0.01333854254335165, -0.020329294726252556, 0.006949836853891611, 0.023614248260855675, -0.047625962644815445, -0.010106196627020836, 0.022550437599420547, -0.0017666846979409456, 0.015138836577534676, 0.03656701371073723, 0.025975672528147697, 0.025204118341207504, 0.011450571939349174, -0.04743891954421997, -0.01861083321273327, 0.01834195852279663, 0.004898202605545521, -0.0256015844643116, -0.024058476090431213, -0.04895864799618721, 0.005655144806951284, 0.018493929877877235, -0.016822228208184242, 0.021638600155711174, -0.02588215097784996, 0.03270924091339111, 0.008446184918284416, -0.002051633782684803, -0.03121289238333702, 0.025063835084438324, 0.009346332401037216, -0.03436925262212753, 0.014133477583527565, -0.009439853951334953, -0.05344769358634949, -0.018914777785539627, 0.012882623821496964, -0.041196342557668686, 0.01986168697476387, -0.014028266072273254, -0.014881651848554611, 0.046831026673316956, -0.03946618735790253, -0.01913689263164997, -0.027168074622750282, -0.015758419409394264, 0.005538242403417826, -0.010661481879651546, -0.016448142006993294, -0.006271803751587868, -0.00899562519043684, -0.004597179591655731, -0.02674722671508789, -0.025695107877254486, -0.020668311044573784, -0.0034603055100888014, 0.007329768966883421, 0.005836342927068472, -0.041289862245321274, -0.00533658592030406, 0.014110097661614418, -0.04393185302615166, -0.006371170748025179, -0.04194451496005058, -0.028641043230891228, -0.004889435134828091, -0.030604999512434006, 0.014297140762209892, -0.001321725663729012, -0.004600102081894875, 0.036450110375881195, -0.0037730189505964518, -0.004278621170669794, -0.012730651535093784, 0.010527044534683228, 0.03815688192844391, 0.007931815460324287, -0.0030336123891174793, 0.006564059294760227, 0.003457383019849658, 0.04743891954421997, 0.008954709395766258, -0.04161718860268593, 0.0022430613171309233, -0.02992696687579155, -0.008931329473853111, -0.01072577852755785, 0.04933273419737816, -0.011801278218626976, 0.05718856304883957, -0.025928910821676254, -0.014601086266338825, 0.001422553788870573, -0.01695082150399685, 0.017395049333572388, 0.012952765449881554, 0.05110964924097061, 0.017932800576090813, 0.030628381296992302, 0.0026741381734609604, -0.041780851781368256, -0.015337570570409298, -0.007797377649694681, -0.0429031141102314, 0.03137655556201935, 0.009936688467860222, 0.024549465626478195, -0.0035158342216163874, 0.0007795916753821075, 0.05330741032958031, 0.012496846728026867, -0.018002940341830254, -0.01482320111244917, -0.01834195852279663, -0.021393105387687683, -0.024315660819411278, 0.012029238045215607, -0.008048717863857746, -0.01934731751680374, 0.004743307363241911, 0.011678531765937805, -0.003320022951811552, -0.02567172609269619, 0.020189013332128525, 0.017897728830575943, 0.012789102271199226, 0.02356748655438423, -0.027074553072452545, 0.01129859872162342, -0.04655046388506889, -0.01629616878926754, -0.0004687048203777522, 0.005745743867009878, -0.056720953434705734, -0.009235274977982044, -0.05134345218539238, -0.008019492030143738, 0.02401171438395977, 0.028500759974122047, 0.023918192833662033, 0.002833417383953929, 0.012134449556469917, -0.04984710365533829, -0.021977616474032402, -0.03394840285181999, 0.009574291296303272, 0.014671227894723415, 0.015407712198793888, 0.06527819484472275, 0.007405755575746298, -0.009404783137142658, -0.004360452760010958, -0.038624491542577744, -0.02231663279235363, 0.015863630920648575, 0.027635684236884117, 0.01340868417173624, -0.02833709679543972, -0.02695765160024166, -0.01691574975848198, 0.00776815228164196, 0.009206049144268036, -0.009936688467860222, 0.06481058895587921, -0.03932590410113335, -0.008580622263252735, -0.008674144744873047, -0.021568458527326584, -0.000991476932540536, -0.005722363479435444, -0.02277255244553089, 0.018657593056559563, 0.027355117723345757, -0.033925022929906845, -0.006336099933832884, -0.013034597039222717, -0.009878236800432205, 0.04507749527692795, -0.0005070633487775922, -0.03221825137734413, -0.006347790360450745, 0.007797377649694681, -0.025437921285629272, 0.008913793601095676, 0.04715835303068161, 0.000821968715172261, 0.022234801203012466, 0.035935740917921066, 0.0023468120489269495, 0.015045315027236938, -0.0042318603955209255, 0.018213365226984024, -0.026069194078445435, -0.024572845548391342, -0.005056020803749561, 0.018914777785539627, -0.00540672754868865, -0.012122759595513344, 0.004968344233930111, 0.02927231416106224, -0.004857287276536226, -0.012461775913834572, -0.05531812831759453, 0.0030920635908842087, 0.05489727854728699, -0.0011660995660349727, -0.02332199178636074, 0.059807173907756805, -0.029880207031965256, -0.011292753741145134, -0.036800816655159, -0.033270370215177536, 0.01276572234928608, 0.043370723724365234, -0.04507749527692795, -0.03871801495552063, 0.017734065651893616, 0.011526558548212051, 0.016307858750224113, -0.051811061799526215, -0.009019006043672562, 0.02539116144180298, -0.017804207280278206, -0.009977604262530804, -0.009276190772652626, 0.02062155120074749, 0.04194451496005058, -0.05059527978301048, 0.0003424869501031935, 0.005395037122070789, -5.434126433101483e-05, -0.016144195571541786, -0.03303656727075577, -0.03857773169875145, 0.04217831790447235, 0.024619607254862785, -0.023134948685765266, 0.0034632282331585884, 0.02473650872707367, 0.006534833926707506, 0.03401854634284973, 0.0011142242001369596, 0.03455629572272301, 0.01816660352051258, -0.045171014964580536, 0.013537276536226273, 0.0004248664772603661, 0.002696057315915823, 0.00877351127564907, -0.009901617653667927, 0.033504173159599304, 0.026934269815683365, 0.04047154635190964, -0.03958309069275856, -0.029108650982379913, 0.012917694635689259, 0.014612777158617973, 0.042201701551675797, 0.03058161959052086, 0.027518780902028084, -0.0432538203895092, -0.009539220482110977, -0.01103556901216507, 0.004798836074769497, -0.041360002011060715, 0.019920136779546738, -0.01150317769497633, 0.01744181104004383, -0.0313531756401062, 0.009878236800432205, 0.05092260614037514, -0.0026975185610353947, 0.01150317769497633, -0.006838779430836439, -0.01083099003881216, 0.021708741784095764, -0.03432248905301094, -0.019359007477760315, -0.05924604460597038, 0.044235799461603165, -0.05199810490012169, 0.023544106632471085, 0.008720905520021915, 0.009819786064326763, -0.02339213341474533, -0.010953737422823906, -0.012882623821496964, 0.0018996610306203365, 0.03446277230978012, -0.010094506666064262, 0.00081831548595801, 0.03874139487743378, -0.034345872700214386, -0.021755501627922058, -0.0027325893752276897, -0.029506118968129158, 0.018260126933455467, 0.008270831778645515, -0.029693162068724632, -0.008013647049665451, 0.03142331540584564, -0.01629616878926754, 0.019382387399673462, 0.014145168475806713, -0.07074922323226929, 0.005292747635394335, -0.027705825865268707, -0.006663426291197538, 0.005517784506082535, -0.009761335328221321, -0.013911363668739796, -0.005812962539494038, 0.04895864799618721, 0.017722375690937042, 0.006394551135599613, -0.01989675685763359, -0.041196342557668686, 0.020878735929727554, 0.024619607254862785, 0.034065306186676025, -0.024268899112939835, -0.004491967614740133, 0.023964954540133476, -0.0007397718145512044, 0.01972140371799469, 0.008159774355590343, -0.014507564716041088, 0.04234198108315468, 0.010369226336479187, -0.03906872123479843, -0.008720905520021915, 0.01996689848601818, -0.002022408414632082, -0.032335150986909866, 0.003799322061240673, 0.018178295344114304, -0.021474936977028847, -0.00982563104480505, 0.027144694700837135, 0.01654166355729103, 0.02141648530960083, 0.008586468175053596, 0.018318576738238335, 0.0018265971448272467, 0.07449009269475937, -0.02999710850417614, -0.02522749826312065, -0.009936688467860222, -0.034860242158174515, 0.010228944011032581, 0.011783743277192116, -0.014402353204786777, 0.021568458527326584, 0.006949836853891611, 0.05372826009988785, -0.008843652904033661, -0.019838305190205574, -0.0003194718447048217, 0.04432931914925575, -0.029763303697109222, 0.03747884929180145, 0.08608679473400116, 0.009486614726483822, -0.008469565771520138, 0.025344399735331535, -0.016892369836568832, -0.01416854839771986, -0.021194372326135635, 0.010269859805703163, 0.025975672528147697, 0.01723138615489006, -0.017558712512254715, 0.019429149106144905, -0.007452516350895166, 0.04332396015524864, -0.015325880609452724, 0.011117400601506233, -0.03287290409207344, -0.00654652388766408, -0.003501221304759383, -0.019265485927462578, -0.009901617653667927, 0.05279304087162018, 0.01578179933130741, 0.008925484493374825, -0.01751195266842842, 0.00813054945319891, 0.020563099533319473, 0.01767561584711075, 0.016693636775016785, 0.00081831548595801, -0.012321493588387966, 0.016833918169140816, -0.0040272814221680164, 0.015033625066280365, 0.014110097661614418, 0.048491038382053375, 0.014472493901848793, -0.0468544065952301, 0.007709701079875231, 0.016728706657886505, -0.021194372326135635, 0.018552381545305252, 0.020960567519068718, -0.015208978205919266, 0.04500735178589821, -0.010603031143546104, -0.003679497167468071, 0.01719631627202034, 0.007031668443232775, 0.05615982413291931, -0.0027472020592540503, 0.030675141140818596, 0.0008891875040717423, -0.01809646375477314, -0.004363375250250101, 0.057001519948244095, -0.01094789244234562, 0.015045315027236938, 0.012368254363536835, 0.020715072751045227, 0.05597278103232384, -0.012099379673600197, -0.015793489292263985, -0.014332211576402187, 0.024128617718815804, -0.012368254363536835, -0.03200782835483551, 0.023754529654979706, -0.0011390659492462873, 0.014986864291131496, -0.0046205599792301655, 0.013151499442756176, 0.041056059300899506, 0.019849997013807297, -0.00240087928250432, 0.07706194370985031, -0.017804207280278206, -0.0022386773489415646, -0.049285974353551865, 0.014145168475806713, -0.04014421999454498, -0.038039982318878174, 0.025274258106946945, 0.023345371708273888, 0.04082225263118744, 0.019885066896677017, -0.003235268872231245, -0.009831476025283337, 0.05283980071544647, -0.017465190961956978, 0.008428649976849556, 0.005576235707849264, 0.011497332714498043, 0.02494693361222744, 0.009971759282052517, 0.0029722389299422503, 0.012251351960003376, 0.002171458676457405, 0.04117295891046524, -0.011544093489646912, 0.006908921059221029, -0.012298112735152245, 0.021404795348644257, 0.012122759595513344, 0.009071611799299717, 0.005266444757580757, 0.00547394622117281, -0.009089147672057152, 0.015489543788135052, -0.02259719744324684, 0.024128617718815804, -0.004968344233930111, 0.001164638320915401, -0.0017739911563694477, -0.021299583837389946, -0.02618609555065632, 0.00024403337738476694, -0.006260113790631294, 0.02782272733747959, 0.010398452170193195, 0.053541213274002075, -0.032498814165592194, 0.04479692876338959, 0.009165133349597454, 0.01622602716088295, 0.00980809610337019, -0.02235170267522335, 0.015454472973942757, 0.03041795641183853, 0.037595752626657486, -0.007779842242598534, -0.012683890759944916, 0.005678525194525719, -0.013619108125567436, -0.02754216268658638, -0.0461529940366745, 0.0010864599607884884, -0.007125189993530512, -0.02985682524740696, -0.001233318354934454, -0.019768165424466133, -0.0011142242001369596, -0.003255726769566536, -0.00342523492872715, -0.01747688092291355, -0.01778082735836506, -0.01594546250998974, 0.02602243237197399, -0.006277649197727442, -0.009486614726483822, -0.013829532079398632, 0.0033901643473654985, 0.0006064302287995815, -0.01027570478618145, -0.008007802069187164, -0.02263226918876171, 0.02030591480433941, -0.022024378180503845, 0.032779380679130554, -0.0028304948937147856, 0.025578204542398453, -0.026723846793174744, -0.017827587202191353, -0.0028114982414990664, 0.006908921059221029, 0.007166105788201094, 0.02616271562874317, 0.02062155120074749, -0.01730152778327465, 0.004220169968903065, -0.008697524666786194, -0.006055534817278385, -0.005745743867009878, -0.015968842431902885, -0.03338727355003357, 0.0036005883011966944, -0.0011412579333409667, 0.0028056532610207796, 0.006043844390660524, 0.011053104884922504, 0.02754216268658638, 0.006675116717815399, 0.020153941586613655, 0.004085732623934746, 0.013034597039222717, 0.020013660192489624, 0.025624966248869896, -0.021019019186496735, 0.025110596790909767, -0.03415882587432861, -0.04767272248864174, -0.01868097484111786, -0.012157830409705639, -0.00699659762904048, 0.00753434794023633, 0.0014963484136387706, -0.005576235707849264, -0.0003364591975696385, -0.02726159617304802, -0.0012230894062668085, 0.02906189113855362, -0.014846581034362316, -0.00032422097865492105, 0.015664895996451378, 0.007119345013052225, 0.042575787752866745, 0.0026697544381022453, 0.0138762928545475, -0.006032154429703951, 0.027775965631008148, 0.00037171252188272774, -0.013268401846289635, -0.012602059170603752, -0.0009505611378699541, -0.009369712322950363, -0.009229429997503757, 0.05031471326947212, 0.01340868417173624, 0.0038139347452670336, 0.015302499756217003, 0.004629327915608883, -0.0035158342216163874, 0.010573805309832096, 0.04404875636100769, -0.054476432502269745, 0.004138338379561901, -0.022293252870440483, 0.002849491545930505, 0.0011741366470232606, 0.0018105230992659926, -0.01920703426003456, -0.00731807854026556, -0.002957626013085246, -0.011228458024561405, -0.043674666434526443, 0.008738440461456776, 0.02390650287270546, -0.05531812831759453, 0.012742341496050358, -0.03584221750497818, 0.044586505740880966, 0.010509509593248367, -0.01809646375477314, 0.028360476717352867, 0.026490041986107826, 0.031399935483932495, 0.02003704011440277, 0.005266444757580757, -0.0031242116820067167, 0.015664895996451378, 0.03483685851097107, -0.014764749445021152, -0.0025528520345687866, -0.004304924048483372, 0.007160260807722807, -0.006651735864579678, -0.0005209455266594887, 0.0006323679117485881, 0.018903087824583054, 0.014869961887598038, -0.023649318143725395, -0.016144195571541786, -0.0006444234750233591, -0.015898700803518295, 0.012999526225030422, 0.02383636124432087, 0.06041506677865982, -0.021147610619664192, 0.038180261850357056, -0.005064788274466991, -0.0092878807336092, 0.02861766144633293, 0.017932800576090813, 0.01792110875248909, 0.02266733907163143, 0.0353512316942215, 0.007148570381104946, -0.010439367964863777, -0.008399424143135548, -0.012099379673600197, 0.0009651739383116364, -0.019265485927462578, -0.0202007032930851, -0.04839751869440079, -0.008878723718225956, -0.025063835084438324, -0.006821244489401579, -0.01121092215180397, -0.008416959084570408, 0.019078440964221954, 0.042575787752866745, 0.014367282390594482, -0.005570390727370977, 0.011947406455874443, -0.004754997789859772, -0.004363375250250101, -0.010264014825224876, -0.0002825745614245534, -0.007008287589997053, 0.04556848481297493, 0.00785582885146141, -0.035210948437452316, -0.000902339001186192, 0.016237717121839523, 0.016787158325314522, -0.016623495146632195, 0.028454000130295753, 0.02616271562874317, -0.04058844968676567, -0.03497714176774025, -0.03301318734884262, -0.00032257704879157245, -0.0020165632013231516, -0.009398938156664371, -0.013665868900716305, -0.0067569478414952755, 0.03467319533228874, -0.0346030555665493, -0.018587451428174973, 0.01150317769497633, -0.018330266699194908, 0.020668311044573784, 0.0137009397149086, -0.03995717689394951, -0.04014421999454498, 0.021194372326135635, -0.06172436848282814, -0.030534857884049416, -0.014729679562151432, 0.004544573836028576, 0.000810278463177383, -0.02726159617304802, 0.03156359866261482, -0.00762202451005578, -0.026139335706830025, 0.0382036454975605, 0.0023555797524750233, -0.029576260596513748, 0.015957152470946312, 0.00403897138312459, -0.0034340026322752237, 0.018692664802074432, 9.105586650548503e-05, -0.008919638581573963, 0.014566016383469105, -0.02169705182313919, 0.031189510598778725, 0.034345872700214386, -0.012169520370662212, 0.011380430310964584, -0.00015288617578335106, -0.014495874755084515, 0.0031212891917675734, 0.043721430003643036, 0.012718960642814636, 0.012847553938627243, 0.017465190961956978, -0.01885632798075676, 0.026723846793174744, -0.020960567519068718, 0.011409656144678593, 0.02014225162565708, -0.03595912083983421, -0.012005857191979885, -0.013057977892458439, 0.0022576740011572838, -0.006745257880538702, 0.03348079323768616, 0.005134929902851582, 0.04266930744051933, -0.04867808148264885, 0.001494887052103877, -0.023614248260855675, -0.011339514516294003, 0.013934744521975517, 0.0009374096407555044, 0.0044510518200695515, 0.0046205599792301655, -0.007025822997093201, -0.015653206035494804, 0.004059429280459881, 0.004757920280098915, 0.005362889263778925, -0.014566016383469105, -0.028290336951613426, -0.010228944011032581, -0.01287093386054039, -0.030324434861540794, -0.008492945693433285, 0.00304530281573534, -0.03065176121890545, -0.014133477583527565, -0.0009038002463057637, 0.023368753492832184, -0.027284977957606316, -0.023228470236063004, -0.028290336951613426, 0.019709713757038116, -0.007358994334936142, -0.020048730075359344, -0.01571165770292282, -0.03581883758306503, 0.03348079323768616, -0.0156765878200531, 0.04404875636100769, -0.0041967895813286304, 0.01119338721036911, -0.035585034638643265, 0.004290311131626368, 0.004912815522402525, 0.03736194968223572, 0.004284466151148081, -0.008674144744873047, 0.01619095727801323, -0.025928910821676254, -0.018458859995007515, -0.02359086647629738, 0.023310301825404167, 0.04919245094060898, 0.014414043165743351, -0.011023879051208496, -0.039699994027614594, -0.02791624888777733, -0.006979062221944332, 0.036520253866910934, -0.026349758729338646, 0.014215309172868729, -0.019113512709736824, 0.015325880609452724, 0.03352755680680275, 0.003775941673666239, 0.018622523173689842, -0.009591827169060707, -0.018774496391415596, -0.0015431091887876391, -0.015337570570409298, 0.008358508348464966, -0.012298112735152245, 0.020878735929727554, -0.005079401191323996, 0.005818807985633612, 0.030114009976387024, 0.01119338721036911, -0.019125202670693398, 0.027869489043951035, 0.001313688699156046, 0.006862159818410873, 0.010445212945342064, -0.03383149951696396, 0.053026843816041946, -0.017979560419917107, -0.030464718118309975, 0.022398464381694794, 0.010427678003907204, -0.026419900357723236, 0.004670243710279465, -0.04280959069728851, -0.007189486175775528, -0.04327720031142235, 0.011094020679593086, -0.0378529392182827, -0.006488073151558638, -0.004240627866238356, -0.02978668361902237, -0.025437921285629272, -0.009439853951334953, -0.019382387399673462, -0.018049702048301697, 0.008574777282774448, -0.033925022929906845, 0.03988703712821007, -0.01598053239285946, 0.028944987803697586, 0.02169705182313919, 0.022258181124925613, -0.01920703426003456, -0.04659722372889519, -0.017032653093338013, 0.0028392625972628593, -0.006604975089430809, -0.009328796528279781, -0.009661967866122723, -0.00960351713001728, 0.020457888022065163, 0.02616271562874317, 0.03383149951696396, 0.009130063466727734, 0.009556756354868412, -0.022503675892949104, 0.029108650982379913, -0.016833918169140816, 0.01754702255129814, 0.03691771999001503, 0.004524115938693285, 0.009661967866122723, 0.015349260531365871, 0.030464718118309975, -0.04061182960867882, -0.03020753338932991, -0.0027048250194638968, 0.015092075802385807, 0.04009746015071869, 0.024339040741324425, 0.031399935483932495, -0.0075168125331401825, 0.017324907705187798, -0.01416854839771986, -0.011526558548212051, 0.009685348719358444, -0.03020753338932991, -0.0041763316839933395, 0.030955705791711807, 0.017418429255485535, -0.012707270681858063, 0.038624491542577744, -0.014612777158617973, -0.0003381031274329871, -0.022398464381694794, -0.0014335133600980043, 0.023029737174510956, 0.010988808237016201, -0.012847553938627243, 0.00011763285147026181, 0.006061379797756672, 0.021603530272841454, 0.001607405487447977, -0.03408868610858917, 0.0011178774293512106, -0.0032498815562576056, -0.023672698065638542, 0.017102794721722603, 0.01529080979526043, 0.003819779958575964, -0.01968633383512497, 0.001233318354934454, 0.004784223157912493, 0.018049702048301697, 0.013221640139818192, 0.02415199764072895, 0.010626411065459251, 0.1088593453168869, -0.023228470236063004, -0.027659064158797264, 0.0036531942896544933, 0.005675602704286575, -0.006225042976438999, -0.014799820259213448, 0.010825145058333874, -0.0006389436894096434, -0.0022664417047053576, 0.03427572920918465, 0.007201176602393389, -0.020153941586613655, 0.0034749184269458055, 0.020785214379429817, -0.023240160197019577, -0.014133477583527565, -0.020820284262299538, 0.004003901034593582, 0.030324434861540794, -0.004293234087526798, 0.00906576681882143, 0.016974201425909996, 0.007411600556224585, 0.003094986081123352, -0.018049702048301697, -0.008563087321817875, 0.009942533448338509, 0.01524404902011156, 0.045381441712379456, -0.008113013580441475, 0.021217752248048782, 0.023579176515340805, 0.015162217430770397, 0.023193400353193283, -0.033059947192668915, 0.004953731317073107, 0.036590393632650375, -0.008428649976849556, 0.02733173780143261, 0.018493929877877235, -0.03848420828580856, 0.0196512620896101, -0.006680961698293686, -0.00411788048222661, 0.04418903589248657, -0.028804706409573555, -0.019043371081352234, -0.0010331233497709036, -0.004436438903212547, 0.0328027606010437, -0.02948273904621601, -0.007505122106522322, -0.002574771409854293, -0.01377108134329319, 0.009638587944209576, 0.004483200144022703, -0.012321493588387966, 0.00935802236199379, -0.03266247734427452, -0.024058476090431213, -0.013198260217905045, -0.005219683982431889, -0.02861766144633293, 0.0057486663572490215], [0.037489552050828934, -0.005406421143561602, 0.050220903009176254, 0.06768248230218887, 0.019172510132193565, 0.02412918210029602, -0.01044172141700983, -0.027173634618520737, 0.00687518110498786, 0.014769374392926693, 0.016908040270209312, 0.025487864390015602, -0.0010174388298764825, -0.011404120363295078, 0.01190104614943266, 0.03615603223443031, 0.02113504894077778, 0.010982677340507507, -0.017021263018250465, 0.0035099280066788197, -0.004695629235357046, 0.0359044224023819, 0.06672637164592743, -0.015574518591165543, 0.00010703157022362575, -0.0063405148684978485, 0.01480711530894041, -0.026846544817090034, 0.0582723505795002, -0.044610049575567245, 0.07321785390377045, -0.027752332389354706, 0.07014823704957962, -0.03716246411204338, 0.0010826995130628347, 0.0050541702657938, -0.012693610042333603, 0.019348634406924248, -0.010403979569673538, 0.017713185399770737, -0.030092284083366394, -0.04991897568106651, 0.01685771904885769, -0.0003457640705164522, 0.0019279442494735122, 0.05701431259512901, 0.005362389609217644, -0.022355347871780396, 0.008416278287768364, 0.021235693246126175, 0.04803191497921944, 0.03814373165369034, 0.05857428163290024, 0.0015678306808695197, 0.026745902374386787, -0.024670138955116272, 0.027123313397169113, 0.005145377945154905, 0.04883706197142601, 0.0034344454761594534, -0.03967854008078575, -0.029966481029987335, 0.02991615980863571, -0.010378818958997726, 0.02034248597919941, -0.0645122230052948, 0.008787400089204311, 0.019788948819041252, -0.015750644728541374, 0.024745620787143707, 0.03386640176177025, -0.03124968148767948, 0.0408610962331295, -0.010712198913097382, 0.011032999493181705, -0.0028022811748087406, -0.003978547174483538, -0.02707299217581749, 0.03301093354821205, 0.005636013112962246, -0.07930675894021988, -0.010397689417004585, 0.015876447781920433, -0.03643279895186424, -0.0666760504245758, 0.008862882852554321, -0.07306688278913498, -0.020694736391305923, -0.05253569409251213, -0.005720930639654398, -0.023386938497424126, -0.002753532025963068, 0.015775805339217186, 0.01970088481903076, -0.06285161525011063, 0.02395305596292019, 0.026267847046256065, -0.018832838162779808, 0.024305306375026703, 0.05223376676440239, 0.004283621441572905, -0.014769374392926693, -0.03371543809771538, -0.0021575363352894783, 0.0380682498216629, -0.016908040270209312, -0.009133360348641872, 0.0005845948471687734, -0.0636567547917366, 0.033765759319067, 0.006805989425629377, 0.01106445025652647, -0.006305919028818607, 0.05968135595321655, -0.006428577471524477, -0.017499318346381187, -0.0011102191638201475, 0.014995820820331573, 0.000495745858643204, -0.010196403600275517, -0.0018477443372830749, 0.0068814717233181, 0.00695066386833787, 0.008699337020516396, 0.019172510132193565, -0.020417967811226845, 0.02901037223637104, -0.03386640176177025, 0.0016889169346541166, -0.01943669654428959, -0.005437872372567654, -0.007479039952158928, 0.06456254422664642, -0.03517476096749306, 0.03283480927348137, 0.0045415195636451244, -0.024179503321647644, 0.016543207690119743, 0.010353658348321915, 0.026418812572956085, 0.015348072163760662, -0.04211913421750069, -0.0034344454761594534, 0.018744776025414467, -0.027274278923869133, -0.0020804814994335175, 0.03109871596097946, -0.011542504653334618, 0.02025442197918892, 0.01406487263739109, -0.011303476989269257, -0.02070731669664383, -0.04732741415500641, 0.002777120331302285, 0.025601087138056755, -0.0291361752897501, 0.02088344283401966, 0.05434726923704147, 0.002226728480309248, -0.0022220108658075333, -0.002424869453534484, 0.029991641640663147, -0.017537059262394905, -0.005239731166511774, -0.021474720910191536, -0.024519173428416252, -0.005154813639819622, -0.019902171567082405, -0.048887383192777634, 0.001012721098959446, -0.0023163636215031147, -0.005566820967942476, -0.0038275825791060925, -0.02494690753519535, -0.0402069166302681, -0.026695581153035164, -0.0130081195384264, -0.03947725519537926, -0.04619517922401428, 0.03062066063284874, 0.057618170976638794, 0.02840651385486126, -0.017046423628926277, -0.011441861279308796, -0.015800965949892998, 0.05490080639719963, 0.02010345831513405, 0.03092258982360363, -0.06033553555607796, -0.005522789899259806, -0.0230095274746418, -0.027425242587924004, -0.033816080540418625, -0.008862882852554321, 0.0036923435982316732, -0.07211077958345413, -0.03137548267841339, -0.005944232922047377, 0.027324600145220757, 0.012982958927750587, 0.0049126408994197845, 0.0031309437472373247, 0.00936609786003828, 0.026846544817090034, -0.054548557847738266, -0.03079678677022457, -0.035149600356817245, 0.040483683347702026, 0.0374140702188015, -0.013272307813167572, 0.026217525824904442, -0.01531033031642437, -0.004582406021654606, -0.0009529642993584275, 0.013976809568703175, -0.007837580516934395, 0.02797877974808216, 0.011485893279314041, 0.050069939345121384, -0.07507974654436111, -0.011479603126645088, -0.02285856194794178, 0.004727080464363098, -0.00512336241081357, -0.018694454804062843, 0.03907468169927597, 0.018140917643904686, -0.0047365156933665276, 0.013788104057312012, -0.04886222258210182, -0.039301127195358276, 0.022896304726600647, 0.014329060912132263, -0.041666239500045776, -0.004104351159185171, 0.0006325575523078442, 0.043880388140678406, -0.007598553784191608, 0.03597990423440933, -0.014530346728861332, -0.0035508142318576574, 0.06526704877614975, -0.08071576058864594, -0.04143979400396347, -0.004484907723963261, 0.014291319064795971, -0.0115047637373209, -0.033237382769584656, 0.011517344042658806, -0.065367691218853, 0.0294632650911808, -0.015423553995788097, 0.020833119750022888, -0.0404333621263504, 0.0015230131102725863, 0.0178515687584877, 0.05339116230607033, 0.023600805550813675, 0.019864430651068687, 0.017147067934274673, -0.010542363859713078, 0.016442565247416496, 0.018958643078804016, -0.05560531094670296, -0.015687741339206696, -0.026997510343790054, 0.025865275412797928, -0.0042427354492247105, 0.0189209021627903, -0.012523774988949299, -0.026242686435580254, -5.607117782346904e-05, -0.019965073093771935, 0.0001271798537345603, -0.06254968047142029, 0.018203819170594215, 0.02498464845120907, -0.05049767345190048, -0.03200450539588928, 0.01713448576629162, -0.03464638441801071, -0.03635731711983681, -0.02555076591670513, -0.07734421640634537, 0.004727080464363098, 0.002827442018315196, 0.008529501967132092, 0.013234566897153854, -0.007397267501801252, -0.00892578437924385, 0.03517476096749306, -0.0018037129193544388, 0.008082898333668709, 0.012907477095723152, -0.013410692103207111, -0.05399502068758011, -0.055705953389406204, 0.011215414851903915, -0.07336881756782532, -0.030243249610066414, -0.007491620257496834, 0.08599952608346939, 0.013674880377948284, 0.021940194070339203, -0.02767685055732727, -0.04720161110162735, -0.009252874180674553, -0.03673473000526428, -0.06461286544799805, -0.007548232097178698, 0.01937379501760006, -0.049365438520908356, -0.01939895562827587, -0.022896304726600647, -0.0035508142318576574, 0.005598272196948528, -0.06335482746362686, -0.047000326216220856, 0.00438111973926425, -0.041943009942770004, 0.03431929647922516, -0.003110500518232584, 0.012479743920266628, -0.06873923540115356, 0.01970088481903076, -0.010083179920911789, -0.005261746700853109, 0.05004477873444557, -0.009617705829441547, -0.016354503110051155, -0.07794807851314545, 0.01570032350718975, 0.019788948819041252, -0.04038304090499878, -0.03628183528780937, -0.016807395964860916, 0.02285856194794178, -0.005396985914558172, -0.02219180203974247, -0.017864149063825607, 0.02516077272593975, 0.018908321857452393, 0.0369863361120224, 0.027928458526730537, 0.015285169705748558, -0.0013657582458108664, 0.06098971515893936, 0.04453456774353981, -0.020719897001981735, 0.050069939345121384, -0.009611415676772594, 0.01531033031642437, -0.018694454804062843, -0.01939895562827587, -0.012725060805678368, -0.01894606277346611, 0.04176688566803932, -0.05313955247402191, -0.008642725646495819, 0.038495983928442, 0.01124686561524868, 0.007825000211596489, 0.05012026056647301, 0.0037300847470760345, 0.0061266482807695866, 0.03404252603650093, -0.024783361703157425, 0.01640482433140278, -0.027123313397169113, 0.05942974612116814, 0.04642162844538689, 0.03328770399093628, -0.025211095809936523, 0.006516640540212393, -0.04131399095058441, 0.008630145341157913, 0.0244059506803751, 0.009837862104177475, 0.02343725971877575, -0.0412888303399086, 0.05490080639719963, -0.032759327441453934, 0.030142607167363167, 0.025840114802122116, 0.028507156297564507, 0.03756503388285637, -0.008994976058602333, 0.03477218747138977, 0.028481995686888695, -0.030243249610066414, -0.011278316378593445, -0.0017518188105896115, -0.018618972972035408, 0.011146222241222858, -0.011850723996758461, 3.877314520650543e-05, 0.025085290893912315, 0.02092118375003338, 0.0047365156933665276, -0.024028537794947624, -0.026393651962280273, -0.01615321636199951, -0.002240881323814392, 0.05132797732949257, 0.028356190770864487, 0.03406768664717674, 0.033639952540397644, -0.047126129269599915, 0.008661596104502678, -0.04199333116412163, 0.008542082272469997, -0.009774960577487946, 0.02443111129105091, 0.038244374096393585, 0.00976238027215004, -0.006906632333993912, 0.013133923523128033, 0.0002983910380862653, -0.060436177998781204, -0.005837299395352602, 0.002583696972578764, -0.0013822700129821897, -0.07980997115373611, 0.020153779536485672, -0.013146503828465939, 0.0520324781537056, -0.03726310655474663, -0.05922846123576164, -0.015775805339217186, -0.06551865488290787, -0.00291078700684011, 0.0005024292040616274, 0.003840163117274642, -0.00994479563087225, 0.008699337020516396, -0.037816643714904785, -0.07588489353656769, -0.03273416683077812, -0.04916414991021156, -0.006579542066901922, 0.03185353800654411, -0.05374341085553169, 0.022871142253279686, 0.04071013256907463, -0.005006994120776653, -0.05625949054956436, -0.04302492365241051, -0.003745810128748417, 0.0069380830973386765, -0.05404534190893173, 0.010724779218435287, -0.002602567430585623, -0.04755386337637901, -0.014014550484716892, -0.00031549250707030296, 0.030394215136766434, 0.04531455412507057, -0.04617001861333847, 0.011404120363295078, 0.03819405287504196, 0.06969534605741501, -0.006982114631682634, 0.03733858838677406, 0.00512336241081357, -0.0005562889855355024, -0.013096182607114315, -0.023877574130892754, -0.010655587539076805, 0.019902171567082405, -0.01666901260614395, 0.014253578148782253, 0.0050415899604558945, -0.01398938987404108, -0.002405998995527625, 0.04010627418756485, 0.023512743413448334, -0.014329060912132263, 0.033967044204473495, -0.043226208537817, -0.05059831589460373, -0.042823635041713715, 0.018996383994817734, -0.06169421598315239, -0.03467154502868652, -0.004343378357589245, 0.06265032291412354, 0.029765194281935692, 0.004837158601731062, -0.07281527668237686, -0.048912543803453445, -0.039603058248758316, -0.0073658162727952, 0.09717090427875519, -0.012706190347671509, -0.011297186836600304, 0.016379663720726967, 0.01855606958270073, -0.05535370111465454, 0.060134246945381165, 0.014480025507509708, 0.07326817512512207, 0.0037080689799040556, 0.02479594200849533, -0.019562501460313797, 0.01142928097397089, 0.04040820151567459, 0.017423836514353752, 0.02367628738284111, 0.008711918257176876, -0.015222268179059029, 0.026267847046256065, -0.004104351159185171, 0.005724076181650162, -0.038420502096414566, -0.027022670954465866, -0.056762706488370895, 0.05004477873444557, 0.03847082331776619, -0.018681874498724937, -0.023085009306669235, -0.009699477814137936, 0.002262897090986371, 0.0067305066622793674, 0.016102895140647888, -0.006233581807464361, -0.010026568546891212, 0.004579260945320129, -0.054246626794338226, -0.04307524487376213, -0.004233300220221281, -0.0033621082548052073, -0.003972257021814585, -0.04028239846229553, 0.014857436530292034, 0.009837862104177475, 0.023776931688189507, -0.029261980205774307, 0.007724357303231955, -0.021776650100946426, 0.00011597543925745413, 0.014165515080094337, 0.014719052240252495, 0.0028431673999875784, -0.013662300072610378, 0.016480306163430214, 0.008233862929046154, 0.005088766571134329, 0.0015151503030210733, -0.007975964806973934, 0.01673191413283348, 0.002976834075525403, -0.012775382958352566, 0.031048394739627838, -0.019776368513703346, 0.017448997125029564, -0.017939630895853043, -0.019877010956406593, -0.026418812572956085, 0.00681227957829833, 0.0541963055729866, 0.0147316325455904, -0.007831290364265442, 0.040181756019592285, -0.03195418044924736, -0.031576771289110184, 0.030998073518276215, -0.014492605812847614, 0.0013012837152928114, -0.01718480885028839, 0.040332719683647156, -0.0597819983959198, 0.0017549640033394098, -0.01024672482162714, -9.730142483022064e-05, 0.034696705639362335, 0.02182697132229805, 0.008737078867852688, -0.01973862759768963, -0.011058160103857517, 0.005532225128263235, -0.0030428811442106962, -0.005073040723800659, -0.048912543803453445, 0.008259023539721966, -0.05263633653521538, -0.027852976694703102, 0.01918509043753147, -0.030947750434279442, -0.030696144327521324, 0.004217574838548899, -0.015838706865906715, -0.013020699843764305, 0.03635731711983681, -0.018203819170594215, -0.00343759055249393, 0.03356447070837021, -0.025424961000680923, -0.01952476054430008, -0.037967607378959656, 0.006107777822762728, -0.01767544262111187, -0.014001970179378986, -0.024242404848337173, 0.01952476054430008, -0.020304745063185692, -0.004522649105638266, 0.026116883382201195, 0.007038726471364498, 0.00032414152519777417, 0.007240012753754854, 0.028632959350943565, 0.0008153663366101682, 0.008070318028330803, -0.022606953978538513, 0.007070177234709263, -0.008787400089204311, 0.005771252326667309, 0.038697268813848495, 0.01595192961394787, -0.007227431982755661, -0.03444509953260422, 0.020958924666047096, -0.008026286959648132, 0.005261746700853109, -0.020656995475292206, 0.05087508261203766, -0.024821102619171143, -0.012335069477558136, -0.027047831565141678, -0.0027440967969596386, -0.028783924877643585, -0.042848795652389526, -0.012769092805683613, -0.029639391228556633, -0.011058160103857517, 0.013347790576517582, 0.0060417307540774345, -0.008661596104502678, 0.01132234837859869, -0.012850864790380001, 0.009227713569998741, -0.041515275835990906, 0.042219776660203934, -0.01024672482162714, -0.004591841250658035, 0.04793127253651619, 0.028809085488319397, 0.01840510591864586, 0.006680185440927744, 0.009120780043303967, 0.03260836377739906, 0.04081077501177788, -0.008447729982435703, 0.0012289464939385653, -0.017725765705108643, -0.012894896790385246, 0.004484907723963261, 0.0013626131694763899, -0.006478899158537388, -0.004532084334641695, -0.013838425278663635, 0.0033023515716195107, -0.01570032350718975, -0.00506360549479723, -0.002138665644451976, -0.025349479168653488, 0.0011943504214286804, -0.03660892695188522, 0.01876993663609028, 0.0077683888375759125, 0.02367628738284111, 0.021273434162139893, 0.024028537794947624, 0.0049566724337637424, -0.0013547503622248769, 0.02046828903257847, -0.006636153906583786, 0.027274278923869133, -0.01836736500263214, 0.028683282434940338, -0.015373232774436474, -0.012737641111016273, -0.03283480927348137, 0.008642725646495819, -0.04081077501177788, -0.0018147208029404283, 0.035879261791706085, 0.018908321857452393, -0.002053748117759824, 0.023487582802772522, 0.008617565035820007, -0.013297468423843384, 0.0037772611249238253, 0.006324789486825466, 0.0028368772473186255, 0.03190385922789574, 0.027626529335975647, 0.009422709234058857, 0.01858123205602169, -0.006749377585947514, -0.025273997336626053, -0.009661736898124218, -0.0010764093603938818, -0.025538185611367226, -0.05444791540503502, 0.004805707838386297, -0.025940757244825363, 0.019260572269558907, -0.0314006470143795, -0.0008342369110323489, -0.0008476035436615348, 0.019235411658883095, -0.04310040548443794, -0.008787400089204311, -0.01591418869793415, -0.011850723996758461, -0.012662159278988838, 0.00888175331056118, 0.011787822470068932, -0.040785614401102066, 0.0005873467889614403, 0.005463032983243465, -0.05178087204694748, 0.00212608533911407, 0.009466741234064102, -0.0050415899604558945, 0.008875463157892227, 0.01062413677573204, -0.04425780102610588, 0.00946045108139515, 0.015486456453800201, -0.03135032206773758, 0.001448316965252161, 0.03414316847920418, -0.023298876360058784, 0.0020726188085973263, -0.020870860666036606, 0.007567102555185556, 0.0004576115752570331, 0.006956954021006823, 0.01032220758497715, -0.03683537244796753, 0.02303468808531761, -0.0263433288782835, -0.006680185440927744, -0.017864149063825607, -0.017411254346370697, 0.05168022960424423, -0.02382725290954113, -0.03361479192972183, -0.01970088481903076, 0.009605125524103642, -0.02722395770251751, 0.004466037265956402, 0.020908603444695473, -0.0025003517512232065, 0.008793690241873264, 0.03502379730343819, 0.0011762661160901189, 0.003698633750900626, 0.003431300399824977, 0.008793690241873264, -0.04028239846229553, -0.0006419928395189345, 0.01331004872918129, 0.012907477095723152, -0.07412363588809967, 0.014530346728861332, -0.011209124699234962, -0.01024672482162714, 0.022254703566432, -0.027450403198599815, 0.0065543814562261105, 0.02124827355146408, -0.036457959562540054, 0.005239731166511774, -0.029186496511101723, 0.012114912271499634, -0.009234003722667694, 0.013725201599299908, -0.023261135444045067, 0.0011967092286795378, 0.012052010744810104, 0.05766849219799042, -0.01907186582684517, 0.006076326593756676, 0.014693891629576683, 0.006258742418140173, 0.014769374392926693, -0.025601087138056755, 0.005431581754237413, -0.042697831988334656, -0.01500840112566948, 0.0267710629850626, -0.013297468423843384, 0.025412380695343018, -0.01420325692743063, -0.05872524529695511, 0.0012281602248549461, 0.010957516729831696, -0.057366564869880676, -0.0039439513348042965, -0.025060130283236504, -0.010938646271824837, 0.0346212238073349, 0.022091159597039223, -0.030092284083366394, 0.03756503388285637, -0.004044594243168831, -0.020455708727240562, 0.038244374096393585, 0.015184526331722736, 0.022695017978549004, 0.04146495461463928, -0.0034344454761594534, 0.012014268897473812, -0.03889855742454529, -0.00780612975358963, 0.003824437502771616, 0.009586255066096783, 0.025336898863315582, 0.002640308579429984, 0.011441861279308796, -0.006315354257822037, 0.0012674739118665457, -0.03079678677022457, -0.01879509724676609, 0.03708697855472565, 0.023336617276072502, -0.024053700268268585, -0.013133923523128033, -0.009252874180674553, -0.03255804255604744, 0.008032577112317085, -0.005654884036630392, 0.017285451292991638, 0.00020561068959068507, 0.05084992200136185, 0.007718067150563002, 0.021638264879584312, 0.01836736500263214, -0.001505715074017644, -0.015109044499695301, -0.016568370163440704, -0.017147067934274673, 0.01264328882098198, -0.0018225834937766194, 0.01450518611818552, -0.038420502096414566, 0.041666239500045776, -0.015788385644555092, -0.011422990821301937, -0.024267565459012985, 0.007491620257496834, -0.022141480818390846, -0.04362878203392029, 0.03711213916540146, -0.006566961761564016, -0.0004926007823087275, -0.015788385644555092, 0.029387783259153366, 0.029186496511101723, -0.008674176409840584, -0.030947750434279442, -0.0029972770716995, -0.026116883382201195, 0.0033652533311396837, 0.04055916517972946, -0.0178515687584877, -0.008693046867847443, 0.03185353800654411, -0.006629863753914833, 0.04584293067455292, -0.02810458466410637, -0.032910291105508804, -0.030545178800821304, 0.014001970179378986, 0.05746720731258392, 0.02122311294078827, 0.03864694759249687, 0.02339951880276203, 0.017599960789084435, 0.053491804748773575, -0.01954992115497589, -0.009592545218765736, -0.011938787065446377, -0.011768952012062073, 0.027123313397169113, 0.02943810448050499, 0.0038873394951224327, -0.013486174866557121, 0.00016904894437175244, -0.0009867741027846932, 0.024909164756536484, 0.010435430333018303, 0.020178940147161484, -0.015989672392606735, 0.011272026225924492, 0.04954156279563904, -0.008900623768568039, -0.04606937617063522, -0.011907336302101612, -0.04440876469016075, -0.0017392385052517056, -0.015536777675151825, 0.01567516103386879, 0.020958924666047096, 0.020845700055360794, 0.0011534641962498426, 0.020984085276722908, 0.01020269375294447, 0.005507064051926136, -0.006189550273120403, -0.049768008291721344, 0.008894333615899086, 0.022443410009145737, -0.00291078700684011, 0.0023792656138539314, -0.01156766526401043, -0.026544615626335144, -0.019776368513703346, -0.018618972972035408, 0.015159365721046925, -0.00025927391834557056, 0.025387220084667206, -0.0034879122395068407, -0.02492174692451954, 0.023198233917355537, 0.018656713888049126, -0.023475002497434616, -0.05283762514591217, 4.23359488195274e-05, -0.0012761229882016778, -0.0028085713274776936, -0.011467022821307182, -0.0045415195636451244, 0.003239449579268694, -0.006522930692881346, 0.017084164544939995, -0.00043402332812547684, 0.03922564536333084, -0.015813546255230904, 0.004227010067552328, -0.010718489065766335, -0.022254703566432, -0.011316058225929737, -0.02421724423766136, -0.0028793360106647015, 0.030067123472690582, -0.034419938921928406, 0.03170257434248924, 0.010724779218435287, 0.021562783047556877, -0.0006781614501960576, 0.001712505123578012, 0.026846544817090034, 0.041515275835990906, -0.014077452942728996, 0.024078860878944397, -0.01621611788868904, 0.0018225834937766194, 0.007000985089689493, -0.01250490453094244, 0.03283480927348137, 0.0003150993725284934, 0.015020981431007385, -0.021499881520867348, -0.011913626454770565, 0.01538581307977438, -0.012781673111021519, 0.02324855513870716, -0.07221142202615738, 0.01630418188869953, -0.008221282623708248, -0.035300564020872116, 0.02034248597919941, 0.0063782562501728535, 0.0036829081363976, 0.01903412491083145, 0.00225503440015018, 0.015863867476582527, 0.031023234128952026, 0.040332719683647156, 0.014794535003602505, -0.0038810493424534798, 0.024607235565781593, 0.027299439534544945, 0.008214992471039295, 0.026142043992877007, -0.007510490715503693, 0.004588696174323559, 0.0331115759909153, 0.0042112842202186584, 0.018027694895863533, 0.0014467444270849228, 0.046698395162820816, -0.004506923723965883, 0.03904952108860016, -0.015574518591165543, 0.028381353244185448, -0.029966481029987335, 0.015574518591165543, 0.012857154943048954, 0.013788104057312012, 0.0021952774841338396, 0.010221564210951328, 0.029664551839232445, 0.03640763834118843, -0.03177805617451668, -0.007416137959808111, -0.004777401685714722, -0.016757074743509293, -0.018845418468117714, 0.028456835076212883, 0.007214851677417755, -0.005786977708339691, -0.0033212220296263695, -0.03434445708990097, -0.024393370375037193, 0.024972068145871162, 0.02139923721551895, 0.014417123049497604, 0.02167600579559803, 0.0028211516328155994, 0.006117213051766157, 0.0034721866250038147, 0.02346242032945156, 0.010649297386407852, -0.005195699632167816, 0.011511053889989853, 0.0220408383756876, 0.020568931475281715, 0.003575974842533469, 0.01156766526401043, 0.04096173867583275, -0.0058341543190181255, -0.0006081830943003297, -0.03668440878391266, -0.019965073093771935, 0.009278034791350365, 0.024909164756536484, -0.0030586065258830786, 0.004396845120936632, 0.005459887906908989, 0.013851005584001541, -0.003969111945480108, 0.0029438105411827564, -0.02339951880276203, -0.013888746500015259, 0.02034248597919941, -0.022380508482456207, 0.03552701324224472, -0.01420325692743063, 0.04096173867583275, 0.021273434162139893, -0.02498464845120907, 0.006447448395192623, 0.014354221522808075, 0.026443973183631897, 0.008875463157892227, -0.018908321857452393, -0.013360370881855488, -0.010347368195652962, -0.004588696174323559, 0.006403416860848665, 0.002203140174970031, -0.028884567320346832, -0.014090033248066902, 0.00706388708204031, -0.0028069987893104553, 0.008604984730482101, -0.01821639947593212, -6.019911597832106e-05, -0.004639017395675182, -0.008604984730482101, -0.02755104750394821, -0.040332719683647156, -0.012542645446956158, -0.005591982044279575, -0.021839551627635956, -0.008604984730482101, 0.023839833214879036, -0.01517194602638483, -0.05115185305476189, -0.03759019449353218, -0.005928507074713707, -0.0005562889855355024, 0.02118537202477455, -0.020606674253940582, 0.006661314982920885, -0.007585973013192415, 0.012769092805683613, 0.009114489890635014, -0.013133923523128033, 0.03472186625003815, 0.008422568440437317, -4.1942814277717844e-05, -0.003651457140222192, 0.006073181517422199, -0.00806402787566185, 0.05636013299226761, -0.02337435819208622, -0.01713448576629162, -0.013146503828465939, -0.021273434162139893, -0.004588696174323559, -0.0015285169938579202, -0.002148101106286049, 0.0022078577894717455, 0.021940194070339203, -0.016832556575536728, 0.004280476365238428, -0.03562765568494797, 0.019927332177758217, -0.0087622394785285, 0.018744776025414467, -0.02509787119925022, 0.020392807200551033, 0.005400130990892649, 0.010630426928400993, -0.031023234128952026, -0.012454582378268242, -4.582503970596008e-05, 0.014404542744159698, -0.014391962438821793, 0.02210373990237713, 0.017788667231798172, 0.008510631509125233, 0.03660892695188522, -0.0013374523259699345, -0.03404252603650093, 0.004843448754400015, 0.000160596493515186, -0.02855747751891613, 0.01754963956773281, -0.025487864390015602, 0.01567516103386879, -0.0026167205069214106, -0.04259718954563141, 0.006705346051603556, 0.01758738048374653, 0.009045298211276531, 0.0034721866250038147, -0.030218088999390602, -0.017876729369163513, -0.006535510998219252, -0.00492522120475769, 0.08499309420585632, 0.0034784770105034113, 0.018153497949242592, -0.006856310646981001, -0.0101083405315876, -0.0033275121822953224, -0.048912543803453445, 0.007221141830086708, 0.01588902808725834, 0.05062347650527954, 0.007529361639171839, 0.00045053509529680014, 0.014895177446305752, -0.024745620787143707, 0.010158662684261799, -0.009284324944019318, -0.02100924588739872, 0.01621611788868904, -0.0065103499218821526, -0.0011526779271662235, 0.001948387362062931, -0.008906913921236992, 0.0263433288782835, 0.003984837327152491, 0.008598694577813148, -0.0036577475257217884, 0.020292162895202637, -0.03562765568494797, -0.0147316325455904, 0.05014542117714882, 0.002085199113935232, -0.02722395770251751, -0.02606656216084957, 0.01382584497332573, 0.03004196286201477, -0.010001407004892826, -0.015348072163760662, -0.005148523487150669, 0.0015851287171244621, 0.027274278923869133, -0.03421865031123161, -0.02679622359573841, -0.01282570417970419, 0.019864430651068687, 0.02165084518492222, -0.009863022714853287, 0.004406280349940062, -0.017688022926449776, 0.009724639356136322, -0.015473875217139721, 0.052887946367263794, 0.006894052028656006, -0.00824644323438406, -0.02197793498635292, -0.00488119013607502, 0.007485330104827881, 0.007372106425464153, -0.022506311535835266, 0.0005897056544199586, -0.0053340839222073555, -0.023990796878933907, -0.01162427756935358, 0.01262441836297512, 0.008649015799164772, 0.021059567108750343, 0.017448997125029564, 0.026871705427765846, -0.043729424476623535, -0.01044172141700983, 0.005135942716151476, -0.03119935840368271, 0.033388346433639526, -0.008082898333668709, 0.008252733387053013, -0.0014506758889183402, 0.012020559050142765, -0.018090596422553062, -0.006894052028656006, -0.01797737181186676, -0.00362629652954638, -0.008749659173190594, -0.04367910325527191, -0.015939349308609962, 0.030872268602252007, -0.012454582378268242, -0.001613434636965394, 0.013574237003922462, -0.0009325211867690086, 0.010781391523778439, -0.02765168994665146, 0.01318424567580223, 0.007843870669603348, -0.007950804196298122, -0.0041515277698636055, -0.0038495983462780714, 0.01076252106577158, 0.004415715578943491, 0.0032771907281130552, 0.019021544605493546, -0.029362622648477554, 0.0147316325455904, -0.0133855314925313, -0.04825836420059204, 0.020933764055371284, 0.00857982411980629, -0.010787681676447392, 0.010359948500990868, 0.0002109180495608598, 0.004610711708664894, 0.01194507721811533, 0.003340092720463872, -0.005337228998541832, 0.04498746246099472, 0.021109888330101967, 0.015335491858422756, -0.034092847257852554, -0.0009175819577649236, 0.011775242164731026, -0.02692202664911747, 0.009447870776057243, -0.006604703143239021, 0.00769290653988719, 0.008674176409840584, 0.011209124699234962, -0.024204663932323456, 0.028381353244185448, -0.020820539444684982, 0.003767825895920396, -0.0019295167876407504, -0.040332719683647156, 0.013058441691100597, 0.0030586065258830786, 0.006856310646981001, -0.0013626131694763899, 0.030872268602252007, -0.01776350662112236, 0.01737351343035698, 0.02843167446553707, -0.008158381097018719, -0.03089742921292782, 0.003698633750900626, -0.006208420731127262, -0.018178658559918404, 0.030746465548872948, 0.008252733387053013, 0.013674880377948284, -0.021323755383491516, -0.0049189310520887375, 0.03346382826566696, -0.0014310190454125404, 0.007460169494152069, 0.010573814623057842, -0.00810805894434452, 0.03016776777803898, -0.020745057612657547, 0.020267002284526825, -0.03064582124352455, 0.014630990102887154, 0.021701166406273842, -0.03308641538023949, -0.028054261580109596, 0.0005216929130256176, -0.022971786558628082, 0.015574518591165543, 0.007151949685066938, -0.048585452139377594, 0.017725765705108643, 0.011586535722017288, -0.027299439534544945, -0.015524197369813919, -0.007302914280444384, -0.05686334893107414, -0.014605828560888767, -0.003947096411138773, 0.008277893997728825, -6.378649413818493e-05, 0.03379091992974281, 0.02143697813153267, -0.031878698617219925, -0.02261953614652157, 0.05027122423052788, 0.015146785415709019, -0.0053718253038823605, 0.007856451906263828, -0.007862742058932781, -0.029387783259153366, 0.018618972972035408, -0.015599679201841354, 0.045641642063856125, -0.0005122576258145273, -0.0016323052113875747, -0.024632398039102554, 0.013813264667987823, -0.015725484117865562, 0.004186123609542847, 0.003160822205245495, -0.05389437824487686, 0.022229542955756187, -0.008950944989919662, 0.008969815447926521, 0.018228979781270027, -0.04262235015630722, 0.05283762514591217, 0.005777542479336262, -0.00394080625846982, -0.030142607167363167, -0.009227713569998741, -0.029790354892611504, 0.0035633945371955633, -0.004859174136072397, 0.02283340133726597, -0.0002944596635643393, -0.007894192822277546, 0.014316479675471783, 0.0020993519574403763, 0.018606392666697502, -0.0002119008859153837, -0.0042049940675497055, -0.028582638129591942, -0.03831985965371132, -0.033237382769584656, -0.017599960789084435, 0.04227009788155556, 0.025299157947301865, -0.007655165158212185, -0.007397267501801252, 0.0101083405315876, 0.02137407660484314, -0.0007933506276458502, -0.0021103599574416876, 0.010919775813817978, 0.02122311294078827, -0.016807395964860916, -0.012838284485042095, -0.040760453790426254, 0.00016963864618446678, -0.02313533052802086, -0.038848232477903366, -0.046094536781311035, -0.006856310646981001, 0.03552701324224472, -0.0130081195384264, -0.031174197793006897, -0.019474439322948456, 0.019512180238962173, -0.02795361913740635, 0.010403979569673538, -0.02092118375003338, -0.023965636268258095, -0.02567656897008419, -0.018090596422553062, 0.01224700640887022, -0.0035067826975136995, -0.015197107568383217, 0.018895741552114487, -0.023173071444034576, 0.02797877974808216, -0.015989672392606735, -0.01591418869793415, -0.022606953978538513, -0.00662357360124588, -0.020958924666047096, 0.03965337947010994, 0.002412289148196578, 0.01426615845412016, 0.004893770441412926, 0.013020699843764305, -0.00562343280762434, 0.0035696846898645163, 0.007290333975106478, 0.009756090119481087, -0.019046705216169357, 0.008095478639006615, -0.021273434162139893, -0.024229824542999268, -0.01094493642449379, 0.02294662594795227, -0.0178515687584877, 0.014115193858742714, -0.013360370881855488, -0.005507064051926136, -0.013448433019220829, 0.010605266317725182, -0.035451531410217285, 0.03522508218884468, -0.012982958927750587, 0.009592545218765736, 0.004856029059737921, 0.04398103058338165, 0.012850864790380001, -0.007378396578133106, -0.002346242079511285, -0.0041924137622118, -0.004745950922369957, 0.028079424053430557, 0.024456271901726723, 0.0016527483239769936, -0.007302914280444384, 0.004208139143884182, -0.03348898887634277, 0.02303468808531761, 0.005642303265631199, -0.025085290893912315, -0.00543472683057189, 0.0012894896790385246, 0.011926206760108471, -0.001998709049075842, 0.010315917432308197, 0.024028537794947624, -0.010328497737646103, -0.017838988453149796, 0.010655587539076805, -0.02070731669664383, -0.00695066386833787, 0.014907758682966232, -0.01562484074383974, -0.010391399264335632, -0.031274840235710144, -0.002990986919030547, 0.02131117507815361, 0.01627902127802372, -0.014995820820331573, 0.00988189410418272, -0.024896584451198578, 0.0559072382748127, -0.037061817944049835, -0.03016776777803898, -0.009208843111991882, -0.008737078867852688, 0.01142928097397089, -0.012397971004247665, -0.005255456548184156, 0.03301093354821205, -0.0013413837878033519, -0.02027958258986473, -0.007529361639171839, -0.002756677335128188, -0.022393088787794113, -0.0036703278310596943, -0.01354907639324665, -0.02010345831513405, 0.04325136914849281, 0.014656150713562965, -0.019424116238951683, -0.012819414027035236, 0.02843167446553707, 0.0028211516328155994, 0.016593530774116516, -0.037061817944049835, -0.0031419515144079924, 0.03998046740889549, -0.00932206679135561, 0.0025522459764033556, 0.0014664012705907226, -0.003975402098149061, -0.0069632441736757755, 0.023122750222682953, -0.009114489890635014, 0.005412711296230555, -0.041364312171936035, 0.02755104750394821, 0.008120639249682426, 0.0031435240525752306, -0.006529220845550299, -0.0009907054482027888, -0.009309486486017704, 0.021323755383491516, -0.007070177234709263, -0.011831853538751602, 0.0267710629850626, -0.0015536777209490538, 0.0058781858533620834, -0.0017879874212667346, -0.024443691596388817, -0.04010627418756485, -0.0036357317585498095, -0.02158794365823269, -0.009189972653985023, 0.009070458821952343, 0.03152645006775856, 0.04725193232297897, -0.012253296561539173, 4.393306880956516e-05, -0.014240997843444347, 0.0002521974383853376, 0.022720178589224815, -0.014983240514993668, 0.0004973183968104422, 0.021512461826205254], [0.04727970063686371, 0.020998526364564896, 0.0015798419481143355, 0.01483103446662426, -0.016957299783825874, 0.027628248557448387, -0.04131030663847923, -0.027865968644618988, 0.044955335557460785, -0.03135251626372337, 0.0229266919195652, 0.008353186771273613, 0.06207111477851868, 0.03312220424413681, 0.001663208706304431, -0.013424528762698174, 0.03272600471973419, 0.05662998557090759, -0.0351296104490757, 0.018528888002038002, 0.009502163156867027, 0.05937696248292923, 0.020470261573791504, -0.01776290312409401, -0.0057151648215949535, 0.011806718073785305, 0.0365823358297348, 0.016468655318021774, 0.04514022544026375, -0.03243545815348625, 0.05010591447353363, -0.017921382561326027, -0.030216746032238007, -0.04574773088097572, 0.04508740082383156, 0.005883549340069294, -0.00046223169192671776, -0.01353678572922945, -0.010096460580825806, 0.012077453546226025, -0.03468058258295059, -0.035208847373723984, -0.004922767635434866, -0.0036813453771173954, -0.030111093074083328, 0.02551518939435482, 0.007844732142984867, -0.025290677323937416, 0.010710569098591805, 0.02176450937986374, 0.03230339288711548, 0.010353989899158478, 0.043978042900562286, 0.025726495310664177, -0.03460134565830231, -0.0321977399289608, -0.01718181185424328, 0.030480878427624702, 0.05874304473400116, -0.024405833333730698, -0.016561102122068405, -0.020774012431502342, 0.008828625082969666, 0.021500376984477043, -0.011945387348532677, 0.016072455793619156, -0.033941011875867844, 0.017432738095521927, -0.04315923526883125, 0.03972551226615906, 0.05441127344965935, -0.025686874985694885, 0.013880157843232155, 0.018528888002038002, -0.04521946609020233, 0.050422873347997665, 0.004787399899214506, -0.019294871017336845, -0.03140534088015556, 0.005302458070218563, -0.04112541303038597, 0.036318205296993256, -0.010235130786895752, -0.008300360292196274, -0.02189657650887966, 0.02419452741742134, -0.08357149362564087, 0.00479400297626853, -0.04447989538311958, -0.013470752164721489, -0.052720826119184494, -0.020179715007543564, 0.01638941466808319, 0.026030248031020164, -0.04693632572889328, 0.015200819820165634, -0.023137997835874557, -0.02507937140762806, -0.017010126262903214, 0.02093249186873436, -0.043925218284130096, -0.03985757753252983, -0.02361343614757061, -0.0028526298701763153, 0.027152810245752335, 0.03161664679646492, -0.03246187046170235, 0.003909159451723099, -0.06761789321899414, 0.038325611501932144, 0.06275785714387894, -0.050713419914245605, -0.005246329586952925, 0.05488671362400055, 0.025039751082658768, -0.04548360034823418, -0.04458554834127426, -0.004113862290978432, 0.01166144572198391, -0.02111738547682762, 0.02966206893324852, 0.03000544011592865, -0.003578993957489729, -0.045245878398418427, 0.010723775252699852, -0.03322785720229149, -0.011753891594707966, -0.023996427655220032, 0.014844240620732307, -0.04479685425758362, 0.02283424511551857, -0.05979957431554794, 0.05377735570073128, -0.04936634376645088, -0.0010012268321588635, 0.006860839203000069, -0.06112023815512657, -0.03386177495121956, -0.025449156761169434, -0.001672288286499679, 0.012189710512757301, -0.042763035744428635, 0.054622579365968704, 0.01698371395468712, -0.013959397561848164, 0.017868556082248688, 0.004097353667020798, 0.015504571609199047, -0.005606210324913263, 0.009132377803325653, 0.00382991973310709, -0.016019629314541817, -0.05541497841477394, -0.009825725108385086, 0.008353186771273613, -0.03581635281443596, 0.04191781207919121, 0.0897521898150444, 0.028552712872624397, -0.018713779747486115, 0.006860839203000069, 0.01110016368329525, 0.005860437639057636, -0.012440635822713375, -0.01356319896876812, -0.023996427655220032, -0.008141880854964256, -0.0246435534209013, -0.04630240797996521, 0.02165885642170906, 0.013642438687384129, -0.012968900613486767, -0.024220941588282585, -0.03000544011592865, -0.05478106066584587, -0.009264444001019001, -0.01471217442303896, 0.025739701464772224, -0.03288448229432106, 0.042947929352521896, 0.06603310257196426, -0.016072455793619156, -0.0356314592063427, -0.00040630990406498313, -0.007481550332158804, 0.026466066017746925, -0.0160988699644804, 0.037401147186756134, -0.025845354422926903, -0.025185024365782738, 0.02703395113348961, -0.03922365978360176, -0.015068753622472286, 0.02160602994263172, -0.02971489541232586, -0.031299687922000885, -0.010096460580825806, -0.006887252442538738, 0.015055546537041664, -0.012922677211463451, -0.029213042929768562, -0.03946138173341751, 0.006484450306743383, 0.04786079004406929, -0.04062356427311897, 0.02741694264113903, 0.0012769150780513883, -0.009667245671153069, 0.06497657299041748, -0.039646271616220474, 0.022279568016529083, -0.008089054375886917, -0.009528576396405697, 0.01844964735209942, 0.018898673355579376, -0.02839423343539238, 0.0258585624396801, -0.006382098887115717, -0.015980010852217674, -0.03713701665401459, -0.0051241684705019, 0.0007395707070827484, 0.0060255201533436775, 0.018225135281682014, -0.03497112914919853, 0.023388924077153206, 0.02620193362236023, 0.014342389069497585, -0.028764018788933754, -0.017445944249629974, -0.05425279587507248, 0.0033082582522183657, 0.025964215397834778, -0.02062874101102352, -0.04651371389627457, -0.03196002170443535, 0.029635654762387276, -0.012480256147682667, 0.03771810606122017, -0.029001737013459206, 0.020166508853435516, 0.052377454936504364, -0.03652951121330261, -0.004612411838024855, -0.020853253081440926, 0.008650336414575577, -0.008518270216882229, -0.008287154138088226, 0.014038637280464172, -0.007673046085983515, -0.0009706865530461073, 0.00042797703645192087, 0.04659295454621315, 0.0007556662894785404, -0.03726908192038536, 0.01722143217921257, 0.061595674604177475, 0.03808789327740669, 0.03288448229432106, -0.022372014820575714, -0.0115822060033679, 0.029582828283309937, 0.04757024347782135, -0.030797837302088737, -0.028896084055304527, -0.0414687879383564, 0.011621825397014618, -0.0634445995092392, -0.009548386558890343, 0.025594430044293404, 0.002448177197948098, 0.023943601176142693, -0.0006462989840656519, -0.011106767691671848, -0.07871145755052567, 0.028314992785453796, -0.01620452292263508, 0.0039983042515814304, -0.011773701757192612, 0.0229266919195652, -0.015742290765047073, -0.01356319896876812, -0.000918685516808182, -0.012585909105837345, -0.01483103446662426, 0.008359790779650211, -0.027945207431912422, 0.016521481797099113, -0.008610716089606285, -0.018304375931620598, 0.04263097047805786, 0.001959532266482711, 0.014342389069497585, 0.012308569625020027, -0.005252933129668236, 0.001990898046642542, -0.00985874142497778, -0.01016909722238779, -0.0522189736366272, -0.015649843961000443, -0.0458797961473465, 0.0712629184126854, 0.03555222228169441, -0.022649353370070457, -0.008914468809962273, -0.04429500177502632, -0.015557398088276386, -0.023243650794029236, -0.021209832280874252, -0.035208847373723984, -0.038563329726457596, -0.021592823788523674, -0.0012166599044576287, -0.06550483405590057, 0.03190719336271286, -0.009449336677789688, -0.04450630769133568, -0.02375870943069458, 0.03531450033187866, -0.045589253306388855, 0.02410208061337471, 0.008122071623802185, 0.028764018788933754, -0.08505063503980637, 0.02546236291527748, 0.024722792208194733, -0.03874822333455086, 0.08367714285850525, 0.014236736111342907, -0.005645830184221268, -0.06571613997220993, -0.016613928601145744, 0.038959529250860214, -0.02752259559929371, -0.05441127344965935, 0.01314719021320343, -0.016613928601145744, 0.0046322220005095005, -0.014434835873544216, 0.01422352995723486, 0.009944585151970387, 0.01922883838415146, -0.007758889347314835, 0.0076400297693908215, 0.025290677323937416, 0.019928788766264915, 0.01702333241701126, 0.023256856948137283, -0.0005381697556003928, 0.002373890019953251, -0.027284877374768257, -0.004784097895026207, -0.022570112720131874, -0.003369338810443878, -0.013464149087667465, -0.00678159948438406, 0.024273768067359924, -0.03732190653681755, -0.03874822333455086, -0.006401909049600363, 0.027971621602773666, 0.01604604348540306, 0.00036215028376318514, -0.011086957529187202, 0.038563329726457596, 0.002733770292252302, -0.03795582428574562, -0.0018934991676360369, -0.03386177495121956, 0.0056425281800329685, 0.028473472222685814, 0.01239441242069006, 0.00556328846141696, 0.026267966255545616, -0.0034304196015000343, 0.026822645217180252, 0.02381153590977192, -0.01946655847132206, 0.021196624264121056, -0.06835746765136719, 0.024419039487838745, -0.0521925613284111, 0.017393117770552635, 0.030850663781166077, 0.033941011875867844, 0.03428438678383827, 0.0057151648215949535, 0.015610224567353725, 0.012427429668605328, -0.0399896465241909, 0.007758889347314835, -0.029873374849557877, -0.02113059163093567, -0.004671841859817505, -0.03946138173341751, 0.01986275613307953, 0.02482844516634941, 0.04746459051966667, 0.006022218614816666, -0.01809307001531124, -0.019057152792811394, -0.009607816115021706, -0.036714404821395874, 0.04117824137210846, 0.07131575047969818, -0.0076400297693908215, 0.03346557542681694, -0.02692829817533493, 0.008108864538371563, -0.028130101040005684, 0.047596659511327744, 0.03592200577259064, 0.00980591494590044, 0.054516926407814026, 0.04152161255478859, 0.001982643734663725, 0.02234560064971447, 0.0016202871920540929, -0.01251327246427536, -0.017445944249629974, -0.030428051948547363, -0.02024574764072895, -0.039197247475385666, -0.001806005253456533, -0.031194036826491356, 0.005764689762145281, -0.03898594155907631, -0.06122589111328125, 0.033148616552352905, -0.06180698052048683, -0.02770748920738697, 0.05921848490834236, -0.045932624489068985, 0.047940030694007874, 0.001553428708575666, -0.006926872301846743, 0.015729084610939026, 0.018700573593378067, -0.06846311688423157, -0.007587203290313482, -0.006395305506885052, -0.04870601370930672, 0.05567910894751549, 0.010360592976212502, -0.021236244589090347, -0.02160602994263172, -0.020258955657482147, -0.01534609217196703, -0.00012009769852738827, 0.010109667666256428, -0.014329182915389538, 0.03428438678383827, -0.04112541303038597, 0.0021856955718249083, -0.06201828643679619, -0.013411322608590126, 0.02029857411980629, -0.028182927519083023, 0.005266139749437571, 0.008392807096242905, 0.058426085859537125, 0.007587203290313482, 0.01848926767706871, -0.009621022269129753, -0.010149287059903145, 0.023098377510905266, -0.010750188492238522, 0.01794779673218727, 0.0261094868183136, -0.0016574307810515165, 0.05742238461971283, 0.014302769675850868, -0.0018324184929952025, 0.0025208136066794395, 0.06201828643679619, 0.026901884004473686, 0.035156022757291794, 0.02571328915655613, -0.042129117995500565, -0.027496183291077614, -0.020324988290667534, -0.010525676421821117, -0.05546780303120613, -0.01239441242069006, 0.04059714823961258, 0.06545200943946838, 0.03917083516716957, 0.05858456715941429, -0.0561017207801342, -0.0370841883122921, 0.015280059538781643, -0.01810627616941929, 0.05784499645233154, -0.014276356436312199, 0.014646141789853573, -0.01644224114716053, -0.007996608503162861, -0.009158791042864323, 0.009515369310975075, -0.004807209596037865, 0.014725381508469582, 0.010710569098591805, -0.006117966491729021, -0.027337703853845596, 0.017155399546027184, 0.03396742790937424, -0.0035261674784123898, 0.062176767736673355, -0.02323044463992119, -0.020457053557038307, 0.016745993867516518, -0.007791905663907528, -0.009105964563786983, -0.024894477799534798, -0.04252531751990318, -0.027152810245752335, -0.007131574675440788, 0.03618614003062248, -0.014593315310776234, -0.007937178947031498, -0.007468343712389469, 0.04350260645151138, 0.022504080086946487, -0.020021235570311546, -0.024022841826081276, 0.02127586491405964, -0.01814589649438858, -0.08283191919326782, -0.01698371395468712, 0.011615222319960594, -0.01615169644355774, -0.020087268203496933, -0.010037031024694443, -0.0019314681412652135, 0.01937411166727543, -0.010241733863949776, -0.043581847101449966, 0.03182795271277428, -0.013959397561848164, -0.006431623827666044, 0.014527281746268272, 0.004536474123597145, -0.01794779673218727, -0.04387238994240761, 0.028077274560928345, -0.017287464812397957, 0.044559136033058167, -0.02484165132045746, -0.03053370490670204, -0.006028822157531977, -0.021526791155338287, -0.017432738095521927, 0.006104759871959686, -0.034416452050209045, 0.017868556082248688, -0.011265247128903866, -0.004292151425033808, -0.003214161144569516, 0.03629179298877716, -0.011806718073785305, 0.01312077697366476, 0.0346277579665184, 0.033307094126939774, 0.010096460580825806, 0.010320973582565784, 0.022715386003255844, -0.011199213564395905, -0.0035030560102313757, -0.03156382218003273, -0.01986275613307953, -0.04543077200651169, -0.022860659286379814, -0.0097596924751997, -0.016270555555820465, 0.013840537518262863, -0.004995403811335564, 0.006973095238208771, -0.018568508327007294, -0.014289562590420246, -0.013404719531536102, 0.016957299783825874, -0.015002720057964325, -0.013450942002236843, 0.003545977408066392, -0.026809439063072205, -0.0057151648215949535, -0.010453039780259132, -0.03127327561378479, -0.027099983766674995, -0.025396330282092094, -0.05504519119858742, -0.0261094868183136, 0.002263284521177411, 0.024669965729117393, -0.022662559524178505, 0.036767229437828064, 0.0007622695993632078, 0.00917199719697237, -0.028473472222685814, 0.006302859168499708, 0.002614910714328289, -0.02312479168176651, -0.02189657650887966, 0.001487395609728992, -0.00790416169911623, 0.002657832344993949, 0.035103194415569305, -0.013094363734126091, 0.02381153590977192, 0.027628248557448387, 0.039883993566036224, 0.018238341435790062, 0.03909159451723099, -0.02453790046274662, 0.00645143399015069, 0.005236424971371889, -0.008221120573580265, 0.024802032858133316, -0.02019292116165161, 0.0261094868183136, -0.009693658910691738, 0.02127586491405964, -0.052720826119184494, -0.0012521526077762246, -0.060908932238817215, 0.06117306277155876, 0.019928788766264915, -0.013186809606850147, 0.004585998598486185, 0.0033676880411803722, -0.022900279611349106, -0.055098019540309906, -0.004064337350428104, -0.0009467495838180184, -0.02542274259030819, 0.016376208513975143, 0.0036582336761057377, -0.0036582336761057377, 0.010182304307818413, -0.0258585624396801, 0.01551777869462967, -0.05322267860174179, 0.011945387348532677, -0.018515681847929955, 0.0027222144417464733, 0.018951499834656715, 0.0006483625038526952, -0.0048204162158071995, 0.04321205988526344, -0.006325970869511366, 0.018159102648496628, 0.0015006022294983268, -0.031880781054496765, 0.010096460580825806, -0.01226895023137331, -0.006814615800976753, 0.005094453692436218, 0.00044489800347946584, -0.0086569394916296, 0.03898594155907631, -0.022847453132271767, -0.05390942096710205, 0.017696870490908623, -0.043291300535202026, -0.014963100664317608, -0.018330788239836693, 0.03555222228169441, -0.028764018788933754, 0.007336277514696121, -0.01718181185424328, -0.00890126172453165, 0.007382500451058149, 0.01819872297346592, 0.017062952741980553, 0.015874357894062996, 0.0068080127239227295, -0.011212420649826527, 0.0016153346514329314, -0.02799803391098976, 0.01541212573647499, 0.031933605670928955, 0.00159800099208951, -0.01800062321126461, 0.009568195790052414, -0.03679364174604416, 0.00177133793476969, 0.03122044913470745, 0.019889170303940773, -0.031590234488248825, 0.0048864493146538734, -0.004308659583330154, 9.641864016884938e-05, 0.0463552363216877, 0.0419706366956234, -0.0014353945152834058, 0.026664165779948235, 0.009990807622671127, -0.02410208061337471, 0.03718984127044678, -0.025634048506617546, -0.04445348307490349, -0.020509880036115646, -0.0005914089269936085, 0.014500868506729603, -0.025977421551942825, -0.0012538034934550524, 0.015042340382933617, 0.0091455839574337, 0.0027519294526427984, -0.0036384237464517355, -0.018766606226563454, 0.013682058081030846, -0.047491006553173065, -0.010056841187179089, 0.012684958055615425, -0.028948910534381866, -0.023877568542957306, -0.021526791155338287, 0.011225626803934574, -0.02839423343539238, -0.017498770728707314, -0.004681746941059828, -0.06270503252744675, 0.010644535534083843, -0.0010978003265336156, 0.04738535359501839, 0.016706373542547226, -0.003489849390462041, -0.032514698803424835, -0.014315975829958916, 0.003707758616656065, -0.04125748202204704, 0.010076651349663734, 0.028130101040005684, -0.013655644841492176, -0.004500155802816153, -0.0028625349514186382, 0.003217462683096528, 0.017406325787305832, -0.027786727994680405, 0.01399901695549488, 0.008769195526838303, 0.026598133146762848, -0.02770748920738697, 0.011958594433963299, 0.007673046085983515, -0.01604604348540306, 0.028024448081851006, -0.002233569510281086, -0.013332082889974117, -0.04706839472055435, 0.011205816641449928, -0.020906079560518265, 0.005358586087822914, 0.01604604348540306, -0.02410208061337471, -0.015240439213812351, 0.03341274708509445, 0.022068262100219727, 0.024762412533164024, -0.018608126789331436, 0.01800062321126461, -0.021962609142065048, -0.007950385101139545, 0.0018522284226492047, -0.015597018413245678, -0.05594324320554733, -0.04706839472055435, -0.02249087393283844, 0.009772898629307747, -0.0021394724026322365, -0.00465863524004817, -0.0280508603900671, -0.011469949036836624, -0.016032837331295013, 0.003509659320116043, -0.02453790046274662, -0.017115779221057892, -0.02332289144396782, 0.018845846876502037, 0.034522105008363724, -0.005609511863440275, 0.013107569888234138, 0.006434925366193056, -0.020179715007543564, -0.025105783715844154, -0.019585417583584785, 0.03576352819800377, 0.016851646825671196, -0.0030210143886506557, -0.01119261048734188, -0.025211436673998833, 0.00041373862768523395, -0.016257349401712418, -0.0017779412446543574, 0.006530673708766699, 0.022411633282899857, -0.06471243500709534, -0.0236530564725399, 0.0016367954667657614, -0.041151829063892365, -0.0009030026267282665, -0.020998526364564896, -0.012962297536432743, 0.06238807365298271, 0.04152161255478859, -0.04186498373746872, -0.010789808817207813, 0.04395163059234619, -0.04458554834127426, 0.005929772276431322, -0.0045100608840584755, 0.019506176933646202, 0.0005460112006403506, 0.0031250163447111845, 0.01534609217196703, -0.028764018788933754, 0.003172890515998006, -0.0010581804672256112, -0.043291300535202026, 0.011469949036836624, 0.02146075665950775, 0.008280551061034203, -0.0008997009717859328, 0.014606521464884281, -0.009350286796689034, 0.044374242424964905, 0.03132610395550728, -0.03341274708509445, -0.021487170830368996, -0.00465863524004817, -0.004311961587518454, -0.003843126352876425, -0.011859544552862644, -0.01698371395468712, 0.03272600471973419, 0.01148975919932127, 0.036318205296993256, 0.0024201131891459227, 0.005411412566900253, 0.02180412970483303, -0.015610224567353725, 0.008386204019188881, 0.018568508327007294, 0.006207111291587353, -0.00044118365622125566, -0.008485252968966961, -0.03283165767788887, -0.034231558442115784, 0.04521946609020233, -0.02614910714328289, -0.005484048742800951, 0.003512960858643055, 0.008260740898549557, 0.03618614003062248, -0.0326995924115181, 0.03917083516716957, 0.004681746941059828, -0.0178025234490633, 0.024036047980189323, 0.016112076118588448, -0.037876587361097336, -0.04263097047805786, -0.0067254710011184216, -0.004100655671209097, -0.014131083153188229, 0.01094828825443983, 0.0039322711527347565, 0.013972603715956211, -0.012678354978561401, 0.008696558885276318, 0.0056524332612752914, 0.030903490260243416, -0.02770748920738697, -0.05546780303120613, 0.02142113819718361, 0.015610224567353725, 0.0361068993806839, 0.025409536436200142, 0.0043713911436498165, -0.0032554317731410265, 0.017591217532753944, -0.01290286798030138, -0.007290054112672806, 0.023256856948137283, -0.027892380952835083, -0.02176450937986374, 0.01794779673218727, -0.012645338661968708, 0.04506098851561546, -0.018225135281682014, 0.018766606226563454, 0.00890126172453165, 0.02674340456724167, -0.0023441750090569258, 0.02473599836230278, -0.017644044011831284, 0.03840485215187073, -0.0019116582116112113, -0.009277650155127048, -0.04025377705693245, -0.031114796176552773, -0.04912862554192543, -0.05800347402691841, 0.012618925422430038, 0.015993217006325722, 0.009904964827001095, 0.020523088052868843, 0.017842143774032593, 0.012130280025303364, 0.0032653368543833494, 0.0209853183478117, -0.0055302721448242664, -0.0292658694088459, -0.007996608503162861, 0.01600642316043377, -0.009581402875483036, -0.018225135281682014, -0.02571328915655613, -0.011172800324857235, -0.04360825940966606, -0.01825154945254326, -0.0036714402958750725, 0.011701065115630627, 0.0016887965612113476, 0.013081156648695469, -0.023256856948137283, 0.034812651574611664, -0.009218220598995686, -0.03961985930800438, -0.052905719727277756, 0.016970505937933922, -0.0018192118732258677, 0.017776111140847206, -0.0016235888469964266, -0.0009360191761516035, -0.02444545365869999, -0.013133983127772808, -0.018462855368852615, 0.026373619213700294, -0.012817024253308773, -0.016970505937933922, 0.020113682374358177, -0.026069868355989456, 0.04614393040537834, -0.009786105714738369, 0.011377503164112568, -0.022081468254327774, 0.024141700938344002, -0.03156382218003273, 0.003413911210373044, -0.008630526252090931, 0.02312479168176651, 0.00912577472627163, 0.030031854286789894, 0.010182304307818413, 0.05974674969911575, -0.0209853183478117, 0.02274180017411709, 0.0006421718862839043, 0.0059759956784546375, -0.013041537255048752, 0.0006343304412439466, -0.03528808802366257, 0.009594609029591084, 0.028024448081851006, -0.018713779747486115, -0.013721678406000137, -0.03391459956765175, -0.002089947694912553, -0.003205907065421343, -0.022715386003255844, 0.032567523419857025, -0.00843903049826622, -0.03137892857193947, -0.005404809024184942, -0.01859492063522339, -0.003344576572999358, 0.004107258748263121, 0.03174871578812599, 0.026716992259025574, 0.020840046927332878, 0.02702074497938156, 0.031590234488248825, -0.027918795123696327, -0.005368491169065237, -0.04257814213633537, 0.0212230384349823, 0.03145816922187805, 0.015768704935908318, -0.025435950607061386, 0.03523526340723038, 0.029635654762387276, -0.01039361022412777, -0.006368892267346382, 0.003621915588155389, 0.007375897374004126, 0.025884974747896194, 0.013893363997340202, 0.017842143774032593, 0.011014320887625217, 0.04672501981258392, 0.01722143217921257, 0.01693088747560978, 0.022847453132271767, 0.02053629420697689, 0.015385712496936321, 0.031537409871816635, -0.026954710483551025, -0.04648730158805847, -0.014883860945701599, -0.032514698803424835, 0.005933073814958334, 0.020747600123286247, 0.04009529948234558, -0.024168115109205246, 0.033254269510507584, -0.012995313853025436, -0.03814071789383888, -0.00308539648540318, -0.004615713842213154, -0.00046553334686905146, 0.012916074134409428, -0.0001657018146943301, 0.0021939496509730816, 0.015332886017858982, -0.0059099625796079636, -0.011866147629916668, 0.009039930999279022, 0.06238807365298271, 0.004777494817972183, 0.02404925413429737, 0.0011110069463029504, 0.0234153363853693, 0.015887564048171043, 0.02151358313858509, 0.027337703853845596, 0.021038144826889038, -0.017089366912841797, 0.037401147186756134, 0.004595903679728508, 0.005853834096342325, -0.025383124127984047, 0.007342880591750145, 0.0346277579665184, -0.013008520938456059, 0.02111738547682762, -0.003565787337720394, -0.0029186629690229893, 0.03206567466259003, -0.02234560064971447, 0.04223477095365524, -0.004222816787660122, 0.058954350650310516, 0.03357122838497162, -0.008062641136348248, 0.019743897020816803, -0.0042492300271987915, 0.020377814769744873, 0.002365635707974434, -0.032805245369672775, 0.008069245144724846, 0.01302833016961813, -0.013682058081030846, 0.010789808817207813, 0.002964886138215661, -0.014038637280464172, 0.006623120047152042, 0.007996608503162861, -0.013721678406000137, -0.00997760146856308, 0.008716369047760963, -0.0006900458829477429, -0.016574308276176453, -0.011668048799037933, -0.004067638888955116, -0.030084680765867233, 0.010776601731777191, 0.02839423343539238, 0.008742782287299633, -0.021341897547245026, 0.015161199495196342, 0.01356319896876812, -0.04289510101079941, -0.026769818738102913, -0.010736982338130474, 0.0026413239538669586, 0.011390709318220615, -0.0209853183478117, 0.002154329791665077, -0.013483959250152111, -0.008135277777910233, 0.011727478355169296, -0.007342880591750145, 0.014646141789853573, -0.01336509920656681, 0.002529067685827613, -0.008174898102879524, -0.012222726829349995, -0.0068080127239227295, 0.05869022011756897, -0.011384106241166592, -0.021870162338018417, -0.0022071562707424164, 0.004064337350428104, -0.005678846500813961, -0.00323892361484468, 0.010486056096851826, -0.00038134114583954215, 0.02770748920738697, -0.0018769908929243684, 0.014976306818425655, 0.012216123752295971, 0.0072570377960801125, -0.044400654733181, 0.029794134199619293, 0.024749206379055977, 0.004691651556640863, -0.005606210324913263, 0.030507292598485947, -0.019968409091234207, -0.022279568016529083, -0.009673848748207092, 6.500133167719468e-05, -0.021434344351291656, 0.017379911616444588, 0.007151384837925434, 0.004189800005406141, 0.0027222144417464733, -0.01551777869462967, 0.010822825133800507, 0.000711506640072912, 0.008135277777910233, -0.02225315384566784, 0.03182795271277428, -0.010202113538980484, 0.02249087393283844, -0.030612945556640625, -0.04228759557008743, -0.015768704935908318, 0.016772408038377762, -0.002497701905667782, -0.0071183680556714535, -0.020377814769744873, -0.0071910046972334385, -0.008181501179933548, -0.005668941419571638, 0.08283191919326782, -0.005044928751885891, 0.0038200148846954107, 0.015240439213812351, 0.017644044011831284, -0.005701958201825619, -0.014553694985806942, 0.010552089661359787, -0.02765466272830963, 0.010756791569292545, 0.00479400297626853, 0.012632131576538086, 0.009601213037967682, -0.015610224567353725, -0.013814124278724194, -0.03811430558562279, -0.03473341092467308, -0.025211436673998833, 0.009667245671153069, -0.019545797258615494, 0.010869048535823822, -0.02908097766339779, 0.007824921980500221, -0.032329805195331573, 0.0224380474537611, 0.0007011889829300344, 0.010836031287908554, -0.006590103264898062, -0.014593315310776234, 0.036608751863241196, 0.016759200021624565, -0.003413911210373044, -0.02062874101102352, -0.003357783192768693, 0.04286868870258331, -0.005302458070218563, -0.019294871017336845, -0.005583098623901606, 0.013655644841492176, -0.00958800595253706, -0.01854209415614605, -0.018383614718914032, 0.011040734127163887, -0.009257840923964977, -0.004714763257652521, 0.01999482326209545, 0.017261052504181862, -0.01209726370871067, 0.05089831352233887, -0.03148458153009415, 0.01843644119799137, -0.0008080800762400031, -0.018515681847929955, -0.036027658730745316, 0.012169900350272655, 4.286992771085352e-05, 0.0448760949075222, 0.02687547169625759, 0.03248828649520874, 0.018462855368852615, -0.011714272201061249, 0.0031151114962995052, 0.012222726829349995, 0.02189657650887966, 0.021922988817095757, 0.02268897369503975, 0.01936090551316738, -0.031537409871816635, 0.01465934794396162, -0.019889170303940773, -0.045642077922821045, 0.01102752797305584, 0.036661576479673386, 0.02663775160908699, 0.020126888528466225, -0.01224253699183464, 0.003479944309219718, 0.0035955023486167192, 0.014395215548574924, -0.020668359473347664, 0.03248828649520874, -0.041389547288417816, -0.009152187965810299, -0.012473652139306068, -0.03491830453276634, 0.03436362370848656, 0.003985097631812096, 0.005985900294035673, 0.03557863458991051, -0.022015435621142387, 0.019572211429476738, -0.01649506762623787, -0.01751197874546051, -0.03259393945336342, -0.009970998391509056, 0.005734974518418312, -0.004265738185495138, -0.03576352819800377, 0.016481861472129822, -0.016178108751773834, 0.03082425147294998, -0.04136313498020172, -0.0463288240134716, -0.012453842908143997, -0.023256856948137283, -0.015306472778320312, 0.015042340382933617, -0.024709586054086685, 0.011951991356909275, 0.013959397561848164, -0.024181321263313293, -0.026994330808520317, 0.01863454096019268, 0.011529379524290562, -0.01678561419248581, -0.049392759799957275, 0.0060915532521903515, 0.006887252442538738, 0.0037044568452984095, 0.0404914952814579, 0.021738097071647644, -0.006246731150895357, 0.011417122557759285, 0.01251327246427536, -0.0036681387573480606, 0.030665772035717964, 0.009152187965810299, 0.02146075665950775, 0.012070850469172001, -0.028473472222685814, 0.014315975829958916, 0.008353186771273613, 0.017089366912841797, -0.008003211580216885, 0.01843644119799137, -0.043978042900562286, 0.032620351761579514, 0.007263640873134136, 0.0010920224012807012, -0.0015393965877592564, 0.028499886393547058, -0.0006743630510754883, 0.0029698386788368225, 0.013523578643798828, 0.015161199495196342, 0.025501983240246773, -0.005705259740352631, -0.015927184373140335, -0.021553203463554382, 0.03132610395550728, -0.006131173111498356, 0.022411633282899857, -0.00968045275658369, 0.063391774892807, -0.014672555029392242, -0.005249631591141224, 0.0178025234490633, 0.023587023839354515, 0.056365855038166046, -0.03436362370848656, -0.03214491158723831, -0.009607816115021706, 0.005490652285516262, 0.005381697788834572, 0.010598312132060528, -0.04957764968276024, 0.0002507194294594228, -0.01687806099653244, -0.003575692418962717, -0.0009888457134366035, -0.03143175691366196, -0.035737112164497375, 0.002657832344993949, -0.01922883838415146, 0.017432738095521927, -0.02268897369503975, 0.017974209040403366, 0.02068156749010086, -0.0280508603900671, -0.022649353370070457, 0.007699459325522184, 0.04101976007223129, -0.0020074062049388885, -0.004189800005406141, -0.012361396104097366, -0.01970427669584751, -0.007593806367367506, -0.02444545365869999, 0.024511486291885376, 0.006368892267346382, -0.00768625270575285, -0.023005932569503784, -0.000706141465343535, -0.011410519480705261, -0.0067419796250760555, -0.021487170830368996, 0.013840537518262863, 0.017300672829151154, 0.0109747014939785, 0.016719581559300423, -6.4001806094893254e-06, 0.00020005965780001134, 0.02258332073688507, 0.012480256147682667, 0.0036846469156444073, -0.01907035894691944, 0.0001367091463180259, -0.012163297273218632, 0.00459920521825552, 0.011311469599604607, 0.019400523975491524, -0.009350286796689034, 0.016970505937933922, 0.008300360292196274, -0.008987104520201683, -0.0022583319805562496, -0.0043713911436498165, -0.03814071789383888, -0.033307094126939774, -0.013906571082770824, -0.05158505588769913, -0.00656038848683238, 0.04667219519615173, 0.027311289682984352, -0.05216614902019501, -0.024815239012241364, 0.005728371441364288, 0.00047873996663838625, -0.013034934177994728, 0.021500376984477043, -0.012632131576538086, -0.03634461760520935, 0.00995118822902441, 0.011086957529187202, -0.029477175325155258, 0.0003248003195039928, 0.010380403138697147, -0.02989978715777397, -0.023151203989982605, 0.016798820346593857, -0.010320973582565784, -0.03333351016044617, 0.006183999590575695, -0.004615713842213154, -0.0001146293361671269, -0.026994330808520317, 0.0012604068033397198, -0.03341274708509445, -0.045351531356573105, 0.004150180146098137, -0.03092990443110466, -0.018845846876502037, 0.004496854264289141, 0.0008307789103128016, 0.04170650616288185, -0.03135251626372337, 0.02517181821167469, -0.00919841043651104, 0.023824742063879967, -0.05338115617632866, -0.005870342720299959, -0.02649248018860817, 0.017445944249629974, 0.015121580101549625, 0.015332886017858982, 0.013853744603693485, 0.0068014091812074184, 0.0036681387573480606, -0.022504080086946487, 0.019453350454568863, -0.010525676421821117, -0.010710569098591805, 0.016904473304748535, -0.0011110069463029504, 0.00929085724055767, -0.013292462565004826, 0.014817827381193638, -0.007990005426108837, 0.012235932983458042, 0.0023590323980897665, 0.03391459956765175, -0.022187121212482452, -0.02815651334822178, 0.00904653500765562, 0.02575290948152542, -0.017406325787305832, -0.01465934794396162, 0.02776031568646431, 0.029001737013459206, 0.018502473831176758, -0.009079551324248314, 0.0018604826182126999, -0.011866147629916668, 0.008135277777910233, 0.025409536436200142, 0.01034078374505043, -0.0053916024044156075, 0.012830231338739395, 0.015689464285969734, 0.006854235660284758, -0.01236799918115139, 0.008458839729428291, -0.009271047078073025, 0.017089366912841797, -0.009000311605632305, 0.023877568542957306, 0.005309061147272587, 0.024907685816287994, 0.012592512182891369, -0.00790416169911623, 0.0005670592654496431, 0.025198230519890785, -0.0030787931755185127, -0.004447329323738813, 0.01936090551316738, -0.005371792707592249, 0.02902815118432045, -0.02453790046274662, -0.004344977904111147, 0.013160396367311478, -0.001739972154609859, -0.009178601205348969, 0.015940390527248383, 0.008003211580216885, 0.05499236658215523, -0.021447550505399704, -0.016230935230851173, 0.005550081841647625, -0.012777404859662056, 0.015636637806892395, -0.004860036075115204, -0.027601836249232292, 0.001322312862612307, 0.009898361749947071, 0.02511899173259735, 0.0015253645833581686, -0.006860839203000069, -0.018515681847929955, 0.027601836249232292, 0.012982107698917389, -0.038510505110025406, 0.01810627616941929, -0.01971748284995556, 0.013074553571641445, 0.011866147629916668, 0.028182927519083023, 0.05097755417227745, 0.007455137092620134, -0.03872181102633476, -0.011588809080421925, 0.002963235368952155, 0.016429034993052483, -0.014844240620732307, 0.035499393939971924, -0.011067147366702557, 0.00832017045468092, 0.01634979620575905, 0.014065050520002842, 0.017485564574599266, -0.021645650267601013, 0.03185436874628067, 0.007408913690596819, 0.01654789410531521, -0.009304063394665718, 0.013629231601953506, -0.019836343824863434, -0.018027035519480705, 0.008762592449784279, -0.004259135108441114, 0.0160988699644804, -0.02752259559929371, -0.03468058258295059, -0.0060255201533436775, -0.015742290765047073, 0.014210322871804237, -0.008353186771273613, -0.019545797258615494, -0.02897532470524311, -0.02019292116165161, 0.04112541303038597, 0.03969909995794296, -0.01716860570013523, 0.013351893052458763, -0.04418934881687164, -0.0011985007440671325, 0.026901884004473686, -0.007990005426108837, 0.0086569394916296, 0.02995261363685131], [0.03716227039694786, 0.03459513932466507, 0.00335866236127913, -0.00671732472255826, -0.009889564476907253, 0.007689167279750109, -0.0150849474593997, -0.015341660939157009, -0.005363469012081623, 0.009180547669529915, -0.019155682995915413, -0.007744177244603634, 0.01792101562023163, 0.015879536047577858, -0.05100032687187195, 0.015366110019385815, 0.003208913141861558, 0.01715087704360485, -0.010494673624634743, -0.007884757593274117, 0.0007315558032132685, 0.03554864600300789, -0.0464528389275074, -0.005360412877053022, -0.04388570785522461, -0.012713408097624779, 0.005947185680270195, -0.02305527776479721, 0.04831095039844513, 0.003713170997798443, 0.07060831040143967, -0.01745648682117462, 0.014571521431207657, -0.026282526552677155, 0.012884550727903843, 0.03329934924840927, -0.021380530670285225, -0.02765166200697422, 0.016258493065834045, -0.0042327092960476875, -0.052027177065610886, -0.028800759464502335, -0.023018604144454002, -0.016820816323161125, -0.0012041064910590649, 0.049337804317474365, 0.007603595964610577, 0.019656885415315628, -0.02144165150821209, 0.06195341795682907, 0.035230811685323715, 0.019718008115887642, -0.013031243346631527, 0.013838055543601513, -0.019155682995915413, -0.012261103838682175, -0.002417381154373288, 0.03823801875114441, -0.025255674496293068, 0.007273536641150713, 0.021722814068198204, -0.007090169936418533, -0.015048274770379066, 0.02487671747803688, -0.006423938553780317, -0.02222401648759842, -0.021331632509827614, 0.03711337223649025, -5.2001581934746355e-05, 0.004510815255343914, 0.0306099746376276, 0.013104589655995369, 0.010720825754106045, -0.03195466101169586, -0.023556478321552277, 0.020867103710770607, 0.034839630126953125, -0.020867103710770607, 0.013459098525345325, 0.010812508873641491, -0.017480935901403427, -0.011545974761247635, -0.002991929417476058, 0.024106577038764954, -0.06591413170099258, 0.03229694813489914, -0.06190451979637146, 0.010036258026957512, -0.025769101455807686, -0.06547405570745468, -0.06586523354053497, 0.006362816318869591, -0.00701071135699749, 0.026282526552677155, -0.008416520431637764, -0.021588345989584923, 0.023776518180966377, -0.026795953512191772, -0.04706405848264694, 0.062491290271282196, 0.00712073128670454, 0.012908998876810074, -0.02972981706261635, 0.022688543424010277, 0.018006587401032448, -0.02999875321984291, -0.06112215667963028, 0.002362371189519763, -0.018874522298574448, -0.0112831499427557, 0.04466807097196579, -0.01940017193555832, 0.00139205704908818, 0.10434774309396744, -0.03183241933584213, 0.011295374482870102, -0.02196730300784111, 0.03615986555814743, 0.022370709106326103, 0.006155000999569893, -0.036575496196746826, 0.004715574439615011, 0.006430050823837519, -0.0568680539727211, 0.010720825754106045, -0.00310958968475461, 0.020634839311242104, -0.024448862299323082, -0.0007288816850632429, -0.02296970598399639, 0.0451325997710228, -0.07975218445062637, 0.05681915581226349, -0.039215974509716034, 0.010286858305335045, 0.012554490938782692, 0.020732635632157326, -0.010586357675492764, -0.017114203423261642, 0.003054579719901085, 0.036795537918806076, -0.019815802574157715, 0.037480104714632034, 0.012823428027331829, -0.024338841438293457, -0.010488561354577541, 0.01693083718419075, 0.034179508686065674, 0.0034442334435880184, 0.012016615830361843, 0.018031036481261253, -0.029852060601115227, 0.025891344994306564, -0.006405601743608713, 0.03655104711651802, -0.022945256903767586, 0.019950270652770996, 0.04574381932616234, 0.0069190277718007565, -0.019730230793356895, -0.046379491686820984, 0.009211109019815922, -0.028189538046717644, -0.03278592228889465, 0.053983088582754135, -0.030854463577270508, 0.008532652631402016, -0.025108981877565384, -0.0059716347604990005, -0.006503397133201361, -0.05955742672085762, -0.015867311507463455, -7.831276161596179e-05, -0.03667329251766205, -0.02938753180205822, -0.017786547541618347, 0.04466807097196579, 0.015109396539628506, -0.018825624138116837, 0.02431439235806465, -0.009180547669529915, 0.01649075746536255, -0.038213569670915604, -0.016551880165934563, 0.003853751812130213, 0.0061855618841946125, -0.009510607458651066, -0.017126427963376045, -0.05285843834280968, -0.008929946459829807, 0.005549891851842403, 0.01844666711986065, -0.025622406974434853, 0.04476586729288101, -0.0190945602953434, -0.031270094215869904, -0.023128623142838478, -0.030096549540758133, -0.01168044377118349, -0.024717800319194794, 0.002738272538408637, -0.029411980882287025, -0.018593359738588333, 0.012615612708032131, -0.06532736122608185, 0.02043924853205681, -0.0034320089034736156, 0.007854197174310684, 0.03955825790762901, -0.00726131210103631, -0.00011546356836333871, -0.016808591783046722, 0.002434189897030592, 0.024338841438293457, -0.009082752279937267, 0.018263299018144608, 0.04901996999979019, -0.0416608601808548, 0.014840459451079369, 0.034961871802806854, -0.006454499438405037, -0.011527638882398605, -0.017994362860918045, -0.005794380325824022, -0.027578316628932953, -0.019522415474057198, -0.01902121491730213, -0.029020799323916435, 0.0058860634453594685, 0.029143042862415314, -0.03677108883857727, 0.017285345122218132, -0.051293712109327316, -0.048555441200733185, 0.05500993877649307, 0.04075625166296959, -0.022627422586083412, -0.03129454329609871, -0.01858113519847393, 0.03051218017935753, 0.010274634696543217, 0.015745067968964577, -0.049068864434957504, -0.0018351926701143384, 0.02860516868531704, -0.007389668375253677, -0.015390558168292046, -0.02395988442003727, 0.03425285592675209, -0.0005096059758216143, -0.004950894508510828, -0.06024199724197388, 0.03351939097046852, -0.050853632390499115, 0.016441859304904938, -0.02479114569723606, 0.046428389847278595, -0.022823013365268707, 0.008936058729887009, 0.0028727413155138493, 0.009082752279937267, 0.04701516032218933, -0.0221384447067976, -0.02439996413886547, -0.03178352117538452, -0.0037192830350250006, 0.018996765837073326, 0.0026114440988749266, -0.024509984999895096, 0.017334243282675743, 0.0030362431425601244, 0.03173462301492691, 0.007988665252923965, -0.04640394076704979, -0.03190576657652855, -0.0031477909069508314, 0.041954245418310165, -0.03491297364234924, -0.006103047169744968, 0.07354217767715454, -0.041734207421541214, -0.020720411092042923, -0.004660564474761486, -0.07275981456041336, -0.01519496738910675, 0.016136249527335167, 0.011014211922883987, 0.015207191929221153, -0.031245645135641098, 0.011099783703684807, 0.030976708978414536, -0.012365011498332024, -0.02353202924132347, -0.024326616898179054, 0.03491297364234924, -0.024082129821181297, -0.028507372364401817, 0.03716227039694786, -0.0577482134103775, -0.025157878175377846, -0.0464528389275074, 0.048506543040275574, 0.025720203295350075, -0.018776725977659225, -0.02943642996251583, 0.005510162096470594, 0.03782238811254501, 0.042736612260341644, -0.04349452629685402, 0.024167699739336967, 0.0017618461279198527, -0.013630240224301815, 0.015696169808506966, -0.09285677969455719, -0.034008368849754333, 0.03765124827623367, -0.011979942210018635, 0.021563896909356117, 0.017260896041989326, -0.03706447407603264, 0.053591907024383545, -0.001650298130698502, 0.07735619693994522, -0.07833415269851685, 0.010225736536085606, -0.04158751294016838, 0.03425285592675209, 0.04650173708796501, -0.044081296771764755, 0.005216775927692652, -0.041220780462026596, 0.026844849810004234, 0.028018396347761154, -0.009388362988829613, -0.003184464294463396, -0.05217387154698372, 0.0651317685842514, 0.01519496738910675, -0.034399550408124924, -0.015182742848992348, 0.03980274870991707, -0.03268812969326973, 0.014168115332722664, 0.05139150843024254, -0.047601934522390366, 0.03312820941209793, 0.0007556226337328553, 0.021343857049942017, 0.037529002875089645, 0.04574381932616234, -0.027969498187303543, 0.021979527547955513, -0.05559671297669411, -0.0542764738202095, -0.013349078595638275, -0.028971901163458824, 0.03897148743271828, -0.006527846213430166, 0.032541435211896896, 0.01944907009601593, 0.017590956762433052, -0.0022248465102165937, 0.04449692741036415, 0.05173379182815552, 0.008746580220758915, 0.00485004298388958, -0.0057363142259418964, -0.036404356360435486, 0.010647479444742203, -0.017248671501874924, 0.03799353167414665, -0.021686140447854996, 0.036966677755117416, -0.025671305134892464, 0.001200286322273314, -0.0001275925023946911, -0.02557350881397724, -0.017872117459774017, 0.046379491686820984, -0.005372637417167425, 0.0429810993373394, 0.010928641073405743, 0.026991544291377068, 0.02977871336042881, 0.021038245409727097, 0.030805565416812897, -0.035230811685323715, -0.007676942739635706, 0.013165712356567383, -0.021246060729026794, -0.004079903941601515, -0.012334451079368591, 0.0011116592213511467, 0.02244405448436737, -0.0442768894135952, 0.010256297886371613, 0.03237029165029526, 0.03745565563440323, -0.006103047169744968, -0.006014420185238123, -0.01135038398206234, -0.0223584845662117, 0.0029735928401350975, 0.028507372364401817, 0.040829598903656006, 0.0013255866942927241, 0.03677108883857727, 0.02092822641134262, 0.018691154196858406, -0.051978278905153275, -0.027529418468475342, 0.01343464944511652, 0.013190161436796188, 0.02972981706261635, 0.009571729227900505, -0.025377918034791946, 0.04496145620942116, -0.013838055543601513, -0.003383111208677292, -0.020500371232628822, 0.05232056602835655, 0.005054802168160677, -0.018397768959403038, -0.048115361481904984, -0.03530415520071983, -0.009803993627429008, 0.00045115791726857424, -0.1050323098897934, -0.01052523497492075, -0.06982594728469849, -0.0416608601808548, 0.008245378732681274, 0.01636851392686367, -0.004843930713832378, -0.01447372604161501, -0.04131857678294182, -0.06434940546751022, -0.029118593782186508, -0.048946622759103775, -0.049337804317474365, -0.016527431085705757, -0.04378791153430939, 0.03975385054945946, 0.048115361481904984, -0.004342729225754738, -0.03745565563440323, -0.02674705535173416, 0.04914221167564392, 0.03163682669401169, -0.005449040327221155, 0.0050395214930176735, -0.02916749194264412, -0.01572061888873577, 0.026991544291377068, 0.017260896041989326, -0.006283357739448547, 0.03659994527697563, -0.05608569085597992, 0.0442768894135952, 0.004574993159621954, 0.04545043408870697, 0.05461875721812248, 0.003303652396425605, -0.008141471073031425, 0.0018642257200554013, 0.009950687177479267, 0.0351574644446373, -0.011148680932819843, 0.009217221289873123, -0.060486484318971634, -0.010152390226721764, -0.0633714497089386, -0.014168115332722664, 0.0035359165631234646, 0.04501035436987877, -0.0023929323069751263, 0.0013263507280498743, -0.012517817318439484, 0.020634839311242104, -0.05104922503232956, -0.012591163627803326, 0.07041272521018982, -0.038091327995061874, -0.04307889565825462, 0.01658855378627777, 0.024448862299323082, 0.03347049281001091, 0.03958270698785782, -0.04327448457479477, -0.009803993627429008, -0.06449609994888306, -0.02760276570916176, 0.007762513589113951, -0.012273328378796577, 0.005757707171142101, -0.023079724982380867, -0.012921223416924477, -0.008911610580980778, 0.049337804317474365, 0.011050885543227196, 0.06664759665727615, -0.004547488410025835, -0.011380945332348347, -0.027920600026845932, 0.028531821444630623, 0.022211791947484016, 0.01706530526280403, 0.014608195051550865, -0.022334035485982895, -0.02596469223499298, 0.023544253781437874, -0.051587097346782684, 0.014424828812479973, 0.006857906002551317, -0.006491173058748245, -0.06361594051122665, 0.024950062856078148, 0.030707770958542824, -0.031098952516913414, 0.0025778268463909626, 0.035573095083236694, 0.019803578034043312, -0.0058585586957633495, 0.025451265275478363, -0.03051218017935753, -0.014180339872837067, -0.006912915501743555, -0.07329768687486649, -0.006839569192379713, -0.0416853092610836, 0.020023617893457413, 0.0117232296615839, -0.0577482134103775, 0.03432620316743851, 0.010360205546021461, -0.005339020397514105, -0.034399550408124924, 0.019290152937173843, 0.0007869477267377079, -0.014070319943130016, 0.03051218017935753, 0.02843402698636055, -0.010195175185799599, 0.014559296891093254, -0.01168044377118349, -0.01380138285458088, 0.017432037740945816, 0.02535347081720829, -0.017786547541618347, -0.018605584278702736, 0.01836109533905983, -0.014070319943130016, -0.007823635824024677, -0.009626739658415318, 0.015353885479271412, -0.0017267009243369102, 0.0007281176513060927, -0.03146568685770035, -0.006802896037697792, 0.0038812567945569754, 0.0024769753217697144, -0.0193146001547575, -0.00477364007383585, 0.005724089685827494, -0.004779752343893051, 0.008361510932445526, -0.005531555041670799, 0.0065522948279976845, 0.007860309444367886, -0.010305195115506649, -0.01727312058210373, -0.03990054130554199, 0.02153944782912731, -0.06288247555494308, -0.013666913844645023, 0.006662314757704735, 0.01796991378068924, -0.020414799451828003, 0.002279856475070119, 0.024363290518522263, 0.003862920217216015, 0.00452609546482563, 0.010097379796206951, -0.0036153753753751516, -0.02287190966308117, 0.009253893978893757, -0.017297569662332535, -0.014265910722315311, -0.024730022996664047, -0.06405601650476456, -0.005131205078214407, -0.038873691111803055, 0.011649882420897484, -0.012957897037267685, 0.0003846875624731183, 0.045572679489851, -0.014962703920900822, -0.012921223416924477, -0.04197869449853897, 0.03498632088303566, -0.018299972638487816, -0.02404545620083809, -0.02691819705069065, 0.0030988932121545076, -0.020219208672642708, 0.01046411320567131, 0.006066374015063047, -0.0034747945610433817, -0.03699112683534622, 0.0117232296615839, -0.004278550855815411, 0.0013599679805338383, -0.009816218167543411, -0.034448444843292236, -0.015940658748149872, 0.01601400412619114, -0.01293344795703888, -0.01979135349392891, -0.01337352767586708, -0.008826038800179958, 0.01491380576044321, 0.01139928214251995, 0.0017786547541618347, -0.032834820449352264, -0.04713740572333336, -0.0011475684586912394, 0.021551672369241714, -0.019119009375572205, -0.0018764501437544823, -0.0006945005152374506, -0.006216123234480619, -0.0195346400141716, -0.0013011378468945622, 0.0042602140456438065, -0.01315348781645298, 0.038922589272260666, 0.0034992434084415436, 0.0036520487628877163, -0.007218526676297188, 0.030194343999028206, 0.05148930475115776, -0.016600776463747025, 0.05256505310535431, -0.039607156068086624, 0.016258493065834045, 0.009027741849422455, -0.027529418468475342, 0.018458891659975052, 0.010537459515035152, 0.012566715478897095, 0.015476129949092865, 0.03704002499580383, -0.02669815719127655, 0.013691362924873829, -0.0017389253480359912, -0.009217221289873123, -0.023287540301680565, -0.014375930652022362, -0.007860309444367886, 0.00045612407848238945, -0.0034289530012756586, -0.0030438832473009825, 4.7966565034585074e-05, -0.0036520487628877163, -0.01413144264370203, 0.008752692490816116, 0.055156633257865906, -0.025549061596393585, -0.0018153280252590775, -0.019546864554286003, 0.003208913141861558, -0.0234464593231678, 0.006087766494601965, -0.0573081336915493, -0.018727827817201614, -0.0002427695580990985, -0.0028437082655727863, -0.00126675667706877, -0.032101355493068695, 0.04813981056213379, 0.003975996281951666, -0.016258493065834045, -0.03281037136912346, 0.006662314757704735, -0.005776043515652418, -0.012774530798196793, -0.018678929656744003, -0.0057363142259418964, -0.02382541634142399, 0.03828691691160202, -0.0033494941890239716, 0.025671305134892464, 0.007218526676297188, 0.0077747381292283535, 0.0099873598664999, 0.015586149878799915, 0.017285345122218132, 0.006066374015063047, -0.023580927401781082, -0.009993472136557102, -0.010195175185799599, 0.024461086839437485, -0.029143042862415314, -0.035181913524866104, -0.020940450951457024, -0.014339257963001728, 0.013361303135752678, -0.043641217052936554, 0.055450018495321274, 0.016001779586076736, -0.007890869863331318, -0.012664510868489742, -0.015659496188163757, -0.020524820312857628, -0.040218379348516464, -0.0060083079151809216, 0.032761476933956146, -0.01070248894393444, 0.023947659879922867, -0.014926030300557613, -0.030414383858442307, 0.015182742848992348, -0.03241918981075287, -0.012908998876810074, 0.022810788825154305, -0.01796991378068924, -0.02921639010310173, -0.01649075746536255, -0.028360679745674133, -0.012297777459025383, 0.020084740594029427, -0.007132955361157656, 0.031710173934698105, 0.017835445702075958, -0.02431439235806465, -0.01892341859638691, -0.00517704663798213, -0.003679553745314479, 0.015586149878799915, -0.04349452629685402, 0.0381891205906868, -0.01146040391176939, -0.003334213513880968, -0.021686140447854996, 0.005840221885591745, 0.0033861673437058926, -0.0416853092610836, 0.05173379182815552, -0.03371497988700867, -0.009382250718772411, -0.020121414214372635, 0.008673233911395073, -0.012163308449089527, -0.017260896041989326, -0.002049120143055916, -0.018483338877558708, 0.002266103867441416, 0.05608569085597992, 0.009131649509072304, -0.026600362733006477, -0.015207191929221153, -0.0005986150936223567, -0.025011185556650162, 0.019828027114272118, 0.014229238033294678, -0.03919152542948723, -0.002976648975163698, 0.02530457265675068, -0.03180797025561333, -0.006368928588926792, -0.034228406846523285, 0.002917054807767272, 0.00959617830812931, 0.004761415999382734, -0.004296887665987015, 0.003367830766364932, -0.017480935901403427, -0.0011674331035465002, 0.00430911174044013, -0.023336438462138176, -0.0010031673591583967, -0.00894217099994421, 0.003150847041979432, 0.047944217920303345, 0.02370317094027996, -0.051587097346782684, -0.003914874047040939, 0.030487731099128723, -0.02053704485297203, -0.01640518568456173, -0.016160698607563972, -0.017126427963376045, -0.0007655550143681467, -0.031001156195998192, -0.03459513932466507, 0.004434412345290184, 0.022908583283424377, -0.042125388979911804, -0.011301486752927303, 0.026795953512191772, 0.0030866689048707485, -0.00275049707852304, -0.02391098625957966, -0.012371123768389225, 0.03156347945332527, 0.03765124827623367, -0.007328546606004238, 0.015525027178227901, -0.012206094339489937, -0.002053704345598817, 0.017615405842661858, -0.0009023158345371485, 0.03823801875114441, 0.0872335359454155, -0.017529834061861038, 0.02972981706261635, -0.05574340373277664, -0.007463015150278807, 0.020695962011814117, 0.008098685182631016, 0.010763611644506454, 0.04031617194414139, 0.006760110147297382, 0.002072041155770421, 0.005598789546638727, 0.007206302136182785, -0.017395365983247757, 0.026111384853720665, 0.005097587592899799, -0.01057413313537836, -0.013312404975295067, 0.015818413347005844, 0.008447081781923771, 0.014180339872837067, -0.0057363142259418964, 0.005549891851842403, -0.02028033137321472, 0.046257246285676956, 0.0360376238822937, 0.019559089094400406, 0.040731802582740784, -0.011472628451883793, 0.01452262420207262, -0.03593982756137848, -0.011931044980883598, 0.036135416477918625, -0.021209387108683586, -0.010580245405435562, -0.018825624138116837, 0.03919152542948723, -0.01905788853764534, -0.0011345800012350082, 0.03633100911974907, -0.016466308385133743, 0.00952894426882267, -0.0017969913315027952, 0.032150253653526306, 0.010659703984856606, -0.0007197133963927627, -0.025402367115020752, 0.023238644003868103, 0.044301338493824005, -0.022285137325525284, -0.008734355680644512, -0.014999376609921455, -0.04735744744539261, 0.008887161500751972, -0.012273328378796577, -0.022908583283424377, -0.02726048044860363, 0.04826205223798752, -0.01880117505788803, 0.06273578107357025, -0.02865406684577465, -0.04921555891633034, -0.012896774336695671, 0.0068823546171188354, 0.027676111087203026, 0.0399249903857708, 0.02353202924132347, -0.002142331562936306, 0.040658459067344666, 0.048506543040275574, -0.016258493065834045, 0.025769101455807686, -0.030072100460529327, -0.03239474073052406, 0.0364777036011219, 0.013422424905002117, -0.003551197238266468, 0.007334658410400152, -0.00586161483079195, -0.008062012493610382, -0.012554490938782692, 0.011014211922883987, 0.013691362924873829, -0.005562115926295519, -0.008758804760873318, 0.0001263509620912373, 0.014816010370850563, -0.03312820941209793, -0.0008014642517082393, -0.005164822097867727, -0.01239557284861803, -0.0447169691324234, -0.0033953357487916946, -0.010036258026957512, 0.007640269584953785, -0.001138400170020759, 0.004214372485876083, 0.03293261677026749, 0.03498632088303566, -0.00740189291536808, -0.04835984855890274, 0.006057205609977245, 0.00931501667946577, -0.021209387108683586, -0.00039156380807980895, -0.00556822819635272, -0.01831219717860222, 0.01528053916990757, -0.008043675683438778, -0.0005596497212536633, -0.00970008596777916, 0.013177936896681786, -0.038531407713890076, 0.0006035812548361719, 0.021551672369241714, 0.029411980882287025, -0.020427023991942406, -0.025549061596393585, 0.05388529226183891, -0.014620419591665268, 0.016735246405005455, 0.03867809846997261, -0.01254226639866829, 0.0020567604806274176, 0.013080141507089138, -0.0023745957296341658, 0.007951992563903332, 0.018422218039631844, -0.027236031368374825, -0.0019941104110330343, -0.0022844404447823763, 0.017529834061861038, -0.013141263276338577, -0.023544253781437874, 0.008557101711630821, 0.008795478381216526, -0.0018443610752001405, -0.0021988695953041315, -0.027407174929976463, -0.005122036673128605, -0.011215915903449059, 0.015072723850607872, -0.014852683991193771, 0.027187135070562363, 0.004098240286111832, 0.013031243346631527, 0.021649466827511787, 0.014180339872837067, 0.016918612644076347, 0.01601400412619114, -0.013715812005102634, 0.03337269648909569, 0.02443663775920868, 0.024937838315963745, -0.009510607458651066, -0.006558407098054886, 0.013239058665931225, 0.011558199301362038, -0.04963118955492973, 0.013838055543601513, 0.01157042384147644, -0.02855627052485943, 0.0201825350522995, 0.003153903177008033, -0.0236664991825819, -0.01949796825647354, -5.042577686253935e-05, -0.015549476258456707, 0.04075625166296959, 0.0208304300904274, 0.003114173887297511, -0.005024241283535957, 0.05056024715304375, -0.002672566333785653, -0.029094146564602852, -0.00859377533197403, 0.02713823691010475, -0.01914345845580101, 0.027969498187303543, 0.008948283270001411, 0.007872533984482288, 0.012725632637739182, 0.022602973505854607, 0.015537251718342304, 0.05618348345160484, 0.018092157319188118, 0.012083849869668484, 0.010360205546021461, -0.0038354152347892523, -0.011362608522176743, 0.0001263509620912373, 0.0022110939025878906, -0.010182950645685196, 0.033617183566093445, 0.00915609858930111, -0.0015830638585612178, -0.01863003335893154, 0.0057363142259418964, -0.015341660939157009, 0.006595080718398094, 0.03112340159714222, -0.001867281855084002, -0.05652577057480812, -0.004715574439615011, 0.014180339872837067, -0.0210504699498415, 0.011607097461819649, -0.015317211858928204, -0.0031263981945812702, 0.016392961144447327, -0.023409785702824593, 0.026380322873592377, 0.009663412347435951, 0.005531555041670799, 0.03354384005069733, 0.007707503624260426, 0.050902530550956726, 0.027529418468475342, 0.010873631574213505, 0.0034900750033557415, 0.0108552947640419, 0.0325658842921257, 0.007132955361157656, 0.028800759464502335, -0.05227166786789894, -0.023189745843410492, 0.03796908259391785, -0.015268314629793167, -0.02395988442003727, -0.007242975290864706, 0.008905498310923576, -0.01966910995543003, -0.0010505369864404202, -0.013874729163944721, -0.009046078659594059, -0.0008809230639599264, 0.005629350431263447, -0.012475031428039074, 0.02726048044860363, -0.01182713732123375, 0.04354342445731163, 0.033666081726551056, -0.012468919157981873, -0.01183324959129095, 0.0028727413155138493, -0.002053704345598817, -0.030267691239714622, 0.008624335750937462, -0.0075485859997570515, 1.5746118151582778e-05, -0.020854879170656204, 0.026844849810004234, -0.031221196055412292, -0.05833498388528824, 0.0010520650539547205, -0.018507787957787514, -0.03354384005069733, -0.015573925338685513, -0.03158792853355408, 0.05004682019352913, 0.01304346788674593, 0.013507996685802937, -0.016955286264419556, -0.04131857678294182, -0.012970121577382088, -0.021380530670285225, -0.023715395480394363, 0.013850280083715916, 0.0030026258900761604, 0.004614722914993763, -0.00696792546659708, 0.013715812005102634, -0.0225785244256258, 0.0006570631521753967, 0.042858853936195374, 0.0004587981675285846, 0.019119009375572205, -0.025842446833848953, 0.00040913643897511065, 0.009223333559930325, 0.017224222421646118, 0.019852476194500923, 0.03755345195531845, 0.008465418592095375, -0.01880117505788803, 0.02669815719127655, -0.007297985255718231, 0.024803370237350464, -0.002600747626274824, -0.011222027242183685, -0.029509777203202248, 0.004694181494414806, -0.008783253841102123, -0.004394683055579662, 0.0023577872198075056, 0.012346675619482994, 0.0013630239991471171, 0.030878912657499313, 0.013666913844645023, 0.007621932774782181, -0.0010390765964984894, -0.02183283306658268, 0.016209594905376434, -0.009327241219580173, 0.0018260243814438581, 0.0004939434002153575, -0.0009978191228583455, -0.0219184048473835, -0.002122466918081045, 0.013740260154008865, 0.01174156554043293, -0.00866100937128067, -0.0008778669289313257, -0.012945672497153282, 0.014265910722315311, 0.046868469566106796, -0.04919110983610153, -0.014070319943130016, -0.003609263338148594, -0.019950270652770996, -0.010843070223927498, 0.021282734349370003, 0.0005118980770930648, 0.041171882301568985, -0.0230063796043396, -0.004009613301604986, 0.014009198173880577, 0.03584203124046326, 0.005464320536702871, -0.008948283270001411, 0.011686556041240692, -0.05530332401394844, 0.005873838905245066, -0.012774530798196793, 0.0664031058549881, 0.0074446783401072025, -0.03432620316743851, -0.009577841497957706, -0.005293178837746382, -0.0059624663554131985, 0.00985289178788662, 0.018727827817201614, -0.008929946459829807, 0.010616918094456196, -0.010189062915742397, 0.043127793818712234, 0.006527846213430166, -0.003893481334671378, 0.015243865549564362, -0.015402782708406448, 0.010011808946728706, 0.010684153065085411, 0.0019604931585490704, 0.0002250059333164245, 0.017810996621847153, -0.04300554841756821, 0.006961813662201166, -0.01584286242723465, 0.010390765964984894, -0.006540070753544569, -0.009473933838307858, -0.006955701392143965, -0.02916749194264412, -0.016331840306520462, -0.008233154192566872, 0.011772126890718937, -0.01211441121995449, -0.013972524553537369, 0.04782197251915932, -0.018251076340675354, -0.022456279024481773, 0.030414383858442307, 0.0025396256241947412, 0.027382725849747658, -0.04188090190291405, -0.018177729099988937, -0.007316322065889835, 0.01623404398560524, 0.014400379732251167, 0.013361303135752678, -0.03911817818880081, -0.021502774208784103, 0.0399249903857708, -0.001200286322273314, 0.025426816195249557, -0.015732843428850174, 0.009192772209644318, -0.009180547669529915, 0.00805590022355318, -0.014510399661958218, 0.011191466823220253, -0.01814105547964573, -0.011533750221133232, 0.017529834061861038, -0.013813607394695282, -0.00963896419852972, 0.019070113077759743, -0.008563213981688023, -0.012688959017395973, 0.011704892851412296, 0.01276230625808239, 0.0012476559495553374, 0.01249948050826788, -0.04170975834131241, 0.007322434335947037, -0.010549684055149555, -0.007310209795832634, 0.016943061724305153, 0.01276230625808239, 0.04058511182665825, -0.03329934924840927, 0.016955286264419556, 0.021478325128555298, -0.019045663997530937, 0.0027275760658085346, -0.0106352549046278, 0.03183241933584213, 0.014644868671894073, 0.014314808882772923, -0.007383556105196476, -0.002313473494723439, -0.010946977883577347, 0.03161237761378288, -0.003621487645432353, 0.02205287292599678, 0.0007021407363936305, 0.0034228407312184572, -0.04131857678294182, -0.010726938024163246, -0.002133163157850504, -0.001983413938432932, -0.020854879170656204, 0.021417202427983284, -0.019216805696487427, -0.012126635760068893, 0.0013943491503596306, -0.021942853927612305, 0.02270076796412468, -0.01822662726044655, -0.0003077118599321693, -0.034179508686065674, 0.02048814669251442, -0.0009428092162124813, 0.00370094645768404, 0.014730439521372318, 0.0017236447893083096, 0.008972732350230217, 0.019681334495544434, -0.00115826481487602, -0.013715812005102634, 0.014339257963001728, -0.026967095211148262, -0.03158792853355408, 0.008544877171516418, 0.03520636260509491, -0.003734563710168004, 0.027382725849747658, 0.012737857177853584, -0.0019849420059472322, -0.009608402848243713, -0.016649674624204636, -0.007823635824024677, 0.0041868677362799644, -0.015818413347005844, -0.0104152150452137, -0.013813607394695282, -0.00499367993324995, 0.019131233915686607, 0.002096490003168583, -0.048555441200733185, 0.005354300606995821, 0.02443663775920868, 0.040047235786914825, -0.011619322001934052, 0.025646856054663658, 0.021942853927612305, 0.0017480936367064714, -0.018556686118245125, 0.007518025115132332, 0.026331424713134766, -0.027749458327889442, -0.0030652759596705437, 0.00017897330690175295, 0.03972940146923065, -0.020561492070555687, 0.033226002007722855, -0.040365070104599, 0.015573925338685513, 0.014498175121843815, 0.047553036361932755, -0.001596816349774599, 0.010360205546021461, 0.046599529683589935, 0.009828442707657814, -0.003309764666482806, -0.01402142271399498, 0.04058511182665825, -0.007029047701507807, 0.010005696676671505, 0.002029255498200655, -0.009681749157607555, 0.005577396601438522, -0.015231641009449959, -0.02218734286725521, -0.020219208672642708, -0.040829598903656006, -0.008838263340294361, -0.010494673624634743, -0.020365901291370392, -0.0061855618841946125, 0.02014586143195629, 0.0668431892991066, -0.049068864434957504, -0.0416853092610836, 0.005507105961441994, 0.0030026258900761604, 0.012908998876810074, -0.0023990445770323277, -0.014180339872837067, -0.038213569670915604, 0.0024280776269733906, -0.027749458327889442, 0.01705308072268963, -0.009669524617493153, -0.014571521431207657, 0.0020445361733436584, 0.0071085067465901375, -0.04571937024593353, 0.016527431085705757, -0.015317211858928204, -0.019938046112656593, 0.05100032687187195, 0.04227208346128464, -0.015635047107934952, -0.06175782531499863, 0.016160698607563972, -0.009284455329179764, 0.0048530991189181805, 0.012475031428039074, -0.04708850756287575, 0.009785656817257404, -0.02244405448436737, 0.0004213608626741916, 0.004795033019036055, -0.0007590607856400311, 0.01801881194114685, -0.0007032867870293558, -0.0015517387073487043, 0.03919152542948723, -0.022419607266783714, -0.009382250718772411, 0.017175326123833656, 0.006344479508697987, -0.019155682995915413, -0.027749458327889442, -0.004721686244010925, 0.012578939087688923, 0.002276800340041518, -0.013104589655995369, -0.020903777331113815, 0.01113034412264824, 0.013960300013422966, 0.035353053361177444, -0.00848986767232418, 0.04249212145805359, -0.0005776043399237096, -0.016551880165934563, 0.0025976914912462234, 0.03955825790762901, -0.008135358802974224, 0.004067679401487112, 0.00542459124699235, -0.012199982069432735, 0.0018565854988992214, 0.030145447701215744, -0.0033067085314542055, -0.021588345989584923, 0.003908761776983738, -0.008697682991623878, 0.009712310507893562, -0.011992166750133038, 0.022859685122966766, 0.00804978795349598, -0.017554283142089844, -0.020390350371599197, -0.020475922152400017, -0.013459098525345325, -0.006711212452501059, 0.029314186424016953, -0.025402367115020752, 0.0002064782747766003, -0.0015311100287362933, 0.024815594777464867, -0.037137821316719055, -0.03508411720395088, -0.045254845172166824, 0.031245645135641098, 0.02726048044860363, -0.04432578757405281, 0.03163682669401169, 0.006460611708462238, 0.018128830939531326, -0.01918013207614422, -0.0007521845400333405, 0.009565616957843304, -0.024302169680595398, -0.02395988442003727, -0.005571284331381321, -0.02252962626516819, -0.01419256441295147, 0.004663620609790087, -0.02669815719127655, 0.016857489943504333, 0.010164614766836166, -0.024277720600366592, -0.021294958889484406, -0.015965105965733528, -0.002672566333785653, 0.026013588532805443, -0.004086016211658716, 0.00837984774261713, 0.018507787957787514, 0.009492270648479462, -0.01792101562023163, 0.016869714483618736, 0.008783253841102123, 0.0225785244256258, -0.0006838041008450091, 0.01818995364010334, 0.015683945268392563, 0.013483547605574131, 0.008074237033724785, -0.007242975290864706, -0.03185686841607094, -0.009003293700516224, -0.02547571435570717, 0.006213067099452019, 0.031318992376327515, -0.00395154720172286, -0.01645408384501934, 0.01293344795703888, 0.013984749093651772, 0.021893955767154694, 0.010769723914563656, -0.013251283206045628, -0.031025605276226997, 0.004957006778568029, -0.017896566540002823, 0.01589176058769226, -0.0008809230639599264, -0.014657093212008476, -0.013446873985230923, 0.012713408097624779, 0.04545043408870697, 0.0033067085314542055, 0.013630240224301815, 0.012921223416924477, 0.002866629045456648, 0.04879992827773094, -0.016551880165934563, 0.025597957894206047, 0.0009901789017021656, -0.05173379182815552, 0.02613583393394947, -0.0016258492833003402, -0.009883452206850052, 0.009302792139351368, -0.028360679745674133, -0.03012099862098694, 0.0028528766706585884, -0.012627837248146534, 0.02669815719127655, 0.004620834719389677, -0.00848986767232418, -0.028238436207175255, -0.00965730007737875, -0.011228139512240887, 0.011332047171890736, -0.004706406034529209, -0.020695962011814117, 0.024253271520137787, -0.004199092276394367, -0.036795537918806076, 0.012291665188968182, 0.0538363941013813, 0.027969498187303543, -0.006564519368112087, -0.011778239160776138, 0.01992582343518734, -0.005611013621091843, 0.011423731222748756, -0.03117229975759983, 0.024534432217478752, -0.0351574644446373, 0.014485950581729412, 0.02894745208323002, 0.024901166558265686, 0.013703587464988232, 0.018544461578130722, -0.042858853936195374, 0.0060816542245447636, -0.016050677746534348, -0.007383556105196476, 0.008495979942381382, -0.02070818655192852, -0.018422218039631844, -0.013459098525345325, -0.01584286242723465, -0.008392072282731533, -0.022541850805282593, -0.017554283142089844, -0.0077380649745464325, -0.03329934924840927, 0.015635047107934952, 0.00463305925950408, -0.06283357739448547, -0.01636851392686367, -0.05261395126581192, 0.005855502560734749, -0.037577901035547256, -0.013459098525345325, -0.012725632637739182, 0.018764501437544823], [0.042518943548202515, -0.029822316020727158, -0.025836164131760597, 0.025097988545894623, -0.014296011067926884, 0.039147939532995224, -0.011564759537577629, -0.001707032322883606, -0.006618979386985302, -0.03417755663394928, 0.0028958034235984087, -0.02231752499938011, -0.006495949812233448, -0.03848358243703842, 0.02559010684490204, 0.05428055301308632, -0.0007904635858722031, 0.016116846352815628, -0.011103399097919464, 0.015981514006853104, 0.06574688851833344, 0.011251034215092659, 0.06756772100925446, -0.008507479913532734, -0.003915409091860056, 0.012124543078243732, -0.0046043735928833485, -0.035580091178417206, 0.012112240307033062, -0.01705186814069748, 0.04057508334517479, -0.017753135412931442, 0.025688529014587402, -0.05634744465351105, -0.022735824808478355, 0.03572772443294525, 0.04266658052802086, -0.024876534938812256, -0.018786583095788956, 0.011939998716115952, -0.02898571640253067, -0.0445612333714962, 0.006459041032940149, -0.0302406158298254, -0.01493576355278492, 0.021567046642303467, -0.012333692982792854, 0.013791590929031372, 0.034005314111709595, 0.027804633602499962, 0.03181539103388786, 0.01279505342245102, 0.018712764605879784, 0.06737087666988373, -0.005031900480389595, -0.00016311001672875136, 0.007861576043069363, 0.02319103293120861, 0.017568591982126236, 0.01280735619366169, 0.01798689179122448, -0.011669334024190903, 0.039812300354242325, -0.01523103378713131, -0.02106262557208538, -0.0005647816578857601, -0.005616290029138327, 0.04234670475125313, -0.018540523946285248, 0.01797458902001381, 0.011490941978991032, -0.013324079103767872, 0.024827323853969574, 0.019008034840226173, 0.000329872447764501, 0.024655083194375038, 0.033439379185438156, -0.02682039886713028, 0.004825826268643141, 0.018454402685165405, -0.0749494805932045, 0.02595919370651245, -0.040132176131010056, 0.008464419282972813, -0.008365996181964874, -0.005130324047058821, -0.03132327273488045, -0.016264481469988823, -0.026426706463098526, 0.0009265648550353944, -0.07165229320526123, -0.050589669495821, -0.013028808869421482, 0.03690880537033081, -0.04328172653913498, 0.009116475470364094, 0.007104945369064808, -0.0055486238561570644, 0.018097618594765663, 0.035530876368284225, 0.01886039972305298, 0.005173384211957455, -0.008445965126156807, 0.0008558229310438037, -0.003755470970645547, 0.003635517554357648, 0.01865125074982643, 0.01162012293934822, -0.05551084503531456, 0.04788302630186081, 0.010752765461802483, -0.006471344269812107, -0.001012685359455645, 0.03395610302686691, 0.007240277715027332, -0.004259891342371702, -0.0222806166857481, 0.010537464171648026, -0.011816970072686672, -0.007240277715027332, 0.030609704554080963, 0.030609704554080963, 0.02133329026401043, -0.0006359079852700233, 0.04734169691801071, -0.04758775606751442, 0.03437440097332001, -0.020902687683701515, 0.016006119549274445, -0.03717947006225586, 0.04493032023310661, -0.03383307158946991, 0.045324016362428665, -0.019401729106903076, -0.010598978959023952, 0.03351319581270218, -0.00495500722900033, -0.008015362545847893, -0.01892191544175148, -0.027656998485326767, 0.07214441150426865, -0.008636660873889923, 0.048990290611982346, 0.035580091178417206, 0.015452487394213676, -0.015563213266432285, 1.845440419856459e-05, -0.025159502401947975, -0.013607046566903591, 0.0408211387693882, 0.06653427332639694, -0.019955361261963844, -0.006778917275369167, 0.04416753724217415, 0.008612055331468582, -0.0164613276720047, -0.01588308997452259, 0.05054045841097832, -0.034275978803634644, -0.03321792557835579, 0.02861662767827511, -0.011466335505247116, 0.0037831526715308428, -0.05026979371905327, -0.00901805143803358, -0.010272950865328312, -0.03631826490163803, -0.038877274841070175, -0.07288259267807007, 0.005785455461591482, -0.029822316020727158, -0.05546163395047188, 0.017248716205358505, -0.029157957062125206, -0.06436895579099655, -0.0365397185087204, 0.027017246931791306, 0.0026697369758039713, -0.05285341292619705, 0.006735857110470533, 0.04844896122813225, 0.024655083194375038, -0.040156781673431396, -0.025110291317105293, -0.032184477895498276, 0.03161854296922684, -0.030117586255073547, 0.04635746031999588, -0.041657738387584686, -0.014382131397724152, 0.003564775688573718, -0.015292548574507236, -0.017753135412931442, 0.011343306861817837, 0.013028808869421482, -0.013742378912866116, 0.0014471327885985374, 0.023670848459005356, 0.006136089097708464, 0.008033816702663898, -0.000489426136482507, 0.013976134359836578, 0.03685959428548813, 0.013041111640632153, -0.035284820944070816, -0.006071498617529869, -0.00017906537686940283, 0.014505160972476006, 0.033144108951091766, -0.02497495897114277, 0.015058793127536774, -0.031028004363179207, 0.030339039862155914, 0.014603584073483944, 0.004269118420779705, 0.01328717079013586, 0.009817742742598057, -0.029084140434861183, 0.03560469672083855, -0.03698262572288513, -0.040427446365356445, -0.02566392347216606, -0.014025346376001835, 0.02349860779941082, -0.002671274822205305, 0.06230206415057182, -0.029723891988396645, -0.012979596853256226, 0.03267659619450569, -0.018196042627096176, -0.024864232167601585, -0.04692339524626732, -0.02226831391453743, -0.007929242216050625, -0.01678120344877243, -0.01310262642800808, 0.0210134144872427, 0.004389072302728891, 0.029748497530817986, -0.026279069483280182, -0.01649823598563671, 0.05516636371612549, -0.02317873015999794, -0.006618979386985302, -0.004143013618886471, -0.020373661071062088, 0.0038415915332734585, 0.025196412578225136, 0.02105032280087471, 0.0030711202416568995, -0.03046206757426262, -0.018171435222029686, -0.005253353621810675, -0.016338298097252846, -0.0069511584006249905, 0.00810148287564516, -0.004419829696416855, 0.008169149048626423, 0.03363622725009918, -0.0016316768014803529, -0.05585532635450363, 0.004632055293768644, -0.002678964287042618, -0.04121483489871025, -0.05147548392415047, -0.04970385879278183, 0.017162594944238663, 0.02679579332470894, -0.010119164362549782, -0.009737773798406124, -0.014898855239152908, 0.020213723182678223, 0.024778112769126892, -0.020816566422581673, -0.011878483928740025, 0.007424821611493826, 0.0004878882900811732, -0.011232580058276653, -0.05639665573835373, 0.08203597366809845, 0.0028958034235984087, -0.016325995326042175, -0.011755455285310745, -0.05098336562514305, -0.058119066059589386, 0.019733909517526627, 0.0066312821581959724, 0.04601297900080681, 0.04940858855843544, -0.040747322142124176, 0.013754681684076786, -0.016621265560388565, 0.009700864553451538, -0.01830676756799221, -0.011804666370153427, -0.01954936422407627, -0.0036939564161002636, -0.005745470989495516, -0.015784665942192078, 0.0029788482934236526, 0.035530876368284225, 0.026697369292378426, 0.004195300862193108, -0.07357155531644821, 0.030929580330848694, 0.037031836807727814, -0.023695454001426697, -0.014529766514897346, -0.010100710205733776, 0.001061897142790258, 0.03115103207528591, -0.02620525285601616, 0.025836164131760597, -0.021173352375626564, 0.004678191151469946, 0.026377493515610695, -0.021899225190281868, -0.01587078720331192, 0.012770446948707104, -0.056249022483825684, 0.05462503433227539, 0.006975764408707619, 0.019635485485196114, -0.07721322029829025, -0.011355609633028507, -0.04308488219976425, -0.012296783737838268, 0.04306027293205261, 0.02196074090898037, 0.007498639170080423, -0.037991464138031006, -0.011564759537577629, 0.038237523287534714, -0.06028438359498978, -0.006434435490518808, -0.018146829679608345, 0.01712568663060665, 0.01915566995739937, -0.055904537439346313, 0.036761172115802765, 0.020029179751873016, -0.02437211573123932, 0.02042287215590477, 0.017777742817997932, 0.01649823598563671, 0.006754311732947826, 0.01651053875684738, -0.01952475868165493, 0.0018439025152474642, 0.013274867087602615, -0.02346169762313366, 0.028444387018680573, -0.021763892844319344, -0.058463551104068756, 0.0012026119511574507, -0.03132327273488045, 0.035530876368284225, -0.024790415540337563, 0.00022318294213619083, 0.014578978531062603, -0.00793539360165596, 0.027312517166137695, -0.015329457819461823, 0.05162311717867851, -0.001900803530588746, 0.008728932589292526, 0.01081428024917841, 0.018983429297804832, -0.05073730647563934, 0.03567851334810257, 0.06505792587995529, -0.031298667192459106, 0.021850014105439186, 0.0372040756046772, -0.0053825341165065765, 0.009085717611014843, 0.018429797142744064, 0.0028742733411490917, 0.03112642653286457, -0.03577693551778793, -0.024298297241330147, -0.00840290542691946, 0.009368685074150562, -0.032528962939977646, 0.0014678939478471875, -0.007769303862005472, -0.04502874240279198, 0.04119022935628891, -0.01644902490079403, -0.02711566910147667, 0.0165228433907032, -0.004182998090982437, 0.01115261111408472, -0.01038982905447483, -0.0041184076108038425, 0.022391343489289284, 0.03543245419859886, 0.038262128829956055, 0.028542811051011086, -0.024507448077201843, -0.017519380897283554, 0.030634310096502304, -0.028764262795448303, 0.04923634976148605, 0.030043767765164375, -0.017137989401817322, -0.001435598824173212, 0.0016424418427050114, 0.020213723182678223, -0.027952268719673157, 0.02714027650654316, 0.021271776407957077, 0.022711219266057014, 0.0444382019340992, 0.033390168100595474, -0.03080655075609684, 0.010611281730234623, 0.03641669079661369, -0.024568961933255196, 0.004712024237960577, -0.007590911351144314, -0.012038422748446465, -0.06978224962949753, -0.011976907961070538, -0.025467077270150185, 0.007775455247610807, -0.021530136466026306, -0.06131783127784729, 0.0013617811491712928, -0.06092413514852524, -0.0019069550326094031, 0.023732362315058708, 0.016978051513433456, 0.020582811906933784, -0.02534404769539833, -0.05949699506163597, -0.02527022920548916, -0.018232950940728188, -0.013631653040647507, -0.012905779294669628, 0.03147090971469879, 0.0026820399798452854, 0.06889644265174866, -0.007775455247610807, -0.001707032322883606, -0.086711086332798, -0.07312864810228348, 8.741812780499458e-05, 0.03621984273195267, -0.023658545687794685, 0.038532793521881104, 0.0182698592543602, 0.008888871408998966, -0.042838823050260544, -0.009374836459755898, 0.03562930226325989, 0.032209087163209915, -0.07061885297298431, 0.02073044702410698, 0.0028127585537731647, 0.02864123322069645, 0.009116475470364094, 0.006711251568049192, -0.0018500539008527994, 0.019684696570038795, -0.012038422748446465, 0.02474120259284973, 0.02925638109445572, 0.015538607724010944, -0.0610225610435009, 0.037646982818841934, 0.005708562210202217, -0.06038280948996544, -0.011810817755758762, 0.0009104172349907458, 0.0329226553440094, 0.024052239954471588, 0.020201420411467552, -0.02590998262166977, -0.026771187782287598, -0.02593458816409111, -0.005496336612850428, -0.06614058464765549, -0.03843437135219574, 0.05428055301308632, 0.09040196985006332, 0.02864123322069645, 0.04357699677348137, -0.07514633238315582, -0.03336556255817413, 0.0060868775472044945, -0.02038596384227276, 0.027607787400484085, -0.012272178195416927, -0.008501328527927399, 0.013348684646189213, -0.01651053875684738, -0.009011900052428246, 0.030043767765164375, -0.013201049529016018, 0.027066458016633987, -0.0022991111036390066, 0.0002812374150380492, 0.0773608610033989, 0.025786953046917915, -0.0030972640961408615, -0.011060339398682117, 0.023916907608509064, 0.003497109515592456, -0.03176617994904518, 0.037400923669338226, -0.03469427675008774, -0.01952475868165493, -0.013422503136098385, -0.01918027736246586, -0.03361162170767784, -0.022797340527176857, 0.03941860422492027, -0.005161081440746784, -0.004961158614605665, 0.01492346078157425, 0.031224850565195084, 0.011933847330510616, -0.034915730357170105, 0.0018300616648048162, -0.01386540848761797, 0.03641669079661369, -0.0920751690864563, -0.04463504999876022, -0.01615375466644764, -0.004549010656774044, 0.00224836147390306, -0.061219409108161926, 0.00018790812464430928, 0.025097988545894623, 0.009762379340827465, -0.02871505171060562, 0.01584618166089058, -0.03228290379047394, 0.0037708496674895287, 0.02746015228331089, 0.03543245419859886, -0.0115770623087883, 0.028542811051011086, -0.019057247787714005, -0.04141168296337128, 0.02197304368019104, -0.0438968725502491, -0.025196412578225136, 0.029034927487373352, 0.0302406158298254, -0.030314432457089424, 0.0097685307264328, -0.04261736944317818, 0.003148013725876808, -0.026106828823685646, 0.01357013825327158, 0.0012425965396687388, 0.023867694661021233, 0.04945779964327812, 0.0002673966228030622, -0.015723152086138725, 0.010623584501445293, -0.010180679149925709, -0.03681038320064545, 0.005419442895799875, 0.001590154366567731, 0.011638577096164227, -0.0475139357149601, 0.03395610302686691, -0.029969951137900352, -0.00624681543558836, 0.013336381874978542, 0.05157390609383583, 0.020066088065505028, 0.004115331918001175, -0.025737741962075233, -0.010605130344629288, -0.011331004090607166, 0.005379458423703909, 0.013643955811858177, -0.027853846549987793, -0.023560121655464172, 0.02352321334183216, -0.036170631647109985, -0.015710849314928055, 0.011675485409796238, -0.0342513732612133, -0.002414451213553548, -0.01619066298007965, -0.0366627462208271, 0.024273691698908806, -0.006265270058065653, -0.006723554339259863, -0.034645065665245056, 0.004219906870275736, 0.0572824664413929, 0.026131434366106987, -0.05314868316054344, 0.023375578224658966, -0.007104945369064808, -0.009965377859771252, 0.0014663561014458537, 0.039541635662317276, -0.01857743225991726, 0.011251034215092659, 0.0030019162222743034, -4.8611014790367335e-05, -0.01763010583817959, 0.016572054475545883, 0.0038815762382000685, -0.018466705456376076, 0.019352518022060394, -0.04825211316347122, -0.011417124420404434, -0.0024867309257388115, 0.02466738596558571, 0.008347542025148869, 0.008876567706465721, -0.013484016992151737, -0.010371374897658825, 0.0005670884274877608, 0.005213369149714708, 0.015735454857349396, 0.008107634261250496, 0.018392888829112053, -0.0222191009670496, -0.03993532806634903, -0.007295640651136637, -0.009233352728188038, 0.004752008710056543, -0.03781922534108162, 0.001993075478821993, -0.03233211487531662, -0.032824233174324036, 0.0231541246175766, -0.00882735662162304, 0.03348859027028084, 0.01582157425582409, 0.01283196173608303, 0.030609704554080963, -0.02563931792974472, -0.000798152934294194, -0.0487196259200573, -0.023363275453448296, 0.019032642245292664, -0.020312147215008736, 0.014099163934588432, -0.009885408915579319, 0.005302565172314644, 0.03361162170767784, 0.020853476598858833, 0.003574002766981721, 0.008532085455954075, -0.005976150743663311, 0.004991916008293629, -0.005216444842517376, -0.006489798426628113, 0.015329457819461823, -0.012438267469406128, -0.0035924571566283703, -0.017765438184142113, 0.02563931792974472, -0.016596660017967224, -0.009510168805718422, -0.021284079179167747, 0.020939595997333527, -0.05186917632818222, 0.009141081012785435, 0.026426706463098526, 0.04141168296337128, 0.04237131029367447, 0.037327107042074203, 0.006360617466270924, -0.032750412821769714, 0.020312147215008736, 0.007277186494320631, 0.0073325494304299355, -0.010420585982501507, 0.007707789074629545, 0.013028808869421482, -0.03629365935921669, -0.046824973076581955, -0.013816196471452713, 0.007191065698862076, -0.018220648169517517, 0.009153383783996105, -0.0019377123098820448, 0.0029373259749263525, 0.02076735533773899, -0.022391343489289284, 0.00025240241666324437, -0.02588537707924843, 0.013902316801249981, 0.012721234932541847, -0.05772537365555763, 0.040082965046167374, 7.160692621255293e-05, 0.014861945994198322, -0.07731164991855621, -0.04761236160993576, -0.004524404648691416, 0.004616676364094019, -0.025786953046917915, -0.022969581186771393, -0.012782749719917774, -0.029723891988396645, 0.0005978457629680634, -0.024015329778194427, 0.03272580727934837, 0.0038200614508241415, -0.04217446222901344, -0.01540327537804842, 0.010414434596896172, -0.012561297044157982, 0.004173771012574434, 0.0005559389246627688, 0.013520926237106323, -0.013976134359836578, -0.04298645630478859, 0.006043816916644573, -0.02347400039434433, -0.026672763749957085, -0.0027497061528265476, 0.003031135769560933, -0.024544356390833855, 0.010199133306741714, 0.00571778928861022, -0.04675115644931793, 0.010568222030997276, 0.019943058490753174, -0.008433662354946136, 0.024261388927698135, -0.022366736084222794, -0.0115770623087883, -0.026426706463098526, -0.016067633405327797, -0.0016270632622763515, -0.015981514006853104, 0.0006120710168033838, 0.0022083770018070936, -0.03570311889052391, 0.03781922534108162, -0.0023467850405722857, 0.02165316604077816, -0.00868587289005518, -0.006858886685222387, 0.04736630246043205, -0.029650075361132622, -0.008618206717073917, -0.02437211573123932, 0.008236815221607685, -0.004287573043256998, -0.007492487784475088, 0.0077939098700881, -0.03375925496220589, 0.006071498617529869, -0.006114558782428503, -0.015673939138650894, -0.01894652098417282, -0.01771622709929943, -0.0025620863307267427, 0.008452116511762142, -0.026180647313594818, 0.011337155476212502, -0.005354852881282568, -0.05516636371612549, -0.013201049529016018, -0.0323813259601593, -0.0283705685287714, -0.011466335505247116, -0.030929580330848694, 0.018405191600322723, 0.006222209893167019, -0.009571683593094349, -0.0141852842643857, -0.007166460156440735, 0.004582843277603388, 0.009387140162289143, 0.016891930252313614, -0.010580524802207947, -0.0022452857811003923, 0.012438267469406128, -0.0006808905745856464, -0.001803917926736176, -0.045594681054353714, 0.0065451618283987045, 0.004595146514475346, 0.004798145033419132, -0.0428142175078392, -0.01620296575129032, -0.02130868472158909, 0.014025346376001835, 0.026451312005519867, 0.018405191600322723, 0.020238328725099564, -0.019266396760940552, -0.04903950169682503, 0.01644902490079403, -0.0002518257242627442, -0.038951095193624496, -0.029527045786380768, -0.024913445115089417, 0.0007966150878928602, -0.0012918082065880299, 0.010752765461802483, -0.019340215250849724, 0.03316871449351311, -0.00011726235243258998, -0.003490957897156477, 0.011164913885295391, -0.03016679733991623, 0.03206145018339157, 0.03754856064915657, -0.007800061255693436, 0.015083398669958115, -0.02748475782573223, -0.027558576315641403, 0.03845897689461708, -0.0366627462208271, 0.021136444061994553, 0.015550910495221615, 0.008390601724386215, -0.020558204501867294, 0.029157957062125206, -0.006379072088748217, 0.00549326092004776, 0.05339473858475685, 0.008095331490039825, -0.019733909517526627, -0.0020376737229526043, -0.015427880920469761, -0.002580540720373392, -0.00045059502008371055, 0.005671653430908918, -0.016375206410884857, 0.014726613648235798, 0.013607046566903591, 0.03789304196834564, 0.030314432457089424, 0.03181539103388786, 0.007757001090794802, -0.013422503136098385, 0.01925409398972988, 0.026968033984303474, -0.004549010656774044, -0.0056439717300236225, 0.01922948844730854, -0.011663182638585567, 0.013914620503783226, 0.0032510508317500353, -0.027681605890393257, -0.002678964287042618, -0.01510800514370203, 0.012216814793646336, -0.03262738510966301, 0.05118021368980408, 0.005456352140754461, 0.013053414411842823, -0.03821291774511337, 0.002365239430218935, 0.008913476951420307, -0.02834596298635006, -0.03749934583902359, -0.004933477379381657, -0.018528221175074577, 0.02076735533773899, 0.03191381320357323, 0.011681637726724148, -0.014800431206822395, 0.006360617466270924, 0.025467077270150185, -0.006600524764508009, -0.002171468222513795, -0.03442361205816269, 0.015932301059365273, 0.013533229008316994, 0.013766984455287457, 0.02962546795606613, 0.027853846549987793, 0.004727403167635202, 0.04616061598062515, 0.03806528449058533, 0.0029926891438663006, 0.027878452092409134, -0.009731622412800789, -0.024642780423164368, 0.02437211573123932, -0.008802750147879124, 0.019647788256406784, -0.015944603830575943, 0.00043329401523806155, 0.023289456963539124, 0.0173963513225317, 0.026180647313594818, -0.010328314267098904, 0.015477092936635017, 0.01541557814925909, 0.02410145103931427, 0.004346012137830257, -0.004939628764986992, 0.0008735083974897861, -0.059300150722265244, -0.02834596298635006, -0.01523103378713131, -0.013853105716407299, -0.019057247787714005, -0.023646242916584015, 0.012721234932541847, 0.005588608328253031, 0.02045978233218193, 0.004936553072184324, 0.043355543166399, -0.026033012196421623, 0.05127863585948944, 0.04000914469361305, -0.040132176131010056, -0.0006839663255959749, -0.017285624518990517, -0.040107570588588715, -0.02352321334183216, -0.03626905381679535, 0.009054960682988167, 0.03661353513598442, 0.015280245803296566, 0.018983429297804832, -0.016043027862906456, 0.06230206415057182, 0.05792222172021866, -0.006612828001379967, -0.014505160972476006, 0.020275237038731575, 0.007061885204166174, 0.0016901157796382904, -0.0014671250246465206, 0.034325189888477325, 0.03053588606417179, 0.007000370416790247, 0.00023567810421809554, -0.004527480341494083, 0.031864602118730545, -0.049285560846328735, -0.02074274979531765, 0.016252178698778152, -0.009153383783996105, -0.03572772443294525, -0.01956166699528694, -0.010512858629226685, -0.0005916943191550672, 0.0031310971826314926, 0.029650075361132622, -0.013496320694684982, 0.027927663177251816, 0.009657804854214191, 0.017236413434147835, 0.027607787400484085, 0.03909872844815254, -0.013053414411842823, 0.017753135412931442, 0.01341019943356514, 0.030880367383360863, 0.01359474379569292, -0.00885196216404438, -0.004475192632526159, -0.01915566995739937, -0.012918082065880299, 0.01915566995739937, 0.030339039862155914, 0.014665098860859871, -0.015169519931077957, -0.019918452948331833, -0.02256358414888382, 0.012770446948707104, 0.030904974788427353, -0.009221049956977367, -0.011552456766366959, -0.00754785118624568, 0.01711338385939598, 0.050786517560482025, -0.019955361261963844, 0.01191539317369461, 0.028887292370200157, 0.0026820399798452854, 0.00581006146967411, -0.021259471774101257, 0.008464419282972813, -0.023055700585246086, -0.0096024414524436, 0.019401729106903076, -0.011478639207780361, -0.013828499242663383, 0.03265199065208435, 0.009165686555206776, 0.06820747256278992, 0.0006889643846079707, -0.001221835264004767, 0.015058793127536774, 0.032528962939977646, 0.029108745977282524, 0.01892191544175148, -0.003909257706254721, 0.009989983402192593, 0.011638577096164227, 0.013557834550738335, 0.0018162208143621683, 0.00548403337597847, 0.013434805907309055, 0.003144937800243497, -0.023092610761523247, -0.037056442350149155, 0.052361294627189636, -0.04182998090982437, -0.008273724466562271, 0.005173384211957455, -0.00556400278583169, 0.012610509060323238, -0.0428142175078392, -0.006219133734703064, -0.03351319581270218, 0.017826953902840614, 0.010592827573418617, 0.0077323950827121735, 0.014751220121979713, 0.058168280869722366, -0.002323716878890991, 0.013914620503783226, 0.022748127579689026, 0.03201223909854889, -0.0060684229247272015, 0.030388250946998596, 5.4594274843111634e-05, -0.005616290029138327, 0.03897570073604584, -0.025085685774683952, -0.007941544987261295, 0.006114558782428503, -0.008169149048626423, -0.002169930376112461, 0.009805439971387386, 0.01038982905447483, -0.011164913885295391, -0.02349860779941082, 0.026451312005519867, -0.0019023413769900799, -0.027312517166137695, 0.005923863500356674, 0.023916907608509064, -0.0022299070842564106, 0.00173471390735358, 0.014984975568950176, 0.017753135412931442, 0.04916252940893173, -0.04185458645224571, 0.037056442350149155, 0.02410145103931427, 0.024482842534780502, 0.026008406654000282, 0.0022514371667057276, 0.05309946835041046, 0.012038422748446465, -0.004450587090104818, -0.006662039551883936, -0.005680880509316921, -0.008273724466562271, 0.020570509135723114, 0.021886922419071198, -0.006489798426628113, -0.03535863757133484, 0.007129551377147436, 0.01743325963616371, -0.009399442933499813, -0.04239591583609581, 0.010740462690591812, -0.011472487822175026, -0.04091956466436386, 0.0066497367806732655, -0.03321792557835579, -0.048695020377635956, 0.020853476598858833, -0.024642780423164368, 0.017322532832622528, -0.005917712114751339, -0.04116562381386757, -0.03833594545722008, -0.016645871102809906, 0.020226025953888893, 0.012856567278504372, 0.005127248354256153, 0.007437124382704496, 0.007455579005181789, 0.00961474422365427, -0.012462873943150043, -0.010580524802207947, -0.03233211487531662, 0.025196412578225136, 0.004244512878358364, 0.0051856874488294125, 0.006489798426628113, 0.03208605572581291, -0.0058685000985860825, 0.03139709308743477, -0.003220293438062072, 0.02287115715444088, -0.02193613350391388, -0.012321390211582184, -0.02869044616818428, 0.022465160116553307, 0.004044590052217245, -0.0028281372506171465, -0.02314182184636593, -0.023597029969096184, 0.01462819054722786, -0.03503876179456711, 0.015058793127536774, -0.0396154522895813, 0.03607220575213432, -0.013766984455287457, 0.0076893349178135395, -0.04384766146540642, -0.0216777715831995, -0.018232950940728188, -0.0034786551259458065, 0.024581264704465866, 0.01067279651761055, 0.0093010189011693, 0.011226428672671318, 0.004167619626969099, 0.03206145018339157, 0.029207168146967888, -0.01769162155687809, -0.03730250149965286, -0.003586305771023035, 0.007843121886253357, -0.003177233040332794, -0.005237974692136049, -0.006372920703142881, 0.041337862610816956, 0.01019298192113638, -0.036195237189531326, -0.009024202823638916, 0.03201223909854889, 0.009116475470364094, -0.002156089525669813, -0.037327107042074203, 0.005419442895799875, -0.008895022794604301, 0.015169519931077957, 0.09419127553701401, -0.002768160542473197, -0.0015655485913157463, 0.012229117564857006, 0.018995732069015503, 0.011355609633028507, -0.013680864125490189, -0.021456319838762283, -0.06367999315261841, 0.034620460122823715, -0.0329226553440094, -0.006296027451753616, 0.022981883957982063, -0.00014023424591869116, 0.013164141215384007, -0.02197304368019104, -0.018700461834669113, -0.011232580058276653, 0.0011041885009035468, -0.012610509060323238, 0.010869643650949001, -0.014911158010363579, 0.00312340771779418, 0.0003717793442774564, 0.008039968088269234, 0.02317873015999794, 0.0013625500723719597, -0.01738404855132103, 0.011214125901460648, 0.02864123322069645, -0.005440973211079836, 0.0023283306509256363, -0.035801541060209274, 0.029699286445975304, 0.006440586876124144, 0.011946150101721287, 0.027558576315641403, 0.005121096968650818, 0.006772765889763832, -0.008956536650657654, 0.016092238947749138, 0.011115701869130135, -0.014751220121979713, 0.001498651341535151, -0.029994556680321693, 0.03164314851164818, -0.017494773492217064, 6.415788811864331e-05, -0.005862348712980747, 0.026328282430768013, 0.026008406654000282, 0.005708562210202217, 0.027312517166137695, -0.002685115672647953, -0.01590769551694393, -0.00026605097809806466, 0.018811188638210297, 0.024790415540337563, -0.006489798426628113, 0.031593937426805496, -0.020988808944821358, 0.01051901001483202, -0.015206428244709969, -0.00527180777862668, 0.043355543166399, -0.013643955811858177, 0.022428251802921295, -0.0023698529694229364, 0.013766984455287457, -0.030683521181344986, -0.020250631496310234, 0.010125315748155117, -0.01738404855132103, 0.0009873105445876718, -0.009553229436278343, -0.007486336398869753, 0.025122594088315964, -0.0036816534120589495, 0.0069080982357263565, 0.013250261545181274, 0.019610879942774773, 0.0009450192446820438, -0.01130639761686325, 0.032504357397556305, -0.04795684292912483, -0.01983233168721199, 0.006077650003135204, -0.019340215250849724, -0.009651652537286282, -0.0007912325672805309, 0.004232209641486406, 0.04303566738963127, -0.0037093351129442453, 0.0025974572636187077, -0.021788498386740685, -0.02013990469276905, -0.012733538635075092, -0.012905779294669628, 0.0068650380708277225, -0.026475917547941208, 0.034325189888477325, -0.00943019986152649, -0.048670414835214615, 0.013914620503783226, 0.03474349156022072, -0.01510800514370203, 0.033980708569288254, -0.06781378388404846, 0.007283337879925966, 0.025688529014587402, -0.017014959827065468, -0.0002816218766383827, 0.045619286596775055, -0.0029388638213276863, -0.0013763909228146076, -0.015673939138650894, 0.01492346078157425, -0.017261018976569176, 0.008150694891810417, -0.005247202236205339, -0.023966118693351746, 0.004226058255881071, 0.018220648169517517, 0.03208605572581291, 0.03289804980158806, 0.016855021938681602, 0.006692796945571899, 0.00717261154204607, -0.02374466508626938, -0.029133351519703865, 0.0053487010300159454, 0.010445192456245422, -0.006834280677139759, -0.000499037851113826, 0.023867694661021233, -0.02689421735703945, -0.007584759965538979, 0.0027650848496705294, 0.04180537536740303, -0.03966466337442398, -0.007867727428674698, -0.013324079103767872, -0.015058793127536774, 0.015489395707845688, 0.011417124420404434, 0.0002593228127807379, -0.02778002806007862, 0.002525177551433444, -0.017740832641720772, 0.004930401220917702, -0.01022373978048563, 0.03813910111784935, -0.03813910111784935, 0.00992231722921133, -0.020656628534197807, 0.026451312005519867, 0.000888118171133101, 0.008199906907975674, 0.022083768621087074, -0.03631826490163803, -0.047390908002853394, -0.02718948759138584, 0.016239874064922333, -0.016313692554831505, -0.011337155476212502, -0.020927293226122856, -0.022797340527176857, -0.027312517166137695, -0.020029179751873016, -0.01283196173608303, -0.0017239488661289215, -0.021197957918047905, -0.022489765658974648, -0.02778002806007862, 0.0271648820489645, 0.00018002654542215168, -0.005631668958812952, 0.020902687683701515, -0.016855021938681602, -0.01651053875684738, -0.00148557941429317, 0.007424821611493826, 0.002726637991145253, 0.010888097807765007, -0.0271648820489645, -0.002926560817286372, -0.0033617771696299314, -0.024544356390833855, 0.03562930226325989, 0.004367541987448931, -0.024876534938812256, -0.04187919199466705, -0.021173352375626564, -0.02438441850244999, 0.018540523946285248, 0.006209906656295061, -0.02679579332470894, 0.019291002303361893, -0.020964201539754868, 0.003364852862432599, 0.001608608872629702, -0.01925409398972988, 0.04662812501192093, 0.030339039862155914, 0.0151203079149127, 0.009233352728188038, 0.015747757628560066, 0.007203368935734034, 0.0011111089261248708, 0.009786984883248806, 0.019475547596812248, -0.011404821649193764, -0.022120678797364235, 0.015329457819461823, 0.007941544987261295, -0.0016885779332369566, -0.006179149262607098, 0.004825826268643141, -0.04264197498559952, -0.016535146161913872, -0.04298645630478859, -0.018454402685165405, 0.01492346078157425, 0.009565532207489014, -0.0341283418238163, -0.017543986439704895, 0.019057247787714005, 0.007037279196083546, 0.0016885779332369566, 0.029650075361132622, 0.03932018205523491, 0.022760430350899696, -0.006234512664377689, 0.025737741962075233, 0.006123786326497793, -0.030117586255073547, 0.017519380897283554, -0.026475917547941208, -0.011177216656506062, 0.002740478841587901, 0.0023775422014296055, -0.022059163078665733, -0.035481665283441544, -0.03329174220561981, -0.023929210379719734, 0.018392888829112053, 0.04778460040688515, -0.02198534645140171, -0.0038538945373147726, -0.0021345592103898525, -0.021726984530687332, 0.011349458247423172, -0.0041184076108038425, 0.00473047886043787, 0.019352518022060394, -0.015993816778063774, 0.02650052309036255, 0.013336381874978542, 0.016030725091695786, -0.028788868337869644, -0.006385223474353552, -0.023080307990312576, 0.033390168100595474, -0.019352518022060394, 0.030929580330848694, -5.964040246908553e-05, -0.01678120344877243, -0.005579381249845028, -0.015292548574507236, 0.00746788177639246, -0.0009942309698089957, 0.0013825424248352647, -0.019660091027617455, -0.00868587289005518, -0.004967310465872288, -0.007750849239528179, -0.024212177842855453, -0.06845353543758392, 0.0008250655955635011, 0.005834667012095451, 0.011103399097919464, -0.004549010656774044, -0.03112642653286457, -0.014738916419446468, 0.052262868732213974, -0.011318700388073921, -0.02527022920548916, 0.021726984530687332, 0.00640982948243618, 0.00542251905426383, -0.019032642245292664, 0.02841978147625923, -0.012013816274702549, -0.031052609905600548, 0.027878452092409134, 0.003973848186433315, -0.003700107801705599, -0.0271648820489645, -0.005496336612850428, -0.002718948759138584, -0.022415949031710625, -0.0035770784597843885, -0.017556289210915565, 0.002595919417217374, -0.019081853330135345, 0.028173722326755524, 0.02013990469276905, 0.010143770836293697, -0.013041111640632153, -0.014480555430054665, -0.015661636367440224, 0.006305254530161619, -0.045324016362428665, -0.005933090578764677, 0.015009581111371517, -0.01829446479678154, 0.025467077270150185, -0.008482874371111393, -0.016239874064922333, 0.03747474029660225, 0.0097685307264328, -0.024790415540337563, 0.013311776332557201, -0.02714027650654316, 0.11318700760602951, -0.04146089404821396, -0.015267943032085896, 0.023289456963539124, 0.0024452083744108677, 0.04052586853504181, 0.0033679285552352667, -0.01735944300889969, 0.006791220512241125, -0.003780076978728175, -0.007861576043069363, -0.004887341056019068, 0.012475176714360714, -0.022735824808478355, 0.006209906656295061, -0.012905779294669628, 0.00588080333545804, 0.022366736084222794, -0.0029803861398249865, -0.011429427191615105, -0.008286027237772942, 0.023978421464562416, 0.04547164961695671, 0.027066458016633987, -0.033710043877363205, 0.010359072126448154, 0.0311756394803524, 0.00807687733322382, 0.006871189456433058, 0.025516288354992867, 0.019118761643767357, 0.016707386821508408, 0.03621984273195267, -0.008070725947618484, 0.0018131451215595007, -0.000190887731150724, -0.0028481294866651297, -0.0033125653862953186, -0.007763152476400137, -0.008605903014540672, 0.0048012207262218, 0.023609332740306854, 0.024162964895367622, -0.029994556680321693, 0.011275640688836575, 0.011878483928740025, -0.022797340527176857, 0.017937680706381798, -0.017777742817997932, -0.01737174578011036, 0.037966858595609665, -0.011527850292623043, 0.015194125473499298, -0.046259038150310516, 0.0012648955453187227, 0.04547164961695671, 0.03353780135512352, -0.02652512863278389, 0.004752008710056543, -0.013619349338114262, 0.0017424032557755709, 0.008901174180209637, -0.0030219084583222866, 0.015514002181589603, 0.017765438184142113], [0.03870728611946106, -0.019738152623176575, 0.007527064066380262, -0.001288252416998148, -0.018945829942822456, 0.027987629175186157, -0.03593415766954422, 0.025074679404497147, 0.023373516276478767, -0.011372159235179424, -0.013935555703938007, -0.04269220307469368, 0.01702328398823738, 0.02656610868871212, -0.033557191491127014, 0.032927993685007095, 0.0041829971596598625, 0.006810478400439024, -0.008191216737031937, 0.0073464615270495415, 0.042319346219301224, 0.023385167121887207, 0.03621380031108856, -0.01670868508517742, -0.016196005046367645, -0.007183336187154055, 0.018060293048620224, -0.03467576205730438, 0.0454886369407177, -0.004337383434176445, 0.053505074232816696, -0.004343209322541952, -0.023280300199985504, -0.025727178901433945, 0.006967777851969004, 0.023117175325751305, 0.031273435801267624, 0.00026580673875287175, 0.012280999682843685, -0.016545558348298073, -0.056254900991916656, -0.02240641601383686, -0.010777916759252548, -0.05602186545729637, -0.03316102921962738, 0.06650848686695099, 0.03267165273427963, -0.014995869249105453, 0.012397517450153828, 0.03793826699256897, 0.03453594073653221, 0.02041395753622055, 0.009344745427370071, 0.023152131587266922, 0.01380738615989685, -0.007795055862516165, -0.004293689038604498, -0.0028284750878810883, -0.0009649148560129106, 0.0013938468182459474, -0.01274707168340683, 0.0009896749397739768, 0.017314577475190163, 0.008977713994681835, 3.5660887078847736e-05, 0.0024148360826075077, -0.0214975755661726, 0.04210961237549782, -0.018642883747816086, -0.0029012986924499273, 0.013469483703374863, 0.01027688942849636, 0.007119251415133476, 0.002094411524012685, -0.0072707245126366615, 0.004197561647742987, 0.06445776671171188, -0.026752537116408348, 0.05434400588274002, 0.03695951774716377, -0.04057157412171364, 0.023548291996121407, -0.024165837094187737, 0.04586149379611015, -0.029269326478242874, 0.015100736171007156, -0.019470160827040672, 0.011115819215774536, -0.02008770778775215, -0.04739953204989433, -0.07489778846502304, -0.02147427201271057, -0.006979429628700018, 0.03502531722187996, 0.0026143731083720922, 0.025424232706427574, 0.014914306811988354, -0.02072855643928051, -0.026636019349098206, 0.08524458855390549, 0.010224456898868084, 0.012467428110539913, -0.03889371454715729, 0.0016851419350132346, 0.028826558962464333, -0.038008179515600204, -0.008849543519318104, 0.0445098839700222, 0.01596296951174736, 0.04795881733298302, 0.03264835104346275, -0.023385167121887207, -0.029525667428970337, 0.08855369687080383, -0.026799146085977554, -0.018223417922854424, -0.007078469730913639, 0.036936212331056595, 0.0043985554948449135, -0.024049319326877594, 0.021579137071967125, 0.012945151887834072, 0.02488824911415577, -0.053644899278879166, 0.00736976508051157, -0.011651801876723766, -0.0035887551493942738, -0.03928987681865692, 0.01160519476979971, -0.008791284635663033, 0.03940639644861221, -0.043834079056978226, 0.07074974477291107, -0.04057157412171364, -0.0007023852085694671, 0.04392729327082634, -0.026938967406749725, -0.014156939461827278, -0.0032275491394102573, 0.024841642007231712, 0.06082240864634514, 0.001160810817964375, 0.06366544961929321, 6.309496257017599e-06, -0.027754593640565872, 0.0029260588344186544, 0.03365040570497513, 0.007742622401565313, -0.025983519852161407, 0.006058937404304743, 0.04238925501704216, -0.017384488135576248, 0.001151343691162765, 0.044929347932338715, 0.028803255409002304, -0.00822034664452076, 0.0006492238608188927, 0.030504418537020683, -0.0055258674547076225, -0.002186169382184744, -0.02780120074748993, 0.0018642883514985442, 0.0017565091839060187, -0.02120628021657467, 0.016242612153291702, -0.015881406143307686, -0.01993623375892639, -0.007480456959456205, -0.05947079882025719, -0.010725484229624271, -0.04157362878322601, -0.0555557943880558, -0.01367921568453312, -0.05024257302284241, -0.031250134110450745, -0.026333073154091835, 0.025867000222206116, -0.0035450607538223267, -0.038171302527189255, 0.02273266576230526, -0.0005836824420839548, -0.015904709696769714, -0.07909243553876877, -0.027661379426717758, -0.021684003993868828, 0.0642247349023819, -0.0222549419850111, 0.028477005660533905, -0.058119188994169235, 0.0070551661774516106, 0.01934199221432209, -0.0031285088043659925, -0.03730906918644905, 0.01859627664089203, -0.015858102589845657, 0.006781348958611488, -0.023455077782273293, -0.0012824265286326408, 0.05345846712589264, -0.005301570054143667, 0.005805510561913252, -0.0010304562747478485, 0.016009576618671417, 0.05439061298966408, -0.03854416310787201, 0.002328903879970312, 0.02470182068645954, 0.006204584613442421, 0.0426689013838768, -0.016230961307883263, 0.015392030589282513, -0.025750482454895973, -0.016533907502889633, 0.0024497914128005505, 0.030131559818983078, 0.04294854402542114, 0.06399169564247131, -0.018013685941696167, 0.019877973943948746, -0.007789229974150658, -0.048285067081451416, -0.031087009236216545, -0.00537439389154315, 0.017629176378250122, -0.03318433463573456, -0.016242612153291702, -0.013830689713358879, -0.013586001470685005, -0.014098680578172207, -0.013620956800878048, -0.03835773468017578, -0.00011205756891286, -0.004381077829748392, -0.01205961499363184, 0.028383789584040642, -0.018013685941696167, -0.010410885326564312, -0.03283477947115898, 0.004060653038322926, 0.0035625386517494917, 0.013958859257400036, 0.027544859796762466, -0.03735567629337311, -0.0010151632595807314, 0.007818358950316906, -0.028966380283236504, -0.011954749003052711, 0.015776541084051132, 0.05439061298966408, 0.008791284635663033, -0.022849183529615402, -0.030597632750868797, 0.0156483706086874, -0.017745694145560265, -0.001813311711885035, 0.022161727771162987, 0.011308073997497559, -0.006163803394883871, 0.04912399873137474, -0.008395123295485973, -0.04395059868693352, 0.030830668285489082, -0.014413279481232166, -0.035071924328804016, -0.06991081684827805, -0.056534543633461, 0.047073282301425934, -0.007934877648949623, -0.012001356109976768, -0.0032770694233477116, -0.0522000752389431, 0.022651104256510735, -0.005636559333652258, -0.054110970348119736, -0.04131729155778885, -0.0050510563887655735, 0.004378164652734995, -0.060402944684028625, -0.034023262560367584, 0.0739656388759613, -0.012071266770362854, -0.018246721476316452, -0.00016094051534309983, -0.06361883878707886, -0.020239179953932762, 0.0065716165117919445, 0.014879351481795311, 0.03311442211270332, 0.03991907462477684, -0.012164481915533543, 0.03730906918644905, 0.007596975192427635, 0.02085672691464424, 0.00579094560816884, 0.02319873869419098, -0.02978200651705265, -0.027125395834445953, -0.0009299594676122069, -0.047539353370666504, -0.02700887806713581, -0.004628678318113089, 0.045208994299173355, 0.04912399873137474, -0.07401224970817566, -0.005158835556358099, 0.021544182673096657, -0.02505137398838997, 0.0026668063364923, -0.03698281943798065, 0.011745017021894455, -0.014856047928333282, -0.024445481598377228, -0.024911552667617798, -0.04805203154683113, -0.01610279083251953, 0.008179564960300922, -0.05052221566438675, -0.02366480976343155, 0.017734043300151825, -0.033533886075019836, 0.05481007695198059, 0.0044451626017689705, 0.03560790792107582, -0.045045867562294006, 0.006804652512073517, -0.011482851579785347, 0.038311127573251724, 0.05448382720351219, -0.030830668285489082, -0.002969752997159958, -0.043834079056978226, -0.0008942758431658149, 0.026309769600629807, -0.0374721959233284, -0.008826239965856075, -0.04222613200545311, 0.01860792748630047, -0.011616846546530724, -0.05224668234586716, 0.021462619304656982, 0.014564752578735352, 0.025097982957959175, 0.02596021629869938, 0.010649747215211391, -0.014564752578735352, 0.004745196551084518, 0.0013574350159615278, 0.03010825626552105, -0.026636019349098206, 0.0031343349255621433, 0.009804992005228996, 0.024934856221079826, -0.03134334832429886, -0.05742008239030838, -0.0374721959233284, -0.01328305434435606, 0.04206300526857376, -0.02196364663541317, 0.013411224819719791, 0.03206576034426689, 0.03208906203508377, -0.00480054272338748, 0.04467301070690155, 0.07186831533908844, 0.039243269711732864, 0.0023536640219390392, 0.02088003046810627, 0.009566130116581917, -0.012036311440169811, 0.003195506753399968, 0.06674152612686157, -0.010038027539849281, 0.024841642007231712, -0.013306357897818089, 0.006047285161912441, 0.0121295265853405, 0.008931106887757778, 0.021439315751194954, 0.03010825626552105, -0.0595640130341053, -0.002738173585385084, -0.033254243433475494, 0.030317990109324455, 0.00651918351650238, 0.017559265717864037, 0.03835773468017578, -0.04518568888306618, 0.0024628997780382633, 0.01090608723461628, -0.009298138320446014, -0.00904762465506792, 0.011797449551522732, 0.045232295989990234, -0.0019618722144514322, 0.009298138320446014, 0.02255789004266262, 0.013586001470685005, 0.05606847256422043, 0.0009255900513380766, -0.034466031938791275, -0.013620956800878048, 0.0007580954115837812, -0.014494841918349266, 0.012246044352650642, 0.015741584822535515, 0.007031862623989582, 0.036167193204164505, -0.021777218207716942, 0.019773108884692192, -0.017314577475190163, 0.01994788460433483, -0.004873366095125675, 0.025867000222206116, 0.02488824911415577, 0.03656335547566414, -0.01752431131899357, 0.03926657512784004, 0.010201153345406055, -0.026659322902560234, -0.03055102564394474, 0.005855030845850706, -0.01736118458211422, -0.024026015773415565, -0.006886214949190617, 0.003125595860183239, -0.01282863412052393, -0.02056543156504631, -0.03698281943798065, 0.047679174691438675, -0.08887995034456253, -0.05126792937517166, 0.008698070421814919, 0.04809863865375519, 0.014226850122213364, -0.053644899278879166, -0.039988987147808075, 0.012280999682843685, -0.01359765324741602, -0.0473296195268631, -0.03730906918644905, 0.0451623871922493, -0.030807364732027054, 0.03695951774716377, 0.056534543633461, 0.022511281073093414, -0.06832616776227951, -0.03118022345006466, -0.0014127810718491673, 0.023233693093061447, -0.0018861355492845178, 0.008569900877773762, -0.00899519119411707, 0.018246721476316452, -0.02104315534234047, 0.018398195505142212, -0.018910875543951988, -0.0005611071246676147, -0.0655297338962555, 0.03365040570497513, -0.0007056622998788953, 0.025843696668744087, 0.0672542005777359, 0.03749550133943558, -0.003143073758110404, 0.022196684032678604, 0.020472217351198196, 0.008033917285501957, 0.003976177424192429, -0.009001017548143864, -0.04120077192783356, 0.02486494556069374, -0.043088365346193314, -0.0488443560898304, -0.025843696668744087, 0.027521556243300438, -0.002994513139128685, 0.02978200651705265, 0.0053598289377987385, -0.057513296604156494, -0.04425354674458504, 0.00533652538433671, 0.006396839395165443, -0.049077391624450684, -0.0525263249874115, 0.055509187281131744, 0.037262462079524994, 0.07019045948982239, -0.015287164598703384, -0.09125691652297974, -0.031832724809646606, -0.01705823838710785, -0.019749805331230164, -0.020169269293546677, -0.010311844758689404, 0.007084295619279146, 0.0017302926862612367, -0.037262462079524994, -0.010469144210219383, 0.05201364681124687, -0.020798467099666595, 0.03805478662252426, 0.0023711416870355606, -0.01359765324741602, 0.0414804145693779, 0.0381246954202652, -0.011389636434614658, 0.008820414543151855, -0.002387162996456027, -0.010107938200235367, -0.03425629809498787, 0.007672711741179228, -0.04448658227920532, 0.01519395038485527, -0.012991759926080704, -0.006478401832282543, -0.03236870840191841, -0.0019443945493549109, 0.015694977715611458, -0.020926637575030327, -0.00019662416889332235, 0.04304175823926926, -0.016312522813677788, 0.001085802330635488, -0.03332415595650673, -0.014261806383728981, 0.009140838868916035, 0.036004070192575455, -0.05261953920125961, -0.0045762453228235245, -0.011564414016902447, -0.022977354004979134, -0.013562697917222977, -0.06786009669303894, -0.023431774228811264, 0.026752537116408348, 0.02181217446923256, -0.023583248257637024, 0.033067815005779266, -0.03528165817260742, -0.0007770295487716794, 0.04586149379611015, 0.007060992065817118, -0.03220558166503906, 0.02027413621544838, -0.02535432204604149, -0.015298816375434399, 0.03504862263798714, -0.023548291996121407, -0.022639451548457146, 0.009391352534294128, 0.034908801317214966, -0.025587357580661774, 0.0002011756441788748, -0.053365252912044525, 0.009286486543715, 0.05215346813201904, 0.02980531007051468, -0.02070525288581848, 0.017384488135576248, 0.03274156525731087, -0.0025007680524140596, 0.011471199803054333, -0.010812872089445591, 0.0032333750277757645, -0.011430418118834496, 0.027265217155218124, 0.00843590497970581, 0.01935364305973053, 0.001942938077263534, 0.022394763305783272, -0.027078788727521896, -6.790815677959472e-05, 0.027405038475990295, -0.025214500725269318, 0.035701122134923935, 0.004520899150520563, -0.03320763632655144, -0.06399169564247131, 0.008284431882202625, -0.012269347906112671, 0.01566002145409584, -0.0030032519716769457, 0.011546935886144638, -0.0107487877830863, -0.03763532266020775, -0.001963328570127487, -0.021917039528489113, -0.027241913601756096, -0.009915683418512344, -0.031389955431222916, -0.023408470675349236, -0.0026901098899543285, -0.0009867619955912232, -0.010317671112716198, -0.00789992231875658, 0.036609962582588196, 0.03071415051817894, 0.029106201604008675, -0.06921170651912689, 0.04080461338162422, -0.025680571794509888, -0.0008651463431306183, 0.014949262142181396, 0.038777198642492294, -0.03208906203508377, -0.019108954817056656, 0.022161727771162987, -0.004241256043314934, 0.0015249296557158232, 0.019773108884692192, -0.00017404879326932132, 0.005348177161067724, 0.018782705068588257, -0.04080461338162422, -0.03873059153556824, -0.005421000998467207, 0.019097303971648216, 0.00027982532628811896, -0.015135691501200199, -0.012327606789767742, -0.0030498593114316463, -0.0050131878815591335, -0.009123360738158226, -0.011389636434614658, -0.01737283729016781, 0.006490054074674845, -0.01733788102865219, -0.06068258732557297, 0.008802936412394047, 0.003751880256459117, -0.006903693079948425, -0.01388894859701395, 0.009169968776404858, -0.03775183856487274, -0.047539353370666504, 0.03143656253814697, -0.0121295265853405, 0.0019866323564201593, 0.009787513874471188, 0.03796157240867615, 0.04313497245311737, -0.041527021676301956, 0.01173336524516344, -0.06128847971558571, 0.007218291517347097, -0.008948584087193012, 0.0040169586427509785, 0.013574349693953991, 0.048285067081451416, 0.01559011172503233, 0.034023262560367584, 0.040594879537820816, -0.0038975279312580824, 0.01051575131714344, -0.0038654853124171495, 0.011715887114405632, 0.002908581169322133, -0.0047539351508021355, 0.015706628561019897, -0.002309969859197736, -0.017559265717864037, -0.017244666814804077, 0.01995953731238842, -0.003641188144683838, -0.007072643842548132, -0.00965934433043003, 0.0445098839700222, -0.026752537116408348, -0.006257017608731985, 0.009863250888884068, 0.004121825098991394, 0.029246022924780846, -0.013551046140491962, -0.042925238609313965, -0.040455058217048645, 0.008127132430672646, -0.03360379859805107, 0.036586660891771317, -0.018036989495158195, 0.018514713272452354, -0.006635701283812523, -0.054110970348119736, -0.027871111407876015, 0.010929390788078308, 0.0018613754073157907, -0.017279623076319695, 0.026962270960211754, -0.02121793106198311, -0.000802517868578434, 0.03873059153556824, -0.0004627950256690383, 0.02012266218662262, -0.0026784581132233143, 0.0095311738550663, 0.001310827792622149, -0.015089084394276142, 0.023524988442659378, -0.009315615519881248, -0.014844396151602268, -0.005412261933088303, -0.043344706296920776, -0.004261646885424852, -0.013830689713358879, -0.050009533762931824, -0.037262462079524994, -0.015217253938317299, -0.001996827544644475, 0.005994852166622877, 0.008651463314890862, 0.008197043091058731, -0.0006007960764691234, -0.024818338453769684, -0.019679894670844078, -0.01243247278034687, -0.02085672691464424, 0.004019871819764376, 0.011552762240171432, -0.004249995108693838, -0.005284092389047146, -0.013784081675112247, -0.04010550305247307, 0.005432652775198221, -0.017384488135576248, 0.0057967714965343475, 0.019004089757800102, -0.03730906918644905, -0.004654895048588514, 0.006979429628700018, -0.022651104256510735, 0.017244666814804077, 0.02656610868871212, -0.004992797505110502, -0.010172023437917233, -0.008814588189125061, -0.004302428103983402, -0.033533886075019836, -0.02288413979113102, -0.015100736171007156, 0.006635701283812523, -0.021555833518505096, 0.013760778121650219, -0.013982162810862064, 0.02042561024427414, -0.012280999682843685, 0.012094570323824883, 0.007509586401283741, -0.03609728440642357, 0.06720759719610214, -0.03928987681865692, -0.021287843585014343, -0.045232295989990234, 0.0072241174057126045, -0.0029260588344186544, -0.0047044153325259686, 0.023082220926880836, -0.036936212331056595, -0.003961612936109304, 0.026496198028326035, 0.009775862097740173, -0.012152830138802528, -0.018223417922854424, -0.017932124435901642, 0.004777238704264164, -0.012490731664001942, -0.002196364803239703, -0.017419444397091866, -0.05233989655971527, -0.011954749003052711, 0.017116498202085495, -0.04171345382928848, -0.022849183529615402, -0.00399365508928895, 0.05131453648209572, 0.019586680456995964, 0.012047963216900826, 0.0036441010888665915, 0.005202529486268759, -0.0316229909658432, 0.016638774424791336, -0.0284303966909647, -0.003274156479164958, 0.020984895527362823, -0.008074698969721794, 0.013842341490089893, 0.018840964883565903, -0.03626040741801262, -0.0001778720470611006, 0.0374721959233284, -0.017617525532841682, 0.0027629337273538113, -0.011302248574793339, -0.019097303971648216, 0.009839947335422039, -0.03495540842413902, -0.014786137267947197, 0.003026555525138974, -0.0007479000487364829, -0.04423024132847786, 0.006268669851124287, 0.006455098278820515, -0.041690148413181305, -0.014040421694517136, 0.009146665222942829, 0.017920471727848053, 0.04141050577163696, 0.003716924926266074, -0.03763532266020775, -0.012479079887270927, 0.004876279272139072, 0.0047044153325259686, -0.010445840656757355, -0.005825900938361883, 0.047376226633787155, 0.05835222452878952, -0.03915005549788475, 0.018538016825914383, -0.04425354674458504, -0.0008687875233590603, 0.03143656253814697, -0.025284411385655403, 0.01490265503525734, -0.009187445975840092, -0.005820075049996376, -0.011150774545967579, 0.03758871555328369, -0.03241531550884247, -0.017932124435901642, 0.05462364852428436, 0.007923225872218609, -0.037681929767131805, 0.010457492433488369, -0.009758383966982365, 0.025703875347971916, 0.004028610419481993, 0.004870453383773565, 0.019167214632034302, 0.017384488135576248, 0.025004766881465912, 0.04441666975617409, 0.025447536259889603, 0.04823845997452736, -0.04665381461381912, -0.014762833714485168, 0.008342690765857697, 0.0007675624801777303, 0.026309769600629807, -0.004867540206760168, 0.011168252676725388, -0.006897866725921631, 0.033697012811899185, -0.005688992328941822, -0.0009285029955208302, -0.013912252150475979, 0.004296602215617895, 0.02197529934346676, -0.007474631071090698, 0.0598902627825737, 0.01282863412052393, -0.006280321627855301, -0.03439611941576004, 0.004019871819764376, 0.0035771033726632595, -0.002888190560042858, -0.016941720619797707, -0.0032828953117132187, -0.028383789584040642, 0.026449590921401978, 0.020810117945075035, -0.005016101058572531, 0.013131581246852875, 0.04236595332622528, 0.01764082908630371, 0.008610681630671024, -0.03118022345006466, -0.040315236896276474, 0.01075461320579052, 0.004937451332807541, 0.018200114369392395, 0.025424232706427574, -0.003620797535404563, -0.021241234615445137, 0.024305660277605057, 0.05937758460640907, 0.01795542798936367, 0.02011101134121418, -0.03180941939353943, -0.021124716848134995, 0.030970489606261253, 0.03656335547566414, -0.005056882277131081, 0.0010617704829201102, 0.003163464367389679, 0.03290468826889992, 0.006897866725921631, 0.023140478879213333, -0.02903629094362259, 0.023909498006105423, -0.0032013326417654753, 0.017442747950553894, 0.01303836703300476, -0.01690676435828209, 0.012945151887834072, -0.05700061842799187, -0.0008833522442728281, -0.019120607525110245, -0.011745017021894455, -0.018060293048620224, 0.01496091391891241, 0.016172701492905617, -0.004733544774353504, 0.023699766024947166, -0.0038276170380413532, 0.019120607525110245, -0.027568163350224495, 0.04544202983379364, 0.03500201553106308, -0.04420693963766098, -0.006408491171896458, -0.0016647512093186378, -0.021252887323498726, 0.001723010209389031, 0.000234856634051539, 0.0055258674547076225, -0.0016749466303735971, 0.006775523070245981, 0.008628159761428833, -0.002778954803943634, 0.05574222281575203, 0.030434507876634598, -0.004247081931680441, -0.03987246751785278, 0.05667436495423317, 0.007556193973869085, 0.008272779174149036, 0.002700305078178644, 0.038148000836372375, -0.01860792748630047, 0.009653517976403236, 0.010096286423504353, -0.02884986251592636, 0.04038514569401741, -0.026612715795636177, -0.01813020370900631, 0.015485244803130627, 0.005342351272702217, -0.035864248871803284, -0.016860157251358032, 0.019854670390486717, -0.001205961569212377, -0.012304303236305714, -0.002864886773750186, 0.0008192673558369279, 0.028360486030578613, 0.0028998423367738724, 0.01527551282197237, 0.019563376903533936, 0.035864248871803284, -0.015531852841377258, 0.007888270542025566, 0.020949941128492355, 0.02395610511302948, -0.005284092389047146, 0.03348727896809578, -0.004902496002614498, -0.01702328398823738, 0.014599707908928394, 0.004416033159941435, -0.003026555525138974, -0.0020638254936784506, -0.004226691089570522, -0.006688134279102087, -0.032042454928159714, 0.03397665545344353, 0.028640130534768105, -0.033720314502716064, 0.016207657754421234, -0.02350168488919735, 0.0061055445112288, 0.02933923900127411, -0.003411065088585019, 0.008826239965856075, 0.01993623375892639, 0.014786137267947197, 0.0017390315188094974, 0.004040262661874294, 0.054763469845056534, -0.01750100776553154, 0.0004922886728309095, 0.008045569062232971, 0.0023944454733282328, 0.01158189121633768, 0.04586149379611015, 0.0023522076662629843, 0.05867847800254822, -0.0015118212904781103, 0.02917611226439476, 0.025424232706427574, 0.003757706144824624, 0.03591085597872734, 0.020227529108524323, 0.031832724809646606, -0.0109119126573205, -0.006542487069964409, 0.005983200389891863, -0.0011862991377711296, 0.010690528899431229, 0.011832404881715775, 0.012548991478979588, -0.0028867339715361595, -0.0024192053824663162, 0.009869076311588287, -0.03143656253814697, -0.021252887323498726, 0.03502531722187996, -0.0055753872729837894, -0.03276486694812775, 0.0068337819539010525, -0.01543863769620657, -0.020984895527362823, 0.03227549046278, -0.004375251941382885, -0.007713492959737778, 0.030970489606261253, 0.05788615345954895, -0.003009077860042453, 0.011546935886144638, 0.016207657754421234, 0.015869755297899246, 0.012572295032441616, 0.03644683584570885, 0.009076753631234169, -0.03087727539241314, 0.021614093333482742, 0.008307735435664654, 0.002543005859479308, -0.002420661970973015, -0.0003815965319518, -0.03619049862027168, -0.019237125292420387, 0.03148316964507103, -0.02105480618774891, -0.010026375763118267, -0.01966824196279049, 0.009845772758126259, -0.03744889423251152, 0.015007521025836468, 0.004582071211189032, 0.028779951855540276, 0.015741584822535515, -0.015496896579861641, -0.015415334142744541, 0.0759231448173523, -0.060542766004800797, 0.05066203698515892, 0.015858102589845657, 0.015776541084051132, 0.020507171750068665, -0.009193272329866886, 0.02378132753074169, -0.0036732307635247707, 0.03071415051817894, -0.024328963831067085, 0.004544202703982592, -0.023128828033804893, 0.03190263360738754, 0.006827956065535545, -0.045698367059230804, -0.020938288420438766, 0.010865305550396442, -0.027381734922528267, -0.022336505353450775, -0.038474250584840775, 0.022336505353450775, 0.0038392688147723675, -0.013411224819719791, -0.02393280155956745, -0.017081541940569878, -0.05737347528338432, 0.0037547932006418705, -0.012712116353213787, 0.024841642007231712, -0.02945575676858425, -0.030993793159723282, -0.00830190908163786, -0.02318708598613739, -0.009630214422941208, 0.006280321627855301, 0.022825879976153374, 0.0007777577848173678, 0.02397940866649151, 0.004366512876003981, -0.011098342016339302, 0.006979429628700018, -0.007259072735905647, 0.02366480976343155, -0.021765567362308502, 0.007311505731195211, -0.015543504618108273, 0.03187933191657066, -0.003411065088585019, 0.028127450495958328, -0.007556193973869085, -0.010772091336548328, -0.0079873101785779, 0.030294686555862427, -0.03467576205730438, -0.003894614987075329, 0.008261127397418022, -0.0052200076170265675, -0.008127132430672646, -0.00837764609605074, 0.01705823838710785, -0.018503062427043915, -0.006297799292951822, -0.028057539835572243, 0.02733512781560421, -0.014518145471811295, 0.0035654515959322453, 0.007002733182162046, -0.02735843136906624, -0.011966400779783726, 0.011069212108850479, 0.021870432421565056, 0.007550368085503578, -0.00591037655249238, 0.004532550927251577, -0.01482109259814024, 0.02227824553847313, 0.021684003993868828, -0.020821770653128624, -0.02612334117293358, -0.02654280513525009, -0.022674407809972763, -0.006589094176888466, -0.006396839395165443, -0.01733788102865219, 0.024958159774541855, -0.012700464576482773, -0.008727200329303741, -0.0025808741338551044, 0.016650425270199776, 0.04346122220158577, 0.0006637885817326605, -0.008453382179141045, -0.025727178901433945, -0.013352965004742146, -0.007806707639247179, 0.07219456881284714, 0.011016778647899628, -0.018922526389360428, 0.005476347170770168, 0.011645976454019547, 0.006099718622863293, -0.007579497527331114, -0.02439887449145317, -0.022499630227684975, 0.026612715795636177, -0.03863737732172012, 0.011622672900557518, 0.0439739003777504, -0.012875241227447987, 0.004963667597621679, -0.006414317060261965, 0.019924581050872803, 0.003856746479868889, 0.015392030589282513, -0.013784081675112247, 0.019563376903533936, -0.009059276431798935, 0.027824504300951958, 0.00783001072704792, 0.014832744374871254, -0.008313560858368874, 0.0005931495688855648, 0.008395123295485973, -0.023385167121887207, 0.012490731664001942, 0.0038043134845793247, -0.011010953225195408, -0.02086837776005268, 0.012164481915533543, 0.02409592643380165, -0.01993623375892639, -0.007917399518191814, 0.017722390592098236, 0.025447536259889603, 0.011232336983084679, 0.009461263194680214, -0.019272081553936005, -0.022755969315767288, 0.00537439389154315, -0.023233693093061447, 0.03381352871656418, -0.007870792411267757, -0.0026988487225025892, 0.021858781576156616, 0.02703218162059784, 0.002589612966403365, -0.004742283374071121, 0.009187445975840092, -0.0011710061226040125, -0.0016589253209531307, -0.001950220437720418, -0.020460564643144608, -0.0024832903873175383, -0.0019458510214462876, 0.010090461000800133, -0.03085397183895111, 0.006472575943917036, -0.020926637575030327, 0.005418088287115097, 0.02689236029982567, -0.010521577671170235, 0.03423299640417099, -0.026799146085977554, -0.002047804184257984, -0.011179904453456402, -0.01436667237430811, -0.023222042247653008, -0.024608606472611427, 0.022289898246526718, 0.004165519494563341, -0.007550368085503578, -0.01782725751399994, 0.0019924582447856665, 0.007806707639247179, -0.032182276248931885, -0.009146665222942829, -0.01568332500755787, 0.04264559596776962, 0.04143380746245384, -0.011954749003052711, -0.02439887449145317, -0.007194987963885069, -0.0008491250919178128, 0.015252209268510342, -0.0017186407931149006, 0.020670296624302864, 0.018619580194354057, 0.007066817954182625, -0.017384488135576248, -0.002374054631218314, -0.02255789004266262, -0.011249815113842487, -0.011925620026886463, 0.02226659469306469, -0.0037431414239108562, 0.01655721105635166, -0.014040421694517136, -0.04823845997452736, -0.007643582299351692, 0.028453700244426727, 0.009962290525436401, 0.014401627704501152, -0.027568163350224495, -0.012537339702248573, 0.02796432562172413, -0.012595598585903645, -0.0004759033035952598, 0.015485244803130627, 0.014028769917786121, -0.006938648410141468, -0.025097982957959175, 0.012595598585903645, -0.008395123295485973, -0.007882444187998772, 0.027847807854413986, 0.027288520708680153, -0.005269527435302734, 0.022033557295799255, 0.020495520904660225, 0.0012554817367345095, 0.004063566215336323, -0.02103150263428688, 0.015065779909491539, -0.010049679316580296, -0.03283477947115898, 0.012723768129944801, 0.008348516188561916, 5.789489296148531e-05, 0.019703198224306107, 0.003976177424192429, -0.05788615345954895, -0.00875632930546999, -0.0014805070823058486, 0.047073282301425934, -0.03381352871656418, 0.017908820882439613, 0.0010690528433769941, 0.012595598585903645, 0.005936593282967806, -0.004040262661874294, 0.01059731375426054, -0.04518568888306618, -0.0038742241449654102, 0.01858462393283844, 0.011465373449027538, -0.04360104352235794, 0.016324175521731377, -0.02040230669081211, 0.017279623076319695, -0.0040519144386053085, 0.01718640886247158, -0.0010646834271028638, 0.009653517976403236, 0.01490265503525734, -0.003594581037759781, -0.01359765324741602, 0.013725822791457176, 0.03751880303025246, -0.014634663239121437, 0.004672372713685036, 0.027218610048294067, -0.02181217446923256, -0.008814588189125061, -0.03467576205730438, -0.011372159235179424, -0.006659004837274551, -0.020390653982758522, -0.009641866199672222, -0.012246044352650642, 0.006297799292951822, -0.011150774545967579, -0.013877296820282936, 0.02381628379225731, -0.03656335547566414, -0.009775862097740173, -0.006548312958329916, 0.024841642007231712, 0.011436243541538715, -0.027428342029452324, -0.027148699387907982, -0.009030146524310112, -0.007835837081074715, -0.0184098482131958, 0.052106861025094986, -0.023594899103045464, 0.004471379332244396, -0.016149397939443588, -0.007777578197419643, -0.03267165273427963, 0.024981463328003883, -0.001168093178421259, -0.0184098482131958, 0.018211767077445984, 0.026799146085977554, -0.012246044352650642, -0.013690867461264133, -0.017454400658607483, 0.01306167058646679, 0.039243269711732864, 0.0049199736677110195, -0.024049319326877594, 0.021707307547330856, 0.002674088580533862, 0.02332690730690956, -0.0037839228753000498, 0.01857297308743, 0.011395462788641453, 0.007923225872218609, 0.009467089548707008, 0.030947186052799225, -0.018060293048620224, 0.016196005046367645, 0.006542487069964409, -0.017139801755547523, -0.03838103637099266, -0.041363898664712906, 0.021777218207716942, 0.010579836554825306, 0.019272081553936005, -0.03257843852043152, -0.007946529425680637, 0.011092515662312508, 0.005764729343354702, 0.020390653982758522, 0.007276550401002169, 0.023105524480342865, 0.0005287005333229899, -0.013481135480105877, 0.00030367510044015944, -0.01251403521746397, -0.01610279083251953, 0.03688960522413254, -0.022930746898055077, -0.0122926514595747, -0.01482109259814024, 0.010387581773102283, -0.03264835104346275, -0.020973244681954384, -0.0030498593114316463, -0.0037140119820833206, 0.023420123383402824, 0.04632756486535072, -0.02516789361834526, 0.014995869249105453, -0.04541872441768646, -0.005435565952211618, -0.028477005660533905, -0.024049319326877594, 0.023233693093061447, 0.046304263174533844, -0.03134334832429886, 0.007084295619279146, -0.00614632572978735, -0.013015063479542732, -0.01511238794773817, 0.019691545516252518, -0.03243861719965935, 0.03987246751785278, 0.0010100656654685736, 0.009804992005228996, 0.01963328756392002, -0.022499630227684975, -0.0040519144386053085, -0.019132260233163834, -0.004954928997904062, -0.020996548235416412, -0.0209033340215683, -0.0073930686339735985, -0.01559011172503233, -0.033720314502716064, 0.013015063479542732, -0.03220558166503906, -0.025843696668744087, -0.008173739537596703, 0.03199584782123566, 0.014436583034694195, 0.02255789004266262, -0.02289579063653946, 0.008785459212958813, 0.012234392575919628, -0.008820414543151855, -0.0008367450791411102, 0.030061649158596992, 0.026379680261015892, -0.015543504618108273, 0.003568364540114999, -0.009420482441782951, 0.016394086182117462, -0.02027413621544838, 0.026030126959085464, 0.02854691632091999, 0.0013188383309170604, 0.004657807759940624, -0.0013821950415149331, -0.017582569271326065, -0.02733512781560421, 0.005706469994038343, -0.008319387212395668, -0.0006783533608540893, -0.014226850122213364, -0.012001356109976768, 0.015543504618108273, 0.021101413294672966, 0.006734741851687431, 0.017279623076319695, -0.005479259882122278, 0.0027906065806746483, -0.027731290087103844, -0.016510603949427605, 0.03740228712558746, 0.017256319522857666, 0.02365315891802311, -0.014529797248542309, -0.021416012197732925, 0.03290468826889992, -0.0032450270373374224, 0.004625765606760979, 0.00679882662370801, -0.006804652512073517, 0.03330085054039955, -0.050009533762931824, -0.004698589444160461, -0.033091116696596146, -0.019458509981632233, 0.03835773468017578, 0.018538016825914383, -0.017128149047493935, 0.022511281073093414, -0.0244221780449152, -0.025773786008358, -0.010900260880589485, 0.008004788309335709, -0.029758702963590622, 0.009356397204101086, -0.008686418645083904, 0.003984916489571333, 0.037262462079524994, -0.01860792748630047, 0.008692244067788124, -0.016079487279057503, 0.009694299660623074, 0.03842764347791672, 0.02563396468758583, -0.0439739003777504, 0.024468785151839256, 0.06860581040382385, 0.013842341490089893, 0.008948584087193012, 0.0094496114179492, 0.03728576749563217, -0.010958519764244556, -0.0038654853124171495, -0.026752537116408348, 0.02961888164281845, -0.03143656253814697, 0.006979429628700018, 0.0017506832955405116, -0.01625426486134529, 0.024049319326877594, 0.010416711680591106, -0.018200114369392395, 0.03889371454715729, -0.010789568535983562, 0.012548991478979588, 0.0070493402890861034, -0.0064434465020895, 0.0077484482899308205, -0.013469483703374863, -0.02269771136343479, 0.023862890899181366, -0.0009437960106879473, 0.00974090676754713, -0.022814229130744934, -0.006152151618152857, 0.04222613200545311, 0.007276550401002169, -0.014110332354903221, 0.027521556243300438, -0.04217952489852905, 0.02244137041270733, -0.02132279798388481, -0.0005148639902472496, 0.0013392290566116571, 0.024165837094187737], [-0.019996285438537598, -0.00891127623617649, 0.010090860538184643, 0.041331835091114044, 0.010549302212893963, -0.026043590158224106, 0.01631845161318779, -0.05138663947582245, 0.028268832713365555, -0.03855028375983238, 0.03195696696639061, 0.03364650532603264, -0.06259527057409286, -0.04726582020521164, 0.0322866328060627, 0.0693122148513794, -0.0019895839504897594, 0.002678533783182502, 0.010508093982934952, 0.004370646085590124, -0.03438825160264969, -0.035933561623096466, 0.010868665762245655, 0.07887251675128937, -0.010683229193091393, 0.0035001225769519806, -0.04392795264720917, -0.0022033515851944685, 0.02511640451848507, -0.014896768145263195, -0.020398065447807312, -0.022705724462866783, 0.020810147747397423, -0.029484475031495094, 0.01462891511619091, 0.0106626246124506, -0.026496879756450653, 0.023797743022441864, 0.0038169105537235737, 0.014093208126723766, -0.04170271009206772, 0.009745742194354534, -0.026311444118618965, 0.01307330559939146, -0.005153601989150047, 0.019326651468873024, -0.015793047845363617, 0.030926762148737907, 0.03576872870326042, 0.051221806555986404, 0.03906538337469101, 0.031029783189296722, -0.0008009846205823123, 0.00882370863109827, 0.054271213710308075, 0.027341648936271667, 0.013382366858422756, -0.0037473717238754034, -0.003543906146660447, -0.012074005790054798, -0.0010147521970793605, 0.03208059445023537, -0.011806152760982513, -0.021345853805541992, 0.01032265741378069, -0.0020204901229590178, 0.03630443289875984, 0.03381133824586868, -0.018265539780259132, 0.009503643959760666, -0.01476284209638834, 0.059010159224271774, 0.012547900900244713, -0.005959737580269575, 0.001604544697329402, 0.02188155986368656, -0.024621905758976936, -0.03859148919582367, -0.010065105743706226, 0.06148265302181244, -0.048584483563899994, 0.006371819879859686, -0.05839203670620918, -0.0346561074256897, 0.03648987039923668, 0.01868792437016964, -0.008519797585904598, -0.014649519696831703, -0.028598498553037643, -0.03181273862719536, -0.02491036430001259, 0.022973578423261642, 0.016040297225117683, 0.0071444739587605, -0.06943583488464355, 0.004947560839354992, -0.011043800972402096, 0.016328753903508186, -0.03972471505403519, -0.002204639371484518, 0.021005885675549507, -0.0024531763046979904, 0.01608150452375412, 0.04034284129738808, -0.0074483840726315975, -0.02437465824186802, -0.014309551566839218, 0.0003596060269046575, -0.0426504984498024, 0.0029386605601757765, 0.007474139332771301, -0.008375569246709347, -0.05781511962413788, 0.00921003520488739, 0.0070156981237232685, -0.022788140922784805, -0.012712733820080757, -0.011713434010744095, 0.00882370863109827, -0.030452867969870567, 0.01120863389223814, 0.002758374670520425, 0.06560347229242325, -0.04359828680753708, 0.05056247487664223, 0.028577895835042, -0.04285654053092003, 0.03813819959759712, -0.0099929915741086, 0.02295297384262085, 0.03502697870135307, 0.03519181162118912, 0.03764370083808899, -0.08109775930643082, -0.0013856261502951384, -0.07495773583650589, 0.026084797456860542, 0.024415865540504456, 0.0042702010832726955, 0.006995094008743763, 0.06061727926135063, 0.0007501182262785733, 0.021819747984409332, -0.003118946449831128, -0.02375653386116028, -0.004818785469979048, 0.049326229840517044, -0.02377713844180107, -0.0027918564155697823, -0.042897749692201614, -0.03902417793869972, -0.0085146464407444, -0.013289648108184338, -0.04302137345075607, 0.01682325266301632, 0.008241642266511917, -0.0029798687901347876, 0.02668231725692749, -0.05023280903697014, -0.026785338297486305, -0.024766135960817337, 0.005176781676709652, -0.016946876421570778, -0.005076336674392223, -0.031174011528491974, 0.016709929332137108, -0.031730324029922485, -0.046070780605077744, -0.025425467640161514, -0.025899361819028854, -0.06848804652690887, -0.020336251705884933, 0.042897749692201614, -0.04495815932750702, 0.06358426809310913, -0.03271932154893875, -0.007814107462763786, 0.04013679921627045, -0.0322866328060627, -0.007371118757873774, 0.044463660567998886, -0.00966847687959671, -0.04829602316021919, -0.013825355097651482, 0.038014575839042664, 0.016771743074059486, 0.01886305958032608, 0.06148265302181244, 0.021490082144737244, -0.01435075979679823, 0.0002121579018421471, 0.019110308960080147, 0.018100706860423088, -0.009786950424313545, 0.005640374030917883, -0.00036282543442212045, -0.002253574086353183, 0.020233232527971268, -0.01168252807110548, -0.012815753929316998, -0.021345853805541992, -0.01187826693058014, 0.004643650259822607, 0.018780643120408058, -0.024127408862113953, 0.03560389578342438, 0.008179830387234688, -0.005707337521016598, -0.002508549951016903, -0.007731690537184477, -0.0061348723247647285, 0.0011010318994522095, 0.031524281948804855, -0.0018299021758139133, 0.008056205697357655, 0.0034331590868532658, -0.03949807211756706, 0.012475785799324512, -0.017843155190348625, -0.0370255783200264, 0.0015491711674258113, 0.06560347229242325, 0.004993920214474201, -0.011620716191828251, -0.02390076220035553, -0.008360115811228752, -0.03739645332098007, 0.005305557511746883, 0.005290104076266289, -0.02140766568481922, -0.055219005793333054, -0.0007887509418651462, -0.028062792494893074, -0.051633890718221664, -0.025507882237434387, -0.018904266878962517, 0.04450486972928047, 0.011332258582115173, -0.021551894024014473, -0.027712522074580193, 0.04110519215464592, 0.010868665762245655, -0.005521900486201048, 0.039992570877075195, 0.010451432317495346, 0.008617667481303215, 0.016483284533023834, -0.016926273703575134, 0.01969752460718155, -0.017245637252926826, -0.004939834587275982, 0.0042573232203722, -0.018584903329610825, -0.0142168328166008, 0.0055837128311395645, -0.011867964640259743, 0.021345853805541992, 0.029608100652694702, 0.0663452222943306, 0.019295744597911835, 0.0031807587947696447, -0.02736225351691246, 0.004239294677972794, -0.006541803479194641, -0.02093377150595188, 0.03360529616475105, 0.03265750780701637, -0.023323848843574524, -0.047842733561992645, 0.001607120269909501, -0.042362041771411896, 0.02505459263920784, 0.03941565379500389, -0.020068399608135223, 0.027506481856107712, 0.008226189762353897, 0.011775246821343899, 0.015576704405248165, -0.07392752915620804, 0.060576070100069046, -0.02472492679953575, -0.008895822800695896, 0.0026888358406722546, 0.04409278556704521, -0.026393860578536987, 0.004053857643157244, -0.01596818119287491, 0.042094189673662186, -0.01229034923017025, -0.03350227698683739, 0.003901902586221695, 0.03844726085662842, 0.026167213916778564, -0.04104337841272354, 0.0023540190886706114, -0.007731690537184477, 0.001630299841053784, 0.012218235060572624, 0.03290475904941559, 0.0068251099437475204, 0.0170292928814888, 0.011404372751712799, -0.041805729269981384, -0.003049407619982958, -0.013495689257979393, 0.0035078490618616343, -0.03949807211756706, -0.03032924421131611, 0.010868665762245655, 0.01046688575297594, 0.05748545378446579, -0.001095880870707333, -0.0030622852500528097, 0.006299705244600773, -0.032410260289907455, 0.02064531482756138, 0.003531028749421239, -0.004424731712788343, 0.016009390354156494, -0.06828200817108154, 0.004926956724375486, -0.03344046324491501, -0.03366710990667343, -0.08628999441862106, -0.004306258168071508, -0.004185209050774574, -0.0023656089324504137, 0.04524661600589752, -0.012692129239439964, -0.021160416305065155, -0.0016921121859923005, -0.000866016314830631, 0.04874931648373604, -0.05295255407691002, -0.03690195456147194, -0.00966847687959671, -0.03148307278752327, 0.027712522074580193, -0.026970773935317993, -0.015195528045296669, -0.05377671495079994, -0.03364650532603264, 0.005429181735962629, 0.004208388738334179, 0.02214941382408142, -0.011661924421787262, -0.0013946404214948416, -0.02898997627198696, 0.003520726691931486, 0.024498282000422478, 0.009400622919201851, -0.001249123946763575, 0.044463660567998886, -0.05546625331044197, -0.015442777425050735, 0.018111009150743484, 0.05830961838364601, -0.04108458757400513, 0.0021376758813858032, 0.021696124225854874, -0.010034199804067612, 0.03838545083999634, 0.014618612825870514, 0.013011492788791656, -0.024086199700832367, -0.002051396295428276, -0.00650059524923563, 0.0024879458360373974, -0.0003512356197461486, -0.012712733820080757, 0.01266122329980135, -0.06082332134246826, 0.01726623997092247, -0.014598009176552296, -0.026496879756450653, 0.003221967024728656, 0.04491695016622543, -0.002907754387706518, 0.006758146919310093, 0.0029541137628257275, 0.03953927755355835, 0.00020748977840412408, -0.02188155986368656, 0.018255237489938736, 0.039168406277894974, -0.001968979835510254, -0.004561233799904585, 0.02214941382408142, -0.04302137345075607, -0.038158804178237915, 0.05876291170716286, -0.01131165400147438, -0.013557502068579197, -0.018976381048560143, 0.0005328092956915498, -0.011981287971138954, 0.022252434864640236, 0.01646267995238304, -0.015020392835140228, -0.02138706110417843, 0.010090860538184643, -0.015690026804804802, -0.021510686725378036, -0.0017745286459103227, 0.048172399401664734, 0.009220337495207787, -0.04075492173433304, -0.01628754660487175, 0.060411237180233, 0.02546667493879795, -0.00854555331170559, 0.009457284584641457, 0.025075197219848633, 0.015504589304327965, 0.0138459587469697, -0.03426462784409523, 0.008391021750867367, 0.02715621143579483, 0.020665917545557022, 0.028062792494893074, -0.055754709988832474, -0.005861868150532246, -0.023529889062047005, 0.03156549111008644, -0.03414100408554077, -0.016339056193828583, -0.0072835516184568405, -0.02600238099694252, -0.013341158628463745, -0.04714219272136688, 0.00878250040113926, 0.036675307899713516, 0.01445377990603447, 0.05736183002591133, 0.04578232392668724, -0.03684014081954956, 0.03032924421131611, 0.013093909248709679, 0.015566402114927769, 0.04001317545771599, 0.042485665529966354, 0.014649519696831703, 0.010920176282525063, -0.012310952879488468, -0.0527053028345108, -0.04759548604488373, 0.00541887991130352, -0.024292241781949997, 0.032678112387657166, -0.016534794121980667, 0.07499894499778748, 0.05769149586558342, 0.022643912583589554, -0.05282892659306526, -0.019326651468873024, 0.014742237515747547, 0.0017552123172208667, -0.0003451187803875655, -0.005228291731327772, -0.017997685819864273, -0.030782533809542656, -0.027774333953857422, 0.022252434864640236, -0.007711086422204971, -0.004950136411935091, -0.0008975663804449141, -0.004283078480511904, -0.02478673867881298, -0.012012193910777569, -0.0331726111471653, 0.0022136536426842213, 0.01829644665122032, 0.01676144078373909, -0.006325460504740477, 0.009616966359317303, 0.018966078758239746, 0.010178428143262863, 0.03393496200442314, 0.02146947756409645, -0.03628383204340935, 0.013691428117454052, -0.030020182952284813, -0.035933561623096466, -0.003010774962604046, 0.0005675787106156349, -0.008081960491836071, 0.02078954316675663, -0.044587284326553345, -0.0015156895387917757, -0.06815838068723679, -0.02214941382408142, -0.02363291010260582, 0.011404372751712799, -0.005614618770778179, -0.0022097902838140726, 0.030576493591070175, -0.030514681711792946, 0.008720687590539455, 0.011157123371958733, -0.03026743233203888, -0.01750318892300129, -0.022025790065526962, 0.037128597497940063, 0.017276542261242867, 0.02410680428147316, 0.020892564207315445, 0.03953927755355835, 0.01922363042831421, -0.06815838068723679, -0.012300651520490646, 0.0010469461558386683, -0.011826756410300732, -0.008025298826396465, 0.037561286240816116, -0.03595416620373726, -0.008715536445379257, 0.04281533136963844, 0.0337701290845871, 0.0063151586800813675, -0.0031395505648106337, -0.01537066325545311, 0.04512299224734306, -0.00856100581586361, -0.021819747984409332, 0.03424402326345444, -0.011466184630990028, 0.013639918528497219, -0.024086199700832367, 0.00514587527140975, -0.008931879885494709, -0.024127408862113953, 0.01753409393131733, -0.05175751447677612, -0.028660312294960022, -0.024209825322031975, 0.011435278691351414, -0.03127703443169594, 0.01154860109090805, -0.009055504575371742, 0.02004779502749443, 0.0334610678255558, -0.003685559378936887, -0.0024299968499690294, 0.03053528442978859, 0.026105402037501335, -0.01005480345338583, 0.009483039379119873, -0.02736225351691246, 0.005815508775413036, -0.008576459251344204, 0.017760738730430603, -0.01658630557358265, -0.002511125523597002, -0.02763010561466217, -0.05558987706899643, -0.01144558098167181, 0.007515347562730312, 0.02282935008406639, -0.025775736197829247, 0.002797007327899337, 0.01046688575297594, 0.016071202233433723, -0.0035361796617507935, -0.002281904686242342, -0.0145877068862319, 0.01032265741378069, -0.018945476040244102, 0.022870557382702827, 0.00016088908887468278, 0.004605017602443695, -0.00949334166944027, -0.00027686767862178385, 0.011970985680818558, -0.03799397125840187, -0.001501524238847196, 0.017286844551563263, 0.020243534818291664, 0.021098604425787926, -0.020768938586115837, 0.04829602316021919, -0.0044273072853684425, 0.04232083261013031, 0.0059700398705899715, 0.0021325249690562487, -0.010168125852942467, 0.02113981358706951, -0.02425103262066841, 0.013124815188348293, 0.009462435729801655, -0.005372520536184311, 0.026022985577583313, 0.017750436440110207, -0.0003042324970010668, -0.010374167002737522, 0.01187826693058014, 0.0009072245447896421, -0.014051999896764755, -0.012836357578635216, -0.035521477460861206, 0.04197056218981743, -0.014031396247446537, 0.012146120890974998, 0.026702921837568283, 0.05208718031644821, -0.037211015820503235, -0.0013727485202252865, -0.02511640451848507, -0.0103638656437397, -0.014330156147480011, 0.00593913346529007, 0.012743639759719372, 0.010446282103657722, 0.0157003290951252, 0.012218235060572624, -0.01933695375919342, 0.024477677419781685, -0.045741114765405655, -0.02715621143579483, -0.014752539806067944, 0.006902375724166632, -0.01737956330180168, -0.017987385392189026, 0.02241726778447628, 0.039436258375644684, -0.008524948731064796, 0.03840605169534683, -0.03249267488718033, -0.0026192970108240843, 0.009374868124723434, -0.007062057498842478, -0.03146246820688248, -0.013217533938586712, 0.003301807912066579, -0.0071341716684401035, -0.013238138519227505, -0.027279837056994438, 0.01191947516053915, -0.01131165400147438, 0.014144718647003174, -0.00786561705172062, 0.006206986960023642, -0.020161118358373642, 0.0034923958592116833, 0.021778540685772896, 0.05324101075530052, -0.021160416305065155, -0.016297847032546997, 0.00027171664987690747, 0.008097413927316666, -0.020624710246920586, 0.01631845161318779, 0.021047094836831093, 0.0076750293374061584, 0.0015195527812466025, -0.006804505828768015, -0.00313182407990098, -0.018914569169282913, -0.009601512923836708, -0.044999368488788605, -0.024065595120191574, 0.02031564898788929, -0.03269871696829796, 0.025033988058567047, -0.07100174576044083, 0.029134206473827362, -0.004934683442115784, 0.015854859724640846, -0.05558987706899643, 0.023406263440847397, -0.01690566912293434, -0.03638685122132301, 0.003543906146660447, 0.02227303944528103, -0.03364650532603264, -0.0092563945800066, -0.002758374670520425, 0.013341158628463745, 0.0075977640226483345, 0.005959737580269575, 0.024560093879699707, -0.02993776649236679, -0.01741047017276287, 0.014876164495944977, 0.04143485799431801, 0.04182633385062218, 0.03150367736816406, 0.0606996975839138, -0.01930604688823223, 0.0220669973641634, 0.0027145908679813147, 0.012846659868955612, 0.02451888658106327, -0.054147589951753616, 0.011352862231433392, 0.010611115023493767, -0.037623096257448196, 0.03088555485010147, 0.005192234646528959, -0.025693319737911224, 0.015380965545773506, 0.004973316099494696, -0.04557628184556961, -0.006649975199252367, -0.024354053661227226, 0.018646715208888054, 0.05249926075339317, -0.0003431871300563216, 0.03350227698683739, -0.001300634234212339, 0.0029644158203154802, -0.01601969264447689, -0.012228536419570446, -0.005805206950753927, 0.014907070435583591, -0.012372765690088272, 0.027135606855154037, -0.0029541137628257275, 0.041002169251441956, -0.00012306123971939087, 0.01055960450321436, -0.0014500139513984323, 0.012372765690088272, -0.04936743900179863, -0.008705235086381435, -0.012331557460129261, -0.011929777450859547, -0.009029749780893326, 0.0012085596099495888, 0.0037499472964555025, 0.043309830129146576, 0.023941971361637115, 0.010523547418415546, 0.006073060445487499, -0.013392669148743153, 0.01563851721584797, 0.01848188228905201, 0.0029412361327558756, 0.008674328215420246, 0.03150367736816406, -0.014577404595911503, -0.02748587727546692, 0.0027377705555409193, 0.021510686725378036, -0.04102277383208275, 0.005022251047194004, -0.004906352609395981, 0.02919601835310459, 0.003994620870798826, -0.03628383204340935, -0.015762140974402428, 0.03622201830148697, 0.0030288035050034523, -0.034779731184244156, -0.0007385284407064319, -0.023653512820601463, -0.025837548077106476, 0.00045232451520860195, -0.058680493384599686, 0.057856328785419464, 0.04021921381354332, -0.009719987399876118, 0.007417478132992983, 0.0027017134707421064, -0.0031421261373907328, 0.004437609110027552, 0.012310952879488468, -0.017719531431794167, 0.010332958772778511, -0.028392458334565163, -0.040466465055942535, 0.004393825773149729, 0.008504345081746578, 0.026249630376696587, -0.0024364355485886335, -0.013990188017487526, -0.014680425636470318, -0.010327808558940887, 0.00176422658842057, -0.014917372725903988, -0.02322082780301571, 0.004651376977562904, -0.036325037479400635, -0.003919931128621101, -0.0048522669821977615, -0.002758374670520425, -0.0681171715259552, 0.030370451509952545, 0.004239294677972794, 0.0034177061170339584, -0.023055994883179665, -0.030576493591070175, -0.020562898367643356, 0.015205830335617065, -0.021242832764983177, 0.028969373553991318, 0.004259898792952299, 0.029628705233335495, -0.016720231622457504, -0.011043800972402096, 0.01601969264447689, -0.04392795264720917, -0.03766430541872978, -0.009632419794797897, -0.017760738730430603, -0.013629616238176823, 0.009338811039924622, -0.019882962107658386, 0.018811548128724098, 0.03364650532603264, -0.018543696030974388, -0.015339757315814495, -0.01996537856757641, 0.015040997415781021, -0.025301842018961906, -0.012846659868955612, 0.017626812681555748, 0.029875952750444412, 0.015690026804804802, 0.025981778278946877, 0.0007977652130648494, -0.0002598048886284232, 0.017956478521227837, 0.04508178308606148, -0.006454236339777708, 0.03758189082145691, 0.017348656430840492, -0.0024299968499690294, -0.0005386042175814509, 0.034429460763931274, 0.006443934049457312, -0.014937976375222206, -0.02668231725692749, 0.014464082196354866, -0.01560761034488678, 0.032678112387657166, 0.011157123371958733, -0.024869155138731003, -0.005800055805593729, -0.0426504984498024, 0.008494042791426182, 0.029546288773417473, 0.006979641038924456, -0.023282639682292938, -0.006330611649900675, 0.0001497017074143514, 0.019110308960080147, -0.0167305339127779, -0.009699382819235325, -0.019769638776779175, 0.031070992350578308, -0.005341614596545696, 0.022170018404722214, 0.005758847575634718, -0.0009645296959206462, 0.024189220741391182, -0.014577404595911503, 0.022499684244394302, 0.01685415953397751, 0.01829644665122032, -0.011002592742443085, -0.0003769907634705305, -0.009586060419678688, 0.016029994934797287, 0.002265163930132985, 0.025487279519438744, 0.0015504589537158608, 0.031792134046554565, 0.02214941382408142, 0.03407919034361839, 0.01094077993184328, -0.015288246795535088, 0.022046392783522606, -0.01079655159264803, -0.012990889139473438, -0.001966404262930155, -0.006655126344412565, 0.01617422327399254, 0.03807638958096504, -0.007855315692722797, -0.011558903381228447, 0.002418407006189227, 0.003520726691931486, 0.04102277383208275, 0.020480481907725334, 0.019233932718634605, -0.003384224371984601, 0.010157824493944645, 0.02425103262066841, 0.0017899817321449518, 0.005861868150532246, 0.025961173698306084, 0.04454607889056206, 0.02431284449994564, 0.01655539870262146, -0.004414429888129234, 0.039518676698207855, -0.009503643959760666, -0.020480481907725334, -0.011909172870218754, 0.04213539510965347, -0.034635502845048904, -0.02627023495733738, -0.05612558498978615, 0.01482465397566557, -0.011126217432320118, 0.008519797585904598, -0.00027332635363563895, -0.014907070435583591, 0.004401552025228739, -0.0331726111471653, 0.032059989869594574, 0.005573410540819168, 0.04512299224734306, -0.014041698537766933, 0.02999957837164402, -0.005588863510638475, -0.0253224465996027, -0.02214941382408142, -0.014422873966395855, 0.03618080914020538, -0.03230723738670349, 0.016122713685035706, 0.02526063472032547, 0.0004690653586294502, 0.028000980615615845, 0.019996285438537598, 0.0029515381902456284, 0.027279837056994438, 0.03710799664258957, -0.008195282891392708, 0.008354964666068554, -0.023262035101652145, 0.0002944133593700826, 0.03032924421131611, 0.010765645653009415, 0.0007456110906787217, 0.002802158473059535, -0.012177026830613613, 0.02526063472032547, 0.008432229980826378, -0.008179830387234688, -0.029092997312545776, -0.012331557460129261, -0.0004790454695466906, 0.026991378515958786, 0.04207358509302139, 0.012074005790054798, -0.043433453887701035, -0.05476571246981621, 0.0007687907200306654, 0.006382121704518795, -0.0053158593364059925, 0.08818557113409042, 0.029546288773417473, 0.03784974291920662, 0.0038812984712421894, 0.06387272477149963, -0.009385170415043831, 0.028207020834088326, 0.04504057392477989, 0.006644824054092169, 0.017276542261242867, -0.00921003520488739, -0.018553998321294785, 0.019357558339834213, 0.016864459961652756, 0.0010656185913830996, 0.024127408862113953, 0.023941971361637115, -0.0010585359996184707, -0.011867964640259743, 0.026661712676286697, -0.004836814012378454, 0.029154809191823006, -0.0007642835262231529, -0.004028102848678827, -0.030700117349624634, -0.013495689257979393, 0.013567803427577019, 0.02342686802148819, -0.0021750209853053093, 0.0005344189703464508, 0.054889339953660965, 0.0099929915741086, -0.011527997441589832, 0.024807343259453773, 0.0007803805056028068, -0.018605507910251617, 0.01720442809164524, 0.008200434036552906, -0.013196930289268494, 0.03529483452439308, 0.028742726892232895, -0.030164411291480064, 0.012537598609924316, 0.0027274684980511665, -0.032121799886226654, 0.0027532237581908703, -0.00864857342094183, -0.006619069259613752, -0.05175751447677612, 0.006191533990204334, 0.035047583281993866, -0.029608100652694702, 0.01782255247235298, -0.002029504394158721, 0.001374036306515336, 0.02999957837164402, 0.007000245153903961, -0.019439974799752235, 0.04314499720931053, -0.03067951463162899, -0.020480481907725334, 0.037355244159698486, -0.042568083852529526, 0.003214240539819002, -0.04924381151795387, -0.007438082247972488, -0.048048775643110275, -0.019110308960080147, -0.003850392298772931, 0.007268098182976246, -0.01246548444032669, 0.02952568419277668, 0.002636037766933441, -0.027877354994416237, 0.037623096257448196, 0.013299950398504734, -0.03292535990476608, -0.0014873589389026165, 0.024086199700832367, -0.0263526514172554, 0.032059989869594574, -0.01584455743432045, 0.003054558765143156, -0.0033146855421364307, -0.030164411291480064, 0.026105402037501335, -0.018018290400505066, 0.023550493642687798, 0.04998556151986122, -0.039580486714839935, 0.0007945458637550473, 0.026867754757404327, -0.018306748941540718, 0.0054652392864227295, -0.014051999896764755, 0.001287756604142487, -0.027712522074580193, 0.013722334988415241, -0.023735929280519485, -0.0003509136731736362, -0.020367158576846123, 0.03929203003644943, 0.027877354994416237, -0.0022922067437320948, 0.0016959754284471273, 0.022911766543984413, 0.050480060279369354, 0.021345853805541992, 0.022376058623194695, -0.02443647012114525, 0.035377249121665955, -0.020243534818291664, -0.00753080053254962, 0.027321044355630875, -0.03142126277089119, 0.0017088530585169792, 0.0024776437785476446, 0.022705724462866783, -0.01916181854903698, -0.024292241781949997, -0.0008306030067615211, -0.013732636347413063, 0.019378161057829857, 0.01903819479048252, -0.014433176256716251, -0.02822762541472912, -0.00786561705172062, -0.02167551964521408, 0.006474840454757214, 0.027712522074580193, 0.01993447169661522, -0.02499278075993061, 0.02194337360560894, 0.013536897487938404, 0.010034199804067612, -0.015545797534286976, 0.01590636931359768, -0.018976381048560143, 0.023241432383656502, -0.04462849348783493, -0.0016367386560887098, -0.03535664454102516, -0.04219720885157585, -0.005261773709207773, 0.0029154811054468155, -0.0031550037674605846, 0.059422243386507034, 0.025919964537024498, -0.026167213916778564, 0.028557291254401207, 0.0049604387022554874, 0.0027532237581908703, 0.021510686725378036, -0.02878393605351448, 0.0539003424346447, -0.0278361476957798, 0.008226189762353897, 0.011569205671548843, 0.02627023495733738, 0.005022251047194004, 0.012558202259242535, 0.027197420597076416, -0.032472070306539536, 0.026661712676286697, 0.014567103236913681, -0.026991378515958786, -0.019522391259670258, 0.00294638704508543, -0.007541102822870016, 0.016864459961652756, -0.020418668165802956, 0.026970773935317993, -0.026558691635727882, 0.021634310483932495, 0.01368112675845623, -0.02377713844180107, 0.023262035101652145, -0.012249141000211239, -0.007340212818235159, -0.01655539870262146, -0.02069682441651821, -0.04673011228442192, -0.027527086436748505, 0.023921366780996323, 0.01815221644937992, -0.030658910050988197, 0.007860466837882996, 0.004489119630306959, 0.0036598043516278267, -0.026867754757404327, -0.0103638656437397, -0.022582100704312325, 0.003899327013641596, -0.016236035153269768, 0.004844540264457464, 0.04874931648373604, 0.027650710195302963, -0.008612516336143017, -0.03156549111008644, 0.007695633452385664, -0.011703131720423698, -0.006814808119088411, 4.016191087430343e-05, -0.05315859243273735, -0.061194196343421936, 0.003688134951516986, -0.016390565782785416, -0.011620716191828251, -0.01229034923017025, -0.04751306772232056, 0.02113981358706951, 0.0021492657251656055, -0.03508879244327545, 0.007948033511638641, -0.0033507426269352436, -0.019141213968396187, -0.04417520388960838, -0.02336505614221096, 0.009725137613713741, 0.011847360990941525, -0.006876620464026928, -0.003955988213419914, 0.02552848681807518, 0.04903777316212654, -0.023735929280519485, -0.006067909300327301, -0.004252172540873289, 0.021242832764983177, -0.011734038591384888, 0.005851565860211849, 0.0008228764636442065, -0.009313056245446205, 0.024395260959863663, 0.02999957837164402, 0.0032992325723171234, 0.02214941382408142, -0.008509495295584202, -0.017698926851153374, 0.010358714498579502, -0.011795850470662117, 0.026517484337091446, -0.00016016472363844514, -0.028742726892232895, -0.0005785246612504125, -0.0026218725834041834, -0.0036417758092284203, 0.04693615436553955, 0.03201878070831299, -0.002633462194353342, 0.012197630479931831, -0.0029103299602866173, 0.0005218633450567722, 0.003742220811545849, 0.01625663973391056, 0.021984580904245377, 0.019295744597911835, 0.012413973920047283, -0.010672926902770996, -0.004870295524597168, 0.02824822999536991, -0.010204183869063854, 0.011929777450859547, 0.011661924421787262, -0.03183334320783615, -0.028680915012955666, -0.021016187965869904, -0.0055425046011805534, 0.026022985577583313, 0.0060163987800478935, 0.018914569169282913, -0.0025240029208362103, -0.059751905500888824, -0.005372520536184311, -0.011960683390498161, -0.004720915574580431, -0.003479518461972475, -0.017987385392189026, -0.04149666801095009, 0.03560389578342438, 0.021840352565050125, -0.0220669973641634, 0.03276052698493004, 0.04965589568018913, 0.012197630479931831, 0.006541803479194641, 0.016627512872219086, 0.06519138813018799, 0.017276542261242867, -0.016926273703575134, 0.0013791873352602124, 0.01374293863773346, -0.007875919342041016, 0.021696124225854874, 0.0426504984498024, -0.02721802331507206, 0.017132313922047615, -0.02014051377773285, 0.014659821055829525, 0.024827947840094566, 0.05221080407500267, -0.01089957170188427, 0.05324101075530052, -0.03473852202296257, -0.03719041123986244, -0.006979641038924456, -0.049738310277462006, -0.019089704379439354, 0.004066735506057739, -0.00980240385979414, 0.01566942222416401, -0.051221806555986404, 0.015483985655009747, -0.0202847421169281, -0.025610903277993202, -0.002632174640893936, -0.01735895872116089, -0.00016853514534886926, -0.005017099902033806, 0.019501786679029465, -0.0005920461262576282, 0.023818345740437508, 0.039910152554512024, 0.015051299706101418, 0.002997897332534194, -0.01022993866354227, 0.05929861590266228, 0.046153198927640915, -0.0003657228662632406, 0.021696124225854874, -0.0009915726259350777, -0.03877692669630051, -0.024889759719371796, 0.0009992991108447313, 0.006232742220163345, -0.024807343259453773, -0.025549091398715973, -0.02546667493879795, 0.010394771583378315, -0.03166851028800011, 0.00966847687959671, -0.004033253528177738, -0.01337206456810236, 0.04495815932750702, 0.03243086114525795, -0.006907526403665543, -0.03129763528704643, -0.0022831924725323915, 0.022376058623194695, -0.016833554953336716, -0.0065521057695150375, -0.011703131720423698, -0.01027629803866148, 0.027712522074580193, 0.007458686362951994, -0.00793773215264082, 0.006516048684716225, -0.013897469267249107, -0.011476486921310425, 0.0014281220501288772, 0.018883662298321724, 0.004993920214474201, 0.018553998321294785, -0.0260641947388649, -0.004303682595491409, -0.014855560846626759, 0.012362463399767876, 0.01812131144106388, 0.01211521402001381, -0.04462849348783493, 0.010848062112927437, 0.0009703246178105474, 0.005588863510638475, -0.003649502294138074, -0.040322236716747284, -0.021510686725378036, 0.003556783776730299, 0.017101407051086426, -0.04854327440261841, 0.0447109080851078, -0.029566891491413116, -0.014082906767725945, -0.02146947756409645, -0.008612516336143017, 0.011280748061835766, 0.018790945410728455, 0.017956478521227837, -0.03222482278943062, -0.0159887857735157, -0.018234632909297943, -0.01150739286094904, 0.01117772702127695, -0.022190622985363007, -0.03560389578342438, -0.03665470331907272, 0.039230216294527054, -0.014082906767725945, 0.01611241139471531, 0.004993920214474201, -0.02025383524596691, -0.02274693362414837, 0.0054652392864227295, 0.016328753903508186, -0.0074020251631736755, 0.025075197219848633, -0.027073794975876808, -0.014639217406511307, -0.0018569451058283448, -0.017492886632680893, 0.04487574100494385, 0.03603658080101013, 0.00018881731375586241, -0.026929566636681557, -0.020130211487412453, 0.013732636347413063, -0.027073794975876808, -0.009204884059727192, 0.04429882764816284, 0.0373140349984169, -0.008205585181713104, 0.045617491006851196, 0.01611241139471531, 0.009199732914566994, -0.026435067877173424, 0.01506160106509924, 0.01981084793806076, -0.0030854649376124144, -0.0018221755744889379, -0.010786249302327633, 0.022170018404722214, -0.020604105666279793, 0.02055259607732296, -0.012547900900244713, 0.029917161911725998, -0.023674117401242256, 0.05179872363805771, -0.037272825837135315, -0.02587875723838806, -0.00505058141425252, -0.03127703443169594, -0.014536196365952492, -0.03364650532603264, 0.06646884232759476, 0.011497091501951218, 0.014731936156749725, 0.004141425248235464, 0.012980586849153042, -0.0018492185045033693, -0.02979353629052639, -0.05991673842072487, 0.01916181854903698, 0.034305837005376816, 0.04178512841463089, -0.008895822800695896, 0.0072114369831979275, 0.011888569220900536, -0.026558691635727882, 0.0167305339127779, 0.011703131720423698, -0.020192023366689682, 0.022973578423261642, 0.019439974799752235, -0.012197630479931831, 0.0067735998891294, -0.04512299224734306, -0.00041497955680824816, -0.030185015872120857, -0.02870151959359646, 0.019017590209841728, -0.0013495689490810037, -0.05324101075530052, 0.016627512872219086, 0.050274018198251724, -0.02552848681807518, 0.029546288773417473, -0.01042567752301693, -0.03686074540019035, -0.018523091450333595, -0.010714135132730007, -0.015040997415781021, 0.011455883271992207, 0.03100917860865593, 0.008303455077111721, 0.009704533964395523, 0.03026743233203888, 0.01174433995038271, 0.009338811039924622, 0.0263526514172554, 0.009611815214157104, 0.021963976323604584, 0.024333449080586433, 0.038900550454854965, 0.01270243152976036, 0.04281533136963844, 0.009070958010852337, -0.017750436440110207, -0.015082205645740032, -0.04611198976635933, -0.07260886579751968, 0.015545797534286976, -0.001999886007979512, -0.0051973857916891575, -0.027444669976830482, 0.03770551458001137, 0.01783285290002823, -0.006516048684716225, -0.0004455637827049941, -0.013876865617930889, -0.011610413901507854, -0.020892564207315445, -0.0013289648341014981, -0.028186416253447533, -0.0029875952750444412, -0.003466640831902623, 0.030926762148737907, 0.006541803479194641, 0.027341648936271667, -0.014051999896764755, 0.023715326562523842, 0.017935873940587044, 0.014577404595911503, -0.03379073366522789, -0.006541803479194641, 0.039044782519340515, -0.031174011528491974, -0.0004677776014432311, -0.014340457506477833, 0.028557291254401207, -0.021778540685772896, -0.02931964211165905, 0.006248195189982653, -0.01655539870262146, -0.05369430035352707, -0.010693530552089214, 0.012269744649529457, -0.0238389503210783, -0.0077471439726650715, 0.044463660567998886, 0.011703131720423698, -0.03352288156747818, 0.03834424167871475, 0.01246548444032669, 0.03988954797387123, -0.0019148940918967128, -0.030370451509952545, -0.0037911555264145136, -0.0034099796321243048, 0.014093208126723766, 0.0043165599927306175, 0.028763331472873688, 0.04475211724638939, 0.0009155949810519814, -0.004625621717423201, 0.023385660722851753, 0.011064404621720314, -0.02763010561466217, 0.026167213916778564, -0.00812831986695528, -0.01337206456810236, -0.0012755229836329818, 0.012383067980408669, -0.004594715777784586, 0.011847360990941525, -0.02045987732708454, 0.025549091398715973, -0.01898668333888054, -0.00038342952029779553, 0.06416118890047073, -0.02369472198188305, -0.017904968932271004, 0.017307449132204056, -0.03603658080101013, 0.03175092861056328, 0.00189171452075243, -0.01638026349246502, 0.02348867990076542, -0.014515592716634274, -0.044257618486881256, 0.004306258168071508, 0.021634310483932495, 0.01767832227051258, -0.005269499961286783, -0.031730324029922485, 0.012537598609924316, 0.027753731235861778], [0.05985495075583458, 0.03640946373343468, 0.0026404906529933214, 0.005556810647249222, -0.015216581523418427, 0.058659691363573074, -0.030433163046836853, 0.02827250026166439, 0.0054160226136446, -0.04330519586801529, 0.010148218832910061, 0.0098264180123806, 0.0002494315558578819, -0.011728490702807903, 0.000560278189368546, 0.0006892140372656286, 0.013262790627777576, 0.02074466086924076, 0.007343954406678677, 0.0004349339287728071, 0.01343518402427435, -0.0016635953215882182, 0.023951174691319466, -0.009263266809284687, -0.0011981334537267685, 0.007705980446189642, 0.018790869042277336, -0.009993065148591995, 0.0717615857720375, -0.03303055465221405, 0.05135021731257439, -0.02157214842736721, -0.034156858921051025, -0.04827012121677399, 0.015377482399344444, -0.02661752514541149, -0.012653668411076069, -0.03475448861718178, -0.007866880856454372, 0.02516942098736763, -0.029375817626714706, -0.059441208839416504, -0.0348004586994648, 0.024686720222234726, -0.02606586553156376, 0.02659454010426998, -0.011383703909814358, -0.01766456663608551, -0.019882693886756897, 0.01956089213490486, 0.05139618739485741, 0.005522332154214382, -0.0018833967624232173, 0.02978956140577793, -0.023836245760321617, 0.017055442556738853, 0.017986366525292397, 0.04160425066947937, -0.022985773161053658, -0.0036719772033393383, -0.02834145724773407, 0.008740340359508991, 0.004019637126475573, -0.0011184015311300755, -0.03677723556756973, -0.043512068688869476, 0.007246264722198248, 0.02845638617873192, 0.0059418221935629845, -0.004464986268430948, 0.03323742747306824, -0.019124163314700127, 0.034202829003334045, 0.00824039988219738, -0.004824139177799225, 0.0026634763926267624, 0.010803312994539738, -0.054706137627363205, 0.011872151866555214, 0.06367059051990509, -0.041213490068912506, -0.019836721941828728, 0.007884119637310505, -0.003985158167779446, -0.07833551615476608, 0.06390044838190079, -0.04112154617905617, -0.03303055465221405, -0.05360282212495804, -0.025491222739219666, -0.06886537373065948, -0.003114572260528803, 0.03778861090540886, 0.011435422115027905, -0.021250346675515175, 0.01797487400472164, -0.00567173957824707, -0.021204374730587006, 0.026456624269485474, 0.0798066034913063, -0.018974754959344864, -0.015492411330342293, -0.048545952886343, -0.022146793082356453, 0.030938850715756416, -0.050844527781009674, -0.03169738128781319, -0.003680596826598048, -0.049005668610334396, 0.008602425456047058, 0.04486822709441185, -0.026479611173272133, -0.025376293808221817, 0.051442161202430725, -0.014182222075760365, -0.014331629499793053, 0.0038788490928709507, 0.024709705263376236, 0.038018468767404556, -0.0549359954893589, 0.0012498514261096716, -0.003562794765457511, -0.014446558430790901, -0.018434589728713036, 0.0015673424350097775, -0.0126076964661479, 9.409800986759365e-05, -0.0024034499656409025, 0.02325010858476162, -0.04558078944683075, 0.023399516940116882, -0.020641224458813667, 0.08104783296585083, -0.06578528136014938, 0.05916538089513779, 0.028870129957795143, 0.0018891432555392385, 0.030134348198771477, -0.026157809421420097, -0.01329727005213499, 0.035007331520318985, -0.02824951522052288, -0.004852871410548687, 0.030226292088627815, -0.02315816655755043, -0.01572226919233799, 0.04339713975787163, -0.05089050158858299, 0.0016693416982889175, 0.03206515312194824, 0.049971070140600204, -0.023169659078121185, -0.032685767859220505, 0.01737724430859089, 0.004671858157962561, -0.024020133540034294, 0.04397178441286087, 0.09929853677749634, -0.01813577488064766, -0.04077675938606262, -0.01583719812333584, -0.011148099787533283, -0.023744303733110428, -0.020917052403092384, -0.038868941366672516, 0.006786549463868141, -0.023836245760321617, 0.02150319144129753, -0.03461657464504242, -0.009286251850426197, -0.0037696666549891233, -0.05249950662255287, -0.006539452355355024, -0.009659770876169205, -0.0468909777700901, -0.022169778123497963, -0.009073633700609207, -0.008119724690914154, -0.004011017270386219, -0.0027396169025450945, 0.03381207212805748, -0.0029824040830135345, -0.04730471968650818, -0.018342645838856697, 0.013676534406840801, -0.004039749503135681, 0.0026778425090014935, 0.012849046848714352, -0.07580707967281342, -0.01379146333783865, 0.0004090749134775251, 0.002705138176679611, -0.03640946373343468, -0.051626045256853104, 0.011619308032095432, -0.00809673871845007, -0.03224904090166092, -0.00037531458656303585, 0.006550945341587067, 0.001363343675620854, 0.014032814651727676, -0.03526017442345619, 0.057004716247320175, 0.028134586289525032, -0.049143582582473755, 0.02365235984325409, -0.038822971284389496, 0.03064003586769104, 0.026916339993476868, -0.021468712016940117, 0.013101890683174133, -0.04392581060528755, 0.05672888830304146, 0.0030887131579220295, 0.013377719558775425, -0.02898505888879299, 0.03925969824194908, -0.026479611173272133, 0.03215709701180458, -0.03960448503494263, -0.04339713975787163, 0.0006295946659520268, -0.025675108656287193, 0.008832283318042755, -0.010636666789650917, 0.009079379960894585, -0.018721912056207657, -0.014802837744355202, 0.03863908350467682, 0.029306860640645027, -0.045213013887405396, 0.003873102832585573, 0.02677842602133751, -0.04937344044446945, 0.01223992370069027, 0.047672491520643234, 0.01459596585482359, -0.015641817823052406, -0.00098982488270849, -0.017676059156656265, 0.008171441964805126, 0.04790234938263893, -0.05420045182108879, -0.02829548716545105, 0.020963024348020554, -0.01217096671462059, 0.02749098464846611, -0.0028315598610788584, 0.024525819346308708, 0.01586018316447735, 0.0051488131284713745, -0.04969524219632149, 0.03064003586769104, 0.002861728658899665, -0.005548190791159868, -0.013055918738245964, 0.04645424708724022, -0.0013202453264966607, 0.057786233723163605, -0.017101414501667023, -0.0468909777700901, 0.04739666357636452, -0.0016865810612216592, -0.05203979089856148, -0.005048250313848257, 0.010102246887981892, 0.010176951065659523, -0.031490508466959, -0.00442763464525342, -0.003450739197432995, -0.008510482497513294, 0.03383505716919899, 0.024709705263376236, -0.057050690054893494, -0.03358221426606178, 0.0369381383061409, 0.05323505029082298, 0.0535108782351017, -0.03399595990777016, 0.01217096671462059, -0.012757103890180588, -0.02684738300740719, 0.017469188198447227, -0.04376491159200668, -0.011102127842605114, 0.02085958980023861, 0.016469305381178856, -0.027812784537672997, -0.015756746754050255, -0.02921491675078869, -0.027720842510461807, -0.009820671752095222, 0.004706337116658688, 0.010613680817186832, 0.040363017469644547, 0.019848214462399483, 0.003413387341424823, -0.010521737858653069, -0.042063962668180466, -0.044316571205854416, -0.01934252865612507, 0.05272936448454857, -0.018216224387288094, 0.012745611369609833, 0.008929972536861897, -0.0259279515594244, -0.06587722152471542, 0.020307930186390877, -0.00841853953897953, -0.008004795759916306, -0.01498672366142273, -0.02519240789115429, 0.03215709701180458, -0.05406253784894943, 0.0034478658344596624, 0.03215709701180458, 0.013216819614171982, 0.0034593588206917048, -7.030414417386055e-05, -0.05815400555729866, 0.029375817626714706, 0.012343360111117363, -0.0010652468772605062, -0.05594737082719803, 0.016722150146961212, 0.01974477805197239, 0.0018288055434823036, 0.06684263050556183, -0.02896207384765148, -0.0416732057929039, -0.038868941366672516, 0.022204255685210228, -0.012044545263051987, 0.010245908051729202, -0.031030792742967606, -0.030249277129769325, -0.007539333309978247, 0.013090397231280804, -0.03316846862435341, 0.009050647728145123, 0.005617148242890835, -0.020629731938242912, -0.02041136659681797, 0.010194189846515656, 0.004467859398573637, -0.01563032530248165, -0.012102009728550911, -0.016745135188102722, 0.008343835361301899, 0.050660643726587296, 0.026157809421420097, 0.0026821524370461702, -0.02246859297156334, -0.02516942098736763, -0.04643126204609871, 0.006263623014092445, 0.03829429671168327, -0.008125470951199532, -0.005479233805090189, 0.01221693865954876, 0.0312606506049633, 0.0367082804441452, 0.011872151866555214, 0.028640272095799446, 0.020606745034456253, 0.05810803547501564, -0.07589901983737946, 0.020227480679750443, -0.032570838928222656, 0.026525581255555153, 0.025307336822152138, 0.0022482958156615496, 0.0015098779695108533, 0.008769072592258453, -0.03238695487380028, 0.016710657626390457, -0.010337851010262966, -0.028548330068588257, 0.002784151816740632, -0.005436135455965996, 0.009096619673073292, -0.00522064371034503, 0.01840011030435562, -0.008912733756005764, 0.04013315960764885, 0.03201918303966522, -0.022250227630138397, 0.008154203183948994, -0.007999048568308353, -0.02907700277864933, 0.03785756975412369, -0.023008758202195168, 0.0025945191737264395, -0.00177421432454139, -0.042937424033880234, 0.019595371559262276, -0.0061716800555586815, 0.06707248836755753, 0.02441089041531086, -0.020756153389811516, 0.015101652592420578, -0.024824634194374084, -0.04822415113449097, 0.07635873556137085, 0.02526136487722397, 0.010969960130751133, 0.03064003586769104, -0.022663971409201622, 0.015595846809446812, -0.038110412657260895, -0.013596084900200367, -0.005243629217147827, 0.02128482609987259, 0.05819997563958168, 0.023974161595106125, -0.05525779724121094, -0.03452463075518608, -0.030341221019625664, -0.05254547670483589, -0.0329156257212162, -0.03937462717294693, -0.06744025647640228, -0.04224785044789314, -0.003916201181709766, -0.044339556246995926, 0.019480442628264427, -0.02666349709033966, -0.052361588925123215, 0.014894780702888966, -0.067716084420681, 0.005031011067330837, 0.009671264328062534, -0.026203781366348267, 0.01252724602818489, -0.004194903653115034, -0.04305235296487808, -0.008648397400975227, -0.05277533456683159, -0.0140902791172266, -0.0003471210948191583, 0.001784270629286766, -0.03785756975412369, 0.024089090526103973, 0.046040501445531845, -0.027697855606675148, -0.045304957777261734, -0.043672967702150345, -0.00688423914834857, 0.007751951925456524, -0.045281972736120224, -0.02434193342924118, -0.00806226022541523, -0.003235247451812029, -0.02291681617498398, 0.02239963598549366, -0.0007922908407635987, 0.05240756273269653, -0.053878650069236755, -0.019262077286839485, 0.028824159875512123, 0.026387667283415794, 0.009878136217594147, 0.004134566057473421, -0.02253754995763302, 0.006114215590059757, 0.010027543641626835, 0.023813260719180107, 0.0350533053278923, -0.006275116000324488, -0.03399595990777016, 0.057050690054893494, 0.010314865969121456, -0.01299845427274704, -0.022100821137428284, 0.025790037587285042, -0.0031318115070462227, 0.013412198051810265, 0.01797487400472164, -0.008659889921545982, -0.023859232664108276, -0.029306860640645027, -0.03211112320423126, -0.03985733166337013, -0.05649903044104576, 0.031007807701826096, 0.03902984410524368, 0.036547377705574036, 0.06702651083469391, -0.013504141941666603, -0.0275829266756773, -0.012481275014579296, -0.03935164213180542, 0.02997344732284546, -0.009240280836820602, 0.011998573318123817, 0.01076308824121952, -0.010998692363500595, -0.023813260719180107, 0.04636230319738388, 0.04456941410899162, 0.026456624269485474, -0.007252011448144913, -0.032616812735795975, -0.02171006239950657, 0.01815875992178917, 0.014285657554864883, 0.025514207780361176, 0.026962311938405037, -0.009556335397064686, -0.04314429685473442, 0.00827487837523222, -0.04468434303998947, -0.01495224516838789, 0.011728490702807903, -0.03712202236056328, -0.04139737784862518, 0.0017239329172298312, 0.061739787459373474, 0.020986011251807213, -0.010090754367411137, 0.012366346083581448, 0.04155827686190605, 0.018078310415148735, 0.018503546714782715, 0.025721080601215363, -0.014607458375394344, 3.631931758718565e-05, -0.037443824112415314, -0.042845480144023895, -0.014572979882359505, -0.019193120300769806, 0.01806681789457798, -0.021020488813519478, -0.02128482609987259, -0.014572979882359505, 0.0037438077852129936, -0.04643126204609871, 0.024663735181093216, -0.02896207384765148, 0.028732215985655785, 0.017871437594294548, 0.03245590999722481, 0.019848214462399483, 0.008757579140365124, 0.007671501487493515, -0.0026462371461093426, 0.005614275112748146, -0.02599690854549408, -0.0076944874599576, -0.016227954998612404, 0.014147743582725525, -0.021962905302643776, -0.04627035930752754, -0.014653430320322514, -0.029260888695716858, -0.010590694844722748, 0.011906630359590054, -0.018652955070137978, -0.011515872552990913, -0.0070738717913627625, 0.03319145739078522, -0.013527126982808113, 0.0002835510531440377, 0.017112907022237778, -0.04102960601449013, -0.011705504730343819, -0.008723100647330284, -0.011619308032095432, -0.02293980121612549, 0.011194071732461452, -0.041282448917627335, -0.021457219496369362, 0.012182459235191345, 0.007430151104927063, 0.026548568159341812, -0.017790988087654114, 0.060958269983530045, -0.017584117129445076, -0.04656917601823807, -0.012193952687084675, 0.008068006485700607, 0.008464510552585125, -0.02981254830956459, 0.009142591618001461, -0.033352356404066086, -0.03792652487754822, 0.002516942098736763, -0.01726231537759304, 0.003465105313807726, -0.024617763236165047, 0.008751832880079746, -0.01804383099079132, 0.012193952687084675, -0.013343241065740585, -0.008125470951199532, 0.024893591180443764, 0.01380295678973198, 0.011429675854742527, -0.021273333579301834, -0.011653786525130272, 0.0028329964261502028, -0.02514643594622612, -0.009079379960894585, 0.03774264082312584, -0.031835295259952545, 0.0032668530475348234, -0.014653430320322514, 0.032524868845939636, -0.01927356980741024, 0.0022497326135635376, -0.005131573881953955, -0.0029033904429525137, -0.00444487389177084, 0.04305235296487808, -0.02128482609987259, 0.007700233720242977, 0.018698927015066147, -0.003824257990345359, 0.004289719741791487, 0.019285064190626144, -0.02907700277864933, 0.0235604178160429, -0.019239092245697975, 0.0022195635829120874, -0.05406253784894943, 0.026111837476491928, -0.041144534945487976, 0.006849760189652443, 0.004795406945049763, -0.009941346943378448, -0.005154559388756752, -0.028640272095799446, -0.0073899258859455585, -0.013630563393235207, -0.004209269769489765, 0.017480680719017982, 0.004396029282361269, 0.004286846611648798, 0.017492173239588737, -0.012872032821178436, 0.0038788490928709507, -0.010895255953073502, 0.027238141745328903, -0.03937462717294693, -0.024571791291236877, 0.0064130304381251335, -0.04227083548903465, -9.820581681196927e-07, -0.022503072395920753, -0.00724051846191287, -0.009717235341668129, 0.01842309720814228, 0.006344073452055454, -0.011573337018489838, -0.007809416390955448, 0.0005405248375609517, -0.002870348282158375, -0.01586018316447735, -0.01840011030435562, 0.01256172452121973, -0.017388736829161644, -0.02526136487722397, 0.024227004498243332, -0.034823447465896606, 0.027123212814331055, 0.015216581523418427, 0.041144534945487976, -0.037374865263700485, 0.038891926407814026, 0.007010660599917173, 0.006298101972788572, -0.006734831258654594, 0.01176871545612812, 0.0046776048839092255, -0.028157571330666542, 0.015124638564884663, 0.033444300293922424, -0.011015932075679302, 0.009073633700609207, 0.031076764687895775, -0.029352832585573196, 0.0027123212348669767, -0.042040977627038956, 0.025422263890504837, -0.023905204609036446, -0.002639054087921977, 0.030387191101908684, -0.014435064978897572, -0.01137795764952898, 0.00015569270181003958, -0.001120556378737092, -0.016986485570669174, 0.0037466809153556824, -0.016871556639671326, -0.00981492456048727, 0.020652716979384422, 0.02249157801270485, 0.0033099513966590166, -0.0008942902204580605, -0.007033646572381258, -0.024617763236165047, -0.018641462549567223, 0.021847976371645927, -0.005864245351403952, -0.003740934422239661, -0.006194665562361479, -0.0028789681382477283, -0.013676534406840801, -0.008177189156413078, -0.006981928367167711, 0.001139950705692172, -0.004117326345294714, -0.019377006217837334, 0.002476717112585902, -0.0259279515594244, -0.03158245235681534, 0.02157214842736721, 0.04574168846011162, 0.009585067629814148, -0.01877937652170658, -0.013860421255230904, 0.03758173808455467, -0.04330519586801529, 0.01771053858101368, 0.01654975675046444, -0.0030341220553964376, 0.0027151943650096655, 0.014929259195923805, -0.03769666701555252, -0.020135536789894104, 0.030479134991765022, -0.00928050559014082, 0.021675582975149155, -0.007286489941179752, -0.021893948316574097, -0.017319779843091965, -0.041213490068912506, -0.018331153318285942, -0.006683113519102335, -0.028778187930583954, -0.00808524526655674, 0.01022866927087307, 0.017653074115514755, 0.01586018316447735, 0.03277771174907684, 0.011291760951280594, -0.04886775463819504, 0.03613363578915596, 0.006280862260609865, -0.014825823716819286, -0.022296199575066566, 0.007280743680894375, 0.01563032530248165, 0.006711845751851797, -0.020238973200321198, -0.02213529869914055, 0.013642055913805962, 0.045281972736120224, -0.02896207384765148, -0.027904728427529335, -0.016021084040403366, -0.011975587345659733, -0.0161015335470438, -0.007562319282442331, 0.0001295643305638805, -0.015423453412950039, -0.0426156222820282, 0.012688146904110909, -0.021043475717306137, 0.00849898997694254, 0.016986485570669174, -0.03562794625759125, -0.0021175644360482693, -0.0007829528767615557, -0.0058958507142961025, -0.011354971677064896, -0.031168708577752113, -0.04624737426638603, 0.02195141278207302, 0.01411326415836811, 0.005976301152259111, -0.03208813816308975, 0.003870229469612241, 0.020376887172460556, -0.02188245579600334, -0.012389331124722958, -0.015607339330017567, 0.03850116953253746, 0.004034003242850304, -0.021916935220360756, -0.0011758659966289997, -0.03477747365832329, 0.022192763164639473, -0.005729204043745995, 0.0006924464250914752, -0.03167439624667168, 0.010268894024193287, -0.07093409448862076, 0.015124638564884663, 0.015136131085455418, -0.010188443586230278, -0.06279712915420532, -0.016250941902399063, 0.0042811003513634205, -0.002593082608655095, 0.02659454010426998, -0.04771846532821655, 0.0031777829863131046, 0.01956089213490486, -0.05318908020853996, 0.006527959369122982, 0.03951254487037659, -0.012354852631688118, 0.029329845681786537, -0.04827012121677399, 0.016630206257104874, -0.0111883245408535, 0.019101176410913467, -0.02670946717262268, -0.029421789571642876, -0.043558038771152496, 0.0038127650041133165, -0.004482225514948368, 0.009303491562604904, -0.01097570639103651, -0.023502953350543976, -0.004404648672789335, 0.031996194273233414, 0.0045827883295714855, 0.0053786709904670715, -0.0031088257674127817, -0.004849998280405998, 0.022100821137428284, 0.002354605123400688, -0.012320374138653278, 0.009349463507533073, -0.014756865799427032, 0.02746799774467945, -0.018618475645780563, 0.04142036288976669, 0.001041542855091393, -0.023951174691319466, -0.0018503547180444002, -0.011550351046025753, 0.004321325104683638, -0.0033817817457020283, -0.01657274179160595, -0.007016407325863838, -0.014848809689283371, 0.020641224458813667, -0.01735425926744938, -0.01257321797311306, 0.027743827551603317, -0.007527840789407492, 0.01683707907795906, 0.010291879996657372, 0.05125827342271805, 0.05015495792031288, 0.025008520111441612, -0.004260987509042025, -0.02369833178818226, 0.027674870565533638, -0.02128482609987259, -0.0019063825020566583, 0.024181032553315163, -0.027743827551603317, 0.02843340113759041, 0.013975350186228752, 0.029283873736858368, -0.013101890683174133, 0.024617763236165047, 0.007671501487493515, 0.02083660289645195, 0.0004744407196994871, -0.04624737426638603, -0.005970554426312447, 0.013228312134742737, 0.04932747036218643, 0.0018359886016696692, 0.017722031101584435, 0.019354021176695824, 0.05259144678711891, 0.030065391212701797, -0.023146674036979675, 0.008981690742075443, 0.01915864087641239, -0.06983077526092529, 0.015055681578814983, -0.024663735181093216, 0.0019997621420770884, -0.04259263724088669, -0.0003390401543583721, 0.03401894494891167, -0.024709705263376236, -0.016664685681462288, 0.01297546923160553, 0.004539689980447292, 0.04328221082687378, 0.00902191549539566, 0.0004679759731516242, -0.014136250130832195, 0.01535449642688036, -0.03470851853489876, -0.015021202154457569, -0.004531070590019226, 0.007550826296210289, -0.019043711945414543, 0.004321325104683638, -0.0179978609085083, 0.011492886580526829, -0.015710776671767235, 0.01849205419421196, 0.04171917960047722, 0.01768755167722702, 0.017227835953235626, 0.01818174682557583, -0.023928189650177956, -0.009958585724234581, -0.026387667283415794, -0.03866206854581833, 0.011705504730343819, -0.02050330862402916, -0.02157214842736721, 0.015549875795841217, 0.0350533053278923, 0.0051947846077382565, -0.025353306904435158, 0.04385685548186302, 0.050752587616443634, -0.019871201366186142, -0.02076764591038227, -0.0011313309660181403, -0.025560179725289345, -0.01000455766916275, -0.005421769339591265, -0.02206634171307087, -0.00383862410672009, -0.010981452651321888, -0.004413268528878689, 0.02820354327559471, -0.01340070553123951, -0.035030316561460495, 0.021434232592582703, 0.003493837546557188, -0.00801628828048706, 0.00451095774769783, 0.0029263761825859547, 0.007700233720242977, -0.011676772497594357, 0.01853802613914013, 0.03790353983640671, -0.018319660797715187, 0.033421315252780914, 0.006165933795273304, 0.02048032358288765, 0.02213529869914055, 0.022204255685210228, -0.042891453951597214, 0.02516942098736763, -0.02372131682932377, 0.009142591618001461, -0.0021592259872704744, -0.027651885524392128, -0.013251298107206821, -0.002670659450814128, 0.026548568159341812, -0.024870606139302254, 0.008435778319835663, -0.0003670540463645011, 0.0268703680485487, 0.025445250794291496, -0.027973685413599014, -0.016676178202033043, 0.01448103692382574, 0.0010674018412828445, -0.00931498408317566, 0.012297388166189194, -0.010958467610180378, 0.007303729187697172, 0.02038837969303131, -0.02052629552781582, 0.022595014423131943, 0.027789799496531487, -0.0029177565593272448, -0.008958704769611359, -0.003235247451812029, -0.0060165259055793285, -0.017112907022237778, 0.02978956140577793, -0.02010105922818184, -0.027100225910544395, -0.0004805463249795139, -0.009412674233317375, 0.03588079288601875, 0.01766456663608551, 0.0076657552272081375, -0.021756034344434738, -0.004792533814907074, 0.010102246887981892, -0.020296437665820122, 0.0013195270439609885, -0.013182341121137142, 0.0116020692512393, -0.019894186407327652, -0.014446558430790901, -0.015756746754050255, 0.05797011777758598, 0.02126183919608593, -0.04305235296487808, -0.01692902110517025, -0.0019537906628102064, -0.03381207212805748, 0.018365632742643356, 0.02507747896015644, -0.026088852435350418, -0.001960973720997572, 0.005212023854255676, 0.0080507667735219, -0.0350533053278923, 0.030134348198771477, -0.048499979078769684, 0.021031981334090233, 0.027077240869402885, -0.016021084040403366, 0.009326477535068989, -0.02206634171307087, 0.01913565583527088, -0.001560159376822412, -0.024089090526103973, 0.042868465185165405, 0.010401062667369843, 0.026341695338487625, 0.022169778123497963, 0.03537510335445404, 0.024020133540034294, -0.0018604110227897763, 0.00819442793726921, -0.008901240304112434, -0.023284588009119034, 0.034317757934331894, -0.0348004586994648, -0.03762771189212799, -0.026203781366348267, 0.03355922922492027, 0.01565331220626831, 0.007757698185741901, -0.011194071732461452, -0.01299845427274704, -0.012366346083581448, 0.026203781366348267, 0.02325010858476162, 0.02244560793042183, -0.013871913775801659, 0.030111363157629967, 0.01996314339339733, 0.0087001146748662, -0.014504022896289825, 0.02076764591038227, 0.014101771637797356, -0.021836483851075172, -0.013055918738245964, -0.025353306904435158, 0.03530614823102951, -0.045948561280965805, 0.024755677208304405, -0.005634387489408255, -0.03827131167054176, -0.005410276353359222, -0.0018000733107328415, -0.039719413965940475, -0.028916101902723312, -0.033352356404066086, 0.02349145896732807, -0.017457693815231323, 0.006838267203420401, -0.02820354327559471, -0.0454658605158329, 0.000551299424842, -0.0004216452653054148, -0.015503903850913048, 0.018997741863131523, 0.015159117057919502, -0.014963737688958645, -0.019020726904273033, -0.018078310415148735, -0.01920461282134056, 0.0037811596412211657, 0.010820552706718445, 0.0005347783444449306, -0.027881743386387825, -0.02270994335412979, -0.01683707907795906, 0.004936194512993097, 0.0018848333274945617, -0.002914883429184556, 0.002021311316639185, -0.0074991085566580296, -0.00822890643030405, 0.043649982661008835, -0.016607221215963364, 0.049925100058317184, -0.0011830490548163652, -0.016710657626390457, -0.011096381582319736, -0.01372250635176897, -0.008815043605864048, -0.018009353429079056, -0.02909998781979084, 0.009889628738164902, 0.01459596585482359, 0.045304957777261734, -0.002334492513909936, -0.0006382143474183977, 0.007211786229163408, -0.002896207384765148, 0.025330321863293648, -0.0091770701110363, 0.014802837744355202, -0.017124401405453682, 0.020560773089528084, -0.020560773089528084, -0.0034334997180849314, -0.009521855972707272, -0.0027812784537672997, -0.02684738300740719, -0.04700590670108795, -0.0035513020120561123, -0.020756153389811516, 0.015170610509812832, -0.012366346083581448, 0.0026922086253762245, -0.008792058564722538, -0.005375797860324383, -0.042776525020599365, 0.02739904075860977, 0.006809535436332226, 0.013596084900200367, -0.031789325177669525, -0.03204216808080673, 0.004485099110752344, 0.042937424033880234, 0.006889985408633947, -0.0032438673079013824, -0.028778187930583954, -0.004289719741791487, 0.0027755319606512785, -0.0013525690883398056, 0.06049855425953865, -0.011469900608062744, -0.0307779498398304, 0.009539095684885979, 0.004459240008145571, -0.02050330862402916, 0.024755677208304405, -0.05511988326907158, -0.01676812209188938, -0.005122954025864601, 0.02251456491649151, 0.005551063921302557, 0.01605556160211563, -0.03378908708691597, 0.014274165034294128, -0.013711013831198215, -0.019928665831685066, -0.030065391212701797, -0.019101176410913467, 0.042086951434612274, 0.00863115768879652, -0.025606151670217514, -0.012872032821178436, -0.005361431743949652, 0.03696112334728241, -0.0028416162822395563, 0.014848809689283371, -0.014078785665333271, -0.002666349755600095, 0.041213490068912506, -0.010268894024193287, -0.00222243694588542, 0.005611401982605457, -0.0024781536776572466, 0.028157571330666542, 0.012596203945577145, -0.00012597281602211297, -0.014377600513398647, -0.048454008996486664, 0.021514683961868286, -0.0036116396076977253, 0.027215154841542244, 0.0022526057437062263, -0.0036403718404471874, -0.0006694606272503734, 0.024916578084230423, 0.005849879235029221, -0.014435064978897572, 0.022583521902561188, 0.0013719632988795638, 0.03861609846353531, 0.01292949728667736, 0.008326596580445766, -0.006280862260609865, -0.0012160910991951823, 0.009504617191851139, -0.03703007847070694, 0.013055918738245964, 0.011429675854742527, 0.06330281496047974, -0.01144691463559866, 0.03390401601791382, -0.002881841268390417, -0.005393037106841803, 0.023836245760321617, 0.016181984916329384, 0.008039274252951145, -0.033444300293922424, 0.010211429558694363, -0.02836444415152073, 0.0008648397051729262, 0.024916578084230423, 0.010280386544764042, 0.0064015379175543785, 0.05875163525342941, 0.021962905302643776, -0.005993540398776531, -0.0005189756629988551, 0.009717235341668129, 0.026548568159341812, 0.024249989539384842, 0.01184916589409113, 0.014538501389324665, 0.013929378241300583, -0.02606586553156376, -0.021411247551441193, -0.01292949728667736, -0.0004503774980548769, 0.01920461282134056, -0.034869417548179626, 0.030387191101908684, 0.060866326093673706, -0.016676178202033043, -0.026272738352417946, -0.022882336750626564, -0.010642413049936295, -0.03686917945742607, -0.014664922840893269, -0.015400467440485954, -0.009671264328062534, 0.003852990223094821, -0.030065391212701797, -0.04721277579665184, -0.022698450833559036, 0.003039868548512459, -0.02507747896015644, 0.0061716800555586815, -0.016239449381828308, -0.02090555988252163, 0.03144453838467598, -0.007568065542727709, -0.004712083376944065, 0.03135259449481964, 0.009705742821097374, -0.001405723625794053, -0.018434589728713036, -0.002320126397535205, 0.012389331124722958, -0.005720584187656641, -0.00924602709710598, 0.003272599307820201, -0.02157214842736721, 0.02192842774093151, 0.025353306904435158, 0.006165933795273304, 0.020756153389811516, -0.013239805586636066, 0.028479373082518578, -0.017032457515597343, -0.03532913327217102, 0.001335329725407064, 0.005168925505131483, 0.00852197501808405, -0.006217651534825563, 0.017457693815231323, -0.015998097136616707, 0.020112551748752594, -0.0007807979709468782, 0.03224904090166092, -0.032685767859220505, 0.0027123212348669767, -0.009309237822890282, -0.0025945191737264395, 0.009441406466066837, 0.009125351905822754, 0.011349225416779518, -0.008527721278369427, 0.009774699807167053, -0.030502120032906532, 0.04004121571779251, -0.027146197855472565, 0.03436373174190521, -0.03059406392276287, 0.016756627708673477, -0.014216700568795204, 0.02684738300740719, -0.010964213870465755, -0.0020902687683701515, 0.02907700277864933, -0.013090397231280804, -0.021847976371645927, -0.03153647854924202, 0.007878373377025127, 0.02905401773750782, 0.015193595550954342, -0.053097136318683624, 0.01931954175233841, -0.011441168375313282, 0.011648040264844894, 0.031053779646754265, -0.0007233335636556149, -0.010929735377430916, -0.014354615472257137, -0.028824159875512123, 0.00942416675388813, -0.02351444587111473, 0.02199738472700119, 0.0423857644200325, -0.03353624418377876, -0.00033042047289200127, -0.01037233043462038, 0.03928268700838089, -0.014009828679263592, 0.004996532574295998, -0.01723933033645153, -0.013170847669243813, 0.01737724430859089, -0.010791820473968983, 0.015147624537348747, 0.012619188986718655, 0.004921828396618366, -0.04482225701212883, 0.007366940379142761, -0.02249157801270485, 0.0019739032723009586, -0.035834819078445435, 0.0036030199844390154, 0.004450620152056217, -0.02893908880650997, -0.025629136711359024, -0.04496017098426819, -0.021445726975798607, 0.0007513474556617439, 0.030915863811969757, -0.026341695338487625, -0.005628641229122877, 0.015216581523418427, 0.012285895645618439, 0.03530614823102951, -0.018687432631850243, -0.001583145116455853, 0.006010779645293951, -0.00806226022541523, 0.019894186407327652, 0.0046919710002839565, 0.03560496121644974, -0.007797923404723406, -0.021422740072011948, -0.02981254830956459, -0.013883407227694988, -0.0416732057929039, 0.010510244406759739, 0.004226509016007185, 0.0020902687683701515, -0.02346847392618656, -0.019871201366186142, -0.0032812191639095545, 0.011050410568714142, 0.008947212249040604, 0.023307573050260544, 0.01661871373653412, 0.04895969480276108, -0.0063383267261087894, 0.005473487079143524, -0.0027209408581256866, -0.01777949556708336, -0.022962786257267, -0.01802084594964981, 0.008257638663053513, 0.017584117129445076, 0.0051344470120966434, -0.01889430545270443, -0.058613721281290054, -0.01617049053311348, -0.003149050986394286, -0.028502358123660088, 0.027123212814331055, 0.005789541639387608, -0.024020133540034294, -0.012285895645618439, -0.020618237555027008, 0.016044069081544876, -0.011653786525130272, -0.009539095684885979, 0.07585304975509644, -0.011728490702807903, 0.005358558148145676, -0.015584354288876057, -0.005516585428267717, 0.008182935416698456, -0.04077675938606262, -0.016894543543457985, 0.016400348395109177, -0.004611520562320948, -0.013343241065740585, 0.03137557953596115, 0.003933440428227186, 0.022951293736696243, 0.014653430320322514, -0.012044545263051987, -0.004048369359225035, 0.006372805684804916, -0.004105833824723959, -0.015032695606350899, 0.0018575377762317657, -0.02434193342924118, 0.02992747537791729, -0.0164578128606081, 0.00442763464525342, -0.006654381286352873, -0.04969524219632149, -0.008539214730262756, -0.020422859117388725, 0.004059862345457077, 0.031881265342235565, -0.018480561673641205, -0.0035886538680642843, 0.03305353969335556, 0.033490270376205444, -0.002894770819693804, -0.00830935686826706, 0.03307652845978737, -0.028065629303455353, -0.002666349755600095, 0.03640946373343468, 0.012056037783622742, -0.00413743918761611, 0.04068481922149658, -0.007016407325863838, -0.03719098120927811, -0.007602544501423836, -0.033329371362924576, -0.014641936868429184, 0.01920461282134056, -0.0004776730784215033, 0.02978956140577793, 0.0034593588206917048, 0.028502358123660088, -0.0021276206243783236, -0.026916339993476868, -0.016090041026473045, 0.022365156561136246, -0.016664685681462288, -0.011941108852624893, -0.01737724430859089, 0.01178020890802145, 0.04406372830271721, -0.014423572458326817, -0.0017095668008551002, 0.045213013887405396, 0.000513588369358331, -0.05525779724121094, 0.0019882693886756897, 0.004956307355314493, 0.03912178426980972, -0.04969524219632149, -0.002325872890651226, 0.0037466809153556824, -0.0013654985232278705, 0.016963500529527664, -0.00649922713637352, -0.011217056773602962, 0.05254547670483589, -0.007320968434214592, 0.005039630923420191, -0.008906986564397812, 0.0004187720478512347, 0.005832639988511801, 0.017905917018651962, 0.012458289042115211, -0.031973209232091904, 0.01636587083339691, 0.026456624269485474, -0.01960686407983303, 0.013676534406840801, 0.031996194273233414, 0.03245590999722481, 0.02429596148431301, -0.034961361438035965, 0.02313517965376377, 0.004990785848349333, 0.04100661724805832, 0.03436373174190521, 0.01967582106590271, 0.003180656349286437, -0.018009353429079056, 0.03958149999380112, -0.01887132041156292, 0.03686917945742607, -0.027766814455389977, 0.022238735109567642, 0.024112075567245483, -0.0026577298995107412, -0.017836960032582283, -0.031812310218811035, 0.017066936939954758, -0.01498672366142273, 0.01221693865954876, -0.005597035866230726, 0.008389807306230068, -0.012814568355679512, 0.010998692363500595, -0.022077834233641624, -0.04555780068039894, -0.028571315109729767, -0.00493044825270772, -0.001255597802810371, -0.013584591448307037, 0.02431894838809967, 0.022077834233641624, 0.04923552647233009, -0.03921372815966606, -0.01752665266394615, -0.04544287174940109, -0.003068600781261921, 0.010544722899794579, -0.027054253965616226, 0.03436373174190521, 0.004847124684602022], [0.03596973046660423, 0.005280474666506052, 0.05764591693878174, 0.03401203453540802, -0.04361182451248169, 0.0016805530758574605, -0.029766427353024483, -0.00880963634699583, 0.046772442758083344, 0.0033846928272396326, -0.015496468171477318, 0.0063743083737790585, -0.006574795115739107, 0.03821047022938728, -0.03137032315135002, -0.0012066075578331947, 0.014541205950081348, 0.016487110406160355, -0.004003843758255243, 0.0037620801012963057, 0.004929622169584036, 0.06377846002578735, -0.019624141976237297, 0.0062327878549695015, -0.03849351033568382, -0.023020628839731216, 0.027572862803936005, 0.02083885855972767, 0.046796031296253204, -0.018303286284208298, 0.054343778640031815, -0.009776690974831581, -0.023103181272745132, -0.04448453336954117, 0.01895192079246044, -0.017961278557777405, -0.024766044691205025, 0.021699773147702217, -0.002998460317030549, 0.020744509994983673, -0.05769309028983116, -0.021086517721414566, -0.009416993707418442, -0.022584274411201477, -0.06170283257961273, 0.014022299088537693, 0.01950620859861374, -0.02648787386715412, -0.006574795115739107, 0.03047402761876583, 0.03210151195526123, -0.00761261023581028, 0.00947006419301033, 0.021935639902949333, -0.027289822697639465, 0.050805773586034775, 0.04639505594968796, 0.05764591693878174, 0.019175995141267776, -0.004224969074130058, -0.006132544483989477, -0.00859145913273096, -0.022383786737918854, -0.00584065867587924, -0.007854374125599861, 0.019199581816792488, 0.0014336296590045094, 0.0003943402844015509, -0.035427238792181015, -0.021204451099038124, 0.024624524638056755, 0.027030369266867638, 0.00931085366755724, -0.052126627415418625, -0.05415508523583412, -0.0008874499471858144, 0.025638753548264503, -0.0021228038240224123, 0.03957849740982056, 0.0237989891320467, -0.03653581440448761, -0.0018545050406828523, -0.011445450596511364, 0.013703878037631512, -0.04849427565932274, 0.06882601976394653, -0.036323532462120056, -0.04363541305065155, -0.02957773394882679, -0.01219432894140482, -0.06580691784620285, 0.0410880483686924, -0.014883213676512241, 0.03714906796813011, -0.012217915616929531, -0.009670550934970379, 0.003532109782099724, -0.04283346235752106, -0.01820893958210945, 0.06019328162074089, -0.01935289427638054, 0.000911036622710526, 0.011905391700565815, 0.0541079118847847, 0.03962567076086998, -0.056702449917793274, -0.058636561036109924, 0.035710278898477554, -5.233301271800883e-05, 0.008685805834829807, 0.027855902910232544, -0.0011292137205600739, 0.01994256302714348, 0.0892992839217186, -0.027289822697639465, 0.0033817444927990437, 0.005999869201332331, 0.0036647850647568703, 0.025685926899313927, -0.0011292137205600739, -0.021192658692598343, -0.028610678389668465, 0.02307959459722042, -0.05439095199108124, -0.0011461667018011212, -0.025780273601412773, -0.02028457075357437, -0.009122160263359547, -0.02351594902575016, -0.03339878097176552, 0.03835199028253555, -0.05099446699023247, 0.07236402481794357, -0.04877731576561928, -0.013432631269097328, -0.02795024961233139, -0.011510314419865608, -0.011009096167981625, -0.008308418095111847, 0.012453782372176647, -0.0028761043213307858, -0.00011820995132438838, 0.02721906267106533, 0.016970638185739517, -0.04939056932926178, -0.04995664954185486, 0.0156615749001503, 0.044012799859046936, 0.024140996858477592, 0.01776079274713993, 0.003832840360701084, 0.028162531554698944, -0.012265088967978954, -0.019730282947421074, 0.004802843555808067, -0.0081374142318964, -0.005932057276368141, 0.053164441138505936, 0.03877655044198036, -0.0005104311276227236, -0.030356094241142273, 0.001797012402676046, -0.034979090094566345, -0.0488244891166687, -0.0008992432849481702, 0.0009913789108395576, -0.009670550934970379, 0.0014439488295465708, -0.028280464932322502, -0.018126385286450386, -0.06816559284925461, -0.05297574773430824, -0.02677091583609581, -0.014682726934552193, -0.02766720950603485, -0.03417714312672615, 0.040026646107435226, 0.04347030445933342, 0.0024146893993020058, 0.023563122376799583, 0.026110487058758736, 0.010042041540145874, -0.0768926739692688, -0.02530853822827339, -0.02427072450518608, 0.02319752797484398, -0.03681885451078415, 0.030261747539043427, -0.04380051791667938, -0.009440580382943153, 0.02528495155274868, 0.009104469791054726, 0.006716315634548664, 0.0520794540643692, 0.024742458015680313, 0.0267473291605711, -0.064486064016819, -0.024199964478611946, 0.05137185379862785, -0.011669524013996124, 0.03799818828701973, -0.07882678508758545, 0.006203304510563612, -0.010566845536231995, -0.0659012645483017, -0.015626193955540657, -0.009546720422804356, 0.0001388483215123415, 0.060712188482284546, -0.010154078714549541, 0.014611965976655483, -0.017194710671901703, 0.009493650868535042, 0.025638753548264503, 0.016227655112743378, 0.01924675516784191, 0.03446018323302269, 0.0065512084402143955, 0.0440363846719265, 0.006474551744759083, -0.04795178025960922, -0.03323367238044739, -0.007736440747976303, -0.020190224051475525, -0.04658374935388565, 0.002715419977903366, -0.021074725314974785, -0.00784847792237997, 0.003959618974477053, 0.003367002820596099, -0.017536718398332596, -0.0027257390320301056, 7.002304482739419e-05, -0.018303286284208298, 0.003735545091331005, 0.017843345180153847, -0.008485319092869759, -0.0367245078086853, -0.009717724286019802, 0.019777456298470497, 0.05542876571416855, 0.05844786390662193, -0.022501720115542412, -0.017336230725049973, -0.024294311180710793, -0.02986077405512333, 0.022442754358053207, -0.0008749194676056504, 0.03167695179581642, -0.014352512545883656, 0.010372254997491837, -0.05429660528898239, 0.07019404321908951, -0.022596066817641258, -0.0034525045193731785, 0.0017306747613474727, 0.03325726091861725, 0.0015640936326235533, 0.0502396896481514, 0.023315461352467537, -0.021522872149944305, 0.05283422768115997, 0.02218330092728138, -0.03771514818072319, -0.03460170328617096, -0.012807583436369896, 0.03552158549427986, -0.0032962425611913204, -0.028304051607847214, 0.030120227485895157, -0.05132468044757843, -0.0016952947480604053, 0.01161645445972681, -0.04672526940703392, -0.045310068875551224, 0.05127750709652901, 0.020626576617360115, -0.0035645414609462023, -0.026134073734283447, 0.022808348760008812, -0.03415355458855629, -0.010838093236088753, 0.03573386371135712, -0.018716054037213326, -0.01033687498420477, 0.023539535701274872, -0.03620559722185135, 0.04377693310379982, -0.014611965976655483, -0.02056761085987091, 0.04554593563079834, -0.006338927894830704, -0.0011424812255427241, -0.019612349569797516, 0.053022921085357666, 0.013868984766304493, -0.009729517623782158, 0.01027790829539299, -0.017642859369516373, -0.020048702135682106, -0.025544406846165657, 0.043116506189107895, -0.0046731168404221535, -0.05382487177848816, -0.05632506310939789, 0.018869366496801376, 0.027431342750787735, -0.016027169302105904, 0.009517237544059753, 0.006456861738115549, 0.02141673117876053, 0.006415585055947304, -0.021110104396939278, -0.014435065910220146, -0.04639505594968796, 0.03979077935218811, -0.029813600704073906, -0.005787588655948639, 0.016074342653155327, -0.031016523018479347, 0.049154702574014664, -0.008485319092869759, 0.019411861896514893, -0.04877731576561928, 0.024152791127562523, -0.024011269211769104, 0.00010512670269235969, 0.05934416130185127, -0.034389421343803406, -0.022077159956097603, -0.0449562668800354, 0.03740851953625679, 0.04120597988367081, -0.0002261007175548002, 0.002315920079126954, 0.0075123668648302555, 0.0012184008955955505, -0.0005528135225176811, -0.049767956137657166, 0.02809177152812481, -0.012023325078189373, -0.015779508277773857, 0.006244581192731857, 0.018374046310782433, -0.02915317192673683, 0.008909879252314568, -0.02335084229707718, -0.012300468981266022, -0.01832687295973301, 0.04153619334101677, 0.02500191144645214, -0.007347260136157274, -0.013668498024344444, -0.037644386291503906, -0.07307162880897522, -0.038540683686733246, 0.01994256302714348, -0.011604661121964455, -0.024152791127562523, 0.008756565861403942, -0.03953132405877113, -0.019612349569797516, 0.03002588078379631, 0.07321314513683319, 0.022301234304904938, -0.019753869622945786, -0.02364567667245865, 0.03450735658407211, -0.01718291826546192, -0.04854144901037216, 0.02691243588924408, 0.012654269114136696, 0.003042685566470027, -0.04479116201400757, -0.012783996760845184, 0.015272393822669983, -0.021853085607290268, -0.015178047120571136, 0.05439095199108124, -0.026204833760857582, 0.04165412858128548, 0.0024161634501069784, 0.013420837931334972, 0.06519366800785065, 0.020496850833296776, 0.024813218042254448, 0.011640041135251522, -0.05075859650969505, 0.032903458923101425, 0.00939340703189373, 0.004381231032311916, 0.004015637096017599, -0.0309221763163805, -0.014494032599031925, -0.04691396653652191, 0.0038711687084287405, -0.0005605528713203967, 0.010124594904482365, 0.0061148544773459435, -0.04995664954185486, 0.015095493756234646, -0.036158423870801926, -0.011056269519031048, 0.007188049610704184, 0.0031399806030094624, -0.029506973922252655, -0.009358027018606663, -0.03670091927051544, 0.028162531554698944, 0.004337006248533726, -0.0162748284637928, -0.01233584899455309, 0.03403562307357788, 0.024365071207284927, 0.008909879252314568, 0.0024132151156663895, 0.014765280298888683, 0.017218297347426414, -0.021228037774562836, -0.011934874579310417, 0.010602225549519062, -0.001740993931889534, -0.018315080553293228, -0.04849427565932274, -0.012677855789661407, -0.006563001777976751, 0.022714000195264816, -0.02766720950603485, 0.04042762145400047, -0.051985107362270355, -0.01175797451287508, 0.005554670002311468, 0.01197615172713995, 0.05344748497009277, -0.04297498241066933, -0.012046911753714085, 0.0022142024245113134, -0.027242649346590042, 0.0009279896039515734, 0.0021139588207006454, -0.002565054688602686, -0.03325726091861725, 0.03507343679666519, 0.007807200774550438, 0.032455310225486755, -0.06052349507808685, 0.010478395968675613, 0.04033327102661133, 0.045758217573165894, -0.012312262319028378, -0.015260600484907627, 0.027620036154985428, -0.006604278460144997, -0.017383404076099396, -0.02055581659078598, 0.0077718207612633705, 0.008685805834829807, -0.07175076752901077, -0.03535647690296173, -0.03821047022938728, 0.019706696271896362, 0.0679297223687172, 0.06108957529067993, -0.001338545698672533, -0.007093702908605337, 0.02910599857568741, -0.0058111753314733505, -0.010625812225043774, -0.03634711727499962, -0.06816559284925461, -0.0028289309702813625, -0.058636561036109924, -0.008255348540842533, -0.021805912256240845, 0.07618506997823715, -0.002171451458707452, 0.03471963480114937, -0.016380969434976578, -0.024624524638056755, -0.042361728847026825, -0.017076777294278145, 0.05368335172533989, -0.08109110593795776, -0.04658374935388565, 0.047102659940719604, 0.03714906796813011, 0.04512137547135353, -0.021640805527567863, -0.06703342497348785, -0.02882295846939087, -0.058495037257671356, 0.0041453642770648, 0.007535953540354967, -0.011339310556650162, -0.00698166573420167, 0.0018545050406828523, -0.018881160765886307, -0.0488244891166687, -0.023173941299319267, 0.020296363160014153, 0.021039344370365143, -0.016593249514698982, -0.010590432211756706, 0.0004923725500702858, 0.018657086417078972, 0.02190025895833969, 0.005144850816577673, 0.023103181272745132, -0.024931151419878006, -0.02500191144645214, 0.007370846811681986, -0.03976719081401825, -0.003650043159723282, -0.00804896466434002, -0.032313790172338486, -0.031252387911081314, 0.05340031161904335, 0.019175995141267776, -0.014376099221408367, 0.02157004550099373, -0.030945762991905212, 0.004278039559721947, 0.03514419496059418, -0.017831552773714066, -0.006787075661122799, 0.013562357984483242, 0.02129879780113697, -0.0019075750606134534, 0.0030721689108759165, -0.04033327102661133, -0.02648787386715412, -0.012842963449656963, -0.04219662398099899, -0.004401869606226683, -0.004124725703150034, -0.01191718503832817, -0.0156615749001503, 0.05066424980759621, 0.012783996760845184, 0.008703495375812054, 0.011309826746582985, 0.003313932567834854, 0.01744237169623375, -0.010737849399447441, 0.005867193918675184, 0.009145746938884258, 0.014387892559170723, 0.009953591041266918, -0.006669141817837954, 0.017713619396090508, 0.01568516157567501, 0.01863349974155426, 0.009623377583920956, -0.01718291826546192, -0.0046937549486756325, 0.022525306791067123, 0.035545170307159424, -0.05868373438715935, -0.01191718503832817, 0.001738045597448945, 0.0017026655841618776, 0.01546108815819025, -0.048305582255125046, -0.014446859247982502, -0.004469681531190872, 0.043423131108284, -0.017949486151337624, -0.006958079058676958, -0.017690032720565796, 0.003369951155036688, 0.009240093640983105, -0.008691702038049698, 0.04196075722575188, -0.027313409373164177, -0.008001791313290596, 0.010737849399447441, 0.017395198345184326, -0.06462758034467697, 0.019128821790218353, 0.05722135677933693, -0.004982692189514637, 0.00653941510245204, 0.015614401549100876, -0.020319949835538864, -0.013550564646720886, 0.004752722103148699, -0.043423131108284, -0.021522872149944305, -0.03493191674351692, -0.03280911222100258, 0.014552999287843704, 0.009074985980987549, 0.014883213676512241, -0.0022952817380428314, 0.0016776047414168715, 0.03825764358043671, 0.011651834473013878, -0.0076361969113349915, -0.03075706958770752, 0.02528495155274868, -0.003431866178289056, -0.061844352632761, -0.0013031656853854656, 0.029365453869104385, -0.031417496502399445, -0.015543641522526741, -0.014729900285601616, -0.02660580724477768, -0.007530056871473789, -0.0008417507051490247, 0.01968310959637165, 0.013845398090779781, -0.0024957687128335238, -0.030285334214568138, -0.014517619274556637, -0.002075630472972989, -0.0387529619038105, -0.0150011470541358, 9.913788380799815e-05, -0.008609148673713207, -0.01480066031217575, 0.011115237139165401, -0.010154078714549541, -0.012088188901543617, -0.051702067255973816, 0.019317515194416046, 0.005663758609443903, -0.019848216325044632, -0.0015832578064873815, -0.006197407841682434, -0.018397632986307144, -0.01949441432952881, -0.006498138420283794, -0.04052196815609932, -0.01123317051678896, -0.01820893958210945, -0.014706313610076904, -0.0017233039252460003, -0.0018279699143022299, -0.012241502292454243, 0.016038961708545685, -0.020791683346033096, 0.048588622361421585, -0.023138562217354774, 0.017371611669659615, 0.012677855789661407, -0.00299551198258996, -0.019848216325044632, 0.01951800100505352, -0.002209779806435108, 0.028917305171489716, 0.022100746631622314, -0.0553344190120697, 0.02424713782966137, 0.009735413827002048, -0.011003199964761734, -0.01641635037958622, 0.0008417507051490247, -0.0014660614542663097, 0.029058825224637985, -0.03295063227415085, -0.027714382857084274, 0.007854374125599861, -0.009788484312593937, 0.03405920788645744, -0.0009471537778154016, 0.043541066348552704, -0.04736211150884628, 0.02910599857568741, -0.02629918046295643, -0.032620418816804886, -0.009906417690217495, 0.01057274267077446, -0.04924904927611351, 0.00413651904091239, -0.006356618367135525, -0.024223551154136658, 0.013173176907002926, -0.025190604850649834, 0.0387529619038105, 0.01717112399637699, 0.00014833829482086003, -0.03431866317987442, -0.010708365589380264, 0.00849121529608965, 0.011144720017910004, 0.03993229940533638, -0.013798224739730358, -0.03639429062604904, 0.006734005641192198, 0.04023892432451248, 0.023327255621552467, 0.007889754138886929, 0.029247518628835678, -0.012536335736513138, 0.044861920177936554, 0.031299564987421036, -0.013715671375393867, -0.011970254592597485, -0.008597355335950851, -0.007099599577486515, 0.02201819233596325, 0.01093833614140749, -0.07410944253206253, -0.016239449381828308, 0.004838223569095135, 0.0010805660858750343, -0.026865262538194656, 0.05457964539527893, 0.011498521082103252, -0.007642093580216169, -0.016428142786026, -0.039554912596940994, 0.026558633893728256, 0.002268746495246887, -0.0027331099845469, 0.034696049988269806, 0.015555434860289097, 0.01145724393427372, 0.0005819283542223275, -0.028516331687569618, 0.031724125146865845, -0.02662939392030239, -0.003676578402519226, -0.005209714639931917, -0.020202016457915306, -0.05222097411751747, 0.01063760556280613, -0.015425708144903183, -0.0032991908956319094, 0.016369177028536797, -0.0015655677998438478, -0.018881160765886307, 0.038965243846178055, -0.0008741823839955032, 0.0007481409120373428, -0.032903458923101425, -0.04896600916981697, -0.010448912158608437, -0.021369557827711105, -0.01036046165972948, -0.017855139449238777, -0.010395841673016548, -0.05132468044757843, -0.0028141892980784178, 0.02707754261791706, -0.01789051853120327, 0.06722211837768555, 0.010425325483083725, -0.021782325580716133, -0.008037171326577663, 0.007347260136157274, -0.021841293200850487, 0.006061784457415342, 0.04276270419359207, -0.006881422363221645, 0.02856350503861904, 0.020449677482247353, 0.016498902812600136, 0.013868984766304493, -0.019765662029385567, -0.0069934590719640255, -0.003027943894267082, -0.013491597957909107, -0.0023439291398972273, -0.012842963449656963, -0.04514496028423309, 0.024317897856235504, 0.017348024994134903, 0.04335237294435501, -0.016817323863506317, -0.002392576774582267, 0.009464167058467865, 0.0004474103916436434, 0.044578880071640015, 0.010248425416648388, -0.031134456396102905, -0.008668115362524986, 0.03323367238044739, -0.02573310025036335, -0.01353877130895853, -0.0032402242068201303, -0.012996276840567589, 0.04806971177458763, 0.01115651335567236, -0.031110869720578194, 0.0008999803685583174, 0.024600937962532043, 0.03002588078379631, -0.002634340664371848, -0.020084083080291748, -0.007429813500493765, -0.006521725095808506, 0.0009412571089342237, -0.025968967005610466, -0.03625277057290077, 0.03976719081401825, -0.016935257241129875, -0.013232143595814705, 0.012288675643503666, -0.009446477517485619, -0.001740993931889534, 0.018727846443653107, 0.01643993705511093, 0.0659012645483017, 0.014930387027561665, -0.03368182107806206, -0.008632735349237919, 0.021652599796652794, -0.013798224739730358, 0.016734769567847252, 0.0073944334872066975, 0.032856285572052, 0.027478516101837158, -0.055098552256822586, 0.021121898666024208, -0.0014940706314519048, -0.03358747437596321, 0.007022942882031202, -0.024046650156378746, 0.034696049988269806, 0.029176758602261543, -0.003918342292308807, -0.0004908983828499913, -0.014729900285601616, 0.015142667107284069, -0.009741310961544514, 0.007052426226437092, -0.012064602226018906, -0.01227688230574131, 0.0028628369327634573, 0.017123950645327568, 0.0046288915909826756, 0.010549155995249748, 0.004540441557765007, 0.01508370041847229, -0.013090623542666435, 0.015755921602249146, 0.029035238549113274, 0.013786431401968002, 0.038823723793029785, -0.027620036154985428, -0.01850377395749092, -0.013314696960151196, -0.01952979527413845, 0.030073054134845734, -0.031110869720578194, 0.002450069412589073, 0.0010149655863642693, 0.004578770138323307, -0.004508009646087885, 0.0042898328974843025, -0.0046731168404221535, 0.02305600792169571, 0.012512749060988426, -0.0136802913621068, 0.0082907285541296, 0.022265853360295296, 0.0168291162699461, -0.024506591260433197, -0.010891162790358067, 0.029955120757222176, 0.0035527481231838465, 0.0031871541868895292, 0.023846162483096123, -0.031441085040569305, 0.030379680916666985, -0.008797843009233475, -0.0026726690120995045, -0.002075630472972989, 0.0482112355530262, -0.025662340223789215, 0.042786289006471634, -0.028068184852600098, -0.06019328162074089, -0.008780152536928654, -0.014552999287843704, 0.0300022941082716, 0.01894012838602066, 0.0017292005941271782, -0.001578835304826498, 0.027242649346590042, 0.037054721266031265, 0.021841293200850487, -0.008066654205322266, -0.032313790172338486, -0.013916158117353916, 0.011663627810776234, 0.03726699948310852, -0.009711827151477337, -0.0035026264376938343, 0.004283936228603125, 0.01806741952896118, 0.002842198358848691, 0.031629778444767, 0.005764001980423927, -0.017383404076099396, 0.006563001777976751, -0.019612349569797516, 0.03181847184896469, -0.05174924060702324, -0.006686832290142775, -0.019930768758058548, -0.026417113840579987, -0.06675038486719131, 0.028280464932322502, 9.849293564911932e-05, -0.015248807147145271, 0.00458761490881443, 0.010478395968675613, 0.0006110431859269738, 0.011250860057771206, 0.01205280888825655, -0.036323532462120056, 0.02027277648448944, -0.006710418965667486, -0.030096640810370445, -0.0002076735981972888, -0.00428688433021307, -0.023150354623794556, 0.0020962688140571117, -0.005501599982380867, 0.004478526301681995, -0.011704904027283192, 0.013798224739730358, -0.019034475088119507, -0.037785910069942474, 0.04290422424674034, -0.0024485953617841005, -0.03375257924199104, -0.015779508277773857, 0.034389421343803406, -0.03120521642267704, 0.01964772865176201, -0.014965767040848732, -0.03045044094324112, -0.006498138420283794, -0.0050121755339205265, 0.00554877333343029, -0.008786048740148544, -0.011421863920986652, 0.0009449425269849598, -0.015885649248957634, -0.020614784210920334, -0.013314696960151196, -0.014435065910220146, 0.020602989941835403, -0.001360658323392272, 0.0023203424643725157, -0.008320211432874203, 0.005828865338116884, -0.02085065096616745, 0.04762156680226326, -0.0025547354016453028, 0.01849197968840599, 0.034082796424627304, 0.05325878784060478, 0.013503391295671463, 0.008845016360282898, 0.0010805660858750343, 0.04358823969960213, -0.003688371740281582, 0.03606407716870308, 0.0027537483256310225, 0.00714087625965476, 0.03759721294045448, 0.02927110530436039, 0.005713880527764559, -0.0019665418658405542, -0.016380969434976578, -0.010902956128120422, -0.04184282198548317, 0.029459800571203232, 0.04566387087106705, -0.034955501556396484, 0.04469681531190872, -0.006787075661122799, -0.02305600792169571, 0.014694520272314548, 0.0031783091835677624, -0.006521725095808506, 0.026511460542678833, 0.029341867193579674, -0.01021304540336132, -0.012430195696651936, 0.04318726435303688, 0.018810400739312172, -0.03269118070602417, 0.012147155590355396, -0.004328161012381315, 0.024034855887293816, 0.035851798951625824, 0.0022599014919251204, 0.04094652831554413, 0.011799251660704613, 0.03953132405877113, 0.01978924870491028, 0.013255730271339417, 0.012984483502805233, 0.0035527481231838465, 0.02293807454407215, -0.013857191428542137, -0.0034967295359820127, 0.030568374320864677, -0.022560687735676765, -0.0050947293639183044, 0.027431342750787735, 0.026440700516104698, 0.0028200859669595957, -0.019305720925331116, 0.012229708954691887, -0.024954738095402718, -0.021959226578474045, 0.02615766040980816, -0.025355711579322815, -0.025827446952462196, 0.026959609240293503, -0.006362515036016703, -0.011109340004622936, 0.004908984061330557, -0.0033080358989536762, 0.014364305883646011, 0.04021533951163292, -0.011003199964761734, 0.021711565554142, -0.017395198345184326, 0.007353156805038452, 0.031724125146865845, 0.017076777294278145, 0.0016864497447386384, -0.009906417690217495, 0.023398015648126602, 0.01732443831861019, 0.015012940391898155, 0.004970898851752281, 0.00432521291077137, 0.0024913460947573185, -0.016239449381828308, 0.021770533174276352, 0.01255992241203785, 0.0027227906975895166, -0.00820817518979311, -0.025049084797501564, 0.04026251286268234, 0.018409427255392075, 0.004042172338813543, -0.006893215700984001, -0.0006821718416176736, -0.02290269546210766, 0.0071290829218924046, 0.003423021174967289, 0.0466780960559845, -0.04167771711945534, 0.05811765044927597, 0.011634144000709057, -0.015272393822669983, -0.022714000195264816, -0.002539993729442358, 0.0004912669537588954, -0.0031222905963659286, 0.01233584899455309, -0.019258547574281693, -0.005775795318186283, -0.005410201381891966, 0.026818089187145233, -0.008520699106156826, -0.0247188713401556, 0.014317132532596588, -0.013173176907002926, -0.026393527165055275, -0.018704259768128395, -0.004059862345457077, 0.03493191674351692, 0.016345590353012085, 0.020732717588543892, -0.017100363969802856, -0.03589897230267525, -0.04299857094883919, -0.0066101751290261745, -0.012984483502805233, -0.019010888412594795, -0.0046141501516103745, 0.016522489488124847, -0.006586588453501463, -0.0237989891320467, -0.024813218042254448, -0.01760747842490673, 0.03790384158492088, -0.007541850209236145, 0.032785527408123016, -0.030568374320864677, -0.0009663180098868906, 0.018963715061545372, 0.0056283785961568356, -0.012011531740427017, 0.010814506560564041, 0.01583847589790821, -0.005192024167627096, 0.050805773586034775, -0.00917522981762886, 0.03594614565372467, 0.018539153039455414, -0.009039605967700481, 0.0006361040868796408, 0.01428175251930952, -0.016664009541273117, 0.011592867784202099, -0.009664653800427914, 0.0020255085546523333, 0.01204101461917162, -0.010042041540145874, 0.014623759314417839, -0.002031405223533511, 0.0025193553883582354, -0.01699422486126423, -0.005342389456927776, 0.007901547476649284, 0.021204451099038124, 0.006344824563711882, 0.004275090992450714, -0.006704522296786308, -0.01718291826546192, -0.022136125713586807, -0.004593511577695608, -0.011645937338471413, -0.0048057921230793, -0.0007938402122817934, 0.012441989034414291, 0.042078688740730286, -0.04450812190771103, -0.009564410895109177, -0.0018323925323784351, -0.018267907202243805, 0.001348127843812108, 0.009670550934970379, 0.013031656853854656, 0.0025385196786373854, -0.03287987411022186, 0.005707983858883381, -0.006834249012172222, 0.022218680009245872, 0.01968310959637165, -0.009358027018606663, 0.006238684523850679, -0.020756304264068604, -0.003853478701785207, -0.009369820356369019, 0.0663258284330368, 0.0037679767701774836, -0.0029851929284632206, 0.00557825667783618, 0.05490985885262489, -0.02276117354631424, 0.034837570041418076, -0.0025576837360858917, -0.025780273601412773, 0.0041070356965065, 0.0056490167044103146, -0.0040510171093046665, 0.003508523106575012, -0.030827829614281654, -0.029530560597777367, -0.0011844950495287776, 0.025072671473026276, 0.010201252065598965, 0.006333031225949526, 0.0015773611376062036, 0.02351594902575016, -0.021841293200850487, -0.017784379422664642, -0.03745569288730621, 0.020190224051475525, 0.0027345840353518724, -0.022407373413443565, 0.012595302425324917, 0.03389410302042961, 0.04141826182603836, -0.01978924870491028, 0.009057296440005302, -0.008945259265601635, 0.008090240880846977, 0.03370540589094162, 0.023409808054566383, -0.012265088967978954, 0.005672603379935026, 0.020166635513305664, 0.03651222586631775, 0.024648111313581467, -0.005410201381891966, -0.01189949456602335, -0.015472881495952606, 0.00901601929217577, 0.001398249645717442, -0.030120227485895157, -0.03002588078379631, 0.023763610050082207, -0.001584731973707676, 0.024152791127562523, 0.011085753329098225, 0.005713880527764559, 0.0011498520616441965, 0.007276499643921852, 0.00975310429930687, -0.0003092070110142231, -0.0036205598153173923, -0.0011196315754204988, 0.002805344294756651, 0.004112932365387678, -0.030261747539043427, -0.011946667917072773, -0.028186118230223656, 0.009416993707418442, 0.006421481724828482, 0.005209714639931917, -0.016734769567847252, -0.019895389676094055, -0.03188923001289368, -0.01995435543358326, -0.021711565554142, 0.019199581816792488, 0.007842580787837505, 0.00761261023581028, 0.008284831419587135, -0.011746181175112724, 0.004622994922101498, -0.000414978654589504, 0.011528003960847855, 0.0007017045863904059, -0.037031132727861404, 0.004965002182871103, 0.024459417909383774, -0.03620559722185135, -0.004254452884197235, 0.0241056177765131, -0.003358157817274332, 0.04226738214492798, -0.0073118796572089195, 0.018409427255392075, 0.0033375194761902094, -0.019718488678336143, -0.025025498121976852, -0.007824891246855259, 0.014611965976655483, -0.02811535820364952, -0.032172270119190216, 0.003594024805352092, 0.01065529603511095, 0.030662722885608673, 0.0001757025602273643, -0.03507343679666519, 0.01250095572322607, -0.012265088967978954, 0.031110869720578194, -0.03120521642267704, -0.030827829614281654, 0.017713619396090508, 0.023421602323651314, -0.004401869606226683, -0.014753486961126328, 0.0008970320341177285, 0.019317515194416046, -0.009517237544059753, -0.05943850800395012, 0.010484292171895504, -0.01668759621679783, -0.012654269114136696, 0.04809330031275749, -0.004395972937345505, 0.0010923594236373901, 0.009711827151477337, 0.02233661338686943, -0.0011343732476234436, 0.021487491205334663, 0.0009390458581037819, 0.02026098407804966, 0.0017395197646692395, -0.03174770995974541, -0.022879108786582947, 0.0025326230097562075, -0.0072529129683971405, 0.05038120970129967, -0.004720290191471577, -0.03266759216785431, 0.010507878847420216, 0.018598120659589767, 0.0009073512046597898, 0.004342902917414904, 0.01013049203902483, 0.018267907202243805, -0.0032313792034983635, -0.013550564646720886, 0.0003659625363070518, 0.017796171829104424, -0.0426211841404438, 0.03870578855276108, 0.021051138639450073, -0.002727213315665722, -0.01153390109539032, 0.028445571660995483, -0.008797843009233475, 0.033493127673864365, -0.02261965349316597, 0.018550947308540344, -0.029790014028549194, 0.011445450596511364, 0.01537853479385376, 0.008302521891891956, -0.022525306791067123, 0.028021011501550674, -0.0027729126159101725, 0.020968584343791008, 0.04172489047050476, -0.0076303002424538136, 0.00019145774422213435, 0.005480961408466101, -0.0123594356700778, -0.02719547599554062, -0.042385317385196686, -0.029506973922252655, 0.017253678292036057, 0.006669141817837954, -0.019860008731484413, -0.020614784210920334, -0.008939363062381744, 0.03785666823387146, -0.010702469386160374, -0.023433394730091095, 0.00015054954565130174, 0.04042762145400047, -0.0028274566866457462, -0.0325496569275856, -0.013420837931334972, -0.044602468609809875, 0.006197407841682434, -0.016947051510214806, 0.006079474464058876, -0.023480569943785667, -0.0013621324906125665, -0.018668880686163902, 0.03995588421821594, -0.01582668162882328, 0.002399947727099061, -0.008697599172592163, -0.014965767040848732, 0.037196241319179535, 0.018527360633015633, -0.0026682463940232992, -0.0015670419670641422, -0.0005089569604024291, 0.017831552773714066, 0.020815270021557808, 0.015095493756234646, -0.011816941201686859, 0.003977308981120586, 0.012406609021127224, 0.008827325887978077, 0.006586588453501463, -0.029223931953310966, -0.045333653688430786, 0.011068062856793404, 0.01610972173511982, 0.009764897637069225, 0.02174694649875164, -0.0044136629439890385, -0.021404938772320747, 0.020390709862113, -0.03313932567834854, -0.013055243529379368, -0.004962054081261158, 0.022065365687012672, -0.01087347324937582, -0.049626436084508896, -0.001547877793200314, 0.01485962700098753, 0.020213810727000237, 0.03179488331079483, -0.008385075256228447, 0.023869749158620834, 0.022218680009245872, -0.028327638283371925, -0.004852965474128723, -0.014600172638893127, -0.010808609426021576, -0.014435065910220146, 0.0488244891166687, -0.021487491205334663, 0.001151326228864491, -0.03743210807442665, -0.015307774767279625, -0.02530853822827339, 5.486674126586877e-05, -0.013196763582527637, 0.010024351067841053, -0.013715671375393867, -0.024070236831903458, -0.0025414680130779743, -0.018409427255392075, -0.003950773738324642, -0.014222785830497742, 0.003744390094652772, -0.033634647727012634, 0.028044598177075386, 0.009605687111616135, 0.014034092426300049, -6.868707714602351e-05, -0.0009788484312593937, 0.002802395960316062, -0.017513131722807884, -0.022289440035820007, 0.025402886793017387, 0.019411861896514893, 0.026511460542678833, 0.017041398212313652, -0.01594461500644684, 0.023633882403373718, -0.0017837448976933956, -0.024648111313581467, 0.0018014349043369293, -0.017713619396090508, -0.023763610050082207, -0.011870011687278748, -0.00669862562790513, 0.021487491205334663, 0.018008451908826828, -0.028752198442816734, 0.04330519959330559, 0.002799447625875473, -0.010731952264904976, -0.0073885368183255196, -0.005884883925318718, 0.015425708144903183, -0.015909235924482346, -0.005233301315456629, -0.006893215700984001, 0.0014004608383402228, 0.009582100436091423, -0.008043067529797554, 0.0018780917162075639, -0.004142415709793568, 8.181639714166522e-05, -0.002855465980246663, 0.0023601450957357883, 0.016062548384070396, 0.008455835282802582, 0.01628662273287773, 0.034530941396951675, -0.04806971177458763, 0.0030721689108759165, -0.03757362812757492, 0.028304051607847214, 0.01241840235888958, -0.0055694119073450565, -0.011250860057771206, 0.002973399590700865, 0.01485962700098753, 0.0068401456810534, -0.003490832867100835, -0.004189589060842991, 0.011934874579310417, -0.012394815683364868, -0.029011651873588562, 0.013196763582527637, 0.02204177901148796, 0.003921290393918753, -0.0026844623498618603, 0.020909618586301804, 0.035993319004774094, 0.014682726934552193, -0.0014247846556827426, -0.006958079058676958, 0.0037149067502468824, 0.10547976195812225, -0.04080500826239586, -0.0165814571082592, -0.0028436726424843073, -0.027737969532608986, 0.009039605967700481, 0.017064984887838364, -0.014682726934552193, 0.02530853822827339, -0.025379298254847527, -0.012701443396508694, -0.003027943894267082, -0.02856350503861904, -0.002324765082448721, 0.014128439128398895, -0.008685805834829807, 0.0013562358217313886, 0.0047704121097922325, -0.00983565766364336, 0.00999486818909645, -0.010773229412734509, 0.016345590353012085, 0.022808348760008812, 0.004378282930701971, -0.04085218161344528, 0.005000382196158171, 0.025992553681135178, 0.03877655044198036, 0.03714906796813011, 0.012760410085320473, 0.027997422963380814, -0.00784847792237997, 0.02290269546210766, -0.015437501482665539, 0.023751815780997276, -0.027431342750787735, 0.003517368109896779, 0.012099982239305973, -0.004782205447554588, 0.004823482129722834, 0.01204101461917162, -0.033328019082546234, 0.0013746628537774086, 0.01411664579063654, -0.0026195989921689034, 0.04745645821094513, -0.011551590636372566, -0.01655787043273449, 0.013255730271339417, -0.04568745568394661, 0.0514662005007267, -0.057174183428287506, 0.010596329346299171, -0.002923277672380209, -0.018822193145751953, 0.028162531554698944, 0.02853991836309433, -0.03063913621008396, -0.008532492443919182, -0.03287987411022186, 0.02322111465036869, -0.02427072450518608, 0.03283270075917244, -0.039130352437496185, 0.021558253094553947], [0.020639467984437943, -0.024897392839193344, 0.04339515045285225, -0.0022500716149806976, -0.02244972437620163, -0.017643621191382408, -0.00955483689904213, 0.0033081790897995234, 0.042783234268426895, -0.017516138032078743, -0.01511946227401495, -0.02649092860519886, 0.006192477885633707, 0.025598548352718353, 0.028760122135281563, 0.04130443185567856, 0.04788254573941231, 0.02598099783062935, 0.008063288405537605, 0.0266439076513052, 0.04925936087965965, -0.020639467984437943, -0.004710489884018898, 0.015285189263522625, 0.008675205521285534, -0.014749761670827866, -0.0055040703155100346, -0.025624046102166176, 0.04681168869137764, -0.03674054890871048, 0.0450524277985096, -0.024706169962882996, 0.001334585715085268, -0.028556151315569878, -0.010765924118459225, -0.016636507585644722, 0.0013122762320563197, -0.0035950152669101954, 0.022500716149806976, -0.014979231171309948, -0.05808116868138313, -0.0328395739197731, -0.013449436984956264, -0.04706665500998497, -0.03498128429055214, 0.06945263594388962, 0.0172739215195179, 0.015782373026013374, 0.0014238236472010612, 0.019058680161833763, 0.03796438127756119, 0.06343545019626617, -0.0137936407700181, -0.010702182538807392, 0.01641978695988655, 0.03408890590071678, -0.011996133252978325, 0.04709215089678764, 0.008267260156571865, 0.004952707327902317, -0.015769625082612038, -0.008809062652289867, 0.03097832389175892, -0.0014572879299521446, 0.018089812248945236, -0.032865069806575775, 0.028199199587106705, 0.04416004568338394, -0.01858699508011341, 0.03607763722538948, 0.0014333849539980292, 0.0338849313557148, -0.005022822879254818, -0.011830405332148075, 0.014392809942364693, 0.049514323472976685, 0.0221947580575943, -0.06358842551708221, -0.006154233124107122, 0.025305338203907013, -0.06425134092569351, 0.028275689110159874, -0.036026641726493835, -0.002662797225639224, 0.00034739068360067904, 0.013819137588143349, -0.005880144890397787, 0.011180242523550987, -0.025126863270998, -0.04780605435371399, -0.04441501200199127, -0.012977750971913338, 0.03281407803297043, -0.009172388352453709, -0.03115680068731308, 0.030519386753439903, -0.011269480921328068, 0.0030659616459161043, -0.033349502831697464, 0.04933584854006767, 0.01638154126703739, 0.006616358179599047, -0.020193278789520264, 0.03016243316233158, -0.0003625292447395623, -0.03783689811825752, -0.04551136493682861, 0.05400171875953674, -0.031692229211330414, 0.04331865906715393, 0.03997861221432686, -0.03493029251694679, 0.008770817890763283, 0.04841797426342964, -0.04846896603703499, -0.007801948115229607, -0.01441830676048994, 0.0005760629428550601, 0.026975363492965698, -0.013742647133767605, 0.031131302937865257, -0.004783792421221733, 0.011275854893028736, -0.06414934992790222, 0.02079244703054428, -0.0036906274035573006, -0.004359912127256393, -0.011875024065375328, 0.006221161223948002, -0.0014477267395704985, 0.006903194356709719, -0.06149771064519882, 0.059101033955812454, -0.041023969650268555, 0.008681579492986202, -0.024387462064623833, -0.0034834679681807756, 0.0016198285156860948, -0.0034707195591181517, -0.027281321585178375, 0.044109053909778595, -0.02631245367228985, 0.06231360137462616, 0.011900520883500576, -0.02223300375044346, 0.042120322585105896, -0.005870583467185497, 0.016305051743984222, 0.006871323566883802, 0.007891186513006687, 0.014851748012006283, -0.01598634570837021, -0.05940699204802513, -0.016585513949394226, 0.05109511315822601, 0.013819137588143349, 0.024387462064623833, 0.08459759503602982, -0.0011824030661955476, -0.0026277394499629736, 0.022934159263968468, -0.00964407529681921, -0.003907348494976759, -0.03306904062628746, -0.012888512574136257, 0.016330549493432045, 0.012499690055847168, -0.03240613266825676, -0.07536783814430237, -0.009274374693632126, -0.049029890447854996, -0.0037575559690594673, 0.019555862993001938, -0.04263025149703026, -0.03164123371243477, -0.004047579597681761, 0.018230043351650238, 0.01039622351527214, -0.03431837260723114, 0.02516510710120201, 0.01598634570837021, 0.014940985478460789, -0.035108767449855804, -0.0246551763266325, -0.025369079783558846, 0.024259978905320168, -0.005347904283553362, 0.026286955922842026, -0.03317102789878845, -0.01203437801450491, 0.006434694863855839, -0.038703784346580505, -0.028301184996962547, -0.008356498554348946, -0.008056913502514362, -0.002834899118170142, 0.002156053204089403, 0.000390615314245224, 0.0450524277985096, -0.0009170795092359185, -0.04084549471735954, -0.016432534903287888, 0.02873462624847889, 0.028097212314605713, -0.040361057966947556, -0.0479845330119133, 0.009567584842443466, 0.0067438408732414246, 0.013194471597671509, -0.00643788231536746, 0.010447217151522636, 0.008898300118744373, -0.020384501665830612, -0.010887032374739647, 0.02594275213778019, 0.005695294588804245, 0.04846896603703499, -0.0032316893339157104, -0.0001641341223148629, -0.025445569306612015, -0.041763368993997574, -0.0049431463703513145, 0.02281942404806614, -0.005695294588804245, -0.028709130361676216, -0.014239830896258354, -0.046786192804574966, 0.023303858935832977, 0.02042274735867977, -0.03663856163620949, -0.040870990604162216, -0.014150592498481274, -0.030952828004956245, -0.04257925972342491, -0.03916272148489952, 0.031360771507024765, 0.06037586182355881, -0.05096762999892235, -0.011664677411317825, -0.0394686795771122, -0.016891473904252052, 0.02590450830757618, 0.008847307413816452, -0.011836779303848743, 0.012110867537558079, -0.0012086963979527354, -0.0194028839468956, -0.01047271303832531, 0.011811282485723495, -0.01914791949093342, 0.013500429689884186, 0.016636507585644722, 0.0014620685251429677, -0.014303571544587612, 0.007680839393287897, 0.021302377805113792, 0.012869389727711678, 0.009816177189350128, 0.05198749154806137, -0.006377327721565962, -0.03082534484565258, 0.03266109898686409, 0.005669798236340284, 0.006692847702652216, -0.026618411764502525, -0.053032852709293365, 0.022016281262040138, -0.0027010422199964523, -0.011084631085395813, 0.010185876861214638, -0.06282353401184082, 0.03834683075547218, 0.037785906344652176, -0.016470780596137047, -0.061191752552986145, 0.02756178379058838, 0.02094542607665062, -0.018383022397756577, -0.04390508309006691, 0.03383393958210945, -0.022029031068086624, 0.0009601049241609871, -0.0008708669920451939, -0.03174322098493576, -0.014889992773532867, -0.005140744615346193, 0.034114401787519455, 0.05145206302404404, 0.02914257161319256, 0.0026022428646683693, 0.04008059576153755, 0.015514658764004707, 0.029423033818602562, -0.0071007926017045975, 0.030876338481903076, -0.021799560636281967, -0.041865356266498566, 0.026286955922842026, -0.0067438408732414246, -0.03717399016022682, -0.014125095680356026, 0.033196523785591125, 0.007151785772293806, -0.048112016171216965, 0.002127369400113821, 0.009981904178857803, -0.009057654067873955, 0.004519265610724688, 0.012557057663798332, 0.02531808614730835, 0.029805481433868408, -0.027128342539072037, -0.08286383002996445, -0.026924369856715202, -0.022016281262040138, 0.018217293545603752, -0.05364476889371872, -0.006750214844942093, 0.0509166345000267, -0.012499690055847168, 0.0426812469959259, -0.030595876276493073, 0.05746925249695778, -0.07557181268930435, -0.0039902119897305965, -0.011148371733725071, -0.007929431274533272, 0.05522555485367775, 0.01387013029307127, -0.044440507888793945, -0.0880141332745552, 0.015438169240951538, 0.06241558492183685, -0.011549943126738071, -0.03248262032866478, -0.02190154790878296, 0.04148290678858757, 0.007304765284061432, -0.06797383725643158, 0.03097832389175892, 0.03566969186067581, 0.027281321585178375, 0.015132210217416286, 0.002058847574517131, -0.0041591268964111805, 0.01579512096941471, 0.028377674520015717, 0.02840317040681839, -0.0067438408732414246, 0.009605830535292625, -0.012161860242486, -0.019530367106199265, -0.014724264852702618, -0.04349713772535324, -0.029932964593172073, -0.07536783814430237, 0.07317513227462769, -0.01854874938726425, 0.024476701393723488, 0.018357524648308754, 0.0020269767846912146, 0.008585967123508453, 0.023265613242983818, 0.038525305688381195, 0.027612777426838875, 0.0506361722946167, -0.008770817890763283, 0.019084177911281586, -0.01631779968738556, 0.030187930911779404, 0.033349502831697464, 0.009650449268519878, 0.012882138602435589, -0.028122708201408386, -0.009777931496500969, -0.0030755228362977505, 0.01873997412621975, 0.031870704144239426, -0.027434302493929863, -0.04421104118227959, -0.009057654067873955, -0.03538922965526581, 0.011441582813858986, 0.047780558466911316, 0.021264133974909782, -1.7777876564650796e-05, -0.017758356407284737, 0.002508224453777075, -0.0030723358504474163, -0.0003111377591267228, -0.019020436331629753, 0.024157993495464325, 0.005220421124249697, -0.027714764699339867, -0.029601508751511574, -0.0037129370030015707, 0.024476701393723488, 0.05104411765933037, -0.0016277962131425738, -0.026261460036039352, -0.031437262892723083, -0.019900066778063774, -0.012359458953142166, 0.000593990262132138, 0.01793683134019375, -0.014673272147774696, 0.03049388900399208, -0.040947481989860535, 0.013003246858716011, -0.0068267048336565495, -0.00991816259920597, -0.028709130361676216, 0.018128056079149246, 0.03862729296088219, -0.014533041045069695, 0.0036874404177069664, 0.013666157610714436, -0.009962782263755798, -0.030213426798582077, -0.017057200893759727, -0.02723032981157303, 0.010262366384267807, -0.049616310745477676, 0.029423033818602562, -0.019262652844190598, 0.009714190848171711, -0.033961422741413116, -0.0558374747633934, 0.041278935968875885, -0.04816300794482231, -0.0017767917597666383, 0.04673520103096962, 0.013551423326134682, 0.0384233221411705, -0.0004561494570225477, -0.031615737825632095, -0.0374799482524395, -0.00655899103730917, 0.010714930482208729, -0.003108987119048834, 0.001015878631733358, -0.042375288903713226, 0.0424007847905159, -0.027026357129216194, -0.007706336211413145, -0.04008059576153755, -0.019759835675358772, 0.008445736952126026, 0.02116214670240879, -0.03146275877952576, -0.006367766764014959, 0.007757329382002354, -0.004337602760642767, -0.06073281168937683, -0.011205739341676235, -0.015552903525531292, 0.05050869286060333, -0.06669900566339493, 0.005736726801842451, -0.0026102105621248484, 0.04597030207514763, 0.03526174649596214, 0.048698436468839645, 0.00594388647004962, -0.02689887396991253, 0.02633794955909252, 0.006654602941125631, 0.0042897965759038925, 0.030774351209402084, -0.06190565600991249, 0.02215651236474514, -0.009280748665332794, -0.009013035334646702, 0.002054066862910986, 0.04454249516129494, -0.0008979570702649653, 0.03500678017735481, 0.029805481433868408, -0.019122421741485596, -0.024387462064623833, 0.0050738160498440266, -0.01378089189529419, -0.06083479896187782, -0.02814820595085621, 0.03133527562022209, 0.11340871453285217, 0.0651182234287262, -0.012926757335662842, -0.03342599421739578, -0.05675534904003143, -0.043369654566049576, 0.0011592968367040157, -0.015501909889280796, -0.013156226836144924, 0.011122875846922398, -0.020384501665830612, -0.04795903339982033, -0.02608298324048519, 0.007266520522534847, -0.029091577976942062, 0.014635027386248112, -0.0020237897988408804, 4.832893318962306e-05, 0.0302389245480299, -0.00042467712773941457, 0.0025576238986104727, -0.007037051487714052, 0.0021544594783335924, -0.029601508751511574, -0.049616310745477676, -0.038601797074079514, -0.032533615827560425, 0.005940699018537998, -0.002210233360528946, -0.008942919783294201, -0.0358736626803875, 0.02123863622546196, 0.032610103487968445, -0.027689266949892044, 0.01620306633412838, 0.014596782624721527, 0.003346423851326108, 0.0038436069153249264, 0.004006147384643555, -0.007202778942883015, 0.01848500780761242, 0.022462472319602966, -0.07067647576332092, 0.012002507224678993, -0.0047455476596951485, -0.05066167190670967, -0.007444996386766434, -0.05930500477552414, 0.0016381541499868035, -0.032202158123254776, 0.0011338002514094114, 0.0009951627580448985, 0.06695397198200226, 0.004031644202768803, 0.030034951865673065, 0.03990212082862854, -0.0299074687063694, -0.023418592289090157, -0.007260146085172892, 0.022092772647738457, -0.0020349444821476936, 0.012410451658070087, -0.037530940026044846, -0.012282969430088997, -0.002587901195511222, 0.010039271786808968, -0.007980423979461193, 0.004949520342051983, -0.034369368106126785, -0.006909568794071674, 0.006135110277682543, 0.020677711814641953, -0.005398896988481283, 0.004503330215811729, 0.011269480921328068, -6.264584953896701e-05, 0.0023903027176856995, 0.021187644451856613, -0.018497755751013756, -0.0053606522269546986, 0.034700822085142136, -0.014265326783061028, -0.0007995562627911568, -0.011173868551850319, -0.010880658403038979, -0.044771965593099594, -0.00017708160157781094, 0.03199818730354309, -0.014775258488953114, 0.03890775516629219, 0.006377327721565962, 0.01432906836271286, -0.01590985618531704, -0.015846114605665207, 0.005178989376872778, 0.018931198865175247, 0.03031541407108307, 0.0020827504340559244, 0.009210633113980293, -0.04841797426342964, 0.009376361034810543, -0.016636507585644722, -0.020053047686815262, 0.0012262252857908607, -0.035363733768463135, -0.023265613242983818, 0.012907635420560837, 0.035440221428871155, -0.04375210031867027, -0.02799522690474987, 0.047449104487895966, 0.007527860347181559, 0.009210633113980293, -0.05081465095281601, 0.04298720508813858, -0.01634329743683338, -0.02086893655359745, -0.00012439534475561231, 0.030799848958849907, -0.02682238444685936, -0.0033018048852682114, -0.0026373006403446198, 0.015208699740469456, -0.0302389245480299, 0.025432821363210678, 0.0302389245480299, 0.01873997412621975, -0.010523706674575806, -0.025879010558128357, -0.022921409457921982, 0.00945922452956438, 0.0006286496063694358, -0.0027010422199964523, -0.018905701115727425, -0.002441295888274908, -0.02898959256708622, -0.0011808095732703805, -0.028632640838623047, 0.008331001736223698, -0.08556646853685379, 0.01583336479961872, -0.026720397174358368, -0.03090183436870575, 0.04887691140174866, -0.008260886184871197, -0.004898527171462774, -0.02799522690474987, -0.01733766309916973, -0.019453877583146095, -0.041355423629283905, 0.02204177901148796, -0.01936464011669159, 0.021034663543105125, 0.015361678786575794, 0.009631326422095299, 0.0374799482524395, -0.03990212082862854, 0.028301184996962547, -0.023966768756508827, 0.018395770341157913, 0.023711804300546646, -0.028632640838623047, -0.0024763536639511585, 0.04525639861822128, -0.03281407803297043, 0.04900439456105232, 0.01854874938726425, 0.009892666712403297, 0.013513178564608097, -0.006718344520777464, 0.013347450643777847, -0.018969442695379257, -0.019275400787591934, -0.022398730739951134, 0.012939505279064178, 0.013219967484474182, -0.016560018062591553, 0.005908828694373369, -0.031870704144239426, 0.017809350043535233, 0.002189517254009843, 0.04676069691777229, -0.026924369856715202, 0.0017608563648536801, -0.005937512032687664, 0.007980423979461193, -0.0011760289780795574, -0.0137936407700181, -0.023928524926304817, -0.009924537502229214, 0.014431054703891277, 0.0018325654091313481, 0.046531226485967636, -0.015565651468932629, 0.03115680068731308, -0.021149398759007454, -4.907590482616797e-05, -0.04454249516129494, 0.04775506258010864, -0.026261460036039352, -0.018204545602202415, -0.0034643455874174833, -0.0133219538256526, -0.010402597486972809, 0.04393057897686958, 0.021072909235954285, 0.026286955922842026, -0.009510218165814877, 0.009695068001747131, -0.004611690994352102, -0.013194471597671509, -0.003897787071764469, 0.0030882712453603745, -0.004751922097057104, 0.011135623790323734, -0.031539250165224075, 0.03556770458817482, 0.007553356699645519, -0.02781675010919571, -0.05030471831560135, -0.010861535556614399, 0.0033241144847124815, 0.03623061627149582, 0.01602458953857422, 0.0010620912071317434, 0.0066609769128263, 0.02553480863571167, -0.01548916194587946, 0.030927330255508423, -0.024808155372738838, -0.008592342026531696, 0.016521772369742393, 0.02906608209013939, -0.005692107602953911, -0.025713283568620682, 0.0056729852221906185, 0.0021927044726908207, -0.03923920914530754, 0.004347164183855057, 0.006578113418072462, 0.008184396661818027, 0.016062835231423378, 0.026541922241449356, 0.010319733992218971, 0.012977750971913338, 0.016725745052099228, -0.027026357129216194, 0.015144958160817623, 0.005389336030930281, -0.05701031535863876, 0.01177303772419691, -0.045026931911706924, -0.005583747290074825, 0.01641978695988655, -0.0009282342507503927, 0.0067693376913666725, -0.02281942404806614, 0.012563431635499, -0.05313483625650406, -0.04046304523944855, -0.023342102766036987, -0.01034523081034422, 0.013462184928357601, -0.08174198120832443, -0.03296705707907677, -0.010045645758509636, 0.010574699379503727, -0.017975077033042908, -0.027944233268499374, 0.02557305246591568, -0.019632354378700256, -0.0041463784873485565, 0.014839000068604946, -0.002729725791141391, -0.011027263477444649, -0.040182583034038544, -0.008745321072638035, -0.033451490104198456, -0.0146222785115242, -0.017834845930337906, 0.002651642542332411, -0.039290204644203186, -0.015922604128718376, 0.007891186513006687, -0.01825553923845291, -0.03600114583969116, -0.013156226836144924, 0.0014668491203337908, 0.012958628125488758, -0.01602458953857422, -0.01700620725750923, -0.024718917906284332, -0.013500429689884186, -0.01833202876150608, -0.031947191804647446, -0.011505324393510818, -0.010364352725446224, -0.02983097918331623, 0.043191175907850266, -0.02520335279405117, -0.016305051743984222, 0.027510792016983032, 0.043114688247442245, 0.024081503972411156, -0.03210017457604408, -0.018089812248945236, -0.01616482064127922, 0.030544882640242577, -0.021990785375237465, -0.021990785375237465, -0.005057880654931068, -0.0005198908620513976, -0.052267953753471375, -0.017465146258473396, 0.011715671047568321, -0.05420569330453873, 0.002377554541453719, -0.008445736952126026, -0.006367766764014959, 0.03980013355612755, 0.02299789898097515, -0.009395483881235123, 0.004563884809613228, -0.014635027386248112, -0.00012618806795217097, 0.005010074470192194, -0.006208413280546665, 0.037862397730350494, 0.05282887816429138, 0.0020859376527369022, 0.03123329021036625, 0.003955154214054346, -0.011180242523550987, 0.03148825466632843, -0.030366405844688416, -0.013436689041554928, -0.002199078444391489, 0.0006147061940282583, -0.021429860964417458, 0.031182296574115753, -0.007272894494235516, -0.021888799965381622, 0.054256685078144073, 0.02104741334915161, -0.03263559937477112, -0.004949520342051983, -0.025522058829665184, 0.028887605294585228, -0.007215527351945639, -0.03582267090678215, 0.009752435609698296, 0.0002555632090661675, 0.0076425946317613125, 0.012028004042804241, 0.01511946227401495, 0.013857382349669933, -0.03049388900399208, -0.006265780422836542, 0.011135623790323734, -0.010147632099688053, 0.020473740994930267, -0.022475220263004303, 0.026694901287555695, -0.028224695473909378, 0.03689352795481682, -0.0033910428173840046, -0.021876050159335136, -0.024272728711366653, -0.004423653706908226, 0.004618064966052771, -0.005532754119485617, 0.03373195230960846, -0.0065271202474832535, 0.009733312763273716, -0.00650481041520834, -0.01854874938726425, 0.03281407803297043, -0.01179216057062149, -0.01039622351527214, 0.017184684053063393, -0.01690422184765339, 0.028224695473909378, 0.03526174649596214, 0.0043152933940291405, 0.004812476225197315, 0.023201871663331985, -0.0023249678779393435, 0.0034898421727120876, -0.01511946227401495, -0.05706130713224411, 0.003048432758077979, 0.026771390810608864, 0.01766911894083023, -0.007527860347181559, -0.014137844555079937, -0.024056008085608482, 0.013589668087661266, 0.06970760226249695, -0.00962495245039463, 0.041431915014982224, -0.009217007085680962, -0.026095733046531677, 0.022500716149806976, 0.027944233268499374, -0.018790967762470245, 0.02858164720237255, 0.010989018715918064, 0.054511651396751404, 0.0040603275410830975, 0.011811282485723495, 0.006871323566883802, 0.02112390287220478, 0.02604473941028118, -0.0004111320886295289, 0.010020148940384388, -0.03498128429055214, -0.017656369134783745, -0.06465928256511688, -0.019721591845154762, -0.016929717734456062, 0.0008891926263459027, 0.01416334044188261, 0.0026898873038589954, 0.002211826853454113, 0.00314085790887475, 0.02715384028851986, -0.005061067640781403, 0.015297938138246536, -0.034114401787519455, 0.026975363492965698, -0.006170168053358793, -0.01300962083041668, 0.0036906274035573006, -0.001982357818633318, -0.010039271786808968, -0.042859721928834915, 0.008445736952126026, 0.002834899118170142, 0.023138130083680153, 0.016674751415848732, 0.04982028529047966, -0.041125956922769547, 0.013436689041554928, 0.0410749614238739, -0.018064314499497414, -0.03475181385874748, 0.03821934759616852, 0.02123863622546196, 0.02898959256708622, 0.00658448738977313, -0.00547538697719574, -0.008681579492986202, -0.004672245122492313, 0.007215527351945639, -0.0070561738684773445, 0.01324546430259943, -0.010001027025282383, 0.0025783400051295757, -0.00802504364401102, 0.02557305246591568, 0.013347450643777847, -0.008993912488222122, -0.03215116634964943, 0.007661717012524605, -0.015297938138246536, 0.027612777426838875, 0.015297938138246536, 0.04829049110412598, 0.0073685068637132645, 0.007304765284061432, 0.029779985547065735, 0.052930865436792374, 0.0041718753054738045, 0.005233169533312321, 0.02881111577153206, 0.022462472319602966, -0.006935065146535635, 0.00393284484744072, -0.015680385753512383, -0.0037607429549098015, 0.009854421950876713, 0.0014325880911201239, -0.022182010114192963, 0.017643621191382408, -0.010255992412567139, -0.002740880474448204, -0.03380844369530678, 0.024017762392759323, -0.005551876500248909, -0.027102846652269363, 0.0025496562011539936, -0.032202158123254776, 0.039111725986003876, 0.0028588022105395794, 0.017184684053063393, -0.002516192151233554, 0.013819137588143349, 0.04691367596387863, -0.009134143590927124, 0.006941439118236303, 0.008649708703160286, -0.035185255110263824, 0.00011901716061402112, 0.023456837981939316, -0.014023109339177608, 0.033527981489896774, 0.04987127706408501, -0.01195788849145174, 0.010670311748981476, -0.0020875311456620693, 0.024769911542534828, 0.02086893655359745, 0.04795903339982033, 0.028352178633213043, 0.012748281471431255, 0.006100052502006292, -0.024387462064623833, 0.0223349891602993, -0.006052246782928705, -0.005351091269403696, -0.003077116562053561, -0.00348665495403111, 0.03702101111412048, 0.020779699087142944, -0.002207046141847968, 0.0026898873038589954, -0.002970349509268999, -0.008860055357217789, -0.011091005057096481, 0.008127029053866863, -0.012537934817373753, 0.00504194526001811, -0.018242791295051575, -0.03276308253407478, 0.006590861361473799, 0.00685220118612051, 0.029295550659298897, 0.017579879611730576, 0.04316568002104759, 3.0800048989476636e-05, 0.004187810700386763, 0.00964407529681921, -0.000551761535461992, 0.0013027150416746736, 0.044262032955884933, 0.00022409087978303432, -0.012404077686369419, -0.0056984820403158665, 0.02682238444685936, 0.02104741334915161, -0.00392328342422843, -0.014099599793553352, -0.016509024426341057, 0.01061931811273098, 0.012378580868244171, -0.0022245750296860933, -0.021774064749479294, -0.017618125304579735, 0.019938312470912933, 0.0006047466304153204, 0.01696796342730522, 0.001342553412541747, 0.038117360323667526, -0.022908661514520645, 0.00024002623104024678, -0.028097212314605713, 0.057112302631139755, -0.04989677295088768, 0.0361541248857975, 0.017834845930337906, 0.015565651468932629, -0.003282682504504919, -0.007852941751480103, -0.006160607095807791, 0.007706336211413145, 0.01657276600599289, -0.008624212816357613, 0.013615164905786514, -0.008254512213170528, 0.026592915877699852, -0.004006147384643555, -0.04081999883055687, -0.017834845930337906, 0.014380061067640781, 0.006316773593425751, -0.023240117356181145, -0.006979684345424175, 0.023724552243947983, -0.007336636073887348, -0.01300962083041668, -0.016891473904252052, -0.01995106041431427, -0.028964094817638397, -0.017592627555131912, -1.4404064131667838e-05, -0.029372040182352066, 0.007833818905055523, -0.011110126972198486, -0.034522347152233124, -0.02483365312218666, 0.008273635059595108, -0.00411450769752264, 0.014737013727426529, -0.01858699508011341, 0.010192250832915306, 0.001528200227767229, -0.030774351209402084, 0.007151785772293806, -0.018306532874703407, 0.009369987063109875, 0.01936464011669159, 0.011766663752496243, 0.0016413412522524595, 0.027255825698375702, 0.0097715575248003, 0.008273635059595108, -0.041278935968875885, 0.0044013443402945995, -0.011549943126738071, 0.007202778942883015, -0.041686881333589554, 0.02561129815876484, -0.004908088594675064, -0.02674589492380619, 0.0010899780318140984, -0.023010648787021637, 0.018089812248945236, -0.005201298743486404, 0.017643621191382408, -0.007878437638282776, 0.01095077395439148, 0.010982644744217396, 0.011964262463152409, 0.006871323566883802, -0.018841959536075592, -0.027383308857679367, 0.009746061637997627, -0.011288602836430073, 0.03148825466632843, -0.004720051307231188, 0.003814923344179988, -0.0011935578659176826, -0.015106713399291039, 0.03133527562022209, -0.024349218234419823, -0.020078543573617935, -0.01870172843337059, 0.006014002021402121, -0.029448529705405235, 0.005456264596432447, 0.015501909889280796, 0.022500716149806976, -0.028887605294585228, -0.011046386323869228, -0.013615164905786514, -0.002119401702657342, 0.002978317206725478, -0.0048443470150232315, -0.026592915877699852, -0.0008915829239413142, -0.0016477153403684497, 0.01056195143610239, 0.061599697917699814, 0.010428094305098057, 0.0011680612806230783, 0.02075420320034027, 0.005720791406929493, 0.026873378083109856, 0.029015088453888893, -0.03278857842087746, 0.005545502528548241, 0.015068468637764454, 0.006711970083415508, 0.01486449595540762, 0.03500678017735481, -0.013857382349669933, -0.03633260354399681, 0.014239830896258354, 0.01833202876150608, -0.018459511920809746, -0.003716123988851905, -0.0030181556940078735, -0.0034069782122969627, -0.022143764421343803, 0.0006437881966121495, 0.0012843894073739648, 0.015744127333164215, 0.019594108685851097, 0.024476701393723488, -0.009510218165814877, -0.028173701837658882, 0.01241682656109333, 0.01532343402504921, -0.021302377805113792, -0.01631779968738556, 0.03551671281456947, 0.05081465095281601, -0.02756178379058838, -0.008005920797586441, 0.02740880474448204, 0.03648558259010315, 0.022385982796549797, 0.003193444572389126, 0.01851050555706024, 0.0004095385374967009, -0.003349611070007086, -0.0013903594808652997, 0.001991919009014964, -0.010440842248499393, -0.01425257883965969, 0.01616482064127922, -0.031768716871738434, -0.014125095680356026, 0.04117694869637489, -0.02840317040681839, -0.0029480401426553726, 0.009924537502229214, 0.014762509614229202, 0.02311263419687748, -0.0009624952799640596, -0.00918513722717762, 0.014201585203409195, 0.002417392795905471, -0.026057487353682518, 0.0005155086400918663, 0.0039296578615903854, 0.003056400455534458, -0.002288316609337926, 0.007738207001239061, -0.018650736659765244, 0.0067565892823040485, 0.012965002097189426, 0.01503022387623787, -0.0016540895448997617, -0.016266807913780212, 0.02127688191831112, 0.019377388060092926, -0.0003446019836701453, -0.05374675616621971, -0.020601222291588783, 0.022067274898290634, -0.006170168053358793, 0.03712299466133118, -0.0345478430390358, 0.004034831188619137, 0.042120322585105896, -0.0046148779802024364, -0.02366081066429615, 0.011467079631984234, -0.0018867456819862127, 0.03651107847690582, -0.014596782624721527, 0.024884644895792007, 0.013066988438367844, -0.03855080157518387, -0.00964407529681921, -0.015565651468932629, 0.0065717389807105064, -0.011843153275549412, -0.0029161693528294563, 0.013474933803081512, -0.02748529426753521, 0.02469342201948166, -0.008592342026531696, -0.02362256497144699, -0.003132890211418271, 0.014265326783061028, 0.007872063666582108, 0.012671791948378086, -0.01885470747947693, -0.009988278150558472, 0.026796888560056686, -0.024514945223927498, -0.014915489591658115, 0.027306819334626198, -0.012423200532793999, 0.005774971563369036, -0.06409835815429688, 0.051426567137241364, -0.005701669026166201, 0.011180242523550987, 0.02914257161319256, 0.019708843901753426, -0.0012254285393282771, 0.023418592289090157, -0.001907461672089994, 0.013130730018019676, 0.0377604104578495, 0.007081670220941305, -0.014826251193881035, 0.008107907138764858, -0.014150592498481274, 0.023265613242983818, 0.0348283052444458, -0.009682320058345795, -0.004710489884018898, 0.02053748071193695, -0.03921371325850487, -0.004226055461913347, 0.0532878153026104, 0.03133527562022209, -0.049310352653265, -0.004477833863347769, -0.004308918956667185, -0.013283709064126015, -0.02440021000802517, 0.010938025079667568, -0.0020110413897782564, -0.026108480989933014, 0.022169262170791626, 0.0006350237526930869, -0.0015090778470039368, -0.0039009740576148033, 0.017554383724927902, 0.0012262252857908607, 0.0025703723076730967, -0.012767404317855835, 0.04321667551994324, -0.0295760128647089, 0.015361678786575794, 0.018905701115727425, 0.02083069272339344, -0.031105807051062584, 0.012601676397025585, 0.025840766727924347, -0.0034579713828861713, 0.020257018506526947, -0.00221342034637928, -0.0014429461443796754, -0.003110580611974001, -0.011728418990969658, 0.02134062349796295, -0.0016126575646921992, -0.028785619884729385, 0.026031991466879845, -0.024922890588641167, 0.0006031530792824924, -0.011505324393510818, 0.03159024193882942, 0.02494838647544384, -0.050789155066013336, -0.009013035334646702, 0.013398444280028343, 0.01881646364927292, 0.011110126972198486, -0.046352751553058624, -0.012627173215150833, -0.041202444583177567, -0.001960048219189048, 0.003061181167140603, 0.06414934992790222, -0.011294977739453316, -0.00469455448910594, -0.02381378971040249, -0.01478800643235445, -0.017975077033042908, 0.04966730624437332, -0.007546982727944851, 0.00010806160571519285, 0.022322241216897964, -0.004299357999116182, 0.011919642798602581, -0.02733231522142887, 0.004997326526790857, 0.03801537677645683, -0.009465599432587624, -0.018102560192346573, -0.049182869493961334, 0.010045645758509636, 0.01645803079009056, 0.024183489382267, -0.006782085634768009, 0.023303858935832977, -0.03406341001391411, -0.01620306633412838, 0.0014995166566222906, 0.02469342201948166, 0.016062835231423378, 0.010823290795087814, 0.00931261945515871, -0.03240613266825676, -0.03839782252907753, -0.04551136493682861, 0.024310972541570663, 0.05106961727142334, 0.015897106379270554, -0.014533041045069695, 0.010466339066624641, -0.014584033749997616, 0.013003246858716011, 0.02682238444685936, 0.022985151037573814, 0.020703209564089775, -0.011071882210671902, -0.032941561192274094, -0.0005485744914039969, -0.032125670462846756, -0.03421638906002045, 0.0030133749824017286, -0.025228848680853844, -0.004277048632502556, -0.0014238236472010612, -0.0012310058809816837, -0.025917256250977516, -0.04750009626150131, -0.03834683075547218, -0.0038691035006195307, -0.02774026058614254, 0.014354565180838108, -0.03612862899899483, 0.007719084620475769, -0.03108031116425991, -0.04224780574440956, -0.024718917906284332, -0.003410165198147297, 0.002653236035257578, 0.035618700087070465, -0.02965250238776207, -0.009835299104452133, 0.0036970016080886126, 0.016840480268001556, -0.04242628067731857, -0.007553356699645519, -0.005580560304224491, 0.04737261310219765, 0.027255825698375702, 0.00411450769752264, 0.03424188494682312, -0.024196239188313484, 0.018383022397756577, -0.02241147868335247, 0.02858164720237255, -0.004229242447763681, -0.017911335453391075, 0.007304765284061432, 0.0003762734995689243, -0.05333881080150604, -0.0074003771878778934, 0.0220035333186388, -0.020766951143741608, -0.011926017701625824, 0.007725458592176437, -0.0015074842376634479, -0.0015441356226801872, 0.001365659642033279, 0.021289629861712456, 0.029270054772496223, 0.021621085703372955, 0.015769625082612038, -0.01054282858967781, 0.015756875276565552, -0.005226795561611652, 0.00462762638926506, -0.01914791949093342, -0.009510218165814877, -0.01164555549621582, 0.027051853016018867, 0.03556770458817482, -0.011396964080631733, 0.039035238325595856, 0.007661717012524605, -0.03773491457104683, 0.013640660792589188, 0.033782947808504105, -0.023431342095136642, 0.006603609770536423, -0.004637187346816063, -0.0050451322458684444, -0.0009688693680800498, 0.02740880474448204, 0.03225315362215042, -0.02756178379058838, 0.007279268931597471, 0.011894146911799908, -0.01627955585718155, -0.01333470270037651, 0.02932104654610157, 0.03926470875740051, 0.005214047152549028, 0.0013369760708883405, -0.010842413641512394, 0.019861822947859764, 0.021264133974909782, -0.01080416887998581, 0.015603896230459213, -0.017771104350686073, 0.06302750110626221, -0.04365011677145958, -0.01796232908964157, -0.01218098308891058, -0.040692515671253204, 0.017885839566588402, 0.020524732768535614, 0.0014788006665185094, 0.018064314499497414, -0.05104411765933037, 0.015208699740469456, -0.0055741858668625355, -0.036460086703300476, -0.010377101600170135, 0.006680099293589592, -0.017720110714435577, 0.011843153275549412, -0.006871323566883802, 0.010039271786808968, -0.03383393958210945, -0.003674692241474986, 0.02307439036667347, 0.04273223876953125, 0.013462184928357601, -0.0526249073445797, 0.011811282485723495, 0.02906608209013939, 0.032457124441862106, 0.009854421950876713, 0.007559731137007475, 0.024667924270033836, 0.01184952724725008, 0.0048188501968979836, -0.008490355685353279, 0.03500678017735481, -0.02307439036667347, 0.026771390810608864, -0.008789939805865288, -0.0031711349729448557, -0.0034898421727120876, 0.011027263477444649, -0.017031705006957054, 0.010651188902556896, -0.00856047123670578, 0.003203005762770772, 0.0061414847150444984, 0.0020907181315124035, 0.019390136003494263, -0.008719824254512787, -0.03146275877952576, 0.017222927883267403, -0.016700249165296555, 0.011964262463152409, -0.006291276775300503, -0.016891473904252052, 0.07037051022052765, 0.009274374693632126, -0.032533615827560425, 0.008369246497750282, -0.011600935831665993, -0.004410905297845602, -0.00940823182463646, -0.01357692014425993, 0.011824031360447407, 0.04232429340481758], [0.04357552155852318, 0.0006225703400559723, 0.003786752698943019, -0.005543735809624195, -0.024286841973662376, 0.01332843117415905, -0.032945629209280014, 0.03259364515542984, 0.03723982349038124, 0.0006280700326897204, -0.01281218882650137, -0.018878033384680748, -0.015264338813722134, 0.013610017485916615, -0.01985185407102108, 0.006705280393362045, 0.009638473391532898, -0.0027894671075046062, 0.009397951886057854, 0.023653272539377213, 0.03275790438055992, 0.05739672854542732, 0.026844587177038193, 0.013668681494891644, 0.009075300768017769, -0.013598284684121609, -0.010805884376168251, 0.003296909388154745, 0.033274147659540176, -0.022479994222521782, 0.04174520820379257, -0.0073799146339297295, 0.010911479592323303, -0.007544173859059811, -0.00030926859471946955, 0.006441292818635702, -0.027595484629273415, -0.02956658974289894, 0.013398827984929085, -0.021658699959516525, 0.001108013791963458, -0.0424022451043129, -0.0009261558298021555, -0.0527036190032959, -0.04749426990747452, 0.044561076909303665, -0.0054293409921228886, -0.022163210436701775, 0.00038461500662378967, 0.04294195398688316, 0.07095981389284134, 0.043223537504673004, -0.0029786580707877874, 0.019593732431530952, 0.013082043267786503, 0.0038160847034305334, -0.004279529210180044, 0.06246528774499893, 0.019159620627760887, -0.005001095123589039, 0.016414150595664978, -0.01268312893807888, 0.03315681964159012, 0.01368041429668665, -0.018889766186475754, -0.03205393999814987, 0.005182953085750341, 0.028862623497843742, 0.013750811107456684, 0.017563963308930397, -0.02094300091266632, 0.0399852953851223, -0.014888890087604523, -0.03444742411375046, -0.0011065471917390823, 0.012213817797601223, 0.021799493581056595, -0.07785868644714355, 0.0456404909491539, 0.029965505003929138, -0.006799142342060804, 0.017294108867645264, 0.015674985945224762, 0.04144015908241272, -0.0395863801240921, 0.032358989119529724, -0.03538604453206062, -0.04709535464644432, -0.010976010002195835, -0.036136943846940994, -0.04681376740336418, -0.0038982140831649303, 0.011028807610273361, 0.023582875728607178, -0.005828255321830511, 0.021236320957541466, 0.021564839407801628, 0.010952544398605824, -0.013175904750823975, 0.06626670807600021, 0.013551353476941586, 0.0063767628744244576, -0.048292096704244614, 0.020121706649661064, 0.002007771050557494, -0.05378303676843643, -0.032358989119529724, 0.020227301865816116, 0.012999913655221462, 0.047142285853624344, 0.030317487195134163, -0.01581577956676483, -0.016977323219180107, 0.030599074438214302, -0.018490850925445557, -0.028346382081508636, 0.007790561765432358, -0.01722371205687523, 0.006312232464551926, -0.034541286528110504, -0.018889766186475754, -0.02211627922952175, 0.018162334337830544, -0.055988796055316925, 0.014806760475039482, -0.002738136099651456, -0.030458280816674232, -0.0031150514259934425, -0.01230768021196127, 0.0005987381446175277, 0.026774190366268158, -0.05519096925854683, 0.10587655007839203, -0.021998951211571693, 0.006189038045704365, 0.019417740404605865, 0.014724631793797016, 0.016895193606615067, -0.004388057626783848, -0.055707212537527084, 0.04596900939941406, -0.018502583727240562, 0.04810437187552452, 0.03073986805975437, -0.012941249646246433, 0.010729622095823288, 0.016050435602664948, 0.005080291070044041, -0.044983454048633575, 0.019241750240325928, 0.023148763924837112, -0.01957026682794094, -0.028299450874328613, -0.02895648591220379, 0.03257017955183983, -0.0029243938624858856, 0.015017950907349586, 0.07738937437534332, -0.019359076395630836, 0.004006742499768734, 0.012448472902178764, -0.024404169991612434, -0.0317019559442997, -0.03503406420350075, 0.0004025808011647314, 0.031960077583789825, 0.02649260312318802, 0.009474215097725391, -0.04385710880160332, -0.01627335697412491, -0.05171806737780571, -0.041228968650102615, 0.01603870280086994, -0.046414852142333984, -0.004957097116857767, -0.03245285153388977, 0.014865424484014511, 0.024967342615127563, -0.022081080824136734, 0.010929078795015812, 0.0021104328334331512, 0.00870571844279766, -0.05059172213077545, -0.006816741544753313, -0.04186253622174263, 0.018772438168525696, 0.0033115753903985023, -0.011615445837378502, -0.06044725328683853, -0.040173016488552094, 0.011386657133698463, -0.02520199865102768, -0.016766134649515152, -0.0036048947367817163, -0.033837318420410156, 0.007737764623016119, -0.0019197751535102725, -0.007702566217631102, 0.019593732431530952, -0.04510078206658363, 0.00030486879404634237, 0.0005012094625271857, 0.04519464448094368, -0.0029566590674221516, 0.004024341702461243, -0.008388933725655079, 0.007174591068178415, 0.011052273213863373, 0.050216272473335266, 0.023594608530402184, 0.030223626643419266, 0.008154277689754963, -0.0064764912240207195, -0.021998951211571693, -0.00930995587259531, 0.02998897060751915, 0.05495631322264671, -0.04101777821779251, 0.03984450176358223, -0.00033218416501767933, -0.030059367418289185, -0.03088066168129444, 0.008312670513987541, -0.023876195773482323, 0.008570791222155094, -0.031044919043779373, -0.052375104278326035, -0.004121136851608753, 0.014454777352511883, -0.006587952375411987, -0.03968024253845215, 0.011791437864303589, -0.05753752216696739, -0.04477226734161377, 0.017880747094750404, 0.02592943049967289, 0.028064794838428497, -0.06406094878911972, -0.021341916173696518, -0.0004025808011647314, 0.027877071872353554, 0.006939935963600874, -0.01427878625690937, 0.01904229260981083, 0.01920655183494091, -0.003751554526388645, -0.010641626082360744, 0.03139690309762955, 0.013140707276761532, -0.022221874445676804, 0.025272395461797714, -0.012014360167086124, 0.03430663049221039, -0.027266966179013252, 0.02909727953374386, 0.006071710493415594, -0.008652920834720135, -0.028299450874328613, 0.047165751457214355, 0.0030270556453615427, -0.016226425766944885, 0.04127589985728264, -0.008693985641002655, -0.006153840105980635, -0.01138079073280096, -0.01993398368358612, 0.0309979896992445, 0.006769810803234577, -0.026750724762678146, -0.010406970977783203, -0.028933020308613777, 0.023418616503477097, -7.268819899763912e-05, -0.039469052106142044, -0.025671308860182762, -0.002557744737714529, 0.00474590715020895, -0.062606081366539, -0.019241750240325928, 0.03360266610980034, -0.015804046764969826, 0.01246020570397377, -0.002732269698753953, -0.024380704388022423, -0.01839699037373066, 0.0023392217699438334, 0.03923439607024193, 0.0017100517870858312, 0.007731898222118616, -0.00026912050088867545, 0.05124875530600548, -0.013011646457016468, 0.0125188697129488, -0.01769302226603031, 0.03336801007390022, -0.008729184046387672, -0.051342617720365524, 0.020063042640686035, -0.027736278250813484, -0.035573769360780716, 0.009163296781480312, 0.03841310366988182, -0.0024096183478832245, -0.06978654116392136, -0.046156734228134155, 0.0436224527657032, -0.04378671199083328, 0.05908624827861786, 0.020602751523256302, 0.0002069734618999064, 0.023500746116042137, 0.004593381192535162, -0.010230978950858116, -0.060634974390268326, -0.014818493276834488, -0.009920060634613037, -0.040923915803432465, -0.009333421476185322, 0.03763873875141144, -0.0010640159016475081, 0.05819455906748772, -0.0039774104952812195, 0.041932933032512665, -0.032969094812870026, 0.042683832347393036, -0.0072801862843334675, 0.03752141073346138, 0.055003244429826736, -0.06692374497652054, -0.07063130289316177, -0.06753385066986084, -0.011275195516645908, 0.031490765511989594, -0.00772016542032361, -0.018514316529035568, -0.03142036870121956, -0.021564839407801628, 0.005490938201546669, -0.04620366543531418, 0.02607022412121296, 0.0654219463467598, 0.03015322983264923, 0.01061229407787323, -0.005147754680365324, -0.02578863687813282, 0.010706156492233276, -0.011603713035583496, -0.01722371205687523, 0.025671308860182762, 0.046133268624544144, -0.010031521320343018, -0.010236845351755619, -0.05345451831817627, -0.027853606268763542, -0.03911706805229187, -0.07898503541946411, 0.0527036190032959, -0.010019788518548012, -0.022409597411751747, 0.01434918213635683, 0.019394274801015854, 0.020767010748386383, 0.03747447952628136, 0.05880466476082802, 0.013211103156208992, 0.04258996993303299, -0.02215147763490677, 0.02259732224047184, -0.011932231485843658, 0.014748096466064453, 0.027900535613298416, 0.008365468122065067, 0.027994398027658463, 0.0035990283358842134, 0.021858157590031624, -0.0031267842277884483, -0.03648892790079117, 0.011316260322928429, 0.005074424669146538, -0.014208389446139336, -0.006787409540265799, -0.02621101774275303, 0.013915070332586765, 0.032499782741069794, 0.020426759496331215, 0.03334454447031021, -0.025577446445822716, -0.0022952239960432053, -0.0015619255136698484, 0.016050435602664948, -0.016625341027975082, 0.01341056078672409, 0.03245285153388977, -0.03721635788679123, 0.006893004756420851, 0.035432975739240646, 0.02122458815574646, 0.08503914624452591, 0.008277472108602524, -0.06687681376934052, -0.01783381588757038, -0.04620366543531418, 0.012342878617346287, -0.002889195689931512, 0.032687507569789886, -0.010389371775090694, -0.0056199985556304455, -0.031373437494039536, 0.02405218593776226, -0.014079328626394272, -0.005611198954284191, -0.020426759496331215, 0.022890642285346985, 0.017035987228155136, 0.005986648146063089, -0.008852377533912659, -0.0054528065957129, -0.004059539642184973, -0.010747221298515797, -0.03815498203039169, -0.002862796885892749, 0.009257158264517784, -0.034400492906570435, -0.0054029421880841255, 0.023007970303297043, -0.004740040749311447, -0.01817406713962555, -0.061808254569768906, 0.0363481342792511, -0.04097084701061249, -0.0024374837521463633, -0.012413274496793747, 0.05260976031422615, 0.016531478613615036, -0.031185712665319443, -0.02243306301534176, -0.01260099932551384, -0.00492189871147275, 0.013926803134381771, -0.026328343898057938, 0.016332020983099937, -0.022726383060216904, 0.059602491557598114, 0.022691184654831886, -0.0003329174651298672, -0.059320904314517975, -0.03895280882716179, 0.05505017563700676, -0.00011842768435599282, 0.01071202289313078, -0.014173191040754318, 0.018526049330830574, -0.026539534330368042, -0.029308469966053963, -0.019100956618785858, -0.03853042796254158, 0.01873723976314068, -0.05448700115084648, 0.01839699037373066, -0.0023978857789188623, 0.0012781390687450767, 0.017270643264055252, 0.013082043267786503, -0.015522459521889687, -0.0026384075172245502, 0.03552683815360069, 0.010494966059923172, 0.00021613969875033945, 0.016554944217205048, -0.03641853109002113, -0.0067522116005420685, -0.04594554379582405, -0.03303949162364006, 0.03930479288101196, 0.07203923165798187, -0.016836531460285187, 0.02461536042392254, 0.00025977095356211066, -0.00655862083658576, -0.02461536042392254, -0.02007477544248104, 0.0006684014806523919, -0.05110796168446541, -0.030035901814699173, 0.08475755900144577, 0.020285965874791145, 0.07776482403278351, -0.0036195607390254736, -0.0533137246966362, -0.04172174260020256, -0.030528677627444267, -0.016648806631565094, 0.012389808893203735, -0.010999475605785847, -0.013387095183134079, -0.023676738142967224, -0.05927397310733795, -0.0022717583924531937, -0.0003622493823058903, -0.011239997111260891, 0.05476858839392662, 0.012295947410166264, -0.035010598599910736, -0.009878995828330517, 0.013457491993904114, -0.012342878617346287, -0.003361439798027277, 0.011322126723825932, -0.020626217126846313, -0.041088175028562546, -0.016261624172329903, -0.08916908502578735, 0.011990894563496113, -0.016109097748994827, -0.027642415836453438, -0.0309979896992445, 0.003003590041771531, 0.009010770358145237, -0.004484852775931358, 0.0002012904005823657, 0.013457491993904114, -0.0009591542766429484, 0.01362175028771162, 0.006981000304222107, -0.00604237848892808, 0.0043792580254375935, 0.020203836262226105, -0.08935680985450745, -0.004062472842633724, -0.002871596487239003, -0.02578863687813282, 0.005819455720484257, -0.07194536924362183, -0.013293232768774033, -0.0104011045768857, -0.014325717464089394, 0.024803083389997482, 0.046414852142333984, -0.023571142926812172, 0.019312145188450813, 0.04040767252445221, 0.007274319883435965, -0.008981438353657722, -0.005898652132600546, -0.005332545842975378, -0.001150545198470354, 0.035409510135650635, -0.027149638161063194, -0.038319241255521774, -0.010893880389630795, 0.017211979255080223, 0.012694861739873886, -0.005027493461966515, -0.018971895799040794, -0.05002854764461517, 0.02592943049967289, 0.03524525463581085, -0.0020928336307406425, 0.008799580857157707, 0.008641188032925129, 0.007984152995049953, 0.017880747094750404, 0.03646546229720116, -0.015076614916324615, -0.022702917456626892, 0.03482287377119064, 0.0004088138521183282, -0.007268453482538462, 0.008142544887959957, 0.007456177845597267, -0.04066579416394234, -0.0282759852707386, 0.03808458521962166, -0.02124805375933647, 0.0434112623333931, 0.005156554281711578, -0.006928203161805868, -0.027712812647223473, -0.01230768021196127, 0.010418702848255634, 0.011069872416555882, 0.023277822881937027, 0.013046844862401485, -0.010043254122138023, -0.031068384647369385, -0.010254444554448128, -0.03428316488862038, -0.021400580182671547, -0.02867489866912365, -0.010389371775090694, 0.010148849338293076, 0.004176867660135031, 0.019898785278201103, -0.017341040074825287, -0.003176648635417223, 0.04083005338907242, 0.020896069705486298, 0.02724350057542324, -0.030786799266934395, 0.024662291631102562, -0.0006222036899998784, -0.023031435906887054, -0.016648806631565094, 0.03519832342863083, -0.02867489866912365, -0.02091953530907631, 0.004021408502012491, 0.014665967784821987, -0.005986648146063089, 0.013304965570569038, 0.014830226078629494, -0.018878033384680748, 0.006881271954625845, 0.0015237940242514014, -0.03536257892847061, 0.02707924321293831, -0.0059221177361905575, 0.015299537219107151, -0.018467385321855545, 0.005658130161464214, -0.022069348022341728, 0.006758078001439571, 0.018103670328855515, 0.004159268457442522, -0.04639138653874397, -0.009444883093237877, 0.0010251511121168733, -0.06129201129078865, 0.05167113617062569, 0.0031795818358659744, -0.022667719051241875, -0.005517337005585432, -0.03374345973134041, -0.004610980395227671, -0.06537501513957977, 0.03923439607024193, 0.009045968763530254, 0.01722371205687523, -0.002692671725526452, -0.013645215891301632, 0.050216272473335266, -0.03301602602005005, 0.015674985945224762, -0.021553106606006622, 0.028440244495868683, 0.05490938201546669, -0.03219473361968994, -0.022280538454651833, 0.0456404909491539, -0.015921374782919884, 0.021118992939591408, 0.019887052476406097, 0.023172229528427124, 0.001199676189571619, 0.019535068422555923, 0.01142185553908348, -0.01946467161178589, -0.016543211415410042, 0.00500402832403779, -0.013175904750823975, 0.002763068303465843, -0.032358989119529724, 0.026844587177038193, -0.027266966179013252, 0.0036254271399229765, 0.0039040804840624332, 0.06626670807600021, -0.011122670024633408, -0.026703793555498123, 0.01163304504007101, -0.020368095487356186, 0.0218112263828516, -0.012073024176061153, -0.03944558650255203, -0.00953287910670042, -0.009515279904007912, -0.022785047069191933, 0.036747049540281296, 0.015416865237057209, 0.00785509217530489, 0.016109097748994827, -0.004520051181316376, -0.02178776077926159, 0.027313897386193275, 0.025905964896082878, -0.006470624823123217, -0.003029988845810294, -0.041956398636102676, 0.0012642063666135073, 0.018748972564935684, 0.013023379258811474, 0.016531478613615036, 0.009837931022047997, 0.005226950626820326, -0.01861991174519062, -0.013656948693096638, 0.012788723222911358, 0.011926365084946156, -0.0003035855188500136, -0.018995361402630806, -0.03336801007390022, 0.026257948949933052, -0.015804046764969826, -0.02049715630710125, -0.05204658582806587, 0.015240873210132122, -0.008254006505012512, -0.006071710493415594, 0.03127957507967949, 0.010764820501208305, 0.01831486076116562, -0.00919849518686533, -0.010870414786040783, -0.00157512491568923, 0.002779200905933976, -0.009397951886057854, 0.009673671796917915, 0.003921679686754942, -0.00474590715020895, -0.03547990694642067, -0.03505752980709076, 0.01847911812365055, -0.02094300091266632, 0.017176780849695206, 0.02649260312318802, -0.040360741317272186, -0.00456991558894515, 0.03306295722723007, 0.02416951395571232, 0.035010598599910736, 0.02421644516289234, -0.01817406713962555, 0.03407197445631027, -0.007579371798783541, -0.036160409450531006, 0.018655110150575638, -0.0309979896992445, -0.013727345503866673, -0.0006101042381487787, -0.02066141553223133, 0.012659663334488869, -0.001548726111650467, 0.021036863327026367, -0.057866040617227554, 0.0036371599417179823, -0.009837931022047997, -0.04052500054240227, 0.050779446959495544, -0.07386954128742218, -0.013445759192109108, -0.037615273147821426, 0.007133526727557182, 0.012178619392216206, -0.0022306935861706734, -0.0034025043714791536, -0.025155067443847656, 0.02010997384786606, 0.014525174163281918, 0.024709222838282585, -0.027032312005758286, -0.007772962562739849, -0.018138868734240532, -0.0033115753903985023, 0.009245425462722778, -0.020262500271201134, -0.024239910766482353, -0.05617652088403702, -0.0023318887688219547, -0.02534279227256775, -0.016695737838745117, -0.02229227125644684, 0.009814465418457985, 0.025694774463772774, 0.006059977691620588, -0.0091398311778903, -0.012037825770676136, -0.036160409450531006, -0.0006684014806523919, -0.021834691986441612, -0.03116224706172943, 0.007057263515889645, -0.01649628020823002, -0.017434902489185333, 0.025600912049412727, -0.0125188697129488, -0.031209178268909454, 0.004217932466417551, 0.058147627860307693, 0.017599161714315414, -0.025530515238642693, -0.010090185329318047, -0.015428598038852215, 0.01999264769256115, -0.02211627922952175, -0.02940233238041401, -0.012835654430091381, 0.01926521398127079, -0.03449435532093048, 0.020614484325051308, -0.011105070821940899, -0.010641626082360744, -0.012495404109358788, -0.01073548849672079, 0.02027423307299614, 0.04979389160871506, 0.017282376065850258, -0.048479821532964706, 0.009063567966222763, -0.020602751523256302, -0.006453025620430708, 0.0027454691007733345, -0.00272640329785645, 0.019664129242300987, 0.0565519705414772, 0.011457053944468498, 0.01811540313065052, -0.01668400503695011, 0.017646092921495438, 0.011609579436480999, -0.009761667810380459, -0.02290237508714199, -0.012049558572471142, 0.021330183371901512, -0.0022365599870681763, 0.05232817307114601, 0.013211103156208992, 0.017235444858670235, 0.030176695436239243, -0.012800456024706364, -0.03637159988284111, 0.012870852835476398, 0.03404850885272026, 0.03390771523118019, 0.00045647824299521744, -0.04291848838329315, 0.004118203651160002, -0.007297785487025976, -0.0010383505141362548, 0.019922250881791115, 0.0007380648166872561, 0.022702917456626892, -0.04373978078365326, -0.005417608190327883, -0.04029034450650215, 0.005957316141575575, 0.04941844567656517, 0.00029881909722462296, -0.017540497705340385, -0.02072007954120636, 0.007022065110504627, 0.010107784532010555, -0.03709902986884117, -0.011363191530108452, 0.006758078001439571, 0.035409510135650635, 0.02029769867658615, 0.03423623368144035, 0.014806760475039482, -0.007749497424811125, -0.02324262447655201, -0.02926153875887394, 0.013598284684121609, -0.002296690596267581, -0.0016000570030882955, 0.0048749675042927265, -0.03881201520562172, 0.028510641306638718, 0.025718240067362785, -0.013598284684121609, 0.011597846634685993, 0.029754314571619034, -0.029613520950078964, -0.003833683906123042, -0.012577533721923828, -0.032804835587739944, 0.03496366739273071, 0.018021540716290474, 0.032358989119529724, 0.011052273213863373, -0.02592943049967289, -0.02354767732322216, 0.024685757234692574, 0.056411176919937134, -0.037145961076021194, 0.017939411103725433, 0.01513527799397707, -0.01224901620298624, 0.017176780849695206, 0.027501622214913368, -0.017341040074825287, 0.02649260312318802, 0.017599161714315414, 0.022773314267396927, -0.003323308192193508, 0.023453814908862114, -0.00850039441138506, 0.014372647739946842, 0.010301375761628151, -0.010729622095823288, 8.32293662824668e-05, -0.013832940720021725, -0.018549514934420586, -0.05486245080828667, -0.019394274801015854, -0.04052500054240227, 0.021212855353951454, -0.022163210436701775, -0.006722879596054554, 0.0023040235973894596, 0.017153315246105194, 0.02794746682047844, 0.0038747487124055624, 0.028158657252788544, -0.019194819033145905, 0.036136943846940994, 0.010952544398605824, -0.013997199013829231, 0.0010904147056862712, -0.0037720869295299053, -0.030669471248984337, -0.006722879596054554, 0.020426759496331215, 0.004109404049813747, -0.017012521624565125, 0.015405132435262203, 0.005382410250604153, -0.01766955852508545, 0.03763873875141144, 0.04434988647699356, -0.005587733816355467, -0.004185667261481285, 0.06284073740243912, -0.01682479865849018, 0.050920240581035614, 0.014267053455114365, -0.0021749630104750395, -0.0003937812289223075, 0.002812932478263974, -0.00037984855589456856, -0.012530602514743805, 0.006435426417738199, -0.015205674804747105, -0.012436740100383759, 0.010272043757140636, 0.02867489866912365, -0.010553630068898201, 0.02607022412121296, -0.018361791968345642, 0.04111164063215256, -0.01368041429668665, 0.048902202397584915, -0.004517117980867624, 0.014079328626394272, 0.025741705670952797, 0.007825760170817375, 0.032804835587739944, 0.028135191649198532, 0.016109097748994827, -0.004880833905190229, 0.023700203746557236, 0.051342617720365524, 0.008224674500524998, 0.023923126980662346, -0.024544963613152504, -0.013797742314636707, 0.007954820990562439, 0.011451187543570995, -0.011345592327415943, 0.035292185842990875, -0.006183172110468149, 0.014360914938151836, -0.027877071872353554, 0.004537650384008884, 0.03357920050621033, -0.012882585637271404, 0.003493433352559805, -0.03261711075901985, 0.021682165563106537, 0.01795114390552044, -0.005133088678121567, -0.01210822258144617, 0.016167761757969856, 0.031678490340709686, 0.008160144090652466, 0.003390771569684148, 0.03153769671916962, -0.023805798962712288, -0.02385273016989231, 0.0056463973596692085, 0.006059977691620588, 0.003232379211112857, 0.0466495081782341, -0.0030827864538878202, 0.044256024062633514, -0.025460120290517807, 0.03517485782504082, 0.014513441361486912, 0.04634445905685425, 0.041369762271642685, 0.01795114390552044, 0.023277822881937027, -0.054393138736486435, -0.007127660326659679, 0.0001715918187983334, -0.026164086535573006, -0.0019887052476406097, 0.007890290580689907, 0.05185886099934578, 0.0059074517339468, 0.02783014066517353, 0.03519832342863083, -0.029496192932128906, -0.023418616503477097, 0.0030505212489515543, -0.016249891370534897, -0.030247090384364128, 0.009579810313880444, -0.008570791222155094, -0.029519658535718918, 0.01761089451611042, 0.01027791015803814, 0.02377060055732727, 0.01376254390925169, 0.020391561090946198, -0.028487175703048706, 0.0018009807681664824, 0.04090045019984245, 0.03421276807785034, -0.014149725437164307, 0.02142404578626156, 0.018303127959370613, -0.04547623172402382, -0.02167043276131153, 0.020168637856841087, 0.02548358589410782, 0.03285176679491997, -0.005798923317342997, -0.06420174241065979, 0.01623815856873989, 0.05636424571275711, 0.006893004756420851, -0.010154715739190578, -0.008318536914885044, 0.002692671725526452, -0.03968024253845215, 0.016543211415410042, 0.018795903772115707, 0.03057560883462429, -0.014091061428189278, 0.0013074709568172693, 0.0010852816049009562, 0.04418562725186348, -0.04984082281589508, 0.010846949182450771, -0.0016117898048833013, 0.0028759962879121304, 0.01599177159368992, 0.0057050613686442375, -0.013610017485916615, -0.03315681964159012, 0.011621312238276005, -0.00957394391298294, 0.01702425442636013, -0.02909727953374386, 0.01884283497929573, 0.013445759192109108, -0.024263376370072365, -0.02057928591966629, -0.01036003977060318, 0.008858243934810162, -0.016918659210205078, 0.013023379258811474, 0.051061030477285385, 0.00681087514385581, -0.015522459521889687, -0.054533932358026505, -0.0016352554084733129, -0.021858157590031624, -0.04857368394732475, -0.007385781034827232, 0.00474590715020895, 0.0009364220313727856, -0.01758742891252041, -0.022139744833111763, -0.009480081498622894, 0.0009320222306996584, 0.000499376212246716, 0.00659381877630949, -0.00582532212138176, -0.011075738817453384, 0.0008711584960110486, -0.015287804417312145, 0.008629455231130123, 0.007192190270870924, -0.006681814789772034, 0.025553980842232704, 0.0070631299167871475, 0.016848264262080193, 0.025999827310442924, -0.01789247989654541, 0.022726383060216904, -0.018209265545010567, -0.0018097803695127368, -0.007145259529352188, 0.006611417979001999, -0.02435723878443241, 0.02463882602751255, -0.01434918213635683, -0.0062066372483968735, 0.002557744737714529, -0.0069106039591133595, 0.017822083085775375, -0.005819455720484257, -0.008711584843695164, 0.008946239948272705, 0.014431311748921871, 0.0023216225672513247, 0.006095176097005606, 0.024404169991612434, -0.009708870202302933, -0.0012341411784291267, 0.012342878617346287, -0.018748972564935684, 0.021658699959516525, -0.008383067324757576, -0.006857806351035833, -0.026750724762678146, 0.017939411103725433, 0.008013484999537468, -0.040501534938812256, -0.0074385786429047585, -0.019605465233325958, -0.037028633058071136, -0.0026090755127370358, 0.010090185329318047, 0.008570791222155094, 0.004461387172341347, -0.030035901814699173, -0.02637527510523796, 0.018655110150575638, 0.01544033084064722, 0.026844587177038193, 0.025671308860182762, 0.00035656633554026484, -0.018643377348780632, -0.019535068422555923, 0.023477280512452126, 0.06345084309577942, -0.024662291631102562, -0.01881936937570572, 0.02243306301534176, 0.045265041291713715, 0.03449435532093048, 0.01660187542438507, -0.027454691007733345, 0.002955192467197776, 0.03698170185089111, -0.029871642589569092, 0.028745295479893684, 0.014595570974051952, 0.004150468856096268, 0.00317078223451972, 0.004097671248018742, 0.061667460948228836, -0.009620875120162964, 0.008212941698729992, 0.021036863327026367, 0.016402417793869972, -0.02416951395571232, 0.012753525748848915, -0.00793722178786993, 0.03625427186489105, -0.007033797912299633, -0.0062594348564744, 0.009274757467210293, -0.021294984966516495, 0.01492408849298954, 0.0048163034953176975, -0.00034831673838198185, 0.026727259159088135, -0.01027791015803814, 0.04707188904285431, -0.025718240067362785, 0.0037456881254911423, 0.035010598599910736, 0.025460120290517807, 0.027055777609348297, -0.010606427676975727, 0.00541174178943038, -0.002949326066300273, 0.021776027977466583, -0.02534279227256775, 0.010506698861718178, -0.05378303676843643, -0.01724717766046524, 0.0019036425510421395, -0.017434902489185333, -0.011973296292126179, 0.02223360724747181, -0.015886176377534866, -0.005919184535741806, -0.005265082232654095, 0.00306225405074656, 0.022022416815161705, 0.005136021878570318, -0.03041134960949421, 0.032499782741069794, -0.03684091195464134, 0.008101480081677437, -0.006218370050191879, 0.02360634133219719, 0.003763287328183651, -0.036606255918741226, -0.003628360340371728, -0.015463796444237232, 0.0016117898048833013, -0.006136240903288126, 0.014607303775846958, -0.026445671916007996, -0.01082348357886076, 0.015616321936249733, 0.03207740560173988, 0.010641626082360744, -0.05364224314689636, -0.0019124421523883939, 0.00503922626376152, -0.01208475697785616, -0.0019945716485381126, -0.004880833905190229, 0.03205393999814987, 0.048479821532964706, 0.005077357869595289, -0.03679398074746132, -0.018490850925445557, 0.008242273703217506, 0.025835568085312843, 0.021095527336001396, 0.016531478613615036, 0.013950267806649208, -0.018866300582885742, -0.027290431782603264, 0.009227827191352844, -0.011386657133698463, -0.032664041966199875, -0.02811172604560852, -0.0032939761877059937, -0.011011208407580853, 0.01766955852508545, -0.0059895808808505535, -0.028440244495868683, 0.030200161039829254, 0.009380352683365345, 0.004842702299356461, 0.010659225285053253, -0.029026882722973824, 0.012436740100383759, 0.02562437765300274, -0.01268312893807888, 0.012929516844451427, 0.01260099932551384, -0.007350583095103502, -0.010882147587835789, -0.023348219692707062, 0.04756466671824455, 0.004951230715960264, 0.004253130406141281, 0.0373571515083313, 0.01738797128200531, -0.007538307458162308, 0.037145961076021194, 0.011961563490331173, -0.009509413503110409, 0.017716487869620323, -0.01884283497929573, 0.0028847958892583847, 0.012906051240861416, -0.015393399633467197, 0.02881569229066372, 0.021740829572081566, -0.015604589134454727, 0.014325717464089394, 0.01702425442636013, -0.02663339674472809, 0.011040540412068367, -6.618017505388707e-05, 0.015405132435262203, -0.017071185633540154, -0.00503922626376152, -0.01159198023378849, -0.033978112041950226, -0.00940968468785286, -0.004558182787150145, 0.034423958510160446, -0.03597268462181091, 0.005966115742921829, 0.004989362321794033, 0.02144751138985157, -0.007573505397886038, 0.03318028524518013, -0.014360914938151836, -0.005332545842975378, 0.0075500402599573135, 0.0109056131914258, -0.012295947410166264, 0.0159565731883049, 0.04937151446938515, 0.013703879900276661, -0.017622627317905426, -0.00837133452296257, 0.02324262447655201, -0.010354173369705677, 0.008629455231130123, 0.005913318134844303, -0.00803695060312748, 0.034118905663490295, -0.015405132435262203, 0.01688346266746521, 0.000581138941925019, -0.01053016446530819, 0.000972353620454669, -0.032218195497989655, 0.006159706506878138, -0.018443921580910683, 0.02041502669453621, 0.044842660427093506, -0.0357380285859108, -0.012718327343463898, 0.007174591068178415, 0.034118905663490295, 0.010189914144575596, -0.025319326668977737, -0.007943088188767433, -0.006464758422225714, -0.008594256825745106, -0.009110499173402786, 0.03428316488862038, 0.0031297174282372, 0.01208475697785616, 0.0011952763888984919, 0.03027055598795414, -0.049183789640665054, 0.03374345973134041, -0.01148051954805851, -0.02330128848552704, 0.004417389631271362, 0.0317019559442997, 0.006065844092518091, -0.024943877011537552, 0.0038160847034305334, -0.009298223070800304, 0.025553980842232704, -0.018936697393655777, -0.021189389750361443, 0.01651974581182003, -0.008717451244592667, -0.004995228722691536, 0.009902461431920528, -0.0007431979174725711, -0.013610017485916615, 0.01847911812365055, -0.009820331819355488, 0.029965505003929138, -0.006335698068141937, 0.02682112157344818, 0.01789247989654541, -0.027618950232863426, -0.043669383972883224, -0.02273811586201191, 0.0006350363837555051, 0.01237807609140873, 0.00547333899885416, 0.015968305990099907, 0.013222835958003998, 0.006212503649294376, -0.007884424179792404, 0.029331935569643974, 0.010119517333805561, 0.022914107888936996, -0.004244330804795027, -0.0019579066429287195, 0.025671308860182762, -0.020790476351976395, -0.021740829572081566, 0.03102145530283451, -0.012260749004781246, -0.005722660571336746, 0.003953944891691208, -0.004608047194778919, -0.022526925429701805, -0.03606654703617096, -0.025131601840257645, -0.012530602514743805, 0.00537654384970665, 0.01073548849672079, -0.011621312238276005, 0.014290519058704376, -0.013234568759799004, -0.03205393999814987, -0.03768566995859146, -0.009790999814867973, -0.025882499292492867, 0.04418562725186348, 0.010324841365218163, -0.03721635788679123, 0.0030123896431177855, 0.014208389446139336, -0.05073251575231552, -0.0005613398971036077, -0.029918573796749115, 0.05096717178821564, 0.02287890948355198, -0.0003510665846988559, 0.03027055598795414, -0.014431311748921871, 0.011210665106773376, -0.018244463950395584, 0.019593732431530952, -0.0034670347813516855, -0.009192628785967827, -0.023899661377072334, -0.011239997111260891, -0.032804835587739944, 0.008060415275394917, 0.014501708559691906, -0.011715174652636051, -0.017352772876620293, 0.008594256825745106, -0.025272395461797714, 0.021916821599006653, 0.0023538877721875906, -0.0008484261925332248, 0.015346468426287174, 0.022890642285346985, 0.012765257619321346, 0.0008784914389252663, 0.014607303775846958, -0.03156116232275963, 0.026257948949933052, 0.001075748703442514, 0.010929078795015812, 0.007890290580689907, 0.02926153875887394, 0.01971106044948101, -0.01710638403892517, 0.02562437765300274, 0.010436302050948143, -0.03125610947608948, -0.0015061948215588927, -0.011140269227325916, 0.0036958237178623676, 0.005253349430859089, 0.011052273213863373, -0.012882585637271404, 0.01471289899200201, 0.023031435906887054, 0.029449263587594032, 0.004804571159183979, -0.0121668865904212, 0.010090185329318047, -0.020989932119846344, -0.020368095487356186, 0.013434026390314102, 0.04174520820379257, -0.010395238175988197, -0.023090099915862083, 0.005983714945614338, 0.03822537884116173, 0.011028807610273361, -0.0074913762509822845, 0.010670958086848259, -0.024427635595202446, 0.045875146985054016, -0.05828842148184776, 0.014748096466064453, 0.010588828474283218, -0.01613256335258484, 0.0004073472518939525, 0.03423623368144035, 0.017657825723290443, 0.00988486222922802, -0.055003244429826736, -0.0266568623483181, -0.001699785585515201, -0.04298888519406319, 0.006347430869936943, 0.016414150595664978, -0.01982838846743107, -0.0007479643682017922, -0.00011256129801040515, 0.008242273703217506, -0.011867701075971127, -0.002987457672134042, -0.003622493939474225, 0.04359898716211319, 0.0057637253776192665, -0.04451414570212364, -0.01003738772124052, 0.03862429037690163, 0.027173103764653206, -0.013516156002879143, 0.005438140593469143, 0.03503406420350075, -0.0008953573415055871, 0.014396113343536854, -0.00803695060312748, 0.025882499292492867, -0.03146729990839958, 0.028604503720998764, -0.014255320653319359, 0.014431311748921871, -0.014079328626394272, 0.013058577664196491, -0.021975485607981682, 0.011462920345366001, 0.003634226741269231, 0.016402417793869972, -0.01962893083691597, 0.008207075297832489, 0.012706594541668892, -0.0058634537272155285, -0.014255320653319359, 0.0319131463766098, -0.01152158435434103, -0.01671920344233513, -0.0032294460106641054, -0.032828301191329956, 0.05199965462088585, -0.004936564713716507, -0.04303581640124321, 0.005746126174926758, -0.027994398027658463, 0.02766588144004345, -0.023594608530402184, -0.013926803134381771, 0.007010332308709621, 0.04146362468600273], [0.02538781613111496, -0.023181257769465446, 0.04318903759121895, -0.011801367625594139, -0.04837073013186455, 0.020714374259114265, 0.0010010089026764035, 0.026577869430184364, 0.03441239148378372, -0.011968718841671944, -0.023763887584209442, -0.02450767159461975, -0.01747891679406166, -0.0011427926365286112, 0.009848935529589653, 0.011404682882130146, 0.01787560060620308, 0.025908464565873146, 0.02320604957640171, 0.01726817712187767, 0.018718555569648743, -0.006570089142769575, 0.018854916095733643, 0.011423277668654919, -0.011404682882130146, -0.015272358432412148, -0.0054017286747694016, -0.0072518908418715, 0.049312856048345566, -0.060097720474004745, 0.02853650040924549, -0.015879781916737556, -0.004410017281770706, -0.04199898615479469, -0.004224071279168129, 0.0026140897534787655, 0.03337109461426735, -0.03079264424741268, 0.00839855708181858, -0.02940424717962742, -0.01217945758253336, -0.050750840455293655, 0.0038769724778831005, -0.059552278369665146, 0.007326269056648016, 0.01454097032546997, 0.01807394251227379, -0.04341217502951622, 0.03746190294623375, 0.029924895614385605, 0.055238332599401474, 0.06386622786521912, -0.013636033982038498, 0.015359132550656796, 0.02149534784257412, 0.02771833725273609, -0.020714374259114265, 0.03359422832727432, 0.017230987548828125, -0.015731025487184525, 0.0026404319796711206, -0.003116143634542823, 0.038875091820955276, -0.0074874223209917545, 0.00621369294822216, -0.00886962004005909, 0.025412607938051224, 0.05127148702740669, -0.026924969628453255, 0.048023633658885956, -0.017032645642757416, 0.06337036937475204, -0.013772394508123398, -0.0015425763558596373, 0.00608972879126668, 0.035924751311540604, 0.03562723845243454, -0.08498968183994293, 0.01333852019160986, 0.018892105668783188, -0.037709832191467285, 0.014082304202020168, -0.008311782032251358, 0.03431322053074837, -0.013065800070762634, 0.015272358432412148, -0.012260033749043941, -0.01890450157225132, -0.021929221227765083, -0.004332540091127157, -0.03984201326966286, -0.020292898640036583, 0.03391653671860695, 0.01542111486196518, -0.0025149185676127672, 0.018272286280989647, 0.0045308819971978664, -0.021879635751247406, -0.015334339812397957, 0.06699011474847794, 0.002931747352704406, 0.006532900035381317, -0.0386519581079483, 0.010183637961745262, -0.004434810020029545, -0.052461542189121246, -0.04271797463297844, 0.049982260912656784, 0.0212350245565176, 0.04259401187300682, 0.007344863843172789, -0.032726481556892395, -0.012458376586437225, 0.013871565461158752, -0.03394132852554321, 0.001341134891845286, -0.019685475155711174, -0.015644250437617302, 0.021259816363453865, -0.027668751776218414, 0.029255490750074387, -0.008609295822679996, 0.030222410336136818, -0.02292093262076378, 0.011993511579930782, -0.03297441080212593, -0.03421404957771301, -0.0003689864242915064, -0.015731025487184525, 0.0011280719190835953, 0.018594590947031975, -0.051767341792583466, 0.05697382986545563, -0.016970664262771606, 0.006923386361449957, -0.028710050508379936, -0.011658809147775173, -0.00022042338969185948, -0.01652439311146736, -0.02662745490670204, 0.06822975724935532, -0.03049512952566147, 0.0476517416536808, 0.004320143256336451, -0.03656936436891556, 0.0007887206156738102, -0.015272358432412148, 0.029800932854413986, -0.08414672315120697, 0.00955761969089508, 0.005878990050405264, -0.016474807634949684, -0.05479206517338753, 0.008882016874849796, 0.04251963272690773, 0.013623637147247791, -0.022499455139040947, 0.05107314512133598, -0.010332394391298294, 0.0022174050100147724, -0.011280719190835953, -0.021817654371261597, -0.023925041779875755, -0.030544716864824295, -0.003072756342589855, 0.018792934715747833, 0.008751854300498962, -0.008727061562240124, -0.07115530222654343, -0.033073581755161285, -0.04202377796173096, -0.04291631653904915, 0.00259239599108696, -0.0451972559094429, -0.0228713471442461, -0.033197544515132904, 0.023788681253790855, 0.025635743513703346, -0.037288352847099304, 0.012445979751646519, 0.011510052718222141, -0.036693327128887177, -0.010388178750872612, -0.02428453601896763, -0.04961036890745163, 0.032577723264694214, -0.03384215757250786, -0.002936396049335599, -0.004174485802650452, 0.006526701617985964, 0.031709976494312286, -0.03562723845243454, -0.02349116839468479, -0.00860309787094593, -0.028511706739664078, -0.014181475155055523, -0.017652465030550957, -0.03726356104016304, 0.027197688817977905, -0.008906809613108635, -0.0287348423153162, -0.0008297836757265031, 0.06629591435194016, 0.026875382289290428, -0.031288500875234604, -0.02013174444437027, 0.024953942745923996, 0.00278144096955657, 0.05618045851588249, 0.004462702199816704, 0.0287348423153162, 0.02476799674332142, -0.017354952171444893, -0.009842737577855587, -0.0008847926510497928, 0.032255418598651886, 0.03235458955168724, -0.00414659408852458, 0.01951192505657673, -0.01923920400440693, -0.02034248411655426, -0.032875239849090576, -0.003153332741931081, -0.018321871757507324, -0.010115457698702812, 0.005231278482824564, -0.02244986966252327, -0.004245765041559935, 0.03203228488564491, -0.04046183079481125, -0.03741231933236122, -0.0015510988887399435, -0.03912302106618881, -0.05563502013683319, -0.008348971605300903, -0.024036608636379242, 0.06123818829655647, -0.018755745142698288, 0.004224071279168129, -0.00835516955703497, 0.010704286396503448, 0.03461073338985443, -0.0019431348191574216, 0.052511125802993774, 0.004394521936774254, -0.01454097032546997, -0.03793296590447426, -0.0017773330910131335, 0.019078051671385765, -0.026255562901496887, 0.03337109461426735, -0.009836538694798946, 0.02019372582435608, -0.009817944839596748, 0.026999346911907196, 0.01720619574189186, -0.014776501804590225, 8.052813791437075e-05, 0.06143653020262718, -0.003610449843108654, -0.03351984918117523, 0.06490752100944519, -0.004723026417195797, 0.005739530548453331, -0.03277606517076492, -0.042965903878211975, 0.037238769233226776, 0.02566053718328476, -0.01229102537035942, -0.0036910264752805233, -0.035800788551568985, 0.019437545910477638, -0.014491384848952293, -0.028685256838798523, -0.05236237123608589, 0.004732323810458183, 0.0006035494734533131, -0.047874875366687775, -0.050279777497053146, 0.06951898336410522, 0.009811745956540108, -0.016549186781048775, -0.0021306301932781935, -0.02340439334511757, 0.016945870593190193, -0.016350844874978065, 0.05469289422035217, 0.0525607131421566, 0.038180895149707794, -0.0018331168685108423, 0.030148031190037727, 0.016152501106262207, 0.018817726522684097, -0.009427458047866821, 0.016474807634949684, -0.007239494472742081, -0.03195790573954582, 0.00862789060920477, 0.004155891016125679, -0.013772394508123398, -0.005627963226288557, 0.03547848016023636, 0.01235920563340187, -0.03994118422269821, -0.014355025254189968, 0.014553367160260677, -0.04318903759121895, 0.01678471826016903, 0.019090447574853897, -0.01973506063222885, 0.01917722262442112, 0.0005067026359029114, -0.059205178171396255, -0.027693545445799828, -0.020925113931298256, 0.0284621212631464, -0.03448677062988281, -0.04189981147646904, 0.05766802653670311, -0.022970518097281456, 0.03676770627498627, 0.009328287094831467, 0.03949491307139397, -0.045296426862478256, 0.02196641080081463, -0.018334267660975456, 0.016152501106262207, 0.05434579402208328, -0.032453760504722595, -0.016871493309736252, -0.06332078576087952, 0.0019555313047021627, 0.06277534365653992, -0.028511706739664078, -0.03731314837932587, -0.02108626626431942, 0.02232590690255165, 0.0028666662983596325, -0.05553584545850754, 0.0022298013791441917, 0.03746190294623375, 0.022127564996480942, -0.00421477435156703, -0.01275588944554329, 0.0006314413622021675, 0.005488503724336624, -0.00972497183829546, -0.005689945071935654, 0.03671811893582344, 0.023652320727705956, 0.01596655696630478, 0.011658809147775173, -0.02811502292752266, -0.03411487862467766, -0.04799883812665939, -0.05454413592815399, 0.06713887304067612, -0.027519995346665382, -0.0239622313529253, 0.006520503666251898, 0.02982572466135025, 0.01959870010614395, 0.04095768555998802, 0.021544933319091797, 0.018656574189662933, 0.028015851974487305, 0.012476971372961998, 0.023863058537244797, -0.013239349238574505, 0.036346226930618286, 0.03585037216544151, 0.03002406656742096, 0.016673151403665543, 0.006762233097106218, -0.003734413767233491, 0.002954990603029728, 0.011094773188233376, -0.011999709531664848, -0.007580395322293043, -0.041180822998285294, -0.011026592925190926, -0.05206485837697983, 0.012892249971628189, 0.0260076355189085, 0.014491384848952293, 0.01143567357212305, -0.020429257303476334, 0.0014465042622759938, -0.023590339347720146, -0.01017124205827713, -0.05275905504822731, -0.0048531885258853436, 0.005212683696299791, -0.031288500875234604, -0.01570623181760311, 0.04368489235639572, 0.042891524732112885, 0.07963443547487259, -0.010289007797837257, -0.033271923661231995, -0.035999130457639694, -0.011361295357346535, -0.01467733085155487, 0.031709976494312286, 0.014516177587211132, 0.017652465030550957, 0.003123891307041049, -0.02580929361283779, 0.03632143512368202, -0.006830413360148668, 0.00969398021697998, 0.00033567112404853106, 0.029379455372691154, 0.022263923659920692, 0.02920590527355671, 0.0031424860935658216, 0.0035081796813756227, 0.0027674951124936342, -0.016140105202794075, -0.0024808284360915422, -0.03733794018626213, -0.007158917840570211, -0.0389246791601181, 0.010970809496939182, -0.01904086209833622, -0.029726553708314896, -0.03604871407151222, -0.05107314512133598, 0.03803213685750961, -0.06213073059916496, -0.025276247411966324, 0.022958122193813324, 0.026776211336255074, 0.02279696986079216, -0.03857757896184921, -0.013673223555088043, 0.022982915863394737, -0.006204395554959774, -0.033544644713401794, -0.006632070988416672, 0.04695754125714302, -0.016549186781048775, 0.052659884095191956, 0.01725578121840954, -0.010264215059578419, -0.03208186849951744, -0.03542889654636383, 0.011671205051243305, 0.022338302806019783, 0.011169151403009892, 0.0070597464218735695, 0.023912644013762474, -0.03966846317052841, -0.0340157076716423, -0.032602518796920776, -0.001322540338151157, 0.04199898615479469, -0.04046183079481125, 0.04599062353372574, 0.006154810078442097, 0.009991494007408619, 0.001496089855208993, 0.018247492611408234, -0.02088792435824871, 0.012855061329901218, 0.03044554404914379, 0.021061474457383156, 0.0059378729201853275, 0.021036680787801743, -0.017379745841026306, 0.0143674211576581, -0.02019372582435608, -0.028139814734458923, 0.045569147914648056, 0.06163487210869789, -0.012991421855986118, 0.007567998953163624, 0.02518947422504425, -0.048147596418857574, -0.014627745375037193, -0.036891669034957886, 0.0020794952288269997, -0.05030456930398941, -0.023391995579004288, 0.06341995298862457, 0.06158528849482536, 0.08498968183994293, -0.005882089026272297, -0.06039523333311081, -0.06718845665454865, -0.046783991158008575, 0.005482305306941271, -0.0027566482312977314, -0.012408791109919548, 0.0075556025840342045, -0.005023638717830181, -0.023925041779875755, -0.006539097987115383, -0.0015735672786831856, -0.010530737228691578, 0.03480907529592514, 0.026057220995426178, -0.04053620994091034, 0.013636033982038498, 0.01184475515037775, -0.027792716398835182, -0.0011629367945715785, 0.002962738275527954, -0.016400430351495743, -0.04824676737189293, -0.047527775168418884, -0.040437038987874985, 0.0001680292480159551, -0.00965679157525301, -0.02702414058148861, -0.035800788551568985, 0.005600071046501398, 0.03146205097436905, 0.003455494996160269, 0.007890305481851101, -0.0004361981409601867, -0.009532826952636242, 0.008906809613108635, 0.024817582219839096, -0.008857224136590958, -0.0010939817875623703, 0.008838629350066185, -0.08989865332841873, -0.012160862796008587, -0.014503781683743, -0.03421404957771301, -0.0038986660074442625, -0.04750298336148262, -0.02006976306438446, -0.0210986640304327, -0.01617729477584362, 0.0011071530170738697, 0.06143653020262718, -0.04256922006607056, 0.01364842988550663, 0.01918961852788925, 0.005761224310845137, -0.016809510067105293, -0.014293042942881584, -0.00129619799554348, -0.013945943675935268, 0.025610951706767082, -0.020168934017419815, -0.01638803258538246, 0.0017323960782960057, 0.014739313162863255, -0.010760070756077766, -0.00023649996728636324, -0.028288573026657104, -0.027247274294495583, -0.007140323054045439, 0.008553512394428253, -0.02237549237906933, 0.028164608404040337, -0.0024792789481580257, -0.013152574189007282, 0.012067889794707298, 0.03624705597758293, -0.006594881881028414, -0.014317835681140423, 0.05196568742394447, -0.0060835303738713264, -0.0029937291983515024, -0.009662989526987076, 0.00925390888005495, -0.044255129992961884, 0.006954377517104149, 0.02232590690255165, 0.004363530781120062, 0.024755598977208138, 0.005913080181926489, 0.005485404748469591, -0.005556683987379074, -0.01932597905397415, 0.020317690446972847, 0.02019372582435608, 0.01559466402977705, 0.020987095311284065, 0.038106516003608704, -0.02150774374604225, 0.02163170836865902, -0.0044255126267671585, -0.01835905946791172, -0.018470628187060356, -0.011857151053845882, -0.00989852100610733, 0.022263923659920692, 0.03840402886271477, -0.03351984918117523, -0.0016642159316688776, 0.03550327196717262, 0.017974771559238434, 0.00718371057882905, -0.05687465891242027, 0.03044554404914379, -0.02394983358681202, -0.03570161759853363, -0.003418305888772011, 0.021049078553915024, -0.029379455372691154, -0.05000705644488335, -0.03694125637412071, 0.013821979984641075, -0.005454413592815399, -0.0065081072971224785, 0.015954159200191498, -0.004936864133924246, -0.0065081072971224785, -0.02272259071469307, -0.03126370534300804, -0.004506089258939028, -0.03585037216544151, 0.005680647678673267, -0.010450160130858421, 0.010970809496939182, -0.0012613331200554967, 0.00931589026004076, -0.013078195974230766, 0.010685691609978676, -0.036618947982788086, 0.022697798907756805, 0.006836611777544022, -0.04157750681042671, 0.04581707343459129, 0.011274520307779312, -0.007667169906198978, -0.00842954870313406, -0.02702414058148861, -0.011702196672558784, -0.06475876271724701, 0.028238985687494278, -0.01374760176986456, 0.030148031190037727, 0.01918961852788925, 0.0028434230480343103, 0.03594954311847687, -0.03971804678440094, 0.007685764692723751, -0.02982572466135025, 0.016053330153226852, 0.03842882439494133, -0.02169368974864483, -0.009080358780920506, 0.06069274619221687, -0.013487277552485466, 0.03562723845243454, 0.037561073899269104, 0.0185078177601099, 0.004769512917846441, -0.005473008379340172, 0.0023413689341396093, -0.03726356104016304, -0.002057801466435194, -0.007580395322293043, 0.020776357501745224, -0.012954232282936573, -0.026057220995426178, 0.002601693384349346, -0.052659884095191956, 0.016264069825410843, -0.004075314849615097, 0.06827934086322784, -0.0007569548324681818, -0.011144358664751053, 0.005981260444968939, 0.0021616213489323854, 0.04142874851822853, -0.013437691144645214, -0.006470917724072933, -0.019945798441767693, -0.010784863494336605, -0.006092827767133713, 0.031164536252617836, 0.03609830141067505, 0.011131961829960346, -0.003932756371796131, -0.009948106482625008, -0.018780536949634552, 0.03808172419667244, 0.03282565250992775, -0.023094482719898224, -0.013264141976833344, -0.019635889679193497, 0.0005132881924510002, 0.007375854533165693, 0.00284187332727015, 0.019140033051371574, 0.00024056753318291157, 0.01787560060620308, -0.004230269696563482, -0.016202088445425034, 0.015569871291518211, 0.005045332480221987, 0.00537383696064353, 0.002487026620656252, -0.03773462399840355, 0.011491457931697369, 0.011206340976059437, -0.02826377935707569, -0.060296062380075455, 0.011361295357346535, 0.005773620679974556, 0.005711638834327459, -0.005256071221083403, -0.003467891365289688, 0.012297223322093487, -0.011850953102111816, -0.03800734505057335, 0.012917042709887028, -0.010078269056975842, 0.01794997975230217, -0.00769816106185317, 0.002954990603029728, -0.02005736716091633, -0.033891741186380386, -0.017974771559238434, -0.0007972430903464556, -0.023565545678138733, 0.010902629233896732, 0.011857151053845882, -0.011801367625594139, 0.012917042709887028, 0.04120561480522156, -0.02163170836865902, 0.03441239148378372, 0.033123165369033813, -0.005913080181926489, 0.017094628885388374, -0.016202088445425034, -0.04832114651799202, 0.0003848693158943206, -0.056676317006349564, 0.014293042942881584, 0.014454196207225323, -0.00673744035884738, 0.024829978123307228, -0.047205470502376556, 0.008708466775715351, -0.0506516695022583, -0.015309547074139118, -0.017925186082720757, -0.021619312465190887, 0.03232979774475098, -0.06708928942680359, -0.024730807170271873, -0.04338737949728966, 0.009105151519179344, 0.02975134737789631, -0.006557692773640156, 0.02381347306072712, -0.023391995579004288, -0.011386088095605373, 0.019499529153108597, 0.03195790573954582, 0.009340682998299599, -0.007840719074010849, -0.00777873769402504, -0.0016208285233005881, -0.022350698709487915, -0.01897888071835041, 0.02210277132689953, -0.05409786477684975, 0.0017618375131860375, -0.024408500641584396, -0.02838774397969246, -0.04338737949728966, -0.010468754917383194, 0.02333001419901848, -0.00011573196388781071, 0.0010343241738155484, -0.012142268009483814, -0.03339588642120361, -0.02908194065093994, -0.012036899104714394, -0.031139742583036423, 0.012991421855986118, -0.01746651902794838, -0.025834085419774055, 0.03520575910806656, -0.011082376353442669, -0.024061402305960655, 0.005380035378038883, 0.018532609567046165, 0.012018304318189621, -0.018483024090528488, -0.006694052834063768, -0.019288789480924606, 0.03235458955168724, -0.02006976306438446, -0.005249873269349337, -0.0005221980973146856, 0.00911134947091341, -0.03364381566643715, -0.026106806471943855, -0.01283026859164238, -0.05335408076643944, -0.013041007332503796, -0.008169223554432392, 0.024656428024172783, 0.053750764578580856, 0.01050594449043274, -0.014888069592416286, 0.01692107878625393, -0.006923386361449957, -0.006879998836666346, -0.011931529268622398, -0.01664835773408413, 0.051420245319604874, 0.021346591413021088, 0.039073433727025986, 0.020987095311284065, -0.011014196090400219, -0.002124432008713484, 0.03803213685750961, -0.03803213685750961, 0.006015350576490164, -0.006625873036682606, 0.017528502270579338, -0.0006740539683960378, 0.03612309321761131, -0.010822052136063576, 0.0020454050973057747, 0.0481971800327301, 0.020627601072192192, -0.03966846317052841, 0.034982625395059586, -0.012532754801213741, 0.02444569021463394, 0.0006298918160609901, -0.015644250437617302, 0.020218519493937492, -0.00028550447314046323, 0.0013093691086396575, 0.031139742583036423, 0.025090303272008896, 0.04155271500349045, -0.03904864192008972, -0.024011816829442978, 0.0049988459795713425, -0.01314017828553915, 0.016908682882785797, -0.018123527988791466, -0.002084143925458193, -0.02231350913643837, 0.014888069592416286, -0.004025728907436132, -0.009154736995697021, -0.01822269894182682, 0.007537007797509432, 0.03597433492541313, 0.025759708136320114, 0.026453906670212746, 0.015656646341085434, 0.01604093424975872, -0.011584430932998657, -0.03175956383347511, 0.018867311999201775, 0.0015975853893905878, 0.011417079716920853, 0.009718772955238819, -0.01345008797943592, 0.03585037216544151, 0.01664835773408413, -0.014937655068933964, 0.035329725593328476, 0.03894947096705437, -0.01617729477584362, 0.0021910627838224173, -0.006935782730579376, -0.025958050042390823, -0.0006523602642118931, 0.00245758518576622, 0.022015996277332306, -0.008070052601397038, 0.009167133830487728, -0.0618332140147686, 0.019028466194868088, 0.08211372047662735, -0.021730879321694374, 0.02722248248755932, 0.01273109670728445, -0.014342628419399261, 0.024346519261598587, 0.014491384848952293, -0.012260033749043941, 0.018247492611408234, 0.0054265218786895275, 0.037090010941028595, -0.0008150629582814872, 0.031040571630001068, -0.0016347744967788458, 0.01569383591413498, 0.040288280695676804, -0.008677476085722446, -0.010846844874322414, -0.02826377935707569, -0.01105758361518383, -0.0929233729839325, -0.023850662633776665, -0.021445762366056442, -0.012842664495110512, 0.003979242406785488, -0.00862789060920477, 0.012768286280333996, 0.008851025253534317, 0.04735422506928444, 0.015854988247156143, 0.029800932854413986, -0.018780536949634552, 0.04038745164871216, 0.012030701152980328, -0.02675141952931881, 0.023602735251188278, 0.02164410427212715, -0.018817726522684097, -0.05370118096470833, 0.0012644322123378515, -0.003455494996160269, -0.0049926480278372765, 0.01483848411589861, 0.05241195484995842, -0.020144140347838402, 0.023664716631174088, 0.04209815710783005, 0.013412898406386375, -0.020838338881731033, 0.03406529128551483, 0.03290003165602684, 0.04157750681042671, 0.011218736879527569, 0.002694666152819991, -0.008863422088325024, -0.02033008635044098, 0.0043108463287353516, -0.029726553708314896, 0.007791134063154459, 0.01890450157225132, -0.01419387198984623, 0.0074936202727258205, 0.025226661935448647, 0.014503781683743, 0.02449527569115162, -0.0035794589202851057, 0.028139814734458923, -0.024073798209428787, 0.037982553243637085, -0.004754017107188702, 0.03966846317052841, -0.004502990283071995, -0.0019307384500280023, 0.011801367625594139, 0.033544644713401794, -0.0012938736472278833, 0.008702268823981285, 0.03922219201922417, 0.02137138321995735, -0.001684360089711845, 0.036271851509809494, -0.0032199635170400143, -0.0014147384790703654, -0.014553367160260677, -0.007623782381415367, 0.011968718841671944, 0.05821346864104271, 0.00828698929399252, -0.02178046479821205, -0.0015851889038458467, -0.0004063693049829453, -0.0044162156991660595, -0.02531343698501587, 0.02443329431116581, -0.009396467357873917, 0.025635743513703346, 0.009464647620916367, 0.009018377400934696, 0.017590483650565147, 0.0006748287123627961, 0.03366860747337341, 0.013437691144645214, 0.018743349239230156, 0.002920900471508503, -0.020900320261716843, -0.015197979286313057, -4.159571471973322e-05, -0.0058975848369300365, 0.01987142115831375, 0.06530420482158661, -0.0037375129759311676, 0.03242896869778633, -0.021259816363453865, 0.02178046479821205, 0.017280573025345802, 0.05915559455752373, 0.00510421535000205, 0.005299458745867014, 0.010995602235198021, -0.026329942047595978, 0.0006686305277980864, -0.019982988014817238, -0.013425295241177082, 0.00842954870313406, -0.005841800943017006, 0.03870154172182083, -0.005091818980872631, 0.009638196788728237, 0.013164971023797989, -0.04073455184698105, -0.011150556616485119, 0.017020249739289284, -0.011280719190835953, -0.02272259071469307, 0.035032209008932114, -0.044800568372011185, -0.027321653440594673, -0.008578305132687092, 0.013623637147247791, 0.027891887351870537, 0.005107314325869083, 0.015793006867170334, -0.036693327128887177, -0.017082231119275093, 0.03290003165602684, 0.02485477179288864, 0.017900394275784492, 0.02776792272925377, 0.020255709066987038, -0.03173476830124855, -6.241778464755043e-05, -0.007010160945355892, 0.009749764576554298, -0.006266377400606871, -0.023788681253790855, -0.02935466170310974, 0.0034245040733367205, 0.011491457931697369, 0.0034647921565920115, -0.0024591346736997366, -0.0182350967079401, 0.00914234109222889, -0.009910917840898037, 0.026453906670212746, 0.021755672991275787, 0.02593325637280941, -0.03932136297225952, 0.0024622338823974133, -0.02388785220682621, 0.06034564971923828, -0.04088331013917923, 0.026999346911907196, -0.0002698152675293386, 0.002163170836865902, 0.005488503724336624, -0.01222284510731697, -0.010970809496939182, -0.010078269056975842, 0.009390268474817276, 0.009755962528288364, 0.011522448621690273, -0.03664374351501465, 0.009619602002203465, -8.338512270711362e-05, -0.019437545910477638, -0.027396032586693764, 0.01166500709950924, -0.004936864133924246, -0.02210277132689953, -0.007977079600095749, 0.009402665309607983, 0.0038645758759230375, -0.015297151170670986, -0.027321653440594673, 0.01361124124377966, -0.036618947982788086, -0.012092682532966137, 0.0027427023742347956, -0.031164536252617836, -0.02060280740261078, -0.010010088793933392, -0.033073581755161285, -0.014082304202020168, -0.001330288127064705, 0.01816071756184101, 0.012917042709887028, -0.0007949188002385199, 0.027743130922317505, 0.004815999418497086, -0.023726699873805046, -0.0031269905157387257, -0.0015046123880892992, 0.029057148844003677, 0.008590701036155224, -0.0014681980246677995, -0.004391422960907221, 0.013251746073365211, 0.004307746887207031, 0.015309547074139118, -0.02320604957640171, 0.029057148844003677, 6.27567496849224e-05, 0.0012683061650022864, -0.01583019644021988, 0.016499601304531097, -0.00822500791400671, -0.00687380088493228, -0.009737367741763592, -0.008206413127481937, 0.023776285350322723, -0.022623419761657715, 0.016437619924545288, -0.012198052369058132, 0.016003744676709175, 0.021482951939105988, 0.017020249739289284, -0.006396539509296417, -0.01788799650967121, -0.00510421535000205, 0.019487131386995316, -0.030693473294377327, 0.00336872017942369, -0.009377872571349144, -0.0048903776332736015, 0.006706449203193188, 0.018718555569648743, 0.009055566042661667, -0.04306507483124733, -0.013065800070762634, -0.03612309321761131, -0.020379671826958656, -0.005283962935209274, 0.015854988247156143, -0.004462702199816704, 0.022425077855587006, -0.010134052485227585, -0.006207494530826807, -0.015470700338482857, 0.01119394414126873, 0.0043821255676448345, 0.03384215757250786, -0.024532465264201164, -0.0026745221111923456, -0.02169368974864483, 0.015607060864567757, 0.07303955405950546, -0.004552575759589672, -0.00510421535000205, -0.013177366927266121, 0.03064388781785965, 0.009545223787426949, 0.026602663099765778, -0.019412754103541374, 0.0015619456535205245, 0.04066017270088196, -0.019561510533094406, 0.013487277552485466, 0.023218447342514992, -0.008373764343559742, -0.020230915397405624, 0.006681656464934349, 0.024966338649392128, -0.022561438381671906, 0.004506089258939028, -0.014293042942881584, 0.0015061618760228157, -0.011410880833864212, 0.00343070225790143, 0.017590483650565147, 0.01883012242615223, 0.028957977890968323, 0.005243674851953983, -0.033817365765571594, -0.012718700803816319, 0.022561438381671906, 0.012365403585135937, 0.009904718957841396, -0.01822269894182682, 0.023577941581606865, 0.02784230187535286, -0.04571790248155594, -0.00972497183829546, 0.022214338183403015, 0.02764395996928215, 0.03828006610274315, -0.017243385314941406, 0.006167206447571516, 0.005590774118900299, 0.0017618375131860375, -0.04172626510262489, 0.00014769141853321344, -0.014826088212430477, -0.01481369137763977, -0.0060122511349618435, -0.007784935645759106, -0.007939890958368778, 0.02463163621723652, -0.02435891516506672, -0.008795241825282574, 0.016747528687119484, 0.027470409870147705, 0.0053955307230353355, 0.0058201071806252, -0.021991204470396042, 0.03991638869047165, -0.0044534048065543175, -0.023044897243380547, 0.010741475969552994, 0.015036826953291893, 0.006244683638215065, -0.03458594158291817, 0.018259888514876366, -0.02137138321995735, 0.0236895103007555, -0.016908682882785797, -0.016908682882785797, -0.01204309705644846, -0.03232979774475098, 0.014454196207225323, 0.05030456930398941, 0.005671350285410881, -0.028957977890968323, -0.019053258001804352, -0.0033408282324671745, -0.03604871407151222, 0.0014650988159701228, -0.038056932389736176, 0.028412535786628723, 0.04197419062256813, -0.012049295008182526, -0.03282565250992775, -0.0031517832539975643, 0.04147833585739136, 0.015049222856760025, 0.022412681952118874, 0.01931358315050602, -0.005411026068031788, -0.026255562901496887, -0.00972497183829546, 0.002249945653602481, 0.015297151170670986, -0.023801077157258987, -0.014404610730707645, 0.01184475515037775, -0.004760215524584055, 0.024891959503293037, 0.0022514951415359974, -0.058114297688007355, 0.014875673688948154, 0.011472863145172596, 0.01235300675034523, -0.002992179710417986, -0.02580929361283779, -0.01470212358981371, 0.02246226742863655, -0.035057004541158676, -0.005135206505656242, 0.03173476830124855, 0.005776719655841589, -0.005299458745867014, -0.03609830141067505, 0.04361051693558693, -0.0035081796813756227, 0.01596655696630478, 0.03679249808192253, 0.022412681952118874, -0.01589217782020569, 0.005590774118900299, -0.006195098161697388, -0.012464574538171291, 0.028784427791833878, -0.03099098615348339, 0.017863204702734947, -0.00673744035884738, 0.0007972430903464556, 0.004713729023933411, 0.03148684278130531, -0.012402592226862907, 0.005039134528487921, 0.02940424717962742, -0.03602392226457596, -0.002604792360216379, 0.023726699873805046, 0.05003184825181961, -0.03411487862467766, 0.005389332305639982, -0.0022747383918613195, -0.035800788551568985, -0.01849541999399662, 0.0031719275284558535, 0.0060804313980042934, -0.034437183290719986, -0.014888069592416286, 0.019338374957442284, 0.02947862632572651, 0.0074564311653375626, 0.02211516723036766, -0.008001872338354588, 0.004502990283071995, -0.015433510765433311, 0.0024482877925038338, -0.03349505737423897, 0.027048932388424873, 0.006960575468838215, 0.006718845572322607, 0.0022607925347983837, -0.005652755964547396, 0.009390268474817276, -0.011317907832562923, 0.0009002881706692278, 5.515426892088726e-05, -0.031561221927404404, 0.010289007797837257, -0.03356943652033806, -0.002129080705344677, -0.002296432154253125, -0.014069907367229462, 0.007313872687518597, -0.04266839101910591, 0.0001530179870314896, -0.014615349471569061, 0.006780827883630991, 0.03223062679171562, -0.04423033446073532, -0.0029611887875944376, 0.01767725870013237, 0.03339588642120361, 0.015024430118501186, -0.030321581289172173, -0.030271995812654495, -0.008708466775715351, -0.01855740323662758, -0.007400647271424532, 0.03917260468006134, -0.006015350576490164, 0.013152574189007282, -0.011410880833864212, -0.0012566845398396254, -0.03250334784388542, 0.042346082627773285, -0.01320215966552496, -0.005841800943017006, 0.012272430583834648, 0.0036042516585439444, 0.019363168627023697, -0.03508179634809494, 0.01222284510731697, 0.02231350913643837, -0.0011110268533229828, -0.012588538229465485, -0.031635597348213196, 0.007419242057949305, -0.012526556849479675, 0.014107096940279007, 0.023565545678138733, 0.01884252019226551, -0.0019214411731809378, 0.0056837466545403, -0.016065727919340134, 0.008813836611807346, -0.006340755615383387, 0.01964828558266163, 0.019908608868718147, -0.030941400676965714, -0.047726117074489594, -0.023652320727705956, 0.020801149308681488, 0.04011473432183266, 0.00952043104916811, -0.03166039288043976, 0.027321653440594673, 0.007933692075312138, 0.008609295822679996, 0.0342884287238121, -0.004723026417195797, 0.020230915397405624, -0.009935710579156876, -0.011131961829960346, 0.02108626626431942, -0.03404049947857857, -0.022077977657318115, 0.015408718027174473, -0.02608201466500759, -0.008367566391825676, -0.00297668413259089, -0.011162953451275826, -0.034561146050691605, -0.034164462238550186, -0.02729685977101326, 0.007704359013587236, -0.022982915863394737, 0.03220583125948906, -0.02608201466500759, -0.012656718492507935, -0.022685401141643524, -0.05727134272456169, -0.04011473432183266, -0.00388317066244781, 0.0005996755789965391, 0.032453760504722595, -0.019016068428754807, -0.019016068428754807, 0.0030665581580251455, 0.007933692075312138, -0.048420317471027374, 0.0024901258293539286, -0.048147596418857574, 0.052312783896923065, 0.006700251251459122, 0.0013783241156488657, 0.01638803258538246, 0.00310684647411108, -0.027420824393630028, -0.022958122193813324, 0.04388323798775673, -0.005262269638478756, -0.019896212965250015, 0.0060060531832277775, -0.010977007448673248, -0.03649498522281647, -0.008956395089626312, 0.002031459240242839, -0.012055493891239166, -0.026305148378014565, 0.031833939254283905, 0.023255636915564537, 0.03894947096705437, 0.003576359711587429, 0.02033008635044098, 0.005996755789965391, 0.018259888514876366, 0.016896285116672516, 0.009861331433057785, -0.012154664844274521, -0.0027458013501018286, 0.012049295008182526, -0.003433801233768463, -0.005479206331074238, -0.009030773304402828, 0.015743421390652657, 0.029974481090903282, -0.028635671362280846, 0.030470337718725204, 0.020168934017419815, -0.019127637147903442, 0.03240417689085007, 0.011355097405612469, -0.023974627256393433, -0.011770376935601234, -0.0008476034854538739, -0.02799105830490589, 0.010332394391298294, 0.033346302807331085, 0.020590411499142647, -0.007041152101010084, -0.0036538373678922653, 0.004533981438726187, -0.021594518795609474, -0.026999346911907196, 0.033470265567302704, 0.0281894002109766, -0.002645080676302314, -0.011175349354743958, -0.007902701385319233, 0.03466032072901726, 0.004326341673731804, -0.005299458745867014, 0.007171314209699631, -0.018259888514876366, 0.04799883812665939, -0.04127999395132065, 0.005572179332375526, -0.015272358432412148, -0.037908174097537994, -0.0023723600897938013, 0.021470556035637856, -0.0044967918656766415, 0.031288500875234604, -0.04723026230931282, -0.014888069592416286, -0.008032863959670067, -0.03076785057783127, -0.026652248576283455, 0.007840719074010849, -0.03585037216544151, 0.03855278715491295, 0.012675313279032707, -0.0049244677647948265, -0.015681438148021698, -0.008274593390524387, 0.00784691795706749, 0.03146205097436905, -0.004248864017426968, -0.040288280695676804, -0.0039482517167925835, 0.027420824393630028, 0.011324106715619564, 0.005101116374135017, 0.031288500875234604, 0.028511706739664078, -0.0001392657432006672, 0.019759852439165115, -0.011355097405612469, 0.030619094148278236, -0.0016471708659082651, 0.025288645178079605, -0.033742986619472504, 0.02305729314684868, -0.0036941254511475563, 0.04715588316321373, -0.013759997673332691, 0.01631365530192852, -0.008596899919211864, 0.01951192505657673, -0.04859386757016182, 0.005479206331074238, 0.002552107675001025, 0.011448070406913757, -0.022077977657318115, 0.04185022786259651, -0.0032168643083423376, 0.014032718725502491, -0.01347488071769476, -0.007611386012285948, 0.04675919935107231, -0.010053476318717003, -0.031709976494312286, -0.005882089026272297, -0.003960648085922003, 0.014020321890711784, -0.03133808448910713, -0.0236895103007555, -0.0028372248634696007, 0.034982625395059586], [0.019793787971138954, -0.04690738022327423, 0.02195941098034382, 0.053880684077739716, -0.01369756180793047, 0.010687346570193768, -0.037227049469947815, 0.005912149325013161, 0.049073003232479095, -0.005200200714170933, -0.027828248217701912, 0.00011682517651934177, 0.011098815128207207, -0.010784799233078957, 0.03776845335960388, 0.007189866155385971, 0.028694497421383858, 0.06193679943680763, -0.031618088483810425, 0.013231952674686909, -0.003429804462939501, 0.011174611747264862, 0.06068073958158493, -0.014488013461232185, -0.0006713429465889931, -0.02481803297996521, 0.03148815035820007, -0.018505243584513664, 0.06033423915505409, -0.03813660889863968, 0.05175837501883507, -0.023302096873521805, 0.01967467926442623, -0.039154451340436935, 0.03174802288413048, 0.0022698428947478533, 0.00027966982452198863, -0.028369653970003128, -0.001981544541195035, 0.0361875519156456, -0.042814355343580246, -0.05457368493080139, 0.006534765474498272, 0.00015709221770521253, -0.03917611017823219, 0.0021385520230978727, 0.0022495402954518795, 0.009480011649429798, 0.008370130322873592, 0.038049984723329544, 0.021363865584135056, 0.02306387946009636, 0.033220648765563965, 0.011824298650026321, 0.03527798876166344, 0.011228752322494984, 0.014758716337382793, 0.008391786366701126, 0.04077867045998573, -0.0013589280424639583, -0.02847793512046337, 0.02531612664461136, 0.017985494807362556, 0.018277853727340698, -0.012203282676637173, -0.0012560610193759203, 0.013545968569815159, 0.034974802285432816, -0.044286977499723434, 0.013264437206089497, 0.054227184504270554, -0.0265505313873291, -0.01826702430844307, -0.011575251817703247, 0.018137088045477867, 0.033718742430210114, 0.014433872886002064, -0.016761917620897293, 0.019588055089116096, 0.06379923969507217, -0.054053936153650284, 0.021710364148020744, 0.019761305302381516, 0.0038575148209929466, -0.034996457397937775, 0.003581397933885455, -0.06826041638851166, 0.015375918708741665, -0.08302996307611465, -0.003819616511464119, -0.012354875914752483, -0.03934935852885246, 0.018602697178721428, 0.024103377014398575, -0.016296308487653732, 0.009323004633188248, -0.020432647317647934, -0.048899754881858826, 0.04051879420876503, 0.039154451340436935, 0.010676518082618713, -0.0060529145412147045, -0.03328561782836914, 0.006664703134447336, 0.01888422667980194, -0.025987468659877777, -0.02161291241645813, -0.0009068544022738934, -0.053880684077739716, 0.025359438732266426, 0.035776082426309586, -0.028911059722304344, -0.013686733320355415, 0.005598133895546198, -0.04612775892019272, 0.01762816682457924, 0.05795205384492874, -0.014888654462993145, 0.01650204323232174, 0.0029127621091902256, 0.003632831620052457, 0.022955598309636116, 0.03075183741748333, -0.04103854298591614, 0.018851742148399353, -0.05665268376469612, -0.03187796100974083, -0.04625769332051277, -0.012257423251867294, -0.019176585599780083, -0.0027368052396923304, 0.015191840939223766, 0.010481612756848335, -0.06457886099815369, 0.028716152533888817, -0.023345408961176872, -0.009155169129371643, -0.01729249395430088, 0.005102747585624456, -0.008911536075174809, 0.03750858083367348, -0.018646009266376495, 0.07224516570568085, 0.04274938628077507, -0.03830986097455025, 0.0179096981883049, 0.05349087342619896, 0.011304548941552639, 0.024926314130425453, 0.006042086519300938, -0.030037183314561844, -0.0022522471845149994, -0.022349223494529724, 0.042034730315208435, 0.031639743596315384, -0.0034649958834052086, -0.006583492271602154, 0.06514192372560501, -0.005514216143637896, -0.0034325115848332644, 0.001965302275493741, 0.005960875656455755, -0.014888654462993145, -0.04030223190784454, -0.03413020819425583, -0.006410242523998022, -0.021547943353652954, 0.004431404639035463, -0.055786434561014175, 0.014206483028829098, -0.028304684907197952, -0.03631748631596565, -0.05331762507557869, -0.016881026327610016, -0.0688667893409729, -0.03228943049907684, -0.0059175631031394005, -0.00577138364315033, -0.004214842803776264, 0.022933941334486008, 0.05790874361991882, -0.04487169533967972, -0.06605148315429688, -0.004250033758580685, 0.014119857922196388, -0.012549782171845436, 0.025012938305735588, 0.029972214251756668, -0.07956496626138687, -0.018180400133132935, 0.0059175631031394005, 0.012409016489982605, -0.02323712781071663, -0.014238967560231686, -0.012549782171845436, -0.014931966550648212, -0.04495831951498985, 0.015733247622847557, 0.009279691614210606, 0.028781121596693993, 0.00826184917241335, -0.0070220306515693665, 0.026940342038869858, 0.02626900002360344, -0.014617951586842537, 0.025012938305735588, -0.0035245504695922136, 0.027590028941631317, 0.059944428503513336, -0.01618802733719349, 0.0067404997535049915, -0.018483586609363556, -0.005416763015091419, 0.02080080285668373, 0.02449318952858448, -0.0140873733907938, 0.029842276126146317, 0.030665213242173195, -0.018992507830262184, -0.03090343251824379, -0.018602697178721428, 0.007904522120952606, 0.049246251583099365, -0.05968455225229263, -0.028911059722304344, 0.009111856110394001, -0.005359915550798178, -0.027503404766321182, 0.009090200066566467, -0.029257558286190033, -0.044741757214069366, 0.02419000305235386, 0.019165758043527603, -0.03088177554309368, -0.016545355319976807, -0.00840261485427618, -0.002681311219930649, -0.02596581168472767, 0.026680467650294304, -0.005005294922739267, -0.01073607336729765, 0.07064260542392731, -0.0458245687186718, 0.005598133895546198, 0.054833557456731796, -0.006653874646872282, 0.029235903173685074, -0.00928510632365942, 0.010952635668218136, 0.008029044605791569, 0.034498363733291626, -0.02338872104883194, 0.018137088045477867, 0.00556023558601737, -0.00612329738214612, -0.007054515182971954, 0.042857665568590164, 0.0053951069712638855, 0.05344755947589874, -0.009274277836084366, -0.04855325445532799, -0.004133631940931082, 0.039652545005083084, -0.03189961984753609, -0.016123058274388313, -0.040258921682834625, 0.029170934110879898, -0.07709615677595139, -0.020465131849050522, -0.02384350262582302, -0.003908948507159948, 0.04229460656642914, -0.006648460868746042, 0.0020113217178732157, -0.024753063917160034, 0.029842276126146317, -0.014217311516404152, -0.038353171199560165, -0.027330154553055763, 0.030210431665182114, 0.004214842803776264, -0.030968399718403816, -0.010340847074985504, -0.024081721901893616, -0.0034731170162558556, 0.0265505313873291, 0.045391444116830826, -0.0038250305224210024, -0.00952873844653368, -0.035949330776929855, 0.0097669567912817, -0.032419368624687195, -0.04296594858169556, 0.012268250808119774, 0.00780706899240613, -0.02945246547460556, -0.015354262664914131, -0.008884466253221035, -0.06531517207622528, 0.008521724492311478, -0.02319381572306156, 0.05427049845457077, 0.000612803443800658, -0.004103854298591614, -0.024276627227663994, -0.03629583120346069, -0.038981202989816666, -0.03302574157714844, -0.045044947415590286, 0.007189866155385971, 0.012852968648076057, -0.012636406347155571, -0.014314764179289341, -0.048423316329717636, 0.0005485115689225495, -0.01360010914504528, -0.049895938485860825, -0.018451102077960968, -0.0059013208374381065, -0.02531612664461136, 0.07358784973621368, -0.019902069121599197, -0.0024701631627976894, -0.05080550163984299, -0.004729177802801132, 0.02624734304845333, -0.018169572576880455, 0.08229365199804306, -0.05175837501883507, -0.006458968855440617, -0.04673413187265396, 0.025900844484567642, 0.02546771988272667, -0.07519041001796722, -0.045867882668972015, -0.02559765614569187, 0.004631725139915943, 0.004891599528491497, -0.05652274563908577, -0.03057858906686306, 0.00691916374489665, -0.002204874297603965, -0.0018840915290638804, -0.010465370491147041, 0.023410378023982048, 0.008565036579966545, 0.03477989509701729, 0.0330473966896534, -0.016220511868596077, 0.041904792189598083, 0.012354875914752483, 0.029257558286190033, 0.02416834607720375, -0.011304548941552639, -0.03287414833903313, -0.016686121001839638, 0.03228943049907684, -0.050675563514232635, 0.01178098563104868, 0.0022224700078368187, 0.01680522970855236, -0.018299508839845657, -0.003307988168671727, 0.014293108135461807, 0.015451716259121895, 0.015570824965834618, -0.02035685069859028, 0.004788732621818781, -0.017833899706602097, 0.025554344058036804, 0.008305162191390991, -0.001453674049116671, -0.028218060731887817, -0.008673317730426788, -0.009956449270248413, -0.016112230718135834, 0.05448706075549126, -0.023800190538167953, 0.018938368186354637, -0.02388681471347809, 0.04080032557249069, -0.02194858342409134, -0.012030032463371754, 0.020129460841417313, 0.030946744605898857, -0.016556182876229286, 0.0033404724672436714, 0.019263211637735367, 0.03092508763074875, 0.015570824965834618, 0.012625578790903091, 0.0018827379681169987, 0.016686121001839638, 0.01842944696545601, -0.013795014470815659, 0.05080550163984299, 0.013740873895585537, 0.018299508839845657, 0.0067404997535049915, -0.045694634318351746, 0.010449128225445747, -0.05171506479382515, -0.014693748205900192, 0.047643691301345825, 0.0326792411506176, -0.0030778907239437103, -0.001973423408344388, -0.08199046552181244, 0.0037790110800415277, -0.016534527763724327, 0.011748501099646091, -0.01775810308754444, 0.02724353037774563, 0.04500163346529007, 0.01938232034444809, 0.007184452377259731, -0.03625251725316048, 0.005598133895546198, -0.03220280632376671, -0.026810405775904655, 0.015884840860962868, -0.04047548398375511, -0.06791391968727112, -0.0008642186876386404, -0.02514287643134594, 0.035646144300699234, -0.0004862499190494418, -0.007850381545722485, 0.031119994819164276, -0.056436121463775635, 0.015592481009662151, 0.020876599475741386, -0.00659973407164216, 0.04326913505792618, 0.017476573586463928, -0.021547943353652954, -0.010638619773089886, -0.018537728115916252, -0.07571016252040863, 0.026832060888409615, -0.02927921526134014, 0.0001224930165335536, 0.03073018230497837, 0.07415091246366501, -0.02559765614569187, -0.03397861495614052, -0.00881949719041586, -0.01777976006269455, -0.026009125635027885, -0.03588436171412468, 0.003792546223849058, 0.003673437051475048, -0.03363211452960968, 0.01939314790070057, -0.04359398037195206, 0.009306762367486954, 0.04272773116827011, -0.05093543976545334, -0.012235766276717186, 0.0011944761499762535, 0.06652791798114777, 0.03573276847600937, 0.04777362942695618, 0.010302948765456676, 0.012322391383349895, -0.02962571382522583, -0.007666303310543299, 0.01487782597541809, 0.0072710770182311535, -0.00027121035964228213, 0.022219285368919373, 0.026052437722682953, 0.013123671524226665, -0.0022400657180696726, 0.005270583555102348, 0.028737809509038925, 0.019079133868217468, 0.05721574276685715, -0.02995055727660656, -0.04404876008629799, -0.03902451694011688, -0.0012432025978341699, -0.04240288585424423, -0.0396958589553833, 0.003819616511464119, 0.05652274563908577, 0.05175837501883507, 0.013545968569815159, -0.017963837832212448, -0.06301961094141006, -0.027633341029286385, 0.01224659476429224, 0.0495927520096302, -0.007108655758202076, 0.03506142646074295, -0.02434159629046917, -0.016123058274388313, -0.038353171199560165, 0.04526150971651077, -0.0035922261886298656, -0.0007045040256343782, 0.02481803297996521, 0.01873263344168663, 0.0032944530248641968, 0.03213783726096153, 0.008034459315240383, 0.005354501307010651, 0.04902969300746918, -0.0165236983448267, 0.0034568747505545616, -0.021331381052732468, 0.005841766484081745, 0.00815898273140192, -0.023410378023982048, -0.01135868951678276, -0.05591636896133423, 0.024471532553434372, 0.01473706029355526, 0.015798214823007584, -0.024709751829504967, 0.011050088331103325, 0.009794027544558048, 0.004818509798496962, -0.0012012437218800187, 0.008380958810448647, 0.008667903952300549, -0.008278091438114643, -0.07999809086322784, -0.04034554585814476, -0.023475347086787224, -0.00839720107614994, -0.025727594271302223, -0.017216697335243225, 0.0008493300410918891, 0.008630005642771721, 0.001735204947181046, -0.0048293378204107285, 0.026009125635027885, -0.024146689102053642, 0.017335807904601097, 0.045088257640600204, 0.00612329738214612, 0.020714178681373596, 0.027590028941631317, 0.013188640587031841, 0.014931966550648212, -0.017389947548508644, -0.021093161776661873, -0.003917069640010595, 0.023908471688628197, 0.05063225328922272, -0.025727594271302223, 0.04242454469203949, -0.05171506479382515, 0.017411604523658752, 0.0023253371473401785, 0.007568850181996822, -0.03733532875776291, 0.0020167359616607428, -0.0015511270612478256, 0.004924084059894085, 0.03616589307785034, -0.0032619687262922525, -0.030491963028907776, 0.007882865145802498, 0.040930263698101044, -0.005619789939373732, -0.0030156292486935854, -0.021223099902272224, -0.013643421232700348, -0.03895954787731171, 0.006383172236382961, 0.004989052657037973, 0.05630618333816528, -0.003903534496203065, 0.03488817811012268, 0.020735833793878555, -0.0531010627746582, -0.0269186869263649, 0.011477799154818058, -0.0016052676364779472, -0.005755141377449036, -0.04928956553339958, 0.004485545214265585, 0.00440704170614481, -0.029495777562260628, 0.006209922023117542, -0.04452519491314888, 0.002364588901400566, -0.01327526569366455, -0.020627552643418312, -0.03254930302500725, 0.009604535065591335, -0.0038412727881222963, -0.007909935899078846, 0.049073003232479095, 0.004953861236572266, -0.010627792216837406, -0.04547807201743126, 0.004076784010976553, -0.02003200724720955, -0.04352901130914688, -0.023172160610556602, 0.06895341724157333, -0.01463960763067007, -0.033393897116184235, 0.03679392486810684, -0.008213123306632042, 0.018137088045477867, -0.0033973201643675566, 0.035148050636053085, 0.031119994819164276, 0.015072732232511044, 0.00520832184702158, -0.007731271907687187, -0.006285719107836485, -0.01566827856004238, -0.023670252412557602, -0.03265758603811264, -0.024471532553434372, -0.029344184324145317, 0.03235439956188202, 0.016220511868596077, -0.019761305302381516, -0.05401062220335007, 0.0573456808924675, -0.032592616975307465, -0.005868836771696806, -0.0020018471404910088, -0.0042906394228339195, -0.03317733481526375, -0.0023348117247223854, -0.03060024417936802, -0.008700387552380562, -0.022782348096370697, 0.0007092413143254817, -0.011716017499566078, 0.020703349262475967, -0.02207851968705654, 0.001097699860110879, -0.0006537472363561392, -0.0390678271651268, 0.01663197949528694, -0.02642059326171875, -0.012430672533810139, 0.012625578790903091, 0.011943407356739044, 0.04928956553339958, 0.008029044605791569, 0.0053653293289244175, 0.0425761379301548, 0.0018258903874084353, 0.0010706295724958181, 0.01874346099793911, -0.0008872284088283777, 0.006529351696372032, -0.013480999507009983, 0.030990056693553925, 0.020909084007143974, 0.008662489242851734, -0.019458116963505745, -0.019804617390036583, -0.010676518082618713, -0.016599494963884354, -0.008429685607552528, -0.015754902735352516, 0.019284866750240326, -0.04183982312679291, 0.014563811011612415, 0.009783199056982994, 0.027135249227285385, 0.009101028554141521, 0.022046035155653954, 0.003640952752903104, -0.0027747037820518017, 0.03774679824709892, 0.01631796546280384, 0.027416778728365898, -0.005289532709866762, 0.018635179847478867, -0.004106561653316021, -0.009425871074199677, -0.014044061303138733, 0.015235153958201408, -0.019566398113965988, 0.024060064926743507, 0.0190358217805624, 0.023800190538167953, -0.008765356615185738, 0.008294333703815937, -0.01561413798481226, 0.0038493939209729433, 0.002681311219930649, 0.03090343251824379, -0.025229500606656075, 0.045218195766210556, 0.04422200843691826, 0.0076933735981583595, 0.027979841455817223, -0.0035624487791210413, -0.02371356450021267, -0.018602697178721428, -0.006708015222102404, -0.02321547269821167, -0.023150503635406494, -0.023821845650672913, -0.005178544670343399, -0.011618563905358315, -0.021353036165237427, -0.006865023169666529, -0.003002094104886055, -0.0002028579037869349, -0.018602697178721428, -0.012300735339522362, -0.0038223236333578825, -0.008889880031347275, -0.02964737080037594, -0.00692457752302289, 0.01760650984942913, 0.003454167628660798, -0.02529446966946125, 0.03313402459025383, -0.07168210297822952, -0.023735221475362778, 0.006615976337343454, -0.0022739034611731768, 0.014303935691714287, 0.015462543815374374, -0.032570961862802505, -0.013545968569815159, 0.026702124625444412, -0.011006776243448257, 0.04296594858169556, 0.02546771988272667, -0.006166609935462475, 0.0015132286353036761, -0.013307749293744564, -0.009913136251270771, 0.001182294450700283, -0.007401014678180218, -0.017530713230371475, 0.02112564630806446, 0.01192175131291151, -0.013253608718514442, -0.004350193776190281, 0.011087986640632153, -0.0240384079515934, 0.04259779304265976, 0.007942420430481434, -0.011337033472955227, 0.019436461851000786, 0.005836352240294218, -0.04365894943475723, 0.008586692623794079, -0.011272064410150051, 0.0015443594893440604, 0.013253608718514442, 0.024601470679044724, -0.010443714447319508, 0.014033232815563679, -0.031293243169784546, 0.018288681283593178, -0.026702124625444412, 0.017368292436003685, -0.0017379119526594877, 0.0019003336783498526, -0.04967937618494034, -0.01528929453343153, -0.0012465864419937134, -0.024601470679044724, 0.022977253422141075, -0.03166139870882034, -0.014845341444015503, 0.020865771919488907, -0.0195339135825634, 0.010790213942527771, 0.011174611747264862, 0.021342208608984947, 0.0008242900366894901, -0.004179651383310556, 0.012939593754708767, -0.020075319334864616, -0.006291132885962725, 0.07575347274541855, -0.0029993869829922915, -0.0029696098063141108, -0.003676143940538168, 0.010947220958769321, -0.012852968648076057, -0.018602697178721428, 0.03939267247915268, -0.006745913997292519, 0.0008777538314461708, -0.027590028941631317, -0.002704320941120386, -0.022305911406874657, 0.002799066947773099, -0.04937618970870972, 0.01937149278819561, 0.00632903166115284, -0.020876599475741386, 0.001846193103119731, -0.056912556290626526, -0.02596581168472767, 0.030383681878447533, 0.05522337183356285, -0.0276766549795866, 0.01153193973004818, 0.007666303310543299, -0.04279270023107529, 0.03335058316588402, 0.010584479197859764, 0.02559765614569187, 0.03073018230497837, -0.01544088777154684, 0.027936529368162155, -0.02306387946009636, 0.012170798145234585, -0.006859608925879002, -0.02195941098034382, 0.03649073839187622, 0.022825660184025764, 0.018137088045477867, -0.027286842465400696, 0.017866384238004684, -0.0057876259088516235, -0.0017216698033735156, 0.04643094539642334, 0.02752505987882614, -0.0007938359631225467, 0.005170423537492752, -0.0007620283868163824, 0.02895437180995941, -0.008781598880887032, 0.000867602473590523, 0.02211100421845913, -0.03989076614379883, 0.039132796227931976, -0.010492440313100815, 0.038699671626091, 0.04047548398375511, 0.018602697178721428, -0.051152002066373825, -0.02914927713572979, 0.015938980504870415, 0.008662489242851734, 0.016761917620897293, 0.016133887693285942, -0.03798501566052437, 0.04937618970870972, 0.00839720107614994, 0.008121084421873093, -0.0280448105186224, 0.0056685167364776134, 0.03798501566052437, -0.0323110856115818, 0.04183982312679291, 0.01924155466258526, 0.007238592952489853, -0.0101730115711689, 0.019176585599780083, -0.002211641985923052, -0.03668564185500145, 0.004041592590510845, 0.019436461851000786, -0.02146131731569767, 0.027091937139630318, 0.008565036579966545, 0.0003948876983486116, -0.019306523725390434, 0.03746526688337326, -0.004872650373727083, 0.06332279741764069, -0.0262906551361084, -0.03302574157714844, -0.005625204183161259, -0.016079746186733246, 0.05721574276685715, 0.019620539620518684, -0.017866384238004684, 0.01651287078857422, 0.012268250808119774, 0.028239715844392776, 0.0033458867110311985, 0.01891671121120453, 0.015917325392365456, -0.017238354310393333, -0.007650061044842005, 0.03471492603421211, 0.020454304292798042, -0.036728955805301666, 0.014791200868785381, 0.003459581872448325, -0.0011599614517763257, 0.0001480405917391181, 0.021017365157604218, -0.01097970549017191, 0.023410378023982048, -0.0280448105186224, 0.03055693209171295, 0.009333832189440727, -0.008337645791471004, -0.03406523913145065, -0.009880652651190758, -0.01121792383491993, 0.009371730498969555, 0.015321778133511543, -0.0016174492193385959, -0.008326818235218525, 0.045737944543361664, -0.014065717346966267, -0.006821710616350174, 0.0027747037820518017, -0.02927921526134014, 0.030968399718403816, 0.018223712220788002, -0.042987603694200516, 0.014704575762152672, 0.0017027206486091018, -0.01586318388581276, -0.004074077121913433, -0.024298284202814102, -0.005340966396033764, 0.006090812850743532, 0.02132055163383484, 0.016220511868596077, 0.0048293378204107285, 0.04179651290178299, 0.02436325140297413, -0.011845954693853855, -0.034520022571086884, 0.018331993371248245, 0.0007390186656266451, -0.007888279855251312, 0.008456755429506302, 0.03999904543161392, 0.0012303441762924194, -0.011651048436760902, 0.016751090064644814, 0.014856169931590557, -0.0390678271651268, -0.02802315354347229, 0.003042699536308646, -0.01825619675219059, 0.00825643539428711, -0.0056360322050750256, -0.016231339424848557, -0.01937149278819561, 0.05444374680519104, 0.005127110984176397, 0.03218114748597145, -0.02672377973794937, 0.02897602692246437, 0.018830087035894394, 0.037530235946178436, 0.0374436117708683, 0.03454167768359184, -0.01700013503432274, 0.04838000610470772, -0.00952332466840744, 0.0026339383330196142, 0.016285480931401253, 0.008743700571358204, -0.018277853727340698, 0.003489359049126506, 0.01304787490516901, -0.017888041213154793, -0.0016309843631461263, 0.006680944934487343, 0.0016350449295714498, -0.0012980198953300714, -0.018321165814995766, 0.016534527763724327, 0.02819640375673771, -0.016751090064644814, 0.017844729125499725, -0.007054515182971954, 0.007216936443001032, 0.022825660184025764, 0.020465131849050522, 0.019588055089116096, 0.017823072150349617, 0.03460664674639702, 0.009247208014130592, -0.027460092678666115, 0.01080104149878025, -0.014119857922196388, 0.010362503118813038, 0.03200789913535118, 0.0038250305224210024, -0.02356197126209736, 0.058515116572380066, 0.04359398037195206, 0.021883614361286163, -0.004550514277070761, 0.009669504128396511, 0.0007471397402696311, 0.039479296654462814, 0.005075677298009396, 0.027936529368162155, -0.00374381965957582, 0.01939314790070057, 0.020854944363236427, 0.01920907013118267, -0.014282279647886753, 0.01729249395430088, 0.028889402747154236, 0.007893693633377552, -0.01844027452170849, -0.026788748800754547, 0.04342072829604149, -0.027503404766321182, -0.015495028346776962, -0.01567910611629486, 0.009501668624579906, -0.0012364350259304047, 0.004098440520465374, -0.020605897530913353, -0.02336706593632698, 0.011304548941552639, -0.010259635746479034, 0.03490983322262764, 0.029712339863181114, 0.033697083592414856, -0.001369079458527267, -0.01729249395430088, -0.012549782171845436, -0.0034054412972182035, -0.013383546844124794, 0.03410855308175087, 0.009252621792256832, 0.019403977319598198, 0.019003337249159813, 0.039002858102321625, 0.0028883989434689283, 0.003708628471940756, -0.013210296630859375, -0.006301961373537779, -0.03311236575245857, 0.0036274176090955734, 0.019663851708173752, -0.003581397933885455, -0.013264437206089497, 0.06570498645305634, 0.02338872104883194, -0.005960875656455755, 0.0040334719233214855, -0.008884466253221035, -0.00648062489926815, 0.020898256450891495, 0.011060916818678379, 0.03727035969495773, -0.0208441149443388, 0.029344184324145317, 0.0235403161495924, -0.010725244879722595, -0.0020465131383389235, 0.00015108600200619549, 0.01144531462341547, 0.006561835762113333, -0.016577839851379395, -0.018277853727340698, 0.014866997487843037, -0.002552727470174432, 0.0006500250892713666, -0.04114682599902153, -0.007682545576244593, 0.019761305302381516, 0.042662762105464935, 0.008776185102760792, -0.00037221633829176426, 0.0005285472143441439, -0.01257143821567297, 0.005200200714170933, -0.003613882465288043, -0.0062207505106925964, -0.0448283851146698, -0.01567910611629486, -0.00011318760516587645, 0.016361277550458908, -0.013859983533620834, 0.01583069935441017, -0.005673930514603853, -0.0358193963766098, -0.004518029745668173, -0.005619789939373732, -0.003936018794775009, -0.007969490252435207, 0.03332892805337906, -0.004152581095695496, -0.004509908612817526, -0.016848541796207428, -0.001088225282728672, 0.0010990534210577607, 0.010254221968352795, 0.008240193128585815, 0.0169676523655653, -0.011640219949185848, 0.0004557958454824984, -0.0052435132674872875, 0.04937618970870972, 0.01144531462341547, 0.016231339424848557, 0.019728820770978928, 0.038504768162965775, -0.04355066642165184, -0.01257143821567297, -0.006816296372562647, -0.012636406347155571, 0.004350193776190281, 0.03107668086886406, 0.011272064410150051, -0.0024349717423319817, 0.0030481135472655296, -0.032116178423166275, 0.0036030542105436325, -0.017963837832212448, 0.04238123074173927, 0.0035326716024428606, 0.01345934346318245, -0.0280448105186224, -0.01144531462341547, -0.009068544022738934, 0.011347861029207706, -0.017671478912234306, -0.007547194138169289, 0.012105829082429409, -0.0015876719262450933, -0.0068758511915802956, -0.01984792947769165, 0.002728684339672327, 0.018299508839845657, -0.022305911406874657, -0.037876736372709274, 0.017411604523658752, -0.020389335229992867, 0.030968399718403816, 0.0033702498767524958, -0.02127723954617977, -0.026139061897993088, 0.0396958589553833, 0.01572241820394993, -0.003990159370005131, -0.02865118347108364, -0.007401014678180218, 0.028088122606277466, -0.025727594271302223, 0.05362081155180931, 0.022327566519379616, 0.030990056693553925, 0.004036178812384605, 0.011521111242473125, -0.038049984723329544, -0.03928438946604729, -0.02912762202322483, -0.015040247701108456, 0.01449884194880724, 0.0016066210810095072, 0.010508682578802109, 0.030773494392633438, -0.05375074967741966, -0.033697083592414856, 0.0022089348640292883, -0.0034758239053189754, -0.03233274072408676, -0.003573277033865452, -0.026983655989170074, -0.01248481310904026, -0.03144483640789986, 0.02995055727660656, -0.004455768037587404, -0.006491452921181917, -0.01823453977704048, 0.009339246898889542, -0.026355624198913574, 0.023908471688628197, 0.04071370139718056, 0.009366316720843315, 0.018786774948239326, -0.019133273512125015, -0.002918176120147109, 0.05790874361991882, 0.0021818645764142275, -0.007547194138169289, 0.004017229657620192, -0.0018610818078741431, 0.03384867683053017, -0.012181625701487064, 0.010124284774065018, 0.007650061044842005, 0.005541286431252956, 0.0009677624912001193, 0.009777785278856754, 0.009864410385489464, -0.006962475832551718, 0.020605897530913353, 0.016361277550458908, 0.04021560773253441, 0.004680451471358538, -0.003608468221500516, -0.004114682786166668, 0.005706415046006441, -0.0033810778986662626, 0.007276491262018681, 0.01055740937590599, 0.021537113934755325, 0.014228139072656631, -0.019479773938655853, -0.011997547931969166, -0.003324230434373021, -0.0005261785699985921, 0.043139196932315826, 0.008364716544747353, 0.0217861607670784, -0.06713429093360901, -0.02356197126209736, -0.010968877002596855, -0.04915962740778923, 0.009772371500730515, 0.02063838206231594, 0.02082245983183384, 0.009176825173199177, 0.01795301027595997, -0.022522473707795143, -0.018169572576880455, -0.0014103616122156382, -0.0016648222226649523, 0.009328418411314487, -0.005814696196466684, 0.01731415092945099, 0.051152002066373825, -0.0034649958834052086, -0.021353036165237427, 0.012354875914752483, 0.028607871383428574, 0.011077158153057098, -0.01665363647043705, 0.03794170543551445, 0.014552982524037361, -0.015982292592525482, -0.006886679213494062, 0.01416317094117403, 0.00848382618278265, -0.02687537483870983, -0.03075183741748333, 0.015960637480020523, -0.03350218012928963, 0.03573276847600937, -0.0246664397418499, -0.06440561264753342, -0.02483968809247017, 0.0195339135825634, 0.007633818779140711, -9.821436105994508e-05, -0.01938232034444809, 0.0005985915777273476, 0.0025243035051971674, -0.01168353296816349, -0.008175224997103214, 0.0403238907456398, -0.002527010627090931, -0.0009603181970305741, -0.04017229378223419, -0.006144953425973654, 0.006063742563128471, -0.021569598466157913, 0.025034595280885696, -0.001181617728434503, -0.007796240504831076, 0.010302948765456676, 0.026052437722682953, 0.0026569480542093515, 0.024081721901893616, -0.02884609065949917, 0.0031915861181914806, 0.019663851708173752, -0.027156904339790344, 0.0038439796771854162, 0.030816806480288506, -0.009236379526555538, -0.013968264684081078, 0.012614750303328037, -0.03939267247915268, -0.006491452921181917, 0.016361277550458908, 0.04560800641775131, 0.019111618399620056, -0.013719217851758003, 0.018461931496858597, 0.021255584433674812, -0.008884466253221035, 0.027460092678666115, 0.026853717863559723, -0.008548794314265251, 0.010730658657848835, -0.007964076474308968, 0.005105454940348864, -0.03150980547070503, -0.015809044241905212, -0.026009125635027885, 0.026009125635027885, -0.03185630589723587, 0.0014428459107875824, -0.031293243169784546, 0.014368904754519463, 0.0018732633907347918, -0.04339907318353653, -0.02114730328321457, -0.0015267637791112065, -0.002015382284298539, 0.005040486343204975, 0.0007708262419328094, -0.033415552228689194, 0.017671478912234306, -0.008900708518922329, -0.01743325963616371, -0.004734592046588659, 0.008023630827665329, -0.030838463455438614, 0.011488626711070538, -0.029409151524305344, 0.026139061897993088, -0.019165758043527603, 0.04212135449051857, 0.020746663212776184, -0.014217311516404152, -0.03976082801818848, 0.031618088483810425, 0.04067038744688034, -0.004631725139915943, 0.0006950294482521713, -0.03185630589723587, -0.02049761638045311, 0.008759942837059498, -0.021699536591768265, 0.00499717378988862, 0.018840914592146873, 0.013686733320355415, -0.03889457881450653, 0.016382932662963867, -0.024406565353274345, -0.0031591015867888927, -0.010286706499755383, -0.009025231003761292, -0.033415552228689194, -0.01984792947769165, -0.017195042222738266, 0.016437074169516563, 0.005858008749783039, 0.047297194600105286, 0.014228139072656631, -0.0212880689650774, -0.016426246613264084, 0.0066213905811309814, -0.013881639577448368, 0.03510474041104317, -0.002977730706334114, 0.006881264969706535, -0.008987332694232464, 0.0059175631031394005, 0.02112564630806446, -0.015462543815374374, -0.010822697542607784, -0.0326792411506176, -0.04517488181591034, 0.0025703231804072857, -0.022544128820300102, -0.035797737538814545, -0.025034595280885696, 0.04673413187265396, 0.010589893907308578, -0.015809044241905212, 0.002748986938968301, 0.0120192039757967, 0.023908471688628197, -0.00850006751716137, -0.022219285368919373, 0.008776185102760792, 0.008391786366701126, -0.010118870995938778, 0.01839696243405342, -0.007639233022928238, -0.0018218298209831119, -0.00716279586777091, -0.02068169414997101, -0.016556182876229286, 0.016231339424848557, 0.02338872104883194, -0.015148528851568699, -0.048769816756248474, -0.04147166758775711, 0.020443474873900414, -0.021504631265997887, 0.0008283505449071527, -0.010746900923550129, -0.021569598466157913, -0.007244006730616093, -0.04175319895148277, 0.015375918708741665, -0.022305911406874657, 0.002636645222082734, 0.043334104120731354, -0.0036301244981586933, 0.026788748800754547, -0.010909322649240494, -0.01033001858741045, -5.8031913795275614e-05, -0.046344321221113205, -0.030297057703137398, 0.03997739031910896, -0.03683723881840706, -0.0038818782195448875, 0.02063838206231594, -0.0005008002044633031, -0.009008988738059998, 0.012972078286111355, 0.019663851708173752, -0.011878439225256443, -0.02514287643134594, -0.0037573548033833504, 0.007200694642961025, -0.008380958810448647, -0.021970238536596298, 0.016242168843746185, 0.008467583917081356, 0.025359438732266426, -0.0015362383564934134, 0.019133273512125015, -0.029365839436650276, -0.028564559295773506, -0.041103512048721313, 0.008830325677990913, 0.011748501099646091, 0.009214723482728004, 0.03137986734509468, 0.006783812306821346, 0.0304269939661026, 0.010584479197859764, 0.03202955424785614, -0.0032213632948696613, -0.019945383071899414, 0.04677744209766388, 0.012690546922385693, -0.0018231833819299936, 0.00340273417532444, -0.01666446402668953, -0.005018829833716154, 0.008608348667621613, 0.012831312604248524, -0.031293243169784546, 0.02787156030535698, -0.015559997409582138, 0.017227526754140854, 0.004371850285679102, 0.004612775519490242, -0.009507082402706146, 0.011813470162451267, -0.013242781162261963, 0.010059315711259842, 0.013621765188872814, -0.005657688714563847, 0.030968399718403816, -0.035646144300699234, 0.01192175131291151, -0.011845954693853855, 0.008196881040930748, 0.024579813703894615, 0.0033458867110311985, -0.03711876645684242, -0.012419844046235085, -0.010140527039766312, 0.09805938601493835, -0.0380716435611248, -0.023800190538167953, -0.004550514277070761, -0.00600960198789835, 0.027113592252135277, -0.011163783259689808, -0.017108416184782982, -0.0058038681745529175, 0.0019612417090684175, 0.01544088777154684, -0.01121792383491993, -0.01732497848570347, 0.006827124394476414, 0.007206108421087265, 0.003941432572901249, -0.04526150971651077, 0.015386747196316719, 0.006513109430670738, -0.012419844046235085, -0.006117883138358593, 0.046517569571733475, 0.00905771553516388, 0.02163456752896309, -0.04398379102349281, -0.0051081618294119835, 0.012257423251867294, 0.0019964331295341253, 0.02815309166908264, 0.03941432759165764, -0.0076933735981583595, 0.007552607916295528, 0.050025876611471176, -0.014942795038223267, 0.013470171019434929, -0.024709751829504967, 0.014531326480209827, -0.003876464208588004, -0.0015375919174402952, -0.000136197340907529, -0.00440704170614481, -0.01968550682067871, 0.011174611747264862, -0.004328537732362747, -0.008619177155196667, -0.010866010561585426, -0.007969490252435207, -0.00636151572689414, 0.01248481310904026, -0.03235439956188202, -0.03309071063995361, -0.014596294611692429, 0.001284484751522541, -0.015310950577259064, -0.0024173760320991278, -0.01651287078857422, 0.02882443368434906, -0.0435723215341568, 0.041233450174331665, -0.01154276728630066, 0.0037492336705327034, 0.002244126284494996, -0.010535753332078457, -0.0003752617631107569, 0.022143488749861717], [0.03967691585421562, -0.030341170728206635, 0.027377858757972717, 0.07484330236911774, 0.021516794338822365, 0.014318305067718029, -0.0016881701303645968, -0.022487081587314606, -0.00669695483520627, 0.024191642180085182, 0.02488657832145691, 0.021949490532279015, 0.02971179597079754, -0.003684472292661667, 0.055227749049663544, 0.02222484163939953, 0.0021044763270765543, 0.005818450823426247, -0.02204127423465252, -0.004572810605168343, -0.02845304273068905, 0.012430177070200443, 0.05868931859731674, 0.005615214817225933, 0.01707182638347149, -0.008653921075165272, 0.0040975003503263, -0.002937088254839182, 0.059790726751089096, -0.010863292962312698, 0.05622426047921181, -0.030472291633486748, 0.008758816868066788, -0.017622530460357666, 0.0020290822722017765, 0.01940576173365116, -0.0255684033036232, -0.04345317184925079, -0.0009325910941697657, 0.014554321765899658, -0.02548973076045513, -0.0654551088809967, 0.004343350417912006, -0.014528097584843636, -0.029003746807575226, 0.04022762179374695, -0.00237655034288764, -0.01911729760468006, 0.005929902661591768, 0.02981669083237648, 0.07667898386716843, 0.06346208602190018, 0.02225106582045555, 0.0010555160697549582, 0.01808145083487034, -0.021451234817504883, 0.03742165118455887, 0.0066903987899422646, 0.02128077857196331, 0.023968739435076714, -0.024991475045681, -0.020795634016394615, 0.04528885334730148, -0.010181468911468983, 0.04691474139690399, -0.04361051693558693, -0.008057325147092342, 0.028531715273857117, -0.009676656685769558, 0.02369338646531105, 0.03920488432049751, -0.018776385113596916, 0.022959114983677864, 0.001076003652997315, 0.019536882638931274, 0.022421522065997124, -0.008424460887908936, 0.0107649527490139, 0.02571263536810875, 0.01923530548810959, -0.0815042033791542, 0.0036418584641069174, 0.031416356563568115, -0.034694354981184006, -0.03532373160123825, 0.008522801101207733, -0.05653895065188408, -0.004359740298241377, -0.06220333278179169, -0.02063829079270363, -0.03917865827679634, 0.01237117312848568, -0.014960793778300285, 0.03254398703575134, -0.05952848494052887, 0.0258568674325943, 0.007709856610745192, -0.026420682668685913, 0.02484724298119545, 0.042115747928619385, 0.007657408714294434, -0.01789788156747818, -0.05294626206159592, 0.010201137512922287, 0.013210341334342957, -0.02895129844546318, -0.013420133851468563, 0.01645556092262268, -0.06246557459235191, 0.03957201912999153, 0.02377205900847912, -0.01102063711732626, -0.005457870662212372, 0.07232580333948135, -0.013210341334342957, 0.02534549869596958, -0.0002024165150942281, 0.04214197397232056, -0.00027248376864008605, -0.010312588885426521, -0.01620643399655819, -0.027063170447945595, 0.03962446749210358, 0.010522381402552128, 0.03736920282244682, -0.0494060218334198, 0.007296828553080559, -0.03626779466867447, 0.021739698946475983, -0.05163506045937538, 0.0327800028026104, 0.003750032279640436, 0.056014470756053925, -0.03437966853380203, 0.0010276531102135777, -0.005929902661591768, -0.004651482682675123, -0.014003617689013481, 0.0005584892933256924, 0.0028764454182237387, 0.017819209024310112, -0.06272781640291214, 0.007349276915192604, -0.007427948992699385, -0.006805128883570433, 0.002042194129899144, 0.03771011531352997, 0.004680984653532505, 0.010869849473237991, 0.027535201981663704, -0.01237117312848568, 0.008549025282263756, -0.048881541937589645, 0.012987437658011913, 0.02517504245042801, -0.02305089868605137, 0.03060341067612171, 0.035638418048620224, 0.022801769897341728, -0.011636901646852493, 0.011282877065241337, 0.02798101119697094, -0.01013557706028223, -0.04486927017569542, -0.04505283758044243, -0.020480945706367493, -0.013439801521599293, -0.02548973076045513, -0.05884666368365288, -0.01606220193207264, -0.017517633736133575, -0.04122413322329521, -0.014698553830385208, -0.027194291353225708, -0.04484304413199425, -0.0034517343156039715, -0.031888388097286224, -0.028295699506998062, -0.03493037074804306, 0.033042244613170624, 0.046468932181596756, 0.004228620324283838, -0.04486927017569542, -0.0072312685661017895, 0.005667662713676691, 0.02905619516968727, -0.03993915766477585, 0.015275481157004833, -0.07358454912900925, -0.022093722596764565, -0.01188602950423956, -0.03812969848513603, -0.06723834574222565, -0.020756298676133156, -0.01876327395439148, -0.03962446749210358, -0.009139064699411392, -0.0006482245516963303, 0.019890906289219856, 0.0011604120954871178, -0.03243909031152725, -0.002292961347848177, 0.005287414416670799, 0.044921718537807465, -0.02315579354763031, -0.013977393507957458, -0.03629402071237564, -0.010778064839541912, 0.014121625572443008, -0.027194291353225708, 0.01577373780310154, -0.03157369792461395, -0.0002786300319712609, 0.024506330490112305, 0.020677626132965088, -0.02750897966325283, 0.016796473413705826, 0.0052579124458134174, 0.03115411475300789, -0.07704611867666245, -0.014737889170646667, -0.04455458000302315, 0.04455458000302315, 0.014410089701414108, 0.0070542567409574986, 0.023890066891908646, 0.025686411187052727, -0.017635641619563103, 0.01130910124629736, -0.04657382890582085, -0.04696718975901604, 0.043558068573474884, 0.008942385204136372, -0.0223952978849411, 0.0016865312354639173, 0.023431146517395973, 0.026604250073432922, -0.02971179597079754, 0.02113654650747776, -0.01472477801144123, 0.015537722036242485, 0.03784123435616493, -0.07631184905767441, -0.025437282398343086, 0.0026748483069241047, 0.016547346487641335, -0.0036943063605576754, -0.027430307120084763, -0.0032124402932822704, -0.03128523379564285, 0.012194161303341389, -0.01159756537526846, 0.02264442667365074, -0.0342223234474659, 0.014606769196689129, -0.006097080651670694, 0.06650406867265701, 0.03490414842963219, 0.0511368066072464, 0.04662627726793289, -0.021661026403307915, -0.023352473974227905, 0.048488181084394455, -0.023182017728686333, 0.005579156801104546, -0.022264178842306137, -0.0010579746449366212, -0.03608422726392746, 0.021634802222251892, -0.009066948667168617, -0.0034812362864613533, -0.0040548862889409065, -0.015616393648087978, -0.0017865102272480726, -0.029580675065517426, 0.03812969848513603, 0.010830513201653957, 0.015327929519116879, -0.04591822996735573, 0.028217026963829994, -0.01027980912476778, -0.04007027670741081, -0.023824507370591164, -0.04101433977484703, -0.011053416877985, -0.009919228963553905, 0.00526774674654007, 0.04400387778878212, -0.015419713221490383, -0.023286914452910423, -0.016547346487641335, -0.009683213196694851, 0.02307712286710739, 0.018815722316503525, -0.0018422361463308334, -0.007565625011920929, -0.04313848540186882, 0.012338393367826939, -0.07982586324214935, -0.015419713221490383, -0.009427528828382492, 0.031783491373062134, 0.01208270899951458, 0.00894894078373909, -0.03340937942266464, -0.05179240554571152, -0.03039361909031868, -0.009204625152051449, -0.030026482418179512, 0.03125901147723198, 0.02819080278277397, -0.06765792518854141, -0.004782602656632662, -0.03917865827679634, 0.02290666662156582, -0.013872497715055943, -0.01707182638347149, -0.014016729779541492, 0.017347177490592003, -0.013112001121044159, 0.004854718688875437, -0.014646105468273163, 0.03427477180957794, -0.08764062076807022, 0.018461698666214943, -0.01148611307144165, -0.014213409274816513, 0.04775390774011612, -0.02002202533185482, 0.0014316666638478637, -0.06854954361915588, 0.013328349217772484, 0.035349953919649124, -0.025450395420193672, -0.050900790840387344, -0.002060223137959838, 0.019025513902306557, -0.025725746527314186, -0.054650820791721344, -0.01612776145339012, -0.009335745126008987, 0.01645556092262268, 0.020244929939508438, 0.012744865380227566, 0.006529776845127344, 0.009388192556798458, 0.02837437018752098, 0.05087456479668617, -0.026840267702937126, 0.05989562347531319, -0.022946001961827278, 0.012161381542682648, -0.007375500630587339, -0.0077295247465372086, -0.0327800028026104, 0.015367265790700912, 0.06744813174009323, -0.036897171288728714, 0.006565834861248732, 0.024978362023830414, 0.007329608779400587, 0.0038614843506366014, 0.039991606026887894, 0.01624576933681965, 0.01703248918056488, 0.031704820692539215, -0.02250019460916519, 0.015655729919672012, -0.03870662674307823, 0.04484304413199425, 0.049458470195531845, 0.009053836576640606, 0.004953058436512947, 0.00526774674654007, -0.04329582676291466, -0.007041144650429487, 0.040778324007987976, -0.003415676299482584, 0.02257886715233326, -0.03280622884631157, 0.04148637130856514, -0.008647364564239979, 0.024401433765888214, 0.030839426442980766, 0.05391655117273331, 0.04678362235426903, -0.004907166585326195, 0.024939026683568954, -0.005228410474956036, -0.019851570948958397, -0.027640098705887794, -0.0017586471512913704, -0.003104266244918108, 0.009355412796139717, -0.01923530548810959, -0.01254818495362997, -0.0043662963435053825, 0.009184956550598145, 0.011217317543923855, 0.013203785754740238, -0.011282877065241337, -0.0046777063980698586, -0.05111058056354523, 0.04382031038403511, 0.029947811737656593, 0.03241286799311638, 0.030367394909262657, -0.048488181084394455, 0.024650562554597855, -0.006424880586564541, 0.01114520151168108, -0.024873467162251472, 0.036215346306562424, 0.020035138353705406, 0.007657408714294434, -0.03089187480509281, 0.008109772577881813, -0.003979492466896772, -0.0416174940764904, -0.012089265510439873, -0.001673419144935906, -0.02758765034377575, -0.06246557459235191, 0.008955497294664383, -0.050218965858221054, 0.049642037600278854, -0.056591399013996124, -0.07138173282146454, -0.0024273593444377184, -0.06750058382749557, -0.0008358900668099523, 0.010358480736613274, -0.013767600990831852, -0.0019422152545303106, 0.006811684928834438, -0.04431856423616409, -0.06461594253778458, -0.04264022782444954, -0.03687094897031784, 0.0196548905223608, -0.0033992864191532135, -0.03243909031152725, 0.00940130464732647, 0.03293734788894653, 0.01738651469349861, -0.04778013378381729, -0.057168327271938324, -0.0034779582638293505, 0.020074473693966866, -0.05674874037504196, 0.009086617268621922, -0.016232658177614212, -0.04717697948217392, -0.03251776471734047, -0.03579576313495636, 0.023418035358190536, 0.02798101119697094, -0.047439221292734146, -0.008889936842024326, 0.0054972064681351185, 0.05580467730760574, 0.011735240928828716, 0.03511393815279007, 0.04670494794845581, 0.01876327395439148, 0.0005248897941783071, -0.021661026403307915, 0.018160121515393257, 0.017556969076395035, -0.014973905868828297, 0.0020012191962450743, -0.015603281557559967, -0.02538483403623104, 0.016193320974707603, -0.007893424481153488, 0.0327800028026104, -0.005566044710576534, 0.07704611867666245, -0.02790233865380287, -0.06335718929767609, -0.009276741184294224, 0.01670468971133232, -0.011282877065241337, -0.004854718688875437, 0.009014501236379147, 0.02923976257443428, 0.025935538113117218, 0.015105025842785835, -0.05858442187309265, -0.016757138073444366, -0.05701098218560219, 0.01056827325373888, 0.03495659679174423, -0.014305193908512592, 0.0212414413690567, 0.02942333184182644, 0.007683632895350456, -0.04069965332746506, 0.048566851764917374, 0.020756298676133156, 0.05239555612206459, 0.03272755444049835, 0.04083077237010002, 0.00927018467336893, 0.03068208321928978, 0.03802480548620224, -0.0071460409089922905, 0.03128523379564285, -0.006142972502857447, -0.03427477180957794, 0.020113810896873474, 0.0056840525940060616, -0.003441900247707963, -0.04468569904565811, -0.006162640638649464, -0.06110192462801933, 0.053024932742118835, 0.04374163597822189, -0.020612066611647606, -0.017491409555077553, 0.022211730480194092, 0.015275481157004833, 0.008955497294664383, 0.010778064839541912, 0.0023486872669309378, 0.018212569877505302, -0.008378569036722183, -0.06419635564088821, -0.047517891973257065, -0.002302795182913542, -0.01854036934673786, -0.014987017959356308, -0.04641648381948471, 0.016324441879987717, -0.0013464386574923992, -0.010227360762655735, -0.023863842710852623, 0.012377729639410973, -0.02992158755660057, 0.006510108709335327, 0.04597067832946777, 0.03209817782044411, 0.012653081677854061, 0.011787689290940762, 0.01624576933681965, -0.010338813066482544, 0.026302674785256386, -0.014829673804342747, -0.01742585003376007, 0.044239893555641174, 0.007926205173134804, -0.03419610112905502, -0.011676236987113953, -0.021634802222251892, 0.02750897966325283, -0.02621089108288288, -0.003845094470307231, -0.018527258187532425, -0.0009842196013778448, 0.05564733222126961, -0.009893004782497883, 0.013741377741098404, 0.006297038868069649, -0.004120446275919676, -0.002501114271581173, 0.018671490252017975, 0.005913512781262398, 0.014213409274816513, -0.00892927311360836, -0.005002228543162346, -0.02769254706799984, -0.02225106582045555, 0.004992394708096981, 0.005766002461314201, 0.021123433485627174, 0.028112130239605904, -0.010955077596008778, -0.02078252285718918, -0.018383026123046875, 0.00889649335294962, -0.006582224741578102, -0.021267665550112724, -0.036058004945516586, 0.020192481577396393, -0.06529776751995087, -0.0028436651919037104, 0.009578317403793335, -0.027613874524831772, -0.005562766455113888, -0.03068208321928978, -0.041827283799648285, -0.017334066331386566, 0.029947811737656593, -0.000285595771856606, -0.014200297184288502, 0.04783258214592934, -0.024585003033280373, -0.010397817008197308, -0.035743314772844315, 0.019130410626530647, -0.030078930780291557, 0.00017096821102313697, -0.014449425972998142, 0.024532554671168327, -0.0026600973214954138, 0.022998450323939323, -0.0072706048376858234, 0.024099858477711678, -0.006611726712435484, 0.02214617095887661, 0.03251776471734047, 0.002122505335137248, 0.02092675492167473, -0.025620849803090096, -0.028400594368577003, -0.02992158755660057, 0.017491409555077553, 0.01909107342362404, -0.003314058296382427, -0.01015524473041296, -0.036136675626039505, 0.021503683179616928, 0.013793825171887875, -0.001318575581535697, -0.03812969848513603, 0.040961891412734985, -0.02037605084478855, -0.03967691585421562, 0.0013349656946957111, -0.012698973529040813, -0.008935828693211079, -0.023391811177134514, -0.02175281010568142, 0.00019186545978300273, -0.031599923968315125, 0.020966090261936188, 0.012312169186770916, 0.010024124756455421, 0.015550833195447922, -0.023903178051114082, 0.028007235378026962, -0.054650820791721344, 0.03466813266277313, -0.016363777220249176, 0.008568692952394485, 0.016626017168164253, 0.014252745546400547, 0.03731675446033478, 0.01839613728225231, 0.006519942544400692, 0.01905173808336258, 0.006670730654150248, -0.0119188092648983, 0.016088426113128662, -0.013059553690254688, -0.00817533303052187, -0.00833923276513815, -0.0007227991009131074, -0.0027879392728209496, -0.03569086641073227, -0.017845433205366135, -0.018986178562045097, -0.01923530548810959, -0.010784621350467205, 0.0016996432095766068, -0.02604043483734131, 0.019130410626530647, -0.04785880446434021, -0.010312588885426521, -0.009807776659727097, -0.006356042809784412, 0.03359294682741165, 0.03967691585421562, -0.021267665550112724, -0.008378569036722183, 0.04025384411215782, 0.005166128743439913, 0.02027115412056446, -0.013780713081359863, 0.030262500047683716, 0.023863842710852623, -0.02179214544594288, -0.04403010010719299, 0.03000025823712349, -0.03550729900598526, 0.006460938602685928, 0.015721289440989494, 0.03241286799311638, -0.023968739435076714, 0.012167937122285366, 0.014069177210330963, -0.012482625432312489, -0.0008297438616864383, 0.019864682108163834, 0.0032353864517062902, 0.0053201946429908276, 0.018592817708849907, -0.022237954661250114, 0.03338315710425377, -0.03784123435616493, -0.020651401951909065, -0.013584033586084843, -0.022670650854706764, -0.027351634576916695, -0.03996537998318672, 0.009945453144609928, -0.010974745266139507, 0.01058794092386961, -0.03765766695141792, 0.01645556092262268, 2.7530080842552707e-05, 0.011768021620810032, -0.03453700989484787, 2.642887739057187e-05, -0.004930112510919571, -0.029790466651320457, -0.03920488432049751, 0.002160202246159315, 0.005903678480535746, -0.021123433485627174, 0.0011497585801407695, 0.0011489391326904297, -0.07751815021038055, 0.02560773864388466, -0.003894264344125986, 0.006975584663450718, -0.007001808844506741, -0.012738309800624847, -0.04785880446434021, 0.01987779326736927, -0.0021995382849127054, -0.015170585364103317, 0.01785854622721672, 0.025883091613650322, -0.007513176649808884, 0.019786009564995766, -0.015209921635687351, 0.0036123564932495356, -0.013610257767140865, 0.02362782694399357, -0.010024124756455421, -0.02758765034377575, 0.011046861298382282, -0.01962866634130478, 0.010056905448436737, -0.0333569310605526, -0.021438121795654297, 0.04313848540186882, -0.02664358727633953, -0.03799857944250107, 0.007618072908371687, 0.010561716742813587, -0.03993915766477585, 0.0018340412061661482, 0.0011628706706687808, -0.004156504292041063, 0.022447746247053146, 0.03587443754076958, 0.005297248717397451, 0.009860225021839142, -0.024178531020879745, 0.01339390967041254, -0.06466838717460632, 0.00030772227910347283, 0.04119790717959404, 0.009198068641126156, -0.03165237233042717, 0.007414836902171373, -0.010515824891626835, 0.008090104907751083, 0.01206304132938385, -0.02884640358388424, 0.005293970461934805, -0.007952428422868252, -0.04368918761610985, -0.0021241442300379276, -0.014987017959356308, 0.017189834266901016, -0.009925785474479198, -0.015301705338060856, -0.0025928982067853212, -0.0023437703493982553, -0.008739149197936058, 0.049930501729249954, -0.007762304972857237, 0.0077688610181212425, 0.011059973388910294, 0.008732592687010765, 0.009466865099966526, -0.023129571229219437, 0.024322763085365295, -0.02257886715233326, -0.0218183696269989, 0.03144257888197899, -0.04408254846930504, -0.013885609805583954, -0.02653869055211544, -0.03986048325896263, 0.011374660767614841, 0.012915321625769138, -0.014882121235132217, -0.012653081677854061, -0.030341170728206635, -0.004503972362726927, 0.0070739248767495155, 0.03986048325896263, -0.02971179597079754, -0.03327826038002968, -0.008457240648567677, -0.01724228262901306, 0.00016236345982179046, 0.01894684135913849, 0.006251146551221609, 0.04374163597822189, -0.00866047665476799, 0.024008074775338173, -0.036897171288728714, -0.018605930730700493, 0.009302965365350246, 0.013407021760940552, 0.03157369792461395, 0.058531973510980606, -0.005241522565484047, -0.0006707608117721975, 0.026525579392910004, -0.015813073143363, -0.015249257907271385, 0.03298979625105858, 0.030734531581401825, -0.026669811457395554, -0.02729918621480465, -0.01983845792710781, -0.03039361909031868, 0.008889936842024326, -0.000914562086109072, 0.03799857944250107, 0.004494138527661562, 0.04292869195342064, -0.005965960677713156, 0.016730913892388344, 0.017543857917189598, -0.030813204124569893, -0.03396008536219597, -0.0073033845983445644, -0.002274932339787483, 0.001038306625559926, 0.003441900247707963, 0.02981669083237648, -0.04098811745643616, 0.013334905728697777, -0.023667162284255028, 0.003956546541303396, -0.024099858477711678, -0.0071788206696510315, 0.007087036967277527, -0.013230009004473686, 0.03862795606255531, 0.017989665269851685, -0.0029747853986918926, -0.005926624406129122, 0.027954787015914917, 0.025738859549164772, -0.002163480268791318, -0.01973356120288372, -0.013649593107402325, -0.028400594368577003, -0.006733012851327658, 0.03222930058836937, -0.006519942544400692, -0.003063291311264038, 0.024925915524363518, -0.023286914452910423, 0.04526262730360031, 0.011250097304582596, -0.036241572350263596, -0.006179030518978834, 0.007591848727315664, 0.016258882358670235, 0.00470720836892724, 0.015708178281784058, 0.01090918481349945, 0.04313848540186882, 0.020507169887423515, -0.018356801941990852, 0.005625048652291298, -0.018632153049111366, -0.03558597341179848, 0.009027613326907158, 0.027456531301140785, -0.00663467263802886, -0.025188155472278595, -0.001791427144780755, 0.023208241909742355, 0.0010546966223046184, 0.015091913752257824, 0.0027502423617988825, -0.02103164978325367, 0.036634933203458786, 0.029554450884461403, 0.01001101266592741, -0.04389898106455803, -0.0065560005605220795, -0.018212569877505302, -0.0061593628488481045, -0.023850729689002037, -0.019969578832387924, 0.018566593527793884, -0.015432825312018394, 0.011676236987113953, 0.007998321205377579, -0.006664174608886242, -0.0028141632210463285, -0.004540030378848314, -0.0339338593184948, 0.00411389023065567, 0.011381217278540134, -0.012036817148327827, 0.0009678296046331525, -0.029947811737656593, -0.029869139194488525, -0.003119017230346799, -0.02016625739634037, 0.005995462648570538, 0.01534104160964489, 0.030367394909262657, 0.010096240788698196, -0.02045472152531147, 0.030708307400345802, 0.024716122075915337, -0.029003746807575226, -0.02682715468108654, -0.014514985494315624, 0.006146250758320093, 0.011820469051599503, 0.0025256993249058723, 0.009578317403793335, -0.013223453424870968, 0.0033828963059931993, 0.0023585213348269463, 0.0057889483869075775, 0.02336558699607849, -0.02391629107296467, 0.005664384458214045, -0.004143392667174339, -0.004766212310642004, -0.024506330490112305, -0.014777225442230701, -0.037474099546670914, 0.05097946152091026, -0.0029157812241464853, 0.02167413756251335, -0.00624786876142025, 0.0393097810447216, 0.00984711293131113, 0.0006941165775060654, 0.05821728706359863, 0.03107544407248497, -0.01087640505284071, 0.03579576313495636, -0.009060393087565899, 0.007552512921392918, 0.02236907370388508, -0.013275901786983013, 0.026368234306573868, -0.005559488665312529, 0.013597145676612854, 0.0028305533342063427, 0.018645266070961952, -0.008129441179335117, -0.014003617689013481, 0.005988906603306532, -0.060157861560583115, 0.019904017448425293, -0.0017094771610572934, -0.016232658177614212, 0.03993915766477585, -0.002927254419773817, -0.012167937122285366, 0.03519261255860329, 0.016940705478191376, 0.012299057096242905, 0.00875226128846407, 0.024585003033280373, 0.020218705758452415, -0.02855793945491314, 0.011151757091283798, -0.018029002472758293, 0.00983400084078312, 0.023706497624516487, -0.020258042961359024, -0.006287204567342997, 0.04350562021136284, 0.033330708742141724, -0.013439801521599293, -0.004343350417912006, 0.016468673944473267, -0.00126940559130162, 0.039703141897916794, -0.020035138353705406, 0.031127890571951866, -0.006375710479915142, 0.026564914733171463, 0.028007235378026962, 0.020480945706367493, 0.013302125036716461, 0.01118453685194254, 0.017806097865104675, 0.0327800028026104, -0.04864552617073059, 0.001072725630365312, 0.005228410474956036, -0.027194291353225708, 0.007762304972857237, -0.003458290360867977, 0.006975584663450718, -0.011473000980913639, -0.005618492607027292, -0.027063170447945595, -0.041643716394901276, 0.0031141003128141165, 0.02171347476541996, -0.0008240073220804334, 0.018697714433073997, 0.005664384458214045, 0.022959114983677864, -0.0030337893404066563, -0.0024158861488103867, -0.014016729779541492, -0.013334905728697777, 0.011525449343025684, 0.0021929822396486998, 0.009788108989596367, 0.012174493633210659, 0.0232606902718544, 0.02232973836362362, -0.012954656966030598, -0.011459888890385628, -0.04612801969051361, -0.021307002753019333, 0.0012677665799856186, 0.005916790571063757, 0.0017275061691179872, -0.0010833791457116604, 0.03676605224609375, -0.008070437237620354, 0.005084178410470486, 0.0057561686262488365, -0.037211861461400986, -0.00849657692015171, -0.01116486918181181, -0.004290902521461248, 0.053811654448509216, -0.016363777220249176, 0.045105285942554474, 0.04043741151690483, -0.020795634016394615, -0.02156924270093441, -0.009034168906509876, 0.015105025842785835, 0.02942333184182644, -0.063252292573452, -0.025017699226737022, -0.010129021480679512, -0.004848162643611431, 0.022408410906791687, -0.03571709245443344, -0.04062097892165184, 0.0064314366318285465, 0.010666613467037678, 0.015655729919672012, 0.007041144650429487, 0.0016783361788839102, -0.017478298395872116, -0.006179030518978834, -0.004599034320563078, -0.018894394859671593, -0.05674874037504196, -0.006152806803584099, 0.003940156195312738, -0.013872497715055943, -0.01882883347570896, 0.020192481577396393, -0.03167859464883804, -0.05895155668258667, -0.032465316355228424, -0.004864552523940802, 0.0070739248767495155, 0.014003617689013481, -0.019720450043678284, -0.004376130644232035, -0.016875145956873894, -0.008162220939993858, 0.007559068966656923, -0.011335325427353382, 0.021949490532279015, 0.01458054594695568, -0.0043859644792973995, -0.00387131841853261, -0.020690737292170525, -0.0072312685661017895, 0.06068234145641327, -0.01736029051244259, 0.009742217138409615, 0.007506620604544878, -0.0036615263670682907, -0.02348359487950802, 0.02628956362605095, -0.009302965365350246, -0.025725746527314186, -0.0031993284355849028, -0.014226521365344524, 0.017517633736133575, -0.028400594368577003, 0.01624576933681965, -0.02581753022968769, 0.024834129959344864, -0.0028305533342063427, 0.028977522626519203, 0.008699812926352024, 0.011945033445954323, -0.01447564922273159, -0.015327929519116879, -0.027036946266889572, 0.017006264999508858, -0.014659217558801174, 0.013452913612127304, 0.024073634296655655, 0.007670520804822445, 0.051871076226234436, -0.005533264484256506, -0.03579576313495636, 0.01713738590478897, 0.026092883199453354, -0.046364035457372665, 0.02466367371380329, -0.02876773104071617, 0.032570213079452515, -0.021110322326421738, -0.053706757724285126, -0.0008916161023080349, 0.017006264999508858, 0.0041663385927677155, -0.028925074264407158, -0.026905827224254608, -0.018750162795186043, 0.015288593247532845, -0.017819209024310112, 0.08328743278980255, 0.016612906008958817, 0.020113810896873474, 0.009152176789939404, -0.016901370137929916, -0.009473420679569244, -0.04014894738793373, -0.010043793357908726, -0.0060151307843625546, 0.00833923276513815, 0.0012677665799856186, 0.01587863452732563, 0.037211861461400986, -0.013793825171887875, 0.012744865380227566, -0.03799857944250107, -0.033042244613170624, 0.010240472853183746, 0.021084098145365715, 0.0033960083965212107, 0.024821018800139427, -0.0196548905223608, 0.019864682108163834, 0.0021831481717526913, 0.009224292822182178, 0.009774996899068356, 0.013466025702655315, -0.03209817782044411, -0.008299896493554115, 0.05048120394349098, 0.01944509893655777, -0.024283425882458687, -0.026053545996546745, 0.01132876891642809, 0.033619172871112823, 0.001312839100137353, -0.02369338646531105, 0.016770249232649803, 0.019038626924157143, 0.01056827325373888, -0.023313138633966446, -0.010705948807299137, -0.014410089701414108, 0.002383106155321002, 0.0024617782328277826, -0.016180209815502167, 0.024585003033280373, -0.03986048325896263, 0.03267510607838631, -0.017976554110646248, 0.04227309301495552, 0.03697584569454193, -0.0029075862839818, -0.026407571509480476, 0.012325281277298927, 0.014514985494315624, 0.023890066891908646, 0.017727425321936607, 0.014842785894870758, 0.006277370732277632, -0.03938845172524452, -0.018933730199933052, 0.021333226934075356, -0.012200716882944107, -0.0006105275824666023, 0.00544803636148572, 0.04122413322329521, -0.028217026963829994, 0.0011235346319153905, -0.004599034320563078, -0.030760755762457848, 0.016521122306585312, 0.013479137793183327, 0.015852410346269608, -0.01789788156747818, 0.00817533303052187, -0.01890750601887703, 0.006746124941855669, -0.005677496548742056, -0.011604120954871178, 0.020533394068479538, -0.03915243595838547, 0.0008424461120739579, 0.012017149478197098, -0.01433141715824604, 0.007683632895350456, 0.009532424621284008, 0.010627277195453644, 0.02740408293902874, -0.014239633455872536, 0.020140033215284348, 0.005644716788083315, -0.008627696894109249, -0.025686411187052727, -0.01882883347570896, 0.017334066331386566, 0.005585712380707264, -0.0023699942976236343, 0.00011493489000713453, -0.01973356120288372, 0.022946001961827278, -0.01724228262901306, -0.05638160556554794, 0.008444128558039665, 0.0003200147766619921, -0.018566593527793884, 0.01746518537402153, -0.011033749207854271, -0.019746674224734306, 0.025804419070482254, -0.012875985354185104, -0.00968976877629757, 0.012587521225214005, 0.04014894738793373, -0.024965250864624977, -0.0520021989941597, 0.004051608499139547, 0.012889097444713116, -0.018986178562045097, 0.005297248717397451, -0.009139064699411392, 0.013479137793183327, 0.021516794338822365, -0.01251540519297123, 0.006165918428450823, 0.023522930219769478, -0.014462537132203579, -0.004982560407370329, -0.020113810896873474, -0.0416174940764904, -0.003822148311883211, 0.01760941743850708, 0.002812524326145649, 0.004553142469376326, 0.006169196683913469, -0.029947811737656593, 0.004212230443954468, 0.031232787296175957, 0.001203026156872511, -0.020546507090330124, 0.02171347476541996, -0.0036615263670682907, -0.015708178281784058, 0.03836571425199509, 0.027954787015914917, 0.036713603883981705, -0.009755329228937626, -0.0070542567409574986, -0.002771549392491579, -0.02099231444299221, 0.02006136253476143, -0.01973356120288372, -0.0215299054980278, 0.030026482418179512, -0.03222930058836937, 0.022854218259453773, -0.03799857944250107, -0.0061724744737148285, 0.037788789719343185, -0.029370883479714394, -0.048986438661813736, -0.007677076850086451, -0.024821018800139427, 0.00327636138536036, -0.01071250531822443, -0.044423460960388184, -0.00438268668949604, -0.015511497855186462, -0.029790466651320457, -0.01146644540131092, 6.346003647195175e-05, -0.03812969848513603, -0.014921457506716251, -0.011158313602209091, 0.02884640358388424, -0.017019378021359444, 0.03380274027585983, 0.024637451395392418, -0.024650562554597855, -0.025253714993596077, 0.0453675240278244, 0.035638418048620224, 0.011204205453395844, 0.009001389145851135, -0.02913486771285534, -0.001970078097656369, 0.007014920935034752, -0.020153146237134933, 0.05528019741177559, -0.02214617095887661, -0.015105025842785835, -0.042430438101291656, -0.00014310520782601088, -0.006667452864348888, 0.012987437658011913, 0.00037266765139065683, -0.044633254408836365, 0.013387353159487247, -0.006798572838306427, -0.00011175932741025463, -0.0029125032015144825, -0.01355780940502882, 0.022159282118082047, -0.003271444234997034, -0.010509269312024117, -0.012095821090042591, 0.006746124941855669, -0.010804289020597935, 0.033042244613170624, 0.005795504432171583, 0.03196705877780914, 0.010030681267380714, 0.010784621350467205, 0.018068337813019753, 0.02931843511760235, 0.01854036934673786, -0.027325410395860672, -0.006674008909612894, -0.02808590605854988, -0.013885609805583954, -0.06167885288596153, -0.0034746804740279913, 0.042981140315532684, 0.033330708742141724, -0.004497416317462921, -0.001150578144006431, 0.0016865312354639173, 0.04534130170941353, -0.01861904188990593, 0.015262369997799397, 0.020677626132965088, 0.005723388399928808, -0.005867620464414358, -0.009158733300864697, -0.032753780484199524, -0.003956546541303396, 0.006038076709955931, -0.03744787722826004, -0.04471192508935928, 0.00624786876142025, 0.018278129398822784, -0.004612146411091089, -0.01981223374605179, -0.021661026403307915, -0.007998321205377579, -0.02905619516968727, 0.008981720544397831, -0.01880260929465294, -0.012718641199171543, -0.014462537132203579, -0.018278129398822784, 0.0009719270747154951, 0.008667033165693283, -0.0342223234474659, 0.021215219050645828, -0.025935538113117218, 0.048199716955423355, -0.007244380656629801, 0.02596176229417324, -0.02876773104071617, -0.011158313602209091, -0.007132928818464279, 0.03238664194941521, -0.010941965505480766, 0.020861193537712097, 0.01836991310119629, 0.007611516863107681, 0.0019405762432143092, -0.01029947679489851, 0.01882883347570896, 0.0001602122647454962, -0.013728265650570393, -0.002474890323355794, -0.022382186725735664, -0.011394329369068146, -0.014659217558801174, 0.014213409274816513, -0.024650562554597855, 0.019143521785736084, -0.03165237233042717, -0.007591848727315664, -0.020192481577396393, 0.002919059246778488, -0.04749166965484619, 0.030236275866627693, 0.000859655614476651, 0.0025404503103345633, 0.013426689431071281, 0.022696875035762787, 0.007945872843265533, -0.024912802502512932, 0.021228330209851265, -0.012069596908986568, -0.006733012851327658, 0.0013423411874100566, 0.016757138073444366, 0.0035009044222533703, -0.007329608779400587, 0.0005810255534015596, -0.012528517283499241, 0.01146644540131092, 0.009479977190494537, -0.030708307400345802, -0.013328349217772484, -0.019274642691016197, 0.012076153419911861, -0.011459888890385628, -0.004782602656632662, 0.0032124402932822704, -0.012941545806825161, 0.007060812786221504, 0.01973356120288372, -0.004271234385669231, 0.01206304132938385, 0.026276450604200363, -0.01775364950299263, 0.002114310162141919, -0.022565754130482674, 0.0002819080254994333, 0.020861193537712097, 0.01583929732441902, -0.011827025562524796, -0.003671360434964299, -0.04625914245843887, 0.035376179963350296, -0.02365405112504959, -0.006811684928834438, -0.0006998530589044094, -0.018605930730700493, 0.0020372772123664618, 0.00043802280561067164, -0.008450685068964958, 0.03196705877780914, -0.0038745964411646128, -0.002171675208956003, 0.0006097080768086016, -0.0212414413690567, -0.02350981906056404, -0.0002769910206552595, -0.01267274934798479, -0.030813204124569893, 0.037474099546670914, 0.013243121095001698, -0.022277290001511574, -0.0061396947130560875, 0.03057718649506569, 0.004720320459455252, 0.01562950573861599, -0.04101433977484703, 0.006385544780641794, 0.027771219611167908, 0.003250137437134981, -0.00864080898463726, 0.03443211689591408, 0.009715992957353592, 0.0014652661047875881, 0.026958275586366653, 0.0016168736619874835, 0.026800930500030518, -0.027928562834858894, 0.00791964866220951, 0.009899561293423176, -0.0005388213321566582, -0.007663964759558439, -0.013256233185529709, -0.011066528968513012, 0.03828704357147217, 0.008188445121049881, -0.007172264624387026, 0.028898851945996284, -0.012620300985872746, 0.014174073934555054, -0.01969422586262226, -0.022985339164733887, -0.034799251705408096, 0.007965540513396263, -0.009729105047881603, -0.018265018239617348, 0.015131250023841858, 0.039991606026887894, 0.02063829079270363, -0.029974035918712616, 0.012810424901545048, -0.024493219330906868, 0.028217026963829994, 0.04901266098022461, -0.015472161583602428, 0.01789788156747818, 0.025555290281772614]], "input": ["2 GRAMS:2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.", "12 VOLTS:12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.", "49 CFR:49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.", "STRONG OUTER PACKAGING:Batteries must be in strong outer packaging to prevent damage and leakage during transport.", "NON-CONDUCTIVE CAPS:Non-conductive caps are required to protect the terminals of spare batteries during transport.", "FLAMMABLE MATERIAL:Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.", "LITHIUM BATTERIES:", "SPARE LITHIUM BATTERIES:Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.", "WATT-HOURS:Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).", "BATTERY-POWERED DEVICES:Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.", "IATA REGULATIONS:IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.", "100 WH:Batteries with a capacity of less than 100 watt-hours may be taken aboard the aircraft when insulated or in their original packaging.", "15 ELECTRONIC DEVICES:Passengers are allowed to take up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 watt-hours aboard the aircraft.", "20 SPARE BATTERIES:Passengers may take up to 20 spare batteries with a capacity of less than 100 watt-hours aboard the aircraft.", "BATTERY CASE:A battery case is used to protect batteries from damage and short circuits during transport.", "ORIGINAL PACKAGING:Keeping batteries in their original packaging helps prevent short circuits and damage during transport."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-ab98d089dba3f656328ebcdb5822c5c9 b/cache/text_embedding/embedding-ab98d089dba3f656328ebcdb5822c5c9 deleted file mode 100644 index 97c05c265e45d35e58cc43676633f31926095232..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-ab98d089dba3f656328ebcdb5822c5c9 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.023489300161600113, 0.016013380140066147, 0.06468591839075089, 0.01347246952354908, -0.027893545106053352, 0.03871217370033264, -0.04639136791229248, 0.016273116692900658, -0.021851826459169388, 0.06658313423395157, -0.01338212564587593, 0.010321740992367268, 0.04207747057080269, 0.022811725735664368, -0.05126991495490074, -0.0012711607851088047, 0.006448264699429274, 0.037831325083971024, -0.014613055624067783, -0.011812408454716206, 0.039615608751773834, 0.050682682543992996, -0.05479331314563751, -0.029022838920354843, -0.017266895622015, -0.026086675003170967, -0.007199245039373636, -0.029587484896183014, 0.08279978483915329, -0.09251170605421066, 0.031371768563985825, -0.035030677914619446, 0.013969358056783676, -0.02240517921745777, -0.0012711607851088047, 0.009892609901726246, 0.0026016095653176308, -0.025928575545549393, 0.021908290684223175, 0.021513037383556366, -0.005587178748100996, 0.03396914154291153, -0.010129760950803757, 0.02232612855732441, -0.013912893831729889, 0.05529019981622696, 0.01970616914331913, -0.042145226150751114, 0.006318395957350731, 0.0010523601667955518, 0.05226369574666023, 0.05845222249627113, -0.0022303543519228697, -0.011778529733419418, 0.009542528539896011, -0.017820248380303383, 0.0037153749726712704, 0.016318287700414658, 0.023218270391225815, -0.029971444979310036, -0.024821866303682327, -0.030897464603185654, -0.011371984146535397, 0.003915824461728334, 0.010609710589051247, 0.00919809378683567, -0.016273116692900658, 0.000649696565233171, -0.026177018880844116, -0.07082927972078323, 0.008927064016461372, 0.049508217722177505, 0.026357706636190414, -0.03688272088766098, -0.0013262138236314058, 0.0013078628107905388, -0.01836230978369713, -0.007007264997810125, 0.012873943895101547, 0.020948391407728195, -0.03534688055515289, 0.011281640268862247, -0.02671908028423786, -0.01171077135950327, 0.012038267217576504, -0.009909548796713352, -0.07069376111030579, -0.027193382382392883, -0.0018167506204918027, -0.023692574352025986, -0.010389498434960842, -0.010564538650214672, -0.04684308543801308, 0.025386514142155647, 0.01190275140106678, 0.003969465848058462, 0.05976220220327377, -0.02994885854423046, -0.021524330601096153, 0.044448986649513245, -0.01778637059032917, -0.04605258256196976, -0.025386514142155647, 0.0218857042491436, -0.011061428114771843, -0.045284662395715714, -0.0005978196277283132, 0.07001618295907974, 0.04481035843491554, -0.02179536037147045, 0.014443662017583847, -0.030400576069951057, -0.008334184996783733, 0.04076748713850975, -0.03195900097489357, -0.00839064922183752, -0.008966589346528053, -0.023466715589165688, 0.03304312378168106, -0.021829240024089813, -0.02676425129175186, 0.020519260317087173, 0.04273245856165886, -0.04864995554089546, 0.014251681976020336, -0.01530192419886589, 0.012941701337695122, 0.006832224782556295, -0.05262506753206253, 0.004740208853036165, 0.0405416302382946, -0.05104405805468559, 0.05271541327238083, -0.02371515892446041, -0.018554288893938065, -0.011112246662378311, 0.01766214706003666, -0.02859370782971382, 0.019898148253560066, 0.004706330131739378, 0.05772947520017624, -0.0032636576797813177, -0.031462110579013824, 0.025341341271996498, -0.06400834769010544, 0.024957383051514626, 0.012704550288617611, 0.014217803254723549, 0.018610753118991852, -0.03365294262766838, -0.001507606590166688, 0.028458191081881523, -0.0017080561956390738, 0.006403093226253986, 0.03383362665772438, 0.04864995554089546, 0.025183241814374924, 0.02310534194111824, 0.0012669259449467063, 0.005028178449720144, -0.03570825606584549, -0.030761949717998505, 0.012670670635998249, -0.002219061367213726, 0.01040079165250063, 0.002662308979779482, 0.007899406366050243, 0.03602445870637894, -0.033856213092803955, -0.03875734657049179, -0.03536946699023247, -0.0280290599912405, -0.04164833948016167, -0.010547599755227566, -0.01105578150600195, -0.048153068870306015, 0.055967777967453, 0.024166876450181007, -0.012106024660170078, 0.019514188170433044, -0.03012954629957676, 0.030016615986824036, -0.10353361070156097, -0.017888005822896957, -0.013291782699525356, 0.04447156935930252, 0.0043336632661521435, 0.010011184960603714, -0.056916382163763046, 0.014567883685231209, -0.002711715642362833, -0.016318287700414658, -0.017300773411989212, -0.005341557320207357, -0.019423844292759895, 0.016374753788113594, -0.012659378349781036, -0.0048983097076416016, 0.010976730845868587, -0.014477540738880634, 0.03672461956739426, -0.04670757055282593, 0.029361626133322716, 0.00385371339507401, -0.024821866303682327, 0.003910178318619728, -0.004401420708745718, 0.016849055886268616, 0.019389966502785683, -0.0436810664832592, 0.01399194449186325, -0.032071929425001144, -0.02834526263177395, 0.015324510633945465, -0.01190275140106678, 0.008272073231637478, -0.0025522029027342796, 0.024257220327854156, 0.014037116430699825, 0.03543722629547119, -0.05167646333575249, -0.013935479335486889, 0.004150153137743473, -0.01844136044383049, -0.0280290599912405, -0.023828089237213135, 0.015945620834827423, -0.03848631680011749, -0.0070693762972950935, -0.07403647154569626, -0.012264125049114227, 0.021253300830721855, -0.0011060016695410013, -0.010807337239384651, -0.002450566506013274, -0.011501852422952652, 0.019807804375886917, -0.017594389617443085, 0.01734594628214836, -0.001507606590166688, 0.016544146463274956, -0.028932495042681694, -0.008170437067747116, 0.005383905954658985, 0.0024816221557557583, -0.006589426659047604, -0.0024152761325240135, -0.0409030057489872, 0.045013632625341415, -0.003128142561763525, 0.0024971498642116785, -0.005717047490179539, 0.08641352504491806, -0.08379356563091278, 0.00884801335632801, 0.03252364695072174, -0.017458874732255936, -0.049643732607364655, 0.008915770798921585, 0.009090811014175415, -0.03475964814424515, -0.00012995695578865707, -0.013291782699525356, -0.002653839299455285, -0.04420053958892822, -0.0312136672437191, -0.011620428413152695, 0.009858730249106884, -0.026222191751003265, 0.05858773738145828, -0.045284662395715714, 0.020169178023934364, -0.008497931994497776, -0.012772307731211185, -0.061885274946689606, 0.03216227516531944, -0.01379996445029974, -0.03448861837387085, 0.0014553767396137118, -0.0015570131363347173, -0.054477110505104065, -0.029722999781370163, -0.04024801403284073, -0.07372026890516281, 0.056735698133707047, 0.022551987320184708, -0.014070995151996613, -0.045758966356515884, -0.005361319985240698, 0.01107272133231163, 0.07164236903190613, 0.013551520183682442, 0.018701096996665, -0.012365762144327164, 0.05524503067135811, 0.023353785276412964, -0.025431685149669647, 0.021332351490855217, -0.0036645568907260895, -0.01319014560431242, 0.016284409910440445, 0.030716778710484505, 0.0037972487043589354, -0.05542571470141411, -0.062156304717063904, 0.027532171458005905, 0.00013551520532928407, 0.02080158330500126, -0.0020482558757066727, 0.012885237112641335, -0.025318756699562073, 0.05501917004585266, -0.05768430233001709, -0.06043978035449982, -0.0041162739507853985, -0.03595669940114021, -0.03631807491183281, 0.0010798866860568523, 0.0503213107585907, -0.021072613075375557, 0.021987341344356537, 0.0045454055070877075, 0.007933286018669605, 0.0026891296729445457, -0.028503363952040672, -0.0316653847694397, 0.011846287176012993, 0.03403690084815025, -0.030807122588157654, -0.02258586697280407, -0.019672289490699768, -0.012896529398858547, 0.03186865895986557, 0.02464118041098118, -0.04277763143181801, -0.017063621431589127, -0.01652156189084053, 0.021603381261229515, 0.029406799003481865, 0.0011398803908377886, 0.007831648923456669, 0.002300935098901391, -0.040225427597761154, 0.006239345762878656, -0.012772307731211185, 0.038734760135412216, 0.028480777516961098, 0.06012357771396637, -0.0314846970140934, 0.04490070417523384, 0.045804135501384735, 0.008571336045861244, -0.018034813925623894, -0.017278186976909637, -0.011959216557443142, -0.02773544378578663, 0.037469953298568726, 0.011755943298339844, -0.00304626883007586, 0.0204515028744936, 0.025138068944215775, 0.003718198277056217, 0.018113864585757256, 0.03787649795413017, 0.051857151091098785, -0.013133681379258633, -0.006871749646961689, 0.0021541269961744547, 0.018554288893938065, -0.03308829292654991, 0.02362481690943241, 0.012738429009914398, 0.03588894009590149, -0.015053479932248592, 0.02010142058134079, -0.03383362665772438, 0.03792167082428932, 0.037515122443437576, -0.02066606841981411, 0.011332458816468716, 0.0016064197989180684, 0.031100738793611526, -0.018780147656798363, -0.008311598561704159, -0.00402310723438859, 0.026583565399050713, -0.07268131524324417, -0.02001107856631279, 0.0011822289088740945, 0.018328430131077766, 0.00040019332664087415, 0.0006122887134552002, -0.048333752900362015, 0.05271541327238083, -0.04280021786689758, -0.0020539022516459227, 0.004455062095075846, 0.00753238657489419, -0.0023390487767755985, -0.017334653064608574, -0.007792124059051275, -0.05027613788843155, -0.00015113121480681002, -0.03631807491183281, -0.004282844718545675, 0.01670224778354168, -0.02464118041098118, -0.005132637917995453, -0.03543722629547119, -0.01466951984912157, 0.023466715589165688, 0.005426254589110613, 0.04537500441074371, 0.040135085582733154, 0.009373134933412075, 0.009813559241592884, -0.033630356192588806, 0.055787090212106705, -0.012806186452507973, -0.07643057405948639, 0.034624133259058, 0.026267362758517265, 0.004853138234466314, -0.017605682834982872, -0.06938378512859344, 0.004240496549755335, 0.05881359800696373, -0.004706330131739378, -0.010474195703864098, -0.04155799373984337, -0.01188016589730978, -0.007165366318076849, -0.01800093613564968, 0.032591406255960464, -0.049463048577308655, -0.02619960531592369, 0.006634598132222891, 0.002861347049474716, -0.01979651115834713, -0.04160316661000252, 0.026628736406564713, -0.022958533838391304, 0.055967777967453, -0.005934436339884996, -0.02193087711930275, -0.00791069958359003, -0.0025818469002842903, 0.026402877643704414, -0.0378539115190506, -0.011061428114771843, -0.01349505502730608, -0.023308614268898964, -0.06540866941213608, -0.0018760384991765022, 0.009361841715872288, -0.027193382382392883, 0.0075098006054759026, -0.03401431441307068, 0.032501060515642166, -0.013506348244845867, 0.02577047422528267, 0.05393504723906517, 0.05741327255964279, 0.02811940386891365, -0.003449991112574935, 0.007656608708202839, -0.008599569089710712, -0.019322209060192108, -0.002970041474327445, -0.03354001045227051, 0.012715842574834824, 0.007487214636057615, -0.043748822063207626, -0.029226111248135567, 0.004881370346993208, -0.01818162202835083, -0.009892609901726246, -0.05610329285264015, -0.019344795495271683, -0.013946772553026676, 0.056916382163763046, 0.03374328464269638, -0.02249552309513092, -0.030400576069951057, 0.07426232844591141, -0.050501998513936996, 0.04896615818142891, 0.008881892077624798, 0.002219061367213726, -0.006657184101641178, -0.05791016295552254, 0.00046689220471307635, 0.025228412821888924, -0.00900046806782484, 0.04408761113882065, 0.011970508843660355, -0.045623451471328735, 0.015923036262392998, 0.03344966843724251, 0.028277505189180374, 0.027193382382392883, -0.04164833948016167, 0.031281426548957825, 0.014545298181474209, 0.007402517832815647, 0.0019183870172128081, 0.021264594048261642, -0.03261399269104004, -0.03920906409621239, 0.024053948000073433, -0.04015767201781273, 0.010722639970481396, 0.02904542349278927, 0.015640713274478912, -0.01983039081096649, -0.02114037051796913, 0.03092005103826523, -0.025363927707076073, -0.037424780428409576, 0.015923036262392998, 0.01958194561302662, -0.04526207596063614, -0.00917550828307867, 0.006606366019695997, 0.0003008508065249771, 0.02366998791694641, -0.026560978963971138, 0.010971084237098694, -0.015900449827313423, 0.018734976649284363, -0.026651322841644287, -0.03932199254631996, -0.03602445870637894, 0.0006867515039630234, -0.0020256699062883854, 0.004514350090175867, 0.0038141882978379726, 0.024302393198013306, -0.00578762823715806, -0.035211365669965744, 0.03078453615307808, 0.0044691781513392925, 0.014816327951848507, 0.027870958670973778, -0.007515447214245796, -0.013404712080955505, 0.01752663217484951, 0.04246142879128456, 0.01792188547551632, -0.0015005484456196427, -0.023127926513552666, 0.012060852721333504, -0.03482740744948387, -0.004740208853036165, 0.0030745011754333973, 0.03866700455546379, 0.00931102316826582, -0.027012696489691734, 0.011936630122363567, -0.023963604122400284, -0.020044956356287003, 0.01775249093770981, -0.0023079931270331144, -0.0067926994524896145, 0.04049645736813545, -0.001183640561066568, 0.0017320535844191909, -0.036431003361940384, -0.02933903969824314, -0.0013396241702139378, 0.0030039201956242323, -0.019243158400058746, 0.0029954505153000355, -0.03487257659435272, 0.04167092218995094, 0.0342627577483654, 0.009565114043653011, -0.019389966502785683, 0.03475964814424515, 0.03394655883312225, 0.004311077296733856, 0.06007840484380722, -0.0407223179936409, -0.0011391746811568737, -0.004717622883617878, 0.016995863988995552, -0.039864055812358856, -0.045194320380687714, -0.00919809378683567, 0.046978600323200226, 0.011338104493916035, 0.013461176306009293, -0.0102257514372468, -0.01992073468863964, 0.008955296128988266, 0.04103852063417435, -0.005708577577024698, -0.014116166159510612, -0.005821506958454847, -0.0022599983494728804, 0.012196367606520653, 0.005347203928977251, 0.021874411031603813, 0.025431685149669647, -0.07503024488687515, -0.015629420056939125, 0.008735083974897861, -0.029406799003481865, 0.01874626986682415, 0.0027512407395988703, 0.009553821757435799, 0.003997698426246643, -0.0054714260622859, -0.04973407834768295, -0.01577622815966606, 0.004833375569432974, -0.05343816056847572, -0.038260456174612045, -0.017628269270062447, -0.0019183870172128081, -0.03656651824712753, 0.0055420068092644215, 0.012399640865623951, -0.02464118041098118, -0.02807423286139965, -0.0311684962362051, -0.02342154271900654, -0.0409933477640152, -0.03234295919537544, -0.03959302231669426, -0.007018558215349913, 0.01613760180771351, -0.042145226150751114, -0.010220104828476906, -0.007504153996706009, -0.02223578467965126, 0.029881101101636887, -0.012761014513671398, -0.011174357496201992, 0.026538392528891563, 0.02362481690943241, 0.01201568078249693, 0.029835930094122887, -0.014285560697317123, 0.021433986723423004, 0.03021989017724991, -0.008881892077624798, 0.022529400885105133, 0.026651322841644287, -0.005832800175994635, 0.014714691787958145, 0.015245459973812103, -0.008548750542104244, -0.010129760950803757, 0.02712562493979931, 0.03008437342941761, -0.022653624415397644, 0.0055024814791977406, 0.015990793704986572, 0.008097033016383648, -0.026493221521377563, 0.0311684962362051, -0.003811364993453026, 0.05267024040222168, 0.04212263971567154, -0.0067644668743014336, 0.023647401481866837, 0.0038593600038439035, -0.008898830972611904, -0.00884801335632801, -0.028751807287335396, -0.01775249093770981, 0.028232332319021225, -0.03277209401130676, -0.002584670204669237, -0.0317557267844677, -0.01914152130484581, 0.03354001045227051, -0.035911526530981064, 0.02929386869072914, -0.03060384839773178, -0.016340874135494232, -0.018373603001236916, -0.0007530974689871073, 0.0018986243521794677, -0.010558892972767353, 0.029700415208935738, -0.03021989017724991, -0.001956500578671694, 0.025702716782689095, -0.013246610760688782, 0.03550498187541962, -0.0022331776563078165, 0.005245567299425602, 0.019604532048106194, 0.06184010207653046, 0.005821506958454847, -0.03279467672109604, -0.018125157803297043, -0.06120769679546356, 0.03322380781173706, -0.01055324636399746, 0.006962093524634838, -0.03810235485434532, -0.020417623221874237, -0.008757669478654861, -0.046233270317316055, -0.018610753118991852, 0.050908543169498444, -0.0027413596399128437, -0.032726921141147614, -0.012749721296131611, -0.04555569216609001, -0.03848631680011749, -0.011038842611014843, -0.008068800903856754, 0.003839597338810563, -0.019107643514871597, -0.014477540738880634, -0.004983006976544857, -0.011812408454716206, 0.028232332319021225, -0.037131164222955704, -0.009881316684186459, 0.02895508147776127, -0.023048875853419304, 0.007893760688602924, -0.011609135195612907, 0.006866103503853083, -0.008322891779243946, 0.031710557639598846, -0.01857687532901764, 0.01818162202835083, -0.002787942998111248, -0.0348048210144043, 0.007622729986906052, -0.04417795315384865, -0.022789139300584793, -0.010282215662300587, -0.03021989017724991, -0.007854235358536243, -0.036995649337768555, -0.0041925013065338135, -0.01319014560431242, -0.009694983251392841, -0.018542995676398277, 0.020733825862407684, -0.009203740395605564, -0.004226380027830601, 0.011744650080800056, -0.0029869808349758387, 0.00658378005027771, -0.027283726260066032, -0.014511419460177422, -0.03279467672109604, 0.01525675319135189, -0.004025930538773537, 0.004692213609814644, -0.025951160117983818, 0.00854310393333435, 0.029632655903697014, -0.011609135195612907, -0.007351699750870466, 0.04474260285496712, 0.0032721273601055145, -0.0014906672295182943, -0.014816327951848507, 0.007735659368336201, 0.017944470047950745, -0.01508735865354538, -0.03984146937727928, 0.0008737907046452165, 0.014353318139910698, 0.03701823577284813, 0.015460025519132614, -0.021422693505883217, -0.02577047422528267, 0.01769602671265602, -0.01319014560431242, -0.029971444979310036, 0.028435606509447098, -0.03143952786922455, -0.020824169740080833, 0.0009267263230867684, 0.010293508879840374, -0.00448047136887908, -0.0053669665940105915, -0.028661465272307396, 0.0075098006054759026, 0.001180817373096943, -0.038215287029743195, -0.018079986795783043, -0.016465095803141594, -0.03523395210504532, -0.01495184376835823, 0.0021018972620368004, 0.016532855108380318, -0.017763784155249596, -0.042484015226364136, 0.00042030884651467204, -0.025996332988142967, -0.02947455644607544, -0.007131487131118774, -0.0012090497184544802, 0.10714735090732574, -0.020812876522541046, 0.004449415486305952, 0.003049091901630163, -0.017470167949795723, 0.01630699634552002, -0.031055565923452377, 0.04530724883079529, -0.022247077897191048, 0.018475238233804703, -0.012410933151841164, -0.017323359847068787, -0.011451033875346184, 0.014477540738880634, 0.010491134598851204, 0.003817011369392276, 0.019559361040592194, -0.03525653854012489, -0.023692574352025986, 0.003735137637704611, 0.006273224484175444, -0.025996332988142967, -0.002975687850266695, 0.0021146016661077738, -0.0005780570209026337, -0.004669628106057644, 0.014827621169388294, -0.010863801464438438, -0.012648085132241249, -0.003771839663386345, 0.004285668022930622, -0.013811257667839527, -0.04097076132893562, -0.009711922146379948, 0.021987341344356537, -0.004579284228384495, 0.0439520962536335, -0.006239345762878656, -0.0625176802277565, -0.023082755506038666, -0.01940125972032547, -0.003489516442641616, 0.018384894356131554, 0.01818162202835083, -0.026018917560577393, 0.02624477632343769, 0.013303074985742569, -0.01761697605252266, -0.0029559251852333546, -0.026177018880844116, 0.02136622928082943, -0.005115698557347059, 0.03200417384505272, -0.018712390214204788, 0.027441827580332756, 0.0031676676589995623, -0.03753770887851715, 0.017458874732255936, 0.021874411031603813, -0.02301499806344509, 0.011620428413152695, 0.01804610714316368, 0.010716993361711502, -0.030965222045779228, 0.027758030220866203, -0.007487214636057615, -0.007046790327876806, -0.009836144745349884, -0.008051861077547073, 0.015155116096138954, -0.005437547340989113, -0.0020496672950685024, -0.019254451617598534, 0.015403561294078827, 0.022574573755264282, -0.017888005822896957, -0.013348246924579144, 0.01827196590602398, -0.0003188489063177258, 0.005110052414238453, 0.0006539314053952694, -0.014240388758480549, -0.005804567597806454, 0.04356813803315163, 0.0316653847694397, 0.016250530257821083, 0.013641863130033016, -0.017153965309262276, 0.0406319722533226, 0.00128598278388381, -0.007142780348658562, 0.009926488623023033, -0.00529638584703207, -0.009361841715872288, 0.018655925989151, 0.013178853318095207, -0.04115144908428192, -0.00012034032260999084, 0.0028684050776064396, 0.0109428521245718, -0.0021385992877185345, 0.005539183970540762, -0.025747887790203094, 0.018260672688484192, 0.033291567116975784, -0.018983419984579086, 0.012851358391344547, -0.03256881982088089, -0.034714475274086, -0.03403690084815025, 0.006002193782478571, 0.02511548437178135, -0.0011610547080636024, -0.010107175447046757, 0.0344434455037117, -0.003910178318619728, 0.08013465255498886, 0.020948391407728195, 0.012151196599006653, -0.01560683362185955, 0.015437440015375614, -0.03584377095103264, 0.012060852721333504, 0.02106131985783577, 0.007622729986906052, -0.03412724286317825, -0.0093505484983325, 0.03929940611124039, 0.04433605447411537, 0.05854256451129913, 0.01109530683606863, -0.012614206410944462, 0.00044607085874304175, -0.006290163844823837, 0.03841855749487877, -0.02389584667980671, -0.007730012759566307, 0.010220104828476906, -0.008260780945420265, -0.041964538395404816, 0.021377522498369217, 0.003636324545368552, -0.0009577819146215916, 0.009757094085216522, 0.004277198575437069, 0.008689912036061287, 0.03082970716059208, -0.003444344736635685, 0.012727135792374611, -0.013404712080955505, -0.04553310573101044, 0.0009097869042307138, 0.008170437067747116, -0.0055307140573859215, 0.0006175822927616537, -0.017244309186935425, 0.03236554563045502, 0.037560295313596725, 0.008147851563990116, -0.035776011645793915, 0.04352296516299248, 0.0282549187541008, 0.008650386705994606, 0.005491188727319241, 0.015380974858999252, 0.029813343659043312, -0.03929940611124039, -0.008277719840407372, 0.02568013034760952, 0.014714691787958145, -0.015595540404319763, -0.009006114676594734, 0.0056944615207612514, 0.011501852422952652, 0.01835101656615734, -0.004901133012026548, -0.01223024632781744, 0.01379996445029974, 0.03283984959125519, -0.013901600614190102, -0.0054431939497590065, 0.0435907207429409, 0.008017982356250286, -0.009514296427369118, 0.003839597338810563, -0.0006581662455573678, 0.057097069919109344, -0.03347225487232208, 0.029497141018509865, 0.008283366449177265, -0.010801690630614758, 0.031055565923452377, 0.00768484128639102, -0.02624477632343769, 0.0436810664832592, 0.016227945685386658, 0.04207747057080269, 0.01652156189084053, 0.019514188170433044, 0.0001955089101102203, 0.001744758221320808, 0.027532171458005905, 0.035121023654937744, 0.02275525964796543, -0.02773544378578663, 0.019932027906179428, 0.0040287538431584835, 0.007950224913656712, 0.0002696187875699252, 0.013065923936665058, -0.019254451617598534, -0.028480777516961098, 0.004107804503291845, -0.04264211654663086, -0.02881956472992897, 0.01314497459679842, -0.0032326020300388336, -0.002124482998624444, 0.01046290248632431, 0.013641863130033016, 0.02759992890059948, 0.0004683038278017193, 0.016532855108380318, 0.026131847873330116, 0.037740983068943024, -6.859574932605028e-05, -0.015855278819799423, 0.02272138185799122, 0.019932027906179428, 0.02811940386891365, 0.005313325207680464, 0.0282549187541008, 0.0018435713136568666, -0.017605682834982872, -0.02389584667980671, 0.03247847408056259, -0.018938248977065086, -0.01918669417500496, -0.02275525964796543, 0.04569120705127716, -0.025363927707076073, -0.01123082172125578, -0.018655925989151, -0.00466398149728775, 0.0055787088349461555, 0.0033624707721173763, 0.00625628512352705, 0.04307124763727188, -0.046233270317316055, -0.018701096996665, 0.015030894428491592, -0.03997698426246643, -0.029881101101636887, -0.012275418266654015, -0.008441467769443989, -0.0006638127379119396, 0.004624456167221069, -0.01223024632781744, 0.001589480321854353, -0.016882935538887978, 0.02886473760008812, 0.009423952549695969, -0.05474814027547836, 0.022258371114730835, 0.02554461546242237, 0.022834310308098793, -0.016634490340948105, 0.011609135195612907, 0.03672461956739426, 0.04162575304508209, 0.014082287438213825, 0.015053479932248592, -0.002707480685785413, -0.013958065770566463, -0.011298580095171928, 0.013720913790166378, -0.0060473657213151455, 0.013596691191196442, -0.004141683224588633, -0.025273583829402924, -0.01987556181848049, -0.02106131985783577, -0.004040047060698271, 0.02276655286550522, -0.014816327951848507, 0.004424006678164005, -0.030807122588157654, 0.021219421178102493, 0.02324085682630539, 0.004604693502187729, 0.018870491534471512, 0.00804621446877718, 0.011377629823982716, 0.01284006517380476, -0.025567200034856796, 0.010174932889640331, 0.017289480194449425, 0.015843985602259636, -0.002298111794516444, -0.011219529435038567, 0.009570760652422905, 0.007634022738784552, 0.0069056288339197636, 0.009356195107102394, 0.03848631680011749, 0.01608113758265972, 0.0009380192495882511, -0.0042574359104037285, 0.017187844961881638, -0.0003832539077848196, 0.03665686026215553, -0.003726667957380414, -0.03466930612921715, -0.02115166373550892, 0.004590577445924282, -0.004855961073189974, -0.0250251404941082, -0.006386153865605593, -0.0440424382686615, -0.016340874135494232, 0.02236000820994377, -0.0015541899483650923, -0.03308829292654991, 0.03593411296606064, 0.017933178693056107, 0.003800072008743882, -0.002553614554926753, -0.031145909801125526, -0.016284409910440445, -0.02280043251812458, 0.007295235060155392, 0.02275525964796543, -0.014872793108224869, -0.044539328664541245, 0.0041925013065338135, -0.010654882527887821, -0.005256860516965389, 0.006239345762878656, -0.009717568755149841, 0.014997015707194805, -0.030242474749684334, 0.008452760055661201, 0.005045117810368538, 0.06319525092840195, 0.01464693434536457, -0.027848374098539352, -0.018283259123563766, 0.053167130798101425, -0.006510375998914242, -0.009932134300470352, 0.03008437342941761, 0.025702716782689095, 0.007351699750870466, -0.03663427382707596, 0.007955871522426605, 0.016465095803141594, 0.002103308914229274, 0.0086560333147645, -0.01835101656615734, 0.03841855749487877, 0.041174035519361496, 0.000740392948500812, 0.020869340747594833, 0.022879483178257942, -0.022856896743178368, 0.006566840689629316, -0.006346628535538912, -0.010457255877554417, -0.01787671260535717, 0.008650386705994606, 0.005516598001122475, -0.006436971947550774, 0.02619960531592369, -0.020157886669039726, -0.013980651274323463, -0.010496781207621098, 0.0012076380662620068, 0.00019339147547725588, -0.028796980157494545, 0.0017941647674888372, -0.008712497539818287, 0.011146125383675098, 0.01739111728966236, -0.018192915245890617, -0.010265275835990906, -0.015843985602259636, -0.0012351645855233073, 0.01740241050720215, 0.020858047530055046, -0.022811725735664368, -0.021343644708395004, 0.011733357794582844, -0.016465095803141594, 0.009621579200029373, 0.015539076179265976, -0.03227520361542702, -0.023173099383711815, -0.016984570771455765, 0.02554461546242237, -0.0036222082562744617, -0.023048875853419304, -0.018034813925623894, -0.024821866303682327, -0.002132952678948641, 0.002649604342877865, -0.022958533838391304, 0.02947455644607544, -0.03213968873023987, 0.006702356040477753, -0.027622515335679054, -0.003712551901116967, -0.01059277169406414, 0.01909635029733181, -0.006075598299503326, -0.02324085682630539, 0.0031959000043570995, -0.005750926211476326, -0.009220680221915245, 0.02328602783381939, -0.008746377192437649, 0.02769027277827263, -0.004378834739327431, -0.0010128349531441927, -0.03367552533745766, -0.025363927707076073, 0.03907354921102524, 0.013416004367172718, 0.008768962696194649, 0.0036335012409836054, -0.023511886596679688, 0.0204515028744936, 0.0057706888765096664, 0.05154094845056534, -0.0157423485070467, 0.013065923936665058, 0.042054884135723114, -0.01638604700565338, 0.010784750804305077, -0.012952994555234909, -0.03611480072140694, -0.011547024361789227, -0.0015457202680408955, -0.024686351418495178, 0.01153573114424944, 0.0018732153112068772, -0.012162488885223866, 0.01401452999562025, -0.0021753013134002686, 0.015460025519132614, -0.0038621830753982067, -0.012681963853538036, 0.021208127960562706, -0.015764934942126274, 0.005110052414238453, -0.00545166339725256, 0.019852977246046066, -0.003088617231696844, -0.029745586216449738, -0.018509117886424065, -0.023737745359539986, -0.01639733836054802, 0.006318395957350731, 0.018260672688484192, -0.003207192989066243, -0.017775077372789383, 0.025092897936701775, 0.017808955162763596, 0.01347246952354908, 0.02929386869072914, -0.014229095540940762, 0.045804135501384735, 0.001439143205061555, 0.010558892972767353, 0.010547599755227566, 0.00946347787976265, 0.009271497838199139, -0.03012954629957676, 0.002422334160655737, -0.0013953830348327756, -0.013506348244845867, 0.012715842574834824, -0.004892663098871708, -0.008780255913734436, -0.0063635678961873055, 0.008548750542104244, 0.0070750224404037, -0.034375689923763275, -0.0171313788741827, -0.02563495747745037, 0.01120823621749878, -0.021614674478769302, -0.0049491277895867825, 0.010835569351911545, -0.027803201228380203, 0.01347246952354908, 0.009203740395605564, 0.00040831012302078307, 0.05298644304275513, 0.011959216557443142, -0.006482143886387348, -0.0006779289105907083, 0.004251789301633835, -0.0008385002729482949, -0.008825426921248436, 0.006962093524634838, 0.0037153749726712704, 0.005070527084171772, -0.005728340242058039, 0.006069951690733433, 0.004401420708745718, 0.021479159593582153, 0.027283726260066032, -0.03026506118476391, -0.01370962057262659, -0.002319286111742258, 0.04228074103593826, -0.00036666743108071387, -0.04352296516299248, -0.004384481348097324, -0.03719892352819443, 0.040180254727602005, -0.06536349654197693, 0.014161338098347187, 0.013269196264445782, 0.012715842574834824, -0.014816327951848507, 0.009407013654708862, -0.00434777932241559, -0.01368703506886959, 0.015200288034975529, 0.008881892077624798, -0.017594389617443085, 0.0001227224274771288, 0.01316756010055542, 0.017379824072122574, 0.026018917560577393, -0.017650853842496872, 0.005400845315307379, -0.05285092815756798, 0.015019601210951805, -0.0018223971128463745, 0.04097076132893562, -0.006995972245931625, -0.02900025248527527, -0.010259630158543587, -0.03227520361542702, -0.019785219803452492, -0.01996590569615364, -0.02088063396513462, -0.0035826831590384245, 0.00739122461527586, -0.016363460570573807, 0.0013078628107905388, 0.025363927707076073, -0.010954145342111588, 0.011530084535479546, 0.04842409864068031, -0.004455062095075846, -0.029406799003481865, -0.002000260865315795, -0.013845136389136314, -0.02205509878695011, -0.02497996762394905, -0.029226111248135567, -0.004144506528973579, 0.046933431178331375, -0.022168027237057686, 0.014545298181474209, 0.004728915635496378, -0.014658227562904358, 0.012433519586920738, 0.037831325083971024, -0.04219039902091026, 0.01879144087433815, -0.0023150513879954815, 0.006617658771574497, -0.025951160117983818, -0.021219421178102493, -0.008339831605553627, 0.010412084870040417, -0.017605682834982872, -0.0017927531152963638, -0.015482611022889614, -0.008582629263401031, 0.015460025519132614, 0.013291782699525356, -0.004929365124553442, -0.001547131803818047, 0.01775249093770981, -0.03627290204167366, -0.016713541001081467, -0.028842151165008545, -0.024212049320340157, 0.004757148213684559, -0.017865421250462532, -0.01709750108420849, -0.018023520708084106, 0.0012238716008141637, -0.0141500448808074, 0.0008991998038254678, -0.0031140262726694345, -0.002549379598349333, -0.0007792123942635953, 0.03247847408056259, -0.07100996375083923, 0.0202708151191473, 0.02080158330500126, 0.01874626986682415, 0.0063353353179991245, -0.02083546109497547, -0.00480796629562974, -0.025883402675390244, 0.004672450944781303, -0.019502894952893257, 0.013596691191196442, 0.003136612242087722, -0.03021989017724991, -0.02493479661643505, -0.014116166159510612, -0.0009817794198170304, 0.004232026636600494, -0.008097033016383648, -0.019457723945379257, -0.014748570509254932, 0.02947455644607544, 0.033765871077775955, 0.025499442592263222, -0.0038508903235197067, 0.006617658771574497, -0.01740241050720215, 0.005468602757900953, -0.0022289426997303963, -0.0029559251852333546, 0.05000510811805725, -0.0004224262956995517, 0.019062470644712448, 0.007571911904960871, -0.00963851809501648, 0.037740983068943024, 0.023873260244727135, 0.04029318690299988, 0.01809127815067768, -0.023218270391225815, -0.003082970855757594, -0.002854288788512349, 0.008486639708280563, 0.01988685503602028, 0.011484913527965546, 0.07353957742452621, -0.008130911737680435, 0.01983039081096649, -0.01717655174434185, -0.022439058870077133, -0.00563517352566123, 0.020090127363801003, -0.006194173824042082, -0.0061715878546237946, 0.002766768680885434, 0.02048538066446781, -0.02324085682630539, -0.014138752594590187, 0.018644632771611214, 0.03428534418344498, 0.0051778098568320274, 0.015764934942126274, -0.003935587126761675, -0.04661722853779793, 0.008057507686316967, -0.0015513666439801455, 0.009847437962889671, -0.029722999781370163, -0.012941701337695122, -0.004562344867736101, 0.010818630456924438, 0.01475986372679472, 0.03658910468220711, -0.06184010207653046, 0.029881101101636887, 0.015618126839399338, 0.010948498733341694, 0.02362481690943241, 0.010372559539973736, -0.013235317543148994, -0.013461176306009293, -0.003932763822376728, -0.01466951984912157, 0.0033257687464356422, -0.022382592782378197, 0.019197987392544746, -0.0026580742560327053, 0.024844452738761902, -0.017537925392389297, 0.013788671232759953, 0.033201225101947784, 0.03918647766113281, 0.009147276170551777, -0.027622515335679054, 0.0032354253344237804, -0.027057867497205734, 0.004556698724627495, 0.0041162739507853985, 0.030536090955138206, 0.005070527084171772, -0.0028585237450897694, 0.011676892638206482, -0.024776695296168327, 0.048153068870306015, -0.008893185295164585, -0.009649811312556267, -0.022732675075531006, -0.009056932292878628, -0.009689336642622948, 0.02676425129175186, 0.002118836622685194, 0.004466355312615633, -0.011428448371589184, -0.009260205551981926, -0.013607984408736229, -0.06712519377470016, -0.013833843171596527, 0.007972810417413712, -0.03277209401130676, 0.009039993397891521, 0.03541463986039162, 0.014884086325764656, 0.003997698426246643, -0.03618255630135536, 0.04652688652276993, -0.031100738793611526, 0.017323359847068787, -0.03283984959125519, 0.0282549187541008], [0.009873560629785061, -0.010966597124934196, 0.04589545354247093, -0.0213534627109766, -0.04265861585736275, 0.03207850456237793, -0.00859935861080885, 0.022331761196255684, -0.020556330680847168, -0.0047103227116167545, -0.000609926413744688, -0.005712775979191065, 0.060388751327991486, -0.027344027534127235, -0.017041705548763275, 0.024131344631314278, 0.013333836570382118, 0.026015475392341614, -0.03596753999590874, -0.007663332857191563, 0.02553236484527588, -0.004870352800935507, -0.030943196266889572, 0.006084166932851076, -0.021438006311655045, 0.004139649216085672, 0.0035176449455320835, -0.03968748822808266, 0.04434949904680252, -0.05811813473701477, 0.05314210057258606, -0.060388751327991486, 0.04567805305123329, 0.00692055094987154, -0.010688808746635914, -0.007143989205360413, -0.012729949317872524, 0.01894999109208584, 0.020544253289699554, -0.0268609169870615, -0.004520098213106394, 0.020785808563232422, 0.015169654972851276, 0.023092659190297127, 0.04203057289123535, -0.020749574527144432, 0.017645593732595444, -0.025121720507740974, 0.055171165615320206, -0.0006095489952713251, 0.0492047555744648, 0.012790338136255741, -0.01716248318552971, 0.019578034058213234, -0.027947913855314255, -0.01425174530595541, -0.0025348179042339325, 0.0017769390251487494, 0.06840837746858597, -0.016389507800340652, -0.02403472363948822, 0.0031704094726592302, -0.036281563341617584, 0.04248952493071556, 0.023756936192512512, -0.0036957915872335434, -0.007566710468381643, 0.026063784956932068, -0.06913304328918457, -0.043045103549957275, -0.04345574602484703, 0.04599207267165184, 0.05328703671693802, -0.07063068449497223, -0.055557653307914734, 0.0035297225695103407, -0.0464993380010128, -0.031088130548596382, -0.004740517120808363, -0.02335836924612522, -0.025411587208509445, 0.04860086739063263, -0.01867220178246498, 0.008991884998977184, 0.051306284964084625, -0.0482143796980381, -0.06778033822774887, 0.0031945649534463882, -0.005151160527020693, 0.025798074901103973, -0.03357614576816559, 0.008828835561871529, 0.018044158816337585, 0.039929043501615524, 0.019505567848682404, 0.014891866594552994, -0.0007318361895158887, -0.01655859686434269, -0.014372522942721844, 0.026450274512171745, -0.019119078293442726, -0.03405925631523132, 0.029228156432509422, 0.02035100944340229, 0.006358935497701168, -0.035484429448843, -0.002654085634276271, 0.03852802515029907, -0.010519720613956451, 0.012971503660082817, 0.00020928477169945836, -0.025170031934976578, 0.005262879654765129, 0.05135459452867508, -0.0029394226148724556, 0.013865257613360882, 0.032706547528505325, -0.043866388499736786, 0.008375920355319977, -0.015531986951828003, -0.011630874127149582, 0.027030006051063538, 0.05246574804186821, -0.07125873118638992, -0.008967730216681957, -0.005616154056042433, -0.015205888077616692, -0.00978297833353281, -0.033310435712337494, 0.04512247443199158, -0.004163804464042187, -0.08357803523540497, 0.0013217588420957327, 0.011449707671999931, 0.009003963321447372, 0.011926778592169285, -0.017174560576677322, -0.024735232815146446, -0.00574900908395648, 0.010151349008083344, 0.008200792595744133, 0.0014946216251701117, 0.002118135569617152, 0.015230043791234493, -0.057345159351825714, 0.004203057382255793, -0.0024910359643399715, 0.01605132967233658, 0.010839780792593956, -0.020157765597105026, -0.01613587513566017, 0.000435553869465366, -0.01820117048919201, -0.05918097868561745, 0.043721456080675125, 0.024880165234208107, 0.004728439263999462, 0.019928287714719772, -0.010857897810637951, -0.014734855853021145, -0.011932817287743092, -0.007747876923531294, 0.010398942977190018, 0.007759954780340195, 0.02886582352221012, -0.009861483238637447, 0.009831288829445839, 0.009426684118807316, -0.04985695332288742, -0.01820117048919201, -0.029228156432509422, -0.03275486081838608, -0.06140328198671341, -0.013720324262976646, -0.03147461637854576, -0.019759200513362885, 0.01417927909642458, 0.01619626395404339, -0.03343121334910393, 0.05135459452867508, -0.03727193921804428, -0.0010039630578830838, -0.028914134949445724, -0.01096055842936039, -0.025991318747401237, -0.004948858171701431, 0.011377240531146526, 0.013418381102383137, -0.005093791056424379, 0.024699000641703606, -0.02181241661310196, 0.007107756100594997, 0.013478769920766354, 0.036957915872335434, -0.04241706058382988, 0.030460087582468987, -0.011045102961361408, 0.026208719238638878, -0.014565766789019108, -0.004043026827275753, 0.011292696930468082, -0.037392716854810715, 0.05357690155506134, 0.055847518146038055, -0.06449519097805023, 0.013575391843914986, 0.012101906351745129, 0.025025099515914917, 0.03265823796391487, -0.024831855669617653, 0.04804529249668121, -0.05290054902434349, -0.04768295958638191, 0.04287601262331009, -0.02439705654978752, 0.01350292470306158, 0.0136116249486804, 0.00042121156002394855, -0.043576523661613464, 0.015640687197446823, -0.017247028648853302, -0.00961992796510458, -0.015374976210296154, -0.022416304796934128, 0.014928099699318409, 0.020121531561017036, 0.047079071402549744, -0.017222872003912926, 0.010537837632000446, -0.030097754672169685, 0.003584072459489107, 0.04106435179710388, -0.007965276017785072, 0.0010817134752869606, 0.004957916680723429, 0.028382712975144386, -0.003617286216467619, -0.0605819970369339, 0.03852802515029907, -0.00031081336783245206, -0.00035629363264888525, -0.017621437087655067, 0.00022230610193219036, -0.02095489762723446, 0.008400075137615204, -0.02879335731267929, -0.0018780902028083801, -0.018080392852425575, 0.04806944727897644, 0.032634083181619644, 0.015978863462805748, -0.0011209662770852447, 0.045943763107061386, -0.09391658753156662, 0.03050839714705944, -0.003167390124872327, 0.000782789196819067, -0.0258222296833992, 0.02095489762723446, -0.03316550329327583, 0.012935270555317402, -0.005567843094468117, -0.025049254298210144, 0.015266276895999908, -0.04053293168544769, -0.009293829090893269, -0.003584072459489107, -0.024384979158639908, -0.04309341311454773, 0.055847518146038055, -0.06893979758024216, -0.016655217856168747, 0.03968748822808266, 0.021715795621275902, -0.03043593093752861, 0.019698811694979668, -0.010670692659914494, -0.022331761196255684, 0.007971315644681454, 0.03343121334910393, -0.04823853448033333, 0.013309680856764317, -0.03765842691063881, -0.04775542393326759, -0.008406114764511585, 0.01698131673038006, 0.01235553901642561, 0.03401094675064087, -0.0282136257737875, 0.05541272088885307, 0.0777323991060257, -0.035315342247486115, -0.0061505944468081, -0.04094357416033745, 0.04761049151420593, 0.01443291176110506, 0.010972636751830578, -0.021595017984509468, -0.029059067368507385, -0.012585015967488289, -0.0018765805289149284, 0.012403849512338638, 0.04604038596153259, -0.056427251547575, -0.023720702156424522, 0.038431402295827866, 0.003002830781042576, 0.0557992085814476, 0.02250084839761257, 0.008605397306382656, -0.02266993746161461, 0.022899415343999863, -0.01469862274825573, -0.061354972422122955, -0.020399320870637894, -0.029373088851571083, -0.02378109097480774, 0.018998300656676292, 0.029010755941271782, 0.017754293978214264, 0.02217474952340126, 0.03415587916970253, 0.019034534692764282, -0.03466314449906349, -0.029276467859745026, 0.0005382147501222789, 0.05314210057258606, 0.03816569223999977, -0.014420834369957447, -0.01931232400238514, -0.040001511573791504, -0.013394225388765335, 0.06096848472952843, -0.007542555220425129, 0.04688582569360733, 0.03273070231080055, 0.022899415343999863, 0.032634083181619644, 0.004293640144169331, 0.022609548643231392, 0.0544464997947216, -0.03652311861515045, -0.018551424145698547, 0.002676731441169977, -0.0013942252844572067, -0.028696734458208084, 0.05178939551115036, 0.06304585933685303, 0.016365351155400276, -0.0010953010059893131, -0.030677486211061478, 0.0068058124743402, -0.01670352928340435, -0.007542555220425129, -0.011443668976426125, -0.019433099776506424, 0.018587658181786537, 0.01827363669872284, 0.00818871520459652, 0.013599546626210213, 3.493583790259436e-05, 0.031667862087488174, 0.018430646508932114, 0.007180222775787115, 0.058746177703142166, -0.009275712072849274, 0.0010703906882554293, -0.022367993369698524, 0.05855293571949005, -0.035484429448843, 0.01588224247097969, 0.009348179213702679, 0.018104547634720802, 0.021945273503661156, -0.0371994711458683, -0.019034534692764282, 0.06937459856271744, 0.01619626395404339, -0.018503114581108093, 0.010761275887489319, 0.02632949687540531, -0.008653707802295685, -0.02642611786723137, 0.04273108020424843, -0.00551651231944561, -0.027271561324596405, -0.07468880712985992, 0.022790715098381042, 0.019553877413272858, -0.018080392852425575, 0.052948858588933945, -0.003777316538617015, -0.007651255000382662, 0.026015475392341614, -0.026305340230464935, -0.015459520742297173, 0.06560634076595306, 0.038576334714889526, -0.02485601045191288, 0.028261935338377953, 0.0008560105925425887, -0.03490469977259636, 0.020145688205957413, 0.024481600150465965, -0.014976410195231438, -0.023805245757102966, -0.0068058124743402, 0.019433099776506424, -0.015157576650381088, -0.018575580790638924, 0.01802000403404236, -0.01942102238535881, 0.06642762571573257, 0.010924325324594975, 0.02553236484527588, -0.025653142482042313, -0.05937422066926956, 0.04896320030093193, -0.013140592724084854, -0.04456689953804016, 0.015302510000765324, 0.05169277265667915, 0.01881713606417179, 0.014795244671404362, -0.06599283218383789, 0.01934855617582798, 0.004233251325786114, -0.01709001697599888, 0.005591998342424631, -0.04562973976135254, 0.03480807691812515, -0.02349122427403927, -0.022525005042552948, 0.004344970919191837, -0.027295716106891632, -0.006691073998808861, 0.008363842032849789, 0.04205472767353058, -0.055026233196258545, -0.042755234986543655, -0.02266993746161461, 0.0013293074443936348, 0.01927608996629715, -0.005561803933233023, -0.02049594186246395, 0.029638798907399178, -0.012464238330721855, 0.0006431402289308608, -0.05290054902434349, 0.02492847666144371, -0.006467635277658701, -0.011208152398467064, -0.0799063965678215, 0.024880165234208107, -0.029421400278806686, 0.018648047000169754, -0.02589469775557518, -0.02611209638416767, 0.05178939551115036, -0.00044536704081110656, -0.010254010558128357, 0.04166823998093605, 0.051837705075740814, 0.0378275141119957, -0.00790488813072443, 0.03823815658688545, -0.02782713808119297, -0.0004906586254946887, 0.03222343698143959, 0.005166257731616497, 0.002725042402744293, -0.014855633489787579, 0.005884883925318718, -0.03789998218417168, 0.02925231121480465, 0.03432496637105942, 0.0011987166944891214, -0.05613738298416138, -0.017947537824511528, -0.05058161914348602, 0.013031892478466034, 0.019215701147913933, -0.0389145128428936, -0.02990451082587242, 0.039542555809020996, 0.013454614207148552, 0.02299603633582592, 0.005431968253105879, -0.058601245284080505, -0.005764106288552284, 0.004471787251532078, 0.041571617126464844, -0.005667484365403652, -0.011226269416511059, -0.00019664087449200451, 0.014626155607402325, -0.045798830687999725, -0.0026555953081697226, 0.026377806439995766, -0.01838233694434166, -0.03253746032714844, -0.057924892753362656, 0.025025099515914917, 0.000995659502223134, 0.032247595489025116, 0.016329118981957436, 0.029421400278806686, -0.0216674841940403, 0.015580298379063606, -0.010175504721701145, 0.0032006038818508387, 0.023503301665186882, -0.009885638952255249, -0.014577845111489296, -0.03773089125752449, -0.02514587715268135, -0.015024721622467041, 0.007874693721532822, -0.013515003025531769, 0.022162672132253647, 0.014565766789019108, -0.03572598472237587, -0.006358935497701168, -0.01752481609582901, -0.018503114581108093, 0.008381959050893784, -0.002862426917999983, -0.06304585933685303, -0.0021770144812762737, 0.03555689752101898, 0.020266465842723846, -0.05700698122382164, -0.02399848960340023, 0.02917984500527382, 0.010682770051062107, -0.005691640079021454, -0.025435741990804672, -0.0016516323667019606, -0.01276618242263794, -0.05270730331540108, 0.04137837141752243, 0.011039064265787601, -0.00755463307723403, 0.002492545871064067, 0.003520664293318987, -0.005637289956212044, -0.0038075109478086233, -0.00035704849869944155, 0.0087805250659585, 0.03942177817225456, -0.005235705059021711, 0.013575391843914986, -0.025435741990804672, -0.024699000641703606, 0.018297791481018066, -0.01802000403404236, -0.00021192677377257496, -0.04734478145837784, 0.04705491662025452, -0.028600113466382027, 0.00399773521348834, 0.03847971186041832, 0.014746933244168758, -0.014239667914807796, 0.05512285232543945, 0.008720136247575283, 0.003215701086446643, 0.025121720507740974, -0.04422872141003609, -0.02317720279097557, 0.00632874108850956, 0.037102848291397095, -0.008569164201617241, -0.014336289837956429, 0.0413542166352272, 0.04113681986927986, -0.030025288462638855, 0.0015059445286169648, 0.028165314346551895, -8.218531729653478e-05, 0.014457067474722862, 0.02388979122042656, -0.014734855853021145, 0.012270994484424591, -0.002974146045744419, 0.011244385503232479, -0.02603963017463684, -0.008913380093872547, -0.002528778975829482, 0.011026985943317413, 0.018648047000169754, 0.009179090149700642, 0.017838837578892708, 0.0030919041018933058, 0.008949613198637962, 0.013623702339828014, 0.010471410118043423, -0.005899981129914522, 0.03604000806808472, -0.015230043791234493, 0.010036610998213291, 0.012548782862722874, -0.0028790337964892387, -0.01834610290825367, -0.033093035221099854, 0.005030382890254259, 0.016860539093613625, 0.02442121133208275, 0.007886771112680435, 0.04466352239251137, 0.02281486988067627, 0.02514587715268135, 0.030460087582468987, -0.050340063869953156, -0.016280807554721832, 0.0136116249486804, -0.0230685044080019, -0.026546895503997803, -0.02804453670978546, 0.023515380918979645, -0.03826231509447098, 0.017645593732595444, 0.00586676737293601, 0.0014017738867551088, -0.030339309945702553, -0.007421777583658695, -0.008381959050893784, -0.037006229162216187, -0.01923985593020916, -0.00861747469753027, -0.012645404785871506, 0.03797244653105736, 0.01792338117957115, -0.01684846170246601, 0.021413851529359818, -0.041716549545526505, 0.021860728040337563, 0.009384412318468094, 0.005142102483659983, -5.626061465591192e-06, 0.01942102238535881, 0.011685223318636417, 0.0022706170566380024, -0.021450085565447807, 0.010181543417274952, 0.027368182316422462, 0.01566484197974205, 0.035895075649023056, -0.002103038365021348, 0.008840912953019142, -0.008846952579915524, 0.013188903219997883, 0.006050953175872564, -0.021160218864679337, 0.0024683901574462652, 0.011793923564255238, -0.03480807691812515, 0.03405925631523132, 0.04036384075880051, 0.023128891363739967, 0.019928287714719772, 0.04396301135420799, -0.01863596960902214, 0.036571428179740906, -0.011576524004340172, -0.015785619616508484, 0.01920362375676632, 0.0025016041472554207, -0.001127759926021099, -0.019735043868422508, 0.022730326279997826, 0.018140781670808792, 0.01155236829072237, -0.04381807893514633, -0.0004793357220478356, -0.015242121182382107, -0.042755234986543655, 0.016570674255490303, -0.05710360407829285, -0.02106359601020813, -0.03289979323744774, -0.028382712975144386, 0.009565578773617744, -0.008961690589785576, -0.01369616948068142, -0.00675146235153079, 0.040146443992853165, -0.004323834553360939, -0.002792979823425412, 0.015459520742297173, -0.010362709872424603, 0.03103981912136078, -0.006050953175872564, -0.016715606674551964, -0.02529080957174301, 0.008466502651572227, -0.03362445905804634, -0.031160596758127213, -0.0051481411792337894, -0.06227288022637367, 0.02056840993463993, -0.031667862087488174, 0.003765238681808114, -0.026160407811403275, -0.031885262578725815, -0.00363540300168097, -0.024409133940935135, 0.012717870995402336, 0.05739346891641617, 0.031595394015312195, -0.020326854661107063, -0.01410681288689375, -0.038358934223651886, -0.020218154415488243, -0.042513683438301086, 0.017138328403234482, -0.02124476246535778, -0.010984714142978191, 0.001288544968701899, 0.013490847311913967, -0.00539271580055356, 0.03488054499030113, -0.02768220379948616, -0.0026480467058718204, 0.0043600681237876415, -0.003873938461765647, 0.005619173403829336, 0.003608227940276265, 0.010580109432339668, 0.0006918286671862006, 0.04120928421616554, -0.008659747429192066, -0.0012945838971063495, 0.0024472542572766542, -0.008714096620678902, 0.008321570232510567, -0.05082317441701889, -0.0230685044080019, -0.012204566970467567, -0.00944480113685131, 0.002857897663488984, -0.013937723822891712, 0.009142857044935226, -0.014215512201189995, -0.03705453872680664, -0.03514625504612923, 0.004018871579319239, 0.0031009623780846596, -0.01695716194808483, 0.020858274772763252, 0.002160407602787018, 0.00692055094987154, 0.004456690046936274, -0.022416304796934128, -0.002918286481872201, -0.019119078293442726, 0.012035478837788105, 0.030266841873526573, -0.021619172766804695, 0.027706360444426537, -0.011220229789614677, 0.0246023777872324, -0.0019324400927871466, 0.07043743878602982, 0.006144555751234293, -0.02835855819284916, -0.02983204461634159, -0.009094546549022198, 0.017536893486976624, 0.01484355516731739, 0.007935082539916039, 0.013394225388765335, 0.04142668470740318, 0.0059905643574893475, 0.01605132967233658, -0.0023264766205102205, 0.002957539167255163, -0.010471410118043423, -0.03227175027132034, -0.04376976937055588, 0.020157765597105026, 0.005480279214680195, 0.03369692340493202, -0.008448386564850807, 0.03748933598399162, -0.02835855819284916, -0.0012070202501490712, 0.019650500267744064, 0.009891677647829056, -0.004658992402255535, -0.007874693721532822, -0.007886771112680435, -0.016329118981957436, -0.019928287714719772, 0.03079826384782791, 0.025991318747401237, 0.01759728230535984, -0.02038724347949028, -0.03913191333413124, -0.016969239339232445, -0.012343460693955421, 0.01047744881361723, -0.02553236484527588, -0.030266841873526573, 0.09198414534330368, 0.004118512850254774, -0.0020985091105103493, 0.009076429530978203, -0.022609548643231392, -0.0018660124624148011, -0.029493866488337517, 0.030556708574295044, -0.033310435712337494, 0.023044347763061523, 0.02828609198331833, -0.02664351835846901, 0.02295980416238308, -0.0036474806256592274, -0.0029288544319570065, 0.020218154415488243, 0.03422834351658821, -0.035605207085609436, -0.02217474952340126, 0.009873560629785061, -0.001055293483659625, -0.003973579965531826, 0.03275486081838608, -0.011757690459489822, -0.0025423665065318346, 0.024723155423998833, 0.011111530475318432, -0.02109983004629612, -0.003439139574766159, -0.01881713606417179, -0.0040520853362977505, -0.00755463307723403, 0.021788261830806732, -0.0194572564214468, -0.02678845077753067, -0.008061898872256279, 0.022476693615317345, -0.011757690459489822, -0.013490847311913967, -0.032175127416849136, -0.036426495760679245, 0.027344027534127235, 0.001742215477861464, 0.009438762441277504, -0.06309416890144348, 0.02109983004629612, 0.020181920379400253, -0.025411587208509445, 0.0013640309916809201, -0.028165314346551895, 0.021438006311655045, 0.0272232498973608, -0.004985091742128134, -0.027633892372250557, -0.012270994484424591, -0.02908322401344776, -0.020520098507404327, 0.010489526204764843, 0.0018962068716064095, -0.04219966009259224, 0.00568560091778636, -0.010531798005104065, 0.04106435179710388, -0.028092848137021065, 0.058456312865018845, 0.0017271182732656598, -0.011600679717957973, 0.004637856036424637, -0.0023793168365955353, 0.009662200696766376, -0.0060600112192332745, 0.007916965521872044, -0.01626873016357422, -0.010187582112848759, 0.04485676437616348, 0.019892055541276932, -0.020652953535318375, 0.03190941736102104, -0.022983958944678307, -0.001091526704840362, 0.006304585840553045, -0.007669371552765369, -0.02363615855574608, 0.0653647854924202, 0.024831855669617653, 0.024445367977023125, 0.00944480113685131, 0.04879411309957504, 0.030387619510293007, 0.019336478784680367, 0.0038226081524044275, -0.032030194997787476, 0.002303830813616514, 0.005745989736169577, -0.0009896206902340055, 0.015713153406977654, 0.020580487325787544, 0.007941121235489845, 0.030025288462638855, -0.026136253029108047, -0.03637818619608879, 0.005441026762127876, -0.008472542278468609, -0.007735799066722393, 0.03014606609940529, -0.026474429294466972, 0.05014682188630104, -0.005117946770042181, 0.0026254011318087578, -0.05705529451370239, -0.01541120931506157, 0.008635591715574265, -0.0258222296833992, 0.024300433695316315, 0.03686129301786423, 0.0041970182210206985, -0.006715229246765375, -0.018539346754550934, 0.034783922135829926, 0.008647669106721878, 0.005253821611404419, -0.0030873750802129507, -0.05594414100050926, 0.023732779547572136, -0.011522173881530762, -0.007083600852638483, 0.0053413850255310535, 0.047296471893787384, 0.04362483322620392, 0.04985695332288742, 0.01874466799199581, -0.023720702156424522, -0.00463181734085083, -0.001409322489053011, 0.006120400037616491, -0.011932817287743092, 0.037392716854810715, -0.0021860727574676275, 0.00879864115267992, -0.03833477944135666, 0.02835855819284916, -0.03239252790808678, -0.021474240347743034, 0.00450500100851059, 0.015423287637531757, 0.013309680856764317, -0.004595584236085415, 0.003288167528808117, 0.008720136247575283, -0.009837327525019646, -0.014372522942721844, -0.011703340336680412, 0.026063784956932068, -0.0032730703242123127, -0.0003013776149600744, 0.02157086320221424, 0.029807887971401215, -0.025025099515914917, -0.02224721573293209, -0.039035290479660034, 0.053528591990470886, 0.02843102440237999, -0.022295527160167694, 0.0064857518300414085, 0.040218908339738846, 0.03147461637854576, -0.018213247880339622, -0.031522929668426514, 0.009384412318468094, 0.023020192980766296, -0.00035572750493884087, -0.041257597506046295, 0.047296471893787384, 0.005954330787062645, 0.03207850456237793, 0.033745236694812775, 0.0022374032996594906, 0.01265748217701912, 0.008859029971063137, 0.013273447751998901, -0.004803925286978483, 0.035750143229961395, -0.016655217856168747, -0.01971088908612728, 0.0011556897079572082, -0.000177580674062483, 0.015568220056593418, 0.02485601045191288, 0.04705491662025452, 0.0258222296833992, -0.019771277904510498, 0.009408568032085896, 0.02693338319659233, 0.0029409322887659073, 0.038817889988422394, 0.0334070585668087, 0.019433099776506424, 0.005277976859360933, 1.0526749974815175e-05, -0.025943007320165634, -0.009710511192679405, 0.005422910209745169, 0.016534440219402313, 0.05521947517991066, -0.000546140770893544, -0.03335874527692795, 0.02514587715268135, -0.0021543686743825674, -0.02425212226808071, -0.01566484197974205, -0.013200981542468071, -0.035532742738723755, 0.008212869986891747, -0.04509831964969635, -0.016788072884082794, 0.038358934223651886, -0.014529533684253693, 0.005848650820553303, 0.02352745831012726, -0.026377806439995766, -0.011950934305787086, 0.0044989618472754955, 0.017573127523064613, 0.002421588869765401, 0.02657105028629303, 0.03316550329327583, -0.010042649693787098, 0.026232874020934105, -0.01224683877080679, 0.02088243141770363, -0.0001266276667593047, 0.011341007426381111, 0.01008492149412632, -0.007264766842126846, -0.014481223188340664, 0.04761049151420593, 0.011576524004340172, -0.015048877336084843, -0.018974145874381065, 0.023382525891065598, 0.012621249072253704, 0.007615021895617247, 0.03707869350910187, 0.029373088851571083, -0.002252500504255295, 0.012295150198042393, 0.011491979472339153, 0.03164370730519295, -0.01723494939506054, -0.02500094287097454, -0.009058312512934208, -0.03161955252289772, -0.013213058933615685, -0.025918852537870407, -0.00023155311646405607, -0.005993583705276251, 0.006811851169914007, -0.007222495041787624, -0.0051753162406384945, 0.001829779241234064, -0.018249481916427612, -0.018116625025868416, -0.02632949687540531, 0.023648235946893692, 0.019698811694979668, 0.01570107601583004, -0.011793923564255238, 0.025773920118808746, -0.010471410118043423, 0.06478505581617355, 0.009016040712594986, 0.010326476767659187, -0.03594338521361351, -0.036354027688503265, -0.004465748090296984, 0.003001321107149124, 0.010356671176850796, 0.0282136257737875, 0.0003770522598642856, -0.032923948019742966, -0.03497716411948204, 0.005374598782509565, -0.01265748217701912, -0.01074919756501913, -0.014312134124338627, -0.012452160939574242, -0.015544065274298191, 0.03915606811642647, 0.03103981912136078, -0.002356671029701829, -0.024686921387910843, 0.01770598255097866, -0.0005944517906755209, 0.005459143314510584, -0.0030919041018933058, -0.002192111685872078, -0.006630685180425644, 0.0007167389849200845, -0.014082657173275948, -0.0026359690818935633, 0.028455181047320366, -0.0025061331689357758, 0.016884695738554, -0.0213534627109766, 0.04531572014093399, 0.013937723822891712, 0.01602717489004135, 0.027295716106891632, 0.024227967485785484, 0.00228873360902071, 0.05483298748731613, 0.008001510053873062, -0.001955085899680853, 0.01242800522595644, -0.021522551774978638, 0.03154708445072174, -0.03260992467403412, -0.02521834336221218, -3.963011840824038e-05, 0.006944706663489342, 0.04195810481905937, 0.005884883925318718, -0.025025099515914917, 0.05082317441701889, -0.01766974851489067, 0.031088130548596382, -0.004435553681105375, -0.024880165234208107, -0.007759954780340195, -0.016111718490719795, 0.006123419385403395, -0.006352896802127361, 0.018116625025868416, -0.0235636904835701, 0.006141535937786102, -0.014469144865870476, -0.00043177956831641495, 0.0017588224727660418, 0.000867333437781781, 0.01809247024357319, -0.009698433801531792, 0.041185129433870316, -0.014710700139403343, 0.09657369554042816, 0.003448197850957513, -0.019445179030299187, -0.014239667914807796, 0.023974334821105003, 0.006358935497701168, -0.01525419857352972, -0.0023340252228081226, -0.0017497640801593661, 0.02432459034025669, -0.0035508587025105953, 0.02603963017463684, 0.007916965521872044, 0.03884204477071762, 0.02210228331387043, -0.008321570232510567, 0.03698207065463066, 0.041716549545526505, 0.01655859686434269, 0.006171730346977711, -0.006081147585064173, -0.005531609524041414, 0.003532741917297244, 0.019010379910469055, 0.006860162131488323, -0.02507341094315052, 0.001136063365265727, -0.00399773521348834, -0.029735421761870384, 0.00931798480451107, 0.010519720613956451, 0.0024683901574462652, -0.02359992451965809, 0.009420645423233509, -0.010525759309530258, -0.01659482903778553, -0.034711454063653946, -0.01766974851489067, 0.027368182316422462, 0.016244573518633842, -0.03036346472799778, 0.03480807691812515, -0.005776184145361185, 0.0008809209102764726, 0.014722777530550957, -0.013973956927657127, -0.02467484399676323, -0.01466238871216774, 0.011564445681869984, -0.004172862973064184, 0.0242883563041687, 0.0009450839716009796, -0.030411776155233383, -0.03418003395199776, -0.027923759073019028, 0.024880165234208107, 0.016510285437107086, -0.006823929026722908, -0.02514587715268135, 0.020157765597105026, -0.005308171268552542, -0.010936402715742588, -0.03287563845515251, 0.046909984201192856, 0.005664465017616749, 0.010024532675743103, -0.02217474952340126, 0.0018478957936167717, 0.011570485308766365, 0.024119267240166664, -0.006407246459275484, 0.00363540300168097, -0.008949613198637962, -0.02277863770723343, -0.016184186562895775, 0.04009813070297241, -0.01265748217701912, 0.013853180222213268, -0.024336667731404305, 0.016437819227576256, -0.019867898896336555, -0.01802000403404236, 0.050726551562547684, 0.0015474618412554264, -0.033068880438804626, 0.010694848373532295, 0.011111530475318432, 0.01637743040919304, 0.004212115425616503, 0.016365351155400276, -0.011594640091061592, -0.04338328167796135, -0.020930740982294083, -0.007886771112680435, 0.027271561324596405, 0.0004166823928244412, -0.01716248318552971, -0.02228344976902008, -0.0059030004777014256, -0.017875071614980698, 0.013237214647233486, -0.0055044349282979965, 0.004544253461062908, 0.00721645588055253, -0.002942441962659359, -0.03142630681395531, 0.009227401576936245, -0.023986412212252617, 0.0161600299179554, -0.01863596960902214, -0.01369616948068142, -0.00020418947678990662, 0.04183732718229294, 0.0016274768859148026, -0.0177422147244215, -0.036064162850379944, 0.021595017984509468, -0.013889413326978683, 0.0017452349420636892, 0.03459067642688751, -0.013104359619319439, 0.009118701331317425, 0.018140781670808792, 0.006195886060595512, 0.016896773129701614, 0.005413851700723171, 0.001092281541787088, 0.03587092086672783, 0.031063973903656006, -0.011383280158042908, 0.01103302463889122, 0.010900169610977173, 0.03236837312579155, -0.04147499427199364, 0.01149801816791296, -0.012403849512338638, -0.03715116158127785, 0.02635365165770054, 0.00915493443608284, -0.014348367229104042, 0.0008446876890957355, 0.037996601313352585, 0.007814304903149605, -0.012826571241021156, -0.02009737677872181, 0.021148141473531723, 0.004556331317871809, -0.03343121334910393, 0.012814492918550968, 0.008816758170723915, -0.025194186717271805, -0.0072526889853179455, -0.02038724347949028, -0.016329118981957436, 0.054591432213783264, 0.0023823361843824387, 0.017210794612765312, -0.004341951105743647, 0.035750143229961395, 0.005163238383829594, -0.019010379910469055, 0.00016446498921141028, -0.013466691598296165, -0.04084695130586624, -0.01500056590884924, 0.00020192489319015294, -0.0015987922670319676, 0.01670352928340435, -0.03111228533089161, -0.03816569223999977, 0.015761464834213257, -0.00013908284017816186, 0.03065333142876625, 0.008104170672595501, 0.0014734856085851789, 0.004133610054850578, -0.002397433388978243, 0.038358934223651886, -0.04004982113838196, -0.02700584940612316, 0.026474429294466972, -0.019469333812594414, 0.01580977626144886, -0.0021045480389147997, -0.005755048245191574, 0.016836384311318398, 0.013829024508595467, -0.008551047183573246, 0.0023355348967015743, -0.025194186717271805, 0.006872239988297224, 0.01562860980629921, -0.004027929622679949, -0.01559237577021122, 0.006449518725275993, -0.07241819053888321, 0.0025876581203192472, 0.003608227940276265, 0.02611209638416767, 0.014082657173275948, 0.03751349449157715, 0.0038860163185745478, -0.003203623229637742, 0.0029197961557656527, -0.006558218505233526, -0.03454236686229706, 0.015821853652596474, -0.019698811694979668, 0.007343272212892771, -0.026377806439995766, 0.05333534628152847, 0.012403849512338638, -0.03058086521923542, 0.037102848291397095, -0.0043117571622133255, -0.027851292863488197, 0.018104547634720802, 0.025339120998978615, 0.009414606727659702, -0.01599094085395336, -0.02693338319659233, -0.01019362173974514, 0.04664427414536476, -0.010912247933447361, 0.01106925867497921, 0.016908850520849228, -0.00887110736221075, 0.0022977921180427074, 0.0216674841940403, -0.010350632481276989, -0.00346027547493577, -0.009867521934211254, 0.03149877488613129, 0.0015233062440529466, -0.029856199398636818, -0.009481034241616726, -0.0007699566194787621, -0.012476316653192043, -0.0022177768405526876, 0.006685034837573767, -0.0032368372194468975, 0.004655973054468632, -0.004553311970084906, -0.035170409828424454, -0.02545989863574505, 0.028141159564256668, -0.05319041386246681, -0.012252877466380596, 0.014746933244168758, -0.012023400515317917, -0.010882053524255753, -0.016087563708424568, -0.012778259813785553, 0.006078127771615982, -0.014807322062551975, -0.019662577658891678, 0.03007359802722931, 0.013961879536509514, 0.029807887971401215, -0.02657105028629303, 0.025628985837101936, -0.04091941937804222, -0.002962068421766162, 0.010332515463232994, -0.015676919370889664, 0.030411776155233383, 0.016800150275230408, 0.0009979241294786334, -0.01425174530595541, -0.010809586383402348, -0.011365163139998913, 0.032779015600681305, -0.012790338136255741, 0.010725042782723904, -0.030049443244934082, -0.024191733449697495, -0.030991507694125175, 0.004743536468595266, 0.019010379910469055, -0.018189093098044395, 0.006232119165360928, 0.04227212816476822, 0.0039041328709572554, -0.01573730818927288, 0.006491790991276503, 0.005996603053063154, -0.009450839832425117, -0.020471787080168724, 0.004643895197659731, 0.00393432704731822, 0.03763427212834358, -0.005794300697743893, 0.02157086320221424, 0.020302698016166687, -0.012095866724848747, 0.045726362615823746, -0.00014785808161832392, 0.0061838082037866116, 0.001817701500840485, -0.010048688389360905, -0.05705529451370239, -0.01806831546127796, 0.00603585597127676, -0.012343460693955421, -0.02173995040357113, 0.005410832352936268, 0.024807699024677277, -0.006769579369574785, -0.005021324846893549, -0.012403849512338638, 0.004556331317871809, 0.0037591997534036636, 0.0019973579328507185, 0.017971692606806755, 0.034783922135829926, -0.009933949448168278, -0.016256652772426605, -0.03316550329327583, 0.023624079301953316, 0.033068880438804626, 0.02281486988067627, 0.010090960189700127, 0.008961690589785576, -0.01613587513566017, 0.0180562362074852, 0.005673523526638746, 0.004320815205574036, -0.007693527266383171, 0.02073749713599682, 0.00011841856758110225, -0.013744479976594448, -0.018430646508932114, -0.03065333142876625, -0.03246499225497246, 0.017947537824511528, 0.0012900547590106726, 0.00040271750185638666, -0.007645216304808855, -0.0006469145300798118, -0.017657671123743057, -0.02746480517089367, 0.023382525891065598, -0.034566521644592285, 0.015544065274298191, 0.009722589515149593, 0.021329307928681374, -0.019396867603063583, 0.01695716194808483, 0.017102094367146492, 0.012270994484424591, 0.026401963084936142, -0.003665597178041935, -0.02146216295659542, -0.006570296362042427, 0.0029726363718509674, -0.0012258916394785047, -0.010930364020168781, 0.03867295756936073, 0.01870843581855297, -0.008375920355319977, 0.0006204944220371544, 0.01265748217701912, -0.019070768728852272, -0.0054983957670629025, 0.014312134124338627, 0.04459105432033539, -0.03229590505361557, 0.039325155317783356, -0.01684846170246601, 0.02049594186246395, -0.003889035666361451, -0.012150216847658157, 0.017077939584851265, 0.016208341345191002, -0.009058312512934208, -0.05879449099302292, 0.0022177768405526876, 0.005706737283617258, -0.04094357416033745, -0.010151349008083344, 0.015278354287147522, -0.02246461622416973, 0.010272126644849777, -0.023612001910805702, 0.03311719372868538, -0.008563125506043434, 0.028986601158976555, 0.0071137952618300915, 0.01984374411404133], [0.02446603961288929, 0.012066961266100407, 0.056061550974845886, 0.01917429082095623, -0.03389819711446762, 0.035226669162511826, -0.03863641619682312, 0.019506407901644707, -0.01507816556841135, 0.06363384425640106, -0.0010752326343208551, 0.00868489034473896, 0.03850356861948967, 0.017845816910266876, -0.051500461995601654, -0.0019041443010792136, 0.004843390081077814, 0.04401673004031181, -0.007555688731372356, -0.010926688089966774, 0.04255541041493416, 0.04702793434262276, -0.055397313088178635, -0.0297577902674675, -0.018521124497056007, -0.024421757087111473, -0.002816085470840335, -0.03141837939620018, 0.08019547164440155, -0.08781205117702484, 0.03965491056442261, -0.03686511889100075, 0.009515185840427876, -0.02780936285853386, -0.0013692956417798996, 0.014480353333055973, 0.0019553457386791706, -0.02836289256811142, 0.021488046273589134, 0.0247538760304451, -0.00021933639072813094, 0.021764812991023064, -0.0033820702228695154, 0.027145126834511757, -0.01572026126086712, 0.05375886335968971, 0.0073674884624779224, -0.045832309871912, 0.00861846748739481, -0.00862953718751669, 0.05114620178937912, 0.06482946872711182, -0.004173618741333485, -0.015919532626867294, 0.006371133960783482, -0.02113378793001175, 0.002060516504570842, 0.012033749371767044, 0.016871603205800056, -0.025816654786467552, -0.020513834431767464, -0.023403262719511986, -0.007766030263155699, -0.011098282411694527, 0.01181233674287796, 0.015731330960989, -0.002583602676168084, 0.00657040486112237, -0.023004719987511635, -0.06491803377866745, 0.005073105450719595, 0.05331604182720184, 0.03144052252173424, -0.03268042951822281, -0.003816591575741768, 0.012000537477433681, -0.021720530465245247, 0.004087821580469608, 0.008452408015727997, 0.014203587546944618, -0.042201150208711624, 0.010428511537611485, -0.023978933691978455, -0.020746316760778427, 0.007461588829755783, -0.006033480633050203, -0.0634567141532898, -0.0297577902674675, 0.008397054858505726, -0.026193054392933846, -0.005217023193836212, -0.008552043698728085, -0.0550430528819561, 0.022440118715167046, 0.015653837472200394, -0.0007631799089722335, 0.05402455851435661, -0.032193321734666824, -0.017270145937800407, 0.03739650920033455, -0.019949233159422874, -0.04439312964677811, -0.030909132212400436, 0.026237336918711662, -0.01175698358565569, -0.03159550949931145, 0.0022667066659778357, 0.07483729720115662, 0.03947778046131134, -0.021100575104355812, 0.015919532626867294, -0.02572808973491192, -0.012089102528989315, 0.04011987894773483, -0.03274685516953468, -0.010439582169055939, -0.009814092889428139, -0.026923714205622673, 0.03713081404566765, -0.02417820505797863, -0.03571377694606781, 0.022063719108700752, 0.04645226523280144, -0.04290967062115669, 0.016318073496222496, -0.024908864870667458, 0.011900901794433594, 0.005648776888847351, -0.05101335421204567, -0.007223570719361305, 0.0453009195625782, -0.05570729076862335, 0.05964842811226845, -0.020358845591545105, -0.017867958173155785, -0.013218304142355919, 0.012819762341678143, -0.03212689980864525, 0.026060206815600395, 0.0010780002921819687, 0.053581733256578445, -0.0015803290298208594, -0.032436877489089966, 0.025462394580245018, -0.061065465211868286, 0.025395970791578293, 0.005399688147008419, 0.0188975241035223, 0.013661128468811512, -0.04096124321222305, 0.0027718031778931618, 0.02335898019373417, -0.002928175264969468, 0.0026860057841986418, 0.039699193090200424, 0.04614228755235672, 0.02030349150300026, 0.027012279257178307, 0.001570642227306962, 0.010046575218439102, -0.03628944605588913, -0.036887262016534805, 0.009005938656628132, -0.003135749138891697, 0.010024433955550194, 0.005668150261044502, 0.00518104387447238, 0.034540291875600815, -0.02780936285853386, -0.03611231967806816, -0.03451814875006676, -0.03863641619682312, -0.03686511889100075, -0.012487644329667091, -0.01131969504058361, -0.04492451995611191, 0.061198312789201736, 0.026591597124934196, -0.012841903604567051, 0.023823944851756096, -0.023934651166200638, 0.022916154935956, -0.11017467081546783, -0.018011877313256264, -0.009531792253255844, 0.041226938366889954, 0.0033765349071472883, 0.007550153415650129, -0.06128687784075737, 0.01493424829095602, -0.002445220248773694, -0.027875786647200584, -0.02278330735862255, -0.007013229187577963, -0.02058025635778904, 0.01792331226170063, -0.0127090560272336, -0.014889965765178204, 0.011092747561633587, -0.01877574808895588, 0.028872141614556313, -0.04738219454884529, 0.02195301279425621, 0.007140540983527899, -0.02346968464553356, 0.007400700356811285, -0.013838257640600204, 0.016473062336444855, 0.019849596545100212, -0.04040771350264549, 0.011020788922905922, -0.028827859088778496, -0.023558249697089195, 0.017126228660345078, 0.0004964474937878549, 0.0035896440967917442, 0.004887672606855631, 0.029381388798356056, 0.02083488181233406, 0.038569994270801544, -0.05269608646631241, -0.013716481626033783, 0.0075003355741500854, -0.020502762869000435, -0.030953414738178253, -0.026635879650712013, 0.026237336918711662, -0.03987632319331169, -0.007544618099927902, -0.07368595898151398, -0.01507816556841135, 0.024532463401556015, -0.0019636487122625113, -0.015797754749655724, -0.004085053689777851, -0.013971105217933655, 0.027322256937623024, -0.022030506283044815, 0.024222487583756447, -0.014834612607955933, 0.016196297481656075, -0.028584305197000504, -0.008828808553516865, 0.0013180940877646208, 0.005532535724341869, -0.011745912954211235, -0.0004327915085013956, -0.03797217831015587, 0.04324178770184517, -0.0029171048663556576, 0.0056155649945139885, 0.00424557738006115, 0.0887419804930687, -0.07687429338693619, 0.0003905848425347358, 0.034805987030267715, -0.022739024832844734, -0.039809901267290115, 0.00032225842005573213, 0.006149721797555685, -0.030687721446156502, 0.003047184320166707, -0.015532060526311398, -0.006155257113277912, -0.03987632319331169, -0.023713238537311554, -0.023558249697089195, 0.01536600198596716, -0.026857290416955948, 0.04902064427733421, -0.04138192534446716, 0.01668340340256691, -0.011491289362311363, -0.013948963955044746, -0.07404021173715591, 0.03682083636522293, -0.015410283580422401, -0.0377950482070446, -0.0008628153591416776, -0.003567502833902836, -0.0495077520608902, -0.03473956137895584, -0.04375103488564491, -0.0705861896276474, 0.05933845043182373, 0.015919532626867294, -0.02043633908033371, -0.035935189574956894, -0.0060611567460000515, 0.0076165772043168545, 0.0642537996172905, 0.01696016825735569, 0.018177935853600502, -0.010882406495511532, 0.055131617933511734, 0.022849731147289276, -0.01723693497478962, 0.016340214759111404, -0.006382204592227936, -0.010948829352855682, 0.014834612607955933, 0.023868227377533913, 0.006946805398911238, -0.05322747677564621, -0.06668933480978012, 0.027300115674734116, 0.002034223871305585, 0.015642765909433365, -0.005950450897216797, 0.022761166095733643, -0.02665802091360092, 0.04390602558851242, -0.05712432786822319, -0.06354527920484543, 0.005001146346330643, -0.03389819711446762, -0.03115268610417843, 0.007029835134744644, 0.048444975167512894, -0.02113378793001175, 0.006780746392905712, 0.008319560438394547, 0.002816085470840335, 0.0004552786995191127, -0.02989063784480095, -0.031108403578400612, 0.006265962962061167, 0.04100552573800087, -0.022761166095733643, -0.01291939802467823, -0.010616711340844631, -0.004173618741333485, 0.03817145153880119, 0.017126228660345078, -0.04716078191995621, -0.018532194197177887, -0.023558249697089195, 0.030112048611044884, 0.027610091492533684, 0.004561089910566807, 0.009670174680650234, -0.008048330433666706, -0.035625211894512177, 0.0139600345864892, -0.014436070807278156, 0.03728580102324486, 0.028318611904978752, 0.05229754373431206, -0.029713507741689682, 0.04089482128620148, 0.03936707600951195, 0.011745912954211235, -0.01959497295320034, -0.01610773243010044, -0.014402858912944794, -0.026215195655822754, 0.04490238055586815, 0.012066961266100407, 0.0002720947377383709, 0.015919532626867294, 0.022329412400722504, 0.00586742116138339, 0.017901170998811722, 0.02878357656300068, 0.04853353649377823, -0.01181233674287796, -0.005933844950050116, 0.003924529999494553, 0.010184957645833492, -0.032060474157333374, 0.024665310978889465, 0.009077897295355797, 0.029425671324133873, -0.021034151315689087, 0.02239583618938923, -0.04213472828269005, 0.03628944605588913, 0.03702010586857796, -0.028429316356778145, 0.011369512416422367, -0.0011527269380167127, 0.029647083953022957, -0.021454835310578346, -0.015742402523756027, -0.0108325881883502, 0.020369915291666985, -0.07404021173715591, -0.03028917871415615, -0.006587010808289051, 0.01286404486745596, 0.0005874340422451496, 1.1157095286762342e-05, -0.04769217222929001, 0.060268379747867584, -0.04098338633775711, 0.0027302883099764585, -0.004909813869744539, 0.0062327515333890915, 0.004835087340325117, -0.01947319693863392, -0.008264207281172276, -0.055795855820178986, 0.003633926622569561, -0.028119340538978577, -0.00938787404447794, 0.01627379097044468, -0.026901572942733765, -0.01300796214491129, -0.04224543273448944, -0.019904950633645058, 0.02528526447713375, -0.00034457261790521443, 0.04337463527917862, 0.03268042951822281, 0.015343860723078251, -0.0019940929487347603, -0.03296826407313347, 0.055131617933511734, -0.008197784423828125, -0.08781205117702484, 0.041758328676223755, 0.03113054484128952, 0.01104293018579483, -0.02138841152191162, -0.065582275390625, 0.0030748608987778425, 0.06412094831466675, -0.010998647660017014, -0.009548397734761238, -0.03894639387726784, -0.010804912075400352, -0.008939514867961407, -0.025639524683356285, 0.033698923885822296, -0.0497734472155571, -0.02865072898566723, 0.011601995676755905, 0.0030167403165251017, -0.013583634048700333, -0.043861743062734604, 0.02973564900457859, -0.030377743765711784, 0.05659294128417969, -0.0006804963340982795, -0.02528526447713375, -0.017347639426589012, -0.0018570942338556051, 0.019849596545100212, -0.032990407198667526, -0.01851005293428898, -0.01669447496533394, -0.018831102177500725, -0.058275673538446426, -0.0015083701582625508, 0.004760360810905695, -0.024288909509778023, 0.010046575218439102, -0.023159708827733994, 0.026613738387823105, -0.017458345741033554, 0.02683514915406704, 0.05158902704715729, 0.06496232002973557, 0.028163623064756393, 0.004508504644036293, 0.0036837442312389612, -0.011164706200361252, -0.01917429082095623, 0.002316524274647236, -0.03265829011797905, 0.015532060526311398, 0.009498580358922482, -0.04381746053695679, -0.01836613565683365, -0.0012212262954562902, -0.016307003796100616, -0.013561492785811424, -0.05181043595075607, -0.021930871531367302, -0.013428645208477974, 0.052740368992090225, 0.041204795241355896, -0.022550825029611588, -0.026458749547600746, 0.07364167273044586, -0.045832309871912, 0.04769217222929001, 0.0036588353104889393, 0.001471006777137518, -0.015454566106200218, -0.056371528655290604, 0.010173887014389038, 0.027300115674734116, -0.008236531168222427, 0.04290967062115669, 0.023668956011533737, -0.04689508676528931, 0.008330631069839, 0.035647351294755936, 0.03478384390473366, 0.02402321621775627, -0.04277682304382324, 0.028008634224534035, 0.013428645208477974, -0.006769675761461258, -0.0038138239178806543, 0.01847684197127819, -0.035913046449422836, -0.04627513512969017, 0.02179802395403385, -0.03531523421406746, 0.012731197290122509, 0.032724712044000626, 0.016871603205800056, -0.01780153438448906, -0.015067094936966896, 0.02960280142724514, -0.026768725365400314, -0.030200613662600517, 0.016716616228222847, 0.016063449904322624, -0.040208443999290466, -0.002614046912640333, 0.011657348833978176, -0.0036588353104889393, 0.028296470642089844, -0.024001074954867363, 0.013638987205922604, -0.010162816382944584, 0.01098757702857256, -0.019495338201522827, -0.032724712044000626, -0.04069554805755615, -0.006343457382172346, 0.0009942788165062666, 0.008020654320716858, -0.0004109962610527873, 0.017059804871678352, -0.01780153438448906, -0.03234831243753433, 0.02876143530011177, 0.003113608108833432, 0.010821517556905746, 0.025617383420467377, -0.007649789098650217, -0.02351396717131138, 0.024510322138667107, 0.04308680072426796, 0.020624538883566856, 0.001076616463251412, -0.022694742307066917, 0.019141077995300293, -0.026923714205622673, -0.00639327522367239, 0.0013782904716208577, 0.034695278853178024, 0.014568918384611607, -0.03380963206291199, 0.006697716657072306, -0.026746584102511406, -0.011280948296189308, 0.017314428463578224, 0.0006718474323861301, -0.008159036748111248, 0.03489455208182335, 0.004563857335597277, -0.0012198424665257335, -0.03571377694606781, -0.03671013191342354, 1.5600473489030264e-05, 0.010577964596450329, -0.023558249697089195, -0.002789792837575078, -0.02364681474864483, 0.041226938366889954, 0.03099769726395607, 0.004054609686136246, -0.021742671728134155, 0.03631158918142319, 0.03183906525373459, 0.008413661271333694, 0.0645194947719574, -0.04527878016233444, -6.516954454127699e-05, -0.0016744291642680764, 0.012509785592556, -0.037595778703689575, -0.04222329333424568, -0.0024424525909125805, 0.04129336029291153, 0.00862400233745575, 0.013982175849378109, -0.012908327393233776, -0.018133653327822685, 0.014779259450733662, 0.038149308413267136, -0.0028811253141611814, -0.010788305662572384, -0.010450652800500393, -0.0017173278611153364, 0.010029969736933708, 0.0049181170761585236, 0.032569725066423416, 0.025683807209134102, -0.06961197406053543, -0.009537327103316784, 0.012875115498900414, -0.027056561782956123, 0.021488046273589134, 0.0013298565754666924, 0.004835087340325117, 0.003603482386097312, -0.0010613943450152874, -0.04587659239768982, -0.015476707369089127, 0.008552043698728085, -0.04862210154533386, -0.036621566861867905, -0.01459105871617794, -0.0015318951336666942, -0.03710867092013359, 0.006260428112000227, 0.01041744090616703, -0.016030237078666687, -0.028606446459889412, -0.026503032073378563, -0.01779046468436718, -0.04392816498875618, -0.03115268610417843, -0.03963277116417885, -0.003993721213191748, 0.012819762341678143, -0.03892425075173378, -0.005778856575489044, -0.009559468366205692, -0.025905217975378036, 0.03261400759220123, -0.015598484314978123, -0.017314428463578224, 0.028717152774333954, 0.0254181120544672, 0.0019055281300097704, 0.03693154454231262, -0.015631696209311485, 0.015111377462744713, 0.0327911376953125, -0.012554067187011242, 0.02236262522637844, 0.028606446459889412, -0.005745644681155682, 0.012487644329667091, 0.016495203599333763, -0.010660993866622448, -0.0054910206235945225, 0.03141837939620018, 0.03671013191342354, -0.02309328503906727, 0.0004967934801243246, 0.00952625647187233, -0.000467387173557654, -0.028185764327645302, 0.031108403578400612, -0.00827527791261673, 0.053271759301424026, 0.04782501980662346, -0.0049347225576639175, 0.018166864290833473, -0.0010690054623410106, -0.004455918911844492, -0.012044820003211498, -0.031462661921978, -0.01725907437503338, 0.03739650920033455, -0.04295395314693451, 0.001471006777137518, -0.037861473858356476, -0.013661128468811512, 0.03281327709555626, -0.03489455208182335, 0.02712298557162285, -0.035071682184934616, -0.010677599348127842, -0.017602264881134033, 0.009293774142861366, -0.004403333645313978, -0.012343726120889187, 0.028296470642089844, -0.027277974411845207, -0.0013457705499604344, 0.021742671728134155, -0.015498848631978035, 0.025462394580245018, 0.0033516259863972664, 0.007229106035083532, 0.022982578724622726, 0.0713832676410675, 0.007101793773472309, -0.029359247535467148, -0.01680518127977848, -0.06602509319782257, 0.03361036255955696, -0.016174156218767166, 0.013993246480822563, -0.03777290880680084, -0.02101201005280018, -0.011424865573644638, -0.03934493660926819, -0.01794545352458954, 0.056770067662000656, -0.0029254078399389982, -0.032326169312000275, -0.013240445405244827, -0.04751504212617874, -0.03241473436355591, -0.006387739907950163, -0.009299308992922306, 0.006271498277783394, -0.018100440502166748, -0.0152110131457448, -0.0026486425194889307, -0.01332901045680046, 0.025506677106022835, -0.03137409687042236, -0.011469148099422455, 0.02431105077266693, -0.026857290416955948, 0.018986089155077934, -0.014336435124278069, 0.014657482504844666, -0.013174021616578102, 0.025617383420467377, -0.01683839224278927, 0.012974750250577927, -0.007522476837038994, -0.03887996822595596, 0.004680098965764046, -0.040097735822200775, -0.021465905010700226, -0.014690694399178028, -0.02683514915406704, -0.013705410994589329, -0.03128553181886673, -0.006282568909227848, -0.00022331488435156643, -0.009847304783761501, -0.01818900555372238, 0.012487644329667091, -0.010732952505350113, -0.0004040771455038339, 0.011225595138967037, -0.000856588187161833, 0.0060445512644946575, -0.02902713045477867, -0.019672468304634094, -0.024266768246889114, 0.014081811532378197, -0.011435936205089092, -0.0028562163934111595, -0.023381121456623077, 0.013096527196466923, 0.03137409687042236, -0.008718102239072323, -0.010727417655289173, 0.03394247964024544, 0.004112730268388987, 0.0033045760355889797, -0.012288372963666916, 0.002706763334572315, 0.02335898019373417, -0.016218438744544983, -0.040385570377111435, 0.0007099026115611196, 0.008142431266605854, 0.03524881228804588, 0.02112271636724472, -0.019351419061422348, -0.02597164176404476, 0.014757118187844753, -0.00764425378292799, -0.027145126834511757, 0.032879699021577835, -0.03376534953713417, -0.02351396717131138, -0.004713310860097408, 0.006144186481833458, -0.006869311444461346, -0.008081542328000069, -0.029691366478800774, 0.008358308114111423, 0.007162682246416807, -0.03921208903193474, -0.011424865573644638, -0.01682732254266739, -0.03921208903193474, -0.00881220307201147, 0.00751140620559454, 0.008081542328000069, -0.01764654740691185, -0.039809901267290115, 0.0007005617953836918, -0.020934516564011574, -0.03323395922780037, -0.00930484477430582, -0.0004985232371836901, 0.10778342187404633, -0.026325901970267296, 0.004644119180738926, 0.005823139101266861, -0.01637342758476734, 0.017580123618245125, -0.03241473436355591, 0.0460980050265789, -0.021709458902478218, 0.012144454754889011, -0.01341757457703352, -0.016738757491111755, -0.013240445405244827, 0.01368326973170042, 0.008729172870516777, -0.002778722206130624, 0.02055811509490013, -0.03839286416769028, -0.018930736929178238, 0.003772309049963951, 0.007688536308705807, -0.02530740574002266, -0.0019733356311917305, 0.0016841159667819738, 0.003102537477388978, 0.0003774384967982769, 0.008983797393739223, -0.008563114330172539, -0.009991222061216831, -0.006088833324611187, 0.011275412514805794, -0.016351286321878433, -0.03566949442028999, -0.004101659636944532, 0.019783172756433487, -0.013517210260033607, 0.03865855559706688, -0.002889428287744522, -0.06203967705368996, -0.022030506283044815, -0.018587548285722733, -0.008125824853777885, 0.021465905010700226, 0.016428779810667038, -0.023668956011533737, 0.030134189873933792, 0.013583634048700333, -0.015044953674077988, -0.000970061868429184, -0.024488180875778198, 0.02375752106308937, -0.003907924052327871, 0.033145394176244736, -0.01860968954861164, 0.022550825029611588, 0.009338056668639183, -0.03500525653362274, 0.016019167378544807, 0.024665310978889465, -0.026503032073378563, 0.013439715839922428, 0.01931820809841156, 0.011790195479989052, -0.03168407455086708, 0.031883347779512405, -0.00034872410469688475, -0.0169823095202446, -0.015797754749655724, -0.008103683590888977, 0.0172480046749115, -0.00876238476485014, 0.003708653151988983, -0.028695011511445045, 0.011391653679311275, 0.017834747210144997, -0.01794545352458954, -0.011923043057322502, 0.01821114681661129, 0.003938368055969477, 0.004284324590116739, 0.006786281708627939, -0.014945318922400475, -0.005626635625958443, 0.04197973757982254, 0.03290184214711189, 0.02098986878991127, 0.012188737280666828, -0.02042526938021183, 0.044570259749889374, -0.0014308758545666933, -0.0023704934865236282, 0.015498848631978035, -0.005084176082164049, -0.009565004147589207, 0.017580123618245125, 0.019251784309744835, -0.04211258515715599, 0.004137638956308365, 0.010882406495511532, 0.009587145410478115, 0.0027053793892264366, 0.004848925396800041, -0.020325632765889168, 0.01905251294374466, 0.03352179750800133, -0.01173484232276678, 0.01347292773425579, -0.03101983852684498, -0.034562431275844574, -0.030798427760601044, 0.004818481393158436, 0.02960280142724514, 0.004954096395522356, -0.004228971432894468, 0.023137567564845085, 0.0010565510019659996, 0.07523584365844727, 0.02211907133460045, 0.012244090437889099, -0.016583768650889397, 0.017701899632811546, -0.03471742197871208, 0.006155257113277912, 0.021078433841466904, 0.008723638020455837, -0.04045199602842331, -0.01237693801522255, 0.03451814875006676, 0.04319750517606735, 0.05973699316382408, 0.008784526027739048, -0.009061290882527828, 0.004461454227566719, -0.0044116368517279625, 0.04228971526026726, -0.01989387907087803, -0.008651678450405598, 0.010672064498066902, -0.009360197931528091, -0.03223760426044464, 0.02738868072628975, 0.00701876450330019, 0.002858984051272273, 0.015011741779744625, 0.006515051703900099, 0.004807410761713982, 0.02681300789117813, 0.00038331974064931273, 0.00993586890399456, -0.016439849510788918, -0.04574374482035637, 0.0008891080506145954, 0.0020259208977222443, -0.00924949161708355, 0.003907924052327871, -0.019240714609622955, 0.03017847239971161, 0.03473956137895584, 0.005388617515563965, -0.031750500202178955, 0.04100552573800087, 0.03017847239971161, 0.015100306831300259, 0.011834478005766869, 0.012974750250577927, 0.03044416755437851, -0.040252722799777985, -0.010035504586994648, 0.0297577902674675, 0.01765761710703373, -0.013572563417255878, -0.007705141790211201, 0.011867689900100231, 0.009105573408305645, 0.019517479464411736, -0.006437557749450207, -0.01888645440340042, 0.016174156218767166, 0.037440791726112366, -0.011153635568916798, -0.006221680901944637, 0.045655179768800735, 0.006321316119283438, -0.007168217562139034, 0.0058729564771056175, -0.002878357656300068, 0.052474673837423325, -0.03070986270904541, 0.028318611904978752, 0.01006871648132801, -0.008463478647172451, 0.037573639303445816, 0.0097421333193779, -0.028739294037222862, 0.04228971526026726, 0.017879029735922813, 0.03947778046131134, 0.020602397620677948, 0.02586093731224537, 0.0007431144476868212, 0.0009403096046298742, 0.0254181120544672, 0.03186120465397835, 0.0212666355073452, -0.031772639602422714, 0.024244626984000206, 0.0038138239178806543, -0.0028921959456056356, -0.0010371773969382048, 0.00657040486112237, -0.019960302859544754, -0.027034420520067215, 0.007107329089194536, -0.04151477292180061, -0.027831504121422768, 0.010107463225722313, -0.005504859145730734, -0.009681245312094688, 0.010865800082683563, 0.013384362682700157, 0.023248273879289627, 0.0064984457567334175, 0.01596381515264511, 0.021178070455789566, 0.04472525045275688, -0.010279057547450066, -0.0175136998295784, 0.026458749547600746, 0.0200156569480896, 0.03152908757328987, 0.00670878728851676, 0.02459888719022274, 0.007738353684544563, -0.011900901794433594, -0.02307114377617836, 0.03155122697353363, -0.017724040895700455, -0.02168731763958931, -0.018797889351844788, 0.04658511281013489, -0.024953147396445274, -0.010196028277277946, -0.025617383420467377, -0.01161306630820036, 0.012155525386333466, 0.00012264156248420477, 0.004765896126627922, 0.04485809803009033, -0.04645226523280144, -0.01625164970755577, 0.01472390629351139, -0.039942748844623566, -0.03936707600951195, -0.008635072968900204, -0.011878760531544685, -0.005745644681155682, 0.00152082450222224, -0.0022293434012681246, 0.004743754863739014, -0.01637342758476734, 0.036068037152290344, 0.006968946661800146, -0.05048196390271187, 0.03155122697353363, 0.023668956011533737, 0.019982444122433662, -0.018011877313256264, 0.012742267921566963, 0.027720797806978226, 0.03735222667455673, 0.021742671728134155, 0.01216659601777792, -0.003954974003136158, -0.009299308992922306, -0.006658969912678003, 0.015554201789200306, 0.0003155122685711831, 0.01493424829095602, -0.0019249017350375652, -0.02389036864042282, -0.027610091492533684, -0.026635879650712013, -0.0022445654030889273, 0.024975288659334183, -0.020934516564011574, 0.011601995676755905, -0.03653300181031227, 0.01846577227115631, 0.018986089155077934, 0.0009285471169278026, 0.026237336918711662, 0.0037307944148778915, 0.007539082784205675, 0.008862020447850227, -0.020635610446333885, 0.004101659636944532, 0.01874253712594509, 0.01306331530213356, 0.006050086580216885, -0.013185092248022556, 0.00876238476485014, 0.005095246713608503, 0.005978127475827932, 0.0059891981072723866, 0.03542593866586685, 0.02168731763958931, -0.007533547468483448, -0.009592680260539055, 0.02017064392566681, -0.006205074954777956, 0.027300115674734116, -0.0013492301804944873, -0.03547022119164467, -0.022019436582922935, 0.002027304843068123, -0.001192165887914598, -0.023956792429089546, -0.006470769178122282, -0.046496547758579254, -0.023823944851756096, 0.02293829619884491, -0.00451680738478899, -0.03504953905940056, 0.037706486880779266, 0.01638449728488922, 0.003609017701819539, -0.0059283096343278885, -0.03310111165046692, -0.019118936732411385, -0.02377966232597828, 0.0076165772043168545, 0.022628318518400192, -0.017901170998811722, -0.048134997487068176, 0.005200417246669531, -0.004818481393158436, -0.0017048734007403255, 0.003985418472439051, -0.01222194917500019, 0.017048733308911324, -0.02696799673140049, 0.0024175436701625586, 0.00848561991006136, 0.060799770057201385, 0.017469417303800583, -0.02752152644097805, -0.019351419061422348, 0.057212892919778824, -0.008247601799666882, -0.009537327103316784, 0.035780198872089386, 0.029226399958133698, 0.006199539639055729, -0.03586876392364502, 0.007444982882589102, 0.019805314019322395, -0.00027935983962379396, 0.01036208774894476, -0.02402321621775627, 0.037440791726112366, 0.03611231967806816, -0.00030080912983976305, 0.024532463401556015, 0.026060206815600395, -0.026348043233156204, 0.0019387399079278111, -0.00846901349723339, -0.012675844132900238, -0.013572563417255878, 0.008751314133405685, 0.008048330433666706, 0.00046842501615174115, 0.023558249697089195, -0.01570918969810009, -0.013085456565022469, -0.0069910879246890545, -0.0024286143016070127, -0.004646887071430683, -0.024576745927333832, 0.006636828649789095, -0.00987498089671135, 0.01207803189754486, 0.02056918665766716, -0.020779527723789215, -0.012631561607122421, -0.013085456565022469, -0.0030942345038056374, 0.02249547280371189, 0.018764678388834, -0.024288909509778023, -0.014491423964500427, 0.011153635568916798, -0.018255429342389107, 0.005167205352336168, 0.017890099436044693, -0.023137567564845085, -0.02459888719022274, -0.014912107028067112, 0.021233422681689262, -0.00036221640766598284, -0.021919799968600273, -0.012742267921566963, -0.02431105077266693, -0.002002395922318101, 0.00586742116138339, -0.020225998014211655, 0.029137836769223213, -0.030267037451267242, 0.013849328272044659, -0.025019571185112, -0.005839745048433542, -0.012686914764344692, 0.01917429082095623, -0.00944322720170021, -0.02683514915406704, -0.00034768623299896717, -0.004187456797808409, -0.01007425133138895, 0.021709458902478218, -0.004561089910566807, 0.031905487179756165, -0.004931955132633448, -0.002608511596918106, -0.03465099632740021, -0.02402321621775627, 0.03686511889100075, 0.010434046387672424, 0.007876736111938953, 0.006133115850389004, -0.023956792429089546, 0.02113378793001175, 0.005654312204569578, 0.043153222650289536, -0.017978664487600327, 0.01694909855723381, 0.04388388246297836, -0.02071310393512249, 0.0066700405441224575, -0.01805615983903408, -0.03640015423297882, -0.005266841035336256, -0.006620222702622414, -0.02322613261640072, 0.014380717650055885, -0.0013492301804944873, -0.0112588070333004, 0.00993033405393362, -0.00021881745487917215, 0.010467258282005787, -0.005499323830008507, -0.0207352451980114, 0.02420034632086754, -0.011424865573644638, 0.008369378745555878, -0.012675844132900238, 0.022694742307066917, -0.0017463881522417068, -0.02696799673140049, -0.023004719987511635, -0.026458749547600746, -0.0197499617934227, 0.005513161886483431, 0.016439849510788918, -0.010921153239905834, -0.018975019454956055, 0.02847359888255596, 0.01077170018106699, 0.01625164970755577, 0.034385304898023605, -0.008397054858505726, 0.040075596421957016, 0.0038830151315778494, 0.010445117019116879, 0.007633183151483536, 0.015011741779744625, 0.00979195162653923, -0.030599156394600868, 0.006503981072455645, 0.001082151778973639, -0.014413929544389248, 0.019096795469522476, -0.012011608108878136, -0.013174021616578102, -0.0033516259863972664, 0.005311123561114073, 0.016218438744544983, -0.031639792025089264, -0.01653948612511158, -0.025772372260689735, 0.012697985395789146, -0.025130275636911392, -0.006963411346077919, 0.012908327393233776, -0.028008634224534035, 0.016174156218767166, 0.007965301163494587, 0.008806667290627956, 0.05119048431515694, 0.01132522989064455, -0.0062327515333890915, 0.0051063173450529575, -0.0013284727465361357, -0.0070519763976335526, -0.01153557188808918, 0.0023372818250209093, 0.002702611731365323, 0.0029392458964139223, -0.006658969912678003, 0.003913459368050098, 0.0015761775430291891, 0.016738757491111755, 0.029691366478800774, -0.024643169716000557, -0.008125824853777885, -0.0015886320034042, 0.04472525045275688, -0.0024549069348722696, -0.039832040667533875, 0.003019507974386215, -0.038437146693468094, 0.040939103811979294, -0.05960414558649063, 0.016495203599333763, 0.018011877313256264, 0.008767920546233654, -0.023713238537311554, 0.007478194776922464, -0.004408868961036205, -0.014635341241955757, 0.014834612607955933, 0.008607396855950356, -0.012908327393233776, 0.0003412860387470573, 0.010406370274722576, 0.014845683239400387, 0.022274060174822807, -0.013882540166378021, 0.005449505988508463, -0.055308748036623, 0.01175698358565569, -0.001147883478552103, 0.03930065408349037, -0.008590790443122387, -0.027455104514956474, -0.008795596659183502, -0.02847359888255596, -0.021997295320034027, -0.025218840688467026, -0.016650192439556122, -0.004359051119536161, 0.007516941521316767, -0.015675978735089302, -0.0025932895950973034, 0.029071412980556488, -0.010926688089966774, 0.015421354211866856, 0.048843514174222946, -0.010998647660017014, -0.03686511889100075, -0.0013748309575021267, -0.015465636737644672, -0.026348043233156204, -0.02583879604935646, -0.03347751498222351, -0.004386727698147297, 0.03879140317440033, -0.030466308817267418, 0.012642632238566875, -0.0004933339077979326, -0.014956389553844929, 0.011076142080128193, 0.030333461239933968, -0.0455666147172451, 0.02127770520746708, 0.002269474323838949, 0.008147966116666794, -0.02628161944448948, -0.01929606683552265, -0.010218169540166855, 0.01194518432021141, -0.016749827191233635, -0.0001391609839629382, -0.01153557188808918, -0.0056847562082111835, 0.014867824502289295, 0.02114485763013363, -0.005172740668058395, 0.0001549019943922758, 0.012365867383778095, -0.036355871707201004, -0.016295932233333588, -0.024776017293334007, -0.029226399958133698, 0.001888922182843089, -0.019827455282211304, -0.01683839224278927, -0.013118668459355831, 0.005695826839655638, -0.011087212711572647, 0.007577829994261265, -0.010306734591722488, -0.003609017701819539, 0.0022985346149653196, 0.02599378302693367, -0.07705142349004745, 0.01722586341202259, 0.013030103407800198, 0.02362467348575592, 0.001320169772952795, -0.023846086114645004, -0.007976371794939041, -0.021067364141345024, 0.000551800534594804, -0.012388008646667004, 0.007422841619700193, 0.005374779459089041, -0.029779931530356407, -0.018676113337278366, -0.013506139628589153, 0.005601726938039064, 0.008358308114111423, -0.004314768593758345, -0.02415606379508972, -0.014779259450733662, 0.0254181120544672, 0.03527095168828964, 0.020458480343222618, -0.002095112344250083, 0.002770419232547283, -0.01821114681661129, 0.003999256528913975, -0.00590616837143898, -0.0022874639835208654, 0.05867421254515648, -0.0021822932176291943, 0.013672199100255966, 0.0032741317991167307, -0.003871944500133395, 0.032326169312000275, 0.026348043233156204, 0.04000917077064514, 0.016783040016889572, -0.021587682887911797, -0.007588900625705719, -0.0009714456973597407, 0.009985687211155891, 0.020048867911100388, 0.011701631359755993, 0.0721803531050682, -0.01140272431075573, 0.017735110595822334, -0.01765761710703373, -0.025351688265800476, -0.0139600345864892, 0.023270415142178535, -0.0034706350415945053, -0.007522476837038994, -0.0009437691769562662, 0.015100306831300259, -0.02891642414033413, -0.016661262139678, 0.014912107028067112, 0.03693154454231262, 0.0030942345038056374, 0.014867824502289295, 0.0005818987265229225, -0.04408315569162369, 0.00813689548522234, -0.006337922066450119, 0.006138651166111231, -0.033145394176244736, -0.007040905766189098, -0.009149855934083462, 0.010959899984300137, 0.01680518127977848, 0.03542593866586685, -0.0600469671189785, 0.03653300181031227, 0.009631427936255932, 0.013561492785811424, 0.026480890810489655, 0.00545780872926116, -0.016616979613900185, -0.013738622888922691, -0.0081313606351614, -0.016450921073555946, 0.003924529999494553, -0.019141077995300293, 0.02042526938021183, -0.0037529354449361563, 0.019982444122433662, -0.022462259978055954, 0.015056024305522442, 0.030355602502822876, 0.036223024129867554, 0.01697123982012272, -0.031108403578400612, -0.0010994495823979378, -0.02614877186715603, 0.006542728282511234, 0.0029171048663556576, 0.027853645384311676, 0.011004182510077953, -0.0015997026348486543, 0.012631561607122421, -0.02249547280371189, 0.04127122089266777, -0.005161670036613941, -0.001053783344104886, -0.025462394580245018, -0.007904413156211376, -0.015886319801211357, 0.029115695506334305, 0.003938368055969477, 0.003083163872361183, -0.013041174039244652, -0.009277167730033398, -0.007361953146755695, -0.07328741252422333, -0.013727552257478237, 0.003786147339269519, -0.03310111165046692, 0.007981907576322556, 0.036643706262111664, 0.011103818193078041, 0.002989063737913966, -0.034385304898023605, 0.04791358485817909, -0.02960280142724514, 0.01709301583468914, -0.03566949442028999, 0.028429316356778145], [0.023232005536556244, -0.0016530464636161923, 0.05319182947278023, 0.019132239744067192, -0.037402477115392685, 0.03551027551293373, -0.019521191716194153, 0.03094797395169735, 0.004357315134257078, 0.06462912261486053, -0.009970840066671371, -0.007101004011929035, 0.03218841552734375, 0.0030196350999176502, -0.05180421844124794, 0.005440073553472757, 0.004762035328894854, 0.04028282314538956, -0.03557335212826729, -0.00387112470343709, 0.030443387106060982, 0.02628054842352867, -0.053317975252866745, -0.0359097421169281, -0.033260662108659744, -0.03458520025014877, 0.018890459090471268, -0.03397549316287041, 0.0658905878663063, -0.07421626895666122, 0.060760628432035446, -0.04141814261674881, 0.01443327683955431, -0.01791282184422016, -0.023631468415260315, 0.0040130396373569965, -0.007658151909708977, -0.015694743022322655, 0.013203347101807594, 0.0021339806262403727, -0.01253056526184082, 0.017702577635645866, 0.008220555260777473, 0.01878533512353897, 0.006995881907641888, 0.04654810577630997, -0.0136133236810565, -0.05071094632148743, 0.022685369476675987, 0.0013481921050697565, 0.06488142162561417, 0.07266046106815338, 0.0042889853939414024, -0.005503146909177303, -0.006275794934481382, 0.004859273321926594, -0.0007641069241799414, 0.018627652898430824, 0.02972855605185032, -0.021949514746665955, -0.036960963159799576, -0.0087882149964571, -0.014559423550963402, -0.009392667561769485, 0.008704117499291897, 0.02255922369658947, 0.0027121526654809713, 0.013318981975317001, -0.021634146571159363, -0.05314978212118149, -0.016041647642850876, 0.049491528421640396, 0.04667425528168678, -0.030338265001773834, -0.02880348078906536, 0.016188817098736763, -0.05310773104429245, 0.009739571250975132, 0.017471307888627052, -0.003045915625989437, -0.040261801332235336, 0.025292400270700455, -0.007621359080076218, 0.00669628381729126, 0.039504919201135635, -0.009697522036731243, -0.057943351566791534, -0.015526548027992249, 0.017334649339318275, -0.010827586054801941, -0.02426220290362835, 0.0030564276967197657, -0.034122664481401443, 0.04671630263328552, 0.010995781049132347, 0.015085035003721714, 0.036603547632694244, -0.021949514746665955, -0.010680414736270905, 0.04474000632762909, -0.034480080008506775, -0.03315553814172745, -0.009177167899906635, 0.02337917499244213, -0.02009936422109604, -0.03681379184126854, -0.013529226183891296, 0.05945711210370064, 0.03605691343545914, -0.005708135198801756, 0.049449481070041656, -0.020603949204087257, 0.011531904339790344, 0.04192272946238518, -0.019153263419866562, 0.00919293612241745, -0.004656913224607706, -0.055378369987010956, 0.009177167899906635, -0.010554268024861813, -0.034963641315698624, 0.012372882105410099, 0.04461386054754257, -0.0678248405456543, 0.01132166013121605, -0.02806762605905533, -0.011447806842625141, 0.0015702627133578062, -0.03723428025841713, -0.012278271839022636, 0.012183662503957748, -0.06366200000047684, 0.03931570053100586, -0.032020218670368195, -0.008036592043936253, -0.010386073030531406, 0.012614663690328598, -0.029076799750328064, 0.010743488557636738, -0.0012949740048497915, 0.041649412363767624, 0.010275694541633129, -0.037465550005435944, 0.021529024466872215, -0.07728583365678787, 0.040366921573877335, -0.0036398558877408504, 0.006081318948417902, 0.013907666318118572, -0.022832540795207024, -0.0013173124752938747, 0.03912648186087608, -0.005455841775983572, -0.01758694276213646, 0.04339444264769554, 0.029055774211883545, 0.023904787376523018, 0.034059591591358185, -0.004091881215572357, 0.003902661381289363, -0.015663206577301025, -0.026007231324911118, 0.01254107803106308, -0.012362370267510414, 0.03393344581127167, 0.0021208403632044792, 0.025397522374987602, 0.035279009491205215, -0.034480080008506775, -0.019006092101335526, -0.015600133687257767, -0.02546059526503086, -0.04181760922074318, -0.03382832184433937, -0.023736590519547462, -0.04717884212732315, 0.07110465317964554, 0.024745764210820198, -0.006133880000561476, 0.03014904446899891, -0.03130538761615753, 0.003345513716340065, -0.08182711899280548, -0.021013926714658737, -0.020372681319713593, 0.025229327380657196, 0.0020052059553563595, 0.01339256763458252, -0.04835620895028114, 0.016619818285107613, -0.002653021365404129, -0.03231456130743027, -0.0008731712005101144, -0.0014520003460347652, -0.011616002768278122, 0.031116168946027756, -0.01066990289837122, -0.009108837693929672, -0.006675259210169315, -0.01132166013121605, 0.03923160210251808, -0.0366666205227375, 0.022348977625370026, 0.026448743417859077, -0.029938800260424614, 0.01339256763458252, -0.008777703158557415, 0.009524070657789707, 0.020288582891225815, -0.03895828500390053, 0.041144825518131256, -0.025397522374987602, -0.028971675783395767, 0.03693993762135506, 0.0039525944739580154, -0.002914512762799859, 0.007447907235473394, 0.02375761605799198, 0.001412579440511763, 0.021034950390458107, -0.041102778166532516, -0.015053498558700085, 0.003161550033837557, -0.037423502653837204, -0.034290861338377, -0.027752259746193886, 0.016619818285107613, -0.03099002316594124, -0.004641145002096891, -0.0767812505364418, -0.018165115267038345, 0.028151722624897957, 0.015106059610843658, -0.02720562368631363, 0.0010131151648238301, -0.0033376296050846577, 0.02262229658663273, -0.02718460001051426, 0.01839638315141201, -0.002948677632957697, 0.0037949110846966505, -0.02417810447514057, -0.005555707961320877, 0.005603013094514608, 0.01338205486536026, -0.01835433579981327, -0.0026661616284400225, -0.043604686856269836, 0.05066889896988869, 0.010175828821957111, 0.009913022629916668, -0.002555783372372389, 0.088639035820961, -0.09940354526042938, 0.020320119336247444, 0.030380314216017723, -0.03916852921247482, -0.059078674763441086, 0.008830264210700989, -0.02804660052061081, -0.01192085724323988, 0.002880348125472665, -0.02096136473119259, -0.005172011908143759, -0.04394107684493065, -0.008846032433211803, -0.021245194599032402, 0.0002706896630115807, -0.030359288677573204, 0.06261077523231506, -0.061181116849184036, 0.024325275793671608, -0.0037449782248586416, -0.025229327380657196, -0.07846320420503616, 0.04612761735916138, -0.013024640269577503, -0.03010699711740017, -0.013508201576769352, 0.00689075980335474, -0.05239289999008179, -0.00012959595187567174, -0.06029808893799782, -0.0683714747428894, 0.046590156853199005, 0.02628054842352867, -0.0024795697536319494, -0.005944659933447838, -0.019783996045589447, 0.030254166573286057, 0.07442651689052582, 0.0026372531428933144, 0.02262229658663273, -0.008835520595312119, 0.032819148153066635, 0.02840401604771614, -0.001800217549316585, -0.0007115458720363677, -0.00313526950776577, -0.007810579147189856, 0.009913022629916668, 0.01923736184835434, 0.026217475533485413, -0.06176980212330818, -0.06315741688013077, 0.01874328777194023, 0.0028146468102931976, 0.018522530794143677, 0.005363860167562962, 0.02302176132798195, -0.013739470392465591, 0.020719584077596664, -0.0408715084195137, -0.06580649316310883, 0.0011859097285196185, -0.03961004316806793, -0.03794911131262779, 0.021150585263967514, 0.027920454740524292, 0.004835620988160372, 0.010817073285579681, 0.013518714345991611, 0.0012174464063718915, -0.002179971430450678, -0.03223046287894249, -0.01882738433778286, 0.024514496326446533, 0.05012226104736328, -0.014654033817350864, -0.0042653330601751804, -0.020236022770404816, -0.005229829344898462, 0.0475572794675827, 0.0014782808721065521, -0.030001875013113022, 0.015347840264439583, -0.016935184597969055, 0.018879946321249008, 0.017345162108540535, 0.016998259350657463, 0.02222283184528351, -0.02680615894496441, -0.026848208159208298, 0.023147907108068466, -0.011279611848294735, 0.023274052888154984, 0.03464827686548233, 0.08069179952144623, 0.00879872776567936, 0.033639103174209595, 0.03271402791142464, 0.036918915808200836, -0.027773283421993256, -0.0015689487336203456, -0.017460796982049942, -0.03054850921034813, 0.03881111368536949, 0.02926601842045784, -0.00880398415029049, 0.005030096974223852, 0.024367325007915497, 0.0027358049992471933, 0.028130698949098587, 0.03597281500697136, 0.07287070155143738, -0.013045663945376873, -0.011983930133283138, -0.002762085758149624, 0.008662069216370583, -0.03803320974111557, 0.026028255000710487, -0.002340282779186964, 0.023715566843748093, -0.020320119336247444, 0.02346327342092991, -0.04171248525381088, 0.051636021584272385, 0.03885316103696823, -0.0184384323656559, 0.01717696711421013, 0.005991965066641569, 0.023316102102398872, -0.022054636850953102, 0.012215198948979378, -0.02043575420975685, 0.006853966973721981, -0.07392192631959915, -0.028992701321840286, -0.0023639353457838297, 0.0129931028932333, 0.008183762431144714, 0.002882976084947586, -0.037402477115392685, 0.028319919481873512, -0.03588871657848358, 0.01229929644614458, 0.023210979998111725, 0.013171810656785965, 0.008346701972186565, 0.0019644710700958967, -0.012625175528228283, -0.07568798214197159, 0.023126883432269096, -0.033260662108659744, -0.004583327565342188, -0.010901171714067459, -0.0393577478826046, 0.021928489208221436, -0.04516049474477768, -0.018690725788474083, 0.016788015142083168, 0.0029697020072489977, 0.03853779658675194, 0.04545483738183975, 0.026848208159208298, -0.0068119182251393795, -0.04595942422747612, 0.06828738003969193, -0.01548449881374836, -0.06298922002315521, 0.03456417843699455, 0.042847804725170135, 0.00261622853577137, -0.002684558043256402, -0.06521780788898468, -0.008730398491024971, 0.03807525709271431, -0.024556543678045273, 0.0041391863487660885, -0.018259724602103233, -0.0003718697698786855, -0.009303314611315727, -0.028698358684778214, 0.030254166573286057, -0.040682289749383926, 0.0012654083548113704, 0.018249213695526123, 0.0011576581746339798, -0.02136082947254181, -0.028698358684778214, 0.013718446716666222, -0.005771208554506302, 0.0468004010617733, -0.0069222962483763695, -0.030611582100391388, -0.0012995731085538864, -0.016567258164286613, 0.034417007118463516, -0.024850886315107346, 0.009408436715602875, -0.011637026444077492, -0.024913959205150604, -0.06231643632054329, -0.0073112486861646175, -0.005539939738810062, -0.0021142701152712107, 0.0026714177802205086, -0.018985068425536156, 0.031599730253219604, -0.01627291552722454, 0.0016609306912869215, 0.03172587975859642, 0.06917040050029755, 0.021182121708989143, 0.006065550725907087, 0.014696083031594753, 0.00834144651889801, -0.010333511978387833, 0.002381017664447427, -0.031095145270228386, 0.006028757896274328, -0.0052245729602873325, -0.04650605842471123, -0.009665985591709614, 0.01591550000011921, 0.021970538422465324, -0.015379376709461212, -0.05394871160387993, -0.010722463950514793, -0.02470371499657631, 0.06328356266021729, 0.017324138432741165, -0.04230117052793503, -0.05558861792087555, 0.06601674109697342, -0.022496148943901062, 0.0468004010617733, 0.0020893036853522062, -0.00774750579148531, -0.049071040004491806, -0.02167619578540325, 0.01593652367591858, 0.013529226183891296, -0.00669628381729126, 0.03088490106165409, 0.020393704995512962, -0.04642195999622345, 0.007363809738308191, 0.02335815131664276, 0.028719384223222733, 0.006727820262312889, -0.03834857791662216, 0.014464814215898514, 0.01635701395571232, -0.006296819541603327, -0.018270237371325493, 0.016167793422937393, -0.04295292869210243, -0.021119048818945885, 0.0049749077297747135, -0.02304278500378132, 0.009397923946380615, 0.03723428025841713, 0.0019119099015370011, -0.025376496836543083, -0.02886655367910862, 0.02262229658663273, 0.0010019459296017885, -0.034417007118463516, 0.01171061210334301, 0.02209668606519699, -0.030401337891817093, -0.01879584789276123, -0.007658151909708977, -0.015978572890162468, 0.026112353429198265, -0.011594978161156178, -0.011689587496221066, 0.0014217776479199529, 0.014843253418803215, -0.0020196600817143917, -0.04293190315365791, -0.04347854107618332, 0.005944659933447838, -0.011899832636117935, 0.0017121777636930346, -0.017776163294911385, 0.02050933986902237, -0.02918192185461521, -0.038684967905282974, 0.01670391671359539, 0.00576069625094533, 0.002308746101334691, 0.0020893036853522062, 0.006617442239075899, -0.029160896316170692, 0.014296618290245533, 0.03693993762135506, 0.022348977625370026, 0.017628991976380348, -0.0217813178896904, 0.02215975895524025, -0.01879584789276123, -0.011237562634050846, 0.006181185133755207, 0.02850913815200329, 0.02918192185461521, -0.05428510159254074, 0.006328355986624956, -0.02342122420668602, 0.005592500790953636, 0.03185202553868294, 0.009098325856029987, -0.01443327683955431, 0.02306380867958069, -0.0012844618177041411, -0.0002567281189840287, -0.031116168946027756, -0.04545483738183975, 0.002168145263567567, 0.015116571448743343, 0.007521492894738913, 0.0018488365458324552, -0.01920582540333271, 0.05071094632148743, 0.030443387106060982, -0.02008885145187378, -0.008746166713535786, 0.04818801209330559, 0.023673517629504204, 0.0020538249518722296, 0.05924686789512634, -0.034921593964099884, -0.0023521091789007187, -0.004641145002096891, 0.0037686305586248636, -0.04654810577630997, -0.036162033677101135, 0.01630445197224617, 0.03633023053407669, -0.008888081647455692, 0.010449145920574665, 0.00020893035980407149, -0.01591550000011921, 0.005040609277784824, 0.02890860289335251, -0.000658984761685133, -0.0054505858570337296, -0.0017752510029822588, -0.0010663332650437951, 0.013476665131747723, 0.023925811052322388, 0.01956324093043804, 0.03002289868891239, -0.06462912261486053, -0.0037344659212976694, 0.033302709460258484, -0.01152139250189066, 0.010838097892701626, 0.0028409273363649845, 0.013939202763140202, -0.005539939738810062, -0.011857783421874046, -0.05319182947278023, -0.017050819471478462, 0.007027418818324804, -0.03609896078705788, -0.03626715764403343, -0.009970840066671371, 0.0006008390337228775, -0.036603547632694244, 0.021928489208221436, -0.001998635707423091, -0.018564580008387566, -0.026133377104997635, -0.015274254605174065, -0.009771107695996761, -0.039105456322431564, -0.02209668606519699, -0.02514522895216942, -0.00983943697065115, -0.004459809046238661, -0.03420676290988922, -0.009008971974253654, 0.008683092892169952, -0.008677837438881397, 0.019952192902565002, -0.028109675273299217, 0.0002907285816036165, 0.026007231324911118, 0.0175764299929142, 0.0015702627133578062, 0.03307144343852997, -0.03214636817574501, 0.012456979602575302, 0.02550264447927475, -0.015211181715130806, 0.020383194088935852, 0.03147358447313309, 0.0002936851233243942, 0.006969601381570101, 0.010259926319122314, 0.010217877104878426, -0.020320119336247444, 0.03887418657541275, 0.02510317973792553, -0.03916852921247482, 0.00615490460768342, 0.02005731500685215, 0.011836758814752102, -0.01229929644614458, 0.03853779658675194, 0.002472999505698681, 0.06626903265714645, 0.023610444739460945, 0.010328255593776703, 0.018144091591238976, -0.00836772657930851, 0.004651657305657864, -0.02850913815200329, -0.01715594157576561, -0.005965684540569782, 0.027878405526280403, -0.06357790529727936, -0.0012187603861093521, -0.041586339473724365, -0.011437295004725456, 0.016598794609308243, -0.040303848683834076, 0.013539738953113556, -0.03458520025014877, -0.02508215606212616, 0.0003094534622505307, 0.015085035003721714, -0.009014228358864784, -0.014170471578836441, 0.017397722229361534, -0.019857581704854965, -0.009986608289182186, 0.01582089066505432, -0.016451623290777206, 0.03458520025014877, 0.0003978218010161072, 0.002790994243696332, 0.03008597157895565, 0.04940742999315262, -0.006654235068708658, -0.015169132500886917, -0.018228188157081604, -0.06563829630613327, 0.03397549316287041, -0.022348977625370026, -0.0013330808142200112, -0.03187304735183716, -0.02090880461037159, -0.016651354730129242, -0.0460435226559639, -0.016535721719264984, 0.07514134049415588, 0.011899832636117935, -0.024115031585097313, -0.016378037631511688, -0.04932333156466484, -0.02804660052061081, -0.009282290004193783, 0.0006294191116467118, 0.0068749915808439255, -0.02094034105539322, -0.012004954740405083, -0.0034874288830906153, 0.003879009047523141, 0.02546059526503086, -0.034059591591358185, -0.004596468061208725, 0.005771208554506302, -0.018921995535492897, 0.012656711973249912, -0.006570137105882168, 0.012068027630448341, -0.025355473160743713, 0.03639330342411995, -0.02128724381327629, 0.010496451519429684, -0.013991763815283775, -0.030716704204678535, 0.002279837615787983, -0.04545483738183975, -0.03088490106165409, -0.018554067239165306, -0.017313625663518906, 0.001194450887851417, -0.04221707209944725, -0.01793384552001953, -0.004023551940917969, -0.022454099729657173, -0.015978572890162468, 0.02012038789689541, 0.005429561249911785, -0.0031799464486539364, 0.025166252627968788, -0.00011957649257965386, 0.004220656119287014, -0.03130538761615753, -0.016230866312980652, -0.006932808551937342, 0.010564780794084072, -0.016136256977915764, -0.006706796120852232, -0.02922396920621395, 0.0175238698720932, 0.014654033817350864, 0.002342910971492529, 0.0072744558565318584, 0.04389902949333191, 0.007074723485857248, -0.0031799464486539364, -0.017460796982049942, 0.0012752636102959514, 0.015663206577301025, -0.01963682658970356, -0.015158620662987232, -0.00638617342337966, 0.03141051158308983, 0.022433076053857803, 0.032020218670368195, -0.014075861312448978, -0.005135219078511, 0.013255909085273743, -0.005482122302055359, -0.026133377104997635, 0.037003010511398315, -0.04101867973804474, -0.01398125197738409, -0.018879946321249008, 0.02084573172032833, -0.02213873341679573, -0.03048543632030487, -0.011794710531830788, 0.012814395129680634, 0.004204887896776199, -0.030800802633166313, 0.004465064965188503, -0.01804948039352894, -0.026974355801939964, 0.0055767325684428215, 0.011269099079072475, 0.00837298296391964, -0.00034000459709204733, -0.04810391739010811, 0.0026779877953231335, -0.016493672505021095, -0.018133578822016716, -0.013056176714599133, -0.006217977963387966, 0.11983930319547653, -0.009350619278848171, 0.010601573623716831, 0.0016307079931721091, -0.02752098999917507, 0.02012038789689541, -0.01586293987929821, 0.038663942366838455, -0.01624137908220291, 0.01214161328971386, -0.006354636512696743, -0.036162033677101135, 0.004197003785520792, 0.00796826183795929, -1.80576116690645e-05, -0.007106260396540165, 0.010880147106945515, -0.04436156526207924, -0.009776364080607891, 0.0030932205263525248, 0.009997121058404446, -0.022496148943901062, 0.005366487894207239, -0.007784298621118069, -0.012940541841089725, 0.004625376313924789, 0.006859223358333111, -0.0023994140792638063, -0.0002969701890833676, -0.012120588682591915, 0.0039000334218144417, -0.018900969997048378, -0.0262595247477293, -0.02514522895216942, 0.01754489354789257, -0.012120588682591915, 0.049028992652893066, 0.0015742048854008317, -0.041228923946619034, -0.0383906252682209, -0.016199329867959023, 0.0008304653456434608, 0.013340006582438946, 0.02088777907192707, -0.035804618149995804, 0.025292400270700455, 0.02428322657942772, -0.020383194088935852, -0.018879946321249008, -0.03315553814172745, 0.014380715787410736, -0.00919293612241745, 0.021034950390458107, -0.03424881026148796, 0.009639705531299114, -0.006233746185898781, -0.03628818318247795, 0.010617341846227646, 0.02468269132077694, -0.036498427391052246, 0.024871911853551865, 0.009014228358864784, 0.008583227172493935, -0.032461732625961304, 0.03172587975859642, 0.0074373953975737095, -0.015074522234499454, -0.015011449344456196, -0.002216764260083437, 0.015968061983585358, 0.012898493558168411, -0.00024999372544698417, -0.014233545400202274, -0.00481196865439415, 0.017408234998583794, -0.00418123509734869, -0.014128423295915127, 0.004906578455120325, 0.0015873451484367251, 0.02470371499657631, 0.0056240372359752655, -0.009198191575706005, -0.011773685924708843, 0.03954697027802467, 0.01804948039352894, 0.021024439483880997, 0.026070304214954376, 0.003508453257381916, 0.0419437550008297, 0.003403330920264125, -0.00023619642888661474, 0.001831754227168858, -0.010181084275245667, -0.0003574154688976705, -0.0017765650991350412, 0.01085912249982357, -0.0377388671040535, -0.008825007826089859, 0.013266420923173428, 0.006170672830194235, 0.004191747400909662, 0.0007181160035543144, -0.017713090404868126, 0.003721325658261776, 0.05382256209850311, -0.023295078426599503, 0.01758694276213646, -0.007558285724371672, -0.03141051158308983, -0.044908199459314346, 0.015200668945908546, 0.03128436580300331, 0.004948627203702927, 0.01717696711421013, 0.012499028816819191, 0.002972329966723919, 0.04516049474477768, 0.0032824405934661627, 0.024346299469470978, -0.001036767615005374, 0.009056276641786098, -0.04061921685934067, -0.005169383715838194, 0.023673517629504204, 0.0036424840800464153, -0.03916852921247482, -0.009518814273178577, 0.03244071081280708, 0.025586742907762527, 0.054579444229602814, -0.001078159548342228, -0.02333712764084339, -0.007868396118283272, 0.0008022137335501611, 0.032461732625961304, -0.0036240876652300358, -0.006107599474489689, 0.012194174341857433, -0.005539939738810062, -0.04810391739010811, 0.019384533166885376, 0.01587345078587532, 0.005195664241909981, 0.020488316193223, 0.01525322999805212, 0.0033639101311564445, 0.021655172109603882, -0.014780180528759956, 0.016882624477148056, -0.0005722589557990432, -0.029350116848945618, -0.006722564343363047, 0.008698861114680767, 0.005156243685632944, 0.012057515792548656, -0.020709071308374405, 0.04291088134050369, 0.012909005396068096, -0.002589948009699583, -0.029392166063189507, 0.04511844739317894, 0.04343648999929428, 0.008231068029999733, 0.004517626482993364, 0.022075660526752472, 0.021865416318178177, -0.04089253395795822, -0.007284968160092831, 0.02375761605799198, 0.01358178723603487, -0.004751523025333881, -0.02053036354482174, 0.0029618178959935904, -0.007106260396540165, 0.03729735314846039, 0.008493873290717602, -0.010564780794084072, 0.006995881907641888, 0.030401337891817093, 0.005581988487392664, 0.011889319866895676, 0.03498466685414314, -0.0039893873035907745, 0.00045761006185784936, 0.0013435930013656616, 0.0034900568425655365, 0.05256109684705734, -0.007216638419777155, 0.021886439993977547, 0.006317843683063984, -0.014107398688793182, 0.03651944920420647, -0.004362571053206921, -0.021949514746665955, 0.03172587975859642, 0.02838299237191677, 0.05466354265809059, 0.022285904735326767, 0.02926601842045784, 0.00626528263092041, -0.008588483557105064, 0.027710210531949997, 0.017376698553562164, 0.024304252117872238, -0.026658987626433372, 0.013445128686726093, 0.018638165667653084, -0.007831603288650513, -0.006990625988692045, -0.006543856579810381, -0.008483361452817917, -0.01713491789996624, -0.006391429342329502, -0.041565313935279846, -0.029812654480338097, -0.010575292631983757, -0.002859323751181364, -0.0136133236810565, 0.020782656967639923, 0.014233545400202274, 0.014159959740936756, 0.01960528828203678, 0.015705255791544914, 0.022012587636709213, 0.0402197502553463, -0.0019368764478713274, -0.00817325059324503, 0.015589620918035507, 0.007537261117249727, 0.025649815797805786, -3.486279092612676e-05, 0.014475326053798199, -0.0011576581746339798, 0.011857783421874046, -0.018911482766270638, 0.04217502474784851, -0.0026293687988072634, -0.03271402791142464, -0.019468629732728004, 0.02674308605492115, -0.017397722229361534, -0.008446568623185158, -0.01961580105125904, -0.0014677686849609017, 0.005718647502362728, 0.0009638391202315688, -0.0030301471706479788, 0.051215533167123795, -0.03790706396102905, -0.00918242335319519, -0.0022404168266803026, -0.04553893581032753, -0.038621895015239716, -0.01319283526390791, -0.018154602497816086, -0.001921108108945191, -0.01209956407546997, -0.016903648152947426, -0.006254770327359438, -0.021140072494745255, 0.01441225316375494, -0.0048881820403039455, -0.031978171318769455, 0.04961767420172691, 0.023232005536556244, 0.0334288589656353, -0.025376496836543083, 0.016052158549427986, 0.006333612371236086, 0.05138373002409935, 0.020330632105469704, 0.024030933156609535, -0.014790692366659641, -0.0010512219741940498, -0.010953732766211033, 0.019426580518484116, -0.0007503096712753177, -0.0012240165378898382, -0.0067488448694348335, -0.01593652367591858, -0.04856645315885544, -0.023168930783867836, -0.005697622895240784, 0.015610645525157452, -0.024892935529351234, -0.005865818355232477, -0.029371140524744987, 0.014191496185958385, 0.03313451632857323, -0.00387112470343709, 0.00500644464045763, 0.0057869767770171165, 0.009765852242708206, 0.015547572635114193, -0.009597656317055225, 0.005085286218672991, 0.0017923334380611777, -0.004097137600183487, 0.017450284212827682, -0.01667238026857376, 0.01589447632431984, 0.011573953554034233, 0.01713491789996624, 0.0014598844572901726, 0.04856645315885544, 0.007637127302587032, -0.016209842637181282, -0.007101004011929035, 0.03305041790008545, -0.021613122895359993, 0.013329493813216686, 0.004901322070509195, -0.026911281049251556, -0.011174488812685013, -0.017744626849889755, 0.010995781049132347, -0.02213873341679573, -0.019962703809142113, -0.042469367384910583, -0.02127673290669918, 0.03132641315460205, 0.001923736184835434, -0.025818010792136192, 0.05302363634109497, 0.013970739208161831, 0.005634549539536238, 0.004727870691567659, -0.036119986325502396, 0.0059131234884262085, -0.031032072380185127, 0.005266621708869934, 0.015684232115745544, -0.01545296236872673, -0.06004579737782478, 0.0030616838485002518, -0.017755137756466866, -0.0014717107405886054, -0.000336226774379611, -0.0054137930274009705, 0.006543856579810381, -0.016525208950042725, 0.00638091703876853, 0.01590498723089695, 0.05352821946144104, 0.008005054667592049, -0.032419685274362564, -0.0026201705913990736, 0.046169668436050415, -0.010554268024861813, -0.012677736580371857, 0.03765476867556572, 0.01789179816842079, 0.026448743417859077, -0.025586742907762527, 0.008924874477088451, 0.01844894513487816, 0.015200668945908546, 0.012656711973249912, -0.011153465136885643, 0.05129963159561157, 0.031494610011577606, 0.0054978905245661736, 0.026469768956303596, 0.01626240275800228, -0.03748657554388046, 0.0074216267094016075, -0.002136608585715294, -0.011626514606177807, -0.01708235591650009, 0.0018830012995749712, 0.014696083031594753, -0.018564580008387566, 0.022454099729657173, -0.014044324867427349, -0.010212620720267296, -0.005676598288118839, -0.006018245592713356, 0.0002777525514829904, -0.03164178133010864, -0.01315078604966402, 0.003127385163679719, 0.01256210170686245, 0.022054636850953102, -0.021224170923233032, 0.0011110102059319615, -0.015516036190092564, -0.002219392219558358, 0.015042985789477825, 0.015042985789477825, -0.027857381850481033, -0.0062495144084095955, 0.007526749279350042, -0.03305041790008545, 0.012404418550431728, 0.019521191716194153, -0.02594415657222271, -0.03164178133010864, -0.020982390269637108, 0.02211770974099636, 0.009566119872033596, 0.0071483091451227665, -0.02213873341679573, -0.023568395525217056, 0.0039131734520196915, 0.0020893036853522062, -0.017271576449275017, 0.04692654684185982, -0.019479142501950264, 0.02422015368938446, -0.013413592241704464, -0.0051141949370503426, -0.013907666318118572, 0.01836484670639038, -0.0184384323656559, -0.012824907898902893, -0.012351857498288155, -0.0010663332650437951, -0.018932506442070007, 0.023610444739460945, -0.002727920887991786, 0.029854703694581985, -0.024745764210820198, -0.014685570262372494, -0.044571809470653534, -0.022306930273771286, 0.05045865476131439, 0.012047003023326397, 0.008225811645388603, 0.01004968211054802, -0.01668289303779602, 0.02552366815507412, -0.0023034901823848486, 0.04253244027495384, -0.003200970822945237, -0.004444040823727846, 0.0393577478826046, -0.04139712080359459, 0.015978572890162468, -0.003621459472924471, -0.032041244208812714, -0.010380816645920277, -0.006275794934481382, -0.02550264447927475, 0.02333712764084339, 0.002270639408379793, -0.005892098881304264, 0.0096502173691988, 0.0030117507558315992, 0.004102393519133329, -0.007242918945848942, -0.013487177900969982, 0.03553130105137825, -0.020267559215426445, 0.012173149734735489, -0.0031221292447298765, 0.02632259763777256, 0.004591211676597595, -0.03414369001984596, -0.03382832184433937, -0.006727820262312889, -0.004696333780884743, 0.004528138320893049, 0.03765476867556572, -0.01336103118956089, 0.007011650130152702, 0.03799116238951683, 0.004804084077477455, 0.014759155921638012, 0.034395981580019, -0.001320597599260509, 0.05592500790953636, -0.0011478029191493988, 0.009687010198831558, 0.00677512539550662, 0.004472949542105198, 0.01627291552722454, -0.024304252117872238, 0.0006179214105941355, 0.005744928028434515, -0.031095145270228386, 0.013056176714599133, -0.004391479771584272, -0.015158620662987232, 0.0018015316454693675, 0.005471609998494387, 0.021886439993977547, -0.02680615894496441, -0.019437093287706375, -0.011616002768278122, -0.0003741693217307329, -0.033576030284166336, -0.010549012571573257, 0.00596042862161994, -0.02211770974099636, 0.008604251779615879, -0.0017989035695791245, 0.0004806055221706629, 0.04751523211598396, 0.01549501158297062, -0.015326815657317638, -0.014275593683123589, 0.01125858724117279, -0.008777703158557415, -0.008861800655722618, 0.006927552632987499, -0.0032035987824201584, -0.016861600801348686, -0.015421425923705101, -0.012656711973249912, -0.01132166013121605, 0.013907666318118572, 0.03214636817574501, -0.0402197502553463, -0.00607080664485693, 0.0015295279445126653, 0.054453294724226, -0.007926213555037975, -0.038201406598091125, 0.00020679506997112185, -0.02466166578233242, 0.0534861721098423, -0.06198004633188248, 0.002243044786155224, 0.0402197502553463, 0.014590960927307606, -0.016956210136413574, 0.008846032433211803, -0.00012442197476048023, 0.008446568623185158, 0.015694743022322655, 0.012183662503957748, -0.0032929526641964912, -0.012919517233967781, 0.02085624262690544, 0.029560361057519913, 0.025733912363648415, -0.02382068894803524, 0.007048442959785461, -0.061265215277671814, 0.016378037631511688, -0.0042416807264089584, 0.03292427211999893, -0.0022128222044557333, -0.019878607243299484, -0.018501505255699158, -0.00029319236637093127, -0.022832540795207024, -0.018921995535492897, -0.01965785026550293, -0.008152225986123085, -0.0032693003304302692, -0.02010987512767315, -0.011731636710464954, 0.0350477397441864, -0.010570036247372627, 0.008210043422877789, 0.041165851056575775, 0.0010886717354878783, -0.056681886315345764, 0.010538499802350998, -0.010301974602043629, -0.002457231283187866, -0.034101638942956924, -0.025397522374987602, -0.0036372279282659292, 0.04051409289240837, -0.018596116453409195, 0.023610444739460945, 0.009497790597379208, -0.006528088357299566, -0.0053507196716964245, 0.01710338145494461, -0.042069900780916214, 0.023210979998111725, 0.005461098160594702, 0.009918279014527798, -0.030758753418922424, -0.020341144874691963, -0.02548161894083023, 0.0016569886356592178, -0.02213873341679573, 0.009319082833826542, 0.010223133489489555, 0.006785637699067593, 0.005603013094514608, 0.025818010792136192, -0.01718747802078724, 0.005550452042371035, 0.013918178156018257, -0.04169146344065666, -0.02171824499964714, -0.008809239603579044, -0.028088649734854698, 0.0037344659212976694, -0.019899630919098854, -0.021192634478211403, -0.00743213901296258, -0.005697622895240784, 0.002495337976142764, 0.01922684907913208, 0.007221894804388285, 0.00428372947499156, -0.012068027630448341, 0.030695680528879166, -0.07644485682249069, 0.0011451748432591558, 0.004964395426213741, 0.03328168764710426, 0.019405556842684746, -0.01925838552415371, 0.009460997767746449, -0.008914361707866192, -0.010559524409472942, -0.01589447632431984, 0.011121927760541439, 0.01273029763251543, -0.02461961843073368, -0.018879946321249008, -0.004683193750679493, -0.005834281910210848, -0.00036957021802663803, 0.003513709409162402, -0.031137194484472275, -0.011395245790481567, 0.03895828500390053, 0.0335339792072773, 0.015968061983585358, -0.014359692111611366, 0.0023678774014115334, -0.021413391456007957, -0.005303414538502693, -0.0011609431821852922, 0.012604150921106339, 0.05504197999835014, -0.017019283026456833, 0.015684232115745544, 0.005655574146658182, -0.006727820262312889, 0.019783996045589447, 0.01804948039352894, 0.018564580008387566, 0.02045677974820137, -0.01583140157163143, -0.014517375268042088, -0.011637026444077492, 0.00596042862161994, -0.0028041345067322254, 0.013003615662455559, 0.056597787886857986, -0.007779042236506939, 0.008420287631452084, -0.01590498723089695, -0.02764713764190674, -0.016935184597969055, 0.02132929302752018, -0.0036162035539746284, -0.011731636710464954, 0.021907465532422066, 0.020635487511754036, -0.027815332636237144, -0.02262229658663273, 0.009008971974253654, 0.04394107684493065, 0.0029697020072489977, 0.013329493813216686, 0.001935562351718545, -0.03435393422842026, 0.021171608939766884, -0.002604402368888259, 0.001826498075388372, -0.02928704395890236, 0.002001263666898012, -0.007616103161126375, 0.007395346183329821, 0.013960227370262146, 0.026995379477739334, -0.049954067915678024, 0.050038162618875504, 0.008709373883903027, 0.012656711973249912, 0.024535520002245903, -0.016788015142083168, -0.014422765001654625, -0.005203548818826675, -0.00035774396383203566, -0.03811730816960335, -0.01486427802592516, -0.014969400130212307, 0.006906528025865555, -0.009981351904571056, 0.02632259763777256, -0.012709273025393486, 0.0006149648106656969, 0.02002577856183052, 0.016914160922169685, 0.01129012368619442, -0.024051958695054054, -1.0933118574030232e-05, -0.03927365317940712, 0.0035163373686373234, 0.022033611312508583, 0.04848235473036766, 0.005592500790953636, 3.615628520492464e-05, 0.027016403153538704, -0.021991562098264694, 0.02878245711326599, -0.00595517223700881, 0.007595078554004431, -0.03542618080973625, 0.017765650525689125, -0.009524070657789707, 0.02880348078906536, -0.020645998418331146, -0.003923685755580664, -0.009319082833826542, 0.0030958487186580896, 0.013844592496752739, -0.06874991208314896, -0.021245194599032402, 0.017692064866423607, -0.048608504235744476, 0.020772146061062813, 0.0259862057864666, -0.004759407136589289, 0.0016320220893248916, -0.03624613210558891, 0.047851622104644775, -0.03092695027589798, 0.03168382868170738, -0.023967860266566277, 0.028088649734854698], [0.021816080436110497, -0.006267338525503874, 0.048352599143981934, 0.010897408239543438, -0.029343264177441597, 0.01411878876388073, -0.044099949300289154, 0.024325141683220863, 0.0027775100897997618, 0.058516424149274826, -0.005180255975574255, 0.02046586386859417, 0.020635969936847687, 0.012662257067859173, -0.06629876792430878, -0.0002647937217261642, -0.006990288849920034, 0.031894851475954056, -0.02632388472557068, -0.032341379672288895, 0.024155035614967346, 0.045801009982824326, -0.05413619801402092, -0.015362687408924103, -0.027429573237895966, -0.0334683321416378, 0.010068141855299473, -0.03170348331332207, 0.05345577374100685, -0.06111053749918938, 0.028769157826900482, -0.036126237362623215, 0.017233852297067642, -0.0385502465069294, -0.003569565713405609, 0.00447059515863657, -0.0031522747594863176, -0.007426185067743063, 0.022730398923158646, 0.013938050717115402, -0.00038639287231490016, 0.006485286634415388, 0.017233852297067642, 0.010652881115674973, -0.0028705368749797344, 0.0433344729244709, 0.003790171816945076, -0.06510802358388901, -0.0026127200108021498, 0.0034366704057902098, 0.03695550188422203, 0.0659160315990448, -0.006044074892997742, 0.0018605331424623728, -0.003224038053303957, -0.002164863282814622, 0.022028712555766106, 0.01862659491598606, 0.02734452113509178, -0.005108492448925972, -0.016319533810019493, -0.024367667734622955, -0.03385107219219208, -0.00846808310598135, 0.0008046805742196739, 0.016627850010991096, -0.014342051930725574, 0.02398492954671383, -0.01389552466571331, -0.020561547949910164, -0.004925096873193979, 0.05409367009997368, 0.032362643629312515, -0.03504181280732155, -0.02165660448372364, 0.020093757659196854, -0.03197990730404854, 0.005238729529082775, 0.01975354552268982, -0.004797517322003841, -0.058686528354883194, 0.012874889187514782, -0.023219453170895576, -0.01623447984457016, 0.010498722083866596, -0.013108784332871437, -0.049288179725408554, -0.026196306571364403, 0.0037130925338715315, -0.03640265762805939, -0.003917751368135214, -0.007500606123358011, -0.05855895206332207, 0.02993863634765148, 0.002984826685860753, 0.019594071432948112, 0.047459542751312256, -0.006634129676967859, 0.0013794524129480124, 0.02725946716964245, -0.02472914382815361, -0.04122941195964813, -0.03910309076309204, 0.00999903678894043, -0.011088777333498001, -0.03361717611551285, 0.0008983716834336519, 0.058984216302633286, 0.01667037606239319, 0.005645389202982187, 0.04873533546924591, 0.0012405768502503633, 8.434693882009014e-05, 0.042675312608480453, -0.025133144110441208, 0.006469339597970247, -0.004608806222677231, -0.0381462462246418, 0.025090618059039116, 0.007782344240695238, -0.04584353417158127, 0.0018937569111585617, 0.0433344729244709, -0.05626252293586731, -0.001588097889907658, -0.030002424493432045, 0.005382256582379341, -0.006692603230476379, -0.05341324582695961, -0.00812787190079689, 0.00798966083675623, -0.0537109337747097, 0.07531438022851944, -0.03395738825201988, -0.007277342490851879, -0.01698932610452175, -0.004279226064682007, -0.027939891442656517, 0.012524046003818512, 0.004260621033608913, 0.040357619524002075, 0.004715122282505035, -0.031873591244220734, 0.019838599488139153, -0.093388132750988, 0.019019965082406998, -0.004457305651158094, 0.02496303804218769, 0.020540285855531693, -0.03359591215848923, 0.007628185674548149, 0.03844393044710159, -0.010881461203098297, -0.010084089823067188, 0.03572223708033562, 0.025834830477833748, 0.015819847583770752, 0.02494177594780922, -0.0033675648737698793, 0.015607214532792568, -0.014544053003191948, -0.03525444492697716, 0.02169913239777088, -0.011545936577022076, 0.024197561666369438, 0.003333012107759714, 0.025260724127292633, 0.02587735839188099, -0.029003053903579712, -0.02169913239777088, -0.030789164826273918, -0.039400774985551834, -0.0399748831987381, -0.03838013857603073, -0.02045523189008236, -0.04256899654865265, 0.05715557560324669, 0.039166878908872604, -0.0023123768623918295, 0.009467455558478832, -0.01835017278790474, 0.0032639065757393837, -0.0913468599319458, -0.03312812000513077, -0.0339786522090435, 0.03208622336387634, 0.01553279347717762, 0.026749150827527046, -0.0498410239815712, 0.010993092320859432, -0.009711982682347298, -0.044142477214336395, -0.0016545455437153578, -0.009090033359825611, -0.015330792404711246, 0.017287010326981544, -0.02396366558969021, -0.03463781252503395, 0.016819220036268234, -0.023028085008263588, 0.019944915547966957, -0.03650897368788719, 0.024431457743048668, 0.019211333245038986, -0.03831635043025017, 0.0018645200179889798, -0.014788580127060413, 0.0068627092987298965, 0.022028712555766106, -0.04877786338329315, 0.012662257067859173, -0.025048092007637024, -0.035637181252241135, 0.025069354102015495, -0.005539072677493095, 0.0055656516924500465, -0.02589862048625946, 0.03015126846730709, 0.00752718560397625, 0.03769971802830696, -0.04473784938454628, -0.005847389809787273, 0.0005658013978973031, -0.0371256098151207, -0.05392356589436531, -0.008372399024665356, 0.02568598836660385, -0.04724691063165665, -0.012343307957053185, -0.07391100376844406, -0.010206352919340134, 0.03655150160193443, -0.0005196203128434718, -0.0118755167350173, 0.026068726554512978, 0.00859034713357687, 0.020593443885445595, -0.03506307676434517, 0.010206352919340134, -0.025728514418005943, 0.017085010185837746, -0.040570251643657684, -0.00361740798689425, 0.00871261116117239, 0.014618474058806896, 0.0004096495104022324, 0.002243271330371499, -0.04584353417158127, 0.03971972316503525, 0.002830668119713664, 0.010493407025933266, -0.022262606769800186, 0.09398350119590759, -0.09670519828796387, 0.0007668054313398898, 0.0409955196082592, -0.020891128107905388, -0.03993235528469086, -0.003620065748691559, -0.02828010357916355, -0.00894119031727314, 0.007941818796098232, -0.004191515501588583, -0.003208090551197529, -0.061323169618844986, -0.005507178138941526, -0.015001212246716022, 0.031108113005757332, -0.031150640919804573, 0.03765719011425972, -0.04652395844459534, 0.02664283476769924, -0.011545936577022076, -0.0050606499426066875, -0.05979221686720848, 0.03057653270661831, -0.007702607195824385, -0.018892385065555573, -0.005015465896576643, -0.0013037021271884441, -0.06191854178905487, 0.008898664265871048, -0.04724691063165665, -0.05745326355099678, 0.050946712493896484, 0.018020592629909515, -0.023580927401781082, -0.016277005895972252, -0.02961968630552292, 0.02024259977042675, 0.06991352140903473, 0.0007209565956145525, 0.01237520296126604, -0.007596290670335293, 0.04937323182821274, 0.04945828765630722, 0.0017502300906926394, -0.021241972222924232, -0.011971201747655869, 0.017924906685948372, -0.009685403667390347, 0.015043739229440689, -0.006958393845707178, -0.05485914647579193, -0.056602731347084045, 0.02940705418586731, 0.008574400097131729, 0.010801723226904869, 0.0062141804955899715, 0.0037290400359779596, -0.01809501275420189, 0.037338241934776306, -0.04665153846144676, -0.058771584182977676, 0.006809551268815994, -0.02725946716964245, -0.02828010357916355, 0.02258155681192875, 0.01023824792355299, -0.006272654514759779, 0.012385834939777851, 0.01697869412600994, 0.020806076005101204, 0.0034207229036837816, -0.02821631357073784, -0.022709134966135025, 0.015352056361734867, 0.049798496067523956, -0.016117531806230545, -0.015086265280842781, -0.010636933147907257, -0.008414925076067448, 0.041101835668087006, 0.003489828435704112, -0.02587735839188099, -0.005148360971361399, -0.010030931793153286, 0.01881796307861805, 0.01979607157409191, 0.025728514418005943, 0.02402745559811592, -0.02002996765077114, -0.02162471041083336, 0.021592816337943077, -0.008611610159277916, 0.02161407843232155, 0.03217127546668053, 0.053200613707304, -0.014937423169612885, 0.03385107219219208, 0.0169361662119627, 0.03512686491012573, -0.01600058563053608, 0.0023549033794552088, -0.015713531523942947, 0.005089886952191591, 0.049075547605752945, 0.014937423169612885, 0.006915867328643799, 0.01909438520669937, 0.011152567341923714, 0.015437109395861626, 0.02472914382815361, 0.03342580795288086, 0.03954961895942688, -0.0034579336643218994, -0.022539028897881508, -0.0076760281808674335, 0.012736678123474121, -0.03223506361246109, 0.027238205075263977, 0.009626929648220539, 0.022709134966135025, -0.0019761519506573677, 0.02421882562339306, -0.016585323959589005, 0.05366840586066246, 0.0319373793900013, -0.02332576923072338, 0.025771042332053185, -0.004398831631988287, 0.02421882562339306, -0.010769829154014587, 0.004382884595543146, -0.017946170642971992, 0.022071238607168198, -0.06765961647033691, -0.02281545102596283, 0.0031522747594863176, 0.007745133712887764, 0.016776692122220993, -0.0013475575251504779, -0.02968347631394863, 0.04703427851200104, -0.04588606208562851, 0.0348929688334465, 0.022007448598742485, 0.006756393238902092, 0.013714786618947983, -0.03557339310646057, -0.02093365602195263, -0.06816993653774261, 0.027833575382828712, -0.03155464306473732, -0.039188142865896225, -0.010514670051634312, -0.03132074698805809, -0.015288266353309155, -0.029470844194293022, -0.02071039192378521, 0.020806076005101204, 0.018445856869220734, 0.04312184080481529, 0.010147878900170326, 0.037742242217063904, -0.003497802186757326, -0.03738076984882355, 0.057283155620098114, -0.006070653907954693, -0.06706424802541733, 0.04826754331588745, 0.0390605628490448, 0.012747310101985931, -0.008765769191086292, -0.06166338175535202, -0.0019934282172471285, 0.058984216302633286, -0.008834874257445335, 0.025026828050613403, -0.042973000556230545, -0.006320496555417776, -0.01956217736005783, -0.020402073860168457, 0.01480984315276146, -0.050011128187179565, -0.029088106006383896, 0.011375831440091133, 0.0090794013813138, -0.0015761373797431588, -0.04346205294132233, 0.013938050717115402, -0.01576668955385685, 0.04312184080481529, 0.011418357491493225, -0.05715557560324669, -0.019583439454436302, -0.013491522520780563, 0.028131261467933655, -0.024899248033761978, 0.008659453131258488, -0.015033107250928879, -0.029577160254120827, -0.053795985877513885, -0.012991837225854397, -0.013650997541844845, -0.0015588609967380762, -0.009589719586074352, -0.03527570888400078, 0.007734501734375954, -0.023474611341953278, 0.010737934149801731, 0.04758712276816368, 0.0794394463300705, 0.032617803663015366, -0.003216064302250743, 0.015139423310756683, -0.004760306794196367, -0.0021170207764953375, 0.004547674674540758, -0.027110625058412552, 0.006676655728369951, 0.009680087678134441, -0.054731566458940506, -0.004861307330429554, 0.027153151109814644, -0.008707295171916485, -0.01761659048497677, -0.0625564381480217, -0.0016372691607102752, -0.017095642164349556, 0.04682164639234543, 0.02657904475927353, -0.04614122211933136, -0.017935538664460182, 0.07186973839998245, -0.030406426638364792, 0.05864400416612625, -0.010567828081548214, -0.015851741656661034, -0.02757841721177101, -0.035700973123311996, 0.02685546688735485, 0.036147501319646835, -0.007319869007915258, 0.007947133854031563, 0.017584696412086487, -0.05643262714147568, 0.009626929648220539, 0.02568598836660385, 0.04263278841972351, 0.007032815366983414, -0.05273282527923584, 0.013438364490866661, -0.014161314815282822, 0.011482147499918938, -0.013799839653074741, 0.004903833847492933, -0.029832320287823677, -0.026600306853652, -0.004125067498534918, -0.03653023764491081, 0.007649449165910482, 0.03689171373844147, 0.01597932167351246, -0.024431457743048668, -0.02942831814289093, 0.033298227936029434, -0.0020651917438954115, -0.04431258141994476, 0.025473356246948242, 0.022730398923158646, -0.030895480886101723, -0.0047815702855587006, 0.011428989470005035, -0.005783600267022848, 0.013693523593246937, -0.0021183497738093138, 0.003681197762489319, 0.022241344675421715, 0.012640993110835552, -0.011514042504131794, -0.04899049550294876, -0.06332191824913025, -0.004574253689497709, 0.010450880043208599, 0.005974969360977411, -0.005916495341807604, 0.005384914577007294, -0.03176727518439293, -0.019381439313292503, 0.028386419638991356, -0.00013314440730027854, 0.01517131831496954, 0.0029369844123721123, 0.009919299744069576, -0.03185232728719711, 0.03574349731206894, 0.041782256215810776, 0.02351713925600052, -0.005592231173068285, -0.010041562840342522, 0.03323443606495857, -0.01860533095896244, -0.00019535596948117018, -0.0034393284004181623, 0.022687872871756554, 0.022687872871756554, -0.06481034308671951, 0.0008910624892450869, -0.026515254750847816, -0.005273282527923584, 0.02396366558969021, 0.005233414005488157, -0.011269514448940754, 0.023602191358804703, 0.008457452058792114, 0.0049463603645563126, -0.030321374535560608, -0.0395708829164505, 0.001932296552695334, 0.013470259495079517, 0.0008505294099450111, 0.008563768118619919, -0.011503410525619984, 0.0508616603910923, 0.029088106006383896, -0.013980577699840069, -0.029024315997958183, 0.037742242217063904, 0.025260724127292633, 0.00441212160512805, 0.060174956917762756, -0.04256899654865265, -0.002550259232521057, 0.01424636784940958, 0.0046380432322621346, -0.033766016364097595, -0.02613251656293869, -0.000546863826457411, 0.04584353417158127, -0.015830479562282562, 0.016999956220388412, 0.0036333552561700344, -0.005932442843914032, 0.0088242432102561, 0.043674685060977936, -0.007994976826012135, -0.01648963987827301, -0.018552172929048538, -0.004848017822951078, 0.006384286563843489, 0.009706666693091393, 0.03038516268134117, 0.019679125398397446, -0.05532693862915039, -0.004757648799568415, 0.02589862048625946, -0.017127536237239838, 0.020338285714387894, 0.009929930791258812, 0.014033735729753971, -0.0009342533885501325, -0.005042044911533594, -0.05324314162135124, -0.014033735729753971, 0.002063862746581435, -0.0503513403236866, -0.02421882562339306, -0.013098153285682201, 0.014171946793794632, -0.04375973716378212, 0.017031852155923843, 0.015341424383223057, -0.0052972035482525826, -0.008250134997069836, -0.026791676878929138, -0.013767944648861885, -0.0324476957321167, -0.04046393558382988, -0.02898178994655609, -0.028556525707244873, 0.011386462487280369, -0.022283870726823807, -0.006166338454931974, 0.016064373776316643, -0.011726674623787403, 0.03595612943172455, -0.0219223964959383, -0.026919256895780563, 0.030087478458881378, 0.02025323174893856, -0.010573144070804119, 0.03952835500240326, -0.039443302899599075, 0.002018678467720747, 0.029385792091488838, -0.02166723646223545, 0.021752290427684784, 0.027493363246321678, 0.004478569142520428, -0.012779204174876213, -0.011811727657914162, -0.0009947207290679216, -0.0010206353617832065, 0.04031509533524513, 0.02045523189008236, -0.04775722697377205, -0.00536365108564496, 0.015660373494029045, 0.008585031144320965, -0.030661584809422493, 0.02655778080224991, -0.018211960792541504, 0.05111681669950485, 0.046694066375494, 0.014416473917663097, 0.018509646877646446, -0.00837771501392126, -0.0009860825957730412, -0.01742522232234478, -0.04161215201020241, 0.009143191389739513, 0.029492108151316643, -0.07454890012741089, -0.012120043858885765, -0.04358963295817375, -0.03491423279047012, 0.005608178209513426, -0.040123727172613144, 0.026196306571364403, -0.03835887834429741, -0.01956217736005783, -0.007553764618933201, 0.009047506377100945, -0.009839562699198723, -0.010307352989912033, 0.035658445209264755, -0.009940562769770622, -0.0002887148584704846, 0.017988696694374084, -0.010472143068909645, 0.03599865734577179, 0.00034884994965977967, 0.003269222564995289, 0.049118075519800186, 0.06880783289670944, -0.00967477262020111, -0.022092502564191818, -0.006713866721838713, -0.085648313164711, 0.024537773802876472, -0.019370807334780693, 0.008664768189191818, -0.04563090205192566, -0.015288266353309155, -0.02005123160779476, -0.035211917012929916, -0.02847147174179554, 0.06714929640293121, 0.01622384786605835, -0.01022761594504118, -0.027769785374403, -0.05009618401527405, -0.026600306853652, -0.002373508643358946, -0.014905528165400028, 0.01036051195114851, -0.023347033187747, -0.002176823792979121, 0.010408353991806507, -0.00013513783051166683, 0.011684147641062737, -0.02353840135037899, -0.002828010357916355, -0.003542986698448658, -0.024069983512163162, 0.015437109395861626, -0.010690092109143734, 0.008946506306529045, -0.027450837194919586, 0.04259026050567627, -0.018169434741139412, 0.013980577699840069, -0.02591988444328308, -0.03844393044710159, 0.004114435985684395, -0.029130632057785988, -0.02285797894001007, -0.019477123394608498, -0.01082830224186182, -0.013353311456739902, -0.02851399965584278, -0.010418985038995743, 0.016659745946526527, -0.0013581891544163227, -0.025473356246948242, -0.00495167588815093, -0.007994976826012135, 0.016128163784742355, 0.03691297769546509, -0.009238875471055508, 0.004324410576373339, -0.023134401068091393, -0.0181588027626276, 0.0007176342187449336, 0.01367226056754589, -0.013363943435251713, -0.004329726565629244, -0.02328324317932129, 0.02098681405186653, 0.004983570892363787, 0.011216356419026852, -0.015862373635172844, 0.02326197922229767, 0.0009707995923236012, -0.01621321775019169, -0.02234766073524952, 0.00032808506512083113, 0.03382980823516846, -0.01742522232234478, -0.02730199508368969, 0.003774224314838648, 0.029981162399053574, 0.030300110578536987, 0.023155663162469864, -0.014671632088720798, -0.02355966530740261, 0.006501234136521816, -0.004366937093436718, -0.03185232728719711, 0.03406370431184769, -0.035849813371896744, -0.010100036859512329, -0.01908375322818756, 0.0012259584618732333, -0.002152902539819479, -0.013459628447890282, -0.00885082222521305, 0.011577831581234932, 0.010057510808110237, -0.03459528461098671, -0.0017728222301229835, -0.019381439313292503, -0.019668493419885635, -0.0015814531361684203, 0.0037316977977752686, 0.01791427657008171, -0.022241344675421715, -0.03674286976456642, -0.0008864111150614917, -0.015426477417349815, -0.02915189601480961, -0.016393953934311867, 0.005858021322637796, 0.10920798033475876, -0.03480791673064232, 0.0013688207836821675, -0.011567200534045696, -0.014533421024680138, 0.012938679195940495, -0.034212544560432434, 0.029088106006383896, -0.024367667734622955, 0.009026243351399899, -0.021284498274326324, -0.027684733271598816, -0.012407097965478897, 0.01411878876388073, -0.0005721139023080468, 0.000913654628675431, 0.006134443450719118, -0.04076162353157997, -0.0007136473432183266, -0.0019562176894396544, 0.0013528733979910612, -0.01881796307861805, 0.002218021312728524, -0.0004152975743636489, -0.01425699982792139, 0.01480984315276146, -0.0004966958658769727, 0.001089740777388215, -0.016872378066182137, -0.012800468131899834, 0.011195093393325806, -0.024431457743048668, -0.04495048150420189, -0.012417729943990707, 0.0036014604847878218, -0.020614705979824066, 0.032341379672288895, -0.011854253709316254, -0.026940518990159035, -0.03931572288274765, -0.025537146255373955, -0.00011420682858442888, 0.015043739229440689, 0.013704155571758747, -0.03699802979826927, 0.025133144110441208, 0.01093993429094553, -0.018871121108531952, -0.014841738156974316, -0.038465194404125214, 0.020635969936847687, -0.002976852934807539, 0.009345192462205887, -0.041803520172834396, 0.019955545663833618, -0.0020731654949486256, -0.029236948117613792, 0.01738269440829754, 0.010504038073122501, -0.031873591244220734, 0.026961782947182655, 0.011056882329285145, 0.019891757518053055, -0.01540521439164877, 0.037572138011455536, -0.008319240994751453, -0.013257627375423908, -0.02165660448372364, -0.0022539030760526657, 0.010743250139057636, -0.01480984315276146, 0.004991544410586357, -0.016117531806230545, 0.006283286027610302, 0.030661584809422493, -0.013810471631586552, 0.002891800133511424, 0.029088106006383896, 0.016106901690363884, 0.03302180394530296, 0.006267338525503874, -0.012003096751868725, -0.018084382638335228, 0.030916744843125343, 0.02185860648751259, 0.019817335531115532, 0.018647857010364532, -0.0031735380180180073, 0.025324514135718346, 0.004436042625457048, -0.006405549589544535, 0.008861453272402287, -0.007782344240695238, -0.004457305651158094, -0.0003943665651604533, 0.012747310101985931, -0.03701929375529289, -0.00940366555005312, 0.022964294999837875, 0.003141643013805151, -0.007739817723631859, -0.0008252793340943754, -0.011216356419026852, 0.004845359828323126, 0.032383907586336136, -0.00895182229578495, 0.026536518707871437, -0.02236892469227314, -0.012524046003818512, -0.042228784412145615, 0.019434597343206406, 0.03013000451028347, 0.0063470760360360146, 0.013863629661500454, 0.014916160143911839, -0.014171946793794632, 0.04216499626636505, 0.00023472619068343192, 0.016851114109158516, 0.0010771157685667276, -0.0006717853248119354, -0.04288794472813606, -0.0033489596098661423, 0.022539028897881508, -0.0019017306622117758, -0.028407683596014977, -0.01811627671122551, 0.019594071432948112, 0.03889045864343643, 0.06383223086595535, 0.010791092179715633, -0.009143191389739513, 0.005411493591964245, -0.013980577699840069, 0.014076261781156063, -0.0026167070027440786, -0.0009462139569222927, -0.01070072315633297, 0.0007016867748461664, -0.037784770131111145, 0.0209549181163311, 0.014852370135486126, -0.004521095659583807, 0.011769200675189495, -0.0032373275607824326, 0.02304934710264206, 0.016521533951163292, 0.0013203140115365386, -0.003588170977309346, -0.00600686389952898, -0.029832320287823677, -0.005608178209513426, 0.0320436954498291, -0.012928047217428684, 0.007824870757758617, -0.0251756701618433, 0.03701929375529289, 0.011375831440091133, -0.0022565608378499746, -0.014480262994766235, 0.03840140253305435, 0.03321317210793495, 0.024346403777599335, 0.002515706466510892, 0.008872085250914097, 0.053753457963466644, -0.04339826479554176, -0.006538445129990578, 0.03840140253305435, 0.02566472440958023, -0.002280482091009617, -0.00453172717243433, 0.009600350633263588, -0.01745711639523506, 0.040889203548431396, 0.0033994598779827356, -0.014310157857835293, 0.01116319838911295, 0.027429573237895966, -0.003497802186757326, 0.010647565126419067, 0.0428241565823555, -0.001149543677456677, -0.009882088750600815, 0.004954333882778883, 0.010456196032464504, 0.0390605628490448, 0.004773596301674843, 0.020391443744301796, 0.01883922703564167, -0.007808923255652189, 0.026493990793824196, 0.003455275669693947, -0.025303250178694725, 0.03502054885029793, 0.017510274425148964, 0.05349830165505409, 0.011014356277883053, 0.030938006937503815, 0.006538445129990578, -0.01861596293747425, 0.028662841767072678, 0.03206495940685272, 0.006751077249646187, -0.03225632756948471, 0.009913983754813671, 0.020125651732087135, -0.0021954290568828583, -0.0026020884979516268, -0.013948682695627213, -0.02047649584710598, -0.01977480947971344, -0.020572179928421974, -0.044610269367694855, -0.025600936263799667, 0.009382402524352074, -0.017978064715862274, -0.009584403596818447, 0.006644761189818382, 0.014533421024680138, 0.02026386372745037, 0.02472914382815361, 0.02025323174893856, 0.040591515600681305, 0.045290689915418625, -0.0017236510757356882, -0.0075325011275708675, 0.02706809900701046, 0.01532016135752201, 0.022007448598742485, 0.005858021322637796, 0.018467120826244354, -0.002517035463824868, -0.004337700083851814, -0.008845506235957146, 0.03064032271504402, 0.0016013873973861337, -0.02260281890630722, -0.00988740473985672, 0.038741614669561386, -0.023006821051239967, -0.005387572105973959, -0.035637181252241135, 0.004356305580586195, 0.004212778527289629, 0.001988112460821867, 0.0014206499326974154, 0.05804863199591637, -0.040889203548431396, -0.00593775836750865, 0.018871121108531952, -0.0461837463080883, -0.04188857227563858, -0.0008379044011235237, -0.007899291813373566, -0.015033107250928879, -0.0032346697989851236, -0.013916787691414356, 0.0014817817136645317, -0.015660373494029045, 0.021986184641718864, -0.010929303243756294, -0.04076162353157997, 0.04448268935084343, 0.020614705979824066, 0.029768530279397964, -0.020327653735876083, 0.022475240752100945, 0.022453976795077324, 0.04652395844459534, 0.020561547949910164, 0.034935496747493744, 0.002191442297771573, -0.010222300887107849, -0.004175567999482155, 0.012874889187514782, -0.0004096495104022324, 0.010041562840342522, 0.003952303901314735, -0.011248251423239708, -0.02632388472557068, -0.02166723646223545, 0.0036891712807118893, 0.02468661591410637, -0.011769200675189495, 0.002894457895308733, -0.02993863634765148, -0.003598802722990513, 0.03104432299733162, -0.007101920899003744, 0.01769101247191429, 0.006373655050992966, 0.012311412952840328, 0.015022476203739643, -0.010690092109143734, -0.0006279299268499017, 0.008138502947986126, 0.004013435915112495, 0.014214472845196724, -0.019700387492775917, 0.010445564053952694, 0.012417729943990707, 0.0029343264177441597, 0.007665396202355623, 0.02828010357916355, 0.018180066719651222, -0.009222928434610367, -0.006974341347813606, 0.01072730217128992, -0.019572807475924492, 0.04652395844459534, 0.017063746228814125, -0.010355195961892605, -0.01857343688607216, -0.014767317101359367, 0.009781088680028915, -0.030512742698192596, -0.018658488988876343, -0.03302180394530296, -0.01047745905816555, 0.030767902731895447, 0.002093099756166339, -0.02445272170007229, 0.03982603922486305, 0.01316194236278534, 0.017127536237239838, -0.011014356277883053, -0.027131889015436172, -0.008664768189191818, -0.034467704594135284, 0.013246995396912098, 0.013991208747029305, -0.012141307815909386, -0.05200987309217453, -0.0022645345889031887, -0.001977480947971344, 0.012322044931352139, -0.007931186817586422, -0.0044626216404139996, 0.003699803026393056, -0.024559037759900093, 0.011567200534045696, 0.008505294099450111, 0.05749578773975372, 0.019413333386182785, -0.021571552380919456, -0.004393516108393669, 0.046694066375494, -0.014926791191101074, 0.01223699189722538, 0.015203213319182396, 0.031129376962780952, 0.013055626302957535, -0.03678539767861366, 0.01116319838911295, 0.012120043858885765, 0.021327024325728416, 0.01667037606239319, -0.02115692012012005, 0.06128064543008804, 0.030512742698192596, -0.008760453201830387, 0.024771669879555702, 0.018435224890708923, -0.034255072474479675, 0.0010379116283729672, -0.009642877615988255, -0.00802687183022499, -0.011577831581234932, 0.004255305044353008, 0.008499978110194206, 0.000737568479962647, 0.017148800194263458, -0.006123811937868595, -0.014714159071445465, 0.0037316977977752686, -0.010482775047421455, -0.019477123394608498, -0.03993235528469086, -0.012034991756081581, 0.0002147919003618881, 0.02185860648751259, 0.026919256895780563, -0.029555898159742355, -0.00576765276491642, -0.014512157998979092, -0.022709134966135025, 0.014639738015830517, 0.023495875298976898, -0.01791427657008171, 8.027702278923243e-05, 0.022709134966135025, -0.021305762231349945, -0.008973085321485996, 0.025069354102015495, -0.013119416311383247, -0.02898178994655609, -0.010073457844555378, 0.00953656155616045, 0.00882955826818943, -0.009244191460311413, -0.014171946793794632, -0.02047649584710598, -0.005081913433969021, 0.01131204143166542, -0.021327024325728416, 0.040825411677360535, -0.02587735839188099, 0.03982603922486305, -0.017297642305493355, -0.007319869007915258, -0.01651090197265148, 0.03389359638094902, -0.01623447984457016, -0.02353840135037899, -0.008414925076067448, 0.0017369405832141638, -0.01577732153236866, 0.022049974650144577, 0.017956802621483803, 0.03127821907401085, -0.017063746228814125, 0.0042366995476186275, -0.03889045864343643, -0.019487755373120308, 0.041527099907398224, 0.012088149785995483, 0.00215024477802217, 0.013916787691414356, -0.01769101247191429, 0.02330450527369976, 0.004382884595543146, 0.0329580157995224, -0.007606922648847103, 0.0033675648737698793, 0.0513719767332077, -0.02725946716964245, 0.012928047217428684, -0.0001468492264393717, -0.030406426638364792, -0.02991737239062786, -0.00018788062152452767, -0.03172474727034569, 0.016298269852995872, -0.007458080071955919, -0.0032851698342710733, 0.008553136140108109, 0.012077517807483673, -0.0002573183737695217, -0.010562512092292309, -0.024814195930957794, 0.020072493702173233, -0.018499014899134636, 0.021061234176158905, -0.017605958506464958, 0.029279476031661034, 0.0003373877552803606, -0.03601992130279541, -0.030980534851551056, -0.012066885828971863, -0.01153530552983284, 0.0038885141257196665, 0.0025196934584528208, -0.012045622803270817, 0.00846808310598135, 0.028195049613714218, 0.031639695167541504, 0.018977437168359756, 0.030108742415905, -0.0102488799020648, 0.045290689915418625, 0.022453976795077324, 0.019158175215125084, 0.008909295313060284, 0.013587207533419132, 0.024325141683220863, -0.0306190587580204, 0.0011110040359199047, 0.0050287554040551186, -0.010179773904383183, 0.007282658014446497, 0.0002431982575217262, -0.010716671124100685, -0.0030964587349444628, 0.006889288313686848, 0.019881125539541245, -0.017807960510253906, -0.015352056361734867, 0.0015030449721962214, -0.006001548375934362, -0.04380226507782936, -0.0036865135189145803, -0.0020505732391029596, -0.026493990793824196, 0.009121928364038467, 0.004747017286717892, 0.012141307815909386, 0.0413995198905468, 0.028386419638991356, 0.006517181638628244, -0.025728514418005943, 0.00587928481400013, -0.02074228599667549, -0.01624511182308197, 0.006990288849920034, -0.0026672070380300283, -0.014863001182675362, -0.007792975753545761, -0.013193837366998196, -0.007963081821799278, -0.006793603766709566, 0.030725374817848206, -0.02332576923072338, -0.006198232993483543, -0.009036875329911709, 0.04865028336644173, -0.01858406700193882, -0.04071909561753273, -1.03928214230109e-05, -0.04216499626636505, 0.054008617997169495, -0.06604360789060593, -0.0029263528995215893, 0.02396366558969021, 0.0002539959968999028, -0.013374575413763523, 0.02615378051996231, 0.002021336229518056, 0.0006359036196954548, 0.026196306571364403, 0.005105834454298019, -0.00666070869192481, -0.004964965395629406, 0.012853626161813736, 0.019243227317929268, 0.015341424383223057, -0.013789208605885506, 0.0073570795357227325, -0.048820387572050095, 0.014480262994766235, -0.0034765389282256365, 0.03555212914943695, -0.01789301261305809, 0.005281256046146154, -0.022730398923158646, -0.007277342490851879, -0.01650026999413967, -0.024516509845852852, -0.01860533095896244, -0.0034021176397800446, -0.018413962796330452, -0.007442132569849491, -0.0016864403150975704, 0.03506307676434517, -0.00822887197136879, 0.01367226056754589, 0.053200613707304, 0.009361139498651028, -0.03680666163563728, -0.0005980284768156707, -0.013874261640012264, 0.00024552393006160855, -0.03761466220021248, -0.017276378348469734, -0.005023439414799213, 0.039209406822919846, -0.023134401068091393, 0.011226988397538662, 0.011939306743443012, 0.0030379847157746553, 0.006655392702668905, 0.03646644949913025, -0.04042141139507294, 0.02891799993813038, -0.0012538664741441607, 0.0063577075488865376, -0.017116904258728027, -0.026281358674168587, -0.029811056330800056, 0.0006166338571347296, -0.020795444026589394, -0.006666024215519428, -0.011769200675189495, -0.014416473917663097, 0.01281109917908907, 0.019594071432948112, -0.0076760281808674335, -0.00013007120287511498, 0.016319533810019493, -0.03642392158508301, -0.026515254750847816, -0.00822887197136879, -0.026493990793824196, 0.0006395582458935678, -0.02585609443485737, -0.03055526874959469, -0.01621321775019169, -0.005820810794830322, -0.0055656516924500465, 0.011556568555533886, 0.00464335922151804, -0.0021701790392398834, -0.003239985555410385, 0.022879241034388542, -0.06493791937828064, 0.0076547646895051, 0.004438700620085001, 0.02591988444328308, 0.007197605445981026, -0.009690719656646252, 0.0046167802065610886, 0.005969653371721506, -0.0030619059689342976, -0.014384578913450241, 0.02098681405186653, 0.003588170977309346, -0.021241972222924232, -0.015118160285055637, -0.015128792263567448, -0.00871792621910572, -0.0026313255075365305, 0.006963709834963083, -0.017924906685948372, -0.01580921560525894, 0.03695550188422203, 0.04299426078796387, 0.01789301261305809, -0.011205725371837616, 0.01260909903794527, -0.02734452113509178, -0.0014897554647177458, -0.02449524775147438, 0.003051274223253131, 0.04052772745490074, -0.012896152213215828, 0.01719132624566555, 0.018881753087043762, -0.0022525740787386894, 0.030002424493432045, 0.02396366558969021, 0.033276963979005814, 0.011864885687828064, -0.023857349529862404, -0.017372064292430878, -0.022772924974560738, 0.00288382638245821, 0.01788238063454628, 0.01001498382538557, 0.06557581573724747, -0.016851114109158516, 0.005528441164642572, -0.018647857010364532, -0.01718069426715374, -0.015373319387435913, 0.03410622850060463, -0.001520321355201304, -0.02115692012012005, 0.01696806214749813, 0.006953077856451273, -0.04091046378016472, -0.021337656304240227, 0.020380811765789986, 0.03808245435357094, 0.001157517428509891, 0.0038513035979121923, -0.007702607195824385, -0.03161843121051788, 0.03480791673064232, -0.024069983512163162, -0.004029382951557636, -0.018754173070192337, 0.014182577840983868, -0.015958057716488838, 0.00677234074100852, 0.018988069146871567, 0.03319191187620163, -0.05864400416612625, 0.03574349731206894, 0.01886048913002014, 0.01131204143166542, 0.025749778375029564, -0.012343307957053185, -0.018445856869220734, -0.015936795622110367, -0.00677234074100852, -0.027833575382828712, -0.015692267566919327, -0.00279345759190619, 0.021327024325728416, -0.026089990511536598, 0.023899877443909645, -0.012056254781782627, 0.011322672478854656, 0.03606244921684265, 0.02098681405186653, 0.01740395836532116, -0.040612779557704926, -0.002665878040716052, -0.024665353819727898, 0.017552800476551056, 0.018190698698163033, 0.027854839339852333, -0.004053304437547922, -0.006735129747539759, 0.02096555009484291, -0.033999912440776825, 0.017776064574718475, 0.013810471631586552, 0.009281402453780174, -0.03151211515069008, 0.01739332638680935, -0.015415845438838005, 0.046991750597953796, -0.012258254922926426, 0.02116755023598671, -0.008250134997069836, 0.008457452058792114, 0.02024259977042675, -0.06404486298561096, -0.012832362204790115, -0.007633501663804054, -0.02821631357073784, 0.01096119824796915, 0.03087421879172325, -0.00027393028722144663, 0.0031841695308685303, -0.02564346231520176, 0.04614122211933136, -0.05715557560324669, 0.03653023764491081, -0.03157590329647064, 0.0032373275607824326], [0.0154630271717906, 0.0017112307250499725, 0.05097071826457977, 0.022731970995664597, -0.05709425359964371, 0.02605806477367878, -0.03436228260397911, 0.036014314740896225, 0.009719460271298885, 0.06669807434082031, -0.017059992998838425, 0.0038272093515843153, 0.03715972602367401, 0.020220881327986717, -0.060442373156547546, -0.006861443165689707, 0.010798787698149681, 0.03495701402425766, -0.02989078126847744, -0.03169700503349304, 0.04713800549507141, 0.05035395920276642, -0.05176369473338127, -0.016101812943816185, -0.039450544863939285, -0.03746810555458069, -0.01596965081989765, -0.03176308423280716, 0.07727108150720596, -0.09374735504388809, 0.04420839995145798, -0.03530944883823395, 0.01077676098793745, -0.011074126698076725, -0.03489093482494354, -0.015033498406410217, 0.011250343173742294, -0.041366901248693466, -0.002439501928165555, -0.008854895830154419, -0.004069507587701082, 0.01784195378422737, -0.009383546188473701, 0.006674212869256735, -0.017500534653663635, 0.04138892889022827, -0.008513475768268108, -0.07361458241939545, 0.001903967815451324, -0.00357665098272264, 0.06273319572210312, 0.08722733706235886, 0.0026652796659618616, -0.00911922100931406, 0.016586409881711006, 0.01659742370247841, 0.0045210630632936954, 0.02964848279953003, 0.011410039849579334, -0.002579924650490284, -0.012742679566144943, -0.0185578353703022, -0.017511548474431038, 0.009625844657421112, 0.0019466453231871128, 0.028943615034222603, -0.0015666778199374676, 0.0279303677380085, -0.013139167800545692, -0.043877992779016495, 0.0035436104517430067, 0.048195306211709976, 0.04075014218688011, -0.03156483918428421, -0.01875608041882515, 0.033018629997968674, -0.0387236513197422, -0.006261204369366169, 0.018051212653517723, 0.022842107340693474, -0.03528742119669914, 0.024802519008517265, -0.019130541011691093, -0.0036509926430881023, 0.010385779663920403, -0.0132713308557868, -0.0459044873714447, -0.0037776483222842216, -0.01003334578126669, -0.028348883613944054, -0.024097653105854988, 0.015485054813325405, -0.058724261820316315, 0.049340713769197464, 0.012621531262993813, 0.015099580399692059, 0.029185913503170013, -0.004036467056721449, -0.01715911366045475, 0.04438461735844612, -0.021289195865392685, -0.031344570219516754, -0.02748982608318329, 0.026674823835492134, 0.002937864977866411, -0.021938996389508247, -0.003127848729491234, 0.057887230068445206, 0.037335943430662155, -0.010501421988010406, 0.043789882212877274, -0.03914216533303261, 0.009609323926270008, 0.039935141801834106, -0.026917122304439545, 0.010732706636190414, -0.007043166551738977, -0.05158747732639313, 0.01554012205451727, -0.028436992317438126, -0.0379086472094059, 0.010226082988083363, 0.02365710958838463, -0.05934102088212967, 0.025837793946266174, -0.011343958787620068, 0.002197203692048788, 0.0044494750909507275, -0.0275338813662529, -0.006112521514296532, 0.018172360956668854, -0.03623458743095398, 0.0714118704199791, -0.026432525366544724, 7.068463310133666e-05, -0.013645791448652744, 0.009086180478334427, -0.015672285109758377, 0.003587664570659399, -0.009686418808996677, 0.0371156707406044, 0.013976197689771652, -0.02486860193312168, 0.01270963903516531, -0.07149998098611832, 0.02282007969915867, -0.006800868548452854, 0.0010889649856835604, 0.013205248862504959, -0.03423012048006058, -0.009317465126514435, 0.030837945640087128, -0.014009238220751286, -0.019416892901062965, 0.04462691396474838, 0.04903233423829079, 0.016630463302135468, 0.030066996812820435, -0.012335178442299366, 0.030551593750715256, -0.032864440232515335, -0.01998959667980671, 0.0195600688457489, -0.025309143587946892, 0.034097958356142044, 0.01563924364745617, 0.014075320214033127, 0.03678526356816292, -0.02389940805733204, -0.019218647852540016, -0.024009544402360916, -0.008139015175402164, -0.030507540330290794, -0.02709333784878254, -0.028304830193519592, -0.05894453078508377, 0.05083855614066124, 0.014725119806826115, 0.006723773665726185, 0.009427600540220737, -0.028723344206809998, 0.012742679566144943, -0.06753510236740112, 0.0002450515457894653, -0.006277724634855986, 0.048944227397441864, -0.00945513416081667, -0.002016856800764799, -0.03916419297456741, 0.004041973501443863, 0.01816134713590145, -0.037291888147592545, 0.0014510354958474636, 0.0038602501153945923, -0.0012472848175093532, 0.016145868226885796, -0.02370116487145424, -0.022798053920269012, 0.010782267898321152, -0.023635083809494972, 0.02817266620695591, -0.05180775001645088, 0.021696697920560837, -0.012423287145793438, -0.020617369562387466, -0.0026639029383659363, -0.009086180478334427, 0.001554287620820105, 0.035573773086071014, -0.055243976414203644, 0.0309260543435812, -0.02900969609618187, 0.00045189980301074684, 0.01261051744222641, 0.008992565795779228, 0.006999112665653229, -0.012401259504258633, 0.028194693848490715, 0.020375071093440056, 0.012566463090479374, -0.046477191150188446, -0.005151588935405016, -0.004664239473640919, -0.028745371848344803, -0.04125676676630974, -0.018943309783935547, 0.0045072962529957294, -0.03264416754245758, 0.0069275242276489735, -0.0786367654800415, -0.014692078344523907, 0.0024560221936553717, 0.010165508836507797, -0.045199617743492126, 0.006090494338423014, -0.00626671127974987, 0.03068375587463379, -0.025727657601237297, 0.01572735235095024, -0.007935264147818089, 0.02359102852642536, -0.02131122350692749, -0.0018433933146297932, 0.006178603041917086, 0.006332792341709137, -0.016101812943816185, -0.004295285325497389, -0.04850368574261665, 0.04222596064209938, -0.012544436380267143, -0.001116498839110136, -0.020364057272672653, 0.08982653170824051, -0.10643497109413147, -0.00597485201433301, 0.03304065763950348, -0.052732888609170914, -0.04537583515048027, -0.009394560009241104, -0.00802337285131216, -0.015418972820043564, 0.008998071774840355, -0.0009581790654920042, -0.012467341497540474, -0.04524367302656174, -0.01891026832163334, -0.02645455300807953, 0.004653225652873516, -0.023921435698866844, 0.04467096924781799, -0.05374613404273987, 0.022776026278734207, 0.01403126586228609, -0.043085016310214996, -0.08766787499189377, 0.0319172739982605, -0.012247069738805294, -0.03145470470190048, -0.01452687568962574, 0.014824241399765015, -0.04912044480443001, 0.009367026388645172, -0.04572826996445656, -0.06956159323453903, 0.05286505073308945, 0.01135497260838747, -0.0016107320552691817, -0.012092879973351955, 0.006536543369293213, 0.007032153196632862, 0.07643405348062515, -0.003064520889893174, 0.023767245933413506, -0.014901336282491684, 0.038921892642974854, 0.02969253621995449, -0.00841986108571291, 0.007621378172188997, 0.012676598504185677, -0.004094288218766451, 0.027666043490171432, 0.025969956070184708, -0.0004484580713324249, -0.04929665848612785, -0.06511212140321732, 0.03746810555458069, -0.009581790305674076, 0.009741486981511116, -0.006933031138032675, 0.001087588258087635, -0.015859514474868774, 0.03597026318311691, -0.05845993384718895, -0.05841588228940964, 0.004914797842502594, -0.01648728735744953, -0.03863554075360298, 0.026476578786969185, 0.012599503621459007, 0.009967264719307423, 0.02438400499522686, 0.02262183651328087, 0.01671857200562954, 0.008662158623337746, -0.025925902649760246, -0.024097653105854988, 0.01604674570262432, 0.05163153260946274, -0.010941964574158192, -0.014196468517184258, -0.013998225331306458, -0.0004064689273945987, 0.03143267706036568, 0.011707406491041183, -0.030066996812820435, 0.01003885269165039, -0.02458224818110466, 0.019306756556034088, 0.03052956610918045, 0.015396946109831333, 0.026608742773532867, -0.01143206749111414, -0.027842260897159576, 0.026586715131998062, -0.016729585826396942, 0.03969284147024155, 0.022093186154961586, 0.06233670562505722, -0.007670938968658447, 0.022049130871891975, 0.023040350526571274, 0.014923362992703915, -0.04401015490293503, -0.0018957076827064157, -0.017897022888064384, -0.03815094381570816, 0.0542747862637043, 0.01922966167330742, -0.006382353603839874, 0.009890169836580753, -0.00028927784296683967, -0.0021696698386222124, 0.04207177087664604, 0.045992594212293625, 0.05057423189282417, -0.014769173227250576, -0.019163580611348152, -0.02482454665005207, 0.0023789273109287024, -0.0269391480833292, 0.01470309216529131, -0.010980512015521526, 0.026674823835492134, -0.029185913503170013, 0.029340103268623352, -0.03663107380270958, 0.03213754668831825, 0.04193960875272751, -0.019736286252737045, 0.030022943392395973, -0.011250343173742294, 0.015694312751293182, -0.007973811589181423, 0.00427050469443202, -0.01604674570262432, 0.029472265392541885, -0.07053078711032867, -0.03215957432985306, -0.012731666676700115, 0.034736745059490204, 0.007307491730898619, -0.000625019078142941, -0.039098110049963, 0.035772018134593964, -0.053217485547065735, 0.02286413498222828, 0.006564076989889145, 0.020452165976166725, 0.01723620854318142, -0.007494722492992878, -0.026036037132143974, -0.06533239036798477, 0.012203016318380833, -0.01799614354968071, -0.004686266649514437, -0.016090799123048782, -0.030022943392395973, 0.003122342051938176, -0.0153639055788517, -0.01679566688835621, 0.010055373422801495, 0.0006666640983894467, 0.03024321421980858, 0.0315207876265049, 0.04484718665480614, 0.008243643678724766, -0.019328784197568893, 0.06489185243844986, -0.010402300395071507, -0.07537674903869629, 0.03535350412130356, 0.02861320786178112, -0.009526723064482212, -0.01095297746360302, -0.06735888868570328, -0.010468381457030773, 0.04541989043354988, -0.02214825339615345, -0.0002584742906037718, -0.031102271750569344, -0.02126717008650303, -0.02047419361770153, -0.01819438859820366, 0.02170771174132824, -0.06779942661523819, -0.0024876862298697233, 0.016024718061089516, -0.0006983280763961375, 0.003160889493301511, -0.012125921435654163, -0.001585951540619135, -0.012445313856005669, 0.034582555294036865, -0.002568911062553525, -0.021300209686160088, 0.014912350103259087, -0.014339645393192768, 0.019703244790434837, -0.016222963109612465, 0.0028800438158214092, -0.002818092703819275, -0.03491296246647835, -0.03795270249247551, -0.0185578353703022, 0.0034086944069713354, -0.009543242864310741, -0.002970905741676688, -0.021972035989165306, 0.016674518585205078, -0.014659037813544273, -0.022842107340693474, 0.03475877270102501, 0.07255728542804718, 0.030066996812820435, 0.004086027853190899, -0.003631718922406435, -0.0056884996592998505, -0.019372837617993355, -0.008552023209631443, -0.035860124975442886, -0.003703306894749403, -0.001585951540619135, -0.0478869266808033, -0.005677486304193735, 0.02094777673482895, 0.001975555904209614, -0.017291277647018433, -0.055816683918237686, 0.01145409420132637, -0.012665584683418274, 0.06348211318254471, 0.017908036708831787, -0.051014773547649384, -0.045552052557468414, 0.08405543118715286, -0.013524642214179039, 0.06110318750143051, 0.006723773665726185, 0.012874842621386051, -0.033349037170410156, -0.040882304310798645, 0.010220576077699661, 0.0005637562135234475, -0.008799828588962555, 0.03568390756845474, 0.009152261540293694, -0.06735888868570328, 0.013700858689844608, 0.0319393016397953, 0.03799675405025482, 0.007852662354707718, -0.04081622511148453, 0.006272218190133572, 0.016872761771082878, 0.0024670357815921307, -0.010000305250287056, 0.014273563399910927, -0.01987946219742298, -0.007819621823728085, 0.02011074684560299, -0.049869365990161896, -0.0022206073626875877, 0.02889956161379814, 0.015595190227031708, -0.022137239575386047, -0.021090952679514885, 0.030507540330290794, 0.0006941979518160224, -0.0486798994243145, 0.004760608077049255, -0.008287698030471802, -0.021839873865246773, -0.028921587392687798, 0.013392479158937931, -0.008276684209704399, 0.022996297106146812, -0.017830941826105118, 0.004700033459812403, -0.006701746489852667, 0.0006911004311405122, -0.006492489017546177, -0.05092666670680046, -0.059164803475141525, 0.0037170739378780127, -0.002586808055639267, 0.007043166551738977, -0.0030837946105748415, 0.025243062525987625, -0.019097499549388885, -0.019769325852394104, 0.02211521379649639, -0.0010813932167366147, 0.01647627353668213, 0.008469421416521072, -0.0001389600511174649, -0.03185119479894638, 0.018007157370448112, 0.03378957882523537, 0.020055677741765976, 0.01892128214240074, -0.027688071131706238, 0.02266588993370533, -0.02306237816810608, -0.02345886640250683, -0.010281151160597801, 0.028745371848344803, 0.010484902188181877, -0.04341542348265648, 0.005242451094090939, -0.017764858901500702, 0.0032820384949445724, 0.037247832864522934, 0.0021090952213853598, -0.016377152875065804, 0.017048979178071022, 0.0011226939968764782, -0.0008514852379448712, -0.04041973501443863, -0.022214334458112717, -0.004628445487469435, 0.021773792803287506, 0.011575243435800076, 0.017456481233239174, -0.0025771711952984333, 0.04242420196533203, 0.026961175724864006, -0.012357206083834171, -0.03332700952887535, 0.03101416304707527, 0.032467953860759735, 0.004909290932118893, 0.06202832609415054, -0.029340103268623352, -0.007065193727612495, 0.0005916342488490045, 0.018062226474285126, -0.049340713769197464, -0.01979135349392891, -0.004223697353154421, 0.03652093932032585, -0.012918896973133087, 0.008552023209631443, 0.007588337641209364, -0.021861901506781578, 0.019747300073504448, 0.042556364089250565, -0.006591611076146364, -0.00294887856580317, -0.015507081523537636, -0.0018048458732664585, 0.012125921435654163, 0.007500228937715292, 0.03535350412130356, 0.024472113698720932, -0.06462752819061279, 0.0032902986276894808, 0.026829013600945473, -0.019923515617847443, 0.035067152231931686, -0.0022756753023713827, 0.01723620854318142, -0.008006852120161057, -0.022038118913769722, -0.03608039766550064, -0.01691681705415249, 0.002760271541774273, -0.03619053214788437, -0.03299660235643387, -0.0066026244312524796, 0.015154647640883923, -0.03978095203638077, 0.019780339673161507, 0.005322298966348171, -0.01295193750411272, -0.028679290786385536, -0.016663504764437675, 0.001109615433961153, -0.04462691396474838, -0.019538041204214096, -0.03903203085064888, -0.002326612826436758, -0.019901489838957787, -0.03614647686481476, -0.017830941826105118, 0.00834276620298624, 0.004372380208224058, 0.021057911217212677, -0.02422981522977352, 0.01009392086416483, 0.04130082204937935, 0.03321687504649162, 0.007698473054915667, 0.026851041242480278, -0.04850368574261665, 0.022555755451321602, 0.030155105516314507, -0.022038118913769722, 0.01093645766377449, 0.019901489838957787, -0.00652552954852581, -0.013172208331525326, 0.006398873869329691, -0.01486829575151205, -0.0009203199879266322, 0.03196132928133011, 0.0195600688457489, -0.03240187093615532, 0.017489520832896233, 0.011487134732306004, 0.023326704278588295, -0.027445772662758827, 0.023524947464466095, 0.0054572150111198425, 0.0658610388636589, 0.03938446193933487, 0.0021669163834303617, 0.015738366171717644, 0.0030948081985116005, -0.009251384064555168, 1.4541330529027618e-05, -0.028348883613944054, 0.005473735276609659, 0.01915256679058075, -0.062468867748975754, -0.0005227995570749044, -0.03834918886423111, -0.031058216467499733, 0.005743567366153002, -0.012423287145793438, 0.019626149907708168, -0.01715911366045475, -0.014328631572425365, 0.005212163552641869, 0.0038905374240130186, -0.0040529873222112656, -0.007990332320332527, 0.035177286714315414, -0.02665279619395733, 0.0026102119591087103, 0.008695199154317379, -0.008695199154317379, 0.030419431626796722, 0.01967020519077778, -0.0082821911200881, 0.03224768117070198, 0.06497995555400848, -0.0044274479150772095, -0.008249150589108467, -0.020463179796934128, -0.06013399362564087, 0.038327161222696304, -0.005330559331923723, 0.0036812799517065287, -0.043040961027145386, -0.020099733024835587, -0.005068987607955933, -0.04458285868167877, 0.004069507587701082, 0.07431945204734802, -0.0032462445087730885, -0.014978431165218353, -0.017908036708831787, -0.03696148097515106, -0.022335484623908997, -0.01295193750411272, -0.004130082204937935, 0.008728240616619587, -0.016630463302135468, -0.005319545511156321, -0.0033288460690528154, -0.014681065455079079, 0.02398751676082611, -0.05343775451183319, 0.00050146080320701, 0.023767245933413506, -0.021179061383008957, 0.011321932077407837, -0.005322298966348171, 0.021894941106438637, -0.024119678884744644, 0.04086028039455414, -0.017379386350512505, 0.003901550779119134, -0.009344998747110367, -0.03504512459039688, 0.03482485190033913, -0.04757854714989662, -0.029274022206664085, -0.025595495477318764, -0.023635083809494972, -0.008436380885541439, -0.0459044873714447, -0.009064153768122196, 0.002987426007166505, -0.022996297106146812, -0.016542354598641396, 0.011090647429227829, -0.0013395232381299138, 0.00592529121786356, 0.03028726950287819, -0.007703979965299368, 0.005374613683670759, -0.03229173645377159, -0.004700033459812403, 0.0005045583820901811, 0.00705418037250638, -0.0102756442502141, -0.0012204392114654183, -0.03931838274002075, 0.013073086738586426, 0.007698473054915667, -0.0011715666623786092, -0.0005207345238886774, 0.03224768117070198, 0.012500382028520107, -0.007533269934356213, -0.014570930041372776, 0.005011166445910931, 0.01292991079390049, -0.013315384276211262, -0.04249028488993645, -0.01452687568962574, 0.010104933753609657, 0.032225653529167175, 0.03865756839513779, -0.018249455839395523, -0.02282007969915867, -0.0044990358874201775, 0.0009953498374670744, -0.028348883613944054, 0.0323357880115509, -0.045596107840538025, -0.030419431626796722, -0.012940923683345318, 0.01664147712290287, -0.0013147428398951888, -0.019505001604557037, -0.014692078344523907, 0.014174441806972027, 0.02126717008650303, -0.03918622061610222, 0.0021269922144711018, -0.015165661461651325, -0.01712607406079769, -0.00952121615409851, -0.005402147304266691, 0.010622571222484112, -0.009141248650848866, -0.05017774552106857, -0.0025716645177453756, -0.01418545562773943, -0.025969956070184708, -0.01919662207365036, 0.009741486981511116, 0.10150089859962463, -0.02517697960138321, 0.018734052777290344, -0.014328631572425365, -0.0068339090794324875, 0.011861595325171947, -0.02262183651328087, 0.027203474193811417, -0.002904824446886778, 0.006079480983316898, -0.004121821839362383, -0.018128307536244392, 0.0018048458732664585, 0.009554256685078144, 0.00854100938886404, -0.01644323393702507, 0.008034386672079563, -0.038217026740312576, -0.016101812943816185, 0.0025606509298086166, 0.026608742773532867, -0.013326398096978664, 0.0021228622645139694, -0.009746993891894817, -0.015496067702770233, 0.009113714098930359, 0.0014606723561882973, 0.009972771629691124, -0.008943004533648491, -0.009080673567950726, 0.00576559454202652, -0.022974269464612007, -0.04046379029750824, -0.027027256786823273, 0.008711719885468483, -0.025749685242772102, 0.024934682995080948, 0.0012114907149225473, -0.055243976414203644, -0.029868753626942635, -0.01376694068312645, 0.005969345103949308, 0.006222656928002834, 0.028304830193519592, -0.0315207876265049, 0.013535656034946442, 0.03328295424580574, -0.023172514513134956, -0.009504695422947407, -0.025132926180958748, 0.03033132292330265, -0.007373573258519173, 0.018535807728767395, -0.035067152231931686, 0.01145409420132637, 0.0015735612250864506, -0.0538782961666584, 0.018546821549534798, 0.027445772662758827, -0.011476121842861176, 0.02339278534054756, -0.005749074276536703, 0.016355125233530998, -0.025397252291440964, 0.039450544863939285, 0.007461681496351957, 0.007114754989743233, -0.01852479577064514, 0.010396793484687805, 0.0042622447945177555, -0.002193073509261012, 0.008089453913271427, -0.00015143633936531842, -0.00834276620298624, 0.017808914184570312, -0.024163734167814255, 5.872460315003991e-05, 0.0235469751060009, 0.003796922042965889, 0.02207115851342678, -0.0027685316745191813, -0.02150946669280529, -0.008513475768268108, 0.0363006666302681, 0.040684062987565994, 0.013921130448579788, 0.020760545507073402, 0.012324164621531963, 0.02698320336639881, 0.00386575679294765, 0.0030590142123401165, 0.01963716372847557, -0.0026928135193884373, 0.004980878904461861, 0.006206136662513018, 0.014086333103477955, -0.055728573352098465, 0.007775567937642336, 0.021619603037834167, -0.0016107320552691817, 0.00715330196544528, 0.00854100938886404, -0.011189769022166729, 0.021916968747973442, 0.05057423189282417, -0.009152261540293694, 0.00802337285131216, -0.005881236866116524, -0.02905375137925148, -0.05000152811408043, 0.029560374096035957, 0.02698320336639881, 0.0021476426627486944, 0.012313151732087135, 0.010336218401789665, -0.0006642548833042383, 0.0490763895213604, 0.02099183015525341, 0.008816348388791084, 0.0029571386985480785, 0.013161194510757923, -0.03469268977642059, -0.004892770666629076, 0.010639091022312641, 0.004086027853190899, -0.03176308423280716, -0.023436838760972023, 0.031785111874341965, 0.027798205614089966, 0.0435035303235054, 0.0019962063524872065, -0.008926483802497387, -0.012885856442153454, -0.0042484779842197895, 0.02837091125547886, -0.02266588993370533, -0.009829595685005188, -0.005099274683743715, 0.0023637835402041674, -0.05141126364469528, 0.027555907145142555, 0.012324164621531963, 0.0002488374593667686, 0.0011323308572173119, -0.0003520894970279187, 0.016300057992339134, 0.014339645393192768, -0.004906537476927042, 0.022522713989019394, -0.007775567937642336, -0.03257808834314346, -0.020331017673015594, 0.014681065455079079, 0.011784501373767853, 0.0033591333776712418, -0.010523449629545212, 0.023480894044041634, 0.008331752382218838, -0.002573041245341301, -0.025881847366690636, 0.042402178049087524, 0.03850337862968445, 0.013381466269493103, 0.00038616269011981785, 0.008028879761695862, 0.03169700503349304, -0.0423140674829483, -0.020220881327986717, 0.010672132484614849, 0.005016672890633345, -0.021013857796788216, -0.009609323926270008, 0.009884662926197052, -0.015551135875284672, 0.010628078132867813, -0.006118028424680233, -0.019174594432115555, 0.01221402920782566, 0.022478660568594933, -0.026917122304439545, 0.012907883152365685, 0.030463485047221184, 0.002970905741676688, -0.01895432360470295, 0.002860770095139742, 0.005091014318168163, 0.04995747283101082, -0.021773792803287506, 0.011641324497759342, 0.0013216262450441718, -0.0008053660276345909, 0.03467066213488579, 1.4143380212772172e-05, -0.027754152193665504, 0.03224768117070198, 0.01791904866695404, 0.04832746833562851, 0.009141248650848866, 0.025132926180958748, 0.013480587862432003, -0.019604122266173363, 0.036498911678791046, 0.007329518906772137, 0.02517697960138321, -0.02378927357494831, 0.01312815397977829, 0.016300057992339134, -0.013491601683199406, -0.006167589221149683, -0.017852967604994774, -0.011376999318599701, -0.02018784172832966, 0.0004064689273945987, -0.045552052557468414, -0.03204943612217903, 0.010077400133013725, 0.006977085489779711, 0.006492489017546177, 0.005952824838459492, 0.01795209012925625, 0.015000457875430584, 0.010782267898321152, 0.014119373634457588, 0.03299660235643387, 0.04209379851818085, -0.001676813350059092, -0.01671857200562954, 0.01772080548107624, -1.4670396012661513e-05, 0.011608283966779709, 0.002410591347143054, 0.024207787588238716, -0.0025785479228943586, 0.014163427986204624, -0.0002540000423323363, 0.030595649033784866, -0.0024986995849758387, -0.031058216467499733, -0.00987915601581335, 0.0566537119448185, -0.015308837406337261, -0.019802367314696312, -0.020936762914061546, -0.0005603144527412951, 0.0013939026976004243, 0.010204056277871132, -0.0018888241611421108, 0.038415271788835526, -0.03608039766550064, -0.0036537458654493093, 0.0037308407481759787, -0.04416434466838837, -0.03693945333361626, -0.011421053670346737, -0.03806283697485924, -0.008298711851239204, 0.00455961050465703, -0.008128001354634762, 0.006723773665726185, -0.01740141212940216, 0.026806985959410667, 0.0005861275130882859, -0.03464863449335098, 0.04332731291651726, 0.024560222402215004, 0.033304981887340546, -0.02665279619395733, 0.023767245933413506, 0.011244837194681168, 0.037247832864522934, 0.019416892901062965, 0.025287115946412086, -0.00302872690372169, -0.004504542797803879, -0.005787621717900038, 0.02502278983592987, -0.015859514474868774, -0.014405726455152035, -0.0040915347635746, -0.005239697638899088, -0.041124604642391205, -0.036058370023965836, 0.01403126586228609, 0.033745523542165756, -0.0005296830204315484, 0.014736132696270943, -0.02665279619395733, 0.02605806477367878, 0.03654296696186066, 0.0006508320802822709, 0.01029767096042633, 0.017423439770936966, 0.012676598504185677, 0.019703244790434837, -0.0011460977839305997, 0.0028414963744580746, -0.006960565224289894, 0.002106341766193509, 0.028877533972263336, -0.010413313284516335, 0.015319851227104664, 0.0055948845110833645, 0.00812249444425106, -0.008976045064628124, 0.04079419746994972, 0.013755926862359047, -0.008452901616692543, -0.009449628181755543, 0.014152415096759796, -0.011564229615032673, 0.030904028564691544, 0.019978584721684456, -0.030904028564691544, -0.035617828369140625, -0.020165814086794853, 0.000606089539360255, 0.005049713887274265, -0.007577323820441961, -0.057887230068445206, -0.024273868650197983, 0.03429620340466499, -0.011971731670200825, -0.01995655708014965, 0.042203933000564575, 0.024251842871308327, -0.0007599351229146123, 0.002984672551974654, -0.029780644923448563, -0.005842689424753189, -0.020749531686306, 0.012643557973206043, 0.020804600790143013, -0.004650472663342953, -0.055288031697273254, 0.018249455839395523, -0.022643864154815674, 0.0001646870223339647, 0.00104284577537328, 0.000567197916097939, 0.02103588543832302, -0.016421206295490265, -0.010248110629618168, 0.004609171766787767, 0.05638938769698143, 0.018084252253174782, -0.007692966144531965, -0.008045399561524391, 0.06638969480991364, -0.0034527485258877277, 0.0024436318781226873, 0.038767702877521515, 0.0193508118391037, 0.020253922790288925, -0.03004497103393078, 0.008232629857957363, 0.015275796875357628, 0.0007730136858299375, 0.0025840546004474163, -0.018734052777290344, 0.03462660685181618, 0.026014011353254318, 0.001603848533704877, 0.028150640428066254, 0.008408847264945507, -0.014934376813471317, 0.0042897784151136875, -0.0044852690771222115, -0.010848348960280418, -0.017104046419262886, 0.02295224368572235, 0.010710679925978184, 0.0003200813662260771, 0.01528681069612503, -0.017500534653663635, -0.0017731819534674287, -0.006222656928002834, 0.003645485732704401, -0.004454982001334429, -0.03647688403725624, -0.0028084558434784412, 0.006046439986675978, 0.015793433412909508, 0.01712607406079769, -0.030859973281621933, -0.014141401275992393, -0.002940618433058262, 0.0011956588132306933, 0.012753693386912346, 0.019626149907708168, -0.027511853724718094, -0.005881236866116524, 2.1618398022837937e-05, -0.02199406363070011, 0.01179551426321268, 0.032027408480644226, -0.02881145291030407, -0.020121760666370392, -0.017908036708831787, 0.012544436380267143, 0.016927829012274742, -0.01111267413944006, -0.01807323843240738, -0.029229966923594475, 0.0054296813905239105, -0.01494539063423872, -0.018172360956668854, 0.034736745059490204, -0.023833326995372772, 0.0237452182918787, -0.016498301178216934, 0.003039740491658449, -0.0005286505329422653, 0.0014111113268882036, 0.006850429344922304, -0.022126225754618645, 0.008012359030544758, 0.007351546082645655, -0.012103893794119358, 0.016828708350658417, 0.005787621717900038, 0.02546333335340023, -0.012467341497540474, -0.005107535049319267, -0.034979041665792465, -0.021410346031188965, 0.04141095653176308, 0.016145868226885796, -0.0006109079695306718, 0.017698777839541435, -0.013667818158864975, 0.019659191370010376, 0.007417627610266209, 0.04315109923481941, -0.01791904866695404, -0.006024413276463747, 0.04337136819958687, -0.03522133827209473, 0.014064306393265724, -0.0005042142001911998, -0.01177348755300045, -0.00012751627946272492, -0.008304218761622906, -0.03519931435585022, 0.013634777627885342, 0.0011047970037907362, -0.007268944289535284, 0.0065310364589095116, -0.002395447576418519, 0.017335331067442894, -0.017742833122611046, -0.02295224368572235, 0.01827148348093033, -0.008337259292602539, 0.021608589217066765, -0.004532076884061098, 0.027798205614089966, 0.0022990789730101824, -0.030111052095890045, -0.030397403985261917, -0.005914277397096157, 0.0030590142123401165, 0.010837335139513016, 0.022236362099647522, -0.010567503049969673, 0.002290818840265274, 0.007814114913344383, 0.005842689424753189, 0.011156728491187096, 0.025088872760534286, -0.007169822696596384, 0.04238015040755272, 0.01807323843240738, 0.005749074276536703, 0.012940923683345318, 0.0012252576416358352, 0.01069415919482708, -0.012136934325098991, 0.013667818158864975, 0.005325052421540022, -0.004807415418326855, 0.01061155740171671, -0.004540336783975363, -0.011575243435800076, -0.008012359030544758, -0.004856976680457592, 0.012004772201180458, -0.028084557503461838, -0.01752256229519844, -0.019427906721830368, -0.007951784878969193, -0.0044990358874201775, -0.004584391135722399, 0.0036234587896615267, -0.013249303214251995, 0.006420901045203209, 0.00466974638402462, 0.012808761559426785, 0.03923027217388153, 0.010986017994582653, -6.345698784571141e-05, -0.02239055186510086, -0.02050723508000374, -0.008111481554806232, -0.002533117076382041, 0.006118028424680233, -0.007076207548379898, 0.004873496945947409, 0.00012132115807617083, -0.02170771174132824, -0.010826322250068188, 0.0237452182918787, 0.0470939502120018, -0.02570563182234764, 0.004584391135722399, -0.011399026960134506, 0.036014314740896225, -0.011376999318599701, -0.05207207426428795, 0.00826016440987587, -0.030948081985116005, 0.052776943892240524, -0.055860735476017, -0.006398873869329691, 0.04244622960686684, 0.03143267706036568, -0.017941076308488846, 0.007577323820441961, 0.005881236866116524, -0.004807415418326855, 0.01051243580877781, 0.017026951536536217, -0.010303177870810032, -0.005041453521698713, 0.012665584683418274, 0.02506684511899948, 0.019527027383446693, -0.004587144590914249, 0.010137975215911865, -0.046477191150188446, 0.014328631572425365, 0.0022412578109651804, 0.04167528077960014, -0.016861747950315475, -0.029119832441210747, -0.024273868650197983, -0.02047419361770153, -0.020441152155399323, -0.017423439770936966, -0.014240522868931293, 0.0027258542831987143, -0.006288738455623388, -0.0037666349671781063, -0.00935601256787777, 0.020496221259236336, -0.019207635894417763, 0.017908036708831787, 0.05669776722788811, -0.007351546082645655, -0.045199617743492126, -0.00634380616247654, -0.013491601683199406, 0.001356731983833015, -0.04182947054505348, -0.02841496467590332, 0.005052466876804829, 0.04801908880472183, -0.020738519728183746, 0.0057325540110468864, 0.0034169545397162437, -0.004595404490828514, 0.012059839442372322, 0.02030899003148079, -0.027247527614235878, 0.023326704278588295, -0.0005021491670049727, -0.0011047970037907362, -0.031234433874487877, -0.025331169366836548, -0.04293082654476166, -0.00047668031766079366, -0.01292991079390049, 0.004496282897889614, 0.005096521228551865, -0.0185578353703022, 0.016861747950315475, 0.020121760666370392, -0.01775384694337845, -0.0032655182294547558, 0.014240522868931293, -0.03775445744395256, -0.02709333784878254, -0.019053446128964424, -0.03213754668831825, 0.007935264147818089, -0.022038118913769722, -0.02821672149002552, -0.013656805269420147, 0.0009960380848497152, 0.004325572866946459, 0.010402300395071507, -0.0037115670274943113, -0.003912564367055893, -0.01253342255949974, 0.02537522464990616, -0.07282160967588425, 0.00020357863104436547, 0.0069495514035224915, 0.03127848729491234, 0.009664392098784447, -0.01904243230819702, 0.0043558599427342415, -0.009592804126441479, -0.014405726455152035, -0.006767828017473221, 0.014802214689552784, 0.012918896973133087, -0.026322389021515846, -0.02625630795955658, -0.011052099987864494, -0.00309205474331975, 0.003045247169211507, 0.006101508159190416, -0.01554012205451727, -0.011129194870591164, 0.022445619106292725, 0.04370177537202835, 0.029031723737716675, -0.014240522868931293, 0.014581942930817604, -0.018029185011982918, -0.004793648608028889, -0.019978584721684456, -0.0008232630207203329, 0.036498911678791046, -0.028833480551838875, 0.022687917575240135, 0.0038217026740312576, -0.021377304568886757, 0.035573773086071014, 0.010622571222484112, 0.017489520832896233, 0.022060144692659378, -0.030793892219662666, 0.001683696755208075, -0.00555633706972003, 0.0014317617751657963, 0.007357052993029356, 0.005892250686883926, 0.0602661594748497, -0.019130541011691093, 0.027071312069892883, -0.010523449629545212, -0.01846972666680813, -0.017192155122756958, 0.022247375920414925, -0.0002462561533320695, -0.02625630795955658, 0.01995655708014965, 0.02270994521677494, -0.02394346334040165, -0.025132926180958748, 0.030199160799384117, 0.043833937495946884, 0.009658885188400745, 0.007527763023972511, -0.003634472144767642, -0.059517234563827515, 0.03878973051905632, -0.008788814768195152, -0.008381313644349575, -0.03530944883823395, -0.005454461555927992, -0.02094777673482895, 0.01715911366045475, 0.011553216725587845, 0.02266588993370533, -0.0542747862637043, 0.04394407197833061, -0.004309052135795355, -0.006310765631496906, 0.02614617347717285, -0.009168782271444798, -0.013238289393484592, -0.010743720456957817, -0.011321932077407837, -0.00968091282993555, -0.024648329243063927, -0.016982898116111755, 0.004713800270110369, -0.01029767096042633, 0.022577781230211258, -0.014460793696343899, 0.005859209690243006, 0.027555907145142555, 0.029582401737570763, 0.006409887224435806, -0.020661424845457077, -0.0013436534209176898, -0.022005077451467514, 0.011052099987864494, 0.012764707207679749, 0.02541927807033062, 0.01691681705415249, 0.00563618540763855, 0.019262703135609627, -0.023238595575094223, 0.04564015939831734, 0.006112521514296532, -0.008612598292529583, -0.04242420196533203, -0.0029213447123765945, -0.0134695740416646, 0.0315207876265049, -0.019262703135609627, 0.0031774097587913275, -0.012059839442372322, -0.010859362781047821, 0.009372533299028873, -0.07238106429576874, -0.009873650036752224, 0.00785816926509142, -0.04564015939831734, 0.019725272431969643, 0.03914216533303261, 0.02007770538330078, 0.00576559454202652, -0.03715972602367401, 0.04341542348265648, -0.042996909469366074, 0.02517697960138321, -0.037534184753894806, 0.03931838274002075], [0.010109271854162216, -0.01515862625092268, 0.068240225315094, 0.0068293046206235886, -0.035915907472372055, 0.03906383365392685, -0.016045959666371346, 0.02904963307082653, 0.013563537038862705, 0.04301458224654198, -0.008593409322202206, 0.01925726607441902, 0.025458041578531265, -0.004914669785648584, -0.04529630020260811, 0.002540522487834096, -0.009015949442982674, 0.042951200157403946, -0.053704846650362015, -0.020366432145237923, 0.03673986345529556, 0.024929866194725037, -0.04293007403612137, -0.011831123381853104, -0.022035466507077217, -0.03483843058347702, 0.008693763054907322, -0.043183598667383194, 0.045254044234752655, -0.06963460892438889, 0.03521871939301491, -0.043732900172472, 0.029176393523812294, -0.04508502781391144, -0.0243171826004982, -0.012306480668485165, -0.005699009634554386, -0.010912097990512848, 0.013869878835976124, 0.015950888395309448, -0.013246632181107998, 0.03371870145201683, -0.00889446958899498, 0.02757074125111103, -0.007220154162496328, 0.033401794731616974, 0.02269040420651436, -0.042718805372714996, 0.01170436106622219, 0.021676307544112206, 0.034648288041353226, 0.07191632688045502, -0.019690368324518204, -0.0026923727709800005, 0.005073122214525938, -0.0008127294713631272, -0.0017324144719168544, 0.006961348000913858, 0.03054964914917946, -0.014915665611624718, -0.015517785213887691, -0.025753820315003395, -0.02497212029993534, -0.02224673703312874, 0.011630416847765446, 0.028774980455636978, -0.010616320185363293, 0.0336553193628788, -0.025542549788951874, -0.03234544396400452, 0.002836300525814295, 0.042275138199329376, 0.0441976934671402, -0.04453572630882263, -0.01935233734548092, 0.02060939371585846, -0.04174696281552315, 0.0008952568750828505, 0.01831711269915104, 0.006195494439452887, -0.03804973512887955, -0.009179683402180672, -0.02192983217537403, -0.0028891179244965315, 0.04219062998890877, -0.033169399946928024, -0.06781768798828125, -0.013785370625555515, -0.004270296078175306, -0.014883975498378277, -0.03221868351101875, -0.01718681864440441, -0.03549337014555931, 0.041028644889593124, 0.020366432145237923, 0.01304592564702034, 0.04223288223147392, 0.005825771484524012, 0.00691381236538291, 0.02735947258770466, -0.02890174277126789, -0.049690715968608856, -0.014979046769440174, 0.028035536408424377, 0.004238605499267578, -0.04893014580011368, -0.00875186175107956, 0.054000627249479294, 0.02573269233107567, 0.008640944957733154, 0.03570463880896568, -0.008868060074746609, -0.0131515609100461, 0.043394867330789566, -0.024190420284867287, 0.014081149362027645, -0.001686199102550745, -0.03610605373978615, 0.008181433193385601, -0.0066497246734797955, -0.03409898653626442, -0.004280859604477882, 0.03528209775686264, -0.06143733114004135, 0.00057240977184847, -0.03935961052775383, 0.0011104881996288896, 0.0055405572056770325, -0.03378207981586456, -0.011165622621774673, 0.011387456208467484, -0.05835278704762459, 0.05395837128162384, -0.024887612089514732, 0.007637412287294865, -0.01726076379418373, 0.00026062142569571733, -0.03447927162051201, 0.004492129664868116, -0.0042438870295882225, 0.045169536024332047, 0.020630519837141037, -0.04364839196205139, 0.018285423517227173, -0.07943753898143768, 0.05019776523113251, -0.002522036200389266, 0.007389170117676258, 0.006332819815725088, -0.0331905260682106, -0.011091677471995354, 0.04039483517408371, -0.033845461905002594, -0.009581096470355988, 0.038366641849279404, 0.04956395551562309, 0.009977228008210659, 0.027401726692914963, -0.0004126368148718029, -0.0062377480790019035, -0.022352371364831924, -0.028563711792230606, 0.02689467743039131, -0.011809996329247952, 0.032514460384845734, -0.00019839577726088464, 0.0018789829919114709, 0.02645101025700569, -0.04783153906464577, -0.015560039319097996, -0.02771863155066967, -0.00630112923681736, -0.04041596129536629, -0.0456765852868557, -0.0168276596814394, -0.0678599402308464, 0.04609912633895874, 0.018623454496264458, 0.012095210142433643, 0.018855853006243706, -0.030782045796513557, -0.005239497404545546, -0.06705711781978607, -0.012369861826300621, -0.011355765163898468, 0.04242302477359772, 0.01100717019289732, 0.010294132865965366, -0.049479447305202484, 0.02416929416358471, 0.009449053555727005, -0.03194403275847435, -0.0021694793831557035, -0.0004505994147621095, -0.003573104739189148, 0.04012018442153931, -0.004848647862672806, -0.008640944957733154, -0.0049067470245063305, -0.01764104887843132, 0.054676689207553864, -0.03819762542843819, 0.05890209227800369, 0.02461296133697033, -0.019658679142594337, 0.0018116406863555312, -0.017957953736186028, 0.006343383342027664, 0.02757074125111103, -0.027929900214076042, 0.029070759192109108, -0.03885256126523018, -0.04343712329864502, 0.007431424222886562, -0.013542409986257553, 0.017820628359913826, -0.010743082500994205, 0.03705676645040512, -0.01538045983761549, 0.02978907711803913, -0.02691580541431904, -0.01359522808343172, -0.0029208085034042597, -0.04143005609512329, -0.0317116342484951, -0.02615523338317871, 0.02831018716096878, -0.029556680470705032, 0.006581061985343695, -0.09853634983301163, -0.01920444704592228, 0.04681744426488876, -0.006417328026145697, -0.029556680470705032, 0.0016175362979993224, 0.005904998164623976, -0.0014273932902142406, -0.02143334597349167, 0.015338205732405186, -0.004082793835550547, 0.012971981428563595, -0.03551449626684189, -0.00465058209374547, -0.004592482931911945, -0.003266763174906373, -0.002754433313384652, 0.004505333956331015, -0.04312021657824516, 0.08019810914993286, 0.003134719328954816, 0.009068766608834267, -0.009364545345306396, 0.10386035591363907, -0.08957850188016891, 0.005112735088914633, 0.036422956734895706, -0.0530710369348526, -0.04660617187619209, 0.00016546736878808588, -0.028267933055758476, -0.019510788843035698, 0.0005869346205145121, -0.010679701343178749, 0.014260728843510151, -0.04335261508822441, -0.008815242908895016, -0.020884044468402863, 0.024803103879094124, -0.04757801443338394, 0.05269075185060501, -0.05188792571425438, 0.021845323964953423, 0.0009810853516682982, -0.012686766684055328, -0.05877532809972763, 0.03750043362379074, -0.010996606200933456, -0.02845807559788227, -0.012633949518203735, 0.0016003706259652972, -0.07157829403877258, 0.011968448758125305, -0.03815537318587303, -0.05032452568411827, 0.04491601139307022, 0.03289474546909332, -0.012971981428563595, -0.0002327271649846807, -0.02097911573946476, 0.020102346315979958, 0.06633879989385605, 0.012095210142433643, 0.030866554006934166, -0.009412080980837345, 0.052141450345516205, 0.035091955214738846, 0.006776486989110708, -0.00829763151705265, -0.002092893933877349, -0.0008741298224776983, 0.010072300210595131, 0.026641152799129486, 0.032725732773542404, -0.05040903389453888, -0.04973297193646431, 0.03270460292696953, -0.008096924982964993, 0.009834621101617813, -0.0027002952992916107, 0.012623385526239872, -0.017968518659472466, 0.035683512687683105, -0.04757801443338394, -0.05721193179488182, -0.002741229021921754, -0.03164825215935707, -0.025310153141617775, 0.014471998438239098, 0.02016572654247284, 0.0001785892090993002, 0.031753890216350555, 0.016859350726008415, 0.02141221985220909, 0.006401482503861189, -0.026577772572636604, -0.02237349934875965, 0.005461330991238356, 0.046437159180641174, -0.0243171826004982, -0.008535309694707394, -0.019806567579507828, 0.0029023224487900734, 0.03906383365392685, -0.005498303100466728, -0.008783552795648575, 0.014905102550983429, -0.011831123381853104, 0.014979046769440174, 0.0245495792478323, 0.0068293046206235886, 0.034437019377946854, -0.030697539448738098, -0.04240189865231514, 0.02326083369553089, -0.0059736608527600765, 0.01882416196167469, 0.04795830324292183, 0.06853600591421127, -0.022669276222586632, 0.041028644889593124, 0.038282133638858795, 0.039317358285188675, -0.022732658311724663, 0.00398508133366704, -0.0016545086400583386, -0.012169155292212963, 0.034141238778829575, -0.006897967308759689, -0.010505403392016888, 0.02045094035565853, 0.01666920632123947, 0.023514356464147568, 0.031394731253385544, 0.03980327770113945, 0.05433865636587143, -0.00789093691855669, -0.0146093238145113, 0.009464898146688938, 0.022436879575252533, -0.033613067120313644, 0.03314827010035515, 0.0009586378582753241, 0.003229790832847357, -0.028141170740127563, 0.02505662851035595, -0.04914141446352005, 0.06173310801386833, 0.03906383365392685, -0.033169399946928024, -0.004999177530407906, 0.004360085818916559, 0.03202854096889496, -0.005265905987471342, 0.020641084760427475, 0.0006714426563121378, 0.011862813495099545, -0.0584372952580452, -0.014704396016895771, -0.0022605895064771175, 0.01809527911245823, -0.0017060056561604142, -0.0010187177686020732, -0.05831053480505943, 0.031753890216350555, -0.038662418723106384, 0.012876910157501698, 0.037986356765031815, 0.0013303410960361362, -0.0004895523306913674, -0.010600474663078785, -0.024845357984304428, -0.057930249720811844, 0.01586638018488884, -0.05869081988930702, -0.02165517956018448, -0.004901465028524399, -0.020049527287483215, -0.0010312619851902127, -0.030000347644090652, -0.033465176820755005, 0.015961453318595886, 0.015148063190281391, 0.040584977716207504, 0.027042565867304802, 0.01898261345922947, -0.004006208386272192, -0.03868354484438896, 0.05839504301548004, -0.02579607255756855, -0.04960620775818825, 0.039253976196050644, 0.04018356278538704, -0.0037474024575203657, -0.0009553367854095995, -0.09017005562782288, -0.006163803860545158, 0.02037699706852436, -0.0016386633506044745, 0.002764996839687228, -0.040584977716207504, -0.0039507499895989895, -0.02098967880010605, -0.019436845555901527, 0.01755654066801071, -0.03173276036977768, -0.03232431784272194, 0.00446307985112071, -0.003071338403970003, -0.01326775923371315, -0.014345236122608185, 0.030253872275352478, 0.005144425667822361, 0.04529630020260811, 0.014450871385633945, -0.04846534878015518, 0.010299415327608585, -0.0033539121504873037, 0.028880616649985313, -0.032725732773542404, -0.007272971328347921, -0.018274860456585884, -0.03023274429142475, -0.06697260588407516, 0.004803752992302179, -0.02281716652214527, -0.0064490181393921375, -0.00691381236538291, -0.002844223054125905, 0.019880512729287148, -0.028267933055758476, 0.01159872580319643, 0.05987393110990524, 0.0736909955739975, 0.040056802332401276, 0.013690299354493618, 0.016067087650299072, -0.017651613801717758, -0.01483115740120411, -0.00011454798368504271, -0.024781977757811546, -0.011831123381853104, -0.003604795318096876, -0.06160634756088257, -0.04656391963362694, 0.022056592628359795, -0.019838258624076843, -0.03481730446219444, -0.06633879989385605, -0.004552869591861963, -0.02423267439007759, 0.06794445216655731, 0.029324283823370934, -0.03099331632256508, -0.06080352142453194, 0.04301458224654198, -0.012253663502633572, 0.05463443696498871, 0.006443736609071493, 0.0002749811683315784, -0.036359574645757675, -0.024507327005267143, 0.015063554979860783, 0.02957780659198761, -0.006866276729851961, 0.01601427048444748, 0.014736086130142212, -0.05721193179488182, 0.026049597188830376, 0.0361483059823513, 0.03344405069947243, 0.0010154166957363486, -0.04248640686273575, 0.02662002667784691, -0.00822896882891655, 0.0012484740000218153, -0.010473713278770447, 0.010193780064582825, -0.035324353724718094, -0.028627092018723488, 0.023366468027234077, -0.03800748288631439, 0.005110094323754311, 0.031690508127212524, 0.035303227603435516, -0.026345375925302505, -0.014746650122106075, 0.03152149170637131, -0.018190352246165276, -0.03703564032912254, 0.006824022624641657, 0.022119974717497826, -0.03500744700431824, -0.0014023049734532833, -0.011609289795160294, -0.010621601715683937, 0.0022566283587366343, -0.015876945108175278, -0.0066497246734797955, 0.005508866626769304, 0.00974483136087656, -0.008366294205188751, -0.05045128986239433, -0.05049354210495949, 0.004901465028524399, -0.00295513984747231, 0.005899716168642044, -0.0011982973664999008, 0.012253663502633572, -0.0243171826004982, -0.013331140391528606, 0.012866346165537834, 0.00336447567678988, 0.028922870755195618, 0.01260225847363472, 0.0170600563287735, -0.019320646300911903, 0.03608492389321327, 0.028120044618844986, 0.023915769532322884, 0.007537059020251036, -0.015338205732405186, 0.027845392003655434, -0.021179823204874992, -0.009533560834825039, 0.0034120113123208284, 0.01348959282040596, 0.037838466465473175, -0.034120112657547, 0.01741921529173851, -0.01851782016456127, 0.002626350848004222, 0.020176289603114128, 0.001981977140530944, -0.012971981428563595, 0.014883975498378277, 0.0033908842597156763, 0.001993861049413681, -0.03268347680568695, -0.02839469537138939, -0.00529759656637907, 0.018359366804361343, 0.0031109515111893415, 9.465888433624059e-05, -0.017292452976107597, 0.043479375541210175, 0.02497212029993534, -0.00844551995396614, -0.029303155839443207, 0.025479167699813843, 0.017651613801717758, -0.00036146986531093717, 0.053704846650362015, -0.02913413941860199, 0.0051998840644955635, 0.002754433313384652, 0.02260589599609375, -0.03699338436126709, -0.026408756151795387, 0.0012095210840925574, 0.03196515887975693, -0.0020268720109015703, 0.01897205039858818, 0.00529759656637907, -0.01638399250805378, 0.0014551224885508418, 0.04508502781391144, 0.01515862625092268, -0.016553008928894997, -0.007843400351703167, -0.005395309068262577, 0.007758892606943846, 0.010288851335644722, -0.009697295725345612, 0.03589478135108948, -0.06008520349860191, -0.0022909597028046846, 0.010727236978709698, -0.016193849965929985, 0.015348769724369049, 0.025225644931197166, 0.019141066819429398, 0.0019251983612775803, -0.01778893917798996, -0.04512728378176689, -0.013479029759764671, 0.007838118821382523, -0.036063797771930695, -0.03927510231733322, -0.02074671909213066, 0.015655111521482468, -0.043162472546100616, 0.022035466507077217, 0.011229002848267555, -0.013869878835976124, -0.018781907856464386, -0.0317116342484951, -0.009533560834825039, -0.040352579206228256, -0.022035466507077217, -0.03090880811214447, -0.01294029038399458, 0.0069719115272164345, -0.026197485625743866, -0.00829763151705265, 0.001983297523111105, 0.0022275785449892282, 0.03236657381057739, -0.03278911113739014, 0.004101280122995377, 0.030359506607055664, 0.03454265370965004, -4.712312511401251e-05, 0.012729020789265633, -0.05045128986239433, 0.004510615486651659, 0.0143769271671772, -0.005268546752631664, 0.02691580541431904, 0.010684982873499393, -0.003158487379550934, -0.0006760641699656844, -0.014588196761906147, 0.013521282933652401, -0.029683442786335945, 0.029852459207177162, 0.006195494439452887, -0.03226093575358391, -0.009332854300737381, 0.012116337195038795, -0.0019687728490680456, -0.03076091967523098, 0.02526789903640747, -0.013024798594415188, 0.07242337614297867, 0.04041596129536629, 0.010167371481657028, 0.005062558688223362, 0.014535379596054554, -0.008339885622262955, -0.020197417587041855, -0.03853565827012062, 0.008508901111781597, 0.020641084760427475, -0.051845669746398926, -0.026218613609671593, -0.02615523338317871, -0.02505662851035595, 0.020862918347120285, -0.043162472546100616, 0.03456377983093262, -0.04181034490466118, -0.030296126380562782, -0.012855783104896545, 0.00463209580630064, -0.0012405513552948833, -0.010156807489693165, 0.036000415682792664, -0.02890174277126789, 0.01171492412686348, 0.017313580960035324, -0.01134520210325718, 0.0366130992770195, -0.0012781837722286582, 0.0033169398084282875, 0.025289025157690048, 0.05412738770246506, -0.01860232837498188, -0.019457971677184105, -0.009570533409714699, -0.08974751830101013, 0.035915907472372055, -0.013288886286318302, 0.021760815754532814, -0.05045128986239433, -0.018222041428089142, -0.01853894628584385, -0.04022581875324249, -0.0006281983223743737, 0.06828247755765915, 0.0005625064950436354, -0.023979151621460915, -0.019806567579507828, -0.03067641146481037, -0.03452152758836746, -0.00830819457769394, 0.017651613801717758, 0.004426107741892338, -0.025014374405145645, -0.005033508874475956, 0.004909387789666653, -0.004661145620048046, 0.023176325485110283, -0.044282201677560806, -0.015919199213385582, 0.0006826663739047945, -0.028120044618844986, 0.011894503608345985, -0.007125082425773144, 0.018803033977746964, -0.020038964226841927, 0.03933848440647125, -0.025986216962337494, 0.004904106259346008, -0.020778410136699677, -0.024274928495287895, 0.009686731733381748, -0.04301458224654198, -0.021866450086236, -0.02222560904920101, -0.026704534888267517, -0.015538912266492844, -0.03758494183421135, -0.0008741298224776983, 0.000314264209009707, -0.01947909966111183, -0.031901776790618896, 0.007008884102106094, -0.004008849151432514, 0.0058944346383214, 0.034352511167526245, 0.008081079460680485, 0.004521179012954235, -0.017007239162921906, -0.024781977757811546, -0.006866276729851961, 0.015348769724369049, 0.003171691671013832, -0.0008239531889557838, -0.021253766492009163, 0.014873411506414413, -0.00334598938934505, 0.007399733643978834, -0.0030871836934238672, 0.043035708367824554, 0.0008926159935072064, -0.004278218373656273, -0.004294063895940781, -0.020218543708324432, 0.02913413941860199, -0.023324213922023773, -0.027296090498566628, 0.003277326701208949, 0.031986285001039505, 0.029451046139001846, 0.015391022898256779, -0.019014304503798485, -0.014229037798941135, -0.002632952993735671, -0.011070550419390202, -0.03283136710524559, 0.030211618170142174, -0.04174696281552315, -0.01427129190415144, -0.010251879692077637, 0.011366329155862331, -0.011640979908406734, -0.022056592628359795, -0.022627022117376328, 0.002523356582969427, 0.007288816850632429, -0.03802860900759697, -0.01594032533466816, -0.03431025519967079, -0.027760885655879974, -0.008403266780078411, 0.009470179677009583, 0.008651508949697018, -0.007209590636193752, -0.028859488666057587, -0.004286141134798527, -0.01415509358048439, -0.012116337195038795, -0.014746650122106075, 0.004119765944778919, 0.10242372006177902, -0.025479167699813843, 0.008493056520819664, -0.004468361381441355, -0.019679805263876915, 0.01852838322520256, -0.016267793253064156, 0.01345790270715952, -0.014619887806475163, 0.024253802374005318, -0.0015330283204093575, -0.02237349934875965, -0.012581131421029568, 0.007056419737637043, 0.009000103920698166, -0.012644512578845024, 0.01764104887843132, -0.03895819932222366, -0.007637412287294865, 0.0008767707040533423, 0.0022341806907206774, -0.007721920497715473, -0.013700863346457481, -0.008366294205188751, -0.012633949518203735, 0.006565216928720474, 0.0013547692215070128, -0.007647975813597441, -0.02556367591023445, -0.01674315147101879, 0.006924375891685486, -0.006739514879882336, -0.017450906336307526, -0.01538045983761549, 0.0069719115272164345, -0.0017165691824629903, 0.041239913552999496, -0.016183286905288696, -0.023514356464147568, -0.03281024098396301, -0.020134035497903824, 0.002140429802238941, 0.014704396016895771, 0.01815866120159626, -0.03817649930715561, 0.013510719873011112, 0.009000103920698166, -0.01607765071094036, -0.03504970297217369, -0.025246771052479744, 0.015908634290099144, -0.010494839400053024, 0.017915699630975723, -0.02573269233107567, 0.012950854375958443, -0.019912201911211014, -0.03750043362379074, 0.01148252747952938, 0.0035915907938033342, -0.025669312104582787, 0.010072300210595131, 0.006993038579821587, 0.03215530142188072, -0.023514356464147568, 0.03868354484438896, 0.00759515818208456, -0.007008884102106094, -0.025373533368110657, 0.007922627031803131, 0.02579607255756855, -0.005947251804172993, 0.009058203548192978, -0.008313476108014584, -0.0004598424711730331, 0.012116337195038795, -0.009728985838592052, -0.017239635810256004, 0.023619992658495903, 0.022943926975131035, 0.024422818794846535, 0.008049389347434044, -0.020398123189806938, -0.01360579114407301, 0.042803313583135605, 0.028204552829265594, 0.027908774092793465, 0.028331313282251358, -0.002077048644423485, 0.032070793211460114, 0.012919163331389427, -0.000683326565194875, 0.011197312735021114, -0.012845219112932682, -0.003375039203092456, -0.005086326505988836, 0.02727496437728405, -0.03995116800069809, -0.0004459778720047325, 0.020651647821068764, -0.017767811194062233, 0.009464898146688938, 0.0074631148017942905, -0.02372562699019909, -0.005020304583013058, 0.039253976196050644, -0.01483115740120411, 0.04240189865231514, -0.016045959666371346, -0.00960222352296114, -0.048127319663763046, 0.012760710902512074, 0.03574689105153084, -0.011514217592775822, 0.005683164577931166, 0.020482631400227547, 0.00822368636727333, 0.029746823012828827, 0.015813563019037247, 0.016257230192422867, -0.005337209906429052, -0.009306445717811584, -0.025986216962337494, 0.005141784902662039, 0.007938472554087639, 0.0006575780571438372, -0.02290167286992073, 0.006459581665694714, 0.026134105399250984, 0.04647941142320633, 0.06714162230491638, -0.016362866386771202, 0.0009144031791947782, 0.005313441623002291, -0.011197312735021114, 0.01755654066801071, -0.019310083240270615, -0.015179753303527832, 0.0065969075076282024, 0.0028891179244965315, -0.031690508127212524, 0.0245495792478323, 0.009258910082280636, -0.0045026931911706924, -0.00789093691855669, -0.010051173157989979, 0.014408617280423641, 0.024739723652601242, -0.005207806825637817, 0.02378900721669197, -0.004492129664868116, -0.022880546748638153, -0.003277326701208949, 0.010922661982476711, 0.002413760405033827, 0.02585945464670658, -0.01100717019289732, 0.021253766492009163, 0.01785231940448284, -0.0019172757165506482, -0.03016936406493187, 0.031246840953826904, 0.030486268922686577, 0.007896218448877335, 0.013299449346959591, 0.004544946830719709, 0.03705676645040512, -0.038282133638858795, -0.012507187202572823, 0.01994389295578003, 0.020482631400227547, -0.0038715237751603127, -0.004568715114146471, 0.007975444197654724, -0.010753645561635494, 0.03741592541337013, 0.0043732901103794575, -0.024274928495287895, 0.018253732472658157, 0.01245437003672123, -0.019320646300911903, -0.0029049632139503956, 0.03507082909345627, -0.0040907165966928005, -0.025521421805024147, 0.0010900214547291398, -0.014810030348598957, 0.04922592267394066, 0.009544124826788902, 0.021327711641788483, 0.010130398906767368, 0.0024771413300186396, 0.017651613801717758, 0.014577633701264858, -0.0006007992196828127, 0.05277526006102562, 0.02600734308362007, 0.05383161082863808, 0.010716672986745834, 0.025965088978409767, 0.0050071002915501595, -0.013035362586379051, 0.02623973973095417, 0.010669137351214886, 0.01957417093217373, -0.036211688071489334, -0.000901198829524219, 0.023810135200619698, -0.017767811194062233, -0.010156807489693165, -0.01415509358048439, -0.01578187383711338, -0.020588265731930733, -0.016869913786649704, -0.039549753069877625, -0.023619992658495903, 0.012655076570808887, -0.025838326662778854, 0.014450871385633945, 0.007589876651763916, 0.020641084760427475, 0.01741921529173851, 0.017218509688973427, 0.02142278291285038, 0.02224673703312874, 0.03959200903773308, -0.004117125179618597, -0.01985938474535942, 0.02298618108034134, 0.011387456208467484, 0.023662246763706207, 0.009443771094083786, 0.020281925797462463, -0.003134719328954816, -0.0054005905985832214, -0.032282065600156784, 0.01081702671945095, -0.0019423640333116055, -0.022183354943990707, -0.009464898146688938, 0.028563711792230606, 0.005904998164623976, -0.017440343275666237, -0.023683372884988785, 0.010167371481657028, 0.004933155607432127, 0.0065969075076282024, -0.002516754437237978, 0.03528209775686264, -0.040500469505786896, -0.006464863661676645, 0.015528349205851555, -0.03676098957657814, -0.030211618170142174, -0.011736051179468632, -0.010378641076385975, -0.013468465767800808, -0.007299380376935005, -0.007056419737637043, 0.00415409728884697, -0.02222560904920101, 0.0267679151147604, 0.0012035791296511889, -0.041092026978731155, 0.04024694487452507, 0.027486233040690422, 0.02423267439007759, -0.0220988467335701, 0.02304956316947937, 0.02512000873684883, 0.06418383866548538, 0.01749316044151783, 0.034732796251773834, 0.00485392939299345, -0.012327607721090317, -0.0026857706252485514, 0.023619992658495903, -0.02883836254477501, -0.0009427926270291209, 0.005268546752631664, -0.015655111521482468, -0.024929866194725037, -0.0068293046206235886, 0.011144495569169521, 0.02231011725962162, -0.015982579439878464, -0.003052852349355817, -0.02098967880010605, 0.021137569099664688, 0.04335261508822441, 0.004085434600710869, 0.004748294595628977, 0.011471963487565517, 0.01586638018488884, 0.022774912416934967, -0.0046690683811903, 0.016785405576229095, -0.009221937507390976, 0.002331893192604184, 0.01493679266422987, -0.0072412812151014805, 0.029303155839443207, 0.0036074360832571983, 0.011577598750591278, 0.007441987749189138, 0.0471554771065712, 0.010019482113420963, -0.005936688277870417, -0.0026870910078287125, 0.016056524589657784, -0.012412115931510925, 0.0422540120780468, 0.011229002848267555, -0.024697469547390938, -0.0004331036179792136, -0.01681709662079811, 0.009211374446749687, -0.03447927162051201, -0.015359332785010338, -0.05087382718920708, -0.023091817274689674, 0.02883836254477501, 0.017598794773221016, -0.013405084609985352, 0.0441976934671402, 0.017461469396948814, 0.0023384953383356333, 0.012729020789265633, -0.031098952516913414, -0.004589841701090336, -0.019183320924639702, 0.0077641746029257774, 0.009797648526728153, -0.00013196124928072095, -0.03669760748744011, -0.0006219262140803039, -0.008915596641600132, -0.010975479148328304, -0.005276469513773918, -0.01756710559129715, 0.005883871112018824, -0.023324213922023773, 0.006813459098339081, 0.006897967308759689, 0.05573303997516632, 0.036866623908281326, -0.01371142640709877, 0.00378965656273067, 0.05226821079850197, -0.011429709382355213, 0.000246426701778546, 0.01526426151394844, 0.019901638850569725, 0.016626952216029167, -0.04652166739106178, 0.014260728843510151, 0.02319745160639286, 0.011905067600309849, 0.011905067600309849, -0.008757143281400204, 0.049014654010534286, 0.030253872275352478, -0.0006879481370560825, 0.032641224563121796, 0.004331036005169153, -0.027697503566741943, -0.0015237852931022644, -0.010172653011977673, -0.008302913047373295, -0.004954282660037279, 0.002302843611687422, 0.010774772614240646, -0.015686800703406334, 0.02096855267882347, 0.0007803787593729794, 0.0005539236590266228, 0.002828377764672041, 0.0073944516479969025, -0.01607765071094036, -0.045254044234752655, -0.017514286562800407, -0.008424392901360989, 0.027338344603776932, 0.012760710902512074, -0.03194403275847435, 0.009058203548192978, -0.017450906336307526, -0.011947321705520153, -0.005915561690926552, 0.023218579590320587, -0.005487739574164152, -0.00635394686833024, 0.017609359696507454, -0.037753958255052567, 0.0027887646574527025, 0.02526789903640747, -0.03498632088303566, -0.025669312104582787, -0.01970093324780464, 0.0073416344821453094, 0.003995644859969616, -0.014218474738299847, -0.019394591450691223, -0.018475566059350967, -0.0012814849615097046, 0.0018235245952382684, -0.028563711792230606, 0.03678211569786072, -0.025394659489393234, 0.025183390825986862, -0.01371142640709877, -0.01245437003672123, 0.004653222858905792, 0.019215011969208717, -0.028141170740127563, -0.012686766684055328, -0.008572282269597054, 0.013077616691589355, -0.029324283823370934, 0.02328195981681347, 0.005588092841207981, 0.017524851486086845, -0.020641084760427475, -0.005889152642339468, -0.03673986345529556, -0.02290167286992073, 0.03137360140681267, 0.012908600270748138, -0.002327931812033057, 0.006316974759101868, -0.01615159586071968, 0.02269040420651436, -0.0042623733170330524, 0.034056734293699265, -0.010352232493460178, -0.019806567579507828, 0.04550756886601448, -0.03570463880896568, 0.007362761534750462, 0.008070516400039196, -0.022035466507077217, -0.006882121786475182, 0.003583668265491724, -0.03940186649560928, 0.007146209478378296, -0.0030264435335993767, 0.0008741298224776983, 0.004341599531471729, 0.01294029038399458, -0.006211339496076107, -0.004204274155199528, -0.01882416196167469, 0.022119974717497826, -0.003868882777169347, 0.009068766608834267, -0.021602362394332886, 0.032641224563121796, 0.0013494874583557248, -0.031225712969899178, -0.030507395043969154, -0.006750078406184912, -0.015369896776974201, 0.01082758978009224, 0.009781803004443645, -0.012063520029187202, 0.009121584706008434, 0.017514286562800407, 0.02052488550543785, 0.018105844035744667, 0.02016572654247284, -0.011461400426924229, 0.048211824148893356, 0.013310013338923454, 0.019510788843035698, 0.01920444704592228, -0.002644836902618408, 0.014767776243388653, -0.035979289561510086, 0.010103990323841572, -0.0009652400622144341, -0.023239705711603165, 0.01201070286333561, 5.61186061531771e-05, -0.004608327988535166, -0.006274720653891563, 0.011112804524600506, 0.014810030348598957, -0.0292186476290226, -0.02237349934875965, -0.005720136687159538, 0.0022592691238969564, -0.038218751549720764, 0.00624831160530448, -0.006221903022378683, -0.022035466507077217, 0.006612752564251423, -0.001893507898785174, 0.011883940547704697, 0.04508502781391144, 0.010146244429051876, 0.007272971328347921, -0.03906383365392685, 0.009089893661439419, -0.0164579376578331, -0.01048955786973238, 0.006903248839080334, 0.0016320612048730254, -0.015359332785010338, 0.0016162159154191613, -0.018792470917105675, 0.005110094323754311, 0.008947286754846573, 0.035176463425159454, -0.028943996876478195, -0.00041032605804502964, -0.0059736608527600765, 0.039930038154125214, -0.007843400351703167, -0.04842309653759003, 0.004043180495500565, -0.032958127558231354, 0.06422609835863113, -0.0609302818775177, -0.0010048531694337726, 0.03564125671982765, 0.010478994809091091, -0.028796108439564705, 0.019531916826963425, -0.0035255691036581993, 0.014345236122608185, 0.02786651998758316, 0.006512399297207594, -0.0019291596254333854, -0.006940221413969994, 0.0314369834959507, 0.022859418764710426, 0.032514460384845734, -0.016732588410377502, 0.017957953736186028, -0.05133862420916557, 0.007399733643978834, 0.013869878835976124, 0.03424687683582306, 3.695162740768865e-05, -0.007468396332114935, -0.011556471697986126, -0.01104942336678505, -0.02023967169225216, -0.018264295533299446, -0.023831261321902275, -0.01868683658540249, -0.013257196173071861, -0.02178194187581539, -0.015528349205851555, 0.03684549778699875, -0.0197854395955801, 0.02030305191874504, 0.05932462960481644, 0.02082066424190998, -0.04016243666410446, -0.006105704698711634, -0.0013277002144604921, -0.0006938900914974511, -0.03234544396400452, -0.02949330024421215, 0.0059630973264575005, 0.04719772934913635, -0.012443806044757366, 0.026197485625743866, 0.01831711269915104, 0.006369791924953461, 0.015538912266492844, 0.018961487337946892, -0.03927510231733322, 0.014324110001325607, 0.007373325061053038, 0.010426176711916924, -0.004589841701090336, -0.023979151621460915, -0.037775084376335144, -0.008265940472483635, -0.035239845514297485, -0.0014194706454873085, 0.010109271854162216, -0.0073521980084478855, 0.0048776972107589245, 0.01876077987253666, -0.022436879575252533, -0.007426142226904631, -0.00209421431645751, -0.04631039500236511, -0.02801440842449665, -0.007373325061053038, -0.031458109617233276, -0.0077853016555309296, -0.008640944957733154, -0.034141238778829575, -0.014334673061966896, 0.0016571495216339827, -0.02260589599609375, 0.013088179752230644, 0.009581096470355988, -0.007299380376935005, -0.012475496158003807, 0.028965124860405922, -0.06025421991944313, 0.005889152642339468, 0.008609254844486713, 0.03462716192007065, 0.021169260144233704, -0.01227478962391615, -0.00568844610825181, -0.005392668303102255, -0.0045026931911706924, -0.027148202061653137, 0.012908600270748138, 0.004922592081129551, -0.018570637330412865, -0.008408548310399055, -0.01371142640709877, -0.015517785213887691, 0.005012381821870804, -0.006253593601286411, -0.026218613609671593, 0.0006493253167718649, 0.048803381621837616, 0.03230319172143936, 0.016331175342202187, -0.01037335954606533, -0.002223617397248745, -0.03196515887975693, 0.0040220534428954124, -0.01156703568994999, 0.008883905597031116, 0.04445121809840202, -0.018718525767326355, 0.017091747373342514, 0.00866735354065895, -0.01103886030614376, 0.03137360140681267, 0.014514252543449402, 0.017207946628332138, 0.019236138090491295, -0.043986424803733826, -0.005529993679374456, -0.012686766684055328, 0.006702542304992676, 0.018264295533299446, 0.007209590636193752, 0.06819797307252884, -0.011292384006083012, 0.02133827470242977, -0.02446507290005684, -0.023767881095409393, -0.016869913786649704, 0.018264295533299446, -0.0011012451723217964, -0.014281855896115303, 0.01925726607441902, 0.012052956037223339, -0.029451046139001846, -0.02721158228814602, 0.015908634290099144, 0.02904963307082653, 0.005234215408563614, 0.004753576125949621, -0.0009929692605510354, -0.03082429990172386, 0.0117888692766428, -0.019098812714219093, 0.0008008455624803901, -0.024338310584425926, -0.001048427657224238, -0.011588162742555141, 0.004027335438877344, 0.004029976204037666, 0.023979151621460915, -0.05328230559825897, 0.023303085938096046, 0.015433277003467083, 0.019658679142594337, 0.02617635950446129, 0.0004945039399899542, -0.023598864674568176, -0.021137569099664688, 0.008640944957733154, -0.03469054400920868, -0.01011455338448286, -0.005493021570146084, 0.0069719115272164345, -0.014028331264853477, 0.03031725250184536, -0.012221972458064556, -0.011387456208467484, 0.029239775612950325, 0.0245495792478323, -0.002318688901141286, -0.033613067120313644, 0.006623316090553999, -0.031183458864688873, 0.008022979833185673, 0.02978907711803913, 0.03344405069947243, 0.007991289719939232, -0.012105774134397507, 0.01807415299117565, -0.020038964226841927, 0.027929900214076042, 0.020070655271410942, 0.011112804524600506, -0.02831018716096878, 0.01294029038399458, -0.004011489916592836, 0.02505662851035595, -0.010732518509030342, 0.0036444084253162146, -0.0033195808064192533, 0.004811675287783146, 0.017102310433983803, -0.06485990434885025, -0.013436775654554367, -0.006787050515413284, -0.04512728378176689, 0.01042089518159628, 0.03676098957657814, 0.0024824230931699276, 0.009126866236329079, -0.023450976237654686, 0.04238077253103256, -0.03851453214883804, 0.03684549778699875, -0.016489626839756966, 0.02143334597349167], [0.014624066650867462, -0.008032518438994884, 0.06468886882066727, 0.008044427260756493, -0.009116224013268948, 0.03174899145960808, -0.04551561921834946, 0.040728263556957245, -0.003926943056285381, 0.05673375725746155, 0.0032570702023804188, 0.00343868019990623, 0.053732726722955704, 0.03098682500422001, -0.04334821179509163, 0.00169998814817518, 0.01230184081941843, 0.04692086577415466, -0.019077975302934647, -0.013611814007163048, 0.02555638924241066, 0.043062396347522736, -0.06078276410698891, -0.01599358394742012, -0.03525019437074661, -0.029486309736967087, 0.019304243847727776, -0.03503583371639252, 0.06950004398822784, -0.07836022228002548, 0.05230366438627243, -0.03891811892390251, 0.004933240823447704, -0.042109690606594086, -0.017434554174542427, 0.004814152140170336, -0.014373980462551117, 0.007782432716339827, 0.006502231582999229, 0.030701013281941414, -0.009336537681519985, 0.022317182272672653, -0.005877017043530941, 0.018911251798272133, -0.010360698215663433, 0.010485741309821606, 0.02050703763961792, -0.05973478779196739, 0.003560745855793357, 0.012218479067087173, 0.05811518430709839, 0.08669642359018326, 0.013111642561852932, 0.002426428021863103, 0.010640556924045086, 0.011122864671051502, -0.0010881710331887007, 0.009824800305068493, 0.0358932688832283, -0.030867736786603928, -0.01928042620420456, -0.022281456738710403, -0.01798236183822155, 0.009140041656792164, 0.0038078543730080128, 0.030367564409971237, -0.013802356086671352, 0.03560745716094971, -0.028938502073287964, -0.04511072114109993, 0.02567547746002674, 0.04542034864425659, 0.04915972799062729, -0.04575379937887192, -0.0029757237061858177, 0.01155158318579197, -0.029986482113599777, -0.006817815825343132, 0.002804533811286092, 0.0130640072748065, -0.0376557819545269, 0.002282033208757639, -0.030701013281941414, -0.024770405143499374, 0.02322225458920002, -0.0269378162920475, -0.09484207630157471, -0.016172217205166817, 0.004614679142832756, -0.027414171025156975, -0.011664717458188534, -0.018125267699360847, -0.05158913508057594, 0.039918459951877594, 0.02073330618441105, 0.0037066291552037, 0.05487597733736038, -0.019077975302934647, -0.008717277087271214, 0.010110612958669662, -0.02827160805463791, -0.04796884208917618, -0.03413075953722, 0.016624752432107925, -0.0017327375244349241, -0.027676165103912354, -0.0005883715930394828, 0.04708758741617203, 0.03729851543903351, 0.008705368265509605, 0.039537377655506134, -0.016541391611099243, -0.01143844984471798, 0.038894299417734146, -0.016124581918120384, 0.002549982164055109, -0.008193287998437881, -0.04446764290332794, -0.006383142899721861, -0.0032153893262147903, -0.04496781527996063, -0.0044568865559995174, 0.03396403789520264, -0.05087460204958916, -0.004224664065986872, -0.03313041850924492, -0.005877017043530941, -0.016922473907470703, -0.05363745614886284, -0.015267143957316875, 0.017660822719335556, -0.04718285799026489, 0.0466112345457077, -0.0067642261274158955, 0.001856291783042252, -0.02116202376782894, -0.009276993572711945, -0.03541691601276398, 0.001859268988482654, 7.252302748383954e-05, 0.0433005765080452, -0.009479443542659283, -0.016898656263947487, 0.04194296523928642, -0.05644794553518295, 0.026913998648524284, 0.008699414320290089, 0.01718446984887123, -0.00605564983561635, -0.03310659900307655, -0.024627499282360077, 0.025508753955364227, -0.005284551531076431, -0.02097148261964321, 0.013445090502500534, 0.03577418252825737, 0.020102137699723244, 0.01592213101685047, 0.004498567897826433, 0.015600591897964478, -0.0359647236764431, -0.03522637486457825, -0.008479100652039051, -0.0015258212806656957, 0.008961408399045467, 0.016136489808559418, 0.018923161551356316, 0.01687483862042427, -0.05282765254378319, -0.04032336175441742, -0.01756555214524269, -0.028343060985207558, -0.047730665653944016, -0.015624409541487694, -0.014278709888458252, -0.04801647737622261, 0.05630503594875336, 0.038322675973176956, -0.006502231582999229, 0.00029790730332024395, -0.005204166751354933, 0.013385546393692493, -0.06178310886025429, 0.0036589938681572676, -0.023019805550575256, 0.037631962448358536, -0.0029191565699875355, 0.013337911106646061, -0.04680177569389343, 0.026675822213292122, 0.006984539795666933, -0.0414666123688221, 0.004870719276368618, -0.00018765740969683975, -0.02529439516365528, 0.02777143567800522, -0.01789899915456772, -0.018220538273453712, 0.002996564144268632, -0.025222942233085632, 0.026532914489507675, -0.04134752228856087, 0.04427710175514221, 0.0008127789478749037, -0.019721053540706635, -0.003274933435022831, -0.027533259242773056, 0.003263024613261223, 0.031582266092300415, -0.04770684987306595, 0.02403205633163452, -0.027533259242773056, -0.02119775116443634, 0.003432725789025426, -0.017232105135917664, 0.014385889284312725, -0.007818159647285938, 0.01779182069003582, 0.022043278440833092, 0.03272551670670509, -0.060163505375385284, -0.012063664384186268, 0.007597845513373613, -0.031201183795928955, -0.04082353413105011, -0.008884001523256302, 0.01732737571001053, -0.016767660155892372, -0.027033086866140366, -0.06364088505506516, -0.02368670143187046, 0.025651659816503525, -0.003435702994465828, -0.0002694377035368234, -0.014469251036643982, 0.011932666413486004, -0.006710636429488659, -0.03103446029126644, 0.015159964561462402, -0.0047516305930912495, 0.003849535482004285, -0.0343451201915741, -0.0003825717722065747, 0.01748218946158886, 0.005600136239081621, -0.011492039076983929, -0.0005533893126994371, -0.03753669187426567, 0.05749592185020447, 0.004668268840759993, 0.03572654724121094, -0.004251459147781134, 0.1099424958229065, -0.08221869170665741, -0.001382170827127993, 0.0502077080309391, -0.011932666413486004, -0.06826151907444, 0.015660136938095093, -0.006121148355305195, -0.017922816798090935, -0.015386233106255531, 0.006835679057985544, -0.011581355705857277, -0.06468886882066727, -0.007853886112570763, -0.0036321990191936493, 0.010979958809912205, -0.049493174999952316, 0.06468886882066727, -0.03796540945768356, 0.02650909684598446, 0.008753003552556038, 0.006490322761237621, -0.0684044286608696, 0.03715560957789421, -0.010235656052827835, -0.01189693994820118, -0.006335507612675428, -0.012468565255403519, -0.05292292311787605, -0.011634944938123226, -0.03477383777499199, -0.0484451986849308, 0.058591537177562714, 0.03472620248794556, 0.0030263361986726522, -0.02226954698562622, -0.026294738054275513, 0.004742699209600687, 0.06330744177103043, -0.007431121543049812, 0.019101792946457863, -0.02138829231262207, 0.03998991474509239, 0.02839069627225399, -0.012575744651257992, 0.004674223251640797, 0.009151950478553772, 0.01442161574959755, -0.004730790387839079, 0.03382113203406334, -0.001060631824657321, -0.05254184082150459, -0.053923267871141434, 0.036869797855615616, 0.008300467394292355, 0.033535320311784744, 0.0036589938681572676, -0.01729164831340313, -0.04056153818964958, 0.03367822617292404, -0.05792463943362236, -0.038894299417734146, 0.005144622642546892, -0.03822740539908409, -0.015886403620243073, 0.017815638333559036, 0.036941248923540115, -0.03317805379629135, 0.03648871183395386, 0.021555015817284584, 0.029200498014688492, 0.009652121923863888, -0.026461461558938026, -0.017660822719335556, 0.01782754622399807, 0.04915972799062729, -0.027271263301372528, -0.0037721279077231884, -0.03041519969701767, -0.005689452402293682, 0.049064457416534424, 0.01858971267938614, -0.03084391914308071, -0.00663918349891901, -0.022710174322128296, 0.012825829908251762, 0.023293709382414818, -0.013671358115971088, 0.003557768650352955, -0.0024963924661278725, -0.05106514319777489, 0.006883314810693264, -0.022626813501119614, 0.02346043288707733, 0.030319929122924805, 0.05216075852513313, -0.019673418253660202, 0.03696506842970848, 0.033416230231523514, 0.03198716789484024, -0.039966095238924026, -0.022626813501119614, -0.003441657405346632, -0.01836344413459301, 0.04303858056664467, 0.013957170769572258, -0.021281113848090172, 0.026128014549613, 0.023508068174123764, 0.014612157829105854, 0.028104882687330246, 0.041109345853328705, 0.05701956897974014, 0.00765143521130085, -0.008020609617233276, 0.009443717077374458, 0.029819758608937263, -0.057257745414972305, -0.002856635022908449, 0.010324971750378609, 0.03629817068576813, -0.011337224394083023, 0.013528452254831791, -0.03329714015126228, 0.03696506842970848, 0.039656467735767365, -0.016636662185192108, 0.010152293369174004, -0.002832817379385233, 0.012802012264728546, -0.011492039076983929, 0.011051411740481853, -0.003926943056285381, 0.03153463080525398, -0.06583211570978165, -0.012623379938304424, 0.0006624297238886356, 0.020911939442157745, 0.002282033208757639, -0.019459059461951256, -0.047802120447158813, 0.046849410980939865, -0.051446229219436646, 0.018506351858377457, 0.02176937647163868, 0.00632359879091382, -0.0048796506598591805, -0.009217449463903904, -0.03477383777499199, -0.04782593622803688, 0.030820101499557495, -0.04115698114037514, -0.011105001904070377, 0.016970109194517136, -0.03601235896348953, -0.013385546393692493, -0.051017507910728455, -0.018160995095968246, 0.045277442783117294, 0.013147369027137756, 0.04437237232923508, 0.029438674449920654, -0.0006360069382935762, 0.010557194240391254, -0.04258604347705841, 0.07554973661899567, -0.0018339627422392368, -0.05906789004802704, 0.028485966846346855, 0.04051390290260315, -0.0007294170209206641, -0.015552956610918045, -0.05539996549487114, 0.01243283785879612, 0.03358295559883118, 0.005966333206743002, 0.01539814192801714, -0.03127263858914375, -0.0005879994132556021, -0.0058859484270215034, -0.021626468747854233, 0.012551927007734776, -0.04187151417136192, -0.052780017256736755, 0.03960883244872093, 0.0020661852322518826, -0.017779910936951637, -0.016350850462913513, 0.01978059858083725, 0.01134317833930254, 0.04391983523964882, -0.013433181680738926, -0.038013044744729996, -0.0005504121072590351, 0.02195991761982441, 0.006365279667079449, -0.031582266092300415, 0.009306765161454678, -0.0076097543351352215, -0.004224664065986872, -0.08002746850252151, 0.007841977290809155, -0.016993926838040352, -0.02356761135160923, -0.03439275547862053, -0.019292335957288742, 0.017732275649905205, -0.014862243086099625, -0.005579295568168163, 0.06645137816667557, 0.06049695238471031, 0.0269378162920475, 0.01524332631379366, -0.0022552383597940207, -0.025580206885933876, -0.01025351881980896, -0.013552269898355007, -0.029819758608937263, -0.009860526770353317, 0.009979614987969398, -0.04170478880405426, -0.028914684429764748, 0.012504291720688343, -0.0112836342304945, -0.013361728750169277, -0.08521972596645355, -0.004171074368059635, -0.01817290298640728, 0.0468970462679863, 0.03272551670670509, -0.03844176605343819, -0.028747960925102234, 0.08831602334976196, 0.009467534720897675, 0.05616213008761406, 0.007121491711586714, -0.006109239533543587, -0.01243283785879612, -0.04563470929861069, 0.010569103062152863, 0.0414666123688221, -0.011527765542268753, 0.005481047555804253, 0.029581580311059952, -0.04253840819001198, 0.04008518531918526, 0.013242639601230621, 0.035869453102350235, -0.005147600080817938, -0.03196335211396217, 0.009949843399226665, 0.013016371987760067, 0.011885031126439571, 0.0017401805380359292, -0.007425167132169008, -0.031582266092300415, -0.03756050765514374, 0.005150577053427696, -0.03436893969774246, 0.03010557033121586, 0.03313041850924492, 0.0076752533204853535, -0.017744185402989388, -0.022662539035081863, 0.054304350167512894, -0.031058277934789658, -0.030129387974739075, 0.009783118963241577, 0.013147369027137756, -0.02548493631184101, 0.018220538273453712, 0.004837969783693552, -0.011450358666479588, 0.014778881333768368, -0.018434898927807808, 0.004442000761628151, 0.001863734913058579, 0.020745214074850082, -0.02574693225324154, -0.04832610860466957, -0.04996953159570694, 0.0044955904595553875, 0.010324971750378609, -0.003703651949763298, 0.012230387888848782, 0.025461118668317795, -0.010717963799834251, -0.010872779414057732, 0.01197434775531292, 0.023436615243554115, 0.007323942147195339, 0.013075916096568108, 0.018494442105293274, -0.011533720418810844, 0.01046192366629839, 0.02310316637158394, 0.017458371818065643, 0.002564868424087763, -0.017148742452263832, 0.030963007360696793, -0.035750363022089005, -0.013314093463122845, 0.006537958048284054, 0.016362758353352547, 0.0207690317183733, -0.044062741100788116, 0.020614217966794968, -0.042562227696180344, -0.021519290283322334, 0.02368670143187046, 0.00775861507281661, -0.010241609998047352, 0.010670328512787819, -0.005308369640260935, 0.01492178812623024, -0.051827311515808105, -0.03458329662680626, -0.02038794942200184, -0.004287185613065958, 0.003394021885469556, -0.004903468769043684, -0.016517573967576027, 0.051017507910728455, 0.026294738054275513, 0.013385546393692493, -0.010104658082127571, 0.03520255908370018, 0.031320273876190186, -0.003283865051344037, 0.05582868307828903, -0.027985794469714165, 0.0011931178160011768, -0.006305735558271408, 0.028795596212148666, -0.0377272330224514, -0.037631962448358536, -0.005695406813174486, 0.030510470271110535, 0.019185155630111694, 0.021019117906689644, 0.0010420242324471474, -0.007889612577855587, 0.021293021738529205, 0.033035147935152054, 0.0153028704226017, -0.007240579929202795, 0.00121246965136379, -0.0035250193905085325, 0.005332187283784151, -0.007967020384967327, 0.00847314577549696, 0.025080036371946335, -0.0559239536523819, -0.003149890573695302, 0.0010896596359089017, -0.029248133301734924, 0.02384151518344879, 0.018649257719516754, 0.02831924334168434, 0.006793998181819916, -0.0098545728251338, -0.07173890620470047, -0.0057906778529286385, -0.001501259277574718, -0.048921551555395126, -0.03658398240804672, -0.004965989850461483, 0.02927195094525814, -0.043181486427783966, 0.004683154635131359, 0.0033821130637079477, -0.03084391914308071, -0.02019740827381611, -0.0055078426375985146, -0.006097330711781979, -0.04270513355731964, -0.017232105135917664, -0.0395611971616745, -0.02624710276722908, 0.018887434154748917, -0.030629560351371765, -0.01463597547262907, 0.008467191830277443, -0.005159508902579546, 0.023174619302153587, -0.027414171025156975, 0.023388979956507683, 0.0180538147687912, 0.022102823480963707, -0.0016032287385314703, 0.02858123742043972, -0.0358932688832283, 0.021304931491613388, 0.020911939442157745, 0.009527078829705715, 0.017851363867521286, 0.023424705490469933, -0.020911939442157745, 0.013052098453044891, -0.006335507612675428, -0.02009022794663906, -0.0065081859938800335, 0.0358218178153038, 0.022138550877571106, -0.038894299417734146, 0.00772884301841259, 0.00964021310210228, 0.014314436353743076, -0.02586602047085762, 0.009306765161454678, -0.011408677324652672, 0.05216075852513313, 0.053970903158187866, -0.00142013025470078, 0.017958544194698334, -0.004703995306044817, -0.006984539795666933, -0.010569103062152863, -0.03560745716094971, 0.007907475344836712, 0.04594434052705765, -0.045587074011564255, -0.00746089406311512, -0.03186808153986931, -0.010426197201013565, 0.020566582679748535, -0.04006136953830719, 0.01252810936421156, -0.04415801167488098, -0.019423332065343857, -0.02088812179863453, 0.006615365389734507, -0.0026541848201304674, -0.019268518313765526, 0.023901060223579407, -0.018125267699360847, 0.0026586505118757486, 0.026532914489507675, -0.01817290298640728, 0.05154149979352951, -0.011456312611699104, -0.0028968274127691984, 0.023329434916377068, 0.06087803468108177, 0.011849304661154747, -0.01798236183822155, -0.00772884301841259, -0.06849969923496246, 0.024627499282360077, 0.002384746912866831, 0.007556164637207985, -0.040918804705142975, -0.024556046351790428, -0.02223382145166397, -0.020792849361896515, -0.01107522938400507, 0.06278344988822937, 0.007633571978658438, -0.007544255815446377, -0.02908140979707241, -0.042609862983226776, -0.03374967724084854, -0.013337911106646061, -0.007895566523075104, -0.006424823775887489, -0.006466505117714405, 0.0016225806903094053, -0.007329896558076143, -0.013873809017241001, 0.03134408965706825, -0.0375843271613121, -0.0243297778069973, 0.006228328216820955, -0.02024504356086254, 0.003682811511680484, -0.006156874820590019, 0.008884001523256302, -0.026985451579093933, 0.031391724944114685, -0.012337567284703255, 0.0028000681195408106, -0.013397455215454102, -0.03160608559846878, 0.01744646392762661, -0.0306057408452034, -0.029605397954583168, -0.009253175929188728, -0.027652347460389137, 0.006996448617428541, -0.036560166627168655, -0.005219053011387587, 0.005769837182015181, -0.021828919649124146, -0.022102823480963707, -0.004159165546298027, -0.0029623261652886868, -0.009711666032671928, 0.031010642647743225, -0.01545768603682518, 0.007591891102492809, -0.010074886493384838, -0.02368670143187046, -0.018530169501900673, 0.019923504441976547, 0.010950186289846897, 0.007401349488645792, -0.012361384928226471, 0.0321538932621479, 0.021364474669098854, 0.009515170007944107, -0.002158478833734989, 0.03641726076602936, 0.0179109089076519, -0.017005836591124535, -0.0269378162920475, -0.00996770616620779, 0.0397041030228138, -0.016041219234466553, -0.036369625478982925, 0.020399857312440872, 0.008705368265509605, 0.03282078728079796, 0.018315808847546577, -0.008794684894382954, -0.021781284362077713, -0.012540018185973167, -0.011444403789937496, -0.035559821873903275, 0.025151489302515984, -0.026032743975520134, -0.0074430303648114204, -0.0031826398335397243, 0.0018265197286382318, -0.0029042705427855253, -0.02073330618441105, -0.022984078153967857, 0.016160307452082634, -0.0006698727374896407, -0.028128700330853462, -0.016362758353352547, -0.004308026283979416, -0.018196720629930496, -0.018160995095968246, -0.003715560771524906, 0.012057709507644176, -0.026580551639199257, -0.05039824917912483, 0.003882284741848707, -0.020114045590162277, -0.017577461898326874, -0.0050791241228580475, 0.014945605769753456, 0.10937086492776871, -0.018506351858377457, 0.0012988088419660926, 0.004424137528985739, -0.00841955654323101, -0.004290163051337004, -0.028223972767591476, 0.02655673399567604, -0.018506351858377457, 0.013492725789546967, -0.014897969551384449, -0.015636319294571877, -0.02088812179863453, -0.008753003552556038, -0.01318309549242258, -0.003846558276563883, 0.015207599848508835, -0.043824564665555954, 0.0012593608116731048, 0.004129393491894007, 0.0023713496048003435, -0.006418869365006685, -0.0027926249895244837, -0.007109582889825106, -0.017017744481563568, 0.004114507231861353, 0.0069369045086205006, -0.008544598706066608, -0.013587996363639832, -0.01652948185801506, -0.0011157102417200804, -0.02207900583744049, -0.030867736786603928, -0.002561891218647361, 0.0013635632349178195, -0.01595785841345787, 0.04049008712172508, 0.004421160090714693, -0.03255879133939743, -0.03634580597281456, -0.04575379937887192, -0.014219165779650211, -0.006555821280926466, 0.0022343976888805628, -0.033273324370384216, 0.017815638333559036, 0.011105001904070377, -0.0207690317183733, -0.032082438468933105, -0.03217770904302597, 0.024389322847127914, -0.001498282072134316, 0.005001716781407595, -0.025461118668317795, 0.026723457500338554, -0.005975265055894852, -0.03532164543867111, 0.007079810835421085, 0.005865108221769333, -0.02927195094525814, 0.011349133215844631, 0.00374533305875957, 0.028938502073287964, -0.015219508670270443, 0.040918804705142975, 0.008109926246106625, 0.006076490040868521, -0.023770062252879143, -0.004706972744315863, -0.0007584448321722448, -0.004760562442243099, 0.0035309738013893366, -0.0287003256380558, 0.019601965323090553, 0.021495472639799118, -0.018041906878352165, 0.002566356910392642, 0.021435927599668503, 0.0033702042419463396, 0.0009653610759414732, 0.016505664214491844, -0.010491696186363697, -0.010628648102283478, 0.041609518229961395, 0.015148055739700794, 0.029819758608937263, 0.018768345937132835, -0.014373980462551117, 0.058258090168237686, 0.00033661106135696173, 0.007538301404565573, 0.026270920410752296, -0.0031260729301720858, -0.005826404318213463, -0.0035339510068297386, 0.005329209845513105, -0.03253497555851936, 0.0001287644263356924, 0.012671015225350857, -0.0016717046964913607, -0.003152867779135704, -0.011087138205766678, -0.018184812739491463, 0.01675575040280819, 0.025222942233085632, -0.013742811977863312, 0.022507725283503532, -0.039727918803691864, -0.014683610759675503, -0.054494891315698624, 0.020066410303115845, 0.0033582954201847315, -0.004096643999218941, 0.0032570702023804188, 0.007133400533348322, 0.0278905238956213, 0.06078276410698891, -0.01595785841345787, -0.0011693000560626388, -6.787113670725375e-05, 0.012105344794690609, -0.043634023517370224, 0.009765256196260452, 0.004876673687249422, 0.010140384547412395, -0.026985451579093933, -0.0018160995095968246, 0.055114153772592545, 0.04935026913881302, 0.06816624850034714, 0.0007279284182004631, -0.0022284432779997587, 0.01606503687798977, -0.017839455977082253, 0.013671358115971088, -0.010259473696351051, -0.01245665643364191, -0.010533376596868038, -0.0019470967818051577, -0.022793537005782127, 0.032892242074012756, 0.012010074220597744, -0.004269322380423546, 0.006853542756289244, -0.0031230957247316837, 0.0061806924641132355, 0.012790103442966938, -0.009157904423773289, 0.023781972005963326, -0.015981676056981087, -0.0323682501912117, 0.0032272981479763985, 0.005448298528790474, -0.015350506640970707, 0.0077764783054590225, -0.019947322085499763, 0.0343451201915741, 0.042609862983226776, 0.003825717605650425, -0.0322253443300724, 0.03572654724121094, 0.027175992727279663, 0.012956827878952026, -0.01630321331322193, 0.007270352449268103, 0.03396403789520264, -0.05616213008761406, 0.002986143808811903, 0.04241931810975075, 0.004257413558661938, 0.00601694593206048, 0.0013092290610074997, 0.022352909669280052, -0.0036321990191936493, 0.025723114609718323, 0.012980645522475243, -0.028986137360334396, 0.018768345937132835, 0.04008518531918526, -0.009199585765600204, -0.012671015225350857, 0.031201183795928955, 0.006359325256198645, -0.013623722828924656, -0.005805563647300005, 0.005320278462022543, 0.045658525079488754, 0.00969975721091032, 0.014933696947991848, 0.008699414320290089, -0.01839917153120041, 0.02674727514386177, 0.015005149878561497, -0.004504522308707237, 0.033654406666755676, 0.03651253134012222, 0.04825465753674507, -0.014933696947991848, 0.020018775016069412, 0.007109582889825106, -0.016541391611099243, 0.02363906428217888, 0.024341687560081482, 0.0003345642180647701, -0.020399857312440872, 0.022210003808140755, 0.015386233106255531, -5.0659127737162635e-05, 0.00172678311355412, 0.0029012933373451233, -0.008288558572530746, -0.008145652711391449, -0.002134661190211773, -0.039346836507320404, -0.026985451579093933, 0.0037572418805211782, -0.012444746680557728, 0.007496620528399944, 0.00894949957728386, 0.016469938680529594, 0.02636619098484516, 0.008753003552556038, 0.008354057557880878, 0.03660780191421509, 0.0411808006465435, -0.007002403028309345, -0.0058859484270215034, 0.020364131778478622, 0.005028511397540569, 0.007722888607531786, 0.013861900195479393, 0.030319929122924805, 0.008407647721469402, 0.005865108221769333, -0.013028280809521675, 0.024937130510807037, -0.01099782157689333, -0.019339971244335175, -0.01744646392762661, 0.04189532995223999, -0.01668429747223854, -0.002549982164055109, -0.01004511397331953, 0.002276078797876835, 0.012909192591905594, 0.01004511397331953, -0.0076752533204853535, 0.02889086678624153, -0.02758089452981949, -0.00392992002889514, 0.00944967195391655, -0.04334821179509163, -0.029105227440595627, -0.012694832868874073, -0.027033086866140366, -0.002567845629528165, 0.007663344498723745, -0.019339971244335175, 0.00016160680388566107, -0.01155158318579197, 0.026652004569768906, 0.004087712615728378, -0.043824564665555954, 0.020638035610318184, 0.041037894785404205, 0.028867049142718315, -0.021090570837259293, 0.011140728369355202, 0.047540124505758286, 0.048349928110837936, 0.019256608560681343, 0.020649943500757217, -0.014838425442576408, -0.00847314577549696, -0.026104196906089783, 0.02636619098484516, -0.001842894358560443, 0.01630321331322193, -0.004221687093377113, -0.0188993439078331, -0.012861557304859161, -0.005019580014050007, 0.013802356086671352, 0.024960948154330254, -0.016446121037006378, 0.004721858538687229, -0.0360361784696579, 0.012468565255403519, 0.029248133301734924, -0.0002506440505385399, 0.007288215681910515, 0.007288215681910515, 0.0039388518780469894, 0.016827203333377838, -0.0027315921615809202, 0.021102480590343475, 0.004272299353033304, 0.02169792354106903, 0.011408677324652672, -0.0030843918211758137, 0.0032540929969400167, 0.01832771860063076, 0.0009177256724797189, 0.0066749099642038345, 0.04877864569425583, 0.008651779033243656, 0.0034684522543102503, -0.0171011071652174, 0.021745558828115463, -0.010634602047502995, 0.041418977081775665, 0.016088854521512985, -0.025389665737748146, -0.0033702042419463396, -0.010199928656220436, 0.017124924808740616, -0.0287003256380558, 0.002017061226069927, -0.03875139355659485, 0.003405930707231164, 0.03817977011203766, 0.0215788334608078, -0.031201183795928955, 0.03260642662644386, 0.001985800452530384, 0.009360355325043201, 0.004525362513959408, -0.03196335211396217, -0.006859497167170048, -0.024627499282360077, 0.01901843212544918, -0.0005358982016332448, -0.01920897327363491, -0.05516178905963898, -0.0012623380171135068, -0.015862585976719856, -0.004909423179924488, -0.002015572739765048, -0.0035488370340317488, 0.011295543052256107, -0.006704682018607855, 0.007955110631883144, 0.0023519976530224085, 0.06397433578968048, 0.010670328512787819, -0.011575400829315186, -0.015386233106255531, 0.06278344988822937, 0.006865451578050852, -0.010717963799834251, 0.010628648102283478, 0.026342373341321945, 0.00965807680040598, -0.044515278190374374, 0.014540704898536205, -0.00012922962196171284, 0.02028076909482479, 0.011337224394083023, -0.012045800685882568, 0.046587418764829636, 0.02479422278702259, 0.002856635022908449, 0.025508753955364227, 0.00028134655440226197, -0.024770405143499374, 0.0035250193905085325, -0.013683267869055271, -0.0035399054177105427, -0.007044084370136261, -0.00031390981166623533, 1.1222694411117118e-05, 0.00801465567201376, 0.026675822213292122, -0.008937590755522251, -0.0057966322638094425, 0.0011514368234202266, -0.004123439081013203, -0.004123439081013203, -0.04563470929861069, -0.009896253235638142, -0.0030695057939738035, -0.00012383342254906893, 0.008169470354914665, -0.03143936023116112, -0.016053128987550735, -0.013087824918329716, -0.005969310645014048, 0.002012595534324646, 0.013456999324262142, -0.011087138205766678, -0.01224229671061039, 0.013171186670660973, -0.022126641124486923, -0.0010509559651836753, 0.01878025382757187, -0.028628872707486153, -0.0361076295375824, -0.018565895035862923, 0.026985451579093933, 0.011718307621777058, -0.01088468823581934, -0.015707772225141525, -0.02031649649143219, 0.004242527298629284, -0.00762166315689683, -0.03394021838903427, 0.038394130766391754, -0.013873809017241001, 0.018351536244153976, -0.03358295559883118, 0.0019426309736445546, -0.01962578296661377, 0.015100420452654362, -0.01679147779941559, -0.014564522542059422, -0.002685445360839367, -0.007883657701313496, -0.020066410303115845, 0.01201602816581726, 0.004840947221964598, 0.025318212807178497, -0.014266801066696644, -0.004575975239276886, -0.029986482113599777, -0.0059246523305773735, 0.049112092703580856, 0.007693116553127766, 0.0007402094197459519, -0.00868750549852848, -0.01551723014563322, 0.03141554445028305, -0.014183439314365387, 0.04134752228856087, -0.006204510107636452, -0.004608724731951952, 0.03998991474509239, -0.022007552906870842, 0.010813234373927116, 0.007550210226327181, -0.027914341539144516, -0.018339626491069794, -0.0018101449823006988, -0.033797312527894974, 0.02215045876801014, -0.016315123066306114, -0.016803385689854622, 0.01595785841345787, 0.002547004958614707, 0.014874151907861233, -0.015290961600840092, -0.019887777045369148, 0.028986137360334396, -0.013218821957707405, 0.009598532691597939, -0.014695519581437111, 0.03510728478431702, -0.011372950859367847, -0.049254998564720154, -0.028438331559300423, -0.004188937600702047, -0.010372607037425041, 0.02425832487642765, 0.021031027659773827, -0.01844680681824684, 0.0016359781147912145, 0.019351879134774208, 0.023079348728060722, 0.016934383660554886, 0.03913247585296631, -0.0058919028379023075, 0.05068406090140343, 0.0020751168485730886, 0.01801808923482895, 0.014147712849080563, -0.0028134656604379416, 0.019863959401845932, -0.015886403620243073, 0.0044955904595553875, 0.006139011587947607, -0.0038941935636103153, 0.009181722067296505, 0.0055346377193927765, -0.004141302313655615, 0.004665291402488947, 0.014707428403198719, -0.009860526770353317, -0.022436270490288734, -0.010628648102283478, -0.0108251441270113, 0.002276078797876835, -0.02719981037080288, -0.00048714634613133967, -0.0006594525184482336, -0.010908505879342556, 0.015350506640970707, 0.0025261645205318928, 0.02865269035100937, 0.03217770904302597, 0.014385889284312725, -0.0004837969900108874, -0.027342716231942177, 0.00021100991580169648, -0.01813717745244503, -0.015672044828534126, 0.004480704199522734, -0.010170157067477703, 0.006663001142442226, -0.014302527531981468, -0.004808197729289532, 0.004882628098130226, 0.02199564315378666, 0.025270577520132065, -0.007371577434241772, -0.009187676943838596, -0.0023147824686020613, 0.043181486427783966, 0.005650748964399099, -0.05721011012792587, -0.007425167132169008, -0.03608381375670433, 0.04480108991265297, -0.057067204266786575, 0.002433870919048786, 0.03165372088551521, 0.021912282332777977, 8.205941412597895e-05, 0.008401692844927311, -0.004936217796057463, 0.0017476235516369343, 0.021686013787984848, 0.005844267550855875, -0.004564066417515278, -0.008723231963813305, 0.02097148261964321, 0.02019740827381611, 0.02927195094525814, -0.007222716696560383, -0.000714530935510993, -0.04170478880405426, 0.007627617567777634, -0.0029027818236500025, 0.02334134466946125, -0.010420243255794048, -0.022329092025756836, -0.001714874291792512, -0.019328061491250992, -0.023508068174123764, -0.021328749135136604, -0.031391724944114685, 0.004177028778940439, -0.01702965423464775, -0.004775448236614466, 0.0018875525565817952, 0.036560166627168655, 0.003915034234523773, 0.02574693225324154, 0.04418183118104935, 0.007716934196650982, -0.04353875294327736, 0.009812891483306885, -0.02173364907503128, -0.010307108983397484, -0.029819758608937263, -0.018434898927807808, 0.001361330272629857, 0.03143936023116112, -0.016767660155892372, 0.003408907912671566, 0.013707085512578487, 0.0017386919353157282, -0.00157345668412745, 0.03455948084592819, -0.04601579159498215, 0.033987853676080704, 0.004867741838097572, 0.012480474077165127, -0.019685328006744385, -0.02915286272764206, -0.011081184260547161, 0.005242870654910803, -0.01086682453751564, 0.007431121543049812, -0.00717508140951395, -0.018970796838402748, 0.019518602639436722, 0.009675939567387104, 0.001231821603141725, -0.015552956610918045, 0.038703758269548416, -0.03570272773504257, -0.007752660661935806, -0.016993926838040352, -0.017005836591124535, -0.014588340185582638, -0.022257639095187187, -0.02655673399567604, -0.016291305422782898, -0.012885374948382378, -0.012480474077165127, 0.00895545445382595, 0.0028179313521832228, 0.018351536244153976, -0.0029787009116262197, 0.042681314051151276, -0.057638827711343765, 0.027842888608574867, -0.0007089486462064087, 0.023091258481144905, 0.009157904423773289, -0.008913773111999035, -0.012980645522475243, 0.0008380852523259819, -0.0016285351011902094, -0.03072483092546463, 0.01756555214524269, 0.017970453947782516, -0.03234443441033363, -0.01046192366629839, -0.013349819928407669, -0.025889838114380836, 0.006752317305654287, 0.007216762285679579, -0.013052098453044891, -0.009842664003372192, 0.03960883244872093, 0.02536584809422493, 0.005424480885267258, 0.010146339423954487, -0.002450245665386319, -0.02674727514386177, 0.012575744651257992, -0.010795371606945992, -0.0048230839893221855, 0.03103446029126644, -0.006305735558271408, 0.02356761135160923, -0.007276306860148907, -0.009765256196260452, 0.04137134179472923, 0.01388571783900261, 0.02138829231262207, 0.022567268460989, -0.032701700925827026, -0.00749066611751914, -0.023960603401064873, 0.0070262206718325615, 0.020495129749178886, 0.010908505879342556, 0.0667848214507103, 0.00812778901308775, 0.005269665736705065, -0.02195991761982441, -0.008193287998437881, -0.014755063690245152, 0.019578147679567337, 0.013933353126049042, 0.008943545632064342, 0.016553299501538277, 0.03546455129981041, -0.016398485749959946, -0.016577117145061493, 0.02543730102479458, 0.029605397954583168, 0.0033821130637079477, -0.0045015448704361916, -0.010801325552165508, -0.04768303036689758, 0.03810831531882286, -0.018113359808921814, 0.0060526723973453045, -0.012885374948382378, -0.00395969208329916, -0.01359990518540144, 0.012754376977682114, -0.0011030571768060327, 0.03784632310271263, -0.03853703662753105, 0.03698888421058655, 0.005430435296148062, 0.01645802892744541, 0.022007552906870842, -0.0029385085217654705, -0.027557076886296272, -0.02215045876801014, 0.02131683938205242, -0.032963693141937256, -0.007133400533348322, -0.0030843918211758137, -0.003033779328688979, -0.008336193859577179, 0.019256608560681343, -0.00038852618308737874, 0.013016371987760067, 0.02280544489622116, 0.02000686712563038, 0.012611471116542816, -0.03510728478431702, 0.0032570702023804188, -0.027676165103912354, 0.005811518058180809, 0.01722019538283348, 0.025318212807178497, -0.008729185909032822, 0.006740408483892679, 0.007550210226327181, -0.02005450241267681, 0.045467983931303024, -0.0015436845133081079, 0.01725592277944088, -0.03491674363613129, -0.0036738798953592777, -0.006853542756289244, 0.03660780191421509, -0.013683267869055271, 0.0074132583104074, -0.000151930857100524, 0.002441314049065113, 0.04213350638747215, -0.05849626660346985, -0.01318309549242258, 0.009122177958488464, -0.02491331286728382, 0.0067701805382966995, 0.029009956866502762, -0.0033434093929827213, 0.005376845132559538, -0.027914341539144516, 0.05368509143590927, -0.03560745716094971, 0.03472620248794556, -0.029795939102768898, 0.008854229003190994], [0.005332109518349171, -0.006116080097854137, 0.04154486209154129, 0.006850009318441153, -0.03923187404870987, 0.022362612187862396, -0.018125837668776512, 0.01418930571526289, 0.004322956316173077, 0.08211115002632141, -0.011598311364650726, -0.009274201467633247, 0.044169217348098755, 0.040343888103961945, -0.054310791194438934, -0.004859503358602524, -0.012576884590089321, 0.04098885506391525, -0.023174382746219635, -0.002207348821684718, -0.0026646647602319717, 0.05969294160604477, -0.038386739790439606, 0.0021406279411166906, -0.04634876549243927, -0.01992730051279068, 0.012866008095443249, -0.05880332738161087, 0.04821695014834404, -0.040966615080833435, 0.03493949770927429, -0.03238186240196228, 0.019082169979810715, -0.0017708831001073122, 0.005585093051195145, -0.005637913476675749, -0.013310814276337624, -0.014244905672967434, 0.03042471781373024, 0.04279031977057457, 0.0038447901606559753, 0.020438827574253082, 0.021639803424477577, -0.024686722084879875, -0.002129507716745138, 0.046838052570819855, 0.03547326475381851, -0.06356275081634521, -0.010130451992154121, 0.004659340716898441, 0.046126361936330795, 0.07005691528320312, 0.00216842838563025, 0.0019529755227267742, -0.005151407327502966, -0.003575126640498638, 0.0072503346018493176, 0.026110101491212845, 0.042567916214466095, -0.019682656973600388, -0.004906764253973961, -0.042389992624521255, -0.0033527237828820944, -0.0013246872695162892, -0.022718457505106926, -0.012421201914548874, -0.01414482481777668, 0.023730389773845673, -0.005854756571352482, -0.034294527024030685, 0.03169241547584534, 0.05213123932480812, 0.04032164812088013, -0.027244355529546738, -0.010302814655005932, 0.014222665689885616, -0.014700831845402718, -0.0039031710475683212, -0.000680413912050426, -0.010586378164589405, -0.04330184683203697, -0.012721446342766285, -0.03694112226366997, -0.021595321595668793, 0.012120958417654037, 0.002696635201573372, -0.06111631914973259, -0.02142851985991001, 0.010419576428830624, -0.004361876752227545, 0.016257653012871742, -0.024708962067961693, -0.04608188197016716, 0.030291276052594185, 0.01236560195684433, 0.009407643228769302, 0.07010139524936676, -0.030669361352920532, -0.011931915767490864, 0.024330878630280495, -0.010375095531344414, -0.049595847725868225, -0.027199875563383102, 0.011420389637351036, 0.0018584543140605092, -0.03667423874139786, 0.003778069280087948, 0.04839487373828888, 0.04875071719288826, 0.00916299968957901, 0.0396544374525547, -0.008796035312116146, -0.005788035690784454, 0.027288837358355522, -0.023730389773845673, 0.001426158589310944, -0.0298019889742136, -0.04786110669374466, 0.0235747080296278, 0.0064941649325191975, -0.047727663069963455, -0.0004336856654845178, 0.008201107382774353, -0.026532666757702827, 0.0077841016463935375, -0.026221303269267082, 0.010514097288250923, -0.008045424707233906, -0.07721828669309616, -0.0053154295310378075, 0.035806868225336075, -0.03433900699019432, 0.065831258893013, -0.0030357996001839638, -0.008134386502206326, -0.0007923103403300047, -0.019326811656355858, -0.03182585537433624, 0.009363162331283092, 0.0032748826779425144, 0.011498230509459972, -0.0031219806987792253, -0.007950903847813606, 0.0012225209502503276, -0.05408838763833046, 0.036963362246751785, 0.0014483989216387272, 0.020227544009685516, -0.01869296468794346, -0.03783073276281357, -0.020572269335389137, 0.04365769028663635, 0.011854074895381927, 0.018704084679484367, 0.015145638026297092, 0.025487372651696205, 0.01094222255051136, 0.04741629958152771, 0.015879567712545395, 0.014600750990211964, -0.03958771750330925, -0.02187332510948181, 0.016746938228607178, -0.0033777442295104265, 0.012387841939926147, -0.01312177162617445, 0.03858690336346626, 0.02784484438598156, -0.030402477830648422, -0.027956044301390648, -0.013711139559745789, -0.054399751126766205, -0.024442078545689583, -0.0089906370267272, -0.02019418403506279, -0.046571169048547745, 0.05560072511434555, 0.044169217348098755, 0.015201238915324211, -0.013333054259419441, -0.020138582214713097, 0.027800362557172775, -0.06756599992513657, -0.01010265201330185, -0.08046536892652512, 0.021484119817614555, 0.016947101801633835, 0.004856723360717297, -0.0409221351146698, 0.014133704826235771, -0.014823153614997864, -0.05649033933877945, 0.010597498156130314, -0.016691338270902634, -0.0068222093395888805, 0.007367096375674009, -0.016847020015120506, -0.02249605394899845, -0.012943848967552185, -0.02526497095823288, 0.025331690907478333, -0.01841496117413044, 0.012977209873497486, -0.019682656973600388, 0.007294815499335527, -0.004909544251859188, -0.018904246389865875, -0.000931312155444175, 0.04512554779648781, -0.06520853191614151, 0.006583125796169043, -0.02846757136285305, -0.01903768815100193, 0.015979649499058723, -0.0035779066383838654, 0.02757796086370945, -0.025020327419042587, -0.005982638336718082, 0.029557345435023308, 0.020861392840743065, -0.04145590215921402, 0.009240840561687946, 0.014233785681426525, -0.028445331379771233, -0.04688253253698349, -0.010219413787126541, 0.026932992041110992, -0.019704896956682205, -0.020316505804657936, -0.05791371688246727, -0.015601564198732376, 0.016157571226358414, 0.019426893442869186, -0.01103118434548378, -0.01911552995443344, -0.004225654993206263, 0.036073751747608185, -0.03300458937883377, 0.00019390753004699945, -0.03078056126832962, 0.04305720329284668, -0.05310981348156929, 0.00487062381580472, 0.04127797856926918, 0.015690524131059647, -0.013188492506742477, -0.0007415746804326773, -0.04999617487192154, 0.047193896025419235, 0.031447771936655045, 0.021150516346096992, -0.0035028457641601562, 0.08429069817066193, -0.10194949060678482, 0.0027633560821413994, 0.051908839493989944, -0.001748642884194851, -0.04325736686587334, 0.005131946876645088, -0.03191481530666351, -0.023863831534981728, 0.009735687635838985, 0.0016666317824274302, -0.007178053725510836, -0.07744069397449493, -0.020349865779280663, 0.0053293295204639435, 0.022740697488188744, -0.013366414234042168, 0.04599292203783989, -0.05035201832652092, 0.033582840114831924, -0.003383304225280881, -0.007300375495105982, -0.04178950563073158, 0.014011383056640625, -0.014089223928749561, 0.0009160219924524426, -0.008701513521373272, -0.00982464849948883, -0.03860914334654808, 0.01254352368414402, -0.04029940813779831, -0.043190643191337585, 0.03178137540817261, 0.03551774471998215, -0.012165439315140247, -0.013166251592338085, -0.061605606228113174, 0.017291825264692307, 0.0701458752155304, -0.006588686257600784, 0.023619187995791435, -0.0032637626864016056, 0.04005476459860802, 0.048795197159051895, 0.015312439762055874, -0.009796847589313984, -0.006966771092265844, 0.03538430109620094, -0.00991916935890913, 0.02225141040980816, -0.029045820236206055, -0.051819875836372375, -0.05773579329252243, 0.056356895714998245, -0.008946157060563564, 0.03987684100866318, -0.005343229975551367, -0.013433135114610195, -0.04937344416975975, 0.04661564901471138, -0.05150851234793663, -0.027600200846791267, -0.018637362867593765, -0.029757509008049965, -0.01689149998128414, 0.03222618252038956, 0.005782475695014, -0.02055002935230732, 0.020872512832283974, 0.007856382988393307, 0.025509612634778023, 0.008073225617408752, -0.015023316256701946, -0.026577146723866463, 0.0418117456138134, 0.042034149169921875, -0.003096960484981537, -0.014489549212157726, -0.007706260774284601, -0.012954968959093094, 0.0316479317843914, -0.002458942122757435, -0.04468074440956116, -0.007556138560175896, -0.040699731558561325, 0.02044994756579399, -0.0021058775018900633, 0.0019349053036421537, 0.014211545698344707, -0.01329969335347414, -0.018103595823049545, 0.01813695766031742, -0.020405465736985207, 0.015334680676460266, 0.025020327419042587, 0.015245718881487846, -0.01090330258011818, 0.02216244861483574, 0.010881062597036362, 0.02428639680147171, -0.022184690460562706, 0.008701513521373272, -0.012977209873497486, -0.016224291175603867, 0.07152477651834488, 0.030113352462649345, 0.018748564645648003, 0.021650923416018486, 0.025576334446668625, 0.030914003029465675, 0.01098670344799757, 0.023285584524273872, 0.055823128670454025, 0.0011613601818680763, -0.02757796086370945, 0.007172493729740381, 0.019415773451328278, -0.04661564901471138, 0.015412521548569202, 0.018615122884511948, 0.06654294580221176, 0.01338865514844656, 0.00262435432523489, -0.01635773293673992, 0.051819875836372375, 0.009552204981446266, -0.0011676152935251594, -0.001661071670241654, -0.009719006717205048, 0.0062050409615039825, 0.0024686723481863737, -0.00938540231436491, -0.01436722744256258, 0.04121125862002373, -0.07552802562713623, -0.033849723637104034, 0.01600188948214054, 0.005618453491479158, -0.0004708686610683799, 0.006772168446332216, -0.029201501980423927, 0.052264682948589325, -0.04107781499624252, 0.008395710028707981, -0.0026660547591745853, 0.030202314257621765, 0.007500538136810064, -0.008829395286738873, -0.018837526440620422, -0.07926439493894577, 0.024797923862934113, -0.017369667068123817, -0.026310263201594353, -0.01920449174940586, -0.03289338946342468, -0.013155131600797176, -0.03551774471998215, 0.005056886002421379, 0.0007443547365255654, 0.020972594618797302, 0.047727663069963455, -0.010263893753290176, 0.04083317518234253, 0.00969676673412323, -0.051819875836372375, 0.06236177310347557, 0.02348574623465538, -0.056534819304943085, 0.054266307502985, 0.018392721191048622, -0.003027459606528282, -0.0006508760270662606, -0.04539243131875992, -0.002891237847507, 0.042923759669065475, -0.0064719244837760925, 0.010108212009072304, -0.049151040613651276, -0.01254352368414402, -0.013455376029014587, -0.007433817256242037, 0.013433135114610195, -0.04706045612692833, -0.05124162882566452, -0.014622990973293781, -0.0018153637647628784, 0.01626877300441265, -0.01725846529006958, 0.02473120391368866, -0.02047218754887581, 0.040521807968616486, -0.021751003339886665, -0.0596039779484272, 0.011264706961810589, -0.010553018189966679, 0.036607518792152405, -0.013866821303963661, 0.029735269024968147, -0.01472307275980711, -0.008240027353167534, -0.044614024460315704, 0.0007109942962415516, -0.008729314431548119, -0.012454562820494175, -0.012499043717980385, -0.047371819615364075, 0.017947914078831673, -0.008262268267571926, 0.0009848278714343905, 0.0449921078979969, 0.04964032769203186, 0.03591806814074516, -0.000921582046430558, 0.01805911585688591, -0.021673163399100304, 0.01771439053118229, -0.012676965445280075, -0.04178950563073158, 0.017314065247774124, 0.006199480965733528, -0.019271211698651314, -0.013955782167613506, 0.03932083398103714, -0.015712765976786613, -0.0001441275089746341, -0.09954754263162613, -0.013244093395769596, -0.023018701002001762, 0.015012196265161037, 0.017725512385368347, -0.05488903820514679, 0.005326549522578716, 0.09234168380498886, -0.03925411403179169, 0.05497799813747406, 0.013455376029014587, -0.0005897152004763484, -0.03745264932513237, -0.03798641636967659, 0.010124891996383667, 0.03956547752022743, -0.008401270024478436, 0.018025755882263184, 0.029157020151615143, -0.04474746435880661, 0.03247082233428955, 0.028534293174743652, 0.014834273606538773, -0.03789745643734932, -0.049684807658195496, -0.004186734557151794, 0.0037002284079790115, 0.004884523805230856, -0.012999449856579304, -0.010402895510196686, -0.03905395045876503, -0.051286108791828156, 0.011248026974499226, -0.028045006096363068, -0.0014233785914257169, 0.02136179991066456, 0.009841328486800194, -0.026021139696240425, -0.017947914078831673, 0.043813373893499374, -0.018526161089539528, -0.03476157411932945, 0.028267409652471542, 0.028489811345934868, -0.015034436248242855, 0.02187332510948181, -0.0007665950106456876, -0.007400456815958023, 0.026932992041110992, -0.01762543059885502, 0.0007561699021607637, 0.008379029110074043, 0.021283958107233047, -0.03404988348484039, -0.047371819615364075, -0.05168643593788147, 0.023441266268491745, 0.005782475695014, 0.004473078530281782, 0.011147945187985897, 0.012243280187249184, -0.012143198400735855, -0.013333054259419441, 0.008834955282509327, 0.015178998000919819, 0.005999318324029446, -0.008612552657723427, 0.018793044611811638, -0.02989095076918602, 0.023241102695465088, 0.04334632679820061, 0.011197986081242561, -0.005220908205956221, -0.017758872359991074, 0.02446432039141655, -0.016491174697875977, -0.009157439693808556, -0.004142254125326872, 0.034917257726192474, 0.013288573361933231, -0.06734360009431839, -0.0014998295810073614, -0.03718576580286026, -0.01521235890686512, 0.0197604987770319, -0.0005921477568335831, -0.006594246253371239, 0.011776234023272991, 0.002946838503703475, 0.00988024938851595, -0.0334271565079689, -0.025865457952022552, 0.008484670892357826, 0.00273555563762784, -0.003989351913332939, 0.023975033313035965, -0.029223741963505745, 0.06173904612660408, 0.015623804181814194, 6.328926247078925e-05, -0.012999449856579304, 0.04494762793183327, 0.03275994956493378, 0.003666867967694998, 0.04697149246931076, -0.04590395838022232, -0.004901203792542219, 0.0023352305870503187, 0.006299562286585569, -0.03086952306330204, -0.03720800578594208, 0.012376721948385239, 0.04287927970290184, 0.010525217279791832, 0.0315144918859005, 0.005443311296403408, -0.00235747080296278, 0.021417399868369102, 0.032337382435798645, -0.025754256173968315, 0.005104146897792816, -0.008050985634326935, 0.012610244564712048, 0.01094222255051136, 0.007645099889487028, 0.0039198510348796844, 0.019004328176379204, -0.07508321851491928, -0.002689685206860304, 0.01133698783814907, -0.02651042677462101, 0.03133656829595566, 0.005732434801757336, 0.03391644358634949, -0.013700018636882305, -0.0020266463980078697, -0.047638703137636185, -0.02258501574397087, 0.012387841939926147, -0.06236177310347557, -0.034294527024030685, 0.0019974561873823404, 0.036429595202207565, -0.011431509628891945, 0.005409950856119394, 0.007133573293685913, -0.027711402624845505, -0.009830208495259285, -0.021239478141069412, -0.02659938670694828, -0.02339678630232811, -0.01884864643216133, -0.036429595202207565, -0.04490314796566963, 0.02098371461033821, -0.025687536224722862, 0.011359228752553463, 0.023263344541192055, -0.01209871843457222, 0.006711007561534643, -0.024353118613362312, -0.003538986202329397, 0.015379160642623901, 0.02056114934384823, -0.004067193251103163, 0.03445021063089371, -0.015801725909113884, 0.006054919213056564, 0.029068060219287872, -0.009841328486800194, 0.027822602540254593, 0.03316027298569679, 0.0007756301201879978, -0.002350520808249712, -0.019093289971351624, 0.001702772220596671, -0.003480605548247695, 0.04012148454785347, 0.03578462824225426, -0.028334129601716995, 0.009229720570147038, 0.029579587280750275, 0.0035584464203566313, -0.024353118613362312, 0.014344987459480762, -0.02891237847507, 0.04519227147102356, 0.028845656663179398, 0.009713446721434593, 0.04170054569840431, -0.0177922323346138, 0.008017624728381634, -0.029646307229995728, -0.057958196848630905, -0.013477616012096405, 0.047282855957746506, -0.052175723016262054, 0.015190117992460728, -0.03344939649105072, -0.025242729112505913, -0.0010564137483015656, -0.019271211698651314, 0.019793858751654625, -0.02989095076918602, -0.02891237847507, -0.017836712300777435, 0.006905610207468271, -0.012499043717980385, -0.017036061733961105, 0.007845262065529823, -0.032515306025743484, -0.014022503048181534, 0.021028194576501846, -0.005229248199611902, 0.03229290246963501, -0.009752367623150349, 0.005760235246270895, 0.019549215212464333, 0.04830591008067131, 0.003358283778652549, 0.006449684035032988, -0.014055863954126835, -0.07499425858259201, 0.019905060529708862, 0.014734192751348019, 0.012165439315140247, -0.048528313636779785, -0.003500065766274929, -0.004470298532396555, -0.03587358817458153, -0.03104744479060173, 0.051375072449445724, -0.004456398077309132, -0.008028744719922543, -0.046037402004003525, -0.0418117456138134, -0.020060742273926735, 0.0010897741885855794, -0.024753443896770477, 0.007194734178483486, -0.020839152857661247, -0.024219676852226257, -0.008996197953820229, -0.030180074274539948, 0.011642792262136936, -0.008262268267571926, -0.03336043655872345, -0.006566445808857679, -0.007311495486646891, -0.0009396522655151784, -0.010397335514426231, 0.004097773693501949, -0.004428597632795572, 0.02073907107114792, -0.023774869740009308, 0.024575520306825638, -0.01566828414797783, -0.03398316353559494, 0.018036875873804092, -0.033404916524887085, -0.029157020151615143, -0.01921561174094677, -0.01940465345978737, 0.012354481033980846, -0.015612684190273285, -0.014878754504024982, 0.028512053191661835, 0.0013927981490269303, -0.008562511764466763, 0.007111332844942808, 0.00696121109649539, 0.011820713989436626, 0.020683471113443375, -0.02027202397584915, 0.00627176184207201, -0.010997823439538479, -0.01681366004049778, -0.024152955040335655, 0.012732566334307194, 0.008923916146159172, 0.010085972025990486, -0.02010522224009037, 0.011142385192215443, 0.020694591104984283, 0.005465551279485226, -0.010819901712238789, 0.015234598889946938, 0.0014845393598079681, -0.020316505804657936, -0.03033575601875782, 0.014244905672967434, 0.04001028090715408, -0.02864549495279789, -0.041322458535432816, 0.007750741206109524, 0.019438013434410095, 0.02606561966240406, 0.04138918220996857, -0.0182370375841856, -0.028222927823662758, -0.015779485926032066, 0.0059381574392318726, -0.029401663690805435, 0.027066433802247047, -0.02651042677462101, -0.004954024683684111, 0.010208293795585632, 0.013244093395769596, 0.0004291681107133627, -0.005927037447690964, -0.010386215522885323, 0.01671357825398445, 0.003252642462030053, -0.022218050435185432, 0.0020891972817480564, 0.0010362585308030248, -0.03502845764160156, -0.015501482412219048, 0.017414147034287453, 0.008862756192684174, -0.021739883348345757, -0.04572603851556778, 0.012610244564712048, -0.008050985634326935, -0.04352425038814545, -0.0033388235606253147, 0.01601300947368145, 0.10248325765132904, -0.03987684100866318, 0.00836234912276268, -6.354989454848692e-05, -0.007667340338230133, -0.002047496847808361, -0.036518558859825134, 0.04383561387658119, -0.011809593997895718, 0.00787306297570467, -0.017925674095749855, -0.00934648234397173, -0.026110101491212845, 0.003644627518951893, 0.015579323284327984, 0.005334889516234398, -0.00021354154159780592, -0.029646307229995728, 0.0018848646432161331, 0.0011676152935251594, -0.023419026285409927, -0.025420652702450752, 0.004637100733816624, -0.0008715413860045373, -0.012410081923007965, -0.00642744405195117, -0.0060715992003679276, 0.012943848967552185, -0.004231215454638004, -0.013944662176072598, 0.022551653906702995, -0.03809761628508568, -0.039543237537145615, -0.014789793640375137, 0.007978703826665878, -0.01700270175933838, 0.020683471113443375, -0.013066170737147331, -0.035095177590847015, -0.022307012230157852, -0.040077004581689835, -0.013221852481365204, -8.843990508466959e-05, 0.014823153614997864, -0.0175364688038826, -0.00040970786358229816, 0.011236906982958317, -0.02526497095823288, -0.018659602850675583, -0.051375072449445724, 0.01744750700891018, -0.001348317600786686, 0.013377535156905651, -0.024531040340662003, 0.027644680812954903, 0.005368249956518412, -0.02846757136285305, 0.004937344696372747, 0.005354349967092276, -0.013744499534368515, 0.026199061423540115, -0.004770542494952679, 0.006622046697884798, -0.021940046921372414, 0.030647119507193565, -0.010992263443768024, -0.0170916635543108, -0.012076477520167828, -0.00974124763160944, 0.005593433044850826, -0.0007269795169122517, -0.0025770936626940966, -0.042745839804410934, 0.030202314257621765, 0.01895984821021557, -0.014256026595830917, 0.005273729097098112, 0.026710588485002518, 0.014233785681426525, 0.03356060013175011, 0.008662593550980091, -0.004008812364190817, -0.012676965445280075, 0.03923187404870987, 0.009168559685349464, 0.011876314878463745, 0.025909937918186188, -0.0028634374029934406, 0.028867896646261215, 0.00021110901434440166, -0.008662593550980091, 0.00862923264503479, -0.00013587427383754402, -0.014389468356966972, -0.019415773451328278, 0.00011146208271384239, -0.03271546587347984, -0.010069291107356548, 0.02009410224854946, 0.00858475174754858, -0.0182370375841856, -0.006660967133939266, -0.008684833534061909, 0.005290409084409475, 0.014878754504024982, -0.015534843318164349, 8.930866897571832e-05, -0.029312703758478165, -0.023619187995791435, -0.03184809535741806, 0.027511239051818848, 0.024508800357580185, 0.013722259551286697, 0.02010522224009037, 0.003172021359205246, 0.007133573293685913, 0.07250335067510605, -0.008890556171536446, -0.004192294552922249, 0.008423510007560253, 0.010208293795585632, -0.047905586659908295, 0.0021183877252042294, 0.027377797290682793, 0.011531590484082699, -0.03347163647413254, -0.03131432831287384, 0.03807537630200386, 0.029935430735349655, 0.06858905404806137, 0.03149225190281868, -0.0175364688038826, 0.015301319770514965, -0.01644669473171234, 0.013711139559745789, -0.0016624616691842675, 0.012487922795116901, -0.007728500757366419, -0.02100595459342003, -0.0202053040266037, -0.005354349967092276, 0.00491788424551487, 0.0036557477433234453, 0.01887088641524315, -0.001175260404124856, 0.023596948012709618, -0.002711925422772765, -0.009240840561687946, 0.0004232605278957635, -0.01014713291078806, -0.047994546592235565, 0.014122584834694862, 0.01859288290143013, 0.0007394896820187569, 0.01565716415643692, -0.030936244875192642, 0.03923187404870987, 0.030380235984921455, 0.002064177067950368, -0.03398316353559494, 0.039899080991744995, 0.01601300947368145, 0.010630859062075615, -0.0005959703121334314, -0.0038308899383991957, 0.05853644385933876, -0.04883967712521553, 0.013555456884205341, 0.05462215468287468, 0.010508537292480469, -0.007372656371444464, -0.010258333757519722, 0.022907499223947525, 0.011120145209133625, 0.043368566781282425, 0.020772431045770645, -0.0151233971118927, 0.020939232781529427, 0.04101109504699707, 0.0008534711669199169, -0.020038502290844917, 0.0359625481069088, 0.012454562820494175, 0.0024506018962711096, 0.009441003203392029, 0.02268509566783905, 0.032070498913526535, -0.007789661642163992, 0.016924861818552017, 0.03338267654180527, -0.022996461018919945, 0.030624879524111748, -0.001755592878907919, -0.015056676231324673, 0.04047732800245285, 0.007305935490876436, 0.04172278568148613, 0.0067610484547913074, 0.022640615701675415, 0.008790474385023117, -0.012643605470657349, -0.005440531298518181, 0.01494547538459301, -0.0019321251893416047, -0.028267409652471542, 0.02321886271238327, 0.007172493729740381, 0.0018904246389865875, 0.018537282943725586, 0.011431509628891945, -0.021839965134859085, -0.017569828778505325, -0.021673163399100304, -0.029846470803022385, -0.015290199778974056, 0.02267397567629814, 0.015457001514732838, -0.003783629508689046, 0.010074852034449577, 0.005276509094983339, 0.008067665621638298, -0.0015721105737611651, 0.012332241050899029, 0.050129614770412445, 0.061427682638168335, 0.010080412030220032, 0.013455376029014587, 0.010502977296710014, 0.00859031267464161, 0.005443311296403408, 0.006088279653340578, 0.02133955806493759, 0.016079729422926903, 0.009107398800551891, -0.019193369895219803, 0.023596948012709618, -0.014111463911831379, -0.012521283701062202, -0.01521235890686512, 0.03422780707478523, -0.03433900699019432, 0.008467990905046463, -0.01205423753708601, 0.02117275632917881, -0.00020850272267125547, -0.011765114031732082, 0.013244093395769596, 0.02740003727376461, -0.0343167670071125, 0.009552204981446266, 0.011020064353942871, -0.018648482859134674, -0.04154486209154129, 0.0005799850914627314, -0.004111673682928085, -0.02029426582157612, -0.005365469958633184, -0.026910752058029175, -0.0120097566395998, -0.021839965134859085, 0.022707337513566017, -0.009841328486800194, -0.03925411403179169, 0.029312703758478165, 0.03371628001332283, 0.028689974918961525, -0.0025062027852982283, 0.009607805870473385, 0.03860914334654808, 0.023085420951247215, -0.011086785234510899, 0.054266307502985, -0.021372919902205467, -0.006015998777002096, -0.025998899713158607, 0.023107660934329033, -0.0069834510795772076, 0.02508704736828804, 0.0012579663889482617, -0.02027202397584915, -0.01593516767024994, -0.025109287351369858, 0.007639539893716574, 0.008228907361626625, -0.007928663864731789, -0.00018261362856719643, -0.014923235401511192, -0.004125573672354221, 0.030758321285247803, 0.004926224239170551, 0.015401401557028294, 0.010597498156130314, 0.02225141040980816, 0.005134726874530315, -0.005101366434246302, -0.0050624459981918335, 0.008695953525602818, 0.003194261807948351, 0.022529413923621178, -0.018648482859134674, -0.012432322837412357, 0.03160345181822777, 0.0005511422059498727, 0.004853943362832069, 0.018025755882263184, 0.0060048783197999, -0.014800913631916046, -9.9733799288515e-05, 0.014978835359215736, -0.0004256930551491678, 0.03836449980735779, 0.030313516035676003, -0.01258800458163023, -0.007639539893716574, -0.0032109420280903578, 0.020661229267716408, -0.0045286789536476135, -0.008601432666182518, -0.04299048334360123, -0.006149440538138151, 0.047193896025419235, 0.0005476671503856778, -0.03371628001332283, 0.013221852481365204, -0.0055100321769714355, 0.014756432734429836, 0.011047864332795143, -0.024686722084879875, -0.012676965445280075, -0.05480007454752922, 0.0033193633425980806, 0.01521235890686512, -0.012576884590089321, -0.056801702827215195, 0.008751554414629936, -0.016313252970576286, -0.004461958073079586, 0.0004441108030732721, 0.006394083611667156, 0.005393270403146744, -0.014178184792399406, -0.012799287214875221, 0.0184928011149168, 0.059826381504535675, -0.005640693474560976, -0.02304094098508358, -0.013666658662259579, 0.04786110669374466, -0.006644286680966616, 0.017925674095749855, 0.013588817790150642, 0.017914554104208946, 0.017024941742420197, -0.03433900699019432, -0.007128013297915459, -0.006549765355885029, 0.020705711096525192, 0.019193369895219803, -0.013010569848120213, 0.052264682948589325, 0.028979098424315453, 0.0019752157386392355, 0.018448321148753166, 0.002126727718859911, -0.01761431060731411, 0.0016096410108730197, -0.016391094774007797, 0.012988329865038395, 0.006766608450561762, -0.003007999388501048, 0.04287927970290184, 0.010808780789375305, 0.01629101298749447, -0.011498230509459972, -0.01005817111581564, -0.002529833000153303, -0.015401401557028294, -0.0202053040266037, -0.04101109504699707, -0.017113903537392616, -0.00406997324898839, 0.013210732489824295, 0.007661779876798391, -0.026110101491212845, -0.011353668756783009, -0.018348239362239838, 0.002910698065534234, 0.025309450924396515, 0.030091112479567528, -0.0315144918859005, 0.0014303287025541067, 0.007294815499335527, 0.0012906318297609687, 0.0007172493496909738, 0.01974937878549099, -0.017302945256233215, -0.018915366381406784, -0.005054106004536152, 0.009018437936902046, -0.009607805870473385, -0.024130715057253838, -0.00907959882169962, -0.021684283390641212, 0.010792100802063942, 0.018114715814590454, -0.028000526130199432, 0.03671871870756149, -0.02098371461033821, 0.01410034392029047, -0.0197604987770319, 0.014700831845402718, -0.023419026285409927, 0.018192557618021965, -0.008823835290968418, -0.021817725151777267, 0.021139396354556084, 0.0007478297920897603, -0.0007054342422634363, 0.014233785681426525, -0.007011251524090767, 0.03547326475381851, -0.016046369448304176, -0.015979649499058723, -0.04187846556305885, -0.016313252970576286, 0.05008513480424881, -0.000804125505965203, -0.00955776497721672, 0.020394345745444298, -0.015256838873028755, 0.02205124869942665, -8.843990508466959e-05, 0.02339678630232811, -0.010141572915017605, 0.011197986081242561, 0.04590395838022232, -0.020761311054229736, 0.013055050745606422, 0.0062050409615039825, -0.03422780707478523, -0.011387028731405735, 0.0018292638706043363, -0.03184809535741806, 0.03356060013175011, -0.013366414234042168, -0.022206930443644524, 0.01387794129550457, 0.008601432666182518, -0.004220094997435808, -0.0013441476039588451, -0.020750191062688828, 0.016691338270902634, -0.028956858441233635, 0.00965228583663702, -0.015790605917572975, 0.024130715057253838, -0.01654677651822567, -0.02579873614013195, -0.02695523202419281, -0.014756432734429836, 0.0051458473317325115, 0.0091185187920928, 0.015023316256701946, -0.011142385192215443, -0.013221852481365204, 0.025776496157050133, 0.018025755882263184, 0.014055863954126835, 0.030624879524111748, -0.018014635890722275, 0.049240004271268845, 0.020516667515039444, 0.0002090239868266508, -0.0006491384701803327, 0.007311495486646891, 0.010525217279791832, -0.024508800357580185, -0.002760576084256172, 0.008151066489517689, 0.006082719657570124, 0.010553018189966679, -0.0019432454137131572, -0.023886071518063545, -0.004106113687157631, 0.0032053817994892597, 0.0009194969898089767, -0.016602376475930214, -0.006138320080935955, 0.0006672086892649531, -0.009707886725664139, -0.01338865514844656, -0.016680218279361725, 0.02036098577082157, -0.01700270175933838, 0.004328516311943531, -0.0063384827226400375, 0.0240195132791996, 0.0667208731174469, 0.009107398800551891, -0.00466768117621541, -0.031002964824438095, 0.011264706961810589, -0.01771439053118229, -0.0235747080296278, 0.003399984445422888, -0.002046106616035104, -0.017302945256233215, -0.010792100802063942, 0.002823126967996359, -0.016669098287820816, 0.022707337513566017, 0.025865457952022552, -0.02508704736828804, -0.0005959703121334314, -0.012154318392276764, 0.0396544374525547, 0.011086785234510899, -0.04225655272603035, -0.018459441140294075, -0.03567342460155487, 0.03531758114695549, -0.0569351427257061, 0.021194996312260628, 0.025487372651696205, 0.013588817790150642, 0.004509218968451023, 0.003538986202329397, 0.001755592878907919, -0.004436938092112541, 0.03413884714245796, 0.003900391049683094, 0.004912324249744415, -0.01682478003203869, 0.0018765245331451297, 0.01134810782968998, 0.023530228063464165, -0.00929088145494461, 0.0018695744220167398, -0.03983236104249954, 0.02642146497964859, -0.0028995778411626816, 0.03316027298569679, -0.028356369584798813, 0.0014831493608653545, -0.011120145209133625, -0.005587873049080372, -0.02748899906873703, -0.01682478003203869, -0.02056114934384823, -0.00982464849948883, -0.01636885292828083, -0.0235747080296278, 0.01646893471479416, 0.021472999826073647, 0.0045981802977621555, 0.022740697488188744, 0.03422780707478523, 0.014122584834694862, -0.027555720880627632, 0.008173306472599506, -0.023263344541192055, 0.006977891083806753, -0.04376889020204544, -0.005532272160053253, -0.012298881076276302, 0.028712214902043343, -0.022740697488188744, 0.005290409084409475, 0.0022448792587965727, -0.02053890749812126, 0.0021308979485183954, 0.03896499052643776, -0.027266595512628555, 0.027644680812954903, -0.01574612595140934, 0.011398148722946644, -0.021406279876828194, -0.030914003029465675, -0.013766739517450333, 0.00903511792421341, 0.0016582916723564267, -0.0040532927960157394, 0.0023685910273343325, -0.012387841939926147, 0.01726958528161049, 0.006799968890845776, 0.007795221637934446, -0.0014984395820647478, 0.03834225982427597, -0.03783073276281357, 0.00380308972671628, -0.005854756571352482, -0.007150253280997276, -0.004295156337320805, -0.04508106783032417, -0.018459441140294075, -0.017369667068123817, -0.016924861818552017, 0.0054127308540046215, -0.0008903066045604646, 0.005123606882989407, 0.017480868846178055, 0.005487791728228331, 0.029157020151615143, -0.06387411803007126, 0.026666108518838882, 0.014300506561994553, 0.012565764598548412, 0.013822340406477451, 0.006438564043492079, -0.005610113497823477, -0.0023004801478236914, 0.012843768112361431, -0.019371293485164642, 0.022040128707885742, 0.010775420814752579, -0.037675052881240845, -0.015301319770514965, -0.022384852170944214, -0.024330878630280495, -0.010391775518655777, 0.013155131600797176, -0.019148889929056168, -0.016780300065875053, 0.03549550473690033, 0.043012723326683044, 0.017458628863096237, 0.0002581958833616227, 0.010502977296710014, -0.03086952306330204, -0.0036752079613506794, -0.025687536224722862, 0.0005313344299793243, 0.012710326351225376, -0.001279511721804738, 0.014300506561994553, 0.005993758328258991, 0.024953605607151985, 0.014445068314671516, 0.02748899906873703, 0.031091926619410515, 0.01410034392029047, 0.003839230164885521, -0.023285584524273872, -0.02499808743596077, 0.008790474385023117, 0.02784484438598156, 0.008334549143910408, 0.05613449215888977, 0.003652967745438218, 0.010897742584347725, -0.040788691490888596, -0.025131529197096825, -0.023507986217737198, 0.019193369895219803, -0.002550683217123151, -0.003611267078667879, 0.014389468356966972, 0.01680254004895687, -0.041589342057704926, -0.029490625485777855, 0.025487372651696205, 0.04009924456477165, -0.009441003203392029, -0.005334889516234398, -0.023997273296117783, -0.02384159155189991, 0.03193705901503563, 0.002171208383515477, 0.01053633727133274, -0.003288782900199294, -0.008273388259112835, -0.006077159196138382, 0.027422279119491577, -0.0006039628642611206, 0.04236775264143944, -0.036518558859825134, 0.03169241547584534, 0.016424454748630524, 0.007094652857631445, 0.02446432039141655, -0.0015651604626327753, -0.022195810452103615, -0.0071168928407132626, 0.011498230509459972, -0.028045006096363068, -0.008256708271801472, -0.014278266578912735, 0.01940465345978737, -0.03763057291507721, -0.004898423794656992, 0.01094222255051136, 0.020394345745444298, 0.01956033520400524, 0.02579873614013195, 0.025865457952022552, -0.03578462824225426, -0.006344042718410492, -0.027422279119491577, 0.0015443101292476058, 0.0023394005838781595, 0.03587358817458153, 0.022195810452103615, 0.00569073436781764, 0.01770327053964138, -0.02989095076918602, 0.026977472007274628, -0.02268509566783905, 0.018303759396076202, -0.02473120391368866, -0.01617981120944023, -0.015457001514732838, 0.03843122348189354, 0.0065553258173167706, 0.016046369448304176, -0.014445068314671516, 0.009896929375827312, 0.014978835359215736, -0.06645398586988449, -0.0028342469595372677, 0.008417950011789799, -0.026821790263056755, 0.014445068314671516, 0.03333819657564163, -0.020783551037311554, 0.013766739517450333, -0.022106848657131195, 0.0524870865046978, -0.04183398559689522, 0.019905060529708862, -0.0200162623077631, 0.015968529507517815], [0.011632508598268032, -0.008312474004924297, 0.07616258412599564, 0.016624948009848595, -0.04432493820786476, -0.0003203508094884455, -0.04157475754618645, 0.01611703261733055, -0.019362738355994225, 0.05941374972462654, 0.01687271147966385, 0.019003480672836304, 0.04008817672729492, 0.05287278816103935, -0.040831468999385834, -0.01911497488617897, 0.006565739866346121, 0.016810771077871323, -0.005407444201409817, -0.0036916800308972597, 0.008523073047399521, 0.088253453373909, -0.04950319975614548, -0.007606347557157278, -0.02087409608066082, -0.011087428778409958, 0.03322511911392212, -0.046852126717567444, 0.05282323434948921, -0.03932010754942894, 0.055399976670742035, -0.025742655619978905, 0.022236797958612442, -0.02544533833861351, 0.006918802857398987, -1.4384331734618172e-05, -0.042640142142772675, 0.009947715327143669, -0.000691028602886945, 0.015051648952066898, 0.0023103971034288406, 0.008758448995649815, 0.009074348025023937, 0.007569183129817247, 0.0047570643946528435, 0.045216888189315796, 0.043234776705503464, -0.05762984976172447, 0.012481099925935268, 0.004143849015235901, 0.05203039199113846, 0.05758029967546463, 0.015237471088767052, -0.01797526143491268, 0.003533730749040842, -0.011068846099078655, -0.01911497488617897, 0.0184212364256382, 0.0558459535241127, -0.011632508598268032, -0.009006212465465069, -0.05733253434300423, 0.011985572054982185, 0.042788803577423096, -0.007147984579205513, 0.0017266037175431848, -0.020836932584643364, 0.028740596026182175, -0.00939024705439806, -0.025693101808428764, 0.018668999895453453, 0.024367565289139748, 0.03349766135215759, -0.03914667293429375, -0.0023553043138235807, -0.012611175887286663, 0.03456304594874382, -0.039121899753808975, 0.019214080646634102, 0.023488005623221397, -0.012871327809989452, 0.020490063354372978, 8.652375254314393e-05, 0.007835528813302517, 0.009061959572136402, 0.00020537292584776878, -0.09756936877965927, -0.031094351783394814, -0.0062064821831882, -0.05193128436803818, 0.0024760891683399677, 0.014630449935793877, -0.04105445370078087, 0.010251225903630257, 0.01775227300822735, 0.014704779721796513, 0.07715363800525665, -0.036024849861860275, -0.01782660186290741, -0.0035275365225970745, -0.01780182681977749, -0.060256145894527435, -0.021939480677247047, 0.007296642754226923, 0.0073028369806706905, -0.04665391519665718, -0.027600882574915886, 0.05163396894931793, 0.0221872441470623, 0.01764078065752983, 0.09187079966068268, -0.030474942177534103, 0.00936547014862299, 0.0531701035797596, -0.035405442118644714, -0.04434971511363983, -0.017430180683732033, -0.031763315200805664, 0.030375836417078972, -0.006838279776275158, -0.046430930495262146, -0.0008021351532079279, 0.01782660186290741, -0.05678745359182358, 0.0029127728193998337, -0.017987649887800217, -0.005001730751246214, -0.009167259559035301, -0.09102840721607208, 0.015212695114314556, 0.024714434519410133, -0.039097122848033905, 0.009668980725109577, -0.007092237938195467, -0.015076424926519394, -0.011031681671738625, 0.012251918204128742, -0.02606474794447422, 0.02156783640384674, -0.03275436908006668, -9.305658750236034e-05, -0.01795048452913761, -0.0074514951556921005, 0.009600846096873283, -0.046356599777936935, 0.01126086339354515, 0.009130094200372696, 0.01205370668321848, 0.011359968222677708, -0.028567161411046982, 0.0026293930131942034, 0.04073236137628555, 0.007897470146417618, 0.009142482653260231, 0.04008817672729492, 0.025333844125270844, 0.012982821092009544, 0.04298701137304306, -0.0015136817237362266, -0.014779108576476574, -0.0291370190680027, -0.03327467292547226, 0.003988996613770723, -0.0024575067218393087, 0.02182798832654953, 0.02130768448114395, 0.024999363347887993, 0.01944945566356182, -0.037288445979356766, -0.03956787288188934, -0.03352243825793266, -0.028938807547092438, -0.05282323434948921, -0.019895430654287338, -0.014147310517728329, -0.03253138065338135, 0.027724765241146088, 0.021332459524273872, 0.03498424217104912, 0.004013773053884506, -0.003834144212305546, 0.06600426882505417, -0.019461844116449356, -0.017715109512209892, -0.05589550361037254, 0.0350833497941494, 0.0034315281081944704, 0.028096411377191544, -0.020936038345098495, 0.010994517244398594, -0.009253976866602898, -0.05515221506357193, 0.02789819985628128, -0.01580732874572277, -0.029186571016907692, -0.010294584557414055, -0.005872001405805349, 0.010833470150828362, -0.007804558612406254, -0.008337250910699368, 0.035355888307094574, -0.023103971034288406, 0.030400613322854042, -0.012982821092009544, -0.02539578638970852, 0.02606474794447422, -0.04430016130208969, 0.0009422765579074621, 0.04065803438425064, -0.037858303636312485, 0.01064145378768444, -0.030574047937989235, -0.026386840268969536, -0.011112204752862453, 0.004128363914787769, 0.02730356715619564, 0.01676121912896633, 0.025098469108343124, -0.009972491301596165, 0.06273378431797028, -0.018334519118070602, 0.0115334028378129, 0.008139039389789104, -0.008646955713629723, -0.04846259206533432, -0.004546464886516333, -0.0007320644799619913, -0.04053414985537529, -0.0050203134305775166, -0.037833526730537415, -0.013515513390302658, 0.016724053770303726, 0.005175165366381407, -0.004880946129560471, -0.00829389225691557, 0.007990381680428982, -0.011644897051155567, -0.03166420757770538, -0.01656300760805607, 0.012505875900387764, 0.025284292176365852, -0.03577708825469017, 0.01424641627818346, 0.03027673251926899, 0.016178973019123077, 0.011415715329349041, -0.0032611906062811613, -0.0065099927596747875, 0.023909203708171844, 0.018012424930930138, 0.01366417109966278, 0.01797526143491268, 0.07621213048696518, -0.06526097655296326, -0.009334499947726727, 0.04776885360479355, -0.014680002816021442, -0.06194094195961952, 0.007680676411837339, -0.010331748984754086, -0.017727497965097427, 0.021084696054458618, 0.0009631816064938903, 0.015262247994542122, -0.08067188411951065, -0.0333242267370224, 0.02606474794447422, 0.006763950921595097, 0.0007305159815587103, 0.0628824457526207, -0.03206063061952591, 0.013602230697870255, -0.03446393832564354, -0.013168644160032272, -0.051683519035577774, 0.017702721059322357, 0.012090872041881084, -0.004487621132284403, -0.0045526591129601, -0.028269845992326736, -0.01632763259112835, 0.014902990311384201, -0.01046182494610548, -0.05748119205236435, 0.03743710368871689, 0.018074367195367813, -0.007166566792875528, -0.017715109512209892, -0.03832905367016792, 0.0375114344060421, 0.06952251493930817, -0.01751689799129963, 0.03035106137394905, 0.008312474004924297, 0.038998015224933624, 0.010362719185650349, 0.026287734508514404, 0.013862382620573044, -0.01123608648777008, -0.0024311819579452276, 0.0021679329220205545, 0.04645570367574692, -0.03988996520638466, -0.07006759196519852, -0.0723470151424408, 0.019932594150304794, 0.03275436908006668, 0.05505310744047165, -0.009588457643985748, -0.026808038353919983, -0.04866080358624458, 0.047000784426927567, -0.07943306118249893, -0.029161794111132622, -0.006819697562605143, -0.025916090235114098, -0.024367565289139748, 0.032977357506752014, 0.0326552651822567, -0.033571988344192505, 0.03577708825469017, 0.019288409501314163, 0.02606474794447422, -0.005395055748522282, -0.005212330259382725, -0.025036528706550598, 0.034835584461688995, 0.05143575742840767, -0.011248474940657616, -0.005624237470328808, -0.036520376801490784, -0.0116387028247118, 0.028790149837732315, 0.0033757812343537807, -0.032952580600976944, -0.027402672916650772, -0.05822448432445526, 0.03768486902117729, 0.004784937482327223, 0.023785321041941643, 0.022744713351130486, 0.0013038568431511521, -0.011106010526418686, 0.031193457543849945, -0.03795740753412247, 0.03275436908006668, -0.0115334028378129, 0.023265017196536064, 0.025036528706550598, 0.01849556528031826, -0.004589823540300131, -0.03520723059773445, -0.04107923060655594, -0.014977319166064262, -0.010003461502492428, -0.006113570649176836, 0.02970687486231327, -0.0024373759515583515, -0.020490063354372978, 0.010839664377272129, 0.021295296028256416, 0.02304203063249588, 0.012227141298353672, 0.0355045460164547, 0.04779363051056862, 0.0005950201884843409, -0.023488005623221397, -0.010765335522592068, 0.02792297676205635, -0.051782626658678055, 0.0020997978281229734, 0.023314569145441055, 0.02554444409906864, 0.010158314369618893, 0.0006573482532985508, -0.0004901076899841428, 0.03671858832240105, 0.017962872982025146, 0.008355832658708096, 0.024640105664730072, -0.02508608065545559, -0.014407462440431118, 0.017702721059322357, 0.0010824179043993354, -0.009260171093046665, 0.029161794111132622, -0.06134630739688873, -0.04182252287864685, 0.005032701417803764, 0.013986264355480671, 0.012016542255878448, -0.02180321142077446, -0.04182252287864685, 0.050469476729631424, -0.03391885757446289, -0.007370972074568272, 0.01797526143491268, 0.019214080646634102, -0.0013967682607471943, 0.011062651872634888, -0.03939443826675415, -0.05193128436803818, 0.01992020569741726, -0.018693776801228523, -0.05683700740337372, -0.020366180688142776, -0.02149350568652153, -0.024392342194914818, -0.013713723979890347, -0.0013588294386863708, 0.024702047929167747, 0.0208493210375309, 0.04648048058152199, 0.013379243202507496, 0.018458399921655655, 0.0037753002252429724, -0.005639722570776939, 0.027724765241146088, -0.01790093258023262, -0.016463901847600937, 0.038973238319158554, 0.0016816965071484447, -0.03020240180194378, 0.031193457543849945, -0.04541509598493576, 0.0416986420750618, 0.043854184448719025, 0.015398518182337284, 0.04259059205651283, -0.05041992664337158, 0.005416735075414181, 0.01777704991400242, -0.018718551844358444, -0.012883715331554413, -0.029409559443593025, -0.04340821132063866, -0.028269845992326736, -0.03230839595198631, -0.016253303736448288, -0.023649051785469055, -0.027600882574915886, -0.037858303636312485, 0.05252591893076897, 0.014964931644499302, -0.025569221004843712, 0.039666976779699326, -0.004115975461900234, 0.03830427676439285, -0.011372356675565243, 0.004722996614873409, -0.021220967173576355, -0.004004481714218855, -0.03567798063158989, -0.005531325936317444, -0.01816108450293541, -0.016934653744101524, -0.018000036478042603, -0.03696635365486145, 0.021604999899864197, 0.011861690320074558, 0.0193007979542017, 0.02792297676205635, 0.03503379598259926, 0.043903738260269165, -0.004958372097462416, 0.0015647830441594124, -0.017987649887800217, 0.002133865375071764, -0.004326574504375458, -0.03084658831357956, -0.02392159216105938, 0.02542056143283844, 0.022719936445355415, -0.031267788261175156, 0.04192163050174713, 0.0020827641710639, 0.006138347089290619, -0.09097885340452194, 0.02066349796950817, -0.01694704219698906, 0.024355178698897362, 0.02094842679798603, -0.00437303027138114, -0.019560949876904488, 0.06952251493930817, 0.04462225362658501, 0.03701590746641159, 0.0379326306283474, -0.020985590294003487, -0.03255615755915642, -0.021072307601571083, -0.011905048973858356, 0.05376473814249039, -0.01225811243057251, 0.0075444066897034645, 0.028914030641317368, -0.013342078775167465, 0.05683700740337372, 0.04254103824496269, 0.00348727498203516, -0.012982821092009544, -0.0008292343700304627, 0.0004192627384327352, -0.0326552651822567, 0.006838279776275158, -0.020774992182850838, -0.011279445141553879, -0.0344143882393837, -0.02332695759832859, 0.0014889054000377655, -0.036024849861860275, 0.0015562660992145538, 0.0033850723411887884, 0.014902990311384201, -0.04467180743813515, -0.031094351783394814, 0.037337999790906906, -0.01661255955696106, -0.04828915745019913, 0.041475653648376465, 0.04491956904530525, -0.0156586691737175, 0.0016909877303987741, -0.010368913412094116, -0.017393015325069427, 0.008789419196546078, -0.01723196916282177, -0.004602211993187666, 0.002545772586017847, 0.009353081695735455, 0.0006317975930869579, -0.04224372282624245, -0.05797671899199486, 0.01640196144580841, 0.016476290300488472, -0.00031396312988363206, -0.004819005262106657, 0.014729555696249008, 0.0006720591918565333, -0.008182398043572903, 0.04068281129002571, 0.0023568528704345226, 0.015931209549307823, 0.004054034594446421, 0.016600172966718674, 0.001089386292733252, 0.013973875902593136, 0.009563681669533253, 0.028740596026182175, 0.0021710300352424383, -0.03959264978766441, 0.045142557471990585, -0.006228161510080099, -0.008219562470912933, -0.007761199958622456, 0.027377896010875702, 0.03334900364279747, -0.051683519035577774, 0.009563681669533253, -0.015113589353859425, -0.01973438449203968, 0.019957371056079865, -0.0010119600920006633, -0.012264306657016277, -0.007631123997271061, 0.009848609566688538, -0.0018706164555624127, -0.029880309477448463, 0.022298738360404968, 0.01155817974358797, -0.02599041908979416, -0.009192035533487797, 0.020390957593917847, -0.0003071883402299136, 0.060751672834157944, 0.00561804324388504, 0.049304988235235214, -0.018619446083903313, 0.04665391519665718, 0.00021253485465422273, 0.007135596591979265, 0.029830757528543472, -0.0412774421274662, 0.01126086339354515, 0.032506607472896576, 0.000751033890992403, -0.005794574972242117, -0.0465548112988472, -0.020366180688142776, 0.027749542146921158, 0.013602230697870255, 0.025866536423563957, -0.0030258148908615112, -0.010090178810060024, 0.012883715331554413, 0.05396294593811035, -0.00012910814257338643, -0.014395074918866158, 0.02516040951013565, 0.020415734499692917, 0.028666267171502113, -0.018631834536790848, 0.004100490361452103, 0.005330017767846584, -0.043878961354494095, 0.002714561764150858, 0.0215182825922966, -0.0173310749232769, 0.03875025361776352, 0.015671057626605034, 0.04073236137628555, -0.006423275452107191, -0.024677271023392677, -0.04474613443017006, -0.04120311513543129, -0.010145925916731358, -0.06099943816661835, -0.03277914598584175, 0.005745022092014551, 0.038403384387493134, -0.015212695114314556, 0.011310415342450142, 0.03134211525321007, -0.01854511722922325, -0.030103297904133797, 0.010678618215024471, -0.018433623015880585, -0.040236834436655045, 0.01676121912896633, -0.031020022928714752, -0.03941921517252922, 0.00829389225691557, -0.037238892167806625, -0.018433623015880585, 0.001114162616431713, 0.010505183599889278, 0.002539578592404723, -0.00028531544376164675, -0.014320745132863522, 0.0016770509537309408, 0.020576780661940575, 0.027130132541060448, 0.04254103824496269, -0.014494179747998714, 0.0002458280941937119, 0.04073236137628555, -0.008733673021197319, 0.028740596026182175, 0.018631834536790848, 0.003126468975096941, 0.013242973014712334, 0.00013985103578306735, -0.020440509542822838, -0.023624274879693985, 0.01573299802839756, 0.00950793456286192, -0.046406153589487076, 0.024268461391329765, 0.010406077839434147, 0.020440509542822838, -0.002372337970882654, 0.02490025758743286, -0.018334519118070602, 0.032977357506752014, 0.010944964364171028, -0.002325882436707616, 0.039072345942258835, -0.007538212463259697, -0.018148696050047874, -0.018408847972750664, -0.026163853704929352, 0.0011342935031279922, 0.04291268438100815, -0.02508608065545559, 0.010145925916731358, -0.017046146094799042, -0.034265726804733276, 0.018842434510588646, -0.03347288444638252, 0.01718241721391678, -0.03322511911392212, -0.023165911436080933, 0.0018969413358718157, -0.0042832158505916595, 0.006702009588479996, 0.006079503335058689, 0.016600172966718674, -0.018408847972750664, -0.0032054437324404716, 0.019263632595539093, -0.009006212465465069, 0.04469658434391022, 0.0020719245076179504, 0.014952543191611767, 0.015200306661427021, 0.05133664980530739, -0.007346195634454489, -0.011050263419747353, 0.000774261774495244, -0.03458782285451889, 0.018037201836705208, 0.006311781704425812, 0.013193420134484768, -0.03287824988365173, -0.025693101808428764, -0.013354467228055, 0.0002375047915847972, -0.023289794102311134, 0.031020022928714752, 0.01358984224498272, -0.00039797055069357157, -0.033646319061517715, -0.026337288320064545, -0.024788765236735344, 0.008405385538935661, -0.015609117224812508, 0.012834162451326847, -0.009792862460017204, 0.002586034359410405, -0.02673370949923992, -0.013503124937415123, 0.01061667688190937, -0.02534623257815838, -0.03711501136422157, 0.013453572057187557, 0.005014119204133749, -0.015510011464357376, -0.0015090361703187227, 0.029434334486722946, -0.03704068437218666, 0.04771929979324341, -0.0015206501120701432, 0.016835547983646393, -0.003834144212305546, -0.04197118058800697, 0.016649724915623665, -0.0037474269047379494, 0.0009871837683022022, 0.0008385254768654704, -0.030103297904133797, 0.016798382624983788, -0.02727879025042057, -0.003465595655143261, -0.014395074918866158, -0.010926381684839725, -0.0026495237834751606, -0.017194805666804314, 0.004726093728095293, 0.013527901843190193, 0.048809461295604706, -0.025284292176365852, 0.009278752841055393, -0.003035105997696519, -0.01002204418182373, -0.022806653752923012, 0.003053688444197178, -0.017727497965097427, 0.016773607581853867, -0.004400903824716806, 0.007482465822249651, 0.02554444409906864, -0.017046146094799042, -0.012109453789889812, 0.010387496091425419, -0.004354448057711124, -0.03753621131181717, -0.036099180579185486, 0.01575777493417263, 0.060850780457258224, 0.007532018236815929, -0.01676121912896633, 0.015720611438155174, 0.01056712493300438, 0.022484561428427696, 0.021889928728342056, -0.022236797958612442, -0.012784610502421856, 0.007228507660329342, -0.03188719600439072, -0.04003862291574478, 0.025841759517788887, -0.004893334116786718, -0.014159698970615864, 0.015770163387060165, -0.014457015320658684, 0.02485070563852787, -0.00844874419271946, 0.0004769452498294413, 0.01811153069138527, 0.003434625221416354, -0.03513289988040924, -0.025866536423563957, -0.006243646610528231, -0.006104279775172472, -0.007278060540556908, -0.021939480677247047, -0.005964912474155426, -0.03934488445520401, -0.04947842285037041, 0.01223333552479744, -0.0030118783470243216, -0.016501067206263542, -0.014704779721796513, 0.03092091716825962, 0.06739174574613571, 0.00036332232411950827, 0.01017689611762762, -0.0116387028247118, -0.0016104644164443016, 0.01034413743764162, -0.02601519599556923, 0.04308611899614334, -0.013812829740345478, 0.0020006923004984856, -0.012518264353275299, 0.007730229292064905, -0.0346621498465538, 0.004456650465726852, -0.01299520954489708, -0.015646280720829964, -0.017838990315794945, -0.01756644994020462, 0.027724765241146088, -0.000823814538307488, -0.02332695759832859, -0.0090433768928051, 0.016476290300488472, 0.007631123997271061, -0.02335173450410366, 0.007439107168465853, 0.022571278735995293, 0.021344847977161407, 0.013713723979890347, -0.0023429160937666893, -0.0076930648647248745, -0.029483888298273087, -0.011805943213403225, 0.005899874493479729, 0.0009523419430479407, 0.0028941903728991747, 0.0454646497964859, -0.013453572057187557, -0.04799184203147888, -0.012567817233502865, -0.054854895919561386, 0.01878049410879612, -0.009489351883530617, -0.01271028071641922, -0.04348254203796387, 0.006708203814923763, 0.011112204752862453, -0.022026197984814644, 0.004004481714218855, -0.020242299884557724, 0.05589550361037254, -0.02594086527824402, 0.024454282596707344, -0.03429050371050835, 0.007767394185066223, 0.012028930708765984, -0.03674336522817612, 0.031738538295030594, -0.007042685057967901, 0.002443570178002119, -0.012183782644569874, -0.014481792226433754, 0.01101929321885109, -0.009439799003303051, 0.027576107531785965, -0.025742655619978905, 0.023215465247631073, -0.020291851833462715, -0.007730229292064905, 0.0024296334013342857, 0.011892660520970821, -0.00611666776239872, -0.03225884214043617, 0.046406153589487076, 0.03329944983124733, 0.00572953699156642, 0.0032085406128317118, 0.0189663153141737, 0.034166622906923294, 0.007117013912647963, -0.006621486507356167, 0.004530979786068201, -0.03476125746965408, 0.026461169123649597, 0.013007597997784615, 0.001966624753549695, 0.03865114599466324, -0.017764661461114883, 0.03406751900911331, 0.010536153800785542, -0.006689621601253748, 0.01570822298526764, -0.009445993229746819, -0.024379953742027283, -0.00862837303429842, -0.0049614692106842995, -0.00874606054276228, -0.008157622069120407, 0.0029003845993429422, -0.0006360560073517263, -0.028319397941231728, -0.008436355739831924, -0.012635951861739159, 0.014395074918866158, -0.0032642874866724014, -0.030004192143678665, 0.023624274879693985, -0.0028678656090050936, -0.004416388925164938, -0.032506607472896576, 0.011322803795337677, -0.014320745132863522, -0.00984241534024477, 0.015225083567202091, 0.0005338534829206765, 0.006881638430058956, 0.0688287764787674, 0.007680676411837339, 0.014060593210160732, 0.005162777379155159, 0.0124749056994915, -0.010944964364171028, -0.014085370115935802, 0.036148734390735626, 0.0065471576526761055, -0.05153486132621765, -0.027600882574915886, 0.059611961245536804, 0.021121861413121223, 0.07264433801174164, 0.03932010754942894, -0.00924778264015913, 0.026808038353919983, -0.01616658642888069, -0.0008694959688000381, 0.015200306661427021, 0.01609225571155548, -0.024020696058869362, -0.0012155909789726138, -0.02128290757536888, -0.0017343463841825724, 0.015051648952066898, 1.8751651964521443e-07, 0.038576819002628326, 0.000580696330871433, 0.011830720119178295, -0.017702721059322357, -0.02722923830151558, 0.022249186411499977, 0.009532710537314415, -0.023574722930788994, -0.009204423986375332, 0.029236124828457832, 0.019511396065354347, 0.010554736480116844, -0.0339931882917881, 0.03984041139483452, 0.04491956904530525, 0.022484561428427696, -0.031837642192840576, 0.046876903623342514, 0.01486582588404417, 0.012425352819263935, -0.012320052832365036, -0.017219580709934235, 0.03082181140780449, -0.053566526621580124, -0.014357910491526127, 0.037238892167806625, 0.011155563406646252, -0.010189284570515156, -0.017789438366889954, 0.020192746073007584, 0.010375107638537884, 0.02520996332168579, 0.023289794102311134, -0.02516040951013565, 0.012251918204128742, 0.04045982286334038, 0.018123919144272804, -0.0070860437117516994, 0.03320034593343735, 0.00015833652287255973, -0.014011040329933167, 0.012400575913488865, 0.007655900437384844, 0.02839372679591179, 0.012227141298353672, 0.005441511515527964, 0.015646280720829964, -0.02203858643770218, 0.03565320372581482, -0.010368913412094116, -0.028889255598187447, 0.04541509598493576, 0.01870616339147091, 0.03396841138601303, -0.001865970785729587, 0.004122169688344002, 0.019226467236876488, -0.02159261144697666, -0.014940154738724232, 0.03315079212188721, 0.002835346618667245, -0.00587819516658783, -0.011031681671738625, -0.007643511984497309, 0.03634694218635559, 0.01362700667232275, 0.018359294161200523, -0.02061394415795803, -0.007247089873999357, 0.028666267171502113, -0.05267457664012909, -0.036619484424591064, 0.026882369071245193, 0.025296680629253387, 0.027724765241146088, 0.014940154738724232, -0.0018861016724258661, 0.009848609566688538, 0.0006674136384390295, 0.0011033229529857635, 0.046331822872161865, 0.03391885757446289, 0.0017715109279379249, 0.0044690389186143875, -0.008882330730557442, 0.014308357611298561, 0.004351350944489241, 0.016451513394713402, 0.016216138377785683, -0.0016615657368674874, 0.004400903824716806, -0.023884426802396774, 0.038477711379528046, -0.013788053765892982, -0.02532145567238331, -0.04823960363864899, 0.048759907484054565, -0.02508608065545559, 0.01604270376265049, -0.008207174949347973, 0.01761600375175476, -0.0012798546813428402, 0.009148676879703999, 0.020452897995710373, 0.03448871523141861, -0.04918110743165016, -0.010251225903630257, 0.013527901843190193, -0.0065471576526761055, -0.02973165176808834, -0.011112204752862453, -0.0011815234320238233, -0.013726112432777882, 0.0013356015551835299, -0.02851760946214199, -0.0036638067103922367, 0.010059208609163761, 0.014642838388681412, 0.024342790246009827, -0.03344810754060745, 0.03570275753736496, 0.026535499840974808, 0.022484561428427696, 0.01635240763425827, 0.014011040329933167, 0.04358164593577385, 0.04308611899614334, -0.002697527874261141, 0.05772895738482475, -0.0184212364256382, 0.008578820154070854, -0.04259059205651283, 0.019870653748512268, 0.001989852637052536, 0.0027981819584965706, 0.0038960850797593594, -0.009904356673359871, 0.0003664193791337311, -0.004534076899290085, 0.008529267273843288, 0.0058565158396959305, -0.04596017673611641, 0.01010256726294756, 0.003220928832888603, -0.010418466292321682, 0.0091053182259202, -0.009377858601510525, 0.004054034594446421, 0.016463901847600937, 0.00958226341754198, 0.007724035531282425, -0.023797709494829178, -0.004153139889240265, -0.011192727833986282, -0.003998287487775087, -0.008287698030471802, -0.017554063349962234, 0.031267788261175156, 0.01271028071641922, 0.029805980622768402, 0.01542329415678978, 0.0020765699446201324, -0.0017235067207366228, -0.018483176827430725, 0.005868904292583466, 0.023909203708171844, 0.0052711740136146545, 0.04001384600996971, 0.02356233447790146, 0.015014483593404293, -0.011328998021781445, 0.003982802387326956, 0.026188630610704422, -0.011657284572720528, 0.004645570646971464, -0.04006339982151985, 0.013676559552550316, 0.041475653648376465, -0.01108123455196619, -0.010740559548139572, 0.013503124937415123, 0.02051484026014805, 0.005286659114062786, -0.01632763259112835, -0.028294621035456657, -0.008362026885151863, -0.05797671899199486, 0.0008524621953256428, 0.0037969795521348715, 0.008560238406062126, -0.05024649202823639, 0.004270827863365412, 0.008585014380514622, 0.002980907680466771, -0.0028740596026182175, 0.0272540133446455, -0.007476271595805883, -0.021580222994089127, 0.0027315954212099314, -0.006060921121388674, 0.0736849457025528, -0.010418466292321682, -0.020886484533548355, -0.005834836512804031, 0.034191399812698364, 0.011106010526418686, 0.021766046062111855, 0.01973438449203968, 0.019053032621741295, 0.0326552651822567, -0.04199595749378204, 0.023748157545924187, -0.01961050182580948, 0.019771547988057137, 0.00888852495700121, -0.011595344170928001, 0.0472237728536129, 0.03349766135215759, 0.013998652808368206, -0.0036638067103922367, -0.0007343872566707432, -0.020366180688142776, 0.005014119204133749, -0.010065402835607529, 0.011291833594441414, -0.012276694178581238, -0.013577453792095184, 0.03215973824262619, -0.007773587945848703, 0.00697454996407032, -0.017789438366889954, -0.00460530910640955, -0.01761600375175476, -0.014444627799093723, -0.02201380953192711, -0.030103297904133797, 0.009173452854156494, 0.02273232489824295, 0.004416388925164938, -6.257002678466961e-05, -0.027699988335371017, -0.014407462440431118, -0.012666922062635422, 0.009929132647812366, 0.023463228717446327, 0.024949811398983, -0.030499719083309174, -0.011657284572720528, 0.0009120803442783654, -0.01764078065752983, 0.01658778451383114, 0.029335228726267815, -0.03381975367665291, -0.019536172971129417, 0.0024110511876642704, 0.0007130950689315796, -0.007030296605080366, -0.03434005752205849, -0.03471170365810394, 0.0022453591227531433, -0.001672405400313437, 0.025309069082140923, -0.021394401788711548, 0.04861124977469444, -0.01273505762219429, 0.0009128546225838363, -0.0381803959608078, 0.0038465324323624372, -0.006491410546004772, 0.00958226341754198, -0.011106010526418686, -0.003493468975648284, 0.00638611102476716, -0.011254669167101383, -0.015410905703902245, 0.01568344607949257, -0.017343463376164436, 0.029236124828457832, -0.02265799604356289, -0.006708203814923763, -0.020651109516620636, -0.01090160571038723, 0.041450876742601395, 0.0076001533307135105, 0.03996429592370987, 0.009161065332591534, -0.04296223819255829, 0.017938096076250076, 0.01274744514375925, 0.04489479213953018, 0.00026344257639721036, 0.0012914686230942607, 0.01544807106256485, -0.02249694988131523, 0.02547011524438858, 0.0015825909795239568, -0.01599314995110035, -0.032903026789426804, 0.00012097840226488188, -0.016290467232465744, 0.014072981663048267, -0.014927766285836697, -0.011867884546518326, 0.017244357615709305, 0.011347580701112747, 0.012041319161653519, 0.011428103782236576, -0.0025380300357937813, 0.0002297621831530705, -0.0339931882917881, -0.014977319166064262, -0.006479022558778524, 0.021642165258526802, -0.025866536423563957, -0.04055892676115036, -0.01580732874572277, 0.006373722571879625, 0.013379243202507496, 0.0009291141177527606, 0.027650436386466026, -0.013825218193233013, 0.000738258589990437, 0.0322340652346611, 0.022484561428427696, -0.011471462436020374, 0.044002845883369446, -0.027501776814460754, 0.06278333812952042, 0.029384782537817955, 0.02973165176808834, -0.0045154946856200695, 0.0015601374907419086, 0.03634694218635559, -0.043928515166044235, -0.015249859541654587, -0.01358984224498272, -0.0016863420605659485, 0.02144395373761654, 0.008077098987996578, -0.013936711475253105, 0.010059208609163761, 0.00118849182035774, -0.008615984581410885, -0.014890601858496666, -0.016501067206263542, -0.011155563406646252, 0.0040664225816726685, -0.012400575913488865, 0.027625659480690956, 0.023785321041941643, -0.03208540752530098, 0.026956697925925255, -0.03825472667813301, 0.03510812669992447, 0.02056439220905304, 0.0029483886901289225, -0.0016863420605659485, -0.027650436386466026, 0.024937422946095467, -0.007036490831524134, 0.003639030270278454, 0.0044225831516087055, 0.012400575913488865, -0.010406077839434147, -0.01486582588404417, 0.008250533603131771, -0.005144195165485144, 0.022856207564473152, 0.01149623841047287, -0.02608952485024929, -0.007309031207114458, -0.030450167134404182, 0.02908746525645256, 0.009817639365792274, -0.028864478692412376, -0.03686724603176117, -0.02118380181491375, 0.036074403673410416, -0.038428161293268204, 0.021666940301656723, 0.01179355476051569, 0.020774992182850838, -0.0020192747469991446, -0.01456850953400135, 0.020316628739237785, 0.006621486507356167, 0.018198247998952866, -0.00623745284974575, 0.0001790480309864506, -0.020774992182850838, 0.00012291404709685594, -0.013280137442052364, 0.03798218443989754, -0.010610483586788177, 1.5315865312004462e-05, -0.042119838297367096, 0.0008354284218512475, 0.005305241793394089, 0.014779108576476574, -0.015522399917244911, -0.0023103971034288406, -0.015534788370132446, 0.0025302874855697155, -0.013986264355480671, -0.04648048058152199, -0.054755792021751404, -0.03567798063158989, -0.051782626658678055, -0.011409521102905273, 0.010059208609163761, 0.02278187870979309, 0.010350330732762814, 0.024404730647802353, 0.01267311628907919, 0.010028238408267498, -0.02851760946214199, 0.019647667184472084, -0.01599314995110035, -0.010573318228125572, -0.048759907484054565, -0.01723196916282177, -0.0016058188630267978, 0.021666940301656723, 0.003682388924062252, -0.01013973169028759, 0.01673644222319126, -0.005426026415079832, 0.003988996613770723, 0.06823413819074631, -0.03438961133360863, 0.021939480677247047, -0.012809386476874352, 0.03129256144165993, 0.004146946128457785, -0.023834874853491783, -0.028814924880862236, 0.015299412421882153, 0.007017908617854118, -0.02053961530327797, 0.017665555700659752, -0.013503124937415123, 0.03865114599466324, 0.00626532593742013, -0.012871327809989452, -0.005865807179361582, 0.017219580709934235, -0.03803173825144768, -0.004732287954539061, -0.009384052827954292, -0.0048128110356628895, -0.0033850723411887884, -0.022794265300035477, -0.016550619155168533, -0.001989852637052536, -0.0037226504646241665, -0.008944272063672543, -0.03206063061952591, 0.0017157640540972352, 0.0020254687406122684, -0.0006770918844267726, 0.026485946029424667, -0.04045982286334038, 0.04823960363864899, 0.03875025361776352, 0.002126122824847698, 0.022100526839494705, 0.004041646607220173, -0.009830026887357235, -0.022174857556819916, 0.02249694988131523, -0.0008160718716681004, 0.031713761389255524, 0.0033788783475756645, -0.006869250442832708, -0.0392705574631691, -0.01546045858412981, -0.014097757637500763, 0.031812865287065506, -0.005943233147263527, -0.025197574868798256, 0.012431547045707703, 0.029905086383223534, 0.03315079212188721, 0.020836932584643364, 0.006060921121388674, 0.018074367195367813, -0.022311126813292503, -0.0038372413255274296, -0.030375836417078972, -0.020774992182850838, 0.018148696050047874, -0.007631123997271061, 0.023190688341856003, 0.013218197040259838, 0.01702137105166912, 0.02717968448996544, 0.020700661465525627, 0.01718241721391678, 0.016538230702280998, -0.026956697925925255, -0.0026773971039801836, -0.0272540133446455, 0.012084677815437317, 0.028715820983052254, -0.004122169688344002, 0.04407717287540436, 0.012431547045707703, 0.018743328750133514, -0.003824853105470538, -0.023475617170333862, 0.0029716165736317635, 0.005751216318458319, -0.00878322497010231, 0.009161065332591534, -0.008566431701183319, 0.010096373036503792, -0.03949354216456413, -0.04291268438100815, 0.027675211429595947, 0.022261574864387512, -0.023884426802396774, -0.004054034594446421, -0.022100526839494705, -0.015881657600402832, 0.0739327073097229, -0.013936711475253105, 0.023933978751301765, 0.011279445141553879, -0.0190901979804039, 0.005103933624923229, 0.010288390330970287, 0.0013665719889104366, 0.03258093446493149, -0.03872547671198845, 0.003539924742653966, 0.03634694218635559, -0.012103259563446045, 0.015249859541654587, -0.0007785201887600124, -0.01811153069138527, 0.0001646274031372741, 0.0024296334013342857, -0.014556121081113815, 0.009142482653260231, -0.012722669169306755, 0.043259553611278534, -0.0308961421251297, 0.016885099932551384, 6.45056861685589e-05, -0.0021911608055233955, 0.01453134510666132, -0.009792862460017204, -0.017318686470389366, -0.011768778786063194, -0.0031078867614269257, -0.01630285568535328, 0.009526516310870647, 0.016823159530758858, 0.017368240281939507, -0.007903664372861385, 0.004893334116786718, -0.0023599497508257627, -0.018061978742480278, 0.004775646608322859, -0.0315651036798954, -0.004865461029112339, -0.01424641627818346, -0.006745368242263794, -0.024640105664730072, 0.024838317185640335, -0.029384782537817955, 0.015584340319037437, 0.00653476919978857, 0.010257420130074024, 0.02717968448996544, -0.0507420189678669, -0.025916090235114098, 0.00193565443623811, -0.019288409501314163, 0.0049057225696742535, -0.0016321437433362007, 0.0001278499694308266, 0.006410887464880943, -0.03347288444638252, 0.06040480360388756, -0.0434577651321888, 0.012958045117557049, -0.005574684590101242, 0.005791477859020233], [-0.010706651955842972, 0.021310189738869667, 0.04640122130513191, -0.006444613914936781, -0.06081424281001091, 0.01689920946955681, -0.007830921560525894, 0.024082805961370468, -0.0034686343278735876, 0.029123926535248756, -0.026969993487000465, -0.012270544655621052, 0.028184445574879646, -0.03838125616312027, -0.05604809150099754, 0.04372026026248932, -0.011090464890003204, 0.047524016350507736, -0.03235482797026634, -0.021321646869182587, 0.020840449258685112, 0.029490552842617035, -0.04113095998764038, 0.013278769329190254, -0.005788695532828569, 0.029146840795874596, 0.026282567530870438, -0.043193235993385315, 0.03751051798462868, -0.023899491876363754, 0.08821960538625717, -0.01390890870243311, 0.013427711091935635, 0.00585457356646657, -0.0003805902670137584, 0.024174463003873825, 0.0019290877971798182, 0.010471781715750694, 0.013954737223684788, 0.0027224912773817778, -0.00146149517968297, 0.055085696280002594, -0.011777889914810658, -0.013611024245619774, -0.030705004930496216, 0.030659176409244537, 0.048211440443992615, 0.017987633123993874, 0.02403697744011879, 0.03331722319126129, 0.0486697256565094, 0.03680017590522766, -0.030636262148618698, 0.054214958101511, 0.02745119109749794, -0.018148032948374748, 0.005301768891513348, 0.004253445193171501, 0.024838974699378014, -0.029582209885120392, -0.048853036016225815, -0.00950365699827671, -0.058797791600227356, -0.005714224185794592, -0.0008542693685740232, -0.005656938999891281, 0.0010089401621371508, 0.04250580817461014, -0.018972942605614662, -0.020680049434304237, -0.015478530898690224, 0.04202461242675781, 0.05636889114975929, -0.05948521941900253, -0.040443532168865204, 0.00725806737318635, 0.029513467103242874, -0.023269353434443474, 0.024861888960003853, 0.007613237015902996, -0.011669047176837921, 0.011903918348252773, -0.08698223531246185, 0.06237240508198738, 0.007481480482965708, -0.02777198888361454, -0.07648754119873047, 8.055767466430552e-07, -0.024472346529364586, -0.012545514851808548, -0.0102999247610569, -0.0064560710452497005, -0.004585701040923595, 0.051373597234487534, 0.028573986142873764, -0.011938288807868958, 0.03833542764186859, 0.004837756976485252, -0.032904766499996185, 0.03503578528761864, -0.0011371163418516517, -0.018296975642442703, 0.0174491498619318, 0.010718109086155891, -0.0029416081961244345, -0.032629795372486115, -0.01625761203467846, 0.03668560832738876, 0.011268049478530884, -0.015421245247125626, 0.019465599209070206, -0.029696781188249588, -0.06736769527196884, 0.022077815607190132, 0.0006888576317578554, 0.01074102334678173, 0.007200781721621752, -0.06328897178173065, 0.051327768713235855, -0.03251522406935692, -0.07712914049625397, 0.05242764949798584, 0.03276728093624115, -0.0774957686662674, 0.01075820904225111, -0.026603365316987038, 0.019832225516438484, -0.02811570279300213, -0.064663827419281, 0.02277669683098793, 0.006152458023279905, -0.0369376614689827, 0.02811570279300213, -0.005871759261935949, 0.02557222731411457, -0.004262038040906191, 0.028871869668364525, 0.00516141951084137, -0.03336305171251297, -0.04158924147486687, 0.001828838256187737, -0.00010356136772315949, -0.013267312198877335, 0.009858827106654644, -0.046011678874492645, 0.01372559554874897, 0.03395881876349449, 0.03455458581447601, 0.010660823434591293, -0.035769037902355194, -0.018205318599939346, 0.0271074790507555, -0.015558729879558086, -0.0032480855006724596, 0.03521909937262535, 0.049128007143735886, 0.0049150921404361725, 0.05586477741599083, -0.02621382474899292, -0.004196159541606903, -0.03608983755111694, -0.0020937833469361067, -0.0068169692531228065, -0.029719695448875427, 0.01295797061175108, 0.016097214072942734, -0.002426039194688201, 0.017918890342116356, -0.06049344316124916, -0.04779898375272751, -0.017609549686312675, -0.049128007143735886, -0.04706573113799095, -0.007871021516621113, 0.005310361739248037, -0.05270262062549591, 0.021378932520747185, -0.006748226936906576, 0.0031850715167820454, 0.0006079419399611652, -0.011073279194533825, 0.0065992847084999084, -0.05206102505326271, -0.011336792260408401, -0.06374725699424744, -0.0006358685786835849, 0.04209335520863533, 0.020966477692127228, -0.031002888455986977, 0.01074102334678173, -0.005820202641189098, -0.015157732181251049, -0.0033998917788267136, -0.03643355146050453, -0.08459915965795517, 0.006977368611842394, -0.017941804602742195, 0.01935102790594101, -0.0116862328723073, 0.015432702377438545, 0.03143825754523277, -0.02928432635962963, 0.03865622729063034, 0.014974418096244335, -0.03120911680161953, -0.0231089536100626, -0.006083715707063675, 0.009898927062749863, 0.01137116365134716, -0.003600390860810876, 0.03675434738397598, -0.05586477741599083, -0.014619248919188976, 0.0028341980651021004, -0.01837717369198799, 0.03116328828036785, -0.017220009118318558, 0.034119218587875366, -0.02313186787068844, 0.010861322283744812, -0.03808337077498436, -0.020771706476807594, -0.00647898530587554, -0.012110145762562752, -0.002110969042405486, 0.02341829426586628, 0.016108671203255653, 0.030063407495617867, 0.011273778043687344, -0.06370142847299576, 0.003694911953061819, 0.017254380509257317, 0.028001131489872932, -0.0033998917788267136, 0.025755541399121284, -0.01565038599073887, 0.01964891143143177, -0.003302506636828184, 0.03531075641512871, 0.0022770969662815332, 0.029857181012630463, -0.00953802838921547, 0.02279961109161377, 0.018789630383253098, 0.037327203899621964, -0.008483976125717163, -0.021161247044801712, -0.02030196599662304, 0.057560428977012634, 0.005339004565030336, 0.012270544655621052, -0.04679076001048088, 0.07804570347070694, -0.09458974748849869, 0.04000816494226456, 0.03120911680161953, -0.014103679917752743, -0.045713793486356735, -0.00039956605178304017, -0.05403164401650429, 0.011205035261809826, -0.007321081589907408, -0.00935471523553133, 0.024105720221996307, -0.03173614293336868, -0.01654404029250145, 0.0350128710269928, -0.03148408606648445, -0.03473789989948273, 0.022696498781442642, -0.09174838662147522, -0.01012806873768568, -0.0029702510219067335, 0.01653258316218853, -0.011216492392122746, 0.041016388684511185, -0.004711729008704424, -0.03764800354838371, 0.008478247560560703, -0.01093006506562233, -0.02564097009599209, 0.010597809217870235, -0.026992907747626305, -0.043857745826244354, 0.005911859218031168, 0.050365373492240906, -0.011164935305714607, -0.008352220058441162, -0.030957061797380447, 0.03677726164460182, 0.035700295120477676, -0.060630928725004196, -0.017300207167863846, -0.011457091197371483, 0.03897702321410179, 0.015215017832815647, -0.008340762928128242, -0.009830184280872345, -0.008277748711407185, -0.008455333299934864, 0.005367647390812635, 0.019477054476737976, -0.020737335085868835, -0.01512336079031229, -0.0473865307867527, 0.014802562072873116, 0.025113943964242935, 0.03345470875501633, 0.0087245749309659, -0.010076511651277542, -0.04156632721424103, 0.006112358067184687, -0.007040382828563452, -0.05829368159174919, -0.004307866562157869, -0.0535733588039875, -0.009950484149158001, 0.0037350119091570377, -0.007802279200404882, -0.011674775741994381, 0.061272524297237396, 0.0028671370819211006, 0.030934147536754608, -0.025755541399121284, -0.02559514157474041, -0.031690314412117004, 0.06668027490377426, 0.018159490078687668, -0.0668177604675293, -0.022856896743178368, -0.03242356702685356, -0.0010075080208480358, 0.04495762661099434, -0.00029842142248526216, -0.01014525443315506, 0.02651171013712883, -0.010706651955842972, 0.015478530898690224, 0.002637995406985283, -0.0016455247532576323, 0.021321646869182587, -0.023784922435879707, -0.0183542612940073, -0.01907605677843094, 0.028894783928990364, 0.010477510280907154, 0.0405581034719944, 0.07992467284202576, -0.0013132691383361816, 0.023830750957131386, -0.0031449715606868267, 0.007057568524032831, -0.03336305171251297, 0.0062555717304348946, -0.02843650057911873, 0.0243348628282547, 0.01077539473772049, 0.018915658816695213, -0.012763199396431446, 0.009635413996875286, 0.01932811364531517, 0.02125290408730507, 0.03627315163612366, 0.049402978271245956, 0.01216743141412735, 0.023246439173817635, -0.017391864210367203, -0.005974872969090939, 0.008415233343839645, -0.03091123327612877, -0.008443876169621944, -0.011823718436062336, 0.011348249390721321, -0.0087532177567482, -0.06415971368551254, -0.04436185956001282, 0.03714388981461525, 0.038816627115011215, -0.025068115442991257, 0.025801369920372963, 0.04234540835022926, -0.03842708468437195, 0.002996029332280159, -0.025068115442991257, 0.054764896631240845, 0.005190062336623669, -0.09468140453100204, 0.0035717482678592205, 0.02584719844162464, 0.012121602892875671, -0.01091287937015295, 0.01747206412255764, -0.039458222687244415, 0.017552264034748077, -0.01089569367468357, -0.02836775779724121, 0.015455616638064384, 0.03996233642101288, -0.0012638603802770376, -0.04408688843250275, -0.0011772161815315485, -0.037968799471855164, -0.01169769000262022, -0.034783728420734406, -0.01152010541409254, -0.0009452100493945181, -0.02249027043581009, -0.02619091048836708, 0.006312857381999493, -0.030475862324237823, 0.016727354377508163, -0.031094545498490334, 0.049769606441259384, -0.010105154477059841, 0.02463274635374546, -0.00578010268509388, -0.033202651888132095, 0.06081424281001091, -0.021768473088741302, -0.05151108279824257, 0.04963212087750435, 0.05334421619772911, 0.0023114681243896484, -0.007154953666031361, -0.06136418133974075, -0.0430099219083786, -0.01836571842432022, -0.031965285539627075, 0.05151108279824257, -0.056964658200740814, 0.01016244012862444, 0.008180363103747368, 0.01993533968925476, 0.010425953194499016, -0.011835175566375256, -0.04525551199913025, 0.01626906916499138, -0.01649821177124977, -0.01230491604655981, -0.020977934822440147, -0.017712663859128952, 0.025457657873630524, -0.028803126886487007, 0.025045201182365417, -0.010586352087557316, 0.03654812276363373, 0.0035001414362341166, -0.003064771881327033, -0.014710905030369759, 0.007206510286778212, -0.002367321401834488, -0.04085598886013031, -0.04559922218322754, -0.010867050848901272, -0.05765208229422569, 0.0262596532702446, -0.04589710757136345, -0.06640530377626419, 0.019603082910180092, -0.02965095266699791, -0.02841358631849289, 0.02809278853237629, 0.057239629328250885, 0.05733128637075424, 0.023807836696505547, 0.0035373768769204617, -0.0529317632317543, -0.012705914676189423, -0.011812261305749416, 0.024564003571867943, -0.026420053094625473, 0.05458158254623413, -0.01137689221650362, -0.028826041147112846, -0.0022398612927645445, 0.02092064917087555, -0.025824284180998802, -0.057285457849502563, -0.010437410324811935, -0.025755541399121284, 0.02024468034505844, 0.014401563443243504, 0.008231920190155506, -0.019729111343622208, 0.056277234107255936, -0.0417267270386219, 0.012568429112434387, 0.014057851396501064, -0.033890075981616974, -0.017254380509257317, -0.015421245247125626, 0.00725233880802989, 0.025068115442991257, -0.008982359431684017, -0.005659803282469511, -0.016475297510623932, -0.05109862610697746, 0.04298700764775276, 0.06177663803100586, 0.00029663124587386847, -0.013336054049432278, 0.009658328257501125, 0.03517327085137367, 0.003660540794953704, 0.042322494089603424, -0.0010411632247269154, -0.0030790932942181826, -0.015432702377438545, -0.02431194856762886, -0.006375871133059263, -0.013210026547312737, -0.0073783667758107185, 0.0030332650057971478, 0.009154216386377811, -0.0061467294581234455, -0.0068169692531228065, 0.023807836696505547, 0.00011501845438033342, -0.027290791273117065, 0.027955302968621254, 0.025022286921739578, -0.04589710757136345, 0.007023197133094072, -0.003205121261999011, -0.030086321756243706, -0.01743769273161888, -0.0002844581031240523, 0.014733819290995598, 0.01031138189136982, 0.01969473995268345, 0.013920365832746029, -0.03691474720835686, -0.02839067205786705, 0.04720321670174599, 0.008398047648370266, -0.001179364393465221, 0.011926832608878613, -0.003379842033609748, 0.01217888854444027, -0.03560864180326462, 0.05558980628848076, 0.01217888854444027, 0.009652599692344666, 0.0022355648688971996, 0.012247630394995213, -0.009125573560595512, 0.02186013013124466, 0.021161247044801712, 0.002675230847671628, 0.030636262148618698, 0.01292359922081232, 0.014183878898620605, -0.006731041241437197, -0.016601325944066048, -0.009079745039343834, -0.002814148087054491, 0.03205694258213043, -0.007418466731905937, 0.023853665217757225, -0.012797570787370205, 0.020405080169439316, 0.0324464812874794, 0.012992342002689838, -0.002355864504352212, 0.0031048718374222517, 0.007555951829999685, -0.007046111393719912, 0.011256592348217964, -0.0036490836646407843, -0.010597809217870235, 0.0012982316548004746, 0.024564003571867943, -0.0017801455687731504, -0.031071631237864494, 0.07162973284721375, 0.030705004930496216, -0.011628948152065277, -0.0277490746229887, 0.019889511168003082, -0.011394076980650425, -0.003273863811045885, 0.021779930219054222, -0.013645395636558533, 0.01655549742281437, 0.009767170064151287, 0.012545514851808548, 0.0070690251886844635, -0.013290226459503174, 0.03709806129336357, 0.0642513707280159, 0.02344120852649212, -0.01386308018118143, 0.004960920661687851, -0.016910666599869728, 0.021012306213378906, 0.016967952251434326, -0.030338378623127937, -0.00022180212545208633, 0.03331722319126129, -0.003692047670483589, 0.0022470219992101192, 0.01587952859699726, -0.0010182489641010761, -0.033844247460365295, -0.004683086182922125, -0.007590323220938444, 0.027542848140001297, -0.005811609793454409, 0.0013655420625582337, 0.01354228239506483, 0.01772412098944187, 0.029123926535248756, 0.02621382474899292, -0.016979409381747246, -0.03146117180585861, 0.020084280520677567, -0.032652709633111954, -0.027611590921878815, -0.019717654213309288, 0.029215583577752113, -0.023876577615737915, 0.011995574459433556, 0.02809278853237629, 0.004674493335187435, 0.0050038849003612995, -0.017941804602742195, -0.0008413801551796496, -0.046057507395744324, 0.02460983209311962, -0.005691309925168753, -0.017357492819428444, 0.026397138833999634, -0.026442967355251312, 0.007074753753840923, 0.02149350382387638, 0.00874748919159174, 0.03471498563885689, -0.004843485541641712, 0.013989108614623547, -0.00016317404515575618, 0.009205772541463375, 0.014825476333498955, -0.0031764786690473557, -0.022662127390503883, 0.03551698476076126, 0.026649193838238716, 0.00810016319155693, 0.008294934406876564, -0.015237931162118912, 0.0007941196672618389, 0.014573420397937298, -0.03686891868710518, 0.005433525424450636, -0.01776994951069355, 0.020072823390364647, -0.011084736324846745, -0.02928432635962963, 0.04330780729651451, 0.03379841893911362, -0.0031249215826392174, -0.008272020146250725, 0.0013010959373787045, -0.02181430160999298, 0.04491179808974266, -0.004113095812499523, 0.014470306225121021, 0.0048033855855464935, -0.023578694090247154, 0.011399805545806885, -0.013152740895748138, -0.026351310312747955, -0.03439418971538544, 0.013828709721565247, -0.02345266565680504, 0.005951959174126387, -0.00010007053060689941, -0.020966477692127228, -0.015169189311563969, -0.04825726896524429, 0.003998524975031614, -0.03650229424238205, -0.02030196599662304, -0.016131585463881493, 0.013152740895748138, -0.004726050421595573, 0.0218257587403059, 0.0493113212287426, -0.0006802647840231657, 0.011777889914810658, -0.0033540634904056787, -0.025526398792862892, 0.044522255659103394, 0.00917713064700365, 0.0033912991639226675, 0.01999262534081936, 0.06324314326047897, 0.023017296567559242, -0.022226756438612938, -0.02467857487499714, -0.09188587218523026, 0.04637830704450607, -0.010981622152030468, 0.01370268128812313, -0.015512901358306408, -0.017827233299613, -0.0009638278279453516, -0.010351481847465038, 0.011961203068494797, 0.05609392002224922, -0.0012115874560549855, -0.001828838256187737, -0.004038624931126833, -0.021986158564686775, -0.013187112286686897, -0.042299579828977585, 0.029536381363868713, -0.01711689494550228, -0.04550756886601448, 0.007086210884153843, -0.021390389651060104, 0.0007891071727499366, 0.04585127905011177, -0.03865622729063034, -0.03439418971538544, 0.022696498781442642, -0.01355373952537775, 0.014092222787439823, -0.005344733130186796, 0.022203844040632248, 0.015524358488619328, 0.02002699486911297, -0.01231637317687273, 0.029444724321365356, -0.01074675191193819, 0.023876577615737915, -0.004264902323484421, -0.008632918819785118, -0.020336337387561798, -0.014894219115376472, 0.0019448412349447608, 0.012579886242747307, -0.0529317632317543, -0.015512901358306408, -0.010053597390651703, -0.033179737627506256, -0.01874380186200142, 0.03464624285697937, 0.007859564386308193, -0.02499937266111374, 0.0436515174806118, -0.009795812889933586, 0.007074753753840923, -0.014172421768307686, -0.03338596597313881, -0.005745731294155121, 0.0011414127657189965, -0.01812511868774891, 0.041039302945137024, -0.008764674887061119, -0.0072695245034992695, 0.005043984390795231, 0.012098688632249832, 0.008082978427410126, 0.0473865307867527, 0.0007669090409763157, -0.0028256052173674107, -0.03249230980873108, 0.011061822064220905, 0.00578010268509388, 0.006874254904687405, 0.002679527271538973, -0.01684192381799221, 0.028871869668364525, 0.037327203899621964, 0.04894469305872917, -0.011743518523871899, -0.002632266841828823, -0.009211501106619835, -0.025159772485494614, -0.04062684625387192, -0.016337811946868896, -0.03675434738397598, 0.004783335607498884, 0.002116697607561946, 0.015100446529686451, 0.0060378871858119965, 0.00183599884621799, -0.012282001785933971, -0.006244114600121975, 0.0036863191053271294, 0.0016297711990773678, -0.027061650529503822, -0.0012509712250903249, -0.02054256573319435, 0.002228404162451625, -0.015432702377438545, -0.000948074331972748, -0.03407339006662369, -0.01450467761605978, 0.004115960095077753, -0.021424761041998863, -0.021000849083065987, -0.01566184312105179, 0.009222958236932755, 0.07305041700601578, -0.012877770699560642, 0.008621461689472198, 0.027542848140001297, 0.020737335085868835, -0.013038169592618942, -0.03175905719399452, 0.03343179449439049, 0.011502919718623161, 0.023338094353675842, -0.006685212720185518, -0.0007361181196756661, 0.010173897258937359, -0.0028069873806089163, 0.010970165021717548, 0.007802279200404882, 0.0159597285091877, -0.02089773491024971, 0.0016226106090471148, 0.004938006401062012, -0.0016627103323116899, -0.012671543285250664, 0.01452759187668562, -0.005900402087718248, -0.01386308018118143, -0.01846883073449135, 8.62862216308713e-05, 0.0019104699604213238, 0.009263058193027973, -0.021757015958428383, -0.007888207212090492, -0.02250172756612301, -0.0159024428576231, -0.011124835349619389, 0.013851623050868511, 0.01843445934355259, 0.03253813832998276, -0.02843650057911873, -0.017918890342116356, -0.0009573831921443343, -0.028894783928990364, 0.012007031589746475, -0.008472518995404243, -0.03409630432724953, -0.006433156784623861, 0.017002323642373085, 0.014905676245689392, -0.016303440555930138, -0.012637171894311905, -0.0033368777949362993, -0.001866073813289404, -0.013588109984993935, -0.0021582297049462795, 0.01170341856777668, 0.01154301967471838, -0.05375667288899422, -0.031415343284606934, 0.014298450201749802, 0.013450625352561474, -0.039435308426618576, -0.008323577232658863, 0.0171283520758152, 0.02900935523211956, -0.019786396995186806, 0.0202790517359972, -0.005871759261935949, 0.021081048995256424, -0.015341045334935188, 0.020840449258685112, -0.002489053178578615, -0.012396573089063168, 0.002069437177851796, -0.012453858740627766, -0.012419487349689007, 0.052885934710502625, -0.03029255010187626, -0.0011027450673282146, 0.0019448412349447608, -0.01845737360417843, 0.03207985684275627, 0.018927114084362984, -0.015570187009871006, 0.011445634067058563, 0.05366501584649086, 0.05109862610697746, 0.02002699486911297, 0.019591625779867172, 0.02371617965400219, 0.01511190365999937, -0.0021353154443204403, 0.01355373952537775, -0.0022226758301258087, 0.02930724062025547, -0.02841358631849289, -0.0011013129260390997, 0.025709712877869606, 0.0004017142637167126, 0.023762008175253868, 0.007275253068655729, 0.02898644097149372, 0.027932388707995415, 0.006192557979375124, -0.018549030646681786, -0.01566184312105179, 0.042895350605249405, -0.011508648283779621, 0.030430035665631294, -0.011491462588310242, -0.01681900955736637, -0.032240256667137146, 0.0010418792953714728, 0.04064976051449776, -0.036318980157375336, 0.003308235201984644, 0.014378650113940239, 0.009818727150559425, 0.017346035689115524, 0.0037149619311094284, 0.013404796831309795, 0.007985592819750309, -0.02147058956325054, -0.004256309475749731, -0.010385853238403797, 0.03155282884836197, -0.01372559554874897, -0.019454142078757286, 0.002418878488242626, 0.013427711091935635, 0.02431194856762886, 0.03899993747472763, 0.01930519938468933, -0.0004360855382401496, -0.0023472716566175222, 0.004794792737811804, 0.0243348628282547, -0.010053597390651703, 0.030338378623127937, -0.016383640468120575, 0.009263058193027973, -0.02532017230987549, 0.0037464688066393137, -0.006519084796309471, -0.03338596597313881, -0.015719128772616386, 0.008031421341001987, 0.0004009981930721551, 0.00725806737318635, 0.015707671642303467, -0.0032509497832506895, -0.020210308954119682, -0.01648675464093685, 0.001283910358324647, 0.012591343373060226, -0.013496453873813152, 0.0008156016701832414, -0.013828709721565247, 0.04310157895088196, 0.02281106822192669, -0.005734274163842201, -0.030361292883753777, 0.048761382699012756, 0.0348982997238636, -0.016452383249998093, -0.0017457742942497134, 0.0028041230980306864, 0.005098405759781599, -0.03210277110338211, -0.037991713732481, 0.039206165820360184, 0.03751051798462868, 0.010248368605971336, 0.0020608443301171064, 0.027932388707995415, 0.0050267986953258514, 0.027886560186743736, -0.003700640518218279, 0.010282739996910095, 0.02031342312693596, 0.05306924879550934, 0.014653620310127735, -0.001162894768640399, -0.0029072370380163193, 0.006662298459559679, -0.0030848218593746424, 0.01355373952537775, 0.01563892886042595, 0.02249027043581009, 0.015398330986499786, 0.020955020561814308, 0.025938855484128, -0.0006788326427340508, -0.007321081589907408, -0.007825192995369434, -0.0010511880973353982, 0.017208551988005638, -0.013828709721565247, 0.042276665568351746, -0.007492937613278627, 0.0041016386821866035, -0.03959570825099945, 0.018812544643878937, 0.012282001785933971, 0.006994554307311773, 0.02186013013124466, -0.028505243360996246, -0.052244335412979126, 0.023647436872124672, 0.01834280416369438, -0.012717371806502342, -0.02117270417511463, -0.0162232406437397, -0.040718503296375275, -0.001757231424562633, -0.04559922218322754, -0.005301768891513348, 0.031644485890865326, 0.0037607902195304632, 0.030361292883753777, 0.009778627194464207, -0.017048152163624763, -0.017621006816625595, -0.01969473995268345, 0.02648879587650299, 0.012786113657057285, -0.0024818924721330404, 0.0183542612940073, -0.009222958236932755, -0.0012409462360665202, 0.001793034840375185, 0.008959445171058178, -0.01093579363077879, 0.030819576233625412, -0.007229424547404051, -0.008650103583931923, -0.03872497007250786, 0.01214451715350151, -0.015742043033242226, -0.007865292951464653, -0.04207044094800949, 0.035723209381103516, -0.0044424873776733875, -0.015810785815119743, 0.03492121398448944, 0.02246735617518425, 0.01137116365134716, 0.02313186787068844, -0.0012817621463909745, 0.013805795460939407, -0.02866564318537712, -0.04553047940135002, 0.01904168538749218, -0.04305575042963028, -0.022948553785681725, -0.024266120046377182, -0.019477054476737976, -0.025686798617243767, 0.04076433181762695, -0.038266684859991074, 0.0017500707181170583, -0.010179625824093819, 0.019603082910180092, -0.02186013013124466, -0.04986126348376274, -0.034462932497262955, 0.0011156342225149274, 0.007395552471280098, -0.02336100861430168, 0.014607791788876057, -0.011290963739156723, 0.035425327718257904, 0.04637830704450607, 0.013152740895748138, -0.04431603103876114, -0.031346600502729416, -0.008884974755346775, 0.016440926119685173, -0.0029015084728598595, 0.042849522083997726, -0.003531648311764002, -0.011984117329120636, -0.006496171001344919, -0.0013290225761011243, 0.008449604734778404, 0.02836775779724121, 0.015054618008434772, -0.034829556941986084, -0.01650966890156269, 0.0035803411155939102, 0.031644485890865326, 0.023807836696505547, 0.004336508922278881, 0.0234297513961792, 0.028184445574879646, 0.0034944128710776567, 0.011021722108125687, -0.005992058664560318, -0.012213259004056454, 0.009652599692344666, 0.007567408960312605, -0.0006849192432127893, 0.05306924879550934, 0.004514093976467848, 0.01468799076974392, -0.022570470348000526, 0.050044573843479156, -0.019419770687818527, 0.0274282768368721, 0.015604558400809765, -0.00034532390418462455, 0.0029416081961244345, 0.03677726164460182, 0.008610004559159279, -0.015066075138747692, 0.006141000892966986, -0.011949745938181877, 0.022902725264430046, -0.031071631237864494, -0.009469285607337952, -0.03301933780312538, -0.010042140260338783, 0.01434427872300148, -0.018526116386055946, -0.007361181080341339, 0.02646588161587715, -0.016051385551691055, 0.009211501106619835, 0.008180363103747368, -0.03936656564474106, 0.019247913733124733, -0.020955020561814308, 0.03212568536400795, -0.011101922020316124, -0.013324596919119358, -0.020485280081629753, 0.002368753543123603, -0.0032681352458894253, 0.021092506125569344, -0.004052945878356695, -0.013507911004126072, 0.03240065276622772, -0.03865622729063034, 0.01870943047106266, -0.022971468046307564, 0.07978718727827072, 0.0037178262136876583, 0.011915375478565693, -0.007487209048122168, 0.0323319137096405, -0.008810503408312798, 0.002252750564366579, 0.0034342631697654724, -0.005823066923767328, 0.0355398990213871, -0.02147058956325054, 0.028917698189616203, 0.012293458916246891, 0.004098774399608374, 0.013301682658493519, 0.007126310840249062, 0.009475014172494411, 0.021459132432937622, 0.019786396995186806, 0.011348249390721321, -0.0016054249135777354, 0.0004908647388219833, 0.03844999894499779, -0.004717457573860884, -0.02836775779724121, -0.0249764584004879, -0.0010884236544370651, 0.024770231917500496, -0.02713039331138134, 0.03579195216298103, 0.0013161334209144115, 0.015455616638064384, -0.014057851396501064, 0.006845612078905106, -0.01091287937015295, -0.01687629520893097, -0.002577845472842455, 0.01154301967471838, 0.02495354600250721, 0.009297429583966732, -0.004731778521090746, -0.009864555671811104, 0.020691506564617157, 0.016635697335004807, -0.0038954110350459814, 0.0159024428576231, -0.04500345513224602, -0.019179170951247215, 0.031713228672742844, -0.02243298478424549, 0.033890075981616974, -0.014814019203186035, -0.04465974122285843, -0.03551698476076126, -0.03936656564474106, 0.0071893250569701195, -0.004534143954515457, -0.02719913423061371, -0.04367443174123764, -0.008002778515219688, -0.00013372574176173657, -0.004760421346873045, -0.03450876101851463, -0.014286993071436882, 0.009429186582565308, 0.008300662972033024, -0.015318131074309349, -0.000627633766271174, -0.010460324585437775, 0.013496453873813152, -0.013347511179745197, -0.037258461117744446, 0.02187158726155758, -0.014447391964495182, -0.023624522611498833, 0.022043444216251373, -0.016624240204691887, 0.026420053094625473, -0.012877770699560642, -0.01013379730284214, 0.00936044380068779, -0.014470306225121021, 0.036593951284885406, 0.022696498781442642, -0.008352220058441162, -0.012717371806502342, 0.025824284180998802, 0.03148408606648445, -0.0019491376588121057, 0.017953261733055115, -0.012282001785933971, 0.008604275994002819, 0.018640687689185143, -0.014390107244253159, 0.01468799076974392, 0.01169769000262022, -0.030384207144379616, -0.00568271754309535, 0.017013780772686005, -0.045713793486356735, 0.014848390594124794, -0.03567738085985184, -0.02777198888361454, 0.01091287937015295, 0.01711689494550228, -0.022249670699238777, -0.014046394266188145, -0.03737303242087364, -0.028184445574879646, -0.028482329100370407, 0.004009982105344534, -0.008037149906158447, 0.01623469777405262, -0.0038495827466249466, -0.02405989170074463, -0.036341894418001175, 0.008644375018775463, -0.04369734600186348, 0.03705223277211189, 0.01154874823987484, -0.0032165783923119307, 0.022043444216251373, 0.007825192995369434, 0.008810503408312798, 0.010236911475658417, 0.00037163941306062043, -0.02495354600250721, 0.010385853238403797, 0.031713228672742844, 0.028803126886487007, -0.000528458331245929, 0.017368949949741364, 0.04200169816613197, -0.010076511651277542, 0.008438147604465485, -0.020955020561814308, -0.023899491876363754, -0.005496539641171694, -0.00793403573334217, -0.027680333703756332, -0.008048607036471367, 0.027565762400627136, -0.007080482318997383, -0.020427994430065155, -0.03343179449439049, 0.022387156262993813, -0.0020808943081647158, -0.03368384763598442, 0.0685134083032608, 0.03753343224525452, -0.038839541375637054, 0.003697776235640049, -0.019408313557505608, -0.005980601534247398, 0.03533367067575455, 0.018801087513566017, 0.020198851823806763, 0.014539049006998539, 0.011812261305749416, -0.0018789629684761167, -0.04085598886013031, -0.004307866562157869, -0.04706573113799095, -0.010362938977777958, -0.01807929016649723, 0.015856614336371422, 0.01230491604655981, 0.021905958652496338, -0.015203560702502728, -0.021161247044801712, -0.023200610652565956, -0.03281310945749283, 0.005442118272185326, 0.00953802838921547, -0.022914182394742966, 0.0038209399208426476, -0.006020701490342617, 0.042574550956487656, -0.031690314412117004, 0.001970619661733508, -0.0004844201321247965, -0.008810503408312798, 0.0070174685679376125, -0.013611024245619774, -0.027519933879375458, -0.003904003882780671, -0.013588109984993935, -0.01655549742281437, -0.009245872497558594, -0.026947079226374626, 0.02090919204056263, -0.004330780357122421, 0.01654404029250145, -0.015616015531122684, -0.005797288380563259, -0.04990709200501442, 0.00810016319155693, 0.00647898530587554, 0.006089444272220135, 0.03283602371811867, 0.022925639525055885, 0.007458566688001156, -0.024495260789990425, -0.010574894957244396, 0.001546707353554666, -0.03549407050013542, 0.011061822064220905, -0.020370708778500557, 0.016429468989372253, -0.024197377264499664, 0.03689183294773102, -0.00891934521496296, -0.012133060023188591, 0.039435308426618576, 0.009400543756783009, -0.028757300227880478, 0.01869797334074974, -0.006501899566501379, -0.0032480855006724596, -0.03998525068163872, -0.013966194353997707, 0.011096193455159664, 0.020725877955555916, -0.030934147536754608, 0.015260845422744751, -0.01309545524418354, -0.00500102061778307, 0.014413020573556423, 0.0016397961881011724, -0.02900935523211956, 0.022352784872055054, -0.011044636368751526, -0.0035975268110632896, 0.0005295324372127652, -0.02212364412844181, -0.0007812303956598043, -0.022914182394742966, -0.005602517630904913, -0.010700923390686512, 0.02994883619248867, 0.0024761639069765806, 0.022868353873491287, -0.021161247044801712, -0.02653462439775467, -0.014745276421308517, 0.032652709633111954, -0.020015539601445198, 0.0008385158726014197, -0.03334013745188713, -0.020817534998059273, -0.0006390908965840936, -0.015180646441876888, 0.011434176936745644, -0.0018732344033196568, -0.0005939785623922944, -0.001248106942512095, 0.0368230901658535, -0.01935102790594101, -0.024105720221996307, -0.022352784872055054, -0.011663318611681461, -0.04406397417187691, 0.008025692775845528, 0.0016713031800463796, 0.009744255803525448, 0.0442931167781353, 0.018549030646681786, -0.01834280416369438, -0.030315464362502098, 0.010265554301440716, -0.009824455715715885, 0.016349269077181816, -0.0017443421529605985, -0.02371617965400219, -0.013290226459503174, -0.026947079226374626, -0.005172876641154289, 0.0020508193410933018, 0.014974418096244335, -0.010454596020281315, -0.017976175993680954, 0.06086007133126259, 0.009669785387814045, -0.011233678087592125, -0.00646752817556262, 0.013336054049432278, -0.017552264034748077, -0.025411829352378845, -0.001352652907371521, 0.007023197133094072, 0.03379841893911362, 0.009893198497593403, 0.02532017230987549, 0.026328396052122116, 0.0045541939325630665, 0.029192669317126274, -0.00937762949615717, 0.05778956785798073, 0.017093980684876442, -0.039504051208496094, -0.015547272749245167, -0.027611590921878815, 0.02804696001112461, 0.0262596532702446, -0.014206793159246445, 0.036983489990234375, 0.005487946793437004, 0.007149225100874901, 0.0019176306668668985, -0.009228686802089214, -0.0006340784020721912, -0.007876750081777573, 0.006490442436188459, 0.006198286544531584, 0.026603365316987038, 0.028276100754737854, -0.03054460510611534, -0.017071066424250603, -0.005980601534247398, 0.0034714986104518175, 0.005659803282469511, -0.0011922535486519337, 0.0032967780716717243, -0.04770733043551445, -0.006656569894403219, -0.010173897258937359, -0.007286710198968649, -0.010655094869434834, -0.026420053094625473, -0.004791928455233574, -0.022031987085938454, -0.03450876101851463, 0.0006645112880505621, -0.05215267837047577, -0.019121885299682617, 0.021642446517944336, -0.015616015531122684, -0.020473822951316833, -0.002950201043859124, -0.019820768386125565, -0.017621006816625595, -0.0036404908169060946, -0.00718359649181366, 0.015730585902929306, -0.012133060023188591, 0.01746060699224472, -0.009704156778752804, 0.03120911680161953, 0.015787871554493904, -0.007046111393719912, 0.049173835664987564, 0.03691474720835686, -0.022948553785681725, 0.0010275578824803233, 0.014951503835618496, -0.006330043077468872, -0.001212303526699543, 0.046928245574235916, -0.0038495827466249466, 0.008621461689472198, -0.018491744995117188, 0.0055853319354355335, 0.004769014194607735, 0.04241415113210678, 0.002713898429647088, 0.01843445934355259, -0.026901250705122948, 0.014882761985063553, -0.02467857487499714, 0.038243770599365234, -0.009263058193027973, -0.008163177408277988, 0.02085190638899803, 0.014699447900056839, 0.0076075089164078236, -0.046928245574235916, -0.0013261582935228944, -0.009154216386377811, -0.02243298478424549, -0.03118620254099369, 0.03817502781748772, -0.014046394266188145, 0.010053597390651703, -0.02495354600250721, 0.047294873744249344, -0.015054618008434772, 0.009085473604500294, 0.020038451999425888, 0.010093697346746922], [0.033541806042194366, 0.030070314183831215, 0.02309141494333744, -0.0011693844571709633, -0.03763577342033386, 0.009379017166793346, -0.04201703891158104, -0.007421812973916531, 0.008606908842921257, 0.02865777537226677, -0.011994607746601105, -0.004800237249583006, 0.022121790796518326, 0.01951218582689762, -0.024396218359470367, 0.0011589101050049067, 0.013347293250262737, 0.005692051723599434, -0.012820583768188953, 0.014460564590990543, 0.012844525277614594, 0.04524911940097809, -0.00017488395678810775, -0.006703573279082775, -0.017441261559724808, -0.01633995957672596, 0.036223236471414566, -0.022325292229652405, 0.06349241733551025, -0.0042914836667478085, 0.09442461282014847, -0.002248988952487707, -0.008570997044444084, 0.030357610434293747, 0.009480767883360386, -0.0020095754880458117, -0.014017649926245213, -0.014388740994036198, 0.017321554943919182, -0.008606908842921257, -0.03782730549573898, -0.007320062257349491, -0.009277266450226307, -0.041490327566862106, -0.04790660738945007, 0.04335775226354599, -0.013682471588253975, -0.05051621049642563, -0.01957204006612301, 0.03701329976320267, 0.045512471348047256, 0.030429434031248093, 0.011007027700543404, 0.00573394913226366, -0.0289450716227293, 0.004255571868270636, -0.023510389029979706, 0.054059527814388275, -0.00980397593230009, -0.019356567412614822, 0.002548255492001772, -0.03452340140938759, -0.03507405146956444, 0.028418362140655518, -0.02856200933456421, -0.004536882508546114, 0.015226687304675579, 0.022480910643935204, -0.030860377475619316, 0.01276073046028614, 0.036678120493888855, 0.009163545444607735, 0.02722129598259926, -0.03574441000819206, -0.027173412963747978, -0.014735890552401543, 0.026503054425120354, 0.0018240303033962846, -0.028921129181981087, 0.012521317228674889, -0.03318268805742264, 0.0076133436523377895, 0.017010316252708435, 0.02482716180384159, -0.051617514342069626, 0.06243899464607239, -0.08231030404567719, 0.00529103446751833, -0.02726917713880539, -0.060092743486166, -0.08278913050889969, -0.017704615369439125, 0.0002811236190609634, 0.01442465279251337, -0.00017142368596978486, 0.004809215199202299, 0.02324703335762024, 0.004824178293347359, -0.019679775461554527, 0.06028427556157112, 0.003190182615071535, -0.020685311406850815, -0.02588058076798916, 0.0038605397567152977, 0.03174620866775513, -0.03813854232430458, -0.01976357027888298, 0.04182550683617592, -0.023019591346383095, 0.008128082379698753, 0.040149614214897156, -0.026981880888342857, 0.0014050569152459502, 0.07761780172586441, -0.03923984244465828, -0.006410291884094477, -0.00470746448263526, -0.0027592384722083807, 0.018195413053035736, 0.011461912654340267, -0.03198562189936638, -0.006948971655219793, 0.011833003722131252, -0.04201703891158104, 0.015956897288560867, -0.02419271692633629, 0.01752505451440811, -0.0034864565823227167, 0.00809217058122158, -0.027388883754611015, 0.027795886620879173, -0.07536731660366058, 0.059326622635126114, -0.07316470891237259, 0.0025766859762370586, 0.04043691232800484, 0.009169530123472214, -0.03581623360514641, -0.006072120275348425, -0.0009217413025908172, 0.036079589277505875, 0.004647611174732447, 0.05712401866912842, 0.028777481988072395, -0.07378719002008438, 0.006895103957504034, 0.000828220450785011, 0.02532993070781231, -0.03983837738633156, -0.01807570643723011, -0.009067779406905174, 0.004480022005736828, 0.009738137014210224, 0.009929667226970196, 0.008080199360847473, -0.00040887307841330767, 0.029639368876814842, 0.06306146830320358, 0.018698180094361305, -0.027197353541851044, -0.00464461836963892, 0.018446797505021095, -0.011557678692042828, -0.03828218951821327, 0.021978143602609634, -0.0015412232605740428, -0.010025433264672756, -0.009253324940800667, 0.004611699376255274, -0.056645192205905914, -0.0520484559237957, -0.009588503278791904, 0.013790207915008068, -0.020721223205327988, -0.02388148009777069, -0.010258860886096954, 0.05511294677853584, -0.0016205289866775274, -0.04311833903193474, 0.019739627838134766, -0.0014342354843392968, 0.005802780389785767, -0.07373930513858795, -0.02085290104150772, -0.02288791351020336, 0.009121648035943508, -0.011198557913303375, -0.015825221315026283, -0.06818491220474243, -0.013897943310439587, 0.032703861594200134, -0.013323351740837097, -0.028083182871341705, 0.033589690923690796, -0.02036210335791111, -0.009504709392786026, -0.03390092775225639, -0.016770903021097183, 0.046613775193691254, -0.01437676977366209, 0.022014055401086807, -0.033398158848285675, 0.006060149986296892, 0.014592242427170277, -0.03531346470117569, 0.00014439616643358022, 0.019691746681928635, 0.039551082998514175, 0.062008053064346313, -0.019739627838134766, 0.035983823239803314, 0.0027053705416619778, -0.0020724216010421515, 0.008331583812832832, 0.015513983555138111, 0.021319756284356117, 0.03224897384643555, -0.00527607137337327, 0.022109821438789368, -0.0014469543239101768, -0.04637436196208, -0.03971866890788078, -0.011270382441580296, 0.010546157136559486, -0.01444859430193901, -0.03289538994431496, -0.0015920986188575625, -0.00015346768486779183, 0.030357610434293747, -0.012509346008300781, -0.015753397718071938, -0.01112673431634903, -0.0329672135412693, -0.048098135739564896, 0.007571446243673563, -0.0016938492190092802, 0.0022190622985363007, -0.038904666900634766, -0.012664965353906155, 0.01891365274786949, 0.021223992109298706, 0.029567545279860497, -0.01886576972901821, -0.0033517866395413876, 0.043429575860500336, 0.008415378630161285, -0.019200948998332024, -0.018734091892838478, 0.03689359501004219, -0.001785125583410263, 0.0039832391776144505, -0.02583269774913788, 0.08149629831314087, -0.041203033179044724, 0.008205891586840153, -0.03500222787261009, -0.0032081385143101215, -0.059278737753629684, 0.06722725927829742, -0.024468041956424713, -0.05650154501199722, 0.06574290245771408, -0.0026993851643055677, -0.06253475695848465, -0.05343705415725708, -0.02031422033905983, -0.009684269316494465, -0.001499325968325138, -0.021415522322058678, 0.004486007150262594, -0.031865913420915604, 0.022409087046980858, 0.0017372429138049483, -0.06124192848801613, -0.06962139159440994, 0.027532532811164856, 0.011216514743864536, -0.021367639303207397, -0.008283700793981552, 0.016471637412905693, -0.02980695851147175, -0.01107286661863327, 0.006739485077559948, -0.0862845629453659, -0.013622618280351162, 0.01107885129749775, 0.01162351667881012, 0.0064462036825716496, -0.021714787930250168, 0.010635936632752419, 0.07828816026449203, 0.007236267905682325, 0.012629052624106407, 0.002491394989192486, 0.039168018847703934, -0.04251980781555176, -0.044267524033784866, 0.016567401587963104, -0.06028427556157112, -0.05233575403690338, -0.03390092775225639, 0.01768067479133606, 0.036678120493888855, 0.005961391609162092, -0.024156805127859116, 0.029232367873191833, -0.00344455917365849, 0.02755647338926792, -0.039407432079315186, 0.006122995633631945, 0.009157559834420681, 0.014532389119267464, 0.009684269316494465, -0.06248687952756882, -0.007457725238054991, 0.010773600079119205, -0.01687864027917385, -0.002754749497398734, 0.01216219738125801, -0.02443213015794754, 0.07891063392162323, 0.004982789978384972, 0.06550348550081253, -0.04503364488482475, 0.004587757866829634, -0.013694441877305508, 0.021666906774044037, 0.08073017001152039, -0.026239700615406036, -0.04249586537480354, -0.06354029476642609, 0.02880142256617546, 0.0458955354988575, 0.01055214274674654, -0.01982342265546322, -0.032703861594200134, 0.04158609360456467, 0.027293119579553604, -0.04103544354438782, -0.027580415830016136, -0.006775396876037121, -0.0023836588952690363, 0.020589545369148254, 0.03768365830183029, -0.04031720384955406, 0.014113415963947773, -0.03078855387866497, -0.01216818206012249, -0.004764324985444546, 0.039958082139492035, -0.014939391054213047, 0.01058206893503666, -0.05228786915540695, -0.02006283588707447, -0.03179408982396126, -0.043836578726768494, 0.02990272454917431, -0.009133618324995041, 0.026503054425120354, 0.00038231315556913614, 0.013371233828365803, -0.033302392810583115, 0.03773153945803642, 0.06425853818655014, 0.07498425245285034, 0.007451739627867937, -0.0076851677149534225, -0.0015711499145254493, 0.05343705415725708, -0.005231181159615517, 0.046206772327423096, -0.022181645035743713, 0.012126284651458263, -0.0362711176276207, -0.014951362274587154, -0.008505158126354218, -0.029759075492620468, -0.01583719067275524, 0.003244050545617938, -0.017441261559724808, 0.022409087046980858, -0.010348641313612461, 0.015322452411055565, 0.012180153280496597, 0.014963332563638687, 0.019452333450317383, -0.036678120493888855, -0.049989502876996994, 0.03313480317592621, 0.01294029038399458, 0.011677385307848454, 0.016124486923217773, -0.009684269316494465, 0.021140197291970253, -0.038713134825229645, 0.03181803226470947, 0.007643270306289196, 0.07402659952640533, 0.0025961382780224085, -0.054251059889793396, 0.0055424184538424015, -0.022121790796518326, -0.007104590535163879, 0.026335466653108597, 0.060763102024793625, 0.016304047778248787, 0.05257516726851463, -0.0012561718467622995, 0.0007032766588963568, -0.05075562372803688, 0.0329672135412693, -0.030429434031248093, 0.01504712738096714, 0.014723919332027435, 0.017955999821424484, -0.01102498359978199, 0.03828218951821327, -0.0018389936303719878, -0.008624864742159843, -0.03878495842218399, 0.04048479348421097, -0.024503953754901886, -0.02805924229323864, -0.021475374698638916, -0.02523416467010975, -0.015585807152092457, -0.005096510984003544, -0.0644979476928711, 0.0242884811013937, -0.0816878229379654, -0.000643423292785883, 0.029687251895666122, -0.004746369086205959, 0.021487345919013023, -0.044267524033784866, -0.024096950888633728, -0.06670055538415909, -0.022875942289829254, -0.036821767687797546, 0.002076910575851798, 0.011527751572430134, -0.02264850027859211, 0.02865777537226677, 0.04886426031589508, -0.0067933532409369946, -0.0329672135412693, 0.004001195076853037, 0.011677385307848454, 0.022516822442412376, -0.03224897384643555, 0.009684269316494465, -0.0038485692348331213, 0.020338162779808044, -0.00520125450566411, -0.022971708327531815, -0.023905420675873756, 0.02264850027859211, -0.0761813223361969, 0.021427491679787636, 0.0011880886740982533, 0.017058199271559715, 0.04704471677541733, 0.020146630704402924, 0.013239556923508644, -0.014855597168207169, 0.007188384886831045, 0.023761771619319916, -0.006667661014944315, 0.0038784958887845278, -0.06377971172332764, 0.01782432198524475, -0.03466704860329628, -0.008570997044444084, -0.015609748661518097, 0.052670933306217194, -0.033493924885988235, 0.06713149696588516, 0.010372581891715527, 0.005533440504223108, 0.021738730370998383, 0.0050306725315749645, 0.048098135739564896, -0.05185692757368088, -0.03679782897233963, 0.019308684393763542, 0.04012567177414894, 0.009061794728040695, 0.033493924885988235, -0.05367646738886833, -0.031315263360738754, -0.0633966475725174, -0.018985476344823837, 0.007768962532281876, -0.011509795673191547, 0.038066718727350235, -0.019081242382526398, -0.029232367873191833, -0.019655834883451462, 0.05219210311770439, -0.010318714193999767, 0.05621424689888954, -0.032608095556497574, -0.004916951060295105, -0.028777481988072395, 0.032943274825811386, -0.03847372159361839, 0.04898396506905556, 0.014711949042975903, -0.029663311317563057, 0.006042193621397018, 0.00822384748607874, -0.05075562372803688, 0.027125529944896698, -0.01763279177248478, -0.014592242427170277, -0.04769113287329674, 0.04330987110733986, 0.019260801374912262, -0.022660471498966217, -0.0034325886517763138, 0.045416709035634995, 0.0010309736244380474, 0.022959737107157707, 0.018734091892838478, -0.016806814819574356, -0.018051763996481895, 0.0014477024087682366, 0.004381263628602028, -0.015681572258472443, -0.03203350305557251, -0.024851102381944656, 0.008726615458726883, -0.04709260165691376, 0.014699977822601795, -0.0197156872600317, 0.000549154297914356, -0.010270832106471062, 0.01653148978948593, -0.0027906615287065506, -0.019141094759106636, 0.021283844485878944, 0.012054461054503918, 0.009815946221351624, -0.009576532989740372, -0.001990123186260462, -0.02220558561384678, 0.046158887445926666, -0.005186290945857763, -0.0054975287057459354, -0.007762976922094822, 0.025784814730286598, -0.02364206500351429, -0.009887770749628544, -0.018003882840275764, 0.000524090719409287, 0.05171327665448189, 0.01851862110197544, -0.04266345500946045, 0.0006288340664468706, -0.009444856084883213, -0.0020125682931393385, -0.040700264275074005, 0.00043281441321596503, -0.0005854403716512024, 0.004399219993501902, 0.027532532811164856, -0.013909914530813694, -0.010635936632752419, -0.004420168697834015, -0.02070925198495388, -0.0005345650715753436, -0.04965432360768318, 0.04081997275352478, -0.06622172892093658, 0.024946868419647217, -0.01045637670904398, 0.014017649926245213, -0.06105039641261101, -0.028418362140655518, 0.04424358159303665, 0.007505607791244984, 0.020134661346673965, -0.007320062257349491, 0.008505158126354218, -0.017944028601050377, 0.0008536581299267709, 0.0021262895315885544, -0.024216657504439354, -0.021990114822983742, -0.05784225836396217, 0.0024016150273382664, -0.0005499024991877377, 0.008774498477578163, -0.007571446243673563, 0.003758789272978902, 0.050228916108608246, 0.0006613793084397912, 0.008864277973771095, -0.0367499440908432, 0.035576820373535156, 0.009013911709189415, -0.03780336305499077, -0.01509501039981842, 0.016327988356351852, -0.04773901775479317, -0.02671852707862854, 0.026383347809314728, -0.007960492745041847, -0.022816089913249016, 0.00871464516967535, -0.021319756284356117, 0.0038755033165216446, -0.01648360677063465, -0.024168774485588074, -0.033589690923690796, 0.0023671991657465696, -0.006027230527251959, -0.01738140732049942, -0.013826119713485241, -0.017070170491933823, 0.0005098755937069654, -0.027676180005073547, -0.01753702573478222, -0.03174620866775513, -0.015956897288560867, -0.004381263628602028, -0.009223398752510548, -0.06320511549711227, 0.01827920787036419, -0.01104892510920763, -0.027652239426970482, -0.0065180277451872826, -0.010863379575312138, -0.010935203172266483, -0.012796642258763313, 0.03153073415160179, -0.0032829551491886377, -0.010444406419992447, 0.0010317218257114291, -0.0014252574183046818, 0.0364387072622776, -0.007715094368904829, 0.03054914064705372, -0.029471781104803085, -0.011264396831393242, -0.000277569837635383, -0.02657487988471985, 0.007954508066177368, 0.02264850027859211, -0.017022287473082542, 0.023223092779517174, 0.06416276842355728, -0.007260208949446678, -0.006350438576191664, -0.0067933532409369946, 0.021978143602609634, -0.02726917713880539, -0.018458766862750053, -0.015633689239621162, 0.013969767838716507, -0.022014055401086807, -0.035935938358306885, -0.018363002687692642, 0.013443058356642723, -0.019931159913539886, 0.0034505445510149, 0.03768365830183029, -0.0004062544903717935, 0.01564566045999527, -0.0067813824862241745, -0.05176116153597832, -0.03337421640753746, -0.01703425869345665, -0.029232367873191833, 0.018841829150915146, 0.0081220967695117, -0.007026780862361193, 0.019308684393763542, -0.020134661346673965, 0.04443511366844177, 0.014209181070327759, -0.017860233783721924, -0.014747860841453075, 0.020242396742105484, 0.0039353566244244576, 0.01102498359978199, -0.004444109741598368, -0.007463710382580757, -0.014568300917744637, 0.045368824154138565, 0.00874457135796547, 0.022109821438789368, -0.0051503791473805904, 0.0029447840061038733, -0.017201848328113556, 0.02552146092057228, 0.00983390212059021, 0.007954508066177368, -0.003980246372520924, -0.04498576372861862, -0.011030969209969044, 0.012617082335054874, -0.027245236560702324, -0.04414781555533409, -0.016806814819574356, -0.037372421473264694, 0.009971564635634422, 0.018602415919303894, 0.037276655435562134, -0.00028785711037926376, 0.002805624855682254, 0.00019807711942121387, -0.011515781283378601, 0.007176414597779512, -0.014520417898893356, -0.013478970155119896, 0.02731706015765667, -0.0018090669764205813, -0.0053389170207083225, -0.02920842543244362, -0.032943274825811386, 0.02293579652905464, -0.04043691232800484, 0.002468949882313609, 0.016794845461845398, -0.029926665127277374, -0.008780484087765217, -0.010228934697806835, 0.007349988911300898, 0.018434826284646988, 0.02427651174366474, 0.0036690093111246824, 0.011509795673191547, -0.005739934276789427, -0.03181803226470947, 0.0019063286017626524, -0.008391437120735645, -0.017022287473082542, 0.03567258641123772, -0.017118053510785103, 0.015346393920481205, -0.03342210128903389, 0.02154720015823841, -0.03773153945803642, -0.0030076298862695694, -0.015202745795249939, -0.042543746531009674, 0.03363757207989693, -0.040053848177194595, 0.01714199408888817, -0.058225322514772415, 0.008451290428638458, -0.03232079744338989, -0.025090515613555908, 0.03744424507021904, -0.01687864027917385, -0.004079004749655724, 0.04579976946115494, 0.005853655748069286, -0.0212120208889246, 0.005572345107793808, -0.009349090047180653, -0.02990272454917431, -0.006529998499900103, 0.0006961690378375351, 0.006290585268288851, -0.031411029398441315, 0.01629207655787468, -0.013024085201323032, -0.008888219483196735, -0.03148285299539566, -0.021834494546055794, 0.017393378540873528, 0.014304946176707745, 0.010887321084737778, -0.0009905726183205843, -0.038210365921258926, -0.032799623906612396, -0.0002657861914485693, -0.021583111956715584, -0.007966478355228901, 0.002211580518633127, -0.01564566045999527, 0.06416276842355728, 0.023163238540291786, -0.004491992294788361, 0.020098749548196793, 0.024001186713576317, -0.026191817596554756, 0.0022385146003216505, 0.0050905258394777775, -0.003896451788023114, 0.003157263156026602, -0.030764611437916756, -0.03246444836258888, -0.015394276939332485, 0.02671852707862854, -0.052718814462423325, -0.0029851850122213364, 0.014592242427170277, 0.0021128226071596146, -0.0016055656597018242, -0.007792903576046228, -0.011336221359670162, 0.053915880620479584, 0.033254511654376984, -0.037875186651945114, 0.01467603724449873, 0.005353880580514669, -0.010845423676073551, 0.029280249029397964, 0.019188977777957916, 0.03143496811389923, 0.054251059889793396, -0.017560968175530434, 0.006703573279082775, -0.03124343976378441, 0.0013654041104018688, 0.0008229833329096437, -0.04043691232800484, 0.034140340983867645, 0.030046371743083, -0.0045907506719231606, 0.007260208949446678, 0.029974548146128654, -0.01179709192365408, -0.02001495473086834, 0.03528952598571777, -0.006266643758863211, -0.046111006289720535, 0.0069848839193582535, 0.031051907688379288, 0.03184197098016739, 0.015549895353615284, -0.013215615414083004, 0.02288791351020336, -0.034044574946165085, 0.03868919238448143, 0.02652699686586857, 0.032703861594200134, 0.009648356586694717, -0.006859191693365574, -0.03337421640753746, -0.022085878998041153, 0.009720181114971638, 0.02214573323726654, -0.019033359363675117, -0.0014417171478271484, -0.012593140825629234, 0.026263641193509102, -0.008128082379698753, 0.019081242382526398, -0.00113571691326797, -0.010330685414373875, 0.004991767928004265, -0.025784814730286598, 0.04692501202225685, 0.016507549211382866, 0.014077503234148026, -0.00035313464468345046, 0.007679182570427656, 0.0038635325618088245, -0.0006976653821766376, -0.030261844396591187, -0.00402214378118515, -0.054155293852090836, 0.027676180005073547, -0.005892560351639986, -0.0195600688457489, 0.007505607791244984, 0.03208138421177864, -0.016794845461845398, 0.04359716549515724, -0.009001941420137882, -0.02805924229323864, 0.0005738438339903951, -0.0033906912431120872, 0.025449637323617935, 0.013059996999800205, -0.0007320810691453516, 0.005509498994797468, 0.047858722507953644, 0.06124192848801613, 0.006799338385462761, 0.03193773701786995, -0.040604498237371445, -0.035983823239803314, 0.03466704860329628, 0.012365697883069515, -0.00016151047020684928, 0.009498723782598972, 0.007104590535163879, 0.032943274825811386, -0.017572937533259392, 0.026646703481674194, 0.00011372133303666487, 0.014556330628693104, -0.010617980733513832, -0.004189733415842056, 0.0015008222544565797, -0.053915880620479584, 0.008493187837302685, -0.008936102502048016, -0.019955100491642952, -0.03212926909327507, -0.019093213602900505, -0.02313929796218872, 0.019153065979480743, 0.037228770554065704, -0.0024450086057186127, 0.014508447609841824, 0.01062995195388794, 0.014173269271850586, -0.04793054610490799, 0.045273058116436005, 0.0042914836667478085, -0.03684571012854576, 0.007595387753099203, -0.010797540657222271, -0.035983823239803314, 0.03528952598571777, 0.009103692136704922, 0.004521918948739767, -0.006942986510694027, 0.02249288186430931, -0.014257063157856464, -0.014508447609841824, 0.006895103957504034, 0.018051763996481895, -0.033302392810583115, -0.02250485308468342, 0.0440041683614254, 0.01857847347855568, 0.01887774094939232, 0.013586706481873989, -0.007960492745041847, 0.005117459688335657, -0.002243003575131297, 0.01146789826452732, -0.017513085156679153, 0.005509498994797468, -0.014723919332027435, -0.019344596192240715, -0.014328887686133385, -0.0046835229732096195, -0.002094866707921028, -0.0024240599013864994, 0.01644769497215748, 0.03014213778078556, -0.0013250031042844057, 0.0220020841807127, -0.006553939543664455, 0.023713890463113785, -0.012251976877450943, -0.021319756284356117, 0.0007208585739135742, 0.005461616441607475, 0.00939098745584488, -0.0068532065488398075, -0.017345495522022247, 0.006476130336523056, -0.0076013728976249695, 0.024515924975275993, -0.008128082379698753, 0.0017551989294588566, -0.009420914575457573, 0.008481216616928577, -0.007774947676807642, -0.018758034333586693, 0.0054975287057459354, -0.018351031467318535, -0.050181031227111816, 0.0633966475725174, 0.01271284744143486, -0.04692501202225685, 0.003573243971914053, 0.015478071756660938, 0.0005416726344265044, -0.007792903576046228, -0.018650298938155174, -0.02368994802236557, 0.03847372159361839, 0.0391201376914978, -0.005742927081882954, -0.01714199408888817, 0.04833754897117615, 0.006224746350198984, -0.0024614683352410793, -0.0007384404889307916, -0.0053658513352274895, 0.02190632000565529, 0.02354630082845688, 0.004973812028765678, 0.02189434878528118, 0.001590602332726121, 0.013885973021388054, 0.0038725105114281178, 0.047451719641685486, 0.009564562700688839, -0.0019946121610701084, 0.02155916951596737, 0.00754750519990921, -0.0017357466276735067, 0.016160398721694946, 0.008523114025592804, 0.010133168660104275, 0.04002990946173668, 0.0020260352175682783, 0.005787817295640707, -0.01886576972901821, 0.015777338296175003, 0.001619032584130764, 0.010749658569693565, 0.023378711193799973, 0.015346393920481205, -0.06598231196403503, -0.005192276556044817, -0.029471781104803085, -0.028394419699907303, -0.020230425521731377, 0.01797994039952755, 0.011635487899184227, 0.020924724638462067, 0.016423754394054413, 0.004512940999120474, 0.011396074667572975, -0.00585964135825634, 0.020002983510494232, 0.011330235749483109, 0.04323804751038551, 0.006817294284701347, -0.00144994689617306, -0.01693849265575409, 0.015394276939332485, 0.035433173179626465, 0.016004780307412148, 0.01902138814330101, -0.018997447565197945, -0.018793946132063866, 0.017010316252708435, -0.043285928666591644, -0.01985933445394039, -0.010779584757983685, 0.01842285506427288, -0.024946868419647217, 0.023905420675873756, -0.015322452411055565, 0.022421058267354965, -0.0020409985445439816, 0.00015776963846292347, -0.017393378540873528, 0.027149470522999763, -0.06368394196033478, 0.05985333025455475, 0.02358221262693405, 0.013167733326554298, -0.005563367158174515, -0.0038575471844524145, -0.013143791817128658, -0.026503054425120354, 0.017644762992858887, -0.024970808997750282, -0.009564562700688839, -0.007493637036532164, 0.031865913420915604, 0.017752498388290405, -0.04917549714446068, -0.016100546345114708, 0.01752505451440811, -0.019404450431466103, -0.016351930797100067, -0.023067474365234375, 0.02021845616400242, 0.0042914836667478085, -0.01043243519961834, -0.004922936670482159, -0.02884930558502674, -0.021128226071596146, -0.02602422796189785, -0.010468347929418087, -0.002240011002868414, -0.003564265789464116, 0.000461244722828269, -0.006140951998531818, -0.009738137014210224, -0.0034026619978249073, -0.004848119802772999, 0.029376015067100525, -0.00579978758469224, 0.0036061631981283426, -0.012772700749337673, -0.008361510001122952, 0.011629502288997173, -0.00033966766204684973, 0.0040670339949429035, 0.02884930558502674, 0.03370939567685127, -0.015657631680369377, 0.006673646625131369, -0.007667211815714836, 0.042783159762620926, -0.00589854596182704, -0.012054461054503918, -0.008726615458726883, 0.010169081389904022, -0.011659428477287292, 0.027987416833639145, -0.00639233598485589, -0.010187037289142609, 0.016160398721694946, 0.017692644149065018, 0.002597634680569172, -0.016507549211382866, -0.0117492089048028, 0.03521769866347313, -0.0025841675233095884, -0.02463563159108162, 0.03337421640753746, 0.007487651892006397, -0.011761179193854332, -0.014843625947833061, -0.0018584459321573377, 0.00635642372071743, 0.015561866573989391, 0.0023103386629372835, -0.008289686404168606, -0.024563807994127274, 0.031458910554647446, -0.009181501343846321, -0.06191228702664375, -0.0025108472909778357, -0.016148429363965988, -0.02116413787007332, 0.008445304818451405, 0.019344596192240715, -0.01467603724449873, 0.033853042870759964, -0.022073907777667046, -0.026383347809314728, -0.005739934276789427, 0.02224149741232395, -0.010139154270291328, 0.00908573530614376, -0.01753702573478222, -0.042735278606414795, 0.009947624057531357, -0.00794253684580326, 0.05903932452201843, 0.012593140825629234, -0.020637428387999535, 0.0008544063312001526, 0.021762670949101448, 0.007834801450371742, 0.031004026532173157, 0.009606460109353065, -0.002453986555337906, 0.011970666237175465, -0.026096051558852196, 0.017788410186767578, 0.04548853263258934, -0.022313321009278297, -0.014963332563638687, -0.026479113847017288, 0.010929218493402004, -0.012120299972593784, 0.007349988911300898, -3.233482857467607e-05, 0.01340714655816555, -0.02353432960808277, 0.004677537828683853, -0.02398921549320221, 0.03744424507021904, -0.008301656693220139, 0.009396973066031933, 0.021032460033893585, -0.017513085156679153, -0.0016384848859161139, -0.008570997044444084, 0.003824627958238125, -0.005509498994797468, 0.014592242427170277, 0.021439462900161743, 0.002832558937370777, 0.0015771352918818593, 0.022325292229652405, 0.002005086513236165, 0.04891214147210121, -0.011503810063004494, 0.00461768452078104, -0.019332626834511757, -0.004043092485517263, 0.013287439942359924, 0.020721223205327988, -0.013131820596754551, -0.013371233828365803, 0.007631299551576376, -0.00980996061116457, 0.014783772639930248, 0.0008716141455806792, -0.009516679681837559, -0.014077503234148026, -0.008559026755392551, -0.006512042600661516, 0.016926521435379982, 0.004557831212878227, -0.0023552286438643932, 0.0020918739028275013, -0.028729598969221115, -0.009594488888978958, 0.02055363357067108, -0.005231181159615517, -0.007254223804920912, 0.019955100491642952, 0.004919943865388632, -0.03938349336385727, 0.0037198844365775585, -0.00864282064139843, -0.022421058267354965, -0.029280249029397964, 0.01783629320561886, 0.000158424285473302, 0.0025766859762370586, 0.021535228937864304, -0.019356567412614822, -0.013670501299202442, -0.0026215759571641684, 0.005317968316376209, -0.010725717060267925, -0.03665418177843094, 0.003573243971914053, 0.01156964898109436, 0.0012823576107621193, -0.012808612547814846, -0.008864277973771095, -0.025401754304766655, 0.028633832931518555, -0.0002710233675315976, 0.031267378479242325, 0.024300452321767807, 0.01361064799129963, 0.0038784958887845278, 0.014304946176707745, -0.006535983644425869, -0.01812358945608139, -0.01444859430193901, -0.001807570573873818, -0.0012427048059180379, 0.012868465855717659, -0.011910812929272652, -0.04122697561979294, 0.019081242382526398, -0.021583111956715584, 0.014017649926245213, -0.02046983875334263, -0.017908116802573204, -0.01400567963719368, 0.005422711838036776, -0.003229087218642235, -0.004195718560367823, 0.01961992122232914, 0.006787367630749941, 0.000746670295484364, -0.048696670681238174, -0.0026245685294270515, -0.018554532900452614, 0.001138709601946175, 0.013885973021388054, -0.01159359049052, -0.011402059346437454, 0.023426594212651253, 0.014173269271850586, -0.02920842543244362, -0.0070447372272610664, -0.031411029398441315, -0.009247339330613613, -0.02124793268740177, -0.022026026621460915, 0.014065532945096493, -0.0006726018036715686, 0.002557233674451709, 0.021834494546055794, 0.02427651174366474, -0.03019002079963684, 0.004961841274052858, 0.03837795555591583, 0.018434826284646988, -0.0198713056743145, -0.009648356586694717, -0.008517129346728325, -0.012353727594017982, -0.01891365274786949, 0.011479868553578854, -0.0032649992499500513, -0.037516068667173386, 0.0022923825308680534, 0.0091874860227108, 0.013455028645694256, -0.023821625858545303, 0.011270382441580296, -0.04390840232372284, 0.019296713173389435, -0.0004971567541360855, 0.013694441877305508, -0.024001186713576317, 0.009887770749628544, 0.008523114025592804, -0.010175066068768501, -0.005371836479753256, 0.01338320504873991, 0.018889712169766426, -0.02408497966825962, 0.008582967333495617, 0.0198713056743145, 0.006859191693365574, -0.014149327762424946, -0.02055363357067108, -0.009821931831538677, -0.04642224311828613, -0.028633832931518555, -0.00012213819718454033, 0.006296570412814617, 0.006158907897770405, -0.00874457135796547, 0.03718088939785957, 0.031458910554647446, -0.03641476854681969, 0.01050425972789526, -0.011162646114826202, 0.02354630082845688, 0.007092619780451059, -0.03531346470117569, -0.010216963477432728, -0.03854554519057274, -0.0018554532434791327, -0.015083039179444313, 0.041203033179044724, -0.019883276894688606, -0.01657937280833721, -0.02293579652905464, 0.024803221225738525, -0.0047822813503444195, 0.025760874152183533, -0.005000745877623558, -0.024156805127859116, 0.03392486646771431, 0.03938349336385727, -0.0063025555573403835, -0.032608095556497574, 0.009552591480314732, -0.008720630779862404, -0.016507549211382866, -0.0160885751247406, -0.011479868553578854, -0.007655241061002016, -0.021223992109298706, -0.007475681137293577, -0.010803526267409325, -0.010366597212851048, 0.00350141990929842, 0.015466100536286831, -0.004614691715687513, -0.005066584330052137, 0.0071165612898766994, 0.0316983237862587, 0.012976202182471752, 0.008977999910712242, -0.020134661346673965, -0.014688007533550262, 0.025952404364943504, 0.047858722507953644, 0.0029821922071278095, -0.011779136024415493, 1.305784553551348e-05, -0.012305844575166702, -0.013143791817128658, 0.032296858727931976, -0.00696692755445838, 0.03208138421177864, -0.0030420455150306225, -0.006260658614337444, 0.012048475444316864, 0.021475374698638916, -0.01048031821846962, 0.012449492700397968, -0.0005248389206826687, -0.029519662261009216, -0.016926521435379982, 0.011312279850244522, 0.004925929009914398, -0.025665108114480972, 0.001964685507118702, 0.006685616914182901, -0.004869068507105112, -0.003369742538779974, -0.026359407231211662, 0.006703573279082775, -0.0329672135412693, 0.00031740969279780984, -0.010689805261790752, 0.0013646559091284871, -0.0024165783543139696, 0.04036508500576019, -0.01921292021870613, -0.015956897288560867, -0.022026026621460915, -0.001283105812035501, -0.020038895308971405, -0.01952415704727173, -0.04077208787202835, 0.03555287793278694, 0.028490185737609863, -0.011928768828511238, 0.017620820552110672, 0.015011215582489967, 0.010294772684574127, -0.037276655435562134, 0.0009090224630199373, 0.021726759150624275, -0.012605111114680767, -0.02329491637647152, -0.01812358945608139, -0.03267991915345192, 0.00648211594671011, 0.017620820552110672, -0.019057299941778183, 0.016758933663368225, 0.021690847352147102, -0.018386943265795708, -0.0022130769211798906, 0.011437971144914627, 0.01684272661805153, 0.03337421640753746, -0.008648806251585484, 0.0020275316201150417, -0.0002727067330852151, 0.004716442432254553, -0.016327988356351852, -0.018410883843898773, -0.004533889703452587, -0.0027487643528729677, 0.002494387561455369, 0.03133920580148697, 0.030213961377739906, 0.013443058356642723, 0.02985484153032303, 0.011018997989594936, -0.021391579881310463, -0.006589851807802916, -0.018159501254558563, 0.025641167536377907, 0.013790207915008068, -0.009295222349464893, -0.01594492793083191, 0.01689060963690281, 0.014077503234148026, 0.009827917441725731, -0.000699909869581461, -0.009594488888978958, 0.018590444698929787, -0.01657937280833721, -0.0348585806787014, 0.00290438299998641, 0.02884930558502674, 0.016758933663368225, -0.0024135855492204428, 0.02657487988471985, 0.02244499884545803, 0.026383347809314728, 0.00035968111478723586, 0.02036210335791111, -0.04285498335957527, 0.046063125133514404, -0.028083182871341705, 0.008283700793981552, 0.011246440932154655, -0.01544215902686119, 0.029663311317563057, 0.02214573323726654, -0.0036061631981283426, 0.02851412631571293, -0.025641167536377907, -0.011270382441580296, 0.0034595225006341934, -0.020086778327822685, 0.02190632000565529, -0.0025677080266177654, -0.027771946042776108, -0.009714195504784584, 0.0033278451301157475, 0.016950463876128197, 0.001587609644047916, -0.00980397593230009, 0.001518778270110488, 0.023414622992277145, -0.013670501299202442, -0.04663771390914917, 0.010887321084737778, 0.04141850396990776, 0.021595081314444542, 0.01604069210588932, 0.013119850307703018, 0.036079589277505875, -0.01102498359978199, -0.0034206178970634937, -0.01440071128308773, 0.03605564683675766, -0.025210222229361534, 0.0027472679503262043, 0.022037995979189873, -0.015549895353615284, 0.034188222140073776, 0.017572937533259392, -0.0424240417778492, 0.013718383386731148, -0.03679782897233963, -0.005638184025883675, -0.0021457418333739042, -0.005087533034384251, -0.02949572168290615, 0.011904827319085598, -0.023558272048830986, 0.02482716180384159, -0.03828218951821327, -0.04783478379249573, 0.011653443798422813, -0.02592846378684044, 0.006120003294199705, 0.008002390153706074, -0.03402063250541687, 0.004043092485517263, -0.04386052116751671, 0.034930404275655746, -0.022816089913249016, 0.002073918003588915, -0.0343797542154789, 0.014101444743573666], [0.04540734738111496, 0.031794141978025436, 0.002487784717231989, 0.017145885154604912, -0.06160818412899971, -0.02005978673696518, -0.003712691832333803, -0.0063397022895514965, 0.01829344592988491, 0.0737588107585907, -0.014355741441249847, -0.009726127609610558, -0.02396373823285103, 0.0024948164355009794, -0.03874700143933296, -0.004069897811859846, 0.006705346517264843, 0.03663189336657524, 0.01135183684527874, 0.01569456048309803, 0.029971547424793243, 0.04101961851119995, -0.029634030535817146, 0.004213342443108559, -0.019767271354794502, -0.03681190311908722, 0.03550683334469795, -0.039309531450271606, 0.007183495908975601, -0.04846750199794769, 0.067098468542099, -0.019384751096367836, 0.024278754368424416, -0.01957601122558117, 0.031839143484830856, 0.00732975360006094, 0.02391873486340046, -0.009675499983131886, 0.034179266542196274, -0.006694095674902201, -0.05985309183597565, 0.049232542514801025, -0.021769873797893524, -0.0500875860452652, -0.015683310106396675, 0.03894951194524765, 0.04344974458217621, -0.04086210951209068, -0.013264435343444347, 0.040592096745967865, 0.0027802998665720224, 0.04837749898433685, -0.021128591150045395, 0.002068700734525919, 0.021128591150045395, 0.008353556506335735, -0.0248187817633152, 0.04315723106265068, 0.011689353734254837, -0.017820920795202255, -0.007127243094146252, -0.0498625747859478, -0.014220735058188438, -0.007650395389646292, 0.001462575513869524, 0.020599814131855965, 0.027811435982584953, 0.02008228749036789, -0.01622333750128746, 0.015987075865268707, 0.014051975682377815, 0.026348860934376717, 0.014524499885737896, -0.03478679805994034, -0.07600892335176468, -0.010958066210150719, 0.016493352130055428, -0.01249939575791359, 0.024323755875229836, -0.0056562297977507114, -0.005990934558212757, -0.012724407017230988, -0.031006602570414543, 0.013781961984932423, -0.02102733589708805, 0.02913900464773178, -0.05260771885514259, -0.025538818910717964, 0.0024793469347059727, -0.01659460738301277, -0.05535285919904709, -0.001227719709277153, -0.030984099954366684, 0.0330992117524147, 0.0016875872388482094, -0.021927382797002792, 0.0664234310388565, 0.004114900249987841, -0.0558478869497776, 0.05319274961948395, 0.023558717221021652, -0.018169688060879707, -0.03267168626189232, 0.042932216078042984, 0.053462762385606766, -0.023468712344765663, -0.048062484711408615, 0.05161766707897186, -0.00284920958802104, -0.03647438436746597, 0.045902371406555176, -0.019812272861599922, -0.023378707468509674, 0.05211269110441208, -0.01725839078426361, -0.01661710813641548, 0.011891864240169525, 0.0008677010773681104, 0.013748209923505783, -0.016347095370292664, -0.03384174779057503, -0.0477924682199955, 0.03705941513180733, -0.07092366367578506, 0.039467040449380875, -0.02580883353948593, -0.01010864693671465, 0.020262297242879868, -0.028936494141817093, -0.007931659929454327, 0.042819712311029434, -0.03242417424917221, 0.04878251999616623, -0.025403812527656555, 0.02587633766233921, 0.004632426891475916, 0.04131213575601578, -0.002383716870099306, 0.012431892566382885, -0.02394123747944832, 0.04468730837106705, -0.012690655887126923, 0.04752245545387268, -0.009990516118705273, -0.04630739241838455, 0.049277544021606445, 0.007633519358932972, 0.017269643023610115, -0.02095983363687992, 0.007014737464487553, -0.01053616963326931, 0.015334541909396648, 0.03037656843662262, -0.019305996596813202, 0.0009661436779424548, 0.013331938534975052, -0.005048698280006647, 0.0434272438287735, 0.015469549223780632, 0.019722267985343933, -0.044934820383787155, 0.002025104593485594, -0.02095983363687992, -0.05107763782143593, 0.02830646187067032, -0.024391259998083115, -0.01681961864233017, 0.03042157180607319, -0.019114738330245018, -0.02497629076242447, -0.04475481063127518, -0.010924314148724079, -0.004435541573911905, -0.0335492342710495, 0.011655601672828197, -0.04306722432374954, 0.07240874320268631, 1.9765426259255037e-05, -0.006536587607115507, 0.040592096745967865, -0.0069809858687222, 0.0038561366964131594, -0.09315481036901474, -0.05274272337555885, -0.012881915085017681, 0.017573406919836998, 0.015244537964463234, -0.013748209923505783, -0.03046657331287861, -0.04648740217089653, -0.009669874794781208, -0.01996978186070919, -0.0058334264904260635, 0.03269419074058533, -0.024526266381144524, -0.009169223718345165, -0.028508972376585007, 0.011925616301596165, 0.08163421601057053, -0.013635704293847084, 0.03600186109542847, -0.04761245846748352, -0.0048911902122199535, -0.01856345869600773, -0.05206768959760666, 0.012690655887126923, 0.027271408587694168, 0.005141515750437975, 0.039399534463882446, -0.0039377035573124886, 0.007408507633954287, 0.018259692937135696, -0.04236968979239464, 0.04209967330098152, -0.023086192086338997, 0.025358809158205986, 0.024233750998973846, 0.005217457190155983, 0.012150627560913563, 0.03773444890975952, -0.028733983635902405, -0.023581217974424362, 0.01190311461687088, -0.0225236639380455, -0.01900223083794117, -0.04635239392518997, 0.009630497545003891, -0.008190423250198364, 0.019058484584093094, -0.0422796830534935, 0.02063356526196003, 0.026483867317438126, -0.019744770601391792, -0.0473424457013607, 0.053597770631313324, -0.00017368084809277207, -0.0029617154505103827, -0.038476988673210144, 0.01567205972969532, -0.015773314982652664, 0.004618363454937935, 0.020352302119135857, -0.010665550827980042, -0.00509651331230998, 0.03363923728466034, -0.00569841917604208, -0.01992477849125862, -0.007239749189466238, 0.04752245545387268, -0.042932216078042984, -0.03899451345205307, -0.056072898209095, 0.0698436051607132, -0.0712386816740036, 0.015087028965353966, 0.010350534692406654, 0.009591120295226574, -0.04842250049114227, 0.024593770503997803, -0.02794644422829151, 0.0017593096708878875, -0.023491213098168373, -0.007611018139868975, -0.012510646134614944, -0.06669344753026962, -0.016785867512226105, 0.0016721176216378808, 0.01300567202270031, -0.027226407080888748, 0.013714458793401718, -0.028823988512158394, 0.023086192086338997, -0.014704509638249874, -0.027721432968974113, -0.037216924130916595, 0.018653463572263718, 0.028891492635011673, -0.04657740518450737, -0.017663411796092987, 0.03260418400168419, -0.04349474608898163, -0.031906649470329285, -0.03228916972875595, -0.036226872354745865, 0.0009851290378719568, -0.014479498378932476, -0.023401208221912384, -0.008809205144643784, -0.003738005645573139, 0.01829344592988491, 0.06174318864941597, -0.0018043119926005602, -0.027721432968974113, 0.0015455485554412007, 0.026483867317438126, 0.014445746317505836, -0.07033863663673401, 0.009478614665567875, -0.04770246520638466, -0.025313807651400566, -0.05485783517360687, 0.017089633271098137, 0.04869251698255539, -0.010418037883937359, -0.06628842651844025, 0.02104983665049076, 0.03919702395796776, 0.04515983164310455, 0.019643515348434448, 0.018630962818861008, -0.007864155806601048, 0.027518922463059425, 0.022804928943514824, -0.04351724684238434, -0.009304231032729149, 0.007042863871902227, -0.048062484711408615, 0.05206768959760666, 0.016493352130055428, 0.009450487792491913, 0.049322549253702164, 0.020532310009002686, 0.03046657331287861, 0.0013613203773275018, 0.025741329416632652, -0.01030553225427866, 0.038499489426612854, 0.029431520029902458, -0.04644240066409111, -0.033009205013513565, -0.023513713851571083, -0.006086564622819424, 0.044889818876981735, -0.010384286753833294, -0.050177592784166336, -0.021466108039021492, 0.031119108200073242, -0.002711390145123005, 0.030871594324707985, -0.023153696209192276, 0.03249168023467064, 0.02695639245212078, -0.0007348035578615963, 0.001063179923221469, 0.0002967340697068721, 0.03120911307632923, 0.014850767329335213, 0.039624545723199844, -0.0042555322870612144, 0.0221748948097229, 0.0006999971228651702, 0.01075555570423603, -0.0843343585729599, -0.00020620206487365067, -0.027226407080888748, -0.02495379000902176, 0.030736587941646576, -0.034156765788793564, -0.012746908701956272, 0.010316782630980015, 0.007701023016124964, -0.034066759049892426, 0.048242490738630295, 0.03433677554130554, 0.0037773826625198126, 0.012431892566382885, -0.008415434509515762, -0.0004507264238782227, 0.010367410257458687, -0.01845095306634903, 0.05409279465675354, -0.01941850408911705, 0.01238689012825489, -0.036339376121759415, -0.010406787507236004, -0.013703207485377789, -0.03260418400168419, 0.02008228749036789, -0.01737089827656746, 0.004744932521134615, -0.02580883353948593, -0.00553247332572937, 0.011402464471757412, 0.03541683033108711, 0.03123161382973194, 0.03550683334469795, -0.0756039023399353, -0.0324016734957695, 0.02182612754404545, 0.0204535573720932, -0.021241096779704094, 0.030961599200963974, 0.006834728177636862, 0.050177592784166336, -0.023086192086338997, 0.01061492320150137, 0.014344491064548492, 0.06286824494600296, -0.015368293970823288, -0.061113156378269196, 0.01743840053677559, -0.041559647768735886, -0.008184798061847687, -0.01112119946628809, 0.02212989330291748, 0.036159366369247437, 0.03341422602534294, -0.012960669584572315, 0.0072453743778169155, 0.009315481409430504, 0.007217247970402241, 0.005509972106665373, 0.02111734077334404, -0.00918047409504652, 0.031974151730537415, 0.02819395624101162, 0.021038586273789406, 0.013838214799761772, 0.005307461600750685, -0.05386778339743614, 0.07569391280412674, 0.00651408638805151, -0.02389623410999775, -0.056882940232753754, -0.003383612260222435, 0.019778521731495857, 0.025246303528547287, -0.0608881451189518, -0.0010216934606432915, -0.0808691754937172, -0.025426313281059265, 0.016695862635970116, 0.016482101753354073, -0.016875872388482094, -0.059043049812316895, -0.05746796727180481, 0.0006433926173485816, -0.035259321331977844, 0.0004296315601095557, -0.049187541007995605, -0.030894095078110695, -0.037396930158138275, 0.020329799503087997, -0.022872431203722954, -0.045924872159957886, 0.004233031067997217, -0.0011088853934779763, -0.011160576716065407, -0.018945978954434395, -0.026281356811523438, -0.013781961984932423, -0.02373872697353363, -0.03804946690797806, 0.02810395136475563, -0.04104211926460266, 0.003552370937541127, -0.018327197059988976, -0.06907857209444046, 0.04119962826371193, -0.020532310009002686, -0.028958996757864952, 0.049412552267313004, 0.05283273011445999, 0.012904416769742966, 0.003833635477349162, 0.05053761228919029, 0.011869363486766815, -0.01197061873972416, -0.0032204787712544203, -0.06552338600158691, 0.005225894972681999, -0.045879870653152466, -0.014817015267908573, -0.021702371537685394, 0.042797211557626724, -0.036249373108148575, 0.005459344480186701, -0.031006602570414543, -0.007723523769527674, -0.0031473501585423946, 0.0013711645733565092, 0.05701794475317001, -0.04014207422733307, -0.014997025020420551, 0.04533984139561653, -0.04502482712268829, 0.04401227459311485, 0.05323775112628937, -0.032941702753305435, -0.0356193408370018, -0.06448832899332047, -0.013320688158273697, 0.019688516855239868, -0.008747327141463757, -0.011059321463108063, -0.0062046954408288, -0.06070813536643982, 0.019846025854349136, 0.04981757327914238, -0.0011672477703541517, 0.05080762505531311, -0.03816197067499161, 0.018023431301116943, 0.02499879151582718, 0.023491213098168373, -0.021083589643239975, 0.025133797898888588, -0.008246676065027714, -0.00019301778229419142, -0.014220735058188438, -0.05949307233095169, -0.03384174779057503, 0.03651938587427139, -0.008252301253378391, -0.03136662021279335, -0.03591185435652733, -0.008539191447198391, -0.0020658879075199366, -0.025673827156424522, 0.012960669584572315, 0.011498093605041504, -0.0021910506766289473, -0.004981194622814655, 0.004998070653527975, -0.01401822455227375, -0.00946736428886652, 0.032041653990745544, -0.023288702592253685, 0.022849930450320244, 0.0031417247373610735, -0.0015314853517338634, -0.03971455246210098, -0.08028414845466614, 0.015368293970823288, 0.010598047636449337, -0.0019069735426455736, -0.011267457157373428, 0.0009077812428586185, 0.010429289191961288, -0.04869251698255539, 0.02490878663957119, -0.0014710135292261839, -0.019114738330245018, -0.0032457925844937563, 0.009472989477217197, -0.003203602973371744, 0.035034310072660446, 0.0010216934606432915, 0.0012038121931254864, 0.0019365062471479177, -0.01624584011733532, 0.009934263303875923, -0.010384286753833294, 0.010913063772022724, -0.005366527009755373, -0.0013324907049536705, 0.007807903457432985, -0.00781352911144495, 0.013579451479017735, -0.010069270618259907, 0.002795769367367029, 0.012769409455358982, 0.010311157442629337, -0.025606323033571243, 0.00814542081207037, 0.021432356908917427, 0.008094793185591698, -0.01891222782433033, 0.0013788993237540126, -0.021432356908917427, 0.003383612260222435, -0.0039995815604925156, 0.04032208397984505, -0.05593788996338844, 0.04855750873684883, -0.004410227760672569, 0.01345569547265768, -0.0100523941218853, 0.01303942408412695, 0.030804092064499855, 0.00759976776316762, 0.053507763892412186, 0.009000465273857117, -0.019801022484898567, -0.023266201838850975, 0.01469325926154852, -0.0206785686314106, -0.01771966554224491, 0.006182194221764803, -0.010631799697875977, 0.0005892491899430752, -0.017269643023610115, 0.0028463969938457012, 0.00727350078523159, 0.015683310106396675, 0.0402095764875412, 0.027766434475779533, 0.023176196962594986, -0.04353974759578705, 0.009298604913055897, -0.025673827156424522, -0.0028717108070850372, 0.02005978673696518, -0.013399442657828331, -0.05062761530280113, -0.025291306897997856, 0.02605634555220604, -0.02151111140847206, -0.027518922463059425, 0.004365225322544575, 0.008083542808890343, 0.01106494665145874, 0.00037478498416021466, -0.03312171250581741, -0.04405727609992027, 0.027608925476670265, -0.04540734738111496, -0.016673361882567406, 0.013208182528614998, 0.007807903457432985, -0.010704928077757359, -0.006232821848243475, -0.0047786845825612545, 7.660063420189545e-05, -0.006868479773402214, -0.0199922826141119, -0.013849465176463127, -0.04403477534651756, 0.017292143777012825, -0.03357173502445221, -0.0012227975530549884, 0.0013254591031000018, -0.022298652678728104, 0.013118177652359009, -0.01719088852405548, -0.012060622684657574, 0.005805300083011389, -0.004078335594385862, -0.009821757674217224, -0.00036423755227588117, 0.06160818412899971, -0.021882381290197372, 0.038341980427503586, -0.01771966554224491, 0.04556485265493393, 0.009771130047738552, -0.026573872193694115, 0.027766434475779533, 0.019407251849770546, -0.011723105795681477, 0.010069270618259907, 0.027383914217352867, -0.009759878739714622, -0.02495379000902176, 0.022759925574064255, 0.0067222220823168755, -0.005403091665357351, 0.019294746220111847, 0.00016708871407900006, 0.005141515750437975, -0.024211250245571136, 0.011543096043169498, -0.00031976262107491493, 0.01796717755496502, -0.0016903998330235481, -0.016898373141884804, 0.04621738940477371, -0.033054206520318985, -0.042819712311029434, 0.016650859266519547, -0.0496375635266304, -0.02155611291527748, -0.01193686667829752, -0.037329427897930145, -0.01249939575791359, -0.01353444904088974, -0.026506369933485985, 0.022444909438490868, -0.04101961851119995, 0.024166248738765717, -0.02479628100991249, -0.01939600147306919, 0.002299337647855282, -0.0054115294478833675, -0.00811166875064373, -0.002299337647855282, 0.0048293122090399265, -0.02281617932021618, 0.014828265644609928, 0.011981869116425514, 0.0007657426758669317, 0.03249168023467064, 0.010389911942183971, -0.006497210822999477, 0.002677638316527009, 0.042617201805114746, 0.023086192086338997, -0.010907438583672047, -0.005481845699250698, 0.0043202233500778675, 0.0013346001505851746, -0.01300567202270031, -0.022849930450320244, -0.05863802880048752, -0.03874700143933296, 0.028756486251950264, 0.00036212807754054666, 0.017820920795202255, 0.03921952471137047, -0.023333705961704254, -0.031029103323817253, 0.0027592049445956945, -0.05499283969402313, -0.0034483030904084444, -0.021466108039021492, -0.03375174477696419, 0.01741589978337288, -0.03330171853303909, 0.005906555335968733, -0.0009991922415792942, -0.056792933493852615, 0.012600651010870934, -0.0399845652282238, 0.0029982798732817173, 0.039534542709589005, -0.015503301285207272, 0.015604556538164616, -0.025628823786973953, 0.018000930547714233, -0.0021966758649796247, 0.01789967529475689, -0.03024156205356121, -0.0018591585103422403, -0.005650604609400034, -0.0172358900308609, 0.012184379622340202, -0.04770246520638466, -0.034269269555807114, 0.01675211451947689, -0.02598884329199791, -0.01199311949312687, -0.03663189336657524, -0.00732975360006094, -0.011363087221980095, 0.007217247970402241, 0.01822594180703163, 0.010091771371662617, 0.03341422602534294, -0.033054206520318985, -0.001291004242375493, -0.04945755377411842, 0.006840353365987539, -0.01199311949312687, 0.005771548021584749, -0.0048518129624426365, 0.006508461199700832, -0.01345569547265768, 0.010187401436269283, -0.013815714046359062, -0.008966713212430477, 0.009855508804321289, 0.014411994256079197, -0.007852905429899693, 0.03881450369954109, 0.020251046866178513, 0.013365690596401691, -0.030826592817902565, 0.0065984660759568214, 0.007498512510210276, -0.03996206447482109, -0.024571269750595093, 0.010603672824800014, 0.0140744773671031, -0.00024663383373990655, 0.01633584313094616, 0.006485959980636835, -0.04358475282788277, -0.006913482211530209, -0.020869828760623932, -0.04401227459311485, 0.01820344105362892, -0.02938651852309704, -0.034291770309209824, 0.024346258491277695, 0.006429707165807486, -0.049277544021606445, 0.00899484008550644, 0.011678103357553482, 0.005315899848937988, -0.002711390145123005, -0.014164481312036514, -0.0054368432611227036, -0.012353138066828251, -0.033931754529476166, -0.01882222294807434, -0.001246705069206655, 0.039399534463882446, -0.026596374809741974, 0.009894886054098606, 0.0053243376314640045, 0.0025426314678043127, -0.010463040322065353, 0.016459600999951363, 0.0021291724406182766, 0.05602789297699928, -0.012454393319785595, -0.0220623891800642, -0.011621850542724133, -0.02148861065506935, 0.002459658309817314, -0.028418967500329018, 0.02704639732837677, -0.03269419074058533, 0.048242490738630295, -0.01884472370147705, 0.002411843277513981, -0.01359070185571909, -0.003079846501350403, 0.02125234715640545, -0.03235667198896408, 0.02201738767325878, -0.02288368158042431, 0.01946350559592247, 0.01247689500451088, 0.03438177704811096, -0.0020110413897782564, -0.014873268082737923, 0.004947443027049303, 0.004725243896245956, -0.004112087655812502, 0.001483670435845852, 0.02931901440024376, -0.021961133927106857, 0.004944630432873964, -0.009360483847558498, -0.021679870784282684, -0.03773444890975952, 0.008764202706515789, 0.014828265644609928, 0.004649302456527948, 0.03602436184883118, -0.039624545723199844, -0.05004258453845978, -0.020262297242879868, 0.002047605812549591, 0.014265736564993858, -0.008387308567762375, 0.009759878739714622, -0.015424546785652637, 0.04099711775779724, -0.0076785217970609665, -0.010204277001321316, 0.003358298446983099, -0.0037773826625198126, 0.021466108039021492, -0.016605857759714127, 0.008522314950823784, 0.007014737464487553, 0.004868688993155956, -0.007284751161932945, 0.0030460949055850506, 0.005082449875771999, 0.020273547619581223, -0.03894951194524765, -0.014929520897567272, -0.024053743109107018, 0.03219916298985481, -0.012105625122785568, -0.0071947467513382435, 0.03150162845849991, 0.041537147015333176, 0.0039995815604925156, 0.001883066026493907, -0.004984007682651281, -0.039332032203674316, 0.017247140407562256, 0.011981869116425514, 0.021409856155514717, 0.04842250049114227, 0.017382148653268814, 0.0020335426088422537, 0.036181870847940445, 0.005048698280006647, -0.003009530482813716, 0.005014946684241295, -0.036271873861551285, -0.020926080644130707, 0.043854765594005585, 0.05292273312807083, 0.015548302792012691, 0.020374802872538567, -0.01741589978337288, 0.004691492300480604, 0.0038983263075351715, 0.029431520029902458, -0.011053696274757385, 0.0068628545850515366, -0.02391873486340046, 0.0031726639717817307, 0.035169318318367004, -0.04070460423827171, 0.014479498378932476, 0.009062343277037144, 0.003186727175489068, 0.0034989307168871164, -0.007864155806601048, -0.02497629076242447, 0.020622314885258675, 0.0075828917324543, -0.004691492300480604, 0.03591185435652733, -0.012251882813870907, -0.028486471623182297, -0.030534077435731888, 0.021061088889837265, 0.02277117595076561, -0.04041208699345589, 0.014805764891207218, 0.0280364491045475, 0.001071617822162807, 0.01569456048309803, 0.03483179956674576, 0.021567363291978836, 0.001012552296742797, -0.011779358610510826, -0.020914830267429352, 0.0034229892771691084, -0.019778521731495857, -0.0021755811758339405, -0.023221200332045555, 0.020734820514917374, 0.02598884329199791, -0.005552161950618029, 0.043742258101701736, 0.06934858113527298, 0.019936030730605125, -0.0013212400954216719, -0.004435541573911905, 0.02918400801718235, -0.009371734224259853, 0.017955927178263664, 0.005352464038878679, -0.01741589978337288, -0.00974300317466259, 0.025403812527656555, -0.001309989602304995, 0.005855927709490061, 0.005704044830054045, 0.010103021748363972, 0.040479592978954315, 0.00700348662212491, 0.005341213196516037, -0.022028638049960136, -0.0026298232842236757, -0.027743933722376823, 0.016369596123695374, 0.014985773712396622, 0.03253668174147606, 0.018484704196453094, 0.019249744713306427, 0.024638772010803223, 0.024391259998083115, 0.002769049257040024, -0.0360693633556366, 0.03912952169775963, 0.0388370081782341, -0.003240167396143079, -0.004694304894655943, -0.008235425688326359, 0.028666481375694275, -0.019452255219221115, -0.01519953552633524, 0.075828917324543, 0.023108694702386856, -0.01657210662961006, 0.014760762453079224, -0.004258344881236553, -0.0014365585520863533, 0.0021952695678919554, -0.018124686554074287, -0.008955462835729122, 0.029409019276499748, 0.018169688060879707, -0.012128126807510853, 0.020183542743325233, 0.018180938437581062, -0.011768108233809471, -0.007301627192646265, 0.004894002806395292, -0.008190423250198364, 0.0248187817633152, 0.007200371939688921, 0.0014302300987765193, -0.01675211451947689, -0.012589400634169579, 0.024661274626851082, 0.034201767295598984, 0.05107763782143593, 0.028486471623182297, 0.015919571742415428, 0.023176196962594986, 0.007408507633954287, -0.008252301253378391, -0.0004292799858376384, -0.005332775413990021, 0.020442305132746696, 0.025201302021741867, 0.0025834147818386555, -0.0018647838151082397, 0.012195629999041557, 0.03753193840384483, 0.0020321363117545843, -0.002698733238503337, -0.021882381290197372, -0.008359181694686413, -0.05404779314994812, -0.0032457925844937563, 0.020329799503087997, -0.0062890746630728245, -0.0039995815604925156, 0.028621478006243706, -0.004477731417864561, 0.0015975824790075421, 0.018045932054519653, 0.008359181694686413, 0.0008311367128044367, 0.019767271354794502, 0.03388674929738045, 0.028711482882499695, 0.014468247070908546, 0.012105625122785568, -0.0031754765659570694, -3.805860615102574e-05, 0.03141162171959877, 0.004964319057762623, 0.030826592817902565, 0.016560856252908707, -0.026213854551315308, -0.022894931957125664, 0.02125234715640545, -0.02017229236662388, 0.006654718890786171, -0.00622157147154212, 0.01075555570423603, -0.0337742455303669, -0.028958996757864952, 0.008016038686037064, 0.03235667198896408, 0.03134411945939064, 0.013838214799761772, -0.015098280273377895, 0.04797247797250748, -0.034201767295598984, 0.02828396111726761, -0.0005305352387949824, -0.03127661719918251, -0.022141143679618835, 0.002698733238503337, -0.025516318157315254, -0.03487680107355118, -0.01856345869600773, -0.013680706731975079, 0.026528870686888695, -0.009630497545003891, 0.04540734738111496, -0.012600651010870934, -0.025268806144595146, 0.024323755875229836, -0.0039236401207745075, 0.023063691332936287, -0.01244314294308424, 0.005425592884421349, 0.014997025020420551, 0.023288702592253685, 0.035034310072660446, -0.009112970903515816, -0.017674662172794342, -0.044889818876981735, -0.008865457959473133, -0.008196048438549042, 0.011070571839809418, 0.0157395638525486, 0.01608833111822605, 0.012004369869828224, -0.02929651364684105, -0.022624919191002846, -0.0025862273760139942, 0.01055867038667202, 0.03440427780151367, 0.010018642991781235, -0.0007636331720277667, -0.010851185768842697, -0.009304231032729149, 0.046059880405664444, 0.0031389121431857347, -0.009332356974482536, -0.010485542006790638, -0.008949837647378445, 0.012341887690126896, -0.016482101753354073, 0.010384286753833294, -0.004871501587331295, -0.009090469218790531, -0.007830404676496983, 0.01932849921286106, -0.00155961187556386, -0.011273082345724106, 0.007363505195826292, 0.0006004997994750738, 0.01935099996626377, -0.0011377150658518076, 0.006356578320264816, -0.0015919572906568646, -0.03471929207444191, 0.04331473633646965, 0.018642213195562363, -0.032941702753305435, 0.005434030666947365, 0.024481264874339104, -0.009765504859387875, -0.016785867512226105, -0.03208665922284126, -0.03703691437840462, 0.026551371440291405, 0.017573406919836998, -0.005254021380096674, -0.034089259803295135, 0.03318921476602554, 0.004117712844163179, -0.029679033905267715, -0.01053616963326931, -0.0206785686314106, 0.004005206748843193, 0.013556950725615025, 0.0037942584604024887, -0.000821995607111603, -0.0014260112075135112, -0.026371361687779427, 0.026281356811523438, 0.017573406919836998, 0.026483867317438126, 0.003901139134541154, 0.002037761500105262, 0.01580706611275673, -0.03327921777963638, -0.017449650913476944, -0.010800558142364025, 0.062238216400146484, 0.016650859266519547, -0.06034811586141586, -0.0054002790711820126, 0.042752210050821304, 0.0037801952566951513, 0.022456159815192223, -0.017100883647799492, 0.002967340871691704, 0.010187401436269283, -0.019159739837050438, 0.04295472055673599, 0.036294374614953995, 0.009636122733354568, 0.0027802998665720224, -0.003875825321301818, 0.033054206520318985, 0.011768108233809471, 0.018169688060879707, 0.026551371440291405, 0.007937285117805004, -0.029746536165475845, 0.01291566714644432, -0.035214319825172424, 0.0018633775180205703, -0.02805894985795021, 0.010266155004501343, 0.013129428029060364, -0.004832124803215265, 0.01050241757184267, -0.014344491064548492, -0.022006137296557426, -0.0066603440791368484, -0.00729037681594491, 0.028936494141817093, -0.022647419944405556, 0.0016482101054862142, 0.034246768802404404, 0.01783217117190361, 0.02477378025650978, -0.016628358513116837, -0.03550683334469795, 0.011109949089586735, 0.003695816034451127, -0.010114272125065327, 0.006575964856892824, -0.006958484649658203, -0.0006929654628038406, 0.003231729380786419, -0.027338912710547447, -0.024098744615912437, -0.0033245468512177467, -0.01514328271150589, -0.007785402238368988, -0.014119479805231094, 0.0113180847838521, 0.02828396111726761, -0.03465178981423378, -0.018180938437581062, -0.0434272438287735, 0.005102138500660658, 0.012848163954913616, -0.010879311710596085, 0.021364852786064148, -0.04644240066409111, 0.014051975682377815, 0.008916085585951805, 0.002724047051742673, -0.005861552897840738, -0.0021347978617995977, 0.019981032237410545, -0.058998048305511475, 0.010209902189671993, 0.018147187307476997, 0.01139683835208416, 0.03312171250581741, -0.03575434535741806, 0.0089610880240798, -0.01193686667829752, -0.03233417123556137, -0.01875471882522106, -0.023401208221912384, 0.022917434573173523, 0.00653096241876483, 0.007352254819124937, -0.009506741538643837, -0.018282193690538406, 0.0027887378819286823, 0.01576206460595131, 0.023198697715997696, -0.012645653448998928, 0.00019758833514060825, 0.021679870784282684, -0.058863040059804916, 0.021882381290197372, -0.005777173675596714, -0.005878428462892771, -0.006744723301380873, -0.00828605331480503, 0.003408926073461771, 0.003965829964727163, 0.012746908701956272, -0.011458717286586761, 0.006632217671722174, 0.001568049774505198, -0.0027521734591573477, -0.04538484290242195, -0.005822175648063421, -0.006890980992466211, 0.010440539568662643, -0.008511064574122429, -0.0013254591031000018, -0.0019154114415869117, 0.0021952695678919554, -0.008173547685146332, -0.036361876875162125, -0.009636122733354568, -0.018304696306586266, 0.026686377823352814, -0.0006395252421498299, -0.0005772954318672419, 0.01824844256043434, 0.014186982996761799, -0.005644978955388069, -0.017314644530415535, 0.014817015267908573, 0.0031670385506004095, -0.02610134892165661, -0.0024863784201443195, -0.011132449842989445, 0.002719827927649021, -0.002088389126583934, 0.005729358643293381, 0.004261157475411892, -0.007875407114624977, -0.026798885315656662, 0.00217698747292161, 0.004263970069587231, -0.0047280569560825825, -0.023243701085448265, 0.007149744313210249, 0.01615583524107933, 0.00406146002933383, -0.03370673954486847, 0.012218130752444267, 0.024458764120936394, -0.014186982996761799, -0.039264529943466187, 0.011599348857998848, 0.006930358242243528, -0.03035406768321991, 0.010091771371662617, 0.011925616301596165, 0.02585383504629135, 0.038229476660490036, 0.01932849921286106, 0.0036283123772591352, -0.0042189680971205235, 0.0250437930226326, 0.000377246062271297, -0.013444444164633751, 0.013095676898956299, 0.0100523941218853, -0.006345327943563461, 0.0037098792381584644, -0.0057068574242293835, 0.018709717318415642, 0.0022543352097272873, -0.0018085308838635683, 0.005369340069591999, -0.017089633271098137, 0.002854835009202361, 0.004576174076646566, 0.01191436592489481, -0.008066666312515736, 0.022782426327466965, 0.01246564369648695, 0.03755443915724754, -0.05544286593794823, -0.009028591215610504, 0.028711482882499695, 0.0038701999001204967, 0.011610600166022778, -0.0052483961917459965, -0.015840819105505943, -0.03681190311908722, -0.0007035129237920046, -0.010946815833449364, 0.02387373335659504, -0.00498682027682662, 0.007211622782051563, 0.010080520994961262, 0.029859041795134544, -0.015177033841609955, 0.0019576011691242456, -0.029003998264670372, 0.009630497545003891, 0.00323735480196774, 0.022298652678728104, 0.006255323067307472, -0.018574709072709084, -0.009472989477217197, -0.029971547424793243, -0.045002326369285583, -0.007971037179231644, -0.0443497896194458, 0.01465950720012188, -0.009630497545003891, 0.02499879151582718, -0.005102138500660658, 0.0016299280105158687, 0.010114272125065327, 0.001534298062324524, 0.024548768997192383, 0.0034820549190044403, -0.012510646134614944, 0.013399442657828331, 0.020161041989922523, 0.007543514482676983, -0.020881079137325287, -0.024368759244680405, 0.017483403906226158, 0.034989308565855026, -0.0035326825454831123, 0.00979925598949194, 0.028643980622291565, -0.027248907834291458, 0.021882381290197372, 0.02695639245212078, -0.019193490967154503, 0.030804092064499855, 0.004629614297300577, -0.003214853582903743, -0.026348860934376717, 0.00912422128021717, -0.006300325505435467, -0.004567735828459263, -0.016122082248330116, -0.015897070989012718, 0.004213342443108559, -0.003231729380786419, -0.008572942577302456, -0.02279367670416832, 0.0025285680312663317, 0.010918688960373402, 0.017573406919836998, -0.031884148716926575, -0.029544025659561157, 0.015638308599591255, -0.032964203506708145, -0.008713575080037117, -0.028958996757864952, -0.0052483961917459965, 0.0005952260689809918, 0.020757323130965233, -0.010209902189671993, -0.007971037179231644, -0.005220269784331322, -0.005369340069591999, 0.0007952754385769367, 0.016673361882567406, -0.022399907931685448, 0.019474755972623825, 0.02288368158042431, 0.001849314314313233, 0.02610134892165661, -0.017359646037220955, -0.01668461225926876, -0.027271408587694168, -0.008404184132814407, 0.013939470052719116, -0.010513667948544025, 0.026551371440291405, -0.032019153237342834, 0.015942074358463287, -0.013264435343444347, -0.018113436177372932, 0.010676801204681396, 0.01778716966509819, -0.007301627192646265, -0.010986192151904106, 0.025696327909827232, 0.019305996596813202, 0.0057827988639473915, -0.010749930515885353, 0.013995722867548466, -0.007386006414890289, -0.009259228594601154, -0.00471680611371994, -0.02394123747944832, 0.03161413222551346, -0.006997861433774233, 0.03984955698251724, 0.007431008853018284, -0.0011806078255176544, 0.03134411945939064, 0.007025987841188908, 0.005417154636234045, -0.007132868282496929, -0.021612366661429405, -0.02817145548760891, 0.0005811628070659935, 0.012555648572742939, 0.03318921476602554, -0.00449742004275322, 0.054812829941511154, 0.016279591247439384, 0.03287419676780701, -0.012791911140084267, -0.011554347351193428, -0.013129428029060364, 0.012308135628700256, 0.0114305904135108, -0.023041190579533577, -0.008077917620539665, 0.01604332961142063, -0.023243701085448265, -0.009923012927174568, 0.008106043562293053, 0.020487308502197266, -0.004072710406035185, -0.005639353767037392, 0.02706889808177948, -0.0496375635266304, 0.006086564622819424, -0.016392096877098083, 7.238167017931119e-05, -0.013444444164633751, -0.03028656542301178, -0.013950720429420471, -0.007757275830954313, -0.03575434535741806, 0.05940306931734085, -0.04574486240744591, -0.011076197028160095, 0.02695639245212078, 0.0057827988639473915, 0.0057574850507080555, -0.011813110671937466, -0.03820697218179703, -0.02603384479880333, -0.0249312873929739, -0.013669456355273724, 0.007189121562987566, -0.008916085585951805, -0.010080520994961262, 0.014592004008591175, -0.006452208384871483, -0.04621738940477371, 0.028756486251950264, 0.03316671401262283, 0.036294374614953995, -0.029814040288329124, 0.007127243094146252, 0.057782985270023346, -0.018675964325666428, 0.02821645699441433, -0.028463970869779587, 0.017179638147354126, 0.0013978846836835146, 0.0027901441790163517, 0.03809446841478348, -0.0036254997830837965, 0.03017405793070793, 0.008696699514985085, -0.036361876875162125, 0.0358443520963192, -0.011801859363913536, 0.001580706681124866, 0.027428917586803436, -0.007279125973582268, -0.032896701246500015, 0.02589883841574192, -0.013230683282017708, 0.017629660665988922, -0.05188767984509468, -0.006525337230414152, 0.004905253183096647, -0.023558717221021652, 0.023491213098168373, 0.0067109717056155205, -0.025628823786973953, -0.002639667596668005, -0.02594383992254734, 0.05229270085692406, -0.017145885154604912, -0.02118484489619732, -0.01668461225926876, 0.01675211451947689], [0.02706216834485531, 0.02815992757678032, 0.028875859454274178, -0.03190663084387779, -0.009295162744820118, 0.04181033372879028, -0.025892814621329308, 0.01853066496551037, 0.0243654977530241, 0.043122872710227966, -0.022671129554510117, 0.00035349061363376677, 0.00703998189419508, 0.01795792020857334, -0.03202595189213753, 0.030236126855015755, -0.023828549310564995, 0.010046890005469322, -0.009742619469761848, -0.009784381836652756, 0.03374418616294861, 0.05526982620358467, -0.019640356302261353, -0.033052120357751846, -0.020499473437666893, -0.005184529349207878, 0.04104667529463768, 0.006878897547721863, 0.09015949815511703, -0.05808581784367561, 0.03877956420183182, -0.0337919145822525, 0.011073056608438492, -0.033696457743644714, 0.020296625792980194, -0.029711110517382622, -0.00820336863398552, 0.04710821807384491, 0.033863507211208344, 0.0010492855217307806, 0.04448314011096954, 0.03782498836517334, -0.010422753170132637, -0.0103153632953763, -0.013554948382079601, 0.04252626374363899, 0.029591789469122887, -0.06338370591402054, -0.018960222601890564, 0.036130618304014206, 0.07249988615512848, 0.046750254929065704, -0.015320910140872002, 0.0025117225013673306, 0.012361731380224228, 0.02096482738852501, -0.017456769943237305, 0.03403055667877197, 0.034865811467170715, 0.0007979640504345298, -0.04183419793844223, -0.03274188190698624, -0.03388737142086029, 0.02682352438569069, 0.004743038676679134, 0.018972154706716537, 0.024377429857850075, 0.0385170541703701, -0.03147707134485245, -0.01308959349989891, -0.007075778674334288, 0.011663699522614479, 0.07192713767290115, -0.07522042095661163, -0.02189553715288639, -0.02784969098865986, -0.017623819410800934, -0.012504917569458485, 0.016907889395952225, 0.022981366142630577, -0.00015791485202498734, 0.01474816631525755, -0.00979631394147873, 0.03154866397380829, -0.0042687347158789635, -0.025463256984949112, -0.07612726092338562, 0.0014892843319103122, -0.002829416422173381, -0.007720116060227156, -0.05169017240405083, -0.02784969098865986, -3.6752026062458754e-05, 0.037323836237192154, 0.033290762454271317, 0.02469959855079651, 0.059947237372398376, 0.02216997742652893, -0.04906509444117546, 0.036440856754779816, -0.008352520875632763, -0.025415528565645218, -0.007821539416909218, 0.013877117075026035, 0.04978102445602417, -0.014533386565744877, -0.04255012795329094, 0.054219793528318405, -0.000879997736774385, 0.003964464645832777, 0.006711847148835659, -0.008113877847790718, 0.015213520266115665, 0.07059073448181152, -0.0397341363132, 0.03350554034113884, -0.010971632786095142, -0.038421597331762314, 0.0228143148124218, 0.0050741564482450485, -0.032121408730745316, -0.0090445876121521, 0.038970477879047394, -0.09956204891204834, -0.0026519254315644503, -0.01754029467701912, 0.003412601538002491, -0.005500731989741325, -0.044316090643405914, -0.01538057066500187, 0.03624994307756424, -0.06672471016645432, 0.06596105545759201, -0.022504078224301338, 0.01640673726797104, -7.93769140727818e-05, 0.0006223373929969966, -0.013829388655722141, 0.0013185051502659917, -0.019449442625045776, 0.020189236849546432, 0.000630913651548326, 0.004399988800287247, 0.003973413724452257, -0.021644961088895798, 0.028494028374552727, 0.022253502160310745, 0.022659197449684143, -0.01702721044421196, -0.012361731380224228, -0.017826667055487633, -0.035199910402297974, -0.01392484549432993, 0.004573005251586437, 0.02500983513891697, 0.017122669145464897, 0.01084634568542242, 0.037777259945869446, 0.024007532745599747, -0.01301800087094307, -0.044316090643405914, -0.023924006149172783, -0.010744921863079071, -0.020606862381100655, 0.060424525290727615, -0.013113458640873432, -0.03097592107951641, 0.005518630146980286, -0.03639312833547592, -0.036536313593387604, -0.0231961440294981, -0.03166798874735832, -0.00909828208386898, -0.005491782445460558, 0.0456286296248436, -0.01911534182727337, 0.04732299968600273, 0.0011149124475196004, -0.011896376498043537, -0.014294743537902832, -0.03768180310726166, -0.005208393558859825, -0.08576846122741699, -0.015082267113029957, -0.030379312112927437, 0.05598575621843338, 0.013531084172427654, 0.020129576325416565, 0.004441751632839441, 0.00892526563256979, -0.017838599160313606, -0.051928818225860596, -0.024818919599056244, 0.014879419468343258, -0.033052120357751846, 0.013125390745699406, 0.007732048165053129, 0.017110737040638924, 0.009175840765237808, 0.03696587309241295, 0.014115761034190655, -0.049876485019922256, 0.050449226051568985, 0.013674270361661911, -0.04228762164711952, -0.03319530561566353, 0.01898408681154251, 0.077845498919487, 0.01067332923412323, -0.01569080725312233, 0.0019031815463677049, -0.007111574988812208, -0.023375127464532852, 0.02775423415005207, -0.045008156448602676, 0.03751475363969803, 0.0029875177424401045, -0.006395644973963499, 0.013316305354237556, 0.030713412910699844, -0.06720200181007385, -0.02169269137084484, -0.027086032554507256, -0.017158465459942818, -0.0027608065865933895, -0.02343478798866272, 0.0424785353243351, 0.0001117709034588188, -0.0002983043377753347, -0.07770231366157532, 0.013077661395072937, 0.014807826839387417, -0.024675734341144562, -0.02370922826230526, 0.033839643001556396, 0.022623399272561073, 0.001561623183079064, -0.04488883540034294, 0.0005831849412061274, -0.03901820629835129, 0.004680394660681486, -0.02367343194782734, 0.005357545800507069, 0.0511174276471138, 0.003698973683640361, -0.012170816771686077, -0.021131878718733788, -0.0404977947473526, 0.05097424238920212, -0.012850950472056866, 0.028494028374552727, -0.030952056869864464, 0.0397341363132, -0.04448314011096954, 0.0073442524299025536, -0.012361731380224228, -0.0287088081240654, -0.02411492168903351, 0.026990575715899467, -0.02758718468248844, -0.012910610996186733, -0.03624994307756424, -0.03474648669362068, 0.014032235369086266, -0.04920828342437744, 0.02248021401464939, 0.008501673117280006, -0.007111574988812208, -0.006777474191039801, 0.03173958137631416, -0.04696503281593323, 0.03835000470280647, -0.014032235369086266, -0.010858277790248394, -0.0042985654436051846, 0.030999785289168358, -0.002753349021077156, -0.018542597070336342, 0.010034957900643349, 0.009939500130712986, -0.015714671462774277, 0.016454467549920082, -0.025988273322582245, -0.04605818912386894, -0.0024669768754392862, -0.005244189873337746, -0.013853252865374088, 0.0014818267663940787, -0.022348960861563683, -0.013232779689133167, 0.03641699254512787, 0.009324993006885052, 0.022014860063791275, -0.005414223298430443, 0.0629541426897049, 0.01764768362045288, -0.041476234793663025, -0.004668462555855513, -0.01360267773270607, -0.03426920250058174, -0.0050055463798344135, 0.051928818225860596, 0.06495875120162964, -0.0031113140285015106, -0.03224072977900505, 0.0550311803817749, -0.010834413580596447, 0.061044998466968536, -0.0006898287683725357, 0.005581274162977934, -0.025606444105505943, 0.06677243858575821, -0.04118986055254936, -0.03286120295524597, -0.011347496882081032, -0.036607906222343445, -0.06577013432979584, 0.001299115363508463, 0.020809710025787354, -0.01218274887651205, 0.021215403452515602, 0.038254547864198685, 0.03997277840971947, -0.024138785898685455, 0.001850978354923427, -0.008913333527743816, 0.046440016478300095, 0.053599320352077484, -0.029591789469122887, -0.05436297878623009, -0.04842075705528259, 0.006902762223035097, 0.013686202466487885, 0.03300439193844795, 0.019282391294836998, 0.008955095894634724, 0.019855136051774025, 0.024675734341144562, 0.024723462760448456, 0.0014706403017044067, 0.03570106253027916, 0.00526805454865098, -0.008728384971618652, 0.03193049505352974, -0.01490328460931778, 0.004734089598059654, 0.009981262497603893, 0.06696335226297379, -0.049351468682289124, 0.02213418111205101, 0.018136903643608093, 0.020105712115764618, -0.023900141939520836, 0.04185806214809418, -0.026704203337430954, -0.06314505636692047, 0.03641699254512787, 0.0014631827361881733, -0.04035460948944092, -0.03128615766763687, 0.011156581342220306, 0.02117960713803768, 0.007529200986027718, 0.052167460322380066, 0.0239836685359478, 0.011759156361222267, 0.011657733470201492, 0.03961481526494026, 0.007600794080644846, -0.048540081828832626, -0.0012185731902718544, 0.025582579895853996, 0.007541133556514978, -0.01801758073270321, -0.02090516686439514, -0.02515302039682865, 0.04550930857658386, 0.046105917543172836, -0.028422435745596886, 0.004280667286366224, -0.011944104917347431, 0.008328656665980816, -0.012564578093588352, -0.017146533355116844, 0.026203051209449768, 0.02162109687924385, -0.037467025220394135, -0.013781660236418247, -0.010852311737835407, -0.0030292803421616554, -0.043600160628557205, -0.00037716852966696024, -0.04732299968600273, 0.028040606528520584, 0.004191175568848848, -0.008101945742964745, 0.05684487149119377, 0.021489843726158142, 0.0039525325410068035, -0.04536612331867218, -0.01686016097664833, -0.04221602901816368, 0.00952187366783619, -0.044936563819646835, -0.025272343307733536, -0.00024982987088151276, -0.012033596634864807, 0.004746021702885628, -0.043122872710227966, 0.012230477295815945, 0.0302599910646677, -0.008024386130273342, 0.039423901587724686, 0.014497590251266956, 0.03498513251543045, -0.0015944365877658129, -0.010888108052313328, 0.006073476281017065, -0.007696251850575209, -0.0684429481625557, 0.048086658120155334, 0.02839857153594494, -0.01682436466217041, -0.02233702875673771, -0.04216830059885979, -0.00791699718683958, -0.009229536168277264, -0.04286036640405655, 0.006485136225819588, -0.053981151431798935, 0.0175044983625412, -0.04412517696619034, 0.030785007402300835, -0.012152918614447117, -0.05541301146149635, -0.012397527694702148, 0.012123087421059608, -0.00847780890762806, 0.009939500130712986, -0.004408937878906727, 0.0589926652610302, 0.02713376097381115, -0.016060704365372658, 0.007368116639554501, -0.009569603018462658, 0.004757953807711601, -0.03028385527431965, 0.050592415034770966, -0.03238391876220703, -0.005199444480240345, -0.011371361091732979, -0.010482413694262505, -0.061140455305576324, -0.010011092759668827, -0.004859377630054951, 0.010732989758253098, -0.024210378527641296, -0.04386266693472862, 0.018578393384814262, 0.021967129781842232, 0.007958759553730488, 0.05598575621843338, 0.058372192084789276, 0.02299329824745655, 0.02391207404434681, 0.03553401306271553, -0.01695561781525612, 0.0024237227626144886, 0.0002729484695009887, -0.03632153570652008, -0.008233199827373028, -0.023172279819846153, -0.006992253474891186, -0.008913333527743816, 0.04577181488275528, -0.0019330120412632823, -0.02052333764731884, -0.06519739329814911, 0.009641195647418499, 0.006789406295865774, 0.03820681944489479, -0.008984926156699657, -0.018113039433956146, -0.030617956072092056, 0.01723005808889866, -0.02418651431798935, 0.04663093388080597, -0.003639312693849206, -0.046344559639692307, -0.027706505730748177, -0.048874180763959885, -0.012218545190989971, 0.02806447073817253, -0.010911972261965275, 0.004480530973523855, 0.002602705266326666, -0.04806279391050339, 0.02185974083840847, 0.04402972012758255, 0.03679881989955902, 0.053360678255558014, -0.02603600174188614, 0.004185209516435862, -0.0030501617584377527, 0.024938242509961128, 0.007648522965610027, -0.0023461636155843735, -0.05622439831495285, -0.02744399756193161, -0.0037884649354964495, -0.010023025795817375, 0.009319026954472065, 0.022862043231725693, 0.019604559987783432, -0.01675277017056942, -0.015857858583331108, -0.02306489087641239, 0.005399308167397976, -0.012540713883936405, 0.0048892078921198845, -0.004197142086923122, -0.037085194140672684, -0.016740838065743446, 0.022456349804997444, -1.9319866623845883e-05, 0.010738955810666084, 0.010977598838508129, -0.006693948991596699, -0.0061689335852861404, -0.012373663485050201, -0.03090432845056057, -0.02617918699979782, -0.044626325368881226, -0.023697296157479286, -0.010798616334795952, 0.008316724561154842, 0.0005716256564483047, 0.03940003365278244, 0.02418651431798935, -0.014676572754979134, 0.03228846192359924, 0.02367343194782734, 0.004414903931319714, 0.007720116060227156, 0.021955197677016258, 0.008883503265678883, 0.0184710044413805, 0.04577181488275528, 0.016764702275395393, -0.002944263629615307, -0.011186412535607815, 0.023756956681609154, -0.04402972012758255, -0.011657733470201492, -0.007529200986027718, 0.029377009719610214, 0.028828129172325134, -0.021979061886668205, -0.00584079883992672, -0.006956456694751978, 0.005059241317212582, 0.001052268547937274, 0.012731628492474556, 0.02594054490327835, 0.02885199524462223, 0.02713376097381115, -0.0029159248806536198, -0.02570190094411373, -0.016872093081474304, 0.016180027276277542, 0.0008419639780186117, 0.03233619034290314, 0.01737324334681034, -0.05183336138725281, 0.05316976457834244, 0.019640356302261353, 0.00822126679122448, -0.05126061663031578, 0.014223149977624416, 0.017397107556462288, 0.008471842855215073, 0.054458439350128174, -0.014533386565744877, 0.007541133556514978, -0.017277786508202553, -0.004555107094347477, -0.008066149428486824, -0.01678856834769249, -0.025916680693626404, 0.007893132045865059, 0.010601735673844814, 0.0018778257071971893, 0.0024654853623360395, -0.0009366755839437246, 0.009169874712824821, 0.043528567999601364, 0.004262768663465977, -0.010023025795817375, 0.009360789321362972, 0.0033678559120744467, 0.021119946613907814, 0.0001669572084210813, 0.018494868651032448, -0.020296625792980194, -0.04550930857658386, -0.01603684015572071, 0.02956792525947094, 0.02271885797381401, -0.007057880517095327, 0.02894745208323002, 0.010190076194703579, 0.016967549920082092, 0.014724301174283028, -0.02847016416490078, -0.04264558479189873, 0.006693948991596699, 0.0017883344553411007, -0.020201168954372406, -0.012445256114006042, 0.009366756305098534, -0.022014860063791275, -0.01720619387924671, 0.002481892006471753, 0.01308959349989891, -0.014056099578738213, -0.014712369069457054, 0.004062904976308346, -0.06009042263031006, 0.05923130735754967, -0.008829807862639427, -0.008149674162268639, 0.03228846192359924, 0.017898259684443474, -0.017253922298550606, -0.03443625196814537, 0.0009381670970469713, 0.044626325368881226, -0.02894745208323002, 0.002878636820241809, 0.02839857153594494, 0.040306881070137024, 0.003630363615229726, 0.02751559019088745, -0.009038620628416538, 0.04221602901816368, 0.028517894446849823, -0.034102149307727814, 0.026918983086943626, -0.0025833153631538153, -0.0032545002177357674, 0.025415528565645218, 0.029758838936686516, 0.013185051269829273, -0.004910089075565338, 0.027396269142627716, 0.021704623475670815, -0.0009500992600806057, 0.002898026490584016, -0.0027429081965237856, -0.00513978349044919, -0.03414987772703171, 0.009867907501757145, -0.019198866561055183, 0.03591584041714668, 0.04763323441147804, 0.009766483679413795, 0.011556309647858143, 0.011043226346373558, -0.03114297240972519, -0.01277935691177845, -0.016884025186300278, -0.028088334947824478, -0.021406318992376328, -0.04235921427607536, -0.01726585440337658, -0.034937404096126556, -0.02127506397664547, 0.030021347105503082, -0.04842075705528259, 0.03868410363793373, -0.047299135476350784, -0.034937404096126556, -0.013733930885791779, -0.016633449122309685, -0.005089071579277515, -0.02213418111205101, 0.013853252865374088, -0.009635229595005512, 0.0037795158568769693, -0.0013707083417102695, -0.006037679500877857, 0.012063426896929741, 0.005972052458673716, -0.005482833366841078, 0.035653334110975266, 0.05884947627782822, -0.02316034771502018, -0.03183503821492195, -0.030474770814180374, -0.10605315119028091, 0.008728384971618652, 0.02768264152109623, -0.011496649123728275, -0.04128531739115715, -0.01682436466217041, -0.02768264152109623, -0.027801962569355965, 0.008263030089437962, 0.06624742597341537, 0.014485658146440983, -0.021191539242863655, -0.03701360151171684, -0.03183503821492195, -0.021286996081471443, -0.0007431506528519094, -0.006479170173406601, 0.01168159767985344, -0.014270879328250885, 0.012481053359806538, -0.0029114503413438797, -0.025129156187176704, 0.00014439794176723808, -0.02610759437084198, 0.007863301783800125, 0.04033074527978897, -0.01631128042936325, -0.001616809400729835, 0.003311177948489785, -0.011741258203983307, 0.009754551574587822, 0.05479253828525543, -0.017695412039756775, 0.020738117396831512, 0.009247434325516224, -0.02539166435599327, 0.005333681125193834, -0.04102281108498573, -0.024126853793859482, -0.023625703528523445, -0.024007532745599747, 0.03601129725575447, -0.05087878555059433, 0.01200973242521286, 0.000416880298871547, -0.024484818801283836, -0.059422221034765244, 0.0287088081240654, 0.002532603684812784, -0.03348167613148689, 0.019855136051774025, -0.021883605048060417, 0.008561334572732449, -0.03551014885306358, -0.020893234759569168, 0.0022626384161412716, 0.014318607747554779, -0.013041865080595016, 0.0440535843372345, -0.009396586567163467, -0.033863507211208344, 0.015082267113029957, -0.02469959855079651, 0.008024386130273342, 0.038326140493154526, 0.003150093602016568, -0.01419928576797247, -0.04978102445602417, 0.002274570520967245, 0.01785053126513958, -0.023041026666760445, 0.0003482702886685729, 0.022933635860681534, 0.04412517696619034, -0.007439709734171629, 0.009605399332940578, -0.0003486431669443846, -0.025510985404253006, 0.004271717742085457, -0.017397107556462288, -0.03796817362308502, 0.015273181721568108, -0.02973497472703457, -0.019067613407969475, 0.019473306834697723, 0.003970430698245764, -0.01038099080324173, 0.024962106719613075, -0.001436335383914411, 0.014986809343099594, 0.00733232032507658, -0.025654172524809837, -0.03701360151171684, -0.0016734872478991747, -0.040760304778814316, -0.028995180502533913, -0.027778098359704018, 0.023100687190890312, -0.03663177043199539, -0.009557670913636684, 0.009378688409924507, -0.012397527694702148, -0.017349379137158394, 0.0005048800958320498, -0.023768888786435127, 0.0912095308303833, -0.010894074104726315, -0.027467861771583557, -0.016108432784676552, -0.011627902276813984, -0.0015586401568725705, -0.03367259353399277, 0.05274020507931709, 0.000444473436800763, 0.01970001682639122, 0.0176834799349308, -0.006938558537513018, -0.02425810694694519, 0.028350843116641045, 0.012982204556465149, -0.008245131932199001, 0.010995497927069664, -0.05412433668971062, 0.018518732860684395, 0.011299767531454563, 0.004677411634474993, -0.02484278380870819, -0.017719276249408722, -0.013495287857949734, 0.011317665688693523, -0.016299348324537277, 0.007165269926190376, -0.0004828801320400089, 0.027491725981235504, 0.00748743861913681, -0.01774314045906067, 0.016693109646439552, -0.005706561729311943, 0.0013968100538477302, 0.027539456263184547, -0.0020806726533919573, 0.00834058877080679, -0.021800080314278603, -0.03121456503868103, -0.04978102445602417, -0.022623399272561073, -0.0025311121717095375, 0.01935398392379284, 0.01977161131799221, -0.04892190918326378, 0.0013893523719161749, 0.012075359001755714, -0.0061003235168755054, -0.015547621063888073, -0.037777259945869446, 0.007099642883986235, -0.02579735778272152, 0.02446095459163189, -0.018578393384814262, -0.01891249418258667, 0.003335042390972376, -0.021967129781842232, 0.009265332482755184, 0.030069075524806976, -0.036989737302064896, 0.01929432339966297, -0.010697193443775177, 0.04240694269537926, -0.0028398572467267513, 0.019413646310567856, 0.019127273932099342, 0.000523896946106106, -0.02350638061761856, -0.01962842419743538, -0.00526805454865098, -0.03596356883645058, -0.026561018079519272, -0.0005212867981754243, 0.025343935936689377, 0.02942473813891411, -0.015559554100036621, -0.00453124288469553, 0.034651029855012894, 0.007302490063011646, -0.027730369940400124, 0.03228846192359924, -0.018924426287412643, -0.012815154157578945, 0.05412433668971062, 0.0479673370718956, 0.02706216834485531, 0.012612306512892246, -0.0007304727332666516, 0.0036721262149512768, -0.008400250226259232, -0.015595350414514542, 0.0032395850867033005, -0.0005671511171385646, 0.014258947223424911, 0.0170988030731678, 0.040068238973617554, -0.02539166435599327, -0.007582895923405886, 0.022086452692747116, -0.0023759938776493073, 0.003123246366158128, -0.025773493573069572, -0.019055679440498352, -0.010738955810666084, 0.0075888619758188725, -0.01777893863618374, 0.05927903577685356, -0.03135775029659271, -0.016776636242866516, -0.034483980387449265, 0.008018420077860355, 0.010028991848230362, -0.03885115683078766, 0.015714671462774277, 0.029186096042394638, -0.02001025341451168, 0.020666522905230522, 0.02391207404434681, 0.01962842419743538, -0.019723882898688316, -0.027157625183463097, -0.028899723663926125, -0.0019404696067795157, -0.012087291106581688, 0.01911534182727337, -0.0026041967794299126, -0.005232257768511772, 0.03498513251543045, 0.03672722727060318, 0.030952056869864464, 0.021919401362538338, 0.023577973246574402, -0.017516430467367172, 0.014032235369086266, -0.007845403626561165, 0.008245131932199001, -0.013340169563889503, 0.022563738748431206, 0.002653416944667697, -0.012827086262404919, 0.03202595189213753, 0.02251601032912731, 0.0004862360656261444, 0.008304792456328869, 0.006049611605703831, 0.011216242797672749, 0.034173741936683655, 5.765663445345126e-05, 0.005676731467247009, -0.029902026057243347, -0.027491725981235504, 0.0023237906862050295, 0.01774314045906067, -0.010100584477186203, 0.013459491543471813, -0.013936778530478477, 0.04686957597732544, -0.004086769185960293, 0.023864345625042915, -0.03491353988647461, 0.025057563558220863, 0.04078416898846626, -0.007081744726747274, 0.016872093081474304, 0.007433743681758642, -0.004483513999730349, -0.02394787222146988, -0.021835876628756523, 0.033290762454271317, 0.037156786769628525, -0.012850950472056866, -0.01931818760931492, 0.028756536543369293, -0.00662235589697957, -0.018697714433073997, 0.00496676703915, 0.011120785027742386, 0.02980656921863556, 0.03772953152656555, 0.0025445357896387577, -0.005978018511086702, 0.023243872448801994, 0.021406318992376328, 3.7084121231600875e-06, 0.00011270310642430559, 0.0055335452780127525, 0.008847706019878387, 0.011365395039319992, 0.01925852708518505, 0.0007629133178852499, -0.016705041751265526, 0.030546363443136215, 0.025916680693626404, -0.018661918118596077, 0.0214182510972023, -0.006670084781944752, 0.016836296766996384, -0.022193841636180878, 0.003445415059104562, 0.0015914535615593195, 0.00411063339561224, -0.004665479529649019, 0.01439020037651062, 0.027109896764159203, -0.013936778530478477, 0.01918693445622921, 0.019521035254001617, 0.0063300179317593575, -0.03827841207385063, -0.03632153570652008, 0.008794011548161507, -0.04822984337806702, 0.010834413580596447, -0.027300812304019928, 0.008710485883057117, 0.007553065661340952, 0.002574366284534335, 0.02391207404434681, 0.01154437754303217, 0.01935398392379284, 0.007266693282872438, 0.009378688409924507, 0.014843623153865337, -0.008913333527743816, 0.010685261338949203, -0.011383293196558952, -0.01777893863618374, 0.002592264674603939, 0.010231838561594486, 0.027778098359704018, 0.008280928246676922, -0.0006846084143035114, -0.012671967968344688, -0.03138161450624466, -0.019103409722447395, 0.025367800146341324, -0.009754551574587822, -0.00030054160743020475, -0.015237385407090187, 0.047776419669389725, -0.02169269137084484, -0.0031978224869817495, 0.03651244938373566, 0.03610675409436226, 0.00249680713750422, 0.021990995854139328, 0.006544796749949455, 0.014211217872798443, -0.03584424778819084, -0.0400921031832695, 0.0226114671677351, -0.023864345625042915, -0.026059865951538086, 0.00168541946914047, -0.03131002187728882, -0.01363847404718399, -0.011371361091732979, -0.00882384181022644, 0.00175999547354877, -0.0011156582040712237, 0.025510985404253006, 0.017313582822680473, -0.044936563819646835, -0.002528129145503044, 0.025129156187176704, -0.0012170816771686077, -0.012791289947926998, 0.025964409112930298, 0.03484194353222847, 0.01770734414458275, 0.02134665846824646, -0.009360789321362972, -0.03469875827431679, -0.025892814621329308, -0.014151557348668575, 0.01689595729112625, -0.0025415527634322643, 0.019473306834697723, 0.01189041044563055, -0.007153337821364403, -0.0330282561480999, -0.021012557670474052, 0.0038570750039070845, 0.018769308924674988, -0.001349827041849494, -0.016645381227135658, -0.026704203337430954, 0.026322374120354652, 0.017838599160313606, 0.021394386887550354, -2.7826199584524147e-05, 0.02248021401464939, 0.011574207805097103, 0.012170816771686077, -0.007356184534728527, -0.0016183009138330817, 0.035772655159235, -0.0131731191650033, 0.03765793889760971, -0.035748790949583054, 0.022766586393117905, -0.017492566257715225, 0.0003547957167029381, 0.0006391170318238437, 0.01938978210091591, 0.030952056869864464, 0.003266432322561741, 0.022074520587921143, -0.0077260821126401424, -0.007415845524519682, 0.053122036159038544, 0.0015041995793581009, 0.0015019623097032309, 0.014760098420083523, -0.01647833175957203, -0.004432802088558674, -0.013304373249411583, 0.003209754591807723, -0.040211424231529236, -0.0025251461192965508, 0.024795055389404297, 0.017802802845835686, -0.031095242127776146, 0.04369561746716499, 0.004489480052143335, 0.03391123563051224, -0.0032395850867033005, -0.05364704877138138, -0.020535269752144814, 0.0018539613811299205, 0.0035945670679211617, -0.0022551806177943945, -0.004587920382618904, -0.0424785353243351, 0.011108852922916412, 0.008209334686398506, -0.0009262349340133369, 0.0037198548670858145, 0.017397107556462288, 0.018113039433956146, -0.0350089967250824, 0.002504264935851097, -0.009492043405771255, 0.06400417536497116, 0.03508058935403824, -0.01678856834769249, -0.00937272235751152, 0.0463922880589962, 0.019007951021194458, 0.008018420077860355, -0.0088417399674654, 0.046654798090457916, 0.04104667529463768, -0.0015250808792188764, 0.05135607346892357, 0.031238429248332977, 0.010524176992475986, 0.013805524446070194, -0.010524176992475986, 0.005945205222815275, 0.015213520266115665, -0.0034871776588261127, 0.019783543422818184, 0.02727694809436798, -0.03548628091812134, -0.010028991848230362, 0.013805524446070194, -0.025678036734461784, -0.04787187650799751, 0.00602276436984539, 0.014247014187276363, -0.017146533355116844, 0.028422435745596886, -0.028446299955248833, 0.009283230639994144, 0.012397527694702148, 0.008233199827373028, -0.01392484549432993, -0.0059631033800542355, -0.014056099578738213, -0.02039208449423313, 0.03462716564536095, 0.027181489393115044, -0.03601129725575447, 0.002965145045891404, -0.009975296445190907, 0.00011316920426907018, 0.015905587002635002, -0.0034812113735824823, -0.01128783542662859, -0.01344755943864584, 0.0354146882891655, -0.04424449801445007, -0.005086088553071022, 0.0029964670538902283, -0.02782582677900791, -0.020940963178873062, -0.021644961088895798, 0.007815573364496231, 0.02823152206838131, 0.004295582417398691, -0.027945149689912796, -0.0228143148124218, 0.016359008848667145, -0.011502615176141262, -0.03827841207385063, 0.012695832177996635, -0.026226917281746864, 0.010023025795817375, -0.028326978906989098, -0.021847808733582497, -0.012135020457208157, 0.010500311851501465, 0.003716871840879321, -0.011574207805097103, 0.012170816771686077, -0.009671025909483433, -0.03761021047830582, 0.02253987453877926, 0.0037526683881878853, 0.014414064586162567, -0.021847808733582497, -0.025463256984949112, 0.008125809952616692, -0.022527942433953285, 0.014270879328250885, 0.04309900850057602, 0.008268996141850948, 0.015082267113029957, -0.009199704974889755, 0.02885199524462223, -0.01305379718542099, 0.046893440186977386, -0.008137742057442665, -0.0002749993000179529, 0.017110737040638924, -0.02185974083840847, -0.0004653547366615385, 0.011466817930340767, -0.015810130164027214, -0.02508142776787281, 0.007147371768951416, -0.008782079443335533, 0.01689595729112625, -0.003749685361981392, -0.010488379746675491, 0.016633449122309685, -0.013387897983193398, 0.010369058698415756, -0.0028383657336235046, -0.029997482895851135, 0.015416367910802364, 0.006902762223035097, 0.015452164225280285, -0.011956037022173405, 0.03687041625380516, -0.023661499843001366, -0.010732989758253098, -0.024818919599056244, -0.013006068766117096, -0.008626961149275303, 0.040688708424568176, -0.007666421122848988, 0.012660035863518715, -0.018447140231728554, -0.010804582387208939, -0.009432382881641388, -0.00911618024110794, 0.02418651431798935, -0.010667362250387669, 0.01069122739136219, 0.011383293196558952, 0.005813951138406992, 0.02854175865650177, -0.011747224256396294, 0.01658572070300579, -0.018148835748434067, 0.012886746786534786, -0.017182329669594765, -0.00030259243794716895, -0.006616389844566584, 0.003818295430392027, -0.045819543302059174, -0.025749629363417625, 0.016657313331961632, -0.025821221992373466, -0.03391123563051224, -0.020917098969221115, -0.0009627772378735244, -0.012314002960920334, -0.015977179631590843, 0.019723882898688316, 0.00017562667198944837, -0.037538617849349976, 0.012075359001755714, -0.01173529215157032, -0.005479850340634584, 0.026704203337430954, 0.03930457681417465, 0.01329244114458561, -0.004346293862909079, 0.02885199524462223, 0.01770734414458275, -0.011693529784679413, 0.0085494015365839, 0.01214695256203413, -0.009629263542592525, 0.001334911910817027, -0.01647833175957203, 0.04064098000526428, 0.021716555580496788, 0.007660455070436001, -0.00675957603380084, -0.01812497153878212, -0.01058980356901884, 0.039280712604522705, 0.002144808182492852, -0.02682352438569069, -0.0068371351808309555, -6.189815030666068e-05, 0.03918525576591492, -0.044316090643405914, 0.011419089511036873, 0.02610759437084198, 0.008543435484170914, 0.0011797936167567968, 0.0060167983174324036, -0.0008009471348486841, -0.026226917281746864, 0.007153337821364403, -0.0006100323516875505, 0.007010151632130146, 0.011108852922916412, 0.016728905960917473, 0.006019781343638897, 0.001956876367330551, -0.04362402483820915, 6.036001650500111e-05, -0.05526982620358467, 0.009641195647418499, -0.0009672517771832645, 0.03426920250058174, -0.012170816771686077, -0.004039040766656399, 0.00038966003921814263, -0.04278877377510071, -0.03319530561566353, 0.005727442912757397, -0.03992504999041557, -0.005220325663685799, 0.021537572145462036, 0.011604038067162037, -0.006252458784729242, 0.008555368520319462, 0.01675277017056942, -0.012069392949342728, 0.027563320472836494, 0.014795894734561443, -0.01634707674384117, 0.008895435370504856, 0.012278205715119839, -0.01329244114458561, -0.026465559378266335, -0.02477119117975235, -0.007785743102431297, 0.03178730979561806, -0.02617918699979782, 0.0007226422312669456, -0.0014989792834967375, -0.010577871464192867, 0.023410923779010773, 0.04524679854512215, -0.022838179022073746, -0.006610423792153597, -0.021883605048060417, -0.006157001480460167, -0.007654489018023014, -0.012373663485050201, -0.013423694297671318, -0.004379107616841793, -0.024138785898685455, -0.0013714540982618928, -0.012361731380224228, -0.012111155316233635, 0.018614189699292183, 0.0031530766282230616, -0.010906006209552288, -0.007672387175261974, 0.0310713779181242, -0.011574207805097103, -0.023458652198314667, 0.013220847584307194, -0.03166798874735832, 0.020296625792980194, -0.016299348324537277, -0.001537758857011795, -0.0019106392282992601, 0.01823236048221588, -0.026465559378266335, 0.007541133556514978, -0.006341950036585331, -0.01616809517145157, 0.009426416829228401, 0.005775171797722578, -0.03610675409436226, 0.012624239549040794, 0.0011171497171744704, -0.0030695514287799597, 0.012994136661291122, 0.003982362803071737, -0.019473306834697723, -0.02570190094411373, -0.010929870419204235, -0.007905065082013607, 0.029544061049818993, -0.010959700681269169, -0.02100062370300293, -0.03042704053223133, -0.02189553715288639, -0.013841320760548115, 0.013495287857949734, 0.010625599883496761, 0.0030934158712625504, -0.002735450631007552, 0.02956792525947094, 0.02110801450908184, -0.010941802524030209, 0.0017241990426555276, -0.00016481314378324896, -0.038731832057237625, 0.018315885215997696, 0.003609482431784272, -0.00818547047674656, 0.03426920250058174, -0.012504917569458485, 0.03388737142086029, 0.016836296766996384, -0.01682436466217041, 0.03162026032805443, -0.022599535062909126, 0.03391123563051224, 0.001151454751379788, -0.03274188190698624, -0.0077499463222920895, -0.011747224256396294, -0.011967969126999378, 0.020582998171448708, -0.006902762223035097, 0.02973497472703457, -0.000672676251269877, 0.02131086029112339, -0.0027145694475620985, -0.006401611026376486, 0.009575569070875645, 0.008090013638138771, -0.03121456503868103, -0.007833471521735191, 0.01058980356901884, 0.041237588971853256, -0.012135020457208157, -0.019521035254001617, 0.012994136661291122, 0.04978102445602417, 0.014056099578738213, 0.008603096939623356, 0.028494028374552727, -0.036202214658260345, -0.01623968780040741, -0.003970430698245764, -0.011574207805097103, -0.0025027731899172068, -0.005512664094567299, 0.006300187204033136, 0.0006920660380274057, 0.030379312112927437, 0.013435626402497292, -0.055794842541217804, -0.02792128548026085, 0.01407996378839016, 0.007815573364496231, -0.0008561334107071161, -0.0015161316841840744, -0.01997445710003376, 0.011896376498043537, -0.02035628631711006, -0.01144295372068882, 0.019879000261425972, -0.0006864728056825697, 0.028637215495109558, -0.0025862986221909523, 0.02515302039682865, -0.0027235185261815786, -0.003266432322561741, 0.033863507211208344, 0.01850680075585842, -0.01723005808889866, -0.020714253187179565, 0.022050656378269196, -0.004895173944532871, 0.004277684260159731, 0.0069982195273041725, 0.02035628631711006, -0.009128112345933914, 0.009593467228114605, 0.04369561746716499, 0.006276322994381189, 0.02021310105919838, -0.008585198782384396, -0.04135691002011299, -0.013817456550896168, 0.005306833889335394, 0.02279045060276985, -0.007201066240668297, 0.022599535062909126, 0.005888527259230614, 0.011258005164563656, -0.029520196840167046, 0.002966636558994651, -0.04772869125008583, 9.648280683904886e-05, 0.028112199157476425, -0.03128615766763687, 0.01640673726797104, 0.0006462017190642655, -0.051308345049619675, 0.00337083893828094, -0.039113663136959076, 0.049112822860479355, -0.028446299955248833, 0.00998722855001688, -0.00249233259819448, 0.019544899463653564], [0.008091151714324951, 0.022529928013682365, 0.03028419427573681, -0.031773582100868225, -0.01904287189245224, 0.042128365486860275, -0.030638810247182846, 0.009397320449352264, 0.025674188509583473, 0.04366503283381462, -0.020626822486519814, 0.006022559478878975, 0.007210522424429655, 0.007653792388737202, -0.04352318495512009, 0.030142348259687424, -0.034894201904535294, 0.016099559143185616, -0.01817997358739376, -0.011501374654471874, 0.029054859653115273, 0.06534387916326523, -0.032364606857299805, -0.03366486355662346, -0.026950804516673088, -0.0026477985084056854, 0.03919687122106552, -0.006625406444072723, 0.07598235458135605, -0.060899361968040466, 0.029882296919822693, -0.03482327610254288, 0.006282610818743706, -0.04390144348144531, 0.020827772095799446, -0.029835013672709465, -0.01879464089870453, 0.04586365073919296, 0.038818616420030594, -0.0013445850927382708, 0.03832215443253517, 0.03437409549951553, -0.016099559143185616, -0.014539250172674656, -0.008640806190669537, 0.046383753418922424, 0.021773412823677063, -0.07418563961982727, -0.018617331981658936, 0.024846751242876053, 0.06392541527748108, 0.04423241689801216, -0.01314442791044712, 0.00867035798728466, 0.019693000242114067, 0.012955299578607082, -0.013510864228010178, 0.03451594337821007, 0.04482344537973404, 0.002265108749270439, -0.039693333208560944, -0.037352871149778366, -0.033995840698480606, 0.020615002140402794, -0.0032654209062457085, 0.01625322736799717, 0.025106802582740784, 0.03425589203834534, -0.02657254785299301, 0.0006039551226422191, -0.005236494354903698, 0.018298178911209106, 0.08860668540000916, -0.06941014528274536, -0.015792226418852806, -0.03666727989912033, -0.021749772131443024, -0.013971865177154541, 0.02832198701798916, 0.024799467995762825, -0.009704654105007648, 0.006861816626042128, -0.010071090422570705, 0.040473490953445435, 0.01037842407822609, -0.020650463178753853, -0.07834646105766296, -0.006170316133648157, -4.2226067307638004e-05, 0.004113543778657913, -0.058440692722797394, -0.03394855931401253, -0.005694539751857519, 0.03591076657176018, 0.03364122286438942, 0.027683677151799202, 0.04810955002903938, 0.01457471214234829, -0.029267629608511925, 0.03494148328900337, -0.018380921334028244, -0.03730558976531029, -0.009681012481451035, 0.01873553730547428, 0.03898410499095917, -0.010496629402041435, -0.039315078407526016, 0.05456355959177017, -0.003481145715340972, 0.01374727487564087, 0.009769666939973831, 0.0010431616101413965, 0.004745942074805498, 0.06799168139696121, -0.037920255213975906, 0.035721637308597565, -0.02041405253112316, -0.03593440726399422, 0.023440107703208923, 0.021076003089547157, -0.03813302516937256, -0.005112378392368555, 0.03758928179740906, -0.09465879201889038, -0.0037027804646641016, -0.019172897562384605, -0.016170483082532883, 0.008150254376232624, -0.0447998046875, -0.027305420488119125, 0.04283759370446205, -0.06307434290647507, 0.05688038468360901, -0.02718721516430378, 0.01568584144115448, 0.0011561954161152244, -0.001320944051258266, -0.02016582153737545, -0.0017996755195781589, -0.014657455496490002, 0.024444853886961937, 0.009834679774940014, 0.007695164065808058, 0.006117123644798994, -0.026170650497078896, 0.03884225711226463, 0.026265215128660202, 0.02633613720536232, -0.024492135271430016, -0.012837094254791737, -0.024728545919060707, -0.04531990736722946, 0.0009271727176383138, 0.003365895478054881, 0.028156498447060585, 0.011607758700847626, 0.009231832809746265, 0.03839307650923729, 0.02263631299138069, -0.0007007357198745012, -0.05796787142753601, -0.027092650532722473, -0.00910771731287241, -0.02100507915019989, 0.07167968153953552, -0.0022311247885227203, -0.03728194534778595, -0.007464663591235876, -0.04742395877838135, -0.029551321640610695, -0.03229368478059769, -0.03200999274849892, -0.0029580872505903244, -0.009746026247739792, 0.04931524395942688, -0.03555614873766899, 0.04936252906918526, -0.006548572797328234, -0.004875968210399151, -0.009976525790989399, -0.05347607284784317, -0.01440922450274229, -0.08482411503791809, -0.003445683978497982, -0.029314910992980003, 0.056171152740716934, 0.007701074238866568, 0.02829834446310997, 0.011536835692822933, 0.015827687457203865, 0.0030910682398825884, -0.04541447013616562, -0.020260386168956757, 0.00936776865273714, -0.03482327610254288, 0.011542745865881443, 0.009397320449352264, 0.008971781469881535, 0.0063003418035805225, 0.022258054465055466, 0.032364606857299805, -0.05243586376309395, 0.0481804758310318, 0.02186797745525837, -0.040757182985544205, -0.015508533455431461, 0.014078249223530293, 0.061230339109897614, 0.033759430050849915, -0.007553317584097385, 0.006394905969500542, -0.004444518592208624, -0.03787297382950783, 0.022589029744267464, -0.049457091838121414, 0.03886589780449867, 0.0035018315538764, -0.0011643220204859972, -0.002019832842051983, 0.033712148666381836, -0.051348377019166946, -0.02321551740169525, -0.021761592477560043, -0.01735253632068634, -0.005469949450343847, -0.03841671720147133, 0.03198635205626488, 0.008717639371752739, -0.005062141455709934, -0.09097078442573547, 0.006199866998940706, 0.02607608586549759, -0.027825525030493736, -0.008818114176392555, 0.025012237951159477, 0.024539416655898094, -0.009822859428822994, -0.055603764951229095, -0.008457588031888008, -0.03054424561560154, 0.004586365073919296, -0.03678548336029053, 0.00799658801406622, 0.04626554995775223, -0.008847665973007679, -0.013097145594656467, -0.021182388067245483, -0.0419628769159317, 0.06463465094566345, -0.005449263844639063, 0.02435028925538063, -0.026501625776290894, 0.05040273442864418, -0.050544578582048416, 0.012624324299395084, -0.004875968210399151, -0.027305420488119125, -0.024279365316033363, 0.026383420452475548, -0.03215183690190315, -0.008871306665241718, -0.03217547759413719, -0.03562707453966141, 0.018629152327775955, -0.03661999851465225, 0.021667029708623886, 0.01510663516819477, 0.008020228706300259, -0.005865937098860741, 0.037943895906209946, -0.03283742815256119, 0.04014251381158829, -0.013711812905967236, -0.005366520024836063, -0.0029832059517502785, 0.036005329340696335, 0.007405560929328203, -0.014539250172674656, 0.002065637381747365, 0.013522684574127197, -0.03241188824176788, 0.018570050597190857, -0.02716357447206974, -0.05773146077990532, -0.0035491136368364096, -0.005295597016811371, -0.003516607219353318, 0.0023153459187597036, -0.04009523242712021, -0.0038889539428055286, 0.03281378746032715, 0.010679847560822964, 0.018652794882655144, -0.013085325248539448, 0.06335803121328354, 0.0021025764290243387, -0.03165537491440773, -0.00909589696675539, -0.0067199706099927425, -0.0280146524310112, 0.008510780520737171, 0.03917323052883148, 0.0704030692577362, -0.005582244601100683, -0.03699825331568718, 0.04983534663915634, -0.017163407057523727, 0.06000100448727608, -0.0007565138512291014, 0.014302839525043964, -0.0319390669465065, 0.0643036738038063, -0.03439773991703987, -0.048014987260103226, -0.011855989694595337, -0.02517772652208805, -0.05409073829650879, 0.01426737755537033, 0.016737869009375572, -0.016406893730163574, 0.0288893710821867, 0.03747107461094856, 0.037423793226480484, -0.024019313976168633, 0.007523766253143549, -0.01600499637424946, 0.04706934466958046, 0.04484708607196808, -0.0387004092335701, -0.03995338827371597, -0.042412057518959045, 0.0032447350677102804, 0.008989511989057064, 0.02131241373717785, 0.023203697055578232, 0.020236745476722717, 0.019669359549880028, 0.02274269610643387, 0.024031134322285652, 0.004583409987390041, 0.04177374765276909, -0.008067511022090912, -0.00980512797832489, 0.03359394147992134, -0.002418775577098131, -0.002869433257728815, 0.020579541102051735, 0.05881895124912262, -0.048014987260103226, 0.022352619096636772, 0.027872806414961815, 0.030402399599552155, -0.020272206515073776, 0.052010323852300644, -0.0156976617872715, -0.06042654067277908, 0.035414304584264755, 0.0013401524629443884, -0.042435698211193085, -0.030095065012574196, 0.018700076267123222, 0.037991177290678024, 0.009196370840072632, 0.057022228837013245, 0.034610506147146225, 0.014787481166422367, 0.009556896984577179, 0.051395658403635025, 0.003965787123888731, -0.05555648356676102, 0.003575709881260991, 0.028511114418506622, 0.0021099643781781197, -0.02354649268090725, -0.009279115125536919, -0.03364122286438942, 0.050828274339437485, 0.04922068119049072, -0.020496796816587448, -0.0026803049258887768, -0.00911362748593092, 0.008747191168367863, -0.001789332483895123, -0.004539082758128643, 0.02974044904112816, 0.018853742629289627, -0.03312112018465996, -0.010922168381512165, 0.003572754794731736, -0.008191626518964767, -0.03394855931401253, -0.010011987760663033, -0.05286140367388725, 0.015437610447406769, 0.013971865177154541, -0.004465204663574696, 0.07451660931110382, 0.027518190443515778, -0.004234704189002514, -0.04056805372238159, -0.018156331032514572, -0.04345226287841797, 0.01653691940009594, -0.059811875224113464, -0.017281612381339073, -0.010006077587604523, -0.016312329098582268, -0.0004617394006345421, -0.04541447013616562, -0.007127778604626656, 0.02829834446310997, 0.0020508617162704468, 0.03524881601333618, 0.009627820923924446, 0.02300274930894375, 0.00259017338976264, -0.0003027163620572537, 0.014196454547345638, -0.003942146431654692, -0.06288520991802216, 0.05163206905126572, 0.03158445283770561, -0.010762590914964676, -0.016040457412600517, -0.03756564110517502, -0.0012418943224474788, -0.014338301494717598, -0.04931524395942688, -0.0003357768873684108, -0.04959893599152565, 0.015366687439382076, -0.042979441583156586, 0.02969316765666008, -0.020626822486519814, -0.06028469651937485, -0.018416384235024452, 0.009586448781192303, -0.008770831860601902, 0.0038712231907993555, -0.012269708327949047, 0.05314509570598602, 0.0207686685025692, -0.013806377537548542, 0.019161077216267586, -0.022837260738015175, 0.00786065123975277, -0.016974279657006264, 0.05943361669778824, -0.030331475660204887, -0.0018824192229658365, -0.004547948483377695, -0.005266045685857534, -0.05569833144545555, 0.002265108749270439, -0.012423375621438026, 0.0054197125136852264, -0.01206875964999199, -0.031017066910862923, 0.016926996409893036, 0.005271955858916044, 0.02244718372821808, 0.06127762049436569, 0.0769752785563469, 0.024492135271430016, 0.01360542792826891, 0.0308515802025795, -0.013723633252084255, 0.0008835844928398728, -0.004979397635906935, -0.045012570917606354, -0.011737785302102566, -0.022021643817424774, -0.004010114353150129, -0.011335887014865875, 0.041371848434209824, 0.003218138823285699, -0.01625322736799717, -0.07059219479560852, 0.006329893134534359, -0.0022060060873627663, 0.040780823677778244, -0.002423208439722657, -0.02744726650416851, -0.03496512398123741, -0.0064126369543373585, -0.017860818654298782, 0.04210472106933594, -0.004175601527094841, -0.038818616420030594, -0.029527680948376656, -0.039906103163957596, -0.012376093305647373, 0.032057274132966995, -0.010727129876613617, -0.002268063835799694, 0.0027852121274918318, -0.057022228837013245, 0.04198651760816574, 0.03997702896595001, 0.030757015570998192, 0.04108815640211105, -0.032931990921497345, -0.0031738118268549442, -0.011720053851604462, 0.013510864228010178, -0.005452218931168318, 0.010567552410066128, -0.060379259288311005, -0.026217931881546974, 0.002114397007972002, -0.016867894679307938, 0.012860734947025776, 0.024728545919060707, 0.020236745476722717, -0.01933838427066803, -0.022789979353547096, -0.019161077216267586, -0.0037618831265717745, -0.020284026861190796, 0.013794557191431522, 0.010597104206681252, -0.02265995368361473, -0.009208192117512226, 0.01793174259364605, -0.0007081235526129603, 0.012033297680318356, 0.007133688777685165, -0.02075684815645218, -0.00166373944375664, -0.01656056009232998, -0.03082793764770031, -0.026477983221411705, -0.04983534663915634, -0.012127862311899662, -0.0020419962238520384, 0.004725256469100714, 0.0036791395395994186, 0.0330265574157238, 0.018617331981658936, -0.013463581912219524, 0.02912578172981739, 0.018014485016465187, 0.005165570881217718, 0.0064008161425590515, 0.022553568705916405, 0.002664051717147231, 0.018534589558839798, 0.044705238193273544, 0.01500025112181902, -0.011607758700847626, -0.013416299596428871, 0.02377108298242092, -0.036832768470048904, -0.006891367956995964, 0.0036880047991871834, 0.031206196174025536, 0.03241188824176788, -0.024208443239331245, 0.002480833325535059, -0.005558603443205357, 0.0048316409811377525, 0.0031265297438949347, 0.00825072918087244, 0.0271399337798357, 0.03751835599541664, 0.026501625776290894, -0.0012027387274429202, -0.032931990921497345, -0.026738036423921585, 0.01271888893097639, 0.008759011514484882, 0.020827772095799446, 0.01849912665784359, -0.048345960676670074, 0.046076420694589615, 0.021430619060993195, 0.012269708327949047, -0.05688038468360901, 0.019172897562384605, 0.02016582153737545, 0.005059186369180679, 0.060095567256212234, -0.019255641847848892, 0.012636144645512104, -0.005984142422676086, 0.00852260086685419, -0.015768585726618767, -0.022518107667565346, -0.020863233134150505, 0.011430450715124607, 0.013049863278865814, 0.010910348035395145, 0.005765462759882212, 0.0015071174129843712, 0.014054608531296253, 0.047494884580373764, 0.012234247289597988, -0.0031147091649472713, 0.008611255325376987, 0.007210522424429655, 0.017234330996870995, -0.00895405001938343, 0.010478898882865906, -0.007127778604626656, -0.04016615450382233, -0.010035628452897072, 0.045792728662490845, 0.01593407243490219, -0.0072400737553834915, 0.034303173422813416, 0.015484892763197422, 0.014787481166422367, 0.004914384800940752, -0.02269541472196579, -0.03680912405252457, 0.01796720363199711, -0.008889037184417248, -0.031182553619146347, -0.012127862311899662, 0.019421128556132317, -0.02881844900548458, -0.01821543462574482, 0.014787481166422367, 0.008859486319124699, 0.001957775093615055, -0.013132607564330101, -0.006223508156836033, -0.049977194517850876, 0.058960795402526855, -0.00119313457980752, -0.012458836659789085, 0.028960295021533966, 0.020851412788033485, -0.018877383321523666, -0.032908350229263306, -0.0014044265262782574, 0.030662450939416885, -0.031182553619146347, 0.00601960439234972, 0.01848730631172657, 0.05059186369180679, 0.003212228650227189, 0.028983935713768005, -0.00468388432636857, 0.024208443239331245, 0.02349921129643917, -0.028747525066137314, 0.019763924181461334, 0.00498235272243619, -0.004072172101587057, 0.02770731970667839, 0.02633613720536232, 0.018392741680145264, -0.01273070927709341, 0.022813620045781136, 0.018629152327775955, 0.004193332511931658, -0.0007661179988645017, -0.000222743081394583, -0.008806293830275536, -0.031513530761003494, 0.013853659853339195, -0.03468143194913864, 0.04120636358857155, 0.054705407470464706, 0.005688629578799009, 0.004536127671599388, 0.01626504771411419, -0.03184450417757034, -0.01573312282562256, -0.03132440149784088, -0.020284026861190796, -0.012553401291370392, -0.03981154039502144, -0.0021616790909320116, -0.03716374188661575, -0.020674103870987892, 0.02517772652208805, -0.051679350435733795, 0.04144277423620224, -0.0571167953312397, -0.033475738018751144, -0.019515693187713623, -0.019208358600735664, -0.007015483919531107, -0.023345543071627617, 0.016619663685560226, -0.012695247307419777, 0.0027394075877964497, -0.004069217015057802, -0.008386665023863316, 0.015744943171739578, 0.0009759324020706117, -0.003132440149784088, 0.0336885079741478, 0.04543811082839966, -0.025154083967208862, -0.010023808106780052, -0.035461585968732834, -0.10250762104988098, 0.020106719806790352, 0.023392826318740845, -0.007949305698275566, -0.05796787142753601, -0.021785235032439232, -0.02011854015290737, -0.024232083931565285, 0.01565038040280342, 0.06922101229429245, 0.017317073419690132, -0.023723801597952843, -0.03699825331568718, -0.023026390001177788, -0.020023975521326065, -0.011412720195949078, 0.011016733013093472, 0.012813452631235123, -0.010041538625955582, 0.0124824782833457, -0.002862045541405678, -0.025343213230371475, 0.014716558158397675, -0.024444853886961937, 0.008936319500207901, 0.0170570220798254, -0.026147009804844856, -0.004595230333507061, 0.005112378392368555, -0.011276784352958202, 0.0069327400997281075, 0.04839324206113815, -0.020875053480267525, 0.010124282911419868, 0.008829934522509575, -0.029527680948376656, 0.0007502341759391129, -0.03342845290899277, -0.03224640339612961, -0.02974044904112816, -0.023038210347294807, 0.03276650607585907, -0.0469747819006443, 0.009816949255764484, -0.007175060920417309, -0.029504038393497467, -0.044445186853408813, 0.02886573038995266, -0.006489470135420561, -0.02749454975128174, 0.027825525030493736, -0.020012155175209045, 0.008298011496663094, -0.02102871984243393, -0.014752019196748734, 0.0002694711147341877, 0.011123117059469223, -0.0033333890605717897, 0.035674355924129486, -0.006075751502066851, -0.0255086999386549, 0.014669275842607021, -0.01821543462574482, 0.009403230622410774, 0.04427969828248024, 0.013499043881893158, -0.013404479250311852, -0.04685657471418381, 0.008818114176392555, 0.030662450939416885, -0.0232746209949255, -0.0057831937447190285, 0.028132857754826546, 0.04702206328511238, 0.009302755817770958, 0.0124824782833457, -0.0035343379713594913, -0.026738036423921585, -0.0031619914807379246, -0.022281697019934654, -0.043263133615255356, 0.021962542086839676, -0.027612755075097084, -0.023664698004722595, 0.009592358954250813, 0.0017509157769382, -0.010969450697302818, 0.023912928998470306, -0.010053359903395176, 0.00954507663846016, 0.004240614827722311, -0.02183251641690731, -0.03957512974739075, -0.007299176417291164, -0.04219928756356239, -0.027660036459565163, -0.019539333879947662, 0.006223508156836033, -0.023191876709461212, -0.00825072918087244, 0.018818281590938568, -0.02018946222960949, -0.016300508752465248, -0.0013482790673151612, -0.016395073384046555, 0.09338217228651047, -0.004672063980251551, -0.02969316765666008, -0.010892617516219616, -0.008794473484158516, -0.012955299578607082, -0.025697829201817513, 0.04695114120841026, -0.00978739745914936, 0.012541580945253372, 0.02711629308760166, -0.006377174984663725, -0.030686091631650925, 0.015780406072735786, 0.014657455496490002, -0.0004166736325714737, 0.008605345152318478, -0.05125381052494049, 0.027636395767331123, 0.009698743931949139, 0.0026152918580919504, -0.03305019810795784, -0.019941231235861778, -0.005845251493155956, 0.014515609480440617, -0.018085408955812454, 0.00908998679369688, -0.0035520687233656645, 0.030662450939416885, 0.00742920208722353, -0.0046336473897099495, 0.016052277758717537, -0.0009714997140690684, -0.006773162633180618, 0.026170650497078896, -0.005115333944559097, 0.02014218084514141, -0.024031134322285652, -0.020047616213560104, -0.04054441303014755, -0.029574962332844734, -0.003253600560128689, 0.014125531539320946, 0.02241172268986702, -0.04815683513879776, 0.008073421195149422, 0.007458753418177366, -0.0006915008998475969, -0.030686091631650925, -0.02945675700902939, 0.004010114353150129, -0.02853475511074066, 0.022541748359799385, -0.016572380438447, -0.021749772131443024, -0.006016648840159178, -0.01791992038488388, 0.00869990885257721, 0.029504038393497467, -0.036312662065029144, 0.019208358600735664, -0.006849996279925108, 0.035721637308597565, -0.006613585632294416, 0.02241172268986702, 0.02265995368361473, -0.002044951543211937, -0.026785317808389664, -0.023995673283934593, -0.0015233706217259169, -0.023392826318740845, -0.008581703528761864, 0.0033718058839440346, 0.030638810247182846, 0.01791992038488388, -0.01652509905397892, -0.004586365073919296, 0.030402399599552155, 0.0037234665360301733, -0.019716640934348106, 0.03132440149784088, -0.018830101937055588, -0.01444468554109335, 0.052814122289419174, 0.04193923622369766, 0.03227004408836365, 0.01190327201038599, 0.010006077587604523, -0.0005651690298691392, 0.002718721516430378, -0.016300508752465248, -0.0014783048536628485, -0.0024926539044827223, 0.007169150747358799, 0.011129027232527733, 0.03451594337821007, -0.02609972655773163, -0.000660472025629133, 0.017163407057523727, 0.002845792332664132, -0.0023434197064489126, -0.028936654329299927, -0.015591276809573174, -0.007931574247777462, 0.011359527707099915, -0.009137268178164959, 0.06141946464776993, -0.02940947562456131, 0.006459918804466724, -0.04319221153855324, 0.003058561822399497, 0.007972946390509605, -0.021418796852231026, 0.011306335218250751, 0.03354666009545326, -0.010815783403813839, 0.02379472367465496, 0.016016816720366478, 0.028156498447060585, -0.024232083931565285, -0.03536702319979668, -0.04146641492843628, -0.0031885874923318624, -0.006826355122029781, 0.004994173534214497, -0.0040042041800916195, -0.013014402240514755, 0.04000066965818405, 0.03198635205626488, 0.037707485258579254, 0.010987181216478348, 0.033995840698480606, -0.010112462565302849, 0.004279031418263912, -0.0038239408750087023, 0.008315742015838623, -0.005369475111365318, 0.0280146524310112, -0.0025753977242857218, -0.013640889897942543, 0.030071424320340157, 4.6335549996001646e-05, 0.002966952743008733, 0.010768501088023186, -0.009196370840072632, 0.0073523689061403275, 0.02574511058628559, 0.003040831070393324, 0.0059368605725467205, -0.02659618854522705, -0.02574511058628559, 0.000588810071349144, 0.016075918450951576, 0.001852867892012, 0.016867894679307938, -0.020827772095799446, 0.06137218326330185, 0.011826438829302788, 0.024799467995762825, -0.03893681988120079, 0.021076003089547157, 0.04515441879630089, -0.0018366145668551326, 0.029007576406002045, -0.00040965518564917147, 0.007777907885611057, -0.023416467010974884, -0.018688255921006203, 0.03496512398123741, 0.0454617515206337, -0.019728461280465126, -0.005564513616263866, 0.021371515467762947, -0.004737076815217733, -0.01289619691669941, 0.010390244424343109, 0.0016578291542828083, 0.022210773080587387, 0.037400152534246445, -0.005532007198780775, -0.011595938354730606, 0.02524864859879017, 0.0249649565666914, 0.0020154002122581005, 0.00979921780526638, 0.006448098458349705, 0.015413968823850155, 0.009397320449352264, 0.021678850054740906, 0.0032595107331871986, -0.022624490782618523, 0.02910214103758335, 0.02770731970667839, -0.020638642832636833, 0.025106802582740784, -0.0021572464611381292, 0.024468494579195976, -0.020343130454421043, -0.002841359470039606, -0.0016386207425966859, -0.0027142888866364956, -7.618700328748673e-05, 0.02072138711810112, 0.03342845290899277, -0.01789627969264984, 0.012104221619665623, 0.011394989676773548, 0.0015928162029013038, -0.03305019810795784, -0.03335753083229065, 0.013865480199456215, -0.048606012016534805, 0.007204612251371145, -0.029031218960881233, 0.008930409327149391, 0.0067199706099927425, -0.008900857530534267, 0.029362192377448082, 0.00594277074560523, 0.03680912405252457, 0.017837177962064743, 0.010845335200428963, 0.014799301512539387, 0.0006519760354422033, 0.01768351159989834, -0.006779073271900415, -0.018546409904956818, 0.0059900530613958836, 0.011152668856084347, 0.022009823471307755, 0.008741280995309353, 0.0026019937358796597, -0.013428120873868465, -0.02827470377087593, -0.023451928049325943, 0.018404562026262283, -0.0028960295021533966, 0.0055733793415129185, -0.018357280641794205, 0.038771335035562515, -0.014527429826557636, -0.0018824192229658365, 0.04231749102473259, 0.0353197380900383, 0.008617165498435497, 0.009740115143358707, 0.00894222967326641, 0.005526097025722265, -0.039622411131858826, -0.039338719099760056, 0.021170565858483315, -0.02827470377087593, -0.02270723506808281, -0.009982435964047909, -0.025674188509583473, -0.012943478301167488, -0.00041039398638531566, -0.009562807157635689, -0.0009781487751752138, -0.007098227273672819, 0.017766254022717476, 0.010957630351185799, -0.03922051191329956, 0.002897507045418024, 0.01760076731443405, 0.003953966777771711, -0.010827603749930859, 0.026525266468524933, 0.04227020964026451, 0.02357013337314129, 0.019527513533830643, -0.0013763527385890484, -0.028676602989435196, -0.025059521198272705, -0.010419796220958233, 0.01794356293976307, -0.003445683978497982, 0.017979023978114128, 0.015402148477733135, 0.005053275730460882, -0.030615169554948807, -0.007937485352158546, 0.00741738174110651, 0.017175227403640747, -0.009409140795469284, -0.015780406072735786, -0.023416467010974884, 0.019468409940600395, 0.024468494579195976, 0.032624658197164536, 0.0008754578884691, 0.012565221637487411, 0.018664615228772163, 0.01443286519497633, -0.0021542913746088743, -0.0035993510391563177, 0.02377108298242092, -0.014633814804255962, 0.02858203835785389, -0.028652960434556007, 0.02489403262734413, -0.008894947357475758, 0.006341713480651379, 0.010691667906939983, 0.024468494579195976, 0.02239990234375, 0.010053359903395176, 0.01652509905397892, -0.003484100801870227, -0.01594589278101921, 0.05191576108336449, 0.00024010449124034494, -0.0020538168027997017, 0.011595938354730606, -0.019728461280465126, 0.0024158204905688763, -0.01626504771411419, 0.006536752451211214, -0.03614717721939087, -0.0036111713852733374, 0.016418714076280594, 0.019113793969154358, -0.027518190443515778, 0.03617081791162491, 0.004793224390596151, 0.02524864859879017, -0.0006534535787068307, -0.04482344537973404, -0.02209256775677204, -0.004326313268393278, 0.0008606822229921818, -0.010272039100527763, -0.00824481900781393, -0.03777841106057167, 0.01457471214234829, 0.016950637102127075, -0.004013069439679384, -0.0009404707816429436, 0.020083077251911163, 0.01764804869890213, -0.02661983110010624, 0.0027482728473842144, -0.003767793532460928, 0.06392541527748108, 0.04257754236459732, -0.004051486030220985, -0.0063476236537098885, 0.04865329712629318, 0.009681012481451035, 0.001715454156510532, 0.003120619570836425, 0.05584017559885979, 0.03524881601333618, -0.011560477316379547, 0.0415373370051384, 0.04037892445921898, 0.010762590914964676, 0.010337051935493946, 0.005848206579685211, 0.024303006008267403, 0.015874970704317093, -0.011672771535813808, 0.032624658197164536, 0.02442121133208275, -0.042766671627759933, -0.003138350322842598, 0.014030967839062214, -0.013085325248539448, -0.04420877620577812, -0.003079247660934925, 0.018097229301929474, -0.004329268354922533, 0.022600850090384483, -0.024752186611294746, 0.008623075671494007, 0.014988429844379425, 0.005721135996282101, -0.015792226418852806, -0.008167984895408154, -0.012033297680318356, -0.012293349951505661, 0.02297910675406456, 0.024303006008267403, -0.04089902713894844, 0.006956381257623434, -0.004805044736713171, -0.004305627662688494, -0.004967577289789915, 0.006442188285291195, -0.014113711193203926, -0.00615849532186985, 0.03113527223467827, -0.0374947153031826, -0.004533172585070133, -6.18269041297026e-05, -0.026667112484574318, -0.020910514518618584, -0.01845184527337551, 0.0064126369543373585, 0.02297910675406456, -0.00783110037446022, -0.02690352313220501, -0.019007408991456032, 0.02543777786195278, -0.010183385573327541, -0.03810938447713852, 0.014657455496490002, -0.025957880541682243, 0.01524848211556673, -0.031229836866259575, -0.018416384235024452, -0.010738950222730637, 0.01762440800666809, -0.0025251603219658136, -0.014598352834582329, 0.004923250060528517, -0.002633022842928767, -0.030638810247182846, 0.010065180249512196, -0.005508366506546736, 0.011761425994336605, -0.027801882475614548, -0.02938583306968212, 0.0016208899905905128, -0.01794356293976307, 0.018971947953104973, 0.04565088078379631, 0.004873013123869896, 0.008605345152318478, -0.009078165516257286, 0.03397220000624657, -0.007370099425315857, 0.04288487881422043, -0.0011665384517982602, -0.01458653248846531, 0.020804129540920258, -0.02605244517326355, -0.00046543331700377166, 0.011253142729401588, -0.0190192312002182, -0.02995321899652481, 0.017813537269830704, -0.01398368552327156, 0.007541497237980366, -0.00782519020140171, -0.008546242490410805, 0.020000334829092026, 0.00098332017660141, 0.01957479491829872, 0.0023641057778149843, -0.01988212950527668, 0.023463748395442963, 0.012695247307419777, 0.011329976841807365, -0.011347707360982895, 0.03300291672348976, -0.02328644134104252, -0.025603264570236206, -0.018830101937055588, -0.019125614315271378, -0.006489470135420561, 0.03841671720147133, -0.006524931639432907, -0.00046986600500531495, -0.01906651258468628, -0.005662033334374428, -0.002208961173892021, 0.0006154062575660646, 0.03241188824176788, -0.013191710226237774, 0.026383420452475548, 0.001827749190852046, 0.01487022452056408, 0.037660203874111176, -0.012872555293142796, 0.014610173180699348, -0.009568718262016773, 0.021950721740722656, -0.012506118975579739, -0.0014627904165536165, -0.006454008631408215, 0.004471114836633205, -0.041348207741975784, -0.02098143845796585, 0.020295847207307816, -0.024799467995762825, -0.033192045986652374, -0.024539416655898094, -0.009060434997081757, -0.01650145836174488, -0.013038042932748795, 0.00531923770904541, -0.0036052612122148275, -0.039031386375427246, 0.01359360758215189, -0.0077719977125525475, -0.004107633605599403, 0.024232083931565285, 0.034303173422813416, 0.003144260495901108, -0.00884175579994917, 0.016099559143185616, 0.005892533343285322, -0.020248565822839737, 0.0031619914807379246, 0.002831016667187214, -0.01288437657058239, -0.006962291430681944, -0.008150254376232624, 0.031158912926912308, 0.026808958500623703, -0.00113624834921211, -0.010236578062176704, -0.02021310292184353, -0.0077069844119250774, 0.03846399858593941, 0.0065544829703867435, -0.03286106884479523, -0.0016652169870212674, 0.00810888223350048, 0.02664347179234028, -0.05271955579519272, 0.0033747609704732895, 0.03494148328900337, -0.003141305409371853, 0.003020144999027252, 0.0010704966261982918, 0.0014192021917551756, -0.022860901430249214, 0.016075918450951576, -0.0036998253781348467, 0.0010490718996152282, 0.010756680741906166, 0.014740198850631714, 0.012636144645512104, 0.004376550670713186, -0.04080446437001228, 0.006001873407512903, -0.0571167953312397, 0.00399829400703311, -0.01063847541809082, 0.030449680984020233, -0.009870141744613647, 0.007399650756269693, 0.0014428432332351804, -0.043026722967624664, -0.03269558027386665, 0.003705735784024, -0.0425066202878952, -0.01356996688991785, 0.018321819603443146, 0.008215267211198807, -0.0017878549406304955, 0.00884175579994917, 0.010301590897142887, -0.006956381257623434, 0.02357013337314129, 0.015177559107542038, -0.016997920349240303, 0.017979023978114128, 0.010886706411838531, -0.0037382422015070915, -0.03867676854133606, -0.02243536338210106, -9.137822780758142e-05, 0.03491784259676933, -0.017837177962064743, 0.005871847737580538, 0.008451677858829498, -0.0055733793415129185, 0.022033466026186943, 0.038534924387931824, -0.019834846258163452, -0.006058020982891321, -0.020508617162704468, -0.0021587240044027567, -0.001298041781410575, -0.012423375621438026, -0.009013152681291103, -0.011010821908712387, -0.024752186611294746, -0.003159036161378026, 0.0008651149109937251, -0.0095096156001091, 0.023180056363344193, 0.005632482003420591, -0.006838175933808088, -0.012139682658016682, 0.026690753176808357, -0.011365437880158424, -0.026998087763786316, 0.015473071485757828, -0.03229368478059769, 0.017482561990618706, -0.019941231235861778, -0.009462333284318447, -0.002124740043655038, 0.01442104484885931, -0.010017897933721542, 0.005159660708159208, -0.006353534292429686, -0.016702406108379364, 0.004908474627882242, 0.008824024349451065, -0.03827487304806709, 0.009237742982804775, 0.008386665023863316, -0.0048345960676670074, 0.010993091389536858, -0.006619495805352926, -0.010000167414546013, -0.02048497647047043, -0.01469291653484106, -0.017730792984366417, 0.028345627710223198, -0.003764838445931673, -0.02241172268986702, -0.0165132787078619, -0.022482644766569138, -0.014539250172674656, 0.007541497237980366, 0.007411471568048, 0.00824481900781393, 0.002423208439722657, 0.028676602989435196, 0.016300508752465248, -0.014291019178926945, -0.007961126044392586, 0.0035284277983009815, -0.042719390243291855, 0.020284026861190796, 0.003159036161378026, -0.005165570881217718, 0.03605261072516441, -0.022529928013682365, 0.02042587287724018, 0.009344127960503101, -0.010721219703555107, 0.024823110550642014, -0.012837094254791737, 0.02609972655773163, -0.004799134563654661, -0.03565071523189545, -0.01443286519497633, -0.006043245084583759, -0.016726048663258553, 0.017553484067320824, -0.0037234665360301733, 0.024303006008267403, -0.007121868431568146, 0.025295931845903397, -0.0011332931462675333, 0.004559768829494715, 0.010874886065721512, 0.01398368552327156, -0.02966952696442604, -0.00811479240655899, 0.01356996688991785, 0.028936654329299927, -0.011684592813253403, -0.017447100952267647, 0.013770915567874908, 0.05626571550965309, 0.012387913651764393, -0.00043883713078685105, 0.02773096039891243, -0.03780205175280571, -0.013451761566102505, -0.015496713109314442, -0.01620594412088394, -0.0013800467131659389, -0.003791434457525611, 0.00349592138081789, -0.005062141455709934, 0.021158745512366295, 0.025910599157214165, -0.06047382578253746, -0.025106802582740784, 0.01358178723603487, 0.009881962090730667, 0.004810954909771681, -0.011264964006841183, -0.022222593426704407, 0.01710430532693863, -0.011761425994336605, -0.021170565858483315, 0.019964871928095818, 0.004208107944577932, 0.025390494614839554, 0.000803795934189111, 0.023073671385645866, -0.001292870263569057, -0.003212228650227189, 0.020579541102051735, 0.014704737812280655, -0.024704905226826668, -0.03217547759413719, 0.013428120873868465, -0.0077719977125525475, 0.0032506452407687902, 0.020544078201055527, 0.022068927064538002, -0.006211687810719013, 0.013912762515246868, 0.04543811082839966, 0.010999001562595367, 0.025319572538137436, -0.011986016295850277, -0.03160809352993965, -0.011873721145093441, 0.012872555293142796, 0.013960043899714947, 0.0026463207323104143, 0.01599317602813244, 0.012529760599136353, 0.00658403430134058, -0.018061768263578415, 0.012647965922951698, -0.040780823677778244, -0.005162615794688463, 0.03612353652715683, -0.03475235402584076, 0.016123201698064804, 0.0073523689061403275, -0.057022228837013245, 0.007724715396761894, -0.0376129224896431, 0.05465812236070633, -0.02353467233479023, 0.008788563311100006, 0.003132440149784088, 0.017021561041474342], [0.05437105521559715, 0.00012919734581373632, 0.017763134092092514, -0.02327956072986126, -0.03603103756904602, 0.02790662832558155, -0.049323342740535736, 0.004630072508007288, -0.005182917229831219, 0.027353784069418907, -0.026055801659822464, -0.0035934890620410442, 0.006712253205478191, 0.03278608247637749, -0.03655984625220299, 0.011675835587084293, 0.0026740848552435637, 0.020154787227511406, -0.012979826889932156, -0.012330835685133934, 0.03641562536358833, 0.06456261873245239, -0.008629181422293186, -0.018856804817914963, -0.016609370708465576, -0.01064225658774376, 0.02612791210412979, -0.00891762226819992, 0.07662905007600784, -0.07850391417741776, 0.037088654935359955, -0.03324278071522713, 0.003620530478656292, -0.020635521039366722, 0.03362736850976944, -0.025599103420972824, -0.02636827901005745, 0.021260475739836693, 0.03562241420149803, 0.011387394741177559, 0.025983691215515137, 0.011309275403618813, -0.016369003802537918, -0.02207772433757782, -0.025094332173466682, 0.041895996779203415, 0.021188365295529366, -0.06369730085134506, -0.015395517461001873, 0.05451527237892151, 0.07119675725698471, 0.05701509118080139, 0.0058138808235526085, -0.01178400032222271, 0.00955459475517273, 0.014313864521682262, -0.01904909871518612, 0.03300241380929947, 0.035766635090112686, 0.0008472942863591015, -0.02636827901005745, -0.03954039886593819, -0.05211160331964493, 0.04266517236828804, -0.010143494233489037, 0.007096840534359217, 0.018231850117444992, 0.02951708808541298, -0.02567121386528015, 4.643029751605354e-05, -0.02293102815747261, 0.01955386996269226, 0.061389774084091187, -0.06600482761859894, -0.03230534866452217, -0.010461981408298016, 0.012451019138097763, -0.011080926284193993, 0.025815434753894806, 0.038410674780607224, -0.018940933048725128, 0.008052299730479717, 0.006303628906607628, 0.040189389139413834, -0.0024772840552031994, -0.004164361394941807, -0.05667857825756073, 0.004245485179126263, 0.0029865619726479053, -0.017691023647785187, -0.024325156584382057, -0.02898828126490116, -0.008226566016674042, 0.03586278110742569, 0.05687087029218674, 0.020515337586402893, 0.04129508137702942, 0.01218060590326786, -0.03836259990930557, 0.029204610735177994, 0.005423284135758877, -0.03353121876716614, -0.0026665732730180025, -0.002221893984824419, 0.041944071650505066, -0.011820055544376373, -0.023255523294210434, 0.05475563928484917, -0.005297091323882341, 0.025382772088050842, 0.030550668016076088, -0.025478919968008995, 0.03598296642303467, 0.049563709646463394, -0.0324736051261425, 0.021572953090071678, -0.0072771161794662476, -0.03333892673254013, 0.012931753881275654, 0.01227074395865202, -0.03506956994533539, -0.006982666440308094, 0.02853158302605152, -0.09451237320899963, 0.018628455698490143, 0.004957573022693396, -0.0002095701202051714, -0.0009614686714485288, -0.06081289425492287, -0.0013978852657601237, 0.01848423480987549, -0.056774724274873734, 0.047087930142879486, -0.025478919968008995, 0.022919010370969772, -0.004612044896930456, 0.004140324424952269, -0.018231850117444992, 0.005810876376926899, -0.01836405135691166, 0.030382409691810608, 0.025815434753894806, 0.015972398221492767, -0.0071148681454360485, -0.05610169842839241, 0.03146406263113022, 0.029324794188141823, 0.02802681177854538, -0.00546234380453825, -0.021356623619794846, -0.011453495360910892, -0.023712221533060074, 0.010738403536379337, -0.012318816967308521, -0.0006272080936469138, 0.017594877630472183, 0.02848351001739502, 0.03893947973847389, 0.03756938874721527, -0.0009456945699639618, -0.058938030153512955, -0.03930003196001053, -0.005044706165790558, -0.028122957795858383, 0.04067012667655945, -0.013304322957992554, -0.0007826955989003181, 0.009758907370269299, -0.04470829293131828, -0.021368641406297684, -0.043698750436306, 0.0002822436217684299, -0.024036716669797897, -0.000669647881295532, 0.039203885942697525, -0.027978738769888878, 0.0445881113409996, -0.024229010567069054, 0.0023390729911625385, -4.3543077481444925e-05, -0.03187268599867821, -0.02017882466316223, -0.07595602422952652, -0.017030013725161552, -0.03838663548231125, 0.043794896453619, 0.02653653547167778, 0.024000661447644234, 0.002265460556373, 0.0010906660463660955, -0.015864232555031776, -0.0165853351354599, -0.014169644564390182, 0.02802681177854538, -0.03716076537966728, 0.0050957840867340565, 0.006147390231490135, 0.0025283622089773417, 0.003836860880255699, 0.01312404777854681, 0.04723214730620384, -0.027473967522382736, 0.06821620464324951, 0.019457722082734108, -0.035718560218811035, -0.009722852148115635, -0.00030815822537988424, 0.05701509118080139, 0.028964243829250336, -0.04497269541025162, -0.003908970858901739, 0.01004133839160204, -0.03809819743037224, 0.029469015076756477, -0.01552771870046854, 0.06388959288597107, -0.007102849893271923, -0.015022948384284973, 0.004597022198140621, 0.03641562536358833, -0.07158134132623672, -0.04110278561711311, -0.023147357627749443, 0.00502066919580102, -0.008094364777207375, -0.007932116277515888, 0.019313501194119453, 0.026512498036026955, -0.007974180392920971, -0.07182171195745468, -0.00658005103468895, 0.05254426226019859, -0.035093605518341064, -0.0020701622124761343, 0.008623172529041767, 0.014890746213495731, -0.008472942747175694, -0.06288005411624908, -0.018688546493649483, -0.010095421224832535, 0.002283488167449832, -0.019914420321583748, 0.009818999096751213, 0.04237673059105873, 5.4552081564906985e-05, -0.0009186532697640359, -0.01813570223748684, -0.02865176647901535, 0.06153399497270584, 0.0034282368142157793, -0.005059728864580393, -0.0452851727604866, 0.05792848765850067, -0.05792848765850067, 0.0002745443780440837, 0.0003368896141182631, -0.047039855271577835, -0.04119893163442612, 0.047953251749277115, -0.04506884515285492, -0.027353784069418907, -0.01909717172384262, -0.03521379083395004, -0.002704130718484521, -0.07297547161579132, 0.014337901957333088, 0.03312259539961815, -0.010786476545035839, -0.0054022520780563354, 0.025526992976665497, -0.03487727791070938, 0.029324794188141823, 0.010804504156112671, -0.00977693498134613, -0.0009021280566230416, 0.028411399573087692, 0.022173870354890823, -0.0211042370647192, -0.010473999194800854, 0.004350645933300257, -0.02487800270318985, 0.028627729043364525, 0.002650048118084669, -0.03970865532755852, -0.004597022198140621, 0.00569069292396307, -0.011934230104088783, 0.013712947256863117, -0.012547166086733341, 0.01653726026415825, 0.06961033493280411, 0.012306799180805683, -0.015491664409637451, -0.003479314735159278, 0.031319841742515564, -0.003984085749834776, -0.03985287621617317, 0.006153399590402842, -0.015744049102067947, -0.054467201232910156, -0.0007417580345645547, 0.05759197473526001, 0.04348241910338402, -0.011934230104088783, -0.054130684584379196, 0.04316994175314903, -0.02122442051768303, 0.04999637231230736, 0.004588008392602205, 0.002062650863081217, -0.018688546493649483, 0.04999637231230736, -0.06797583401203156, -0.04470829293131828, -0.004696173593401909, -0.05095783993601799, -0.061966657638549805, -0.008136428892612457, 0.03716076537966728, -0.041030675172805786, 0.03117562085390091, 0.003863902296870947, 0.029709381982684135, -0.02670479193329811, -0.005113811697810888, -0.011159045621752739, 0.06518757343292236, 0.05965913087129593, -0.04903490096330643, -0.044299669563770294, -0.04547746852040291, 0.001489525311626494, 0.03232938423752785, 0.020972035825252533, 0.007397299632430077, 2.2921733034309e-05, 0.029757454991340637, 0.029781492426991463, 0.034564800560474396, 0.017078086733818054, 0.05028481036424637, 0.017594877630472183, 0.00857509858906269, 0.021020108833909035, -0.02694515883922577, -0.005179912317544222, 0.004591012839227915, 0.04408333823084831, -0.01641707681119442, 0.020515337586402893, 0.014109552837908268, -0.013556708581745625, -0.0368482880294323, 0.017775151878595352, -0.025022221729159355, -0.03898755460977554, 0.042400769889354706, 0.005131838843226433, -0.027185527607798576, -0.0057597984559834, 0.04901086539030075, 0.015491664409637451, 0.027642223984003067, 0.043145906180143356, 0.04199214279651642, 0.004624063614755869, -0.0037947967648506165, 0.03271397203207016, 0.004200416151434183, -0.038002047687768936, -0.009338264353573322, 0.0037677553482353687, 0.007036748807877302, -0.024144882336258888, 0.01825588569045067, -0.017582857981324196, 0.02287093549966812, 0.028868097811937332, 0.006291610654443502, -0.011796019040048122, -0.012240697629749775, -0.009314227849245071, 0.015587810426950455, 0.011802027933299541, 0.051727015525102615, 0.026632681488990784, -0.026440387591719627, 0.005050715059041977, 0.003238947596400976, -0.004224453121423721, -0.020899925380945206, -0.011255192570388317, -0.03997306153178215, 0.013424506410956383, 0.008298676460981369, 0.001312254462391138, 0.07028336077928543, 0.02836332656443119, -0.0036175257991999388, -0.04004517197608948, -0.026680756360292435, -0.03521379083395004, 0.043722789734601974, -0.04679948836565018, -0.02253442257642746, 0.011820055544376373, -0.02824314311146736, -0.0034582826774567366, -0.02413286454975605, 0.0025193484034389257, 0.015347443521022797, 0.01848423480987549, 0.038795262575149536, 0.005315118934959173, 0.036175258457660675, -0.01652524247765541, -0.024216992780566216, 0.03461287170648575, -0.0011860617669299245, -0.05614976957440376, 0.027834517881274223, 0.03156020864844322, -0.026680756360292435, -0.03430039435625076, -0.04345838353037834, 0.010816522873938084, -0.021945523098111153, -0.03999709710478783, 0.01389322243630886, -0.04016535356640816, 0.03184865042567253, -0.02121240273118019, 0.024685708805918694, -0.030791034922003746, -0.05066939815878868, -0.019986530765891075, 0.010858586989343166, 0.00038364852662198246, -0.026632681488990784, -0.008094364777207375, 0.04242480546236038, 0.012048404663801193, 0.03425232321023941, 0.01909717172384262, -0.03105543740093708, 0.012739459984004498, 0.0015105573693290353, 0.05494793504476547, -0.009500511921942234, -0.00423046201467514, 0.0002751077408902347, 0.023760294541716576, -0.05374610051512718, -0.0006523714982904494, -0.003097731852903962, -0.0001074140818673186, -0.0173304732888937, -0.049275267869234085, -0.0007902070647105575, -0.009728861041367054, 0.03374755010008812, 0.08057107776403427, 0.07860006392002106, 0.023880477994680405, 0.019433684647083282, 0.044756367802619934, -0.029300758615136147, 0.01378505676984787, -0.008028263226151466, -0.08321511000394821, 0.0083167040720582, -0.013292304240167141, -0.03502149507403374, -0.013280286453664303, 0.0421123281121254, -0.02345983497798443, -0.03031029924750328, -0.0633607879281044, -0.014746525324881077, -5.530322596314363e-05, 0.020034603774547577, -0.016657445579767227, -0.033026449382305145, -0.049900222569704056, 0.02361607365310192, 0.012390927411615849, 0.05028481036424637, 0.002495311666280031, -0.03449269011616707, -0.0316803939640522, -0.048578206449747086, -0.008767392486333847, 0.02927672117948532, -0.011693863198161125, -0.019145244732499123, 5.38420090379077e-06, -0.06927381455898285, 0.04783306643366814, 0.03682424873113632, 0.020887907594442368, 0.04860224202275276, -0.034060027450323105, 0.010419916361570358, -0.011092945002019405, 0.0222940556704998, -0.020491302013397217, -0.004482847638428211, -0.05975527688860893, -0.03487727791070938, -0.007361244410276413, -0.022173870354890823, -0.020503319799900055, 0.04728022217750549, 0.016200747340917587, -0.0031007365323603153, -0.0377376452088356, -0.012979826889932156, 0.0033230760600417852, -0.02865176647901535, 0.02785855531692505, 0.011026843450963497, -0.06066867336630821, -0.0033801633398979902, -0.008352759294211864, 0.0173304732888937, 0.013027900829911232, -0.0006478646537289023, -0.02624809555709362, -0.004491861443966627, -0.013736983761191368, -0.019517814740538597, -0.022149834781885147, -0.059851426631212234, 0.0018628454999998212, 0.011543633416295052, -0.007385281380265951, -0.007337207905948162, 0.03218516334891319, 0.013436525128781796, -0.043674714863300323, 0.0430016852915287, 0.008490970358252525, 0.010906659997999668, 0.008731337264180183, 0.017775151878595352, 0.01865249313414097, 0.018832767382264137, 0.03059874102473259, 0.021344603970646858, 0.006610096897929907, -0.000495757267344743, 0.032401494681835175, -0.031031401827931404, 0.009470466524362564, 0.003154819132760167, 0.01955386996269226, 0.031199658289551735, -0.0324736051261425, 0.010449962690472603, -0.0004886213573627174, 0.011952257715165615, 0.015864232555031776, 0.01441001147031784, 0.000375761475879699, 0.02711341716349125, 0.028747912496328354, -0.00952454935759306, -0.008719319477677345, -0.020323043689131737, 0.0024021693971008062, -0.007847988046705723, 0.03170442953705788, 0.009476475417613983, -0.06600482761859894, 0.035550303757190704, 0.01985432766377926, 0.013712947256863117, -0.026680756360292435, 0.01461432408541441, -0.010077393613755703, 0.006610096897929907, 0.05009251832962036, -0.006267573684453964, 0.003713672747835517, -0.01698194071650505, 0.015299370512366295, -0.023075249046087265, -0.02732974663376808, -0.03014204278588295, -0.005489385221153498, -0.010834550485014915, -0.004359659738838673, -0.0031668373849242926, 0.0034973423462361097, 0.009121933951973915, 0.05643821135163307, 0.0036085122264921665, -0.0028438440058380365, -0.025478919968008995, 0.013027900829911232, 0.016621390357613564, -0.013232212513685226, 0.01453019492328167, 0.010678311809897423, -0.044467926025390625, -0.022089742124080658, 0.03129580616950989, -0.002257948974147439, -0.012811570428311825, 0.0330745205283165, 0.035430122166872025, 0.026272131130099297, 0.014301846735179424, -0.03201690688729286, -0.059803351759910583, 0.013724965043365955, -0.01773909665644169, -0.03430039435625076, -0.02744993008673191, 0.01669349893927574, -0.024277083575725555, -0.019253410398960114, 0.004266517236828804, -0.005964110139757395, -0.007439363747835159, -0.023892495781183243, 0.0063396841287612915, -0.041727740317583084, 0.02927672117948532, 0.02595965377986431, -0.027233600616455078, 0.030406447127461433, 0.01847221702337265, -0.026849012821912766, -0.011790009215474129, 0.01623680256307125, 0.03420424833893776, -0.01772707886993885, 0.004816357046365738, 0.003743718611076474, 0.06283197551965714, -0.00571773387491703, 0.03175250440835953, -0.011104962788522243, 0.02877194993197918, 0.02836332656443119, -0.019409649074077606, 0.03413213789463043, 0.0035964937414973974, -0.00028036575531587005, 0.008166474290192127, 0.03117562085390091, 0.016669463366270065, -0.01789533533155918, 0.01865249313414097, 0.00331105780787766, -0.010828540660440922, 0.014229736290872097, -0.0024186945520341396, 0.0024893025401979685, -0.03701654449105263, -0.010125466622412205, -0.051053985953330994, 0.025406809523701668, 0.043674714863300323, -0.007343216799199581, 0.016381023451685905, 0.008136428892612457, -0.017642950639128685, -0.0009539572056382895, -0.005771816708147526, -0.004413742106407881, -0.010233632288873196, -0.04228058457374573, -0.024902038276195526, -0.010942715220153332, -0.02017882466316223, 0.0001112637110054493, -0.048746462911367416, 0.04804939776659012, -0.04723214730620384, -0.03516571596264839, -0.020262952893972397, -0.01178400032222271, -0.02007065899670124, -0.010804504156112671, 0.025094332173466682, -0.017979463562369347, -0.01461432408541441, -0.006237527821213007, -0.018508272245526314, 0.023243505507707596, 0.001371595193631947, 0.0036175257991999388, 0.02288295514881611, 0.047160036861896515, -0.02162102609872818, -0.013568726368248463, -0.02339974418282509, -0.0767732709646225, 0.018904877826571465, 0.017474692314863205, -0.0017231320962309837, -0.03511764481663704, -0.0028798992279917, -0.002322547836229205, -0.01180803682655096, 0.02008267678320408, 0.05759197473526001, 0.00297454372048378, 0.005705715622752905, -0.017114141955971718, -0.029084427282214165, -0.04047783091664314, -0.012631294317543507, 0.014830654487013817, 0.024805892258882523, -0.011080926284193993, 0.009752897545695305, 0.0017847262788563967, -0.026512498036026955, 0.014686433598399162, -0.04054994136095047, -0.0010531086008995771, 0.030815070495009422, -0.027714334428310394, -0.004470829386264086, -0.006345693022012711, 0.004849407821893692, 0.011116981506347656, 0.059226471930742264, -0.02007065899670124, 0.015912307426333427, 0.020431209355592728, -0.032113052904605865, 0.006150395143777132, -0.020671576261520386, -0.016176709905266762, -0.03019011579453945, -0.0338677354156971, 0.016212765127420425, -0.028795987367630005, 0.013328359462320805, -0.009590649977326393, -0.019469739869236946, -0.04593416675925255, 0.009139961563050747, 0.011711889877915382, -0.020851852372288704, 0.035598378628492355, -0.014926801435649395, 0.008268630132079124, -0.012907717376947403, -0.012330835685133934, -0.008623172529041767, 0.01670551858842373, -0.0006692723254673183, 0.027017269283533096, -0.014506158418953419, -0.045044805854558945, 0.015659920871257782, -0.013520653359591961, -0.009344273246824741, 0.048073433339595795, 0.0038608976174145937, -0.006778354290872812, -0.045669760555028915, -0.00371667742729187, 0.013280286453664303, -0.01686175726354122, -0.00906785111874342, 0.005477366968989372, 0.06898538023233414, 0.012835606932640076, 0.012258725240826607, -0.022378183901309967, -0.010690329596400261, -0.013208176009356976, -0.024733781814575195, -0.04054994136095047, 0.01040789857506752, -0.02058744803071022, -0.01739056408405304, 0.009710833430290222, 0.00546234380453825, -0.019998548552393913, 0.0031848649960011244, -0.00438970560207963, 0.024168917909264565, -0.0010613712947815657, -0.047039855271577835, -0.0460783876478672, 0.0018448180053383112, -0.027041306719183922, -0.03271397203207016, -0.02425304800271988, 0.007811932824552059, -0.02716149017214775, 0.0017066069412976503, 0.009470466524362564, -0.00035491713788360357, -0.00843688752502203, -0.00866523664444685, -0.02355598285794258, 0.08552263677120209, -0.019517814740538597, -0.024637633934617043, 0.0014249265659600496, -0.003815828822553158, -0.013881203718483448, -0.03610314801335335, 0.061389774084091187, -0.021140292286872864, 0.018904877826571465, 0.01115303672850132, -0.0026169975753873587, -0.0316803939640522, 0.02345983497798443, 0.03093525394797325, 0.008641200140118599, 0.00557651836425066, -0.05523637682199478, 0.009266153909265995, 0.0068805101327598095, -0.0039720674976706505, -0.0124149639159441, -0.012691386044025421, -0.010461981408298016, 0.005786839406937361, -0.015888269990682602, -0.0015849210321903229, -6.0702099290210754e-05, 0.01670551858842373, 0.006568032782524824, 0.005447321105748415, -0.00251033459790051, -0.013003863394260406, -0.004287549294531345, 0.024661671370267868, -0.008767392486333847, 0.02665671892464161, -0.03968461975455284, -0.007403308991342783, -0.03550223261117935, -0.020034603774547577, 0.0028423417825251818, 0.01606854610145092, -0.008142437785863876, -0.04850609600543976, 0.0007639169343747199, 0.010197577066719532, -0.01848423480987549, -0.02939690463244915, -0.038410674780607224, -0.0025283622089773417, -0.025575065985322, 0.021717173978686333, -0.0076556941494345665, 0.002283488167449832, 0.00198753597214818, -0.02139267884194851, -0.012883679941296577, 0.017522767186164856, -0.027305711060762405, 0.0010636247461661696, -0.011958266608417034, 0.051438573747873306, -0.012451019138097763, 0.018123684450984, 0.022786807268857956, 0.0062255095690488815, -0.03288222849369049, -0.01573203131556511, -0.007307162042707205, -0.018400106579065323, -0.0023135340306907892, -0.019409649074077606, 0.015299370512366295, 0.030574703589081764, -0.024241028353571892, -0.0015473637031391263, 0.021068181842565536, 0.007703767623752356, -0.011934230104088783, 0.011609734036028385, -0.013953314162790775, -0.010137485340237617, 0.053794171661138535, 0.04422755911946297, 0.02562314085662365, 0.02831525169312954, 0.0056275962851941586, 0.023015156388282776, -0.00613537197932601, -0.013472579419612885, 0.0018042561132460833, 0.003253970528021455, -0.008298676460981369, 0.011345330625772476, 0.023075249046087265, -0.025767359882593155, 0.007986199110746384, 0.018400106579065323, -0.0011702876072376966, -0.003290025517344475, -0.030454520136117935, -0.020226897671818733, -0.008659226819872856, 0.005252022761851549, -0.011591706424951553, 0.05119820684194565, -0.02064754068851471, 0.005898009520024061, -0.04035764932632446, 0.01132129319012165, 0.021524880081415176, -0.025358736515045166, 0.009746888652443886, 0.00780592393130064, -0.008659226819872856, 0.03564644977450371, 0.011838083155453205, 0.0061323675327003, -0.013328359462320805, -0.03026222623884678, -0.011627761647105217, -0.01227074395865202, -0.0030466539319604635, -0.0009517037542536855, -0.01699395850300789, -0.01698194071650505, 0.046535082161426544, 0.03369947522878647, 0.05788041278719902, 0.01739056408405304, 0.012715423479676247, -0.0032990393228828907, 0.002465265803039074, -0.005624591838568449, -0.0016314921667799354, -0.017354508861899376, 0.012979826889932156, 0.005363192409276962, -0.029132500290870667, 0.031367916613817215, 0.003999108914285898, 0.004374682437628508, -0.004323604516685009, -0.0019184304401278496, 0.0131601020693779, 0.029757454991340637, -0.013220193795859814, -0.003103740978986025, -0.02641635201871395, -0.04223250970244408, 0.003923994023352861, 0.012607257813215256, -0.006285601295530796, 0.010702348314225674, -0.021236440166831017, 0.04783306643366814, -0.008454915136098862, 0.03963654488325119, -0.053505729883909225, 0.021981578320264816, 0.050765544176101685, -0.0036325487308204174, 0.010323770344257355, 0.006640143226832151, 0.010852578096091747, -0.009638722985982895, -0.0072350515983998775, 0.030911218374967575, 0.044179484248161316, -0.01715019717812538, 0.01386918593198061, 0.018003500998020172, -0.005822894629091024, -0.007685740012675524, 0.025358736515045166, -0.01229478046298027, 0.017703041434288025, 0.03458883613348007, 0.001243900042027235, -0.011189091950654984, 0.02612791210412979, 0.015215241350233555, -0.010323770344257355, 0.008472942747175694, 0.02350790984928608, 0.022618550807237625, 0.03163231909275055, 0.015287351794540882, 0.00929019134491682, -0.030238190665841103, 0.034636907279491425, 0.0165853351354599, 0.020154787227511406, 0.04362663999199867, 0.0019665039144456387, 0.03432442992925644, -0.030406447127461433, -0.004122296813875437, -0.006501931697130203, 0.0013648348394781351, 0.0001567081199027598, 0.027810482308268547, 0.027425894513726234, -0.02894020639359951, 0.008022254332900047, 0.009049823507666588, 0.019469739869236946, -0.020106714218854904, -0.008388814516365528, -0.009170007891952991, -0.04569379985332489, -0.0061774360947310925, -0.028916170820593834, -0.0038789252284914255, 0.005008650943636894, -0.02956516109406948, 0.010167531669139862, -0.0031277777161449194, 0.023183412849903107, 0.01550368219614029, 0.0010095421457663178, 0.025190480053424835, 0.006369729992002249, 0.023832404986023903, 0.00031529413536190987, -0.016393041238188744, -0.00211523100733757, -0.0030301285441964865, 0.035309936851263046, 0.026151947677135468, -0.005176907870918512, -0.024853965267539024, -0.04271324723958969, -0.039324067533016205, 0.010942715220153332, -0.017234325408935547, -0.011874138377606869, -0.010534090921282768, 0.03374755010008812, -0.021404696628451347, 0.010564137250185013, 0.019289465621113777, 0.0332668162882328, -0.008815465494990349, 0.014169644564390182, -0.0032058970537036657, 0.02247432991862297, -0.06033216044306755, -0.03139195218682289, 0.006024202331900597, -0.022678641602396965, -0.026560572907328606, 0.00248780008405447, -0.015287351794540882, -0.011741936206817627, -0.0034462641924619675, -0.015587810426950455, 0.0007530252914875746, -0.015071021392941475, 0.023940570652484894, 0.008539043366909027, -0.03655984625220299, 0.004515897948294878, 0.03336296230554581, -0.005366196855902672, -0.011910193599760532, 0.014674415811896324, 0.05345765873789787, 0.029300758615136147, 0.020214878022670746, 0.003479314735159278, -0.02728167362511158, -0.032353419810533524, -0.014049461111426353, 0.009975237771868706, -0.0022804834879934788, 0.008106382563710213, -0.0037677553482353687, -0.0014940322143957019, -0.014482121914625168, -0.019193317741155624, 0.0026305182836949825, 0.014710471034049988, 0.006399775855243206, -0.004233466926962137, -0.01237890962511301, -0.0008690775721333921, 0.04773692041635513, 0.015046984888613224, -0.013172120787203312, 0.02321946807205677, 0.00783596932888031, 0.008148446679115295, 0.002540380461141467, 0.0031007365323603153, 0.015479645691812038, 0.0010989286238327622, 0.006531978026032448, -0.019289465621113777, 0.02144075185060501, -0.0005227985675446689, 0.01686175726354122, 0.018123684450984, 0.03254571557044983, 0.023531945422291756, 0.011273220181465149, 0.008124410174787045, -0.011165054515004158, -0.004651104565709829, 0.056245915591716766, 0.01252312958240509, -0.005483375862240791, 0.0011282233754172921, -0.009362300857901573, 0.0105521185323596, -0.016369003802537918, -0.0064598675817251205, -0.019253410398960114, 0.007223033346235752, 0.012775515206158161, -0.012186615727841854, -0.011627761647105217, 0.03100736439228058, 0.0073492261581122875, 0.005651633255183697, -0.012186615727841854, -0.0467754527926445, -0.01129124779254198, -0.024409286677837372, 0.012463037855923176, -0.005050715059041977, -0.008286657743155956, -0.036680031567811966, 0.01501092966645956, 0.015431571751832962, -0.00880945660173893, -0.0022068710532039404, 0.023700201883912086, 0.012955790385603905, -0.03281011804938316, 0.01129124779254198, -0.003076699795201421, 0.06331270933151245, 0.039372142404317856, -0.005471357610076666, -0.00583491288125515, 0.06888923048973083, 0.014253772795200348, 0.006102321669459343, 0.008569089695811272, 0.031776539981365204, 0.024216992780566216, -0.012811570428311825, 0.030863143503665924, 0.025863507762551308, 0.012463037855923176, 0.012859643436968327, 0.00043491434189490974, 0.00834674946963787, 0.005615578033030033, -0.006586060393601656, 0.024685708805918694, 0.014397993683815002, -0.03975673019886017, 0.000655000505503267, -0.002199359703809023, -0.020395154133439064, -0.026849012821912766, -0.005170898512005806, 0.026007726788520813, -0.009121933951973915, 0.012967809103429317, -0.027930665761232376, 0.0074634007178246975, -7.0936483098194e-05, 0.005291082430630922, -0.019253410398960114, -0.01401340588927269, -0.007974180392920971, -0.020743686705827713, 0.009843035601079464, 0.027762407436966896, -0.03603103756904602, 0.011489550583064556, 0.004699178040027618, 0.017066068947315216, 0.0025644171983003616, 0.001294226967729628, 0.0004720961442217231, -0.016272857785224915, 0.03100736439228058, -0.031776539981365204, 0.019145244732499123, -0.004615049809217453, -0.025430846959352493, -0.02636827901005745, -0.021693136543035507, -0.0010884125949814916, 0.02716149017214775, -0.014686433598399162, -0.01880873180925846, -0.007367253769189119, 0.014722488820552826, 0.00065049366094172, -0.026776902377605438, 0.009266153909265995, -0.02728167362511158, 0.00817849300801754, -0.013965332880616188, -0.025238553062081337, -0.011976294219493866, 0.016369003802537918, 0.005651633255183697, -0.009236108511686325, -0.0033831677865236998, 0.0036385580897331238, -0.01985432766377926, 0.01888084039092064, 0.006036220584064722, 0.008761383593082428, -0.029637271538376808, -0.006279592402279377, 0.013953314162790775, -0.028747912496328354, 0.020166805014014244, 0.040525905787944794, 0.005858949851244688, 0.021981578320264816, -0.01438597496598959, 0.02196955867111683, -0.003545415820553899, 0.03593489155173302, -0.017174234613776207, -0.026175985112786293, 0.017306435853242874, -0.01640505902469158, 0.020455246791243553, 0.009374319575726986, -0.007589593529701233, -0.03418021276593208, 0.03264186158776283, -0.025935618206858635, -0.0004623312270268798, -0.009939182549715042, -0.021260475739836693, 0.008172484114766121, -0.0069946846924722195, 0.025767359882593155, 0.012390927411615849, -0.026776902377605438, 0.007174959871917963, 0.01709010638296604, 0.01326826773583889, -0.01585221476852894, 0.027185527607798576, -0.01888084039092064, -0.013821111992001534, -0.03384369611740112, -0.0029490047600120306, -0.007102849893271923, 0.042809393256902695, 0.012739459984004498, 0.008635190315544605, -0.016957903280854225, -0.0035874799359589815, 0.01618872955441475, 0.007084822282195091, 0.01842414401471615, -0.02499818615615368, 0.04004517197608948, 0.016885792836546898, 0.004693169146776199, 0.03593489155173302, -0.005925050470978022, 0.02242625690996647, -0.003434245940297842, 0.01709010638296604, -0.02053937502205372, -0.0037467232905328274, 0.008382804691791534, 0.004341632127761841, -0.024853965267539024, -0.025022221729159355, 0.009758907370269299, -0.032521676272153854, -0.020791759714484215, -0.017871299758553505, 0.0043115862645208836, -0.02607983723282814, -0.013087992556393147, 0.02785855531692505, 0.0011590204667299986, -0.04466021806001663, 0.024505432695150375, -0.005071747116744518, -0.010461981408298016, 0.032449569553136826, 0.03271397203207016, 0.005792848765850067, 0.013712947256863117, 0.02282286249101162, 0.009638722985982895, -0.023592038080096245, 0.010876614600419998, 0.004386700689792633, -0.016717536374926567, -0.00039923485019244254, 0.006237527821213007, 0.02144075185060501, 0.017078086733818054, 0.009488494135439396, -0.007048767060041428, -0.020226897671818733, -0.016681481152772903, 0.033483147621154785, -0.00761963939294219, -0.03444461524486542, -0.012366890907287598, 0.0034642918035387993, 0.03893947973847389, -0.04398719221353531, -0.021933503448963165, 0.03026222623884678, 0.008749364875257015, 0.0165853351354599, -0.016573315486311913, -0.011934230104088783, -0.021813319995999336, 0.011844092048704624, -0.006363720633089542, 0.012090468779206276, 0.00390296196565032, 0.021320568397641182, 0.02431313879787922, 0.015395517461001873, -0.014229736290872097, -0.0015593819553032517, -0.07691749185323715, 0.0030436492525041103, -0.004756265319883823, 0.03014204278588295, 0.0020145773887634277, 0.01578010432422161, 0.009266153909265995, -0.01760689541697502, -0.027425894513726234, 0.0008675752324052155, -0.05028481036424637, -0.0072350515983998775, 0.007944134995341301, 0.0017141184071078897, 0.006550005171447992, 0.0005438307416625321, 0.004882458131760359, -0.0051678940653800964, 0.030959291383624077, 0.019421666860580444, -0.02499818615615368, 0.01859240047633648, -0.007265097461640835, -0.0036475718952715397, -0.04163159430027008, -0.014518177136778831, 0.0112972566857934, 0.036055076867341995, -0.0034102092031389475, 0.01212652400135994, -0.0010989286238327622, -0.016116619110107422, 0.004068214446306229, 0.04603031277656555, -0.01848423480987549, 0.0055795228108763695, -0.03384369611740112, -0.020407171919941902, 8.774340676609427e-05, -0.01252312958240509, -0.02607983723282814, 0.0030331332236528397, -0.017030013725161552, -0.010143494233489037, -0.0074213361367583275, 0.0002403671678621322, 0.022546440362930298, 0.0013182637048885226, -0.008977713994681835, -0.015876252204179764, 0.026849012821912766, -0.003473305609077215, -0.04331416264176369, 0.017078086733818054, -0.02985360287129879, 0.0003787660680245608, -0.009350283071398735, 0.0004116287746001035, -0.007679731119424105, 0.022979101166129112, -0.0109246876090765, 0.006273583043366671, -0.006465876940637827, -0.0038969526067376137, -0.01904909871518612, 0.009674778208136559, -0.043602604418992996, 0.0195658877491951, 0.00397507194429636, -0.005696701817214489, 0.033771585673093796, 0.0017712055705487728, -0.008244593627750874, -0.019085153937339783, -0.010918678715825081, -0.013700928539037704, 0.02567121386528015, -0.015443590469658375, -0.016212765127420425, -0.029997821897268295, -0.029084427282214165, -0.016801664605736732, 0.004639086313545704, 0.00390296196565032, -0.0038398655597120523, 0.016621390357613564, 0.032617826014757156, -0.005916037131100893, 0.0006009179051034153, -0.010389870963990688, 0.0010132978204637766, -0.04076627269387245, 0.003942021634429693, -0.005738765932619572, -0.002531366655603051, 0.030045896768569946, -0.012132532894611359, 0.030911218374967575, -0.0016675472725182772, -0.006279592402279377, 0.03627140447497368, -0.011020834557712078, 0.01266734953969717, 0.013809094205498695, -0.05163086950778961, -0.02487800270318985, -0.012463037855923176, -0.004996632691472769, 0.00757757481187582, -0.012775515206158161, 0.034564800560474396, -0.017546802759170532, 0.01892891526222229, -0.006072275806218386, -0.007571565918624401, 0.001157518127001822, 0.010263677686452866, -0.021536897867918015, -0.010546109639108181, 0.028122957795858383, 0.028459472581744194, -0.02218589000403881, -0.015816159546375275, 0.016621390357613564, 0.05812077969312668, 0.017931390553712845, -0.005233995150774717, 0.0025238553062081337, -0.0339638814330101, 0.004594017285853624, -0.030286263674497604, -0.006928583607077599, -0.006126358173787594, -0.01004133839160204, 0.014770562760531902, 0.00019454717403277755, 0.018736621364951134, -0.0035063561517745256, -0.06211087480187416, -0.031247731298208237, 0.010371843352913857, -0.013628818094730377, -0.012426982633769512, -0.0062195006757974625, -0.020947998389601707, 0.003425232134759426, -0.0034552779980003834, -0.04076627269387245, 0.03117562085390091, 0.007271106820553541, 0.03776168078184128, 0.0210561640560627, 0.019914420321583748, -0.0064598675817251205, 0.0016750587383285165, 0.03723287582397461, 0.025382772088050842, -0.03014204278588295, -0.01590028777718544, 0.024108827114105225, -0.002603476867079735, 0.02099607139825821, 0.02023891545832157, 0.033314891159534454, -0.010762440040707588, 0.0027461948338896036, 0.03482920303940773, -0.015179187059402466, 0.01903707906603813, -0.006057252641767263, -0.024229010567069054, -0.00251033459790051, 0.015647903084754944, -0.006568032782524824, -3.988123353337869e-05, -0.010473999194800854, -0.0017366528045386076, 0.018940933048725128, -0.006231518927961588, 0.023832404986023903, -0.047616735100746155, -0.005128834396600723, 0.04112682119011879, -0.04254498705267906, 0.019181299954652786, 0.014686433598399162, -0.042304620146751404, 0.017078086733818054, -0.026007726788520813, 0.03877122327685356, -0.029997821897268295, -0.0009840030688792467, 4.739270661957562e-05, 0.012402946129441261]], "input": ["Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.", " cargo terminal. Please contact the EL AL Cargo Store.", "Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits,", " cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country’s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with", " lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the", " obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal’s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal’s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which", " that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t​Europe and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost", " by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts – What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing \"shell shock\" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate", " have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n", " in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.", "Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the \"Submit\" button. Checking the status of a claim\nWas your baggage damaged?", "Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.", "Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time.", "Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:", "Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,", " meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-b1ca2af73cd3f95df62ecdb820abe1cf b/cache/text_embedding/embedding-b1ca2af73cd3f95df62ecdb820abe1cf deleted file mode 100644 index 65057af67820cdd139a0132e89dc718046564613..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-b1ca2af73cd3f95df62ecdb820abe1cf +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.012316812761127949, -0.005762397777289152, 0.050988487899303436, 0.032903041690588, -0.0017430628649890423, 0.042257580906152725, -0.04629874229431152, 0.026217661798000336, 0.0018334900960326195, 0.07643283903598785, 0.0005332088912837207, -0.009809795767068863, 0.03507329523563385, 0.008231996558606625, -0.04457750916481018, 0.01642657443881035, 0.0026083579286932945, 0.05966950207948685, 0.010240104980766773, -0.013532903045415878, 0.04577488824725151, 0.02015591785311699, -0.019594646990299225, 0.00392267107963562, -0.038141582161188126, -0.05318368598818779, 0.0014172130031511188, -0.005366388708353043, 0.04285627231001854, -0.08715938031673431, 0.055478665977716446, -0.02639227919280529, -0.0030230761040002108, -0.025868425145745277, 0.014468357898294926, 0.009111323393881321, -0.02064235508441925, -0.03207984194159508, 0.0018256946932524443, 0.043953873217105865, 0.019232938066124916, -0.00863736029714346, -0.014468357898294926, 0.011381358839571476, -0.026966024190187454, 0.03761772811412811, 0.024209553375840187, -0.06944811344146729, 0.00536015210673213, 0.022014353424310684, 0.027065806090831757, 0.05148739740252495, 0.0057779885828495026, -0.034449659287929535, 0.020380428060889244, 0.0046772705391049385, 0.02263799123466015, 0.030857514590024948, 0.03764267638325691, -0.025793589651584625, 0.013670103624463081, -0.032728422433137894, -0.0028765215538442135, 0.01773621141910553, 0.007439978886395693, 0.0007631746702827513, -0.0014686629874631763, 0.01695042848587036, -0.030383551493287086, -0.023623336106538773, 0.061715029180049896, 0.041808564215898514, 0.03257875144481659, -0.009242286905646324, -4.38250535808038e-05, -0.02141566388309002, -0.012185849249362946, 0.025269735604524612, -0.02303711697459221, -0.009117559529840946, -0.0411100909113884, 0.027938896790146828, -0.008949178270995617, -0.01938261091709137, -0.006342378910630941, -0.014655448496341705, -0.05742441117763519, 0.0063735609874129295, -0.026217661798000336, -0.014119121246039867, 0.024546317756175995, -0.0016027448000386357, -0.06401000916957855, 0.0330277681350708, 0.03352667763829231, -0.029610242694616318, 0.040661074221134186, -0.03133147954940796, -0.011961339972913265, -0.0015396015951409936, -0.04240725561976433, -0.04006238281726837, -0.04158405587077141, 0.023336462676525116, 0.023822899907827377, -0.02726536989212036, 0.002715935232117772, 0.03874027356505394, 0.024858135730028152, -0.022450899705290794, -0.010015595704317093, -0.03252885863184929, -0.0028172761667519808, 0.03866543993353844, -0.028362968936562538, -0.009242286905646324, -0.050090450793504715, -0.03749300166964531, 0.020841918885707855, 0.025332098826766014, -0.06256317347288132, -0.025307152420282364, 0.01320861279964447, -0.022987226024270058, 0.02646711654961109, -0.03335205838084221, -0.00883692316710949, -0.018671665340662003, -0.06495793908834457, -0.01934519223868847, 0.051337722688913345, -0.0031930168624967337, 0.06785161048173904, -0.02225133590400219, -0.022912390530109406, -0.016276901587843895, -0.0310071874409914, -0.05103837698698044, -0.008730905130505562, -0.012846903875470161, 0.023012172430753708, 0.008724668994545937, 0.023249153047800064, 0.0372186042368412, -0.03225445747375488, -0.009722487069666386, 0.02270035445690155, 0.005640788469463587, -0.012834430672228336, -0.026691624894738197, -0.014306211844086647, 0.02067977376282215, -0.019070791080594063, 0.005600252188742161, 0.004312443546950817, 0.01260368525981903, 0.025344571098685265, 0.065855972468853, 0.02551918849349022, 0.0015871538780629635, -0.04205801710486412, -0.022525735199451447, -0.023797953501343727, -0.014979738742113113, -0.004253198392689228, 0.016227010637521744, 0.010271286591887474, 0.0165388286113739, -0.04911758005619049, -0.06919866055250168, -0.014418466947972775, -0.05148739740252495, -0.025693807750940323, 0.019582172855734825, -0.006386033724993467, -0.05063925310969353, 0.03739321976900101, 0.019582172855734825, 0.002912380499765277, -0.013345812447369099, 0.0050077978521585464, 0.03799191117286682, -0.08970381319522858, -0.02763955108821392, -0.050140343606472015, 0.044328052550554276, -0.010601813904941082, -0.0053975703194737434, -0.040636129677295685, 0.01399439387023449, -0.009554104879498482, 0.005746806506067514, 0.03415031358599663, -0.005612724926322699, 0.0061272247694432735, 0.020717190578579903, -0.01683817431330681, 0.004920488689094782, 0.010339886881411076, -0.029510460793972015, 0.00888681411743164, -0.028313079848885536, 0.009310887195169926, -0.027764279395341873, -0.017848465591669083, -0.04612412676215172, -0.04208296537399292, -0.00884316023439169, 0.007234178949147463, -0.06964767724275589, -0.003838480217382312, -0.0328531488776207, 0.0035952620673924685, 0.004275025334209204, -0.0016198947560042143, 0.01566573977470398, -0.03552231192588806, 0.02553166262805462, 0.04425321891903877, 0.033576566725969315, -0.011219213716685772, 0.009011541493237019, 0.010807613842189312, -0.030283769592642784, -0.017137520015239716, 0.010420959442853928, 0.015590902417898178, -0.03417525812983513, -0.021939517930150032, -0.05822266638278961, 0.0007409576210193336, 0.001426567556336522, 0.0013517312472686172, -0.0016947310650721192, -0.004250079859048128, -0.030732786282896996, 0.016825702041387558, 0.0011966017773374915, 0.026990970596671104, 0.004499534610658884, 0.047595907002687454, -0.027115697041153908, 0.017998138442635536, 0.046398524194955826, 0.024072352796792984, -0.011867795139551163, -0.007714378647506237, -0.03986281901597977, 0.01567821204662323, 0.04792019724845886, 0.03642034903168678, 0.02644217014312744, 0.05842223018407822, -0.06825073808431625, -0.012391649186611176, 0.043529801070690155, 0.0019067673711106181, -0.053782377392053604, 0.011462431401014328, 0.013645158149302006, -0.03352667763829231, -0.009379486553370953, 0.0006910667289048433, -0.0226504635065794, -0.0744372084736824, -0.018671665340662003, -0.015902720391750336, -0.01889617368578911, -0.031082022935152054, 0.055378884077072144, -0.018397264182567596, 0.03128158673644066, 0.016376683488488197, -0.006916124373674393, -0.06550673395395279, 0.00690988777205348, 0.001315872184932232, -0.0009541632607579231, 0.004159652628004551, -0.031506095081567764, -0.018734028562903404, 0.0023401945363730192, -0.030832568183541298, -0.026641733944416046, 0.05243532359600067, 0.03205489739775658, 0.002974744187667966, -0.025045225396752357, -0.04567510634660721, -0.010788904502987862, 0.05802310258150101, -0.0016370447119697928, 0.01897101104259491, -0.0267914067953825, 0.04425321891903877, 0.0329778753221035, 0.01652635633945465, 0.006835051812231541, 0.016202066093683243, 0.01932024583220482, 0.011094486340880394, 0.024459008127450943, -0.01570315659046173, -0.032903041690588, -0.062064263969659805, 0.03367634862661362, 0.005304025020450354, 0.013308394700288773, -0.016326792538166046, -0.005463052075356245, -0.030857514590024948, 0.024259444326162338, -0.04460245370864868, -0.02591831609606743, -0.025444352999329567, -0.0026769579853862524, 0.002157780807465315, 0.04794514179229736, 0.0029872169252485037, -0.04253198206424713, 0.0035890256986021996, 0.007221706211566925, 0.03469911217689514, 0.004989088978618383, -0.003985034767538309, -0.04784535989165306, -0.01275959424674511, 0.01973184570670128, -0.033202387392520905, -0.02716558799147606, -0.011256631463766098, -0.012104776687920094, 0.05143750458955765, 0.010863740928471088, -0.021128790453076363, -0.013033994473516941, -0.03948863968253136, 0.040985364466905594, -0.004805115982890129, 0.01171812228858471, 0.015902720391750336, -0.01339570339769125, -0.030258823186159134, 0.023186789825558662, -0.03834114596247673, 0.044353000819683075, 0.02014344558119774, 0.018808864057064056, -0.01858435571193695, 0.05617713928222656, 0.010414723306894302, 0.0412847101688385, -0.0411100909113884, 0.00949174165725708, -0.057075176388025284, 0.014742757193744183, 0.01894606463611126, 0.004502652678638697, -0.01276583131402731, -0.004399752710014582, 0.024496426805853844, 0.016813229769468307, -0.008599941618740559, 0.027739332988858223, 0.02758966200053692, -0.005332088563591242, -0.038515765219926834, 0.024172134697437286, 0.0454007089138031, -0.03552231192588806, -0.013295921497046947, 0.04565016180276871, 0.05086376145482063, 0.02848769724369049, -0.014006867073476315, -0.029435623437166214, 0.005101343151181936, 0.014605557546019554, -0.0001394411374349147, 0.006623015273362398, -0.00048019978567026556, 0.04041161760687828, -0.0077330875210464, 0.0029700668528676033, 0.016588719561696053, 0.05273466929793358, -0.05647648498415947, -0.030308714136481285, -0.01153103169053793, 0.007346433121711016, -0.00629560649394989, 0.0013540699146687984, -0.037368275225162506, 0.03497351333498955, -0.04672281816601753, 0.032828204333782196, -0.014904903247952461, 0.010608050040900707, 0.027415042743086815, 0.008188341744244099, -0.008643596433103085, -0.05951983109116554, 0.013308394700288773, 0.006666670087724924, -0.04777052626013756, -0.018447155132889748, -0.05497976019978523, -0.010632995516061783, -0.03055816888809204, 0.03055816888809204, 0.029111333191394806, 0.026242606341838837, 0.04737139865756035, -0.006382915657013655, 0.0070720333606004715, -0.01562832109630108, -0.082569420337677, 0.08157160133123398, 0.014805121347308159, -0.019120682030916214, 0.04083569347858429, 0.041484273970127106, -0.0003595651942305267, -0.038116637617349625, -0.02523231692612171, 0.0493919774889946, 0.050489578396081924, -0.0077081420458853245, 0.0027970080263912678, -0.06820084154605865, -0.03178049623966217, -0.0027705032844096422, 0.01280948519706726, -0.0013291244395077229, -0.04158405587077141, -0.05677583068609238, 0.022014353424310684, 0.01130652241408825, 0.022450899705290794, -0.022899918258190155, 0.015516065992414951, -0.01219832245260477, 0.014805121347308159, -0.02674151584506035, -0.017012793570756912, 0.007439978886395693, 0.025057697668671608, 0.0012231062864884734, -0.007109451573342085, 0.029535405337810516, -0.0018958537839353085, 0.019869046285748482, -0.052185870707035065, -0.006021206732839346, -0.022937335073947906, -0.022887444123625755, 0.0024836307857185602, -0.03931402042508125, 0.03008420579135418, -0.03681947663426399, -0.002583412453532219, 0.056676048785448074, 0.027764279395341873, 0.05562834069132805, 0.03559714928269386, -0.033202387392520905, -0.03881511092185974, -0.02348613552749157, -0.027040861546993256, -0.02644217014312744, -0.007408796809613705, -0.012291867285966873, -0.016002502292394638, -0.03375118598341942, 0.00366074382327497, -0.028537588194012642, 0.0009214223246090114, -0.05283445119857788, 0.0012971630785614252, -0.021540390327572823, -0.014967266470193863, 0.05852201208472252, -0.06146557256579399, -0.003950734622776508, 0.09798570722341537, -0.01773621141910553, 0.06371066719293594, -0.006442160811275244, -0.003224198706448078, -0.013233558274805546, -0.045226089656353, -0.012503903359174728, 0.031955115497112274, -0.012909267097711563, 0.006382915657013655, 0.002243530936539173, -0.024209553375840187, 0.010788904502987862, 0.0165388286113739, 0.026142824441194534, -0.006357970181852579, -0.05243532359600067, -0.012023704126477242, 0.014929847791790962, 0.04091052711009979, 0.01940755546092987, -0.010951049625873566, -0.017549119889736176, -0.054231394082307816, 0.014618029817938805, -0.050514522939920425, 0.0028297489043325186, 0.015416284091770649, 0.006984724197536707, -0.01729966513812542, -0.011649521999061108, 0.0310071874409914, -0.04200812801718712, -0.048444051295518875, 0.024533843621611595, 0.009797323495149612, -0.04193329066038132, 0.023760534822940826, 0.027963843196630478, 0.005990024656057358, 0.03230435028672218, -0.016825702041387558, -0.04200812801718712, -0.013894611969590187, 0.017611483111977577, -0.011861559003591537, -0.03869038447737694, -0.023411300033330917, 0.028537588194012642, 0.012672285549342632, -0.007932650856673717, 0.014530721120536327, 0.013345812447369099, -0.0165513027459383, -0.014306211844086647, 0.01900842785835266, 0.012167139910161495, 0.01362021267414093, 0.009385723620653152, 0.018808864057064056, -0.014281266368925571, 0.01093234121799469, 0.03422515094280243, -0.0005308702238835394, -0.007302778773009777, -0.00423760712146759, 0.01358279399573803, -0.002669162582606077, 0.0022778308484703302, -0.013670103624463081, 0.02266293577849865, 0.017898356541991234, -0.049641434103250504, 0.026217661798000336, -0.01814781129360199, -0.025718752294778824, 0.01692548394203186, -0.01381977554410696, 0.0040193344466388226, -0.01726224645972252, 0.016289375722408295, 0.030857514590024948, -0.010289995931088924, -0.016738392412662506, 0.009635177440941334, -0.00618335185572505, -0.005198006983846426, 0.00904272310435772, -0.0454256534576416, 0.05323357880115509, 0.013869666494429111, 0.007333960384130478, -0.04048645496368408, 0.025070171803236008, 0.03681947663426399, -0.022089190781116486, 0.024084826931357384, -0.03619584068655968, -0.02346119098365307, -0.00969754159450531, 0.027489880099892616, -0.009398195892572403, -0.03462427482008934, 0.010165268555283546, 0.022812608629465103, 0.03494856879115105, 0.014568138867616653, -0.0009798882529139519, -0.008076087571680546, 0.02438417077064514, 0.027065806090831757, 0.0010570632293820381, 0.012266921810805798, -0.009647650644183159, 0.005316497758030891, -0.0028172761667519808, -0.032005004584789276, -0.003267853055149317, 0.014904903247952461, -0.03467416763305664, 0.00991581380367279, 0.014942320995032787, -0.017087629064917564, 0.03504835069179535, 0.010620523244142532, 0.009579050354659557, 0.014119121246039867, 0.0036295622121542692, -0.04979110509157181, -0.007202996872365475, 0.008905523456633091, -0.04772063344717026, -0.01976926438510418, -0.001474119839258492, 0.02016839198768139, -0.018833810463547707, -0.023386353626847267, 0.010982232168316841, -0.02392267994582653, -0.011294050142168999, -0.01153103169053793, -0.020305590704083443, -0.03906456381082535, -0.0206174086779356, -0.026217661798000336, -0.03951358422636986, 0.0015388220781460404, -0.0008738700998947024, -0.024184608832001686, 0.016588719561696053, 0.0007140633533708751, 0.00743374228477478, 0.003592143999412656, 0.01975679211318493, 0.005915188230574131, 0.022401008754968643, 0.014243848621845245, 0.02302464470267296, -0.029560351744294167, 0.02509511634707451, 0.017574064433574677, -0.00786405149847269, 0.031905222684144974, 0.012372939847409725, -0.0075647057965397835, -0.0047614616341888905, -0.037368275225162506, -0.01899595558643341, -0.004671034403145313, 0.035247910767793655, 0.03215467557311058, -0.02811351604759693, 0.016351738944649696, 0.012784539721906185, 0.029360787943005562, -0.02146555483341217, 0.014929847791790962, -0.019881518557667732, 0.016202066093683243, 0.053582813590765, -0.009055196307599545, 0.05443095788359642, -0.016613665968179703, 0.0030402259435504675, 0.0008590587531216443, -0.055877793580293655, -0.02518242597579956, 0.05443095788359642, -0.04367947205901146, 0.010801377706229687, -0.0047614616341888905, -0.024259444326162338, 0.007146869786083698, -0.009691305458545685, 0.02763955108821392, -0.024147190153598785, -0.011693176813423634, -0.03579671308398247, 0.002319926396012306, -0.008250705897808075, -0.038914892822504044, 0.006666670087724924, -0.03225445747375488, -0.012185849249362946, 0.02220144495368004, -0.00868725124746561, 0.031032131984829903, -0.016663556918501854, 0.023186789825558662, -0.009017777629196644, 0.0578734315931797, 0.03497351333498955, 0.0024789534509181976, -0.034424711018800735, -0.08576243370771408, 0.026866242289543152, 0.0035547257866710424, 0.004215780179947615, -0.05448085069656372, -0.053732484579086304, -0.015827884897589684, -0.026891188696026802, -0.024870608001947403, 0.036121003329753876, -0.02397257089614868, -0.029410678893327713, -0.009522923268377781, -0.06415968388319016, -0.005874651949852705, 0.002028376329690218, -0.009890868328511715, -0.016339266672730446, -0.014618029817938805, -0.01892112009227276, 0.020480209961533546, -0.048918016254901886, 0.008400377817451954, -0.03335205838084221, -0.02931089699268341, 0.0038228894118219614, 0.005459934007376432, -0.009803559631109238, 0.009067668579518795, -0.008531342260539532, -0.014705339446663857, 0.015353920869529247, -0.0008122860454022884, 0.022413481026887894, -0.00024789533927105367, -0.023199262097477913, 0.015341447666287422, -0.014430939219892025, -0.006336142774671316, -0.02756471559405327, -0.013769885525107384, 0.00690988777205348, -0.042631763964891434, -0.01096352282911539, -0.004009980242699385, -0.008400377817451954, -0.015328975394368172, -0.015565956942737103, 0.024995334446430206, 0.029011551290750504, -0.00928594172000885, -0.02432180754840374, 0.009335832670331001, -0.002680076053366065, -0.02223886363208294, -0.008163396269083023, 0.00556595204398036, 0.007776742335408926, 0.009017777629196644, -0.0034019348677247763, 0.03173060342669487, 0.02181479148566723, 0.019669482484459877, 0.004440288990736008, 0.008612414821982384, 0.008281887508928776, -0.00806985143572092, -0.017037738114595413, 0.00843156035989523, 0.05408172309398651, -0.008207051083445549, -0.04258187115192413, 0.01379483100026846, 0.00252260803245008, 0.034000638872385025, 0.030608059838414192, 0.005612724926322699, -0.02674151584506035, -0.002775180619210005, 0.007265360560268164, -0.024246972054243088, 0.024957917630672455, -0.007976305671036243, -0.008325542323291302, -0.01728719286620617, -0.009946995414793491, 0.013246030546724796, -0.021552864462137222, -0.02968507818877697, 0.01981915533542633, -0.016663556918501854, -0.029809806495904922, 0.0016495174495503306, -0.007876523770391941, -0.019519809633493423, -0.024533843621611595, -0.0039195530116558075, 0.011244159191846848, -0.03247896954417229, -0.04629874229431152, 0.036071110516786575, 0.006367324385792017, -0.017237301915884018, -0.001884940080344677, 0.01562832109630108, 0.10556911677122116, -0.028762096539139748, -0.03918929398059845, -0.005946370307356119, 0.004312443546950817, -0.01566573977470398, -0.03988776355981827, 0.036470238119363785, -0.01696290262043476, -0.00826941430568695, -0.03661991283297539, 0.006273779086768627, -0.002942003309726715, -0.007988778874278069, -0.0185095202177763, -0.0004053634766023606, 0.012210794724524021, -0.0075459969229996204, 0.0082569420337677, -0.0040848166681826115, 0.0015302470419555902, 0.0008972564246505499, 0.0058808885514736176, -0.0037199894431978464, -0.0205550454556942, -0.012135958299040794, 0.013233558274805546, -0.017561592161655426, 0.018796391785144806, 0.015403811819851398, -0.0018693491583690047, -0.04031183570623398, -0.03589649498462677, -0.000661444035358727, 0.014505775645375252, -0.019257882609963417, 0.020779555663466454, 0.0036981620360165834, -0.034374821931123734, -0.021303409710526466, -0.03931402042508125, -0.023785481229424477, -0.001610540202818811, 0.011805430985987186, 0.003997507505118847, 0.02316184528172016, -0.015777993947267532, -0.04318056255578995, -0.021602755412459373, -0.025743698701262474, 0.006370442919433117, -0.012884321622550488, 0.008244468830525875, -0.02634238824248314, 0.00556907057762146, 0.02926100604236126, -0.0018709083087742329, -0.012510140426456928, 0.0055940160527825356, -0.0062020611949265, 0.01053321361541748, 0.0018864992307499051, 0.002454007975757122, -0.002772062551230192, 0.03340195119380951, -0.003953852690756321, 0.024147190153598785, -0.031531039625406265, 0.008974123746156693, 0.01280948519706726, -0.020816972479224205, -0.002528844401240349, -0.034075476229190826, 0.032903041690588, 0.02883693389594555, -0.010053014382719994, 0.025893371552228928, 0.03417525812983513, 0.03617089241743088, 0.017885884270071983, -0.024895552545785904, 0.005968197714537382, -0.013695049099624157, 0.03948863968253136, 0.023660752922296524, 0.002229499164968729, -0.019145628437399864, 0.0012075153645128012, 0.038989730179309845, -0.007558469660580158, 0.011792958714067936, 0.02801373414695263, -0.03746805712580681, 0.022039299830794334, -0.01889617368578911, -0.01481759361922741, -0.04175867512822151, 0.010015595704317093, -0.004808234516531229, 0.012834430672228336, -0.002968507818877697, -0.02110384590923786, -0.0035547257866710424, 0.0020595581736415625, 0.03477394953370094, 0.0017664493061602116, 0.007408796809613705, -0.035721875727176666, -0.03434987738728523, -0.002213908126577735, 0.03350173309445381, -0.0008699723402969539, -0.002153103705495596, 0.011038359254598618, 0.02393515408039093, 0.01526661217212677, 0.09349552541971207, -0.024982862174510956, -0.0030199578031897545, 0.004384161904454231, 0.022376064211130142, -0.015378866344690323, 0.012541322037577629, 0.02188962697982788, 0.023623336106538773, -0.04170878231525421, -0.025357043370604515, 0.04415343701839447, 0.03452449291944504, 0.06845030188560486, 0.005631433799862862, 0.008724668994545937, 0.004025571048259735, -0.01051450427621603, 0.008581232279539108, -0.023311518132686615, 0.007365142460912466, -0.00781416054815054, 0.025743698701262474, -0.023735590279102325, 0.007720614783465862, 0.005004679784178734, -0.024459008127450943, 0.009335832670331001, 0.017237301915884018, -0.0009151859558187425, 0.03459933027625084, -0.013358285650610924, 0.005481761414557695, -0.004786407109349966, -0.049616489559412, -0.015802938491106033, 0.030633004382252693, 0.00038002824294380844, 0.04250703752040863, -0.023012172430753708, 0.032329294830560684, 0.03866543993353844, 0.008107269182801247, -0.01811039261519909, 0.02719053439795971, 0.022450899705290794, 0.010576868429780006, -0.004468352533876896, -0.021976936608552933, 0.030333660542964935, -0.042257580906152725, 0.005974433850497007, 0.048069871962070465, 0.01092610415071249, 0.026217661798000336, 0.012229504063725471, 0.0372435487806797, 0.003119739703834057, 0.014293739572167397, 0.004929843358695507, -0.031181804835796356, 0.03472405672073364, 0.03676958382129669, -0.007302778773009777, -0.01731213741004467, 0.014169012196362019, 0.0007639542454853654, 0.005946370307356119, 0.007508578710258007, 0.018709082156419754, 0.024608680978417397, -0.018372319638729095, 0.0027533534448593855, 0.01779857464134693, 0.008868105709552765, 0.046398524194955826, 0.025344571098685265, -0.01399439387023449, 0.022188972681760788, 0.03250391408801079, 0.022987226024270058, 0.01774868369102478, 0.02841285988688469, 0.01816028356552124, -0.009641414508223534, 0.01214843150228262, 0.013458066619932652, 0.010676650330424309, -0.0029404442757368088, 0.010595577768981457, -0.0022045536898076534, -0.002319926396012306, 0.012478958815336227, 0.008338014595210552, -0.017623955383896828, -0.011605868116021156, -0.0037823528982698917, -0.032354239374399185, -0.028138460591435432, -0.003557843854650855, -0.0027517941780388355, 0.0005601031589321792, 0.013058939948678017, -0.014343630522489548, 0.02798878774046898, -0.01464297529309988, -0.017212355509400368, 0.008107269182801247, 0.06031808257102966, -0.0018241355428472161, 0.011761777102947235, 0.03222951292991638, 0.005937015637755394, 0.03392580524086952, 0.014892430044710636, 0.034025587141513824, 0.004468352533876896, 0.008344250731170177, -0.007907705381512642, 0.02428438887000084, -0.0184970460832119, 0.003539134981110692, -0.03547242283821106, 0.07219211757183075, -0.009828505106270313, -0.0037729984614998102, 0.0011272222036495805, -0.005656379275023937, 0.013383231125772, -0.001440599444322288, 0.01156221330165863, 0.03168071433901787, -0.035696931183338165, 0.012478958815336227, 0.0076894331723451614, -0.024521371349692345, -0.03991271182894707, 0.001453851698897779, -0.010969758965075016, 0.0040193344466388226, 0.006002497393637896, -0.037717510014772415, -0.009778614155948162, 0.010190214030444622, 0.027365151792764664, 0.011674467474222183, -0.030682895332574844, 0.04425321891903877, 0.04505147039890289, 0.01012161374092102, 0.015304029919207096, -0.006541942711919546, 0.014742757193744183, 0.011200504377484322, 0.008406614884734154, 0.026317443698644638, -0.026916133239865303, -0.024920498952269554, -0.013907085172832012, 0.0226130448281765, -0.017885884270071983, 0.001769567490555346, -0.009310887195169926, -0.02227628231048584, 0.005141879431903362, -0.05248521268367767, -0.026492061093449593, 0.004543188959360123, -0.0005199565785005689, 0.014256320893764496, -0.02883693389594555, -0.017848465591669083, 0.03494856879115105, 0.009117559529840946, 0.010788904502987862, 0.002906144130975008, 0.009229814633727074, -0.0032959168311208487, -0.00866854190826416, -0.003188339527696371, 0.01602744869887829, 0.021951990202069283, 0.01363268494606018, -0.00702214241027832, -0.008830687031149864, 0.0184970460832119, 0.002386967185884714, 0.006120988167822361, 0.026990970596671104, 0.007521051447838545, -0.01605239324271679, -0.004611788783222437, 0.009834741242229939, -0.009030250832438469, 0.03088245913386345, 0.026267552748322487, -0.031181804835796356, -0.0030994713306427, 0.00454007089138031, 0.0041440618224442005, 0.004833179991692305, -0.021652644500136375, -0.04607423394918442, 0.011593394912779331, 0.04220769181847572, 0.0023807308170944452, -0.02025569975376129, -0.0031290941406041384, 0.02021828293800354, -0.00966635998338461, 0.016601193696260452, -0.029859695583581924, 0.007309014908969402, -0.011805430985987186, 0.0013525107642635703, 0.021328354254364967, -0.015603375621140003, -0.05847211927175522, -0.010246341116726398, -0.029510460793972015, -0.009086377918720245, 0.04033678397536278, 0.001494387979619205, 0.009591523557901382, 0.009984414093196392, 0.0025553489103913307, 0.02015591785311699, 0.06815095245838165, -0.014655448496341705, -0.01892112009227276, -0.0008723110076971352, 0.054281286895275116, 0.0033208623062819242, -0.003950734622776508, 0.0017633311217650771, 0.006117870099842548, -0.006289369892328978, -0.04657314345240593, 0.021540390327572823, 0.008094796910881996, 0.010676650330424309, -0.0007912383298389614, -0.009167450480163097, 0.03420020267367363, 0.04160900041460991, -0.0006057065911591053, 0.007047087885439396, 0.022912390530109406, -0.0227502454072237, -0.01173683162778616, -0.0018553173867985606, 0.0008465860155411065, 0.002508576260879636, 0.0005753043224103749, 0.008331778459250927, 0.02100406400859356, 0.02180231735110283, -0.02016839198768139, -0.013146248646080494, 0.0016198947560042143, 0.005784224718809128, -0.0008520428091287613, -0.022014353424310684, 0.01174930389970541, -0.01933271996676922, 0.011387594975531101, -0.005032743327319622, -0.0032865621615201235, -0.018247593194246292, -0.005606488324701786, -0.005531652364879847, 0.0011880267411470413, 0.0014624266186729074, -0.026591842994093895, -0.0014117562677711248, -0.003105707699432969, 0.00847521424293518, -0.0102775227278471, 0.020517626777291298, -0.02020580880343914, -0.014343630522489548, -0.01818522810935974, 0.011824140325188637, 0.0065793609246611595, -0.014006867073476315, -0.01894606463611126, -0.014929847791790962, -0.001830371911637485, 0.030308714136481285, -0.03754289448261261, 0.021141264587640762, -0.022563153877854347, 0.01007172279059887, -0.02758966200053692, 0.02016839198768139, -0.016202066093683243, 0.004156534560024738, -0.01380730327218771, -0.006410979200154543, 0.013433121144771576, -0.0031727487221360207, -0.008175869472324848, 0.008799505420029163, -0.00035722655593417585, 0.040985364466905594, -0.028587479144334793, -0.01736202836036682, -0.01776115596294403, 0.002845339709892869, 0.03826631233096123, 0.02756471559405327, -0.01858435571193695, 0.00966012291610241, 0.00442781625315547, 0.030657950788736343, 0.019145628437399864, 0.06296230107545853, -0.0033208623062819242, -0.005675088614225388, 0.01485501229763031, 0.004028689116239548, 0.001343935844488442, 0.022912390530109406, -0.029560351744294167, -0.014879957772791386, -0.004359216429293156, -0.023698171600699425, 0.01565326564013958, -0.014742757193744183, -0.02178984507918358, 0.02556907944381237, -0.0077081420458853245, 0.009404432028532028, -0.012154667638242245, -0.018821338191628456, 0.010371068492531776, -0.008556287735700607, 0.015353920869529247, -0.006392269860953093, 0.03502340242266655, -0.03671969473361969, -0.035297803580760956, -0.011368886567652225, -0.017960719764232635, -0.02142813615500927, -0.002036171965301037, 0.019694428890943527, -0.029136277735233307, -0.010046777315437794, 0.026616789400577545, 0.00868101418018341, 0.024920498952269554, 0.02550671622157097, -0.009628941304981709, 0.027040861546993256, -0.0042064255103468895, 0.0005741349887102842, -0.005185534246265888, -0.00722794234752655, -0.0006275338237173855, -0.0154661750420928, -0.006429688073694706, 0.010371068492531776, 0.006778924260288477, 0.005135643295943737, -0.009142505005002022, 0.0023557853419333696, -0.013570321723818779, 0.021315881982445717, -0.011350177228450775, 0.0005433429614640772, -0.007390087936073542, 0.005120052490383387, 0.0027705032844096422, -0.003676334861665964, -0.022001881152391434, 0.0071531059220433235, -0.001508419867604971, 0.011755540035665035, 0.009647650644183159, 0.05652637779712677, 0.031955115497112274, -0.020954173058271408, 0.00444340705871582, -0.013158721849322319, 0.00012229113781359047, -0.004702216014266014, 0.0005008577718399465, 0.024459008127450943, -0.029934532940387726, 0.0029108214657753706, 0.014742757193744183, -0.0037324619479477406, -0.020093554630875587, 0.03395074978470802, 0.03247896954417229, 0.024633625522255898, -0.029161224141716957, -0.023610861971974373, 0.04737139865756035, 0.024222025647759438, -0.04787030816078186, -0.02893671579658985, -0.02883693389594555, 0.016576247289776802, -0.04068601876497269, 0.0037137530744075775, 0.0164390467107296, 0.03592143952846527, 0.0024025579914450645, -0.020916754379868507, -0.014356102794408798, -0.009803559631109238, 0.015029629692435265, -0.008493923582136631, 0.01818522810935974, -0.003461180254817009, 0.004480825271457434, 0.02599315345287323, 0.025718752294778824, -0.00043225777335464954, 0.012722176499664783, -0.0329778753221035, 0.008057378232479095, -0.013757412321865559, 0.013607739470899105, -0.0028001260943710804, -0.008319305256009102, -0.031181804835796356, -0.012154667638242245, -0.013944502919912338, -0.008356723934412003, -0.021602755412459373, 0.004193952772766352, -0.008144687861204147, 0.008344250731170177, 0.015603375621140003, 0.01566573977470398, 0.006573124323040247, 0.04178361967206001, 0.020742136985063553, -0.0019925173837691545, -0.02104148268699646, -0.007807923946529627, -0.006120988167822361, 0.007951360195875168, -0.02971002459526062, 0.0073589058592915535, -0.012341758236289024, 0.042257580906152725, -0.04041161760687828, -0.025768643245100975, 0.00863112322986126, -0.009229814633727074, 0.006211415398865938, 0.026492061093449593, -0.06381044536828995, 0.03380107507109642, 0.0165513027459383, 3.14010503643658e-05, -0.022787662222981453, -0.04083569347858429, 0.0053352066315710545, -0.0030261941719800234, -0.005927660968154669, 0.0028624897822737694, -0.03415031358599663, -0.030183987691998482, 0.006523233838379383, 0.015116939321160316, 0.021340826526284218, -0.012628630734980106, 0.04687248915433884, -0.02721547894179821, 0.007521051447838545, -0.010957286693155766, -0.0024368581362068653, -0.000596352037973702, -0.021116318181157112, -0.014493303373456001, -0.030183987691998482, -0.008986596018075943, 0.004571252502501011, 0.011686940677464008, -0.004901779815554619, 0.013882139697670937, 0.0006606645183637738, 0.015116939321160316, -0.04906768724322319, 0.04814470559358597, 0.0029295305721461773, 0.03759278357028961, 0.01320861279964447, -0.009086377918720245, -0.028737151995301247, -0.04502652585506439, 0.019644537940621376, -0.013969448395073414, -0.0072965421713888645, 0.017586538568139076, -0.026167770847678185, -0.020293118432164192, -0.002995012328028679, -0.012703467160463333, -0.003910198342055082, 0.02144060842692852, -0.01571562886238098, -0.011456195265054703, 0.012472721748054028, 0.017623955383896828, 0.008824450895190239, 0.027689442038536072, 0.007608360610902309, -0.028787042945623398, 0.01158092264086008, -0.020517626777291298, -0.008774559944868088, 0.0070720333606004715, 0.018235119059681892, 0.006448397412896156, 0.017187410965561867, -0.0031898985616862774, 0.055478665977716446, 0.018422210589051247, 0.04914252460002899, 0.0330277681350708, -0.0009370132465846837, -0.004973497707396746, 0.008618650957942009, 0.022987226024270058, 0.02551918849349022, 0.003030871506780386, 0.04460245370864868, 0.013570321723818779, 0.0013205494033172727, -0.03210478648543358, -0.03602122142910957, -0.019544756039977074, 0.008537578396499157, -0.012048649601638317, -0.009273468516767025, 0.019519809633493423, 0.018285010010004044, -0.02971002459526062, -0.010782668367028236, 0.03230435028672218, 0.014792648144066334, -0.0013072971487417817, -0.012491431087255478, -0.00826941430568695, -0.043903980404138565, 0.05946993827819824, 0.02183973602950573, -0.005282197613269091, -0.026192715391516685, 0.0013618653174489737, -0.013370757922530174, 0.016676029190421104, -0.016576247289776802, 0.0494418703019619, -0.02311195433139801, 0.03549736738204956, 0.023236680775880814, -0.004169007297605276, 0.02719053439795971, 0.0034861257299780846, -0.016251957044005394, -0.04278143495321274, 0.00847521424293518, 0.001212972216308117, 0.0007495326572097838, -0.00967883225530386, 0.036445293575525284, -0.010576868429780006, 0.016401629894971848, 0.022039299830794334, 0.019295301288366318, 0.024521371349692345, 0.03432492911815643, 0.019282829016447067, -0.021303409710526466, -0.022488318383693695, -0.008375433273613453, -0.003963207360357046, -0.004833179991692305, 0.019207991659641266, -0.0075647057965397835, -0.0009557223529554904, 0.019968828186392784, -0.025793589651584625, 0.029136277735233307, 0.008400377817451954, 0.005500470288097858, -0.030183987691998482, -0.022051772102713585, -0.0014936084626242518, 0.0372186042368412, -0.007221706211566925, 0.008487687446177006, -0.012079831212759018, 0.0003609294071793556, -0.004215780179947615, -0.057125065475702286, 0.013657630421221256, 0.010221395641565323, -0.02149049937725067, 0.001987840048968792, 0.0413844920694828, -0.029360787943005562, 0.016588719561696053, -0.024446535855531693, 0.039413802325725555, -0.03963831067085266, 0.04056129232048988, -0.02144060842692852, 0.024147190153598785], [0.0037085385993123055, -0.01925724186003208, 0.06249227002263069, 0.06932089477777481, -0.01154270488768816, 0.05442207679152489, -0.018985647708177567, 0.02014961838722229, -0.0167611725628376, 0.07392504811286926, 0.007430010009557009, 0.014795355498790741, 0.0029875237960368395, 0.022231832146644592, -0.02171451225876808, -0.0035371764097362757, -0.013165797106921673, 0.018895117565989494, -0.007223082240670919, 0.00814779195934534, 0.04834356531500816, 0.044903386384248734, -0.004329322837293148, -0.0020078488159924746, -0.05928488448262215, -0.059233155101537704, 0.009654486551880836, 0.01131637766957283, 0.008703910745680332, -0.048421163111925125, 0.05685348063707352, -0.021779177710413933, 0.0057519529946148396, -0.043558355420827866, 0.01778287999331951, 0.010540397837758064, -0.019994422793388367, -0.01619211956858635, 0.0157523974776268, 0.06714814901351929, 0.0401957742869854, -0.0432220958173275, -0.001492145238444209, -0.00988081470131874, -0.020421212539076805, 0.039445661008358, -0.0027563462499529123, -0.06399250030517578, 0.018416596576571465, 0.02455977350473404, 0.015972258523106575, 0.061871487647295, 0.005832784343510866, -0.03727291524410248, -0.0011284045176580548, 0.0018655856838449836, 0.03874727711081505, 0.04780038073658943, 0.0028242445550858974, -0.035669222474098206, 0.01819673553109169, -0.05400821939110756, -0.014394432306289673, 0.008257722482085228, 0.01864938996732235, 0.005958881229162216, -0.008205990307033062, -0.011898363009095192, -0.01716209575533867, -0.01665770821273327, 0.05649135634303093, 0.06601005047559738, 0.014329767785966396, 0.013696050271391869, 0.021313589066267014, -0.01108358334749937, -0.0265902541577816, 0.031737588346004486, -0.01570066623389721, 0.00024754577316343784, -0.03494497388601303, 0.011827231384813786, 0.019981490448117256, -0.021727444604039192, 0.007501141633838415, -0.018403662368655205, -0.037635039538145065, -0.002240642672404647, -0.007436476647853851, -0.005069737322628498, -0.005363963078707457, 0.0021129294764250517, -0.07894305139780045, 0.013592585921287537, 0.031737588346004486, -0.03486737608909607, 0.02368032932281494, -0.013928844593465328, -0.0002669452514965087, -0.022244764491915703, -0.040557898581027985, -0.0364193357527256, -0.03481564298272133, 0.001014432404190302, -0.0006337171653285623, -0.013708983547985554, -0.004730246029794216, 0.034660447388887405, 0.0011696284636855125, -0.017369022592902184, 0.01762768253684044, -0.01576532982289791, -0.006654030177742243, 0.05571537837386131, -0.04169600084424019, -0.007119618356227875, -0.07408024370670319, -0.029176855459809303, 0.01665770821273327, 0.04433433338999748, -0.023938989266753197, -0.025284020230174065, 0.01917964406311512, -0.037065986543893814, 0.0045491838827729225, -0.012072958052158356, -0.011432774364948273, -0.02013668604195118, -0.06130243465304375, -0.03447938710451126, 0.04518791288137436, -0.007139017805457115, 0.05196480453014374, -0.046998534351587296, -0.030832279473543167, 0.008199524134397507, -0.037531573325395584, -0.03101334162056446, -0.02612466551363468, -0.0150281498208642, 0.013696050271391869, 0.01914084516465664, 0.023861391469836235, 0.014316834509372711, -0.04539484158158302, -0.007274814415723085, 0.012163489125669003, 0.026693718507885933, 0.005722853820770979, -0.0067574940621852875, 0.008031395263969898, 0.05804331600666046, -0.013812446966767311, -0.019076179713010788, -0.004219392314553261, -0.014446164481341839, 0.032203178852796555, 0.06709641963243484, 0.017976874485611916, -0.004875742364674807, -0.025245221331715584, -0.01872698776423931, -0.024262312799692154, 0.00406419625505805, -0.009499290958046913, 0.009428159333765507, -0.02612466551363468, 0.021520517766475677, -0.0309357438236475, -0.04772278293967247, -0.012157022953033447, -0.07190749794244766, -0.03491910919547081, 0.027340367436408997, -0.029228586703538895, -0.05499112978577614, 0.0015762097900733352, 0.00735887885093689, 0.018002741038799286, -0.027780089527368546, 0.01566186733543873, 0.02269742079079151, -0.09327282011508942, -0.02705584280192852, -0.056232698261737823, 0.016618909314274788, 0.021843841299414635, 0.016864635050296783, -0.028659535571932793, 0.008690978400409222, -0.004187059588730335, 0.02018841728568077, 0.04386874660849571, -0.005325164180248976, -0.014148705638945103, 0.01548080425709486, -0.03235837444663048, -0.010268804617226124, 0.02806461602449417, -0.05209413543343544, 0.009900214150547981, -0.02511589229106903, 0.02212836779654026, -0.01923137530684471, -0.025296954438090324, -0.0309357438236475, -0.0355398915708065, 0.015532536432147026, 0.009842014871537685, -0.06471674889326096, -0.01920550875365734, -0.04376528039574623, -0.01864938996732235, 0.03442765399813652, -0.004313156474381685, -0.004626781679689884, -0.06145763024687767, 0.02011081948876381, 0.019528834149241447, 0.032280776649713516, 0.006586131639778614, 0.04161840304732323, 0.028193946927785873, -0.03967845439910889, -0.04968859627842903, -0.006595831364393234, 0.0026900647208094597, -0.07625298202037811, -0.007863265462219715, -0.03675559535622597, 0.02909925766289234, -0.0003928399528376758, 0.0030295560136437416, -0.016476646065711975, -0.015054015442728996, -0.028116349130868912, 0.0206669382750988, -0.022309429943561554, 0.026344526559114456, 0.01421337015926838, 0.03936805948615074, -0.02402951940894127, 0.0033528809435665607, 0.04862809181213379, 0.028607802465558052, -0.004727012477815151, 0.0008883356349542737, -0.059750474989414215, -0.01323692873120308, 0.05804331600666046, 0.01776994578540325, 0.03396206721663475, 0.06047472357749939, -0.051861342042684555, -0.02412005141377449, 0.018093271180987358, 0.004487751983106136, -0.051887206733226776, 0.004274357575923204, 0.038540348410606384, -0.04831770062446594, -0.025827206671237946, 0.006363037507981062, -0.037531573325395584, -0.07651164382696152, -0.02606000192463398, -0.017989806830883026, -0.0023117742966860533, -0.03900593891739845, 0.017381956800818443, -0.014614293351769447, 0.024236448109149933, 0.014795355498790741, -0.04754171893000603, -0.07128671556711197, 0.0171362292021513, -0.020990263670682907, -3.5237382689956576e-05, 0.0014177804114297032, -0.06331998109817505, -0.027909420430660248, 0.005318697541952133, 0.0008232664549723268, -0.05457727238535881, 0.0187140554189682, 0.010889588855206966, -0.012745474465191364, 0.005415694788098335, -0.03885073959827423, -0.017019832506775856, 0.05643962696194649, 0.011950095184147358, -0.0035598091781139374, -0.0345311164855957, 0.03776437044143677, 0.04358422011137009, 0.007365345023572445, -0.021753311157226562, -0.04283410683274269, -0.0027870621997863054, -0.011626769788563251, 0.02512882463634014, -0.03794543072581291, -0.03142719715833664, -0.059647008776664734, 0.03484151139855385, 0.017097430303692818, -0.0025898339226841927, -0.020460011437535286, 0.007539940532296896, -0.03644520416855812, 0.034143127501010895, -0.00699028791859746, -0.03256530314683914, -0.052766650915145874, 0.018843384459614754, 0.0034434120170772076, 0.019308973103761673, -0.0026270162779837847, -0.002874359954148531, 0.005894216243177652, 0.005195833742618561, 0.023848457261919975, 0.00027240137569606304, -0.017563018947839737, -0.013282193802297115, -0.01158797089010477, -0.0051893675699830055, -0.045963890850543976, -0.047386523336172104, 5.5217860790435225e-05, 0.00442632008343935, 0.0433514267206192, 0.013566720299422741, -0.01967109739780426, -0.030082164332270622, -0.036626264452934265, 0.03191865235567093, 0.008658645674586296, 0.04966273158788681, 0.007940864190459251, -0.022839684039354324, -0.0002685618819668889, 0.008729777298867702, -0.030573619529604912, 0.04384288191795349, -0.012609678320586681, -0.007255414500832558, -0.012098824605345726, 0.030340824276208878, -0.014627226628363132, 0.023499267175793648, -0.05258559063076973, 0.02946138009428978, -0.056956946849823, 0.04728305712342262, 0.016308516263961792, 0.021999038755893707, 0.010307603515684605, -0.002732096938416362, -0.0009521923493593931, 0.019981490448117256, 0.01679997146129608, 0.016476646065711975, 0.028762998059391975, 0.005758419632911682, -0.05654308944940567, -0.013915911316871643, 0.027392100542783737, -0.03983364999294281, 0.002576900878921151, 0.03331541642546654, 0.016890501603484154, 0.014769489876925945, -0.021442918106913567, 0.006886824034154415, -0.0020870633888989687, 0.016929300501942635, 0.022904347628355026, 0.047929707914590836, 0.024779634550213814, 0.030728815123438835, 0.007326546125113964, -0.0020417978521436453, 0.011995360255241394, 0.05540498346090317, -0.029357917606830597, -0.04024750366806984, -0.05835371091961861, -0.0029826739337295294, 0.011251712217926979, -0.016140388324856758, -0.01778287999331951, 0.048860885202884674, -0.0471278615295887, 0.03383273631334305, 0.0045006852596998215, 0.015196278691291809, 0.04265304282307625, 0.028116349130868912, 0.016929300501942635, -0.05990567058324814, -0.020848000422120094, 0.024947762489318848, -0.05307704582810402, -0.013101131655275822, -0.04161840304732323, -0.014872953295707703, -0.01231221854686737, 0.0018720522057265043, 0.02458563819527626, 0.03822995722293854, 0.05240452662110329, -0.011788432486355305, 0.020007355138659477, 0.0019351005321368575, -0.06042299047112465, 0.04123041406273842, -0.001037873444147408, -0.01970989629626274, 0.05452553927898407, 0.012616144493222237, 0.008787975646555424, -0.015041082166135311, -0.029228586703538895, 0.04534310847520828, 0.05737080052495003, -0.003653573337942362, 0.025775475427508354, -0.07133844494819641, -0.019425369799137115, 0.015079881064593792, 0.017356090247631073, 0.023434601724147797, -0.031685858964920044, -0.035591624677181244, 0.02801288478076458, 0.037117719650268555, 0.007268347777426243, -0.052301064133644104, -0.006246640346944332, -0.014588427729904652, 0.0008519615512341261, -0.01475655660033226, -0.005852183792740107, 0.01961936615407467, 0.031065072864294052, -0.0161274541169405, 0.00540922861546278, 0.012887737713754177, 0.01723969355225563, 0.002108079381287098, -0.04917127639055252, -0.008218923583626747, -0.04761931672692299, 0.009906680323183537, 0.019011514261364937, -0.061664558947086334, 0.014109906740486622, -0.05566364526748657, 0.01775701344013214, 0.039109401404857635, 0.04288583621382713, 0.05700867623090744, 0.003663273062556982, -0.012939469888806343, -0.027831822633743286, -0.017989806830883026, 0.007779201492667198, -0.007843866012990475, 0.020744536072015762, -0.016463713720440865, -0.03639347106218338, -0.006246640346944332, 0.03634173795580864, -0.022775018587708473, 0.0034078462049365044, -0.038126491010189056, 0.0027223972138017416, 0.0038734343834221363, -0.026667851954698563, 0.04037683457136154, -0.064509816467762, -0.0068092262372374535, 0.052870117127895355, -0.027857689186930656, 0.040506165474653244, 0.015842929482460022, 0.021895574405789375, 0.00601384649053216, -0.00737827830016613, 0.00440692063421011, 0.0365486666560173, -0.014303901232779026, 0.01620505191385746, 0.003976898267865181, -0.03623827546834946, 0.004536250606179237, 0.01723969355225563, -0.015105747617781162, 0.01861059106886387, -0.07832226902246475, -0.0010718225967139006, -0.0014646626077592373, 0.02798701822757721, -0.013424457050859928, -0.00014600147551391274, -0.0005193409160710871, -0.05561191216111183, 0.03153065964579582, -0.041101083159446716, 0.015222144313156605, 0.019360706210136414, 0.02559441328048706, -0.023938989266753197, -0.014303901232779026, 0.013708983547985554, -0.03631587326526642, -0.045989759266376495, 0.018597658723592758, -0.003521010046824813, -0.022490492090582848, 0.02261982299387455, 0.0070096878334879875, -0.004882208537310362, 0.01773114688694477, 0.0006442252197302878, -0.05061977356672287, -0.0014509212924167514, 0.008503449149429798, -0.004736712202429771, -0.021779177710413933, -0.007850333116948605, 0.03290155902504921, -0.0007646637968719006, 0.0041094617918133736, -0.011439241468906403, -0.021248923614621162, -0.0052152336575090885, -0.02065400592982769, 0.008141325786709785, 0.014290967956185341, -0.0021210124250501394, 0.004636481404304504, 0.005609690211713314, -0.010275270789861679, 0.02845260687172413, 0.03691079095005989, 0.002371589420363307, 0.0026609653141349554, 0.0056775882840156555, 0.019580567255616188, 0.003753804136067629, -0.012215221300721169, -0.009053101763129234, 0.015312675386667252, 0.003980131819844246, -0.061664558947086334, 0.01572653092443943, -0.02697824500501156, -0.01722675934433937, 0.016993965953588486, 0.012215221300721169, 0.012829539366066456, 0.007352412212640047, 0.036057211458683014, 0.015118680894374847, 0.01867525652050972, -0.013476189225912094, 0.025206422433257103, -0.005192600656300783, -0.019373638555407524, 0.013243394903838634, -0.04081655666232109, 0.04332555830478668, 0.019308973103761673, 0.014821221120655537, -0.05266318842768669, 0.025452150031924248, 0.0123186856508255, -0.016399048268795013, 0.02505122683942318, -0.026771316304802895, -0.009188898839056492, -0.0050632706843316555, 0.027754224836826324, 0.013036467134952545, -0.03385860100388527, -0.0150281498208642, 0.009551023133099079, 0.016916368156671524, 0.04161840304732323, 0.011077117174863815, 0.020731603726744652, 0.012137623503804207, 0.033134352415800095, 0.007501141633838415, -0.009984278120100498, -0.02697824500501156, 0.006544099655002356, -0.005354263354092836, -0.02171451225876808, 0.002673898357897997, -0.0007626430015079677, -0.01965816505253315, 0.016308516263961792, 0.023473400622606277, -0.0021113127004355192, 0.04195466265082359, 0.006996754556894302, 0.0022503426298499107, 0.01864938996732235, -0.007701603230088949, -0.03253943473100662, 0.005903915967792273, 0.005464193876832724, -0.05571537837386131, -0.04073895886540413, 0.0031378697603940964, 0.00958982203155756, -0.012848938815295696, -0.015519603155553341, 0.014433231204748154, -0.015286809764802456, 0.0017184728058055043, 0.004251724574714899, -0.02710757404565811, -0.021313589066267014, -0.02506415918469429, -0.017938075587153435, -0.05597403645515442, -0.003514543641358614, -0.03204798325896263, -0.02452097460627556, 0.031272001564502716, -0.004012464080005884, -0.02113252691924572, 0.020511742681264877, -0.010288204066455364, 0.00018934725085273385, 0.042109858244657516, 0.03199625015258789, 0.019347772002220154, -0.0325135700404644, 0.01721382699906826, 0.03530709818005562, -0.008277121931314468, 0.027935286983847618, -0.007766268216073513, 0.008231856860220432, -0.008180124685168266, -0.0274696983397007, -0.0015188195975497365, -0.017381956800818443, 0.01956763304769993, 0.009156566113233566, -0.009363493882119656, 0.0098614152520895, 0.010980119928717613, 0.02956484444439411, -0.019515901803970337, 0.022387027740478516, -0.01776994578540325, 0.018830452114343643, 0.017925141379237175, -0.006207841448485851, 0.05411168560385704, -0.010204139165580273, 0.020860934630036354, 0.029383782297372818, -0.06368210911750793, 0.01674823835492134, 0.06042299047112465, -0.036652129143476486, -0.006411536131054163, -0.0016667407471686602, -0.011575037613511086, 0.003446645336225629, -0.025775475427508354, 0.012803672812879086, -0.023990720510482788, 0.0027611961122602224, -0.025814274325966835, 0.01623091846704483, -0.00530253117904067, -0.04128214716911316, 0.023473400622606277, -0.024973629042506218, -0.014924685470759869, 0.0005775394383817911, 7.315229595405981e-05, 0.020938532426953316, 0.006508533842861652, 0.02946138009428978, 0.02211543545126915, 0.041980527341365814, 0.019296040758490562, 0.010249405167996883, -0.034246593713760376, -0.09234163910150528, 0.025180557742714882, 0.002858193591237068, -0.01714916154742241, -0.05504285916686058, -0.04389461129903793, -0.03574682027101517, -0.03282396122813225, -0.014834154397249222, 0.03869554400444031, -0.023318205028772354, -0.0096092214807868, 0.007384744938462973, -0.06368210911750793, -0.002439487725496292, 0.01579119637608528, -0.016062790527939796, -0.00749467546120286, -0.02168864570558071, -0.02613759972155094, 0.00034191625309176743, -0.03041842393577099, 0.020951464772224426, -0.013566720299422741, -0.017394889146089554, -0.0026189330965280533, 0.007300680037587881, -0.014640158973634243, 0.014019375666975975, -0.00699028791859746, -0.0008479200187139213, 0.002806461649015546, -0.009428159333765507, 0.01615332067012787, 0.0005274240393191576, -0.03797129541635513, 0.006938556209206581, -0.02412005141377449, -0.010734392330050468, -0.038074761629104614, 0.025710809975862503, -0.03398793190717697, -0.021274790167808533, -0.018998581916093826, 0.005205533932894468, 0.021973172202706337, -0.0069838217459619045, -0.020007355138659477, 0.01679997146129608, 0.039497390389442444, -0.02061520703136921, -0.021520517766475677, 0.010708526708185673, -0.023848457261919975, -0.026641985401511192, 0.006020313128829002, -0.0073976777493953705, -0.006515000481158495, 0.01912791095674038, -0.01252561341971159, 0.02990110218524933, 0.01580413058400154, 0.028245678171515465, -0.016502512618899345, 0.019296040758490562, 0.016036923974752426, -0.025180557742714882, -0.011374576017260551, 0.014885886572301388, 0.03401379659771919, 0.01814500242471695, -0.03603134676814079, 0.02562027983367443, -0.013424457050859928, 0.018054472282528877, 0.030108030885457993, -0.0022794418036937714, -0.031194403767585754, 0.00015014408563729376, 0.006828625686466694, -0.004384288098663092, 0.03256530314683914, -0.0010305986506864429, -0.00882030837237835, -0.0012779423268511891, 0.001473554060794413, 0.009751484729349613, -0.00956395547837019, -0.036057211458683014, 0.007578739896416664, -0.019813360646367073, -0.04816250503063202, 0.013411523774266243, -0.01277780719101429, 0.0008568114717490971, -0.024702034890651703, 0.003330248175188899, 0.016450779512524605, -0.074338898062706, -0.05206827074289322, 0.03181518614292145, -0.012338085100054741, -0.013172263279557228, -0.015868794173002243, 0.009234163910150528, 0.0982908234000206, -0.02067987248301506, -0.032720498740673065, -0.019321907311677933, -0.01177549920976162, 0.0044004544615745544, -0.03538469597697258, 0.02990110218524933, 0.005218466743826866, -0.03647106885910034, -0.03794543072581291, 0.0006034054094925523, 0.0011259795865043998, -0.015610134229063988, -0.002804845105856657, 0.026874780654907227, 0.0038734343834221363, 0.00650206720456481, 0.013657251372933388, -0.014174571260809898, -0.009551023133099079, -0.006873891223222017, 0.017369022592902184, 0.004878975450992584, 0.003727938048541546, 0.002551034791395068, 0.010747325606644154, 0.00029099255334585905, 0.003225167514756322, 0.010010144673287868, 0.006262806709855795, -0.04824010282754898, -0.04818836972117424, 0.005813384894281626, -0.0016214752104133368, -0.041566669940948486, 0.02016255259513855, -0.0031572694424539804, -0.03189278393983841, -0.046041492372751236, -0.024314045906066895, -0.031039206311106682, -0.00600414676591754, 0.03491910919547081, 0.004946873523294926, 0.0064438688568770885, -0.026952378451824188, -0.012182888574898243, -0.00044497614726424217, -0.05168028175830841, 0.00789559818804264, 0.0025849840603768826, 0.008412918075919151, -0.026823047548532486, 0.032746363431215286, 0.010954253375530243, 0.0028889095410704613, 0.011206447146832943, 0.00831592082977295, -0.011853097006678581, 0.019774561747908592, 0.005596756935119629, 0.01567479968070984, -0.0023198574781417847, 0.010475732386112213, -0.011891895905137062, 0.008490516804158688, -0.012616144493222237, 0.032668765634298325, 0.007481742184609175, -0.03688492625951767, -0.021326521411538124, -0.03866967931389809, 0.015248010866343975, 0.009369960986077785, -0.012603211216628551, 0.034220725297927856, 0.031246135011315346, 0.02166277915239334, 0.009046635590493679, -0.029642442241311073, 0.006408303044736385, -0.03246183693408966, 0.03341887891292572, 0.03835928812623024, -0.020770402625203133, -0.010230005718767643, -0.0021775944624096155, -0.005257265642285347, 0.014342700131237507, 0.000963508733548224, 0.018571792170405388, -0.048395298421382904, 0.020809201523661613, -0.01628265157341957, -0.013786581344902515, -0.044463664293289185, -0.011348710395395756, 0.0014978033723309636, 0.01814500242471695, -0.0052637322805821896, -0.011607370339334011, 0.02056347392499447, 0.006253106985241175, 0.014433231204748154, 0.0037150050047785044, 0.007190749514847994, -0.03670386224985123, -0.02607293426990509, 0.005415694788098335, 0.012842471711337566, -0.008044327609241009, 0.00958982203155756, 0.011484506540000439, 0.03096160851418972, -0.011478040367364883, 0.0824090987443924, -0.008141325786709785, 0.01868818886578083, 0.01872698776423931, 0.014510829001665115, -0.020860934630036354, 0.0030974543187767267, 0.02700410969555378, 0.017304357141256332, -0.03639347106218338, -0.015144546516239643, 0.014782422222197056, 0.015260943211615086, 0.04076482728123665, -0.004267890937626362, 0.017925141379237175, -0.0007529432768933475, -0.009848481975495815, 0.02008495293557644, 0.015222144313156605, -0.00540922861546278, -0.0075464071705937386, 0.030702948570251465, -0.06802759319543839, -0.003154036123305559, -0.022981945425271988, -0.0006240173825062811, 0.011348710395395756, -0.004762578289955854, 0.01811913773417473, 0.009363493882119656, -0.012939469888806343, 0.012952402234077454, -0.007927930913865566, -0.07330425828695297, -0.017886342480778694, 0.03259116783738136, 0.01771821454167366, 0.03486737608909607, -0.02842674031853676, 0.01620505191385746, 0.03621240705251694, -0.007527007721364498, -0.03973018378019333, 0.04115281626582146, 0.018481262028217316, 0.03621240705251694, 0.011452173814177513, -0.05253385752439499, 0.053283970803022385, -0.02909925766289234, 0.005968580953776836, 0.048369430005550385, 0.013282193802297115, 0.014265102334320545, 0.004022163804620504, 0.018532993271946907, -0.017330223694443703, 0.028814731165766716, 0.01572653092443943, -0.011264645494520664, 0.020020289346575737, 0.039626721292734146, 0.002413621637970209, -0.009693285450339317, 0.01673530600965023, -0.006602298002690077, 0.033237818628549576, 0.01813207007944584, 0.01548080425709486, 0.0323842391371727, -0.011620303615927696, 0.010611528530716896, -0.0024491874501109123, -0.0029956067446619272, 0.04529137536883354, 0.003705305280163884, -0.008665111847221851, -0.0069320895709097385, 0.03140133246779442, 0.03846275061368942, 0.012486814521253109, 0.02361566387116909, 0.032151445746421814, 0.00030150063685141504, 0.015364407561719418, 0.028633669018745422, 0.00288567622192204, -0.007805067114531994, -0.003598608076572418, -0.010197672992944717, -0.03401379659771919, -0.0010605062125250697, -0.0014420298393815756, -0.020912665873765945, -0.008193057030439377, -0.008684511296451092, -0.03582441806793213, -0.033211950212717056, 0.03577268496155739, 0.009492823854088783, 0.007223082240670919, -0.008678045123815536, -0.010236471891403198, 0.02316300757229328, -0.013269261457026005, -0.019580567255616188, -0.00517643429338932, 0.05545671656727791, -0.0008713610586710274, 0.006030012853443623, 0.032668765634298325, -0.010327002964913845, 0.0344017893075943, -0.0071454839780926704, 0.002620549639686942, -0.01029467023909092, 0.007649871055036783, -0.012764873914420605, 0.031246135011315346, -0.03732464835047722, -0.01762768253684044, -0.044929251074790955, 0.059750474989414215, -0.033625807613134384, -0.004452186170965433, -0.007889132015407085, -0.008076660335063934, -0.0009570422116667032, 0.020472943782806396, 0.005813384894281626, 0.04141147434711456, -0.027262769639492035, 0.0315047949552536, 0.01819673553109169, -0.008535781875252724, -0.03644520416855812, 0.0088526401668787, 0.012144089676439762, 0.0055547249503433704, 0.0013086582766845822, -0.03913526609539986, -0.017291424795985222, -0.01620505191385746, 0.005926548503339291, -0.008775042369961739, -0.030082164332270622, 0.03538469597697258, 0.04179946705698967, 0.0029018425848335028, 0.014329767785966396, 0.01202122587710619, 0.011652635410428047, 0.008277121931314468, 0.00208544684574008, 0.01717502810060978, -0.007210148964077234, -0.018869251012802124, 0.011639703065156937, 0.0290475245565176, -0.008264188654720783, 0.0021889107301831245, 0.002905075903981924, -0.003779670223593712, -0.017886342480778694, -0.01672237366437912, -0.017808744683861732, -0.011303444392979145, -0.01254501286894083, 0.002918008714914322, -0.04141147434711456, -0.008121926337480545, 0.02705584280192852, 0.009984278120100498, -0.003356114262714982, 0.012706675566732883, 0.014329767785966396, 0.00349514395929873, -0.004578283056616783, -0.018959783017635345, 0.011381042189896107, 0.015041082166135311, -0.0004975164774805307, -0.01726555824279785, 0.0019561166409403086, 0.0017217060085386038, 0.015105747617781162, 0.015584268607199192, 0.009324694983661175, 0.029823504388332367, -0.009809683077037334, -0.0018364863935858011, 0.005819851532578468, -0.000366569816833362, 0.03359994292259216, 0.006123777013272047, -0.013204596005380154, -0.014446164481341839, 0.005483593326061964, 0.018597658723592758, 0.016593042761087418, -0.020757470279932022, -0.018765786662697792, -0.002672281814739108, 0.035126037895679474, -0.0033108487259596586, -0.020447077229619026, -0.004781977739185095, 0.016114521771669388, -0.010281736962497234, 0.002340873470529914, -0.025853073224425316, 0.01967109739780426, -0.022762084379792213, 0.004148260690271854, 0.017575951293110847, -0.005638789385557175, -0.03621240705251694, -0.012920070439577103, -0.0057551865465939045, -0.01404524128884077, 0.03044428862631321, -0.006860957946628332, 0.0014396049082279205, 0.007016154006123543, -0.003870201064273715, 0.005564424674957991, 0.07164883613586426, -0.010010144673287868, -0.014174571260809898, 0.042937569320201874, 0.037635039538145065, -0.023887256160378456, -0.008723310194909573, 0.02263275533914566, 0.013114064931869507, -0.015144546516239643, -0.05093016475439072, 0.007960263639688492, 0.01579119637608528, 0.001471129129640758, -0.013605519197881222, 0.0004890291602350771, 0.05147335305809975, 0.03096160851418972, -0.00981614924967289, 0.002821011235937476, 0.0132951270788908, -0.045368973165750504, -0.018545925617218018, -0.002943874802440405, -0.0166318416595459, -0.003986597992479801, 0.02265862189233303, -0.006589365191757679, 0.01722675934433937, 0.01615332067012787, -0.0013927227118983865, -0.020498810335993767, -0.0006397794932126999, 0.00985494814813137, -0.005745486356317997, -0.014368566684424877, 0.007339479401707649, -0.008180124685168266, -0.0023101577535271645, 0.002355423057451844, -0.00808959361165762, -0.02057640813291073, -0.013915911316871643, -0.012764873914420605, 0.013657251372933388, 0.01912791095674038, -0.0078761987388134, -0.01083138957619667, -0.011342243291437626, 0.008962570689618587, -0.017369022592902184, 0.010230005718767643, -0.01580413058400154, -0.0127907395362854, -0.021507583558559418, -0.00887203961610794, -0.018920984119176865, 0.005153801757842302, 0.00502123823389411, -0.010533930733799934, -0.007054953370243311, 0.04467059299349785, -0.036108944565057755, 0.022852616384625435, -0.021947305649518967, -0.002201843773946166, -0.021520517766475677, -0.022723285481333733, -0.007779201492667198, -0.0019221676047891378, -0.027702491730451584, -0.023926055058836937, 0.024197649210691452, 0.013941776938736439, 0.001747571979649365, 0.024805499240756035, -0.024223513901233673, 0.03132373467087746, -0.035591624677181244, 0.012144089676439762, -0.022813817486166954, 0.008387052454054356, 0.025258155539631844, 0.012079425156116486, -0.023460468277335167, 0.010908988304436207, 0.017563018947839737, 0.03090987727046013, 0.0036762061063200235, 0.05105949565768242, 0.004607382230460644, -0.009964878670871258, 0.03747984394431114, -0.004031863529235125, 0.002066047163680196, -0.007708069868385792, -0.007087285630404949, -0.02946138009428978, -0.008503449149429798, -0.0162567850202322, 0.021507583558559418, 0.008050794713199139, -0.0015349858440458775, 0.015597201883792877, -0.018028605729341507, 0.0022939913906157017, -0.028116349130868912, -0.0051117693074047565, 0.00239260564558208, -0.014019375666975975, 0.006835091859102249, 0.0045976825058460236, 0.02263275533914566, -0.00908543448895216, -0.011400442570447922, -0.019011514261364937, -0.02894406020641327, -0.017588883638381958, -0.026848914101719856, 0.003967198543250561, -0.028116349130868912, -0.02263275533914566, 0.015157479792833328, 0.03044428862631321, 0.03538469597697258, 0.025141756981611252, -0.00527343200519681, 0.013107598759233952, -0.013333925977349281, 0.0041094617918133736, -0.009829082526266575, -0.014976417645812035, 0.010456332936882973, -0.022244764491915703, -0.011988894082605839, 0.009369960986077785, 0.0031249369494616985, 0.0021468785125762224, -0.006078511476516724, 0.01031406968832016, 0.013185196556150913, 0.0023942221887409687, 0.0081283925101161, -0.014342700131237507, 0.01968402974307537, 0.0003390871861483902, -0.009738551452755928, -0.007850333116948605, -0.032151445746421814, -0.00288567622192204, -0.0013975726906210184, 0.005454494152218103, 0.002515468979254365, 0.044075675308704376, 0.0013118914794176817, -0.026150532066822052, 0.020278949290513992, -0.021779177710413933, -0.012900670059025288, -0.019800428301095963, 0.004840176552534103, 0.017369022592902184, -0.017601817846298218, 0.004293757025152445, 0.028193946927785873, -0.0007484975503757596, -0.04267891123890877, 0.005441560875624418, 0.022399961948394775, 0.01818380132317543, -0.01813207007944584, -0.013211062178015709, 0.06321652233600616, 0.021817976608872414, -0.0355398915708065, -0.031168537214398384, -0.03685905784368515, 0.018843384459614754, -0.052792519330978394, -0.0007222273852676153, -0.006547332741320133, 0.004335789475589991, -0.010449866764247417, -0.0022535757161676884, -0.010921920649707317, -0.006437402218580246, 0.01917964406311512, -0.011872496455907822, 0.011639703065156937, -0.014433231204748154, -0.003165352391079068, 0.007255414500832558, 0.011555638164281845, 0.011361642740666866, 0.025206422433257103, -0.030314959585666656, 0.018313132226467133, -0.005645256023854017, 0.02106786146759987, 0.006214308086782694, 0.01769234798848629, -0.041075218468904495, -0.01127757877111435, -0.004167660139501095, -0.01454962883144617, -0.006498834118247032, 0.0017831377917900681, -0.00785679928958416, 0.028633669018745422, -0.006198141723871231, 0.01967109739780426, 0.0017815211322158575, 0.052844248712062836, 0.04086828976869583, -0.006582898553460836, -0.018520060926675797, -0.03331541642546654, -0.012435082346200943, 0.01227988675236702, -0.04953340068459511, 0.011206447146832943, -0.015545469708740711, 0.04909367859363556, -0.0433514267206192, -0.013269261457026005, 0.04242024943232536, -0.006427702493965626, 0.0030683549121022224, 0.021313589066267014, -0.03497083857655525, 0.017976874485611916, 0.007087285630404949, -0.004225858952850103, -0.018455395475029945, -0.013618452474474907, 0.0013118914794176817, -0.007830933667719364, -0.020835068076848984, -0.01572653092443943, -0.03432419151067734, -0.03603134676814079, 0.033211950212717056, 0.027340367436408997, 0.010682660154998302, -0.011904829181730747, 0.0345311164855957, -0.01970989629626274, -0.005467426963150501, -0.0166318416595459, 0.012098824605345726, -0.017291424795985222, 0.0008503449498675764, -0.019334839656949043, -0.01571359857916832, -0.026926511898636818, 0.008257722482085228, 0.008736243471503258, -0.01872698776423931, 0.004691446665674448, -0.0044004544615745544, -0.023719128221273422, -0.02894406020641327, 0.024469241499900818, 0.01277134008705616, 0.02705584280192852, 0.0068997573107481, 0.001678057131357491, -0.027185171842575073, -0.02565907873213291, 0.017356090247631073, -0.004807843826711178, 0.021417053416371346, -0.003925166558474302, -0.036677997559309006, -0.002767662750557065, 0.019839227199554443, 0.0012722841929644346, -0.0016053089639171958, 0.009919613599777222, -0.004655880853533745, -0.0023166241589933634, -0.004219392314553261, 0.02311127632856369, 0.010003677569329739, 0.008742709644138813, 0.014847087673842907, -0.03941979259252548, 0.02021428383886814, -0.03794543072581291, 0.004558883607387543, 0.017006898298859596, 0.018429528921842575, 0.019916824996471405, 0.01714916154742241, -0.012538546696305275, 0.045446570962667465, 0.0323842391371727, 0.05046457797288895, 0.04172186926007271, 0.0018219368066638708, -0.023447534069418907, 0.006776893511414528, 0.0007638554670847952, -0.0033237817697227, 0.010165340267121792, 0.03435005620121956, 0.0013911061687394977, -0.0071454839780926704, -0.022257698699831963, -0.026266928762197495, -0.01819673553109169, 0.020007355138659477, 0.0013676650123670697, -0.0265902541577816, 0.012169956229627132, 0.0028258610982447863, -0.020498810335993767, -0.013385658152401447, 0.03600548207759857, 0.024495108053088188, 0.0037020721938461065, -0.0003285791026428342, -0.008865573443472385, -0.03336714953184128, 0.05793985351920128, -0.010223538614809513, 0.00931176170706749, -0.004025397356599569, 0.0037602705415338278, -0.011659102514386177, 0.01566186733543873, -0.02946138009428978, 0.040092308074235916, -0.009078968316316605, 0.04317036271095276, 0.004080362617969513, 0.019477102905511856, 0.03941979259252548, -0.006495600566267967, -0.012713141739368439, -0.02024015039205551, 0.0016715906094759703, -0.006107610650360584, -0.006104377564042807, -0.02352513186633587, 0.038152359426021576, -0.015260943211615086, 0.021029062569141388, 0.010786124505102634, 0.018933916464447975, -0.012823072262108326, 0.014678958803415298, 0.016088655218482018, -0.010727926157414913, -0.008180124685168266, -0.0225551575422287, 0.02452097460627556, 0.019852159544825554, 0.03890247270464897, -0.005955647677183151, -0.00048700839397497475, 0.026667851954698563, -0.041489072144031525, 0.013437390327453613, 0.00710668507963419, 0.011465107090771198, -0.017588883638381958, -0.018933916464447975, -0.012325151823461056, 0.0632682517170906, 0.010896055027842522, 0.013308060355484486, -0.008154258131980896, 0.0077598015777766705, 0.0005064078723080456, -0.07454583048820496, -0.019968556240200996, -0.007087285630404949, -0.011859564110636711, -0.012991201132535934, 0.01923137530684471, -0.02845260687172413, 0.012034159153699875, -0.024339912459254265, 0.028168080374598503, -0.014601360075175762, 0.03259116783738136, -0.04291170462965965, 0.03429832309484482], [-0.007877795025706291, 0.006821180693805218, 0.04386955127120018, 0.037128619849681854, -0.008138604462146759, 0.004554141312837601, 0.003708180971443653, 0.03276841714978218, -0.0009955913992598653, 0.07757420837879181, -0.02051704004406929, -0.013047179207205772, 0.011014199815690517, 0.004898543935269117, -0.02630835771560669, 0.010713266208767891, -0.008914346806704998, 0.04959399625658989, 0.03975009545683861, 0.017280323430895805, 0.04675852507352829, 0.024930745363235474, 0.013963357545435429, 0.011335196904838085, -0.057565413415431976, -0.008900972083210945, -0.022590145468711853, 0.008044980466365814, 0.057886410504579544, -0.052402716130018234, 0.0517607219517231, -0.01071995310485363, 0.026388606056571007, 0.025291867554187775, 0.00041900938958860934, -0.007503298576921225, -0.03544338792562485, 0.0021366344299167395, 0.0037014936096966267, 0.0058782524429261684, 0.01231824979186058, 0.057137418538331985, -0.06430634111166, -0.04806926101446152, -0.05927739664912224, 0.03985709324479103, 0.033677905797958374, -0.039776843041181564, 0.02784646674990654, -0.0008651865064166486, -0.055425435304641724, 0.029932944104075432, 0.021546905860304832, -0.011101136915385723, 0.007824295200407505, 0.01225806213915348, 0.0024258659686893225, 0.024930745363235474, -0.001006458536721766, -0.017026200890541077, 0.06457383930683136, -0.031511180102825165, 0.016116710379719734, 0.01976804807782173, -0.003092937171459198, -0.002424194011837244, -0.004537422675639391, 0.01231824979186058, -0.015247344970703125, -0.03177867457270622, 0.09961598366498947, 0.08153317123651505, -0.003938897512853146, 0.008987908251583576, 0.01780194416642189, -0.03771711513400078, -0.0047647953033447266, 0.005022261291742325, -0.044270798563957214, -0.009783713147044182, -0.04170282557606697, 0.009349029511213303, 0.024984246119856834, -0.029157202690839767, 0.006874680053442717, -0.031323932111263275, -0.05454269424080849, -0.008198791183531284, -0.04467204585671425, -0.009282154962420464, 9.743797272676602e-05, 0.060507882386446, -0.006734244059771299, 0.02644210495054722, 0.03399890288710594, -0.028301211073994637, 0.010017773136496544, -0.033116161823272705, -0.035710886120796204, 0.015929462388157845, 0.010064585134387016, -0.04419054836034775, -0.02950494922697544, -0.009282154962420464, 0.04304031282663345, -0.04183657467365265, -0.015167095698416233, 0.05020923912525177, 0.004634390119463205, -0.06307585537433624, -0.06682082265615463, -0.024542875587940216, -0.0059451269917190075, 0.058367904275655746, 0.0029625322204083204, 0.004483922850340605, -0.0460897795855999, -0.03889410197734833, 0.0192731786519289, 0.00020960919209755957, -0.014712350443005562, -0.020744413137435913, -0.005206165835261345, -0.042665816843509674, 0.035149142146110535, -0.04287981241941452, -0.03918835148215294, -0.001206245506182313, -0.05309820920228958, -0.03728912025690079, 0.05660242214798927, -0.014204105362296104, 0.036005131900310516, -0.026776477694511414, -0.0068880547769367695, -0.012378436513245106, -0.0229245163500309, -0.008125229738652706, -0.01176319271326065, -0.03929534927010536, 0.02656247839331627, 0.016237083822488785, 0.04338805750012398, 0.00046352262143045664, -0.04183657467365265, 0.024048004299402237, -0.0016158507205545902, 0.05735141411423683, 0.007342800032347441, -0.027445219457149506, -0.0034941830672323704, -0.0045006414875388145, 0.019500551745295525, -0.026268232613801956, 0.007128802128136158, 0.03809161111712456, 0.05697691813111305, 0.053633201867341995, 0.013341426849365234, 0.028327960520982742, -0.02648223005235195, -0.060775380581617355, -0.013776109553873539, 0.004116114228963852, -0.0057478477247059345, -0.019072555005550385, -0.05686992034316063, 0.0031882331240922213, -0.051172226667404175, -0.032367169857025146, -0.012338311411440372, -0.048818252980709076, -0.025826862081885338, 0.04595603048801422, -0.0011995580280199647, -0.025719862431287766, -0.0015456327237188816, 0.004721326753497124, 0.019059181213378906, -0.008172041736543179, -0.010325394570827484, -0.019420301541686058, -0.08474313467741013, -0.04475229233503342, -0.04207732155919075, 0.018002565950155258, 0.010679828934371471, -0.022777393460273743, -0.029745696112513542, 0.03549688681960106, 0.012766307219862938, 0.0186713095754385, 0.0072424886748194695, -0.010653078556060791, 0.01411048136651516, -0.00543688191100955, -0.010057897306978703, -0.03932210057973862, 0.04368230327963829, -0.010131459683179855, -0.002440912649035454, -0.04429754987359047, 0.031323932111263275, -0.0034640897065401077, -0.013722609728574753, -0.04871125519275665, -0.024917371571063995, -0.016785454005002975, 0.011709692887961864, -0.02982594631612301, -0.0023740383330732584, -0.053633201867341995, -0.0005508771864697337, 0.0057478477247059345, -0.0012054096441715956, 0.014511726796627045, 0.004510672762989998, 0.03485489636659622, -0.007810920476913452, 0.009221968241035938, -0.02193477563560009, 0.05783291161060333, 0.06248736381530762, -0.011963815428316593, 0.024609748274087906, 0.03629938140511513, 0.0383056104183197, -0.04726676642894745, 0.005162697285413742, -0.04057933762669563, -0.01460535079240799, 0.009429278783500195, 0.010298645123839378, -0.03950934857130051, 0.0062594362534582615, -0.017360573634505272, 0.014163980260491371, -0.0031631551682949066, -0.01493972260504961, 0.01896555721759796, 0.015193845145404339, 0.0025428959634155035, 0.022750644013285637, 0.05293770879507065, -0.01038558129221201, -0.01186350453644991, -0.012873305939137936, 0.0011109496699646115, 0.007710609119385481, 0.03081568516790867, 0.021921401843428612, 0.03616563230752945, 0.03793111443519592, -0.023994505405426025, -0.02779296599328518, 0.016865702345967293, -0.010365519672632217, -0.03383840620517731, 0.03448040038347244, 0.053205206990242004, -0.00859334971755743, -0.026228107511997223, -0.026228107511997223, -0.004517360124737024, -0.06141737475991249, -0.047293517738580704, 0.009716838598251343, -0.0006185874226503074, -0.05053023621439934, 0.03488164395093918, -0.016852328553795815, 0.0427728146314621, 0.06494833528995514, -0.03688787296414375, -0.08324515074491501, -0.046491026878356934, -0.010612954385578632, 0.010954013094305992, 0.028515208512544632, -0.006413246970623732, -0.03252767026424408, 0.009656651876866817, 0.017387323081493378, -0.002009573159739375, 0.00273348786868155, 0.02403463050723076, 0.007088677957653999, -0.014070356264710426, -0.01793569140136242, 0.03678087517619133, 0.07227776199579239, -0.00440701749175787, -0.009429278783500195, 0.008125229738652706, 0.01921967975795269, 0.005329883191734552, 0.009629901498556137, -0.030655186623334885, -0.005426851101219654, 0.02335251122713089, 0.010800202377140522, -0.003982365597039461, -0.013374864123761654, 0.02347288653254509, -0.06211286783218384, 0.034159403294324875, 0.023245513439178467, 0.012204563245177269, 0.015514842234551907, 0.0034975267481058836, -0.038171861320734024, 0.013816233724355698, -0.009161781519651413, -0.025037745013833046, -0.06088237836956978, 0.003902116557583213, 0.04338805750012398, 0.03833235800266266, 0.021533530205488205, 0.01613008603453636, -0.00033520752913318574, -0.0023874130565673113, 0.06345035135746002, -0.008867534808814526, -0.009415904060006142, -0.0012029018253087997, -0.01343505084514618, 0.013856358826160431, -0.023740382865071297, -0.028862955048680305, -0.007489923853427172, -0.02605423517525196, 0.06500183790922165, 0.012886681593954563, -0.02248314581811428, -0.01687907800078392, -0.03437339887022972, 0.04825650900602341, -0.010171583853662014, 0.02958519756793976, 0.04394980147480965, -0.03873360529541969, -0.011107824742794037, 0.034293148666620255, -0.026789851486682892, 0.03664712607860565, -0.008192104287445545, -0.0076236724853515625, -0.00807172991335392, 0.03338366001844406, -0.019487176090478897, 0.07249175757169724, -0.06580433249473572, 0.005874908994883299, -0.05058373510837555, -0.008787285536527634, 0.036138880997896194, -0.009007970802485943, 0.004681202117353678, 0.008265665732324123, -0.029050203040242195, -0.010245145298540592, 0.01044576894491911, -8.469005115330219e-05, 0.00577459717169404, -0.004674514755606651, -0.02094503678381443, -0.0018223251681774855, 0.015849214047193527, -0.03383840620517731, -0.0058280969969928265, 0.03252767026424408, 0.031190183013677597, 0.016665080562233925, -0.03006669320166111, -0.0017061310354620218, -0.00012006030010525137, 0.015581715852022171, -0.0013358144788071513, 0.033865153789520264, 0.027578968554735184, 0.022255772724747658, 0.014805974438786507, -0.000850557757075876, 0.045367538928985596, 0.041997071355581284, -0.05922389775514603, -0.0385463573038578, -0.002370694652199745, 0.022229023277759552, -0.011014199815690517, -0.004102739505469799, -0.019059181213378906, 0.03276841714978218, 0.004570859484374523, 0.0001596624351805076, -0.007443111855536699, 0.03991059213876724, 0.03338366001844406, -0.022269148379564285, 0.005834784358739853, -0.061203375458717346, 0.0019092618022114038, 0.0006954928976483643, -0.03209967166185379, -0.017293699085712433, -0.020436791703104973, -0.03324991092085838, 0.009743588045239449, 0.04039208963513374, 0.03223342075943947, 0.022229023277759552, 0.044698793441057205, -0.009529590606689453, 0.020369917154312134, -0.0013124084798619151, -0.005349945276975632, 0.060507882386446, 0.03338366001844406, -0.038171861320734024, 0.04429754987359047, 0.04587578400969505, 0.0052496339194476604, -0.032126422971487045, -0.01463210117071867, 0.04641077667474747, 0.04713302105665207, -0.021667279303073883, -0.005664254538714886, -0.08105167746543884, -0.0055505684576928616, 0.0074364240281283855, 0.015568341128528118, 0.017333824187517166, -0.0354701392352581, -0.035336390137672424, 0.0404188372194767, -0.0034841520246118307, -0.0030461251735687256, -0.019928546622395515, 0.039215099066495895, -0.04836350679397583, 0.009609839878976345, -0.004868450574576855, -0.007168926764279604, 0.0030344221740961075, -0.02513136900961399, -0.02193477563560009, 0.0015055080875754356, 0.0206909142434597, -0.00829241517931223, -0.0017972473287954926, -0.03177867457270622, 0.00634637288749218, -0.03589813411235809, -0.022951265797019005, -0.0060354070737957954, -0.008111855015158653, 0.051787473261356354, -0.04921949654817581, 0.011455570347607136, 0.059116896241903305, 0.02321876399219036, 0.0614708736538887, 0.05192122235894203, 0.008118541911244392, -0.03461414575576782, -0.013842984102666378, 0.0007523360545746982, -0.018002565950155258, 0.015982961282134056, -0.03172517567873001, -0.013909858651459217, -0.002735159592702985, -0.003905460238456726, -0.048096008598804474, 0.0024191783741116524, -0.04103408008813858, -0.011596007272601128, -0.015447967685759068, -0.014698974788188934, 0.042719315737485886, -0.04378930479288101, -0.0075434232130646706, 0.06858629733324051, 0.0021449937485158443, 0.029424700886011124, -0.003039437811821699, 0.002669957233592868, -0.0030310784932225943, -0.011495695449411869, 0.016611579805612564, 0.029424700886011124, -0.01515372097492218, 0.008245603181421757, -0.01724020019173622, -0.019366802647709846, -0.01732044853270054, 0.024676622822880745, -0.014137230813503265, 0.03338366001844406, -0.046357277780771255, 0.012525559403002262, 0.06350385397672653, 0.03851960599422455, 0.01411048136651516, 0.006466746795922518, -0.009817149490118027, 0.0170128270983696, -0.03215317055583, -0.06082887947559357, 0.005085791926831007, 0.03504214435815811, 0.008372664451599121, -0.013842984102666378, 0.00948277860879898, 0.0192731786519289, -0.014672225341200829, -0.044993042945861816, 0.03399890288710594, 0.023860756307840347, -0.03691462427377701, 0.015809088945388794, 0.02939794957637787, 0.013281239196658134, 0.023165263235569, -0.020115794613957405, -0.030173692852258682, -0.014779224060475826, 0.029852695763111115, 0.0012129329843446612, -0.03110993281006813, -0.016116710379719734, 0.03584463521838188, 0.016063211485743523, 0.009797087870538235, 0.007356175221502781, 0.0034239650703966618, -0.02063741534948349, -0.016972701996564865, 0.032072924077510834, 0.0047781700268387794, 0.005430194549262524, -0.015447967685759068, 0.014484977349638939, 0.017521072179079056, 0.03290216624736786, 0.022523270919919014, 7.706220640102401e-05, 0.018457312136888504, -0.016183584928512573, -0.0014026887947693467, 0.013441737741231918, -0.02168065309524536, -0.018617810681462288, 0.006861304864287376, 0.028568709269165993, -0.041007332503795624, 0.020356543362140656, -0.008793972432613373, -0.04151557758450508, 0.002347288653254509, 0.003164827125146985, -0.012980305589735508, -0.046303778886795044, 0.044270798563957214, 0.03258116915822029, 0.007717296481132507, 0.013448425568640232, 0.005376695189625025, -0.026094358414411545, -0.01112119946628809, 0.00773067120462656, -0.031083183363080025, 0.05772591009736061, 0.009235342964529991, -0.004724670667201281, -0.04643752798438072, 0.0019911827985197306, 0.03868010640144348, -0.02555936388671398, -0.003801804967224598, -0.00562078645452857, 0.0004509836726356298, -4.45393416157458e-05, 0.011656193993985653, 0.012425248511135578, -0.022469770163297653, 0.008573287166655064, 0.013381551019847393, 0.02212202362716198, 0.007610297296196222, 0.019085930660367012, 0.0038553045596927404, 0.046303778886795044, 0.04467204585671425, -0.0052763838320970535, 0.0271777231246233, -0.011368634179234505, 0.02907695434987545, -0.010586204938590527, -0.0065336208790540695, -0.02668285369873047, -0.00753004802390933, 0.009609839878976345, 0.009991022758185863, 0.006343028973788023, -0.0012070814846083522, 0.02477024681866169, 0.02501099556684494, -0.029050203040242195, 0.0061424062587320805, 0.009215281344950199, -0.01954067498445511, -0.013949982821941376, 0.033116161823272705, -0.05039648711681366, -0.004116114228963852, -0.017775194719433784, 0.009984335862100124, -0.00579131580889225, -0.027953464537858963, -0.011529132723808289, -0.02180102840065956, 0.018069440498948097, 0.01744082197546959, -0.02106541022658348, -0.031323932111263275, -0.016303958371281624, -0.0257599875330925, -0.03493514284491539, 0.022469770163297653, 0.01183006726205349, -0.027578968554735184, 0.006229342892765999, -0.00810516718775034, 0.021346282213926315, 0.040499087423086166, -0.0028371429070830345, 0.017601320520043373, 0.04394980147480965, 0.021734153851866722, 0.013361488468945026, -0.020717663690447807, 0.053205206990242004, 0.04614327847957611, 0.010913888923823833, 0.020303042605519295, 0.024663249030709267, -0.009991022758185863, 0.00671752542257309, -0.024141628295183182, 0.0022402897011488676, -0.04322756081819534, 0.026294982060790062, 0.0011000825325027108, -0.03073543682694435, 0.014846098609268665, -0.0034406837075948715, 0.01940692774951458, -0.03536313772201538, 0.03437339887022972, -0.03423964977264404, 0.011194760911166668, 0.00580469099804759, 0.01645108312368393, 0.030227191746234894, -0.024007881060242653, -0.005273039918392897, 0.024930745363235474, -0.0770927146077156, -0.009991022758185863, 0.049807991832494736, 0.000701762386597693, -0.007637047208845615, -0.005667598452419043, -0.034533899277448654, 0.03589813411235809, -0.027953464537858963, -0.0072692385874688625, -0.00666736951097846, -0.008854160085320473, -0.012585747055709362, -0.006189218256622553, -0.0018072784878313541, -0.030521439388394356, 0.02939794957637787, -0.03876035660505295, 0.003193248761817813, -0.020864786580204964, -0.009884024038910866, 0.039348848164081573, 0.018189813941717148, 0.008941096253693104, -0.02353975921869278, 0.02241627126932144, -0.007877795025706291, -0.002078119432553649, -0.031564678996801376, -0.09282155334949493, 0.004978793207556009, 0.014953097328543663, -0.01493972260504961, -0.06227336451411247, -0.033062662929296494, -0.0066506508737802505, 0.009496153332293034, 0.03752986714243889, 0.027003848925232887, -0.04849725589156151, -0.018885307013988495, 0.010893826372921467, -0.04595603048801422, 0.01904580555856228, 0.006319622974842787, 0.011789942160248756, -0.025706488639116287, -0.0026432073209434748, -0.014872848056256771, 0.018764933571219444, -0.05847490578889847, 0.02205515094101429, 0.00021650560665875673, -0.027191098779439926, 0.0038887416012585163, -0.00028337992262095213, 0.010432393290102482, -0.011743130162358284, -0.009208593517541885, -0.0064934962429106236, -0.00595850171521306, -7.089722930686548e-05, 0.010833639651536942, -0.019085930660367012, -0.0008442882681265473, 0.025599488988518715, -0.048577506095170975, -0.003885397920385003, -0.044083550572395325, 0.028247712180018425, -0.030842436477541924, -0.03530963882803917, -0.02347288653254509, -0.01884518377482891, -0.0035543700214475393, -0.020356543362140656, -0.03314291313290596, 0.0354701392352581, 0.000226536751142703, 0.0063497163355350494, -0.016745328903198242, 0.011749817989766598, 0.0004677022516261786, -0.04429754987359047, 0.019246429204940796, 0.0019025743240490556, 0.007416361942887306, 0.0158358383923769, -0.0018942151218652725, 0.04972774162888527, 0.003708180971443653, 0.050744231790304184, 0.007402987219393253, 0.007710609119385481, 0.03555038943886757, 0.0029625322204083204, -0.0011995580280199647, 0.0007030162960290909, 0.04306706041097641, 0.019313303753733635, -0.01590271294116974, 0.01952730119228363, -0.00352762034162879, 0.011823379434645176, 0.029799196869134903, 0.01019833330065012, -0.041301578283309937, -0.011776567436754704, -0.009797087870538235, -0.007423049304634333, 0.021774278953671455, 0.007168926764279604, -0.01966105028986931, -0.023620009422302246, 0.036513376981019974, 0.006620557513087988, -0.021332908421754837, -0.01940692774951458, 0.005908345803618431, -0.018203189596533775, -0.022148774936795235, -0.007456486579030752, 0.003047797130420804, -0.031029684469103813, -0.010325394570827484, -0.005627473816275597, -0.010512642562389374, -0.07382924854755402, -0.024796998128294945, 0.045447785407304764, 0.010452455841004848, -0.012706120498478413, 0.03196592256426811, 0.047962259501218796, 0.06906779855489731, -0.02280414290726185, -0.06211286783218384, -0.01570208929479122, 0.014685600064694881, -0.041060831397771835, -0.03905460238456726, 0.007068615406751633, -0.01916617900133133, 0.0017220136942341924, -0.00595850171521306, 0.02284426800906658, -0.011328509077429771, 0.0019192929612472653, -0.0470527708530426, -0.014257604256272316, 0.0015113595873117447, -0.014003482647240162, -0.017949067056179047, 0.0030712031293660402, -0.0014804302481934428, 0.011569256894290447, -0.0010833640117198229, 0.006674056872725487, -0.01250549778342247, -0.0043067061342298985, 0.03375815600156784, 0.00806504301726818, 0.019754674285650253, 0.018938807770609856, -0.008352602832019329, -0.016370832920074463, -0.012799744494259357, 0.01633070781826973, 0.02958519756793976, -0.015661966055631638, -0.004286643583327532, 0.013936608098447323, -0.009462716057896614, -0.02014254406094551, -0.03608538210391998, -0.02125265821814537, 0.013829609379172325, 0.013722609728574753, -0.00828572828322649, 0.022764017805457115, -0.009817149490118027, -0.04004434123635292, 0.028434960171580315, -0.0401780903339386, 0.0427728146314621, -0.014431477524340153, 0.004263237584382296, -0.011596007272601128, -0.015447967685759068, 0.025786736980080605, 0.0011987221660092473, -0.01179662998765707, -0.0012329953024163842, 0.01934005320072174, 0.002541224006563425, -0.0015280782245099545, 0.027819717302918434, 0.03357090801000595, 0.026294982060790062, 0.01303380448371172, 0.010037834756076336, -0.020236168056726456, 0.040258340537548065, 0.008486350998282433, -0.03720887005329132, -0.0016275537200272083, 0.001014817738905549, 0.026642728596925735, 0.010786827653646469, 0.03726236894726753, 0.029959695413708687, 0.017534445971250534, 0.008553225547075272, 0.004691233392804861, -0.039643097668886185, 0.007429736666381359, -0.008513100445270538, 0.03030744194984436, 0.01389648299664259, -0.015488091856241226, -0.01392323337495327, 0.03597838431596756, 0.05269696190953255, -0.006423278246074915, 0.008265665732324123, 0.03105643391609192, -0.030895935371518135, -0.0009354045032523572, -0.029371200129389763, -0.0174943208694458, -0.04558153450489044, 0.010666454210877419, 0.011408758349716663, 0.01456522662192583, 0.006339685525745153, -0.00651355879381299, 0.014190730638802052, -0.008767222985625267, 0.01669183000922203, 0.0019309959607198834, 0.020182669162750244, -0.027257971465587616, -0.03201942518353462, -0.0029207358602434397, -0.0027368315495550632, 0.002089822432026267, -0.017962442710995674, 0.002267039380967617, 0.023941006511449814, 0.021760903298854828, 0.05847490578889847, 0.01879168301820755, 0.00201793247833848, 0.007837669923901558, 0.0029090328607708216, -0.024850497022271156, -0.007135489955544472, -0.0012973617995157838, 0.002750206273049116, -0.045742034912109375, -0.0029173921793699265, 0.03809161111712456, 0.008907658979296684, 0.05427519604563713, 0.00032517637009732425, 0.03795786201953888, -0.016772078350186348, 0.003390528028830886, 0.011201448738574982, -0.038653355091810226, 0.003507558023557067, -0.025786736980080605, 0.012946868315339088, -0.03900110349059105, -0.006359747610986233, -0.019005680456757545, -0.016290584579110146, 0.012893368490040302, 0.019687799736857414, 0.03252767026424408, 0.024877246469259262, -0.026040859520435333, 0.0192731786519289, -0.023941006511449814, -0.05077098309993744, 0.008325852453708649, 0.037128619849681854, 0.016156835481524467, 0.050610482692718506, 0.00175545085221529, 0.0186713095754385, 0.03389190509915352, 0.017534445971250534, -0.013602236285805702, 0.04028508812189102, 0.01669183000922203, -0.03316966071724892, -0.0037349306512624025, -0.00828572828322649, 0.04287981241941452, -0.014257604256272316, 0.013254489749670029, 0.05895639955997467, 0.04293331131339073, -0.0027619092725217342, -0.020035546272993088, 0.03135067969560623, -0.023365886881947517, 0.03110993281006813, 0.001964433118700981, -0.01479259878396988, 0.04501979053020477, 0.033865153789520264, -0.01161606889218092, -0.013568799011409283, 0.009850586764514446, -0.015568341128528118, 0.04590253159403801, -0.004483922850340605, 0.038653355091810226, -0.00545025710016489, -0.034159403294324875, 0.005948470439761877, 0.027124224230647087, 0.00022779064602218568, 0.014658850617706776, 0.03338366001844406, -0.009054782800376415, 0.01774844340980053, 0.018591061234474182, 0.024195129051804543, 0.02822096273303032, 0.015782339498400688, 0.03308941423892975, 0.016558080911636353, -0.002947485540062189, 0.007496611215174198, 0.01879168301820755, -0.013508612290024757, 0.010512642562389374, -0.024248627945780754, -0.01041233167052269, 0.020303042605519295, -0.02087816223502159, -0.03530963882803917, -0.021105535328388214, 0.01873818412423134, -0.02519824355840683, -0.00720905140042305, -0.009623214602470398, 0.009603152051568031, -0.0036179006565362215, 0.024114878848195076, -0.022349396720528603, 0.01928655430674553, -0.02113228477537632, -0.004734701942652464, -0.021159034222364426, 0.06548333168029785, 0.0021466657053679228, -0.011127886362373829, 0.027378346771001816, 0.015434592962265015, 0.036620378494262695, 0.014712350443005562, 0.03370465710759163, 0.003084577852860093, 0.0008702020859345794, 0.0024375689681619406, -0.0017521071713417768, -0.026040859520435333, 0.021038660779595375, -0.03881385549902916, 0.03161817789077759, 0.02446262538433075, -0.013628985732793808, 0.015595091506838799, -0.0016175225609913468, 0.025398865342140198, 0.028996704146265984, -0.009074845351278782, 0.012739557772874832, -0.03044118918478489, -0.006466746795922518, -0.011997252702713013, -0.014953097328543663, -0.029799196869134903, 0.02311176434159279, 0.00494535593315959, 0.00788448192179203, 0.013776109553873539, -0.027766216546297073, -0.00896784570068121, -0.020650789141654968, 0.0385463573038578, -0.0045006414875388145, -0.04237156733870506, 0.03068193793296814, 0.04132832959294319, 0.02697709947824478, -0.006399872247129679, -0.0008685301872901618, 0.001775513170287013, -0.008613412268459797, 0.008947784081101418, 0.010312019847333431, -0.02808721363544464, -0.019380178302526474, 0.0024308813735842705, 0.01658483035862446, -0.01897893100976944, 0.013281239196658134, 0.02840821072459221, 0.011990564875304699, -0.023446135222911835, -0.044217299669981, -0.018992306664586067, 0.009175156243145466, 0.0016517956973984838, 0.018510811030864716, -0.024074753746390343, 0.013267864473164082, 0.009964273311197758, 0.026294982060790062, -0.008820722810924053, -0.01964767463505268, -0.025840235874056816, -0.014926347881555557, 0.01475247461348772, 0.004560828674584627, 0.01142882090061903, 0.01613008603453636, 0.0011452226899564266, 0.013655736111104488, -0.009957586415112019, -0.005259665194898844, 0.0010156537173315883, 0.015942838042974472, -0.022135399281978607, 0.011361946351826191, 0.0003009344218298793, -0.024609748274087906, -0.002567973919212818, -0.0059852516278624535, 0.015728840604424477, -0.0036011820193380117, -0.03838585689663887, -0.0027518782299011946, 0.01183006726205349, 0.009168469347059727, 0.028247712180018425, -0.015113595873117447, -0.025719862431287766, -0.0060220323503017426, 0.009021345525979996, -0.003056156449019909, -0.004189676139503717, -0.003788430243730545, -0.003487495705485344, 0.006570401601493359, -0.01284655649214983, -0.04215757176280022, 0.008426164276897907, 0.0013032132992520928, -0.0019025743240490556, -0.0035042143426835537, -0.012752932496368885, -0.055104438215494156, -0.005339914467185736, -0.003433996345847845, -0.007797545753419399, 0.0437358058989048, -0.0003255943302065134, 0.006322966888546944, 0.01848406158387661, -0.007810920476913452, 0.004122801590710878, 0.07447124272584915, -0.016344083473086357, -0.018136315047740936, 0.027739467099308968, 0.05553243309259415, -0.002452615648508072, 0.010338769294321537, 0.026535728946328163, 0.009001282975077629, -0.019433677196502686, -0.03913485258817673, 0.016718579456210136, 0.027685968205332756, 0.00018390436889603734, -0.024997619912028313, -0.021105535328388214, 0.0038285546470433474, 0.03611213341355324, 0.03129718080163002, 0.018002565950155258, 0.03627263009548187, -0.008379352279007435, 0.0017119825351983309, 0.0077908579260110855, -0.008787285536527634, -0.02303151600062847, 0.005634161178022623, -0.018898682668805122, 0.012458685785531998, 0.030200442299246788, -0.004838356748223305, -0.005072417203336954, -0.0016016399022191763, -0.009997710585594177, 0.0038954289630055428, -0.006590464152395725, -0.00219514942727983, -0.012558996677398682, 0.012003940530121326, -0.002026291796937585, -0.012746244668960571, -0.0204501673579216, -0.01411048136651516, -0.04320080950856209, 0.016678454354405403, 0.010024460032582283, -0.0144181028008461, 0.0186713095754385, -0.009529590606689453, 0.008646849542856216, -0.02482374757528305, 0.01444485317915678, -0.0409003347158432, -0.013093991205096245, -0.01915280520915985, 0.0050523546524345875, 0.018457312136888504, 0.00722242658957839, 0.0022887736558914185, -0.002041338477283716, -0.01183006726205349, 0.022081900388002396, -0.03811836242675781, 0.017333824187517166, -0.027311472222208977, -0.001435290090739727, -0.0018624498043209314, 0.015247344970703125, -0.02260351926088333, -0.0016802172176539898, -0.029799196869134903, -0.024435875937342644, 0.023914257064461708, 0.03068193793296814, 0.00437358021736145, 0.017882192507386208, 0.009984335862100124, 0.006135718896985054, -0.006466746795922518, -0.019420301541686058, 0.0017805286915972829, -0.012231312692165375, 0.020129170268774033, 0.030334191396832466, -0.023700257763266563, -0.0013232756173238158, 0.02870245836675167, 0.019139429554343224, 0.012010627426207066, 0.06510883569717407, 0.001655139378271997, -0.020811287686228752, 0.011870191432535648, -0.005978564266115427, 0.02926420234143734, 0.0010223411954939365, -0.008579974994063377, -0.03464089706540108, -0.024409126490354538, 0.008192104287445545, 0.003885397920385003, 0.0036179006565362215, 0.009924149140715599, 0.012431935407221317, 0.0029140484984964132, -0.00668408814817667, -0.017534445971250534, 0.00045558129204437137, 0.011910316534340382, -0.008018231019377708, -0.00440701749175787, -0.012585747055709362, 0.019888421520590782, -0.008680286817252636, -0.024783622473478317, -0.028247712180018425, -0.0033203097991645336, -0.03629938140511513, -0.0020145887974649668, 0.014551851898431778, -0.01897893100976944, -0.0323939211666584, -0.015193845145404339, -0.01792231760919094, 0.030334191396832466, 0.010358831845223904, 0.001989511074498296, -0.007590235210955143, 0.02588036097586155, -0.006597151514142752, -0.013374864123761654, 0.00237905397079885, -0.018510811030864716, -0.0012505498016253114, -0.01621033437550068, 0.01626383513212204, 0.007509985938668251, -0.0010791843524202704, -0.011910316534340382, 0.015969587489962578, -0.006724212784320116, 0.02760571800172329, -0.00039936506072990596, -0.022683769464492798, -0.0016359130386263132, 0.025465739890933037, 0.001723685534670949, 0.0024024599697440863, -0.012893368490040302, -0.011482320725917816, -0.0008743816870264709, -0.027271347120404243, -0.010084646753966808, 0.04320080950856209, -0.014270979911088943, -0.02502436935901642, 0.04122132807970047, -0.005968532990664244, -0.016477832570672035, -0.03431989997625351, 0.009569714777171612, 0.02075778879225254, -0.03129718080163002, -0.001071660895831883, 0.006225998979061842, -0.012238000519573689, -0.03777061402797699, 0.037315867841243744, 0.01952730119228363, -0.0161969605833292, 0.010358831845223904, 0.0012831509811803699, 0.01966105028986931, 0.02888970635831356, -0.025238368660211563, -0.014244229532778263, 0.0032668104395270348, -0.018778309226036072, -0.026281606405973434, 0.018270064145326614, 0.003624588018283248, 0.001003114739432931, -0.01829681359231472, -0.0054669757373631, -0.021921401843428612, -0.0085064135491848, -0.023499635979533195, -0.017949067056179047, 0.02987944521009922, 0.007001741323620081, -0.0018825120059773326, 0.00438695540651679, 0.03900110349059105, 0.006256092339754105, 0.02285764180123806, 0.0006536964792758226, 0.0023038203362375498, -0.023927630856633186, 0.034908395260572433, -0.0018390438053756952, 0.0026682852767407894, -0.03584463521838188, -0.022723892703652382, -0.03667387738823891, -0.006948241498321295, -0.02593385986983776, -0.00810516718775034, -0.011682943440973759, 0.023165263235569, 0.014137230813503265, 0.04178307577967644, 0.0022285867016762495, 0.04625027999281883, 0.013127428479492664, 0.0007134653860703111, 0.005005542654544115, 0.0023890850134193897, 0.022081900388002396, 0.01299368031322956, -0.032072924077510834, -0.006593807600438595, 0.005252977833151817, 0.03528289124369621, -0.06724881380796432, -0.008947784081101418, 0.02335251122713089, -0.023392636328935623, -0.019727924838662148, -0.006687432061880827, -0.04376255348324776, 0.036994874477386475, 0.013842984102666378, -0.007322737947106361, -0.008646849542856216, -0.014257604256272316, -0.00015537829312961549, -0.03081568516790867, 0.008954470977187157, -0.0027167692314833403, -0.009429278783500195, -0.014431477524340153, -0.0018691371660679579, 0.006082219071686268, 0.011562569998204708, 0.0003979021857958287, 0.008633474819362164, -0.006256092339754105, -0.004310050047934055, 0.02002217061817646, -0.019982045516371727, -0.014244229532778263, -0.006025376264005899, -0.01124157290905714, -0.01213100180029869, 0.006687432061880827, -0.029371200129389763, 0.01706632599234581, -0.031885676085948944, 0.012766307219862938, -0.032367169857025146, 0.0026080983225256205, -0.02888970635831356, 0.03054818883538246, -0.0004593429621309042, 0.04726676642894745, 0.005132603924721479, -0.004717983305454254, -0.035764385014772415, -0.053873952478170395, 0.03068193793296814, 0.0035142453853040934, -0.01996867172420025, 0.017975816503167152, 0.0019159491639584303, -0.018764933571219444, 0.016370832920074463, -0.0001283150922972709, 0.0020028857979923487, 0.0004367728834040463, -0.012572371400892735, 0.001961089437827468, 0.01978142373263836, 0.016865702345967293, 0.0025796769186854362, 0.033972155302762985, 0.0161969605833292, -0.026589229702949524, 0.005005542654544115, 0.007971419021487236, 0.010592891834676266, 0.025960611179471016, 0.02945145033299923, 0.009970961138606071, 0.038412608206272125, -0.0006181694916449487, 0.028862955048680305, -0.004871794022619724, 0.03295566514134407, 0.023887505754828453, 0.025037745013833046, 0.0005893299239687622, 0.030414439737796783, 0.04039208963513374, 0.014872848056256771, 0.00791123230010271, 0.02958519756793976, 0.016290584579110146, 0.013274552300572395, -0.014712350443005562, -0.03913485258817673, -0.009616526775062084, 0.003979022148996592, 0.010499267838895321, -0.03284866362810135, 0.005370007827877998, -0.009930836036801338, -0.018657933920621872, -0.008954470977187157, 0.028381461277604103, 0.045742034912109375, 0.00740967458114028, -0.01090051420032978, -0.0031297181267291307, -0.02779296599328518, 0.03589813411235809, 0.006881367415189743, -0.001018161536194384, -0.03683437407016754, -0.022830892354249954, -0.02372700907289982, 0.02870245836675167, -0.015474717132747173, 0.04689227044582367, -0.04164932668209076, 0.04643752798438072, 0.021266033872961998, 0.023807257413864136, 0.04012459143996239, 0.009843899868428707, -0.009155094623565674, -0.0031782020814716816, 0.018336938694119453, 0.009870649315416813, 0.008031605742871761, 0.0008626786875538528, 0.051787473261356354, -0.0012279796646907926, 0.014725725166499615, -0.016785454005002975, 0.0190324317663908, -0.0003721973916981369, 0.0158358383923769, -0.0013842984335497022, -0.00010835729335667565, 0.011040950194001198, -0.018617810681462288, 0.02784646674990654, -0.022509895265102386, 0.007830983027815819, -0.008299103006720543, -0.0116428192704916, -0.0017671538516879082, -0.012398499064147472, 0.0011360275093466043, 0.03488164395093918, 0.024382377043366432, -0.026936976239085197, -0.013883108273148537, 0.002058057114481926, 0.03172517567873001, 0.02921070158481598, -0.020664164796471596, -0.009121657349169254, -0.0060621569864451885, -0.0003400141140446067, -0.04659802466630936, 0.003019375493749976, 0.006095594260841608, -0.025652987882494926, 0.011221510358154774, 0.041301578283309937, -0.009589777328073978, 0.015982961282134056, -0.03180542588233948, 0.023646758869290352, -0.02168065309524536, 0.004637734033167362, -0.017855443060398102, 0.012933493591845036], [0.0036439092364162207, -0.0040708244778215885, 0.058356329798698425, 0.035255830734968185, -0.010561957955360413, 0.03738032281398773, -0.036170169711112976, 0.021621424704790115, -0.005274255760014057, 0.07212519645690918, -0.021607978269457817, -0.020115453749895096, 0.038375336676836014, 0.014199144206941128, -0.060776639729738235, 0.03189428895711899, -0.0050322250463068485, 0.02651582658290863, 0.007005448918789625, 0.004124609287828207, 0.0544031597673893, 0.03633152320981026, -0.035847458988428116, -0.01284780539572239, -0.0627128854393959, -0.033185120671987534, 0.008195433765649796, 0.0013631044421344995, 0.020303700119256973, -0.07411523163318634, 0.06319694966077805, -0.03474487364292145, 0.015879914164543152, -0.020612962543964386, 0.010434219613671303, -0.010440942831337452, -0.037030722945928574, 0.004235540051013231, 0.023544223979115486, 0.03573989123106003, 0.013688189908862114, 0.0052507249638438225, -0.020128900185227394, -0.0076172491535544395, -0.03700383007526398, 0.06545590609312057, 0.01497902162373066, -0.056043591350317, 0.018206099048256874, 0.014925236813724041, 0.013419266790151596, 0.02308705449104309, 0.008430741727352142, -0.03471798449754715, 0.01781616173684597, 0.006319694686681032, 0.014064682647585869, 0.020438162609934807, 0.027994902804493904, -0.008807234466075897, 0.009600557386875153, -0.023557670414447784, -0.009419034235179424, 0.021769331768155098, 0.003314478322863579, -0.0021564278285950422, -0.029312627390027046, 0.0074222800321877, -0.03439527377486229, 0.008847572840750217, 0.04845995828509331, 0.027174687013030052, 0.011516635306179523, -0.02525188773870468, -0.0050322250463068485, -0.008134926669299603, -0.006665933411568403, 0.008605541661381721, -0.01731865294277668, -0.0152748366817832, -0.025399794802069664, 0.02066674642264843, 0.013533559627830982, 0.006289441138505936, 0.028640318661928177, 0.001364785130135715, -0.0577109158039093, 6.01925712544471e-05, -0.040284693241119385, -0.007287818472832441, -0.0072004180401563644, 0.005210386589169502, -0.04636235535144806, 0.03555164486169815, 0.05453762039542198, -0.0217424388974905, 0.034341491758823395, -0.012612497434020042, -0.026583056896924973, 0.0049986098892986774, -0.02223994769155979, -0.05545195937156677, -0.030522780492901802, 0.013405820354819298, 0.018703607842326164, -0.04160241782665253, -0.014992467127740383, 0.04402272403240204, 0.01501935999840498, -0.028156258165836334, -0.03235146030783653, -0.017264869064092636, -0.0017564045265316963, 0.05472586676478386, -0.022401301190257072, 0.0021127278450876474, -0.06330452114343643, -0.0087803415954113, 0.02393416315317154, 0.023893825709819794, -0.06378857791423798, -0.004558247979730368, 0.040957000106573105, -0.06384236365556717, 0.030092503875494003, -0.030899273231625557, -0.01916077733039856, -0.012558712624013424, -0.08643191307783127, -0.026058657094836235, 0.0635734423995018, -0.028048688545823097, 0.042785678058862686, -0.06577861309051514, -0.02626034803688526, -0.012437697499990463, 0.009103049524128437, -0.020196130499243736, 0.0021883624140173197, -0.05900174751877785, 0.03732653707265854, 0.012820912525057793, 0.0032573321368545294, 0.039531707763671875, -0.0669080913066864, -0.001015185029245913, 0.01162420492619276, 0.045797619968652725, -0.014656313695013523, -0.016700129956007004, 0.00688107218593359, 0.04735737293958664, -0.034018781036138535, 0.0014824391109868884, 0.011240988969802856, 0.011126697063446045, 0.031329549849033356, 0.03555164486169815, 0.010138403624296188, -0.002773270243778825, -0.021648315712809563, -0.02408207207918167, -0.017103513702750206, -0.012269619852304459, -0.008632434532046318, 0.007139910478144884, 4.8138299462152645e-05, 0.008995480835437775, -0.05413423851132393, -0.06233639270067215, -0.036950044333934784, -0.044963955879211426, -0.04410340264439583, 0.008941696025431156, -0.005122986622154713, -0.053408145904541016, 0.004087632521986961, -0.011355281807482243, -0.0030018549878150225, 0.0063667562790215015, -0.012814189307391644, 0.029420197010040283, -0.10751549154520035, -0.058840394020080566, -0.07798772305250168, 0.04558248072862625, -0.0014782370999455452, 0.0013185639400035143, -0.04033847898244858, -0.0025177933275699615, 0.028398288413882256, 0.036008816212415695, 0.04447989538311958, 0.006275994703173637, -0.015933698043227196, 0.024902286008000374, 0.0038960245437920094, -0.017385883256793022, 0.0025631741154938936, -0.004501102026551962, 0.04356555640697479, -0.030226966366171837, 0.04466814175248146, -0.005086009856313467, -0.011140142567455769, -0.015489974990487099, -0.025386348366737366, 0.011550250463187695, 0.026905763894319534, -0.05598980560898781, 0.010420773178339005, -0.05144500359892845, -0.02276434749364853, 0.010810712352395058, -0.014831113629043102, 0.035847458988428116, -0.02418963983654976, 0.008921526372432709, -0.0026690626982599497, 0.04716912657022476, 0.007496233563870192, 0.008007187396287918, 0.016283297911286354, -0.01883806847035885, -0.03565921261906624, 0.01267300546169281, 0.012424251064658165, -0.06803756207227707, -0.013311697170138359, -0.055936023592948914, -0.014911790378391743, 0.02769908867776394, -0.02301982417702675, -0.01414535939693451, -0.016458099707961082, -0.04039226099848747, -0.005425525363534689, 0.0002645111526362598, -0.006565087009221315, 0.019443146884441376, 0.04657749459147453, -0.021029792726039886, 0.014064682647585869, 0.051149189472198486, 0.023557670414447784, 0.00497844023630023, -0.030495889484882355, -0.034771766513586044, 0.0493742972612381, 0.019443146884441376, 0.05147189646959305, 0.037030722945928574, 0.06287424266338348, -0.02769908867776394, 0.012451143004000187, -0.00489776348695159, 0.003050597384572029, -0.06034636124968529, 0.01622951403260231, -0.032754842191934586, -0.01571856066584587, 0.008471080102026463, -0.0016891737468540668, 0.016095053404569626, -0.06378857791423798, -0.012269619852304459, 0.008424018509685993, -0.005543179344385862, -0.02560148760676384, 0.042220938950777054, -0.04082253947854042, 0.04617410898208618, 0.0129620973020792, -0.021392839029431343, -0.053999774158000946, 0.007059233728796244, -0.015664774924516678, -0.028667211532592773, 0.00585916405543685, -0.030307643115520477, -0.034341491758823395, -0.016095053404569626, -0.007919787429273129, -0.031087519600987434, 0.02057262323796749, 0.0418444462120533, 0.0171438530087471, -0.03872494027018547, -0.022468531504273415, -0.002263996982946992, 0.07680445909500122, 0.005388548132032156, 0.021607978269457817, -0.001255535171367228, 0.0552368238568306, 0.01891874521970749, 0.027968011796474457, -0.01605471409857273, 0.00874000322073698, 0.029554657638072968, 0.018098529428243637, 0.018851514905691147, -0.01973896101117134, -0.03003871999680996, -0.04837927967309952, 0.02743016555905342, 0.016673237085342407, 0.02712090313434601, -0.012619220651686192, -0.0007781964377500117, -0.01054178923368454, 0.010131681337952614, -0.034341491758823395, -0.054080452769994736, -0.024404779076576233, 0.0043834480457007885, 0.008592096157371998, 0.05117608234286308, 0.002324504777789116, -0.009419034235179424, 0.011355281807482243, 0.0037783707957714796, 0.04593208059668541, -0.03205564245581627, 0.004373363219201565, -0.034341491758823395, 0.017466560006141663, 0.02995804324746132, -0.04507152736186981, -0.02125837840139866, -0.026811640709638596, -0.035766784101724625, 0.01766825281083584, -0.0006748291198164225, -0.030737919732928276, -0.012504927814006805, -0.0301193967461586, 0.08024667948484421, -0.011677989736199379, 0.036600444465875626, 0.013378928415477276, -0.019967546686530113, -0.028667211532592773, 0.012081374414265156, -0.054833438247442245, 0.05004660412669182, 0.013069666922092438, 0.024861948564648628, -0.0033413704950362444, 0.07234033942222595, 0.011106527410447598, 0.042220938950777054, -0.04232851043343544, 0.02107013203203678, -0.0669080913066864, 0.0046019479632377625, 0.029931150376796722, -0.014212590642273426, -0.016848037019371986, -0.011187204159796238, 0.015920251607894897, 0.014306713826954365, 0.0019463315838947892, 0.02301982417702675, 0.019564161077141762, -0.012773850932717323, -0.020707085728645325, -0.0016295064706355333, 0.015489974990487099, -0.03829466179013252, 0.007388664409518242, 0.045716941356658936, 0.03471798449754715, 0.0351482592523098, -0.019268346950411797, -0.031679149717092514, -0.0021278546191751957, 0.02268367074429989, -0.014575636945664883, -0.003825432388111949, -0.0060911099426448345, 0.03466419875621796, 0.013513389974832535, -2.2309593987301923e-05, 0.032163213938474655, 0.03272795304656029, -0.07927855104207993, -0.02995804324746132, -0.008961864747107029, 0.015073144808411598, -0.0022673585917800665, 0.012162051163613796, -0.0334809347987175, 0.026287240907549858, -0.019093547016382217, 0.048486851155757904, 0.014441175386309624, 0.030468996614217758, 0.035686105489730835, -0.004420424811542034, -0.000577344442717731, -0.04485638812184334, 0.017601022496819496, -0.014024344272911549, -0.04754561930894852, -0.030603459104895592, -0.065294548869133, -0.022562654688954353, 0.008323172107338905, 0.0038321553729474545, 0.0334540456533432, 0.005748233292251825, 0.06056150048971176, 0.0005500319530256093, 0.009224065579473972, -0.03162536770105362, -0.05039620399475098, 0.04394204914569855, -0.0024135855492204428, -0.010266142897307873, 0.03528272360563278, 0.02092222310602665, 0.014602528885006905, -0.009082880802452564, -0.04305460304021835, 0.009304742328822613, 0.03095305897295475, -0.029742904007434845, -0.01839434541761875, -0.07083436846733093, -0.00853158812969923, 0.0213390551507473, 0.020384376868605614, 0.007294541224837303, -0.03571299836039543, -0.048809558153152466, 0.026072103530168533, 0.00020894070621579885, -0.0020690278615802526, -0.03633152320981026, 0.02952776476740837, -0.007765157148241997, 0.016928713768720627, 0.0171438530087471, -0.02643514983355999, 0.0031161473598331213, -0.007892895489931107, 0.01850191503763199, -0.015705114230513573, 0.007933233864605427, -0.034341491758823395, 0.02585696429014206, -0.0552368238568306, -0.015503421425819397, -0.02553425543010235, 0.0051666866056621075, 0.01422603614628315, -0.027040226384997368, 0.03331958130002022, -0.053677067160606384, 0.01422603614628315, 0.03036142699420452, 0.042866356670856476, 0.04883645102381706, 0.012383912689983845, -0.03490623086690903, -0.05077269673347473, -0.006632318254560232, -0.019295237958431244, -0.022024808451533318, -0.009203895926475525, 0.0016538775525987148, -0.015113483183085918, -0.023571116849780083, 0.011281327344477177, -0.016377421095967293, -0.0006823925650678575, -0.06298180669546127, -0.0015555525897070765, -0.00945265032351017, 0.02258954755961895, 0.06620889157056808, -0.02869410440325737, -0.015342067927122116, 0.05921688675880432, 0.013419266790151596, 0.05394599214196205, -0.01590680703520775, 0.0014210909139364958, -0.012397359125316143, -0.019940653815865517, 0.0005441492539830506, 0.04082253947854042, -0.01535551343113184, 0.004780109506100416, -0.002183320000767708, -0.0188111774623394, -0.008323172107338905, 0.03079170547425747, -0.007664310745894909, 0.01565132848918438, -0.042705003172159195, 0.002674104878678918, 0.005284340586513281, 0.008269388228654861, 0.01733209937810898, -0.011604035273194313, -0.0305496733635664, -0.041360385715961456, 0.018717054277658463, -0.06260531395673752, 0.012437697499990463, 0.028317611664533615, -0.0011647735955193639, -0.018864961341023445, -0.020532285794615746, 0.02971601113677025, -0.03213632106781006, -0.04926672577857971, 0.012141881510615349, 0.00866604968905449, -0.018380898982286453, 0.010985512286424637, 0.018676714971661568, -0.0009639215422794223, 0.03020007349550724, -0.020128900185227394, -0.0619061179459095, -0.02316773310303688, 0.020209576934576035, 0.0033212013076990843, -0.0238534864038229, -0.02960844337940216, 0.0401771254837513, 0.012215835973620415, 0.000984931131824851, -0.012551989406347275, -0.000787440687417984, 0.009600557386875153, -0.038509801030159, 0.03071102686226368, -0.01614883728325367, -0.004450678825378418, 0.01574545167386532, 0.006326417904347181, -0.0073416028171777725, 0.028398288413882256, 0.03003871999680996, 0.016713576391339302, 0.006040687207132578, 0.009042542427778244, 0.017762375995516777, 0.002880839630961418, -0.00636003352701664, -0.00646087946370244, 0.005778486840426922, 0.016995945945382118, -0.06050771474838257, 0.032754842191934586, -0.01318395882844925, -0.0284520722925663, 0.017869945615530014, -0.007563464343547821, 0.0036976938135921955, -0.024404779076576233, 0.01388988271355629, 0.023719025775790215, 0.007644141558557749, -0.01647154428064823, 0.02500985562801361, -0.022199608385562897, 0.0012168773682788014, 0.0012765447609126568, -0.01741277612745762, 0.052009742707014084, 0.015476529486477375, 0.0018387623131275177, -0.03797195479273796, 0.01983308419585228, 0.003825432388111949, -0.021715547889471054, 0.026986440643668175, -0.03988130763173103, -0.00631297193467617, 0.0027766318526118994, 0.0094055887311697, 0.009210619144141674, -0.03447595238685608, -0.0024623279459774494, 0.03079170547425747, 0.009506434202194214, 0.015073144808411598, -0.018797731027007103, 0.0009067753562703729, 0.005472586955875158, 0.051740821450948715, -0.012350297532975674, 0.011173758655786514, 0.009136665612459183, 0.008309726603329182, 0.005963371600955725, -0.028505858033895493, -0.018340561538934708, 0.014387390576303005, -0.009997219778597355, 0.013338590040802956, 0.014360497705638409, -0.006101194769144058, 0.016848037019371986, 0.017937175929546356, 0.007395387627184391, 0.008047526702284813, -0.007953403517603874, -0.03622395172715187, -0.021123915910720825, 0.015153821557760239, -0.04477570950984955, -0.02519810199737549, -0.006786949001252651, 0.010232526808977127, -0.02392071671783924, -0.00489776348695159, 0.030979949980974197, -0.0034489398822188377, -0.00274973944760859, -0.01655222289264202, -0.021298715844750404, -0.023530779406428337, 0.007812218274921179, -0.0038187091704458, -0.03364229202270508, 0.037030722945928574, 0.0016412717523053288, -0.008807234466075897, 0.007758433930575848, 0.018017852678894997, 0.019792746752500534, -0.0040237633511424065, -0.012820912525057793, -0.003529616864398122, 0.028720995411276817, 0.03063035011291504, 0.037595462054014206, -0.009936711750924587, 0.02601831778883934, 0.0334809347987175, -0.01188640482723713, 0.04076875373721123, 0.007859280332922935, -8.692732080817223e-06, 0.004487655591219664, -0.007744987495243549, -0.006978556513786316, -0.018206099048256874, 0.03657355159521103, 0.0004764982732012868, -0.03474487364292145, 0.02301982417702675, 0.027470503002405167, 0.017358992248773575, -0.035847458988428116, 0.021621424704790115, -0.010373711585998535, 0.012457866221666336, 0.04243607819080353, 0.018179208040237427, 0.046469926834106445, -0.020209576934576035, -0.01632363721728325, 0.005196940619498491, -0.052251774817705154, -0.0036472706124186516, 0.04275878518819809, -0.027887335047125816, 6.423692684620619e-05, -0.02015579305589199, -0.024364439770579338, 0.019954100251197815, -0.017695145681500435, 0.015436191111803055, -0.02433754876255989, -0.01848846860229969, -0.01648499071598053, -0.010514896363019943, 0.008457634598016739, -0.0342877060174942, 0.021688655018806458, -0.04958943650126457, -0.018528807908296585, 0.00631297193467617, -0.0060776639729738235, 0.038778722286224365, -0.009439203888177872, 0.027887335047125816, 0.022213054820895195, 0.052924081683158875, 0.013634405098855495, -0.01205448154360056, -0.03791816905140877, -0.07621283084154129, 0.032835520803928375, 0.01200741995126009, -0.008074418641626835, -0.04141417145729065, -0.04894401878118515, -0.00970140378922224, -0.020962562412023544, 0.005590240471065044, 0.03557853773236275, -0.01948348432779312, -0.0024724125396460295, -0.021123915910720825, -0.05695793032646179, 0.004171670880168676, 0.004716240335255861, 0.0009555176948197186, -0.010064450092613697, -0.03227078169584274, -0.013338590040802956, 0.025332564488053322, -0.021352501586079597, 0.03079170547425747, -0.01418569777160883, -0.025722501799464226, 0.006457517854869366, 0.003506086068227887, -0.018461575731635094, 0.016753913834691048, -0.008464356884360313, -0.006965110544115305, 0.03302376717329025, -0.014279820956289768, 0.02893613465130329, 0.0038859399501234293, -0.018555698916316032, -0.007671033963561058, -0.007240756880491972, -0.004575055558234453, -0.029796689748764038, -0.0028673934284597635, 0.0049112094566226006, -0.03095305897295475, -0.023140840232372284, -0.025480471551418304, 0.009714850224554539, -0.015557206235826015, -0.002489220118150115, 0.051337435841560364, 0.010857773944735527, 0.00042250353726558387, -0.015073144808411598, 0.011772111989557743, -0.011651096865534782, -0.04727669432759285, -0.0029110934119671583, 0.023033270612359047, -0.014078129082918167, 0.016350530087947845, -0.006010433193296194, 0.018259884789586067, 0.02745705656707287, 0.023140840232372284, -0.0027127626817673445, -0.0015454678796231747, 0.011476296931505203, 0.00048700306797400117, 0.0007857599412091076, -0.0004924655659124255, 0.03614327684044838, -0.007845833897590637, -0.0027917588595300913, 0.018192652612924576, 0.01731865294277668, 0.0276184119284153, 0.03245902806520462, -0.008961864747107029, -0.02201136201620102, -0.005489394534379244, -0.020680192857980728, -0.026825087144970894, 0.047733865678310394, -0.002354758558794856, 0.004524632357060909, -0.019954100251197815, 0.011375450529158115, 0.003334647510200739, -0.008249218575656414, -0.034422166645526886, 0.012699897401034832, -0.002680828096345067, -0.03988130763173103, -0.018259884789586067, -0.017937175929546356, -0.036008816212415695, -0.008471080102026463, -0.016834590584039688, -0.0034724706783890724, -0.05663522332906723, -0.017170745879411697, 0.04410340264439583, -0.015758898109197617, -0.008350064978003502, -0.010501449927687645, 0.041118353605270386, 0.09154145419597626, -0.026475487276911736, -0.04746494069695473, 0.00650794105604291, -0.013385651633143425, -0.020102007314562798, -0.04235540330410004, 0.03606259822845459, -0.019375914707779884, 0.003065724391490221, -0.022979486733675003, 0.010010665282607079, -0.010286311618983746, 0.011604035273194313, -0.01162420492619276, 0.0008714792202226818, -0.0022421469911932945, -0.015584098175168037, 0.020774316042661667, -0.005059117451310158, 0.005136432591825724, 0.01605471409857273, -0.015261390246450901, -0.0037783707957714796, 0.003334647510200739, -0.01748000644147396, 0.013163790106773376, -0.003349774517118931, 0.04550180211663246, 0.01066952757537365, 0.001475716009736061, -0.031006842851638794, -0.0024135855492204428, -0.0037582016084343195, 0.01772203855216503, 0.009244234301149845, 0.07379252463579178, -0.0066928258165717125, -0.02449890226125717, -0.013721805065870285, -0.016283297911286354, -0.010602296330034733, 0.00591967161744833, -0.000974846538156271, -0.01688837632536888, 0.039451032876968384, -0.017775822430849075, -0.06599374860525131, -0.025641825050115585, -0.04063429310917854, 0.02410896308720112, -0.0334540456533432, 0.029500873759388924, -0.030253857374191284, 0.011362004093825817, 0.014373944140970707, 0.00957366544753313, -0.017775822430849075, 0.015261390246450901, 0.007516403216868639, -0.0031968243420124054, -0.006467602681368589, 0.023974502459168434, -0.007301264442503452, 0.016498437151312828, -0.019133884459733963, 0.0010706504108384252, -0.020263362675905228, -0.004420424811542034, 0.007785326335579157, -0.006625595036894083, -0.034852445125579834, -0.04055361449718475, 0.04499084874987602, 0.02475437894463539, 0.009856035001575947, -0.008988757617771626, 0.029070597141981125, 0.03130265697836876, 0.01614883728325367, -0.038698047399520874, 0.010817434638738632, -0.02351733297109604, 0.0569041445851326, 0.0117183281108737, 0.0025009855162352324, -0.01204775832593441, 0.0055969636887311935, 0.03789127618074417, 0.007993741892278194, 0.016861483454704285, 0.010676250793039799, -0.03783749043941498, -0.0006475166301243007, -0.013291528448462486, -0.012155327945947647, -0.023234963417053223, -0.008726557716727257, -0.01284780539572239, 0.01518071349710226, -0.014925236813724041, -0.015463083051145077, 0.0010235888184979558, -0.0150596983730793, 0.026394810527563095, -0.0013731890358030796, 0.034341491758823395, -0.02517120912671089, -0.014387390576303005, 0.006605425849556923, 0.002620320301502943, -0.006531471852213144, -0.002400139346718788, 0.012605774216353893, 0.03840222954750061, 0.00849124975502491, 0.06405749917030334, -0.025951087474822998, -0.000798785884398967, -0.003010259009897709, 0.02350388653576374, 0.017775822430849075, -0.0044540404342114925, 0.04168309271335602, 0.007012172136455774, -0.03789127618074417, -0.01605471409857273, 0.0342877060174942, 0.016269853338599205, 0.0694897472858429, -0.0009219023049809039, 0.0188111774623394, -0.0012135158758610487, 0.006938218139111996, 0.008168541826307774, -0.011187204159796238, 0.03302376717329025, 0.0017732122214511037, 0.014468067325651646, -0.018609484657645226, -0.011382173746824265, -0.0004912050208076835, -0.013399098068475723, 0.020599516108632088, 0.025211548432707787, -0.02116425521671772, 0.036681123077869415, -0.0343145988881588, -0.004568332806229591, -0.015772344544529915, -0.052493806928396225, 0.0018925468903034925, 0.03665423020720482, -0.012619220651686192, 0.05136432871222496, -0.013748697936534882, 0.03533650562167168, 0.02627379447221756, 0.01563788391649723, -0.020061669871211052, 0.03474487364292145, 0.024996409192681313, -0.01657911390066147, -0.021769331768155098, -0.029904257506132126, 0.04469503462314606, -0.03547096624970436, -0.0171572994440794, 0.04582450911402702, 0.023961056023836136, 0.0012496524723246694, -0.018555698916316032, 0.022360961884260178, 0.010185465216636658, 0.032082535326480865, 0.015113483183085918, -0.021150808781385422, 0.01831366866827011, 0.023073609918355942, 0.008108033798635006, -0.017439668998122215, 0.03071102686226368, -0.003956532571464777, 0.02209203876554966, 0.013069666922092438, 0.007368495222181082, 0.030522780492901802, 0.0013328505447134376, 0.023113947361707687, 0.030845489352941513, -0.00861226487904787, 0.046066541224718094, -0.005344848148524761, -0.025574594736099243, 0.027672195807099342, 0.025144318118691444, 0.03746100142598152, 0.016874929890036583, 0.01510003674775362, 0.006746610160917044, 0.011536804959177971, -0.0002708140527829528, 0.036761797964572906, -0.011825896799564362, -0.021016346290707588, -0.005415440537035465, -0.01858259178698063, -0.0054288869723677635, -0.0012790658511221409, 0.007301264442503452, -0.012249451130628586, 0.0006046569906175137, 0.0057179792784154415, -0.04837927967309952, -0.0326203815639019, -0.005556625314056873, 0.003959893714636564, 0.001225281273946166, 0.031410228461027145, -0.02159453183412552, 0.03377675265073776, -0.00017564045265316963, -0.012289789505302906, -0.008141648955643177, 0.0502079576253891, 0.001739596831612289, 0.01183934323489666, 0.031087519600987434, 0.004988525062799454, 0.028129365295171738, 0.02527877874672413, 0.015543759800493717, -0.006279356312006712, -0.019685177132487297, -0.010743481107056141, 0.02535945549607277, -0.027053672820329666, -0.0034489398822188377, -0.05028863623738289, 0.0401502326130867, -0.002084154635667801, -0.017358992248773575, 0.00865260325372219, -0.0022018086165189743, 0.002235424006357789, 0.011039297096431255, 0.009008926339447498, 0.052655160427093506, -0.04859441891312599, -0.006151617970317602, 0.007644141558557749, -0.034018781036138535, -0.06701565533876419, -0.008766896091401577, -0.0037884553894400597, 0.003785093780606985, 0.009808973409235477, -0.03778370842337608, -0.008262665010988712, 0.005590240471065044, 0.007711372338235378, 0.014037789776921272, -0.037434108555316925, 0.02158108539879322, 0.028882350772619247, -0.0015051295049488544, 0.016377421095967293, -0.001324446639046073, 0.018717054277658463, 0.02242819406092167, 0.0056608328595757484, 0.03119508922100067, -0.011167035438120365, -0.02015579305589199, -0.0076306951232254505, 0.0006458358257077634, -0.034260813146829605, 0.0010933408048003912, 0.009432480670511723, -0.014750436879694462, -0.0030455549713224173, -0.03205564245581627, -0.01906665414571762, 0.012034312821924686, -0.016942160204052925, 0.017049729824066162, -0.030899273231625557, 0.0053078713826835155, 0.022710563614964485, 0.010568681173026562, 0.0027077202685177326, 0.008343341760337353, 0.009977050125598907, 0.016767360270023346, -0.0096207270398736, -0.01267300546169281, 0.02525188773870468, 0.005828910041600466, -0.004484293982386589, -0.019012868404388428, 0.01873050071299076, -0.01175866648554802, 0.03197496756911278, 0.016753913834691048, 0.012256174348294735, 0.0002624102053232491, -0.03821398317813873, -0.006060856394469738, 0.030657242983579636, -0.01597403734922409, 0.01696905307471752, 0.009331634268164635, -0.00848452653735876, 0.0028724358417093754, 0.025050194934010506, 0.002506027929484844, -0.01204775832593441, -0.03149090334773064, -0.044883280992507935, 0.01856914535164833, 0.0296891201287508, 0.0014723544009029865, -0.009546773508191109, 0.034018781036138535, 0.015436191111803055, -0.00046389250201173127, 0.008121480233967304, -0.037272755056619644, 0.0007323955069296062, -0.016861483454704285, -0.011503188870847225, 0.007839110679924488, -0.01949693076312542, -0.048406172543764114, -0.04066118597984314, -0.02233407087624073, -0.0018337200162932277, 0.020465053617954254, 0.02016923949122429, 0.010548511520028114, -0.00748951081186533, 0.011940189637243748, 0.020021330565214157, 0.07260926067829132, -0.005808740854263306, -0.00953332707285881, 0.0038724937476217747, 0.057280637323856354, -0.003326243720948696, 0.013674743473529816, 0.011335112154483795, 0.007778603117913008, -0.002390054753050208, -0.04827171191573143, 0.024861948564648628, 0.011066189035773277, 0.01075020432472229, -0.001007621525786817, -0.010844327509403229, 0.028398288413882256, 0.057764701545238495, 0.02734948694705963, 0.0001955995976459235, 0.014468067325651646, -0.03867115452885628, 0.0087803415954113, -0.004403617233037949, -0.012242727912962437, -0.018206099048256874, 0.000588689639698714, -0.007644141558557749, -0.013520113192498684, 0.015288283117115498, -0.021688655018806458, -0.003159847343340516, -0.006958387326449156, 0.002479135524481535, -0.01589336059987545, -0.0280217956751585, 0.020680192857980728, -0.01688837632536888, 0.015705114230513573, -0.0009882927406579256, -0.01706317625939846, 0.00011418730719015002, -0.005808740854263306, -0.00744244921952486, 0.01856914535164833, 0.013251190073788166, -0.02560148760676384, -0.0016656429506838322, -0.0010513216257095337, -0.015342067927122116, -0.013372205197811127, 0.024579579010605812, -0.05453762039542198, -0.02125837840139866, -0.02141973190009594, 0.005280978977680206, -0.008074418641626835, -0.003980062901973724, -0.036519769579172134, -0.0025228355079889297, -0.005818825215101242, 0.0526820532977581, -0.03934346139431, 0.022387854754924774, 0.0020539008546620607, -0.006783587392419577, 0.011698158457875252, -0.002015243051573634, -0.002904370427131653, 0.01647154428064823, -0.03119508922100067, -0.015247944742441177, 0.01665979065001011, -0.006793671753257513, -0.010064450092613697, 0.024525795131921768, -0.009647618979215622, 0.015167267993092537, 0.00036220590118318796, -0.004642286337912083, -0.020707085728645325, -0.017036283388733864, 0.03369607403874397, 0.03536339849233627, 0.005432248115539551, -0.0017866584239527583, 0.00748951081186533, 0.030684135854244232, -0.006958387326449156, 0.07045787572860718, 0.0031985051464289427, -0.003980062901973724, 0.015382406301796436, 0.020196130499243736, 0.006534833461046219, 0.01171160489320755, -0.020774316042661667, -0.024660255759954453, 0.009358527138829231, -0.011207373812794685, 0.02853274904191494, -0.02057262323796749, -0.003369943704456091, 0.03963927552103996, -0.011274604126811028, -0.00015589140821248293, -0.0001788969530025497, -0.0033380091190338135, -0.0018522083992138505, -0.00291613582521677, 0.014656313695013523, -0.011288050562143326, 0.021984471008181572, -0.027994902804493904, -0.02425687201321125, -0.02334253303706646, 0.004265794064849615, -0.022858470678329468, -0.0027178048621863127, 0.01990031637251377, -0.021379392594099045, -0.005620494484901428, 0.0296891201287508, 0.0022690393961966038, 0.014508405700325966, 0.05348882079124451, -0.017843052744865417, 0.043484877794981, 0.012525097467005253, 0.0043464708141982555, -0.003048916580155492, 0.00040758668910712004, 0.0024085433688014746, -0.008861019276082516, -0.008679496124386787, -0.00746934162452817, -0.0032623743172734976, -0.0010336735285818577, -0.017264869064092636, 0.006003709975630045, -0.019133884459733963, 0.008948419243097305, 0.0032976705115288496, 0.005267533008009195, -0.033077552914619446, 0.007792049087584019, 0.004575055558234453, -0.021218039095401764, -0.0006723079713992774, 0.014468067325651646, -0.017264869064092636, 0.029662227258086205, -0.005052394233644009, 0.04071497172117233, 0.03573989123106003, -0.006084387190639973, 0.010071173310279846, -0.013257913291454315, 0.01816576160490513, 0.0016412717523053288, 0.007059233728796244, 0.012666282244026661, -0.0036439092364162207, -0.024028286337852478, 0.005734786856919527, -0.0018017853144556284, -0.023745916783809662, 0.018004408106207848, 0.00011859932419611141, 0.008027357049286366, -0.022038254886865616, -0.04316217079758644, 0.03173293545842171, 0.03028075024485588, -0.04130659997463226, -0.013304974883794785, -0.005825548432767391, 0.029662227258086205, -0.05163324996829033, 0.00869966484606266, -0.00974174216389656, 0.02367868646979332, -0.02023646980524063, -0.020612962543964386, -0.0027413356583565474, 0.001470673712901771, 0.012236004695296288, -0.010373711585998535, 0.014414282515645027, 0.0030455549713224173, 0.013002435676753521, 0.006773502565920353, 0.030495889484882355, -0.015126928687095642, 0.005317955743521452, -0.036842476576566696, 0.012659559026360512, -0.0016395910643041134, 0.02928573451936245, 0.006306248717010021, 0.006628956645727158, -0.012444420717656612, -0.007207141257822514, 0.0005500319530256093, -0.035013798624277115, -0.026488933712244034, -0.025977980345487595, -0.012074651196599007, -0.010387158021330833, 0.01079726591706276, 0.03590124472975731, 0.0003928799706045538, 0.028801672160625458, 0.03606259822845459, 0.006689464207738638, -0.03447595238685608, -0.009210619144141674, 0.0006588618271052837, -0.004359917249530554, -0.03286241367459297, 0.009250957518815994, -0.017184192314743996, 0.04125281795859337, -0.0368155837059021, -9.233729360857978e-05, 0.01393022108823061, -0.0027211664710193872, -0.005139794200658798, 0.031087519600987434, -0.04512530937790871, 0.02098945528268814, 0.0006029761862009764, 0.011476296931505203, -0.006275994703173637, -0.014454620890319347, -0.007415556814521551, -0.006286079529672861, -0.01313689723610878, -0.013311697170138359, -0.024472009390592575, -0.009015649557113647, 0.01384954433888197, 0.010353542864322662, 0.007133187260478735, -0.0038187091704458, 0.02125837840139866, -0.02257610112428665, -0.020612962543964386, -0.02425687201321125, -0.015167267993092537, -0.005697810091078281, -0.003329605096951127, 0.0026875510811805725, -0.023530779406428337, 0.02140628546476364, -0.013419266790151596, -0.006595341023057699, 0.0046859863214194775, 0.0008332416764460504, -0.026488933712244034, 0.009466095827519894, -0.049912143498659134, 0.024445118382573128, 0.0006634839228354394, 0.02526533231139183, 0.04493706300854683, -0.003060681978240609, -0.0367886908352375, -0.05529060587286949, 0.025735948234796524, -0.017211083322763443, 0.0008639157167635858, -0.0028522664215415716, -0.016673237085342407, -0.03436838462948799, -0.012350297532975674, -0.0016421121545135975, -0.011214097030460835, 0.020438162609934807, -0.011261158622801304, 0.01405123621225357, 0.035605430603027344, 0.02500985562801361, 0.012767127715051174, 0.020545730367302895, 0.00853158812969923, -0.02081465534865856, 0.010595573112368584, -0.0033833899069577456, -0.0021261738147586584, 0.03205564245581627, 0.030092503875494003, 0.01682114601135254, 0.01765480637550354, 0.01975240744650364, 0.04259743168950081, -0.001157210092060268, 0.03391121327877045, 0.01850191503763199, -0.0061280871741473675, -0.0032926283311098814, 0.0076374183408916, 0.032754842191934586, 0.017170745879411697, -0.00047607807209715247, 0.029097488150000572, 0.01380920596420765, 0.01510003674775362, -0.01422603614628315, -0.029339520260691643, 0.0018370815087109804, -0.0010143446270376444, -0.020357485860586166, -0.024485455825924873, 0.017426222562789917, -0.008397126570343971, -0.03772992268204689, -0.014387390576303005, 0.015920251607894897, 0.032754842191934586, 0.005341486539691687, 0.0027211664710193872, -0.012269619852304459, -0.024700595065951347, 0.05305854603648186, -0.006749971769750118, 0.011617481708526611, -0.010568681173026562, -0.02190379425883293, 0.000784919539000839, 0.012343574315309525, -0.006232294719666243, 0.037111397832632065, -0.0384560152888298, 0.02324840985238552, 0.03807952255010605, -0.0042624324560165405, 0.011409065686166286, -0.011778835207223892, -0.008034080266952515, -0.010064450092613697, 0.008982034400105476, -0.014925236813724041, 0.014723544009029865, -0.020384376868605614, 0.04176377132534981, 0.009129942394793034, 0.01933557726442814, 0.012155327945947647, 0.013876436278223991, 0.0217424388974905, 0.0334809347987175, -0.0007513041491620243, -0.017009390518069267, -0.01606816053390503, -0.030334535986185074, -0.0006651646690443158, 0.00382879376411438, 0.020196130499243736, -0.018367454409599304, -0.020774316042661667, 0.03571299836039543, -0.016417760401964188, 0.019765853881835938, 0.005408717319369316, 0.025722501799464226, -0.016606006771326065, -0.011940189637243748, 0.005230555776506662, 0.015046251937747002, 0.012726789340376854, 0.010528342798352242, -0.0019530545687302947, 0.006904602982103825, -0.00372122460976243, -0.06260531395673752, -0.02332908660173416, 0.007119741290807724, -0.015879914164543152, -0.003485916880890727, 0.034180138260126114, -0.022199608385562897, 0.02125837840139866, -0.03323890641331673, 0.05034241825342178, -0.03662733733654022, 0.009486265480518341, -0.005519648548215628, 0.024149302393198013], [0.013577568344771862, -0.006782085634768009, 0.06644769012928009, 0.04946066066622734, -0.01079775020480156, 0.04292306676506996, -0.056587714701890945, 0.02124718576669693, -0.0029857922345399857, 0.08016593009233475, -0.009076273068785667, -0.010154708288609982, 0.0368945449590683, 0.03810025006532669, -0.041878122836351395, 0.007093559019267559, 0.0009486547205597162, 0.045816756784915924, 0.005140988156199455, 0.010998700745403767, 0.04463784396648407, 0.02495807595551014, -0.0438072495162487, -0.01754969358444214, -0.07657560706138611, -0.029151245951652527, 0.015446409583091736, 0.021273979917168617, 0.02933879941701889, -0.07218148559331894, 0.0692342072725296, -0.03250042349100113, -0.010268580168485641, -0.034563519060611725, 0.000944468192756176, 0.0015431337524205446, -0.05530162900686264, -0.006303153000771999, 0.0034144870005548, 0.03351857513189316, 0.0031951158307492733, -0.030999992042779922, 0.0010357332648709416, 0.013972771354019642, -0.05286342650651932, 0.055944669991731644, -0.016678906977176666, -0.0685911700129509, 0.004487898666411638, 0.01753629557788372, 0.032875530421733856, 0.050746746361255646, 0.01012121606618166, -0.04573637619614601, 0.013523980975151062, 0.009866679087281227, 0.008815037086606026, 0.03472428023815155, 0.030624885112047195, -0.024596363306045532, 0.007629427593201399, -0.021649086847901344, 0.003854904090985656, 0.016102848574519157, 0.0072275265119969845, 0.01477657351642847, -0.012840748764574528, 0.007147145923227072, -0.016812874004244804, -0.018179338425397873, 0.07394985109567642, 0.03925236687064171, -0.003242004429921508, -0.020831888541579247, -0.009062875993549824, -0.025467149913311005, -0.01864822395145893, 0.01607605442404747, -0.01354407612234354, -0.013416807167232037, -0.03576922044157982, 0.02821347676217556, 0.013644551858305931, 0.0011052287882193923, 0.004042457789182663, -0.004414216615259647, -0.0685911700129509, -0.020872076973319054, 0.0015263878740370274, -0.013557473197579384, 0.016826270148158073, 0.013343125581741333, -0.06612617522478104, 0.02463655360043049, 0.028079509735107422, -0.02440880984067917, 0.06291095912456512, -0.03868970647454262, -0.014240705408155918, 0.02247968316078186, -0.026230763643980026, -0.04562920331954956, -0.0579809695482254, 0.019157297909259796, 0.01922428235411644, -0.053801197558641434, -0.010422642342746258, 0.0512826144695282, 0.01572773978114128, -0.023899734020233154, -0.011387205682694912, -0.03764476254582405, 0.011594854295253754, 0.0681624710559845, -0.027945542708039284, -0.013865597546100616, -0.06387552618980408, -0.008125105872750282, 0.011641742661595345, 0.018715206533670425, -0.05910629406571388, -0.02628435008227825, 0.018139148131012917, -0.036358676850795746, 0.023229898884892464, -0.019143901765346527, -0.022318921983242035, -0.03258080407977104, -0.07180637866258621, -0.025239406153559685, 0.05372081696987152, -0.023738974705338478, 0.043673280626535416, -0.0492195226252079, -0.04238719865679741, -0.019251076504588127, 0.02182324416935444, -0.03134830668568611, 0.0066146268509328365, -0.04404839128255844, 0.04938028007745743, 0.003367598634213209, 0.0024683442898094654, 0.03582280874252319, -0.06146411597728729, -0.010328865610063076, 0.008533705957233906, 0.038394976407289505, -0.021314170211553574, -0.009196843020617962, 0.013704836368560791, 0.046834904700517654, -0.04150301590561867, -0.008928908966481686, 0.014294291846454144, 0.003921887371689081, 0.03925236687064171, 0.055140867829322815, 0.011273333802819252, -0.008620784617960453, -0.014964127913117409, -0.013008208014070988, -0.02518581971526146, 0.0079777417704463, 0.0046319132670760155, 0.021890228614211082, 0.0030812439508736134, 0.031401894986629486, -0.05005011707544327, -0.06521519273519516, -0.027490053325891495, -0.01878219097852707, -0.04281589388847351, 0.009417888708412647, -0.017120998352766037, -0.04297665134072304, 0.010703973472118378, 1.7871005184133537e-05, 5.138894994161092e-05, -0.02404709905385971, 0.004625214729458094, 0.034563519060611725, -0.08670352399349213, -0.05530162900686264, -0.05112185329198837, 0.053586848080158234, -0.019063521176576614, 0.0031800447031855583, -0.04396801069378853, 0.005181178450584412, 0.03314346447587013, 0.010476228781044483, 0.025319786742329597, -0.0006321573746390641, -0.020523764193058014, -0.0006916052661836147, -0.0024398763198405504, -0.016263607889413834, 0.0015004317974671721, -0.023551419377326965, 0.029365593567490578, -0.027597228065133095, 0.03566204756498337, -0.0017198029672726989, -0.003925236873328686, -0.0005442414549179375, -0.04179774224758148, -0.0010097771883010864, -0.01706741191446781, -0.045254092663526535, 0.0070198774337768555, -0.01785781793296337, -0.00826577190309763, 0.017737247049808502, -0.0068524181842803955, -0.006289756391197443, -0.01777743734419346, 0.013731630519032478, 0.01562056690454483, 0.028374236077070236, -0.017964990809559822, 0.013162270188331604, 0.02381935529410839, -0.029419180005788803, -0.0371088944375515, 0.0019525708630681038, -0.0003173346340190619, -0.05653412640094757, -0.0009335834183730185, -0.06778736412525177, -0.02495807595551014, 0.015473202802240849, 0.007964345626533031, -0.02079169824719429, -0.0008322707726620138, -0.02529299259185791, -0.001164676621556282, -0.0013899089535698295, 0.001286084414459765, 0.02249307930469513, 0.035367321223020554, -0.013731630519032478, 0.012606306001543999, 0.047022461891174316, 0.030732057988643646, -0.011527870781719685, -0.0061155990697443485, -0.03132151439785957, 0.017027221620082855, 0.0398150272667408, 0.05246152728796005, 0.0542030967772007, 0.07352115958929062, -0.02619057334959507, -0.0048395623452961445, 0.020496970042586327, -0.0031766954343765974, -0.06392911076545715, -0.00393193494528532, 0.005127591546624899, -0.03517976775765419, 0.012097231112420559, -0.014455053023993969, -0.018031975254416466, -0.07705789059400558, -0.030196189880371094, -0.01292112935334444, -0.008460023440420628, -0.008279168047010899, 0.06848399341106415, -0.023765766993165016, 0.044664639979600906, 0.004832863807678223, -0.04442349821329117, -0.07716505974531174, 0.023229898884892464, -0.004531437996774912, -0.023457642644643784, 0.011501077562570572, -0.05061277747154236, -0.033759716898202896, -0.005650063510984182, 0.007113654166460037, -0.03303629159927368, 0.03718927502632141, 0.038287803530693054, 0.009478174149990082, -0.024797314777970314, -0.007187336217612028, -0.0032235838007181883, 0.057605862617492676, 0.002262369729578495, 0.000448371225502342, -0.0023728925734758377, 0.029740700498223305, 0.027811575680971146, 0.020014688372612, 0.014481846243143082, 0.002779817907139659, 0.014066548086702824, 0.005820871330797672, 0.009638934396207333, -0.023578213527798653, -0.042199645191431046, -0.0514969639480114, 0.021876830607652664, 0.045012954622507095, 0.0012877589324489236, -0.02585565485060215, -0.0014610789949074388, -0.03601036220788956, 0.015767930075526237, -0.07084181159734726, -0.04675452783703804, -0.039198778569698334, 0.004682151135057211, 0.003720936831086874, 0.032420042902231216, 0.02348443679511547, -0.010623592883348465, 0.008111709728837013, 0.0039051417261362076, 0.026270952075719833, -0.0009746107971295714, 0.02045677974820137, -0.043432142585515976, -0.003389368299394846, 0.009263826534152031, -0.029258418828248978, -0.023859545588493347, -0.02765081450343132, -0.034241996705532074, 0.012398657388985157, 0.019492216408252716, -0.038394976407289505, -0.02518581971526146, -0.03968106210231781, 0.0487908273935318, -0.013061794452369213, 0.02853499725461006, -0.013115381821990013, -0.014883747324347496, -0.03844856470823288, 0.013584266416728497, -0.05803455784916878, 0.053131360560655594, 0.017147792503237724, 0.010697274468839169, -0.00398887088522315, 0.06580465286970139, 0.023805957287549973, 0.033759716898202896, -0.01732194982469082, -0.013905787840485573, -0.05894553288817406, 0.006453866139054298, 0.031750209629535675, 0.011199651286005974, -0.030062222853302956, 4.110592635697685e-05, -0.0012098905863240361, 0.007803584914654493, 0.0039017924573272467, 0.025252802297472954, 0.03930595517158508, -0.014910540543496609, -0.028856517747044563, 0.005650063510984182, 0.041208285838365555, -0.02092566527426243, 0.0002643757325131446, 0.044021595269441605, 0.030437329784035683, 0.01785781793296337, 0.007515555713325739, -0.017697056755423546, -0.015526789240539074, 0.024931281805038452, 0.0061323451809585094, 0.03158944845199585, 0.01988072134554386, 0.028374236077070236, 0.018581239506602287, 0.009632236324250698, -0.0008163621532730758, 0.03609074279665947, -0.06205357238650322, -0.04482540115714073, -0.014173721894621849, 0.028133096173405647, -0.019961101934313774, -0.02284139394760132, -0.03978823497891426, 0.023511230945587158, -0.0492195226252079, 0.040082965046167374, -0.0016385853523388505, 0.02369878441095352, 0.022774411365389824, 0.0086542759090662, -0.02505185268819332, -0.052220385521650314, 0.018273115158081055, 0.001640259986743331, -0.0581953190267086, -0.001416702289134264, -0.04485219344496727, -0.004601770546287298, -0.04032410308718681, -0.01683966815471649, 0.027275705710053444, 0.010636989958584309, 0.045789964497089386, 0.011869487352669239, 0.01056330744177103, -0.019733358174562454, -0.042655132710933685, 0.04206567630171776, -0.01732194982469082, -0.002346099354326725, 0.020081670954823494, 0.006959591992199421, 0.0012961318716406822, 0.0024817408993840218, -0.04319100081920624, 0.06344682723283768, 0.050425224006175995, -0.018621429800987244, 0.012485736049711704, -0.05787379667162895, -0.021876830607652664, 0.01763007417321205, 0.002310932846739888, 0.01867501623928547, -0.0314822755753994, -0.05248831957578659, 0.016491353511810303, 0.006624674424529076, -0.008004535920917988, -0.030544504523277283, 0.014280895702540874, -0.04351252317428589, 0.035474494099617004, 0.00814520101994276, -0.0056031751446425915, -0.008178693242371082, 0.006450517103075981, 0.015875104814767838, 0.00520127359777689, -0.010837940499186516, -0.01630379818379879, 0.021783053874969482, -0.04112790524959564, -0.016571732237935066, -0.021501723676919937, -0.019264472648501396, 0.014964127913117409, -0.04353931546211243, 0.03166982904076576, -0.04431632533669472, 0.02517242170870304, 0.04461105167865753, 0.03619791567325592, 0.03250042349100113, 0.00685576768592, -0.025092042982578278, -0.02067112736403942, -0.022894982248544693, -0.02348443679511547, -0.03764476254582405, -0.02047017589211464, -0.018567843362689018, -0.01729515567421913, -0.023859545588493347, -0.006550992373377085, -0.018808983266353607, 0.014508639462292194, -0.039386335760354996, 0.015714343637228012, -0.011534569784998894, 0.035581666976213455, 0.0705202966928482, -0.04383404180407524, 0.0029891415033489466, 0.0906689465045929, -0.016678906977176666, 0.06521519273519516, 0.012860843911767006, -0.0009603768121451139, -0.004578326363116503, -0.06719791144132614, -0.005013719666749239, 0.029285212978720665, -0.015312442556023598, 0.012016850523650646, 0.020014688372612, -0.012097231112420559, -0.003861602395772934, 0.032634392380714417, 0.02215816266834736, 0.014374672435224056, -0.03113395906984806, 0.019934307783842087, 0.008928908966481686, 0.018393686041235924, 0.022560063749551773, -0.006768689025193453, -0.011594854295253754, -0.05492652207612991, 0.029044073075056076, -0.050184085965156555, 0.01721477508544922, 0.026391522958874702, 0.016156435012817383, -0.016009071841835976, -0.008620784617960453, 0.03201814368367195, -0.03370612859725952, -0.06092824786901474, 0.0008590641664341092, 0.012036945670843124, -0.03611753508448601, 0.02675323374569416, 0.012231198139488697, -0.01040254719555378, 0.02317631244659424, -0.017388932406902313, -0.05286342650651932, -0.014575622975826263, 0.0009804718429222703, -0.0007326327031478286, -0.01921088621020317, -0.024140875786542892, 0.020014688372612, 0.0011688631493598223, -0.00671510212123394, 0.002942252904176712, 0.004879752639681101, -0.019639579579234123, -0.025574324652552605, 0.03078564442694187, -0.013651249930262566, 0.013932581059634686, 0.016210021451115608, 0.008620784617960453, 0.003580271266400814, 0.015258855186402798, 0.026672855019569397, 0.0043103923089802265, 0.0012274737237021327, 0.008506912738084793, 0.02144813723862171, 0.001930801197886467, 0.01787121407687664, 0.004256805405020714, 0.012391959317028522, 0.015687549486756325, -0.05583749711513519, 0.019291264936327934, 0.0036673499271273613, -0.024194462224841118, 0.015379426069557667, 0.002935554599389434, 0.0068792118690907955, -0.023538023233413696, 0.028508203104138374, 0.018018577247858047, -0.025989621877670288, -0.008319358341395855, 0.005961536895483732, -0.02573508396744728, -0.004973529372364283, 0.004578326363116503, -0.019693167880177498, 0.0571235828101635, 0.011835995130240917, 0.0005053072236478329, -0.04203888401389122, 0.030732057988643646, 0.016678906977176666, -0.025386769324541092, 0.03394727036356926, -0.02361840382218361, -0.0007736601401120424, 0.005110845901072025, 0.031884174793958664, -0.014307688921689987, -0.043994802981615067, -0.002674318617209792, 0.013088587671518326, 0.03448313847184181, 0.00916335079818964, -0.013155571185052395, -0.0061423927545547485, 0.0017281759064644575, 0.03641226515173912, -0.010851336643099785, 0.006202677730470896, -0.003724286099895835, 0.0035400812048465014, -0.000998892355710268, -0.029981842264533043, 0.001538110082037747, 0.027248913422226906, -0.04509333521127701, 0.004122838377952576, 0.015299045480787754, -0.022975360974669456, 0.03046412393450737, 0.014522036537528038, 0.0063399942591786385, 0.005693602841347456, -0.004869705066084862, -0.042789097875356674, -0.015004318207502365, 0.006487357895821333, -0.054578207433223724, -0.0316966213285923, -0.005037163849920034, -0.0002673062845133245, -0.02586905099451542, -0.00438407389447093, 0.022292129695415497, -0.03252721577882767, -0.03239325061440468, -0.0012341721449047327, 0.0028886660002171993, -0.038957640528678894, 0.007997836917638779, -0.022506477311253548, -0.03943992033600807, 0.008580594323575497, -0.01787121407687664, -0.026793424040079117, -0.007348096929490566, 0.01096520945429802, 0.013289538212120533, 0.0028585235122591257, 0.015526789240539074, 0.004273551050573587, 0.03317026048898697, 0.03729644790291786, 0.03946671634912491, -0.03338460624217987, 0.0169870313256979, 0.01686646044254303, -0.004705595318228006, 0.030732057988643646, 0.021541913971304893, -0.00637683505192399, 0.00276977033354342, -0.022292129695415497, -0.013477092608809471, -0.0044242641888558865, 0.02743646688759327, -0.0015674153110012412, -0.04179774224758148, 0.015433012507855892, 0.010194897651672363, 0.048281751573085785, -0.039171986281871796, 0.02628435008227825, -6.054031928215409e-06, 0.01583491452038288, 0.04102073237299919, 0.01753629557788372, 0.042306818068027496, -0.02440880984067917, -0.01196326408535242, 0.005164432805031538, -0.03078564442694187, -0.0025102088693529367, 0.0673050805926323, -0.03046412393450737, 0.007033274043351412, -0.00821218453347683, -0.0036338581703603268, 0.027570433914661407, -0.01186278834939003, 0.03823421522974968, -0.01456222590059042, -0.0022740918211638927, -0.028481410816311836, 0.0030845929868519306, 0.010094422847032547, -0.032339662313461304, 0.006859116721898317, -0.031535860151052475, -0.01744251884520054, 0.01967976987361908, 0.0019207536242902279, 0.04584354907274246, -0.02426144666969776, 0.03392047435045242, -0.002265718998387456, 0.06666204333305359, 0.010529816150665283, -0.007843774743378162, -0.02754363976418972, -0.08086255937814713, 0.025922639295458794, 0.00269943755120039, -0.01888936385512352, -0.049514248967170715, -0.04798702523112297, -0.021608896553516388, -0.0025319785345345736, -0.024033701047301292, 0.0438072495162487, -0.017563089728355408, -0.019063521176576614, -0.007133749313652515, -0.06430421769618988, -0.009786298498511314, 0.007361493539065123, -0.011480982415378094, -0.019706564024090767, -0.020054878666996956, -0.0061993286944925785, 0.011661837808787823, -0.0273158960044384, 0.027704400941729546, -0.03201814368367195, -0.012331673875451088, -0.0040759495459496975, -0.007495460566133261, -0.010904924012720585, 0.0030946405604481697, -0.01533923577517271, 0.00791745726019144, 0.01785781793296337, -0.006818926427513361, 0.023564817383885384, -0.0072945100255310535, -0.02284139394760132, 0.0009193493751809001, -0.018701810389757156, 0.006540944799780846, -0.0212605819106102, -0.007830378599464893, 0.006835672538727522, -0.04241399094462395, -0.017924800515174866, -0.02261365018785, 0.007247621193528175, 0.0002070210757665336, -0.01203024759888649, 0.04881761968135834, 0.00949826929718256, 0.019170695915818214, -0.004022363107651472, 0.011614949442446232, -0.02010846510529518, -0.04128866642713547, -0.009350905194878578, 0.0019140553195029497, -0.005562984850257635, -0.009920265525579453, -0.010938415303826332, 0.034000854939222336, 0.02947276644408703, 0.001467777299694717, -0.01016810443252325, -0.0049634817987680435, 0.0029673718381673098, -0.017241569235920906, 0.010127914138138294, -0.0027044613379985094, 0.0425211638212204, -0.002560446737334132, -0.02912445180118084, -0.007656221278011799, -0.008004535920917988, 0.03426878899335861, 0.027248913422226906, -0.016786079853773117, -0.013812010176479816, 0.022975360974669456, -0.003563525388017297, -0.019760150462388992, 0.02360500767827034, -0.004132885951548815, -0.0016712398501113057, -0.02483750507235527, -0.01247903797775507, 0.012633100152015686, -0.016812874004244804, -0.02190362475812435, 0.008058122359216213, -0.0027613972779363394, -0.049648214131593704, -0.008734656497836113, -0.017254965379834175, -0.023551419377326965, -0.030437329784035683, -0.025574324652552605, 0.017589883878827095, -0.05723075568675995, -0.013336427509784698, 0.024194462224841118, -0.007240923121571541, 0.005817522294819355, -1.2402425454638433e-05, 0.02912445180118084, 0.09313394129276276, -0.014964127913117409, -0.03327743336558342, 0.0005132615333423018, -0.0038314596749842167, -0.007810283452272415, -0.043780457228422165, 0.0364658497273922, -0.0024164319038391113, 0.006276359781622887, -0.030303362756967545, 0.011507775634527206, -0.0008799965144135058, -0.0041027432307600975, -0.0007146308780647814, -0.018567843362689018, 0.024663347750902176, -0.0013003183994442225, 0.011501077562570572, -0.0032185602467507124, 0.00742177851498127, 0.011869487352669239, 0.0014309363905340433, 0.0027530244551599026, -0.012170912697911263, -0.029365593567490578, 0.026806822046637535, -0.00832605641335249, 0.026954185217618942, 0.009618839249014854, -0.014816763810813427, -0.027155136689543724, -0.024127479642629623, -0.004883101675659418, 0.020510366186499596, 0.010476228781044483, 0.03842177242040634, -0.0003236143384128809, -0.038153838366270065, -0.024341825395822525, -0.03089281916618347, -0.008614085614681244, 0.0015054555842652917, 0.009866679087281227, -0.012961319647729397, 0.0190903153270483, -0.010409245267510414, -0.017415726557374, -0.016370782628655434, -0.03676057979464531, 0.02170267328619957, -0.03303629159927368, 0.02775798738002777, -0.021381152793765068, 0.021984005346894264, 0.03196455538272858, -0.010523117147386074, 0.0008527844911441207, 0.003925236873328686, -0.000249723088927567, -0.012901034206151962, -0.0003328245657030493, 0.010261882096529007, -0.018835777416825294, 0.016705701127648354, -0.004578326363116503, 0.018487462773919106, -0.035152971744537354, 0.005100798327475786, 0.002354472177103162, -0.016799477860331535, -0.03330422565340996, -0.02979428879916668, 0.03649264574050903, 0.015942087396979332, -0.0018085561459884048, 0.0014367974363267422, 0.03207172825932503, 0.022573459893465042, 0.009859980084002018, -0.028829725459218025, 0.011668536812067032, -0.02282799780368805, 0.027007771655917168, 0.02284139394760132, -0.012438847683370113, -0.009679124690592289, -0.02438201569020748, 0.038609325885772705, 0.006232820451259613, 0.016156435012817383, 0.012298181653022766, -0.03215210884809494, 0.0045079938136041164, -0.012673289515078068, -0.030089015141129494, -0.047022461891174316, -0.010415944270789623, -0.020429985597729683, 0.009973851963877678, -0.006393581163138151, -0.0002790284052025527, -0.011246539652347565, 0.0027630720287561417, 0.0257484819740057, 0.012800558470189571, 0.014468449167907238, -0.012398657388985157, -0.03201814368367195, 0.010496323928236961, 0.027289103716611862, -0.028963692486286163, -0.005244812928140163, 0.022653840482234955, 0.024194462224841118, 0.008051424287259579, 0.08145201206207275, -0.019599389284849167, 0.007910758256912231, -0.011233143508434296, 0.023993512615561485, 9.414330270374194e-05, 0.017589883878827095, 0.026833614334464073, 0.01287424098700285, -0.04225322976708412, -0.020738109946250916, 0.04830854386091232, 0.028910106047987938, 0.060874659568071365, -0.006085456348955631, -0.0027647465467453003, 0.0076830144971609116, -0.007575840689241886, 0.03622471168637276, -0.01729515567421913, 0.006554341409355402, -0.019277868792414665, 0.016665510833263397, -0.028374236077070236, -0.003143203677609563, 0.01286754198372364, 0.0009486547205597162, 0.03325064107775688, 0.02518581971526146, -0.017589883878827095, 0.03574242815375328, -0.02821347676217556, 0.0006631372380070388, -0.005348637234419584, -0.04442349821329117, -0.016102848574519157, 0.016169831156730652, 0.010014042258262634, 0.03367933630943298, -0.031187545508146286, 0.024797314777970314, 0.04080638661980629, 0.020322812721133232, -0.017147792503237724, 0.03651943802833557, 0.01651814579963684, 0.022091178223490715, -0.02407389134168625, -0.022399302572011948, 0.032875530421733856, -0.0371088944375515, -0.006695006974041462, 0.05305097997188568, 0.011996756307780743, 0.0026240809820592403, -0.00039101653965190053, 0.011286729946732521, 0.011233143508434296, 0.015084697864949703, 0.006413675844669342, -0.026458507403731346, 0.02438201569020748, 0.03330422565340996, 0.0046988967806100845, -0.006959591992199421, 0.022506477311253548, -0.01293452549725771, 0.016343988478183746, 0.013523980975151062, 0.01259290985763073, 0.04739756882190704, -0.0024281542282551527, 0.0032051634043455124, 0.017804231494665146, -0.011058986186981201, 0.05203283205628395, 0.011554664000868797, -0.030276570469141006, 0.02269403077661991, 0.02518581971526146, 0.03014260344207287, -0.0041596791706979275, 0.016799477860331535, 0.011045589111745358, -0.00994036067277193, 0.010904924012720585, 0.029713908210396767, 0.01142069697380066, -0.004883101675659418, -0.010891526937484741, -0.035688839852809906, -0.002324329689145088, 0.01586170680820942, 0.03619791567325592, -0.010308770462870598, 0.008861925452947617, 0.019746754318475723, -0.056051842868328094, -0.038609325885772705, -0.00649070693179965, 0.01017480343580246, -0.005224717780947685, 0.029928255826234818, -0.00525820953771472, 0.037832316011190414, -0.013021604157984257, -0.013691440224647522, 0.009571950882673264, 0.049969736486673355, -0.004554882179945707, 0.030999992042779922, 0.03384009376168251, 0.006212725304067135, 0.0404580719769001, 0.01653154380619526, 0.014441655948758125, 0.0025654705241322517, 0.025145629420876503, -0.00826577190309763, 0.030089015141129494, -0.03877008706331253, -0.01763007417321205, -0.04118149355053902, 0.047477949410676956, -0.01641097292304039, 0.008701164275407791, -0.019585993140935898, -0.005077354144304991, 0.009223636239767075, 0.0016000698087736964, 0.0053687323816120625, 0.05744510143995285, -0.036921340972185135, 0.009015987627208233, 0.02010846510529518, -0.022801203653216362, -0.04482540115714073, -0.015165078453719616, 0.0009570276597514749, 0.0012534299166873097, -0.005000323057174683, -0.036921340972185135, -0.010315468534827232, 0.005559635814279318, 0.009123161435127258, 0.016022467985749245, -0.03442955017089844, 0.026003018021583557, 0.013523980975151062, -0.00770310964435339, 0.01808556169271469, 0.011722123250365257, 0.010737464763224125, 0.011179556138813496, -0.0017382234800606966, 0.012566116638481617, 0.006892608478665352, -0.00517447991296649, -0.018849173560738564, 0.013436902314424515, -0.002660922007635236, -0.010543212294578552, -0.004802721552550793, -0.023538023233413696, -0.005961536895483732, -0.026217365637421608, -0.022560063749551773, -0.0013279491104185581, -0.024542776867747307, -0.007093559019267559, -0.04589713737368584, 0.0022422748152166605, 0.02270742692053318, -0.003476446960121393, 0.011139366775751114, 0.008366246707737446, 0.011742218397557735, -0.01184939220547676, -0.013390013948082924, -0.0004956783377565444, 0.009357603266835213, 0.027945542708039284, 0.006698356010019779, -0.010201596654951572, 0.01629040203988552, 0.010811147280037403, 0.01955920085310936, 0.034456342458724976, 0.01505790464580059, 0.0003208931302651763, -0.017482709139585495, -0.015299045480787754, 0.026913994923233986, -0.0013932581059634686, 0.001991086406633258, 0.007435175124555826, -0.005834268406033516, -0.006892608478665352, 0.022908378392457962, 0.013209158554673195, -0.006999782286584377, -0.012512529268860817, -0.03279515355825424, 0.006430421955883503, 0.048174578696489334, 0.003061148803681135, -0.024355223402380943, 0.004089346621185541, 0.03970785439014435, 0.0033927173353731632, -0.010724068619310856, -0.03844856470823288, -0.00900259055197239, -0.006366787478327751, -0.0056802062317729, 0.022399302572011948, -0.007147145923227072, -0.050746746361255646, -0.022506477311253548, -0.01528564840555191, -0.007763394620269537, 0.028695758432149887, 0.007348096929490566, -0.002272417303174734, -0.007361493539065123, -7.844402716727927e-05, 0.01562056690454483, 0.07930853962898254, -0.008480118587613106, -0.024877695366740227, 0.009324111975729465, 0.049085553735494614, -0.0014208888169378042, 0.006594531703740358, 0.01931805908679962, 0.01765686646103859, -0.009699219837784767, -0.054015543311834335, 0.021381152793765068, -0.0020630937069654465, 0.011152762919664383, -0.009029383771121502, -0.013095286674797535, 0.030410537496209145, 0.03989540785551071, 0.02361840382218361, 0.006966290529817343, 0.023310279473662376, -0.04128866642713547, -0.004233361221849918, -0.007542348932474852, -0.008084915578365326, -0.017281759530305862, -0.006758641451597214, -0.010750861838459969, 0.009746108204126358, 0.011976661160588264, -0.014079944230616093, -0.005502699408680201, -0.009042780846357346, 0.00643377099186182, -0.00877484679222107, -0.02339066006243229, 0.007106956094503403, -0.008754751645028591, 0.0036137632559984922, 0.013878993690013885, -0.016277005895972252, -0.01629040203988552, -0.0022004100028425455, -0.005509397946298122, 0.020644333213567734, 0.01057000644505024, -0.028079509735107422, -0.02101944200694561, -0.004152980633080006, -0.025132233276963234, 0.0027513497043401003, 0.016879858449101448, -0.035126179456710815, -0.02325669303536415, -0.031053578481078148, 0.017938198521733284, 0.003948681056499481, -0.006504104007035494, -0.03177700191736221, -0.00758923776447773, 0.0024549474474042654, 0.04013654962182045, -0.027972334995865822, 0.018393686041235924, -0.008171994239091873, -0.0018906110199168324, -0.015901897102594376, 0.00798444077372551, -0.016464559361338615, -0.0041429330594837666, -0.01146758534014225, -0.018165942281484604, 0.001850420841947198, -0.006999782286584377, -0.002086537890136242, 0.019063521176576614, -0.020711317658424377, 0.019920911639928818, -0.02732929401099682, -0.011300127021968365, -0.03810025006532669, -0.016678906977176666, 0.026699647307395935, 0.029178040102124214, 0.0017985086888074875, -0.000406925129937008, -0.019411835819482803, 0.03250042349100113, 0.003168322378769517, 0.07405702769756317, 0.0113604124635458, -0.010302071459591389, 0.02585565485060215, 0.014642606489360332, 0.004842911381274462, 0.013349823653697968, -0.02134096249938011, -0.02191702090203762, -0.02112661488354206, -0.01651814579963684, 0.021273979917168617, -0.010302071459591389, -0.011896280571818352, 0.03911840170621872, -0.02258685790002346, 0.024797314777970314, -0.011058986186981201, -0.014280895702540874, 0.016317196190357208, -0.012445545755326748, -0.003868300700560212, -0.00508740171790123, 0.03102678619325161, -0.021649086847901344, -0.0379662811756134, -0.006457215175032616, -0.011099176481366158, -0.023524627089500427, -0.004866355564445257, 0.030973199754953384, -0.009926963597536087, -0.005743840243667364, 0.029178040102124214, 0.006209376268088818, 0.006500754505395889, 0.04871044680476189, -0.008754751645028591, 0.04174415394663811, -0.015459805727005005, 0.020965855568647385, -0.018500858917832375, -0.01673249341547489, -0.001359766349196434, -0.007328001782298088, -0.01629040203988552, 0.004829514771699905, 0.0022355762775987387, 0.005264908075332642, -0.012432148680090904, 0.006735197268426418, -0.0030042126309126616, 0.01213072333484888, -0.009752806276082993, -0.009317412972450256, -0.01258621085435152, -0.017362140119075775, 0.01933145523071289, -0.02663266472518444, -0.013001509010791779, 0.00971261691302061, -0.015821516513824463, 0.012947922572493553, 0.006494056433439255, 0.03970785439014435, 0.01535263191908598, -0.025132233276963234, 0.0009930313099175692, -0.01596888154745102, 0.012767067179083824, -0.0212605819106102, 0.004578326363116503, 0.007656221278011799, -0.003583620535209775, 0.006373486015945673, 0.018701810389757156, 0.01033556368201971, -0.010610195808112621, 0.02799912914633751, 0.014923937618732452, 0.0199075136333704, -0.035340528935194016, -0.0229351706802845, 0.03542090579867363, 0.014280895702540874, -0.04485219344496727, -0.02698097936809063, -0.018259719014167786, 0.04211926460266113, -0.060767486691474915, -0.0019425232894718647, -0.0058778077363967896, 0.03000863641500473, -0.015674153342843056, -0.020162051543593407, 9.859143028734252e-05, 0.00491994246840477, 0.002160219941288233, -0.002026252681389451, 0.009538459591567516, -0.02202419564127922, -0.004883101675659418, -0.005666809156537056, 0.03630509227514267, -0.008466722443699837, 0.010081025771796703, -0.03196455538272858, 0.014361275359988213, 0.004909894894808531, 0.021515119820833206, 0.006232820451259613, -0.01389239076524973, -0.01564735919237137, -0.01061689481139183, -0.013919183984398842, -0.04115470126271248, -0.025708291679620743, -0.008038027212023735, -0.005804125685244799, -0.011005398817360401, 0.006497405469417572, 0.011286729946732521, 0.004032410215586424, 0.03576922044157982, 0.033116672188043594, 0.0080313291400671, -0.03279515355825424, 0.0015933715039864182, 0.006607928313314915, -0.01843387633562088, -0.03239325061440468, -0.0034898435696959496, -0.004832863807678223, 0.04128866642713547, -0.03244683891534805, 0.004511342849582434, 0.020831888541579247, 0.01112596970051527, -0.008815037086606026, 0.029767494648694992, -0.06092824786901474, 0.02597622573375702, 0.01461581327021122, 0.005616571754217148, -0.00900259055197239, -0.018688414245843887, -0.0020982599817216396, 0.013698138296604156, 0.004380724858492613, -0.00949157029390335, -0.020188845694065094, -0.024649951606988907, 0.007957647554576397, 0.015808120369911194, 0.014990921132266521, -0.01934485323727131, 0.041556600481271744, -0.02056395262479782, 0.009846583940088749, -0.029365593567490578, 0.0013631155015900731, -0.006926100235432386, -0.0042434087954461575, -0.008788242936134338, -0.018688414245843887, 0.01697363518178463, -0.01389239076524973, -0.007106956094503403, -0.009525062516331673, -0.0043271379545331, -0.01808556169271469, 0.005562984850257635, -0.048388924449682236, 0.05104147270321846, 0.013396712020039558, 0.02213136851787567, 0.035019006580114365, -0.018299909308552742, -0.026445109397172928, -0.05706999450922012, 0.012103929184377193, -0.010496323928236961, -0.01147428434342146, -0.0007677990943193436, -0.010523117147386074, -0.034349169582128525, 0.008118407800793648, 0.011105874553322792, 0.0039017924573272467, -0.0049902754835784435, -0.026485299691557884, 0.01528564840555191, 0.019478820264339447, 0.010998700745403767, 0.0066447691060602665, 0.0186616200953722, 0.01575453393161297, -0.0173085518181324, 0.010576704517006874, -0.01292112935334444, -0.009431285783648491, 0.037269651889801025, 0.015379426069557667, 0.006169185973703861, 0.00022460425680037588, 0.0005078191170468926, 0.03968106210231781, 0.01505790464580059, 0.04128866642713547, 0.01287424098700285, -0.0022188303992152214, 0.011052288115024567, 0.011929772794246674, 0.03081243857741356, 0.007240923121571541, -3.163403380312957e-05, 0.04000258445739746, 0.00474913464859128, 0.01966637372970581, -0.01799178496003151, -0.017844419926404953, 0.0005760586354881525, 0.011460887268185616, -0.006453866139054298, -0.022787807509303093, 0.00989347230643034, 0.010878130793571472, -0.033893682062625885, -0.0038214121013879776, 0.021850038319826126, 0.021394548937678337, -0.005904600955545902, 0.01095851045101881, -0.009632236324250698, -0.03057129681110382, 0.04753153398633003, -0.001005590776912868, 0.013477092608809471, -0.013014906086027622, -0.02337726391851902, -0.023886337876319885, 0.01966637372970581, -0.008808338083326817, 0.046379417181015015, -0.01842048019170761, 0.036037154495716095, 0.02767760679125786, -0.009853282012045383, 0.0290976595133543, 0.0033776462078094482, -0.014629209414124489, -0.010268580168485641, -0.008882020600140095, -0.010194897651672363, 0.006072059739381075, -0.01800518110394478, 0.03708209842443466, 0.002794889034703374, 0.01456222590059042, 0.00289703905582428, 0.0075490474700927734, 0.012800558470189571, 0.017054013907909393, 0.010382452048361301, -0.0227208249270916, -0.002252322155982256, -0.020751507952809334, 0.012505831196904182, -0.0029271815437823534, 0.01910371147096157, -0.019934307783842087, -0.011172858066856861, 0.009873377159237862, -0.02193041890859604, 0.01821952871978283, 0.001522201462648809, -0.00328721827827394, -0.02036300301551819, -0.0186616200953722, 0.002384614897891879, 0.01899653859436512, -0.002284139394760132, 0.011199651286005974, -0.017616676166653633, 0.0032436789479106665, 0.0033625748474150896, -0.05556956306099892, -0.026672855019569397, 0.002607335103675723, 0.0015280625084415078, 0.005837617442011833, 0.043780457228422165, -0.008299263194203377, 0.005773982964456081, -0.030758852139115334, 0.04099394008517265, -0.03507259115576744, 0.021193599328398705, -0.009504967369139194, 0.022091178223490715], [0.028830640017986298, 0.04768657311797142, 0.03947210684418678, 0.06576906144618988, -0.025670204311609268, 0.011014851741492748, -0.012521726079285145, 0.0009843023726716638, 0.021602977067232132, 0.07419688999652863, -0.01669563353061676, -0.0018035818357020617, -0.026416974142193794, 0.0009042912861332297, -0.01789579913020134, 0.0019302660366520286, 0.012401709333062172, 0.04227249324321747, -0.02026946097612381, 0.023576581850647926, 0.060541678220033646, 0.022963164374232292, -0.006440887693315744, 0.019629372283816338, -0.051500432193279266, -0.05840804800391197, 0.015575479716062546, -0.012368370778858662, -0.011054856702685356, -0.0277904961258173, 0.10316088050603867, -0.018442541360855103, 0.025083456188440323, -0.03733848035335541, 0.017749112099409103, 0.010681471787393093, 0.002925403183326125, 0.0022753134835511446, 0.01858922839164734, 0.020136108621954918, -0.04139237105846405, 0.011568261310458183, -0.04037889838218689, -0.04739319905638695, -0.04101898521184921, 0.04963350668549538, -0.0010251413332298398, -0.032484475523233414, 0.0002756629837676883, 0.013175149448215961, -0.0009251274750567973, 0.018229179084300995, -0.007240998093038797, -0.03677840158343315, 0.011501585133373737, -0.011548258364200592, -0.01628224365413189, 0.059208158403635025, 0.01389524806290865, -0.02298983559012413, 0.03837862238287926, -0.05616774037480354, -0.016228903084993362, -0.009981375187635422, 0.016108887270092964, 0.0021986362989991903, 0.026576995849609375, 0.026670342311263084, -0.04120567813515663, 0.014988732524216175, 0.0403522290289402, 0.01600220613181591, 0.0014727029483765364, -0.017509080469608307, -0.018949277698993683, -0.012408376671373844, 0.018255848437547684, -0.0043572671711444855, -0.039258744567632675, -0.04752654954791069, -0.012308362871408463, -0.004423942882567644, 0.0076410528272390366, -0.0035471555311232805, -0.011674942448735237, 0.0035971624311059713, -0.027977189049124718, -0.010001378133893013, -0.017069019377231598, 0.0067475964315235615, -0.04547293484210968, -0.0031687701120972633, -0.049340132623910904, 0.02080286666750908, 0.005944152362644672, -0.03816526010632515, 0.04547293484210968, -0.014775369316339493, -0.016815651208162308, 0.04240584373474121, -0.007961097173392773, -0.011734950356185436, -0.04261920601129532, 0.017162365838885307, 0.05670114606618881, 0.009021243080496788, -0.035204850137233734, 0.053420696407556534, -0.014268632978200912, -0.044219426810741425, 0.021362943574786186, -0.016748974099755287, -0.002093621762469411, 0.07755735516548157, -0.013801902532577515, -0.010441439226269722, -0.027363771572709084, -0.01397525891661644, 0.01290177833288908, 0.010694807395339012, -0.059048138558864594, -0.03323124721646309, 0.03787188604474068, -0.06171517074108124, 0.03957878798246384, -0.02896399237215519, -0.01525543536990881, 0.0073010060004889965, -0.05675448849797249, -0.016335584223270416, 0.06902284920215607, -0.012034991756081581, 0.026643671095371246, -0.06374211609363556, 0.0065142312087118626, -0.002812054241076112, 0.01856255903840065, 0.007127649150788784, 0.013695220462977886, -0.030244167894124985, 0.03411136940121651, 0.037391819059848785, 0.08481168746948242, 0.024776747450232506, -0.023256538435816765, 0.001400192966684699, 0.0012193346628919244, 0.03869866579771042, -0.015695495530962944, 0.02511012740433216, 0.009267943911254406, -0.0027437114622443914, 0.01754908449947834, -0.02631029300391674, 0.018162503838539124, -0.056807827204465866, 0.02523014321923256, 0.05974156782031059, 0.03373798355460167, 0.0063542090356349945, -0.04413941502571106, 0.005467419978231192, -0.05590103566646576, -0.03872533515095711, 0.02174966409802437, -0.026016918942332268, -0.03187105804681778, 0.0018485881155356765, -0.03699176385998726, -0.044219426810741425, -0.04213913902640343, -0.03563157841563225, -0.01840253546833992, -0.008121118880808353, 0.010094724595546722, -0.02672368288040161, 0.026203611865639687, -0.0022736466489732265, 0.02077619731426239, 0.01812249794602394, 0.014588677324354649, 0.0032937873620539904, -0.11980317533016205, -0.0516604520380497, -0.012088332325220108, 0.037818543612957, 0.006447555031627417, -0.0242166705429554, -0.02760380506515503, -0.02728375978767872, -0.0032004411332309246, 0.026777023449540138, 0.03661837801337242, 0.008374487049877644, -0.013775231316685677, -0.0191359706223011, -0.010008045472204685, 0.002927070017904043, 0.0818779468536377, -0.03917873278260231, 0.03352462127804756, -0.061395127326250076, 0.0205228291451931, -0.023216532543301582, -0.044379450380802155, -0.003707177471369505, -0.007527703884989023, 0.014988732524216175, 0.018869267776608467, -0.008181127719581127, -0.0012868440244346857, 0.006590908393263817, -0.034164708107709885, 0.047499880194664, -0.01581551320850849, 0.013535198755562305, -0.014802039600908756, 0.01777578331530094, 0.010721477679908276, 0.03480479493737221, 0.008481169119477272, 0.015882188454270363, 0.014522001147270203, -0.012781761586666107, -0.008374487049877644, -0.01263507455587387, 0.02707039751112461, -0.05328734219074249, 0.018482547253370285, -0.03323124721646309, 0.023163191974163055, 0.022909823805093765, -0.009507977403700352, -0.039632126688957214, 0.0343514010310173, -0.0202961303293705, -0.028590606525540352, -0.03309789299964905, -0.01474869903177023, 0.009981375187635422, 0.023323213681578636, 0.019882740452885628, 0.001746907364577055, 4.287700448912801e-06, 0.041285689920186996, -0.012468384578824043, 0.005817468278110027, -0.023283207789063454, 0.003513817675411701, -0.009961373172700405, -0.01397525891661644, -0.0001316848210990429, 0.05251390486955643, -0.05160711333155632, -0.026003584265708923, -0.005347403697669506, 0.035711586475372314, -0.02827056311070919, -0.007907756604254246, -0.008921229280531406, -0.02054949849843979, -0.023789945989847183, -0.009534647688269615, -0.03309789299964905, -0.06219523772597313, -0.024496709927916527, -0.0038105251733213663, 0.007801075000315905, -0.027817167341709137, 0.016482271254062653, 0.004437278024852276, 0.03384466469287872, 0.027897177264094353, -0.03632500767707825, -0.0514204204082489, 0.00528739532455802, 0.028190551325678825, -0.022949829697608948, -0.0077077290043234825, 0.01542879268527031, -0.045232899487018585, -0.00861452054232359, -0.004310593940317631, -0.02020278386771679, -0.00451395520940423, 0.02400330826640129, -0.009681333787739277, -0.018095826730132103, -0.007847747765481472, 0.023509906604886055, 0.09323951601982117, -0.001823584665544331, -0.01906929537653923, 0.0017702439799904823, 0.022309741005301476, 0.010954842902719975, -0.026737017557024956, 0.0008642858010716736, -0.0643288642168045, -0.009307949803769588, -0.02428334578871727, 0.017495743930339813, 0.019215982407331467, -0.036218322813510895, -0.02121625654399395, 0.010554787702858448, 0.039258744567632675, 0.019642706960439682, -0.030430860817432404, 0.009174597449600697, -0.037898555397987366, 0.021522965282201767, 0.007307673804461956, -0.045392923057079315, -0.033151235431432724, 0.023789945989847183, 0.0016293912194669247, 0.06496895104646683, -0.012201681733131409, 0.019842734560370445, 0.04344598576426506, -0.011788290925323963, 0.035524897277355194, -0.007220995146781206, 0.022629784420132637, -0.0015843850560486317, 0.0003417137486394495, 0.010288084857165813, -0.04309927299618721, -0.0677960067987442, -0.016655629500746727, -0.016108887270092964, 0.027150407433509827, -0.04208580031991005, -0.03187105804681778, -0.05115371569991112, 0.052380550652742386, 0.01474869903177023, 0.007907756604254246, 0.003108761738985777, 0.033124566078186035, 0.0005092368228361011, 0.010028048418462276, -0.003192106494680047, -0.032777849584817886, 0.02640363946557045, 0.01500206720083952, 0.0030470865312963724, -0.005204050336033106, 0.012875108048319817, -0.019936081022024155, 0.0334446094930172, -0.09025243669748306, 0.0029904120601713657, -0.07339677959680557, 0.00012720502854790539, 0.01761576160788536, -0.026043588295578957, 0.01865590363740921, -0.017002342268824577, -0.018255848437547684, -0.019536025822162628, 0.04672643914818764, 0.0042339167557656765, 0.008541177026927471, 0.004817330744117498, -0.04605967923998833, -0.012621739879250526, 0.03835195302963257, -0.040832292288541794, 0.03547155484557152, 0.031284309923648834, 0.03429805859923363, -0.02365659363567829, -0.0202961303293705, 0.011054856702685356, -0.04968684911727905, 0.021856345236301422, 0.008214465342462063, -0.002947072731330991, 0.005790797993540764, 0.030910925939679146, 0.0018019150011241436, 0.035524897277355194, 0.03947210684418678, 0.058514729142189026, -0.030084146186709404, -0.04152572154998779, 0.01230169553309679, -0.0069609591737389565, -0.0059808241203427315, 0.01932266354560852, 0.02529682032763958, 0.06144846975803375, -0.03563157841563225, 0.04208580031991005, 0.051047034561634064, 0.06518231332302094, 0.032964542508125305, -0.025683538988232613, 0.047793254256248474, -0.034484751522541046, -0.03133765235543251, 0.03616498410701752, 0.006390880793333054, 0.032777849584817886, 0.010461442172527313, -0.03115095943212509, 0.011128200218081474, 0.00972133968025446, 0.008607853204011917, 0.025976913049817085, 0.04213913902640343, -0.02447003871202469, 0.029524069279432297, 0.013515195809304714, 0.017055684700608253, 0.011341563425958157, 0.009221270680427551, -0.009607991203665733, 0.08593184500932693, -0.01944267936050892, -0.00534407002851367, -0.046459734439849854, -0.0035904948599636555, 0.030910925939679146, 0.0320577509701252, -0.057181213051080704, -0.011268219910562038, -0.08166458457708359, -0.031951069831848145, 0.029950793832540512, 0.043365977704524994, -0.0030787575524300337, -0.021803004667162895, -0.031764376908540726, -0.0018135833088308573, 0.002757046604529023, 0.0009126257500611246, -0.03403135761618614, -0.03488480672240257, -0.05846139043569565, 0.028830640017986298, -0.014441990293562412, -0.02501678094267845, 0.0038371954578906298, 0.003065422410145402, -0.02479008212685585, 0.004567296244204044, -0.026030253618955612, -0.021509630605578423, 0.0036871747579425573, -0.024056648835539818, 0.023123186081647873, -0.045259568840265274, 0.02412332408130169, 0.03429805859923363, -0.06939622759819031, 0.040618930011987686, -0.038752008229494095, 0.007747734431177378, 0.08977237343788147, 0.0650222972035408, 0.02583022601902485, -0.004210580140352249, 0.0012260022340342402, -0.007614382542669773, -0.005774129182100296, -0.015895523130893707, -0.016148891299962997, -0.014481996186077595, -0.062248580157756805, -0.026870369911193848, -0.009968040511012077, 0.028510596603155136, -0.038405291736125946, 0.007801075000315905, -0.005450751166790724, 0.014108611270785332, 0.01717570051550865, -0.008561179973185062, 0.08971903473138809, -0.052540574222803116, -0.004493952728807926, 0.05462086200714111, -0.009127924218773842, 0.04952682554721832, 0.04979353025555611, -0.02795051783323288, 0.02741711214184761, -0.033657971769571304, -0.015162089839577675, 0.01057479064911604, -0.014988732524216175, -0.0019852735567837954, -0.040805622935295105, -0.0277904961258173, -0.03696509450674057, 0.03605830296874046, -0.0076743909157812595, 0.058674752712249756, -0.043179284781217575, 0.008607853204011917, 0.028350573033094406, -0.0013410181272774935, -0.011814961209893227, 0.013515195809304714, 0.006250861566513777, 0.006994297262281179, -0.00988136138767004, -0.07211660593748093, -0.02254977449774742, 0.023509906604886055, -0.020416146144270897, -0.01040143333375454, -0.010414768941700459, -0.008254471234977245, -0.011941645294427872, -0.024990109726786613, 0.005957487504929304, 0.008621187880635262, 0.0024953437969088554, 0.020509492605924606, 0.015188760124146938, -0.021456290036439896, -0.01720236986875534, 0.014335309155285358, -0.07761069387197495, 0.024416698142886162, 0.0017919136444106698, 0.0350448302924633, -1.953394166775979e-05, -0.0627286434173584, 0.04293924942612648, -0.004880672786384821, -0.0016377257416024804, -0.029417388141155243, -0.010508114472031593, 0.016268908977508545, -0.04309927299618721, 0.027017056941986084, 0.002723708748817444, -0.021549636498093605, 0.02845725417137146, 0.006797603331506252, 0.009901364333927631, 0.055954378098249435, 0.007207660004496574, -0.004027221817523241, 0.005404077935963869, 0.001531044370494783, 0.0020736190490424633, 0.014161951839923859, -0.002673701848834753, -0.012721753679215908, 0.003903871402144432, 0.002677035517990589, -0.04464615136384964, 0.015575479716062546, -0.005484089255332947, -0.01008805725723505, -0.0005409079021774232, 0.009194600395858288, -0.018322525545954704, -0.027297094464302063, 0.011461579240858555, 0.03085758537054062, 0.007687726058065891, 0.013381844386458397, 0.01040143333375454, -0.012801764532923698, -0.009474638849496841, 0.03744516149163246, -0.07067640870809555, 0.026950381696224213, 0.0011793292360380292, 0.012975121848285198, -0.03429805859923363, 0.01296178624033928, 0.03800523653626442, -0.027337100356817245, 0.04187243804335594, -0.014188622124493122, -0.021509630605578423, -0.022816477343440056, 0.010288084857165813, 0.012521726079285145, -0.00661757867783308, -0.0042672548443078995, -0.032991211861371994, 0.0077077290043234825, -0.007887753657996655, 0.01465535257011652, 0.02102956548333168, 0.0115882633253932, 0.029364047572016716, 0.028697287663817406, 0.01944267936050892, -0.043525997549295425, -0.003950544632971287, -0.031070949509739876, -0.0024003307335078716, 0.0031704369466751814, -0.008454498834908009, -0.032297782599925995, -0.003195440396666527, 0.03395134583115578, -0.019202645868062973, -0.005104036536067724, 0.02463006041944027, -0.008841218426823616, 0.029710760340094566, 0.000574662524741143, -0.0024553383700549603, -0.024496709927916527, 0.019042624160647392, -0.03147100284695625, 0.0018252515001222491, 0.004090563859790564, -0.019055958837270737, -0.011654939502477646, -0.027843836694955826, -0.02915068343281746, -0.0006096673314459622, 0.013461855240166187, -0.018015816807746887, -0.004767323844134808, -0.022456428036093712, 0.025696875527501106, 0.013655215501785278, -0.015068743377923965, -0.0023553245700895786, -0.014281968586146832, 0.002123625949025154, -0.009527979418635368, -0.00661757867783308, -0.03064422309398651, 0.0310176070779562, -0.011348230764269829, -0.006417551077902317, 0.05798132345080376, 0.016748974099755287, 0.05958154425024986, -0.04229916259646416, 0.030724234879016876, 0.0162555743008852, -0.039098720997571945, -0.0008192795794457197, 0.0039005375001579523, -0.016322249546647072, 0.004333930555731058, 0.0006959292222745717, -0.0010868164245039225, -0.017095688730478287, 0.005260725039988756, -0.016748974099755287, -0.005537429824471474, 0.034698113799095154, -0.014668688178062439, 0.026897039264440536, -0.017509080469608307, 0.01432197354733944, 0.004270588513463736, 0.007821077480912209, -0.020562833175063133, -0.014708694070577621, 0.05230054259300232, -0.04579297825694084, -0.018042486160993576, 0.035684917122125626, -0.06150180846452713, 0.0038438630290329456, 0.027977189049124718, -0.02033613622188568, -0.008487836457788944, -0.0013693553628399968, -0.028323903679847717, 0.01798914559185505, -0.024736741557717323, 0.02402997761964798, 0.01084816176444292, 0.004557294771075249, 0.009621325880289078, -0.010301419533789158, -0.0064108832739293575, -0.017815789207816124, 0.0045739635825157166, -0.02997746504843235, -0.004930679686367512, 0.019402673467993736, 0.010334757156670094, 0.018162503838539124, 0.012875108048319817, 0.011041522026062012, 0.009387960657477379, 0.033817995339632034, 0.031791046261787415, 0.009207936003804207, -0.029044002294540405, -0.05670114606618881, -0.021069569513201714, 0.0032987878657877445, -0.04187243804335594, -0.07110313326120377, -0.055794354528188705, 0.02928403578698635, -0.007561041973531246, 0.006047500297427177, 0.05299396812915802, -0.04192577674984932, -0.03645835816860199, 0.025376830250024796, -0.08145122230052948, 0.02156297117471695, -0.008474500849843025, -0.02668367698788643, 0.020376142114400864, -0.04085896536707878, 0.00020888294966425747, 0.02437669225037098, -0.05504758656024933, 0.01372189074754715, -0.03392467647790909, 0.0032054416369646788, 0.024616725742816925, -0.004977352451533079, 0.013635212555527687, 0.018429206684231758, 0.016548946499824524, -0.007607715204358101, 0.008061110973358154, -0.04021887481212616, -0.013448519632220268, 0.0013843574561178684, -0.0025803556200116873, -0.0005734123406000435, -0.028217222541570663, -0.0018419205443933606, -0.01874925009906292, 0.00954798236489296, -0.03221777454018593, -0.041285689920186996, -0.02435002289712429, -0.007894420996308327, 0.00937462504953146, 0.010328089818358421, -0.007601047400385141, 0.055474311113357544, 0.020736191421747208, 0.009347954764962196, -0.042325831949710846, 0.011788290925323963, -0.021682988852262497, -0.0069609591737389565, 0.010368095710873604, 0.01574883796274662, -0.008587850257754326, 0.036405015736818314, -0.03085758537054062, 0.012061662040650845, 0.008854554034769535, 0.029257364571094513, 0.000698012881912291, 0.019656041637063026, 0.033311259001493454, 0.005777462851256132, -0.017322387546300888, -0.005580768920481205, 0.02928403578698635, -0.011734950356185436, -0.008354485034942627, 0.014762034639716148, -0.017855793237686157, 0.009107922203838825, -0.0013051799032837152, -0.023069845512509346, -0.04152572154998779, -0.0023636589758098125, -0.01073481235653162, -0.02631029300391674, 0.05312732234597206, 0.00645088916644454, -0.01688232645392418, -0.0008042774861678481, 0.02093621902167797, -0.019269322976469994, -0.0034804795868694782, -0.002848725998774171, -0.008414492942392826, -0.014988732524216175, -0.03051087073981762, -0.0023703265469521284, -0.013321835547685623, -0.02555018849670887, -0.03477812558412552, 0.01748240925371647, 0.01440198440104723, -0.07643719762563705, 0.00855451263487339, 0.03152434527873993, -0.014762034639716148, -0.016055546700954437, -0.01606888137757778, -0.011321560479700565, 0.05315399169921875, -0.013748561032116413, -0.059848248958587646, -2.009391573665198e-05, -0.017149029299616814, -0.007040970493108034, -0.013261827640235424, 0.03208442032337189, -0.017909135669469833, 0.03880534693598747, -0.02949739806354046, 0.007941094227135181, -0.0009426298784092069, -0.027657145634293556, -0.0043572671711444855, -0.01593552902340889, 0.01332850381731987, -0.00452062301337719, 0.021856345236301422, 0.01026141457259655, 0.025603529065847397, -0.0057674613781273365, -0.014868715777993202, 0.009087919257581234, 0.008454498834908009, -0.018615899607539177, 0.011341563425958157, 0.0017619094578549266, -0.00366383814252913, 0.005530762020498514, 0.0010776484850794077, -0.04296592250466347, -0.041152339428663254, 0.009928034618496895, 0.0011284888023510575, 0.013528531417250633, 0.012395041063427925, -0.03165769577026367, -0.04808662831783295, -0.027897177264094353, 0.007927759550511837, 0.006130844820290804, -0.0016710635973140597, 0.01618889719247818, 0.011228214018046856, 0.042165812104940414, -0.03016415610909462, -0.036725062876939774, 0.019029289484024048, -0.03013748675584793, 0.012801764532923698, -0.030457530170679092, 0.008721201680600643, -0.00262869568541646, 0.00026399470516480505, 0.00502735935151577, 0.025843560695648193, -0.02181633934378624, 0.007781072519719601, -0.017922470346093178, -0.0014126946916803718, -0.030377520248293877, 0.029524069279432297, 0.009928034618496895, -0.008221132680773735, 0.008334482088685036, 0.04461948201060295, -0.01560215000063181, 0.03309789299964905, -0.016082216054201126, -0.04037889838218689, 0.007527703884989023, -0.0034804795868694782, 0.030537541955709457, 0.038058578968048096, 0.0009843023726716638, 0.01098818052560091, 0.028563937172293663, 0.012548396363854408, 0.002590357093140483, -0.025030115619301796, -0.011848299764096737, -0.034484751522541046, 0.02716374397277832, 0.02292315848171711, 0.0014110277406871319, -0.013255160301923752, -0.008414492942392826, 0.008194462396204472, 0.015122083947062492, 0.0352848619222641, -0.017682436853647232, -0.01862923428416252, -0.0011793292360380292, -0.007787739858031273, 0.0121083352714777, -0.03357795998454094, 0.0005492423661053181, 0.016228903084993362, 0.0033854665234684944, 0.005064031109213829, -0.008594517596065998, 0.012288359925150871, -0.0012468384811654687, 0.008194462396204472, 0.010094724595546722, 0.04936680197715759, 3.84167542506475e-05, -0.026670342311263084, -0.015695495530962944, 0.024963440373539925, -3.177521284669638e-05, -0.029364047572016716, 0.018362531438469887, 0.027203749865293503, -0.004060559440404177, 0.04448613151907921, -0.00525739137083292, 0.03120430000126362, -0.006170850247144699, 0.003783854888752103, -0.0071209813468158245, 0.005970822647213936, 0.0011518254177644849, -0.012435046955943108, -0.047419868409633636, -0.0011818294879049063, 0.0502735935151577, -0.013815237209200859, 0.028403913602232933, 0.03099093772470951, 0.009361290372908115, -0.007714396342635155, -0.0022219729144126177, 0.01290177833288908, 0.013321835547685623, 0.029924124479293823, -0.0031287644524127245, 0.006384212989360094, -0.03197773918509483, -0.008074445649981499, -0.020482823252677917, -0.010374763049185276, -0.002165298443287611, -0.0011176540283486247, 0.027337100356817245, 0.01957603171467781, -0.0056441109627485275, -0.007287670858204365, 0.0030370852909982204, -0.04619303345680237, 0.01872258074581623, 0.029390716925263405, 0.02757713384926319, 0.0431259423494339, 0.012074997648596764, 0.02829723246395588, 0.03301788493990898, 0.0017335722222924232, -0.01748240925371647, 0.030404189601540565, 0.027550462633371353, 0.0044806175865232944, 0.0027003721334040165, -0.032991211861371994, 0.026697011664509773, 0.009021243080496788, -0.005904146935790777, 0.08363819122314453, 0.04259253665804863, -0.01941601000726223, -0.0010926505783572793, 0.0026253617834299803, -0.00418057618662715, 0.012548396363854408, -0.015948863700032234, -0.013881913386285305, 0.046939801424741745, 0.01133489515632391, -0.0034171375446021557, 0.019082630053162575, 0.007634385488927364, -0.0018935942789539695, 0.005077366251498461, 0.007441025692969561, -0.003140432760119438, 0.011781623587012291, 0.008721201680600643, -0.004400606267154217, -0.018295854330062866, -0.034644775092601776, 0.02197636105120182, 0.029337376356124878, 0.02225640043616295, 0.025936907157301903, 0.021616311743855476, 0.02121625654399395, -0.00966133177280426, 0.021843010559678078, 0.015042073093354702, 0.010394765995442867, 0.02001609094440937, 0.0463530533015728, 0.0016277242684736848, 0.011981651186943054, 2.685265826585237e-05, 0.0011876636417582631, -0.016308914870023727, 0.021896351128816605, -0.012028324417769909, -0.013281830586493015, -0.04040556773543358, -0.004907343070954084, 0.005450751166790724, -0.023763274773955345, -0.0030970934312790632, 0.01676231063902378, -0.004333930555731058, 0.006074170581996441, -0.00033337928471155465, 0.024270011112093925, 0.0023753272835165262, -0.021923020482063293, -0.006714258808642626, 0.029364047572016716, 0.013335171155631542, 0.030270839110016823, 0.022909823805093765, -0.012001654133200645, 0.02979077212512493, 0.010508114472031593, 0.010488112457096577, 0.01321515440940857, 0.009254608303308487, -0.0061741843819618225, 0.029737431555986404, -0.033657971769571304, 0.024563385173678398, -0.01745573803782463, 0.012601736932992935, -0.03224444389343262, -0.02928403578698635, 0.003185438923537731, 0.02061617374420166, 0.016322249546647072, 0.02684369869530201, -0.006540901493281126, 0.04952682554721832, -0.0027953851968050003, 0.021776335313916206, 0.009141259826719761, -0.012801764532923698, -0.02665700763463974, 0.007761069573462009, 0.006367544177919626, -0.017029013484716415, 0.020069433376193047, -0.028243891894817352, 0.0034704783465713263, 0.005737457424402237, 0.0277904961258173, -0.008687864057719707, -0.018042486160993576, 0.016895661130547523, 0.013908583670854568, -0.014762034639716148, 0.020922884345054626, -0.0024836757220327854, -0.02672368288040161, 0.015962200239300728, 0.023563247174024582, -0.014095275662839413, -0.03971213847398758, -0.03581827133893967, 0.002430334920063615, -0.007947761565446854, -0.008794545195996761, 0.0024053314700722694, 0.012681747786700726, 0.006040832493454218, -0.022056372836232185, -0.03531153127551079, -0.025283483788371086, 0.0033421271946281195, 0.030084146186709404, 0.002378661185503006, -0.011474914848804474, -0.017322387546300888, -0.018735915422439575, 0.05014024302363396, 0.006887615658342838, -0.01662895828485489, -0.007774404715746641, -0.021296268329024315, 0.010974845848977566, -0.013908583670854568, 0.02162964828312397, -0.003320457646623254, -0.019962750375270844, -0.01586885377764702, 0.0013860242906957865, -0.006210856139659882, 0.009367957711219788, 0.027737155556678772, -0.007987767457962036, 0.026777023449540138, 0.008161124773323536, -0.014388649724423885, -0.01722904108464718, -0.008041108027100563, 0.01748240925371647, -0.005610773339867592, -0.00972133968025446, -0.0036838410887867212, 0.03549822419881821, 0.013695220462977886, -0.01666896417737007, -0.032617829740047455, -0.013908583670854568, 0.018789255991578102, 0.02213638462126255, -0.013148478232324123, -0.027897177264094353, 0.011828296817839146, 0.016495605930685997, -0.017082354053854942, -0.006287533324211836, -0.01773577742278576, 0.007200992200523615, 0.026043588295578957, -0.005270726513117552, -0.009181265719234943, -0.015028737485408783, -0.03981881961226463, -0.02084287256002426, 0.0030404189601540565, 0.03664505109190941, 0.023043176159262657, 0.012001654133200645, -0.009361290372908115, -0.022976499050855637, -0.009034578688442707, -0.007747734431177378, 0.08219799399375916, -0.0032671168446540833, -0.029924124479293823, 0.030777575448155403, 0.015642154961824417, -0.013841907493770123, 0.03085758537054062, -0.0016518943011760712, 0.0038505306001752615, -0.015975534915924072, -0.045579615980386734, 0.030697563663125038, 0.03589827939867973, 0.029897453263401985, -0.0008396990597248077, -0.012628407217562199, 0.04016553610563278, 0.03816526010632515, 0.022656455636024475, 0.02225640043616295, 0.008161124773323536, -0.04203245788812637, 0.019376004114747047, -0.048780057579278946, -0.0065342336893081665, -0.02529682032763958, 0.0389653705060482, -0.006640915293246508, 0.02760380506515503, 0.009194600395858288, -0.020002756267786026, -0.018509216606616974, -0.007207660004496574, -0.006077504251152277, 0.017922470346093178, -0.005314065609127283, 0.030697563663125038, -0.010994848795235157, 0.002553685335442424, 0.01340851467102766, -0.034004684537649155, -0.03376465290784836, 0.00022523937514051795, 0.0019652708433568478, 0.0034371402580291033, 0.01565549150109291, -0.003823860315605998, -0.0005292395944707096, 0.016082216054201126, 0.0022786473855376244, -0.04000551253557205, -0.016842320561408997, -0.015228765085339546, 0.005607439670711756, -0.02776382677257061, -0.019882740452885628, 0.019962750375270844, -0.009101253934204578, 0.00110848608892411, -0.036911752074956894, -0.004033889155834913, 0.03147100284695625, -0.02589690312743187, 0.013575203716754913, -0.036565039306879044, -0.015642154961824417, 0.010628131218254566, -0.0021919687278568745, -0.027110403403639793, -0.03131098300218582, 0.011801626533269882, -0.03693842515349388, 0.021829675883054733, 0.031257640570402145, 0.02102956548333168, 0.019055958837270737, -0.029950793832540512, 0.009461304172873497, 0.008294476196169853, -0.008134454488754272, -0.01722904108464718, -0.010381430387496948, 0.01565549150109291, 0.01586885377764702, -0.011074859648942947, -0.021682988852262497, 0.004320595413446426, 0.006374211981892586, -0.0065675717778503895, 0.02555018849670887, -0.008061110973358154, -0.0057641277089715, 0.018429206684231758, -0.018109161406755447, 0.01022807601839304, -0.00974134262651205, -0.018535887822508812, -0.026803694665431976, -0.00940796360373497, -0.00877454224973917, 0.02289648912847042, 0.009281279519200325, -0.0015502136666327715, 0.0002808720455504954, -0.028510596603155136, 0.0037471831310540438, -0.04515288770198822, -0.004790659993886948, -0.014855380170047283, -0.009654663503170013, 0.016522277146577835, -0.014962062239646912, 0.000594248587731272, 0.000931795104406774, -0.010154732502996922, -0.02280314266681671, -0.025416836142539978, -0.028323903679847717, 0.002680369419977069, -0.010321422480046749, -0.021829675883054733, -0.0020736190490424633, 0.008001103065907955, 0.010608128271996975, 0.006004160735756159, 0.011401571333408356, -0.008967902511358261, -0.019629372283816338, -0.01034142542630434, -0.0033404603600502014, -0.01662895828485489, -0.0015218764310702682, 0.00162022328004241, 0.008747871965169907, -0.0228298120200634, -0.012781761586666107, -0.0001047540208674036, -0.00408722972497344, -0.007507701404392719, 0.009007908403873444, 0.022749802097678185, 0.028377244248986244, 0.004864003509283066, -0.002171966014429927, -0.011921643279492855, 0.020722856745123863, -0.007887753657996655, -0.026043588295578957, -0.017629096284508705, 0.002416999777778983, -0.028670618310570717, 0.012395041063427925, -0.0009409629856236279, 0.049846868962049484, 0.020722856745123863, 0.007721064146608114, 0.015855519101023674, 0.01098818052560091, 0.018442541360855103, 0.010748147964477539, 0.005484089255332947, 0.015722166746854782, -0.010161400772631168, -0.01525543536990881, 0.029577409848570824, -0.006900951266288757, 0.0012260022340342402, -0.005494090262800455, 0.0004458947805687785, 0.00888789165765047, -0.017575755715370178, -0.029897453263401985, 0.03197773918509483, 0.02963075041770935, -0.01042143628001213, 0.0021986362989991903, 0.01100151613354683, 0.023549912497401237, -0.059048138558864594, -0.003117096144706011, -0.003192106494680047, -0.005350737366825342, 0.0073010060004889965, -0.008934564888477325, 0.006517564877867699, -0.03837862238287926, 0.0012235019821673632, -0.006674252916127443, 0.033978015184402466, -0.010968178510665894, -0.001276842667721212, -0.02058950439095497, 0.035018160939216614, 0.013515195809304714, 0.019882740452885628, 0.014975396916270256, 0.025816891342401505, -0.00869453139603138, 0.015668826177716255, 0.011468247510492802, -0.00588081032037735, -0.031764376908540726, -0.006787601858377457, -0.03405802696943283, 0.008874556049704552, -0.03955211862921715, 0.007994434796273708, -0.002683703089132905, 0.025350160896778107, -0.007374349515885115, 0.016308914870023727, 0.007927759550511837, 0.012068329378962517, 0.02451004460453987, -0.004370602313429117, -0.0026153605431318283, 0.0014268632512539625, 0.025430170819163322, 0.015802178531885147, -0.007421022746711969, -0.012088332325220108, -0.013775231316685677, 0.03507149964570999, -0.013948588632047176, -0.007447693031281233, 0.028857309371232986, -0.01389524806290865, 0.022816477343440056, 0.010288084857165813, -0.018175838515162468, 0.014922056347131729, 0.01969604752957821, -0.01650894246995449, -0.010814824141561985, 0.036031633615493774, -0.009868026711046696, -0.019389338791370392, 0.004683978855609894, -0.01764243096113205, 0.003063755575567484, 0.0030687563121318817, 0.004547293297946453, -0.010161400772631168, -0.0024903432931751013, -0.0058574737049639225, 0.014815375208854675, -0.01694900169968605, -0.02292315848171711, -0.001404360169544816, -0.006430886220186949, -0.03328458592295647, -0.025816891342401505, 0.02864394709467888, -0.005944152362644672, 0.021589642390608788, -0.013988594524562359, -0.008741204626858234, -0.02643030881881714, 0.0025970246642827988, 0.003500482300296426, -0.012995123863220215, -0.0037171789444983006, 0.012515057809650898, 0.01881592720746994, 0.002298650098964572, 0.02036280557513237, -0.04400606453418732, -0.025496847927570343, -0.03368464112281799, -0.009094586595892906, 0.024323351681232452, 0.0023669928777962923, 0.008741204626858234, -0.022883154451847076, 0.0011843298561871052, 0.013255160301923752, 0.008167792111635208, -0.0061108423396945, 0.022909823805093765, -0.0026870369911193848, -0.003940543159842491, 0.0018885936588048935, 0.010201405733823776, -0.004890673793852329, 0.01796247623860836, -0.0117616206407547, -0.03813859075307846, -0.0022269736509770155, 0.020096102729439735, -0.02112291008234024, 0.028323903679847717, 0.00750103360041976, 0.01782912388443947, 0.0021519633010029793, 0.007034302689135075, 0.029950793832540512, 0.017255712300539017, -0.005777462851256132, 0.0011643271427601576, 0.0048540025018155575, -0.03085758537054062, 0.007387684658169746, 0.016522277146577835, 0.014695358462631702, -0.011828296817839146, 0.030537541955709457, 0.01628224365413189, 0.026617001742124557, -0.0010134730255231261, -0.02096288837492466, -0.010021381080150604, -0.00750103360041976, -0.01508207805454731, -0.03565824776887894, -0.01329516526311636, -0.0011834964388981462, -0.01837586611509323, -0.010554787702858448, 0.01065480150282383, 0.015455462969839573, 0.002880397019907832, -0.007387684658169746, 0.029337376356124878, -0.04560628533363342, 0.024670066311955452, -0.011141535826027393, 0.0018935942789539695, -0.02861727774143219, -0.028243891894817352, -0.01542879268527031, -0.006927621550858021, -0.03883202001452446, 0.04784659296274185, -0.017909135669469833, 0.019309327006340027, 0.02672368288040161, 0.02647031471133232, 0.011741617694497108, 0.00931461714208126, -0.024016642943024635, -0.021429620683193207, -0.008541177026927471, -0.0004708982305601239, 0.024203335866332054, -0.013128476217389107, 0.018989283591508865, 0.018295854330062866, -0.0022203060798346996, -0.02156297117471695, 0.021389614790678024, 0.046246372163295746, 0.016148891299962997, -0.020069433376193047, 0.013108473271131516, 0.02276313677430153, 0.005097369197756052, 0.05360738933086395, -0.036405015736818314, 0.024776747450232506, -0.0033404603600502014, -0.0009893029928207397, 0.05008690431714058, -0.005360738839954138, 0.008007770404219627, 0.017922470346093178, -0.022789807990193367, 0.02080286666750908, -0.03301788493990898, 0.01666896417737007, 0.03355129063129425, 0.011321560479700565, -0.017629096284508705, 0.009381293319165707, -0.006777600850909948, 0.008421160280704498, -0.0424325130879879, -0.01738906279206276, -0.006724259816110134, -0.015495468862354755, 0.006504229735583067, 0.02396330237388611, -0.03392467647790909, 0.012295028194785118, -0.02843058481812477, 0.028830640017986298, -0.01612222194671631, 0.010301419533789158, -0.014215292409062386, 0.012761758640408516], [0.030123088508844376, 0.025348423048853874, 0.03472954034805298, 0.044097717851400375, -0.013444109819829464, -0.02113015577197075, -0.011108535341918468, 0.008345958776772022, 0.022618195042014122, 0.04922174662351608, -0.044537659734487534, 0.008455944247543812, 0.007420786656439304, -0.01190431322902441, -0.007504893001168966, 0.01051331963390112, 0.0018568140221759677, 0.03806792199611664, 0.021207792684435844, 0.03475541993975639, 0.04513287544250488, 0.017028342932462692, 0.03252983093261719, 0.01579909399151802, -0.053828198462724686, -0.045443419367074966, 0.02321341075003147, 0.056312575936317444, -0.0019198940135538578, -0.04844537749886513, 0.08700500428676605, -0.014867451973259449, 0.019176295027136803, -0.009439343586564064, 0.018128197640180588, 0.04150982201099396, -0.007582529913634062, -0.020289089530706406, 0.03739507123827934, 0.017287133261561394, -0.010856215842068195, 0.023989778012037277, -0.008113048039376736, -0.03434135392308235, -0.04821246862411499, 0.030873576179146767, 0.03972417488694191, -0.06531845033168793, -0.03123588301241398, 0.0007128839497454464, -0.014556904323399067, -0.001454073004424572, 0.0009656079928390682, -0.04477056860923767, 0.010202772915363312, -0.021194852888584137, -0.024377962574362755, 0.007996592670679092, -0.01502272579818964, 0.0011750656412914395, 0.04042290523648262, -0.02295462042093277, -0.0021608916576951742, 0.0398794487118721, 0.011250869370996952, 0.0025037876330316067, 0.007479013875126839, 8.82512322277762e-05, -0.03403080627322197, 0.004916999023407698, 0.06304109841585159, 0.014763936400413513, 0.0015090657398104668, -0.008022472262382507, 0.0005713584832847118, -0.031313519924879074, -0.0184905044734478, 0.02498611807823181, -0.016096701845526695, -0.017183616757392883, -0.016057882457971573, 0.0065182582475245, 0.026810582727193832, -0.0044932314194738865, -0.03240043297410011, 0.03278861939907074, -0.06547372043132782, -0.026784704998135567, -0.02774222567677498, -0.015152120031416416, -0.020560819655656815, 0.01629079319536686, -0.00337396701797843, 0.011516128666698933, 0.014207539148628712, -0.009833998046815395, 0.014479267410933971, -0.010655653662979603, -0.0308476984500885, 0.05245661363005638, 0.02498611807823181, -0.004544989205896854, -0.041639216244220734, 0.004117986653000116, 0.059159260243177414, -0.005156379193067551, -0.018516382202506065, 0.02769046649336815, -0.025490757077932358, -0.039543021470308304, -0.04024175554513931, -0.019642116501927376, -0.0035033617168664932, 0.08974816650152206, -0.005939216818660498, -0.005745125003159046, -0.05983211100101471, 0.014259296469390392, 0.009885755367577076, 0.014453388750553131, -0.030977092683315277, -0.03721391782164574, 0.012777727097272873, -0.04531402513384819, 0.009685194119811058, -0.04083697125315666, 0.00013515682076103985, 0.008003062568604946, -0.041639216244220734, -0.05455280840396881, 0.06402450054883957, 0.003965947777032852, 0.06107430160045624, -0.04210503771901131, -0.033668503165245056, -0.00849476270377636, -0.010817397385835648, -0.0005022131954319775, -0.018231714144349098, -0.0361270010471344, 0.00599421001970768, -0.0393618680536747, 0.024817904457449913, 0.012020768597722054, -0.015902608633041382, -0.027819862589240074, 0.006424447055906057, 0.08208800107240677, -0.024416781961917877, -0.0006316078943200409, -0.009115857072174549, 0.010222181677818298, -0.01212428417056799, -0.016678977757692337, 0.02719876728951931, -0.0398794487118721, 0.02885502018034458, 0.06350692361593246, 0.006168892607092857, 0.003081211354583502, -0.01999148167669773, -0.028259804472327232, -0.07002841681241989, -0.01843874529004097, 0.029812540858983994, -0.024145051836967468, -0.04062993824481964, -0.006317696534097195, -0.02950199320912361, -0.05688191205263138, -0.017403587698936462, -0.05745124816894531, -0.033746138215065, 0.015333272516727448, -0.01024159137159586, -0.041690975427627563, -0.002403506776317954, -0.0034580735955387354, -0.009769299998879433, 0.013560565188527107, 0.014220478013157845, -0.01962917670607567, -0.06733700633049011, -0.025180209428071976, -0.04288140684366226, 0.023627473041415215, -0.04337310418486595, -0.01763649843633175, -0.055173903703689575, -0.0158508513122797, 0.024494418874382973, 0.03519536182284355, 0.008604748174548149, 0.0308476984500885, -0.039750054478645325, 0.023511018604040146, -0.02186770550906658, -0.030718304216861725, 0.045288145542144775, -0.011787857860326767, 0.005948921665549278, -0.01758474111557007, 0.02869974635541439, -0.023355744779109955, -0.011755509302020073, -0.06588778644800186, -0.017545921728014946, 0.03423783928155899, 0.02617654949426651, -0.022941680625081062, 0.001565675949677825, -0.03933599218726158, 0.002560397842898965, 0.033901412039995193, -0.02387332357466221, 0.026681188493967056, 0.03190873563289642, 0.029527872800827026, 0.0026574437506496906, 0.009497571736574173, -0.00027920951833948493, -0.004997870419174433, 0.06500790268182755, -0.021194852888584137, 0.029734903946518898, 0.006198006682097912, 0.007472544442862272, -0.05336237698793411, 0.04295904189348221, -0.041251033544540405, 0.0005066611338406801, 0.0055316234938800335, -0.002885502064600587, -0.032659225165843964, 0.013172381557524204, -0.02569778822362423, 0.013935809955000877, -0.004040349740535021, -0.02740579843521118, 0.016640158370137215, 0.04495172202587128, 0.021156035363674164, -0.03677397593855858, 0.010998549871146679, 0.022178253158926964, -0.025141391903162003, -0.02256643772125244, -0.028182167559862137, -0.013353534042835236, 0.034263718873262405, 0.051421456038951874, 0.0007796030840836465, 0.03887017071247101, 0.00792542565613985, 0.006903207395225763, -0.026163609698414803, 0.02241116389632225, -0.03139115497469902, 0.01774001494050026, 0.03504008799791336, -0.0285444725304842, -0.01389699149876833, -0.007491953670978546, -0.0228381659835577, -0.06278230994939804, -0.008701793849468231, -0.011063246987760067, -0.003026218619197607, -0.020923124626278877, -0.015165059827268124, -0.012719499878585339, 0.01827053166925907, 0.032969772815704346, -0.04236382618546486, -0.05413874611258507, -0.02322635054588318, 0.011309097521007061, 0.004056524019688368, 0.0033577927388250828, 0.025607213377952576, -0.009717542678117752, -0.011884903535246849, 0.04505523666739464, -0.0193445086479187, -0.0014006977435201406, 0.013075334951281548, 0.02810453064739704, 0.011464371345937252, -0.03164994344115257, 0.01332765445113182, 0.0410698801279068, -0.010623305104672909, -0.015061544254422188, -0.02493436075747013, -0.011380264535546303, 0.010125136002898216, -0.0436318963766098, -0.015385030768811703, -0.025193149223923683, 0.0048490664921700954, 0.002283816458657384, 0.02838919870555401, 0.008352428674697876, 0.012130754068493843, -0.019059840589761734, 0.012667741626501083, 0.015190938487648964, -0.0031523786019533873, -0.051524970680475235, 0.02564603090286255, -0.005056098103523254, 0.01504860445857048, 0.011302627623081207, -0.019823269918560982, -0.05543269217014313, 0.006052437238395214, 0.00716199679300189, 0.024856723845005035, 0.0032348677050322294, 0.00013566226698458195, 0.01327589713037014, -0.006185066886246204, 0.06314461678266525, -0.02467557042837143, 0.03811968117952347, -0.012214859947562218, 0.021906523033976555, 0.0030585674103349447, -0.056674882769584656, -0.07820615917444229, -0.03514360263943672, -0.0006214989698491991, 0.01731301099061966, -0.003233250230550766, -0.03369438275694847, -0.037446826696395874, 0.011781387962400913, -0.0008483440615236759, 0.016911888495087624, 0.016898948699235916, 0.05356940999627113, -0.029864298179745674, -0.02111721597611904, -0.003794499672949314, -0.02774222567677498, 0.027561072260141373, -0.0039012504275888205, 0.004719671793282032, -0.017856469377875328, 0.039310112595558167, -0.013586443848907948, 0.05874519795179367, -0.06350692361593246, -0.008210093714296818, -0.10351576656103134, -0.018179956823587418, 0.020819608122110367, -0.028078651055693626, -0.007815440185368061, -0.01106971688568592, 0.005635139532387257, -0.03444487228989601, 0.009633435867726803, -0.002340426668524742, -0.016847191378474236, 0.016200216487050056, 0.008100108243525028, 0.0001763002946972847, -0.012104874476790428, -0.023523958399891853, 0.05356940999627113, 0.014065204188227654, 0.01106971688568592, -0.012467180378735065, -0.021699491888284683, 0.0023711579851806164, -0.0472031906247139, 0.018231714144349098, -3.083233241341077e-05, 0.03418608009815216, 0.04236382618546486, 0.0028434486594051123, 0.0349365696310997, 0.03208988904953003, 0.06650888174772263, 0.06909677386283875, -0.048134829849004745, -0.042648494243621826, 0.015216817148029804, 0.008637096732854843, -0.03522123768925667, 0.019913844764232635, -0.005735420156270266, 0.05002399533987045, 0.009762831032276154, 0.05548445135354996, 0.016627220436930656, 0.08467589318752289, 0.04676324874162674, -0.043140195310115814, 0.030459513887763023, -0.022760529071092606, -0.029734903946518898, 0.021544218063354492, -0.028208045288920403, 0.008339488878846169, -0.013152971863746643, -0.017610618844628334, 0.015708517283201218, 0.01924099214375019, 0.02660355158150196, 0.024766147136688232, 0.029424356296658516, -0.013340594246983528, 0.02327810786664486, 0.02655179426074028, 0.01596730761229992, 0.021790068596601486, -0.012273088097572327, -0.008637096732854843, 0.049428779631853104, 0.012214859947562218, 0.00038211874198168516, -0.01746828481554985, -0.024701450020074844, 0.04570221155881882, 0.03537651151418686, -0.06806161254644394, -0.00401770556345582, -0.07561826705932617, -0.02418387122452259, 0.01913747750222683, 0.04306256026029587, 0.022165313363075256, -0.01387111283838749, -0.051628489047288895, 0.0031070904806256294, -0.0029501994140446186, 0.018503442406654358, -0.04280376806855202, 0.015462667681276798, -0.08141514658927917, -0.016795432195067406, 0.022864045575261116, 0.0019215113716199994, -0.0034386643674224615, 0.0004933173186145723, 0.02312283404171467, 0.019745633006095886, 0.03506596386432648, -0.018231714144349098, 0.016484886407852173, -0.028078651055693626, -0.015139180235564709, -0.05465632304549217, 0.013353534042835236, 0.008423595689237118, -0.09078332781791687, 0.055173903703689575, -0.01564382016658783, -0.0013222522102296352, 0.05424226075410843, 0.03240043297410011, 0.04585748538374901, 0.033901412039995193, 0.005884224083274603, -0.010151014663279057, -0.03353910893201828, -0.002739932853728533, -0.039154838770627975, 0.029087930917739868, -0.0305889081209898, -0.0004642035055439919, 0.030019572004675865, 0.026267126202583313, -0.024688510224223137, -0.011438491754233837, 0.015630880370736122, -0.009413464926183224, 0.006974374875426292, -0.005971565842628479, 0.08369249850511551, -0.05569148063659668, -0.003191197058185935, 0.04365777224302292, -0.0014144459273666143, 0.05714070424437523, 0.013832294382154942, 0.018516382202506065, 0.009070568718016148, -0.02144070342183113, -0.008701793849468231, 0.0008103343425318599, -0.013754657469689846, -0.013573504984378815, -0.03177934139966965, -0.01301063783466816, -0.031054729595780373, 0.03721391782164574, 0.013152971863746643, 0.0541905015707016, -0.026254186406731606, 0.015436788089573383, 0.024442659690976143, 0.014983907341957092, -0.004907294176518917, 0.0238603837788105, 0.02177712880074978, -0.013741717673838139, 0.018826929852366447, -0.07090830057859421, -0.05356940999627113, 0.02704349346458912, -0.002612155629321933, -0.01768825575709343, -0.015216817148029804, 0.02069021388888359, 0.008947644382715225, -0.029967814683914185, 0.0005155570106580853, 0.005813057068735361, 0.010733290575444698, 0.038999564945697784, 0.01913747750222683, -0.010176893323659897, -0.010248060338199139, -0.008611218072474003, -0.043502502143383026, -0.0040047662332654, 0.0020023831166327, -0.0016303732991218567, -0.014466328546404839, -0.032167524099349976, 0.02493436075747013, 0.015605001710355282, 0.0135476253926754, 0.0135476253926754, -0.012188981287181377, -0.007931895554065704, -0.008941174484789371, -0.005732185672968626, -0.004978461191058159, -0.015682637691497803, -0.006524728145450354, -0.005664253141731024, -0.014815693721175194, 0.045288145542144775, 0.007343149743974209, 0.004092107526957989, 0.0011904312996193767, 0.009795179590582848, -0.00022482330678030849, 0.03377201780676842, 0.006589425262063742, -0.008540051057934761, -0.0026153905782848597, 0.018425805494189262, -0.03188285604119301, 0.019655056297779083, 0.016251975670456886, -0.020198512822389603, -0.0027124364860355854, 0.036359913647174835, -0.006227120291441679, -0.026629431173205376, 0.028208045288920403, 0.028518592938780785, 0.019771510735154152, -0.012027237564325333, -0.010351576842367649, -0.002283816458657384, 0.024209748953580856, 0.028725624084472656, -0.042389705777168274, 0.06009090319275856, -0.000586724141612649, 0.01698952540755272, -0.0720987319946289, -0.03069242462515831, 0.0431143157184124, -0.01698952540755272, 0.03250395134091377, -0.005453987047076225, -0.008662975393235683, -0.022553497925400734, 0.03079594112932682, 0.019525662064552307, -0.03053715080022812, -0.013237078674137592, 0.0036165821366012096, 0.011833146214485168, -0.019331568852066994, 0.009419934824109077, 0.01714479923248291, -0.014440448954701424, 0.05600202828645706, 0.002442324999719858, 0.024792026728391647, -0.02247586101293564, 0.036256395280361176, 0.0034289597533643246, -0.010480971075594425, -0.012156632728874683, -0.024157991632819176, 0.0039756521582603455, 0.0068837981671094894, 0.01544972788542509, 0.01177491806447506, -0.006039497908204794, 0.033901412039995193, -0.018943384289741516, -0.031080609187483788, -0.01104383822530508, -0.006540902424603701, -0.008326549082994461, 0.011593765579164028, -0.01731301099061966, 0.014634541235864162, 0.004389715380966663, -0.03020072542130947, 0.003580998396500945, -0.011076186783611774, -0.021570097655057907, -0.0052437204867601395, 0.028466835618019104, 0.01301063783466816, 0.0063209314830601215, -0.03149467334151268, 0.007679576054215431, -0.027768103405833244, -0.012072525918483734, 0.02644827775657177, -0.017118919640779495, -0.011102065443992615, -0.040293511003255844, 0.03617876023054123, -0.005952156614512205, 0.013457049615681171, -0.026939978823065758, 0.003200901672244072, 0.04148394241929054, 0.012823015451431274, 0.011250869370996952, -0.021958282217383385, 0.029553750529885292, 0.02945023588836193, -0.0014969350304454565, 0.023342804983258247, 0.005424872972071171, -0.019849147647619247, -0.006521493196487427, 0.0026994971558451653, 0.014375751838088036, -0.009736951440572739, 0.019396265968680382, -0.018930446356534958, -0.007543711457401514, 0.029113808646798134, 0.014000507071614265, 0.019253931939601898, -0.027121130377054214, 0.01507448311895132, -0.023472199216485023, 0.015009786002337933, -0.004457647446542978, -0.013508806936442852, 0.059262774884700775, -0.010797988623380661, -0.011522598564624786, 0.012958879582583904, -0.08219151943922043, -0.025167269632220268, 0.03069242462515831, 0.002879032166674733, 0.0005511405761353672, 0.025413120165467262, 0.024973178282380104, 0.019473902881145477, -0.016898948699235916, 0.04052642360329628, -0.0051757884211838245, -0.0022579375654459, -0.007388437632471323, 0.0036651049740612507, -0.006602365057915449, -0.03938774764537811, 0.01688600890338421, -0.06138484925031662, 0.016303732991218567, 0.0273540411144495, 0.005800117738544941, 0.0004783560580108315, 0.017429467290639877, 0.01988796703517437, -0.010772109031677246, 0.0305889081209898, 0.025878941640257835, -0.007724863942712545, -0.0007314844406209886, -0.06976962834596634, -0.01693776622414589, 0.01795998588204384, -0.0366445817053318, -0.024157991632819176, -0.06443856656551361, -0.016484886407852173, -0.005195197649300098, 0.016834251582622528, 0.021350126713514328, -0.043838925659656525, -0.025400180369615555, 0.030123088508844376, -0.035454150289297104, 0.02784574031829834, -0.01940920576453209, -0.016911888495087624, 0.018244653940200806, 0.03268510475754738, -0.006159188225865364, 0.029320839792490005, -0.03252983093261719, 0.019642116501927376, -0.03871489688754082, -0.00577747356146574, 0.00830067042261362, -0.01507448311895132, 0.007614878471940756, 0.03532475605607033, 0.0012009446509182453, 0.0142722362652421, -0.009070568718016148, -0.030614787712693214, 0.027923377230763435, -0.02477908693253994, -0.006472970359027386, 0.013612323440611362, -0.05315534397959709, 0.013767596334218979, -0.020405545830726624, 0.008391247130930424, -0.010461562313139439, -0.04288140684366226, -0.026241246610879898, -0.033306196331977844, 0.02934671938419342, 0.010979141108691692, -0.021945342421531677, 0.05403522774577141, -0.019862087443470955, 0.006307992152869701, -0.0431143157184124, 0.010901504196226597, -0.017597680911421776, -0.02929496206343174, 0.026914099231362343, -0.016795432195067406, 0.00125593738630414, 0.02934671938419342, -0.023407502099871635, 0.0029987222515046597, -0.021168973296880722, 0.03661870211362839, -0.007724863942712545, 0.02321341075003147, 0.021893585100769997, 0.004117986653000116, -0.020017361268401146, 0.02408035472035408, 0.006722054909914732, 0.016782494261860847, 0.01265480276197195, 0.00841065589338541, -0.007867198437452316, -0.009342297911643982, 0.011089126579463482, -0.0007670680060982704, -0.026370640844106674, -0.019771510735154152, -0.027975136414170265, -0.03250395134091377, 0.04709967225790024, 0.003771855728700757, -0.026732945814728737, 0.004153570160269737, 0.0168730691075325, 0.001900484785437584, -0.02144070342183113, -0.0021932402160018682, 0.01682131178677082, -0.011102065443992615, -0.028777383267879486, -0.020224392414093018, -0.01999148167669773, -0.02784574031829834, -0.031960491091012955, -0.02903617173433304, 0.002419681055471301, -0.06992489844560623, 0.007110239006578922, 0.026163609698414803, -0.006780282594263554, -0.01671779528260231, -0.0040662288665771484, 0.007867198437452316, 0.05895222723484039, 0.005379585083574057, -0.05315534397959709, -0.010248060338199139, 0.016057882457971573, -0.04024175554513931, -0.013780536130070686, 0.02774222567677498, -0.004991400986909866, 0.03594585135579109, 0.007867198437452316, 0.0043541318736970425, -0.012590104714035988, 0.007084360346198082, -0.011334976181387901, -0.030873576179146767, 0.03721391782164574, -0.0051757884211838245, -0.0010351577075198293, 0.002181918127462268, 0.013612323440611362, 0.0026056859642267227, -0.012544816359877586, -0.0011273514246568084, 0.024157991632819176, -0.03472954034805298, 0.00614301348105073, 0.008028941228985786, 0.04088872671127319, 0.021686552092432976, -0.0024827609304338694, 0.008617687039077282, -0.01935744844377041, 0.0293984767049551, 0.03053715080022812, 0.0273540411144495, 0.004532049410045147, -0.015035664662718773, -0.01741652749478817, -0.019655056297779083, -0.0072266943752765656, 0.012383073568344116, 0.009225842542946339, -0.007336679846048355, -0.0034224900882691145, 0.008113048039376736, -0.039750054478645325, -0.028466835618019104, -0.007828379981219769, -0.012829485349357128, 0.024921420961618423, -0.016756614670157433, 0.009258191101253033, 0.002314547775313258, -0.032918013632297516, -0.009148205630481243, 0.01973269321024418, 0.004881415516138077, 0.015190938487648964, -0.013884051702916622, -0.004075933247804642, -0.005787178408354521, 0.05729597434401512, 0.010222181677818298, -0.0349365696310997, -0.0009259808575734496, 0.02945023588836193, 0.0027658117469400167, 0.04717731103301048, -0.006424447055906057, -0.041742730885744095, -0.05056745186448097, -0.00752430222928524, 0.06744052469730377, -0.007912485860288143, 0.03742095082998276, 0.02563309110701084, 0.061695396900177, 0.04492584243416786, 0.0026994971558451653, -0.02903617173433304, 0.002898441394791007, -0.04596100002527237, 0.045443419367074966, 0.01507448311895132, -0.030174845829606056, -0.010254530236124992, 0.029864298179745674, -0.008041881024837494, 0.04427886754274368, 0.04536578431725502, 0.013741717673838139, -0.02322635054588318, 0.008449474349617958, -0.019706813618540764, 0.0032122235279530287, -0.04127691313624382, -0.014336933381855488, 0.0060071493498981, -0.011432022787630558, -0.04161333665251732, 0.013159441761672497, 0.026409460231661797, -0.034211959689855576, 0.024313265457749367, 0.03811968117952347, 0.03214164450764656, -0.007491953670978546, -0.025555454194545746, 0.000720566778909415, 0.03193461522459984, -0.022437041625380516, -0.026914099231362343, 0.019150417298078537, 0.029527872800827026, -0.013625262305140495, 0.03623051941394806, -0.0004957434721291065, 0.008132457733154297, -0.005680427420884371, 0.024170931428670883, -0.009846936911344528, -0.01244130078703165, 0.019525662064552307, 0.030977092683315277, -0.04006060212850571, -0.011334976181387901, 0.012363663874566555, -0.010739760473370552, 0.04228619113564491, 0.008242443203926086, 0.01656252332031727, -0.00881177932024002, -0.0028434486594051123, 0.020560819655656815, -0.031132366508245468, 0.02285110577940941, -0.010358045808970928, -0.0025248141027987003, -0.03452250733971596, -0.004237676504999399, -0.02929496206343174, -0.0263318233191967, 0.014311054721474648, 0.026305943727493286, 0.018192896619439125, 0.05004987120628357, -0.037860892713069916, 0.019797390326857567, -0.0160190649330616, -0.06086726859211922, 0.010519789531826973, 0.007090829778462648, 0.021427763625979424, 0.04145806282758713, -0.012590104714035988, 0.03887017071247101, 0.04205327853560448, 0.030511271208524704, -0.016316672787070274, 0.013250017538666725, 0.041639216244220734, -0.01902102120220661, 0.011302627623081207, 0.004719671793282032, 0.017972925677895546, -0.00865003652870655, -0.022721709683537483, 0.04854889214038849, 0.012667741626501083, -0.0034613083116710186, -0.010176893323659897, 0.01961623691022396, -0.0013756274711340666, 0.01768825575709343, -0.009122326970100403, 0.0034418990835547447, 0.031960491091012955, 0.03247807174921036, 0.008197154849767685, -0.03682573512196541, 0.009717542678117752, -0.03586821258068085, 0.060453206300735474, 0.002744785277172923, -0.012447770684957504, 0.024170931428670883, 0.007595469243824482, 0.004095342475920916, 0.0043023740872740746, -0.026034215465188026, 0.03384965658187866, 0.025555454194545746, -0.018775172531604767, 0.02316165342926979, 0.028725624084472656, -0.0006413125083781779, 0.010817397385835648, 0.009652845561504364, 0.03208988904953003, 0.02288992330431938, -0.00964637566357851, 0.026629431173205376, -0.007931895554065704, 0.020082058385014534, -0.01263539306819439, -0.019370388239622116, -0.036308154463768005, 0.00843653455376625, -0.014259296469390392, -0.02140188403427601, -0.03118412382900715, 0.0037492115516215563, -0.031106486916542053, 0.008404185995459557, -0.017274193465709686, 0.0009696515626274049, -0.018632838502526283, 0.024145051836967468, -0.005955391563475132, 0.013754657469689846, 0.009154675528407097, -0.018839869648218155, -0.015410909429192543, 0.0308476984500885, 0.009620496071875095, 0.033746138215065, 0.005470161326229572, 0.004784369375556707, 0.042001523077487946, 0.02408035472035408, -0.0010602278634905815, 0.0065279630944132805, -0.005298713222146034, 0.009950452484190464, 0.02950199320912361, -0.043347228318452835, -0.0014152545481920242, -0.04575396701693535, 0.02655179426074028, 0.01429811492562294, -0.02644827775657177, 0.03149467334151268, 0.0036974537651985884, 0.025141391903162003, -0.006469735410064459, -0.018179956823587418, 0.03923247382044792, -0.02875150367617607, 0.028984414413571358, 0.010519789531826973, -0.020664334297180176, -0.015656759962439537, 0.01249952893704176, -0.03284037485718727, 0.0028935892041772604, -0.010998549871146679, -0.025451939553022385, -0.017856469377875328, -0.008844127878546715, 0.019435085356235504, -0.011781387962400913, -0.029217325150966644, 0.010455092415213585, 0.021414823830127716, -0.04197564348578453, 0.014543965458869934, -0.017494164407253265, 0.008248912170529366, -0.016420187428593636, 0.0024940830189734697, -0.018425805494189262, -0.022242950275540352, -0.01467335969209671, -0.014958027750253677, -0.010474501177668571, -0.008365367539227009, 0.017972925677895546, 0.022825226187705994, -0.011063246987760067, -0.02934671938419342, -0.013935809955000877, -0.02515433169901371, 0.011244400404393673, -0.013042986392974854, -0.010448622517287731, -0.0427778884768486, 0.0013384264893829823, 0.0021188382524996996, 0.018128197640180588, 0.017558861523866653, -0.0009364942088723183, -0.0028580056969076395, -0.022165313363075256, 0.028880897909402847, 0.0012098405277356505, 0.05579499900341034, 0.008837658911943436, -0.023640412837266922, -0.01464748103171587, 0.012777727097272873, -0.0020023831166327, 0.01126380916684866, 0.017882348969578743, -0.03799028694629669, 0.01238954346626997, 0.015126241371035576, -0.006427682004868984, -0.02256643772125244, 0.00792542565613985, 0.016057882457971573, 0.008455944247543812, -0.015760274603962898, 0.008637096732854843, 0.05325886234641075, -0.0001242391299456358, 0.004784369375556707, -0.02934671938419342, -0.015928488224744797, 0.002235293621197343, -0.0029518166556954384, -0.010688003152608871, -0.029812540858983994, 0.005344001576304436, 0.01241542212665081, -0.00825538206845522, 0.004253850784152746, -0.0373174324631691, -0.010280409827828407, 0.02536136284470558, 0.004056524019688368, 0.018425805494189262, -0.023019317537546158, -0.02552957646548748, -0.023045197129249573, 0.014285176061093807, 0.03478129580616951, 0.0456763319671154, -0.009821058250963688, -0.00638239411637187, -0.01126380916684866, -0.028259804472327232, 0.015773214399814606, 0.07768858224153519, 0.0023194001987576485, -0.035661179572343826, 0.04911823198199272, 0.055018629878759384, -0.00876649096608162, -0.0036262867506593466, 0.013101213611662388, 0.006366219371557236, -0.00450293580070138, -0.04572809115052223, 0.043890684843063354, 0.0501016303896904, 0.003781560342758894, -0.027768103405833244, -0.027871619910001755, 0.02310989424586296, 0.00940699502825737, 0.033564988523721695, -0.0028046302031725645, 0.03053715080022812, -0.04301080107688904, 0.0014144459273666143, -0.016653098165988922, 0.013573504984378815, -0.009238782338798046, 0.013741717673838139, -0.04358013719320297, -0.014543965458869934, 0.016575461253523827, 0.009309949353337288, 0.005965095944702625, -0.01795998588204384, -0.006780282594263554, 0.01741652749478817, -0.009419934824109077, 0.014880390837788582, -0.018451685085892677, 0.003823613515123725, 0.014621601440012455, 0.0042700255289673805, -0.00712317880243063, -0.009788709692656994, -0.012428361922502518, 0.002659061225131154, 0.019176295027136803, -0.006599130108952522, -0.003843022743239999, -0.005466926377266645, -0.025516636669635773, 0.0014564992161467671, 0.006903207395225763, -0.04779840633273125, -0.01859401911497116, -0.028415078297257423, -0.014531025663018227, 0.01666603796184063, -0.010785048827528954, -0.012480119243264198, -0.013418231159448624, -0.01204017736017704, 0.020716091617941856, -0.05584675446152687, -0.021686552092432976, -0.0023517487570643425, -0.023446321487426758, 0.02999369241297245, -0.004367071203887463, -0.011011489666998386, -0.0007529154536314309, -0.017054222524166107, -0.029683146625757217, 0.011212050914764404, 0.020289089530706406, 0.0183222908526659, 0.01903396099805832, -0.024209748953580856, 0.01330177579075098, -0.002943729516118765, -0.028622109442949295, 0.004907294176518917, -0.006256233900785446, -0.01956447958946228, 0.030459513887763023, -0.03602348640561104, -0.01978445053100586, 0.010370985604822636, 0.009549329057335854, 0.00042902433779090643, 0.03767973929643631, -0.0015373708447441459, -0.0016966881230473518, 0.010228651575744152, 0.017131859436631203, 0.0024067414924502373, 0.015488546341657639, -0.013560565188527107, -0.046090394258499146, -0.011496719904243946, 0.021324247121810913, 0.021958282217383385, 0.012027237564325333, -0.012188981287181377, 0.01881399005651474, -0.026629431173205376, 0.001230867113918066, -0.048341862857341766, 0.02010793797671795, 0.00023412355221807957, 0.009724012576043606, -0.007297861389815807, -0.005806587636470795, 0.0018665186362341046, -0.005935982335358858, -0.00789954699575901, -0.017403587698936462, 0.006540902424603701, -0.014233417809009552, 0.005017279647290707, -0.008637096732854843, -0.016057882457971573, -0.005651313811540604, 0.02235940471291542, 0.009976332075893879, -0.02600833587348461, 0.020082058385014534, 0.011089126579463482, 0.016109641641378403, 0.006557076703757048, 0.0010092786978930235, 0.000507065502461046, -0.007951304316520691, -0.017921166494488716, 0.021595977246761322, -0.009051159955561161, 0.001237336895428598, -0.0005604408215731382, -0.00932288821786642, 0.0007233973010443151, 0.0005313270376063883, 0.004810248035937548, 0.013638202100992203, -0.03949126601219177, -0.022644072771072388, -0.010442152619361877, 0.021803008392453194, -0.020340848714113235, -0.01451808586716652, -0.011438491754233837, 0.017778832465410233, -0.0029922525864094496, -0.0008556225220672786, 0.01429811492562294, 0.010351576842367649, -0.008333018980920315, -0.03315092250704765, 0.008339488878846169, -0.0010286879260092974, 0.016471946612000465, -0.01763649843633175, -0.00042457637027837336, 0.010196303017437458, -0.00375568144954741, -0.022074736654758453, 0.03643754869699478, -0.017869409173727036, -0.0005098960245959461, 0.008882946334779263, 0.0055316234938800335, 0.005974800791591406, -0.031002972275018692, -0.02113015577197075, -0.0056707230396568775, 0.026163609698414803, -0.0055154492147266865, 0.0013125475961714983, 0.01055860798805952, -0.0020929593592882156, -0.02699173614382744, -0.02111721597611904, -0.014556904323399067, 0.024804964661598206, -0.015372090972959995, -0.018878687173128128, -0.011354385875165462, -0.012350725010037422, -0.02327810786664486, -0.015902608633041382, 0.026810582727193832, 0.006120369769632816, -0.020340848714113235, -0.01736477017402649, 0.026758825406432152, 0.002206179779022932, 0.015786154195666313, -0.0063209314830601215, 0.01332765445113182, 0.002770664170384407, 0.01467335969209671, 0.0009381116251461208, -0.0039077200926840305, 0.00412769103422761, -0.02182888612151146, -0.026202427223324776, 0.0044026547111570835, -0.048083074390888214, -0.01389699149876833, 0.010791518725454807, 0.00938111636787653, 0.011309097521007061, 0.008423595689237118, 0.016200216487050056, 0.022941680625081062, 0.01061683613806963, -0.0015745718264952302, 0.024429719895124435, 0.018943384289741516, 0.029734903946518898, 0.010468032211065292, -0.0009106152574531734, -0.03118412382900715, -0.020560819655656815, 0.03633403405547142, -0.046090394258499146, -0.013444109819829464, 0.03133939951658249, 0.0007145014242269099, 0.003590703010559082, -0.005172553472220898, -0.01811525970697403, 0.02574954740703106, 0.01833523064851761, 0.009174084290862083, 0.002084872219711542, 0.008604748174548149, 0.023782746866345406, -0.02532254345715046, 0.00466144410893321, -0.006324166432023048, -0.04904059320688248, -0.013638202100992203, -0.01429811492562294, -0.0112896878272295, 0.005263129714876413, -0.004467352293431759, 0.007504893001168966, -0.015605001710355282, 6.83871257933788e-05, -0.025503696873784065, -0.004121221601963043, -0.028803260996937752, -0.0195127222687006, 0.016329612582921982, -0.01726125366985798, 0.02714700996875763, 0.002464969176799059, -0.015902608633041382, -0.02745755761861801, -0.025180209428071976, -0.048083074390888214, -0.02919144555926323, -0.0259048193693161, 0.024145051836967468, -0.008669445291161537, 0.01387111283838749, 0.03294389322400093, -0.0003226780390832573, -0.03043363429605961, -0.056260816752910614, 0.01973269321024418, 0.024274446070194244, -0.011037368327379227, 0.006935556419193745, -0.03656694293022156, -0.016316672787070274, 0.0090317502617836, -0.003079594112932682, -0.028156287968158722, 0.018736353144049644, -0.0038753715343773365, -0.027586951851844788, 0.020767850801348686, 0.000564484391361475, -0.02989017777144909, 0.024002717807888985, 0.007110239006578922, -0.02452029660344124, 0.00500110536813736, 0.010565077885985374, -0.02242410182952881, 0.04505523666739464, 0.015385030768811703, 0.008714733645319939, 0.02413211204111576, 0.011477310210466385, 0.017921166494488716, 0.019965603947639465, 0.02452029660344124, -0.012130754068493843, -0.005204902030527592, -0.0021026639733463526, 0.015760274603962898, 0.029683146625757217, -0.01988796703517437, 0.013185320422053337, 0.02310989424586296, 0.018464624881744385, 0.04381304606795311, -0.016459006816148758, -0.013482928276062012, 0.00350659666582942, -0.011658462695777416, -0.01579909399151802, -0.02365335263311863, -0.0080095324665308, -0.012628923170268536, -0.01502272579818964, -0.009445813484489918, 0.0035971729084849358, 0.03053715080022812, 0.02638358063995838, -0.027716346085071564, -0.0008782665827311575, -0.03245219215750694, 0.02838919870555401, -0.010008680634200573, -0.01266127172857523, -0.03509184345602989, -0.02784574031829834, -0.020276149734854698, 0.0170412827283144, 0.0007735377294011414, 0.02101369947195053, -0.013534686528146267, 0.0009381116251461208, 0.0332285612821579, 0.012518937699496746, 0.04381304606795311, 0.01929275132715702, -0.02305813692510128, 0.019124537706375122, 0.003331913612782955, 0.010163954459130764, 0.018024682998657227, 0.001403123838827014, 0.021091336384415627, 0.027561072260141373, 0.0015381795819848776, -0.03837846964597702, 0.011102065443992615, 0.03444487228989601, 0.016200216487050056, -0.011102065443992615, -0.007906016893684864, 0.01574733667075634, -0.009471692144870758, 0.03413432464003563, -0.030459513887763023, 0.023899203166365623, -0.014582782983779907, -0.01365114189684391, 0.027716346085071564, -0.006230355240404606, -0.002566867507994175, 0.022980500012636185, -0.014686299487948418, -0.012195451185107231, -0.025024935603141785, 0.02670706808567047, 0.009284069761633873, 0.012971819378435612, -0.007556650787591934, -0.017714135348796844, 0.005538093391805887, 0.006676767021417618, -0.041147515177726746, -0.021220732480287552, 0.0021770659368485212, -0.01634255237877369, 0.03379789739847183, 0.027172887697815895, -0.03762798011302948, 0.015928488224744797, -0.02983841858804226, 0.02650003507733345, -0.007174936588853598, -0.004315313417464495, -0.002144717378541827, 0.03232279792428017], [0.005082005634903908, 0.01916368305683136, -0.00042100343853235245, 0.01598571613430977, 0.0032104989513754845, 0.01391729898750782, -0.0043354579247534275, 0.016136394813656807, 0.02997150644659996, 0.04131355509161949, -0.011376296170055866, 0.0030392722692340612, -0.007054536137729883, -0.0037772590294480324, -0.025026481598615646, 0.02654697373509407, -0.02494429238140583, 0.041203971952199936, -0.013376222923398018, 0.0048970808275043964, 0.06991524994373322, 0.012177636846899986, 0.0420258603990078, 0.0028149655554443598, -0.05016254633665085, -0.02953316643834114, 0.030546827241778374, 0.023136138916015625, 0.007650404702872038, -0.04627227783203125, 0.05254602059721947, -0.006362780928611755, 0.002469087718054652, 0.0044279200956225395, 0.013800865039229393, 0.014492619782686234, -0.05399802327156067, 0.045039448887109756, 0.044655900448560715, 0.006999743636697531, -0.027094898745417595, 0.03602607920765877, -0.01253378763794899, -0.01651994325220585, -0.041258763521909714, 0.062244296073913574, 0.03087558224797249, -0.0020204740576446056, -0.02086224965751171, -0.0026231915690004826, -0.03213581070303917, 0.004595722071826458, 0.010800974443554878, -0.0684906467795372, 0.026560671627521515, 0.015725452452898026, -0.031149545684456825, 0.004311486147344112, 0.0053593930788338184, -0.03786162659525871, 0.02346489392220974, -0.03638223186135292, -0.0060579972341656685, 0.06942211836576462, -0.02214987389743328, -0.00593813881278038, -0.02067047543823719, 0.019766399636864662, -0.03421792387962341, 0.013424166478216648, 0.054299380630254745, 0.05202549323439598, -0.05569659173488617, 0.0023166961036622524, 0.0291496179997921, -0.050655681639909744, 0.033724792301654816, -0.007965462282299995, -0.023136138916015625, 0.004061494953930378, -0.013204996474087238, 0.03191664069890976, 0.0633949413895607, 0.003832051530480385, 0.008218877017498016, -0.010794125497341156, -0.02723187953233719, 0.03829996660351753, -0.06366889923810959, -0.00501009076833725, 0.0011052677873522043, 0.015246016904711723, -0.030464638024568558, 0.023725159466266632, 0.05638149753212929, -0.04172449931502342, 0.012910486198961735, -0.010465370491147041, -0.033122073858976364, 0.05210768058896065, 0.022259458899497986, 0.003297824412584305, -0.0090476144105196, -0.00015603024803567678, 0.03446449339389801, -0.040409479290246964, -0.03367000073194504, 0.046162694692611694, 0.0026249040383845568, -0.05564180016517639, -0.05008035898208618, -0.02390323393046856, -0.026218218728899956, 0.059449877589941025, -0.008801047690212727, -0.0026334652211517096, -0.04769688472151756, 0.024204593151807785, 0.01598571613430977, -0.0018560964381322265, -0.01673911325633526, -0.0527103990316391, -0.0036471267230808735, -0.08027103543281555, 0.00018182126223109663, -0.00474297720938921, -0.04320389777421951, 0.0025581256486475468, -0.04010812193155289, -0.013876204378902912, 0.041834086179733276, 0.029478373005986214, 0.01636926457285881, -0.05281998589634895, -0.0206430796533823, 0.01865685172379017, -0.015218621119856834, 1.027359667205019e-05, -0.02871127799153328, -0.028218144550919533, 0.022848479449748993, 0.004277240484952927, 0.026396295055747032, 0.005424458999186754, -0.015588470734655857, 0.03128652647137642, 0.04046427085995674, 0.07216174155473709, 0.008842142298817635, -0.015369300730526447, -0.028629088774323463, 0.006698384881019592, -0.003405697178095579, -0.019013002514839172, 0.0021232098806649446, -0.005287477746605873, 0.04651884362101555, 0.05503908172249794, -0.008492839522659779, -0.012342014349997044, 0.005349119193851948, -0.022725196555256844, -0.015602168627083302, -0.012115994468331337, 0.00783532951027155, 0.00952019914984703, -0.05692942440509796, 0.008033952675759792, -0.053641870617866516, -0.06854543834924698, -0.05243643745779991, -0.0381355918943882, -0.01727334037423134, 0.009896897710859776, -0.007903819903731346, -0.02997150644659996, -0.002294436562806368, -0.04136835038661957, 0.01272556185722351, -0.024903198704123497, -0.0016420631436631083, -0.000592015974689275, -0.0830654501914978, -0.055148664861917496, -0.07484657317399979, 0.05336790904402733, -0.012609127908945084, 0.030519431456923485, -0.03169747069478035, 0.024081310257315636, 0.0021403327118605375, 0.034163132309913635, 0.0189445111900568, 0.03986155614256859, -0.029724938794970512, 0.0077736880630254745, 0.0033663150388747454, -0.013389920815825462, 0.060490936040878296, -0.006585375405848026, 0.025519613176584244, 0.005814855452626944, 0.0684906467795372, 0.023574478924274445, 0.009732520207762718, -0.032464563846588135, 0.003979306202381849, 0.02054719254374504, 0.010616050101816654, -0.02139647677540779, -0.014328242279589176, -0.08498319238424301, -0.021273193880915642, 0.017259642481803894, -0.025368934497237206, -0.0021797148510813713, 0.0031505695078521967, 0.05594315752387047, -0.021917006000876427, 0.013040618970990181, 0.016656924039125443, 0.014520016498863697, 0.041231367737054825, -0.01636926457285881, -0.02205398678779602, 0.015807639807462692, 0.0042019011452794075, -0.06525788456201553, 0.02705380506813526, -0.020054060965776443, -0.012787203304469585, 0.03282071650028229, 0.0029399609193205833, -0.024862103164196014, 0.02224576100707054, -0.023697763681411743, -0.001544464030303061, -0.0008274525753222406, -0.019177380949258804, 0.044436730444431305, -0.003398848231881857, 0.018711643293499947, -0.007143574301153421, 0.02120470255613327, 0.014246053993701935, -0.00851338729262352, -0.041258763521909714, -0.0014759734040126204, 0.025547010824084282, 0.03021807223558426, 0.026944220066070557, 0.02079376019537449, 0.009780463762581348, -0.003842325182631612, 0.0014836785849183798, -0.014478921890258789, 0.008718859404325485, -0.021095117554068565, 0.025492217391729355, -0.013595392927527428, -0.008520236238837242, 0.002335530938580632, -0.018054133281111717, -0.006246346514672041, -0.046354468911886215, -0.05906633287668228, 0.05123100057244301, -0.02956056222319603, -0.04821741208434105, 0.03553294762969017, -0.031807053834199905, 0.01413646899163723, 0.055806174874305725, -0.04383401200175285, -0.055559609085321426, -0.04651884362101555, -0.014903564006090164, 0.0036642495542764664, 0.014752884395420551, -0.043340880423784256, -0.010533860884606838, -0.001111260731704533, 0.03219060227274895, 0.0026865454856306314, -0.020396513864398003, 0.021355383098125458, 0.014698091894388199, 0.0037430135998874903, 0.004352580290287733, 0.040793027728796005, 0.029259203001856804, 0.011698202230036259, 0.0004139403172302991, 0.007684650365263224, 0.019999267533421516, 0.02676614373922348, -0.02732776664197445, -0.02798527665436268, -0.0007944914977997541, 0.0019451342523097992, 0.020122550427913666, 0.006982621271163225, -0.01799934171140194, 0.007369593251496553, -0.032272789627313614, -0.010129766538739204, 0.039313629269599915, -0.006181280594319105, -0.030355053022503853, 0.007801084313541651, -0.07270966470241547, 0.055587004870176315, 0.0137255247682333, -0.022163571789860725, -0.057696517556905746, -0.0031009139493107796, 0.00926678441464901, 0.04942284896969795, -0.041450537741184235, 0.0245333481580019, 0.001910888939164579, -0.007636706810444593, 0.06487433612346649, -0.019862286746501923, 0.03172486647963524, 0.024423763155937195, -0.005438156891614199, -0.005314873997122049, -0.03342343494296074, -0.01005442626774311, -0.007355895359069109, -0.018355492502450943, 0.015067941509187222, -0.01715005747973919, -0.03553294762969017, -0.02691682241857052, -0.01404058188199997, 0.05380624905228615, -0.030300261452794075, 0.04235461354255676, 0.035012416541576385, -0.02214987389743328, -0.004479288123548031, 0.022519724443554878, -0.02871127799153328, 0.030081091448664665, 0.022218365222215652, 0.007718895561993122, -0.023601876571774483, 0.01721854694187641, 0.0023680638987571, 0.047395527362823486, -0.049779001623392105, 0.004082042258232832, -0.06673728674650192, -0.0017139783594757318, -0.007670952007174492, -0.021533457562327385, -0.013636487536132336, -0.004417646676301956, -0.007718895561993122, -0.002114648697897792, 0.015259715728461742, 0.04651884362101555, -0.005040911491960287, -0.004064919892698526, 0.0006262613460421562, -0.009992784820497036, 0.03857393190264702, -0.03766985237598419, 0.05588836595416069, 0.05808006599545479, -0.005992931313812733, -0.022163571789860725, -0.02664286084473133, -0.009424312971532345, -0.029423581436276436, 0.03895747661590576, -0.016917189583182335, 0.01071193628013134, 0.040573857724666595, 0.014684394001960754, 0.041834086179733276, 0.009116104803979397, 0.073367178440094, 0.03369739651679993, -0.0529569648206234, -0.028163352981209755, -0.011718749068677425, 0.01352690253406763, 0.004992967937141657, 0.0002673275303095579, -0.008170933462679386, -0.001777332159690559, 0.04282034933567047, 0.026629162952303886, 0.04838179051876068, 0.03613566234707832, 0.03186184912919998, -0.026314105838537216, 0.026903124526143074, -0.016259679570794106, -0.013657034374773502, -0.060326557606458664, -0.040409479290246964, -0.0055443174205720425, -0.029505768790841103, -0.04156012088060379, -0.008554480969905853, -0.00899967085570097, 0.06536746770143509, 0.010081822983920574, 0.03750547766685486, -0.01690349169075489, 0.011191370896995068, -0.017040472477674484, -0.005256657022982836, 0.0561075359582901, 0.01819111593067646, -0.010547558777034283, 0.04394359886646271, -0.03147830069065094, -0.0077942353673279285, 0.023067649453878403, -0.039751969277858734, 0.030108487233519554, 0.04054646193981171, 0.02195809967815876, -0.0036608248483389616, -0.12668029963970184, -0.00047386964433826506, 0.029505768790841103, -0.003883419558405876, 0.010177710093557835, -0.006506611127406359, -0.02531414106488228, 0.038875289261341095, -0.012978976592421532, -0.01457480899989605, -0.04024510085582733, 0.013369373977184296, -0.06323055922985077, 0.014807676896452904, 0.04213544353842735, -0.0007551093585789204, 0.030902978032827377, -0.0019451342523097992, -0.0013603954575955868, 0.02346489392220974, -0.007376442197710276, -0.016547339037060738, 0.007746291812509298, -0.03613566234707832, 0.02293066680431366, -0.06465516984462738, -0.001111260731704533, -0.0021523183677345514, -0.06427162140607834, 0.053669270128011703, -0.049176283180713654, 0.01488986611366272, 0.054710324853658676, 0.053230930119752884, 0.048491377383470535, 0.027478447183966637, 0.0313413180410862, -0.013341977261006832, -0.02504017949104309, 0.009814709424972534, -0.024177197366952896, -0.016506245359778404, -0.05292956903576851, 0.013444713316857815, -0.014492619782686234, 0.005499798804521561, -0.030765997245907784, -0.022341648116707802, 0.004835439380258322, -0.010177710093557835, -0.02523195371031761, 0.007417536806315184, 0.047450318932533264, -0.030985167250037193, -0.002518743509426713, 0.04840918630361557, 0.04791605472564697, 0.037341099232435226, -0.0044690147042274475, -0.02557440660893917, -0.015492583625018597, -0.044464126229286194, 0.014492619782686234, -0.0005410760641098022, -0.01595832034945488, -0.009616086259484291, -0.044628504663705826, 0.0019536956679075956, -0.022451233118772507, 0.035478152334690094, -0.032026223838329315, 0.042518991976976395, -0.02751954086124897, 0.04972420632839203, 0.002297861035913229, 0.04301212355494499, -0.018862323835492134, 0.009917445480823517, 0.01160916406661272, -0.03561513498425484, 0.005640204530209303, -0.05071047320961952, -0.02713599242269993, 0.040190309286117554, 0.028135957196354866, 0.0003379585104994476, -0.011410540901124477, -0.004078617785125971, 0.0053217229433357716, -0.030957771465182304, -0.011568069458007812, -0.014095374383032322, -0.04964201897382736, -0.003832051530480385, 0.012074900791049004, 0.0010410577524453402, 0.005968959536403418, -0.019848588854074478, -0.029286598786711693, -0.024492254480719566, 0.0002662573824636638, 0.009075010195374489, -0.03966978192329407, -0.02299915812909603, 0.01583503745496273, 0.011102333664894104, 0.01333512831479311, 0.019848588854074478, -0.01695828326046467, 0.004955298267304897, 0.0049621472135186195, 0.031807053834199905, -0.03147830069065094, 0.021601948887109756, 0.004643665626645088, 0.013958393596112728, 0.015698054805397987, 0.052135076373815536, 0.008677764795720577, 0.02151975966989994, 0.006667564157396555, 0.036683589220047, -0.030793393030762672, 0.031396109610795975, -0.013814562931656837, -0.020752664655447006, -0.009807860478758812, 0.007061385549604893, -0.04117657616734505, 0.036738380789756775, 0.01396524254232645, -0.038464345037937164, -0.012814599089324474, 0.004965571686625481, 0.01058865338563919, -0.026368897408246994, 0.05281998589634895, -0.003145432798191905, 0.012574882246553898, 0.01226667407900095, 0.0090476144105196, 0.010369483381509781, 0.016314471140503883, 0.045094240456819534, -0.017163755372166634, 0.04054646193981171, 0.006465516984462738, 0.0189445111900568, -0.06229909136891365, -0.006760026328265667, 0.004660788457840681, -0.03369739651679993, -0.00686276238411665, 0.007431234698742628, -0.005513496696949005, -0.02538263238966465, 0.019533531740307808, 0.013485807925462723, -0.0233142152428627, -0.005325147416442633, -0.009129802696406841, 0.01032153982669115, -0.041834086179733276, 0.006092242896556854, 0.015396696515381336, -0.02032802253961563, 0.05994301289319992, -0.007821631617844105, 0.02506757527589798, -0.023300517350435257, 0.026930520310997963, -0.010061275213956833, 0.01627337746322155, -0.04413536936044693, 0.011218767613172531, 0.0030358477961272, -0.01498575322329998, -0.016424056142568588, -0.011965315788984299, -0.0014228931395336986, 0.03682057186961174, -0.022533422335982323, 0.0050546093843877316, 0.0021026628091931343, -0.010328388772904873, -0.005886770784854889, 0.018369190394878387, -0.029697543010115623, -0.0032378952018916607, 0.004061494953930378, -0.04435453936457634, 0.006147035397589207, -0.03142350912094116, 0.007287404499948025, -0.03317686915397644, 0.012252976186573505, 0.00474297720938921, -0.0064792148768901825, -0.04627227783203125, 0.015903526917099953, -0.02754693664610386, -0.012184485793113708, 0.018834926187992096, 0.005099128466099501, -0.011752994731068611, -0.0051847416907548904, 0.01950613595545292, 0.0011746145319193602, 0.02139647677540779, -0.006297714542597532, 0.010533860884606838, 0.04240940511226654, 0.01734183169901371, 0.008170933462679386, -0.035697322338819504, 0.01721854694187641, 0.019437644630670547, 0.01541039440780878, 0.046107903122901917, -0.006102516315877438, 0.012965278699994087, 0.021369080990552902, -0.0274510495364666, 0.03816298767924309, -0.030546827241778374, 0.015122734010219574, -0.039724573493003845, -0.008910632692277431, 0.0024005970917642117, 0.023081347346305847, 0.048710547387599945, -0.004030674230307341, 0.021410174667835236, -0.03476585075259209, -0.02010885253548622, -0.016437754034996033, 0.0019160257652401924, 0.017711680382490158, -0.001280775060877204, 0.020204739645123482, 0.004147108644247055, -0.0466284304857254, -0.0009991072583943605, 0.010766728781163692, 0.012225579470396042, -0.036300040781497955, 0.03808079659938812, -0.03939581662416458, 0.035012416541576385, -0.03142350912094116, 0.03723151236772537, -0.03430011495947838, -0.012136542238295078, 0.009711973369121552, 0.010451672598719597, 0.00687303626909852, -0.044190164655447006, -0.002030747476965189, -0.04887492209672928, 0.005246383138000965, -0.020026665180921555, 0.009698275476694107, 0.02321832813322544, -0.0034279567189514637, 0.009122953750193119, -0.022136176005005836, 0.002107799518853426, -0.003112899838015437, 0.002268752548843622, -0.01695828326046467, -0.03786162659525871, 0.013924147933721542, 0.009232538752257824, 0.0035306927748024464, -0.05873757600784302, -0.04068344086408615, -0.018355492502450943, 0.007328499108552933, 0.027916787192225456, 0.03539596498012543, -0.033724792301654816, -0.021095117554068565, 0.00021403326536528766, -0.01862945593893528, 0.03186184912919998, -0.032217998057603836, 0.022451233118772507, -0.02980712801218033, -0.016643226146697998, -0.005092279519885778, 0.02893044799566269, -0.03156048804521561, 0.041888877749443054, 0.0050306376069784164, 0.0030444092117249966, 0.030108487233519554, 0.0009126378572545946, 0.008184632286429405, -0.005914167035371065, -0.022341648116707802, 0.011485881172120571, 0.014876168221235275, 0.014150166884064674, 0.020930740982294083, -0.001394640770740807, -0.0001705845061223954, 0.018917115405201912, -0.04243680462241173, 0.009348972700536251, -0.033067282289266586, 0.008602424524724483, -0.043970994651317596, -0.02236904390156269, -0.003469051094725728, -0.030108487233519554, 0.01671171747148037, 0.011136578395962715, -0.01758839748799801, 0.042080651968717575, -0.03339603915810585, 0.010033879429101944, -0.0006930396775715053, 0.012506391853094101, -0.013739223591983318, -0.04090261086821556, 0.017478812485933304, -0.0006386752356775105, -0.0196705125272274, 0.03197143226861954, 0.03731370344758034, 0.044025786221027374, -0.008355858735740185, 0.02934139221906662, 0.006147035397589207, 0.005352543666958809, 0.00766410306096077, -0.03575211763381958, 0.006455243099480867, -0.00882844440639019, 0.04824480786919594, -0.014520016498863697, 0.0070134419947862625, 0.03260154649615288, 0.02717708796262741, 0.017410321161150932, 0.025971652939915657, -0.019656814634799957, 0.001234543859027326, -0.019615720957517624, -0.02620452083647251, -0.03871091082692146, 0.011698202230036259, 0.014835073612630367, -0.01787605881690979, -0.02217726968228817, 0.005499798804521561, 0.011205069720745087, -0.0010384893976151943, 0.0017961671110242605, 0.002231082646176219, 0.004804618656635284, -0.03273852914571762, -0.003232758492231369, -0.005667600780725479, -0.017382925376296043, -0.024588141590356827, -0.015602168627083302, -0.019971871748566628, -0.0859694555401802, -0.006568252574652433, 0.02120470255613327, -0.010253049433231354, 0.01790345460176468, 0.015451489016413689, 0.020588288083672523, 0.05890195444226265, -0.004629967734217644, -0.0490666963160038, -0.007650404702872038, 0.0016198037192225456, -0.02786199375987053, -0.016437754034996033, 0.04005333036184311, -0.005715544335544109, 0.03553294762969017, 0.0058525255881249905, 0.001551313092932105, -0.0050511849112808704, 0.015314508229494095, -0.006321686320006847, -0.00890378374606371, 0.020054060965776443, -0.0070134419947862625, -0.0006168438703753054, -0.0050957039929926395, 0.010828371159732342, 0.011520125903189182, -0.035861700773239136, 0.003849174128845334, 0.0019485588418319821, -0.0381355918943882, 0.009725671261548996, -0.009335274808108807, 0.03999853506684303, 0.014739186502993107, -0.01598571613430977, 0.024999085813760757, -8.186772174667567e-05, 0.022533422335982323, 0.03336864337325096, 0.024300480261445045, 0.035916492342948914, -0.0035580890253186226, -0.004866260103881359, 0.012424202635884285, -0.009054463356733322, 0.004064919892698526, 0.00834216084331274, 0.010821521282196045, 0.0015906952321529388, 0.031094752252101898, -0.009444859810173512, -0.008492839522659779, 0.004082042258232832, -0.01391729898750782, 0.003719042055308819, -0.01865685172379017, 0.0024262811057269573, -0.002751611638814211, -0.027875691652297974, 0.0022208092268556356, 0.015574772842228413, -0.013609090819954872, 0.0027670220006257296, -0.0019485588418319821, 0.018451379612088203, -0.02513606660068035, 0.0026796965394169092, 0.014725488610565662, 0.006876460742205381, 0.00744493305683136, 0.03786162659525871, 0.017930850386619568, 0.017930850386619568, -0.01617749035358429, -0.017314434051513672, -0.018232209607958794, -0.03213581070303917, 0.035861700773239136, 0.014478921890258789, 0.017108961939811707, 0.011068088002502918, 0.01913628540933132, 0.030765997245907784, -0.005883346311748028, -0.029478373005986214, -0.006924404297024012, -0.022547120228409767, 0.043121710419654846, 0.03361520916223526, -0.027026407420635223, 0.01802673749625683, 0.03487543761730194, 0.013581695035099983, 0.008554480969905853, 0.005876497365534306, 0.013294033706188202, -0.027683917433023453, -0.01806783117353916, 0.0024725121911615133, -0.002345804590731859, -0.01386935543268919, 0.016793906688690186, -0.011068088002502918, 0.013663883320987225, -0.026971615850925446, 0.016917189583182335, 0.022848479449748993, -0.028875654563307762, 0.015903526917099953, -0.003205362241715193, 0.023834744468331337, -0.023944329470396042, 0.0056778742000460625, -0.0010753030655905604, 0.01743771880865097, -0.01897190883755684, -0.02567029371857643, -0.0014494332717731595, 0.009711973369121552, 0.007376442197710276, 0.0325467549264431, 0.02151975966989994, -0.011485881172120571, 0.0027002436108887196, -0.029204411432147026, -0.020054060965776443, -0.011862579733133316, -0.010150313377380371, -0.02830033376812935, -0.0541624017059803, 0.009348972700536251, 0.004266967065632343, -0.007342197000980377, 0.029944108799099922, -0.018245907500386238, 0.05394323170185089, -0.011698202230036259, 0.0033440557308495045, 0.01182833407074213, -0.0347384549677372, 0.011506428010761738, 0.026149727404117584, -0.00815038662403822, -0.018519870936870575, -0.041423141956329346, -0.014191261492669582, -0.01488986611366272, 0.007102479692548513, 0.01865685172379017, 0.021656742319464684, 0.04366963356733322, -0.049121491611003876, -0.022095082327723503, 0.015246016904711723, -0.04084781929850578, -0.0022053986322134733, 0.046573638916015625, -0.012499542906880379, 0.04717635363340378, 0.01828700117766857, 0.019218474626541138, 0.03276592493057251, 0.03194403648376465, -0.045258618891239166, 0.03621785342693329, 0.012883090414106846, -0.018697945401072502, -0.017958246171474457, -0.06914815306663513, 0.031231733039021492, 0.014835073612630367, 0.005568289197981358, 0.05840882286429405, 0.05961425602436066, -0.028382522985339165, 0.006760026328265667, 0.01058865338563919, -0.014054279774427414, 0.022410139441490173, -0.013609090819954872, -0.0039553348906338215, 0.041423141956329346, 0.02912222221493721, -0.006417573429644108, -0.009027066640555859, 0.017602095380425453, -0.023862140253186226, 0.016478849574923515, 0.0255059152841568, 0.017629491165280342, 0.01988968253135681, 0.0037704098504036665, 0.010451672598719597, 0.017451416701078415, -0.02312244102358818, 0.02805376797914505, 0.04482027888298035, -0.027601730078458786, 0.02535523660480976, 0.017821265384554863, 0.008931179530918598, 0.009643482975661755, -0.019834890961647034, 0.02708120085299015, 0.0053217229433357716, 0.008876387029886246, 0.020711570978164673, 0.0014434403274208307, -0.0019519833149388433, -0.017930850386619568, -0.043121710419654846, -0.028875654563307762, 0.0011163974413648248, -0.005085430108010769, -0.033971358090639114, -0.03690275922417641, -0.014465223997831345, -0.032491959631443024, -0.017424019053578377, -0.009848954156041145, -0.02688942663371563, -0.013944694772362709, 0.04394359886646271, 0.015698054805397987, 0.033533018082380295, 0.0009177746251225471, -0.011944768019020557, -0.04586133360862732, 0.0415327250957489, -0.0025427150540053844, 0.008355858735740185, -0.015054243616759777, 0.018684247508645058, 0.037998609244823456, -0.008595575578510761, 0.022136176005005836, -0.011883126571774483, -0.005592260975390673, -0.020040363073349, 0.023807348683476448, -0.044683296233415604, 0.007355895359069109, -0.0529569648206234, 0.0033149472437798977, 0.01377346832305193, 0.012321466580033302, -0.01199956052005291, 0.00035187069443054497, 0.026560671627521515, -0.022985460236668587, -0.01075987983494997, 0.02732776664197445, -0.03923144191503525, 0.013150203973054886, -0.005821704864501953, -0.0032841262873262167, -0.005636780057102442, 0.011218767613172531, -0.02067047543823719, 0.0009888337226584554, 0.006181280594319105, -0.04457370936870575, -0.015780244022607803, -0.0189445111900568, 0.01724594458937645, 0.006496337708085775, -0.034409698098897934, 0.0022327948827296495, 0.035450756549835205, -0.025108670815825462, 0.0035443909000605345, 0.004756675101816654, 0.02154715731739998, 0.02705380506813526, -0.0031197487842291594, -0.0021728656720370054, -0.0037635609041899443, -0.01935545541346073, -0.0006545137148350477, 0.006468941457569599, -0.001630933489650488, 0.002097525866702199, 0.023862140253186226, 0.008924330584704876, -0.012013259343802929, -0.001697711879387498, -0.02358817681670189, 0.0001305602927459404, 0.0026146303862333298, 0.033122073858976364, -0.01023935154080391, 0.010307841934263706, -0.0005350831779651344, 0.024793613702058792, 0.006434695795178413, -0.02214987389743328, 0.0026300407480448484, -0.006585375405848026, 0.009595539420843124, -0.0032704281620681286, 0.003749862778931856, 0.007465480361133814, -0.026971615850925446, 0.013704977929592133, 0.0171226616948843, -0.03040984645485878, 0.01605420745909214, 0.01806783117353916, -0.009616086259484291, -0.013218694366514683, 0.007157272193580866, -0.0037532872520387173, 0.00336973974481225, 0.018163718283176422, 0.012451599352061749, -0.008068197406828403, -0.01928696595132351, -0.005705270450562239, 0.035889096558094025, -0.004883382935076952, 0.015314508229494095, -0.0006399594713002443, -0.020711570978164673, 0.007164121139794588, -0.00739698950201273, -0.0039039666298776865, 0.0007914950256235898, -0.003001602366566658, 0.00948595441877842, -0.0013295746175572276, -0.016889791935682297, -0.04498465359210968, -0.025588104501366615, 0.004345731344074011, -0.004359429702162743, 0.0013740935828536749, -0.012711863964796066, -0.011259862221777439, -0.0016951434081420302, -0.0023663516622036695, 0.01753360405564308, 0.012424202635884285, 0.005407336167991161, -0.0025101820938289165, -0.00810244306921959, -0.021136213093996048, 0.0003899685980286449, 0.07375072687864304, -0.007020290940999985, -0.008444895967841148, 0.02421829104423523, 0.045094240456819534, -0.017766473814845085, 0.019396550953388214, -0.003729315474629402, -0.005972384009510279, -0.007403838448226452, -0.06350452452898026, 0.01377346832305193, 0.04073823615908623, -0.0031505695078521967, 0.0006934677949175239, 0.008910632692277431, -0.0018920539878308773, 0.013657034374773502, 0.03851913660764694, -0.0036676740273833275, 0.021917006000876427, -0.01608160324394703, 0.0003884703619405627, -0.008212028071284294, -0.044655900448560715, -0.016259679570794106, 0.005424458999186754, -0.031998828053474426, -0.020930740982294083, 0.02773871086537838, -0.008328462019562721, -0.010670842602849007, -0.030382448807358742, -0.0033937112893909216, -0.005821704864501953, -0.015506281517446041, 0.006427846848964691, 0.023382706567645073, 0.0330398865044117, 0.0018766436260193586, -0.007602461613714695, -0.0024502528831362724, 0.002744762459769845, -0.015355601906776428, 0.015081639401614666, 0.0189445111900568, -0.002895442070439458, 0.010718786157667637, 0.0075956122018396854, 0.010650294832885265, 0.009027066640555859, -0.004948448855429888, -0.048710547387599945, -0.0028269512113183737, -0.010883163660764694, 0.008718859404325485, -0.012335165403783321, -0.019314361736178398, -0.01630077324807644, -0.01862945593893528, -0.0056299311108887196, 0.03369739651679993, -0.06087448447942734, 0.005212137941271067, -0.0040477970615029335, -0.006650441326200962, 0.0029005787800997496, 0.017697982490062714, -0.01316390186548233, -0.000964005826972425, -0.014999451115727425, -0.00664359237998724, 0.030985167250037193, 0.008896934799849987, 0.003893693210557103, 0.026820935308933258, -0.029916713014245033, 0.01297212764620781, -0.021259495988488197, -0.005020364187657833, 0.00165148067753762, -0.016287075355648994, -0.023711461573839188, 0.04284774512052536, -0.02604014240205288, -0.02236904390156269, 0.015506281517446041, 0.015355601906776428, 0.010294144041836262, 0.01812262460589409, -0.009122953750193119, -0.003205362241715193, 0.026122331619262695, 0.009122953750193119, 0.023040251806378365, 0.003951909951865673, -0.003265291452407837, -0.04692978784441948, -0.008335310965776443, -0.022190969437360764, 0.007602461613714695, 0.003585485275834799, -0.016561036929488182, 0.0036300041247159243, 0.0008741118363104761, 0.00921884085983038, -0.036108266562223434, 0.018259605392813683, -0.017930850386619568, -0.008013404905796051, -0.022547120228409767, 0.005153920967131853, 0.010451672598719597, -0.015259715728461742, -0.033341243863105774, -0.006712083239108324, 0.007417536806315184, -0.028163352981209755, -0.004438193514943123, -0.02214987389743328, -0.007944914512336254, -0.021054023876786232, 0.010143464431166649, 0.01289678830653429, -0.006088818423449993, -0.00040987369720824063, -0.008540783077478409, 0.0349850207567215, -0.002479361370205879, 0.01077357865869999, 0.003138583851978183, -0.018670549616217613, 0.004304636735469103, 0.01850617118179798, -0.007903819903731346, 0.0020256107673048973, -0.022958064451813698, 0.003996429033577442, 0.010218803770840168, 0.011691353283822536, 0.01576654613018036, -0.01173244696110487, -0.008876387029886246, -0.032217998057603836, -0.0032875509932637215, 0.026464784517884254, 0.017643189057707787, -0.012917335145175457, 0.0006241209921427071, -0.004855986684560776, -0.009307878091931343, 0.0067668757401406765, 0.015574772842228413, 0.016698019579052925, -0.01806783117353916, -0.034135736525058746, 0.020780060440301895, -0.023889536038041115, 0.016067905351519585, -0.012300919741392136, 0.00036214428837411106, 0.02582097239792347, -0.029012637212872505, -0.00584225170314312, 0.02742365375161171, -0.00292112585157156, -0.01608160324394703, 0.01302007120102644, -0.011965315788984299, -0.001941709779202938, -0.02767021954059601, -0.02302655391395092, -0.0026728473603725433, 0.03430011495947838, -0.020191041752696037, 0.009424312971532345, 0.026492180302739143, 0.0053628175519406796, -0.04429974779486656, 0.0066333189606666565, -0.020314324647188187, 0.007342197000980377, -0.015793941915035248, -0.017095264047384262, -0.040573857724666595, 0.00899967085570097, -0.016095301136374474, -0.018451379612088203, 0.05884716287255287, -0.0062531959265470505, 0.035889096558094025, -0.03936842083930969, 0.03605347499251366, -0.015889829024672508, 0.014081676490604877, -0.020930740982294083, 0.0072189136408269405, -0.014615903608500957, 0.02613602951169014, -0.01316390186548233, 0.015656961128115654, -0.006852488964796066, -0.020410211756825447, -0.041231367737054825, -0.016437754034996033, -0.02142387256026268, 0.014711790718138218, -0.003022149670869112, 0.03232758492231369, 0.013424166478216648, 0.009143500588834286, -0.005273779388517141, 0.018739040940999985, 0.012232429347932339, -0.015944622457027435, -0.0028594844043254852, -0.01231461763381958, 0.027218181639909744, 0.006585375405848026, -0.022478628903627396, 0.003907391335815191, -0.014054279774427414, 0.024245688691735268, -0.010910559445619583, -0.0017370939021930099, 0.042491596192121506, 0.04109438508749008, 0.01253378763794899, 0.026875728741288185, -0.02346489392220974, 0.014122771099209785, -0.014629601500928402, 0.0009169185068458319, -0.005328571889549494, -0.01668432168662548, 0.010657143779098988, -0.03720411658287048, 0.018492473289370537, -0.01391729898750782, -0.018547266721725464, -0.0024057338014245033, 0.00424984423443675, 0.015396696515381336, 0.025204556062817574, 0.019807493314146996, 0.011842031963169575, -0.010842069052159786, -0.05284738168120384, -0.0072600082494318485, -0.045094240456819534, -0.004599146544933319, 0.032217998057603836, 0.0066333189606666565, 0.000848855939693749, 0.02588946372270584, -0.012780354358255863, 0.016752811148762703, -0.04065604507923126, -0.017451416701078415, -0.02827293798327446, -0.009075010195374489, -0.001201154664158821, 0.02224576100707054, 0.015300809405744076, -0.001791030284948647, 0.05895674601197243, -0.04112178087234497, -0.026026444509625435, -0.052573416382074356, 0.040409479290246964, -0.017506208270788193, -0.027560634538531303, 0.022122478112578392, -0.013300882652401924, -0.04728594049811363, 0.009417463093996048, -0.006835366133600473, -0.016985679045319557, 0.017944548279047012, 0.011410540901124477, 0.0010598927037790418, 0.005383364390581846, -0.002484498079866171, -0.01192422118037939, 0.020314324647188187, 0.007924367673695087, -0.02353338524699211, 0.008650368079543114, 0.046327073127031326, 0.02654697373509407, 0.025711387395858765, -0.0007349902298301458, 0.003564937971532345, 0.01780756749212742, 0.01702677458524704, 0.006075120065361261, -0.007999707013368607, 0.03468366339802742, -0.021725231781601906, -0.0022619036026299, -0.0018150020623579621, 0.01258173119276762, 0.025053877383470535, -0.010362634435296059, -0.003415970830246806, -0.008376405574381351, 0.02173892967402935, 0.03471105918288231, 0.004020400810986757, -0.003626579651609063, -0.01994447596371174, 0.01399263832718134, -0.013629638589918613, -0.02713599242269993, 0.008876387029886246, -0.020533494651317596, -0.017670586705207825, -0.014424129389226437, 0.011451635509729385, 0.024492254480719566, 0.0054758270271122456, 0.010636596940457821, 0.003975881729274988, -0.029040032997727394, 0.02727297507226467, -0.028875654563307762, -0.019684210419654846, -0.016821302473545074, -0.0272044837474823, 0.00394163653254509, 0.018574662506580353, -0.030163278803229332, 0.04624488204717636, -0.038409553468227386, -0.01541039440780878, 0.030108487233519554, 0.02739625796675682, 0.006818243768066168, 0.02958795800805092, -0.018588360399007797, -0.009616086259484291, -0.00797916017472744, 0.02154715731739998, 0.04627227783203125, 0.008321613073348999, 0.06503871828317642, 0.037560269236564636, 0.036108266562223434, -0.008177783340215683, 0.025711387395858765, 0.0225882139056921, 0.03391656652092934, -0.0323001891374588, 0.00017871777527034283, 0.014204959385097027, -0.02123210020363331, 0.033971358090639114, -0.005951837170869112, 0.003719042055308819, -0.042738161981105804, -0.019177380949258804, 0.03175226226449013, -0.007068234495818615, -0.006486063823103905, 0.02443746104836464, -0.0028697580564767122, -0.010698238387703896, -0.012718712911009789, 0.019834890961647034, 0.014437827281653881, 0.01875273883342743, -0.015848735347390175, 0.011725598014891148, 0.016136394813656807, -0.010170860216021538, -0.025437425822019577, -0.021026628091931343, 0.0022156722843647003, -0.015972018241882324, 0.00788327306509018, 0.00047386964433826506, -0.05742255598306656, 0.03172486647963524, -0.03898487612605095, 0.03599868342280388, 0.0034604896791279316, -0.008301066234707832, 0.010910559445619583, 0.007040838245302439], [-0.0036941522266715765, 0.009477997198700905, 0.03720361739397049, 0.05528123304247856, -0.013997401110827923, 0.036183565855026245, -0.00392083078622818, 0.05601793900132179, -0.009761345572769642, 0.01134809572249651, -0.025643011555075645, -0.03607022762298584, 0.06040983647108078, -0.02718725986778736, 0.010363460518419743, 0.023702077567577362, -0.014089489355683327, 0.017595922574400902, -0.00949924811720848, 0.01851680502295494, 0.05360947921872139, 0.031196637079119682, 0.020698586478829384, -0.006878277752548456, -0.02040106989443302, -0.04057546332478523, -0.014245331287384033, 0.01311902143061161, 0.01946602202951908, -0.098208487033844, 0.05737801268696785, -0.038025327026844025, 0.01970686763525009, -0.0514560341835022, -0.015102459117770195, 0.003069015219807625, -0.00888296589255333, -0.0072678811848163605, 0.0035719582810997963, 0.03935706615447998, -0.0002618757134769112, 0.017170900478959084, -0.0281364768743515, 0.007657485082745552, -0.03672192618250847, 0.020415237173438072, 0.01872931607067585, -0.03649524971842766, 0.02647889032959938, -0.0022561601363122463, -0.013310281559824944, 0.02598302997648716, 0.004629201255738735, -0.06766355037689209, -0.01589583419263363, -0.028859013691544533, 0.01916850544512272, 0.025104651227593422, 0.025487171486020088, -0.013395286165177822, 0.03842201456427574, -0.046724118292331696, -0.021066939458251, -0.02176114171743393, -0.017383411526679993, 0.03346342220902443, -0.016703376546502113, 0.014748274348676205, -0.03306673467159271, -0.00948508083820343, 0.07180043309926987, 0.010915989056229591, 0.04746082425117493, -0.017680928111076355, -0.018445968627929688, -0.023574570193886757, 0.011900624260306358, 0.028901517391204834, -0.029864899814128876, -0.01452159509062767, -0.006704726722091436, 0.008819213137030602, 0.019636031240224838, -0.028150644153356552, -0.04349394887685776, -0.0562446191906929, -0.08472111076116562, -0.039725419133901596, -0.04355061799287796, 0.0772973895072937, -0.005089642014354467, -0.001425595604814589, 0.009187565185129642, 0.054657869040966034, 0.04332394152879715, -0.0351068414747715, 0.029581552371382713, -0.032896727323532104, -0.016816716641187668, 0.03417179360985756, 0.009180481545627117, 0.010143865831196308, -0.019607694819569588, 0.041340503841638565, 0.04476901516318321, 0.020202726125717163, 0.0014521594857797027, -0.013834475539624691, -0.007175793405622244, -0.05740634724497795, -0.10801233351230621, -0.006403669249266386, -0.038507021963596344, 0.05315612256526947, -0.029213199391961098, -0.00833043735474348, -0.01688755303621292, 0.023050375282764435, 0.018545139580965042, -0.017496751621365547, -0.01591000147163868, -0.014989119954407215, 0.033633433282375336, -0.02904319018125534, 0.028660669922828674, -0.04020711034536362, -0.005713008344173431, 0.0015575296711176634, -0.05825639143586159, -0.06590679287910461, 0.0796208456158638, -0.008365855552256107, 0.026762237772345543, -0.04428732395172119, -0.01020053494721651, -0.0003632612351793796, -0.05341113731265068, -0.014918282628059387, -0.012708166614174843, -0.03468181937932968, 0.0292415339499712, 0.0043883551843464375, -0.004554822575300932, 3.6359328078106046e-05, -0.032925061881542206, 0.0027449356857687235, 0.012608994729816914, 0.02203032188117504, -0.026408052071928978, -0.009931354783475399, 0.007317467126995325, -0.01664670743048191, 0.006927863694727421, -0.030828284099698067, 0.019579360261559486, -0.007912498898804188, 0.01253107376396656, 0.0444006621837616, -0.0009563001804053783, -0.031961675733327866, 0.0012095426209270954, -0.0018063448369503021, -0.01195021066814661, -0.022752860561013222, 0.041368838399648666, 0.001804573810659349, -0.06001314893364906, 0.030119914561510086, -0.05060598999261856, -0.06840025633573532, -0.04091548174619675, -0.04176552593708038, -0.08574116230010986, 0.05460119992494583, 0.0026705567725002766, -0.03130997717380524, -0.01899849623441696, 0.020457740873098373, 0.00596802169457078, -0.005103809293359518, 0.005723633803427219, -0.004232513718307018, -0.037543635815382004, -0.04236055538058281, -0.04176552593708038, 0.019154338166117668, 0.01894182711839676, -0.01299151498824358, -0.015286635607481003, 0.013062352314591408, 0.019253510981798172, 0.0398104228079319, 0.007303299847990274, 0.035276852548122406, -0.010087195783853531, -0.01776593178510666, 0.0014937763335183263, 0.01735507696866989, -0.009067142382264137, -0.01335278432816267, 0.017369244247674942, -0.036155231297016144, 0.032443370670080185, 0.035276852548122406, -0.07361385971307755, -0.02526049129664898, -0.0027272263541817665, -0.013253612443804741, -0.02174697443842888, -0.009818015620112419, 0.017496751621365547, -0.06057984381914139, 0.034313466399908066, 0.012113135308027267, -0.014592432416975498, -0.0034798700362443924, -0.06227993592619896, 0.07888413965702057, -0.0025997196789830923, 0.03187667205929756, -0.023787081241607666, 0.029638221487402916, -0.004862963687628508, 0.0081816790625453, 0.007037661038339138, 0.06137321889400482, 0.024481285363435745, -0.055621251463890076, 0.03391677886247635, -0.05774636194109917, 0.01829012669622898, 0.003058389760553837, -0.034086789935827255, -0.04476901516318321, -0.006162823177874088, -0.041340503841638565, 0.014889948070049286, 0.015768326818943024, 0.053524475544691086, 0.03133831173181534, 0.046270761638879776, 0.019480189308524132, 0.017241738736629486, -0.009201732464134693, 0.03550352901220322, -0.002672327682375908, -0.026549726724624634, -0.0020259397570043802, 0.018417632207274437, -0.03199001029133797, 0.008819213137030602, 0.028901517391204834, -0.004540654830634594, -0.016760045662522316, -0.01473410613834858, 0.012502739205956459, -0.022540349513292313, -0.03403012081980705, 0.025685515254735947, -0.014833278022706509, 0.022823696956038475, -0.012786087580025196, 0.01134809572249651, 0.0043918970040977, -0.03915872052311897, -0.013891145586967468, 0.0009014014503918588, 0.014719938859343529, 0.003102662740275264, 0.04306892678141594, -0.03213168680667877, -0.017185067757964134, -0.00040709166205488145, -0.014323251321911812, -0.04261557012796402, 0.025373831391334534, -0.009442579001188278, -0.009208816103637218, -0.010830985382199287, 0.007962084375321865, -0.02900068834424019, -0.007714154664427042, -0.0003610475978348404, -0.033350083976984024, 0.008457943797111511, -0.001038648304529488, -0.0042856414802372456, -0.01336695160716772, 0.010915989056229591, 0.04306892678141594, 0.029893234372138977, -0.04278557747602463, 0.004487527068704367, -0.04012210667133331, 0.038507021963596344, -0.009421328082680702, 0.021647803485393524, -0.039017047733068466, -0.014039902947843075, -0.004168760497123003, 0.00626907916739583, 0.005571334157139063, 0.016505032777786255, -0.028292318806052208, -0.02367374300956726, 0.00696682371199131, 0.01100099366158247, -0.006109695415943861, -0.04100048542022705, -0.03023325279355049, -0.01779426634311676, 0.0017895209603011608, 0.007622066419571638, -0.06851359456777573, -0.05437451973557472, 0.002771499566733837, 0.03765697777271271, -0.007296216208487749, -0.03836534544825554, -0.01990521140396595, 0.008748375810682774, -0.023078711703419685, 0.06244994327425957, -0.007912498898804188, -0.0009155689040198922, -0.019126003608107567, 0.0187434833496809, -0.029184864833950996, -0.05006762593984604, -0.024906307458877563, -0.01193604338914156, -0.043182265013456345, 0.049529265612363815, 0.012233559042215347, 0.005089642014354467, 0.00304068042896688, 0.02881651185452938, -0.016462530940771103, 0.04165218397974968, 0.014195744879543781, 0.03578687831759453, -0.05876641720533371, 0.006662224419414997, -0.028689006343483925, -0.03142331540584564, 0.04649743810296059, 0.02293703705072403, 0.01780843362212181, -0.015173296444118023, 0.03564520552754402, -0.01240356732159853, -0.02108110673725605, -0.015314970165491104, 0.01752508617937565, -0.059843141585588455, -0.006810982245951891, 0.0075512295588850975, -0.00796916801482439, -0.03439847007393837, -0.0008952032076194882, -0.030516602098941803, -0.010618473403155804, -0.020911097526550293, -0.025798853486776352, 0.011383513920009136, 0.03833701089024544, 0.006028233096003532, 0.051881056278944016, 0.05227774381637573, -0.04397564008831978, -0.006502841133624315, 0.03233002871274948, -0.010611389763653278, -0.008266683667898178, -0.04176552593708038, -0.024013759568333626, 0.029609886929392815, 0.01705756224691868, -0.010809733532369137, -0.00484879594296217, 0.013204026035964489, 0.004664619918912649, 0.033803440630435944, -0.04026377946138382, 0.0702703520655632, 0.02860400080680847, -0.07831744104623795, -0.006318665109574795, -0.012141470797359943, 0.014379921369254589, 0.01970686763525009, 0.01217688899487257, -0.03879036754369736, -0.011312676593661308, -0.026308881118893623, 0.015258301049470901, -0.015258301049470901, -0.013784890063107014, 0.04638409987092018, 0.016561701893806458, -0.004455650690943003, -0.008691705763339996, -0.027328934520483017, 0.0005109122139401734, -0.06976033002138138, 0.018162619322538376, -0.002415543422102928, -0.017935940995812416, -0.009343407116830349, 0.01942351832985878, 0.020061053335666656, -0.030034909024834633, 0.04145384207367897, 0.0020896929781883955, 0.008535864762961864, -0.02156279794871807, 0.006598471198230982, 0.0326983816921711, -0.008245432749390602, -0.024934642016887665, 0.00913089606910944, 0.0018771818140521646, 0.008252516388893127, -0.038762032985687256, -0.005110893398523331, 0.04142550751566887, -0.003949165344238281, -0.026308881118893623, 0.011581857688724995, -0.04751749336719513, -0.00683931726962328, 0.028844846412539482, 0.05717966705560684, -0.025813020765781403, -0.054884545505046844, -0.011879373341798782, 0.038762032985687256, 0.04604408144950867, -0.03952707350254059, -0.06687017530202866, 0.030091578140854836, -0.04819753021001816, -0.0008996305405162275, 0.019579360261559486, -0.003012345638126135, 0.03224502503871918, 0.013990317471325397, -0.0072678811848163605, -0.055366240441799164, 0.0004644254222512245, 0.0009377054520882666, 0.00696682371199131, -0.0444289967417717, 0.051427699625492096, -0.04476901516318321, 0.017043394967913628, -0.016689209267497063, -0.001028908183798194, 0.05111601576209068, -0.05179605260491371, -0.002436794573441148, 0.004724831320345402, 0.044854018837213516, 0.03043159656226635, 0.03728862479329109, -0.07134708017110825, -0.020415237173438072, -0.042700573801994324, -0.014429506845772266, 0.005723633803427219, 0.001371582387946546, -0.01333861704915762, -0.03303840011358261, -0.00025678431848064065, 0.0049302587285637856, -0.02737143635749817, -0.05780303478240967, -0.04947259649634361, 0.011149751953780651, -0.012106051668524742, -0.007466224953532219, 0.01734090968966484, -0.04114215821027756, 0.007508727256208658, 0.035475194454193115, 0.01615084707736969, 0.050974342972040176, 0.020216893404722214, -0.026988916099071503, 0.03230169415473938, -0.01800677739083767, -0.00626907916739583, 0.05474287271499634, -0.016901720315217972, 0.01077431533485651, -0.02201615460216999, -0.0014140845742076635, -0.022526182234287262, 0.03785531967878342, 0.009272569790482521, 0.01032095868140459, -0.054686203598976135, 0.005858223885297775, 0.07616399973630905, 0.006343457847833633, 0.030374927446246147, -0.021619467064738274, -0.010384711436927319, -0.018842656165361404, 0.022852033376693726, -0.06449005007743835, 0.015003287233412266, 0.009477997198700905, 0.023560402914881706, -0.007933749817311764, -0.0072218370623886585, -0.02432544343173504, -0.01440825592726469, -0.035900216549634933, 0.027215594425797462, -0.002806918229907751, -0.03462515026330948, -0.002948592184111476, 0.0063080391846597195, 0.01595250330865383, 0.01547081209719181, -0.022767027840018272, -0.059333112090826035, -0.05836972966790199, 0.021605299785733223, 0.06018315628170967, -0.027952300384640694, -0.039017047733068466, 0.049104243516922, 0.010094279423356056, 0.0015929482178762555, 0.015513313934206963, -0.025628844276070595, 0.006180532742291689, -0.01799261011183262, 0.008677538484334946, -0.024736298248171806, -0.022398674860596657, 0.027003083378076553, -0.0005414607003331184, 0.019055167213082314, 0.018346795812249184, 0.011695196852087975, 0.001863014418631792, -0.0026085744611918926, 0.03646691516041756, -0.006818065885454416, 0.04502402991056442, -0.03462515026330948, 0.01547081209719181, -0.04848087579011917, -0.0013680405681952834, -0.016235852614045143, 0.038535356521606445, 0.009322156198322773, -0.01661837287247181, 0.01018636766821146, 0.005489871371537447, -0.012453153729438782, -0.04080213978886604, 0.030289921909570694, 0.0444573312997818, 0.007012867834419012, -0.01919684000313282, 0.024934642016887665, 0.03762863948941231, -0.011581857688724995, 0.019919378682971, -0.03306673467159271, 0.05944645404815674, 0.010653892531991005, 0.011794368736445904, -0.08075423538684845, 0.00948508083820343, 0.010838069021701813, -0.037600304931402206, 0.007104956079274416, -0.01783677004277706, -0.0025217989459633827, -0.007143916562199593, -0.00012717464414890856, 0.0007398044690489769, -0.016901720315217972, 0.049784280359745026, 0.047205809503793716, 0.03190500661730766, -0.020415237173438072, 0.032415036112070084, 0.027272263541817665, 0.009060058742761612, 0.022186163812875748, 0.0018984329653903842, 0.00032872820156626403, -0.0040483372285962105, 0.0222711693495512, 0.01916850544512272, 0.02180364355444908, -0.015314970165491104, -0.035730209201574326, 0.0020560454577207565, 0.010165116749703884, 0.022427009418606758, 1.0687816711651976e-06, 0.016207518056035042, 0.013848643749952316, -0.0032230857759714127, 0.02785312756896019, 0.009747178293764591, -0.013345700688660145, -0.03822367265820503, 0.01406823843717575, -0.012021047063171864, -0.027300599962472916, -0.03258504346013069, 0.014592432416975498, -0.011843955144286156, -0.0014043445698916912, 0.0020135431550443172, -0.006077819038182497, -0.006244285963475704, 0.03680692985653877, -0.013664467260241508, -0.023092878982424736, -0.005674047861248255, 0.0024739839136600494, -0.010632641613483429, 0.011865206062793732, 0.003552478039637208, -0.0017974901711568236, -0.0018205122323706746, -0.03723195195198059, 0.04510903358459473, 7.116910273907706e-05, 0.014663269743323326, -0.005613836459815502, 0.0445423386991024, 0.053014449775218964, -0.010554720647633076, -0.012113135308027267, 0.0037862402386963367, 0.007151000201702118, -0.00666576623916626, 0.04845254123210907, -0.008826296776533127, -0.0210952740162611, 0.017482584342360497, -0.015966670587658882, 0.010575971566140652, -0.03448347747325897, -0.0010094279423356056, 0.0016257102834060788, -0.0022260542027652264, 0.05808638036251068, 0.012984431348741055, 0.04615742340683937, -0.026507224887609482, 0.002891922602429986, -0.018644312396645546, 0.02878817729651928, 0.03306673467159271, -0.006375334691256285, 0.01824762485921383, -0.009655090048909187, -0.0004723945748992264, 0.05836972966790199, -0.041312169283628464, -0.012155638076364994, 0.053779490292072296, 0.007381220813840628, -0.004947967827320099, 0.0028830680530518293, -0.023050375282764435, 0.012332730926573277, -0.010703478008508682, 0.019777704030275345, 0.012127302587032318, -0.009570085443556309, -0.014160326682031155, 0.007158083841204643, -0.012693999335169792, -0.03374677151441574, 0.060069818049669266, -0.018431801348924637, 0.023262888193130493, -0.00619470002129674, -0.010958491824567318, -0.012800254859030247, 0.02789563126862049, -0.028745675459504128, 0.014535762369632721, 0.012616078369319439, -0.009385908953845501, -0.018403464928269386, -0.06398002058267593, -0.0750306025147438, 0.01898432895541191, 0.032386697828769684, 0.0134802907705307, -0.004586698953062296, -0.047659166157245636, -0.014337418600916862, 0.013629048131406307, -0.002684724284335971, 0.02789563126862049, -0.03332174941897392, -0.022554516792297363, -0.026818906888365746, -0.05360947921872139, 0.02717309258878231, -0.033860109746456146, 0.01253107376396656, -0.006786189507693052, -0.029411543160676956, -0.011333928443491459, -0.016519200056791306, -0.01124892383813858, 0.05190939083695412, -0.016037508845329285, -0.026167206466197968, 0.04000876471400261, 0.014479093253612518, -0.007143916562199593, -0.0059361448511481285, 0.012254809960722923, 0.03626856952905655, -0.0008584564784541726, -0.02127945050597191, -0.01967853307723999, 0.0025324246380478144, -0.014549930579960346, 0.012552325613796711, -0.03340675309300423, -0.01276483666151762, -0.029099861159920692, 0.019791871309280396, -0.0023358517792075872, -0.037798650562763214, -0.016476698219776154, 0.00035971938632428646, 0.011617275886237621, -0.010894738137722015, -0.009187565185129642, 0.02320621721446514, -0.016533367335796356, 0.042077209800481796, -0.012913594022393227, 0.013536959886550903, 0.017227571457624435, -0.023758746683597565, 0.013643216341733932, -0.006768479943275452, -0.001676181680522859, 0.015187463723123074, -0.02200198732316494, 0.03907371684908867, 0.013246528804302216, 0.00949924811720848, -0.016320856288075447, 0.01101516094058752, 0.02530299499630928, -0.007600815501064062, 0.030771614983677864, -0.00029397374601103365, 0.017241738736629486, 0.044117316603660583, 0.007763740606606007, 0.009194648824632168, -0.005408408585935831, 0.021236946806311607, 0.01547081209719181, -0.0030619315803050995, -0.02601136453449726, -0.025430500507354736, -0.020981933921575546, -0.030148249119520187, 0.03496516868472099, -0.013267779722809792, 0.013756555505096912, 0.031281642615795135, 0.011829787865281105, -0.0017000891966745257, -0.016717543825507164, -0.015739992260932922, 0.009003388695418835, 0.010016359388828278, -0.030743280425667763, -0.006747229024767876, -0.007388304453343153, -0.02735726907849312, -0.009435495361685753, 0.00017753535939846188, -0.01452159509062767, -0.049500931054353714, 0.000816397019661963, 0.018120117485523224, -0.027697287499904633, 0.003139852313324809, 0.009343407116830349, 0.03561686724424362, 0.04100048542022705, -0.0134519562125206, -0.02761228196322918, 0.0046717035584151745, -0.0035631037317216396, -0.012283144518733025, -0.021846147254109383, 0.016476698219776154, -0.024637125432491302, 0.0007619410171173513, -0.008231265470385551, 0.01712839864194393, 0.020556911826133728, -0.02761228196322918, -0.015995005145668983, 0.01565498858690262, 0.008372939191758633, -0.014649102464318275, -0.012601911090314388, 0.015300802886486053, 0.016306689009070396, 0.004105007275938988, -0.0014371066354215145, 0.016930054873228073, 0.003421429544687271, 0.002096776617690921, 0.01731257513165474, -0.01265149749815464, -0.01263024564832449, 0.015201631002128124, -0.00022081236238591373, 0.008061256259679794, -0.006357625126838684, 0.014719938859343529, 0.011341012082993984, 0.011787285096943378, -0.026124704629182816, -0.011050580069422722, -0.03930039703845978, -0.004530029371380806, -0.01895599439740181, -0.010795566253364086, -0.02133611962199211, -0.019352681934833527, 0.0032567332964390516, 0.014479093253612518, -0.004522945731878281, -0.024282941594719887, 0.00486650550737977, 0.007926666177809238, -0.003426742274314165, -0.018176786601543427, 0.0011865205597132444, -0.03179166838526726, 0.004731914959847927, 0.027059752494096756, 0.007175793405622244, -0.02013188973069191, 0.0072112116031348705, -0.03488016501069069, 0.015867499634623528, 0.018162619322538376, 0.05785970389842987, 0.02807980589568615, 0.025685515254735947, -0.006640973500907421, 0.02643638662993908, -0.015768326818943024, 0.04233222082257271, 0.000806214171461761, -0.005748426541686058, -0.0012573576532304287, -0.024042094126343727, 0.040348783135414124, -0.013324448838829994, 0.029326539486646652, 0.0609198622405529, -0.0027042042929679155, -0.006640973500907421, -0.019154338166117668, -0.013274863362312317, -0.000642403494566679, 0.020486075431108475, 0.03326508030295372, 0.025940528139472008, 0.001192718860693276, -0.04139717295765877, 0.01193604338914156, 0.007869996130466461, -0.03162166103720665, -0.008826296776533127, 0.040405452251434326, -0.008507530204951763, 0.04057546332478523, -0.014875780791044235, 0.01593833602964878, 0.0028759841807186604, 0.03479515761137009, -0.013572379015386105, 0.015824997797608376, 0.011652695015072823, 0.0022968912962824106, -0.015839165076613426, -0.030516602098941803, 0.03113996796309948, 0.0012980889296159148, -0.00994552206248045, -0.0001175452271127142, 0.001707172952592373, 0.0034302840940654278, 0.0063080391846597195, -0.009194648824632168, -0.023135380819439888, 0.014025735668838024, 0.020670251920819283, -0.0022968912962824106, 0.04258723556995392, 0.015824997797608376, 0.0028317112009972334, -0.011624359525740147, 0.04332394152879715, 0.012941929511725903, 0.007388304453343153, 0.009074226021766663, -0.009378825314342976, -0.03133831173181534, -0.011418932117521763, -0.009052975103259087, 0.022313671186566353, 0.04496736079454422, -0.00778499199077487, -0.0257280170917511, -0.00831627007573843, -0.02198782004415989, 0.028490662574768066, -0.040603797882795334, 0.02037273533642292, 0.009591336362063885, 0.025940528139472008, -0.023801248520612717, -0.0004507007251959294, -0.031196637079119682, -0.022313671186566353, -0.011914791539311409, 0.03332174941897392, 0.01289234310388565, 0.05120101943612099, -0.01922517456114292, -0.007480392698198557, -0.03768531233072281, -0.00719704432412982, 0.010405962355434895, 0.034993503242731094, -0.006056567654013634, 0.051654376089572906, -0.0049763028509914875, -0.019565192982554436, 0.027498943731188774, -0.021251115947961807, -0.02010355517268181, 0.028660669922828674, 0.01946602202951908, -0.04726247861981392, 0.004289183299988508, -0.024736298248171806, -7.985770935192704e-05, 0.007437890395522118, -0.01440825592726469, 0.03130997717380524, 0.021916983649134636, -0.01183687150478363, -0.00632574874907732, 0.034993503242731094, 0.003092037281021476, -0.0007127978024072945, -0.02881651185452938, 0.008351688273251057, 0.03581521287560463, 0.039215389639139175, -0.026138871908187866, -0.02086859568953514, 0.026266377419233322, 0.021265283226966858, 0.006028233096003532, -0.00354185258038342, 0.010753064416348934, 0.012460237368941307, -0.018885158002376556, -0.009052975103259087, 0.016689209267497063, 0.006857026368379593, -0.006520550698041916, 0.020769422873854637, -0.027229761704802513, 0.008493361994624138, 0.01266566477715969, 0.02783896028995514, 0.008939635939896107, 0.018870990723371506, -0.006697643082588911, 0.01253107376396656, 0.008479194715619087, 0.02805147133767605, 0.021817810833454132, 0.018205121159553528, -0.04377729818224907, -0.021945318207144737, -0.02790979854762554, 0.017695095390081406, -0.038308676332235336, -0.02203032188117504, -0.012106051668524742, 0.005213607102632523, -0.01782260276377201, -0.007593731861561537, 0.046525776386260986, 0.000836762657854706, 0.018587641417980194, -0.010816817171871662, -0.019281845539808273, 0.0326983816921711, -0.03864869475364685, -0.008472111076116562, -0.03706194460391998, 0.053751152008771896, 0.027796458452939987, 0.01729840785264969, 0.003045993158593774, 0.013763639144599438, 0.016505032777786255, -0.006846400909125805, 0.030374927446246147, 0.009768429212272167, -0.014365754090249538, -0.013671550899744034, -0.015867499634623528, -0.04287058115005493, 0.005836972966790199, -0.05239108204841614, 0.022101160138845444, 0.004728373140096664, -0.011029329150915146, 0.010002191178500652, -0.005539457313716412, 0.03859202563762665, 0.04476901516318321, 0.0046469103544950485, 0.009775512851774693, -0.01892765983939171, -0.004154593218117952, -0.014748274348676205, -0.003924372605979443, -0.009903019294142723, -0.008032921701669693, -0.013501541689038277, 0.0003309418389108032, 0.020287731662392616, -0.02550133876502514, -0.004002293571829796, 0.004689412657171488, 0.01124892383813858, 0.004197095055133104, -0.013147356919944286, 0.006205325480550528, -0.002093234797939658, 0.0037756147794425488, 0.021661970764398575, 0.001059899339452386, 0.007735406048595905, 0.015300802886486053, 0.021846147254109383, -0.006871194113045931, -0.018205121159553528, -0.044797349721193314, -0.00041661038994789124, -0.006470964755862951, -0.005783845204859972, -0.010923073627054691, 0.013742388226091862, -0.004406064748764038, 0.021477794274687767, -0.02856149896979332, -0.0074945599772036076, 0.013423620723187923, 0.010498050600290298, 0.03343508765101433, -0.022526182234287262, 0.04360728710889816, -0.009917187504470348, 0.0006530290702357888, 0.007777908351272345, 0.031196637079119682, 0.010838069021701813, -0.00284056575037539, 0.0046610780991613865, 0.016703376546502113, -0.0037862402386963367, 0.014918282628059387, 0.03493683412671089, 0.00017653920804150403, -0.029383208602666855, -0.023333724588155746, 0.014358670450747013, -0.03153665363788605, 0.0233762264251709, -0.0008797076297923923, -0.009237151592969894, -0.01826179213821888, 0.009060058742761612, 0.00260503264144063, -0.010250121355056763, -0.0046362848952412605, -0.041822195053100586, 0.024240437895059586, 0.013848643749952316, 0.008457943797111511, -0.008762543089687824, -0.013388202525675297, -0.005822805687785149, -0.0008558001136407256, 0.01943768747150898, -0.03111163340508938, -0.0257846862077713, 0.0012768377782776952, -0.006679933983832598, 0.010356376878917217, 0.013629048131406307, -0.011142668314278126, 0.019593527540564537, 0.003931456245481968, 0.004558364395052195, -0.008457943797111511, -0.010094279423356056, -0.030771614983677864, 0.010972659103572369, -0.020939432084560394, 0.0073103834874928, 0.023362059146165848, -0.010639725252985954, -0.00433522742241621, -0.00020487402798607945, -0.0122760608792305, -0.019381016492843628, 0.08064089715480804, -0.005836972966790199, -0.009888852015137672, 0.018360963091254234, 0.0093575743958354, -0.011078914627432823, -0.011128501035273075, 0.017043394967913628, -0.022384507581591606, -0.017369244247674942, -0.021137775853276253, 0.018545139580965042, 0.01323236059397459, -0.018219290301203728, -0.004476901609450579, -0.009222984313964844, -0.018176786601543427, 0.04825419932603836, 0.008748375810682774, 0.018814319744706154, 0.0210952740162611, -0.01382030826061964, 0.019565192982554436, 0.00808250717818737, -0.02595469541847706, -0.0245804563164711, 0.01299151498824358, -0.0005875047645531595, 0.02086859568953514, 0.03340675309300423, 0.00201708497479558, 0.021364454180002213, -0.002080838428810239, 0.010490966960787773, -0.0073103834874928, 0.01276483666151762, 0.005040056072175503, -0.029581552371382713, 0.0445423386991024, -0.03230169415473938, -0.00150971463881433, -0.0003951379330828786, -0.01193604338914156, -0.026308881118893623, -0.013133188709616661, 0.012601911090314388, -0.018899325281381607, 0.022086992859840393, 0.020712753757834435, -0.0006468308274634182, -0.004260848741978407, -0.0008566855685785413, -0.048792559653520584, -0.005674047861248255, -0.035730209201574326, 0.016745878383517265, 0.00579447066411376, 0.03646691516041756, -0.018913492560386658, 0.0011918334057554603, 0.02904319018125534, 0.025883859023451805, -0.015329137444496155, 0.026294713839888573, 0.0011537584941834211, -0.03371843695640564, 0.0017346222884953022, -0.010816817171871662, -0.015754159539937973, -0.02524632401764393, -0.023985425010323524, 0.01403281930834055, 0.028207313269376755, 0.0006902185268700123, -0.01277900394052267, 0.013423620723187923, -0.0017983756260946393, 0.007338718511164188, 2.3450937078450806e-05, -0.028037304058670998, 0.016901720315217972, 0.008365855552256107, 0.013841560110449791, 0.037571970373392105, -0.034086789935827255, -0.0015964900376275182, 0.022795362398028374, 0.017411746084690094, -0.011220588348805904, 0.05972979962825775, 0.005139227956533432, -0.024707963690161705, 0.030544936656951904, 0.0175392534583807, -0.00708370516076684, 0.009796763770282269, -0.012013963423669338, -0.0049975537694990635, -0.023362059146165848, -0.02013188973069191, -0.008054172620177269, -0.009740094654262066, -0.001261784927919507, 0.007593731861561537, -0.04306892678141594, -0.033633433282375336, -0.015201631002128124, 0.007848745211958885, -0.012913594022393227, 0.018346795812249184, 0.0034993502777069807, -0.010292623192071915, 0.0421622134745121, -0.008231265470385551, -0.02833482064306736, 0.002224283292889595, 0.0008677538717165589, -0.06222326681017876, 0.0011192254023626447, 0.0019905210938304663, 0.014096572995185852, -0.0029060898814350367, 0.0018984329653903842, -0.000934163574129343, 0.04032044857740402, -0.001072295824997127, -0.016476698219776154, -0.007016409654170275, 0.023305390030145645, 0.017213404178619385, 0.008153344504535198, 0.011673945933580399, 0.02623804286122322, -0.03250003978610039, -0.006435546092689037, 0.01087348721921444, -0.001804573810659349, 0.0010351063683629036, -0.007579564582556486, -0.012205223552882671, -0.0065807620994746685, 0.022115327417850494, -0.009782596491277218, 0.01922517456114292, -0.030544936656951904, 0.00983218289911747, -0.019551025703549385, -0.005713008344173431, -0.01428074948489666, -0.009980940259993076, -0.03581521287560463, 0.0019267677562311292, -0.006127404980361462, 0.04026377946138382, 0.015612485818564892, -0.009286737069487572, 0.031253308057785034, -0.024042094126343727, -0.03468181937932968, -0.009435495361685753, -0.013487374410033226, -0.012198139913380146, -0.010653892531991005, -0.03697694092988968, 0.037345293909311295, -0.03624023497104645, -0.006035316735506058, 0.03714694827795029, 0.030488265678286552, -0.018219290301203728, -0.007104956079274416, -0.013990317471325397, 0.006410752888768911, 0.006924321874976158, -0.0292698685079813, -0.005557166412472725, 0.0009146833908744156, 0.00891838502138853, -0.010228870436549187, 0.0033665308728814125, -0.018658479675650597, 0.006166365463286638, -0.006226576864719391, -0.02108110673725605, 0.00032407950493507087, -0.023078711703419685, 0.018375130370259285, 0.0028883807826787233, 0.0292698685079813, -0.004515862092375755, 0.035276852548122406, 0.008380022831261158, 0.03958374261856079, 0.02762644924223423, 0.004568989854305983, -0.004282099660485983, 0.03369010239839554, -0.024509619921445847, 0.01732674241065979, 0.02156279794871807, 0.012573576532304287, -0.021477794274687767, -0.017241738736629486, -0.019947713240981102, 0.03536185622215271, -0.027116423472762108, 0.026804739609360695, 0.0017647279892116785, 0.017935940995812416, 0.0022048032842576504, 0.020245229825377464, -0.0034355970565229654, 0.02408459782600403, -0.011341012082993984, 0.00014875781198497862, -0.003963333088904619, -0.012205223552882671, 0.06018315628170967, 0.010264288634061813, -0.03113996796309948, -0.02901485562324524, -0.02361707203090191, 0.016958389431238174, -0.04899090528488159, 7.609448948642239e-05, -0.019990215077996254, -0.011369346641004086, -0.004593782592564821, -0.010044693946838379, -0.04332394152879715, 0.039187055081129074, -0.006913695950061083, 0.004501694347709417, -0.008819213137030602, -0.00345507706515491, -0.029836565256118774, -0.010781398974359035, -0.03394511342048645, -0.02057107910513878, -0.01238940004259348, -0.016972556710243225, 0.003754363628104329, 0.013912396505475044, 0.008387106470763683, -0.006945572793483734, 0.03017658367753029, 0.004597324412316084, -0.020415237173438072, -0.01545664481818676, -0.013799057342112064, -0.015371640212833881, -0.01463493425399065, -0.001701860106550157, -0.008953803218901157, 0.022667856886982918, -0.019069334492087364, 0.0210952740162611, -0.020188558846712112, 0.01395489927381277, 0.015640821307897568, -0.02368791028857231, -0.006970365531742573, 0.011673945933580399, -0.027484776452183723, -0.0002786995319183916, 0.040377117693424225, 0.0029220283031463623, -0.0292415339499712, -0.028419824317097664, 0.005305694881826639, -0.020046886056661606, 0.007073079701513052, -0.0034125749953091145, -0.016703376546502113, -0.02670556865632534, 0.005542999133467674, 0.0017868645954877138, -0.012715250253677368, 0.027541445568203926, -0.012679832056164742, -0.014549930579960346, 0.04474068060517311, -0.010908905416727066, 0.005344655364751816, 0.04663911461830139, -0.010993910022079945, -0.03816700354218483, -0.0012715250486508012, 0.02783896028995514, 0.0013228819007053971, 0.035446859896183014, 0.02174697443842888, -0.009818015620112419, 0.03646691516041756, -0.035956885665655136, 0.05122935399413109, -0.006120321340858936, 0.01535747293382883, -0.027966467663645744, -0.025713849812746048, 0.01705756224691868, -0.021902816370129585, 0.014776608906686306, 0.016264187172055244, 0.008358771912753582, 0.03813866898417473, 0.016505032777786255, 0.05049264803528786, -0.004413148388266563, -0.03541852533817291, 0.002615658100694418, -0.015513313934206963, -0.008606702089309692, -0.015513313934206963, 0.030771614983677864, -0.01415324304252863, 0.024722130969166756, -0.02456628903746605, 0.0011024016421288252, -0.006679933983832598, -0.011503936722874641, -0.011886456981301308, 0.02509048394858837, -0.01898432895541191, 0.047659166157245636, 0.008592533878982067, -0.00021096158889122307, -0.05205106362700462, 0.012325646355748177, -0.020726921036839485, 0.009463829919695854, -0.014273665845394135, 0.032216690480709076, -0.03091328963637352, 0.029921570792794228, 0.042530566453933716, 0.015796661376953125, 0.03394511342048645, 0.018913492560386658, -0.008075423538684845, -0.022667856886982918, -0.0024403363931924105, 0.027328934520483017, 0.03187667205929756, -0.008819213137030602, 0.044343993067741394, 0.005171104799956083, 0.028164811432361603, -0.010625557973980904, 0.004664619918912649, 0.03068660944700241, 0.03870536386966705, -0.011376430280506611, -0.009881768375635147, -6.153968570288271e-05, -0.02127945050597191, 0.01076014805585146, 0.005578417796641588, -0.009067142382264137, 0.016774212941527367, -0.0019462479976937175, 0.010490966960787773, -0.014096572995185852, 0.01418157760053873, 0.024070430546998978, 0.01406823843717575, -0.024424614384770393, 0.024509619921445847, 0.0005330488202162087, 0.00913089606910944, 0.022752860561013222, 0.010710561648011208, 0.013310281559824944, -0.022072825580835342, -0.022823696956038475, -0.06466005742549896, 0.0012148554669693112, -0.01710006408393383, -0.04193553328514099, -0.022752860561013222, 0.02316371537744999, -0.003304548328742385, -0.011277258396148682, -0.021378621459007263, 0.021591132506728172, -0.011241840198636055, -0.002110944129526615, 0.017454249784350395, 0.017907606437802315], [-0.009608094580471516, 0.011338788084685802, 0.019559580832719803, 0.020026594400405884, 0.027608677744865417, 0.005669394042342901, 0.014271351508796215, 0.04700343310832977, -0.03980594500899315, 0.0011941440170630813, -0.031015122309327126, -0.02685321681201458, 0.010782494209706783, -0.02818557620048523, 0.02756747044622898, 0.012004967778921127, -0.03302052989602089, -0.010439102537930012, -0.016235550865530968, 0.04848688095808029, 0.07235946506261826, 0.01693606935441494, 0.011709650978446007, -0.015219111926853657, -0.015274055302143097, -0.03120742179453373, -0.02527361549437046, 0.017952509224414825, 0.03096017986536026, -0.07708452641963959, 0.05670080706477165, -0.02780097723007202, 0.015356468968093395, -0.07626038789749146, -0.0462067648768425, -0.015493825078010559, -0.00155556364916265, -0.021125447005033493, 0.025795571506023407, 0.043377216905355453, 0.012238473631441593, 0.028377875685691833, -0.011029735207557678, 0.005635054782032967, -0.02719660848379135, -0.0068334913812577724, -0.012499451637268066, -0.015150434337556362, 0.012107985094189644, 0.012114852666854858, -0.01390048861503601, 0.04543756693601608, -0.013055745512247086, -0.09735836088657379, -0.004862423986196518, -0.040218014270067215, 0.021097974851727486, 0.035987433046102524, 0.013488419353961945, -0.013392269611358643, 0.06087644770741463, -0.05214056745171547, -0.012300284579396248, 0.012252209708094597, -0.012911520898342133, 0.04310250282287598, -0.02332315221428871, 0.0007164005655795336, -0.04510790854692459, -0.009120479226112366, 0.051096659153699875, -0.005696865264326334, 0.05598655343055725, -0.004076057579368353, -0.0028913565911352634, -0.018900269642472267, 0.00914108194410801, 0.0004691586655098945, -0.022663841024041176, -0.015328997746109962, -0.006757945287972689, 0.010040768422186375, 0.020109007135033607, -0.02889982983469963, -0.04041031375527382, -0.07241440564393997, -0.09235858172178268, -0.033569954335689545, -0.022814933210611343, 0.06873324513435364, -0.017719002440571785, -0.0011658142320811749, 0.022677576169371605, 0.0326908715069294, 0.024476947262883186, -0.03255351632833481, -0.006304668262600899, -0.014257616363465786, 0.004220281727612019, 0.027127930894494057, 0.01755417510867119, -0.03980594500899315, 0.010294877924025059, 0.01167531218379736, 0.06087644770741463, 0.05178344249725342, 0.038020309060811996, -0.006905603688210249, 0.010116314515471458, -0.02854270301759243, -0.05475034564733505, 0.008591655641794205, -0.026070283725857735, 0.0597226545214653, -0.0035506682470440865, -0.01059019472450018, 0.010789361782371998, -0.004127566237002611, -0.02214188501238823, -0.017856359481811523, -0.011661576107144356, -0.03966858983039856, 0.008935047313570976, 0.02380390092730522, 0.0053534735925495625, -0.06153576076030731, 0.024161027744412422, 0.014985606074333191, -0.051234014332294464, -0.03653685748577118, 0.019999122247099876, 0.0127054862678051, 0.019298603758215904, -0.026880688965320587, -0.028844887390732765, 0.025493387132883072, -0.06494220346212387, 0.00846803467720747, -0.03178431838750839, 0.0017839189385995269, 0.013694453984498978, 0.0014061882393434644, 0.01142807025462389, -0.012238473631441593, -0.051096659153699875, -0.008907576091587543, 0.011654708534479141, -0.030273396521806717, -0.028020748868584633, -0.005247022490948439, 0.017842624336481094, -0.03024592436850071, 0.013625775463879108, -0.04483319818973541, -0.0040451521053910255, -0.02021889202296734, 0.013234308920800686, 0.03714122623205185, 0.00018017324327956885, -0.011228903196752071, -0.03486110642552376, -0.011215167120099068, -0.036344558000564575, -0.04233330860733986, 0.014546064659953117, -0.0326908715069294, -0.03491605073213577, 0.03395455330610275, -0.055684369057416916, -0.04752538725733757, -0.017979979515075684, -0.0033120112493634224, -0.08186453580856323, 0.05475034564733505, -0.0017925037536770105, -0.026029076427221298, -0.043981585651636124, 0.010171256959438324, 0.009415795095264912, 0.006850660778582096, 0.0048418203368783, 0.012781032361090183, -0.016015781089663506, -0.015617446042597294, -0.015782274305820465, 0.00853671319782734, -0.017251990735530853, 0.011812668293714523, -0.008969386108219624, 0.033432599157094955, -0.03329524025321007, 0.05851391702890396, -0.020109007135033607, 0.02358412928879261, 0.0007065280806273222, 0.0022474974393844604, 0.003148900344967842, 0.029449256137013435, 0.009058668278157711, 0.00581018440425396, 0.01766405999660492, -0.0012937275459989905, 0.0335974246263504, 0.031729377806186676, -0.06735967844724655, -0.03156454861164093, -0.05076700076460838, -0.011503616347908974, -0.04689354449510574, -0.004676992539316416, 0.017251990735530853, -0.02031504176557064, 0.048074811697006226, 0.010995396412909031, -0.02369401417672634, 0.01083056814968586, -0.09538042545318604, 0.0707111805677414, 0.020658433437347412, 0.05768977478146553, -0.027622414752840996, 0.02563074231147766, -0.009182289242744446, -0.004707897547632456, 0.019051361829042435, 0.07274405658245087, 0.04236077889800072, -0.0543932169675827, 0.046124350279569626, -0.05527229979634285, 0.041673995554447174, -0.05392620339989662, -0.07301877439022064, -0.03521823510527611, 0.0025548329576849937, -0.02528735250234604, 0.01645532250404358, 0.007238693069666624, 0.02565821446478367, -0.005851391702890396, 0.03244363144040108, 0.017114633694291115, 0.02260889858007431, 0.00151178112719208, 0.06098633259534836, -0.007266164757311344, -0.016661357134580612, -0.002839847933501005, -0.009443267248570919, -0.03884444758296013, 0.015356468968093395, 0.030328338965773582, 0.0022406296338886023, -0.04381675645709038, -0.03758076950907707, 0.008351282216608524, -0.004000511020421982, 0.003955870401114225, 0.00450529670342803, 0.026084020733833313, 0.02876247465610504, -0.023048438131809235, -0.02175728604197502, -0.03475122153759003, -0.026509825140237808, -0.0023762693163007498, -0.0038665884640067816, 0.03922904655337334, 0.005463358946144581, -0.006713304203003645, -0.003900927724316716, -0.029559142887592316, 0.021249067038297653, -0.020946882665157318, -0.010837436653673649, 0.031619492918252945, -0.005315700545907021, 0.007932344451546669, -0.0032450498547405005, 0.021194124594330788, -0.02601534128189087, -0.010425366461277008, -0.021674873307347298, 0.019861765205860138, 0.020727112889289856, -0.01765032485127449, 0.026564767584204674, -0.013666982762515545, -0.0013976035406813025, 0.0314546637237072, 0.0396411158144474, -0.06087644770741463, -0.007966683246195316, -0.024284647777676582, 0.04837699607014656, -0.019284868612885475, 0.03304800018668175, -0.08312822133302689, -0.011290713213384151, 0.0248890183866024, 0.013515890575945377, -0.006582815665751696, 0.0031111272983253, -0.026798274368047714, -0.04708584398031235, 0.005789581220597029, -0.02806195430457592, -0.003883758094161749, -0.0334051288664341, -0.03241616114974022, -0.0155487684533, 0.013694453984498978, 0.03494352102279663, -0.05598655343055725, -0.02988879755139351, 0.016853656619787216, 0.03977847471833229, 0.0030029588378965855, 0.0012456527911126614, -0.010995396412909031, 0.020768318325281143, -0.014449914917349815, 0.05587666854262352, 0.010253670625388622, -0.01499934121966362, -0.04076744243502617, 0.01480704266577959, -0.0335974246263504, -0.04244319349527359, -0.021510044112801552, 0.025713156908750534, -0.02140015922486782, 0.03675662726163864, 0.03225133195519447, 0.0011288996320217848, -0.0061570098623633385, 0.00907927192747593, -0.02672959677875042, 0.051343899220228195, 0.035630304366350174, 0.03469628095626831, -0.037937894463539124, -0.004096660763025284, -0.014408708550035954, 0.0155487684533, -0.004584276583045721, 0.014614743180572987, 0.00871527660638094, -0.006424855440855026, 0.016620149835944176, 0.003667421406134963, -0.04123445227742195, -0.016002044081687927, -0.012265944853425026, -0.020658433437347412, 0.009099875576794147, 0.029339371249079704, -0.018790384754538536, -0.02091941237449646, 0.010734419338405132, -0.011153356172144413, -0.018089866265654564, -0.03595995903015137, -0.010281141847372055, 0.03519076481461525, 0.036591801792383194, -0.03727858513593674, 0.05736012011766434, 0.03225133195519447, -0.028322933241724968, 0.003935266751796007, -0.00011836276826215908, -0.006050558760762215, 0.0039661722257733345, -0.04027295857667923, -0.022430334240198135, 0.027279023081064224, 0.04689354449510574, 0.005508000031113625, 0.010603929869830608, 0.005995615851134062, 0.008474903181195259, -0.0019418790470808744, -0.008351282216608524, 0.05554701387882233, 0.040080659091472626, -0.027375172823667526, -0.021949585527181625, -0.05856885761022568, 0.03035581111907959, 0.022952288389205933, -0.024875281378626823, -0.019298603758215904, -0.0005631620879285038, -0.021070504561066628, 0.006957112345844507, 0.0010765324113890529, -0.02988879755139351, 0.05035493150353432, 0.05483275651931763, 0.003387557342648506, -0.038514792919158936, -0.040932267904281616, 0.028213046491146088, -0.03917410597205162, 0.0387345626950264, 0.005937239620834589, -0.026523560285568237, -0.055437128990888596, 0.029586613178253174, 0.01961452327668667, -0.016276758164167404, 0.041069626808166504, -7.656557863811031e-05, 0.005367209669202566, -0.0038597206585109234, 0.027855919674038887, 0.014298822730779648, 0.017966244369745255, -0.011833271943032742, 0.0033480674028396606, -0.009511944837868214, -0.022924818098545074, -0.044338714331388474, -0.012691750191152096, 0.04150916635990143, 0.015026813372969627, 0.00037730144686065614, 0.02903718687593937, -0.035850074142217636, 0.004687294363975525, 0.017870094627141953, 0.07400774210691452, -0.0008211349486373365, -0.03859720751643181, -0.030383281409740448, 0.01656520739197731, 0.056535981595516205, -0.024023670703172684, -0.04840447008609772, 0.02273251861333847, -0.02900971658527851, -0.01727946102619171, -0.0001466925605200231, 0.0022698179818689823, 0.023968728259205818, 0.029916269704699516, -0.018446993082761765, -0.050739530473947525, 0.02357039414346218, 0.023172060027718544, 0.025919191539287567, -0.02359786443412304, 0.04790998622775078, -0.049640677869319916, -0.014271351508796215, -0.017224518582224846, -0.0050135161727666855, 0.04387170076370239, -0.02201826497912407, -0.0326908715069294, 0.0028604513499885798, 0.03486110642552376, 0.009072404354810715, 0.013399137184023857, -0.03178431838750839, 0.0050135161727666855, -0.02138642407953739, -0.0020706509239971638, -0.008866368792951107, -0.025850513949990273, -0.0034716883674263954, -0.013158762827515602, -0.006019653286784887, -0.018776647746562958, -0.011290713213384151, -0.027663620188832283, -0.03395455330610275, 0.023309417068958282, 0.015919631347060204, -0.002271534875035286, -0.018048658967018127, -0.058953456580638885, 0.0033377655781805515, 0.009216628037393093, -0.004484693054109812, 0.02090567536652088, 0.011716518551111221, -0.028982244431972504, 0.01813107170164585, 0.03903674706816673, 0.016386643052101135, 0.02818557620048523, -0.015576239675283432, 0.017705267295241356, 0.005068459082394838, -0.03565777465701103, -0.013687586411833763, 0.03414685279130936, 0.02359786443412304, 0.006287498865276575, -0.024037405848503113, 0.0031420323066413403, 0.07664498686790466, -0.03351501375436783, 0.03969606012105942, 0.004628917668014765, -0.05131642892956734, -0.03486110642552376, 0.026084020733833313, -0.03903674706816673, 0.006270329002290964, 0.020644698292016983, 0.02211441472172737, -0.006970847956836224, 0.006459194701164961, -0.03329524025321007, -0.029092129319906235, -0.017389345914125443, 0.010727550834417343, -0.0022011396940797567, -0.019078832119703293, -0.005617885384708643, -0.0026114925276488066, 0.01803492195904255, 0.014463650994002819, -0.01336479838937521, -0.018529405817389488, -0.05417344719171524, 0.002874186960980296, 0.03642697259783745, -0.03082282282412052, -0.031125007197260857, 0.06631577014923096, 0.011895081959664822, -0.010487177409231663, -0.00432673329487443, -0.011805800721049309, 0.023900050669908524, -0.012863446027040482, 0.034641336649656296, 0.0028449988458305597, -0.0013787169009447098, 0.013907356187701225, 0.015672389417886734, 0.0193672813475132, -0.005003214348107576, -0.019133776426315308, -0.006431723013520241, -0.0073279752396047115, 0.039146631956100464, -0.01645532250404358, 0.011579162441194057, -0.05054723098874092, 0.019628260284662247, -0.018227221444249153, -0.02031504176557064, -0.022650104016065598, 0.04054767265915871, -0.00991027895361185, -0.02068590559065342, 0.011153356172144413, 0.014903192408382893, -0.015342732891440392, -0.01548008993268013, 0.006191349122673273, 0.041921235620975494, 0.011565426364541054, -0.06697507947683334, 0.05659092217683792, 0.0376906543970108, -0.0382126085460186, 0.011908818036317825, -0.04510790854692459, 0.03931146115064621, 0.0046460870653390884, -0.010178124532103539, -0.06840359419584274, 0.020232629030942917, -0.00495857372879982, -0.04236077889800072, -0.002013991354033351, -0.005501131992787123, -0.014175201766192913, -0.001306604710407555, 0.010720683261752129, 0.0027643018402159214, 0.0068437932059168816, 0.060656677931547165, 0.03661927208304405, 0.01800745166838169, -0.025726892054080963, 0.031042594462633133, 0.031976617872714996, -0.00701548857614398, -0.005116533488035202, 0.020260099321603775, -0.024229705333709717, -0.01670256443321705, 0.010803096927702427, 0.005222985055297613, 0.035025935620069504, -0.018790384754538536, -0.035273175686597824, -0.03450398147106171, 0.02372148633003235, 0.016002044081687927, 0.0077469125390052795, 0.015122962184250355, 0.009230364114046097, -0.0014224994229152799, 0.02939431369304657, 0.026633447036147118, -0.01609819382429123, -0.018350843340158463, 0.0038768902886658907, 0.0025857381988316774, -0.014710892923176289, -0.005556074902415276, 0.03387213870882988, 0.0065244389697909355, 0.0004511306178756058, 0.008667201735079288, -0.010040768422186375, 0.006579381413757801, 0.05247022584080696, -0.027608677744865417, -0.02237539179623127, -0.0015495542902499437, -0.015796009451150894, 0.0018371446058154106, 0.004041718319058418, 0.0007661923300474882, -0.014271351508796215, 0.001962482463568449, -0.035383060574531555, 0.03425673767924309, -0.0006348450551740825, 0.004024548456072807, -0.003014977555721998, 0.031619492918252945, 0.049036309123039246, -0.016043251380324364, -0.020260099321603775, 0.00907927192747593, 0.020150214433670044, -0.01045283768326044, 0.058458972722291946, -0.011792064644396305, -0.024847811087965965, 0.00797355081886053, -0.014017242006957531, 0.005521735642105341, -0.03689398616552353, 0.005343172233551741, 0.010136918164789677, 0.02333688735961914, 0.047223202884197235, -0.012774164788424969, 0.025671949610114098, -0.0070395260117948055, 0.014436179772019386, -0.005027251783758402, 0.026193905621767044, 0.004106962587684393, -0.006119236815720797, 0.04073996841907501, 0.006232555955648422, 0.027127930894494057, 0.06301920861005783, -0.013096952810883522, -0.010020164772868156, 0.06554657220840454, -0.007870533503592014, -0.02733396552503109, 0.00846803467720747, -0.0009872505906969309, -0.02697683870792389, 0.00441601499915123, -0.003284539794549346, 0.03686651214957237, -0.018048658967018127, 0.0058479574508965015, -0.0025307955220341682, -0.013440344482660294, -0.05425586178898811, 0.04571228101849556, 0.004728501196950674, -0.004975743126124144, 0.001741853542625904, -0.01530152652412653, 0.01185387559235096, 0.03859720751643181, -0.04208606481552124, -0.002966902684420347, -0.014614743180572987, 0.020411191508173943, 0.0073760501109063625, -0.04606940597295761, -0.08307327330112457, 0.033322714269161224, 0.02804821915924549, 0.002048330381512642, -0.036948926746845245, -0.06395323574542999, -0.02045239880681038, 0.02017768658697605, -0.02671585977077484, 0.03716869652271271, -0.021207859739661217, -0.003959304187446833, -0.018529405817389488, -0.035877544432878494, 0.012245341204106808, -0.005892598535865545, -0.004240885376930237, -0.007994154468178749, -0.02587798424065113, -0.022801196202635765, -0.03771812468767166, -0.020109007135033607, 0.04920113831758499, -0.02745758555829525, -0.06098633259534836, 0.03568524867296219, 0.025548329576849937, -0.017870094627141953, 0.018350843340158463, 0.021922115236520767, 0.006919339299201965, 0.015507561154663563, -0.015493825078010559, -0.03194914758205414, 0.011881346814334393, -0.008014758117496967, 0.033899612724781036, -0.015905896201729774, -0.012039306573569775, -0.038652148097753525, 0.004745670594274998, -0.008811426348984241, -0.037306055426597595, 0.0017109483014792204, -0.009086139500141144, 0.027004308998584747, -0.011867610737681389, -0.002596039790660143, 0.002728245686739683, -0.03203156217932701, 0.015150434337556362, -0.0013830093666911125, 0.012265944853425026, 0.008193321526050568, -0.005198947619646788, 0.02271878346800804, -0.013186234049499035, 0.034531451761722565, -0.024367062374949455, -0.011517351493239403, 0.03760823979973793, 0.007252429146319628, 0.008886972442269325, -0.015438882634043694, 0.007891137152910233, 0.022292977198958397, -0.022897345945239067, 0.008447431027889252, -0.015260319225490093, 0.010583327151834965, 0.017952509224414825, -0.022416599094867706, 0.012272813357412815, 0.010219331830739975, -0.004031416494399309, 0.03475122153759003, 0.01094732154160738, -0.01825469359755516, -0.007389785721898079, -0.01204617414623499, 0.0024037405382841825, 0.03313041478395462, -0.018199751153588295, 0.0187491774559021, 0.013433475978672504, 0.02429838478565216, 0.038871921598911285, 0.02685321681201458, -0.02903718687593937, 0.015933366492390633, -0.015864688903093338, -0.020136479288339615, -0.00677854847162962, -0.00641111982986331, -0.011998100206255913, -0.018433256074786186, 0.014765835367143154, -0.014724628068506718, -0.02236165665090084, 0.017622852697968483, -0.01191568560898304, -0.024257177487015724, 0.012231606058776379, 0.02744385041296482, 0.032113976776599884, -0.005803316831588745, -0.012300284579396248, -0.021592458710074425, 0.00507876044139266, -0.009772922843694687, 0.002561700763180852, -0.05142631381750107, 0.00777438422665, -0.03304800018668175, -0.02321326732635498, -0.0163454357534647, 0.01740308292210102, 0.01462847925722599, -0.06395323574542999, -0.0025788703933358192, 0.029971212148666382, -5.880579919903539e-05, -0.022924818098545074, -0.02767735719680786, 0.01107781007885933, 0.009031197056174278, -0.0055938479490578175, -0.004759406670928001, 0.009834732860326767, -0.003483707085251808, 0.002707642037421465, 0.006266895215958357, -0.017004748806357384, -0.03884444758296013, 0.026152698323130608, -0.001574450172483921, -0.02601534128189087, -0.002166800433769822, 0.03060305304825306, 0.010514648631215096, -0.001623383373953402, -0.01541141141206026, 0.009738583117723465, -0.05192079767584801, -0.002565134549513459, -0.03980594500899315, -0.02623511292040348, -0.04060261324048042, 0.02637246809899807, 0.02939431369304657, 0.004580842796713114, 0.0018594650318846107, -0.019326074048876762, 0.05307459458708763, -0.013172498904168606, 0.004817782901227474, 0.01216292753815651, -0.01360517181456089, -0.008303207345306873, 0.018556877970695496, -0.0017160990973934531, -0.02493022382259369, -0.01214919239282608, 0.016125665977597237, -0.04351457208395004, 0.015905896201729774, 0.02286987565457821, 0.049036309123039246, 0.035740189254283905, 0.03991582989692688, 0.015686124563217163, 0.006510703358799219, -0.033432599157094955, 0.0021582157351076603, -0.001734985620714724, 0.017952509224414825, -0.006376780569553375, -0.0026149265468120575, 0.02552085742354393, 0.007252429146319628, 0.03409190848469734, 0.07148037850856781, 0.019655730575323105, -0.0016637318767607212, -0.029449256137013435, -0.03774559497833252, 0.02093314751982689, -0.00918915681540966, 0.03774559497833252, -0.0005562942824326456, 0.0003339482645969838, -0.030190981924533844, 0.0029325636569410563, 0.03521823510527611, -0.038267552852630615, -0.04486066848039627, 0.034394096583127975, 0.01457353588193655, 0.06444772332906723, -0.005885730497539043, 0.007994154468178749, -0.0031557681504637003, 0.019889237359166145, -0.0056728278286755085, 0.009216628037393093, 0.05021757632493973, -0.009147950448095798, -0.008241396397352219, -0.014655950479209423, 0.004340468905866146, -0.021372688934206963, 0.0013563964748755097, -0.017746474593877792, -0.015754802152514458, -0.008694672957062721, -0.023144587874412537, -0.00797355081886053, -0.010981661267578602, -0.001976218307390809, 0.016743769869208336, -0.012176663614809513, 0.027182873338460922, 0.02865258790552616, 0.02697683870792389, -0.0015057717682793736, 0.008928179740905762, -0.015466353856027126, -0.0018422955181449652, 0.0033463502768427134, -0.004525900352746248, -0.000837875297293067, 0.0007086742552928627, -0.016139401122927666, 0.030877765268087387, 0.02310338243842125, -0.01421640906482935, -0.018570613116025925, 0.008818293921649456, -0.03304800018668175, -0.0018903702730312943, -0.0012731240130960941, -0.004769708029925823, 0.001009571016766131, 0.010123182088136673, 0.0074447281658649445, -0.003241616068407893, -0.02804821915924549, -0.040218014270067215, -0.0010902680223807693, 0.01824095845222473, 0.03980594500899315, 0.026331262663006783, -0.019381018355488777, -0.01548008993268013, -0.0018714837497100234, -0.030685465782880783, -0.007389785721898079, 0.01802118681371212, 0.007149411365389824, 0.07922729104757309, 0.008770219050347805, -0.04991539195179939, 0.036839041858911514, -0.02019142173230648, 0.010239935480058193, 0.03917410597205162, -0.013399137184023857, -0.055821724236011505, 0.006153576076030731, -0.010116314515471458, 0.0020534812938421965, 0.02130400948226452, -0.009292174130678177, 0.0167987123131752, 0.02225176990032196, -0.006421421654522419, 0.0025119089987128973, 0.01730693317949772, 0.0014233578694984317, -0.006599985063076019, -0.02624884806573391, -0.004151603672653437, 0.04980550706386566, 0.025932928547263145, -0.035987433046102524, 0.0030218453612178564, 0.03313041478395462, 0.003849419066682458, 0.006146708037704229, 0.0022217431105673313, 0.014834513887763023, 0.009965222328901291, -0.03568524867296219, -0.006579381413757801, -0.0011194563703611493, -0.013302987441420555, -0.010528383776545525, 0.008866368792951107, -0.006713304203003645, 0.009704244323074818, 0.013199970126152039, -0.008983122184872627, 0.004962007515132427, 0.02626258321106434, -0.015933366492390633, -0.0030767880380153656, 0.02466924674808979, 0.04801987111568451, 0.01462847925722599, 0.018089866265654564, -0.05807437375187874, -0.0073760501109063625, -0.007877401076257229, 0.019023889675736427, -0.04598699137568474, -0.011256374418735504, -0.02722408063709736, -0.02539723739027977, 0.0024106085766106844, -0.01828216388821602, 0.03994330018758774, 0.028707530349493027, -0.003275955095887184, -0.011201431043446064, -0.0015109226806089282, 0.032718345522880554, -0.018900269642472267, -7.356089918175712e-05, -0.028844887390732765, 0.06620588898658752, 0.0029239787254482508, -0.004076057579368353, -0.014257616363465786, 0.01609819382429123, 0.022320449352264404, 0.004766274243593216, 0.01329611986875534, 0.0009614962618798018, -0.007698838133364916, -0.0080422293394804, -0.02214188501238823, -0.040080659091472626, 0.02380390092730522, -0.04343216121196747, 0.011970628052949905, -0.011022867634892464, 0.010912982746958733, 0.007836194708943367, -0.024820338934659958, 0.04362446069717407, 0.028817417100071907, -0.009951486252248287, 0.005116533488035202, -0.012307152152061462, 0.0024775697384029627, -0.04609687626361847, 0.002520493697375059, -0.01324804499745369, 0.010995396412909031, 0.007266164757311344, 0.0060883318074047565, 0.01899641938507557, -0.021345216780900955, 0.01716957613825798, 0.0021427629981189966, 0.017210783436894417, 0.012506319209933281, 0.003942134790122509, 0.009031197056174278, 0.011840139515697956, 0.011998100206255913, 0.013873017393052578, 0.0036090449430048466, 0.008117775432765484, 0.0025067580863833427, 0.023900050669908524, -0.027292758226394653, -0.03071293793618679, -0.034421566873788834, 0.0037704389542341232, 0.029064659029245377, 0.0032158615067601204, -0.0024432307109236717, 0.017567910254001617, 0.008303207345306873, 0.04197617992758751, -0.04104215279221535, 0.020644698292016983, 0.01178519707173109, 0.007382917683571577, 0.03675662726163864, -0.004024548456072807, 0.06049184873700142, -0.004337035119533539, 0.010301745496690273, 0.01778768002986908, 0.037443410605192184, 0.004096660763025284, 0.010734419338405132, 0.003856286872178316, 0.012959595769643784, -0.002774603432044387, 0.0048692915588617325, 0.04304756224155426, -0.003574705682694912, -0.03595995903015137, -0.017004748806357384, 0.0003603464865591377, -0.00846803467720747, 0.038871921598911285, 0.005277927499264479, -0.008049096912145615, -0.015699859708547592, 0.004749104846268892, 0.0353555902838707, -0.007430992554873228, 0.006407685577869415, -0.04318491742014885, 0.033075470477342606, 0.014601007103919983, 0.02344677224755287, -0.009147950448095798, -0.026880688965320587, 0.012726089917123318, -0.006448892876505852, 0.033542484045028687, -0.012554394081234932, -0.007671366445720196, 0.005374077241867781, 0.0015838934341445565, 0.01439497247338295, -0.0031076932791620493, 0.03642697259783745, 0.00797355081886053, 0.018721705302596092, -0.01306948158890009, -0.011833271943032742, 0.0005987889599055052, -0.024394534528255463, 0.023611601442098618, -0.01715584099292755, -0.014834513887763023, 0.028707530349493027, -0.019559580832719803, 0.0024518154095858335, 0.0353555902838707, -0.01238956581801176, 0.010033899918198586, 0.08669949322938919, -0.009896543808281422, 0.005954409018158913, 0.009965222328901291, 0.00562131917104125, 0.010617665946483612, -0.04170146584510803, 0.005408416502177715, -0.041426751762628555, -0.0047044637612998486, -0.021358951926231384, 0.007259296718984842, -0.0013572550378739834, 0.0006979432655498385, -0.00416877306997776, -0.008667201735079288, -0.018653027713298798, 0.04145422577857971, -0.007877401076257229, 0.0031025423668324947, 0.009951486252248287, 0.013385401107370853, 0.0016354020917788148, 0.02455936186015606, -0.01776020973920822, -0.01022619940340519, 0.020342513918876648, 0.0008816577028483152, 0.04258054867386818, 0.01825469359755516, -0.01682618446648121, 0.013982903212308884, 0.030328338965773582, 0.010246803052723408, -0.0014860267983749509, 0.01541141141206026, 0.009285306558012962, -0.03148213401436806, 0.03648191690444946, -0.04909125342965126, -0.006823189556598663, 0.00817271787673235, -0.037800539284944534, -0.04604193568229675, -0.020136479288339615, 0.002953167073428631, 0.007836194708943367, 0.02093314751982689, 0.00683692516759038, -0.010734419338405132, -0.00777438422665, 0.02792459912598133, -0.00635274313390255, -0.0019968217238783836, -0.023309417068958282, -0.005480528809130192, 0.024518154561519623, 0.033322714269161224, -0.02311711758375168, -0.0017306932713836432, 0.0035541022662073374, -0.004649521317332983, -0.031015122309327126, 0.03348753973841667, -0.007266164757311344, -0.009628698229789734, -0.02079579047858715, -0.015493825078010559, -0.018666762858629227, -0.01705969125032425, -0.0110640749335289, 0.011256374418735504, 0.025726892054080963, -0.015589974820613861, -0.031372249126434326, 0.01898268237709999, 0.010617665946483612, 0.0010894095757976174, -0.001623383373953402, -0.03376225382089615, 0.036234673112630844, 0.01958705298602581, -0.004367940127849579, 0.03128983452916145, -0.01825469359755516, 0.007856798358261585, 0.01232775580137968, 0.028020748868584633, -0.009457002393901348, 0.056920576840639114, -0.02457309700548649, -0.023515451699495316, 0.018062394112348557, -0.005854825489223003, -0.008900708518922329, 0.02575436420738697, -0.0009898260468617082, 0.023790163919329643, -0.008303207345306873, -0.017142103984951973, 0.002807225799188018, -0.019284868612885475, 0.028515232726931572, 0.0022612332832068205, -0.0017547307070344687, -0.020644698292016983, -0.019504638388752937, -0.0035678378771990538, -0.0030407318845391273, 0.017938772216439247, -0.002185686957091093, -0.004419448785483837, 0.035245705395936966, -0.01861182041466236, 0.004910498857498169, 0.002941148355603218, -0.03760823979973793, -0.031509604305028915, 0.00610550120472908, 0.00396273797377944, -0.003763571148738265, 0.0004979177028872073, -0.014133995398879051, 0.009752319194376469, 0.03843237832188606, -0.006359611172229052, -0.008708409033715725, -0.02225176990032196, 0.016839919611811638, 0.03362489864230156, 0.014285087585449219, 0.00416877306997776, 0.02493022382259369, -0.04002571478486061, -0.03653685748577118, 0.0021015561651438475, 0.004876159597188234, -0.0006687549757771194, -0.001768466318026185, 0.0049654413014650345, -0.006730473600327969, 0.012945860624313354, -0.026399940252304077, -0.0019641995895653963, -0.010603929869830608, 0.007245561107993126, -0.030767880380153656, 0.030383281409740448, -0.01766405999660492, -0.0003060477029066533, -0.03277328610420227, -0.004697596188634634, -0.007238693069666624, 0.05477781593799591, 0.0031592019367963076, -0.0013563964748755097, 0.02332315221428871, -0.020644698292016983, -0.023611601442098618, 0.0073966532945632935, -0.0114212017506361, 0.00018639721383806318, 0.00629436643794179, -0.039119161665439606, 0.03159201890230179, -0.01432629395276308, -0.0035644040908664465, 0.05051976069808006, 0.014024109579622746, -0.013873017393052578, 0.010411631315946579, 0.009312777779996395, 0.023666543886065483, 0.009003725834190845, -0.016784977167844772, -0.005030685570091009, -0.019435960799455643, 0.007939212024211884, 0.014614743180572987, -0.01185387559235096, 0.0022887045051902533, 0.0014534046640619636, -0.02118038944900036, -0.024133555591106415, -0.006479797884821892, -0.028515232726931572, 0.008811426348984241, 0.0053534735925495625, 0.015905896201729774, -0.010377291589975357, 0.024380797520279884, 0.01257499773055315, 0.022883610799908638, 0.0374983549118042, 0.005755241960287094, -0.011613501235842705, 0.03167443349957466, -0.02480660378932953, 0.016015781089663506, 0.029586613178253174, 0.01336479838937521, -0.019422223791480064, -0.03422926738858223, -0.021441366523504257, 0.022306712344288826, 0.010308613069355488, 0.016633884981274605, 0.02178475819528103, 0.02395499311387539, -0.002683604834601283, -4.477503534872085e-05, 0.026454882696270943, 0.018474463373422623, -0.022416599094867706, -0.0007649046019650996, 0.01824095845222473, -0.010150653310120106, 0.05282735079526901, 0.021949585527181625, -0.0228424035012722, -0.026894424110651016, -0.012018702924251556, 0.001153795514255762, -0.039970774203538895, 0.030383281409740448, -0.01167531218379736, 0.014669685624539852, -0.020342513918876648, 0.0001504484098404646, -0.032938115298748016, 0.028322933241724968, 0.021358951926231384, -0.03230627253651619, -0.031152479350566864, 0.0044503542594611645, -0.006644626148045063, 0.01135939173400402, -0.015122962184250355, -0.009511944837868214, -0.005892598535865545, -0.0028535835444927216, -0.0007717724656686187, 0.03335018455982208, 0.0167987123131752, -0.015136698260903358, 0.0408773273229599, 0.01777394488453865, -0.0024071745574474335, -0.004182508680969477, 0.015686124563217163, -0.027031781151890755, -0.02780097723007202, -0.010919850319623947, -0.009972089901566505, -0.014408708550035954, -0.019751880317926407, 0.005308832973241806, -0.014408708550035954, 0.026441147550940514, 0.021455101668834686, -0.016496527940034866, 0.007801855448633432, 0.01693606935441494, -0.02429838478565216, 0.03134477883577347, 0.0035231970250606537, -0.0043542045168578625, -0.014779571443796158, -0.010555854998528957, 0.0098622040823102, -0.004038284067064524, 0.028817417100071907, 0.01336479838937521, -0.012265944853425026, -0.011819535866379738, 0.018337106332182884, -0.007506538648158312, -0.023790163919329643, 0.020850732922554016, -0.019147511571645737, -0.03469628095626831, 0.018776647746562958, -0.008811426348984241, 0.025603272020816803, 0.035492949187755585, -0.019051361829042435, -0.03906422108411789, 0.005099364090710878, -0.013460947200655937, 0.004110396374017, 0.011304449290037155, 0.03203156217932701, -0.010713815689086914, 0.016620149835944176, -0.026303790509700775, 0.03420179709792137, -0.012746693566441536, -0.022677576169371605, -0.011483012698590755, -0.025232408195734024, -0.010782494209706783, -0.014916927553713322, -0.005487396381795406, 0.022430334240198135, 0.0037395337130874395, 0.043844230473041534, 0.010926717892289162, 0.0314546637237072, 0.00247928686439991, -0.028240518644452095, -0.013433475978672504, -0.013996638357639313, -0.012973331846296787, 0.005356907844543457, 0.017142103984951973, -0.0198205579072237, 0.014188937842845917, -0.031042594462633133, -0.006771680898964405, -0.014092788100242615, 0.006273763254284859, -0.005861693061888218, 0.02587798424065113, -0.04030042886734009, 0.010741286911070347, 0.012259077280759811, 0.012698618695139885, -0.049887921661138535, 0.011805800721049309, -0.01667509227991104, -0.016771242022514343, -0.013186234049499035, 0.026894424110651016, 0.00827573612332344, 0.02420223504304886, 0.00761642400175333, 0.030932707712054253, 0.037553295493125916, 0.01293212454766035, -0.005119967740029097, -0.02782844938337803, 0.010494044981896877, 0.0447782538831234, 0.00426835659891367, -0.004862423986196518, 0.0362621434032917, -0.023419301956892014, 0.0341193825006485, 0.002456966321915388, 0.011716518551111221, 0.004254620987921953, 0.040822383016347885, 0.015562503598630428, -0.012217869982123375, 0.00025475359871052206, -0.018886534497141838, 0.028927301988005638, -0.01655147224664688, -0.0014568385668098927, 0.03931146115064621, 0.00039211020339280367, 0.0031076932791620493, -0.02818557620048523, 0.02865258790552616, 0.008310074917972088, 0.00827573612332344, -0.020150214433670044, 0.028460288420319557, -0.008619126863777637, 0.014779571443796158, 0.03205903246998787, 0.024614304304122925, 0.0019985386170446873, -0.02019142173230648, -0.02659223973751068, -0.04148169606924057, 0.014765835367143154, -0.012787899933755398, -0.03046569600701332, -0.04527273774147034, 0.04543756693601608, 0.03219638764858246, -0.011510483920574188, 0.000625401793513447, 0.013110687956213951, 0.003856286872178316, -0.000621538667473942, 0.017870094627141953, 0.020534813404083252], [0.025190070271492004, -0.003675361629575491, 0.04117273539304733, 0.07116919010877609, -0.005971783772110939, -0.007564259693026543, 0.018993891775608063, 0.0358741357922554, 0.006449526641517878, -0.009873349219560623, 0.033789440989494324, -0.028273683041334152, -0.0034763021394610405, -0.04461827501654625, -0.009916780516505241, 0.06201969087123871, -0.003034752095118165, -0.02711551822721958, 0.0017263884656131268, 0.02374236471951008, 0.06387275457382202, -0.007307291962206364, 0.048527080565690994, 0.02962004952132702, -0.04473409056663513, -0.02889619581401348, -0.006322852335870266, 0.045226309448480606, -0.010184606537222862, -0.052609607577323914, 0.08941027522087097, -0.02710104174911976, 0.01777781918644905, -0.019051801413297653, 0.003346008714288473, 0.013760438188910484, -0.06294622272253036, 0.02543617971241474, 0.008932340890169144, 0.030691349878907204, -0.0009527709917165339, -0.012385117821395397, -0.037263933569192886, -0.012493696063756943, 0.014093410223722458, 0.01525881327688694, -0.009424560703337193, -0.01703949086368084, -0.010445193387567997, -0.004303303547203541, -0.0039196619763970375, 0.011451348662376404, 0.0016784332692623138, -0.07881306856870651, -0.021903779357671738, -0.017213214188814163, -0.019862515851855278, 0.012964200228452682, 0.018110793083906174, -0.015519400127232075, -0.015432537533342838, -0.03790092095732689, 0.0214984230697155, 0.017734389752149582, -0.005190023221075535, 0.010893981903791428, -0.0006659444188699126, -0.017763342708349228, -0.047108326107263565, 0.03900117799639702, 0.029909590259194374, 0.007397773675620556, 0.012775998562574387, 0.004328638780862093, -0.015635216608643532, -0.009149497374892235, -0.005874063819646835, -0.0024068099446594715, -0.03732183948159218, -0.02271449565887451, 0.004466170445084572, 0.027622215449810028, 0.04664506018161774, -0.02002176269888878, -0.020528459921479225, -0.023105375468730927, -0.02600078471004963, 0.005302220117300749, -0.0594717301428318, 0.027853848412632942, -0.005103161092847586, 0.027607738971710205, 0.004444454796612263, 0.009743056260049343, 0.024205630645155907, -0.0391169935464859, -0.0006333710043691099, -0.05617096275091171, 0.005095922388136387, 0.0189215075224638, 0.030228083953261375, -0.06225132569670677, -0.007137186825275421, -0.024133246392011642, 0.05585246533155441, 0.011161806993186474, 0.017329031601548195, 0.016967104747891426, -0.008107149042189121, -0.020629798993468285, -0.10041283071041107, -0.014998226426541805, -0.004889624193310738, 0.04985896870493889, -0.028085481375455856, 0.006239609327167273, -0.00862108450382948, -0.050785500556230545, 0.0030057979747653008, 0.01208833884447813, -0.02133917436003685, -0.01657622493803501, -0.03737974911928177, -0.027173426002264023, 0.03859582170844078, -0.0016512887086719275, 0.0033098161220550537, -0.019544020295143127, -0.05811088904738426, -0.05813984200358391, -0.006659443955868483, 0.04085424169898033, -0.0032338115852326155, -0.030054360628128052, -0.01182051282376051, -0.01977565325796604, -0.08448807895183563, -0.014477051794528961, -0.023206714540719986, -0.030314946547150612, 0.013094493187963963, -0.04418396204710007, -0.0234383475035429, -0.02805652655661106, -0.03691648319363594, 0.010756449773907661, 0.026464050635695457, 0.005805297754704952, -0.06798423826694489, 0.033847346901893616, -0.015620739199221134, -0.04282312095165253, 0.0027958806604146957, -0.05779239162802696, -0.010792641900479794, 0.03433956578373909, 0.010647871531546116, 0.03836418688297272, -0.018689874559640884, -0.028606655076146126, -0.026174509897828102, -0.005425275303423405, -0.007665599230676889, -0.022728972136974335, 0.006301137153059244, 0.008715185336768627, -0.08327200263738632, 0.007846562191843987, -0.06254086643457413, -0.02679702267050743, -0.016344591975212097, -0.04676087945699692, -0.018689874559640884, 0.06474138051271439, -0.014440859667956829, -0.021845871582627296, -0.058284610509872437, -0.05976127088069916, 0.006022453773766756, -0.016865765675902367, 0.03969607874751091, -0.015142996795475483, -0.030662396922707558, -0.06694188714027405, -0.04832439869642258, 0.03949339687824249, -0.048787664622068405, 0.004864289425313473, -0.00566414650529623, 0.03283395245671272, -0.032225918024778366, 0.0277959406375885, 0.04250462353229523, -0.02642061933875084, 0.039290718734264374, 0.012146246619522572, 0.01486793253570795, 0.01486793253570795, 0.001302934717386961, -0.017329031601548195, 0.03419479727745056, -0.021845871582627296, 0.07973960041999817, 3.845466926577501e-05, -0.05064072832465172, -0.030083313584327698, -0.05035118758678436, 0.010517578572034836, -0.00026759927277453244, -0.03454224765300751, -0.009308744221925735, -0.06607326865196228, -0.026304803788661957, 0.03842209652066231, -0.013695291243493557, 0.008020286448299885, -0.0937533900141716, 0.07945006340742111, -0.0015544734196737409, 0.01725664548575878, -0.029822727665305138, 0.020253395661711693, -0.002061170293018222, -0.0023832847364246845, 0.005960926413536072, 0.028606655076146126, 0.02532036416232586, -0.06288831681013107, 0.008165057748556137, -0.009214643388986588, 0.04435768723487854, 0.003279052209109068, -0.004632656462490559, -0.04537108168005943, 0.025305887684226036, -0.0008889815071597695, 0.013485373929142952, -0.0020647896453738213, -0.004531317390501499, -0.004285207483917475, 0.03170474246144295, -0.019211048260331154, 0.057763438671827316, 0.011393439956009388, -0.016605177894234657, 0.01808183826506138, -0.013195833191275597, -0.04650029167532921, 0.013984831981360912, 0.03381839394569397, 0.011625072918832302, -0.01819765381515026, 0.046268656849861145, 0.013651859946548939, -0.01342746615409851, -0.024422787129878998, -0.007140805944800377, 0.0047738077118992805, 0.008411167189478874, -0.0038183224387466908, -0.019066277891397476, -0.014013786800205708, -0.015519400127232075, -0.03639530763030052, -0.04033306613564491, 0.021252311766147614, 0.015968188643455505, -0.022569723427295685, -0.038190461695194244, 0.02993854321539402, -0.022048549726605415, -0.0260152630507946, 0.038190461695194244, -0.005950068589299917, -0.02695627138018608, 0.0015047085471451283, -0.0297358650714159, -0.013514327816665173, 0.02905544452369213, -0.03277604654431343, -0.03486074134707451, 0.009931257925927639, -0.01297867763787508, 0.011921852827072144, 0.0005234359414316714, 0.02757878415286541, 0.04612388834357262, -0.0051248762756586075, -0.009627239778637886, 0.04429978132247925, 0.011523733846843243, -0.056344687938690186, 0.013239264488220215, -0.05420208349823952, 0.0028139769565314054, 0.02517559379339218, 0.03103880025446415, -0.017690958455204964, 0.0198769923299551, 0.02437935583293438, 0.002106411149725318, 0.004444454796612263, -0.021411560475826263, 0.015229858458042145, -0.0397539846599102, -0.009677909314632416, 0.00946799200028181, 0.015360152348876, -0.05327555164694786, -0.010973605327308178, -0.03141520172357559, -0.0032374307047575712, -0.00027483777375891805, -0.03984084725379944, -0.0892365500330925, 0.008881671354174614, -0.001482088235206902, 0.01803840696811676, -0.02721685729920864, 0.009554854594171047, 0.03981189429759979, -0.02993854321539402, 0.0316757895052433, -0.009583808481693268, -0.025334840640425682, -0.03931967541575432, -0.000643776438664645, -0.061903875321149826, -0.05055386573076248, -0.032168008387088776, -0.02847636118531227, -0.0005637002177536488, 0.029489755630493164, 0.015635216608643532, -0.01929791085422039, 0.007249383721500635, 0.025812583044171333, -0.011429633013904095, 0.022164367139339447, 0.0074267275631427765, 0.02967795729637146, -0.011060467921197414, 0.019124185666441917, -0.02259867824614048, -0.01119800005108118, 0.018009452149271965, 0.0033333413302898407, 0.05269647017121315, -0.02621794119477272, 0.0685054138302803, -0.021368129178881645, -0.0004533127066679299, -0.008136102929711342, -0.008411167189478874, -0.04021725058555603, -0.005352890118956566, 0.015664169564843178, 0.020383689552545547, -0.0005198166472837329, 0.012363402172923088, 0.01934134215116501, -0.0025407227221876383, -0.0339631624519825, 0.007940663024783134, -0.006283040624111891, 0.025088731199502945, -0.025913923978805542, 0.027564307674765587, 0.03124147839844227, -0.0037025061901658773, 0.0011047800071537495, 0.04823753610253334, 0.013695291243493557, 0.00431054225191474, -0.0833878219127655, -0.01657622493803501, 0.019428204745054245, -0.0030003690626472235, -0.009279790334403515, 0.03196533024311066, 0.041085872799158096, -9.585391671862453e-05, -0.005247931461781263, -0.013825585134327412, 0.054288946092128754, 0.04965629056096077, -0.022555246949195862, -0.004505982622504234, -0.04476304352283478, 0.009344937279820442, 0.002964176470413804, -0.03755347430706024, -0.006460384465754032, -0.01389797031879425, -0.02332253009080887, -0.01494031772017479, 0.0513935349881649, 0.012225870974361897, 0.034368522465229034, 0.04207031428813934, 0.023727888241410255, -0.058284610509872437, -0.0591532364487648, 0.00870070792734623, -0.030604487285017967, -0.025827061384916306, -0.021570807322859764, 0.04841126129031181, -0.022149890661239624, -0.013318887911736965, 0.0190807543694973, 0.01997833140194416, 0.04513944685459137, -0.00672459090128541, -0.016735471785068512, -0.026304803788661957, -0.06578372418880463, 0.049627333879470825, -0.0019706888124346733, 0.002707208739593625, 0.033065587282180786, -0.04542899131774902, -0.006829549558460712, -0.031212523579597473, 0.0032139054965227842, 0.01677890308201313, 0.01630116067826748, -0.003912423271685839, -0.024292493239045143, -0.03213905543088913, -0.042388807982206345, 0.0290988739579916, -0.016330115497112274, -0.010807119309902191, 0.015461491420865059, -0.04285207390785217, 0.01960192807018757, 0.053623002022504807, -0.02684045396745205, 0.007918947376310825, -0.015114041976630688, -0.012747044675052166, 0.026710161939263344, 0.006413334049284458, -0.012804952450096607, 0.008280874229967594, 0.011074945330619812, 0.02879485674202442, -0.058226704597473145, 0.005519376136362553, -0.015128519386053085, 0.034889694303274155, -0.00038477289490401745, -0.00193630566354841, -0.024451741948723793, 0.07018475234508514, 0.019587451592087746, -0.02443726360797882, 0.02820129692554474, -0.05223320424556732, -0.026348235085606575, 0.02837502211332321, 0.04844021797180176, 0.07748118042945862, 0.03827732428908348, -0.012985915876924992, -0.050669681280851364, -0.01347813569009304, -0.04247567057609558, 0.01877673715353012, -0.009945734404027462, -0.032949771732091904, -0.0034527769312262535, 0.038885362446308136, -0.008874433115124702, -0.027405058965086937, -0.013984831981360912, 0.0055266148410737514, 0.024408310651779175, 0.011089421808719635, -0.022685540840029716, 0.007680076174438, -0.06555209308862686, 0.029533186927437782, -0.007947901263833046, 0.016474885866045952, 0.03711916133761406, -0.0024104290641844273, 0.020412644371390343, -0.031849514693021774, 0.012348925694823265, -0.002421286888420582, 0.05038014054298401, -0.017864681780338287, -0.0012043097522109747, -0.00013922851940151304, -0.02065875381231308, -0.02611660212278366, -0.0009337698575109243, 0.010466909036040306, 0.009931257925927639, -0.050148509442806244, -0.02207750454545021, 0.03367362171411514, 0.03407898172736168, -0.007962378673255444, 0.012182439677417278, -0.03260232135653496, -0.02721685729920864, -0.0041947257705032825, -0.04901929944753647, 0.023308053612709045, -0.00222946610301733, 0.02469785138964653, 0.03439747542142868, -0.01394863985478878, -0.019471634179353714, -0.029605571180582047, -0.03213905543088913, 0.022193320095539093, -0.030691349878907204, 0.008534221909940243, -0.006373522337526083, 0.01745932549238205, 0.035989951342344284, -0.013405750505626202, -0.03963816910982132, -0.05695272237062454, -0.01496927160769701, -0.0026239657308906317, 0.016055051237344742, -0.008613846264779568, -0.005258789286017418, 0.030141223222017288, -0.02474128268659115, -0.009156735613942146, 0.01132105477154255, -0.009308744221925735, -0.015606261789798737, -0.03723497688770294, -0.0108288349583745, -0.0010568248108029366, 0.01352880522608757, 0.03402107208967209, 0.024249061942100525, 0.007278338074684143, 0.012037668377161026, 0.0073796771466732025, -0.011530972085893154, 0.02721685729920864, 0.040767379105091095, 0.008143342100083828, 0.06810005009174347, -0.0017354366136714816, 0.00799857173115015, -0.03155997395515442, -0.003941377624869347, -0.039406534284353256, 0.02019548788666725, -0.012008714489638805, -0.003168664872646332, 0.012848383747041225, 0.02574019879102707, 0.012146246619522572, 0.011755365878343582, 0.04757159203290939, 0.03402107208967209, -0.005620715674012899, -0.052204251289367676, 0.028490837663412094, 0.0005003631231375039, -0.014267134480178356, 0.026724638417363167, -0.014238180592656136, 0.04178077355027199, 0.021368129178881645, -0.003322483506053686, -0.05672109127044678, 0.0063047562725842, -0.022367045283317566, -0.04939570277929306, -0.009721340611577034, -0.029287075623869896, -0.04183867946267128, 0.007882755249738693, 0.01266018208116293, 0.011936329305171967, 0.04896138980984688, 0.05055386573076248, -0.026666730642318726, -0.014361235313117504, -0.03051762655377388, -0.011422393843531609, 0.012812190689146519, 0.0067824991419911385, -0.018125269562005997, -0.00515021150931716, 0.013543282635509968, 0.008367735892534256, -0.005866825580596924, -0.011176284402608871, -0.014795547351241112, 0.001490231603384018, -0.019167616963386536, -0.013745960779488087, 0.0022602297831326723, -0.0017761533381417394, 0.003396678250283003, 0.022193320095539093, 0.01867539808154106, -0.01077816542237997, 0.03917490318417549, -0.016344591975212097, -0.03561354801058769, -0.025551997125148773, 0.017748866230249405, -0.00635542580857873, -0.01751723326742649, 0.006293898448348045, 0.0005103161092847586, 0.009163973852992058, -0.034310612827539444, -0.047368913888931274, -0.01625772938132286, 0.013767676427960396, 0.02485709823668003, -0.016069527715444565, -0.041288550943136215, 0.0019598309881985188, -0.0002639800077304244, 0.018574057146906853, -0.02689836360514164, -0.015953712165355682, -0.052725423127412796, 0.0002920292899943888, 0.0143901901319623, 0.003058277303352952, 0.029967498034238815, 0.008910625241696835, -0.017806774005293846, 0.009366652928292751, 0.037206023931503296, -0.021049633622169495, -0.041288550943136215, -0.009714102372527122, 0.018834644928574562, -0.009685147553682327, 0.040448885411024094, -0.00024905052850954235, -0.004972867202013731, 0.023829227313399315, -0.0014784689992666245, 0.054346852004528046, -0.03926176577806473, 0.014571152627468109, -0.021223358809947968, -0.0048208581283688545, 0.006587058771401644, -0.0012595035368576646, 0.02673911489546299, -0.029533186927437782, 0.024002952501177788, -0.012428549118340015, -0.009656193666160107, 0.011711935512721539, -0.011415155604481697, 0.016474885866045952, 0.017444847151637077, 0.011827751994132996, 0.017010536044836044, -0.008222965523600578, 0.022772403433918953, 0.03309454023838043, -0.018689874559640884, -0.009728578850626945, 0.021628715097904205, -0.01641697622835636, -0.042128220200538635, -0.017227692529559135, 0.00516468845307827, -0.016648609191179276, 0.03239964321255684, 0.011473063379526138, -0.01216796226799488, -0.0003442823945078999, -0.02123783528804779, 0.017864681780338287, -0.01349985133856535, 0.01402826327830553, -0.006492957938462496, 0.0059645455330610275, -0.01945715770125389, 0.029764819890260696, 0.003347818274050951, -0.008997487835586071, -5.790820796391927e-05, 0.004212822299450636, 0.02061532251536846, -0.043865468353033066, -0.12253376841545105, 0.005562807433307171, 0.02553752064704895, 0.009800964035093784, -0.050669681280851364, -0.029287075623869896, -0.02799861878156662, 0.008642800152301788, 0.025682291015982628, 0.0022204178385436535, 0.0025624381378293037, -0.016764426603913307, -0.0016485742526128888, -0.018110793083906174, 0.04956942796707153, -0.023365961387753487, 0.025392750278115273, -0.021657669916749, -0.0459212101995945, -0.011017036624252796, 0.009287028573453426, -0.03283395245671272, 0.016894720494747162, -0.0008713376009836793, -0.05877683311700821, 0.009670671075582504, 0.026174509897828102, -0.0007120899972505867, 0.04696355760097504, 0.02542170323431492, -0.025986308231949806, -0.0015363771235570312, -0.001552663859911263, -0.004353973548859358, 0.004017381928861141, -0.01588132604956627, -0.0016594320768490434, -0.020629798993468285, -0.017473801970481873, -0.042446717619895935, 0.005273266229778528, 0.012544365599751472, -0.018689874559640884, -0.0031903802882879972, -0.009431799873709679, -0.02306194417178631, -0.030633442103862762, -0.017213214188814163, 0.02726028859615326, 0.01945715770125389, -0.0014314185827970505, 0.012182439677417278, 0.014223704114556313, -0.0018313471227884293, -0.023988476023077965, 0.014057217165827751, 0.011277623474597931, 0.0075425440445542336, -0.006948985159397125, 0.013659099116921425, 0.03668484836816788, 0.04603702574968338, 0.03885640949010849, -0.0005541996797546744, 0.009996404871344566, 0.0031650455202907324, -0.010763688012957573, 0.007853800430893898, 0.0010468718828633428, 0.0355556383728981, 0.022323613986372948, 0.002395952120423317, -0.014730400405824184, 0.023785796016454697, -0.0031469492241740227, 0.016330115497112274, -0.008932340890169144, -0.005208119284361601, -0.023713411763310432, -0.012471980415284634, -0.009026441723108292, 0.022844787687063217, -0.007245764601975679, 0.025928400456905365, -0.0020032620523124933, 0.018950460478663445, 0.020774569362401962, 0.026333758607506752, -0.0063047562725842, -0.012319971807301044, -0.03952235355973244, -0.016474885866045952, -0.005642430856823921, 0.0007917137700133026, 0.018009452149271965, -0.018212132155895233, -0.011502018198370934, 0.006406095344573259, -0.07001102715730667, 0.014730400405824184, 0.0513935349881649, -0.018646443262696266, -0.020528459921479225, 0.029026489704847336, 0.021064110100269318, 0.04583434760570526, 0.030546579509973526, -0.02679702267050743, 0.005218977108597755, -0.02123783528804779, -0.011726411990821362, 0.0021661289501935244, 0.02239600010216236, -0.011907375417649746, -0.01169021986424923, -0.0051755462773144245, 0.011958044953644276, 0.006073123309761286, -0.016764426603913307, -0.032631274312734604, 0.010162890888750553, -0.0008509792387485504, -0.009924019686877728, -0.0052153579890728, 0.021802440285682678, 0.00809991080313921, -0.0050597297959029675, -0.015794463455677032, -0.01903732307255268, 0.006956223398447037, -0.03703229874372482, 0.04997478425502777, -0.01851614937186241, -0.022844787687063217, 0.026521960273385048, 0.013282694853842258, -0.0426783487200737, -0.003973950631916523, -0.00022710875782649964, 0.0013934163143858314, -0.00901920348405838, -0.005747389513999224, 0.0010106791742146015, -0.018125269562005997, -0.017488278448581696, 0.011509256437420845, 0.00820848811417818, 0.019428204745054245, 0.004158533178269863, -0.0295766182243824, -0.00023977617092896253, -0.03254441171884537, -0.03477387875318527, -0.029547663405537605, 0.0009401035495102406, -0.03019913099706173, 0.039609216153621674, -0.023004036396741867, -0.028128912672400475, 0.01363014429807663, 0.012146246619522572, -0.026406142860651016, -0.033470943570137024, -0.012283778749406338, -0.019674314185976982, 0.02673911489546299, -0.01072749588638544, 0.05588142201304436, 0.022902697324752808, 0.050148509442806244, 0.023105375468730927, -0.013398511335253716, -0.009656193666160107, 0.03549773246049881, -0.009685147553682327, 0.005678623914718628, 0.007448443211615086, -0.028809333220124245, 0.007549782749265432, 0.015794463455677032, -0.020731138065457344, 0.0639885738492012, 0.019428204745054245, -0.008823763579130173, 0.002184225246310234, -0.021845871582627296, 0.04673192277550697, -0.007090136408805847, -0.009663431905210018, -0.010922935791313648, -0.0064278109930455685, -0.0077814157120883465, 0.017444847151637077, 0.008490790612995625, 0.008020286448299885, -0.027462968602776527, 0.041027966886758804, -0.045168403536081314, 0.03323931246995926, 0.010553770698606968, 0.0065255314111709595, -0.0245820339769125, 0.017386939376592636, -0.024567557498812675, 0.008802047930657864, 0.00862832274287939, -0.025146638974547386, 0.011335532180964947, -0.006091219838708639, 0.025074254721403122, -0.01693815179169178, 0.03839314356446266, -0.019225524738430977, 0.01567864790558815, -0.007889993488788605, -0.006246848031878471, -0.015722079202532768, -0.0094607537612319, 0.0002886362199205905, 0.0026909220032393932, 0.005874063819646835, 0.0352371446788311, 0.004741234704852104, 0.00564966956153512, -0.004419120028614998, -0.011929091066122055, -0.010322137735784054, 0.024466218426823616, -0.022063028067350388, 0.025103207677602768, -0.023669980466365814, -0.00558452308177948, -0.006210655439645052, 0.000982629950158298, 0.008360497653484344, -0.04409709945321083, -0.004762950353324413, 0.003941377624869347, -0.01657622493803501, 0.014896886423230171, -0.00812886469066143, 0.006091219838708639, -0.0005885826540179551, 0.0342816598713398, -0.01577998697757721, 0.009670671075582504, -0.005903018172830343, -0.014983749017119408, -0.041346460580825806, -0.012725329026579857, -0.011364486068487167, 0.026188986375927925, -0.02338043972849846, -0.028447408229112625, 0.008237442933022976, -0.06381484866142273, -0.007441204972565174, 0.02475575916469097, 0.0025262455455958843, 0.06838959455490112, 0.013586713001132011, -0.042649395763874054, -0.0011934519279748201, 0.01216796226799488, -0.030083313584327698, 0.035526685416698456, 0.028968581929802895, -0.01861748844385147, -0.013818345963954926, -0.02191825769841671, 0.04586330056190491, -0.009714102372527122, 0.001730912597849965, 0.01132105477154255, 0.014824501238763332, 0.020209964364767075, -0.00018560033640824258, 0.015751032158732414, -0.004100624937564135, -0.006264944095164537, -0.0004908625269308686, 0.01977565325796604, 0.03755347430706024, 0.026174509897828102, -0.008266396820545197, -0.007585975341498852, 0.029489755630493164, -0.006445907521992922, -0.001387987402267754, 0.025523042306303978, -0.013593952171504498, 0.0062178936786949635, -0.004907720722258091, 0.0045457943342626095, -0.0056388117372989655, -0.01803840696811676, -0.0008251919643953443, 0.01003983523696661, -0.05785030126571655, -0.021165451034903526, 0.01161783467978239, -0.0208614319562912, -8.443061960861087e-05, 0.028273683041334152, -0.02238152176141739, -7.097148682078114e-06, 0.0071046133525669575, 0.04163600131869316, 0.008266396820545197, -0.02197616547346115, -0.03245754912495613, -0.006612393539398909, -0.04456036537885666, 0.052928101271390915, -0.01877673715353012, -0.02270001731812954, -0.009258074685931206, -0.030749259516596794, -0.00193630566354841, 0.004140437114983797, 0.0004404190694913268, 0.006485719233751297, -9.053812391357496e-05, 0.03361571580171585, -0.0271589495241642, 0.00996021181344986, -0.01481002476066351, -0.012529888190329075, 4.15649737988133e-05, 0.037987783551216125, 0.009663431905210018, 0.019992809742689133, 0.02049950510263443, 0.011429633013904095, 0.007129948120564222, 0.021150972694158554, 0.014658015221357346, 0.006999654695391655, 0.009743056260049343, -0.0006881123990751803, 0.007433966267853975, -0.03303663432598114, 0.018154222518205643, -0.024031907320022583, 0.036105766892433167, -0.011863944120705128, 0.03153102099895477, 0.011342770420014858, 0.008910625241696835, 0.015519400127232075, 0.013217548839747906, -0.001256789080798626, -0.013022108003497124, -0.008338782005012035, -0.015910280868411064, -0.01771991141140461, -0.016011619940400124, -0.025783630087971687, 0.033326175063848495, -0.013586713001132011, 0.007126329001039267, 0.0022276563104242086, -0.02002176269888878, -0.013753199949860573, 0.0026420620270073414, -0.003347818274050951, -0.001069492194801569, 0.006178081966936588, 0.03839314356446266, 0.05200156942009926, -0.019225524738430977, 0.04661610722541809, -0.030807167291641235, -0.021541854366660118, -0.007339865434914827, 0.0346001535654068, -0.019833561033010483, -0.03590308874845505, -0.014071694575250149, 0.0022873743437230587, -0.02727476693689823, -0.005577284377068281, 0.021208880469202995, 0.023713411763310432, 0.003901565447449684, 0.03486074134707451, -0.02726028859615326, -0.005182784516364336, -0.007082897704094648, 0.00943903811275959, 0.011306577362120152, 0.0019797368440777063, 0.02097724936902523, 0.01313792448490858, 0.04241776093840599, 0.006445907521992922, -0.00606950419023633, 0.03471597284078598, -0.02365550398826599, 0.015085088089108467, 0.02023891918361187, -0.006391618400812149, 0.023887135088443756, -0.017850205302238464, 0.016590701416134834, -0.0319942869246006, -0.04566062241792679, 0.0037043157499283552, 0.0041295792907476425, 0.04531317204236984, -0.01813974604010582, -0.00998916570097208, 0.01735798642039299, 0.016967104747891426, 0.059066373854875565, 0.02904096618294716, -0.012790475971996784, -0.019572975113987923, 0.013912446796894073, 0.028751425445079803, 0.02479919046163559, 0.0054795644246041775, -0.01137896254658699, -0.010271468199789524, -0.025363795459270477, 0.010676826350390911, -0.024408310651779175, -0.018863599747419357, 0.018805690109729767, 0.04351801797747612, 0.032225918024778366, 8.601404988439754e-05, -0.027462968602776527, 0.024842621758580208, -0.017184261232614517, 0.0024086195044219494, 0.010097743943333626, -0.009482469409704208, -0.021614238619804382, -0.013992071151733398, -0.022526293992996216, 0.02071666158735752, 0.018574057146906853, -0.024075336754322052, -0.018327947705984116, 0.02301851287484169, 0.010191844776272774, -0.005114018451422453, 0.08686231076717377, -0.023192238062620163, -0.018993891775608063, 0.010655110701918602, 0.02737610600888729, -0.02338043972849846, 0.011053229682147503, 0.008831001818180084, -0.011516494676470757, -0.01661965623497963, -0.039088040590286255, -0.0015237097395583987, 0.010061550885438919, 0.016055051237344742, -0.003127043368294835, -0.031588926911354065, 0.0018150603864341974, 0.06642071157693863, -0.012131770141422749, -0.018892552703619003, 0.007846562191843987, -0.008932340890169144, -0.0063337101601064205, 0.014339519664645195, -0.026652252301573753, -0.023525210097432137, 0.04615284129977226, -0.03674275800585747, -0.0037640335503965616, 0.04418396204710007, -0.02039816603064537, 0.016909196972846985, -0.0011427822755649686, 0.044068146497011185, -0.02002176269888878, -0.0003404369344934821, -0.016214298084378242, -0.0384800061583519, 0.02653643675148487, -0.005374605767428875, 0.002661967882886529, 0.024263540282845497, 0.010452431626617908, -0.03480283170938492, 0.021368129178881645, 0.009250836446881294, 0.01677890308201313, -0.004017381928861141, -0.010264229960739613, -0.019167616963386536, -0.00563519261777401, 0.008403928950428963, -0.03937758132815361, -0.011813274584710598, 0.017184261232614517, -0.023626549169421196, -0.008765854872763157, 0.029373938217759132, -0.006579820066690445, -0.009344937279820442, -0.008295350708067417, 0.002707208739593625, -0.020904863253235817, 9.121673792833462e-05, 0.014708684757351875, -0.01877673715353012, 0.0038979463279247284, -0.0019779272843152285, 0.011031514033675194, -0.005056110676378012, -0.019225524738430977, 0.04629761353135109, 0.03778510540723801, -0.002300041727721691, -0.02956213988363743, 0.03292081505060196, -0.0452842190861702, -0.012899053283035755, 0.005541091784834862, -0.04705042019486427, 0.03040180914103985, 0.007115471176803112, -0.009764771908521652, -0.000495386600960046, -0.0342816598713398, -0.004513220861554146, 0.05006164684891701, 0.034165844321250916, -0.02374236471951008, 0.028925150632858276, -0.008454598486423492, -0.022367045283317566, 0.014998226426541805, 0.008657277561724186, -0.01997833140194416, 0.020890386775135994, -0.020369213074445724, 0.006970700807869434, 0.016605177894234657, 0.0015580927720293403, 0.03668484836816788, 0.0013997500063851476, -0.005617096088826656, 0.024610988795757294, -0.02505977638065815, -0.009670671075582504, -0.029229167848825455, 0.026290327310562134, -0.03150206431746483, 0.005454229190945625, 0.0006550865946337581, 0.012862861156463623, 0.015273289754986763, 0.024886053055524826, 0.021483944728970528, 0.016373546794056892, 0.0006559914327226579, -0.01305830106139183, -0.002886362373828888, -0.022772403433918953, -0.00010037799802375957, 0.008338782005012035, -0.015548354014754295, 0.011024274863302708, 0.019312387332320213, 0.008896148763597012, -0.003503446700051427, -0.021324697881937027, -0.00998916570097208, 0.019934900104999542, 0.0003863563179038465, 0.02239600010216236, 0.012862861156463623, -0.013384034857153893, 0.0027633074205368757, 0.01803840696811676, 0.0036572653334587812, -0.04207031428813934, 0.01604057289659977, 0.022453907877206802, -0.0052877431735396385, -0.0117987971752882, -0.014701446518301964, 0.03098089061677456, -0.014694208279252052, 0.006178081966936588, -0.018574057146906853, 0.013463658280670643, -0.0036663133651018143, 0.008693469688296318, -0.00625408673658967, 0.00996021181344986, -0.003364105010405183, 0.017734389752149582, 0.0012821239652112126, 0.024871574714779854, 0.031009845435619354, 0.0026438715867698193, -0.0005370081635192037, 0.0016368116484954953, -0.002756068715825677, 0.03234173357486725, -0.007082897704094648, -0.040130387991666794, 0.016634132713079453, -0.04374965280294418, 0.02380027435719967, 0.0005220787134021521, 0.007774177007377148, 0.0044046430848538876, -0.003467253874987364, -0.03367362171411514, 0.03309454023838043, -0.0014857074711471796, -0.037611380219459534, -0.012421310879290104, -0.028722470626235008, 0.019008370116353035, 0.008686231449246407, -0.00656896224245429, -0.009214643388986588, -0.00291712605394423, 0.012327210046350956, -0.02988063544034958, -0.016952628269791603, -0.032631274312734604, 0.012211393564939499, 0.0008211202803067863, 0.03234173357486725, 0.00998916570097208, -0.016967104747891426, -0.008584891445934772, 0.02836054563522339, 0.03917490318417549, 0.03286290913820267, -0.013521566987037659, -0.004346734844148159, -0.052928101271390915, 0.008157818578183651, -0.0003963093040511012, 0.0002734805748332292, -0.016590701416134834, -0.010944651439785957, 0.026493005454540253, 0.02019548788666725, -0.03575832024216652, 0.01845824159681797, 0.0384800061583519, -0.003992047160863876, 0.015765510499477386, 0.020485028624534607, 0.011958044953644276, -0.001778867794200778, -0.0050126793794333935, -0.0012386927846819162, 0.019587451592087746, -0.01583789475262165, 0.042186129838228226, 0.01782125048339367, -0.017053967341780663, 0.0065436274744570255, -0.02364102564752102, 0.02275792509317398, -0.0013282694853842258, -0.010495862923562527, 0.019891468808054924, 0.007296434137970209, -0.018429286777973175, -0.015953712165355682, -0.027448490262031555, 0.03103880025446415, -0.018472718074917793, -0.030807167291641235, -0.017082922160625458, -0.00175624736584723, 0.00823020376265049, -0.04227299243211746, -0.04705042019486427, -0.0001333472173428163, -0.00956933107227087, -0.001934496103785932, 0.009301505982875824, 0.026188986375927925, -0.004542175214737654, -0.010148413479328156, 0.0017897256184369326, 0.01051033940166235, -0.0036228823009878397, -0.004285207483917475, -0.00294969929382205, -0.01226930133998394, 0.017763342708349228, 0.01604057289659977, 0.016532793641090393, -0.0171408299356699, 0.014781069941818714, 0.02417667768895626, -0.024393832311034203, 0.004715899936854839, -0.017994975671172142, -0.06584163010120392, 0.04644238203763962, 0.018284516409039497, -0.003414774779230356, 0.0015960950404405594, 0.03775615245103836, -0.01407893281430006, -0.004252634011209011, 0.0035722125321626663, 0.008034763857722282, -0.006188939791172743, 0.025769153609871864, 0.012631228193640709, -0.0403909757733345, -0.029967498034238815, 0.023250145837664604, 0.009185689501464367, 0.014658015221357346, 0.009033680893480778, -0.007557020988315344, 0.008534221909940243, -0.01258055865764618, 0.008925102651119232, 0.012674659490585327, 0.029706910252571106, -0.003923281095921993, -0.024610988795757294, -0.007918947376310825, 0.026970747858285904, 0.008657277561724186, -0.000967248051892966, 0.026811501011252403, -0.0171408299356699, 0.027448490262031555, -0.008237442933022976, 0.031154615804553032, -0.026406142860651016, 0.018863599747419357, 0.0016069527482613921, 0.004209202714264393, -0.01250817347317934, -0.008852717466652393, -0.010647871531546116, 0.005251550581306219, 0.014694208279252052, 0.013659099116921425, 0.014571152627468109, 0.0035631645005196333, 0.0090481573715806, -0.019934900104999542, -0.021122019737958908, -0.020542936399579048, -0.03732183948159218, 0.009026441723108292, -0.014187511056661606, -0.002511768601834774, -0.0026493004988878965, 0.010604440234601498, 0.013492612168192863, 0.020586367696523666, 0.002709018299356103, 0.000628394540399313, 0.027072086930274963, -0.030604487285017967, -0.02018101140856743, 0.008881671354174614, 0.0076366448774933815, -0.032631274312734604, -0.0022041311021894217, 0.005942829884588718, 0.016185345128178596, -0.0072168102487921715, 0.02453860267996788, -0.010980844497680664, 0.009185689501464367, 0.015548354014754295, 0.03842209652066231, -0.006015215069055557, 0.015924757346510887, -0.013203071430325508, 0.02653643675148487, -0.01176984328776598, 0.0063843801617622375, 0.02710104174911976, -0.0023688075598329306, 0.05758971348404884, 0.040506791323423386, 0.016069527715444565, 0.018429286777973175, 0.005841490346938372, -0.006377141457051039, 0.008744139224290848, -0.02133917436003685, -0.0114006781950593, -0.009721340611577034, 0.0013056491734459996, 0.01929791085422039, -0.025711243972182274, 0.044010236859321594, -0.025551997125148773, -0.023887135088443756, 0.00012610870180651546, -0.026464050635695457, 0.0017182450974360108, 0.005519376136362553, 0.035787273198366165, -0.04531317204236984, -0.002233085222542286, -0.005045252852141857, -0.0014006547862663865, 0.009547615423798561, 0.01887807622551918, 0.033789440989494324, -0.016909196972846985, -0.015475968830287457, -0.052406929433345795, 0.0044806478545069695, 0.007470158860087395, -0.020485028624534607, -0.037929877638816833, 0.028505316004157066, -0.0316757895052433, 0.011002559214830399, -0.017806774005293846, -0.002645681379362941, 0.00917121209204197, -0.002318138023838401, 0.0017689147498458624, 0.039985619485378265], [0.003108416683971882, 0.03704813867807388, 0.03525641933083534, 0.026167776435613632, -0.005617185495793819, 0.03028584085404873, 0.010605824179947376, 0.05655476078391075, -0.02739597111940384, -0.01471666432917118, -0.021876318380236626, -0.039360035210847855, -9.301769750891253e-05, -0.014218161813914776, 0.02027243934571743, 0.051786474883556366, -0.018596315756440163, 0.011198247782886028, 3.8945516280364245e-05, 0.014297633431851864, 0.0479140505194664, 0.05300022289156914, 0.028927601873874664, -0.022223101928830147, -0.03537201136350632, -0.014088117517530918, -0.012578160502016544, 0.05297132208943367, 0.05406947433948517, -0.05889555811882019, 0.04522646963596344, -0.02943332865834236, 0.008041064254939556, -0.0038182411808520555, -0.008763532154262066, -0.02027243934571743, -0.008814104832708836, -0.03060372732579708, 0.00765815656632185, 0.033262405544519424, 0.01288882177323103, 0.031412892043590546, -0.0406893752515316, -0.015879837796092033, 0.009189787320792675, 0.0186541136354208, 0.010555251501500607, -0.04953237622976303, 0.020705921575427055, 0.003401016118004918, -0.006397450342774391, 0.019636668264865875, 0.010519128292798996, -0.03297341987490654, -0.012368644587695599, -0.029650069773197174, 0.0038001795765012503, 0.011646177619695663, -0.015200718306005001, 0.012007411569356918, 0.028335178270936012, -0.045688848942518234, -0.003697227919474244, 0.03190416842699051, 0.012997191399335861, 0.02241094410419464, 0.019564421847462654, 0.0007752980454824865, -0.043492548167705536, 0.010266263969242573, 0.0853089690208435, 0.01827842928469181, 0.03372478485107422, 0.0071560414507985115, 0.004118065349757671, -0.056150179356336594, 0.01139331329613924, -0.002203526208177209, -0.02433270774781704, -0.004280620254576206, -0.021124951541423798, 0.03277112916111946, -0.015157369896769524, -0.022671032696962357, 0.008611813187599182, -0.0695880800485611, -0.04456179961562157, -0.0066719879396259785, -0.07502103596925735, 0.027526015415787697, -0.03100830875337124, -0.0011848468566313386, 0.0417875237762928, 0.016804596409201622, 0.02340794913470745, -0.026066631078720093, -0.01306221354752779, -0.04470629245042801, -0.015460805967450142, -0.00251779961399734, -0.002718284260481596, -0.02876865863800049, 0.0401402972638607, 0.006393838208168745, 0.03837747871875763, 0.024014823138713837, 0.014391554519534111, -0.0035148048773407936, 0.029303284361958504, -0.0351119227707386, -0.08172553032636642, -0.006068727467209101, -0.017194729298353195, 0.06918349862098694, -0.0236824881285429, 0.01606767810881138, -0.0017321159830316901, -0.01718027889728546, 0.04670030251145363, 0.012390319257974625, -0.007249962072819471, -0.018596315756440163, 0.011602829210460186, -0.006975424475967884, -0.0101723438128829, -0.008525117300450802, -0.017295874655246735, 0.021081604063510895, -0.05693044513463974, -0.03872426226735115, 0.0026640992145985365, -0.027381520718336105, 0.0020500016398727894, -0.030141348019242287, -0.039215538650751114, -0.02505517564713955, -0.062363401055336, -0.03716373071074486, -0.0066719879396259785, 0.0014413228491321206, 0.04606453329324722, -0.004638242069631815, 0.04652691259980202, 0.008763532154262066, -0.06230560317635536, -0.006718948483467102, 0.009731638245284557, 0.02819068543612957, 0.012607059441506863, -0.01211578119546175, -0.016154374927282333, -0.03635456785559654, 0.024000372737646103, -0.041007257997989655, -0.013813580386340618, 0.0040819416753947735, 0.0264278631657362, 0.01772935502231121, -0.012000186368823051, -0.025488656014204025, -0.0010087453993037343, -0.004612955264747143, 0.009124765172600746, 0.008749082684516907, 0.04589113965630531, 0.025112973526120186, -0.06247899681329727, 0.013524592854082584, -0.06577344983816147, -0.05386718362569809, -0.051064006984233856, -0.0013401773758232594, -0.07380728423595428, 0.07502103596925735, -0.006104851141571999, -0.023104513064026833, -0.007383618503808975, -0.026586806401610374, 0.007405292708426714, -0.028970949351787567, 0.000914373027626425, -0.017917195335030556, -0.04551545903086662, -0.014788911677896976, -0.03855086863040924, 0.0067911953665316105, -0.010230140760540962, 0.017324771732091904, 0.025387510657310486, 0.02816178649663925, -0.02639896608889103, 0.028421875089406967, -0.007715953513979912, 0.01900089718401432, -0.027511565014719963, -0.003568989923223853, -0.010685295797884464, 0.0007044058875180781, 0.035574302077293396, 0.00879243016242981, 0.024549448862671852, -0.05022594705224037, 0.09230245649814606, 0.020214643329381943, -0.059184543788433075, -0.005851987283676863, -0.0034353332594037056, -0.015229616314172745, 0.0075208875350654125, 0.004804409574717283, 0.01397252269089222, -0.04987916350364685, 0.02888425439596176, 0.023451298475265503, 0.008669611066579819, 0.020041251555085182, -0.07328711450099945, 0.04811634123325348, -0.024274909868836403, 0.03985131159424782, -0.019564421847462654, 0.04589113965630531, 0.011191022582352161, -0.008770756423473358, 0.0186541136354208, 0.0462668240070343, 0.010425207205116749, -0.054878637194633484, 0.06276798248291016, -0.02637006714940071, 0.015229616314172745, -0.012549261562526226, -0.043665941804647446, -0.050341539084911346, -0.006989873945713043, 0.011501683853566647, 0.01954997330904007, 0.013286178931593895, 0.029967954382300377, 0.011234370991587639, 0.018509618937969208, 0.006372164003551006, 0.011790670454502106, 0.0206192247569561, 0.0059820315800607204, -0.019694466143846512, -0.034476153552532196, -0.016920190304517746, -0.0114077627658844, -0.042221006006002426, 0.0033666989766061306, 0.0417875237762928, 0.03184637054800987, -0.03135509416460991, -0.04271228238940239, -0.0008764434605836868, -0.055745597928762436, 0.015374110080301762, 0.0038615891244262457, -0.009847233071923256, 0.022295350208878517, -0.04629572108387947, -0.029678968712687492, 0.007394455838948488, -0.04525537043809891, -0.03655685856938362, -0.01566309668123722, 0.005331810563802719, 0.0013744945172220469, 0.030921611934900284, -0.04271228238940239, -0.01858186535537243, 0.012057984247803688, -0.03213535621762276, -0.014673316851258278, 0.016992436721920967, -0.028277380391955376, -0.0031210598535835743, 0.010128995403647423, 0.02440495416522026, -0.05187317356467247, -0.029216589406132698, 0.047278277575969696, -0.010201241821050644, 0.013156134635210037, 0.006357714533805847, 0.01741146855056286, 0.0009897805284708738, -0.0031770511996001005, 0.034302759915590286, 0.019708914682269096, -0.08080077171325684, -0.03066152334213257, -0.03366699069738388, 0.04577554762363434, -0.010511903092265129, 0.024896232411265373, -0.053953878581523895, -0.014051994308829308, 0.01745481602847576, 0.005367934238165617, 0.010352960787713528, 0.028479671105742455, -0.036845847964286804, -0.04054487869143486, 0.013502919115126133, 0.042943473905324936, -0.017021335661411285, -0.022121956571936607, 0.01686239242553711, -0.04412832111120224, -0.02736707217991352, -0.009298157878220081, -0.030748220160603523, -0.06294137239456177, -0.012231376022100449, 0.04594893753528595, 0.020575877279043198, 0.008127760142087936, -0.004865819122642279, -0.013575165532529354, 0.019535522907972336, 0.05253784358501434, -0.050543833523988724, -0.016400013118982315, -0.023971473798155785, 0.017281424254179, -0.016949089244008064, -0.07877786457538605, 0.0021872706711292267, 0.005122295115143061, -0.010685295797884464, 0.02460724487900734, 0.007091019302606583, -0.024549448862671852, -0.00944987591356039, 0.0562368780374527, -0.0031373153906315565, 0.02502627670764923, 0.01221692655235529, 0.024867333471775055, -0.05028374493122101, 0.00014505794388242066, -0.016616754233837128, -0.030892712995409966, 0.010338511317968369, 0.03045923262834549, 0.023465747013688087, -0.020330237224698067, 0.013856927864253521, -0.03962012380361557, 0.0049597397446632385, -0.0259221363812685, -0.005064497701823711, -0.03996690735220909, 0.014080893248319626, 0.02264213375747204, -0.01548970490694046, -0.026789097115397453, -0.007867671549320221, -0.015128470957279205, -0.005776128266006708, 0.0073041473515331745, -0.014788911677896976, 0.003529254114255309, 0.033406902104616165, -0.028681963682174683, 0.051844272762537, 0.022916670888662338, -0.02453499846160412, 0.005071722436696291, 0.016573406755924225, -0.018596315756440163, -0.017353670671582222, -0.06531106680631638, 0.002696610288694501, 0.03499633073806763, 0.002588240196928382, 0.004938066005706787, -5.101016085973242e-06, 0.031615182757377625, -0.003323350800201297, -0.009406527504324913, -0.012101331725716591, 0.059011150151491165, 0.019665567204356194, -0.04300127178430557, -0.017946094274520874, -0.05297132208943367, 0.013329526409506798, 0.03158628195524216, -0.004060267936438322, -0.0468158982694149, 0.006733397953212261, -0.0446195974946022, 0.01758486032485962, 0.04126734659075737, -0.03976461663842201, 0.037539415061473846, 0.03886875510215759, -0.00788212101906538, -0.03600778430700302, -0.04337695240974426, -0.017223626375198364, -0.04181642457842827, 0.025532003492116928, -0.03097940981388092, -0.024766188114881516, -0.0440705232322216, 0.040255893021821976, 0.03149958699941635, -0.03230874985456467, 0.05334700644016266, 0.005794189870357513, 0.023003367707133293, 0.0008638002909719944, -0.04525537043809891, 0.048405326902866364, 0.01686239242553711, -0.044937483966350555, 0.05418507009744644, 0.005909784696996212, -0.004869431257247925, -0.0501103512942791, -0.030372537672519684, 0.05190207064151764, 0.013170584104955196, -0.017353670671582222, 0.021312793716788292, -0.06444410979747772, -0.010735868476331234, 0.025633148849010468, 0.03736602142453194, 0.014796135947108269, -0.05707493796944618, -0.0025304427836090326, 0.01758486032485962, 0.032886724919080734, -0.0206192247569561, -0.04164303094148636, 0.02358134090900421, -0.03855086863040924, 0.002380530582740903, -0.00011661078315228224, 0.04542876034975052, 0.033233508467674255, 0.021587330847978592, -0.017989443615078926, -0.03892655298113823, -0.01221692655235529, 0.011400538496673107, 0.0146299684420228, -0.03687474504113197, 0.018350675702095032, 0.000599648104980588, 0.056150179356336594, -0.018596315756440163, -0.0038037917111068964, 0.026066631078720093, -0.09172448515892029, -0.005371546372771263, 0.013495693914592266, 0.05548550933599472, 0.019810061901807785, 0.006921239197254181, -0.03418716415762901, -0.02326345629990101, -0.05152638629078865, 0.019593320786952972, 0.011277718469500542, 0.01982451044023037, -0.016327766701579094, -0.0122530497610569, 0.018162835389375687, 0.001725794398225844, -0.06883671134710312, -0.05308691784739494, -0.051988765597343445, 0.04109395667910576, -0.005407670047134161, -0.0036845847498625517, 0.0010918291518464684, -0.048463124781847, 0.016197722405195236, 0.023118961602449417, 0.024910682812333107, 0.033955976366996765, 0.03707703575491905, -0.030574828386306763, 0.025994382798671722, -0.01772935502231121, -0.0035220293793827295, 0.047653961926698685, -0.017700456082820892, 0.00518009252846241, 0.0029043196700513363, -0.004291457589715719, -0.017498165369033813, 0.015749793499708176, 0.014955079182982445, 0.033233508467674255, -0.04632462188601494, 0.01018679328262806, 0.0892391949892044, -0.016053229570388794, 0.01858186535537243, -0.0035039677750319242, -0.0029458615463227034, -0.01907314360141754, 0.042452193796634674, -0.04447510465979576, 0.019217638298869133, -0.009124765172600746, 0.027728306129574776, 0.010663621127605438, -0.010201241821050644, -0.0259221363812685, 0.003422690089792013, -0.03349359706044197, 0.021327242255210876, -0.028970949351787567, -0.008662385866045952, -0.03297341987490654, 0.036990340799093246, 0.014882831834256649, -0.00613374961540103, -0.04146963730454445, -0.013192257843911648, -0.04210541024804115, 0.016876842826604843, 0.04285677522420883, -0.012491464614868164, -0.004454012494534254, 0.042452193796634674, 0.007463090121746063, 0.012903271242976189, 0.0024256848264485598, -0.03817518800497055, 0.006184322293847799, 0.002116830088198185, 0.024144865572452545, -0.012505914084613323, -0.005638859234750271, -0.0018477108096703887, 0.008669611066579819, 0.01713693141937256, 0.014030320569872856, 0.019680017605423927, 0.0017375345341861248, 0.01054802630096674, 0.0289853997528553, -0.011472784914076328, 0.03996690735220909, -0.04985026270151138, 0.02213640697300434, -0.010302388109266758, -0.009081417694687843, -0.015229616314172745, 0.039909109473228455, -0.02788724936544895, -0.031210599467158318, 0.01810503751039505, 0.025185219943523407, 0.024665042757987976, -0.0047827353700995445, 0.015619749203324318, 0.06987706571817398, 0.02236759662628174, -0.028999848291277885, 0.02298891916871071, 0.028595266863703728, -0.02044583298265934, 0.03170187771320343, -0.008575689978897572, 0.042452193796634674, 0.009298157878220081, 0.0033685050439089537, -0.07294032722711563, 0.017960544675588608, -0.01989675685763359, -0.05603458359837532, -0.004865819122642279, -0.014745563268661499, -0.004063880071043968, -0.009153664112091064, 0.006205996498465538, 0.023668037727475166, 6.355457298923284e-05, 0.034331660717725754, 0.002487094607204199, 0.002978372620418668, -0.04522646963596344, 0.009579920209944248, 0.02530081383883953, -0.018321778625249863, 0.011920714750885963, 0.025488656014204025, -0.005844762548804283, 0.046584710478782654, 0.020359136164188385, -0.013315077871084213, 0.003969959449023008, 0.008265028707683086, -0.057219430804252625, -0.012281948700547218, 0.017469266429543495, 0.026485661044716835, 0.022107508033514023, 0.030141348019242287, 0.0389554500579834, -0.019217638298869133, 0.031615182757377625, 0.028147336095571518, -0.0101723438128829, -0.014853933826088905, 0.03462064638733864, -0.01127049420028925, -0.01139331329613924, 0.031095003709197044, 0.015561951324343681, -0.02447720244526863, -0.0009446263429708779, -0.0009446263429708779, -0.01569199562072754, 0.0021746275015175343, 0.03534311428666115, -0.024087069556117058, -0.021399490535259247, -0.00851789303123951, -0.018018340691924095, 0.020431382581591606, 0.005812251474708319, -0.016053229570388794, -0.02017129398882389, -0.008908024989068508, 0.0067911953665316105, 0.007296922616660595, 0.04019809514284134, 0.039157744497060776, -0.004659915808588266, 0.03762611001729965, 0.029794562608003616, 6.987615779507905e-05, -0.009283708408474922, 0.016197722405195236, 0.04340585321187973, -0.0037748930044472218, 0.036296769976615906, -0.024188214913010597, -0.008857452310621738, 0.005906172562390566, 0.014059219509363174, -0.0019976228941231966, -0.022425394505262375, 0.0037098710890859365, -0.021601781249046326, 0.024072619155049324, 0.05548550933599472, 0.00436370400711894, 0.020864862948656082, -0.01638556458055973, 0.007903795689344406, -0.010584150440990925, 0.030488131567835808, 0.018292879685759544, 0.0015533053083345294, 0.02388477884232998, -0.0038868754636496305, 0.005974806845188141, 0.0367591492831707, -0.016168825328350067, -0.012773226946592331, 0.05421396717429161, 0.02928883582353592, -0.00684176804497838, 0.005714718718081713, -0.010251814499497414, 0.004746612161397934, -0.055023130029439926, -0.019940104335546494, 0.029548924416303635, -0.004392602946609259, 0.02116830088198185, -0.007174103055149317, -0.01683349534869194, -0.035603202879428864, 0.04522646963596344, -0.019232086837291718, 0.004034981597214937, -0.018220633268356323, -0.019766712561249733, -0.007672605570405722, 0.02788724936544895, -0.025560902431607246, 0.006715336348861456, 0.005436568520963192, 0.03352249413728714, 5.4100404668133706e-05, -0.039157744497060776, -0.10784996300935745, 0.02894205041229725, 0.026081079617142677, -0.0008064544526860118, -0.031123902648687363, -0.03499633073806763, -0.03779950365424156, 0.002329957904294133, 0.027554914355278015, 0.06872111558914185, -0.02911544404923916, -0.022699931636452675, -0.03586329147219658, -0.020330237224698067, 0.017642658203840256, -0.02082151547074318, 0.0008981174905784428, 0.005219828337430954, -0.023523544892668724, 0.008113310672342777, -0.002570178359746933, -0.028898702934384346, 0.021876318380236626, -0.006177098024636507, -0.06427071243524551, 0.019463276490569115, 0.023191209882497787, -0.01132106687873602, 0.018119486048817635, 0.010634723119437695, 0.014059219509363174, 0.015128470957279205, 0.0037785053718835115, -0.006274630781263113, 0.0075497860088944435, -0.010793665423989296, 0.028103988617658615, -0.033262405544519424, -0.039157744497060776, -0.02199191227555275, 0.005671370308846235, 0.0020644511096179485, -0.04499528184533119, -0.010519128292798996, -0.03436055779457092, -0.005577449686825275, -0.04635351896286011, -0.003292646026238799, -0.014499924145638943, -0.0119785126298666, 0.029491126537322998, -0.013242830522358418, 0.01392195001244545, -0.0024961254093796015, -0.014290409162640572, 0.009211461991071701, -0.016443362459540367, 0.014319307170808315, 0.002779694041237235, 0.016197722405195236, 0.05259564146399498, -0.02938998118042946, 0.029028747230768204, -0.00518009252846241, 0.024419404566287994, 0.024621695280075073, -0.01638556458055973, 0.03277112916111946, -0.008633487857878208, 0.0019795610569417477, 0.05354929715394974, 0.04031369090080261, 0.012556486763060093, 0.014312082901597023, 0.0040530432015657425, 0.013799130916595459, 0.012180803343653679, -0.004334805533289909, -0.04196091741323471, -0.0007590425084345043, -0.02946222759783268, 0.024462752044200897, -0.04181642457842827, 0.025069624185562134, -0.010389083996415138, 0.015330761671066284, 0.028306279331445694, 0.020041251555085182, -0.031239498406648636, 0.008488994091749191, -0.02502627670764923, -0.04554435610771179, -0.0065347193740308285, 0.001134274061769247, -0.0328289270401001, 0.0112921679392457, 0.005190929397940636, -0.013177808374166489, -0.056670356541872025, 0.0013248248724266887, 0.014268734492361546, -0.045833341777324677, 0.012845473363995552, 0.024188214913010597, 0.020359136164188385, 0.03352249413728714, 0.026240022853016853, -0.033262405544519424, 0.0340137742459774, -0.0016968956915661693, -0.016703451052308083, -0.012766001746058464, 0.019434377551078796, -0.024101518094539642, -0.013524592854082584, 0.02189076691865921, 0.0072933100163936615, 0.011299393139779568, -0.034505050629377365, -0.016226621344685555, 0.015041775070130825, -0.007376393768936396, -0.014290409162640572, 0.0012236795155331492, 0.0062385075725615025, 0.03175967559218407, 0.005310136824846268, 0.022569887340068817, -0.014673316851258278, 0.017050234600901604, -0.007387231104075909, 0.03149958699941635, -0.03655685856938362, -0.020705921575427055, 0.03066152334213257, -0.0026424252428114414, -0.03803069517016411, -0.001049384125508368, 0.02522856742143631, 0.03193306550383568, -0.03693254292011261, -0.015605299733579159, -0.008243354968726635, -0.008062737993896008, -0.0032619410194456577, -0.02901429869234562, -0.015807591378688812, -0.009991726838052273, -0.006997098680585623, -0.009139214642345905, 0.06039828807115555, -0.012896046042442322, -0.017917195335030556, 0.03265553340315819, -0.0005942296120338142, -0.0038543646223843098, -0.010237365961074829, -0.006440798286348581, -0.035574302077293396, -0.005389607977122068, 0.022454291582107544, -0.029418880119919777, -0.0030325576663017273, 0.005317361559718847, -0.03606558218598366, 0.0006949235103093088, 0.03944673016667366, 0.03759721294045448, 0.0060506658628582954, 0.034129370003938675, 0.004789960104972124, 0.018047239631414413, -0.00774485245347023, 0.030314739793539047, -0.010815340094268322, 0.005021149758249521, -0.00555938808247447, 0.003749606665223837, 0.030488131567835808, 0.009572695009410381, 0.04554435610771179, 0.06525327265262604, -0.0005427537835203111, -0.010620273649692535, -0.015460805967450142, -0.023725835606455803, 0.02137059159576893, -0.02726592682301998, 0.017888296395540237, 0.03727932646870613, -0.005212603602558374, -0.026037732139229774, 0.0007847804226912558, 0.028147336095571518, -0.016197722405195236, -0.023393500596284866, 0.03190416842699051, -0.0026333944406360388, 0.02275772951543331, 0.01280212588608265, -0.01603878103196621, 0.018986448645591736, -0.0018477108096703887, 0.015244065783917904, -0.009038069285452366, 0.022020811215043068, -0.0007247253088280559, -0.0011920714750885963, -0.010613048449158669, 0.018422923982143402, -0.03583439067006111, 0.0334646999835968, -0.017714904621243477, -0.028681963682174683, -0.018090588971972466, -0.010266263969242573, -0.002774275606498122, -0.021356141194701195, 0.014427677728235722, 0.023104513064026833, -0.012455341406166553, 0.007766526658087969, 0.026384515687823296, 0.019535522907972336, 0.008293927647173405, 0.0048911054618656635, -0.006646701600402594, 0.022049710154533386, -0.013018866069614887, 0.005429343786090612, -0.017743803560733795, -0.013524592854082584, -0.021081604063510895, 0.03803069517016411, 0.015258515253663063, 0.016819044947624207, 0.007780975662171841, -0.006588904187083244, -0.028696412220597267, -0.008922474458813667, 0.008698510006070137, -0.012693755328655243, -0.009803884662687778, 0.03066152334213257, -0.04256778955459595, 0.022179754450917244, -0.03149958699941635, -0.05571670085191727, -0.0002783757809083909, 0.008149433881044388, 0.027453767135739326, 0.024968478828668594, -0.007860447280108929, -0.007112693507224321, 0.0005097911925986409, -0.023769183084368706, -0.009146439842879772, 0.04430171102285385, -0.003785730106756091, 0.05904005095362663, -0.006773133762180805, -0.010085646994411945, 0.009392078965902328, -0.013842478394508362, -0.024968478828668594, 0.04435950890183449, 0.033435799181461334, -0.03681694716215134, -0.013936399482190609, -0.021905217319726944, 0.015186268836259842, 0.0253730621188879, -0.0003296258219052106, 0.004443175625056028, 0.040978360921144485, -3.5079188819509e-05, -0.021110503003001213, 0.03225095197558403, 0.026254471391439438, -0.02804619073867798, 0.002057226374745369, -0.005664146039634943, 0.05831758305430412, 0.034562848508358, -0.022006362676620483, -0.03765501081943512, -0.0036701352801173925, 0.006863441783934832, 0.008720183745026588, -0.017440367490053177, 0.012469790875911713, 0.006173485424369574, -0.01402309536933899, 0.0132139315828681, 0.01852406933903694, -0.012715429067611694, -0.004580444656312466, 0.02991015836596489, -0.005534101743251085, 0.00346784433349967, 0.023928126320242882, -0.009211461991071701, -0.006274630781263113, 0.022627685219049454, 0.010056748986244202, 0.0028085927478969097, 0.025662047788500786, 0.047133784741163254, 0.01952107436954975, -0.0067514595575630665, -0.03242434561252594, -0.011299393139779568, -0.02124054729938507, 0.030314739793539047, -0.046180129051208496, -0.0223097987473011, -0.011559480801224709, -0.018538517877459526, -0.02505517564713955, -0.009211461991071701, 0.051092907786369324, -0.0013744945172220469, 0.0017032172763720155, 0.028479671105742455, -0.005436568520963192, 0.0073041473515331745, -0.010316836647689342, -0.014723889529705048, -0.0406893752515316, 0.03687474504113197, 0.017801601439714432, 0.004454012494534254, 0.002355244243517518, 0.016717899590730667, 0.01748371496796608, 0.0039049373008310795, -0.0035364788491278887, -0.027135882526636124, -0.011104326695203781, -0.033955976366996765, -0.01962221972644329, -0.03496742993593216, -0.0056569213047623634, -0.04357924312353134, 0.030921611934900284, 0.013127235695719719, 0.007585909683257341, 0.03762611001729965, -0.0031626017298549414, 0.024202663451433182, 0.03690364211797714, -0.035429809242486954, -0.004865819122642279, -0.005606348626315594, -0.012794900685548782, -0.013105561956763268, -0.009616043418645859, -0.009681065566837788, 0.025719845667481422, -0.02072037011384964, -0.011349965818226337, -0.005140356719493866, -0.005050048232078552, -0.006650314200669527, -0.0036954216193407774, 0.005396832711994648, -0.006184322293847799, 0.0008249676902778447, 0.004584056790918112, 0.04661360755562782, -0.003937448374927044, 0.009695515036582947, 0.012556486763060093, 0.0018142967019230127, 0.012426442466676235, 0.014940629713237286, -0.008835778571665287, 0.010858687572181225, -0.045313168317079544, 0.019853409379720688, 0.026861345395445824, 0.010100096464157104, 0.01445657666772604, 0.014897281304001808, -0.013156134635210037, 0.0017519838875159621, -0.029621170833706856, -0.005367934238165617, -0.006281855516135693, 0.018813055008649826, 0.02754046395421028, -0.032164257019758224, 0.03618117794394493, -0.0006235798355191946, 0.029765663668513298, 0.02764160931110382, 0.02736707217991352, 0.016096577048301697, -0.0021258608903735876, -0.003872426226735115, 0.008207231760025024, -0.00884300284087658, 0.015778692439198494, 0.02106715552508831, -0.007484764326363802, -0.014536047354340553, -0.03184637054800987, 0.007101856172084808, -0.01762820966541767, 0.01054802630096674, 0.00394106050953269, -0.01718027889728546, 0.0009392078500241041, 0.0013085694517940283, 0.048376429826021194, 0.028508570045232773, 0.01397252269089222, -0.031990863382816315, 0.020951559767127037, 0.01283824909478426, 0.01693464070558548, 0.0042697833850979805, -0.026283370330929756, 0.0040133073925971985, -0.018610764294862747, 0.008626262657344341, -0.0035166109446436167, 0.0014015871565788984, 0.019289884716272354, 0.024867333471775055, 0.03531421348452568, 0.010403533466160297, -0.009659391827881336, 0.013799130916595459, 0.008994721807539463, -0.001593944150954485, -0.026803547516465187, -0.026456762105226517, -0.03329130634665489, 0.004981413949280977, -0.011906265281140804, -0.02385587990283966, 0.012404768727719784, -0.0023426010739058256, -0.0045948936603963375, 0.02196301519870758, 0.0010448687244206667, -0.02313341200351715, 0.08843003213405609, -0.006079564802348614, -0.012448116205632687, 0.005649696569889784, 0.01686239242553711, -0.010743092745542526, -0.01579314097762108, 0.026514559984207153, -0.030950510874390602, 0.016298867762088776, -0.02639896608889103, 0.009644942358136177, 0.0032384609803557396, 0.005013925023376942, 9.183240035781637e-05, -0.022931121289730072, -0.009059743024408817, 0.0636349469423294, -0.022916670888662338, 0.011740097776055336, 0.00950044859200716, -0.005331810563802719, 0.014752787537872791, 0.006025379523634911, -0.019737813621759415, -0.017295874655246735, 0.019680017605423927, -0.0032890336588025093, 0.002830266719684005, 0.020489180460572243, -0.007773750927299261, 0.013705209828913212, 0.019969003275036812, 0.009001946076750755, -0.02137059159576893, 0.003908549435436726, 0.0003219496284145862, -0.02746821753680706, 0.04227880388498306, -0.02371138520538807, 0.016977988183498383, 0.002124054590240121, 0.0018513231771066785, -0.019015347585082054, 0.009818334132432938, 0.025546453893184662, 0.011075427755713463, 0.006946526002138853, 0.01848071999847889, -0.0027778877411037683, -0.018350675702095032, 0.011768996715545654, -0.028277380391955376, -0.0035978886298835278, -0.005898947827517986, 0.00594590837135911, 0.023480195552110672, 0.028002843260765076, -0.03638346865773201, -0.003312513930723071, 0.01720917783677578, 0.0060506658628582954, -0.027352621778845787, -0.0010466749081388116, -0.019506623968482018, -0.039706818759441376, 0.005776128266006708, 0.012397543527185917, 0.001197490026243031, -0.011494459584355354, -0.039157744497060776, 0.0049597397446632385, 0.027526015415787697, 0.011364415287971497, -0.014810585416853428, 0.025185219943523407, 0.015720894560217857, -0.0013031509006395936, 0.0027670508716255426, -0.022396495565772057, 0.007491988595575094, 0.029346633702516556, -0.015171819366514683, 0.030690422281622887, -0.02064812369644642, -0.007123530376702547, 0.024491650983691216, 0.026586806401610374, -0.013936399482190609, 0.0590689480304718, -0.014478250406682491, -0.018813055008649826, -0.005815864074975252, 0.0016752217197790742, 0.007817098870873451, 0.020055700093507767, -0.0029711478855460882, -0.006364939268678427, -0.008236130699515343, -0.01221692655235529, -0.0025358612183481455, 0.00946432538330555, -0.021977463737130165, 0.006765909027308226, -0.031239498406648636, -0.02171737514436245, -0.021153850480914116, -0.0060615031979978085, 0.010389083996415138, 0.011834018863737583, 0.0041903117671608925, 0.0027110595256090164, 0.04089166596531868, -0.020951559767127037, -0.010858687572181225, -0.017541512846946716, -0.0010755736147984862, -0.07658156007528305, 0.006964587606489658, -0.007069345097988844, -0.029823461547493935, -0.011263269931077957, 0.0019777549896389246, -0.029823461547493935, 0.029577823355793953, 0.010020625777542591, -0.0256475992500782, -0.020431382581591606, 0.0239570252597332, 0.02027243934571743, 0.003764056134968996, 0.024968478828668594, -0.0038652014918625355, -0.024000372737646103, -0.014377105049788952, 0.024722840636968613, 0.0074414159171283245, -0.005288462620228529, 0.005237889941781759, 0.014839484356343746, 0.013799130916595459, 0.0027760816738009453, -0.039909109473228455, -0.009030845016241074, -0.0069393012672662735, -0.008315601386129856, -0.01557640079408884, -0.011682300828397274, -0.01211578119546175, 0.00237872451543808, -0.017541512846946716, 0.010764766484498978, 0.01382080465555191, 0.03554540500044823, -0.0016011687694117427, 0.017527064308524132, 0.05135299637913704, -0.015735343098640442, -0.015417458489537239, -0.021674027666449547, -0.0013934593880549073, 0.0071560414507985115, -0.029491126537322998, -0.028147336095571518, 0.029967954382300377, -0.02251208946108818, -0.013604064472019672, 0.020503628998994827, 0.012816574424505234, -0.022194204851984978, 0.0002194495318690315, -0.018870852887630463, 0.012224151752889156, 0.004403439816087484, -0.031095003709197044, -0.009933928959071636, 0.020330237224698067, 0.01713693141937256, -0.015229616314172745, -0.03334910422563553, 0.019463276490569115, -0.01720917783677578, -0.015648648142814636, -0.015417458489537239, -0.003402822185307741, -0.03803069517016411, -0.02020019292831421, -0.006383000873029232, 0.02171737514436245, 0.0019127329578623176, 0.0026659052819013596, 0.009579920209944248, 0.027713855728507042, 0.037539415061473846, -0.002823041984811425, -0.009673841297626495, 0.017252525314688683, -0.017960544675588608, 0.016544507816433907, 0.007300534751266241, 0.013466795906424522, -0.027598261833190918, -0.027150331065058708, -0.022454291582107544, 0.015460805967450142, -0.015431907027959824, 0.0272948257625103, 0.01882750540971756, 0.046758100390434265, -0.007098244037479162, 0.015518603846430779, -0.003229430178180337, 0.02637006714940071, -0.007824324071407318, 0.010244590230286121, 0.017050234600901604, 0.006502208299934864, 0.03927333652973175, 0.01693464070558548, -0.03909994661808014, -0.023696936666965485, -0.03441835567355156, 0.009095867164433002, -0.0400536023080349, 0.010569700971245766, 0.015807591378688812, 0.015518603846430779, -0.016024330630898476, -0.0026659052819013596, -0.01975226402282715, 0.006289080251008272, 0.023350151255726814, -0.007289697881788015, -0.038464173674583435, -0.004298682324588299, -0.003195112803950906, -0.024087069556117058, -0.014666091650724411, -0.00927648413926363, 0.00879243016242981, -0.014788911677896976, 0.006234895437955856, 0.02213640697300434, 0.01962221972644329, 0.0030686811078339815, 0.014687766321003437, 0.00593868363648653, -0.02532971277832985, -0.020185744389891624, -0.012831023894250393, -0.029418880119919777, -0.0017429530853405595, 0.004789960104972124, -0.01548970490694046, -0.002590046264231205, -0.0014611906372010708, 0.0175559613853693, -0.04129624739289284, 0.019969003275036812, -0.00389410019852221, -0.04198981449007988, -0.022006362676620483, 0.001262512058019638, -0.00727886101230979, 0.01817728392779827, 0.026008833199739456, 0.01473111379891634, -0.015894286334514618, -0.009081417694687843, -0.016544507816433907, -0.004479298833757639, 0.00560273602604866, 0.023826980963349342, -0.03805959224700928, -0.002759826136752963, 0.007192164659500122, 0.002501544076949358, 0.0035202233120799065, 0.01566309668123722, 0.005479916464537382, -0.01775825396180153, -0.006747846957296133, -0.004118065349757671, 0.020113497972488403, 0.013604064472019672, -0.04300127178430557, -0.04054487869143486, 0.009298157878220081, 0.01917428895831108, 0.02161622978746891, -0.005302912089973688, 0.03060372732579708, -0.015345211140811443, 0.006650314200669527, -0.01569199562072754, 0.025633148849010468, 0.00774485245347023, 0.006310754455626011, -0.00011604635801631957, 0.007235512603074312, 0.016775697469711304, -0.006809256970882416, 0.0037532190326601267, 0.009471549652516842, -0.003574408357962966, 0.02726592682301998, 0.0022848036605864763, 0.031470686197280884, -0.007289697881788015, -0.03363808989524841, -0.009796660393476486, 0.016544507816433907, -0.014073668047785759, -0.014796135947108269, 0.010706969536840916, -0.01613992638885975, 0.02161622978746891, -0.01800389215350151, -0.0037965672090649605, 0.01590873673558235, 0.021399490535259247, 0.00021990106324665248, 0.008315601386129856, -0.025979934260249138, 0.005599123891443014, -0.029375532642006874, 0.017469266429543495, -0.02478063851594925, 0.025084074586629868, -6.41189981251955e-05, 0.02626892179250717, -0.027901697903871536, 0.02808954007923603, -0.0047538368962705135, 0.026283370330929756, 0.020489180460572243, 0.026731301099061966, 0.028797557577490807, 0.015431907027959824, -0.01944882795214653, -0.009319831617176533, -0.023176759481430054, 0.017252525314688683, 0.013437896966934204, -0.0006917627179063857, 0.04950347915291786, -0.008611813187599182, 0.012794900685548782, -0.009204236790537834, -0.005667758174240589, 0.01655895635485649, 0.04175862669944763, -0.02333570271730423, -0.0030253329314291477, 0.0015081510646268725, -0.007174103055149317, 0.030372537672519684, 0.01631331816315651, -0.0014837677590548992, 0.020677022635936737, -0.007795425131917, 0.0006506723584607244, -0.0061987717635929585, 0.025286365300416946, 0.017266975715756416, -0.004808021709322929, -0.028147336095571518, 0.02151508443057537, -0.0003614595625549555, 0.004313131328672171, 0.02637006714940071, 0.019087594002485275, 0.03100830875337124, -0.01879860647022724, -0.014601069502532482, -0.06109185889363289, 0.006697274278849363, -0.0037712808698415756, -0.031268395483493805, -0.05380938574671745, 0.012318071909248829, 0.0015451775398105383, -0.020402483642101288, 0.017946094274520874, 0.0026406189426779747, -0.015417458489537239, -0.003951897844672203, 0.0003174341982230544, -0.003063262440264225], [-0.0103451544418931, 0.030826978385448456, 0.004787959158420563, 0.022200025618076324, -0.007728312164545059, 0.022602617740631104, 0.003431011224165559, 0.023824768140912056, -0.008375333622097969, -0.023292772471904755, 0.002289737109094858, -0.023422177881002426, -0.00791522953659296, -0.030942004173994064, 0.01895054057240486, 0.018274761736392975, -0.03994279354810715, -0.00038371968548744917, -0.02250196970999241, 0.043939948081970215, 0.06406950205564499, 0.03468035161495209, 0.02606777660548687, -0.020086422562599182, -0.014500469900667667, -0.016822557896375656, -0.04060419276356697, -0.0020003747195005417, 0.02760624885559082, -0.057052917778491974, 0.02529134973883629, -0.021998729556798935, -0.002668963512405753, -0.05472363904118538, -0.0341627337038517, -0.027735654264688492, -0.033530090004205704, -0.02704549767076969, 0.019640697166323662, 0.013285507448017597, -0.009561539627611637, 0.0011313889408484101, -0.03597439453005791, 0.022415699437260628, -0.005963381379842758, -0.02064717374742031, -0.011732656508684158, -0.02254510298371315, 0.02659977227449417, 0.01587359420955181, -0.016118023544549942, 0.040172845125198364, 0.013429290615022182, -0.08425657451152802, -0.01821724884212017, -0.05273943766951561, 0.0280088409781456, 0.034507811069488525, 0.020819712430238724, -0.014471713453531265, 0.03931014984846115, -0.05279695242643356, 0.0051869554445147514, -0.022890182211995125, 0.0004010185075458139, 0.04471637308597565, -0.016218671575188637, -0.02214251272380352, -0.01202022098004818, 0.02497502975165844, 0.0546373687684536, 0.01206335611641407, 0.05420602113008499, -0.009770024567842484, -0.003853372298181057, -0.028152624145150185, -0.0036952116061002016, 0.016046132892370224, -0.03844745457172394, -0.02234380878508091, -0.01982761360704899, 0.013666531071066856, 0.016951963305473328, -0.0341627337038517, 0.007052534259855747, -0.08028817921876907, -0.07022339850664139, -0.013529937714338303, -0.047304458916187286, 0.04083424434065819, -0.022401321679353714, -0.018648596480488777, 0.01801595278084278, 0.025406377390027046, 0.06464463472366333, -0.03634822741150856, 0.0054421694949269295, -0.06786536425352097, 0.008102146908640862, 0.013271129690110683, 0.016333697363734245, -0.03283993527293205, -0.011013743467628956, 2.0036884961882606e-05, 0.05998608097434044, 0.036376986652612686, 0.0375560037791729, 0.002216048538684845, -0.033328793942928314, -0.04520523548126221, -0.05768555775284767, -0.0031128921546041965, -0.009683755226433277, 0.05998608097434044, -0.030021796002984047, 0.006538511253893375, -0.01404755562543869, -0.002622234169393778, -0.00015130867541301996, -7.94173902249895e-05, -0.030309362336993217, -0.0069159409031271935, 0.014220094308257103, 0.0071855331771075726, 0.014752089977264404, -0.039568956941366196, 0.004460853524506092, 0.007685177493840456, -0.0369233600795269, -0.038073617964982986, 0.04218580201268196, -0.0012473135720938444, 0.0017981805140152574, -0.06964826583862305, -0.012911672703921795, -0.01198427565395832, -0.06228660047054291, 0.004051073454320431, 0.0018143560737371445, 0.002059685066342354, 0.0358593687415123, -0.04405497387051582, 0.008806681260466576, 0.009223650209605694, -0.052394360303878784, 0.005679410882294178, -0.011833303608000278, -0.007749879267066717, -0.011265362612903118, -0.014910250902175903, 0.004144532140344381, -0.05584514141082764, 0.024385521188378334, -0.04238709434866905, -0.020949117839336395, -0.004550717771053314, 0.022516347467899323, 0.03393268212676048, -0.005003632977604866, -0.00841846875846386, -0.041351862251758575, 0.007850526832044125, -0.03145962208509445, -0.02140922099351883, -0.0025090056005865335, 0.008310631848871708, -0.08396901190280914, 0.018562328070402145, -0.04546404257416725, -0.037872325628995895, -0.043048497289419174, -0.011308497749269009, -0.06872805953025818, 0.08230113238096237, -0.0049245525151491165, 0.003461564891040325, -0.05161793529987335, -0.041265591979026794, 0.006754185538738966, 0.008634142577648163, 0.012300597503781319, 0.012041788548231125, 0.00654570059850812, -0.0044141244143247604, -0.0200001522898674, -0.0025503430515527725, -0.019942639395594597, 0.02825327031314373, -0.005798031575977802, 0.023206504061818123, -0.0035945638082921505, 0.0584619864821434, -0.008346577174961567, 0.05273943766951561, 0.009805969893932343, -0.010956230573356152, 0.017110124230384827, 0.022041864693164825, 0.016650019213557243, 0.001142172608524561, -0.002162130083888769, 0.014673009514808655, 0.04132310673594475, 0.018591083586215973, -0.06441458314657211, -0.02194121666252613, -0.021035386249423027, -0.0406329482793808, -0.009539972059428692, -0.014291985891759396, 0.0028738537803292274, -0.05161793529987335, 0.0400003045797348, 0.03643449768424034, -0.019568804651498795, 0.018490435555577278, -0.09915244579315186, 0.07885035127401352, -0.030711952596902847, 0.039367660880088806, -0.03614693135023117, 0.024313628673553467, 0.03235107287764549, -0.006031678058207035, 0.024256115779280663, 0.04555031284689903, 0.04071921855211258, -0.06809541583061218, 0.04773580655455589, -0.012070544995367527, 0.015255328267812729, -0.023494068533182144, -0.03551429137587547, -0.027750032022595406, 0.014435768127441406, -0.051790475845336914, 0.007893661968410015, 0.029849257320165634, 0.018964918330311775, 0.015586028806865215, 0.011078445240855217, -0.051502909511327744, 0.02267450839281082, -0.018447300419211388, 0.028799645602703094, -0.0035909691359847784, -0.027347441762685776, -0.023565959185361862, 0.01293324027210474, -0.03439278528094292, 0.007685177493840456, 0.043652381747961044, -0.046240467578172684, -0.013860638253390789, -0.03344381973147392, -0.024586815387010574, -0.027620628476142883, 0.0196263175457716, 0.015212194062769413, -0.020345231518149376, 0.03097076155245304, -0.00031722025596536696, -0.028310785070061684, 0.001748755224980414, -0.02845456637442112, -0.0015348787419497967, -0.006074812728911638, 0.02332152985036373, -0.001808065571822226, 0.028181379660964012, -0.019439401105046272, -0.029475422576069832, 0.03376014158129692, -0.016822557896375656, -0.01603175513446331, 0.011667953804135323, -0.03209226578474045, -0.006078407168388367, -0.006754185538738966, 0.0011592467781156301, -0.020489012822508812, -0.017915306612849236, 0.03646325320005417, 0.02704549767076969, 0.0003695660852827132, -0.007534205447882414, 0.038073617964982986, 0.02796570584177971, -0.0024730598088353872, 0.031229570508003235, 0.003921668976545334, -0.04488891363143921, 0.017699632793664932, -0.024514924734830856, 0.04488891363143921, -0.021394843235611916, 0.017138879746198654, -0.053372081369161606, -0.020862847566604614, 0.02578021213412285, 0.050180111080408096, 0.00894327461719513, 0.008591007441282272, -0.03784356638789177, -0.025967128574848175, 0.02760624885559082, 0.010129480622708797, -0.011322875507175922, -0.03324252739548683, -0.016204293817281723, -0.015959862619638443, -0.020417122170329094, -0.006948291789740324, -0.020575283095240593, -0.07022339850664139, 0.02149549126625061, 0.08350890874862671, 0.014414200559258461, -0.01959756202995777, -0.021423600614070892, -0.007713933940976858, -0.016779422760009766, 0.03514045476913452, -0.020862847566604614, -0.022660130634903908, -0.06544981896877289, -0.003301606746390462, -0.06366690993309021, -0.0684404969215393, -0.00017781858332455158, 0.0011969897896051407, -0.007354477420449257, 0.024788111448287964, 0.04293346777558327, -0.005528438836336136, 0.011020932346582413, -0.0015600406331941485, -0.025995885953307152, 0.04189823567867279, 0.028282027691602707, 0.023666607216000557, -0.052279334515333176, 0.011430712416768074, -0.01133725419640541, 0.011013743467628956, -0.018246006220579147, 0.011366010643541813, -0.00652772793546319, -0.022013109177350998, 0.003939642105251551, -0.01712450198829174, 0.0021783055271953344, -0.032322317361831665, 0.0016885463846847415, -0.020143935456871986, 0.014392632991075516, 0.03174718841910362, 0.004104991909116507, -0.02566518448293209, -0.006416296120733023, -0.01133725419640541, -0.033702630549669266, -0.04212828725576401, -0.0020956306252628565, 0.03677957504987717, 0.0201583132147789, -0.010050400160253048, 0.04172569513320923, 0.013630585744976997, -0.03235107287764549, 0.0005944509757682681, 0.038274914026260376, -0.019079944118857384, -0.0034525785595178604, -0.07752755284309387, 0.007979931309819221, -0.0018655785825103521, 0.018490435555577278, -0.0042703417129814625, 0.023508446291089058, 0.02533448487520218, -0.032609883695840836, 0.024054821580648422, -0.03266739472746849, 0.050783995538949966, 0.01332145370543003, -0.03534175083041191, -0.008490359410643578, -0.04103554040193558, 0.011222228407859802, -0.013005131855607033, -0.025391997769474983, -0.016304941847920418, 0.024802489206194878, -0.016578128561377525, 0.010618341155350208, -0.0010828623780980706, -0.024313628673553467, 0.03387516736984253, 0.04083424434065819, -0.01332145370543003, -0.03376014158129692, -0.05460861325263977, 0.02925974875688553, -0.06786536425352097, 0.023954173550009727, 0.01748395897448063, -0.026211559772491455, -0.04995005950331688, 0.05811690539121628, 0.0341627337038517, -0.021423600614070892, 0.0512441024184227, -0.010251696221530437, -0.00209023873321712, -0.016046132892370224, 0.016290562227368355, 0.01607488840818405, -0.008447225205600262, 0.00943213514983654, -0.005729734431952238, -0.0138462595641613, -0.009216461330652237, 0.007908040657639503, 0.0077858250588178635, 0.056075192987918854, 0.01748395897448063, 0.02028771862387657, 0.025492645800113678, -0.047620780766010284, -0.01792968437075615, 0.03666454926133156, 0.04966249316930771, 0.003907290752977133, -0.028181379660964012, -0.03289744630455971, -0.009482459165155888, 0.037872325628995895, -0.0321497768163681, -0.05475239455699921, -0.00290979933924973, -0.03453657031059265, -0.0141913378611207, 0.0014989330666139722, 0.003856966970488429, 0.010359533131122589, 0.042272068560123444, -0.019640697166323662, -0.02307709865272045, 0.007879284210503101, -0.0021279817447066307, 0.009259596467018127, -0.028224514797329903, 0.07931045442819595, -0.007145992945879698, 0.004324260167777538, 0.008051822893321514, 0.03795859217643738, 0.03951144590973854, -0.047793321311473846, -0.011135958135128021, -0.023911038413643837, 0.010683043859899044, 0.014119446277618408, 0.011322875507175922, -0.038073617964982986, -0.005783652886748314, -0.033415064215660095, -0.0033375525381416082, 0.002713895635679364, 0.002203467534855008, -0.03942517563700676, -0.01452922634780407, 0.020877227187156677, -0.023465313017368317, -0.05443607270717621, -0.03502542898058891, -0.033328793942928314, 0.05291197821497917, 0.03982776775956154, 0.008094958029687405, -0.0074623143300414085, -0.05650654062628746, -0.007807392627000809, 0.020028909668326378, 0.0005104280426166952, 0.02173992246389389, 0.0484834760427475, -0.02093474008142948, 0.04391119256615639, -0.014910250902175903, -0.0066894832998514175, 0.020776579156517982, -0.017541471868753433, 0.01926686242222786, -0.009604674763977528, 0.0026509908493608236, -0.05095653608441353, 0.03801610693335533, 0.030424388125538826, -0.027376197278499603, -0.04506145045161247, -0.012013032101094723, 0.040460411459207535, -0.05768555775284767, 0.0557013601064682, -0.02267450839281082, -0.03493915870785713, -0.021136034280061722, 0.021524248644709587, -0.032724909484386444, 0.026340963318943977, -0.01801595278084278, 0.0009309920133091509, -0.021193547174334526, -0.0004079829959664494, -0.032121021300554276, -0.0052983867935836315, -0.009885050356388092, 0.025032542645931244, -0.01692320592701435, -0.009928185492753983, -0.012235894799232483, 0.013299886137247086, 0.020675931125879288, 0.021509869024157524, -0.027074255049228668, -0.00010693827061913908, -0.033501334488391876, 0.020330851897597313, 0.0355430468916893, -0.0034256193321198225, -0.008015877567231655, 0.056650325655937195, 0.02967671863734722, -0.027059875428676605, -0.009396189823746681, -0.007591718807816505, 0.03180469945073128, -0.0015079195145517588, 0.03594563901424408, -0.03870626166462898, -0.010474558919668198, 0.009985698387026787, 0.0019374698167666793, 0.03741221874952316, 0.009920995682477951, -0.01099217589944601, 0.0005549108027480543, -0.012724755331873894, 0.035082943737506866, -0.019166214391589165, 0.023709742352366447, -0.029417909681797028, 0.022660130634903908, -0.016463102772831917, -0.009123003110289574, -0.03137335181236267, 0.04040289670228958, -0.03137335181236267, -0.016103645786643028, 0.025406377390027046, 0.030711952596902847, -0.01133725419640541, -0.03815988823771477, 0.010891527868807316, 0.04209953173995018, 0.014550793915987015, -0.03951144590973854, 0.03413397818803787, 0.020575283095240593, -0.007886473089456558, 0.03864875063300133, -0.021136034280061722, 0.028512079268693924, 0.009597484953701496, 0.001285955193452537, -0.03657827898859978, -0.0052480632439255714, 0.011049688793718815, -0.046528033912181854, 0.003639495698735118, -0.019338753074407578, -0.006800914648920298, -0.013774367980659008, 0.02675793319940567, 0.0018125587375834584, 0.005319954361766577, 0.024457411840558052, 0.030510656535625458, 0.003925263416022062, -0.04704565182328224, 0.0013389750383794308, 0.010323586873710155, 0.004593852441757917, -0.00460463622584939, 0.03476662188768387, -0.00290979933924973, 0.015384732745587826, -0.01603175513446331, 0.00020129556651227176, 0.024989407509565353, -0.022890182211995125, -0.024543682113289833, 0.008835437707602978, 0.012070544995367527, -0.01335739903151989, 0.006585240829735994, 0.022962072864174843, 0.014421389438211918, -0.006265324540436268, 0.03306998685002327, 0.02898656204342842, -0.01514030247926712, -0.03036687523126602, 0.012228705920279026, 0.002827124437317252, -0.022415699437260628, -0.0018655785825103521, 0.0040762354619801044, -0.01659250631928444, 0.009942563250660896, -0.011732656508684158, 0.0032836340833455324, -0.008375333622097969, 0.054062239825725555, -0.01748395897448063, 0.0032980123069137335, -0.006588835269212723, -0.0029115965589880943, -0.01741206645965576, -0.008698844350874424, -0.0036538741551339626, -0.004004343878477812, 0.029935527592897415, -0.048512231558561325, 0.026125289499759674, -0.003982776775956154, 0.010977798141539097, -0.022688886150717735, 0.045521557331085205, 0.0518767423927784, -0.004529150202870369, 0.010683043859899044, -0.010273262858390808, 0.004532745108008385, -0.00034417948336340487, 0.07367417961359024, -0.004547123331576586, -0.04089175909757614, 0.027059875428676605, 0.0017523497808724642, 0.011847682297229767, -0.008015877567231655, -0.0019446590449661016, -0.003641293151304126, 0.010790880769491196, 0.03217853605747223, -0.009338676929473877, 0.03068319708108902, 0.0014845548430457711, 0.02537762001156807, -0.034910403192043304, 0.030855735763907433, 0.008504738099873066, -0.0012554014101624489, 0.03137335181236267, 0.01826038397848606, 0.006894373334944248, 0.05584514141082764, -0.00408701878041029, -0.013486803509294987, 0.05900835990905762, 0.020100800320506096, -0.009460891596972942, 0.009942563250660896, -0.011380389332771301, -0.02566518448293209, -0.0210066307336092, -0.003046392695978284, 0.026082154363393784, -0.010330776683986187, -0.01634807512164116, -0.0022915343288332224, -0.0062150005251169205, -0.055154986679553986, 0.06343685835599899, 0.0029727041255682707, 0.0018889432540163398, -0.007807392627000809, -0.025118811056017876, -0.009302730672061443, 0.05791561305522919, -0.028885914012789726, 0.0023957767989486456, -0.031718429177999496, 0.0057944366708397865, -0.0044500697404146194, -0.020747821778059006, -0.06337934732437134, 0.034622836858034134, 0.020546525716781616, 0.00906549021601677, 0.009245217777788639, -0.05561508983373642, -0.02582334540784359, 0.03606066480278969, -0.004446475300937891, 0.023666607216000557, -0.0211647916585207, -0.007821770384907722, -0.020862847566604614, -0.011775790713727474, 0.025003785267472267, -0.008195605129003525, 0.021437978371977806, -0.01788654923439026, -0.03597439453005791, 0.0018260383512824774, -0.008224361576139927, -0.02388228103518486, 0.05115783214569092, -0.009698132984340191, -0.05492493510246277, 0.03298371657729149, -0.004230801481753588, -0.03249485790729523, 0.01817411370575428, 0.012358110398054123, 0.005176171660423279, 0.002891826443374157, 0.0077858250588178635, -0.009223650209605694, -0.021322952583432198, 0.0006043360335752368, 0.027577493339776993, -0.02792257070541382, 0.010194182395935059, -0.04799461364746094, 0.015499758534133434, -0.006441458128392696, -0.02530572935938835, -0.019079944118857384, -0.020877227187156677, 0.019985774531960487, -0.022214403375983238, 0.008447225205600262, -0.01380312442779541, -0.019640697166323662, 0.050783995538949966, -0.01163919735699892, 0.013795935548841953, -0.016118023544549942, 0.022013109177350998, 0.016448723152279854, -0.027491223067045212, 0.010877150110900402, -0.009568728506565094, 0.001285955193452537, 0.03177594393491745, -0.029072832316160202, 0.014234472066164017, -0.02004328742623329, 0.020302096381783485, 0.012271841056644917, 0.005129442550241947, 0.018145358189940453, -0.027836302295327187, 0.042243313044309616, 0.003533456241711974, -0.007282586302608252, 0.002275358885526657, 0.01861984096467495, 0.019338753074407578, 0.009403378702700138, 8.340510976267979e-05, 0.002246602438390255, -0.013810314238071442, -0.018691731616854668, -0.001057700370438397, 0.026657285168766975, -0.033616360276937485, -0.0007418281165882945, 0.006085596513003111, 0.02691609412431717, 0.023565959185361862, -0.007598907686769962, -0.042272068560123444, 0.0358593687415123, -0.023824768140912056, -0.010151048190891743, -0.033501334488391876, -0.016103645786643028, -0.02675793319940567, -0.016118023544549942, -0.0045255557633936405, -0.010683043859899044, -0.05757053196430206, 0.0044285026378929615, 0.028368297964334488, -0.02950417995452881, 0.00864133145660162, 0.029159100726246834, 0.03344381973147392, 0.0330987423658371, 0.02202748693525791, -0.03376014158129692, -0.012070544995367527, -0.006031678058207035, -0.014543605037033558, -0.039885278791189194, 0.002117197960615158, -0.026585392653942108, -0.04457259178161621, 0.02335028536617756, 0.006143109407275915, 0.025104433298110962, -0.04905860498547554, -0.016937583684921265, 0.017757145687937737, -0.0286989975720644, -0.018763622269034386, -0.00841846875846386, 0.008619763888418674, 6.633093289565295e-05, -0.01202022098004818, 0.008670087903738022, 0.00239757401868701, 0.015528515912592411, 0.014823980629444122, 0.032034751027822495, -0.010675854049623013, -0.021351708099246025, 0.02635534107685089, 0.015557272359728813, -0.008555062115192413, 0.000663197017274797, 0.013472424820065498, -0.010021643713116646, -0.0010981392115354538, -0.007070506922900677, 0.02027333900332451, -0.05265317112207413, -0.017699632793664932, -0.027505602687597275, -0.01712450198829174, -0.034622836858034134, -0.012545027770102024, -0.002597072394564748, 0.027980083599686623, -0.01643434539437294, 0.003601752920076251, 0.03059692680835724, -0.0007723818998783827, 0.014421389438211918, -0.013932528905570507, -0.03815988823771477, -0.027476845309138298, 0.004403340630233288, 0.005240873899310827, -0.025118811056017876, -0.00589867914095521, 0.016333697363734245, -0.040172845125198364, 0.013544316403567791, 0.05866327881813049, 0.056247733533382416, 0.00536308903247118, 0.028727753087878227, 0.016017375513911247, 0.02967671863734722, -0.017829036340117455, 0.01897929608821869, -0.008792302571237087, 0.011912384070456028, 0.008224361576139927, 0.013386155478656292, 0.016650019213557243, -0.004791553597897291, 0.04023035615682602, 0.05509747192263603, 0.008209983818233013, -0.026786688715219498, -0.026829823851585388, -0.04192699119448662, 0.024227360263466835, -0.0030841357074677944, 0.01176141295582056, 0.019209349527955055, -0.00013681808195542544, -0.0492311455309391, 0.007843337953090668, 0.01659250631928444, -0.027548735961318016, -0.02044587954878807, 0.06452960520982742, 0.007149587385356426, 0.03160340338945389, -0.02412671223282814, 0.018447300419211388, -0.019856370985507965, 0.044658858329057693, -0.011624819599092007, 0.0047052837908267975, 0.011581684462726116, 0.007965553551912308, -0.01080525852739811, -0.013652153313159943, 0.013716855086386204, -0.0033555252011865377, 0.01652061566710472, -0.027059875428676605, 0.0048634447157382965, 0.00276781409047544, -0.01567229814827442, -0.02437114156782627, -0.005107874982059002, -0.014407011680305004, 0.047131918370723724, 0.008015877567231655, 0.004550717771053314, 0.026571014896035194, 0.035111699253320694, -0.006078407168388367, 0.02388228103518486, 0.006394729018211365, 0.006862022448331118, -0.0030266225803643465, 0.016765045002102852, -0.00787209440022707, -0.0024874380324035883, -0.04416999965906143, 0.02412671223282814, -0.010287641547620296, -0.00477717537432909, -0.008591007441282272, -0.0010927474359050393, -0.017598984763026237, -0.015154681168496609, 0.018346654251217842, -0.028598349541425705, 0.002580896718427539, 0.017138879746198654, -0.005125848110765219, -0.008195605129003525, -0.025751454755663872, -0.019482536241412163, 0.03097076155245304, -0.0010109710274264216, 0.03502542898058891, 0.007433557882905006, 0.0017604376189410686, -0.023494068533182144, -0.005532033741474152, -0.0338464118540287, -0.004532745108008385, 0.026096532121300697, 0.0007831655675545335, 0.06366690993309021, -0.012940429151058197, -0.05975602939724922, 0.018447300419211388, -0.024026064202189445, -0.0013964880490675569, 0.028842778876423836, 0.016693154349923134, -0.03677957504987717, -0.011286930181086063, -0.04391119256615639, 0.014054744504392147, 0.009690944105386734, 0.006973453797399998, 0.0034849296789616346, 0.02979174442589283, -0.005966975819319487, -0.013307075016200542, 0.03355884552001953, 0.0005445763817988336, -0.008857005275785923, -0.03048190101981163, 0.004982065409421921, 0.04023035615682602, 0.02473059855401516, -0.020417122170329094, -0.029130345210433006, 0.006937508005648851, 0.013939718715846539, -0.0010064778616651893, -0.0027785978745669127, 0.021423600614070892, 0.030136821791529655, -0.04460134729743004, -0.0286989975720644, 0.002586288610473275, 0.007519827224314213, -0.014097878709435463, 0.01902243122458458, -0.027591871097683907, -0.002791178645566106, 0.03376014158129692, 0.019396265968680382, 0.02764938399195671, 0.030855735763907433, -0.006078407168388367, 0.007059723138809204, 0.01837540976703167, 0.021883703768253326, 0.020474635064601898, -0.001791890012100339, -0.038965072482824326, -0.0007800203165970743, 0.008102146908640862, 0.01826038397848606, -0.07476692646741867, -0.0020147529430687428, 0.011948330327868462, -0.021797435358166695, 0.013163292780518532, -0.014414200559258461, -0.006696672178804874, 0.03407646343111992, 0.011358821764588356, -0.0015887971967458725, 0.0014171567745506763, 0.009532783180475235, -0.03330003842711449, -0.0038821289781481028, -0.05141663923859596, 0.041265591979026794, 0.016951963305473328, 0.005032389424741268, -0.01757022738456726, -0.007562962360680103, 0.003389673540368676, -0.0010630922624841332, 0.01442857924848795, -0.0036341040395200253, -0.011531360447406769, -0.021021008491516113, -0.03919512405991554, -0.035399265587329865, -0.004644176457077265, -0.04992130026221275, 0.02521945908665657, 0.014105068519711494, -0.010568017140030861, 0.01222151704132557, -0.016693154349923134, 0.04002906382083893, 0.02488875947892666, -0.03355884552001953, -0.01220713835209608, 0.024299250915646553, -0.002275358885526657, -0.02967671863734722, 0.011747034266591072, -0.009281164035201073, 0.03804486244916916, 0.0028612727764993906, -0.006272513885051012, 0.018432922661304474, -0.027865057811141014, -0.0021261845249682665, -0.030453143641352654, 0.013515559956431389, -0.017757145687937737, 0.006304864771664143, -0.009108624421060085, 0.014076312072575092, 0.008181227371096611, 0.024716220796108246, 0.007634853478521109, -0.0033393497578799725, 0.0017954845679923892, 0.03028060495853424, -0.02542075514793396, -0.0059382193721830845, -0.039971549063920975, 0.0016355265397578478, 0.006092785391956568, 0.026657285168766975, -0.005319954361766577, 0.014622685499489307, -0.018188493326306343, 0.02352282591164112, -0.027174901217222214, -0.0037814811803400517, -0.003315984969958663, 0.016261806711554527, 0.017714010551571846, -0.002313101664185524, 0.03177594393491745, -0.019813235849142075, -0.01833227463066578, 0.006380350794643164, -0.005291197914630175, -0.0223869439214468, -0.022516347467899323, -0.011869249865412712, 0.017742766067385674, -0.013515559956431389, -0.008396901190280914, 0.01915183663368225, -0.001173625118099153, -0.020977873355150223, 0.004877822939306498, 0.006283297669142485, -0.01184049341827631, 0.03735470771789551, -0.005427791271358728, -0.009669376537203789, 0.009345865808427334, 0.015054033137857914, -0.004108586348593235, -0.009180516004562378, -0.000916613731533289, -0.035600557923316956, 0.039770253002643585, -0.002248399658128619, 0.02392541617155075, -0.006509754806756973, -0.012624108232557774, -0.012480325065553188, -0.0052516576834023, 0.024011686444282532, -0.004137342795729637, -0.0029439476784318686, -0.009705321863293648, -8.009137673070654e-05, 0.026125289499759674, -0.005151009652763605, 0.02287580445408821, 0.023307152092456818, -0.010366722010076046, 0.0007732805097475648, -0.01699509657919407, -0.016304941847920418, -0.008289064280688763, 0.01414820272475481, -0.03217853605747223, -0.005826788023114204, 0.005014416296035051, 0.00397558743134141, 0.003824615851044655, 0.020373987033963203, -0.008475981652736664, -0.0022555887699127197, 0.08609699457883835, -0.023565959185361862, -0.0141913378611207, -0.0015402705175802112, 0.015600406564772129, -0.005816004239022732, -0.04655678942799568, 1.5754298146930523e-05, -0.03358760476112366, -0.02582334540784359, -0.019985774531960487, -0.003646685043349862, 0.015528515912592411, -0.008634142577648163, -0.01266724243760109, -0.009906617924571037, -0.01495338510721922, 0.06665758788585663, 0.00581959867849946, 0.010841203853487968, 0.01808784529566765, -0.0143494987860322, 0.011711088940501213, 0.022041864693164825, 0.0005877111689187586, -0.025808967649936676, 0.029475422576069832, -0.011725466698408127, 0.034421540796756744, 0.031143300235271454, -0.03039563074707985, 0.032322317361831665, 0.023062720894813538, 0.009331487119197845, -0.026829823851585388, 0.018792379647493362, 0.022775156423449516, -0.011531360447406769, 0.025276971980929375, -0.04997881501913071, 0.02165365219116211, 0.0030158390291035175, -0.008353766053915024, -0.028310785070061684, -0.011035311035811901, 0.004874228499829769, 0.0416969396173954, 0.007491070777177811, -0.014737711288034916, 0.004288314376026392, -0.0019230915931984782, -0.0035963610280305147, 0.009281164035201073, 0.008353766053915024, -0.010783690959215164, -0.0014324336079880595, 0.016865693032741547, 0.031315840780735016, -0.018893027678132057, 0.0013057253090664744, 0.0008577528060413897, 0.002967312466353178, 0.0007225073059089482, 0.026700420305132866, -0.020733444020152092, -0.01955442689359188, -0.022847047075629234, -0.0261540450155735, 0.022358186542987823, -0.008145281113684177, -0.016376832500100136, 0.010050400160253048, 0.03206351026892662, -0.0039036963135004044, -0.039885278791189194, 0.017742766067385674, 0.002269966993480921, -0.007354477420449257, 0.017915306612849236, -0.02728992886841297, 0.015054033137857914, 0.0372396819293499, 0.007699555717408657, 0.012386866845190525, -0.024097954854369164, 0.0024640734773129225, -0.0010918487096205354, 0.007368855644017458, 0.01544224563986063, 0.0758596733212471, -0.006995020899921656, -0.02813824452459812, 0.005161793436855078, 0.002050698734819889, 0.002438911469653249, 0.017138879746198654, 0.008555062115192413, 0.025880858302116394, -0.0077858250588178635, -0.011632008478045464, -0.011969896964728832, -0.00514022633433342, 0.01926686242222786, 0.0028468945529311895, 0.004956903401762247, -0.02056090533733368, -0.018231626600027084, 0.012530649080872536, 0.012228705920279026, 0.030913248658180237, 0.0035136861260980368, -0.004166099242866039, 0.05552881956100464, -0.001144868554547429, -0.005294792354106903, 0.00813809223473072, -0.03683708980679512, -0.026139667257666588, -0.009360244497656822, 0.006513349711894989, 0.011258173733949661, 0.006211406085640192, 0.006477403920143843, -0.0012383272405713797, 0.04595290496945381, 0.005240873899310827, -0.010984987020492554, -0.019439401105046272, 0.012602540664374828, 0.026628527790308, -0.004101397469639778, 0.023781633004546165, 0.009367433376610279, -0.02970547415316105, -0.03824615851044655, 0.039568956941366196, 0.00369880604557693, -0.010230128653347492, 0.01631931960582733, 0.02004328742623329, 0.010568017140030861, 0.05181923136115074, -0.012379677966237068, -0.004902984946966171, 0.002316696336492896, -0.0023077100049704313, -0.03373138606548309, 0.00947527028620243, -0.020862847566604614, 0.027750032022595406, -0.03772854059934616, 0.0015735202468931675, -0.0074623143300414085, 0.046729329973459244, -0.019281240180134773, -0.016046132892370224, 0.028440188616514206, -0.00971251167356968, -0.03399019315838814, -0.00035676045808941126, 0.013005131855607033, -0.006232973653823137, -0.021366087719798088, -0.030510656535625458, 0.025564538314938545, -0.01627618446946144, -0.018361032009124756, 0.03200599551200867, 0.01046737004071474, -0.02027333900332451, 0.00963343121111393, -0.01107125636190176, 0.02299083024263382, -0.0031973645091056824, -0.03335755318403244, -0.04051792249083519, -0.011380389332771301, -0.013479613699018955, 0.0008069795439951122, 0.01654937118291855, -0.013630585744976997, -0.005377467256039381, 0.027088632807135582, -0.01335739903151989, 0.012056167237460613, -0.022084999829530716, -0.00864133145660162, -0.011358821764588356, 0.051675450056791306, -0.01028045266866684, -0.004500393755733967, 0.019841991364955902, 0.03209226578474045, 0.03542802110314369, 0.01618991605937481, 0.012264651246368885, 0.030050553381443024, -0.028555214405059814, 0.01926686242222786, 0.02825327031314373, -0.007376044988632202, -0.03833242878317833, -0.057455506175756454, -0.03792983666062355, 0.007491070777177811, 0.007922418415546417, 0.00023769053223077208, 0.010776502080261707, 0.017800278961658478, 0.0283826757222414, -0.007814581505954266, 0.01449328102171421, 0.03197723999619484, -0.013954096473753452, -0.01194114051759243, 0.00856225099414587, -0.013759990222752094, 0.053774673491716385, 0.016765045002102852, -0.006592429708689451, -0.03732594847679138, -0.015859214588999748, 0.032523613423109055, -0.07154619693756104, -0.01813098043203354, -0.015327219851315022, 0.0007885574013926089, -0.004687311127781868, -0.012861348688602448, -0.021826190873980522, 0.029475422576069832, 0.010316397994756699, -0.03407646343111992, -0.024558059871196747, 0.021136034280061722, -0.014421389438211918, -0.007469503674656153, -0.04301973804831505, -0.02339342050254345, 0.006416296120733023, 0.006002921611070633, 0.007814581505954266, 0.022688886150717735, 0.030251849442720413, 0.001989590935409069, 0.0355430468916893, 0.018562328070402145, -0.004626203328371048, -0.0037742918357253075, 0.003220729064196348, -0.014982141554355621, 5.908564344281331e-05, -0.0006609504343941808, -0.02209937758743763, -0.02339342050254345, -0.0017451606690883636, 0.020388364791870117, -0.017699632793664932, 0.02064717374742031, 0.007210694719105959, -0.024457411840558052, 0.012171193026006222, -0.008109335787594318, 0.002541356487199664, 0.03703838586807251, 0.012811025604605675, -0.007663609925657511, -0.01614678092300892, -0.015557272359728813, 0.00025746063329279423, -0.0012401244603097439, 0.034795377403497696, 0.003165013389661908, -0.021466733887791634, -0.008188416250050068, 0.009173327125608921, 0.016779422760009766, -0.01846168003976345, 0.012616918422281742, -0.014133824966847897, -0.011775790713727474, 0.006682293955236673, -0.0012473135720938444, -0.008885761722922325, 0.009568728506565094, -0.024069199338555336, -0.053257055580616, 0.009022355079650879, -0.014385444112122059, -0.013084212318062782, 0.029403531923890114, 0.03376014158129692, -0.023853525519371033, 0.018274761736392975, -0.020733444020152092, 0.03951144590973854, -0.0035244696773588657, -0.030625682324171066, -0.008066200651228428, -0.02254510298371315, 0.0013937921030446887, -0.025147568434476852, -0.0049604978412389755, 0.012947618961334229, -0.009036732837557793, 0.040949270129203796, 0.0044285026378929615, 0.03991403430700302, -0.006912345997989178, -0.021826190873980522, -0.0021423599682748318, 0.0049245525151491165, -0.02156738191843033, -0.0027049093041568995, 0.011272551491856575, -0.020489012822508812, 0.008037444204092026, -0.015916727483272552, -0.016405589878559113, -0.028195757418870926, 0.005176171660423279, -0.017253905534744263, 0.010869961231946945, -0.023623473942279816, 0.0024622762575745583, 0.012178381904959679, 0.037584759294986725, -0.052768196910619736, 0.007102857809513807, -0.033903926610946655, -1.2026343028992414e-05, -0.02024458348751068, 0.020503392443060875, 0.01926686242222786, 0.029561692848801613, 0.025880858302116394, 0.014500469900667667, 0.0709710642695427, -0.006552889943122864, -0.0013794138794764876, -0.009295541793107986, -0.01991388387978077, 0.010194182395935059, 0.025550158694386482, -0.0013884002109989524, 0.033702630549669266, -0.023422177881002426, 0.011394767090678215, 0.0005149212665855885, -5.3412972192745656e-05, 0.005280414130538702, 0.012379677966237068, -0.015557272359728813, 0.005823193117976189, -0.019568804651498795, -0.03099951706826687, 0.022444456815719604, -0.012415623292326927, 0.0016768639907240868, 0.03269615024328232, 0.000691054854542017, -0.012041788548231125, -0.024586815387010574, 0.015801701694726944, 0.014766467735171318, 0.010596773587167263, 0.0012464149622246623, -0.0016328305937349796, -0.009489648044109344, -0.002622234169393778, 0.015010898001492023, 0.009202083572745323, 0.02332152985036373, -0.01853357069194317, -0.03286869078874588, -0.03902258351445198, 0.0018997269216924906, -0.023810390383005142, -0.02829640544950962, -0.057541776448488235, 0.022516347467899323, -0.0036233202554285526, -0.03076946549117565, 0.017138879746198654, 0.005183361005038023, 0.021596139296889305, -0.007210694719105959, 0.0066283755004405975, 0.029403531923890114], [0.007819085381925106, 0.005775170866400003, 0.07411575317382812, 0.045233532786369324, -0.016287637874484062, 0.03076695278286934, -0.03094523772597313, 0.017484696581959724, 0.013868051581084728, 0.08328471332788467, -0.03367045894265175, 0.022030971944332123, 0.013524215668439865, 0.0031184013932943344, -0.04556463658809662, 0.015599966049194336, -0.0028032183181494474, 0.04095468670129776, 0.0008309369441121817, -0.012963890098035336, 0.04811156913638115, 0.011531240306794643, -0.04054717719554901, -0.013677031733095646, -0.037974774837493896, -0.06066795065999031, 0.024819863960146904, 0.009882100857794285, 0.028984099626541138, -0.06402990221977234, 0.08409973233938217, -0.026691859588027, -0.004925132263451815, -0.027328593656420708, 0.01047426275908947, 0.00828390009701252, -0.04834079369902611, 0.010633446276187897, 0.011009118519723415, 0.008958837948739529, 0.003467012895271182, -0.020324526354670525, -0.0003706981660798192, -0.001652322942391038, -0.05807007849216461, 0.07600048929452896, -0.02893316186964512, -0.053383719176054, 0.007067739497870207, 0.016414985060691833, -0.0010872221319004893, 0.026411697268486023, 0.011875076219439507, -0.09041612595319748, 0.025482065975666046, 0.011671321466565132, 0.015014171600341797, 0.026488104835152626, 0.033517640084028244, -0.027022961527109146, 0.006647495552897453, -0.027252186089754105, 0.0013092828448861837, -0.0015026906039565802, 0.011760463938117027, 0.01408454030752182, -0.00321868690662086, 0.011766831390559673, -0.046303246170282364, 0.0003706981660798192, 0.07238384336233139, 0.061584845185279846, 0.008150186389684677, -0.003486114786937833, 0.012524544261395931, -0.034765638411045074, -0.040394362062215805, 0.03815305978059769, -0.011779566295444965, -0.033517640084028244, -0.05053115636110306, 0.021088607609272003, 0.01822330802679062, -0.005479089915752411, -0.006096721161156893, 0.017675716429948807, -0.03186213597655296, -0.001269486965611577, -0.02344452030956745, -0.018299715593457222, 0.011785933747887611, 0.021152280271053314, -0.049334097653627396, 0.02124142274260521, 0.04452039301395416, -0.028143612667918205, 0.045182596892118454, -0.03420531377196312, -0.014606662094593048, 0.03013022057712078, -0.02266770601272583, -0.03710881620645523, -0.04798422008752823, 0.022935133427381516, 0.03280450031161308, -0.03481657803058624, -0.03298278525471687, 0.06153390556573868, 0.015816455706954002, -0.04923221841454506, -0.02674279920756817, -0.012416299432516098, -0.006921290885657072, 0.08623915910720825, -0.02479439415037632, 0.007265126798301935, -0.05292527377605438, -0.007946431636810303, 0.012174340896308422, 0.02119048498570919, -0.05705130472779274, -0.013651561923325062, 0.025176435708999634, -0.04834079369902611, 0.029850056394934654, -0.014492049813270569, -0.015561762265861034, -0.013422338292002678, -0.025647617876529694, -0.029569894075393677, 0.04800968989729881, -0.02893316186964512, 0.06876719743013382, -0.09158771485090256, -0.029620833694934845, -0.01520519144833088, -0.01213613711297512, -0.0020725668873637915, -0.00321868690662086, -0.028729407116770744, 0.054300617426633835, 0.02740500122308731, 0.009143490344285965, 0.06061701104044914, -0.06606744974851608, 0.022693175822496414, -0.010818098671734333, 0.058375708758831024, -0.004157868679612875, 0.007074106950312853, -0.0018592611886560917, 0.03344123438000679, -0.0397576279938221, -0.021814482286572456, 0.02367374487221241, -0.0061635784804821014, 0.05048021674156189, 0.06183953955769539, 0.016236700117588043, -0.008544960990548134, -0.007596228271722794, 0.003272809088230133, -0.015217926353216171, -0.009531897492706776, 0.01638951525092125, -0.005577783565968275, -0.024641579017043114, 0.009512795135378838, -0.04480055347084999, -0.07121225446462631, -0.020566485822200775, -0.0697859674692154, -0.016185760498046875, -0.0007839778554625809, -0.007698105648159981, -0.04345067963004112, -0.008003737777471542, -0.0010163855040445924, 0.03405249863862991, 0.01562543585896492, 0.0062463534995913506, 0.024883536621928215, -0.10289610177278519, -0.05990386754274368, -0.03919730335474014, 0.041031092405319214, -0.0015488537028431892, 0.0012495891423895955, -0.04762765020132065, 0.004119664430618286, 0.038203999400138855, 0.017382819205522537, 0.03759273514151573, 0.022654971107840538, -0.010111324489116669, 0.02615700475871563, -0.011225608177483082, -0.034409068524837494, 0.012530911713838577, -0.04872283339500427, 0.02515096589922905, -0.04049623757600784, 0.02236207388341427, -0.008818755857646465, -0.008398512378334999, -0.02148338221013546, -0.05221213027834892, 0.010607976466417313, 0.004425296559929848, -0.04635418578982353, -0.00905434787273407, -0.01593106798827648, -0.011766831390559673, 0.02906050719320774, 0.004052807576954365, -0.012193442322313786, -0.022591298446059227, 0.053994983434677124, 0.02254035882651806, 0.014504784718155861, 0.009372713975608349, -0.002406851854175329, 0.03858603909611702, -0.04342520982027054, -0.029366139322519302, -0.014160948805510998, -0.005230763927102089, -0.0741666927933693, 0.0010752833914011717, -0.07197633385658264, -0.009092551656067371, 0.029264261946082115, 0.007475249003618956, -0.02438688464462757, 0.003301462158560753, -0.052823394536972046, -0.0011103036813437939, -0.005552314221858978, -0.029264261946082115, 0.030665075406432152, 0.039502933621406555, 0.00884422566741705, 7.118479697965086e-05, 0.0001510251750005409, 0.01651686243712902, -0.019038325175642967, -0.010658915154635906, -0.03000287339091301, 0.023775622248649597, 0.04823891445994377, 0.04604855179786682, 0.0345618836581707, 0.07121225446462631, -0.018299715593457222, -0.011282914318144321, -0.00028115755412727594, -0.008990674279630184, -0.05205931514501572, 0.01316764485090971, 0.025965984910726547, -0.032524336129426956, 0.021763544529676437, -0.03142915666103363, -0.019687794148921967, -0.036777716130018234, -0.031505562365055084, -0.0345618836581707, 0.018185103312134743, -0.020872117951512337, 0.04047076776623726, -0.024667048826813698, 0.0394265279173851, 0.0026854227762669325, -0.0494869127869606, -0.07752864807844162, 0.024348681792616844, -0.0080737778916955, -0.01828698068857193, 0.0031534216832369566, -0.039681218564510345, -0.03125087171792984, -0.0003804481530096382, 0.012830176390707493, -0.04136219620704651, 0.02745594084262848, 0.01989154890179634, -0.008990674279630184, 0.005768803879618645, -0.017319146543741226, 0.015103314071893692, 0.07381012290716171, 0.014823151752352715, -0.0055300286039710045, -0.007061372511088848, 0.037312570959329605, 0.017624778673052788, 0.010187732987105846, -0.0337468646466732, 0.008583164773881435, -0.014428376220166683, 0.0054154167883098125, -0.006813046522438526, -0.03708334639668465, -0.04869736358523369, -0.047500304877758026, 0.010270508006215096, 0.015612700954079628, -0.027201246470212936, -0.046787161380052567, 0.027124838903546333, -0.015880128368735313, 0.0024339130613952875, -0.035784412175416946, -0.07039723545312881, -0.04077640175819397, 0.02437415160238743, 0.022693175822496414, 0.04734748974442482, -0.010633446276187897, 0.010869037359952927, 0.0009662428055889904, -0.005424967966973782, 0.02664092183113098, -0.006160394754260778, 0.015459884889423847, -0.026717329397797585, -0.03639567643404007, 0.00048033567145466805, -0.03665037080645561, -0.00723329046741128, -0.028321897611021996, -0.01805775612592697, -0.001496323267929256, -0.007296963594853878, -0.021445177495479584, 0.00393501203507185, -0.03624286130070686, 0.040267013013362885, -0.0002531014906708151, 0.03300825506448746, -0.025545740500092506, -0.023126153275370598, -0.01621123030781746, 0.024845333769917488, -0.037796489894390106, 0.018770897760987282, 0.024425089359283447, 0.01524339523166418, -0.001588649582117796, 0.05898697301745415, 0.004785050638020039, 0.05740787461400032, -0.017561104148626328, 0.014861355535686016, -0.06540524214506149, 0.011575811542570591, 0.02349545806646347, 0.013829847797751427, -0.024756191298365593, -0.015549027360975742, -0.018541673198342323, -0.013231318444013596, -0.0014342417707666755, 0.017077187076210976, 0.011785933747887611, -0.013880785554647446, -0.029544426128268242, 8.227788202930242e-05, 0.026615452021360397, -0.014555723406374454, 0.033644989132881165, 0.05898697301745415, 0.005717865191400051, 0.015612700954079628, 0.024425089359283447, -0.004969703499227762, -0.01970052905380726, 0.04011419788002968, 0.008175655268132687, 0.026080595329403877, 0.029620833694934845, 0.06627120077610016, 0.0069913314655423164, 0.027430471032857895, 0.0024418721441179514, 0.03479110822081566, -0.03316107019782066, -0.04059811681509018, 0.012390829622745514, -0.017077187076210976, -0.015561762265861034, 0.02526557818055153, -0.0368286557495594, 0.027914388105273247, -0.021699871867895126, 0.03904448449611664, 0.020757505670189857, 0.02438688464462757, 0.03532596305012703, -0.019216611981391907, -0.0019086081301793456, -0.05070944130420685, -0.013702500611543655, -0.011015485972166061, -0.03191307187080383, 0.01035328395664692, -0.03367045894265175, -0.027201246470212936, -0.003839501878246665, -0.014479314908385277, -0.0020868934225291014, 0.01497596688568592, 0.04635418578982353, 0.013103971257805824, 0.006781209725886583, -0.001999342581257224, -0.01621123030781746, 0.03384874388575554, -0.02923879399895668, -0.03395061939954758, 0.0371597558259964, 0.01645318791270256, 0.0016968942945823073, -0.02510002627968788, -0.03509673848748207, 0.04212627559900284, 0.049792543053627014, -0.045590102672576904, -0.013103971257805824, -0.06178859993815422, -0.042992234230041504, -0.0006566311931237578, 0.017115391790866852, 0.03035944327712059, -0.026589982211589813, -0.014122745022177696, -0.00095032446552068, -0.006660230457782745, 0.03774555027484894, -0.03718522563576698, 0.010455160401761532, -0.027557818219065666, 0.037312570959329605, 0.02865299955010414, -0.01251180935651064, -0.020502813160419464, 0.02591504529118538, 0.03817852959036827, 0.04327239468693733, -0.01379164308309555, -0.009143490344285965, 0.010366017930209637, -0.017471961677074432, -0.010130426846444607, -0.021801747381687164, -0.0078700240701437, 0.04525900259613991, -0.049970827996730804, 0.04184611141681671, -0.0512697659432888, 0.036548491567373276, 0.03833134472370148, 0.044775087386369705, 0.03756726533174515, 0.01815963350236416, -0.021674402058124542, -0.004412561655044556, -0.01810869574546814, -0.03272809088230133, -0.03782195970416069, -0.008080145344138145, -0.03479110822081566, -0.02190362475812435, -0.009570101276040077, -0.009474591352045536, -0.009894835762679577, -0.004285214934498072, -0.007411575876176357, -0.01491229422390461, -0.015727313235402107, 0.036726776510477066, 0.06998972594738007, -0.03609004244208336, -0.021572524681687355, 0.042813945561647415, 0.012951155193150043, 0.059139788150787354, 0.019662324339151382, -0.011836872436106205, -0.019445834681391716, -0.07029535621404648, 0.002909871283918619, 0.02727765403687954, -0.013498745858669281, -0.0046927244402468204, -0.0023766071535646915, -0.028270957991480827, -0.038968078792095184, 0.03300825506448746, 0.02373741753399372, 0.040852807462215424, -0.0454372875392437, 0.003817216260358691, 0.00810561515390873, 0.019445834681391716, 0.00870414450764656, 0.0026328922249376774, 0.018210573121905327, -0.04431663826107979, 0.023699212819337845, -0.044826023280620575, 0.004485785961151123, 0.050862256437540054, 0.015714578330516815, -0.00931540783494711, 0.008927000686526299, 0.03591175749897957, -0.0168734323233366, -0.048671893775463104, 0.016478657722473145, -0.001577506773173809, -0.014275561086833477, 0.028780344873666763, 0.023482725024223328, -0.015128782950341702, 0.028449244797229767, -0.007277861703187227, -0.058324769139289856, -0.0073797390796244144, -0.0064087207429111, 0.009328142739832401, -0.015561762265861034, -0.019025590270757675, 0.02189089171588421, -0.010079488158226013, -0.0068767196498811245, -0.02071930095553398, -0.012702829204499722, -0.015268865041434765, 0.0012885889736935496, -0.009493693709373474, -0.015498088672757149, 0.0025007701478898525, 0.005803823936730623, -0.0031709319446235895, -0.007328800391405821, 0.02816908061504364, 0.04082733765244484, -0.008398512378334999, 0.0017048533773049712, 0.028627529740333557, -0.008118350058794022, 0.010308711789548397, 0.01535800751298666, 0.003368319245055318, 0.005985293071717024, 0.023750152438879013, -0.04166782647371292, 0.017026249319314957, -0.0032887274865061045, -0.0019452202832326293, -0.006768474821001291, 0.0056669265031814575, 0.0055363960564136505, -0.027710633352398872, 0.02995193377137184, 0.012403564527630806, -0.014160948805510998, -0.015485353767871857, 0.004848724231123924, -0.009544632397592068, -0.014581192284822464, 0.02000616118311882, -0.013689765706658363, 0.037541795521974564, 0.012893849052488804, 0.030817892402410507, -0.07997370511293411, 0.009990345686674118, 0.01763751171529293, -0.0184143278747797, 0.033059194684028625, -0.03089429996907711, -0.029162384569644928, -0.0028318713884800673, 0.014657600782811642, -0.012893849052488804, -0.038662444800138474, -0.0034701963886618614, 0.028551122173666954, 0.02372468262910843, -0.0034351760987192392, -0.008602267131209373, 0.006061701104044914, 0.00458766333758831, 0.04314504936337471, -0.019496774300932884, -0.008398512378334999, -0.03125087171792984, 0.031403686851263046, -0.002209464553743601, -0.006189047824591398, -0.013957194052636623, 0.026666391640901566, -0.03835681453347206, 0.0060362317599356174, 0.01981513947248459, -0.022642236202955246, 0.028602059930562973, 0.0036580327432602644, -0.0006892638048157096, 0.02591504529118538, -0.033059194684028625, -0.03993591293692589, -0.006908556446433067, 0.009168959222733974, -0.05302714928984642, -0.011091894470155239, -0.002209464553743601, -0.03094523772597313, -0.006774842273443937, 0.002860524458810687, 0.01390625536441803, -0.021508850157260895, -0.009544632397592068, -0.005246682558208704, 0.001588649582117796, -0.019904283806681633, -0.011817770078778267, -0.018006818369030952, -0.03484204784035683, -0.01198332104831934, 0.010786262340843678, -0.020795710384845734, 0.00411329697817564, 0.018006818369030952, -0.0031645644921809435, -0.024819863960146904, -0.009073449298739433, 0.007596228271722794, 0.038840729743242264, 0.021406972780823708, 0.03929917886853218, -0.04836626350879669, 0.013384133577346802, 0.018427060917019844, -0.024896271526813507, 0.020082568749785423, 0.032702621072530746, -0.0030833811033517122, 0.013600623235106468, -0.0026010554283857346, -0.0021394239738583565, 0.014301029965281487, 0.03443453833460808, -0.007367004174739122, -0.0176884513348341, 0.005434518679976463, -0.0028414223343133926, 0.03937558829784393, -0.049970827996730804, 0.03102164715528488, -0.023469990119338036, 0.016758820042014122, 0.027252186089754105, 0.00988846831023693, 0.04564104229211807, -0.012505441904067993, 0.016173025593161583, 0.00016903279174584895, -0.06061701104044914, 0.010276875458657742, 0.039910443127155304, -0.022680440917611122, -0.005867497529834509, -0.018274245783686638, 0.014899559319019318, 0.029569894075393677, -0.01952224224805832, 0.041998930275440216, -0.01852893829345703, 0.011403893120586872, -0.03298278525471687, 0.02200550213456154, 0.005100233945995569, -0.040572647005319595, 0.0350458025932312, -0.030104750767350197, -0.013868051581084728, 0.037974774837493896, 0.012460870668292046, 0.00374399172142148, -0.014033601619303226, 0.033695925027132034, 0.004890111740678549, 0.055828776210546494, 0.011321118101477623, -0.0024561986792832613, -0.02326623536646366, -0.07487984001636505, 0.01911473460495472, -0.0003515961579978466, -0.02786344848573208, -0.04747483506798744, -0.03219323605298996, -0.030232097953557968, -0.017471961677074432, -0.014250091277062893, 0.044367577880620956, -0.04668528586626053, -0.026309819892048836, 0.01859261281788349, -0.04396006837487221, -0.012199809774756432, 0.002007301663979888, -0.0007218963583000004, -0.008780552074313164, -0.0033269315026700497, -0.019140202552080154, 0.023953907191753387, -0.013677031733095646, 0.009251735173165798, -0.02462884411215782, 0.00709957629442215, 0.008430348709225655, -0.006787577178329229, 0.0069913314655423164, 0.009366346523165703, -0.010563405230641365, -0.0010124059626832604, 0.012403564527630806, 0.0027236267924308777, 0.0071377805434167385, 0.008455818518996239, -0.017064452171325684, 0.012460870668292046, -0.03657396137714386, 0.016134822741150856, -0.01734461449086666, 0.017242737114429474, -0.012620054185390472, -0.03260074555873871, -0.015765516087412834, -0.004517622757703066, 0.026360759511590004, 0.013065767474472523, -0.006329128984361887, 0.027710633352398872, 0.02510002627968788, -0.0012933645630255342, 0.011442097835242748, 0.010480630211532116, -0.04747483506798744, -0.026539044454693794, 0.04918127879500389, 0.0068894545547664165, -0.00793369673192501, -0.0004548663564492017, -0.00039775934419594705, 0.030283035710453987, 0.014835885725915432, 0.009767488576471806, -0.012346258386969566, -0.0066347611136734486, 0.01035965047776699, 0.0016443637432530522, 0.001528159948065877, -0.007538922131061554, 0.016414985060691833, -0.008532226085662842, -0.01086266990751028, -0.006077619269490242, -0.0028493814170360565, 0.03751632571220398, 0.03782195970416069, -0.022476686164736748, -0.037490855902433395, 0.0194713044911623, -0.002187178935855627, -0.007819085381925106, 0.056134406477212906, 0.004161051940172911, -0.009430020116269588, -0.021852687001228333, -0.0056605590507388115, 0.01432649977505207, -0.027379531413316727, -0.025838637724518776, 0.013829847797751427, 0.006698434241116047, -0.048086099326610565, 0.0028366469778120518, -0.018719960004091263, -0.017599308863282204, -0.03919730335474014, -0.004167419392615557, 0.0018465266330167651, -0.05669473484158516, -0.024768926203250885, 0.034943923354148865, -0.01715359464287758, 0.008888796903192997, -0.009812059812247753, 0.014848620630800724, 0.08170561492443085, 0.006157211028039455, -0.0629601925611496, 0.017484696581959724, -0.0067493729293346405, -0.011467566713690758, -0.0025119129568338394, 0.02946801669895649, 0.02082117833197117, 0.0005169478245079517, -0.027201246470212936, -0.007074106950312853, -0.0055268448777496815, 0.006679332349449396, 0.0003311013279017061, -0.004906029906123877, 0.019280284643173218, -0.0066347611136734486, 0.011639485135674477, -0.0022142401430755854, 0.0007680595736019313, -0.009748387150466442, -0.01953497715294361, -0.0051607233472168446, -0.0024975864216685295, -0.012384463101625443, 0.00783818680793047, -0.010041284374892712, 0.03249886631965637, 0.017726656049489975, -0.010060385800898075, -0.0061667622067034245, -0.03644661605358124, 0.0098184272646904, 0.02656451426446438, 0.015485353767871857, 0.029799118638038635, 0.00037567265098914504, -0.009550999850034714, -0.01461939699947834, -0.021801747381687164, 0.0025469332467764616, 0.010601609945297241, 0.00783818680793047, -0.007761778775602579, 0.019305754452943802, -0.014899559319019318, 0.003255299059674144, -0.001889506122097373, -0.02224746160209179, -0.010276875458657742, -0.030435852706432343, 0.017548369243741035, -0.009264469146728516, -0.0021107709035277367, 0.0056573753245174885, 0.014339233748614788, -0.01538347639143467, 0.006564720533788204, -0.006851250305771828, -0.0055268448777496815, 0.00867230724543333, 0.014848620630800724, 0.00035219310666434467, -0.005179825238883495, 0.015638170763850212, 0.01390625536441803, -0.03675224632024765, 0.02574949525296688, 0.013536949642002583, -0.03153103217482567, -0.028372835367918015, -0.03155650198459625, 0.007723574992269278, 0.0054154167883098125, 0.004667255096137524, 0.020910320803523064, 0.02189089171588421, 0.04505524784326553, 0.02243848145008087, -0.04385818913578987, -0.0020359547343105078, -0.030257565900683403, 0.026488104835152626, 0.032040420919656754, -0.014008132740855217, -0.012677360326051712, -0.005049295257776976, 0.023164357990026474, 0.004466684069484472, 0.002747504273429513, 0.03415437415242195, -0.03952840343117714, 0.007691738195717335, -0.007806350477039814, -0.021980034187436104, -0.05878321826457977, -0.006469210144132376, -0.007920962758362293, -0.00016953024896793067, -0.005093866493552923, 0.0004819275054614991, 0.0023702397011220455, 0.009550999850034714, 0.018860040232539177, 0.017790328711271286, 0.026768267154693604, -0.009952141903340816, -0.016198495402932167, 0.02987552620470524, 0.025991452857851982, -0.0034956657327711582, 0.015905598178505898, 0.0018974652048200369, 0.010722588747739792, 0.014504784718155861, 0.06530337035655975, -0.026997491717338562, 0.01493776310235262, -0.029900996014475822, 0.030665075406432152, -0.01062707882374525, 0.021279627457261086, 0.024768926203250885, 0.018299715593457222, -0.06066795065999031, -0.00950006116181612, 0.0080737778916955, 0.009773856028914452, 0.055777836591005325, -0.015752781182527542, 0.004804152995347977, -0.01058887504041195, 0.0071186781860888, 0.018248775973916054, -0.015574496239423752, -0.00472137751057744, 0.03237152099609375, 0.019509509205818176, -0.04248284548521042, -0.008952470496296883, -0.001223323866724968, 0.002021628199145198, 0.04006325826048851, 0.03186213597655296, -0.013065767474472523, 0.06535430997610092, -0.03265168517827988, 0.008118350058794022, 0.0026440350338816643, -0.030104750767350197, -0.00023678519937675446, 0.02177627943456173, -0.008513124659657478, 0.0402415432035923, -0.01859261281788349, 0.01651686243712902, 0.027532348409295082, 0.016287637874484062, -0.020337261259555817, 0.027150308713316917, 0.02521463856101036, 0.02308795042335987, -0.02722671627998352, -0.03030850552022457, 0.02283325605094433, -0.01650412753224373, 0.0012129769893363118, 0.06535430997610092, 0.02101219817996025, -0.004259745590388775, 0.002527831122279167, 0.0039413790218532085, 0.0013586296699941158, -0.0013411195250228047, 0.0001146119975601323, -0.014886824414134026, 0.04546275734901428, 0.011550341732800007, 0.010015814565122128, 0.005208478309214115, 0.02651357464492321, 0.007806350477039814, 0.03662490099668503, 0.02242574654519558, -0.0010466303210705519, 0.04324692487716675, -0.0026408513076603413, 0.0022986072581261396, 0.021648932248353958, -0.005399498622864485, 0.050505686551332474, 0.010754425078630447, -0.018427060917019844, 0.027175776660442352, 0.0232025608420372, 0.02367374487221241, 0.02414492703974247, 0.03071601502597332, 0.025813167914748192, 0.001031507970765233, 0.01153760775923729, 0.014784947037696838, 0.008570429868996143, -0.010493365116417408, -0.018388858065009117, -0.009595571085810661, -0.028423774987459183, -0.003893624059855938, 0.02331717312335968, -0.024947211146354675, -0.0035943593829870224, 0.023877499625086784, -0.05129523575305939, -0.035708002746105194, -0.035886287689208984, -0.022476686164736748, -0.0055268448777496815, 0.021878156810998917, 0.012403564527630806, 0.026895614340901375, 0.0021330565214157104, -0.026589982211589813, -0.02000616118311882, 0.04360349476337433, -0.016720617190003395, 0.013040297664701939, 0.030996177345514297, 0.01305303256958723, 0.030104750767350197, 0.013358664698898792, 0.021852687001228333, -3.5349889913049992e-06, 0.015892863273620605, -0.013944459147751331, 0.013333195820450783, -0.014874089509248734, -0.015727313235402107, -0.05424967780709267, 0.04355255886912346, 0.011257444508373737, -0.00991393718868494, -0.02923879399895668, -0.006832148414105177, 0.018197838217020035, 0.004686356987804174, -0.010143161751329899, 0.049919892102479935, -0.03687959164381027, 0.03718522563576698, 0.002648810623213649, -0.028270957991480827, -0.030232097953557968, -0.0013427113881334662, -0.003240972524508834, 0.021929094567894936, -0.006055333651602268, -0.028856752440333366, -0.014160948805510998, -0.008506757207214832, 0.0211777500808239, 0.016249433159828186, -0.028678467497229576, 0.03698147088289261, 0.017306411638855934, 0.0015026906039565802, 0.004724561236798763, -0.007653534412384033, 0.002694973722100258, 0.02148338221013546, 0.0044475821778178215, 0.013078502379357815, 0.012785605154931545, -0.0007652738131582737, 0.010034916922450066, 0.009907569736242294, -0.015561762265861034, -0.018388858065009117, -0.02408125437796116, -0.012499074451625347, -0.017803063616156578, -0.024781659245491028, -0.042279090732336044, 0.0030833811033517122, -0.029442548751831055, 0.004718193784356117, -0.050454746931791306, 0.010913608595728874, 0.026233412325382233, 0.003053136169910431, 0.021878156810998917, -0.002683830913156271, 0.0240939874202013, -0.0011222424218431115, -0.01204699371010065, 0.011849606409668922, 0.011684056371450424, 0.011181036941707134, 0.004960152320563793, -0.025049088522791862, 0.02344452030956745, -0.006160394754260778, 0.014097275212407112, 0.02628435008227825, 0.01887277513742447, -0.0020041181705892086, -0.021916359663009644, -0.01074169110506773, 0.022756848484277725, -0.02278231829404831, -0.015599966049194336, 0.0021394239738583565, -0.016109352931380272, 0.00034940740442834795, 0.02674279920756817, -0.002925789449363947, -0.0075898608192801476, -0.025354720652103424, -0.03919730335474014, -0.016364045441150665, 0.01255001313984394, 0.02615700475871563, -0.013562419451773167, 0.017624778673052788, 0.03491845354437828, -0.021750809624791145, 0.0020502812694758177, -0.03410343453288078, -0.02213284932076931, -0.00013043083890806884, -0.015638170763850212, 0.01023867167532444, -0.00994577445089817, -0.04327239468693733, -0.021394239738583565, -0.024998148903250694, -0.007984635420143604, 0.02425953932106495, -0.004415745381265879, -0.01213613711297512, -0.006061701104044914, -0.00225562765263021, 0.02557121030986309, 0.06774841994047165, -0.004711826331913471, -0.015332537703216076, 0.034001559019088745, 0.038662444800138474, -0.0041992561891674995, 0.003985950257629156, 0.05014911666512489, 0.009283571504056454, -0.023661009967327118, -0.04439304769039154, 0.01716632954776287, 0.02692108415067196, -0.009009776636958122, -0.022591298446059227, -0.009570101276040077, 0.025940515100955963, 0.03226964548230171, 0.014479314908385277, -0.007666268851608038, 0.034943923354148865, -0.06754466891288757, 0.001506670145317912, -0.015256130136549473, -0.019611386582255363, -0.01627490296959877, -0.009009776636958122, -0.013244052417576313, -0.0033842374105006456, 0.011703157797455788, -0.0035943593829870224, -0.0037312570493668318, -0.005380396265536547, 0.015829190611839294, -0.016020210459828377, -0.019560446962714195, 0.007347902283072472, 0.0012710788287222385, -0.0023845662362873554, 0.006345047149807215, -0.0066220262087881565, -0.00238934182561934, -0.002325668465346098, -0.029366139322519302, 0.032524336129426956, 0.02638622745871544, -0.012238014489412308, -0.01020683441311121, -0.0017510165926069021, -0.01328225713223219, 0.0031995847821235657, 0.03158197179436684, -0.036370206624269485, -0.01953497715294361, -0.02082117833197117, -0.01781579852104187, 0.0034479107707738876, -0.008054676465690136, -0.015459884889423847, -0.010932710953056812, 0.010964547283947468, 0.02574949525296688, -0.022234726697206497, 0.0018592611886560917, 0.0004672030627261847, 0.007570758927613497, -0.007048637606203556, -0.006306843366473913, -0.014542988501489162, -0.005310355685651302, -0.025341985747218132, -0.0023447703570127487, 0.005686028394848108, 0.028041735291481018, -0.010639813728630543, 0.023049745708703995, -0.012021524831652641, 0.035351432859897614, -0.01535800751298666, -0.010869037359952927, -0.03183666616678238, -0.0075452895835042, 0.018923712894320488, 0.03160744160413742, -0.012632789090275764, 0.0007959166541695595, 0.00019818324653897434, 0.010327814146876335, 0.011384791694581509, 0.05735693499445915, 0.010722588747739792, -0.0009081408497877419, 0.03871338441967964, 0.008175655268132687, -0.0022810969967395067, 0.011340220458805561, -0.008621368557214737, -0.03522408753633499, -0.015638170763850212, -0.006322761531919241, 0.020311791449785233, -0.0019834241829812527, 0.0030197077430784702, 0.03675224632024765, -0.01705171726644039, 0.02018444612622261, -0.014186417683959007, -0.00899704173207283, 0.01551082357764244, -0.008443083614110947, 0.0116012804210186, -0.016898902133107185, 0.02485806867480278, -0.01669514738023281, -0.018019553273916245, -0.0010593649931252003, -0.006119007244706154, -0.021585259586572647, -0.0203627310693264, 0.03262621536850929, 0.0011110996128991246, -0.012562748044729233, 0.03318654000759125, 0.013205848634243011, 0.017854001373052597, 0.04148954153060913, -0.005218029487878084, 0.033874209970235825, -0.030232097953557968, 0.005183008965104818, 0.00045685615623369813, -0.006131741683930159, -0.00934724509716034, 0.016847962513566017, -0.0037949304096400738, 0.012142503634095192, -0.012868380174040794, 0.008837858214974403, -0.0037280735559761524, -0.00907981675118208, 0.00612219050526619, 0.021508850157260895, 0.015217926353216171, -0.010111324489116669, -0.01189417764544487, -0.003140687011182308, 0.00014008131984155625, -0.019076529890298843, -0.006946760229766369, -0.011053689755499363, -0.015778250992298126, 0.023215295746922493, 0.016962574794888496, 0.044418513774871826, 0.003871338441967964, -0.020388200879096985, -0.016758820042014122, -0.014657600782811642, 0.00046600919449701905, -0.01319311372935772, 0.01242903433740139, 0.013333195820450783, -0.003556155599653721, 0.022705908864736557, 0.029850056394934654, 0.0001219742262037471, -0.013766174204647541, 0.011340220458805561, 0.020808443427085876, 0.003467012895271182, -0.02301154099404812, -0.025813167914748192, 0.040572647005319595, 0.03514767810702324, -0.044469453394412994, -0.018605347722768784, -0.0068894545547664165, 0.02687014453113079, -0.05154992640018463, -0.0011994463857263327, -0.00018863224249798805, 0.02628435008227825, -0.029366139322519302, -0.014453846029937267, -0.005214845761656761, -0.016198495402932167, 0.0071314130909740925, -0.012257115915417671, 0.013371399603784084, -0.0014119561528787017, -0.009041612967848778, 0.007615330163389444, 0.04166782647371292, -0.020031629130244255, 0.029085977002978325, -0.009385448880493641, 0.007723574992269278, 0.011009118519723415, 0.016822494566440582, 0.006793944165110588, -0.008525858633220196, -0.03005381114780903, -0.00012943593901582062, -0.011543975211679935, -0.029213324189186096, -0.02047734335064888, -0.002782524563372135, 0.010257773101329803, -0.004262929316610098, 0.0035370534751564264, 0.019662324339151382, -0.018376123160123825, 0.0345618836581707, 0.018274245783686638, -0.007946431636810303, -0.017433756962418556, -0.010092223063111305, -0.00018455316603649408, -0.004963336046785116, -0.02977364882826805, -0.006895821541547775, -0.0017748940736055374, 0.036905061453580856, -0.04480055347084999, -0.019203877076506615, 0.026768267154693604, 0.007628065068274736, 0.004921948537230492, 0.02208191156387329, -0.032167766243219376, 0.021585259586572647, 0.01585465855896473, -0.001698486041277647, -0.03130180761218071, -0.022705908864736557, 0.0034765638411045074, -0.007023168262094259, 0.010926343500614166, 0.005768803879618645, -0.024832598865032196, -0.007825451903045177, -0.002623341279104352, 0.028194550424814224, 0.009328142739832401, -0.0004942642408423126, 0.011575811542570591, -0.01864355057477951, -0.005740150809288025, -0.02242574654519558, -0.028321897611021996, 0.009270836599171162, -0.004492153413593769, -0.005832477007061243, -0.02455243654549122, 0.024043049663305283, -0.022400276735424995, 0.003623012453317642, -0.012142503634095192, -0.009366346523165703, -0.010856302455067635, 0.011881443671882153, -0.05132070556282997, 0.01239719707518816, 0.017803063616156578, 0.03983403369784355, 0.027787040919065475, -0.019687794148921967, -0.00545998802408576, -0.04047076776623726, 0.026488104835152626, 0.01091997604817152, -0.022514889016747475, 0.007831819355487823, -0.018478000536561012, -0.016287637874484062, 0.01840159296989441, 0.028245490044355392, 0.0019229345489293337, 0.008506757207214832, -0.012524544261395931, -0.005873864516615868, 0.008564063347876072, 0.009633774869143963, 0.00946822389960289, -0.0015560169704258442, 0.023355377838015556, -0.029264261946082115, 0.017128126695752144, -0.0021330565214157104, -0.003237788798287511, 0.052466824650764465, 0.005810191389173269, -0.012333524413406849, 0.0029241975862532854, -0.013307726010680199, 0.022705908864736557, 0.003073829924687743, 0.008449451066553593, 0.007704473100602627, 0.0071377805434167385, 0.004523990210145712, 0.016618739813566208, 0.020579220727086067, -0.004183338023722172, 0.01888551004230976, 0.02651357464492321, -0.009296306408941746, 0.025189168751239777, -0.005319906864315271, -0.014097275212407112, -0.032473400235176086, 0.0012734666233882308, -0.010970914736390114, -0.022463951259851456, -0.004654520656913519, -0.00612219050526619, -0.01851620525121689, -0.004250194877386093, 0.018809102475643158, 0.020490078255534172, 0.01290021650493145, 0.0036007268354296684, 0.005106600932776928, -0.03970668837428093, 0.06061701104044914, 0.0025548923294991255, 0.00952553004026413, -0.03361951932311058, -0.015128782950341702, -0.028016265481710434, 0.038382284343242645, -0.0010577732464298606, 0.043348804116249084, -0.014581192284822464, 0.020566485822200775, 0.013396868482232094, 0.003833134425804019, 0.03193854168057442, 0.005198927596211433, -0.008124716579914093, -0.007417942862957716, -0.009430020116269588, -0.017128126695752144, -0.002581953536719084, -0.017191799357533455, 0.034765638411045074, 0.01846526563167572, 0.016249433159828186, -0.0124545032158494, 0.028321897611021996, 0.03155650198459625, 0.03558065742254257, 0.03188760206103325, -0.022413011640310287, -0.006173129193484783, -0.02888222225010395, 0.006532883737236261, -0.009722917340695858, 0.02638622745871544, -0.03446000814437866, -0.028270957991480827, 0.0310725849121809, -0.022502154111862183, 0.012798339128494263, 0.01929301954805851, -0.026539044454693794, -0.019152937456965446, -0.0249090064316988, -0.0018608530517667532, 0.030817892402410507, -0.0034988494589924812, -0.01113009825348854, -0.016491392627358437, -0.005253049544990063, 0.003683502087369561, -0.043348804116249084, -0.025787698104977608, 0.012753767892718315, -0.003406523261219263, 0.018898244947195053, 0.018567143008112907, -0.014211887493729591, 0.003896807786077261, -0.039502933621406555, 0.0368286557495594, -0.025851372629404068, 0.020515546202659607, -0.020451873540878296, 0.03186213597655296], [0.009322209283709526, 0.014302387833595276, 0.04770971089601517, 0.061998941004276276, -0.017104972153902054, 0.062472619116306305, -0.01971019059419632, 0.018104953691363335, -0.009868253022432327, 0.04547290876507759, 0.027973206713795662, 0.0034999402705579996, -0.000993404071778059, -0.013868184760212898, -0.0034374413080513477, 0.0030460006091743708, 0.008664325810968876, 0.05065703019499779, -0.01182874571532011, 0.020749645307660103, 0.10189300030469894, 0.015486577525734901, 0.007545923814177513, -0.018078638240695, -0.046657100319862366, -0.06410416960716248, -0.006016344763338566, 0.003368363482877612, 0.024118009954690933, -0.08731430023908615, 0.04699919745326042, -0.030183695256710052, 0.0201838668435812, -0.0052433316595852375, -0.014526068232953548, -0.001484349719248712, 0.019591771066188812, -0.0393151193857193, -0.013269510120153427, 0.02218383178114891, 0.017986536026000977, -0.030183695256710052, -0.028446882963180542, 0.02249961532652378, -0.0523938424885273, 0.034552041441202164, -0.014828694052994251, -0.0770513191819191, 0.016618138179183006, -0.0127234673127532, 0.0003281194076407701, 0.040446680039167404, 0.006707122549414635, -0.042078230530023575, -0.00015141599578782916, 0.01230242196470499, 0.021354898810386658, 0.028394252061843872, 0.007638027425855398, -0.05636746063828468, 0.039183542132377625, -0.011512961238622665, -0.01409186515957117, -0.021565420553088188, 0.0015369803877547383, 0.026157448068261147, -0.011809009127318859, 0.01290767453610897, -0.02276276983320713, -0.02265750803053379, 0.06568308919668198, 0.037499360740184784, 0.01159190759062767, -0.0015476709231734276, 0.0005571451038122177, 0.0011702103074640036, -0.03144683316349983, 0.036288853734731674, -0.032604705542325974, -0.015170793980360031, -0.04842022806406021, 0.02818373031914234, 0.0090393191203475, -0.01046034786850214, -0.007302506826817989, -0.022749612107872963, -0.043288733810186386, 0.013164249248802662, -0.028841612860560417, -0.029710019007325172, -0.014697117730975151, 0.02482852339744568, -0.041130878031253815, 0.018618103116750717, 0.018789153546094894, -0.040236156433820724, -0.02007860504090786, -0.021486476063728333, -0.03536781668663025, -0.0011619867291301489, -0.03286786004900932, -0.006986722815781832, -0.059262145310640335, -0.011276123113930225, 0.02113121747970581, 0.026539020240306854, -0.006631465628743172, 3.78026015823707e-05, -0.01823653094470501, -0.04857811704277992, -0.03168366849422455, -0.03726252168416977, 0.022854873910546303, 0.04342031106352806, -0.022223304957151413, -0.0004134386545047164, -0.04342031106352806, -0.04268348217010498, 0.017697066068649292, -0.023381179198622704, -0.04520975425839424, -0.004539396148175001, 0.018315477296710014, -0.03323627635836601, 0.027631107717752457, -0.026025870814919472, -0.007249876391142607, -0.014841851778328419, -0.024736419320106506, -0.05342014133930206, 0.04220980778336525, -0.01101296953856945, 0.07584080845117569, -0.03515729308128357, -0.0377361997961998, -0.0018108243821188807, -0.03199945390224457, -0.024012748152017593, -0.01738128252327442, 0.0011167572811245918, 0.024275900796055794, 0.047446560114622116, 0.016249721869826317, 0.008999846875667572, -0.06520941108465195, -0.0073485588654875755, -0.014618171378970146, 0.008986689150333405, 0.029367920011281967, -0.02356538735330105, 0.013828711584210396, 0.039604585617780685, -0.060788437724113464, -0.023302234709262848, 0.0011776115279644728, 0.019960185512900352, 0.03394678980112076, 0.0717882513999939, 0.018986517563462257, 0.01753917522728443, -0.038499344140291214, -0.0014621460577473044, -0.02603902854025364, 0.002016413025557995, 0.017354967072606087, -0.03189419209957123, -0.031236309558153152, 0.019723348319530487, -0.02813109941780567, -0.01330898329615593, -0.03394678980112076, -0.038236189633607864, -0.03399942070245743, -0.005555826239287853, -0.026736386120319366, -0.02402590587735176, 0.00292593683116138, 0.00659857178106904, 0.0029983040876686573, -0.0059472667053341866, -0.007578818127512932, 0.019618086516857147, -0.08489328622817993, -0.011499803513288498, -0.00872353557497263, 0.011934006586670876, -0.020170709118247032, -0.016276037320494652, -0.046604469418525696, 0.03747304528951645, 0.015355001203715801, 0.015407632105052471, 0.027999522164463997, 0.008295911364257336, -0.009085371159017086, 0.030341587960720062, -0.03155209496617317, -0.014368175528943539, 0.010782710276544094, -0.0403677336871624, 0.006108448375016451, -0.05536747723817825, 0.03486782684922218, -0.059735823422670364, -0.03294680640101433, -0.04886758700013161, -0.05131491273641586, 0.009223527275025845, 0.02551272325217724, -0.05055176839232445, 0.02007860504090786, -0.016670769080519676, 0.010177457705140114, 0.020262811332941055, 0.021894363686442375, 0.015170793980360031, -0.05223594978451729, 0.08589327335357666, 0.03526255488395691, -0.0050722816959023476, -0.004138087388128042, 0.029578441753983498, 0.044709764420986176, -0.04642026126384735, -0.008105125278234482, 0.0009226816473528743, 0.0064735738560557365, -0.08294595032930374, 0.009973513893783092, -0.059314776211977005, 0.018854942172765732, -0.012256369926035404, 0.007473556790500879, -0.061209481209516525, -0.008881427347660065, -0.03978879377245903, 0.0191312525421381, 0.013355035334825516, 0.019328618422150612, 0.01639445684850216, 0.0351046659052372, 0.006312392186373472, 0.03368363529443741, 0.005684113595634699, 0.014776064082980156, -0.01385502703487873, 0.009335367009043694, -0.05726218223571777, 0.029210027307271957, 0.002550943288952112, 0.014262914657592773, 0.007124878466129303, 0.07326190918684006, -0.06426206231117249, -0.043341364711523056, 0.013736607506871223, -0.05144648998975754, -0.03297312185168266, -0.028341621160507202, 0.044657133519649506, -0.02818373031914234, -0.03326259180903435, -0.00782881397753954, -0.059314776211977005, -0.03963090106844902, -0.012006374076008797, 0.0006138875614851713, -0.011026127263903618, -0.058525316417217255, 0.02365749143064022, -0.007552502676844597, 0.019736506044864655, 0.03647306188941002, -0.057946380227804184, -0.11084021627902985, 0.019065463915467262, 0.01146690919995308, 0.020854907110333443, 0.009539310820400715, -0.022091727703809738, -0.028525829315185547, 0.005016361828893423, -0.03447309508919716, -0.038920387625694275, 0.02518378011882305, 0.022315409034490585, -0.005174253601580858, -0.002578903455287218, -0.0018009560881182551, 0.030657371506094933, 0.06899882107973099, 0.03599938750267029, 0.029683703556656837, -0.019104937091469765, 0.022196989506483078, 0.02640744484961033, 0.034288886934518814, -0.008736693300306797, 0.007216982077807188, -0.029262658208608627, 0.014907640404999256, 0.05552536994218826, -0.009539310820400715, -0.03126262500882149, -0.04273611307144165, 0.006881461478769779, 0.004085456486791372, -0.0487886406481266, -0.030499478802084923, -0.012269527651369572, -0.0008560708956792951, 0.024368004873394966, -0.043867673724889755, -0.03857829049229622, -0.026907434687018394, 0.00782881397753954, 0.027394268661737442, 0.010526136495172977, 0.0072301398031413555, 0.009453785605728626, 0.022960133850574493, -0.0015846769092604518, 0.016315510496497154, 0.013216880150139332, -0.008466960862278938, -0.03910459578037262, -0.022854873910546303, 0.011789272539317608, -0.02534167282283306, 0.0076117124408483505, 0.0120458472520113, 0.030841579660773277, 0.03376258164644241, 0.007269612979143858, -0.018118111416697502, -0.01697339490056038, -0.031183678656816483, 0.03978879377245903, 0.024473266676068306, 0.024749577045440674, 0.023907486349344254, -0.03768356889486313, -0.023118026554584503, 0.015210267156362534, -0.02609165944159031, 0.059262145310640335, 0.0372098907828331, 0.020907538011670113, -0.005891346838325262, 0.023618018254637718, 0.006203841418027878, 0.04105193167924881, -0.041288770735263824, -0.00258219288662076, -0.0649462565779686, -0.005503195337951183, 0.014315545558929443, -0.01135506946593523, -0.016631295904517174, 0.006986722815781832, -0.01765759289264679, -0.0048189968802034855, 0.014433964155614376, 0.01844705455005169, 0.03226260840892792, -0.0046249208971858025, -0.030104748904705048, 3.849646600428969e-05, 0.0059735821560025215, -0.01685497537255287, 0.026920592412352562, 0.01660498045384884, 0.003397968364879489, -0.0011800786014646292, 0.013710292056202888, -0.02718374691903591, 0.00848669745028019, 0.01844705455005169, 0.005509774200618267, 0.034499410539865494, 0.022696981206536293, 0.03497308865189552, 0.0037137523759156466, -0.011361648328602314, 0.03199945390224457, 0.044657133519649506, -0.06678833067417145, -0.02519693784415722, -0.042867690324783325, 0.0007927496335469186, 0.014381333254277706, -0.04942020773887634, -0.03573623299598694, 0.022775927558541298, -0.028815297409892082, 0.0345783568918705, -0.02465747483074665, 0.03284154459834099, 0.0502886138856411, 0.030946839600801468, -0.004427555948495865, -0.04189402237534523, -0.019249672070145607, 0.03215734660625458, -0.04776234179735184, 0.011809009127318859, -0.024315373972058296, 0.005259778816252947, -0.0005328856641426682, 0.01194058544933796, 0.030499478802084923, 0.024052221328020096, 0.03347311168909073, 0.026631124317646027, 0.028473198413848877, -0.028867928311228752, -0.019960185512900352, 0.02776268497109413, 0.010690607130527496, -0.06510414928197861, 0.03336784988641739, 0.03663095459342003, -0.005503195337951183, -0.03126262500882149, 0.009341945871710777, 0.037025682628154755, 0.058630578219890594, -0.01597341150045395, -0.013447139412164688, -0.040709830820560455, -0.059472668915987015, 0.011460330337285995, 0.009118265472352505, 0.04305189847946167, -0.03868354856967926, -0.008440645411610603, 0.015394474379718304, -0.0043420311994850636, -0.0019473352003842592, -0.005450564902275801, 0.014920798130333424, -0.01738128252327442, 0.012091899290680885, 0.007506450638175011, -0.014881324954330921, 0.035236239433288574, 0.02713111601769924, 0.004115061368793249, 0.02634165622293949, -0.001052613602951169, 0.03626253828406334, 0.014920798130333424, -0.038920387625694275, -0.00946036446839571, -0.024420635774731636, -0.019012833014130592, 0.01574973203241825, -0.036499377340078354, 0.023328550159931183, -0.030078433454036713, -0.006460416130721569, 0.060998957604169846, 0.03810461238026619, 0.0477360263466835, 0.006519625429064035, -0.054841168224811554, -0.01580236107110977, -0.03531518578529358, 0.001461323699913919, -0.0002610975061543286, 0.013466875068843365, -0.007769604213535786, -0.030183695256710052, -0.002976922784000635, -0.0025476538576185703, -0.02397327497601509, -0.0314994640648365, -0.04257822036743164, 0.01064455509185791, -0.006693964824080467, -0.014394490979611874, 0.04705182835459709, -0.06736727058887482, -0.03268365189433098, 0.0440518781542778, -0.021144375205039978, 0.057156920433044434, -0.017276020720601082, -0.011539276689291, -0.011743220500648022, 0.004365057218819857, 0.010427453555166721, 0.01790758967399597, -0.014618171378970146, 0.020539123564958572, 0.021999625489115715, -0.026275867596268654, -0.0032351422123610973, 0.038236189633607864, 0.022328566759824753, 0.030999470502138138, -0.014749748632311821, 0.030131064355373383, 0.025420619174838066, 0.04857811704277992, -0.005782796069979668, 0.013341877609491348, 0.004167692270129919, -0.01246689260005951, 0.031236309558153152, -0.03552570939064026, -0.002462129108607769, 0.00803275778889656, 0.015604997053742409, -0.0007228495087474585, -0.001832205569371581, 0.015618154779076576, -0.0014465213753283024, -0.04842022806406021, 0.028973190113902092, -0.004351899493485689, -0.03223629295825958, 0.0164997186511755, 0.0005184944602660835, -0.029052136465907097, 0.0029062004759907722, -0.024618001654744148, -0.018881257623434067, -0.018328635022044182, -0.0040130894631147385, 0.026894278824329376, -0.007736709900200367, 0.0023914065677672625, 0.01590762287378311, 0.010230088606476784, 0.009164317511022091, 0.01069718599319458, 0.002981856931000948, -0.023631175979971886, 8.598742715548724e-05, -0.0005892169428989291, 0.011539276689291, 0.016420772299170494, -0.009236684069037437, 0.0021002930589020252, 0.0038584868889302015, 0.03199945390224457, 0.015552366152405739, 0.006894619204103947, -0.0008478473755531013, -0.001680892426520586, -0.00927615724503994, 0.018315477296710014, -0.012447156012058258, -0.008749851025640965, 0.02097332663834095, 0.0047433399595320225, -0.05181490629911423, -0.008414329960942268, -0.017881274223327637, -0.003009817097336054, 0.02530219964683056, 0.030525794252753258, -0.020104920491576195, -0.03415731340646744, 0.03810461238026619, 0.017315493896603584, -0.009809043258428574, -0.014512910507619381, 0.020565439015626907, 0.028631091117858887, -0.013065566308796406, -0.0020312152337282896, -0.023420652374625206, 0.037183575332164764, 0.02624955214560032, -0.005680824164301157, -0.0719461441040039, 0.00469070952385664, 0.034604672342538834, -0.006513046566396952, 0.014486595056951046, -0.014447121880948544, -0.00022080214694142342, -0.015447105281054974, 0.039394065737724304, -0.01332871988415718, -0.005207147914916277, -0.008789323270320892, 0.020999642089009285, -0.014578698202967644, -0.004749918822199106, 0.0020904247649013996, 0.015460262075066566, 0.021525949239730835, 0.02713111601769924, 0.019460193812847137, 0.004361767787486315, -0.008611694909632206, -0.005256489384919405, -0.007190666627138853, 0.013223459012806416, -0.0005892169428989291, 0.011782693676650524, -0.007164351642131805, 0.01796022057533264, 0.007157772779464722, -0.006624886766076088, 0.035604655742645264, -0.0007269612979143858, -0.02351275645196438, -0.0024243006482720375, -0.019420720636844635, -0.02682849019765854, 0.0063321287743747234, 0.029367920011281967, -0.04815707355737686, -0.013723449781537056, -0.005249910522252321, 0.0065163359977304935, -0.020420704036951065, 0.022894347086548805, -0.0314994640648365, -0.01971019059419632, 0.011124810203909874, 0.00644396897405386, -0.015486577525734901, -0.011282701976597309, -0.04273611307144165, -0.012506365776062012, -0.012558996677398682, -0.043288733810186386, 0.002649625763297081, -0.054893799126148224, 0.025262726470828056, 0.003993352875113487, -0.018197057768702507, 0.01960492879152298, -0.0030509347561746836, 0.0017845090478658676, 0.029841596260666847, 0.056841135025024414, 0.01849968358874321, -0.036288853734731674, 0.02497325837612152, 0.009309051558375359, -0.02271013893187046, 0.019052306190133095, 0.007453820202499628, -0.007197245489805937, -0.008151176385581493, -0.016670769080519676, -0.024749577045440674, -0.027946891263127327, 0.019683875143527985, 0.015065532177686691, -0.0041347979567945, 0.017473386600613594, -0.000708047125954181, 0.043920304626226425, -0.0377361997961998, 0.021775944158434868, 0.010197194293141365, 0.02360486052930355, 0.04173612967133522, 0.011506382375955582, 0.02572324499487877, -0.006611729506403208, 0.015460262075066566, 0.030736317858099937, -0.04968336224555969, 0.019012833014130592, 0.05263068154454231, -0.035236239433288574, -0.008934058248996735, -0.019933870062232018, -0.009387997910380363, -0.000676797644700855, -0.00421703327447176, 0.034236256033182144, 0.008401172235608101, -0.0017713513225317001, -0.022407513111829758, 0.014249756932258606, -0.009361682459712029, -0.03323627635836601, 0.03376258164644241, -0.03347311168909073, 0.0056183249689638615, 0.029131080955266953, 0.010532715357840061, 0.0243943203240633, 0.025381145998835564, -0.004786102566868067, -0.000637735822238028, 0.062209464609622955, -0.009881410747766495, -0.01253926008939743, -0.03176261484622955, -0.0974193885922432, 0.024196956306695938, -0.01586814969778061, 0.0031331703066825867, -0.0341309979557991, -0.04489397257566452, -0.043499257415533066, -0.029920542612671852, 0.002850280376151204, 0.05020967125892639, -0.026841647922992706, -0.02440747804939747, 0.0398414246737957, -0.059683192521333694, -0.0018305608537048101, 0.003575596958398819, 0.004914389923214912, -0.004374925512820482, -0.030104748904705048, -0.014670802280306816, 0.022407513111829758, -0.018947044387459755, 0.02455221302807331, -0.04473607987165451, -0.029683703556656837, 0.012032689526677132, 0.012815570458769798, 0.014420806430280209, 0.029999488964676857, 0.008815638720989227, -0.03134157136082649, -0.004496634006500244, -0.016039200127124786, 0.01409186515957117, 0.007559081539511681, -0.01032877154648304, 0.015197109431028366, -0.035657286643981934, -0.018802311271429062, -0.028762666508555412, -0.008388014510273933, -0.029999488964676857, -0.033394165337085724, -0.018512841314077377, 0.004516370128840208, -0.007953811436891556, -0.020775960758328438, -0.02351275645196438, 0.010197194293141365, 0.03431520238518715, 0.003157840808853507, 0.019012833014130592, 0.011420858092606068, -0.027736369520425797, -0.028367936611175537, 0.03334153816103935, -0.027262693271040916, 0.0009769570315256715, 0.014762906357645988, -0.00980246439576149, 0.04015721008181572, -0.008736693300306797, 0.010901129804551601, -0.0022400934249162674, -0.014183968305587769, 0.030946839600801468, -0.016039200127124786, 0.02318381518125534, -0.02246014215052128, 0.03199945390224457, 0.0039604585617780685, -0.01923651434481144, 0.013348456472158432, -0.025960084050893784, 0.03468361869454384, 0.046078160405159, 8.86086854734458e-05, -0.017854958772659302, -0.003947300836443901, 0.015157636255025864, 0.016512876376509666, 0.05331487953662872, -0.029131080955266953, -0.027394268661737442, -0.03313101455569267, -0.004562422167509794, 0.021683840081095695, -0.0012401103740558028, -0.030815264210104942, -0.0032861281652003527, -0.0025377855636179447, -0.034288886934518814, 0.00013034316361881793, -0.028920559212565422, 0.0011126454919576645, -0.021789101883769035, 0.0030509347561746836, 0.016933921724557877, -0.07736709713935852, -0.025960084050893784, 0.01327608898282051, -0.027920575812458992, -0.007013038266450167, 0.011512961238622665, 0.0025969950947910547, 0.07536713778972626, -0.003825592575594783, -0.039604585617780685, -0.015683943405747414, -0.011289280839264393, 0.024196956306695938, -0.025907453149557114, 0.021354898810386658, -0.03252575919032097, -0.01082876231521368, -0.0072301398031413555, 0.004440713673830032, 0.009348524734377861, -0.013815553858876228, -0.007006459403783083, -0.011762957088649273, 0.01655234955251217, -0.0022729875054210424, 0.011137967929244041, -0.0028996216133236885, 0.029657388105988503, 0.0031644196715205908, 0.0028782403096556664, -0.006394627504050732, 0.016789186745882034, 0.00212660850957036, -0.0008807415724731982, -0.02223646268248558, -0.01385502703487873, 0.01643393002450466, -0.016578665003180504, 0.003197313752025366, -0.025960084050893784, 0.006894619204103947, -0.017683908343315125, -0.022802243009209633, 0.022775927558541298, -0.004545975010842085, -0.04384135827422142, -0.03652569279074669, 0.0054571437649428844, -0.01671024039387703, -0.009920882992446423, 0.02514430694282055, 0.002378248842433095, 0.020210182294249535, -0.02444695122539997, -0.020262811332941055, -0.006193973124027252, -0.014012918807566166, -0.0007499872008338571, -0.008098546415567398, -0.0017072077607735991, -0.019473351538181305, -0.0038683549501001835, -0.0027170588728040457, -0.005756480619311333, 0.016091831028461456, 0.012091899290680885, -0.03368363529443741, 0.026631124317646027, -7.945999095682055e-05, 0.021354898810386658, 0.01246689260005951, 0.009887989610433578, -0.006841988302767277, 0.007874866016209126, -0.042183492332696915, 0.041236139833927155, 0.008124860934913158, -0.037973035126924515, -0.010769553482532501, -0.03515729308128357, -0.025473250076174736, 0.011572171002626419, 0.009532731957733631, 0.04184139147400856, 0.019749663770198822, 0.014026076532900333, 0.022696981206536293, -0.019275987520813942, 0.003217050340026617, -0.03370995074510574, 0.031052101403474808, 0.014276072382926941, -0.0178154855966568, -0.006795936729758978, 0.001337970606982708, 0.038025666028261185, -0.007335401140153408, -0.017157601192593575, 0.040499307215213776, -0.05115702003240585, 0.0456308014690876, -0.014289230108261108, 0.0012869846541434526, -0.06289366632699966, 0.013440560549497604, 0.02376275323331356, -0.02586797997355461, 0.01749970205128193, -0.020802276208996773, 0.001925954013131559, 0.010664291679859161, 0.041762445122003555, 0.015512892976403236, 0.01748654432594776, -0.027815314009785652, -0.02665743976831436, 0.01790758967399597, 0.019170725718140602, 1.41856135087437e-05, -0.0015929004875943065, 0.005154517479240894, 0.028920559212565422, -0.02734163962304592, 0.05218331888318062, 0.01828916184604168, 0.007131457328796387, 0.02344696782529354, 0.018697049468755722, -0.01955229789018631, 0.019828608259558678, -0.015552366152405739, 0.005144649185240269, -0.04892021790146828, -0.018736522644758224, 0.0012343539856374264, 0.02398643270134926, 0.048288650810718536, -0.009138002060353756, 0.02286803163588047, -0.027815314009785652, -0.0001795816351659596, 0.025223253294825554, -0.03652569279074669, -0.003238431643694639, -0.010677449405193329, 0.035394132137298584, -0.03910459578037262, 0.04068351536989212, -0.019723348319530487, -0.02344696782529354, 0.001713786507025361, 0.019420720636844635, 0.011078758165240288, 0.04315715655684471, -0.01823653094470501, 0.031157363206148148, 0.00019335607066750526, -0.04505186155438423, -0.001893059816211462, 0.021960152313113213, 0.018644418567419052, 0.05020967125892639, -0.0042499275878071785, -0.023960117250680923, 0.014131337404251099, -1.4956570339563768e-05, -0.012440577149391174, 0.014407648704946041, 0.02624955214560032, 0.0003055046545341611, -0.0014210283989086747, -0.05136754363775253, 0.021946994587779045, -0.021223321557044983, 0.009118265472352505, 0.028078468516469002, 0.009598520584404469, 0.013657662086188793, 0.007170930039137602, 0.008151176385581493, -0.004075588192790747, 0.00943404994904995, -0.006927513517439365, -0.02128911018371582, 0.040604569017887115, 0.03370995074510574, 0.002343710046261549, -0.013828711584210396, 0.008230122737586498, -0.008828796446323395, 0.022210147231817245, 0.006532783154398203, -0.017591804265975952, 0.029288973659276962, -0.027367953211069107, 0.010269561782479286, -0.0019325327593833208, 0.0051512280479073524, 0.007940653711557388, 0.01592078059911728, -0.014341860078275204, 0.009598520584404469, 0.0207101721316576, 0.015539208427071571, 0.017104972153902054, 0.027815314009785652, 0.016670769080519676, -0.0013297470286488533, 0.0498412549495697, -0.0006615840829908848, 0.016302352771162987, -0.016894448548555374, -0.008394593372941017, -0.009993250481784344, -0.03305206820368767, -0.00932878814637661, -0.01581551879644394, -0.02734163962304592, -0.0022104885429143906, 0.0037762513384222984, -0.01611814647912979, -0.040867723524570465, 0.017118128016591072, -0.011368227191269398, 0.013894499279558659, 0.0033256011083722115, -0.008118282072246075, 0.009368261322379112, 0.004072298761457205, -0.010045881383121014, -0.024196956306695938, 0.06847251206636429, -0.005874899681657553, 0.019104937091469765, 0.025539038702845573, -0.009835358709096909, 0.03515729308128357, -0.01190769113600254, 0.007499872241169214, -0.016828659921884537, 0.014512910507619381, -0.014526068232953548, 0.02535483054816723, -0.0256706140935421, -0.012131371535360813, -0.0043190051801502705, 0.07241981476545334, 0.011690589599311352, -0.016276037320494652, -0.004532817285507917, -0.027867944911122322, 0.01648656092584133, 0.014841851778328419, 0.011098494753241539, 0.02013123594224453, -0.004628210328519344, 0.05215700343251228, 0.006315681617707014, -0.014894482679665089, -0.012453734874725342, 0.006115027237683535, -0.011157704517245293, 0.010519557632505894, 0.003950590267777443, 0.0010156076168641448, -0.01569710113108158, -0.02134174108505249, 0.015249739401042461, 0.012999778613448143, 0.0008178314310498536, 0.061525266617536545, 0.02223646268248558, 0.0016743135638535023, -0.00014792098954785615, -0.012861622497439384, 0.002044372959062457, -0.012506365776062012, 0.006226867437362671, 0.014591855928301811, -0.01123007107526064, -0.010861656628549099, 0.009289314970374107, 0.041025616228580475, -0.017052341252565384, -0.007223560940474272, -0.01923651434481144, -0.0070196171291172504, -0.029473181813955307, -0.037973035126924515, -0.008848533034324646, 0.01243399828672409, -0.002797649707645178, 0.019986500963568687, -0.059156883507966995, 0.005187411326915026, 0.022723296657204628, 0.02055228129029274, -0.002518049208447337, -0.0025147597771137953, -0.0029308709781616926, 0.011855061165988445, 0.011789272539317608, -0.0026265999767929316, 0.021275952458381653, 0.010335350409150124, -0.00830249022692442, -0.01367081981152296, -0.006585414055734873, 0.0029012663289904594, 0.008769587613642216, 0.01749970205128193, 0.01611814647912979, 0.005924241151660681, -0.00028844078769907355, -0.01981545053422451, 0.022618034854531288, -0.006147921551018953, 0.007993284612894058, -0.0016693794168531895, -0.042604535818099976, 0.0015748086152598262, 0.002554232720285654, 0.004740050528198481, -0.013894499279558659, -0.019933870062232018, -0.030631056055426598, -0.00438808323815465, 0.03242050111293793, 0.008914321660995483, -0.030841579660773277, 0.01743391342461109, 0.026065343990921974, -0.01219716016203165, 0.004312426317483187, 0.0020246366038918495, 0.020157551392912865, -0.008072230964899063, -0.012499786913394928, 0.018407581374049187, -0.02228909358382225, -0.04173612967133522, -0.01170374732464552, -0.030604740604758263, -0.006013055332005024, 0.030183695256710052, -0.024999573826789856, 0.002047662390395999, 0.017197074368596077, -0.02328907698392868, 0.006082132924348116, 0.07047247886657715, 0.011072179302573204, 0.0036512534134089947, 0.043236102908849716, 0.03207840025424957, -0.03678884729743004, -0.018947044387459755, 0.023433810099959373, 0.0073485588654875755, -0.017262862995266914, -0.0702093318104744, 0.015355001203715801, 0.03257839009165764, -0.004019668325781822, -0.011782693676650524, -0.016894448548555374, 0.025367988273501396, 0.034394148737192154, 0.005147938616573811, -0.004503212403506041, 0.010756395757198334, -0.033499427139759064, -0.008763008750975132, -0.0029029110446572304, -0.030894210562109947, -0.024433793500065804, 0.01385502703487873, -0.007282770238816738, 0.02386801317334175, 0.0043420311994850636, 0.0015945452032610774, 0.010289298370480537, 0.022473299875855446, 0.017854958772659302, -0.009032740257680416, -0.007999863475561142, 0.018854942172765732, -0.011749799363315105, 0.0003546403313521296, -0.005874899681657553, 0.013111618347465992, -0.01655234955251217, -0.000578526291064918, -0.015170793980360031, 0.012789255008101463, 0.0241311676800251, -0.0007462865905836225, -0.004095324780791998, -0.006927513517439365, -0.005272936541587114, 0.004480186849832535, 0.02624955214560032, -0.025946926325559616, -0.018381265923380852, -0.029683703556656837, -0.007322243414819241, 0.025012731552124023, 0.007572239264845848, -0.0016940500354394317, -0.025525880977511406, -0.004279532004147768, 0.01860494539141655, -0.0038091454189270735, 0.019407562911510468, -0.014065549708902836, 0.0204470194876194, 0.002950607566162944, -0.01628919504582882, -0.017104972153902054, -0.0032121161930263042, -0.03160472214221954, -0.010124826803803444, 0.026946907863020897, 0.029131080955266953, 0.008328805677592754, 0.0191312525421381, 0.02639428712427616, 0.01332871988415718, -0.028394252061843872, -0.013289246708154678, -0.0021775944624096155, 0.003575596958398819, 0.007197245489805937, 0.03328890725970268, -0.031025785952806473, 0.028078468516469002, -0.0025377855636179447, 0.021091746166348457, -0.00024506161571480334, 0.059104256331920624, 0.01224979106336832, -0.021433845162391663, 0.028710035607218742, -0.008835375308990479, 0.0011093560606241226, 0.015197109431028366, -0.004233480431139469, 0.004374925512820482, -0.017157601192593575, -0.013243194669485092, 0.019683875143527985, 0.0024259453639388084, -0.006157789845019579, 0.01671024039387703, -0.009374840185046196, -0.011453751474618912, -0.02613113261759281, -0.020328599959611893, 0.02092069573700428, -0.009736675769090652, 0.0072301398031413555, 0.0049538626335561275, 0.016104988753795624, 0.0021775944624096155, -0.02393380180001259, -0.013453717343509197, -0.023802224546670914, -0.01003930252045393, -0.028788981959223747, 0.01338135078549385, -0.018197057768702507, -0.009980092756450176, -0.016315510496497154, 0.03289417549967766, 0.023249603807926178, 0.024157483130693436, 0.00159043341409415, 0.008394593372941017, 0.010059039108455181, 0.01981545053422451, 0.014078707434237003, -0.010052460245788097, -0.007453820202499628, -0.01432870328426361, -0.011664275079965591, -0.0014325412921607494, 0.002950607566162944, 0.0007043465157039464, -0.011157704517245293, 0.016091831028461456, -0.0003127002564724535, -0.020683856680989265, 0.013486611656844616, 0.00425321701914072, -0.018302319571375847, -0.014236599206924438, -0.0065919929184019566, -0.0009679110953584313, -0.02055228129029274, -0.01307214517146349, -0.010545873083174229, 0.018881257623434067, 0.0003998698084615171, 0.029183711856603622, 0.012848464772105217, -0.015039216727018356, 0.017302336171269417, -0.007295927964150906, -0.03584149479866028, -0.024525897577404976, 0.011328754015266895, 0.012355051934719086, -0.026854805648326874, 0.023907486349344254, 0.00850643403828144, -0.02534167282283306, -0.014868167228996754, 0.016052357852458954, 0.06305155903100967, -0.00565121928229928, -0.014920798130333424, -0.00607226463034749, 0.05320961773395538, 0.005644640419632196, -0.054735906422138214, -0.009105107747018337, -0.0022664086427539587, 0.028078468516469002, -0.013394508510828018, -0.022420670837163925, 0.02440747804939747, 0.02593376860022545, -0.03576254844665527, -0.005753191187977791, -0.01685497537255287, -0.010539294220507145, 0.015683943405747414, 0.004417687654495239, -0.0011175796389579773, -0.0009555757860653102, -0.0014827050035819411, -0.001893059816211462, 0.029894227162003517, 0.030394218862056732, 0.03889407217502594, -0.0007006459636613727, 0.020539123564958572, -0.008749851025640965, 0.029052136465907097, 0.007815656252205372, -0.028762666508555412, -0.039499327540397644, -0.022118043154478073, -0.0018091796664521098, -0.00656238803640008, -0.0060920012183487415, 0.014499752782285213, -0.012782677076756954, 0.001746680703945458, -0.01934177428483963, 0.02346012555062771, -0.030762633308768272, 0.042446643114089966, 0.03515729308128357, -0.02134174108505249, -0.006582124624401331, -0.029499497264623642, -0.014368175528943539, 0.007868287153542042, -0.04189402237534523, -0.00816433411091566, -0.002855214523151517, 0.046499207615852356, -0.04776234179735184, 0.005240042228251696, 0.016420772299170494, -0.00024711748119443655, 0.006809094455093145, -0.012749782763421535, -0.022578561678528786, 0.013933972455561161, 0.024631159380078316, -0.01571025885641575, -0.037867773324251175, -0.003245010506361723, -0.024420635774731636, -0.010262982919812202, -0.007855129428207874, -0.013894499279558659, -0.010743238031864166, -0.018591787666082382, 0.006855146028101444, 0.026973223313689232, 0.01199321635067463, -0.011085337027907372, 0.008624852634966373, -0.016697082668542862, -0.009591941721737385, -0.01574973203241825, -0.016631295904517174, -0.02551272325217724, 0.012309000827372074, -0.021578578278422356, -0.02603902854025364, -0.017302336171269417, -0.014999744482338428, 0.019157567992806435, -0.022302251309156418, 0.006019634194672108, -0.03573623299598694, -0.014486595056951046, -0.045341331511735916, 0.010210352018475533, -0.013736607506871223, 0.042972952127456665, 0.0007713683880865574, -0.01032877154648304, -0.01574973203241825, -0.024196956306695938, 0.013644504360854626, 0.018104953691363335, -0.0022137779742479324, 0.020802276208996773, -0.023749595507979393, -0.022118043154478073, 0.03557834029197693, 0.016512876376509666, -0.004552553873509169, 0.018960202112793922, -0.027025854215025902, -0.01341424509882927, 0.012769519351422787, 0.02381538227200508, 0.02346012555062771, 0.007045932579785585, 0.002595350379124284, -0.026736386120319366, 0.013473453931510448, -0.0030311981681734324, 0.030631056055426598, 0.02444695122539997, 0.0013157670618966222, 0.002373314695432782, 0.032499443739652634, -0.021644366905093193, 0.05163069814443588, 0.016262879595160484, 0.018525999039411545, 0.03531518578529358, -0.0073485588654875755, 0.005236752796918154, 0.010177457705140114, 0.0022680533584207296, 0.005052545573562384, 0.023381179198622704, 0.039867740124464035, 0.01965755969285965, 0.0053124092519283295, -0.017776012420654297, -0.018091795966029167, -0.030999470502138138, 0.021420687437057495, 0.005776217207312584, -0.04042036458849907, 0.01206558384001255, -0.006536072585731745, -0.012558996677398682, -0.03197313845157623, 0.02234172448515892, 0.016052357852458954, 0.027894260361790657, -0.01606551557779312, 0.013841869309544563, -0.038551975041627884, 0.08778797835111618, -0.004539396148175001, -0.01843389682471752, -0.042657166719436646, 0.0035558603703975677, -0.04415713995695114, -0.005128202028572559, -0.013387929648160934, 0.018144426867365837, -0.005417670588940382, 0.042341381311416626, 0.015933938324451447, 0.01432870328426361, 0.03794671967625618, -0.011184019967913628, -0.002314105164259672, -0.030183695256710052, -0.007420925889164209, 0.014841851778328419, -0.010026144795119762, -0.03476256504654884, 0.02034175768494606, 0.008782744407653809, 0.014210283756256104, -0.008763008750975132, -0.014210283756256104, -0.008098546415567398, 0.034236256033182144, 0.007151193916797638, -0.010578766465187073, -0.008848533034324646, -0.015289212577044964, -0.009651151485741138, 0.0042499275878071785, 0.015473419800400734, -0.003276259871199727, -0.010743238031864166, 0.018276004120707512, -0.03989405557513237, 0.03573623299598694, 0.027736369520425797, 0.00784855056554079, -0.026025870814919472, -0.01928914524614811, 0.010249825194478035, 0.03381521254777908, 0.0047005778178572655, 0.010578766465187073, -0.00869064126163721, 0.005019651260226965, -0.02455221302807331, -0.07026195526123047, -0.011887955479323864, -0.0028140966314822435, -0.04473607987165451, -0.014183968305587769, 0.028736351057887077, 0.011236649937927723, 0.02614429034292698, -0.0534464567899704, 0.022881189361214638, -0.013526084832847118, 0.04778865724802017, -0.030025802552700043, 0.047446560114622116]], "input": ["# Service Dog Transportation Community\n\nThe community focuses on the transportation of service dogs, highlighting the relationships between service dogs, airline policies, and regulations in various countries. Key entities include airlines, specific regulations, and requirements for passengers traveling with service dogs, ensuring compliance and safety during air travel.\n\n## EL AL's policies on service dog transportation\n\nEL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets. This highlights the importance of airline policies in facilitating the travel of passengers with disabilities and ensuring their service dogs can accompany them without additional burdens. [Data: Relationships (5)]\n\n## Regulatory requirements in Israel\n\nIsrael has specific requirements for transporting service dogs, which must be adhered to by passengers. This includes documentation and compliance with local regulations, emphasizing the need for passengers to be aware of the legal framework governing service dog transport in different countries. Such regulations are crucial for ensuring that service dogs can travel safely and legally, which directly impacts the ability of passengers with disabilities to travel. [Data: Relationships (59)]\n\n## Passenger cabin access for service dogs\n\nService dogs are allowed in the passenger cabin at no additional cost under certain conditions. This access is vital for passengers who rely on these animals for assistance, as it ensures they can travel comfortably and safely. The conditions under which service dogs can accompany their handlers in the cabin are essential for maintaining the rights of passengers with disabilities and ensuring their needs are met during air travel. [Data: Relationships (53)]\n\n## Documentation requirements at check-in\n\nPassengers must present their documentation for traveling with a service dog at the check-in counters. This requirement is critical for compliance with airline policies and regulations, ensuring that all necessary information is verified before boarding. The documentation process is a key aspect of the travel experience for passengers with service dogs, as it helps to prevent misunderstandings and ensures that all parties are aware of the regulations governing service dog transport. [Data: Relationships (65)]\n\n## Importance of veterinary certificates\n\nA veterinary certificate is essential for transporting service dogs, certifying that the dog is vaccinated and capable of maintaining sanitary conditions during transport. This requirement is crucial for the health and safety of both the service dog and other passengers. Ensuring that service dogs meet health standards is a significant aspect of airline policies, as it helps to mitigate risks associated with animal transport and ensures compliance with regulations. [Data: Relationships (54)]", "# CDC and Dog Transportation Regulations\n\nThe community focuses on the regulations established by the CDC regarding the transportation of dogs to the United States, highlighting the relationships between the CDC, the United States, and various entities involved in dog transport, including EL AL and Israel.\n\n## CDC's role in dog transportation regulations\n\nThe CDC establishes critical regulations and guidelines for the transportation of dogs to the United States, ensuring public health and safety. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's regulations are designed to mitigate risks associated with the introduction of diseases through animal transport, which is particularly important in the context of global travel and trade. [Data: Entities (42); Relationships (179)]\n\n## United States regulations for service dogs\n\nThe United States has specific regulations regarding the transportation of service dogs, which may vary by destination. These regulations include additional forms and requirements that must be followed to ensure the safe and legal transport of service animals. This highlights the complexity of dog transportation laws and the need for compliance by travelers and transporters alike. [Data: Entities (99); Relationships (58)]\n\n## EL AL's compliance with CDC regulations\n\nEL AL, an airline, is required to comply with CDC regulations for transporting dogs to the United States. This relationship underscores the importance of airline adherence to health guidelines, as non-compliance could lead to public health risks and legal repercussions. The airline's role is crucial in ensuring that all transported animals meet the necessary health standards set forth by the CDC. [Data: Relationships (16)]\n\n## Israel's classification as a high-risk country\n\nIsrael is classified as a high-risk country by the CDC for transporting dogs, which necessitates stricter compliance with health regulations. This classification impacts how dogs are transported from Israel to the United States, requiring additional scrutiny and documentation to prevent the spread of diseases. The implications of this classification are significant for travelers and transporters, as it may affect their ability to bring dogs into the U.S. [Data: Relationships (124)]\n\n## Interconnectedness of entities in dog transportation\n\nThe relationships between the CDC, the United States, EL AL, and Israel illustrate a complex network of regulations and compliance requirements in dog transportation. Each entity plays a vital role in ensuring that health standards are met, and their interconnectedness highlights the importance of collaboration in public health efforts. This network is essential for maintaining the safety of both animals and the public during the transportation process. [Data: Relationships (16, 58, 124, 179)]", "# Airport Check-In Community\n\nThe Airport Check-In Community consists of key entities such as check-in counters, passengers, and security check areas, all of which are interconnected through the processes required for air travel. The relationships highlight the importance of documentation and procedures that passengers must follow when checking in for flights, particularly when traveling with service dogs or returning to Israel.\n\n## Check-in Counters as Central Entities\n\nCheck-in counters are the central entities in this community, serving as the official points where passengers must present their documentation for flights. These counters are crucial for ensuring that all necessary paperwork is completed before boarding, which is essential for maintaining security and compliance with airline regulations. The relationship between check-in counters and passengers is vital, as it dictates the flow of travelers through the airport and their ability to board flights. [Data: Entities (105); Relationships (32, 215)]\n\n## Passenger Requirements\n\nPassengers are required to check in at the counters regardless of whether they have luggage. This requirement emphasizes the importance of the check-in process in air travel, as it ensures that all travelers are accounted for and that necessary documentation is verified. The relationship between passengers and check-in counters highlights the procedural nature of air travel, where compliance is mandatory for all individuals traveling by flight. [Data: Entities (317); Relationships (215)]\n\n## Documentation for Service Dogs\n\nPassengers traveling with service dogs must present specific documentation at the check-in counters. This requirement underscores the importance of adhering to regulations that govern the travel of service animals, ensuring that all necessary paperwork is in order to facilitate a smooth travel experience. The relationship between service dogs and check-in counters indicates a specialized process that must be followed, which can impact the overall efficiency of the check-in process. [Data: Relationships (65)]\n\n## Security Check Areas\n\nAfter checking in at the counters, passengers must proceed to security check areas. This relationship is critical for maintaining airport security and ensuring that all travelers are screened before boarding their flights. The flow from check-in counters to security check areas is a key aspect of the travel process, highlighting the interconnectedness of these entities in ensuring safe and compliant air travel. [Data: Entities (318); Relationships (216)]\n\n## Return to Israel\n\nPassengers checking in at the counters are often returning to Israel, which may involve specific regulations and documentation requirements. This relationship indicates that the check-in process is not only about boarding a flight but also about complying with the legal and regulatory frameworks associated with international travel. Understanding this dynamic is essential for ensuring that all passengers are adequately prepared for their journey. [Data: Relationships (128)]", "# EL AL Airline Passenger Community\n\nThe community centers around passengers traveling with EL AL, an airline that has specific policies regarding baggage, additional services, and the transport of pets. The relationships among passengers, the airline, and destination countries highlight the regulatory framework governing air travel.\n\n## Passengers' responsibilities and regulations\n\nPassengers traveling with EL AL must adhere to specific regulations regarding baggage and the transport of pets, particularly dogs. These regulations ensure a standardized travel experience and compliance with airline policies. For instance, passengers are responsible for their dog's behavior and must meet certain conditions for its transport, which includes providing necessary documentation [Data: Entities (107, 109); Relationships (22, 212, 218)].\n\n## Airline policies on baggage and additional services\n\nThe airline has established specific policies regarding checked baggage, including size and weight limits, which passengers must comply with. Additionally, passengers have the option to order additional services, which may incur extra charges. This creates a structured environment for air travel but also places the onus on passengers to understand and follow these policies [Data: Entities (184, 381); Relationships (89, 221, 220)].\n\n## Destination country regulations\n\nPassengers must also comply with the regulations of their destination country, which may include restrictions on certain types of equipment and guidelines for admitting passenger equipment. This adds another layer of complexity to the travel process, as failure to comply can result in denied entry or additional charges [Data: Entities (195); Relationships (219, 337)].\n\n## Financial implications of additional services\n\nOrdering additional services incurs a full charge to the passenger, which can impact the overall cost of travel. This fee structure is important for passengers to consider when planning their travel, as it can significantly affect their budget [Data: Entities (384); Relationships (423)].\n\n## The role of forms in pet transport\n\nPassengers wishing to transport a dog on EL AL flights must provide specific forms, which are necessary for compliance with airline policies. This requirement emphasizes the importance of documentation in ensuring a smooth travel experience for pet owners [Data: Entities (109); Relationships (218)].", "# Pet Transport Regulations in Passenger Cabins\n\nThis community focuses on the regulations and conditions surrounding the transport of pets, particularly dogs, cats, and exotic birds, in passenger cabins of aircraft. The entities are interconnected through various relationships that outline the responsibilities and conditions for transporting these animals.\n\n## EL AL's policies on dog transport\n\nEL AL has established specific policies governing the transport of dogs, which include conditions under which they may be refused transport. These policies are crucial for ensuring the safety and comfort of all passengers and crew on board. The regulations highlight the importance of assessing a dog's behavior and health before allowing it on the aircraft. If a dog is deemed a direct threat or causes a disturbance, it may be refused transport, which underscores the airline's commitment to maintaining a safe environment for all travelers. [Data: Relationships (21, 214, 213)]\n\n## Passenger responsibilities for pet behavior\n\nPassengers are responsible for their pets' behavior during transport, which is a significant aspect of the community's dynamics. This responsibility includes ensuring that the pet meets size and weight restrictions and does not pose a threat to other passengers or crew members. The relationship between the passenger and the dog is critical, as any disturbances caused by the pet can lead to refusal of transport. This highlights the need for passengers to be well-informed about the regulations and to prepare adequately for traveling with their pets. [Data: Relationships (212, 207)]\n\n## Transport conditions for various pets\n\nDifferent types of pets, including cats and exotic birds, have specific conditions for transport in the passenger cabin. These conditions are primarily related to size and weight restrictions, which are essential for ensuring that all animals can be accommodated safely. The inclusion of various pet types in the transport regulations indicates a broader understanding of passenger needs and preferences, as well as the airline's commitment to providing a pet-friendly travel experience. [Data: Relationships (208, 209)]\n\n## Direct threats and disturbances from dogs\n\nThe community recognizes that dogs can pose direct threats or cause disturbances during transport, which can lead to their refusal for boarding. This aspect is critical for maintaining safety and comfort in the passenger cabin. The airline's policies are designed to mitigate these risks by assessing the dog's behavior prior to boarding. This proactive approach is essential for preventing incidents that could disrupt the travel experience for other passengers. [Data: Relationships (214, 213)]\n\n## Service dogs and their transport privileges\n\nService dogs are allowed in the passenger cabin at no additional cost under certain conditions, which reflects the community's commitment to accommodating individuals with disabilities. This provision is vital for ensuring that passengers who rely on service animals can travel without additional barriers. The relationship between service dogs and the passenger cabin highlights the importance of inclusivity in air travel policies. [Data: Relationships (53)]", "# Liquid Carry-On Regulations Community\n\nThe community focuses on the regulations surrounding the carrying of liquids in carry-on bags, particularly in relation to air travel. Key entities include various types of liquids, the security checkpoint, and specific guidelines from countries like the U.S. and Israel, which collectively shape the rules and restrictions that travelers must adhere to.\n\n## Comprehensive restrictions on liquids in carry-on bags\n\nThe community is primarily defined by the restrictions on liquids that passengers can carry in their carry-on bags. These regulations are crucial for maintaining safety in air travel, as they aim to prevent the transport of hazardous materials. The restrictions apply to various types of liquids, including aerosols, creams, gels, and baby food, which must adhere to specific guidelines to ensure compliance at security checkpoints. [Data: Entities (152, 161, 156, 158, 154, 159); Relationships (283, 281, 279, 286, 278, 282)]\n\n## Role of the security checkpoint\n\nThe security checkpoint is a critical entity in this community, where passengers must present their carry-on items for inspection. At this location, any liquids exceeding the permitted amount will be discarded, which underscores the importance of compliance with the established regulations. The checkpoint serves as the enforcement point for the liquid restrictions, making it a focal area for potential conflicts or issues during the boarding process. [Data: Entities (159); Relationships (284)]\n\n## Specific guidelines from Israel\n\nIsrael has established specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These regulations are designed to ensure that all passengers adhere to safety protocols, reflecting the country's commitment to aviation security. The relationship between Israel and the liquid restrictions highlights the international nature of air travel regulations and the need for travelers to be aware of varying rules depending on their departure location. [Data: Relationships (127)]\n\n## U.S. regulations impacting liquid transport\n\nThe U.S. has specific guidelines that affect the carrying of liquids in handbags on flights to and from the country. These regulations are part of a broader effort to enhance security in air travel and prevent potential threats. The relationship between the U.S. and the liquid restrictions emphasizes the importance of understanding local regulations, as they can vary significantly from one country to another. [Data: Relationships (285)]\n\n## Diverse types of liquids subject to restrictions\n\nVarious types of liquids, including cosmetics, creams, gels, and prescription medications, are subject to the same restrictions as other liquids in carry-on bags. This diversity highlights the complexity of the regulations, as travelers must be aware of the specific rules that apply to different categories of liquids. The inclusion of baby food as a special item further complicates the landscape, as it is exempt from certain packing requirements but still subject to inspection. [Data: Entities (155, 158, 154, 157); Relationships (278, 282, 280, 279)]", "# Travel Essentials: Carry-On Bags and Related Items\n\nThis community focuses on the essential items that passengers should keep accessible during flights, particularly emphasizing the importance of carry-on bags. The relationships among carry-on bags, medications, passports, valuables, and recommendations highlight the critical nature of these items for passenger safety and compliance with airline regulations.\n\n## Carry-On Bags as a central entity\n\nCarry-on bags are the primary focus of this community, serving as the essential item that passengers must manage during flights. These bags are subject to specific restrictions, particularly regarding the items they can contain, such as liquids, medications, and valuables. The importance of carry-on bags is underscored by their role in ensuring that passengers have immediate access to necessary items during their journey. The relationships with other entities, such as medications and passports, further emphasize the need for careful management of these bags to comply with airline regulations and ensure passenger safety [Data: Entities (160); Relationships (288, 289, 290, 291, 294, +more)].\n\n## Importance of Medications in Carry-On Bags\n\nMedications are highlighted as essential items that passengers should keep accessible during flights. The recommendation to store medications in carry-on bags is crucial for health reasons, ensuring that travelers can manage their health needs while in transit. This relationship indicates that the presence of medications in carry-on bags is not just a matter of convenience but a necessity for passenger well-being. The implications of not having medications readily available could lead to serious health risks, making this a significant aspect of travel safety [Data: Entities (281); Relationships (289, +more)].\n\n## Passports as critical travel documents\n\nPassports are required documents for international travel and should be easily accessible during flights. The relationship between passports and carry-on bags emphasizes the need for travelers to keep these documents within reach to avoid complications during boarding and customs checks. The accessibility of passports is vital for ensuring a smooth travel experience, and any delays in retrieving these documents could lead to significant travel disruptions. This highlights the importance of proper organization within carry-on bags [Data: Entities (282); Relationships (290, +more)].\n\n## Valuables and their security during travel\n\nValuables are items of significant worth that passengers are advised to keep with them during flights. The recommendation to store valuables in carry-on bags is crucial for their safety and security throughout the journey. This relationship underscores the importance of protecting personal belongings from theft or loss, which can be a significant concern for travelers. The emphasis on keeping valuables accessible also reflects the broader need for passengers to be vigilant about their possessions while traveling [Data: Entities (283); Relationships (291, +more)].\n\n## Recommendations for managing carry-on items\n\nThe recommendations provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel are essential for ensuring compliance with airline regulations. These guidelines help passengers navigate the complexities of air travel, particularly concerning what items should be kept accessible and how to manage them effectively. The relationship between recommendations and carry-on bags highlights the proactive measures that travelers can take to enhance their travel experience and minimize potential issues [Data: Entities (288); Relationships (294, +more)].", "# Checked Bags and Plane's Belly\n\nThis community revolves around the concepts of checked bags, the plane's belly, and the no charge policy associated with luggage handling. The relationships among these entities highlight the process of managing luggage during air travel, particularly when carry-on space is limited.\n\n## Checked bags as a key entity\n\nChecked bags are a crucial aspect of air travel, representing luggage that is stored in the cargo hold of an aircraft. This entity is central to the community as it directly relates to passenger convenience and airline logistics. The management of checked bags can significantly affect the overall travel experience, especially in scenarios where carry-on luggage is restricted. The relationship between checked bags and the plane's belly emphasizes the importance of efficient luggage handling systems in the aviation industry. [Data: Entities (285), Relationships (388)]\n\n## The role of the plane's belly\n\nThe plane's belly refers to the cargo hold where checked bags are stored during flights. This entity is essential for understanding how luggage is managed in the aviation context. The relationship between checked bags and the plane's belly illustrates the operational aspects of air travel, particularly how airlines utilize space within the aircraft. Efficient use of the plane's belly can lead to improved operational efficiency and customer satisfaction. [Data: Entities (286), Relationships (388)]\n\n## No charge policy for checked bags\n\nThe no charge policy indicates that passengers will not incur fees for checking carry-on bags if there is no available space on the aircraft. This policy is significant as it directly impacts passenger decisions regarding luggage. Understanding this relationship helps clarify the airline's approach to customer service and operational flexibility, particularly during peak travel times when space may be limited. [Data: Entities (287), Relationships (389)]\n\n## Interconnection of luggage types\n\nThe relationship between carry-on bags and checked bags highlights the interconnectedness of different luggage types in air travel. If no free space is available for carry-on bags, they will be checked into the plane's belly, demonstrating the dynamic nature of luggage management. This relationship is crucial for airlines to understand as it affects both operational logistics and customer satisfaction. [Data: Relationships (293)]", "# ARTY Rimon and Baggage Services Community\n\nThe community is centered around ARTY Rimon, a service provider specializing in baggage pickup and delivery. It includes various entities related to baggage handling, policies, and service locations, highlighting the interconnectedness of service provision and customer support in the baggage industry.\n\n## ARTY Rimon as a central service provider\n\nARTY Rimon is the primary entity in this community, specializing in pickup and delivery services for baggage, luggage, and bags. The company operates in multiple locations, which enhances its service reach and customer convenience. However, the nature of its services also means that it is subject to various operational challenges, such as delays or damage to baggage, which can significantly impact customer satisfaction and the company's reputation. The relationships ARTY Rimon has with other entities, such as baggage claims departments and similar service providers, further emphasize its role in the baggage handling ecosystem. [Data: Entities (210); Relationships (240, 340, 342)]\n\n## Importance of baggage policies\n\nThe community includes critical policies regarding baggage handling, such as the requirement to report damage or missing items within specific timeframes. These policies are essential for maintaining customer trust and ensuring compliance with industry standards. For instance, the policy stating that customers must contact the service provider within 7 days of receipt for baggage issues is crucial for effective claims processing. Such policies not only protect the service provider but also inform customers of their rights and responsibilities, thereby shaping the overall customer experience. [Data: Entities (240, 241); Relationships (240, 356)]\n\n## Service locations enhance operational reach\n\nARTY Rimon provides services in several cities, including Rehovot, Shoham, Ramle, and Lod. This geographical diversity allows the company to cater to a broader customer base and respond to varying demands for baggage services. Each location represents a potential market for ARTY Rimon, but it also introduces logistical challenges, such as ensuring timely pickups and deliveries across different areas. The effectiveness of operations in these locations is critical for maintaining service quality and customer satisfaction. [Data: Entities (244, 246, 247, 248); Relationships (348, 349, 350, 351)]\n\n## Competitive landscape with similar service providers\n\nThe community includes other entities like Cargo Tikim ve Mizvadot and Rimon Mizvadot ve Tikim, which provide similar services. This competitive landscape can drive innovation and improve service quality but also poses risks for ARTY Rimon in terms of market share and customer loyalty. Understanding the competitive dynamics is essential for ARTY Rimon to position itself effectively and address customer needs better than its competitors. [Data: Entities (233); Relationships (344, 342)]\n\n## Direct associations with key contacts\n\nShlomo Ha-Melekh is identified as a contact person for ARTY Rimon, indicating a direct association that could facilitate communication and operational efficiency. Having key contacts within the organization can enhance customer service and streamline processes related to baggage handling. This relationship underscores the importance of personal connections in service-oriented businesses, where customer interactions can significantly influence satisfaction and loyalty. [Data: Entities (249); Relationships (347)]", "# Rimon Mizvadot ve Tikim in Rishon Le Zion\n\nThe community centers around Rimon Mizvadot ve Tikim, a delivery service operating in Rishon Le Zion. The relationship with the city indicates a service provision context, while a competitive relationship with Arty Rimon highlights the competitive landscape of delivery services in the area.\n\n## Rimon Mizvadot ve Tikim's operational significance\n\nRimon Mizvadot ve Tikim is a key player in the delivery service sector within Rishon Le Zion. The company provides essential pickup and delivery services, which are vital for local commerce and community connectivity. Its operations in this city suggest a strong local presence and potential influence on the local economy. The degree of service provided by Rimon Mizvadot ve Tikim is crucial for residents and businesses alike, indicating its importance in the community. [Data: Entities (235), Relationships (353)]\n\n## Rishon Le Zion as a service location\n\nRishon Le Zion serves as the operational base for Rimon Mizvadot ve Tikim, highlighting the city's role in the company's service delivery framework. The relationship indicates that the city is not just a geographical location but a critical component of the service ecosystem. The presence of Rimon Mizvadot ve Tikim in Rishon Le Zion enhances the city's logistics capabilities, making it a significant hub for delivery services. [Data: Entities (242), Relationships (353)]\n\n## Competitive dynamics with Arty Rimon\n\nRimon Mizvadot ve Tikim has a competitive relationship with Arty Rimon, which provides similar services in different locations. This competition can influence market dynamics, pricing strategies, and service quality in the area. The competitive landscape suggests that Rimon Mizvadot ve Tikim must continuously innovate and improve its offerings to maintain its market position against rivals like Arty Rimon. [Data: Relationships (344)]\n\n## Impact of delivery services on local economy\n\nThe delivery services provided by Rimon Mizvadot ve Tikim are likely to have a positive impact on the local economy of Rishon Le Zion. By facilitating the movement of goods and services, the company supports local businesses and enhances consumer access to products. This operational role is essential for economic vitality, especially in urban settings where convenience and speed are increasingly valued by consumers. [Data: Entities (235), Relationships (353)]", "# Hagalgal and Bugaboo: Baby Equipment Community\n\nThe community centers around Hagalgal, an Israeli center for baby and children equipment, and Bugaboo, a provider of baby carriages and strollers. Hagalgal's services are complemented by Bugaboo's offerings, creating a network focused on baby-related products and services.\n\n## Hagalgal as a central entity in baby equipment\n\nHagalgal serves as a key player in the baby equipment market, providing a wide range of goods and services, including pickup and delivery. This makes it a vital resource for parents seeking convenience and quality in baby products. The center's focus on baby and children equipment positions it as a trusted entity in the community, catering to the needs of families. Hagalgal's services are essential for new parents, ensuring they have access to necessary items for their children. [Data: Entities (237)]\n\n## Bugaboo's role in the community\n\nBugaboo specializes in baby carriages and strollers, which are integral to the baby equipment category that Hagalgal focuses on. The relationship between Hagalgal and Bugaboo highlights a collaborative effort to provide comprehensive solutions for parents. Bugaboo's reputation for quality and innovation in stroller design complements Hagalgal's offerings, making them a significant part of the community. This partnership enhances the overall value proposition for customers seeking reliable baby products. [Data: Entities (238), Relationships (355)]\n\n## Interconnected services between Hagalgal and Bugaboo\n\nThe relationship between Hagalgal and Bugaboo indicates a synergy in their services, where Hagalgal's broad range of baby equipment includes Bugaboo's specialized products. This interconnectedness allows for a more comprehensive shopping experience for parents, who can find various baby-related items in one place. The collaboration between these entities enhances customer satisfaction and loyalty, as families can rely on a single source for their baby equipment needs. [Data: Relationships (355)]\n\n## Potential for community growth\n\nThe community surrounding Hagalgal and Bugaboo has significant potential for growth, especially as the demand for baby products continues to rise. With an increasing number of families seeking quality baby equipment, both entities are well-positioned to expand their offerings and reach. This growth could lead to new partnerships and collaborations within the baby product sector, further enhancing the community's impact and relevance. [Data: Entities (237, 238)]\n\n## Importance of delivery services\n\nHagalgal's provision of pickup and delivery services is a crucial aspect of its business model, catering to the convenience needs of modern parents. This service not only enhances customer experience but also positions Hagalgal as a forward-thinking entity in the baby equipment market. The ability to deliver essential items directly to customers' homes is particularly valuable for busy families, making Hagalgal a preferred choice for baby equipment. [Data: Entities (237)]", "# Makor Haziud and Nes Ziona Community\n\nThe community centers around Makor Haziud, a store in Nes Ziona specializing in baggage and outdoor equipment. The relationships between Makor Haziud, the city of Nes Ziona, and other entities highlight its role in providing relevant services for baggage handling.\n\n## Makor Haziud's specialization in baggage and outdoor equipment\n\nMakor Haziud is a key entity in this community, specializing in baggage and outdoor equipment. This specialization indicates that the store plays a significant role in the local economy, particularly for individuals and businesses that require such equipment. The store's focus on baggage handling suggests that it may cater to travelers and logistics companies, which could have implications for local tourism and transport services. [Data: Entities (207)]\n\n## Nes Ziona as the operational base for Makor Haziud\n\nNes Ziona serves as the operational base for Makor Haziud, indicating a strong service location relationship. The city's infrastructure and demographics may influence the store's customer base and operational strategies. As a city, Nes Ziona may benefit from the presence of specialized stores like Makor Haziud, which can enhance local commerce and attract visitors. [Data: Entities (245), Relationships (341)]\n\n## Relationship with Baggage Claims Department\n\nMakor Haziud has a relationship with the Baggage Claims Department, suggesting that it may provide equipment relevant for baggage handling and claims. This connection indicates that the store could play a role in supporting local airports or transport services, enhancing its importance in the community. The collaboration with the Baggage Claims Department may also position Makor Haziud as a key player in addressing baggage-related issues, which can be critical for customer satisfaction in travel services. [Data: Relationships (237)]\n\n## Connection with ARTY Rimon\n\nMakor Haziud's specialization in baggage is relevant to the services provided by ARTY Rimon, indicating a collaborative relationship. This connection may enhance the service offerings available to customers, particularly those involved in travel or outdoor activities. The synergy between these entities could lead to joint promotions or bundled services, benefiting both businesses and their customers. [Data: Relationships (340)]", "# Moka and Arty Rimon in Yehud\n\nThe community centers around Moka, a pickup and delivery point for Arty Rimon, located in the city of Yehud. The relationship between these entities highlights a direct service connection that is significant for local logistics and delivery services.\n\n## Moka as a key service point\n\nMoka serves as a crucial pickup and delivery point for Arty Rimon, indicating its importance in the logistics and delivery network. This relationship suggests that Moka plays a vital role in facilitating the distribution of goods for Arty Rimon, which could impact service efficiency and customer satisfaction. The operational dynamics at Moka can directly influence the performance of Arty Rimon, making it a significant entity in this community. [Data: Entities (234), Relationships (343)]\n\n## Yehud's role as the location for Moka\n\nYehud is the city where Moka is located, which adds a geographical context to the community. The location of Moka in Yehud is essential for understanding the local market dynamics and the accessibility of Arty Rimon's services. The city's infrastructure and demographics can affect the operational capabilities of Moka, thereby influencing the overall effectiveness of Arty Rimon's delivery services. [Data: Entities (243), Relationships (352)]\n\n## Direct service relationship between Arty Rimon and Moka\n\nThe direct service relationship between Arty Rimon and Moka indicates a structured logistics operation that is essential for the delivery of goods. This relationship is characterized by Moka's function as a designated point for pickups and deliveries, which is critical for maintaining the flow of services provided by Arty Rimon. The efficiency of this relationship can significantly impact customer experiences and operational success. [Data: Relationships (343)]\n\n## Potential impact on local logistics\n\nThe presence of Moka as a delivery point for Arty Rimon in Yehud suggests potential implications for local logistics and service delivery. As a hub for pickups and deliveries, Moka's operational efficiency can affect the speed and reliability of services offered by Arty Rimon. Any disruptions at Moka could lead to delays in service, impacting customer satisfaction and the overall reputation of Arty Rimon in the region. [Data: Relationships (343, 352)]", "# Pet Transportation Regulations and Practices\n\nThe community focuses on the transportation of pets, detailing the various methods, regulations, and requirements associated with their travel by air. Key entities include airlines, cargo services, and necessary documentation, all of which are interconnected in ensuring safe and compliant transport of animals.\n\n## Diverse methods of pet transportation\n\nThe community encompasses various methods for transporting pets, including cabin transport, registered cargo, and checked baggage. Each method has specific regulations and requirements that must be adhered to, depending on the size and weight of the pet. For instance, pets weighing up to 9 kg can be transported in the passenger aircraft cabin, while those exceeding this weight must be transported as registered cargo or in the aircraft hold. This diversity in transportation methods highlights the need for clear guidelines to ensure the safety and well-being of the animals during travel [Data: Entities (4, 6, 30, 32, 90); Relationships (69, 70, 80, 81)]\n\n## Importance of documentation\n\nDocumentation plays a crucial role in the transportation of pets, particularly the bill of lading and health certificates. A bill of lading is required for transporting animals as cargo, especially those over 9 kg, ensuring that all parties are aware of the transport conditions. Additionally, an international certificate of good health is necessary for pets being transported abroad, which involves veterinarians issuing the required health documents. This emphasis on documentation underscores the regulatory framework governing pet transportation and the importance of compliance to avoid legal issues [Data: Entities (30, 28); Relationships (76, 77, 114, 139)]\n\n## Airline-specific policies\n\nDifferent airlines have specific policies regarding pet transportation, which can significantly impact how pets are transported. For example, EL AL has established weight limits and conditions for cabin transport, as well as providing registered cargo services for larger animals. Understanding these airline-specific regulations is essential for pet owners to ensure compliance and safe travel for their pets. The variability in policies among airlines can lead to confusion, making it crucial for pet owners to research and prepare accordingly [Data: Entities (4, 6); Relationships (7, 12)]\n\n## Weight limits and their implications\n\nWeight limits are a critical factor in determining how pets can be transported. Pets weighing up to 9 kg can travel in the passenger cabin, while those between 9 kg and 100 kg must be transported in the aircraft hold. This distinction affects not only the comfort of the pet but also the costs associated with their transport, as the weight of the pet is not included in the permitted baggage allowance. Understanding these weight limits is vital for pet owners to avoid unexpected fees and ensure their pets' safety during travel [Data: Entities (90); Relationships (71, 83)]\n\n## Regulations for specific destinations\n\nCertain destinations have specific regulations regarding pet transportation, particularly concerning cabin transport. For instance, transporting pets in the aircraft cabin is not allowed for flights to Hong Kong, Johannesburg, and London. These restrictions necessitate that pet owners be aware of destination-specific regulations to ensure compliance and avoid complications during travel. This highlights the importance of thorough research and preparation when planning to transport pets internationally [Data: Entities (27, 25, 26); Relationships (75, 73, 74)]", "# Veterinary Services and Animal Transport Compliance\n\nThe community focuses on the regulatory framework surrounding the transport of animals, primarily involving the Veterinary Services Department, which issues necessary health certificates and permits. Key entities include the International Certificate of Good Health, Export License, and various permits required for compliance with international transport regulations.\n\n## Role of the Veterinary Services Department\n\nThe Veterinary Services Department is the central authority in this community, responsible for regulating the transport of animals. It issues health certificates, export licenses, and permits, ensuring that all transport complies with health standards and regulations. The department's role is crucial in maintaining the safety and health of animals during transport, which is vital for preventing the spread of diseases. The relationships it holds with other entities highlight its importance in the regulatory framework for animal transport [Data: Entities (37); Relationships (113, 151, 150, 149, 152, +more)].\n\n## Importance of the International Certificate of Good Health\n\nThe International Certificate of Good Health is a key document required for transporting animals abroad. This certificate ensures that animals are healthy and free from diseases before they are exported, which is essential for public health and safety. The relationship between this certificate and the Veterinary Services Department underscores the importance of regulatory compliance in international animal transport. Failure to obtain this certificate can lead to significant legal and health implications [Data: Entities (29); Relationships (77, 138)].\n\n## Export License as a critical requirement\n\nAn Export License is necessary for transporting animals internationally, serving as a legal requirement that ensures compliance with both the exporting and importing countries' regulations. The Cargo Division's requirement for this license indicates its importance in the logistics of animal transport. The relationship between the Export License and the Veterinary Services Department further emphasizes the need for proper documentation to facilitate safe and legal animal transport [Data: Entities (45); Relationships (117, 150)].\n\n## Permits required for animal transport\n\nPermits are essential for transporting animals from Israel, ensuring compliance with both Israeli and destination country regulations. The Veterinary Services Department issues these permits, which are critical for legal transport. The relationship between permits and the department highlights the regulatory framework that governs animal transport, ensuring that all necessary conditions are met for safe movement [Data: Entities (36); Relationships (149)].\n\n## Laboratory results for rabies antibodies\n\nLaboratory results for rabies antibodies are a necessary requirement for transporting pets, ensuring that animals are vaccinated and safe for travel. This requirement is part of the broader regulatory framework established by the Veterinary Services Department, which aims to prevent the spread of rabies and other diseases during animal transport. The relationship between these laboratory results and the department illustrates the importance of health checks in the transport process [Data: Entities (80); Relationships (152)]."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-b7d342e590cdffcd5b265339268c7c66 b/cache/text_embedding/embedding-b7d342e590cdffcd5b265339268c7c66 deleted file mode 100644 index a3c0c5990da7ab14e305f646a492c616247e87b8..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-b7d342e590cdffcd5b265339268c7c66 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.052172813564538956, 0.07347597926855087, -0.03195474296808243, 0.015257669612765312, -0.02005198784172535, 0.042694900184869766, -0.06634539365768433, 0.03179972991347313, 0.05066697672009468, 0.008016366511583328, -0.02533348836004734, 0.0038725470658391714, 0.009555419906973839, 0.06652255356311798, -0.017582857981324196, -0.0007826752844266593, 0.0014989165356382728, 0.0014518591342493892, 0.011847391724586487, 0.011747741140425205, 0.07365313172340393, 0.04017040878534317, -0.005226139444857836, -0.0032026711851358414, 0.007667588070034981, -0.008110481314361095, -0.012556021101772785, -0.03253050148487091, 0.07369742542505264, -0.017682509496808052, -0.0026144536677747965, -0.015501260757446289, -0.011493077501654625, -0.026485010981559753, 0.04444433003664017, 0.02796870283782482, -0.004979779943823814, 0.013153927400708199, 0.044621486216783524, 0.01798146218061447, -0.013818266801536083, -0.04025898873806, 0.037424471229314804, 0.028256583958864212, -0.040724027901887894, 0.07675338536500931, 0.054963041096925735, -0.0075568645261228085, -0.027924414724111557, 0.004653146490454674, 0.0027528577484190464, 0.04048043489456177, 0.004819231107831001, -0.05779755860567093, 0.042252007871866226, 0.029430251568555832, 0.004714044276624918, -0.008951977826654911, -0.018922610208392143, 0.02774725668132305, -0.04125550016760826, -0.028433742001652718, -0.009234322234988213, 0.011869536712765694, 0.01769358105957508, -0.011847391724586487, 0.010983750224113464, 0.03746876120567322, -0.040281131863594055, -0.024846306070685387, -0.04477649927139282, 0.018845103681087494, 0.013463952578604221, -0.03434636443853378, -0.005638583563268185, 0.003410277422517538, 0.035719335079193115, 0.015113729052245617, 0.03684871271252632, 0.010867491364479065, -0.04734528064727783, 0.013862555846571922, -0.013707543723285198, 0.02856661006808281, -0.05146418511867523, 0.048142485320568085, -0.050489820539951324, -0.015213380567729473, 0.006848235614597797, -0.05243854969739914, -0.01739462837576866, -0.0012719337828457355, -0.004589480347931385, 0.060189180076122284, -0.002293356228619814, 0.022211091592907906, -0.04415644705295563, 0.016342757269740105, -0.0012151880655437708, 0.021646402776241302, 0.014925499446690083, 0.022266453132033348, -0.020793834701180458, 0.016874229535460472, 0.018313633278012276, -0.04508652538061142, -0.050489820539951324, -0.0021646402310580015, -0.0018269342835992575, 0.01976410672068596, 0.05514019727706909, -0.04845251142978668, 0.03365987911820412, 0.07936645299196243, -0.007972076535224915, -0.014936571940779686, 0.017217472195625305, 0.0036372600588947535, 0.009799011051654816, -0.02049488201737404, 0.00789457093924284, 0.010601755231618881, 0.020328795537352562, -0.08153662830591202, -0.0054669626988470554, 0.04632662609219551, 0.014272232539951801, 0.06036633998155594, -0.014338666573166847, -0.00647731265053153, -0.011526294983923435, -0.04964832216501236, 0.05323575809597969, -0.01592200994491577, 0.02819015085697174, 0.040724027901887894, 0.02951882965862751, -0.021989645436406136, 0.003914068453013897, -0.02644072286784649, -0.0021134307608008385, 0.025289200246334076, 0.029474539682269096, -0.012046693824231625, -0.046370916068553925, 0.027813691645860672, 0.04271704703569412, -0.012157417833805084, 0.04672522842884064, -0.023694783449172974, 0.03137898072600365, -0.0342356413602829, 0.01762714795768261, 0.0009840532438829541, -0.024558426812291145, -0.02005198784172535, 0.03824382647871971, 0.07825922220945358, 0.014382955618202686, -0.01594415307044983, -0.04118906334042549, -0.0317111499607563, 0.008099408820271492, -0.011227341368794441, -0.00012586124648805708, -0.01123287808150053, -0.021026352420449257, 0.027880124747753143, -0.037557341158390045, -0.004226861521601677, 0.012567093595862389, -0.02929738350212574, -0.010385844856500626, 0.004201949108392, -0.030360326170921326, -0.010003848932683468, 0.02783583477139473, -0.05868334323167801, 5.56644044991117e-05, 0.022045006975531578, 0.03284052759408951, 0.002707184525206685, -0.04898398369550705, -0.00043528093374334276, 0.014227942563593388, 0.050622690469026566, 0.012279213406145573, 0.006305691320449114, -0.009339509531855583, -0.013497169129550457, -0.009057165123522282, 0.012932480312883854, -0.07152724266052246, -0.005223371088504791, 0.0005678028683178127, -0.02276470884680748, -0.03505499288439751, -0.03921819105744362, 0.03323913365602493, -0.044532906264066696, 0.044090013951063156, -0.044599343091249466, -0.0018490789225324988, 0.030736785382032394, -0.05722179636359215, 0.0003823413571808487, 0.028367307037115097, 0.01769358105957508, 0.015811286866664886, -0.0005584605969488621, -0.015301958657801151, 0.003847634419798851, -0.053280048072338104, 0.037114448845386505, 0.020284507423639297, -0.026640024036169052, 0.018391137942671776, 0.008055119775235653, 0.04457719624042511, 0.013596819713711739, -0.05793042480945587, -0.03204331919550896, -0.06351087987422943, 0.028544465079903603, -0.01895582675933838, 0.003850402543321252, -0.053058601915836334, 0.011011430993676186, -0.04382427781820297, 0.016940662637352943, -0.037645917385816574, 0.010557466186583042, -0.012434225529432297, -0.02233288809657097, 0.014803703874349594, 0.06678828597068787, 0.03808881342411041, -0.005408832803368568, -0.0035597537644207478, 0.018900465220212936, -0.005184618290513754, 0.05288144573569298, -0.03496641665697098, -0.028544465079903603, -0.013740760274231434, -0.026905760169029236, -0.022443611174821854, 0.023960519582033157, 0.03797809034585953, 0.013696471229195595, -0.032574791461229324, 0.03312841057777405, -0.01065158098936081, -0.016464553773403168, -0.016287395730614662, 0.04561799764633179, -0.00037611316656693816, 0.022144658491015434, 0.038575995713472366, -0.03239763528108597, 0.014980860985815525, 0.03259693831205368, -0.03363773599267006, -0.03797809034585953, -0.1055857315659523, 0.0007757550338283181, 0.025953538715839386, -0.05323575809597969, 0.030448904260993004, 0.028544465079903603, 0.002451136941090226, 0.056513167917728424, -0.005555541254580021, 0.003781200386583805, -0.03370416909456253, -0.008891080506145954, 0.02349548228085041, -0.003916836343705654, -0.013541458174586296, -0.0003795732918661088, 0.02122565545141697, 0.048142485320568085, 0.03775664046406746, -0.018557224422693253, 0.0019722585566341877, 0.01347502414137125, 0.01479263138025999, 0.02027343399822712, -0.04477649927139282, -0.01695173606276512, 0.003651100443676114, 0.024934886023402214, -0.05035695433616638, 0.0005743770743720233, 0.056867484003305435, -0.0028317482210695744, -0.03069249540567398, -0.024624859914183617, -0.02717149630188942, -0.028522320091724396, 0.004927186295390129, 0.006864843890070915, 0.007036465220153332, -0.024049099534749985, -0.05013550445437431, 0.015667345374822617, -0.018490789458155632, 0.017317121848464012, -0.009666142985224724, -0.028810201212763786, -0.03290696069598198, 0.015434826724231243, -0.07949932664632797, -0.044687919318675995, 0.011670234613120556, -0.030360326170921326, -0.04486507922410965, -0.024115532636642456, 0.04716812074184418, -0.01682993955910206, 0.010064747184515, 0.02093777433037758, 0.017560714855790138, -0.048496801406145096, -0.03507713973522186, -0.03817738965153694, 0.029983866959810257, 0.02732650749385357, -0.02666216902434826, -0.0003885695477947593, -0.052394259721040726, 0.00318606267683208, -0.012633527629077435, -0.0007037849281914532, 0.04486507922410965, -0.03184401988983154, 0.04448862001299858, 0.00718040531501174, -0.019276924431324005, 0.008049583062529564, 0.028035137802362442, 0.05633601173758507, 0.028101570904254913, 0.009488985873758793, -0.023628350347280502, 0.002912022639065981, 0.008348535746335983, 0.039993252605199814, -0.03780093044042587, -0.044178593903779984, 0.019276924431324005, -0.033527012914419174, 0.01193597074598074, -0.0008414970361627638, -0.03735803812742233, 0.0025507877580821514, -0.009389335289597511, 0.0504012405872345, -0.014161508530378342, 0.04191983863711357, -0.01307642087340355, 0.013685398735105991, -0.0034241178072988987, 0.04477649927139282, 0.010612827725708485, 0.006012274883687496, -0.044178593903779984, -0.007468285970389843, -0.021912138909101486, 0.0009065469494089484, 0.013009986840188503, 0.009666142985224724, 0.0062337215058505535, -0.004761101678013802, 0.06196075305342674, -0.01954266056418419, 0.001759116305038333, 0.003911300096660852, 0.010208687745034695, -0.03966108337044716, 0.003952821716666222, 0.01252280455082655, 0.028544465079903603, -0.0237833634018898, 0.04209699481725693, 0.027149351313710213, 0.0012726258719339967, 0.019077623263001442, -0.02681718021631241, 0.007512575481086969, -0.05735466629266739, 0.01893368363380432, -0.006067636422812939, 0.017095675691962242, -0.007363098673522472, -0.005718857981264591, 0.08158092200756073, -0.0003584666410461068, 0.004725116305053234, -0.013342157006263733, -0.062226489186286926, 0.0032857137266546488, -0.0004840683832298964, -0.004309904295951128, 0.005134792532771826, 0.027282219380140305, -0.008210131898522377, -0.029120225459337234, 0.0031002522446215153, 0.04486507922410965, 0.02269827388226986, -0.0045368866994977, -0.003853170434013009, 0.006947886664420366, 0.00409676181152463, -0.05536164715886116, -0.00910699088126421, 0.003321698633953929, -0.011266094632446766, -0.018889393657445908, -0.013862555846571922, -0.020749544724822044, -0.022786853834986687, -0.0015653505688533187, 0.005408832803368568, -0.00145462725777179, 0.025466356426477432, 0.04121121019124985, -0.017892884090542793, -0.0037009259685873985, -0.043071359395980835, -0.010485495440661907, -0.004772173706442118, 0.01127716712653637, -0.008724994957447052, 0.004799854476004839, 0.02951882965862751, -0.034545667469501495, 0.01094499696046114, -0.06780694425106049, 0.00781706441193819, -0.018036823719739914, 0.041897691786289215, 0.0073797074146568775, 0.015755923464894295, -0.01572270691394806, 0.01697388105094433, 0.023473337292671204, 0.04845251142978668, -0.028145860880613327, 0.002269827527925372, 0.02165747620165348, -0.014969789423048496, -0.016984952613711357, -0.008182451128959656, -0.01821398176252842, 0.007883498445153236, -0.06798410415649414, -0.028433742001652718, 0.020594531670212746, 0.03813309967517853, 0.06771836429834366, 0.03365987911820412, 0.017095675691962242, 0.05022408440709114, 0.04282777011394501, -0.025067752227187157, -0.01682993955910206, -0.007141652517020702, -0.06089780852198601, 0.002812371589243412, -0.029341671615839005, -0.040214698761701584, -0.009173424914479256, 7.78090616222471e-05, 0.0002122773148585111, 0.03018316999077797, -0.024868451058864594, -0.04466577619314194, -0.020672038197517395, -0.022576479241251945, 0.001746659865602851, -0.05190707743167877, -0.048275355249643326, 0.0011397579219192266, 0.016054878011345863, 0.051508475095033646, 0.018169691786170006, -0.05850618705153465, -0.002712720539420843, -0.00988205336034298, -0.01185846421867609, 0.018612585961818695, -0.008320854976773262, -0.02041737549006939, -0.026197129860520363, -0.028433742001652718, -0.03306197375059128, 0.025156332179903984, -0.0026019972283393145, -0.0039362129755318165, -0.03148970380425453, 0.002912022639065981, -0.03992681950330734, 0.05788613483309746, 0.025156332179903984, 0.027149351313710213, -0.0005408140714280307, -0.03813309967517853, -0.0013785050250589848, -0.0025327953044325113, -0.046238046139478683, 0.010131181217730045, -0.00029064863338135183, 0.009771330282092094, -0.04032542183995247, -0.009655071422457695, 0.04251774400472641, 0.0014165660832077265, 0.027924414724111557, 0.002160488162189722, -0.029408106580376625, -0.020539170131087303, -0.008857863023877144, -0.006610180716961622, -0.0027417854871600866, 0.017804306000471115, -0.03605150431394577, -0.0015335176140069962, -0.025532791391015053, -0.030825363472104073, 0.023229746147990227, -0.04032542183995247, -0.022000718861818314, -0.003908532205969095, -0.007102899253368378, 0.0063112275674939156, 0.040059685707092285, -0.021901067346334457, 0.009754722006618977, -0.00013537652557715774, -0.019653383642435074, 0.02422625571489334, 0.041521232575178146, -0.006433023139834404, 0.03193259611725807, -0.005098807625472546, 0.005663496442139149, 0.020450592041015625, 0.011548439040780067, -0.0030642671044915915, 0.006720903795212507, 0.022233236581087112, 0.03693728893995285, 0.0005349318962544203, 0.025643514469265938, 0.06293512135744095, -0.025599224492907524, -0.01842435635626316, 0.025643514469265938, 0.031179679557681084, -0.015113729052245617, -0.035210005939006805, 0.024491991847753525, -0.020694183185696602, 0.024270545691251755, -0.028965212404727936, 0.009372727014124393, -0.00488289725035429, -0.005483570974320173, 0.003651100443676114, -0.009057165123522282, 0.005259356461465359, -0.005500179715454578, 0.022188948467373848, -0.001822782214730978, 0.013286794535815716, -0.0602334700524807, -0.0006871764198876917, -0.00877482071518898, 0.021458173170685768, 0.005956912878900766, 0.017350340262055397, -0.019343359395861626, -0.039771806448698044, 0.028699476271867752, -0.025754237547516823, -0.06359945982694626, -0.016254179179668427, -0.001662233378738165, 0.008287638425827026, -0.0399489626288414, 0.012799612246453762, 0.003750751493498683, -0.0079665407538414, 0.019354430958628654, 0.0038974599447101355, 0.020970990881323814, -0.02539992332458496, -0.005223371088504791, 0.0239383764564991, -0.025444211438298225, -0.002538331551477313, 0.028323017060756683, -0.014748342335224152, -0.020672038197517395, 0.03870886191725731, 0.0028677331283688545, 0.03713659197092056, 0.007739557884633541, 0.06430808454751968, 0.02298615500330925, 0.03412491828203201, -0.034922126680612564, -0.01644240878522396, 0.017461063340306282, -0.04302706941962242, -0.01805896870791912, -0.007335417903959751, -0.016852084547281265, 0.009566492401063442, 0.007844745181500912, 0.013342157006263733, 0.00038026529364287853, -0.03332770988345146, -0.006743048317730427, 0.002492658095434308, -0.06576963514089584, 0.012888191267848015, -0.006017810665071011, 0.00743506895378232, -0.002748705679550767, 0.02907593548297882, -0.056734614074230194, -0.0057133217342197895, -0.0024137678556144238, -0.05053411051630974, -0.007534720003604889, -0.011205197311937809, 0.001131453667767346, 0.028987357392907143, -0.03529858589172363, 0.004392946604639292, -0.026640024036169052, -0.013652182184159756, -0.013574675656855106, 0.01461547426879406, 0.005359007511287928, 0.006250329781323671, 0.0044759889133274555, 0.024071242660284042, 0.032131899148225784, -0.017272833734750748, 0.02422625571489334, -0.001173666911199689, -0.0031168607529252768, 0.019952336326241493, 0.03157828375697136, -0.024336978793144226, -0.0023044284898787737, 0.005890479311347008, 0.007855817675590515, -0.028300873935222626, -0.027149351313710213, -0.010352627374231815, 0.018402211368083954, 0.014726197347044945, 1.7030193703249097e-05, 0.014836921356618404, -0.005447586067020893, 0.006599108222872019, -0.04929400980472565, -0.05589311569929123, -0.035342875868082047, -0.042628467082977295, 0.016641709953546524, 0.05956913158297539, 0.011266094632446766, -0.027570098638534546, 0.04087904095649719, 0.035431452095508575, -0.03622866049408913, -0.01850186288356781, 0.0020497648511081934, -0.011869536712765694, -0.009311828762292862, 0.017815377563238144, 0.0153794651851058, -0.01586664840579033, 0.03142327070236206, 0.02063882164657116, 0.02320760115981102, -0.009295220486819744, 0.027702966704964638, -0.00015873221855144948, -0.005270428489893675, -0.013342157006263733, -0.02174605429172516, -0.02732650749385357, 0.0019168970175087452, -0.0025757006369531155, 0.010662652552127838, -0.012212779372930527, -0.04823106527328491, -0.01594415307044983, -0.0036953899543732405, 0.019586950540542603, 0.025134187191724777, 0.03193259611725807, -0.006615716498345137, -0.029850998893380165, -0.007949932478368282, -0.017815377563238144, -0.0018366225995123386, -0.029186660423874855, 0.009145744144916534, 0.007462749723345041, 0.02613069675862789, 0.037424471229314804, 0.043359242379665375, -0.007994221523404121, 0.012755323201417923, -0.02754795551300049, 0.003609579289332032, -0.019996626302599907, -0.03700372576713562, -0.004254542291164398, 0.037424471229314804, 0.020904557779431343, -0.0034296540543437004, 0.05677890405058861, -0.010607291013002396, 0.004539655055850744, 0.017582857981324196, -0.03290696069598198, 0.009389335289597511, -0.025532791391015053, 0.03210975602269173, -0.009599708952009678, -0.02107064239680767, 0.009494522586464882, 0.030138880014419556, 0.032419778406620026, -0.009605245664715767, -0.03443494439125061, 0.008885543793439865, 0.0033383071422576904, 0.017051387578248978, -0.02568780444562435, -0.008143697865307331, -0.01252280455082655, 0.005386688280850649, -0.02262076921761036, 0.0028317482210695744, -0.0035043922252953053, -0.009439160116016865, 0.02224431000649929, 0.0356750451028347, -0.037335895001888275, -0.05248283967375755, -0.012090983800590038, -0.013873628340661526, -0.0012726258719339967, 0.025444211438298225, 0.00804404728114605, -0.05133131891489029, -0.03160042688250542, -0.014338666573166847, -0.012434225529432297, -0.021424956619739532, 0.009655071422457695, -0.030781075358390808, 0.0261528417468071, 0.006737512070685625, 0.00675412081182003, 0.001343211974017322, 0.022808998823165894, -0.013895773328840733, 0.008176915347576141, -0.017815377563238144, -0.02114814892411232, 0.01783752255141735, -0.06709831207990646, -0.017438918352127075, 0.0032995541114360094, -0.024846306070685387, -0.04353639855980873, 0.017062459141016006, 0.03877529501914978, -0.009306292980909348, -0.023960519582033157, -0.02730436436831951, -0.019952336326241493, -0.036538686603307724, -0.0210817139595747, 0.006211576517671347, 0.007296665105968714, 0.010236368514597416, 0.015445899218320847, 0.003880851436406374, 0.01219063438475132, 0.0025217230431735516, -0.020284507423639297, 0.02062775008380413, 0.049382589757442474, 0.005383919924497604, -0.05669032409787178, -0.03839883580803871, 0.002152184024453163, -0.011703452095389366, -0.008060655556619167, 0.02144710160791874, -0.017682509496808052, 0.01303213182836771, -0.033770602196455, -0.00649945717304945, -0.0437578447163105, 0.02224431000649929, 0.044687919318675995, -0.02246575616300106, -0.0007709109340794384, -0.03797809034585953, 0.009250931441783905, -0.008398361504077911, 0.03839883580803871, 0.003180526429787278, -0.04752243682742119, 0.03299554064869881, -0.013773977756500244, -0.03002815693616867, -0.002709952648729086, -0.0018961363239213824, 0.003916836343705654, 0.004412323236465454, -0.0418534055352211, -0.004506438039243221, -0.010623900219798088, 0.039395347237586975, 0.010856418870389462, 0.025244910269975662, 0.04245131090283394, -0.05022408440709114, -0.002794379135593772, 0.005585989914834499, -0.023008299991488457, 0.0015265974216163158, 0.0006020579021424055, 0.013596819713711739, 0.005724394228309393, 0.035564322024583817, 0.01946515403687954, 0.032486215233802795, 0.005768683273345232, -0.003443494439125061, 0.008525693789124489, -0.005502947606146336, -0.013408590108156204, 0.011559511534869671, -0.029120225459337234, -0.025067752227187157, -0.004428931511938572, -0.0035542177502065897, -0.022211091592907906, 0.008060655556619167, -0.004583944100886583, -0.0066710785031318665, 0.04650378227233887, 0.02071632817387581, 0.010917316190898418, -0.01564520038664341, 0.04245131090283394, 0.0015155250439420342, -0.02590925060212612, 0.008929833769798279, -0.043447818607091904, 0.006554818712174892, -0.005267660599201918, -0.008951977826654911, -0.0239383764564991, -0.019132984802126884, 0.009273075498640537, 0.021624259650707245, 0.023229746147990227, -0.0024359123781323433, -0.02289757691323757, -0.02717149630188942, -0.05119844898581505, 0.013065348379313946, 0.014881210401654243, -0.004201949108392, 0.026396432891488075, -0.005824045278131962, -0.012334574945271015, -0.019620167091488838, -0.01042459812015295, 0.01436081063002348, -0.009394871070981026, -0.014936571940779686, 0.042052704840898514, 0.00862534437328577, -0.0034351900685578585, 0.02453628182411194, -0.02203393541276455, -0.0061174617148935795, -0.011138763278722763, -0.009699360467493534, -0.037933800369501114, -0.0004743800964206457, 0.010308338329195976, 0.016863157972693443, -0.0006951346877031028, -0.005873870570212603, 0.04289420321583748, -0.02475772798061371, 0.026861470192670822, 0.019487299025058746, 0.0118916817009449, -0.019852686673402786, 0.0017798768822103739, -0.004304368048906326, 0.021192437037825584, -0.005015765316784382, 0.01622096262872219, -0.0019777948036789894, -0.018590440973639488, 0.011393426917493343, -0.0362950935959816, 0.013164998963475227, -0.022653985768556595, -0.021092787384986877, -0.03919604420661926, 0.023030444979667664, 0.012655672617256641, 0.019708745181560516, -0.001092700520530343, -0.03687085583806038, -0.0022255382500588894, -0.0018490789225324988, 0.0038282577879726887, 0.0298067107796669, -0.02774725668132305, 0.018612585961818695, 0.0036677089519798756, -0.02745937556028366, -0.019697673618793488, -0.001994403311982751, 0.019874831661581993, 0.002769466256722808, 0.013674326241016388, 0.00637212535366416, 0.05487446486949921, 0.0014200261794030666, 0.00932843703776598, -0.02774725668132305, -0.009649534709751606, -0.02856661006808281, 0.06652255356311798, -0.025975683704018593, 0.027481520548462868, -0.036760132759809494, 0.015058367513120174, -0.004763869568705559, 0.03576362133026123, -0.03069249540567398, 0.010961606167256832, 0.009483450092375278, 0.008199059404432774, -0.0459723100066185, -0.014715125784277916, -0.008653025142848492, 0.03126825764775276, -0.0015805750153958797, -0.007844745181500912, 0.0703757256269455, -0.004949331283569336, 0.029607407748699188, -0.013375373557209969, 0.028300873935222626, -0.011869536712765694, -0.03162257373332977, -0.03290696069598198, -0.009383798576891422, -0.006654469761997461, 0.0005629587103612721, 0.013873628340661526, -0.020683111622929573, 0.014659763313829899, 0.0044316998682916164, 0.028544465079903603, 0.00844818726181984, 0.017527496442198753, 0.00662678899243474, -0.011913825757801533, 0.012788539752364159, -0.007257911842316389, 0.0060842446982860565, 0.0261528417468071, 0.011958115734159946, 0.006427486892789602, 0.024204110726714134, -0.01372968778014183, -0.020240217447280884, 0.01667492836713791, 0.04738956689834595, -0.010269585065543652, -0.0057133217342197895, 0.035586465150117874, 0.03341628983616829, 0.018191836774349213, -0.026640024036169052, -0.02041737549006939, -0.02314116805791855, -0.047256700694561005, 0.035564322024583817, -0.045706573873758316, -0.038443125784397125, 0.0420084148645401, -0.01350824162364006, -0.021912138909101486, -0.0004809543024748564, -0.03569718822836876, -0.014704053290188313, 0.006139606703072786, -0.0010580994421616197, 0.022576479241251945, -0.01388470083475113, 0.008835718967020512, 0.012500659562647343, -0.007634371053427458, 0.00859766360372305, 0.017306050285696983, -0.013928989879786968, 0.009500058367848396, 0.060322050005197525, -0.010258512571454048, 0.004107834305614233, -0.026706457138061523, -0.0396389365196228, 0.0009916655253618956, 0.035874348133802414, -0.023473337292671204, -0.010778912343084812, 0.007745094131678343, 0.026905760169029236, -0.028898779302835464, 0.0029258630238473415, -0.019343359395861626, 0.00024116916756611317, 0.00043839504360221326, -0.002022084081545472, -0.0015556622529402375, 0.04384642466902733, -0.06514958292245865, 0.014958716928958893, -0.01479263138025999, 0.024049099534749985, 0.019509444013237953, 0.035564322024583817, -0.020760616287589073, 0.021613186225295067, 0.001559814321808517, -0.00866963341832161, 0.013829339295625687, -0.03669369965791702, 0.024779872968792915, 0.018590440973639488, -0.020074132829904556, 0.022521117702126503, 0.018623657524585724, 0.006228185258805752, -0.007501502986997366, -0.029607407748699188, 0.033371999859809875, 0.013087493367493153, 0.0031888308003544807, -0.008215668611228466, -0.01009242795407772, -0.020284507423639297, -0.003581898519769311, 0.0029258630238473415, 0.006510529667139053, -0.023074733093380928, -0.020583460107445717, -0.004160427488386631, -0.008686242625117302, -0.014560112729668617, -0.029053792357444763, 0.015689490363001823, 0.0003612347354646772, 0.00870285090059042, 0.01031941082328558, -0.010684797540307045, 0.006964494939893484, -0.033017683774232864, 0.01185846421867609, 0.004761101678013802, 0.048718247562646866, -0.022964010015130043, 0.04854109138250351, -0.00541436905041337, 0.014371883124113083, 0.01733926683664322, -0.028876634314656258, -0.013231432996690273, 0.043802134692668915, 0.0008338848128914833, -0.01659742183983326, -0.006936814170330763, 0.01307642087340355, -0.0029950649477541447, -0.004849680233746767, 0.03357130289077759, -0.00781706441193819, -0.017582857981324196, 0.010640508495271206, -0.02298615500330925, -0.015135874040424824, -0.014759414829313755, -0.017870739102363586, 0.0198194682598114, -0.02730436436831951, -0.013962207362055779, 0.005901551339775324, 0.017970390617847443, 0.025156332179903984, -0.026750747114419937, -0.00804404728114605, -0.018391137942671776, 0.01697388105094433, 0.012035621330142021, -0.00545035395771265, -0.02900950238108635, -0.036605119705200195, -0.007933324202895164, 0.02672860212624073, 0.018690092489123344, 0.021867850795388222, -0.011592729017138481, 0.005267660599201918, 0.00677626533433795, 0.011415570974349976, 0.00961631815880537, 0.01990804821252823, 0.0005591526278294623, -0.005248283967375755, 0.010435670614242554, -0.0170403141528368, 0.07236874103546143, 0.01674136146903038, 0.01674136146903038, 0.038664571940898895, 0.02342904917895794, -0.0010311106452718377, 0.02078276127576828, 0.025244910269975662, 0.01717318221926689, 0.037557341158390045, 0.025510646402835846, -0.02018485590815544, 0.047256700694561005, -0.0041382829658687115, -0.02239932119846344, -0.0037950407713651657, -0.011504149995744228, -0.0282122939825058, -0.010131181217730045, 0.051951367408037186, -0.004689131397753954, -0.04371355473995209, 0.013408590108156204, -0.01013671699911356, -0.019664457067847252, -0.03671584278345108, 0.0023002764210104942, 0.009129134938120842, 0.002978456439450383, 0.0015916472766548395, 0.0040275598876178265, -0.015146946534514427, -0.026174986734986305, -0.005796364508569241, -0.004722348414361477, 0.012401008978486061, -0.023827651515603065, -0.0014490911271423101, -0.007977613247931004, 0.016553131863474846, -0.006997711956501007, 0.0008283486240543425, 0.001475387834943831, 0.00647731265053153, -0.005096039269119501, 0.01812540367245674, -0.02555493637919426, -0.041676245629787445, 0.030072445049881935, -0.01732819527387619, 0.005741002503782511, 0.03365987911820412, -0.007839209400117397, -0.004093993920832872, 0.006178359501063824, -0.019431937485933304, 0.0028898778837174177, -0.011470932513475418, 0.019564805552363396, 0.020306652411818504, 0.0016483929939568043, 0.0003347649471834302, -0.014859065413475037, -0.011736668646335602, 0.027725111693143845, -0.0004678059194702655, -0.03224262222647667, -0.017649292945861816, 0.0004096761695109308, -0.02159104123711586, 0.016065949574112892, -0.0007190093747340143, -0.05053411051630974, 0.009068237617611885, 0.004091225564479828, -0.006886988878250122, 0.017494279891252518, 0.006759657058864832, -0.010402453131973743, 0.05478588491678238, -0.013962207362055779, -0.02291972190141678, -0.012866046279668808, 0.057088930159807205, 0.009367190301418304, -0.0015847270842641592, -0.004700203891843557, 0.012323502451181412, 0.03040461614727974, 0.00043804902816191316, 0.0523056834936142, -0.003817185526713729, -0.027215784415602684, -0.008664097636938095, 0.0051984586752951145, 0.0004889125120826066, 0.012733178213238716, -0.025820670649409294, 0.04165410250425339, 0.03383703902363777, 0.0004124442639295012, -0.01834684982895851, -0.030891798436641693, -0.020207000896334648, 0.01594415307044983, 0.027503665536642075, 0.01325357798486948, -0.0015764228301122785, -0.0017023705877363682, 0.014549040235579014, -0.030094590038061142, -0.011581656523048878, 0.0113380653783679, -0.0009369958424940705, -0.005785292014479637, -0.04734528064727783, -0.0007833672570995986, -0.005270428489893675, 0.011255022138357162, 0.020982064306735992, 0.007219158578664064, -0.04845251142978668, 0.024912741035223007, 0.01945408247411251, -0.006122997961938381, -0.005774219520390034, 0.0048801288940012455, 0.05970199778676033, -0.004404019098728895, -0.006610180716961622, -0.032641224563121796, 0.0005767991533502936, 0.0009944335324689746, 0.019287997856736183, 0.043359242379665375, -0.014172581024467945, 0.0031334690283983946, 0.021181365475058556, 0.010441206395626068, -0.05345720425248146, 0.025864960625767708, -0.016796723008155823, -0.00451474217697978, -0.004088457673788071, -0.014283305034041405, -0.004201949108392, -0.012766395695507526, 0.016187746077775955, -0.009378262795507908, 0.006621252745389938, -0.015434826724231243, 0.056956060230731964, 0.0021300392691046, -0.001062251627445221, -0.016497770324349403, 0.03120182268321514, 0.009057165123522282, 0.01842435635626316, 8.60268046380952e-05, -0.00031175525509752333, -0.027924414724111557, 0.022144658491015434, 0.00332446675747633, 0.0030421223491430283, 0.01599951647222042, 0.00804404728114605, 0.022487901151180267, 0.023539772257208824, -0.03941749036312103, -0.014261160045862198, -0.02805728279054165, 0.00718040531501174, -0.025864960625767708, 0.012212779372930527, 0.011825247667729855, -0.013364301063120365, 0.03348272293806076, -0.007241303101181984, -0.04318208247423172, -0.028522320091724396, 0.013364301063120365, -0.00344072631560266, -0.006864843890070915, -0.0171953272074461, -0.007418460678309202, -0.044621486216783524, 0.020738473162055016, -0.021325305104255676, 0.01931014284491539, 0.026640024036169052, -0.011725596152245998, 0.004916114266961813, 0.01636490225791931, -0.01380719430744648, -0.00011842202366096899, -0.03664940968155861, -3.918566653737798e-05, 0.04752243682742119, 0.017361411824822426, 0.006643397267907858, 0.013962207362055779, -0.010817665606737137, -0.0026449025608599186, 0.033814892172813416, 0.0014504750724881887, -0.018335776403546333, -0.011044648475944996, 0.016497770324349403, 0.010546393692493439, 0.0307589303702116, -0.00637212535366416, 0.0013978815404698253, -0.02077168971300125, 0.004165963735431433, -0.0035652900114655495, -0.038797441869974136, 0.02305258996784687, 0.00145462725777179, -0.0036594048142433167, -0.03328341990709305, -0.05288144573569298, 0.03831025958061218, 0.0077506303787231445, -0.022011790424585342, -0.013142854906618595, 0.01895582675933838, -0.016508841887116432, 0.03281838446855545, 0.024049099534749985, 0.02151353470981121, -0.012655672617256641, 0.01303213182836771, -0.019919119775295258, -0.024713438004255295, -0.025377778336405754, -0.020904557779431343, 0.0054005286656320095, 0.032131899148225784, 0.018778670579195023, -0.04831964522600174, -0.018402211368083954, 0.015290886163711548, -0.0030310500878840685, 0.017018169164657593, -0.02568780444562435, 0.01894475519657135, -0.006886988878250122, -0.024868451058864594, -0.021723909303545952, -0.03532072901725769, 0.0020649894140660763, 0.007761702872812748, -0.012423153035342693, 0.010507640428841114, 0.03436851128935814, -0.0035210007335990667, 0.012722105719149113, 0.0009951256215572357, -0.007650979328900576, -0.021402811631560326, -0.029053792357444763, -0.0023763985373079777, 0.01682993955910206, 0.006870380137115717, 0.029784565791487694, 0.013829339295625687, -0.017671437934041023, -0.003759055631235242, -0.009500058367848396, -0.012910335324704647, 0.012688889168202877, 0.004232397768646479, 0.04222986474633217, -0.015678418800234795, -0.026640024036169052, -0.012212779372930527, 0.006593571975827217, -0.004725116305053234, -0.008287638425827026, -0.001013810164295137, 0.004298831801861525, -0.021989645436406136, -0.021480318158864975, 0.009787938557565212, -0.0025175707414746284, -0.032131899148225784, -0.020505953580141068, 0.0022075455635786057, -0.0009307676809839904, 0.01039138063788414, -0.019354430958628654, 0.006792874075472355, -0.0036317240446805954, -0.01893368363380432, 0.001122457324527204, 0.0031279330141842365, -0.008464795537292957, -0.011188589036464691, 0.0035597537644207478, -0.05434299260377884, 0.010729086585342884, 0.01702924259006977, 0.023229746147990227, -0.027282219380140305, -0.015656273812055588, -0.023296181112527847, -0.02752581052482128, 0.017748944461345673, 0.032574791461229324, -0.02246575616300106, -0.016918519511818886, 0.02071632817387581, -0.0027680823113769293, -0.009051629342138767, -0.013829339295625687, 0.00199163518846035, -0.009599708952009678, -0.012234923429787159, -0.001219340250827372, 0.040436144918203354, -0.018667947500944138, -0.0010207303566858172, -0.01090624462813139, -0.00917896069586277, -0.015235524624586105, -0.01607702113687992, -0.006621252745389938, -0.007108435500413179, -0.01119966059923172, 0.007590081542730331, 0.008215668611228466, -0.008564446121454239, -0.023672640323638916, -0.019077623263001442, 0.006958958692848682, 0.0003354569780640304, -0.01457118522375822, -0.0170403141528368, 0.003850402543321252, 0.024491991847753525, 0.0059735216200351715, 0.006189431995153427, 0.007507039234042168, 0.012711034156382084, 0.009544347412884235, 0.03182187303900719, 0.06160644069314003, 0.0361400805413723, -0.023982664570212364, -0.009267539717257023, 0.047611016780138016, 0.03560861200094223, -0.014925499446690083, -0.045197248458862305, 0.005483570974320173, 0.011116618290543556, 0.06621252745389938, -0.015512333251535892, 0.02679503709077835, -0.027348652482032776, 0.014936571940779686, -0.007922251708805561, -0.0013231433695182204, 0.010025993920862675, 0.00862534437328577, -0.0378895103931427, 0.00675412081182003, 0.018324704840779305, 0.009854372590780258, 0.021347450092434883, -0.015545549802482128, 0.002942471532151103, -0.028610898181796074, -0.012068838812410831, 0.027127206325531006, 0.011000359430909157, 0.006493920926004648, -0.018546150997281075, -0.022432539612054825, 0.042916346341371536, 0.017449989914894104, -0.036095794290304184, -0.001297538517974317, -0.0307589303702116, 0.008796965703368187, 0.008857863023877144, -0.005339630879461765, 0.0012068839278072119, 0.029474539682269096], [0.05171768367290497, 0.04280173033475876, 0.013180664740502834, 0.010964561253786087, 0.008484328165650368, 0.04081754386425018, -0.06529776006937027, 0.00946353655308485, 0.00836192723363638, 0.012710386887192726, 0.019816093146800995, 0.002035723300650716, -0.014688130468130112, 0.04272442311048508, 0.025845956057310104, 0.03525151312351227, 0.050171561539173126, 0.007524446118623018, -0.02494405396282673, 0.057309478521347046, 0.044760145246982574, 0.060092493891716, 0.03187582269310951, 0.005736745893955231, -0.009869392961263657, -0.02464771457016468, 0.02352677844464779, 0.012124150060117245, 0.06359703093767166, -0.07962512969970703, 0.03808606415987015, -0.030561620369553566, 0.033035408705472946, 0.014185641892254353, 0.009192965924739838, 0.04316249117255211, 0.008387695997953415, 0.009701897390186787, 0.016569241881370544, 0.017780369147658348, -0.013348161242902279, -0.02250891551375389, 0.036978013813495636, 0.04532705619931221, -0.018720924854278564, 0.0535987950861454, 0.014443328604102135, -0.004364565014839172, -0.016208481043577194, 0.02996894158422947, 0.044476691633462906, 0.02279237098991871, 0.029814328998327255, -0.046254727989435196, 0.0019745228346437216, 0.054835688322782516, -0.021246252581477165, 0.027727067470550537, 0.04326556622982025, -0.05022310093045235, -0.0199449360370636, -0.00713147409260273, -0.015010238625109196, 0.028989732265472412, -0.02600056864321232, 0.015937911346554756, 0.0018875536043196917, 0.025884609669446945, -0.016363093629479408, 0.014894279651343822, -0.017058847472071648, -0.009553727693855762, 0.0005866394494660199, -0.059834808111190796, 0.007408487144857645, 0.02177450992166996, 0.02713438868522644, 0.02777860499918461, 0.02965971641242504, 0.00695753563195467, -0.05854637548327446, 0.011183594353497028, -0.002697655698284507, 0.03331886604428291, -0.03806029632687569, -0.0039007295854389668, -0.04174521565437317, 0.01887553744018078, -0.028397053480148315, -0.06318473070859909, 0.009038354270160198, 0.012742597609758377, -0.026348445564508438, 0.028319746255874634, 0.019094569608569145, 0.028010522946715355, -0.0003655927430372685, -0.015796182677149773, 0.017406724393367767, 0.03218504413962364, 0.017303649336099625, -0.0024657377507537603, 0.005202046129852533, -0.025098666548728943, 0.09220023453235626, -0.0028860887978225946, -0.05426877737045288, 0.019867628812789917, 0.015886373817920685, -0.04599704220890999, -0.023488124832510948, -0.057000257074832916, 0.05104769766330719, 0.06318473070859909, -0.018450353294610977, -0.019725902006030083, 0.01899149641394615, -0.033756934106349945, 0.014675246551632881, -0.0003595532034523785, 0.021851815283298492, -0.013708922080695629, -0.004593261983245611, -0.07813055068254471, -0.03210773691534996, -0.010288134217262268, -0.021001450717449188, -0.015242156572639942, -0.006744944490492344, -0.026670552790164948, -0.012575101107358932, -0.04390978068113327, 0.06823538988828659, -0.001947143697179854, -0.01142195425927639, 0.01300028432160616, 0.021246252581477165, -0.02968548610806465, 0.004705999977886677, -0.0199449360370636, 0.022341420873999596, 0.003974814433604479, 0.03715839609503746, 0.017561335116624832, -0.04390978068113327, 0.013322392478585243, 0.007286085747182369, 0.026619015261530876, 0.07235836982727051, -0.004255048464983702, -0.03172120824456215, -0.014134105294942856, 0.00616192864254117, -0.014855626970529556, -0.00017786408716347069, 0.0017699841409921646, 0.01644039899110794, 0.06859614700078964, 0.0018215214367955923, 0.00043122225906699896, -0.03388577699661255, -0.0377253033220768, -0.04280173033475876, -0.017599988728761673, 0.04347171261906624, -0.033396169543266296, -0.01412122044712305, 0.03545766323804855, -0.05205267295241356, 0.018063824623823166, -0.050532322376966476, -0.02710862085223198, -0.04741431772708893, 0.0199449360370636, -0.02574288286268711, -0.013438351452350616, 0.030407007783651352, -0.04463130235671997, 0.041204072535037994, -0.01991916634142399, 0.040791772305965424, -0.0012232055887579918, -0.01997070387005806, -0.004506292752921581, 0.009740550071001053, 0.025936147198081017, -0.0015275977784767747, 0.03532882034778595, -0.014366022311151028, 0.019880514591932297, -0.005572470836341381, -0.011544355191290379, -0.003565737046301365, 0.07045149058103561, -0.01783190667629242, -0.024055035784840584, -0.04705355688929558, -0.012433374300599098, 0.003195312572643161, -0.008922395296394825, 0.01891418918967247, -0.04751739278435707, 0.02289544604718685, 0.017999403178691864, -0.035483431071043015, -0.045868199318647385, 0.03182428330183029, 0.038369521498680115, -0.0018521217862144113, -0.04457976669073105, -0.02927318774163723, -0.025910377502441406, -0.04847083240747452, 0.03646264225244522, 0.01932648755609989, -0.03664302080869675, 0.007711268495768309, 0.002789456397294998, 0.03434961289167404, 0.014430444687604904, -0.05344418063759804, 0.007041283883154392, -0.017677294090390205, -0.027572456747293472, -0.029788559302687645, 0.0356895811855793, -0.04610011726617813, -0.022586222738027573, -0.030252395197749138, -0.05612412095069885, -0.012968073599040508, 0.03174697607755661, -0.01673673838376999, -0.054062627255916595, 0.025201739743351936, 0.018205551430583, -0.00561756594106555, -0.04772353917360306, 0.0010122248204424977, 0.013837764970958233, 0.008510096929967403, 0.017780369147658348, 0.05205267295241356, -0.01850189082324505, 0.01213059201836586, -0.038343753665685654, -0.003949045669287443, -0.0063197617419064045, 0.022715065628290176, 0.01533234678208828, -0.009424883872270584, -0.00016085275274235755, -0.0023884319234639406, -0.016337323933839798, -0.05254228040575981, 0.01462370902299881, -0.0443478487432003, -0.04115253686904907, -0.0007138721412047744, -0.025949031114578247, 0.0075630987994372845, -0.00579150440171361, 0.01788344420492649, -0.022946983575820923, -0.034761909395456314, -0.0350969024002552, 0.05885559692978859, -0.03252003714442253, 0.01683981344103813, 0.004773642402142286, -0.03963218629360199, 0.03615341708064079, 0.005324447527527809, -0.012240109033882618, -0.02142663300037384, 0.01922341249883175, 0.019184760749340057, -0.04963042214512825, 0.01960994303226471, -0.05710332840681076, -0.009695454500615597, -0.0008262073388323188, 0.016350209712982178, -0.04148752614855766, 0.025150202214717865, 0.010822833515703678, 0.0031904811039566994, 0.03994140774011612, 0.011383301578462124, -0.009128544479608536, 0.02886088937520981, -0.025820188224315643, -0.027366306632757187, -0.03527728095650673, 0.020511845126748085, -0.006384183187037706, -0.050815779715776443, -0.007421371527016163, 0.02074376307427883, -0.01716192066669464, 0.016350209712982178, 0.025562500581145287, 0.04347171261906624, 0.019043032079935074, -0.016710970550775528, -0.041229840368032455, -0.02677362784743309, -0.04323979467153549, 0.005846262443810701, -0.0023417260963469744, -0.03996717557311058, 0.04107522964477539, -0.11966961622238159, -0.05705179274082184, 0.027211695909500122, -0.032365426421165466, -0.03648841008543968, -0.01052005123347044, 0.04615165293216705, -0.008213757537305355, 0.02035723440349102, -0.01780613698065281, 0.0075115617364645, 0.005846262443810701, 0.010842159390449524, -0.008175104856491089, 0.001177305239252746, 0.0015783298294991255, -0.002125913742929697, -0.024712136015295982, -0.0692145973443985, 0.02323043905198574, 0.03741608187556267, 0.024428680539131165, 0.03205620124936104, 0.029350493103265762, -0.002275693928822875, 0.029041269794106483, 0.02813936583697796, -0.0066934069618582726, 0.040508318692445755, 0.021684318780899048, 0.04316249117255211, -0.017909212037920952, -0.010487840510904789, 0.008980374783277512, 0.0407402366399765, 0.05849483609199524, 0.008832205086946487, -0.001141068059951067, -0.036539945751428604, -0.050197333097457886, -0.012774808332324028, 0.010120637714862823, -0.03994140774011612, -0.04522398114204407, -0.008265295065939426, -0.005115077365189791, -0.08550038188695908, 0.03275195509195328, 0.0041616372764110565, -0.007247433066368103, -0.010468514636158943, 0.03213350847363472, -0.007247433066368103, 0.024866748601198196, -0.027392076328396797, 0.01893995888531208, 0.008684035390615463, 0.016698084771633148, 0.0199449360370636, 0.021207598969340324, -0.024866748601198196, -0.00768550019711256, 0.02860320173203945, -0.0064035095274448395, 0.01482985820621252, 0.01230453047901392, 0.004538503475487232, -0.011537913233041763, 0.043394409120082855, 0.001877890434116125, 0.003987698815762997, -0.0049218120984733105, 0.010346113704144955, 0.024183878675103188, -0.0214524008333683, 0.013927956111729145, -0.010165732353925705, -0.01712326891720295, -0.0181411299854517, -0.003633379703387618, 0.002715371549129486, 0.05777331441640854, -0.005276131443679333, 0.006490478757768869, 0.05633027106523514, -0.012265877798199654, 0.026490172371268272, -0.008555191569030285, -0.034452684223651886, -0.032726187258958817, 0.039013735949993134, 0.02178739383816719, 0.03651417791843414, 0.01566733978688717, -0.018411701545119286, 0.002369105350226164, -0.042337894439697266, 0.0008519759867340326, 0.0132193174213171, -0.008832205086946487, 0.03638533502817154, 0.010777737945318222, -0.020537614822387695, -0.021503938362002373, 0.0019310382194817066, 0.041204072535037994, -0.0384468249976635, -0.031592365354299545, -0.007279643788933754, 0.011673199012875557, -0.017045961692929268, 0.006635427474975586, -0.015912141650915146, 0.0264386348426342, -0.012407605536282063, -0.008542307652533054, -0.0018939957953989506, -0.026593247428536415, -0.01857919804751873, 0.009631033055484295, 0.020086662843823433, 0.03177274763584137, -0.011003213934600353, -0.002683160826563835, 0.025626923888921738, -0.009933814406394958, -0.027623994275927544, -0.033344633877277374, -0.036952245980501175, -0.0239133071154356, 0.03166967257857323, 0.008671150542795658, 0.037287238985300064, -0.022354304790496826, 0.029762791469693184, 0.050558093935251236, -0.0012481689918786287, 0.0356895811855793, 0.01927495002746582, 0.008387695997953415, -0.060556329786777496, 0.0055660284124314785, -0.04893466830253601, -0.0343753807246685, -0.011473491787910461, -0.041539065539836884, -0.011428396217525005, 0.01641463115811348, 0.028036292642354965, 0.09689012914896011, 0.06163861230015755, 0.0069639780558645725, 0.014842743054032326, 0.030587388202548027, -0.017574219033122063, -0.014430444687604904, -0.016607895493507385, -0.01999647356569767, 0.022354304790496826, 0.019442446529865265, 0.030149322003126144, 0.004989454988390207, 0.017226342111825943, 0.02423541620373726, 0.01895284280180931, -0.04259558022022247, -0.012774808332324028, 0.002604244276881218, -0.018063824623823166, 0.0023079048842191696, -0.0463835708796978, -0.04357478767633438, 0.05705179274082184, 0.04831622168421745, 0.08488193899393082, 0.022972751408815384, -0.06735925376415253, -0.02780437469482422, -0.04957888275384903, -0.010223711840808392, -0.012691060081124306, -0.013605847954750061, 0.018476122990250587, -0.03561227396130562, 0.002956952666863799, -0.024802327156066895, 0.01107407733798027, 0.009012585505843163, 0.02356543019413948, -0.06210244819521904, 0.017715947702527046, -0.054835688322782516, -0.004841285292059183, 0.02539500594139099, -0.028397053480148315, -0.016917118802666664, -0.0017587103648111224, -0.0016910677077248693, -0.01780613698065281, 0.010552262887358665, 0.033344633877277374, -0.013502772897481918, 0.004371007438749075, -0.014894279651343822, -0.011086962185800076, 0.02888665720820427, -0.019481100142002106, -0.005169835407286882, -0.007363392040133476, -0.004809074569493532, -0.007524446118623018, -0.007028399500995874, 0.0006683743558824062, 0.0021355769131332636, 0.030587388202548027, -0.09601399302482605, -0.0032323552295565605, -0.016363093629479408, -0.03388577699661255, -0.04171944409608841, -0.00981141347438097, -0.025845956057310104, 0.01970013417303562, 0.005646555684506893, 0.01610540598630905, 0.016363093629479408, 0.008877299726009369, -0.007968955673277378, -0.011363974772393703, -0.0012900431174784899, 0.004509513732045889, 0.029453568160533905, 6.700101039314177e-06, 0.032288119196891785, 0.03102545626461506, 0.015461190603673458, -0.010964561253786087, -0.00189721689093858, 0.0023481682874262333, 0.024467334151268005, -0.007292528171092272, 0.018334394320845604, -0.009250945411622524, 0.027933217585086823, 0.03393731266260147, -0.0005862368270754814, -0.008336158469319344, 0.014520634897053242, 0.0256526917219162, 0.016942888498306274, 0.023797348141670227, -0.0413329154253006, 0.011814926750957966, 0.07060610502958298, -0.005736745893955231, -0.019713018089532852, -0.012111266143620014, -0.030793538317084312, -0.024042151868343353, 0.05457800254225731, -0.0012610533740371466, 0.04427054151892662, 0.01789632812142372, -0.006790039595216513, 0.03489075228571892, -0.03682340309023857, 0.029788559302687645, -0.011666756123304367, 0.008097798563539982, 0.02277948707342148, -0.018669387325644493, 0.005311563145369291, -0.00839413795620203, 0.020911259576678276, -0.016633663326501846, -0.03499382734298706, -0.032288119196891785, 0.02107875607907772, 0.011969538405537605, -0.02283102460205555, 0.024016382172703743, 0.034401148557662964, -0.004912149161100388, 0.05079001188278198, -0.024003498256206512, 0.02826821058988571, -0.016156943514943123, 0.011982422322034836, -0.0019020484760403633, -0.03679763153195381, 0.010249480605125427, 0.008155778050422668, -0.03708108887076378, -0.03566381335258484, 0.044476691633462906, -0.01245914213359356, 0.033035408705472946, -0.01234318409115076, 0.05777331441640854, 0.012472026981413364, 0.020872607827186584, -0.04540436342358589, -0.027005545794963837, 0.003203365486115217, -0.03331886604428291, -0.002573644043877721, -0.009379789233207703, -0.007717710919678211, -0.00943776872009039, 0.031231604516506195, 0.006493699736893177, -0.009785644710063934, -0.026515942066907883, 0.010816391557455063, 0.021967774257063866, -0.04715663194656372, -0.0015171293634921312, 0.007569541223347187, 0.00017091863264795393, -0.03530305251479149, -0.0021355769131332636, -0.03213350847363472, 0.013058263808488846, 0.011898674070835114, -0.011653872206807137, -0.0036301587242633104, 0.005205267574638128, 0.0329323373734951, 0.008812878280878067, -0.022676412016153336, 0.008980374783277512, -0.047233935445547104, 0.019390909001231194, 0.0058365995064377785, 0.04831622168421745, 0.035483431071043015, 0.02609075792133808, -0.019738785922527313, 0.015151966363191605, 0.004805853124707937, -0.00047752531827427447, 0.022573338821530342, -0.005662661045789719, -0.014353138394653797, -0.014327369630336761, 0.009424883872270584, -0.014804089441895485, 0.048754286020994186, -0.007260317448526621, 0.011222247034311295, -0.016195597127079964, 0.010429861024022102, 0.02780437469482422, -0.011550798080861568, 0.00325007108040154, 0.025781534612178802, 0.009489305317401886, 0.02999470941722393, 0.022405842319130898, 0.012246550992131233, 0.023269090801477432, -0.019493984058499336, -0.0096439179033041, -0.009341135621070862, 0.03491652011871338, 0.03811183571815491, -0.00527935242280364, 0.011570123955607414, 0.01744537614285946, -0.007041283883154392, -0.027417844161391258, 0.015345231629908085, -0.01645328290760517, -0.015190619975328445, -0.000868081406224519, 0.03391154482960701, -0.009920930489897728, 0.06241167336702347, 0.007028399500995874, -0.01246558502316475, 0.01390218734741211, -0.03754492476582527, 0.013386813923716545, 0.04957888275384903, 0.027185926213860512, -0.052645351737737656, -0.02213527075946331, -0.08524269610643387, -0.005111855920404196, 0.004876716993749142, -0.01750979758799076, -0.04383247345685959, -0.025072896853089333, -0.03074200078845024, 0.015615802258253098, -0.0036494850646704435, 0.0663285031914711, -0.012021075934171677, -0.013992377556860447, 0.019725902006030083, -0.019352257251739502, -0.035560738295316696, -0.022766603156924248, -0.01712326891720295, 0.012697502970695496, 0.020872607827186584, 0.013927956111729145, 0.003646264085546136, 0.019932052120566368, 0.01753556728363037, -0.05916482210159302, 0.005511270370334387, -0.003359587863087654, 0.009386231191456318, -0.020267043262720108, 0.041255608201026917, 0.009792087599635124, 0.021851815283298492, 0.0463835708796978, -0.013322392478585243, -0.0078014591708779335, 0.005202046129852533, -0.00983074028044939, 0.04780084639787674, 0.010210827924311161, 0.019738785922527313, -0.012968073599040508, -0.00787232257425785, -0.00943776872009039, -0.03757069259881973, -0.006364856846630573, 0.004841285292059183, 0.0047833058051764965, 0.000806075579021126, 0.011273784562945366, -0.013464120216667652, -0.04244096949696541, 0.013708922080695629, 0.029015500098466873, 0.010590915568172932, -0.033782701939344406, -0.011660314165055752, 0.017239227890968323, -0.028757814317941666, 0.028397053480148315, 0.0313604474067688, -0.02777860499918461, -0.01577041484415531, -0.006409951951354742, 0.010951676405966282, -0.011402628384530544, 0.027907447889447212, 0.002014786470681429, -0.017277879640460014, -0.04643511027097702, -0.026245370507240295, -0.01356719434261322, -0.028113598003983498, -0.007234548684209585, -0.03357655182480812, 0.011402628384530544, 0.018489006906747818, 0.014791205525398254, -0.0043226913549005985, -0.01552561204880476, 0.014855626970529556, -0.0034272305201739073, -0.02459617704153061, 0.018321510404348373, 0.0015147135127335787, -0.06102016568183899, 0.012439816258847713, -0.009901603683829308, -0.01533234678208828, -0.029067037627100945, -0.005772177595645189, 0.028654739260673523, -0.026902470737695694, 0.00553059671074152, -0.013966608792543411, 0.0020598815754055977, -0.018489006906747818, -0.043342869728803635, -0.0016049037221819162, 0.005823715124279261, -0.03594726696610451, -0.03744184970855713, 0.008039819076657295, -0.003849192289635539, 0.023024288937449455, -0.06287550926208496, -0.013348161242902279, 0.043780937790870667, -0.003762223059311509, -0.032726187258958817, 0.01610540598630905, -0.03919411823153496, 0.004383891820907593, -0.018050940707325935, 0.021297790110111237, 0.034761909395456314, 0.007730595301836729, 0.009373346343636513, -0.022753719240427017, -0.0016814044211059809, 0.01887553744018078, -0.01301961112767458, -0.014932933263480663, 0.026348445564508438, -0.02320466935634613, -0.01482985820621252, 0.003984477836638689, 0.001550145447254181, -0.00803337711840868, -0.034091923385858536, 0.01461082510650158, -0.0024399692192673683, 0.011273784562945366, -0.00929604098200798, 0.028809351846575737, 0.007795016746968031, -0.01781902275979519, -0.027057083323597908, 0.028989732265472412, -0.052671123296022415, -0.0003732428012881428, 0.0022660307586193085, 0.014894279651343822, 0.010288134217262268, -0.05519644916057587, -0.03896220028400421, -0.04004448279738426, -0.019687248393893242, 0.027417844161391258, -0.02216104045510292, -0.008883742615580559, -0.05524798855185509, 0.025923263281583786, 0.025420773774385452, 0.022727949544787407, -0.008245968259871006, -0.011492818593978882, 0.020086662843823433, 0.003720348933711648, -0.03501959517598152, 0.010268807411193848, -0.0264386348426342, -0.020975681021809578, 0.002839383203536272, 0.020769532769918442, 0.004664125852286816, -0.0370037816464901, 0.011190036311745644, 0.009199407882988453, 0.03355078399181366, 0.01517773512750864, 0.0019487541867420077, -0.00858096033334732, 0.05880406126379967, -0.037313006818294525, 0.0010822833282873034, -0.04893466830253601, -0.05540259927511215, -0.025407889857888222, -0.0038202025461941957, -0.039065275341272354, 0.021607013419270515, -0.027598224580287933, 0.012794135138392448, 0.025807304307818413, 0.03677186369895935, 0.01086792815476656, 0.023423703387379646, -0.005907463375478983, -0.03326732665300369, 0.014237179420888424, 0.029891634359955788, 0.004831621889024973, 0.018849767744541168, -0.0121692456305027, 0.019017264246940613, -0.01749691367149353, -0.03233965486288071, 0.015873488038778305, -0.024351375177502632, -0.01895284280180931, 0.020421655848622322, -0.004445092286914587, -0.029917404055595398, 0.015074661001563072, -0.006529131904244423, 0.028835119679570198, -0.03878181800246239, -0.0047510950826108456, -0.004892822355031967, -0.00598799018189311, -0.009534400887787342, 0.03311271592974663, 0.02646440453827381, 0.01899149641394615, -0.006519468501210213, -0.0407402366399765, 0.048341989517211914, 0.04066292941570282, 0.009585938416421413, 0.011879348196089268, -0.015113313682377338, 0.00633586710318923, 0.0218131635338068, -0.0035399682819843292, -0.008593845181167126, -0.02468636818230152, -0.014597940258681774, 0.007614636328071356, -0.02785591222345829, -0.005475838202983141, -0.0008737182943150401, -0.003868518630042672, 0.0030036582611501217, 0.0356895811855793, 0.010281691327691078, 0.0391683503985405, -0.016968656331300735, -0.028628971427679062, 0.011525029316544533, 0.003601168980821967, 0.03205620124936104, 0.01970013417303562, -0.009321809746325016, 0.014043914154171944, 0.012987399473786354, -0.021645667031407356, 0.011454164981842041, 0.02963394857943058, 0.011383301578462124, -0.0020373340230435133, 0.03842105716466904, -0.00021863089932594448, 0.0124977957457304, -0.030561620369553566, 0.0282424408942461, -0.003939382266253233, 0.017677294090390205, -0.0106939896941185, 0.03244272992014885, -0.006535573862493038, 0.008845089003443718, 0.002510832855477929, -0.0200093574821949, -0.010449187830090523, 0.00946997944265604, -0.017355186864733696, 0.004435428883880377, 0.03218504413962364, 0.005195604171603918, -0.07534753531217575, -0.009077006950974464, -0.010642453096807003, 0.03179851546883583, 0.0006852850783616304, -0.006790039595216513, 0.02074376307427883, -0.011653872206807137, -0.0008777446346357465, 0.011305995285511017, -0.009308924898505211, -0.017973633483052254, -0.030896611511707306, -0.03787991777062416, -0.0011434839107096195, 0.025175971910357475, 0.010288134217262268, -0.006339088082313538, 0.015628686174750328, 0.009231619536876678, -0.008986816741526127, 0.02783014252781868, 0.010777737945318222, 0.017290765419602394, 0.021645667031407356, -0.007633962668478489, 0.01718769036233425, -0.013257971033453941, 0.028397053480148315, 0.001506660832092166, 0.029402030631899834, 0.0124977957457304, 0.027314769104123116, -0.021684318780899048, -0.0021919459104537964, 0.031566597521305084, 0.012594427913427353, -0.020782416686415672, -0.0030584167689085007, -0.00623923446983099, 0.018012287095189095, 0.005018444731831551, -0.025523848831653595, 0.020099546760320663, -0.0071250321343541145, -0.016917118802666664, -0.015899257734417915, -0.018334394320845604, -0.004583598580211401, 0.058288685977458954, -0.004828400909900665, 0.010326786898076534, 0.006654753815382719, -0.04437361657619476, 0.027649762108922005, 0.004319469910115004, 0.0048155165277421474, 7.363190525211394e-05, 0.00455138785764575, 0.0012763534905388951, 0.01783190667629242, -0.021890468895435333, -0.0013029273832216859, 0.022934099659323692, -0.03154082968831062, -0.01899149641394615, 0.04321402683854103, 0.022573338821530342, -0.023488124832510948, -0.008542307652533054, -0.013026053085923195, -0.012375394813716412, 0.01552561204880476, 0.008110682480037212, -0.023668505251407623, 0.016672316938638687, 0.04857390746474266, -0.017677294090390205, -0.002113029360771179, 0.002399705583229661, -0.009341135621070862, 0.014366022311151028, 0.01461082510650158, -0.02172297239303589, 0.0156802237033844, -0.04504360258579254, 0.031618133187294006, -0.00892883725464344, -0.014250064268708229, 0.032288119196891785, 0.0071572428569197655, -0.020511845126748085, 0.005092529579997063, 0.001995459897443652, -0.02919588051736355, 0.00311478553339839, 0.009598822332918644, 0.020911259576678276, 0.021323557943105698, -0.003137333318591118, -0.011918000876903534, 0.026309791952371597, 0.012426931411027908, 0.00962459109723568, 0.008961047977209091, 0.030226627364754677, 0.012285204604268074, 0.007988281548023224, -0.019197644665837288, -0.023127363994717598, -0.02494405396282673, 0.0029344051145017147, 0.002679939614608884, 0.0002941249986179173, 0.0009695455082692206, -0.03782837837934494, -0.03210773691534996, -0.011376859620213509, -0.006628985516726971, 0.0009542453335598111, 0.0009147871169261634, 0.007453582249581814, 0.003552852664142847, -0.007067052647471428, 0.0002701682096812874, 0.01391507126390934, -0.02396484464406967, 0.0038459710776805878, 0.007324738893657923, 0.0306389257311821, 0.002965005347505212, 0.014340254478156567, 0.02040877193212509, 0.01268461812287569, -0.0025204962585121393, 0.03288079798221588, -0.0282424408942461, 0.04460553452372551, -0.01301961112767458, -0.00998535193502903, 0.015216387808322906, 0.010610242374241352, 0.015100428834557533, 0.012607312761247158, 0.019738785922527313, 0.02207084931433201, -0.0329323373734951, 0.019764555618166924, -0.017303649336099625, 0.012961631640791893, -0.008986816741526127, -0.002256367588415742, -0.008735572919249535, -0.01013996358960867, -0.0421832799911499, -0.031154299154877663, 0.01821843534708023, 0.0128263458609581, -0.0020502181723713875, -0.04429630935192108, 0.013631615787744522, 0.01788344420492649, 0.013683153316378593, -0.008078471757471561, -0.021594129502773285, 0.004042456857860088, -0.017264995723962784, 0.013966608792543411, -0.0012328688753768802, -0.014404675923287868, -0.006712733302265406, 0.0020421654917299747, -0.00981785636395216, 0.015847720205783844, -0.00048074638471007347, 0.000657100579701364, -0.00162503554020077, -0.016131175681948662, -0.010481398552656174, 0.0007658120593987405, 0.08282044529914856, 0.04401285573840141, 0.009734108112752438, 0.01752268336713314, 0.031566597521305084, -0.0116281034424901, -0.0025076118763536215, -0.0018505111802369356, 0.012993842363357544, 0.03852413222193718, 0.028706276789307594, 0.016156943514943123, 0.016698084771633148, -0.00034244119888171554, -0.009341135621070862, -0.011467049829661846, -0.00534699484705925, -0.035509198904037476, -0.004776863846927881, -0.00410365778952837, 0.0027314769104123116, -0.03032970242202282, 0.0116281034424901, -0.014314485713839531, -0.017767485231161118, 0.0008479496464133263, 0.010855044238269329, 0.00034284385037608445, -0.027366306632757187, 0.02468636818230152, 0.008368369191884995, 0.01070043258368969, -0.020447423681616783, -0.02392619289457798, 0.006951093673706055, 0.003974814433604479, -0.005330889485776424, -0.04115253686904907, 0.001518739853054285, 0.02351389452815056, -0.04187405854463577, -0.0002605049521662295, 0.007775690406560898, 0.003949045669287443, -0.038395289331674576, 0.005859146825969219, 0.003894287394359708, -0.046228960156440735, 0.011325322091579437, -0.02777860499918461, 0.025626923888921738, 0.02106587216258049, -0.028809351846575737, -0.01481697428971529, -0.017973633483052254, 0.0026557815726846457, 0.018785346299409866, -0.0048155165277421474, -0.02250891551375389, -0.0020969239994883537, -0.013373930007219315, -0.020176853984594345, -0.005743187852203846, -0.03545766323804855, 0.012600869871675968, 0.017380954697728157, -0.046177420765161514, -0.03313848376274109, -0.0094313258305192, -0.01896572671830654, 0.045198213309049606, -0.006809365935623646, -0.0009598822216503322, 0.009746992029249668, -0.015925025567412376, 0.016556357964873314, -0.0414617583155632, 0.031154299154877663, -0.022315651178359985, 0.06251474469900131, 0.030278164893388748, 0.00303747970610857, 0.007852996699512005, 0.07271913439035416, 0.027727067470550537, 0.006912440527230501, -0.028010522946715355, 0.017754599452018738, 0.03357655182480812, -0.012736155651509762, 0.026850933209061623, -0.0023046836722642183, -0.008555191569030285, -0.024905400350689888, 0.03169544041156769, 0.032700419425964355, 0.009856509044766426, -0.038343753665685654, 0.02248314768075943, -0.017071731388568878, 0.003291945206001401, -0.005646555684506893, -0.029067037627100945, 0.017973633483052254, -0.02498270757496357, 0.01970013417303562, 0.009875834919512272, -0.019764555618166924, -0.026515942066907883, -0.010951676405966282, -0.053392644971609116, -0.004854169674217701, 0.011363974772393703, 0.005585355218499899, -0.008542307652533054, -0.030484313145279884, 0.004612588323652744, 0.0044611976481974125, 0.017303649336099625, 0.03576688840985298, -0.024158110842108727, -0.016195597127079964, 0.03522574529051781, 0.057670239359140396, 0.0256526917219162, 0.00926383025944233, -0.035560738295316696, 0.022702181711792946, 0.04025063291192055, 0.022908329963684082, 0.017715947702527046, 0.008336158469319344, -0.014585056342184544, 0.019352257251739502, -0.00616192864254117, -0.002009954769164324, -0.038369521498680115, 0.0047607580199837685, 0.02888665720820427, -0.045146677643060684, 0.026928240433335304, 0.011325322091579437, 0.007247433066368103, -0.008961047977209091, -0.011209363117814064, -0.003726791124790907, -0.024480218067765236, 0.0015171293634921312, 0.036900706589221954, 0.005491943564265966, -0.011711851693689823, 0.007176569197326899, 0.008935279212892056, -0.015551380813121796, -0.007621078286319971, 0.013296623714268208, 0.012948746792972088, -0.02250891551375389, -0.0026493393816053867, -0.0026509498711675406, -0.05107346549630165, 0.01320643350481987, 0.00840702187269926, 0.0060717384330928326, -0.008265295065939426, -0.005047434475272894, 0.010358997620642185, 0.020189737901091576, -0.00768550019711256, -0.011724735610187054, -0.037261467427015305, -0.02813936583697796, 0.02674786001443863, -0.006168370600789785, -0.02109163999557495, -0.006603216752409935, 0.027289001271128654, 0.025523848831653595, -0.021645667031407356, -0.04571358487010002, -0.0007058194605633616, -0.0008423127583228052, -0.0033016083762049675, -0.0016604674747213721, 0.017368070781230927, -0.007112147752195597, 0.0174840297549963, -0.000682063982822001, -0.006409951951354742, 0.020640689879655838, -0.021967774257063866, 0.027933217585086823, 0.008510096929967403, -0.03525151312351227, 0.015100428834557533, -0.03710685670375824, 0.003330598119646311, 0.04607434570789337, -0.0024609060492366552, -0.02534346841275692, 0.014585056342184544, -0.027314769104123116, 0.02248314768075943, -0.01391507126390934, -0.020486077293753624, -0.04826468229293823, 0.018682271242141724, 0.011196478269994259, -0.007962512783706188, -0.012491353787481785, 0.031592365354299545, -0.02429983764886856, -0.029891634359955788, 0.024055035784840584, -0.004351681098341942, -0.0094313258305192, -0.01426294818520546, 0.009547284804284573, 0.006261782255023718, -0.025472311303019524, 0.005214930512011051, -0.00787232257425785, 0.026979777961969376, -0.02504712902009487, -0.004432207904756069, -0.013386813923716545, 0.012008191086351871, 0.012774808332324028, -0.0018247425323352218, 0.008149336092174053, 0.0021420191042125225, -0.02852589637041092, -0.005665882024914026, -0.010951676405966282, 0.004264711868017912, -0.014301600866019726, 0.006809365935623646, 0.000576573540456593, 0.021233368664979935, -0.03499382734298706, 0.0019294277299195528, 0.019171876832842827, -0.033421941101551056, -0.02466059848666191, -0.0010903360089287162, -0.00031405541813001037, -0.009772760793566704, -0.01824420504271984, -0.04004448279738426, -0.036230724304914474, -0.0012473637470975518, 0.022599106654524803, -0.010945234447717667, -0.01573176123201847, 0.0157446451485157, -0.021194715052843094, -0.03066469356417656, -0.019055917859077454, -0.00401668855920434, -0.0065323528833687305, 0.0004223642754368484, -0.03241696208715439, 0.03532882034778595, -0.001879500923678279, 0.021233368664979935, -0.006145823281258345, -0.020782416686415672, 0.005778620019555092, 0.02780437469482422, -0.0052117095328867435, 0.008349042385816574, 0.02994317188858986, 0.02245737984776497, -0.00489926477894187, -0.023320628330111504, 0.0026267918292433023, 0.0022209356538951397, 0.014520634897053242, -0.017664410173892975, 0.0015694719040766358, -0.018746692687273026, 0.012897209264338017, -0.03829221427440643, 0.003050364088267088, -0.015100428834557533, -0.009579495526850224, -0.021697204560041428, 0.008870857767760754, 0.011518586426973343, 0.022380072623491287, 0.018012287095189095, 0.01551272813230753, 0.024325605481863022, -0.0175484512001276, -0.00837481115013361, 0.022405842319130898, -0.027907447889447212, -0.04452822729945183, 0.010416977107524872, -0.02958241105079651, -0.002869983436539769, -0.014585056342184544, -0.026284024119377136, 0.00758886756375432, 0.0037396755069494247, 0.00965680181980133, 6.086711437092163e-06, 0.0019423119956627488, 0.002351389266550541, -0.041281379759311676, -0.02567845955491066, 0.0004352486284915358, 0.02105298824608326, 0.001599266892299056, -0.0343753807246685, 0.01816689781844616, 0.009598822332918644, -0.0293247252702713, 0.015602918341755867, 0.028835119679570198, 0.00553059671074152, 0.01785767450928688, -0.020589152351021767, -0.03940026834607124, 0.05076424032449722, -0.0030970696825534105, -0.008935279212892056, -0.034839216619729996, -0.017625756561756134, -0.009031912311911583, 0.01144128106534481, -0.025807304307818413, -0.009695454500615597, -0.011286669410765171, 0.011299553327262402, -0.012317415326833725, -0.01159589271992445, -0.03038123995065689, -0.040121790021657944, -0.00946997944265604, -0.014585056342184544, -0.012259435839951038, -0.00822019949555397, -0.015783298760652542, 0.01637597754597664, 0.044399384409189224, 0.019416678696870804, 0.023707158863544464, -0.0004501461226027459, 0.005024886690080166, 0.03991563990712166, 0.0033821354154497385, -0.014443328604102135, -0.020421655848622322, -0.018050940707325935, 0.002199998591095209, 0.016582125797867775, -0.016182713210582733, 0.014391791075468063, -0.0020196179393678904, -0.0306389257311821, -0.0020969239994883537, -0.013605847954750061, 0.0067256176844239235, 0.0027008766774088144, -0.03035547025501728, -0.0021790615282952785, -0.010977445170283318, -0.006313319317996502, 0.00854874961078167, -0.03610188141465187, -0.004251827485859394, -0.004966907203197479, -0.005314784124493599, 0.04208020493388176, -0.012974515557289124, 0.005585355218499899, -0.006635427474975586, -0.008503654971718788, -0.022727949544787407, -0.00652268948033452, -0.03952911123633385, -0.014443328604102135, -0.03331886604428291, -0.00892883725464344, 0.037261467427015305, -0.00615226523950696, 0.026541709899902344, 0.007260317448526621], [-0.011754666455090046, -0.020864378660917282, 0.017272163182497025, -0.013655342161655426, 0.00018289778381586075, 0.05112757161259651, -0.029229814186692238, 0.05427690967917442, -0.006766160484403372, 0.0446566604077816, -0.026375724002718925, -0.04295896738767624, 0.07553495466709137, 0.008150148205459118, -0.021934662014245987, 0.032157715409994125, -0.0037244639825075865, -0.014147426933050156, -0.020040137693285942, -0.021737828850746155, 0.04647737368941307, -0.0008457700605504215, -0.02213149704039097, -0.02083977498114109, -0.03141959011554718, -0.020286180078983307, 0.00021970800298731774, 0.012954122386872768, 0.0349872000515461, -0.033978428691625595, 0.0618550106883049, -0.05526107922196388, 0.04549320414662361, -0.027728956192731857, -0.011563983745872974, -0.030878296121954918, 0.01081970613449812, -0.00517303729429841, 0.03722618520259857, 0.003466119524091482, 0.05235778167843819, 0.039612796157598495, -0.02612968161702156, 0.007055260241031647, -0.014996272511780262, 0.009601796977221966, -0.018748415634036064, -0.0165463387966156, -0.0017069177702069283, 0.04049854725599289, 0.013224768452346325, 0.01455339603126049, -0.01885913498699665, 0.0021513316314667463, 0.03796431049704552, 0.026080474257469177, -0.0005743547808378935, 0.010020068846642971, 0.03550389036536217, -0.004293436650186777, 0.015020876191556454, 0.02365695871412754, 0.01381526980549097, 0.02893456257879734, -0.011041143909096718, 0.00015377637464553118, -0.011545530520379543, 0.0299187321215868, -0.02267278917133808, -0.012831101194024086, -0.008162450045347214, 0.006329435855150223, 0.013421602547168732, -0.05786912515759468, -0.025440763682127, 0.0026018964126706123, -0.00952183362096548, -0.01754280924797058, 0.016940005123615265, 0.015205408446490765, -0.004247303586453199, 0.030952109023928642, -0.01297872606664896, -0.019388126209378242, 0.05604841560125351, -0.03235454857349396, -0.06283918023109436, -0.015180803835391998, 0.005618989001959562, 0.03353555127978325, -0.07120461761951447, 0.03009096160531044, -0.014602605253458023, 0.03124736063182354, 0.01381526980549097, 0.0575246661901474, 0.03493799269199371, -0.01920359395444393, -0.05373561754822731, 0.027212267741560936, -0.008912879042327404, -0.03653726726770401, -0.002362005179747939, -0.01412282232195139, 0.022266820073127747, -0.056294456124305725, -0.046895645558834076, 0.04468126595020294, -0.023017248138785362, 0.0001494514144724235, 0.0644630566239357, -0.03673410043120384, 0.02181164175271988, 0.060231130570173264, -0.04295896738767624, 0.01470102183520794, -0.029820315539836884, -0.011237978003919125, -0.012215995229780674, 0.025440763682127, -0.059739045798778534, -0.01904366724193096, 0.008919029496610165, -0.04815046116709709, 0.020581429824233055, -0.0160419512540102, 0.012794194743037224, -0.02099970169365406, -0.08832915127277374, 0.03358476236462593, 0.00926963984966278, -0.044902700930833817, -0.011822327971458435, -0.006883030757308006, 0.028688520193099976, -0.008322377689182758, -0.008814461529254913, 0.01553756557404995, -0.023681562393903732, -0.03535626456141472, 0.02033538743853569, 0.023447822779417038, 0.010130788199603558, 0.01801028847694397, -0.05137361213564873, 0.00577891618013382, -0.009903199039399624, -0.017444392666220665, 0.007104468531906605, 0.020261576399207115, -0.04202400892972946, 0.012062218971550465, -0.009281942620873451, -0.019474240019917488, -0.018059497699141502, 0.040916819125413895, 0.01636180654168129, -0.004250379279255867, -0.008937482722103596, 0.01717374660074711, -0.020753659307956696, -0.042393073439598083, -0.027704352512955666, -0.021196536719799042, -0.020421503111720085, -0.0015246927505359054, -0.008808311074972153, -0.005745085421949625, -0.08060342818498611, -0.022229913622140884, -0.05599920451641083, 0.015918930992484093, -0.029057584702968597, -0.010321470908820629, -0.022574372589588165, -0.031345777213573456, 0.04138429835438728, -0.018219424411654472, -0.04399234801530838, 0.019412729889154434, 0.017087630927562714, 0.02859010361135006, -0.0370047464966774, -0.007541193626821041, -0.06869498640298843, 0.011311789974570274, -0.005443683825433254, 0.0008357746410183609, -0.030829088762402534, 0.00017818837659433484, -0.008636081591248512, 0.024874866008758545, -0.01429505180567503, -0.0009634090238250792, 0.006104922387748957, 0.016657058149576187, -0.02612968161702156, 0.00023643118038307875, -0.009687911719083786, 0.0012109889648854733, 0.0349872000515461, -0.011028842069208622, 0.026326516643166542, 0.01263426709920168, -0.03715237230062485, 0.03245296701788902, 0.02246365323662758, 0.014713323675096035, 0.011496322229504585, -0.028024207800626755, 0.016620151698589325, -0.029820315539836884, -0.026818599551916122, 0.026326516643166542, -0.045886870473623276, 0.019634168595075607, -0.016497129574418068, -0.04977433755993843, -0.018453165888786316, 0.01125027984380722, -0.03631582856178284, -0.046378955245018005, -0.03466734662652016, 0.015266918577253819, -0.04682183265686035, 0.04229465499520302, 0.03356015682220459, -0.032477572560310364, -0.016312597319483757, -0.09226582944393158, 0.006458607967942953, 0.02048301324248314, 0.004600989166647196, 0.0005336040048860013, -0.017136840149760246, -0.032969653606414795, -0.01755511201918125, -0.0774540826678276, 0.01817021705210209, 0.026055868715047836, -0.00967560987919569, -0.03951437771320343, 0.009042050689458847, 0.02149178646504879, 0.03941596299409866, -0.040769193321466446, -0.004308814182877541, -0.02827025018632412, 0.03749683126807213, 0.027876581996679306, 0.04874096065759659, 0.011711608618497849, 0.010419887490570545, -0.04632974788546562, 0.012295959517359734, -0.005074620246887207, -0.0027418327517807484, -0.022439049556851387, -0.0026203494053333998, -0.022771205753087997, -0.002362005179747939, 0.03277282044291496, -0.03336332365870476, 0.026867808774113655, -0.10274722427129745, 0.03240375965833664, 0.02743370644748211, 0.0060341851785779, -0.002409675857052207, 0.025416160002350807, -0.06072321534156799, 0.04268832132220268, 0.03235454857349396, -0.005751236341893673, -0.021565599367022514, 0.007916407659649849, -0.02429666742682457, -0.027851978316903114, -0.016460223123431206, 0.022217610850930214, -0.008482305333018303, -0.020052440464496613, -0.016940005123615265, -0.025514576584100723, -0.006415550597012043, 0.009134316816926003, 0.019929418340325356, 0.009614098817110062, -0.016337202861905098, -0.04086761176586151, 0.04559161886572838, -0.027482913807034492, 0.021393369883298874, 0.008722196333110332, 0.06338047236204147, 0.02066754549741745, 0.03287123888731003, 0.013273976743221283, -0.00608031777665019, 0.004619442392140627, 0.017087630927562714, -0.0024204400833696127, 0.0004328805080149323, -0.056786540895700455, 0.03616820275783539, 0.07484603673219681, -0.002766437130048871, 0.050168003886938095, 0.023004945367574692, -0.007221338804811239, -0.001058750320225954, 0.0734189972281456, -0.042589906603097916, -0.059246961027383804, -0.02015085704624653, -0.028639312833547592, -0.0033430985640734434, 0.007049109321087599, 0.03555309772491455, -0.006569326855242252, 0.026228098198771477, 0.001576207927428186, 0.002159020397812128, -0.07041727751493454, -0.05427690967917442, -0.02381688542664051, 0.04170415550470352, 0.06121530011296272, -0.012111427262425423, -0.0621502622961998, -0.032649800181388855, -0.010647476650774479, 0.02263588272035122, -0.017739642411470413, -0.02082747220993042, 0.02214379794895649, -0.0383087694644928, 0.017075328156352043, -0.03985883668065071, -0.009970860555768013, 0.046403560787439346, -0.027409100905060768, -0.03673410043120384, 0.020052440464496613, -0.007467380724847317, -0.028516290709376335, 0.01413512509316206, 0.012166786938905716, 0.013323185034096241, 0.03486417979001999, -0.005692801438271999, -0.010290714912116528, -0.06638218462467194, 0.015402241609990597, -0.051521237939596176, -0.019437333568930626, 0.03737381100654602, 0.029229814186692238, 0.00198217760771513, -0.005231472197920084, 0.00320162414573133, 0.0003834798408206552, 0.031025921925902367, 0.03144419193267822, 0.034470513463020325, -0.0029786485247313976, -0.02859010361135006, 0.01280649658292532, 0.048371896147727966, -0.042885154485702515, 0.01935121975839138, 0.012123730033636093, 0.015832815319299698, 0.01984330452978611, 0.005200717132538557, -0.00545598566532135, -0.005151508841663599, 0.0003815576492343098, -0.039096105843782425, -0.024272063747048378, -0.03722618520259857, -0.004822427406907082, -0.01478713657706976, -0.04564082995057106, 0.0287623330950737, 0.003908995538949966, -0.055113453418016434, -0.026843205094337463, -0.04148271679878235, 0.01364304032176733, -0.002551150042563677, 0.008064033463597298, -0.009380359202623367, -0.013569227419793606, -0.0528990738093853, 0.022242214530706406, 0.013347789645195007, 0.040892213582992554, 0.03732460364699364, 0.007049109321087599, -0.0274583101272583, -0.040449339896440506, 0.0031893220730125904, 0.02726147696375847, -0.026080474257469177, 0.0158943273127079, -0.05585157871246338, -0.011674702167510986, -0.02279580943286419, 0.02114732749760151, 0.011502472683787346, -0.029180604964494705, 0.03717697784304619, -0.01056751236319542, 0.01553756557404995, -0.011939197778701782, -0.027335288003087044, 0.021700922399759293, 0.005981901194900274, -0.023201780393719673, 0.024665730074048042, 0.02627730742096901, 0.01588202454149723, 0.01478713657706976, -0.017604319378733635, 0.015156200155615807, 0.00603726040571928, 0.003023243509232998, 0.024887168779969215, -0.04396774247288704, 0.07327137142419815, -0.008709894493222237, 0.010678231716156006, 0.022574372589588165, -0.05900092050433159, -0.03766906261444092, 0.001957573229447007, 0.024862565100193024, 0.032625194638967514, -0.0004601757973432541, 0.04298357293009758, 0.02994333580136299, -0.001081047928892076, -0.01951114647090435, -0.052653033286333084, 0.03333871811628342, -0.05408007651567459, -0.01323707029223442, -0.05855804309248924, 0.0019683376885950565, -0.032477572560310364, -0.018785322085022926, -0.045567017048597336, -0.010542908683419228, -0.0028064188081771135, -0.009823234751820564, -0.00013734152889810503, -0.029377439990639687, 0.03301886469125748, 0.01157013513147831, -0.007092166692018509, -0.0006358653190545738, -0.030878296121954918, 0.04576385021209717, -0.005317586939781904, -0.00756579777225852, -0.02114732749760151, 0.00037060107570141554, 0.03638964146375656, -0.022906528785824776, 0.006434003822505474, -0.004770143423229456, 0.006347889080643654, -0.022254517301917076, 0.06210105121135712, 0.03390461578965187, 0.016164973378181458, -0.07528891414403915, 0.00048324227100238204, -0.010296866297721863, -0.016484826803207397, -0.023029550909996033, -0.031468797475099564, -0.014627208933234215, 0.06283918023109436, 0.06146134436130524, 0.023275593295693398, 0.001959111075848341, 0.001307868049480021, -0.011637796647846699, -0.010776648297905922, -0.03203469514846802, 0.027236871421337128, -0.011883838102221489, 0.031148942187428474, -0.011268733069300652, -0.01981869898736477, 0.026498746126890182, 0.021098118275403976, 0.009694063104689121, -0.00033215698204003274, -0.027212267741560936, 0.04268832132220268, 0.023730769753456116, 0.022229913622140884, 0.039096105843782425, -0.04458284750580788, -0.044361408799886703, -0.030189378187060356, -0.005139206536114216, -0.0030340079683810472, 0.009275791235268116, 0.01853927969932556, -0.03156721591949463, -0.02593284845352173, -0.012966424226760864, -0.03850560635328293, -0.0037090862169861794, -0.030312400311231613, -0.0032354549039155245, 0.001061056973412633, -0.05516266077756882, -0.026917017996311188, 0.01968337595462799, 0.006889181677252054, 0.02365695871412754, 0.017419788986444473, -0.09812162816524506, -0.008051730692386627, 0.012535850517451763, -0.0014301203191280365, -0.026818599551916122, -0.02181164175271988, 0.018465466797351837, -0.020421503111720085, 0.00359836732968688, -0.030878296121954918, 0.03658647462725639, 0.025096304714679718, -0.053292740136384964, 0.05501503869891167, 0.0066615925170481205, 0.009737120009958744, -0.0066308374516665936, 0.002817183267325163, 0.00019049049296882004, -0.0027387572918087244, 0.014147426933050156, 0.028811542317271233, 0.019548052921891212, -0.002471186453476548, 0.021762432530522346, -0.025588389486074448, 0.0009372670319862664, -0.0031401135493069887, 0.05221015587449074, -0.02957427315413952, -0.03899769112467766, 0.010333772748708725, -0.016423316672444344, 0.0035276301205158234, 0.02809801883995533, -0.0023789205588400364, 0.0012571219122037292, 0.03525784611701965, 0.03193627670407295, -9.937798313330859e-05, 0.03294505178928375, -0.025342347100377083, -0.017739642411470413, -0.03388001024723053, -0.0069999005645513535, 0.01853927969932556, 0.039243731647729874, 0.050881527364254, -0.0051668863743543625, 0.02758133038878441, 0.022586673498153687, 0.021787038072943687, -0.008279319852590561, 0.010592116974294186, 0.04529637098312378, -0.02760593593120575, 0.031124338507652283, -0.012511245906352997, 0.0016746247420087457, 0.010026220232248306, -0.028688520193099976, -0.015648284927010536, -0.014762531965970993, 0.03225613385438919, -0.0037921254988759756, 0.010247658006846905, -0.011594738811254501, -0.026252703741192818, 0.024050625041127205, 0.014541094191372395, 0.01949884556233883, 0.03090290166437626, -0.0014970130287110806, -0.0024696486070752144, 0.004071998409926891, 0.014516490511596203, -0.00306014996021986, 0.00743662565946579, 0.005385248921811581, -0.015057782642543316, 0.01634950377047062, 0.01381526980549097, 0.006203338969498873, 0.011797723360359669, 0.024013718590140343, -0.002075981115922332, -0.018145613372325897, -0.0351102240383625, 0.02728608064353466, -0.017924174666404724, -0.029648086056113243, -0.013249373063445091, 0.024887168779969215, -0.031124338507652283, -0.021787038072943687, 0.016251087188720703, 0.009411114268004894, -0.031148942187428474, -0.012572756968438625, -0.025157814845442772, -0.047363124787807465, 0.04005566984415054, -0.019228197634220123, -0.03833337500691414, 0.0575246661901474, -0.014368864707648754, -0.030189378187060356, 0.006569326855242252, -0.00950338039547205, 0.026252703741192818, -0.05221015587449074, 0.017751945182681084, -0.0034999502822756767, 0.0019867909140884876, 0.03572532907128334, -0.011736213229596615, -0.009921652264893055, 0.027015434578061104, -0.004684028681367636, 0.04313119873404503, 0.013839874416589737, -0.012049917131662369, -0.003438439918681979, 0.021700922399759293, -0.0048101251013576984, -0.01584511809051037, -0.003995110280811787, 0.03385540843009949, 0.0024834885261952877, -0.030656859278678894, 0.06584089249372482, 0.031985487788915634, -0.022537466138601303, -0.012843403033912182, 0.008537664078176022, 0.006735405419021845, 0.009072806686162949, 0.00582197355106473, -0.0005728169926442206, 0.048987001180648804, 0.03272361308336258, -0.022020777687430382, 0.010875065810978413, -0.01735827699303627, -0.03075527586042881, -0.0008573033264838159, -0.013495414517819881, 0.004699406214058399, -0.009275791235268116, -0.018108706921339035, -0.0023973737843334675, -0.040424734354019165, -0.015943534672260284, -0.05009419098496437, -0.023423217236995697, 0.016287993639707565, 0.0008219347218982875, -0.022205308079719543, 0.0040843007154762745, 0.009232733398675919, -0.00793486088514328, -0.0050161853432655334, -0.020261576399207115, -0.03574993088841438, 0.025859035551548004, -0.004247303586453199, -0.02743370644748211, -0.00608031777665019, 0.055802371352910995, -0.01164394710212946, -0.0013601520331576467, -0.03456892818212509, -0.02679399587213993, -0.00976172462105751, 0.04249148815870285, 0.00013455432781483978, -0.03867783397436142, -0.03269900754094124, 0.01149017084389925, 0.009238884784281254, 0.006169508211314678, 0.042540695518255234, 0.005314511712640524, 0.0005743547808378935, -0.011607040651142597, -0.04017869383096695, -0.002225144300609827, 0.017407486215233803, 0.03572532907128334, 0.0017884193221107125, 0.011385602876543999, -0.0009257337660528719, 0.0007738796412013471, -0.031025921925902367, 0.022082287818193436, -0.03105052560567856, -0.009115863591432571, 0.03390461578965187, -0.01032762136310339, -0.04598528891801834, -0.017309069633483887, 0.026080474257469177, -0.033830802887678146, 0.04185177758336067, -0.02580982632935047, 0.01767813228070736, -0.012769590131938457, -0.020458409562706947, -0.00631713354960084, -0.029648086056113243, -0.024665730074048042, -0.016989214345812798, -0.020077044144272804, 0.013052538968622684, -0.018920645117759705, 0.0027618238236755133, -0.003908995538949966, -0.021577902138233185, -0.0017207576893270016, 0.018588488921523094, 0.014934761449694633, -0.022205308079719543, 0.012658871710300446, 0.001731522032059729, 0.008525362238287926, 0.028147228062152863, -0.04765837639570236, -0.02035999298095703, 0.011084201745688915, -0.012855704873800278, -0.015906628221273422, -0.016128066927194595, -0.014860949479043484, 0.046034496277570724, 0.007941012270748615, 0.006397097371518612, 0.024345876649022102, -0.0029894127510488033, 0.004926995374262333, -0.025514576584100723, -0.03292044624686241, 0.008605326525866985, -0.03188706934452057, -0.04101523384451866, 0.00012177167081972584, 0.01949884556233883, 0.013347789645195007, 0.007971767336130142, 0.01600504480302334, 0.0165463387966156, 0.017801154404878616, -0.00608031777665019, 0.015119293704628944, 0.04763377085328102, -0.016435619443655014, 0.010266111232340336, 0.004708632826805115, 0.03373238444328308, 0.009897047653794289, 0.007701120804995298, 0.007701120804995298, 0.0012794195208698511, -0.0018837606767192483, -0.014811740256845951, 0.008082486689090729, -0.010764346458017826, -0.027384497225284576, 0.0034322887659072876, 0.025157814845442772, 0.00950338039547205, -0.051816489547491074, -0.06761239469051361, 0.012966424226760864, -0.009460322558879852, -0.011693155393004417, -0.01884683221578598, 0.02263588272035122, 0.0575246661901474, -0.001106420997530222, -0.011010388843715191, 0.01638641022145748, -0.02130725421011448, -0.04015408828854561, -0.0367094986140728, 0.04664960131049156, -0.03105052560567856, 0.05063548684120178, 0.010229204781353474, 0.008482305333018303, 0.020938191562891006, -0.000945724721532315, 0.002969421911984682, 0.034150656312704086, -0.018576186150312424, -0.024272063747048378, 0.01701381802558899, -0.030509233474731445, 0.02398911491036415, 0.028540896251797676, -0.0016392561374232173, -0.02726147696375847, 0.0036629533860832453, -0.0007365888450294733, 0.002501941751688719, 0.030041752383112907, -0.004121206700801849, -0.016767775639891624, -0.013753759674727917, -0.04111365228891373, 0.004554856102913618, -0.027974998578429222, 0.02166401594877243, -0.009072806686162949, 0.03656187281012535, -0.002588056493550539, -0.05471978709101677, -0.034126054495573044, -0.019917115569114685, 0.01584511809051037, 0.01422123983502388, 0.019892511889338493, -0.03520863875746727, 0.023214081302285194, 0.007264396175742149, -0.05801675096154213, -0.0022159176878631115, -0.04111365228891373, 0.04384472221136093, -0.0073259067721664906, -0.007073713466525078, -0.019080573692917824, 0.03715237230062485, -0.004644046537578106, -0.021725526079535484, -0.013360091485083103, 0.026818599551916122, 0.001354000996798277, -0.005600535776466131, -0.005769689567387104, 0.03434749320149422, -0.04187638312578201, 0.042417675256729126, -0.01753050647675991, -0.011674702167510986, 0.008783706463873386, -0.010832007974386215, -0.0006658516940660775, -0.01718604750931263, -0.029131397604942322, 0.006747707258909941, 0.02135646343231201, 0.018293237313628197, 0.01049370039254427, -0.03161642327904701, 0.027089247480034828, 0.003180095460265875, -0.0028248720336705446, -0.04121207073330879, 0.010284564457833767, -0.06795685738325119, 0.050832320004701614, 0.021098118275403976, 0.02758133038878441, 0.012092974036931992, 0.0005497505771927536, 0.025859035551548004, 0.0019729509949684143, 0.019535750150680542, -0.02349703013896942, 0.01049985084682703, -0.006680045742541552, 0.0018960627494379878, 0.03405224159359932, -0.010013917461037636, -0.0041150557808578014, 0.007916407659649849, 0.0024173646233975887, -0.007006051950156689, -0.005489816889166832, 0.030361607670783997, -0.012880309484899044, 0.05791833624243736, -0.006716952193528414, 0.02083977498114109, -0.017727341502904892, 0.002072905655950308, -0.042393073439598083, 0.005769689567387104, -0.014836344867944717, -0.031813256442546844, 0.017149141058325768, 0.0041335090063512325, -0.0031370380893349648, 0.038431793451309204, 0.002980186138302088, -0.03176404908299446, 0.02331249974668026, 0.02214379794895649, 0.006643139291554689, -0.02316487394273281, 0.036438848823308945, 0.00933115091174841, -0.006593931000679731, -0.016251087188720703, 0.04527176544070244, 0.01819482073187828, 0.057130999863147736, 0.0057604629546403885, -0.004367249086499214, -0.009767875075340271, 0.008064033463597298, 0.006600081920623779, 0.0019345068139955401, 0.024924075230956078, 0.014565698802471161, -0.020630639046430588, -0.04054775461554527, 0.02977110631763935, 0.014971667900681496, 0.003463044064119458, 0.0017023044638335705, -0.007141374982893467, -0.013347789645195007, -0.004173490684479475, -0.02396451123058796, -0.029057584702968597, -0.030681462958455086, -0.020569128915667534, -0.005806596018373966, 0.0323791541159153, 0.01652173325419426, 0.001937582390382886, -0.025243930518627167, 0.061264507472515106, 0.013704550452530384, 0.01099193561822176, -0.01438116654753685, 0.03471655398607254, 0.036980144679546356, -0.0077195740304887295, 0.013114049099385738, 0.0004348026996012777, 0.008482305333018303, -0.018551582470536232, -0.004776294343173504, 0.012695778161287308, 0.032797425985336304, 0.01670626550912857, -0.014578000642359257, 0.03968660905957222, -0.0436478853225708, -0.011477869004011154, 0.025010190904140472, 0.004893164150416851, 0.01754280924797058, 0.0341014489531517, -0.016324900090694427, -0.01868690550327301, 0.026646370068192482, 0.015783607959747314, 0.002523470437154174, -0.013950592838227749, 0.017222953960299492, -0.0026741712354123592, -0.021528692916035652, 0.023263290524482727, 0.014897855930030346, -0.013212466612458229, 0.01671856828033924, 0.01164394710212946, -0.0149593660607934, 0.029894128441810608, -0.009288093075156212, 0.06072321534156799, -0.0004482581280171871, -0.01191459409892559, -0.02016315795481205, -0.008439247496426105, -0.017899570986628532, 0.010530605912208557, 0.006655441597104073, -0.0018606941448524594, 0.018293237313628197, -0.00433341832831502, 0.01917899027466774, -0.022389840334653854, -0.001713068806566298, -0.020138554275035858, -0.0111641651019454, -0.010616721585392952, -0.0016869268147274852, -0.03486417979001999, 0.017592018470168114, -0.007036807015538216, 0.009583343751728535, 0.054965827614068985, -0.029032981023192406, 0.005566705018281937, 0.02330019697546959, -0.003012479282915592, -0.013532320968806744, 0.009552588686347008, 0.01964646950364113, -0.003699859604239464, 0.0073566618375480175, -0.016447922214865685, -0.0070245047099888325, 0.03838258236646652, -0.00958949513733387, 0.001556985778734088, -0.004428759682923555, -0.008580721914768219, -0.00045786917326040566, -0.01149017084389925, 0.0029817239847034216, -0.027335288003087044, 0.019314313307404518, 0.02113502472639084, -0.013827571645379066, 0.016484826803207397, 0.007270547095686197, 0.0002641109167598188, 0.023386310786008835, 0.03009096160531044, 0.02346012368798256, -0.017887268215417862, -0.03816114738583565, 0.008617628365755081, 0.002226681914180517, -0.03205930069088936, 0.0027310685254633427, 0.0009057428687810898, 0.003822880797088146, -0.030361607670783997, -0.004705557134002447, 0.0059173149056732655, 0.0013247835449874401, -0.0004659424303099513, 0.019929418340325356, -0.026917017996311188, 0.0019744886085391045, 0.014049009419977665, 0.029229814186692238, 0.008119393140077591, -0.007824142463505268, -0.023275593295693398, -0.0004990043235011399, 0.00648936303332448, 0.021085817366838455, -0.03488878533244133, -0.022045381367206573, -0.026375724002718925, -0.01749360002577305, -0.00776263140141964, 0.013446206226944923, 0.0035891407169401646, -0.04458284750580788, 0.010321470908820629, -0.009687911719083786, -0.016398712992668152, 0.00028756182291544974, -0.0045886873267591, 0.015918930992484093, -0.006913785822689533, 0.02662176638841629, 0.028171831741929054, -0.017961081117391586, 0.014947064220905304, 0.025157814845442772, 0.006006505340337753, 0.0214671827852726, 0.017961081117391586, -0.015906628221273422, 0.036635685712099075, 0.00233740103431046, -0.0025280837435275316, 0.018969854339957237, -0.005225321277976036, -0.008765253238379955, 0.02280811220407486, -0.008679138496518135, -0.0012763439444825053, 0.02775355987250805, 0.007122921757400036, -0.02595745213329792, -0.02033538743853569, 0.005775840952992439, 0.03980962932109833, 0.03833337500691414, -0.02296803891658783, 0.017616622149944305, 0.017161443829536438, 0.018576186150312424, -0.0011341008357703686, -0.029475856572389603, -0.03124736063182354, 0.015377637930214405, 0.04844570904970169, -0.0313703827559948, -0.031837861984968185, 0.005169961601495743, -0.0015692879678681493, -0.003721388289704919, 0.003469194984063506, 0.004327267408370972, 0.009958557784557343, -0.03936675190925598, 0.003998185973614454, -0.012658871710300446, -0.016263389959931374, -0.0214671827852726, -0.0025296213570982218, -0.0006158744217827916, 0.007190583273768425, 0.028737729415297508, 0.020249273627996445, 0.024567313492298126, -0.03109973482787609, 0.017444392666220665, -0.004923919681459665, 0.08084946870803833, 0.01600504480302334, -0.010635173879563808, 0.00150931510142982, 0.03321569785475731, 0.012259053066372871, 0.012166786938905716, -0.0012255976907908916, -0.017936477437615395, 0.03159181773662567, -0.004754765424877405, 0.03966200351715088, 0.0032108507584780455, 0.0208151713013649, 0.003779823426157236, 0.006341737695038319, -0.007621157448738813, 0.03277282044291496, 0.0036814063787460327, 0.02529313787817955, -0.009767875075340271, -0.010462944395840168, -0.013667644001543522, -0.008414643816649914, -0.008832914754748344, -0.025010190904140472, 0.02595745213329792, 0.013938290998339653, -0.009214280173182487, 0.016115764155983925, 0.016595546156167984, -0.009558740071952343, 0.0004759378789458424, -0.010696684941649437, -0.0011563983280211687, 0.0026464913971722126, -0.007116770837455988, -0.009730969555675983, 6.919937004568055e-05, 0.014061312191188335, -0.009380359202623367, 0.03129656985402107, -0.023447822779417038, 0.01702612079679966, -0.004142735619097948, -0.015168501995503902, -0.030041752383112907, -0.023570843040943146, -0.008137846365571022, 0.01166240032762289, 0.015070085413753986, 2.60699016507715e-05, -0.04711708053946495, -0.016804682090878487, -0.010216902941465378, 0.01686619222164154, -0.008451549336314201, -0.004554856102913618, -0.05206253007054329, -0.011846932582557201, -0.008820612914860249, 0.012658871710300446, -0.03378159552812576, 0.010715138167142868, -0.02151639014482498, -0.0037552190478891134, -0.01513159554451704, 0.00933730136603117, -0.0010264572920277715, 0.027532123029232025, 0.00013791819219477475, -0.019412729889154434, -0.0042411526665091515, -0.008709894493222237, -0.002612660638988018, 0.04148271679878235, -0.00409352732822299, -0.02331249974668026, -0.0009257337660528719, -0.00025276991073042154, 0.008962087333202362, -0.010610570199787617, 0.032625194638967514, 0.009724818170070648, -0.019142083823680878, 0.015931231901049614, -0.024714939296245575, -0.00776263140141964, -0.013273976743221283, 0.01455339603126049, 0.005013110116124153, -0.02295573800802231, -0.006716952193528414, 0.003579914104193449, -0.011760817840695381, -0.00993395410478115, -0.03636503964662552, -0.004127358086407185, 0.01521771028637886, 0.006809217855334282, 0.05585157871246338, -0.025662202388048172, -0.0312227550894022, 0.050020381808280945, -0.020618336275219917, -0.006372493226081133, -0.012843403033912182, -0.023066457360982895, 0.003970506135374308, 0.010856612585484982, -0.026818599551916122, -0.012031463906168938, 0.030632253736257553, -0.03739841654896736, -0.01901906169950962, -0.01735827699303627, 0.022020777687430382, 0.001871458487585187, 0.01834244653582573, 0.0015108529478311539, -0.015918930992484093, -0.02032308652997017, 0.003333871951326728, -0.019265104085206985, 0.007971767336130142, 0.013495414517819881, -0.0390222929418087, 0.02795039489865303, 0.025711409747600555, -0.0036660288460552692, 0.004650197457522154, -0.01065362710505724, 0.02548997290432453, -0.004782445263117552, 0.005652819760143757, -0.0029371287673711777, 0.021122723817825317, 0.02328789420425892, 0.001440884661860764, 0.008531513623893261, 0.007645761594176292, -0.008796009235084057, -0.04295896738767624, -0.034445907920598984, -0.006107997614890337, 0.011908442713320255, 0.0057051037438213825, -0.013495414517819881, -0.012868007645010948, -0.015353033319115639, -0.0018314766930416226, 0.029697293415665627, -0.03186246380209923, 0.003539932193234563, 0.05339115858078003, 0.029057584702968597, -0.01513159554451704, -0.003063225420191884, 0.05093073472380638, 0.060920048505067825, -0.02051991969347, 0.006741556338965893, 0.018551582470536232, -0.030976712703704834, 0.020384596660733223, 0.0039059200789779425, 0.021098118275403976, 0.022598976269364357, -0.03203469514846802, -0.0032139262184500694, 0.017222953960299492, -0.006341737695038319, 0.04261450842022896, 0.011945349164307117, -0.026695579290390015, -0.018108706921339035, 0.004825502634048462, 0.040621567517519, -0.04807664826512337, -0.004044318571686745, 0.022180704399943352, 0.01073974184691906, 0.03141959011554718, 0.0044656661339104176, -0.015316126868128777, 0.00640324829146266, -0.003241606056690216, -0.0025711411144584417, 0.03341253101825714, -0.01652173325419426, 0.023435520008206367, -0.018317842856049538, 0.02395220845937729, -0.018551582470536232, 0.0020882831886410713, -0.04347565770149231, 0.029377439990639687, 0.016767775639891624, 0.01617727428674698, -0.025034794583916664, 0.026670975610613823, 0.007276698015630245, -0.008039428852498531, -0.007049109321087599, -0.008150148205459118, -0.0007965616532601416, 0.025883639231324196, 0.013323185034096241, -0.004511798731982708, 0.013962894678115845, 0.03026319108903408, 0.05905012786388397, 0.000992626533843577, 0.006643139291554689, 0.01588202454149723, -0.018059497699141502, 0.015759002417325974, -0.008642232045531273, 0.025588389486074448, 0.012129880487918854, -0.011311789974570274, 0.036783307790756226, 0.03427368029952049, -0.02181164175271988, 0.022906528785824776, 0.02595745213329792, -0.008845217525959015, 0.017149141058325768, 0.031148942187428474, -0.02647414058446884, 0.00941726565361023, 0.010026220232248306, -0.011723911389708519, -0.010998087003827095, 0.003761370200663805, -0.004490270279347897, -0.005514421034604311, -0.027901185676455498, 0.008113241754472256, -0.010481397621333599, 0.01569749228656292, 0.021381067112088203, -0.03427368029952049, -0.026892412453889847, 0.003355400636792183, 0.05806596204638481, -0.014418072998523712, -0.016251087188720703, 0.004899315536022186, -0.004708632826805115, -0.001956035615876317, -0.03292044624686241, 0.006716952193528414, -0.007442776579409838, 0.03358476236462593, -0.03919452428817749, 0.00925118662416935, 0.02251286245882511, -0.006686197128146887, -0.03904689848423004, 0.014983970671892166, -0.05053706839680672, 0.06933469325304031, 0.014196635223925114, 0.0031231981702148914, 0.04920843988656998, -0.0007461998611688614, -0.015328429639339447, -0.019806398078799248, 0.024333573877811432, 0.0029601952992379665, 0.021442577242851257, -0.0265971627086401, -0.033461738377809525, -0.03636503964662552, -0.012080672197043896, -0.012609663419425488, 0.026867808774113655, -0.0055820825509727, 0.022217610850930214, -0.015574471093714237, 0.04295896738767624, 0.05673733353614807, -0.010770497843623161, 0.03882545977830887, -0.003761370200663805, -0.015463752672076225, -0.004748614504933357, -0.013040237128734589, -0.0336831770837307, 0.001127180876210332, -0.01705072447657585, 0.03486417979001999, 0.004576385021209717, -0.005274529568850994, 0.03707855939865112, -0.006160281598567963, 0.017776548862457275, 0.0265971627086401, -0.023066457360982895, -0.051668863743543625, -0.028491687029600143, 0.013015632517635822, 0.0011241052998229861, -0.020864378660917282, -0.005723556969314814, -0.0023942980915308, 0.017222953960299492, 0.009460322558879852, -0.059788256883621216, 0.01600504480302334, -0.005818898323923349, -0.025834431871771812, 0.005932692438364029, 0.03373238444328308, 0.021110421046614647, -0.016447922214865685, -0.009460322558879852, 0.044386014342308044, 0.026917017996311188, -0.0023112590424716473, -0.003126273863017559, -0.00719673465937376, -0.015549867413938046, 0.07273007929325104, 0.0056036110036075115, 0.03228073567152023, 0.0022113043814897537, 0.008851367980241776, 0.05624524876475334, -0.008802159689366817, 0.005846577696502209, 0.016140367835760117, -0.01884683221578598, 0.004324191715568304, -0.01040758565068245, -0.008470002561807632, -0.0031385759357362986, -0.010899669490754604, 0.0009403425501659513, -0.021590203046798706, -0.012585058808326721, -0.01750590279698372, -0.01133639458566904, 0.0072828494012355804, 0.011201071552932262, 0.006593931000679731, 0.005806596018373966, 0.0027818146627396345, 0.0030094038229435682, 0.028491687029600143, 0.009921652264893055, 0.014836344867944717, 0.03287123888731003, 0.02777816541492939, -0.011373301036655903, -0.011281034909188747, 0.03715237230062485, 0.007498136255890131, 0.0015146973310038447, 0.0032508326694369316, 0.02561299316585064, -0.023595446720719337, 0.035159431397914886, -0.008672988042235374, 0.010813554748892784, -0.002206691075116396, -0.006144904065877199, -0.010776648297905922, 0.009515682235360146, 0.011299488134682178, 0.00541292829439044, 0.025416160002350807, -0.010475247167050838, 0.016620151698589325, -0.071401447057724, -0.0025388479698449373, 0.0015408393228426576, 0.0018668451812118292, 0.002767974743619561, 0.03058304637670517, -0.02283271588385105, -0.0019698753021657467, -0.020249273627996445, 0.014282749965786934, -0.022869622334837914, 0.005093073472380638, -0.013273976743221283, 0.014159728772938251], [0.013267341069877148, 0.011102065443992615, 0.037263423204422, 0.023938648402690887, -0.027660395950078964, 0.032783541828393936, -0.011561539955437183, 0.005708977114409208, 0.012589615769684315, 0.033771414309740067, -0.024604886770248413, 0.031749725341796875, -0.02754552662372589, -0.00019761014846153557, -0.014841043390333652, 0.03753910958766937, -0.0002785567194223404, -0.020745297893881798, 0.0187925286591053, 0.03547147288918495, 0.04702726751565933, 0.04036488011479378, -0.03197946026921272, 0.02125071920454502, -0.02245684154331684, -0.008844894357025623, 0.005967431701719761, 0.04737187549471855, 0.009258422069251537, -0.04564884305000305, 0.02690226212143898, -0.025156257674098015, 0.0324159637093544, -0.05316125974059105, 0.09304369240999222, 0.0013913478469476104, -0.022181157022714615, 0.04769350588321686, -0.013566000387072563, 0.011216933839023113, -0.007282678969204426, -0.011463901959359646, -0.03958377242088318, -0.0024581914767622948, -0.07245921343564987, 0.011865942738950253, -0.021744655445218086, -0.051277413964271545, 0.011946350336074829, 0.017609380185604095, 0.025248153135180473, 0.021009495481848717, 0.022054800763726234, 0.06662388145923615, -0.010441569611430168, 0.01767830178141594, 0.02979695424437523, 0.008672591298818588, 0.0187925286591053, -0.030371299013495445, -0.007472212426364422, -0.01922903023660183, -0.022215617820620537, 0.007868509739637375, 0.020125005394220352, 0.0023347074165940285, 0.007437752094119787, 0.04495963081717491, -0.02660360373556614, 0.04463799670338631, 0.03737829253077507, 0.061707496643066406, -0.006869151722639799, -0.01883847638964653, -0.03643636777997017, -0.028005002066493034, 0.003793540643528104, 0.009017197415232658, 0.01651812717318535, -0.004163992591202259, -0.032921385020017624, -0.0005592672387138009, -0.03517281264066696, 0.033909257501363754, 0.011331803165376186, 0.005720464047044516, 0.009206730872392654, -0.033128149807453156, 0.01472617406398058, -0.011653435416519642, 0.002228453755378723, -0.015323491767048836, -0.011969324201345444, 0.0385269820690155, 0.02547788992524147, 0.021354101598262787, -0.001394937396980822, -0.030807800590991974, -0.049898985773324966, 0.02876313589513302, -0.013278828002512455, -0.0048043858259916306, -0.03512686491012573, -0.028556372970342636, 0.04280009865760803, -0.06533734500408173, -0.09704112261533737, 0.012888274155557156, 0.024765703827142715, -0.022307511419057846, -0.0035953919868916273, 0.025248153135180473, 0.02621304988861084, 0.07774317264556885, -0.0026520323008298874, 0.011785534210503101, 0.029130715876817703, -0.02159532532095909, 0.0042960913851857185, 0.03363357111811638, -0.04459204897284508, 0.009844251908361912, -0.016047164797782898, -0.027132000774145126, -0.027453633025288582, 0.0070701721124351025, -0.019343897700309753, -0.0021552250254899263, -0.052655838429927826, -0.029038820415735245, 0.066715769469738, 0.016621509566903114, -0.022043313831090927, -0.05660732090473175, -0.006708335131406784, -0.020297309383749962, -0.019125647842884064, -0.006719822064042091, -0.02818879298865795, -0.00014726533845532686, -0.010458800010383129, -0.001427244278602302, 0.03962972015142441, 0.011038887314498425, -0.006289064418524504, -0.018723607063293457, -0.019343897700309753, 0.059777699410915375, 0.03574715554714203, 0.05895064398646355, 0.010165885090827942, 0.019252004101872444, 0.018815502524375916, -0.006467110943049192, -0.011567283421754837, -0.02504138834774494, 0.022686578333377838, 0.01345113106071949, 0.01043008267879486, 0.044132575392723083, -0.05086388438940048, -0.02837258204817772, 0.015059294179081917, 0.020745297893881798, 0.0055768778547644615, -0.024811651557683945, -0.03324301913380623, -0.02857934683561325, -0.042409542948007584, 0.012842326425015926, -0.030417246744036674, -0.04142167419195175, -0.044040679931640625, 0.017483023926615715, 0.02314605377614498, -0.007989121600985527, 0.00736308703199029, 0.0125666419044137, 0.03659718483686447, -0.002508446341380477, -0.00419270945712924, -0.02203182689845562, -0.06703740358352661, -0.04769350588321686, 0.03962972015142441, -0.017655327916145325, 0.006231629755347967, 0.008603669703006744, 0.01793101243674755, -0.02694820985198021, -0.018080342561006546, -0.021802090108394623, 0.02405351772904396, 0.01202675886452198, -0.020550020039081573, -0.011383493430912495, -0.017356669530272484, 0.014301160350441933, 0.09345722198486328, -0.04027298465371132, 0.0052294000051915646, -0.03712558001279831, 0.052104465663433075, 0.017092470079660416, -0.0659346655011177, 0.045510999858379364, 0.010895301587879658, 0.031451065093278885, 0.07245921343564987, 0.04796919226646423, 0.01349707879126072, 0.008551978506147861, -0.0494854599237442, 0.042271703481674194, 0.02802797593176365, 0.012692997232079506, -9.736921492731199e-05, -0.010797662660479546, 0.0007240321137942374, 0.040709488093853, 0.019160108640789986, 0.013945067301392555, 0.024719756096601486, -0.028556372970342636, -0.0526098906993866, 0.00046701327664777637, -0.01271597109735012, -0.0385269820690155, 0.02138856239616871, -0.051920678466558456, -0.034805234521627426, 0.026879288256168365, 0.0030153049156069756, -0.03446062654256821, 0.0034317041281610727, -0.012313930317759514, -0.007581337820738554, -0.05656137689948082, -0.04732592776417732, 0.0243521761149168, -0.01669042930006981, 0.0036872869823127985, 0.01841346174478531, -0.010889558121562004, -0.009407751262187958, -0.028946926817297935, 0.004847461357712746, -0.006599210202693939, 0.023272410035133362, 0.04847461357712746, 0.007943174801766872, 0.02306564524769783, 0.044431235641241074, -0.08739215135574341, 0.023249436169862747, 0.0072884224355220795, 0.016610022634267807, -0.09065442532300949, 0.031198354437947273, -0.014990372583270073, -0.002712338464334607, 0.033128149807453156, -0.0030784825794398785, -0.004514342173933983, -0.03616068512201309, -0.002535727806389332, 0.008264807052910328, -0.057572219520807266, -0.005088686011731625, -0.013014630414545536, -0.006289064418524504, -0.04358120635151863, -0.0010675614466890693, 0.0018881551222875714, -0.052655838429927826, 0.0399283803999424, 0.026718473061919212, -0.017517484724521637, -0.0003471190284471959, -0.03168080374598503, -0.02001013793051243, -0.0233298446983099, 0.001924051670357585, -0.04976114630699158, -0.029153689742088318, -0.03896348178386688, 0.0033225787337869406, 0.051828783005476, -0.020883139222860336, 0.038733743131160736, 0.06395892053842545, -0.03333491459488869, -0.04475286602973938, 0.01013142429292202, 0.02586844377219677, 0.00043003991595469415, -0.02375485934317112, -0.036367446184158325, -0.02284739539027214, -0.018849963322281837, 0.026833340525627136, 0.01612757332623005, 0.04555694758892059, 0.008626643568277359, -0.056285690516233444, 0.02052704617381096, 0.039813511073589325, 0.00709314551204443, 0.01901077851653099, -0.02488057315349579, 0.01650664024055004, -0.02349065989255905, 0.015576203353703022, 0.01187742967158556, -0.03207135573029518, 0.011366263031959534, -0.052058521658182144, 0.018172236159443855, -0.014760634861886501, -0.005502213258296251, 0.0023246563505381346, 0.027913106605410576, -0.006070813629776239, -0.017827630043029785, 0.06019122898578644, 0.012325417250394821, 0.004445421043783426, 0.02341025322675705, -0.028257714584469795, -0.016196494922041893, -0.028855031356215477, -0.001107765594497323, 0.005100172944366932, 0.008356701582670212, -0.0015966757200658321, 0.035195786505937576, -0.007265448570251465, 0.03590797260403633, -0.020125005394220352, 0.0027496707625687122, -0.03204838186502457, -0.012796379625797272, 0.027407685294747353, 0.0339781790971756, 0.011544309556484222, 0.027959054335951805, 0.01539241336286068, 0.004970945417881012, -0.01073448546230793, -0.004686645232141018, -0.01598973013460636, -0.009017197415232658, -0.0125666419044137, 0.011366263031959534, -0.0725051611661911, -0.005413189996033907, 0.03078482672572136, 0.0012614025035873055, -0.06602656096220016, -0.023123079910874367, 0.0104128522798419, -0.026971183717250824, -0.01926349103450775, 0.0544937364757061, -0.04796919226646423, -0.02789013460278511, -0.05440184101462364, 0.0007430572877638042, 0.046544820070266724, -0.02837258204817772, 0.010119937360286713, -0.019194569438695908, -0.04319065064191818, -0.012773405760526657, 0.02936045452952385, 0.0011896095238626003, 0.02543194219470024, 0.008345214650034904, 0.014140344224870205, 0.052793681621551514, 0.018815502524375916, 0.019665531814098358, 0.001310221734456718, -0.014668740332126617, 0.04962330311536789, 0.05890469625592232, -0.03423088788986206, -0.007380317430943251, 0.023915674537420273, -0.046498872339725494, 0.0075755943544209, -0.007592824753373861, 0.017437076196074486, 0.013611947186291218, -0.03815940022468567, 0.027315789833664894, 0.014484950341284275, 0.0427541509270668, 0.02577654831111431, -0.0640508159995079, 0.023685937747359276, -0.06349945068359375, 0.009763844311237335, -0.037401266396045685, 0.010487517341971397, 0.01453089714050293, -0.01927497796714306, 0.0010122809326276183, 0.012727458029985428, -0.0033599110320210457, 0.03384033590555191, -0.002175327157601714, 0.04815298318862915, 0.02517923153936863, 0.011308829300105572, 0.021101390942931175, 0.02970506064593792, 0.0064785978756845, -0.007862766273319721, -0.04530423879623413, 0.009666205383837223, 0.033128149807453156, -0.013485591858625412, 0.014634279534220695, 0.003575290087610483, 0.047831349074840546, -0.017528971657156944, -0.004514342173933983, 0.031657829880714417, -0.012784892693161964, -0.03349572792649269, -0.025914391502738, -0.004152505658566952, 0.029153689742088318, -0.05113957077264786, -0.030922668054699898, 0.002004459733143449, -0.04268522933125496, 0.0213770754635334, 0.02112436480820179, 0.00864387396723032, 0.005223656538873911, 0.022020339965820312, 0.020297309383749962, -0.003770566778257489, 0.0191830825060606, -0.01694314181804657, 0.04505152627825737, 0.005238015204668045, 0.019757425412535667, -0.038733743131160736, 0.027086053043603897, -0.03944592922925949, -0.04564884305000305, -0.0255238376557827, -0.00526098906993866, -0.010441569611430168, 0.032875437289476395, 0.010878071188926697, -0.00284012989141047, 0.029222611337900162, -0.0013296058168634772, 0.05803169682621956, -0.005637184251099825, -0.021400049328804016, 0.04332849383354187, 0.024168385192751884, -0.017563432455062866, -0.01979188621044159, -0.06409676373004913, -0.019171595573425293, 0.010619616135954857, 0.02013649232685566, -0.02862529456615448, 0.04636102914810181, 0.024306228384375572, 0.0029090512543916702, -0.01866617240011692, -0.03806750476360321, 0.0012369928881525993, -0.014542384073138237, 0.022479815408587456, -0.07135646790266037, -0.025385994464159012, 0.004611980635672808, 0.07365384697914124, 0.028303660452365875, 0.030853748321533203, -0.043305519968271255, -0.037745874375104904, 0.0051863244734704494, -0.002762593561783433, 0.047785401344299316, -0.010223318822681904, -0.011636205017566681, -0.003354167565703392, 0.010039528831839561, -0.00674853939563036, 0.003980202600359917, 0.022169670090079308, 0.03707963600754738, -0.0702996775507927, 0.012130140326917171, -0.006266090553253889, 0.01960809715092182, 0.006260347086936235, 0.02798202820122242, -0.04034190624952316, -0.034989021718502045, -0.02936045452952385, -0.021055443212389946, -0.008592182770371437, 0.0002378142235102132, -0.0028085410594940186, -0.0038911791052669287, -0.02577654831111431, 0.010269266553223133, 0.023123079910874367, -0.019883781671524048, 0.013232880271971226, 0.0029435118194669485, -0.004365012515336275, -0.0032163250725716352, -0.00029704341432079673, -0.029038820415735245, 0.015851888805627823, -0.0021480456925928593, -0.07425116002559662, 0.0027266971301287413, 0.0045488025061786175, -0.011504106223583221, -0.014036961831152439, -0.0015593433054164052, 0.03133619576692581, 0.010763202793896198, 0.00674853939563036, 0.005775026511400938, -0.002776952227577567, 0.016047164797782898, 0.004074968863278627, 0.012509207241237164, -0.02384675294160843, 0.00670259166508913, -0.025891417637467384, 0.0005330627900548279, 0.033518701791763306, 0.01789655163884163, 0.03510389104485512, -0.0005592672387138009, -0.031657829880714417, -0.010832123458385468, 0.015426874160766602, 0.011429441161453724, -0.00817291159182787, -0.007581337820738554, -0.011153755709528923, 0.008655360899865627, -0.029888849705457687, -0.015266058035194874, -0.017218826338648796, 0.018011420965194702, 0.00030655600130558014, -0.012336904183030128, -0.02405351772904396, 0.016437718644738197, 0.06621035188436508, -0.019975677132606506, 0.0014990372583270073, 0.006874895188957453, -0.025730600580573082, -0.021181797608733177, 0.010768946260213852, 0.008069530129432678, 0.021997366100549698, 0.039422955363988876, 0.01237136498093605, 0.041927095502614975, -0.020331770181655884, 0.006616440135985613, 0.008626643568277359, 0.003354167565703392, 0.03779182210564613, 0.012842326425015926, -0.03404710069298744, 0.007064428646117449, 0.015622151084244251, -0.04463799670338631, -0.039331063628196716, -0.01775871030986309, 0.015599177218973637, -0.004485624842345715, -0.0016641611000522971, 0.009700666181743145, -0.010544952005147934, 0.0349201001226902, 0.023823779076337814, 0.010918275453150272, 0.0028731548227369785, -0.04107706621289253, 0.025937365368008614, 0.04578668624162674, -0.0018206697423011065, 0.02508733607828617, -0.0036643133498728275, -0.019470253959298134, -0.05109362304210663, 0.043006863445043564, -0.014358594082295895, 0.01271597109735012, -0.00014322697825264186, 0.0030153049156069756, -0.00036452882341109216, -0.0056429277174174786, -0.0001091253143385984, 0.010694281198084354, -0.00236629624851048, -0.016931654885411263, -0.0238008052110672, 0.004858948290348053, 0.02172168157994747, 0.011992298066616058, 0.019171595573425293, -0.0049910475499928, 0.013784250244498253, -0.006300551351159811, 0.027361737564206123, -0.009327342733740807, -0.01608162559568882, 0.009792561642825603, 0.003807899309322238, -0.0502665676176548, 0.007644515484571457, 0.006518801674246788, -0.047785401344299316, -0.02225007861852646, -0.009114835411310196, 0.00185656629037112, 0.00089597626356408, -0.03234704211354256, -0.028487451374530792, -0.01793101243674755, 0.015334978699684143, 0.03825129568576813, -0.02185952477157116, 0.05472347512841225, 0.00825332012027502, 0.0012290957383811474, 0.021848037838935852, 0.02001013793051243, 0.003026791615411639, 0.015518768690526485, 0.025454916059970856, -0.018723607063293457, -0.035976894199848175, 0.021101390942931175, 0.026190076023340225, -0.0074951862916350365, 0.03958377242088318, -0.0038969225715845823, 0.030555088073015213, -0.049898985773324966, -0.004333423916250467, 0.0038768204394727945, -0.020159466192126274, -0.010206089355051517, 0.015289030969142914, 0.04631508141756058, 0.020469611510634422, 0.011911889538168907, 0.002400757046416402, -0.04815298318862915, -0.025271127000451088, -0.008207372389733791, -0.02896990068256855, 0.00952836312353611, -0.039859458804130554, 0.02259468473494053, -0.008023582398891449, -0.0016024191863834858, 0.01974593847990036, 0.0038538468070328236, 0.0009548465022817254, -0.027798239141702652, 0.04750971868634224, 0.004856076557189226, 0.01202675886452198, 0.018298592418432236, 0.008919558487832546, -0.0173796433955431, 0.0084945447742939, 0.011578770354390144, 0.004393729846924543, -0.005625697318464518, 0.02439812384545803, 0.055504582822322845, 0.006869151722639799, 0.025340046733617783, 0.02733876369893551, -0.01578296720981598, 0.001924051670357585, -0.024260280653834343, -0.013933580368757248, -0.05656137689948082, -0.03625258058309555, -0.0119004026055336, -0.002465370576828718, -0.013313288800418377, -0.006363729014992714, 0.06657793372869492, 0.04367310181260109, -0.007075915113091469, -0.0017488767625764012, -0.06340755522251129, -0.03639042004942894, 0.0039945608004927635, 0.026373866945505142, -0.0034374475944787264, 0.017471536993980408, 0.021354101598262787, 0.013520052656531334, -0.03363357111811638, 0.011429441161453724, -0.014393054880201817, 0.004873306956142187, 0.0025888546369969845, 0.011176729574799538, -0.02577654831111431, 0.008259063586592674, 0.0016512383008375764, 0.017666814848780632, 0.04277712479233742, -0.03935403376817703, -0.0017302106134593487, 0.00987296923995018, -0.03910132497549057, -0.003655698150396347, 0.009832765907049179, 0.009287138469517231, 0.015507281757891178, -0.009178013540804386, 0.03331194072961807, 0.0008694129064679146, -0.004379371181130409, -0.0626264438033104, 0.030532116070389748, 0.015759993344545364, -0.014932937920093536, 0.023352818563580513, 0.035195786505937576, -0.03436873108148575, -0.01802290789783001, 0.00682320399209857, -0.018011420965194702, -0.00039486135938204825, 0.061064232140779495, -0.02384675294160843, 0.023617016151547432, -0.005008277948945761, 0.000990743050351739, 0.008488801307976246, 0.005114531144499779, 0.005203554406762123, 0.007627285551279783, 0.049944933503866196, -0.002417987212538719, -0.005378729663789272, -0.05941012129187584, 0.00669110519811511, -0.02211223542690277, 0.00879320316016674, 0.020917600020766258, 0.026833340525627136, -0.0170694962143898, 0.016747863963246346, 0.035034969449043274, -0.015013346448540688, -0.07480253279209137, 0.014921450987458229, -0.032232172787189484, -0.027706343680620193, -0.00412666006013751, -0.009861482307314873, -0.04052569717168808, 0.06735903769731522, 0.01965404488146305, -0.0217676293104887, 0.005904254037886858, -0.007472212426364422, 0.01703503727912903, -0.009264165535569191, 0.0012334032217040658, -0.0034948817919939756, -0.010102706961333752, 0.00873002503067255, -0.012658536434173584, 0.009689179249107838, 0.03133619576692581, -0.05568837374448776, -0.005105915945023298, 0.02504138834774494, 0.010005068965256214, 0.001477499376051128, -0.02151491865515709, 0.037355318665504456, 0.03354167565703392, 0.00799486506730318, -0.0836244523525238, -0.02543194219470024, -0.00526960426941514, -0.00015130368410609663, -0.007386060897260904, 0.05155309662222862, -0.015357952564954758, -0.015449848026037216, -0.019665531814098358, -0.037608031183481216, -0.02306564524769783, 0.028464477509260178, -0.015426874160766602, -0.03684989735484123, 0.019022265449166298, -0.018091829493641853, 0.029291532933712006, -0.00974087044596672, -0.021101390942931175, 0.02345619909465313, 0.0008751563145779073, 0.005016892682760954, 0.013830197975039482, -0.011102065443992615, 0.0019082572543993592, -0.007966147735714912, 0.00014493205526378006, 0.015438361093401909, -0.040985170751810074, 0.01685124635696411, -0.005726207513362169, 0.0108034061267972, 0.00574343791231513, 0.001420064945705235, 0.026144128292798996, -0.006237373221665621, 0.0034230889286845922, 0.008362445048987865, -0.00027460811543278396, 0.007409034762531519, -0.008270550519227982, -0.011980811133980751, -0.06621035188436508, 0.019734451547265053, -0.003480523359030485, -0.027867160737514496, -0.0075124166905879974, 0.004959458485245705, 0.013669381849467754, -3.977779488195665e-05, -0.012784892693161964, 0.02117031067609787, -0.024030543863773346, -0.01914862170815468, -0.00924693513661623, 0.005490726325660944, 0.013336262665688992, -6.349191153276479e-06, -0.0020848677959293127, 0.01306057721376419, 0.042570360004901886, 0.015932295471429825, 0.002181070391088724, -0.012899761088192463, 0.03207135573029518, -0.05440184101462364, 0.02841852977871895, -0.030026692897081375, -0.02892395295202732, 0.0032996051013469696, 0.0020317411981523037, 0.023915674537420273, 0.034598469734191895, -0.054861318320035934, 0.017873577773571014, -0.006886381655931473, 0.02284739539027214, -0.012130140326917171, -0.01433562021702528, -0.006317781750112772, -0.027522554621100426, 0.028142845258116722, -0.004198452923446894, -0.014450489543378353, 0.007638772018253803, -0.04902598634362221, -0.010832123458385468, -0.04629210755228996, -0.010499004274606705, 0.008747255429625511, -0.0306929312646389, 0.037653978914022446, 0.0054045747965574265, -0.02005608379840851, -0.0714024156332016, -0.004316193517297506, -0.0035953919868916273, 0.010941249318420887, -0.0032996051013469696, 0.018987804651260376, 0.020446637645363808, -0.004100814461708069, -0.01755194552242756, -0.0038423598743975163, 0.021331127732992172, -0.027913106605410576, 0.009608771651983261, -0.000719724572263658, 0.025340046733617783, 0.028257714584469795, -0.019435793161392212, 0.006392446346580982, 0.024030543863773346, 0.01979188621044159, 0.03393223136663437, 0.001714416197501123, 0.007449238561093807, 0.00843136664479971, 0.007179297041147947, -0.04284604638814926, 0.010751715861260891, 0.0027094667311757803, -0.0007444930961355567, -0.021135851740837097, -0.010889558121562004, 0.0529315210878849, -0.025018414482474327, 0.05853711813688278, 0.0022399406880140305, -0.02323794923722744, -0.023203488439321518, 0.006765769794583321, 0.0510476753115654, -0.010717255063354969, -0.006840434391051531, 0.0006633670418523252, 0.0009218217455781996, -0.00864387396723032, -0.021089904010295868, 0.004103686194866896, 0.02311159297823906, 0.033197071403265, -0.003158890875056386, 0.01237136498093605, -0.010677050799131393, 0.02289334312081337, 0.010700024664402008, 0.0007904405938461423, -0.0029392042197287083, -0.008178655058145523, 0.032094329595565796, -0.0008098247344605625, -0.0243521761149168, -0.020102031528949738, 0.019378358498215675, 0.03168080374598503, 0.012991656549274921, -0.011550053022801876, 0.05100172758102417, 0.038733743131160736, -0.012474746443331242, -0.007064428646117449, 0.026626577600836754, -0.009402007795870304, 0.00804081279784441, 0.023639990016818047, 0.037309370934963226, 0.05458563193678856, -0.031106458976864815, 0.02211223542690277, 0.012049732729792595, 0.00561421038582921, -0.0025716242380440235, -0.012532181106507778, 0.03310517594218254, 0.020940573886036873, -0.00411804486066103, 0.02181357704102993, -0.026833340525627136, 0.020848678424954414, 0.012474746443331242, -0.0016971859149634838, 0.010648333467543125, 0.028900979086756706, 0.015633637085556984, 0.004881922155618668, -0.003167505841702223, -0.012440286576747894, -0.023639990016818047, 0.041927095502614975, -0.02965911291539669, 0.004629211034625769, 0.025753574445843697, -0.004568904638290405, 0.04829082638025284, -0.006507315207272768, -0.004083584062755108, 0.023088619112968445, 0.041674382984638214, 0.0313132219016552, 0.03767695277929306, -0.0044626509770751, 0.016966115683317184, -0.025546811521053314, 0.014978885650634766, -0.004844589624553919, -0.020940573886036873, -0.022870369255542755, 0.01106186117976904, -0.003290989901870489, 0.009321599267423153, -0.03684989735484123, -0.0020317411981523037, 0.0070529417134821415, -0.004436805844306946, 0.014071422629058361, -0.009178013540804386, 0.054907266050577164, 0.009109091944992542, -0.04254738613963127, 0.02867124043405056, 0.030532116070389748, 0.026971183717250824, 0.015128214843571186, -0.009292881935834885, 0.012853813357651234, 0.005551032721996307, 0.051828783005476, 0.0433744415640831, 0.00039091272628866136, 0.010165885090827942, -0.009758100844919682, -0.030899696052074432, 0.020722324028611183, -0.0023146055173128843, -0.002015946665778756, -0.009252678602933884, -0.019252004101872444, 0.013818711042404175, 0.0038911791052669287, 0.029038820415735245, -0.020756784826517105, -0.0018709248397499323, 0.01122842077165842, -0.028487451374530792, 0.010728741995990276, -0.026281971484422684, 0.01330180186778307, 0.010613872669637203, -0.04500557854771614, -0.01616203412413597, -0.021962905302643776, 0.01480658259242773, -0.004629211034625769, 0.0016813913825899363, -0.02233048528432846, 0.01638028398156166, 0.00944221206009388, 0.028441503643989563, 0.004574648104608059, -0.03230109438300133, 0.0058008721098303795, 0.011653435416519642, 0.020377717912197113, 0.00029704341432079673, 0.023100106045603752, 0.0024567556101828814, 0.021147338673472404, -0.010585155338048935, -0.0034431908279657364, 0.0002125071914633736, -0.020630428567528725, -0.018344540148973465, 0.015920810401439667, -0.018723607063293457, 0.0255238376557827, 0.01810331642627716, -0.008896585553884506, -0.007776614744216204, -0.024903547018766403, -0.04769350588321686, 0.003156019141897559, -0.03485117852687836, -0.0031474039424210787, -0.03427683562040329, 0.03142809122800827, 0.010010812431573868, 0.02508733607828617, 0.010786175727844238, 0.01629987545311451, 0.013623434118926525, 0.02349065989255905, -0.006042096298187971, -0.0216068122535944, 0.01364640798419714, 0.04195006936788559, 0.02384675294160843, 0.009964864701032639, 0.012589615769684315, -0.04146762192249298, -0.0255238376557827, 0.04392581060528755, 0.004545930773019791, 0.021537892520427704, 0.00526960426941514, -0.0032680160365998745, 0.014473463408648968, 0.0013202728005126119, 0.009086118079721928, -0.03133619576692581, 0.04769350588321686, 0.0037820537108927965, 0.004896280821412802, 0.027132000774145126, -0.014370081014931202, -0.010613872669637203, -0.05651542916893959, -0.02159532532095909, 0.002465370576828718, 0.028992874547839165, -0.030463194474577904, 0.017953986302018166, 0.022698065266013145, 0.02069935016334057, 0.0014495000941678882, 0.003581033553928137, -0.03264569863677025, -0.034253861755132675, -0.01642623171210289, -0.009993582032620907, -0.030968615785241127, -0.008333728648722172, -0.006932329386472702, 5.80176965740975e-05, -0.0018077470595017076, 0.004968073684722185, 0.006989763583987951, 0.003290989901870489, -0.014232238754630089, 0.0156566109508276, 0.009849995374679565, 0.05297746881842613, -0.010682794265449047, -0.049990881234407425, 0.031405117362737656, 0.03896348178386688, -0.015266058035194874, 0.0019972804002463818, 0.042662255465984344, 0.010102706961333752, 0.0014961655251681805, -0.005042738281190395, 0.02203182689845562, 0.01897631771862507, 0.02370891161262989, 0.01325585413724184, 0.0029061795212328434, 0.0035322143230587244, -0.008638130500912666, -0.01222203578799963, 0.009867225773632526, 0.01202675886452198, -0.018310079351067543, 0.007236731704324484, 0.008437110111117363, -0.005352884065359831, -0.005418933462351561, -0.027407685294747353, 0.0070184809155762196, -0.021882498636841774, 0.020297309383749962, -0.022640632465481758, 0.015851888805627823, -0.0012556590372696519, -0.02439812384545803, 0.01694314181804657, -0.01883847638964653, 0.003905537771061063, -0.017563432455062866, -0.013864658772945404, 0.04594750329852104, -0.027798239141702652, 0.0010969965951517224, -0.006260347086936235, 0.014588331803679466, -0.017999934032559395, 0.017230313271284103, -0.03177269920706749, -0.03776884824037552, 0.012428799644112587, -0.005668772850185633, 0.006312038283795118, 0.00635798554867506, 0.023214975371956825, -0.021710194647312164, -0.006380959413945675, -0.052104465663433075, 0.013118011876940727, 0.012888274155557156, 0.008373931981623173, 0.022399406880140305, -0.018562790006399155, 0.0034374475944787264, -0.03078482672572136, 0.004410960245877504, -0.0074607254937291145, -0.019516201689839363, -0.004499983508139849, -0.03868779540061951, -0.0032306837383657694, -0.006082300562411547, -0.008408392779529095, -0.024512993171811104, -0.002059022430330515, -0.022606171667575836, -0.017816143110394478, 0.02292780391871929, 0.016713403165340424, 0.00762154208496213, -0.05945606902241707, 0.045074500143527985, -0.009241191670298576, 0.02212372235953808, 0.015622151084244251, 0.02876313589513302, -0.0008615156402811408, -0.01940133236348629, -0.01948174089193344, 0.007983378134667873, 0.01669042930006981, 0.01465725339949131, 0.027361737564206123, 0.0012133012060075998, 0.015093754045665264, -0.019849320873618126, 0.022318998351693153, 0.02301969937980175, -0.011808508075773716, -0.028119871392846107, 0.023639990016818047, 0.009557080455124378, 0.02522517926990986, -0.02185952477157116, -0.01431264728307724, 0.05031251534819603, -0.014128857292234898, -0.013324775733053684, -0.00077608204446733, -0.006082300562411547, 0.010407108813524246, -0.0233298446983099, -0.001445192494429648, -0.028648268431425095, -0.023134566843509674, -0.03439170494675636, -0.0008579260320402682, -0.034207914024591446, -0.01202675886452198, -0.015943782404065132, 0.008747255429625511, 0.00993614736944437, 0.022307511419057846, -0.05325315520167351, 0.0028587961569428444, -0.01534646563231945, 0.03551742061972618, 0.003672928549349308, -0.018551303073763847, 0.03117538057267666, 0.017092470079660416, -0.02233048528432846, 0.011400723829865456, 0.037355318665504456, -0.005036994814872742, 0.041973043233156204, 0.016276903450489044, 0.02975100837647915, -0.0013339134166017175, -0.003601135453209281, -0.005315551534295082, 0.03967566788196564, -0.015300517901778221, 0.012049732729792595, 0.02126220613718033, 0.020113518461585045, 0.01330180186778307, -0.00479577062651515, -0.026833340525627136, 0.0004986021667718887, -0.003486266825348139, 0.019757425412535667, -0.005091557744890451, 0.010941249318420887, 0.004942228086292744, 0.032140277326107025, -0.01271597109735012, -0.0044540357775986195, -0.025707626715302467, 0.003066995879635215, 0.00819014199078083, 0.00674853939563036, 0.031221328303217888, 0.014841043390333652, -0.002066201763227582, 0.00015821376291569322, -0.0012111474061384797, -0.01716139167547226, 0.004896280821412802, 0.012348391115665436, -0.03328896686434746, 0.001280068652704358, -0.015116727910935879, -0.03294435888528824, 0.015461334027349949, 0.0200445968657732, -0.05164499208331108, -0.02876313589513302, -0.01062535960227251, 0.018011420965194702, -0.02871718816459179, -0.0002814284525811672, -0.0015737019712105393, 0.02284739539027214, -0.015472820959985256, -0.04105409234762192, -0.029980745166540146, -0.0031933514401316643, -0.024512993171811104, -0.019929729402065277, -0.009568567387759686, 0.011297342367470264, 0.03344978019595146, -0.0021624043583869934, 0.04238656908273697, -0.02720092050731182, -0.0229392908513546, -0.027476606890559196, -0.009815535508096218, 0.012968682684004307, -0.015105240978300571, -0.008609413169324398, 0.04530423879623413, -0.01642623171210289, -0.02289334312081337, 0.016047164797782898, -0.009149296209216118, -0.013738303445279598, -0.015380926430225372, -0.014416028745472431, -0.0037303627468645573, 0.005456265993416309, 0.0019728709012269974, 0.018333053216338158, -0.007558363955467939, 0.035287681967020035, 0.004913511220365763, -0.019585123285651207, 0.012497720308601856, -0.01524308416992426, 0.0021523532923310995, -0.05389641970396042, -0.02823474071919918, -0.011245651170611382, 0.006352242082357407, -0.038733743131160736, -0.006645157467573881, 0.032438937574625015, -0.0035551879554986954, -0.019114160910248756, 0.031841620802879333, -0.034506574273109436, 0.023421738296747208, 0.014818069525063038, -0.04381094500422478, -0.0006220861105248332, 0.007506673224270344, 0.014576844871044159, -0.027361737564206123, 0.004522957373410463, -0.02857934683561325, -0.014944424852728844, -0.008506031706929207, 0.026373866945505142, -0.026236023753881454, 0.01092976238578558, 0.0053098080679774284, 0.00689786858856678, -0.030945641919970512, -0.03698774054646492, 0.005395959597080946, -0.014875504188239574, 0.026534682139754295, -0.03694179281592369, -0.00438798638060689, -0.0347592867910862, 0.015840401872992516, -0.0052810912020504475, 0.02655765600502491, -0.017597893252968788, -0.015805941075086594, -0.027867160737514496, 0.0028631037566810846, -0.022353459149599075, -0.0027611576952040195, 0.011865942738950253, 0.03388628363609314, 0.015461334027349949, -0.015886349603533745, 0.043604180216789246, -0.002697979798540473, 0.003871076973155141, -0.0013382210163399577, -0.013014630414545536, -0.031221328303217888, -0.012876787222921848, -0.006645157467573881, 0.010843610391020775, 0.008483057841658592, 0.024076491594314575, 0.036918818950653076, 0.002130815526470542, -0.005927227903157473, -0.003250785870477557, 0.011785534210503101, -0.006231629755347967, 0.006059326697140932, -0.012486233375966549, -0.014404541812837124, 0.028694214299321175, -0.00894253235310316, -0.019814860075712204, -0.005232271738350391, 0.006932329386472702, 0.02444407157599926, -0.002188249723985791, 0.010160141624510288, 0.01564512401819229, 0.009040171280503273, 0.001761799561791122, -0.030463194474577904, -0.02768336981534958, -0.020550020039081573, -0.025799522176384926, 0.013910606503486633, -0.0057836417108774185, 0.030210481956601143, -0.016311362385749817, 0.024283254519104958, -0.01549579482525587, 0.009706409648060799, -0.02056150697171688, -0.015874862670898438, 0.02439812384545803, 0.012049732729792595, 0.0011616102419793606, -0.014094396494328976, 0.004327680449932814, 0.008460083976387978, 0.0070816585794091225, 0.0199641901999712, 0.0170694962143898, -0.03581607714295387, 0.01983783394098282, -0.008632387034595013, -0.01480658259242773, 0.1136741191148758, -0.01780465617775917, 0.01026352308690548, -0.038136426359415054, 7.363266922766343e-05, 0.013566000387072563, 0.011251394636929035, 0.05169093981385231, -0.010768946260213852, -0.00879320316016674, 0.015070781111717224, -0.0014861145755276084, -0.035241734236478806, -0.00903442781418562, -0.0055768778547644615, 0.012830840423703194, 0.007811075542122126, -0.017310721799731255, -0.0004052713338751346, 0.027132000774145126, 0.004405216779559851, -0.0005003969999961555, 0.014289673417806625, 0.0008895149221643806, -0.02857934683561325, 0.03634447231888771, 0.023961622267961502, -0.010590898804366589, -0.017253287136554718, 0.005444779060781002, 0.011819995008409023, -0.014668740332126617, 0.00669110519811511, -0.005275347735732794, 0.023433225229382515, -0.020756784826517105, 0.02715497463941574, 0.027752291411161423, -0.026695499196648598, 0.012245009653270245, 0.02017095312476158, -0.027132000774145126, 0.009430725127458572, -0.038779690861701965, 0.030555088073015213, 0.049990881234407425, -0.019631071016192436, -0.002972229151055217, 0.015553229488432407, 0.00046629534335806966, 0.03717152774333954, -0.03719450160861015, -0.03207135573029518, -0.008081017062067986, 0.004103686194866896, 0.016610022634267807, -0.006932329386472702, -0.035195786505937576, -0.0008931045886129141, -0.02469678223133087, 0.010556438937783241, -0.027568500488996506, 0.02280144765973091, -0.006036353297531605, 0.008161424659192562], [0.022119060158729553, 0.03402552008628845, 0.027967197820544243, 0.006008867174386978, -0.007888183929026127, 0.03056362085044384, -9.36470678425394e-05, 0.021488500759005547, -0.01503453217446804, 0.043174825608730316, 0.025914786383509636, -0.005449399817734957, 0.01941136084496975, -0.03872381150722504, -0.049678247421979904, 0.0424329899251461, 0.0025268769823014736, 0.01860770583152771, -0.03738850727677345, -0.012141373939812183, 0.011906458996236324, 0.029846513643860817, -0.06330329179763794, -0.021834690123796463, -0.039712924510240555, -0.022935079410672188, 0.026409342885017395, -0.010583519004285336, 0.029797058552503586, -0.026532981544733047, 0.09752663224935532, -0.02603842504322529, 0.10267002880573273, -0.006228326819837093, 0.006147961597889662, 0.024418750777840614, -0.041369691491127014, 0.014082510024309158, 0.0295003242790699, -0.006178871262818575, -0.027002811431884766, 0.00975513644516468, 0.0038297255523502827, -0.002327508758753538, 0.058060988783836365, 0.049084778875112534, 0.04216098040342331, -0.024443479254841805, 0.004982661455869675, 0.028684305027127266, 0.01661711372435093, 0.04841712862253189, -0.011380992829799652, 0.026384614408016205, 0.012957393191754818, 0.013118123635649681, -0.0033320775255560875, 0.05662677437067032, 0.012388652190566063, -0.01969573087990284, -0.034742627292871475, -0.030192703008651733, -0.02559332363307476, 0.0646880492568016, -0.06092941761016846, 0.015467269346117973, -0.063649483025074, 0.0866958349943161, -0.009223487228155136, -0.009891139343380928, 0.0033351685851812363, -0.05657731741666794, 0.010991528630256653, -0.062066901475191116, -0.01870661787688732, 0.016988031566143036, -0.017111672088503838, -0.010509335435926914, 0.020796120166778564, 0.0039750016294419765, -0.03177528455853462, 0.03058834932744503, -0.021847054362297058, -0.008432196453213692, -0.0057399519719183445, -0.002931795548647642, -0.10024669766426086, 0.01499744039028883, -0.014972712844610214, -0.04057839885354042, -0.0512361042201519, -0.00612014252692461, 0.026978082954883575, 0.07828836888074875, -0.012747205793857574, -0.0052175759337842464, 0.028659576550126076, 0.011251171119511127, -0.036893948912620544, 0.02997015230357647, -0.009742772206664085, -0.014824345707893372, -0.013662136159837246, -0.0030677986796945333, 0.026310430839657784, -0.053016506135463715, -0.027349000796675682, 0.004828112665563822, -0.010874071158468723, -0.008895843289792538, -0.01279666181653738, -0.027349000796675682, -0.04342210292816162, 0.08867406845092773, 0.002366146072745323, 0.03654776141047478, -0.04715600609779358, 0.00021018671395722777, 0.015801094472408295, 0.02999488078057766, -0.017618592828512192, 0.030909810215234756, 0.04161696881055832, -0.05895119160413742, -0.013563225045800209, -0.049678247421979904, 0.013649772852659225, 0.0021312313620001078, -0.06928743422031403, -0.02618679217994213, 0.08704202622175217, -0.06523206830024719, 0.019139355048537254, -0.06414403766393661, 0.026434069499373436, -0.0010887980461120605, 0.009458402171730995, -0.010534063912928104, -0.01669129729270935, 0.016802573576569557, -0.038674354553222656, -0.023454364389181137, 0.015751639381051064, 0.023095810785889626, 5.307793981046416e-05, 0.009996232576668262, 0.002913249656558037, 0.027447912842035294, 0.03229457139968872, 0.007993277162313461, -0.01028678473085165, 0.015219991095364094, -0.022811440750956535, -0.020326292142271996, 0.006886705756187439, -0.004834294319152832, 0.04851603880524635, 0.010496972128748894, -0.011164623312652111, -0.026260975748300552, -0.03184946998953819, 0.025160586461424828, -0.05390670895576477, -0.012153737246990204, 0.03407497704029083, -0.027002811431884766, -0.015677455812692642, 0.022168517112731934, -0.030167976394295692, -0.0236769150942564, -0.09258106350898743, 0.006219054106622934, -0.04629053175449371, 0.010979164391756058, -0.044658493250608444, -0.05989085137844086, 0.022687802091240883, -0.024332202970981598, -0.004744655918329954, 0.044658493250608444, -0.008753658272325993, 0.028239203616976738, -0.019337177276611328, -0.026384614408016205, -0.019398996606469154, -0.008580563589930534, -0.026384614408016205, -0.014638886786997318, -0.004645744804292917, 0.006203599274158478, -0.022663073614239693, -0.000323007523547858, -0.027571551501750946, 0.0017494952771812677, -0.003798815654590726, 0.015108715742826462, -0.00037304277066141367, -0.006466332357376814, 0.023726370185613632, 0.009235851466655731, 0.007251441478729248, 0.01503453217446804, -0.0038946361746639013, 0.026953354477882385, -0.05994030460715294, 0.0010517062619328499, -0.025469684973359108, 0.03330841287970543, -0.008234373293817043, 0.023874737322330475, 0.02464130148291588, -0.005044481251388788, -0.0007267669425345957, 0.015368358232080936, -0.0037555419839918613, 0.010793706402182579, 0.033629875630140305, 0.0006688110297545791, 0.020165560767054558, 0.0007700406713411212, -0.04515305161476135, -0.01528181042522192, 0.04609271138906479, 0.018978623673319817, -0.021006306633353233, -0.021315405145287514, 0.05652786046266556, 0.003053889377042651, -0.029253045096993446, -0.06275928020477295, -0.02673080377280712, -0.007857274264097214, -0.011807547882199287, -0.020672481507062912, -0.008184918202459812, 0.03766051307320595, -0.050840456038713455, -0.02994542568922043, -0.001028524013236165, 0.016802573576569557, -0.011034802533686161, -0.0027865194715559483, -0.02504931017756462, -0.043545741587877274, 0.01674075424671173, -0.037611059844493866, -0.0054030348546803, 0.0051526655443012714, 0.04935678467154503, -0.01555381715297699, 0.04930733144283295, -0.084371417760849, 0.04653781279921532, -0.05682459473609924, 0.016085466369986534, 0.014799617230892181, 0.023664550855755806, -0.017111672088503838, 0.010410424321889877, -0.005631767679005861, 0.0040430030785501, -0.0034588079433888197, -0.00695470767095685, 0.01011987216770649, -0.05281868577003479, -0.009903503581881523, 0.008246737532317638, -0.014292696490883827, 0.01891680434346199, 0.03328368440270424, -0.04725492000579834, 0.05286813899874687, -0.026335159316658974, -0.019658640027046204, -0.05835772305727005, 0.01573927514255047, 0.019448453560471535, -0.051928482949733734, 0.002132776891812682, 0.0019303177250549197, -0.03046470880508423, -0.06226472184062004, 0.005733769852668047, -0.06706192344427109, 0.008030368946492672, -0.004627198912203312, 0.027349000796675682, -0.014045418240129948, -0.027472639456391335, 0.050246987491846085, 0.05776425451040268, -0.05672568455338478, 0.021006306633353233, -0.014292696490883827, 0.0035608101170510054, -0.0115169957280159, -0.009402764961123466, 0.012190829031169415, -0.06701246649026871, -0.03214620426297188, 0.008413650095462799, 0.07749707996845245, -0.0010084325913339853, 0.024208564311265945, -0.020635390654206276, -0.02784355729818344, 0.00026234702090732753, 0.005631767679005861, -0.02424565516412258, -0.03721541166305542, 0.012036280706524849, 0.005331942345947027, 0.007375081069767475, -0.059149015694856644, -0.039688196033239365, 0.027621006593108177, -0.040949318557977676, 0.02717590518295765, 0.019683368504047394, 0.009959140792489052, 0.014428699389100075, -0.011863185092806816, 0.03543500602245331, 0.014539974741637707, -0.010694794356822968, -0.024876216426491737, 0.03323422744870186, 0.03669612854719162, -0.00948312971740961, -0.036300480365753174, -0.0685950517654419, 0.0011506177252158523, 0.04997498169541359, -0.04542505741119385, 0.001726312912069261, 0.01180136576294899, 0.015306537970900536, -9.910458174999803e-05, 0.02551914006471634, -0.028733760118484497, 0.004611743614077568, -0.04948042705655098, 0.00424391683191061, 0.036349937319755554, -0.012994484975934029, 0.005245395004749298, 0.031429097056388855, 0.03172583132982254, -0.017964782193303108, 0.029797058552503586, 0.011640634387731552, -0.018236787989735603, -0.05598384886980057, -0.010453698225319386, -0.022996898740530014, -0.04047948867082596, 0.03612738847732544, -0.015467269346117973, -0.017865870147943497, 0.019139355048537254, 0.0512361042201519, -0.016060737892985344, 0.03320950269699097, 0.02880794368684292, 0.01972045935690403, -0.004327373579144478, -0.032022565603256226, 0.000687743304297328, -0.025741690769791603, -0.04235880449414253, -0.010360968299210072, 0.04824403300881386, 0.021278314292430878, -0.0205735694617033, -0.011696272529661655, 0.0016691298224031925, -0.006602335721254349, -0.036893948912620544, 0.016283288598060608, -0.00695470767095685, 0.03224511444568634, 0.004166642669588327, -0.030192703008651733, 0.027126450091600418, 0.030885083600878716, 0.01562800072133541, -0.06424295157194138, 0.015405450016260147, -0.01692621223628521, -0.004046094138175249, 0.019596820697188377, 0.010614428669214249, -0.013773411512374878, 0.03501463308930397, -0.00720198592171073, 0.04179006442427635, -0.006290146615356207, 0.022502342239022255, 0.016468746587634087, -0.015195262618362904, 0.0017139490228146315, -0.0016722207656130195, 0.007968549616634846, 0.045276690274477005, -0.014008326455950737, 0.01661711372435093, 0.029253045096993446, 0.0139094153419137, 0.015096351504325867, -0.03271494433283806, 0.007096892688423395, 0.002910158596932888, 0.04047948867082596, 0.03741323575377464, 0.013513769023120403, 0.007461628410965204, 0.0012340742396190763, -0.008277647197246552, -0.030143247917294502, -0.01614728569984436, 0.029698146507143974, -0.0025485139340162277, -0.024307474493980408, 0.032566577196121216, 0.002650516340509057, 0.049702975898981094, -0.019337177276611328, 0.0011312990682199597, -0.0005494218785315752, -0.07512320578098297, 0.051433924585580826, 0.020511750131845474, 0.03949037566781044, 0.020128468051552773, 0.015825822949409485, -0.04275444895029068, 0.02499985508620739, -0.0007700406713411212, -0.029104677960276604, -0.07650796324014664, 0.004645744804292917, -0.02518531307578087, 0.007498720195144415, 0.019683368504047394, -0.03501463308930397, 0.034767355769872665, -0.026013696566224098, 0.02248997800052166, -0.008432196453213692, -0.0014110328629612923, -0.0049857525154948235, 0.007999459281563759, -0.050197534263134, -0.016505839303135872, 0.0013383948244154453, 0.011498449370265007, -0.005236121825873852, -0.04930733144283295, 0.07571667432785034, 0.0178535059094429, 0.01638220064342022, -0.004710655193775892, 0.019967738538980484, 0.060237038880586624, 0.006565243937075138, 0.003052343847230077, -0.026854444295167923, -0.03897108882665634, -0.005421580746769905, -0.008030368946492672, -0.015355993993580341, -0.02507403865456581, 0.01235774252563715, -0.029055222868919373, 0.05781371146440506, 0.02831338718533516, -0.017581500113010406, -0.03501463308930397, 0.01635747216641903, -0.030761443078517914, -0.027670463547110558, 0.04201261326670647, -0.06300655752420425, -0.05049426853656769, -0.014391607604920864, 0.02836284227669239, 0.052027393132448196, 0.038031432777643204, -0.03402552008628845, 0.009643861092627048, 0.008698021061718464, -0.037561602890491486, 0.03325895592570305, -0.012289741076529026, -0.0027633369900286198, -0.01123262569308281, -0.036424122750759125, -0.02197069302201271, 0.052472494542598724, -0.014342152513563633, -0.0016243106219917536, -0.013192307204008102, 0.01602364517748356, -0.02880794368684292, 0.003400079207494855, -0.009359491057693958, 0.019831735640764236, 0.0033197137527167797, -0.004849749151617289, -0.003024525009095669, -0.016530567780137062, 0.054252900183200836, 0.027324272319674492, -0.02352854795753956, -0.018310971558094025, -0.029797058552503586, 0.027621006593108177, 0.030959267169237137, -0.027373729273676872, -0.004491195548325777, 0.027324272319674492, -0.004117186646908522, -0.02668134868144989, -0.010849343612790108, 0.004342828411608934, 0.007863455452024937, -0.0032238932326436043, -0.03998493030667305, -0.015479633584618568, 0.003956455737352371, 0.02474021352827549, -0.0367455817759037, -0.050889912992715836, 0.04651308432221413, -0.006079959683120251, -0.010305331088602543, 0.002244052244350314, 0.005270122550427914, 0.014453427866101265, -0.0051063005812466145, 0.055242013186216354, -0.0008685656939633191, -0.005081573035567999, -0.025988969951868057, 0.00016527088882867247, 0.007455446291714907, -0.008302375674247742, 0.01829860731959343, -0.005529765039682388, 0.0032115294598042965, -0.004488104488700628, 0.02841229736804962, -0.011863185092806816, -0.030934538692235947, 0.023491457104682922, -0.0028607030399143696, 0.01837279088795185, -0.007733634673058987, -0.003171346615999937, -0.0295003242790699, -0.008104552514851093, 0.005792498588562012, 0.013513769023120403, 0.009928231127560139, -0.02386237494647503, 0.004862113390117884, 0.020845577120780945, 0.01264211256057024, -0.033605147153139114, -0.011807547882199287, -0.025791145861148834, -0.01528181042522192, 0.012221739627420902, -0.017816415056586266, 0.024159107357263565, 0.013142851181328297, 0.017668047919869423, -0.00023085765133146197, 0.03175055608153343, 0.01860770583152771, -0.010787524282932281, 0.0040306393057107925, -0.029574507847428322, -0.02722536213696003, -0.014317424036562443, -0.012518473900854588, 0.008599109016358852, -0.016011282801628113, -0.024752575904130936, 0.005254667717963457, -0.006719792727380991, -0.004670472349971533, 0.007715088780969381, -0.0008948390022851527, 0.00822819210588932, 0.04332319274544716, -0.018904440104961395, 0.00536285201087594, -0.023565640673041344, -0.005838863085955381, 0.0064477864652872086, -0.009130758233368397, -0.02424565516412258, 0.0008956117671914399, -0.02282380498945713, 0.003990456461906433, 0.02999488078057766, -0.007189622148871422, -0.010243511758744717, 0.005143392365425825, 0.005208303220570087, 0.035781197249889374, 0.010194055736064911, -0.03175055608153343, -0.03553391993045807, 0.007288533262908459, 0.04381774738430977, 0.0032455301843583584, -0.012456653639674187, -0.0030059791170060635, -0.04789784178137779, -0.011702454648911953, 0.007943821139633656, -0.03006906434893608, -0.008957663550972939, 0.029178861528635025, -0.0024959673173725605, 0.0029364321380853653, 0.002146686427295208, -0.031923651695251465, -0.015998918563127518, -0.009934413246810436, -0.014416336081922054, 0.012011552229523659, -0.00021076627308502793, 0.014935621060431004, 0.007548175752162933, -0.003931727726012468, -0.01003950648009777, 0.0010895708110183477, 0.01588764227926731, 0.011108986102044582, 0.015726910904049873, -0.02893158234655857, 0.03681976720690727, -0.0006734475027769804, 0.00707834679633379, 0.030761443078517914, -0.00860529113560915, 0.010719522833824158, 0.023738734424114227, 0.024517662823200226, -0.02227979153394699, -0.03229457139968872, 0.02717590518295765, 0.006695065181702375, -0.01661711372435093, 0.04703236743807793, -0.0021652323193848133, 0.009724226780235767, -0.0012286650016903877, 0.007783090230077505, -0.01633274368941784, -0.0014682160690426826, 0.002313599456101656, -0.03343205153942108, 0.057566430419683456, 0.0056935870088636875, 0.030860355123877525, -0.01003950648009777, 0.025741690769791603, -0.050296444445848465, 0.009786046110093594, -0.024468205869197845, -0.022984536364674568, -0.03667140007019043, -0.025840602815151215, -0.02197069302201271, -0.045919615775346756, 0.025692235678434372, -0.01974518783390522, -0.012351560406386852, -0.025890057906508446, -0.008104552514851093, -0.043026458472013474, -0.027324272319674492, -0.00047832931159064174, -0.01083079818636179, -0.003313531633466482, -0.005619403440505266, -0.016246195882558823, 0.015331266447901726, 0.008314738981425762, 0.019040443003177643, 0.041938431560993195, 0.023281268775463104, -0.005607039667665958, 0.0071154385805130005, -0.03573174029588699, -0.02388710156083107, 0.022292155772447586, 0.013785775750875473, -0.022094333544373512, -0.020412839949131012, -0.0313054583966732, -0.0173342227935791, 0.010101325809955597, 0.02551914006471634, 0.05281868577003479, 0.0022316882386803627, 0.03385242447257042, 0.02419620007276535, -0.012543201446533203, -0.021253585815429688, -0.030167976394295692, 0.010169328190386295, 0.0012510746018961072, 0.02994542568922043, -0.0007306306506507099, -0.029055222868919373, -0.018434612080454826, 0.029648691415786743, -0.0014960349071770906, 0.03239348158240318, 0.014910892583429813, -0.03278912603855133, -0.0155909089371562, -0.01723531074821949, 0.00202150153927505, 0.005656495224684477, 0.03741323575377464, -0.007987095043063164, 0.004658108577132225, 0.01363740861415863, 0.0005285577499307692, -0.0006456286646425724, -0.0037246323190629482, 0.005981048569083214, -0.024826759472489357, -0.0032795309089124203, 0.0339018814265728, -0.02121649496257305, 0.03330841287970543, -0.01811314933001995, -0.0016923121875151992, -0.0019983192905783653, 0.004914660006761551, -0.013625044375658035, 0.025692235678434372, 0.03877326846122742, -0.02088266797363758, 0.009217306040227413, -0.038649626076221466, 0.005671950522810221, -0.011578815057873726, 0.005752315744757652, -0.001628947095014155, 0.028016652911901474, -0.06048431992530823, -0.0036937224213033915, 0.014824345707893372, 0.0018885894678533077, -0.006917615886777639, 0.019683368504047394, 0.022959807887673378, -0.0333825945854187, -0.021537955850362778, 0.020091377198696136, 0.0025206950958818197, -0.02606315352022648, 0.010781342163681984, 0.004846658557653427, -0.0035144456196576357, 0.013736319728195667, 0.02838757075369358, -0.01211046427488327, -0.021129947155714035, 0.015405450016260147, -0.03731432557106018, -0.04557342454791069, -0.02453002519905567, -0.02774464711546898, 0.015294174663722515, 0.027991924434900284, 0.012734842486679554, -0.006528152152895927, 0.010194055736064911, -0.012697750702500343, 0.0030415253713726997, 0.016060737892985344, 0.0042624627240002155, -0.03728959709405899, -0.03731432557106018, -0.03330841287970543, -0.04574652016162872, -0.0010292966617271304, -0.0070041632279753685, -0.07784327119588852, -0.018286244943737984, 0.00623759999871254, -0.024084923788905144, 0.002973523922264576, -0.03887217864394188, 0.004821930546313524, 0.06320437788963318, 0.03335786983370781, -0.02618679217994213, 0.007220531813800335, 0.007164894137531519, -0.005548310931771994, 0.014527611434459686, 0.009421310387551785, 0.013625044375658035, 0.021241221576929092, 0.025395501405000687, -0.001768041169270873, -0.01471307035535574, 0.019065171480178833, -0.00039062273572199047, -0.005511219147592783, 0.0033537144772708416, -0.02396128512918949, 0.019188810139894485, -0.03281385451555252, -0.023145265877246857, -0.025086402893066406, 0.009174032136797905, 0.006886705756187439, -0.022959807887673378, -0.01609782874584198, -0.022910352796316147, 0.04285336285829544, 0.03335786983370781, -0.005746134091168642, -0.006769248750060797, 0.01088025327771902, -0.0010223420104011893, 0.02090739645063877, -0.028709031641483307, 0.01873134635388851, 0.035261914134025574, -0.016913847997784615, -0.043718837201595306, -0.01635747216641903, -0.013822867535054684, 0.013625044375658035, -0.00588213698938489, -0.03550919145345688, -0.007331807166337967, 0.009303852915763855, -0.026508253067731857, -0.02789301425218582, -0.006404513027518988, 0.04023221135139465, -0.0008531108032912016, -0.024332202970981598, 0.012957393191754818, -0.0008276102016679943, -0.007851092144846916, 0.017482589930295944, -0.015368358232080936, 0.03498990461230278, -0.004630289506167173, -0.048046208918094635, 0.003455716883763671, -0.03172583132982254, 0.01910226233303547, 0.03516300022602081, -0.047502197325229645, -0.03899581730365753, 0.01868188939988613, -0.007851092144846916, 0.003628811798989773, -0.026854444295167923, -0.04389193281531334, -0.019572092220187187, -0.011931187473237514, 0.007214349694550037, 0.04950515180826187, 0.0037740878760814667, 0.006169598083943129, 0.03560810163617134, 0.04624107852578163, -0.02502458356320858, -0.00651578838005662, 0.0182491522282362, -0.017791686579585075, 0.031429097056388855, 0.036349937319755554, 0.00764090521261096, 0.028016652911901474, 0.022081969305872917, 0.012982120737433434, -0.017964782193303108, 0.040355850011110306, -0.020511750131845474, 0.0030507983174175024, 0.024233290925621986, -0.010422788560390472, 0.013625044375658035, -0.014910892583429813, -0.008444560691714287, -0.02414674498140812, -0.009458402171730995, -0.005501946434378624, 0.022885624319314957, 0.020647753030061722, 0.005090845748782158, -0.00391318229958415, 0.0359790213406086, 0.023664550855755806, 0.0036628125235438347, -0.0013105759862810373, -0.0012827571481466293, -0.008327103219926357, -0.0008670202223584056, -0.020252108573913574, 0.002673698589205742, -0.020919760689139366, 0.00535667035728693, 0.01669129729270935, -0.012431926093995571, -0.011714817956089973, 0.0034464439377188683, 0.03293749317526817, 0.022428158670663834, -0.021537955850362778, 0.030217431485652924, 0.02130304090678692, -0.04680981859564781, -0.0014365335227921605, 0.063649483025074, -0.0030894356314092875, 0.037611059844493866, -0.026854444295167923, -0.024443479254841805, 0.009922049008309841, -0.0017000396037474275, 0.008741294965147972, 0.027991924434900284, 0.020932123064994812, -0.014675978571176529, -0.0023986012674868107, -0.025939512997865677, -0.0018530432134866714, 0.0007371989777311683, -0.009081302210688591, 0.02776937372982502, 0.01661711372435093, -0.005464854650199413, 0.009365673176944256, -0.01827388070523739, 0.0004153505724389106, 0.01756913587450981, 0.01604837365448475, -0.01622146926820278, 0.035237185657024384, -0.005897591821849346, 0.0011792093282565475, -0.0001169743190985173, -0.008864933624863625, 0.021785235032439232, 0.009167850017547607, -0.025766419246792793, 0.026829715818166733, 0.0439908429980278, -0.006596153602004051, -0.01886734925210476, -0.0005258531309664249, 0.03884745016694069, -0.013056304305791855, -0.05069208890199661, 0.03936673700809479, 0.01556618046015501, 0.013068667612969875, 0.00035971292527392507, 0.019572092220187187, -0.00940894614905119, 0.02230452001094818, 0.025890057906508446, 0.03887217864394188, 0.02116703800857067, 0.030909810215234756, -0.018743708729743958, -0.024356931447982788, 0.026335159316658974, 0.04626580327749252, 0.014107237569987774, 0.009804592467844486, 0.010330058634281158, -0.01837279088795185, 0.014230877161026001, -0.0022564162500202656, 0.006911433767527342, -0.003937909845262766, 0.022761985659599304, 0.015986554324626923, -0.009569677524268627, 0.04779893159866333, 0.004778656642884016, 0.042531900107860565, 0.003077071625739336, -0.010379514656960964, 0.02145140804350376, -0.006259236950427294, 0.02883267216384411, 0.03296222165226936, -0.012809026055037975, 0.0051186648197472095, 0.0014929438475519419, 0.01075043249875307, 0.016246195882558823, -0.00038424759986810386, -0.012809026055037975, -0.018471702933311462, -0.032566577196121216, 0.004070822149515152, -0.023182358592748642, -0.014552338980138302, 0.006008867174386978, 0.0024712393060326576, 0.017074579373002052, 0.03276440128684044, -0.025964241474866867, 0.018434612080454826, -0.0020508659072220325, 0.00623759999871254, -0.002002955647185445, 0.0005903773708269, 0.015578544698655605, 0.004611743614077568, 0.0006576062296517193, -0.007665633223950863, 0.02504931017756462, 0.022057240828871727, -0.01143663004040718, 0.029055222868919373, -0.06735865771770477, -0.04285336285829544, 0.02658243663609028, -0.027571551501750946, -0.00764090521261096, -0.050840456038713455, 0.02111758291721344, 0.008314738981425762, -0.030439982190728188, 0.017532045021653175, -0.017742231488227844, 0.03714122995734215, 0.02954977937042713, -0.0046426537446677685, -0.030192703008651733, -0.013958870433270931, -0.00795618537813425, 0.003043070901185274, -0.022057240828871727, -0.042531900107860565, -0.008184918202459812, -0.006911433767527342, 0.006404513027518988, 0.01976991444826126, -0.018261516466736794, 0.00048335216706618667, 0.03244293853640556, 0.017766959965229034, -0.03743796423077583, -0.035410281270742416, 0.002781882882118225, 0.0036411758046597242, -0.017618592828512192, -0.017556773498654366, -0.032541848719120026, 0.04577124863862991, 0.03229457139968872, -0.012499927543103695, -0.0015485815238207579, -0.03009379282593727, -0.020177925005555153, -0.01837279088795185, -0.0007283124141395092, 0.016790209338068962, 0.036943405866622925, 0.01609782874584198, 0.0018298608483746648, -0.009384218603372574, -0.021575048565864563, -0.0013298946432769299, 0.039119455963373184, 0.001809769426472485, -0.020561207085847855, -0.03427279740571976, 0.07749707996845245, -0.0010911163408309221, 0.038649626076221466, -0.005947047844529152, 0.025865329429507256, -0.012363924644887447, -0.02213142439723015, 0.029228316619992256, 0.02603842504322529, 0.02893158234655857, 0.008432196453213692, -0.04171588271856308, -0.035781197249889374, 0.0030167975928634405, 0.01671602576971054, 0.01981937140226364, 0.026434069499373436, -0.015170535072684288, 0.000446260382886976, 0.026879170909523964, 0.02890685573220253, 0.004945569671690464, -0.006064504850655794, 0.003424806986004114, 0.021241221576929092, -0.033061135560274124, -0.0078263645991683, 0.005953229498118162, 0.054252900183200836, -0.05603330582380295, -0.011807547882199287, -0.04441121593117714, -0.004760110750794411, 0.023120539262890816, 0.003600992960855365, -0.028684305027127266, 0.023763462901115417, 0.03612738847732544, 0.004812657367438078, 0.012858481146395206, 0.023726370185613632, 0.014638886786997318, -0.030266886577010155, 0.007183440029621124, -0.013254126533865929, 0.02326890639960766, -0.028214475139975548, -0.007529629860073328, 0.02453002519905567, 0.052423037588596344, -0.007925275713205338, -0.024356931447982788, -0.011455176398158073, -0.035410281270742416, 0.004583925008773804, -0.024678392335772514, 0.06725975126028061, -0.00916166789829731, -0.0027324273250997066, -0.017321858555078506, 0.022910352796316147, -0.012784297578036785, -0.022650709375739098, -1.2043959941365756e-05, -0.003842089558020234, -0.006104687694460154, -0.02554386854171753, 0.05326378718018532, 0.007869637571275234, 0.0051279375329613686, -0.013155215419828892, 0.03456953167915344, -0.007987095043063164, 0.010954436846077442, -0.006330329459160566, 0.010014778934419155, 0.007467810530215502, -0.027546823024749756, 0.034742627292871475, -0.027052266523241997, -0.0016196741489693522, -0.03333314135670662, -0.0004937842022627592, 0.008500197902321815, -0.010509335435926914, 0.0051619382575154305, -0.013513769023120403, 0.0017216764390468597, -0.013835231773555279, -0.024134380742907524, -0.002931795548647642, -0.0064477864652872086, -0.01976991444826126, -0.007739816792309284, 0.00047330648521892726, 0.00692379754036665, -0.03046470880508423, 0.0002198460279032588, -0.04930733144283295, 0.01995537430047989, 0.010874071158468723, 0.02111758291721344, -0.004410829860717058, -0.03407497704029083, 0.018780801445245743, 0.00968095287680626, 0.030860355123877525, 0.006429240573197603, -0.04332319274544716, -0.022217972204089165, -0.0018638615729287267, 0.01951027289032936, -0.015417813323438168, 0.0014736251905560493, -0.03766051307320595, -0.00019386247731745243, 0.012969756498932838, -0.01638220064342022, -0.01972045935690403, 0.0053412155248224735, 0.010632975026965141, 0.02841229736804962, 0.0232936330139637, -0.05835772305727005, 0.018335700035095215, -0.02352854795753956, 0.013192307204008102, -0.0009242033702321351, 0.0014257150469347835, 0.00037400872679427266, -0.0007379717426374555, 0.019658640027046204, -0.00599650340154767, 0.015083988197147846, -0.012784297578036785, -0.02613733522593975, -0.005532856099307537, 0.0033351685851812363, 0.024356931447982788, 0.009000936523079872, -0.009371854364871979, 0.007708906661719084, 0.0025361499283462763, 0.010020961053669453, 0.006212871987372637, 0.003539173398166895, 0.01583818718791008, 0.00811073463410139, -0.0024264201056212187, -0.006849613972008228, 0.001322939875535667, 0.008679474703967571, -0.005520492326468229, -0.02838757075369358, 0.025222405791282654, -0.02725008875131607, 0.00043891932000406086, -0.017705140635371208, 0.019473180174827576, 0.0019550456199795008, -0.02561805211007595, -0.014799617230892181, 0.01531890220940113, 0.022292155772447586, -0.012363924644887447, 0.01308103185147047, 0.0108060697093606, 0.002080230275169015, -0.024047832936048508, -0.008444560691714287, 0.014070145785808563, -0.00015764003910589963, 0.0007290851790457964, -0.01363740861415863, -0.05012334883213043, 0.005087754689157009, 0.005678132176399231, -0.025716962292790413, 0.013217034749686718, -0.009291489608585835, -0.002706154016777873, 0.031379640102386475, -0.0359790213406086, -0.0010478425538167357, -0.00037265641731210053, -0.02150086499750614, 0.008506380021572113, -0.008104552514851093, 0.02213142439723015, 0.00584195414558053, 0.0023151447530835867, -0.052423037588596344, 0.014836709015071392, -0.014181421138346195, 0.030365798622369766, -0.004222280345857143, -0.017297130078077316, -0.012221739627420902, -0.01917644590139389, -0.02826393023133278, -0.011065712198615074, -0.0028251567855477333, -0.012314468622207642, 0.014305060729384422, 0.004200643394142389, 0.014416336081922054, -0.01974518783390522, -0.0014852164313197136, -0.019881190732121468, 0.0012881663860753179, 0.03835289180278778, 0.019164083525538445, -0.0009937504073604941, -0.0031110725831240416, 0.06389676034450531, -0.018694253638386726, -0.03056362085044384, 0.008809296414256096, -0.0075605399906635284, 0.0014720797771587968, 0.02090739645063877, 0.003907000180333853, -0.006849613972008228, 0.02786828577518463, 0.0019426816143095493, -0.021649232134222984, -0.020635390654206276, -0.029599234461784363, 0.012401016429066658, 0.01728476583957672, -0.012809026055037975, -0.025247134268283844, 0.0071154385805130005, 0.03323422744870186, -0.035385552793741226, -0.02000482939183712, 0.0012170737609267235, 0.003566992236301303, 0.02499985508620739, -0.005869773216545582, -0.001347667770460248, 0.0007526538684032857, 0.016889121383428574, -0.02111758291721344, -0.004296463914215565, -0.024109652265906334, 0.03625102713704109, -0.04564760997891426, 0.007572903763502836, -0.02274962142109871, -0.033061135560274124, -0.014614158309996128, 0.01609782874584198, 0.0266566202044487, 0.01331594679504633, 0.01801423728466034, -0.005474127363413572, -0.010169328190386295, 0.016753116622567177, 0.026953354477882385, -0.006750702857971191, -0.04124605283141136, -0.01780405081808567, -0.002410965273156762, -0.03892163559794426, 0.015479633584618568, 0.02028919942677021, 0.03328368440270424, -0.010379514656960964, 0.0173342227935791, 0.029129406437277794, -0.00975513644516468, -0.0004192143096588552, -0.0036442666314542294, -0.011380992829799652, -0.004191370215266943, 0.0042531900107860565, 0.016802573576569557, 0.020276835188269615, -0.030736716464161873, 0.0015431722858920693, -0.00400591129437089, -0.01604837365448475, -0.0005780134815722704, -0.001684584654867649, -0.028090836480259895, 0.051483381539583206, -0.0018344973213970661, -0.0011351627763360739, -0.029846513643860817, -0.006385967135429382, -0.010904981754720211, -0.015949461609125137, -0.025741690769791603, 0.003944091964513063, -0.009303852915763855, 0.026903899386525154, -0.01083079818636179, -0.019337177276611328, -0.0010401151375845075, -0.040949318557977676, 0.013439585454761982, -0.010336240753531456, -0.014008326455950737, -0.019844098016619682, -0.001934954198077321, 0.005010480526834726, -0.00996532291173935, -0.0003639630158431828, -0.022527070716023445, 0.017643319442868233, -0.05959411710500717, -0.03452007845044136, -0.0035824470687657595, -0.01011987216770649, -0.006602335721254349, -0.011721000075340271, -0.035929564386606216, -0.018484067171812057, 0.024159107357263565, 0.01139953825622797, 0.016542930155992508, 0.0012564838398247957, -0.015294174663722515, 0.0001735779078444466, -0.019114626571536064, 0.0048188394866883755, 0.0276951901614666, -0.02561805211007595, -0.001281211618334055, -0.050840456038713455, -0.02189650945365429, 4.218706089886837e-05, -0.00795618537813425, 0.014218512922525406, 0.035855378955602646, -0.0023182358127087355, 0.019423725083470345, -0.021513229236006737, -0.026335159316658974, 0.040924590080976486, 0.01671602576971054, -0.00801182258874178, 0.010571155697107315, -0.0036720854695886374, -0.006324147339910269, -0.010076598264276981, -0.018100785091519356, 0.009149303659796715, -7.799897866789252e-05, 0.008129280060529709, 0.04104822874069214, -0.003947183024138212, -0.009983869269490242, 0.010348604992032051, -0.07007872313261032, -0.0009589768596924841, -0.02474021352827549, 0.007387444842606783, 0.0032177113462239504, 0.0037246323190629482, 0.03996020182967186, -0.0016938576009124517, -0.03926782310009003, 0.02147613652050495, -0.020351018756628036, 0.02287326008081436, -0.02000482939183712, 0.004352101590484381, 0.005863591097295284, 0.00788200180977583, 0.0182491522282362, -0.04901059716939926, -0.048689134418964386, -0.00158026407007128, -0.009526403620839119, -0.02409728802740574, 0.027621006593108177, 0.0019952282309532166, -0.04097404703497887, 0.036968134343624115, 0.032517120242118835, 0.008586745709180832, -0.02272489294409752, -0.019633911550045013, 0.0067816125229001045, -0.030415253713726997, -0.008988573215901852, 0.017977146431803703, -0.014824345707893372, 0.011733364313840866, 0.015430177561938763, -0.007609995547682047, 0.005879045929759741, -0.01666657067835331, -0.017482589930295944, -0.010224965400993824, 0.021253585815429688, -0.005854318384081125, -0.017952417954802513, -0.0028916127048432827, 0.003322804579511285, 0.010972983203828335, 0.0035515371710062027, -0.03842707723379135, -0.012499927543103695, 0.060879964381456375, 0.02997015230357647, -0.002199233043938875, -0.022922715172171593, -0.0005498082609847188, -0.03877326846122742, 0.0058512273244559765, -0.004383011255413294, 0.016518203541636467, -0.04277917742729187, -0.010942073538899422, 0.029302500188350677, -0.019188810139894485, 0.03152800723910332, 0.0030090701766312122, 0.0038359074387699366, 0.01468834187835455, 0.029005765914916992, 0.006899069994688034, 0.04023221135139465, -0.015665091574192047, -0.04067731276154518, -0.011226443573832512, -0.00795618537813425, -0.011721000075340271, -0.054153990000486374, -0.014552338980138302, 0.012333014979958534, -0.012499927543103695, -0.0018468612106516957, 0.019374269992113113, -0.020585933700203896, -0.02786828577518463, -0.019028078764677048, 0.015430177561938763, -0.033135317265987396, 0.0014774890150874853, -0.011405720375478268, 0.03214620426297188], [0.03516024351119995, 0.009700948372483253, 0.009512264281511307, 0.02912236377596855, -0.023175572976469994, 0.0005188803770579398, -0.031022215262055397, 0.03646151348948479, 0.019362859427928925, -0.0027733261231333017, 0.04098992422223091, 0.030735936015844345, -0.022186608985066414, -0.043540406972169876, -0.012745914049446583, 0.010149885900318623, -0.030501708388328552, 0.010709431022405624, -0.02219962142407894, 0.007449755910784006, 0.012251432053744793, 0.05543399229645729, -0.05480938404798508, 0.009733480401337147, -0.0007034976733848453, -0.02536170184612274, -0.0022349266801029444, 0.012882547453045845, 0.05522578954696655, -0.05579834431409836, 0.07604606449604034, -0.023084484040737152, 0.06412645429372787, -0.005536892917007208, -0.039844807237386703, 0.04325412958860397, 0.01601860113441944, -0.0029945415444672108, 0.035784851759672165, -0.03195912763476372, -0.008360642939805984, 0.04338425397872925, 0.028758009895682335, -0.0023796928580850363, 0.026129448786377907, 0.03940237686038017, 0.0469757542014122, -0.047990743070840836, -0.06735359877347946, 0.01769723743200302, 0.029018262401223183, 0.04429514333605766, -0.014925536699593067, 0.0031458139419555664, -0.0011971660424023867, -0.00826304778456688, -0.01384548470377922, 0.008959226310253143, -0.018569085747003555, -0.012518192641437054, -0.049630340188741684, -0.044789623469114304, -0.017736274749040604, 0.029538769274950027, -0.0035784852225333452, -0.02606438659131527, -0.07214226573705673, 0.020533999428153038, -0.04773048684000969, -0.02927851676940918, 0.01993541605770588, 0.021327773109078407, 0.05460118129849434, -0.03492601588368416, -0.028081350028514862, 0.03646151348948479, -0.05762011930346489, -0.043540406972169876, 0.010963178239762783, 0.009004770778119564, -0.039532504975795746, 0.015901487320661545, -0.022082507610321045, 0.01154874823987484, -0.019753238186240196, 0.008224009536206722, -0.1104515790939331, -0.04192683473229408, 0.032323483377695084, 0.00907634012401104, -0.039532504975795746, -0.003952599596232176, 0.03146464377641678, 0.06620848178863525, -0.005832931026816368, 0.04083377122879028, 0.006411995273083448, 0.019128629937767982, -0.06162802502512932, 0.05275338143110275, -0.033156294375658035, -0.004678056109696627, 0.0017778566107153893, 0.019909391179680824, 0.04080774635076523, -0.005423031747341156, -0.01750204712152481, 0.033208344131708145, -0.0031555735040456057, -0.0064347670413553715, -0.023904282599687576, -0.021692126989364624, -0.05980625003576279, 0.05741191655397415, -0.03768470510840416, 0.007788085378706455, -0.08593569695949554, -0.010839557275176048, 0.002796098357066512, -0.003432092722505331, -0.013611257076263428, 0.0007559549994766712, 0.03198515251278877, -0.08374956995248795, -0.014925536699593067, -0.026780083775520325, -0.00492204399779439, 0.006249336525797844, -0.033911027014255524, -0.03544652462005615, 0.05449707806110382, -0.02685815840959549, 0.03635741025209427, -0.031048240140080452, -0.008842111565172672, 0.02368306741118431, 0.0018396667437627912, 0.0016737552359700203, -0.02285025455057621, -0.006281868554651737, -0.002301616594195366, -0.03031953051686287, 0.015836423262953758, -0.003357269801199436, -0.043150026351213455, 0.002078774617984891, 0.020690152421593666, 0.055850397795438766, 0.01705961488187313, -0.012296976521611214, -0.0057516018860042095, 0.012277457863092422, 0.0002378879435127601, -0.01058581005781889, -0.0025521107017993927, 0.012453128583729267, 0.049734439700841904, 0.010670392774045467, -0.011412114836275578, -0.001872198423370719, -0.05077545344829559, -0.004323461093008518, -0.042551442980766296, -0.03492601588368416, 0.042213115841150284, -0.010364594869315624, -0.018634149804711342, 0.024450814351439476, -0.04041736572980881, -0.029538769274950027, -0.07724323123693466, -0.011939127929508686, -0.07443249225616455, -0.009922163560986519, -0.008516795001924038, -0.07594196498394012, 0.036669716238975525, 0.01918068155646324, 0.012010698206722736, 0.022368786856532097, -0.016838399693369865, -0.01769723743200302, -0.02611643634736538, -0.006050893571227789, -0.013637281954288483, 0.02917441539466381, -0.011835026554763317, -0.01329895295202732, -0.05918164178729057, 0.001707913470454514, 0.029304541647434235, -0.01815268024802208, -0.008549327030777931, 0.0098896324634552, 0.0028481490444391966, -0.0006335545913316309, -0.033911027014255524, 0.04242131859064102, -0.017489034682512283, 0.014990600757300854, 0.03208925575017929, -0.018217744305729866, 0.02150994911789894, 0.03146464377641678, -0.057099614292383194, 0.024294661357998848, 0.01031254418194294, 0.03250566124916077, 0.004056700970977545, -0.032765913754701614, 0.022772179916501045, -0.014248877763748169, -0.059025488793849945, 0.0017583376029506326, 0.008698972873389721, 0.0530136339366436, 0.05335196480154991, 0.006818640977144241, -0.007592895068228245, 0.05631885305047035, -0.01646103337407112, 0.022824229672551155, 0.020169643685221672, -0.018165692687034607, -0.019362859427928925, -0.02943466790020466, 0.012667838484048843, -0.024502864107489586, -0.024060433730483055, -0.09603353589773178, -0.008594871498644352, 0.007228540256619453, -0.0018819579854607582, -0.06240878254175186, -0.020117593929171562, 0.02818545140326023, -0.016148729249835014, -0.010605329647660255, 0.020859315991401672, 0.03219335526227951, 0.0091999601572752, -0.01394958607852459, -0.03888186812400818, 0.015706297010183334, 0.014235865324735641, -0.016825387254357338, 0.004167309030890465, 0.013507155701518059, 0.05480938404798508, 0.027769045904278755, -0.007918211631476879, -0.035082168877124786, 0.06053495779633522, -0.03297411650419235, 0.017788324505090714, 0.03305219113826752, 0.004909031093120575, -0.023370763286948204, 0.04955226182937622, -0.03648753836750984, -0.004853727295994759, 0.011789483018219471, -0.03180297464132309, 0.006272108759731054, -0.06339775025844574, 0.02175719104707241, -0.02353992685675621, -0.024099472910165787, 0.0004330780648160726, 0.013741383329033852, -0.07151765376329422, 0.01755409687757492, -0.00312141515314579, -0.026936234906315804, -0.033650774508714676, -0.007137451786547899, 0.026936234906315804, -0.02126270905137062, 0.050124820321798325, 0.05965009704232216, -0.052597228437662125, -0.02616848796606064, 0.0006860119174234569, -0.05124390870332718, 0.02461997978389263, 0.004508891608566046, 0.05171236768364906, -0.021692126989364624, -0.050020717084407806, -0.004593473859131336, 0.05470528081059456, -0.01918068155646324, 0.017632173374295235, -0.04031326249241829, 0.021679114550352097, 0.013962599448859692, -0.04278567060828209, -0.009752999059855938, -0.02170513942837715, -0.01954503543674946, 0.028549807146191597, 0.09421175718307495, 0.012719889171421528, -0.012999661266803741, -0.03411922976374626, 0.00598582997918129, 0.013533180579543114, 0.017423970624804497, -0.06574002653360367, 0.0197792649269104, 0.03417128324508667, 0.014899511821568012, 0.009603353217244148, -0.049135856330394745, -0.04689767584204674, -0.03742444887757301, -0.062200579792261124, 0.006015108432620764, 0.036227285861968994, 0.013494143262505531, 0.022811217233538628, 0.007723021786659956, 0.02419055998325348, 0.009935176931321621, -0.010579303838312626, -0.02709238789975643, 0.005667019635438919, 0.03162079676985741, -0.03786688297986984, -0.0477825403213501, -0.04015711322426796, 0.014873486012220383, 0.036123182624578476, -0.010253987275063992, -0.03510819375514984, -0.030475681647658348, 0.002766819903627038, -0.011236444115638733, 0.016200779005885124, -0.027769045904278755, 0.044789623469114304, -0.04536218196153641, -0.012745914049446583, 0.04536218196153641, -0.005845943931490183, -0.0007323695463128388, 0.019805289804935455, 0.04328015446662903, -0.01626584306359291, 0.03851751610636711, 0.008399681188166142, -0.024359725415706635, -0.04538820683956146, -0.005523880012333393, -0.056110650300979614, -0.04437321797013283, 0.01244011614471674, -0.008829099126160145, -0.029538769274950027, 0.027951223775744438, 0.03948045149445534, -0.0499686673283577, 0.0259602852165699, 0.02106751874089241, 0.015901487320661545, 0.007957249879837036, -0.036331385374069214, 0.014392017386853695, -0.01720275543630123, -0.04005300998687744, 0.00030193469137884676, -0.020208682864904404, -0.001960034016519785, -0.010969684459269047, -0.009518771432340145, 0.01384548470377922, 0.023904282599687576, 0.007755553815513849, -0.01642199419438839, -0.013285940513014793, -0.0047723981551826, 0.022681090980768204, 0.0045869676396250725, 0.0059988428838551044, 0.04653332382440567, 0.02943466790020466, -0.05077545344829559, -0.024203574284911156, 0.005458816885948181, 0.005091208498924971, -6.994312570896e-05, 0.015589183196425438, -0.048042792826890945, 0.03065785951912403, -0.007514819037169218, 0.03393705189228058, -0.006600678898394108, 0.06063906103372574, 0.012257939204573631, -0.023305699229240417, -0.01433996669948101, -0.01147717796266079, -0.02730059064924717, -0.020104581490159035, 0.008913681842386723, 0.04273362085223198, -0.01568027213215828, 0.018087616190314293, -0.011620317585766315, -0.003724877955392003, -0.010911127552390099, 0.04882355406880379, 0.04080774635076523, 0.005575930699706078, 0.015315917320549488, 0.030475681647658348, -0.002779832575470209, 0.014118751510977745, -0.01621379144489765, -0.059077538549900055, 0.028211476281285286, 0.009291049093008041, -0.0013638909440487623, 0.023058457300066948, 0.01794447749853134, -0.015459056943655014, 0.012427103705704212, -0.009212973527610302, -0.035186272114515305, -0.07531736046075821, 0.006301387213170528, 0.016382956877350807, 0.031074265018105507, 0.011119330301880836, -0.00769049022346735, -0.010696417652070522, 0.015693284571170807, 0.023722104728221893, -0.020169643685221672, -0.024463826790452003, 0.006734058726578951, -0.042499393224716187, -0.019310807809233665, 0.008328110910952091, -0.03115234151482582, 0.00703335041180253, 0.012114799581468105, 0.03437948599457741, -0.014496118761599064, 0.0039591058157384396, -0.01244011614471674, 0.012231913395226002, -0.05991034954786301, -0.016109690070152283, -0.009766011498868465, -0.008015806786715984, -0.035082168877124786, -0.026623930782079697, 0.0019031035481020808, 0.007749047130346298, -0.034587688744068146, 0.022681090980768204, 0.04158850759267807, 0.0321413055062294, 0.04910983145236969, 0.005510867573320866, -0.02823750302195549, -0.027066361159086227, 0.010865583084523678, -0.02443780191242695, -0.012453128583729267, 0.0002938017714768648, -0.0036890930496156216, -0.0005786573165096343, 0.07927320897579193, -0.011861052364110947, -0.0111258365213871, -0.04398283734917641, 0.01968817599117756, -0.052545178681612015, -0.0013882896164432168, 0.024698054417967796, -0.04445129260420799, -0.05108775943517685, 0.016057640314102173, -0.00498385401442647, 0.026532841846346855, 0.037164196372032166, -0.0011735805310308933, -0.01997445523738861, 0.0077425409108400345, -0.06339775025844574, 0.022121544927358627, -0.014365991577506065, 0.008907175622880459, 0.022629039362072945, -0.025843169540166855, 0.021522963419556618, 0.07406813651323318, 0.010969684459269047, 0.028263527899980545, -0.04741818457841873, -0.0018787047592923045, -0.015068676322698593, 0.021588025614619255, -0.010559785179793835, 0.03940237686038017, -0.009473226964473724, -0.009551302529871464, 0.037658680230379105, -0.045284103602170944, -0.003637042362242937, -0.012850015424191952, -0.029538769274950027, -0.05741191655397415, -0.03081401251256466, 0.036123182624578476, 0.0012589761754497886, -0.02477613091468811, 0.018113642930984497, 0.017423970624804497, -0.014379004947841167, 0.0025830157101154327, -0.015042651444673538, 0.003344257129356265, -0.008171958848834038, -0.0332343690097332, -0.047548308968544006, 0.0022446862421929836, 0.005419778637588024, -0.034795891493558884, -0.055850397795438766, -0.03989685699343681, 0.004125017672777176, -0.01933683268725872, 0.014522144570946693, 0.0015216695610433817, 0.019505998119711876, 0.042265165597200394, 0.034639738500118256, 0.05147813633084297, 0.0028335098177194595, 0.009922163560986519, -0.014678296633064747, 0.008347630500793457, -0.006288374774158001, 0.014027662575244904, 0.021249696612358093, -0.008217503316700459, -0.00754084438085556, -0.0012776819057762623, 0.006714539602398872, -0.03575882688164711, -0.01691647619009018, 0.018165692687034607, 0.012388065457344055, 0.007859654724597931, -0.0008498902898281813, 0.005175791215151548, 0.0035134218633174896, -0.012153837829828262, 0.00447636004537344, 0.0208723284304142, 0.011451153084635735, -0.004814689513295889, 0.007560363505035639, 0.017580121755599976, 0.023474864661693573, -0.018517034128308296, -0.015797385945916176, -0.03151669725775719, 0.00679912231862545, 0.02443780191242695, -0.042759645730257034, 0.04138030484318733, 0.04135427623987198, 0.03888186812400818, -0.01540700625628233, 0.017189742997288704, 0.04242131859064102, 0.0005823171813972294, 0.04788663983345032, -0.028081350028514862, -0.01998746767640114, -0.008705479092895985, 0.009102365002036095, -0.003611017018556595, -0.027821097522974014, 0.010728949680924416, -0.027482766658067703, -0.0018770782044157386, -0.010527253150939941, -0.01578437350690365, -0.011685381643474102, 0.011164873838424683, 0.04504987597465515, -0.005234348122030497, 0.003607763908803463, -0.012186368927359581, 0.007924718782305717, 0.008419199846684933, -0.02408645860850811, 0.004460094030946493, -0.01322738267481327, -0.023006407544016838, 0.029903125017881393, 0.013188345357775688, -0.0050001200288534164, -0.015550144948065281, -5.2965649956604466e-05, 0.01884235255420208, -0.022485900670289993, 0.0033377509098500013, -0.02325364761054516, -0.04955226182937622, -0.013728370890021324, 0.013507155701518059, 0.00942117627710104, -0.023409800603985786, -0.003519928315654397, -0.032115280628204346, 0.019011516124010086, 0.022576989606022835, -0.007332641631364822, 0.009486239403486252, 0.04812086746096611, -0.004082726314663887, -0.054965533316135406, -0.004775651264935732, -0.0234878771007061, -0.05392451956868172, 0.004056700970977545, -0.017541084438562393, -0.029512744396924973, -0.007560363505035639, 0.04075569659471512, -0.008282567374408245, -0.020833291113376617, 0.013351003639400005, 0.01018892414867878, 0.030033251270651817, 0.022121544927358627, -0.00471058813855052, -0.023878255859017372, 0.008002794347703457, 0.009128390811383724, -0.012479154393076897, 0.04244734346866608, 0.01928478293120861, 0.0006237950292415917, 0.010071809403598309, 0.019714200869202614, 0.021093543618917465, -0.032219380140304565, 0.027560843154788017, 0.004242131486535072, 0.009167429059743881, 0.0378929078578949, -0.003020566888153553, 0.0051009682938456535, -0.013025687076151371, 0.004014410078525543, -0.026988286525011063, 0.024841194972395897, 0.0071569704450666904, -0.006668995600193739, 0.04138030484318733, 0.008243529126048088, -0.015589183196425438, -0.02933056652545929, -0.05004674568772316, -0.04676755145192146, -0.0160706527531147, -0.032219380140304565, -0.009759505279362202, 0.006805628538131714, 0.012876041233539581, 9.276613127440214e-05, -0.04976046457886696, 0.02096341736614704, 0.009629379026591778, -0.015289891511201859, -0.03466576337814331, -0.013455105014145374, -0.039584554731845856, 0.020065542310476303, 0.015719309449195862, -0.045180004090070724, 0.012941104359924793, 0.004222612828016281, -0.01721576787531376, 0.010924139991402626, 0.005722323432564735, 0.006470552179962397, -0.0027895919047296047, 0.020586051046848297, 0.026988286525011063, -0.03253168612718582, -0.0234878771007061, -0.015094702132046223, -0.005244107451289892, 0.02590823359787464, -0.012889053672552109, -0.03698201850056648, -0.05033302307128906, -0.003108402481302619, -0.019792277365922928, 0.0007327761850319803, 0.032323483377695084, 0.0104361642152071, 0.004098992329090834, 0.025999322533607483, -0.02537471428513527, -0.01417080219835043, -0.031438618898391724, 0.015719309449195862, 0.010982696898281574, 0.022316735237836838, -0.017723262310028076, -0.027118412777781487, -0.03065785951912403, 0.03937635198235512, -0.04598679021000862, 0.01691647619009018, -0.005588943604379892, -0.016981540247797966, -0.023526914417743683, 0.016096677631139755, -0.020000480115413666, 0.009167429059743881, 0.01972721330821514, -0.03557664901018143, -0.012349027208983898, -0.014873486012220383, -0.009974214248359203, 0.018126655369997025, -0.009017783217132092, 0.008542820811271667, -0.019128629937767982, -0.00986360665410757, 0.027873147279024124, -0.02013060636818409, 0.015693284571170807, -0.04890162870287895, -0.0034093204885721207, -0.022915318608283997, -0.01370234601199627, -0.04845919832587242, -0.025778107345104218, 0.029148390516638756, -0.022720128297805786, 0.010598822496831417, 0.01893344148993492, -0.02294134348630905, -0.012693863362073898, -0.02567400597035885, 0.01100872177630663, 0.01016289833933115, -0.02369607985019684, -0.010084821842610836, 0.005081449169665575, 0.0009539916645735502, 0.01348112989217043, 0.06495926529169083, 0.023565951734781265, -0.01795748993754387, -0.015042651444673538, 0.020885340869426727, 0.006792615633457899, -0.019505998119711876, -0.014235865324735641, 0.013689332641661167, 0.016903463751077652, 0.005963057745248079, 0.005331943277269602, -0.012563737109303474, -0.03193310275673866, -0.01444406807422638, -0.0420309379696846, -0.037216246128082275, 0.011965153738856316, -0.012615787796676159, -0.021197644993662834, 0.0031490670517086983, 0.01755409687757492, 0.010182416997849941, -0.0014346472453325987, 0.0029668896459043026, 0.016773337498307228, -0.003031953005120158, -0.01603161357343197, -0.044789623469114304, -0.010644366964697838, -0.0302154291421175, -0.011756950989365578, -0.028810059651732445, 0.01100872177630663, -0.02556990459561348, -0.034587688744068146, 0.014769384637475014, -0.02943466790020466, 0.001297200913541019, -0.04674152657389641, -0.01597956381738186, 0.04437321797013283, 0.008646922186017036, -0.01894645392894745, -0.01097619067877531, -0.010006746277213097, -0.008302086032927036, -0.019427921622991562, 0.005048917606472969, -0.020547011867165565, 0.005972817540168762, 0.02329268679022789, -0.0034873965196311474, -0.027040336281061172, 0.0016599291702732444, 0.005201816558837891, -0.005566171370446682, -0.004105498548597097, -0.036227285861968994, 0.0013907295651733875, -0.0007994661573320627, 0.028627881780266762, -0.04583063721656799, 0.000327960035065189, -0.006877198349684477, -0.020547011867165565, -0.023110508918762207, 0.012947610579431057, -0.003640295471996069, -0.014248877763748169, -0.0016550495056435466, -0.011555254459381104, 0.014795410446822643, -0.013806447386741638, 0.0034385991748422384, 0.0007783205364830792, 0.02389127016067505, 0.05673525854945183, 0.0026903704274445772, -0.025830157101154327, -0.0527273565530777, 0.008757529780268669, -0.007202514912933111, 0.025062410160899162, -0.029070314019918442, 0.000787673401646316, 0.004456840921193361, -0.023019419983029366, -0.011874064803123474, 0.008178465999662876, -0.009173935279250145, 0.020833291113376617, -0.04190080985426903, -0.0030986429192125797, 0.029018262401223183, -0.010969684459269047, 0.0065453751012682915, -0.010332062840461731, -0.001001162570901215, 0.010839557275176048, -0.0047723981551826, -0.001813641400076449, 0.0025521107017993927, -0.00421610614284873, -0.014248877763748169, -0.0028692944906651974, -0.013624269515275955, 0.016382956877350807, -0.015888474881649017, 0.010273505933582783, -0.01843895949423313, -0.038257259875535965, -0.02078123949468136, -0.004736613482236862, 0.05257120355963707, 0.005162778310477734, 0.0076774777844548225, 0.0046194992028176785, 0.05564219504594803, 0.04580461233854294, 0.005640994291752577, 0.011555254459381104, -0.023006407544016838, -0.06157597154378891, 0.04484167322516441, -0.0038224728778004646, 0.007521325722336769, 0.00892669428139925, 0.04752228409051895, -0.002343907952308655, 0.010605329647660255, -0.002195888664573431, -0.042265165597200394, -0.008425706066191196, 0.03318231925368309, -0.010032771155238152, 0.04015711322426796, -0.026285601779818535, 0.003199491184204817, -0.006470552179962397, -0.007859654724597931, -0.019063567742705345, 0.019662151113152504, -0.0001036439134622924, -0.014600220136344433, 0.018530048429965973, 0.007553857285529375, 0.019258758053183556, -0.0020982937421649694, -0.014652270823717117, -0.007209021132439375, -0.004726853687316179, 0.0354204997420311, -0.04723600670695305, -0.025752082467079163, 0.015589183196425438, -0.03346859663724899, -0.009141403250396252, 0.00432671420276165, -0.007007325068116188, 0.018868377432227135, 0.025192536413669586, -0.01357221882790327, -0.021588025614619255, 0.04603883996605873, 0.03750252723693848, -0.03812713548541069, -0.03357269987463951, 0.030475681647658348, 0.010410139337182045, 0.0329480916261673, -0.0019209960009902716, -0.011255962774157524, -0.011809001676738262, 0.0023927055299282074, 0.007625427097082138, 0.004713841248303652, 0.005455563776195049, -0.0015395620139315724, -0.005113980732858181, -0.017983514815568924, -0.016252830624580383, 0.008197984658181667, -0.011405608616769314, 0.03560267761349678, 0.022095520049333572, 0.016903463751077652, 0.018321845680475235, -0.008770542219281197, 0.020859315991401672, 0.0041347770020365715, -0.032870013266801834, 0.01601860113441944, 0.03367679938673973, 0.03268783539533615, 0.02082027867436409, -0.034353457391262054, 0.009954695589840412, 0.02532266266644001, 0.008302086032927036, -0.00811340194195509, 0.03125644102692604, 0.021744178608059883, 0.0036598145961761475, 0.0006729992455802858, -0.0034841434098780155, 0.012498673051595688, -0.011620317585766315, -0.02943466790020466, 0.03136054426431656, -0.01011735387146473, -0.001872198423370719, 0.020455922931432724, 0.015146752819418907, -0.009434188716113567, 0.02606438659131527, 0.01603161357343197, -0.01622680388391018, 0.057672169059515, 0.0464031957089901, -0.00959034077823162, -0.026884185150265694, 0.02186129242181778, -0.015042651444673538, 0.026728032156825066, -0.0129085723310709, 0.01184803992509842, 5.667629375238903e-05, 0.002991288434714079, -0.021718153730034828, 0.0007429423276335001, 0.011106316931545734, 0.03130849450826645, 0.025478815659880638, -0.017189742997288704, 0.023058457300066948, 0.014196827076375484, 0.030683884397149086, -0.03401513025164604, 0.010637860745191574, 0.01617475412786007, 0.002786338794976473, 0.050020717084407806, 0.017228780314326286, 0.004811436403542757, 0.002992914989590645, 0.006063906010240316, 0.027508793398737907, 0.0016867679078131914, -0.03081401251256466, -0.020195670425891876, -0.0026171740610152483, -0.013559206388890743, 0.0016135715413838625, -0.008861631155014038, 0.005605209153145552, -0.006786109413951635, -0.009141403250396252, 0.007130945101380348, 0.047600362449884415, -0.017788324505090714, 0.013240396045148373, 0.0035361940972507, -0.004095739219337702, 0.0008612763485871255, 0.0012833749642595649, 0.01510771457105875, 0.005445803981274366, -0.021522963419556618, 0.01780133880674839, 0.0354204997420311, 0.04351438209414482, 0.023852230980992317, 0.017085641622543335, -0.03362474963068962, -0.044477321207523346, 0.021991418674588203, -0.00888114981353283, -0.01705961488187313, -0.04536218196153641, 0.0296688973903656, 0.017970502376556396, -0.029903125017881393, 0.03203720226883888, 0.009115378372371197, 0.03466576337814331, 0.021718153730034828, -0.0018608124228194356, -0.010807025246322155, -0.022030457854270935, 0.0005022078985348344, -0.0015704671386629343, -0.049786489456892014, -0.026350663974881172, -0.021054506301879883, -0.008224009536206722, -0.01676032319664955, 0.0031279216054826975, -0.04554435983300209, 0.014313940890133381, 0.014782398007810116, 0.015615209005773067, 0.003137680934742093, -0.04499782621860504, 0.0052701327949762344, 0.010767987929284573, -0.0056897918693721294, -0.02294134348630905, -0.010052290745079517, 0.051061730831861496, -0.002810737583786249, -0.004398284014314413, 0.014183814637362957, -0.022837242111563683, -0.04151042923331261, -0.028211476281285286, 0.015524120070040226, -0.0016737552359700203, 0.0038875362370163202, 0.04299387335777283, -0.002989661879837513, -0.027274563908576965, 0.005214828997850418, -0.002561870263889432, 0.018660174682736397, 0.020937392488121986, -0.019167669117450714, -0.03942840173840523, 0.025231575593352318, -0.0001389712851960212, 0.02987710013985634, -0.004769145045429468, 0.01491252426058054, 0.013279433362185955, 0.0044503347016870975, 0.030189404264092445, 0.02546580322086811, 0.051608264446258545, 0.003754156408831477, -0.013272927142679691, -0.016044627875089645, 0.034249357879161835, 0.007657958660274744, 0.006239577196538448, 0.03877776861190796, -0.0011979793198406696, 0.012056242674589157, 0.0296688973903656, -0.004095739219337702, 0.005527133122086525, 0.017515059560537338, 0.01557617075741291, -0.00165098300203681, -0.01968817599117756, -0.004902524873614311, 0.03146464377641678, -0.0011499950196594, -0.03247963264584541, -0.020351821556687355, -0.01933683268725872, -0.0014305808581411839, 0.014990600757300854, 0.011392596177756786, 0.0031604531686753035, 0.018803313374519348, 0.02180924080312252, 0.02491927146911621, 0.03856956586241722, -0.0014159416314214468, 0.016382956877350807, -0.03198515251278877, 0.008744517341256142, 0.005322183482348919, -0.028029300272464752, -0.008276060223579407, -0.015758348628878593, 0.030527733266353607, 0.038543540984392166, 0.0032791937701404095, -0.012700369581580162, -0.011756950989365578, -0.0016387836076319218, -0.011470671743154526, -0.0002641166211105883, 0.06860281527042389, 0.010702923871576786, -0.016200779005885124, -0.015250854194164276, 0.03162079676985741, -0.010514240711927414, 0.012414091266691685, -0.023865243420004845, 0.006721046287566423, 0.003311725566163659, -0.008516795001924038, 0.028862111270427704, 0.023709092289209366, 0.006961780600249767, -0.014222852885723114, 0.0017453249311074615, 0.024398762732744217, 0.025504840537905693, 0.010911127552390099, -0.005865462590008974, 0.01206274889409542, -0.041015949100255966, 0.014392017386853695, -0.025895221158862114, 0.02240782417356968, -0.020299771800637245, -0.01441804226487875, -0.0029229719657450914, -0.007950743660330772, 0.006451033055782318, -0.01726781763136387, 0.01893344148993492, -0.018334858119487762, -0.0245809406042099, 0.009811555966734886, -0.03206322714686394, -0.003627282800152898, -0.016096677631139755, 0.020208682864904404, 0.0007071574800647795, 0.009603353217244148, -0.01914164423942566, -0.032375533133745193, 0.02625957690179348, 0.007586388848721981, 0.022433849051594734, 0.01700756512582302, -0.005449057091027498, 0.026988286525011063, -0.018191717565059662, 0.011216924525797367, -0.010592316277325153, -0.040625568479299545, -0.01850402168929577, -0.004430815577507019, -0.00862740259617567, 0.0037931944243609905, -0.026675982400774956, -0.023357748985290527, -0.0028611617162823677, 0.05184249207377434, 0.003506915643811226, -0.04838111996650696, 0.02709238789975643, 0.013468117453157902, 0.009642391465604305, -0.012837002985179424, -0.03987083211541176, -0.007358666975051165, 0.004235625267028809, 0.009935176931321621, -0.014379004947841167, 0.016278855502605438, -0.005637741181999445, -0.01246614195406437, 0.003222263418138027, -0.007182995788753033, 0.02269410341978073, -0.016200779005885124, -0.031178366392850876, -0.013689332641661167, -0.026233550161123276, 0.010689911432564259, 0.01676032319664955, -0.024398762732744217, 0.001089811441488564, -0.00532869016751647, 0.023774154484272003, 0.012667838484048843, 0.003461371175944805, -0.015615209005773067, -0.0022999900393188, 0.025556892156600952, -0.006490071304142475, 0.008959226310253143, 0.020481949672102928, -0.015719309449195862, -0.051061730831861496, 0.0442170649766922, -0.01127548236399889, 0.0009401657152920961, -0.011620317585766315, 0.01039061974734068, 0.031074265018105507, 0.009850594215095043, -0.00966841634362936, 0.014652270823717117, 0.012797964736819267, -0.006106197368353605, -0.018803313374519348, -0.012524698860943317, 0.0005257933516986668, 0.002563496818765998, -0.014483106322586536, -0.021041493862867355, 0.0009531783871352673, -0.00843221228569746, -0.0359930545091629, -0.01233601476997137, -0.007976769469678402, -0.023618003353476524, -0.01357221882790327, 0.024450814351439476, -7.18746887287125e-05, -0.01162682380527258, 0.035134218633174896, -0.031178366392850876, 0.022759167477488518, 0.00197142013348639, -0.014040675014257431, 0.013988624326884747, -0.003910308703780174, 0.030293505638837814, -0.0065063368529081345, 0.0023357749450951815, -0.0302154291421175, 0.010800519026815891, -0.020560024306178093, 0.005995589308440685, 0.022576989606022835, -0.014483106322586536, -0.0020429897122085094, -0.04138030484318733, -0.021353797987103462, 0.000988149899058044, 0.006239577196538448, -0.016187766566872597, -0.022173596546053886, -0.018035566434264183, 0.02461997978389263, -0.015016625635325909, 0.024060433730483055, -0.018373895436525345, -0.010143379680812359, 0.062044430524110794, 0.014964574947953224, 0.005383993964642286, 0.0055791838094592094, 0.046012815088033676, -0.009173935279250145, -0.008126415312290192, 0.016747310757637024, 0.010377607308328152, -0.007378186099231243, 0.0032759406603872776, -0.024463826790452003, 0.007820617407560349, 0.011769963428378105, 0.023904282599687576, -0.02027374692261219, -0.0190895926207304, -0.02659790590405464, 0.03448358550667763, 0.015055663883686066, -0.021132582798600197, -0.014405029825866222, 0.015472069382667542, 0.026051374152302742, -0.030293505638837814, -0.037814829498529434, 0.022616026923060417, 0.006766590289771557, -0.006044386886060238, -0.024372737854719162, 0.013416066765785217, 0.006200538948178291, -0.00309051014482975, -0.027821097522974014, 0.0003600850759539753, -0.010494721122086048, 0.03536844626069069, -0.025400739163160324, 0.038257259875535965, -0.0018526794156059623, -0.04049544036388397, -0.01647404581308365, 0.043097976595163345, 0.0010271879145875573, -0.0012475900584831834, 0.0041022454388439655, -0.007768566254526377, -0.0135982446372509, -0.031828999519348145, 0.0135982446372509, -0.009278036653995514, -0.019519010558724403, -0.003815966658294201, -0.008790060877799988, -0.011789483018219471, 0.02709238789975643, 0.0019340086728334427, 0.022668078541755676, -0.003841992001980543, 0.02052098698914051, 0.0012061122106388211, 0.00521808210760355, 0.02477613091468811, -0.008490770123898983, -0.009707454591989517, -0.01189358439296484, -0.03495204076170921, -0.0010263746371492743, 0.03594100475311279, -0.057099614292383194, -0.017384933307766914, 0.015940526500344276, -0.007137451786547899, -0.012433609925210476, -0.003179972292855382, -0.013832472264766693, 0.00604763999581337, -0.01721576787531376, 0.022121544927358627, -0.038101110607385635, -0.023969344794750214, 0.003988384734839201, -0.017384933307766914, -0.007143958006054163, 0.0010255613597109914, -0.002168236766010523, 0.004866740200668573, -0.016903463751077652, -0.013468117453157902, -0.025934258475899696, -0.009310567751526833, 0.02150994911789894, -0.03273988887667656, -0.01884235255420208, -0.012505179271101952, -0.02249891310930252, 0.000265133217908442, -0.01260928064584732, -0.017866401001811028, -0.022134559229016304, 0.04187478497624397, -0.015354955568909645, -0.01557617075741291, 0.0071960086934268475, -0.02691021002829075, -0.014574195258319378, -0.016500070691108704, -0.07261072099208832, 0.009980720467865467, 0.03804905712604523, -0.002251192694529891, 0.00654212199151516, -0.02165308967232704, 0.017593136057257652, -0.02255096472799778, -0.04085979610681534, -0.002989661879837513, 0.0265068169683218, -0.011060772463679314, -0.037606626749038696, -0.04125017672777176, -0.001457419479265809, -0.005341702606528997, 0.0017713502747938037, 0.005351461935788393, 0.013324977830052376, -0.03427538275718689, 0.027612894773483276, -0.028029300272464752, 0.0010995710035786033, 0.007078894414007664, -0.006216804962605238, -0.016408981755375862, -0.01246614195406437, 0.009987227618694305, -0.011581280268728733, -0.00877704843878746, -0.0035557132214307785, 0.0033198583405464888, 0.024958308786153793, -0.01508168876171112, 0.03492601588368416, 0.0009369125473313034, 0.0321413055062294, 0.008594871498644352, -0.01958407461643219, -0.03344257175922394, -0.023800181224942207, 0.005045664496719837, 0.00683816010132432, 0.02166610211133957, 0.01859511062502861, -0.008224009536206722, 0.01735890656709671, -0.007957249879837036, -0.021601038053631783, -0.014261890202760696, -0.02477613091468811, 0.012960623018443584, -0.006190779618918896, -0.01295411679893732, -0.011301507242023945, -0.015016625635325909, -0.017723262310028076, 0.022915318608283997, 0.025504840537905693, -0.002391078742220998, -0.014196827076375484, 0.02338377572596073, -0.044789623469114304, -0.024867219850420952, 8.1024227256421e-05, 0.001412688405252993, -0.01124945655465126, -0.0010849316604435444, 0.032115280628204346, -0.014457080513238907, 0.013390041887760162, -0.02200443111360073, -0.05527783930301666, -0.004170562140643597, -0.006444526836276054, -0.011164873838424683, -0.00745626213029027, 0.00641524838283658, -0.017189742997288704, 0.04734010621905327, 0.023904282599687576, -0.009160922840237617, 0.0014362739166244864, 0.017098654061555862, 0.0043494864366948605, 0.034353457391262054, 0.013429079204797745, -0.04437321797013283, 0.01622680388391018, 0.02912236377596855, 0.03450961038470268, -0.04445129260420799, -0.028107374906539917, 0.016057640314102173, -0.024515878409147263, 0.0392722487449646, 0.00946672074496746, 0.022863268852233887, -0.05637090280652046, -0.020755214616656303, 0.04153645411133766, -0.02961684577167034, 0.02378716878592968, 0.008165452629327774, 0.025257600471377373, -0.03961057960987091, 0.0033832951448857784, -0.012192875146865845, -0.0011085171718150377, -0.0008352510049007833, 0.004544676281511784, 0.0022007685620337725, 0.007892186753451824, -0.017684223130345345, -0.046559348702430725, -0.011724418960511684, -0.018087616190314293, -0.03833533823490143, 0.03500409424304962, 0.0406515933573246, -0.016487058252096176, 0.016604172065854073, -0.03245360776782036, 0.030553758144378662, -0.010833051055669785, 0.009785531088709831, 0.0141447763890028, 0.021353797987103462], [0.0652129277586937, 0.014775188639760017, 0.01023419015109539, 0.030117232352495193, -0.052939292043447495, -0.002256635809317231, -0.019913848489522934, 0.01719048246741295, 0.016180003061890602, 0.003992628306150436, -0.014232980087399483, 0.021232401952147484, -0.015748700127005577, -0.03125094249844551, 0.014232980087399483, 0.018546003848314285, -0.030930545181035995, 0.02034515142440796, -0.009106642566621304, 0.01450408436357975, -0.039359427988529205, 0.07349393516778946, -0.030141878873109818, -0.04695035144686699, -0.017289066687226295, -0.022156622260808945, 0.007399917580187321, -0.008977252058684826, 0.059889424592256546, -0.03423308953642845, 0.09173186868429184, -0.023413561284542084, 0.05072116479277611, -0.04258803278207779, -0.015021647326648235, 0.02809627167880535, -0.0035089533776044846, 0.03857076168060303, 0.0386446975171566, -0.014306917786598206, 0.0033087057527154684, 0.028761710971593857, 0.025138769298791885, 0.02144189178943634, 0.0018391967751085758, 0.05486166849732399, 0.02992006577551365, -0.03664838522672653, -0.06195967271924019, 0.03176850453019142, 0.017695723101496696, 0.004242167342454195, -0.012156566604971886, -0.015391334891319275, 0.02952573262155056, 0.011343253776431084, -0.01720280572772026, 0.024165259674191475, 0.00266483286395669, -0.03640192374587059, -0.015354366041719913, 0.004008031915873289, 0.01072094589471817, 0.032014962285757065, -0.016635950654745102, -2.5103148800553754e-05, -0.00012342180707491934, 0.0632905513048172, -0.05318574979901314, 0.007498500868678093, 0.004879878833889961, -0.030831962823867798, 0.03371552750468254, -0.025878146290779114, -0.000946554820984602, -0.004728923086076975, -0.030117232352495193, 0.01418368797749281, 0.013567541725933552, -0.007775766775012016, -0.0038539953529834747, -0.018447421491146088, -0.010117122903466225, 0.028342731297016144, -0.044288598001003265, 0.053284335881471634, -0.06457213312387466, -0.03366623446345329, 0.006913161836564541, 0.027307605370879173, 0.015157199464738369, -0.0066297343000769615, 0.041602201759815216, 0.040912117809057236, -0.026790041476488113, -0.013752385973930359, 0.05732625350356102, 0.013358051888644695, -0.05382654443383217, 0.06659309566020966, -0.03410986065864563, -0.0035058725625276566, -0.03472600877285004, -0.005191032774746418, 0.08320440351963043, 0.0029898500069975853, -0.04458434879779816, 0.016759179532527924, -0.031103067100048065, 0.0005179480067454278, -0.00957491435110569, 0.0042852978222072124, -0.0290574599057436, 0.05308716744184494, -0.01513255387544632, 0.023524466902017593, -0.06274834275245667, -0.021860871464014053, -0.004670388996601105, -0.0019208361627534032, 0.009118965826928616, 0.009427038952708244, 0.022883674129843712, -0.031029129400849342, -0.024510301649570465, -0.04667924717068672, -0.02321639284491539, -0.010184898972511292, -0.019457900896668434, -0.03221213072538376, -0.010610039345920086, -0.034430257976055145, 0.0324585884809494, -0.04248945042490959, 0.023080840706825256, 0.025533104315400124, 0.023586081340909004, 0.0020070967730134726, -0.009975409135222435, -0.015366689302027225, -0.021971777081489563, 0.014639636501669884, 0.003099215915426612, 0.0013955713948234916, -0.026617521420121193, -0.019162150099873543, -0.015403658151626587, 0.02619854174554348, 0.030067941173911095, -0.016081418842077255, -0.07300101965665817, -0.010942758992314339, -0.01742461882531643, 0.019100535660982132, -0.0378313846886158, -0.014910740777850151, 0.006839224137365818, 0.02688862569630146, 0.011620519682765007, -0.004732003901153803, -0.0543687529861927, 0.024276165291666985, -0.041602201759815216, -0.02836737595498562, 0.015428303740918636, -0.035810425877571106, -0.009279163554310799, 0.04069030284881592, -0.06151605024933815, 0.013296437449753284, -0.05096762254834175, -0.04443647339940071, -0.025360582396388054, 0.05313646048307419, -0.034775298088788986, -0.057129088789224625, 0.012224342674016953, -0.0076956674456596375, 0.020308183506131172, 0.03497246652841568, 0.003222445258870721, 0.000679301330819726, -0.03189173340797424, -0.0052711316384375095, -0.0185090359300375, -0.004316105041652918, -0.018496712669730186, -0.023290330544114113, -0.002033282769843936, 0.018028441816568375, 0.014294594526290894, -0.06048092246055603, -0.018669234588742256, 0.026617521420121193, -0.008367267437279224, -0.02878635562956333, -0.048231933265924454, -0.021688351407647133, -0.0022427726071327925, 0.030018648132681847, 0.0072890110313892365, -0.04453505575656891, -0.010911951772868633, 0.052544958889484406, -0.07053643465042114, 0.0026987208984792233, 0.009445522911846638, 0.04682712256908417, 0.005184871144592762, 0.013801678083837032, 0.032187484204769135, -0.02619854174554348, -0.011392545886337757, 0.025705624371767044, 0.0325571708381176, -0.011891623958945274, 0.044288598001003265, -0.024091321974992752, 0.017128868028521538, 0.034947820007801056, -0.0289588775485754, -0.015033970586955547, 0.014023490250110626, 0.013690771535038948, -0.005138660315424204, 0.01714119128882885, -0.009710466489195824, -0.04840445518493652, -0.05017895624041557, -0.0773879811167717, -0.02425151877105236, 0.020320506766438484, 0.013197854161262512, -0.02349982038140297, -0.008311813697218895, 0.03112771175801754, -0.013678448274731636, 0.008502819575369358, -0.028934231027960777, -0.010992050170898438, 0.021515829488635063, 0.017560170963406563, -0.020086370408535004, -0.036599092185497284, -0.0127788744866848, -0.028194855898618698, -0.010585393756628036, -0.0018838674295693636, -0.010252675041556358, 0.032655756920576096, 0.009759757667779922, -0.01902659796178341, 0.05870642140507698, -0.04197188839316368, 0.026173895224928856, 0.0053912801668047905, 0.009205225855112076, -0.010628524236381054, -0.00031384953763335943, -0.010653169825673103, 0.011447998695075512, -0.031029129400849342, -0.006118332967162132, -0.04524978622794151, -0.05673475190997124, -0.027529418468475342, -0.010505294427275658, -0.003971063066273928, 0.060678090900182724, 0.004907605703920126, -0.03497246652841568, -0.007646375801414251, -0.026272479444742203, -0.030363690108060837, -0.03359229862689972, 0.024325456470251083, 0.0281455647200346, -0.06728317588567734, 0.006524989381432533, 0.017227450385689735, -0.04396820068359375, -0.0649171769618988, 0.008324136957526207, -0.07516985386610031, 0.03704271838068962, 0.011213863268494606, 0.07620497792959213, -0.062058258801698685, -0.06585372239351273, 0.0019254572689533234, 0.05550245940685272, -0.031226295977830887, -0.011392545886337757, -0.012569384649395943, -0.02602602168917656, -0.018274899572134018, -0.04552089050412178, -0.005899601150304079, -0.027135083451867104, -0.025582395493984222, -0.03566255047917366, 0.04759114235639572, 0.03595830127596855, 0.0806412324309349, 0.016894731670618057, -0.007689506281167269, -0.016475751996040344, -0.04017274081707001, -0.05358008295297623, 0.0081392927095294, 0.027529418468475342, -0.015033970586955547, -0.006826901342719793, -0.03004329465329647, -0.001751395990140736, -0.000618841964751482, -0.02930391952395439, -0.03859540447592735, 0.023290330544114113, -0.007831219583749771, 0.04280984774231911, 0.021109173074364662, 0.04125715792179108, 0.01146648358553648, 0.013333406299352646, -0.047147516161203384, 0.005419007036834955, 0.038718633353710175, -0.011102956719696522, -0.029895419254899025, -0.05668546259403229, 0.002501554088667035, -0.018299546092748642, -0.03250788152217865, -0.040049511939287186, -0.01863226480782032, 0.013555219396948814, -0.02470746822655201, -0.005163306370377541, -0.05015430971980095, 0.013986521400511265, -0.0008880209061317146, 0.001605061232112348, 0.03203960880637169, 0.0002828496799338609, 0.004741245880723, 0.0228220596909523, 0.039704468101263046, -0.006777609698474407, 0.03415915369987488, 0.018200961872935295, 0.009008059278130531, -0.04364780709147453, 0.03112771175801754, -0.04280984774231911, -0.02305619604885578, 0.039236199110746384, -0.010801045224070549, -0.04505261778831482, -0.007929802872240543, 0.014060459099709988, -0.03159598261117935, 0.02762800082564354, 0.010967404581606388, -0.007775766775012016, 0.015317398123443127, -0.014282272197306156, 0.0650157630443573, -0.03795461356639862, -0.015058616176247597, 0.0009434740641154349, 0.023253362625837326, 0.004605693742632866, -0.004066565539687872, -0.014935387298464775, 0.03647586330771446, 0.025200385600328445, 0.016944024711847305, 0.014972356148064137, 0.010911951772868633, 0.014861449599266052, 0.006016668863594532, 0.018090056255459785, 0.0034257734660059214, 0.007017906755208969, 0.03842288628220558, -0.030289754271507263, 0.003274817718192935, 0.03558861091732979, -0.018755493685603142, 0.02511412464082241, 0.013752385973930359, -0.020850392058491707, 0.01776966080069542, -0.00876776222139597, 0.04660530760884285, 0.02092432975769043, 0.06713530421257019, 0.016722211614251137, -0.019704358652234077, 0.03152204677462578, -0.0158226378262043, -0.0064695365726947784, -0.02211965247988701, 0.0005175629048608243, 0.05017895624041557, 0.012255150824785233, 0.02097362093627453, -0.0193716399371624, -0.016500398516654968, -0.001186081673949957, -0.017560170963406563, 0.024608884006738663, -0.014676605351269245, -0.010628524236381054, 0.011078311130404472, 0.018151670694351196, 0.0012761930702254176, -0.028564544394612312, -0.03401127830147743, 0.04690105840563774, -0.004661147017031908, 0.010067830793559551, 0.016870087012648582, -0.022785091772675514, 0.03324725478887558, -0.004017273895442486, 0.007134974468499422, -0.021466538310050964, -0.034183796495199203, 0.013271791860461235, 0.04951351881027222, 0.021577443927526474, 0.052594251930713654, -0.004747407510876656, -0.015724053606390953, 0.0281455647200346, -0.034035924822092056, -0.010480648837983608, 0.011515774764120579, -0.027825167402625084, -0.05086904019117355, -0.006531151011586189, 0.04241551458835602, -0.0042760553769767284, -0.04867555946111679, 0.024214550852775574, 0.0704871416091919, -0.007301333826035261, -0.003468903712928295, -0.004417769145220518, 0.022390756756067276, -0.06284692883491516, -0.02957502380013466, -0.015157199464738369, -0.044116076081991196, -0.030486920848488808, -0.04946422576904297, -0.002113381866365671, 0.02492927946150303, 0.05377725139260292, 0.023376591503620148, 0.04012344777584076, 0.002821950241923332, 0.027775876224040985, 0.02131866291165352, 0.011355577036738396, -0.05244637653231621, -0.02688862569630146, 0.01074559148401022, 0.02114614099264145, 0.0028496766462922096, 0.0005148672498762608, 0.03009258583188057, 0.0403699055314064, -0.004063485190272331, -0.026863979175686836, 0.013456636108458042, 0.021466538310050964, -0.0263217706233263, -0.0412818044424057, 0.059199340641498566, -0.04579199478030205, -0.029451794922351837, 0.029156044125556946, 0.0008849401492625475, 0.05190416797995567, 0.01571173220872879, -0.022969935089349747, -0.023770924657583237, -0.024399394169449806, -0.03632798790931702, 0.026666812598705292, -0.011602035723626614, -0.02345052920281887, 0.027381543070077896, -0.012144244275987148, 0.01640181429684162, 0.04776366427540779, 0.04840445518493652, 0.006475697737187147, -0.04426395148038864, -0.02012333832681179, -0.03194102644920349, 0.004100453574210405, 0.00908815860748291, 0.005585366394370794, 0.031965672969818115, -0.00035043322714045644, 0.0343809649348259, -0.046925704926252365, 0.012563223950564861, 0.003961821086704731, -0.036254048347473145, 0.0006457983399741352, -0.023425882682204247, 0.02092432975769043, 0.024695144966244698, 0.0011044422863051295, 0.014109751209616661, -0.011022857390344143, 0.02642035484313965, -0.01679614931344986, -0.007677183020859957, 0.003570568049326539, -0.006586604285985231, -0.02139260061085224, -0.07014209777116776, 0.008157777599990368, -0.02298225834965706, -0.0703885555267334, -0.046629954129457474, -0.029328566044569016, -0.015662439167499542, -0.0079359645023942, -0.009309970773756504, 0.00882937666028738, 0.018656911328434944, 0.010073992423713207, 0.0502036027610302, 0.009568752720952034, 0.009236033074557781, 0.00828100647777319, -0.010856498032808304, 0.0317438580095768, 0.00421136012300849, 0.014257625676691532, 0.044165369123220444, -0.01765875332057476, 0.0060567185282707214, 0.004590290132910013, 0.0019485627999529243, -0.013025333173573017, -1.958551138159237e-06, 0.008336460217833519, -0.009852179326117039, 0.00977824255824089, 0.02642035484313965, 0.008163939230144024, 0.007091843988746405, 0.010640847496688366, -0.03312402591109276, -0.0016836198046803474, -0.03147275373339653, -0.011016696691513062, 0.021059881895780563, 0.012507770210504532, 0.029624314978718758, 0.002358300145715475, 0.01593354344367981, -0.05003108084201813, 0.0001922569063026458, 0.004427011124789715, 0.024337779730558395, 0.032014962285757065, 0.01594586670398712, 0.05934721231460571, -0.06984634697437286, -0.007929802872240543, 0.04088747128844261, 0.0017282904591411352, 0.013912583701312542, 0.00014209875371307135, -0.012532416731119156, -0.013555219396948814, 0.012476962991058826, -0.029994003474712372, -0.011823847889900208, -0.010191060602664948, -0.02940250188112259, -0.014750543050467968, 0.008841699920594692, 0.005640819668769836, -0.01344431284815073, 0.027085792273283005, 0.0687619298696518, -0.03295150399208069, 0.03926084563136101, 0.0005868793814443052, 0.020320506766438484, 0.020912006497383118, -0.005955054424703121, 0.021133819594979286, -0.009223710745573044, -0.03627869486808777, 0.01258786953985691, -0.003934094216674566, -0.012532416731119156, 0.006158382631838322, 0.009020382538437843, 0.05062258243560791, -0.001209957292303443, 0.0032440104987472296, 0.016019804403185844, -0.019125182181596756, -0.0015850363997742534, -0.036426570266485214, 0.001600440125912428, 0.006115252152085304, -0.01224282756447792, -0.030289754271507263, 0.0064695365726947784, 0.014171365648508072, 0.0010366662172600627, 0.007942126132547855, 0.06368488073348999, 0.011657488532364368, 0.0008140833233483136, 0.00121072749607265, 0.011392545886337757, -0.020098693668842316, 0.013284115120768547, -0.011602035723626614, -0.0024861504789441824, -0.011441837064921856, -0.006358630023896694, -0.02511412464082241, -0.03260646387934685, 0.003804703475907445, 0.01800379529595375, 0.008435043506324291, -0.0066358959302306175, 0.0006173016154207289, -0.03960588574409485, 0.02264953963458538, 0.022735798731446266, 0.0034535001032054424, 0.008730793371796608, 0.03898974135518074, -0.02070251666009426, 0.03462742269039154, 0.014257625676691532, -0.025077154859900475, 0.00693780742585659, 0.01960577629506588, 0.005773290991783142, 0.02918069064617157, 0.012076468206942081, -8.529775368515402e-05, -0.003807784290984273, -0.03807784244418144, 0.03457813337445259, -0.005951973609626293, 0.006488020997494459, 0.05136195942759514, 0.003992628306150436, 0.036944132298231125, 0.0035982944536954165, -0.0038170265033841133, -0.0029713655821979046, -0.0028774032834917307, -0.045594826340675354, 0.01017257571220398, -0.024436363950371742, -0.0016389492666348815, -0.01086265966296196, 0.03598294407129288, -0.0016913216095417738, -0.03467671573162079, 0.012926749885082245, 0.0031947186216712, -0.031324878334999084, -0.01275422889739275, 0.0006142208585515618, -0.02046838030219078, -0.001982450718060136, 0.0029189931228756905, 0.0096858199685812, 0.007387594319880009, -0.009051189757883549, -0.019852234050631523, -0.009839856997132301, 0.03107842057943344, -0.02390647679567337, 0.010277320630848408, 0.04470757767558098, 0.011657488532364368, -0.024337779730558395, -0.02918069064617157, -0.017584815621376038, 0.0045718057081103325, 0.008428881876170635, -0.016894731670618057, -0.038275010883808136, -0.027258314192295074, -0.006297015585005283, -0.015231137163937092, 0.021183110773563385, 0.024522623047232628, 0.0017390729626640677, 0.015268106013536453, 0.027085792273283005, -0.010209544561803341, -0.029846128076314926, -0.02253863215446472, 0.003086893120780587, -0.0011283179046586156, 0.038324300199747086, 0.0052711316384375095, -0.03847217559814453, -0.014651959761977196, 0.007245881017297506, -0.0008525924640707672, 0.024682821705937386, 0.003995709121227264, -0.003105377545580268, 0.0034103698562830687, -0.0223661120980978, -8.197634451789781e-05, 0.024793727323412895, -0.02224288322031498, -0.03834894672036171, -0.004664227832108736, -0.01960577629506588, 0.011626681312918663, 0.017178159207105637, -0.03898974135518074, 0.003502791980281472, -0.0039217714220285416, -0.03876792639493942, 0.05776987969875336, -0.027825167402625084, 0.025385228917002678, -0.01604445092380047, 0.028909586369991302, -0.013333406299352646, -0.016833117231726646, -0.02280973643064499, -0.003887883387506008, 0.01141102984547615, 0.030708732083439827, 0.009359262883663177, -0.0011706780642271042, -0.021971777081489563, 0.00742456316947937, -0.021565120667219162, -0.011195378378033638, 0.010184898972511292, -0.03748634085059166, -0.009322294034063816, 0.010542263276875019, 0.012532416731119156, 0.007356787100434303, 0.03524357080459595, 0.039186906069517136, -0.01545295026153326, -0.05126337334513664, 0.023647695779800415, -0.008126970380544662, -0.030067941173911095, 0.007252042181789875, -0.030240461230278015, -0.014208334498107433, 0.004544079303741455, 0.012070306576788425, -0.02131866291165352, -0.04409142956137657, -0.03760957345366478, -0.028219502419233322, -0.037289176136255264, 0.050474707037210464, -0.005240324418991804, -0.002503094496205449, 0.023746279999613762, -0.007362948730587959, 0.004180552903562784, -0.012963718734681606, -0.014122073538601398, 0.03775744512677193, -0.0005526062450371683, -0.01088730525225401, -0.0386446975171566, 0.005077045876532793, -0.04211976379156113, -0.05841067060828209, -0.001819172059185803, -0.011540420353412628, -0.032581817358732224, -0.01141102984547615, 0.005945811979472637, -0.015157199464738369, -0.012655645608901978, -0.05195345729589462, 0.0020040159579366446, 0.012236665934324265, 0.003079191315919161, -0.052594251930713654, 0.006808416917920113, 0.0010828771628439426, -0.01914982870221138, -0.00532966572791338, 0.0048675560392439365, 0.023376591503620148, 0.0033056249376386404, 0.04672853648662567, -0.027899105101823807, -0.03839823976159096, 0.04349993169307709, -0.0017606380861252546, -0.016352523118257523, 0.05910075455904007, -0.04768972471356392, 0.015921220183372498, -0.0034257734660059214, 0.014910740777850151, -0.02974754385650158, 0.021947132423520088, 0.005893439520150423, -0.016007481142878532, -0.011558905243873596, -0.012791197746992111, 0.04561947286128998, 0.024461008608341217, -0.014947709627449512, 0.016143033280968666, 0.019063567742705345, -0.009691981598734856, 0.018903369084000587, 0.020801100879907608, 0.038151782006025314, 0.04404214024543762, -0.03627869486808777, -0.044461119920015335, -0.020566964522004128, -0.006013588048517704, 0.018262576311826706, 0.007738797925412655, -0.017979150637984276, 0.001699023530818522, 0.03894044831395149, -0.026790041476488113, 0.026395708322525024, 0.011337092146277428, 0.03364158794283867, 0.004417769145220518, -0.03361694514751434, 0.023241039365530014, 0.020653225481510162, -0.05096762254834175, 0.021811580285429955, 0.018780140206217766, -0.01800379529595375, 0.026740750297904015, -0.025878146290779114, -0.030758025124669075, 0.017843598499894142, 0.015354366041719913, 0.0031731536146253347, -0.04012344777584076, -0.01966739073395729, 0.04998179152607918, -0.034824591130018234, -0.004510191269218922, -0.031965672969818115, -0.072015181183815, -0.023253362625837326, -0.012144244275987148, 0.0545659177005291, 0.017745014280080795, -0.020961297675967216, 0.0027464721351861954, 0.05762200430035591, 0.03834894672036171, -0.0054066842421889305, 0.007233557756990194, 0.0009904552716761827, -0.03916225954890251, 0.023031549528241158, -0.03275433927774429, -0.010973566211760044, -0.01880478672683239, 0.0018345756689086556, -0.00320396083407104, -0.03561325743794441, 0.007399917580187321, -0.011737587861716747, -0.00198399112559855, 0.03297615051269531, -0.006176867056638002, 0.018250254914164543, -0.041429679840803146, 0.003780057653784752, -0.007067198399454355, 0.007356787100434303, 0.015255782753229141, 0.030659440904855728, 0.02649429254233837, -0.018706202507019043, 0.005440572276711464, 0.02373395673930645, 0.000702406803611666, 0.004463979974389076, -0.01478751190006733, -0.017806628718972206, 0.016870087012648582, 0.039926283061504364, -0.01487377192825079, 0.010061669163405895, -0.02420222759246826, -0.013900261372327805, -0.006715994793921709, 0.0017421537777408957, -0.02173764258623123, 0.0013909502886235714, 0.016894731670618057, -0.02280973643064499, 0.000641947437543422, -0.01346895843744278, 0.030166523531079292, -0.03817642480134964, -0.04438718035817146, 0.0315466932952404, -0.0018299545627087355, 0.0246458537876606, -0.03558861091732979, -0.001042827614583075, 0.007147297263145447, -0.013222499750554562, 0.023019226267933846, 0.029156044125556946, -0.004768972750753164, -0.0030668682884424925, -0.028465960174798965, -0.05126337334513664, -0.023228716105222702, 0.015674762427806854, 0.005782533437013626, 0.024411717429757118, 0.037289176136255264, -0.018718525767326355, 0.012926749885082245, 0.00021199283946771175, -0.002419914584606886, -0.013764709234237671, 0.021257048472762108, -0.005723999347537756, 0.021232401952147484, 0.015526887029409409, 0.030018648132681847, -0.04280984774231911, 0.003302544355392456, 0.005948892794549465, 0.03295150399208069, -0.0158226378262043, 0.018324192613363266, 0.03635263442993164, -0.012366056442260742, -0.011386384256184101, 0.021589767187833786, -0.018964983522892, -0.02029586024582386, -0.011115279980003834, 0.036722321063280106, 0.010388227179646492, 0.002529280725866556, 0.02693791687488556, -0.000680071534588933, -0.006820739712566137, 0.019864557310938835, 0.03775744512677193, 0.007664860226213932, 0.037584926933050156, 0.030831962823867798, -0.0029051299206912518, 0.012865135446190834, -0.0007574749179184437, 0.012433832511305809, 0.016475751996040344, -0.027726585045456886, -0.009790564887225628, 0.00723971938714385, 0.047615788877010345, -0.020850392058491707, -0.00113910052459687, -0.010868821293115616, 0.024744436144828796, -0.0052834548987448215, 0.0006049786461517215, 0.017289066687226295, 0.0006018979474902153, 0.019531838595867157, 0.01413439679890871, 0.03364158794283867, 0.02448565512895584, -0.0011691376566886902, 0.0404684916138649, 0.009476330131292343, -0.008022225461900234, 0.011386384256184101, 0.004845990799367428, 0.02585349977016449, 0.03043762780725956, -0.016290908679366112, -0.002427616622298956, -0.001258478849194944, -0.031177004799246788, 0.03657444566488266, -0.003780057653784752, 0.016598982736468315, 0.003613698296248913, -0.012631000019609928, -0.023549113422632217, 0.034134507179260254, 0.005335827358067036, 0.02264953963458538, -0.01640181429684162, -0.0035366800148040056, 0.010240351781249046, -0.0027572547551244497, -0.0013293357333168387, 0.002305927686393261, -0.027677293866872787, 0.028589189052581787, 0.04172543063759804, 0.03539144620299339, -0.017695723101496696, 0.017054930329322815, -0.022267527878284454, -0.04810870438814163, 0.022205913439393044, 0.0027526337653398514, -0.018706202507019043, -0.027381543070077896, 0.041355740278959274, 0.0006330903270281851, -0.03319796547293663, 0.014614990912377834, -0.011614358052611351, 0.035637903958559036, 0.017104221507906914, -0.01092427410185337, 0.0008502819109708071, -0.058262795209884644, 0.027529418468475342, 0.016956346109509468, -0.01576102338731289, -0.003977224696427584, -0.009624205529689789, -0.03980305418372154, -0.006269288714975119, -0.0001501856604591012, -0.014553376473486423, -0.001669756486080587, 0.008274844847619534, 0.030067941173911095, -0.03980305418372154, -0.023573758080601692, 0.006377114448696375, 0.02059161104261875, -0.029994003474712372, -0.014380855485796928, -0.029451794922351837, 0.05131266638636589, -0.010258836671710014, 0.025409873574972153, 0.015305074863135815, -0.019420932978391647, -0.004950735718011856, -0.03674696758389473, 0.01106598787009716, 0.010585393756628036, 0.02064090222120285, 0.020653225481510162, 0.009611882269382477, -0.033173318952322006, -0.01869387924671173, 0.035859715193510056, 0.028194855898618698, -0.002504634903743863, -0.0077018290758132935, -0.04177471995353699, 0.026297125965356827, -0.00848433468490839, 0.03630334138870239, 0.02483069710433483, 0.002929775742813945, 0.03376481682062149, 0.0018068491481244564, 0.023721633478999138, 0.011515774764120579, 0.07497268170118332, 0.00021911703515797853, -0.00601974967867136, -0.029624314978718758, 0.02871241793036461, 0.007516985293477774, -0.008977252058684826, 0.02987077459692955, 0.013961875811219215, 0.030807316303253174, 0.041602201759815216, -0.017091898247599602, 0.012138082645833492, -0.020419089123606682, 0.021367954090237617, -0.00033753266325220466, -0.03038833662867546, -0.00412818044424057, 0.04677782952785492, 0.025952083989977837, -0.04081353172659874, -0.029599670320749283, -0.05180558189749718, 0.005739402957260609, 0.01422065682709217, 0.014146720059216022, -0.022464694455266, -0.012390702962875366, 0.036894842982292175, 0.007738797925412655, 0.0070548756048083305, 0.0009881446603685617, 0.013986521400511265, -0.009525622241199017, -0.0012492366367951035, -0.0013924906961619854, -0.0369194895029068, -0.023943446576595306, -0.027356896549463272, 0.013431989587843418, 0.055798210203647614, 0.001089808763936162, -0.013247146271169186, -0.007788089569658041, 0.0026355658192187548, 0.01521881390362978, 0.013740062713623047, 0.07516985386610031, 0.04014809429645538, -0.011374060995876789, 0.02481837384402752, 0.004624178167432547, 0.0041713104583323, -0.02207036130130291, 0.02475675940513611, 0.025927437469363213, 0.01556385587900877, -0.000569550262298435, 0.03709200769662857, 0.04719680920243263, 0.006377114448696375, -0.025533104315400124, -0.010332773439586163, -0.00885402224957943, -0.03566255047917366, 0.0023629211355000734, -0.019125182181596756, -0.012631000019609928, -0.003228606656193733, 0.03324725478887558, -0.0026971804909408092, 0.024793727323412895, -0.008780085481703281, 0.0011606656480580568, -0.006574281491339207, -0.012963718734681606, 0.03021581657230854, 0.03157133609056473, 0.003222445258870721, -0.020603932440280914, -0.009303809143602848, 0.02402970753610134, -0.04396820068359375, -0.03285292163491249, -0.011072149500250816, 0.019963141530752182, 0.03238465264439583, -0.026518937200307846, -0.059593673795461655, -0.026913272216916084, 0.029451794922351837, -0.002396809170022607, 0.010523779317736626, -0.010585393756628036, -0.023770924657583237, 0.015489918179810047, -0.0037985420785844326, 0.024054352194070816, -0.007067198399454355, -0.06087525561451912, -0.017621785402297974, 0.00024607343948446214, 0.0145287299528718, -0.007325979880988598, -0.019186796620488167, -4.385229112813249e-05, -0.030486920848488808, -0.003952578641474247, -0.007917480543255806, -0.008897152729332447, -0.01003086194396019, 0.014343886636197567, 0.008595241233706474, -0.0035274378024041653, -0.03142346441745758, -0.012581707909703255, 0.0040326775051653385, 0.005785613786429167, 0.016882408410310745, 0.006001265253871679, 0.02304387278854847, 0.014972356148064137, 0.019815266132354736, 0.004547160118818283, 0.0189156923443079, -0.02414061315357685, 0.002378324745222926, -0.024436363950371742, 0.012144244275987148, 0.018250254914164543, 0.04354922100901604, -0.02333962358534336, -0.016820793971419334, -0.01203949935734272, 0.013431989587843418, 0.01816399395465851, -0.024263842031359673, -0.007393755950033665, -0.0015927382046356797, 0.027849813923239708, -0.018435098230838776, 0.02836737595498562, 0.00325325271114707, 0.0018037683330476284, -0.04712286964058876, 0.015785668045282364, -0.01141102984547615, 0.00506164226680994, -0.029254628345370293, -0.03324725478887558, 0.01344431284815073, -0.01640181429684162, 0.003622940508648753, 0.003712281584739685, 0.02688862569630146, -0.007781927939504385, -0.012316765263676643, -0.030585503205657005, -0.025262000039219856, -0.014972356148064137, -0.04510191082954407, -0.03531750664114952, 0.004975381772965193, -0.007966771721839905, -0.016549689695239067, 0.009624205529689789, 0.01341966725885868, -0.036771614104509354, -0.017338357865810394, 0.03199031576514244, 0.024584239348769188, -0.0013170128222554922, 0.0032809791155159473, -0.02207036130130291, 0.04465828463435173, 0.019482547417283058, 0.0013509008567780256, 0.005902681965380907, -0.009186741895973682, 0.02659287489950657, 0.011176894418895245, 0.006481859367340803, 0.0019346994813531637, -0.007781927939504385, -0.007406078744679689, 0.008207068778574467, 0.0020009351428598166, -0.007085682824254036, -0.0026047585997730494, -0.044806160032749176, -0.021885517984628677, -0.016611304134130478, 0.004796699155122042, -0.022218236699700356, -0.014738219790160656, 0.0010890386765822768, 0.015970513224601746, 0.011497290804982185, -0.002667913679033518, -0.01178071741014719, 0.00723971938714385, 0.03090590052306652, 0.026297125965356827, -0.012643322348594666, -0.03541608899831772, 0.017510877922177315, -0.018447421491146088, -0.05343220755457878, -0.005175629165023565, -0.001940860878676176, 0.005314262118190527, 0.011823847889900208, 0.011614358052611351, -0.0018099298467859626, 0.011053665541112423, 0.012076468206942081, -0.01051761768758297, -0.029550377279520035, -0.004941493738442659, 0.004300701431930065, 0.02142956852912903, 0.0014887636061757803, -0.000339650665409863, 0.006654380355030298, 0.02809627167880535, -0.021947132423520088, -0.011583550833165646, 0.019741328433156013, 0.002276660641655326, -0.03290221467614174, 0.008367267437279224, -0.00022624123084824532, -0.008724631741642952, -0.0024430202320218086, -0.01132476981729269, -0.003607536666095257, 0.005942731164395809, 0.00344733870588243, -0.03435631841421127, 0.013370375148952007, -0.009741273708641529, -0.0290574599057436, -0.0123229268938303, 0.03021581657230854, 0.053974419832229614, -0.02133098617196083, -0.02522503025829792, 0.02728295885026455, -0.02683933451771736, -0.005070884246379137, 0.007855866104364395, -0.020369797945022583, -0.010653169825673103, 0.0185090359300375, -0.013826323673129082, -0.029476439580321312, -0.008527465164661407, 0.013431989587843418, 0.007233557756990194, 0.004756649490445852, 0.004741245880723, 0.03324725478887558, -0.01995081827044487, 0.021010588854551315, 0.003761573228985071, -0.01275422889739275, -0.015144877135753632, -0.016130710020661354, -0.002275120234116912, 0.005536074750125408, -0.026173895224928856, -0.043130241334438324, -0.00573324179276824, -0.008607564494013786, -0.00369071657769382, -0.012205858714878559, -0.02563168667256832, 0.016475751996040344, -0.022612569853663445, 0.008632210083305836, -0.0317438580095768, -0.026050666347146034, 0.012557062320411205, -0.014750543050467968, -0.024214550852775574, 0.002649429254233837, -0.02922998182475567, 0.015489918179810047, -0.01954416185617447, -0.02062857896089554, -0.0033857240341603756, 0.02888493984937668, 0.01760946214199066, -0.021515829488635063, -0.0022874432615935802, -0.04603845253586769, -0.0232780072838068, -0.0064633749425411224, 0.0074676936492323875, 0.011632842943072319, -0.02189784124493599, 0.03632798790931702, -0.014676605351269245, -0.027159729972481728, -0.01919911988079548, -0.03844752907752991, -0.005166386719793081, -0.04349993169307709, -0.048995956778526306, 0.013296437449753284, 0.020887359976768494, -0.011947077699005604, 0.016019804403185844, 0.006660541985183954, -0.016290908679366112, 0.0007181955734267831, -0.024571916088461876, -0.01799147203564644, 0.0025123367086052895, -0.004661147017031908, -0.03972911462187767, -0.025126447901129723, 0.01441782433539629, 0.0034565809182822704, 0.005995103623718023, 0.00030056387186050415, -0.001042827614583075, 0.0008803190430626273, 0.037584926933050156, -0.01043135765939951, -0.0334690697491169, 0.02969825267791748, 0.00315312878228724, 0.019051244482398033, 0.010770238004624844, 0.0035551642067730427, -0.033173318952322006, -0.00398646667599678, -0.0008818594506010413, -0.008607564494013786, 0.004402365535497665, -0.013715417124330997, -0.0018299545627087355, -0.005409764591604471, -0.013370375148952007, -0.020653225481510162, -0.017165835946798325, -0.012501608580350876, -0.01487377192825079, 0.0008341080974787474, -0.0232780072838068, 0.0289588775485754, 0.03112771175801754, -0.0007343693869188428, -0.009001897647976875, -0.019815266132354736, -0.010948920622467995, -0.0023197908885776997, -0.0255577489733696, 0.023980414494872093, -0.00802838709205389, -0.00919906422495842, 0.029032815247774124, 0.011774556711316109, -0.01510790828615427, 0.03406056761741638, 0.003736927406862378, -0.019531838595867157, 0.023610727861523628, -0.004479383584111929, -0.030979836359620094, 0.006907000206410885, 0.0030437628738582134, -0.015428303740918636, -0.03455348685383797, 0.00012669508578255773, 0.03605688363313675, -0.00630625756457448, -0.00363218248821795, -0.02304387278854847, -0.009273001924157143, -0.01788056641817093, -0.03588436171412468, -0.01266796886920929, 0.0020841150544583797, -0.012951395474374294, -0.02511412464082241, 0.02333962358534336, 0.00475973030552268, 0.006814578548073769, -0.008472012355923653, -0.0041682301089167595, 0.040838178247213364, 0.02809627167880535, -0.008644533343613148, -0.021984100341796875, 0.0036937971599400043, 0.04071494936943054, 0.01679614931344986, 0.009260679595172405, -0.009371585212647915, 0.03307473659515381, -0.018447421491146088, 0.030363690108060837, -0.005314262118190527, -0.0031408059876412153, -0.006814578548073769, -0.008410396985709667, 0.024559592828154564, 0.017794305458664894, 0.029895419254899025, 0.003715362399816513, 0.022612569853663445, -0.0351942777633667, -0.018028441816568375, 0.0020933570340275764, 0.03171921148896217, 0.0158226378262043, -0.019186796620488167, -0.02173764258623123, -0.01674685627222061, 0.008903314359486103, -0.0197290051728487, 0.0038293495308607817, 0.0127295833081007, -0.011035180650651455, 0.03595830127596855, 0.025952083989977837, -0.01203949935734272, -0.00573324179276824, -0.02258792519569397, 0.004713519476354122, -0.023881832137703896, -0.016414137557148933, 0.0022011827677488327, 0.01112144161015749], [0.0018291344167664647, 0.036785345524549484, -0.004112495109438896, -0.011642170138657093, -0.023270364850759506, 0.024584125727415085, -0.008329812437295914, 0.016156481578946114, -0.003322840202599764, -0.01174699142575264, 0.06143935024738312, 0.007407383061945438, -0.009049586020410061, -0.002386435167863965, 0.05227096751332283, 0.03700896352529526, 0.0414254404604435, 0.000711475673597306, -0.012117360718548298, 0.041760869324207306, 0.03446529433131218, 0.009937074035406113, 0.022403839975595474, -0.026401031762361526, 0.023312292993068695, 0.012879063375294209, -0.011649157851934433, 0.03893767669796944, -0.00988815724849701, -0.03793139383196831, 0.01314461138099432, -0.055541396141052246, 0.06367554515600204, -0.04226401075720787, 0.05378039553761482, 0.01748421974480152, 0.0015417489921674132, 0.00923826452344656, -0.04609348997473717, 0.003651280887424946, 0.03348696231842041, -0.039943963289260864, -0.011306741274893284, 0.008211014792323112, -0.00309048593044281, -0.03477277234196663, -0.06395506858825684, -0.009419955313205719, -0.013466063886880875, 0.00828089565038681, 0.045813966542482376, 0.028874818235635757, -0.02311662584543228, 0.04637301340699196, 0.0004909138078801334, -0.0024999917950481176, -0.04612144082784653, -0.0005564272287301719, 0.04542263224720955, 0.01189374178647995, -0.014926576055586338, 0.0009765865979716182, 0.04257148876786232, 0.033626724034547806, -0.03245272487401962, -0.002751563210040331, -0.02633115090429783, 0.02252962626516819, -0.029210247099399567, 0.03983215615153313, 0.026974055916070938, 0.0123549560084939, -0.004503828939050436, -0.006072656717151403, 0.001979378517717123, 0.009000669233500957, -0.02912638895213604, 0.019874148070812225, -0.030440151691436768, 0.0035202540457248688, -0.0075890738517045975, 0.0050873346626758575, -0.038658153265714645, 0.00908452644944191, 0.004853233695030212, -0.06255744397640228, -0.06898649781942368, -0.02971339039504528, 0.0034119384363293648, 0.04187268018722534, -0.04248763248324394, 0.02999291382730007, 0.010251538828015327, 0.05417172983288765, 0.02195660211145878, -0.0010892696445807815, 0.03007677011191845, -0.012278086505830288, -0.028609270229935646, 0.07155811786651611, 0.030496057122945786, -0.03661762923002243, -0.04438839480280876, -0.06770068407058716, 0.03885382041335106, 0.007078942377120256, -0.07099907100200653, -0.04360572621226311, -0.026247292757034302, 0.014982480555772781, -0.0008560419082641602, -0.0412856787443161, 0.031753912568092346, 0.019608601927757263, 0.014898623339831829, -0.01937100663781166, 0.014577170833945274, -0.01844857633113861, -0.02974134124815464, -0.0313066765666008, -0.005405293311923742, 0.018923766911029816, -0.04318644106388092, -0.0801115483045578, 0.030216531828045845, 0.021802863106131554, -0.01878400519490242, -0.00877705030143261, -0.027644913643598557, -0.05629611015319824, 0.027407318353652954, -0.029350008815526962, 0.006443025544285774, -0.028399627655744553, -0.009021633304655552, 0.01779169589281082, -0.04858125373721123, -0.00073418696410954, -0.03843453526496887, 0.02659669890999794, 0.04729544371366501, 0.03197753429412842, 0.023941220715641975, -0.008413668721914291, -0.014633075334131718, -0.008497525937855244, -0.031194865703582764, -0.017106862738728523, 0.04567420482635498, 0.003088739002123475, -0.01598876714706421, -0.02287903055548668, -0.022781196981668472, -0.04259943962097168, -0.01935702934861183, -0.030440151691436768, -0.055261872708797455, 0.02536679245531559, -0.009433931671082973, -0.0062613352201879025, -0.007861609570682049, -0.025911863893270493, -0.020111743360757828, 0.011453491635620594, 0.014465361833572388, -0.012089408002793789, -0.04975525289773941, 0.009587669745087624, -0.09984593093395233, 0.03502434492111206, -0.03038424625992775, -0.013186539523303509, -0.015136218629777431, 0.043018728494644165, -0.02976929396390915, -0.013528956100344658, 0.032117296010255814, -0.0253248643130064, -0.028958674520254135, -0.05193553864955902, 0.02352193556725979, 0.04248763248324394, 0.008420657366514206, 0.01843460090458393, -0.028245888650417328, 0.0039727333933115005, -0.03231296315789223, 0.03938491642475128, 0.010475157760083675, -0.011691086925566196, -0.005814096890389919, -0.007945466786623001, -0.0016413293778896332, 0.04136953502893448, 0.00907753873616457, -0.02946181781589985, -0.01219423022121191, -0.027616960927844048, 0.032396819442510605, 0.026820316910743713, -0.00687978183850646, -0.00043610093416646123, 0.046820253133773804, 0.010125752538442612, -0.011376622132956982, -0.013382206670939922, -0.015303933061659336, 0.07983202487230301, 0.017120838165283203, 0.006013257894665003, 0.03407396376132965, -0.006886770017445087, -0.011516384780406952, 0.04218015447258949, -0.009804300963878632, 0.0120474798604846, -0.0250173881649971, 0.027630936354398727, 0.008162098005414009, 0.029294103384017944, -0.056184303015470505, 0.043410059064626694, 0.010160693898797035, 0.02884686551988125, -0.034213725477457047, 0.046512775123119354, -0.017288552597165108, -0.021048149093985558, -0.0012019526911899447, -0.09431136399507523, -0.020810553804039955, -0.012669420801103115, -0.03809910640120506, 0.038015250116586685, 0.0065233889035880566, 0.05914725735783577, -0.024514244869351387, 0.002751563210040331, -0.023368196561932564, 0.008050288073718548, 0.01547164749354124, 0.010670824907720089, -0.007323525846004486, 0.02561836503446102, -0.02723960392177105, 0.00029131630435585976, 0.019343053922057152, -0.012019527144730091, -0.002646741922944784, 0.037064868956804276, 0.027770698070526123, 0.006792430765926838, -0.045925773680210114, -0.011027217842638493, 0.018560387194156647, 0.004849739372730255, -0.024612078443169594, -0.02844155579805374, -0.02722562663257122, 0.003406697418540716, -0.05042611062526703, -0.013780527748167515, -0.038350678980350494, 0.016170457005500793, -0.05797325447201729, 0.0175680760294199, 0.021663101390004158, -0.03650582209229469, -0.016030695289373398, 0.03225705772638321, -0.006390614900738001, 0.03656172379851341, 0.025800054892897606, 0.02381543628871441, -0.049252111464738846, 0.017009029164910316, 0.037735726684331894, 0.0041963523253798485, -0.040530964732170105, 0.0544792078435421, 0.0001302625023527071, -0.025143174454569817, 0.023060720413923264, 0.008399693295359612, -0.029629532247781754, 0.00697761494666338, 0.008497525937855244, 0.006701585371047258, 0.010510098189115524, 0.03435348719358444, 0.06104801967740059, -0.017637956887483597, 0.021774910390377045, -0.051823727786540985, -0.0022938428446650505, 0.009287181310355663, 0.00888886023312807, -0.02222215011715889, 0.011502408422529697, -0.043997060507535934, 0.028259865939617157, 0.07927297800779343, 0.03234091401100159, 0.031474389135837555, -0.028735056519508362, 0.059650398790836334, 0.013598836958408356, -0.016030695289373398, -0.0016972341109067202, -0.03125077113509178, 0.018839910626411438, -0.008190049789845943, -0.016967101022601128, -0.00018048945639748126, 0.027141770347952843, 0.0016273531364277005, -0.039916012436151505, -0.01395522989332676, 0.024905579164624214, -0.07731630653142929, -0.02067079208791256, 0.00029262658790685236, -0.011355658061802387, -0.054954398423433304, 0.000459030648926273, -0.013130635023117065, 0.012494717724621296, 0.023326268419623375, 0.016519861295819283, -0.010083824396133423, -0.001977631589397788, -0.01850448176264763, -0.015835028141736984, -0.023955198004841805, 0.030300389975309372, -1.4713220480189193e-05, 0.01220121793448925, 0.011684098280966282, 0.0005407040007412434, -0.02879096008837223, -0.0030834979843348265, -0.044584061950445175, -0.000398758304072544, 0.07099907100200653, 0.005967834964394569, -0.040223486721515656, 0.025254983454942703, -0.017987363040447235, -0.0036652570124715567, 0.0543394461274147, -0.018532434478402138, 0.009126455523073673, -0.03351491317152977, -0.02380145899951458, -0.019301123917102814, -0.04723953828215599, 0.009252240881323814, -0.011914705857634544, -0.038350678980350494, 0.010202622041106224, -0.019510768353939056, 0.04704387113451958, -0.02095031552016735, 0.03566724807024002, -0.029517723247408867, 0.04846944287419319, -0.013340277597308159, 0.05132058635354042, -0.011055169627070427, -0.0054926443845033646, 0.044947441667318344, 0.021104054525494576, -0.04947572946548462, 0.003693209495395422, 0.005684817209839821, 0.026135483756661415, 0.04058687016367912, 0.008763073943555355, -0.018238933756947517, 0.013836432248353958, 0.040558915585279465, -0.03538772463798523, 0.013696670532226562, -0.0431305356323719, 0.028050223365426064, 0.015611409209668636, -0.00712785916402936, 0.06278106570243835, -0.02844155579805374, -0.007344490382820368, 0.0007258885889314115, -0.05414377897977829, -0.033710580319166183, -0.022319983690977097, 0.007414371240884066, 0.0002998330455739051, 0.04321439191699028, 0.06300468742847443, 0.053976062685251236, -0.009042598307132721, 0.0053354124538600445, -0.014940552413463593, -0.03248067572712898, 0.01910545863211155, 0.004182376433163881, 0.005262037273496389, -0.009818276390433311, 0.026373079046607018, 0.009189347736537457, -0.027658889070153236, 0.018378695473074913, -0.04813401401042938, 0.03653377294540405, 0.021760934963822365, 0.016044670715928078, -0.02194262482225895, 0.03150234371423721, -0.012865087017416954, -0.044891536235809326, -0.010258526541292667, 0.015890933573246002, -0.03885382041335106, -0.042124249041080475, 0.007658954709768295, -0.002541920403018594, 0.027700817212462425, 0.008504514582455158, -0.028735056519508362, -0.005758192390203476, -0.005485656205564737, 0.017903504893183708, -0.041453395038843155, 0.012627491727471352, 0.05352882668375969, -0.054004017263650894, -0.013487027958035469, -0.03809910640120506, -0.006624716334044933, 0.008413668721914291, 0.030496057122945786, 0.01691119559109211, 0.044891536235809326, 0.03547158092260361, 0.0062263947911560535, -0.06395506858825684, -0.04220810905098915, -0.08704373985528946, 0.018867863342165947, -0.02473786473274231, 0.012585563585162163, 0.003383986186236143, -0.0015862981090322137, -0.018015315756201744, 0.023382173851132393, 0.022906983271241188, -0.005283001344650984, 0.09582079201936722, 0.02226407825946808, 0.00829487107694149, 0.04030734673142433, 0.05987401679158211, -0.006132055539637804, 0.017917482182383537, 0.00858837179839611, -0.0054926443845033646, 0.0576937310397625, 0.01113203912973404, -0.0013932519359514117, -0.025408722460269928, -0.059929922223091125, -0.012082420289516449, -0.015136218629777431, -0.005733733996748924, 0.002241432201117277, 4.020885535283014e-05, 0.004992995411157608, -0.004060084465891123, 0.01724662445485592, -0.004444430116564035, 0.004954561125487089, -0.03670148551464081, -0.0181830283254385, -0.05657563731074333, -0.025883913040161133, 0.01569526642560959, 0.0939200296998024, 0.014143909327685833, 0.05355677753686905, -0.0696573555469513, -0.03692510724067688, 0.028036246076226234, -0.01693914830684662, 0.050593823194503784, -0.017106862738728523, -0.014591147191822529, -0.03731643781065941, -0.004171893931925297, 0.0009005910251289606, 0.004486358258873224, 0.06004173308610916, 0.009985990822315216, 0.006390614900738001, -0.04343801364302635, 0.011705063283443451, 0.03955262899398804, -0.011914705857634544, -0.019552696496248245, 0.01547164749354124, 0.0016919930931180716, -0.027323460206389427, 0.028679151087999344, -0.009944062680006027, -0.020237529650330544, -0.003661762923002243, 0.0008224116754718125, -0.02696007862687111, -0.030775580555200577, 0.017442291602492332, -0.01018165796995163, -0.006090126931667328, 0.0024126404896378517, -0.01569526642560959, -0.013738599605858326, -0.02533884160220623, 0.02030741050839424, -0.02909843809902668, -0.026554768905043602, -0.1359604150056839, -0.008867895230650902, -0.013494015671312809, -0.015234052203595638, -0.00877705030143261, -0.0247797928750515, -0.0009591163834556937, -0.0128511106595397, 0.0257022213190794, -0.005691805388778448, 0.003619834315031767, -0.0037246558349579573, -0.0008420657250098884, 0.010069848038256168, 0.03689715266227722, -0.030524009838700294, -0.019580649212002754, 0.006865805480629206, 0.02696007862687111, 0.005681322887539864, -0.023228434845805168, 0.01656179130077362, 0.014437409117817879, -0.020279457792639732, -0.00657230569049716, -0.013703659176826477, 0.010503110475838184, -0.015541528351604939, 0.007505216635763645, -0.004231292754411697, -0.007840645499527454, -0.021649125963449478, 0.006254347041249275, 0.005859519820660353, 0.0028319263365119696, 0.028399627655744553, -0.0006049071671441197, 0.002297336934134364, 0.059929922223091125, -0.0004633982025552541, -0.02223612554371357, -0.025254983454942703, 0.006222900468856096, -0.04860920459032059, -0.010670824907720089, 0.00026794985751621425, 0.051823727786540985, 0.0181131474673748, 0.024025078862905502, 0.03577905893325806, -0.002019560197368264, -0.006519894581288099, -0.0032809115946292877, 0.005653370637446642, -0.035247962921857834, 0.010663836263120174, 0.012166277505457401, -0.027980342507362366, -0.015541528351604939, -0.010614919476211071, 0.012487730011343956, -0.02846950851380825, -0.0026869233697652817, 0.04229196533560753, -0.006512906868010759, -0.005978317465633154, -0.01547164749354124, 0.013661730103194714, -0.01594683714210987, 0.01881195791065693, 0.01253664679825306, -0.02686224691569805, 0.006432543508708477, 0.034605056047439575, -0.0009233023738488555, 0.026820316910743713, -0.004276715684682131, -0.0339062474668026, -0.005283001344650984, 0.014157884754240513, -0.022655410692095757, -0.038043200969696045, 0.00556601956486702, 0.009916109964251518, 0.025185102596879005, -0.00972743146121502, -0.015136218629777431, -0.028399627655744553, -0.0002023272536462173, -0.005461197812110186, -0.001044720527715981, -0.0044688880443573, -0.006645680405199528, -0.04315849021077156, -0.004095024894922972, 0.026764413341879845, -0.008756086230278015, -0.01018864568322897, 0.012327003292739391, -0.011516384780406952, -0.02321445941925049, 0.01265544444322586, -0.011719039641320705, 0.0071837641298770905, -0.0033909741323441267, 0.009944062680006027, -0.03874201327562332, -0.04011167958378792, 0.03287201002240181, 0.027672864496707916, 0.0021121525205671787, 0.008735121227800846, -0.008427645079791546, -0.018616290763020515, 0.0002779952483251691, -0.013542932458221912, -0.03731643781065941, 0.02976929396390915, 0.030300389975309372, 0.005849037319421768, 0.018937744200229645, -0.023605791851878166, -0.004161411896348, -0.021411530673503876, -3.341184128657915e-05, 0.021481411531567574, -0.020139696076512337, 0.02030741050839424, 0.0012115613790228963, -0.016100576147437096, 0.022110339254140854, -0.012278086505830288, -0.011837837286293507, -0.026051627472043037, 0.01748421974480152, 0.0034678434021770954, -0.03404600918292999, -0.02315855398774147, 0.03977625072002411, 0.012117360718548298, 0.02436050772666931, -0.004032132215797901, 0.008238966576755047, 0.07938478887081146, 0.008763073943555355, -0.03508024662733078, -0.008693193085491657, 0.03949672728776932, 0.00846957415342331, 0.04321439191699028, -0.019329076632857323, 0.0016727758338674903, 0.019245220348238945, -0.00939200259745121, -0.01079661026597023, -0.05383630096912384, 0.015583457425236702, -0.01566731370985508, -0.011530360206961632, 0.0047414242289960384, 0.023955198004841805, 0.011956634931266308, -0.006698091048747301, -0.01236194372177124, -0.0032564534340053797, 0.03879791498184204, -0.0036128463689237833, -0.0015487370546907187, -0.016170457005500793, 0.033990103751420975, 0.02129971981048584, 0.000593988283071667, -0.09951050579547882, -0.010230574756860733, 0.01812712475657463, -0.00743533531203866, -0.009014645591378212, -0.03871405869722366, -0.013647753745317459, -0.024178816005587578, 0.003791042836382985, 0.04441634565591812, 0.026666579768061638, -0.009755384176969528, -0.009105490520596504, -0.026834294199943542, -0.02068476751446724, 0.005234085023403168, 0.011027217842638493, -0.002531438134610653, 0.008958741091191769, 0.00356392958201468, 0.0006913848919793963, -0.006788936443626881, 0.00987418182194233, -0.02438846044242382, 0.00843463372439146, -0.005890965927392244, -0.016016719862818718, 0.023354221135377884, 0.009769359603524208, 0.004765882156789303, 0.013682694174349308, 0.05417172983288765, -0.016687575727701187, 0.007763775996863842, -0.023368196561932564, -0.013207503594458103, 0.012886051088571548, -0.02658272162079811, 0.019175339490175247, -0.033682629466056824, -0.021439483389258385, 0.010531062260270119, -0.01874207705259323, 0.03910539299249649, -0.006771466229110956, 0.006020245607942343, 0.024667983874678612, -0.02102019637823105, 0.04058687016367912, -0.0247797928750515, 0.003672245191410184, -0.02725357934832573, 0.012669420801103115, -0.008218002505600452, -0.00043653769535012543, -0.0010080330539494753, -0.046456869691610336, 0.018071219325065613, -0.010824562981724739, -0.01720469631254673, -0.039329010993242264, 0.019189314916729927, 0.0006787189631722867, -0.007819680497050285, 0.01018165796995163, -0.0022449262905865908, -0.03234091401100159, -0.041844725608825684, 0.00013932518777437508, -0.020209576934576035, -0.019636552780866623, 0.0019951018039137125, -0.011830848641693592, 0.007057978305965662, 0.009601646102964878, 0.0009573693387210369, -0.03410191461443901, -0.008371740579605103, -0.023060720413923264, -0.0362262949347496, 0.004758894443511963, -0.0016360882436856627, -0.029797246679663658, -0.028022270649671555, 0.029909055680036545, 0.0010665582958608866, 0.00767991878092289, -0.010398289188742638, 0.017651934176683426, -0.015443694777786732, -0.015178147703409195, 0.00617747800424695, -0.033011771738529205, 0.017148790881037712, -0.014800789766013622, 0.03102715127170086, 0.01878400519490242, -0.013836432248353958, -0.0887208804488182, 0.014451385475695133, 0.008385716937482357, -0.004839257337152958, -0.01816905289888382, -0.030859436839818954, -0.013011837378144264, 0.023885317146778107, 0.001869315980002284, -0.03631015494465828, 0.01361281331628561, 0.027309484779834747, -0.028050223365426064, 0.004021650180220604, 0.04279510676860809, -0.01155831292271614, -0.017763743177056313, 0.040838439017534256, -0.017358433455228806, -0.01843460090458393, 0.022459745407104492, -0.0129699083045125, 0.020279457792639732, 0.025786079466342926, -0.035275913774967194, 0.03245272487401962, 0.0015688278945162892, 0.023270364850759506, 0.008665240369737148, -0.02132767252624035, 0.012571587227284908, 0.020125720649957657, -0.03150234371423721, 0.06440230458974838, -0.0044898525811731815, -0.020083792507648468, -0.02258552983403206, -0.014143909327685833, -0.013172563165426254, 0.0009547487716190517, -0.0053389063104987144, 0.008462585508823395, 0.0008398819481953979, 0.029629532247781754, -0.018937744200229645, 0.02030741050839424, -0.011460479348897934, 0.0406707264482975, 0.01628226600587368, 0.016198409721255302, 0.02535281702876091, -0.04704387113451958, 0.01471693255007267, 0.026498865336179733, -0.04187268018722534, 0.02067079208791256, -0.005199144594371319, -0.0032704295590519905, -0.043410059064626694, -0.020586933940649033, -0.0065792934037745, 0.0026345127262175083, 0.03795934468507767, -0.050537921488285065, -0.010384312830865383, -0.015821052715182304, -0.003969239071011543, 0.004325632005929947, -0.019259195774793625, 0.03468891605734825, 0.007875585928559303, 0.017134815454483032, -0.036729440093040466, -0.0001508992281742394, 0.008504514582455158, -0.01470295712351799, -0.036813296377658844, -0.019916078075766563, 0.005866507533937693, 0.01816905289888382, 0.04852534830570221, -0.006757489871233702, -0.005408787168562412, 0.00223095016553998, -0.016044670715928078, 0.010083824396133423, -0.017344458028674126, 0.0033735039178282022, 0.01531790941953659, -0.02974134124815464, -0.005094322841614485, 0.00034569244598969817, 0.013591849245131016, 0.007463288027793169, -0.023717602714896202, 0.029545675963163376, -0.019902100786566734, -0.05313749238848686, -0.02102019637823105, 0.0009931833483278751, 0.019217267632484436, 0.02694610320031643, 0.01945486292243004, -0.01907750591635704, -0.006900745909661055, 0.019217267632484436, 0.0011967116734012961, -0.0066386922262609005, -0.014011135324835777, -0.001578436465933919, 0.003464349312707782, 0.005765180103480816, 0.017288552597165108, 0.044584061950445175, -0.026415007188916206, 0.03874201327562332, -0.004126471467316151, -0.0009599898476153612, 0.009028621949255466, -0.05481463670730591, 0.01531790941953659, 0.008245955221354961, -0.020083792507648468, 0.0013906313106417656, 0.00843463372439146, -0.024989435449242592, 0.043661631643772125, 0.040838439017534256, -0.012676408514380455, 0.0309992004185915, 0.04824582487344742, 0.04192858561873436, -0.019482815638184547, -0.02061488665640354, 0.022040458396077156, -0.023382173851132393, 0.02353591099381447, -0.023997126147150993, -0.021523339673876762, 0.0042243050411343575, -0.0038958643563091755, 0.03809910640120506, -0.00812715757638216, -0.012823158875107765, -0.012837134301662445, 0.0037456201389431953, 0.0026572239585220814, 0.006872793659567833, -0.042431727051734924, 0.006624716334044933, 0.009419955313205719, -0.04218015447258949, -0.007470276206731796, 0.013312325812876225, -0.021453458815813065, 0.006893758196383715, -0.011886753141880035, -0.00972743146121502, 0.02318650670349598, 0.008204026147723198, -0.009622610174119473, 0.010517086833715439, -0.0696573555469513, 0.0025803549215197563, 0.019007625058293343, -0.005143239628523588, -0.030496057122945786, -0.026177411898970604, 0.05034225434064865, -0.009923098608851433, 0.03125077113509178, 0.001462259329855442, -0.004332620184868574, -0.008567407727241516, 0.003053798573091626, 0.017078910022974014, 0.030915342271327972, 0.011341681703925133, -0.006942674517631531, 0.010363348759710789, -0.023410126566886902, -0.021132005378603935, -0.033347200602293015, 0.010817574337124825, 0.02999291382730007, 0.01903557777404785, 0.028008293360471725, -0.01875605247914791, 0.016477933153510094, 0.05674334987998009, 0.013060754165053368, -0.0030625336803495884, -0.01846255362033844, -0.003860923694446683, 0.01879798248410225, 0.004136953502893448, 0.011306741274893284, -0.008993681520223618, -0.0029280127491801977, 0.028259865939617157, 0.03435348719358444, 0.01520609948784113, 0.05291387438774109, -0.01879798248410225, 0.015122242271900177, 0.0018605808727443218, 0.019189314916729927, -0.007693895138800144, -0.008518490940332413, 0.0009984243661165237, 0.009979003109037876, -0.02384338714182377, 0.0046016620472073555, 0.01392028946429491, 0.015485623851418495, 0.010761669836938381, -0.037763677537441254, -0.006691103335469961, -0.00648146029561758, -0.027393341064453125, -0.015192123129963875, -0.03633810579776764, 0.0004712598165497184, -0.007603049743920565, 0.021663101390004158, 0.031194865703582764, 0.0227951742708683, 0.005579995922744274, -0.01784760132431984, 0.009895145893096924, 0.01686926744878292, 0.01658974215388298, 0.01156530063599348, 0.00341019150801003, 0.009769359603524208, 0.013710646890103817, -0.00036425457801669836, 0.015387790277600288, 0.016338171437382698, -0.026219341903924942, 0.01689722016453743, -0.003474831348285079, 0.016715528443455696, 0.02283710241317749, -0.0036862213164567947, 0.023256387561559677, 0.02287903055548668, 0.007316537667065859, 0.003308864077553153, 0.005237578880041838, -0.0025436673313379288, -0.004185870289802551, 0.024528222158551216, 0.006156513933092356, -0.006401096936315298, -0.03871405869722366, -0.02219419740140438, -0.04422067850828171, 0.0013382206670939922, 0.0013390941312536597, -0.00018846025341190398, 0.019944028928875923, 0.015597432851791382, 0.0011469214223325253, 0.03530386835336685, -0.001071799430064857, -0.017414338886737823, 0.025157149881124496, 0.01974836364388466, -0.009524776600301266, 0.004622626584023237, -0.020153673365712166, 0.014108968898653984, 0.03412986546754837, -0.032732248306274414, 0.04637301340699196, -0.013207503594458103, -0.024472316727042198, -0.004727447871118784, -0.02318650670349598, -0.02915434166789055, -0.011516384780406952, 0.021187910810112953, 0.02096429280936718, 0.0029192776419222355, -0.01661769486963749, 0.008329812437295914, -0.006911228410899639, 0.02352193556725979, 0.014276682399213314, 0.0021715513430535793, -0.0003402329748496413, -0.02507329359650612, -0.001364425988867879, 0.029573628678917885, -0.014046075753867626, -0.020433196797966957, 0.007099906913936138, 0.03385034203529358, 0.017973385751247406, -0.006439531687647104, 0.014276682399213314, -0.008958741091191769, 0.014018123038113117, 0.02946181781589985, 0.03999986872076988, -0.012299051508307457, -0.008993681520223618, -0.048050157725811005, 0.005269025452435017, -0.030272437259554863, 0.009315134026110172, 0.02852541394531727, 0.02567426860332489, -0.004881185945123434, -0.020517053082585335, 0.005090828984975815, 0.024919554591178894, 0.003965745214372873, 0.008169085718691349, 0.011348670348525047, -0.023703625425696373, 0.004507322795689106, -0.016841314733028412, -0.029322056099772453, -0.041816774755716324, -0.025450650602579117, -0.023969173431396484, 0.04170496389269829, -0.016771433874964714, 0.035164106637239456, -0.003329828381538391, 0.002585595939308405, 0.01129276491701603, 0.001970643410459161, -0.0065233889035880566, -0.02661067433655262, -0.022739268839359283, -0.006463990081101656, 0.021145982667803764, 0.008448610082268715, 0.004727447871118784, 0.016491910442709923, 0.011809884570538998, -0.0060412101447582245, -0.0051187812350690365, -0.033039722591638565, -0.0028109620325267315, 6.043612302164547e-05, -0.01234796829521656, 0.09710659831762314, -0.004755400121212006, -0.027057912200689316, 0.020796578377485275, 0.016743481159210205, 0.0055240909568965435, 0.024248696863651276, -0.004832269158214331, 0.00571975763887167, 0.01598876714706421, -0.009671526961028576, -0.009706467390060425, 0.050817444920539856, 0.008497525937855244, 0.026219341903924942, -0.022012505680322647, -0.046456869691610336, -0.030188580974936485, -0.000961736892350018, 0.03102715127170086, 0.013892337679862976, -0.040810488164424896, -0.006907734088599682, 0.009594657458364964, 0.004329126328229904, -0.014535242691636086, -0.013270396739244461, 0.007477263920009136, 0.008707169443368912, 0.060600779950618744, 0.033011771738529205, -0.003069521626457572, -0.0237874835729599, -0.02162117324769497, 0.014395480044186115, 0.0034503729548305273, -0.006236876826733351, -0.02627524547278881, -0.02633115090429783, 0.008238966576755047, 0.014311622828245163, 0.012578574940562248, 0.011153003200888634, -0.017693862318992615, -0.017582053318619728, 0.00727460952475667, -0.019818244501948357, -0.007414371240884066, 0.03935696557164192, -0.016156481578946114, 0.02251564897596836, 0.025129197165369987, -0.00814113300293684, 0.003231995040550828, 0.001588918617926538, -0.02784057892858982, 0.002386435167863965, 0.03167005628347397, 0.022655410692095757, 0.014129932969808578, -0.022138291969895363, 0.01364076603204012, -0.030132675543427467, 0.012019527144730091, 0.002803974086418748, -0.00969249103218317, -0.008238966576755047, -0.005918918643146753, 0.018029291182756424, -0.013081718236207962, -0.007889562286436558, 0.006055186502635479, 0.019287148490548134, -0.016673600301146507, -0.003944781143218279, 0.014493313618004322, 0.03723258152604103, -0.007005567662417889, -0.02999291382730007, 0.011236860416829586, 0.014136920683085918, -0.015234052203595638, -0.0023916764184832573, 0.012872075662016869, -0.032117296010255814, 0.03231296315789223, -0.017945433035492897, -0.004755400121212006, -0.028567342087626457, -0.00015057166456244886, 0.028679151087999344, -0.017651934176683426, -0.004870703909546137, -0.014898623339831829, 0.003965745214372873, 0.023088673129677773, -0.03935696557164192, -0.015569481067359447, -0.0011661386815831065, -0.031809817999601364, 0.03217320144176483, -0.023270364850759506, -0.03857429698109627, 0.014297647401690483, -0.021649125963449478, -0.011208907701075077, 0.034912534058094025, -0.02006981521844864, 0.008651264011859894, 0.026065602898597717, 0.027029959484934807, 0.02060091122984886, 0.04041915386915207, -0.013976194895803928, -0.008511502295732498, -0.001005412545055151, 0.022976864129304886, -0.026219341903924942, 0.018560387194156647, 0.00953875295817852, 0.01597478985786438, -0.014025111682713032, 0.00587349571287632, 0.021215863525867462, 0.0014255718560889363, 0.016170457005500793, 0.0065583293326199055, 0.003749114228412509, -0.009741407819092274, 0.0016727758338674903, -0.014276682399213314, 0.01847652904689312, 0.003067774698138237, -0.01977631449699402, 0.038350678980350494, 0.03857429698109627, -0.02157924510538578, -0.018266886472702026, 0.011153003200888634, -0.021760934963822365, -0.00012786034494638443, -0.022641435265541077, -0.045813966542482376, 0.005164203699678183, 0.001726060057990253, -0.012718336656689644, -0.0369810126721859, -0.001362678944133222, -0.044248633086681366, 0.027994317933917046, -0.004458406008780003, 0.01485669519752264, -0.0009695984772406518, -0.01551357563585043, 0.019203292205929756, 0.03231296315789223, 0.0051187812350690365, 0.018644243478775024, 0.04122977331280708, 0.007714859209954739, -0.043689582496881485, -0.009454895742237568, 0.008965728804469109, 0.02445834130048752, 0.035890866070985794, -0.030775580555200577, 0.005807108711451292, 0.00907753873616457, 0.00972044374793768, 0.0006153893191367388, 0.001005412545055151, 0.008839943446218967, -0.028986627236008644, 0.004388525150716305, 0.010216598398983479, -0.03097124770283699, 0.010160693898797035, 0.03345901146531105, -0.03505229577422142, -0.01299087330698967, -0.0027602985501289368, 0.00984622910618782, 0.0021261286456137896, 0.005513608921319246, -0.021439483389258385, 0.01174699142575264, 0.0009931833483278751, -0.008644276298582554, 0.004793834872543812, -0.002451075240969658, 0.0058175912126898766, -0.06071259081363678, 0.00492660840973258, 0.00010383875633124262, -0.016841314733028412, -0.0019723905716091394, -0.0045702154748141766, 0.003937792964279652, -0.02472388744354248, 0.005062876269221306, 0.0071837641298770905, 0.009147419594228268, 0.03236886486411095, -0.007686906959861517, 0.024025078862905502, 0.02343807928264141, -0.012648455798625946, 0.03125077113509178, -0.005244567058980465, -0.008958741091191769, -0.016156481578946114, 0.005436739884316921, -0.01407402753829956, 0.025604387745261192, 0.012019527144730091, 0.0159608144313097, 0.010600944049656391, 0.022026482969522476, -0.014115956611931324, -0.0010875225998461246, -0.04687615856528282, -0.024542197585105896, 0.02349398285150528, 0.01250869408249855, -0.003661762923002243, 0.021816840395331383, 0.018672196194529533, -0.024542197585105896, 0.04343801364302635, -0.010880467481911182, -7.015394658083096e-05, 0.014423432759940624, -0.010670824907720089, -0.0031271735206246376, 0.019664505496621132, -0.0008639035513624549, -0.021844791248440742, -0.02500341273844242, 0.02064283937215805, -0.0066317045129835606, 0.011921693570911884, 0.008176073431968689, 0.014381504617631435, -0.0064185671508312225, -0.0008508008322678506, 0.03765186667442322, 0.024192793294787407, 0.005894460249692202, 0.0128511106595397, 0.005974823143333197, -0.014025111682713032, 0.006771466229110956, 0.008525478653609753, -0.013165575452148914, 0.0012491224333643913, -0.02285107783973217, 0.03262043744325638, -0.004454912152141333, -0.008546442724764347, -0.010936371982097626, -0.0257022213190794, -0.028036246076226234, 0.029182294383645058, -0.02884686551988125, 0.013172563165426254, 0.01629624329507351, 0.018951719626784325, 0.03471686691045761, 0.015275980345904827, 0.0007071081199683249, -0.013375218026340008, 0.003791042836382985, -0.016352146863937378, -0.032117296010255814, -0.013214492239058018, 0.025436673313379288, -0.024332555010914803, -0.005468185991048813, 0.03508024662733078, -0.022697340697050095, -0.007288585416972637, -0.014730908907949924, 0.026554768905043602, -0.00556951342150569, 0.04536672681570053, 0.0026030661538243294, -0.024318577721714973, 0.05076153948903084, 0.031111009418964386, 0.005590477958321571, -0.021076101809740067, 0.01516417134553194, -0.0026519829407334328, -0.004702989477664232, -0.010614919476211071, -0.013501004315912724, 0.003892370266839862, -0.04162110760807991, 0.011607229709625244, -0.01300484873354435, -0.009608633816242218, -0.024276649579405785, 0.011677110567688942, -0.017987363040447235, 0.04693206027150154, 0.012732313014566898, -0.013598836958408356, 0.009741407819092274, 0.007973418571054935, -0.00218552746810019, 0.00642206147313118, -0.015429718419909477, -0.0481899194419384, -0.051795776933431625, -0.021844791248440742, 0.0007271989015862346, 0.013249432668089867, -0.0003295324568171054, 0.008490538224577904, 0.02662465162575245, -0.005964341107755899, 0.001243881299160421, -0.00010531280713621527, 0.005978317465633154, 0.11672917753458023, -0.00988116953521967, -0.0022152268793433905, 0.02282312512397766, 0.02287903055548668, 0.028245888650417328, 0.01850448176264763, 0.006617728155106306, -0.009832252748310566, 0.010670824907720089, -0.028022270649671555, -0.02162117324769497, -0.01159325335174799, 0.023927245289087296, 0.024877626448869705, 0.013340277597308159, 0.018322791904211044, -0.010076836682856083, 0.006764478050172329, -0.014800789766013622, 0.012026515789330006, 0.04779858514666557, 0.0357511043548584, 0.008043300360441208, 0.008770061656832695, -0.002882590051740408, -0.002868613926693797, -0.0006546973600052297, -0.02536679245531559, -0.0065233889035880566, 0.04698796570301056, 0.010440217331051826, 0.05319339781999588, 0.019301123917102814, -0.0057477098889648914, -0.02352193556725979, -0.01591888628900051, 0.02728153206408024, -0.007218704558908939, 0.0014561447314918041, 0.012767253443598747, 0.013053765520453453, -0.01999993436038494, -0.0021383578423410654, -0.02226407825946808, 0.003109703306108713, -0.03949672728776932, 0.008916812017560005, 0.013431123457849026, -0.016477933153510094, 0.05475873127579689, -0.036841247230768204, -0.007246656809002161, 0.0024248696863651276, -0.008490538224577904, 0.021104054525494576, 0.014591147191822529, -0.03591882064938545, 0.026205364614725113, -0.004269727505743504, 0.006540859118103981, -0.022319983690977097, -0.01379450410604477, 0.020558983087539673, -0.0034800723660737276], [-0.004441144410520792, 0.017278030514717102, 0.06331883370876312, 0.028445953503251076, -0.08644673228263855, -0.027450231835246086, 0.0014398358762264252, -0.009798805229365826, -0.0009950143285095692, 0.02299211546778679, -0.020253879949450493, 0.008124182000756264, -0.025526678189635277, -0.03396768122911453, -0.03131996840238571, 0.05182277783751488, -0.010375870391726494, 0.050102896988391876, 3.4829037758754566e-05, -0.0254361592233181, -0.0038697358686476946, 0.04505639895796776, -0.02530037797987461, 0.029713235795497894, -0.013928785920143127, 0.00827693473547697, 0.011586577631533146, 0.006342066917568445, 0.004848484881222248, -0.00251759123057127, 0.030912626534700394, -0.011230154894292355, 0.06422403454780579, -0.009312259033322334, 0.062232594937086105, 0.03396768122911453, -0.051234398037195206, 0.0017113963840529323, 0.017119621858000755, -0.002250273944810033, -0.03754322603344917, 0.052094340324401855, -0.010907676070928574, 0.002421413781121373, -0.04802093282341957, 0.05055549740791321, 0.035076554864645004, 0.011778932996094227, 0.01888476312160492, 0.043947525322437286, 0.018918707966804504, 0.01037021353840828, -0.01261624414473772, 0.025277748703956604, 0.06689438223838806, 0.030641065910458565, 0.014494537375867367, 0.02688448131084442, 0.04086984321475029, -0.017730632796883583, -0.019292104989290237, 0.03609490394592285, -0.03715851530432701, 0.004395883996039629, 0.00818075705319643, -0.004526006989181042, 0.010913333855569363, 0.02265266515314579, -0.006359039805829525, 0.016746224835515022, 0.009849722497165203, 0.016667019575834274, -0.0018104027258232236, -0.03847105801105499, -0.013883526436984539, -0.01457374170422554, 0.04440012574195862, -0.004076234996318817, 0.0014065980212762952, 0.034352391958236694, -0.0213174931704998, 0.0076546091586351395, -0.03663802519440651, 0.03326614946126938, -0.02098935656249523, 0.0075810616835951805, -0.035936493426561356, 0.009136876091361046, -0.03174993768334389, -0.012095753103494644, 0.020853577181696892, 0.021159082651138306, 0.018171917647123337, 0.03670591488480568, 0.022347159683704376, -0.009165164083242416, 0.01655386947095394, -0.015546833164989948, -0.005080442875623703, 0.05304479971528053, -0.012220218777656555, 0.01009865291416645, 0.05263746157288551, 0.03217990696430206, 0.04304232448339462, -0.06087479367852211, -0.043359145522117615, 0.03697747737169266, 0.005074785090982914, -0.027337081730365753, -0.02239241823554039, 0.03767900541424751, -0.027993353083729744, 0.007405678741633892, -0.025888759642839432, -0.0009037869749590755, 0.0020607474725693464, -0.011801563203334808, 0.0745885893702507, -0.013238569721579552, -0.030505286529660225, 0.0515512190759182, -0.0027792511973530054, -0.09251157939434052, -0.0013712386135011911, 0.009583819657564163, -0.004554294515401125, -0.0038188183680176735, -0.040643543004989624, 0.011711042374372482, -0.021181711927056313, -0.04537321999669075, 0.05073653534054756, 0.002295534126460552, -0.020095471292734146, -0.009317916817963123, 0.01974470540881157, 0.0036292916629463434, -0.016667019575834274, -0.045622147619724274, 0.0037282982375472784, 0.021781407296657562, -0.007145433221012354, 0.013102789409458637, -0.05218485742807388, -0.027812311425805092, 0.01868109405040741, 0.055805664509534836, 0.06404300034046173, -0.02794809266924858, -0.015026343055069447, 0.05340687930583954, -0.019439199939370155, 0.018070083111524582, -0.0056179058738052845, 0.01440401654690504, -0.0003373289364390075, 0.028242282569408417, -0.016599129885435104, -0.009465011768043041, -0.0434722974896431, -0.027201300486922264, -0.016259679570794106, 0.012853859923779964, 0.04218238219618797, 0.009651709347963333, -0.02643188089132309, 0.014030621387064457, -0.04942399635910988, -0.04114140197634697, -0.057797107845544815, -0.04254446551203728, -0.02437254786491394, 0.005298256874084473, -0.05082705616950989, -0.01562603935599327, 0.03550652414560318, 0.007281213533133268, 0.014551112428307533, -0.031116297468543053, -0.020242566242814064, 0.01728934608399868, -0.011903397738933563, -0.05232064053416252, -0.019925745204091072, 0.026273470371961594, 0.013114104978740215, 0.024621477350592613, -0.02708815038204193, 0.026386620476841927, -0.03399031236767769, 0.02040097676217556, 0.0144379623234272, 0.021781407296657562, -0.05313532054424286, -0.010426788590848446, -0.0146076874807477, -0.012163643725216389, -0.00964039471000433, 0.03491814434528351, 0.010602171532809734, -0.03274565935134888, 0.031093666329979897, 0.03670591488480568, -0.06431455910205841, -0.02412361651659012, 0.04426434636116028, 0.0012991053517907858, 0.051098618656396866, 0.003043739590793848, 0.005196421407163143, -0.07639899849891663, -0.006025246810168028, -0.02337682619690895, -0.03844842687249184, -0.016406774520874023, 0.015150807797908783, 0.07033414393663406, -0.036728546023368835, 0.0004472967702895403, 0.01682543009519577, 0.007439623586833477, 0.00355291529558599, 0.027721792459487915, -0.027744421735405922, 0.0463915690779686, 0.016214419156312943, -0.02180403843522072, -0.00044270005309954286, -0.01981259509921074, -0.010330610908567905, 0.04612001031637192, -0.010217460803687572, -0.01722145639359951, 0.032293058931827545, 0.023467345163226128, -0.005105901509523392, 0.006132739130407572, -0.0013578020734712481, 0.016067324206233025, 0.04489798843860626, 0.01914500817656517, 0.005866836290806532, -0.041503481566905975, 0.013272515498101711, -0.012276793830096722, -0.029984794557094574, 0.021147767081856728, 0.022935539484024048, 0.03849368914961815, -0.029690604656934738, -0.016780169680714607, 0.03254199028015137, -0.04883561283349991, 0.03577808290719986, 0.00884268619120121, 0.036411724984645844, -0.020378345623612404, 0.027065521106123924, -0.029170114547014236, 0.04197871312499046, -0.03161415830254555, -0.01696121133863926, 0.041231922805309296, -0.06526502221822739, -0.018703723326325417, 0.07336656749248505, -0.07105831056833267, -0.04589371010661125, 0.030188465490937233, -0.07988402247428894, 0.022154804319143295, -0.015275273472070694, 0.020287826657295227, 0.02801598235964775, 0.012107068672776222, 0.008899261243641376, -0.04910717532038689, 0.031229447573423386, 0.030889997258782387, -0.009538559243083, 0.008899261243641376, 0.029102224856615067, -0.04720625281333923, -0.017300661653280258, 0.0004992751055397093, -0.018737668171525, 0.004786252044141293, -0.012389943934977055, 0.07829991728067398, 0.010692691430449486, -0.05286376178264618, -0.057072944939136505, 0.009928927756845951, -0.015388423576951027, 0.028129132464528084, -0.02160036750137806, -0.006359039805829525, -0.015739189460873604, -0.02292422391474247, -0.02291291020810604, 0.04007779061794281, -0.01854531280696392, 0.00791485421359539, -0.03066369704902172, -0.0012135355500504375, 0.008978466503322124, 0.025141967460513115, 0.017855096608400345, -0.020242566242814064, -0.028174392879009247, 0.00990063976496458, -0.001651992555707693, -0.002685902174562216, -0.024621477350592613, -0.01894133910536766, 0.001698666950687766, -0.00245960196480155, -0.003004136960953474, 0.013283830136060715, 0.023829426616430283, 0.02244899421930313, 0.04340440407395363, -0.047930411994457245, 0.029396414756774902, -0.006421272177249193, 0.03684169426560402, -0.003369046375155449, -0.048066191375255585, -0.008339167572557926, -0.007705526892095804, 0.022618718445301056, -0.013227255083620548, -0.029170114547014236, -0.006624942645430565, -0.011343304999172688, 0.006777695380151272, 0.029396414756774902, -0.030844736844301224, 0.00532937329262495, -0.015252643264830112, -0.04041724279522896, 0.03027898631989956, -0.0341939814388752, -0.012288108468055725, 0.03743007779121399, 0.054809942841529846, 0.04711573198437691, 0.009606449864804745, 0.04270287603139877, -0.028310172259807587, -0.01043244544416666, -0.02584349922835827, 0.0005770658608525991, -0.08291644603013992, -0.0021738975774496794, -0.022019023075699806, -0.027653902769088745, -0.006715462543070316, 0.0060648489743471146, -0.022109543904662132, -0.013793005608022213, 0.028717514127492905, 0.05272797867655754, -0.010415473021566868, 0.03392242267727852, 0.038584209978580475, -0.0002646653156261891, 0.0410735122859478, 0.015218698419630527, -0.008141154423356056, -0.011405536904931068, -0.04437749832868576, -0.021690888330340385, -0.03145574778318405, -0.017934301868081093, 0.016780169680714607, 0.005957356654107571, -0.00937449187040329, 0.02828754298388958, 0.05367844179272652, 0.005660337395966053, 0.04856405407190323, 0.007445281371474266, 0.07807362079620361, 0.03537074476480484, -0.07585587352514267, 0.007841306738555431, 0.024327287450432777, -0.006868215277791023, -0.0210572462528944, 0.03147837892174721, -0.03498603403568268, -0.013770376332104206, -0.015592093579471111, -0.011835508048534393, 0.022222694009542465, 0.002421413781121373, -0.008678617887198925, -0.027540752664208412, 0.0022757328115403652, -0.023173155263066292, -0.015365793369710445, -0.04829249158501625, 0.016678335145115852, 0.017832467332482338, 0.02656766027212143, -0.026137689128518105, 0.023331565782427788, -0.061508432030677795, 0.039579931646585464, -0.06951946765184402, 0.022901594638824463, -0.01142816711217165, -0.007281213533133268, 0.0007955871406011283, -0.010274035856127739, 0.047070469707250595, -0.030573176220059395, -0.01278596930205822, 0.045554257929325104, 0.058068666607141495, -0.012344683520495892, 0.04702521115541458, -0.03543863445520401, 0.008078922517597675, 0.0003917824651580304, 0.02385205589234829, 0.01249177847057581, -0.03310773894190788, -0.03582334518432617, -0.004828683566302061, 0.02828754298388958, 0.035551782697439194, -0.018839502707123756, -0.02993953600525856, 0.016734911128878593, -0.012967010028660297, -0.009532902389764786, 0.009629079140722752, -0.060241151601076126, -0.011835508048534393, 0.006636257749050856, 0.04089247062802315, -0.026522399857640266, 0.0341939814388752, -0.009448039345443249, -0.034804992377758026, 0.018839502707123756, -0.0026802446227520704, 0.0020833774469792843, -0.025820869952440262, -0.01749301701784134, 0.007660266477614641, -0.04430960863828659, 0.03690958768129349, 0.022969484329223633, -0.03220253810286522, 0.03066369704902172, -0.04546373710036278, 0.045938968658447266, 0.054628901183605194, 0.02849121391773224, 0.06834270060062408, 0.03670591488480568, 0.021770093590021133, -0.03496340289711952, -0.007813019677996635, -0.02935115434229374, -0.019823910668492317, -0.03718114644289017, -0.00029631200595758855, 0.02098935656249523, -0.009770517237484455, -0.03134259581565857, -0.03675117716193199, 0.00784696452319622, -0.040711432695388794, -0.032225169241428375, -0.04996711388230324, -0.009595134295523167, 0.03491814434528351, -0.04252183437347412, -0.03383190184831619, 0.06988154351711273, 0.023263676092028618, -0.0014398358762264252, 0.002032459946349263, -0.04770411178469658, -0.0164180900901556, -0.025209859013557434, -0.015444998629391193, 0.031365226954221725, -0.008921891450881958, -0.02173614874482155, -0.005088929086923599, -0.046074748039245605, 0.015659984201192856, 0.06947420537471771, -0.01948446035385132, 0.020491495728492737, 0.01734592206776142, 0.016655705869197845, -0.03306248039007187, 0.06449560075998306, -0.00594604155048728, -0.02198507823050022, 0.06101057305932045, 0.014890562742948532, -0.012174958363175392, -0.05870230868458748, -0.014279551804065704, -0.009928927756845951, -0.01341961044818163, 0.0009469254873692989, -0.01749301701784134, -0.015026343055069447, 0.0015204554656520486, 0.009685655124485493, 0.02901170402765274, 0.028853293508291245, -0.01367985550314188, -0.019563663750886917, -0.049786075949668884, -0.02980375476181507, 0.007264241110533476, -0.018579257652163506, -0.01662176102399826, 0.007977087050676346, 0.004557122942060232, 0.03353771194815636, -0.04510165750980377, -0.025277748703956604, 0.04220501333475113, 0.016802800819277763, 0.009753544814884663, 0.0014850960578769445, -0.004995580296963453, -0.0035670590586960316, 0.02239241823554039, 0.023161839693784714, -0.03258724883198738, 0.005923411343246698, 0.0032106360886245966, 0.03423924371600151, 0.01308016013354063, -0.02312789484858513, 0.019043173640966415, 0.004251617472618818, 0.02749549224972725, 0.031116297468543053, -0.0056631662882864475, 0.03310773894190788, 0.003510484006255865, 0.010477705858647823, -0.03439765051007271, 0.0393536314368248, -0.013215940445661545, 0.01980127952992916, 0.0034058201126754284, 0.028853293508291245, 0.013012269511818886, -0.008559810929000378, -0.03362823277711868, -0.01808139681816101, 0.056665606796741486, 0.016259679570794106, -0.02220006287097931, 0.0329945906996727, -0.00012711714953184128, -0.024146245792508125, 0.017719317227602005, 0.009351861663162708, 0.0026066971477121115, 0.053225841373205185, 0.03000742569565773, 0.03826738893985748, -0.035597044974565506, -0.03761111572384834, 0.012899119406938553, -0.00047346274368464947, -0.016734911128878593, 0.011416852474212646, -0.04313284531235695, 0.02523248828947544, -0.001364873955026269, -0.006511792540550232, -0.018896078690886497, 0.03220253810286522, 0.027246560901403427, 0.014064566232264042, -0.0006827905890531838, -0.00893886387348175, -0.0008740850607864559, 0.02191718854010105, 0.015716558322310448, -0.029328525066375732, 0.006772037595510483, 0.0010692691430449486, 0.060105372220277786, 0.029260633513331413, -0.005323715507984161, -0.013476185500621796, -0.0288759246468544, 0.008022347465157509, -0.02801598235964775, -0.011145291849970818, -0.01424560695886612, 0.00847494788467884, 0.02769916132092476, 0.04184293374419212, -0.011688413098454475, 0.007117145694792271, -0.0032898413483053446, -0.020695166662335396, -0.016791485249996185, -0.03747533634305, -0.03365086019039154, -0.021147767081856728, -0.015524203889071941, 0.0005908560706302524, 0.02153247781097889, 0.026658181101083755, -0.013691171072423458, 0.013544075191020966, 0.01278596930205822, 0.007897881790995598, -0.01596548967063427, 0.004808882251381874, -0.023286305367946625, -0.010771896690130234, 0.07843569666147232, 0.005086100194603205, 0.010720978491008282, -0.0105286231264472, -0.02876277267932892, 0.002731162356212735, -0.007394363638013601, -0.00019164809782523662, -0.009414094500243664, 0.013600650243461132, -0.002282804809510708, 0.005456666927784681, -0.02801598235964775, 0.03426187112927437, 0.028061242774128914, 0.03267776966094971, -0.01556946337223053, 0.0097082844004035, 0.012865174561738968, 0.002431314205750823, -0.0208762064576149, -0.0014412503223866224, -0.028264913707971573, -0.006789010483771563, -0.0300753153860569, -0.03134259581565857, 0.04096036031842232, 0.05141543969511986, 0.01762879639863968, -0.013295144774019718, 0.0001439128682250157, -0.011654467321932316, -0.013713800348341465, -0.012389943934977055, 0.010602171532809734, 0.013238569721579552, -0.005804603919386864, 0.0024341430980712175, -0.018070083111524582, -0.01630493998527527, -0.016542555764317513, 0.01616915874183178, -0.00974223017692566, -0.004613698460161686, 0.04575793072581291, -0.03589123487472534, -0.008757823146879673, -0.0023209929931908846, 0.05503624305129051, 0.00710583059117198, -0.01788904145359993, -0.02636398933827877, 0.01550157368183136, -0.0015204554656520486, 0.004271418787539005, 0.003634949214756489, -0.004313850309699774, 0.026748700067400932, -0.0075358012691140175, 0.011394222266972065, 0.022833704948425293, -0.014856617897748947, 0.022811073809862137, 0.006958735641092062, 0.0474325530230999, 0.010918991640210152, -0.028197022154927254, -0.001156960497610271, -0.015162123367190361, -0.008044976741075516, 0.015659984201192856, 0.016135213896632195, -0.06798062473535538, -0.01026837807148695, -0.005649022292345762, 0.04661786928772926, 0.013238569721579552, 0.04756833240389824, 0.0003709204029291868, -0.0070096529088914394, -0.005422722082585096, -0.0353933721780777, -0.007490541320294142, -0.055488843470811844, 0.03709062561392784, -0.020582016557455063, -0.009572504088282585, 0.019722074270248413, -0.003878222079947591, -0.0027198472525924444, 0.027993353083729744, -0.017176195979118347, -0.04478483647108078, 0.02364838495850563, 0.0021993564441800117, -0.006325094494968653, -0.026205578818917274, 0.012933064252138138, 0.02371627651154995, -0.00022241080296225846, 0.03611753508448601, 0.019586294889450073, 0.008837028406560421, 0.009114245884120464, 0.011563947424292564, -0.02410098724067211, -0.010709663853049278, -0.005533043295145035, -0.007439623586833477, 0.0037707295268774033, -0.03767900541424751, 0.0075810616835951805, -0.035212334245443344, -0.01630493998527527, 0.019574979320168495, 0.012401258572936058, 0.03199886903166771, -0.017063045874238014, 0.0050974152982234955, 0.0015925886109471321, 0.006624942645430565, -0.019914429634809494, -0.034148722887039185, 0.03159152716398239, -0.012514408677816391, -0.0019956862088292837, -0.010918991640210152, -0.0025854813866317272, -0.007371733896434307, -0.002178140915930271, 0.014324811287224293, 0.020649906247854233, 0.03276829048991203, -0.006726777646690607, -0.034737102687358856, -0.018986599519848824, 0.009923269972205162, -0.004214843735098839, -0.01933736354112625, 0.012469149194657803, -0.009894982911646366, 0.06730172038078308, 0.02419150620698929, 0.020061524584889412, 0.009210423566401005, -0.007728156633675098, -0.018511367961764336, -0.023263676092028618, -0.021441956982016563, -0.018782928586006165, -0.011767617426812649, 0.009289628826081753, 0.027382342144846916, -0.015795763581991196, 0.019495774060487747, -0.004862628411501646, 0.006607970222830772, 0.01655386947095394, 0.03172730654478073, -0.022697923704981804, 0.005996959283947945, -0.001292033470235765, -0.023026060312986374, -0.003824475686997175, -0.01440401654690504, -0.0049786074087023735, -0.03491814434528351, -0.0031823485624045134, 0.024259395897388458, -0.0266355499625206, 0.011218839325010777, -0.000931367336306721, 0.02337682619690895, 0.041707154363393784, -0.004350624047219753, -0.022743184119462967, 0.00013843216584064066, 0.04372122511267662, -0.05376896262168884, 0.009414094500243664, 0.022086912766098976, 0.017651427537202835, 0.002349280519410968, 0.03761111572384834, -0.03890102729201317, 0.011292386800050735, 0.007660266477614641, 0.0015077260322868824, -0.02557193860411644, 0.006387327332049608, -0.005394434556365013, -0.0008415544289164245, 0.007354761008173227, 0.020299140363931656, 0.02145327255129814, -0.02059333212673664, 0.013532760553061962, 0.008831370621919632, -0.030301615595817566, 0.02815176174044609, 0.020955411717295647, 0.006630599964410067, -0.011535660363733768, 0.014551112428307533, -0.0027877374086529016, -0.0018966797506436706, 0.02801598235964775, 0.022641349583864212, 0.030369505286216736, 0.048790354281663895, -0.016203105449676514, 0.00017918390221893787, 0.03383190184831619, -0.04426434636116028, 0.02218874916434288, 0.007354761008173227, -0.03790530562400818, -0.04774937406182289, 0.012197588570415974, -0.017300661653280258, 0.007564088795334101, -0.004101693630218506, 0.02862699329853058, 0.004446801729500294, -0.020118100568652153, 0.016384145244956017, 0.007003995589911938, -0.0176174808293581, -0.029124854132533073, 0.00018006788741331547, 0.006675859913229942, -0.008791767992079258, -0.003043739590793848, 0.011252784170210361, 0.034533433616161346, 0.011371592059731483, -0.015218698419630527, -0.011926027946174145, -0.01106608659029007, 0.04946925491094589, 0.011139634065330029, 0.041707154363393784, 0.007230295799672604, -0.03240621089935303, 0.0017170538194477558, 0.00639298465102911, 0.006868215277791023, 0.03663802519440651, 0.017934301868081093, 0.0019871999975293875, 0.004639157094061375, 0.015614723786711693, 0.045079030096530914, -0.0317951999604702, -0.004073406103998423, 0.0254361592233181, 0.027834942564368248, 0.025255117565393448, -0.020502811297774315, 0.01556946337223053, 0.017108306288719177, 0.006194971967488527, 0.02457621693611145, -0.017108306288719177, -0.00440719909965992, 0.022946855053305626, -0.028921183198690414, -0.008056292310357094, 0.015343163162469864, -0.007722499314695597, 0.009911955334246159, -0.057072944939136505, 0.006161026656627655, -0.03718114644289017, -0.0031003146432340145, 0.031161557883024216, -0.014596371911466122, 0.00848060566931963, -0.026115059852600098, -0.014234291389584541, 0.006404299754649401, -0.012853859923779964, -0.014268236234784126, 0.01959761045873165, 0.012299424037337303, -0.015659984201192856, 0.04919769614934921, 0.001530356123112142, 0.03623068332672119, 0.04883561283349991, 0.027110781520605087, -0.01070400606840849, -0.014347441494464874, -0.015082918107509613, 0.02066122181713581, -0.019054489210247993, 0.028785403817892075, -0.0043449667282402515, -0.027608642354607582, 0.0006895088590681553, 0.019574979320168495, 0.014370071701705456, 0.010036420077085495, 0.030641065910458565, 0.019529718905687332, -0.0170969907194376, 0.011767617426812649, 0.03482762351632118, -0.03720377758145332, 0.041231922805309296, -0.02324104495346546, -0.014958452433347702, -0.035800714045763016, -0.01421166118234396, -0.04365333542227745, -0.012604929506778717, -0.020627276971936226, -0.0013535589678213, 0.019631555303931236, -0.0038923658430576324, -0.009713942185044289, 0.01637282967567444, -0.01630493998527527, 0.025413528084754944, 0.010421130806207657, 0.047658853232860565, -0.03942152112722397, -0.019835224375128746, -0.006472189910709858, 0.023082634434103966, -0.007162405643612146, -0.00010183515405515209, -0.0515512190759182, 0.0359138660132885, 0.027586011216044426, 0.005711255129426718, -0.028921183198690414, 0.010517308488488197, 0.0146076874807477, 0.01119055226445198, -0.046346310526132584, 0.07472437620162964, 0.036864325404167175, -0.00468441704288125, -0.002134295180439949, -0.020389661192893982, -0.006670202594250441, 0.002644885331392288, 0.003948940895497799, 0.00884268619120121, 0.028400693088769913, 0.023806795477867126, 0.02437254786491394, -0.010941621847450733, 0.0019207241712138057, 0.020559385418891907, 0.0017467557918280363, 3.175718666170724e-05, -0.010398500598967075, 0.02794809266924858, 0.03292670100927353, 0.030256355181336403, 0.021702202036976814, 0.012853859923779964, 0.011117004789412022, 0.02198507823050022, -0.0018797072116285563, 0.014652946963906288, 0.011665782891213894, -0.0010742194717749953, 0.0336734913289547, 0.005267140455543995, 0.00559527613222599, 0.02464410662651062, 4.289540811441839e-05, -0.019982321187853813, -0.00013436582230497152, -0.00043032426037825644, -0.06684911996126175, 0.023557865992188454, -0.008418372832238674, 0.03220253810286522, 0.017447756603360176, -0.05277324095368385, -0.056529827415943146, 0.007139775902032852, -0.011365934275090694, -0.03946677967905998, 0.015648668631911278, -0.0033831901382654905, 0.05001237615942955, 0.03172730654478073, -0.02371627651154995, -0.014200346544384956, -0.019359994679689407, 0.015535518527030945, 0.007207666058093309, 0.011835508048534393, 0.0208762064576149, 0.011088716797530651, -0.005934726446866989, 0.04288391396403313, 0.027065521106123924, -0.005247339140623808, 0.002435557544231415, -0.0159768033772707, -0.009295286610722542, -0.01866977848112583, 0.0025982107035815716, 0.014426646754145622, -0.013996676541864872, -0.036592766642570496, 0.01562603935599327, -0.01670096442103386, -0.022098228335380554, 0.025549309328198433, 0.01696121133863926, 0.02239241823554039, 0.00034705278812907636, 0.017470385879278183, 0.008633358404040337, -0.04833775386214256, -0.00746791111305356, -0.0032332660630345345, 0.001077048247680068, 0.016587814316153526, -0.03346982225775719, -0.01630493998527527, -0.026816589757800102, 0.023897316306829453, -0.029170114547014236, -0.01424560695886612, 0.006381669547408819, 0.0051709627732634544, -0.019507089629769325, -0.028310172259807587, -0.026182949542999268, 0.006200629286468029, -0.015512888319790363, -0.021147767081856728, 0.012853859923779964, 0.002439800649881363, 0.026997631415724754, -0.010194830596446991, 0.0051568192429840565, -0.027110781520605087, -0.0231957845389843, -0.005832891445606947, -0.013227255083620548, -0.03489551320672035, 0.014449276961386204, 0.025526678189635277, 0.02132880687713623, 0.01610126905143261, -0.02132880687713623, -0.005012552719563246, -0.010211803019046783, 0.016508610919117928, -0.010918991640210152, 0.011382907629013062, 0.037113256752491, -0.0064099570736289024, -0.0020451892632991076, -0.003937625791877508, 0.005487783346325159, 0.04901665449142456, 0.020310455933213234, 0.03066369704902172, -0.0045316643081605434, -0.0014497365336865187, 0.014189031906425953, -0.0034227927681058645, -0.006251547019928694, 0.06843322515487671, -0.027789682149887085, 0.020785685628652573, -0.030460026115179062, 0.009861037135124207, -0.005606590770184994, 0.014754782430827618, 0.01590891368687153, 0.02410098724067211, -0.003725469345226884, 0.013215940445661545, -0.021894557401537895, 0.006438244599848986, -0.005187935195863247, -0.016734911128878593, 0.0008252890547737479, -0.01384958066046238, -0.0037792157381772995, -0.03881051018834114, -0.0015600579790771008, -0.005434037186205387, -0.0018698065541684628, -0.0017311975825577974, 0.01802482269704342, 0.01696121133863926, 0.01688200607895851, -0.01966550014913082, -0.036592766642570496, 0.019359994679689407, -0.009312259033322334, 0.03833527863025665, 0.0062968069687485695, -0.017730632796883583, 0.0031597185879945755, 0.0051907640881836414, 0.0159768033772707, -0.009402778930962086, 0.019077118486166, -0.01635020039975643, 0.006251547019928694, -0.044943246990442276, 0.012899119406938553, -0.03618542477488518, 0.06372617930173874, -0.0002782786905299872, -0.0007195643847808242, -0.02000495046377182, 0.039647821336984634, -0.03346982225775719, 0.00586117897182703, 0.022890279069542885, -0.031568896025419235, 0.03437502309679985, -0.014121141284704208, 0.03713588789105415, 0.022562144324183464, 0.011569605208933353, 0.0185566283762455, -0.02464410662651062, 0.037724267691373825, -0.002091863891109824, 0.026816589757800102, -0.010375870391726494, -0.002267246600240469, -0.02140801213681698, 0.042363423854112625, -0.005134189035743475, 0.009159506298601627, 0.0012496021809056401, -0.0109981968998909, -0.01235599908977747, -0.01668965071439743, -0.00546232471242547, -0.005377461668103933, 0.023557865992188454, -0.02656766027212143, 0.003264382481575012, 0.02172483317553997, 0.00956684723496437, -0.007711184211075306, 0.0006707683787681162, 0.015320532955229282, 0.071510910987854, 0.015230013057589531, 0.00730384374037385, 0.0038273045793175697, -0.025685088708996773, 0.0035359428729861975, 0.02993953600525856, -0.04987659677863121, -0.019620239734649658, 0.010081680491566658, 0.008424030616879463, 0.027042891830205917, -0.01010431069880724, -0.025481417775154114, -0.015682613477110863, -0.006177999544888735, -0.024078356102108955, -0.02138538286089897, -0.023603126406669617, -0.013544075191020966, -0.00944238156080246, 0.018205862492322922, -0.007032283116132021, -0.03835790976881981, 0.0027919805143028498, 0.045554257929325104, -0.04225027561187744, 0.010392842814326286, -0.008599412627518177, -0.02867225371301174, -0.017741946503520012, -0.019326049834489822, -0.01854531280696392, 0.02220006287097931, -0.0004218379908706993, 0.023003429174423218, 0.009719599969685078, -0.005711255129426718, 0.03297195956110954, -0.002183798234909773, -0.002910788170993328, -0.02160036750137806, 0.013498815707862377, 0.01235599908977747, 0.036275945603847504, -0.013238569721579552, -0.026590289548039436, 0.015648668631911278, -0.002608111361041665, -0.0027410630136728287, -0.027857571840286255, 0.005968671757727861, 0.009725256823003292, -0.021498532965779305, 0.012672819197177887, 0.027246560901403427, 0.023829426616430283, -0.02119302749633789, -0.0515512190759182, 0.03994201123714447, 0.00019606803834903985, -0.01136027742177248, -0.0063024647533893585, -0.03638909384608269, -0.0034114776644855738, -0.008452317677438259, -0.01576181873679161, 0.026001909747719765, -6.510554521810263e-05, -0.02074042707681656, -0.0038018457125872374, -0.019631555303931236, -0.003632120555266738, 0.0017085676081478596, -0.035483893007040024, -0.01801350712776184, -0.027925461530685425, 0.05069127678871155, -0.0445132777094841, -0.023263676092028618, 0.013374350033700466, 0.013521445915102959, 0.007479226216673851, 0.03423924371600151, 0.004025317262858152, -0.0008323609363287687, -0.00930094439536333, -0.011054771952331066, 0.021611683070659637, 0.031297337263822556, -0.0025289063341915607, -0.021102506667375565, 0.009425409138202667, 0.03894628956913948, 0.015874968841671944, -0.01630493998527527, 0.010653088800609112, -0.04184293374419212, 0.013578020967543125, 0.0033237861935049295, 0.0008401400409638882, -0.032360948622226715, 0.027902832254767418, -0.00047593790804967284, -0.03326614946126938, -0.06001485139131546, 0.007032283116132021, 0.008837028406560421, -0.011744988150894642, 0.033220890909433365, 0.025074077770113945, 0.009894982911646366, 0.014585057273507118, -0.016180474311113358, -0.026612920686602592, 0.03530285507440567, 0.01162052247673273, 0.008667303249239922, 0.012740708887577057, 0.01981259509921074, -0.005187935195863247, -0.015377108007669449, -0.008050634525716305, -0.03197623789310455, -0.01994837448000908, 0.004390226677060127, -0.007332131266593933, 0.010522966273128986, 0.007886567153036594, -0.03389979153871536, -0.0295548252761364, -0.014426646754145622, -0.027246560901403427, -0.012740708887577057, 0.04403804615139961, -0.020174674689769745, 0.019688129425048828, 0.0035783741623163223, 0.0300753153860569, -0.024259395897388458, 0.019393939524888992, -0.019167639315128326, -0.007790389470756054, -0.013453555293381214, -0.01981259509921074, -0.011156606487929821, -0.009153848513960838, 0.00044694318785332143, -0.02416887693107128, 0.006641915068030357, -0.01304621435701847, 0.018771613016724586, -0.006851242855191231, 0.013000954873859882, 0.01762879639863968, -0.01974470540881157, -0.03131996840238571, -0.020695166662335396, 0.010030762292444706, -0.011982602998614311, -0.004234645050019026, 0.017130935564637184, 0.00840705819427967, -0.002294119680300355, 0.02014072984457016, -0.008322195149958134, -0.029238004237413406, 0.0021159083116799593, -0.015931544825434685, 0.013860896229743958, -0.014517166651785374, 0.0020565043669193983, -0.02948693558573723, -0.013962730765342712, 0.01438138633966446, -0.010059050284326077, -0.01762879639863968, 0.017187511548399925, 0.0043251654133200645, -0.003369046375155449, -0.01694989576935768, 0.0031682047992944717, -0.016123900189995766, 0.020763056352734566, -0.019439199939370155, 0.01801350712776184, 0.01467557717114687, -0.014109826646745205, 0.034420281648635864, -0.008774795569479465, -0.04856405407190323, 0.022007707506418228, -0.005711255129426718, -0.007349103689193726, 0.013555390760302544, -0.02742760069668293, 0.020378345623612404, -0.018635833635926247, -0.0106983482837677, -0.002063576364889741, 0.034148722887039185, 0.006404299754649401, 0.013487500138580799, -0.01602206379175186, -0.039647821336984634, 0.009283971972763538, -0.004011173732578754, -0.029396414756774902, -0.013476185500621796, 0.004019659943878651, -0.06327357888221741, 0.02080831676721573, -0.004449630621820688, 0.0024525299668312073, -0.028129132464528084, 0.021034616976976395, 0.013928785920143127, 0.02536826767027378, 0.014200346544384956, 0.009578161872923374, -0.03496340289711952, -0.037588488310575485, -0.016327569261193275, 0.0054142358712852, 0.012876489199697971, 0.031365226954221725, 0.05046497657895088, -0.006449559703469276, -0.0029645345639437437, -0.034148722887039185, 0.05847600847482681, -0.000518722808919847, -0.0002535271050874144, -0.004243131261318922, -0.013215940445661545, -0.046210531145334244, -0.01189208310097456, 0.011303702369332314, 0.02444043755531311, 0.006919133011251688, -0.009849722497165203, -0.016146529465913773, 0.0017043245024979115, -0.007088858168572187, -0.007999717257916927, -0.0075414590537548065, 0.009102931246161461, -0.002530320780351758, -0.008950178511440754, -0.004161097574979067, 0.01106042880564928, 0.033877160400152206, 0.0055047557689249516, 0.00746791111305356, -0.022290583699941635, 0.011846822686493397, -0.022358473390340805, -0.011688413098454475, 0.022958170622587204, 0.0018811216577887535, -0.012288108468055725, 0.008633358404040337, -0.01694989576935768, 0.041096143424510956, 0.02172483317553997, 0.002670343965291977, -0.00043527456000447273, 0.02187192812561989, 0.015535518527030945, 0.021226972341537476, -0.011880768463015556, -0.005929069127887487, -0.014664262533187866, -0.029713235795497894, -0.006110109388828278, 0.01017220038920641, -0.025617199018597603, -0.003357731271535158, 0.007315158378332853, 0.0043789115734398365, -0.014222976751625538, -0.009295286610722542, 0.018375588580965996, -0.012265478260815144, -0.01708567515015602, 0.022878965362906456, -0.025617199018597603, 0.003909338265657425, -0.0022064284421503544, -0.056348785758018494, -0.02928326465189457, 0.011699727736413479, -0.020582016557455063, 0.02563982829451561, -0.04960503429174423, -0.02098935656249523, 0.013396980240941048, -0.047070469707250595, -0.032360948622226715, 0.014324811287224293, -0.022754499688744545, 0.008175100199878216, -0.00029401364736258984, -0.01689331978559494, 0.029622714966535568, -0.014426646754145622, 0.04154874384403229, 0.020242566242814064, 0.018262438476085663, 0.005210565403103828, -0.00835048221051693, 0.028400693088769913, -0.011439482681453228, -0.02828754298388958, 0.0208762064576149, 0.014551112428307533, 0.011778932996094227, 0.011298044584691525, 0.02147590182721615, -0.013114104978740215, -0.02801598235964775, -0.003043739590793848, -0.003980057314038277, -0.0033549026120454073, 0.01588628441095352, 0.022279268130660057, 0.005589618347585201, -0.0008854001061990857, -0.0007757858838886023, -0.01629362441599369, 0.02876277267932892, -0.03174993768334389, -0.015343163162469864, -0.013589335605502129, 0.024146245792508125, 0.0182171780616045, -0.03079947642982006, 0.003929139580577612, 0.008197729475796223, 0.0022361301816999912, -0.04575793072581291, 0.02385205589234829, -0.013125419616699219, 0.007473568897694349, -0.007903539575636387, 0.03688695654273033, -0.011869452893733978, -0.008339167572557926, 0.015512888319790363, 0.0340355709195137], [0.016373828053474426, 0.056788403540849686, 0.02488725259900093, 0.02677374891936779, -0.029264893382787704, 0.028926290571689606, -0.03274765610694885, -0.00673576258122921, 0.012304557487368584, 0.041140150278806686, -0.04358292371034622, 0.024609114974737167, -0.016458479687571526, -0.03630298003554344, -0.014838026836514473, 0.051225654780864716, 0.0231337770819664, 0.02643514797091484, -0.0035795075818896294, -0.00598297780379653, -0.01573290303349495, 0.05780421197414398, -0.002932535717263818, -0.01550313737243414, 0.011185961775481701, 0.006844598799943924, 0.03364253416657448, -0.029168149456381798, 0.05659491941332817, -0.022456573322415352, 0.03148999437689781, -0.015696624293923378, 0.04914567247033119, 0.001046794350259006, 0.04188991338014603, 0.06119023263454437, -0.03492438420653343, 0.02075147069990635, 0.01653103716671467, 0.018272418528795242, -0.014511517249047756, 0.018635207787156105, -0.028103971853852272, 0.014825933612883091, -0.07241246849298477, 0.035214614123106, -0.003999737091362476, 0.018804507330060005, 0.03526298701763153, 0.017135683447122574, -0.034029509872198105, 0.019421247765421867, 0.019300317391753197, 0.03564996272325516, 0.046920571476221085, 0.009251092560589314, 0.03245742619037628, 0.04880706965923309, 0.023907724767923355, -0.026459332555532455, -0.037802502512931824, 0.05108053982257843, -0.053740985691547394, -0.010798987932503223, -0.018707765266299248, -0.028563503175973892, -0.019421247765421867, 0.03630298003554344, 0.0033406722359359264, 0.022855639457702637, 0.027378395199775696, 0.017643585801124573, 0.004317176528275013, -0.0523865781724453, -0.0008880746318027377, -0.07013899832963943, 0.014632446691393852, -0.013713384047150612, 0.0231337770819664, 0.052725180983543396, -0.007001806981861591, 0.05262843519449234, -0.0632702186703682, -0.02945837937295437, 0.01644638553261757, 0.0032016034238040447, -0.0671883225440979, -0.014971048571169376, -0.026507705450057983, 0.0017580098938196898, -0.0029280008748173714, 0.00830784346908331, 0.047162432223558426, 0.03410206735134125, -0.020993327721953392, -0.018054746091365814, 0.003618809627369046, 0.02626584656536579, -0.0010294107487425208, 0.035867635160684586, -0.012407347559928894, 0.026290033012628555, -0.005009496584534645, -0.00861621368676424, 0.0030716045293956995, -0.03983411565423012, -0.03799599036574364, 0.033908579498529434, 0.03415043652057648, -0.014342216774821281, 0.034077879041433334, 0.039882488548755646, -0.02371423877775669, 0.013713384047150612, -0.020509611815214157, 0.005614143330603838, -0.020775655284523964, -0.03782668709754944, 0.016833359375596046, -0.04442942887544632, -0.05195123329758644, 0.04699312895536423, 0.022323550656437874, -0.0697520300745964, 0.020763562992215157, -0.01196595560759306, -0.015321743674576283, -0.04307502135634422, -0.03151417896151543, 0.00184870685916394, -0.014148729853332043, 0.026701191440224648, -0.0028569549322128296, -0.04305083304643631, -0.007842266000807285, 0.01631336472928524, 0.04341362416744232, 2.3028531359159388e-05, -0.021053792908787727, -0.039422955363988876, -0.03383602201938629, 0.021561697125434875, 0.007848312146961689, 0.020993327721953392, -0.004855311941355467, -0.0030398606322705746, 0.03274765610694885, 0.05901350453495979, 0.04034201800823212, -0.022202622145414352, -0.05780421197414398, 0.04360710829496384, 0.0003612763248383999, 0.00033765731495805085, 0.043365251272916794, -0.017498470842838287, 0.04851683974266052, 0.020231474190950394, -0.03898761048913002, -0.03226394206285477, -0.04455035924911499, 0.024959810078144073, -0.02706398069858551, -0.05654654651880264, -0.010152015835046768, 0.016797080636024475, 0.006626926362514496, 0.02133193053305149, -0.06351207196712494, -0.013265945017337799, -0.058384671807289124, -0.025999801233410835, -0.03422299399971962, -0.017474286258220673, -0.05108053982257843, -0.012141303159296513, -0.011379447765648365, 0.024754229933023453, 0.01485011912882328, -0.020944956690073013, 0.024621207267045975, 0.006953435484319925, -0.0411643385887146, 0.002445795340463519, -0.06505996733903885, 0.01410035789012909, -0.018175674602389336, 0.027305837720632553, -0.015370115637779236, 0.010484571568667889, -0.005801583640277386, -0.0007486279937438667, -0.018889158964157104, -0.024814695119857788, -0.05993256717920303, -0.018417533487081528, -0.05108053982257843, 0.008332029916346073, 0.004991357214748859, 0.022891918197274208, 0.01694219745695591, -0.0021585882641375065, 0.023532843217253685, 0.008543656207621098, -0.052096348255872726, -0.0018048699712380767, -0.02556445635855198, -0.03903598338365555, 0.021779369562864304, 0.023363543674349785, 0.0286602471023798, -0.010502710938453674, -0.035214614123106, -0.01923985406756401, -0.022940291091799736, -0.044816404581069946, 0.022492852061986923, 0.00897295493632555, 0.021150536835193634, -0.030812788754701614, -0.01937287487089634, 0.012649206444621086, 0.03415043652057648, 0.019929150119423866, -0.05417633056640625, 0.03451322391629219, 0.04126108065247536, -0.0019877755548805, -0.005605073645710945, -0.05388610064983368, -0.00972876325249672, 0.02677374891936779, 0.007848312146961689, -0.03226394206285477, 0.00011705579527188092, 0.035456474870443344, 0.0025334691163152456, 0.0256853848695755, -0.010097597725689411, 0.01643429324030876, 0.03777831792831421, -0.003376950975507498, 0.021283559501171112, -0.040100160986185074, 0.02342400699853897, -0.004299037158489227, -0.016506850719451904, -0.0026438171043992043, 0.023037033155560493, 0.0056897238828241825, 0.03267509862780571, -0.0047525218687951565, 0.053112152963876724, -0.03175603598356247, -0.001423186855390668, 0.0011783050140365958, 0.022541223093867302, 0.0033164862543344498, -0.009625973179936409, -0.012891064397990704, 0.017546843737363815, -0.017051033675670624, -0.03303788974881172, 0.034029509872198105, -0.04839590936899185, -0.025612827390432358, 0.055579110980033875, -0.06873621791601181, -0.01085340604186058, 0.06844598799943924, -0.08286076784133911, 0.016784988343715668, -0.01966310665011406, 0.034996941685676575, -0.023436101153492928, 0.04471965879201889, 0.016131971031427383, -0.03366671875119209, 0.050548452883958817, 0.014342216774821281, 0.011458052322268486, -0.028176529332995415, 0.07100968807935715, -0.02209378592669964, -0.021948670968413353, 0.016676152125000954, -0.040898293256759644, -0.0004908974515274167, -0.014753376133739948, 0.051274027675390244, 0.019094739109277725, -0.06946180015802383, -0.02200913429260254, -0.00549019081518054, -0.053354013711214066, -0.010714337229728699, -0.03862482309341431, -0.02015891671180725, -0.04706568643450737, -0.024705858901143074, -0.00917853508144617, 0.04803312197327614, -0.012123163789510727, -0.01806683838367462, -0.039882488548755646, -0.005272517912089825, 0.0067659951746463776, -0.0408257357776165, 0.004072294570505619, -0.0017292891861870885, -0.004876474384218454, 0.006669251713901758, -0.013120830059051514, 8.76265112310648e-05, 0.009656205773353577, 0.004036015830934048, 0.02798304334282875, 0.0002539515553507954, -0.028684433549642563, 0.006929249502718449, 0.039471328258514404, -0.005299726966768503, 0.056207943707704544, -0.063608817756176, -0.004658801946789026, -0.009444579482078552, 0.04237363114953041, 0.03306207433342934, -0.04573546722531319, -0.001511616399511695, -0.013519897125661373, 0.0506935678422451, -0.005804607179015875, -0.007866451516747475, -0.012576648034155369, -0.018937529996037483, -0.027088165283203125, 0.01869567111134529, -0.03785087540745735, -0.025467712432146072, -0.001496500219218433, -0.03158673644065857, 0.012395254336297512, -0.04556616395711899, -0.033739276230335236, 0.022057507187128067, 0.012806413695216179, 0.046291738748550415, -0.031901150941848755, 0.0034313693176954985, -0.014269658364355564, 0.015370115637779236, -0.028805362060666084, 0.0369076244533062, -0.07270269840955734, 0.04283316060900688, -0.016700338572263718, -0.008610166609287262, 0.009118069894611835, -0.01745009981095791, -0.01869567111134529, -0.016119876876473427, 0.0205821692943573, 0.038382962346076965, -0.00696552824229002, 0.036157865077257156, -0.037125296890735626, -0.0036399723030626774, 0.026797935366630554, -0.030401628464460373, -0.018417533487081528, 0.021150536835193634, -0.06626926362514496, 0.03398113697767258, -0.03685925528407097, -0.00020425717229954898, 0.02941000834107399, -0.014172915369272232, -0.004707173444330692, -0.0034102066420018673, 0.04075317829847336, -0.005239262245595455, 0.009511090815067291, 0.005329959560185671, 0.023037033155560493, 0.025032367557287216, -0.012709670700132847, 0.024318885058164597, 0.03893923759460449, -0.008531562983989716, 0.0035492752213031054, 0.014644539915025234, -0.03306207433342934, 0.013592454604804516, -0.0520479753613472, 0.0011964443838223815, -0.015176628716289997, 0.036254607141017914, 0.015176628716289997, -0.023484472185373306, -0.013169202022254467, -0.03748808801174164, -0.009952482767403126, -0.006971574854105711, 0.022226806730031967, 0.05296703800559044, 0.003413229715079069, -0.025612827390432358, 0.01969938538968563, -0.022408202290534973, 0.06530182808637619, -0.06496322900056839, 0.021065885201096535, -0.021634254604578018, 0.004740429110825062, -0.014088264666497707, 0.010883637703955173, 0.0556274838745594, -0.04776707664132118, -0.008017613552510738, -0.0029038151260465384, 0.02162216044962406, -0.00630646338686347, 0.044913146644830704, -0.0127580426633358, -0.0007898195763118565, -0.07541152089834213, 0.0011578981066122651, 0.04810567945241928, -0.0283216442912817, 0.019941244274377823, 0.017425913363695145, 0.024572836235165596, 0.03768157213926315, -0.005003450438380241, -0.0036097399424761534, 0.0018078931607306004, -0.04544523358345032, 0.020279845222830772, -0.00993434339761734, -0.028539316728711128, -0.018175674602389336, 0.021344022825360298, 0.023484472185373306, -0.03475508466362953, 0.018925437703728676, 0.01995333656668663, -0.001756498240865767, -0.010200387798249722, -0.026918863877654076, -0.008979001082479954, 0.0028433504048734903, -0.051177285611629486, -0.02986953966319561, -0.047162432223558426, -0.015466858632862568, 0.006119023077189922, -0.027789555490016937, 0.002683119149878621, 0.0015244651585817337, 0.03182859346270561, 0.0573204942047596, 0.0370769277215004, 0.045203376561403275, -0.006385067477822304, 0.0028100949712097645, -0.016385922208428383, 0.0021207977551966906, -0.05470842123031616, 0.008017613552510738, -0.041768983006477356, 0.008555748499929905, 0.021307744085788727, 0.01823613978922367, -0.002079984173178673, -0.024863066151738167, 0.0023157962132245302, -0.046122439205646515, -0.0030957902781665325, -0.03168347850441933, -0.005961814895272255, 0.02820071578025818, -0.01006131898611784, -0.033569976687431335, 0.04900055751204491, 0.04263967648148537, -0.012915250845253468, -0.007515756879001856, -0.03286858648061752, -0.004528802819550037, -0.015370115637779236, -0.00515763508155942, 0.04094666615128517, -0.011143635958433151, -0.039471328258514404, -0.00871900375932455, -0.01661568693816662, -0.0073464554734528065, 0.08281239122152328, -0.02539515495300293, -0.016180342063307762, 0.03204626590013504, -0.001104991533793509, -0.03456159681081772, 0.03751227259635925, 0.005190890748053789, -0.018332883715629578, 0.047670334577560425, 0.011826886795461178, 0.006753901951014996, -0.01677289605140686, 0.0008842956158332527, 0.019844500347971916, -0.051225654780864716, -0.04396989941596985, -0.018901251256465912, 0.0048190332017838955, -0.006723669823259115, -0.0006220301729626954, 0.044235941022634506, 0.02757188305258751, -0.03274765610694885, -0.011155729182064533, -0.021477045491337776, -0.012516183778643608, -0.01740172877907753, -0.004274851176887751, -0.023375635966658592, 0.013846405781805515, 0.015116163529455662, 0.009245045483112335, -0.06331858783960342, -0.017341263592243195, 0.02580631524324417, -0.02711235173046589, -0.01370129082351923, 0.017933817580342293, -0.0011873746989294887, -0.020678911358118057, 0.03765738755464554, 0.028539316728711128, -0.016410106793045998, -0.0045801978558301926, -0.026628633961081505, 0.05161263048648834, 0.004383687395602465, -0.02204541303217411, 0.004048108588904142, -0.0007626104634255171, 0.024367256090044975, 0.04138201102614403, 0.013060365803539753, 0.012080837972462177, -0.016700338572263718, -0.005145542323589325, -1.8481872757547535e-05, 0.03506949916481972, -0.016784988343715668, 0.0032106731086969376, -0.0024639347102493048, 0.007310176733881235, 0.0360611192882061, -0.012292464263737202, -0.02229936420917511, 0.0017549865879118443, 0.03594019263982773, 0.033690907061100006, 0.0033195095602422953, 0.002176727633923292, -0.02364168129861355, -0.03361834958195686, 0.013096644543111324, -0.002479050774127245, -0.0004209851613268256, 0.006173441186547279, 0.015805460512638092, 0.07134829461574554, -0.051854487508535385, 0.01232269685715437, -0.006796227302402258, 0.011911537498235703, -0.013519897125661373, 0.01597476191818714, -0.008966908790171146, 0.018792415037751198, 0.030643487349152565, 0.03439229726791382, -0.01677289605140686, 0.014426866546273232, 0.03794761747121811, -0.024838879704475403, 0.008555748499929905, 0.02025565877556801, -0.007310176733881235, 0.01937287487089634, 0.022891918197274208, -0.035117872059345245, 0.01100456714630127, 0.018502185121178627, 0.01940915361046791, -0.0011578981066122651, 0.0023883539251983166, 0.003006604965776205, -0.0017444053664803505, 0.03973737359046936, 0.0009576089796610177, 0.007455292157828808, 0.005605073645710945, 0.0024593998678028584, 0.007431106176227331, 0.026846306398510933, 0.011385494843125343, 0.021053792908787727, 0.007618546485900879, 0.0113129373639822, 0.004737405572086573, -0.018586834892630577, 0.004365548025816679, -0.026628633961081505, -0.006294370628893375, -0.033158816397190094, 0.02204541303217411, 0.00266195647418499, -0.041309453547000885, -0.039132725447416306, 0.04000341519713402, 0.011318983510136604, -0.013157108798623085, -0.037754129618406296, -0.011488284915685654, -0.03354579210281372, -0.001061910530552268, -0.008495284244418144, 0.021827740594744682, 0.003945318982005119, 0.016095692291855812, 0.02020728774368763, -0.03519042953848839, -0.0038485752884298563, -0.03971318528056145, 0.006227859761565924, 0.013483618386089802, 0.019360782578587532, -0.050596825778484344, 0.027257466688752174, 0.0012357464293017983, 0.026991423219442368, -0.011173868551850319, 0.01186316553503275, 0.000496943888720125, 0.01085340604186058, -0.03267509862780571, -0.03405369445681572, 0.015757089480757713, -0.0009749925811775029, -0.004667871631681919, -0.03090953268110752, 0.07550825923681259, 0.011089217849075794, 0.0007731918012723327, -0.017292890697717667, 0.012050606310367584, -0.024294698610901833, -0.0075218030251562595, -0.010871545411646366, 0.022734710946679115, 0.015950575470924377, -0.03364253416657448, 0.008017613552510738, -0.020715191960334778, -0.030812788754701614, -0.028539316728711128, 0.002423121128231287, -0.012074791826307774, 0.02075147069990635, 0.03814110532402992, -0.0314658060669899, 0.006451578810811043, -0.011657585389912128, 0.0306193009018898, -0.008277611806988716, -0.029192335903644562, 0.008706910535693169, 0.02003798633813858, 0.002206959994509816, 0.02100542187690735, 0.043534550815820694, 0.005145542323589325, 0.006239952519536018, 0.00811435654759407, -0.008368308655917645, 0.030014654621481895, -0.011089217849075794, -0.014741282910108566, -0.00014615441614296287, 0.02941000834107399, 0.02468167245388031, 0.0011473168851807714, -0.002798001980409026, -0.037971802055835724, 0.0030428837053477764, 0.010133876465260983, -0.029216522350907326, -0.016204528510570526, -0.016168249770998955, -0.027765369042754173, 0.014463145285844803, 0.023859353736042976, 0.024863066151738167, 0.004311129916459322, 0.025370970368385315, 0.020557982847094536, -0.050016362220048904, -0.021525416523218155, -0.02694305032491684, 0.026338404044508934, -0.029482565820217133, 0.0181998610496521, 0.00765482522547245, -0.03598856180906296, -0.015587788075208664, 0.011155729182064533, -0.0304500013589859, -0.0370769277215004, 0.023895632475614548, -0.021936576813459396, 0.01862311363220215, -0.020316123962402344, -0.014874305576086044, -0.011343169026076794, -0.014729189686477184, 0.00099388777744025, 0.026967236772179604, 0.016954289749264717, -0.014245472848415375, -0.012020373716950417, -0.001227432512678206, -0.010986427776515484, -0.02036449685692787, 0.019433340057730675, 0.0075338962487876415, -0.04111596569418907, 0.012292464263737202, -0.02216634340584278, -0.02999047003686428, 0.02619328908622265, -0.0018577765440568328, 0.028103971853852272, 0.007515756879001856, 0.028297459706664085, 0.008688771165907383, 0.008428772911429405, -0.01865939237177372, -0.016954289749264717, 0.0367383249104023, 0.0026816073805093765, -0.0017973119392991066, 0.021694717928767204, -0.00318951066583395, 0.01789753884077072, 0.005230192560702562, 0.010841312818229198, 0.024415627121925354, 0.042688045650720596, 0.014898491092026234, -0.04179317131638527, -0.01954217627644539, 0.005840885918587446, -0.010720383375883102, 0.0002180506708100438, -0.00805389229208231, -0.021440766751766205, 0.006669251713901758, 0.014644539915025234, 0.04370385408401489, -0.004861358553171158, -0.05654654651880264, 0.009293417446315289, -0.009069697931408882, -0.05050007998943329, -0.006391114089637995, -0.019965428858995438, 0.025201668962836266, 0.04455035924911499, -0.011173868551850319, 0.03364253416657448, -0.035214614123106, 0.008126449771225452, 0.010436199605464935, 0.034827642142772675, -0.026217475533485413, 0.004510663449764252, 0.009716670028865337, -0.02556445635855198, -0.0028267225716263056, -0.04070480540394783, -0.012419439852237701, -0.04849265515804291, -0.036254607141017914, 0.02999047003686428, -0.022057507187128067, -0.006953435484319925, 0.003497880417853594, 0.05224146321415901, 0.03226394206285477, 0.0027345139533281326, -0.03898761048913002, 0.0011140613351017237, 0.027305837720632553, -0.039471328258514404, -0.008186914026737213, 0.026048174127936363, 0.040680620819330215, -0.012123163789510727, 0.027426768094301224, -0.03178022429347038, -0.019433340057730675, -0.001916729612275958, -0.02095704898238182, -0.01995333656668663, 0.009855738840997219, 0.00476763816550374, 0.033860206604003906, -0.013253852725028992, 0.008422726765275002, 0.0130119938403368, -0.005898327101022005, 0.05098379775881767, -0.046436857432127, -0.028224902227520943, -0.003503926796838641, 0.008174821734428406, 0.013120830059051514, -0.019046366214752197, -0.001933357329107821, 0.0011405146215111017, -0.009492950513958931, 0.01501942053437233, -0.000707814353518188, 0.013338503427803516, 0.012649206444621086, -0.020642632618546486, -0.028466759249567986, 0.024609114974737167, -0.05330564081668854, 0.00798738095909357, 0.002123821061104536, -0.03074023127555847, -0.021319838240742683, 0.000260753819020465, -0.025637013837695122, -0.018260326236486435, -0.017474286258220673, 0.053740985691547394, -0.010031086392700672, -0.009420393034815788, -0.023750517517328262, 0.010738522745668888, -0.01215339545160532, -0.05577259883284569, 0.02141658030450344, 0.0208361204713583, -0.004060201812535524, -0.0041055502369999886, -0.012794321402907372, 0.0007429594406858087, -0.01869567111134529, 0.022480759769678116, -0.004002760164439678, -0.025588642805814743, 0.04839590936899185, -0.012576648034155369, 0.01367710530757904, 0.0018774275667965412, -0.041430383920669556, -0.017292890697717667, -0.0099948076531291, 0.02417377009987831, 0.03879412263631821, -0.02070309780538082, 0.013556175865232944, 0.0033497419208288193, 0.020932864397764206, 0.0010324340546503663, 0.014438959769904613, -0.006947388872504234, 0.017002660781145096, 0.01160921435803175, 0.029942097142338753, -0.014318030327558517, 0.013834313489496708, 0.020110543817281723, -0.015757089480757713, -0.022154249250888824, -0.016893824562430382, -0.015345929190516472, 0.028370017185807228, -0.005541585851460695, -0.001993821933865547, 0.0023883539251983166, 0.005859025288373232, 0.017389634624123573, -0.057417236268520355, 0.01665196567773819, -0.02539515495300293, 0.00887016486376524, 0.02556445635855198, -0.028418388217687607, 0.027716998010873795, 0.003945318982005119, 0.01321757398545742, -0.0008064473513513803, -0.01697847619652748, -0.02405283972620964, 0.04590476676821709, 0.0037095067091286182, -0.014438959769904613, 0.011754329316318035, 0.006747855804860592, 0.011355262249708176, 0.04109178110957146, -0.012491998262703419, 0.012304557487368584, -0.01602313295006752, -0.014233379624783993, 0.006566461641341448, 0.0025954453740268946, 0.01815149001777172, -0.005299726966768503, -0.03644809499382973, 0.010430153459310532, 0.017087312415242195, 0.009849692694842815, 0.040051788091659546, 0.007890637964010239, 0.003512996481731534, -0.006282277870923281, 0.019469618797302246, 0.04227688908576965, -0.01983240619301796, 0.0035099731758236885, -0.0355532169342041, 0.002477539237588644, -0.034658338874578476, 0.0009651670698076487, -0.014426866546273232, -0.012407347559928894, -0.019808221608400345, 0.04355873912572861, 0.010895730927586555, -0.007564128376543522, -0.010998521000146866, 0.04839590936899185, -0.010702244006097317, 0.030982090160250664, 0.0004485721583478153, 0.01928822509944439, -0.016071505844593048, -0.00010590762394713238, -0.04036620259284973, 0.023605400696396828, 0.03243324160575867, 0.008567841723561287, -0.017123591154813766, 0.010145969688892365, 0.01644638553261757, -0.005487167742103338, -0.022976569831371307, 0.014946863055229187, -0.016325457021594048, 0.02061844803392887, -0.024355163797736168, 0.0455903522670269, 0.037125296890735626, 0.01541848760098219, 0.023605400696396828, -0.0067659951746463776, -0.046533599495887756, 0.015164535492658615, 0.036786697804927826, 0.018187768757343292, 0.02493562363088131, 0.02539515495300293, 0.03567414730787277, -0.017788702622056007, 0.0037881105672568083, 0.022662153467535973, 0.009390161372721195, -0.0013959776842966676, 0.013810127042233944, 0.03727041557431221, 0.060222797095775604, -0.001986264018341899, 0.03335230425000191, 0.039132725447416306, 0.03526298701763153, 0.005224146414548159, 0.010532942600548267, 0.0037034600973129272, 0.007231572642922401, 0.020860306918621063, 0.05761072412133217, -0.011893398128449917, 0.026362590491771698, 0.037802502512931824, 0.016506850719451904, -0.007745522540062666, 0.01806683838367462, -0.009486904367804527, -0.05954559147357941, 0.03886668011546135, 0.03519042953848839, 0.002468469552695751, 0.019433340057730675, -0.012008280493319035, -0.023786796256899834, 0.017099404707551003, -0.02677374891936779, -0.043897341936826706, 0.03417462483048439, 0.011089217849075794, 0.005254378542304039, 0.02296447567641735, -0.02107797935605049, 0.01238316111266613, -0.030643487349152565, 0.008332029916346073, 0.006052512209862471, -0.012395254336297512, -0.02660444937646389, 0.004577174317091703, 0.0016008017119020224, 0.025201668962836266, 0.012479905039072037, 0.01478965487331152, 0.03533554449677467, -0.017510564997792244, -0.027450954541563988, -0.03480345755815506, 0.0019121947698295116, -0.01160921435803175, -0.021779369562864304, -0.05635305866599083, 0.043316878378391266, 0.03642391040921211, -0.03318300470709801, 0.018477998673915863, -0.013036179356276989, -0.004882520996034145, 0.020352402701973915, 0.012074791826307774, 0.003721599467098713, -0.028684433549642563, -0.009299463592469692, -0.004725312814116478, 0.0024397489614784718, 0.0053480989299714565, -0.026362590491771698, 0.0013453385327011347, -0.013967335224151611, 0.027837928384542465, -0.04895218461751938, -0.02199704200029373, 0.011712003499269485, 0.014027800410985947, -0.031610921025276184, -0.016748709604144096, -0.001207025721669197, 0.004531825892627239, -0.006989714223891497, -0.0021132396068423986, -0.004489500541239977, -0.008501330390572548, 0.01370129082351923, 0.0011458052322268486, 0.014487331733107567, -0.05291866511106491, -0.007648779079318047, -0.014414774253964424, -0.01499523501843214, -0.029966283589601517, 0.031296506524086, -0.014571982435882092, -0.015829646959900856, -0.0039241560734808445, 0.00012999901082366705, 0.034198809415102005, -0.008325982838869095, -0.01212920993566513, 0.025588642805814743, -0.022565409541130066, 0.02430679090321064, 0.00472833588719368, 0.021489137783646584, 0.017498470842838287, 0.03753645718097687, 0.013616640120744705, -0.010472478345036507, 0.03806854784488678, -0.005251355469226837, -0.02844257466495037, 0.020025894045829773, -0.015297558158636093, -0.006052512209862471, 0.03415043652057648, -0.01937287487089634, 0.025274226441979408, -0.013544082641601562, -0.005360191687941551, -0.019046366214752197, 0.005251355469226837, 0.004556011874228716, 0.015914296731352806, 0.004320199601352215, 0.014547795988619328, -0.017619401216506958, 0.004111596383154392, -0.0022810292430222034, -0.015757089480757713, 0.06152883544564247, -0.03860063478350639, 0.007745522540062666, -0.04019690304994583, -0.00960178766399622, 0.008706910535693169, -0.00016826180217321962, 0.020473333075642586, -0.012625019997358322, 0.014946863055229187, -0.009752948768436909, -0.006808320060372353, -0.0012946994975209236, 0.03342486172914505, -0.0020044033881276846, 0.022408202290534973, -0.004132759291678667, -0.020521704107522964, 0.001910683116875589, -0.019227759912610054, -0.0073041305877268314, 0.015998948365449905, 0.023290986195206642, -0.028370017185807228, 0.014027800410985947, -0.04007597267627716, 0.005668561439961195, -0.03475508466362953, 0.07420222461223602, 0.008761328645050526, 0.01636173576116562, 0.0030428837053477764, 0.027330024167895317, -0.01731707714498043, 0.003343695541843772, 0.03074023127555847, -0.014934769831597805, 0.015744997188448906, -0.0006821168935857713, 0.02643514797091484, 0.056836776435375214, 0.018127303570508957, -0.00014190298679750413, -0.017208240926265717, 0.017099404707551003, -0.00545088853687048, 0.02138030156493187, 0.007237619254738092, 0.002838815562427044, -0.02199704200029373, 0.045783836394548416, -0.024838879704475403, 0.020691005513072014, -0.009245045483112335, 0.0010233642533421516, 0.004169038031250238, -0.0012198744807392359, 0.026991423219442368, 0.03240905702114105, 0.027136538177728653, 0.002200913382694125, -0.011113403365015984, -0.014813840389251709, -0.014958956278860569, 0.006258091889321804, -0.013834313489496708, -0.008979001082479954, 0.031804408878088, 0.007249712012708187, -0.028926290571689606, -0.011887351050972939, 0.032820213586091995, 0.01911892369389534, 0.031030461192131042, -0.05785258114337921, -0.06210929527878761, -0.004939962178468704, -0.002859978238120675, 0.04227688908576965, -0.023399822413921356, -0.023907724767923355, -0.013761756010353565, 0.01798218861222267, -0.010563175193965435, -0.009885971434414387, -0.03799599036574364, -0.024693764746189117, 0.012927343137562275, 0.021489137783646584, -0.02292819693684578, -0.011742236092686653, -0.03349741920828819, 0.015430579893290997, 0.026967236772179604, -0.002805560128763318, -0.02100542187690735, 0.004676941316574812, -0.003283230820670724, 0.004915776662528515, -0.0319737084209919, 0.036375537514686584, -0.005453912075608969, 0.006669251713901758, 0.01928822509944439, -0.002538003958761692, 0.022940291091799736, -0.0025304458104074, 0.00828365795314312, -0.0032560217659920454, -0.005729026161134243, 0.03627879172563553, 0.049508459866046906, -0.038552265614271164, -0.052096348255872726, 0.013918964192271233, -0.015031513758003712, -0.02769281156361103, -0.02350865863263607, 0.022105878219008446, 0.0036762510426342487, -0.015551509335637093, -0.008277611806988716, 0.03722204267978668, 0.008416679687798023, 0.005502283573150635, -0.01878032274544239, 0.038552265614271164, -0.007364594843238592, -0.0016264992300421, -0.03364253416657448, -0.025032367557287216, 0.023351449519395828, -0.007183201145380735, -0.009734809398651123, 0.022819360718131065, 0.010847358964383602, 0.0019832407124340534, -0.01723242737352848, -0.010399920865893364, -0.019880779087543488, -0.013278038240969181, -0.018647300079464912, -0.020739376544952393, -0.03272347152233124, 0.039181098341941833, 0.014971048571169376, 0.016869638115167618, -0.0025334691163152456, -0.013556175865232944, 0.017377542331814766, 0.020932864397764206, 0.004480430856347084, -0.0127580426633358, 0.04029364511370659, -0.0205821692943573, 0.01753474958240986, 0.03857645019888878, 0.00937202200293541, -0.019046366214752197, 0.007340409327298403, 0.028563503175973892, 0.006282277870923281, -0.009553415700793266, -0.025201668962836266, -0.04863777011632919, -0.004885544069111347, 0.033739276230335236, -0.0004633104254025966, -0.03535972908139229, 0.029434194788336754, 0.002858466701582074, -0.05577259883284569, -0.04791219159960747, 0.016204528510570526, 0.00897295493632555, 0.022081691771745682, 0.03168347850441933, 0.011832932941615582, 0.017885444685816765, 0.008888304233551025, -0.02849094569683075, 0.008761328645050526, 0.034198809415102005, -0.008658538572490215, -0.01179665420204401, -0.004568104632198811, 0.016168249770998955, 0.006802273914217949, -0.024451905861496925, -0.0032348590902984142, -0.049967993050813675, 0.0038304359186440706, 0.009795274585485458, -0.016543129459023476, 0.0014602214796468616, 0.01631336472928524, -0.014813840389251709, -0.024863066151738167, -0.02953093871474266, -0.018429627642035484, 0.01108317170292139, 0.019796127453446388, -0.02648351900279522, -0.0256853848695755, -0.01861102133989334, 0.01610778458416462, -0.004837172571569681, 0.02953093871474266, -0.02037658914923668, -0.0008019125089049339, 0.001476093428209424, 0.007854359224438667, -0.014511517249047756, -0.010152015835046768, -0.020763562992215157, -0.03417462483048439, 0.009063651785254478, -0.035117872059345245, 0.0654953122138977, -0.0365690253674984, 0.007558081764727831, 0.010532942600548267, -0.021573789417743683, 0.012516183778643608, -0.0033527652267366648, 0.0074129668064415455, -0.01915520243346691, -0.02945837937295437, -0.005299726966768503, 0.010780848562717438, -0.03405369445681572, 0.02413749136030674, 0.031610921025276184, -0.022686338052153587, 0.005181821063160896, -0.03354579210281372, 0.016966382041573524, -0.02631421759724617, -0.011240379884839058, -0.005819723010063171, -0.009311556816101074, 0.016676152125000954, 0.005184844136238098, 0.009837599471211433, 0.020098451524972916, -0.020437054336071014, 0.018260326236486435, 0.002761723240837455, -0.007612500339746475, -0.0024805625434964895, 0.010569222271442413, -0.00891249068081379, 0.0030323024839162827, -0.053354013711214066, 0.004707173444330692, 0.032771844416856766, 0.0037336924578994513, -0.021561697125434875, 0.021489137783646584, -0.02317005582153797, -0.006215766537934542, 0.006215766537934542, -0.02999047003686428, -0.0005653445259667933, -0.02844257466495037, 0.004809963516891003, -0.004292990546673536, 0.00032254113466478884, 0.028877919539809227, -0.014051985926926136, -0.029192335903644562, -0.04145456850528717, 0.0012266767444089055, -0.013761756010353565, -0.031393248587846756, -0.0003699681255966425, -0.03417462483048439, -0.05224146321415901, 0.026338404044508934, -0.0210900716483593, 0.020884491503238678, -0.004822056274861097, 0.013822220265865326, -0.00828365795314312, 0.04863777011632919, -0.008979001082479954, -0.018042653799057007, 0.0012788274325430393, -0.009632019326090813, -0.02226308546960354, 0.025032367557287216, 0.019384969025850296, 0.024705858901143074, 0.034996941685676575, 0.008519469760358334, -0.0017595214303582907, -0.008362261578440666, 0.008664584718644619, 0.02242029458284378, -0.01978403516113758, -0.00887016486376524, -0.035456474870443344, -0.005683677736669779, -0.012999900616705418, 0.005163681693375111, 0.010690150782465935, -0.008459005504846573, -0.01047852449119091, -0.020267752930521965, -0.011881304904818535, -0.004985311068594456, 0.00016259323456324637, 0.0004296769620850682, -0.0024941670708358288, -0.004314152989536524, 0.00968643743544817, -0.013181295245885849, 0.003076139371842146, -0.00983155332505703, 0.006614833138883114, 0.02362958714365959, -0.0372462272644043, 0.026507705450057983, 0.013120830059051514, -0.022855639457702637, 0.017958002164959908, -0.0024488186463713646, -0.026991423219442368, 0.011173868551850319, 0.002784397453069687, 0.04588058218359947, 0.016930103302001953, -0.022226806730031967, 0.0002664224011823535, 0.013326410204172134, -0.027644440531730652, -2.846090319508221e-05, -0.013435246422886848, -0.002993000438436866, -0.006354835350066423, 0.0012296999339014292, 0.008791561238467693, 0.013265945017337799, 0.01100456714630127, -0.030183956027030945, -0.03881830722093582, 0.01634964346885681, -0.03243324160575867, -0.00526042515411973, -0.0021616113372147083, -0.008041799068450928, -0.032070454210042953, 0.03485182672739029, 0.03456159681081772, -0.0233877282589674, 0.021392395719885826, -0.03722204267978668, 0.002040682127699256, -0.031731851398944855, 0.011663632467389107, 0.0406564362347126, -0.004456245340406895, -0.01752265729010105, 0.01882869377732277, -0.03823784738779068, -0.012431533075869083, 0.03204626590013504, -0.030595116317272186, -0.0174380075186491, 0.017837073653936386, -0.011482237838208675, 0.007963195443153381, 0.007564128376543522, 0.028708618134260178, -0.0043927570804953575, 0.018647300079464912, -0.0008994117379188538, -0.0023959120735526085, 0.02798304334282875, -0.028708618134260178, 0.018224047496914864, 0.0005362459341995418, -0.007552035618573427, -0.02116262912750244, 0.010835266672074795, 0.015152442269027233, -0.016458479687571526, -0.011699911206960678, 0.006031349301338196, 0.023581216111779213, 0.006741809193044901, 0.00891249068081379, 0.0181998610496521, 0.04597732424736023, -0.007721336558461189, 0.007636685855686665, -0.014269658364355564, 0.05814281478524208, -0.0028327691834419966, -0.004480430856347084, -0.011470145545899868, -0.010303176939487457, 0.03869738057255745, -0.03238486871123314, -0.0014428378781303763, -0.019348690286278725, 0.005780421197414398, -0.03710111230611801, 0.019638920202851295, -0.02229936420917511, -0.014632446691393852, -0.013979428447782993, 0.030256513506174088, -0.013350595720112324, 0.006227859761565924, 0.036955997347831726, 0.027910485863685608], [-0.005117081571370363, 0.03135816007852554, 0.05997961014509201, 0.029465269297361374, -0.06130235269665718, 0.001268580206669867, 0.02045692317187786, 0.0011787817347794771, 0.015394005924463272, 0.0025385855697095394, -0.03030908852815628, 0.008575031533837318, -0.026249632239341736, -0.03642107918858528, -0.06221459060907364, 0.03514394536614418, -0.015576453879475594, 0.04438035190105438, -0.0044043962843716145, -0.003209935501217842, -0.011505594477057457, 0.029054760932922363, -0.0352579765021801, -0.0164202731102705, -0.016089586541056633, 0.011209117248654366, -0.00537364836782217, -0.01555364765226841, -0.015508036129176617, -0.02442515641450882, 0.06996861100196838, -0.008717568591237068, 0.051769472658634186, 0.015029111877083778, 0.052225593477487564, 0.034026455134153366, -0.014641410671174526, 0.02086743153631687, 0.01526857353746891, -0.0018102211179211736, -0.0182675551623106, 0.029009150341153145, -0.032179173082113266, -0.021505996584892273, -0.0838802307844162, 0.0911325141787529, 0.023581337183713913, 0.003249845700338483, -0.008882911875844002, 0.04043492302298546, 0.012440637685358524, 0.00921929907053709, -0.012851144187152386, 0.06335488706827164, 0.03674036264419556, 0.058155134320259094, 0.04054895415902138, 0.016671137884259224, 0.01953328400850296, -0.059660326689481735, -0.004179187584668398, 0.021072683855891228, -0.033501919358968735, -0.012235384434461594, -0.0008231517276726663, -0.0068360790610313416, -0.007440436631441116, 0.036375466734170914, -0.058337584137916565, -0.01583872176706791, 0.017207078635692596, 0.041164714843034744, -0.01230380218476057, -0.033387888222932816, -0.045132946223020554, 0.008979837410151958, 0.047801241278648376, 0.012041534297168255, 0.019601700827479362, 0.019738536328077316, -0.04045772925019264, -0.0006186109967529774, -0.031882695853710175, 0.04668375104665756, 0.007691301871091127, -0.006425572093576193, -0.023763785138726234, -0.015359797514975071, -0.05341150239109993, 0.009823656640946865, 0.023011188954114914, 0.03854203224182129, 0.02305680140852928, 0.02748115174472332, -0.021756863221526146, 0.00953288096934557, 0.031266938894987106, 0.013352875597774982, -0.02937404438853264, 0.03268090635538101, -0.020092029124498367, -0.010313984006643295, 0.010718789882957935, -0.020673580467700958, 0.03341069445014, -0.04729951173067093, -0.05500791594386101, 0.00019010885444004089, 0.01440194807946682, 0.013318666256964207, -0.02000080607831478, -0.00997189525514841, -0.00108755799010396, -0.002686824183911085, -0.0060093640349805355, -0.004783545155078173, 0.0008915695361793041, -0.01705884002149105, 0.043468113988637924, -0.032521262764930725, -0.06654772162437439, 0.05646749585866928, 0.0018529822118580341, -0.03924901410937309, -0.0025457125157117844, -0.005510484334081411, -0.009709627367556095, -0.04586273431777954, -0.05541842430830002, 0.028302166610956192, -0.014994902536273003, -0.02115250565111637, 0.02476724609732628, -0.01677376590669155, -0.026409273967146873, -0.012155563570559025, 0.007639988325536251, -0.005345141049474478, -0.0023333323188126087, -0.03904376178979874, 0.002699652686715126, 0.012246787548065186, 0.027526764199137688, 0.03899814933538437, -0.07462102174758911, -0.04898715019226074, 0.0006154039292596281, 0.05934104323387146, 0.05710606276988983, -0.017663197591900826, -0.022771727293729782, 0.06025328114628792, -0.015827318653464317, 0.02280593477189541, -0.019499074667692184, 0.01866665855050087, 0.011511296033859253, 0.035873737186193466, 0.009681119583547115, 0.017469346523284912, -0.021106893196702003, 0.007052735425531864, -0.010998162440955639, 0.0041364263743162155, 0.016351856291294098, -0.001677661668509245, 0.004489918705075979, 0.05122213065624237, -0.05468863248825073, -0.06002522259950638, -0.025839123874902725, -0.018518419936299324, -0.013261651620268822, 0.003851352259516716, -0.001522296224720776, -0.036671943962574005, 0.009071060456335545, -0.009823656640946865, 0.013227442279458046, -0.04419790208339691, -0.005824065767228603, 0.009538582526147366, -0.023900620639324188, -0.03261248767375946, -0.0695124939084053, -0.0023105263244360685, -0.0005512622301466763, 0.01981835812330246, -0.025542648509144783, 0.04362775385379791, -0.011146401055157185, -0.016089586541056633, 0.008683360181748867, -0.012395026162266731, -0.07302460819482803, 0.010342491790652275, -0.03685439005494118, 0.003606188576668501, 0.0019727135077118874, 0.02684258669614792, 0.007183869834989309, -0.035166751593351364, 0.055692095309495926, 0.019863970577716827, -0.05386761948466301, 0.023193636909127235, 0.0016078184125944972, -0.0051797982305288315, 0.03870167210698128, 0.06057256460189819, 0.03306860476732254, -0.05094845965504646, -0.0006546016084030271, -0.008187331259250641, -0.026546109467744827, -0.01477824617177248, -0.027800435200333595, 0.03571409359574318, -0.015131738036870956, 0.0016562810633331537, -0.002437384333461523, -0.011163505725562572, 0.021699847653508186, -0.010992460884153843, -0.011038072407245636, 0.05733412131667137, -0.00933903083205223, -0.02038850635290146, -0.0031386669725179672, -0.05952349305152893, -0.0009079612791538239, 0.025542648509144783, 0.01590714044868946, -0.001261453260667622, -0.01798247918486595, -0.011688041500747204, -0.01688779518008232, 0.00814742036163807, 0.03785785287618637, 0.017936868593096733, 0.03254406899213791, 0.02627243846654892, -0.01821053959429264, -0.01394582912325859, 0.018575433641672134, -0.0025713692884892225, -0.029807357117533684, 0.002421705285087228, 0.03847361356019974, 0.00653960183262825, -0.007132556289434433, 0.0035007111728191376, 0.06376539170742035, -0.07507713884115219, 0.03541761636734009, 0.026089990511536598, 0.05322905257344246, -0.015382603742182255, 0.009225000627338886, -0.006978616118431091, 0.06882831454277039, -0.01112359482795, -0.030058223754167557, 0.011859086342155933, -0.04453999176621437, -0.009931985288858414, 0.07416490465402603, -0.07772263139486313, -0.014470365829765797, 0.05852003023028374, -0.08315043896436691, 0.013102009892463684, -0.025383006781339645, 0.04447157308459282, -0.004948887974023819, -0.0019912433344870806, 0.009293418377637863, -0.04440315440297127, 0.05126774311065674, 0.012600279413163662, -0.014812454581260681, 0.027161868289113045, -0.007565869018435478, -0.03575970605015755, 0.010787207633256912, 0.017013227567076683, -0.026728555560112, -0.005849722307175398, -0.0182675551623106, 0.04971693828701973, -0.008968434296548367, -0.039271820336580276, -0.05824635922908783, 0.04253306984901428, 0.005895334295928478, 0.035007111728191376, -0.005675827153027058, 0.007486048154532909, 0.0024516379926353693, -0.012919561937451363, -0.028028493747115135, 0.04702583700418472, -0.010097327642142773, -0.005462021566927433, -0.01411687396466732, 0.02996699884533882, 0.03589654341340065, -0.01832456886768341, 0.021574415266513824, -0.01238362304866314, -0.02581631951034069, -0.004675216972827911, 0.04438035190105438, -0.020035013556480408, 0.021106893196702003, -0.04474524408578873, 0.013854606077075005, -0.015713289380073547, 0.0026112794876098633, 0.0032270399387925863, 0.024676021188497543, 0.0341176800429821, 0.03573689982295036, -0.05322905257344246, 0.009920582175254822, -0.04333127662539482, 0.056330662220716476, -0.004261859226971865, -0.03911218047142029, 0.010616162791848183, -0.021232325583696365, 0.031130101531744003, -0.01809651032090187, -0.0127599211409688, -0.007275093346834183, 0.01449317205697298, -0.011545504443347454, 0.006260229274630547, -0.011385863646864891, -0.011625325307250023, -0.013980038464069366, -0.05610259994864464, 0.024174291640520096, -0.029944192618131638, -0.032703712582588196, 0.04109629616141319, 0.033844009041786194, 0.07060717791318893, 0.01884910650551319, 0.020035013556480408, -0.021756863221526146, -0.00823864433914423, -0.02483566291630268, 0.015690483152866364, -0.07078962028026581, 0.015108931809663773, -0.006950108800083399, -0.018757881596684456, -0.009943387471139431, 0.004472814034670591, -0.02119811624288559, -0.0017332510324195027, 0.01688779518008232, 0.06613720953464508, -0.007902256213128567, 0.020548148080706596, -0.02524617128074169, -0.00844389759004116, 0.042943574488162994, 0.01477824617177248, 0.02563387155532837, -0.0021209518890827894, -0.027754822745919228, -0.014835260808467865, -0.055965766310691833, -0.023353278636932373, -0.007280794903635979, 0.024105872958898544, -0.03662633150815964, 0.0243795458227396, 0.04483646899461746, -0.001383322523906827, 0.026112796738743782, -0.012748518027365208, 0.06764240562915802, 0.030058223754167557, -0.0875747948884964, -0.036033377051353455, 0.021711250767111778, -0.029305627569556236, 0.02547422982752323, 0.0025727946776896715, -0.0498993881046772, -0.00691589992493391, -0.024265514686703682, -0.0019085716921836138, -0.008250047452747822, 0.025884736329317093, 0.0010797184659168124, -0.01971573196351528, 0.017036033794283867, -0.0225322637706995, 0.004524127580225468, -0.055920153856277466, 0.004897574428468943, -0.018575433641672134, 0.001768885413184762, -0.00385990459471941, 0.04406106844544411, -0.03918059542775154, 0.050674788653850555, -0.07092645764350891, 0.03382120281457901, -0.013193233869969845, -0.004806350916624069, -0.007240884471684694, -0.014858067035675049, 0.05172386020421982, -0.022840144112706184, -0.033798396587371826, 0.04643288627266884, 0.07284215837717056, 0.02488127537071705, 0.005923841614276171, -0.016864988952875137, -0.020422715693712234, -0.00319853238761425, 0.0026469139847904444, 0.04187169671058655, -0.01607818529009819, -0.02385500818490982, 0.02011483535170555, 0.05582892894744873, 0.07361756265163422, -0.014071262441575527, -0.041392773389816284, 0.02811971865594387, -0.044973306357860565, -5.5322208936559036e-05, -0.02793727070093155, -0.008090405724942684, -0.0130792036652565, -0.012109952047467232, 0.025884736329317093, -0.007982077077031136, -0.00112675572745502, 0.0158501248806715, -0.01596415415406227, 0.015279976651072502, 0.0017289749812334776, 0.041848890483379364, 0.02449357509613037, -0.03842800110578537, 0.0002679697354324162, -0.08921682089567184, 0.007594376336783171, 0.0014339231420308352, -0.02563387155532837, 0.027846047654747963, -0.030856430530548096, 0.010844222269952297, 0.011482788249850273, 0.02051393873989582, 0.04453999176621437, 0.01825615204870701, 0.00398818776011467, -0.04319444298744202, -0.008951329626142979, -0.0124748470261693, 0.035394810140132904, -0.024470768868923187, 0.05040111765265465, 0.02034289389848709, 0.017537765204906464, 0.024151485413312912, 0.020901639014482498, -0.016922004520893097, -0.030103834345936775, -0.017264092341065407, -0.03642107918858528, -0.011306042782962322, 0.07015106081962585, 0.007691301871091127, -0.00753166014328599, 0.07462102174758911, 0.009145179763436317, -0.03076520748436451, 0.024288320913910866, -0.012714308686554432, -0.022281398996710777, -0.007047033868730068, -0.01566767692565918, 0.014652813784778118, -0.00882019568234682, -0.02062796801328659, -0.011745057068765163, -0.013159024529159069, 0.034779053181409836, 0.054186902940273285, -0.030788011848926544, -0.010547745041549206, 0.0051683951169252396, 0.05911298468708992, 0.0002375024341745302, 0.05259048566222191, 0.023113815113902092, -0.030035417526960373, 0.07252287119626999, 0.017708808183670044, -0.011254728771746159, -0.018712269142270088, 0.022053340449929237, 0.01428791880607605, -0.010519237257540226, -0.02022886462509632, -0.005533290095627308, 0.019453462213277817, -0.0005469861207529902, 0.007303600665181875, 0.014538783580064774, 0.021334951743483543, -0.016728153452277184, 0.0006791892810724676, -0.029921386390924454, -0.003021786455065012, -0.021927906200289726, -0.043468113988637924, -0.022737517952919006, 0.025839123874902725, 0.04182608425617218, 0.013729172758758068, -0.04273832216858864, -0.010063119232654572, 0.028781089931726456, 0.005772752221673727, 0.021756863221526146, 0.03215637058019638, -0.028895119205117226, 0.009441656991839409, 0.018050897866487503, 0.01809651032090187, -0.015371200628578663, 0.007902256213128567, 0.00910526979714632, 0.02021746151149273, 0.015234365127980709, 0.027458345517516136, 0.03133535385131836, 0.0030816521029919386, 0.036101795732975006, 0.017389526590704918, 0.002083892235532403, 0.020365700125694275, 0.01825615204870701, -0.011676639318466187, -0.012041534297168255, 0.006020767148584127, 0.0008580732974223793, 0.0243795458227396, -0.013159024529159069, 0.05765340477228165, 0.021357757970690727, -0.005573200527578592, -0.026021571829915047, -0.019442059099674225, 0.03158622235059738, 0.005804110784083605, -0.01607818529009819, 0.012269592843949795, -0.018073704093694687, -0.025428617373108864, 0.008723270148038864, -0.023923426866531372, -0.027458345517516136, 0.09291137754917145, 0.03575970605015755, 0.01923680678009987, -0.047801241278648376, 0.0028778240084648132, 0.008860105648636818, 0.004632455762475729, -0.009213597513735294, 0.008706165477633476, -0.012440637685358524, -0.007771122269332409, 0.023376083001494408, -0.0051797982305288315, -0.024584798142313957, 0.019841164350509644, 0.027458345517516136, 0.018655255436897278, 0.036101795732975006, -0.0014431880554184318, -0.0023889217991381884, 0.01498349942266941, 0.032179173082113266, -0.03544042259454727, -0.001915698521770537, 0.011859086342155933, 0.011140699498355389, -0.009698224253952503, 0.006693542003631592, -0.0018829150358214974, -0.036329854279756546, -5.840680387336761e-06, -0.009225000627338886, 0.0003611533611547202, -0.034140486270189285, 0.03208795189857483, 0.014698425307869911, 0.025154946371912956, -0.013181830756366253, 0.015633469447493553, 0.00436448585242033, 0.007725510746240616, 0.006893094163388014, -0.038975343108177185, -0.011904697865247726, 0.00037202180828899145, -0.034824661910533905, 0.010690282098948956, 0.01849561370909214, 0.018985942006111145, -0.007691301871091127, 0.012885353527963161, 0.03220197930932045, -0.014709828421473503, -0.014903678558766842, 0.0009186515817418694, -0.004370187409222126, -0.0022278549149632454, 0.040252476930618286, -0.009321926161646843, 0.029510879889130592, -0.004478515591472387, -0.017765823751688004, 0.033501919358968735, -0.007788226939737797, 0.024037456139922142, -0.02811971865594387, -0.015325588174164295, 0.0014346358366310596, -0.002786600263789296, -0.03204233944416046, 0.03756137564778328, 0.038450807332992554, 0.03174586221575737, -0.033501919358968735, 0.029237208887934685, 0.01809651032090187, 0.0043986947275698185, -0.048029299825429916, 0.010239864699542522, 0.01287395041435957, 0.008723270148038864, -0.01913418062031269, -0.04442596063017845, 0.03792627155780792, 0.03906656801700592, -0.006744855549186468, -0.020662177354097366, 0.002207899698987603, 0.000421197124524042, -0.002788025652989745, 0.0060948864556849, 0.027002228423953056, 0.006020767148584127, -0.023353278636932373, 0.017309704795479774, 0.015929946675896645, -0.06641088426113129, -0.01583872176706791, 0.011961713433265686, 0.004963141866028309, 0.02449357509613037, 0.014960693195462227, -0.02563387155532837, -0.03532639518380165, 0.015644872561097145, 0.034779053181409836, 0.0043388293124735355, -0.028553031384944916, -0.027344316244125366, 0.02385500818490982, 0.010935446247458458, -0.0285758376121521, 0.018290359526872635, 0.006830377504229546, 0.046524107456207275, 0.005350842606276274, -0.0012229683343321085, 0.028165331110358238, -0.0060948864556849, -0.027161868289113045, -0.01624922826886177, 0.022155966609716415, 0.01957889460027218, -0.03940865769982338, 0.019476268440485, -0.0036546511109918356, -0.0068474821746349335, 0.014082665555179119, -0.014390544965863228, -0.03181428089737892, -0.01832456886768341, -0.0034978603944182396, 0.0329773835837841, -0.005216857884079218, 0.05163263902068138, 0.022224383428692818, 0.019784148782491684, -0.007742614950984716, -0.03375278413295746, -0.028279360383749008, -0.028735479339957237, 0.01744654029607773, -0.036443885415792465, -0.019898178055882454, 0.01792546547949314, -0.014356336556375027, -0.0049118283204734325, 0.03179147467017174, -0.02149459347128868, -0.03366155922412872, 0.009806551970541477, 0.010217059403657913, 0.009874969720840454, -0.026249632239341736, 0.0071040489710867405, 0.036900002509355545, 0.0007910808781161904, -0.008968434296548367, 0.013398487120866776, -0.00771980918943882, -0.002100996905937791, 0.015975557267665863, -0.04004722088575363, -0.0014553037472069263, 0.002604152774438262, 0.03699122741818428, 0.011904697865247726, -0.04095945879817009, 0.00691589992493391, -0.02581631951034069, -0.00403379974886775, 0.005801260005682707, 0.004162083379924297, 0.0030588461086153984, -0.023353278636932373, 0.022612085565924644, 0.02057095430791378, 0.006294438149780035, 0.023832201957702637, -0.0486222542822361, 0.042327817529439926, -0.004290366545319557, -0.010422312654554844, 0.011511296033859253, 0.0025613915640860796, 0.006419871002435684, -0.0035434721503406763, 0.017024630680680275, 0.015222962014377117, 0.020194655284285545, 0.0017147213220596313, -0.028028493747115135, -0.0255198422819376, 0.024128679186105728, -0.021574415266513824, 0.01460720133036375, 0.048074912279844284, -0.04298918694257736, 0.013284456916153431, 0.035349201411008835, 0.012223981320858002, 0.0009492970420978963, -0.024219904094934464, -0.04511013999581337, -0.02034289389848709, -0.0413699671626091, -0.020810415968298912, -0.03345630690455437, -0.003038890892639756, 0.01683077961206436, -0.0066422284580767155, 0.03336508199572563, 0.009498671628534794, -0.010553446598351002, 0.021289341151714325, 0.028963537886738777, -0.01008592452853918, 0.028849508613348007, 0.020719192922115326, -0.0008545098826289177, -0.010564849711954594, -0.020479729399085045, 0.021813876926898956, -0.04095945879817009, 0.005074320826679468, 0.008609240874648094, 0.0032869053538888693, 0.035645678639411926, -0.025770707055926323, 0.0021679892670363188, 0.0225322637706995, 0.001674810890108347, -0.0013590912567451596, 0.020810415968298912, 0.005980856716632843, -0.038108717650175095, -0.024151485413312912, 0.02563387155532837, 0.030377505347132683, -0.00619181152433157, 0.018575433641672134, -0.01600976660847664, -0.012269592843949795, -0.005399305373430252, 0.0130792036652565, -0.015656273812055588, -0.03386681526899338, -0.0037458748556673527, 0.009795148856937885, 0.00849521066993475, 0.016500094905495644, 0.0015607811510562897, 0.006180408410727978, 0.012360816821455956, 0.017355317249894142, -0.004524127580225468, 0.014436157420277596, 0.04401545599102974, 0.03008102811872959, -0.014561589807271957, -0.016728153452277184, 0.001007737242616713, 0.002843615133315325, 0.0017916912911459804, 0.015211558900773525, 0.004555485676974058, 0.06157602369785309, -0.027389928698539734, 0.010439417324960232, -0.0014346358366310596, -0.036557912826538086, 0.0013092032168060541, 0.021175311878323555, -0.022395428270101547, -0.008694763295352459, 0.0006196800386533141, -0.012930965051054955, 0.021460385993123055, 0.010291178710758686, 0.015542244538664818, 0.007052735425531864, -0.0010462222853675485, 0.01802809163928032, 0.02805129997432232, -0.03911218047142029, -0.017150063067674637, 0.014926484785974026, 0.006340050138533115, -0.0038285464979708195, -0.024288320913910866, 0.0027067793998867273, 0.03694561496376991, 0.014812454581260681, 0.022897159680724144, -0.009424553252756596, -0.014356336556375027, 0.02408306859433651, -0.025953155010938644, 0.0018045196775346994, -0.017081646248698235, -0.04419790208339691, -0.012395026162266731, 0.014356336556375027, 0.009350433945655823, 0.022817337885499, 0.020491132512688637, -0.0013704941375181079, 0.016397466883063316, 0.016043975949287415, 0.01895173266530037, -0.004216247238218784, -0.00872897170484066, -0.017138659954071045, 0.05870247632265091, 0.03306860476732254, -0.0009842186700552702, 0.009760940447449684, 0.003018935676664114, -0.01710445061326027, -0.01624922826886177, 0.0011003863764926791, 0.0015265722759068012, 0.027503957971930504, -0.019453462213277817, -0.003908367361873388, 0.03302299603819847, -0.025337394326925278, 0.009259209968149662, -0.020434118807315826, 0.012805532664060593, 0.028302166610956192, 0.01676236279308796, 0.03594215586781502, -0.010952550917863846, 0.008358375169336796, -0.0013754829997196794, -0.0034265918657183647, -0.019863970577716827, -0.024447962641716003, -0.03480185568332672, 0.03368436545133591, 0.006345751695334911, -0.02074199914932251, 0.02252086065709591, 0.012942368164658546, -0.00705843698233366, 0.026568913832306862, -0.014071262441575527, -0.0033353681210428476, -0.005045813042670488, -0.0197613425552845, 0.017560569569468498, -0.0027067793998867273, 0.003027488011866808, -0.036443885415792465, -0.01665973663330078, 0.025839123874902725, 0.03192830830812454, 0.017036033794283867, 0.026409273967146873, 0.020080626010894775, 0.022999785840511322, 0.0010027484968304634, 0.023535724729299545, 0.026226826012134552, -0.05167824774980545, 0.02880389615893364, -0.031426578760147095, -0.021289341151714325, -0.020753400400280952, -0.0021409071050584316, -0.045839931815862656, 0.004937484860420227, -0.011100788600742817, 0.020525341853499413, 0.0007141108508221805, -0.015599260106682777, -0.02165423519909382, 0.013204636983573437, -0.024402350187301636, 0.015872931107878685, 0.023011188954114914, 0.019852567464113235, 0.014812454581260681, 0.010388103313744068, -0.006995720788836479, 0.01623782515525818, 0.006345751695334911, -0.006933004129678011, -0.05204314365983009, 0.045839931815862656, 0.008996941149234772, -0.006385662127286196, -0.025907542556524277, 0.009817955084145069, -0.0022264295257627964, 0.017480749636888504, -0.043240051716566086, 0.04684339091181755, 0.052864156663417816, 0.03575970605015755, 0.015143141150474548, 0.00538790225982666, 0.014721231535077095, 0.021642832085490227, 0.04344530776143074, -0.008580733090639114, 0.04200853407382965, 0.043057605624198914, 0.022897159680724144, -0.010125835426151752, -0.02506372332572937, 0.026318049058318138, -0.008957031182944775, 0.011688041500747204, -0.014937887899577618, 0.02442515641450882, -0.010718789882957935, 0.03427731990814209, 0.024151485413312912, 0.008141718804836273, 0.021346354857087135, 0.012235384434461594, 0.038975343108177185, 0.012794129550457, -0.008563628420233727, 0.03947707265615463, 0.0274355411529541, 0.009207895956933498, 0.00184728077147156, 0.007662794087082148, 0.010103029198944569, -0.03208795189857483, -0.012326608411967754, -0.016089586541056633, -0.07256848365068436, 0.03288615867495537, -0.008164525032043457, -0.005992259364575148, 0.036215826869010925, -0.05491669103503227, -0.022201577201485634, 0.0014496023068204522, -0.019613103941082954, 0.009407448582351208, 0.05017305910587311, -0.0011196288978680968, 0.013375680893659592, 0.008991239592432976, -0.0037487256340682507, 0.013056398369371891, -0.024584798142313957, 0.04095945879817009, 0.007121153175830841, 0.0030673982109874487, 0.0046666646376252174, 0.03947707265615463, -0.02465321682393551, -0.0038228449411690235, 0.04898715019226074, -0.012349413707852364, 0.03329666703939438, -0.019054358825087547, 0.009669716469943523, -0.0213235504925251, 0.0017489301972091198, -0.01710445061326027, -0.014823857694864273, -0.040594566613435745, 0.012828338891267776, 0.004948887974023819, -0.013558128848671913, 0.04417509585618973, -0.0013348598731681705, 0.04627324268221855, 0.02385500818490982, 0.019373642280697823, 0.005844020750373602, -0.043240051716566086, -0.005895334295928478, 0.01192750409245491, -0.02098146080970764, 0.027047839015722275, -0.029396850615739822, -0.01687639206647873, -0.01762898825109005, 0.030810818076133728, -0.04757318273186684, 0.0049089775420725346, -0.006089184898883104, 0.008449599146842957, -0.02050253562629223, -0.024174291640520096, -0.011699444614350796, 0.010006104595959187, 0.008187331259250641, -0.0014781097415834665, -0.011368758976459503, 0.005345141049474478, -0.002433108165860176, 0.01192750409245491, -0.0009264911059290171, -0.036261435598134995, -0.006744855549186468, 0.002190795261412859, -0.011499892920255661, -0.02276032418012619, 0.010182850062847137, 0.01619221456348896, 0.028393389657139778, -0.010217059403657913, 0.0060948864556849, -0.02431112714111805, 0.004749335814267397, -0.01579311117529869, -0.013957232236862183, -0.018632449209690094, 0.011790668591856956, -0.02547422982752323, 0.027982883155345917, -0.0036460990086197853, 0.016579914838075638, 0.040092833340168, 0.00910526979714632, 0.035691287368535995, -0.012372219935059547, 0.015827318653464317, 0.0026112794876098633, 0.006596616934984922, 0.00743473507463932, 0.03197392076253891, -0.019156984984874725, 0.015359797514975071, -0.011020968668162823, -0.0043901423923671246, -0.008780284784734249, 0.029716134071350098, 0.021848086267709732, 0.02536020055413246, 0.005065768491476774, 0.010120133869349957, -0.01025696936994791, 0.00026832608273252845, -0.005447767674922943, 5.068975588073954e-05, 0.04953449219465256, -0.007560167461633682, -0.008603539317846298, -0.03450537845492363, 0.014538783580064774, -0.004036650527268648, -0.007018526550382376, 0.021471787244081497, 0.005980856716632843, 0.011003863997757435, -0.010433715768158436, -0.009698224253952503, -0.0006189673440530896, 0.03737892955541611, -0.0310616847127676, 0.008996941149234772, -0.01740092784166336, -0.013923023827373981, -0.0006157602765597403, -0.024904081597924232, -0.004583992995321751, 0.02944246307015419, 0.025953155010938644, -0.008312763646245003, 0.017731614410877228, -0.019670119509100914, -7.728183118160814e-05, -0.013159024529159069, 0.08369778096675873, -0.011357355862855911, 0.0031386669725179672, 0.01066177524626255, 0.05149580165743828, -0.027572376653552055, -0.012452040798962116, 0.022919965907931328, -0.020468326285481453, -0.006499691400676966, -0.002413152949884534, 0.03487027436494827, 0.019225403666496277, 0.02355853095650673, 0.004618201870471239, -0.008324166759848595, 0.017845643684267998, 0.003415188752114773, 0.03215637058019638, -0.002176541369408369, 0.0015336991054937243, 0.023923426866531372, 0.04729951173067093, 0.006488288752734661, -0.005789856892079115, 0.01630624383687973, -0.016853585839271545, -0.01721848174929619, -0.033958036452531815, -0.014470365829765797, 0.01687639206647873, 0.031723055988550186, -0.02362694963812828, -0.009914880618453026, 0.01016574539244175, 0.011591116897761822, -0.016431676223874092, -0.009555687196552753, 0.00288210017606616, 0.025953155010938644, 0.004418650176376104, -0.004444306716322899, -0.026295242831110954, 0.0010690281633287668, 0.017355317249894142, 0.028142524883151054, -0.0658179298043251, -0.04310321807861328, 0.031312547624111176, 0.01543961837887764, 0.032703712582588196, 0.020890235900878906, -0.010986759327352047, -0.03550884127616882, -0.020593760535120964, -0.004102217499166727, -0.0004525552794802934, 0.006100587546825409, -0.024630410596728325, -0.004432903602719307, 0.012087145820260048, -0.011477086693048477, -0.05236242711544037, -0.013489711098372936, 0.002527182688936591, -0.033387888222932816, 0.02091304212808609, -0.011317445896565914, -0.03694561496376991, -0.009544284082949162, -0.022201577201485634, -0.01334147248417139, 0.012805532664060593, -0.010981057770550251, 0.024470768868923187, 0.03208795189857483, 0.00870046392083168, 0.018164927139878273, -0.004116471391171217, 0.006699243560433388, -0.0402296707034111, 0.014972096309065819, 0.008592136204242706, 0.031700249761343, 0.0020511087495833635, -0.015804512426257133, 0.005980856716632843, 0.012349413707852364, -0.00734351109713316, -0.0121897729113698, 0.008939926512539387, -0.008341270498931408, -0.007126854732632637, -0.0027523913886398077, 0.03008102811872959, -0.007451839279383421, -0.014801052398979664, -0.047436345368623734, 0.020764803513884544, -0.013615143485367298, 0.016796572133898735, -0.028393389657139778, -0.034938693046569824, 0.024128679186105728, -0.021711250767111778, -0.013820396736264229, -0.011676639318466187, -0.02055955119431019, -0.005151290446519852, -0.05149580165743828, -0.014082665555179119, 0.012737114913761616, -0.002006922382861376, -0.005316633731126785, -0.03128974512219429, -0.008101808838546276, 0.04038931056857109, -0.04173486307263374, 0.010810012929141521, -0.007525958586484194, -0.0005986557807773352, -0.007554465904831886, 0.025907542556524277, -0.00017932947957888246, 0.013694964349269867, 0.009470164775848389, -0.02351291850209236, 0.016135198995471, 0.021220922470092773, 0.0028692716732621193, -0.014185291714966297, 0.009806551970541477, 0.03382120281457901, 0.00907676201313734, 0.015222962014377117, 0.003668904770165682, -0.04944326728582382, 0.012463443912565708, 0.0014923634007573128, 0.014139680191874504, -0.04246465116739273, 0.03760698810219765, -0.013512516394257545, -0.00797637552022934, -0.05017305910587311, 0.006625124253332615, -0.008170226588845253, -0.014527380466461182, 0.040184058248996735, 0.017378123477101326, 0.01694481074810028, 0.022201577201485634, 0.006790467072278261, -0.01722988486289978, -0.004960291087627411, -0.03409487381577492, 0.0054905288852751255, -0.007315003778785467, 0.021574415266513824, -0.014196694828569889, -0.028963537886738777, -0.02408306859433651, -0.03847361356019974, 0.026295242831110954, -0.008649150840938091, 0.020753400400280952, 5.4075011576060206e-05, 0.018529823049902916, 0.005385051481425762, -0.03190550208091736, -0.02748115174472332, -0.014527380466461182, -0.0015422513242810965, 0.030673982575535774, -0.030673982575535774, -0.005416409578174353, 0.013409890234470367, 0.0371052585542202, -0.050902847200632095, -0.0008602113812230527, -0.011938907206058502, -0.008671957068145275, -0.024265514686703682, -0.008175928145647049, -0.017378123477101326, -0.0055503943003714085, -0.019282419234514236, -0.0292144026607275, -0.021061280742287636, 0.004361635074019432, 0.042076949030160904, -0.013991441577672958, -0.014173888601362705, 0.003266950137913227, -0.01353532262146473, -0.01970432884991169, 0.012018728069961071, 0.035121139138936996, -0.0035206663887947798, 0.0015351244946941733, 0.026249632239341736, -0.00671064667403698, -0.0197613425552845, 0.022897159680724144, 0.008438196033239365, -0.00939034391194582, 0.028096912428736687, -0.01930522359907627, 0.009863566607236862, -0.004059456288814545, 0.007064138539135456, 0.008449599146842957, -0.0019869671668857336, 0.03427731990814209, 0.015143141150474548, -0.021642832085490227, 0.019670119509100914, -0.009629806503653526, -0.013546725735068321, -0.04209975525736809, -0.006818974856287241, -0.024584798142313957, 0.006995720788836479, -0.039955999702215195, 0.019339432939887047, 0.015451021492481232, 0.014276515692472458, 0.03450537845492363, 0.01526857353746891, -0.024972498416900635, 0.04337688907980919, -0.008706165477633476, 0.01011443231254816, 0.031152907758951187, -0.029716134071350098, 0.015918543562293053, 0.005308081395924091, -0.018655255436897278, -0.00990917906165123, 0.011710847727954388, -0.025132140144705772, -0.0025528394617140293, -0.03377559036016464, -0.028849508613348007, -0.0382455550134182, -0.006682138890028, -0.017788629978895187, 0.03249845653772354, -0.004826305899769068, -0.01664833351969719, 0.019316626712679863, 0.011134997941553593, -0.00482345512136817, 0.0005512622301466763, 0.01371777057647705, 0.015701886266469955, 0.03676316887140274, 0.0062773339450359344, 0.030491536483168602, -0.02264629304409027, -0.010667475871741772, -0.031016072258353233, 0.009008344262838364, 0.008403987623751163, 0.005125633906573057, 0.018050897866487503, 0.0013975761830806732, -0.0027281600050628185, -0.0027181825134903193, 0.046204824000597, -0.004749335814267397, 0.012030131183564663, -0.02385500818490982, -0.02472163364291191, -0.025132140144705772, -0.004435754381120205, -0.005855423863977194, 0.042259398847818375, 0.012269592843949795, 0.0049118283204734325, -0.015029111877083778, 0.05213436856865883, 0.009264911524951458, 0.0015536543214693666, -0.0007354913977906108, 0.019966596737504005, 0.0016976167680695653, -0.017697405070066452, -0.007223779801279306, 0.005795558448880911, 0.014139680191874504, 0.020639371126890182, 0.014584396034479141, 0.008158823475241661, 0.01094684936106205, -0.02344450168311596, -0.0003565209044609219, 0.031723055988550186, 0.013603740371763706, -0.0005819076905027032, 0.011015267111361027, -0.020593760535120964, 0.047436345368623734, 0.002856443403288722, 0.0022934218868613243, 0.005385051481425762, 0.020719192922115326, 0.01837018132209778, 0.020719192922115326, -0.023581337183713913, -0.01296517439186573, -0.0013177554355934262, 0.02044552192091942, -0.003018935676664114, -0.0032327412627637386, 0.018107913434505463, -0.015565050765872002, -0.02385500818490982, 0.040024418383836746, 0.003272651694715023, 0.0076684956438839436, 0.026546109467744827, -0.042487457394599915, -0.017948271706700325, 0.01342129334807396, -0.020137641578912735, 0.012155563570559025, -0.009584194049239159, -0.006967213470488787, -0.012360816821455956, -0.01019425317645073, -0.041506800800561905, -0.009162284433841705, -0.03496149927377701, -0.023227844387292862, -0.011562609113752842, -0.02846180647611618, -0.03530358895659447, 0.01383179984986782, -0.015165947377681732, 0.009709627367556095, 0.006978616118431091, 0.006910198368132114, 0.03400364890694618, -0.013330069370567799, 0.02431112714111805, -0.007582973688840866, -0.0121897729113698, -0.004039501305669546, 0.005849722307175398, 0.00535654416307807, 0.004817754030227661, 0.004683768842369318, 0.004008143208920956, 0.0004375888966023922, 0.0007704130257479846, 0.017708808183670044, 0.03785785287618637, -0.03751576319336891, -0.004780694376677275, -0.0068360790610313416, 0.005556095857173204, -0.02355853095650673, 0.053776394575834274, 0.00830136053264141, -0.000348325032973662, -0.02102707326412201, 0.0038114420603960752, -0.0007590100285597146, 0.05186069756746292, 0.003041741671040654, -0.011214818805456161, -0.014253709465265274, 0.024014649912714958, 0.007657092995941639, -0.04266990348696709, -0.022714711725711823, 0.018814897164702415, -0.0004828444216400385, -0.02638646773993969, 0.01466421689838171, -0.01867806166410446, 0.00537364836782217, -0.005627364385873079, 0.02119811624288559, 0.0018316017230972648, -0.011585415340960026, 0.0005117082037031651, 0.006887392606586218], [0.025971487164497375, 0.00583204161375761, -0.0025033627171069384, 0.013366658240556717, -0.052450861781835556, -0.032874129712581635, -0.00048732609138824046, -0.016598666086792946, 0.020765647292137146, 0.003087721299380064, -0.019876845180988312, 0.04402455687522888, -0.02941126562654972, -0.04600993171334267, -0.03100418485701084, 0.03028852492570877, -0.00648132897913456, -0.0015986893558874726, -0.01281260047107935, 0.0032781788613647223, 0.007087330333888531, 0.03319733217358589, -0.016494780778884888, 0.02971138060092926, -0.016402436420321465, 0.009747964330017567, 0.016656380146741867, 0.003425350645557046, -0.005615612491965294, -0.004767210688441992, 0.03485950827598572, -0.022162334993481636, 0.05406686291098595, 0.027772177010774612, 0.06944198161363602, 0.03379756212234497, -0.00596767058596015, -0.0016968038398772478, 0.009955736808478832, -0.031396642327308655, -0.053189605474472046, 0.05018845573067665, 0.013528258539736271, 0.007145044393837452, -0.03585219383239746, 0.043401241302490234, 0.0324585884809494, 0.030842583626508713, -0.011842997744679451, 0.045132674276828766, 0.03705265372991562, -0.014763347804546356, -0.011115796864032745, 0.091096431016922, -0.0024990341626107693, 0.021250447258353233, -0.043378155678510666, 0.00947093591094017, 0.03873791545629501, -0.013043457642197609, -0.02560211531817913, 0.014636375941336155, -0.007427845150232315, -0.0072027589194476604, 0.002995378104969859, -0.017637524753808975, -0.015051919966936111, 0.033312760293483734, -0.053189605474472046, 0.01332048699259758, 0.07622919976711273, 0.0012134455610066652, -0.014174660667777061, -0.033728305250406265, -0.05051165446639061, 0.0172912385314703, -0.03455939143896103, 0.018053069710731506, 0.030519383028149605, 0.00669487239792943, 3.45610169460997e-05, 0.02189684845507145, 0.002566848648712039, 0.02650246024131775, 0.0026130201295018196, 0.0047614392824471, -0.03278178721666336, -0.004276638384908438, -0.018918786197900772, -0.012281627394258976, -0.012466313317418098, 0.012974200770258904, -0.015352034941315651, 0.05489795282483101, 0.017579810693860054, 0.013285858556628227, -0.014751804992556572, -0.001021545147523284, -0.03982294723391533, 0.021031133830547333, -0.02161981910467148, 0.0031021498143672943, 0.02299342304468155, 0.016944952309131622, 0.005990756209939718, -0.10887247323989868, -0.05896104499697685, 0.028510920703411102, 0.01882644183933735, -0.008074246346950531, -0.060530878603458405, 0.018999585881829262, -0.03749128431081772, 0.04224695265293121, -0.009615221992135048, -0.0038178085815161467, -0.006158127915114164, -0.007774131838232279, 0.050557829439640045, -0.033728305250406265, -0.01732586696743965, -0.0062793283723294735, 0.032574016600847244, -0.06607146561145782, -0.0008714876603335142, 0.03310498967766762, -0.027633661404252052, -0.021642906591296196, -0.01816849783062935, -0.0043949526734650135, 0.026410115882754326, -0.03017309680581093, 0.024401655420660973, -0.011150425300002098, -0.026733316481113434, -0.04640239104628563, -0.019472843036055565, -0.006106185261160135, -0.028626350685954094, -0.00290880654938519, 0.01115619670599699, -0.04448627308011055, 0.012420142069458961, 0.0047989534214138985, -0.009817222133278847, 0.017245067283511162, 0.01075796689838171, 0.07802988588809967, 0.028718693181872368, 0.017672153189778328, -0.03952283039689064, 0.05462092161178589, -0.019772958010435104, -0.005344355013221502, 0.01308962982147932, 0.014936490915715694, -0.01962290145456791, -0.016287008300423622, -0.0012271527666598558, 0.026456287130713463, -0.03691413998603821, -0.01888415589928627, 0.024355484172701836, 0.016494780778884888, 0.035505909472703934, -0.0046719820238649845, -0.017591353505849838, -0.029780637472867966, -0.05309726297855377, -0.023339709267020226, -0.04746433347463608, -0.04621770232915878, -0.030680982396006584, -0.04245472326874733, -0.023166567087173462, -0.02490954101085663, 0.021250447258353233, 0.018180040642619133, -0.002566848648712039, -0.04418615624308586, -0.018214669078588486, -0.007768360432237387, -0.010273166000843048, -0.043401241302490234, -0.052450861781835556, -0.0007834731950424612, -0.0018526327330619097, 0.02157364785671234, -0.017914554104208946, 0.03492876514792442, -0.005777212791144848, 0.020015358924865723, 0.018260840326547623, 0.03031161054968834, -0.018699470907449722, 0.022347021847963333, -0.013043457642197609, -0.007254702039062977, 0.04464787244796753, -0.006025385111570358, 0.003973637707531452, -0.0022739479318261147, 0.006741043645888567, -0.008755276910960674, -0.0717967301607132, -0.03384373337030411, 0.04607918858528137, -0.014901862479746342, 0.0494958832859993, 0.010642537847161293, 0.024401655420660973, -0.08661779761314392, -0.04319346696138382, 0.010590595193207264, -0.023582110181450844, 0.01737203821539879, 0.037260428071022034, 0.015040376223623753, -0.011392825283110142, -0.00248027709312737, 0.006348585709929466, 0.01836472749710083, 0.016044607385993004, -0.0018006897298619151, -0.045732904225587845, -0.02781834825873375, -0.0018396469531580806, -0.020269302651286125, -0.01617157831788063, -0.05314343422651291, -0.036221567541360855, 0.031719841063022614, 0.010700252838432789, -0.04921885207295418, 0.016402436420321465, 0.024378569796681404, -0.019195813685655594, -0.02055787481367588, 0.02913423627614975, -0.002556748688220978, 0.00010199219104833901, 0.0286956075578928, -0.024540169164538383, 0.005018268246203661, -0.021723706275224686, -0.010094251483678818, -0.01057905238121748, 0.016656380146741867, 0.03178910166025162, 0.03384373337030411, 0.02604074403643608, -0.02823389135301113, 0.023420508950948715, -0.03968443349003792, 0.044555529952049255, 0.03732968494296074, 0.024955714121460915, 0.0013526816619560122, 0.09917645156383514, -0.04991142824292183, 0.0394766591489315, -0.014255460351705551, -0.045894503593444824, 0.04437084123492241, -0.051619771867990494, -0.02502497099339962, 0.05457475036382675, -0.045617472380399704, -0.0038668657653033733, 0.027702920138835907, -0.08292407542467117, -0.025394342839717865, -0.011421683244407177, -0.00614658510312438, -0.03716808184981346, 0.028003035113215446, -0.025394342839717865, -0.010411680676043034, 0.00988070759922266, 0.030265439301729202, -0.011842997744679451, -0.00017990665219258517, 0.01916118524968624, -0.04215461015701294, -0.01786838285624981, -0.018053069710731506, 0.0022595194168388844, 0.004178523551672697, -0.01748746819794178, 0.04153129458427429, 0.040330834686756134, -0.018122326582670212, -0.01181414071470499, 0.02548668533563614, -0.0009234306635335088, 0.02647937461733818, 0.0007820303435437381, -0.03165058419108391, -0.020742561668157578, -0.005052897147834301, -0.011583283543586731, -0.011381282471120358, 0.01153711136430502, -0.013493630103766918, -0.007664474193006754, 0.005012496840208769, 0.05060400068759918, 0.007820303551852703, 0.013609059154987335, -0.012397056445479393, -0.011069624684751034, -0.035044193267822266, -0.010411680676043034, -0.004469981417059898, -0.07073478400707245, -0.01558289211243391, -0.0573912151157856, 0.021919934079051018, -0.02853400632739067, 0.02924966625869274, 0.032112300395965576, 0.013262772932648659, 0.029041893780231476, -0.04153129458427429, 0.02299342304468155, 0.0058435844257473946, 0.01171602588146925, 0.014717175625264645, -0.03185835853219032, 0.052173830568790436, -0.008512875996530056, 0.026894917711615562, 0.007070015650242567, 0.003333007451146841, -0.008120418526232243, 0.01007116585969925, 0.026756402105093002, 0.05785293132066727, -0.04640239104628563, 0.02664097398519516, -0.004389181267470121, -0.03820694237947464, -0.009863393381237984, -0.01565214991569519, 0.02403228171169758, 0.03529813513159752, 0.016148492693901062, 0.025856057181954384, 0.02161981910467148, 0.027933776378631592, 0.004605610389262438, 0.03513653576374054, -0.003093492705374956, -0.04067711904644966, -0.08892637491226196, -0.032296985387802124, 0.01025008037686348, 0.010734881274402142, -0.008535961620509624, 0.0021772764157503843, -0.01522506307810545, -0.060669392347335815, 0.016702551394701004, 0.0377221405506134, -0.040607862174510956, 0.03880717232823372, -0.012258541770279408, -0.03689105436205864, 0.02050016075372696, -0.036937225610017776, 0.019091928377747536, -0.012281627394258976, -0.04307803884148598, -0.043839868158102036, 0.019888387992978096, 0.0019435329595580697, 0.027587490156292915, 0.006539043039083481, -0.022785650566220284, 0.00424778088927269, 0.06394757330417633, -0.0014471890171989799, 0.012431684881448746, 0.01751055382192135, 0.08615607768297195, 0.019495928660035133, -0.037098824977874756, 0.003676408203318715, 0.011681397445499897, 0.023824511095881462, -0.01583683490753174, 0.008178132586181164, -0.03515962138772011, 0.0021787192672491074, -0.030334696173667908, -0.025278914719820023, 0.03949974477291107, 0.013712945394217968, -0.0035234650131314993, -0.018237754702568054, 0.013493630103766918, -0.02161981910467148, -0.048203080892562866, -0.06247008219361305, -0.007254702039062977, 0.029688294976949692, -0.008068474940955639, 0.01973832957446575, 0.05429772287607193, 0.029665209352970123, 0.028811035677790642, 0.003076178254559636, 0.021169647574424744, 0.015859920531511307, 0.024240054190158844, 0.016217751428484917, -0.0014594532549381256, 0.003226235741749406, -0.014474775642156601, -0.035921450704336166, 0.034305449575185776, 0.02474794164299965, -0.012200827710330486, -0.008432076312601566, -0.01105808187276125, 0.004175637848675251, 0.0199576448649168, -0.0003783901338465512, 0.033289674669504166, -0.08398601412773132, -0.0016549609135836363, -0.009563278406858444, 0.011161968111991882, 0.031096527352929115, -0.045455873012542725, -0.02275102213025093, -0.0037283513229340315, -0.019253529608249664, -0.031558241695165634, -0.005329926032572985, -0.027564404532313347, -0.07507491111755371, -0.019495928660035133, 0.026987260207533836, -0.03425927832722664, 0.016944952309131622, -0.016344722360372543, 0.009944193996489048, 0.0029751781839877367, -0.023755254223942757, -0.012904942966997623, 0.004882639739662409, -0.06233156844973564, -0.008668704889714718, -0.03412076085805893, 0.029965324327349663, -0.040884893387556076, -0.05009611323475838, 0.03629082441329956, -0.07798371464014053, 0.02219696342945099, 0.026525545865297318, 0.035344306379556656, 0.04049243405461311, -0.019645987078547478, 0.005534812342375517, -0.02428622543811798, -0.032112300395965576, 0.013736031018197536, -0.03876100108027458, -0.006769901141524315, -0.008870705962181091, 0.026848746463656425, -0.0015972463879734278, 0.010584823787212372, -0.00765293138101697, -0.019449757412075996, -0.06814917922019958, -0.030911840498447418, -0.03774522617459297, 0.006752586457878351, 0.04741816222667694, -0.056560125201940536, -0.06884175539016724, -0.025555942207574844, 0.03585219383239746, 0.0477413646876812, 0.004380524158477783, -0.00958059262484312, -0.062423910945653915, -0.05138891562819481, -0.03566750884056091, 0.068426214158535, -0.009482478722929955, -0.010486708953976631, 0.012847228907048702, -0.0019016900332644582, -0.018872613087296486, 0.05032696947455406, -0.008385904133319855, 0.017672153189778328, 0.012258541770279408, 0.008535961620509624, 0.008466704748570919, 0.02971138060092926, -0.0039072660729289055, 0.034028418362140656, 0.039592087268829346, -0.018872613087296486, -0.017279695719480515, -0.009563278406858444, -0.05946893244981766, 0.02153901942074299, -0.014740261249244213, -0.008004989475011826, -0.056421611458063126, 0.03952283039689064, 0.07950738072395325, -0.023639824241399765, -0.019611358642578125, -0.008766819722950459, -0.011612140573561192, 0.0019420901080593467, -0.037837572395801544, 0.012120027095079422, -0.007889560423791409, -0.02647937461733818, -0.03642933815717697, -0.017602896317839622, 0.0117333410307765, 0.00856481958180666, -0.05886870250105858, -0.0328279584646225, 0.0026072487235069275, 0.0036562082823365927, 0.006943044252693653, 0.029041893780231476, -0.027472062036395073, -0.02460942603647709, 0.0232127383351326, 0.005990756209939718, -0.0018685042159631848, 0.031558241695165634, -0.03714499622583389, 0.005269326269626617, -0.024378569796681404, -0.019992273300886154, 0.011981512419879436, 0.014659461565315723, 0.017060380429029465, 0.04014614596962929, 0.023616738617420197, 0.05942276120185852, -0.028811035677790642, 0.010896481573581696, -0.020396273583173752, 0.02971138060092926, -0.014036145992577076, 0.0045882961712777615, 0.010688710026443005, 0.010319337248802185, 0.01332048699259758, 0.005127925891429186, 0.00036901154089719057, 0.008108875714242458, 0.05674481391906738, -0.02458634041249752, -0.01382837351411581, 0.02340896613895893, -0.03322041779756546, 0.01583683490753174, 0.0072373878210783005, 0.0179491825401783, 0.006573671940714121, 0.03873791545629501, 0.035367392003536224, 0.02123890444636345, -0.04229312390089035, 0.023639824241399765, 0.008818762376904488, 0.014694090001285076, 0.03700648248195648, -0.010434766300022602, -0.024378569796681404, -0.011571740731596947, -0.005067325662821531, 0.00036125615588389337, -0.01699112355709076, -0.014186203479766846, 0.02971138060092926, -0.013078086078166962, -0.0372835136950016, -0.007814532145857811, 0.01652940921485424, 0.01112733967602253, 0.026733316481113434, -0.04323963820934296, 0.0036100365687161684, -0.03382064774632454, 0.041185006499290466, 0.004380524158477783, -0.0074797882698476315, -0.008899562992155552, 0.0003087721124757081, -0.004265095107257366, -0.020327016711235046, 0.001874275621958077, -0.0030502069275826216, 0.00970179308205843, 0.0125932851806283, 0.021273532882332802, -0.026410115882754326, -0.015559806488454342, -0.009038077667355537, 0.007093101739883423, 0.0116063691675663, -0.003006921149790287, -0.040907979011535645, -0.018433984369039536, -0.0020026902202516794, -0.030496297404170036, 0.018653299659490585, 0.014474775642156601, -0.0377221405506134, -0.018653299659490585, 0.019588273018598557, -0.00644670007750392, -0.02267022244632244, 0.0009724879055283964, -0.027425890788435936, -0.011969969607889652, 0.04917268082499504, -0.0063601285219192505, -0.013343572616577148, -0.015386663377285004, 0.0024312196765094995, -0.014290088787674904, -0.0004570260352920741, -0.016275465488433838, -0.022566337138414383, 0.018630214035511017, 0.0071739018894732, 0.03749128431081772, -0.007214301731437445, 0.04323963820934296, -0.013724488206207752, -0.005081754177808762, 0.02115810476243496, 0.009118877351284027, 0.015363577753305435, 0.0032002644147723913, -0.009955736808478832, 0.0026014773175120354, -0.03412076085805893, 0.006406300235539675, -0.0008851948659867048, -0.013355115428566933, 0.04697953537106514, 0.045294273644685745, 0.006262014154344797, -0.028741778805851936, 0.010792595334351063, 0.006631386466324329, -0.007341273594647646, -0.011773740872740746, -0.0037918370217084885, -0.017602896317839622, -0.02472485601902008, 0.001372160273604095, -0.03167366981506348, -0.010024993680417538, -0.010763738304376602, 0.0038639800623059273, -0.01959981583058834, -0.014001517556607723, 0.004493067041039467, -0.02181604877114296, -0.008991905488073826, -0.030958011746406555, 0.045294273644685745, 0.012004598043859005, -0.011340882629156113, -0.013793745078146458, 0.03619848191738129, 0.0074797882698476315, 0.03472099080681801, 0.03455939143896103, -0.029388180002570152, 0.016460150480270386, -0.008934191428124905, -0.0015871464274823666, -0.015121176838874817, -0.00272700609639287, 0.03668328374624252, 0.0304501261562109, 0.02751823328435421, 0.0064755575731396675, 0.02560211531817913, -0.023939939215779305, -0.003494607750326395, -0.011369739659130573, 0.009540192782878876, -0.030981097370386124, -0.08477093279361725, 0.012270084582269192, -0.004764324985444546, 0.01166408322751522, 0.009574821218848228, 0.035482823848724365, -0.00735281640663743, -0.0380915142595768, 0.014290088787674904, -0.031535156071186066, 0.001613117870874703, -0.05185063183307648, -0.006948815658688545, -0.012420142069458961, 0.019969187676906586, 0.02444782666862011, 0.003333007451146841, -0.04594067484140396, 0.0251865703612566, -0.019807586446404457, -0.005883984733372927, 0.03848397359251976, -0.021388962864875793, -0.008051160722970963, 0.006625615060329437, 0.001623217947781086, -0.007970361039042473, 0.007826074957847595, 0.005151011515408754, 0.01093688141554594, 0.009932651184499264, -0.0007160194800235331, 0.014336260966956615, -0.037560541182756424, -0.0030184639617800713, 0.0007899660849943757, -0.00046207604464143515, -0.02590223029255867, -0.0166332945227623, -0.02560211531817913, -0.046194616705179214, 0.007468245457857847, 0.023420508950948715, -0.0054020690731704235, -0.0007531731389462948, 0.0008880805689841509, -0.02971138060092926, 0.009661393240094185, 0.007254702039062977, 0.00119757407810539, -0.058914873749017715, 0.030657896772027016, 0.004218923859298229, 0.0258791446685791, -0.005950356367975473, -0.009338192641735077, 0.02181604877114296, 0.01918427087366581, 0.004487295635044575, 0.02161981910467148, 0.008201218210160732, -0.011542882770299911, 0.007381673902273178, -0.03192761540412903, 0.029041893780231476, 0.0006352192722260952, -0.007312416564673185, 0.008876477368175983, -0.003592722350731492, 0.038876429200172424, 0.01808769814670086, 0.015236605890095234, 0.013031914830207825, -0.0019074614392593503, 0.0016751609509810805, -0.026110000908374786, -0.016864152625203133, 0.015986893326044083, -0.02137742005288601, -0.0005273654824122787, 0.037814486771821976, 0.016287008300423622, -0.0315120704472065, -0.003079063957557082, 0.043839868158102036, -0.007606760133057833, 0.03324350342154503, -0.02299342304468155, 0.00644670007750392, -0.029203495010733604, -0.025278914719820023, -0.00044187597814016044, -0.015859920531511307, 0.004599838983267546, -0.013055000454187393, -0.0143478037789464, 0.021850677207112312, 0.00014320389891508967, -0.012073855847120285, -0.011421683244407177, 0.0696728453040123, 0.026964174583554268, -0.00702384440228343, -0.037675969302654266, -0.0416698083281517, 0.023524396121501923, -0.031696755439043045, 0.008189675398170948, 0.0269410889595747, 0.014867233112454414, 0.0367756262421608, 0.010388595052063465, 0.018630214035511017, -0.002408134052529931, 0.03451322019100189, 0.0006445978651754558, -0.03908420354127884, 0.04263940826058388, -0.008305104449391365, 0.027472062036395073, -0.0073181879706680775, 0.05222000181674957, 0.015779120847582817, -0.04009997472167015, 0.004467095714062452, -0.012050770223140717, -0.002226333599537611, -0.01658712327480316, 0.010763738304376602, 0.018295468762516975, -0.0050788684748113155, -0.0026591916102916002, 0.0626547709107399, -0.009626764804124832, 0.023824511095881462, 0.002286933595314622, 0.01852632686495781, 0.03252784535288811, 0.0095228785648942, -0.0014536818489432335, -0.0026361059863120317, 0.013031914830207825, -0.004827810917049646, 0.0046719820238649845, -0.03220464289188385, -0.019011128693819046, 0.03248167410492897, -0.002540877088904381, -0.010371280834078789, -0.06777980923652649, 0.02472485601902008, -0.01685260981321335, -0.013447458855807781, 0.026987260207533836, -0.0005674048443324864, -0.029342008754611015, 0.004920153878629208, 0.022624051198363304, 0.010284708812832832, -0.01025008037686348, 0.009280477650463581, 0.024355484172701836, 0.010313565842807293, 0.008074246346950531, 0.0020589616615325212, -0.0376528836786747, -0.0013490744167938828, 0.059191904962062836, -0.00979990791529417, 0.044855643063783646, -0.003930351696908474, -0.03806842863559723, -0.029180407524108887, -0.028718693181872368, 0.01382837351411581, 0.001715561025775969, 0.03400533273816109, 0.029642123728990555, 0.01293957233428955, 0.018053069710731506, 0.029688294976949692, 0.0026101344265043736, -0.0023706196807324886, 0.01647169329226017, 0.04857245087623596, 0.05282023176550865, -0.027864519506692886, 0.0210195891559124, -0.012697171419858932, 0.019992273300886154, 0.005003839731216431, 0.01682952418923378, 0.010821453295648098, -0.022808736190199852, -0.02560211531817913, -0.0227741077542305, -0.00497498270124197, -0.03294338658452034, -0.018780270591378212, -0.06223922595381737, 0.007993446663022041, -0.027887605130672455, 0.009817222133278847, -0.008720648474991322, 0.00783761776983738, -0.013124258257448673, 0.010654080659151077, 0.007306645158678293, -0.018272383138537407, -0.010157736949622631, 0.0009191020508296788, 0.012281627394258976, 0.029018808156251907, -0.046171531081199646, 0.036660198122262955, 0.027726005762815475, 0.014867233112454414, 0.026894917711615562, 0.02123890444636345, -0.0022638479713350534, 0.0012163312640041113, -0.026964174583554268, 0.023524396121501923, -0.0037052654661238194, 0.03409767523407936, 4.1189156036125496e-05, -0.011842997744679451, -0.04176215082406998, 0.01880335621535778, -0.006677557714283466, 0.02351285330951214, 0.011398596689105034, -0.009713335894048214, -0.021008046343922615, 0.003829351393505931, 0.01696803793311119, -0.023258909583091736, 0.01918427087366581, 0.008408990688621998, -0.019553644582629204, -0.038414716720581055, -0.0345824770629406, -0.00904384907335043, 0.0010381380561739206, 0.005534812342375517, 0.03280487284064293, 0.000556222687009722, 0.03128121420741081, 0.011196596547961235, 0.0077568176202476025, -0.025694457814097404, 0.019034214317798615, 0.02348976768553257, 0.05808378756046295, -0.025555942207574844, -0.00477586779743433, -0.020788732916116714, 0.005024039652198553, 0.022404735907912254, 0.01477489061653614, -0.017475925385951996, 0.039130374789237976, 0.01658712327480316, 0.007052701432257891, -0.004868210759013891, -0.01175642665475607, 0.02620234526693821, -0.01968061551451683, -0.03762979805469513, 0.01882644183933735, 0.037260428071022034, -0.024771027266979218, 0.014659461565315723, 0.02460942603647709, -0.008812990970909595, -0.003257978707551956, -0.005855127237737179, 0.03892260044813156, 0.019011128693819046, 0.025809885933995247, 0.002139762043952942, -0.06145431101322174, -0.008143504150211811, 0.009615221992135048, 0.023582110181450844, -0.006244699936360121, 0.0033878362737596035, 0.0028467634692788124, 0.0004245616728439927, 0.02357056736946106, 0.014509404078125954, 0.014844147488474846, 0.019438214600086212, 0.010838767513632774, 0.0010799809824675322, 0.0027977062854915857, -0.010198136791586876, 0.02578680031001568, 0.013216600753366947, 0.0019334328826516867, 0.0045594386756420135, 0.02217387780547142, 0.03303573280572891, -0.006902643945068121, -0.00882453378289938, 0.004784524906426668, -0.027195032685995102, 0.046333134174346924, -0.03072715550661087, 0.0009248735150322318, 0.02055787481367588, -0.010480937547981739, -0.042523980140686035, 0.0076413885690271854, -0.04153129458427429, -0.017776040360331535, 0.00497498270124197, -0.027056517079472542, 0.02414771169424057, 0.014544032514095306, 0.020765647292137146, -0.01281260047107935, -0.04227003827691078, 0.015629064291715622, 0.02604074403643608, 0.0036446652375161648, 0.020442446693778038, 0.027979949489235878, 0.023062679916620255, 0.042662497609853745, 0.0394074022769928, 0.01959981583058834, 0.024193882942199707, -0.010573280975222588, -0.047071877866983414, -0.023662909865379333, 0.005113497376441956, 0.021827591583132744, -0.010931110009551048, -0.03615231066942215, 0.033751390874385834, 0.02189684845507145, -0.02066176012158394, 0.01208539865911007, 0.05051165446639061, 0.03292030096054077, -0.007791446056216955, -0.02223159372806549, -0.0006326942821033299, -0.0328279584646225, -0.004646010231226683, 0.008432076312601566, -0.04360901191830635, -0.01558289211243391, 0.0018569612875580788, -0.02606382966041565, 0.007970361039042473, 0.01641397923231125, -0.03876100108027458, 0.006948815658688545, -0.01748746819794178, 0.03144281357526779, -0.0162292942404747, -0.011589054949581623, 0.001364945899695158, 0.01655249483883381, -0.003832237096503377, -0.038299284875392914, -0.003232007147744298, 0.01570986397564411, 2.818086613842752e-06, -0.0033156932331621647, 0.018457069993019104, -0.0048364680260419846, -0.0364062525331974, -0.00955173559486866, 0.008253161795437336, -0.0324585884809494, 0.02398611046373844, 0.03266635909676552, -0.013124258257448673, -0.0005641584284603596, -0.008466704748570919, -0.012558656744658947, 0.0251865703612566, -0.019507471472024918, -0.001445746049284935, -0.0232127383351326, 0.05374366417527199, -0.00012715207412838936, 0.03266635909676552, 0.014948033727705479, -0.003162750042974949, 0.019472843036055565, 0.020096158608794212, 0.0547594390809536, 0.0071565876714885235, 0.02578680031001568, 0.05369749292731285, 0.01208539865911007, -0.008391675539314747, 0.047071877866983414, -0.038853343576192856, -0.01000190805643797, 0.009038077667355537, 0.006256242748349905, -0.006088871043175459, 0.02661788836121559, -0.0032839502673596144, 0.03573676571249962, 0.022150792181491852, 0.017810668796300888, -0.010642537847161293, -0.013401287607848644, 0.015513635240495205, 0.0011304811341688037, -0.005370326340198517, -0.020396273583173752, 0.0049980683252215385, -0.038853343576192856, -0.025648286566138268, -0.00681030098348856, -0.013308944180607796, 0.00012724225234705955, 0.0350903645157814, 0.012131569907069206, 0.008305104449391365, 0.024655599147081375, -0.04155438020825386, 0.005067325662821531, -0.009788365103304386, 0.018653299659490585, 0.02779526263475418, -0.0014760461635887623, -0.019911473616957664, -0.017914554104208946, 0.0258791446685791, 0.044694043695926666, -0.0014616175321862102, -0.023916853591799736, -0.009545964188873768, -0.061685167253017426, 0.014567118138074875, 0.0008462376426905394, 0.06103876605629921, 0.009828764945268631, 0.007358587812632322, 0.0032839502673596144, 0.008218532428145409, -0.03102727048099041, 0.013574430719017982, 0.01770678348839283, -0.0286956075578928, 0.04307803884148598, 0.005038468632847071, 0.03746819868683815, 0.03499802201986313, -0.00031724892323836684, 0.016379350796341896, 0.0027573062106966972, 0.0003222989325877279, 0.0032637501135468483, 0.02332816645503044, -0.01347054447978735, 0.027472062036395073, -0.010238537564873695, 0.009205449372529984, -0.00753750279545784, -0.026294687762856483, -0.04009997472167015, -0.01012887991964817, -0.0096498504281044, -0.03310498967766762, 0.004614267498254776, -0.008512875996530056, 0.025671372190117836, -0.017452839761972427, -0.0012819814728572965, -0.006348585709929466, 0.00032825072412379086, -0.020234674215316772, -0.025094227865338326, 0.02460942603647709, 0.015640607103705406, 0.02897263690829277, 0.03075024113059044, 0.016506323590874672, 0.014013060368597507, 0.025232741609215736, 0.015963807702064514, -0.027264289557933807, -0.03017309680581093, 0.029457436874508858, -0.0377221405506134, 0.005226040259003639, 0.0036850653123110533, -0.005197183229029179, -0.029018808156251907, 0.009672936052083969, -0.02604074403643608, -0.022127706557512283, -0.04711804911494255, -0.018491698428988457, -0.0177298691123724, 0.006025385111570358, -0.012524028308689594, -0.05231234431266785, -0.027933776378631592, 0.026271602138876915, -0.0049980683252215385, 0.00596767058596015, -0.004161209333688021, -0.00528952619060874, -0.002812134800478816, -0.014821061864495277, -0.03215847164392471, 0.016044607385993004, 0.007312416564673185, 0.0054020690731704235, 0.04709496349096298, -0.008778362534940243, 0.016136949881911278, -0.023685995489358902, -0.012754885479807854, -0.025094227865338326, -0.017198896035552025, 0.006094642449170351, 0.0300114955753088, -0.0036994940601289272, -0.04037700593471527, -0.0010338095016777515, 0.005797413177788258, 0.009436306543648243, -0.005601183976978064, 0.03042704053223133, 0.018768727779388428, -0.019796043634414673, 0.02400919608771801, 0.02500188536942005, 0.022023821249604225, -0.004692181944847107, -0.03689105436205864, 0.010013450868427753, -0.018630214035511017, 0.00513946870341897, -0.010013450868427753, -0.03499802201986313, 0.03645242378115654, -0.006354357115924358, 0.00029434351017698646, -0.022150792181491852, 0.011288939975202084, 0.020811818540096283, -0.016460150480270386, -0.014186203479766846, -0.00586667051538825, 0.020373187959194183, -0.014751804992556572, -0.008997676894068718, -0.03559825196862221, 0.026687145233154297, -0.024632511660456657, -0.0020344331860542297, -0.029757551848888397, 0.007872246205806732, 0.016564037650823593, 0.03220464289188385, -0.006111956667155027, 0.010821453295648098, -0.00309060700237751, 0.006325500085949898, 0.03335893154144287, 0.017279695719480515, -0.03979986160993576, 0.010925338603556156, 0.0009465164039283991, 0.012685628607869148, 0.0315813273191452, 0.02063867449760437, -0.009407449513673782, -0.027287375181913376, -0.012824143283069134, -0.035044193267822266, -0.007474016863852739, 0.0010821452597156167, 0.02398611046373844, 0.017025751993060112, -0.03174292668700218, -0.024401655420660973, 0.021746791899204254, -0.007497102487832308, -0.017879925668239594, 0.007018072996288538, -0.009557507000863552, 0.008189675398170948, -0.0043978383764624596, -0.0022422049660235643, -0.038876429200172424, -0.009407449513673782, 0.019645987078547478, 0.004972096998244524, -0.01251248549669981, 0.021100390702486038, 0.0026649630162864923, -0.004161209333688021, -0.00036829011514782906, -0.04217769578099251, -0.015294319950044155, -0.0005536976968869567, -0.004074637778103352, 0.013435916043817997, -0.0016506322426721454, -0.01800689846277237, -0.006787215359508991, -0.009315107017755508, -0.03559825196862221, -0.007052701432257891, 0.017741411924362183, -0.020223131403326988, -0.0020055759232491255, -0.0015294320182874799, 0.012881857343018055, 0.018630214035511017, -0.004553667269647121, 0.01338974479585886, 0.006273556966334581, -0.010221223346889019, -0.029064979404211044, -0.024124626070261, -0.02175833471119404, -0.01677180826663971, -0.019645987078547478, 0.01786838285624981, -0.012339342385530472, 0.0412311777472496, -0.02532508596777916, 0.021261990070343018, 0.00033131681266240776, -0.03832237049937248, -0.026248516514897346, -0.006337042897939682, 0.00867447629570961, -0.014105402864515781, 0.004305495414882898, 0.002475948305800557, 0.03058863990008831, -0.005021153949201107, -0.004772982094436884, 0.030796412378549576, -0.05148125812411308, 0.007035387214273214, -0.015571349300444126, 0.011750655248761177, -0.005119268782436848, 0.01677180826663971, -0.005664669908583164, -0.009898021817207336, -0.010792595334351063, 0.01696803793311119, 0.0019031328847631812, -0.010105794295668602, 0.01033088006079197, 0.002037318889051676, -0.028787950053811073, 0.0021585191134363413, -0.02153901942074299, 0.0210195891559124, -0.03926888853311539, -0.03061172552406788, 0.04584833234548569, -0.0012790957698598504, 0.015698321163654327, 0.015063462778925896, -0.022289307788014412, 0.01685260981321335, -0.010446309112012386, 0.007797217462211847, -0.0027645204681903124, -0.026225430890917778, 0.021365877240896225, -0.06551740318536758, 0.010302023030817509, 0.01798381097614765, 0.002913135103881359, 0.0033849505707621574, 0.002817906439304352, -0.02091570384800434, -0.03525196388363838, -0.0021931477822363377, -0.038299284875392914, -0.029180407524108887, -0.01677180826663971, 0.0013151672901585698, -0.039130374789237976, 0.020984960719943047, -0.020384730771183968, 0.012431684881448746, -0.01910347118973732, 0.010359738022089005, -0.005364554934203625, 0.027726005762815475, 0.022358564659953117, -0.01289340015500784, -0.040884893387556076, -0.0424778088927269, -0.050881028175354004, 0.021308161318302155, -0.010925338603556156, 0.006429385859519243, 0.046610161662101746, 0.004992296919226646, -0.011900712735950947, -0.0390380322933197, -0.01397843100130558, -0.005387640558183193, -0.03174292668700218, 0.0014082316774874926, -0.02414771169424057, -0.027749091386795044, -0.000538547639735043, -0.01057905238121748, -0.0015150033868849277, 0.009644079022109509, 0.0221161637455225, -0.010255851782858372, 0.016344722360372543, 0.020269302651286125, -0.009384363889694214, -0.0210195891559124, 0.002387933898717165, 0.002898706588894129, 0.015906093642115593, -0.007733731530606747, 0.005130811594426632, 0.011969969607889652, -0.0201423317193985, 0.03601379692554474, 0.01266254298388958, 0.0030444355215877295, -0.02187376283109188, 0.004804725293070078, 0.011767969466745853, -0.061269622296094894, -0.01946130022406578, -0.0034426648635417223, -0.009615221992135048, 0.016183122992515564, 0.0021671762224286795, 0.027864519506692886, 0.010151965543627739, 0.01948438584804535, 0.009014992043375969, 0.006435157265514135, -0.007012301590293646, -0.005312611814588308, -0.0015698320930823684, -0.010244308970868587, -0.029388180002570152, 0.03400533273816109, -0.01682952418923378, -0.0210542194545269, 0.005909956060349941, 0.012200827710330486, 0.0003553043643478304, 0.005292411893606186, 0.005630041006952524, -0.010804138146340847, -0.02943435125052929, 0.024771027266979218, -0.04450935870409012, -0.017937639728188515, 0.0093208784237504, -0.028187720105051994, -0.013205057941377163, 0.0003544025821611285, -0.0011211024830117822, 0.015859920531511307, -0.044855643063783646, -0.002566848648712039, 0.028164634481072426, -0.01916118524968624, -0.01492494810372591, 0.017302781343460083, -0.020684845745563507, -0.004747010767459869, -0.0037976084277033806, -0.00841476209461689, 0.035205792635679245, -0.009788365103304386, 0.01647169329226017, 0.006585214752703905, 0.02129661850631237, -0.0023403195664286613, -0.004057323560118675, 0.027264289557933807, -0.004028466064482927, -0.037976086139678955, -0.008333961479365826, 0.021977650001645088, -0.014544032514095306, 0.023755254223942757, -0.008172361180186272, 0.025971487164497375, -0.036083053797483444, 0.015513635240495205, 0.018076155334711075, -0.034328535199165344, 0.016263922676444054, 0.03141972795128822, 0.0050759827718138695, -0.0024456484243273735, -0.004270866513252258, 0.010452080518007278, 0.045132674276828766, -0.01685260981321335, -0.010555966757237911, -0.003517693607136607, -0.005266440566629171, 0.018110783770680428, -0.024193882942199707, -0.013101172633469105, -0.030080752447247505, 0.009297791868448257, -0.0007798660662956536, 0.026294687762856483, -0.013874545693397522, 0.006792986765503883, -0.030657896772027016, 0.028880292549729347, -0.020846446976065636, 0.007762589026242495, 0.016321636736392975, -0.004899953957647085], [0.01387060433626175, 0.028676306828856468, 0.06496697664260864, 0.019380997866392136, -0.06006884574890137, -0.027518566697835922, 0.03673595190048218, -0.018412504345178604, 0.010024461895227432, 0.015150796622037888, -0.024958182126283646, 0.02602686546742916, -0.059623561799526215, -0.054102037101984024, -0.019403262063860893, 0.023355159908533096, -0.015941176563501358, 0.0341755673289299, 0.0002812596212606877, -0.017076650634407997, 0.04662126302719116, 0.04027596116065979, 0.005849922075867653, 0.057931482791900635, -0.010130217298865318, 0.002780243521556258, 0.06051412969827652, 0.010931728407740593, 0.013636830262839794, -0.020193642005324364, 0.03858388215303421, -0.015429100021719933, 0.0671933963894844, -0.03025706484913826, 0.056996386498212814, 0.03691406548023224, -0.022130627185106277, 0.007029925473034382, 0.03308461979031563, -0.011137672699987888, -0.09502366185188293, 0.03145933151245117, -0.034776702523231506, 0.014427210204303265, -0.04786805808544159, 0.04541899636387825, 0.04755635932087898, -0.005312797613441944, 0.0021554541308432817, 0.05557147413492203, 0.006562376860529184, 0.008894553408026695, -0.0066069052554667, 0.04671031981706619, 0.05187561735510826, -0.005577185191214085, 0.0005635629058815539, 0.0015501457965001464, -0.008388042449951172, -0.020861567929387093, 0.012234184890985489, 0.000736806308850646, -0.03894010931253433, -0.0014332587597891688, 0.0070521896705031395, -0.0013135885819792747, 0.03214952349662781, 0.019559111446142197, -0.05499260500073433, 0.02696196176111698, -0.01367022655904293, 0.0037988312542438507, -0.03061329387128353, -0.008176532573997974, -0.0011424324475228786, 0.016787216067314148, 0.030012158676981926, 0.013158150017261505, 0.011371446773409843, -0.002803899347782135, -0.010369556955993176, 0.012768526561558247, -0.020405150949954987, 0.035466890782117844, -0.009712763130664825, 0.036669157445430756, -0.0295000821352005, 0.03502160683274269, -0.03822765499353409, -0.006818415131419897, 0.017187971621751785, -0.020394019782543182, 0.00903927069157362, 0.0639873519539833, 0.018624015152454376, -0.034331414848566055, 0.037960484623909, -0.013236074708402157, -0.017811371013522148, 0.06710433959960938, -0.0019161138916388154, 0.030368385836482048, 0.0026577904354780912, 0.0402982272207737, 0.015340043231844902, -0.08424778282642365, -0.05779789760708809, 0.022186288610100746, 0.003996426239609718, -0.033396318554878235, -0.02651667781174183, 0.022976668551564217, -0.03604575991630554, 0.0235110092908144, -0.017399482429027557, 0.0024434973020106554, -0.014037586748600006, -0.009267478249967098, 0.0633639469742775, -0.009979933500289917, -0.019781753420829773, 0.0359344407916069, 0.025915544480085373, -0.06683716922998428, -0.007018793374300003, 0.005883318372070789, -0.02099515311419964, 0.005855488125234842, -0.02791932411491871, -0.021952513605356216, 0.0112434271723032, -0.01418230403214693, 0.03286197781562805, -0.03419782966375351, -0.017132312059402466, -0.015896648168563843, 0.013258338905870914, -0.011393710970878601, -0.022776290774345398, -0.03206046670675278, 0.007002095226198435, -0.021362513303756714, 0.037893690168857574, 0.015050607733428478, -0.020583264529705048, 0.0038099633529782295, 0.040877096354961395, 0.0677722617983818, 0.043593328446149826, -0.024958182126283646, -0.026071393862366676, 0.042947668582201004, -0.002572908066213131, 0.015495892614126205, 0.004294210113584995, -0.02239779755473137, -0.006367565132677555, 0.05236542969942093, 0.0005315580638125539, 0.001998213119804859, -0.062428854405879974, -0.009312007576227188, 0.025537053123116493, -0.0017546983435750008, 0.042391061782836914, -0.009712763130664825, -0.01881325989961624, 0.02791932411491871, -0.025960072875022888, -0.07503040134906769, -0.057530727237463, -0.055037133395671844, -0.0443948395550251, -0.0012558407615870237, -0.03720349818468094, -0.01096512470394373, 0.016174951568245888, 0.0058165257796645164, 0.037225764244794846, -0.034709908068180084, -0.003030715975910425, -0.0023252186365425587, -0.03464311733841896, -0.013057961128652096, -0.023644594475626945, 0.011955882422626019, -0.012790790759027004, -0.004505719989538193, -0.02567063830792904, -0.0018534957198426127, -0.012723998166620731, 0.02014911361038685, 0.019737225025892258, 0.00852719321846962, -0.020204773172736168, -0.008187664672732353, -0.04590880870819092, -0.027874793857336044, 0.0034648680593818426, 0.0014402163214981556, 0.02912159077823162, -0.017889294773340225, 0.014260228723287582, 0.015095136128365993, -0.0645662173628807, -0.05200920253992081, 0.01793382316827774, -0.00641209352761507, 0.04853598400950432, 0.014416078105568886, -0.0030195838771760464, -0.04590880870819092, -0.026739319786429405, 0.0030557631980627775, 0.0021498880814760923, -0.014627587981522083, 0.043326158076524734, 0.03528877720236778, -0.03664689511060715, 0.013236074708402157, 0.020171377807855606, -0.001338635804131627, 0.01251248735934496, 0.008042947389185429, 0.0027190169785171747, 0.010007764212787151, -0.0015459712594747543, -0.018835524097085, -0.003807180328294635, -0.044906917959451675, -0.03811633214354515, 0.02333289571106434, -0.018557220697402954, -0.014393813908100128, 0.026071393862366676, 0.015507024712860584, -0.01522872131317854, -0.015273249708116055, 0.0027663283981382847, 0.019637035205960274, 0.029811780899763107, 0.045018237084150314, -0.011031917296350002, -0.044817861169576645, 0.004959353245794773, 0.002707884879782796, -0.017243633046746254, 0.017800237983465195, 0.010447481647133827, 0.0004532854654826224, -0.005655110348016024, -0.005023363046348095, 0.027897058054804802, -0.026850640773773193, 0.039763882756233215, 0.014137775637209415, 0.028520457446575165, -0.010219274088740349, 0.01114323828369379, -0.023644594475626945, 0.040209170430898666, -0.0021749353036284447, -0.01049757655709982, 0.03876199573278427, -0.05592770501971245, -0.031882353127002716, 0.04813522845506668, -0.06817302107810974, -0.006195017136633396, 0.0019411611137911677, -0.056328460574150085, 0.021863456815481186, -0.020227037370204926, -0.022008175030350685, -0.009445592761039734, 0.01001889631152153, -0.01349211297929287, -0.04314804449677467, -0.0035678402055054903, 0.01185569353401661, -0.028208758682012558, -0.013046829029917717, 0.03515519201755524, -0.02284308336675167, -0.002784418174996972, 0.0018757599173113704, 0.004553031641989946, -0.004547465592622757, -0.027785737067461014, 0.050717879086732864, 0.011365881189703941, -0.034041982144117355, -0.04530767351388931, 0.020137980580329895, 0.04203483462333679, 0.0010262411087751389, -0.022731762379407883, 0.004269162658601999, -0.004227417521178722, 0.004397182259708643, -0.019881941378116608, -0.007937191985547543, -0.0018813259666785598, 0.026383092626929283, -0.032928772270679474, 0.017488539218902588, 0.022442325949668884, 0.02473554015159607, 0.004182889126241207, -0.00751417176797986, -0.02012684941291809, 0.00733049213886261, -0.021830061450600624, -0.006139356642961502, -0.012378902174532413, -0.01638646051287651, -0.02771894447505474, 0.005927846767008305, 0.02342195250093937, 0.015896648168563843, 0.005691289436072111, 0.0426359698176384, 0.019169487059116364, -0.026717055588960648, 0.03934086486697197, -0.007670021615922451, 0.0446842759847641, 0.03493255004286766, -0.033863868564367294, 0.026093658059835434, -0.05307788401842117, 0.034620851278305054, -0.011237861588597298, 0.0009837999241426587, -0.03609028831124306, -0.0053962888196110725, 0.02106194570660591, 0.03662462905049324, -0.027229132130742073, -0.04296993091702461, -0.02998989447951317, -0.02009345218539238, 0.028698571026325226, -0.004305342212319374, 0.022319873794913292, 0.015751929953694344, 0.028698571026325226, 0.016252875328063965, -0.030791407451033592, 0.036312930285930634, 0.007375020533800125, -0.0036401988472789526, -0.016954198479652405, 0.012935508042573929, -0.08656325936317444, -0.004845249466598034, -0.010035593993961811, 0.0013984708348289132, -0.03350764140486717, -0.003578972304239869, -0.024512898176908493, -0.023021196946501732, 0.007224737200886011, 0.0654122605919838, -0.023867236450314522, 0.017388351261615753, 0.010174745693802834, 0.014438342303037643, -0.006467754021286964, -0.007152378559112549, 0.030969521030783653, -0.004174539819359779, -0.049025796353816986, -0.04403861239552498, 0.0029166119638830423, -0.009690498933196068, 0.010124650783836842, 0.008282287046313286, -0.016308536753058434, 0.018100805580615997, 0.03045744262635708, 0.016553442925214767, 0.017811371013522148, 0.02622724324464798, 0.08108626306056976, 0.026538942009210587, -0.06407640874385834, -0.018935713917016983, 0.03613481670618057, 0.019035901874303818, -0.013046829029917717, 0.030680086463689804, -0.04889221116900444, 0.004227417521178722, -0.049604665488004684, -0.0032589242327958345, 0.04693296179175377, 0.03070235066115856, 0.003921284340322018, -0.04167860746383667, 0.008493796922266483, -0.0112434271723032, -0.015640608966350555, -0.05837676674127579, 0.020082321017980576, -0.003951897844672203, 0.03755972906947136, -0.004569729790091515, 0.027028754353523254, -0.013937396928668022, 0.006907471921294928, -0.04711107537150383, 0.030568763613700867, -0.015406835824251175, 0.02827555127441883, -0.008655212819576263, 0.009584743529558182, 0.031169898808002472, -0.015317779034376144, 0.0006039167637936771, 0.052320901304483414, 0.03232763707637787, -0.04245785251259804, 0.025715166702866554, -0.031036313623189926, 0.0248245969414711, -0.0032978865783661604, -0.0010178920347243547, 0.039429921656847, -0.07258133590221405, -0.07752399146556854, 0.009751725010573864, 0.028342343866825104, 0.03878425806760788, -0.026739319786429405, -0.039006900042295456, 0.004917608108371496, -0.019703827798366547, -0.020817039534449577, -0.029945366084575653, -0.028965741395950317, -0.007063321769237518, 0.022353269159793854, 0.07017680257558823, -0.02631630003452301, -0.0025325543247163296, -0.01339192409068346, 0.009529083035886288, 0.04804617166519165, -0.046042393893003464, 0.014883626252412796, -0.017043255269527435, -0.06487791985273361, -0.04132238030433655, -0.03157065436244011, 0.03016800805926323, 0.003311801701784134, -0.07048849761486053, 0.034420471638441086, -0.08077456802129745, 0.025982337072491646, 0.04185672104358673, 0.04982730746269226, 0.02210836298763752, 0.051074106246232986, 0.04419446364045143, -0.02829781547188759, -0.014037586748600006, -0.039942000061273575, -0.012056071311235428, -0.02838687226176262, 0.04132238030433655, 0.029923101887106895, -0.0006908863433636725, -0.014082115143537521, -0.003946331795305014, -0.01282418705523014, -0.02187458984553814, -0.04924843832850456, 0.005777563434094191, -0.009896442294120789, 0.05312241241335869, -0.037804633378982544, -0.0362238734960556, 0.05993526056408882, 0.04308125376701355, 0.018234390765428543, 0.036669157445430756, -0.042947668582201004, -0.037693314254283905, -0.013725887052714825, -0.033017829060554504, 0.033774811774492264, -0.008443702943623066, -0.026538942009210587, -0.0010721610160544515, -0.02266496978700161, -0.0032004807144403458, 0.08153154700994492, -0.02798611670732498, 0.005646761041134596, -0.04795711487531662, 0.02061666175723076, -0.033485375344753265, 0.02210836298763752, -0.03174876794219017, -0.0034871322568506002, 0.03257254511117935, -0.02377817966043949, -0.012879847548902035, -0.04804617166519165, -0.01784476637840271, 0.020249301567673683, 0.012779658660292625, -0.011889089830219746, -0.037804633378982544, -0.007085585966706276, 0.020405150949954987, 0.006434357725083828, 0.013380791991949081, 0.03747067227959633, 0.00751417176797986, -0.04167860746383667, -0.02243119478225708, -0.0031002915930002928, -0.02111760526895523, -0.011443805880844593, 0.002827555174008012, 0.010592198930680752, 0.016108158975839615, 0.014171171933412552, -0.04199030622839928, -0.049960892647504807, -0.0013121970696374774, 0.05178656056523323, 7.096718036336824e-05, 0.016653630882501602, -0.01466098427772522, -0.011432673782110214, 0.0031309048645198345, 0.01717684045433998, -0.02914385497570038, 0.01582985557615757, 0.02874309942126274, 0.006929736118763685, -0.011967014521360397, 0.020961755886673927, 0.011677579954266548, 0.00044841517228633165, 0.012968904338777065, 0.019024770706892014, 0.011338050477206707, 0.03186008706688881, 0.015529288910329342, 0.002193025080487132, -0.03099178522825241, 0.0350438728928566, -0.015562685206532478, -0.009211817756295204, 0.014315889216959476, 0.014104379341006279, -0.007447379175573587, -0.009918706491589546, -0.014460606500506401, 0.004566946532577276, 0.046398621052503586, -0.019024770706892014, 0.007302661892026663, 0.01770005002617836, -0.018145333975553513, -6.283552647801116e-05, 0.018234390765428543, 0.0135811697691679, 0.0315483883023262, 0.03584538400173187, 0.01705438643693924, 0.04245785251259804, -0.04517408832907677, -0.010876067914068699, 0.0027468472253531218, 0.010191443376243114, 0.009629271924495697, -0.013647962361574173, -0.04319257289171219, -0.02640535682439804, 0.01562947779893875, -0.012857583351433277, -0.024512898176908493, 0.012390034273266792, 0.02426799200475216, -0.015173060819506645, -0.0321272611618042, 0.010330595076084137, -0.012300977483391762, 0.03524424880743027, 0.03455405682325363, -0.028720835223793983, -0.0002591693482827395, -0.027897058054804802, 0.059445448219776154, 0.019848546013236046, -0.031147634610533714, -0.02360006608068943, 0.005549354944378138, -0.003069678321480751, -0.002392011461779475, 0.010057858191430569, -0.012256449088454247, 0.027518566697835922, 0.023644594475626945, 0.032817449420690536, -0.008683043532073498, 0.017722314223647118, -0.002545077819377184, -0.047734472900629044, -0.021574022248387337, -0.02921064756810665, -0.0516975037753582, -0.0037904821801930666, -0.03495481610298157, -0.01728816144168377, 0.0213179849088192, 0.003935199696570635, -0.002639700658619404, 0.020984020084142685, 0.014694380573928356, -0.023377424106001854, -0.02380044385790825, -0.001846538158133626, -0.009295308962464333, 0.0014722211053594947, 0.04138917103409767, -0.01959250681102276, 0.007753512356430292, 0.0019439441384747624, -0.006940868217498064, -0.02140704169869423, -0.00048459452227689326, -0.012078335508704185, -0.019503450021147728, 0.038806524127721786, -0.008076343685388565, 0.020338358357548714, -0.032928772270679474, 0.02097288891673088, -0.00560779869556427, 0.010169179178774357, 0.010313896462321281, 0.011733240447938442, 0.022442325949668884, 0.0277412086725235, -0.01989307440817356, 0.004939872305840254, -0.05454732105135918, 0.017187971621751785, -0.023956293240189552, -0.040320489555597305, 0.037893690168857574, 0.03025706484913826, 0.012434562668204308, 0.003876756178215146, -0.011610787361860275, -0.026561206206679344, -0.011822297237813473, 0.019202884286642075, 0.022587044164538383, 0.016464386135339737, -0.009423328563570976, -0.0024170586839318275, -0.031214427202939987, -0.012701733969151974, -0.02368912287056446, -0.0014346502721309662, -0.019926469773054123, 0.010720218531787395, 0.007391718681901693, -0.023733651265501976, 0.006445489823818207, -0.005905582569539547, 0.04161181300878525, -0.02593780867755413, -0.016163818538188934, -0.015139664523303509, 0.02331063151359558, 0.007786908652633429, 0.009239648468792439, 0.028141966089606285, -0.00975729152560234, 0.01910269446671009, -0.008282287046313286, 0.01869080774486065, 0.023110253736376762, -0.047066546976566315, 0.014549663290381432, 0.037225764244794846, 0.06523414701223373, 0.0027732860762625933, -0.008382475934922695, -0.012957772240042686, 0.001715735881589353, 0.01311362162232399, -0.0017143443692475557, 0.010174745693802834, -0.07957229763269424, -0.03108084201812744, -0.01536230742931366, 0.03317367658019066, 0.02138477750122547, 0.02138477750122547, 0.005282184574753046, -0.031437069177627563, -0.006963132414966822, -0.04720013216137886, 0.0012467959895730019, -0.03927407041192055, 0.01535117533057928, -0.016252875328063965, -0.004778456874191761, 0.033307261765003204, 0.009723895229399204, -0.006078130099922419, 0.0235110092908144, -0.025537053123116493, -0.030412914231419563, -0.013748151250183582, -0.027184603735804558, -0.004889777861535549, 0.0008822194649837911, 0.006768320687115192, 0.02856498584151268, 0.03297330066561699, 0.02322157472372055, 0.022909875959157944, -0.0032672733068466187, 0.004873079713433981, 0.002322435611858964, -0.018612882122397423, 0.0033451979979872704, 0.005557704251259565, 0.025715166702866554, -0.006924170069396496, -0.022709498181939125, 0.0038823222275823355, -0.02696196176111698, -0.0032422260846942663, 0.029388761147856712, 0.017911558970808983, 0.007708983961492777, 0.013080225326120853, 0.0033173677511513233, -0.007547568064182997, 0.006039167754352093, -0.010419651865959167, -0.03466537967324257, 0.049604665488004684, -0.0023168695624917746, 0.0019008071394637227, 0.023466480895876884, 0.017889294773340225, -0.04437257722020149, -0.00885002501308918, 0.020460812374949455, -0.01400419045239687, 0.035266514867544174, 0.005232090130448341, -0.008755401708185673, -0.012056071311235428, 0.006467754021286964, 0.006929736118763685, -0.0034899155143648386, 0.000659925164654851, 0.021952513605356216, 0.035555947571992874, 0.021306851878762245, 0.02219741977751255, 0.01687627285718918, -0.007586530409753323, -0.023733651265501976, -0.02687290497124195, -0.034064244478940964, -0.008003984577953815, -0.0003163953369949013, -0.019414393231272697, 0.03130348399281502, 0.0009392714709974825, 0.0150394756346941, -0.034598588943481445, 0.016831744462251663, -0.0015056174015626311, 0.0005687810480594635, -0.021184397861361504, -0.01600796915590763, -0.01653117872774601, -0.041923511773347855, -0.011109841987490654, -0.032349903136491776, 0.017822502180933952, -0.03597896918654442, 0.026204979047179222, 0.03898463770747185, 0.010876067914068699, 0.00651228241622448, -0.01493928674608469, 0.028676306828856468, 0.059890732169151306, -0.0029444422107189894, -0.01951458305120468, -0.023288367316126823, 0.018412504345178604, -0.05312241241335869, 0.015006079338490963, 0.013358527794480324, -0.004630956333130598, 0.009222949855029583, 0.04194577783346176, -0.047734472900629044, -0.013547773472964764, 0.028631778433918953, 0.007547568064182997, -0.06403187662363052, 0.04158955067396164, -0.011371446773409843, 0.019113827496767044, -0.022887611761689186, 0.01694306544959545, 0.01904703490436077, -0.02371138706803322, 0.024134406819939613, 0.00924521405249834, -0.010631161741912365, 0.004564163740724325, 0.042190682142972946, 0.02000439539551735, 0.0025088984984904528, 0.017722314223647118, 0.017711181193590164, -0.0382721833884716, 0.002975055482238531, 0.033396318554878235, 0.04684390500187874, 0.05668468773365021, -0.014716644771397114, 0.0007235869416035712, 0.022776290774345398, -0.01377041544765234, 0.014160039834678173, -0.00505397655069828, -0.050717879086732864, -0.025737430900335312, 0.032817449420690536, -0.017711181193590164, 0.0021498880814760923, -0.015751929953694344, 0.022264212369918823, 0.0071746427565813065, -0.01673155650496483, 0.022063834592700005, 0.010759181343019009, -0.030680086463689804, -0.03005668707191944, 0.017922692000865936, -0.0028776496183127165, -0.0027148425579071045, 0.02097288891673088, 0.010436349548399448, 0.003495481563732028, 0.041455965489149094, -0.029455553740262985, -0.04345974326133728, 0.01400419045239687, 0.04486238956451416, 0.015763062983751297, 0.035734061151742935, -0.024023085832595825, -0.046131450682878494, 0.01165531575679779, -0.0027259746566414833, 0.04370465129613876, 0.03165971115231514, 0.02734045311808586, 0.033017829060554504, 0.010185877792537212, 0.024891389533877373, 0.03174876794219017, -0.007113416213542223, -0.02085043489933014, 0.01714344322681427, 0.05094052106142044, 0.024468369781970978, 0.0043136910535395145, 0.018679674714803696, -0.0008801321964710951, 0.009868612512946129, 0.01574079878628254, 0.018679674714803696, -0.009306441061198711, 0.003108640667051077, -0.031236691400408745, -0.003233877010643482, -0.01048644445836544, -0.017020991072058678, 0.0016865141224116087, -0.04361559450626373, 0.013948529027402401, -0.028676306828856468, 0.018445899710059166, 0.015618345700204372, -0.03145933151245117, -0.0038461429066956043, -0.010859370231628418, 0.015941176563501358, -0.0015320561360567808, -0.021952513605356216, -0.009356535971164703, 0.01620834693312645, 0.01653117872774601, -0.01942552626132965, 0.036379724740982056, 0.006189451087266207, 0.0007180208922363818, 0.048936739563941956, 0.007937191985547543, 0.015462496317923069, 0.02065005712211132, -0.009590310044586658, 0.025358939543366432, -0.02678384818136692, 0.01568513736128807, -4.324018846091349e-06, -0.03669142350554466, -0.03368575498461723, 0.02736271731555462, 0.011889089830219746, -0.006122658494859934, 0.03145933151245117, 0.03671368584036827, -0.0016781650483608246, 0.00966823473572731, 0.009807385504245758, -0.011543994769454002, 0.028898948803544044, 0.016308536753058434, 0.005566053092479706, -0.016275139525532722, -0.03312914818525314, -0.008644080720841885, 0.001616938505321741, -0.003748736809939146, -0.0042830780148506165, 0.024935917928814888, 0.017154576256871223, 0.006378697231411934, 0.009851913899183273, -0.005293316673487425, 0.026360828429460526, -0.004288644064217806, 0.03054649941623211, 0.005849922075867653, -0.013269471004605293, -0.021251190453767776, 0.010608897544443607, 0.04470653831958771, 0.013926264829933643, -0.02342195250093937, 0.046398621052503586, 0.03248348832130432, -0.02380044385790825, -0.01485022995620966, -0.01778910681605339, 0.006128224544227123, -0.002287647919729352, -0.022564779967069626, 0.06127111613750458, 0.01146607007831335, -0.010269368067383766, 0.008772100321948528, -0.01778910681605339, 0.021741004660725594, -0.003768217982724309, -0.0030168008524924517, 0.035355571657419205, 0.005284967366605997, 0.015384571626782417, 0.004953787196427584, -0.019603639841079712, -0.013926264829933643, 0.027652151882648468, 0.019870810210704803, -0.00950681883841753, 0.009590310044586658, 0.036958593875169754, -0.003740387735888362, 0.008354646153748035, -0.0005214696284383535, 0.0004320648731663823, 0.02727366052567959, 0.012423430569469929, -0.0063453009352087975, 0.009089364670217037, -0.003378594294190407, 0.002056656638160348, -0.003951897844672203, 0.024223463609814644, 0.045285411179065704, 0.010981823317706585, 0.02088383212685585, 0.02187458984553814, -0.005240438971668482, 0.036290667951107025, -0.04991636425256729, 0.010091254487633705, -0.005360109265893698, 0.022765157744288445, 0.01603023335337639, -0.03482123091816902, -0.04328162968158722, -0.004656003788113594, -0.03252801671624184, -0.014427210204303265, 0.015317779034376144, -0.0009538823505863547, 0.04130011424422264, 0.01863514631986618, -0.0024922003503888845, -0.00020316094742156565, -0.027028754353523254, 0.008204362355172634, 0.025715166702866554, 0.0008571721846237779, -0.0061727529391646385, 0.03295103460550308, 0.014271360822021961, 0.054369207471609116, 0.035823117941617966, 0.014148907735943794, 0.033863868564367294, -0.012211920693516731, -0.006033601704984903, -0.05574958771467209, 0.006924170069396496, -0.02640535682439804, -0.020716849714517593, -0.06358659267425537, 0.012345505878329277, 0.025225352495908737, -0.014816833660006523, 0.015874383971095085, 0.0400087907910347, 0.00461425818502903, -0.013358527794480324, -0.010447481647133827, 0.027474038302898407, -0.036468781530857086, -0.0015237070620059967, 0.01928080804646015, -0.020516471937298775, -0.006707094144076109, -0.016130423173308372, 0.004063218832015991, -0.02727366052567959, -0.006957566365599632, -0.022998932749032974, 0.0044611915946006775, 0.01093729492276907, 0.020638925954699516, -0.029811780899763107, -0.02500271052122116, -0.029433289542794228, 0.005866620223969221, -0.0033229338005185127, -0.013035696931183338, 0.013369659893214703, 0.02567063830792904, 0.014104379341006279, -0.006801716983318329, -0.016553442925214767, -0.02032722719013691, -0.03221631795167923, 0.00015941524179652333, 0.006122658494859934, -0.046220507472753525, 0.02129572071135044, 0.010219274088740349, 0.012779658660292625, -0.009657102636992931, -0.008137569762766361, 0.016976462677121162, -0.007013227324932814, 0.014917022548615932, -0.0035873213782906532, -0.008621816523373127, 0.04317031055688858, -0.0046114749275147915, 0.0014513484202325344, 0.013347395695745945, -0.005674591287970543, 0.036201611161231995, -0.028453664854168892, 0.03700312227010727, -0.0002457760274410248, 0.022453458979725838, 0.025180824100971222, 0.014160039834678173, -0.00841030664741993, 0.09061534702777863, -0.06781679391860962, -0.007575398311018944, -0.006573508959263563, 0.023177046328783035, 0.012156260199844837, -0.0002339481725357473, 0.010825973935425282, 0.025626109912991524, -0.016508914530277252, 0.021217795088887215, 0.009467856958508492, -0.0025436864234507084, 0.03283971548080444, 0.014638720080256462, -0.0050734574906528, -0.03370801731944084, 0.003787699155509472, -0.04822428524494171, -0.016286272555589676, -0.009456724859774113, -0.02462421916425228, 0.00957917794585228, 0.052677128463983536, -0.007592096459120512, -0.0007750728982500732, -0.01282418705523014, -0.02856498584151268, 0.01105418149381876, -0.008822194300591946, 0.01793382316827774, 0.012189656496047974, -0.006818415131419897, -0.01030833087861538, -0.0053712413646280766, 0.056996386498212814, 0.03052423521876335, 0.010820407420396805, -0.021685343235731125, -0.0020705717615783215, -0.039429921656847, 0.022208552807569504, -0.00985748041421175, 0.056150346994400024, 0.0024685445241630077, -0.007102284114807844, 0.024468369781970978, 0.007191340904682875, -0.037960484623909, 0.010052292607724667, 0.008961346000432968, -0.0528552420437336, 0.00976842362433672, -0.01437154971063137, 0.029054798185825348, 0.04101068153977394, 0.0159189123660326, 0.00704662362113595, 0.029166119173169136, 0.007285963743925095, 0.014293625019490719, 0.011800033040344715, -0.013937396928668022, 0.007091152016073465, -0.004143926780670881, 0.028453664854168892, -0.013614566065371037, -0.0157741941511631, -0.01874646730720997, -0.0018381890840828419, -0.0009107454679906368, -0.0037431707605719566, 0.01863514631986618, -0.004079916980117559, 0.030279329046607018, -0.030947256833314896, -0.010319462977349758, 0.0031670844182372093, 0.018445899710059166, -0.01687627285718918, 0.00551317585632205, 0.006128224544227123, 0.04488465189933777, 0.013748151250183582, 0.0032505751587450504, 0.0012579280883073807, 0.01165531575679779, -0.0032310939859598875, 0.04261370375752449, -0.04679937660694122, -0.04530767351388931, 0.010686822235584259, 0.0002480372495483607, 0.009863045997917652, 0.006913037970662117, -0.02234213799238205, -0.0140932472422719, -0.014950418844819069, -0.023377424106001854, -0.0006794063956476748, -0.00831011775881052, -0.012267581187188625, 0.007146812509745359, -0.0010102386586368084, -0.003832227783277631, -0.03829444572329521, 0.004004775546491146, 0.046042393893003464, -0.004566946532577276, 0.016664763912558556, -0.010380689054727554, -0.01831231452524662, -0.0235110092908144, -0.013759283348917961, -0.00988531019538641, 0.014327021315693855, -0.02339968830347061, 0.023577801883220673, 0.03335179015994072, -0.03266160190105438, 0.02243119478225708, 0.007491907570511103, 0.009362101554870605, -0.028320079669356346, 0.009017006494104862, 0.003559491131454706, 0.025514788925647736, -0.005006664898246527, -0.031437069177627563, -0.008744269609451294, -0.01039738766849041, -0.001930029015056789, -0.00461425818502903, 0.03568953275680542, 0.004271945916116238, -0.019492318853735924, 0.01438268180936575, 0.024334784597158432, 0.018880052492022514, 0.0014290842227637768, -0.05294429883360863, 0.006334168836474419, -0.026806112378835678, -0.0024963750038295984, -0.028988005593419075, -0.03455405682325363, 0.008215494453907013, 0.007825870998203754, -0.0040131243877112865, 0.009083799086511135, 0.02698422595858574, -0.007375020533800125, 0.006517848465591669, -0.0248245969414711, 0.006467754021286964, 0.015095136128365993, -0.04196804016828537, -0.018913449719548225, -0.011510598473250866, 0.049515608698129654, -0.046220507472753525, -0.010508708655834198, -0.010547670535743237, 0.010436349548399448, -0.0011772202560678124, 0.021395908668637276, 0.0034843492321670055, -0.01939212903380394, 0.015763062983751297, -0.007107850164175034, 0.016553442925214767, 0.04054313153028488, -0.003395292442291975, -0.02509176731109619, 0.016408724710345268, 0.018612882122397423, 0.014327021315693855, 0.001000498072244227, 0.0035678402055054903, -0.01807854138314724, 0.004166190978139639, -0.01757759600877762, -0.005145816132426262, 0.0024796766228973866, 0.005794261582195759, 0.007152378559112549, -0.013191546313464642, -0.04152275621891022, 0.008137569762766361, -0.004305342212319374, -0.023644594475626945, 0.0021262322552502155, 0.009300874546170235, 0.01483909785747528, -0.01166644785553217, -0.021162133663892746, -0.0051931277848780155, 0.01466098427772522, 0.030657822266221046, 0.0175219364464283, -0.0017213019309565425, 0.02106194570660591, -0.025247616693377495, -0.03194914758205414, 0.009645970538258553, -0.02978951670229435, -0.0065790750086307526, 0.018891185522079468, -0.003523311810567975, 0.01615268737077713, 0.009206252172589302, -0.02649441361427307, -0.013792679645121098, -0.037804633378982544, -0.04067671671509743, -0.006105960346758366, 0.04185672104358673, -0.0065234145149588585, 0.024290256202220917, 0.020349491387605667, 0.011510598473250866, 0.024846861138939857, 0.009278610348701477, -0.02762988768517971, 0.0020997936371713877, -0.023110253736376762, -0.0135811697691679, -0.040698982775211334, -0.02707328274846077, 0.013336263597011566, -0.023288367316126823, 0.029344232752919197, -0.025737430900335312, 0.02547026053071022, -0.030947256833314896, 0.02313251793384552, -0.02435704879462719, -0.01447173859924078, -0.040788039565086365, -0.00276354537345469, -0.007146812509745359, -0.036023497581481934, -0.0007500256760977209, 0.014338153414428234, 0.012401166372001171, -0.005771997384727001, 0.0036708121187984943, -0.013759283348917961, -0.03980841115117073, 0.013725887052714825, -0.021217795088887215, 0.014972683042287827, -0.013358527794480324, -0.0021791099570691586, -0.026806112378835678, 0.004288644064217806, -0.012156260199844837, 0.010725785046815872, 0.00226677511818707, -0.002010736847296357, -0.012100599706172943, -0.011866825632750988, -0.01872420310974121, -0.005076240748167038, -0.037225764244794846, 0.027652151882648468, -0.024601954966783524, 0.015262117609381676, 0.008365778252482414, 0.0010951210279017687, 0.03727029263973236, 0.01058663334697485, -0.03715896978974342, 0.005407420918345451, 0.006656999699771404, -0.02426799200475216, 0.01641985774040222, -0.010213707573711872, 0.0035260948352515697, -0.05196467414498329, -0.005081806797534227, 0.0016030233819037676, -0.004984400700777769, 0.011349182575941086, -0.016920801252126694, -0.028231022879481316, -0.033663488924503326, 0.015618345700204372, -0.03203820437192917, -0.014683248475193977, -0.044172197580337524, -0.006395395379513502, -0.05463637784123421, 0.02771894447505474, -0.018657410517334938, 0.026917433366179466, -0.025982337072491646, 0.023577801883220673, -0.007180208805948496, -0.006228413432836533, -0.009467856958508492, -0.03548915684223175, -0.03352990373969078, -0.04504050314426422, -0.029544610530138016, 0.018245521932840347, 0.022442325949668884, 0.011699844151735306, 0.03991973400115967, -0.003320150775834918, -0.0277412086725235, -0.039585769176483154, 0.010542104952037334, 0.001253057736903429, 0.0019453356508165598, -0.025626109912991524, -0.038539353758096695, -0.02172987163066864, -0.008911251090466976, 0.008243325166404247, 0.0007305445033125579, -0.0009824084118008614, 0.0031309048645198345, -0.0074752094224095345, -0.0014513484202325344, -0.012089467607438564, 0.010080122388899326, 0.0030446310993283987, -0.004001992288976908, 0.025537053123116493, 0.008555023930966854, 0.007208039052784443, -0.0019870810210704803, 0.0341755673289299, -0.023644594475626945, 0.00969606451690197, -0.016508914530277252, 0.018935713917016983, -9.540563041809946e-05, -0.015718534588813782, 0.02435704879462719, -0.01685400865972042, -0.010670124553143978, -0.003375811269506812, -0.010814841836690903, 0.039006900042295456, 0.005426901858299971, 0.004419446457177401, 0.022130627185106277, 0.0009545781067572534, 0.00949012115597725, -0.014872494153678417, -0.005293316673487425, -0.0014304757351055741, 0.008137569762766361, -0.0036401988472789526, -0.035444628447294235, 0.01924741268157959, -0.010725785046815872, -0.008538325317203999, 0.01728816144168377, 0.009005874395370483, -0.003384160343557596, -0.0012558407615870237, -0.010703520849347115, -0.011955882422626019, -0.035622742027044296, 0.054369207471609116, -0.026338564231991768, 0.010480877943336964, -0.0173772182315588, -0.04065445438027382, -0.021306851878762245, 0.029544610530138016, -0.0023530491162091494, 0.004870296455919743, -0.04185672104358673, -0.0315483883023262, 0.017277028411626816, -0.018701938912272453, -0.02388950064778328, 0.0018006182508543134, -0.02987857349216938, -0.006979831028729677, -0.027407245710492134, 0.00185488723218441, 0.014059850946068764, -0.00044110973249189556, 0.020894963294267654, 0.023533273488283157, 0.034064244478940964, -0.029767252504825592, -0.01399305835366249, 0.03186008706688881, -0.0007430681143887341, -0.03081367164850235, 0.004942655097693205, 0.017533067613840103, -0.013558905571699142, 0.03219405189156532, 0.008833326399326324, 0.013102489523589611, -0.03397518768906593, -0.011020785197615623, 0.008549457415938377, -0.0164977815002203, 0.018145333975553513, 0.047912586480379105, -0.006133790593594313, 0.0036624630447477102, -0.029455553740262985, 0.011800033040344715, 0.028119701892137527, -0.025626109912991524, -0.017065519466996193, -0.016520045697689056, -0.0014610890066251159, 0.007341624237596989, -0.04054313153028488, 0.004881428554654121, 0.007152378559112549, -0.004747843369841576, -0.017110047861933708, 0.00158075918443501, -0.059534505009651184, 0.017599860206246376, -0.0065512447617948055, 0.031325746327638626, -0.0020872699096798897, 0.007831436581909657, -0.002060831291601062, 0.02126232348382473], [0.006625549402087927, -0.017571624368429184, 0.038572944700717926, 0.0024706616532057524, -0.047525789588689804, 0.03565547615289688, 0.004387338645756245, 0.06008649244904518, 0.005077731795608997, 0.015233195386826992, 0.005790396127849817, -0.028083421289920807, 0.04267076402902603, -0.0255668256431818, -0.018262017518281937, 0.01750481314957142, -0.03224804997444153, 0.029976435005664825, -0.03614543378353119, -0.009147712029516697, 0.040198709815740585, 0.014776645228266716, -0.013084067963063717, 0.001371739199385047, -0.003499292302876711, 0.026591280475258827, -0.014464854262769222, -0.026569008827209473, 0.04302709549665451, -0.053316183388233185, 0.07839305698871613, -0.025121411308646202, 0.047124914824962616, -0.01587904803454876, 0.03048866242170334, -0.011302407830953598, -0.006608846131712198, -0.008045310154557228, 0.04601137712597847, -0.009854808449745178, 0.016124024987220764, 0.038617487996816635, -0.006898365914821625, -0.031156783923506737, -0.01223777886480093, 0.04632316902279854, 0.03561093658208847, -0.022693898528814316, 0.023094771429896355, 0.02547774277627468, 0.014398042112588882, 0.01226004958152771, -0.016491493210196495, 0.03289390355348587, 0.02425285056233406, 0.008412777446210384, 0.007527514826506376, 0.050331905484199524, -0.016257651150226593, 0.0018345533171668649, -0.017337782308459282, 0.009136577136814594, -0.02968691475689411, 0.034898269921541214, 0.009331446141004562, -0.007878279313445091, -0.012750006280839443, 0.03227032348513603, -0.02786071226000786, -0.021368788555264473, -0.014219876378774643, 0.04627862572669983, 0.021457871422171593, -0.03788255155086517, -0.034987352788448334, -0.007761357817798853, 0.0271480493247509, -0.019653940573334694, 0.011207756586372852, -0.001984881004318595, -0.03108997270464897, 0.028840625658631325, -0.029018793255090714, 0.01049509271979332, 0.03872884064912796, -0.02986508049070835, -0.06641139090061188, -0.013317910954356194, -0.026635821908712387, 0.020511364564299583, -0.061689987778663635, -0.01117435097694397, -0.028038879856467247, 0.02710350789129734, 0.022549137473106384, 0.0019807051867246628, 0.038350239396095276, 0.0035466174595057964, -0.04483102634549141, 0.024542370811104774, -0.00718231825158, -0.03745940700173378, 0.03182490915060043, 0.04837207868695259, -0.005002568010240793, -0.014308959245681763, -0.03518779203295708, 0.030199142172932625, 0.04672404006123543, -0.006920636631548405, 0.01841791346669197, -0.0024845809675753117, -0.017627302557229996, 0.037125345319509506, 0.01519978977739811, -0.010289087891578674, -0.004774292930960655, -0.03117905557155609, 0.0398201085627079, -0.012616381980478764, -0.062224484980106354, 0.0034603183157742023, 0.03360656648874283, -0.04645679146051407, -0.0033740191720426083, -0.03429695963859558, -0.0027727088890969753, -0.026413114741444588, -0.05184631422162056, -0.0019598263315856457, 0.038751110434532166, -0.021558089181780815, 0.007772493176162243, -0.006285920273512602, 0.010044110007584095, -0.017404593527317047, 0.0008581199799664319, -0.008379370905458927, 0.011591927148401737, -0.025989970192313194, 0.005562120582908392, 0.01958712749183178, 0.0028061149641871452, 0.0035939428489655256, -0.04970832169055939, -0.0194535031914711, 0.02022184431552887, -0.008507427759468555, 0.038528405129909515, -0.03908517211675644, -0.004011519718915224, 0.03781573846936226, 0.008524131029844284, 0.03850613534450531, -0.009715616703033447, 0.049752864986658096, -0.012794547714293003, -0.0033712354488670826, 0.01348494179546833, 0.005659555550664663, -0.03630132973194122, -0.030844993889331818, -0.0011671266984194517, -0.028617918491363525, 0.013284504413604736, 0.004231443163007498, 0.0043567162938416, 0.04819391295313835, -0.064228855073452, -0.02552228420972824, -0.049841947853565216, 0.0009228443377651274, -0.06984108686447144, 0.0023105908185243607, -0.009370420128107071, -0.08364894986152649, 0.04385111480951309, 0.003337829140946269, -0.03503189608454704, 0.005105570424348116, -0.01570088230073452, 0.002725383499637246, -0.05229172855615616, -0.04189128801226616, -0.050109196454286575, 0.0366576611995697, 0.013150880113244057, 0.0053616841323673725, -0.013696514070034027, 0.0020085435826331377, 0.00631375890225172, 0.03797163441777229, -0.014398042112588882, 0.008418344892561436, -0.027036694809794426, 0.027571193873882294, -0.02199236862361431, 0.038172073662281036, -0.04810483008623123, 0.0015394658548757434, 0.03944150358438492, -0.03792709484696388, 0.035811372101306915, 0.052648063749074936, -0.05661225691437721, 0.02117948606610298, 0.01955372281372547, -0.005514795426279306, 0.014175334945321083, -0.012605247087776661, 0.03645722568035126, -0.02258254401385784, -0.017616165801882744, -0.023005688562989235, -0.0010536850895732641, 0.020867696031928062, -0.021558089181780815, -0.011803499422967434, 0.017816603183746338, 0.05184631422162056, -0.017092803493142128, -0.0034686699509620667, -0.015366820618510246, -0.032047614455223083, -0.053316183388233185, 0.0362122468650341, 0.026390843093395233, -0.01264978852123022, -0.007900550030171871, -0.05206902325153351, -0.01357402466237545, 0.013585159555077553, -0.01508843619376421, 0.011090835556387901, -0.034408316016197205, -0.02429739199578762, -0.04645679146051407, -0.03672447428107262, 0.03803844749927521, 0.007744654547423124, 0.0028590080328285694, -0.0008525523007847369, 0.0023231180384755135, 0.0017357268370687962, 0.046902209520339966, -0.02592315711081028, -0.018518131226301193, 0.006681226193904877, 0.020700665190815926, 0.007377187255769968, 0.037214428186416626, -0.011881447397172451, 0.04605592042207718, -0.10520704090595245, 0.0076889777556061745, 0.038350239396095276, -0.005397873930633068, -0.04605592042207718, 0.02026638574898243, -0.04846116155385971, 0.032960716634988785, -0.003332261461764574, -0.01664738915860653, 0.04242578521370888, -0.08810310065746307, 0.020322062075138092, 0.03632359951734543, -0.01687009632587433, -0.014776645228266716, 0.05260352045297623, -0.09015201032161713, 0.008680026046931744, -0.013139745220541954, -0.016636252403259277, 0.026947611942887306, 0.030644556507468224, -0.004977513570338488, -0.03180263563990593, -0.011341381818056107, 0.07474064826965332, -0.034096524119377136, -0.011669875122606754, -0.020667260512709618, -0.03215896710753441, 0.0014267201768234372, 0.0007725167670287192, -0.01117435097694397, -0.05941837280988693, -0.040555041283369064, 0.019464638084173203, 0.03175809606909752, -0.03908517211675644, 0.009337013587355614, 0.0006267129210755229, 0.04939653351902962, 0.031023159623146057, 0.005367251578718424, 0.009470637887716293, 0.02293887734413147, -0.0008212340762838721, 0.020845426246523857, 0.019331013783812523, -0.008724567480385303, -0.03565547615289688, -0.03514324873685837, 0.030755911022424698, -0.0019974082242697477, 0.035744559019804, 0.01958712749183178, -0.008396074175834656, 0.009648804552853107, 0.0637834370136261, -0.003705296665430069, -0.02474280819296837, -0.004256498068571091, -0.02741529792547226, -0.03783801198005676, -0.0162799209356308, 0.052959851920604706, -0.016046078875660896, 0.009420529007911682, 0.031513117253780365, 0.03639041259884834, -0.04832753539085388, -0.009648804552853107, -0.004949674941599369, 0.041468143463134766, 0.023918788880109787, -0.06859391927719116, -0.012660923413932323, -0.04685766622424126, -0.0038639758713543415, 0.028395211324095726, -0.019464638084173203, -0.017994768917560577, -0.019353285431861877, -0.020600447431206703, -0.008418344892561436, -0.02438647486269474, 0.00399203272536397, 0.04140133038163185, -0.018161799758672714, -0.014331229962408543, -0.006681226193904877, 0.00730480719357729, 0.02298341877758503, 0.019163982942700386, 0.041200894862413406, -0.032648924738168716, 0.02741529792547226, -0.006107754074037075, 0.016413545235991478, -0.05981924384832382, -0.003418560838326812, -0.061734531074762344, -0.031958531588315964, 0.012371404096484184, -0.0176384374499321, -0.0006294967606663704, 0.021970098838210106, 0.009620965458452702, -0.0032097725197672844, 0.012571840547025204, 0.038394778966903687, 0.01864062063395977, 0.0016577792121097445, -0.01065098773688078, 0.024943243712186813, 0.05402885004878044, -0.02184760943055153, 0.050554610788822174, 0.0325598418712616, 0.028439752757549286, 0.0038528405129909515, -0.004885646514594555, -0.044274259358644485, 0.047926660627126694, 0.018807651475071907, -0.058972954750061035, 0.013195421546697617, -0.023183854296803474, -0.0029397394973784685, -0.0076667070388793945, -0.029709186404943466, 0.025633636862039566, 0.01796136237680912, -0.07286990433931351, -0.0065420339815318584, -0.04100045934319496, 0.029531018808484077, 0.052826229482889175, 0.018674027174711227, -0.02293887734413147, 0.015144112519919872, -0.018696298822760582, -0.0037776767276227474, -0.014876863919198513, 0.02425285056233406, -0.019219661131501198, -9.70865658018738e-05, -0.010305791161954403, -0.025188222527503967, -0.00530322315171361, -0.023918788880109787, -0.022014640271663666, 0.0011970530031248927, -0.044808756560087204, -0.01954258605837822, 0.02325066737830639, -0.010890399105846882, -0.00037094723666086793, -0.008524131029844284, 0.04102272912859917, 0.0014545585727319121, 0.03385154530405998, -0.015956996008753777, -0.04561050236225128, 0.024230580776929855, -0.0055788238532841206, -0.00974902231246233, 0.05059915408492088, 0.02411922626197338, 0.021279705688357353, -0.01375219039618969, -0.011179918423295021, -0.002288319868966937, 0.015077300369739532, -0.0007258873665705323, -0.015979265794157982, -0.04108954221010208, 0.03750395029783249, 0.018161799758672714, 0.013362452387809753, 0.03995373100042343, -0.047169458121061325, -0.030889535322785378, 0.04565504565834999, -0.022192806005477905, -0.023918788880109787, -0.02190328575670719, 0.023874247446656227, 0.03558866307139397, 0.018651755526661873, -0.03741486743092537, -0.04102272912859917, 0.026279490441083908, -0.04877294972538948, -0.008084283210337162, -0.04917382448911667, 0.014286688528954983, -0.007059828843921423, -0.022148264572024345, -0.0542960986495018, 0.01819520629942417, -0.03229259327054024, -0.011658739298582077, -0.012883631512522697, -0.040020544081926346, 0.01927533745765686, -0.018295424059033394, -0.041913557797670364, 0.016613982617855072, 0.03968648239970207, 0.05540963634848595, 0.034274689853191376, 0.005534282419830561, -0.04235897213220596, 0.007009719964116812, 0.005069380160421133, -0.017393458634614944, -0.03189171850681305, -0.00046977371675893664, -0.019197389483451843, -0.012248914688825607, 0.042826659977436066, 0.025277305394411087, -0.017360052093863487, -0.09175550937652588, -0.01366310752928257, -0.05126727372407913, 0.020388875156641006, 0.05714675411581993, -0.02525503560900688, -0.014643020927906036, 0.05803758651018143, -0.0025332982186228037, 0.015210924670100212, 0.0023565241135656834, -0.01850699633359909, -0.00884705688804388, 0.023005688562989235, -0.020032543689012527, 0.03561093658208847, -0.00798406545072794, -0.019219661131501198, -0.017170751467347145, -0.044630590826272964, 0.02329520881175995, 0.012070748955011368, -0.03547731041908264, 0.02469826675951481, -0.015756558626890182, 0.007906117476522923, 0.04302709549665451, 0.05442972108721733, 0.0027768847066909075, -0.021691713482141495, -0.030154600739479065, 0.009988432750105858, -0.026635821908712387, -0.023651540279388428, 0.0343860425055027, 0.004075548145920038, -0.02614586427807808, -0.03806071728467941, -0.017571624368429184, -0.019475774839520454, -0.0024038495030254126, -0.015255466103553772, 0.011469438672065735, 0.0076889777556061745, -0.04311617836356163, -0.0384615920484066, -0.00642511248588562, -0.015366820618510246, 0.01223777886480093, -0.009370420128107071, -0.010912669822573662, -0.0021881016436964273, 0.026168135926127434, 0.008268017321825027, -0.0362122468650341, -0.04837207868695259, 0.05714675411581993, 0.002298063365742564, 0.020522499457001686, -0.00948177371174097, 0.006931771989911795, 0.014108522795140743, -0.0556323416531086, 0.05456334725022316, 0.028217045590281487, -0.014798915944993496, 0.01881878636777401, 0.0074384319595992565, -0.010962778702378273, -0.028840625658631325, 0.043316617608070374, 0.017393458634614944, 0.040644124150276184, 0.008724567480385303, 0.04801574721932411, -0.00100079202093184, -0.025210494175553322, -0.004231443163007498, -0.010706664994359016, 0.0005877391085959971, 0.002931388095021248, 0.029018793255090714, -0.008362667635083199, 0.01135251671075821, 0.020333198830485344, -0.0080286068841815, 0.0014517747331410646, 0.03182490915060043, -0.004462502431124449, 0.014988217502832413, 0.04939653351902962, -0.03233713284134865, 0.02329520881175995, -0.015956996008753777, 0.022872064262628555, -0.0014949243050068617, 0.0063972738571465015, 0.030243683606386185, 0.03523233160376549, 0.017204158008098602, -0.003321126103401184, 0.02266049198806286, 0.004448582883924246, -0.004429096356034279, 0.01697031408548355, -0.02688080072402954, -0.012070748955011368, -0.009236794896423817, 0.007043126039206982, -0.03750395029783249, -0.03518779203295708, 0.007572056259959936, 0.055988676846027374, 0.017115075141191483, 0.003666322911158204, 0.013173150829970837, 0.0042147403582930565, -0.00954858586192131, 0.017582761123776436, 0.03478691726922989, 0.019965730607509613, 0.02828385680913925, 0.016124024987220764, 0.010038542561233044, -0.000781564274802804, 0.012794547714293003, 0.009208956733345985, -0.028261587023735046, -0.015455903485417366, 0.012137561105191708, 0.0008643836481496692, 0.03434150293469429, 0.001596534624695778, 0.030844993889331818, 0.03117905557155609, 0.005706880707293749, -0.01728210411965847, -0.004752022214233875, 0.02832839824259281, -0.03777119889855385, -0.016268786042928696, 0.013451535254716873, 0.004615613725036383, -0.022604815661907196, -0.0088247861713171, 0.03333931788802147, 0.020288657397031784, -0.011140944436192513, -0.013852409087121487, -0.03614543378353119, -0.023918788880109787, -0.023362020030617714, -0.01341812964528799, -0.02841748110949993, 0.056077759712934494, -0.023829706013202667, 0.01891900599002838, 0.0025667042937129736, -0.050732776522636414, 0.026079053059220314, -0.0065197632648050785, 0.0037776767276227474, -0.015578391961753368, 0.025277305394411087, 0.006013103760778904, 0.008384939283132553, -0.018083851784467697, 0.052959851920604706, 0.0014629100915044546, 0.0037943797651678324, 0.019531451165676117, 0.004963594488799572, 0.026079053059220314, -0.004729751497507095, 0.0005438935477286577, 0.01203734241425991, -0.029241500422358513, 0.02434193342924118, 0.00398089736700058, -0.01194825954735279, 0.05380614101886749, 0.05968562141060829, -0.010127625428140163, -0.017115075141191483, 0.017772061750292778, -0.0010369819356128573, 0.0278161708265543, 0.02144673652946949, -0.021324247121810913, 0.01307293213903904, -0.008507427759468555, -0.022649357095360756, -0.01350721251219511, -0.038172073662281036, -0.03144630417227745, 0.011569656431674957, -0.04068866744637489, -0.003051093313843012, -0.02547774277627468, -0.029508749023079872, -0.012905902229249477, -0.04044368863105774, -0.012816818431019783, -0.03451966866850853, -0.00943723227828741, -0.017627302557229996, -0.006742470897734165, -0.022515732795000076, -0.009893782436847687, 0.019843241199851036, -0.026680363342165947, -0.004050493240356445, -0.03538822755217552, -0.035855915397405624, 0.03933015093207359, 0.0028729273471981287, -0.03249302878975868, 0.017671843990683556, 0.034631021320819855, 0.016023807227611542, -0.01217096671462059, -0.02864019013941288, -0.02099018543958664, 0.004172982648015022, 0.04872841015458107, 0.015667475759983063, -0.038617487996816635, -0.007794763892889023, 0.025678180158138275, -0.005386738572269678, -0.0009096211288124323, 0.06115549057722092, 0.021569225937128067, -0.014743238687515259, -0.03523233160376549, -0.01881878636777401, -0.008997384458780289, -0.021881015971302986, 0.0303104966878891, -0.0144759900867939, -0.010021839290857315, -0.009732319042086601, -0.006224675569683313, -0.01973188854753971, 0.019798699766397476, -0.02913014590740204, -0.02267162688076496, 0.03057774528861046, 0.001141376094892621, -0.0005299743497744203, 0.007672274950891733, 0.014776645228266716, -0.0006308886804617941, 0.01138035487383604, -0.035855915397405624, 0.020823154598474503, -0.026168135926127434, 0.002369051333516836, 0.024096956476569176, -0.008696729317307472, -0.026457656174898148, -0.03193626180291176, -0.0052614654414355755, 0.006653387565165758, -0.03351748362183571, 0.0006684705731458962, -0.03244848921895027, -0.012337997555732727, -0.002671098569408059, 0.019119441509246826, 0.030600015074014664, -0.009158847853541374, 0.017170751467347145, -0.013585159555077553, 0.0055899592116475105, 0.037481680512428284, -0.012371404096484184, -0.02122402936220169, 0.023918788880109787, -0.025455471128225327, -0.00021505197219084948, -0.04320526123046875, 0.007644436322152615, 0.0034714536741375923, 0.03293844684958458, 0.010779044590890408, 0.02139105834066868, -0.010322494432330132, -0.008863760158419609, -0.030778182670474052, 0.0046852100640535355, 0.023562457412481308, -0.017838872969150543, -0.015489309094846249, -0.006230243481695652, 0.032871633768081665, -0.00020670043886639178, 0.01669193059206009, 0.0080286068841815, 0.015489309094846249, -0.01524433121085167, -0.019297609105706215, -0.047213997691869736, 0.017037127166986465, -0.03541049733757973, 0.0008476805523969233, -0.010940507985651493, 0.02525503560900688, 0.007995200343430042, 0.011914853006601334, -0.017382323741912842, 0.03280482068657875, -0.007650003768503666, -0.027793901041150093, -0.0033795868512243032, 0.003401857567951083, -0.026034511625766754, 0.013974898494780064, -0.01927533745765686, 0.00886932760477066, -0.02403014339506626, -0.029196958988904953, 0.0029146848246455193, -0.015277736820280552, 0.02107926830649376, -0.014576208777725697, 0.0113135427236557, 0.06445156037807465, -0.024453287944197655, -0.0015436416724696755, 0.021045861765742302, 0.0032236916013062, -0.02144673652946949, -0.04271530732512474, 0.033406130969524384, -0.025054598227143288, -0.01528887264430523, 0.01115208026021719, -0.016124024987220764, 0.016001537442207336, 0.01339585892856121, -0.001551993191242218, 0.0303104966878891, -0.010461687110364437, -0.03514324873685837, 0.0176384374499321, -0.005353332497179508, 0.020299792289733887, -0.0017552138306200504, 0.014787781052291393, -0.0065308986231684685, -0.004373419098556042, -0.0016619550297036767, 0.0017496461514383554, -0.005935155786573887, 0.01296157855540514, -0.00398089736700058, 0.012750006280839443, -0.02904106304049492, -0.006781444419175386, -0.02899652160704136, 0.025054598227143288, -0.026813987642526627, 0.04948561638593674, -0.029575562104582787, -0.05197994038462639, -0.008785812184214592, -0.036167703568935394, 0.017393458634614944, 0.002588975243270397, 0.023651540279388428, -0.04184674844145775, 0.02438647486269474, 0.02202577516436577, -0.04654587432742119, 0.01949804462492466, -0.025900887325406075, 0.0305332038551569, -0.009086467325687408, -0.0007746046758256853, -0.028350669890642166, 2.2357749912771396e-05, -0.009398258291184902, 0.01904149539768696, 0.003120689420029521, 0.038528405129909515, -0.04311617836356163, 0.03570001944899559, 0.009281336329877377, 0.023094771429896355, -0.0010522931115701795, 0.01226004958152771, -0.02772708795964718, -0.0010133193572983146, 0.02447555772960186, -0.01280568353831768, -0.0003834745439235121, -0.004610046278685331, -0.004484773147851229, -0.017404593527317047, 0.021469006314873695, 0.035365957766771317, 0.014576208777725697, -0.008468453772366047, 0.011436032131314278, -0.004220307804644108, 0.003774892771616578, -0.02483189105987549, 0.007321510463953018, 0.02017730288207531, 0.049975570291280746, 0.03990919142961502, 0.01214869599789381, 0.019665075466036797, 0.014887998811900616, 0.0013543402310460806, -0.0028673596680164337, 0.007377187255769968, -0.023807436227798462, 0.026257218793034554, -0.017950227484107018, -0.00518073420971632, 0.01791682094335556, -0.00787271186709404, -0.0036746743135154247, 0.013139745220541954, 0.000520230911206454, 0.004284336231648922, -0.005353332497179508, 0.012516163289546967, -0.036345869302749634, 0.024319663643836975, -0.01350721251219511, 0.02416376769542694, -0.02194782719016075, -0.02407468482851982, -0.06569872051477432, -0.022549137473106384, 0.0008483765413984656, -0.026123594492673874, 0.014810051769018173, 0.02710350789129734, -0.011491709388792515, 0.04605592042207718, 0.007594326976686716, 0.002639084355905652, -0.0031290408223867416, -0.004715831950306892, -0.020667260512709618, -0.005038758274167776, 0.017727520316839218, 0.0012805683072656393, -0.020121626555919647, 0.01691463775932789, 0.0583493746817112, 0.023963330313563347, 0.05051007121801376, 0.02452009916305542, 0.023785164579749107, -0.0030037679243832827, 0.025210494175553322, 0.04244805872440338, -0.013295640237629414, 0.030332766473293304, -0.021201757714152336, -0.01280568353831768, -0.02270503342151642, 0.013540618121623993, -0.037481680512428284, -0.03552185371518135, -0.01850699633359909, 0.0080286068841815, 0.008512996137142181, 0.014798915944993496, -0.02325066737830639, 0.022359836846590042, -0.017571624368429184, -0.0007850441033951938, 0.0384615920484066, 0.03402971103787422, -0.010060813277959824, 0.017159616574645042, -0.004882862791419029, 0.03924106806516647, -0.008680026046931744, 0.016703065484762192, -0.061556365340948105, 0.055944133549928665, 0.023762894794344902, -0.020600447431206703, 0.007521946914494038, 0.006592143326997757, 0.016090620309114456, -0.034497398883104324, -0.021836474537849426, 0.01683668978512287, 0.024007873609662056, 0.03380700573325157, -0.01375219039618969, 0.01115208026021719, 0.005205788649618626, 0.028885167092084885, 0.022281888872385025, 0.011224459856748581, 0.014943676069378853, 0.029486477375030518, 0.0005567688494920731, -0.007861576043069363, 0.010478389449417591, 0.005620581563562155, -0.010923804715275764, -0.016135161742568016, 0.024765077978372574, -0.009092035703361034, 0.011859176680445671, 0.058215752243995667, 0.03193626180291176, -0.008256882429122925, 0.0187853816896677, 0.02062271721661091, -0.013585159555077553, 0.013340181671082973, 0.014197605662047863, 0.021869881078600883, 0.007750222459435463, 0.0014782212674617767, -0.012493892572820187, 0.0067369029857218266, 0.02221507765352726, 0.006553169339895248, -0.009721184149384499, -0.037214428186416626, -0.005172382574528456, 0.003596726804971695, -0.00317915016785264, -0.010851425118744373, 0.006564304698258638, -0.019832106307148933, -0.022782981395721436, -0.018896734341979027, -0.012159831821918488, -0.01756048947572708, 0.05082185938954353, 0.00264604389667511, 0.0244310162961483, 0.023651540279388428, -0.02683625929057598, -0.012304591946303844, 0.0054702539928257465, 0.015055029653012753, 0.01782773807644844, 0.04324980452656746, -0.012883631512522697, -0.004610046278685331, -0.0008629917283542454, -0.002936955774202943, 0.024898702278733253, -0.005885046906769276, 0.020878830924630165, 0.004882862791419029, -0.01868516206741333, -0.01271660067141056, 0.03376246243715286, 0.010422713123261929, 0.0034491829574108124, -0.03249302878975868, 0.04113408178091049, 0.005974129773676395, -0.01832883059978485, 0.040376875549554825, 0.0016355084953829646, 0.02320612594485283, 0.013607430271804333, 0.01976529322564602, 0.04231443256139755, -0.029976435005664825, -0.052469898015260696, -0.005912885069847107, -0.013084067963063717, -0.04405155032873154, -0.03516552224755287, 0.013785596936941147, 0.0014531667111441493, 0.026903070509433746, -0.0379939079284668, 0.0208120197057724, 0.013061797246336937, 0.013217692263424397, -0.01782773807644844, -0.03859521821141243, -0.004498692229390144, -0.0038110828027129173, 0.03538822755217552, -0.022315295413136482, 0.0030538770370185375, -0.0037665413692593575, 0.026301760226488113, 0.03908517211675644, 0.020878830924630165, -0.05175723135471344, -0.032693468034267426, -0.004635100718587637, -0.02338429167866707, 0.015600662678480148, 0.03656857833266258, 0.047436706721782684, -0.01291703712195158, -0.006775876972824335, -0.017682978883385658, -0.026079053059220314, 0.024007873609662056, 0.014141928404569626, -0.0035995105281472206, -0.003989249002188444, 0.014331229962408543, 0.011146511882543564, 0.020555905997753143, 0.00180671492125839, 0.02768254652619362, 0.015756558626890182, 0.00793952401727438, 0.026479925960302353, -0.027348486706614494, 0.026457656174898148, 0.0068593923933804035, -0.008407209999859333, -0.020979050546884537, 0.02995416335761547, -0.002689193468540907, 0.02320612594485283, -0.01936442032456398, 0.022515732795000076, 0.007922820746898651, -0.02619040571153164, -0.0036746743135154247, 0.04166857898235321, 0.012449351139366627, 0.01895241066813469, 0.023606998845934868, -0.0348537303507328, 0.007560920901596546, -0.003510427661240101, 0.04549914970993996, 0.006297055631875992, -0.014219876378774643, -0.02977599762380123, 0.0038444888778030872, 0.03044412098824978, -0.0180949866771698, -0.017627302557229996, 0.031958531588315964, -0.003797163488343358, 0.018117258325219154, -0.00326823303475976, 0.003218123922124505, 0.03358429670333862, -0.009955027140676975, 0.02320612594485283, -0.02185874432325363, -0.024007873609662056, -0.03209215775132179, 0.004331661853939295, 0.015934724360704422, 0.013128609396517277, -0.00726026576012373, 0.009075332432985306, 0.01614629663527012, -0.014375771395862103, 0.019475774839520454, -0.02478734962642193, 0.07776947319507599, 0.00569017743691802, -0.017772061750292778, -0.0260122399777174, 0.06837121397256851, -0.017092803493142128, -0.006113321986049414, -0.01638013869524002, -0.00355775305069983, 0.03688037022948265, -0.024007873609662056, 0.020322062075138092, 0.023629270493984222, 0.014030574820935726, -0.002099018543958664, 0.010550769977271557, 0.02859564870595932, 0.03443058580160141, 0.020522499457001686, 0.017850009724497795, -0.006825985852628946, -0.009698913432657719, 0.020032543689012527, -0.008613213896751404, -0.018128393217921257, -0.011848040856420994, -0.011803499422967434, 0.021045861765742302, -0.04193583130836487, 0.010806883685290813, 0.0049246205016970634, 0.013952627778053284, -0.021190622821450233, 0.021702850237488747, -0.008329262025654316, -0.004120089579373598, -0.004679642152041197, -0.014141928404569626, 0.02456464245915413, 0.01828428916633129, -0.014854593202471733, 0.009387122467160225, -0.014865728095173836, 0.004699129145592451, 0.009014087729156017, 0.0018456886755302548, -0.05393976718187332, -0.027214860543608665, 0.00516959885135293, -0.0015241546789184213, -0.014353500679135323, 0.015233195386826992, -0.04293801262974739, -0.020789748057723045, -0.02063385397195816, 0.026903070509433746, 0.0009235403267666698, 0.003802731167525053, -0.03407425433397293, -0.038016177713871, 0.011447167955338955, 0.02041114680469036, -0.052737146615982056, 0.020789748057723045, -0.0027977635618299246, -0.012304591946303844, -0.0024052413646131754, -0.005311574786901474, 0.006575440056622028, 0.034319233149290085, 0.003076147986575961, -0.023829706013202667, 0.014977081678807735, -0.005127841141074896, -0.0244310162961483, 0.0017176319379359484, 0.01194825954735279, 0.003039957955479622, 0.003911301027983427, -0.0036802419926971197, -0.01818407140672207, 0.006207972764968872, 0.04837207868695259, 0.04329434409737587, -5.6068362027872354e-05, 0.010005136020481586, 0.0036106458865106106, 0.016892366111278534, -0.028350669890642166, 0.025143681094050407, -0.02438647486269474, -0.007332645822316408, 0.025076868012547493, -0.0023843625094741583, 0.031245868653059006, -0.001994624501094222, -0.05215810611844063, -0.007638868410140276, 0.016213109716773033, -0.03904063254594803, 0.03342840075492859, -0.008835921995341778, -0.008925004862248898, 0.004726967308670282, -0.012516163289546967, -0.010305791161954403, -0.025366388261318207, -0.01615743152797222, 0.004568288568407297, -0.006207972764968872, -0.004031006246805191, -0.00793952401727438, 0.005901749711483717, -0.013128609396517277, -0.03387381508946419, -0.03351748362183571, 0.016023807227611542, -0.017582761123776436, 0.017092803493142128, -0.02134651690721512, -0.021235164254903793, -0.0061689987778663635, 0.013941491954028606, -0.0009680818184278905, 0.027905255556106567, 0.024007873609662056, -0.023807436227798462, 0.04402928054332733, 0.026769446209073067, -0.019241930916905403, -0.006642252206802368, 0.009253498166799545, 0.04215853661298752, -0.02338429167866707, 0.005907317623496056, -0.028306128457188606, -0.008529698476195335, 0.004139576572924852, 0.0058293696492910385, 0.005514795426279306, -0.017070533707737923, 0.012516163289546967, -0.02750438079237938, -0.028439752757549286, -0.026034511625766754, 0.014999352395534515, 0.008646620437502861, -0.004195253364741802, 0.028016608208417892, 0.0013703473377972841, -0.029664644971489906, 0.026413114741444588, -0.005498092155903578, -0.004534882493317127, 0.0565677136182785, -0.0052419789135456085, 0.015801100060343742, 0.00017277232836931944, 0.03705853596329689, -0.005431280005723238, -0.026858529075980186, 0.004662938881665468, -0.01664738915860653, -0.01135251671075821, 0.014720967970788479, -0.011870311573147774, -0.013896950520575047, -0.0044207447208464146, -0.0023439968936145306, -0.0330275297164917, -0.014843457378447056, -0.014698697254061699, 0.020700665190815926, -0.003023254917934537, -0.03478691726922989, 0.0017983634024858475, -0.018484726548194885, 0.026724904775619507, -0.038617487996816635, 0.005576040130108595, 0.002086491324007511, 0.015734286978840828, 0.004732535220682621, -0.013273369520902634, -0.03280482068657875, -0.02320612594485283, 0.024631453678011894, -0.008763541467487812, -0.02605678141117096, -0.006670090835541487, 0.05736946314573288, 0.014487124979496002, -0.012438216246664524, -0.024586912244558334, -0.031691282987594604, -0.07759130746126175, 0.021836474537849426, 0.00649192463606596, 0.04988648742437363, -0.0011267609661445022, 0.02574499137699604, 0.006363867782056332, -0.02307250164449215, -0.016079483553767204, -0.009303607046604156, -0.03565547615289688, -0.005773692857474089, -0.004017087165266275, -0.01791682094335556, -0.002029422437772155, 0.03280482068657875, 0.011001752689480782, -0.029709186404943466, 0.05964107811450958, 0.02772708795964718, -0.025165952742099762, 0.005773692857474089, -0.01651376485824585, 0.005879478994756937, -0.03362883999943733, 0.01438690721988678, -0.018217476084828377, 0.018083851784467697, -0.01615743152797222, 0.034497398883104324, -0.00018616957822814584, -0.019475774839520454, 0.027170319110155106, 0.03289390355348587, -0.041334521025419235, 0.024007873609662056, 0.0017941875848919153, 0.004337229300290346, -0.013718784786760807, -0.03316115215420723, 0.0013299816055223346, 0.007661139126867056, -0.008590943180024624, -0.019331013783812523, 0.003262665355578065, -0.0011552954092621803, 0.009626533836126328, -0.0034102092031389475, -0.018306558951735497, 0.0014782212674617767, 0.047837577760219574, -0.013496076688170433, -0.02416376769542694, 0.0015993184642866254, -0.013150880113244057, 0.026457656174898148, -0.025589095428586006, -0.014075116254389286, -0.0034102092031389475, 0.022048046812415123, -0.03162446990609169, 0.013351316563785076, 0.013986033387482166, 0.0005306702805683017, -0.007572056259959936, 0.03122359700500965, -0.03378473222255707, 0.018384506925940514, 0.020778613165020943, 0.01692577265202999, 0.039062902331352234, 0.011547385714948177, -0.00444579916074872, -0.02085656113922596, -0.019241930916905403, -0.01445371937006712, 0.010122057981789112, -0.026168135926127434, -0.030778182670474052, -0.038016177713871, -0.035744559019804, -0.027036694809794426, 0.015455903485417366, -0.005807098932564259, 0.013952627778053284, 0.00046698987716808915, 0.047525789588689804, 0.010868127457797527, -0.0004534186446107924, 0.030110059306025505, 0.019253067672252655, -0.010344765149056911, -0.018017040565609932, 0.004159063100814819, -0.007132208906114101, 0.033138882368803024, -0.01133581344038248, 0.03881792351603508, 0.007377187255769968, -0.0016146296402439475, 0.002131032757461071, -0.0009764333954080939, 0.014810051769018173, 0.016547169536352158, -0.04278211668133736, -0.025767263025045395, -0.026546739041805267, 0.021502412855625153, 0.024141497910022736, -0.009398258291184902, 0.0030316063202917576, -0.004181333817541599, 0.005389522295445204, -0.01747140660881996, -0.05941837280988693, 0.008886030875146389, -0.014464854262769222, -0.03193626180291176, 0.004554369021207094, 0.05189085751771927, 0.04917382448911667, -0.02868473157286644, -0.032693468034267426, 0.015945859253406525, 0.005375603213906288, 0.011848040856420994, 0.023740623146295547, -0.02754892222583294, -0.013807867653667927, 0.03487600013613701, -0.008496292866766453, 0.022782981395721436, 0.019464638084173203, -0.01067325845360756, 0.0456995852291584, -0.007800331339240074, -0.018072716891765594, 0.010055245831608772, -0.05131181702017784, -0.0029620102141052485, 0.014631885103881359, -0.02986508049070835, -0.007805899251252413, 0.017749790102243423, -0.005484173074364662, -0.005539849866181612, 0.010884830728173256, -0.00315687945112586, 0.020099354907870293, -0.003309990745037794, 0.0030427416786551476, -0.0017426864942535758, 0.01350721251219511, 0.00950404442846775, -0.0022924956865608692, 0.04367294907569885, 0.03538822755217552, 0.018072716891765594, 0.01219323743134737, 0.016636252403259277, -0.024007873609662056, 0.020466823130846024, 0.030689099803566933, -0.006308190990239382, 0.01108526811003685, 0.008551969192922115, 0.02705896645784378, -0.0005717320018447936, 0.033005256205797195, -0.015734286978840828, 0.004877294879406691, -0.0028158584609627724, 0.03224804997444153, -0.006252514198422432, 0.030755911022424698, -0.0028617919888347387, -0.010005136020481586, 0.011385923251509666, 0.0032431785948574543, 0.01065098773688078, -0.05402885004878044, -0.013562888838350773, 0.015300007537007332, -0.017360052093863487, 0.004596126731485128, 0.047926660627126694, -0.013941491954028606, 0.021691713482141495, 0.00036085580359213054, 0.03525460511445999, -0.025143681094050407, 0.006018671207129955, -0.0067703090608119965, 0.01890786923468113], [0.022635042667388916, 0.026569407433271408, -0.007221301086246967, 0.04464755952358246, -0.01594911515712738, 0.001576546928845346, -0.00017596084217075258, 0.05722258612513542, 0.01359596662223339, 0.0408875048160553, -0.031599417328834534, -0.03665432706475258, 0.009474844671785831, -0.014131339266896248, -0.013670669868588448, 0.0525909923017025, 0.012948540039360523, 0.018352065235376358, 0.03351679816842079, -0.011068511754274368, 0.026693912222981453, 0.04178394004702568, 0.004177148919552565, -0.015899311751127243, -0.026569407433271408, -0.0017913184128701687, 0.002259769244119525, -0.04556889832019806, -0.008858543820679188, -0.01973407156765461, 0.016322629526257515, -0.038820717483758926, -0.0015633183065801859, -0.028810501098632812, 0.04529498890042305, 0.035334572196006775, -0.024104204028844833, 0.05254118889570236, -0.00927563663572073, -0.008522380143404007, -0.012848935090005398, 0.05677436664700508, 0.007613492198288441, -0.01174083910882473, -0.07056953758001328, 0.02933342196047306, 0.01592421345412731, -0.002597489394247532, 0.03501085937023163, 0.018912337720394135, 0.02115343138575554, 0.051943566650152206, 0.018426768481731415, 0.02157674916088581, 0.024925939738750458, -0.004460398573428392, -0.03319308161735535, -0.003461244283244014, 0.03072788007557392, 0.023369623348116875, 0.005104712676256895, 0.004668944515287876, -0.019846126437187195, 0.03217213973402977, 0.004787224344909191, 0.030902188271284103, -0.045643601566553116, 0.037401359528303146, -0.009960414841771126, 0.02654450573027134, 0.038372498005628586, 0.008366748690605164, -0.004889941308647394, -0.02838718332350254, 0.002550800098106265, -0.005721013527363539, 0.03259545937180519, -0.0013718915870413184, -0.014255844056606293, -0.0061349933966994286, 0.0014606014592573047, 0.0281381718814373, -0.07440429925918579, -0.01855127327144146, -0.010744797997176647, 0.021290387958288193, -0.04200804978609085, 0.017455628141760826, -0.045394591987133026, 0.001105761737562716, -0.019559765234589577, 0.02632039785385132, 0.03807368502020836, 0.04668944701552391, 0.017243968322873116, 0.010358831845223904, -0.01621057651937008, -0.0032402474898844957, -0.05229217931628227, 0.03613140434026718, 0.008466352708637714, 0.0036884662695229053, -0.0050331223756074905, 0.013658219017088413, 0.05488188564777374, -0.03638041764497757, -0.039542846381664276, 0.014741414226591587, 0.03047887049615383, 0.001154007506556809, -0.024091754108667374, -0.007339580915868282, -0.026569407433271408, 0.036953140050172806, 0.03946814313530922, 0.011529180221259594, -0.004843251779675484, -0.04295428842306137, 0.0004170923784840852, -0.07385648041963577, -0.04507087916135788, 0.012469194829463959, -0.017069661989808083, -0.04925425350666046, -0.020530905574560165, -0.021775957196950912, -0.028785599395632744, -0.02396724931895733, -0.08067936450242996, 0.02231132984161377, 0.0008100618724711239, -0.03052867203950882, 0.051495347172021866, -0.03222194314002991, -0.0014458164805546403, 0.0049148425459861755, -0.005976248998194933, 0.0297816414386034, -0.021439794450998306, -0.029433026909828186, 0.00428920378908515, -0.0015267449198290706, -0.009344113990664482, 0.0232700202614069, -0.022647494450211525, -0.00891457125544548, 0.005198091734200716, 0.03784957900643349, 0.009337889030575752, -0.02325756847858429, -0.005537368357181549, 0.047560982406139374, -0.01113698910921812, -0.010713671334087849, 0.01875048130750656, 0.002567919436842203, 0.050598908215761185, 0.01876293122768402, -0.010495787486433983, -0.005612071603536606, -0.02158919908106327, -0.005845518782734871, 0.02466447837650776, -0.0023547043092548847, 0.012456743977963924, -0.00997286569327116, 0.050549108535051346, -0.008553506806492805, -0.04277998208999634, 0.005932672414928675, -0.05189376324415207, -0.009449943900108337, -0.04673924669623375, -0.005419088527560234, -0.06539012491703033, -0.023792941123247147, -0.01880028285086155, 0.006934938952326775, -0.012450519017875195, 0.0029974624048918486, 0.025013092905282974, -0.024975741282105446, -0.0030176944565027952, -0.04621632769703865, -0.02015738934278488, -0.036231011152267456, 0.023095712065696716, -0.015351490117609501, 0.027565449476242065, 0.003778732381761074, 0.005783265922218561, 0.007937205955386162, 0.008323172107338905, -0.026345297694206238, -0.05254118889570236, 0.030354365706443787, 0.012039652094244957, -0.04068829491734505, 0.020319247618317604, 0.05204316973686218, 0.0279389638453722, 0.008646884933114052, -0.009418817237019539, 0.0004910173593088984, -0.06364705413579941, -0.03443813696503639, -0.010315255261957645, -0.01760503463447094, -0.0026052710600197315, 0.027167031541466713, 0.015426193363964558, -0.015774806961417198, -0.01339675858616829, 0.01926095224916935, -0.009387691505253315, 0.02838718332350254, 0.010558039881289005, 0.043551914393901825, 0.02272219769656658, -0.003044151933863759, -0.023419426754117012, 0.03448793664574623, 0.05393564701080322, -0.023531481623649597, -0.01034638099372387, -7.582171383546665e-05, 0.015463544055819511, -0.03281956911087036, -0.02273464761674404, -0.01044598501175642, -0.0004871265555266291, 0.04905504360795021, -0.018376965075731277, -0.030329464003443718, 0.013334506191313267, -0.006891362369060516, -0.043103694915771484, 0.02185066044330597, 0.02295875735580921, 0.009057752788066864, -0.00529147032648325, 0.037874478846788406, -0.018887437880039215, -0.004780999384820461, -0.033491894602775574, -0.01852637156844139, -0.03590729832649231, -0.025162499397993088, 0.013508813455700874, -0.0017337347380816936, 0.02696782350540161, 0.0297816414386034, 0.030155157670378685, -0.05448346957564354, 0.02227397821843624, 0.022684846073389053, 0.03003065101802349, -0.011211692355573177, 0.07330865412950516, 0.022622592747211456, 0.019435260444879532, -0.017966099083423615, -0.024041952565312386, 0.018464120104908943, 0.002567919436842203, -0.007364482153207064, -0.0012450518552213907, -0.036953140050172806, -0.036504920572042465, 0.03700294345617294, -0.06011110544204712, 0.01339675858616829, 0.025722771883010864, 0.03936854004859924, -0.06802963465452194, 0.02178840897977352, -0.0222864281386137, -0.03824799507856369, 0.036978039890527725, 0.0035483979154378176, -0.0012232634471729398, 0.023618634790182114, -0.006717055104672909, -0.01970917172729969, 0.012973440811038017, 0.03421402722597122, 0.009418817237019539, -0.009705179370939732, -0.0013026355300098658, 0.03730175644159317, 0.05871664732694626, -0.050598908215761185, -0.010296579450368881, 0.009250735864043236, -0.05533010512590408, 0.0010933112353086472, -0.008958148770034313, -0.03077768348157406, -0.017331121489405632, -0.009854585863649845, -0.06309922784566879, 0.03991636261343956, -0.02226152829825878, -0.025722771883010864, -0.07594816386699677, 0.08272124826908112, 0.011927597224712372, 0.024079304188489914, 0.01325980294495821, -0.06857746094465256, -0.005067361053079367, -0.011753289960324764, -0.027067428454756737, -0.004945968743413687, -0.006418242584913969, 0.01220150850713253, 0.012811584398150444, 0.02699272520840168, -0.04673924669623375, -0.019397908821702003, 0.05254118889570236, -0.006860235705971718, 0.026669012382626534, -0.0829702615737915, 0.05448346957564354, -0.023668436333537102, 0.00551558006554842, 0.045170482248067856, -0.029532629996538162, -0.05353723093867302, -0.01828981190919876, 0.004161586053669453, 0.021651452407240868, -0.04006576910614967, -0.013309604488313198, -0.020032884553074837, -0.013334506191313267, -0.011460702866315842, -0.042630575597286224, -0.00451953848823905, 0.03192313015460968, -0.017181716859340668, 0.01383252628147602, -0.02349413000047207, -0.01383252628147602, 0.042829785495996475, -0.032545655965805054, 0.04579300805926323, 0.02512514777481556, -0.00249321642331779, -0.07624697685241699, -0.0007481983629986644, 0.01480366662144661, 0.04581790789961815, -0.045867711305618286, 0.013147748075425625, -0.012537672184407711, -0.026395099237561226, -0.031823527067899704, -0.016110971570014954, -0.05323841795325279, 0.010352606885135174, 0.027839360758662224, 0.02749074622988701, 0.008372973650693893, 0.029906146228313446, -0.07355766743421555, -0.02256033942103386, 0.02348167821764946, -0.04016537219285965, -0.012213959358632565, -0.05264079570770264, 0.03341719135642052, 0.01922360062599182, -0.020767465233802795, -0.05239178240299225, 0.05353723093867302, 0.013907229527831078, 0.00857218261808157, -0.0050237844698131084, 0.062352199107408524, 0.010782149620354176, 0.0040619815699756145, -0.02109117992222309, 0.02486368641257286, 0.04009067267179489, -0.0365547239780426, -0.004463511053472757, 0.005745914299041033, -0.04113651439547539, 0.01419359166175127, -0.03777487576007843, 0.0002704097132664174, -0.06967310607433319, -0.020281895995140076, 0.015787258744239807, 0.044672463089227676, 0.0279389638453722, -0.0002431742032058537, -0.051545146852731705, 0.010477111674845219, -0.005655648186802864, -0.009095104411244392, 0.015351490117609501, 0.0022566565312445164, 0.0011617890559136868, 0.00016915197193156928, -0.04711276292800903, 0.06952369958162308, -0.003154650330543518, 0.02202496863901615, -0.0385219044983387, 0.03822309151291847, -0.02557336539030075, 0.04016537219285965, 0.003511046292260289, -0.005353723186999559, 0.05184395983815193, 0.013932130299508572, -0.01995818130671978, 0.0049055046401917934, 0.05209296941757202, -0.006524072028696537, 0.040962208062410355, -0.008485028520226479, 0.0646928995847702, -0.03005555272102356, 0.019385457038879395, 0.05119653418660164, -0.0704699382185936, -0.04576810821890831, 0.0015843284782022238, 0.01948506198823452, 0.012774232774972916, -0.03005555272102356, -0.0085784075781703, -0.0017788679106160998, -0.01948506198823452, -0.010844402015209198, 0.004186486825346947, -0.03398991748690605, 0.0050331223756074905, 0.0333922915160656, 0.03359150141477585, -0.006611225660890341, 0.008186216466128826, 0.0030145819764584303, 0.03428873047232628, 0.015475994907319546, -0.025212300941348076, -0.01756768301129341, 0.030429068952798843, -0.013944581151008606, -0.01875048130750656, -0.06558933109045029, -0.014977973885834217, 0.003479920094832778, -0.05030009523034096, -0.007103021256625652, -0.03545907884836197, 0.01995818130671978, 0.00882119219750166, 0.015090028755366802, 0.04255587235093117, -0.01593666337430477, -0.010539364069700241, -0.04113651439547539, 0.005490678828209639, -0.012911188416182995, 0.01592421345412731, -0.05169455334544182, 0.018376965075731277, 0.012033426202833652, 0.06514111161231995, 0.006592549849301577, -0.0074516357854008675, 0.010128497146070004, -0.02069276198744774, -0.05099732428789139, -0.017069661989808083, -0.00843522697687149, -0.003065940225496888, -0.04741157591342926, 0.008659335784614086, 0.0657387375831604, 0.05378624051809311, -0.004245626740157604, 0.026444902643561363, -0.05109693109989166, -0.021464694291353226, 0.012923638336360455, -0.012537672184407711, 0.056475553661584854, -0.012126805260777473, -0.016061170026659966, -0.014293195679783821, -0.05542971193790436, -0.01327225286513567, 0.017953649163246155, -0.03214723989367485, 0.018850086256861687, 0.0187380313873291, 0.0015391954220831394, -0.0230085588991642, 0.0759979709982872, 0.03528476879000664, 0.003065940225496888, -0.005369286052882671, 0.01927340403199196, -0.002924315631389618, -0.0028791825752705336, 0.0038689987268298864, 0.014940622262656689, 0.01456710696220398, -0.009393916465342045, -0.012064552865922451, -0.007426734548062086, 0.020007984712719917, -0.03408952057361603, 0.003872111439704895, -0.0232077669352293, -0.003607537830248475, -0.0013469904661178589, -0.04357681795954704, -0.016359981149435043, 0.013346956111490726, -0.02602158486843109, -0.09402631968259811, -0.03140020743012428, 0.03476184979081154, -0.008603308349847794, -0.0017539669061079621, 0.023643534630537033, 0.04676415026187897, -0.017455628141760826, -0.03772507235407829, 0.017766891047358513, 0.04243136942386627, -0.014492403715848923, 0.0031172987073659897, 0.027366241440176964, -0.025672970339655876, 0.0088087422773242, -0.001357106608338654, 0.024751631543040276, 0.018152857199311256, -0.0119649488478899, -0.01363331824541092, -0.020991574972867966, -0.01568765379488468, 0.0038347598165273666, 0.008777615614235401, -0.005668098572641611, -0.004068206995725632, -0.015612950548529625, -0.007140372414141893, 0.03376580774784088, -0.03122590109705925, 0.0069100381806492805, -0.018352065235376358, 0.005082924384623766, 0.0014520417898893356, 0.02719193324446678, 0.01710701361298561, 0.016322629526257515, 0.022137023508548737, -0.01289873756468296, -0.02654450573027134, 0.01694515533745289, -0.004447947721928358, -0.05007598549127579, 0.03284446895122528, -0.002132151275873184, -0.021775957196950912, 0.02185066044330597, 0.021253036335110664, -0.010968906804919243, -0.016608992591500282, -0.047087863087654114, -0.0012606150703504682, 0.008976824581623077, -0.00951842125505209, 0.017667286098003387, -0.01948506198823452, -0.001343099749647081, 0.02512514777481556, 0.03750096261501312, -0.024552423506975174, 0.0148908207193017, 0.014367898926138878, -0.025037992745637894, 0.04763568565249443, -0.000728744431398809, 0.01830226369202137, 0.03351679816842079, 0.038820717483758926, -0.0376005657017231, 0.05428426340222359, -0.016384882852435112, 0.027814459055662155, 0.022249076515436172, 0.01617322489619255, 0.015886861830949783, 0.0010544033721089363, 0.01969672180712223, -0.00891457125544548, 0.032495852559804916, -0.001598335336893797, 0.022186825051903725, 0.03316818177700043, 0.009001725353300571, -0.013683120720088482, 0.02604648470878601, -0.019771423190832138, -0.022884054109454155, -0.006455594208091497, -0.011348647996783257, 0.022361131384968758, -0.0072648776695132256, 0.028959907591342926, -0.023867644369602203, 0.0176174845546484, 0.04972737282514572, -0.000819399778265506, -0.012245085090398788, 0.030453968793153763, 0.018389416858553886, -0.0511467307806015, -0.05682417005300522, -0.017791790887713432, -0.023867644369602203, 0.02651960588991642, 0.0094997463747859, 0.0038129715248942375, 0.008528605103492737, -0.02651960588991642, 0.010751022957265377, -0.00010923384979832917, -0.020281895995140076, -0.04718746617436409, 0.0009874817915260792, 0.023133063688874245, 0.03867131099104881, -0.024527521803975105, 0.033442094922065735, 0.04571830481290817, 0.027988767251372337, -0.025224750861525536, 0.01828981190919876, 0.013147748075425625, 0.0020060897804796696, 0.0010450654663145542, -0.012973440811038017, -0.007296003866940737, 0.014704062603414059, -0.01901194266974926, -0.05821862816810608, 0.0025741448625922203, 0.012382040731608868, -0.017181716859340668, -0.017443176358938217, 0.0281381718814373, 0.028312480077147484, -0.017878945916891098, -0.022373583167791367, 0.012693303637206554, 0.0189994927495718, -0.03097689151763916, -0.030702980235219002, 0.006075853016227484, -0.07714341580867767, -0.017194166779518127, 0.02674371376633644, -0.006200358271598816, 0.014031735248863697, 0.01034638099372387, -0.02086707018315792, -0.010315255261957645, 0.0009431267972104251, 0.01536394003778696, -0.022336231544613838, -0.05089772120118141, -0.0037444934714585543, -0.006766857113689184, 0.012711979448795319, -0.019136447459459305, 0.03047887049615383, -0.010221876204013824, 0.009711404331028461, -0.029856344684958458, 0.014542206190526485, 0.024465270340442657, 0.01020942535251379, 0.005509354639798403, -0.028536589816212654, 0.022697295993566513, 0.013085495680570602, -0.01762993447482586, 0.009474844671785831, -0.02674371376633644, -0.0024760968517512083, -0.029433026909828186, -0.034413233399391174, -0.016484487801790237, -0.0017570795025676489, -0.02654450573027134, -0.01067631971091032, 0.0239298976957798, 0.018165307119488716, 0.024739181622862816, 0.013222451321780682, -0.0029694486875087023, -0.022572791203856468, -0.01667124405503273, -0.00451953848823905, 0.02463957667350769, -0.054085053503513336, 0.03025476075708866, 0.007713096681982279, -0.019348107278347015, 0.023294920101761818, -0.014019284397363663, -0.011298845522105694, -0.049901679158210754, 0.03456263989210129, -0.00890212133526802, 0.0026721926406025887, -0.006829109508544207, -0.0037289303727447987, -0.008366748690605164, -0.026693912222981453, -0.0070158676244318485, 0.00950597133487463, 0.02252298779785633, -0.017443176358938217, 0.004513313062489033, -0.03999106585979462, 0.014019284397363663, 0.02065541036427021, 0.003445681184530258, 0.003940589260309935, -0.011161889880895615, 0.033940114080905914, -0.030628276988863945, -0.006648577284067869, -0.008161314763128757, -0.01736847311258316, 0.010284128598868847, -0.04591751471161842, 0.003996616695076227, 0.0052447812631726265, 0.009524647146463394, -0.004921067506074905, -0.020381499081850052, 0.03145001083612442, -0.006110092159360647, -0.008372973650693893, 0.055081095546483994, 0.009468619711697102, -0.006797983311116695, 0.01034638099372387, 0.016783298924565315, 0.0012831815984100103, -0.0016263490542769432, -0.005664986092597246, -0.021028926596045494, -0.04006576910614967, 0.006091416347771883, -0.01901194266974926, 0.01337185688316822, -0.010632743127644062, -0.048233311623334885, -0.024938389658927917, 0.0248512364923954, 0.08247223496437073, -0.02719193324446678, -0.06932448595762253, -0.021452244371175766, -0.00785005185753107, -0.022460736334323883, 0.016559191048145294, -0.02701762691140175, 0.008323172107338905, 0.0030239198822528124, -0.0025305680464953184, -0.017430726438760757, -0.000263211753917858, 0.0026768615934997797, 0.05488188564777374, 0.017069661989808083, -0.008964373730123043, 0.02724173478782177, -0.02395479753613472, -0.0052572316490113735, 0.02602158486843109, 0.0036355515476316214, -0.009661602787673473, -0.037899378687143326, 0.00963670201599598, 0.010601616464555264, 0.013894778676331043, -0.010091145522892475, -0.003660452552139759, 0.03003065101802349, 0.03052867203950882, 0.037924282252788544, -0.041709236800670624, -0.014529755339026451, 0.03224684298038483, 0.02040640078485012, 0.004855702165514231, 0.02843698486685753, 0.04131082072854042, 0.0034643569961190224, 0.0019344993634149432, -0.011622559279203415, -0.0018022125586867332, 0.0058081671595573425, -0.0166961457580328, -0.020854618400335312, -0.0040246304124593735, -0.002837161999195814, 0.0015936663839966059, 0.003034814028069377, 0.0034021043684333563, 0.035533782094717026, -0.031026693060994148, 0.07799004763364792, -0.01948506198823452, -0.02277199923992157, -0.019198700785636902, 0.029034610837697983, 0.018140405416488647, -0.029059510678052902, -0.014504854567348957, 0.0033087253104895353, -0.005297695752233267, 0.04031477868556976, -0.011323747225105762, 0.00012071167293470353, 0.0507483147084713, -0.05348742753267288, -0.018713129684329033, 0.0010629630414769053, -0.01640978455543518, 0.05592773109674454, 0.024029500782489777, -0.024029500782489777, -0.026619208976626396, 0.0022270865738391876, -0.010763473808765411, -0.02913421392440796, 0.017256420105695724, -0.013085495680570602, 0.0288603026419878, 0.011093412525951862, 0.016546739265322685, -0.027764657512307167, -0.021526947617530823, -0.025399059057235718, 0.01758013293147087, 0.034388333559036255, -0.028287578374147415, -0.003157762810587883, -0.02226152829825878, -0.039094630628824234, 0.024378115311264992, -0.006184795405715704, -0.0024729843717068434, -0.00951842125505209, 0.028710896149277687, -0.016235476359725, 0.019796324893832207, -0.02930852212011814, -0.020007984712719917, -0.012680853717029095, 0.014367898926138878, 0.0023235781118273735, 0.028511688113212585, -0.006169232074171305, -0.008485028520226479, -0.027142131701111794, 0.007171499077230692, 0.001316642388701439, -0.012730655260384083, -0.033242885023355484, -0.006972290575504303, 0.0037974081933498383, -0.003532834816724062, -0.011224143207073212, -0.0013376526767387986, 0.005960686132311821, -0.01339675858616829, -0.025174949318170547, -0.013645769096910954, -0.012394491583108902, -0.03077768348157406, -0.012512771412730217, 0.008055485785007477, -0.02323266863822937, 0.020979125052690506, 0.025897080078721046, -0.05279019847512245, -0.010072469711303711, -0.04718746617436409, 0.017505429685115814, -0.006673478055745363, -0.02203741855919361, 0.02158919908106327, 0.04061359167098999, -0.012326013296842575, 0.0032993874046951532, 0.014268294908106327, -0.004388807807117701, 0.04950326308608055, 0.014006833545863628, -0.00697851600125432, 0.023469228297472, 0.041933346539735794, 0.0052572316490113735, 0.017978549003601074, -0.015799708664417267, -0.020979125052690506, -0.007022092584520578, 0.016359981149435043, 0.01901194266974926, -0.01714436523616314, 0.0033460769336670637, -0.007140372414141893, 0.024303412064909935, -0.00621903408318758, 0.05816882476210594, -0.01810305379331112, 0.022161923348903656, 0.041012007743120193, -0.02559826709330082, 0.00858463253825903, 0.00621280912309885, 0.04138552397489548, -0.018414316698908806, 0.02463957667350769, -0.03501085937023163, -0.017505429685115814, 0.007993233390152454, -0.012182832695543766, -0.03949304670095444, -0.002678417833521962, 0.0036480019334703684, 0.03608160465955734, -0.00785005185753107, -0.004096220713108778, 0.032022733241319656, 0.01172838918864727, -0.024564873427152634, -0.028959907591342926, 0.02046865224838257, 0.05871664732694626, -0.005814392119646072, 0.001766417408362031, 0.020082686096429825, -0.010389957576990128, 0.02440301701426506, 0.007408058736473322, -0.043278004974126816, 0.03585749492049217, -0.001968738390132785, -0.009929289110004902, 0.01548844575881958, 0.05428426340222359, -0.029457928612828255, -0.009848360903561115, -0.015538247302174568, 0.04185864329338074, 0.012469194829463959, 0.04644043371081352, 0.012612375430762768, -0.012998341582715511, -0.039816759526729584, 0.04038948193192482, 0.021489595994353294, 0.015114929527044296, 0.002809148281812668, 0.018152857199311256, 0.019671820104122162, 0.0020496665965765715, 0.036753930151462555, 0.00744541035965085, 0.05757119879126549, 0.025523563846945763, -0.001365666277706623, 0.0012077003484591842, 0.03411442041397095, 0.022249076515436172, -0.018451668322086334, 0.019883478060364723, 0.016982506960630417, -0.009300537407398224, 0.009362789802253246, 0.010159623809158802, -0.0070283180102705956, 0.013546164147555828, 0.007084345445036888, -0.011927597224712372, 0.024141555652022362, 0.04302899166941643, 0.0014248063089326024, 0.01785404421389103, -0.025921979919075966, -0.013533714227378368, -0.017331121489405632, 0.0012792907655239105, 0.003030145075172186, 0.012531447224318981, 0.007109246216714382, -0.006841560360044241, -0.033940114080905914, 0.032022733241319656, 0.013210000470280647, -0.033242885023355484, 0.010010217316448689, 0.03565828502178192, 0.0006696044583804905, 0.010875528678297997, -0.013110396452248096, 0.016745947301387787, -0.01312284730374813, 0.02821287512779236, 0.02136509120464325, 0.00045561118167825043, 0.00393747678026557, 0.002074567601084709, 0.006810433696955442, -0.016335081309080124, 0.001215481897816062, -0.012531447224318981, 0.042157456278800964, 1.7934097513716551e-06, -0.0525909923017025, 0.012649727053940296, 0.05662496015429497, 0.021676354110240936, -0.030379265546798706, -0.02843698486685753, -0.007022092584520578, -0.030902188271284103, 0.01877538301050663, 0.02467692829668522, 0.014641810208559036, 0.0178166925907135, 0.017704637721180916, 0.012960989959537983, 0.02791406400501728, 0.011168115772306919, -0.013147748075425625, -0.03127570450305939, -0.008509929291903973, 0.00633420143276453, -0.018588624894618988, 0.017990998923778534, -0.009549547918140888, 0.017978549003601074, -0.006178569979965687, -0.00445106066763401, -0.004868153017014265, -0.008976824581623077, -0.014928172342479229, -0.04011557251214981, 0.0059139966033399105, 0.0019251614576205611, -0.014442602172493935, -0.0018426767783239484, 0.01576235704123974, 0.016110971570014954, 0.020779915153980255, -0.01325980294495821, 0.01465426106005907, -0.0305037721991539, -0.0019485062221065164, -0.015463544055819511, 0.009331664070487022, -0.01734357327222824, 0.03428873047232628, -0.03453774005174637, -0.018352065235376358, -0.006010488141328096, 0.002110362984240055, 0.01043976005166769, 0.013147748075425625, 0.02180085889995098, 0.021987617015838623, -0.019074194133281708, 0.04736177250742912, -0.014716513454914093, 0.018414316698908806, -0.002633284777402878, 0.005608958657830954, 0.014417700469493866, 0.025921979919075966, 0.03209743648767471, 0.004889941308647394, -0.004230063874274492, 0.02112852968275547, -0.014168690890073776, 0.025921979919075966, 0.007432959973812103, -0.011641235090792179, 0.015015325509011745, 0.02371823787689209, -0.0020558920223265886, 0.00545332720503211, -0.0038254219107329845, -0.0083169462159276, 0.03443813696503639, -0.01621057651937008, 0.03319308161735535, 0.021265486255288124, 0.014268294908106327, 0.008385424502193928, -0.02180085889995098, 0.03304367884993553, -0.017692187801003456, -0.013197549618780613, -0.01642223447561264, -0.0027297763153910637, 0.012861385941505432, 0.041908446699380875, -0.0026535168290138245, 0.03212234005331993, -0.012388266623020172, -0.012985891662538052, -0.011753289960324764, -0.013620867393910885, 0.0232077669352293, -0.04631593078374863, 0.025623168796300888, -0.007831376045942307, -0.02087952010333538, -0.014828568324446678, -0.016584090888500214, -0.010377507656812668, 0.028461886569857597, 0.013770273886620998, 0.005842405837029219, 0.031350407749414444, -0.025772573426365852, 0.011354872956871986, -0.014704062603414059, 0.07485251873731613, 0.022211724892258644, -0.0007096795598044991, 0.012263760901987553, 0.030429068952798843, -0.020319247618317604, 0.008709138259291649, 0.05423445999622345, -0.014305646531283855, 0.02444036863744259, -0.012749331071972847, 0.01809060387313366, -0.003092397702857852, 0.022896504029631615, 0.002902527106925845, -0.028013667091727257, -0.01784159429371357, -0.01080705039203167, 0.005658760666847229, -0.021215684711933136, -0.0019749635830521584, -0.030180057510733604, 0.02699272520840168, -0.011224143207073212, 0.005836180876940489, -0.022846702486276627, 0.020256994292140007, -0.012525222264230251, -0.03832269832491875, 0.024054402485489845, 0.020020434632897377, 0.02349413000047207, 0.0023500353563576937, -0.018476570025086403, 0.0029569983016699553, -0.03095198981463909, -0.03456263989210129, -0.011659910902380943, 0.017492979764938354, 0.02015738934278488, -0.019883478060364723, -0.001682376372627914, 0.00278424727730453, 0.009674053639173508, 0.029258718714118004, 0.02369333803653717, -0.027839360758662224, 0.005985586903989315, 0.010302804410457611, -0.006156781688332558, 0.04701315984129906, -0.012998341582715511, -0.02252298779785633, -0.02491348795592785, -0.003439455758780241, 0.002153939800336957, -0.004398145712912083, -0.025174949318170547, 0.01571255549788475, 0.030927088111639023, -0.007862502709031105, 0.023182867094874382, -0.009935514070093632, 0.015202083624899387, 0.02696782350540161, -0.027540547773241997, 0.0017321784980595112, -0.031599417328834534, -0.035558681935071945, -0.016783298924565315, 0.0021508270874619484, -0.017505429685115814, 0.03306857869029045, -0.013172648847103119, 0.022647494450211525, 0.01091287937015295, -0.01571255549788475, 0.003473694669082761, -0.002004533540457487, 0.023307371884584427, -0.029507730156183243, 0.01692025549709797, 0.032495852559804916, 0.04676415026187897, 0.0012738436926156282, -0.04078790172934532, -0.03476184979081154, -0.036978039890527725, -0.0002538738481234759, -0.0182773619890213, 0.030429068952798843, 0.002854281570762396, 0.006854010745882988, 0.020020434632897377, 0.0035732989199459553, -0.001749297953210771, 0.00927563663572073, -0.03493615612387657, 0.017754439264535904, -0.022884054109454155, 0.013023242354393005, -0.006094528827816248, 0.00858463253825903, 0.02891010418534279, 0.00844145193696022, -0.008752714842557907, -0.010981357656419277, -0.032047636806964874, -0.03543417528271675, -0.047536082565784454, -0.04429894685745239, -0.011560306884348392, -0.013309604488313198, -0.029507730156183243, -0.0053755114786326885, -0.024490170180797577, 0.0148908207193017, -0.0063622151501476765, 0.028785599395632744, -0.0024901037104427814, -0.006418242584913969, -0.0046004666946828365, -0.006209696177393198, 0.007190174888819456, 0.0060198260471224785, 0.008018134161829948, -0.006443143356591463, 0.0227470975369215, 0.049851879477500916, 0.02863619290292263, -0.007152823265641928, 0.009238285012543201, 0.00858463253825903, 0.01760503463447094, -0.03478674963116646, -0.02488858811557293, -0.016272827982902527, -0.04066339507699013, 0.020120037719607353, -0.022610142827033997, -0.020817266777157784, 0.03428873047232628, -0.02252298779785633, -0.016584090888500214, -0.026370199397206306, 0.010396183468401432, -0.023157965391874313, 0.0029414352029561996, -0.005882870405912399, 0.01593666337430477, 0.013048144057393074, 0.032022733241319656, -0.011771965771913528, 0.014953073114156723, 0.01850147172808647, -0.01780424267053604, 0.003884561825543642, 0.01903684251010418, -0.003925025928765535, 0.0032402474898844957, 0.003915688022971153, -0.0004766214406117797, -0.015625400468707085, 0.0016325742471963167, -0.03030456230044365, 0.003311838023364544, -0.002469871658831835, -0.008715363219380379, -0.021688804030418396, 0.006966065149754286, -0.018215108662843704, -0.024228710681200027, -0.024589775130152702, 0.00540041271597147, -0.040962208062410355, -0.03130060434341431, -0.02248563803732395, 0.015625400468707085, -0.01738092489540577, 0.015463544055819511, -0.006206583697348833, 0.002972561400383711, -0.0006030719960108399, 0.018588624894618988, 3.445778202149086e-05, 0.01639733277261257, -0.017430726438760757, -0.015214534476399422, -0.008927022106945515, -0.02980654314160347, 0.04885583743453026, 0.002718882169574499, -0.012960989959537983, -0.0016185675049200654, 0.02018229104578495, -0.021663902327418327, -0.0171568151563406, -0.001867577782832086, -0.0036448894534260035, 0.000792942417319864, 0.004111784044653177, -0.015824610367417336, -0.0065987748093903065, 0.026146089658141136, 0.010228101164102554, -0.02156429924070835, 0.005528030451387167, -0.021290387958288193, 0.03376580774784088, -0.001814663177356124, 0.0017212842358276248, 0.030329464003443718, 0.016808200627565384, 0.01759258285164833, 0.011703487485647202, -0.0018660215428099036, 0.060658928006887436, 0.03072788007557392, 0.009991541504859924, -0.013782724738121033, -0.029906146228313446, -0.0014504854334518313, -0.0008256250293925405, 0.0038129715248942375, -0.0002600991283543408, -0.02462712675333023, 0.02396724931895733, 0.039069727063179016, 0.02534925565123558, -0.043053895235061646, 0.009207158349454403, 0.004046418704092503, -0.0105829406529665, 0.03319308161735535, -0.04153493046760559, -0.021265486255288124, 0.00399039126932621, 0.011099637486040592, -0.0006622119690291584, -0.013508813455700874, -0.008565956726670265, 0.004973982460796833, -0.014977973885834217, -0.024502621963620186, 0.024801433086395264, -0.009835910052061081, -0.03548397868871689, 0.0014302533818408847, -0.012699529528617859, -0.02841208502650261, -0.04347721114754677, -0.0035079338122159243, 0.009194708429276943, 0.021277936175465584, 0.024701829999685287, 0.0021477146074175835, 0.022186825051903725, 0.008765165694057941, 0.016994958743453026, -0.03493615612387657, -0.0220872201025486, 0.003157762810587883, 0.01021565031260252, -0.024963289499282837, -0.015812158584594727, 0.011747065000236034, -0.00580505421385169, -0.01687045395374298, -0.03964245319366455, 0.030653176829218864, 0.004597354214638472, -0.0009151131380349398, 0.014230943284928799, -0.005204316694289446, -0.0063591026701033115, 0.0031904454808682203, 0.0041429102420806885, 0.02444036863744259, 0.009449943900108337, 0.010794599540531635, 0.004292316269129515, -0.0037413809914141893, 0.006773082073777914, 0.006698379293084145, 0.0018535710405558348, 0.03072788007557392, 0.014853469096124172, -0.006324863526970148, -0.01852637156844139, -0.02440301701426506, -0.020954223349690437, -0.020107587799429893, 0.025262102484703064, -0.004647156223654747, 0.022249076515436172, -0.003872111439704895, -0.027142131701111794, 0.020779915153980255, -0.02935832366347313, -0.016745947301387787, -0.019846126437187195, -0.009674053639173508, 0.031549613922834396, 0.01997063308954239, -0.002013871446251869, -0.0019578440114855766, 0.023556381464004517, 0.008958148770034313, 0.02980654314160347, -0.02069276198744774, -0.04763568565249443, 0.003439455758780241, 0.05632614716887474, 0.03187332674860954, 0.030130255967378616, -0.016982506960630417, -0.018912337720394135, -0.023294920101761818, 0.0232700202614069, -0.010221876204013824, -0.00048479207907803357, -0.0004925736575387418, 0.0037413809914141893, -0.04248116910457611, 0.0671830028295517, 0.01103116013109684, -0.01878783293068409, -0.01645958609879017, -0.018177757039666176, 0.004945968743413687, 0.017654836177825928, -0.0012800690019503236, -0.017069661989808083, -0.01897459104657173, -0.0020123152062296867, 0.019136447459459305, 0.01020320039242506, -0.011112088337540627, -0.009425043128430843, -0.015513346530497074, -0.01550089567899704, -0.021240584552288055, -0.013097945600748062, 0.00705321878194809, -0.04367642104625702, 0.021987617015838623, 0.0059264469891786575, -0.012556347995996475, -0.003470582189038396, -0.016596540808677673, 0.010657643899321556, 0.03169902041554451, 0.015177182853221893, -0.009549547918140888, 0.029657136648893356, -0.029507730156183243, 0.04131082072854042, 0.008074161596596241, -0.005770815536379814, -0.00810528825968504, -0.019646918401122093, 0.0031515376176685095, -0.031126298010349274, 0.05264079570770264, 0.006878911517560482, 0.028760699555277824, -0.021514495834708214, 0.00697851600125432, -0.0049148425459861755, 0.042580775916576385, 0.004762323573231697, -0.023568831384181976, 0.018140405416488647, -0.017044760286808014, 0.025921979919075966, -0.02043130062520504, -0.023195317015051842, 0.01878783293068409, 0.03705274313688278, -0.028063470497727394, 0.06519091874361038, 0.012245085090398788, 0.016384882852435112, -0.007308454718440771, 0.036953140050172806, 0.021178333088755608, -0.0044852993451058865, -0.005443989299237728, 0.021975165233016014], [0.011168068274855614, 0.05491958558559418, -0.0147696603089571, 0.03307201340794563, -0.01725006103515625, 0.012282995507121086, 0.031593792140483856, 0.07586519420146942, 0.007986139506101608, -0.046476200222969055, -0.02429039031267166, -0.03888466954231262, 0.020394407212734222, -0.0008996151154860854, 0.01747555285692215, 0.04707750678062439, 0.02396468259394169, -0.017387861385941505, -0.01116180419921875, 0.0156716238707304, -0.012408268637955189, 0.040663544088602066, 0.01344176847487688, 0.009138649329543114, -0.0010115776676684618, -0.005956720560789108, -0.005784470122307539, 0.028061101213097572, 0.05241413041949272, -0.002535207662731409, 0.0182647705078125, -0.028537137433886528, 0.019805625081062317, -0.010140830650925636, 0.021947789937257767, -0.027610119432210922, -0.007967348210513592, -0.007516366429626942, 0.021045826375484467, 0.030015356838703156, 0.005427442956715822, 0.03039117529988289, 1.7738821043167263e-05, 0.006354461424052715, 0.06514184176921844, 0.03825830668210983, 0.036554597318172455, -0.03146852180361748, 0.013416714034974575, -0.01725006103515625, -0.004127738066017628, 0.0428432896733284, -0.012564859353005886, -0.005367938429117203, 0.004763497039675713, -0.047378163784742355, -0.009057221934199333, 0.018164552748203278, 0.0013012709096074104, 0.03500121459364891, 0.02406490035355091, -0.02756001055240631, -0.0320197194814682, 0.03936070576310158, 0.015396024100482464, 0.018628060817718506, 0.02981491945683956, -0.0015134516870602965, -0.07391093671321869, -0.009639739990234375, 0.05015921965241432, 0.013930332846939564, 0.026482664048671722, -0.01763840578496456, -0.019592661410570145, -0.012965732254087925, 0.02733451873064041, -0.010309949517250061, 0.024027317762374878, 0.021847572177648544, -0.013040895573794842, 0.06383900344371796, -0.05406773090362549, -0.007892184890806675, -0.01124949473887682, -0.03209488466382027, -0.052614565938711166, 0.0038897197227925062, -0.028036046773195267, -0.003886587917804718, -0.016924351453781128, 0.0027387759182602167, 0.04589994624257088, 0.029288774356245995, -0.0034199466463178396, -0.03557746857404709, -0.04807969182729721, -0.0595296211540699, -0.018076861277222633, 0.006348197814077139, -0.025042027235031128, -0.019304534420371056, 0.07781944423913956, 0.012113877572119236, 0.019467389211058617, 0.017337752506136894, -0.028512082993984222, -0.030792048200964928, 0.010854885913431644, -0.0014014891348779202, -0.015771841630339622, -0.0372060127556324, -0.012840459123253822, 0.04316899925470352, -0.01605997048318386, 0.053015436977148056, 0.04339448735117912, -0.024365555495023727, 0.04499797895550728, -0.0018790916074067354, 0.008167784661054611, -0.04028772562742233, 0.0387844517827034, -0.01786389760673046, -0.04108947142958641, 0.016147660091519356, -0.019066516309976578, 0.028762629255652428, -0.0428432896733284, -0.016110079362988472, -0.034074194729328156, -0.029865030199289322, -0.0028108078986406326, -0.012226622551679611, 0.00014807633124291897, -0.013116059824824333, -0.04858078062534332, -0.039210379123687744, 0.0032727511133998632, 0.024102481082081795, 0.011788167990744114, 0.006379515863955021, 0.0439707450568676, -0.01607249677181244, -0.055220238864421844, -0.018740806728601456, 0.015295805409550667, 0.03933564946055412, -0.010729612782597542, 0.00336044211871922, -0.02328820899128914, -0.04414612427353859, 0.07205689698457718, -0.018978824838995934, -0.02868746593594551, 0.033848702907562256, -0.006864948198199272, -0.008493494242429733, -0.016160188242793083, -0.02221086248755455, -0.036454375833272934, 0.025455428287386894, 0.0541178397834301, 0.015571406111121178, 0.04539885371923447, 0.02317546308040619, -0.0142059326171875, 0.008142730221152306, -0.04392063617706299, -0.009126121178269386, -0.01837751641869545, 0.031318195164203644, -0.03480077534914017, 0.03615372255444527, -0.018415097147226334, -0.016598641872406006, 0.026858482509851456, -0.0010937879560515285, -0.040337834507226944, -0.026131900027394295, -0.026457609608769417, 0.007297139149159193, -0.018064333125948906, 0.030541501939296722, -0.012019922956824303, -0.019768044352531433, -0.014819769188761711, 0.01641073264181614, -0.0019104097736999393, -0.0031740989070385695, -0.06013093143701553, -0.007760648149996996, -0.024490827694535255, -0.005399256478995085, -0.013592096045613289, -0.014631859958171844, -0.026983754709362984, 0.0022971895523369312, 0.026407500728964806, 0.020657479763031006, -0.0016489028930664062, -0.048004526644945145, 0.06859937310218811, 0.03061666525900364, -0.0489315465092659, 0.0554707832634449, 0.005505738314241171, -0.016423260793089867, 0.04098924994468689, -0.004234219901263714, 0.040738705545663834, -0.013541987165808678, -1.6588855942245573e-05, 0.012840459123253822, 0.045699506998062134, 0.028787683695554733, -0.02801099233329296, -0.00710296630859375, -0.030140629038214684, 0.08167784661054611, -0.05461892858147621, 0.04088903218507767, -0.017149843275547028, 0.0007257991237565875, 0.018790915608406067, 0.028336701914668083, 0.008825466968119144, 0.0027199850883334875, 0.03061666525900364, 0.0006083559128455818, 0.0006161854835227132, 0.006507920566946268, -0.037631940096616745, -0.02598157338798046, 0.015396024100482464, 0.05196314677596092, 0.011368503794074059, -0.02610684558749199, 0.031994666904211044, 0.002882839646190405, 0.007391093764454126, -0.014794714748859406, -0.0554707832634449, 0.028161318972706795, -0.0025132850278168917, -0.009345348924398422, -0.025856301188468933, -0.002958003431558609, -0.04494787007570267, -0.04161561653017998, 0.009927866980433464, 0.016047442331910133, 0.06168431416153908, -0.06529217213392258, -0.020431989803910255, 0.014130769297480583, -0.04028772562742233, 0.04336943477392197, 0.02356380969285965, -0.04301866888999939, 0.019717935472726822, -0.037682048976421356, -0.008499757386744022, 0.03071688488125801, -0.03860906884074211, -0.0049827247858047485, -0.036679867655038834, -0.005822052247822285, -0.013216277584433556, 0.03394892066717148, -0.03369837626814842, -0.012928150594234467, -0.0014093187637627125, 0.021296370774507523, 0.020031116902828217, 0.03049139305949211, 0.02221086248755455, 0.008361957967281342, 0.0013412015978246927, 0.05607209354639053, -0.041690777987241745, -0.02164713479578495, 0.02338842675089836, -0.019918370991945267, 0.03467550501227379, 0.007265821099281311, 0.028036046773195267, 0.02113351784646511, -0.01270892284810543, 0.026983754709362984, 0.05241413041949272, -0.08353188633918762, -0.009570839814841747, -0.025493009015917778, 0.055621109902858734, -0.031543683260679245, -0.00015541653556283563, -0.04572456330060959, -0.0077543845400214195, -0.00015796114166732877, -0.002641689730808139, 0.030516447499394417, 0.0721571147441864, -0.04898165538907051, -0.04544896259903908, 0.03527681156992912, 0.046701692044734955, -0.00046820699935778975, -0.014832296408712864, 0.013917805626988411, -0.026006627827882767, 0.007804493885487318, -0.01618524268269539, -0.025442900136113167, -0.02474137209355831, -0.0033823649864643812, -0.026232119649648666, 0.006044411566108465, 0.05632263794541359, -0.023087771609425545, 0.023588864132761955, 0.04880627244710922, 0.023551281541585922, -0.05532045662403107, -0.03372343257069588, 0.003798896912485361, 0.023150408640503883, 0.025781136006116867, -0.06734663993120193, 0.02385193668305874, 0.004046310670673847, -0.010804777033627033, 0.01389275025576353, -0.010773458518087864, 0.0036485695745795965, -0.0399119071662426, 0.07290875166654587, -0.015396024100482464, -0.01319122314453125, -0.028111210092902184, 0.008274266496300697, -0.0590786412358284, -0.002325375797227025, -0.025154773145914078, 0.006695829797536135, 0.0045943791046738625, 0.03389881178736687, 0.0347256138920784, -0.024666208773851395, -0.011938495561480522, -0.017262589186429977, -0.012521013617515564, 0.02446577325463295, -0.010541703552007675, -0.020081225782632828, -0.00132867437787354, 0.024039845913648605, 0.017099734395742416, 0.020770225673913956, 0.009921603836119175, -0.01327891368418932, 0.0322452113032341, 0.01046027708798647, 0.0020403803791850805, 0.031017538160085678, 0.028061101213097572, -0.02502950094640255, 0.009533258154988289, 0.018051806837320328, -0.0136422049254179, 0.024954335764050484, -0.020845388993620872, -0.045474015176296234, -0.04008728638291359, -0.02092055417597294, -0.00738483015447855, 0.07345995306968689, -0.0326961949467659, -0.006420229561626911, -0.02575608156621456, 0.006877475418150425, -0.014882405288517475, -0.05597187578678131, 0.0358530692756176, 0.04745332524180412, 0.013379132375121117, -0.03883456066250801, -0.004882506560534239, -0.024365555495023727, -0.017237532883882523, 0.04234219714999199, -0.008831730112433434, -0.026908591389656067, -0.018227187916636467, -0.04437161609530449, -0.008812939748167992, 0.051211509853601456, -0.03490099310874939, -0.024390609934926033, -0.02170977182686329, -0.012358158826828003, -0.03625394031405449, -0.030065465718507767, 0.026232119649648666, -0.0021045824978500605, 0.05236401781439781, -0.013491877354681492, 0.0073785665445029736, -0.006150893401354551, 0.010886204428970814, 0.04364503547549248, -0.020106280222535133, 0.0478040911257267, 0.002766962395980954, 0.022624263539910316, 0.004876242950558662, -0.03978663310408592, 0.027384627610445023, 0.004058837890625, -0.043770305812358856, 0.031368304044008255, 0.003266487503424287, -0.0514119453728199, -0.031493574380874634, -0.031042592599987984, 0.029965247958898544, -0.015458660200238228, -0.033347614109516144, 0.009282712824642658, -0.020594844594597816, -0.0016567324055358768, 0.0018133233534172177, 0.019354643300175667, 0.0439707450568676, -0.06814838945865631, -0.012953205034136772, -0.028712520375847816, 0.004857451654970646, -0.030792048200964928, -0.020482098683714867, 0.016698861494660378, 0.012452113442122936, 0.018753334879875183, 0.0109926862642169, 0.017400387674570084, 0.0057813385501503944, 0.006620666012167931, 0.029388992115855217, -0.05416794866323471, -0.024653682485222816, 0.013316496275365353, -0.010842358693480492, -0.048956599086523056, -0.009815122000873089, 0.028411865234375, 0.07766912132501602, -0.03602844849228859, -0.0072470298036932945, -0.015621514990925789, -0.05271478369832039, -0.0028029782697558403, 0.018628060817718506, 0.04522347077727318, 0.0053053018637001514, -0.015070314519107342, 0.03883456066250801, -0.0042905923910439014, -0.034926049411296844, 0.00409955158829689, -0.00461003789678216, -0.003134951228275895, -0.007597793824970722, -0.03778227046132088, 0.022987553849816322, 0.01547118742018938, -0.0430687814950943, -0.028512082993984222, -0.04592499881982803, 0.02768528275191784, -0.02259920910000801, -0.004049442242830992, 0.018252242356538773, -0.026808373630046844, 0.0007488963310606778, 0.0317942313849926, 0.009420512244105339, -0.016272934153676033, 0.04740321636199951, -0.03462539613246918, -0.015909641981124878, -0.03409924730658531, 0.017964115366339684, 0.008393275551497936, -0.01169421337544918, -0.014043077826499939, 0.034976158291101456, -0.028537137433886528, -0.029689647257328033, 0.023488644510507584, 0.016135133802890778, 0.038584016263484955, -0.05376707389950752, -0.01865311525762081, 0.07050351798534393, -0.0010029651457443833, 0.022010426968336105, 0.018001697957515717, -0.024490827694535255, 0.0078107574954628944, 0.07676715403795242, -0.039485979825258255, 0.013153641484677792, -0.01663622446358204, 0.02791077457368374, 0.0027497373521327972, -0.03890972211956978, 0.0035577467642724514, 0.016373151913285255, -0.025054555386304855, 0.041239798069000244, -0.03279641270637512, 0.014669441618025303, -0.06940111517906189, 0.021609554067254066, 0.015295805409550667, 0.006877475418150425, -0.03617877885699272, -0.015145478770136833, -0.019692879170179367, 0.024327972903847694, -0.005289643071591854, 0.011951022781431675, -0.03522670269012451, 0.025042027235031128, 0.009990504011511803, -0.0004087024135515094, -0.011318394914269447, -0.004835529252886772, -0.02474137209355831, -0.00994665827602148, 0.039661359041929245, 0.01059807650744915, -0.041916269809007645, 0.009364140219986439, 0.012439586222171783, -0.0012997050071135163, 0.009802594780921936, 0.01899135299026966, 0.015208114869892597, 0.020707588642835617, 0.0226618442684412, 0.005264588166028261, -0.0025289440527558327, -0.06128343939781189, 0.04166572540998459, -0.0033698375336825848, -0.005840843077749014, 0.015872061252593994, 0.003814555937424302, -0.002325375797227025, -0.007171866483986378, 0.03196961060166359, 0.015972279012203217, 0.03252081200480461, 0.05181282013654709, -0.0028233351185917854, 0.0191667340695858, -0.010391376912593842, -0.04071365296840668, -0.014506586827337742, 0.03342277556657791, -0.009057221934199333, 0.008055039681494236, 0.039435870945453644, 0.02710902877151966, 0.034024085849523544, 0.012777823023498058, -0.05451871082186699, 0.029464157298207283, 0.005082943011075258, -0.017350278794765472, -0.0041496604681015015, -0.02182251773774624, 0.012383213266730309, -0.01617271453142166, -0.006069466006010771, 0.013629677705466747, -0.010303685441613197, -0.014043077826499939, -0.006273034028708935, -0.008750303648412228, -0.04787925258278847, 0.009683585725724697, 0.02372666262090206, -0.03016568347811699, 0.031268082559108734, 0.03793259710073471, -0.011763113550841808, 0.026457609608769417, 0.006338802166283131, -0.015145478770136833, -0.013579568825662136, 0.06874969601631165, -0.0450982004404068, -0.021947789937257767, -0.019768044352531433, 0.008706457912921906, 0.0027857532259076834, 0.027985937893390656, 0.018853552639484406, -0.001521281199529767, 0.0342746302485466, 0.05045987293124199, -0.020394407212734222, -0.029689647257328033, 0.030015356838703156, -0.004591247066855431, -0.011042795144021511, 0.034976158291101456, 0.03688030317425728, -0.03725612163543701, -0.0028953670989722013, 0.0006459377473220229, 0.008236684836447239, -0.02046957053244114, 0.039611250162124634, 0.007447466254234314, -0.04582478106021881, 0.0104289585724473, -0.0302157923579216, 0.024215226992964745, -0.010717085562646389, -0.006094520445913076, -0.008712721057236195, -0.034424956887960434, 0.007785703055560589, -0.017337752506136894, 0.023426009342074394, 0.02429039031267166, 0.014744605869054794, 0.05537056550383568, -0.009458094835281372, -0.00409955158829689, 0.00045920300181023777, 0.017914006486535072, 0.02994019351899624, 0.012295522727072239, 0.02451588213443756, -0.037907540798187256, -0.012564859353005886, 0.028837792575359344, 0.010917522013187408, -0.030090520158410072, -0.011343449354171753, 0.013128587044775486, 0.014982623979449272, 0.04595005512237549, 0.05902853235602379, 0.0199559535831213, 0.021070880815386772, -0.00022979723871685565, 0.010673240758478642, 0.013028368353843689, 0.013817586936056614, -0.015370969660580158, 0.01327891368418932, 0.02768528275191784, 0.0056090885773301125, 0.005787602160125971, 0.024703791365027428, 0.03259597718715668, -0.02778550051152706, 0.003407419426366687, 0.0008870878373272717, 0.011437403969466686, -0.0014758699107915163, -0.02124626189470291, 0.01456922385841608, -0.05015921965241432, -0.03186939284205437, 0.010660713538527489, -0.025129718706011772, 0.029965247958898544, -0.013166168704628944, -0.018502788618206978, -0.0014985755551606417, 0.05802634730935097, -0.01696193404495716, -0.016899297013878822, -0.010817304253578186, -0.01866564340889454, -0.009927866980433464, 0.012495959177613258, -0.033573102205991745, 0.008888103067874908, 0.010378849692642689, 0.02858724631369114, -0.0003396066604182124, 0.00040478765731677413, -0.057074274867773056, 0.019367171451449394, 0.015258223749697208, 0.0003423469897825271, -0.04838034510612488, 0.007153075188398361, 0.024540936574339867, -0.014268568716943264, 0.036780085414648056, 0.061133112758398056, -0.017099734395742416, -0.03482583165168762, -0.04437161609530449, -0.004682070109993219, -0.017099734395742416, -0.014932515099644661, -0.027760446071624756, 0.02588135562837124, -0.013266386464238167, 0.007328457199037075, 0.0007261906284838915, -0.037631940096616745, 0.00590661121532321, -0.035552412271499634, -0.059279076755046844, -0.0027027600444853306, -0.012251676991581917, -0.016786551102995872, -0.0006615968304686248, 0.026632992550730705, -0.009076012298464775, 0.04587488994002342, -0.0006197087350301445, 0.014218459837138653, 0.011825749650597572, -0.004346965346485376, 0.03419946879148483, -0.025956518948078156, -0.07446213811635971, 0.028386810794472694, -0.017613351345062256, 0.0032289058435708284, -0.020482098683714867, 0.01287804078310728, -0.0295393206179142, -0.0177010428160429, -0.03575285151600838, 0.0009082276374101639, -0.03918532282114029, 0.0027716602198779583, 0.009176230989396572, 0.0033510467037558556, 0.009815122000873089, -0.0387844517827034, -0.0007132718455977738, -0.007510102819651365, -0.032495759427547455, 0.02846197411417961, 0.006501656956970692, 0.038408633321523666, 0.009032166562974453, -0.007359775248914957, 0.0356275774538517, 0.001121974317356944, 0.036955468356609344, 0.02958942949771881, -0.012771558947861195, -0.012026186101138592, 0.003833347000181675, -0.0043657561764121056, 0.04584983363747597, 0.04775398224592209, -0.01242705900222063, 0.0162353515625, -0.0023128485772758722, 0.012683868408203125, 0.02976481057703495, -0.006583084352314472, -0.04048816114664078, 0.0317942313849926, -0.02705891989171505, 0.0020748302340507507, -0.023300735279917717, 0.012928150594234467, -0.0006850854842923582, -0.012752768583595753, -0.0245785191655159, 0.040513213723897934, 0.0006369337788783014, 0.02836175635457039, -0.015070314519107342, -0.028061101213097572, -0.022235916927456856, 0.01686171628534794, -0.05426816642284393, 0.03477572277188301, -0.013416714034974575, 0.002591580618172884, 0.01339165959507227, 0.011763113550841808, 0.024703791365027428, -0.009533258154988289, 0.0020294189453125, 0.012752768583595753, -0.020832862704992294, 0.03089226596057415, 0.0015338085358962417, -0.017788734287023544, 0.0232255719602108, 0.013541987165808678, -0.020081225782632828, -0.010641922242939472, 0.03287157416343689, -0.02328820899128914, -0.007785703055560589, 0.02169724367558956, -0.01547118742018938, -0.003133385209366679, -0.012721450068056583, -0.012295522727072239, -0.0027653963770717382, 0.004732178989797831, -0.00570617476478219, 0.026056736707687378, -0.0008479401003569365, 0.046476200222969055, -0.010986422188580036, 0.046601470559835434, -0.011017740704119205, -0.014581751078367233, 0.007077911868691444, 0.0028812738601118326, -0.04785420000553131, -0.03770710527896881, 0.009533258154988289, -0.009169966913759708, -0.05136183649301529, -0.012514750473201275, -0.014494059607386589, 0.024265335872769356, -0.07451224327087402, 0.013216277584433556, -0.02733451873064041, 0.00531469751149416, -0.00483239721506834, -0.003376101376488805, -0.0076917484402656555, -0.0322452113032341, -0.026983754709362984, -0.029890084639191628, 0.059830278158187866, 0.020845388993620872, -0.009307767264544964, 0.020294189453125, 0.03084215708076954, -0.003849006025120616, -0.0056404066272079945, 0.008330639451742172, -0.03482583165168762, -0.016210297122597694, -0.0013975744368508458, -0.053817182779312134, -0.0020372485741972923, 0.0013435505097731948, -0.028036046773195267, 0.009345348924398422, 0.0074412026442587376, 0.06293704360723495, -0.010535440407693386, 0.056122202426195145, 0.0067960480228066444, 0.016561061143875122, 0.010278631001710892, 0.008249212056398392, -0.006915057078003883, -0.00765416631475091, 0.004303119610995054, 0.016147660091519356, 0.0064264931716024876, 0.0043407017365098, 0.02351369895040989, 0.03981168940663338, -0.0028452579863369465, -0.014832296408712864, -0.0246912632137537, -0.001136850449256599, -0.006589347962290049, -0.03545219451189041, 0.0086814034730196, 0.05993049591779709, 0.02745979279279709, -0.020895497873425484, 0.005558979231864214, 0.012358158826828003, -0.04116463288664818, -0.03129313886165619, 0.0191667340695858, 0.03164390102028847, -0.020557262003421783, 0.014080659486353397, 0.005427442956715822, 0.03986179828643799, -0.0008181877783499658, 0.010554230771958828, -0.010610603727400303, -0.005129920318722725, 0.012452113442122936, -0.0025586963165551424, -0.0019573871977627277, 0.027885720133781433, -0.05742504075169563, 0.03906005248427391, 0.018690697848796844, -0.015007678419351578, -0.05496969446539879, -0.02462862804532051, 0.010585549287497997, -0.01955508068203926, 0.015496241860091686, 0.002954871626570821, -0.0077230664901435375, -0.02435302734375, 0.028737574815750122, 0.03151863068342209, 0.015082841739058495, -0.006977693643420935, -0.006103916093707085, 0.031769175082445145, 0.010579286143183708, 0.009201285429298878, 0.009658531285822392, 0.003773842239752412, 0.012113877572119236, 0.057525258511304855, 0.01389275025576353, 0.036604706197977066, -0.005656065884977579, 0.01612260565161705, -0.045123253017663956, -0.020106280222535133, 0.03753172233700752, -0.01651095226407051, -0.020482098683714867, 0.03708074241876602, -0.022686898708343506, 0.030240846797823906, -0.024152589961886406, -0.025067081674933434, -0.01742544211447239, -0.012026186101138592, 0.01753818802535534, -0.003989937715232372, 0.02710902877151966, -0.008192839100956917, -0.0049827247858047485, -0.00539612490683794, 0.004703992512077093, 0.027710337191820145, -0.015195587649941444, 0.024002263322472572, -0.014443950727581978, 0.004165319725871086, -0.015696678310632706, -0.013429241254925728, -0.013717369176447392, 0.039536088705062866, 0.05597187578678131, -0.015608987770974636, -0.006103916093707085, 0.015521296299993992, -0.0031897579319775105, 0.0030723148956894875, -0.01141234952956438, 0.022461408749222755, 0.029188556596636772, -0.0029486080165952444, -0.019467389211058617, 0.017262589186429977, 0.010128303430974483, -0.015396024100482464, 0.01821466162800789, -0.021559445187449455, 0.0541178397834301, 0.028712520375847816, 0.002103016711771488, -0.04853067174553871, 0.01513295155018568, 0.03838357701897621, 0.009577103890478611, -0.033122122287750244, -0.012583649717271328, -0.007585266605019569, -0.00331972842104733, 0.015759315341711044, -0.004556796979159117, -0.015370969660580158, -0.005508870352059603, 0.03217004984617233, -0.0011078810784965754, 0.0059974342584609985, 0.008518548682332039, -0.03151863068342209, -0.04161561653017998, 0.026858482509851456, 0.03928554058074951, -0.008994584903120995, 0.023263154551386833, 0.0739610493183136, 0.014945042319595814, -0.011211913079023361, -0.021559445187449455, 0.015796896070241928, 0.0019652165938168764, 0.008668876253068447, -0.0219853725284338, -0.0026307282969355583, -0.040513213723897934, -0.00820536632090807, 0.008744039572775364, -0.00019201968098059297, 0.05777580291032791, 0.0017475552158430219, -0.000523796770721674, 0.038308415561914444, -0.000822102592792362, -0.011738059110939503, -0.009746221825480461, 0.0015079709701240063, -0.005026570055633783, 0.010466540232300758, 0.012978259474039078, 0.0013216277584433556, 0.007366039324551821, 0.024440718814730644, 0.000262094137724489, -0.019041461870074272, -0.004447183571755886, -0.03552735969424248, -0.013379132375121117, -0.012076294980943203, -0.02018144354224205, 0.016310514882206917, -0.01815202459692955, -0.01776367984712124, 0.036379214376211166, 0.012583649717271328, 0.014882405288517475, 0.035201650112867355, 0.01910409890115261, 0.008211630396544933, 0.02868746593594551, -0.013354077935218811, -0.005414915736764669, -0.037857431918382645, -0.003758183214813471, -0.003639174159616232, -0.021997898817062378, -0.0076917484402656555, 0.003269619308412075, -0.0173628069460392, -0.011869595386087894, -0.003570273984223604, 0.024165118113160133, 0.009558312594890594, -0.015521296299993992, 0.03535197675228119, -0.02633233740925789, -0.012759031727910042, -0.004384547006338835, 0.029439100995659828, 0.009207548573613167, -0.0021405986044555902, 0.0013560777297243476, 0.027434738352894783, -0.00647033890709281, 0.03094237484037876, -0.01572173275053501, 0.018164552748203278, -0.020444516092538834, 0.036554597318172455, 0.026808373630046844, -0.015483714640140533, 0.03730623051524162, 0.02108340710401535, -0.018390042707324028, 0.0018321142997592688, -0.02971470169723034, 0.018527843058109283, -0.013128587044775486, -0.008111411705613136, 0.03234542906284332, -0.005590297747403383, 0.03572779521346092, 0.007240766193717718, 0.013091004453599453, 0.027409682050347328, 0.03843368589878082, 0.05091085657477379, -0.001260557328350842, 0.0001194006108562462, 0.0177010428160429, -0.02778550051152706, 0.027033865451812744, 0.014594278298318386, -0.006896266248077154, 0.003726864932104945, -0.006952638737857342, 0.008261739276349545, -0.02001858875155449, 0.019868262112140656, 0.041064415127038956, -0.011124222539365292, 0.019630244001746178, -0.008888103067874908, 0.040613435208797455, 0.048455510288476944, 0.03843368589878082, -0.03412430360913277, 0.016473369672894478, 0.016774024814367294, 0.006908793468028307, -0.0188284981995821, -0.01820213347673416, -0.008130203001201153, -0.03595328703522682, 0.02688353694975376, -0.007535157259553671, -0.009370403364300728, 0.013905277475714684, 0.015345915220677853, 0.046426091343164444, -0.008512284606695175, 0.020770225673913956, -0.03284652158617973, -0.0220981165766716, 0.022524043917655945, -0.012533540837466717, 0.005677988287061453, -0.020983189344406128, 0.027134083211421967, 0.02249898947775364, 0.005452497396618128, -0.017375333234667778, -0.008731512352824211, -0.017914006486535072, 0.011775640770792961, -0.0007508536800742149, -0.05151216313242912, 0.07817021012306213, -0.017888952046632767, -0.008831730112433434, -0.010773458518087864, 0.0028797078412026167, -0.03307201340794563, -0.002658914541825652, 0.027610119432210922, -0.0211961530148983, 0.0462256520986557, 0.012759031727910042, 0.014268568716943264, -0.013466822914779186, 0.022649317979812622, -0.008612503297626972, -0.03004041127860546, 0.021684717386960983, 0.04910692572593689, -0.05717449262738228, 0.0162353515625, 0.010547967627644539, -0.012364422902464867, 0.040613435208797455, -0.00876909401267767, -0.013466822914779186, -0.017914006486535072, -0.012677604332566261, -0.0065455022267997265, -0.023689081892371178, 0.036955468356609344, 0.003949224017560482, 0.0263824462890625, -0.014356260187923908, 0.010541703552007675, 0.003886587917804718, 0.005129920318722725, -0.008543603122234344, -0.024390609934926033, 0.03287157416343689, -0.015546351671218872, 0.022799644619226456, 0.0067083570174872875, 0.01900387927889824, 0.01451911497861147, -0.0012355027720332146, 0.031994666904211044, -0.0037487877998501062, -0.01668633334338665, 0.0211961530148983, 0.01319122314453125, -0.0006694264011457562, 0.03778227046132088, 0.008913157507777214, 0.003971146885305643, 0.011124222539365292, 0.005502606742084026, 0.02373919077217579, 0.02565586380660534, -0.02778550051152706, 0.007309666369110346, 0.031092703342437744, -0.00978380348533392, -0.011280813254415989, -0.0012002697912976146, -0.014180878177285194, -0.011631577275693417, -0.025580700486898422, 0.0101470947265625, 0.0177010428160429, -0.013404186815023422, -0.03144346550107002, 0.005317829083651304, 0.016999514773488045, 0.01607249677181244, 0.009639739990234375, 0.009138649329543114, 0.016949405893683434, 0.01225794106721878, -0.008418329991400242, 0.00279828067868948, -0.019517498090863228, 0.027159137651324272, -0.014556696638464928, 0.0118946498259902, -0.0036329105496406555, 0.01465691439807415, -0.007146811578422785, 0.009971712715923786, 0.0037299967370927334, 0.018690697848796844, -0.005762547720223665, 0.00029948021983727813, -0.017838843166828156, -0.018866078928112984, -0.00444091996178031, 0.01542107854038477, -0.01327891368418932, -0.012483431957662106, 0.004180978983640671, 0.019016407430171967, -0.009057221934199333, 0.00013545119145419449, -0.04434656351804733, -0.024904226884245872, -0.012765295803546906, 0.008080094121396542, -0.0153333880007267, -0.00910106673836708, 0.033397722989320755, -0.008869312703609467, -0.010811040177941322, 0.005577770061790943, 0.0060287523083388805, 0.004876242950558662, -0.016485897824168205, -0.03778227046132088, 0.027860665693879128, -0.05832700431346893, 0.026056736707687378, 0.006420229561626911, -0.015270750969648361, -0.01686171628534794, -0.00672088423743844, -0.032721247524023056, 0.0414903424680233, 0.006291824858635664, -0.025568172335624695, 0.007115493528544903, 0.030341066420078278, -0.01572173275053501, -0.02643255516886711, 0.0342746302485466, 0.017463024705648422, -0.025731027126312256, 0.0035734057892113924, 0.010635658167302608, -0.007146811578422785, 0.002362957689911127, -0.0041715833358466625, 0.000349785084836185, 0.029664592817425728, 0.0160098597407341, -0.021396590396761894, 0.011963550001382828, -0.017951589077711105, 0.008731512352824211, -0.014105713926255703, 0.007228238973766565, 0.012402004562318325, 0.019517498090863228, -0.03367331996560097, 0.022749535739421844, 0.0092451311647892, 0.016034914180636406, 0.010172149166464806, 0.05782591179013252, 0.03550230339169502, -0.005421179346740246, -0.005771942902356386, -0.02407742664217949, -0.016924351453781128, 0.016936879605054855, -0.033297501504421234, -0.01542107854038477, 0.030090520158410072, -0.02791077457368374, -0.015571406111121178, 0.018853552639484406, 0.01652347855269909, 0.00020865746773779392, 0.02193526364862919, -0.012044977396726608, -0.00360159226693213, 0.005486947484314442, -0.006802311632782221, -0.007660429924726486, 0.011299604550004005, 0.03557746857404709, -0.015408551320433617, -0.027985937893390656, 0.023488644510507584, 0.003814555937424302, 0.0003587890532799065, -0.0002299929765285924, -0.003933565225452185, -0.0423923060297966, -0.021409116685390472, -0.005386729259043932, -0.018615534529089928, -0.003814555937424302, -0.0008080094121396542, 0.015922170132398605, 0.04469732567667961, 0.004713388159871101, -0.03482583165168762, -0.031318195164203644, 0.008775358088314533, -0.01905398815870285, 0.008387012407183647, 0.0023175464011728764, 0.00738483015447855, -0.008556130342185497, -0.02182251773774624, 0.0014414198230952024, 0.0211961530148983, -0.016723915934562683, 0.0022094985470175743, 0.004544269759207964, 0.05416794866323471, 0.002640123711898923, 0.012809141539037228, 0.0015291108284145594, 0.008017457090318203, 0.0007990053854882717, 0.03885961323976517, 0.006714620627462864, 0.006222925148904324, 0.01628546044230461, -0.0059191384352743626, -0.021384062245488167, -0.04905681684613228, -0.03885961323976517, 0.008969530463218689, -0.01116180419921875, 0.024039845913648605, 0.021559445187449455, 0.015759315341711044, -0.012596177868545055, 0.004998383577913046, -0.02024408057332039, -0.018502788618206978, 0.02040693536400795, 0.01652347855269909, -0.026582881808280945, -0.039611250162124634, -0.017726097255945206, -0.013141114264726639, 0.008744039572775364, 6.459377618739381e-05, 0.031493574380874634, -0.005189424846321344, 0.014180878177285194, 0.0036329105496406555, 0.009952922351658344, 0.03302190452814102, 0.0286373570561409, -0.028111210092902184, -0.013604623265564442, -0.012652549892663956, 0.0068712118081748486, -0.019630244001746178, -0.00503283366560936, 0.01911662518978119, -0.011437403969466686, 0.008982057683169842, -0.008618766441941261, 0.028562191873788834, 0.0019354643300175667, -0.010385112836956978, 0.005778206512331963, -0.011838276870548725, -0.031543683260679245, 0.010723349638283253, 0.014243514277040958, -0.00045763709931634367, 0.004218560643494129, 0.01968035288155079, 0.005759415682405233, 0.002359825884923339, -0.05361674726009369, 0.0004075279866810888, 0.00865008495748043, 0.02018144354224205, -0.047779034823179245, 0.012865513563156128, 0.006385779473930597, -0.0016504687955603004, 0.015446132980287075, 0.006009961478412151, -0.0023895781487226486, -0.016711387783288956, -0.025380264967679977, -0.012214095331728458, 0.005107997450977564, 0.00966479443013668, -0.014894932508468628, -0.02903822995722294, -0.0022580416407436132, 0.0011509435717016459, -0.0015486846677958965, -0.01639820635318756, 0.028512082993984222, -0.01294067781418562, 0.021095935255289078, -1.8595177607494406e-05, -0.005067283753305674, 0.010422694496810436, -0.003996201325207949, -0.01731269806623459, 0.011230704374611378, 0.005900347605347633, -0.017500607296824455, -0.008656349033117294, 0.011575204320251942, -0.0008127071196213365, 0.015383496880531311, 0.0014179311692714691, 0.025956518948078156, -0.0074662575498223305, -0.008305585011839867, -0.003341651288792491, 0.008737776428461075, -0.020507153123617172, 6.841067806817591e-05, 0.005201952066272497, -0.019943425431847572, -0.0006247979472391307, 0.006802311632782221, 0.0077794394455850124, 0.013241332024335861, 0.009790067560970783, 0.0029188557527959347, 0.00043101664050482213, 0.03688030317425728, -0.005302170291543007, -0.046701692044734955, 0.009426776319742203, -0.012915623374283314, 0.014105713926255703, 0.022286025807261467, -0.0067083570174872875, -0.03958619758486748, 0.002016891725361347, 0.02362644486129284, -0.0018822234123945236, -0.0058063929900527, -0.012270468287169933, 0.0054368386045098305, 0.016698861494660378, -0.013479350134730339, 0.003758183214813471, -0.0480295829474926, 0.017513133585453033, 0.005677988287061453, 0.017287643626332283, 0.028211427852511406, -0.021734826266765594, 0.009000848978757858, -0.011650367639958858, -0.009921603836119175, 0.009915339760482311, 0.026507718488574028, -0.01124949473887682, 0.007641639094799757, 0.038358524441719055, 0.023238100111484528, 0.023250626400113106, 0.04657641798257828, 0.013679786585271358, 0.01141234952956438, -0.013341550715267658, 0.014594278298318386, -0.017500607296824455, 0.03219510242342949, 0.027359573170542717, 0.000428276282036677, -0.018853552639484406, 0.03708074241876602, -0.013028368353843689, 0.04003717750310898, 0.006695829797536135, 0.04113958030939102, 0.022286025807261467, -0.006839893292635679, 0.011374767869710922, -0.05632263794541359, 0.005696779582649469, 0.008073830045759678, -0.03976157680153847, -0.0410393625497818, 0.0059191384352743626, -0.021559445187449455, -0.004907561000436544, 0.026407500728964806, 0.001644205185584724, -0.021672189235687256, 0.008261739276349545, -0.0180392786860466, -0.038483794778585434]], "input": ["MOTORIZED BICYCLES:Motorized bicycles are not allowed to be transported as checked baggage.", "EXCEPTIONAL CASES:Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.", "EL AL AIRCRAFT:The information provided applies specifically to EL AL flights on EL AL aircraft.", "DESTINATION COUNTRY:The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.", "FRAGILE ITEM:The term \"FRAGILE ITEM\" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.", "VALUABLE ITEM:Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.", "SPECIAL TRAVEL INSURANCE:Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.", "EQUIPMENT:", "BAGGAGE CLAIM AREA:The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.", "DAMAGE REPORT:A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.", "CLAIMS DEPARTMENT:The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.", "BAGGAGE TAG:A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.", "BAGGAGE ISSUES:Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.", "EL AL ISRAEL AIRLINES LTD.:EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.", "DIGITAL CONTACT FORM:The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.", "MAKOR HAZIUD:Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-bb40e5524c738b608d8b09885c1a2089 b/cache/text_embedding/embedding-bb40e5524c738b608d8b09885c1a2089 deleted file mode 100644 index 0e40bb3fab9e97d428fa630635f2d7e60e6b9a3d..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-bb40e5524c738b608d8b09885c1a2089 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.010432764887809753, -0.03581107035279274, 0.030182231217622757, 0.004446056205779314, -0.01846356689929962, 0.05342545732855797, -0.024723226204514503, -0.010232601314783096, 0.049155306071043015, -0.012567841447889805, -0.045613016933202744, -0.036757297813892365, 0.0367087721824646, 0.04908251762390137, 0.009049816988408566, 0.028775019571185112, 0.03501041606068611, 0.03285107761621475, -0.003957778215408325, -0.0005197427235543728, 0.004033598117530346, 0.012604235671460629, 0.04124581441283226, -0.0027006908785551786, 0.007224082946777344, -0.008334080688655376, 0.010645058937370777, -0.020574381574988365, 0.060461509972810745, -0.04003269970417023, 0.08637358248233795, -0.031516652554273605, -0.002286716364324093, -0.0161101296544075, 0.012373743578791618, 0.026445845142006874, 0.016255702823400497, -0.004870645236223936, -0.007327197585254908, -0.013659643009305, -0.04148843511939049, -0.02993960864841938, -0.01356259360909462, -0.048233337700366974, -0.02576650120317936, 0.05633692815899849, 0.01049342006444931, -0.016073735430836678, -0.004352039657533169, 0.02649436891078949, 0.04930087924003601, 0.03384583070874214, 0.002069872571155429, -0.01556422933936119, -0.0010652641067281365, 0.005901790689677, -0.017129143700003624, 0.0334818959236145, 0.004664416424930096, -0.006017036270350218, -0.02189667522907257, 0.021496348083019257, 0.05318283662199974, 0.022466836497187614, -0.0028371659573167562, -0.013465545140206814, 0.05444447323679924, 0.062353964895009995, -0.03190485015511513, -0.004515809938311577, 0.04993169754743576, 0.013368495739996433, 0.03074026107788086, 0.016146522015333176, 0.007205886300653219, 0.0003969151293858886, 0.024080276489257812, -0.03932909667491913, 0.01059046946465969, 0.008989160880446434, -0.038746800273656845, 0.021751100197434425, 0.024820273742079735, -0.011160631664097309, -0.010099158622324467, 0.037849098443984985, -0.035228777676820755, 0.013598986901342869, -0.020744217559695244, -0.008152113296091557, -0.051144808530807495, 0.016025211662054062, -0.007133099250495434, 0.019142908975481987, -0.03239009529352188, 0.04304121807217598, 0.03399140387773514, -0.0031389277428388596, -0.046073999255895615, 0.01066932175308466, 0.008261294104158878, -0.018973074853420258, -0.027925841510295868, -0.013780954293906689, 0.023631425574421883, -0.03826155886054039, -0.023000607267022133, 0.038940899074077606, -0.06633297353982925, 0.03212320804595947, 0.072010338306427, -0.021229462698101997, 0.028241250663995743, 0.016340620815753937, -0.02775600552558899, -0.023316016420722008, -0.029405837878584862, 0.01369603630155325, 0.007011788431555033, -0.024383554235100746, 0.05163005366921425, -0.0009348545572720468, 0.008103589527308941, -0.023012736812233925, 0.02705240063369274, -0.02967272326350212, -0.02044093981385231, -0.045249082148075104, 0.0038364671636372805, -0.010638993233442307, 0.006653920281678438, -0.03886811435222626, 0.06541100889444351, -0.050416942685842514, 0.05279463902115822, 0.019033730030059814, -0.014994066208600998, -0.03641762584447861, -0.004245892632752657, -0.0038364671636372805, 0.03374877944588661, 0.009025554172694683, 0.060267411172389984, 0.01899733580648899, -0.037266805768013, 0.011269811540842056, 0.04699596390128136, 0.029284527525305748, -0.004373269155621529, -0.02097470872104168, -0.006001872476190329, -0.012149318121373653, -0.03886811435222626, 0.015479311347007751, 0.029818296432495117, -0.008334080688655376, 0.0037545820232480764, 0.04224056378006935, 0.030230754986405373, 0.002544502727687359, -0.012367678806185722, -0.0036696642637252808, -0.030910097062587738, -0.05061103776097298, -0.012895382009446621, -0.01845143549144268, -0.0015353451017290354, 0.028508136048913002, -0.06589625030755997, -0.017565863206982613, -0.040566470474004745, -0.051775626838207245, 0.002553601050749421, -0.004843350034207106, -0.05129038169980049, -0.032948125153779984, 0.024662569165229797, -0.0007744962931610644, -0.04532187059521675, 0.04583137854933739, 0.03809172287583351, 0.009213586337864399, -0.03365173190832138, 0.0003260239027440548, -0.016146522015333176, 0.045879900455474854, -0.007399984169751406, 0.022224213927984238, -0.038213033229112625, -0.012579972855746746, 0.0017377831973135471, -0.034792058169841766, -0.018330125138163567, -0.018560616299510002, -0.006526543293148279, -0.006690313573926687, -0.01556422933936119, -0.011008992791175842, 0.03692713379859924, 0.031443867832422256, -0.0047250716015696526, -0.027270760387182236, 0.03869827836751938, 0.03896516188979149, -0.02532978169620037, 0.005455971695482731, -0.008449326269328594, 0.023995358496904373, 0.03469500690698624, -0.018609140068292618, 0.016874389722943306, -0.03139534220099449, -0.03309369832277298, 0.011554893106222153, 0.02468683198094368, 0.020404545590281487, 0.059733644127845764, -0.02278224565088749, 0.011178828775882721, -0.05609430745244026, -0.04738416150212288, -0.06157757341861725, -0.025523880496621132, -0.012761940248310566, -0.024310767650604248, 0.04541891813278198, -0.007879163138568401, -0.007060312665998936, 0.006168675143271685, -0.010663256049156189, -0.03945040702819824, -0.04284712299704552, 0.022648803889751434, -0.00796408113092184, -0.03491336852312088, 0.009759487584233284, 0.044982198625802994, -0.024638308212161064, 0.005128431599587202, 0.033409107476472855, 0.0004060134815517813, 0.04636514559388161, -0.005149661097675562, 0.020186185836791992, 0.006987526081502438, -0.007703262381255627, 0.008243096992373466, 0.011488172225654125, 0.0017726601799950004, -0.02406814508140087, -0.00795801542699337, 0.047432683408260345, 0.018390780314803123, -0.0033360584639012814, -0.0311041958630085, 0.018136026337742805, 0.069487065076828, -0.019009467214345932, 0.08593686670064926, -0.04551596939563751, -0.05808380991220474, 0.0392320454120636, 0.0039122868329286575, -0.044812362641096115, -0.03401566296815872, -0.03940188139677048, -0.0012858988484367728, -0.0123980063945055, 0.01853635348379612, -0.025014372542500496, -0.06400379538536072, 0.04207072779536247, 0.022842902690172195, -0.022806508466601372, -0.06793428212404251, 0.012064400129020214, 0.02027110382914543, -0.013598986901342869, -0.02269732765853405, 0.001578562194481492, -0.02433503046631813, -0.04568580538034439, 0.010881615802645683, -0.007205886300653219, -0.019749466329813004, -0.021957330405712128, -0.004479416646063328, 0.012834726832807064, 0.018427172675728798, 0.006387035362422466, 0.04039663448929787, 0.014520952478051186, 0.012567841447889805, 0.016486193984746933, -0.0012623948277905583, -0.037752050906419754, -0.03877106308937073, -0.01550357323139906, -0.03789762407541275, -0.0021957329008728266, 0.00034687426523305476, 0.03243861719965935, 0.014217674732208252, -0.006629657931625843, 0.015940293669700623, 0.004988923668861389, -0.027513382956385612, 0.014508821070194244, -0.020635036751627922, 0.012774070724844933, -0.01175505667924881, -0.0334818959236145, -0.023182572796940804, -0.04107597842812538, 0.01708061993122101, 0.028775019571185112, -0.02967272326350212, -0.009783749468624592, -0.0003402400470804423, 0.001831799396313727, 0.05357103422284126, 0.008528178557753563, 0.038018934428691864, -0.07744508236646652, -0.005898757837712765, 0.0029857722111046314, 0.0006069351802580059, 0.07288377732038498, -0.0149212796241045, -0.011184894479811192, -0.06638149917125702, -0.01437537930905819, 0.05822938308119774, -0.023206835612654686, -0.040736306458711624, -0.04330810531973839, -0.021302249282598495, -0.001743848668411374, -0.06628444790840149, -0.015382261946797371, 0.019506843760609627, 0.019142908975481987, 0.0036363035906106234, 0.030327804386615753, 0.003420976223424077, 0.010523747652769089, -0.02334027737379074, 0.030060919001698494, 0.022369788959622383, 0.040469422936439514, -0.02576650120317936, 0.03389435261487961, -0.03100714646279812, -0.014557345770299435, -0.04204646870493889, -0.032875340431928635, 0.043550726026296616, -0.006672116927802563, 0.02351011335849762, 0.03139534220099449, 0.03134681656956673, 0.012112924829125404, 0.03537435084581375, 0.07070017606019974, 0.04008122533559799, 0.010827026329934597, -0.004279253073036671, 0.006957198027521372, -0.02506289631128311, 0.04258023574948311, 0.03129829466342926, 0.012507186271250248, -0.029284527525305748, 0.00050571613246575, 0.01288325060158968, 0.02478388138115406, 0.01482423022389412, -0.009559324011206627, -0.011160631664097309, -0.015115377493202686, 0.008455391973257065, -0.06541100889444351, 0.00493130087852478, -0.0010652641067281365, 0.018293730914592743, 0.03843139111995697, -0.0038819587789475918, -0.021120281890034676, 0.013635380193591118, -0.00023181815049611032, -0.003991139121353626, -0.016352752223610878, 0.00020395447791088372, 6.951700925128534e-05, -0.02252749353647232, 0.008916374295949936, -0.0057076928205788136, 0.05245497077703476, -0.007660803385078907, 0.009498667903244495, -0.01825733855366707, -0.02722223661839962, -0.019288484007120132, -0.0020258973818272352, 0.04061499610543251, -0.014763575047254562, 0.03154091536998749, -0.047262851148843765, 0.0031449932139366865, -0.024626176804304123, 0.004843350034207106, -0.030060919001698494, 0.018148157745599747, 0.018681926652789116, 0.033870089799165726, -0.017019962891936302, 0.009377356618642807, -0.009795880876481533, -0.03763074055314064, -0.04153696075081825, -0.01708061993122101, -0.035058941692113876, -0.07070017606019974, 0.008388670161366463, -0.02632453292608261, 0.015297343954443932, -0.024262243881821632, -0.022503230720758438, 0.04728711023926735, -0.04893694445490837, 0.032220259308815, 0.022770114243030548, -0.02116880752146244, 0.06313035637140274, 0.0073514594696462154, -0.029454363510012627, -0.036854345351457596, -0.029090428724884987, -0.03379730507731438, -0.0052042510360479355, 0.019118648022413254, -0.041658271104097366, 0.05065956339240074, 0.009080144576728344, -0.05434742569923401, -0.04277433454990387, -0.05361955612897873, -0.0161101296544075, -0.019579630345106125, -0.06070413067936897, 0.009547192603349686, 0.014520952478051186, 0.0016907750396057963, -0.007399984169751406, -0.01664389856159687, -0.016595374792814255, 0.03272976726293564, -0.027100926265120506, -0.005061710253357887, 0.008261294104158878, 0.034136977046728134, 0.02006487548351288, 0.026542894542217255, -0.009559324011206627, -0.003187452210113406, -0.00018717940838541836, 0.009638176299631596, 0.044545479118824005, 0.023898309096693993, -0.04044516012072563, -0.009371290914714336, -0.018839631229639053, 0.025111421942710876, -0.018196681514382362, 0.023582899942994118, 0.04449695348739624, 0.016947176307439804, 0.023485850542783737, -0.028265513479709625, -0.04124581441283226, -0.024796012789011, -0.0009454693063162267, -0.02270945906639099, -0.038043197244405746, 0.04367203637957573, 0.05779266357421875, 0.058569055050611496, 0.004142777994275093, -0.09185685217380524, -0.056482501327991486, -0.038285817950963974, -0.010548010468482971, 0.022466836497187614, -0.011579155921936035, 0.01591603085398674, -0.02530551888048649, -0.022551754489541054, -0.011136369779706001, 0.05415332689881325, -0.01107571367174387, 0.04003269970417023, 0.012246367521584034, 0.012725546024739742, 0.032220259308815, 0.028459610417485237, 0.04277433454990387, -0.04709301516413689, 0.019191434606909752, -0.01727471686899662, -0.03724254295229912, -0.0026612647343426943, -0.004791792947798967, 0.018572747707366943, -0.02179962582886219, -0.013987182639539242, -0.017650781199336052, 0.01487275492399931, 0.007096705958247185, -0.017869142815470695, -0.009474406018853188, 0.022284870967268944, -0.013501938432455063, 0.025378305464982986, 0.016850126907229424, 0.02016192302107811, 0.01899733580648899, 0.009674569591879845, -0.10782140493392944, -0.03646615147590637, 0.015539966523647308, -0.022466836497187614, -0.007230148185044527, -0.03826155886054039, 0.0075152297504246235, 0.030060919001698494, 0.014520952478051186, -0.029357314109802246, 0.031516652554273605, -0.007224082946777344, -0.011633745394647121, 0.040105488151311874, 0.027925841510295868, 0.0039244177751243114, 0.007788179907947779, 0.0023018803913146257, 0.0049100713804364204, 0.007836704142391682, -0.026130435988307, -0.028556659817695618, 0.0057198237627744675, -0.026081910356879234, -0.027804531157016754, 0.005835069343447685, -0.04241039976477623, -0.005495397839695215, 0.013125873170793056, -0.0024686832912266254, -0.025159945711493492, 0.024650439620018005, 0.01352620031684637, -0.003612041473388672, -0.012956038117408752, -0.002512658480554819, -0.028653709217905998, -0.006017036270350218, 0.008267358876764774, 0.005995806772261858, -0.008449326269328594, 0.0027264696545898914, 0.03389435261487961, -0.06647854298353195, -0.0030979851726442575, 0.02297634445130825, 0.012264563702046871, 0.025742240250110626, -0.01826946809887886, 0.019324876368045807, -0.03624778985977173, -0.010305387899279594, -0.001506533706560731, -0.00012557605805341154, -0.0009280308149755001, 0.008819324895739555, 0.009547192603349686, -0.017408158630132675, 0.01710488088428974, -0.0027158549055457115, -0.036757297813892365, -0.026809778064489365, -0.07235001027584076, -0.03430681303143501, 0.004643186926841736, 0.001754463417455554, 0.000361279962817207, 0.002740117022767663, 0.06007331237196922, 0.01229489129036665, 0.05080513656139374, -0.030982883647084236, 0.024917323142290115, 0.014484559185802937, -0.023534376174211502, -0.017857011407613754, 0.015964556485414505, -0.033336322754621506, -0.012040138244628906, -0.015430786646902561, 0.01573406532406807, -0.017602257430553436, 0.023813391104340553, 0.020998971536755562, 0.02741633541882038, 0.02586355060338974, -0.03343337029218674, -0.02765895612537861, -0.016571111977100372, 0.005237611476331949, -0.013720298185944557, -0.018305862322449684, -5.7717599702300504e-05, -0.013125873170793056, -0.00921965204179287, -0.016619635745882988, 0.001739299506880343, -0.07225295901298523, 0.009438012726604939, -0.013259315863251686, -0.032608453184366226, 0.03743664175271988, -0.00999604444950819, -0.017480945214629173, -0.022648803889751434, -0.010044568218290806, -0.03501041606068611, -0.030060919001698494, 0.026373058557510376, -0.0076790000312030315, 0.027270760387182236, 0.02741633541882038, 0.0060140034183859825, 0.003524090861901641, -0.06031593680381775, 0.007618344388902187, -0.028920592740178108, 0.013865872286260128, 0.0329238623380661, 0.009031619876623154, 0.01248292438685894, 0.03551992401480675, 0.0036757297348231077, 0.021763231605291367, 0.032147470861673355, 0.002888723276555538, 0.024019621312618256, -0.003618106944486499, -0.011093910783529282, -0.012373743578791618, 0.015673408284783363, -0.00529220188036561, -0.011785384267568588, -0.013829478062689304, -0.010123420506715775, 0.013283577747642994, -0.026809778064489365, 0.005304332822561264, -0.019470449537038803, 0.02758616954088211, -0.041828107088804245, 0.01500619761645794, 0.00994145404547453, 0.01608586683869362, 0.01626783423125744, -0.016935044899582863, 0.005744086112827063, -0.003011550987139344, 0.03462222218513489, 0.014678657054901123, 0.012470792979001999, -0.0233281459659338, -0.0007722217123955488, -0.02559666708111763, -0.023279622197151184, -0.04012975096702576, 0.022127166390419006, -0.05517233908176422, -0.01052981335669756, 0.016158653423190117, -0.0021745036356151104, -0.009068013168871403, 0.01846356689929962, -0.0029857722111046314, 0.031079933047294617, 0.0027219203766435385, -0.012604235671460629, -0.010736042633652687, 0.009158996865153313, 0.016607506200671196, -0.001733234035782516, 0.003663598792627454, 0.017966190353035927, -0.02731928601861, 0.0049828579649329185, 0.0065750679932534695, -0.03309369832277298, -0.03265697881579399, -0.022503230720758438, 0.005274005234241486, 0.017408158630132675, -0.021763231605291367, 0.0020152826327830553, -0.006884411443024874, 0.010074896737933159, -0.02150847762823105, 0.0046401540748775005, 0.00461285887286067, 0.0015815949300304055, -0.004934333730489016, 0.017577994614839554, -0.007594082038849592, -0.020392416045069695, -0.014654395170509815, -0.02422584965825081, -0.05138742923736572, 0.014715050347149372, 0.04003269970417023, 0.0035726153291761875, -0.016425538808107376, 0.012664890848100185, -0.022770114243030548, 0.0066114612855017185, -0.008540309965610504, -0.031225506216287613, 0.020222580060362816, 0.034500908106565475, -0.0223455261439085, 0.016304226592183113, -0.015309475362300873, -0.01609799824655056, 0.03280255198478699, -0.022297000512480736, 0.008012605831027031, -0.03508320450782776, 0.037776313722133636, -0.012616366147994995, 0.002201798604801297, -0.00029209465719759464, -0.03653893619775772, 0.06681821495294571, -0.04376908764243126, -0.009704897180199623, -0.014314723201096058, 0.00859489943832159, 0.0016558980569243431, -0.024893062189221382, 0.005901790689677, 0.010420633479952812, -0.004540072288364172, 0.05541496351361275, -0.010287190787494183, -0.001258603879250586, -0.0005375603213906288, -0.021193068474531174, -0.015952425077557564, -0.016061604022979736, 0.012689152732491493, -0.01773569919168949, -0.040736306458711624, -0.009431947022676468, 0.004449088592082262, -0.005780479405075312, -0.02341306395828724, -0.051338907331228256, -0.019737334921956062, 0.012701284140348434, -0.010341781191527843, -0.03003665618598461, -0.013938658870756626, -0.011767188087105751, -0.005871462635695934, -0.002712822053581476, -0.010899812914431095, -0.006065560970455408, -0.01800258457660675, 0.05924839898943901, 0.004358105361461639, -0.0031965505331754684, 0.006666051223874092, 0.030910097062587738, 0.008879981003701687, -0.031176982447504997, -0.0016574144829064608, 0.006720641162246466, 0.033967141062021255, -0.0036150740925222635, 0.018572747707366943, 0.014715050347149372, 0.00466138357296586, -0.07695983350276947, -0.018888156861066818, 0.0021441758144646883, -0.00780031131580472, -0.001290448009967804, -0.02144782245159149, -0.01419341191649437, 0.03289960324764252, 0.020501594990491867, -0.023910440504550934, 0.010147683322429657, 0.03357894346117973, -0.021823886781930923, -0.013198659755289555, 0.02540256828069687, 0.042167779058218, 0.06007331237196922, -0.008649489842355251, 0.017941929399967194, -0.005974577274173498, -0.007193754892796278, -0.024189455434679985, -0.03760647773742676, 0.014690788462758064, 0.017032094299793243, -0.004103351850062609, -0.017590126022696495, 0.0336274690926075, -0.04740842431783676, -4.7624129365431145e-05, 0.04854874685406685, -0.014496690593659878, -0.045273344963788986, 0.008940636180341244, -0.003818270517513156, 0.004527940880507231, -0.0064476910047233105, -0.0091407997533679, 0.018499961122870445, 0.01972520351409912, 0.03818877041339874, 0.019943563267588615, 0.011245549656450748, 0.031783539801836014, -0.010062765330076218, -0.03816450759768486, 0.009741290472447872, -0.01754160225391388, 0.022369788959622383, 0.0037181887309998274, 0.012737677432596684, -0.014326854608952999, 0.02828977443277836, -0.016243571415543556, -0.011281942948698997, 0.00021873928199056536, -0.016498325392603874, 0.030910097062587738, -0.027343546971678734, 0.011700466275215149, 0.002198765752837062, 0.015321606770157814, -0.0023504048585891724, 0.011785384267568588, 0.030133705586194992, -9.960788156604394e-05, 0.007885228842496872, -0.012567841447889805, -0.022539623081684113, 0.018936680629849434, 0.012616366147994995, -0.012082597240805626, -0.01799045316874981, 0.0015815949300304055, -0.008418998681008816, 0.024383554235100746, -0.02233339473605156, -0.04837891086935997, 0.0028872068505734205, 0.04668055474758148, 0.05444447323679924, 0.02307339385151863, 0.024747487157583237, -0.010948337614536285, 0.02821698784828186, 0.05007727071642876, -0.01167013868689537, -0.0059654791839420795, -0.023291753605008125, -0.030085181817412376, 0.031419605016708374, 0.025087159126996994, -0.004076056648045778, -0.004012368619441986, 0.014120625331997871, 0.05599725618958473, 0.01762652024626732, 0.03877106308937073, -0.004069991409778595, 0.014229805208742619, 0.03629631549119949, 0.015212425962090492, 0.004555236082524061, -0.012907513417303562, -0.045443180948495865, -0.05308578908443451, -0.01692291535437107, -0.004464252851903439, -0.0004189027822576463, 0.008279490284621716, -0.011882433667778969, 0.01646193116903305, 0.009486537426710129, -0.001868192688561976, 0.021666182205080986, 0.009959651157259941, -0.05546348914504051, 0.02216355875134468, 0.028071414679288864, -0.023740604519844055, 0.0045127770863473415, -0.02576650120317936, -0.01907012239098549, -0.0018712255405262113, -0.016765210777521133, -0.018936680629849434, 0.027295023202896118, 0.019567498937249184, 0.020853398367762566, -0.013429151847958565, 0.026882564648985863, -0.008716210722923279, -0.008127851411700249, -0.06186871975660324, 0.045710064470767975, 0.007575885392725468, -0.004424826707690954, 0.017250454053282738, 0.04338089004158974, -0.0002484984288457781, 0.0034543368965387344, 0.010475222952663898, -0.013780954293906689, 0.013453413732349873, -0.05279463902115822, -0.013453413732349873, -0.018888156861066818, 0.013635380193591118, 0.002888723276555538, 0.0014428452122956514, -0.0006528059602715075, 0.035762544721364975, -0.03755795210599899, 0.029721247032284737, 0.015285213477909565, 0.029284527525305748, 0.01229489129036665, -0.0073878527618944645, 0.040008436888456345, 0.06463461369276047, -0.01121522206813097, 0.04134286195039749, 0.0012881734874099493, 0.036854345351457596, -0.01644980162382126, 0.007151295896619558, -0.047359898686409, -0.003618106944486499, -0.0012275178451091051, 6.278802902670577e-05, -0.013125873170793056, 0.012331284582614899, -0.00991112645715475, -0.021375035867094994, -0.05027136579155922, 0.06604182720184326, 0.010572272352874279, -0.012701284140348434, 0.02150847762823105, -0.020853398367762566, 0.030958622694015503, 0.011700466275215149, 0.036757297813892365, -0.0013306323671713471, 0.00813998281955719, 0.034670744091272354, 0.00140796834602952, 0.009128669276833534, 0.02052585780620575, -0.003648434765636921, 0.0025247896555811167, 0.03156517818570137, -0.02207864075899124, 0.003193517681211233, -0.001228276058100164, 0.024165194481611252, 0.051241856068372726, -0.008607030846178532, 0.011288008652627468, 0.03149238973855972, 0.013623249717056751, 0.02542683109641075, 0.007612278684973717, -0.00030100345611572266, 0.041561223566532135, 0.0023504048585891724, -0.004048761911690235, -0.017298979684710503, -0.023922571912407875, 0.0015042590675875545, 0.01988290809094906, -0.0220665093511343, 0.008928505703806877, -0.018051108345389366, -0.00022594213078264147, 0.015018328092992306, 0.006508346647024155, -0.023303885012865067, 0.009601783007383347, 0.0273920726031065, -0.028605183586478233, -0.027901578694581985, 0.006135314702987671, 0.0024550356902182102, 0.015867507085204124, 0.05813233554363251, -0.02369208075106144, 0.00855244044214487, -0.012507186271250248, -0.004379334859549999, 0.02731928601861, -0.0027886414900422096, 0.011967351660132408, 0.02116880752146244, -0.008018671534955502, 0.008989160880446434, 0.028362562879920006, 0.016073735430836678, 0.03185632452368736, -0.02778026834130287, 0.017687175422906876, -0.042192041873931885, 0.010068831034004688, -0.01415701862424612, 0.008067196235060692, -0.016765210777521133, 0.027828792110085487, 0.029260264709591866, 0.012240301817655563, -0.011385057121515274, 0.013222922571003437, 0.006374904420226812, -0.0012313087936490774, -0.010214404202997684, 0.04820907860994339, -0.01881537027657032, 0.04998021945357323, -0.0019697907846421003, 0.00805506482720375, 0.01130014006048441, 0.004036630503833294, -0.012895382009446621, 0.01429046131670475, 0.0004871403507422656, -0.017941929399967194, -0.02377699874341488, -0.03651467710733414, 0.021326512098312378, -0.01997995749115944, -0.046801865100860596, 0.02045307122170925, 0.012015875428915024, 0.028605183586478233, -0.018051108345389366, -0.020586512982845306, 0.024917323142290115, -0.014642263762652874, -0.009486537426710129, -0.012404072098433971, -0.035859595984220505, -0.048694320023059845, -0.023570768535137177, 0.029551411047577858, 0.004843350034207106, 0.020926184952259064, -0.01734750345349312, -0.03120124526321888, -0.00100081751588732, 0.0010713296942412853, -0.003101018024608493, 0.007315066177397966, -0.013914396055042744, 0.005295234732329845, -0.00775178661569953, -0.010766370221972466, 0.005101136397570372, -0.020368153229355812, 0.012185711413621902, 0.017844879999756813, -0.011403254233300686, -0.011021124199032784, 0.023922571912407875, -0.026615681126713753, 0.033506158739328384, -0.01351406890898943, -0.00146483292337507, 0.01500619761645794, 0.019676679745316505, -0.006041298620402813, -0.003797041019424796, -0.02848387323319912, -0.03316648676991463, 0.022915689274668694, -0.02153274044394493, 0.004791792947798967, -0.018123894929885864, -0.004412695299834013, -0.04039663448929787, 0.022770114243030548, 0.0075516230426728725, 0.004806956741958857, 0.02712518721818924, 0.0020653235260397196, -0.030716000124812126, -0.029357314109802246, -0.00741818081587553, 0.025111421942710876, 0.0038000738713890314, -0.001924299169331789, 6.700549420202151e-05, -0.005841135047376156, 0.014387509785592556, -0.02189667522907257, -0.03636910393834114, 0.014169150032103062, -0.011463909409940243, -0.024577653035521507, 0.02053798921406269, -0.01908225379884243, 0.022127166390419006, -0.04529760777950287, -0.006320314481854439, -0.029599936679005623, 0.001975856488570571, 0.01437537930905819, -0.015758326277136803, 0.001661963644437492, 0.0008431129390373826, -0.00012870361388195306, -0.003533189184963703, 0.0721559077501297, 0.013404889032244682, -0.009698831476271152, -0.007133099250495434, 0.01311374269425869, -0.02161765843629837, 0.017978321760892868, 0.002811387414112687, -0.011391122825443745, 0.007757852319628, 0.009601783007383347, 0.021544871851801872, 0.04883989691734314, -0.043987445533275604, -0.016437670215964317, -0.016874389722943306, 0.005307365674525499, -0.021277986466884613, -0.004515809938311577, -0.0011031738249585032, 0.017614388838410378, -0.0028705266304314137, 0.02196946181356907, -0.005489332601428032, -0.014278329908847809, -0.013053086586296558, 0.006920804735273123, 0.0019121679943054914, -0.006799493450671434, 0.03525304049253464, 0.00750309880822897, -0.019676679745316505, -0.022563885897397995, 0.032220259308815, 0.04151269793510437, -0.02758616954088211, -0.0334818959236145, 0.004831219092011452, -0.012185711413621902, 0.04592842608690262, -0.002549052005633712, 0.0004234519728925079, -0.004400564357638359, -0.04275007173418999, -0.005622774828225374, -0.010335715487599373, -0.0036393364425748587, 0.011294074356555939, 0.020222580060362816, -0.007084575016051531, 0.04376908764243126, 0.027149450033903122, -0.028168464079499245, -0.012288826517760754, 0.007054246962070465, 0.02731928601861, 0.020853398367762566, -0.012404072098433971, -0.023849785327911377, -0.001320775831118226, -6.397270772140473e-05, 0.005904823541641235, 0.02911469154059887, 0.019773727282881737, 0.007272607181221247, 0.027173712849617004, 0.006132281851023436, -0.025912076234817505, -0.008540309965610504, -0.018051108345389366, -0.005455971695482731, -0.008212769404053688, -0.004279253073036671, 0.018572747707366943, 0.008455391973257065, 0.012725546024739742, -0.02765895612537861, 0.006074659060686827, -0.018924549221992493, 0.005947282537817955, 0.03328779712319374, -0.03272976726293564, 0.023534376174211502, 0.011645876802504063, -0.03345763310790062, -0.010699649341404438, 0.0025657322257757187, -0.008746538311243057, 0.04512777179479599, -0.015394393354654312, 0.020938316360116005, -0.025717977434396744, -0.04299269616603851, -0.0073029352352023125, 0.010918009094893932, -0.014035707339644432, -0.0334818959236145, 0.009037685580551624, -0.01111817266792059, -0.01370816770941019, 0.03163796663284302, -0.015066852793097496, -0.055123817175626755, -0.026300271973013878, -0.017966190353035927, 0.008831456303596497, -0.00687228050082922, -0.05061103776097298, 0.007739655673503876, 0.01043882966041565, -0.031225506216287613, -0.016668161377310753, 0.028435349464416504, -0.019955694675445557, 0.005795643199235201, -0.03959598019719124, 0.029357314109802246, 0.005680397618561983, 0.007739655673503876, 0.02323109842836857, -0.005998839624226093, -0.006763100158423185, 0.015248820185661316, -0.009201455861330032, -0.005358922760933638, 0.013501938432455063, -0.004452121444046497, 0.022491099312901497, 0.0010250797495245934, -0.041197288781404495, 0.02334027737379074, 0.004267122130841017, -0.0019424958154559135, -0.002931182272732258, -0.008758669719099998, -0.019482580944895744, -0.0039122868329286575, 0.03772778809070587, 0.001810569898225367, -0.013598986901342869, 0.01116669736802578, 0.008497850969433784, -0.009116537868976593, 0.002456552116200328, 0.02342519536614418, -0.006038265768438578, -0.007187689654529095, 0.007812442258000374, -0.01352620031684637, 0.012264563702046871, 0.004885809030383825, 0.01243439968675375, -0.035301562398672104, 0.027295023202896118, -0.007557688746601343, 0.03680582344532013, -0.03510746732354164, 0.010256863199174404, 0.034792058169841766, -0.0009704896947368979, -0.03353042155504227, 0.01772356778383255, -0.0077639175578951836, 0.010329649783670902, 0.006362773012369871, -0.00247626518830657, 0.018851762637495995, -0.0029933543410152197, -0.03918352350592613, 0.016425538808107376, -0.021641921252012253, -0.02144782245159149, 0.01773569919168949, -0.018766844645142555, 0.02496584877371788, -0.014351116493344307, 0.014545214362442493, 0.023291753605008125, -0.02478388138115406, -0.00877080112695694, 0.03906220942735672, 0.032705504447221756, -0.0010137067874893546, 0.0011880917008966208, -0.005049579311162233, -0.017978321760892868, -0.006023101974278688, -0.009340963326394558, 0.023267490789294243, -0.02666420489549637, 0.005298267118632793, -0.035301562398672104, -0.012810464017093182, -0.02622748538851738, 0.014120625331997871, -0.028192726895213127, -0.002482330659404397, 0.00926211103796959, 0.010299322195351124, -0.01433898601680994, -0.013574725016951561, 0.0018378648674115539, 0.04306548088788986, 0.0034695006906986237, -0.01854848489165306, -0.017699306830763817, 0.0245897825807333, -0.014678657054901123, 0.022418312728405, 0.032681241631507874, 0.01672881655395031, -0.005989741068333387, 0.014363247901201248, 0.00864342413842678, 0.005219414830207825, 0.008012605831027031, -0.007284738589078188, -0.027561908587813377, 0.0017256520222872496, -0.03520451486110687, -0.03789762407541275, 0.006763100158423185, 0.04168253391981125, 0.01890028640627861, -0.05061103776097298, -0.005513594951480627, -0.004755399655550718, 0.01665602996945381, 0.016243571415543556, -0.018475698307156563, 0.03163796663284302, 0.013417020440101624, -0.022005854174494743, -0.012373743578791618, -0.04338089004158974, -0.018487829715013504, -0.001367025775834918, -0.053231362253427505, -0.003797041019424796, 0.00585326598957181, 0.00935916043817997, -0.02181175723671913, -0.012531448155641556, -0.03200189769268036, 0.018499961122870445, -0.010996861383318901, 0.02615469880402088, -0.009656372480094433, -0.00624146219342947, -0.01807537116110325, -0.009735224768519402, -0.01488488633185625, 0.01356259360909462, 0.024844536557793617, 0.03442812338471413, -0.02676125429570675, 0.006229330785572529, 0.0036150740925222635, -0.009741290472447872, -0.04085761681199074, 0.014181281439960003, -0.007557688746601343, 0.05192120000720024, 0.020829135552048683, -0.018220944330096245, 0.0012032556114718318, 0.009650306776165962, 0.015685539692640305, 0.019603893160820007, 0.0015148738166317344, -0.004091220907866955, -0.004100318998098373, 0.0007180107641033828, -0.040833353996276855, -0.012222104705870152, -0.018948812037706375, 0.006544739939272404, 0.03037632815539837, 0.023461589589715004, 0.0010303871240466833, -0.013878002762794495, 0.006429494358599186, -0.0026961418334394693, -0.011943088844418526, 0.05138742923736572, -0.007606212981045246, -0.005104169249534607, -0.003163189860060811, 0.02875075861811638, 0.0018075370462611318, -0.04059073328971863, -0.0015489925863221288, 0.005865397397428751, -0.021738970652222633, 0.029794033616781235, 0.008940636180341244, 0.03610221669077873, 0.002265486866235733, -0.006690313573926687, -0.016328489407896996, 0.012907513417303562, 0.019045861437916756, 0.00027484571910463274, 0.0232553593814373, -0.012458661571145058, 0.009686700068414211, 0.00037416929262690246, 0.025451092049479485, 0.002462617587298155, -0.011184894479811192, 0.025936337187886238, -0.014812099747359753, -0.0074667055159807205, -0.0019303647568449378, 0.04042089730501175, 0.020780611783266068, 0.01111817266792059, -0.002357986755669117, -0.014545214362442493, 0.06793428212404251, -0.006010970566421747, -0.04233761504292488, -0.00107891159132123, -0.03872254118323326, 0.07807590067386627, -0.039838604629039764, 0.013780954293906689, -0.012616366147994995, -0.019761597737669945, 0.05517233908176422, 0.0025202403776347637, -0.02678551711142063, -0.005862364545464516, -0.032220259308815, 0.013987182639539242, -0.022454705089330673, -0.006056462414562702, -0.009607847779989243, 0.020101267844438553, 0.0026536828372627497, -0.01099079567939043, 0.02477174997329712, 0.013962920755147934, -0.029624199494719505, 0.0030054852832108736, 0.04284712299704552, 0.02765895612537861, 0.008667686022818089, -0.05109628289937973, 0.0026642975863069296, 0.009286373853683472, 0.003348189638927579, 0.0038455654866993427, 0.032365832477808, -0.02540256828069687, 0.0035180251579731703, 0.005504496395587921, -0.012355547398328781, 0.007563754450529814, -0.02143569104373455, 0.019895039498806, 0.003478599013760686, -0.03602943196892738, -0.0001471846189815551, 0.009971781633794308, -0.006362773012369871, 0.0033451567869633436, -0.008710145018994808, 0.0034998285118490458, 0.013138004578649998, 0.022297000512480736, -0.016219308599829674, 0.026979614049196243, -0.020926184952259064, 0.011457844637334347, -0.022745853289961815, 0.005301299970597029, -0.023983227089047432, 0.019155040383338928, 0.025475354865193367, 0.012604235671460629, -0.01541865523904562, 0.037315331399440765, -0.04782088100910187, 0.03683008626103401, 0.009832274168729782, -0.012161449529230595, -0.00250810943543911, 0.015891769900918007], [0.02419196255505085, 0.003153034020215273, -0.004126435145735741, -0.010654113255441189, -0.016258884221315384, 0.0032904883846640587, -0.045556291937828064, -0.007602066267281771, 0.042863309383392334, 0.017852231860160828, -0.0011010372545570135, -0.011894007213413715, 0.017908336594700813, 0.014811405912041664, -0.02327186055481434, 0.03902580961585045, 0.01732485555112362, -0.0015877378173172474, -0.009358115494251251, -0.011837903410196304, 0.014194264076650143, 0.03013896569609642, 0.022834250703454018, -0.021319447085261345, 0.00785453338176012, -0.03628794476389885, -0.0067324573174119, -0.02093794196844101, 0.023922665044665337, -0.026548322290182114, 0.0676836371421814, -0.012208188883960247, 0.007658170070499182, -0.004115214571356773, -0.006721236277371645, 0.0013899719342589378, 0.015136808156967163, 0.012825330719351768, 0.028186554089188576, -0.025134507566690445, -0.003918851260095835, -0.03476192057132721, 0.016326207667589188, -0.039564408361911774, -0.03745490312576294, 0.053904540836811066, 0.02475300058722496, 0.0033381767570972443, -0.037073396146297455, 0.01692090928554535, 0.0064856004901230335, 0.02861294336616993, 0.018716230988502502, 0.020758409053087234, 0.04263889417052269, 0.012858993373811245, -0.028298761695623398, 0.02213856391608715, 0.033819377422332764, -0.0011297904420644045, -0.03918290138244629, 0.0023984378203749657, -0.002684567356482148, 0.01237650029361248, 0.01732485555112362, 0.031799640506505966, -0.01855914108455181, 0.03958684951066971, -0.04544408619403839, 0.025403805077075958, 0.014093277044594288, -0.000983219244517386, 0.0063733928836882114, -0.0491020530462265, -0.02769283950328827, 0.0197260994464159, 0.031440574675798416, -0.02897200733423233, 0.038442328572273254, -0.01239894237369299, -0.06346462666988373, 0.016573065891861916, -0.017100440338253975, -0.013498576357960701, -0.017706362530589104, 0.059694454073905945, -0.04324481636285782, -0.045758266001939774, -0.038913603872060776, -0.02443881891667843, -0.058213312178850174, 0.0032792675774544477, 0.007046638522297144, 0.033258337527513504, -0.01916506141424179, 0.015114366076886654, 0.013790315948426723, -0.030789770185947418, -0.024865208193659782, 0.03958684951066971, -0.02394510619342327, 0.00600871816277504, -0.016292545944452286, 0.007035417947918177, 0.02230687439441681, -0.04553385078907013, -0.029959434643387794, 0.05417383834719658, 0.0024433208163827658, 0.04001323878765106, 0.045870475471019745, -0.03545760735869408, -0.00870170071721077, 0.07549328356981277, -0.05646287277340889, -0.04328969866037369, -0.02137555181980133, 0.021555082872509956, 0.009891102090477943, -0.0035625919699668884, 0.0210613701492548, -0.024663234129548073, -0.0005319342599250376, -0.0629260316491127, 0.0317547544836998, 0.005018485710024834, 0.005453290417790413, -0.010036971420049667, -0.05139109119772911, 0.017582934349775314, 0.019759761169552803, -0.043581441044807434, 0.03947464004158974, -0.03868918865919113, -0.018794776871800423, 0.005663679447025061, 0.024169521406292915, -0.007489858660846949, 0.0012707512360066175, -0.015181690454483032, 0.0442098006606102, -0.03074488788843155, 0.04869810491800308, 0.03177719935774803, -0.033011481165885925, 0.0003578370960894972, 0.015305119566619396, -0.0038459161296486855, -0.007955520413815975, -0.011046839877963066, -0.00805650744587183, 0.013161953538656235, -0.03862186148762703, -0.0037645655684173107, 0.007046638522297144, 0.015507092699408531, 0.011372242122888565, 0.07028685510158539, 0.03368472680449486, -0.020679865032434464, 0.008595103397965431, -0.006839054170995951, -0.01748194731771946, -0.02439393661916256, -0.0038122539408504963, -0.010575568303465843, -0.012039877474308014, -0.005761861335486174, -0.020590098574757576, -0.012163305655121803, -0.020343242213129997, -0.008544609881937504, -0.012589694932103157, -0.044748399406671524, -0.023563599213957787, -0.023810457438230515, 0.03830768167972565, 0.026301465928554535, -0.03523319214582443, 0.018301062285900116, 0.0339091420173645, 0.04757602885365486, -0.0573156513273716, -0.03256265074014664, -0.010093075223267078, 0.05534079670906067, -0.020713526755571365, 0.008174325339496136, -0.021285785362124443, -0.03220358490943909, 0.0035177089739590883, -0.0004817914741579443, -0.027558190748095512, 0.06817734986543655, -0.015361223369836807, -0.029353512451052666, -0.007338378112763166, 0.01683114282786846, 0.03269730135798454, -0.040731366723775864, 0.011860345490276814, -0.04609489068388939, 0.045623619109392166, 0.03886871784925461, -0.04425468668341637, 0.014239147305488586, 0.02789481356739998, -0.00878024660050869, 0.0280070211738348, -0.01949046365916729, 0.008572662249207497, 0.006766119506210089, -0.008006013929843903, 0.010828034952282906, 0.00823603942990303, 0.008606323972344398, 0.025044741109013557, -0.051211558282375336, 0.02769283950328827, -0.01913139969110489, -0.044389333575963974, -0.026705414056777954, -0.013150732964277267, -0.01532756071537733, -0.03797105699777603, 0.0018121530301868916, -0.022811809554696083, -0.039205342531204224, 0.0138239786028862, -0.024887649342417717, -0.07863509654998779, 0.009734011255204678, 0.00720372935757041, -0.035502489656209946, 0.02165606990456581, -0.004151681903749704, 0.016539402306079865, -0.04479328170418739, 0.008438012562692165, 0.011125385761260986, 0.00892050564289093, 0.018895763903856277, -0.010194062255322933, -0.0204105656594038, 0.03233823552727699, -0.03368472680449486, 0.01615789718925953, -0.028231436386704445, 0.04517478868365288, -0.0037785915192216635, 0.009801335632801056, -0.03893604502081871, 0.02612193301320076, 0.0019594256300479174, -0.003453189507126808, 0.02327186055481434, -0.00841557141393423, -0.04227983206510544, 0.019064074382185936, -0.0013626213185489178, -0.06678597629070282, 0.024820325896143913, 0.040080562233924866, -0.0006851677899248898, -0.08132807910442352, -0.05610381066799164, 0.00917858351022005, -0.06597808003425598, -0.0061826398596167564, 0.0056103807874023914, -0.05403918772935867, 0.04654372110962868, 0.039766378700733185, -0.02942083775997162, -0.040170326828956604, -0.017021896317601204, 0.00926273874938488, -0.05022412911057472, -0.022161005064845085, 0.029510604217648506, -0.03110395185649395, -0.023137211799621582, -0.0034391635563224554, -0.039160460233688354, 0.014070835895836353, 0.015697846189141273, 0.010452140122652054, 0.019546566531062126, 0.013375148177146912, -0.004235837608575821, 0.045915357768535614, -0.027872372418642044, 0.0013598160585388541, -0.009346894919872284, 0.019714878872036934, -0.04400782659649849, -0.02784993126988411, 0.015899820253252983, -0.0040366691537201405, -0.010480191558599472, -0.018503036350011826, 0.040282536298036575, -0.001761659630574286, -0.06454182416200638, 0.010261386632919312, -0.0016003611963242292, -0.015518313273787498, 0.025403805077075958, -0.014126939699053764, -0.006451938301324844, 0.0013219460379332304, 0.002303061308339238, -0.012477487325668335, -0.03929510712623596, -0.05031389743089676, 0.02921886369585991, -0.027109360322356224, -0.013274161145091057, 0.014912392944097519, 0.007624507881700993, 0.07809650152921677, -0.02789481356739998, 0.04676813632249832, -0.038442328572273254, 0.016214000061154366, -0.018424490466713905, 0.0039581237360835075, 0.0449952557682991, -0.02383289858698845, -0.021229680627584457, -0.08137296885251999, -0.015125586651265621, 0.025336479768157005, -0.02306988649070263, -0.0031193718314170837, -0.024281729012727737, -0.017246311530470848, -0.003571007400751114, -0.043132610619068146, 0.01257847435772419, 0.031934287399053574, -0.0017742830095812678, 0.03756711259484291, 0.003977760206907988, -0.008095779456198215, -0.00499323895201087, -0.021970251575112343, 0.026144376024603844, -0.017425842583179474, 0.019905632361769676, 0.0011269852984696627, 0.01163593027740717, -0.040686484426259995, -0.04243692010641098, -0.024573467671871185, -0.028321202844381332, 0.037230487912893295, -0.015551975928246975, -0.028500735759735107, 0.04990994930267334, 0.02728889323771, 0.010755100287497044, 0.00571697810664773, 0.05372500792145729, 0.028029464185237885, -0.002314282115548849, -0.02434905245900154, -0.027176685631275177, -0.027625516057014465, 0.0008436610223725438, 0.019232386723160744, 0.014115718193352222, -0.002575164893642068, -0.001986074959859252, 0.01832350343465805, -0.004143266472965479, 0.018862100318074226, -0.02322697639465332, 0.031732313334941864, -0.03379693627357483, 0.013666887767612934, -0.021869264543056488, 0.04479328170418739, 0.005049342755228281, -0.03572690486907959, 0.020825734362006187, -0.04234715551137924, -0.034739479422569275, -0.008404350839555264, 0.04227983206510544, 0.01925482787191868, 0.014598211273550987, -0.01611301489174366, -0.012612136080861092, -0.021611187607049942, 0.03359496220946312, 0.022329315543174744, 0.05363524332642555, 0.02872515097260475, -0.02045544981956482, -0.02145409770309925, -0.02029835805296898, 0.007484248373657465, 0.015024600550532341, 0.03781396895647049, -0.009969647042453289, 0.010143568739295006, -0.03435797244310379, -0.0023647756315767765, -0.061938606202602386, 0.03408867493271828, -0.03049803152680397, 0.037589553743600845, 0.023159652948379517, 0.010272607207298279, -0.012286733835935593, 0.01941191777586937, 0.029690135270357132, -0.015170469880104065, -0.044344451278448105, -0.02556089498102665, -0.017493167892098427, -0.05323129519820213, -0.0131395123898983, -0.02125212363898754, 0.004962381906807423, -0.017852231860160828, -0.05381477251648903, 0.012533591128885746, -0.05718100443482399, -0.04192076623439789, 0.0276479572057724, 0.008987830020487309, -0.029869668185710907, -0.02556089498102665, -0.01877233386039734, -0.017941998317837715, -0.038554538041353226, -0.012724343687295914, -0.03065512143075466, 0.021442875266075134, -0.029443278908729553, 0.07567282021045685, 0.015967143699526787, -0.014676756225526333, -0.024304170161485672, -0.0766153633594513, 0.005357913672924042, -0.0037842020392417908, 0.011748137883841991, 0.009335674345493317, -0.0022427497897297144, -0.017538050189614296, -0.02173461578786373, 0.0009201024658977985, -0.024618351832032204, 0.040686484426259995, -0.03236067667603493, 0.050807610154151917, -0.013218057341873646, 0.03810570761561394, 0.016045689582824707, 0.060816530138254166, 0.016000807285308838, 0.004505136050283909, -0.002973501803353429, 0.02238542027771473, 0.0028528787661343813, 0.009038323536515236, -0.06790804862976074, 0.02668297104537487, -0.02226199209690094, -0.016337430104613304, -0.009784504771232605, 0.0807894840836525, -0.016090571880340576, 0.024573467671871185, 0.00154706253670156, -0.034739479422569275, -0.031799640506505966, -0.0058404067531228065, 0.0040506948716938496, -0.06512530148029327, -0.04757602885365486, 0.0960497185587883, 0.04685790091753006, 0.08011624217033386, 0.017504388466477394, -0.053141526877880096, -0.03029605746269226, -0.03512098640203476, -0.014957275241613388, -0.02257617376744747, -0.009273959323763847, 0.006384613458067179, -0.014822626486420631, -0.02419196255505085, -0.023608483374118805, 0.025987284258008003, -0.007372040767222643, 0.02892712503671646, -0.027984580025076866, 0.003952513448894024, 0.009728400968015194, 0.016943350434303284, -0.02020859159529209, 0.0061601982451975346, -0.01779612898826599, -0.02025347575545311, -0.06929942220449448, 0.02013004757463932, -0.03969905525445938, -0.03761199489235878, -0.03597376123070717, -0.020242255181074142, -0.023563599213957787, -0.001310023944824934, 0.03424576669931412, -0.03709583729505539, 0.0032792675774544477, 0.004962381906807423, -0.013554680161178112, 0.01096829492598772, -0.030969303101301193, -0.001349997939541936, 0.04156170040369034, 0.020848175510764122, -0.0934465080499649, -0.019591450691223145, -0.02499985694885254, -0.0016003611963242292, -0.009257128462195396, -0.08909285068511963, -0.012567253783345222, 0.006917599588632584, -0.01763903722167015, -0.021330667659640312, 0.04717208445072174, -0.01720142737030983, -0.021409213542938232, 0.032248470932245255, -0.017582934349775314, 0.008712921291589737, 0.0009467517957091331, -4.575966886477545e-05, 0.0010750892106443644, 0.00492310943081975, -0.009717179462313652, -0.011579826474189758, 0.001851425739005208, 0.017425842583179474, -0.00815749354660511, -0.0030548523645848036, -0.046588603407144547, -0.018817218020558357, 0.021184798330068588, 0.02302500419318676, -0.028590502217411995, -0.0011711670085787773, 0.0035653971135616302, 0.02302500419318676, 0.018828438594937325, -0.008746583946049213, -0.01916506141424179, -0.002499424619600177, 0.055116381496191025, -0.0023311132099479437, 0.0024741780944168568, 0.002269399119541049, 0.029263747856020927, -0.020466670393943787, -0.01595592312514782, 0.044142477214336395, -0.021229680627584457, 0.004294746555387974, 0.03653480112552643, -0.021196018904447556, -0.024775441735982895, 0.033325664699077606, 0.03137325122952461, 0.026795178651809692, 0.020960383117198944, -0.009240297600626945, -0.0052541219629347324, 0.00386274722404778, 0.019501684233546257, -0.030475588515400887, -0.03772420063614845, -0.017863452434539795, -0.05592427775263786, 0.0012034267419949174, 0.0011557384859770536, 0.003873968031257391, 0.005329861771315336, -0.018873320892453194, 0.04946111887693405, 0.01611301489174366, 0.024887649342417717, -0.05574474483728409, 0.014295251108705997, -0.009526426903903484, -0.019299710169434547, -0.013408810831606388, 0.012668239884078503, -0.022374199703335762, -0.012095981277525425, 0.00793868862092495, -0.014856289140880108, 0.011041229590773582, 0.012039877474308014, -0.0030015537049621344, 0.0044125644490122795, 0.004098383244127035, -0.04021520912647247, -0.010323100723326206, -0.007944299839437008, -0.04789021238684654, 0.002249762648716569, -0.04239203780889511, -0.0021754251793026924, -0.0016634779749438167, 0.01877233386039734, -0.006474379450082779, 0.01667405292391777, -0.023451391607522964, 0.011327358894050121, -0.00027788919396698475, -0.03334810584783554, 0.029510604217648506, 0.00024668144760653377, -0.04685790091753006, 0.0001520939258625731, -0.02443881891667843, -0.01687602512538433, -0.03680409863591194, 0.011439566500484943, -0.009762062691152096, -0.015563196502625942, 0.015024600550532341, 0.008914895355701447, 0.012185747735202312, -0.01692090928554535, 0.040282536298036575, -0.04443421587347984, 0.006474379450082779, 0.013173174113035202, 0.01547343097627163, -0.016898468136787415, 0.015978364273905754, 0.008438012562692165, 0.012320396490395069, 0.046588603407144547, 0.008123831823468208, -0.0016690883785486221, -0.015888599678874016, 0.020242255181074142, -0.013229277916252613, -0.003747734474018216, 0.0030127745121717453, 0.020354462787508965, 0.01780734956264496, -0.02820899523794651, 0.022935237735509872, 0.017751244828104973, -0.009268349036574364, -0.04919182136654854, 0.025179389864206314, -0.020320799201726913, 0.014227925799787045, 0.006423886399716139, -0.0098462188616395, -0.0018724646652117372, 0.0035738127771764994, -0.026211699470877647, 0.008735363371670246, -0.021768277511000633, -0.00856144167482853, 0.03512098640203476, -0.003298904048278928, -0.011568605899810791, 0.012769226916134357, -0.03480680286884308, -0.019512904807925224, 0.045309435576200485, 0.01656184531748295, 0.007708663586527109, -0.012668239884078503, -0.03170987218618393, -0.009509596042335033, 0.0276479572057724, 0.031642548739910126, 0.0004530382575467229, 0.001281270757317543, -0.0066931843757629395, -0.03774664178490639, 0.045354317873716354, 0.03460482880473137, 0.023339184001088142, -0.0005680510657839477, -0.01692090928554535, -0.058213312178850174, -0.016730155795812607, -0.005700147245079279, -0.04654372110962868, -0.037679318338632584, -0.018390828743577003, 0.023922665044665337, 0.0012111410032957792, 0.03929510712623596, 0.013577122241258621, 0.003509293310344219, -0.013173174113035202, -0.015181690454483032, -0.021027708426117897, -0.0037196825724095106, -0.02749086730182171, 0.02206001803278923, 0.023922665044665337, -0.009402998723089695, -0.007012976333498955, -0.0190079715102911, -0.0031586445402354, -0.03114883415400982, 0.015720287337899208, -0.0035990593023598194, -0.004900667816400528, -0.019883189350366592, 0.006328509654849768, -0.02238542027771473, -0.005369134712964296, 0.00821920856833458, -0.010738269425928593, 0.014845067635178566, 0.0008268298697657883, -0.03085709549486637, 0.04609489068388939, -0.02069108560681343, -0.018345946446061134, 0.02434905245900154, -0.007534741424024105, 0.01257847435772419, -0.04234715551137924, -0.004614538513123989, -0.07212705910205841, 0.009762062691152096, 0.010373594239354134, -0.027019593864679337, 0.04120263829827309, 0.007826481014490128, 0.012993642129004002, -0.04425468668341637, 0.00580674409866333, 0.009470323100686073, 0.0025218662340193987, 0.03696119040250778, -0.0249100923538208, 0.019434358924627304, 0.039003368467092514, 0.002823424292728305, -0.015484651550650597, 0.0008611934608779848, -0.009307621978223324, 0.00022827237262390554, 0.021510200574994087, -0.013633226044476032, -0.000213019156944938, -0.02643611468374729, -0.015720287337899208, -0.008628766052424908, -0.006653911899775267, -0.05224386602640152, -0.03752222657203674, -0.02342895045876503, 0.02419196255505085, -0.028994448482990265, 0.0058572376146912575, 0.0032540210522711277, 0.014788963831961155, 0.011226371861994267, -0.027625516057014465, -0.0034055011346936226, 0.014934834092855453, 0.0027140218298882246, 0.0511217899620533, 0.0009825179586187005, 0.006289237178862095, -0.025022299960255623, 0.050897374749183655, 0.02769283950328827, -0.01784101128578186, 0.00857827253639698, -0.006867106072604656, 0.044232241809368134, -0.006390223745256662, -0.038352563977241516, -0.011024398729205132, 0.019468022510409355, -0.042616453021764755, -0.014788963831961155, 0.006681963801383972, -0.030767329037189484, -0.008976609446108341, -0.009161751717329025, -0.01255603227764368, 0.061265360563993454, 0.030049201101064682, -0.03559225797653198, -0.004491109866648912, 0.024483703076839447, 0.0026607231702655554, -0.0006970898248255253, 0.008129442110657692, 0.02499985694885254, 0.051256440579891205, -0.02170095406472683, 0.007428144570440054, -0.010261386632919312, 0.012488707900047302, 0.010900970548391342, -0.002800982678309083, -0.0009229076677002013, -0.007753546349704266, 0.010884138755500317, -0.015776392072439194, 0.023047445341944695, 0.005147524643689394, 0.0014699198072776198, -0.000300681364024058, -0.030991744250059128, -0.021308226510882378, 0.0013058161130174994, -0.0057843029499053955, 0.005049342755228281, 0.010362373664975166, -0.009907932952046394, 0.024483703076839447, 0.004291941411793232, 0.0017644647741690278, 0.030228732153773308, 0.04344679042696953, 0.024528585374355316, -0.011736917309463024, -0.04333458095788956, 0.012971200980246067, 0.014429899863898754, 0.0463641881942749, -0.017863452434539795, 0.012477487325668335, -0.058123547583818436, 0.009621803648769855, -0.0027504891622811556, -0.005540251266211271, 0.0074561964720487595, 0.013981069438159466, 0.05605892837047577, -0.03691630810499191, 0.04802485927939415, -0.0015568807721138, 0.008370688185095787, -0.028859799727797508, -0.023563599213957787, 0.024483703076839447, -0.010738269425928593, 0.00016515559400431812, 0.01187156606465578, -0.027558190748095512, 0.04030497744679451, -0.019782204180955887, 0.014788963831961155, -0.009116869419813156, 0.036310385912656784, -0.0037224877160042524, 0.017257532104849815, -0.008583882823586464, -0.03942975774407387, 0.002678956836462021, 0.012432604096829891, 0.019198723137378693, 0.010429698042571545, -0.004137656185775995, 0.006625859998166561, 0.02165606990456581, 0.061579540371894836, 0.020803293213248253, 0.011024398729205132, -0.0023507496807724237, -0.040170326828956604, 0.0193670354783535, 0.033325664699077606, 0.015978364273905754, 0.025493571534752846, -0.0029426447581499815, 0.047082316130399704, 0.018312282860279083, 0.02258739434182644, -0.00046531096450053155, 0.010272607207298279, 0.03655724227428436, 0.0027238400653004646, 0.004019837826490402, -0.01720142737030983, -0.024528585374355316, -0.07244124263525009, 0.0023114769719541073, -0.027760164812207222, 0.009414219297468662, 0.006148977670818567, 0.007181287743151188, 0.015080704353749752, -0.004505136050283909, 0.0009663880919106305, 0.04176367446780205, 0.05520614981651306, -0.027154244482517242, 0.05058319494128227, 0.020085163414478302, -0.009548868052661419, 0.0006399340927600861, -0.023092327639460564, 0.00956008955836296, 0.03029605746269226, -0.009677907451987267, -0.011478839442133904, -0.005125083029270172, 0.013386368751525879, -0.01715654507279396, -0.019266048446297646, 0.03810570761561394, -9.90582921076566e-05, -0.026458555832505226, -0.0573156513273716, 0.058886557817459106, -0.0006490509258583188, 0.036467477679252625, -0.001316335634328425, -0.009554478339850903, -0.036826539784669876, -0.00503251189365983, -0.0021628018002957106, -0.032293353229761124, -0.0034756308887153864, 0.0012868811609223485, -0.005307420156896114, -0.016135456040501595, 0.027984580025076866, 0.03395402431488037, -0.014284029603004456, 0.007495468948036432, 0.0023465417325496674, -0.028298761695623398, 0.03669189289212227, -0.01925482787191868, 0.011804241687059402, 0.0053102257661521435, 0.030251173302531242, 0.013902523554861546, 0.052019450813531876, 0.02708691917359829, 0.002019737148657441, 0.02358604222536087, 0.047800444066524506, 0.022127343341708183, -0.000597505597397685, -0.009790115058422089, 0.03074488788843155, 0.018536698073148727, 0.04066403955221176, -0.023967547342181206, 0.008297753520309925, -0.013577122241258621, -0.015866156667470932, -0.012769226916134357, 0.03029605746269226, 0.02495497465133667, -0.01980464532971382, 0.012836551293730736, -0.0105306850746274, 0.002617242746055126, -0.0026691388338804245, 0.018839659169316292, 0.019142620265483856, 0.020062722265720367, 0.009049544110894203, -0.017268752679228783, 0.0055935499258339405, 0.02719912678003311, -0.042975518852472305, -0.03588399663567543, 0.05103202536702156, -0.018581582233309746, 0.0210950318723917, 0.014609431847929955, -0.026211699470877647, 0.043222375214099884, 0.0012441020226106048, 0.03191184625029564, 0.017100440338253975, 0.050089482218027115, 0.009672297164797783, 0.01655062474310398, 0.04118019714951515, 0.006979313679039478, -0.0065417042933404446, -0.011332969181239605, -0.004847369156777859, 0.0022175030317157507, 0.010979515500366688, 0.013408810831606388, 0.03648991882801056, -0.011860345490276814, 0.019310930743813515, -0.009515206329524517, -0.008769025094807148, 0.024102196097373962, -0.02201513573527336, -0.013195616193115711, 0.03505365923047066, -0.019950514659285545, -0.008258480578660965, -0.0003857137053273618, -0.004493915010243654, 0.05260293185710907, 0.027311334386467934, 0.035749346017837524, 0.010194062255322933, 0.04512990266084671, -0.002235736697912216, -0.020197371020913124, 0.007057859096676111, 0.017167765647172928, 0.029712578281760216, -0.03826279938220978, -0.009189804084599018, 0.019355814903974533, -0.00037835005787201226, 0.03532295674085617, 0.0012896863045170903, -0.026952270418405533, 0.014340133406221867, 0.04901228845119476, 0.011894007213413715, -0.008353857323527336, -0.012410162948071957, 0.021555082872509956, 0.009565699845552444, 0.028792474418878555, 0.006906379014253616, 0.025605779141187668, -0.018435711041092873, 0.019916852936148643, 0.0019103346858173609, 0.042257390916347504, -0.03267486020922661, 0.052782464772462845, 0.01087291818112135, 0.019277269020676613, 0.01494605466723442, -0.017246311530470848, 0.026907386258244514, -0.023294301703572273, -0.0008373493328690529, -0.010794373229146004, 0.032450444996356964, 0.001965035917237401, 0.006788561120629311, 0.011591047048568726, -0.027984580025076866, -0.02378801442682743, 0.020118827000260353, 0.03166498988866806, -0.005307420156896114, -0.043985385447740555, 0.03705095499753952, 0.02398998849093914, -0.010654113255441189, -0.015249015763401985, -0.013117070309817791, -0.04964065179228783, -0.04311016574501991, 0.002663528313860297, 0.0011760761262848973, -0.007961130701005459, -0.02684006281197071, -0.023406509310007095, -0.013476135209202766, -0.01219696830958128, -0.006580976769328117, 0.012342838570475578, 0.000903271313291043, 0.020152488723397255, -0.011428345926105976, -0.014183043502271175, 0.020724747329950333, -0.008303363807499409, 0.021611187607049942, -0.018020544201135635, 0.012095981277525425, -0.01032871101051569, 0.008050896227359772, -0.0038459161296486855, 0.011041229590773582, -0.003453189507126808, 0.020242255181074142, 0.004059110768139362, 0.004322798456996679, -0.012331617064774036, 0.015260236337780952, -0.02443881891667843, -0.02342895045876503, -0.022273212671279907, 0.021790720522403717, 0.00377298123203218, -0.010093075223267078, -0.03556981682777405, -0.025426246225833893, 0.01880599744617939, 0.013498576357960701, 0.010564347729086876, -0.01964755356311798, -0.03476192057132721, -0.019019192084670067, -0.011793021112680435, 0.008533389307558537, 0.03752222657203674, 0.0004926615511067212, -0.004687473177909851, -0.0017350103007629514, -0.0016256078379228711, 0.025067182257771492, -0.04252668842673302, -0.027513308450579643, -0.020960383117198944, -0.034425295889377594, 0.015002158470451832, 0.017549270763993263, -0.011658371426165104, 0.028500735759735107, -0.030924418941140175, -0.036467477679252625, -0.01087291818112135, 0.032966598868370056, 0.030632680281996727, 0.01545098889619112, -0.0004986225976608694, -0.03110395185649395, -0.0019916852470487356, -0.03480680286884308, 0.05341082811355591, 0.010418477468192577, -0.01740340143442154, 0.023698249831795692, -0.0015091925160959363, -0.013936186209321022, -0.002267996547743678, 0.003478436265140772, -0.007276664022356272, 0.048114627599716187, 0.0038206693716347218, 0.03476192057132721, 0.01207354012876749, -0.023002561181783676, -0.00018724646361079067, -0.03969905525445938, 0.02708691917359829, 0.018660126253962517, 0.00018742178508546203, 0.005296199582517147, 0.021757056936621666, -0.033325664699077606, 0.019759761169552803, -0.019176281988620758, 0.010945852845907211, -0.0012974005658179522, 0.017908336594700813, 0.001040725619532168, -0.01611301489174366, 0.005963834933936596, -0.00827531237155199, -0.01201743632555008, -0.013543459586799145, -0.010070634074509144, 0.034335531294345856, -0.023047445341944695, -0.051974568516016006, -0.014474783092737198, 0.014788963831961155, 0.019546566531062126, -0.01125442422926426, -0.016101792454719543, -0.02101648785173893, -0.0036747995764017105, 0.000981816672720015, 0.030565354973077774, -0.012006214819848537, -0.006418275646865368, 0.030520472675561905, 0.004255474079400301, -0.009705958887934685, 0.03500877693295479, -0.006087263114750385, -0.00913931056857109, 0.010861697606742382, 0.020141268149018288, 0.015338781289756298, -0.01852547749876976, 0.004555629566311836, -0.007933078333735466, 0.0066931843757629395, -0.006799781695008278, -0.0012013227678835392, -0.0021964642219245434, 0.029510604217648506, -0.011849124915897846, 0.02029835805296898, 0.008499727584421635, 0.009868660010397434, -0.03545760735869408, -0.0030660731717944145, -0.0005480640684254467, -0.005492562893778086, -0.014183043502271175, 0.04344679042696953, 0.007080300711095333, -0.02434905245900154, -0.00025281778653152287, 0.0036719944328069687, 0.005186797119677067, 5.088790931040421e-05, -0.04685790091753006, -0.0007868559332564473, 0.006036770064383745, -0.02495497465133667, -0.019176281988620758, 0.021229680627584457, -0.007069080136716366, 0.02571798674762249, 0.022811809554696083, 0.017190206795930862, 0.010087464936077595, -0.032046496868133545, -0.009722789749503136, 0.008510948158800602, 0.02149898000061512, -0.03267486020922661, -0.017706362530589104, 0.008651207201182842, -0.0008906479924917221, 0.00895977858453989, -0.012129643931984901, -0.05439825356006622, 0.01707799918949604, 0.01732485555112362, 0.001956620253622532, -0.002303061308339238, -0.0525580495595932, 0.0210613701492548, 0.018985528498888016, -0.03157522529363632, 0.025134507566690445, 0.030812211334705353, -0.009874270297586918, -0.0008618947467766702, -0.021846823394298553, 0.04324481636285782, -0.010418477468192577, -0.01356590073555708, 0.026705414056777954, 0.02053399384021759, 0.006356561556458473, 0.05215410143136978, 0.015114366076886654, 0.007029807195067406, 0.0010484399972483516, 0.010266996920108795, 0.0221049003303051, 0.012365279719233513, -0.008095779456198215, 0.01872745156288147, 0.018222518265247345, -0.006165808532387018, 0.033572521060705185, 0.0359288789331913, -0.02989210933446884, -0.010906580835580826, 0.014059614390134811, 0.03402135148644447, -0.015563196502625942, -0.005153134930878878, 0.001612984575331211, -0.01897430792450905, -0.0014025951968505979, 0.02648099884390831, -0.007388871628791094, -0.030408265069127083, 0.012264292687177658, -0.007714273873716593, 0.018817218020558357, -0.007529131136834621, -0.0006529080565087497, -0.017773685976862907, -0.0038907991256564856, 0.0037337085232138634, 0.01735851913690567, -0.027064478024840355, -0.011299307458102703, 0.045466527342796326, -0.007018586620688438, -0.03137325122952461, 0.0029875277541577816, 0.012948758900165558, 0.011905228719115257, -0.00033013586653396487, -0.004252668935805559, 0.014553328044712543, 0.005363524425774813, -0.023204535245895386, 0.003571007400751114, -0.0024643598590046167, -0.021532641723752022, 0.008129442110657692, -0.0010126737179234624, -0.002698593307286501, -0.019669994711875916, 0.026750296354293823, 0.027558190748095512, -0.03882383555173874, -0.027917254716157913, 0.003105345880612731, 0.020231034606695175, 0.006524872966110706, -0.02282303012907505, -0.03637770935893059, -0.003795422613620758, 0.02193658985197544, -0.01545098889619112, 0.02439393661916256, 0.017852231860160828, -0.022654717788100243, 0.0027476840186864138, 0.0023311132099479437, -0.02825387939810753, 0.035749346017837524, -0.00045619410229846835, -0.034133557230234146, 0.0006458950811065733, 0.03485168516635895, -0.005711367819458246, -0.0280070211738348, -0.02973501943051815, 0.01897430792450905, -0.02238542027771473, -0.03480680286884308, -0.007018586620688438, 0.0003071683458983898, -0.020029060542583466, -0.027513308450579643, 0.025448687374591827, 0.00452196691185236, 0.0009018687414936721, -0.007226170506328344, -0.007675000932067633, 0.04232471436262131, -0.015821274369955063, 0.03139569237828255, -0.006092873867601156, -0.013610783964395523, -0.039160460233688354, -0.06140000745654106, 0.007736715488135815, 0.08976609259843826, 0.030722446739673615, -0.019355814903974533, 0.007063469849526882, 0.020713526755571365, 0.02165606990456581, 0.01880599744617939, 0.02760307490825653, 0.00890367478132248, -0.015035821124911308, -0.009980867616832256, 0.021566305309534073, 0.0022862302139401436, -0.026862503960728645, 0.03404379263520241, -0.009391778148710728, -0.01149006001651287, -0.00392726669088006, 0.024663234129548073, -0.020668642595410347, -0.0004625057918019593, -0.021353110671043396, 0.002570957178249955, 0.0047576031647622585, 0.007091521751135588, -0.042212504893541336, 0.006945651490241289, -0.020960383117198944, -0.006328509654849768, -0.024663234129548073, -0.02137555181980133, -0.03058779612183571, 0.03696119040250778, -0.028119228780269623, -0.026907386258244514, 0.01651696115732193, 0.011860345490276814, -0.03669189289212227, 0.012062318623065948, -0.015540755353868008, 0.04126996174454689, 0.03734269738197327, 0.014575770124793053, 0.015922261402010918, -0.014396237209439278, -0.003963734023272991, -0.010126737877726555, -0.008673649281263351, 0.009874270297586918, 0.012410162948071957, 0.009391778148710728, -0.020758409053087234, -0.007214949931949377, 0.004300356842577457, -0.009060765616595745, -0.013274161145091057, 0.01973732002079487, 0.019064074382185936, 0.014317692257463932, 0.02069108560681343, -0.03826279938220978, 0.019512904807925224, 0.0017139713745564222, -0.026907386258244514, -0.0421900637447834, 0.009756452403962612, 0.02769283950328827, 0.0012910888763144612, 0.00154706253670156, 0.006900768727064133, 0.004334019497036934, 0.0062948474660515785, 0.005113862454891205, 0.02081451378762722, 0.006928820628672838, 0.00439853873103857, -0.007955520413815975, -0.022172225639224052, -0.0011886995052918792, -0.0005736614693887532, 0.0070017552934587, 0.023092327639460564, 0.00154706253670156, -0.014788963831961155, 0.0035289295483380556, 0.010738269425928593, 0.022127343341708183, -0.018794776871800423, -0.013105849735438824, 0.01293753832578659, -0.007338378112763166, -0.04178611561655998, 0.01751560904085636, 0.029690135270357132, -0.0033746440894901752, -0.013981069438159466, 0.0054224333725869656, 0.03233823552727699, -0.001972049009054899, 0.007282274309545755, -0.01545098889619112, -0.03049803152680397, 0.07549328356981277, -0.03162010759115219, 0.036018647253513336, 0.01844693347811699, 0.0011445176787674427, 0.010777541436254978, 0.03983370587229729, -0.007287885062396526, 0.0017434258479624987, -0.023810457438230515, -0.013083408586680889, 0.00452196691185236, -0.02250884845852852, -0.007360819727182388, 0.009913543239235878, -0.011383462697267532, -0.02045544981956482, 0.005980666261166334, -0.0014783353544771671, -0.019501684233546257, -0.010553126223385334, 0.011714475229382515, 0.029802342876791954, 0.00435926578938961, -0.02769283950328827, 0.011428345926105976, 0.03363984450697899, 0.010659723542630672, 0.004392928443849087, -0.0034980725031346083, 0.015742728486657143, 0.01225307211279869, -0.005296199582517147, -0.01820007525384426, 0.011288086883723736, -0.030161408707499504, 0.028882240876555443, -0.005590744782239199, 0.011220761574804783, -0.0006658820784650743, -0.008123831823468208, -0.02816411294043064, 0.031238600611686707, -0.029353512451052666, 0.0017756855813786387, 0.020792072638869286, -0.01352101843804121, -0.0007791416719555855, 0.007551572751253843, -0.026413673534989357, 0.02856805920600891, -0.02045544981956482, -0.001151530654169619, -0.014777743257582188, -0.019176281988620758, 0.06849153339862823, 0.02271082252264023, -0.021117473021149635, -0.030565354973077774, -0.042414478957653046, 0.0029622812289744616, -0.018334725871682167, -0.014396237209439278, -0.005986276548355818, 0.04797997698187828], [0.018848860636353493, -0.033389411866664886, 0.021485457196831703, 0.013642985373735428, -0.032963067293167114, 0.03260404244065285, -0.025199132040143013, -0.006815882865339518, 0.018826421350240707, -0.017569830641150475, -0.004364409018307924, 0.009228087961673737, 0.04950070008635521, 0.03141476958990097, 0.025782549753785133, -0.01371030230075121, 0.03648601099848747, 0.06915736943483353, -0.02389766275882721, 0.010697850957512856, 0.024503519758582115, 0.035790394991636276, 0.05376413092017174, -0.0077134473249316216, -0.0010006445227190852, -0.012711761519312859, 0.03697967156767845, -0.03621673956513405, 0.051969002932310104, -0.020643990486860275, 0.07234372198581696, -0.028475243598222733, 0.007539544254541397, -0.021283505484461784, 0.018388858065009117, 0.012083466164767742, -0.006871980614960194, -0.012689322233200073, -0.0029675737023353577, 0.02555815689265728, -0.0396723635494709, -0.05623243376612663, -0.002377144293859601, -0.0071636890061199665, -0.014271280728280544, 0.019869841635227203, 0.037854794412851334, -0.02335912361741066, -0.0022102533839643, 0.004793556872755289, 0.044047992676496506, -0.007573203183710575, 0.03922358155250549, 0.008835403248667717, -0.05739926919341087, 0.010703460313379765, -0.0014641525922343135, 0.026119135320186615, 0.06484905630350113, -0.03204306215047836, -0.0461348295211792, -0.019409839063882828, 0.030943546444177628, 0.011275657452642918, -0.021025454625487328, -0.015213723294436932, 0.010568825528025627, 0.024009859189391136, -0.01896105706691742, -0.012767859734594822, 0.038191381841897964, -0.0439806766808033, 0.03253672271966934, 0.002134521258994937, -0.0282957311719656, -0.012790298089385033, -0.013889815658330917, -0.027285970747470856, -0.002590315882116556, 0.021765947341918945, -0.024593275040388107, -0.0024248273111879826, 0.0049113621935248375, -0.04012114554643631, -0.04160212725400925, 0.056995365768671036, -0.0692022442817688, 0.009413210675120354, -0.047615811228752136, 0.03513966128230095, -0.019522033631801605, -0.010507117956876755, 0.021081553772091866, 0.02282058447599411, -0.0037809917703270912, 0.0025356204714626074, 0.010254678316414356, -0.04945582151412964, -0.004117578733712435, 0.006030513439327478, 0.0056658778339624405, -0.005727585405111313, -0.026029380038380623, -0.002642206382006407, 0.018243005499243736, -0.05771341547369957, -0.011017607524991035, -0.004880508407950401, -0.07840228825807571, 0.025984501466155052, 0.06291929632425308, -0.02510937489569187, 0.026298649609088898, 0.02551328018307686, 0.01178053766489029, -0.010911022312939167, -0.00252159615047276, 0.0018049466889351606, 0.01607763022184372, -0.01631323993206024, 0.018534712493419647, 0.005539657548069954, 0.021721068769693375, -0.06161782518029213, 0.03186355158686638, -0.04272408410906792, -0.02374058961868286, -0.02203521504998207, 0.008790525607764721, -0.0533602274954319, 0.007724666967988014, -0.04608995094895363, 0.046493858098983765, -0.02409961447119713, 0.05403340235352516, 0.02497474104166031, -0.03177379444241524, -0.042387496680021286, 0.0054779499769210815, -0.009110283106565475, 0.0025959257036447525, -0.01690787635743618, 0.01788397878408432, 0.01890495792031288, -0.022439120337367058, -0.009458089247345924, 0.038976751267910004, 0.04274652525782585, -0.002987207844853401, -0.009026136249303818, -0.015707384794950485, 0.00039303521043621004, -0.07346568256616592, 0.017109829932451248, 0.03233477100729942, -0.018310321494936943, -0.011191511526703835, 0.07620324939489365, -0.0045242877677083015, -0.010327604599297047, -0.003820260288193822, 0.015382017008960247, 0.015516651794314384, -0.013732741586863995, -0.040749441832304, -0.011544927023351192, -0.018736666068434715, 0.010995169170200825, -0.04564116895198822, -0.006737345829606056, -0.004355994053184986, -0.07723545283079147, -0.004577580373734236, -0.023089854046702385, -0.0790305808186531, -0.010069554671645164, -0.009643211960792542, 0.002332265954464674, 0.0030517203267663717, 0.053629495203495026, 0.05537974834442139, 0.011045657098293304, -0.033254776149988174, 0.001782507635653019, -0.015224942937493324, 0.0028637927025556564, 0.024054735898971558, 0.014966893009841442, -0.06354758888483047, 0.00013375819253269583, 0.0011759501649066806, -0.006019293796271086, -0.026814747601747513, -0.011735660023987293, -0.005828561261296272, -0.0033462338615208864, -0.03904406726360321, -0.007752716075628996, 0.001782507635653019, 0.020004475489258766, -0.0008575951214879751, 0.007662959396839142, 0.00526477862149477, 0.06327831745147705, -0.04631434381008148, 0.024548396468162537, -0.028475243598222733, 0.0033546483609825373, 0.05614267662167549, -0.021474238485097885, 0.020509356632828712, -0.017121048644185066, -0.008179059252142906, 0.03767528384923935, 0.01267810259014368, -0.022831805050373077, 0.0005862219841219485, 0.01489957608282566, 0.011702001094818115, -0.05946366861462593, -0.020935699343681335, -0.05461682006716728, -0.01808593049645424, -0.011758099310100079, -0.02374058961868286, 0.03381575271487236, -0.004182090982794762, 0.029529882594943047, 0.021182529628276825, 0.012251759879291058, -0.03594747185707092, 0.01052955724298954, 0.039806999266147614, -0.03727137669920921, -0.019533254206180573, 0.024301566183567047, 0.03381575271487236, -0.0282957311719656, 0.016144946217536926, -0.013542008586227894, 0.007758325897157192, 0.05066753178834915, -0.0008470767643302679, -0.03522941842675209, 0.03260404244065285, -0.029933786019682884, 0.012319076806306839, 0.0016142141539603472, 0.004580385517328978, -0.019757645204663277, -0.006703686900436878, 0.005205875728279352, 0.016840560361742973, 0.00864467117935419, -0.011410292237997055, 0.012397614307701588, 0.06009196490049362, -0.00029784426442347467, 0.09666772931814194, -0.04739142209291458, -0.026321087032556534, 0.045708488672971725, 0.007898570038378239, -0.021418139338493347, -0.004039041697978973, -0.021317163482308388, -0.007393690291792154, -0.03908894583582878, 0.020251305773854256, -0.001570738386362791, -0.012128344736993313, 0.04247725382447243, 0.024256689473986626, -0.03780991584062576, -0.07481202483177185, 0.010950290597975254, 0.014394695870578289, 0.02082350291311741, -0.01627958193421364, 0.016212264075875282, 0.00794344861060381, -0.02013910934329033, 0.019970817491412163, -0.03958260640501976, 0.009570284746587276, -0.00678222393617034, -0.03202062472701073, 0.043217744678258896, 0.011225169524550438, 0.00898686796426773, 0.005200265906751156, -0.00127973104827106, -0.005508803762495518, 0.0042634326964616776, -0.00010483276128070429, -0.013048348017036915, -0.0015735432971268892, -0.036912351846694946, -0.07579934597015381, -0.020397160202264786, -0.008773695677518845, 0.05380900949239731, 0.001388420583680272, 0.010641752742230892, -0.009901261888444424, -0.012195661664009094, -0.028071338310837746, -0.00969930924475193, -0.0328284315764904, -0.006496125366538763, 0.004541116766631603, -0.02946256473660469, -0.027936704456806183, -0.07162567228078842, 0.03278355300426483, -0.0033714778255671263, -0.037652842700481415, 0.0009003697196021676, -0.010568825528025627, -0.017064951360225677, 0.04299335554242134, 0.007820033468306065, -0.02771231345832348, -0.05959830433130264, 0.025378644466400146, 0.0011906757717952132, -0.007455397862941027, 0.05452706292271614, -0.012330296449363232, 0.004036236554384232, -0.058027565479278564, 0.01539323665201664, 0.05564901605248451, -0.06121391803026199, -0.0335240438580513, -0.005845390725880861, -0.01631323993206024, -0.011258828453719616, -0.03424209728837013, -0.0016366533236578107, -0.00432514026761055, 0.0030965986661612988, 0.012307857163250446, -0.004117578733712435, -0.00803881511092186, 0.006036123260855675, 0.013138105161488056, 0.04676312580704689, -0.003747333073988557, 0.04617970809340477, -0.01602153107523918, 0.014203962869942188, -0.04469872638583183, 0.0006198806804604828, -0.01925276592373848, -0.010451019741594791, 0.03228989243507385, -0.017233245074748993, -0.004936606623232365, 0.0006531887338496745, 0.03583527356386185, 0.012857615947723389, 0.0010420166654512286, 0.007275884505361319, 0.02800402231514454, 0.023718150332570076, -0.007416129112243652, -0.011791757307946682, -0.0214517991989851, 0.016526412218809128, 0.01891617849469185, 0.018052272498607635, -0.0046617272309958935, 0.04202847182750702, 0.015404456295073032, 0.025670353323221207, 0.03372599929571152, -0.028430365025997162, 0.011135413311421871, -0.029529882594943047, 0.026276210322976112, -0.051475342363119125, -0.006243685260415077, 0.05066753178834915, -0.0066700284369289875, 0.016111288219690323, -0.008756866678595543, 0.003320989664644003, 0.046000197529792786, -0.02057667262852192, 0.010507117956876755, -0.01919666677713394, -0.017480075359344482, 0.01529226079583168, -0.03377087414264679, -0.01587567664682865, 0.030090859159827232, 0.033793315291404724, -0.014506891369819641, -0.0041119689121842384, 0.006243685260415077, -0.04842362180352211, -0.01944349706172943, 0.054706573486328125, 0.04081675782799721, -0.010950290597975254, 0.026523040607571602, -0.05879049375653267, 0.006602711044251919, -0.02331424504518509, -0.01485469751060009, -0.010159311816096306, 0.030090859159827232, 0.07490178197622299, 0.002970378613099456, -0.012891274876892567, -0.01983618177473545, 0.0019423863850533962, -0.04294847697019577, -0.018837641924619675, -0.006137099117040634, -0.007898570038378239, -0.0847301185131073, 0.023179611191153526, -0.02593962289392948, 0.033344533294439316, -0.002020923187956214, -0.02800402231514454, 0.032379649579524994, -0.07270275056362152, -0.011522487737238407, 0.02676987089216709, -0.05834171175956726, 0.055738773196935654, 0.022831805050373077, -0.005567706655710936, -0.02908109873533249, -0.021429359912872314, -0.0702793225646019, -0.021418139338493347, -0.02096935734152794, -0.03132501244544983, 0.07481202483177185, 0.06718272715806961, -0.02584986574947834, -0.03942553326487541, -0.024929862469434738, 0.011275657452642918, -0.0028834268450737, -0.03805674612522125, 0.005789292976260185, 0.022798145189881325, -0.03211038187146187, 0.008913940750062466, -0.039111386984586716, -0.0038735531270503998, 0.04164700582623482, -0.05223827064037323, -0.004204530268907547, -0.0011359804775565863, 0.03534161299467087, -0.001139486557804048, 0.014574208296835423, 0.033052824437618256, 0.019757645204663277, 0.0023378757759928703, -0.0025244010612368584, 0.024660592898726463, 0.02012789063155651, 0.00521429069340229, 0.02706157974898815, 0.011892734095454216, -0.010148092173039913, -0.007803204003721476, 0.0164142157882452, 0.06269489973783493, 0.016728363931179047, 0.04685288295149803, -0.016447875648736954, -0.06314368546009064, -0.07880619168281555, -0.028205974027514458, -0.05560414120554924, -0.05497584491968155, 0.007057103328406811, 0.0667339414358139, 0.048692889511585236, 0.03386063128709793, -0.09298771619796753, -0.031257692724466324, 0.003382697468623519, -0.00591270811855793, 0.025490840896964073, -0.008605402894318104, 0.01695275492966175, 0.008981257677078247, -0.0004505354445427656, -0.014843477867543697, 0.05178948864340782, 0.00938516203314066, 0.018198126927018166, -0.012420052662491798, 0.005284412764012814, -0.01564006693661213, 0.03215526044368744, 0.006411978509277105, -0.0024725105613470078, 0.03917870298027992, -0.020498136058449745, -0.01187029480934143, -0.043172866106033325, -0.020554233342409134, -0.019813742488622665, 0.003292940789833665, -0.017177145928144455, -0.03742845356464386, 0.029844028875231743, 0.01622348465025425, 0.004583190195262432, 0.024570835754275322, 0.01714348793029785, 0.00668124807998538, 0.03655332699418068, -0.023583514615893364, 0.030517203733325005, 0.01211712509393692, 0.00923930760473013, -0.07849204540252686, -0.05986757203936577, -0.015337138436734676, -0.0019171423045918345, 0.0024977545253932476, -0.009469308890402317, -0.003450014628469944, 0.014203962869942188, -0.021631311625242233, -0.017233245074748993, 0.018164467066526413, -0.0317513532936573, 0.00969930924475193, 0.027241092175245285, 0.017132267355918884, 0.024570835754275322, -6.148844840936363e-05, 0.003337819129228592, 0.011107364669442177, -0.006771004293113947, -0.02751036174595356, -0.022596193477511406, 0.006097830832004547, 0.02751036174595356, 0.016290800645947456, -0.021732287481427193, -0.01157858595252037, -0.006754175294190645, -0.018063491210341454, 0.02468303218483925, -0.02398741990327835, -0.004656117409467697, -0.013373715803027153, -0.010647362098097801, 0.027241092175245285, 0.004131603054702282, -0.01964544877409935, -0.007315153256058693, 0.019263984635472298, -0.008947598747909069, -0.002221472794190049, -0.010445410385727882, -0.0015314699849113822, -0.010523946955800056, -0.007876130752265453, 0.016986414790153503, 0.01910691149532795, 0.03987431526184082, 0.00034973473520949483, -0.0020882405806332827, -0.024929862469434738, -0.03215526044368744, -0.009839554317295551, -0.013429813086986542, -0.015090308152139187, -0.01072589959949255, 0.01500055193901062, 0.0014003412798047066, -0.001516043092124164, -0.027869386598467827, -0.021541554480791092, -0.009822724387049675, -0.05169973149895668, -0.017278121784329414, -0.0117244403809309, -0.00552002340555191, -0.0020672038663178682, 0.011769318021833897, 0.024122053757309914, 0.009929310530424118, 0.003441600129008293, -0.01603275164961815, -0.013934693299233913, 0.02184448391199112, -0.056950487196445465, -0.031190376728773117, 0.026276210322976112, -0.023471320047974586, -0.013867376372218132, 0.008740037679672241, 0.010249068029224873, -0.0005413437611423433, -7.972023013280705e-05, 0.024054735898971558, 0.05493096634745598, 0.024638153612613678, 0.001950801000930369, -0.02086838148534298, 0.008481987752020359, 0.005556487012654543, -0.001854032278060913, -0.03024793416261673, 0.014450793154537678, -0.03103330358862877, 0.030965985730290413, -0.007977107539772987, -0.020655209198594093, -0.05160997435450554, 0.03610454499721527, -0.014865917153656483, -8.239364251494408e-05, 0.002023728098720312, -0.006064172368496656, -0.016537630930542946, -0.01954447291791439, -0.018848860636353493, -0.024615714326500893, -0.01823178492486477, -0.004081115126609802, 0.021721068769693375, 0.018635688349604607, -0.023022538051009178, -0.0036183081101626158, -0.004269042517989874, -0.0501289926469326, 0.017468854784965515, -0.0183776393532753, -0.008381010964512825, 0.015079088509082794, 0.0035706250928342342, 0.05380900949239731, 0.015696164220571518, 0.004229774232953787, 0.0008407657733187079, 0.011292487382888794, -0.027824508026242256, 0.0025833037216216326, 0.0072366162203252316, 0.010047116316854954, -0.020397160202264786, 0.02277570776641369, -0.012734200805425644, 0.005946367047727108, -0.009171990677714348, -0.013990791514515877, 0.0015104332705959678, -0.03554356470704079, -0.01597665436565876, -0.0076349107548594475, 0.014641526155173779, -0.026365965604782104, 0.021530335769057274, -0.007831253111362457, 0.01852349378168583, 0.03220013901591301, 0.0066531989723443985, 0.008964428678154945, 0.023807905614376068, 0.01960057206451893, 0.009772236458957195, -0.004689775872975588, -0.038146503269672394, 0.03181867301464081, 0.01983618177473545, -0.01597665436565876, -0.033097703009843826, 0.01385615672916174, -0.0616627037525177, 0.02468303218483925, 0.028789391741156578, 0.023920102044939995, -0.002501961775124073, 0.005688317120075226, -0.009278575889766216, 0.010810046456754208, 0.004479409195482731, 0.015157626010477543, -0.01690787635743618, -0.0019451911794021726, -0.0008540889830328524, -0.0049281916581094265, 0.03298550471663475, -0.033636242151260376, -0.029193295165896416, -0.054212912917137146, 0.002911475719884038, -0.01253224816173315, -0.006327831652015448, -0.011034437455236912, -0.004159651696681976, -0.015965433791279793, -0.00596319604665041, 0.00024314889742527157, -0.006383929867297411, 0.01808593049645424, -0.025086935609579086, -0.0030909888446331024, -0.005587340798228979, -0.007999545894563198, -0.018635688349604607, 0.006013683974742889, 0.009828334674239159, -0.018658127635717392, -0.028026461601257324, -0.004372823517769575, -0.06942664086818695, 0.013732741586863995, -0.022349363192915916, 0.021227408200502396, 0.006148318760097027, 0.009424430318176746, -0.016088848933577538, -0.00025910171098075807, -0.004367213696241379, -0.034219659864902496, 0.03727137669920921, 0.012711761519312859, -0.014832258224487305, 0.03884211555123329, -0.020296184346079826, -0.0076741790398955345, 0.011298096738755703, -0.009301015175879002, -0.014181523583829403, 0.007343201898038387, 0.054706573486328125, 0.01197127066552639, 0.014102987013757229, 0.02315717190504074, -0.0328284315764904, 0.05605292320251465, 0.003674405859783292, -0.0017726904479786754, 0.022730829194188118, 0.006226855795830488, -0.02726353146135807, -0.002346290508285165, -0.0031779403798282146, -0.01456298865377903, -0.0018470201175659895, 0.02809377759695053, 0.009351503103971481, 0.0130707873031497, -0.02941768616437912, -0.0019886670634150505, -0.020632771775126457, -0.005219900514930487, -0.0011121388524770737, -0.005940757226198912, -0.04878264665603638, -0.0062156361527740955, 0.0005080357077531517, 0.004165261518210173, 0.025962062180042267, -0.05187924578785896, -0.04386847838759422, 0.02946256473660469, -0.021878141909837723, -0.009345893748104572, -0.0077078379690647125, 0.0035425759851932526, -0.0028918415773659945, 0.006821492686867714, 0.02647816203534603, -0.0002007249422604218, -0.0010854924330487847, 0.06516320258378983, -0.009884431958198547, -0.0024949496146291494, -0.029013782739639282, 0.023224489763379097, 0.018063491210341454, -0.012195661664009094, 0.024324005469679832, -0.014506891369819641, 0.0018834836082533002, 0.002305619651451707, 0.018646908923983574, -0.004316725768148899, -0.0006903535686433315, -0.05511048063635826, 0.019409839063882828, -0.010013457387685776, -0.030606959015130997, -0.0036295277532190084, -0.038034308701753616, -0.028430365025997162, 0.04061480611562729, 0.03262647986412048, -0.03228989243507385, 0.007174908649176359, 0.026208892464637756, -0.043621648102998734, 0.028430365025997162, 0.02209131419658661, -0.005556487012654543, 0.032424528151750565, 0.0022551314905285835, 0.014933234080672264, -0.00045228851377032697, -0.008246376179158688, -0.014192743226885796, -0.005839780904352665, 0.015180064365267754, 0.0328284315764904, -0.009850773960351944, 0.0033742827363312244, -0.009014916606247425, -0.022708389908075333, 0.020004475489258766, 0.049186550080776215, -0.021272284910082817, 0.012408833019435406, -0.00591270811855793, -0.0001879276242107153, 0.005090875551104546, -0.010714679956436157, -0.005677097477018833, 0.05111631378531456, -0.014361036941409111, 0.024413762614130974, 0.0071805184707045555, 0.02692694403231144, 0.05434754863381386, -0.00969930924475193, -0.040727004408836365, -0.015382017008960247, -0.020015694200992584, 0.018781542778015137, 0.018265442922711372, -0.00658588157966733, -0.04707727208733559, 0.03749576956033707, -0.019163008779287338, 0.004549531731754541, -0.008577353321015835, -0.0011892733164131641, 0.012319076806306839, -0.018388858065009117, 0.038483090698719025, 0.018691787496209145, -0.0009606748353689909, 0.0027628166135400534, 0.005707951262593269, 0.01572982408106327, -0.027600117027759552, 0.00032186112366616726, -0.0024795227218419313, -0.04833386465907097, 0.04301579296588898, -0.002420620061457157, 0.014159085229039192, -0.028946464881300926, 0.014192743226885796, 0.0029339150059968233, 0.04124310240149498, 0.004588800016790628, -0.06404124945402145, -0.002786658238619566, 0.00412879791110754, 0.019510814920067787, 0.022259607911109924, 0.02188936248421669, 0.01390103530138731, 0.028161095455288887, 0.006372710224241018, 0.022113753482699394, -0.00875125639140606, -0.013519570231437683, -0.017726905643939972, 0.007702228147536516, 0.03049476444721222, 0.018018612638115883, -0.02701670117676258, 0.014596647582948208, 0.0146078672260046, 0.014978112652897835, 0.008532475680112839, -0.0007187530864030123, -0.021608872339129448, 0.05075728893280029, -0.011051266454160213, -0.015359577722847462, -0.00913833174854517, -0.022046435624361038, -0.03074159473180771, -0.005135753657668829, -0.011769318021833897, -0.000552563345991075, 0.0010174738708883524, -0.03278355300426483, -0.003382697468623519, 0.04218554496765137, -0.02697182260453701, 0.01769324578344822, 0.002011106116697192, -0.028363047167658806, 0.0005378376808948815, 0.028744513168931007, -0.032267455011606216, 0.028363047167658806, -0.007455397862941027, -0.01983618177473545, -0.0048636794090271, -0.04193871468305588, -0.0066868579015135765, 0.013227861374616623, 0.006299783010035753, -0.008173449896275997, -0.027084017172455788, 0.025490840896964073, 0.013631765730679035, -0.027532801032066345, -0.05066753178834915, 0.02643328346312046, 0.020217647776007652, 0.006720516365021467, -0.011948831379413605, 0.012251759879291058, 0.0019213496707379818, 0.004782337695360184, 0.009755407460033894, 0.047032397240400314, -0.0010812850669026375, -0.018826421350240707, 0.010781996883451939, -0.06121391803026199, -0.008381010964512825, 0.0011268645757809281, -0.02315717190504074, -0.013811278156936169, 0.03015817701816559, -0.015550309792160988, 0.03318746015429497, -0.008409060537815094, 0.028452804312109947, -0.008195888251066208, 0.0046056294813752174, 0.03157184273004532, 0.04063724726438522, -0.0302928127348423, 0.03704698756337166, 0.004235384054481983, 0.038685042411088943, 0.00019932250143028796, 0.0017432391177862883, -0.0403679758310318, 0.02501961961388588, 0.006894419435411692, -0.003806235734373331, -0.004810386337339878, 0.015909336507320404, 0.00472623948007822, -0.0050179483368992805, -0.040188465267419815, 0.020015694200992584, 0.02427912876009941, -0.01470884308218956, -0.0012664078967645764, 0.015954215079545975, 0.015202503651380539, 0.019611790776252747, 0.005362949799746275, 0.01578592136502266, -0.002769828774034977, 0.0214517991989851, 0.011270048096776009, -0.03688991442322731, 0.026702553033828735, -0.005800512619316578, -0.012543467804789543, 0.02755524031817913, -0.01296981144696474, -0.01705373078584671, 0.03172891587018967, 0.003938065376132727, 0.020094232633709908, 0.007494666147977114, 0.007225396577268839, -0.004569165874272585, 0.031885989010334015, 0.009609553031623363, 0.005029167979955673, 0.003621113020926714, 0.0501289926469326, 0.00424940837547183, 0.014181523583829403, -0.002490742364898324, 0.024346444755792618, 0.0002219369198428467, 0.05358462035655975, -0.03426453471183777, -0.04550653696060181, 0.011056876741349697, -0.004179286304861307, 0.008571743965148926, 0.013048348017036915, 0.006277343723922968, 0.0033041604328900576, 0.027398165315389633, -0.042836278676986694, -0.04128798097372055, 0.026074256747961044, -0.04245481640100479, 0.02403229847550392, 0.014114206656813622, -0.016638606786727905, -0.017334220930933952, 0.0038370895199477673, -0.008790525607764721, 0.005489169619977474, -0.029978664591908455, 0.026298649609088898, 0.006799053400754929, 0.010490288957953453, 0.03457868471741676, 0.05398852378129959, 0.01350835058838129, 0.02027374505996704, -0.019578132778406143, 0.015045429579913616, -0.032222576439380646, 0.01783910021185875, 0.01311566587537527, 0.009418820962309837, 0.01133736502379179, 0.050981681793928146, 0.02150789648294449, -0.02085716277360916, 0.007937838323414326, 0.006524174008518457, 0.004131603054702282, 0.0035005027893930674, -0.003859528573229909, 0.017872760072350502, -0.004630873445421457, 0.07422860711812973, 0.034331854432821274, -0.007017834577709436, 0.010344434529542923, 0.030225494876503944, 0.020408378913998604, 0.005416242405772209, -0.029597198590636253, -0.010838095098733902, -0.007292713969945908, -0.013250300660729408, 0.025086935609579086, -0.025962062180042267, -0.03729381784796715, 0.033636242151260376, 0.026119135320186615, -0.016111288219690323, -0.0033041604328900576, -0.017356660217046738, -0.014361036941409111, 0.01890495792031288, -0.017726905643939972, 0.010731508955359459, -0.04887240380048752, -0.010153701528906822, -0.0029787931125611067, 0.016088848933577538, 0.008885891176760197, 0.025715231895446777, -0.025625474750995636, -0.04593287780880928, -0.013003470376133919, -0.0024108029901981354, -0.011657122522592545, 0.020408378913998604, -0.030629398301243782, -0.013138105161488056, -0.005124534014612436, -0.003966114483773708, 0.0032733066473156214, -0.027487922459840775, -0.011657122522592545, -0.013160543516278267, 0.0006339051178656518, -0.012588346377015114, 0.022270826622843742, -0.015359577722847462, 0.06094465032219887, -0.004423311445862055, -0.014978112652897835, 0.0038174553774297237, 0.031235255300998688, -0.014372256584465504, -0.004235384054481983, 0.004916972015053034, -0.006462466437369585, 0.002027935581281781, -0.0025538522750139236, 0.02062155120074749, -0.012330296449363232, 0.004165261518210173, -0.01744641549885273, 0.023224489763379097, 0.025378644466400146, 0.008947598747909069, -0.027443043887615204, 0.028183534741401672, -0.01489957608282566, -0.017278121784329414, 0.0062492950819432735, 0.009929310530424118, -0.00449623866006732, 0.008667110465466976, -0.0025706817395985126, -0.00030678484472446144, 0.026567917317152023, -0.013519570231437683, -0.006165148224681616, 0.024077175185084343, -0.012846396304666996, -0.02116009034216404, 0.010192970745265484, -0.002159765223041177, 0.031392328441143036, -0.033254776149988174, -0.02555815689265728, -0.028205974027514458, 0.02854256145656109, 0.03107818216085434, -0.014260061085224152, -0.02531132660806179, 0.0008155217510648072, 0.03776503726840019, -0.015067868866026402, 0.07476714998483658, 0.030090859159827232, 0.013811278156936169, -0.0019690326880663633, -0.025131814181804657, -0.00038777603185735643, -0.030405007302761078, -0.02262985333800316, -0.0017572635551914573, 0.026029380038380623, 0.009110283106565475, 0.015112747438251972, 0.017457636073231697, -0.056411948055028915, -0.009631992317736149, -0.022899122908711433, 0.002147143241018057, -0.032132819294929504, -0.004978679586201906, -0.010035896673798561, 0.011062486097216606, -0.03621673956513405, 0.011331755667924881, 0.013934693299233913, 0.02932792901992798, -0.013373715803027153, 0.011241999454796314, -0.039851877838373184, 0.015370797365903854, 0.0468977615237236, 0.011645902879536152, -0.025737671181559563, 0.002294400008395314, -0.004737459123134613, 0.038527969270944595, 0.005085265729576349, -0.027241092175245285, -0.020150329917669296, -0.013957132585346699, 0.0281386561691761, -0.022708389908075333, 0.00011982139403698966, -0.001131773111410439, -0.00850442610681057, -0.0029451344162225723, 0.002987207844853401, 0.0013337251730263233, -0.002713731024414301, 0.02643328346312046, -4.2533527448540553e-05, 0.051924124360084534, 0.007483446504920721, 0.002630986738950014, -0.028407925739884377, 0.014630306512117386, 0.010658581741154194, 0.010518337599933147, -0.011601025238633156, 0.039111386984586716, 0.030853789299726486, -0.010372483171522617, -0.006434417795389891, 0.019073251634836197, 0.0026085476856678724, 0.016649827361106873, 0.0272186528891325, 0.009076624177396297, -0.0468977615237236, -0.006490515545010567, -0.02443620190024376, -0.025131814181804657, 0.007169298827648163, 0.0054723406210541725, 0.015022991225123405, 0.030360128730535507, 0.015628846362233162, -0.0013877192977815866, 0.00984516367316246, -0.02966451644897461, -0.02717377431690693, 0.00226074131205678, -0.026612795889377594, 0.012307857163250446, 0.008476377464830875, -0.019477156922221184, 0.033636242151260376, -0.008633451536297798, 0.009424430318176746, 0.0662851631641388, -0.005929537583142519, 0.036777716130018234, 0.0021401310805231333, -0.024166932329535484, 0.005023558158427477, -0.00918881967663765, -0.0011464988347142935, -0.026702553033828735, -0.0234488807618618, -0.007528324611485004, -0.01647031493484974, 0.028183534741401672, -0.018927397206425667, -0.05071241036057472, -0.03143720701336861, -0.005026362836360931, -0.0004540415829978883, 0.013104446232318878, -0.04438458010554314, -0.006950517650693655, 0.011702001094818115, -0.01797373592853546, -0.01685177907347679, 0.05919439718127251, 0.006047342903912067, -0.005475145298987627, -0.044339701533317566, -0.030405007302761078, 0.003469649003818631, -0.017625927925109863, 0.03626161813735962, -0.0032312332186847925, -0.026523040607571602, 0.0363738127052784, 0.009811505675315857, 0.01192639209330082, -0.0007404909702017903, 0.0015665310202166438, 0.03870748355984688, 0.00823515746742487, -0.04909679293632507, -0.011331755667924881, 0.014989332295954227, 0.0019690326880663633, 0.021709848195314407, 0.029036222025752068, -0.024952301755547523, 0.006165148224681616, 0.02668011374771595, 0.0363738127052784, -0.02194545976817608, -0.0016941535286605358, 0.009620772674679756, 0.011298096738755703, 0.010787607170641422, 0.020498136058449745, 0.011556146666407585, 0.0230674147605896, -0.01862446963787079, -0.02701670117676258, 0.008801745250821114, -0.010372483171522617, 0.012476150877773762, -0.027330847457051277, 0.02643328346312046, -0.0038090406451374292, 0.025715231895446777, -0.00908784382045269, 0.010832484811544418, 0.024166932329535484, -0.06444515287876129, -0.02979915216565132, -0.007887350395321846, -0.0012404626468196511, 0.023875223472714424, 0.007668569218367338, -0.03482551500201225, -0.0008113144431263208, 0.009149551391601562, -0.011982490308582783, -0.001231346745043993, 0.0070907617919147015, -0.024548396468162537, 0.006737345829606056, -0.01964544877409935, 0.014484452083706856, -0.01715470664203167, 0.04355433210730553, 0.013519570231437683, -0.02292156033217907, -0.028722073882818222, 0.03700210899114609, 0.01157858595252037, -0.010243458673357964, -0.010232239030301571, -0.011084925383329391, -0.00845393817871809, 0.03150452300906181, -0.034915272146463394, 0.013553228229284286, 0.010445410385727882, -0.020778624340891838, -0.044878240674734116, 0.0026954992208629847, -0.02751036174595356, 0.006675638258457184, -0.037316255271434784, -0.002799280220642686, 0.01954447291791439, -0.011488829739391804, 0.0026940968818962574, 0.022786926478147507, -0.02031862363219261, 0.050263628363609314, 0.03370355814695358, -0.0016927510732784867, -0.013878596015274525, 0.014506891369819641, -0.0115337073802948, 0.00483843544498086, 0.02032984234392643, 0.00994053017348051, 0.009755407460033894, 0.0025552548468112946, 0.009267356246709824, -0.0007327775238081813, 0.013351276516914368, -0.024862544611096382, -0.02179960533976555, -0.025535719469189644, -0.02746548317372799, -0.05730951204895973, -0.021754726767539978, 0.0385952852666378, 0.014226402156054974, -0.06148318946361542, -0.014966893009841442, 0.011556146666407585, 0.015382017008960247, -0.03233477100729942, 0.012487370520830154, -0.0066531989723443985, 0.00658588157966733, 0.0021737897768616676, 0.015022991225123405, -0.025580596178770065, -0.0038118455559015274, -0.008223937824368477, -0.039605047553777695, -0.025131814181804657, 0.018142027780413628, 0.028520122170448303, -0.011112974025309086, -0.011320536024868488, -0.028228413313627243, 0.005918317940086126, -0.014282500371336937, 0.015460553579032421, -0.0057051461189985275, -0.004319530446082354, -0.008016375824809074, -0.021182529628276825, 0.0008057046798057854, -0.008958818390965462, -0.0021485458128154278, 0.04640410095453262, 0.018164467066526413, 0.03482551500201225, 0.010574434883892536, -0.0008057046798057854, -0.033546485006809235, 0.014630306512117386, -0.01734543964266777, 0.02320205047726631, -0.023538636043667793, -0.011124193668365479, 0.013474691659212112, 0.011157852597534657, 0.004715020302683115, 0.008392230607569218, 0.019275203347206116, -0.006608320865780115, -0.013822497799992561, 0.010114433243870735, -0.014619086869060993, -0.018355200067162514, -0.023246929049491882, 0.018882518634200096, 0.0261415746062994, 0.049814846366643906, 0.002814707113429904, 7.314627146115527e-05, -0.01371030230075121, -0.020935699343681335, -0.02213619276881218, 0.042095787823200226, 0.001866654260084033, -0.008201498538255692, 0.0017488489393144846, 0.00854930467903614, 0.018501054495573044, -0.017771782353520393, -7.126174023142084e-05, -0.00945247896015644, -0.004437335766851902, 0.030606959015130997, 0.007825642824172974, 0.030719155445694923, -0.0035734297707676888, -0.011623464524745941, -0.013373715803027153, 0.01211712509393692, -0.008392230607569218, -0.007416129112243652, 0.018299102783203125, -0.010243458673357964, 0.03015817701816559, 0.004097944125533104, 0.010669801384210587, 0.027600117027759552, -0.018994715064764023, -0.006569052580744028, 0.008605402894318104, 0.01028272695839405, 0.014450793154537678, 0.0482889860868454, -0.01470884308218956, 0.018826421350240707, 0.0022817780263721943, 0.019477156922221184, 0.04059236869215965, -0.009295405820012093, -0.051924124360084534, 0.004246603697538376, -0.0029170855414122343, 0.09639845788478851, -0.038819678127765656, -0.005447096191346645, -0.022540096193552017, 0.0008050034521147609, 0.010221019387245178, -0.00591270811855793, -0.01740153692662716, -0.01539323665201664, 0.006153928581625223, 0.0367552787065506, -0.023179611191153526, 0.004316725768148899, -0.030270373448729515, 0.023538636043667793, 0.014046888798475266, -0.04173676297068596, 0.025760110467672348, -0.005702341441065073, 0.0004487824044190347, 0.008672719821333885, 0.03756308555603027, 0.042522132396698, 0.02663523517549038, -0.027039140462875366, -0.0252215713262558, 0.005152583122253418, 0.004933801479637623, 0.004975874908268452, 0.026455722749233246, -0.03015817701816559, 0.019118130207061768, 0.038191381841897964, 0.022012777626514435, 0.008055644109845161, -0.028183534741401672, 0.024503519758582115, 0.014877136796712875, -0.011612244881689548, -0.02022886648774147, -0.00014077041123528033, -0.012812737375497818, 0.014192743226885796, 0.013104446232318878, -0.018680566921830177, 0.012958591803908348, -0.01157858595252037, -0.01842251792550087, 0.006765394937247038, -0.037069424986839294, -0.01556152943521738, -0.028565000742673874, -0.00382306519895792, -0.021238626912236214, -0.0018862885190173984, 0.01993715763092041, 0.04842362180352211, -0.01705373078584671, 0.03776503726840019, -0.05789292976260185, 0.008117351680994034, 0.03000110387802124, -0.006529783830046654, 0.023471320047974586, 0.012397614307701588], [0.06118005886673927, 0.027692526578903198, 0.03778628632426262, 0.049162548035383224, -0.034461282193660736, 0.03272753208875656, -0.03101753070950508, 0.02873752824962139, 0.07495506852865219, -0.012682512402534485, -0.010295635089278221, 0.005263598635792732, 0.004319535568356514, 0.024486273527145386, -0.009019071236252785, 0.003776253666728735, 0.02291877195239067, -0.022526897490024567, 0.01705251634120941, 0.014855639077723026, 0.04239379242062569, 0.039757538586854935, -0.0015912515809759498, -0.019843144342303276, -0.00549516174942255, -0.04177629202604294, -0.00592266209423542, -0.012118449434638023, 0.03436628356575966, -0.03809503838419914, 0.017230641096830368, -0.014238138683140278, -0.010277822613716125, -0.05134755000472069, 0.020911894738674164, -0.02105439454317093, -0.03241878002882004, -0.007505007088184357, 0.01929689384996891, -0.005352661479264498, -0.03864128887653351, -0.034390032291412354, 0.01180969923734665, -0.004948910791426897, -0.05894755572080612, 0.026718774810433388, 0.029260028153657913, -0.021220644935965538, 0.007457507308572531, 0.026196274906396866, 0.020781269297003746, 0.015295014716684818, 0.017765017226338387, -0.01026001013815403, -0.026315025985240936, 0.04481629282236099, 0.029093777760863304, 0.04213254153728485, -0.0036693785805255175, 0.015271265059709549, -0.015603764913976192, 0.006477818824350834, 0.006537193898111582, -0.006614381447434425, 0.004269066732376814, 0.013644387945532799, 0.01567501574754715, 0.00765344500541687, -0.05633505433797836, -0.003054846776649356, 0.011880949139595032, 0.04633629322052002, -4.0194128814619035e-05, -0.01926126889884472, -0.03999503701925278, 0.00936344638466835, 0.015045639127492905, 0.017076266929507256, 0.01921376772224903, 0.016636891290545464, -0.04434129223227501, -0.017254391685128212, -0.005067660938948393, -0.01596001535654068, -0.04424629360437393, 0.053152550011873245, -0.04384254291653633, -0.032347530126571655, -0.05932755768299103, 0.013074387796223164, -0.03643253445625305, 0.023999398574233055, -0.021066270768642426, 0.03640878573060036, 0.013442512601613998, 0.015247514471411705, -0.0069231316447257996, -0.07457507401704788, 0.016055015847086906, 0.08730508387088776, -0.017444392666220665, 0.0017678922740742564, 0.005741567816585302, 0.002103361301124096, 0.05039754882454872, -0.06194005906581879, -0.039876289665699005, -0.02975877933204174, -0.01134063582867384, 0.006845944095402956, 0.017123766243457794, -0.024605022743344307, -0.02638627588748932, 0.05761755630373955, -0.0071250069886446, 0.004055316559970379, 0.021683771163225174, -0.012587511911988258, 0.02296627126634121, -0.028856277465820312, 0.003820784855633974, -0.029046278446912766, 0.05215505138039589, -0.04526754468679428, 0.03750128671526909, -0.01347813755273819, -0.041871290653944016, -0.01305063720792532, 0.0031320343259721994, -0.015354389324784279, 0.03386753425002098, -0.03044752962887287, 0.08013257384300232, -0.031088780611753464, 0.0191306434571743, 0.0018836737144738436, -0.007801882456988096, -0.041990041732788086, -0.014891264028847218, -0.0035714097321033478, 0.020626895129680634, 0.023726273328065872, 0.05443505197763443, 0.029545027762651443, -0.04949504882097244, -0.05419755354523659, 0.05709505453705788, 0.015010014176368713, -0.012082824483513832, 0.027288775891065598, -0.015010014176368713, -0.010640010237693787, -0.004613441880792379, 0.009215008467435837, 0.006780631374567747, -0.017111891880631447, -0.011233760975301266, 0.05386505275964737, 0.025958774611353874, -0.011637510731816292, -0.05039754882454872, -0.04011378809809685, -0.04911504685878754, -0.027835026383399963, -0.02434377372264862, 0.005382348783314228, -0.0149625139310956, 0.018263768404722214, -0.04455504193902016, -0.009986884891986847, -0.03111252933740616, -0.07030006498098373, -0.031136279925704002, -0.005299224052578211, -0.0009396102977916598, -0.04037503898143768, 0.06331755965948105, 0.01824001781642437, -0.031777530908584595, -0.0010591025929898024, 0.016150016337633133, 0.017515642568469048, -0.040945038199424744, -0.006590631324797869, -0.02781127765774727, 0.01677939109504223, -0.02626752480864525, 0.024438774213194847, -0.04120628908276558, 0.0008282820344902575, 0.0067034438252449036, 0.014546888880431652, -0.027621276676654816, 0.054292552173137665, 0.02902252785861492, 0.019973769783973694, -0.03911628946661949, -0.025626273825764656, 0.0700150653719902, -0.04633629322052002, 0.034057531505823135, -0.07832757383584976, 0.015615640208125114, -0.039353787899017334, -0.04840254783630371, -0.02373814769089222, -0.01954626850783825, 0.0025635180063545704, 0.06422006338834763, -0.02308502234518528, 0.013169387355446815, -0.02626752480864525, 0.01005813479423523, 0.019795643165707588, 0.00798000767827034, 0.004352191463112831, 0.04666879400610924, 0.008591570891439915, 0.057190053164958954, -0.003797034965828061, -0.06602506339550018, -0.01127532310783863, -0.01005813479423523, -0.0002263674105051905, -0.021327519789338112, 0.03317878022789955, -0.016684390604496002, -0.02271689660847187, -0.016102515161037445, -0.0050854734145104885, -0.03232378140091896, -0.017254391685128212, -0.02055564522743225, 0.022610021755099297, 0.008241257630288601, 0.030708778649568558, 0.017812516540288925, -0.017860017716884613, -0.01470126397907734, -0.0031409405637532473, 0.04025628790259361, 0.05215505138039589, 0.015698764473199844, -0.04310629144310951, -0.04434129223227501, -0.019617518410086632, 0.006845944095402956, 0.0004909575218334794, 0.012492512352764606, -0.016553765162825584, 0.023227522149682045, -0.024486273527145386, 0.048592545092105865, 0.01015907246619463, -0.0019935176242142916, 0.027573777362704277, 0.012967512011528015, 0.012753762304782867, 0.04897254705429077, 0.006661881227046251, -0.03004377894103527, 0.06156006082892418, 0.0303287785500288, -0.025103773921728134, -0.027383776381611824, -0.0033754720352590084, 0.015983765944838524, -0.04196628928184509, -0.030518779531121254, 0.03496003523468971, -0.05809255689382553, 0.03557753562927246, 0.024011272937059402, -0.006293755955994129, -0.0342000313103199, 0.027217525988817215, -0.0017129704356193542, -0.015188139863312244, -0.020781269297003746, 0.025578774511814117, -0.011103135533630848, -0.02133939601480961, 0.048925045877695084, -0.011358448304235935, -0.006394693627953529, 0.03569628298282623, -0.003835628740489483, 0.02503252401947975, -0.006180943455547094, -0.023643147200345993, 0.017610641196370125, -0.020864395424723625, -0.017337515950202942, -0.02797752618789673, 0.02816752716898918, -0.010010634548962116, -0.030922530218958855, -0.020935645326972008, 0.006436256226152182, -0.0012906653573736548, 0.023025646805763245, 0.040327537804841995, -0.0411112904548645, -0.02316814661026001, -0.04571879282593727, 0.013371262699365616, -0.011673136614263058, 0.006834069266915321, -0.0003803714644163847, -0.013941263779997826, -0.008116570301353931, 0.056572552770376205, -0.0023200802970677614, -0.03315503150224686, -0.0541500523686409, 0.04735754430294037, -0.02776377648115158, -0.0024937523994594812, 0.03697878494858742, -0.026647524908185005, 0.005227973684668541, 0.02593502402305603, 0.03676503524184227, -0.06645256280899048, 0.025982525199651718, -0.03301253169775009, 0.007991882972419262, 0.04156253859400749, -0.039923787117004395, -0.02662377618253231, -0.04267879202961922, 0.039068788290023804, 0.051157549023628235, 0.013086262159049511, 0.008621258661150932, -0.03925878927111626, 0.019736269488930702, -0.0065550063736736774, -0.0415387898683548, 0.022384395822882652, -0.009885947220027447, 0.002502658637240529, -0.017800642177462578, 0.01673189178109169, 0.01624501496553421, -0.01938001811504364, -0.011126886121928692, -0.01347813755273819, -0.011821573600172997, 0.020662520080804825, 0.044317543506622314, -0.004530316684395075, -0.010390634648501873, -0.0039514098316431046, -0.06692756712436676, -0.03709753602743149, 0.003716878592967987, -0.02328689768910408, -0.007326881866902113, 0.02462877333164215, -0.019285017624497414, -0.0032715655397623777, -0.03329753130674362, 0.04201379045844078, 0.009820634499192238, 0.03358253091573715, -0.03954378888010979, 0.04526754468679428, -0.01470126397907734, -0.007843445055186749, 0.01828751713037491, 0.02638627588748932, 0.00020725606009364128, -0.016826890408992767, -0.007605944760143757, 0.04068378731608391, -0.014843764714896679, -0.0014019935624673963, 0.01803814247250557, -0.04339129105210304, 0.03237128257751465, -0.005765317939221859, -0.017895642668008804, 0.025673775002360344, 0.018750643357634544, 0.0521075502038002, -0.007926570251584053, -0.019391894340515137, 0.003473440883681178, 0.025697525590658188, -0.048877548426389694, -0.021078145131468773, -0.04799879714846611, 0.009470321238040924, -0.04303504154086113, 0.008241257630288601, 0.009321884252130985, 0.021101895719766617, 0.011043760925531387, -0.0704425647854805, 0.0015585952205583453, -0.026695026084780693, -0.008419383317232132, 0.034461282193660736, -0.008324382826685905, -0.028476277366280556, -0.015176264569163322, -0.03790503740310669, 0.02394002303481102, 0.002523439936339855, 0.03370128199458122, -0.014143138192594051, 0.023476896807551384, -0.004013753961771727, -0.010455947369337082, -0.027146276086568832, -0.03496003523468971, 0.030305029824376106, 0.014119388535618782, -0.023180022835731506, 0.012409387156367302, -0.027383776381611824, -0.028808778151869774, -0.02833377756178379, -0.00856782030314207, 0.00989188440144062, 0.02011626958847046, -0.0015452358638867736, 0.03515003249049187, -0.053152550011873245, -0.016423141583800316, -0.002855940256267786, 0.0248425230383873, 0.03671753406524658, -0.024462522938847542, -0.019118769094347954, 0.015188139863312244, -0.04567129537463188, 0.015401889570057392, -0.028238777071237564, -0.0006724225240759552, -0.026813775300979614, 0.03268003091216087, -0.0002751662686932832, -0.016993140801787376, -0.08953758329153061, -0.020496269688010216, 0.029378777369856834, 0.011400011368095875, -0.0189287681132555, -0.00669750664383173, 0.03146877884864807, 0.0059018805623054504, -0.03025752864778042, -0.007795944809913635, -0.02003314346075058, 0.0280962772667408, -0.07424256950616837, -0.01345438789576292, -0.022016271948814392, 0.04011378809809685, 0.05643005296587944, 0.050872549414634705, 0.017646266147494316, 0.03306003287434578, 0.016458766534924507, -0.0011014073388651013, -0.005697036627680063, -0.02194502018392086, -0.038047537207603455, 0.022693146020174026, -0.014808138832449913, -0.03208627924323082, -0.014630014076828957, 0.05424505099654198, -0.005857349373400211, 0.039353787899017334, -0.010491572320461273, -0.042655039578676224, -0.02080501988530159, -0.03393878415226936, 0.05890005826950073, -0.0708225667476654, -0.02496127411723137, 0.051395051181316376, 0.04714379459619522, 0.05818755552172661, -0.0019712517969310284, -0.06403005868196487, -0.008823133073747158, -0.03671753406524658, -0.008294695056974888, 0.01127532310783863, -0.011364385485649109, 0.01512876432389021, -0.014974389225244522, 0.0023467992432415485, -0.013798763044178486, 0.005035005044192076, 0.012492512352764606, -0.005287348758429289, -0.05187004804611206, -0.0307325292378664, 0.011322823353111744, 0.032062530517578125, -0.0020558612886816263, -0.0028885966166853905, 0.04792754724621773, -0.014297513291239738, -0.014487514272332191, 0.014071888290345669, -0.051442548632621765, -0.012005636468529701, -0.0014368763659149408, -0.03170628100633621, -0.02907002717256546, 0.03211003169417381, 0.018335018306970596, 0.01467751432210207, 0.021303771063685417, -0.027668775990605354, 0.01555626466870308, 0.03892628848552704, -0.028191277757287025, 0.021030645817518234, 2.2694723156746477e-05, 0.010735010728240013, -0.04206129163503647, -0.005210161209106445, -0.054862551391124725, -0.030400028452277184, -0.0034645346459001303, -0.060277558863162994, -0.009850322268903255, -0.010265947319567204, -0.011975948698818684, -0.025745024904608727, 0.02626752480864525, 0.009458446875214577, 0.01530689001083374, 0.020745644345879555, -0.0014962514396756887, -0.002204298973083496, -0.013905638828873634, -0.004821254406124353, 0.009755321778357029, 0.010402509942650795, -0.009838446974754333, 0.01365626323968172, 0.019201893359422684, 0.013893763534724712, -0.017361266538500786, -0.005438755266368389, -0.012492512352764606, 0.012753762304782867, 0.014558764174580574, 0.018085641786456108, -0.02100689522922039, -0.01533063966780901, -0.01001657173037529, 0.015983765944838524, 0.018501268699765205, -0.023465022444725037, -0.0014420717488974333, -0.0007470124401152134, 0.061702560633420944, -0.003517972072586417, 0.0207693949341774, -0.015781890600919724, -0.001776798628270626, -0.023096896708011627, -0.008799383416771889, 0.017171267420053482, 0.0020009393338114023, -0.005325942765921354, 0.008550007827579975, 0.03707378730177879, -0.053105052560567856, 0.01644689030945301, 0.0643150582909584, 0.01490313932299614, 0.012670637108385563, 0.0015378139214590192, -0.012255012057721615, -0.030875029042363167, -0.002248830394819379, -0.021078145131468773, -0.029782528057694435, -0.018572518602013588, 0.004761879798024893, 0.03213378041982651, 0.013763138093054295, -0.007231881842017174, 0.017254391685128212, -0.020531894639134407, 0.03510253503918648, 0.011827511712908745, -0.007065631914883852, -0.02952127903699875, -0.005109223537147045, -0.0013448450481519103, -0.06417255848646164, -0.008965633809566498, 0.024082522839307785, -0.042607542127370834, -0.024438774213194847, 0.006911256816238165, 0.0013300012797117233, -0.007006256841123104, 0.03726378455758095, 0.02219439670443535, 0.02854752726852894, -0.014653763733804226, -0.03762003779411316, -0.016506265848875046, 0.01233813725411892, -0.06517006456851959, -0.029996279627084732, -0.004580785520374775, -0.0004052347503602505, -0.018299393355846405, 0.015033764764666557, -0.018465641885995865, -0.005061723757535219, -0.03567253425717354, 0.016755640506744385, -0.006733131594955921, -0.03139752894639969, -0.0057920366525650024, -0.0004813090490642935, 0.006264068651944399, -0.016957515850663185, 0.004289847798645496, -0.010075947269797325, -0.010497510433197021, -0.027431275695562363, 0.005863287020474672, 0.014499388635158539, -0.03415253385901451, -0.0015036732656881213, 0.010455947369337082, -0.015900639817118645, 0.02764502726495266, -0.03239503130316734, 0.0024714868050068617, 0.01388188824057579, -0.0023467992432415485, -0.017515642568469048, 0.01677939109504223, 0.016993140801787376, 0.027431275695562363, 0.016233140602707863, -0.026006275787949562, 0.026362525299191475, 0.008460945449769497, 0.009286259301006794, -0.00572078675031662, 0.02161252126097679, -0.010497510433197021, 0.020377520471811295, -0.02626752480864525, -0.024462522938847542, -0.0003410354838706553, -0.01934439316391945, 0.02365502342581749, 0.008021569810807705, 0.03127878159284592, -0.02120877057313919, 0.03819003701210022, -0.021802520379424095, 0.006418443750590086, -0.026647524908185005, -0.02430814877152443, -0.02964002825319767, 0.0052071926183998585, 0.007600007113069296, -0.017028765752911568, 0.013323762454092503, -0.02496127411723137, 0.03648003563284874, -0.000935157120693475, -0.005219067446887493, -0.05277255177497864, -0.007706882432103157, 0.021196896210312843, -0.009470321238040924, 0.04168128967285156, -0.02288314700126648, -0.0021701583173125982, 0.000352724950062111, 0.025056274607777596, 0.00099007913377136, 0.012468761764466763, 0.04189503937959671, -0.027692526578903198, 0.030708778649568558, 0.05149004980921745, 0.008419383317232132, -0.021671894937753677, -0.0028589090798050165, -0.0016283609438687563, 0.013205012306571007, 0.03306003287434578, -0.08697258681058884, -0.045457541942596436, -0.016993140801787376, -0.004806410986930132, -0.03049502894282341, 0.02125626988708973, -0.0028663307894021273, -0.02003314346075058, -0.02055564522743225, -0.025103773921728134, 0.031943779438734055, -0.012670637108385563, -0.016055015847086906, 0.027740025892853737, 0.011815636418759823, -0.008425320498645306, -0.006638131570070982, -0.0074040694162249565, 0.013418762944638729, -0.021968770772218704, 0.02536502480506897, -0.02231314592063427, -0.028808778151869774, -0.0256500244140625, 0.03341628238558769, 0.003482347121462226, -0.024605022743344307, 0.02576877549290657, -0.009416883811354637, -0.02048439532518387, 0.011322823353111744, -0.008134382776916027, -0.0007503522792831063, -0.05358005315065384, -0.029283778741955757, -0.011934386566281319, 0.003924691118299961, 0.011126886121928692, -0.033606283366680145, -0.015271265059709549, -0.03208627924323082, -0.008882508613169193, 0.03655128553509712, -0.03695503622293472, 0.04434129223227501, 0.0030578153673559427, -0.02503252401947975, -0.02063876949250698, 0.007564382161945105, 0.020080644637346268, -0.01632814109325409, 0.022325022146105766, -0.014796264469623566, 0.03842753544449806, 0.0040196911431849, -0.00969000905752182, -0.012694386765360832, -0.007528757210820913, 0.009779072366654873, 0.0021419550757855177, -0.00616906862705946, -0.007914694957435131, -0.0015660171629860997, -0.05837755650281906, 0.0065550063736736774, -0.002069220645353198, 0.035933785140514374, -0.023393772542476654, -0.015544390305876732, 0.02313252165913582, 0.0025694556534290314, 0.0337962843477726, 0.02369064837694168, -0.01681501604616642, -0.024937523528933525, 0.03139752894639969, -0.02161252126097679, 0.003886097576469183, 0.009802822023630142, -0.026885025203227997, 0.03199128061532974, -0.0006746490835212171, -0.028120027855038643, -0.012682512402534485, 0.03106503002345562, 0.05191754922270775, -0.006881569046527147, -0.020816894248127937, -0.02271689660847187, 0.006246256176382303, -0.02702752687036991, 0.004079066216945648, -0.010533135384321213, 0.0439612939953804, -0.06194005906581879, 0.01983126997947693, 0.02418939769268036, 0.0021657051984220743, -0.011720635928213596, 0.03282253071665764, 0.0033012530766427517, 0.0728650689125061, 0.019023768603801727, -0.04771379753947258, -0.021588770672678947, 0.01242126151919365, -0.019308768212795258, 0.00906063336879015, -0.002204298973083496, 0.026006275787949562, -0.007837507873773575, -0.046716295182704926, 0.018216267228126526, -0.029687529429793358, -0.005887037143111229, -0.010414385236799717, -0.024581274017691612, 0.03089877963066101, 0.0063293809071183205, 0.009310008957982063, -0.00031784208840690553, 0.005860317964106798, -0.0005017192452214658, -0.021137520670890808, 0.03374878317117691, -0.00887657143175602, -0.007605944760143757, 0.01677939109504223, 0.010824073106050491, 0.011590011417865753, 0.00930407177656889, 0.01592439040541649, 0.004295785445719957, -0.010426259599626064, 0.011726574040949345, 0.03899753838777542, 0.014333139173686504, 0.009571258910000324, -0.011192197911441326, -0.02626752480864525, -0.016221266239881516, -0.0026525806169956923, 0.02227752096951008, -0.02797752618789673, 0.012361886911094189, 2.9965849535074085e-05, 0.0181212667375803, 0.02455752342939377, 0.009523759596049786, -0.0045540668070316315, 0.021078145131468773, -0.006341256201267242, 0.00012988293019589037, 0.016256891191005707, 0.028903778642416, 0.021838145330548286, -0.0006861530127935112, -0.013668138533830643, -0.011180323548614979, -0.005602036602795124, 0.001671407837420702, 0.017812516540288925, -0.020900020375847816, 0.04595629498362541, -0.018821893259882927, 0.0019430487882345915, 0.001656564068980515, 0.0325612798333168, -0.006041412241756916, 0.01453501358628273, -0.007617820054292679, -0.06070505827665329, -0.014891264028847218, -0.0016135171754285693, 0.05039754882454872, -0.006661881227046251, 0.0008498054812662303, 8.354255987796932e-05, 0.022004395723342896, 0.03156378120183945, 0.02369064837694168, -0.02035376988351345, -0.01533063966780901, -0.03282253071665764, 0.024486273527145386, 0.04172879084944725, 0.004675785545259714, -0.016803141683340073, 0.0008839461370371282, 0.022705022245645523, -0.013965013436973095, 0.050872549414634705, 0.011150635778903961, 0.010467822663486004, 0.003069690428674221, 0.0010264463489875197, 0.028808778151869774, -0.044317543506622314, 0.017943141981959343, -0.024462522938847542, 0.004156253766268492, -0.055717553943395615, 0.031540028750896454, -0.0009455477702431381, -0.010735010728240013, -0.01938001811504364, 0.012528137303888798, 0.029426278546452522, 0.0005596099072135985, 0.021553145721554756, -0.01767001673579216, 0.021921271458268166, 0.030115028843283653, -0.010337197221815586, 0.014012513682246208, -0.010651885531842709, -0.01368001289665699, 0.0019757049158215523, 0.0034585969988256693, -0.0028692996129393578, -0.0005143364542163908, 0.007505007088184357, 0.0063293809071183205, -0.044887542724609375, 0.05462505295872688, 0.011109073646366596, -0.021505646407604218, -0.012943762354552746, 0.009072508662939072, -0.015176264569163322, 0.00682813161984086, -0.043913792818784714, -0.028595026582479477, 0.009274384006857872, -0.016399390995502472, 0.00999282207340002, -4.6525925426976755e-05, -0.006964694242924452, 0.022990021854639053, -0.027170026674866676, -0.006210630759596825, -0.006899381522089243, -0.026766275987029076, 0.026861276477575302, -0.017776891589164734, 0.0023913304321467876, -0.016375640407204628, 0.01889314316213131, -0.04206129163503647, 0.03225253149867058, -0.018382517620921135, 0.020175645127892494, 0.05096754804253578, 0.04246504232287407, 0.019819393754005432, 0.015936264768242836, -0.02280002273619175, 0.03277503326535225, -0.02451002411544323, 0.020211270079016685, -0.022705022245645523, -0.010147197172045708, 0.029972529038786888, 0.020341893658041954, 0.022740647196769714, 0.0003645999531727284, 0.006471881177276373, -0.016826890408992767, -0.02246752195060253, 0.02068627066910267, 0.07965757697820663, -0.033392533659935, 0.023429397493600845, -0.009695947170257568, -0.022075645625591278, 0.018584392964839935, -0.01026001013815403, -0.023013772442936897, 0.017943141981959343, 0.03878378868103027, -0.010675635188817978, -0.023429397493600845, 0.010028447024524212, 0.029141278937458992, -0.02418939769268036, 0.02854752726852894, -0.029687529429793358, -0.001661017187871039, 0.050540048629045486, -0.019035642966628075, 0.0386887863278389, 0.009963134303689003, 0.02816752716898918, 0.018869392573833466, 0.015401889570057392, -0.00735063198953867, 0.015140639618039131, -0.0030132841784507036, -0.027953777462244034, 0.007291256915777922, 0.025056274607777596, -0.009369383566081524, -0.01726626604795456, 0.026980025693774223, 0.016221266239881516, -0.024296272546052933, -0.03196753188967705, 0.03847503662109375, -0.0019771894440054893, -0.03021002933382988, 0.02695627510547638, -0.03078003041446209, -0.0350075326859951, 0.037145037204027176, -0.012635012157261372, -0.025270024314522743, 0.0007581452373415232, -0.03700253739953041, 0.054862551391124725, 0.03591003268957138, 0.0002196877176174894, 0.023595647886395454, -0.0026525806169956923, 0.02426064759492874, 0.01681501604616642, 0.007617820054292679, -0.0179193913936615, 0.022325022146105766, 0.0022354708053171635, 0.003230003174394369, -0.002054376993328333, -0.014796264469623566, 0.024070648476481438, 0.007095319218933582, -0.0191306434571743, 0.022135021165013313, 0.03412878140807152, -0.0025189868174493313, 0.0032151592895388603, -0.016292516142129898, 0.07030006498098373, 0.0010360947344452143, 0.010366884991526604, 0.011429698206484318, 0.02075752057135105, -0.025578774511814117, 0.018465641885995865, 0.012350011616945267, 0.05733255669474602, -0.057190053164958954, 0.027621276676654816, 0.004132504109293222, -0.004723285790532827, -0.019855018705129623, -0.0059582870453596115, -0.00010205087892245501, 0.005468442570418119, 0.012611262500286102, -0.002153830137103796, 0.010206572711467743, -0.009321884252130985, 0.01827564276754856, 0.007813757285475731, -0.02223002165555954, 0.004206722602248192, 0.0018717986531555653, 0.008918133564293385, -0.001666954718530178, -0.002128595719113946, 0.03272753208875656, 0.0075821946375072, 0.04035129025578499, -0.025317523628473282, -0.03892628848552704, -0.02650502510368824, -0.013858138583600521, 0.02095939591526985, -0.019403768703341484, 0.011590011417865753, -0.009078445844352245, 0.030020028352737427, -0.020365644246339798, 0.00291086221113801, 0.006911256816238165, 0.02895127795636654, -0.012445012107491493, 0.01746814139187336, -0.01970064453780651, -0.008585633710026741, 0.021185019984841347, 0.010004697367548943, -0.015211889520287514, 0.019795643165707588, 0.02182627096772194, -0.018513143062591553, 0.06260506063699722, -0.02291877195239067, 0.03724003583192825, 0.04412754252552986, -0.015580015257000923, 0.004527348093688488, 0.00441750418394804, -0.016375640407204628, 0.0023304710630327463, -0.041467539966106415, 0.015045639127492905, 0.03118377923965454, -0.020425019785761833, 0.038166288286447525, -0.02918877825140953, -0.015235640108585358, 0.0028128933627158403, -0.00245812744833529, -0.0067687565460801125, 0.005768286995589733, 0.0009915634291246533, 0.012528137303888798, -0.01579376496374607, 0.004512504208832979, -0.01636376604437828, -0.007166569586843252, 0.004675785545259714, -0.024937523528933525, 0.0051953173242509365, 0.0008520320407114923, -0.007671257480978966, -0.027217525988817215, 0.001453204546123743, -0.008995321579277515, -0.013917513191699982, -0.004361098166555166, 0.023263147100806236, 0.013335637748241425, -0.002303752116858959, -0.045172542333602905, -0.01604313962161541, 0.002248830394819379, 0.022182520478963852, -0.0002447365550324321, 0.011192197911441326, -0.009618759155273438, -0.0358150340616703, 0.014119388535618782, -0.006560944020748138, 0.062272559851408005, 0.0011221885215491056, -0.007083444390445948, 0.02804877609014511, 0.06654756516218185, -0.0260537751019001, 0.031041279435157776, -0.006323443725705147, -0.029735028743743896, 0.016055015847086906, -0.005002348683774471, 0.0032270343508571386, 0.0238212738186121, -0.05533755198121071, -0.06317505985498428, -0.014713139273226261, 0.012753762304782867, -0.019926268607378006, 0.0038237536791712046, 0.003179534338414669, 0.017242517322301865, -0.0248425230383873, -0.00474406685680151, -0.016173765063285828, 0.0105865728110075, -0.012551886960864067, -0.013632512651383877, 0.018881268799304962, 0.018133142963051796, 0.04035129025578499, -0.021244395524263382, 0.007766257505863905, -0.02398752234876156, 0.008526258170604706, 0.037928786128759384, 0.030542530119419098, -0.002189455321058631, -0.024035023525357246, 0.010277822613716125, 0.0350075326859951, 0.016340015456080437, 0.028143776580691338, -0.018964393064379692, -0.001586798345670104, -0.004420472774654627, 0.009624696336686611, -0.013537513092160225, -0.027265025302767754, 0.021992521360516548, 0.011685010977089405, -0.007748445030301809, 0.02332252264022827, 0.011192197911441326, 0.0030578153673559427, -0.004453129135072231, 0.002680783858522773, -0.029165027663111687, 0.001707032904960215, -0.004809379577636719, -0.000297246384434402, -0.00491625489667058, -0.016268765553832054, -0.017563141882419586, -0.03956753760576248, 0.03921128809452057, 0.004224535543471575, 0.005284380167722702, -0.005308130290359259, -0.00860938336700201, -0.0252462737262249, -0.05101504921913147, -0.014760639518499374, -0.006602506153285503, 0.019724393263459206, 0.02833377756178379, -0.004408597946166992, 0.0012535558780655265, -0.004150316584855318, 0.008912196382880211, 0.033653780817985535, 0.023560022935271263, -0.01914251782000065, -0.020698145031929016, 0.03127878159284592, -0.05391255021095276, -0.031160030514001846, 0.013418762944638729, 0.003642659867182374, 0.03864128887653351, -0.02878502756357193, 0.029378777369856834, -0.018833767622709274, -0.030590029433369637, 0.009339696727693081, 0.0010398057056590915, 0.0032715655397623777, -0.023678772151470184, 0.006655944045633078, 0.0047737546265125275, 0.006857818923890591, 0.042322542518377304, -0.009945321828126907, -0.050017546862363815, -0.0002671877446118742, 0.0031825031619518995, 0.01881001889705658, -0.029782528057694435, -0.039638787508010864, 0.0362425334751606, 0.028025027364492416, -0.022004395723342896, 0.0007859773468226194, 0.03393878415226936, -0.0009737509535625577, 0.013751262798905373, -0.04343879222869873, 0.023643147200345993, -0.00020224628678988665, -0.006673756521195173, 0.02154127135872841, -0.013086262159049511, -0.00438781687989831, 0.025626273825764656, 0.0317537821829319, 1.398560925736092e-05, 0.01134063582867384, 0.028238777071237564, 0.029141278937458992, 0.0075762574560940266, -0.03144503012299538, -0.032965030521154404, 0.0031112530268728733, -0.0007291999063454568, 0.03997128829360008, 0.012468761764466763, -0.023916272446513176, -0.00024751978344284, 0.005610942840576172, 0.0002516017993912101, -0.00042119179852306843, 0.00026199244894087315, 0.0386887863278389, -0.012516262009739876, 6.990485417190939e-05, -0.008069070056080818, -0.013157512992620468, -0.03187252953648567, 0.04417504370212555, -0.005002348683774471, 0.0142500139772892, 0.005521880462765694, 0.028642527759075165, -0.008799383416771889, 0.026885025203227997, -0.025911275297403336, 0.02508002333343029, -0.023548148572444916, 0.030685029923915863, 0.003040002891793847, 0.0080393822863698, -0.041871290653944016, 0.007695007603615522, 0.004087972454726696, 0.030827529728412628, 0.03078003041446209, -0.008555945940315723, -0.0109903234988451, 0.016031265258789062, -0.03579128533601761, -0.017539391294121742, -0.025270024314522743, -0.010824073106050491, -0.011815636418759823, 0.0015882827574387193, -0.008561883121728897, -0.020056894049048424, -0.005337817594408989, 0.023928148671984673, 0.011958136223256588, 0.016316264867782593, -0.011797823943197727, 0.05187004804611206, 0.00040041052852757275, -0.00834813341498375, -0.001176368328742683, -0.04840254783630371, 0.02878502756357193, -0.015318764373660088, -0.0017322673229500651, 0.019819393754005432, 0.0032745343632996082, -0.00860938336700201, 0.0031231280881911516, 0.014487514272332191, -0.009369383566081524, -0.028357528150081635, -0.026932526379823685, 0.01990251988172531, 0.03208627924323082, -0.005723755341023207, -0.007742507383227348, -0.0059523493982851505, 0.024236898869276047, 0.026980025693774223, 0.011103135533630848, 0.007006256841123104, 0.002746096346527338, 0.015152514912188053, 0.012480637058615685, -0.0023052366450428963, -0.00913782138377428, -0.009048759005963802, 0.008591570891439915, 0.011281261220574379, 0.00035643589217215776, 0.013157512992620468, -0.013359387405216694, -0.016066890209913254, -0.010610322467982769, -0.03700253739953041, -0.04080253839492798, -0.022336896508932114, 0.014451889321208, -0.01408376358449459, -0.048592545092105865, -0.010295635089278221, 0.0016224234132096171, 0.02385689876973629, 0.007297194562852383, -0.0029212527442723513, 0.028191277757287025, 0.03857003524899483, -0.017943141981959343, -0.007059694267809391, -0.006234380882233381, -0.01693376712501049, -0.0009002743172459304, 0.036337535828351974, -0.005168598610907793, -0.012112511321902275, -0.04018503800034523, -0.03249002993106842, -0.014024388045072556, -0.004370004404336214, -0.01011750940233469, 0.004910317249596119, -0.006460006348788738, -0.03619503602385521, 0.0007830085814930499, -0.02063876949250698, -0.010188760235905647, -0.01827564276754856, 0.010206572711467743, -0.01941564306616783, 0.036385033279657364, 0.014166888780891895, 0.0021360176615417004, 0.0015942202880978584, -0.0038682848680764437, 0.029711278155446053, -0.01686251536011696, -0.015603764913976192, 0.038617536425590515, 0.024866273626685143, 0.03876003623008728, 0.02337002195417881, -0.04992254823446274, 0.001711486023850739, -0.005587192717939615, -0.03403378278017044, -0.011334698647260666, -0.006353131029754877, -0.004025628790259361, -0.03769128769636154, -0.012433136813342571, 0.007825632579624653, -0.006305631250143051, -0.01884564384818077, 0.0009002743172459304, 0.0036396910436451435, -0.022586271166801453, -0.009945321828126907, -0.00969000905752182, 0.012967512011528015, -0.0009410946513526142, -0.013121888041496277, -0.02316814661026001, 0.0021820333786308765, 0.011263448745012283, 0.002945002866908908, -0.012730012647807598, -0.005144848488271236, -0.018715018406510353, -0.007035944145172834, -0.012433136813342571, 0.016743766143918037, 0.015971889719367027, 0.04042254015803337, 0.0107884481549263, -0.038617536425590515, 0.01616189070045948, -0.02120877057313919, 0.02092377096414566, 0.020710019394755363, 0.00038890662835910916, -0.0023957835510373116, 0.0024596117436885834, 0.013846263289451599, -0.0010249619372189045, 0.00544469291344285, 0.01197001151740551, 0.010556885041296482, -0.007784069981426001, -0.02316814661026001, -0.0009002743172459304, 0.02581627480685711, 0.01533063966780901, -0.02474752441048622, 0.01453501358628273, 0.019890643656253815, 0.0023467992432415485, -0.009244696237146854, -0.022206271067261696, 0.005661411676555872, 0.09172258526086807, -0.01591251604259014, -0.025792524218559265, -0.0013099622447043657, -0.008639071136713028, 0.005005317274481058, 0.035648785531520844, -0.011162511073052883, 0.01553251501172781, -0.032798781991004944, -0.018964393064379692, -0.018952518701553345, -0.012967512011528015, 0.010966572910547256, 0.016221266239881516, -0.006940944120287895, 0.0045006293803453445, 0.035031285136938095, -0.01408376358449459, -0.013834387995302677, 0.03106503002345562, 0.024296272546052933, 0.015781890600919724, 0.012955637648701668, -0.028120027855038643, 0.01117438543587923, 0.02548377402126789, 0.03728753700852394, 0.04165754094719887, 0.026837525889277458, 0.007338757161051035, 0.006911256816238165, 0.02519877441227436, -0.018703142181038857, 0.010028447024524212, -0.0252462737262249, 0.016351889818906784, 0.011797823943197727, -0.009737509302794933, 0.004079066216945648, 0.014119388535618782, 0.008235320448875427, 0.0014086732408031821, 0.01572251506149769, -0.01787189207971096, 0.021030645817518234, -0.005507036577910185, -0.023073147982358932, 0.007065631914883852, -0.03999503701925278, 0.051300048828125, -0.04731004685163498, 0.01262313686311245, 0.013418762944638729, 0.002640705555677414, 0.052345048636198044, 0.011411885730922222, -0.05215505138039589, -3.870395630656276e-06, -0.01512876432389021, 0.014784389175474644, -0.0006334576173685491, 0.012160011567175388, -0.024284398183226585, 0.009244696237146854], [0.04050035774707794, -0.0272702407091856, -0.0028772130608558655, 0.009641335345804691, -0.010451342910528183, 0.009056330658495426, -0.05355047434568405, -0.011722603812813759, 0.03411030396819115, 0.03087027370929718, 0.004078160971403122, -0.003740658052265644, -0.023940211161971092, 0.03948784992098808, -0.04286288097500801, 0.009793211705982685, 0.004590040538460016, -0.002522834809496999, 0.024165214970707893, 0.0068456856533885, 0.014040124602615833, 0.004559102933853865, 0.014546378515660763, 0.01179010421037674, -0.006311305798590183, -0.0298127643764019, -0.008606325834989548, -0.0235127080231905, 0.035010311752557755, -0.025087721645832062, 0.057285506278276443, -0.02621273137629032, -0.015671389177441597, -0.024435216560959816, -0.008763827383518219, -0.026752736419439316, 0.002390646142885089, -0.0171114020049572, 0.012881363742053509, -0.026505235582590103, -0.04963544011116028, 0.002910963259637356, -0.016616396605968475, -0.02497522160410881, -0.06651058793067932, 0.03242278844118118, -0.002549553755670786, -0.012318858876824379, -0.03352529555559158, 0.018101410940289497, 0.015750139951705933, 0.0518854595720768, 0.008640076965093613, 0.03575281798839569, -0.012813863344490528, 0.04153536632657051, 0.011396351270377636, 0.0027140865568071604, -0.011688853614032269, 0.006080678664147854, -0.031297776848077774, 0.024097712710499763, 0.024547716602683067, 0.0283727515488863, -0.027742745354771614, 0.013455118983983994, 0.0005927396123297513, 9.014362149173394e-06, -0.019181419163942337, 0.036000318825244904, 0.00504004443064332, 0.03584281727671623, 0.024277715012431145, -0.013421368785202503, 0.003183778142556548, 0.0024131464306265116, 0.08622076362371445, -0.024030212312936783, -0.00825757347047329, -0.02358020842075348, -0.06282055377960205, 0.0589505210518837, -0.008527575992047787, -0.04716041684150696, -0.009039455093443394, 0.011340100318193436, -0.02972276322543621, -0.017415154725313187, -0.03541531413793564, -0.01596389152109623, -0.0688956081867218, 0.004075348377227783, -0.014276375994086266, 0.01819141022861004, -0.03543781489133835, 0.04743041843175888, -0.008263197727501392, -0.012611362151801586, 0.0025326786562800407, 0.01589639112353325, -0.009855086915194988, 0.031185276806354523, -0.05103045329451561, -0.011092598550021648, 0.04009535536170006, -0.03915034607052803, -0.02181394398212433, 0.03663032501935959, -0.03062277100980282, 0.04302038252353668, 0.027877746149897575, -0.012701362371444702, -0.018495162948966026, 0.0682206079363823, -0.01046821754425764, -0.026730237528681755, 0.044505394995212555, 0.004753167275339365, 0.009365707635879517, -0.029137758538126945, 0.009405083023011684, -0.004080973565578461, 0.04356038570404053, -0.019620174542069435, 0.020193928852677345, 0.01616639271378517, -0.0328952930867672, -0.01125010009855032, -0.021273938938975334, -0.009140705689787865, 0.024525217711925507, -0.04117536544799805, 0.05085045099258423, -0.022005194798111916, -0.015840141102671623, 0.01188010536134243, -0.0035578440874814987, -0.023985212668776512, -0.012678862549364567, -0.0026873676106333733, 0.04986044019460678, -0.0037687832955271006, 0.029295260086655617, 0.028080249205231667, -0.011086973361670971, -0.0019645486027002335, 0.007261939346790314, 0.007807569112628698, -0.03314279392361641, -0.017561405897140503, 0.005602549761533737, -0.008055071346461773, -0.028867755085229874, 0.03447030484676361, 0.03350279852747917, 0.022916452959179878, 0.004227224737405777, 0.04842042922973633, 0.01671764813363552, -0.007683818228542805, -0.00918570626527071, -0.004719416610896587, -0.03309779241681099, -0.023985212668776512, -0.011621353216469288, 0.007813193835318089, -0.008482575416564941, -0.03361529856920242, -0.03804783523082733, 0.00012937614519614726, -0.03465030714869499, -0.0008444606210105121, -0.02256770059466362, -0.035077810287475586, -0.03431280329823494, -0.04178287088871002, 0.08680576831102371, 0.03676532581448555, -0.06552057713270187, -0.019822675734758377, 0.05103045329451561, -0.0054872361943125725, -0.07708568125963211, -0.04891543462872505, -0.023197704926133156, 0.06511557847261429, -0.018382662907242775, 0.0525604672729969, -0.02947526052594185, -0.015041382983326912, 0.050355445593595505, -0.0038953470066189766, -0.04887043312191963, 0.02179144322872162, -0.001780328224413097, -0.027810245752334595, -0.017561405897140503, -0.016301393508911133, 0.03462780639529228, 0.02004767768085003, -0.027832746505737305, -0.04698041453957558, 0.030150266364216805, 0.04068036004900932, -0.031455278396606445, 0.019181419163942337, 0.020835185423493385, -0.03170277923345566, 0.04828542843461037, -0.041017863899469376, 0.030330268666148186, 0.007925694808363914, -0.0018422037828713655, 0.005459110718220472, -0.018202660605311394, -0.04158036783337593, 0.06079553812742233, -0.03397529944777489, 0.0428403802216053, -0.033660296350717545, -0.05130045488476753, -0.04662041366100311, -0.008100071921944618, -0.01761765591800213, -0.03215278312563896, -0.005549111869186163, -0.012420110404491425, -0.029340259730815887, 0.015288885682821274, -0.004210349638015032, -0.09333083033561707, 0.0051694209687411785, -0.011745103634893894, -0.018033910542726517, -0.0033187794033437967, -0.02238769829273224, 0.018821416422724724, -0.0545404814183712, 0.012948865070939064, -0.0032709664665162563, -0.01618889346718788, 0.0540904775261879, 0.00654755812138319, -0.009922588244080544, 0.02034018002450466, -0.011058848351240158, -0.0011482132831588387, -0.010704469867050648, 0.05134545639157295, 0.02855275198817253, 0.02747274376451969, 0.004460664466023445, 0.017370153218507767, -0.02018267847597599, 0.030667772516608238, -0.0011496195802465081, 0.005295984447002411, -0.023467708379030228, 0.04358288645744324, -0.04052285850048065, -0.06570058315992355, 0.07263064384460449, 0.02486271969974041, -0.021228937432169914, -0.07101062685251236, -0.02479521930217743, 0.00026420154608786106, 0.0008367261616513133, -0.0028940881602466106, 0.011677603237330914, -0.052740465849637985, 0.04117536544799805, 0.010856346227228642, -0.025245223194360733, -0.015637638047337532, 0.0038953470066189766, -0.007695068139582872, -0.019732674583792686, -0.03926284611225128, 0.0007087562698870897, -0.02157769165933132, -0.03195028379559517, -0.0012775894720107317, -0.03530281409621239, -0.009230706840753555, -0.0011046191211789846, -0.00018369303143117577, 0.01759515516459942, 0.0007882101344875991, 0.0051131704822182655, 0.01238635927438736, -0.005751613527536392, 0.029430260881781578, -0.007846944965422153, 0.026347734034061432, -0.024435216560959816, 0.0011960262199863791, 0.019530173391103745, -0.027990248054265976, -7.642157288501039e-05, 0.005501298699527979, 0.007571317255496979, -0.007194438949227333, -0.011396351270377636, 0.01823641173541546, 0.0014224344631657004, -0.028800254687666893, 0.0074700661934912205, -0.02382771112024784, 0.009725711308419704, 0.050355445593595505, 0.01837141253054142, -0.016458895057439804, -0.06655558943748474, 0.0012754800263792276, 0.03818283975124359, -0.011958856135606766, -0.007295689545571804, 0.030195267871022224, -0.021960195153951645, 0.051795460283756256, -0.03582031652331352, 0.03564031422138214, -0.05908552184700966, 0.008043820969760418, 0.002285176422446966, 0.030195267871022224, 0.07335065305233002, -0.026707736775279045, 0.00041414430597797036, -0.04142286628484726, 0.020385179668664932, 0.03294029086828232, -0.047025416046381, -0.033862799406051636, 0.0008135228417813778, 0.008465699851512909, 0.016920149326324463, -0.04878043383359909, -0.009990088641643524, 0.036360323429107666, -0.032017782330513, -0.007318189833313227, -0.0032456538174301386, 0.008285698480904102, 0.01717890240252018, -0.02731524221599102, 0.013286367990076542, -0.011520101688802242, 0.07681567966938019, -0.008161947131156921, 0.015333886258304119, -0.02612273208796978, -0.02603273093700409, -0.0377553328871727, -0.05022044479846954, 0.023107703775167465, 0.006136929150670767, -0.024682719260454178, 0.02364770881831646, 0.010766345076262951, 0.004227224737405777, 0.009646960534155369, 0.05733050778508186, -0.00019177903595846146, -0.013781372457742691, -0.016863899305462837, -0.0202051792293787, -0.03674282506108284, 0.012993864715099335, 0.04506789892911911, -0.015648888424038887, 0.006013178266584873, 0.012026356533169746, -0.031410276889801025, 0.01738140359520912, -0.0069469367153942585, -0.04182786867022514, -0.010535717941820621, -0.032625287771224976, -0.0015806390438228846, -0.03098277375102043, 0.006350681185722351, 0.01066509447991848, 0.015232634730637074, 0.03060027025640011, -0.059715528041124344, -0.02954276092350483, 0.017055151984095573, 0.03883534297347069, -0.008066321723163128, 0.015480137430131435, 0.042277876287698746, -0.02621273137629032, -0.05098545178771019, 0.044460393488407135, 0.034897807985544205, 0.021127687767148018, 0.018337663263082504, -0.04396538808941841, -0.039645351469516754, 0.009022579528391361, -0.009354458190500736, 0.047925423830747604, 0.042165372520685196, -0.03345779702067375, -0.003774408483877778, -0.020655183121562004, 0.012150107882916927, 0.00398534769192338, 0.01049071829766035, -0.03813783824443817, 0.02080143429338932, 0.010260091163218021, 0.04122036695480347, 0.0030853399075567722, 0.04266037791967392, 0.01029946655035019, -0.04016285389661789, -0.0355503149330616, 0.0013197773369029164, -0.0395328514277935, -0.07447566092014313, -0.01680764928460121, -0.046800415962934494, -0.014523878693580627, -0.009196956641972065, -0.047970425337553024, 0.012836364097893238, -0.044482894241809845, 0.016357645392417908, -0.006316930986940861, 0.029047757387161255, 0.004230037331581116, -0.045495402067899704, -0.03188278153538704, -0.014400127343833447, -0.054225482046604156, -0.013432619161903858, -0.0026142417918890715, 0.007278814446181059, -0.01487263198941946, 0.09315082430839539, 0.004508477635681629, -0.039825353771448135, -0.05220046266913414, -0.04963544011116028, -0.014175125397741795, 0.02124018780887127, 0.030667772516608238, 0.0009513365803286433, -0.011632602661848068, -0.023152705281972885, -0.03674282506108284, -0.03674282506108284, -0.0044381641782820225, 0.04540540277957916, -0.023422706872224808, 0.0282602496445179, -0.005400047637522221, 0.01194760575890541, 0.018157660961151123, 0.018056409433484077, -0.002016580430790782, 0.04842042922973633, -0.024300215765833855, 0.06048053503036499, 0.02391771227121353, 0.021656442433595657, -0.08316073566675186, 0.014670129865407944, -0.019350171089172363, -0.013016365468502045, -0.008381323888897896, 0.042142871767282486, 0.0250652227550745, 0.03102777525782585, -0.013353868387639523, 0.007858194410800934, 0.006502557545900345, -0.02380521036684513, 0.0005150436190888286, -0.05688050389289856, -0.050580449402332306, 0.05094045028090477, 0.033817797899246216, 0.07227063924074173, 0.013421368785202503, -0.066690593957901, -0.03681032732129097, -0.04538290202617645, -0.005650362465530634, -0.01793265901505947, -0.009855086915194988, 0.014242625795304775, -0.037282831966876984, -0.0067781852558255196, -0.02963276207447052, 0.044437892735004425, -0.012071357108652592, 0.04281787946820259, -0.007318189833313227, 0.004500039853155613, 0.025335224345326424, 0.010321966372430325, 0.005706612952053547, -0.004199099726974964, -0.027720244601368904, -0.020722683519124985, -0.05832051485776901, 0.004590040538460016, -0.015221385285258293, -0.0085557010024786, -0.036202821880578995, -0.01175635401159525, -0.01722390204668045, 0.0022106445394456387, 0.04297538101673126, -0.02612273208796978, -0.023242706432938576, 0.0005923880380578339, -0.009146330878138542, 0.012600111775100231, -0.013500119559466839, -0.021825192496180534, 0.04178287088871002, 0.015648888424038887, -0.055215489119291306, -0.045855406671762466, -0.015738889575004578, -0.016875149682164192, 0.0043819136917591095, -0.08055071532726288, 0.00013104607933200896, -0.0009632897563278675, -0.0113176004961133, -0.014085125178098679, 0.05238046497106552, -0.01594139076769352, 0.003141590394079685, 0.013713871128857136, 0.003186590736731887, 0.011992606334388256, 0.0004950044094584882, 0.021026436239480972, -0.018382662907242775, 0.024457717314362526, -0.020655183121562004, -0.010316341184079647, -0.011086973361670971, 0.028912756592035294, -0.017763907089829445, 0.02027267962694168, -0.04533790051937103, -0.011711353436112404, 0.04250287637114525, 0.0009042267338372767, -0.04941043630242348, 0.010625719092786312, 0.012307609431445599, 0.0068794358521699905, -0.0066375588066875935, -0.016155142337083817, -0.010603219270706177, -0.021195188164711, 0.03897034376859665, -0.01543513685464859, 0.01761765591800213, 0.005194733384996653, 0.004789730068296194, -0.029092757031321526, 0.018607664853334427, 0.024187713861465454, -0.02481772005558014, 0.010147590190172195, 0.009230706840753555, 0.008578200824558735, -0.02144268900156021, 0.015018883161246777, 0.045607902109622955, 0.009444458410143852, 0.004725041799247265, -0.015480137430131435, -0.0021684567909687757, -0.0037490956019610167, -0.0036759700160473585, -0.014377627521753311, -0.04524790123105049, -0.02183644287288189, -0.0353253111243248, -0.006665683817118406, 0.0028631503228098154, -0.0033047166652977467, -0.006232555024325848, -0.003335654502734542, 0.037237830460071564, -0.0056925504468381405, 0.0474754199385643, -0.04520289972424507, 0.02718024142086506, -0.024637717753648758, -0.017831407487392426, 0.03062277100980282, 0.011598852463066578, -0.036180321127176285, -0.025897730141878128, -0.024547716602683067, -0.016773898154497147, 0.004778479691594839, 0.029025256633758545, 0.007155063562095165, -0.02355770952999592, 0.00971446093171835, -0.009461333975195885, -0.010676344856619835, -0.019215170294046402, -0.014276375994086266, -0.007312564644962549, -0.03606782108545303, -0.017448903992772102, -0.0046997289173305035, -0.00506816990673542, -0.01908016949892044, -0.010974472388625145, -0.03606782108545303, -0.008746952749788761, 0.00856695044785738, -0.04054535925388336, 0.018405163660645485, -0.026370232924818993, 0.00592317758128047, 0.007070687599480152, -0.0130276158452034, -0.011970105580985546, -0.03550531342625618, 0.03424530476331711, 0.0028167436830699444, 0.013792621903121471, 8.538649854017422e-05, 0.009123831056058407, -0.005087857600301504, -0.017437653616070747, 0.008763827383518219, -0.04414539039134979, -0.013263867236673832, -0.016841398552060127, -0.0008064915309660137, -0.0024623656645417213, 0.01425387617200613, -0.011233224533498287, 0.0259427297860384, 0.00977071188390255, -0.022421449422836304, 0.03584281727671623, -0.0105975940823555, 0.01488388143479824, -0.025852728635072708, 0.010305091738700867, 0.02486271969974041, 0.022275196388363838, -0.005250983871519566, -0.016818899661302567, 0.0075263166800141335, -0.0283727515488863, -0.02091393433511257, -0.01306136604398489, 0.05949052795767784, -0.006586933508515358, 0.01775265671312809, -0.019485171884298325, -0.043200381100177765, -0.01487263198941946, -0.0029925263952463865, -0.04378538951277733, -0.014760131016373634, -0.01642514578998089, -0.03924034908413887, 0.021622691303491592, 0.00017367341206409037, 0.011868854984641075, -0.019833926111459732, -0.024210214614868164, -0.028215250000357628, 0.04842042922973633, -0.010833846405148506, 0.0017367341788485646, -0.005883802194148302, -0.015243885107338428, -0.0161213930696249, 0.02472771890461445, 0.02983526512980461, 0.028845256194472313, -0.044505394995212555, 0.020441431552171707, -0.024637717753648758, 0.014478878118097782, 0.041062865406274796, 0.0038194088265299797, -0.02976776286959648, -0.017415154725313187, -0.04502289742231369, 0.015187634155154228, 0.02612273208796978, -0.050580449402332306, -0.05238046497106552, -0.0092757074162364, 0.019800174981355667, 0.012600111775100231, 0.010350091382861137, 0.006800685077905655, -0.018978917971253395, -0.009146330878138542, -0.021825192496180534, 0.0003028737846761942, 0.01786515861749649, -0.01360137015581131, -0.0024497092235833406, 0.0018647040706127882, 0.005962552968412638, -0.0092194564640522, -0.057465508580207825, -0.012656361795961857, -0.008640076965093613, 0.0041681621223688126, -0.007976320572197437, -0.011936355382204056, 0.006198804825544357, 0.0069919368252158165, -0.04421289265155792, 0.0022528325207531452, 0.002891275566071272, 0.012026356533169746, 0.0025087723042815924, 0.02947526052594185, -0.02082393504679203, -0.012712612748146057, -0.022578949108719826, -0.024682719260454178, 0.013162616640329361, 0.0015032945666462183, -0.011098223738372326, -0.02619023248553276, 0.03089277446269989, -0.04495539888739586, 0.009348833002150059, -0.020013926550745964, -0.00865695159882307, 0.04281787946820259, -0.04396538808941841, -0.04000535607337952, -0.009078830480575562, 0.005391610320657492, 0.010175715200603008, 0.001391496742144227, 0.005290359258651733, -0.014276375994086266, -0.01101947296410799, 0.02243269793689251, -0.029857764020562172, 0.009855086915194988, -0.0029306509532034397, -0.0030572146642953157, -0.006733184680342674, 0.005838801618665457, -0.03084777295589447, 0.003180965781211853, -0.01546888705343008, -0.010912596248090267, 0.002590335439890623, 0.0020939249079674482, -0.05004044249653816, 0.01958642341196537, -0.006896310951560736, 0.006800685077905655, 0.00043453508988022804, 0.009106955491006374, 0.0037659709341824055, -0.010771970264613628, 0.013837622478604317, -0.013770122081041336, -0.015716388821601868, -0.01128385029733181, -0.011598852463066578, 0.06192054972052574, -0.0006454744725488126, -0.008167572319507599, 0.006530683021992445, 0.015030133537948132, 0.0035831567365676165, -0.024435216560959816, 0.019788924604654312, 0.00045984782627783716, 0.02747274376451969, 0.010130714625120163, -0.010861971415579319, -0.000145899728522636, 0.013173867017030716, -0.04414539039134979, -0.006913186050951481, 0.000548090785741806, -0.018033910542726517, -0.015086383558809757, -0.029137758538126945, 0.02077893353998661, 0.06759060174226761, 0.03172527998685837, -0.03453780710697174, 0.016020141541957855, 0.007380065508186817, -0.02137518860399723, 0.018067659810185432, 0.011008222587406635, 0.05008544400334358, 0.020542681217193604, -0.03447030484676361, 0.013522619381546974, -0.015592638403177261, -0.021780192852020264, 0.0022429886739701033, -0.051660455763339996, 0.030465269461274147, 0.03071277216076851, 0.006243805401027203, -0.03082527220249176, 0.020475180819630623, -0.00368722015991807, -0.007818819023668766, 0.03586531803011894, 0.008960704319179058, -0.023062704131007195, 0.016042642295360565, 0.0023372082505375147, 0.011801354587078094, -0.0039009719621390104, 0.001843610079959035, 0.028980256989598274, -0.014388877898454666, 0.001437903381884098, 0.010923846624791622, 0.03676532581448555, 0.030082765966653824, -0.0006778184906579554, -0.07038062065839767, 0.007492566481232643, -0.01598639227449894, 0.03240028768777847, -0.044257890433073044, 0.030307767912745476, -0.04608040675520897, 0.03955535218119621, 0.029025256633758545, -0.008347573690116405, -0.01194760575890541, 0.007126938086003065, 0.02598772943019867, 0.004719416610896587, 0.020925184711813927, 0.005388797726482153, 0.0331202931702137, -0.03073527291417122, -0.009354458190500736, 0.017966408282518387, -0.003116277512162924, -0.01788765750825405, 0.04578790441155434, -0.017741406336426735, 0.023940211161971092, 0.0017339215846732259, -0.0088875787332654, 0.017651407048106194, 0.03883534297347069, -0.007447565905749798, 0.015480137430131435, -0.013185116462409496, -0.0377553328871727, 0.016087641939520836, 0.01993517577648163, 0.03890284523367882, 0.0108732208609581, 0.030465269461274147, -0.001648139557801187, 0.02472771890461445, 0.07416065782308578, -0.0011489164317026734, 0.023940211161971092, 0.0002541819412726909, -0.04828542843461037, 0.03534781187772751, -0.006120054051280022, 0.009360082447528839, 0.01665014773607254, 0.008184447884559631, 0.05611549690365791, 0.003754720790311694, 0.03802533820271492, 0.03586531803011894, -0.001797203440219164, 0.027630245313048363, -0.02484022080898285, 0.025515226647257805, -0.02481772005558014, -0.020385179668664932, -0.08676076680421829, -0.01004633866250515, -0.04873543232679367, -0.02830525115132332, 0.0108732208609581, 0.008971954695880413, 0.03204028308391571, -0.0033581547904759645, 0.009832587093114853, 0.011418851092457771, 0.012105107307434082, -0.04124286398291588, 0.03354779630899429, 0.003796908538788557, 0.0049162935465574265, 0.025087721645832062, -0.01306136604398489, -0.013545120134949684, 0.00717193866148591, -0.015018883161246777, -0.053910478949546814, -0.0008318042382597923, -0.009326332248747349, -0.011925105936825275, -0.022241447120904922, 0.0306902714073658, -0.008617576211690903, -0.01892266795039177, -0.059760529547929764, 0.04050035774707794, -0.013331367634236813, 0.007650067564100027, 0.02961026318371296, 0.023130204528570175, -0.014737630262970924, -0.013680120930075645, 0.0032850292045623064, 0.011542602442204952, 0.025177722796797752, -0.007036937400698662, -0.0235127080231905, -0.028935255482792854, 0.014703880064189434, -0.0030206518713384867, 0.01642514578998089, 0.005951302591711283, 0.01422012597322464, -0.01543513685464859, 0.01974392496049404, -0.02382771112024784, 0.05787051096558571, -0.003847534069791436, 0.028192749246954918, 0.010355716571211815, 0.05544048920273781, -0.01431012712419033, -0.0017282965127378702, 0.021273938938975334, 0.026977738365530968, 0.001167197828181088, 0.015041382983326912, -0.02115018665790558, 0.021960195153951645, 0.013792621903121471, 0.01060884352773428, 0.01413012482225895, -0.029407760128378868, 0.00871320255100727, -0.019282670691609383, -0.032580289989709854, 0.04005035385489464, 0.013353868387639523, -0.009618835523724556, 0.011868854984641075, -0.0028828380163758993, 0.004955668933689594, -0.0006525057833641768, -0.0130276158452034, 0.002732367953285575, 0.025447726249694824, 0.009900087490677834, 0.008415074087679386, -0.0020039239898324013, 0.03557281568646431, -0.0406353585422039, -0.024390216916799545, 0.04011785611510277, -0.00018949386139865965, 0.0020207990892231464, 0.005850051995366812, 0.023175206035375595, 0.037395332008600235, 0.014411377720534801, 0.02391771227121353, 0.002272520214319229, 0.020385179668664932, 0.009556959383189678, 0.0009161799680441618, 0.018821416422724724, 0.016233893111348152, -0.013432619161903858, 0.017898907884955406, -0.03793533518910408, 0.025312723591923714, 0.028147749602794647, 0.028777755796909332, 0.0008873516344465315, -0.015570137649774551, 0.020947685465216637, -0.006975061725825071, -0.03699032589793205, 0.04061286151409149, -0.029407760128378868, -0.03955535218119621, 0.02956526167690754, -0.021723942831158638, -0.01609889231622219, -0.0005839504883624613, -0.021667692810297012, 0.030037766322493553, 0.0437178872525692, 0.013308867812156677, -0.007897569797933102, 0.017471404746174812, 0.0010455561568960547, -0.018315162509679794, -0.002467990620061755, 0.007773818913847208, 0.022241447120904922, -0.007931319996714592, 0.00951758399605751, 0.02486271969974041, -0.011098223738372326, 0.007351940032094717, -0.0022795514669269323, -0.012847613543272018, 0.007785068824887276, 0.02064393274486065, -0.02513272315263748, 0.013860122300684452, -0.01237510982900858, 0.014478878118097782, 0.02484022080898285, 0.02621273137629032, 0.0006011772202327847, 0.00957383494824171, -0.022736450657248497, -0.02360270917415619, -0.0092757074162364, 0.01194760575890541, -0.027697745710611343, 0.033750299364328384, 0.036045320332050323, 0.000631060276646167, 0.0014540753327310085, -0.019946426153182983, -0.005495673511177301, -0.005667237564921379, 0.00504004443064332, -0.0053184847347438335, 0.01908016949892044, -0.012262608855962753, 0.014411377720534801, 0.019845176488161087, -0.03084777295589447, -0.018663914874196053, 0.002868775511160493, 0.03199528157711029, -0.02130768820643425, -0.02358020842075348, -0.0016439207829535007, 0.001833766233175993, 0.01658264733850956, -0.011745103634893894, -0.02628023363649845, -0.05062544718384743, -0.008645701222121716, 0.013320118188858032, 0.0074138157069683075, -0.0037322205025702715, 0.017718907445669174, -0.009039455093443394, -0.017831407487392426, -0.0209814365953207, 0.010749470442533493, 0.03793533518910408, 0.002829400124028325, 0.02389521151781082, 0.006558808032423258, -0.004682853817939758, 0.01425387617200613, -0.04385288804769516, 0.029025256633758545, -0.0028476815205067396, 0.0025284599978476763, 0.01550263725221157, 0.045562904328107834, -0.020238928496837616, 0.025695227086544037, 0.011531352065503597, 0.00543661043047905, -0.015187634155154228, 0.02059893310070038, -0.009703210555016994, 0.003279404016211629, -0.021825192496180534, -0.02378271147608757, -0.016875149682164192, 0.02194894477725029, 0.006969436537474394, -0.02367020957171917, -0.001404153066687286, -0.02151019126176834, 0.03417780250310898, 0.015817640349268913, 0.034717805683612823, -0.010462592355906963, -0.01182385440915823, -0.006007553078234196, 0.003442530520260334, -0.007830069400370121, 0.01490638218820095, 0.013983873650431633, -0.016751399263739586, -0.00858945120126009, 0.02855275198817253, -0.016458895057439804, -0.012363859452307224, -0.025200223550200462, 0.002446896629408002, -0.01837141253054142, 0.006851310841739178, 0.029947765171527863, 0.01125010009855032, 0.010715720243752003, -0.03530281409621239, -0.024502716958522797, -0.01823641173541546, 0.05481048673391342, 0.019091419875621796, 0.0195414237678051, 0.022837702184915543, -0.035032808780670166, -0.011621353216469288, 0.011418851092457771, 0.06408056616783142, 0.012836364097893238, 0.007233813870698214, 0.023445207625627518, 0.03519031032919884, -0.0259427297860384, 0.006716309580951929, -0.017471404746174812, -0.024322714656591415, 0.05197545886039734, -0.012892614118754864, -0.01773015782237053, 0.03573031723499298, -0.01784265786409378, 0.009675085544586182, -0.013612620532512665, 0.03071277216076851, -0.006558808032423258, -0.002625491935759783, 0.004159724339842796, 0.012251358479261398, -0.002171269152313471, 0.011025097221136093, -0.015232634730637074, 0.006181929726153612, -0.009720086120069027, -0.00431160070002079, 0.01063134428113699, -0.004457851871848106, 0.028777755796909332, -0.013477619737386703, 0.028755255043506622, -0.04007285460829735, 0.03903784602880478, 0.036337822675704956, -0.02135268971323967, -0.01594139076769352, 0.011379475705325603, 0.0030797147192060947, 0.022770201787352562, -0.0035100311506539583, -0.001975798746570945, -0.008600701577961445, 0.011255724355578423, -0.020925184711813927, 0.01706640049815178, -0.02850775234401226, -0.009202581830322742, 0.001897048088721931, -0.018090160563588142, -0.008240697905421257, 0.011700103990733624, 0.004469102248549461, -0.003515656106173992, 0.014861381612718105, 0.022905202582478523, 0.010760719887912273, -0.008583826012909412, -0.0034678431693464518, 0.010023838840425014, 0.0002678929886315018, -0.018045159056782722, 0.004792542662471533, -0.018247662112116814, 0.016391394659876823, -0.007863819599151611, 0.013432619161903858, 0.000795944535639137, -0.0005748097901232541, -0.03343529626727104, -0.021802693605422974, -0.03307529166340828, 0.012521361000835896, -0.011131973937153816, 0.0434928834438324, -0.021937694400548935, -0.028822755441069603, -0.006721934769302607, 0.0009956337744370103, 0.02036268077790737, -0.003538156393915415, -0.03894784674048424, 0.025290224701166153, 0.03352529555559158, -0.0415128692984581, 0.002023611683398485, 0.006266305688768625, 0.010513218119740486, -0.01004633866250515, 0.020632682368159294, 0.01795515976846218, 0.027697745710611343, -0.02027267962694168, -0.000278967316262424, 0.0008198510040529072, -0.0005329734995029867, -0.045517902821302414, -8.024484850466251e-05, 0.011503227055072784, 0.007391315419226885, 0.03638282045722008, -0.009247581474483013, -0.06925561279058456, 0.014085125178098679, -0.00654755812138319, 0.022770201787352562, -0.0009597741300240159, -0.0308027733117342, -0.00022095898748375475, 0.019800174981355667, -0.032467786222696304, 0.002331583062186837, 0.026617735624313354, -0.005028794519603252, -0.0025411162059754133, -0.012791363522410393, 0.031230276450514793, 0.004480352159589529, 0.030195267871022224, 0.029880264773964882, -0.025177722796797752, 0.032017782330513, 0.017302652820944786, -0.005855676718056202, -0.0037322205025702715, -0.0038644091691821814, 0.02349020726978779, 0.007925694808363914, -0.009393833577632904, -0.026977738365530968, -0.0023217392154037952, 0.005695363041013479, -0.0012705581029877067, 0.048105426132678986, 0.007261939346790314, -0.023467708379030228, -0.021408939734101295, 0.014793881215155125, 0.03321029245853424, 0.000202677576453425, -0.00820132251828909, 0.007200063671916723, -0.019856425002217293, -0.04315538331866264, 0.0048600430600345135, 0.006744434591382742, -0.03690032660961151, 0.028710253536701202, -0.012780113145709038, 0.04140036553144455, -0.015052633360028267, -0.0030094017274677753, -0.029362760484218597, 0.02183644287288189, 0.010316341184079647, 0.029947765171527863, -0.008133822120726109, -0.016875149682164192, -0.001618608133867383, -0.011632602661848068, -0.01974392496049404, 0.027540244162082672, 0.02972276322543621, 0.005160983186215162, -0.006761309690773487, -0.019597673788666725, -0.0010554000036790967, -0.030487770214676857, -0.008341948501765728, -0.006013178266584873, 0.0005069576436653733, -0.021566441282629967, 0.02034018002450466, -0.016863899305462837, -0.0017170464852824807, -0.022578949108719826, 0.013781372457742691, 0.03483030945062637, -0.013916373252868652, -0.02353520877659321, -0.02077893353998661, 0.0007572723552584648, 0.005217233672738075, -0.023175206035375595, -0.03060027025640011, -0.03397529944777489, 0.014017623849213123, 0.005968177691102028, 0.027945248410105705, 0.027742745354771614, 0.005042857024818659, -0.031500279903411865, -0.011553851887583733, -0.00032730758539400995, 0.005900677293539047, 0.018135160207748413, -0.03062277100980282, 0.0073463148437440395, 0.01247636042535305, -0.025245223194360733, -0.036022819578647614, 0.011480726301670074, 0.03528031334280968, 0.0004802386392839253, -0.028642753139138222, 0.0045422278344631195, -0.005574424285441637, -0.009078830480575562, 0.01773015782237053, 0.042142871767282486, 0.02089143544435501, 0.005726300645619631, -0.021071435883641243, 0.002297832863405347, 0.010451342910528183, -0.018450163304805756, 0.01945142261683941, -0.0032259661238640547, -0.0026240856386721134, -0.021015185862779617, -0.0399603545665741, 0.005205983761698008, 0.06304556131362915, 0.006958186626434326, -0.038430340588092804, 0.003926284611225128, 0.00770631805062294, 0.02183644287288189, 0.017808908596634865, -0.006744434591382742, 0.03406530246138573, -0.01704390160739422, -0.01850641332566738, 0.010884471237659454, 0.017190152779221535, -0.015558888204395771, 0.02504272200167179, -0.025897730141878128, -0.036180321127176285, 0.0029334635473787785, 0.019068919122219086, -0.007492566481232643, -0.036292821168899536, -0.007228189148008823, 0.006266305688768625, -0.00490785576403141, 0.02190394327044487, -0.02250020019710064, -0.00018703289970289916, -0.03811533749103546, 0.0092194564640522, -0.039690352976322174, -0.005023169331252575, -0.020013926550745964, 0.062280550599098206, -0.05089545249938965, 0.02704523876309395, 0.007745693437755108, -0.031297776848077774, -0.02206144481897354, 0.0024398653768002987, -0.028867755085229874, 0.010884471237659454, 0.016110142692923546, 0.01256636157631874, 0.013286367990076542, -0.009247581474483013, 0.017583906650543213, -0.027607744559645653, 0.01773015782237053, 0.009759461507201195, -0.004716604482382536, 0.0009372739004902542, -0.019102668389678, -0.01191385556012392, -0.00882007833570242, 0.0039009719621390104, -0.000993524445220828, -0.03213028609752655, 0.005425360519438982, -0.015322635881602764, -0.010440092533826828, -0.010738220065832138, 0.012780113145709038, 0.014062624424695969, -0.019878925755620003, 0.02972276322543621, 0.01665014773607254, 0.006300055887550116, -0.0068456856533885, -0.03672032430768013, 0.005740363150835037, -0.011745103634893894, -0.011520101688802242, 0.014613879844546318, 0.011902605183422565, 0.01474888063967228, 0.006986312102526426, 0.00030340111698023975, -0.029340259730815887, 0.007177563384175301, 0.003164090448990464, 0.02302895486354828, 0.030532769858837128, -0.02486271969974041, -0.008696326985955238, 0.021915193647146225, 0.018843917176127434, 0.004682853817939758, -0.01040071714669466, -0.005090670194476843, 0.0129713648930192, -0.0041119116358459, -0.05679050460457802, 0.03197278454899788, 0.013286367990076542, -0.0006370368646457791, -0.028102748095989227, -0.01638014428317547, 0.0306902714073658, -0.004674416501075029, -0.015907641500234604, -0.02194894477725029, -0.031050274148583412, 0.059760529547929764, -0.00417941203340888, -0.009990088641643524, 0.0401853546500206, -0.02596523053944111, 0.004848793148994446, 0.018360162153840065, 0.00549286138266325, 0.039600349962711334, -0.03233278542757034, -6.670957372989506e-05, 0.019642673432826996, -0.029970265924930573, -0.014040124602615833, 0.025177722796797752, 0.010074464604258537, -0.00983821228146553, 0.029947765171527863, 0.007312564644962549, -0.01708890125155449, -0.004426914267241955, 0.01945142261683941, 0.022230196744203568, 0.03435780480504036, -0.010411967523396015, 0.021543940529227257, 0.025537725538015366, 0.0225226990878582, 0.03708032891154289, 0.027765246108174324, -0.0044437893666327, -0.029092757031321526, -0.006378806661814451, -0.01883266679942608, 0.03181528300046921, -0.04819542542099953, 0.0260552316904068, 0.04011785611510277, -0.006294430699199438, 0.01729140244424343, 0.020497681573033333, -0.023355206474661827, -0.006125679239630699, -0.03186028078198433, 0.0008543044677935541, 0.008572575636208057, 0.018135160207748413, -0.010524468496441841, -0.006941311527043581, -0.027517743408679962, 0.044257890433073044, -0.03402030095458031, -0.0021783006377518177, -0.007796319201588631, -0.0012494642287492752, 0.03924034908413887, -0.010485093109309673, -0.01356761995702982, -0.031162776052951813, -0.036337822675704956, 0.028935255482792854, -0.026932738721370697, 0.011576352640986443, 0.0035465939436107874, 0.02956526167690754], [0.02032078616321087, 0.03455294668674469, 0.03008795529603958, 0.0575375072658062, -0.019179169088602066, -0.004468163009732962, -0.004319118335843086, -0.002064424566924572, 0.01851956732571125, -0.007078026887029409, 0.006053742486983538, 0.0037292828783392906, 0.010033546946942806, 0.006811649538576603, -0.0010932571021839976, 0.0422905758023262, -0.014460484497249126, 0.011707918718457222, -0.019585076719522476, 0.0029253941029310226, -0.03450220823287964, 0.06535124033689499, -0.018544938415288925, 0.017098888754844666, -0.010382374748587608, 0.011904530227184296, 0.028515061363577843, -0.008092797361314297, 0.07600633800029755, 0.004436451476067305, 0.07950729876756668, -0.029656678438186646, 0.0252043716609478, -0.0021849286276847124, 0.022845029830932617, 0.015196193940937519, -0.054138027131557465, 0.0380285382270813, 0.021284818649291992, -0.0023720269091427326, -0.05297103896737099, -0.036430273205041885, 0.006094967480748892, -0.029428355395793915, -0.01784728281199932, 0.07529599964618683, -0.0019217223161831498, -0.034578315913677216, -0.004680630750954151, 0.02507752552628517, 0.005118250381201506, 0.02818526141345501, -0.013699406757950783, -0.07108470052480698, -0.005549528170377016, -0.04467528685927391, 0.005181673914194107, 0.02217274345457554, 0.005964950192719698, -0.008949010632932186, 0.0021976132411509752, -0.0190650075674057, -0.0503072664141655, 0.004455478396266699, 0.0231240913271904, -0.0257498100399971, -0.0058698151260614395, -0.01504397764801979, -0.06951180100440979, 0.029022445902228355, 0.005457564722746611, 0.029910370707511902, 0.04548710212111473, -0.02141166478395462, -0.014397061429917812, 0.023859800770878792, -0.02917466312646866, -0.018633730709552765, -0.010667778551578522, 0.004192272201180458, -0.03511107340455055, -0.011111740954220295, 0.008048401214182377, -0.01217090804129839, -0.04995209723711014, 0.014067261479794979, -0.0617995448410511, -0.016147540882229805, -0.0410982184112072, -0.04759275168180466, -0.04579153656959534, -0.008004005067050457, -0.0016347324708476663, 0.0327770970761776, -0.06185028329491615, -0.008511390537023544, 0.013902360573410988, -0.009805223904550076, -0.025597594678401947, 0.05200700834393501, 0.01603337936103344, -0.025508802384138107, -0.010642409324645996, 0.0038022196386009455, 0.055355750024318695, 0.0038212465588003397, -0.09939680248498917, 0.038459815084934235, -0.018456144258379936, -0.01765701361000538, 0.025356587022542953, -0.029123922809958458, -0.0149044468998909, 0.08356638252735138, -0.03942384943366051, 0.0441679023206234, -0.01766969822347164, -0.010762913152575493, 0.0055558704771101475, 0.01892547681927681, -0.005812734365463257, -0.00046616035979241133, -0.0019645330030471087, -0.05352916195988655, -0.040895264595746994, -0.02005440928041935, 0.03957606479525566, -0.0008260869071818888, -0.026181088760495186, -0.052108485251665115, 0.009627638384699821, -0.039195526391267776, 0.058298587799072266, -0.05850154161453247, 0.01996561698615551, 0.04081915691494942, -0.002719268901273608, -0.030519234016537666, -0.0033455726224929094, 0.04295017570257187, -0.006481848657131195, 0.01307785976678133, 0.06768521666526794, 0.03533939644694328, -0.04642576724290848, -0.04368588700890541, -0.02153851091861725, 0.01621096394956112, 0.034806638956069946, -0.0017599932616576552, 0.029707416892051697, 0.001585579477250576, 0.020714011043310165, -0.019026953727006912, -0.033411331474781036, -0.027221228927373886, 0.04178319126367569, 0.05236217752099037, 0.021513141691684723, -0.021348241716623306, -0.025863971561193466, 0.001680714194662869, -0.02398664690554142, -0.02095501869916916, 0.03686155006289482, -0.04444696381688118, 0.007420511916279793, 0.02421496994793415, -0.01936943829059601, -0.03067144937813282, -0.08123240619897842, -0.03219360485672951, 0.005400483496487141, 0.0007662312709726393, -0.045690059661865234, -0.0006457272684201598, 0.03767336905002594, 0.0049914042465388775, -0.011054660193622112, 0.034984227269887924, 0.03259951248764992, 0.03303079307079315, -0.027677875012159348, -0.023047983646392822, -0.011739630252122879, 0.03422314673662186, -0.0014761744532734156, -0.01797412894666195, -0.027069013565778732, 0.0048487018793821335, -0.0024465490132570267, 0.014866393059492111, -0.0074014849960803986, 0.027348075062036514, 0.01504397764801979, -0.026485519483685493, -0.004601351451128721, -0.02917466312646866, 0.04185929894447327, -0.0017488941084593534, 0.008955352939665318, -0.015386463142931461, -0.02330167591571808, 0.021043810993433, -0.08113092929124832, 0.00982425082474947, 0.03181306645274162, 0.02760176733136177, 0.08579887449741364, 0.02963130921125412, 0.005717599764466286, -0.0017821913352236152, -0.026764580979943275, 0.0400073416531086, 0.012843193486332893, 0.0074775926768779755, 0.011967954225838184, 0.0026114494539797306, 0.03488274663686752, 0.06103846803307533, -0.03404556214809418, 0.03536476567387581, 0.0072492691688239574, 0.009653007611632347, -0.031508635729551315, -0.02985963225364685, -0.022007843479514122, -0.019090376794338226, 0.0047408826649188995, -0.009082199074327946, -0.010591670870780945, 0.004249352961778641, -0.0007273845840245485, -0.039677541702985764, 0.014764916151762009, 0.03807927668094635, -0.017314527183771133, -0.02656162716448307, -0.0018123172922059894, 0.02474772371351719, 0.030696818605065346, 0.014257530681788921, -0.05220996215939522, -0.015259617008268833, 0.006589668337255716, -0.011219560168683529, -0.0013802469475194812, -0.04340682178735733, 0.011244929395616055, -0.03899256885051727, 0.018532251939177513, -0.041757822036743164, 0.034933485090732574, -0.052920300513505936, -0.005270466208457947, -0.008365517482161522, 0.02538195624947548, -0.015005923807621002, 0.026409411802887917, -0.017136942595243454, -0.017834598198533058, 0.03089977242052555, -0.025508802384138107, -0.024684300646185875, -0.042975544929504395, 0.01043311320245266, 0.01770775206387043, -0.017606275156140327, -0.0361512117087841, 0.04619744420051575, -0.007953266613185406, 0.03721672296524048, 0.038865722715854645, -0.017771175131201744, -0.06362613290548325, -0.01334423664957285, 0.05997295677661896, -0.011251271702349186, 0.009557873010635376, 0.0370391346514225, -0.03206675872206688, -0.01603337936103344, 0.02795693650841713, -0.06306800991296768, -0.011200533248484135, 0.04015955701470375, 0.006139363627880812, 0.009405657649040222, -0.01504397764801979, -0.017263788729906082, 0.0679389089345932, -0.007388800382614136, -0.015170824714004993, -0.02199515886604786, -0.002053325530141592, -0.03259951248764992, -0.027525659650564194, -0.007629808504134417, -0.03564382717013359, -0.06002369523048401, -0.04211299121379852, 0.03731819987297058, 0.025369271636009216, -0.009018776006996632, -0.002681214828044176, -0.0051372773014009, 0.05322473123669624, -0.01626170240342617, -0.05122055858373642, -0.02271818183362484, -0.0057810228317976, -0.011263956315815449, 0.007166819181293249, -0.03894183039665222, 0.012640239670872688, -0.01165083795785904, -0.02375832200050354, 0.011847449466586113, 0.06144437566399574, -0.03896719962358475, 0.0679389089345932, 0.01052824780344963, 0.02529316395521164, -0.05723307654261589, 0.0020438118372112513, -0.021741466596722603, 0.03541550412774086, 0.04870900139212608, -0.02005440928041935, -0.02696753479540348, -0.030367018654942513, 0.06134289875626564, 0.03049386478960514, 0.034121669828891754, 0.008283067494630814, -0.05733455345034599, 0.0350603349506855, -0.016692981123924255, -0.029783524572849274, -0.015297670848667622, 0.019813401624560356, -0.027880828827619553, 0.03166085109114647, 0.014333638362586498, -0.03478126972913742, -0.001878911629319191, 0.009380288422107697, 0.003526328830048442, -0.02904781512916088, 0.022502543404698372, -0.013838937506079674, 0.009018776006996632, -0.06448868662118912, 0.019990986213088036, -0.05875523388385773, -0.02023199386894703, -0.009158306755125523, 0.004442793782800436, -0.020993072539567947, 0.01671835035085678, -0.004017858300358057, 0.018278559669852257, 0.028743384405970573, 0.024278393015265465, 0.044649917632341385, 0.0174286887049675, -0.02904781512916088, 0.009164649061858654, 0.04467528685927391, -0.02859116904437542, 0.052057746797800064, -0.009418342262506485, 0.006025202106684446, -0.037521153688430786, -0.007820078171789646, -0.007154134567826986, 0.010648751631379128, -0.018329298123717308, 0.03072218783199787, -0.015386463142931461, 0.02927614003419876, -0.001241508754901588, -0.015779687091708183, 0.005432195495814085, 0.04678093641996384, 0.0451573021709919, -0.014790285378694534, -0.010154050774872303, 0.019724609330296516, -0.039043307304382324, 0.05162646621465683, 0.003567553823813796, -0.04376199468970299, 0.05586313456296921, -0.05403655022382736, 0.0330815315246582, 0.01264658197760582, 0.017733121290802956, 0.001576066017150879, -0.027855459600687027, 0.02023199386894703, -0.027449551969766617, -0.015881163999438286, 0.002731953514739871, 0.04914027824997902, 0.056269045919179916, 0.035161811858415604, 0.02181757427752018, -0.0001389364042552188, -0.04191003739833832, 0.014752231538295746, -0.015690894797444344, 0.024735039100050926, 6.852676597191021e-05, -0.016337810084223747, 0.004547441843897104, 0.010020862333476543, 0.0034502209164202213, -0.024861885234713554, -0.051778681576251984, 0.04439622536301613, 0.002294333418831229, -0.014955185353755951, 0.02615571953356266, -0.041630975902080536, -0.012697320431470871, 0.020396893844008446, -0.01504397764801979, 0.01287490501999855, -0.054493196308612823, -0.02394859306514263, 0.03369039297103882, 0.029935739934444427, 0.034578315913677216, -0.01936943829059601, -0.04264574497938156, -0.05606608837842941, -0.018278559669852257, -0.014777600765228271, 0.008080112747848034, -0.0004939080099575222, 0.00152215629350394, 0.00407493906095624, 0.03965217247605324, 0.02443060837686062, -0.06276357918977737, 0.020764749497175217, 0.0026114494539797306, -0.008295752108097076, -0.03473053127527237, 0.030772926285862923, 0.01689593493938446, -0.03310690075159073, 0.027271967381238937, -0.03363965451717377, -0.008688975125551224, 0.012627555057406425, -0.03952532634139061, -0.01463807001709938, 0.007515646517276764, 0.04051472619175911, 0.025305848568677902, 0.005742968991398811, 0.0036658598110079765, -0.037470415234565735, 0.03252340480685234, -0.00027807100559584796, -0.01298906747251749, 0.02561027929186821, -0.020434947684407234, 0.0010084285167977214, -0.02331436052918434, -0.008251355960965157, 0.019128430634737015, 0.04404105618596077, -0.013153967447578907, 0.005638320464640856, 0.009221729822456837, -0.0287687536329031, 0.026536257937550545, 0.011555703356862068, 0.08985795825719833, -0.056218307465314865, -0.014156053774058819, 0.03906867653131485, 0.008606525138020515, -0.0035738961305469275, 0.007667862344533205, -0.010077943094074726, -0.004445964936167002, -0.022870399057865143, -0.007274638395756483, 0.029149293899536133, -0.01298906747251749, 0.000824501330498606, -0.008631894364953041, -0.0411996953189373, -0.016096802428364754, 0.04622281342744827, 0.011067344807088375, 0.022160058841109276, -0.06215471401810646, 0.007604439277201891, -0.04878510907292366, 0.016870565712451935, 0.006069598253816366, 0.01348376739770174, 0.008974379859864712, -0.013242759741842747, 0.012018692679703236, 0.022705497220158577, -0.0023545855656266212, 0.018988899886608124, -0.016743719577789307, -0.013039805926382542, -0.05408728867769241, 0.03135642036795616, 0.01711157336831093, -0.015690894797444344, 0.03767336905002594, 0.03280246630311012, 0.01510740164667368, 0.007648835424333811, 0.02001635544002056, -0.021081864833831787, -0.010737543925642967, 0.004265208728611469, -0.08321121335029602, 0.020206624642014503, 0.0031679878011345863, -0.03247266635298729, -0.020625216886401176, -0.026663104072213173, 0.011441541835665703, -0.0007123216055333614, -0.0018614702858030796, -0.025331217795610428, 0.006970207206904888, 0.009653007611632347, -0.028438953682780266, 0.02917466312646866, 0.016375863924622536, -0.004062254447489977, -0.012678293511271477, 0.02358073741197586, 0.00030581862665712833, 0.04533488675951958, 0.04038788005709648, -0.010217473842203617, -0.03419777750968933, 0.006266210228204727, -0.022984560579061508, -0.015919217839837074, -0.01458733156323433, 0.03265025094151497, 0.03381723910570145, -0.02493799477815628, -0.02186831273138523, -0.01542451698333025, -0.022743551060557365, -0.0011178335407748818, -0.023428522050380707, -0.00636768713593483, 0.024557454511523247, 0.031736958771944046, 0.03067144937813282, -0.010058916173875332, 0.006627722177654505, -0.013230075128376484, 0.009177333675324917, -0.022705497220158577, -0.025458063930273056, 0.013521822169423103, -0.0022277391981333494, 0.01283050887286663, 0.0030522404704242945, 0.04901343211531639, -0.04023566469550133, -0.009297838434576988, 0.03899256885051727, 0.014079946093261242, 0.019496284425258636, -0.027652505785226822, -0.02927614003419876, -0.030747557058930397, -0.004468163009732962, 0.018722523003816605, -0.0201051477342844, -0.028261369094252586, -0.0615965910255909, -0.00098543765489012, -0.016731034964323044, -0.0071414499543607235, 0.020993072539567947, -0.03221897408366203, 0.033588916063308716, 0.02583860233426094, -0.021031126379966736, -0.035846780985593796, 0.016515396535396576, 0.0008221229654736817, -0.016337810084223747, -0.00038311563548631966, -0.00914562214165926, -0.013331552036106586, -0.01170157641172409, 0.0266884732991457, -0.028616538271307945, 0.0018551279790699482, -0.0010766084305942059, -0.005435366649180651, 0.016921304166316986, 0.0050231157802045345, -0.03166085109114647, -0.039322372525930405, -0.002651088871061802, -0.0338679775595665, 0.022984560579061508, -0.011422514915466309, 0.00745222344994545, -0.007686889264732599, 0.02755102887749672, 0.019077692180871964, -0.02037152461707592, -0.015196193940937519, 0.03003721684217453, -0.003976633306592703, -0.016972042620182037, -0.04340682178735733, 0.01603337936103344, 0.007667862344533205, -0.024760408326983452, 0.005061169620603323, -0.037419676780700684, -0.010870733298361301, 0.0079722935333848, -0.016147540882229805, 0.005945922806859016, -0.012113827280700207, 0.012951012700796127, 0.024405239149928093, -0.027246598154306412, 0.03107735700905323, -0.0327770970761776, 0.04647650569677353, 0.04223983734846115, -0.007902528159320354, 0.031229572370648384, 0.020790118724107742, 0.004518901463598013, 0.016654927283525467, 0.06012517213821411, -0.04028640314936638, -0.016870565712451935, -0.0025083867367357016, -0.005200700834393501, 0.01368672214448452, -0.008099139668047428, -0.004404739942401648, 0.003326545702293515, -0.00342168053612113, -0.0058920131996273994, -0.024202285334467888, 0.028844861313700676, 0.026663104072213173, 0.001774263451807201, 0.039094045758247375, 0.01515814010053873, 0.015310355462133884, -0.027170490473508835, -0.016451973468065262, -0.043203867971897125, 0.03125494346022606, -0.015881163999438286, 0.020853541791439056, 0.0003531878173816949, 0.02448134683072567, 0.032142866402864456, -0.048404570668935776, 0.02222348190844059, 0.04335608333349228, -0.027931567281484604, -0.019724609330296516, 0.011955269612371922, -0.02209663577377796, -0.02552148699760437, 0.019318699836730957, -0.0016069847624748945, -0.018189767375588417, 0.03691228851675987, -0.003507301677018404, -0.0024132519029080868, 0.018303928896784782, -0.007604439277201891, 0.020574478432536125, 0.02412617765367031, 0.02109454944729805, -0.020625216886401176, -0.004778936505317688, -0.04206225275993347, -0.024468662217259407, 0.000685366743709892, -0.0392208956182003, -0.05510205775499344, -0.006678460631519556, -0.03988049551844597, 0.023098722100257874, 0.013141282834112644, 0.04792255535721779, 0.012120169587433338, 0.03282783553004265, -0.026028873398900032, -0.03488274663686752, -0.012982725165784359, -0.01851956732571125, -0.02023199386894703, 0.012697320431470871, 0.0019788031931966543, -0.009196360595524311, -0.013978468254208565, -0.011010264046490192, 0.019255276769399643, -0.03688691928982735, -0.009874989278614521, -0.022984560579061508, -0.0023529999889433384, -0.02231227420270443, -0.008574813604354858, 0.01694667339324951, 0.01307785976678133, 0.017492113634943962, -0.024176916107535362, -0.02628256566822529, -0.01463807001709938, -0.016743719577789307, -0.007743970025330782, -0.012018692679703236, -0.023098722100257874, 0.0036182922776788473, -0.006355002522468567, 0.01982608623802662, -0.044878240674734116, 0.02042226307094097, -0.006507218349725008, 0.0013897604076191783, -0.006849703378975391, -0.04264574497938156, -0.0058698151260614395, -0.019686555489897728, 0.013420344330370426, -0.04520804062485695, 0.009951096959412098, -0.05672569200396538, -0.013445713557302952, 0.05226070061326027, -0.01239923108369112, 0.015284986235201359, 0.024265708401799202, 0.014232161454856396, -0.010217473842203617, 0.006126679014414549, 0.02276892028748989, -0.021386295557022095, 0.013699406757950783, 0.023060668259859085, 0.00939931534230709, -0.02719585970044136, 0.006145705934613943, -0.03896719962358475, 0.003982975613325834, -0.01797412894666195, -0.02615571953356266, -0.019458230584859848, -0.010991237126290798, 0.04548710212111473, -0.023606106638908386, -0.036557119339704514, -0.0017409662250429392, 0.006519902963191271, -0.02483651600778103, -0.029200032353401184, -0.037242092192173004, -0.005381456576287746, 0.037470415234565735, 0.014232161454856396, -0.022616704925894737, 0.001772677875123918, -0.019851455464959145, 0.024874569848179817, -0.0018693981692194939, -0.037064503878355026, 8.254923159256577e-05, 0.0038434446323662996, -0.022921137511730194, -0.02615571953356266, -0.016020694747567177, 0.04345756396651268, -0.059465572237968445, -0.03980438783764839, 0.048125509172677994, -0.004756738431751728, 0.00037399856955744326, -0.04761812090873718, -0.0241642314940691, 0.056573476642370224, 0.04150412976741791, -0.03962680324912071, 0.014600016176700592, -0.014092630706727505, -0.029098553583025932, 0.041402652859687805, -0.007039973046630621, 0.014967869967222214, 0.0252043716609478, -0.006634064484387636, -0.020257363095879555, -0.06316948682069778, 0.009697403758764267, -0.0004213677311781794, 0.007699573878198862, 0.02661236561834812, 0.0016949845012277365, -0.007788366172462702, -0.0033106899354606867, -0.0020517397206276655, -0.036963026970624924, -0.01829124428331852, 0.03554235026240349, -0.002189685357734561, -0.014574646949768066, -0.017238419502973557, -0.008479679003357887, -0.011251271702349186, -0.00014012558676768094, 0.01160644181072712, -0.026181088760495186, -0.017923390492796898, 0.035161811858415604, 0.02326362207531929, 0.021665357053279877, 0.02091696485877037, -0.029479093849658966, -0.005460735876113176, -0.014891762286424637, -0.03325911611318588, 0.017771175131201744, -0.010217473842203617, -0.02701827511191368, -0.00853675976395607, 0.04269648343324661, -0.016109487041831017, 0.003599265357479453, 0.031178833916783333, 0.0028429438825696707, 0.004759909585118294, -0.037115246057510376, 0.003862471552565694, 0.007008261047303677, -0.002191270934417844, -0.012678293511271477, 0.03653175011277199, 0.008606525138020515, -0.0057302843779325485, -0.034299254417419434, 0.009044145233929157, -0.010407743975520134, 0.03414703905582428, 0.005616122391074896, -0.011739630252122879, -0.023504629731178284, 0.0400073416531086, 0.005670031998306513, 0.029961109161376953, 0.00023486395366489887, -0.03960143402218819, 0.02046031691133976, -0.006856045685708523, 0.021157972514629364, 0.005857130512595177, -0.011105398647487164, 0.007813735865056515, 0.029352247714996338, 0.019483599811792374, -0.004369857255369425, 0.011365433223545551, -0.0349588580429554, -0.024544769898056984, 0.04155486822128296, -0.006006175186485052, 0.02380906045436859, 4.4904106744070305e-07, 0.0018107317155227065, 0.0113146947696805, -0.03389334678649902, -0.005314862355589867, -0.019851455464959145, 0.0037927061785012484, -0.016591504216194153, -0.0006492948159575462, 0.013788199052214622, -0.02777935191988945, 0.021982474252581596, 0.0008673119591549039, -0.00047408827231265604, -0.006894099526107311, 0.023821745067834854, 0.017898021265864372, -0.001658516121096909, 0.037876322865486145, -0.01910306140780449, 0.016375863924622536, -0.0003365392331033945, -0.004487189929932356, -0.03391871601343155, 0.03247266635298729, 0.021652672439813614, -0.042442791163921356, 0.001094049890525639, -0.0011804639361798763, 0.002430693246424198, 0.03691228851675987, -0.005844445899128914, 0.010686805471777916, -0.004354001022875309, 0.027449551969766617, -0.001836101058870554, -0.037927061319351196, -0.020967703312635422, 0.0220839511603117, -0.04472602531313896, 0.005993490573018789, 0.03239655867218971, 0.014105315320193768, 0.004778936505317688, 0.0009925727499648929, -0.0330815315246582, 0.006355002522468567, -0.016375863924622536, 0.001680714194662869, -0.0113146947696805, 0.017314527183771133, -0.0054480512626469135, 0.008606525138020515, -0.021931735798716545, -0.017580905929207802, 0.01359792985022068, 0.0004041245556436479, -0.004588666837662458, 0.016071433201432228, 0.01955970749258995, -0.00046616035979241133, -0.003795877331867814, 0.019483599811792374, 0.014333638362586498, -0.03148326650261879, -0.018582992255687714, 0.016439288854599, 0.030975880101323128, 0.009291496127843857, -0.034933485090732574, -0.02439255453646183, 0.003001502016559243, 0.019090376794338226, 0.0002231703110737726, 0.025445379316806793, 0.014764916151762009, 0.013496452011168003, -0.010819993913173676, 0.021310187876224518, -0.023162145167589188, 0.008276725187897682, -0.01793607510626316, 0.057436030358076096, 0.018722523003816605, -0.01936943829059601, 0.028286738321185112, 0.015145455487072468, -0.02421496994793415, 0.015348409302532673, 0.034400731325149536, -0.027271967381238937, 0.03934774175286293, 0.011149794794619083, 0.009018776006996632, -0.03757189214229584, 0.03533939644694328, 0.06753300130367279, -0.011409830302000046, 0.00014389133139047772, -0.029935739934444427, 0.006779938004910946, 0.050078943371772766, -0.028159892186522484, 0.008042058907449245, -0.00778202386572957, 0.009729115292429924, 0.033715762197971344, 0.018443459644913673, 0.005895184352993965, 0.011923558078706264, -0.005723942071199417, 0.038104645907878876, 0.022743551060557365, 0.046501874923706055, -0.003497788216918707, 0.013559876009821892, 0.048176247626543045, -0.012006008066236973, -0.004040056373924017, 0.00029115204233676195, 0.012589501217007637, -0.010655093938112259, -0.005444880109280348, -0.004934323485940695, -0.007090711500495672, -0.021665357053279877, 0.007826420478522778, -0.0075663854368031025, 0.013192021287977695, -0.01278611272573471, 0.009075856767594814, -0.012335808016359806, 0.012380204163491726, 0.0016180837992578745, 0.010306266136467457, -0.0024148374795913696, -0.0005636735004372895, -0.010179420001804829, 0.004699657671153545, 0.03259951248764992, -0.0012803553836420178, 0.00040035881102085114, -0.01834198273718357, 0.009462738409638405, 0.01429558452218771, 0.022198112681508064, 0.008143535815179348, -0.0503072664141655, -0.019394807517528534, 0.004182758741080761, -0.010299923829734325, -0.03021480329334736, -0.01978803239762783, 0.04399031773209572, -0.0050262869335711, -0.016008010134100914, -0.00048003418487496674, -0.011111740954220295, 0.003621463431045413, 0.01829124428331852, 0.0075410157442092896, 0.006779938004910946, -0.04825235530734062, 0.04944470897316933, 0.013103228993713856, -0.012500708922743797, -0.01348376739770174, 0.009063172154128551, 0.006538929883390665, -0.008758741430938244, 0.005508303176611662, 0.007953266613185406, -0.02836284600198269, 0.010445797815918922, 0.02204589731991291, 0.0031346906907856464, -0.037115246057510376, 0.008257698267698288, 0.007858132012188435, -0.011999665759503841, -0.006462821736931801, -0.02859116904437542, 0.08676290512084961, -0.030240172520279884, 0.016426604241132736, 0.003932237159460783, -0.05550796538591385, -0.005086538847535849, -0.02656162716448307, -0.004864557646214962, -0.015297670848667622, 0.0059808059595525265, 0.04150412976741791, -0.003317032242193818, -0.0001311076048295945, -0.012411915697157383, -0.0018646414391696453, 0.0391194149851799, -0.029555201530456543, 0.030138693749904633, -0.037292830646038055, -0.0022293247748166323, -0.008283067494630814, 0.006123507861047983, 0.02384711615741253, 0.026536257937550545, 0.03369039297103882, -0.0002796565822791308, 0.026003504171967506, -0.0016157054342329502, 0.038332968950271606, -0.0022277391981333494, -0.01264658197760582, -0.016743719577789307, -0.0007182675180956721, -0.02095501869916916, 0.023047983646392822, 0.01099757943302393, 0.010540932416915894, 0.04355904087424278, 0.0030411414336413145, 0.019521653652191162, -0.009614953771233559, 0.0081942742690444, 0.017631644383072853, 0.007376115769147873, -0.022845029830932617, -0.0009679962531663477, -0.014752231538295746, 0.019128430634737015, -0.034172408282756805, -0.024874569848179817, -0.005711257457733154, 0.0031759156845510006, 0.01400383748114109, 0.0012129682581871748, -0.0002255486760986969, 0.0023545855656266212, 0.022007843479514122, -0.008441625162959099, 0.012887589633464813, -0.005406825803220272, -0.022324958816170692, -0.047821078449487686, 0.006507218349725008, -0.021119918674230576, 0.009722772985696793, -0.04289943724870682, -0.014320953749120235, 0.0205491092056036, 0.009767169132828712, -0.018722523003816605, -0.018189767375588417, -0.003182257991284132, -0.003558040363714099, -0.007528331130743027, -0.03379186987876892, 0.07955803722143173, 0.01174597255885601, -0.007813735865056515, -0.0215892493724823, -0.00939297303557396, -0.02484920062124729, 0.013027121312916279, 0.04959692433476448, -0.0005842860555276275, -0.002605107147246599, 0.038510553538799286, 0.008638236671686172, -0.007097053807228804, 0.005067511927336454, 0.010014520026743412, -0.01910306140780449, -0.013724775984883308, -0.010471167042851448, -0.00011862116662086919, 0.004934323485940695, 0.0232255682349205, -0.065757155418396, -0.00010435094736749306, -0.03384260833263397, 0.03044312633574009, -0.008593840524554253, 0.0034026536159217358, 0.038053907454013824, -0.017352581024169922, 0.0174286887049675, -0.0017441373784095049, 0.01499323919415474, 0.004893098026514053, -0.04079378768801689, -0.007185846101492643, -0.005723942071199417, -0.012107484973967075, -0.0340709313750267, 0.008955352939665318, 0.01666761189699173, 0.0017282816115766764, -0.004518901463598013, -0.02701827511191368, 0.012113827280700207, 0.0174286887049675, 0.01892547681927681, 0.004823332652449608, -0.043888840824365616, 0.01929333060979843, 0.0012597428867593408, 0.02958057075738907, -0.027348075062036514, -0.012944670394062996, -0.012183592654764652, 0.004442793782800436, -0.0008665191708132625, 0.005333889275789261, 0.0011336893076077104, 0.020587163046002388, 0.04160560667514801, -0.011504964902997017, -0.02548343315720558, -0.018088290467858315, -0.015881163999438286, -0.004116164520382881, 0.026028873398900032, 0.0005549528286792338, -0.03962680324912071, -0.005016773473471403, 0.005644662771373987, -0.02691679634153843, -0.0053053488954901695, -0.011282983236014843, 0.01057264395058155, 0.005343402735888958, 0.03419777750968933, -0.014600016176700592, 0.008029374293982983, -0.0017362094949930906, 0.02732270583510399, -0.015183509327471256, 0.007934239692986012, 0.009335892274975777, 0.031178833916783333, 0.027474921196699142, 0.0072492691688239574, -0.017834598198533058, 0.0048487018793821335, 0.05096686631441116, -0.04409179463982582, 0.00010910768469329923, -0.003976633306592703, -0.022071266546845436, -0.02511557936668396, 0.005184845067560673, 0.00853675976395607, -0.016337810084223747, -0.021475087851285934, 0.025584910064935684, -0.03391871601343155, -0.007502961903810501, -0.024088123813271523, -0.014612700790166855, 0.0037292828783392906, -0.007845447398722172, -0.012183592654764652, -0.015500624664127827, -0.007997662760317326, -0.027982305735349655, 0.004947008099406958, 0.0011606442276388407, -0.012951012700796127, 0.009564215317368507, -0.005432195495814085, 0.022692812606692314, -0.03462905436754227, 0.028033044189214706, -0.016769088804721832, -0.017872652038931847, -0.011441541835665703, -0.01350913755595684, -0.005333889275789261, 0.03488274663686752, 0.00887924525886774, 0.0012185177765786648, 0.019711924716830254, -0.02394859306514263, 0.0014143368462100625, -0.0014991654315963387, -0.020067093893885612, -0.004255695268511772, 0.03143252804875374, 0.008949010632932186, 0.004014687146991491, -0.003894183086231351, -0.016071433201432228, -0.015690894797444344, 0.023656845092773438, 0.006900441832840443, -0.02587665617465973, -0.013318867422640324, 0.015170824714004993, -0.013090544380247593, -1.2021912880300079e-05, 0.0013009679969400167, 0.033538177609443665, -0.05010431259870529, -0.01765701361000538, 0.005080196540802717, 0.013737460598349571, -0.00407493906095624, 0.01391504518687725, -0.026054242625832558, 0.006123507861047983, 0.015386463142931461, 0.008644578978419304, -0.0059808059595525265, -0.003982975613325834, 0.03970291092991829, -0.0205491092056036, -0.021614618599414825, -0.019090376794338226, -0.007813735865056515, -0.010039889253675938, 0.03079829551279545, 0.004157389514148235, -0.022236166521906853, -0.014257530681788921, -0.02389785461127758, -0.007147792261093855, -0.03790169209241867, -0.04114895686507225, 0.0006976549630053341, 0.02651088871061802, 0.00830843672156334, -0.0024957021232694387, 0.03196528181433678, 0.025280479341745377, -0.050840020179748535, -0.009075856767594814, 0.002719268901273608, -0.0007646456942893565, 0.015500624664127827, 0.009627638384699821, -0.019483599811792374, -0.012944670394062996, 0.023656845092773438, -0.027703244239091873, 0.027982305735349655, -0.013940414413809776, -0.013712091371417046, 0.0025496117305010557, 0.02023199386894703, -0.005454393569380045, -0.015411832369863987, -0.00871434435248375, -0.007287323474884033, 0.05845080316066742, 0.026764580979943275, 0.017504798248410225, 0.006361344829201698, 0.008695317432284355, -0.008866560645401478, -0.019585076719522476, -0.02534390240907669, -0.016274387016892433, -0.011466911062598228, -0.02451940067112446, -0.0022071267012506723, -0.01661687344312668, -0.00736343115568161, 0.007813735865056515, -0.008987064473330975, 0.016439288854599, 0.04125043377280235, 0.014752231538295746, 0.018418090417981148, 0.024811146780848503, 0.039094045758247375, -0.018950846046209335, -0.0390179380774498, -0.0043159471824765205, 0.03143252804875374, -0.03587215021252632, -0.000886338937561959, 0.008543102070689201, -0.008346490561962128, -0.0002588458592072129, 0.01897621527314186, 0.00580322090536356, -0.0023038468789309263, 0.0015372192719951272, 0.015830425545573235, -0.01239923108369112, 0.005739797838032246, -0.030747557058930397, 0.002930150832980871, 0.013230075128376484, -0.011029290966689587, -0.0026764580979943275, -0.017783859744668007, -0.023073352873325348, -0.01052824780344963, 0.010883417911827564, -0.02227422036230564, 0.00873971451073885, -0.027043644338846207, -0.012773428112268448, 0.007052657660096884, -0.024494031444191933, -0.00684336107224226, 0.010483851656317711, 0.0024069095961749554, -0.027449551969766617, 0.024912625551223755, -0.010204789228737354, -0.00521655660122633, -0.014257530681788921, 0.007445881143212318, 0.00394175061956048, -0.0027145121712237597, -0.05718233808875084, 0.029352247714996338, 0.04561395198106766, -0.02425302378833294, -0.0090124337002635, -0.010889760218560696, 0.030925141647458076, 0.0026098638772964478, -0.014980554580688477, 0.023555368185043335, 0.010502878576517105, -0.014777600765228271, -0.0577404610812664, -0.02389785461127758, 0.0329800546169281, 0.01662955805659294, -0.016972042620182037, 0.030113324522972107, 0.01556404773145914, -0.0011233830591663718, -0.011771341785788536, 0.007858132012188435, 0.012151881121098995, 0.02172878198325634, 0.0027509804349392653, 0.01127029862254858, 0.0009188433177769184, 0.02425302378833294, -0.020853541791439056, -0.03483200818300247, 0.025267794728279114, 0.0266884732991457, -0.01807560585439205, 0.016198279336094856, 0.031914543360471725, -0.0009021947043947875, -0.020523739978671074, 0.024265708401799202, -0.009170991368591785, -0.022210797294974327, -0.01504397764801979, -0.008885587565600872, -0.0002978907432407141, 0.00892364140599966, 0.00622181361541152, -0.0035041305236518383, -0.0005704122013412416, -0.0007190603064373136, -0.026586996391415596, -0.009729115292429924, 0.014029206708073616, -0.005508303176611662, -0.009970123879611492, -0.055355750024318695, 0.018189767375588417, 0.007420511916279793, -0.055000580847263336, 0.058653756976127625, 0.00674188369885087, 0.023288991302251816, 0.007915212772786617, 0.03404556214809418, -0.004040056373924017, 0.061089206486940384, -0.002719268901273608, 0.024291077628731728, 0.01147325336933136, -0.008118166588246822, -0.0024370355531573296, 0.02141166478395462, -0.05109371244907379, 0.005375114269554615, -0.009633980691432953, -0.004614036064594984, -0.031686220318078995, -0.007623466197401285, -0.006862387992441654, -0.009970123879611492, -0.023910539224743843, -0.004081281367689371, -0.009291496127843857, -0.005977634806185961, 0.015957271680235863, 0.01510740164667368, 0.004347658716142178, 0.026434781029820442, -0.0105219054967165, -0.05768972262740135, -0.015323040075600147, 0.0110927140340209, 0.036252688616514206, 0.0105219054967165, -0.03193991258740425, -0.0016220478573814034, -0.013991152867674828, 0.025102894753217697, -0.0031664022244513035, 0.01562747173011303, -0.04698389023542404, -0.021754151210188866, 0.03749578446149826, -0.02155119553208351, 0.030519234016537666, -0.009367603808641434, -0.01874789223074913, 0.02289576828479767, -0.009469080716371536, 0.03998197242617607, 0.03473053127527237, -0.024202285334467888, -0.003830760018900037, -0.015919217839837074, -0.021424349397420883, 0.020853541791439056, -0.04160560667514801, -0.013965783640742302, 0.014447799883782864, -0.019800717011094093, -0.006446965970098972, 4.168339728494175e-06, -0.04292480647563934, 0.02199515886604786, -0.02497604861855507, 0.007236584555357695, -0.0023403153754770756, -0.012836851179599762, -0.016604188829660416, 0.0007139071822166443], [0.01828102208673954, 0.026504362002015114, 0.024944549426436424, 0.03429095447063446, -0.01725778356194496, 0.03681161627173424, -0.0051411474123597145, 0.022536195814609528, -0.008797352202236652, 0.05680219456553459, -0.01684599369764328, -0.02640453539788723, 0.04554657265543938, 0.006083275191485882, -0.024470364674925804, 0.04642007127404213, 0.010282294824719429, 0.023010378703475, 0.0007015264127403498, 0.011661170981824398, -0.010207423940300941, 0.059597380459308624, -0.06029617786407471, 0.02652931958436966, 0.0013656173832714558, -0.019254347309470177, 0.005284650716930628, -0.03419112786650658, 0.05310855433344841, -0.06069549173116684, 0.07601910829544067, -0.04115413874387741, 0.03132106736302376, 0.03159559518098831, 0.01744496263563633, -0.0014342491049319506, -0.009633412584662437, 0.008728720247745514, -0.009271536022424698, -0.017694532871246338, -0.032044824212789536, -0.007480869069695473, 0.04968944191932678, 0.017132999375462532, -0.025655824691057205, 0.06129445880651474, -0.0029059338849037886, -0.005443751346319914, -0.002406793413683772, -0.015161394141614437, 0.015872668474912643, 0.030447572469711304, 0.0003113778948318213, 0.02575565129518509, -0.01131801214069128, -0.023696696385741234, 0.004545298404991627, 0.042377032339572906, 0.02974877692759037, 0.002787387929856777, 0.0044142743572592735, 0.014375247992575169, -0.049864139407873154, 0.049489784985780716, 0.012347489595413208, -0.018954861909151077, 0.00307595357298851, 0.0029340104665607214, -0.013501751236617565, 0.0063203671015799046, 0.013227224349975586, 0.017831796780228615, 0.061194632202386856, -0.05230993032455444, -0.04801731929183006, 0.03681161627173424, -0.03219456598162651, 0.0002347520348848775, -0.011280576698482037, 0.04205258935689926, -0.03321780264377594, 0.014899345114827156, -0.020714333280920982, 0.0028872161637991667, 0.02115108072757721, 0.00036577641731128097, -0.09169211983680725, -0.027752215042710304, -0.023746611550450325, -0.012247661128640175, -0.05904832482337952, -0.008722481317818165, -0.014050805941224098, 0.03983141481876373, -0.009096836671233177, 0.02438301593065262, 0.02550608105957508, 0.009439995512366295, -0.025044376030564308, 0.04070490971207619, 0.002261730609461665, 0.00791137758642435, -0.0020792323630303144, 0.00371235772036016, 0.03289336338639259, -0.024719934910535812, -0.0741223692893982, 0.06473852694034576, -0.0066011338494718075, -0.00375603255815804, 0.01929178275167942, -0.026853760704398155, 0.013202267698943615, 0.05420666188001633, -0.03496479615569115, 0.01562309917062521, -0.041902847588062286, -0.033492330461740494, 0.012372446246445179, -0.012341249734163284, -0.01556070614606142, 0.006813268177211285, 0.050213538110256195, -0.06344076246023178, 0.013027568347752094, -0.02850092574954033, 0.007393519394099712, 0.004950850270688534, -0.08260776102542877, -0.01809384487569332, 0.018917426466941833, -0.01924186758697033, 0.05909823998808861, -0.053507864475250244, 0.006067677401006222, 0.028276311233639717, 0.012478513643145561, -0.03890800476074219, 0.011985612101852894, 0.009240339510142803, 0.002940249862149358, 0.05023849382996559, 0.013426880352199078, 0.05285898223519325, -0.043525055050849915, 0.009390081278979778, 0.017969058826565742, 0.021650221198797226, 0.020102884620428085, -0.014050805941224098, 0.0027171962428838015, 0.04694416746497154, -0.010251099243760109, -0.009795633144676685, 0.02443292923271656, -0.006520023103803396, 0.022972943261265755, 0.024694979190826416, 0.044298723340034485, 0.018555549904704094, -0.025955308228731155, -0.03773502632975578, -0.021837398409843445, -0.025880437344312668, 0.02066441811621189, -0.008653849363327026, 0.011985612101852894, 0.0008446393767371774, -0.0412290096282959, -0.01618463173508644, -0.04861629009246826, -0.007037881761789322, -0.05420666188001633, -0.029349463060498238, -0.014512510970234871, -0.01566053368151188, 0.03094671294093132, 0.010488190688192844, -0.016147196292877197, 0.01442516129463911, 0.030622271820902824, 0.03860852122306824, -0.026030179113149643, -0.007867703214287758, -0.014974215999245644, 0.0158227551728487, 0.03236926347017288, -0.0011519227409735322, -0.008054880425333977, 0.02395874634385109, 0.002455147448927164, 0.023459605872631073, -0.023085249587893486, 0.006089514587074518, -0.0018811359768733382, 0.003849621396511793, 0.03299318999052048, -0.0015972497640177608, 0.008491628803312778, 0.009689565747976303, 0.0170206930488348, -0.040056027472019196, -0.02072681114077568, -0.00186709756962955, -0.09548558294773102, 0.045371875166893005, 0.008192144334316254, -0.036537088453769684, 0.05979703739285469, -0.015735406428575516, 0.011979373171925545, -0.02725307270884514, -0.04342522844672203, 0.016771122813224792, 0.002010600408539176, 0.032044824212789536, 0.023759089410305023, -0.030572358518838882, 0.02682880498468876, 0.05575399845838547, -0.03938218951225281, 0.01989074982702732, 0.036836571991443634, -0.024532757699489594, -0.044722992926836014, -0.0406300388276577, 0.007474629674106836, 0.009433756582438946, -0.007262494880706072, -0.0340413860976696, 0.00031020803726278245, -0.009190425276756287, -0.0059709688648581505, -0.0370362289249897, 0.008023683913052082, 0.008104794658720493, 0.033018145710229874, -0.043699756264686584, -0.005942892283201218, 0.03421608358621597, 0.003593811998143792, -0.009658369235694408, -0.029025021940469742, -0.016396766528487206, 0.031171327456831932, -0.019678615033626556, -0.011698606424033642, -0.024595150724053383, 0.056003570556640625, 0.001764149870723486, 0.01272808387875557, 0.020327499136328697, 0.05864901468157768, -0.0782652348279953, -0.03860852122306824, 0.036162734031677246, 0.010325970128178596, -0.05245967209339142, 0.04849150404334068, -0.011399121955037117, 0.0066884830594062805, -0.009458713233470917, 0.009452474303543568, 0.00958973728120327, -0.057201504707336426, 0.04175310581922531, 0.02377156913280487, 0.002041796687990427, -0.025069333612918854, 0.03316788747906685, -0.05405692011117935, -0.006588655058294535, 0.020352454856038094, 0.018967339769005775, -0.052908897399902344, 0.02078920416533947, 0.03626256063580513, -0.008678806014358997, 0.00836060382425785, 0.03251900523900986, -0.016883429139852524, 0.015610620379447937, 0.011224422603845596, -0.055704083293676376, 0.01798153854906559, 0.02939937822520733, 0.03364207223057747, -0.022311583161354065, -0.0549553744494915, -0.0011059083044528961, 0.0668848305940628, -0.007405997719615698, 0.0059772077947855, 0.001135544735006988, -0.0008056440274231136, -0.006314127705991268, -0.02271089516580105, -0.0140383280813694, 0.01027605589479208, -0.02747768722474575, -0.007649329025298357, 0.04010594263672829, 0.03913261741399765, -0.015860190615057945, -0.01786923222243786, 0.043400269001722336, 0.03369198739528656, -0.00904692243784666, 0.0007561199599877, -0.0035844529047608376, 0.012940218672156334, 0.010076399892568588, -0.03154568374156952, -0.043949324637651443, 0.010700325481593609, -0.03304310515522957, -0.05250958353281021, 0.03696135804057121, 0.030447572469711304, -0.016159674152731895, 0.03496479615569115, 0.007474629674106836, 0.033966515213251114, -0.021700134500861168, -0.01654650829732418, 0.02317260019481182, 0.045122306793928146, 0.08655097335577011, -0.0430009588599205, -0.027228116989135742, -0.05829961597919464, 0.02939937822520733, 0.05410683527588844, 0.0021930986549705267, 0.029124850407242775, -0.02311020717024803, 0.01143655739724636, 0.014599860645830631, -0.01965365931391716, 0.012977654114365578, 0.06354059278964996, -0.04714382439851761, 0.023035336285829544, -0.0040087224915623665, -0.032818492501974106, 0.026753932237625122, -0.01033844891935587, 0.03596307709813118, -0.003983765374869108, 0.015610620379447937, -0.011430318467319012, 0.01307748258113861, -0.05455606058239937, 0.04140370711684227, -0.04689425230026245, -0.029000066220760345, 0.012228943407535553, -0.03219456598162651, 0.022848159074783325, 0.02772725746035576, -0.022086968645453453, -0.006133189424872398, 0.04030559957027435, 0.02192474901676178, 0.015261221677064896, 0.022448845207691193, -0.03663691505789757, -0.008504106663167477, 0.05048806592822075, -0.010687846690416336, 0.013564144261181355, -0.03591316193342209, 0.04891577363014221, -0.017170434817671776, -0.04891577363014221, -0.022848159074783325, 0.036412302404642105, -0.03805946558713913, 0.05904832482337952, -0.026629148051142693, 0.015984976664185524, 0.01732017658650875, -0.02962399087846279, 0.023646783083677292, 0.0018327817087993026, 0.04414898157119751, -0.047992363572120667, 0.0010130993323400617, 0.003506462322548032, -0.020639460533857346, 0.011548864655196667, 0.027028460055589676, -0.012746801599860191, 0.052659329026937485, -0.07092787325382233, 0.01484943088144064, 0.012597059831023216, 0.015099001117050648, 0.012696887366473675, -0.02317260019481182, -0.011024766601622105, -0.03663691505789757, 0.026903675869107246, 0.008915898390114307, -0.004027440212666988, 0.019728530198335648, 0.005066276527941227, -0.0149367805570364, -0.003127427538856864, -0.03484001010656357, 0.013401923701167107, -0.006314127705991268, 0.03279353305697441, -0.0037622719537466764, 0.006520023103803396, 0.015373528935015202, -0.016509072855114937, 0.04582110047340393, -0.006750875618308783, -0.049614571034908295, 0.04145362228155136, 0.0289751086384058, 0.002642325358465314, 0.003809066256508231, -0.02138817310333252, 0.004186541307717562, -0.0005369660211727023, -0.017607182264328003, 0.025655824691057205, -0.06648551672697067, 0.02120099402964115, 0.0005307268002070487, 0.06853199750185013, 0.047942448407411575, -0.013426880352199078, -0.034914880990982056, -0.01756974682211876, -0.025543516501784325, 0.010706564411520958, 0.016758643090724945, 0.005194181110709906, 0.018293501809239388, 0.012048005126416683, -0.011386643163859844, -0.030622271820902824, -0.041852936148643494, -0.04272643104195595, -0.014050805941224098, -0.029474249109625816, 0.02323499135673046, -0.014712167903780937, -0.021400650963187218, -0.05710167810320854, -0.008385561406612396, 0.0030806330032646656, 0.0020293183624744415, -0.02048971876502037, -0.023384734988212585, -0.012478513643145561, 0.014874388463795185, 0.045496661216020584, 0.04731852188706398, -0.009327689185738564, 0.03978149965405464, -0.04212746024131775, -0.003105590119957924, -0.018780162557959557, -0.02061450481414795, 0.018904948607087135, -0.030422616750001907, -0.023946266621351242, -0.05560425668954849, 0.016284460201859474, 0.0030712741427123547, 0.05864901468157768, 0.024981984868645668, 0.03960680216550827, -0.05755090340971947, 0.022473802790045738, -0.0030603555496782064, -0.0043050870299339294, 0.044173937290906906, -0.04045534133911133, -0.03803450986742973, 0.0543564036488533, 0.010407079942524433, 0.017794359475374222, 0.03047253005206585, -0.02551856078207493, -0.034141212701797485, 0.003158623818308115, 0.0007038661278784275, 0.02772725746035576, -0.012403642758727074, 0.001010759617201984, -0.0028107850812375546, -0.01502413023263216, 0.026429491117596626, 0.03029783070087433, -0.005858662072569132, 0.020389890298247337, -0.0149367805570364, 0.01982835866510868, -0.012890304438769817, 0.04689425230026245, 0.014774559997022152, 0.002372477436438203, -0.03401642665266991, 0.003506462322548032, 0.013015089556574821, 0.013027568347752094, -0.005022601690143347, 0.033667027950286865, -0.024957027286291122, -0.05340803787112236, -0.033192846924066544, 0.036237604916095734, 0.006856943015009165, -0.029773732647299767, 0.03386668488383293, 0.005521742161363363, 0.000490561593323946, -0.01571044884622097, 0.004155344795435667, -0.009970332495868206, 0.03788476809859276, 0.00791137758642435, -0.07781600952148438, -0.002682880498468876, 0.0256807804107666, -0.013838671147823334, -0.025531038641929626, -0.014787038788199425, 0.020090406760573387, 0.01684599369764328, 0.006869421806186438, -0.028525881469249725, 0.005942892283201218, 0.0024223914369940758, -0.00491341482847929, 0.030247917398810387, 0.012522188015282154, 0.003656204557046294, -0.0298735611140728, 0.01307748258113861, -1.054093172569992e-05, 0.027203159406781197, 0.03274361789226532, -0.00938384234905243, -0.004245814401656389, 0.03132106736302376, 0.00583994435146451, -0.02503189817070961, -0.033242758363485336, -0.006304768845438957, 0.04115413874387741, -0.014512510970234871, -0.03266874700784683, -0.008223340846598148, -0.026479406282305717, -0.03162055462598801, 0.010413319803774357, -0.023222513496875763, -0.011636214330792427, 0.036412302404642105, 0.0013905743835493922, -0.011648692190647125, 0.008017444983124733, -0.02957407757639885, 0.01815623790025711, -0.0453968308866024, -0.014587382785975933, 0.014774559997022152, -0.037959638983011246, 0.017707010731101036, -0.00728745199739933, 0.05116190388798714, -0.0039993636310100555, 0.029673906043171883, -0.0033723183441907167, 0.02730298787355423, 0.04404915124177933, -0.021300822496414185, 0.01749487593770027, -0.0005506144370883703, 0.0051161907613277435, 0.02462010644376278, -0.046919211745262146, -0.031695425510406494, -0.02705341763794422, 0.0006586315575987101, 0.012160311453044415, -0.007549500558525324, 0.023135164752602577, 0.019254347309470177, 0.032643791288137436, -0.015548228286206722, -0.002806105650961399, 0.0200030580163002, 0.01971605233848095, 0.02521907538175583, 0.003019800176844001, 0.008029923774302006, -0.03361711651086807, -0.004024320747703314, -0.025705737993121147, 0.0277771707624197, -0.009795633144676685, 0.0055654169991612434, 0.011879544705152512, 0.0012673489982262254, 0.008884701877832413, 0.005590374115854502, -0.04038047045469284, -0.020464763045310974, 0.0063203671015799046, -0.002826383337378502, -0.00869752373546362, -0.010569301433861256, 0.004891577176749706, -0.010388362221419811, 0.01821862906217575, 0.007611893117427826, -0.014549946412444115, -0.02670401893556118, 0.03571350499987602, 0.02133825793862343, -0.0020683135371655226, -0.027852041646838188, 0.02969886176288128, -0.035988032817840576, 0.020926468074321747, -0.01564805582165718, -0.039756543934345245, -0.0033816772047430277, -0.01556070614606142, 0.024632586166262627, -0.027078375220298767, -0.02872553840279579, -0.022124404087662697, 0.02168765664100647, -0.005917935166507959, 0.030372701585292816, -0.010388362221419811, 0.022598588839173317, 0.03052244335412979, -0.006476348731666803, -0.004763672593981028, 0.025730695575475693, 0.01123066246509552, 0.03394155576825142, 0.05420666188001633, -0.0334424152970314, -0.02294798567891121, 0.013027568347752094, 0.012515949085354805, -0.019092125818133354, 0.003918253351002932, 0.046994082629680634, -0.016084803268313408, -0.00904692243784666, 0.012203985825181007, -0.012877825647592545, 0.03948201611638069, 0.004607690963894129, -0.007268734276294708, 0.04934004321694374, 0.01341440249234438, -0.01063169352710247, -0.012640734203159809, -0.05245967209339142, -0.059647295624017715, 0.02132578007876873, -0.043574970215559006, -0.0008976730750873685, -0.028001785278320312, -0.04669459909200668, 0.02550608105957508, -0.05455606058239937, -0.018143758177757263, -0.011355447582900524, -0.023584390059113503, 0.01727026328444481, 0.008591456338763237, -0.01995314285159111, -0.01433781161904335, 0.04040542617440224, -0.007630610838532448, -0.022548673674464226, 0.031520724296569824, -0.009889221750199795, 0.023047814145684242, 0.012210225686430931, 0.007250016555190086, 0.007218820042908192, 0.046994082629680634, 0.002767110476270318, -0.011062202043831348, -0.015797797590494156, -0.05041319504380226, -0.018717769533395767, 0.008079837076365948, -0.020290063694119453, -0.023097729310393333, -0.021837398409843445, -0.016583943739533424, -0.03666187450289726, 0.019379131495952606, 0.06059566140174866, -0.009402560070157051, 0.011561342515051365, -0.027926912531256676, -0.05275915563106537, -0.011885784566402435, -0.0048447828739881516, -0.0006375740631483495, -0.011455275118350983, -0.004604571498930454, -0.008890940807759762, -0.001828102278523147, -0.019753487780690193, 0.027028460055589676, -0.029049979522824287, -0.030397659167647362, -0.005063157062977552, 0.02264850214123726, 3.1342515285359696e-05, -0.02939937822520733, 0.005905456375330687, -0.0259802658110857, 0.018917426466941833, -0.008454193361103535, -0.013302095234394073, 0.01887999102473259, 0.007181384600698948, 0.010207423940300941, -0.0394321046769619, -0.000389563589124009, 0.0006157366442494094, -0.01984083652496338, 0.041553448885679245, -0.01380123570561409, 0.0128403902053833, -0.008323168382048607, -0.03471522405743599, -0.013327052816748619, -0.015348571352660656, 0.019391609355807304, -0.0028965750243514776, 0.034864965826272964, -0.0209015104919672, 0.00914051104336977, -0.00994537491351366, 0.0015761922113597393, 0.010350926779210567, 0.0005213678814470768, -0.02204953320324421, 0.030971670523285866, -0.0008290412370115519, 0.006148787681013346, 0.018056409433484077, 0.005802508909255266, 0.006220539100468159, 0.020265106111764908, -0.014225505292415619, -0.01886751316487789, -0.04651989787817001, -0.0037497933954000473, -0.0016440441831946373, 0.0077429176308214664, -0.004199019633233547, 0.0003731855540536344, 0.008111033588647842, -0.004610810894519091, 0.03758528456091881, 0.02143808640539646, -0.02855083905160427, 0.010987331159412861, -0.020090406760573387, -0.016534030437469482, 0.00720010232180357, -0.019329218193888664, -0.002704717917367816, 0.026654105633497238, 0.01727026328444481, -0.003768511116504669, -0.017008213326334953, -0.007181384600698948, -0.007618132513016462, 0.006307888776063919, -0.014213026501238346, 0.01442516129463911, -0.007873942144215107, -0.01635933108627796, 0.04671955481171608, 0.011736041866242886, 0.007368562277406454, -0.032469093799591064, -0.058099959045648575, 0.004420513287186623, -0.00806735921651125, -0.04377462714910507, -0.010837589390575886, 0.01263449527323246, 0.06324110925197601, 0.045122306793928146, -0.017170434817671776, -0.00024937529815360904, -0.0032475332263857126, -0.010288534685969353, -0.005434392485767603, 0.010881263762712479, 0.014287898316979408, 0.020776724442839622, -0.0013796556740999222, 0.0013585981214419007, -0.011717324145138264, -0.009995289146900177, -0.018805120140314102, -0.028950151056051254, -0.004401795566082001, -0.028650667518377304, 0.017008213326334953, 0.005908576305955648, -0.004663844592869282, -0.010881263762712479, 0.009028204716742039, -0.0038839373737573624, 0.002754631917923689, -0.014275419525802135, 0.010756478644907475, -0.001824982580728829, -0.04010594263672829, -0.02228662557899952, -0.00025561454822309315, -0.024532757699489594, 0.00040750144398771226, -0.012827912345528603, 0.016646336764097214, -0.009221621789038181, 0.03434086963534355, -0.023135164752602577, -0.02605513669550419, -0.0259802658110857, -0.00994537491351366, 0.0075183045119047165, 0.010506908409297466, -0.006557459011673927, -0.03506462275981903, 0.057500991970300674, -0.00278582819737494, -0.036836571991443634, -0.01553574949502945, -0.008017444983124733, 0.026005221530795097, -0.021962184458971024, -0.006379640195518732, -0.023135164752602577, 0.01618463173508644, -0.0030073218513280153, 0.02198714017868042, 0.015248743817210197, -0.012228943407535553, -0.010481951758265495, -0.004364360123872757, -0.027677342295646667, 0.04110422357916832, -0.01036340557038784, 0.0200155358761549, -0.02467002160847187, 0.014549946412444115, 0.004501623567193747, 0.01725778356194496, 0.017420005053281784, -0.01566053368151188, -0.009477430954575539, 0.018380850553512573, 0.033891644328832626, 0.03421608358621597, 0.030547400936484337, -0.012690648436546326, 0.019915707409381866, 0.007387279998511076, 0.0071751452051103115, 0.010662890039384365, -0.021176038309931755, -0.01087502483278513, 0.019254347309470177, 0.010463234037160873, 0.02222423255443573, 0.01326465979218483, 0.009683326818048954, -0.0014506272273138165, -0.014325333759188652, -0.008554020896553993, -0.014949259348213673, -0.02747768722474575, -0.018967339769005775, -0.01851811446249485, 0.026903675869107246, 0.02306029386818409, 0.02539377473294735, -0.009109314531087875, 0.016321895644068718, -0.026130007579922676, 0.0027515122201293707, 0.006024002563208342, 0.01954135298728943, 0.03803450986742973, -0.023796524852514267, -9.982811025111005e-05, 0.0015184790827333927, 0.0028029861859977245, -0.04195276275277138, 0.022723373025655746, 0.04050525650382042, -0.014737124554812908, 0.023459605872631073, 0.029798690229654312, -0.01341440249234438, 0.023646783083677292, -0.019641179591417313, 0.0032475332263857126, 0.003083752701058984, 0.0054749478586018085, -0.03179525211453438, -0.03556376323103905, 0.020452283322811127, 0.019728530198335648, -0.012790475971996784, -0.0140383280813694, 0.06044591963291168, 0.006457630544900894, 0.03424104303121567, 0.0008773955050855875, -0.027452729642391205, -0.012852868996560574, -0.011542624793946743, 0.014562425203621387, -0.010063921101391315, 0.03870834782719612, -0.037435539066791534, -0.01673368737101555, -0.014911823906004429, 0.023821482434868813, 0.01018246728926897, -0.007786592468619347, -0.01388858538120985, 0.04457325115799904, 0.005368880461901426, -0.009870504029095173, 0.008073598146438599, 0.010525626130402088, 0.013676450587809086, -0.027527600526809692, -0.013701408170163631, 0.049015600234270096, 0.027552558109164238, 0.0019123322563245893, -0.0358382910490036, 0.02102629467844963, 0.01104972418397665, 0.004779270850121975, -0.010800153948366642, 0.025131726637482643, 0.011043484322726727, -0.025081811472773552, -0.008348125964403152, 0.006520023103803396, -0.000970204418990761, -0.023397212848067284, -0.048840902745723724, 0.029474249109625816, 0.023646783083677292, 0.005880499724298716, 0.021001338958740234, 0.049190301448106766, -0.02622983604669571, 0.033841729164123535, 0.031021583825349808, -0.04200267791748047, 0.007299930322915316, 0.03728579729795456, 0.037784937769174576, -0.022673459723591805, 0.027976827695965767, 0.028151527047157288, 0.013339530676603317, 0.0034191126469522715, -0.015984976664185524, -0.026080092415213585, 0.024420451372861862, 0.011355447582900524, 0.016683772206306458, -0.00013882346684113145, 0.026179920881986618, 0.02593035064637661, 0.03633743152022362, 0.015685491263866425, 0.020028013736009598, 0.023759089410305023, 0.037011269479990005, 0.0054031964391469955, 0.02545616775751114, 0.009196664206683636, -0.005821226630359888, 0.05181078985333443, -0.005559177603572607, -0.020839117467403412, 0.02580556645989418, 0.02294798567891121, 0.017707010731101036, 0.0029277713038027287, 0.004642006941139698, -0.010419558733701706, -0.009720762260258198, 0.011012287810444832, 0.01457490399479866, -0.01612223871052265, -0.0023178840056061745, 0.02143808640539646, 0.01362653635442257, -0.017719488590955734, -0.004108550492674112, 0.0034596677869558334, -0.006788311526179314, 0.00544999074190855, -0.00039677773020230234, 0.008841026574373245, 0.017157956957817078, -0.002500382252037525, -0.019516395404934883, -0.01810632273554802, 3.056260902667418e-05, 0.00800496619194746, 0.0038620999548584223, 0.02544368989765644, -0.04904055967926979, -0.008741199038922787, 0.04547170177102089, 0.026903675869107246, -0.0436248816549778, -0.021013816818594933, 0.05705176293849945, -0.005534220952540636, -0.018979819491505623, 0.029349463060498238, 0.00011630364315351471, 0.021038774400949478, 0.0011316451709717512, 0.01876768469810486, 0.008142230100929737, -0.042077548801898956, 0.01840580813586712, -0.007655567955225706, -0.03481505438685417, -0.023971224203705788, -0.023222513496875763, -0.00706283887848258, -0.007268734276294708, 0.011249380186200142, -0.025056855753064156, -0.014138155616819859, 0.020177755504846573, 0.016509072855114937, 0.010650411248207092, -0.048117149621248245, 0.03251900523900986, 0.01941656693816185, 0.03501470759510994, -0.013826193287968636, -0.02198714017868042, 0.04559648782014847, 0.001361717819236219, 0.014961738139390945, 0.03631247580051422, -0.06523767113685608, 0.0006180763593874872, -0.031171327456831932, -0.010850067250430584, -0.009352645836770535, 0.02820144034922123, 0.024096010252833366, -0.008978290483355522, 0.008142230100929737, -0.03047253005206585, 0.0034440697636455297, 0.010407079942524433, -0.016746165230870247, 0.022673459723591805, -0.032294392585754395, 0.007799070794135332, -0.008834787644445896, -0.008803591132164001, 0.04187789186835289, 0.03269370645284653, 0.03696135804057121, 0.021350735798478127, 0.002363118575885892, -0.018068887293338776, 0.013938499614596367, 0.008235818706452847, -0.0014248902443796396, -0.024108488112688065, 0.01571044884622097, -0.022910550236701965, 0.014599860645830631, 0.006669765338301659, -0.010432037524878979, 0.04859133064746857, -0.006588655058294535, 0.01457490399479866, 0.02670401893556118, 0.0047730314545333385, 0.039581846445798874, -0.010219902731478214, -0.020589547231793404, -0.00922786071896553, -0.0073186480440199375, 0.03236926347017288, -0.03386668488383293, -0.03189508244395256, -0.011062202043831348, 0.03009817562997341, 0.032044824212789536, 0.009015725925564766, -0.012503470294177532, 0.023858917877078056, 0.01290278322994709, 0.027103330940008163, 0.003135226434096694, -0.002907493617385626, 0.013826193287968636, -0.029823647812008858, 0.013826193287968636, 0.001569173065945506, 0.012877825647592545, -0.06349067389965057, -0.017108041793107986, 0.001418650965206325, 0.004136627074331045, -0.03289336338639259, -0.01010135654360056, 0.011879544705152512, -0.03818425163626671, 0.012690648436546326, -0.035214364528656006, 0.08370587229728699, 0.016047367826104164, -0.009071879088878632, -0.012553384527564049, 0.02138817310333252, -0.030722100287675858, -0.014287898316979408, 0.031046541407704353, 0.025368817150592804, 0.03221952170133591, 0.03149576857686043, 0.016346853226423264, -0.003787228837609291, 0.024457886815071106, 0.006073916330933571, 0.0059865666553378105, 0.0042801303789019585, 0.019279303029179573, 0.0075183045119047165, 0.026304706931114197, 0.014674731530249119, -0.042751386761665344, 0.0027811487670987844, 0.0044953846372663975, 0.0034752660430967808, -0.010793914087116718, -0.013426880352199078, 0.024120965972542763, -0.030572358518838882, 0.006513784173876047, -0.003990004770457745, 0.027452729642391205, 0.006432673893868923, -0.042926087975502014, -0.000502650102134794, -0.03434086963534355, -0.005671484395861626, -0.010887502692639828, -0.0009600656339898705, -0.003127427538856864, -0.047168780118227005, 0.011137072928249836, -0.00914051104336977, 0.018717769533395767, 0.0032319349702447653, 0.025468645617365837, -0.02014032006263733, -0.0030806330032646656, 0.006214299704879522, 0.011991851963102818, 0.012060482986271381, -0.02914980798959732, -0.026329664513468742, -0.021974662318825722, -0.022124404087662697, -0.02550608105957508, 0.005559177603572607, -0.018904948607087135, -0.006657287012785673, 0.009889221750199795, 0.007262494880706072, -0.012409881688654423, -0.021587828174233437, -0.003643725998699665, -0.012497231364250183, 0.028051698580384254, 0.01876768469810486, -0.007605654187500477, -0.002581492532044649, 0.05999669432640076, 0.012447317130863667, -0.037784937769174576, -0.0034908640664070845, 0.007131470367312431, -0.011243140324950218, 0.01386362873017788, -0.0012392724165692925, 0.00724377715960145, 0.008585217408835888, 0.04097943753004074, -0.00026419354253448546, -0.0001974139886442572, 0.03588820621371269, 0.04946482926607132, 0.003752912860363722, 0.007655567955225706, -0.005506143905222416, 0.013327052816748619, 0.010313491337001324, -0.0007210241165012121, -0.002476984867826104, 0.007187623996287584, -0.009951614774763584, -0.033018145710229874, 0.022199274972081184, 0.0010669128969311714, -0.0289751086384058, -0.015099001117050648, 0.029299549758434296, -0.015747884288430214, 0.03830903768539429, -0.0125471455976367, -0.0005244875210337341, 0.01892990432679653, -0.028925195336341858, -0.004691921174526215, -0.01810632273554802, -0.017407527193427086, -0.023434648290276527, -0.00115426245611161, 0.0158352330327034, -0.014188069850206375, -0.024582671001553535, 0.00019507425895426422, -0.0029137330129742622, -0.047817662358284, 0.03476513922214508, 0.01212287601083517, 0.018181193619966507, -0.0009756637737154961, -0.015872668474912643, 0.010400841012597084, 0.026005221530795097, -0.018018973991274834, 0.014824474230408669, 0.027153246104717255, -0.008291971869766712, 0.018967339769005775, 0.054456233978271484, -0.049190301448106766, 0.010756478644907475, 0.016047367826104164, 0.012746801599860191, 0.009177946485579014, -0.017307698726654053, -0.027078375220298767, -0.0073997583240270615, 0.01635933108627796, -0.01018246728926897, 0.01036340557038784, -0.025543516501784325, 0.0006902177701704204, -0.011467753909528255, -0.015673013404011726, -0.008379321545362473, 0.023459605872631073, -0.03798459470272064, -0.005219138227403164, -0.007880181074142456, -0.0034721463453024626, -0.00932144932448864, 0.0017625900218263268, -0.036062903702259064, 0.0006711100577376783, 0.024719934910535812, -0.020514676347374916, 0.004202139563858509, 0.013988413847982883, 0.04637015610933304, -0.014500033110380173, -0.005605972371995449, -0.009533584117889404, 0.01141160074621439, -0.03980645909905434, 0.010662890039384365, 0.004520341753959656, -0.013688929378986359, -0.012802954763174057, 0.0033286435063928366, -0.03741058334708214, 0.010219902731478214, -0.03973158821463585, 0.016521552577614784, -0.016321895644068718, -0.03196995332837105, -0.012260139919817448, 0.002032437827438116, 0.012147832661867142, -0.035638634115457535, 0.02635462023317814, 0.00947119202464819, -0.009882982820272446, 0.02449532225728035, -0.014899345114827156, -0.03274361789226532, -0.006382759660482407, 0.0209139883518219, -0.006520023103803396, 0.017407527193427086, -0.0066011338494718075, 0.04821697622537613, 0.005587254650890827, 0.028775451704859734, -0.022798243910074234, -0.011898262426257133, -0.06239256635308266, 0.005730757489800453, 0.01989074982702732, 0.029199721291661263, -0.007630610838532448, 0.017420005053281784, -0.0058992174454033375, -0.024445408955216408, 0.027228116989135742, -0.020152799785137177, -0.025905394926667213, -0.012827912345528603, -0.01798153854906559, -0.012335010804235935, -0.020564589649438858, 0.02430814504623413, 0.03965671733021736, 0.006607372779399157, 0.028351182118058205, 0.023634305223822594, -0.010956134647130966, 0.04117909446358681, 0.024457886815071106, 0.03930731862783432, -0.03334258869290352, -0.0322444774210453, 0.026204878464341164, 0.039032790809869766, -0.03935723006725311, -0.018892468884587288, 0.023646783083677292, -0.017357612028717995, -0.0019466481171548367, 0.013451837934553623, -0.01870529167354107, -0.00018113342230208218, -0.0042333356104791164, 0.019741008058190346, 0.008267015218734741, 0.007948813028633595, -0.024632586166262627, 0.020028013736009598, 0.004788629710674286, -0.009964092634618282, -0.02742777206003666, -0.010506908409297466, -0.02228662557899952, -0.019104603677988052, -0.009371363557875156, -0.019042212516069412, 0.04165327921509743, -0.03603794798254967, -0.007636850234121084, 0.018617942929267883, -0.027976827695965767, -0.01457490399479866, -0.016509072855114937, -0.006407716777175665, -0.0038652196526527405, 0.002901254454627633, -0.009639651514589787, 0.011274336837232113, 0.020577069371938705, 0.040829695761203766, -0.000362461811164394, -0.0018920545699074864, -0.07192615419626236, 0.031994909048080444, 0.03908270597457886, -0.0012962055625393987, -0.005649647209793329, 0.021637743338942528, 0.002497262554243207, 0.0014397085178643465, -0.010219902731478214, 0.0072936913929879665, 0.0034284715075045824, 0.0032412938307970762, -0.0435999259352684, -0.03648717328906059, 0.0017313937423750758, 0.0012509709922596812, 0.007574457675218582, -0.018842555582523346, 0.006254855077713728, 0.0055654169991612434, 0.01851811446249485, 0.056602537631988525, 0.02138817310333252, 0.01577284187078476, 0.014275419525802135, -0.013576623052358627, -0.02837613970041275, -0.00020336077432148159, -0.013489273376762867, -0.018742727115750313, -0.007749157026410103, 0.019940664991736412, 0.021038774400949478, 0.010176227428019047, 0.03314293175935745, 0.010288534685969353, 0.0015449959319084883, -0.0029137330129742622, -0.01976596564054489, -0.04834176227450371, -0.00540631590411067, 0.002631406532600522, 0.036537088453769684, -0.009109314531087875, -0.014712167903780937, 0.017295219004154205, 0.01069408655166626, 0.030672186985611916, -0.029224678874015808, 0.000616516568697989, -0.005643407814204693, 0.00769300339743495, -0.016022412106394768, -0.008547781966626644, 0.006794550456106663, -0.029224678874015808, -0.05395709350705147, 0.049190301448106766, 0.009957853704690933, 0.01566053368151188, 0.02700350247323513, 0.01708308421075344, -0.04569631814956665, 0.06848208606243134, -0.020090406760573387, 0.01660890132188797, 0.009427516721189022, 0.002556535415351391, -0.00877863448113203, -0.012690648436546326, 0.007100274320691824, 0.006669765338301659, -0.04332539811730385, 0.008685045875608921, 0.0035220603458583355, -0.011186987161636353, -0.010120074264705181, -0.013002610765397549, -0.0179316233843565, -0.005421914160251617, 0.008354364894330502, -0.01984083652496338, 0.005122429691255093, 0.016521552577614784, 0.008722481317818165, 0.004950850270688534, 0.011923220008611679, 0.005278411321341991, -0.01785675249993801, 0.025356339290738106, 0.011542624793946743, -0.006682244129478931, -0.0200155358761549, -0.011923220008611679, -0.01821862906217575, -0.0010708124609664083, 0.05116190388798714, 0.027452729642391205, -0.03254396468400955, -0.015735406428575516, 0.0301730465143919, -0.029174765571951866, 0.06369033455848694, -0.005203539971262217, -0.005858662072569132, -0.0016721207648515701, 0.008772394619882107, 0.0011994971428066492, 0.03493983671069145, 0.013676450587809086, -0.011268097907304764, -0.007443433161824942, -0.03775998204946518, 0.019404089078307152, -0.051760874688625336, -0.03334258869290352, 0.008173426613211632, -0.012522188015282154, 0.005400076974183321, 0.03968167304992676, -0.006963010411709547, 0.013663972727954388, -0.014712167903780937, 0.007873942144215107, -0.02053963392972946, 0.008753676898777485, -0.033791813999414444, 0.01798153854906559], [0.0423603430390358, 0.025768596678972244, -0.03920350596308708, 0.027922097593545914, -0.01420576497912407, 0.0218164324760437, -0.018977727741003036, 0.01524580828845501, 0.01869630441069603, -0.021351473405957222, 0.018916549161076546, -0.018268050625920296, 0.016261380165815353, -0.021583953872323036, 0.024606196209788322, 0.03311007842421532, -0.023553917184472084, 0.011850373819470406, -0.029145678505301476, 0.008558942936360836, -0.0325472317636013, 0.02045825868844986, -0.004628191702067852, 0.011391530744731426, 0.004998324904590845, 0.05119459331035614, 0.052271343767642975, -0.0026551687624305487, 0.0788475051522255, -0.005435754545032978, 0.055207934230566025, -0.028117870911955833, -0.005790592636913061, -0.04906556382775307, 0.07938587665557861, 0.012027792632579803, -0.0241045281291008, 0.05232028663158417, -0.0006056721322238445, -0.006325908936560154, -0.012798648327589035, -0.06083640456199646, -0.0028218815568834543, 0.0005249923560768366, -0.013080071657896042, 0.04346156492829323, 0.01293324213474989, -0.03291430324316025, 0.02645380236208439, 0.01752166636288166, -0.02657615952193737, 0.051879797130823135, 0.028117870911955833, -0.039056677371263504, -0.0073843058198690414, -0.022526109591126442, -0.0208375696092844, 0.03147048130631447, 0.019369272515177727, -0.02222021482884884, -0.03675634786486626, -0.01902667060494423, -0.011232465505599976, 0.012553932145237923, 0.024508310481905937, -0.003404611721634865, -0.02222021482884884, 0.056186798959970474, -0.020286958664655685, 0.0332324355840683, -0.012578403577208519, 0.00921355839818716, 0.004554776940494776, -0.04343709349632263, -0.04590872675180435, -0.005411283113062382, -0.008124572224915028, -0.04703442007303238, -0.012486634775996208, -0.028607303276658058, -0.0377841554582119, 0.014218000695109367, -0.04311896488070488, -0.02885201945900917, -0.0007463838555850089, -0.03653610125184059, -0.06533917784690857, -0.049481578171253204, 0.0029075322672724724, -0.01393657736480236, -0.029659582301974297, 0.004778080154210329, 0.003514733863994479, 0.02677193284034729, -0.03629138693213463, -0.0005850242450833321, 0.021008869633078575, 0.040476031601428986, -0.03151942417025566, 0.019503867253661156, -0.003435201244428754, -0.025107864290475845, -0.006656275596469641, 0.04402441158890724, 0.04935922101140022, 0.008093982003629208, -0.09353046119213104, 0.00197761133313179, -0.015331459231674671, -0.013031127862632275, 0.057801924645900726, 0.001036219415254891, 0.012872062623500824, 0.058193471282720566, -0.033256907016038895, 0.03367292508482933, 0.03355056792497635, 0.010406549088656902, -0.0495060496032238, 0.025499409064650536, 0.006564507260918617, 0.006772515829652548, 0.011862609535455704, -0.025058921426534653, -0.028827548027038574, -0.005692706443369389, 0.04522351920604706, -0.04010895639657974, -0.0018430175259709358, -0.0077942050993442535, 0.01985870487987995, -0.008754715323448181, 0.05432695522904396, -0.05119459331035614, 0.001030866289511323, 0.04402441158890724, 0.0007513546734116971, 0.004328414797782898, 0.028191285207867622, -0.0068031055852770805, -0.010057828389108181, -0.017876505851745605, 0.07967953383922577, 0.04277636110782623, -0.001549358363263309, -0.02657615952193737, -0.03913009166717529, 0.023920990526676178, 0.04485644772648811, -0.014303651638329029, 0.005655998829752207, -0.03203332796692848, 0.03673187643289566, -0.035655125975608826, -0.04762173816561699, -0.050117842853069305, 0.05789981037378311, 0.03685423359274864, 0.03178860992193222, -0.01810898631811142, -0.059563878923654556, -0.024593960493803024, -0.015527231618762016, -0.01699552685022354, -0.02833811566233635, -0.007989978417754173, 0.00403781421482563, 0.002855530008673668, -0.03445601463317871, -0.005218569189310074, -0.03687870502471924, 0.001144812093116343, -0.0036615633871406317, -0.012872062623500824, -0.05608891323208809, -0.005031973123550415, 0.027848683297634125, 0.03430918604135513, 0.013496088795363903, 0.008228575810790062, 0.04216457158327103, 0.024716317653656006, 0.011593421921133995, -0.03372186794877052, -0.003416847437620163, 0.02207338437438011, -0.004374298732727766, -0.012284744530916214, 0.019773054867982864, 0.043094489723443985, -0.02826470136642456, 0.04975076764822006, 0.00644826702773571, -0.004882084671407938, 0.036389272660017014, -0.0030344787519425154, -0.007011114154011011, -0.006261671427637339, 0.05980859696865082, 0.032987721264362335, 0.016383737325668335, -0.009030020795762539, -0.043021075427532196, 0.01145882811397314, -0.05373963713645935, 0.00027148184017278254, 0.037490494549274445, 0.011226347647607327, 0.018549473956227303, 0.02018907107412815, 0.019528338685631752, 0.00426723575219512, -0.03477414697408676, 0.047132305800914764, 0.0051940977573394775, -0.007806441280990839, 0.011746369302272797, -0.00018659596389625221, 0.034504957497119904, 0.04749938100576401, -0.06940146535634995, -0.010724679566919804, -0.0033893168438225985, 0.034358128905296326, -0.004062286112457514, -0.0006809987826272845, -0.013043363578617573, -0.05466955900192261, -0.006270848214626312, -0.01256616786122322, -0.005013619549572468, -0.000988040934316814, -0.0015218277694657445, -0.021914320066571236, -0.017546139657497406, 0.047132305800914764, -0.04742596670985222, -0.008320344612002373, 0.03440707176923752, 0.031617309898138046, -0.006717454642057419, 0.007292537484318018, -0.06886308640241623, -0.026037784293293953, 0.028387058526277542, 0.01120187621563673, 0.02006671391427517, -0.04735254868865013, -0.0029702407773584127, -0.04573742300271988, 0.024385951459407806, -0.07243594527244568, 0.021473830565810204, -0.04121017828583717, -0.01714235730469227, -0.028166813775897026, 0.05569736659526825, -0.01127529051154852, 0.01413235068321228, -0.011403766460716724, -0.01887984201312065, 0.008063392713665962, -0.018451588228344917, -0.030124541372060776, -0.03795545548200607, 0.012364276684820652, 0.008032803423702717, -0.012003321200609207, -0.02025025151669979, 0.05980859696865082, 0.004392652772367001, 0.008491645567119122, 0.01602889969944954, -0.03293877840042114, -0.02892543375492096, 0.0312747061252594, 0.03952163830399513, -0.0005265218205749989, -0.03379528224468231, 0.03817569836974144, -0.01575971208512783, -0.05413118377327919, 0.015576174482703209, -0.03829805925488472, -0.04147936403751373, 0.00775138009339571, -0.05378858000040054, -0.020862041041254997, -0.029879827052354813, -0.057557206600904465, 0.05613785609602928, -0.025523880496621132, 0.005790592636913061, 0.0214860662817955, -0.028044456616044044, -0.049922067672014236, -0.02990429848432541, 0.02743266522884369, -0.025377051904797554, -0.060689572244882584, -0.03181308135390282, 0.04150383546948433, 0.014450481161475182, -0.01681199111044407, -0.049016620963811874, -0.014658489264547825, 0.0423603430390358, 0.023211315274238586, -0.01705670729279518, -0.05824241414666176, 0.0008098570979200304, -0.007249712012708187, 0.007237476296722889, -0.02931697852909565, 0.0034933211281895638, 0.03164178133010864, 0.013973284512758255, 0.033379264175891876, 0.009788640774786472, -0.014927676878869534, 0.05633362755179405, -0.011495535261929035, -0.0032577819656580687, -0.04935922101140022, -0.0014491777401417494, -0.028607303276658058, 0.013496088795363903, 0.007708554621785879, 0.009439921006560326, -0.017803089693188667, -0.021926555782556534, 0.050460442900657654, 0.0043865349143743515, 0.01818240061402321, 0.031617309898138046, -0.025058921426534653, -0.00512680085375905, -0.03164178133010864, -0.03751496598124504, -0.006815341301262379, -0.013312551192939281, 0.009929352439939976, 0.02266070432960987, -0.0055214050225913525, -0.02228139340877533, 0.010822566226124763, -0.022367045283317566, 0.006668511778116226, -0.045688480138778687, 0.010639028623700142, -0.03766179457306862, -0.01142823789268732, -0.028778603300452232, 0.01661621779203415, -0.03528805077075958, 0.012957713566720486, -0.010363723151385784, -0.009182969108223915, -0.03315902128815651, 0.021853141486644745, 0.013129014521837234, 0.014303651638329029, 0.01413235068321228, 0.05873184651136398, 0.02611120045185089, 0.024434894323349, -0.0036615633871406317, 0.04409782588481903, 0.0553547628223896, 0.001596771995536983, 0.014438245445489883, 0.050313614308834076, 0.002658227691426873, -0.011440473608672619, 0.027212422341108322, -0.0044813621789216995, 0.008418231271207333, 0.02261175960302353, 0.030662918463349342, 0.0039062793366611, 0.028509415686130524, 0.018928784877061844, -0.04703442007303238, -0.018647361546754837, 0.027726326137781143, -0.02246493101119995, 0.01145882811397314, -0.00364015088416636, 0.0017879564547911286, -0.02677193284034729, 0.09788640588521957, -0.02762843854725361, -0.03751496598124504, 0.009923234581947327, -0.03695211932063103, 0.017754146829247475, -0.0034933211281895638, 0.0007433249265886843, 0.0006515564164146781, -0.033330321311950684, 0.02794656902551651, -0.03570406883955002, 0.014426009729504585, -0.008087864145636559, 0.04059838876128197, 0.04143042117357254, 0.04532140865921974, 0.012278626672923565, -0.003976635169237852, -0.025890955701470375, 0.009764169342815876, -0.002801998518407345, 0.020299194380640984, 0.006570625118911266, -0.0122174471616745, -0.0011310469126328826, 0.00964181125164032, 0.014499424025416374, -0.002181031508371234, 0.017423780634999275, 0.021449359133839607, 0.006527800112962723, -0.01032701600342989, -0.03511675074696541, 0.009843702428042889, 0.03430918604135513, -0.012266390956938267, 0.01753390207886696, 0.018353702500462532, -0.03668292984366417, 0.012688525952398777, 0.06098323315382004, -0.001332937623374164, 0.04962841048836708, -0.0149766206741333, -0.030124541372060776, -0.04145489260554314, -0.007567842956632376, -0.019136792048811913, 0.034504957497119904, -0.018341464921832085, 0.006894873920828104, 0.025181278586387634, 0.029684053733944893, -0.007745262235403061, -0.05241817235946655, 0.02645380236208439, 0.004827023483812809, 0.0030574207194149494, -0.02951275184750557, -0.004224410280585289, 0.02775079756975174, -0.028680717572569847, 0.030246900394558907, -0.029806410893797874, -0.025377051904797554, 0.028117870911955833, -0.049138978123664856, -0.03705000504851341, 0.005876243580132723, 0.007341480813920498, -0.01505003497004509, 0.027383722364902496, 0.004554776940494776, -0.048184584826231, 0.04030472785234451, 0.0028784722089767456, 0.023333672434091568, -0.027457138523459435, -0.0021167935337871313, -0.04894320294260979, -0.002242210553959012, 0.006203551311045885, -0.025646239519119263, 0.014939913526177406, -0.01752166636288166, 0.003285312559455633, 0.0014820614596828818, -0.033770810812711716, 0.03629138693213463, -0.01263958215713501, 0.055599480867385864, -0.0508030466735363, -0.037686266005039215, 0.07801546901464462, 0.022893182933330536, -0.011917670257389545, -0.03244934603571892, -0.019063377752900124, 0.0016594805056229234, -0.03607114031910896, -0.028876490890979767, 0.04967735335230827, -0.011452710255980492, -0.03330584987998009, -0.010957160033285618, -0.004273353610187769, 0.009372623637318611, 0.007720790337771177, 0.011905434541404247, 0.03173966705799103, 0.00369827076792717, -0.01169742550700903, -0.018268050625920296, -0.009519453160464764, -0.0026184613816440105, 0.006662393920123577, -0.008993313647806644, 0.03619350120425224, -0.018206872045993805, 0.040353670716285706, 0.005900715012103319, 0.0015027093468233943, -0.02098439820110798, 0.012908769771456718, -0.04079416021704674, 0.027506081387400627, 0.006754162255674601, -0.02448383718729019, -0.004518069326877594, 0.013606211170554161, 0.005010560620576143, -0.008051156997680664, 0.017301423475146294, -0.020494967699050903, -0.00728030176833272, 0.0018674891907721758, -0.06597544252872467, 0.013753040693700314, -0.0016533626476302743, -0.022819768637418747, -0.0077942050993442535, -0.011978848837316036, 0.05320126190781593, 0.006350380834192038, -0.03705000504851341, -0.026478273794054985, 0.03687870502471924, 0.01289653405547142, -0.06783527880907059, 0.04581084102392197, 0.025939898565411568, -0.014389301650226116, -0.024740789085626602, 0.021718546748161316, -0.0021963263861835003, -0.018476059660315514, 0.02430030144751072, -0.006845930591225624, -0.009127907454967499, -0.03680529072880745, 0.014927676878869534, -0.024373715743422508, -0.01534369494765997, 0.019981063902378082, -0.002252916805446148, 0.0028310585767030716, -0.04637368768453598, -0.004062286112457514, -0.0042764125391840935, -0.009831465780735016, -0.004328414797782898, 0.001777250086888671, -0.008870955556631088, 0.018145693466067314, -0.005395988468080759, 0.01299442071467638, 0.016249144449830055, -0.018084514886140823, 0.012725233100354671, -0.05931916460394859, 0.007427131291478872, -0.01575971208512783, -0.00042481173295527697, 0.01863512583076954, 0.019173501059412956, 0.030760804191231728, -0.008889309130609035, -0.009005549363791943, 0.04515010491013527, 0.0050839753821492195, -0.02241598814725876, -0.009348152205348015, 0.006943817250430584, -0.03173966705799103, 0.027971040457487106, 0.004472185391932726, -0.028387058526277542, 0.008962724357843399, -0.037417080253362656, -0.015882069244980812, -0.004343709442764521, 0.003909338265657425, 0.007255829870700836, -0.028778603300452232, -0.00901778507977724, 0.07522570341825485, 0.03861618787050247, -0.033183492720127106, 0.014585074968636036, -0.021412651985883713, -0.011256936937570572, -0.0208498053252697, -0.0019867881201207638, -0.03567959740757942, 0.007102882489562035, 0.015258044004440308, -0.032204627990722656, -0.0011371647706255317, -0.020115656778216362, -0.023676274344325066, 0.01818240061402321, 0.03991318494081497, -0.014377065934240818, -0.01325137261301279, 0.012982184998691082, -0.05236922949552536, 0.0302958432585001, -0.01456060353666544, -0.030173486098647118, -0.0436573401093483, -0.012070617638528347, 0.011416002176702023, -0.02794656902551651, -0.02014012821018696, 0.024202413856983185, 0.01084703765809536, 0.004456890746951103, -0.06538812071084976, -0.0032088388688862324, 0.0046312506310641766, -0.0053776344284415245, -0.013385966420173645, -0.037025533616542816, 0.004857613239437342, -0.03369739651679993, -0.030197957530617714, -0.0002286565286340192, -0.017484959214925766, 0.008191868662834167, -0.029072264209389687, -0.015612882561981678, 0.043216850608587265, -0.01901443488895893, 0.05139036476612091, 0.026160143315792084, -0.01143435575067997, 0.006650157738476992, -0.012082853354513645, 0.00901778507977724, 0.004805610980838537, 0.031494952738285065, -0.011299761943519115, 0.0007915034075267613, 0.012333687394857407, -0.005438813474029303, 0.019197972491383553, 0.012333687394857407, -0.035924311727285385, 0.0014805318787693977, 0.0008067981107160449, -0.03700106218457222, 0.01178919430822134, 0.029732996597886086, 0.015845362097024918, 0.018023334443569183, 0.04652051627635956, -0.005120682530105114, 0.013532795943319798, 0.0036187381483614445, 0.04333920776844025, -0.035728540271520615, 0.015931012108922005, -0.014842026866972446, 0.02384757623076439, 0.006864284630864859, 0.02338261529803276, 0.0014017639914527535, -0.043486036360263824, -0.009843702428042889, -0.008773069828748703, -0.0377596840262413, 0.010767504572868347, -0.00938485935330391, -0.02743266522884369, -0.024740789085626602, 0.043412622064352036, -0.01084091980010271, -0.019002199172973633, 0.011746369302272797, -0.010675736702978611, -0.009684636257588863, 0.043804168701171875, -0.016126785427331924, 0.025695182383060455, -0.02567071095108986, 0.014169057831168175, -0.004105111118406057, 0.01169130764901638, -0.005628468468785286, -0.03244934603571892, 0.006007778458297253, -0.025523880496621132, -0.023602860048413277, 0.015918776392936707, -0.011758605018258095, 0.0449298620223999, 0.02247716672718525, 0.018977727741003036, 0.008944370783865452, 0.040157899260520935, -0.018720775842666626, -0.03470073267817497, -0.005698824301362038, -0.00482090562582016, -0.00780032342299819, 0.026160143315792084, 0.01783979870378971, -0.00482090562582016, -0.017546139657497406, -0.0007677965331822634, 0.0015845362795516849, -0.052271343767642975, -0.010112890042364597, 0.03604666888713837, 0.007102882489562035, -0.0276773814111948, -0.019662931561470032, -0.0345294289290905, 0.008381524123251438, 0.02606225572526455, -0.019185736775398254, -0.006956052966415882, -0.005304219666868448, -0.019968828186392784, 0.003918515518307686, 0.0005509934271685779, 0.03893432021141052, -0.011024456471204758, -0.010608439333736897, 0.0214860662817955, -0.011997203342616558, 0.016579510644078255, -0.01110398955643177, 0.011513888835906982, -0.019981063902378082, -0.029732996597886086, -0.007941034622490406, 0.00973358005285263, -0.016310323029756546, -0.01361844688653946, 0.008687418885529041, -0.07972847670316696, 0.0009146261145360768, 0.024153470993041992, 0.05271182954311371, 0.027506081387400627, -0.027603967115283012, -0.021914320066571236, -0.013312551192939281, -0.009262501262128353, -0.001391822355799377, -0.0016472446732223034, 0.02247716672718525, 0.03372186794877052, -0.007292537484318018, -0.02130253054201603, 0.0044813621789216995, -0.016187964007258415, -0.02904779091477394, -0.01377751212567091, -0.003429083153605461, -0.04700994864106178, -0.019577281549572945, 0.023174608126282692, -0.034749675542116165, -0.03969293832778931, 0.010057828389108181, -0.01960175298154354, -0.007421013433486223, -0.02266070432960987, -0.08814670890569687, 0.006093428935855627, 0.011758605018258095, -0.00516044907271862, -0.04678970202803612, 0.015918776392936707, 0.003554500173777342, 0.018549473956227303, -0.018720775842666626, -0.04480750486254692, 0.012847591191530228, 0.012174622155725956, 0.009103436022996902, -0.04316790774464607, -0.03548382222652435, 0.034749675542116165, -0.0775260329246521, 0.004141818732023239, 0.011354823596775532, -0.014279180206358433, -0.004466067533940077, -0.010932688601315022, 0.0017741911578923464, 0.0070967646315693855, 0.012364276684820652, -0.04052497446537018, -0.016444915905594826, -0.011679071933031082, -0.0023584505543112755, 0.012810884043574333, 0.007763615809381008, 0.019907647743821144, 0.02045825868844986, -0.01241322048008442, -0.03731919452548027, -0.04742596670985222, -0.01007006410509348, -0.010431020520627499, 0.01256616786122322, 0.037490494549274445, 0.027261365205049515, -0.0024012760259211063, -0.04515010491013527, 0.03284088894724846, -0.008118454366922379, -0.02500997669994831, 0.01022301148623228, -0.0364871583878994, -0.022819768637418747, -0.012615110725164413, 0.027065591886639595, -0.011899316683411598, -0.007139590103179216, -0.009978296235203743, -0.015539467334747314, -0.008950488641858101, 0.06431137025356293, -0.02026248723268509, 0.03864065930247307, 0.008461056277155876, -0.013459381647408009, -0.030516088008880615, 0.013948813080787659, 0.002483867574483156, 0.021253585815429688, -0.00676028011366725, 0.00859565008431673, 0.0205072034150362, 0.012076735496520996, -0.04664287343621254, -0.002320213709026575, 0.04727913439273834, 0.010632910765707493, 0.007757497951388359, -0.07679188996553421, -0.000605289766099304, 0.014866498298943043, -0.01764402538537979, -0.0051726847887039185, 0.02625802904367447, 0.007720790337771177, 0.00765349343419075, 0.005818123463541269, -0.0041265240870416164, -0.026209086179733276, 0.019956592470407486, 0.016567274928092957, -0.0273592509329319, -0.04336367920041084, 0.021339237689971924, -0.008002214133739471, -0.02912120707333088, -0.03041820228099823, -0.030589502304792404, 0.014915441162884235, 0.006601214874535799, 0.008473291993141174, 0.02990429848432541, -0.02005447819828987, -0.012449927628040314, -0.0055764662101864815, 0.029610639438033104, -0.026355914771556854, 0.006613450590521097, -0.023676274344325066, -0.005931304767727852, 0.04620238393545151, -0.03394211083650589, 0.027310308068990707, -0.010186304338276386, -0.010076181963086128, 0.012688525952398777, -0.016310323029756546, -0.019565045833587646, -0.009684636257588863, -0.016175728291273117, -0.0005043444107286632, 0.023602860048413277, -0.014181293547153473, -0.004707724321633577, 0.02169407531619072, 0.0032333105336874723, -0.02853388898074627, 0.00439877063035965, 0.02762843854725361, 0.039643995463848114, 0.0022682116832584143, 0.019577281549572945, 0.00255575287155807, 0.04147936403751373, -0.009244147688150406, 0.012345923110842705, -0.006163784768432379, 0.0061851972714066505, -0.005827300250530243, -0.0605916865170002, -0.026747461408376694, 0.02709006331861019, -0.02072744630277157, 0.041136763989925385, 0.01505003497004509, 0.005760003346949816, -0.015490524470806122, 0.027261365205049515, -0.0003001595032401383, -0.03470073267817497, -0.03213121369481087, 0.00997217744588852, -0.02175525389611721, 0.016750812530517578, 0.008944370783865452, 0.011709661222994328, 0.0030818923842161894, 0.01195437740534544, 0.0040775807574391365, 0.02709006331861019, -0.024434894323349, 0.0237741619348526, 0.02885201945900917, -0.017289187759160995, -0.013104543089866638, 0.013141250237822533, 0.023541681468486786, -0.007518899627029896, 0.012725233100354671, 0.015931012108922005, 0.003266958985477686, 0.014952149242162704, -0.0015210630372166634, 0.026404859498143196, 0.016848698258399963, 0.05065621808171272, 0.011489417403936386, 0.015001092106103897, -0.023223550990223885, 0.02502221241593361, 0.026625102385878563, -0.0031598955392837524, -0.00023764220532029867, -0.03558170795440674, -0.010461609810590744, 0.003539205528795719, -0.006699101068079472, 0.0338931679725647, 0.0018904312746599317, 0.0021779725793749094, -0.0002928944886662066, 0.01850053109228611, -0.055795252323150635, -0.004212174564599991, 0.004502774681895971, 0.050117842853069305, 0.007629022002220154, 0.009684636257588863, 0.012229682877659798, 0.021339237689971924, -0.03861618787050247, 0.056774117052555084, 0.048894260078668594, -0.006962170824408531, 0.023137899115681648, 0.014707433059811592, 0.010535025037825108, -0.017937684431672096, 0.03284088894724846, 0.0338686965405941, -0.014009992592036724, 0.001001041498966515, -0.014144586399197578, -0.007677965331822634, 0.03837147355079651, -0.011354823596775532, 0.006491092499345541, -0.00439877063035965, 0.011734133586287498, 0.040476031601428986, 0.010431020520627499, -0.007775851525366306, 0.03164178133010864, 0.018733011558651924, 0.04840482771396637, 0.009238029830157757, 0.01646938920021057, -0.002512927632778883, 0.01732589490711689, 0.04025578498840332, -0.013104543089866638, 0.0008580355788581073, 0.01163012906908989, 0.0006679982761852443, -0.008852601982653141, 0.008167397230863571, -0.01954057440161705, 0.013214665465056896, 0.0051788026466965675, -0.015979956835508347, 0.011085635982453823, -0.019650695845484734, -0.030907632783055305, 0.008546707220375538, -0.03602219745516777, 0.019821997731924057, 0.003435201244428754, 0.0403781421482563, 0.005454108119010925, 0.020531674847006798, -0.008968842215836048, 0.03489650413393974, 0.04052497446537018, -0.02912120707333088, 0.00512680085375905, -0.014474952593445778, 0.01700776442885399, 0.009647929109632969, 0.019197972491383553, 0.04715677723288536, -0.03810228407382965, 0.007249712012708187, 0.01387539878487587, -0.004459949675947428, 0.0061913151293993, 0.0019837291911244392, 0.009611221961677074, 0.0015585351502522826, 0.011942141689360142, 0.013031127862632275, -0.02370074763894081, -0.003585089696571231, 0.00542351882904768, 0.006212728098034859, 0.0008006802527233958, 0.001465237233787775, 0.02520575001835823, -0.002652109833434224, 0.010834801942110062, -0.021865377202630043, -0.013129014521837234, 0.03766179457306862, 0.007647375576198101, -0.0029029438737779856, -0.0010759857250377536, -0.01941821724176407, 0.005484697874635458, -6.91131572239101e-05, -0.002012789249420166, -0.011030574329197407, 0.014634017832577229, 0.0005368457641452551, -0.008032803423702717, -0.012156268581748009, -0.003109422978013754, 0.04630026966333389, -0.01726471446454525, -0.004212174564599991, 0.03675634786486626, -0.07434472441673279, 0.020690739154815674, -0.005221628118306398, -0.028436001390218735, 0.015527231618762016, 0.011929905973374844, -0.005799769889563322, -0.005224687047302723, -0.005261394660919905, 0.004040873143821955, -0.009764169342815876, 0.028313644230365753, 0.019051142036914825, -0.009127907454967499, -0.004793375264853239, -0.017570611089468002, -0.01059008575975895, 0.020360372960567474, -0.007451602723449469, 0.0010209246538579464, 0.013961048796772957, 0.0016487742541357875, 0.030785275623202324, 0.0011096341768279672, 0.028558360412716866, 0.0156373530626297, -0.013300315476953983, -0.005799769889563322, -0.008185750804841518, 0.020629560574889183, 0.021070050075650215, 0.0156251173466444, 0.01843935251235962, 0.056774117052555084, 0.00970298983156681, 0.012040028348565102, -0.012786411680281162, -8.005846757441759e-05, -0.0023477443028241396, -0.0015348283341154456, -0.01714235730469227, 0.023015541955828667, 0.018157929182052612, 0.04209115728735924, -0.023076720535755157, -0.00827140174806118, -0.029806410893797874, 0.02709006331861019, 0.009342034347355366, -0.005041149910539389, 0.01667739637196064, 0.005402106326073408, 0.01358173880726099, -0.03183755278587341, 0.0010805742349475622, 0.028949905186891556, -0.009819230064749718, -0.053397037088871, 0.0338686965405941, -0.0371234193444252, 0.005108446814119816, -0.011042810045182705, -0.02958616614341736, 0.004224410280585289, 0.025842012837529182, -0.01720353588461876, -0.00043857700075022876, 0.004224410280585289, -0.024006642401218414, 0.001464472501538694, -0.035410407930612564, 0.0814414918422699, 0.03401552885770798, -0.0018613712163642049, -0.0012962301261723042, -0.035997726023197174, -0.010039474815130234, -0.013239136897027493, 0.014536132104694843, -0.025254692882299423, -0.014658489264547825, 0.03927692025899887, 0.007341480813920498, 0.01283535547554493, 0.009127907454967499, -0.000518492073751986, -0.034676261246204376, -0.0037472140975296497, 0.00023955405049491674, 0.006053662393242121, -0.020286958664655685, -0.0005288160173222423, -0.04020684212446213, -0.027408193796873093, -0.033770810812711716, 0.002808116376399994, -0.018292522057890892, 0.01681199111044407, -0.007353716529905796, 0.004741373006254435, -0.013006656430661678, -0.02755502425134182, -0.01126917265355587, 0.036315858364105225, -0.0205194391310215, 0.024508310481905937, -0.006295319646596909, -0.017668496817350388, -0.047719623893499374, -0.005512228235602379, 0.03159283846616745, -0.013202429749071598, -0.008387641981244087, -0.03616902977228165, 0.0020647915080189705, 0.023370379582047462, -0.02384757623076439, 0.02591542713344097, -0.05745932087302208, 0.04304554685950279, 0.0023462148383259773, 0.016701867803931236, -0.013447145000100136, 0.03567959740757942, -0.02038484439253807, 0.0092808548361063, -0.011679071933031082, -0.003043655538931489, 0.0022406810894608498, 0.015172393061220646, 0.02207338437438011, -0.022452695295214653, 0.016506096348166466, 0.0018246638355776668, 0.007225240580737591, 0.011997203342616558, 0.0061454311944544315, 0.02312566339969635, -0.03935033455491066, -0.01661621779203415, -0.021706311032176018, 0.016665160655975342, 0.007989978417754173, 0.006491092499345541, -0.019883176311850548, -0.020103421062231064, 0.03159283846616745, -0.0072007691487669945, 0.0017436016350984573, -0.014927676878869534, 0.033648453652858734, 0.0005035796784795821, -0.014450481161475182, 0.014609546400606632, -0.011140696704387665, 0.01635926589369774, 0.01627361588180065, -0.017093414440751076, 0.0017726616933941841, 0.03394211083650589, -0.01309230737388134, -0.00033514623646624386, -0.007213004864752293, -0.026600630953907967, -0.03634032979607582, 0.018904313445091248, 0.017020000144839287, 0.025058921426534653, -0.026013312861323357, -0.022905420511960983, -0.03663398697972298, -0.03986423835158348, -0.00633202726021409, 0.00775138009339571, -0.01810898631811142, 0.017754146829247475, -0.000593818724155426, 0.0067480443976819515, -0.023615095764398575, -0.019491631537675858, -0.0017741911578923464, -0.008510000072419643, -0.010987749323248863, -0.02527916431427002, 0.038591716438531876, 0.00869965460151434, -0.028827548027038574, -0.0031446008943021297, 0.0006572919664904475, -0.011299761943519115, -0.025058921426534653, -0.01582089066505432, 0.0010882215574383736, -0.012033910490572453, 0.03736813738942146, 0.018414881080389023, 0.014572839252650738, -0.04130806401371956, -0.027971040457487106, 0.0004901968059130013, -0.001024748315103352, -0.008320344612002373, 0.02677193284034729, 0.008191868662834167, -0.012186857871711254, -0.01785203441977501, -0.00801444984972477, 0.02383534051477909, -0.0020112597849220037, -0.0016564215766265988, -0.052271343767642975, -0.03421130031347275, -0.00599248381331563, -0.0021902082953602076, 0.017252478748559952, 0.029561694711446762, 0.015196864493191242, -0.007561725098639727, -0.014450481161475182, -0.0033831989858299494, 0.03465178981423378, -0.0018368996679782867, 0.01367962546646595, -0.02142488770186901, 0.03531252220273018, -0.01387539878487587, -0.0032149567268788815, -0.010131243616342545, -0.020335901528596878, 0.02606225572526455, -0.04710783436894417, -0.04879637435078621, -0.006613450590521097, -0.005405165255069733, -0.008240812458097935, 0.02280753292143345, 0.006032249890267849, -0.013385966420173645, -0.007359834387898445, -0.03550829365849495, 0.010785859078168869, -0.03952163830399513, -0.0338931679725647, 0.04931027814745903, 0.03151942417025566, 0.014731904491782188, -0.012492752633988857, 0.003765567671507597, 0.01084091980010271, -0.010431020520627499, 0.020348137244582176, 0.006852048449218273, 0.018488295376300812, 0.010271955281496048, 0.01901443488895893, -0.020568381994962692, -0.02234257198870182, 0.019246915355324745, -0.021265821531414986, 0.00249304436147213, -0.05158613622188568, 0.007671847473829985, 0.026429330930113792, -0.0029457691125571728, 0.0175828468054533, -0.006093428935855627, -0.012712997384369373, 0.0031721314880996943, 0.013850926421582699, -0.006839812733232975, 0.03428471460938454, 0.0001158577433670871, -0.008974960073828697, -0.01289653405547142, -0.039766352623701096, -0.007531135343015194, 0.007745262235403061, 0.013508324511349201, -0.022379280999302864, 0.01700776442885399, -0.025450466200709343, -0.0241045281291008, -0.017020000144839287, -0.010736915282905102, -0.004585366230458021, 0.02012789249420166, 0.017313659191131592, 0.0018246638355776668, 0.012810884043574333, 0.04395099729299545, -0.012303098104894161, -0.022318100556731224, -0.02129029482603073, 0.030834218487143517, 0.0028891784604638815, 0.03668292984366417, -0.03406447172164917, 0.02567071095108986, 0.026820875704288483, 0.07263171672821045, -0.00905449315905571, 0.025695182383060455, 0.023994406685233116, -0.008565060794353485, -0.033452678471803665, -0.03372186794877052, -0.004683252889662981, -0.005802828818559647, 0.024251358583569527, -0.022489402443170547, -0.009433802217245102, -0.009060611017048359, -0.01589430496096611, 0.025523880496621132, -0.004622073844075203, -0.01479308307170868, 0.016848698258399963, -0.019577281549572945, -0.0013849397655576468, 0.008289755322039127, -0.006882638204842806, -0.01634703017771244, 0.013997756876051426, 0.0019561985973268747, -0.0033740221988409758, 0.010504434816539288, -0.03609561175107956, -0.02390875481069088, -0.0118870809674263, -0.023994406685233116, 0.026086727157235146, -0.014254707843065262, 0.005249158479273319, 0.025621768087148666, 0.01660398207604885, -0.027971040457487106, -0.0006312908371910453, -0.05369069427251816, 0.014915441162884235, -0.014058935455977917, -0.03705000504851341, -0.023174608126282692, 0.011324234306812286, -0.01687316969037056, -0.03548382222652435, -0.013655154034495354, 0.028949905186891556, -0.014377065934240818, -0.0006832930375821888, 0.02567071095108986, -0.006478856783360243, 0.013899870216846466, -0.039962127804756165, -0.027848683297634125, -0.02990429848432541, 0.02025025151669979, 0.013765276409685612, -0.010889862664043903, 0.04006001353263855, -0.007696318905800581, -0.035532765090465546, 0.00781867653131485, 0.005090093240141869, 0.02520575001835823, -0.015209101140499115, 0.0024624550715088844, 0.013887634500861168, 0.015319222584366798, -0.02142488770186901, -8.837498171487823e-05, -0.007286419626325369, -0.0156251173466444, -0.01621243730187416, -0.016395973041653633, 0.005778356920927763, -0.013018892146646976, -0.00430088397115469, -0.024655139073729515, 0.0002370686415815726, -0.02833811566233635, -0.01714235730469227, 0.0006125547806732357, -0.012651817873120308, 0.017411544919013977, -0.028827548027038574, -0.018512766808271408, 0.03049161657691002, 0.034431543201208115, -0.03790651261806488, 0.06166843697428703, -0.010663500986993313, 0.005897656083106995, 0.0153069868683815, 0.015098978765308857, -0.014450481161475182, 0.06856942921876907, 0.015331459231674671, 0.013912105932831764, 0.01720353588461876, -0.01032089814543724, 0.04084310308098793, 0.0010752209927886724, -0.034431543201208115, 0.012180740013718605, -0.0040775807574391365, -0.005616232752799988, -0.03173966705799103, -0.02422688528895378, -0.012676290236413479, -0.009892645291984081, -0.010198540054261684, -0.016922112554311752, -0.008503882214426994, 0.02291765622794628, -0.02064179629087448, -0.03291430324316025, -0.00811233650892973, 0.008834248408675194, 0.006460503209382296, -0.04118570685386658, 0.010528907179832458, -0.006436031311750412, -0.002578695071861148, 0.015123450197279453, -0.02657615952193737, -0.02502221241593361, -0.022783061489462852, 0.04779303818941116, -0.015135685913264751, 0.012511106207966805, -0.033844225108623505, 0.00784314889460802, 0.023553917184472084, -0.007892091758549213, 0.012823119759559631, -0.013569503091275692, -0.009305326268076897, 0.0175828468054533, -0.004762785509228706, 0.03147048130631447, 0.053837526589632034, -0.016261380165815353, -0.005711060017347336, -0.014842026866972446, -0.015527231618762016, 0.04671628773212433, -0.045296937227249146, 0.015882069244980812, 0.015380402095615864, -0.004040873143821955, -0.011042810045182705, 0.0384448878467083, -0.07317008823156357, 0.00036669167457148433, -0.011758605018258095, 0.019124556332826614, -0.0006974406423978508, -0.017240243032574654, 0.006962170824408531, 0.023211315274238586], [0.004371007438749075, 0.007878968492150307, 0.01580490544438362, 0.0392187125980854, -0.012728468514978886, 0.023977428674697876, -0.04022853448987007, 0.020067298784852028, 0.05946214124560356, 0.037480875849723816, -0.030646957457065582, -0.033018868416547775, 0.03339461609721184, 0.014137523248791695, -0.034333985298871994, 0.01815333217382431, 0.02526906132698059, -0.021147575229406357, 0.015534836798906326, 0.04889422655105591, 0.013068989850580692, 0.041026998311281204, -0.009470026940107346, 0.022392241284251213, -0.053638044744729996, -0.020572209730744362, -0.007937679067254066, -0.008466075174510479, 0.03339461609721184, -0.017319640144705772, 0.0620923787355423, -0.01426668744534254, 0.016497692093253136, 0.018669985234737396, 0.030200757086277008, 0.005483574233949184, -0.021816875785589218, -0.003792707808315754, 0.035907432436943054, -0.01754274033010006, -0.03938310220837593, -0.008430848829448223, 0.02400091290473938, -0.01119024958461523, -0.024799376726150513, 0.0025524452794343233, 0.060824230313301086, 0.02248617820441723, -0.01164232101291418, 0.03593091666698456, -0.018411658704280853, 0.03466276451945305, 0.02127673849463463, 0.03773920238018036, 0.033746879547834396, 0.04612308368086815, 0.03668241202831268, 0.004532461985945702, -0.01596929505467415, -0.02080705389380455, -0.01480682473629713, 0.03292493149638176, 0.016004521399736404, 0.027946267277002335, -0.03780965507030487, 0.04257696121931076, 0.007638255134224892, -0.009499382227659225, -0.04492538794875145, 0.014842051081359386, 0.01363261230289936, 0.026725085452198982, 0.016004521399736404, -0.055751629173755646, -0.05781824514269829, -0.024916797876358032, 0.0006568253738805652, -0.00759715773165226, 0.00952286645770073, 0.00032529368763789535, 0.007479736115783453, -0.01665033958852291, -0.023860007524490356, -0.018376432359218597, 0.026184948161244392, 0.0031997303012758493, -0.06876190751791, -0.011994585394859314, -0.026255400851368904, 0.00868330430239439, 0.01438410859555006, 0.02002033032476902, -0.056597061455249786, 0.047414716333150864, -0.016415497288107872, 0.03503851220011711, 0.04626398906111717, -0.05824096128344536, -0.034944575279951096, 0.061951473355293274, 0.020713115110993385, 0.007714578881859779, -0.018716953694820404, 0.011184378527104855, 0.035672590136528015, -0.08087978512048721, -0.03532032668590546, -0.003640060080215335, 0.05748946592211723, 0.031868137419223785, -0.0024996057618409395, -0.020595693960785866, -0.0004439992771949619, 0.058757614344358444, 0.0076852235943078995, 0.028627311810851097, 0.009540479630231857, -0.01827075332403183, 0.03261963650584221, -0.022521404549479485, -0.04480796679854393, -0.0005819692742079496, 0.042670898139476776, -0.012012198567390442, -0.00624094158411026, -0.036212727427482605, -0.061059072613716125, 0.009693128056824207, -0.04926997423171997, -0.016145428642630577, 0.05462438613176346, -0.0028812249656766653, 0.008037487044930458, -0.02037259377539158, -0.018376432359218597, -0.03304235264658928, -0.009652030654251575, -0.030740894377231598, -0.0440094992518425, -0.0045530106872320175, -0.0008902002009563148, 0.009792936034500599, 0.04032247141003609, 0.03184465318918228, 0.013409511186182499, -0.011301799677312374, 0.03207949548959732, 0.01031546015292406, -0.020490014925599098, -0.0041449717245996, -0.053685013204813004, 0.003281925106421113, -0.018364690244197845, -0.004200746770948172, -0.019456708803772926, 0.026819022372364998, 0.003111664205789566, 0.010227394290268421, 0.014078812673687935, 0.011841936968266964, -0.06538017839193344, -0.05091387405991554, -0.05143052712082863, -0.00025227232254110277, -0.030646957457065582, 0.029895460233092308, -0.037058159708976746, -0.013515191152691841, -0.0482366681098938, -0.02796975150704384, -0.07590112090110779, -0.0052135055884718895, -0.06805738061666489, 0.0048876614309847355, 0.0005313313449732959, -0.06857403367757797, 0.060213640332221985, 0.02604404278099537, -0.04626398906111717, -0.06500443071126938, 0.02418878674507141, 0.04238908737897873, -0.01021565217524767, -0.024588018655776978, -0.03703467547893524, 0.028509890660643578, -0.05288654938340187, 0.03508548066020012, 0.011049343273043633, 0.0488472580909729, 0.014219718985259533, -0.0238247811794281, 0.003933613188564777, 0.014008359983563423, -0.007614770904183388, 0.04384510964155197, -0.009992551989853382, -0.0367998331785202, 0.051524464040994644, -0.010562045499682426, -0.03327719494700432, -0.0476260781288147, -0.016955634579062462, -0.05500013381242752, -0.022274820134043694, -0.03877251222729683, -0.03532032668590546, 0.038631606847047806, 0.07698140293359756, 0.01742531917989254, 0.00983403343707323, -0.014642435126006603, 0.016544660553336143, 0.008454333059489727, -0.016438981518149376, 0.008988600224256516, 0.03062347322702408, -0.0025465742219239473, 0.019092701375484467, 0.0022955862805247307, -0.03973536565899849, -0.05819399282336235, 0.045982178300619125, 0.004197811242192984, -0.02719477191567421, 0.031750716269016266, -0.009423058480024338, -0.0035197031684219837, -0.024259239435195923, -0.04518371447920799, -0.0003300639218650758, 0.015710968524217606, -0.008513043634593487, 0.008383880369365215, 0.011718644760549068, -0.00035905229742638767, -0.024024397134780884, -0.00725076487287879, -0.0028181110974401236, -0.003293667221441865, 0.041026998311281204, 0.02599707432091236, 0.03950052335858345, -0.0031938592437654734, -0.041637592017650604, -0.009299766272306442, 0.0009371687192469835, -0.014078812673687935, 0.04955178499221802, 0.016485949978232384, 0.04570036754012108, -0.004943436477333307, 0.010632498189806938, -0.011448576115071774, 0.0070276642218232155, -0.0020137750543653965, 0.05114871636033058, 0.006898500956594944, 0.048518478870391846, -0.004711529240012169, 0.00275206146761775, 0.027570519596338272, -0.003141019493341446, 0.017472287639975548, -0.023237673565745354, 0.00664604501798749, 0.030599988996982574, 0.03327719494700432, -0.05626828223466873, 0.05316836014389992, -0.03724603354930878, 0.04346936196088791, 0.007374057080596685, 0.0061822310090065, 0.023484257981181145, 0.009311508387327194, -0.005057922098785639, 0.027218256145715714, -0.013033763505518436, 0.011953487992286682, 0.012740210629999638, -0.03146890550851822, -0.0011052279733121395, -0.027335677295923233, -0.012018069624900818, -0.008196006529033184, 0.004382749553769827, -0.018047653138637543, -0.02804020419716835, -0.012881116010248661, -0.010203910060226917, -0.031633295118808746, 0.03447489067912102, -0.01323337946087122, 0.01881089061498642, 0.02050175704061985, -0.028298530727624893, 0.004602914676070213, -0.005028566811233759, 0.02973107062280178, -0.01983245648443699, -0.0035314452834427357, -0.03285447880625725, 0.013656096532940865, 0.0138674546033144, 0.04065125063061714, -0.018176816403865814, 0.02255663089454174, 0.028838669881224632, 0.0009122166666202247, 0.041332293301820755, 0.08412061631679535, -0.02869776450097561, 0.014078812673687935, -0.05058509111404419, 0.012845889665186405, 0.01797720044851303, -0.0027271094731986523, 0.03553168475627899, -0.0012483351165428758, -0.014360624365508556, -0.004212488885968924, 0.03562562167644501, -0.04072170332074165, 0.020231688395142555, -0.019914651289582253, 0.012329235672950745, 0.03170374780893326, -0.07228454947471619, 0.001872869674116373, -0.0042301020585000515, -0.026936445385217667, 0.0428118035197258, -0.043023161590099335, 0.00973422545939684, -0.002032856224104762, -0.0028724183794111013, -0.009763580746948719, 0.02423575520515442, -0.053027454763650894, -0.012716726399958134, -0.0051313103176653385, -0.06584986299276352, 0.021605517715215683, 0.015429157763719559, -0.019069217145442963, -0.010162812657654285, -0.005653835367411375, 0.0031938592437654734, 0.08975683897733688, -0.042130760848522186, 0.03682331740856171, -0.005433670245110989, 0.011595352552831173, -0.079611636698246, -0.039594460278749466, -0.02827504649758339, -0.06467565149068832, -0.028439437970519066, 0.029754554852843285, -0.05269867554306984, -0.018599532544612885, -0.004291748162358999, 0.03351203724741936, -0.023906975984573364, 0.039641428738832474, -0.023777810856699944, 0.03625969588756561, 0.008794854395091534, -0.02726522460579872, 0.01323337946087122, 0.013996617868542671, 0.00801987387239933, -0.028627311810851097, 0.0014927182346582413, 0.04828363656997681, 0.01513560488820076, -0.010855598375201225, 0.014337140135467052, -0.012505367398262024, 0.03273705765604973, -0.015229541808366776, 0.01012758631259203, 0.00949351117014885, 0.039477039128541946, 0.037058159708976746, -0.05035024881362915, -0.00652862386777997, -0.00011402708332752809, 0.017284413799643517, 0.011771484278142452, -0.024822860956192017, -0.024494081735610962, 0.00874201487749815, -0.038866449147462845, 0.001889015082269907, 0.008941631764173508, 0.060401514172554016, 0.02344903163611889, -0.05495316535234451, 0.0009701934177428484, -0.03576652705669403, 0.006258554756641388, 0.0298484917730093, -0.012575820088386536, -0.02026691474020481, -0.046639736741781235, -0.0007415888248942792, -0.01055617444217205, 0.02273276261985302, 0.052604738622903824, -0.06444080173969269, 0.027946267277002335, 0.01942148245871067, 0.00837800931185484, -0.0008975390228442848, 0.020114267244935036, 0.031328000128269196, -0.03358248993754387, -0.019550645723938942, 0.024728924036026, 0.013280347920954227, -0.007121601607650518, -0.005926839541643858, 0.024165302515029907, 0.04607611522078514, 0.03818540275096893, 0.011207862757146358, 0.024494081735610962, -0.04349284619092941, 0.0014435480115935206, -0.023108510300517082, 0.0681513175368309, 0.053027454763650894, -0.047907888889312744, 0.0025260255206376314, 0.019973361864686012, -0.033676426857709885, 0.0022809086367487907, 0.00690437201410532, -0.006593205500394106, 0.023002831265330315, 0.005336797796189785, -0.018235526978969574, -0.044291310012340546, -0.03381733223795891, -0.02175816521048546, 0.04004066064953804, -0.004699787124991417, 0.02726522460579872, -0.017812810838222504, 0.020114267244935036, -0.021370675414800644, 0.03672938048839569, -0.012528851628303528, -0.04560643061995506, 0.02025517262518406, -0.02274450473487377, 0.03893690183758736, 0.003293667221441865, 0.0073623149655759335, 0.04250650852918625, -0.01167167630046606, 0.00018989224918186665, 0.026302369311451912, 0.0061293914914131165, 0.01411403901875019, -0.02026691474020481, -0.014665919356048107, 0.01591058447957039, -0.04081564024090767, -0.00750909186899662, 0.006405331660062075, 0.019738519564270973, -0.0019756131805479527, 0.003434572834521532, 0.013198153115808964, -0.054248638451099396, 0.002756464760750532, 0.040369439870119095, -0.013656096532940865, 0.030975736677646637, -0.04548900946974754, -0.022885410115122795, 0.04438524693250656, -0.0416141077876091, 0.037293002009391785, -0.019527161493897438, -0.009540479630231857, -0.02670160122215748, -0.03311280533671379, 0.017413577064871788, 0.02073660120368004, -0.010567916557192802, -0.011624707840383053, -0.029026543721556664, -0.014853793196380138, 0.010309589095413685, -0.0038455473259091377, -0.0004939032951369882, -0.02297934703528881, -0.017988942563533783, 0.010444624349474907, 0.012446656823158264, 0.05077296867966652, 0.013374284841120243, 0.032290857285261154, 0.00850717257708311, -0.04328148812055588, 0.004611721262335777, -0.04323451966047287, -0.02026691474020481, 0.0048700482584536076, -0.0001451253774575889, -0.028063688427209854, -0.00047188682947307825, 0.016121942549943924, -0.005818224977701902, 0.024141818284988403, -0.0035285097546875477, -0.006810435093939304, 0.005342668853700161, 0.016485949978232384, -0.003742803819477558, 0.01519431546330452, 0.01856430619955063, -0.01633330248296261, 0.03177420049905777, 0.019198382273316383, -0.03327719494700432, -0.030599988996982574, -0.026560695841908455, -0.015570063143968582, 0.01983245648443699, 0.008677433244884014, -0.014536756090819836, 0.024012655019760132, 0.006422944832593203, -0.01681472919881344, 0.008430848829448223, 0.0026463824324309826, -0.004764368757605553, -0.011859550140798092, 0.005950324237346649, 0.032361309975385666, 0.0038631604984402657, -0.02996591478586197, 0.014207976870238781, 0.011965230107307434, -0.003085244446992874, -0.011231346987187862, -0.005753643345087767, -0.008419106714427471, -0.0064523001201450825, 0.009188216179609299, 0.04661625251173973, 0.005524671636521816, -0.03177420049905777, -0.010074746794998646, -0.01592232659459114, 0.004702722653746605, 0.01398487575352192, -0.01730789802968502, -0.02900305949151516, 0.0027080285362899303, 0.04142623022198677, -0.004464944824576378, -0.003610704792663455, -0.01269324216991663, -0.03203252702951431, -0.02961364947259426, -0.0012527384096756577, 0.005551091395318508, -0.011413349770009518, -0.014877277426421642, 0.02641979046165943, 0.008753756992518902, -0.03269008919596672, 0.01701434515416622, 0.06603773683309555, -0.005327991209924221, 0.006610818672925234, -0.003587220562621951, -0.012082651257514954, -0.01965632475912571, -0.013738291338086128, -0.013409511186182499, -0.02249792031943798, -0.017143508419394493, 0.0032114724162966013, 0.047250326722860336, 0.012434914708137512, 0.007051148451864719, 0.01519431546330452, -0.00925866886973381, 0.012223556637763977, 0.005903355311602354, 0.01417274959385395, 0.024447113275527954, 0.008389751426875591, -0.010744048282504082, -0.030294694006443024, 0.006053067743778229, 0.01850559562444687, -0.01959761418402195, -0.01586361601948738, -0.04058079794049263, -0.010908437892794609, 0.015264768153429031, 0.023660389706492424, 0.014431077055633068, 0.011982843279838562, -0.013245121575891972, -0.03466276451945305, 0.007638255134224892, -0.02665463276207447, -0.003572542918846011, -0.027875814586877823, -0.01084972731769085, 0.009745967574417591, -0.05354410782456398, -0.03581349551677704, 0.033864300698041916, -0.009111892431974411, -0.044103436172008514, 0.01766016334295273, -0.019585872069001198, 0.005530542694032192, -0.015100378543138504, -0.03372339531779289, -0.018669985234737396, 0.035061996430158615, 0.019221866503357887, -0.009276282042264938, -0.009370218962430954, -0.0006696683121845126, 0.008501301519572735, -0.023296384140849113, -0.0006340749678201973, -0.0131159583106637, 0.004776110872626305, -0.004280006047338247, -0.003654737723991275, -0.01003952044993639, 0.03384081646800041, -0.008284072391688824, 0.005853451322764158, 0.0009254265460185707, 0.02086576446890831, 0.015382189303636551, 0.023237673565745354, -0.01181845273822546, -0.04353981465101242, 0.03139845281839371, 0.02616146393120289, -0.006910243071615696, -0.04680412635207176, 0.02569177933037281, 0.024916797876358032, 0.01293982658535242, -0.02238049916923046, -0.006170488893985748, -0.006193973124027252, -0.007098116911947727, 0.00241887872107327, -0.0014787743566557765, 0.05114871636033058, 0.005330926738679409, 0.007914194837212563, -0.03684680163860321, 0.0014574917731806636, -0.03412262722849846, -0.019010506570339203, -0.03069392591714859, -0.016497692093253136, -0.023190705105662346, -0.02792278304696083, 0.012164846062660217, -0.028415953740477562, -0.009194087237119675, -0.037833139300346375, 0.0073388307355344296, -0.02900305949151516, 0.02182861790060997, 0.027476582676172256, -0.004902339074760675, 0.046827610582113266, -0.007045277394354343, 0.024987250566482544, 0.005404314957559109, 0.02538648433983326, 0.020396078005433083, 0.022227849811315536, 0.00038638943806290627, -0.0012233831221237779, 0.06824525445699692, 0.04624050483107567, 0.023378578945994377, 0.0017657226417213678, -0.004121487494558096, 0.010873211547732353, 0.00967551488429308, 0.003484476823359728, -0.05612737685441971, -0.04443221539258957, -0.01754274033010006, 0.00730947544798255, -0.020360851660370827, 0.03492109104990959, -0.01555832102894783, -0.04476099833846092, -0.0262319166213274, 0.006064809858798981, 0.008477817289531231, 0.00667540030553937, 0.030975736677646637, 0.0076676104217767715, -0.02074834331870079, 0.02508118748664856, 0.019491935148835182, -0.03473321720957756, 0.006147004663944244, 0.006581463385373354, 0.00624094158411026, -0.03360597416758537, -0.012681500054895878, -0.05283958092331886, 0.00309111550450325, 0.027946267277002335, -0.011689289472997189, 0.0410035140812397, 0.024494081735610962, -0.011530770920217037, -0.008918147534132004, 0.013256863690912724, -0.014630693010985851, -0.05204111710190773, -0.007409283425658941, -0.03726951777935028, 0.005589253734797239, 0.04004066064953804, -0.02147635444998741, 0.022263076156377792, -0.04323451966047287, -0.019879424944519997, -0.0048729837872087955, -0.014466303400695324, 0.023648647591471672, -0.009293895214796066, -0.009511124342679977, 0.03130451589822769, 0.007374057080596685, 0.04415040463209152, -0.03466276451945305, 0.04168456047773361, 0.00880072545260191, -0.011953487992286682, 0.019762003794312477, -0.00278141675516963, 0.0165798868983984, 0.0022060524206608534, 0.007262506987899542, 0.014125781133770943, 0.0041449717245996, 0.0017701259348541498, -0.004412104841321707, -0.03233782574534416, -0.00992209929972887, 0.028322014957666397, -0.010327202267944813, -0.05039721727371216, -0.008483688347041607, 0.013855712488293648, 0.007209667470306158, 0.04553597792983055, 0.011166765354573727, 0.012352719902992249, -0.014982957392930984, 0.01983245648443699, -0.01875218003988266, 0.0002144773316103965, -0.010350686497986317, -0.02340206317603588, 0.009992551989853382, 0.0018244333332404494, 0.000259060732787475, 0.008618722669780254, 0.029989399015903473, 0.025433452799916267, 0.0037017061840742826, 0.0030646957457065582, -0.016732534393668175, -0.009869259782135487, -0.03250221535563469, -0.019855940714478493, -0.007503220811486244, 0.04116790369153023, -0.027523551136255264, 0.003760416992008686, -0.0042447797022759914, 0.028979575261473656, 0.02056046761572361, 0.030905283987522125, 0.035907432436943054, 0.029519712552428246, 0.04955178499221802, -0.023719100281596184, 0.00615287572145462, 0.02292063646018505, -0.014783340506255627, 0.003129277378320694, 0.03231434151530266, 0.014536756090819836, 0.001746641704812646, 0.01398487575352192, -0.018423400819301605, -0.04926997423171997, -0.016662081703543663, -0.03327719494700432, -0.018352948129177094, 0.05739552900195122, 0.013609128072857857, 0.025104671716690063, -0.02580920048058033, -0.009945583529770374, 0.018000684678554535, -0.008888792246580124, 0.036400601267814636, -0.03233782574534416, -0.015299994498491287, -0.004168455954641104, 0.0392187125980854, 0.012340977787971497, -0.005982615053653717, 0.025550873950123787, -0.0020137750543653965, 0.008489559404551983, -0.010321331210434437, 0.032901447266340256, 0.008072714321315289, 0.02296760492026806, 0.030177272856235504, -0.04316406697034836, -0.023049799725413322, -0.02538648433983326, 0.05443651229143143, -0.0030118562281131744, 0.0028034334536641836, 0.011536641977727413, -0.007080503739416599, 0.007062890566885471, 0.0008769902633503079, -0.02050175704061985, 0.03151587396860123, 0.01894005388021469, 0.02641979046165943, -0.02489331364631653, 0.014701145701110363, -0.005093148443847895, -0.0032085368875414133, -0.0054777031764388084, -0.003936548717319965, 0.005501187406480312, -0.0057947407476603985, 0.0524638332426548, -0.026396306231617928, 0.013491706922650337, 0.009329121559858322, -0.021370675414800644, -0.019644582644104958, 0.05645615607500076, 0.029026543721556664, -0.00028144416864961386, -0.013538675382733345, -0.03773920238018036, -0.007937679067254066, -0.011055214330554008, 0.044831451028585434, 0.012916342355310917, 0.00586519343778491, -0.025644810870289803, 0.03593091666698456, 0.014360624365508556, 0.00790245272219181, -0.006229199469089508, 0.02159377560019493, 0.001042113988660276, 0.045559462159872055, 0.031328000128269196, -0.010250878520309925, 0.005650899838656187, 0.019762003794312477, 0.004001130349934101, -0.02599707432091236, 0.06397111713886261, -0.0021855037193745375, -0.00907079502940178, -0.0025656551588326693, -0.06542714685201645, 0.0627499371767044, -0.02954319678246975, 0.006264425814151764, -0.013949649408459663, 0.009605062194168568, -0.06242115795612335, 0.016450723633170128, -0.019280577078461647, -0.009927970357239246, -0.018482111394405365, 0.00627029687166214, 0.03459231182932854, -0.026396306231617928, 0.004761433228850365, -0.06035454571247101, 0.01996161974966526, -0.019855940714478493, -0.044526152312755585, 0.02670160122215748, 0.01603974774479866, 0.021981265395879745, 0.029801523312926292, 0.015534836798906326, -0.01935102976858616, -0.013820486143231392, -0.013538675382733345, -9.604694787412882e-05, 0.005421928130090237, 0.0196093562990427, 0.01217658817768097, -0.02611449547111988, -0.0031703750137239695, 0.036518022418022156, 0.01681472919881344, -0.013703064993023872, -0.009211700409650803, 0.013374284841120243, 0.004309361334890127, -0.008096198551356792, -0.013526933267712593, 0.005372024141252041, -0.005413121543824673, 0.0156874842941761, -0.0029825009405612946, 0.025034219026565552, 0.010832114145159721, -0.017683647572994232, 0.019080959260463715, -0.006516881752759218, 0.035578653216362, 0.007937679067254066, 0.029096996411681175, -0.04184895008802414, 0.015546578913927078, -0.033206742256879807, 0.026255400851368904, -0.0025979462079703808, 0.04656928405165672, 0.016615113243460655, 4.511087536229752e-05, -0.008788983337581158, 0.029050027951598167, 0.007738063111901283, 0.029684102162718773, -0.03492109104990959, 0.03308932110667229, 0.04922300577163696, -0.016673823818564415, 0.0470154844224453, 0.028110656887292862, 0.003240827703848481, -0.040604282170534134, -0.014407592825591564, 0.03945355489850044, 0.05222899094223976, 0.00820187758654356, 0.018587790429592133, 0.00865394901484251, -0.005671448539942503, 0.0076734814792871475, 0.021206285804510117, 0.0023264093324542046, 0.01882263273000717, -0.007849613204598427, 0.01688518188893795, -0.039946723729372025, 0.0066871424205601215, -0.003572542918846011, -0.00441797636449337, 0.0010714692762121558, 0.017096539959311485, 0.018975280225276947, 0.0165798868983984, 0.033676426857709885, -0.0002465847064740956, 0.028603827580809593, -0.00922931358218193, 0.02223959192633629, -0.012235298752784729, -0.0019535967148840427, 0.026865990832448006, -0.003337700152769685, -0.02519860863685608, -0.0066871424205601215, 0.008947502821683884, -0.01275195274502039, 0.014466303400695324, 0.02344903163611889, -0.021429385989904404, -6.645082066825125e-06, -0.03513244912028313, 0.036870285868644714, 0.02465847134590149, 0.0054688965901732445, -0.012023940682411194, -0.03459231182932854, -0.034521859139204025, -0.0026258337311446667, -0.021335449069738388, -0.023355094715952873, -0.0033876043744385242, -0.0024673149455338717, 0.028627311810851097, 0.010456366464495659, 0.0018141589825972915, -0.007556060329079628, -0.034451406449079514, 0.03945355489850044, 0.009029697626829147, 0.03508548066020012, -0.019985103979706764, 0.020548725500702858, -0.004500171169638634, 0.023777810856699944, -0.0023968620225787163, -0.027453098446130753, 0.022157397121191025, -0.005512929521501064, 0.001207237713970244, 0.025292545557022095, -0.014830308966338634, -0.007233151700347662, 0.029402291402220726, -0.03872554376721382, 0.04499584063887596, 0.024634987115859985, -0.0051342458464205265, 0.016063231974840164, 0.02919093333184719, -0.004714464768767357, -0.006346621084958315, 0.01749577187001705, 0.01335080061107874, -0.04243605583906174, 0.0030235983431339264, 0.009722483344376087, -0.012434914708137512, -0.004420911893248558, -0.031069673597812653, 0.009957325644791126, 0.014161007478833199, -0.0051459879614412785, -0.017871521413326263, 0.012575820088386536, -0.025973590090870857, -0.00017411376757081598, -0.0052281832322478294, 0.020114267244935036, -0.011748000048100948, 0.006358363199979067, 0.014254945330321789, -0.009910357184708118, 0.036870285868644714, 0.02146461233496666, -0.0003352010971866548, 0.0385846383869648, -0.020419562235474586, -0.01729615591466427, -0.020713115110993385, -0.012411430478096008, 0.010961277410387993, -0.003234956646338105, -0.006417073775082827, 0.06678923219442368, -0.008248846046626568, 0.009558092802762985, -0.033441584557294846, 0.043023161590099335, 0.030529536306858063, 0.0019462578929960728, 0.0005738965701311827, -0.028603827580809593, 0.040980029851198196, 0.0069337273016572, 0.0171904768794775, -0.039171744138002396, 0.02611449547111988, 0.03682331740856171, 0.02387174963951111, 0.0693724974989891, -0.0013606192078441381, 0.03393475338816643, 0.033911269158124924, 0.013585643842816353, 0.011753871105611324, -0.004324038978666067, -0.02942577563226223, -0.007256635930389166, -0.005600995849817991, -0.0024966702330857515, 0.023730842396616936, 0.026983413845300674, 0.009681385941803455, 0.006076551973819733, -0.048330605030059814, -0.014712887816131115, 0.006986566819250584, -0.0048876614309847355, 0.01392616517841816, 0.021722938865423203, 0.040369439870119095, -0.007174441125243902, -0.019938135519623756, -0.03809146583080292, -0.003822063095867634, 0.004127358552068472, -0.016415497288107872, -0.02285018377006054, 0.03865509107708931, 0.03266660496592522, -0.027335677295923233, 0.001897821668535471, 0.011460318230092525, -0.0026023495011031628, 0.0025524452794343233, 0.020302141085267067, -0.002762335818260908, -0.03099922090768814, -0.028909122571349144, 0.009417187422513962, -0.011519028805196285, 0.035367295145988464, 0.0037339970003813505, -0.011119795963168144, -0.007614770904183388, -0.03158632665872574, -0.0019609355367720127, -0.016544660553336143, 0.06589683145284653, -0.008788983337581158, -0.005750707816332579, -0.009487640112638474, 0.029331838712096214, -0.014994699507951736, -0.0006017841515131295, -0.01706131361424923, -0.015182573348283768, -0.004406233783811331, -0.011888905428349972, 0.03461579605937004, 0.0045618172734975815, -0.0076793525367975235, -0.04349284619092941, -0.004817208740860224, 0.023589937016367912, -0.004735013470053673, 0.010867340490221977, 0.01344473846256733, -0.007614770904183388, 0.006141133606433868, 0.03250221535563469, -0.027899298816919327, 0.03388778492808342, -0.018165074288845062, -0.0019756131805479527, 0.007227280642837286, 0.01596929505467415, 0.025363000109791756, -0.0020108395256102085, 0.025550873950123787, 0.01170103158801794, -0.011636449955403805, -0.004021679051220417, 0.017624935135245323, 0.001881676260381937, -0.01596929505467415, -0.007743934169411659, 0.03731648623943329, -0.008571754209697247, -0.017378350719809532, -0.034827154129743576, 0.005031502339988947, -0.024634987115859985, 0.01616891287267208, -0.013186411000788212, -0.050679031759500504, 0.02930835448205471, -0.0016321559669449925, 0.004089196678251028, 0.010990632697939873, -0.015264768153429031, 0.0037017061840742826, 0.018599532544612885, -0.00958157703280449, 0.010667724534869194, 0.005372024141252041, -0.013773517683148384, -0.013797001913189888, 0.008601109497249126, -0.017683647572994232, -0.01930406130850315, -0.03348855301737785, 0.02122977003455162, -0.004579430446028709, -0.015182573348283768, 0.01103760115802288, -0.02750006690621376, -0.002241278998553753, -0.0313749685883522, -0.06420595943927765, 0.004403298255056143, 0.024259239435195923, 0.020172977820038795, -0.0011022923281416297, -0.013386026956140995, -0.007925936952233315, 0.00340815307572484, -0.040557313710451126, 0.020466530695557594, -0.02315547876060009, 0.0440094992518425, -0.00015558321319986135, -0.03550820052623749, -0.029989399015903473, -0.016967376694083214, 0.0356021374464035, 0.01609845831990242, 0.0026537212543189526, 0.0159810371696949, -0.023625163361430168, -0.011061085388064384, 0.0030500181019306183, 0.02122977003455162, 0.008248846046626568, -0.03111664205789566, -0.012892858125269413, 0.01603974774479866, 0.015276510268449783, 0.02658418007194996, -0.003921871073544025, -0.031985558569431305, 0.01977374590933323, -0.0006513212574645877, 0.0018493853276595473, -0.011272444389760494, -0.00862459372729063, 0.01940974034368992, 0.015628773719072342, -0.0298484917730093, -0.012669757939875126, -0.0006557245505973697, -0.024681955575942993, -0.0027197706513106823, 0.004779046401381493, 0.045136746019124985, -0.001390708377584815, 0.017331382259726524, 0.01966806687414646, -0.0004495033936109394, 0.01838817447423935, 0.028932606801390648, -0.01663859747350216, -0.034827154129743576, -0.0073564439080655575, 0.02750006690621376, 0.01012758631259203, 0.02658418007194996, 0.008671562187373638, -0.05763037130236626, -0.022462693974375725, 0.011383994482457638, 0.016673823818564415, -0.017260929569602013, -0.00943480059504509, 0.00722140958532691, -0.031022705137729645, 0.01857604831457138, 0.040909577161073685, -0.037410423159599304, 0.050491154193878174, -0.01634504459798336, -0.0385846383869648, -0.028134141117334366, -0.006217457354068756, -0.004209553357213736, 0.039524007588624954, 0.002420346485450864, 0.02407136559486389, -0.004142036195844412, -0.012247040867805481, -0.006804564036428928, 0.015957552939653397, -0.010638369247317314, -0.000872586970217526, -0.02400091290473938, 0.025222092866897583, -0.023836523294448853, 0.00989274401217699, -0.010785145685076714, 0.004256521817296743, -0.01670905016362667, -0.0035578652750700712, 0.009329121559858322, 0.0026346403174102306, -0.007573673501610756, 0.025785716250538826, -0.014290171675384045, 0.005192956887185574, -0.006011970341205597, -0.03846721723675728, -0.021852102130651474, 0.0026434469036757946, -0.018470369279384613, -0.038631606847047806, -0.016990860924124718, 0.03153935819864273, 0.019374513998627663, 0.01426668744534254, -0.010374171659350395, 0.03872554376721382, 0.02930835448205471, -0.008383880369365215, -0.020889248698949814, -0.0007514962926506996, -0.02273276261985302, -0.01946845091879368, -0.02604404278099537, 0.024588018655776978, 0.014078812673687935, -0.004602914676070213, 0.015264768153429031, 0.00013668571773450822, -0.03515593335032463, -0.03358248993754387, 0.0037251904141157866, -0.02477589249610901, 0.022392241284251213, -0.021629001945257187, 0.000871119205839932, 0.0007481938228011131, -0.013080731965601444, 0.0016072039725258946, -0.007556060329079628, 0.0003981315821874887, -0.010309589095413685, -0.002076889155432582, -0.019562387838959694, -0.002244214527308941, -0.013726549223065376, 0.019527161493897438, 0.011695160530507565, -0.009881001897156239, 0.013245121575891972, 0.0007309475331567228, 0.001724625239148736, 0.03614227473735809, 0.015217799693346024, 0.012822405435144901, -0.015159089118242264, -0.02731219306588173, 0.014278429560363293, -0.06880887597799301, 0.014701145701110363, 0.02761748805642128, -0.02604404278099537, 0.005662641953676939, 0.00172609300352633, -0.04661625251173973, 0.03510896489024162, 0.00045830997987650335, -0.03820888698101044, -0.02515164017677307, -0.016016263514757156, 0.0385846383869648, 0.00411561643704772, 0.02780536189675331, 0.00035831841523759067, 0.01603974774479866, 0.022568373009562492, -0.004274134989827871, -0.02996591478586197, -0.005656770896166563, 0.004324038978666067, 0.016262849792838097, 0.009945583529770374, 0.027100834995508194, 0.0006990236579440534, 0.004670431837439537, 0.004682173952460289, -0.026091011241078377, 0.005190021358430386, -0.05993182957172394, -0.001570509746670723, -0.006387718487530947, 0.008783112280070782, 0.010456366464495659, -0.008900534361600876, -0.0009136844309978187, 0.01724918745458126, -0.018846116960048676, 0.01411403901875019, 0.01269324216991663, 0.014583724550902843, 0.03832630813121796, -0.03266660496592522, -3.270366505603306e-05, -0.03724603354930878, -0.01815333217382431, -0.010462237522006035, 8.797423652140424e-05, -0.01112566702067852, -0.054906196892261505, -0.022110428661108017, -0.009869259782135487, 0.017941974103450775, -0.005589253734797239, -0.017166992649435997, 0.0061822310090065, -0.012258782982826233, 0.0404164083302021, 0.018611274659633636, -0.03327719494700432, -0.01480682473629713, -0.015264768153429031, 0.014125781133770943, 0.015781421214342117, -0.02025517262518406, -0.017343124374747276, -0.00241887872107327, -0.0021957780700176954, -0.004735013470053673, -0.019315803423523903, 0.008929889649152756, 0.012892858125269413, 0.02853337489068508, 0.0037281259428709745, 0.01863475888967514, -0.01996161974966526, 0.007168570067733526, -0.0196093562990427, 0.04487841948866844, 0.05814702436327934, -0.01983245648443699, -0.0156874842941761, -0.006886758841574192, -0.006088294088840485, -0.029214417561888695, -0.0023777810856699944, 0.026607664301991463, -0.03034166246652603, -0.014971215277910233, -0.006147004663944244, -0.001705544302240014, 0.03893690183758736, -0.006393589545041323, -0.034827154129743576, 0.017166992649435997, 0.023355094715952873, 0.006663658190518618, 0.01145444717258215, -0.026372822001576424, -0.010661853477358818, 0.09656727313995361, -0.005313313566148281, -0.004015807993710041, -0.014783340506255627, -0.02242746762931347, 0.012282267212867737, -0.01018629688769579, 0.005724288057535887, 0.014654177241027355, -0.0171904768794775, -0.023261157795786858, -0.016145428642630577, -0.01519431546330452, -0.02117105945944786, -0.008501301519572735, -0.01653291843831539, -0.010192167945206165, 0.03492109104990959, -0.0183999165892601, -0.0038895802572369576, 0.050444185733795166, 0.012106135487556458, -0.05387289077043533, 0.0548592284321785, -0.011577739380300045, -0.0013055780436843634, 0.01259930431842804, 0.010427011176943779, 0.02907351218163967, -0.0019638710655272007, 0.006381847430020571, -0.014020102098584175, 0.013327316381037235, -0.0042154244147241116, 0.029214417561888695, -0.04307013005018234, -0.005002147052437067, 0.03233782574534416, -0.008366267196834087, 0.04950481653213501, -0.00629965215921402, 0.01329209003597498, -0.039101291447877884, 0.009593319147825241, -0.012798921205103397, 0.0012608111137524247, 0.00011677914153551683, -0.02888563834130764, 0.006346621084958315, -0.018106363713741302, 0.04997450113296509, -0.05030328035354614, 0.00615287572145462, 0.04457312449812889, 0.009910357184708118, -0.032173432409763336, -0.013949649408459663, -0.02742961421608925, -0.001707012066617608, 0.0017818681662902236, 0.033371131867170334, -0.00034052174305543303, 0.03623621165752411, -0.011413349770009518, 0.008389751426875591], [0.029412230476737022, 0.03530445694923401, 0.001284340163692832, 0.03728483244776726, -0.019889317452907562, 0.015085075981914997, -0.019498134031891823, 0.04085439443588257, 0.07828592509031296, 0.06234512850642204, -0.04637988656759262, -0.003523722290992737, 0.010580334812402725, 0.026551689952611923, -0.01820233277976513, 0.031710442155599594, 0.021013975143432617, 0.008043743669986725, 0.01029305811971426, -0.015170647762715816, 0.03972973674535751, 0.05828658118844032, -0.0005623286124318838, 0.004749231971800327, -0.021148445084691048, -0.07090230286121368, -0.00467282859608531, 0.012481249868869781, 0.05457032471895218, -0.03667360544204712, 0.048947036266326904, -0.013422539457678795, -0.00750586437061429, -0.007047444581985474, 0.0171876959502697, 0.04447285830974579, -0.026331648230552673, 0.034619882702827454, -0.007866487838327885, 0.019730398431420326, 0.003322017379105091, -0.02300657518208027, 0.0445217564702034, 0.022810982540249825, -0.05051177740097046, 0.05178312957286835, -0.005702745635062456, -0.049484916031360626, 0.011429940350353718, 0.025060296058654785, 0.0339353084564209, 0.03457098454236984, 0.012420127168297768, -0.029656721279025078, 0.022542042657732964, 0.00877110380679369, 0.0012300938833504915, 0.04579310864210129, 0.0321749746799469, 0.05515710264444351, -0.03234611824154854, 0.005653847474604845, 0.0046881092712283134, -0.03188158571720123, 0.0014356188476085663, -0.004067713860422373, 0.024302374571561813, 0.003725426970049739, -0.015170647762715816, 0.022859880700707436, 0.0036398551892489195, 0.02248091995716095, 0.03728483244776726, -0.013019129633903503, -0.053983546793460846, -0.02407010830938816, 0.01666204072535038, 0.0020965076982975006, 0.014009317383170128, 0.014094889163970947, -0.02142960950732231, -0.02256649173796177, -0.030047906562685966, -0.03295734524726868, -0.00801929458975792, 0.00168087356723845, -0.08165989071130753, -0.04530412703752518, -0.02877655439078808, -0.014143787324428558, -0.0030194600112736225, 0.009571811184287071, -0.018581293523311615, 0.04975385591387749, -0.0075486502610147, 0.03677140176296234, -0.010060791857540607, -0.04924042522907257, 0.004703389946371317, 0.06190504506230354, -0.018128985539078712, -0.027358509600162506, 0.0027306554839015007, -0.018752437084913254, 0.05447252839803696, -0.043397098779678345, -0.028898799791932106, 0.03623352199792862, 0.054863713681697845, -0.00150438176933676, -0.02490137703716755, -0.03667360544204712, -0.0016090543940663338, 0.032859548926353455, 0.01789671927690506, 0.024925826117396355, -0.00309739145450294, -0.04765123873949051, 0.007518088910728693, 0.0022554267197847366, -0.025598175823688507, -0.03518221154808998, -0.009724617935717106, -0.043177057057619095, -0.03195493295788765, -0.036037929356098175, -0.0590689517557621, 0.002713846741244197, -0.04647768288850784, -0.01161942072212696, 0.022603165358304977, 0.019632603973150253, 0.07677008211612701, -0.027969736605882645, 0.0005390255828388035, -0.0058586085215210915, -0.010788151994347572, -0.010714804753661156, -0.014009317383170128, -0.007206363137811422, 0.024265700951218605, 0.04985165223479271, 0.0458420068025589, 0.05784649774432182, -0.0722714513540268, -0.011399379000067711, 0.017114348709583282, 0.006048088427633047, 0.0018596573499962687, 0.0025961855426430702, -0.04371493682265282, 0.012676842510700226, 0.014767237938940525, -0.0032364455983042717, 0.0189602542668581, 0.006460666656494141, -0.022419797256588936, 0.046526581048965454, 0.0070780059322714806, -0.008294346742331982, -0.025647073984146118, -0.047064460813999176, 0.021661875769495964, -0.032908447086811066, -0.024522416293621063, 6.661416409770027e-05, -0.021185118705034256, 0.0213807113468647, -0.035426702350378036, 0.00140811363235116, -0.04552416875958443, -0.034277595579624176, -0.03014570288360119, 0.02222420461475849, 0.0057088579051196575, -0.003841560101136565, 0.08356691896915436, 0.019583705812692642, 0.005663015879690647, -0.00576386833563447, 0.02208973467350006, 0.033959757536649704, -0.006595136597752571, -0.03156374767422676, -0.04735784977674484, 0.017774473875761032, -0.02799418568611145, 0.03931410610675812, -0.03322628512978554, 0.046624377369880676, 0.021784121170639992, -0.03139260411262512, -0.004480292089283466, 0.016124160960316658, -0.021136220544576645, 0.014889483340084553, -0.006888525560498238, -0.03545115143060684, 0.010103577747941017, 0.0027031502686440945, -0.01749330945312977, -0.06131826713681221, 0.021123996004462242, -0.04259027913212776, -0.027676347643136978, -0.009296759031713009, -0.013141375035047531, 0.01635642722249031, 0.06327418982982635, 0.03596458211541176, 0.04417946934700012, -0.009602372534573078, -0.004740063566714525, 0.039607491344213486, -0.03474212810397148, -0.008031519129872322, 0.012627944350242615, -0.005293223541229963, 0.03359302133321762, 0.0009053795947693288, -0.034839924424886703, -0.008269897662103176, 0.04598870128393173, 0.0069985464215278625, 0.0078114778734743595, -0.010745366103947163, 0.022370899096131325, 0.016857633367180824, -0.062491822987794876, -0.034277595579624176, -0.007756467442959547, 0.0050426204688847065, 0.01203505415469408, -0.0005726430681534111, 0.01662536710500717, 0.016979878768324852, 0.011472726240754128, -0.024913601577281952, -0.005617173854261637, 0.00797650869935751, 0.012414014898240566, 0.01622195728123188, 0.00022424380586016923, 0.0068701887503266335, -0.031245911493897438, -0.03234611824154854, -0.01811676099896431, 9.717549801280256e-06, -0.007903161458671093, 0.03677140176296234, 0.0423213392496109, 0.029436679556965828, 0.058335479348897934, -0.02613605558872223, -0.03550004959106445, 0.03552449867129326, 0.017432186752557755, 0.024925826117396355, 0.022322000935673714, -0.03156374767422676, 0.04843360558152199, 0.019901541993021965, -0.015268444083631039, -0.006851851940155029, -0.010592559352517128, -0.015243995003402233, -0.010066904127597809, -0.019987113773822784, -0.016319753602147102, 0.0559883713722229, -0.05452142655849457, 0.014596094377338886, -0.0130069050937891, 0.034668780863285065, -0.0383605919778347, 0.08503386378288269, -0.02711401879787445, -0.0064912280067801476, 0.014681666158139706, 0.008453265763819218, 0.011478838510811329, -0.031710442155599594, 0.0037070901598781347, -0.08302903920412064, 0.012481249868869781, 0.005611061584204435, -0.022297551855444908, -0.00916840136051178, -0.032639507204294205, 0.007689232472330332, -0.00386295304633677, -0.07500974833965302, -0.009846862405538559, -0.010983744636178017, 0.011766115203499794, 0.013324743136763573, -0.058433275669813156, -0.0370158925652504, 0.017921168357133865, 0.0130069050937891, -0.006876301020383835, 0.0006398779805749655, -0.02877655439078808, -0.013935970142483711, -0.02816532924771309, 0.038067203015089035, 0.002820811467245221, -0.010635345242917538, 0.0008794025052338839, -0.010103577747941017, -0.010947071015834808, 0.044766247272491455, -0.06078038737177849, -0.012994680553674698, -0.024925826117396355, -0.01728549227118492, -0.016380876302719116, 0.029069943353533745, 0.011105990037322044, -0.0222608782351017, 0.018752437084913254, 0.0484825037419796, 0.020023787394165993, -0.08131760358810425, 0.024302374571561813, 0.022322000935673714, 0.0352555587887764, 0.008801665157079697, -0.024094557389616966, -0.01635642722249031, -0.03594013303518295, -0.022419797256588936, 0.038996268063783646, -0.011454389430582523, 0.030487990006804466, 0.05848217383027077, -0.03765156865119934, -0.001983430702239275, 0.030536888167262077, 0.026258300989866257, -0.0074630784802138805, -0.0028452605474740267, -0.06087818369269371, -0.011539961211383343, -0.011509399861097336, -0.01157052256166935, -0.0630296990275383, -0.008709981106221676, -0.0016976823098957539, 0.01183946244418621, -0.05491261184215546, 0.026038259267807007, 0.03508441522717476, 0.029216637834906578, -0.07750355452299118, -0.02701622247695923, 0.05178312957286835, 0.004898982588201761, -0.008972808718681335, 0.01869131438434124, -0.02490137703716755, -0.05090296268463135, -0.007408068049699068, 0.027700796723365784, 0.024925826117396355, 0.01944923587143421, -0.07564542442560196, -0.011234347708523273, -0.009639046154916286, -0.01952258311212063, 0.007291934918612242, 0.011454389430582523, 0.015500710345804691, 0.021282915025949478, -0.028312023729085922, -0.003444262780249119, -0.0020506656728684902, 0.01874021254479885, 0.042688075453042984, -0.0026007697451859713, 0.06122047081589699, 0.003823223290964961, -0.025231439620256424, -0.0052809990011155605, -0.00916840136051178, 0.03317738696932793, -0.016869857907295227, 0.003636799054220319, 0.030390193685889244, -0.0167476125061512, -0.02855651266872883, -0.006906862370669842, -0.03366636857390404, 0.04395942762494087, -0.006436217576265335, 0.05359236150979996, 0.015060626901686192, 0.05740641430020332, 0.03826279565691948, -0.07632999867200851, -0.021588528528809547, -0.04117223247885704, 0.029632272198796272, 0.019938215613365173, -0.009761291556060314, -0.031490400433540344, -0.013275844976305962, -0.01353256031870842, 0.021722998470067978, 0.0008457850199192762, 0.02221198007464409, -0.024131231009960175, -0.003373971674591303, -0.022810982540249825, 0.014143787324428558, 0.011069316416978836, -0.01652757078409195, 0.06894637644290924, 0.026282750070095062, -0.043397098779678345, 0.006821290589869022, 0.025598175823688507, 0.015378464944660664, 0.009015594609081745, -0.018789110705256462, -0.03403310477733612, 0.007805365603417158, -0.00022710893244948238, 0.037578221410512924, -0.04784683138132095, -0.047015562653541565, -0.007780916523188353, 0.008306571282446384, 0.053934648633003235, -0.021478507667779922, -0.050365082919597626, 0.02190636657178402, 0.008434928953647614, 0.045255228877067566, -0.038287244737148285, 0.04222354292869568, -0.03459543362259865, -0.017750024795532227, -0.006540126167237759, 0.036086827516555786, -0.01644199900329113, -0.03415535017848015, 0.03249281272292137, 0.008361581712961197, 0.017908943817019463, -0.0551082044839859, 0.009920209646224976, 0.005060957279056311, -0.021185118705034256, -0.028312023729085922, -0.05227211117744446, -0.014278256334364414, -0.07134238630533218, 0.008587735705077648, 0.04337264969944954, 0.005635510664433241, 0.02997455932199955, 0.034179799258708954, 0.029852313920855522, -0.00894835963845253, 0.005342121701687574, -0.01121601089835167, -0.0005565983592532575, -0.04354379326105118, -0.025549277663230896, 0.03464433178305626, -0.0035481713712215424, 0.013361416757106781, 0.0339353084564209, 0.014400501735508442, -0.0071085668168962, 0.017432186752557755, -0.11383486539125443, -0.046575479209423065, 0.03190603479743004, 0.015476261265575886, 0.047284502536058426, -0.02750520408153534, -0.004492516629397869, 0.036649156361818314, 0.01647867262363434, 0.05672184377908707, -0.01410711370408535, -0.05007169395685196, -0.02200416289269924, -0.02429015003144741, 0.020903954282402992, -0.020439421758055687, -0.012200085446238518, -0.013728152960538864, -0.01693098060786724, 0.003060717834159732, -0.029216637834906578, 0.006827402859926224, -0.007469190750271082, -0.05721082165837288, -0.009406779892742634, -0.016637591645121574, -0.005048732738941908, 0.05657514929771423, 0.05823768302798271, -0.03391085937619209, 0.03501106798648834, -0.028727656230330467, 0.03667360544204712, 0.01578187383711338, -0.014547196216881275, 0.006509564816951752, -0.0008503692224621773, -0.01558628212660551, 0.008471602573990822, 0.02415568009018898, 0.016674265265464783, -0.0009084357297979295, -0.0004259486449882388, -0.032908447086811066, 0.0326150581240654, 0.022542042657732964, 0.006955760531127453, 0.014730564318597317, 0.013569233939051628, -0.003694865619763732, -0.0625896155834198, -0.003092807251960039, 0.0036398551892489195, -0.02794528752565384, -0.02288432978093624, 0.02322661690413952, -0.01361813209950924, -0.0066807083785533905, -0.038507286459207535, 0.008911686018109322, -0.03948524594306946, -0.03271285444498062, 0.04792017862200737, 0.0185079462826252, -0.006815178319811821, 0.009773516096174717, -0.044497307389974594, 0.0033861962147057056, 0.0006062605534680188, 0.024913601577281952, 0.028067532926797867, 0.022065285593271255, 0.006534013897180557, 0.010892060585319996, 0.04557306692004204, 0.008936135098338127, -0.010898172855377197, -0.014840585179626942, 0.024302374571561813, -0.04990055039525032, -0.03457098454236984, -0.021539630368351936, -0.002432682551443577, -0.009773516096174717, 0.016723163425922394, -0.022419797256588936, -0.01970594935119152, -0.02075725980103016, 0.031759340316057205, -0.004685053136199713, -0.0022691793274134398, -0.02072058618068695, -0.0104703139513731, -0.019754847511649132, 0.025133643299341202, 0.016808735206723213, 0.013373641297221184, 0.029827864840626717, 0.008263785392045975, 0.00998133234679699, -0.05603726953268051, 0.01786004565656185, 0.05417913943529129, 0.016894306987524033, 0.03178378939628601, 0.02001156285405159, -0.00290332711301744, -0.028287574648857117, 0.02212640829384327, 0.005137360654771328, -0.005476591642946005, -0.04535302519798279, 0.04090329259634018, 0.019644828513264656, -0.00436415895819664, 0.03994977846741676, 0.020696137100458145, -0.002516726031899452, 0.04134337604045868, -0.01573297567665577, 0.031197013333439827, 0.014290480874478817, 0.01188224833458662, 0.011209898628294468, -0.018764661625027657, 0.04151451960206032, -0.01380150020122528, 0.011148775927722454, 0.03508441522717476, 3.442925662966445e-05, 0.01992599107325077, 0.038727328181266785, 0.02177189663052559, 0.02530478686094284, 0.010238047689199448, -0.010409191250801086, 0.020219380035996437, -0.011863911524415016, 0.026649486273527145, -0.02865430898964405, -0.02208973467350006, 0.009009482339024544, 0.03994977846741676, -0.003765156725421548, -0.013654805719852448, -0.00458420068025589, -0.03547560051083565, -0.0383605919778347, 0.00601752707734704, 0.06293190270662308, -0.015855221077799797, -0.021722998470067978, -0.003942412324249744, 0.0058188787661492825, -0.0007235396769829094, 0.016160834580659866, -0.026527240872383118, -0.007298047188669443, -0.03151484951376915, 0.031270358711481094, -0.01926586776971817, 0.016185283660888672, -0.026722833514213562, -0.00204913760535419, -0.004263306502252817, 0.04354379326105118, -0.019547032192349434, 0.03117256425321102, 0.010849274694919586, 0.016637591645121574, 0.0018902187002822757, 0.011552185751497746, -0.0029186077881604433, 0.05178312957286835, 0.02579376846551895, -0.010164700448513031, 0.04655103012919426, -0.007041332311928272, 0.01723659411072731, -0.02640499547123909, 0.035768989473581314, 0.02816532924771309, -0.00824544858187437, -0.03322628512978554, -0.010745366103947163, -0.0277741439640522, 0.015219545923173428, 0.022248653694987297, 0.017468860372900963, 0.003872121451422572, -0.028067532926797867, 0.015329566784203053, -0.02437572181224823, -0.0037987742107361555, 0.012310106307268143, -0.017872270196676254, -0.031270358711481094, 0.025378134101629257, -0.028947697952389717, -0.03946079686284065, 0.017835596576333046, -0.021698549389839172, -0.019204745069146156, 0.01649089716374874, -0.017163246870040894, 0.009920209646224976, -0.005247381515800953, 0.0027658010367304087, -0.031368155032396317, 0.05339676886796951, -0.04694221541285515, -0.008104866370558739, 0.03892292082309723, 0.01781114749610424, -0.0006723494152538478, 0.039827533066272736, 0.0016289192717522383, 0.021576303988695145, -0.002200416289269924, 0.03234611824154854, 0.0008702341001480818, -0.00654623843729496, -0.0705600157380104, 0.010904285125434399, 0.05109855532646179, -0.013997092843055725, -0.006613473407924175, -0.006167277693748474, -0.020353849977254868, -0.015610731206834316, -0.007071893662214279, 0.032810650765895844, 0.014975055120885372, -0.02014603279531002, -0.032810650765895844, -0.00872831791639328, 0.0031875474378466606, 0.0006184850353747606, 0.0009114918648265302, -0.005540770478546619, 0.011521624401211739, -0.009871311485767365, -0.011154888197779655, 0.00650345254689455, 0.010708692483603954, -0.01935143955051899, 0.03369081765413284, 0.01260349527001381, -0.006448442116379738, -0.01438827719539404, 0.026062708348035812, -0.007518088910728693, -0.017089899629354477, 0.021319588646292686, -0.03381306305527687, 0.005693577229976654, -0.012261208146810532, 0.00235933531075716, 0.02072058618068695, -0.05236990749835968, -0.03662470728158951, -0.025818217545747757, 0.0011162528535351157, 0.03156374767422676, -0.015757424756884575, 0.017933392897248268, -0.03547560051083565, -0.020488319918513298, -0.001641143811866641, -0.017774473875761032, 0.022028611972928047, -0.007719793822616339, 0.011460501700639725, 0.0075486502610147, 0.008838338777422905, -0.025598175823688507, 0.004981497768312693, 0.018923580646514893, -0.007475303020328283, 0.004999834578484297, 0.029876763001084328, -0.000747988757211715, -0.00021412037312984467, 0.02914329059422016, 0.04501073807477951, -0.0011315335286781192, -0.0100302305072546, 0.003294512163847685, -0.00571802631020546, -0.04880034178495407, 0.003163098357617855, -0.002039969200268388, 0.018397925421595573, -0.01882578432559967, -0.03354412317276001, -0.00636898260563612, -0.003954636864364147, 0.034008655697107315, -0.002455603564158082, -0.047186706215143204, -0.01869131438434124, 0.01234066765755415, -0.02173522301018238, 0.020072685554623604, 0.007200250867754221, -0.010280833579599857, -0.012145075015723705, 0.005559107288718224, -0.011692767962813377, -0.048995934426784515, 0.010568110272288322, 0.013850398361682892, 0.010659794323146343, -0.005143472924828529, 0.010091353207826614, -0.02292100340127945, -0.05413024127483368, 0.00042709469562396407, -0.013764826580882072, 0.014168236404657364, -0.014901707880198956, -0.010665906593203545, 0.0053207287564873695, -0.029827864840626717, -0.015757424756884575, 0.012566821649670601, 0.014339379034936428, 0.031490400433540344, 0.028801003471016884, -0.03787161037325859, -0.029118841513991356, 0.008575511164963245, -6.838099216111004e-05, -0.020952852442860603, 0.03413090109825134, 0.02838537096977234, 0.01833680272102356, 0.02473023347556591, -0.01443717535585165, -0.012352892197668552, 0.005336009431630373, -0.012982456013560295, -0.05276109278202057, 0.0205005444586277, -0.05104965716600418, 0.008306571282446384, -0.007212475407868624, 0.028116431087255478, 0.0018642415525391698, -0.010018005967140198, 0.02679618075489998, -0.056966330856084824, -0.0018260398646816611, -0.02212640829384327, 0.04765123873949051, 0.002564096124842763, -0.002984314691275358, -0.012359004467725754, -0.035989031195640564, -0.02252981811761856, 0.013691479340195656, 0.03310403972864151, 0.026429444551467896, -0.021881917491555214, -0.014730564318597317, -0.009137840010225773, -0.005714970175176859, -0.04019426926970482, 0.03611127659678459, 0.028898799791932106, -0.003927131649106741, 0.008520500734448433, 0.019155846908688545, 0.015036177821457386, -0.04127002879977226, -0.031197013333439827, 0.012750189751386642, 0.016380876302719116, 0.0036918094847351313, -0.015109525062143803, -0.03002345748245716, -0.022163081914186478, 0.029412230476737022, -0.005314616486430168, -0.0007628873572684824, 0.005326841026544571, -0.007249149028211832, 0.012230646796524525, -0.04029206559062004, 0.018410149961709976, -0.012236759066581726, 0.00386295304633677, -0.015708526596426964, 0.030047906562685966, 0.005760812200605869, -0.0255737267434597, -0.030096804723143578, -0.01935143955051899, -0.003694865619763732, 0.012884659692645073, 0.012499586679041386, 0.026478342711925507, 0.0007006186642684042, -0.008147652260959148, 0.026429444551467896, 0.047626789659261703, 0.03151484951376915, -0.004278587177395821, -0.029730068519711494, -0.033788613975048065, 0.02442461997270584, 0.01904582604765892, 0.0031600422225892544, 0.009755179286003113, 0.03667360544204712, -0.0015639764023944736, -0.03058578632771969, 0.02755410224199295, 0.02520699054002762, -4.135330891585909e-05, 0.005394075997173786, -0.0034992732107639313, 0.06405656039714813, -0.035817887634038925, -0.004831747617572546, -0.04814021661877632, 0.014278256334364414, -0.02760300040245056, 0.044057223945856094, 0.004202183801680803, -0.004446674603968859, -0.009510688483715057, 0.040316514670848846, 0.034179799258708954, -0.02248091995716095, -0.012248983606696129, -0.04527967795729637, 0.025402583181858063, 0.02782304212450981, 0.0021056761033833027, 0.0242412518709898, 0.015292893163859844, -0.011344368569552898, -0.002785665914416313, -0.01042141579091549, -0.019779296591877937, 0.0036887533497065306, -0.02855651266872883, 0.006992434151470661, -0.0032670069485902786, -0.0043794396333396435, 0.03276175260543823, -0.01148495078086853, -0.03889847174286842, 0.008220999501645565, -0.009492351673543453, 0.021808570250868797, -0.018128985539078712, -0.006356758065521717, 0.01238345354795456, -0.010011893697082996, 0.009791852906346321, -0.007854263298213482, -0.016160834580659866, 0.054374732077121735, -0.005745531525462866, -0.01545181218534708, 0.010317507199943066, -0.009229524061083794, 0.04210129752755165, 0.002366975648328662, 0.026771731674671173, -0.025647073984146118, 0.016148610040545464, -0.0003558485768735409, 0.0070780059322714806, -0.010922621935606003, -0.003893514396622777, 0.0029506972059607506, 0.02336108684539795, 0.019229194149374962, 0.024974724277853966, -0.061024878174066544, 0.015219545923173428, -0.013068027794361115, 0.014473848976194859, -0.06185614690184593, 0.01948590949177742, 0.022285327315330505, 0.003233389463275671, 0.012909108772873878, -0.017664453014731407, 0.026160504668951035, -0.034057553857564926, -0.014156011864542961, 0.004156341776251793, 0.025182541459798813, -0.009088941849768162, 0.011234347708523273, 0.019815970212221146, -0.00737139442935586, 0.01662536710500717, -0.005745531525462866, 0.008978920988738537, 0.014987279660999775, -0.008544949814677238, -0.016014140099287033, -0.01375260204076767, -0.0030821107793599367, 0.010482538491487503, 0.010262496769428253, 0.02948557771742344, -0.004113555885851383, 0.022908778861165047, 0.02635609731078148, -0.005213764030486345, 0.013153599575161934, 0.037627119570970535, 0.009975220076739788, 0.01816565915942192, -0.02124624140560627, -0.025280337780714035, 0.004966217093169689, 0.010109690017998219, -0.009584035724401474, -0.01081871334463358, 0.008807777427136898, -0.02490137703716755, -0.04530412703752518, -0.021001750603318214, 0.007212475407868624, -0.012071727775037289, 0.0029247200582176447, 0.02723626419901848, -0.042296890169382095, -0.04259027913212776, -0.00948012713342905, -0.028678758069872856, -0.01784782111644745, 0.03183268755674362, -0.00732860853895545, 0.0012499586446210742, 0.0015364711871370673, -0.021796345710754395, 0.018838008865714073, 0.04972940683364868, -0.02097730152308941, 0.02667393535375595, 0.00454141478985548, 0.0321749746799469, 0.0020873392932116985, 0.018006740137934685, -0.021759672090411186, 0.01635642722249031, 0.009773516096174717, -0.0200482364743948, 0.011601083911955357, -0.030512439087033272, 0.042247992008924484, 0.006078649777919054, -0.02045164629817009, 0.021894142031669617, 0.013300294056534767, 0.002322661690413952, -0.00554382661357522, -0.017701126635074615, 0.06606138497591019, 0.013459213078022003, -0.01183946244418621, -0.0031875474378466606, -0.0163075290620327, -0.013593683019280434, 0.012676842510700226, 0.038556184619665146, 0.03408200293779373, -0.032810650765895844, 0.009914097376167774, 0.005170978140085936, -0.010244159959256649, 0.0025579838547855616, -0.007090230472385883, -0.011888360604643822, -0.0010841634357348084, 0.012175636366009712, -0.017395513132214546, -0.009907985106110573, 0.0011620948789641261, 0.04107443615794182, 0.004999834578484297, 0.012909108772873878, 0.02860541082918644, 0.023385535925626755, -0.0074936398304998875, -0.013703703880310059, 0.009088941849768162, 0.033739715814590454, -0.009730730205774307, 0.017358839511871338, 0.011142663657665253, -0.00100317585747689, 0.03073248080909252, -0.027847491204738617, 0.011857799254357815, -0.028336472809314728, 0.014449399895966053, 0.011772227473556995, -0.007903161458671093, -0.008734430186450481, 0.003762100590392947, 0.015635179355740547, 0.016759837046265602, -0.004590312950313091, 0.03464433178305626, -0.023752272129058838, 0.024620212614536285, 0.012481249868869781, -0.002235561842098832, 0.009449565783143044, 0.018349027261137962, 0.04354379326105118, -0.003752932185307145, 0.06826180219650269, 0.008428816683590412, 0.01918029598891735, 0.014156011864542961, 0.021282915025949478, -0.002965977881103754, 0.0018306240672245622, -0.018397925421595573, -0.012627944350242615, -0.06425215303897858, -0.019950440153479576, 0.05549938976764679, -0.010983744636178017, 0.012591270729899406, -0.0036520797293633223, 0.008826114237308502, -0.0035390029661357403, -0.02278653346002102, -0.028580961748957634, -0.0352555587887764, 0.015146198682487011, 0.01051309984177351, 0.021087322384119034, -0.004743119701743126, -0.01874021254479885, -0.007952059619128704, 0.033788613975048065, -0.028678758069872856, -0.0028574850875884295, 0.017566656693816185, 0.007738130632787943, -0.02547593042254448, 0.0030072357039898634, -0.012982456013560295, -0.014339379034936428, -0.00819655042141676, 0.019803745672106743, 0.0016640648245811462, 0.027920838445425034, -0.05021838843822479, 0.03254171088337898, -0.02389896661043167, 0.024669110774993896, -0.008062080480158329, -0.005287111271172762, 0.027969736605882645, -0.03667360544204712, 0.022859880700707436, 0.00784815102815628, 0.06850629299879074, -0.02097730152308941, -0.004153285641223192, -0.007609772961586714, 0.046306539326906204, 0.0021148445084691048, 0.026478342711925507, 0.0343753919005394, 0.00572108244523406, 0.03730928152799606, 0.023605577647686005, -0.004758400376886129, 0.0055499388836324215, -0.01935143955051899, -0.021502956748008728, -0.031245911493897438, -0.014131562784314156, -0.01930254139006138, 0.010568110272288322, 0.013031354174017906, -0.015146198682487011, -0.01803118921816349, 0.009370106272399426, -0.001104028313420713, -0.01295800693333149, -0.011258796788752079, 0.008777216076850891, 0.0356956422328949, -0.008917798288166523, 0.0559883713722229, -0.027407407760620117, -0.002718430943787098, 0.002079698955640197, 0.005812766496092081, -0.013642581179738045, -0.013850398361682892, 0.011888360604643822, 0.012664617970585823, -0.00737139442935586, 0.0150973005220294, -0.003875177586451173, -0.014950606040656567, 0.004391664173454046, 0.005559107288718224, 0.018899131566286087, 0.01353256031870842, -0.03862953186035156, -0.034179799258708954, -0.004480292089283466, -0.013459213078022003, 0.020696137100458145, -0.011209898628294468, -0.023703373968601227, 0.0015830772463232279, -0.0014715284341946244, -0.006026695482432842, -0.0155373839661479, 0.00022080566850490868, -0.00558661250397563, -0.00894835963845253, 0.018239006400108337, 0.011802788823843002, 0.021221792325377464, -0.010146363638341427, 0.026698384433984756, 0.0025671522598713636, 0.006674596108496189, 0.01015858817845583, -0.009394555352628231, 0.03300624340772629, 0.013385865837335587, -0.03232166916131973, -0.0015578641323372722, 0.01564740389585495, -0.025867115706205368, 0.006637922488152981, 0.03278620168566704, 0.02838537096977234, 0.0009611540590412915, 0.0013103173114359379, 0.0035267784260213375, 0.009859086945652962, 0.034448739141225815, 0.05148974061012268, -0.0418812558054924, -0.012487362138926983, -0.017395513132214546, -0.009351769462227821, 0.026527240872383118, 0.017419962212443352, 0.03503551706671715, -0.009351769462227821, -0.0036581919994205236, -0.018532395362854004, 0.016600918024778366, 0.004700333811342716, 0.00010658266546670347, 0.00396686140447855, -9.610108463675715e-06, -0.002067474415525794, 0.02591601386666298, 0.00934565719217062, -0.019339215010404587, 0.04117223247885704, -0.010231935419142246, 0.021344037726521492, -0.0010918037733063102, -0.040927741676568985, 0.02376449666917324, 0.009009482339024544, -0.02948557771742344, -0.037407077848911285, 0.001073466963134706, -0.05369015783071518, -0.02107509784400463, -0.03875177726149559, 0.04650213196873665, 0.00585249625146389, 0.03185713663697243, 0.001121601089835167, -0.010213598608970642, -0.0059075066819787025, 0.022823207080364227, -0.016246406361460686, -0.0282142274081707, -0.005846383981406689, 0.025133643299341202, 0.02679618075489998, 0.01918029598891735, 0.01229788176715374, 0.004183846991509199, 0.010018005967140198, 0.007487527560442686, 0.006222288124263287, -0.001702266512438655, -0.024583538994193077, -0.010366405360400677, -0.021747447550296783, 0.0026542521081864834, -0.01443717535585165, -0.005317672621458769, 0.022590940818190575, -0.023471107706427574, 0.004898982588201761, -0.0352555587887764, 0.010751478374004364, -0.0205005444586277, 0.017664453014731407, 0.022199755534529686, 0.014131562784314156, -0.00014726744848303497, 0.0113504808396101, -0.0037865496706217527, 0.024351272732019424, -0.004712558351457119, -0.02151518128812313, -0.034228697419166565, 0.005299335811287165, -0.0007892465218901634, 0.01693098060786724, -0.018984703347086906, 0.0036612481344491243, -0.014596094377338886, 0.01828790456056595, 0.0023394704330712557, 0.012028942815959454, 0.00789093691855669, 0.018495721742510796, -0.026527240872383118, 0.0020827550906687975, 0.006045032292604446, -0.03774936497211456, -0.004425281658768654, -0.006109211128205061, 0.016368651762604713, -0.0288743507117033, -0.020879505202174187, 0.007456966210156679, -0.01723659411072731, 0.028312023729085922, -0.0012041167356073856, -0.0031203124672174454, 0.025158092379570007, -0.0031600422225892544, -0.0006360578117892146, -0.03146595135331154, -0.0010092881275340915, -0.011863911524415016, -0.0011682071490213275, 0.0066012488678097725, -0.016686489805579185, -0.03163709491491318, 0.002926248125731945, -0.04124557971954346, 0.016857633367180824, -0.012982456013560295, -0.013116925954818726, -0.002515197964385152, 0.013679254800081253, -0.023263290524482727, -0.005935011897236109, -0.01996266469359398, -0.017786698415875435, -0.004244969692081213, 0.02163742668926716, 0.024277925491333008, 0.001936060725711286, -0.012566821649670601, -0.01479168701916933, 0.01060478389263153, -0.011753890663385391, 0.01220619771629572, -0.0027275993488729, 0.031319256871938705, 0.013960419222712517, 0.002467827871441841, 0.012591270729899406, 0.019241418689489365, 0.013605907559394836, -0.015146198682487011, -0.029510026797652245, -0.006668483838438988, 0.004587256815284491, -0.03273730352520943, -0.00580971036106348, -0.020916178822517395, 0.01564740389585495, 0.01982819475233555, 0.017089899629354477, -0.01838570088148117, 0.03080582804977894, 0.011399379000067711, -0.0288743507117033, -0.05065847188234329, -0.04227244108915329, -0.006295635364949703, -0.004461955279111862, 0.033348530530929565, -0.014045991003513336, -0.025671523064374924, -0.010415303520858288, 0.009070605039596558, -0.005464367102831602, 0.0023119652178138494, -0.036478012800216675, 0.028312023729085922, 0.0027337116189301014, 0.003511497750878334, -0.023776721209287643, 0.00993854645639658, -0.0036215183790773153, -0.04219909384846687, 0.0018596573499962687, -0.014278256334364414, -0.02667393535375595, -0.008606072515249252, 0.03210162743926048, -0.0003950052778236568, 0.010574222542345524, 0.0021148445084691048, 0.01962037943303585, -0.04735784977674484, 0.01737106405198574, 0.02204083651304245, 0.01943701133131981, 0.015512934885919094, -0.0013821364846080542, -0.0255737267434597, -0.004278587177395821, 0.00032700630254112184, 0.010286945849657059, 0.009736842475831509, -0.01188224833458662, -0.038996268063783646, -0.03058578632771969, 0.009920209646224976, -0.006515677087008953, 0.0034350943751633167, -0.00938844308257103, -0.026380546391010284, -0.01706545054912567, 0.018532395362854004, 0.0418812558054924, -0.0200604610145092, -0.03391085937619209, 0.013703703880310059, -0.0031218405347317457, -0.010653682053089142, -0.01033584401011467, -0.04281032085418701, -0.013471437618136406, -0.029021045193076134, 0.005666072014719248, -0.030928073450922966, 0.021588528528809547, 0.028483165428042412, 0.00026454657199792564, 0.004822579212486744, -0.0004591840843204409, -0.035328906029462814, -0.007854263298213482, -0.0046178181655704975, 0.012242871336638927, 0.01113043911755085, -0.025622624903917313, -0.01474278885871172, 0.0010933318408206105, -0.016600918024778366, -0.009137840010225773, 0.0018000627169385552, 0.003835447831079364, -0.013654805719852448, 0.029436679556965828, -0.012823536992073059, -0.019033601507544518, 0.047015562653541565, -0.0028223395347595215, 0.0005703509668819606, 0.03283509984612465, 0.023165494203567505, 0.014168236404657364, -0.012377341277897358, -0.03166154399514198, -0.04325040429830551, 0.061513859778642654, -0.035768989473581314, 0.007243036758154631, -0.0023241897579282522, 0.027431856840848923, 0.017713351175189018, 0.0057791490107774734, 0.015219545923173428, 0.006515677087008953, -0.04574421048164368, -0.013679254800081253, -0.011961707845330238, 0.018263455480337143, 0.014363828115165234, 0.00222639343701303, -0.02486470341682434, -0.019559256732463837, 0.018263455480337143, 0.00047484677634201944, -0.0067907292395830154, 0.04095219075679779, 0.007823701947927475, 0.00023933347256388515, 0.013459213078022003, -0.01295800693333149, 0.006741831079125404, 0.029778966680169106, -0.0001515651383670047, 0.03430204465985298, -0.03865398094058037, 0.012218422256410122, 0.0006872480735182762, 0.01627085544168949, 0.0027153748087584972, 0.022725410759449005, 0.004480292089283466, -0.019106948748230934, -0.00580665422603488, 0.012053390964865685, 0.004327485337853432, 0.03337297961115837, -0.02552482858300209, -0.031197013333439827, 0.00768312020227313, 0.006815178319811821, 0.01693098060786724, 0.004397776443511248, -0.042736973613500595, -0.00998744461685419, -0.05060957372188568, 0.041196681559085846, -0.004244969692081213, -0.005461310967803001, 0.008147652260959148, -0.002406705403700471, -0.011533848941326141, 0.027211815118789673, -0.03567119315266609, -0.014620543457567692, -0.011399379000067711, 0.02799418568611145, 0.013104701414704323, 0.016637591645121574, -0.008569398894906044, -0.004960104823112488], [0.07896704226732254, 0.041578687727451324, -0.0022298009134829044, 0.08038349449634552, -0.03603092581033707, 0.010151219554245472, -0.04169672355055809, 0.011449631303548813, 0.029627395793795586, -0.0022832865361124277, -0.006897812709212303, -0.014666151255369186, 0.019446667283773422, 0.004378451034426689, 0.034230854362249374, 0.02056802250444889, 0.05751373991370201, -0.02341567538678646, 0.006986340507864952, 0.026868270710110664, 0.054621823132038116, 0.021246738731861115, -0.022677941247820854, -0.0099741630256176, -0.0027812570333480835, -0.020759833976626396, -0.0010531152365729213, -0.03148648515343666, 0.023873070254921913, -0.01924010179936886, 0.03222421929240227, -0.03172256052494049, 0.02714860998094082, -0.0725340023636818, 0.018222028389573097, 0.013190682977437973, -0.02794536203145981, 0.0011628532083705068, 0.03375870734453201, 0.005599400959908962, 0.0018166698282584548, -0.026086272671818733, 0.04627067595720291, 0.05081511661410332, -0.010571727529168129, 0.026292838156223297, 0.023592732846736908, 0.004013272933661938, 0.0034839485306292772, 0.05766128748655319, -0.009140524081885815, 0.009642182849347591, -0.018325312063097954, 0.04871995002031326, -0.02183692529797554, -0.0010097733465954661, 0.033434104174375534, 0.00674288859590888, 0.010335653088986874, 0.00953890010714531, -0.027414193376898766, -0.006824038922786713, 0.027989625930786133, -0.009981540963053703, 0.01924010179936886, 0.03411281853914261, -0.012799683958292007, 0.003784575266763568, -0.04281808063387871, 0.008624110370874405, -0.017705615609884262, 0.0022371781524270773, 0.0192253477871418, -0.01170783769339323, -0.06409432739019394, -0.013043136335909367, -0.02562887780368328, 0.00901510939002037, 0.0018139033345505595, 0.007513820193707943, -0.016333429142832756, -0.05420869216322899, -0.019254855811595917, -0.025761669501662254, -0.01797119900584221, -0.011501272208988667, -0.08545910567045212, -0.04104751721024513, -0.03243078663945198, 0.017823653295636177, -0.004762072581797838, 0.00615270109847188, -0.019756516441702843, 0.050372473895549774, 0.02098115347325802, -0.021158210933208466, -0.01135372556746006, -0.032489802688360214, 0.008210979402065277, 0.05721864476799965, 0.030099546536803246, -0.039365485310554504, -0.001912575331516564, -0.024935407564044, 0.07170774042606354, -0.011523404158651829, -0.032489802688360214, -0.0322832390666008, 0.012231629341840744, 0.011125028133392334, -0.024905897676944733, -0.01732199266552925, 0.006953142583370209, 0.04559195786714554, 0.05417918041348457, 0.013640700839459896, 0.02452227659523487, -0.013478399254381657, 0.028933925554156303, -0.02223530225455761, -0.0280191358178854, -0.020228665322065353, 0.01202506385743618, -0.034614477306604385, 0.003921056166291237, -0.017513804137706757, -0.032961953431367874, 0.021586095914244652, -0.02366650477051735, -0.01621539331972599, 0.007310943678021431, -0.0036849810276180506, 0.0373588465154171, 0.004109178204089403, -0.017366256564855576, 0.012762797996401787, -0.01891549862921238, -0.029774943366646767, -0.010224992409348488, 0.029627395793795586, 0.0039026127196848392, 0.017144937068223953, 0.020125381648540497, 0.031220901757478714, -0.026160046458244324, -0.040781933814287186, 0.05293978750705719, 0.023710768669843674, 0.022840242832899094, 0.04429354891180992, -0.005769079551100731, -0.01637769304215908, 0.013072646223008633, 0.009502013213932514, 0.015123546123504639, -0.036207981407642365, -0.025422312319278717, 0.05158235877752304, -0.005437099374830723, 0.001923641306348145, -0.052969299256801605, -0.07442260533571243, -0.03142746537923813, -0.0145997554063797, -0.03791952505707741, 0.02667645923793316, -0.05999252572655678, 0.014371057972311974, -0.11597178131341934, 0.016038335859775543, -0.012998872436583042, -0.03133893758058548, -0.055979251861572266, 0.04591656103730202, 0.0008133517112582922, -0.05299880728125572, 0.04051635041832924, -0.03594239801168442, -0.00823311135172844, -0.020272929221391678, 0.01546290423721075, 0.049162592738866806, 0.026248574256896973, -0.013670210726559162, -0.04674282297492027, 0.009347089566290379, -0.0370047353208065, 0.0769013911485672, -0.006219097413122654, 0.04653625935316086, -0.02096639946103096, 0.005481363274157047, -0.014835829846560955, 0.02989298105239868, 0.018723687157034874, 0.014053831808269024, 3.3572658139746636e-05, -0.03547024726867676, 0.037152282893657684, -0.04178525134921074, 0.020479494705796242, -0.04730350151658058, 0.015049773268401623, -0.03712277114391327, -0.04509029909968376, 0.0017032432369887829, -0.05394310876727104, 0.0582219660282135, 0.04904455319046974, -0.010158596560359001, 0.022574659436941147, -0.014887471683323383, 0.0022298009134829044, 0.031132373958826065, 0.0033530008513480425, 0.020435230806469917, 0.004138687625527382, 0.05137579143047333, 0.0066617378033697605, 0.03750639408826828, -0.0486019141972065, -0.02104017324745655, 0.03759492188692093, 0.014828452840447426, -0.03039463981986046, 0.05379556119441986, -0.028137173503637314, -0.0068646143190562725, -0.01692361757159233, -0.04258200526237488, 0.01032089814543724, 0.028742115944623947, -0.014098095707595348, 0.03181108832359314, 0.013220192864537239, 0.030055280774831772, 0.008956090547144413, -0.00575801357626915, -0.007760961074382067, -0.02073032408952713, 0.015212073922157288, 0.005023968406021595, 0.018163010478019714, -0.04137212038040161, -0.06934699416160583, -0.009634805843234062, -0.002390258014202118, 0.02104017324745655, -0.0013177773216739297, -0.0007100689108483493, 0.0023330836556851864, 0.046890370547771454, 0.007849489338696003, 0.010343030095100403, -0.02071557007730007, 0.03021758235991001, -0.013271833769977093, 0.0359128899872303, 0.03812609240412712, 0.001081702415831387, -0.005761702079325914, 0.009605295956134796, 8.241871546488255e-05, -0.03665062412619591, -0.005680551286786795, -0.0002946325112134218, 0.02216152846813202, 0.012497213669121265, -0.014776811003684998, 0.03045365773141384, 0.017351502552628517, 0.016097355633974075, -0.010431557893753052, 0.01574324257671833, -0.044264037162065506, 0.05341193825006485, 0.006986340507864952, 0.03393576294183731, -0.047362521290779114, 0.017071163281798363, 0.024861633777618408, -0.02753223106265068, 0.03505711629986763, -0.03656209632754326, -0.017307238653302193, -0.0018240471836179495, -0.027591250836849213, 0.046093616634607315, -0.01993357203900814, -0.03142746537923813, -0.02887490764260292, -0.017144937068223953, 0.001901509240269661, -0.03957204893231392, -0.0007478778134100139, -0.005728504154831171, -0.07660629600286484, -0.062087688595056534, 0.04373287037014961, 0.010232370346784592, 0.03496858850121498, 0.04603460058569908, -0.02682400681078434, 0.0018996649887412786, 0.0038694145623594522, 0.04470667988061905, 0.01519731990993023, -0.0008124295272864401, -0.019815534353256226, -0.018384329974651337, -0.04851338639855385, 0.056776005774736404, -0.03582436218857765, 0.03340459242463112, -0.06196965277194977, -0.007369962055236101, 0.01795644499361515, -0.03322753682732582, 0.03724081069231033, -0.029538867995142937, -0.013957927003502846, 0.00167557829990983, 0.0023662815801799297, -0.05054952949285507, -0.004028027411550283, -0.05745472013950348, 0.013397248461842537, 0.022574659436941147, -0.0268387608230114, -0.013360362499952316, -0.013743983581662178, -0.002119140699505806, 0.04089996963739395, -0.01016597356647253, 0.01828104816377163, -0.030335620045661926, 0.013862021267414093, -0.03166354075074196, 0.03405379876494408, 0.0034175526816397905, -0.02143854834139347, -0.01214310061186552, -0.032548822462558746, 0.013596436940133572, 0.012556231580674648, -0.02365175075829029, -0.00186001171823591, -0.024330466985702515, -0.011471763253211975, 0.025378048419952393, 0.018856480717658997, 0.027753552421927452, -0.010003672912716866, 0.016480976715683937, -0.016038335859775543, -0.011493895202875137, -0.017617087811231613, -0.0531463548541069, 0.0012504591140896082, 0.038657259196043015, -0.030807770788669586, -0.011737347580492496, -0.020081117749214172, 0.02927328273653984, -0.022117264568805695, 0.06037614867091179, -0.033109501004219055, 0.04385090619325638, -0.020435230806469917, -0.005307995714247227, -0.010284011252224445, 0.018945008516311646, 0.0033456236124038696, -0.007307254709303379, 0.016879353672266006, 0.019830288365483284, 0.00597195653244853, 0.030173318460583687, 0.03848020359873772, -0.04376237839460373, 0.033375084400177, -0.012585741467773914, -0.02263367734849453, -0.0022519328631460667, 0.029155246913433075, 0.019018782302737236, 0.007679810747504234, 0.03603092581033707, -0.03142746537923813, -0.027561740949749947, 0.0010512708686292171, -0.013013627380132675, -0.018177764490246773, 0.016599014401435852, -0.002548870863392949, -0.006204342469573021, 0.0029251151718199253, 0.01732199266552925, 0.03417183831334114, -0.03054218553006649, 0.0322832390666008, -0.027281401678919792, -0.03361115977168083, 0.02809290960431099, -0.01953519508242607, -0.03597190976142883, -0.04160819575190544, 0.014695660211145878, -0.003668382065370679, 0.02428620122373104, 0.06952404975891113, -0.06751741468906403, 0.024197673425078392, 0.005116185173392296, 0.017469540238380432, -0.025850197300314903, -0.04137212038040161, 0.01574324257671833, -0.0015879723941907287, -0.0015344866551458836, 0.000382007856387645, -0.03547024726867676, -0.04559195786714554, -0.025732161477208138, 0.01214310061186552, 0.046329692006111145, 0.038657259196043015, 0.02325337380170822, 0.046713314950466156, -0.009605295956134796, 0.0096126738935709, 0.009819239377975464, 0.03756541386246681, 0.0866984948515892, -0.003670226549729705, -0.005263731814920902, 0.0026890402659773827, -0.010852066799998283, 0.03488006070256233, -0.00019192609761375934, -0.017823653295636177, -0.007967527024447918, 0.00030131821404211223, -0.022456621751189232, -0.006167456042021513, -0.07991134375333786, -0.03077826090157032, 0.02825521118938923, -0.009465126320719719, -0.008801165968179703, -0.039276957511901855, 0.04677233472466469, -0.00013463644427247345, 0.04149015620350838, -0.029376566410064697, -0.029848715290427208, 0.02468457818031311, -0.04960523173213005, 0.004585016518831253, 0.0299224890768528, 0.04272955283522606, 0.050283946096897125, 0.010667633265256882, 0.0063777100294828415, 0.048631422221660614, 0.03154550492763519, -0.002537804888561368, -0.028343738988041878, -0.038185108453035355, -0.012585741467773914, 0.02071557007730007, -0.008137205615639687, -0.02073032408952713, 0.015027640387415886, -0.018472857773303986, -0.005643664859235287, 0.012851325795054436, -0.035234175622463226, -0.01333822961896658, 0.01194391306489706, -0.03151599317789078, 0.009361843578517437, -0.04848387464880943, -0.02310582809150219, 0.044913243502378464, 0.034850552678108215, 0.06497960537672043, 0.06043516471982002, -0.05671698600053787, 0.00798965897411108, 0.00326447281986475, -0.0040354048833251, 0.05267420411109924, -0.01850236766040325, 0.00339173199608922, -0.03133893758058548, 0.06173357740044594, -0.01487271673977375, -0.022102508693933487, 0.006115814670920372, -0.011302084662020206, -0.032548822462558746, -0.052880771458148956, 0.01851712167263031, 0.046890370547771454, 0.0019365516491234303, -0.008992977440357208, 0.028992945328354836, -0.012194742448627949, 0.01494649052619934, -0.010571727529168129, -0.05907773599028587, -0.008284752257168293, 0.01779414340853691, -0.02524525672197342, -0.006141635123640299, 0.017705615609884262, -0.0017797831678763032, 0.01701214537024498, 0.031191391870379448, -0.03924744576215744, 0.05341193825006485, 0.024743597954511642, -0.02168937772512436, 0.007274056784808636, -0.017499050125479698, -0.020464740693569183, -0.06970110535621643, -0.001278124051168561, -0.016569504514336586, -0.011530782096087933, -0.02074507810175419, -0.01599407196044922, 0.026617441326379776, 0.0031741003040224314, -0.0010143842082470655, 0.0031704118009656668, -0.01222425140440464, 0.016126863658428192, 0.014924357645213604, 0.003692358499392867, -0.0032607840839773417, 0.003338246140629053, 0.017853161320090294, -0.006141635123640299, 0.018089236691594124, 0.0018388018943369389, -0.02540755830705166, 0.024005863815546036, 0.009922522120177746, -0.016480976715683937, -0.011641441844403744, 0.006019908934831619, 0.0037476886063814163, 0.042139362543821335, 0.007244547363370657, -0.006016220431774855, -0.017292484641075134, 0.009553655050694942, 0.013006249442696571, -0.009206919930875301, 0.025068199262022972, -0.004614525940269232, -0.01890074461698532, 0.004326809663325548, 0.04172623157501221, -0.001973438309505582, -0.013810379430651665, -0.005396523978561163, 0.002528583165258169, -0.033434104174375534, 0.0023220176808536053, 0.019210591912269592, 0.01993357203900814, 0.030719242990016937, 0.016362939029932022, 0.023696014657616615, -0.029642149806022644, 0.025038691237568855, 0.01693837158381939, -0.0013472866266965866, 0.01764659583568573, -0.0004622364358510822, -0.00725930230692029, -0.03603092581033707, -0.044205017387866974, -0.021113945171236992, -0.025584613904356956, -0.004924374166876078, 0.0036536273546516895, 0.04107702523469925, 0.00020864038378931582, -0.0008608433417975903, 0.03331606462597847, -0.03895235434174538, 0.02927328273653984, -0.0011314994189888239, 0.02129100263118744, 0.009952031075954437, -0.03340459242463112, 0.017838407307863235, -0.04635920375585556, 0.006676492281258106, 0.004190328996628523, -0.017366256564855576, -0.03505711629986763, -0.03945401310920715, -0.029686415567994118, -0.010601237416267395, 0.04199181869626045, 0.040073707699775696, 0.01741052232682705, -0.014725170098245144, -0.025835443288087845, -0.0014496472431346774, 0.0004924373934045434, -0.05152333900332451, -0.008447053842246532, 0.01850236766040325, -0.021822171285748482, -0.04452962055802345, -0.0014321260387077928, 0.026204310357570648, -0.002338616643100977, -0.023386167362332344, 0.027812570333480835, -0.009428240358829498, 0.005215778946876526, 0.0025414933916181326, -0.03724081069231033, 0.00921429693698883, -0.021969716995954514, -0.0012836570385843515, -0.015448149293661118, 0.017233464866876602, 0.002100697485730052, -0.01047582272440195, 0.0004896708996966481, -0.007270368281751871, -0.03399478271603584, 0.0027406816370785236, 0.0017530403565615416, -0.008115073665976524, -0.027399439364671707, 0.0446181483566761, 0.008306884206831455, 0.01047582272440195, 0.005599400959908962, -0.006433040369302034, 0.01024712435901165, 0.011294706724584103, 0.006484681740403175, -0.020509004592895508, 0.008786411955952644, 0.015507168136537075, 0.005525627173483372, -0.0038140846882015467, 0.02437473088502884, 0.014821074903011322, -0.013271833769977093, -0.005997776985168457, 0.021010663360357285, -0.017440030351281166, -0.00411655567586422, 0.0011803742963820696, 0.018708933144807816, 0.026528913527727127, -0.009111014194786549, 0.014393189921975136, -0.0012504591140896082, 0.06734035909175873, -0.014887471683323383, -0.009317579679191113, -0.013006249442696571, -0.0049870815128088, 0.020686060190200806, 0.0012855014065280557, -0.015094037167727947, -0.07017325609922409, -0.0009996294975280762, 0.029391320422291756, 0.002724082674831152, -0.03974910452961922, -0.001591661013662815, 0.023400921374559402, 0.0066100964322686195, 0.026779742911458015, 0.023327147588133812, 0.010741406120359898, 0.004883798770606518, -0.0003462738823145628, 0.0059424471110105515, 0.038273636251688004, 0.013891530223190784, -0.0029398698825389147, 0.00858722347766161, 0.07188479602336884, 0.01368496473878622, 0.0024400551337748766, -0.1122535988688469, 0.013500531204044819, 0.026602687314152718, -0.021172964945435524, -0.030807770788669586, -0.03732933849096298, -0.05105119198560715, -0.026248574256896973, -0.04565097764134407, 0.004120244178920984, -0.005868673790246248, -0.03868676722049713, -0.021645113825798035, 0.004028027411550283, -0.025658387690782547, -0.027089590206742287, 0.004898553714156151, -0.009487259201705456, 0.01971225067973137, 0.015448149293661118, -0.0056731742806732655, 0.014319416135549545, 0.021954962983727455, -0.007487999740988016, 0.02500918135046959, -0.013758738525211811, -0.008277375251054764, -0.035735834389925, 0.05293978750705719, 0.02745845727622509, -0.0025433378759771585, 0.054798878729343414, 0.013080023229122162, -0.03665062412619591, -0.03251931443810463, -0.009509391151368618, 0.012932476587593555, -0.04526735469698906, 0.04438207671046257, -0.046477239578962326, -0.034762024879455566, 0.03747688606381416, -0.023386167362332344, -0.004743629600852728, 0.007812602445483208, -0.0003469655057415366, 0.024478012695908546, 0.0006644216482527554, 0.017189200967550278, -0.016171127557754517, 0.0038325279019773006, -0.005960890557616949, 0.014223510399460793, 0.030114300549030304, 0.0065584550611674786, -0.004319432191550732, -0.010394671931862831, 0.018222028389573097, -0.009406108409166336, 0.0026226441841572523, -0.024551786482334137, 0.006145324092358351, 0.006599030457437038, 0.012807061895728111, -0.012615250423550606, 0.02295828051865101, 0.021881189197301865, -0.06857974827289581, 0.010785670951008797, -0.015049773268401623, 0.01495386753231287, -0.0018074482213705778, -0.03313900902867317, 0.007170774042606354, -0.01850236766040325, 0.02744370326399803, -0.017262974753975868, -0.01873844303190708, -0.02492065355181694, 0.03647356852889061, -0.0022058244794607162, -0.005208401940762997, -0.007598659954965115, -0.031840596348047256, 0.011279952712357044, -0.006990029476583004, -0.01435630302876234, 0.02546657621860504, 0.011412744410336018, 0.05524151772260666, 0.006042041350156069, 0.0011942068813368678, -0.05081511661410332, -0.019727006554603577, -0.007093312218785286, 0.0054039014503359795, 0.012467703782022, 0.01444483082741499, -0.07696040719747543, 0.007410537451505661, 0.012585741467773914, -0.002318328944966197, -0.004703054204583168, 0.048926517367362976, 0.04414600133895874, 0.009251183830201626, 0.003681292524561286, -0.039040882140398026, -0.01813350059092045, -0.00692363316193223, 0.000790297519415617, -0.0014929891331121325, 0.02151232212781906, 0.0030745062977075577, -0.023120582103729248, -0.017130183055996895, -0.005189958494156599, -0.0398966521024704, -0.02372552454471588, -0.028269965201616287, -0.0045813280157744884, 0.035322703421115875, -0.023076318204402924, 0.05633336678147316, 0.0031021712347865105, -0.015285847708582878, 0.024507522583007812, -0.03213569149374962, 0.026691215112805367, -0.0017318305326625705, 0.011486518196761608, 0.007207660935819149, 0.024020617827773094, -0.03068973310291767, -0.013788247480988503, 0.01142749935388565, -0.026646951213479042, -0.015964562073349953, -0.0031759447883814573, 0.012836570851504803, 0.006425662897527218, 0.022574659436941147, 0.01167095173150301, -0.04210985451936722, -0.020302439108490944, -0.022043490782380104, 0.018369575962424278, -0.03381772339344025, 0.002152338856831193, -0.012784929946064949, 0.005566202569752932, 0.0008373280288651586, -0.019048290327191353, -0.01357430499047041, 0.025274764746427536, -0.005713749676942825, -0.01953519508242607, -0.013935794122517109, -0.00017094679060392082, 0.00996678601950407, 0.0060051544569432735, -0.01653999462723732, -0.0005011979956179857, -0.004481733776628971, 0.006894123740494251, 0.023769788444042206, 0.004352630581706762, 0.05175941437482834, 0.0027812570333480835, -0.025525595992803574, -0.04305415228009224, 0.021113945171236992, 0.017617087811231613, -0.015241583809256554, 0.015256338752806187, -0.03251931443810463, -0.025761669501662254, -0.006554766092449427, 0.028683096170425415, -0.020848361775279045, 0.013028381392359734, 0.013323475606739521, 0.03068973310291767, -0.009265938773751259, 0.016643278300762177, -0.020686060190200806, -0.007222415413707495, 0.00022051329142414033, 0.018561385571956635, 0.04556244984269142, -0.004880110267549753, -0.005437099374830723, -0.0321061834692955, -0.005994088482111692, -0.02753223106265068, 0.033345576375722885, 0.008535581640899181, -0.021143455058336258, 0.017528558149933815, -0.0008502383716404438, 0.056687477976083755, 0.008542959578335285, -0.002545182127505541, 0.005687928758561611, 0.03747688606381416, -0.05919577181339264, 0.027001062408089638, -0.011840630322694778, -0.018885988742113113, -0.028697852045297623, 0.024345220997929573, 0.020302439108490944, -0.022191038355231285, 0.033670179545879364, -0.005710060708224773, 0.031840596348047256, 0.02794536203145981, -0.03417183831334114, 0.017071163281798363, 0.005835475865751505, -0.01780889742076397, 0.0035429673735052347, 0.017071163281798363, 0.010549595579504967, 0.04278856888413429, 0.024714088067412376, 0.0035798540338873863, -0.028447020798921585, 0.05379556119441986, 0.040250763297080994, -0.01170783769339323, 0.01289558969438076, -0.01850236766040325, -0.0020545891020447016, -0.02018440142273903, -0.02071557007730007, -0.017985954880714417, 0.045769013464450836, -0.021231982856988907, 0.014784188941121101, 0.00482477992773056, -0.019682742655277252, 0.036739151924848557, -0.003017331939190626, 0.004079668782651424, -0.0003826994798146188, -0.025673141703009605, 0.017661351710557938, -0.023946844041347504, 0.0009064906043931842, -0.021231982856988907, -0.0010872354032471776, -0.012253761291503906, 0.0048616668209433556, -0.016628524288535118, 0.012799683958292007, 0.024905897676944733, 0.017381012439727783, -0.0004707664775196463, 0.029258528724312782, -0.03600141778588295, -0.007886376231908798, 0.009502013213932514, -0.01254147756844759, -0.017233464866876602, 0.006894123740494251, 0.0596679225564003, 0.03331606462597847, 0.044736187905073166, 0.036827679723501205, -0.0015418640105053782, -0.027325665578246117, 0.008247865363955498, 0.010298766195774078, 0.05648091062903404, -0.003089261008426547, 0.013950549066066742, 0.027015818282961845, -0.005912937689572573, 0.006230163387954235, -0.036355528980493546, -0.008572468534111977, 0.05816294625401497, 0.012998872436583042, 0.016599014401435852, -0.04146064817905426, -0.017853161320090294, 0.020848361775279045, 0.031220901757478714, 0.01884172484278679, -0.005750636104494333, 0.016407202929258347, 0.03393576294183731, 0.0002794167376123369, -0.022648433223366737, 0.011840630322694778, -8.063201676122844e-05, 0.0036849810276180506, 0.012511967681348324, 0.005603089462965727, 0.033198028802871704, -0.026632195338606834, -0.008063431829214096, 0.01566946879029274, 0.018000708892941475, -0.008321639150381088, -0.011324216611683369, 0.046713314950466156, -0.021409040316939354, -0.009996294975280762, -0.007842112332582474, 0.03467349708080292, 0.011545536108314991, -0.005769079551100731, -0.03381772339344025, -0.0337291955947876, -0.00894133560359478, -0.02981920726597309, 0.042847588658332825, -0.036591604351997375, -0.02649940364062786, -0.027724042534828186, 0.029376566410064697, -0.009767597541213036, 0.003616740694269538, 0.016038335859775543, -0.02562887780368328, 0.03830314800143242, 0.0044632903300225735, 0.03467349708080292, -0.016407202929258347, 0.0197712704539299, 0.009981540963053703, 0.02626332826912403, -0.023755034431815147, -0.01230540219694376, 0.008572468534111977, -0.03322753682732582, -0.019254855811595917, -0.004330498166382313, -0.01971225067973137, -0.006587964482605457, -0.005887117236852646, -0.021969716995954514, 0.042995136231184006, -0.005473985802382231, 0.003648094367235899, 0.027591250836849213, 0.0062117199413478374, 0.0018747664289548993, 0.0015713733155280352, 0.003690514247864485, 0.022692697122693062, -0.05845803767442703, 0.005761702079325914, -0.006953142583370209, -0.008395412936806679, 0.0037605988327413797, -0.008358526043593884, 0.002819988178089261, 0.010416803881525993, 0.016746560111641884, 0.01780889742076397, -0.004887487273663282, -0.01408334169536829, 0.03378821536898613, -0.005289552733302116, 0.011309461668133736, -0.00337144429795444, 0.016008827835321426, -0.007167085539549589, 0.01661376841366291, -0.002161560580134392, 0.031220901757478714, 0.012246383354067802, 0.03656209632754326, -0.021187718957662582, -0.0272076278924942, 0.0035835427697747946, 0.010608614422380924, 0.024197673425078392, -0.008277375251054764, -0.016023581847548485, 0.01599407196044922, -0.01119142398238182, -0.008734770119190216, 0.009074127301573753, 0.030424147844314575, 0.007274056784808636, -0.008609355427324772, 0.002818143693730235, 0.004278856795281172, -1.374605835735565e-05, -0.01606784574687481, -0.016421958804130554, -0.009354466572403908, 0.010586482472717762, 0.032961953431367874, 0.007598659954965115, 0.055034954100847244, -0.028151927515864372, 0.015182564966380596, 0.046329692006111145, 0.0008797477348707616, -0.0053006187081336975, -0.00826999731361866, -0.018723687157034874, -0.004127621650695801, -0.032637350261211395, -0.003109548706561327, 0.03765394166111946, -0.0028255211655050516, 0.030099546536803246, -0.0007672433275729418, -0.023622240871191025, 0.0019808157812803984, -0.03467349708080292, -0.00735889608040452, 0.005791211500763893, 0.00886756181716919, 0.022810734808444977, -0.018546631559729576, -0.023932090029120445, -0.0035005477257072926, -0.04033929482102394, 0.008122450672090054, -0.006584275513887405, -0.011818498373031616, -0.001351897488348186, 0.011265197768807411, -0.01012908760458231, 0.007650301326066256, -0.011066009290516376, -0.016554750502109528, 0.007395782973617315, -8.184236503439024e-05, -0.014651396311819553, -0.010741406120359898, -0.005311684682965279, -0.0016691230703145266, -0.003120614681392908, 0.0005629832157865167, -0.01906304620206356, 0.023061564192175865, -0.0168645977973938, -0.009819239377975464, 0.02626332826912403, -0.013530041091144085, 0.10989285260438919, -0.03434889391064644, -0.0185908954590559, 0.003917367197573185, 0.036739151924848557, -0.007642923854291439, 0.03316852077841759, -0.01522682886570692, -0.002910360461100936, 0.03709326311945915, 0.0041054897010326385, -0.008129828609526157, -0.0023146402090787888, -0.032312747091054916, -0.029553622007369995, -0.005237911362200975, -0.006414596922695637, -0.011375857517123222, 0.01828104816377163, 0.012135723605751991, 0.02824045531451702, 0.005252665840089321, 0.021158210933208466, -0.012061950750648975, 0.01605309173464775, 0.002091475762426853, -0.010151219554245472, 0.000535318220499903, 0.015876034274697304, 0.027089590206742287, -0.001975282793864608, -0.017912181094288826, 0.009789729490876198, -0.02034670300781727, 0.004046470858156681, 0.04199181869626045, 0.01218736544251442, -0.0420803464949131, -0.017115427181124687, 0.02382880635559559, -0.003037619637325406, 0.009774974547326565, -0.019638478755950928, 0.0010217615636065602, 0.002006636466830969, 0.01581701636314392, 0.0064441063441336155, -0.04175574332475662, 0.021822171285748482, -0.009524145163595676, 0.011287329718470573, 0.022840242832899094, 0.008491317741572857, 0.024182919412851334, -0.005020279437303543, -0.0242124292999506, -0.006396153476089239, -0.0031851662788540125, -0.00486535532400012, -0.016805579885840416, -0.015330111607909203, -0.007487999740988016, -0.025333784520626068, -0.042936116456985474, 0.03039463981986046, -0.006374021526426077, -0.020213911309838295, -0.008329016156494617, -0.008056054823100567, 0.0036868255119770765, -0.029804451391100883, 0.006591652985662222, 0.0029361811466515064, 0.01757282391190529, 0.011501272208988667, -0.005861296318471432, 0.022279566153883934, 0.009044618345797062, -0.010136464610695839, 0.011966045014560223, 0.03148648515343666, 0.02160084992647171, -0.021423794329166412, -0.0005164137692190707, -0.0536775216460228, -0.022013980895280838, -0.014998131431639194, -0.002279598033055663, 0.02477310597896576, -0.016672788187861443, -0.0002577457926236093, -0.014157114550471306, -0.019328629598021507, -0.000254518206929788, 0.008410166949033737, 0.00040483151678927243, -0.0037144904490560293, -0.018015462905168533, 0.00615270109847188, -0.008395412936806679, 0.016156373545527458, 0.010306143201887608, -0.018694179132580757, -0.008388034999370575, 0.010741406120359898, -0.00305606285110116, -0.013175928965210915, -0.026705969125032425, 0.042375437915325165, 0.027576494961977005, -0.0230320543050766, 0.011220933869481087, 0.04612312838435173, -0.03434889391064644, 0.025732161477208138, -0.021069681271910667, 0.010748784057796001, -0.0013472866266965866, 0.014732547104358673, -0.005547759588807821, -0.001966061070561409, 0.009347089566290379, 0.02216152846813202, 0.03490957245230675, 0.011324216611683369, -0.012467703782022, 0.01652524061501026, 0.04042782261967659, -0.004902242217212915, -0.006219097413122654, -0.037624433636665344, -0.01049057673662901, 0.004843223374336958, 0.02294352650642395, -0.013257079757750034, -0.004810025449842215, -0.01384726632386446, -0.019889308139681816, -0.007746206596493721, 0.009221674874424934, -0.022574659436941147, 0.02428620122373104, -0.01254147756844759, 0.01897451840341091, -0.03918842971324921, 0.008026545867323875, 0.006067861802875996, 0.023312393575906754, -0.012961985543370247, 0.017351502552628517, 0.019284365698695183, 0.012570986524224281, -0.025496086105704308, -0.02143854834139347, -0.008321639150381088, 0.03647356852889061, -0.024492766708135605, 0.02673547901213169, -0.004120244178920984, 0.01962372288107872, -0.031604524701833725, -0.02865358628332615, 0.0005860374076291919, 0.019033536314964294, 0.013965304009616375, -0.010955349542200565, -0.012984117493033409, 0.024389484897255898, 0.002170782070606947, -0.007842112332582474, 0.008705261163413525, -0.0024050127249211073, -0.048690441995859146, -0.001953150611370802, -0.005580957513302565, -0.024330466985702515, 0.009664314799010754, 0.03275538608431816, -0.011973422020673752, 0.002039834391325712, -0.034762024879455566, 0.050903644412755966, 0.003791952505707741, 0.005407589953392744, 0.02096639946103096, -0.008255243301391602, 0.010261879302561283, -0.016495730727910995, 0.008845429867506027, 0.0348210446536541, 0.004920685663819313, -0.017366256564855576, -0.010778293013572693, 0.004898553714156151, -0.033109501004219055, -0.006421973928809166, -0.025761669501662254, -0.011220933869481087, -0.005355948582291603, 0.006462549325078726, 0.021010663360357285, -0.01820727437734604, 0.01222425140440464, 0.011420121416449547, 0.029568377882242203, 0.022810734808444977, -0.02675023302435875, 0.015064527280628681, -0.000639523146674037, -0.005267420317977667, -0.015086659230291843, 0.01826629228889942, -0.011036500334739685, 0.0016617457149550319, 0.02230907417833805, 0.007886376231908798, -0.02570265159010887, 0.03290293365716934, -0.005761702079325914, 0.002141272881999612, -0.05022492632269859, -0.03665062412619591, -0.002191069768741727, -0.04494275152683258, -0.029627395793795586, 0.013301343657076359, 0.006565832067281008, 0.01487271673977375, 0.005226844921708107, -0.02927328273653984, 0.04013272747397423, 0.030512677505612373, -0.0031132372096180916, -0.034614477306604385, -0.008380657993257046, -0.01692361757159233, 0.002963846083730459, 0.014614509418606758, 0.008004413917660713, -0.00035987584851682186, -0.02680925279855728, -0.007561773061752319, 0.007760961074382067, -0.012482458725571632, 0.006307625211775303, 0.04346728324890137, -0.0037144904490560293, -0.007074868772178888, -0.018945008516311646, 0.02785683423280716, -0.021305756643414497, 0.011840630322694778, 0.030719242990016937, -0.029332302510738373, -0.0055698915384709835, 0.004666167311370373, 0.024418994784355164, -0.0030081102158874273, -0.014466962777078152, 0.03535221144556999, -0.030040526762604713, -0.005746947601437569, 0.029804451391100883, -0.012076704762876034, 0.01835482008755207, 0.024743597954511642, -0.026705969125032425, 0.012807061895728111, 0.011102896183729172, -0.03756541386246681, -0.023209109902381897, -0.009981540963053703, -0.013618568889796734, -0.04476569592952728, -0.024109145626425743, 0.01748429425060749, -0.007133887615054846, -0.036827679723501205, -0.007414226420223713, -0.020302439108490944, 0.012091459706425667, -0.007392094470560551, 0.018856480717658997, -0.03712277114391327, -0.020081117749214172, 0.009752842597663403, -0.03139795735478401, 0.033020973205566406, 0.004241970367729664, -0.0155514320358634, -0.003969008568674326, -0.00010345566261094064, -0.020435230806469917, -0.03163403272628784, -0.01702689938247204, 0.0056731742806732655, 0.027281401678919792, -0.02928803861141205, -0.0022574658505618572, -0.013751361519098282, -0.00455181859433651, 0.005245288368314505, 0.013655455783009529, 0.002934336895123124, -0.012290648184716702, 0.01333085261285305, -0.003454439342021942, 0.0018277359195053577, -0.019328629598021507, 0.0011444097617641091, 0.02500918135046959, -0.0235779769718647, -0.044824715703725815, -0.01471779216080904, -0.03346361219882965, 0.01606784574687481, 0.010542218573391438, -0.034378401935100555, -0.004227215424180031, 0.02618955634534359, 0.006824038922786713, 0.004153442103415728, -0.012357044033706188, 0.015610450878739357, 0.12783454358577728, -0.01708591915667057, -0.011479140259325504, -0.009988917969167233, 0.007502754218876362, 0.029096227139234543, 0.004998147487640381, 0.0020859427750110626, -0.014223510399460793, -0.004817402921617031, -0.024197673425078392, 0.0015031329821795225, -0.003443373367190361, 0.0010789359221234918, 0.009332334622740746, -0.025141973048448563, 0.028668342158198357, 0.04104751721024513, -0.010977481491863728, -0.008240488357841969, 0.034939080476760864, 0.019815534353256226, -0.0034673495683819056, 0.05143481120467186, -0.0026742855552583933, -0.0017143093282356858, 0.015698978677392006, 0.012010308913886547, 0.006650671828538179, -0.015344866551458836, 0.021158210933208466, 0.011449631303548813, 0.05792687088251114, 0.005809654947370291, 0.02040572091937065, -0.028978189453482628, -0.030571695417165756, 0.00033105810871347785, -0.022102508693933487, 0.0029564688447862864, 0.0028882285114377737, 0.02760600484907627, -0.022338584065437317, -0.005562514066696167, -0.02301730029284954, -0.008417544886469841, -0.03765394166111946, -0.003399109235033393, -0.015071905218064785, -0.014319416135549545, 0.03945401310920715, -0.011715215630829334, 0.0030911052599549294, 0.007369962055236101, 0.009789729490876198, -0.0033806657884269953, 0.018546631559729576, -0.04296562448143959, -0.007550707086920738, 0.005448165349662304, -0.018148254603147507, 0.026219064369797707, 0.005186269525438547, -0.026219064369797707, 0.007307254709303379]], "input": ["INSULATED:Batteries must be insulated to prevent short circuits when taken aboard the aircraft.", "ACCEPTABLE BATTERY TYPES:Only certain types of batteries are acceptable for transport in the aircraft hold, excluding lithium-based batteries.", "BATTERY TERMINALS:Battery terminals must be protected to prevent short circuits during transport.", "BATTERY-POWERED MOBILITY AIDS:Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.", "FLIGHT-APPROVED BATTERIES:Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.", "HAZARDOUS MATERIALS:Hazardous materials include items like dry ice that require special handling and declaration when traveling.", "DECLARATION FORM:A Declaration Form is required for traveling with hazardous materials on EL AL flights.", "DRY ICE:Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.", "FLIGHT AID:Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.", "EMAIL NOTIFICATION:An email notification to the airline is required to inform them about the intention to travel with a mobility aid.", "MOBILITY AID:"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-c0615a0fb999a106469cc5f6b2ac27b9 b/cache/text_embedding/embedding-c0615a0fb999a106469cc5f6b2ac27b9 deleted file mode 100644 index 3e1570fca74d7f4d02fb5c7314d071bdae68a0b6..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-c0615a0fb999a106469cc5f6b2ac27b9 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.012451854534447193, -0.010392675176262856, -0.006225927267223597, -0.0067313131876289845, -0.04008679836988449, 0.035118959844112396, -0.0030807049479335546, 0.007989401929080486, 0.02417251281440258, 0.07686170935630798, 0.0008756890310905874, -0.003698996501043439, 0.029140351340174675, 0.0023508521262556314, -0.043893326073884964, 0.004699015989899635, -0.024946721270680428, 0.04271050542593002, 0.014107801020145416, 0.014548669569194317, 0.00674744276329875, 0.023462820798158646, -0.029613478109240532, 0.016312144696712494, -0.04464602842926979, -0.043355681002140045, 0.058108653873205185, 0.018645523115992546, 0.03886096924543381, -0.010537838563323021, 0.06000116467475891, -0.02301120012998581, 0.06004417687654495, -0.08271127939224243, 0.02412950061261654, -0.0022702054120600224, -0.05970008298754692, 0.010742143727838993, 0.02645212598145008, -0.033936142921447754, -0.07776495069265366, 0.015709983184933662, 0.007204440888017416, 0.027914520353078842, -0.0334630161523819, 0.028258612379431725, 0.015559441410005093, 0.012398090213537216, -0.0699368417263031, 0.03488239645957947, -0.0134948855265975, -0.026839230209589005, 0.00661303149536252, 0.015150832012295723, 0.006043128203600645, 0.02673170156776905, 0.006473243702203035, 0.04083950072526932, 0.02896830439567566, -0.035097453743219376, 0.022667106240987778, -0.0005393250030465424, -0.010150734335184097, 0.06335607171058655, -0.03071027249097824, 0.04010830447077751, 0.020355233922600746, 0.021699346601963043, -0.019215427339076996, 0.004457075614482164, 0.03436625748872757, 0.023441314697265625, -0.034237224608659744, -0.018333688378334045, -0.014838997274637222, -0.009613090194761753, 0.018699288368225098, 0.024925215169787407, 0.015161584131419659, -0.058151666074991226, 0.00237773428671062, -0.005833446513861418, -0.015064808540046215, 0.05324834585189819, 0.0027581180911511183, -0.023118728771805763, -0.0727325975894928, -0.009489431045949459, -0.0009838900296017528, -0.023398304358124733, -0.02843065932393074, -0.003099522553384304, -0.0021653645671904087, 0.03215116262435913, 0.052173055708408356, -0.021731603890657425, 0.01733366958796978, -0.04830201342701912, -0.06159259378910065, 0.02044125646352768, -0.0051855845376849174, -0.0016868606908246875, -0.035355523228645325, 0.06877552717924118, 0.06658193469047546, -0.07303367555141449, -0.11045375466346741, 0.012688417918980122, 0.038731932640075684, -0.02245204895734787, -0.0967760682106018, 0.031140388920903206, 0.013193804770708084, 0.08378656953573227, -0.0013541929656639695, -0.008242095820605755, -0.03490390256047249, 0.013688437640666962, 0.03600069880485535, 0.008629200048744678, -0.03615123778581619, -0.014957279898226261, 0.020882125943899155, -0.06292594969272614, 0.0015632023569196463, -0.028194095939397812, -0.06266788393259048, -0.005061926320195198, -0.06167861446738243, 0.01620461605489254, 0.07690472155809402, -0.014806739054620266, 0.02161332219839096, -0.02754892222583294, -0.011580869555473328, 0.011258282698690891, 0.03303289785981178, 0.017441198229789734, 0.0113443061709404, -0.05849575996398926, 0.02187139168381691, 0.022236989811062813, 0.03389313071966171, -0.008199083618819714, -0.015742240473628044, -0.005451718810945749, 0.0026613420341163874, 0.041656721383333206, -0.0324307382106781, 0.039914753288030624, -0.0029839288908988237, 0.005094185005873442, -0.0298930536955595, 0.026194056496024132, -0.0031640399247407913, -0.0020336415618658066, -0.001114940969273448, 0.04950633645057678, -0.009414161555469036, 0.043355681002140045, -0.03202212601900101, 0.004725898150354624, -0.00853242352604866, 0.03668888285756111, 0.03778567910194397, -0.03219417482614517, -0.0034570563584566116, -0.014129306189715862, -0.028043555095791817, -0.051613904535770416, -0.033979155123233795, -0.03690394014120102, -0.020570291206240654, -0.0226886123418808, -0.013634673319756985, -0.02135525271296501, 0.026215562596917152, 0.03135544806718826, -0.0018831010675057769, -0.009053939022123814, 0.004053842276334763, 0.02354884333908558, -0.06189367547631264, -0.03610822930932045, -0.04524818807840347, 0.014548669569194317, 0.006774324923753738, -0.019258437678217888, -0.00981739442795515, -0.018903592601418495, 0.01321530994027853, -0.003698996501043439, -0.028774751350283623, 0.021699346601963043, -0.021452028304338455, 0.017140118405222893, -0.025957493111491203, -0.03899000212550163, -0.008344247937202454, 0.012215291149914265, 0.026817724108695984, -0.01705409400165081, -0.013344344682991505, 0.015011044219136238, -0.05995815247297287, -0.0034274859353899956, 0.02526930719614029, -0.02643061988055706, 0.005406018812209368, 0.010623862035572529, 0.033376991748809814, -0.01596805267035961, -0.007059276569634676, -0.017451951280236244, -0.060130197554826736, 0.023720890283584595, -0.004717833362519741, -0.0022782699670642614, 0.02047351561486721, 0.04212984815239906, 0.010844296775758266, -0.05742046982049942, -0.02959197200834751, -0.009978688322007656, -0.03230170160531998, 0.02473166212439537, -0.007134546991437674, -0.009984064847230911, -0.010027076117694378, -0.06997985392808914, -0.039979271590709686, 0.03948463872075081, -0.01587127521634102, -0.03378560021519661, -0.008177578449249268, -0.0077420854941010475, -0.017753032967448235, -0.06696904450654984, -0.016882048919796944, 0.0027769356966018677, 0.0018656275933608413, 0.04068896174430847, 0.0010195090435445309, 0.006075386889278889, 0.018817570060491562, -0.024538110941648483, -0.005978610832244158, 0.008059295825660229, 0.05410857871174812, 0.025742435827851295, 0.052130043506622314, -0.008199083618819714, -0.0058119408786296844, -0.012537878006696701, 0.04139865189790726, 0.005212466698139906, 0.034516800194978714, 0.001358225243166089, 0.03858139365911484, -0.01984984800219536, 0.005123755428940058, 0.0018642834620550275, -0.03918355703353882, -0.015806758776307106, -0.04739876836538315, 0.015032549388706684, 0.058065641671419144, 0.006865724455565214, 0.013613167218863964, 0.010317404754459858, -0.030796296894550323, 0.023398304358124733, -0.041377145797014236, -0.01962403580546379, -0.04146317020058632, -0.01025288738310337, -0.014677704311907291, -0.016322897747159004, 0.02987154759466648, -0.013731448911130428, -0.018710041418671608, -0.024925215169787407, 0.022860659286379814, -0.04804394394159317, -0.002583383349701762, -0.0324307382106781, 0.02759193256497383, -0.006516255438327789, 0.016666989773511887, 0.03333397954702377, 0.034022167325019836, 0.027419887483119965, 0.011537858285009861, 0.012312066741287708, 0.0033414626959711313, 0.012387337163090706, 0.03503293916583061, 0.0024247781839221716, 0.01621536910533905, 0.007838862016797066, -0.08271127939224243, -0.005607635714113712, -0.015398148447275162, 0.03772116079926491, -0.0006955779972486198, 0.027936026453971863, 0.013903495855629444, -0.0032796335872262716, 0.011720657348632812, 0.011376564390957355, 0.02612954005599022, 0.01278519444167614, -0.040215834975242615, -0.04524818807840347, -0.025505870580673218, -0.0021357941441237926, 0.04757081717252731, 0.05290425196290016, 0.012290560640394688, -0.01022062823176384, -0.004591486882418394, -0.014365870505571365, 0.03836633637547493, 0.009682983160018921, 0.03236621990799904, 0.005957104731351137, 0.016666989773511887, 0.03380710631608963, -0.02192515693604946, 0.007639933377504349, 0.0018871333450078964, -0.03157050535082817, 0.014537916518747807, -0.033936142921447754, -0.014150812290608883, -0.005747423507273197, 0.005865705199539661, 0.04886116459965706, -0.04696865379810333, 0.0013925001258030534, -0.019140155985951424, -0.05595807358622551, -0.03529100865125656, 0.012312066741287708, -0.03473185747861862, 0.023785408586263657, -0.011580869555473328, 0.006559267174452543, 0.02041975036263466, 0.07952842861413956, 0.010967954993247986, -0.0028226354625076056, -0.005346877966076136, 0.018968110904097557, -0.0511837899684906, -0.048474058508872986, 0.024043478071689606, -0.002337411046028137, 0.0018951980164274573, 0.0009865782922133803, -0.03012961708009243, -0.019774576649069786, 0.020559538155794144, 0.03972120210528374, -0.03815127909183502, -0.007725956384092569, -0.013032510876655579, -0.018537994474172592, -0.03825880587100983, -0.008467906154692173, 0.028903786092996597, 0.01932295598089695, -0.004884503316134214, -0.028882279992103577, 0.006102269049733877, -0.012623900547623634, -0.016613226383924484, -0.02615104429423809, -0.01376370806246996, -0.028301624581217766, 0.004908697213977575, -0.01494652684777975, 0.0056721530854702, 0.041076064109802246, 0.017441198229789734, 0.011570117436349392, -0.046753596514463425, -0.023957453668117523, 0.08025962114334106, 0.0221724733710289, -0.005881834775209427, -0.00837113056331873, 0.0008904742426238954, 0.008301236666738987, -0.010924942791461945, 0.0043065352365374565, 0.0298930536955595, 0.061850663274526596, -0.005470536183565855, -0.035957686603069305, 0.018365947529673576, -0.014957279898226261, 0.028516681864857674, 0.03490390256047249, -0.03608672320842743, -0.015731487423181534, 0.02729085274040699, -0.045635294169187546, 0.012269055470824242, 0.0008817375637590885, 0.0033172685652971268, -0.019183168187737465, 0.010774402879178524, 0.032215677201747894, 0.02078535035252571, -0.01352714467793703, 0.037936221808195114, 0.05165691673755646, 0.01106473058462143, 0.00034022837644442916, 0.06129151210188866, 0.0363662987947464, -0.014129306189715862, 0.0020255770068615675, -0.002354884520173073, 0.005083431955426931, 0.004497399087995291, -0.006215174216777086, -0.01177442166954279, -0.07445305585861206, 0.017806796357035637, -0.01321530994027853, 0.03292537108063698, 0.027677956968545914, -0.018269171938300133, -0.024215523153543472, -0.011140001006424427, -0.014365870505571365, -0.018978862091898918, -0.009930300526320934, -0.00398394837975502, 0.009457172825932503, 0.06800132244825363, 0.005629141349345446, -0.03073177859187126, -0.016000309959053993, -0.019484249874949455, 0.017451951280236244, 0.05178594961762428, -0.009812017902731895, -0.0038145901635289192, 0.015032549388706684, -0.02782849781215191, -0.000107024927274324, -0.03662436828017235, -0.010215251706540585, 0.009607713669538498, -0.0255918949842453, 0.03610822930932045, -0.047871895134449005, -0.0015054055256769061, 0.01447339914739132, 0.0036721143405884504, 0.030882319435477257, 0.01991436444222927, -0.014118553139269352, 0.030903825536370277, -0.0077420854941010475, -0.009424913674592972, -0.016623979434370995, -0.04395784065127373, -0.00992492400109768, 0.009446419775485992, -0.005661400035023689, 0.026796218007802963, 0.055269889533519745, -0.0036425439175218344, -0.030796296894550323, 0.00046539882896468043, -0.019505754113197327, 0.014365870505571365, 0.00710228830575943, -0.02410799451172352, -0.010048582218587399, -0.007768968120217323, 0.010967954993247986, 0.06507652997970581, -0.048990197479724884, -0.028645716607570648, -0.023527339100837708, -0.017720773816108704, -0.01903262734413147, -6.379282240231987e-06, -0.007274334784597158, -0.01992511749267578, -0.0028468293603509665, -0.03630178049206734, 0.009586207568645477, 0.055011820048093796, -0.028624210506677628, 0.011688399128615856, -0.0352264903485775, 0.03380710631608963, 0.00017876691708806902, 0.030344674363732338, -0.0011633289977908134, 0.021118689328432083, -0.01491426769644022, -2.3521961338701658e-05, -0.0026532772462815046, -0.024581121280789375, -0.02271011844277382, 0.026366103440523148, -0.01392500102519989, -0.014688457362353802, -0.03378560021519661, -0.014634693041443825, 0.020828360691666603, -0.015699230134487152, -0.017000330612063408, -0.021505793556571007, 0.004457075614482164, -0.02666718326508999, -0.005285048857331276, -0.004029647912830114, 0.051527880132198334, 0.005013538058847189, -0.07767892628908157, -0.021527299657464027, -0.017753032967448235, 0.01306477002799511, -0.029097339138388634, -0.030215639621019363, 0.015021797269582748, 0.02354884333908558, -0.025398341938853264, 0.012043244205415249, 0.017548726871609688, -0.01987135410308838, -0.026903748512268066, -0.015000291168689728, -0.021817628294229507, 0.028602706268429756, -0.03524799644947052, 0.027699463069438934, 0.013387356884777546, -0.00992492400109768, -0.0011465275892987847, -0.011484093964099884, -0.023183245211839676, 0.007763591594994068, 0.04748479276895523, 0.03617274388670921, 0.016473438590765, -0.02049502171576023, 0.009860406629741192, 0.025441354140639305, -0.04640950262546539, 0.0017285281792283058, -0.01151635218411684, 0.0034893150441348553, -0.025763940066099167, -0.051011741161346436, -0.0033199568279087543, -0.039033014327287674, 0.03131243586540222, -0.05234510079026222, 0.02387143112719059, -0.006102269049733877, -0.039635177701711655, -0.0026384920347481966, 0.006811960134655237, 0.014666951261460781, -0.003742008004337549, -0.017258400097489357, -0.0018656275933608413, 0.033678073436021805, -0.025398341938853264, -0.02275312878191471, -0.0010383266489952803, 0.004556539934128523, 0.010441062971949577, -0.008564682677388191, -0.01205399725586176, -0.011183012276887894, 0.021774616092443466, 0.0018925098702311516, 0.027097299695014954, -0.04468904063105583, 0.0212907362729311, 0.043656762689352036, -0.010871178470551968, -0.011591622605919838, 0.01322606299072504, 0.00011248538066865876, 0.056431204080581665, -0.02789301425218582, 0.012365831062197685, -0.032237183302640915, 0.03043069876730442, 0.016021816059947014, -0.014086294919252396, -0.0030511345248669386, -0.0020175122190266848, -0.026860736310482025, 0.022968187928199768, -0.0073872399516403675, 0.01847347617149353, -0.01447339914739132, 0.01815089024603367, 0.025398341938853264, 0.023226257413625717, 0.03412969410419464, 0.0019207361619919538, -0.023118728771805763, -0.017785292118787766, -0.044990118592977524, -0.03888247534632683, -0.02671019546687603, 0.003424797672778368, -0.009570077992975712, 0.009053939022123814, 0.0005621748859994113, -0.04002228379249573, -0.03675340116024017, 0.004922138527035713, -0.0027581180911511183, -0.01107548363506794, 0.0031129636336117983, -0.006962500512599945, -0.03012961708009243, 0.035097453743219376, 0.024796180427074432, 0.01758098602294922, -0.030753284692764282, -0.009037809446454048, 0.04148467630147934, -0.010123852640390396, -0.0008454465423710644, 0.009258244186639786, 0.05350641533732414, -0.00026142981369048357, 0.005693658720701933, -0.0017809484852477908, 0.033979155123233795, -0.005231284536421299, 0.005021602846682072, 0.02158106304705143, 0.0005443653790280223, 0.017742279917001724, 0.03716200962662697, -0.015333631075918674, -0.014140059240162373, -0.01421532966196537, 0.013677684590220451, -0.009064692072570324, -0.00794639065861702, 0.014968032017350197, 0.02382841892540455, 0.020075658336281776, -0.01596805267035961, 0.003763513872399926, -0.002266173018142581, -0.014140059240162373, 0.004145241808146238, 0.04950633645057678, 0.002892529359087348, -0.004381805658340454, 0.0010242133866995573, -0.01846272312104702, -0.03524799644947052, 0.0076883211731910706, 0.004013518802821636, -0.0024328429717570543, 0.007500145584344864, -0.004908697213977575, -0.04055992513895035, 0.028344636783003807, 0.00038643222069367766, 0.0516999289393425, -0.030280157923698425, 0.009414161555469036, -0.004451699089258909, 0.013742201961576939, -0.014602433890104294, -0.018968110904097557, 0.004906008951365948, 0.018365947529673576, 0.01986060105264187, 0.035613592714071274, -0.004690951202064753, 0.049635373055934906, -0.004532346036285162, -0.015097066760063171, 0.006570019759237766, 0.010484074242413044, 0.009699112735688686, -0.007548533380031586, -0.01492502074688673, -0.007129170466214418, -0.005309242755174637, 0.029742512851953506, -0.03587166219949722, -0.09006626158952713, -0.03830181807279587, -0.012204538099467754, 0.02361336164176464, 0.02529081329703331, 0.012451854534447193, -0.025441354140639305, -0.025742435827851295, 0.0147637277841568, -0.00796789675951004, -0.00950018409639597, -0.0003511492977850139, 0.01615085080265999, -0.01903262734413147, -0.02187139168381691, 0.04271050542593002, 0.027763979509472847, -0.043334174901247025, -0.001801110222004354, 0.02954895980656147, -0.020365986973047256, -0.01760249212384224, -0.010226004756987095, -0.00440062303096056, -0.02836614102125168, -0.011656139977276325, 0.012602395378053188, 0.022882165387272835, -0.007129170466214418, -0.032258689403533936, 0.012258302420377731, -0.0001594452915014699, 0.0036425439175218344, -0.015032549388706684, 0.017172375693917274, -0.017215387895703316, 0.004139865282922983, 0.016570214182138443, -0.03329096734523773, 0.006145280320197344, -0.02326926961541176, 0.032860852777957916, 0.011548611335456371, 0.006182915531098843, -0.02843065932393074, -0.0034866267815232277, -0.010269016027450562, 0.017172375693917274, 0.004556539934128523, -0.017505716532468796, -0.06684000790119171, 0.02361336164176464, -0.015021797269582748, -0.027699463069438934, 0.0008252848056145012, -0.0161616038531065, 0.012709924019873142, 0.024301547557115555, -0.01107548363506794, -0.019989635795354843, -0.028753245249390602, -0.034258730709552765, -0.0368824377655983, -0.016322897747159004, 0.00882275216281414, 0.000384080020012334, 0.03640930727124214, -0.00354576762765646, -0.004333417396992445, -0.020086411386728287, 0.0065270084887743, 0.054968807846307755, 0.012666912749409676, -0.02127998322248459, 0.019473496824502945, -0.005419460125267506, -0.041635215282440186, -0.0026828476693481207, -0.015011044219136238, -0.03817278519272804, 0.0051855845376849174, -0.009580831043422222, -0.02212946116924286, -0.027699463069438934, 0.009441043250262737, 0.015000291168689728, 0.02759193256497383, -0.007559286430478096, 0.007806603331118822, 0.0046076164580881596, -0.039936259388923645, -0.019989635795354843, 0.0003582058707252145, 0.004282341338694096, -0.038129772990942, 0.020301468670368195, 0.0018844451988115907, 0.03985023498535156, 0.016645483672618866, -0.012731430120766163, 0.02812957763671875, 0.048732127994298935, 0.030538227409124374, -0.03694695234298706, -0.029462937265634537, -0.0004885847447440028, -0.016634730622172356, -0.01596805267035961, 0.010833543725311756, 0.012193785049021244, 0.03262428939342499, 0.0029328525997698307, -0.017107859253883362, -0.01706484705209732, -0.0071883113123476505, 0.028817763552069664, -0.03012961708009243, 0.04397934675216675, -0.006139904260635376, 0.029398420825600624, -0.005357631016522646, 0.023419808596372604, -0.0036721143405884504, -0.04126961901783943, 0.0010121164377778769, -0.03412969410419464, -0.01677451841533184, -0.018817570060491562, 0.018118631094694138, 0.018000349402427673, -0.021193958818912506, -0.023742396384477615, 0.028237106278538704, -0.028065061196684837, 0.035377029329538345, 0.02131224237382412, 0.033936142921447754, 0.04997946321964264, -0.01025288738310337, -0.0425814725458622, -0.003053822787478566, -0.0226886123418808, 0.016925059258937836, -0.007462510373443365, -0.010403427295386791, -0.008941033855080605, 0.0448610857129097, -0.00992492400109768, -0.018097124993801117, -0.024280041456222534, 0.005306554492563009, 0.025355331599712372, -0.04329116269946098, 0.01879606395959854, 0.0073334756307303905, 0.023226257413625717, -0.009580831043422222, -0.01648419164121151, -0.024667145684361458, -0.023763902485370636, 0.012957240454852581, 0.0318070687353611, -0.030839307233691216, 0.0002461405238136649, 0.020914385095238686, -0.02498973160982132, -0.007473263423889875, 0.045635294169187546, 0.007360357791185379, -0.03888247534632683, -0.009855030104517937, -0.04071046784520149, -0.008774363435804844, -0.014709962531924248, 0.016258379444479942, 0.031376954168081284, 0.025656411424279213, 0.004228576552122831, 0.013172298669815063, 0.06727012246847153, 0.006408726330846548, -0.025656411424279213, -0.024215523153543472, -0.01846272312104702, 0.041914790868759155, 0.04142015799880028, -0.004067283123731613, 0.012881970033049583, 0.0100754639133811, 0.03772116079926491, -0.027613438665866852, 0.023419808596372604, -0.006161409895867109, -0.045893363654613495, 0.014000271447002888, -0.04438795894384384, 0.0221724733710289, -0.024624133482575417, 0.006086139474064112, -0.014290600083768368, 0.00767756812274456, -0.018312184140086174, -0.019107896834611893, -0.029484443366527557, -0.023720890283584595, -0.010134605690836906, 0.036258768290281296, 0.003430174198001623, -0.03494691476225853, -0.01352714467793703, 0.02161332219839096, 0.04511915519833565, -0.002642524428665638, -0.03322645276784897, 0.046452514827251434, 0.033979155123233795, 0.0029409173876047134, 0.03526950255036354, -0.03780718520283699, -0.03894699364900589, -0.010290522128343582, -0.010618485510349274, 0.013172298669815063, -0.011580869555473328, 0.00854317657649517, -0.019484249874949455, -0.029785525053739548, -0.011978726834058762, 0.040796492248773575, 0.02016168087720871, 0.011462587863206863, 0.009709865786135197, 0.011215271428227425, -0.025742435827851295, -0.017989596351981163, -0.004500087350606918, -0.033075910061597824, 0.03830181807279587, 0.034022167325019836, 0.001889821607619524, 0.021129442378878593, -0.025656411424279213, 0.000959024007897824, 0.026860736310482025, 0.028839269652962685, 0.015322878025472164, 0.02104341983795166, 0.014591680839657784, -0.005833446513861418, 0.006811960134655237, -0.019505754113197327, 0.04683961719274521, -0.019742319360375404, 0.025742435827851295, -0.044775061309337616, -0.009059315547347069, -0.009053939022123814, 0.03785019740462303, 0.036774907261133194, 0.03757062181830406, -0.043033093214035034, 0.04696865379810333, 0.02840915322303772, -0.027118805795907974, 0.015516430139541626, 0.01650569587945938, -0.016989577561616898, -0.009838900528848171, -0.019527260214090347, 0.056689273566007614, -0.004341482184827328, 0.03546305373311043, 0.03490390256047249, 0.004763533361256123, 0.0004149946034885943, 0.0037527610547840595, -0.010446439497172832, 0.022000426426529884, 0.0130540169775486, 0.007285087835043669, 0.028022048994898796, -0.010575474239885807, -0.0003299795207567513, 0.027806991711258888, -0.018258418887853622, -0.016882048919796944, -0.004043089225888252, 0.02050577476620674, 0.01733366958796978, -0.00234681973233819, 0.01106473058462143, 0.008634576573967934, 0.02389293722808361, 0.021430524066090584, -0.01898961514234543, 0.017677761614322662, -0.047914907336235046, 0.03529100865125656, -0.0034516798332333565, -0.015699230134487152, -0.01733366958796978, 0.006785077974200249, 0.023140234872698784, 0.03202212601900101, -0.011559364385902882, 0.02191440388560295, -0.005478600971400738, 0.006742066238075495, 0.026301585137844086, -0.018978862091898918, 0.033957649022340775, -0.008279730565845966, -0.02759193256497383, 0.029161855578422546, -0.06408726423978806, -0.023140234872698784, 0.015140078961849213, -0.025097262114286423, 0.0319145992398262, 0.014602433890104294, 0.022796140983700752, -0.0016962694935500622, 0.009795889258384705, -0.0051130023784935474, -0.019806835800409317, 0.03896849974989891, 0.013849731534719467, 0.02987154759466648, 0.03234471380710602, 0.020656315609812737, 0.05350641533732414, 0.019462743774056435, 0.025742435827851295, -0.0036855554208159447, -0.018559500575065613, 0.004876438528299332, 0.013688437640666962, -0.014032530598342419, -0.033678073436021805, -0.006440985016524792, 0.01729065738618374, 0.03782869130373001, -0.006344208959490061, 0.019667048007249832, 0.04972139373421669, -0.003285009879618883, -0.013075522147119045, -0.012860464863479137, 0.006446361541748047, -0.023398304358124733, 0.009156092070043087, 0.0015107820509001613, -0.00964534841477871, -0.019258437678217888, -0.017731526866555214, -0.004155994858592749, -0.03098984807729721, 0.007527027744799852, -0.007080782670527697, 0.001668043085373938, -0.002014823956415057, 0.05290425196290016, -0.023505832999944687, -0.025075756013393402, -0.008881893008947372, 0.022925175726413727, 0.003881795797497034, -0.012645406648516655, -0.024215523153543472, 0.028194095939397812, 0.022236989811062813, -0.006489373277872801, -0.003631790867075324, -0.025140272453427315, -0.02100040763616562, -0.013312086462974548, 0.023656373843550682, 0.0010101002408191562, 0.003631790867075324, 0.043312668800354004, 0.0195810254663229, 0.005736670456826687, -0.023935947567224503, -0.026344597339630127, 0.008500165306031704, -0.004672133829444647, 0.036495331674814224, 0.005634517874568701, 0.016892800107598305, -0.0008414141484536231, 0.011677646078169346, -0.0040242718532681465, -0.009650724940001965, 0.0466245599091053, -0.010908814147114754, 0.030516721308231354, -0.04688262939453125, 0.016129344701766968, 0.0048065450973808765, 0.014398128725588322, -0.0027406446170061827, 0.03260278329253197, -0.0047447155229747295, 0.021484287455677986, 0.02273162454366684, -0.023097222670912743, -0.003470497438684106, 0.009462549351155758, 0.03329096734523773, 0.014312105253338814, -0.04688262939453125, 0.004293093923479319, 0.016548708081245422, 0.007419498637318611, 0.04228039085865021, -0.0036049087066203356, 0.03288235887885094, -0.021215464919805527, -0.01930144988000393, -0.024624133482575417, 0.004736651200801134, 0.010295898653566837, -0.0006374451913870871, 0.002442251658067107, 0.010677626356482506, 0.030215639621019363, -0.018882086500525475, -0.02473166212439537, -0.013193804770708084, -0.0060807629488408566, -0.0002839436929207295, 0.0005447014118544757, 0.018290678039193153, 0.017505716532468796, -0.02789301425218582, 0.015763746574521065, -0.0030350051820278168, 0.030903825536370277, 0.02384992502629757, -0.004177500493824482, -0.01873154565691948, -0.039377108216285706, -0.02361336164176464, 0.027677956968545914, 0.07225946336984634, 0.017161622643470764, -0.013989518396556377, 0.029398420825600624, 0.0494203120470047, -0.021796122193336487, 0.0004633826611097902, 0.02126923017203808, -0.010005570948123932, 0.04152768850326538, -0.035377029329538345, 0.022280002012848854, -0.013430368155241013, 0.006897983141243458, -0.022538071498274803, 0.0178713146597147, -0.0043898699805140495, -0.010102346539497375, 0.020118670538067818, -0.006360338535159826, 0.026839230209589005, -0.03387162461876869, 0.0134948855265975, -0.017172375693917274, -0.0029839288908988237, -0.013699190691113472, -0.03808676078915596, 0.010123852640390396, 0.002887152833864093, 0.0363662987947464, 0.01347337942570448, 0.027742473408579826, -0.014548669569194317, -0.013688437640666962, -0.006010869517922401, -0.009494807571172714, 0.021247724071145058, 0.003631790867075324, 0.016247626394033432, 0.038817957043647766, 0.017957337200641632, -0.0051318202167749405, 0.0023575725499540567, 0.0017379369819536805, 0.032796334475278854, 0.03505444526672363, -0.03324795886874199, 0.0029194115195423365, 0.02815108373761177, -0.021699346601963043, 0.036796413362026215, 0.007521651219576597, -0.039312589913606644, 0.0011539201950654387, 0.007510898634791374, -0.0035592089407145977, -0.023441314697265625, -0.024538110941648483, -0.005250101909041405, 0.039076026529073715, 0.031979113817214966, -0.0038656664546579123, 0.003975883591920137, -0.017129365354776382, 0.0003928167570848018, -0.007618427276611328, 0.000663991377223283, 0.010199123062193394, 0.021258477121591568, -0.0014234146801754832, -0.008919527754187584, -0.03068876825273037, -0.0076291803270578384, -0.010532462038099766, 0.018021855503320694, 0.01418307051062584, -0.03473185747861862, 0.018129384145140648, -0.02215096727013588, 0.008962539955973625, -0.016011063009500504, -0.003978571854531765, 0.012720677070319653, 0.030903825536370277, 0.0196347888559103, -0.026022009551525116, -0.013129287399351597, 0.011269035749137402, 0.020591797307133675, 0.024624133482575417, 0.02301120012998581, -0.0008548552868887782, -0.0025793511886149645, -0.015699230134487152, -0.0007258205441758037, 0.012699170969426632, -0.009984064847230911, -0.05234510079026222, 0.007682944647967815, 0.01106473058462143, 0.01208625640720129, -0.01992511749267578, -0.004435569979250431, 0.036516837775707245, -0.026366103440523148, -6.085257609811379e-06, 0.00796789675951004, -0.018054114654660225, 0.02240903675556183, -0.011118494905531406, -0.006849595345556736, -0.01959177851676941, 0.013806719332933426, -0.01562395878136158, 0.024645639583468437, 0.02980702929198742, 0.017548726871609688, -0.02132299356162548, 0.019269190728664398, -0.007973273284733295, -0.012279808521270752, -0.030194133520126343, 0.02866722270846367, -0.015398148447275162, -0.002110256114974618, 0.025462860241532326, 0.001327982754446566, 0.0295274555683136, 0.043076105415821075, -0.017430445179343224, -0.020247705280780792, 0.02335529215633869, -0.005978610832244158, 0.026022009551525116, -0.02212946116924286, 0.019656294956803322, 0.008381882682442665, -0.011473340913653374, 0.019516507163643837, 0.009446419775485992, -0.02363486774265766, 0.027398381382226944, -0.006397973746061325, -0.031957607716321945, -0.012215291149914265, 0.0075861685909330845, -0.014602433890104294, -0.022925175726413727, 0.02533382549881935, 0.001041014795191586, -0.004938268102705479, 0.04397934675216675, -0.007064653094857931, 0.0522160679101944, 0.012118514627218246, -0.024538110941648483, -0.009849653579294682, -0.05363544821739197, 0.01594654656946659, 0.009134585969150066, -0.006688301917165518, 0.023118728771805763, -0.03445228189229965, -0.012279808521270752, 0.03376409783959389, 0.0016599784139543772, -0.005940975621342659, 0.0031344695016741753, -0.02022619917988777, -0.00673668971285224, 0.015236854553222656, -0.028753245249390602, 0.012441101484000683, 0.022796140983700752, -0.032839346677064896, -0.012408843263983727, -0.00048388034338131547, -0.00882275216281414, -0.009693736210465431, 0.029484443366527557, -0.010914190672338009, -0.013709943741559982, -0.0030914577655494213, -0.00838725920766592, -0.027742473408579826, -0.048990197479724884, 0.011967973783612251, -0.004970526788383722, 0.033699579536914825, 0.0007291808142326772, 0.03430173918604851, -0.0023347227834165096, 0.020387493073940277, -0.018935851752758026, -0.002825323725119233, -0.01705409400165081, 0.005699035245925188, 0.021107936277985573, 0.01095182541757822, -0.0066237845458090305, -0.008855010382831097, -0.00018162315245717764, 0.02163482829928398, 0.018925098702311516, -0.027075793594121933, -0.007817355915904045, -0.0028065061196684837, -0.003505444386973977, -0.0244520865380764, 0.03838784247636795, 0.011871198192238808, 0.013677684590220451, 0.012484113685786724, 0.0036936199758201838, 0.023419808596372604, -0.006742066238075495, -0.005489354021847248, 0.014279847033321857, -0.029118845239281654, -0.0130540169775486, -0.01790357381105423, -0.011709904298186302, -0.005881834775209427, -0.0341942124068737, -0.005432900972664356, 0.0042339530773460865, -0.004795792046934366, 0.009898041374981403, 0.020269211381673813, -0.02959197200834751, 0.026559654623270035, -0.016355156898498535, -0.006489373277872801, 0.01205399725586176, -0.002959734760224819, -0.007344228681176901, -0.004911385476589203, 0.048172976821660995, 0.004930203314870596, -0.0009133241837844253, 0.015344384126365185, -0.014279847033321857, -0.03486089035868645, 0.02359185554087162, -0.008602317422628403, 0.014559422619640827, -0.013860483653843403, -0.007914132438600063, -0.01905413344502449, -0.03845236077904701, 0.013097028248012066, -0.05311930924654007, -0.0010867146775126457, -0.03892548754811287, 0.02020469307899475, -0.004427505191415548, 0.01206475030630827, 0.01490351464599371, -0.004728586412966251, -0.027957532554864883, 0.008408765308558941, -0.05630216747522354, 0.014666951261460781, 0.0004126424028072506, 0.005720541346818209, 0.03135544806718826, 0.004467828664928675, -0.03015112318098545, -0.06292594969272614, 0.03124791756272316, 0.009467925876379013, 0.0019503067014738917, 0.001033622189424932, -0.015290618874132633, -0.030301664024591446, -0.023247763514518738, 0.030516721308231354, 0.019430484622716904, -0.006962500512599945, 0.031699538230895996, 0.0013481444912031293, 0.01421532966196537, 0.024839190766215324, 0.0022406349889934063, -0.0022473554126918316, -0.019753072410821915, -0.004217823967337608, 0.022301508113741875, -0.009957182221114635, -0.030000582337379456, -0.0001119813387049362, 0.01010772306472063, 0.03660286217927933, -0.0298930536955595, -0.0024919838178902864, -0.0027204828802496195, -0.01207550335675478, -0.007661439012736082, -0.009457172825932503, -0.01066149678081274, 0.021419771015644073, 0.0007553910254500806, 0.031678035855293274, 0.02531231939792633, -0.009462549351155758, -0.028495175763964653, 0.0021304176189005375, -0.007596921641379595, -0.0073872399516403675, -0.013828225433826447, 0.005024291109293699, 0.008887269534170628, -0.009634595364332199, -0.02071007899940014, -0.004043089225888252, 0.026559654623270035, -0.02410799451172352, 0.008967915549874306, -0.014559422619640827, 0.0062796915881335735, 0.010887308046221733, 0.016333650797605515, -0.018860580399632454, -0.03206513822078705, 0.10030302405357361, -0.021699346601963043, -0.0008669522940181196, 0.010392675176262856, -0.010199123062193394, 0.0066345371305942535, 0.010613108985126019, 0.01847347617149353, -0.0012137332232668996, -0.01491426769644022, -0.026366103440523148, -0.012473360635340214, -0.017473457381129265, -0.015441159717738628, 0.007752838544547558, -0.010414180345833302, -0.020548785105347633, -0.008559306152164936, 0.02417251281440258, 0.010505580343306065, 0.005806564353406429, -0.00745713384822011, -0.027441393584012985, 0.013709943741559982, 0.028194095939397812, 0.018925098702311516, 0.02836614102125168, 0.027333863079547882, -0.008451776579022408, -0.022064944729208946, 0.026645679026842117, -0.005828069988638163, 0.016290638595819473, -0.023462820798158646, 0.01874229870736599, -0.04830201342701912, 0.013591662049293518, 0.04400085285305977, -0.0014489528257399797, 0.018247665837407112, 0.02326926961541176, -0.02245204895734787, -0.002051115036010742, -0.0076291803270578384, 0.02126923017203808, 0.009166844189167023, 0.009000174701213837, -0.052130043506622314, -0.005639894399791956, -0.01901112124323845, 0.02051652781665325, -0.035957686603069305, 0.0009865782922133803, 0.013161545619368553, -0.021161701530218124, 0.007887249812483788, 0.009564701467752457, -0.027118805795907974, -0.012150773778557777, -0.024882202968001366, 0.03759212791919708, -0.026903748512268066, 0.022344520315527916, 0.027462897822260857, 0.0013179018860682845], [0.0052826907485723495, 0.009688541293144226, 0.01691976562142372, -0.046505000442266464, -0.043495599180459976, 0.005872663576155901, 0.01752597652375698, 0.0013592374743893743, 0.010457130149006844, 0.04542247951030731, 0.008227141574025154, -0.010408416390419006, -0.012070082128047943, -0.02972596138715744, -0.02994246408343315, 0.011777802370488644, -0.05797969549894333, 0.0403129942715168, 0.021282315254211426, -0.007220399100333452, 0.024984529241919518, 0.03351477533578873, 0.0062623703852295876, 0.03277866542339325, -0.0193229578435421, 0.022667940706014633, -0.009520751424133778, -0.02160707116127014, -0.002825373550876975, -0.013185076415538788, 0.0626128762960434, -0.026521706953644753, 0.053866125643253326, 0.00012601193157024682, 0.035917967557907104, -0.02078435756266117, -0.007307000458240509, -0.041395511478185654, -0.0014627532800659537, -0.003645381424576044, -0.06577382981777191, 0.02587219513952732, -0.014689777977764606, -0.010890137404203415, -0.02914140187203884, 0.10184334963560104, 0.020621979609131813, -0.013011873699724674, 0.001713085686787963, -0.005818537436425686, -0.02548248879611492, -0.011377270333468914, -0.01749350130558014, -0.022029254585504532, 0.03238895535469055, 0.04659160226583481, -0.001393742742948234, 0.02258133888244629, 0.028448589146137238, 0.00046142356586642563, 0.0018240439239889383, -0.00805393885821104, 0.020308049395680428, 0.05390942841768265, -0.05438573658466339, 0.014614000916481018, 0.023533955216407776, 0.03667573258280754, -0.05408262833952904, -0.0520474947988987, 0.0015425890451297164, -0.01447327435016632, -0.03435914218425751, -0.04096250608563423, 0.003967430908232927, -0.017623402178287506, 0.05256710574030876, 0.05027216300368309, -0.024962879717350006, -0.010251451283693314, 0.009607352316379547, 0.008914540521800518, -0.02561238966882229, 0.01894407533109188, 0.007225811947137117, 0.00037380721187219024, -0.026218600571155548, -0.01293609756976366, -0.028145484626293182, 0.014213469810783863, -0.005569558124989271, 0.018630145117640495, -0.001917411107569933, 0.07820114493370056, 0.04685140401124954, -0.028426939621567726, -0.02667325921356678, -0.026803160086274147, -0.028838295489549637, 0.03210750222206116, 0.010256864130496979, -0.020806007087230682, 0.011344795115292072, 0.020697755739092827, 0.04828032851219177, -0.09075836092233658, -0.007371951825916767, 0.0246597733348608, 0.006478874012827873, -0.03769329935312271, -0.10885807126760483, -0.001598068163730204, -0.028794994577765465, 0.05958182364702225, 0.00752891693264246, -0.0193229578435421, 0.04485957324504852, -0.015544967725872993, 0.005574970971792936, -0.012135033495724201, -0.02507113106548786, 0.008974079042673111, 0.017157919704914093, -0.054688841104507446, -0.004016144201159477, -0.02543918788433075, -0.043863654136657715, -0.022949393838644028, -0.0700606033205986, -0.005975502543151379, 0.018695097416639328, -0.03011566773056984, 0.03866756334900856, -0.07772483676671982, -0.061616960912942886, 0.0032881502993404865, 0.05369292199611664, 0.020925084128975868, 0.0005727200186811388, -0.03202090039849281, 0.044686369597911835, -0.0006045189802534878, 0.008768401108682156, -0.015393414534628391, -0.056507471948862076, -0.029228001832962036, -0.016573360189795494, 0.019907517358660698, 0.012643817812204361, -0.025179382413625717, 0.013001048937439919, 0.02810218371450901, 0.015090309083461761, -0.023663856089115143, 0.011723676696419716, 0.04089755192399025, -0.024789676070213318, 0.01808888651430607, 0.011637074872851372, 0.029466155916452408, -0.02340405248105526, 0.021477170288562775, 0.0520474947988987, -0.008898302912712097, 0.04594209045171738, -0.01788320764899254, 0.001970183802768588, 0.04373375326395035, -0.025547439232468605, -0.04802052676677704, -0.016162002459168434, 0.0052935159765183926, -0.02953110821545124, -0.008124302141368389, -0.027322769165039062, -0.03310341760516167, -0.00023121920821722597, -0.006830692291259766, 0.01993999257683754, -0.015469190664589405, 0.00376445846632123, 0.020015768706798553, -0.028989847749471664, -0.05022886395454407, -0.02626190148293972, 0.022689590230584145, -0.05144128575921059, 0.006792804226279259, -0.013509832322597504, -0.005612859036773443, 0.0062082442454993725, 0.019377082586288452, -0.014408322982490063, 0.04871333763003349, -0.027192868292331696, 0.06486451625823975, -0.03362302854657173, -0.021953478455543518, -0.005926789250224829, -0.003315213369205594, -0.007047196384519339, -0.020686930045485497, -0.01556661818176508, 0.0493195466697216, -0.027972280979156494, -0.027993932366371155, -0.006652076728641987, 0.004741431679576635, 0.03808300569653511, 0.04334404692053795, 0.02931460365653038, 0.01734194904565811, -0.005104075185954571, -0.005926789250224829, -0.053433120250701904, 0.0005284043727442622, -0.007290762849152088, 0.037368543446063995, -0.02810218371450901, 0.029357904568314552, 0.014386672526597977, -0.019658537581562996, 0.018792523071169853, -0.022711239755153656, -0.01383458822965622, 0.042066674679517746, 0.03910057246685028, 0.016995541751384735, -0.008173015899956226, -0.05473214015364647, -0.02994246408343315, 0.027993932366371155, -0.0008524833829142153, 0.0061487057246267796, 0.005409886594861746, -0.004267829470336437, -0.06308918446302414, -0.043495599180459976, -0.003244849620386958, -0.0049065155908465385, 0.039403676986694336, 0.025980446487665176, -0.027171216905117035, -0.014787204563617706, -0.0035371296107769012, 0.020210621878504753, -0.007204161491245031, 0.007198748644441366, 0.04542247951030731, 0.005780649371445179, 0.005915964022278786, 0.0036020807456225157, 0.0069497693330049515, -0.0720091387629509, 0.03842940926551819, 0.004441032651811838, -0.0008606023038737476, 0.031024983152747154, 0.08725100010633469, -0.04340899735689163, 0.012708768248558044, -0.0012286585988476872, -0.018608495593070984, 0.010825186036527157, -0.04091920331120491, -0.0038970669265836477, -0.0010398944141343236, -0.008670974522829056, 0.008486946113407612, 0.020286398008465767, -0.08742420375347137, 0.025006180629134178, 0.005726523697376251, -0.006668314803391695, -0.01610787771642208, 0.03678398206830025, -0.020004944875836372, -0.01181027851998806, -0.014018615707755089, 0.03280031308531761, -0.007058021612465382, -0.008113477379083633, 0.06988739967346191, -0.03074352815747261, 0.016595009714365005, 0.006727853324264288, 3.0297835110104643e-05, -0.019073978066444397, -0.028859946876764297, 0.06993070244789124, -0.010516668669879436, -0.0189332515001297, -0.01911727897822857, 0.0010716933757066727, 0.03894902020692825, 0.03643757849931717, 0.03154459223151207, 0.00422182260081172, 0.008367869071662426, 0.0675058588385582, 0.003423465183004737, -0.008698036894202232, -0.020286398008465767, 0.025937145575881004, -0.0028524366207420826, 0.04741431400179863, 0.0005920023540966213, 0.00195529917255044, 0.013693860732018948, -0.028751693665981293, -0.009558639489114285, 0.03433749079704285, -0.024161815643310547, -0.06005813181400299, -0.0382562093436718, 0.01605375111103058, 0.03416428714990616, -0.0020310755353420973, 0.018251264467835426, -0.023945311084389687, 0.002104145474731922, 0.017417725175619125, -0.02100086212158203, -0.021661197766661644, 0.013542307540774345, -0.012026782147586346, 0.015306813642382622, 0.027214517816901207, -0.021639546379446983, -0.017569277435541153, -0.022906094789505005, -0.05503524839878082, 0.03912222385406494, 0.0016833164263516665, -0.044058509171009064, 0.04048619791865349, 0.025742292404174805, 0.03442409262061119, -0.04360384866595268, 0.008470708504319191, 0.0070417835377156734, 0.005480250343680382, -0.04085425287485123, -0.005512726027518511, -0.022949393838644028, 0.006527587305754423, -0.007009307853877544, 0.0203513503074646, 0.006072929594665766, 0.017201220616698265, -0.031024983152747154, 0.00703095830976963, 0.01536093931645155, 0.02483297698199749, -0.06941109150648117, -0.009407087229192257, 0.05434243381023407, 0.0016846696380525827, -0.045509081333875656, -0.0112040676176548, -0.03195594996213913, 0.007729182951152325, 0.0033449826296418905, 0.01604292541742325, -0.007696707267314196, 0.015231036581099033, -0.0016427220543846488, -0.03966348245739937, 0.013055174611508846, -0.02359890565276146, 0.01752597652375698, 0.009363786317408085, -0.04340899735689163, -0.04537918046116829, -0.025092782452702522, -0.026586657389998436, 0.0342508889734745, 0.027539273723959923, -0.026759861037135124, 0.013195902109146118, 0.03557156026363373, 0.0036156121641397476, 0.014678952284157276, -0.029661010950803757, 0.029574409127235413, 0.01584807224571705, -0.040616098791360855, -0.0006339499377645552, 0.015523317269980907, 0.051397982984781265, -0.02139056846499443, -0.0007022839272394776, 0.02181275002658367, -0.05603116378188133, -0.010408416390419006, 0.00844364520162344, 0.005888901185244322, 0.015804771333932877, -0.01406191661953926, -0.047154512256383896, 0.018640970811247826, -0.006570888217538595, -0.007301588077098131, 0.0042461794801056385, -0.03929542750120163, -0.05603116378188133, -0.016800688579678535, -0.007290762849152088, 0.06213656812906265, -0.037996403872966766, 0.02992081455886364, -0.05395272746682167, 0.015079484321177006, 0.023663856089115143, 0.028751693665981293, -0.0213797427713871, 0.0013741221046075225, 0.010240626521408558, 0.04819373041391373, -0.009634415619075298, 0.02853519096970558, 0.011853578500449657, 0.005980915389955044, 0.045725587755441666, -0.020308049395680428, 0.03301681950688362, 0.005910551641136408, -0.009504513815045357, -0.0206003300845623, -0.02442161925137043, -0.011637074872851372, 0.0070634339936077595, 0.020037420094013214, 0.04498947411775589, -0.05906221643090248, -0.02829703688621521, -0.004717074800282717, -0.019571935757994652, -0.029379555955529213, 0.006213657092303038, 0.006121642887592316, 0.0044166757725179195, 0.0035425422247499228, 0.027236169204115868, -0.04291103780269623, -0.006538412533700466, -0.01564239338040352, 0.030288871377706528, 0.03516020625829697, -0.03505195304751396, -0.023339102044701576, -0.00106966367457062, -0.03171779587864876, 0.027928980067372322, -0.05780649557709694, -0.0024397263769060373, 0.05135468393564224, -0.03663242980837822, 0.01933378167450428, -0.04849683493375778, 0.01016484946012497, 0.027755778282880783, 0.007669644430279732, 0.07603611052036285, 0.03139303997159004, 0.02034052461385727, -0.011853578500449657, 0.01140974648296833, -0.023035995662212372, -0.013152601197361946, 0.00029853833257220685, -0.010143199004232883, 0.028600141406059265, -0.03585301712155342, -0.032280705869197845, 0.02669490873813629, -0.03455399349331856, -0.02526598423719406, -0.07551649957895279, -0.018381165340542793, 0.004898396786302328, 0.039403676986694336, -0.04016144201159477, 0.0017780368216335773, 0.03624272346496582, 0.03362302854657173, 0.04910304397344589, 0.023923661559820175, -0.029639359563589096, -0.029552757740020752, 0.0010189206805080175, -0.002275995444506407, 0.016779039055109024, -0.007604693062603474, -0.009634415619075298, -0.051571186631917953, -0.022494737058877945, -0.04594209045171738, 0.03676233068108559, -0.01564239338040352, 0.032908566296100616, -0.015772296115756035, -0.012232460081577301, -0.035549912601709366, 0.062179870903491974, 0.013260853476822376, -0.023122597485780716, -0.020719407126307487, 0.015815597027540207, -0.02095756120979786, -0.03498700261116028, -0.009125632233917713, 0.030094018206000328, 0.007777896244078875, -0.014332546852529049, -0.04944945126771927, 0.03115488588809967, -0.01373716164380312, -0.004459976684302092, -0.017157919704914093, 0.021217364817857742, -0.00539906183257699, -0.015209386125206947, 0.002847024006769061, -0.025980446487665176, 0.02751762419939041, -0.01935543306171894, -0.035549912601709366, 0.006473461166024208, -0.04046454653143883, -0.021693672984838486, -0.03427254036068916, -0.02403191290795803, 0.034489043056964874, -0.015480016358196735, 0.033319924026727676, 0.006381447426974773, 0.005758998915553093, -0.01199430599808693, -0.002150152577087283, 0.025309285148978233, -0.029877513647079468, -0.01767752878367901, -0.0009573524002917111, 0.005867250729352236, -0.027777427807450294, -0.015328464098274708, 0.025201033800840378, -0.004711662419140339, 0.010933438315987587, 0.032064203172922134, 0.029271302744746208, -0.010338053107261658, -0.00985633209347725, 0.010754822753369808, -0.01955028623342514, 0.038819119334220886, -0.04464306682348251, 0.0005899726529605687, 0.018272913992404938, 0.006998483091592789, -0.011225718073546886, -0.01773165538907051, -0.012113383039832115, -0.015588267706334591, -0.019387908279895782, -0.029206352308392525, -0.006278607994318008, -0.028859946876764297, -0.030072366818785667, -0.012254110537469387, 0.02561238966882229, 0.027019664645195007, -0.016378507018089294, 0.013942839577794075, 0.014040266163647175, 0.00019942023209296167, -0.05451563745737076, -0.048150427639484406, 0.01910645328462124, -0.010603269562125206, 0.003012108150869608, 0.005921376869082451, -0.018857473507523537, -0.00437608128413558, 0.029877513647079468, 0.00272388756275177, 0.0031365978065878153, 0.0002922800194937736, 0.024378320202231407, 0.003883535508066416, -0.05105157941579819, 0.005688635166734457, -0.017948158085346222, -0.013986140489578247, 0.034077685326337814, -0.03284361585974693, 0.028210435062646866, -0.014516574330627918, 0.0197126641869545, 0.010500431060791016, -0.003339570015668869, 0.0033260383643209934, 0.026218600571155548, 0.008979491889476776, -0.016356855630874634, -0.0006589831900782883, 0.014982057735323906, -0.003750927047803998, 0.006484286393970251, 0.008319155313074589, 0.04037794470787048, 0.021509645506739616, -0.005266453139483929, -0.022137505933642387, -0.008643911220133305, -0.032237403094768524, -0.02405356429517269, -0.02931460365653038, -0.021682847291231155, 0.0021230897400528193, -0.014180993661284447, 0.05408262833952904, -0.003821290796622634, 0.024703074246644974, -0.024356668815016747, -0.010635745711624622, -0.008162190206348896, 0.021617896854877472, 0.006451811175793409, 0.03323332220315933, 0.03202090039849281, 0.03968513384461403, -0.019203880801796913, -0.024508221074938774, -0.047111209481954575, 0.027192868292331696, 0.004892983939498663, -0.016573360189795494, 0.016032101586461067, 0.042867738753557205, -0.02422676607966423, 0.00448433356359601, -0.03496535122394562, 0.01570734567940235, -0.013379930518567562, 0.02178027480840683, 0.03362302854657173, 0.00805393885821104, 0.0007956511690281332, 0.0011136410757899284, -0.0403129942715168, 0.012015956453979015, 0.002173156011849642, 0.028253735974431038, 0.007864497601985931, 0.005464012734591961, 0.02422676607966423, 0.03195594996213913, 0.012015956453979015, -0.04698130860924721, 0.06547072529792786, -0.021931827068328857, -0.005025592632591724, -0.016963066533207893, 0.021011685952544212, 0.007534329779446125, -0.001695494749583304, 0.009813031181693077, 0.043235793709754944, -0.031176535412669182, 0.011550473980605602, -0.007263700012117624, -0.010841423645615578, -0.0201564971357584, 0.007193336263298988, -0.011626250110566616, 0.013065999373793602, -0.027192868292331696, 0.04065939784049988, -0.026153650134801865, -0.017374424263834953, -0.009320485405623913, 0.018391991034150124, 0.02338240295648575, -0.014798029325902462, 0.002610222902148962, -0.036350976675748825, 0.026781510561704636, -0.016194477677345276, 0.01830538921058178, 0.010841423645615578, -0.013802112080156803, 0.0025763942394405603, 0.003694094717502594, 0.035896316170692444, -0.02688976190984249, -0.014603176154196262, -0.019691012799739838, -0.0444265641272068, 0.02669490873813629, 0.05529505014419556, 0.01609705202281475, -0.051181480288505554, -0.0035019477363675833, 0.02502783015370369, 0.01895490102469921, 0.010635745711624622, 0.0197126641869545, 0.01526351273059845, 0.00738277705386281, -0.01833786629140377, -0.020925084128975868, -0.008394931443035603, -0.017450200393795967, 0.02708461508154869, -0.023252500221133232, 0.008827939629554749, 0.05256710574030876, 0.02135809324681759, -0.05520844832062721, 0.04327909275889397, -0.01688729040324688, -0.037585046142339706, 0.0025168557185679674, -0.006776566617190838, 0.0004932225565426052, 0.005239390302449465, 7.459229527739808e-05, -0.0023598906118422747, 0.029617710039019585, 0.00549648841843009, 0.02624025195837021, 0.015447541140019894, 0.004819914232939482, 0.029401205480098724, -0.010614095255732536, 0.003139303997159004, 0.0034532344434410334, 0.006938944570720196, -0.02281949296593666, -0.014289245940744877, 0.0026832930743694305, -0.028838295489549637, 0.00105545565020293, -0.0003061497991438955, 0.01099297683686018, 0.033060118556022644, -0.029964115470647812, 0.02180192433297634, -0.023274149745702744, 0.004898396786302328, -0.020297223702073097, -0.0224081352353096, 0.011831928044557571, -0.02745267190039158, 0.018597669899463654, 0.029422856867313385, -0.01691976562142372, 0.018381165340542793, -0.0027387721929699183, 0.016205303370952606, -4.351217285147868e-05, -0.010218976065516472, -0.022927744314074516, -0.046331796795129776, -0.013152601197361946, 0.009228471666574478, -0.015534142032265663, -0.005420711822807789, -0.03706543892621994, -0.002206984907388687, 0.00646804878488183, -0.011821103282272816, 0.060361236333847046, 0.0017387955449521542, -0.011333970353007317, 0.0014938756357878447, -0.03691388666629791, 0.005523551255464554, -0.0023233555257320404, -0.009672303684055805, 0.005986327771097422, 0.0014871099265292287, -0.010348877869546413, -0.004251591861248016, -0.010310989804565907, 0.011853578500449657, -0.0028037233278155327, 0.013964490033686161, -0.02645675465464592, 0.0062082442454993725, 0.005959264934062958, -0.07040701061487198, -0.02604539878666401, -0.02972596138715744, 0.011139116249978542, -0.006538412533700466, -0.01752597652375698, -0.015447541140019894, 0.022299883887171745, 0.029163051396608353, 0.002761775627732277, 0.02013484574854374, 0.0444265641272068, 0.0053747049532830715, -0.020243098959326744, -0.019571935757994652, 0.04862673580646515, -0.03643757849931717, -0.01693059131503105, 0.006013391073793173, 0.01832704059779644, 0.043906956911087036, 0.040616098791360855, -0.0305270254611969, -0.009082331322133541, 0.03518185392022133, -0.010451717302203178, -0.0735679641366005, 0.03477049618959427, -0.028751693665981293, 0.00748020363971591, 0.021866876631975174, 0.05784979462623596, 0.012784545309841633, -0.028037231415510178, 0.012297411449253559, 0.02504948154091835, 0.022689590230584145, 0.006884818430989981, -0.004257004242390394, 0.08525916934013367, -0.00140050845220685, 0.016800688579678535, 0.003704919945448637, 0.0215745959430933, -0.01975596509873867, 0.035138554871082306, -0.0009248768328689039, 0.04901644214987755, -0.024573173373937607, -0.0013396168360486627, 0.001347735640592873, -0.04249968007206917, 0.024075213819742203, 0.00743149034678936, -0.03355807811021805, -0.05494864657521248, 0.021682847291231155, -0.013098475523293018, -0.021823575720191002, 0.028751693665981293, 0.004262417089194059, 0.007187923416495323, 0.00013878227036911994, 0.008421994745731354, -0.0005923406570218503, -0.01608622632920742, -0.051787689328193665, 0.013845412991940975, -0.04096250608563423, 0.0006948416121304035, -0.024551521986722946, 0.021542120724916458, -0.044469863176345825, 0.033276621252298355, 0.009623590856790543, -0.019268831238150597, -0.03310341760516167, 0.055251751095056534, -4.9897342250915244e-05, -0.011047102510929108, -0.030786829069256783, -0.014072742313146591, -0.015956323593854904, 0.006592538207769394, 0.011063340120017529, -0.007269112393260002, -0.007523504551500082, 0.003001282922923565, -0.011149941943585873, 0.013661384582519531, 3.9960159483598545e-05, -0.02565569058060646, 0.025330936536192894, 0.00916352029889822, 0.022927744314074516, 0.029682660475373268, -0.004700837191194296, -0.0019363551400601864, 0.03749844431877136, 0.005404474213719368, -0.0448162704706192, 0.01936625875532627, -0.02017814666032791, -0.01098215114325285, -0.011290669441223145, -0.035744763910770416, 0.013672210276126862, -0.010208150371909142, 0.03719533979892731, -0.023295801132917404, -0.006836105138063431, -0.030678577721118927, -0.007983574643731117, 0.005786062218248844, -0.03466224670410156, 0.01292527187615633, 0.006278607994318008, 0.012210809625685215, 0.013953665271401405, -0.008075589314103127, -0.03176109492778778, 0.03197760134935379, -0.027366070076823235, -0.052437201142311096, 0.025937145575881004, 0.0016075401799753308, -0.03011566773056984, 0.022278232499957085, 0.0303321722894907, -0.017049668356776237, 0.015176910907030106, 0.0034667658619582653, 0.018056411296129227, -0.04219657555222511, 0.004855095874518156, 0.02504948154091835, -0.010651983320713043, 0.011025452055037022, 0.01608622632920742, 0.019571935757994652, -0.004744137637317181, 0.05308671295642853, 0.02868674322962761, -0.0070147207006812096, -0.004836151842027903, 0.023685507476329803, -0.05901891365647316, 0.039165522903203964, 0.005104075185954571, 9.438209235668182e-05, 0.0017577395774424076, -0.03314672037959099, -0.03892736881971359, 0.05512184649705887, 0.006749503780156374, 0.026370152831077576, 0.011485522612929344, 0.01564239338040352, -0.010381353087723255, 0.02747432328760624, -0.011734501458704472, -0.008703449741005898, 0.011745327152311802, 0.0014965819427743554, -0.021022511646151543, -0.003621024778112769, -0.022538037970662117, -0.004733312875032425, 0.03433749079704285, 0.03923047333955765, -0.03256215900182724, 0.044275011867284775, 0.018251264467835426, -0.0019823622424155474, 0.008887478150427341, -0.012448963709175587, 0.019853390753269196, -0.022732891142368317, -0.0222132820636034, 0.006224481854587793, 0.04219657555222511, -0.01647593267261982, 0.04516267776489258, 0.02297104522585869, 0.005390942562371492, -0.004251591861248016, 0.0307218786329031, 0.02522268332540989, 0.006955182179808617, 0.01465730182826519, -0.013195902109146118, 0.0011988893384113908, 0.036329325288534164, 0.033731281757354736, -0.01219998486340046, -0.0008545131422579288, 0.00412439601495862, 0.0011041689431294799, 0.006689965259283781, 0.032237403094768524, 0.017645053565502167, 0.00791862327605486, -0.001618365291506052, 0.005537082906812429, 0.009022792801260948, -0.004800970200449228, -0.006457223556935787, 0.031479641795158386, -0.01854354329407215, -0.01693059131503105, 0.020275574177503586, 0.011057927273213863, -0.0220184288918972, 0.030245570465922356, 0.0015574736753478646, -0.0031474228017032146, -0.023274149745702744, 0.00036399689270183444, 0.001953946193680167, 0.0050391242839396, 0.04291103780269623, -0.05754669010639191, 0.0010020063491538167, -0.004733312875032425, -0.017201220616698265, 0.015425890684127808, 0.005231271032243967, 0.024919578805565834, 0.02974761091172695, -0.02078435756266117, -0.006722440477460623, 0.025698991492390633, -0.0055046072229743, 0.013001048937439919, -0.007404427509754896, 0.03381787985563278, -0.0016143058892339468, 0.015079484321177006, 0.00039884046418592334, 0.017969809472560883, 0.05070517212152481, 0.011658725328743458, 0.03860261291265488, -0.021834401413798332, -0.018792523071169853, 0.020427126437425613, 0.0002963394799735397, -0.021704498678445816, 0.011517997831106186, -0.02502783015370369, 0.015577442944049835, 0.010706108994781971, -0.02725781872868538, 0.0042028785683214664, 0.004608822986483574, 0.03700048476457596, -0.021065812557935715, 0.0099808219820261, 0.023295801132917404, -0.036740683019161224, -0.040204741060733795, -0.030223919078707695, -0.003012108150869608, -0.03901397064328194, -0.015534142032265663, -0.0542125329375267, -0.02055702917277813, 0.00894160382449627, 0.0008416582131758332, 0.021303966641426086, 0.008378693833947182, 0.013174251653254032, -0.0053314040414988995, -0.04135221242904663, -0.021412217989563942, -0.03137138858437538, 0.019680188968777657, -0.01768835447728634, 0.009520751424133778, 0.008519421331584454, 0.008822526782751083, -0.0044275010004639626, 0.006348971743136644, 0.0026900586672127247, -0.022949393838644028, -0.012871146202087402, 0.007366538979113102, -0.013856238685548306, -0.0034532344434410334, 0.05330321565270424, 0.05092167481780052, -0.010446304455399513, -0.03362302854657173, 0.0013342042220756412, 0.025136081501841545, 0.01393201481550932, 0.014733077958226204, -0.007913211360573769, 0.04979585483670235, -0.04074599966406822, 0.011680375784635544, -0.01486298069357872, 0.0014153930824249983, 0.050575271248817444, 0.005469425115734339, -0.0022218695376068354, -0.03273536264896393, 0.050748471170663834, 0.017244521528482437, -0.022711239755153656, 0.004395025782287121, 0.030873430892825127, -0.0410924069583416, 0.03260546177625656, 0.0028984434902668, -0.019063152372837067, -0.02199677750468254, 0.005474837962538004, 0.005959264934062958, 0.04397190734744072, 0.017461026087403297, 0.01426759548485279, 0.03314672037959099, -0.03526845574378967, 0.030180618166923523, -0.017861558124423027, 0.009948345832526684, 0.004725193604826927, -0.025698991492390633, -0.022451436147093773, -0.00574817368760705, 0.01895490102469921, -0.024941228330135345, 0.013780461624264717, 0.019214704632759094, 0.02526598423719406, -0.023512303829193115, -0.021336441859602928, -0.0069930702447891235, -0.030656928196549416, -0.017839906737208366, -0.013185076415538788, 0.001548001659102738, 0.024464920163154602, -0.014917106367647648, 0.024551521986722946, 0.01773165538907051, 0.017006367444992065, 0.010960500687360764, 0.011355619877576828, 0.01728782244026661, 0.013293328694999218, 7.865174120524898e-05, -0.0009877982083708048, 0.064388208091259, 0.02892489731311798, 0.016833163797855377, -0.012990223243832588, 0.03819125518202782, -0.0028686742298305035, 0.020925084128975868, 0.012806194834411144, -0.05308671295642853, -0.006381447426974773, -0.024573173373937607, -0.007815784774720669, -0.0007509972783736885, -0.01648675836622715, -0.004890277981758118, -0.004503277596086264, 0.011582949198782444, -0.0018362222472205758, 0.03011566773056984, -0.018586844205856323, 0.012676293030381203, 0.01604292541742325, 0.01485215499997139, 0.02507113106548786, -0.004549284465610981, -0.013996966183185577, -0.025698991492390633, -0.01190770510584116, -0.012687117792665958, 0.026153650134801865, 0.02745267190039158, 0.0044762142933905125, -0.037390194833278656, 0.009412499144673347, 0.0013470591511577368, -0.006007978226989508, -0.018835823982954025, 0.023295801132917404, 0.034120988100767136, 0.022234931588172913, 0.012275760993361473, 0.015718169510364532, 0.018814174458384514, 0.016226954758167267, 0.020004944875836372, 0.023252500221133232, -0.05373622477054596, -0.042824435979127884, 0.011972655542194843, -0.002438373165205121, 0.034705545753240585, -0.00703095830976963, 0.015977974981069565, 0.00844364520162344, -0.0035939617082476616, 0.012221635319292545, 0.0028794994577765465, -0.00805393885821104, 0.0011603246675804257, 0.010711521841585636, 0.008124302141368389, 0.02134726755321026, 0.009336723014712334, 0.02323084883391857, 0.026629958301782608, -0.024096865206956863, -0.002435666974633932, 0.0037725772708654404, -0.020719407126307487, 0.013120125979185104, -0.015512491576373577, -0.004984998144209385, -0.00026403306401334703, -0.003634556196630001, 0.012719593942165375, -0.001928236335515976, -0.00865473598241806, -0.023728808388113976, -0.004378787707537413, -0.026565006002783775, -0.009239296428859234, -0.013250027783215046, 0.017406899482011795, 0.05152788758277893, 0.008021462708711624, -0.03076517954468727, 0.007139210123568773, 0.019474510103464127, -0.005629096645861864, 0.010771060362458229, 0.03096003271639347, -0.005634509492665529, -0.03788815066218376, -0.0007117560016922653, 0.04576888680458069, 0.03602622076869011, -0.024291718378663063, -0.021942652761936188, 0.004432913847267628, -0.015079484321177006, 0.0028443175833672285, -0.04659160226583481, -0.043495599180459976, 0.004860508721321821, -0.016551708802580833, 0.016843989491462708, 0.00915269460529089, -0.00966689083725214, 0.0050905440002679825, -0.004676480311900377, -0.012297411449253559, -0.004560109693557024, -0.030613627284765244, -0.032064203172922134, -0.019030677154660225, -0.011875228956341743, 0.03074352815747261, -0.020513728260993958, 0.017774956300854683, -0.005980915389955044, 0.031198186799883842, -0.005645334720611572, 0.013888713903725147, -0.029596058651804924, -0.012394838035106659, 0.010403003543615341, -0.012719593942165375, 0.0309167318046093, 0.0209900364279747, -0.0013558545615524054, 0.018446117639541626, 0.018262088298797607, -0.017569277435541153, 0.028751693665981293, -0.01813218742609024, 0.025915496051311493, -0.0020324287470430136, 0.023772109299898148, 0.010170262306928635, 0.0031826046761125326, -0.0399232879281044, 0.008481533266603947, -0.008827939629554749, -0.023295801132917404, -0.027127915993332863, -0.010706108994781971, -0.009325898252427578, 0.0025601566303521395, 0.01972348988056183, 0.04966595396399498, -0.006089167203754187, 0.00025422274484299123, -0.007025545928627253, 3.91990142816212e-05, -0.005694048013538122, -0.011961830779910088, 0.025114431977272034, -0.024529872462153435, 0.006451811175793409, -0.023923661559820175, 0.004968760535120964, -0.021682847291231155, -0.037346892058849335, -0.03399108350276947, 0.015295987948775291, -0.019777614623308182, -0.006376034580171108, 0.01343405619263649, -0.031457990407943726, -0.02970430999994278, -0.02808053232729435, -0.022299883887171745, -0.03557156026363373, 0.013986140489578247, -0.007610105909407139, 0.00036162888864055276, 0.02504948154091835, 0.01974513940513134, -0.033731281757354736, -0.009179757907986641, -0.002332827541977167, 0.020741056650877, 0.0015074071707203984, -0.012946922332048416, -0.0050391242839396, -0.007907798513770103, -0.01372633595019579, -0.005672397557646036, 0.0307218786329031, 0.015588267706334591, 0.06274277716875076, -0.019019851461052895, 0.0008308330434374511, -0.0009593821014277637, -0.0026129293255507946, -0.05191759392619133, 0.011561298742890358, 0.01447327435016632, 0.021477170288562775, -0.02587219513952732, 0.0034424092154949903, 0.01179945282638073, 0.002073023235425353, -0.0013585608685389161, -0.02769082598388195, 0.0011210833908990026, -0.03769329935312271, 0.007891560904681683, 0.001974243437871337, 0.022451436147093773, -0.005683222785592079, 0.003049996215850115, 0.0224081352353096, 0.014300070703029633, 0.019063152372837067, -0.03156624361872673, 0.009910457767546177, 0.006635839119553566, 0.005791474599391222, -0.005943027324974537, -0.022494737058877945, -0.020427126437425613, -0.013650559820234776, -0.018446117639541626, 0.006094580050557852, 0.03496535122394562, 0.019030677154660225, 0.019247181713581085, 0.024573173373937607, -0.050748471170663834, 0.006906468886882067, -0.011485522612929344, -0.010029534809291363, 0.005704873241484165, -0.0062190694734454155, -0.003564192447811365, -0.016605835407972336, 0.020113196223974228, -0.017450200393795967, 0.0022218695376068354, -0.004419382195919752, -0.022451436147093773, -0.026413453742861748, -0.01651923358440399, 0.030462073162198067, -0.0030635276343673468, -0.014148518443107605, -0.009461212903261185, -0.01181027851998806, -0.028015581890940666, 0.026370152831077576, -0.019593587145209312, 0.0005169026553630829, -0.024897927418351173, 0.029682660475373268, 0.01383458822965622, 0.030895082280039787, 0.0024938522838056087, -0.008903715759515762, -0.012243285775184631, 0.012622167356312275, -0.023663856089115143, 0.02827538549900055, 0.03494369983673096, 0.005959264934062958, 0.0386459156870842, 0.014148518443107605, 0.006857755593955517, -0.037758249789476395, -0.0020432539749890566, 0.021217364817857742, -0.009325898252427578, -0.006083754822611809, -0.016237778589129448, -0.03191264718770981, -0.016410982236266136, 0.00895784143358469, 0.0229926947504282, -0.008259616792201996, 0.01935543306171894, 0.038775816559791565, -0.00666290195658803, 0.012697943486273289, -0.011940180324018002, -0.009672303684055805, 0.01769918017089367, 0.005710285622626543, 0.04169861599802971, 0.007999812252819538, -0.032237403094768524, 0.010825186036527157, -0.016540884971618652, 0.0205462034791708, -0.0002948171750176698, 0.025569090619683266, -0.0113014942035079, -0.018695097416639328, -0.019203880801796913, 0.020643629133701324, 0.0018348690355196595, 0.00707967160269618, -0.00865473598241806, 0.01648675836622715, 0.0101756751537323, -0.03901397064328194, -0.04503277316689491, 0.01564239338040352, -0.010619508102536201, 0.015025358647108078, -0.003610199550166726, 0.005534376483410597, 0.0033341574016958475, -0.01089555025100708, 0.018002284690737724, 0.026326851919293404, 0.011474696919322014, -0.02013484574854374, 0.029639359563589096, 0.020232273265719414, 0.008378693833947182, 0.02096838504076004, 0.00406756391748786, -0.004744137637317181, -0.0035912555176764727, 0.05979833006858826, -0.017655879259109497, 0.016595009714365005, 0.0205462034791708, -0.02338240295648575, 0.006413922645151615, 0.018391991034150124, -0.0027820728719234467, 0.00804311316460371, -0.03868921473622322, -0.014581525698304176, 0.03812630474567413, -0.04845353215932846, -0.004267829470336437, 0.0009309659944847226, 0.003472178475931287, 0.00023527865414507687, -0.037736598402261734, -0.0009248768328689039, 0.044686369597911835, -0.01170202624052763, 0.03383953124284744, -0.006278607994318008, 0.05997152999043465, -0.006641251500695944, -0.006440985947847366, 0.019387908279895782, 0.036567479372024536, 0.006857755593955517, 0.023100947961211205, 0.004673774354159832, -0.003196136327460408, 0.01734194904565811, -0.021672023460268974, 0.00478473212569952, -0.02565569058060646, -0.02159624733030796, 0.03567981347441673, -0.03152294084429741, 0.010987563990056515, 0.033471476286649704, -0.018413642421364784, -0.021271491423249245, -0.0034857098944485188, 0.022797841578722, 0.02873004414141178, 0.018272913992404938, -0.00823796633630991, 0.026998015120625496, -0.05819620192050934, 0.006754916161298752, 0.002411310328170657, 0.011160766705870628, 0.031631194055080414, -0.010911787860095501, 0.029357904568314552, 0.02055702917277813, -0.011014627292752266, 0.03160954266786575, -0.011068752966821194, 0.014224294573068619, 0.0039024795405566692, -0.005388236604630947, 0.03178274631500244, -0.0013436762383207679], [0.009100072085857391, -0.0030819943640381098, 0.06260468810796738, 0.0064260330982506275, -0.016806546598672867, -0.006777409929782152, 0.015508239157497883, 0.021034983918070793, 0.04388045519590378, -0.02587088756263256, -0.0134237976744771, 0.010815269313752651, 0.032374341040849686, -0.00838540680706501, -0.033351052552461624, -0.027514617890119553, 0.02091587334871292, -0.005547590088099241, 0.021975960582494736, 0.011142824776470661, -0.007861318998038769, 0.004883546847850084, -0.016782725229859352, 0.023786446079611778, -0.04145059362053871, -0.004779324866831303, 0.01966520957648754, -0.004526214208453894, -0.003406571689993143, -0.02428671158850193, 0.04352312162518501, -0.02977772429585457, 0.015984682366251945, 0.0032219497952610254, 0.049311909824609756, -0.013709664344787598, 0.017664145678281784, -0.02411995641887188, 0.028872480615973473, -0.009266828186810017, 0.0016035304870456457, 0.033136650919914246, 0.0066106547601521015, -0.05941251665353775, 0.00475252466276288, 0.05221821740269661, 0.040330950170755386, -0.03561415895819664, -0.017497390508651733, 0.034542158246040344, 0.010106559842824936, 0.006723809987306595, -0.006723809987306595, 0.02820545993745327, -0.010612781159579754, 0.004404125269502401, -0.03904455155134201, 0.0071764313615858555, 0.03375602886080742, 0.007908963598310947, 0.0134237976744771, -0.042498767375946045, 0.01884334348142147, 0.04902604594826698, -0.007706474978476763, -0.012840154580771923, -0.012792509980499744, 0.016353925690054893, -0.01026735920459032, 0.009701582603156567, 0.03375602886080742, 0.0391874834895134, -0.02722875028848648, -0.060794200748205185, -0.015496327541768551, -0.004564925096929073, 0.061556510627269745, -0.015293839387595654, 0.025442088022828102, -0.011005846783518791, -0.01110709086060524, 0.027252573519945145, 0.002915239194408059, 0.028562793508172035, -0.017497390508651733, 0.026394974440336227, -0.009731360711157322, 0.014495796523988247, -0.013542909175157547, -0.03723406791687012, -0.024965643882751465, 0.029873013496398926, 0.02004636451601982, -0.015937037765979767, -0.029706258326768875, -0.01573454961180687, 0.04237965866923332, -0.05607740953564644, -0.01758076809346676, 0.05445750057697296, -0.022357115522027016, -0.013054554350674152, -0.022416669875383377, 0.012590021826326847, 0.019188765436410904, -0.05803082883358002, -0.0866650864481926, 0.00816505216062069, 0.0343039371073246, 0.013781130313873291, -0.026109108701348305, -0.04638178274035454, -0.038520462810993195, 0.035590335726737976, -0.011005846783518791, -0.01170264557003975, -0.012994999065995216, 0.022523870691657066, -0.020439429208636284, -0.02389364503324032, 0.003924704156816006, -0.00991002656519413, 0.004413058515638113, -0.03780579939484596, -0.017223436385393143, -0.0030388168524950743, -0.02727639488875866, -0.009374027140438557, -0.0001259039418073371, -0.009618205018341541, 0.020320318639278412, -0.041736457496881485, 0.0336369164288044, -0.03728171065449715, -0.03768668696284294, 0.023238535970449448, 0.030420923605561256, 0.010207803919911385, 0.008051896467804909, -0.036781445145606995, 0.01721152476966381, -0.03959246352314949, 0.031135588884353638, -0.03485184907913208, -0.049693066626787186, 0.039282772690057755, 0.056935008615255356, 0.016627881675958633, -0.027562260627746582, 0.006289055570960045, -0.05874549597501755, -0.015436772257089615, -0.04621502757072449, -0.040330950170755386, 0.019200677052140236, 0.012554288841784, 0.00018024828750640154, 0.010201848112046719, 0.03175496682524681, -0.003564393613487482, -0.02548973262310028, -0.015829838812351227, 0.01650877110660076, -0.012024245224893093, 0.00690247630700469, 0.00541954580694437, -0.03854428604245186, 0.02020120806992054, -0.051694128662347794, -0.001631819293834269, -0.004314792342483997, -0.005002657882869244, -0.03723406791687012, 0.02188067138195038, -0.004639369435608387, -0.045881517231464386, -0.035042427480220795, 0.040426239371299744, -0.022726358845829964, -0.01399553008377552, 0.020606184378266335, 0.02079676277935505, 0.016532592475414276, 0.018867166712880135, -0.058126118034124374, 0.03964010626077652, -0.030135056003928185, -0.0066106547601521015, -0.00046304360148496926, 0.0724194273352623, 0.00859980657696724, -0.019522275775671005, 0.02527533285319805, 0.06917960941791534, 0.0028110172133892775, -0.03185025230050087, -0.033898960798978806, 0.005898967385292053, -0.010440070182085037, -0.03011123463511467, -0.02892012521624565, -0.033136650919914246, 0.04595298320055008, 0.023560134693980217, -0.029825368896126747, 0.020772939547896385, 0.008171007968485355, 0.06908431649208069, 0.050217155367136, 0.014114641584455967, 0.014996062032878399, -0.01175624504685402, -0.021213650703430176, 0.03130234405398369, -0.0193912535905838, -0.029849190264940262, 0.014329040423035622, 0.022333292290568352, -0.01055918075144291, -0.022797824814915657, -0.009838559664785862, 0.003341060597449541, 0.0005080823902972043, -0.01671125926077366, 0.006366477347910404, -0.005985322408378124, -0.024000845849514008, -0.03442304953932762, 0.071418896317482, -0.0073372311890125275, 0.0017449746374040842, -0.004687013570219278, 0.005928745027631521, 0.010571092367172241, -0.041950859129428864, 0.031016478314995766, 0.03697202354669571, -0.08013781160116196, 0.01731872372329235, 0.015043706633150578, 0.029610969126224518, -0.008587895892560482, -0.008581940084695816, 0.028229283168911934, 0.0221665371209383, 0.0028005950152873993, -0.04061681404709816, -0.025727953761816025, 0.05259937047958374, 0.027633728459477425, 0.007414653431624174, 0.00015633305883966386, 0.015925126150250435, -0.02901541441679001, 0.011190468445420265, -0.010440070182085037, 0.042832277715206146, -0.05364754796028137, 0.03456598147749901, -0.030849723145365715, 0.0062950109131634235, -0.02189258299767971, -0.021844938397407532, 0.01129766833037138, -0.030802078545093536, -0.000683026562910527, 0.035304468125104904, -0.00859980657696724, -0.06027011200785637, 0.01274486631155014, -0.005264701787382364, -0.0023822179064154625, 0.016639791429042816, -0.03842517361044884, -0.024370089173316956, 0.03332722932100296, 0.01012442633509636, -0.007128787226974964, 0.019081566482782364, 0.00597341125831008, -0.02760990522801876, 0.0004961713566444814, 0.0003631021245382726, 0.0017032858449965715, -0.01198255643248558, -0.018700411543250084, 0.018700411543250084, 0.034375403076410294, 0.0024105068296194077, 0.018271612003445625, 0.09481227397918701, -0.02140422724187374, 0.017080502584576607, 0.008939272724092007, 0.027085818350315094, -0.012923532165586948, -0.03015887923538685, -0.0395209938287735, 0.05550567805767059, -0.03913984075188637, -0.011345312930643559, 0.020594274625182152, 0.011631178669631481, 0.012828243896365166, -0.012756776995956898, -0.007789852563291788, 0.005121768452227116, 0.06593979150056839, -0.041402947157621384, -0.0234052911400795, -0.029992124065756798, 0.051217686384916306, 0.03599531203508377, 0.031135588884353638, -0.012482821941375732, 0.04526213929057121, -0.026061464101076126, 0.011291713453829288, 0.03489949181675911, 0.010451980866491795, 0.016210993751883507, 0.005857278127223253, 0.020665740594267845, -0.07913728058338165, 0.047834936529397964, -0.006568965967744589, 0.013411886990070343, 0.02760990522801876, -0.022464314475655556, -0.028276927769184113, -0.033565450459718704, -0.03599531203508377, 0.0018164411885663867, -0.03913984075188637, 0.005094968713819981, -0.00756949745118618, -0.013912152498960495, 0.008278206922113895, -0.02194022759795189, -0.025989998131990433, 0.017187701538205147, -0.016473036259412766, -0.03344633802771568, 0.03301754221320152, 0.017056681215763092, 0.0076528750360012054, 0.014543440192937851, 0.03947335109114647, -0.012280333787202835, 0.040330950170755386, 0.013090287335216999, -0.010797402821481228, -0.02047516405582428, -0.0035405713133513927, -0.04878782480955124, 0.0009484204929322004, 0.05221821740269661, 0.0012923532631248236, -0.017354458570480347, 0.023810267448425293, -0.034280117601156235, -0.014996062032878399, -0.015484416857361794, 0.05026479810476303, 0.03337487205862999, 0.003814526367932558, -0.004410081077367067, 0.0328984297811985, 0.03423247113823891, 0.016746992245316505, 0.04164116829633713, 0.009713493287563324, -0.02558501996099949, -0.02074911817908287, -0.008891628123819828, 0.04145059362053871, -0.018212055787444115, -0.03137381002306938, -0.03082589991390705, 0.02799106016755104, 0.04421396553516388, -0.02335764653980732, 0.01736636832356453, 0.03511389344930649, 0.05255172774195671, 0.025346798822283745, -0.028181638568639755, -0.008671273477375507, -0.016199082136154175, -0.008998828008770943, -0.04116472601890564, -0.010493669658899307, -0.003990215249359608, -0.0060746558010578156, -0.030635323375463486, 0.01440050732344389, 0.055839188396930695, 0.031826432794332504, -0.02113027311861515, -0.03532829135656357, -0.016246726736426353, -0.04874017834663391, -0.036400288343429565, -0.023119425401091576, 0.031874075531959534, -0.024143779650330544, 0.04697733744978905, -0.028300749137997627, 0.03104029968380928, -0.0367099791765213, 0.02710963971912861, -0.01987960934638977, 0.014614907093346119, 0.017020946368575096, 0.0058543006889522076, 0.01312602125108242, -0.012721044011414051, -0.03420864790678024, -0.004067637026309967, -0.020272674039006233, 0.00825438555330038, 0.0031296387314796448, -0.021380405873060226, 0.037758152931928635, -0.02375071309506893, 0.035471223294734955, -0.0035048380959779024, -0.05669678747653961, 0.041188549250364304, -0.07094244658946991, -0.027157284319400787, 0.016318192705512047, 0.004347547888755798, 0.026537908241152763, -0.033351052552461624, -0.010952247306704521, 0.004838880151510239, -0.017116235569119453, -0.008474740199744701, 0.02417951263487339, 0.007551630958914757, -0.041188549250364304, 0.030349455773830414, -0.01747356913983822, -0.059984248131513596, -0.020451340824365616, -0.023679247125983238, 0.015258105471730232, -0.014340952038764954, -0.0037609266582876444, 0.006652343552559614, 0.03766286373138428, -0.019700942561030388, 0.01219695620238781, -0.013530997559428215, -0.004844835493713617, -0.006652343552559614, -0.012947354465723038, 0.008838028647005558, 0.022249914705753326, 6.472002132795751e-05, 0.027038173750042915, -0.003341060597449541, 0.034113362431526184, 0.020570451393723488, 0.0221665371209383, 0.005511856637895107, -0.036995843052864075, -0.03246963024139404, -0.030635323375463486, -0.010160159319639206, -0.02765754982829094, 0.08561690896749496, -0.019581831991672516, 0.01824778877198696, -0.031397633254528046, -0.009981493465602398, -0.014543440192937851, -0.04383280873298645, -0.05517216771841049, -0.014317129738628864, 0.014698284678161144, -0.044952452182769775, -0.050169508904218674, 0.04819227010011673, 0.06160415709018707, 0.031016478314995766, -0.004436880815774202, 0.004952035378664732, -0.04335636645555496, -0.07046600431203842, -0.023155158385634422, 0.02215462736785412, -0.01089269109070301, 0.004377325531095266, -0.03659086674451828, -0.02880101464688778, -0.017938101664185524, 0.019355520606040955, -0.0159489493817091, 0.0780414566397667, -0.027300218120217323, 0.01162522379308939, -0.010070825926959515, 0.060746558010578156, 0.0059168338775634766, -0.011303624138236046, 0.009433583356440067, 0.02053471840918064, -0.023381469771265984, -0.04785875976085663, 0.013161754235625267, 0.01200637873262167, 0.0153295723721385, -0.03137381002306938, -0.028348393738269806, -0.009582472033798695, -0.0062652332708239555, 0.020665740594267845, -0.036614689975976944, -0.0019906407687813044, -0.007914919406175613, 0.017271079123020172, -0.016520680859684944, -0.030945010483264923, 0.017080502584576607, -0.005136657506227493, -0.06670210510492325, -0.012601932510733604, 0.01796192303299904, -0.012840154580771923, -0.028396038338541985, -0.02053471840918064, 0.038639575242996216, -0.0030075502581894398, 0.021582894027233124, 0.015067528001964092, 0.01677081361413002, -0.017616501078009605, -0.01048175897449255, 0.007414653431624174, 0.013102198950946331, -0.023774534463882446, 0.027967238798737526, 0.010148248635232449, 0.024846533313393593, -0.0035048380959779024, 0.004880568943917751, 0.01622290350496769, 0.015877483412623405, -0.019784320145845413, -0.005392746068537235, 0.03942570835351944, -0.01535339467227459, -0.02977772429585457, -0.00949909444898367, 0.00907029490917921, 0.00911793950945139, 0.022726358845829964, -0.00496692443266511, 0.010386469773948193, 0.002333084587007761, -0.005884078331291676, 0.0034720825497061014, -0.0013325531035661697, 0.0015797083033248782, -0.01600850373506546, -0.0322314091026783, 0.02722875028848648, -0.035637978464365005, -0.01306646503508091, -0.002273529302328825, 0.04702498018741608, -0.05102710798382759, 0.018855255097150803, 0.01585366018116474, 0.05564860999584198, 0.012054022401571274, 0.019045831635594368, -0.00388003746047616, 0.011101135984063148, -0.0021693073213100433, 0.022559603676199913, -0.007766030263155699, -0.0012365200091153383, 0.022881202399730682, -0.010386469773948193, 0.03194554150104523, -0.02396511286497116, 0.014340952038764954, 0.03478038311004639, 0.0078077190555632114, 0.015806015580892563, -0.009350205771625042, -0.006664254702627659, 0.03370838239789009, 0.03213611990213394, -0.009540783241391182, 0.004386258777230978, 0.007355097681283951, -0.010422203689813614, -0.031874075531959534, -0.03518535941839218, -0.010440070182085037, -0.05031244456768036, -0.02358395792543888, -0.03849664330482483, -0.004922257736325264, -0.017628412693738937, 0.020320318639278412, 0.023167070001363754, 0.03375602886080742, -0.013959797099232674, -0.04616738483309746, -0.02613293007016182, 0.02570413239300251, -0.055410388857126236, -0.030420923605561256, -0.02357204630970955, -0.0066463882103562355, -0.003894926281645894, 0.002474528970196843, -0.04025948420166969, -0.02494182251393795, -0.036733802407979965, 0.010451980866491795, -0.004788258112967014, -0.035590335726737976, 0.014865039847791195, -0.03599531203508377, -0.009487182833254337, -0.004606613889336586, 0.01633010432124138, -0.023941289633512497, -0.00513367960229516, -0.0072121648117899895, -0.019522275775671005, 0.003341060597449541, 0.03887779638171196, 0.007259808946400881, 0.004722747020423412, 0.031230876222252846, 0.014388596639037132, -0.0060091447085142136, 0.02625204250216484, 0.0374484658241272, 0.03158821165561676, 0.020951606333255768, 0.011160691268742085, -0.011369135230779648, 0.01623481512069702, 0.0037490155082195997, 0.005011591129004955, -0.007361053489148617, -0.0012037644628435373, -0.021082628518342972, -0.005726256407797337, 0.023536313325166702, 0.006533232517540455, 0.06303348392248154, -0.04452365264296532, 0.008826117031276226, 0.008951184339821339, -0.012292244471609592, -0.021606717258691788, 0.008057852275669575, 0.03244580700993538, 0.010666380636394024, 0.023810267448425293, -0.005014568567276001, -0.029086880385875702, 0.00979687087237835, 0.018045300617814064, -0.0022720403503626585, 0.04090268164873123, 0.004564925096929073, -0.022500047460198402, 0.029444213956594467, -0.001032542553730309, 0.039282772690057755, 0.003737104358151555, 0.0067416769452393055, -0.019081566482782364, 0.00890353973954916, -0.006628521252423525, 0.018390722572803497, 0.004082526080310345, -0.051265329122543335, 0.02548973262310028, -0.037162598222494125, 0.005392746068537235, 0.02041560783982277, 0.016139525920152664, 0.025632664561271667, 5.522837454918772e-05, 0.030945010483264923, 0.01007678173482418, -0.03294607251882553, 0.026942884549498558, 0.04509538412094116, 0.00833180733025074, 0.0005132935475558043, -0.00941571593284607, -0.05793553963303566, -0.04823991283774376, -0.008760606870055199, 0.011911089532077312, 0.013018821366131306, -0.004523236304521561, -0.020951606333255768, -0.046524714678525925, 0.005080079659819603, -0.00849856249988079, 0.0033291494473814964, -0.0415935255587101, 0.03794873133301735, -0.009612249210476875, -0.027324039489030838, -0.0035911935847252607, -0.00926087237894535, -0.02139231748878956, 0.024370089173316956, -0.0232028029859066, 0.014102729968726635, -0.0035107936710119247, -0.0046810582280159, -0.019784320145845413, -0.0071764313615858555, -0.04852578043937683, 0.004689991474151611, 0.044833339750766754, -0.025561198592185974, -0.03337487205862999, -0.01982005313038826, -0.018200144171714783, 0.05298052728176117, -0.05936487019062042, -0.014483884908258915, 0.01249473262578249, -0.0009990426478907466, -0.008754651062190533, -0.02672848477959633, 0.027586083859205246, -0.04504774138331413, -0.005333190318197012, 0.007420608773827553, -0.014924595132470131, 0.017616501078009605, -0.029229814186692238, 0.010910558514297009, -0.04009272903203964, 0.007754119578748941, 0.053123459219932556, -0.004252259153872728, 0.035804737359285355, -0.020189296454191208, 0.0209635179489851, 0.02074911817908287, 0.005821545142680407, 0.009659893810749054, 0.00879038404673338, 0.02706199511885643, 0.012816332280635834, 0.010142292827367783, -0.013221309520304203, -0.02498946525156498, 0.0016333081293851137, 0.0009543760679662228, -0.00016926774696912616, -0.018962454050779343, -0.017568856477737427, -0.008016163483262062, 0.015770282596349716, -0.0178547240793705, -0.04916897788643837, 0.021797293797135353, -0.02248813770711422, -0.008260340429842472, -0.041688814759254456, -0.03942570835351944, -0.02292884700000286, 0.008302029222249985, -0.0030060613062232733, 0.04733467102050781, -0.0118694007396698, -0.033565450459718704, 0.011529934592545033, 0.009594382718205452, 0.02782430499792099, -0.011821756139397621, 0.00401403708383441, -0.03718642145395279, 0.026990529149770737, -0.011547801084816456, -0.040926504880189896, -0.008343718014657497, 0.02351249009370804, -0.011976600624620914, -0.05193234980106354, 0.0096956267952919, -0.017342546954751015, 0.021630538627505302, 0.017711790278553963, 0.00789705291390419, 0.008337763138115406, 0.05474336817860603, -0.005345101468265057, -0.035423580557107925, -0.025108577683568, -0.0370434895157814, -0.03959246352314949, 0.007420608773827553, 0.0367099791765213, 0.006527277175337076, 0.037877265363931656, -0.04547654092311859, -0.018033389002084732, 0.01124406885355711, -0.020332230255007744, 0.015567794442176819, -0.0013273420045152307, -0.023667335510253906, -0.025346798822283745, 0.006688077002763748, -0.016580237075686455, -0.002934594638645649, 0.0009074761183001101, -0.007295542396605015, 0.009570560418069363, -0.048597246408462524, 0.01786663383245468, 0.004895457997918129, 0.034875672310590744, 0.02565648779273033, -0.022583426907658577, 0.00898096151649952, 0.011404868215322495, -0.027919594198465347, 0.004255236592143774, 0.020868228748440742, 0.022011693567037582, -0.018700411543250084, -0.010731891728937626, 0.010440070182085037, -0.023321913555264473, 0.014936506748199463, 0.004535147454589605, -0.00781367439776659, -0.07041836529970169, 0.03742464259266853, 0.05326639115810394, -0.0007254598313011229, 0.03663851320743561, 0.012911621481180191, 0.016044238582253456, -7.276931137312204e-05, -0.005336168222129345, -0.003927681595087051, -0.011261935345828533, 0.025418264791369438, 0.011470379307866096, -0.011928956024348736, -0.004761457908898592, 0.008284162729978561, 0.01067233644425869, -0.02015356346964836, 0.014614907093346119, 0.02215462736785412, 0.0074384757317602634, 0.022333292290568352, 0.006491543725132942, 0.020713385194540024, 0.032374341040849686, 0.0026055509224534035, -0.032326698303222656, 0.010005315765738487, 0.01883143186569214, 0.055124521255493164, -0.03516153618693352, 0.034161005169153214, -0.0029122615233063698, 0.002900350373238325, 0.018533656373620033, -0.017414012923836708, -0.014507707208395004, -0.004880568943917751, -0.02319089137017727, 0.03856810927391052, -0.006628521252423525, -0.009701582603156567, 0.006825054530054331, 0.024679778143763542, 0.014984150417149067, 0.007849408313632011, 0.0008010207675397396, -0.003102838760241866, 0.005613101180642843, 0.016401570290327072, 0.010166115127503872, 0.01568690501153469, -0.012316066771745682, -0.01203615590929985, -0.02167818322777748, -0.047882579267024994, -0.0029360835906118155, 0.026823773980140686, 0.00852238480001688, 0.0004533658502623439, -0.0009893649257719517, -0.014650640077888966, 0.018069123849272728, -0.005904922727495432, -0.014876951463520527, -0.051598839461803436, 0.01584174856543541, -0.027466973289847374, -0.016139525920152664, -0.020772939547896385, 0.041522059589624405, -0.003626926802098751, -0.0016690414631739259, 0.055076878517866135, -0.00029200781136751175, -0.02244049310684204, 0.024250978603959084, -0.00013837336155120283, -0.009397849440574646, -0.004341592080891132, 0.00971944909542799, 0.004207592457532883, 0.012506644241511822, 0.010088693350553513, 0.02199978195130825, 0.005056257359683514, 0.028062527999281883, 0.006318833213299513, 0.004142081364989281, 0.002694884082302451, 0.016306281089782715, 0.005416567903012037, 0.02765754982829094, -0.006920343264937401, 0.0076528750360012054, -0.010553225874900818, 0.011250023730099201, -0.01535339467227459, -0.012530466541647911, 0.0065749213099479675, 0.02646644040942192, 0.008379451930522919, 0.011613312177360058, -0.028300749137997627, 0.06451046466827393, -0.019022010266780853, -0.01873614452779293, 0.005756034050136805, 0.02384600229561329, -0.00855216197669506, -0.006848876364529133, 0.00879038404673338, 0.0009342760895378888, 0.00728363124653697, 0.03930659592151642, -0.04428543150424957, 0.033089008182287216, 0.05407634750008583, 0.003373816143721342, -0.01731872372329235, 0.04666765034198761, 0.0007630541804246604, -0.014638729393482208, -0.0026487286668270826, 0.043594587594270706, 0.012780599296092987, 0.01440050732344389, 0.01568690501153469, -0.004526214208453894, 0.0005404656985774636, -0.013292776420712471, 0.012256511487066746, 0.02411995641887188, 0.016520680859684944, 0.030802078545093536, 0.017128147184848785, -0.007801763713359833, 0.029063059017062187, -0.02205933816730976, 0.012530466541647911, 0.020987339317798615, -0.017830900847911835, 0.0059495894238352776, -0.04778729006648064, 0.004419014323502779, -0.006819098722189665, -0.007742208428680897, 0.00974327139556408, 0.047120269387960434, 0.034828025847673416, 0.03168349713087082, 0.012673399411141872, -0.004121236968785524, -0.006813143379986286, -0.010451980866491795, 0.005493990145623684, -0.0005479101091623306, -0.031564388424158096, 0.03475655987858772, 0.0287533700466156, -0.0008523873402737081, -0.022333292290568352, -0.014698284678161144, -0.04504774138331413, 0.021582894027233124, 0.022392848506569862, 0.008045940659940243, 0.02280973643064499, 0.04264169931411743, -0.01927214302122593, 0.006437943782657385, 0.0015677971532568336, -0.030754433944821358, 0.045762404799461365, 0.028562793508172035, 0.001789641217328608, 0.024143779650330544, 1.4609696336265188e-05, 0.0318978987634182, -0.01966520957648754, 0.021142184734344482, 0.051646485924720764, 0.04187938943505287, -0.03592384606599808, 0.025108577683568, 0.025894708931446075, -0.017247257754206657, -0.004621502943336964, -0.050503019243478775, -0.002746995072811842, 0.008200785145163536, 0.01688992604613304, -0.013697752729058266, -0.011404868215322495, -0.053552258759737015, 0.014936506748199463, 0.029063059017062187, -0.004219503607600927, 0.02934892475605011, 0.033613093197345734, -0.0008695095311850309, 0.02575177513062954, 0.0214995164424181, 0.027943415567278862, -0.031659677624702454, 0.010755714029073715, 0.02498946525156498, -0.007063276134431362, -0.010946291498839855, -0.014281396754086018, 0.012792509980499744, 0.004421992227435112, -0.001293097622692585, -0.032969895750284195, 0.020630007609725, 0.0021990849636495113, 0.006872698664665222, -0.015222372487187386, -0.024536844342947006, -0.00830798503011465, -0.00039567152271047235, 0.0016184193082153797, -0.003168349852785468, 0.0012536421418190002, 0.00515750190243125, 0.02298840321600437, -0.004698924720287323, -0.02173773944377899, -0.0360429584980011, -0.03566180169582367, 0.0007511430885642767, 0.015448682941496372, -0.004389236681163311, 0.024262890219688416, 0.02968243509531021, -0.024048490449786186, 0.010856958106160164, -0.00876656174659729, 0.0007087098201736808, -0.022083159536123276, 0.019962986931204796, -0.0030060613062232733, -0.0070215873420238495, 0.0181882344186306, -0.005702434107661247, 0.018009567633271217, 0.015579705126583576, 0.0019385298946872354, -0.0038115486968308687, -0.004675102885812521, 0.042332012206315994, -0.015651172026991844, 0.0012715088669210672, 0.008248429745435715, -0.01361437514424324, 0.025251509621739388, 0.012304156087338924, -0.02553737536072731, -0.025084754452109337, 0.012375622056424618, 0.033184297382831573, 0.041688814759254456, 0.0020859295036643744, -0.010416247881948948, 0.016687436029314995, -0.012566199526190758, -0.01475783996284008, -0.014233752153813839, 0.023262357339262962, -0.009195361286401749, 0.04650089517235756, 0.0026383064687252045, -0.010487714782357216, -0.019903430715203285, -0.04695351421833038, 0.030135056003928185, 0.005759011954069138, -0.004957991186529398, -0.029587145894765854, 0.02918216958642006, 0.021987872198224068, 0.000498776906169951, -0.023131337016820908, -0.05193234980106354, -0.011154735460877419, -0.00836158450692892, 0.01236371137201786, -0.00859980657696724, 0.01672316901385784, -0.017616501078009605, 6.820959970355034e-05, 0.024167601019144058, -0.011607357300817966, 0.014138463884592056, 0.011690734885632992, -0.03015887923538685, -0.013507175259292126, 0.028515148907899857, 0.005827500484883785, 0.06527277082204819, 0.017842812463641167, -0.05950780585408211, -0.00035230768844485283, 0.040164195001125336, -0.02026076428592205, 0.050455376505851746, 0.010434114374220371, -0.012947354465723038, -0.009368072263896465, -0.015341483056545258, 0.013626286759972572, -0.007968518882989883, -0.014507707208395004, 0.013781130313873291, 0.0017717746086418629, 0.02837221510708332, -0.010320959612727165, 0.006083589047193527, -0.024084223434329033, 0.0009893649257719517, -0.011928956024348736, -0.0004883546498604119, -0.006819098722189665, -0.008433051407337189, -0.016866102814674377, -0.019462721422314644, 0.004957991186529398, 0.0025832175742834806, -0.0030641278717666864, 0.03344633802771568, -0.002438795519992709, -0.0010533869499340653, -0.011803889647126198, 0.03044474497437477, -0.015865571796894073, -0.04147441312670708, 0.01672316901385784, 0.023834090679883957, 0.04447600990533829, -0.04049770534038544, 0.02079676277935505, -0.0063605220057070255, -0.017128147184848785, -0.014293307438492775, 0.004576836246997118, -0.045714762061834335, -0.011124957352876663, 0.004910346586257219, -0.02968243509531021, 0.024798888713121414, 0.011583535000681877, -0.01293544378131628, -0.013388064689934254, -0.03235051780939102, -0.009975537657737732, 0.02188067138195038, 0.008439007215201855, -0.0405215285718441, -0.00388003746047616, -0.00893331691622734, 0.002971816807985306, -0.01698521338403225, 0.0009164094808511436, -0.014078907668590546, -0.019022010266780853, -0.033089008182287216, 0.004901413340121508, 0.021547161042690277, -0.043427832424640656, 0.03420864790678024, -0.008343718014657497, 0.022905025631189346, 0.0075873639434576035, 0.017985746264457703, -0.004675102885812521, -0.044404543936252594, 0.02030840702354908, 0.0134237976744771, -0.008504518307745457, -0.028681904077529907, -0.030968833714723587, -0.00033779104705899954, 0.04116472601890564, -0.015865571796894073, -0.049693066626787186, 0.006527277175337076, 0.0247750673443079, -0.009040516801178455, 0.021809205412864685, 0.005175368394702673, -0.004532169550657272, -0.010499625466763973, -0.005243857391178608, 0.016377748921513557, 0.01966520957648754, -0.015615438111126423, -0.03582855686545372, 0.0074027422815561295, 0.029205990955233574, -0.019415076822042465, -0.0062294998206198215, -0.05374283716082573, 0.03294607251882553, -0.019176853820681572, -0.0032249274663627148, -0.019248321652412415, 0.02634732984006405, -0.029086880385875702, -0.03180260956287384, -0.03997361660003662, 0.0006517599103972316, 0.00876656174659729, 0.001461341860704124, -0.009356160648167133, -0.00852238480001688, 0.043380189687013626, 0.01475783996284008, 0.009659893810749054, -0.003183238673955202, 0.07494457811117172, -0.044356897473335266, 0.010082737542688847, -0.010392425581812859, -0.036948200315237045, -0.02135658450424671, -0.0193912535905838, 0.02297649160027504, 0.013388064689934254, -0.011881312355399132, 0.018652766942977905, 0.029110703617334366, 0.014471974223852158, -0.005803678650408983, -0.036567043513059616, 0.03990215063095093, 0.013530997559428215, 0.006557054817676544, 0.03685291111469269, 0.012554288841784, -0.007694563828408718, 0.043261077255010605, -0.045714762061834335, -0.016580237075686455, -0.01579410582780838, 0.0028110172133892775, -0.012923532165586948, -0.01672316901385784, 0.0349709577858448, -0.00979687087237835, -0.01554397214204073, 0.03761522099375725, 0.025632664561271667, 0.010809313505887985, -0.0021722849924117327, -0.036185890436172485, -0.003766882000491023, 0.00844496302306652, 0.041307657957077026, -0.015651172026991844, 0.04340400919318199, 0.004704880528151989, 0.008069762960076332, -0.029587145894765854, 0.012351799756288528, 0.0328984297811985, -0.004195681307464838, -0.012983087450265884, -0.014126552268862724, -0.006622565910220146, -0.01040433719754219, -0.062318820506334305, 0.02613293007016182, 0.006568965967744589, -0.0071764313615858555, -0.016199082136154175, 0.027729017660021782, 0.04121236875653267, -0.03380367159843445, -0.0032189718913286924, -0.005642878822982311, 0.040164195001125336, -0.018652766942977905, -0.030802078545093536, 0.03930659592151642, 0.010261403396725655, 0.020296497270464897, 0.013662019744515419, 0.03235051780939102, 0.011619267985224724, -0.0031564387027174234, -0.0025623731780797243, 0.01943889819085598, -0.04628649353981018, 0.0040706149302423, -0.03730553388595581, 0.010029137134552002, 0.0025504620280116796, 0.014579174108803272, -0.0066702100448310375, -0.018486011773347855, -0.0022794848773628473, 0.026823773980140686, -0.036019135266542435, -0.020630007609725, -0.030087413266301155, -0.011964689940214157, 0.008611718192696571, 0.01742592453956604, 0.03285078704357147, 0.028991593047976494, 0.011261935345828533, 0.016139525920152664, 0.015377216972410679, -0.0033023497089743614, -0.00038934373878873885, 0.02825310453772545, 0.023834090679883957, -0.02123747207224369, -0.03027798980474472, -0.03225523233413696, 0.029420390725135803, 0.029992124065756798, 0.010332870297133923, -0.03730553388595581, 0.01725916936993599, -0.012863976880908012, 0.003513771342113614, 0.028872480615973473, -0.012816332280635834, -0.008462829515337944, -0.029634790495038033, 0.00039455483783967793, 0.01644921489059925, -0.05988895893096924, 0.00037333820364438, 0.001852174405939877, -0.013816864229738712, 9.882482117973268e-05, 0.04569093883037567, 0.023917468264698982, -0.00656301062554121, 0.0014122085412964225, -0.01148824580013752, 0.016639791429042816, -0.029491858556866646, -0.01634201593697071, -0.02934892475605011, 0.006348610855638981, -0.019188765436410904, 0.0064796325750648975, 0.0209635179489851, -0.032421987503767014, 0.002919705817475915, 0.023429112508893013, -0.032588742673397064, -0.030563855543732643, 0.018974365666508675, 0.008909494616091251, -0.008248429745435715, 0.00941571593284607, 0.013983619399368763, 0.02520386502146721, 0.004815057851374149, -0.012155267409980297, 0.04295139014720917, -0.014876951463520527, -0.009790915995836258, -0.02227373793721199, 0.014614907093346119, -0.03146909922361374, 0.015305750072002411, -0.012923532165586948, 0.0004291714576538652, -0.050217155367136, 0.0011620756704360247, 0.02765754982829094, 0.04056917130947113, -0.03549504652619362, 0.008182918652892113, 0.0616517998278141, -0.011786023154854774, 0.023226624354720116, -0.02782430499792099, 0.0265140850096941, 0.0011315535521134734, 0.03742464259266853, 0.030611500144004822, 0.02744315005838871, -0.016473036259412766, 0.035423580557107925, 0.001390619669109583, 0.014078907668590546, 0.025680309161543846, 0.016044238582253456, 0.003754971083253622, -0.020546630024909973, 0.04552418366074562, -0.021106451749801636, -0.027895772829651833, 0.010297137312591076, 0.012506644241511822, 0.04442836344242096, -0.0001450733543606475, -0.02194022759795189, -0.011315534822642803, 0.02439391240477562, 0.06470103561878204, -0.020951606333255768, -0.01361437514424324, 0.002212484832853079, 0.01034478098154068, 0.006122299935668707, 0.011786023154854774, -0.01764032430946827, 0.011797934770584106, -0.025299154222011566, 0.0021588848903775215, 0.012518554925918579, 0.04878782480955124, 0.002208018209785223, -0.0023241513408720493, -0.008998828008770943, -0.00017429274157620966, 0.051598839461803436, 0.01596086099743843, 0.04916897788643837, 0.010463892482221127, -0.024084223434329033, -0.0009566093795001507, 0.02629968523979187, -0.026561729609966278, 0.014317129738628864, -0.030373279005289078, -0.05931722745299339, 0.029610969126224518, -0.010606825351715088, -0.015079439617693424, 0.03647175803780556, -0.0070870984345674515, 0.02782430499792099, -0.013399976305663586, 0.013697752729058266, 0.041950859129428864, 0.031445275992155075, 0.023000314831733704, 0.025084754452109337, -0.03861575201153755, -0.021058807149529457, 0.014876951463520527, -0.019784320145845413, -0.01067233644425869, -0.02782430499792099, 0.01179197896271944, 0.02451302297413349, -0.011821756139397621, -0.010195892304182053, -0.013602464459836483, -0.01883143186569214, -0.046858225017786026, 0.04090268164873123, 0.01074975822120905, -0.023381469771265984, 0.022023605182766914, 0.005559501238167286, -0.012143355794250965, -0.007224075961858034, -0.002839305903762579, 0.008176962845027447, -0.0068667433224618435, 0.014162285253405571, -0.00857598427683115, 0.023762624710798264, -0.029849190264940262, 0.03609060123562813, -0.03306518495082855, 0.005386790260672569, 0.02379835769534111, -0.004919279832392931, 0.012756776995956898, 0.012518554925918579, -0.05855491757392883, 0.009022650308907032, -0.011351268738508224, 0.0037609266582876444, -0.003436349332332611, -0.004618525039404631, 0.03320811688899994, 0.009427627548575401], [-0.013383448123931885, 0.010792563669383526, 0.0046385182067751884, -0.0031759224366396666, -0.05420240759849548, -0.005602438468486071, -0.018052611500024796, 0.022365178912878036, 0.020481912419199944, -0.003981046378612518, -0.04357142746448517, 0.042546216398477554, 0.006112257484346628, -0.034857138991355896, -0.006078826729208231, 0.02614285610616207, 3.8937261706450954e-05, 0.048675186932086945, -0.030644863843917847, -0.003981046378612518, 0.014063206501305103, 0.013650894165039062, 0.015043842606246471, 0.029953962191939354, -0.014809827320277691, -0.03302959352731705, 0.022599194198846817, -0.007778223603963852, -0.006619290914386511, -0.05433613061904907, 0.011054438538849354, -0.025518814101815224, 0.019612712785601616, -0.020604493096470833, 0.08125903457403183, 0.04551041126251221, -0.018175190314650536, 0.020192179828882217, -0.011544756591320038, -0.018932955339550972, -0.0384230874478817, 0.02353525534272194, -0.030444279313087463, -0.022120021283626556, -0.031625501811504364, 0.039537448436021805, -0.002703712787479162, -0.014910119585692883, 0.00852484442293644, 0.030644863843917847, -0.036773838102817535, -0.016269637271761894, 0.0011220199521631002, 0.005867098458111286, 0.04537668824195862, 0.020582204684615135, 0.00698702922090888, -0.025897696614265442, 0.011366458609700203, -0.04379429668188095, -0.01618048921227455, 0.017495431005954742, -0.045198388397693634, 0.04214504733681679, -0.001546172657981515, -0.008379977196455002, -0.0032372120767831802, 0.046847641468048096, -0.03412166237831116, 0.018620934337377548, 0.027881255373358727, 0.023579830303788185, -0.010107233189046383, -0.050324440002441406, -0.02554110251367092, 0.029107049107551575, 0.03565947711467743, 0.0019612712785601616, -0.021072523668408394, -0.00444071926176548, -0.007761508226394653, -0.028772741556167603, -0.023245522752404213, 0.02291121520102024, -0.01224680244922638, -0.01014066394418478, -0.013962914235889912, 0.035592615604400635, -0.011243879795074463, 0.0048056719824671745, -0.007343623787164688, 0.0006658293423242867, 0.008463554084300995, 0.06699524819850922, 0.008251826278865337, 0.014308365993201733, 0.016759954392910004, -0.02797040343284607, -0.038200218230485916, 0.03728644177317619, 0.0038612529169768095, -0.006580288056284189, 0.03543660789728165, -0.03568176552653313, 0.025362804532051086, -0.09298209100961685, -0.059952497482299805, 0.002792861545458436, -0.01014066394418478, -0.029820239171385765, -0.012781694531440735, -0.007198757492005825, 0.007638928946107626, 0.06338472664356232, 0.057411760091781616, -0.006479995790868998, 0.06093313544988632, -0.033297039568424225, 0.03267299756407738, 0.003253927454352379, 0.0336090587079525, 0.013472597114741802, -0.021284250542521477, -0.07154183089733124, -0.06851077079772949, 0.015511873178184032, -0.009076451882719994, 0.010876141488552094, -0.031179755926132202, -0.015300145372748375, -0.01368432492017746, -0.032338690012693405, 0.03552575409412384, -0.018754657357931137, 0.007538636680692434, 0.005855955183506012, -0.030667152255773544, -0.024783337488770485, -0.008803433738648891, 0.04305882006883621, -0.005139979533851147, -0.01271483302116394, 0.02509535849094391, -0.019857872277498245, -0.04715966060757637, -0.012090791948139668, 0.018676651641726494, 0.014196930453181267, 0.045042380690574646, 0.01570131443440914, -0.0671735405921936, 0.005794665310531855, -0.014007489196956158, -0.00284997234120965, -0.005279274191707373, 0.02507307194173336, -0.043994881212711334, 0.045644134283065796, 0.024917060509324074, 0.023379245772957802, -0.032561562955379486, -0.053845811635255814, -0.006491139531135559, -0.015266714617609978, 0.03311873972415924, -0.028416147455573082, -0.03947058692574501, 0.043727435171604156, -0.07154183089733124, -0.030800875276327133, -0.033787354826927185, -0.013361160643398762, -0.0006794105865992606, 0.012146510183811188, 0.012347094714641571, 0.040607232600450516, 0.020604493096470833, -0.004658019635826349, 0.011812202632427216, -0.02158512733876705, 0.037843622267246246, 0.009511051699519157, 0.002927977591753006, -0.033898793160915375, -0.02053763158619404, -0.011555899865925312, 0.011388746090233326, 0.04029520973563194, -0.01007937453687191, 0.031736936420202255, -0.014052063226699829, 0.019289549440145493, -0.025050783529877663, 0.05121592804789543, -0.018788088113069534, 0.02053763158619404, -0.04296967014670372, -0.03877968341112137, 0.07127438485622406, -0.03755388781428337, 0.006424278020858765, -0.01494355034083128, 0.01110458467155695, 0.019400985911488533, -0.053578365594148636, 0.005499360151588917, 0.00432371161878109, -0.0012195262825116515, 0.08852465450763702, 0.013517171144485474, 0.012402812018990517, -0.05241943523287773, -0.04091925173997879, 0.023446107283234596, -0.0167822428047657, -0.018164046108722687, 0.024270731955766678, 0.05420240759849548, -0.02422615885734558, 0.011756484396755695, 0.007555352058261633, -0.0001601890689926222, -0.010842710733413696, 0.029552793130278587, -0.04267993941903114, 0.024805624037981033, 0.00698702922090888, -0.019400985911488533, 0.0036885272711515427, -0.03554804250597954, -0.02509535849094391, 0.025853121653199196, 0.00046350358752533793, -0.013338874094188213, 0.010474971495568752, 0.03273985907435417, -0.0323609784245491, -0.005295989569276571, 0.05197368934750557, 0.0028583300299942493, -0.00048056719242595136, 0.02004731260240078, -0.010213097557425499, 0.008725428953766823, 0.014408658258616924, -0.005061974283307791, -0.029463645070791245, 0.025607964023947716, 0.0648111030459404, 0.04475264623761177, 0.01085385400801897, -0.01789660006761551, -0.011360887438058853, -0.050591886043548584, 0.033051878213882446, 0.036773838102817535, -0.011979356408119202, -0.0491655059158802, 0.041454143822193146, -0.03251698613166809, 0.010413682088255882, 0.03423310071229935, -0.032717570662498474, 0.03891340643167496, -0.057902079075574875, -0.030533429235219955, 0.043147969990968704, -0.10412567853927612, -0.07274533808231354, 0.050458163022994995, -0.04281366243958473, -0.014453232288360596, 0.034010227769613266, 0.009377328678965569, -0.026075994595885277, -0.010480543598532677, -0.004103626124560833, -0.03180379793047905, 0.0013532493030652404, 0.04428461566567421, -0.049120932817459106, -0.022654913365840912, 0.0052681309171020985, -0.023824989795684814, -0.0074327727779746056, -0.013695468194782734, -0.028170987963676453, 0.024671901017427444, -0.01814175955951214, 0.07096236199140549, 0.023312384262681007, -0.005463143810629845, -0.06423163414001465, 0.0031146325636655092, 0.03577091544866562, 0.022008584812283516, 0.0010272994404658675, -0.004072980955243111, 0.005663728341460228, -0.018453780561685562, 0.012458530254662037, 0.02340153232216835, 0.008558275178074837, 0.0564311258494854, -0.0371750071644783, -0.018030323088169098, 0.008580561727285385, 0.025117645040154457, -0.01531128864735365, 0.0017133265500888228, -0.051884543150663376, 0.016392216086387634, -0.01410778146237135, 0.010040371678769588, -0.023958712816238403, -0.011578187346458435, -0.01541158091276884, -0.02317866124212742, 0.0042847092263400555, -0.012146510183811188, 0.02471647597849369, 0.02915162406861782, -0.01182334590703249, -0.038824256509542465, 0.018576359376311302, 0.0032372120767831802, 0.015244427137076855, 0.014330653473734856, -0.04604530334472656, 0.0101963821798563, -0.00917117204517126, -0.0006564269424416125, 0.028527583926916122, -0.046758491545915604, -0.033297039568424225, -0.02291121520102024, 0.01788545772433281, 0.022487759590148926, -0.030533429235219955, 0.04658019542694092, 0.021930579096078873, -0.012792837806046009, 0.02386956289410591, -0.023936424404382706, 0.0056219398975372314, -0.0020587777253240347, 0.07020460069179535, 0.0600416474044323, 0.011667335405945778, 0.012503105215728283, 0.0035408749245107174, -0.0062515526078641415, -0.006758585572242737, 0.0071820421144366264, -0.06298355758190155, -0.031625501811504364, 0.020426195114850998, 0.017729446291923523, -0.01110458467155695, -0.024872485548257828, -0.006647149566560984, 0.005270916502922773, 0.027903541922569275, 0.0575900599360466, -0.01326086837798357, 0.018063753843307495, 0.0019863443449139595, 0.003760960651561618, 0.06574716418981552, 0.017239129170775414, 0.02674460969865322, -0.016592800617218018, -0.01284855604171753, -0.0028611160814762115, 0.017016258090734482, -0.025251368060708046, 0.015110704116523266, -0.007098465226590633, -0.023802701383829117, 0.010057087056338787, 0.014876688830554485, -0.007466203533113003, 0.004563299007713795, 0.0009318824741058052, 0.09298209100961685, 0.01488783210515976, -0.08865837752819061, 0.01847606711089611, 0.004435147624462843, -0.00030174743733368814, -0.009806356392800808, -0.016748812049627304, 0.005095405038446188, -0.032227255403995514, 0.021206246688961983, 0.015801606699824333, 0.04961124807596207, 0.005039687268435955, -0.007248903624713421, -0.028460722416639328, 0.03831165283918381, -0.052151989191770554, 0.0012264910619705915, -0.04548812285065651, -0.03565947711467743, -0.02088308148086071, 0.0022537903860211372, -0.0044825077056884766, 0.052508581429719925, 0.012792837806046009, 0.050235290080308914, 0.0021465334575623274, 0.02890646457672119, -0.03650639206171036, 0.010346820577979088, 0.015199853107333183, -0.013706612400710583, 0.046401895582675934, -0.014007489196956158, -0.022354036569595337, 0.022008584812283516, 0.02485019899904728, -0.04426232725381851, 0.05014614388346672, -0.05915015935897827, 0.021039092913269997, 0.009098738431930542, -0.00284997234120965, 0.00373588758520782, -0.015199853107333183, -0.026967480778694153, -0.0360160730779171, -0.0018540143501013517, 0.06650492548942566, -0.044440627098083496, 0.00402004923671484, 0.04702593758702278, -0.025585675612092018, -0.010408109985291958, -0.012859699316322803, 0.004120341502130032, -0.011801058426499367, -0.004568870645016432, 0.02674460969865322, -0.0551830418407917, 0.04653561860322952, -0.02854987047612667, 0.032093532383441925, -0.029686516150832176, 0.0323609784245491, -0.019534708932042122, -0.0270120557397604, -0.03659553825855255, -0.000507033197209239, -0.06650492548942566, 0.013171720318496227, -0.03561490401625633, -0.018888380378484726, 0.02770295739173889, -0.022610338404774666, 0.03802191838622093, 0.0360160730779171, 0.035102300345897675, 0.030421992763876915, 0.005933959968388081, 0.06267153471708298, -0.02772524394094944, -0.032338690012693405, 0.0014918476808816195, -0.028594445437192917, -0.031246617436408997, -0.032093532383441925, 0.02233174815773964, -0.0016938252374529839, -0.034990862011909485, -0.040139202028512955, 0.008346546441316605, -0.010775848291814327, -0.09931164979934692, -0.015132991597056389, -0.0007661216077394783, 0.039894040673971176, -0.03913627937436104, -0.04751625657081604, 0.03325246274471283, 0.06338472664356232, 0.026544025167822838, -0.014531238004565239, -0.03445596992969513, -0.05821409821510315, -0.003958759363740683, -0.012380525469779968, 0.018765801563858986, -0.008675282821059227, -0.02123967744410038, -0.03207124397158623, -0.005783521570265293, -0.0033542197197675705, 0.028260136023163795, 0.0026103851851075888, 0.008948300033807755, -0.034277673810720444, 0.03334161266684532, -0.023312384262681007, 0.0840672180056572, 0.00048613897524774075, 0.0052151987329125404, 0.019400985911488533, 0.02750237286090851, -0.018687795847654343, -0.03643953055143356, 0.01571245864033699, 0.01163390465080738, -0.006535714026540518, -0.006663864944130182, -0.011093441396951675, 0.018431494012475014, 0.019133539870381355, -0.00770579045638442, 0.01128288172185421, -0.004811243619769812, -0.023245522752404213, -0.031848371028900146, -0.05183996632695198, -0.023334670811891556, 0.02473876252770424, -0.0076500726863741875, -0.0696251317858696, -0.008318687789142132, 0.04210047051310539, -0.012881986796855927, -0.025229081511497498, -0.030288269743323326, 0.02975337766110897, 0.041454143822193146, 0.01703854463994503, 0.01163390465080738, -0.0245827529579401, -0.018988672643899918, -0.01906667836010456, 0.0018512284150347114, -0.02975337766110897, -0.0042067039757966995, 0.0008928799070417881, 0.006028680596500635, 0.035458892583847046, -0.007744792848825455, 0.005530005320906639, 0.0014862759271636605, 0.009410759434103966, -0.0005272309645079076, 0.016057908535003662, 0.027324074879288673, -0.007884087972342968, -0.0010091911535710096, -0.00482795899733901, 0.0600416474044323, -0.02614285610616207, 0.037152718752622604, -0.014742965810000896, 0.032204966992139816, 0.025830835103988647, -0.004839102737605572, 0.003192637814208865, 0.01571245864033699, 0.0420336090028286, -0.008179392665624619, 0.015768175944685936, 0.029374495148658752, -0.025496527552604675, -0.021741138771176338, 0.018921811133623123, 0.011500181630253792, 0.04858604073524475, 0.03501315042376518, 0.011611618101596832, 0.02567482553422451, -0.03563719242811203, -0.02209773287177086, 0.0039531877264380455, 0.012358237989246845, -0.015779320150613785, -0.00019414217968005687, 0.0012104721972718835, -0.01523328386247158, 0.008491413667798042, -0.02293350175023079, -0.024783337488770485, -0.005811380688101053, 0.030176833271980286, 0.013517171144485474, -0.006992600858211517, 0.004499223083257675, -0.00015705493569839746, -0.008664138615131378, 0.051527947187423706, -0.03171464800834656, 0.021273108199238777, -0.02507307194173336, 0.01932298019528389, -0.007583211176097393, 0.02133996970951557, -0.01523328386247158, -0.004995112773030996, 0.01704968884587288, -0.04600072652101517, 0.010006940923631191, -0.024047860875725746, -0.019646143540740013, 0.0360383614897728, -0.012859699316322803, -0.008942728862166405, 0.009583485312759876, -0.018531786277890205, -0.005828096065670252, 0.008307544514536858, -0.0612451545894146, -0.028393860906362534, -0.02723492681980133, -0.01921154372394085, -0.012358237989246845, 0.003273428650572896, 0.004802885930985212, -0.004114769399166107, -0.009750639088451862, -0.006167975254356861, 0.004660805221647024, -0.06071026250720024, -0.01488783210515976, -0.025986844673752785, 0.028059551492333412, 0.05139422416687012, 0.022398609668016434, -0.016403360292315483, -0.01606905274093151, -0.02854987047612667, -0.00423456309363246, 0.0030756299383938313, 0.019222687929868698, -0.003153635188937187, 0.007276762276887894, 0.006630434188991785, -0.014252647757530212, -0.04216733202338219, 0.025139933452010155, 0.03396565467119217, 0.030912309885025024, 0.04140957072377205, 0.03060029074549675, 0.0034767992328852415, 0.0049978988245129585, -0.02471647597849369, 0.04452977329492569, -0.04239020496606827, 0.007661215960979462, -0.012469673529267311, -0.038712821900844574, 0.03525830805301666, 0.04644647240638733, 0.023735839873552322, -0.020615635439753532, -0.013706612400710583, -0.01969071850180626, -0.00930489506572485, -0.020459625869989395, 0.03519144654273987, 0.014843258075416088, 0.0258085485547781, 0.040005479007959366, -0.010341248475015163, 0.021395687013864517, 0.002370798261836171, -0.016759954392910004, -0.03385421633720398, 0.010541833005845547, 0.0323609784245491, -0.014497807249426842, 0.008090244606137276, -0.02435988187789917, 0.06347387284040451, -0.011405461467802525, -0.031870659440755844, -0.03467884287238121, 0.02398099936544895, 0.008848007768392563, 0.01619163155555725, 0.0360160730779171, -0.036194369196891785, 0.008073529228568077, -0.003969903104007244, 0.0007006530649960041, 0.022153452038764954, -0.022866640239953995, 0.03369820863008499, 0.006518998648971319, 0.02520679496228695, 0.00410919776186347, -0.012815125286579132, -0.006546857301145792, 0.009316039271652699, 0.013272012583911419, -0.0018540143501013517, 0.017718303948640823, -0.08451296389102936, -0.0017941175028681755, 0.0027176423463970423, 0.02473876252770424, -0.0011986320605501533, 0.00893715675920248, -0.0012285804841667414, -0.018052611500024796, 0.03227182850241661, -0.05968505144119263, -0.05545048788189888, -0.043036531656980515, 0.013160576112568378, -0.028772741556167603, -0.016525939106941223, 0.03207124397158623, 0.00936061330139637, -0.01594647392630577, -0.009254748933017254, -0.005000684875994921, -0.004705379717051983, 0.001540600904263556, -0.03325246274471283, -0.013606320135295391, -0.01836463250219822, -0.03659553825855255, 0.04379429668188095, 0.015634452924132347, -0.01014066394418478, 0.017785165458917618, 0.02710120379924774, -0.02146254852414131, -0.0012940490851178765, -0.018788088113069534, -0.00017359619960188866, 0.00910988263785839, -0.029842525720596313, -0.016771098598837852, -0.0003945526259485632, -0.004006119444966316, -0.027390936389565468, -0.008602849207818508, 0.018687795847654343, 0.00816267728805542, 0.000265530776232481, -0.01823090761899948, -0.028839603066444397, -0.002961408346891403, 0.0060119652189314365, -0.010591979138553143, 0.003008768428117037, 0.02473876252770424, -0.0191892571747303, 0.03563719242811203, -0.0027371435426175594, 0.02304493822157383, 0.006062111351639032, -0.011087869293987751, 0.00924360565841198, 0.02302265167236328, 0.025518814101815224, -0.003613308072090149, -0.011093441396951675, -0.019590426236391068, -0.0047220950946211815, 0.026232004165649414, -0.02002502605319023, 0.05005699396133423, 0.020983373746275902, 0.05050273612141609, -0.002200858434662223, 0.013662037439644337, 0.026098281145095825, -0.0062515526078641415, 0.01536700688302517, -0.01693825237452984, -0.029686516150832176, 6.056060556147713e-06, 0.003769318340346217, -0.001270368928089738, 0.012436242774128914, 0.005379566457122564, -0.016291923820972443, -0.008385549299418926, 0.033765070140361786, 0.022476615384221077, 0.022521190345287323, -0.025162220001220703, -0.023936424404382706, 0.003994976170361042, -0.029129337519407272, 0.006368560250848532, -0.006831018719822168, -0.010084946639835835, -0.03296273201704025, -0.010519546456634998, 0.014497807249426842, -0.005270916502922773, 0.02712349034845829, -0.0031090606935322285, 0.017807452008128166, 0.057768356055021286, -0.03777676075696945, -0.03189294785261154, -0.02398099936544895, 0.011143587529659271, -0.0227997787296772, 0.022465471178293228, 0.05126050114631653, 0.016860246658325195, 0.020593348890542984, 0.02772524394094944, -0.016648519784212112, -0.007555352058261633, 0.024449029937386513, -0.03334161266684532, -0.013662037439644337, 0.004788956604897976, -0.022175738587975502, -0.026477163657546043, 0.005365637131035328, 0.028260136023163795, -0.001437522703781724, -0.014787539839744568, 0.027301788330078125, -0.001088589197024703, -0.014832114800810814, 0.02890646457672119, -0.02641030214726925, 0.003903041360899806, -0.003485156921669841, -0.007455059792846441, 0.028104126453399658, 0.010597551241517067, 0.012335950508713722, 0.0245827529579401, 0.021195102483034134, 0.01572360098361969, -0.017963461577892303, 0.03739788010716438, 0.04666934162378311, -0.01932298019528389, 0.034990862011909485, 0.010547405108809471, -0.01669309288263321, -0.05139422416687012, 0.02915162406861782, 0.019835585728287697, 0.010965289548039436, -0.0014946336159482598, 0.02315637469291687, 0.002042062347754836, -0.013528314419090748, -0.029463645070791245, 0.013283155858516693, -0.045176103711128235, 0.005647012963891029, -0.004825173411518335, -0.007833941839635372, 0.0043153539299964905, 0.019612712785601616, 0.01290427427738905, 0.019367555156350136, -0.0007563709514215589, -0.005608010105788708, 0.014698391780257225, 0.016013335436582565, 0.04720423370599747, 0.01813061535358429, 0.03084544837474823, -0.0008817363413982093, -0.026677748188376427, 0.022588051855564117, -0.012079648673534393, 0.03777676075696945, 0.025652537122368813, -0.03191523253917694, 0.01668195053935051, 0.006073255091905594, 0.0025574532337486744, 0.024070147424936295, -0.04129813238978386, 0.010051515884697437, 0.01039139460772276, 0.03933686390519142, 0.04428461566567421, 0.002245432697236538, 0.00917117204517126, 0.013929483480751514, 0.02422615885734558, -0.013884909451007843, 0.0016659662360325456, -0.019757580012083054, -0.028884178027510643, -0.018910666927695274, -0.020615635439753532, -0.01930069364607334, -0.00936061330139637, 0.012937705032527447, -0.03791048377752304, 0.020103031769394875, -0.0372195802628994, 0.004502009134739637, 0.007232188247144222, -0.011522469110786915, 0.014018632471561432, -0.00672515481710434, 0.011310741305351257, -0.00036530071520246565, 0.016035621985793114, -0.0008601456065662205, 0.0348125658929348, 0.022521190345287323, -0.05816952511668205, 0.02422615885734558, -0.02411472238600254, 0.034389108419418335, 0.04666934162378311, 0.009031876921653748, -0.026700034737586975, 0.0034517261665314436, -0.023223236203193665, -0.014542381279170513, -0.03679612651467323, 0.0011888814624398947, -0.014040919952094555, -0.024270731955766678, 0.0003259499208070338, 0.013884909451007843, -0.004538225941359997, -0.0008267148514278233, 0.01655936986207962, -0.03697442263364792, -0.00044748466461896896, -0.007087321486324072, 0.015913043171167374, -0.04143185541033745, 0.02988710068166256, 0.026700034737586975, -0.008887010626494884, -0.013305443339049816, -0.02953050658106804, -0.03898026794195175, 0.02605370618402958, -0.012202227488160133, -0.0004673341754823923, -0.0009743673726916313, 0.023089513182640076, -0.007967664860188961, 0.016280781477689743, -0.013806904666125774, -0.009856502525508404, 0.01754000596702099, 0.05558421090245247, -0.0021813572384417057, 0.007939806208014488, 0.000786319375038147, -0.010435969568789005, -0.009583485312759876, 0.019869016483426094, -0.031179755926132202, 0.06044281646609306, 0.0396043099462986, 0.008686426095664501, -0.012614540755748749, -0.01765144243836403, 0.02398099936544895, 0.010402538813650608, 0.013461452908813953, 0.035102300345897675, 0.04185531288385391, -0.03302959352731705, 0.028193274512887, 0.0168156735599041, -0.012971135787665844, 0.005192911718040705, -0.005811380688101053, 0.019378697499632835, 0.029664229601621628, 0.01079813577234745, 0.009316039271652699, 0.021195102483034134, 0.01932298019528389, -0.014063206501305103, 0.02569711208343506, -0.008446838706731796, -0.02138454280793667, -0.007377054542303085, 0.0010217276867479086, 0.02329009771347046, 0.02302265167236328, -0.003671811893582344, -0.008981730788946152, 0.03862367197871208, 0.005588509142398834, 0.004761097487062216, 0.030154546722769737, 0.009460905566811562, 0.024872485548257828, -0.002362440573051572, 0.041944462805986404, 0.05482644960284233, 0.0006999565521255136, -0.03610522300004959, 0.017740590497851372, -0.015378150157630444, -0.04631274938583374, 0.014219217002391815, -0.029485931620001793, -0.023134086281061172, -0.0008866116404533386, -0.021150527521967888, -0.03935914859175682, 0.013461452908813953, -0.017428569495677948, -0.011388746090233326, 0.039426010102033615, -0.045911580324172974, 0.023356959223747253, 0.010201954282820225, 0.048051148653030396, 0.028059551492333412, -0.04738253355026245, 0.034389108419418335, 0.0077113620936870575, 0.03675154969096184, 0.034277673810720444, 0.0027636096347123384, -0.0016938252374529839, 0.023423820734024048, 0.0636521726846695, 0.004866961855441332, 0.04617902636528015, -0.02507307194173336, -0.03171464800834656, -0.018877236172556877, 0.03692984953522682, 0.012491961009800434, 0.0092993238940835, -0.02244318462908268, 0.010335677303373814, 0.013907196931540966, -0.006853306200355291, 0.008797861635684967, 0.0027510731015354395, 0.014586955308914185, -0.01326086837798357, 0.025229081511497498, 0.030800875276327133, -0.0647219568490982, -0.011578187346458435, -0.017707159742712975, -0.017428569495677948, 0.002693962072953582, -0.029552793130278587, 0.004348784685134888, -0.0025839193258434534, -4.333375545684248e-05, -0.021150527521967888, 0.006825447082519531, -0.017796307802200317, 0.002413979498669505, -0.0006139419856481254, -0.034500546753406525, 0.011355315335094929, 0.004471364431083202, 0.012035073712468147, -0.02317866124212742, 0.022053159773349762, -0.0002387165295658633, 0.04568870738148689, 0.013205151073634624, 0.017963461577892303, -0.03753160312771797, -0.009628059342503548, -0.03454511985182762, 0.020337047055363655, -0.009321610443294048, 0.0074996342882514, 0.015690170228481293, 0.01608019694685936, -0.002799826208502054, -0.006017536856234074, -0.016124770045280457, 0.001325390418060124, 0.009511051699519157, 0.019612712785601616, -0.016882535070180893, 0.031514063477516174, -0.017584580928087234, 0.013294299133121967, 0.010781420394778252, -0.012491961009800434, 0.03142491728067398, 0.016982827335596085, -0.001757900812663138, 0.0026368512772023678, -0.001001529861241579, 0.027792105451226234, -0.013182863593101501, 0.0021980726160109043, 0.04430690407752991, -0.0396043099462986, -0.030065398663282394, -0.028750455006957054, 0.022498901933431625, 0.005248629488050938, 0.031001459807157516, -0.006975885480642319, 0.011333027854561806, -0.005933959968388081, 0.004245706833899021, -0.02473876252770424, 0.020727071911096573, -0.009566769935190678, -0.026365727186203003, 0.0014612028608098626, -0.012725976295769215, -0.016403360292315483, -0.04622359946370125, -0.024404454976320267, -0.016024477779865265, -0.012391668744385242, 0.009733923710882664, 0.0002953050716314465, -0.0015587091911584139, 0.00043738578096963465, 0.008680853992700577, -0.03920314088463783, -0.047828275710344315, -0.03993861749768257, 0.013472597114741802, 0.019256118685007095, -0.0011115728411823511, 0.010413682088255882, -0.024560466408729553, 0.0031814940739423037, 0.017116550356149673, 0.010786992497742176, -0.019389841705560684, -0.008563846349716187, 0.009583485312759876, 0.019244974479079247, -0.0018177976598963141, 0.057055167853832245, -0.0007403520867228508, -0.022030871361494064, -0.000978546217083931, 0.03639495372772217, -0.043259404599666595, 0.005872670561075211, 0.02340153232216835, -0.018877236172556877, 0.03659553825855255, -0.008859151974320412, 0.027569234371185303, 0.0258085485547781, -0.012012787163257599, 0.026856044307351112, -0.013650894165039062, 0.01013509277254343, -0.01584618166089058, 0.017016258090734482, 0.0008650209638290107, 0.013294299133121967, 0.011238307692110538, 0.0128931300714612, -0.02471647597849369, -0.012737120501697063, -0.00011021704267477617, -0.0395820215344429, -0.014408658258616924, -0.016849104315042496, 0.0210168045014143, -0.016247350722551346, 0.03860138729214668, -0.01693825237452984, -0.006797587964683771, 0.007321336772292852, -0.014664961025118828, -0.018810374662280083, -0.022175738587975502, 0.02015874907374382, 0.021295394748449326, -0.015679027885198593, 0.009867646731436253, 0.0017704374622553587, 0.009811928495764732, -0.018754657357931137, 0.030399706214666367, -0.025028496980667114, -0.024939347058534622, -0.00235547567717731, -0.032472413033246994, 0.041097547858953476, 0.01355060189962387, -0.012213371694087982, -0.004117555450648069, -0.0011714695720002055, -0.037130434066057205, -0.010396966710686684, -0.02734636329114437, 0.014475519768893719, -0.0011770414421334863, -0.02181914448738098, 0.009906648658216, -0.015166422352194786, 0.005167838651686907, 0.019980451092123985, 0.0008399478974752128, -0.00035502773243933916, -0.008658567443490028, -0.007482918910682201, -0.001643679104745388, -0.032561562955379486, -0.006975885480642319, -0.0062348367646336555, -0.006468852516263723, 0.012202227488160133, 0.02051534317433834, 0.012993422336876392, 0.027658382430672646, 0.004167701583355665, 0.025897696614265442, -0.019267262890934944, 0.017005113884806633, 0.006808731704950333, 0.042902808636426926, -0.014408658258616924, -0.01942327246069908, 0.006485567893832922, 0.03579320013523102, -0.001202810904942453, -0.006039824336767197, 0.00693131098523736, -0.02362440526485443, 0.004794528242200613, -0.012458530254662037, 0.0407855287194252, 0.008664138615131378, -0.019033247604966164, -0.035102300345897675, -0.0012195262825116515, -0.015144134871661663, -0.0011770414421334863, -0.03490171581506729, -0.037152718752622604, -0.013818047940731049, -0.005733375437557697, 0.00911545380949974, 0.032450124621391296, 0.004942181054502726, -0.003407151671126485, 0.009561197832226753, -0.019033247604966164, -0.022108877077698708, 0.021217389032244682, -0.022654913365840912, -0.021094810217618942, -0.006179118994623423, 0.034389108419418335, -0.033297039568424225, 0.010530689731240273, 0.031112894415855408, 0.018520642071962357, -0.030689438804984093, 0.0018136188155040145, 0.016704237088561058, -0.008591705933213234, -0.03637266904115677, -0.03429996222257614, 0.04586700350046158, 0.006981457117944956, -0.01645907759666443, 0.012324807234108448, 0.03902484104037285, 0.016514796763658524, 0.03434453532099724, 0.0016018906608223915, 0.021663133054971695, -0.028460722416639328, -0.021808000281453133, -0.011466750875115395, 0.01128288172185421, -0.011734196916222572, -0.015578734688460827, -0.007661215960979462, 0.004248492419719696, -0.016057908535003662, 0.030511140823364258, -0.008775575086474419, -0.0052207703702151775, -0.0025797404814511538, -0.0014848830178380013, 0.024894773960113525, 0.019178112968802452, 0.010040371678769588, 0.004371072165668011, 0.006658293306827545, -0.0007072695298120379, 0.018866093829274178, -0.03505772352218628, 0.01764029823243618, -0.010424825362861156, -0.0017133265500888228, 0.014820970594882965, -0.034277673810720444, 0.009031876921653748, -0.0008768609841354191, -0.003164778696373105, 0.009616916067898273, -0.0030533429235219955, -0.04296967014670372, 0.012971135787665844, -0.018208621069788933, -0.023312384262681007, -0.02242089807987213, 0.038200218230485916, 0.004950538743287325, 0.0002571730874478817, -0.008519272319972515, 0.0059283883310854435, -0.0167822428047657, 0.0063351294957101345, 0.004538225941359997, 0.00518733961507678, -0.034611981362104416, -0.024315306916832924, -0.03748702630400658, -0.0092993238940835, -0.022342892363667488, -0.026967480778694153, 0.01182334590703249, 0.002349904039874673, 0.02158512733876705, -0.006836590822786093, 0.019746435806155205, -0.01967957429587841, -0.039426010102033615, -0.04756082966923714, -0.00575566291809082, 0.012636828236281872, 0.012324807234108448, 0.006507854908704758, 0.006112257484346628, 0.004270779900252819, -0.012179940938949585, 0.004931037314236164, 0.011678479611873627, -0.01368432492017746, -0.010090517811477184, -0.022510046139359474, 0.012090791948139668, 0.025229081511497498, 0.01355060189962387, -0.005933959968388081, -0.00936061330139637, -0.007282334379851818, 0.02125081978738308, -0.01691596582531929, 0.017707159742712975, 0.008129246532917023, -0.0056275115348398685, -0.03902484104037285, -0.014910119585692883, 0.018643220886588097, 0.021150527521967888, -0.017261415719985962, -0.019501278176903725, 0.06815417855978012, -0.007638928946107626, 0.01835348829627037, 0.02062677964568138, -0.022621482610702515, 0.01416349969804287, -0.009923364035785198, -0.009722779504954815, 0.0012731548631563783, -0.02136225625872612, -0.004072980955243111, -0.03639495372772217, -0.0035965926945209503, -0.0007145825074985623, -0.007120752241462469, -0.022510046139359474, 0.01716112345457077, -0.0033542197197675705, -0.0010955538600683212, 0.023579830303788185, 0.0032845723908394575, -0.020359333604574203, -0.05968505144119263, -0.00575566291809082, -0.040027763694524765, -0.0018205835949629545, 0.0021576769649982452, -0.016481366008520126, -0.022866640239953995, -0.009516623802483082, 0.01702740043401718, 0.03525830805301666, -0.006546857301145792, -0.014508950524032116, -0.01775173470377922, -0.024047860875725746, -0.02389185130596161, 0.02890646457672119, -0.005128835793584585, 0.005783521570265293, 0.02183028683066368, -0.006323985755443573, 0.015255570411682129, -0.002933549229055643, 0.01693825237452984, -0.013428022153675556, -0.020593348890542984, 0.0022510045673698187, -0.03291815519332886, -0.020604493096470833, 0.032583847641944885, -0.023824989795684814, -0.013216294348239899, 0.02964194118976593, 0.002093601506203413, -0.029352208599448204, -0.018431494012475014, -0.01942327246069908, 0.002008631592616439, -0.004919893573969603, -0.0011770414421334863, 0.009739494882524014, 0.005217984784394503, -0.004332069307565689, 0.011611618101596832, -0.004869747441262007, 0.010419254191219807, 0.008012238889932632, -0.01631421223282814, 0.025630250573158264, -0.014052063226699829, -0.012358237989246845, 0.015690170228481293, -0.038467664271593094, 0.01090957224369049, -0.010642125271260738, -0.0025449167005717754, 0.019958164542913437, -0.007092893123626709, 0.026432588696479797, 0.024671901017427444, 0.011667335405945778, 0.014620386064052582, 0.009706064127385616, -0.005006256513297558, -0.030444279313087463, 0.016826815903186798, -0.008006667718291283, -0.012503105215728283, 0.007271190639585257, -0.020214466378092766, -0.034990862011909485, -0.014430945739150047, 0.013528314419090748, 0.024092435836791992, -0.018074898049235344, 0.032338690012693405, -0.019713005051016808, -0.00804566964507103, 0.02690061926841736, -0.013929483480751514, -0.013249725103378296, -0.027190351858735085, 0.006569144781678915, -0.017673728987574577, 0.0005007649306207895, -0.015445011667907238, -0.013673181645572186, -0.045911580324172974, -0.02170770801603794, 0.025295943021774292, -0.019133539870381355, -0.013762329705059528, 0.018520642071962357, -0.005212412681430578, -0.0007452273857779801, -2.302717803104315e-05, -0.0062515526078641415, 0.03697442263364792, 0.018676651641726494, 0.03175922483205795, -0.009082023054361343, 0.034745704382658005, -0.027992689982056618, -0.007516349665820599, 0.01706083118915558, 0.005440856330096722, -0.02674460969865322, 0.0010788384824991226, 0.017495431005954742, 0.010586407966911793, 0.03824479132890701, 0.016013335436582565, -0.0020462411921471357, 0.013227437622845173, -0.0027970403898507357, -0.011065581813454628, 0.0041454145684838295, -0.023356959223747253, 0.04791742563247681, -0.0061735473573207855, -0.01835348829627037, 0.009349470026791096, -0.0007058766204863787, 0.005474287085235119, -0.013361160643398762, -0.015333576127886772, 0.027145778760313988, 0.028260136023163795, 0.033074166625738144, -0.02556338906288147, 0.0034572978038340807, -0.03071172535419464, -0.011171446181833744, 0.01554530393332243, 0.000889397575519979, -0.021083666011691093, 0.04582243040204048, -0.026811471208930016, 0.014386370778083801, -0.04415089264512062, 0.01439751498401165, -0.021774569526314735, -0.02126196399331093], [0.026884939521551132, -0.0014102846616879106, 0.06541314721107483, 0.02690785937011242, -0.025716029107570648, 0.03635082393884659, -0.023928284645080566, 0.001763393054716289, 0.05079030245542526, 0.058491360396146774, -0.013958165422081947, 0.016422046348452568, 0.005729952827095985, 0.017992053180933, -0.06853023916482925, -0.011419796384871006, -0.0021515972912311554, 0.028076769784092903, 0.027526695281267166, -0.01007898710668087, 0.02173944190144539, 0.04542706906795502, -0.04258501157164574, -0.014703059569001198, -0.015447953715920448, 0.0029366009403020144, 0.007752626668661833, 0.036465421319007874, -0.004472228232771158, -0.028581006452441216, 0.05670361593365669, -0.035021472722291946, -0.00417713588103652, 0.0015055451076477766, 0.018622348085045815, -0.009740919806063175, -0.009798219427466393, -0.02450127899646759, 0.008657959289848804, 0.028305968269705772, -0.016674162819981575, 0.030781308189034462, 0.01769409514963627, -0.01277779508382082, 0.007930254563689232, 0.04955263435840607, 0.026953699067234993, -0.042378731071949005, -0.02247287519276142, 0.042676690965890884, 0.02450127899646759, -0.0026572656352072954, -0.02157900296151638, 0.016444964334368706, -0.012250639498233795, -0.00947734247893095, 0.025601429864764214, 0.006606635637581348, 0.0584455206990242, 0.013923785649240017, -0.0005250069661997259, -0.03575490787625313, -0.010136286728084087, 0.04794824868440628, 0.01191830262541771, 0.028901882469654083, 0.000661451427731663, 0.008256861940026283, -0.012411078438162804, -0.002147299936041236, -0.015001016668975353, 0.015092696063220501, -0.008824127726256847, -0.07366427779197693, -0.04645846039056778, -0.009534642100334167, -0.04609174281358719, -0.019539140164852142, 0.03197313845157623, -0.0008781153010204434, -0.03470059484243393, 0.04205785691738129, -0.002045593224465847, 0.0077583566308021545, 0.027595452964305878, 0.01416444405913353, -0.022461416199803352, -0.010875450447201729, 1.8655920939636417e-05, 0.013178892433643341, -0.03777185082435608, -0.018312929198145866, -0.029910355806350708, 0.04666473716497421, 0.006979082711040974, 0.013476849533617496, 0.01850774884223938, 0.008858507499098778, -0.013591448776423931, 0.047535691410303116, -0.041026465594768524, -0.041920337826013565, 0.01426758337765932, 0.05266973003745079, 0.009878438897430897, -0.029497798532247543, -0.06431299448013306, 0.06348787993192673, 0.008629309013485909, 0.0101133668795228, 0.0141300642862916, -0.023469887673854828, -0.020891409367322922, 0.02878728322684765, -0.02832888811826706, -0.004950679372996092, -0.04836080223321915, -0.03628206253051758, 0.0686219185590744, 0.05147789791226387, -0.061700135469436646, -0.03275241330265999, 0.06092086061835289, -0.07852327823638916, -0.007689597085118294, -0.04698561504483223, -0.015264594927430153, 0.02628902532160282, -0.052027974277734756, -0.003374942345544696, 0.04583962261676788, -0.038551125675439835, 0.022312436252832413, -0.05097366124391556, -0.03781769052147865, 0.0322023369371891, -0.020100675523281097, -0.03715301677584648, -0.03011663258075714, 4.767499922309071e-05, 0.015035396441817284, 0.04595422372221947, 0.03632790222764015, 0.006045100279152393, -0.03433387726545334, 0.0013873649295419455, 0.02052469179034233, 0.039215799421072006, -0.013373710215091705, 0.0372905358672142, 0.015688611194491386, 0.009763839654624462, -0.008978836238384247, 0.003887773025780916, 0.013683128170669079, 0.009523182176053524, 0.011603155173361301, 0.0035554359201341867, 0.027068298310041428, -0.0038161487318575382, -0.010984320193529129, -0.018840085715055466, -0.03857404366135597, -0.01423320360481739, 0.013992545194923878, -0.014004005119204521, 0.0012118850136175752, -0.04306632652878761, -0.04625217989087105, -0.03447139635682106, -0.055190905928611755, -0.0533573217689991, -0.05216549336910248, -0.011941222473978996, -0.029726997017860413, -0.06559650599956512, 0.047994088381528854, 0.013534149155020714, -0.043868519365787506, 0.024890916422009468, -0.016754383221268654, 0.012789255008101463, -0.051890455186367035, -0.04347888380289078, -0.06820935755968094, 0.06257108598947525, -0.015711531043052673, 0.009803949855268002, -0.028718525543808937, -0.011631804518401623, 0.007414559368044138, 0.015092696063220501, 0.0174648966640234, 0.015241675078868866, -0.021831121295690536, -0.027022458612918854, 0.007168171461671591, -0.0202267337590456, 0.006904593203216791, -0.028901882469654083, 0.016972120851278305, -0.04748985171318054, 0.05257805064320564, 0.01281217485666275, -0.035479869693517685, 0.026701580733060837, 0.010543113574385643, 0.005268692038953304, 0.05363235995173454, -0.03486103564500809, 0.017820153385400772, -0.03527358919382095, -0.04100354388356209, 0.06078334152698517, -0.04306632652878761, 0.039834633469581604, 0.006606635637581348, 0.02060491032898426, 0.006916053127497435, 0.05679529532790184, -0.01105307973921299, -0.02764129266142845, -0.00903040636330843, -0.0005916176596656442, -0.036992575973272324, -0.0005053102504462004, 0.0031084995716810226, -0.01911512389779091, 0.02622026577591896, -0.05482419207692146, 0.014072764664888382, 0.05111118033528328, -0.007752626668661833, 0.024524198845028877, 0.01049727387726307, -0.00985551904886961, -0.011838083155453205, -0.06041662395000458, -0.00587893184274435, 0.01716693863272667, 0.004661316983401775, -0.005165552720427513, 0.010709282010793686, 0.04276837036013603, 0.006658205296844244, -0.027687132358551025, 0.013591448776423931, 0.010159206576645374, 0.01647934503853321, 0.005901851691305637, 0.014049844816327095, -0.011551585048437119, 0.05198213458061218, -0.05537426471710205, 0.028901882469654083, 0.048223283141851425, 0.04595422372221947, -0.026770340278744698, 0.02225513756275177, -0.0491400770843029, -0.014428021386265755, 0.023091711103916168, 0.016066787764430046, 0.004959274549037218, -0.10607288777828217, -0.006325867958366871, 0.029612397775053978, -0.021315425634384155, -0.0005797996418550611, 0.017992053180933, 0.0052658268250525, -0.0006310110911726952, -0.031812697649002075, -0.023882444947957993, 0.009563291445374489, 0.04118690267205238, 0.014405101537704468, -0.03531942889094353, 0.030437510460615158, 0.009557561948895454, -0.06399211287498474, -0.005535134579986334, -0.037496812641620636, -0.012880934402346611, -0.032408613711595535, -0.008010474033653736, -0.006429007276892662, 0.0011553018121048808, -0.024845076724886894, -0.004139890894293785, 0.04286004975438118, -0.03250029310584068, 0.008675148710608482, -0.016995040699839592, 0.02322923019528389, 0.033004529774188995, 0.0021172177512198687, -0.008910076692700386, -0.03169810026884079, 0.01752219721674919, -0.012227719649672508, 0.01881716586649418, 0.0565202571451664, -0.04338720440864563, -0.027893410995602608, 0.028053849935531616, -0.0032230985816568136, 0.021556083112955093, 0.01505831629037857, 0.021601922810077667, -0.044533196836709976, 0.051890455186367035, -0.0015313299372792244, -0.035846587270498276, -0.0383448451757431, 0.016124088317155838, -0.04226413369178772, 0.0029967655427753925, 0.011648994870483875, 0.041026465594768524, -0.002569883828982711, -0.0034293769858777523, 0.038184408098459244, -0.019447460770606995, 0.034585997462272644, -0.007477588951587677, 0.04286004975438118, 0.06637577712535858, -0.036075785756111145, -0.03866572305560112, -0.04253917187452316, -0.024592958390712738, 0.01657102443277836, -0.006830104161053896, 0.04153069853782654, -0.020135054364800453, 0.008669419214129448, 0.004059671889990568, -0.033164966851472855, 0.0031056345906108618, 0.05592434108257294, -0.03903244063258171, 0.038482364267110825, 0.02988743595778942, -0.011660454794764519, 0.009448692202568054, -0.020501771941781044, 0.0222436785697937, 0.011614615097641945, 0.04437275603413582, -0.03632790222764015, 0.007723976857960224, -0.018198329955339432, 0.029795756563544273, -0.03710717707872391, -0.0005959151312708855, -0.0007413126877509058, -0.010703552514314651, 0.012880934402346611, 0.028741445392370224, 0.018244169652462006, -0.011872462928295135, -0.013706048019230366, 0.04817744344472885, -0.0025684514548629522, -0.03373796492815018, -0.022954192012548447, 0.009970118291676044, 0.04047638922929764, -0.015241675078868866, 0.03763433173298836, 0.004351899493485689, -0.01574591174721718, -0.007953174412250519, -0.02660990133881569, 0.03272949159145355, 0.0031514742877334356, -0.01525313500314951, 0.009557561948895454, -0.004827485419809818, -0.03142306208610535, 0.01581467129290104, 0.06344203650951385, -0.017923293635249138, 0.01866818778216839, 0.06481722742319107, -0.0349297933280468, -0.05198213458061218, -0.003097039647400379, -0.014668679796159267, -0.02007775567471981, -0.00012516365677583963, 0.004380549304187298, 0.054732512682676315, -0.028581006452441216, 0.00943723227828741, 0.05404491722583771, 0.019424540922045708, 0.004724346101284027, 0.001842179917730391, 0.022289518266916275, 0.002708835294470191, -0.015230215154588223, -0.019355781376361847, 0.0055551896803081036, -0.01956206001341343, -0.021968640387058258, 0.0018407474271953106, 0.0019653739873319864, -0.05454915389418602, 0.019458919763565063, -0.0005364668322727084, 0.01655956357717514, 0.024547118693590164, 0.040957704186439514, 0.02892480231821537, 0.03229401633143425, -0.007070762105286121, -0.004271680023521185, -0.00502230366691947, 0.051890455186367035, 0.0624794065952301, 0.010101906955242157, -0.0059190415777266026, -0.02823720872402191, 0.026059826835989952, -0.00011218174040550366, -0.005071008577942848, -0.013133052736520767, -0.05326564237475395, 0.018083732575178146, 0.04512910917401314, 0.003988047130405903, 0.01203290093690157, -0.0501943901181221, -0.01976833865046501, -0.02599106729030609, 0.022449955344200134, 0.015069776214659214, -0.025945227593183517, 0.01887446455657482, -0.030185392126441002, 0.015001016668975353, -0.0087324483320117, -0.046206340193748474, -0.0013272003270685673, -0.03101050667464733, 0.04891087859869003, -0.028947722166776657, 0.008887156844139099, 0.005139767657965422, -0.0033348326105624437, -0.01976833865046501, -0.013465389609336853, -0.010050337761640549, 0.0025025568902492523, 0.02134980447590351, 0.029566558077931404, 0.04201201722025871, -0.01611262746155262, -0.019367240369319916, -0.007701057009398937, 0.026013987138867378, 0.044854070991277695, 0.012502757832407951, 0.01281217485666275, -0.012147500179708004, -0.0021186501253396273, 0.007804195862263441, -0.03295869007706642, 0.021968640387058258, 0.012514217756688595, -0.00587893184274435, 0.015768831595778465, 0.06115005910396576, -0.001471165451221168, 0.011964142322540283, -0.041393179446458817, 0.010027417913079262, -0.05042358860373497, 0.019527679309248924, 0.043433044105768204, -0.01760241575539112, 0.0062112691812217236, 0.06000406667590141, -0.0056354086846113205, 0.012273559346795082, 0.031285542994737625, -0.002747512422502041, -0.0010485814418643713, -0.02052469179034233, -0.01236523874104023, 0.02862684614956379, -0.009626321494579315, 0.01596364937722683, -0.050377748906612396, -0.043937280774116516, -0.00584455206990242, 0.06463386863470078, 0.0002768283593468368, 0.021831121295690536, -0.0141300642862916, -0.013511229306459427, -0.02908524125814438, 0.02083410881459713, -0.025372231379151344, 0.02000899612903595, -0.05253221094608307, -0.008841317147016525, -0.010262345895171165, -0.03609870374202728, 0.022495795041322708, -0.014336342923343182, -0.04430399835109711, -0.039811715483665466, -0.012903854250907898, -0.01426758337765932, -0.0035411110147833824, -0.03149182349443436, -0.0472148135304451, 0.016582483425736427, -0.012285019271075726, -0.038023967295885086, 0.029108161106705666, -0.01464575994759798, -0.0032660732977092266, 0.023137550801038742, -0.046183422207832336, -0.004274544771760702, 0.041095223277807236, -0.0018493423704057932, -0.03596118465065956, -0.06646745651960373, 0.022610394284129143, 0.01686898246407509, 0.006835834123194218, 0.008107883855700493, 0.013683128170669079, 0.022300977259874344, -0.05276140943169594, 0.05386155843734741, -0.011288007721304893, -0.009316903539001942, -0.01956206001341343, 0.008915807120501995, -0.03515899181365967, -0.009391392581164837, 0.03236277401447296, 0.030620869249105453, -0.008623579517006874, -0.028420567512512207, 0.007208280730992556, 0.00013680262782145292, 0.003171528922393918, 0.018851544708013535, 0.01322473119944334, 0.012926774099469185, -0.05592434108257294, 0.01416444405913353, -0.0005393318133428693, -0.00992427859455347, 0.0076953270472586155, -0.04480823129415512, -0.001595791894942522, 0.021223746240139008, 0.020857028663158417, 0.017499277368187904, -0.026059826835989952, -0.017923293635249138, -0.02406580187380314, -0.018175411969423294, 0.006984812673181295, 0.007775546051561832, -0.042309973388910294, 0.015012476593255997, 0.0059419614262878895, 0.0006098818848840892, 0.016662703827023506, 0.010142017155885696, 0.004646991845220327, 0.005122578237205744, 0.046710576862096786, -0.04698561504483223, -0.01325911097228527, -0.009695080108940601, 0.023263609036803246, 0.004340439569205046, -0.04730649292469025, -0.04065974801778793, 0.011941222473978996, 0.023286528885364532, 0.017247159034013748, 0.008961646817624569, -0.01796913333237171, -0.03644249960780144, 0.008938726969063282, -0.006979082711040974, -0.0011022996623069048, 0.00616542948409915, 0.03903244063258171, 0.0025885063223540783, -0.046206340193748474, -0.010394134558737278, 0.016983581706881523, -0.04182865843176842, -0.038711562752723694, 0.017728473991155624, -0.009454422630369663, -0.0024867996107786894, 0.02569310925900936, 0.02876436337828636, -0.0006936824647709727, 0.017717014998197556, 0.006681125145405531, -0.04173697903752327, 0.009878438897430897, -0.012147500179708004, -0.028672685846686363, -0.021223746240139008, 0.02210615947842598, -0.005091063212603331, -0.01123643759638071, 0.03213357552886009, 0.021762361750006676, 0.0031657989602535963, -0.03169810026884079, -0.01820979081094265, -0.0001574841735418886, 0.028214288875460625, -0.007964634336531162, -0.03206481784582138, 0.034723516553640366, -0.00035489897709339857, 0.02988743595778942, -0.021682143211364746, -0.023767845705151558, -0.0005013708723708987, -0.005062413401901722, -0.010216506198048592, -0.013694588094949722, 0.020662210881710052, -0.003097039647400379, -0.003839068580418825, -0.011861003004014492, -0.004747265949845314, 0.008291241712868214, 0.005644003860652447, 0.015791751444339752, 0.002167354803532362, 0.015768831595778465, -0.0033004528377205133, 0.0018765595741569996, -0.019355781376361847, -0.027297496795654297, 0.004134160932153463, -0.02060491032898426, 0.003890638006851077, 0.039376236498355865, 0.03806980699300766, 0.025143034756183624, -0.03123970329761505, -0.019149502739310265, -0.007540618069469929, 0.027182897552847862, -0.0055150799453258514, -0.020742429420351982, 0.04010967165231705, 0.020559070631861687, -0.026701580733060837, -0.0008709528483450413, -0.041393179446458817, 0.02060491032898426, -0.006721234880387783, -0.012113120406866074, 8.203233846870717e-06, -0.03733637556433678, -0.03481519594788551, 0.01903490349650383, -0.014015465043485165, 0.011075999587774277, -0.022495795041322708, -0.0031113645527511835, 0.007557807955890894, -0.0003394997038412839, -0.011861003004014492, -0.011637534946203232, 0.009763839654624462, -0.01352268923074007, 0.0065034967847168446, -0.02427208051085472, 0.003016820177435875, 0.014599920250475407, -0.012961153872311115, 0.013992545194923878, 0.0030225501395761967, 0.019344322383403778, 0.02278229407966137, 0.0008602092275395989, -0.009357013739645481, 0.01056603342294693, -0.028878962621092796, 0.02157900296151638, -0.008486060425639153, -0.05303644388914108, -0.058262161910533905, 0.03836776688694954, -0.008239672519266605, 0.016880441457033157, 0.020031915977597237, 0.009379933588206768, -0.016238687559962273, -0.0072541204281151295, -0.03582366555929184, -0.004675641655921936, -0.019057823345065117, -0.021189365535974503, 0.009471612051129341, 0.007489048410207033, -0.002548396587371826, -0.005623948760330677, -0.026266105473041534, 0.03953667730093002, -0.00024352299806196243, 0.023790765553712845, 0.029474878683686256, -0.000512114551384002, -0.01767117530107498, 0.0042516253888607025, -0.033760882914066315, 0.007586457766592503, 0.026586981490254402, -0.04622926190495491, 0.01239961851388216, 0.020696589723229408, -0.024180401116609573, 0.018003512173891068, 0.0023793629370629787, 0.005328856408596039, -0.02654114179313183, -0.032408613711595535, 0.015195835381746292, -0.03531942889094353, -0.003415052080526948, -0.044166479259729385, 0.010892640799283981, 0.019516220316290855, 0.006916053127497435, 4.966145752405282e-06, 0.028581006452441216, 0.03334832563996315, -0.037428054958581924, 0.00652068667113781, -0.01767117530107498, 0.00020627830235753208, -0.016147008165717125, -0.002905086148530245, -0.018484828993678093, 0.005463510286062956, -0.01964227855205536, -0.01165472436696291, 0.013282030820846558, 0.017430517822504044, 0.0010664875153452158, 0.06793432682752609, -0.02105184830725193, 0.010841071605682373, -0.02314900979399681, 0.026701580733060837, 0.023813685402274132, 0.01464575994759798, -0.024592958390712738, -0.008887156844139099, 0.05487003177404404, 0.0066467453725636005, 0.04059098660945892, 0.022289518266916275, -0.010646252892911434, -5.362878073356114e-05, -0.01277779508382082, -0.027389176189899445, 0.0014059871900826693, -0.024982595816254616, 0.01018785685300827, -0.016605403274297714, 0.02007775567471981, -0.004913434851914644, 0.0037874989211559296, -0.0011037321528419852, 0.015596931800246239, 0.012560057453811169, -0.03763433173298836, -0.013774807564914227, 0.006686855107545853, -0.03034583106637001, 0.008176643401384354, 0.01120205782353878, 0.029474878683686256, -0.00917938444763422, -0.01969957910478115, 0.01124216802418232, -0.006331597920507193, -0.01146563608199358, -0.00014289069804362953, 0.004105511587113142, 0.04157653823494911, 0.009574751369655132, -0.02929151989519596, -0.0062341890297830105, 0.013637288473546505, -0.0364195816218853, -0.03401300311088562, 0.008417300879955292, -0.007345799822360277, 0.03206481784582138, -0.023469887673854828, -0.056611936539411545, 0.005202797241508961, 0.01678876206278801, 0.0019066418753936887, -0.004804565571248531, 0.027091218158602715, -0.015551092103123665, 0.00395366782322526, -0.00709941191598773, 0.0012921043671667576, -0.02337820827960968, -0.015172915533185005, -0.014416561461985111, 0.0013078617630526423, -0.03664878010749817, 0.008468871004879475, 0.022266598418354988, 0.01153439562767744, 0.01760241575539112, -0.02031841315329075, -0.05120285972952843, -0.025051355361938477, -0.006572256330400705, 0.023997044190764427, -0.011442716233432293, 0.02203739993274212, -0.019974615424871445, -0.03417344018816948, -0.017739934846758842, -0.020960168913006783, -0.002991035580635071, 0.036763377487659454, 0.017820153385400772, -0.03146890178322792, 0.007345799822360277, -0.03192729875445366, -0.05216549336910248, 0.0028363268356770277, -0.04118690267205238, 0.04008674994111061, -0.00045087566832080483, 0.009769570082426071, -0.023469887673854828, 0.009557561948895454, 0.013648748397827148, -0.012147500179708004, -0.029474878683686256, 0.02592230774462223, 0.005930501502007246, 0.019539140164852142, -0.029497798532247543, 0.006738424766808748, -0.016914822161197662, -0.0033004528377205133, -0.02045593224465847, 0.007552077993750572, 0.0007728274213150144, 0.0005887526785954833, -0.0037130096461623907, -0.017888912931084633, -0.017992053180933, -0.024547118693590164, 0.039215799421072006, 0.02548683062195778, -0.013579988852143288, -0.024111641570925713, 0.028741445392370224, 0.028649765998125076, 0.022679153829813004, -0.03298160806298256, -0.013133052736520767, -0.03309620916843414, 0.052807245403528214, 0.03380672261118889, 0.030895907431840897, 0.006045100279152393, 0.010285265743732452, -0.012353778816759586, -0.011511475779116154, 0.03295869007706642, -0.026036906987428665, -0.004406333900988102, -0.013637288473546505, -0.029108161106705666, 0.0457250252366066, -0.04240165278315544, 0.004540987778455019, -0.010227966122329235, -0.020100675523281097, -0.018702566623687744, 0.018267089501023293, 0.02443251945078373, 0.027366256341338158, 0.025211794301867485, -0.020639291033148766, 0.005260096862912178, -0.02734333649277687, 0.008961646817624569, -0.030918827280402184, 0.028603926301002502, 0.02427208051085472, -0.017797233536839485, 0.03575490787625313, 0.06555066257715225, -0.015482333488762379, 0.05592434108257294, -0.008147993125021458, 0.00263291341252625, -0.021693602204322815, -0.00709941191598773, 0.009534642100334167, -0.028122609481215477, 0.03949083760380745, -0.030024953186511993, -0.0036156002897769213, -0.02436375990509987, 0.05725369229912758, 0.009465882554650307, 0.08874551206827164, 0.04219537600874901, -0.00732287997379899, -0.02052469179034233, -0.014634300023317337, -0.00417713588103652, 0.017338838428258896, 0.05060694366693497, 0.023252150043845177, 0.010995780117809772, -0.0491400770843029, 0.004838945344090462, 0.004300329834222794, 0.021074768155813217, 0.018679646775126457, -0.03350876644253731, 0.008526169694960117, -0.00619980925694108, -0.003704414702951908, 0.011769323609769344, 0.038023967295885086, -0.004222975578159094, 0.019206803292036057, 0.07361843436956406, -0.027687132358551025, -0.009156464599072933, -0.03020831197500229, 0.0830155611038208, 0.023171929642558098, 0.03424219787120819, -0.008445951156318188, 0.030139552429318428, 0.0584455206990242, 0.0009647808619774878, 0.005391885992139578, -0.003240288468077779, 0.0016674163052812219, -0.01657102443277836, -0.017865993082523346, 0.045587506145238876, 0.01851920783519745, 0.02683909982442856, 0.008772558532655239, 0.0192641019821167, -0.002121515106409788, 0.005924771539866924, 0.012388158589601517, 0.026930779218673706, 0.0204444732517004, 0.010852530598640442, 0.004440713673830032, 0.020960168913006783, 0.03724469617009163, -0.002363605657592416, -0.013121592812240124, -0.011213517747819424, 0.016020948067307472, 0.04991935193538666, -0.006480576936155558, 0.013052833266556263, 0.014485321007668972, -0.02285105362534523, 0.031354304403066635, 0.003125689458101988, 0.010949940420687199, 0.007042112294584513, 0.003174393903464079, 0.03527358919382095, 0.011964142322540283, -0.0029509258456528187, 0.012525677680969238, 0.004463633522391319, -0.007299960125237703, 0.04331844672560692, -0.00048095794045366347, -0.031193863600492477, -0.016616864129900932, -0.010451434180140495, -0.009803949855268002, -0.00303401006385684, 0.0034666215069592, -0.0033147777430713177, 0.0005171282682567835, 0.025372231379151344, -0.018863005563616753, 0.0017318782629445195, 0.021326884627342224, -0.018840085715055466, 0.012697575613856316, 0.04269960895180702, -0.005589568987488747, 0.021705061197280884, 0.00940285250544548, 0.00015891666407696903, 0.03206481784582138, 0.05514506623148918, 0.03348584473133087, 0.01709817908704281, 0.02651822194457054, 0.0036156002897769213, 0.006641015410423279, -0.002327793510630727, 0.004649857059121132, 0.003460891544818878, -0.05487003177404404, -0.03875740244984627, 0.02007775567471981, -0.023653246462345123, -0.01112183928489685, -0.05839968100190163, -0.013373710215091705, -0.009156464599072933, -0.008806937374174595, 0.041255660355091095, 0.006984812673181295, -0.008039124310016632, 0.021544624119997025, -0.00013483295333571732, 0.017934752628207207, -0.047168973833322525, -0.005801577586680651, -0.0026715905405580997, -0.007574997842311859, 0.005374696105718613, -0.046343859285116196, -0.001888019498437643, -0.028145529329776764, 0.019917316734790802, -0.010262345895171165, -0.0012433998053893447, 0.013087213039398193, -0.019527679309248924, -0.022232217714190483, -0.025968147441744804, 0.006159699521958828, -0.0018951819511130452, -0.0019037768943235278, 0.018175411969423294, -0.03153766319155693, 0.00035400365595705807, 0.02832888811826706, 0.002724592573940754, 0.00616542948409915, -0.005575244314968586, -0.035021472722291946, 0.0032316935248672962, 0.013213271275162697, -0.005105388350784779, 0.014187363907694817, 0.03827608749270439, -0.006812914274632931, -0.02209469862282276, -0.021991560235619545, -0.039307478815317154, -0.0019266967428848147, -0.004125566221773624, 0.013763347640633583, -0.008073504082858562, 0.025647269561886787, 0.009305443614721298, 0.013293490745127201, -0.008445951156318188, 0.022266598418354988, 0.013591448776423931, 0.02667866088449955, -0.003707279684022069, -0.008686608634889126, 0.015104155987501144, -0.022461416199803352, -0.0029366009403020144, -0.002475339686498046, 0.005586704239249229, 0.012411078438162804, -0.006142509635537863, 0.01948183961212635, 0.01105307973921299, 0.016972120851278305, -0.004013832192867994, 0.0014432319439947605, 0.017705554142594337, -0.033760882914066315, 0.04444151744246483, 0.0012154662981629372, 0.006348787806928158, -0.009265334345400333, -0.017820153385400772, 0.019527679309248924, 0.0025498291943222284, -0.04476239159703255, -0.017510736361145973, -0.005618218798190355, 0.018267089501023293, -0.013637288473546505, -0.029635317623615265, 0.0002236472355434671, 0.007798465900123119, -0.0029366009403020144, -0.02099454775452614, -0.010388405062258244, 0.026013987138867378, -0.015516713261604309, 0.011803703382611275, 0.008222482167184353, 0.006268568802624941, -0.062066853046417236, 0.01971103809773922, 0.030460430309176445, 0.03080422803759575, 0.0013601476093754172, -0.0117578636854887, 0.03094174712896347, -0.04836080223321915, 0.010434244759380817, 0.006113859824836254, 0.051890455186367035, -0.002344983397051692, -0.03804688900709152, 0.0005071008345112205, 0.0455416664481163, -0.03272949159145355, 0.030529189854860306, 0.011769323609769344, 0.026403622701764107, 0.01603240892291069, -0.020662210881710052, 0.03662585839629173, -0.0025140168145298958, -0.002413742709904909, 0.017327377572655678, 0.0605541430413723, 0.022358275949954987, 0.013316410593688488, 0.010210776701569557, 0.0033233726862818003, 0.024157481268048286, -0.033164966851472855, 0.026036906987428665, 0.0025211793836206198, -0.004778780974447727, -0.025372231379151344, -0.043341364711523056, 0.008102153427898884, -0.00619980925694108, -0.0025440992321819067, -0.04501451179385185, -0.05033190920948982, -0.011339576914906502, -0.018782785162329674, -0.00019696714298333973, -0.012055820785462856, 0.010663442313671112, 0.0039593977853655815, -0.0024638797622174025, 0.010818151757121086, -0.00502230366691947, -0.0019095068564638495, -0.008910076692700386, -0.015241675078868866, -0.024088721722364426, 0.031148023903369904, -0.02082264982163906, 0.011861003004014492, -0.008067773655056953, 0.00327753322198987, 0.002383660525083542, 0.007615107577294111, -0.014920798130333424, -0.005039493553340435, -0.00197683391161263, 0.004692831542342901, 0.016215767711400986, -0.018301470205187798, -0.009334093891084194, -0.012216259725391865, 0.0552825853228569, 0.026999538764357567, -0.03898660093545914, 0.014244663529098034, -0.021922800689935684, -0.027687132358551025, -0.014760359190404415, -0.0005174863617867231, 0.007890145294368267, -0.004185730591416359, 0.0031084995716810226, -0.04675641655921936, 0.01784307323396206, 0.007357259746640921, 0.005030898842960596, 0.014175903983414173, -0.029062321409583092, 0.0220259390771389, -0.013946705497801304, -0.008554819971323013, -0.024409599602222443, -0.027228737249970436, -1.1728498066077009e-05, 0.006841564085334539, 0.013350790366530418, -0.0008200995507650077, -0.0046785068698227406, 0.017178399488329887, -0.017487816512584686, 0.02796217054128647, -0.03632790222764015, -0.00015130656538531184, 0.021372724324464798, 0.0014725979417562485, -0.010422784835100174, -0.003297588089480996, -0.04600006341934204, -0.05299060419201851, 0.01588342897593975, -0.004426388535648584, 0.01104734931141138, 0.00030601531034335494, -0.04159945994615555, 0.020398633554577827, -0.01858796738088131, -0.02002045512199402, 0.0011209220392629504, -0.007082222029566765, 0.025647269561886787, 0.003942207898944616, -0.014485321007668972, 0.005578109063208103, 0.018748406320810318, -0.008680879138410091, -0.0008573442464694381, -0.03891783952713013, 0.021154986694455147, -0.017923293635249138, -0.013327870517969131, -0.011803703382611275, -0.0001323261094512418, -0.037886448204517365, 0.026701580733060837, 0.002065648091956973, 0.005549459718167782, 0.004561042413115501, -0.034356798976659775, 0.043960198760032654, -0.003844798542559147, 0.010835341177880764, 0.011792243458330631, 0.015768831595778465, 0.02780173160135746, -0.022278057411313057, -0.023263609036803246, -0.010382674634456635, -0.018026432022452354, -0.027159977704286575, 0.006153969559818506, 0.010394134558737278, 0.02367616631090641, 0.019905857741832733, -0.038092728704214096, -0.04198909550905228, -0.0068816738203167915, 0.011471365578472614, 0.003140014363452792, -0.035250671207904816, -0.003753119148313999, -0.011161948554217815, -0.018244169652462006, 0.02067366987466812, 0.018679646775126457, 0.004202920477837324, 0.004770185798406601, -0.003925018012523651, -0.000926103675737977, -0.017292998731136322, 0.021326884627342224, 0.01123643759638071, -0.016204306855797768, -0.0019882936030626297, 0.0034809464123100042, -0.03559446707367897, -0.0038791783154010773, 0.03440263867378235, 0.013855026103556156, -0.00241660769097507, -0.04182865843176842, -0.0189546849578619, -0.014187363907694817, -0.01723569817841053, 0.04483115300536156, -0.006675395183265209, -0.0034924063365906477, -0.004732941277325153, -0.0010285265743732452, 0.02367616631090641, -0.049048397690057755, 0.009202304296195507, 0.022805213928222656, 0.0021659221965819597, 0.001989726210013032, -0.007357259746640921, 0.011975602246820927, 0.010737932287156582, 0.007804195862263441, -0.0014468131121248007, 0.010686362162232399, 0.008113613352179527, 0.028947722166776657, 0.020559070631861687, 0.02885604277253151, -0.04643553867936134, -0.02631194517016411, -0.029406119138002396, 0.017350297421216965, -0.015528173185884953, 0.022163458168506622, -0.019355781376361847, 0.045449987053871155, 0.0028162719681859016, -0.002032700926065445, 0.0022733588702976704, -0.03582366555929184, -0.019355781376361847, -0.020513232797384262, 0.011585964821279049, -0.0007635162328369915, 0.026495302096009254, 0.025509750470519066, 0.03229401633143425, 0.01807227171957493, 0.022003019228577614, 0.04400603845715523, -0.009087705984711647, 0.028901882469654083, 0.01060041319578886, 0.005850282032042742, 0.006767074577510357, -0.0036929547786712646, -0.046206340193748474, 0.05762040615081787, -0.04451027512550354, -0.005088198464363813, 0.013155972585082054, -0.01971103809773922, 0.01416444405913353, 0.03199605643749237, -0.03094174712896347, 0.0012240612413734198, 0.003844798542559147, -0.02014651522040367, 0.01325911097228527, 0.0006868781056255102, -0.009654970839619637, -0.009208034723997116, -0.02697661891579628, -0.011563044972717762, 0.028833122923970222, 0.0033778073266148567, 0.026426542550325394, -0.01911512389779091, -0.010457164607942104, 0.01589488983154297, 0.021842580288648605, -0.035411108285188675, -0.04494575038552284, 0.00046949801617302, -0.02337820827960968, -0.012903854250907898, -0.016834601759910583, -0.013579988852143288, -0.026701580733060837, 0.034723516553640366, -0.014210283756256104, 0.0014625705080106854, -0.0030225501395761967, -0.007500508334487677, -0.007764086592942476, -0.021407105028629303, -0.06435883045196533, 0.005575244314968586, 0.0322023369371891, 0.0041742706671357155, 0.05464083328843117, 0.020112134516239166, -0.0059419614262878895, -0.03845944628119469, -0.00144179945345968, -0.016834601759910583, 0.021705061197280884, 0.01595218852162361, -0.0013973922468721867, -0.0084230313077569, -0.03149182349443436, -0.033233728259801865, 0.012995533645153046, -0.004469363484531641, 0.020467393100261688, -0.00045159191358834505, 0.04313508793711662, 0.007248390465974808, -0.018312929198145866, 0.018484828993678093, 0.00479883560910821, -0.0077583566308021545, 0.01940162107348442, -0.012961153872311115, -0.03722177445888519, 0.0317668579518795, 0.01314451266080141, 0.009339823387563229, 0.023114630952477455, 0.013706048019230366, 0.008594929240643978, -0.007150981575250626, 0.013270570896565914, 0.005283016711473465, -0.025143034756183624, -0.018714027479290962, 0.00581017229706049, 0.017419056966900826, 0.010514464229345322, -0.010617602616548538, -0.019069284200668335, -0.010279535315930843, 0.016651242971420288, 0.011288007721304893, -0.047764889895915985, 0.011591695249080658, 0.028008010238409042, -0.03648833930492401, -0.019745418801903725, -0.015127075836062431, -0.031193863600492477, -0.029268600046634674, 0.032110657542943954, 0.011253627948462963, 0.01672000251710415, -0.019986076280474663, -0.0004899110062979162, -0.017350297421216965, -0.012181879952549934, 0.05111118033528328, -0.023997044190764427, 0.013133052736520767, -0.0007900172495283186, -0.011270817369222641, -0.021407105028629303, -0.011173408478498459, -0.0023650380317121744, 0.04950679466128349, -0.030093712732195854, -0.01627306640148163, 0.02179674059152603, -0.01730445772409439, -0.004243030212819576, -0.014428021386265755, -0.015436493791639805, -0.030964666977524757, 0.007804195862263441, 0.01101296953856945, 0.0060049910098314285, 0.02232389710843563, 0.009087705984711647, -0.013877945952117443, -0.007334339898079634, -0.011677644215524197, 0.024478359147906303, 0.0235157273709774, -0.02592230774462223, -0.03499855473637581, -0.0012075876584276557, -0.013602908700704575, -0.018542127683758736, 0.0070249224081635475, 0.03421927988529205, 0.0010385540081188083, -0.03417344018816948, 0.010239426046609879, 0.03497563302516937, 0.005884661804884672, 0.005386156029999256, 0.006308678071945906, -0.004240165464580059, 0.007437479216605425, 0.030758388340473175, 0.029429038986563683, 0.024707557633519173, -0.004042482003569603, 0.007815656252205372, 0.044395677745342255, -0.009832599200308323, 0.021074768155813217, -0.033898402005434036, 0.01700650155544281, 0.020031915977597237, -0.008520440198481083, 0.002774729859083891, 0.0036299251951277256, -0.058858077973127365, -0.0060852100141346455, -0.031148023903369904, 0.026174426078796387, -0.02059345133602619, 0.004271680023521185, 0.03101050667464733, 0.004440713673830032], [0.03430419787764549, 0.011523193679749966, -0.05888701230287552, -0.0064006103202700615, -0.0191773883998394, 0.015699477866292, 0.0007110334117896855, 0.02384253591299057, 0.03394104540348053, 0.01606263406574726, -0.023940308019518852, 0.04676321521401405, -0.0204623993486166, -0.005105123855173588, -0.0022976549807935953, 0.04050577059388161, -0.0070885103195905685, 0.0003212526789866388, -0.02708299644291401, 0.02144012413918972, 0.03366169333457947, 0.01610453613102436, 0.024387268349528313, 0.0012439811835065484, -0.01775270141661167, -0.03095199726521969, 0.0018943431787192822, -0.06464162468910217, 0.05279717966914177, -0.035114314407110214, 0.049165625125169754, -0.04019848629832268, 0.047266047447919846, -0.01000771950930357, 0.027739470824599266, 0.021049033850431442, -0.0289127416908741, 0.04296405240893364, 0.00825479719787836, -0.027013160288333893, -0.03913695737719536, -0.005223847925662994, 0.029946336522698402, -0.041706979274749756, -0.007214217912405729, 0.0336337573826313, 0.008331618271768093, 0.008366537280380726, -0.009253473952412605, 0.011544144712388515, -0.0011497004888951778, 0.02708299644291401, 0.01961038075387478, 0.036147911101579666, -0.016579432412981987, 0.010356906801462173, -0.053439684212207794, -0.002081158570945263, 0.030281556770205498, -0.0016376902349293232, -0.011083217337727547, -0.029499376192688942, 0.015755347907543182, 0.026035433635115623, -0.0009995497530326247, -0.04086892679333687, -0.02602146752178669, 0.016397854313254356, -0.01614643819630146, -0.008115122094750404, 0.007577372714877129, 0.03793575242161751, 0.0037467838265001774, -0.022208336740732193, 0.000454380497103557, -0.0002656008873600513, 0.018255531787872314, -0.009728369303047657, -0.0006643295637331903, 0.021998824551701546, -0.0724075585603714, 0.023325737565755844, 0.021509962156414986, -0.006851062644273043, 0.010405792854726315, -0.0254348311573267, -0.0743071436882019, 0.03299125283956528, -0.05634492635726929, -0.012263471260666847, -0.010398809798061848, 0.017110196873545647, 0.004490553867071867, 0.04410938918590546, 0.022445784881711006, -0.015755347907543182, 0.013304051011800766, 0.019512608647346497, -0.03463941812515259, 0.03332647308707237, 0.036371391266584396, 0.005206388421356678, 0.010084540583193302, -0.005796515848487616, 0.01854884997010231, -0.008443358354270458, -0.03137102350592613, -0.016970522701740265, -0.023591119796037674, -0.022026758641004562, -0.022878777235746384, -0.009092847816646099, -0.011069249361753464, 0.050059545785188675, 0.017221936956048012, 0.029694920405745506, -0.004267073702067137, -0.023409543558955193, -0.0038655076641589403, -0.03500257432460785, 0.005394950043410063, -0.029611116275191307, -0.009714401327073574, -0.09715798497200012, 0.0035896494518965483, -0.0009689958533272147, -0.02722267247736454, 0.008527163416147232, -0.015252518467605114, -0.003931853454560041, 0.011313681490719318, -0.039919137954711914, 0.03327060490846634, 0.00849922839552164, -0.010440711863338947, 0.03491877019405365, 0.020602073520421982, -0.01267551351338625, -0.0018733919132500887, 0.0026328752283006907, 0.03575681895017624, -0.009155700914561749, 0.021733442321419716, 0.020252885296940804, -0.031650371849536896, 0.0037642433308064938, 0.008974123746156693, 0.08855399489402771, 0.05226641520857811, 0.0407571867108345, 0.004874660167843103, 0.0020148130133748055, 0.015908991917967796, -0.018562817946076393, 0.015545835718512535, -0.008184959180653095, 0.01966625079512596, 0.01854884997010231, -0.0030152357649058104, 0.02597956359386444, 0.004211203660815954, -0.015043005347251892, 0.007591340225189924, 0.012619643472135067, 0.03994707018136978, -0.005513673648238182, -0.02201279252767563, 6.088960435590707e-05, -0.09307947009801865, -0.0010056605096906424, -0.011551128700375557, -0.010510549880564213, 0.041958391666412354, 0.02229214273393154, -0.030393296852707863, -0.007011688780039549, 0.027460120618343353, 0.011180989444255829, -0.02659413404762745, -0.031147541478276253, -0.01094354223459959, 0.011201941408216953, -0.03190178796648979, -0.04433286935091019, -0.0361199751496315, 0.04519885405898094, 0.02944350615143776, 0.013757995329797268, -0.021901052445173264, 0.00960964523255825, 0.013974491506814957, -0.005394950043410063, -0.018828200176358223, 0.04257296398282051, -0.023591119796037674, -0.01792031154036522, -0.009036977775394917, 0.013485628180205822, 0.03237668424844742, -0.0035652064252644777, -0.019987503066658974, 0.015182680450379848, -0.00736087653785944, 0.037069763988256454, -0.03606410324573517, -0.016914652660489082, -0.0150150703266263, 0.05134455859661102, 0.042237743735313416, 0.015503933653235435, 0.02512754686176777, -0.04662353917956352, -0.07542454451322556, 0.023283835500478745, 0.002414632821455598, 0.007668161764740944, 0.05581416189670563, 0.029499376192688942, 0.007710064295679331, 0.01579725183546543, -0.038410644978284836, -0.006669485010206699, 0.03782401233911514, 0.0012736620847135782, 0.014156068675220013, 0.04072925075888634, 0.0025979564525187016, -0.0018768837908282876, -0.02268323302268982, -0.05369110032916069, -0.02834007330238819, 0.017668897286057472, -0.04184665158390999, -0.000354643736500293, 0.025700213387608528, 0.01574138179421425, -0.0067812250927090645, -0.024457106366753578, 0.009756304323673248, 0.0039213779382407665, -0.003977247979491949, -0.007542454171925783, -0.002625891473144293, -0.0028284203726798296, -0.03260016441345215, -0.015001103281974792, -0.012843123637139797, 0.04072925075888634, -0.031119607388973236, 0.0312313474714756, -0.002638112986460328, 0.0007625386351719499, 0.016970522701740265, -0.055842094123363495, -0.01997353509068489, 0.011174006387591362, -0.01854884997010231, -0.0169844888150692, 0.011858413927257061, -0.03410865366458893, 0.003481401363387704, 0.005873336922377348, -0.07045210897922516, 0.004619752988219261, -0.05031096190214157, -0.041651107370853424, 0.06045137345790863, -0.026133207604289055, -0.021426156163215637, 0.03793575242161751, -0.04545027017593384, 0.06290965527296066, 0.03206939622759819, 0.037293244153261185, -0.02157980017364025, -0.03606410324573517, -0.014086231589317322, -0.017557157203555107, 0.010594354942440987, 0.02927589602768421, -0.011956186965107918, -0.03064471110701561, 0.024219658225774765, -0.0192611925303936, 0.011502242647111416, 0.026314783841371536, 0.01047563087195158, 0.013290083967149258, -0.007849738933146, 0.0552554614841938, 0.05684775486588478, -0.021244579926133156, -0.0036245682276785374, 2.4061213480308652e-05, -0.006952326744794846, 0.006878997664898634, -0.06749099493026733, -0.005405425559729338, -0.02606336958706379, -0.02669190801680088, 0.02482026070356369, 0.047573331743478775, 0.04469602555036545, 0.024121886119246483, -0.02877306565642357, 0.042461223900318146, 0.062965527176857, -0.035030510276556015, -0.05492024123668671, 0.02384253591299057, -0.014316695742309093, 0.03997500613331795, -0.02665000408887863, -0.03357788920402527, -0.02170550636947155, -0.05022715777158737, -0.042181871831417084, 0.042153939604759216, 0.030477100983262062, -0.015224583446979523, 0.006365691777318716, 0.01934499852359295, 0.03064471110701561, -0.022389914840459824, -0.006054914556443691, -0.0006996848387643695, 0.06374770402908325, 0.042852312326431274, 0.002756836824119091, -0.02944350615143776, -0.02001543901860714, 0.012466000393033028, 0.024499008432030678, -0.02300448529422283, -0.0050283027812838554, -0.016788944602012634, -0.022655297070741653, 0.03882967308163643, -0.025546571239829063, -0.0037782108411192894, -0.009414100088179111, -0.005723186302930117, 0.015978828072547913, 0.030840257182717323, -0.010042637586593628, -0.009749320335686207, 0.02015511319041252, -0.0005394949694164097, -0.014749688096344471, 0.00852017942816019, -0.0007389684324152768, 0.023772697895765305, -0.01952657662332058, 0.020937293767929077, -0.0552554614841938, -0.035784754902124405, -0.003924869466573, 0.010217231698334217, -0.01704035885632038, 0.041651107370853424, 0.005394950043410063, 0.024945968762040138, 0.02504374086856842, 0.05221054330468178, -0.029415570199489594, 0.04477982968091965, -0.02042049542069435, 0.014707785099744797, 0.04360656067728996, -0.005311144981533289, 0.049081820994615555, -0.01363228727132082, -0.02740425057709217, -0.01659339852631092, 0.023786665871739388, 0.020671911537647247, 0.00820591114461422, 0.03162243589758873, -0.01114607136696577, -0.01677497662603855, 0.036622803658246994, -0.020183049142360687, 0.04028229042887688, -0.013904653489589691, 0.05514372140169144, 0.014596045948565006, -0.016607366502285004, -0.002487962367013097, 0.020183049142360687, -0.021063001826405525, -0.048159968107938766, -0.00459181796759367, 0.0033295047469437122, -0.03251635655760765, 0.02567227929830551, -0.014372565783560276, 0.0650327131152153, 0.027069030329585075, 0.0073748440481722355, -0.029108285903930664, 0.003683930030092597, -0.03799162060022354, -0.023828567937016487, -0.019009778276085854, -0.006987245753407478, 0.0069174082018435, -2.678924283827655e-05, 0.009085863828659058, 0.018674558028578758, -0.031650371849536896, 0.005555576179176569, -0.03799162060022354, 0.030588841065764427, 0.003036187030375004, 0.01596486195921898, -0.012885025702416897, 0.042321547865867615, 0.05430566892027855, -0.00493751373142004, -0.04477982968091965, 0.030756451189517975, 0.010084540583193302, -0.03972359001636505, 0.03257222846150398, -0.02326986752450466, 0.04274057224392891, 0.021761376410722733, 0.012563773430883884, -0.002217341912910342, -0.04857899248600006, -0.03829890489578247, -0.0433272086083889, 0.04204219952225685, 0.05226641520857811, -0.017599059268832207, -0.026985224336385727, -0.01641182228922844, -0.020210983231663704, -0.011020363308489323, -0.03997500613331795, 0.012843123637139797, -0.03086819127202034, 0.008548114448785782, 0.0312313474714756, -0.02997427061200142, -0.025337059050798416, -0.03994707018136978, -0.0006804795120842755, 0.006219032686203718, -0.01229839026927948, 0.0017948247259482741, -0.030225686728954315, -0.05173564702272415, -0.011264794506132603, -0.06330074369907379, 0.006075866054743528, -0.03229287639260292, -0.042628832161426544, 0.04897008091211319, -0.02606336958706379, 0.06475336849689484, 0.06676468998193741, 0.02935970015823841, 0.009958832524716854, 0.047042567282915115, 0.05022715777158737, -0.009707418270409107, -0.021104903891682625, 0.03100786730647087, -0.027236640453338623, -0.013974491506814957, -0.023227965459227562, -0.013827832415699959, 0.042014263570308685, 0.010315004736185074, -0.0039004264399409294, 0.0023866978008300066, -0.01588105596601963, -0.042098067700862885, -0.0241079181432724, 0.013506580144166946, 0.028451813384890556, -0.03176211193203926, -0.035924430936574936, 0.011222892440855503, 0.049612585455179214, 0.02740425057709217, 0.07877673953771591, -0.0410924069583416, -0.01516871340572834, -0.01962434872984886, 0.015601705759763718, 0.02913622185587883, -0.016579432412981987, -0.061624642461538315, -0.031035801395773888, 0.034890834242105484, 0.0075703891925513744, 0.062295082956552505, -0.010831802152097225, 0.030756451189517975, -0.029415570199489594, 0.025770051404833794, -0.005730169825255871, 0.08503418415784836, -0.033913109451532364, -0.040449902415275574, 0.005063221324235201, 0.025364993140101433, -0.03732118010520935, -0.004057561047375202, 0.009246489964425564, 0.023409543558955193, -0.03483496233820915, 0.0012492189416661859, -0.037516724318265915, 0.011055282317101955, 0.03963978588581085, -0.04430493339896202, -0.012403146363794804, -0.003097294829785824, -0.017808571457862854, -0.03779607638716698, -0.030588841065764427, -0.00622601667419076, -0.010196280665695667, 0.01378593035042286, -0.1419098824262619, -0.014749688096344471, 0.017180034890770912, -0.021468060091137886, -0.03179004788398743, -0.0023482872638851404, -0.022403882816433907, 0.03190178796648979, 0.01494523324072361, 0.02366095781326294, -0.010238182730972767, 0.01452620793133974, -0.014211938716471195, 0.031873852014541626, 0.011579063721001148, -0.011369551531970501, -0.01752922125160694, -0.0009061420569196343, -0.01743144914507866, 0.05232228338718414, -0.011425421573221684, 0.02014114521443844, -0.010782916098833084, 0.02722267247736454, -0.021915020421147346, 0.007612291723489761, -0.0015591230476275086, 0.01873042806982994, -0.011718738824129105, 0.03215320408344269, 0.008359553292393684, -0.019331030547618866, -0.0008812624146230519, -0.0035372714046388865, 0.003970263991504908, 0.007060575298964977, -0.015853121876716614, -0.01948467269539833, 0.03380136936903, -0.010524516925215721, 0.0005975474487058818, 0.04888627678155899, -0.013080570846796036, -0.012577740475535393, -0.009379181079566479, 0.0042985002510249615, 0.022208336740732193, 0.07084319740533829, 0.01516871340572834, 0.024764390662312508, -0.05461295321583748, 0.00010208284220425412, 0.026985224336385727, 0.013862751424312592, 0.006564728450030088, 0.031287215650081635, -0.002955873729661107, -0.05480850115418434, 0.004431191831827164, 0.021859150379896164, -0.046819087117910385, -0.00940711610019207, 0.014484305866062641, 0.015294420532882214, -0.005915239453315735, 0.004888627678155899, -0.0039213779382407665, -0.01227743923664093, 0.03927662968635559, -0.018744396045804024, 0.006564728450030088, -0.030393296852707863, 0.019414836540818214, 0.01891200616955757, -0.009518856182694435, 0.019107550382614136, -0.002807469107210636, -0.020448431372642517, 0.009979784488677979, 0.012081894092261791, -0.002592718694359064, 0.03896934539079666, 0.038103360682725906, 0.024945968762040138, -0.008813497610390186, 0.002997776260599494, -0.011921267956495285, -0.027152834460139275, 0.004508012905716896, -0.035868559032678604, 0.0007105969707481563, -0.005834926385432482, -0.0335499532520771, -0.05693156272172928, -0.005800007376819849, 0.01961038075387478, -0.022473718971014023, -0.01494523324072361, 0.009902962483465672, 0.02811659313738346, -0.03799162060022354, 0.012926928699016571, -0.021063001826405525, 0.0054263765923678875, 0.015224583446979523, 0.017738735303282738, 0.005817466881126165, -0.028717195615172386, 0.0012055705301463604, 0.019009778276085854, 0.00827574823051691, -0.0005988568882457912, 0.03866206109523773, 0.06173638254404068, -0.01143240462988615, 0.006068882066756487, -0.03517018258571625, 0.010014702565968037, 0.008373521268367767, 0.028940675780177116, 0.025364993140101433, -0.010992428287863731, 0.014861428178846836, 0.025099610909819603, -0.03260016441345215, 0.003868999658152461, 0.011174006387591362, 0.01832536980509758, -0.015252518467605114, 0.00738182757049799, 0.028968611732125282, 0.010775932110846043, 0.02811659313738346, -0.03567301481962204, 0.016956554725766182, -0.018674558028578758, -0.022627362981438637, -0.041874587535858154, 0.02713886648416519, -0.02361905574798584, -0.014637948013842106, 0.0016263417201116681, -0.0012640594504773617, 0.04933323711156845, 0.013443726114928722, -0.02090935967862606, -0.041036538779735565, -0.005188928917050362, 0.047126371413469315, -0.007256120443344116, 0.024359334260225296, -0.024792326614260674, 0.04843931645154953, -0.017626995220780373, -0.038103360682725906, 0.006735830567777157, 0.013667206279933453, -0.03424832969903946, -0.010259134694933891, 0.01952657662332058, -0.01004962157458067, 0.008478277362883091, -0.0010746250627562404, 0.005789531860500574, 0.017068294808268547, -0.01029405277222395, -0.01610453613102436, 0.013778946362435818, -0.00139587779995054, -0.005552084185183048, -0.032711904495954514, -0.003938836976885796, -0.10704697668552399, -0.008827464655041695, 0.02744615264236927, -0.01231934130191803, -0.07011688500642776, -0.03799162060022354, -0.014225906692445278, -0.01979195885360241, 0.02015511319041252, 0.018884070217609406, 0.031734175980091095, -0.015643607825040817, -0.010664192028343678, -0.02677571214735508, -0.03301918879151344, -0.05232228338718414, -0.0205462034791708, -0.03589649498462677, -0.010461662895977497, 0.0039004264399409294, 0.005318128503859043, -0.02744615264236927, 0.0169844888150692, -0.0014919043751433492, -0.0021562338806688786, 0.008534147404134274, -0.03715357184410095, 0.025155480951070786, -0.036175843328237534, -0.027418216690421104, 0.044640153646469116, 0.031873852014541626, -0.01340880710631609, 0.038941413164138794, -0.016160406172275543, -0.010349922813475132, 0.01090164016932249, -0.041260018944740295, 0.028633391484618187, 0.0040750205516815186, 0.02205469459295273, 0.005600970704108477, -0.028354041278362274, 0.005712710786610842, -0.0009943119948729873, -0.0008546368917450309, 0.009469970129430294, -0.01252187043428421, -0.01649562641978264, -0.05413806065917015, 0.050646182149648666, -0.011795559898018837, 0.011893332935869694, -0.01810188964009285, -0.027334412559866905, -0.008198927156627178, -0.0360361710190773, 0.00824781320989132, 0.04883040860295296, 0.014749688096344471, 0.009553775191307068, 0.021873116493225098, 0.020224951207637787, 0.00714088836684823, 0.031510695815086365, 0.035114314407110214, -0.006274902727454901, -0.05536720156669617, -0.02299051731824875, -0.02681761421263218, -0.011174006387591362, 0.01047563087195158, 0.014197971671819687, 0.041120342910289764, 0.005311144981533289, -0.0029960304964333773, 0.005562559701502323, -0.022166434675455093, -0.02211056463420391, -0.009071895852684975, 0.008603984490036964, 0.043662428855895996, 0.003064122051000595, -0.019638314843177795, 0.023563185706734657, -0.00323522393591702, -0.026803648099303246, 0.012375211343169212, 0.047713007777929306, 0.03299125283956528, 0.02740425057709217, -0.010950526222586632, -0.04600897058844566, -0.01846504583954811, -0.027362346649169922, 0.010398809798061848, 0.003388866549357772, 0.0003788686590269208, -0.07536867260932922, 0.016705138608813286, 0.05603764206171036, -0.024918032810091972, 0.006641549989581108, -0.021244579926133156, 0.004319451749324799, 0.04519885405898094, -0.006889473181217909, -0.04827170819044113, -0.01836727187037468, 0.011474307626485825, -0.03204146400094032, -0.0010519279167056084, 0.028633391484618187, 0.008631919510662556, 0.03475115820765495, 0.02384253591299057, -0.037879880517721176, -0.027236640453338623, 0.03385723754763603, 0.005901271943002939, -0.03243255242705345, 0.034360069781541824, -0.00021540516172535717, 0.021775344386696815, -0.010524516925215721, 0.03709769994020462, 0.008373521268367767, -0.03287951275706291, 0.032711904495954514, -0.01007057260721922, 0.008401456288993359, -0.01072006206959486, 0.00291397119872272, -0.0156156737357378, -0.03109167143702507, -0.024345366284251213, -0.010489597916603088, 0.005593986716121435, 0.016830846667289734, 0.008701757527887821, 0.012354260310530663, 0.03665073961019516, -0.005049253813922405, -0.010328971780836582, 0.010957510210573673, -0.018129825592041016, 0.04114827886223793, 0.000958520220592618, 0.011034331284463406, -0.029694920405745506, 0.043075792491436005, 0.01948467269539833, -0.01592295803129673, -0.008401456288993359, 0.010782916098833084, 0.0025857349392026663, -0.04514298588037491, 0.001288502593524754, 0.0047594280913472176, -0.022389914840459824, 0.013960523530840874, 0.0012823918368667364, -0.00893920473754406, -0.013269132003188133, 0.006425053346902132, 0.013841800391674042, -0.007092001847922802, 0.002959365723654628, 0.031734175980091095, -0.019945601001381874, 0.026342719793319702, 0.001092957449145615, -0.023283835500478745, -0.030281556770205498, -0.024652650579810143, -0.04000294208526611, -0.009050944820046425, 0.006721863057464361, 0.02512754686176777, 0.01558773871511221, 0.01289899367839098, 0.01007755659520626, 0.03212526813149452, 0.015322355553507805, 0.03167830780148506, -0.003792178351432085, -0.03380136936903, -0.03170624375343323, 0.041343823075294495, 0.0387738011777401, 0.007744982838630676, 0.03829890489578247, 0.020630009472370148, 0.007119936868548393, -0.0037747188471257687, -0.02610527165234089, -0.036846283823251724, 0.0043613542802631855, 0.002653826493769884, -0.001985131995752454, 0.011509226635098457, -0.03785194456577301, 0.021468060091137886, 0.008687789551913738, 0.019233258441090584, -0.01912151835858822, 0.001115654711611569, 0.027013160288333893, -0.036092039197683334, -4.8531634092796594e-05, 0.0006961929611861706, 0.020308755338191986, 0.010880688205361366, -0.0005080680712126195, -0.012885025702416897, 0.027418216690421104, 0.019861795008182526, -0.03589649498462677, 0.027837242931127548, 0.02188708446919918, 0.0035721901804208755, 0.016928618773818016, 0.0016752280062064528, -0.0015285691479220986, -0.016076602041721344, -0.028661325573921204, -0.010566419921815395, -0.0156575758010149, 0.0277115348726511, -0.0027236640453338623, -0.03958391770720482, -0.006700912024825811, 0.008184959180653095, 0.005070205312222242, 0.02726457454264164, 0.016747042536735535, 0.007626259233802557, 0.009260457940399647, 0.00010459262557560578, 0.03223700821399689, -0.020252885296940804, 0.021007131785154343, 0.03430419787764549, -0.005737153813242912, -0.031119607388973236, -0.0339689776301384, -0.03980739787220955, -0.0027358855586498976, 0.027948983013629913, -0.0013077078619971871, -0.004675623029470444, 0.023521283641457558, 0.009267440997064114, 0.006543777417391539, -0.012067927047610283, -0.02704109437763691, 0.013325002044439316, 0.025728149339556694, 0.008087187074124813, -0.016481658443808556, -0.029611116275191307, 0.014051312580704689, 0.003603616962209344, 0.033913109451532364, -0.026901420205831528, 0.014959200285375118, 0.03433213382959366, 0.024750422686338425, -0.0017459384398534894, -0.021733442321419716, 0.015056973323225975, -0.0008415423217229545, -0.007409762591123581, 0.06665294617414474, 0.05938984081149101, -0.015559803694486618, 0.013073586858808994, -0.01895390823483467, 0.006180622149258852, 0.04070131853222847, -0.021551864221692085, 0.0028965119272470474, 0.050953466445207596, 0.03399691358208656, 0.035700950771570206, -0.0030920570716261864, 0.023381607607007027, 0.03768433630466461, 0.009700434282422066, -0.0015399176627397537, -0.021426156163215637, -0.008757627569139004, 0.014190987683832645, 0.008869367651641369, 0.03332647308707237, -0.015420128591358662, 0.020085275173187256, 0.04017055034637451, 0.028172463178634644, 0.025504669174551964, 0.013569433242082596, -0.007339925039559603, 0.031510695815086365, 0.014847460202872753, 0.05207086727023125, 0.012410130351781845, -0.019736088812351227, 0.001897835056297481, 0.009714401327073574, -0.001357467146590352, -0.03402484953403473, 0.002634621225297451, -0.01592295803129673, -0.002968095475807786, 0.00262938323430717, 0.0022365471813827753, -0.023241933435201645, -0.011865397915244102, -0.005625413730740547, 0.0026817615143954754, 0.002140520606189966, -0.03679041564464569, 0.0077240318059921265, 0.04452841356396675, 0.014246857725083828, 0.01403734553605318, -0.015322355553507805, 0.023507315665483475, 0.0359523631632328, 0.010308020748198032, 0.014295743778347969, 0.01948467269539833, -0.006264427211135626, 0.010566419921815395, 0.05165184289216995, -0.001859424402937293, 0.043075792491436005, 0.001253583817742765, -0.012179667130112648, -0.02752995677292347, -0.004382305312901735, 0.017515255138278008, -0.009616629220545292, -0.01765492931008339, 0.023856503888964653, -0.027013160288333893, -0.01868852600455284, 0.04860692843794823, 0.04008674621582031, 0.01407924760133028, -0.00738182757049799, 0.007060575298964977, 0.0006874632672406733, -0.04190252348780632, 0.014107182621955872, -0.02299051731824875, -0.013737043365836143, 0.028437845408916473, -0.006110784597694874, -0.03248842433094978, -0.037293244153261185, 0.0031025325879454613, -0.012912960723042488, -0.0059606339782476425, -0.02592369355261326, 0.0434110127389431, -0.0027079505380243063, -0.04408145323395729, -0.018004117533564568, -0.007001213263720274, 0.01479159016162157, 0.013646255247294903, -0.0007468251860700548, 0.02952731028199196, 0.014819525182247162, -0.007388811558485031, 0.0017197494162246585, -0.005429868586361408, -0.05081379413604736, 0.01156509667634964, 0.01361133623868227, 0.004752444569021463, 0.023409543558955193, -0.010573402978479862, -0.009442035108804703, -0.033605825155973434, 0.013234213925898075, -0.012905976735055447, -0.01704035885632038, -0.022808939218521118, 0.004022642038762569, -0.004934022203087807, 0.0240660160779953, -0.03282364457845688, 0.01748731918632984, -0.007968463003635406, 0.0002614542900118977, 0.027334412559866905, -0.00798243097960949, 0.043746232986450195, 0.02544879913330078, -0.008143057115375996, 0.01449827291071415, 1.7391183064319193e-05, -0.019233258441090584, 0.03899728134274483, -0.036762479692697525, -0.0034796553663909435, -0.0016263417201116681, -0.021049033850431442, 0.006253951694816351, -0.014903330244123936, 0.009756304323673248, -0.008624935522675514, -0.0039807395078241825, 0.02099316380918026, -0.0102311996743083, -0.015517900697886944, -0.011397486552596092, 0.0019798942375928164, -0.007514519151300192, -0.046679411083459854, -0.005632397253066301, 0.024932000786066055, 0.005265750456601381, -0.0006411959184333682, 0.011648901738226414, -0.02343747764825821, 0.0060025365091860294, -0.020657943561673164, 0.0022749577183276415, -0.010447695851325989, -0.04310372844338417, -0.00010388333612354472, 0.008778578601777554, -0.00010792082321131602, 0.005670808255672455, -0.00807321909815073, -0.0002130044886143878, -0.009972800500690937, 0.006931375712156296, 0.03944424167275429, 0.01245203334838152, -6.874632526887581e-05, -0.0015425366582348943, -0.03179004788398743, -0.02299051731824875, -0.01134161651134491, 0.11095788329839706, -0.00228543346747756, 0.016090568155050278, 0.02276703715324402, 0.02713886648416519, -0.022711167111992836, 0.025951629504561424, 0.002959365723654628, -0.0018716460326686502, 0.013017716817557812, -0.020224951207637787, 0.03265603259205818, -0.007975446991622448, -0.00043299273238517344, 0.0217893123626709, -0.01247996836900711, -0.041036538779735565, 0.005600970704108477, 0.022124532610177994, 0.0012972322292625904, 0.008883334696292877, -0.025770051404833794, 0.01956847868859768, -0.04301992431282997, -0.020336691290140152, -0.026831582188606262, -0.011062266305088997, -0.00291397119872272, -0.014665883034467697, 0.03408071771264076, 0.012738366611301899, -0.003931853454560041, -0.041120342910289764, -0.006931375712156296, -0.0011191465891897678, -0.004501029383391142, -0.019470706582069397, 0.01868852600455284, 0.025197383016347885, -0.0029122254345566034, 0.011998089030385017, -0.02015511319041252, -0.0014028615551069379, 0.013799897395074368, 0.011111152358353138, 0.043438948690891266, -0.02757186070084572, -0.01476365514099598, 0.018716460093855858, -0.004721017554402351, 0.03296331688761711, 0.009888995438814163, -0.02699919231235981, -0.001875137910246849, -0.017599059268832207, -0.010747997090220451, 0.01624421216547489, -0.02139822207391262, 0.007437697611749172, 0.015811217948794365, -0.014065280556678772, 0.0029838087502866983, -0.040813058614730835, 0.001449128962121904, 0.012019040063023567, -0.014931265264749527, -0.0018506947671994567, -0.014344630762934685, -0.02180328033864498, -0.028451813384890556, -0.008184959180653095, -0.0040121665224432945, 0.007891641929745674, 0.017822539433836937, 0.02299051731824875, 0.007228185422718525, 0.006177130155265331, 0.01579725183546543, -0.029247961938381195, 0.032181136310100555, -0.012186650186777115, 0.014959200285375118, 0.02250165492296219, 0.039695657789707184, -0.0036245682276785374, -0.05659634247422218, -0.002336065750569105, -0.009623613208532333, -0.00212480709888041, -0.003106024581938982, 0.020518269389867783, -0.0019257700769230723, -0.015140778385102749, -0.013003749772906303, 0.022878777235746384, -0.004654671996831894, -0.02602146752178669, -0.027152834460139275, 0.005946666467934847, -0.02148202620446682, 0.019805924966931343, -0.008904285728931427, -0.03651106357574463, 0.01930309645831585, 0.010196280665695667, -0.004563882946968079, 0.015378225594758987, 0.0057755643501877785, 0.013241196982562542, -0.02495993673801422, -0.036846283823251724, 0.013534515164792538, 0.03268396854400635, -0.00825479719787836, -0.026258913800120354, -0.022040726616978645, 0.014903330244123936, -0.025015806779265404, 0.011970154009759426, 0.012598691508173943, -0.004941005725413561, -0.017738735303282738, 0.019847828894853592, 0.02103506587445736, -0.003109516343101859, -0.028717195615172386, 0.008380504325032234, 0.042181871831417084, -0.012410130351781845, 0.01183047890663147, -0.012598691508173943, -0.013115489855408669, 0.01752922125160694, 0.003247445449233055, 0.023982210084795952, 0.0002699657343327999, -0.02980666048824787, -0.013827832415699959, 0.019582444801926613, -0.022808939218521118, 0.02463868260383606, 0.010489597916603088, -0.034136589616537094, 0.00032954587368294597, -0.024848196655511856, 0.04628831893205643, -0.010259134694933891, -0.013220245949923992, -0.015001103281974792, 0.005478755105286837, 0.011732706800103188, 0.00782878790050745, -0.01828346773982048, -0.0032561752013862133, 0.003938836976885796, 0.005318128503859043, 0.02321399748325348, -0.018967876210808754, 0.02188708446919918, -0.011355583555996418, -0.025630377233028412, -0.004256598185747862, -0.030002206563949585, 0.020881423726677895, 0.018828200176358223, 0.007891641929745674, -0.016579432412981987, -0.003388866549357772, -0.01699845679104328, -0.0061247521080076694, 0.00622601667419076, -0.01783650740981102, 0.01476365514099598, 0.0264265239238739, -0.0010108983842656016, 0.008422407321631908, 0.013534515164792538, 0.03463941812515259, -0.039611849933862686, 0.007444681599736214, 0.03033742681145668, -0.008408439345657825, -0.03665073961019516, 0.0005779056227765977, -0.01072006206959486, -0.01930309645831585, 0.01792031154036522, -0.02152393013238907, 0.02130044996738434, 0.01677497662603855, 0.025211350992321968, -0.025560539215803146, 0.026524297893047333, -0.014023377560079098, -0.016886716708540916, -0.013709108345210552, -0.02482026070356369, 0.02437330037355423, -0.01600676402449608, -0.023283835500478745, 0.006054914556443691, -0.004619752988219261, -0.0007542454404756427, 0.008115122094750404, 0.03829890489578247, -0.012633610516786575, -0.010538484901189804, 0.007158347871154547, 0.01899581030011177, 0.004253106191754341, 0.027292510494589806, -0.008129089139401913, -0.0003699207154568285, 0.002170201390981674, 0.03930456563830376, -0.000272148143267259, 0.029834596440196037, 0.014204955659806728, -0.008317651227116585, -0.022613395005464554, -0.03475115820765495, -0.014428435824811459, 0.012249504216015339, 0.0029314307030290365, 0.0009916929993778467, 0.030225686728954315, 0.011292729526758194, 0.013325002044439316, 0.018716460093855858, -0.017682865262031555, 0.03310299292206764, 0.006788208615034819, 0.011648901738226414, -0.054557085037231445, -0.02201279252767563, -0.009958832524716854, -0.03248842433094978, 0.029331766068935394, -0.005492722615599632, -0.023060355335474014, -0.013681173324584961, -0.002259244443848729, 0.00893920473754406, 0.0006241729715839028, -0.019065648317337036, 0.041958391666412354, -0.014414467848837376, -0.028717195615172386, 0.020448431372642517, -0.0264265239238739, -0.026971256360411644, 0.010615305975079536, 0.02259942702949047, -0.0067078955471515656, 0.006501874886453152, -0.01645372435450554, 0.011425421573221684, -0.011027347296476364, -0.01987576298415661, -0.022166434675455093, -0.020923325791954994, -0.040449902415275574, 0.014135117642581463, -0.0031112623400986195, 0.01979195885360241, 0.024540910497307777, -0.025965597480535507, 0.00829669926315546, -0.010615305975079536, -0.021118871867656708, -0.021426156163215637, -0.03137102350592613, -0.019917665049433708, -0.015671543776988983, -0.028186431154608727, 0.004427699837833643, -0.03335440903902054, -0.02966698631644249, -0.01187936495989561, 0.0018053003586828709, -0.02565831132233143, 0.003827097127214074, 0.0051190913654863834, -0.03170624375343323, 0.006721863057464361, 0.017068294808268547, 0.007249136455357075, 0.03553333878517151, 0.019959568977355957, 0.01250091940164566, -0.0001840873883338645, 0.02793501503765583, 0.020476365461945534, 0.00657171243801713, 0.007081526331603527, -0.018297435715794563, 0.007332941517233849, -0.014707785099744797, -0.04128795117139816, 0.015769315883517265, -0.004818790126591921, 0.01425384171307087, 0.0019798942375928164, -0.017054326832294464, 0.007863706909120083, 0.017152098938822746, -0.0010458171600475907, 0.01614643819630146, -0.007758950348943472, -0.0016499118646606803, -0.02264132909476757, 0.01975005492568016, -0.016076602041721344, -0.033382344990968704, -0.012514886446297169, -0.0037328163161873817, -0.02095126174390316, -0.0009672499145381153, 0.01747335121035576, 0.022431816905736923, -0.013492612168192863, 0.018227597698569298, -0.04958465322852135, -0.02589575946331024, 0.03567301481962204, -0.011334632523357868, -0.019456738606095314, 0.01787840947508812, 0.018744396045804024, 0.00017470296006649733, 0.00782878790050745, -0.07162538170814514, -0.0016953062731772661, -0.022739103063941002, -0.03933250159025192, 0.000989074120298028, -0.007416746579110622, -0.005824450869113207, 0.006072374060750008, -0.009497905150055885, -0.008946188725531101, 0.014707785099744797, -0.012731383554637432, 0.03366169333457947, 0.00335743953473866, 0.03768433630466461, 0.025197383016347885, 0.028409911319613457, -0.027432184666395187, 0.005985077004879713, 0.029192091897130013, 0.017221936956048012, -0.020602073520421982, 0.010482614859938622, 0.03994707018136978, -0.013129456900060177, 0.0362875834107399, 0.017277806997299194, -0.0006054041441529989, -0.03357788920402527, -0.020406529307365417, 0.0038899509236216545, 0.01074101310223341, -0.01663530245423317, 0.030756451189517975, -0.0016743550077080727, -0.005401933565735817, 0.010210247710347176, 0.012787253595888615, 0.02575608342885971, 0.011551128700375557, 0.0018681541550904512, -0.014288760721683502, -0.008911269716918468, 0.03416452556848526, -0.013541498221457005, 0.002611923962831497, -0.010210247710347176, -0.026077337563037872, 0.031119607388973236, -0.01539219357073307, -0.05894288048148155, 0.020755715668201447, -0.012186650186777115, 0.047433655709028244, -0.00647044787183404, -0.02944350615143776, 0.004651180002838373, -0.02966698631644249], [0.057798124849796295, 0.01888827607035637, 0.02281939797103405, 0.014721049927175045, -0.049959488213062286, -0.041318103671073914, -0.01470924448221922, 9.942168253473938e-05, 0.059592507779598236, 0.013209987431764603, -0.06313405930995941, 0.0013782538007944822, -0.048778973519802094, -0.026915792375802994, -0.010606947354972363, 0.04552074521780014, -0.0014490848407149315, 0.048778973519802094, -0.009609410539269447, -0.0026399316266179085, 0.0392640046775341, 0.01990352012217045, -0.010665972717106342, 0.014319674111902714, 0.011155887506902218, -0.011757951229810715, 0.04122366011142731, 0.012312795035541058, 0.014059959910809994, -0.06606174260377884, 0.023940889164805412, -0.010766317136585712, 0.05095112323760986, -0.01856953650712967, 0.03860291466116905, 0.01625572144985199, -0.03359752148389816, 0.019738247618079185, 0.07418370246887207, 0.004506624303758144, -0.05553153157234192, 0.007331011816859245, -0.004459403920918703, -0.03331419453024864, -0.03869735449552536, 0.07635585218667984, 0.028332414105534554, -0.019997961819171906, -0.019065354019403458, 0.05888419970870018, -0.01135067269206047, 0.029229605570435524, 0.012584313750267029, 0.02597137913107872, 0.06318128108978271, 0.024908913299441338, -0.026443585753440857, 0.003987196832895279, -0.0014800734352320433, 0.0016955179162323475, -0.026844961568713188, 0.006498747505247593, -0.006604993715882301, 0.024507537484169006, -0.012572508305311203, -0.013965519145131111, 0.0001402786438120529, 0.01862856186926365, -0.04873175173997879, 0.036572422832250595, 0.018545925617218018, 0.016468215733766556, -0.012017665430903435, -0.03624187782406807, -0.006274449173361063, 0.0215208288282156, 0.013469701632857323, 0.01761331781744957, 0.04136532172560692, 0.024979744106531143, -0.030244851484894753, 0.04934561997652054, -0.003016221569851041, 0.013682194985449314, -0.023752005770802498, 0.014957153238356113, -0.036973800510168076, 0.015972398221492767, -0.01653904654085636, -0.026018599048256874, -0.018935495987534523, -0.04374996945261955, 0.010713193565607071, 0.05538986995816231, 0.005681239068508148, 0.02229996956884861, -0.001601076452061534, -0.008653190918266773, -0.03201562538743019, 0.12239602208137512, 0.02209928259253502, 0.04323054105043411, 0.011663510464131832, 0.03045734390616417, 0.02469642087817192, -0.044529110193252563, -0.03201562538743019, 0.0012956176651641726, 0.0003832991933450103, 0.018404264003038406, -0.024271434172987938, 0.00011002789688063785, -0.016102254390716553, 0.04060979187488556, -0.0066345068626105785, -0.006675824988633394, 0.006097371689975262, 0.0030398317612707615, 0.02946571074426174, -0.01958478055894375, 0.027081064879894257, -0.007815023884177208, 0.026939403265714645, -0.06289795786142349, -0.018168160691857338, 0.04714985936880112, -0.0250741858035326, 0.028568517416715622, -0.01142150443047285, -0.020753493532538414, 0.021993035450577736, -0.011090959422290325, 0.07248375564813614, -0.03702101856470108, -0.0019257187377661467, -0.02238260582089424, -0.016845980659127235, 0.007437258493155241, -0.02557000331580639, -7.272170478245243e-05, 0.02302008494734764, -0.020741688087582588, 0.0398070402443409, -0.005766826681792736, -0.022488852962851524, 0.012466262094676495, 0.01179926935583353, 0.07909465581178665, 0.009060469456017017, 0.007236570585519075, -0.04835398495197296, 0.03565162047743797, -0.014307868666946888, 0.008098348043859005, -0.0024436707608401775, -0.031567029654979706, -0.023327020928263664, 0.04859009012579918, -0.012360014952719212, -0.004559747874736786, -0.024790862575173378, -0.044269394129514694, -0.011474627070128918, -0.041058387607336044, 0.014626608230173588, 0.008405283093452454, -0.019053548574447632, 0.018959106877446175, -0.047881778329610825, -0.04089311510324478, -0.0488261915743351, -0.0043974267318844795, -0.04445827752351761, -0.017707757651805878, -0.04358469694852829, -0.00799800455570221, -0.015169646590948105, 0.01570087857544422, -0.026939403265714645, -0.010854856111109257, 0.011982250027358532, 0.00678207166492939, -0.036430761218070984, -0.03305448219180107, -0.03820153698325157, 0.05095112323760986, 0.0032110067550092936, 0.006233131047338247, -0.028639348223805428, -0.042498618364334106, -0.00017172835941892117, 0.034541934728622437, 0.001868168474175036, 0.04356108605861664, -0.02374020218849182, -0.017636926844716072, -0.06983939558267593, 0.00032205984462052584, -0.0009045713231898844, 0.004654189106076956, 0.012973884120583534, -0.028332414105534554, 0.018144549801945686, 0.02608942985534668, -0.042994435876607895, -0.04962894320487976, 0.07087825238704681, 0.04259306192398071, 0.0693671926856041, -0.005713703576475382, -0.0002010568423429504, -0.04101116955280304, -0.04811788350343704, 0.024625590071082115, 0.003166737500578165, -0.009137202985584736, 0.013965519145131111, 0.020670857280492783, -0.028190750628709793, 0.024720029905438423, -0.003987196832895279, -0.001126656075939536, 0.040161196142435074, 0.0017973374342545867, -0.042498618364334106, -0.00887748971581459, -0.009810098446905613, 0.004810607526451349, -0.014296063221991062, -0.05935640633106232, -0.02102501131594181, 0.03558078780770302, 0.011197205632925034, -0.027718544006347656, 0.04202641174197197, 0.032322563230991364, 0.009349696338176727, -0.024507537484169006, -0.011439211666584015, -0.03678491711616516, 0.017141109332442284, 0.016940422356128693, 0.028993502259254456, -0.00687651289626956, -0.009320183657109737, -0.011881905607879162, -0.008098348043859005, -0.0017560194246470928, 0.030669838190078735, 0.021756932139396667, 0.030811499804258347, -0.0218395683914423, 0.03555717691779137, -0.014012739062309265, 0.030008748173713684, 0.005681239068508148, 0.01946672983467579, 0.04615822434425354, 0.022866617888212204, -0.018994521349668503, 0.010536116547882557, -0.0024894156958907843, 0.018534120172262192, 0.009898636490106583, -0.03473081812262535, -0.004409231711179018, 0.047881778329610825, -0.03447110205888748, -0.01524047739803791, -0.005150006618350744, -0.06440901756286621, 0.03461276367306709, 0.018156355246901512, -0.03180313482880592, -0.032841987907886505, -0.003833729773759842, 0.0018357043154537678, -0.013387065380811691, -0.021013205870985985, -0.011244426481425762, -0.03288920968770981, -0.013788441196084023, 0.046229053288698196, -0.0072955964133143425, 0.01984449476003647, -0.03255866467952728, 0.024861693382263184, 0.01622030697762966, -0.022335385903716087, 0.04032646864652634, 0.02545195072889328, 0.002471707994118333, -0.023445071652531624, -0.008623678237199783, 0.00799800455570221, -0.017070278525352478, -0.05293439328670502, -0.0027624103240668774, 0.023327020928263664, -0.028096310794353485, 0.006965051405131817, 0.04991226643323898, -0.0011281317565590143, 0.012749586254358292, -0.05940362811088562, 0.0032493737526237965, 0.0013118498027324677, 0.02296105958521366, -0.044670771807432175, -0.004949318245053291, -0.026963014155626297, 0.0745142474770546, 0.007006369531154633, -0.017837615683674812, -0.07668639719486237, 0.0013716134708374739, -0.051234446465969086, 0.05246218666434288, 0.04514297842979431, 0.009208034723997116, -0.00024421949638053775, 0.046724870800971985, 0.035675231367349625, -0.01723555102944374, 0.024861693382263184, -0.010028493590652943, 0.015842542052268982, 0.037847381085157394, -0.053028833121061325, -0.011964541859924793, -0.03418777883052826, 0.04011397436261177, -0.018935495987534523, 0.006050150841474533, -0.029017113149166107, -0.050478916615247726, 0.003928171005100012, 0.03383362293243408, -0.03650159388780594, -0.0008020139066502452, 0.012489872053265572, -0.009573995135724545, 0.007773705758154392, -0.015712684020400047, 0.02521584741771221, 0.0552954263985157, 0.021957620978355408, 0.03898067772388458, -0.024047136306762695, 0.03447110205888748, 0.04592211917042732, 0.007915368303656578, -0.007301499135792255, -0.033125314861536026, -0.10388551652431488, -0.03265310823917389, -0.015724489465355873, -0.03019762970507145, -0.01447314117103815, 0.03442388400435448, 0.001333984429948032, -0.03045734390616417, 0.026963014155626297, 0.022453438490629196, -0.021697906777262688, -0.02058822102844715, 0.009556286968290806, 0.012112107127904892, -0.017341798171401024, -0.02253607288002968, 0.04292360693216324, -0.009573995135724545, -0.02204025723040104, -0.04195558279752731, 0.03520302474498749, 0.005403817631304264, -0.023669369518756866, 0.0012520861346274614, -0.040043145418167114, -0.004884390160441399, 0.0007149507291615009, -0.005811096169054508, -0.009916344657540321, 0.05893142148852348, 0.0629924014210701, 0.037233512848615646, -0.005766826681792736, 0.027435220777988434, 0.03638353943824768, 0.01457938738167286, -0.020753493532538414, 0.03881540521979332, -0.02305550128221512, 0.0013229170581325889, -0.002183956792578101, 0.0034205487463623285, 0.06289795786142349, 0.02126111462712288, -0.027978258207440376, -0.04573323577642441, -0.00652235746383667, -0.00028830443625338376, 0.008871586993336678, -0.04179031029343605, 0.04077506437897682, 0.014484946615993977, 0.026656078174710274, 0.014307868666946888, 0.03501414135098457, -0.009089983068406582, 0.03383362293243408, -0.027175506576895714, 0.02365756593644619, -0.007785511203110218, 0.017141109332442284, 0.03975981846451759, -0.014909932389855385, 0.022028451785445213, -0.011327062733471394, -0.021095842123031616, 0.03149620071053505, -0.013351649977266788, -0.041577816009521484, 0.026939403265714645, 0.002359558828175068, 0.014355089515447617, 0.013328039087355137, 0.006817487068474293, -0.013387065380811691, -0.03822514787316322, -0.03638353943824768, 0.009408722631633282, 0.049817826598882675, 0.004235105589032173, -0.021792348474264145, -0.0244367066770792, 0.006469234358519316, -0.021709712222218513, -0.023173553869128227, 0.0006976118893362582, -0.010246889665722847, -0.01298568956553936, -0.0052119833417236805, 0.037611279636621475, -0.0276241023093462, -0.012047178111970425, -0.016208501532673836, 0.021072233095765114, 0.017837615683674812, -0.03874457627534866, -0.028237972408533096, -0.010524311102926731, -0.06082024797797203, 0.0005098358960822225, -0.054209351539611816, 0.013906492851674557, 0.008245912380516529, -0.0785280093550682, 0.03213367983698845, -0.034754425287246704, 0.06530621647834778, 0.034116946160793304, 0.06403125077486038, 0.010583336465060711, 0.05232052505016327, 0.0770641639828682, 0.0134933115914464, -0.007466771639883518, -0.01356414332985878, -0.07659196108579636, 0.001965561183169484, -0.014366894960403442, 0.026514416560530663, 0.030504565685987473, 0.037068240344524384, -0.030315682291984558, 0.012808611616492271, -0.027978258207440376, -0.014142596162855625, 0.006150494795292616, 0.0450013168156147, 0.036714084446430206, -0.06469234079122543, -0.04037369042634964, 0.026939403265714645, 0.039405666291713715, 0.04972338676452637, 0.03359752148389816, -0.00999307818710804, -0.028993502259254456, -0.05897863954305649, -0.0196083914488554, 0.039004288613796234, -0.010648265480995178, -0.003476623212918639, -0.0048401206731796265, -0.01457938738167286, -0.026797741651535034, 0.04072784259915352, -0.03574606031179428, 0.027293557301163673, -0.02559361420571804, 0.017837615683674812, -0.02094237506389618, 0.028332414105534554, -0.018404264003038406, 0.02854490652680397, 0.01126803644001484, -0.026254702359437943, -0.017967471852898598, -0.02814353071153164, -0.0399014838039875, 0.034896090626716614, -0.0021293580066412687, -0.008375769481062889, -0.030433734878897667, -0.013186377473175526, 0.043136097490787506, -0.004356108605861664, -0.004480062983930111, -0.006976856850087643, 0.007248375564813614, -0.04693736508488655, -0.010795829817652702, -0.00483716931194067, -0.015913372859358788, 0.0066640195436775684, -0.0353919081389904, 0.010359038598835468, 0.010158350691199303, -0.0006341590778902173, -0.04743318259716034, -0.07276707887649536, -0.009998980909585953, 0.023929083719849586, 0.009650728665292263, 0.016503630205988884, -0.001254299539141357, 0.04039729759097099, 0.012891247868537903, -0.006303961854428053, -0.034376662224531174, 0.004158372059464455, -0.019018132239580154, 0.009998980909585953, 0.009302475489675999, 0.03461276367306709, 0.021190283820033073, -0.0011030457681044936, 0.001906535355374217, -0.0011650229571387172, 0.03600577637553215, 0.03628909960389137, -0.02224094420671463, -0.01041216216981411, -0.013351649977266788, 0.042238906025886536, -0.010972907766699791, 0.012047178111970425, 0.005657628644257784, 0.029276827350258827, -0.0014225232880562544, 0.015216867439448833, 0.0048342179507017136, 0.0022178967483341694, 0.03690296784043312, 0.0006186647806316614, -0.0044859652407467365, 0.013387065380811691, -0.036973800510168076, -0.03754044696688652, 0.02597137913107872, 0.03291282057762146, 0.005152957513928413, 0.020399337634444237, 0.02854490652680397, 0.020210454240441322, -0.030292071402072906, -0.03468359634280205, 0.019360482692718506, 0.014355089515447617, 0.0289462823420763, 0.0020157331600785255, -0.04422217607498169, -0.002337424084544182, -0.002189859515056014, -0.0003355251392349601, -0.0481887124478817, -0.024861693382263184, 0.006274449173361063, -0.017967471852898598, -0.04155420511960983, -0.013693999499082565, -0.005179519299417734, -0.009237547405064106, 0.04901507496833801, -0.017270967364311218, 0.017341798171401024, -0.04748040437698364, 0.03319614380598068, -0.010300013236701488, -0.04115283116698265, -0.00877714529633522, 0.0050585162825882435, -0.025121405720710754, -0.05874253809452057, -0.021615270525217056, -0.03265310823917389, -0.006799779366701841, 0.02036392129957676, 0.050998345017433167, -0.006752558518201113, 0.015252282842993736, -0.030953161418437958, -0.03704462945461273, -0.014957153238356113, -0.02374020218849182, -0.01721194200217724, -0.017459848895668983, -0.03187396377325058, -0.02417699247598648, 0.005651726387441158, -0.00665221456438303, 0.02010420896112919, -0.013446090742945671, 0.023067306727170944, -0.014496751129627228, -0.03262949734926224, 0.00573436263948679, -0.018640367314219475, 0.008334451355040073, 0.02828519232571125, -0.014496751129627228, -0.006498747505247593, -0.04318331927061081, 0.0014424445107579231, -0.03586411476135254, 0.007584823295474052, -0.014189817011356354, 0.0016512484289705753, 0.03997231274843216, -0.01452036201953888, 0.0035917237401008606, -0.03418777883052826, 0.03187396377325058, 0.01639738492667675, -0.007614335976541042, -0.010394454002380371, 0.0029911354649811983, -0.01227737870067358, 0.014933543279767036, 0.009756974875926971, 0.004665994551032782, -0.030386513099074364, 0.0020157331600785255, -0.0013782538007944822, -0.035037752240896225, 0.03942927345633507, 0.025546392425894737, -0.004208543803542852, -0.01773136854171753, 0.009910441935062408, 0.010217376984655857, -0.03718629106879234, 0.02042294852435589, 0.008358062244951725, 0.02339785173535347, 0.0037835577968508005, -0.007614335976541042, -0.004450549837201834, -0.011876002885401249, -0.020788908004760742, 0.0067938766442239285, -0.012761390767991543, -0.012820417061448097, 0.020458362996578217, -0.034636374562978745, 0.013162766583263874, -0.0030516369733959436, 0.03562800958752632, -0.018864665180444717, 0.0010078665800392628, -0.024141578003764153, 0.01810913346707821, 0.008434795774519444, -0.007201155181974173, 0.016586266458034515, -0.011935029178857803, 0.009314280934631824, 0.025758886709809303, -0.012466262094676495, 0.02944209985435009, -0.034778036177158356, 0.0241179671138525, 0.012596119195222855, 0.014933543279767036, 0.029489319771528244, 0.010453480295836926, -0.026183871552348137, 0.012643339112401009, 0.0009385112207382917, 0.04816510155797005, -0.009756974875926971, -0.07352261245250702, -0.05151777341961861, 0.00035747536458075047, -0.0028007770888507366, 0.004872584715485573, 0.00855875015258789, -0.012419041246175766, -0.01601961813867092, 0.0012852881336584687, -0.05425657331943512, -0.011675314977765083, -0.029630981385707855, 0.013918298296630383, 0.01136838085949421, 0.02359853871166706, -0.00792717281728983, 0.0019345725886523724, -0.03355029970407486, 0.008570554666221142, -0.019879909232258797, -0.010099324397742748, 0.019313260912895203, -0.028237972408533096, 0.008092445321381092, 0.002188383834436536, -0.0002591604134067893, 0.011492335237562656, 0.040822286158800125, 0.019702833145856857, -0.009308378212153912, 0.000654080300591886, -0.012844027020037174, -0.010099324397742748, -0.050715018063783646, -0.017837615683674812, -0.001329557504504919, -0.032086458057165146, -0.007992101833224297, -0.03244061395525932, -0.01813274435698986, -0.030433734878897667, -0.009391014464199543, 0.013139156624674797, 0.009113593026995659, 0.012678754515945911, -0.024342264980077744, 0.009892734698951244, -0.04072784259915352, 0.0078032189048826694, 0.011273939162492752, -0.009916344657540321, 0.041129220277071, 0.01775497943162918, 0.011521847918629646, 0.015653658658266068, 0.014496751129627228, -0.016090448945760727, 0.00613868935033679, 0.031543418765068054, -0.00877714529633522, 0.02967820316553116, 0.01492173783481121, 0.0012056032428517938, -0.049440059810876846, 0.0037628987338393927, 0.014909932389855385, 0.003146078437566757, -0.0016955179162323475, 0.013552337884902954, 0.012230158783495426, -0.0066994354128837585, 0.03676130622625351, 0.033243365585803986, -0.013800246641039848, -0.012891247868537903, -0.020753493532538414, -0.013764831237494946, 0.01851050928235054, 0.011663510464131832, -0.015594632364809513, 0.041577816009521484, -0.013977323658764362, -0.004208543803542852, -0.0024525246117264032, 0.007041785400360823, 0.026514416560530663, 0.016066839918494225, 0.003754044882953167, -0.006528260186314583, -0.029607372358441353, -0.02611304074525833, -0.01018196064978838, 0.003813070710748434, 0.025499172508716583, -0.04141254350543022, -0.0011273939162492752, 0.037209901958703995, -0.016763344407081604, 0.0013074228772893548, -0.038484860211610794, -0.0017397872870787978, 0.04766928404569626, -0.01599600911140442, -0.020529193803668022, -0.005397914908826351, 0.014461335726082325, -0.04294721782207489, -0.013162766583263874, 0.011734341271221638, 0.0048342179507017136, 0.03251144289970398, 0.026915792375802994, -0.007307401392608881, -0.0234804879873991, 0.029017113149166107, 0.00028424640186131, -0.02258329465985298, 0.05411490797996521, 0.005681239068508148, 0.034022506326436996, -0.005749118980020285, 0.07725304365158081, 0.017719563096761703, -0.02403533086180687, 0.024200603365898132, 0.01625572144985199, -0.048023439943790436, 0.018723003566265106, 0.006056053563952446, 0.019513949751853943, 0.01581893116235733, 0.022724956274032593, 0.03253505378961563, -0.030244851484894753, -0.005976368673145771, 0.033503077924251556, 0.02660885825753212, 0.04587490111589432, 0.0024702323134988546, -0.0017914349446073174, 0.008358062244951725, -0.0024156332947313786, 0.012182937934994698, 0.0212020892649889, -0.007366427686065435, -0.025617223232984543, 0.030764278024435043, -0.018274405971169472, -0.02996152639389038, -0.04141254350543022, 0.006162299774587154, -0.015441165305674076, -0.020375726744532585, 0.016822369769215584, -0.0025543442461639643, 0.019620196893811226, -0.025263069197535515, 0.026679689064621925, 0.013847467489540577, 0.007496284320950508, 0.002499745227396488, 0.0005537363467738032, -0.01394190825521946, 0.021650684997439384, -0.015771709382534027, -0.013646778650581837, 0.0002942070132121444, 0.030811499804258347, 0.04174308851361275, 0.024460317566990852, -0.036052994430065155, -0.0289462823420763, 0.006681727711111307, -0.024979744106531143, 0.051612213253974915, 0.02244163304567337, 0.019773663952946663, 0.017058473080396652, 0.019856300204992294, 0.030362902209162712, 0.024200603365898132, -0.008387574926018715, 0.009278865531086922, -0.007431355770677328, 0.03971260040998459, 0.03628909960389137, 0.026278313249349594, 0.024720029905438423, 0.0054716975428164005, -0.00528576597571373, 0.046205442398786545, 0.03971260040998459, -0.007378232665359974, -0.004143615253269672, -0.018002888187766075, -0.014355089515447617, 0.013186377473175526, 0.014591192826628685, -0.04474160447716713, -0.05515376478433609, 0.03874457627534866, -0.025121405720710754, 0.04670125991106033, 0.0006673611351288855, -0.0007813548436388373, -0.0009281816892325878, 0.02325619012117386, 0.02649080567061901, 0.0011037836084142327, -0.012076690793037415, 0.0037983141373842955, 0.03699741140007973, -0.0005190586671233177, -0.03536829724907875, 0.02623109333217144, -0.0008071786724030972, 0.0048253643326461315, 0.03987787291407585, 0.02342146262526512, 0.023114526644349098, 0.016385579481720924, -0.009444138035178185, 0.029111554846167564, 0.002510074758902192, 0.006770266219973564, -0.010772219859063625, -0.03288920968770981, -0.019679222255945206, 0.025924157351255417, -0.005583846475929022, 0.025640834122896194, 0.029489319771528244, 0.03175591304898262, 0.0023905474226921797, 0.011852392926812172, 0.0024126821663230658, -0.017023058608174324, 0.026585247367620468, 0.02004518173635006, -0.022465242072939873, -0.03468359634280205, -0.030244851484894753, -0.013446090742945671, -0.0027948745992034674, -0.006239033304154873, 0.01958478055894375, 0.00694144144654274, 0.005713703576475382, -0.020210454240441322, -0.003621236653998494, -0.004754533059895039, 0.0289462823420763, 0.00046925561036914587, 0.04075145348906517, -0.010624654591083527, 0.02244163304567337, 0.013398870825767517, 0.007112616207450628, 0.022866617888212204, 0.027435220777988434, -0.04186113923788071, 0.03638353943824768, 0.026774130761623383, 0.019159793853759766, -0.029017113149166107, 0.006321669556200504, 0.004857828374952078, 0.024767251685261726, -0.02353951334953308, 0.05874253809452057, 0.034258611500263214, -0.04972338676452637, -0.008688606321811676, -0.008623678237199783, 0.0040403204038739204, -0.008405283093452454, -0.0048342179507017136, 0.004146566614508629, 0.010223278775811195, 0.012395431287586689, 0.0040137586183846, -0.017625121399760246, 0.012678754515945911, -0.008393477648496628, 0.012855832464993, 0.003107711672782898, 0.00954448152333498, -0.0057048494927585125, 0.014024544507265091, 0.007384135387837887, -0.005524820648133755, -0.008499723859131336, 0.04370274767279625, 0.031425368040800095, 0.023645760491490364, 0.0051382011733949184, -0.017566096037626266, -0.009633020497858524, -0.019041743129491806, -9.153619612334296e-05, 0.031968407332897186, 0.027057453989982605, 0.007874050177633762, 0.03699741140007973, 0.004190836101770401, 0.019195210188627243, -0.026585247367620468, 0.026301924139261246, -0.02920599654316902, -0.016468215733766556, 0.0028789862990379333, -0.006534162908792496, -0.03765849769115448, 0.013292623683810234, -0.03111843392252922, 0.006486942060291767, 0.01330442912876606, -0.039122339338064194, 0.02221733331680298, 0.022925645112991333, 0.03480164706707001, 0.021355556324124336, -0.02018684521317482, 0.022229138761758804, -0.0033615226857364178, 0.028615737333893776, 0.00015042371524032205, 0.025121405720710754, 0.011687120422720909, 0.02545195072889328, 0.014142596162855625, 0.028237972408533096, 0.04514297842979431, -0.004058028105646372, -0.00951496884226799, -0.027978258207440376, 0.025003354996442795, -0.02547556161880493, -0.011297550052404404, -0.03586411476135254, -0.007590725552290678, 0.009939954616129398, -0.02417699247598648, 0.003314302070066333, 0.03229895234107971, 0.002291679149493575, -0.030811499804258347, 5.381498340284452e-05, 0.041577816009521484, -0.03999592363834381, -0.0067879739217460155, 0.010766317136585712, -0.0018091426463797688, -0.016184890642762184, -0.009030956774950027, -0.007974393665790558, -0.009751072153449059, 0.022748567163944244, -0.01749526523053646, 0.013764831237494946, 0.02038753218948841, 0.0321100689470768, -0.030551785603165627, -0.013481507077813148, -0.004645335488021374, 0.005861267913132906, -0.012832222506403923, -0.005920293740928173, 0.008121958933770657, 0.03558078780770302, -0.006711240392178297, 0.0016837127041071653, -0.012206547893583775, -0.01639738492667675, -0.01998615637421608, 0.00107353285420686, 0.007443161215633154, -0.046984586864709854, -0.009756974875926971, 0.025263069197535515, 0.0024156332947313786, -0.006041296757757664, -0.029017113149166107, -0.01753068156540394, -0.0003427189076319337, 0.009190326556563377, 0.005150006618350744, -0.016291137784719467, 0.029867086559534073, -0.008051127195358276, 0.03357391059398651, 0.01479188073426485, -0.013209987431764603, 0.02232358045876026, -0.004692555870860815, 0.035155802965164185, -0.024979744106531143, 0.021473608911037445, 0.029394878074526787, 0.010819440707564354, -0.005554333329200745, 0.02752966247498989, -0.03409333899617195, -0.012100301682949066, 0.013505117036402225, 0.023303410038352013, 0.047881778329610825, 0.010972907766699791, 0.008340354077517986, -0.004241008311510086, -0.01028230506926775, -0.004072784446179867, -0.020340312272310257, 0.010766317136585712, 0.015653658658266068, 0.03331419453024864, -0.04188475012779236, -0.02920599654316902, -0.005852414295077324, -0.0424514003098011, -0.013894687406718731, -0.0138120511546731, -0.014225232414901257, 0.0024318655487149954, 0.05208441987633705, -0.026301924139261246, -0.014437725767493248, -0.0017796297324821353, -0.025263069197535515, -0.015228671953082085, -0.015925176441669464, 0.01524047739803791, 0.021945815533399582, 0.01070138905197382, -0.01920701563358307, 0.019301457330584526, 0.016645293682813644, 0.056239839643239975, 0.01343428622931242, -0.02229996956884861, 0.0038101193495094776, -0.027317168191075325, -0.0023108625318855047, -0.004657140467315912, 0.06582564115524292, -0.014886322431266308, -0.027836596593260765, 0.015016179531812668, 0.015464775264263153, -0.026160262525081635, 0.010176058858633041, -0.01234821043908596, -0.025145016610622406, 0.008712217211723328, 0.005999978631734848, 0.023114526644349098, 0.030362902209162712, -0.004878487437963486, -0.01009342260658741, 0.0003596888273023069, -0.003562210826203227, -0.009060469456017017, 0.03874457627534866, -0.00016591801249887794, 0.015075204893946648, -0.024070745334029198, 0.0180146936327219, -0.023964500054717064, -0.023622149601578712, -0.018782028928399086, -0.017105694860219955, -0.004987685475498438, -0.011285744607448578, -0.004716166295111179, -0.0037068240344524384, 0.021438192576169968, -0.03560439869761467, 0.010719096288084984, 0.032983649522066116, -0.009939954616129398, -0.010453480295836926, 0.005465794820338488, 0.040302857756614685, 0.014957153238356113, 0.012442651204764843, 0.015925176441669464, 0.004435793496668339, 0.02854490652680397, -0.01465021912008524, 0.026538027450442314, 0.01452036201953888, -0.03059900552034378, 0.007962588220834732, -0.04353747516870499, -0.015039789490401745, 0.019242430105805397, -0.013103741221129894, 0.00013446829689200968, -0.001356119173578918, 0.012419041246175766, 0.006593188736587763, -0.025357509031891823, -0.03957093879580498, -0.014496751129627228, 0.03584050387144089, 0.02186317928135395, -0.04502492770552635, -0.00032888472196646035, 0.01934867724776268, -0.009131300263106823, -0.00954448152333498, -0.04601656273007393, -0.022335385903716087, 5.3353844123193994e-05, 7.04621197655797e-05, -0.018321627750992775, 0.016928616911172867, -0.005887829698622227, 0.03600577637553215, 0.013446090742945671, -0.02345687709748745, 0.00811015348881483, 0.007319206837564707, -0.012548898346722126, -0.006469234358519316, -0.009579896926879883, -0.013387065380811691, 0.041837532073259354, -0.02915877476334572, -0.04410412162542343, -0.0039842454716563225, 0.013505117036402225, -0.0166925135999918, -0.0007621714612469077, -0.00324642239138484, 0.00435905996710062, -0.01663348823785782, 0.014933543279767036, 0.02128472551703453, 0.012891247868537903, 0.004828315228223801, -0.046583209186792374, 0.0022975816391408443, -0.01807371899485588, 0.007118518929928541, 0.003709775395691395, -0.034541934728622437, -0.014957153238356113, 0.016704319044947624, 0.030835110694169998, -0.0031106628011912107, 0.021048622205853462, 0.013351649977266788, 0.012678754515945911, -0.03782377019524574, 0.0006452264497056603, 0.020741688087582588, -0.017743173986673355, -0.013410675339400768, -0.0029616225510835648, 0.03947649523615837, 0.0040403204038739204, 0.0045567965134978294, -0.0024333412293344736, 0.009485456161201, -0.015535607002675533, 0.01946672983467579, -0.01470924448221922, -0.0456860177218914, 0.03170869126915932, 0.011504140682518482, 0.014166207052767277, 0.016763344407081604, -0.017306381836533546, 0.006864707451313734, 0.028851840645074844, 0.012478066608309746, 0.03111843392252922, 0.006445623934268951, -0.005737313535064459, -0.006410208530724049, -0.024601979181170464, -0.0024274385068565607, 0.020470168441534042, 0.016869591549038887, 0.01152775064110756, -0.0015582827618345618, -0.046606820076704025, -0.023881863802671432, -0.0018194721778854728, -0.018545925617218018, -0.005610408261418343, -0.027954647317528725, 0.021957620978355408, 0.024861693382263184, 0.002088039880618453, 0.003768801223486662, -0.00983370840549469, -0.006516455207020044, 0.023929083719849586, 0.002214945387095213, 0.0028450465761125088, 0.051848314702510834, -0.015146035701036453, -0.008883392438292503, 0.031685084104537964, -0.020470168441534042, -0.01094929687678814, 0.03097677230834961, -0.020092403516173363, 0.030622616410255432, -0.009154911153018475, -0.028851840645074844, 0.014437725767493248, -0.015205061994493008, -0.03133092820644379, -0.023374240845441818, 0.008688606321811676, -0.0032552762422710657, 0.013693999499082565, 0.03381001204252243, 0.021379167214035988, 0.007159837055951357, 0.007437258493155241, -0.015087010338902473, 0.020340312272310257, -0.03100038319826126, -0.008039322681725025, -0.01420162245631218, -0.012855832464993, 0.026183871552348137, -0.0241179671138525, 0.005037857219576836, 0.0009540054597891867, 0.024507537484169006, -0.024082550778985023, 0.014154401607811451, -0.03935844451189041, -0.021190283820033073, -0.026844961568713188, 0.011232621036469936, 0.0072955964133143425, 0.0016187842702493072, 0.004158372059464455, 0.010087519884109497, 0.025664445012807846, -5.45528091606684e-05, -0.009272962808609009, -0.012123911641538143, -0.03883901610970497, 0.01086075883358717, 0.010848953388631344, 0.025900548323988914, -0.0021396875381469727, 0.012100301682949066, -0.018144549801945686, -0.008688606321811676, -0.005020149517804384, -0.01132116001099348, -0.020458362996578217, 0.006209520623087883, 0.017849421128630638, -0.02776576578617096, -0.04766928404569626, -0.005182470660656691, -0.005722557194530964, 0.037469618022441864, -0.0196083914488554, -0.013280819170176983, 0.03456554561853409, 0.004804705269634724, 0.027293557301163673, 0.03702101856470108, -0.010724999010562897, -0.0021160771138966084, -0.0023551317863166332, -0.008664996363222599, 0.0005592700326815248, -0.016987642273306847, 0.0002580536820460111, -0.03777655214071274, 0.03496691957116127, -0.004969977308064699, -0.025381119921803474, 0.0006621963693760335, -0.02649080567061901, -0.031212875619530678, -0.024720029905438423, 0.005483502522110939, -0.012655144557356834, -0.011563166044652462, -0.0527455098927021, -0.012442651204764843, -0.017837615683674812, 0.028757398948073387, -0.002296105958521366, 0.0002757614420261234, -0.015205061994493008, 0.03883901610970497, 0.00582880387082696, 0.0017811054131016135, 0.028332414105534554, -0.049959488213062286, -0.037941824644804, -0.05156499147415161, -0.03267671540379524, 0.05439823493361473, 0.017365409061312675, 0.01639738492667675, 0.03166147321462631, -0.027671324089169502, -0.021390972658991814, -0.044033292680978775, 0.00012367762974463403, -0.02582971751689911, -0.0038189732003957033, -0.005642872303724289, -0.03173230215907097, -0.018463289365172386, -0.016326554119586945, 0.015393944457173347, -0.009851416572928429, 0.005253301467746496, 0.013469701632857323, 0.004807656165212393, -0.020741688087582588, -0.017943860962986946, 0.0015715635381639004, 0.012607923708856106, 0.015098814852535725, -0.0016571510350331664, -0.004364962223917246, 0.014012739062309265, -0.010075714439153671, 0.01810913346707821, -0.017247356474399567, -0.005200178362429142, -0.010294110514223576, 0.037091851234436035, 0.012383625842630863, -0.000270965596428141, 0.013693999499082565, -0.01343428622931242, -0.026703299954533577, 0.0007145818090066314, 0.031425368040800095, 0.00535069452598691, -0.0050437599420547485, 0.011055544018745422, 0.02559361420571804, 0.022807592526078224, 0.03968898952007294, 0.0018829249311238527, 0.008788950741291046, -0.015228671953082085, 0.012749586254358292, 0.010719096288084984, -0.021119453012943268, -0.006463331636041403, -0.0035061361268162727, -0.003010318847373128, 0.024247823283076286, -0.007148031610995531, 0.021886790171265602, -0.0027579832822084427, -0.022984670475125313, 0.012182937934994698, -0.02302008494734764, 0.05897863954305649, -0.004364962223917246, -0.008541041985154152, 0.0073605249635875225, -0.017329992726445198, 0.010984713211655617, 0.007106713484972715, 0.0015199158806353807, 0.03520302474498749, -0.025168627500534058, -0.019242430105805397, 0.027742154896259308, -0.024047136306762695, 0.005427428055554628, -0.0013325088657438755, -0.04282916337251663, -0.0009754023631103337, -0.03366835042834282, 0.02726994827389717, 0.00013345378101803362, 0.02611304074525833, 0.028450464829802513, 0.032204508781433105, 0.024271434172987938, -0.025640834122896194, -0.01086075883358717, 0.025357509031891823, 0.007874050177633762, -0.0141307907178998, -0.004282326437532902, 0.030811499804258347, -0.0008957174723036587, 0.028757398948073387, -0.006239033304154873, 0.011669413186609745, -0.040562570095062256, 0.0013162767281755805, 0.02200484089553356, -0.012891247868537903, 0.009857318364083767, 0.044694382697343826, -0.030693447217345238, 0.00848791841417551, 0.003107711672782898, 0.018215380609035492, 0.008322646841406822, -0.03010318987071514, -0.016786955296993256, 0.020222259685397148, -0.01599600911140442, 0.030244851484894753, -0.04072784259915352, -0.005577943753451109, -0.004311839118599892, -0.007620238699018955, 0.02585332654416561, 0.013800246641039848, -0.03421138972043991, 0.018959106877446175, -0.02342146262526512, 0.018604950979351997, -0.007460868917405605, -0.02082432433962822, 0.009869123809039593, 0.03650159388780594], [0.04186316952109337, 0.027826258912682533, 0.03319840878248215, -0.0028284252621233463, -0.05372151359915733, 0.007940634153783321, -0.017601842060685158, 0.03257950022816658, 0.014210207387804985, -0.007049401290714741, -0.0510973297059536, -0.0017406884580850601, -0.04369514808058739, -0.030475201085209846, -0.01757708564400673, 0.0466906800866127, 0.0010343557223677635, 0.006399544421583414, -0.07204129546880722, 0.0008254731656052172, 0.008386250585317612, 0.02135244570672512, 0.007711636833846569, 0.037382252514362335, 0.02587049826979637, -0.02658843621611595, 0.045527126640081406, -0.01994132809340954, 0.033223167061805725, -0.03381732106208801, 0.016809634864330292, 0.0005194988334551454, 0.039560820907354355, -0.014581553637981415, 0.03913995996117592, -0.03681285306811333, -0.029980070888996124, 0.031044598668813705, 0.01646304503083229, 0.012811467051506042, -0.03616918623447418, 0.005201950669288635, -0.016029806807637215, -0.01612883247435093, -0.003917709458619356, 0.0889747142791748, 0.02700929529964924, -0.04079864174127579, -0.029237376525998116, -0.01357891783118248, 0.03391634672880173, -0.0038620075210928917, 0.009042296558618546, 0.019879436120390892, 0.06228724867105484, 0.023778578266501427, 0.04683921858668327, 0.02569720335304737, -0.02263978123664856, -0.03827348351478577, -0.017874162644147873, -0.06446582078933716, -0.015670837834477425, 0.029385916888713837, -0.014915766194462776, -0.039585575461387634, 0.006325275171548128, 0.03114362433552742, -0.022515999153256416, 0.05664277821779251, -0.04141755402088165, 0.049364376813173294, -0.027974797412753105, -0.051344893872737885, -0.045700423419475555, -0.011053758673369884, -0.011715994216501713, -0.051493432372808456, 0.047680940479040146, -0.00408172095194459, -0.08882617205381393, 0.028024310246109962, -0.013999776914715767, 0.04946340247988701, 0.021067745983600616, 0.0030373078770935535, -0.008058227598667145, -0.009976852685213089, -0.05634569749236107, 0.01574510708451271, -0.02337009645998478, -0.05649423971772194, 0.031069355085492134, 0.021983735263347626, 0.023989008739590645, -0.020560238510370255, 0.05461274832487106, -0.000573266763240099, -0.024174680933356285, 0.05233515426516533, 0.009005161933600903, 0.04451211169362068, -0.012502011843025684, 0.0144825279712677, 0.005570203065872192, -0.023803334683179855, -0.0369613915681839, 0.016908660531044006, 0.054068103432655334, -0.0006471492815762758, -0.004601606633514166, -0.016883904114365578, -0.03074752166867256, 0.07818089425563812, -0.016079319640994072, -0.049686212092638016, -0.041541337966918945, 0.018691126257181168, 0.012167799286544323, -0.004103383049368858, -0.0027448723558336496, -0.04817606881260872, -0.015707973390817642, -0.06293091922998428, -0.024471759796142578, 0.024125168099999428, -0.013034275732934475, 0.07476450502872467, -0.06456484645605087, 0.011103271506726742, 0.027751989662647247, -0.0007508169510401785, 0.05084976553916931, -0.01528711337596178, -0.0023843564558774233, -0.003750603413209319, -0.029608724638819695, 0.010106824338436127, 0.005994157399982214, -0.004926535300910473, -0.006189114414155483, -0.010391523130238056, 0.026687461882829666, 0.033049870282411575, -0.0287917610257864, 0.03673858568072319, -0.020027974620461464, 0.08169630914926529, 0.002234270330518484, 0.03426293656229973, -0.061990171670913696, 0.0226521585136652, 0.009815935976803303, -0.008986594155430794, 0.016698231920599937, -0.013182814233005047, 0.037580303847789764, 0.041887927800416946, -0.021451471373438835, 0.017638975754380226, -0.020684020593762398, -0.02624184638261795, 0.03723371401429176, 0.03451050445437431, -0.012464877218008041, 0.041169989854097366, -0.0016138115897774696, 0.005870375316590071, -0.03418866917490959, -0.027603451162576675, -0.01844356209039688, 0.012761954218149185, -0.0010119202779605985, -0.030896060168743134, -0.03787738084793091, -0.009067052975296974, 0.009760233573615551, 0.020325051620602608, -0.008070605807006359, -0.015633704140782356, 0.026860756799578667, -0.012502011843025684, -0.034881848841905594, -0.03257950022816658, -0.06030673161149025, 0.018171239644289017, -0.00610865605995059, -0.024583162739872932, -0.029460186138749123, 0.02842041477560997, 0.03275279328227043, 0.003945560660213232, 0.021315310150384903, 0.014829118736088276, 0.01632688380777836, -0.031440701335668564, 0.016388775780797005, 0.03822397068142891, 0.009599316865205765, -0.029930558055639267, 0.012421553023159504, -0.008930892683565617, 0.0579301118850708, -0.02047359012067318, -0.050404150038957596, -0.060554295778274536, 0.020906828343868256, 0.031415946781635284, 0.0524836927652359, 0.027454912662506104, 0.027553938329219818, -0.004533526487648487, -0.010738113895058632, 0.020708777010440826, -0.009661207906901836, 0.008565734140574932, 0.027801502496004105, -0.002483382122591138, -0.03460953012108803, 0.003215244971215725, 0.008596680127084255, 0.010069689713418484, 0.0038341565523296595, -0.03201010078191757, -0.05976209044456482, -0.021946599707007408, 0.020906828343868256, 0.0033173654228448868, 0.018220752477645874, -0.04032827168703079, -0.008627626113593578, 0.037382252514362335, 0.012935249134898186, -0.054563235491514206, 0.02047359012067318, -0.012124475091695786, -0.0175523292273283, -0.00570017471909523, -0.018332157284021378, -0.004759429022669792, -0.0040724375285208225, 0.022020868957042694, 0.04436357319355011, 0.02245410718023777, -0.017094334587454796, -0.018542587757110596, -0.010632898658514023, 0.00015298718062695116, -0.014866253361105919, -0.005960117559880018, 0.017787516117095947, 0.004214786924421787, 0.028692735359072685, -0.06322799623012543, 0.022157030180096626, -0.006894673686474562, 0.013343730941414833, 0.00020443419634830207, 0.026563679799437523, 0.0022002302575856447, 0.0044004605151712894, 0.024682188406586647, -0.014024533331394196, -0.008739029988646507, -0.036639560014009476, -0.003001720644533634, 0.031514972448349, 0.00039436263614334166, -0.005201950669288635, 0.028643222525715828, -0.03059898316860199, 0.013789347372949123, 0.02730637416243553, -0.0376545749604702, -0.05540495365858078, 0.012087340466678143, -0.008652382530272007, -0.020349808037281036, -0.009995420463383198, -0.0047006323002278805, -0.028866030275821686, 0.006059143226593733, 0.023989008739590645, -0.06332702189683914, 0.014420636929571629, 0.0014637255808338523, 0.001168968970887363, 0.06085137277841568, 0.021315310150384903, -0.01883966475725174, 0.08560783416032791, 0.023419609293341637, 0.042085979133844376, -0.02374144271016121, 0.02280069887638092, -0.005718742031604052, -0.05057744309306145, 0.0351046584546566, 0.02809857949614525, -0.03507990017533302, 0.011616967618465424, 0.04919108375906944, -0.015720350667834282, -0.055652517825365067, -0.045007240027189255, 0.04777996614575386, 0.040996696799993515, 0.039758872240781784, -0.031589239835739136, 0.012341094203293324, 0.025573421269655228, 0.04919108375906944, -0.018802529200911522, 0.013851238414645195, -0.06654535979032516, -0.010626710020005703, 0.024929754436016083, 0.04359612241387367, -0.018554965034127235, 0.05901939794421196, 0.08323121070861816, 0.0028965056408196688, 0.03569881245493889, -0.02298637107014656, 0.03153972700238228, 0.00849765446037054, 0.006597596220672131, -0.018418805673718452, 0.01883966475725174, -0.02842041477560997, -0.049512915313243866, 0.01594315841794014, 0.012396796606481075, -0.00565994530916214, -0.0018010323401540518, -0.02424895018339157, -0.035005632787942886, 0.024768836796283722, 0.0015952442772686481, 0.029757263138890266, 0.004193125292658806, 0.002908883849158883, 0.0022760469000786543, -0.015658460557460785, -0.010484360158443451, 0.037010904401540756, 0.02876700460910797, -0.02008986659348011, 0.015608946792781353, 0.027083564549684525, 0.00033575945417396724, 0.004728483501821756, -0.06273286789655685, 0.010837139561772346, -0.03562454506754875, -0.055157389491796494, 0.016921039670705795, 0.008144875057041645, -0.02807382307946682, 0.020424077287316322, -0.03582259640097618, 0.052434179931879044, 0.02155049704015255, 0.04542810097336769, -0.04961194097995758, -0.014148316346108913, -0.03201010078191757, -0.02533823437988758, 0.010657655075192451, -0.028841273859143257, 0.01848069578409195, 0.010410090908408165, -0.003416391322389245, -0.02155049704015255, -0.005270031280815601, -0.006591407116502523, -0.019248146563768387, 0.017787516117095947, 0.00683278264477849, -0.02646465413272381, 0.08313218504190445, 0.01775038056075573, 0.048275094479322433, 0.01330659631639719, 0.04411600902676582, 0.018220752477645874, -0.018332157284021378, 0.02624184638261795, -0.00813249684870243, -0.0056754183024168015, -7.489795825676993e-05, 0.04183841496706009, 0.010626710020005703, -0.030326660722494125, -0.009655018337070942, 0.0032276231795549393, 0.048423632979393005, -0.0036887123715132475, -0.009178456850349903, -0.05372151359915733, 0.023469122126698494, 0.0026025227271020412, -0.0104286577552557, -0.052978821098804474, 0.009122754447162151, -0.012006882578134537, -0.01248963363468647, 0.002904241904616356, 0.052236128598451614, -0.021104881539940834, 0.05035463720560074, 0.019520467147231102, 0.037605058401823044, -0.0011387970298528671, 7.417266897391528e-05, 0.015980293974280357, 0.039164718240499496, 0.08615247160196304, -0.04488345980644226, -0.018913934007287025, 0.012192555703222752, 0.011022812686860561, -0.03814970329403877, -0.02174854837357998, 0.006139601580798626, 0.015584190376102924, -0.002758797723799944, 0.016165968030691147, 0.006334558594971895, -0.05342443659901619, -0.018703503534197807, 0.0019696857780218124, 0.0380011647939682, -0.017069578170776367, -0.05446420982480049, 0.006399544421583414, -0.01503954827785492, -0.016438288614153862, 4.431502748047933e-05, -0.009809746406972408, -0.0012525221100077033, -0.03968460112810135, 0.022157030180096626, 0.03710993006825447, -0.03980838507413864, 0.035030387341976166, -0.016339262947440147, 0.03889239579439163, 0.042061224579811096, -0.01898820325732231, -0.01809697039425373, -0.00860905833542347, -0.03347073122859001, -0.016883904114365578, -0.036639560014009476, -0.03550076112151146, 0.010379144921898842, -0.04079864174127579, 0.07981482148170471, 0.018406426534056664, 0.028742248192429543, 0.01650017872452736, 0.042085979133844376, -0.010899030603468418, 0.020547861233353615, 0.0029336402658373117, 0.0007020776974968612, 0.0003154514415655285, -0.02047359012067318, -0.003376161912456155, 0.016549691557884216, -0.019829923287034035, -0.007117481902241707, -0.00805203802883625, 0.053672000765800476, -0.04619555175304413, 0.0037475088611245155, -0.014061667956411839, 0.005876564420759678, 0.00040383971645496786, 0.01632688380777836, 0.018740639090538025, -0.02606855146586895, -0.02083255909383297, 0.025424882769584656, 0.06263384222984314, 0.04305148124694824, 0.01112183928489685, 0.010125391185283661, -0.01809697039425373, -0.06664438545703888, 0.0066718654707074165, 0.030376173555850983, -0.012799088843166828, 0.0019201728282496333, -0.008373872376978397, 0.02718259207904339, -0.06095040217041969, -0.013343730941414833, -0.03451050445437431, 0.02280069887638092, -0.052582718431949615, 0.015225222334265709, -0.030995085835456848, 0.02262740209698677, -0.013776969164609909, 0.0007299287244677544, 0.0051338705234229565, -0.0448339469730854, -0.0011148143094033003, -0.03201010078191757, -0.0162773709744215, 0.025845741853117943, -0.012378228828310966, -0.024372734129428864, -0.012601037509739399, 0.024125168099999428, 0.006937997415661812, 0.007853986695408821, 0.005641377996653318, -0.029980070888996124, 0.03654053434729576, -0.08511270582675934, 0.023060640320181847, -0.023679552599787712, 0.002503496827557683, 0.011802641674876213, -0.014012155123054981, 0.032158639281988144, -0.001566619612276554, -0.0075878542847931385, -0.0453043170273304, -0.04693824425339699, -0.02043645642697811, -0.024706944823265076, -0.020770668983459473, 0.04042729735374451, -0.016388775780797005, 0.027454912662506104, -0.012997140176594257, -0.015299491584300995, -0.021302932873368263, 0.020213648676872253, -0.01076287031173706, -0.011883099563419819, 0.025573421269655228, 0.0582767017185688, 0.024929754436016083, -0.013727456331253052, -0.0128609798848629, -0.00035780819598585367, 0.02245410718023777, 0.0022605741396546364, -0.013875994831323624, -0.022491242736577988, 0.023605283349752426, 0.022899724543094635, 0.03334695100784302, 0.0146558228880167, 0.018035080283880234, 0.036639560014009476, -0.00456756679341197, 0.02424895018339157, 0.006907051894813776, -0.016240237280726433, 0.0008138685952872038, -0.018567344173789024, 0.0009662755182944238, 0.01845593936741352, -0.005034844856709242, -0.024323219433426857, 0.03252998739480972, 0.02008986659348011, -0.017230495810508728, 0.035228438675403595, 0.004926535300910473, 0.0033111763186752796, 0.006170547101646662, 0.01702006533741951, -0.0035339845344424248, -0.022874968126416206, 0.016252614557743073, -0.012650550343096256, -0.041566092520952225, -0.002814499894157052, -0.0015178803587332368, 0.008516221307218075, -0.018332157284021378, -0.06397068500518799, 0.04324953258037567, 0.019867056980729103, -0.02101823315024376, 0.029757263138890266, -0.02317204512655735, 0.007055590394884348, 0.026860756799578667, 0.0005407739081420004, -0.023840470239520073, -0.0016741554718464613, -0.0013476796448230743, 0.0008587396587245166, -0.01812172681093216, -0.0024771930184215307, 0.008188198320567608, -0.011876910924911499, -0.020188892260193825, -0.005641377996653318, -0.01631450653076172, 0.03238144889473915, 0.03963508829474449, 0.029831532388925552, 0.0044004605151712894, -0.059663064777851105, -0.008825677447021008, -0.05253320559859276, -0.006411922629922628, -0.041368041187524796, -0.014296854846179485, -0.006133412476629019, 0.0128609798848629, 0.01049054879695177, -0.011338457465171814, -0.00015066625201143324, -0.024880239740014076, 0.005378340370953083, 0.00986544881016016, -0.008454330265522003, -0.03988265618681908, 0.036837611347436905, -0.02208276093006134, -0.019644249230623245, -7.47045487514697e-05, -0.032678525894880295, -0.02948494255542755, -0.021055368706583977, -0.012712441384792328, -0.005266936495900154, 0.009326995350420475, 0.022689294070005417, -0.006325275171548128, 0.04216025024652481, -0.00760642159730196, -0.002757250564172864, -0.04980999603867531, 0.04094718024134636, 0.02028791792690754, -0.024385111406445503, -0.025041157379746437, 0.0017252156976610422, -0.009407454170286655, 0.022664537653326988, 0.007278398610651493, -0.00967358611524105, -0.03399061784148216, -0.010434847325086594, -0.015460408292710781, -0.024026142433285713, -0.00768688041716814, 0.009568370878696442, 0.06768415868282318, -0.020943963900208473, 0.010564818978309631, 0.030301904305815697, -0.0010823213960975409, 0.026217089965939522, -0.025820985436439514, 0.008807109668850899, -0.015720350667834282, -0.008151063695549965, -0.021265797317028046, 0.007408370263874531, 0.02698453888297081, 0.009735477156937122, -0.012266824953258038, -0.004261205438524485, 0.01973089762032032, -0.07045687735080719, 0.036837611347436905, -0.01668585278093815, 0.005056506488472223, 0.01828264445066452, 0.012464877218008041, 0.013195192441344261, 0.0007086535915732384, -0.0077673387713730335, -0.0025282532442361116, 0.03698614984750748, 0.007544530555605888, 0.014519662596285343, 0.025994280353188515, -0.00012194489681860432, -0.009104187600314617, -0.026340872049331665, -0.011387971229851246, 0.011425105854868889, 0.003970317076891661, -0.02985628880560398, 0.010013987310230732, -0.01492814440280199, -0.0042642997577786446, -0.011926423758268356, 0.022367460653185844, -0.0373079814016819, -0.031514972448349, -0.04869595170021057, -0.015806999057531357, 0.007618800271302462, -0.00014244634076021612, 0.06070283427834511, -0.008113929070532322, -0.024533649906516075, 0.01076905895024538, -0.022181786596775055, -0.03782786801457405, 0.010608142241835594, 0.034287694841623306, -0.008175820112228394, 0.014606310054659843, 0.006548083387315273, -0.022887345403432846, -0.011264188215136528, 0.027454912662506104, -0.012873358093202114, 0.025263965129852295, 0.0383477546274662, -0.010750492103397846, 0.01631450653076172, -0.016079319640994072, -0.0057558766566216946, 0.023444365710020065, 0.021612389013171196, -0.0013940980425104499, -0.011802641674876213, -0.0042178817093372345, -0.03149021416902542, 0.009345563128590584, -0.05307784676551819, 0.01193261332809925, -0.025969523936510086, -0.030376173555850983, 0.01612883247435093, -0.022392217069864273, -0.014903387986123562, -0.0019851585384458303, -0.011456050910055637, -0.01241536345332861, 0.0021878520492464304, -0.013517025858163834, 0.003119313856586814, -0.00760642159730196, -0.003772265277802944, 0.008937081322073936, 0.0029259040020406246, 0.018889177590608597, 0.04087291285395622, -0.012619604356586933, -0.003583497367799282, 0.002328654285520315, 0.03426293656229973, 0.013492269441485405, -0.021451471373438835, -0.021983735263347626, 0.03530270978808403, 0.023852847516536713, -0.007123671006411314, 0.01626499369740486, -0.04904254525899887, 0.009716910310089588, 0.013096166774630547, 0.023592904210090637, 0.03584735095500946, -0.0027293995954096317, -0.00860286969691515, 0.010212038643658161, 0.00715461652725935, -0.00675232382491231, -0.052978821098804474, -0.027925284579396248, 0.005356678739190102, 0.021958978846669197, 0.014433015137910843, -0.005378340370953083, 0.01528711337596178, 0.0049512917175889015, 0.007816852070391178, -0.029385916888713837, 0.02319680154323578, 0.02735588699579239, -0.026390384882688522, 0.016871526837348938, -0.021129637956619263, 0.01503954827785492, -0.01991656981408596, 0.02043645642697811, -0.03512941300868988, 0.045551884919404984, -0.024706944823265076, -0.051146842539310455, 0.008540977723896503, 0.008212954737246037, 0.009067052975296974, -0.005594959482550621, -0.002226534066721797, 0.03280230611562729, 0.03347073122859001, -0.0006150432745926082, -0.03785262629389763, 0.013851238414645195, 0.011616967618465424, -0.014816740527749062, 0.033743053674697876, -0.002365789143368602, 0.015980293974280357, 0.0024323221296072006, -0.0006370919873006642, -0.029658237472176552, -0.024904998019337654, 0.020139379426836967, 0.006572839803993702, 0.015175708569586277, 0.017069578170776367, -0.008281035348773003, 0.012545335106551647, 0.0002908883907366544, 0.014173072762787342, 0.02497926726937294, -0.052434179931879044, -0.010471981950104237, -0.02500402368605137, 0.0012649003183469176, 0.0022358177229762077, 0.009153700433671474, 0.00959312729537487, 0.006096277851611376, -0.02205800451338291, 0.038322996348142624, -0.017156226560473442, 0.001835072529502213, -0.004446879029273987, 0.028544196859002113, 0.021822817623615265, -0.01249582227319479, 0.004576850216835737, -0.007711636833846569, 1.8349757738178596e-05, 0.027628207579255104, -0.006003441289067268, 0.004694443196058273, -0.011901667341589928, 0.010998056270182133, -0.04168987646698952, -0.03022763505578041, 0.011387971229851246, 0.0010892841964960098, -0.01140034943819046, -0.012192555703222752, -0.001385588082484901, -0.027430156245827675, 0.0019418346928432584, -0.05015658587217331, 0.01304665394127369, -0.012997140176594257, -0.01919863373041153, 0.03040092997252941, 0.006393355317413807, 0.00033189126406796277, 0.003663955722004175, 0.010700979270040989, -0.030450444668531418, -0.0032957035582512617, 0.05030512437224388, -0.0017499721143394709, 0.0287917610257864, -0.049141570925712585, -0.008751408196985722, 0.00906086340546608, -0.0177256241440773, -0.0013128658756613731, -0.007946822792291641, -0.006715189199894667, 0.006189114414155483, -0.00967358611524105, 0.04342282935976982, -0.0027665342204272747, -0.016735365614295006, -0.010441035963594913, -0.020201269537210464, 0.06382215023040771, 0.024917375296354294, 0.005006993655115366, 0.015423273667693138, 0.029014568775892258, -0.029237376525998116, 0.04386844485998154, 0.005545446649193764, 0.0027309467550367117, -0.015893645584583282, -0.009549804031848907, -0.0076126111671328545, -0.0045551881194114685, -0.014767227694392204, 0.00756309786811471, -0.060554295778274536, -0.010193471796810627, 0.005666134413331747, 0.07996336370706558, -0.035005632787942886, 0.013034275732934475, -0.0009879374410957098, 0.0008301149937324226, 0.061990171670913696, 0.005393813364207745, 0.02592001110315323, -0.010564818978309631, 0.03582259640097618, 0.0025298006366938353, -0.014321611262857914, -0.03131692111492157, 0.0287917610257864, 0.0029104312416166067, 0.03201010078191757, 0.005495933815836906, 0.028469927608966827, -0.0026566775050014257, -0.010546251200139523, -0.02460791915655136, 0.012235879898071289, 0.005749687552452087, 0.024347975850105286, -0.010410090908408165, 0.02700929529964924, 0.03691187873482704, -0.013034275732934475, 0.03743176534771919, 0.0038124946877360344, -0.012136853300035, -0.01719336025416851, 0.0126876849681139, 0.015893645584583282, -0.0027232104912400246, 0.029559211805462837, 0.009029918350279331, -0.012161609716713428, -0.010632898658514023, -0.02661319263279438, 0.013925507664680481, -0.005483555607497692, 0.0039269933477044106, -0.009939718060195446, -0.014494906179606915, 0.050948791205883026, -0.02658843621611595, 0.017081955447793007, 0.028271876275539398, 0.03535222262144089, 0.02117915078997612, 0.01825788803398609, -0.02046121284365654, -0.02153811790049076, -0.008596680127084255, 0.02552390843629837, 0.004425216931849718, 0.02030029520392418, -0.04015497490763664, 0.030648496001958847, -0.018406426534056664, 0.026167577132582664, -0.03748127818107605, -0.006350031588226557, -0.0020733533892780542, -0.017119091004133224, 0.02424895018339157, 0.051344893872737885, 0.01160458941012621, -0.0488940067589283, 0.00764355668798089, -0.0034071076661348343, 0.010546251200139523, 0.022577889263629913, -0.002023840555921197, -0.0019542130175977945, 0.036292966455221176, 0.0157574862241745, 0.006894673686474562, 0.01611645519733429, 0.007495017722249031, 0.048423632979393005, -0.006579028908163309, 0.004802752751857042, 0.03473331034183502, -0.03114362433552742, 0.037010904401540756, -0.014272098429501057, 0.01861685700714588, 0.025622934103012085, 0.04213549196720123, 0.02012700028717518, 0.018901556730270386, -0.010075878351926804, -0.039016179740428925, 0.017997944727540016, -0.017614219337701797, 0.02371668629348278, -0.013554160483181477, -0.00958693865686655, -0.018889177590608597, 0.034857094287872314, -0.015225222334265709, -0.0024648148100823164, -0.010824761353433132, 0.019310036674141884, -0.029608724638819695, -0.007012266665697098, -0.00787874311208725, -0.006201492622494698, 0.012013071216642857, 0.009011350572109222, -0.025424882769584656, 0.013541782274842262, 0.0024849295150488615, -0.019656628370285034, 0.008708084002137184, 0.002416849136352539, 0.045329075306653976, -0.004320002160966396, 0.01590602472424507, 0.0589698851108551, 0.030871303752064705, 0.007049401290714741, 0.008311981335282326, 0.02242935076355934, -0.024224193766713142, -0.02044883370399475, 0.016982929781079292, 0.016017427667975426, 0.031613998115062714, 0.0039300876669585705, -0.03668907284736633, 0.01663633994758129, 0.01792367547750473, -0.01123324315994978, -0.01921101100742817, -0.04485870152711868, -0.027751989662647247, 0.03272803872823715, -0.03243096172809601, 0.004716105293482542, 0.0010134675540030003, -0.01970614120364189, 0.00933318492025137, -0.018567344173789024, 0.0008007166907191277, -0.016698231920599937, -0.002727852202951908, 0.01758946292102337, -0.004651119466871023, 0.008800921030342579, 0.011647913604974747, -0.016512557864189148, 0.005916793365031481, 0.020349808037281036, -0.015608946792781353, -0.0069627538323402405, 0.006077710539102554, -0.026885513216257095, 0.010366766713559628, -0.000892006151843816, -0.013158057816326618, 0.022367460653185844, -0.03260425478219986, 0.0008548714686185122, 0.007853986695408821, -0.012885736301541328, 0.039164718240499496, 0.023580526933073997, 0.01954522356390953, -0.0003649643622338772, -0.004422122146934271, 0.0030357607174664736, 0.01902533881366253, -0.028494684025645256, -0.0007740261498838663, 0.007810662500560284, 4.8860158130992204e-05, 0.00465730857104063, -0.008287223987281322, -0.018592100590467453, -0.010224416851997375, -0.017824649810791016, 0.01793605461716652, 0.015361382625997066, 0.032133884727954865, 0.021624766290187836, 0.011784073896706104, -0.009580749087035656, 0.01350464764982462, 0.0028547290712594986, -0.022775942459702492, 0.02030029520392418, -0.010998056270182133, -0.012167799286544323, 0.015324248000979424, -0.004774902015924454, -0.02604379504919052, 0.014791984111070633, -0.009791179560124874, 0.006956564728170633, 0.019495710730552673, 0.002980058779940009, 0.007266020402312279, -0.0053876242600381374, 0.03183680400252342, 0.017267629504203796, -0.017428547143936157, 0.031960587948560715, 0.014098802581429482, 0.0062262495048344135, 0.027380643412470818, -0.0010389976669102907, -0.025226831436157227, 0.007915877737104893, 0.023122532293200493, -0.07273447513580322, 0.022020868957042694, -0.0023549580946564674, -0.01357891783118248, 0.008033471181988716, 0.03059898316860199, 0.007037023082375526, -0.025251587852835655, -0.0005481234402395785, -0.01157364435493946, -0.004812036640942097, -0.044611137360334396, -0.0005960891139693558, -0.013170436024665833, 0.0045551881194114685, 3.348407699377276e-05, -0.02770247682929039, -0.008336737751960754, 0.008206766098737717, 0.00986544881016016, 0.0018180523766204715, -0.02207038179039955, -0.016747744753956795, 0.008404817432165146, 0.00941364374011755, 0.05634569749236107, -0.012997140176594257, -0.0018814908107742667, 0.008126307278871536, 0.01845593936741352, 0.0011596853146329522, 0.02970775030553341, 0.01794843189418316, -0.00683278264477849, 0.03391634672880173, -0.008955649100244045, 0.012081151828169823, 0.035228438675403595, 0.004465446341782808, -0.02245410718023777, -0.009648829698562622, 0.006142696365714073, 0.004564472008496523, 0.01704482175409794, 0.007816852070391178, 0.014878631569445133, -0.02099347673356533, -0.010645276866853237, -0.02807382307946682, -0.03782786801457405, -0.039560820907354355, 0.0025530096609145403, 0.020560238510370255, 0.028568953275680542, -0.0016818918520584702, -0.0010397712467238307, -0.0024431529454886913, 0.0017004592809826136, 0.03547600656747818, 0.01557181216776371, -0.03748127818107605, -0.024211816489696503, 0.010601953603327274, 0.03275279328227043, 0.011796452105045319, 0.0031657321378588676, 0.03527795150876045, 0.01531186979264021, 0.032876577228307724, 0.01596791483461857, 0.002243553986772895, 0.019805166870355606, -0.026316115632653236, 0.013628430664539337, -0.02624184638261795, 0.00025433392147533596, -0.005570203065872192, 0.009531236253678799, -0.0032028667628765106, 0.028346145525574684, 0.0058301459066569805, 0.00271237944252789, 0.005356678739190102, -0.05084976553916931, -0.012365850619971752, 0.018319780007004738, -0.01883966475725174, -0.056939855217933655, 0.0045087700709700584, -0.01157983299344778, -0.008089172653853893, -0.015881268307566643, 0.013888373039662838, 0.0060096303932368755, 0.0071979402564466, 0.013059032149612904, -0.04381893202662468, 0.016797257587313652, -0.003939371556043625, -0.0031812048982828856, 0.01663633994758129, -0.01976803131401539, 0.013801725581288338, -0.015559433959424496, -0.0047718072310090065, -0.04272964596748352, -0.027751989662647247, -0.0003233812458347529, 0.06570363789796829, 0.001168195391073823, -0.010205850005149841, -0.0019758748821914196, 0.010861895978450775, 0.0075878542847931385, 0.013875994831323624, 0.00610556174069643, 0.0034782823640853167, -0.0003402078873477876, -0.00825008936226368, 0.0012966195354238153, 0.0052514635026454926, -0.02205800451338291, -0.04587371647357941, -0.0058301459066569805, 0.03300035744905472, -0.005526879336684942, 0.02606855146586895, -0.01990419253706932, -0.009401264600455761, 0.027380643412470818, 0.002314728917554021, -0.005316449329257011, 0.015249978750944138, -0.00028547292458824813, -0.007272209506481886, -0.033594515174627304, 0.020745912566781044, 0.006213870830833912, -0.007525963243097067, 0.006281951442360878, -0.028494684025645256, 0.027380643412470818, -0.010051121935248375, 0.022664537653326988, -0.008794731460511684, 0.04166511818766594, 0.0045892284251749516, 0.017651354894042015, -0.0004119629447814077, -0.029980070888996124, 0.018951069563627243, -0.022033248096704483, 0.018579721450805664, 0.005406191572546959, -0.04641835764050484, 0.035599786788225174, 0.039362769573926926, 0.014730093069374561, 0.01501479186117649, 0.027603451162576675, 0.015324248000979424, -0.0066347308456897736, -0.028519440442323685, 0.0003922351461369544, 0.04468540847301483, 0.011103271506726742, 0.007866364903748035, -0.005375246051698923, 0.0060498593375086784, -0.02278831973671913, 0.05035463720560074, -0.00501627754420042, -0.013467513024806976, 0.033965859562158585, 0.01114659570157528, 0.0012525221100077033, -0.0018025796161964536, 0.012848601676523685, 0.0040755318477749825, -0.0128609798848629, -0.05228564143180847, -0.013900751248002052, -0.006182925309985876, -0.006399544421583414, 0.006257195025682449, 0.01375221274793148, -0.0016215479699894786, -0.017676111310720444, 0.01059576403349638, 0.05037939175963402, -0.001480745617300272, -0.0037196578923612833, 0.008311981335282326, -0.006028197705745697, -0.019681384786963463, 0.0014126653550192714, -0.026217089965939522, 0.025845741853117943, 0.010391523130238056, -0.0517905093729496, -0.0014173071831464767, 0.003323554527014494, 0.042085979133844376, 0.01266292855143547, 0.009215591475367546, 0.024162303656339645, -0.0010181093821302056, -0.03280230611562729, -0.03654053434729576, 0.0060498593375086784, -0.007414559368044138, 0.025078292936086655, -0.0161040760576725, 0.011456050910055637, 0.01810934953391552, 0.007080347277224064, -0.005124587099999189, 0.020733533427119255, -0.05981160327792168, -0.006405733525753021, -0.025672446936368942, 0.0018165051005780697, 0.03854580596089363, 0.020906828343868256, -0.028494684025645256, 0.02205800451338291, 0.02064688690006733, -0.004084815736860037, -0.04094718024134636, 0.009921150282025337, -0.022008491680026054, -6.174609006848186e-05, -0.015423273667693138, 0.013232327066361904, -0.02298637107014656, 0.04297721013426781, -0.020003218203783035, -0.004716105293482542, 0.005065790377557278, -0.010094446130096912, -0.015992671251296997, 0.0007214186480268836, -0.012675306759774685, 0.0072165075689554214, -0.05263223126530647, -0.0004111893067602068, 0.0015078230062499642, 0.03240620344877243, -0.04079864174127579, 0.007761149667203426, 0.02169903554022312, 0.007309344131499529, 0.013145679607987404, 0.056543752551078796, -0.011524131521582603, 0.02750442549586296, -0.006647109054028988, 0.013875994831323624, -0.005712552927434444, -0.05664277821779251, -0.010471981950104237, -0.03584735095500946, 0.040996696799993515, -0.018171239644289017, -0.024162303656339645, -0.021760927513241768, 0.006145790684968233, -0.04943864792585373, -0.03691187873482704, 0.01229777093976736, -0.03386683389544487, -0.018505452200770378, -0.009011350572109222, -0.00071793730603531, 0.001211519236676395, 0.012799088843166828, -0.016388775780797005, 0.010471981950104237, -0.04149182513356209, 0.013281839899718761, 0.007773527875542641, -0.018554965034127235, 0.008590491488575935, -0.0001130480450228788, -0.023060640320181847, -0.03822397068142891, -0.003054328029975295, 0.040501564741134644, 0.007420748472213745, 0.03025239147245884, 0.02008986659348011, -0.012279203161597252, -0.010546251200139523, -0.008540977723896503, -0.006622352637350559, -0.00877616461366415, 0.02120390720665455, -0.02497926726937294, 0.008485276252031326, 0.017812272533774376, 0.016339262947440147, 0.01721811667084694, 0.011097082868218422, -0.018158862367272377, 0.008070605807006359, 0.0070679690688848495, 0.014940522611141205, 0.007742582354694605, -0.03265376761555672, -0.013640808872878551, 0.011802641674876213, 0.027454912662506104, -0.0008479087264277041, 0.0188272874802351, -0.009896393865346909, 0.00444068992510438, -0.014284476637840271, 0.020943963900208473, -0.011666481383144855, 0.020894451066851616, 0.012811467051506042, 0.00678945891559124, -0.010304875671863556, 0.0344114787876606, -0.04305148124694824, -0.017688488587737083, 0.018963446840643883, 0.010255362838506699, -0.004815130960196257, 0.008825677447021008, 0.005071979481726885, 0.040823400020599365, -0.002778912428766489, 0.007525963243097067, 0.008342926390469074, -0.03352024406194687, 0.023456744849681854, -0.04329904541373253, -0.06307945400476456, 0.005762065760791302, 0.024744080379605293, 0.0018830380868166685, 0.003530889982357621, -0.016784878447651863, 0.03995692357420921, -0.0050967358984053135, -0.01648780144751072, 0.003998167812824249, -0.020349808037281036, 0.016042184084653854, -0.013628430664539337, 0.020696399733424187, 0.005406191572546959, -0.034683797508478165, -0.003512322437018156, 0.019297659397125244, -0.0016958174528554082, 0.030920816585421562, -0.06307945400476456, -0.029385916888713837, 0.018790151923894882, -0.01512619573622942, -0.011821208521723747, 0.009320806711912155, -0.032851818948984146, -0.010892841964960098, -0.0003991978883277625, 0.020164135843515396, -0.006127223372459412, 0.0005577939446084201, 0.005440231878310442, 0.026316115632653236, 0.01366556528955698, -0.02209513820707798, 0.005118397530168295, 0.002342579886317253, 0.015497542917728424, -0.03463428467512131, -0.023667173460125923, 0.016215480864048004, 0.02809857949614525, -0.0008889115997590125, -0.015868889167904854, 0.04104620963335037, -0.03584735095500946, -0.011375593021512032, -0.013294218108057976, 0.012223501689732075, -0.0019047000678256154, 0.05649423971772194, -0.04636884480714798, 0.022862588986754417, -0.013380865566432476, 0.029113594442605972, 0.009685964323580265, 7.291550718946382e-05, 0.02968299388885498, 0.0055763921700417995, -0.0222436785697937, 0.03980838507413864, -0.0025777663104236126, -0.007037023082375526, -0.05505836382508278, -0.027405399829149246, 0.015844132751226425, 0.001748424838297069, -0.008281035348773003, -0.007055590394884348, -0.025239208713173866, -0.005087452009320259, 0.005811578594148159, 0.007569286972284317, 0.03460953012108803, 0.03733273968100548], [0.04665568470954895, 0.025748325511813164, 0.020848894491791725, -0.0206501092761755, -0.030776381492614746, 0.02556123398244381, -0.002499411581084132, 0.02460239641368389, 0.014441045001149178, 0.022088367491960526, -0.056548092514276505, -0.0021910048089921474, -0.041300218552351, -0.02546769008040428, -0.006425388157367706, 0.029747383669018745, 0.006782029289752245, 0.010523838922381401, -0.03285776451230049, 0.004659722093492746, 0.0028253584168851376, 0.024134669452905655, -0.008109202608466148, 0.04270339757204056, 0.003461173502728343, -0.02600557543337345, 0.05851254239678383, -0.0017656662967056036, 0.03112717531621456, -0.039733339101076126, 0.017072005197405815, 0.01393823977559805, 0.04487832635641098, -0.033746443688869476, 0.03051913157105446, -0.014417658559978008, -0.013037866912782192, 0.04550975561141968, 0.016686130315065384, 0.0028925940860062838, -0.0078987255692482, 0.003554718801751733, -0.016791369765996933, -0.04850320145487785, 0.008459997363388538, 0.04836288467049599, 0.04228244349360466, -0.032764218747615814, -0.020451325923204422, 0.0001900137576740235, 0.006834648549556732, -0.012979401275515556, 0.010453679598867893, 0.000632891955319792, 0.03468189388513565, 0.00015950192755553871, 0.0178554467856884, 0.02081381343305111, -0.020521486178040504, -0.01539988350123167, 0.002812203485518694, -0.061085037887096405, 0.003355935215950012, 0.06407848745584488, -0.022345617413520813, -0.04826933890581131, 0.0025417993310838938, 0.010991564951837063, -0.024087896570563316, 0.019480794668197632, -0.02514028176665306, 0.07039278745651245, -0.013552365824580193, -0.023772181943058968, -0.05668840929865837, 0.01205564197152853, -0.006314303260296583, -0.04368562251329422, 0.03702052682638168, -0.008424917235970497, -0.06931702047586441, 0.011108496226370335, -0.027572456747293472, 0.06197371706366539, 0.007138670422136784, -0.0036307242698967457, -0.024555623531341553, 0.0003239368961658329, -0.05888672545552254, 0.00860616099089384, -0.026707163080573082, -0.051216013729572296, -0.006893114186823368, 0.05177728459239006, 0.027057958766818047, -0.0018752895994111896, 0.04920479282736778, -0.0137277627363801, -0.030612677335739136, 0.07871831208467484, 0.015879303216934204, 0.011020797304809093, 0.006238297559320927, 0.04181471839547157, 0.008459997363388538, -0.008366451598703861, -0.05177728459239006, -0.006928193848580122, 0.04999992623925209, -0.00824952032417059, 0.0001617857487872243, -0.0047474205493927, -0.015341417863965034, 0.07132823765277863, -0.007273141760379076, -0.030191723257303238, -0.03582782298326492, 0.0013556750491261482, 0.0014806456165388227, -0.04756775125861168, -0.009085580706596375, -0.054022371768951416, -0.0019366786582395434, -0.061412446200847626, -0.028554681688547134, 0.03360612317919731, -0.006717716809362173, 0.06599616259336472, -0.05463041737675667, -0.010143810883164406, 0.04740404710173607, -0.026683777570724487, 0.012394743040204048, -0.0017744360957294703, -0.025795098394155502, -0.008319678716361523, -0.03393353149294853, 0.026566846296191216, -0.0204396340996027, -0.013271729461848736, 0.007162056863307953, 0.00046407204354181886, 0.014885385520756245, 0.01323665026575327, -0.04410657659173012, 0.019621113315224648, -0.03150135651230812, 0.08016826212406158, 0.0059839715249836445, 0.007758407853543758, -0.06085117533802986, 0.006963273044675589, -0.022298844531178474, 0.00986902229487896, 0.021983129903674126, 0.000223448863835074, 0.042305830866098404, 0.04427028074860573, -0.024228215217590332, -0.009266824461519718, -0.01773851551115513, -0.034003693610429764, 0.035944756120443344, 0.02460239641368389, 0.0029072104953229427, 0.05074828863143921, 0.01507247518748045, 0.023105671629309654, -0.045650072395801544, -0.009225898422300816, -0.029513521119952202, -0.011447598226368427, -0.009120659902691841, -0.04534605145454407, -0.06295593827962875, -0.010120424441993237, 0.008050736971199512, 0.009465607814490795, 0.004379086196422577, -0.01116111595183611, 0.03678666427731514, -0.0236318651586771, -0.040317993611097336, -0.0264265276491642, -0.07123469561338425, 0.028390977531671524, 0.0027318131178617477, -0.019001375883817673, -0.013973318971693516, 0.03030865453183651, 0.026403142139315605, -0.00780518027022481, 0.03047235868871212, 0.01563374698162079, -0.007162056863307953, 0.00012743710249196738, -0.01967957802116871, 0.010833707638084888, 0.0017495881766080856, -0.021106142550706863, 0.025818483904004097, -0.039733339101076126, 0.0652477964758873, -0.01872074045240879, -0.03601491451263428, -0.0363423228263855, 0.045229118317365646, 0.007337454240769148, 0.06342367082834244, 0.014066864736378193, 0.020965825766324997, 0.01800745725631714, -0.04363885149359703, 0.03959301859140396, -0.0005919659161008894, -0.012511675246059895, 0.012277811765670776, 0.0004903816734440625, -0.039242226630449295, -0.0016005004290491343, 0.015084168873727322, 0.02173757366836071, 0.03786243125796318, -0.025374144315719604, -0.06239467114210129, -0.0251870546489954, 0.020463019609451294, -0.0005565210594795644, 0.026707163080573082, -0.0168264489620924, -0.004010751843452454, 0.04127683490514755, 0.009623466059565544, -0.052619192749261856, 0.029630452394485474, -0.011640534736216068, -0.019913440570235252, 0.009880715049803257, -0.01337696798145771, 0.011330666020512581, -0.020591644570231438, 0.026520073413848877, 0.0236318651586771, 0.015622054226696491, -0.022404083982110023, -0.03267067298293114, -0.010319208726286888, 0.0032506969291716814, -0.0073783802799880505, 0.0004370316455606371, 0.01730586774647236, 0.0027464295271784067, 0.018907830119132996, -0.040738947689533234, 0.029162725433707237, -0.011669768020510674, -0.00973455049097538, -0.007056818343698978, 0.025795098394155502, 0.04665568470954895, 0.02314075268805027, 0.026403142139315605, -0.014581362716853619, -0.017411107197403908, -0.015388190746307373, 0.02038116753101349, 0.0021062293089926243, 0.02853129617869854, -0.025420917198061943, 0.030028019100427628, -0.018533648923039436, 0.004870198667049408, 0.01725909486413002, -0.04331144317984581, -0.05659486725926399, -0.004262154456228018, 0.016534119844436646, 0.006559859495609999, -0.014861999079585075, -0.018942909315228462, -0.033419035375118256, -0.01872074045240879, 0.02857806906104088, -0.053320784121751785, 0.03175860643386841, -0.028624841943383217, -0.026332983747124672, 0.04681938886642456, -0.0049462043680250645, -0.018849363550543785, 0.07422814518213272, 0.03917206451296806, 0.023421388119459152, -0.005799804348498583, 0.010722622275352478, 0.019398942589759827, -0.04632827639579773, 0.01242982316762209, 0.023970965296030045, -0.013388661667704582, -0.008284599520266056, 0.07179596275091171, -0.022298844531178474, -0.026286210864782333, -0.0615059919655323, 0.0289054773747921, 0.04817579314112663, 0.0032477735076099634, -0.06445266306400299, 9.646852413425222e-05, 0.009196666069328785, 0.05060797184705734, -0.022345617413520813, -0.00033489923225715756, -0.07956022024154663, -0.006893114186823368, 0.01558697409927845, 0.036926981061697006, -0.0003891627711709589, 0.04569684714078903, 0.08143112808465958, 0.018428411334753036, 0.02469594217836857, -0.010845400393009186, 0.011950403451919556, 0.002164695179089904, -0.001615116954781115, -0.002214391017332673, 0.021480323746800423, -0.026847481727600098, -0.025116894394159317, 0.03975672274827957, 0.0026309597305953503, -0.001965911593288183, -0.01478014700114727, -0.030940085649490356, -0.004481401294469833, 0.018194546923041344, -0.010938945226371288, 0.011073417030274868, 0.0003509773232508451, 0.027525683864951134, -0.0024687170516699553, -0.008021503686904907, -0.015832530334591866, 0.048035476356744766, 0.042913876473903656, -0.002503796713426709, 0.0253975298255682, 0.03786243125796318, 0.020638417452573776, 0.002212929306551814, -0.039125293493270874, 0.013739456422626972, -0.05182405933737755, -0.013037866912782192, -0.008459997363388538, -0.010681696236133575, -0.04153408482670784, 0.039943814277648926, -0.02206498198211193, 0.018697353079915047, 0.01623009704053402, 0.053320784121751785, -0.06543488800525665, -0.002243623835965991, -0.005948892328888178, -0.02659023180603981, 0.008933569304645061, -0.02022915706038475, -0.0046217190101742744, 0.02217021957039833, 0.009652698412537575, -0.0159026887267828, 0.02782970666885376, -0.02055656537413597, -0.011909477412700653, 0.022415775805711746, 0.02351493202149868, -0.027525683864951134, 0.05112246796488762, 0.0004143761470913887, 0.03863418102264404, 0.023491546511650085, 0.032062627375125885, 0.04595409706234932, -0.03369966894388199, 0.03372305631637573, -0.007606396917253733, -0.009676084853708744, -0.012780616991221905, 0.03426093980669975, 0.0019644498825073242, -0.010342595167458057, 0.035196393728256226, 0.025748325511813164, 0.058652859181165695, 0.012839083559811115, 0.002100382698699832, -0.04892415553331375, 0.044246893376111984, -0.004691877868026495, 0.0016984306275844574, -0.037511639297008514, 0.0120790284126997, 0.0026031883899122477, -0.0388212725520134, 0.0027771240565925837, 0.03227310627698898, -0.01221934612840414, 0.05144987627863884, 0.0478951595723629, 0.026520073413848877, 0.0017612812807783484, -0.006074593402445316, -0.0025081816129386425, 0.022263765335083008, 0.04492509737610817, -0.032974693924188614, -0.03636571019887924, 0.011798392049968243, 0.0006935502169653773, -0.012149186804890633, 0.008477536961436272, -0.008407377637922764, -0.006431234534829855, 0.023666944354772568, 0.016043007373809814, 0.022556094452738762, -0.058652859181165695, -0.04897093027830124, 0.008500923402607441, 0.047497592866420746, -0.0311739481985569, -0.011283894069492817, 0.03898497670888901, 0.016323642805218697, -0.009565000422298908, -0.011149422265589237, -0.019773123785853386, -0.01984328217804432, -0.02535075880587101, 0.032974693924188614, 0.016428882256150246, -0.02621605060994625, 0.06389139592647552, -0.0251870546489954, 0.04653875157237053, 0.039452701807022095, 0.015224486589431763, -0.03299808129668236, -0.0020229157526046038, -0.00705097196623683, -0.000446897727670148, -0.05102892592549324, -0.03112717531621456, 0.011997176334261894, -0.07287173718214035, 0.07609904557466507, 0.0251870546489954, 0.030238496139645576, 0.012815697118639946, 0.045112188905477524, -0.011582069098949432, 0.022579479962587357, 0.03741809353232384, 0.02836759202182293, 0.011032490991055965, -0.010482912883162498, -0.017656663432717323, 0.020322700962424278, -0.03096347115933895, -0.027689388021826744, 0.023877421393990517, 0.04237598925828934, -0.032179560512304306, -0.011272200383245945, 0.004536943975836039, -0.01655750535428524, -0.0017466648714616895, -0.0025417993310838938, 0.007354993838816881, -0.0406687892973423, -0.04579039290547371, 0.0315949022769928, 0.050561197102069855, 0.04022445157170296, 0.008179361000657082, 0.006524779833853245, -0.027034571394324303, -0.04925156384706497, -0.00521807000041008, 0.039125293493270874, -0.010517992079257965, -0.013341888785362244, 0.015095861628651619, -0.005057289265096188, -0.010465373285114765, 0.008974495343863964, -0.04080910608172417, 0.019866669550538063, -0.028461137786507607, 0.020416246727108955, -0.02626282349228859, 0.03332548961043358, -0.015926076099276543, 0.004984206985682249, -0.01045952644199133, -0.020778734236955643, -0.013014480471611023, -0.02944336272776127, -0.025046736001968384, 0.02626282349228859, 0.004364469554275274, -0.0284845232963562, 0.01903645507991314, -0.0038850505370646715, 0.019925134256482124, -0.0029671378433704376, 0.015470042824745178, -0.02864822745323181, -0.0017656662967056036, -0.07109437882900238, 0.03921883925795555, -0.023269375786185265, 0.013786228373646736, 0.02766600251197815, 0.004732803907245398, 0.015446656383574009, -0.0031659214291721582, -0.004805886186659336, -0.029583679512143135, -0.03617861866950989, -0.007354993838816881, -0.04352191835641861, -0.015984540805220604, 0.02233392372727394, 0.0009661468793638051, 0.012792310677468777, -0.0005919659161008894, -0.019702965393662453, -0.02179603837430477, 0.03154813125729561, -0.025537848472595215, -0.012266119010746479, 0.028718385845422745, 0.04967251792550087, 0.04062201827764511, 0.0005930621409788728, 0.008085816167294979, -0.012640299275517464, -0.0005258265300653875, 0.007927958853542805, -0.013762841932475567, -0.032343264669179916, 0.01003272645175457, 0.02351493202149868, 0.040317993611097336, 0.02357339859008789, -0.01606639288365841, 0.0033003927674144506, 0.00679372251033783, 0.015528508462011814, 0.02708134427666664, -0.015505122020840645, 0.002214391017332673, -0.0003862394951283932, 0.0005053635104559362, 0.007501158397644758, 0.018755819648504257, -0.020778734236955643, 0.02605234645307064, 0.02173757366836071, -0.035149622708559036, 0.01952756755053997, 0.018299786373972893, 0.004630488809198141, 0.006594938691705465, 0.0032360802870243788, -0.016218405216932297, -0.014405965805053711, 0.025608006864786148, -0.003227310488000512, -0.016031313687562943, -0.00782272033393383, 0.018042536452412605, -0.007442692760378122, -0.03388676047325134, -0.06543488800525665, 0.03814306855201721, 0.026028960943222046, -0.009600079618394375, 0.013072946108877659, -0.01930539682507515, -0.0003053009568247944, 0.0035167161840945482, -0.0013374044792726636, -0.006717716809362173, -0.03479882702231407, 0.004235845059156418, 0.0013600599486380816, 0.008658780716359615, -0.020205769687891006, 0.008068276569247246, -0.017563117668032646, -0.06131890043616295, -0.006875574588775635, -0.001629733364097774, 0.012967707589268684, 0.028624841943383217, 0.038493864238262177, 0.0022640868555754423, -0.03823661431670189, -0.006635864730924368, -0.032390035688877106, -0.022614559158682823, -0.028624841943383217, 0.029911087825894356, -0.003721346380189061, 0.019293705001473427, -0.013599137775599957, -0.012745537795126438, -0.00651308661326766, -0.03241342306137085, 0.009594232775270939, 0.005370080936700106, -0.004849735647439957, -0.04115990176796913, 0.013903160579502583, -0.02874177321791649, -0.027759548276662827, -0.0012292427709326148, -0.012651992961764336, -0.023210911080241203, -0.004285540897399187, -0.017072005197405815, -0.022427469491958618, -0.02055656537413597, 0.013692683540284634, 0.006729410029947758, 0.04253969341516495, -0.021725879982113838, 0.016007928177714348, -0.044363826513290405, 0.04202519729733467, 0.040528472512960434, -0.046842776238918304, -0.026449915021657944, 0.013365275226533413, -0.014137023128569126, 0.01817116141319275, 0.0004633412172552198, -0.02118799462914467, -0.044691234827041626, 0.006150599103420973, -0.017820367589592934, -0.047006480395793915, 0.0008916030055843294, -0.0026791938580572605, 0.07329268753528595, -0.026777323335409164, -0.0017159703420475125, 0.0226028673350811, -0.00782272033393383, 0.02691764011979103, -0.019726350903511047, 0.033465806394815445, 0.002192466286942363, -0.012651992961764336, -0.011120189912617207, -0.021819425746798515, 0.04628150537610054, -0.010927252471446991, 0.009506533853709698, -0.003355935215950012, 0.011932863853871822, -0.06515425443649292, 0.01539988350123167, -0.006729410029947758, 0.015212793834507465, -0.00881663803011179, 0.020042065531015396, -0.003037296701222658, 0.00806242972612381, -0.008921876549720764, -0.034331101924180984, 0.028133729472756386, -0.009670238010585308, -0.00013757726992480457, 0.013996705412864685, -0.018954603001475334, -0.01410194393247366, -0.018685659393668175, 0.0011685845674946904, 0.0027917404659092426, 0.02287180908024311, -0.017761901021003723, 0.0022977048065513372, -0.018101003021001816, 0.015037395991384983, -0.012581833638250828, 0.0190949197858572, -0.034658510237932205, -0.009945027530193329, -0.058559317141771317, -0.013716069981455803, 0.0003122437628917396, 0.0036014914512634277, 0.06328334659337997, -0.02022915706038475, -0.013833001255989075, 0.006934040226042271, -0.03126749396324158, -0.0377688892185688, 0.00811504852026701, 0.024134669452905655, -0.0036278010811656713, 0.0018109772354364395, 0.01490877103060484, -0.012628606520593166, -0.012616912834346294, 0.01806592382490635, -0.0289054773747921, 0.0238423403352499, 0.04427028074860573, -0.027385367080569267, 0.006963273044675589, 0.005592250730842352, -0.012160880491137505, 0.01078693475574255, 0.036155231297016144, -0.0010384982451796532, -0.009588385932147503, -0.0007355724810622633, -0.041066356003284454, 0.0029481365345418453, -0.04394287243485451, 0.005674102809280157, 0.0041013737209141254, -0.03367628529667854, 0.034588348120450974, -0.031407810747623444, -0.026496687904000282, -0.02011222578585148, 0.0061330595053732395, -0.0024701787624508142, 0.014569669961929321, -0.010862939991056919, 0.003113302169367671, 0.01872074045240879, -0.027478912845253944, 0.007162056863307953, -0.011318973265588284, 0.028086956590414047, 0.04083249345421791, -0.0188844446092844, -0.0015537278959527612, 0.01914169266819954, 0.05060797184705734, 0.010512145236134529, -0.04775484278798103, -0.022637946531176567, 0.016195017844438553, 0.016873221844434738, 0.0037768888287246227, 0.027151504531502724, -0.06520102918148041, 0.014651522040367126, -0.005773494951426983, 0.004724034108221531, 0.0050806752406060696, 0.0036336476914584637, 0.006963273044675589, 0.014990623109042645, -0.011874398216605186, -0.012850776314735413, -0.05014024302363396, -0.025818483904004097, 0.0012972092954441905, 0.011278047226369381, 0.033582739531993866, -0.01763327606022358, 0.0016385031631216407, 0.0012102414621040225, -0.016522426158189774, -0.04289048910140991, 0.030215110629796982, 0.01041275355964899, -0.009565000422298908, 0.019246932119131088, -0.022941967472434044, 0.009073887951672077, -0.0035488721914589405, 0.01870904676616192, -0.013201571069657803, 0.05813836306333542, -0.0289054773747921, -0.03447141870856285, 0.00629676366224885, -0.015060782432556152, -0.017130469903349876, -0.01426564808934927, -0.006495547015219927, 0.005805651191622019, 0.0157974511384964, -0.012605220079421997, -0.034985918551683426, -0.0084658432751894, 0.00559517415240407, -0.015306338667869568, 0.015189407393336296, -0.003545949002727866, 0.004823426250368357, 0.0013534825993701816, 0.028063569217920303, -0.014651522040367126, -0.02233392372727394, 0.0068521881476044655, 0.017340946942567825, 0.018030842766165733, 0.0318053774535656, 0.014756760559976101, 0.02507012151181698, 0.021047677844762802, 0.02654345892369747, 0.01490877103060484, -0.03582782298326492, -0.006782029289752245, -0.009348676539957523, -0.0016618894878774881, 0.02378387562930584, -0.014897078275680542, -0.024017738178372383, 0.02308228611946106, 0.003557642223313451, 0.03704391047358513, -0.03143119812011719, -0.02794663794338703, 0.007132824044674635, 0.003654110711067915, 0.02708134427666664, -0.0503741092979908, 0.00677033606916666, -0.010564764961600304, 0.0021062293089926243, 0.01591438241302967, -0.006402001716196537, 0.004159839358180761, -0.00992164108902216, 0.01607808656990528, -0.05378850921988487, -0.023444773629307747, 0.012090721167623997, -0.00010606056457618251, 0.005481165833771229, -0.02637975476682186, -0.014791839756071568, -0.015774065628647804, 0.019667884334921837, -0.061739854514598846, 0.005621484015136957, 0.014335806481540203, -0.01135405246168375, 0.03145458549261093, 0.0073783802799880505, -0.01542326994240284, -0.0035839516203850508, 0.02379556931555271, -0.03645925596356392, -0.0019162156386300921, 0.05458364263176918, 0.006706024054437876, 0.018299786373972893, -0.031150562688708305, -0.010670003481209278, -0.00782272033393383, -0.03220294788479805, -0.006168138701468706, -0.002307936316356063, 0.03096347115933895, 0.019726350903511047, 0.020357782021164894, 0.0289054773747921, -0.005130371544510126, -0.016966765746474266, -0.043989647179841995, -0.0063026100397109985, 0.05495782569050789, 0.022941967472434044, 0.00844245683401823, 0.035243164747953415, 0.03669311851263046, -0.026449915021657944, 0.02097751758992672, 0.007887032814323902, 0.006717716809362173, -0.02556123398244381, -0.005223916377872229, -0.005279459059238434, -0.024415304884314537, -0.0017817443003877997, 0.003963979426771402, -0.02546769008040428, 0.00413937633857131, -0.00881663803011179, 0.05701581761240959, -0.031571514904499054, 0.00035024649696424603, -0.006986659485846758, 0.012827389873564243, 0.06478007137775421, -0.00895695574581623, 0.01725909486413002, -0.015820836648344994, 0.022263765335083008, 0.01132482010871172, -0.0034670201130211353, 0.0028107420075684786, 0.03253035619854927, -0.013061253353953362, 0.009565000422298908, 0.0017963608261197805, 0.01655750535428524, -0.013365275226533413, -0.01154114305973053, -0.01688491366803646, 0.011687307618558407, 0.02287180908024311, -0.01048875879496336, -0.01556358765810728, 0.0236318651586771, 0.014207182452082634, 0.002813665196299553, 0.021959742531180382, 0.021176302805542946, 0.006483853794634342, -0.0008419071091338992, 0.03992042690515518, 0.02318752370774746, -0.0036745737306773663, 0.0028560529462993145, 0.04534605145454407, -0.022181913256645203, -0.008109202608466148, -0.039125293493270874, -0.0022333923261612654, -0.005589327774941921, 0.040902651846408844, 0.007150363642722368, -0.012897549197077751, 0.05813836306333542, -0.02621605060994625, 0.016428882256150246, 0.03383998945355415, 0.003174691228196025, -0.002654345938935876, 0.03290453553199768, -0.020533178001642227, -0.012850776314735413, 0.009945027530193329, 0.020194077864289284, -0.002024377230554819, 0.02162064239382744, -0.012558447197079659, 0.042142126709222794, -0.01920015923678875, 0.023269375786185265, -0.018299786373972893, 0.007278988603502512, 0.006934040226042271, -0.0042475382797420025, 0.017890525981783867, 0.03884465619921684, -0.006893114186823368, -0.06632357090711594, 0.005820267368108034, -0.006799568887799978, -0.017399413511157036, 0.01146513782441616, -0.045112188905477524, -0.015984540805220604, 0.019445715472102165, 0.00984563585370779, 0.013306809589266777, 0.004680185113102198, -0.0026514227502048016, 0.0215738695114851, -0.007150363642722368, -0.0216791070997715, 0.03426093980669975, -0.02572493813931942, 0.04728711396455765, -0.020357782021164894, -0.01996021345257759, 0.026870867237448692, 0.042796943336725235, 0.030986858531832695, 0.04244614765048027, 0.012464902363717556, -0.040855880826711655, 0.02977077104151249, -0.032974693924188614, 0.02049809880554676, -0.004156916402280331, 0.010342595167458057, 0.0159026887267828, 0.027432139962911606, -0.012874162755906582, -0.011126035824418068, 0.02464916929602623, 0.017621582373976707, -0.03624877706170082, -0.02006545290350914, -0.018673967570066452, -0.00575887830927968, -0.0012423975858837366, 0.015189407393336296, -0.029115954414010048, 0.004183225799351931, -0.011582069098949432, -0.04017767682671547, 0.013072946108877659, -0.014686601236462593, 0.03248358145356178, 0.001001957105472684, 0.026028960943222046, 0.0644058957695961, 0.018101003021001816, 0.0404583141207695, 0.015551894903182983, 0.011763312853872776, -0.03079976700246334, 0.0018548265798017383, 0.029209498316049576, 0.02659023180603981, 0.03601491451263428, 0.0036307242698967457, -0.03622538968920708, 0.008553542196750641, 0.005750108510255814, 0.002324014436453581, -0.029794156551361084, -0.02336292155086994, -0.03047235868871212, 0.025163667276501656, -0.03638909384608269, 0.0035488721914589405, -0.008916029706597328, -0.03311501070857048, 0.0018723662942647934, -0.025046736001968384, 0.027572456747293472, -0.010389367118477821, 0.00747192557901144, 0.02820388786494732, -0.0004048754635732621, -1.3782848327537067e-05, 0.01496723759919405, -0.010173044167459011, -0.021994823589920998, 0.020030373707413673, -0.03683343529701233, 0.01054722536355257, 0.0047737299464643, -0.003604414639994502, 0.0077291750349104404, -0.006355229299515486, -0.01969127170741558, 0.03765195608139038, -0.05313369259238243, -0.0029685995541512966, 0.011266353540122509, -0.002313782926648855, 0.03926561027765274, 0.025865256786346436, 0.015926076099276543, 0.002277241786941886, 0.00044507067650556564, 0.023503240197896957, -0.005931352265179157, -0.022427469491958618, -0.0007322837482206523, -0.003697959939017892, -0.002275780076161027, -0.007600550074130297, -0.014651522040367126, -0.025491075590252876, -0.02523382566869259, -0.003031450090929866, 0.01958603225648403, 0.012804003432393074, 0.03865756839513779, -0.009565000422298908, 0.01612485945224762, -0.006618325132876635, -0.0038645875174552202, 0.020696882158517838, -0.02021746337413788, 0.027268435806035995, -0.001677967607975006, -0.006910654250532389, -0.011938710696995258, 0.0063026100397109985, -0.038751114159822464, 0.008571081794798374, 0.00194544845726341, -0.007390073500573635, 0.043358214199543, -0.0016399648739024997, -0.0005404429393820465, 0.015481735579669476, 0.02988770231604576, 0.012020562775433064, -0.0007388611556962132, 0.039288997650146484, 0.012745537795126438, -0.004805886186659336, 0.014335806481540203, -0.02011222578585148, -0.01558697409927845, 0.0010026879608631134, -0.0008039043168537319, -0.05893349647521973, 0.006489700637757778, -0.015247873030602932, -0.009611772373318672, 0.0027405829168856144, 0.024391919374465942, 0.01203225553035736, -0.01881428435444832, -0.012301198206841946, -0.01914169266819954, -0.006279223598539829, -0.028507908806204796, -0.004332313779741526, -0.012850776314735413, 0.004645105451345444, -0.03398030623793602, -0.01742279902100563, -0.015844224020838737, 0.007068511564284563, 0.007670708931982517, 0.0022567787673324347, -0.03711407259106636, -0.034331101924180984, -0.010845400393009186, 0.005630253814160824, 0.06300271302461624, -0.006524779833853245, -0.0039288997650146484, -0.0029159802943468094, 0.021117836236953735, 0.00890433695167303, 0.018369944766163826, 0.02379556931555271, 0.009108967147767544, 0.019165080040693283, -0.017025232315063477, 0.015622054226696491, 0.04939188435673714, 0.005802727770060301, -0.025584621354937553, 0.0021588485687971115, 0.025912029668688774, -0.0010794242843985558, 0.030940085649490356, -0.008079969324171543, -0.015247873030602932, -0.06225435063242912, 0.00521807000041008, -0.02372540906071663, -0.0365527980029583, -0.010026879608631134, 0.00566241005435586, -0.0015464195748791099, 0.00817351508885622, 0.005402237176895142, 0.006963273044675589, 0.010898019187152386, -0.005332078319042921, 0.02906918153166771, 0.022462548688054085, -0.03461173549294472, -0.031688448041677475, 0.002503796713426709, 0.02820388786494732, 0.012114107608795166, 0.0015946539351716638, 4.700099816545844e-05, 0.0241580568253994, 0.027361979708075523, 0.017972378060221672, 0.02427498809993267, 0.037839047610759735, -0.014183796010911465, 0.028788546100258827, -0.02616927959024906, -0.019773123785853386, -0.009196666069328785, 0.00714451726526022, -0.006062900181859732, 0.024836258962750435, 0.03398030623793602, 0.0010750393848866224, -0.016522426158189774, -0.03673988953232765, -0.01221934612840414, 0.027432139962911606, -0.0031571516301482916, -0.038493864238262177, 0.004712340887635946, -0.0247661005705595, -0.010909712873399258, -0.019340476021170616, 0.007331607397645712, 0.006939887069165707, -0.017025232315063477, 0.02309397980570793, -0.03388676047325134, 0.01834655925631523, 0.02427498809993267, 0.017785286530852318, 0.024391919374465942, -0.018673967570066452, 0.013154798187315464, -0.03879788517951965, -0.042142126709222794, -0.04216551408171654, -0.03650602698326111, 0.009933334775269032, 0.05631422996520996, 0.019866669550538063, 0.014756760559976101, -0.013365275226533413, 0.01273384504020214, 0.004007828421890736, 0.014604749158024788, -0.0011437366483733058, -0.013341888785362244, 0.01731756143271923, -0.014043478295207024, -0.004744497127830982, 0.02902240864932537, -0.005276535637676716, -0.057904500514268875, -0.015154327265918255, 0.024134669452905655, -0.004931587725877762, 0.037137456238269806, -0.01969127170741558, -0.008319678716361523, 0.03138442710042, 0.007863646373152733, -0.028390977531671524, 0.02221699245274067, 0.01812438853085041, 0.004408319015055895, -0.020579950883984566, 0.016569199040532112, 0.022825036197900772, -0.01393823977559805, -0.014920464716851711, -0.004007828421890736, 0.042633239179849625, -0.009079733863472939, 0.002421944634988904, -0.0075245448388159275, 0.03456496447324753, -0.006746950093656778, -0.0014689525123685598, 0.02750229835510254, -0.024953190237283707, 0.028624841943383217, -0.03068283572793007, 0.007746714632958174, 0.008407377637922764, -0.03596814349293709, 0.02778293378651142, 0.04169778898358345, -0.005270689260214567, -0.0005839268560521305, 0.01773851551115513, -0.008430764079093933, -0.006589092314243317, -0.015505122020840645, 0.02481287345290184, 0.03580443933606148, 0.022252071648836136, 0.02060333825647831, -0.012231038883328438, -0.004718187730759382, -0.018592115491628647, 0.027057958766818047, -0.013985012657940388, -0.03129088133573532, 0.015002316795289516, 0.005545478314161301, 0.017457878217101097, 0.02254440076649189, 0.021994823589920998, 0.011207887902855873, -0.012932628393173218, -0.039125293493270874, -0.013844694010913372, -0.0033296255860477686, 0.0027639693580567837, -0.020615030080080032, 0.006290916819125414, 0.013797922059893608, -0.018849363550543785, 0.008962802588939667, 0.044363826513290405, -0.0008726016385480762, -0.01628856360912323, 0.017387719824910164, -0.00408675754442811, -0.024204829707741737, -0.007542084436863661, -0.0179606843739748, 0.014897078275680542, -0.005247302819043398, -0.04480816796422005, 3.338943497510627e-05, 0.006583245936781168, 0.03545364364981651, 0.0057793413288891315, 0.021398471668362617, 0.03526655212044716, -0.0008645625784993172, -0.019270317628979683, -0.014370886608958244, 0.0023327842354774475, 0.000838983803987503, 0.01704861782491207, -0.03456496447324753, 0.0034290174953639507, -0.0052853054367005825, 0.01731756143271923, -0.0016984306275844574, 0.021492017433047295, -0.06501393765211105, -0.0018884444143623114, -0.03975672274827957, -0.0024687170516699553, 0.017352640628814697, 0.016919994726777077, 0.004519403912127018, 0.011546989902853966, 0.011120189912617207, -0.009465607814490795, -0.05355464667081833, 0.024368533864617348, -0.030495746061205864, 0.0034407104831188917, 0.0016019621398299932, 0.0194106362760067, -0.011722386814653873, 0.035243164747953415, -0.0157974511384964, -0.004344006534665823, 0.03512623533606529, -0.011435904540121555, -0.016159938648343086, 0.007635629735887051, -0.00895110983401537, -0.0008872180478647351, -0.06122535467147827, -0.011482677422463894, 0.0018270553555339575, 0.035243164747953415, -0.021456938236951828, 0.02502335049211979, 0.014873691834509373, 0.0095474598929286, 0.02934981696307659, 0.0425163097679615, -0.011359899304807186, 0.02399435266852379, 0.010471219196915627, 0.018592115491628647, -0.005536708515137434, -0.04586055129766464, -0.009436375461518764, -0.05378850921988487, 0.03952286019921303, -0.003244850318878889, -0.04200180992484093, -0.041884876787662506, 0.0018899060087278485, -0.048830609768629074, -0.02469594217836857, 0.00568871945142746, -0.03795597702264786, -0.01428903453052044, -0.03351258113980293, -0.026356369256973267, -0.003779812017455697, -0.011289739981293678, 0.005416853819042444, 0.00660663191229105, -0.035243164747953415, 0.0042329216375947, 0.008126742206513882, -0.033138398081064224, 0.0014185257023200393, 0.002164695179089904, -0.022637946531176567, -0.04174456000328064, -0.012640299275517464, 0.02577171102166176, 0.012710458599030972, 0.03042558766901493, 0.02960706688463688, -0.019550953060388565, -0.014359192922711372, -0.013985012657940388, 0.001320595620200038, -0.016463961452245712, 0.0013337504351511598, -0.006384462118148804, -0.0016648127930238843, -0.012090721167623997, 0.009717010892927647, 0.02038116753101349, 0.012090721167623997, -0.008296293206512928, 0.021655721589922905, 0.012815697118639946, 0.005899196024984121, 0.003145458409562707, -0.02584187127649784, -0.01288585551083088, 0.020755348727107048, 0.028461137786507607, -0.01048875879496336, -0.01010873168706894, -0.013353581540286541, 0.008202747441828251, -0.01893121562898159, 0.01839333213865757, -0.006279223598539829, 0.009260977618396282, 0.02572493813931942, -0.001834363560192287, 0.013318502344191074, 0.009699471294879913, -0.02038116753101349, 0.00989825464785099, 0.028788546100258827, 0.016697824001312256, -0.012207652442157269, 0.004706494510173798, -0.00838983803987503, 0.02853129617869854, 0.0034845599438995123, 0.019398942589759827, 0.0017320484621450305, -0.04125344753265381, 0.024789486080408096, -0.03355935215950012, -0.0706266537308693, 0.0005561556317843497, 0.031852152198553085, -0.004861428868025541, -0.012394743040204048, -0.0043907794170081615, 0.034331101924180984, -0.008670473471283913, -0.027198275551199913, 0.005238533020019531, -0.03369966894388199, 0.038493864238262177, 0.011927017010748386, -0.017715128138661385, 0.01170484721660614, -0.03316178545355797, -0.0032156172674149275, 0.011628841981291771, -0.02135169878602028, 0.03996720165014267, -0.03199246898293495, -0.022135140374302864, 0.02021746337413788, -0.03175860643386841, -0.02724504843354225, 0.010015186853706837, -0.029466748237609863, -0.006115519441664219, -0.008424917235970497, 0.002343015745282173, 0.00811504852026701, -0.02600557543337345, -0.009424681775271893, 0.042960647493600845, 0.004083834122866392, -0.0075537776574492455, -0.009237592108547688, 0.00935452338308096, 0.027011185884475708, -0.034120623022317886, -0.01963280513882637, 0.00914404634386301, 0.011424211785197258, 0.03391014784574509, -0.018802592530846596, 0.03484559804201126, -0.03253035619854927, -0.02680070884525776, 0.0020141457207500935, 0.029256271198391914, 0.005057289265096188, 0.061786625534296036, -0.05411591753363609, 0.007793487049639225, -0.007284834980964661, 0.018744125962257385, -0.010330901481211185, -0.013108025304973125, 0.017107084393501282, 0.014709987677633762, -0.012663685716688633, 0.035944756120443344, 0.0002051783085335046, -0.009372062981128693, -0.056173913180828094, -0.03795597702264786, 0.031571514904499054, -0.01067584939301014, -0.01811269484460354, -0.01709539070725441, -0.02497657760977745, 0.0023196295369416475, 0.005206376779824495, -0.005791034549474716, 0.04207196831703186, 0.025491075590252876], [-0.008084232918918133, 0.013345399871468544, 0.014173654839396477, 0.04848206415772438, -0.03756310045719147, -0.01131559256464243, -0.021114662289619446, 0.024451011791825294, 0.017673322930932045, 0.032546911388635635, -0.02610752172768116, 0.008241717703640461, 0.016623422503471375, 0.002984924940392375, -0.0017512921476736665, 0.006585208233445883, 0.02086968533694744, -0.02489430457353592, 0.006841850467026234, 0.03511333465576172, 0.02804400399327278, 0.04829541593790054, -0.01443029660731554, -0.01203885767608881, -0.051515109837055206, -0.010341518558561802, -0.0022864495404064655, -0.004870370961725712, 0.00943160429596901, -0.05692793056368828, 0.0889848843216896, -0.016880065202713013, 0.007302640005946159, 0.01748667284846306, 0.020228080451488495, 0.007063496392220259, -0.021604616194963455, -0.03460004925727844, 0.018466580659151077, -0.05240169167518616, -0.06257405877113342, -0.00424918020144105, 0.007705101743340492, -0.015141895972192287, -0.05179508402943611, 0.0006565522635355592, 0.023167800158262253, -0.03669985011219978, 0.0066610341891646385, 0.03315351903438568, -0.021207986399531364, 0.016588425263762474, -0.03511333465576172, 0.04313923791050911, 0.023086141794919968, 0.00946660153567791, -0.029327215626835823, 0.02561756782233715, -0.004211266990751028, -0.021114662289619446, 0.014045333489775658, -0.02417103946208954, -0.0064452216029167175, 0.03196363151073456, -0.012400489300489426, -0.006795188412070274, 0.017510004341602325, 0.008020072244107723, -0.019411491230130196, -0.007506787311285734, 0.02103300392627716, 0.0037679756060242653, 0.008504192344844341, -0.009705745615065098, -0.03226693719625473, 0.02181459590792656, -0.016845067963004112, -0.01581849902868271, 0.003566744737327099, -0.0060077630914747715, -0.01625012420117855, -0.01706671342253685, 0.0391729474067688, -0.022514529526233673, -0.015421869233250618, 0.03224360570311546, -0.05725456401705742, -0.04337254911661148, -0.006561877205967903, -0.024264363572001457, -0.019481483846902847, -0.0032342763151973486, -0.018793215975165367, 0.049741946160793304, -0.025104284286499023, 0.00688851298764348, 0.051515109837055206, -0.02568756230175495, -0.05202839523553848, 0.04913533478975296, 0.055341415107250214, -0.024381019175052643, -0.05991431325674057, -0.00615941546857357, 0.034996677190065384, -0.05730122700333595, -0.009635752066969872, 0.04038616642355919, -0.0024730986915528774, 0.027624044567346573, -0.008136727847158909, -0.019609805196523666, 0.0188398789614439, 0.06607373058795929, -0.007413462735712528, -0.017253361642360687, -0.02538425661623478, 0.007518453057855368, -0.023762743920087814, 0.017533335834741592, -0.013263740576803684, 0.002913473406806588, 0.008959149941802025, -0.02617751434445381, -0.006614372134208679, -0.034506723284721375, -0.026644136756658554, -0.007057663518935442, -0.03210362046957016, -0.011694722808897495, 0.03446006402373314, -0.03994287550449371, 0.07624609768390656, -0.06318067014217377, -0.01161306444555521, 0.013928677886724472, 0.028347309678792953, -0.02944387122988701, -0.019633136689662933, 0.019213175401091576, -0.002926597138866782, -0.014441962353885174, 0.018618233501911163, 0.02221122570335865, -0.05977432429790497, -0.0065152146853506565, 0.01710171066224575, 0.03390011563897133, -0.04150605946779251, 0.007442626636475325, -0.011583900079131126, 0.0025255936197936535, 0.020846353843808174, -0.02594420313835144, 0.0020152253564447165, 0.016623422503471375, 0.01867656037211418, 0.015048571862280369, 0.012855445966124535, 0.030307123437523842, -0.039919544011354446, -0.026784123852849007, -0.0376797579228878, -0.04491240531206131, 0.0373997837305069, -0.020484721288084984, -0.024940965697169304, -0.01043484266847372, -0.025174276903271675, -0.06728694587945938, -0.03515999764204025, -0.06626037508249283, -0.03926627337932587, -0.011210602708160877, -0.00721514830365777, -0.03338683024048805, 0.03786640614271164, -0.005514893215149641, -0.036116570234298706, 0.02496429719030857, 0.04439911991357803, -0.0077925934456288815, -0.03056376613676548, -0.005468231160193682, -0.014756932854652405, 0.03784307464957237, -0.09015144407749176, 0.008527523837983608, -0.04199601337313652, -0.018828213214874268, 0.012983767315745354, 0.011146442033350468, -0.03495001420378685, 0.025150945410132408, -0.041879359632730484, -0.007156820502132177, -0.038892973214387894, -0.019633136689662933, 0.05090850219130516, -0.011035619303584099, -0.05053520202636719, -0.036769844591617584, 0.011863874271512032, -0.03704981505870819, -0.061174191534519196, -0.019551478326320648, -0.024287695065140724, 0.03308352455496788, 0.082032211124897, 0.02132464200258255, 0.03504334017634392, 0.004497073125094175, -0.031823646277189255, 0.015468531288206577, 0.0016302618896588683, 0.04372251778841019, 0.03557995706796646, 0.03072708286345005, 0.013427059166133404, -0.010942294262349606, -0.03630322217941284, -0.046825554221868515, 0.0701800063252449, -0.01041734404861927, 0.016681749373674393, -0.012435486540198326, 0.00305929291062057, -0.027530720457434654, -0.014546952210366726, -0.04290592670440674, -0.010394013486802578, 0.0059552681632339954, -0.009939056821167469, -0.01716003753244877, 0.03373679891228676, -0.023669419810175896, 0.02240953966975212, -0.009367444552481174, -0.004622478038072586, -0.007460125256329775, 0.044795747846364975, -0.017008384689688683, -0.06612039357423782, 0.00802590511739254, 0.018093282356858253, -0.0247309859842062, -0.023342784494161606, -0.03835636004805565, -0.0077750952914357185, 0.009379109367728233, 0.016331782564520836, -0.025267601013183594, 0.03994287550449371, -0.03278022259473801, 0.006066090893000364, 0.010551498271524906, 0.048762038350105286, -0.022817833349108696, 0.053148288279771805, 0.06364729255437851, -0.00614191684871912, 0.03135702386498451, -0.008988313376903534, -0.03648987039923668, -0.058981068432331085, 0.0034646710846573114, -0.03196363151073456, 0.006509382277727127, 0.010119873099029064, 0.023016149178147316, -0.00693517504259944, -0.0028551456052809954, 0.020088093355298042, -0.027344070374965668, -0.04318590089678764, 0.005532391369342804, 0.004342504311352968, -0.024754317477345467, -0.021464629098773003, 0.04631226882338524, 0.0004699033161159605, -0.03317685052752495, 0.037819743156433105, -0.057441215962171555, 0.011933866888284683, -0.0003805888700298965, 0.06420724093914032, -0.006241074297577143, -0.024777648970484734, 0.023774409666657448, 0.04190268740057945, -0.015375207178294659, 0.02634083293378353, -0.03196363151073456, 0.007395964581519365, -0.00721514830365777, -0.05305496230721474, 0.0015661013312637806, -0.029560526832938194, 0.0022820751182734966, -0.005850277841091156, 0.0580478236079216, 0.014243648387491703, 0.024847641587257385, -0.006031094118952751, 0.022654516622424126, 0.01459361519664526, -0.014733601361513138, -0.0025387173518538475, 0.007547616958618164, 0.02116132527589798, -0.009991551749408245, 0.014698605053126812, -0.02417103946208954, -0.009454935789108276, -0.024870973080396652, -0.05454815551638603, 0.0007823215564712882, 0.03016713634133339, -0.006649368908256292, 0.015083568170666695, -0.001310917199589312, 0.042929258197546005, -0.0392429418861866, 0.0306570902466774, -0.03331683576107025, 0.013310403563082218, 0.029630521312355995, -0.08002573996782303, -0.03914961591362953, -0.035883259028196335, -0.0009507430950179696, 0.037096478044986725, 0.007582613732665777, -0.00016158622747752815, -0.007524285931140184, 0.017743315547704697, -0.026644136756658554, -0.006906011141836643, -0.0282073225826025, 0.0478287935256958, -0.014115327037870884, -0.05174842104315758, 0.014756932854652405, -0.01443029660731554, -0.03921961039304733, -0.04297592118382454, 0.01664675399661064, 0.0047303843311965466, 0.051701758056879044, -0.009029142558574677, 0.014476959593594074, -0.052495017647743225, 0.01998310349881649, -0.08646512776613235, -0.055574726313352585, 0.03446006402373314, -0.03828636556863785, -0.009414106607437134, 0.006089421920478344, -0.010831471532583237, -0.04297592118382454, -0.008183389902114868, 0.03756310045719147, 0.05510810390114784, 0.03681650385260582, 0.0025183025281876326, -0.030587095767259598, -0.01723003201186657, -0.018104948103427887, 0.06756691634654999, -0.01844324916601181, 0.002057512989267707, -0.006136084441095591, -0.026970773935317993, 0.0306570902466774, -0.027180753648281097, -0.020531384274363518, 0.017533335834741592, 0.04453910514712334, -0.00560238491743803, -0.008463363163173199, 0.006958506070077419, 0.010359016247093678, 0.006561877205967903, 0.058327797800302505, -0.0408061258494854, -0.037819743156433105, 0.009554092772305012, -0.012307165190577507, -0.014418631792068481, 0.014476959593594074, 0.008918319828808308, 0.020893016830086708, -0.023086141794919968, 0.049835268408060074, 0.012482148595154285, 0.0816122516989708, -0.004342504311352968, -0.068406842648983, -0.020088093355298042, -0.032476916909217834, -0.017451677471399307, 0.07927913963794708, -0.006124418694525957, -0.033433493226766586, -0.011426415294408798, -0.03359680995345116, 0.024287695065140724, -0.008440032601356506, 0.015795167535543442, 0.01195719838142395, 0.0290239118039608, 0.019014861434698105, -0.010189865715801716, 0.018758218735456467, 0.03658319264650345, -0.00459331413730979, -0.026387495920062065, -0.03131036087870598, 0.016110137104988098, 0.005587802734225988, -0.0015529775992035866, 0.0427192784845829, -0.03560328856110573, 0.021511292085051537, 0.004963695537298918, -0.0666336715221405, -0.01952814683318138, -0.016273455694317818, -0.01994810625910759, 0.023821072652935982, 0.05328827351331711, 0.01090729795396328, -0.003540497273206711, -0.03023712895810604, -0.018023289740085602, -0.042345982044935226, -0.03023712895810604, -0.018723223358392715, -0.0009901144076138735, -0.048528727144002914, -0.006725194863975048, -0.0035055004991590977, 0.006561877205967903, -0.0153285451233387, 0.01423198264092207, 0.06392726302146912, 0.015270217321813107, 0.011572235263884068, -0.010965625755488873, -0.029327215626835823, 0.001529646455310285, -0.012785453349351883, -0.03338683024048805, -0.0004097527707926929, 0.013672035187482834, -0.07792593538761139, 0.028650613501667976, 0.028230654075741768, -0.025337595492601395, 0.041879359632730484, 0.010708983056247234, -0.02282949909567833, -9.833701915340498e-05, -0.0039021295960992575, 0.0030826241709291935, -0.012937105260789394, -0.026294169947504997, -0.03156700357794762, 0.025804217904806137, -0.018524907529354095, 0.0011993653606623411, -0.015748504549264908, 0.03707314655184746, -0.009775739163160324, -0.0008771042339503765, 0.003919627983123064, -0.029560526832938194, 0.029210560023784637, -0.00047172605991363525, 0.06705363839864731, -0.06402058899402618, -0.014826925471425056, 0.06859348714351654, -0.03261690214276314, 0.06836017966270447, 0.03105371817946434, -0.007413462735712528, 0.021907920017838478, -0.054361507296562195, -0.0020035598427057266, -0.01082563865929842, -0.010312354192137718, 0.0019116934854537249, -0.0015194391598924994, 0.005398237612098455, -0.0009536594734527171, 0.022129565477371216, 0.01088979933410883, 0.05132846161723137, 0.0012824824079871178, -0.04036283493041992, 0.03033045493066311, 0.06047425791621208, 0.0050395214930176735, 0.012050522491335869, 0.03422675281763077, -0.009309116750955582, -0.009169129654765129, -0.04843540117144585, -0.029047243297100067, 0.002528510056436062, -0.02893058769404888, -0.04185602813959122, -0.014336972497403622, 0.05823447182774544, 0.016331782564520836, -0.016296787187457085, 0.007471790537238121, 0.01900319568812847, 0.04904201254248619, 0.03364347293972969, 0.028160659596323967, -0.005328244064003229, -0.011554736644029617, -0.012062188237905502, -0.023599427193403244, -0.000721441931091249, -0.012913773767650127, -0.03630322217941284, -0.021791264414787292, -0.03455338627099991, 0.043162569403648376, 0.022456202656030655, -0.011321425437927246, 0.0018344091949984431, 0.0005336993490345776, -0.02319113165140152, -0.00038642165600322187, 0.017708318307995796, 0.029490534216165543, -0.01605181023478508, -0.019073190167546272, 0.00866751093417406, -0.005996097344905138, 0.019808119162917137, 0.0035609120968729258, -0.006357729900628328, -0.016331782564520836, -0.005170759279280901, -0.0075009544380009174, -0.03016713634133339, 0.02447434328496456, 0.023121139034628868, 0.009501597844064236, -0.013193747960031033, -0.035953253507614136, 0.027834024280309677, 0.0325002484023571, 0.015421869233250618, 0.008830828592181206, 0.020484721288084984, 0.005441983230412006, -0.0033421828411519527, 0.02652748115360737, 0.0006846225005574524, -0.005482812877744436, -0.027204085141420364, -0.027134090662002563, -0.0145119559019804, -0.0007403984782285988, 0.015806833282113075, -0.024217700585722923, 0.025757554918527603, 0.020484721288084984, -2.7067742848885246e-05, -0.0408061258494854, -0.026574144139885902, 0.03784307464957237, 0.02788068726658821, 0.050628527998924255, 0.012027191929519176, -0.0007743015303276479, -0.01985478214919567, 0.029467202723026276, -0.022257886826992035, -0.02368108555674553, -0.02505762130022049, -0.008480861783027649, 0.0063169002532958984, -0.0062469071708619595, 0.01784830540418625, 0.022071238607168198, 0.018221603706479073, 0.045029059052467346, -0.008550855331122875, 0.007238479796797037, -0.03152034059166908, 0.02944387122988701, 0.018909871578216553, -0.015865160152316093, -0.009151631034910679, -0.0033305170945823193, -0.023692751303315163, 0.01869989186525345, 0.009723243303596973, 0.001138850231654942, -0.0375397689640522, 0.029093904420733452, -0.015946820378303528, -0.024357687681913376, -0.008457530289888382, -0.01889820583164692, -0.04866871237754822, -0.017813310027122498, -0.02708742953836918, -0.007565115112811327, -0.010376514866948128, 0.000251356337685138, -0.021149659529328346, 0.0009842815343290567, -0.004957862664014101, -0.009571591392159462, -0.035229988396167755, 0.030377116054296494, 0.005587802734225988, -0.03502000868320465, 0.005269916262477636, -0.05506144091486931, 3.83231854357291e-05, -0.017673322930932045, -0.020029764622449875, -0.00951326359063387, -0.039359595626592636, 0.05786117538809776, -0.002231038175523281, -0.017941629514098167, -0.01612180285155773, -0.011671392247080803, 0.03812304884195328, 0.021639613434672356, -0.022514529526233673, -0.034016769379377365, 0.010394013486802578, -0.0071218241937458515, -0.009694079868495464, 0.03380678966641426, 0.03690982982516289, 0.0028872259426862, -0.013975339941680431, -0.0066085392609238625, -0.003674651263281703, 0.009145798161625862, 0.010446508415043354, 0.004925782326608896, -0.01010820735245943, 0.014710270799696445, 0.0513751246035099, -0.0036454873625189066, -0.019189845770597458, 0.013368731364607811, -0.02191958576440811, 0.0011796796461567283, 0.004785795696079731, -0.006095254793763161, 0.059307701885700226, 0.008690841495990753, 0.02004143036901951, -0.003773808479309082, 0.007366800680756569, -0.04607895761728287, 0.011968864127993584, -0.0017162953736260533, 0.017078379169106483, 0.0017017134232446551, 0.016588425263762474, 0.025360925123095512, -0.01817494072020054, 0.014056999236345291, 0.010009050369262695, 0.009478267282247543, -0.045285701751708984, 0.026644136756658554, 0.026084190234541893, -0.021534621715545654, 0.008894989266991615, -0.024101044982671738, -0.008848327212035656, 0.04313923791050911, 0.01123393326997757, 0.008183389902114868, 0.029700513929128647, 0.001231445581652224, -0.022876162081956863, 0.01667008362710476, 0.02860395237803459, 0.00905830692499876, 0.012073853984475136, -0.018431583419442177, 0.01592348888516426, 0.014768598601222038, -0.01748667284846306, -0.02813732996582985, -0.021336307749152184, -0.010703151114284992, 0.020123090595006943, 0.0037825575564056635, 0.0061010876670479774, -0.009163296781480312, 0.015036906115710735, 0.017801644280552864, -0.007226814050227404, 0.00620607752352953, -0.0282073225826025, -0.03096039406955242, -0.013042095117270947, 0.028720607981085777, 0.0010447966633364558, 0.008154225535690784, -0.012902108952403069, 0.023832738399505615, -0.038239702582359314, 0.03203362599015236, -0.0063927266746759415, 0.0005730706034228206, 0.004470825660973787, 0.047385502606630325, 0.01017236802726984, 0.011852208524942398, 0.01377702597528696, -0.022852830588817596, -0.007075161673128605, -0.02610752172768116, 0.007611777633428574, 0.025920873507857323, -0.027460725978016853, 0.004325006157159805, 0.01244715228676796, -0.007156820502132177, 0.01857157051563263, -0.03397011011838913, 0.00650354940444231, -0.040946114808321, 0.02054305002093315, 0.012855445966124535, -0.01041734404861927, 0.013485386967658997, -0.019843116402626038, -0.008504192344844341, -0.020484721288084984, 0.00727930897846818, 0.0036250725388526917, -0.007150988094508648, 0.03446006402373314, -0.03163699805736542, 0.011321425437927246, 0.012925439514219761, -0.00472455145791173, -0.012785453349351883, -0.0029951324686408043, 0.018338259309530258, 0.00026229280047118664, -0.0038554673083126545, -0.01443029660731554, -0.002455600304529071, -0.044072482734918594, 0.02918723039329052, -0.030190467834472656, 0.020659705623984337, -0.045449018478393555, -0.016600091010332108, 0.03947625309228897, 0.00013971330190543085, 0.015211889520287514, 0.0001773529511410743, -0.03315351903438568, -0.023937728255987167, -0.018431583419442177, -0.028020674362778664, 0.004838290624320507, -0.016226792708039284, -0.023961059749126434, 0.01971479505300522, -0.006200244650244713, 0.021021338179707527, -0.02860395237803459, 0.018723223358392715, 0.0026976605877280235, 0.0024774731136858463, -0.023832738399505615, -0.019399825483560562, -0.019971437752246857, -0.05828113481402397, -0.03805305436253548, -0.040666140615940094, 0.030447110533714294, -0.020333070307970047, 0.005934853106737137, 0.01985478214919567, -0.009064139798283577, 0.0040946113876998425, -0.006521047558635473, -0.033130187541246414, 0.02617751434445381, 0.06304068118333817, -0.023167800158262253, -0.006865181494504213, 0.023121139034628868, -0.03842635080218315, -0.010271525010466576, 0.03359680995345116, 0.039452921599149704, 0.02018141746520996, 0.012167178094387054, -0.003966290038079023, -0.021429631859064102, -0.0013094589812681079, -0.009454935789108276, -0.030937062576413155, 0.03203362599015236, -0.03805305436253548, 0.009886561892926693, 0.008959149941802025, 0.011560569517314434, 0.005777368322014809, -0.01338039617985487, 0.015001908876001835, 0.03641987591981888, -0.041879359632730484, 0.03079707734286785, 0.006876847241073847, 0.009624086320400238, 0.014826925471425056, 0.010755646042525768, 0.0006663950625807047, -0.027834024280309677, 0.015188558027148247, 0.049415308982133865, 0.00076773960608989, 0.013042095117270947, -0.0003711105964612216, -0.018723223358392715, -0.033433493226766586, -0.027017435058951378, 0.027040766552090645, -0.005654879845678806, -0.03208028897643089, 0.0035609120968729258, -0.01208551973104477, 0.011478910222649574, -0.00541281932964921, -0.011496408842504025, -1.8888180420617573e-05, 0.02951386570930481, 0.004068363923579454, -0.01771998405456543, 0.010557331144809723, -0.024940965697169304, 0.0005245856009423733, 0.003910878673195839, 0.02991049364209175, 0.006620205007493496, -0.002640791004523635, -0.03121703676879406, -0.019668133929371834, 0.035789936780929565, -0.0032196943648159504, -0.0247309859842062, -0.004132524598389864, 0.0425792932510376, 0.014243648387491703, 0.029163898900151253, 0.011082281358540058, -0.03707314655184746, -0.02764737606048584, -0.01634344831109047, 0.03142701834440231, 0.021989580243825912, 0.029630521312355995, -0.009536595083773136, 0.0679868832230568, 0.014896919019520283, -0.005780284758657217, 0.007442626636475325, -0.013672035187482834, -0.05949435383081436, 0.04022284969687462, 0.029630521312355995, -0.010125705972313881, 0.027834024280309677, 0.03690982982516289, -0.01739334873855114, 0.02099800668656826, 0.054688140749931335, -0.0032809386029839516, -0.007897583767771721, 0.011519739404320717, -0.031333692371845245, 0.04838874191045761, -0.06103420630097389, 0.017801644280552864, -0.012295499444007874, -0.01578350178897381, -0.04904201254248619, 0.0035259153228253126, 0.0008523149299435318, -0.009752407670021057, 0.0005154719110578299, 0.06070756912231445, 0.0009412647923454642, -0.00611858582124114, -0.0106448233127594, -0.025080952793359756, 0.03469337522983551, -0.015001908876001835, -0.003079707734286785, 0.017323356121778488, 0.0230978075414896, -0.04542568698525429, 0.030867069959640503, 0.0013247700408101082, -0.041716039180755615, -0.0013488302938640118, 0.03282688558101654, -0.0010951043805107474, -0.02440435066819191, 0.019609805196523666, 0.03681650385260582, -0.01683340221643448, -0.00727930897846818, 0.014850256964564323, 0.0011067698942497373, 0.026550812646746635, 0.030937062576413155, 0.005264083854854107, 0.009752407670021057, -0.00015967234503477812, 0.016985055059194565, -0.03096039406955242, 0.007617610041052103, -0.015316879376769066, -0.00022055198496673256, 0.005001608747988939, 0.00226457673124969, 0.0003116891602985561, -0.018653228878974915, 0.022887827828526497, 0.03173032030463219, 0.014406966045498848, 0.04523903876543045, 0.005984432063996792, 0.05342826247215271, -0.02879060059785843, -0.0230628103017807, 0.011671392247080803, -0.0006616559694521129, 0.02886059321463108, -0.00028416572604328394, -0.018816547468304634, 0.015071902424097061, 0.016810070723295212, 0.03543996810913086, -0.045682329684495926, 0.030260460451245308, 0.04043282940983772, -0.010959792882204056, 0.0014990243362262845, 0.02715742215514183, -0.00016459374455735087, -0.048528727144002914, -0.04493573307991028, 0.03679317235946655, 0.037423115223646164, -0.020298073068261147, 0.031986963003873825, -0.007465958129614592, 0.01690339483320713, 0.012248837389051914, 0.0035725776106119156, 0.024684322997927666, 0.02748405747115612, 0.030913732945919037, 0.009565758518874645, -0.026060858741402626, 0.015771836042404175, -0.019119851291179657, 0.0022587438579648733, 0.002257285639643669, -0.01548019703477621, 0.027600713074207306, 0.049975257366895676, -0.005943602416664362, 0.03772641718387604, -0.026410825550556183, 0.008591684512794018, 0.037329789251089096, -0.0037708920426666737, 0.05244835466146469, 0.01492025051265955, -0.010102374479174614, -0.016845067963004112, 0.01703171618282795, 0.017171703279018402, -0.0036279889754951, 0.0031613665632903576, 0.021697940304875374, -0.010359016247093678, 0.007716767489910126, 0.004190852399915457, -0.006841850467026234, -0.028510626405477524, -0.013917012140154839, 0.0044124978594481945, -0.0633673220872879, -0.045938972383737564, 0.005579053889960051, -0.030843738466501236, 0.021382970735430717, -0.00024643493816256523, 0.016483435407280922, -0.004325006157159805, 0.015165227465331554, -0.017743315547704697, -0.018221603706479073, 0.012808783911168575, 0.011910536326467991, 0.06154749169945717, 0.018023289740085602, 0.019446486607193947, 0.02407771535217762, 0.006766024511307478, 0.02217622846364975, 0.021382970735430717, 0.004543735180050135, -0.0007342011667788029, 0.008177557028830051, -0.04367585480213165, 0.014756932854652405, 0.030050480738282204, -0.019866447895765305, -0.00689434539526701, -0.056881267577409744, 0.020974675193428993, -0.0003641841758508235, -0.006760191638022661, 0.006993502844125032, -0.0014458002988249063, 0.022432871162891388, -0.03016713634133339, -0.007495122030377388, 0.0017381682991981506, -0.04411914572119713, -0.000946368498262018, -0.013252075761556625, -0.0273907333612442, 3.953075429308228e-05, -0.014336972497403622, -0.03315351903438568, 0.0007735724211670458, -0.011105612851679325, -0.0017206700285896659, -0.019738126546144485, -0.009781571105122566, 0.009594922885298729, 0.00622357614338398, -0.013963674195110798, -0.02221122570335865, 0.0023447773419320583, -0.007681770715862513, -0.01167722512036562, 0.0011745759984478354, 0.03592992201447487, -0.001714837271720171, 0.017405014485120773, -0.0426492840051651, -0.019866447895765305, -0.018268266692757607, -0.015130230225622654, -0.013730362989008427, 0.006509382277727127, 0.007086827419698238, 0.0339934416115284, -0.004940364509820938, -0.021056335419416428, 0.0021741685923188925, 0.004759548231959343, 0.03147367760539055, 0.01264546625316143, 0.005695709493011236, -0.017183369025588036, 0.010504836216568947, -0.011076448485255241, -0.007909249514341354, 0.01735835149884224, 0.01844324916601181, 0.028837263584136963, 0.006468552630394697, -0.0010513585293665528, -0.008941651321947575, 0.06397392600774765, 0.0007068599807098508, -0.013812022283673286, -0.011455579660832882, 0.01305376086384058, 0.002748697530478239, -0.0032401091884821653, -0.0068826801143586636, -0.021102996543049812, 0.013147084973752499, 0.015340210869908333, 0.015235220082104206, -0.006217743270099163, -0.015060236677527428, 0.018431583419442177, 0.0014268436934798956, -0.013602042570710182, 0.00622357614338398, 0.052261706441640854, 0.007996740750968456, 0.012913773767650127, -0.02594420313835144, -0.013275406323373318, 0.028907256200909615, -0.004855789244174957, 0.01231883093714714, -0.008935818448662758, 0.011508074589073658, 0.041622716933488846, -0.023506101220846176, -0.027834024280309677, 0.013287072069942951, -0.041389405727386475, 0.016203461214900017, 0.020694702863693237, 0.027227414771914482, 0.007162653375416994, -0.024544337764382362, -0.0030359618831425905, 0.02057804726064205, 0.06047425791621208, 0.02380940690636635, -0.02853395789861679, -0.021044669672846794, -0.02159295044839382, -0.03000381775200367, 0.00573362223803997, 0.06794022023677826, 0.014010337181389332, -0.04922866076231003, 0.004176270216703415, 0.07605944573879242, 0.010703151114284992, -0.003205112414434552, 0.002442476572468877, -0.002807025332003832, -0.015631848946213722, -0.018221603706479073, 0.050301890820264816, -0.0005570304347202182, -0.01716003753244877, -0.02293448895215988, -0.020204748958349228, -3.2080286473501474e-05, -0.0068301851861178875, 0.0001495561155024916, 0.0030359618831425905, 0.0204380601644516, -0.023797741159796715, 0.013555379584431648, -0.0057161240838468075, 0.028650613501667976, -0.02594420313835144, 0.0001707910851109773, -0.028253985568881035, -0.01683340221643448, 0.030680421739816666, 0.009297451004385948, 0.014325306750833988, -0.04031617194414139, -0.016518432646989822, 0.03380678966641426, -0.007290974725037813, -0.034740034490823746, -0.004403748549520969, -0.025080952793359756, 0.02090468257665634, 0.017416680231690407, -0.00459331413730979, -0.0171367060393095, -0.005232003517448902, -0.0009485557675361633, 0.02253786101937294, -0.022327881306409836, -0.014208651147782803, 0.004427079576998949, -0.011338924057781696, 0.012680462561547756, 0.012738790363073349, -0.01817494072020054, -0.030143804848194122, 0.0022718675900250673, -0.016273455694317818, 0.03089040145277977, -0.011035619303584099, -0.012482148595154285, -0.011933866888284683, -0.020461391657590866, -0.00034978450275957584, -0.012657131999731064, -0.015433534979820251, 0.012167178094387054, -0.017008384689688683, 0.021639613434672356, -0.014033667743206024, -0.0019204426789656281, -0.013672035187482834, 0.01893320307135582, -0.039196278899908066, 0.012330496683716774, 0.009834066964685917, 0.013765360228717327, 0.029047243297100067, -0.021989580243825912, 0.002668496686965227, 0.017603328451514244, -0.007856754586100578, 0.008329208940267563, -0.016880065202713013, 0.00038715076516382396, -0.02456766739487648, -0.02380940690636635, -0.0037446445785462856, -0.012715459801256657, 0.0306570902466774, 0.02148796059191227, 0.007150988094508648, 0.011858041398227215, 0.008154225535690784, -0.004835374187678099, -0.03317685052752495, 0.015666846185922623, 0.02152295783162117, -0.045355696231126785, -0.016098471358418465, 0.004135440569370985, -0.002839105436578393, -0.015421869233250618, 0.0015806832816451788, -0.02538425661623478, 0.023891065269708633, -0.0393829271197319, 0.013625373132526875, -0.04773546755313873, 0.04386250302195549, 0.03131036087870598, 0.003969206474721432, -0.032406922429800034, 0.008515858091413975, -0.01007321011275053, 0.0011475994251668453, 0.0013386228820309043, -0.014208651147782803, 0.020204748958349228, -0.0038408853579312563, 0.013193747960031033, 0.012342161498963833, -0.003018463496118784, 0.013893681578338146, 0.024917634204030037, -0.006696030963212252, -0.06560710817575455, 0.02096300944685936, -0.0005464585265144706, 0.02076469548046589, -0.017346687614917755, 0.01936482824385166, -0.011554736644029617, -0.007652606815099716, 0.0015398538671433926, 0.022129565477371216, -0.013917012140154839, -0.014826925471425056, 0.008189222775399685, -0.015130230225622654, 0.010504836216568947, -0.005891107488423586, -0.01831492781639099, 0.03187030926346779, -0.03082040697336197, -0.019038192927837372, 0.015060236677527428, -0.0007633650675415993, -0.05240169167518616, -0.0008807497215457261, -0.005937769543379545, 0.04465576261281967, 0.006381060928106308, 0.009594922885298729, -0.02214123122394085, -0.007967577315866947, 0.021242983639240265, -0.015678511932492256, 0.003998370375484228, 0.014943581074476242, 0.032546911388635635, -0.010965625755488873, -0.02233954705297947, 0.01310042291879654, -0.0014049707679077983, -0.006264405325055122, 0.01716003753244877, -0.0038088050205260515, -0.0011796796461567283, 0.03163699805736542, 0.00014900929818395525, -0.013917012140154839, -0.004911200609058142, -0.017241695895791054, -0.02364608831703663, 0.006147749722003937, 0.011344756931066513, 0.022222891449928284, -0.0023083225823938847, 0.03616323322057724, -0.04899534955620766, -0.040946114808321, 0.012493814341723919, 0.05506144091486931, 0.03275689110159874, -0.019843116402626038, -0.01886320859193802, -0.0002385971456533298, -0.004287092946469784, -0.017218366265296936, 0.009676581248641014, 0.003674651263281703, -0.01556185632944107, 0.01716003753244877, 0.035556625574827194, 0.0038642166182398796, 0.00876083504408598, -0.03217361122369766, 0.007547616958618164, 0.011134776286780834, 0.03900963068008423, -0.0032313598785549402, -0.0098282340914011, -0.004479574970901012, -0.0298405010253191, 0.03128702938556671, -0.010382347740232944, 0.006089421920478344, -0.001555894035845995, -0.015433534979820251, -0.030937062576413155, 0.014278644695878029, -0.017614994198083878, 0.02650415152311325, 0.00904080830514431, 0.0033771793823689222, 0.03567327931523323, 0.015515194274485111, 0.016401777043938637, 0.02846396528184414, 0.007156820502132177, 0.002422061748802662, -0.057114578783512115, 0.025104284286499023, 0.006293569225817919, -0.04694221168756485, -0.01706671342253685, 0.02893058769404888, -0.020414728671312332, 0.0010083417873829603, -0.012225505895912647, -0.03550996258854866, 0.031100381165742874, -0.003928377293050289, 0.03471670299768448, -0.021476294845342636, -0.012680462561547756, 0.020484721288084984, 0.0427892729640007, -0.031240368261933327, 0.027437396347522736, -0.03536997735500336, -0.017638325691223145, -0.03515999764204025, -0.02407771535217762, 0.003581326687708497, 0.002853687386959791, 0.010055712424218655, -0.01634344831109047, 0.011782214976847172, 0.00433375546708703, 0.010732314549386501, -0.0009704286931082606, -0.06098754331469536, 0.012050522491335869, -0.024264363572001457, 0.039289604872465134, 0.014815260656177998, -0.007535951212048531, 0.0006408766494132578, 0.008929985575377941, -0.012925439514219761, 0.005246585234999657, -0.06089422106742859, 0.03142701834440231, 0.0195864737033844, 0.01909651979804039, 0.02070636861026287, -0.007658439688384533, -0.0050891004502773285, -0.016366779804229736, 0.02103300392627716, 0.022561192512512207, 0.0038671328220516443, 0.003336349967867136, -0.028510626405477524, 0.004392083268612623, 0.004281260073184967, -0.02060137689113617, -0.019761458039283752, 0.013088757172226906, -0.006112752947956324, -0.019236506894230843, 0.020484721288084984, 0.022106235846877098, 0.008900822140276432, -0.015736838802695274, 0.0044124978594481945, -0.0034763365983963013, 0.012108850292861462, -0.02191958576440811, -0.032546911388635635, 0.01346205547451973, 0.0014669441152364016, 0.0077925934456288815, 0.00732013862580061, 0.007069328799843788, 0.009268286637961864, 0.024217700585722923, -0.0231328047811985, -0.0004064718377776444, -0.02148796059191227, -0.01097145862877369, 0.0026378745678812265, 0.015013574622571468, 0.01228383369743824, 0.007675937842577696, 0.018139945343136787, 0.022164562717080116, 0.019411491230130196, -0.013532049022614956, 0.005074518267065287, 0.024427682161331177, -0.003348015481606126, 0.0010491712018847466, -0.01628512144088745, -0.02650415152311325, 0.0035055004991590977, -0.023727748543024063, 0.014756932854652405, 0.003837968921288848, 0.04239264130592346, 0.02449767477810383, -0.03646653890609741, -0.006941007915884256, -0.028883924707770348, 0.07741264998912811, -0.0030272125732153654, 0.009215791709721088, -0.040572814643383026, -0.017370017245411873, -0.015678511932492256, 0.011058949865400791, -0.011449746787548065, -0.009332447312772274, 0.0041033606976270676, -0.03462338075041771, 0.013998671434819698, -0.016530098393559456, -0.005809448659420013, 0.0005544786108657718, -0.03329350799322128, -0.012668797746300697, 0.018618233501911163, 4.833118509850465e-06, 0.004981193691492081, -0.004922865889966488, -0.02109133079648018, 0.011665559373795986, -0.005972766317427158, -0.026154184713959694, 0.003447172697633505, 0.022327881306409836, 0.029303885996341705, 0.007938412949442863, -0.02246786653995514, 0.03616323322057724, -0.006701863836497068, 0.015876825898885727, -0.02860395237803459, 0.03294353932142258, -0.010948127135634422, 0.007582613732665777, -0.010633157566189766, -0.008801664225757122, 0.03861300274729729, -0.021242983639240265, -0.01528188306838274, 0.0012810241896659136, -0.015946820378303528, 0.01010820735245943, 0.017743315547704697, 0.01592348888516426, -0.014896919019520283, 3.458655919530429e-05, -0.02545425109565258, 0.03098372556269169, -0.017778312787413597, 0.007635108660906553, 0.01679840497672558, 0.008720005862414837, 0.014301976189017296, 0.016961723566055298, -0.03492668643593788, -0.015340210869908333, 0.001993352547287941, 0.041389405727386475, -0.0009879270801320672, -0.0014341346686705947, -0.024614330381155014, 0.03672318160533905], [0.03685920313000679, 0.045141905546188354, 0.010471364483237267, 0.009940422140061855, 0.022157996892929077, 0.012589234858751297, -0.0024320113006979227, 0.004353727679699659, 0.03893577679991722, -0.0008745801751501858, -0.03537256270647049, 0.018252620473504066, 0.026688706129789352, -0.007250313647091389, -0.02970917895436287, 0.005925907287746668, -0.0033832830376923084, 0.02038818970322609, -0.009704447351396084, 0.007232615724205971, 0.0319509357213974, 0.026193158701062202, -0.0009542215266264975, -0.03513658791780472, -0.014677608385682106, -0.032588064670562744, -0.02713705785572529, -0.013674717396497726, 0.023444058373570442, -0.022004613652825356, 0.11270137876272202, -0.02628755010664463, 0.00786384753882885, 0.029024852439761162, 0.03494780883193016, 0.026523523032665253, -0.0507344976067543, -0.0009269369766116142, 0.01806384138762951, -0.025909990072250366, 0.00594655517488718, 0.025839198380708694, 0.008984725922346115, -0.02320808358490467, 0.002221109112724662, 0.04570824280381203, 0.013533132150769234, -0.05583154410123825, -0.003837533760815859, 0.058710433542728424, -0.013332554139196873, 0.012589234858751297, 0.009840132668614388, -0.0164710134267807, 0.005772524047642946, -0.0049436637200415134, -0.0068314592353999615, -0.048044390976428986, 0.0006511418614536524, 0.013922490179538727, -0.006601383909583092, 0.04037522152066231, -0.00540676387026906, 0.01332075521349907, 0.04070558398962021, 0.01947968825697899, 0.028670890256762505, 0.029142839834094048, -0.04091796278953552, 0.009828333742916584, 0.023514850065112114, 0.03487701714038849, 0.02195741795003414, -0.017261527478694916, -0.035986095666885376, 0.031667765229940414, -0.04249899089336395, 0.031927336007356644, 0.010896118357777596, 0.0019408895168453455, -0.04002125933766365, 0.026145964860916138, 0.007020238786935806, -0.005306474398821592, -0.021780438721179962, 0.034169092774391174, -0.06088139861822128, -0.0008944905130192637, -0.0011304649524390697, -0.00811162032186985, 0.017167137935757637, 0.048799507319927216, 0.012211675755679607, 0.038982972502708435, 0.01053035818040371, 0.04051680490374565, -0.02214619889855385, -0.005545398686081171, -0.02536724880337715, 0.02595718577504158, -0.01996343582868576, -0.008377091959118843, -0.04025723412632942, -0.008294500410556793, 0.06890452653169632, 0.007173622027039528, -0.028434915468096733, 0.02104891650378704, -0.022275984287261963, 0.010542157106101513, -0.027491018176078796, -0.01680137775838375, 0.025485236197710037, 0.03560853749513626, 0.017261527478694916, -0.015161355957388878, -0.029732774943113327, -0.06465698778629303, 0.013179170899093151, -0.021520866081118584, 0.008052626624703407, -0.036245670169591904, -0.00803492870181799, -0.010247188620269299, -0.03402750939130783, -0.009857830591499805, -0.030015945434570312, 0.006217925809323788, -0.014830991625785828, -0.030605880543589592, 0.02312549203634262, -0.07079232484102249, 0.10486702620983124, -0.026924680918455124, 0.024376155808568, 0.017591891810297966, -0.005094097461551428, -0.0056545366533100605, -0.0038994771894067526, -0.004645746201276779, -0.004999707918614149, 0.005424461793154478, 0.03754352778196335, 0.027585407719016075, -0.03209251910448074, 0.023278875276446342, -0.007374200504273176, 0.06838538497686386, 0.006536491215229034, 0.03884138911962509, -0.034334275871515274, -0.018158230930566788, -0.0006655215984210372, -0.01143885962665081, -0.0252020675688982, -0.03825145214796066, 0.022028211504220963, 0.022865919396281242, -0.00250722817145288, 0.05955994129180908, -0.03862901031970978, -0.0006400806014426053, -0.01699015684425831, -0.044221606105566025, 0.04174387454986572, -0.013238164596259594, -0.007338804192841053, -0.04566104710102081, -0.05951274558901787, -0.02404579147696495, -0.015951870009303093, -0.07168902456760406, -0.03171496093273163, -0.0020411787554621696, 0.002057401929050684, -0.038487426936626434, -0.0015633304137736559, 0.05002657324075699, -0.02812814898788929, 0.012966793961822987, 0.011792820878326893, 0.027184251695871353, -0.02621675655245781, -0.034900616854429245, -0.017910458147525787, -0.003224000334739685, -0.010306182317435741, 0.0029777020681649446, -0.048799507319927216, -0.005601442418992519, -0.013533132150769234, -0.0020839490462094545, -0.02487170323729515, -0.021284891292452812, -0.027160653844475746, -0.01680137775838375, -0.04832755774259567, -0.04832755774259567, -0.00042991587542928755, -0.024446949362754822, -0.04054040461778641, -0.03230489790439606, -0.05181998014450073, -0.03180934861302376, -0.02421097457408905, 0.0009446350741200149, -0.014713004231452942, -0.005740077700465918, 0.06366589665412903, 0.011067199520766735, 0.021001722663640976, 0.022901317104697227, -0.05540679022669792, -0.007592476438730955, 0.03372074291110039, 0.034475862979888916, 0.05592593550682068, 0.04058759659528732, 0.03383873030543327, -0.01261283177882433, -0.018028445541858673, -0.01355673000216484, 0.06843257695436478, -0.04103595018386841, 0.014948979020118713, 0.012683624401688576, -1.5624087609467097e-05, -0.029308021068572998, 0.007616074290126562, -0.049460235983133316, -0.06739429384469986, 0.024659326300024986, -0.010471364483237267, -0.022995706647634506, 0.01322636567056179, -0.013580326922237873, 0.018866153433918953, -0.02911924198269844, -0.016270436346530914, -0.006548289675265551, 0.014394438825547695, -0.0029024851974099874, -0.04075277969241142, -0.003288893261924386, -0.0048050289042294025, -0.028434915468096733, -0.0252020675688982, 0.0073683010414242744, 0.03497140854597092, -0.02970917895436287, 0.07126427441835403, 0.01488998532295227, 0.06413784623146057, -0.027255043387413025, 0.008913933299481869, 0.017745275050401688, 0.021249495446681976, -0.004462866112589836, 0.03308361396193504, 0.01393428910523653, -0.028104552999138832, 0.021509068086743355, -0.017851464450359344, 0.013757308013737202, -0.03487701714038849, -0.0006456112605519593, -0.04228661581873894, -0.005498203914612532, -0.011020004749298096, 0.002403989201411605, -0.012294266372919083, 0.03209251910448074, 0.020282000303268433, -0.04325411096215248, -0.11572185158729553, -0.028175344690680504, -5.046718433732167e-05, -0.009881428442895412, 0.004238690249621868, 0.0592767708003521, 0.009792937897145748, 0.0007558555225841701, 0.00412070332095027, -0.009657252579927444, 0.02694827690720558, -0.010011214762926102, 0.03513658791780472, 0.013757308013737202, -0.030723867937922478, -0.008447883650660515, 0.024128383025527, -0.0349242128431797, 0.00026768347015604377, -0.01073093619197607, 0.002582445042207837, -0.00730340788140893, -0.019255511462688446, -0.02313729003071785, -0.018028445541858673, 0.003577962052077055, -0.011303174309432507, -0.030747465789318085, -0.00011844809341710061, 0.04169667884707451, 0.0013590650632977486, 0.03553774580359459, 0.03478262946009636, 0.009332788176834583, -0.015763090923428535, 0.005102946422994137, -0.01813463307917118, -0.010064308531582355, -0.02331427112221718, -0.03322519734501839, 0.012483046390116215, 0.004359627142548561, -0.029520398005843163, -0.0028228438459336758, 0.018004847690463066, -0.007739960681647062, 0.0177924707531929, 0.02697187475860119, 0.025508834049105644, -0.030157528817653656, 0.018240822479128838, -0.016919365152716637, -0.011958003044128418, 0.044575564563274384, -0.022665342316031456, -0.029756372794508934, -0.015279343351721764, -0.002889211755245924, 0.038817789405584335, -0.018913349136710167, -0.04386764392256737, -0.026004379615187645, -0.008430185727775097, 0.012329663150012493, -0.01598726585507393, 0.009763441048562527, 0.025249261409044266, -0.015763090923428535, -0.017167137935757637, 0.011509652249515057, 0.013804502785205841, -0.02961478754878044, 0.008206009864807129, 0.039974063634872437, 0.04570824280381203, 0.0036664523649960756, 0.042074237018823624, 0.03237568959593773, -0.06932928413152695, 0.055878739804029465, -0.028836073353886604, -0.03421628847718239, 0.04044601321220398, -0.0062238252721726894, -0.0043183318339288235, -0.0014652536483481526, 0.011633538641035557, -0.046958908438682556, 0.0051176948472857475, 0.008725154213607311, -0.03761431947350502, 0.008843140676617622, -0.03692999482154846, -0.016754183918237686, -0.03638725355267525, -0.00899062491953373, -0.0015249846037477255, -0.018075639382004738, -0.006082240492105484, -0.027679799124598503, 0.019821850582957268, 0.014713004231452942, -0.058946408331394196, -0.0049436637200415134, -0.009315090253949165, 0.027679799124598503, 0.024010395631194115, -0.007450892124325037, 0.010565754026174545, 0.0076573695987463, 0.031927336007356644, 0.023160887882113457, -0.021898426115512848, -0.06498735398054123, 0.03650524094700813, -0.03180934861302376, -0.030605880543589592, 0.037637919187545776, -0.006931748241186142, -0.002470357110723853, 0.027184251695871353, -0.019928038120269775, 0.011220582760870457, 0.07258573174476624, -0.023739024996757507, -0.0513952262699604, -0.0355849415063858, -0.011739727109670639, 0.017768872901797295, 0.023739024996757507, -0.010394672863185406, -0.02744382433593273, -0.03197453171014786, -0.024128383025527, 0.07008440047502518, 0.017674483358860016, -0.018252620473504066, 0.03395671769976616, 0.009214800782501698, 0.014052276499569416, 0.0311250239610672, 0.011332671158015728, -0.015055167488753796, 0.010123302228748798, -0.009533366188406944, -0.044386785477399826, 0.029732774943113327, 0.01673058606684208, -0.027184251695871353, 0.028765279799699783, -0.027774188667535782, 0.04391483590006828, 0.035254575312137604, -0.06578966230154037, 0.027160653844475746, -0.021780438721179962, -0.02379801869392395, -0.05351899564266205, 0.05210315063595772, 0.03185654431581497, 0.024682922288775444, -0.01389889232814312, 0.02137928083539009, -0.037496332079172134, 0.027349434792995453, -0.029142839834094048, 0.017839664593338966, -0.029166437685489655, -0.006459799595177174, 0.030487893149256706, -0.010282584466040134, -0.05743617191910744, -0.01730872318148613, 0.04018644243478775, -0.012636429630219936, 0.039808884263038635, 0.0061117373406887054, 0.01297859288752079, 0.003701848443597555, -0.05635068938136101, -0.02155626192688942, -0.01722613163292408, -0.005297625437378883, -0.03119581751525402, -0.00559259345754981, -0.00018269581778440624, 0.030015945434570312, 0.01365111954510212, -0.01518495287746191, 0.046888116747140884, 0.046557750552892685, 0.010636546649038792, -0.02430536411702633, -0.03579731658101082, 0.01589287631213665, -0.006914050318300724, 0.02056516893208027, -0.01123828161507845, 0.01773347705602646, 0.046156592667102814, 0.029237229377031326, -0.013061183504760265, -0.008648461662232876, -0.003583861282095313, -0.04058759659528732, -0.016777779906988144, -0.03461744636297226, 0.05889921262860298, -0.06196688115596771, -0.013485937379300594, 0.03159697353839874, -0.005507052876055241, 0.07513425499200821, 0.025343650951981544, -0.0031443589832633734, -0.030251918360590935, -0.00692584877833724, -0.01971566118299961, 0.03603329136967659, -0.01035927701741457, -0.011946204118430614, -0.015373732894659042, -0.00263111456297338, -0.02579200267791748, 0.04554305970668793, -0.005633889231830835, 0.022653542459011078, -0.04533068463206291, -0.01981005258858204, 0.03202172741293907, 0.03334318473935127, 0.017037352547049522, -0.010713238269090652, -0.03785029426217079, -0.009415378794074059, -0.0053418707102537155, -0.019928038120269775, -0.013887094333767891, 0.03629286587238312, -0.014335445128381252, 0.0063123153522610664, -0.006135334726423025, 0.03209251910448074, 0.0507344976067543, -0.006737069226801395, 0.01789865829050541, 0.02012861706316471, -0.014724803157150745, 0.01839420571923256, 0.013308956287801266, 0.004474664572626352, 0.012435851618647575, -0.0155625119805336, -0.08150555938482285, 0.009108612313866615, 0.009261995553970337, -0.011444758623838425, -0.011320872232317924, -0.044646359980106354, 0.01621144264936447, 0.02386881224811077, 0.0019836598075926304, -0.01518495287746191, 0.006129435263574123, -0.02155626192688942, -0.0009365234291180968, -0.0015235097380355, -0.016954760998487473, -0.0504041351377964, -0.05323582515120506, -0.027089862152934074, -0.009332788176834583, 0.04143710806965828, 0.020694956183433533, -0.010518559254705906, 0.009049618616700172, 0.014370841905474663, 0.011226482689380646, -0.0025146023835986853, -0.019762856885790825, 0.03818066045641899, 0.009910925291478634, 0.030582282692193985, -0.029591191560029984, 0.010176395997405052, 0.022441165521740913, 0.00526222912594676, 0.02704266645014286, -0.006860956083983183, -0.01981005258858204, 0.004185596015304327, 0.04936584457755089, -0.003958470653742552, -0.030511491000652313, 0.013769106939435005, -0.03676481172442436, -0.005751876160502434, -0.009663152508437634, 0.012388656847178936, 0.03079465962946415, 0.0764085128903389, 0.006135334726423025, 0.005070500075817108, -0.02155626192688942, -0.013214566744863987, 0.061447735875844955, 0.0034186793491244316, 0.04146070405840874, -0.03388592600822449, 0.0021547414362430573, -0.024730117991566658, -0.00025404119514860213, 0.008223707787692547, -0.048044390976428986, -0.03655243664979935, 0.01297859288752079, -0.003445226466283202, -0.023526648059487343, 0.007309307344257832, -0.0010220641270279884, -0.026476329192519188, 0.025107678025960922, -0.028576500713825226, 0.04832755774259567, -0.014748401008546352, 0.0027417277451604605, -0.009834233671426773, -0.020919131115078926, -0.016836773604154587, -0.011002306826412678, -0.009592359885573387, -0.016506409272551537, 0.01573949307203293, 0.019857246428728104, 0.01732052117586136, 0.017001956701278687, -0.0077340612187981606, -0.02536724880337715, -0.010630646720528603, -0.013143775053322315, -0.00761017482727766, 0.0013723386218771338, -0.05333021655678749, 0.004052860662341118, -0.040823571383953094, -0.013580326922237873, -0.02329067327082157, 0.02822253853082657, -0.013308956287801266, -0.00031967158429324627, -0.02513127401471138, 0.026193158701062202, 0.018771763890981674, -0.0014962252462282777, -0.04084717109799385, -0.012801611796021461, 0.009155807085335255, -0.0009608583059161901, -0.021001722663640976, 0.005660436116158962, -0.01989264227449894, 0.00338918250054121, -0.003999766428023577, 0.026735899969935417, -0.0038965274579823017, -0.0015021245926618576, 0.03603329136967659, 0.023845214396715164, 0.005855115130543709, -0.02021120861172676, 0.03518378362059593, 0.023833414539694786, 0.011456557549536228, 0.006919949781149626, 0.029402410611510277, 0.0045100608840584755, -0.020588766783475876, 0.007698664907366037, -0.004616249352693558, 0.004648695699870586, 0.04360806941986084, 0.006206126883625984, -0.01464221253991127, 0.027019070461392403, -0.010300283320248127, 0.003421628847718239, -0.019857246428728104, 0.025508834049105644, 0.004976110532879829, -0.019290907308459282, -0.0063654095865786076, 0.016329430043697357, 0.03818066045641899, 0.004551356192678213, 0.00549230445176363, -0.024612130597233772, -0.06890452653169632, -0.013922490179538727, 0.02362103760242462, -0.013792703859508038, 0.006784264463931322, -0.023821616545319557, -0.022570952773094177, 0.029142839834094048, 0.01763908751308918, 0.022759731858968735, 0.009533366188406944, -0.01897234283387661, -0.05606751888990402, 0.037401944398880005, -0.03154977783560753, -0.00923839770257473, 0.017084546387195587, -0.0321161188185215, -0.003636955516412854, 0.005120644811540842, -0.009108612313866615, 0.04377325251698494, 0.006931748241186142, 0.016872169449925423, 0.014040477573871613, 0.01032388024032116, 0.007574778515845537, -0.007085131481289864, -0.0024113634135574102, -0.010961011052131653, -0.011179287917912006, -0.004400922916829586, -0.025508834049105644, -0.049884989857673645, -0.017261527478694916, -0.01746210642158985, -0.02031739614903927, -0.015208550728857517, 0.006860956083983183, -0.011958003044128418, -0.04466995596885681, 0.04285295307636261, -0.03829864785075188, -0.018181828781962395, -0.015432726591825485, -0.015361933968961239, -0.02829333208501339, 0.03428708016872406, 0.006412604358047247, 0.04278216138482094, -0.0322812981903553, 0.005586693994700909, -0.014736602082848549, 0.011934406124055386, -0.009220699779689312, -0.018323412165045738, 0.023491252213716507, -0.007338804192841053, -0.03398031368851662, 0.018500393256545067, -0.0027948219794780016, -0.024824507534503937, 0.0171317420899868, 0.005595542956143618, 0.019928038120269775, 0.010612948797643185, -0.03544335812330246, 0.05908799171447754, 0.0030647176317870617, 0.006990741938352585, 0.020954526960849762, -0.02871808595955372, -0.01347413845360279, 0.016093455255031586, -0.044150810688734055, -0.005825618281960487, -0.0324464812874794, 0.03688279911875725, -0.011244180612266064, 0.005368417594581842, -0.005294675938785076, 0.007545281667262316, 0.014394438825547695, -0.029095644131302834, 0.04587342590093613, -0.029897958040237427, -0.01730872318148613, 0.013072982430458069, -0.022842323407530785, 0.022688940167427063, 0.008005431853234768, 0.04011565074324608, 0.027585407719016075, -0.027396628633141518, 0.018913349136710167, 0.04238100349903107, -0.07220816612243652, -0.020411785691976547, -0.006648579146713018, 0.04200344532728195, -0.01839420571923256, 0.00989912636578083, 0.009421278722584248, 0.0011253029806539416, 0.0009770815959200263, 0.027939369902014732, -0.022653542459011078, -0.05035693943500519, 0.0013000714825466275, -0.005486404988914728, 0.02786857821047306, -0.02205180935561657, -0.04141350835561752, 0.0001095068728318438, 0.0052386317402124405, -0.011975700967013836, -0.047879207879304886, 0.012093688361346722, 0.05125364288687706, -0.0072385151870548725, -0.031243011355400085, -0.011043602600693703, -0.01518495287746191, -0.03676481172442436, 0.0017211383674293756, -0.008559972047805786, 0.003586811013519764, -0.06626161187887192, -0.009456674568355083, 0.005300575401633978, 0.016022661700844765, -0.0007322580786421895, -0.007321106269955635, 0.03537256270647049, 0.05078169330954552, 0.04044601321220398, -0.03133740276098251, -0.04150789976119995, 0.011680733412504196, -0.00347472308203578, -0.0018258519703522325, 0.041153937578201294, 0.010123302228748798, 0.012412253767251968, 0.03313080593943596, 0.009403579868376255, -0.045047514140605927, 0.029591191560029984, -0.024918897077441216, 0.016435617581009865, 0.00727981049567461, -0.01722613163292408, 0.008276802487671375, -0.008477380499243736, -0.021096112206578255, -0.029024852439761162, -0.01498437486588955, 0.01048316340893507, 0.0026089921593666077, 0.010058409534394741, -0.008860839530825615, 0.04249899089336395, 0.016860371455550194, 0.0005630201776511967, -0.03400391340255737, 0.008878537453711033, 1.0277791261614766e-05, -0.014134867116808891, 0.02155626192688942, 0.006453900132328272, 0.03461744636297226, 0.039738088846206665, -0.041153937578201294, -0.0007433193968608975, 0.009232498705387115, 0.038817789405584335, 0.03695359081029892, -0.011580443941056728, -0.0250368844717741, 0.03622207045555115, 0.03936053067445755, -0.04702970013022423, -0.06309955567121506, 0.00780485337600112, 0.0173795148730278, -0.00761017482727766, -0.004421570338308811, -0.0018966443603858352, -0.052291929721832275, -0.009486171416938305, 0.021037118509411812, 0.022783329710364342, -0.007722262758761644, 0.0030824157875031233, -0.013403346762061119, -0.02337326481938362, 0.04061119630932808, -0.009326888248324394, -0.022334977984428406, -0.007604275364428759, 0.01854758895933628, 0.006394906435161829, 0.05989030376076698, 0.0041649481281638145, -0.05181998014450073, -0.001138576539233327, 0.028151746839284897, 0.057624951004981995, 0.0128488065674901, 0.013946088030934334, 0.008029029704630375, 0.055218011140823364, 0.016353026032447815, 0.02304290048778057, -0.02770339511334896, -0.01739131473004818, -0.025768404826521873, 0.02047077938914299, 0.026263952255249023, -0.001616424648091197, 0.01697835884988308, -0.0029555794317275286, -0.00023265602067112923, 0.03209251910448074, 0.03152618184685707, 0.009804736822843552, -0.009037819691002369, 0.026853887364268303, -0.027491018176078796, 0.024659326300024986, -0.039738088846206665, -0.0038463829550892115, 0.0060704415664076805, 0.025485236197710037, 0.001703440211713314, -0.004539557732641697, 0.006843257695436478, -0.01780426874756813, 0.03511299192905426, 0.04419800639152527, -0.0017550596967339516, 6.682868843199685e-05, -0.03520738333463669, -0.0004372900875750929, 0.03362635150551796, 0.009846032597124577, -0.021025320515036583, 0.004893519449979067, -0.004265237599611282, 0.0072385151870548725, 0.01173382718116045, 0.0053507196716964245, -0.04341929033398628, 0.0034157296176999807, 0.0006946496432647109, -0.002954104682430625, -0.028836073353886604, -0.0072149173356592655, -0.008471481502056122, -0.025084080174565315, -0.02213439904153347, 0.018830757588148117, -0.025508834049105644, 0.04459916427731514, 0.040493208914995193, -0.010312081314623356, 0.0008745801751501858, 0.013662918470799923, 0.02553243190050125, -0.004837475251406431, 0.04120113328099251, 0.024753715842962265, -0.015007972717285156, -0.015774888917803764, -0.012046493589878082, -0.020989922806620598, -0.02888326719403267, 0.02779778465628624, 0.053377412259578705, -0.03634005784988403, 0.03077106364071369, -0.005996699444949627, 0.01455962099134922, -0.03131380304694176, 0.00037866519414819777, -0.026499927043914795, 0.02254735492169857, 0.05375497043132782, 0.015208550728857517, -0.008400688879191875, 0.04865792393684387, 0.02671230398118496, 0.02411658503115177, -0.00042844103882089257, 0.02645273134112358, 0.04931865260004997, -0.015196751803159714, 0.002417262876406312, 0.026145964860916138, -0.0009586460655555129, -0.004616249352693558, -0.028647292405366898, 0.01930270716547966, 0.027821382507681847, 0.009480271488428116, 0.03711877390742302, 0.0008060000836849213, -0.02553243190050125, 0.05951274558901787, -0.005917058326303959, 0.025084080174565315, 0.004908267874270678, -0.007185420952737331, 0.042310211807489395, -0.020270202308893204, 0.008754650130867958, -0.008524575270712376, 0.03737834468483925, -0.02106071636080742, -0.009161706082522869, -0.027349434792995453, 0.006141234189271927, -0.02305470034480095, 0.023526648059487343, -0.029661983251571655, 0.01706095039844513, 0.05790812149643898, -0.045141905546188354, 0.0030647176317870617, -0.030912647023797035, -0.00495251314714551, -0.009916824288666248, -0.0159754678606987, 0.015114161185920238, -1.6154108379851095e-05, 0.004619198851287365, 0.01335615199059248, 0.007421395275741816, 0.008206009864807129, 0.013592125847935677, 0.009958120062947273, -0.0036900497507303953, -0.013828100636601448, -0.02654712088406086, 0.007061534095555544, -0.03133740276098251, 0.007409596350044012, -0.029024852439761162, 0.01002891268581152, 0.002374492585659027, -0.012176279909908772, 0.026263952255249023, 0.024989690631628036, -0.010258987545967102, -0.026523523032665253, -0.018571186810731888, 0.012636429630219936, 0.028104552999138832, 0.02356204390525818, 0.007285709958523512, 0.0344286672770977, 0.004032212775200605, 0.01863018050789833, 0.02694827690720558, 0.020352791994810104, 0.017178937792778015, 0.02697187475860119, 0.0011127667967230082, 0.018488595262169838, 0.024128383025527, 0.014465231448411942, 0.021273093298077583, -0.0439620316028595, 0.003114862134680152, -0.0015913523966446519, -0.019373498857021332, 0.028600098565220833, 0.019090330228209496, 0.01729692332446575, -0.00785794761031866, -0.014288250356912613, 0.02878887765109539, -0.006772465538233519, 0.02320808358490467, 0.011899009346961975, -0.06791343539953232, -0.005501153413206339, 0.004442218225449324, -0.013580326922237873, 0.013580326922237873, -0.011580443941056728, 0.005810869857668877, -0.019703863188624382, -0.025414444506168365, 0.048044390976428986, -0.012884202413260937, -0.024612130597233772, 0.005309424363076687, -0.005383166018873453, 0.017532898113131523, -0.018205424770712852, -0.021674249321222305, 0.030181126669049263, -0.02070675417780876, 0.002243231749162078, 0.009250196628272533, -0.029803568497300148, -0.028482111170887947, 0.013757308013737202, 0.00692584877833724, -0.02687748521566391, 0.017686281353235245, 0.04094155877828598, -0.031927336007356644, -0.03593890368938446, -0.03029911406338215, 0.02245296537876129, -0.005279927514493465, -0.006400805898010731, 0.005250430665910244, -0.011533249169588089, 0.0033508366905152798, -0.01322636567056179, -0.001858298433944583, 0.02447054535150528, -0.007285709958523512, -0.017497502267360687, 0.0025765455793589354, 0.03671761974692345, -0.037142373621463776, 0.04183826223015785, 0.0067193713039159775, -0.008141117170453072, -0.02487170323729515, 0.02687748521566391, -0.03836943954229355, -0.022653542459011078, 0.014913582243025303, -0.03794468566775322, -0.008937531150877476, 0.009863730520009995, -0.016494611278176308, 0.010347478091716766, -0.031667765229940414, -0.013072982430458069, -0.011509652249515057, -0.02572121098637581, -0.030015945434570312, 0.044150810688734055, 0.02021120861172676, 0.015550713986158371, -0.002493954496458173, -0.019444290548563004, 0.004973160568624735, 0.014453432522714138, 0.008176513016223907, -0.02522566355764866, 0.05333021655678749, -0.01488998532295227, 0.007993632927536964, 0.005925907287746668, -0.009185303933918476, -0.022488361224532127, -0.016010863706469536, 0.019574077799916267, -0.0031886042561382055, -0.009126310236752033, -0.03317800164222717, 0.009851931594312191, 0.035325370728969574, 0.03011033497750759, 0.03268245607614517, 0.01178102195262909, 0.017757074907422066, -0.0039053764194250107, -0.02122589759528637, 0.023113694041967392, 0.0764085128903389, 0.008276802487671375, -0.017591891810297966, 0.02954399585723877, 0.045802634209394455, -0.006961245089769363, 0.019184719771146774, -0.0033714843448251486, 0.022865919396281242, 0.014146666042506695, 0.00025422556791454554, 0.029921555891633034, 0.0020647761411964893, 0.00874285213649273, -0.01040057186037302, 0.011786921881139278, 0.0033714843448251486, -0.019751058891415596, -0.005763675086200237, -0.013792703859508038, 0.04242819920182228, -0.042050641030073166, 0.026523523032665253, 0.01522034965455532, 0.014654010534286499, -0.043136123567819595, -0.02645273134112358, -0.005819718819111586, -0.029001254588365555, 0.02162705548107624, -0.026594316586852074, 0.010347478091716766, -0.019326305016875267, -0.0484219491481781, 0.037071578204631805, -0.03747273609042168, -0.011940305121243, -0.003324289573356509, 0.0010294383391737938, 0.015102362260222435, -0.000618326710537076, 0.012459448538720608, -0.009816535748541355, -0.02045898139476776, -0.013887094333767891, 0.014771997928619385, -0.019373498857021332, -0.03704798221588135, 0.017863262444734573, -0.019420694559812546, 0.0076573695987463, 0.045401476323604584, -0.01871277019381523, -0.00347472308203578, -0.03895937651395798, -0.0026266900822520256, 0.029095644131302834, -0.05049852281808853, -0.00806442555040121, -0.016506409272551537, -0.008642562665045261, 0.02080114372074604, 0.010536257177591324, -0.035065796226263046, 0.03400391340255737, -0.005409713368862867, -0.021072514355182648, 0.004150199703872204, 0.013627521693706512, 0.011887210421264172, -0.019668467342853546, -0.0158102847635746, -0.034475862979888916, 0.019019536674022675, 0.03209251910448074, 0.014901784248650074, 0.03306001424789429, 0.0256976131349802, 0.005480505526065826, -0.0020559269469231367, -0.006654478143900633, -0.016518209129571915, 0.0017639086581766605, 0.0480915829539299, 0.002548523712903261, -0.004468765575438738, -0.023573843762278557, 0.017438508570194244, 0.04254618659615517, 0.009031920693814754, 0.03869980201125145, -0.017627287656068802, -0.0021857130341231823, -0.0072385151870548725, -0.00677836500108242, 0.006158932112157345, -0.030936244875192642, -0.022995706647634506, -0.0028346425388008356, 0.0225591529160738, 0.040988754481077194, -0.016364825889468193, -0.052291929721832275, 0.05181998014450073, -0.012211675755679607, 0.015196751803159714, -0.034900616854429245, -0.008005431853234768, 0.02005782537162304, -0.0031945034861564636, -0.0229721087962389, -0.0038404834922403097, 0.02106071636080742, -0.0034157296176999807, -0.013875295408070087, -0.007250313647091389, 0.029732774943113327, 0.010848923586308956, 0.0002378179633524269, -0.00043692137114703655, -0.01053035818040371, -0.015043368563055992, 0.01898414082825184, -0.006430302746593952, -0.018913349136710167, 0.02711346000432968, 0.018358809873461723, 0.022995706647634506, 0.008860839530825615, 0.00677836500108242, 0.020742150023579597, 0.015019770711660385, 0.01822902262210846, 0.03188014402985573, 0.005194386467337608, 0.0029895007610321045, 0.01579848676919937, -0.020753949880599976, 0.01135626807808876, -0.021367482841014862, -0.006896351929754019, 0.02204000949859619, -0.035160187631845474, -0.010819426737725735, -0.013946088030934334, 0.014347244054079056, -0.024777313694357872, -0.010660143569111824, 0.016789579764008522, 0.01896054297685623, 0.006536491215229034, 0.013993282802402973, 0.018323412165045738, 0.005173739045858383, 0.017674483358860016, -0.024777313694357872, 0.03468823805451393, 0.010253088548779488, -0.004515960346907377, -0.01615244895219803, -0.0250368844717741, 0.005524750798940659, -0.005793171934783459, -0.0021989864762872458, -0.0068314592353999615, -0.01269542332738638, -0.035820916295051575, 0.011137992143630981, -0.018677374348044395, 0.003884728765115142, -0.008949329145252705, -0.022924913093447685, -0.026358341798186302, 0.004864022601395845, -0.006353611126542091, 0.020742150023579597, -0.01097870897501707, -0.005828567780554295, -0.03777950257062912, -0.0009586460655555129, 0.019019536674022675, 0.028647292405366898, 0.025343650951981544, 0.0009527466609142721, -0.014418036676943302, -0.021450074389576912, -0.02172144502401352, -0.008542273193597794, -0.01879536174237728, 0.006577786523848772, 0.009497970342636108, -0.0049171168357133865, 0.025084080174565315, -0.016789579764008522, -0.024824507534503937, -0.009220699779689312, -0.00886673852801323, 0.01831161417067051, 0.006035045720636845, -0.015149557031691074, -0.019432492554187775, -0.022075405344367027, -0.019290907308459282, 0.00029054348124191165, -0.012223474681377411, -0.021426476538181305, -0.0027667998801916838, -0.01551531720906496, -0.017273327335715294, 0.014099471271038055, 0.03334318473935127, 0.008955229073762894, -0.0016518208431079984, -0.014300049282610416, 0.004377325065433979, 0.004170847591012716, 0.04636897146701813, 0.03339038044214249, 0.0023037001956254244, -0.013592125847935677, -0.04117753356695175, -0.020246604457497597, 7.982571696629748e-05, -0.07650290429592133, -0.006837358698248863, 0.008300399407744408, -0.008141117170453072, 0.005294675938785076, -0.018512193113565445, -0.04153149574995041, -0.005306474398821592, 0.014960777945816517, 0.036151278764009476, -0.019102128222584724, -0.0011761849746108055, -0.0024128383956849575, -0.033673547208309174, 0.019762856885790825, 0.014288250356912613, 0.002712230896577239, -0.016612598672509193, -0.02487170323729515, -0.01654180698096752, 0.019609473645687103, 0.005881662014871836, 0.012884202413260937, -0.012919599190354347, 0.002929032314568758, 0.003648754209280014, 0.002044128254055977, -0.016199642792344093, -0.009468473494052887, -0.012919599190354347, -0.016706988215446472, 0.04065839201211929, 0.011627638712525368, -0.010683741420507431, -0.013686515390872955, -0.04832755774259567, -0.031738556921482086, 0.01123828161507845, -0.023691831156611443, 0.004979060031473637, 0.025414444506168365, 0.0314553901553154, 0.008937531150877476, 0.02022300660610199, 0.002802196191623807, -0.03126661106944084, -0.0004623623681254685, 0.024352559819817543, -0.01493718009442091, 0.05899360403418541, -0.022169794887304306, 0.00599374994635582, -0.0025190268643200397, 0.016907567158341408, 0.018040243536233902, 0.003421628847718239, -0.00036059838021174073, -0.010141000151634216, -0.015692297369241714, 0.03886498510837555, -0.009686749428510666, -0.010571653954684734, -0.0035632136277854443, 0.004173797555267811, 0.01498437486588955, -0.0041030049324035645, -0.034664642065763474, 0.030251918360590935, 0.005073449574410915, 0.014500627294182777, -0.0051501416601240635, 0.026405535638332367, -0.010601150803267956, 0.017190735787153244, 0.009816535748541355, 0.008949329145252705, -0.009385881945490837, 0.0013081831857562065, 0.006548289675265551, 0.038723401725292206, 0.02088373526930809, 0.020246604457497597, 0.011580443941056728, 0.005911158863455057, 0.039242543280124664, -0.009710347279906273, -0.04035162553191185, 0.004409771878272295, 0.013639320619404316, 0.018323412165045738, -0.01872457005083561, 0.010164598003029823, -0.0004752672102767974, -0.022606348618865013, 0.007191319949924946, 0.021178703755140305, 0.045637451112270355, 0.007964136078953743, -0.022193392738699913, -0.030983440577983856, -0.028057357296347618, 0.03077106364071369, 0.004052860662341118, -0.02313729003071785, 0.010418269783258438, -0.01614064909517765, -0.0256976131349802, 0.024446949362754822, -0.002405464183539152, -0.02378622069954872, -0.02162705548107624, -0.0020957477390766144, -0.005527700763195753, -0.00029349318356253207, 0.004976110532879829, -0.009102712385356426, -0.010618848726153374, 0.00010784767800942063, -0.021037118509411812, 0.01488998532295227, -0.012412253767251968, -0.0007418445311486721, -0.002524926094338298, 0.0021635903976857662, -0.013155573047697544, -0.0245413389056921, -0.009798836894333363, 0.02080114372074604, 0.0017476854845881462, 0.0063123153522610664, -0.028859669342637062, 0.021827632561326027, -0.010135101154446602, 0.0021267193369567394, -0.020612364634871483, 0.0022107851691544056, -0.012577435933053493, 0.0016518208431079984, 0.014453432522714138, -0.0175446979701519, 0.019762856885790825, 0.05290546268224716, -0.020069623365998268, 0.002293376252055168, -0.006896351929754019, 0.017580093815922737, -0.0018288017017766833, -0.015385531820356846, -0.000907764071598649, -0.01847679540514946, -0.015279343351721764, 0.0711698830127716, -0.05252790451049805, -0.008382990956306458, 0.022570952773094177, 0.0005545398453250527, 0.035490550100803375, 0.013002189807593822, -0.05984311178326607, 0.002892161253839731, -0.01201699674129486, -0.004129552282392979, -0.015704097226262093, 0.005893460940569639, -0.0025617971550673246, 0.021450074389576912], [0.04166392609477043, 0.03211753070354462, 0.023294730111956596, -0.007762794382870197, -0.015259000472724438, -0.007870699279010296, -0.013316715136170387, 0.019346686080098152, 0.054739441722631454, 0.02278694324195385, -0.002207286888733506, 0.0243991669267416, -0.028816914185881615, -0.04509149119257927, -0.0019168960861861706, 0.003932175692170858, -0.04625939950346947, 0.01182509120553732, -0.014928938820958138, 0.03039105422794819, 0.0028372600208967924, 0.03643371909856796, -0.03140662983059883, 0.035062696784734726, -0.012821623124182224, -0.02107316255569458, 0.023878686130046844, 0.011152273043990135, 0.041156139224767685, -0.025503603741526604, 0.08190605044364929, -0.027979066595435143, 0.05981731414794922, 0.028639189898967743, -0.00896878819912672, 0.040292900055646896, -0.01371025014668703, -0.043441180139780045, 0.021022383123636246, -0.03889648616313934, -0.0076421950943768024, 0.005963324103504419, 0.014129174873232841, -0.03628138452768326, -0.0030181591864675283, 0.05423165485262871, 0.035443536937236786, -0.03638294339179993, -0.058040060102939606, 0.05009319260716438, -0.004309842362999916, 0.01082855835556984, -0.023751739412546158, 0.028994640335440636, -0.007794531062245369, 0.01650307886302471, -0.04435519874095917, -0.006080749910324812, -0.01880081556737423, -0.028740746900439262, -0.041054584085941315, -0.031838249415159225, 0.0024484856985509396, 0.05951264128088951, 0.009698732756078243, -0.027572836726903915, -0.05108337476849556, 0.03254915028810501, -0.030162550508975983, -0.020286092534661293, 0.03701767697930336, 0.03084806352853775, 0.01633804850280285, -0.042197104543447495, -0.03625599667429924, 0.033844005316495895, -0.0031578007619827986, -0.04318728670477867, 0.007439080160111189, -0.020641542971134186, -0.010650833137333393, 0.00021521442977245897, 0.013938754796981812, 0.029680153355002403, -0.025389352813363075, 0.026455704122781754, -0.11404897272586823, -0.030264107510447502, 0.033945564180612564, 0.009717774577438831, -0.028994640335440636, 0.009349629282951355, 0.010136699303984642, 0.04671640694141388, -0.021517476066946983, 0.03920115903019905, 0.04453292489051819, -0.0218348428606987, -0.0461578406393528, 0.050347086042165756, 0.004500262439250946, -0.00302450661547482, -0.03683995082974434, 0.013164378702640533, 0.021238192915916443, -0.016553858295083046, -0.0022993232123553753, 0.02239340916275978, -0.0416131466627121, 0.003019746160134673, -0.04587855935096741, -0.005341284908354282, -0.0296039842069149, 0.07967178523540497, -0.010371549986302853, -0.0005303994403220713, -0.07997646182775497, 0.004265411291271448, 0.013697555288672447, -0.03579898551106453, 0.006499674171209335, -0.011184009723365307, 0.02211412601172924, -0.05864940211176872, -0.027699783444404602, -0.013773723505437374, -0.036611445248126984, 0.010111309587955475, -0.012275751680135727, -0.036687612533569336, 0.039429664611816406, -0.06890670210123062, 0.061188340187072754, 0.003846486797556281, 0.009901847690343857, 0.004173374734818935, 0.016261879354715347, 0.015728702768683434, -0.012066289782524109, -0.0067789568565785885, -0.010707959532737732, -0.04691952094435692, 0.03816019743680954, -0.013646776787936687, -0.04539616033434868, -0.017417095601558685, 0.0034148679114878178, 0.07819920778274536, -0.020819269120693207, -0.02326934039592743, -0.014230731874704361, 0.03036566451191902, -0.004662119783461094, 0.0007077282061800361, 0.012739107012748718, 0.019016625359654427, 0.02384060248732567, 0.001209961366839707, -0.009812984615564346, 0.000537936924956739, -0.03937888517975807, -0.009844721294939518, -0.04740191996097565, -0.03683995082974434, 0.04255255311727524, -0.03254915028810501, -0.020146450027823448, 0.011520418338477612, -0.04074991121888161, -0.04422825202345848, -0.024056410416960716, -0.0198544729501009, -0.026430316269397736, -0.028740746900439262, -0.007648542523384094, -0.05115954577922821, 0.0218348428606987, 0.0031498665921390057, -0.01466235052794218, -0.008181719109416008, 0.028842303901910782, -0.0008695853175595403, -0.014941633678972721, -0.03320927172899246, -0.027191996574401855, 0.042298659682273865, -0.042679499834775925, -0.023396287113428116, -0.06352415680885315, -0.005309548228979111, 0.027471279725432396, -0.0027547446079552174, -0.0011591826332733035, 0.041638538241386414, 0.0016534815076738596, -0.0102953827008605, -0.04686874523758888, 0.027496667578816414, -0.005772904027253389, 0.027268163859844208, 0.0027452236972749233, -0.01862308941781521, 0.017582125961780548, 0.0011361734941601753, -0.027191996574401855, 0.010993589647114277, 0.0035354671999812126, 0.021339749917387962, 0.018254945054650307, -0.004909665789455175, 0.03338699787855148, 0.013646776787936687, -0.05941108241677284, -0.013164378702640533, 0.0007497792830690742, 0.057583048939704895, 0.06200079619884491, 0.003862355137243867, -0.0015376426745206118, 0.006223564967513084, -0.015360558405518532, 0.002223155228421092, 0.07114096730947495, -0.016833139583468437, -0.010333466343581676, -0.005972845014184713, -0.012751801870763302, -0.03303154557943344, 0.01756943203508854, -0.07870699465274811, -0.00962891150265932, -0.004830324091017246, -0.01899123564362526, -0.05009319260716438, -0.02365018241107464, 0.0199306420981884, 0.005039786454290152, 0.0037449293304234743, 0.006823388393968344, 0.04453292489051819, 0.019613275304436684, -0.003560856683179736, -0.04379663243889809, 0.018483448773622513, 0.011920301243662834, -0.018483448773622513, -0.01433228887617588, 0.02278694324195385, 0.04179087281227112, 0.04207015782594681, 0.02382790669798851, -0.026176422834396362, 0.07124251872301102, -0.01660463586449623, 0.01843266934156418, 0.013786418363451958, 0.004319363739341497, -0.028309127315878868, 0.06616465002298355, -0.03686533868312836, 0.011190356686711311, 0.0015257414197549224, -0.04354273900389671, 0.0046843355521559715, -0.055501122027635574, 0.021238192915916443, 0.007743752561509609, -0.020819269120693207, 0.0001727666094666347, 0.021339749917387962, -0.05423165485262871, 0.007737405132502317, 0.002773786662146449, -0.019295908510684967, -0.06113756075501442, -0.014649656601250172, 0.004246369004249573, -0.013113600201904774, 0.027217386290431023, 0.053419195115566254, -0.05250518023967743, -0.015703314915299416, 0.034326404333114624, -0.02127627655863762, 0.004094033036381006, 0.0002715470618568361, 0.03899804502725601, -0.0033355262130498886, -0.03732234612107277, 0.044279031455516815, 0.047224193811416626, 0.00470337737351656, 0.006112486589699984, -0.02003219909965992, 0.027039660140872, -0.01110784150660038, -0.018927762284874916, 0.009698732756078243, -0.03094962053000927, -0.01605876535177231, 0.008143634535372257, 0.03958199918270111, -0.025211626663804054, 0.019333992153406143, -0.0449899323284626, -0.013062821701169014, 0.027572836726903915, 0.03287921100854874, -0.06347338110208511, 0.021796759217977524, 0.029832487925887108, -0.00222950242459774, 0.014979717321693897, -0.04196859896183014, -0.041536979377269745, -0.027572836726903915, -0.01381180714815855, 0.029020030051469803, 0.055399566888809204, 0.029832487925887108, 0.01944824308156967, -0.01803913526237011, 0.03625599667429924, -0.022609218955039978, 0.016350742429494858, -0.03389478474855423, 0.02810601331293583, 0.032599929720163345, -0.04717341810464859, -0.02676037698984146, -0.03656066581606865, -0.01624918542802334, 0.02202526293694973, -0.0238152127712965, -0.06134067475795746, -0.04658946022391319, -0.018559616059064865, -0.008841841481626034, -0.0072105759754776955, -0.03841409087181091, 0.04069913178682327, -0.03539275750517845, -0.012085331603884697, 0.018762731924653053, -0.009267113171517849, -0.021860232576727867, -0.006658357568085194, 0.02990865707397461, 0.013316715136170387, 0.0742892473936081, 0.00681069353595376, -0.0043288846500217915, -0.054079320281744, -0.018851593136787415, -0.07896088808774948, -0.06382883340120316, 0.030314886942505836, -0.008283276110887527, -0.018064524978399277, 0.01466235052794218, 0.016350742429494858, -0.051692720502614975, 0.020819269120693207, 0.04222249239683151, 0.0047700246796011925, 0.010028794407844543, -0.023599402979016304, 0.014243426732718945, 0.014548098668456078, 0.00973681639879942, 0.037728577852249146, -0.017734462395310402, -0.003235555486753583, -0.013456356711685658, 0.01717589609324932, 0.017683682963252068, -0.014789297245442867, 0.01466235052794218, -0.00981933157891035, -0.0011798114283010364, 0.012739107012748718, 0.0004812075640074909, 0.021911010146141052, -0.0007620772812515497, 0.047985874116420746, 0.01748056896030903, -0.03493575006723404, -0.03386939689517021, 0.05154038593173027, 0.030492611229419708, -0.027877509593963623, 0.02182214893400669, -0.04648790508508682, 0.02032417617738247, 0.014256121590733528, 0.024272220209240913, 0.012935874983668327, 0.07784375548362732, -0.0029213624075055122, -0.035468924790620804, -0.01833111234009266, -0.013342104852199554, -0.02876613661646843, 0.03028949722647667, -0.0037131926510483027, 0.022825026884675026, -0.004144811537116766, 0.016401521861553192, -0.005319069139659405, -0.029273923486471176, -0.005976018961519003, 0.04811282083392143, 0.03841409087181091, 0.01376102864742279, 0.01699817180633545, 0.01613493263721466, 0.027191996574401855, 0.017709072679281235, -0.015360558405518532, -0.02365018241107464, 0.011152273043990135, -0.011621976271271706, -0.021758675575256348, 0.03275226429104805, 0.0004308255738578737, 0.02220298908650875, 0.002059711143374443, -0.03597671166062355, 0.010911074467003345, -0.06525063514709473, -0.007058240007609129, 0.0179502721875906, 0.026709597557783127, 0.01966405287384987, 0.012218625284731388, -0.03463107720017433, 0.006880514323711395, 0.0012218626216053963, 0.0058427248150110245, -0.02886769361793995, 0.00664566271007061, -0.05981731414794922, -0.01632535271346569, 0.03130507096648216, -0.02678576670587063, -0.034301016479730606, 0.006156918127089739, 0.05545034632086754, 0.004011517856270075, -0.011495029553771019, -0.006982071790844202, 0.030594170093536377, -0.0482143796980381, -0.024792702868580818, -0.02800445631146431, -0.017302842810750008, -0.00269444496370852, -0.02935009077191353, 0.001025888486765325, 0.009260766208171844, 0.003046722151339054, 0.047528866678476334, -0.013976838439702988, 0.02772517316043377, 0.08058580011129379, 0.012853359803557396, 0.005341284908354282, -0.04148619994521141, -0.005433321464806795, -0.025173543021082878, 0.0016804577317088842, -0.017239369451999664, 0.015881039202213287, 0.01190760638564825, 0.03889648616313934, -0.008746631443500519, -0.0019470459083095193, -0.02678576670587063, -0.012942221947014332, -0.01343096699565649, -0.008759326301515102, 0.06332104653120041, -0.03940427303314209, -0.010752391070127487, 0.03305693715810776, 0.0055063157342374325, 0.07276588678359985, 0.049966245889663696, 0.0007688213372603059, -0.03397095203399658, -0.005277811549603939, -0.05448554828763008, -0.001704260241240263, -0.012967611663043499, 0.002066058572381735, -0.014624266885221004, -0.0199306420981884, 0.017683682963252068, 0.057379934936761856, -0.0074708168394863605, 0.05991886928677559, -0.00012089695519534871, 0.002670642454177141, -0.005953803192824125, 0.04537077248096466, 0.012885096482932568, 0.01698547601699829, -0.0044336155988276005, 0.014421151950955391, 0.032041363418102264, -0.024754619225859642, -0.027496667578816414, -0.005328590516000986, -0.021504782140254974, -0.023891380056738853, -0.02145400270819664, 0.04349195957183838, 0.014941633678972721, -0.011380776762962341, 0.021568255499005318, 0.026176422834396362, 0.006664704997092485, 0.06753567606210709, -0.00977490097284317, 0.007128060795366764, -0.01000975165516138, -0.021682506427168846, -0.04681796580553055, -0.009768553078174591, -0.005446015857160091, -0.01661733165383339, -0.032320644706487656, -0.03932810574769974, 0.008740284480154514, -0.008772021159529686, 0.023282036185264587, 0.009857416152954102, 0.001612223917618394, 0.024640366435050964, 0.03244759142398834, 0.032904598861932755, -0.015233611688017845, 0.004094033036381006, -0.01736631616950035, 0.008581601083278656, 0.006632968317717314, 0.039074212312698364, 0.0015408162726089358, -0.02277424931526184, -0.002521479967981577, 0.007731057703495026, -0.0038845709059387445, -0.018064524978399277, 0.006721830926835537, 0.02970554120838642, 0.0012774018105119467, 0.016845835372805595, -0.017531348392367363, 0.016274575144052505, 0.04024212434887886, -0.012516950257122517, 0.0007208195747807622, 0.039429664611816406, -0.015995291993021965, -0.013722945004701614, 0.008149982430040836, 0.017163202166557312, 0.025376657024025917, -0.0031578007619827986, -0.028359906747937202, -0.015449420548975468, -0.00340534676797688, 0.030594170093536377, -0.01044771820306778, 0.04092763736844063, 0.01585565134882927, 0.030441833660006523, -0.01916896179318428, -0.004084512125700712, 0.04963618516921997, 0.00910842977464199, 0.021911010146141052, 0.0010512778535485268, -0.02533857338130474, -0.019778305664658546, 0.012567729689180851, 0.009070346131920815, -0.022355323657393456, 0.011894911527633667, -0.018673868849873543, 0.02904541976749897, -0.021504782140254974, -0.012186888605356216, 0.009000524878501892, -0.0019962377846240997, 0.06057899445295334, -0.006918598432093859, 0.026176422834396362, -0.022926585748791695, 0.025033900514245033, -0.003145105903968215, -0.013976838439702988, -0.011888564564287663, -0.023015446960926056, -0.028461463749408722, 0.007521595805883408, -0.004573257174342871, -0.012567729689180851, -0.0006335437064990401, 0.021492086350917816, -0.005236553959548473, -0.03130507096648216, -0.0031863637268543243, -0.018572311848402023, -0.055196452885866165, -0.04643712565302849, -0.0359005443751812, 0.008949746377766132, -0.027953676879405975, -0.010625443421304226, -0.02268538624048233, 0.001025888486765325, -0.0007184393471106887, -0.023662876337766647, -0.014763908460736275, 0.04384741187095642, -0.0009663822129368782, -0.05636436119675636, 0.011399819515645504, -0.03303154557943344, -0.038312532007694244, 0.019625969231128693, -0.021682506427168846, -0.026328757405281067, -0.01357060857117176, 0.042019378393888474, -0.010098614729940891, -0.023739043623209, 0.0053254165686666965, 0.0077564469538629055, 0.04780815169215202, 0.03067033737897873, -0.010124004445970058, -0.009768553078174591, 0.02022261917591095, 0.010130351409316063, 0.009349629282951355, 0.040978413075208664, 0.02772517316043377, -0.005077870562672615, -0.022329935804009438, 0.02097160555422306, 0.019625969231128693, -0.025871749967336655, 0.011926648207008839, -0.0001637414825381711, -0.006141049321740866, 0.024183357134461403, 0.00025032315170392394, 0.000893387827090919, -0.013227852061390877, -0.01585565134882927, 0.004735114052891731, -0.009095735847949982, -0.02118741348385811, 0.013392883352935314, 0.03714462369680405, 0.0041479854844510555, 0.0018407279858365655, -0.03638294339179993, -0.02696349285542965, -0.03265070542693138, -0.04326345771551132, -0.01015574112534523, -0.001967674819752574, 0.012351919896900654, 0.02457689307630062, 0.018204165622591972, -0.00788339413702488, 0.03653527796268463, 0.0008069053292274475, -0.002868996700271964, -0.038591817021369934, 0.026049476116895676, -0.02610025368630886, 0.014573488384485245, 0.002511959057301283, -0.037906304001808167, 0.019702136516571045, 0.025211626663804054, -0.014840076677501202, 0.028156790882349014, 0.027953676879405975, -0.001693152473308146, -0.04585317149758339, 0.00519846985116601, 0.03115273453295231, -0.02752205729484558, 0.0032910946756601334, -0.012567729689180851, -0.026633430272340775, 0.01280892826616764, -0.01234557293355465, -0.02790289744734764, -0.045218437910079956, 0.005645957309752703, -0.008581601083278656, -0.02163172885775566, 0.005277811549603939, 0.007623152807354927, -0.012358266860246658, 0.05042325332760811, -0.021682506427168846, -0.012593118473887444, -0.043136510998010635, 0.007813572883605957, -0.005614220630377531, 0.0198544729501009, 0.011329998262226582, -0.01077777985483408, -0.045980118215084076, 0.030137160792946815, -0.043136510998010635, 0.014979717321693897, 0.002066058572381735, -0.009470228105783463, -0.003132411278784275, 0.015919124707579613, -0.01767098903656006, 0.026506483554840088, 0.009908194653689861, -0.007312133442610502, 0.006010929122567177, -0.005233380012214184, 0.009508312679827213, 0.026354147121310234, -0.03272687643766403, 0.02268538624048233, 0.005271464120596647, 0.0026182769797742367, 0.03249837085604668, -0.038312532007694244, 0.0056618256494402885, -0.053216081112623215, 0.012834317982196808, -0.016299964860081673, -0.03567203879356384, -0.022368019446730614, -0.0383886992931366, 0.022812332957983017, -0.0026420794893056154, 0.009933584369719028, 0.03295537829399109, -0.020298786461353302, -0.0016645893920212984, -0.023193173110485077, 0.00910842977464199, 0.028436074033379555, -0.005192122422158718, 0.007343870121985674, -0.005595178343355656, -0.002570671960711479, 0.004392358008772135, 0.02535126730799675, 0.020159145817160606, 0.017544042319059372, 0.0008112691575661302, 0.02914697676897049, 0.008461001329123974, 0.004290800541639328, -0.04681796580553055, 0.00695033511146903, -0.002756331581622362, -0.02384060248732567, -0.011990121565759182, -0.019295908510684967, -0.050372473895549774, -0.023193173110485077, -0.03681455925107002, -0.02648109383881092, 0.0019787827041000128, -0.0012401111889630556, -0.011691796593368053, -0.0012234493624418974, 0.015005107037723064, -0.01869925856590271, -0.008327707648277283, 0.022533049806952477, 0.03767779842019081, 0.00768662616610527, 0.004246369004249573, -0.030898841097950935, -0.024614976719021797, -0.025960613042116165, -0.021098552271723747, -0.05783694237470627, 0.018838899210095406, -0.0366368368268013, -0.0009973255218937993, 0.014433846808969975, -0.014357678592205048, 0.010955505073070526, -0.03689073026180267, 0.013075516559183598, 0.0005252422415651381, 0.020578069612383842, -0.01324054691940546, -0.003322831355035305, 0.008080161176621914, -0.018572311848402023, -0.031660523265600204, 0.0313558503985405, -0.002983248792588711, 0.03427562490105629, 0.03729695826768875, 0.006702789105474949, -0.03899804502725601, 0.0021930052898824215, -0.013024738058447838, -0.020590765401721, 0.024322999641299248, -0.01824224926531315, -0.011799701489508152, -0.0008608577190898359, 0.033361610025167465, -0.018915066495537758, -0.007984951138496399, 0.014967023395001888, -0.0021073161624372005, -0.014395762234926224, 0.030137160792946815, 0.002937230747193098, -0.01745517924427986, -0.0029181886930018663, 0.007096324115991592, 0.042755670845508575, -0.02296466939151287, -0.005268290638923645, 0.008289623074233532, 0.03767779842019081, 0.037347737699747086, 0.018648479133844376, -0.02203795686364174, -0.03249837085604668, 0.02003219909965992, 0.036408331245183945, 0.012586771510541439, -0.0011504549765959382, -0.006848777644336224, 0.01067622285336256, -0.018724646419286728, -0.0014773429138585925, 0.012885096482932568, 0.007388301659375429, 0.007477164268493652, -0.029781710356473923, -0.0012964437482878566, 0.033920176327228546, -0.05280985310673714, -0.002892799209803343, 0.009482922963798046, 0.020527292042970657, 0.01086664292961359, 0.005300027318298817, -0.032701484858989716, -0.0073057860136032104, 0.014840076677501202, -0.0011044368147850037, -0.005353979766368866, -0.004236848093569279, 0.03320927172899246, 0.006905903574079275, 0.030898841097950935, -0.007692973595112562, -0.051134154200553894, -0.022951973602175713, -0.013177073560655117, 0.04679257422685623, -0.0025262406561523676, 0.032701484858989716, -0.014268815517425537, 0.05174349993467331, 0.051895834505558014, 0.004259063862264156, -0.007705668453127146, -0.011126883327960968, -0.055755019187927246, 0.047122638672590256, -0.00877836812287569, -0.028156790882349014, 0.040597572922706604, 0.016820445656776428, -0.0012766083236783743, 0.016820445656776428, 0.012954916805028915, -0.021809453144669533, 0.0006617099861614406, 0.027090439572930336, -0.021047772839665413, 0.02820757031440735, -0.019511716440320015, -0.011913953348994255, -0.015170138329267502, -0.000810872414149344, -0.03694150596857071, -0.0025325878523290157, -0.0074517750181257725, -0.03521503135561943, 0.002392946509644389, 0.008175371214747429, 0.04773198068141937, 0.008289623074233532, -0.017797935754060745, -0.01143790315836668, 0.017988355830311775, 0.008689505979418755, -0.03871876373887062, -0.004598646424710751, 0.006575842387974262, 0.0010187478037551045, 0.0012464585015550256, 0.011920301243662834, -0.009609869681298733, -0.02648109383881092, 0.019892556592822075, -0.013151684775948524, -0.027750561013817787, 0.0423494391143322, 0.026074863970279694, -0.045040711760520935, -0.04166392609477043, 0.012567729689180851, -0.007750099524855614, 0.015525588765740395, -0.0023453414905816317, 0.012066289782524109, 0.006550452671945095, 0.0025722587015479803, 0.002929296577349305, -0.024462640285491943, 0.00978759489953518, -0.019765609875321388, -0.010371549986302853, -0.0082071078941226, -0.00943849142640829, 0.021949095651507378, -0.008676811121404171, 0.06484440714120865, 0.04496454447507858, 0.0020073456689715385, 0.03239681199193001, -0.03094962053000927, 0.0313558503985405, -0.02069232240319252, -0.017150508239865303, 0.023370899260044098, 0.04034367948770523, 0.033920176327228546, 0.024183357134461403, -0.032803043723106384, -0.00858794804662466, 0.004370142240077257, 0.01881350949406624, -0.021250886842608452, 0.022761553525924683, 0.03937888517975807, -0.008054772391915321, -0.010111309587955475, 0.009565438143908978, 0.02343437261879444, -0.0024643540382385254, -0.04387279972434044, 0.03313310444355011, -0.004551041405647993, 5.8068224461749196e-05, 0.037830132991075516, -0.013037431985139847, -0.003478341270238161, 0.014116480015218258, 0.004478047136217356, -0.006753567606210709, 0.054079320281744, 0.019105486571788788, 0.02174597978591919, -0.04651329293847084, 0.022063346579670906, -0.020819269120693207, 0.019143572077155113, -0.021809453144669533, -0.016744278371334076, 0.01586834527552128, 0.002421509474515915, -0.01946093887090683, 0.026328757405281067, -0.019676748663187027, 0.02962937392294407, 0.042577944695949554, 0.019778305664658546, 0.004300321452319622, -0.004855713807046413, 0.007007461041212082, -0.03300615772604942, -0.003875049762427807, -0.0003213339950889349, 0.012567729689180851, 0.03587515279650688, -0.001124272239394486, -0.004417747259140015, -0.017797935754060745, 0.010720654390752316, 0.01381180714815855, -0.027598226442933083, -0.011755269952118397, 0.020717712119221687, -0.027369720861315727, -0.04265411198139191, 0.018546922132372856, -0.01223766803741455, 0.0008434025221504271, -0.011691796593368053, -0.014840076677501202, 0.014916243962943554, 0.03425023704767227, -0.024894259870052338, 0.0027547446079552174, 0.001985129900276661, 0.001782015198841691, 0.005141343921422958, 0.0052206856198608875, 0.0038560079410672188, 0.02390407584607601, -0.03419945761561394, 0.00287217041477561, 0.022533049806952477, 0.06230546906590462, 0.04737653210759163, 0.01775985211133957, -0.03105117753148079, -0.013253241777420044, 0.028893083333969116, -0.03397095203399658, 0.00036279004416428506, -0.03518964350223541, 0.009851068258285522, 0.004519304726272821, -0.023142393678426743, 0.015360558405518532, 0.025897139683365822, 0.013456356711685658, 0.00013577353092841804, -0.01480199210345745, 0.011983774602413177, -0.003061003750190139, 0.009140166454017162, -0.009368671104311943, -0.04189243167638779, -0.005134996492415667, -0.018585005775094032, -0.017518652603030205, -0.008219802752137184, -0.016579246148467064, -0.02780134044587612, 0.017036255449056625, -0.0076612369157373905, 0.023612096905708313, 0.0005296060116961598, -0.05306374654173851, -0.0054967948235571384, 0.0028816915582865477, -0.01709972880780697, -0.02116202563047409, -0.006068055052310228, 0.05029630661010742, -0.008099202997982502, -0.013392883352935314, -0.008289623074233532, -0.02535126730799675, -0.042958784848451614, -0.03379322588443756, 0.0128597067669034, 0.008937051519751549, -0.012485213577747345, 0.04069913178682327, -0.0231550894677639, -0.023193173110485077, -0.0017486916622146964, -0.002067645313218236, 0.023688266053795815, 0.0250592902302742, -0.03234603628516197, -0.0192705187946558, 0.009806637652218342, -0.022190293297171593, 0.02582097053527832, -0.0011877455981448293, 0.008689505979418755, 0.016820445656776428, -0.0040972065180540085, 0.0391249917447567, 0.012313836254179478, 0.06504751741886139, -0.036205217242240906, -0.009311544708907604, 0.029273923486471176, 0.04354273900389671, -0.013507135212421417, -0.001423390582203865, 0.04303495213389397, -0.03765241056680679, 0.011736228130757809, 0.03899804502725601, 0.002070819027721882, -0.01124748308211565, 0.0018550095846876502, -0.023954853415489197, -0.010758738033473492, 0.0036909771151840687, 0.011215746402740479, 0.03686533868312836, -0.0036941508296877146, -0.029781710356473923, -0.02782673016190529, -0.03826175257563591, -0.01671888865530491, -0.002239023568108678, 0.017125118523836136, -0.014510015025734901, 0.002937230747193098, 0.02001950331032276, 0.009800289757549763, 0.021123940125107765, -0.01124748308211565, -0.005998234264552593, -0.03188902512192726, 0.016401521861553192, 0.011063409969210625, -0.002250131219625473, -0.035468924790620804, -0.04473603889346123, 0.02516084723174572, 0.023739043623209, 0.027928287163376808, 0.005366674158722162, -0.01039693970233202, -0.010193824768066406, -0.020870046690106392, 0.003779839724302292, 0.07586338371038437, 0.043720465153455734, -0.04539616033434868, 0.0023088441230356693, 0.03686533868312836, -0.02372634969651699, 0.010327119380235672, -0.011291914619505405, -0.003338699694722891, 0.015017801895737648, -0.008194413036108017, 0.02544013038277626, 0.012193236500024796, 0.005915719084441662, -0.008188066072762012, -0.02003219909965992, 0.026531873270869255, 0.002596061211079359, 0.02231724001467228, -0.04130847752094269, 0.02495773322880268, -0.044558312743902206, 0.03496113792061806, -0.03353933244943619, 0.024145273491740227, 0.002970554167404771, -0.029223144054412842, -0.012637550011277199, -0.012605813331902027, 0.008270581252872944, 0.01928321272134781, 0.03638294339179993, -0.029959434643387794, -0.022939279675483704, 0.01767098903656006, -0.023231256753206253, -0.014027616940438747, -0.010225561447441578, 0.018254945054650307, 0.0029324700590223074, 0.0007132820901460946, -0.03501191735267639, -0.02108585648238659, 0.011882216669619083, -0.0026357320602983236, 0.018445365130901337, 0.0017423443496227264, -0.005604699719697237, 0.04415208473801613, -0.03305693715810776, 0.04823976755142212, 0.015487505123019218, -0.040191344916820526, -0.015690619125962257, -0.014941633678972721, -0.006134702358394861, 0.017899492755532265, -0.03851564601063728, -0.03480880334973335, 0.0045891255140304565, 0.01603337563574314, -0.006134702358394861, -0.028334517031908035, -0.0005807814304716885, 0.03673839196562767, 0.0032593579962849617, -0.004182895645499229, -0.001394034130498767, 0.004255890380591154, -0.0011806049151346087, 0.008702200837433338, -0.017709072679281235, 0.005560268182307482, 0.006848777644336224, 0.009203639812767506, 0.018686562776565552, -0.03133045881986618, 0.013012043200433254, -0.004141638055443764, -0.014941633678972721, -0.010073225013911724, -0.028918471187353134, -0.006445721723139286, 0.012542339973151684, -0.02886769361793995, -0.015538283623754978, -0.02211412601172924, 0.036789171397686005, 0.0035005570389330387, -0.0001714773097774014, -0.0032688791397958994, -0.004531999584287405, 0.0035291200038045645, 0.012123415246605873, 0.014649656601250172, 0.034504130482673645, -0.02668420970439911, -0.031660523265600204, 0.02146669663488865, 0.0034497783053666353, 0.007972256280481815, -0.02278694324195385, -0.005322243086993694, 0.03551970422267914, -0.007838962599635124, -0.003770318813621998, -0.008962441235780716, 0.009895499795675278, 0.0005637229769490659, -0.01612223871052265, -0.027699783444404602, 0.005379369016736746, -0.01000975165516138, -0.013595998287200928, -0.015398642048239708, -0.001701086643151939, 0.024513419717550278, -0.004750982392579317, -0.0018375543877482414, 0.0017582126893103123, -0.003135584993287921, -0.026176422834396362, 0.030416443943977356, -0.005357153248041868, -0.025795582681894302, 0.01925782300531864, -0.020590765401721, 0.03808402642607689, 0.017582125961780548, -0.005499968305230141, -0.0035132516641169786, -0.0026325583457946777, 0.0040972065180540085, 0.026430316269397736, -0.00533811142668128, -0.009958973154425621, -0.00014876572822686285, -0.015170138329267502, 0.0044526574201881886, 0.03196519613265991, 0.0013765789335593581, 0.020451122894883156, -0.03541814535856247, -0.029172366484999657, 0.007585069164633751, -0.00018784153508022428, -0.017683682963252068, -0.024183357134461403, 0.0070201558992266655, 0.03823636472225189, -0.007420038338750601, 0.02678576670587063, 0.00591254560276866, 0.0022882153280079365, 0.04394896700978279, 0.011222093366086483, 0.025402046740055084, 0.011939343065023422, 0.05961420014500618, -0.022520355880260468, -0.0002975314564537257, 0.015563673339784145, 0.0005772110307589173, -0.00921633467078209, -0.0023786649107933044, -0.014535403810441494, 0.006448895670473576, -0.010853948071599007, -0.0025611508172005415, -0.01466235052794218, -0.02552899345755577, -0.04450753331184387, -0.005195296369493008, 0.024449946358799934, -0.010124004445970058, 0.013722945004701614, 0.022913889959454536, 0.025655940175056458, -0.021987179294228554, -0.0397089459002018, 0.007534290198236704, 0.023129699751734734, -0.014053006656467915, -0.027598226442933083, -0.0023992937058210373, -0.008721242658793926, -0.013151684775948524, -0.020946215838193893, 0.005379369016736746, -0.02411988377571106, 0.028816914185881615, -0.03513886407017708, 0.04816360026597977, 0.006709136534482241, -0.012599466368556023, -0.025655940175056458, 0.026988880708813667, 0.015297085046768188, 0.005347632337361574, 0.006360032595694065, -0.02040034532546997, 0.015297085046768188, -0.020273398607969284, 1.0537572734392597e-06, -0.006969377398490906, -0.025287793949246407, 0.0015090795932337642, -0.00892435759305954, -0.005268290638923645, 0.029477037489414215, 0.028156790882349014, 0.021390529349446297, 0.010035141371190548, -0.010250951163470745, 0.014586183242499828, 0.02706504985690117, 0.0347326323390007, 0.018102608621120453, -0.0024516594130545855, 0.002045429777354002, -0.027217386290431023, 0.013227852061390877, 0.018115302547812462, -0.05057558789849281, -0.010289034806191921, 0.02886769361793995, -0.011266524903476238, -0.018381891772150993, -0.003197471611201763, -0.02040034532546997, 0.015804871916770935, -0.021809453144669533, 0.017163202166557312, -0.016071459278464317, 0.0021676160395145416, 0.014878160320222378, -0.0014035551575943828, 0.015830261632800102, 0.0015606516972184181, -0.00788339413702488, -0.006248954217880964, -0.021149329841136932, -0.02135244570672512, -0.016630025580525398, -0.006867819931358099, 0.012453476898372173, -0.021403223276138306, -6.124189530964941e-05, -0.02668420970439911, -0.008467349223792553, -0.017391705885529518, -0.028232960030436516, -0.023142393678426743, -0.016858529299497604, 0.03046722337603569, -0.03496113792061806, -0.01414186879992485, 0.0036370246671140194, -0.038210973143577576, -0.04222249239683151, -0.0037227137945592403, -0.05199739336967468, 0.030721116811037064, 0.016452299430966377, -0.014967023395001888, 0.03920115903019905, -0.030238717794418335, -0.01025729812681675, -0.0552472285926342, -0.02516084723174572, -0.0038052292075008154, -0.018750036135315895, -0.020819269120693207, -0.03770318627357483, -0.032219089567661285, 0.024894259870052338, 0.012421740218997002, 0.012872401624917984, 0.0009433731320314109, 0.012085331603884697, -0.014294205233454704, 0.02592252939939499, -0.009133819490671158, 0.00187405152246356, 0.01381180714815855, 0.0008362617809325457, -0.015233611688017845, 0.0037163663655519485, 0.01537325233221054, -0.007896088063716888, 0.008137287572026253, 0.006613926030695438, 0.00569356232881546, 0.021136635914444923, -0.002132705645635724, 0.007705668453127146, 0.005630088970065117, 0.02552899345755577, 0.009641606360673904, -0.00269444496370852, -0.01887698285281658, -0.006652010139077902, 0.0404452383518219, 0.015728702768683434, 0.021009689196944237, -0.004287627059966326, 0.01253599300980568, 0.03978511318564415, -0.004557388834655285, -0.014573488384485245, -0.006506021600216627, -0.011177661828696728, 0.0025436957366764545, -0.004249542951583862, -0.017302842810750008, 0.00801668781787157, -0.015830261632800102, 0.009152861312031746, 0.029477037489414215, 0.03211753070354462, 0.011952037923038006, -0.010415981523692608, 0.009311544708907604, -0.05545034632086754, 0.015969902276992798, 0.008118245750665665, 0.003065764205530286, -0.013354798778891563, -0.02004489302635193, 0.00948926992714405, 0.011520418338477612, 0.006759915035218, -0.01395144872367382, -0.019029319286346436, -0.04943306744098663, 0.00896878819912672, -0.024932343512773514, -0.015284390188753605, 0.014243426732718945, -0.0069249458611011505, 0.03760163113474846, 0.010035141371190548, 0.0160460714250803, -0.007483511697500944, 0.021136635914444923, 3.0794508347753435e-05, 0.03376783803105354, 0.006223564967513084, -0.03557048365473747, 0.010352508164942265, 0.03534197807312012, 0.0391249917447567, -0.0038115764036774635, 0.0048747556284070015, 0.026328757405281067, -0.026938103139400482, 0.045903947204351425, -0.019676748663187027, 0.011787006631493568, -0.061086781322956085, -0.012751801870763302, 0.014129174873232841, -0.02448803000152111, 0.02924853377044201, 0.03435179218649864, -0.006087097339332104, -0.013469051569700241, -0.0017566258320584893, -0.004782719071954489, -0.011748922988772392, 0.014548098668456078, -0.02497042715549469, -0.0072613549418747425, 0.005985539872199297, 0.0218348428606987, -0.04402513802051544, -0.034021731466054916, -0.016071459278464317, -0.027572836726903915, 0.03975972533226013, 0.03833792358636856, -0.02070501632988453, 0.024081800132989883, -0.02998482435941696, 0.02564324624836445, -0.014941633678972721, -0.0023167782928794622, 0.01447193045169115, 0.020590765401721], [0.012553841806948185, 0.01281219907104969, -0.011678948067128658, -0.016828488558530807, 0.0026672508101910353, 0.034690409898757935, -0.020504215732216835, 0.027033623307943344, 0.01422142330557108, 0.019670424982905388, -0.012565584853291512, 0.0003438654530327767, 0.002081542043015361, -0.0063708689995110035, -0.04150165989995003, 0.003634624881669879, -0.010774695314466953, -0.015090445056557655, 0.006009755190461874, 0.03161360323429108, 0.019552988931536674, 0.059892039746046066, 0.01797935552895069, -0.01916545256972313, -0.025248605757951736, -0.0009035184048116207, 0.010516338050365448, 0.03050971031188965, 0.036240555346012115, -0.024027276784181595, 0.06858225911855698, -0.01126792374998331, -0.0031913062557578087, -0.0023927458096295595, 0.006447202060371637, 0.015783313661813736, -0.019048018380999565, -0.035559430718421936, 0.010798182338476181, -0.006846482399851084, -0.01849607191979885, -0.014902548864483833, -0.02649342082440853, -0.04067961499094963, -0.05106090009212494, 0.043380625545978546, -0.0004080879152752459, -0.02733895555138588, -0.013869117945432663, 0.05040326341986656, 0.02639947272837162, 0.02646993286907673, -0.012694763951003551, 0.040609151124954224, -0.02475537732243538, -0.007128327153623104, -0.03187195956707001, 0.05035628750920296, -0.0139748090878129, 0.017814945429563522, -0.0011398571077734232, 0.014820343814790249, 0.021267546340823174, 0.05650990083813667, -0.030815042555332184, -0.016617104411125183, -0.018190739676356316, 0.057308461517095566, -0.02604716643691063, -0.015771569684147835, 0.014620703645050526, 0.012788712047040462, -0.005598731338977814, -0.04756132513284683, -0.013328914530575275, 0.009770623408257961, 0.038049060851335526, -0.04220627248287201, 0.033492568880319595, 0.007298608310520649, -0.0025145849213004112, -0.004348044749349356, -0.010504594072699547, 0.0326470322906971, -0.040186382830142975, 0.037015628069639206, -0.05406724661588669, -0.03757932037115097, -0.001782081788405776, -0.02820797637104988, -0.06256956607103348, -0.014620703645050526, -0.007480633445084095, 0.03260006010532379, -0.014655934646725655, 0.05735543742775917, 0.024778863415122032, -0.015477982349693775, -0.046034667640924454, 0.06346207857131958, 0.012917891144752502, 0.0038988543674349785, -0.04514215886592865, -0.009811725467443466, 0.026963161304593086, -0.06247561797499657, -0.034784357994794846, 0.012988352216780186, 0.005672128405421972, 0.03384487330913544, 0.027315467596054077, -0.00554294977337122, -0.013810399919748306, 0.06933384388685226, 0.00429519871249795, -0.011361872777342796, 0.008449475280940533, -0.014280141331255436, -0.0034144334495067596, -0.0032441522926092148, -0.019541246816515923, 0.027456389740109444, 0.020304575562477112, -0.0533156581223011, 0.024191686883568764, 0.008960318751633167, -0.034173693507909775, -0.02905351109802723, -0.005854153539985418, -0.01943555474281311, 0.050168391317129135, -0.051107876002788544, 0.07600416988134384, -0.059892039746046066, 0.0008220475865527987, 0.027010135352611542, 0.01319973636418581, 0.013246710412204266, -0.021713800728321075, -0.02329917810857296, 0.02992253378033638, -0.0067114317789673805, 0.04462544247508049, 0.02253584749996662, -0.03774372860789299, 0.01754484511911869, 0.010997822508215904, 0.008455347269773483, -0.029264895245432854, 0.04246463254094124, 0.020844778046011925, -0.013610759750008583, 0.0009226016700267792, -0.0036669194232672453, 0.02354579232633114, 0.002831660443916917, 0.031167348846793175, 0.0584828145802021, -0.006329766474664211, 0.0001690885837888345, -0.026422958821058273, -0.012189791537821293, -0.008302681148052216, -0.030368788167834282, -0.0022503554355353117, 0.00586883258074522, -0.01813202165067196, -0.002329624257981777, -0.024896299466490746, -0.026869213208556175, -0.05806005001068115, -0.029006537050008774, -0.013305427506566048, -0.01908324845135212, -0.005020362325012684, -0.04032730683684349, 0.039340849965810776, 0.007938630878925323, -0.016722796484827995, -0.00677014933899045, 0.011420589871704578, -0.03579430282115936, -0.07506468892097473, -0.028677718713879585, -0.017568331211805344, 0.035301074385643005, -0.018249457702040672, -0.018860120326280594, -0.07116583734750748, -0.048195477575063705, 0.0058336020447313786, -0.014256654307246208, -0.011937305331230164, 0.02123231627047062, -0.003314613364636898, 0.002928544534370303, -0.03302282840013504, -0.010093570686876774, 0.02569486014544964, -0.04875916615128517, 0.021044418215751648, -0.015278342179954052, 0.025835782289505005, -0.004867696203291416, -0.007380813360214233, 0.007533479016274214, -0.03513666242361069, 0.024708403274416924, 0.06374391913414001, 0.016863718628883362, 0.020680369809269905, -0.02252410538494587, -0.0076215555891394615, -0.01581854559481144, -0.016018185764551163, 0.03823695704340935, 0.05820097029209137, -0.035301074385643005, 0.020245857536792755, -0.010240364819765091, -0.048618245869874954, -0.02286466769874096, 0.027620799839496613, -0.01952950283885002, -0.0197761170566082, -0.008437731303274632, -0.04800758138298988, -0.0244970191270113, 0.024379583075642586, -0.010070083662867546, -0.01770925335586071, 0.006517663132399321, -0.027409415692090988, -0.026070652529597282, 0.04356852173805237, 0.02846633456647396, -0.024473531171679497, -0.05397329851984978, -0.024144712835550308, 0.01822596974670887, 0.02872469276189804, 0.004817786160856485, -0.04420267418026924, -0.0018129085656255484, 0.01745089702308178, -0.01634700410068035, 0.002781750401481986, 0.008273322135210037, 0.05796610191464424, 0.009747136384248734, 0.009359599091112614, -0.03560640662908554, 0.07323269546031952, -0.046903688460588455, 0.03447902575135231, -0.01139710284769535, 0.009007292799651623, -0.04377990588545799, 0.06163008511066437, 0.015090445056557655, -0.020504215732216835, 0.03656937554478645, -0.011714178137481213, -0.005730846431106329, -0.03457297384738922, 0.004726773593574762, 0.027010135352611542, -0.026023678481578827, -0.03896505758166313, -0.0017908894224092364, -0.0219134408980608, 0.022665027529001236, 0.0020668625365942717, -0.05665082484483719, -0.008414244279265404, 0.017039872705936432, -0.015031727962195873, -0.05791912600398064, -0.010193390771746635, 0.03673378378152847, -0.009946775622665882, 0.002874230733141303, 0.0005002013058401644, -0.026329010725021362, -0.033492568880319595, 0.009717777371406555, 0.04408523812890053, 0.00028111092979088426, -0.031073398888111115, 0.025671372190117836, 0.05458396300673485, -0.019459040835499763, 0.006922815460711718, -0.02199564501643181, 0.024543993175029755, -0.0010884790681302547, -0.011614358052611351, 0.0223596952855587, -0.05030931532382965, -0.016300030052661896, -0.02545998804271221, 0.03938782587647438, -0.009676674380898476, -0.03018089011311531, -0.05683872103691101, 0.03962269425392151, -0.019811347126960754, 0.05909347906708717, -0.004183635115623474, -0.0002801934606395662, -0.008519936352968216, -0.00670555979013443, 0.03828393295407295, -0.05289289355278015, -0.02157287858426571, 0.02459096722304821, -0.03499574214220047, 0.018202483654022217, 0.03729747608304024, -0.018965812399983406, 0.06905199587345123, 0.0013336254050955176, 0.05449001118540764, -0.03910597786307335, 0.03981059044599533, -0.01139710284769535, 0.04807804152369499, 0.07182347774505615, -0.05477185919880867, -0.021279290318489075, -0.04171304404735565, 0.006130126304924488, 0.008713704533874989, -0.019470784813165665, 0.02389809861779213, -0.05293986573815346, 0.0012367413146421313, 0.01260081585496664, -0.05425514280796051, 0.0006121319020166993, 0.06172403320670128, 0.016617104411125183, 0.005446065217256546, 0.0270805973559618, -0.02416819892823696, -0.009911545552313328, -0.03231821581721306, 0.013528554700314999, 0.019905295222997665, 0.040961459279060364, -0.012436405755579472, 0.006505919620394707, -0.03396230936050415, -0.041924428194761276, -0.026375984773039818, -0.049322858452796936, 0.04091448336839676, -0.013328914530575275, 0.011549768969416618, 0.01539577730000019, 0.03318723663687706, -0.0249432735145092, 0.04403826594352722, 0.08572782576084137, 0.006952174007892609, 0.005451937206089497, -0.02975812368094921, 0.018085047602653503, -0.019212426617741585, -0.003910597879439592, 0.04514215886592865, -0.012964865192770958, 0.02520163170993328, 0.022653283551335335, 0.012976609170436859, 0.01009944174438715, -0.03978710249066353, -0.0014378493651747704, 0.014315372332930565, 0.03043924830853939, 8.234238339355215e-05, -0.021948670968413353, 0.02053944580256939, 0.003361587645485997, 0.025037221610546112, 0.06778369843959808, -0.048101529479026794, -0.023956816643476486, 0.0024690786376595497, 0.00800322089344263, -0.009747136384248734, -0.01410398818552494, 0.014655934646725655, -0.020187141373753548, -0.024403071030974388, 0.02305256389081478, -0.008302681148052216, 0.06571683287620544, 0.011954921297729015, -0.06712605804204941, -0.011185719631612301, -0.042676012963056564, -0.001760062645189464, 0.02597670443356037, 0.039669670164585114, -0.02028108946979046, 0.022148311138153076, -0.022113081067800522, 0.03079155460000038, -0.04262904077768326, -0.01061615813523531, 0.0053051430732011795, 0.026634342968463898, 0.02468491531908512, 0.0223596952855587, -0.03490179404616356, 0.01591249369084835, -0.006734918802976608, 0.007709632162004709, -0.03654588758945465, 0.02174903079867363, -0.0352540984749794, -0.04403826594352722, -0.018437353894114494, -0.0010583862895146012, 0.031002938747406006, -0.03772024065256119, -0.05510067567229271, 0.02517814375460148, -0.0627574622631073, -0.01599469780921936, -0.0005306610837578773, 0.03506620228290558, -0.0006495644338428974, -0.0305331964045763, -0.052564073354005814, -0.023616254329681396, -0.03793162479996681, -0.02459096722304821, -0.040115922689437866, 0.016652336344122887, -0.01692243665456772, 0.03548897057771683, 0.04246463254094124, 0.00894857570528984, -0.03802557289600372, -0.0550537034869194, 0.05552344396710396, 0.00586883258074522, -0.00203163200058043, -0.028771666809916496, -0.0001979887019842863, -0.013387632556259632, -0.018507814034819603, -0.01822596974670887, -0.03835439309477806, 0.03384487330913544, -0.04659835621714592, 0.022911641746759415, 0.014855574816465378, -3.8235306419664994e-05, 0.03079155460000038, 0.020786061882972717, -0.023240460082888603, 0.010111185722053051, 0.043380625545978546, 0.028654230758547783, 0.031519655138254166, -0.0036375606432557106, -0.053503554314374924, -0.0015912492526695132, -0.05683872103691101, -0.012495123781263828, -0.000793422746937722, 0.07342059165239334, 0.010692490264773369, 0.04340411350131035, -0.03671029582619667, -0.010504594072699547, -0.007339710835367441, -0.017298230901360512, 0.020656881853938103, -0.055335547775030136, -0.04789014533162117, 0.08135922998189926, 0.002341367769986391, 0.05683872103691101, 0.017944125458598137, -0.049745623022317886, 0.0004238683031871915, -0.060831524431705475, -0.03154313936829567, 0.004330429248511791, -0.010651388205587864, 0.009118856862187386, -0.02407425083220005, -0.037790704518556595, -0.0002324853412574157, 0.035395022481679916, 0.02115011028945446, 0.05899953097105026, 0.016452696174383163, -0.019329862669110298, 0.015865519642829895, 0.022124825045466423, 0.00435978826135397, 4.0276663639815524e-05, -0.015160907059907913, -0.011919690296053886, -0.05909347906708717, 0.008566910400986671, -0.05181248486042023, 0.01268301997333765, -0.00361994537524879, -0.025553938001394272, -0.04547097533941269, 0.014468037523329258, 0.021596364676952362, -0.03283492848277092, -0.0045183259062469006, 0.022935127839446068, -0.004668056033551693, 0.03250611200928688, 0.0035142535343766212, -0.02846633456647396, 0.0034496639855206013, 0.011109386570751667, -0.05124879628419876, -0.016992898657917976, 0.002680462319403887, -0.023839380592107773, -0.0009710437152534723, -0.054114218801259995, 0.02003447525203228, 0.004104366060346365, 0.006065537221729755, 0.006846482399851084, 0.027385929599404335, -0.036921679973602295, 0.011720050126314163, 0.044930774718523026, 0.020175397396087646, -0.026775265112519264, -0.009177573956549168, -0.023099537938833237, -0.016065159812569618, 0.014996496960520744, -0.002885974245145917, -0.02649342082440853, -0.012765225023031235, 0.019376836717128754, -0.004996875301003456, -0.0022797142155468464, -0.018038073554635048, -0.016981154680252075, 0.02176077477633953, 0.024097738787531853, -0.035371534526348114, 0.005266976542770863, 0.007662658113986254, -0.01423316728323698, 0.008701961487531662, 0.003951700404286385, -0.0036669194232672453, -0.03034530021250248, 0.02510768361389637, 0.013187992386519909, 0.023334408178925514, -0.005366796627640724, -0.006776020862162113, -0.043122269213199615, -0.00976475141942501, 0.04232370853424072, -0.038119520992040634, 0.028560282662510872, 0.011802255176007748, -0.0005508452886715531, -0.04462544247508049, -0.013023583218455315, 0.008220476098358631, 0.0025233926717191935, 0.02184297889471054, 0.006623355206102133, -0.01927114464342594, -0.014785113744437695, 0.0034349847119301558, -0.02999299392104149, -0.04345108941197395, -0.04178350418806076, -0.03828393295407295, 0.019306374713778496, -0.019294632598757744, -0.02597670443356037, -0.003288190346211195, 0.013211479410529137, 0.050074443221092224, -0.004949900787323713, 0.044672414660453796, -0.037180040031671524, 0.0343615896999836, -0.014186193235218525, 0.00029101953259669244, -0.02562439814209938, 0.018625250086188316, -0.028912588953971863, -0.007445402443408966, 0.0335395410656929, -0.004412634298205376, -0.017051616683602333, 0.010434133000671864, -0.007057866081595421, -0.021772518754005432, 0.0013769296929240227, -0.009118856862187386, -0.02639947272837162, 0.004245288670063019, 0.013681220822036266, -0.00825570710003376, -0.03311677649617195, 0.016382234171032906, -0.017568331211805344, 0.003417369443923235, 0.005155412945896387, -0.005017426330596209, -0.03722701221704483, -0.010880387388169765, -0.015959467738866806, -0.025835782289505005, 0.03217729181051254, -0.018378635868430138, -0.012225022539496422, -0.0056868079118430614, -0.014197936281561852, -0.0013872053241357207, -0.05632200464606285, 0.04460195451974869, 0.005683871917426586, 0.007322095334529877, -0.012295483611524105, -0.013610759750008583, 0.03170755133032799, -0.021972158923745155, 0.040186382830142975, -0.0270805973559618, 0.01496126689016819, 0.01882489025592804, -0.020938726142048836, 0.003455535741522908, 0.01985832117497921, 0.007216403726488352, 0.010310825891792774, 0.0054255141876637936, 0.009388958103954792, 0.009935032576322556, 0.011320769786834717, -0.012729994021356106, 0.006329766474664211, -0.011966664344072342, 0.02870120480656624, -0.0051231179386377335, -0.0027450518682599068, -0.0438268817961216, 0.03346908092498779, -0.0124598927795887, -0.02649342082440853, -0.0005607539205811918, 0.06327418237924576, -0.019987501204013824, -0.0004902926739305258, 0.012518610805273056, -0.04833639785647392, -0.009952647611498833, 0.006118382792919874, -0.054630935192108154, 0.006265176925808191, -0.011937305331230164, -0.026587368920445442, 0.03708609193563461, -0.009788238443434238, 0.015560186468064785, 0.010669003240764141, -0.028654230758547783, -0.04436708241701126, 0.03877716138958931, -0.007140070665627718, -0.007280993275344372, 0.014785113744437695, -0.03896505758166313, 0.00017330891569145024, 0.04589374363422394, 0.02045724168419838, 0.042511604726314545, 0.002586513990536332, 0.01071010623127222, -0.040280334651470184, 0.013610759750008583, 0.028489820659160614, 0.0010437068995088339, 0.002281182212755084, -0.004600530955940485, -0.03422066941857338, 0.018449097871780396, -0.016288286074995995, -0.02999299392104149, -0.026798751205205917, -0.02245364338159561, 0.004201250616461039, -0.029899045825004578, 0.03079155460000038, 0.011408846825361252, 0.004729709587991238, -0.020328063517808914, -0.006364997010678053, -0.01891883835196495, -0.02150241658091545, -0.019658681005239487, -0.011831614188849926, 0.014667677693068981, 0.009553367272019386, -0.013963066041469574, -0.04922890663146973, 0.029617201536893845, -0.04753783717751503, 0.003564163576811552, 0.007275121286511421, -0.0275033637881279, -0.011314897798001766, 0.0270805973559618, -0.02905351109802723, 1.2271078958292492e-05, 0.009271522983908653, -0.006124254781752825, 0.025342553853988647, -0.013141018338501453, 0.011127001605927944, 0.01470290869474411, -0.04605815187096596, -0.021197084337472916, 0.013822142966091633, -0.01951775886118412, -0.0003717563522513956, 0.015560186468064785, 0.008044322952628136, -0.029217921197414398, 0.02475537732243538, 0.0027523916214704514, -0.03506620228290558, 0.05956321954727173, -0.04293437302112579, -0.00529046356678009, -0.02098570205271244, 0.007509991992264986, 0.007674401625990868, -0.010028980672359467, 0.010287338867783546, -0.018543045967817307, 0.012412918731570244, 0.035042714327573776, 0.0025747704785317183, -0.02115011028945446, -0.007827067747712135, -0.007374941371381283, -0.004392082802951336, 0.017591819167137146, -0.006764277350157499, -0.035465482622385025, -0.0593283511698246, 0.006658585742115974, 0.004888247232884169, -0.0012360073160380125, -0.04403826594352722, 0.0019215362844988704, 0.03757932037115097, 0.005628090351819992, 0.010780567303299904, -0.01022862084209919, -0.015231368131935596, 0.006247561890631914, -0.0073044802993535995, -0.027902644127607346, -0.033750925213098526, -0.02201913297176361, -0.023440100252628326, 0.0318249873816967, 0.014561986550688744, -0.023745432496070862, -0.004656312521547079, 0.04443754628300667, 0.0075276074931025505, -0.010939105413854122, 0.009876314550638199, -0.027057109400629997, 0.0015574865974485874, -0.026634342968463898, -0.019130222499370575, -0.03252959996461868, 0.021514160558581352, -0.059704143553972244, 0.027832183986902237, -0.002651103539392352, -0.013939579017460346, 0.0031590114813297987, 0.008989677764475346, 0.002863955218344927, 0.0455884113907814, 0.05406724661588669, -0.04540051519870758, -0.002799365669488907, -0.0008470026077702641, -0.001900985138490796, -0.019623450934886932, 0.011209206655621529, 0.02759731188416481, 0.053268685936927795, -0.015971209853887558, 0.018413865938782692, -0.04265252873301506, 0.00872544851154089, 0.01071010623127222, -0.00928913801908493, 0.0011229757219552994, 0.018002843484282494, 0.02468491531908512, -0.003141396213322878, 0.02210133709013462, 0.0030562556348741055, 0.008508192375302315, 0.024097738787531853, -0.015372290275990963, -0.04377990588545799, 0.033586516976356506, 0.04488379880785942, 0.02071559987962246, 0.023968558758497238, -0.01684023253619671, 0.005951037630438805, -0.010393030941486359, 0.027926132082939148, 0.03234170004725456, 0.02173728682100773, 0.04671579226851463, -0.012048869393765926, -0.01376342587172985, -0.03903551772236824, 0.0038606878370046616, 0.043638985604047775, -0.00037579319905489683, 0.013211479410529137, -0.0395287461578846, 0.009535752236843109, 0.011584999971091747, -0.023369640111923218, 0.0009115920984186232, -0.001906856894493103, 0.05082602798938751, 0.0026378920301795006, 0.04187745228409767, 0.013340658508241177, -0.006024434696882963, -0.02543650195002556, -0.0011104982113465667, 0.030321814119815826, -0.00404271250590682, -0.013728194870054722, -0.013563785701990128, -0.05829491838812828, 0.041055407375097275, -0.008408372290432453, -0.008772422559559345, -0.01735694892704487, 0.048712193965911865, -0.01770925335586071, 0.030415762215852737, -0.017227768898010254, -0.03255308419466019, 0.0016088646370917559, 0.01234245765954256, 0.04875916615128517, 0.04077356308698654, -0.0176270492374897, -0.001683729700744152, 0.03645193949341774, 0.038119520992040634, -0.024191686883568764, 0.005032105837017298, 0.010498722083866596, -0.020175397396087646, 0.025835782289505005, 0.025929730385541916, -0.006811251398175955, 0.016992898657917976, 0.020938726142048836, 0.026634342968463898, -0.016863718628883362, 0.034432049840688705, 0.013211479410529137, 0.007709632162004709, 0.019917039200663567, 0.01083341334015131, 0.010440004989504814, -0.008608012460172176, -0.003813713788986206, -0.015889005735516548, -0.00535505311563611, -0.0550537034869194, 0.012072356417775154, -0.027926132082939148, -0.00799734890460968, 0.02072734385728836, 0.016652336344122887, 0.016029927879571915, 0.02321697399020195, 0.03187195956707001, -0.04594071954488754, 0.042511604726314545, 0.0054783602245152, -0.007697888650000095, 0.008103040978312492, -0.001782081788405776, -0.03173103928565979, 0.01539577730000019, 0.014585473574697971, -0.01692243665456772, -0.017392178997397423, 0.009694290347397327, -0.02853679470717907, -0.02132626436650753, 0.039763618260622025, 0.04833639785647392, -0.009101241827011108, -0.028231464326381683, 0.05571134015917778, -0.007504120469093323, 0.020480729639530182, 0.036076147109270096, 0.013998296111822128, -0.0029079935047775507, 0.002091817557811737, -0.0011728857643902302, -0.014397576451301575, -0.0003688204742502421, -0.03861274942755699, -0.0032969980966299772, 0.016898950561881065, 0.010762952268123627, -0.03217729181051254, 0.022136567160487175, 0.021197084337472916, 0.027738235890865326, -0.016816744580864906, 0.016793258488178253, -0.007879913784563541, 0.00404271250590682, 0.003716829465702176, 0.016393978148698807, 0.04077356308698654, 0.03248262405395508, 0.010193390771746635, 0.004186571110039949, 0.008425988256931305, 0.03905900567770004, 0.027479877695441246, -0.0033762669190764427, -0.034525997936725616, 0.02150241658091545, 0.014432807452976704, -0.005563500802963972, -0.003799034282565117, -0.0019626386929303408, -0.0022914577275514603, 0.014409320428967476, -0.03896505758166313, 0.006009755190461874, 0.037884652614593506, 0.010886259377002716, 0.002282649977132678, -0.023428356274962425, 0.007709632162004709, 0.030110429972410202, -0.0033821386750787497, 0.006958045996725559, 0.022653283551335335, 0.030908990651369095, -0.004483095370233059, -0.014338859356939793, 0.055852264165878296, -0.0023765983060002327, -0.0197878610342741, 0.022465387359261513, 0.01001136563718319, -0.0017703382764011621, 0.031190834939479828, -0.024191686883568764, 0.026094140484929085, -0.009594470262527466, 0.03311677649617195, 0.006417843047529459, 0.017955869436264038, 0.044226162135601044, 0.010651388205587864, 0.04058566316962242, -0.02743290364742279, -0.009177573956549168, 0.014280141331255436, -0.016112133860588074, -0.0005835070041939616, 0.01856653206050396, 0.02355753630399704, -0.001884837751276791, 0.03104991279542446, 0.028748178854584694, -0.026516906917095184, 0.0008169098291546106, 0.02131452038884163, -0.021690312772989273, -0.04885311424732208, 0.0016235440270975232, -0.019564732909202576, -0.012401175685226917, 0.007733119186013937, 0.002147599356248975, -0.004500710871070623, 0.031590115278959274, 0.017169050872325897, -0.005158348940312862, -0.005046785343438387, 0.017955869436264038, 0.028842126950621605, 0.0006583720678463578, 0.0447193905711174, 0.020046217367053032, -0.037532344460487366, 0.00270688533782959, 0.033563029021024704, 0.033727437257766724, 0.03398579731583595, 0.020339807495474815, -0.047420404851436615, 0.00043964869109913707, 0.05890558287501335, -0.013704707846045494, -0.019141966477036476, -0.025084195658564568, -0.007286864798516035, -0.015947723761200905, 0.013141018338501453, 0.011285539716482162, 0.015078702010214329, -0.00036111377994529903, -0.012225022539496422, -0.001989061711356044, 0.025483475998044014, -0.01284743007272482, 0.00635912548750639, 0.0008844351395964622, -0.008191117085516453, -0.016640592366456985, 0.0017850176664069295, 0.009717777371406555, -0.020656881853938103, 0.017145564779639244, -0.013857373967766762, 0.030627144500613213, -0.024614453315734863, 0.02373368851840496, -0.0068699694238603115, -0.04563538730144501, -0.031754523515701294, -0.01530182920396328, 0.004591722972691059, -0.039505258202552795, -0.0032147932797670364, 0.05279894545674324, 0.009224548935890198, -0.021267546340823174, -0.03283492848277092, -0.014973009936511517, -0.024473531171679497, -0.05138972029089928, -0.011209206655621529, 0.012530353851616383, 0.01969391293823719, -0.024356096982955933, -0.017063358798623085, -0.014550242573022842, 0.001054716412909329, -0.010046595707535744, 0.019329862669110298, 0.02468491531908512, -0.016722796484827995, 0.004441992845386267, 0.00500861881300807, 0.00846121832728386, -0.0002556054387241602, 0.006494176108390093, 0.004136661067605019, 0.019811347126960754, 0.007363197859376669, 0.030556684359908104, -0.024050764739513397, 0.05392632260918617, -0.019917039200663567, -0.02252410538494587, 0.00894857570528984, 0.021631596609950066, -0.04168955609202385, 0.0010253576328977942, -0.0004205654258839786, -0.009001421742141247, 0.007785965222865343, 0.012283739633858204, 0.0013739938149228692, 0.018683968111872673, 0.00017670354282017797, -0.014726395718753338, 0.02002273127436638, -0.011414717882871628, 0.005851217545568943, 0.01422142330557108, 0.004894119221717119, -0.009794110432267189, -0.0101053137332201, 0.0015149163082242012, -0.007539351005107164, -0.008302681148052216, -0.019048018380999565, -0.0206451378762722, 0.0064883045852184296, 0.029358843341469765, -0.037602804601192474, -0.010375414974987507, -0.016570130363106728, -0.04133725166320801, -0.00698740454390645, 0.0009593002032488585, 0.007645042613148689, 0.03858926519751549, -0.029170947149395943, -0.019670424982905388, 0.028254950419068336, 0.01755658909678459, 0.03027484007179737, 0.0176153052598238, 0.011297282762825489, -0.03971664234995842, -0.010293210856616497, 0.025060707703232765, 0.05655687674880028, 0.0076861451379954815, -0.030885502696037292, 0.004271711688488722, 0.04927588254213333, -0.0032030497677624226, 0.014127475209534168, -0.014714652672410011, -0.019999243319034576, 0.025953218340873718, -0.03823695704340935, 0.031684063374996185, 0.011449948884546757, -0.0013086703838780522, 0.0051466054283082485, -0.010874515399336815, 0.028419360518455505, -0.0015369354514405131, 0.022394925355911255, 0.0015883133746683598, 0.024285634979605675, -0.03541850671172142, 0.0223479513078928, -0.015125676058232784, 0.024015534669160843, -0.01483208779245615, -0.0113912308588624, 0.0109567204490304, -0.035207126289606094, 0.005754333455115557, -0.005531206261366606, -0.002270906465128064, 0.008202861063182354, -0.017345204949378967, 0.038049060851335526, -0.02907699905335903, 0.002363386796787381, 0.02691618725657463, -0.006723175290971994, 0.01573633961379528, -0.012178048491477966, 0.0069639175198972225, -0.007034379057586193, 0.021373238414525986, -0.007562838029116392, 0.022571079432964325, -0.046997636556625366, -0.002297329483553767, 0.033492568880319595, 0.004274647682905197, 0.03224775195121765, 0.016534900292754173, 0.009471163153648376, -0.009659059345722198, -0.027221519500017166, -0.010075954720377922, 0.007069609593600035, -0.010117057710886002, -0.02562439814209938, 0.02399204671382904, -0.04542400315403938, 0.039763618260622025, -0.017133820801973343, 0.002466142876073718, 0.021713800728321075, -0.02055118978023529, 0.008713704533874989, -0.006059665232896805, 0.021948670968413353, -0.03405625745654106, 0.01780320331454277, -0.028818640857934952, 0.008825268596410751, -0.012694763951003551, 0.024637941271066666, 0.02199564501643181, -0.030157404020428658, 0.0039928024634718895, 0.015935979783535004, 0.0020389717537909746, 0.006599868182092905, -0.0032999340910464525, 0.008666730485856533, 0.01831991784274578, -0.026610855013132095, -0.015560186468064785, -0.018683968111872673, 0.0021813621278852224, 0.014503268525004387, 0.027573825791478157, 0.028607256710529327, 0.021948670968413353, 0.009659059345722198, -0.028677718713879585, 0.010933233425021172, -0.007421915419399738, -0.0197761170566082, -0.03945828601717949, 0.0038166495505720377, -0.023158255964517593, 0.01883663423359394, -0.005660384893417358, -0.03191893547773361, 0.017239512875676155, 0.01961170695722103, -0.0065939961932599545, -0.01199015136808157, -0.026094140484929085, 0.006905199959874153, 0.013164505362510681, -0.009659059345722198, 0.019024530425667763, -0.012776969000697136, -0.002946159802377224, -0.0071459426544606686, -0.009036651812493801, 0.03668681159615517, 0.009929160587489605, 0.005316886585205793, 0.032106831669807434, 0.011444076895713806, -0.02028108946979046, 0.02468491531908512, 0.026939675211906433, -0.01591249369084835, 0.00447428785264492, -0.026892701163887978, 0.016405722126364708, 0.01951775886118412, -0.02630552276968956, 0.018355147913098335, 0.009982006624341011, -0.007827067747712135, 0.02785567007958889, 0.0050820158794522285, -0.027221519500017166, 0.0014158302219584584, -0.015113932080566883, 0.02088000997900963, -0.007128327153623104, -0.004477223381400108, 0.011538024991750717, -0.012835686095058918, -0.010980207473039627, 0.0075921970419585705, 0.012389431707561016, -0.03652239963412285, 0.0006888318457640707, -0.01284743007272482, 0.034690409898757935, -0.01237768866121769, 0.02046898566186428, -0.02304081991314888, 0.010075954720377922, 0.030932476744055748, 0.02614111453294754, 0.0009167298558168113, 0.015889005735516548, 0.04497774690389633, -0.011062412522733212, -0.02639947272837162, 0.01435060240328312, 0.013387632556259632, -0.022383181378245354, 0.014949522912502289, 0.0072516342625021935, 0.012988352216780186, 0.017216024920344353, -0.021443698555231094, 0.013610759750008583, -0.01736869104206562, -0.02339312620460987, -0.006429586559534073, -0.023369640111923218, 0.0034408564679324627, -0.014385833404958248, -0.0006631428841501474, 0.044484518468379974, -0.055241599678993225, -0.02639947272837162, -0.004304006230086088, 0.034784357994794846, 0.023228716105222702, -0.01319973636418581, -0.029429305344820023, 0.0014716120203956962, -0.007075481116771698, -0.015536699444055557, 0.014902548864483833, -0.01839037984609604, 0.029170947149395943, -0.023017333820462227, 0.025389527902007103, -0.02778520993888378, 0.02208959311246872, -0.023357896134257317, -0.02208959311246872, -0.00824983511120081, 0.0438268817961216, 0.004894119221717119, -0.03875367343425751, -0.004853016696870327, -0.010164031758904457, 0.010375414974987507, -0.025765320286154747, -0.02294687181711197, 0.015231368131935596, -0.013234966434538364, -0.007480633445084095, 0.005827730521559715, 0.004697415046393871, 0.00032588315661996603, 0.022406669333577156, 0.023346152156591415, 0.03398579731583595, -0.0028448719531297684, 0.01151453796774149, 0.009347856044769287, 0.00786816980689764, -0.028654230758547783, -0.028348898515105247, 0.0139748090878129, 0.007856426760554314, 0.0088193966075778, 0.0176387932151556, -0.013786912895739079, 0.015019983984529972, 0.004248224664479494, 0.02863074466586113, -0.00622994638979435, 0.005631026346236467, 0.006411971524357796, -0.01319973636418581, 0.016452696174383163, -0.0025630269665271044, 0.008895729668438435, 0.028043566271662712, -0.009383086115121841, 0.0028507437091320753, 0.007386684883385897, 0.020492471754550934, -0.006511791609227657, -0.0219251848757267, -0.0167580284178257, -0.014855574816465378, 0.03154313936829567, 0.016393978148698807, -0.0014327116077765822, 0.0050820158794522285, -0.016969410702586174, -0.005311014596372843, -0.038049060851335526, -0.007985604926943779, -0.005296335089951754, 0.03762629255652428, -0.024144712835550308, -0.006112511269748211, 0.0054255141876637936, -0.006858225911855698, -0.04533005505800247, -0.0010635240469127893, -0.011890331283211708, 0.029429305344820023, 0.0009358131210319698, -0.009829340502619743, 0.03652239963412285, -0.0219251848757267, 0.016570130363106728, -0.035559430718421936, 0.02036329358816147, 0.011602615006268024, -0.014197936281561852, -0.011584999971091747, -0.01143233384937048, -0.025859268382191658, 0.017861919477581978, -0.012424662709236145, 0.0024485276080667973, 0.005249361041933298, 0.010821669362485409, -0.009664931334555149, -0.00013560116349253803, 0.002492565894499421, -0.012765225023031235, 0.02062165178358555, 0.016652336344122887, -0.014890804886817932, 0.01692243665456772, 0.025600912049412727, -0.036921679973602295, 0.00379316252656281, 0.012953121215105057, 0.0017174923559650779, 0.0022503554355353117, 0.035019226372241974, -0.00010532484884606674, -0.0008183777681551874, 0.006089024245738983, -0.01789715141057968, -0.03518363833427429, -0.025835782289505005, -0.034854818135499954, 0.010463492013514042, 0.033727437257766724, -0.016123875975608826, -0.00928913801908493, 0.017685767263174057, 0.01341111958026886, -0.001651434926316142, -0.0037902267649769783, -0.025577424094080925, -0.0005493773496709764, -0.004562364425510168, -0.018672224134206772, 0.0013828015653416514, 0.01709859073162079, -0.0004587319272104651, -0.0070930966176092625, 0.02270025759935379, 0.03389184921979904, 0.006993276532739401, 0.005316886585205793, -0.01987006515264511, -0.0386832132935524, 0.07713155448436737, -0.042769961059093475, 0.011056540533900261, 0.0023560472764074802, -0.017403922975063324, 0.012542097829282284, 0.03518363833427429, 0.00799147691577673, 0.00576020497828722, -0.018096791580319405, -0.04178350418806076, 0.014855574816465378, -0.016534900292754173, 0.01632351614534855, 0.002612937008962035, 0.006165357306599617, -0.022077850997447968, 0.00010046228999271989, 0.01164958905428648, -0.013000096194446087, -0.006505919620394707, -0.009306753054261208, 0.025553938001394272, 0.0011207738425582647, -0.04112586751580238, -0.0008081021369434893, 0.030932476744055748, 0.019964013248682022, 0.004700350575149059, -0.007374941371381283, 0.02656388096511364, -0.01552495639771223, 0.006077280733734369, -0.024473531171679497, 0.03447902575135231, -0.026869213208556175, 0.02870120480656624, 0.017603563144803047, 0.0029476277995854616, 0.010627901181578636, 0.011033053509891033, -0.012729994021356106, -0.011027181521058083, -0.010087698698043823, -0.0022797142155468464, 0.014150962233543396, 0.0015354674542322755, 0.0044919028878211975, -0.019412066787481308, -0.01389260496944189, 0.016229568049311638, -0.016182594001293182, -0.0344085656106472, 0.02778520993888378, -0.006153613328933716, 0.04720902070403099, 0.022841179743409157, -0.051013924181461334, -0.0034672794863581657, -0.05697964131832123, 0.036592863500118256, -0.02973463572561741, 0.012553841806948185, 0.015419264324009418, 0.03945828601717949], [0.02687525749206543, 0.0413212925195694, -0.010512071661651134, -0.001017935574054718, -0.015173029154539108, 0.010488620027899742, -0.009316052310168743, 0.004810459911823273, 0.04544873163104057, 0.022067727521061897, -0.006748128216713667, 0.011086629703640938, 0.02603100799024105, -0.007944148033857346, -0.029079684987664223, 0.04380713775753975, -0.025139857083559036, 0.01794028840959072, -0.005604874808341265, 0.004095193464308977, 0.053797416388988495, 0.053328387439250946, 0.029642516747117043, 0.011837073601782322, -0.02687525749206543, 0.0004444765218067914, 0.0012773661874234676, -0.03151862695813179, 0.04516731575131416, -0.02009781450033188, 0.026617292314767838, -0.010541385971009731, 0.0029578024987131357, 0.019863300025463104, 0.04554253816604614, 0.026359327137470245, -0.01013098657131195, 0.014059089124202728, 0.019499804824590683, -0.046175725758075714, -0.05614255368709564, 0.04800492897629738, -0.004596466198563576, -0.05764343962073326, -0.004936511162668467, 0.04594121128320694, 0.023193392902612686, 0.0018629173282533884, -0.029877031221985817, 0.031190305948257446, -0.016111083328723907, 0.03545845299959183, -0.004021908156573772, -0.0037463544867932796, 0.030299155041575432, 0.014575019478797913, -0.03447349742054939, -0.0195232555270195, 0.017084315419197083, 0.008870475925505161, -0.020109539851546288, 0.025139857083559036, -0.021692506968975067, 0.053703609853982925, -0.002148730680346489, -0.03517703711986542, -0.027414638549089432, 0.018561750650405884, -0.033418186008930206, 0.015536525286734104, 0.01525510847568512, 0.020508212968707085, -0.031659334897994995, -0.042353153228759766, 0.0029226255137473345, 0.0040541538037359715, 0.058628395199775696, -0.0021780449897050858, 0.06191158667206764, 0.027180124074220657, -0.030346058309078217, 0.05708060786128044, -0.021715957671403885, 0.011321143247187138, 0.005874565336853266, -0.010125123895704746, -0.008671139366924763, 0.021903568878769875, -0.027039416134357452, -0.03243323042988777, -0.017049137502908707, 0.027367735281586647, 0.007029544562101364, 0.048591215163469315, 0.0028068344108760357, 0.011151120997965336, -0.002393504371866584, 0.00345321255736053, -0.03161242976784706, 0.06833726167678833, 0.03625579923391342, 0.020906886085867882, -0.008776671253144741, -0.006343592423945665, 0.0466916561126709, -0.05623635649681091, -0.03051021695137024, -0.015184754505753517, 0.004666820168495178, -0.006935739424079657, 0.018256882205605507, -0.010054769925773144, -0.02455357275903225, 0.0734027549624443, 0.011028001084923744, 0.0032861216459423304, 0.00388119975104928, 0.006454986520111561, -0.0012956875143572688, 0.0050860135816037655, 0.010148575529456139, 0.008430763147771358, -0.0004580343374982476, -0.07734257727861404, -0.007545474451035261, 0.05051422491669655, -0.03048676624894142, -0.005223790183663368, 0.010588288307189941, -0.01384802721440792, -0.012581653892993927, -0.0022308104671537876, 0.038272615522146225, -0.003690657438710332, -0.01886661723256111, 0.013894929550588131, 0.03489562124013901, -0.009104989469051361, -0.03123720921576023, 0.0016284036682918668, 0.0168380755931139, -0.04446377605199814, 0.037428367882966995, 0.0005276555893942714, -0.05088944733142853, 0.02696906216442585, 0.01682635024189949, 0.05951954796910286, 0.019042503088712692, 0.025913750752806664, -0.03290225565433502, 0.025796493515372276, 0.012909973040223122, -0.0011234666453674436, 0.0004136966308578849, 0.03562261164188385, -6.119338650023565e-05, 0.020988965407013893, -0.007779987994581461, 0.0037053145933896303, -0.029548712074756622, -0.03243323042988777, 0.009298463352024555, -0.027508443221449852, 0.028587205335497856, -0.03527084365487099, 0.01802236959338188, -0.012001232244074345, -0.038554031401872635, -0.025046050548553467, -0.034919071942567825, 0.029032781720161438, 0.011450125835835934, -0.007662731222808361, -0.04054739698767662, -0.024389412254095078, -0.003028156701475382, -0.012593379244208336, -0.005097738932818174, -0.04544873163104057, -0.011432536877691746, -0.03860093653202057, -0.016017278656363487, -0.03888235241174698, -0.028469949960708618, 0.05074873939156532, 0.02790711633861065, -0.01674426905810833, -0.021504895761609077, 0.003664274699985981, 0.006449123378843069, 0.016521481797099113, -0.022853348404169083, 0.041415099054574966, -0.032034557312726974, -0.013496256433427334, -0.0501859076321125, 0.01889006979763508, 0.05951954796910286, -0.0183155108243227, 0.012511299923062325, -0.018432768061757088, -0.007522023282945156, 0.031659334897994995, -0.010424128733575344, 0.01102213840931654, 0.04383058845996857, 0.047653160989284515, 0.031377919018268585, -0.007305098231881857, -0.001315474626608193, -0.05309387668967247, -0.0849408209323883, 0.040031470358371735, -0.01886661723256111, 0.01619316264986992, 0.04298634082078934, 0.04469829052686691, -0.03466110676527023, -0.011033863760530949, -0.02074272558093071, -0.03079163283109665, 0.04007837176322937, 0.0037727372255176306, -0.05459476262331009, 0.002695440547540784, -0.02277126908302307, 0.016392499208450317, -0.002721823286265135, -0.05553281679749489, -0.030346058309078217, 0.04064120352268219, 0.02910313569009304, -0.024342510849237442, 0.022712640464305878, 0.03433278948068619, 0.010582425631582737, -0.03097924403846264, -0.00751029746606946, 0.01767059788107872, -0.03480181470513344, 0.0010604411363601685, -0.017529889941215515, -0.024319058284163475, -0.03355889394879341, -0.004713722970336676, -0.0008435160270892084, -0.007914833724498749, 0.06472574919462204, 0.04948236793279648, -0.004877882543951273, -0.005499343387782574, 0.027742957696318626, -0.040594302117824554, 0.015137852169573307, 0.0226071085780859, 0.03264429047703743, -0.016873251646757126, 0.01618143729865551, -0.02549162693321705, -0.008260740898549557, -0.006965053267776966, -0.04237660393118858, -0.0031893847044557333, -0.08189214020967484, -0.01428187731653452, 0.09230455011129379, -0.060785919427871704, -0.026242069900035858, 0.01860865205526352, -0.02481153793632984, 0.03932792693376541, 0.03897615894675255, -0.02297060564160347, -0.006818482652306557, -0.026617292314767838, 0.003722903085872531, -0.03217526525259018, -0.005736788734793663, -0.0041420962661504745, -0.031284112483263016, -0.010893155820667744, 0.03524739295244217, 0.015747586265206337, -0.010840390808880329, -0.02530401572585106, 0.026429681107401848, 0.0003246547421440482, 0.011614285409450531, 0.05905051901936531, 0.058628395199775696, -0.008424900472164154, -0.018467944115400314, 0.012992052361369133, -0.004874951206147671, 0.0008361875079572201, -0.044205810874700546, 0.0006518744630739093, -0.01293342374265194, -0.0520620159804821, 0.006079764571040869, 0.0351535864174366, -0.0007427484961226583, 0.026429681107401848, -0.038460228592157364, -0.007369589526206255, 0.027273930609226227, 0.02790711633861065, -0.03834297135472298, 0.000306883011944592, -0.01889006979763508, 0.03813190758228302, -0.0030545394401997328, -0.03224561735987663, -0.02788366563618183, -0.015055771917104721, -0.05618945509195328, 0.022267064079642296, 0.02223188802599907, -0.004400060977786779, 0.015595152974128723, 0.01273408718407154, 0.03114340454339981, -0.010054769925773144, 0.019359096884727478, 0.01260510552674532, 0.000713067885953933, 0.04800492897629738, -0.035200487822294235, 0.031659334897994995, -0.03442659229040146, 0.004772351589053869, 0.015595152974128723, -0.027039416134357452, -0.015278560109436512, -0.03618544712662697, -0.0012685719411820173, 0.023791402578353882, -0.057502731680870056, -0.01748298853635788, 0.031565528362989426, -0.003485458204522729, 0.007469257805496454, 0.02372104860842228, 0.013250017538666725, 0.028610657900571823, 0.022267064079642296, 0.06209919601678848, -0.02546817436814308, 0.00887633953243494, 0.033254027366638184, 0.00799691304564476, 0.009755765087902546, -0.01813962496817112, -0.06571070849895477, -0.013496256433427334, -0.018925245851278305, 0.02111794799566269, 0.006759854033589363, 0.046715106815099716, 0.03013499639928341, -0.001017935574054718, 0.031471721827983856, 0.0732620432972908, -0.0011000152444466949, 0.01431705430150032, -0.009052224457263947, -0.02558543160557747, 0.038905803114175797, -0.027954019606113434, 0.07087000459432602, 0.03883545100688934, -0.021364187821745872, -0.044299617409706116, 0.008489391766488552, 0.006120804697275162, -0.0016694435616955161, 0.022091180086135864, 0.015829667448997498, 0.008512843400239944, -0.004121576435863972, -0.01040654070675373, 0.026453131809830666, 0.03487217053771019, 0.08414347469806671, 0.06388150155544281, -0.03562261164188385, 0.0012839619303122163, -0.019405998289585114, 0.036584120243787766, -0.054454054683446884, -0.012030546553432941, 0.019757770001888275, 0.0033740641083568335, -0.0025283496361225843, -0.014563293196260929, 0.038999609649181366, 0.046996522694826126, -0.011872250586748123, -0.04064120352268219, -0.015677232295274734, -0.02436596155166626, -0.017647147178649902, -0.05375051498413086, 0.04891953244805336, 0.014774356037378311, -0.009181207045912743, -0.011678776703774929, 0.026429681107401848, -0.023392729461193085, 0.0597071573138237, 0.02574959211051464, 0.033981017768383026, -0.019019052386283875, 0.0007636348600499332, 0.023111313581466675, 0.013707319274544716, 0.045073509216308594, 0.002339272992685437, -0.024436315521597862, 0.028305789455771446, -0.018714183941483498, -0.03794429823756218, 0.053609807044267654, -0.024319058284163475, -0.009087401442229748, 0.01171395368874073, 0.02231396734714508, 0.034450046718120575, -0.08273639529943466, -0.024037642404437065, -0.003632029052823782, -0.0033711327705532312, 0.019183211028575897, -0.021821489557623863, -0.013355548493564129, 0.01645112782716751, -0.03543500229716301, -0.03824916481971741, -0.026851804926991463, -0.033723052591085434, -0.016849800944328308, -0.003250944660976529, 0.028211984783411026, -0.03255048394203186, 0.012265060096979141, -0.01941772550344467, -0.012440945953130722, 0.019382547587156296, -0.023287199437618256, 0.0018819714896380901, -0.048685021698474884, -0.037803590297698975, 0.011455988511443138, -0.05074873939156532, 0.01432877965271473, -0.017225023359060287, -0.040781911462545395, 0.029548712074756622, -0.02567923814058304, 0.036865536123514175, 0.05421954020857811, 0.039937663823366165, 0.034450046718120575, 0.0399845652282238, 0.08752047270536423, 0.01525510847568512, -0.0022278791293501854, 0.011866386979818344, -0.05736202374100685, 0.013894929550588131, -0.02212635613977909, 0.01237059198319912, -0.004643369000405073, 0.01740090735256672, -0.03217526525259018, 0.024131447076797485, -0.009984415955841541, -0.02474118396639824, 0.0013279331615194678, 0.014950240962207317, 0.023920385167002678, -0.04512041434645653, -0.016568385064601898, 0.05173369497060776, 0.02844649739563465, 0.03215181082487106, 0.021047594025731087, -0.0070529961958527565, -0.02605445869266987, -0.08967799693346024, 0.002978322561830282, -0.008794259279966354, -0.01060587726533413, -0.016720818355679512, -0.0558142326772213, -0.0023876414634287357, -0.006818482652306557, 0.041532356292009354, -0.01520820613950491, 0.022841623052954674, 0.0006984107894822955, 0.02334582805633545, -0.009017047472298145, 0.05670538544654846, 0.013027229346334934, -0.05318767949938774, 0.010119261220097542, 0.027789859101176262, -0.03449694812297821, -0.03489562124013901, 0.006918150931596756, -0.0017793718725442886, 0.00865355134010315, -0.03069782815873623, -0.0466916561126709, 0.001879040035419166, 0.02947835810482502, -0.049529269337654114, -0.024319058284163475, -0.001253914786502719, -0.021164851263165474, -0.01674426905810833, -0.021915294229984283, -0.02342790737748146, 0.009667822159826756, 0.012100900523364544, -0.05450095608830452, -0.017354005947709084, 0.007123350165784359, -0.019323918968439102, -0.06106733903288841, -0.011614285409450531, 0.00897600781172514, 0.02509295381605625, 1.9666849766508676e-06, 0.008571471087634563, 0.023791402578353882, -0.005088944919407368, -0.01666218973696232, 0.02297060564160347, -0.027789859101176262, 0.0061090788803994656, -0.01822170615196228, 0.013496256433427334, 0.004614054691046476, 0.0446748360991478, -0.020238522440195084, 0.013273469172418118, -0.008360409177839756, 0.03290225565433502, -0.031471721827983856, 0.011045590043067932, 0.002358327154070139, 0.008307644166052341, -0.006566380150616169, 0.026171715930104256, -0.029689420014619827, 0.019933653995394707, -0.020801354199647903, -0.0005448776646517217, 0.0035939207300543785, -0.013472805730998516, 0.004414718132466078, 0.00888806488364935, 0.05088944733142853, -0.007914833724498749, -0.019675688818097115, 0.023838305845856667, -0.020203344523906708, -0.014481213875114918, 0.018374139443039894, 0.017799580469727516, -0.03133101388812065, 0.024881891906261444, 0.024319058284163475, 0.012452671304345131, -0.05534520745277405, -0.017623696476221085, 0.026476584374904633, 0.020414408296346664, 0.03604473918676376, 0.02436596155166626, -0.007088173180818558, -0.029501808807253838, 0.03294915705919266, 0.0039808680303394794, -0.05107706040143967, -0.0011974850203841925, -0.00841903779655695, 0.02091861143708229, -0.03060402348637581, -0.026992512866854668, -0.034637656062841415, -0.023392729461193085, 0.053703609853982925, -0.01408254075795412, 0.013906655833125114, -0.0453549288213253, 0.022618835791945457, -0.021258655935525894, 0.014340505935251713, -0.013097583316266537, 0.00394862238317728, -0.01674426905810833, -0.031284112483263016, -0.011432536877691746, -0.05365670844912529, 0.007932421751320362, 0.02650003507733345, 0.028399594128131866, 0.006982641760259867, 0.026382777839899063, -0.035012878477573395, -0.0034063097555190325, 0.00037632102612406015, -0.046081919223070145, -0.030439862981438637, -0.03245668113231659, -0.0218683909624815, -0.0336761511862278, -0.007973461411893368, 0.010089946910738945, -0.004004319664090872, -0.011438400484621525, 0.019359096884727478, 0.021153125911951065, -0.03393411636352539, -0.005408469587564468, -0.03032260574400425, -0.00831936951726675, 0.010658642277121544, -0.005297075491398573, -0.007111624348908663, -0.0394451841711998, -0.004121576435863972, -0.00015564006753265858, 0.019605334848165512, 0.0018687801202759147, 0.03726420924067497, 0.032878804951906204, -0.008694591000676155, -0.010998686775565147, -0.05168679356575012, 0.04380713775753975, 0.0013008175883442163, 0.03740491718053818, 0.015782764181494713, 0.021047594025731087, 0.021633878350257874, 0.01718984544277191, -0.01718984544277191, 0.029314197599887848, -0.034168630838394165, 0.0045290435664355755, -0.04901333898305893, 0.0028669284656643867, 0.024975696578621864, 0.017905112355947495, 0.04005492106080055, -0.0075689260847866535, 0.007545474451035261, 0.0032040418591350317, -0.023732773959636688, -0.028962427750229836, 0.022349145263433456, 0.022618835791945457, 0.005833525210618973, 0.005804211366921663, -0.0173071026802063, -0.03201110288500786, -0.02464737743139267, -0.013414177112281322, -0.020953789353370667, -0.021891843527555466, 0.027766408398747444, -0.038905803114175797, 0.005552109330892563, -0.006959190592169762, 0.058346979320049286, -0.02298233099281788, -0.010611739940941334, -0.04120403528213501, 0.016486305743455887, -0.024600474163889885, -0.018186528235673904, 0.024577023461461067, -0.009755765087902546, 0.002030008239671588, -0.005689885932952166, 0.02204427681863308, 0.045237671583890915, -0.022853348404169083, 0.01381285022944212, -0.023779677227139473, 0.009280875325202942, -0.004268147051334381, -0.016591835767030716, -0.02872791327536106, 0.04406510293483734, 0.0029504739213734865, 0.013132760301232338, -0.007639280054718256, -0.08564436435699463, -0.040969524532556534, -0.0015961581375449896, 0.010752447880804539, 0.017037412151694298, -0.002358327154070139, 0.0065370663069188595, -0.02565578557550907, -0.0033271615393459797, -0.033160220831632614, -0.017131216824054718, -0.05168679356575012, -0.0218683909624815, -0.01241749431937933, -0.01579448953270912, 0.027133220806717873, 0.0074399434961378574, -0.05637706443667412, 0.02586684748530388, 0.0020710481330752373, -0.007791713811457157, 0.02828233875334263, -0.02605445869266987, -0.005789554212242365, -0.004813391249626875, -0.031096501275897026, 0.03144827112555504, 0.009896473027765751, -0.0007053728913888335, 0.025819946080446243, 0.004197793081402779, -0.0038313656114041805, 0.02633587457239628, -0.05107706040143967, -0.01092247013002634, 0.03365270048379898, -0.01607590541243553, -0.011420811526477337, -0.0157006848603487, 0.00823142658919096, -0.031659334897994995, 0.004030702169984579, 0.013871478848159313, -0.00911085307598114, 0.019675688818097115, -0.05506378784775734, -0.0012421890860423446, -0.023076137527823448, 0.007299235090613365, -0.00309264799579978, -0.018925245851278305, 0.002723288955166936, -0.017682325094938278, 0.013085857965052128, 0.02315821684896946, 0.023850031197071075, 0.00630255276337266, -0.0011623079190030694, 0.0006548059172928333, 0.0030164308845996857, 0.04340846464037895, -0.00041333018452860415, -0.01969914138317108, -0.04014872387051582, 0.003840159857645631, 0.012253334745764732, -0.03332437947392464, -0.018280334770679474, -0.0037199717480689287, 0.02528056502342224, 0.002090102294459939, 0.0005500076222233474, 0.02455357275903225, 0.015090948902070522, -0.04000801593065262, -0.028962427750229836, -0.02975977398455143, -0.0001466625981265679, 0.015278560109436512, -0.026359327137470245, 0.04324430599808693, -0.008120032958686352, -0.015348914079368114, 0.02650003507733345, 0.03041641227900982, -0.008952556177973747, 7.38809394533746e-05, 0.00962678249925375, -0.03911686688661575, -0.008389723487198353, -0.019476352259516716, -0.011702227406203747, -0.03095579333603382, 0.0073226867243647575, -0.04807528480887413, -0.003585126483812928, 0.010869704186916351, -0.023228570818901062, 0.030088093131780624, 0.0033388871233910322, 0.021364187821745872, 0.06284964084625244, 5.6796259741531685e-05, -0.05647087097167969, -0.012347140349447727, 0.004230038728564978, -0.030252251774072647, -0.03719385340809822, 0.026101361960172653, 0.0163690485060215, 0.05187440663576126, 0.0195232555270195, -0.03201110288500786, -0.019863300025463104, 0.025890300050377846, -0.012593379244208336, -0.026945611461997032, 0.02279471978545189, -0.0030545394401997328, 0.015536525286734104, -0.010992824099957943, 0.04345536604523659, -0.004197793081402779, -0.032315973192453384, 0.005006865132600069, 0.0003634960448835045, -0.017799580469727516, 0.018385864794254303, -0.020988965407013893, -0.0020402681548148394, 0.0008339889463968575, -0.015325462445616722, 0.0346142053604126, 0.002749671693891287, 0.026992512866854668, 0.009744039736688137, 0.027508443221449852, 0.025960654020309448, -0.028399594128131866, 0.012898246757686138, 0.01600555144250393, -0.03721730411052704, 0.007264058105647564, -0.015161302872002125, 0.010066495276987553, -0.03494252264499664, 0.057971756905317307, 0.02835269272327423, 0.011397359892725945, -0.010283420793712139, 0.008196249604225159, -0.0057104057632386684, -0.001289091887883842, -0.007170252967625856, -0.0031131678260862827, -0.015571702271699905, -0.002309958916157484, 0.0003493886033538729, 0.000756306282710284, 0.007088173180818558, 0.008090718649327755, 0.014117717742919922, -0.014164620079100132, 0.0020402681548148394, 0.02621861919760704, -0.008987733162939548, -0.004130370449274778, 0.028892073780298233, 0.02223188802599907, 0.011198023334145546, -0.03691243752837181, -0.03255048394203186, 0.001107343821786344, 0.016498031094670296, 0.017740951851010323, 0.02577304281294346, 0.003954485524445772, 0.005499343387782574, 0.025913750752806664, 0.014692275784909725, 0.004030702169984579, 0.012112626805901527, -0.00019219120440538973, -0.03348853811621666, 0.06463194638490677, 0.026242069900035858, -0.016767721623182297, 0.051921308040618896, 0.04587085545063019, -0.010940059088170528, 0.007844479754567146, -0.008794259279966354, -0.011801895685493946, -0.0012392577482387424, -0.01240576896816492, -0.007269921246916056, 0.021457992494106293, -0.013226565904915333, 0.005584354512393475, -0.030721278861165047, -0.011461851187050343, -0.029736323282122612, 0.020766178146004677, -0.017529889941215515, -0.0017016892088577151, 0.00045583577593788505, -0.0004950435250066221, 0.027649151161313057, 0.0019625856075435877, -0.0001905422832351178, -0.000591413932852447, 0.02277126908302307, -0.00437074713408947, -0.020988965407013893, 0.003154207719489932, 0.016896704211831093, 0.023955563083291054, 0.02267746441066265, 0.041415099054574966, -0.016615288332104683, -0.010564836673438549, -0.02417835034430027, -0.02734428457915783, -0.011608422733843327, 0.003028156701475382, -0.023779677227139473, -0.016755996271967888, 0.0035089096054434776, 0.017811305820941925, 0.0006588366231881082, 0.033066414296627045, 0.020789628848433495, 0.05567352473735809, 0.005080150440335274, 0.011960192583501339, -0.0036173721309751272, -0.023369278758764267, 0.03243323042988777, 0.002755534602329135, -0.023932110518217087, -0.02305268496274948, -0.031753137707710266, -0.007480983156710863, 0.0020739794708788395, 0.009093264117836952, 0.01124492660164833, 0.01115698367357254, 0.007551337592303753, -0.03276154771447182, 0.0024154898710548878, 0.0007907504914328456, 0.005719200242310762, 0.0062908269464969635, 0.07598239928483963, -0.01756506785750389, 0.012980327010154724, -0.0002744541852734983, 0.01747126132249832, 0.028868623077869415, 0.04277527704834938, -0.04193102940917015, 0.03895270451903343, 0.00315127638168633, 0.01572413556277752, -0.03747526928782463, -0.07035407423973083, 0.020215071737766266, 0.013941832818090916, -0.009679548442363739, 0.06538238376379013, 0.03534119576215744, -0.028469949960708618, 0.01147944014519453, -0.0020710481330752373, 0.014528116211295128, -0.0013836300931870937, -0.008430763147771358, -0.00911085307598114, 0.04474519193172455, 0.017740951851010323, -0.008559745736420155, 0.027414638549089432, 0.038929253816604614, -0.015430993400514126, -0.004792871419340372, 0.0223374180495739, 0.011842936277389526, -0.03423898294568062, -0.0018145488575100899, 0.005132915917783976, -0.006783305201679468, -0.016673915088176727, 0.005390881095081568, 0.04204828664660454, 0.02743808925151825, 0.016333870589733124, 0.02121175453066826, 0.027203576639294624, 0.018338961526751518, -0.013414177112281322, 0.05468856915831566, -0.0018438630504533648, 0.015548250637948513, 0.010863841511309147, 0.015782764181494713, 0.016697367653250694, -0.02734428457915783, -0.0057983482256531715, -0.0077506741508841515, -0.006026999093592167, -0.003966210875660181, -0.013836301863193512, -0.04188412427902222, 0.011842936277389526, -0.013273469172418118, -0.010775899514555931, -0.008102444000542164, -0.023826580494642258, 0.0016430608229711652, 0.04657439887523651, 0.03480181470513344, 0.02481153793632984, -0.02994738519191742, 0.02054339088499546, 0.02725047804415226, 0.03079163283109665, 0.04685581475496292, 0.01552479900419712, -0.030533669516444206, 0.006753991357982159, 0.05679918825626373, 0.00028672951157204807, 0.02929074689745903, 0.00043128515244461596, -0.031753137707710266, -0.006607420276850462, -0.008090718649327755, -0.031284112483263016, -0.002370052970945835, -0.04873192310333252, -0.02128210850059986, -0.005423126742243767, 0.00893496721982956, 0.007908971048891544, 0.02305268496274948, 0.0071174874901771545, -0.02094206213951111, -0.015407542698085308, 0.022091180086135864, -0.04995139315724373, 0.0022278791293501854, -0.01087556779384613, -0.03238632529973984, 0.00016718253027647734, -0.021528346464037895, -0.010218929499387741, 0.004139164928346872, 0.025421272963285446, -0.04232970252633095, 0.03604473918676376, -0.004033633507788181, 0.03869474306702614, -0.02586684748530388, -0.03853058069944382, -0.007944148033857346, -0.0017779060872271657, -0.0009417186374776065, -0.010459305718541145, 0.010166163556277752, 0.05708060786128044, 0.032222166657447815, 0.005115327425301075, 0.011379771865904331, 0.0006566380616277456, -0.03632615506649017, -0.011215612292289734, 0.008037952706217766, -0.0004213915963191539, 0.005194475874304771, 0.002216153312474489, -0.021633878350257874, -0.028985878452658653, -0.009239835664629936, -0.007422355003654957, -0.01408254075795412, 0.018925245851278305, 0.0004463086661417037, 0.006970916409045458, -0.0008523103315383196, -0.012335414066910744, 0.03688898682594299, -0.016029004007577896, -0.03170623630285263, 0.02037923038005829, 0.000879425962921232, 0.03229251876473427, -0.006062176078557968, -0.015782764181494713, 0.012001232244074345, -0.03773323446512222, -0.0014481213875114918, 0.04251731187105179, 0.009456760250031948, -0.02715667337179184, 0.016029004007577896, 0.025913750752806664, 0.01859692670404911, 0.007492708973586559, -0.0033828583545982838, 0.017705775797367096, -0.008524568751454353, -0.011977781541645527, 0.0014319985639303923, -0.0029592684004455805, 0.0038958569057285786, 0.020132990553975105, -0.01850312203168869, -0.022196710109710693, -0.0014056158252060413, -0.023662419989705086, -0.02417835034430027, -0.018397590145468712, -0.006625008769333363, -0.0063553182408213615, 0.018397590145468712, 0.013930106535553932, -0.024389412254095078, -0.022442949935793877, -0.03177659213542938, -0.0004833178536500782, -0.021704232320189476, 0.0007236942765302956, 0.0002819659421220422, 0.032198715955019, -0.006965053267776966, 0.01924183964729309, 0.004230038728564978, 0.02994738519191742, 0.01702568680047989, -4.4475134927779436e-05, 0.008143484592437744, -0.030064640566706657, -0.012276786379516125, -0.020801354199647903, 0.05754963308572769, 0.00476941978558898, -0.006191158667206764, 0.004162616096436977, 0.03022880107164383, -0.025139857083559036, 0.021704232320189476, -0.01580621488392353, -0.008307644166052341, 0.007252332754433155, -0.022911977022886276, 0.019746044650673866, 0.0223374180495739, -0.002943145576864481, -0.010236517526209354, -0.0034326924942433834, 0.00352063518948853, 0.007844479754567146, 0.036419957876205444, -0.013930106535553932, -0.0011696364963427186, -0.004757694434374571, 0.019019052386283875, -0.0424000546336174, -0.03754562512040138, -0.014528116211295128, 0.0010912209982052445, -0.02567923814058304, -0.017318828031420708, 0.015219931490719318, 0.00448507210239768, -0.006425672210752964, -0.048685021698474884, 0.0027159603778272867, 0.0192535649985075, -0.029877031221985817, -0.05271865427494049, 0.013296919874846935, 0.03304296359419823, -0.008999458514153957, -0.0012964203488081694, 0.00623219832777977, -0.007181978318840265, -0.004130370449274778, 0.01268718484789133, 0.018913520500063896, 0.016322145238518715, -0.015161302872002125, 0.010201340541243553, -0.016322145238518715, 0.005244310013949871, 0.015606879256665707, -0.01694360561668873, 0.007357863709330559, -0.004118644632399082, -0.01111008133739233, 0.01041826605796814, -0.03806155547499657, -0.01497369259595871, -0.0042828042060136795, 0.011532205156981945, 0.0016606493154540658, -0.039750050753355026, -0.005965439137071371, 0.016873251646757126, -0.011221474967896938, 0.014164620079100132, -0.02481153793632984, -0.012992052361369133, -0.027039416134357452, 0.030064640566706657, -0.0036818631924688816, 0.009937512688338757, -0.013038955628871918, 0.01473917905241251, -0.003028156701475382, -0.04962307587265968, 0.008114170283079147, -0.02474118396639824, 0.00040929947863332927, -0.02781331166625023, -0.02128210850059986, 0.004895471036434174, 0.03660757094621658, -0.033136770129203796, -0.022396046668291092, 0.0029021056834608316, 0.019476352259516716, 0.02603100799024105, -0.004095193464308977, 0.005214995704591274, -0.0059888907708227634, -0.0014195400290191174, -0.012546476908028126, 0.03785049170255661, -0.00211648503318429, -0.014481213875114918, -0.033699601888656616, 0.018432768061757088, -0.025444723665714264, 0.005168092902749777, -0.012898246757686138, -0.03881199657917023, -0.015266834758222103, 0.0175767932087183, 0.007305098231881857, -0.02081308141350746, 0.031471721827983856, 0.008383860811591148, -0.021915294229984283, -0.043666429817676544, 0.023791402578353882, -0.011936741881072521, -0.0014627784257754683, -0.04741864651441574, -0.009222246706485748, 0.029361100867390633, 7.408705641864799e-06, -0.0025356782134622335, 0.01887834258377552, 0.018737634643912315, -0.015935197472572327, 0.004086398985236883, 0.02863410860300064, -0.030815085396170616, -0.03107305057346821, 0.011602559126913548, 0.03386376053094864, 0.008202112279832363, -0.004338501486927271, -0.007932421751320362, 0.012968601658940315, 0.01694360561668873, 0.014844710007309914, -0.0036290977150201797, -0.010013730265200138, -0.034262433648109436, -0.008008639328181744, 0.001966982614248991, 0.014293602667748928, 0.029900481924414635, 0.0075689260847866535, -0.019781220704317093, -0.027555346488952637, 0.011315280571579933, 0.009198795072734356, 0.0036525491159409285, -0.023498261347413063, -0.01194846723228693, 0.022947154939174652, -0.01310930959880352, -0.0018130831886082888, 0.019382547587156296, 0.010359637439250946, -0.007791713811457157, -0.00611494155600667, 0.012710636481642723, -0.03740491718053818, 0.04190757870674133, -0.020414408296346664, -0.021704232320189476, 0.03088543936610222, -0.013777673244476318, 0.0014334642328321934, 0.0008603716851212084, 0.011250789277255535, 0.019593609496951103, 0.011315280571579933, -0.035481903702020645, 0.02047303505241871, -0.01432877965271473, -0.006642597261816263, 0.02696906216442585, 0.018385864794254303, -0.021235205233097076, -0.0009952170075848699, 0.03107305057346821, 0.028305789455771446, -0.042915984988212585, -0.0012297305511310697, 0.02603100799024105, 0.02633587457239628, -0.02445976622402668, -0.006144255865365267, -0.021153125911951065, 0.0028581342194229364, 0.004279872868210077, -0.03405137360095978, 0.019511530175805092, -0.00013713548833038658, 0.04568324610590935, -0.02797747030854225, 0.03255048394203186, -0.04474519193172455, 0.0020197483245283365, -0.02370932325720787, -0.003840159857645631, -0.004288667347282171, 0.012276786379516125, -0.011274240911006927, 0.002783383009955287, -0.002216153312474489, -0.009843708015978336, 0.001637197914533317, -0.0045524947345256805, -0.03332437947392464, -0.00108755670953542, 0.0024741182569414377, 0.02947835810482502, 0.010459305718541145, 0.014668825082480907, -0.00562832597643137, -0.007844479754567146, 0.01240576896816492, 0.009685411117970943, -0.024061093106865883, 0.01144426316022873, 0.01268718484789133, 0.01064105425029993, -0.032128360122442245, -0.014715727418661118, 0.008032090030610561, 0.04408855363726616, 0.010259969159960747, -0.014950240962207317, 0.0559549406170845, 0.027180124074220657, -0.012136077508330345, 0.033699601888656616, -0.0011051453184336424, 0.011502890847623348, -0.030439862981438637, 0.002422818448394537, -0.013226565904915333, -0.043385013937950134, 0.008993595838546753, -0.02837614342570305, 0.011696364730596542, 0.003664274699985981, -0.014680550433695316, -0.01765887252986431, -0.026288973167538643, 0.001698757754638791, -0.0014004858676344156, 0.00984957069158554, 0.014528116211295128, -0.02082480676472187, -0.030275704339146614, -0.010324460454285145, -0.05651777237653732, 0.0018643829971551895, 0.036302704364061356, -0.01260510552674532, -0.018573476001620293, 0.004426443949341774, -0.039187218993902206, 0.004816322587430477, -0.008624237030744553, -0.029830127954483032, -0.04099297523498535, -0.016697367653250694, -0.018174802884459496, 0.03508323058485985, 0.028516851365566254, 0.0036994516849517822, 0.04289253428578377, -0.04256421700119972, 0.018268607556819916, -0.043947845697402954, 3.632784910223563e-06, -0.02286507375538349, -0.020144717767834663, -0.0005184948677197099, -0.0001947561977431178, -0.02231396734714508, 0.009878885000944138, -0.015864843502640724, -0.019206661731004715, -0.003939828369766474, 0.021457992494106293, 0.00984957069158554, -0.019921928644180298, -0.009972690604627132, -0.013824575580656528, 0.012581653892993927, 0.004968756344169378, 0.00345321255736053, 0.01775267906486988, 0.04085226729512215, 0.006296689622104168, -0.008442489430308342, -0.0005078684771433473, -0.0017119491240009665, 0.006408083718270063, 0.027672603726387024, -0.01944117620587349, -0.0049482365138828754, 0.02205600216984749, -0.03939828276634216, -0.00632014125585556, 0.0008120032725855708, 0.009984415955841541, 0.011045590043067932, -0.003846022766083479, -0.016697367653250694, 0.004030702169984579, 0.009087401442229748, 0.01408254075795412, -0.012206432409584522, 0.007727222517132759, -0.02464737743139267, 0.02734428457915783, 0.0058393883518874645, -0.04148545116186142, -0.011954329907894135, -0.018761087208986282, -0.005030316300690174, 0.0005034713540226221, 0.02399073913693428, 0.02156352438032627, -0.009474349208176136, 0.003787394380196929, -0.013203115202486515, -0.02390865981578827, 0.018538298085331917, -0.01403563842177391, -0.026922158896923065, -0.020754452794790268, -0.03097924403846264, 0.021739408373832703, 0.007903107441961765, -0.039585892111063004, 0.03191730007529259, -0.03301951289176941, -0.026007557287812233, 0.0015727067366242409, -0.025984104722738266, -0.022478127852082253, -0.004145027603954077, -0.012511299923062325, -0.023580340668559074, -0.0024975696578621864, 0.0336761511862278, 0.040969524532556534, -0.007961736060678959, 0.030557120218873024, 0.024694280698895454, 0.01626351661980152, -0.029877031221985817, 0.003095579333603382, 0.017166394740343094, 0.0003942759649362415, -0.014633648097515106, 0.023017508909106255, 0.02828233875334263, -0.008671139366924763, 0.03348853811621666, -0.0036789318546652794, 0.03963279724121094, -0.04948236793279648, -0.0003510375099722296, 0.033793408423662186, -0.029525259509682655, 0.0356929674744606, 0.02036750502884388, -0.02605445869266987, 0.0056253946386277676, 0.01147944014519453, 0.03208145871758461, 0.04368988052010536, -0.001996296923607588, -0.005294144153594971, 0.014657098799943924, 0.0027438090182840824, 0.004133301787078381, -0.01552479900419712, 0.006965053267776966, 0.0035880578216165304, 0.0007929490529932082, 0.026195166632533073, 0.0013103446690365672, -0.06055140867829323, 0.023298924788832664, -0.016791172325611115, 0.03505977988243103, -0.008964281529188156, -0.020625470206141472, 0.0020446653943508863, 3.5154134820913896e-05], [0.00916300993412733, 0.04896318539977074, 0.016262436285614967, 0.021022746339440346, -0.019756456837058067, 0.01859569177031517, -0.005818482022732496, 0.050229474902153015, 0.010581722483038902, 0.014445077627897263, -0.028468057513237, -0.006032461300492287, 0.021773140877485275, -0.019756456837058067, -0.010300325229763985, 0.04432012513279915, 0.004179927054792643, -0.0066480184905231, -0.039020467549562454, -0.05168336257338524, 0.063408263027668, -0.00043968376121483743, -0.012651167809963226, 0.007023215293884277, -0.014960972592234612, -0.023907072842121124, 0.03266557306051254, 0.01073414646089077, 0.01173662580549717, -0.013553985394537449, 0.05768651142716408, -0.03353321552276611, 0.03754313290119171, -0.0394660159945488, 0.034518107771873474, -0.023895347490906715, -0.02111654542386532, -0.009133697487413883, 0.030250243842601776, -0.031141335144639015, -0.029406050220131874, 0.03290007263422012, 0.022359386086463928, 0.006841479334980249, 0.023133229464292526, 0.019557133316993713, 0.03306422010064125, -0.01385883241891861, 0.01872466690838337, 0.020741349086165428, 0.005287929903715849, 0.027295568957924843, -0.00797879509627819, -0.011713176034390926, 0.03479950502514839, 0.021011020988225937, -0.048634886741638184, 0.01823222078382969, 0.00645455764606595, -0.013495360501110554, -0.011853874661028385, 0.041013702750205994, -0.005818482022732496, 0.07072459906339645, -0.04084955155849457, -0.03634719178080559, -0.015242370776832104, 0.05008877441287041, -0.030859937891364098, 0.01948678493499756, 0.009790292009711266, 0.04896318539977074, -0.08577936887741089, -0.011461090296506882, 0.0036845500580966473, -0.02008475363254547, 0.039864663034677505, -0.01620381325483322, 0.01832601986825466, -0.02220696210861206, 0.005003601312637329, 0.026169978082180023, 0.013460185378789902, -0.0013608213048428297, -0.0013124560937285423, -0.027553515508770943, -0.007322200573980808, 0.025489933788776398, 0.009714080020785332, 0.026287226006388664, 0.0034559143241494894, -0.017059730365872383, -0.0028300979174673557, 0.055107031017541885, 0.04640715569257736, -0.004077333956956863, 0.008400890976190567, -0.0381762757897377, -0.058108605444431305, 0.06054738536477089, 0.01211182214319706, 0.034518107771873474, -0.006337308790534735, -0.01323741301894188, 0.011531439609825611, -0.07536765933036804, -0.0476265475153923, 0.056373320519924164, 0.0007177837542258203, -0.020272353664040565, -0.03958326578140259, -0.037378981709480286, 0.016051389276981354, 0.07729054242372513, -0.012088372372090816, 0.020670998841524124, 0.005226374603807926, 0.02682657167315483, 0.01884191483259201, 0.0072518507950007915, 0.0030338179785758257, -0.008799538016319275, -0.014808549545705318, -0.09370540827512741, -0.022511808201670647, 0.024927139282226562, -0.020366152748465538, -0.00023724602942820638, -0.03831697627902031, 0.02957019954919815, -0.01455060113221407, 0.0014663453912362456, -0.01055827271193266, -0.04659475386142731, 0.007603597827255726, -0.01612173765897751, 0.00918059702962637, 0.0022262653801590204, -0.01573481597006321, -0.019627483561635017, -0.002163244178518653, 0.025560282170772552, 0.03236072510480881, -0.022183511406183243, -0.04371042922139168, -0.002270233817398548, -0.015910690650343895, 0.05707681551575661, 0.027999062091112137, -0.015652742236852646, -0.04727479815483093, 0.030414391309022903, -0.016930757090449333, -0.003919047769159079, -0.013342936523258686, 0.018912265077233315, 0.01810324564576149, -0.01241666916757822, -0.01809152215719223, 0.028303910046815872, -0.0035878196358680725, -0.02647482603788376, -0.02572443149983883, 0.0024724884424358606, 0.00748634897172451, 0.020166829228401184, -0.04591470956802368, -0.010106864385306835, -0.054966334253549576, -0.0381762757897377, -0.07105289399623871, -0.008524002507328987, -0.026662424206733704, -0.016438310965895653, -0.004349938128143549, 0.018525343388319016, 0.04821278899908066, -0.008283642120659351, -0.030297143384814262, -0.01771632395684719, 0.011115205474197865, 0.026404475793242455, -0.06148537993431091, -0.020436501130461693, -0.04507051780819893, 0.05726441368460655, -0.019650932401418686, 0.04392147809267044, -0.024880239740014076, 0.044226326048374176, -0.013155338354408741, 0.008629526942968369, 0.049010083079338074, 0.030273692682385445, -0.013507084921002388, -0.04005226120352745, -0.043217983096838, -0.035151250660419464, 0.0408964529633522, 0.034893304109573364, 0.005384660325944424, 0.02408294565975666, 0.05576362833380699, 0.03522160276770592, -0.028772905468940735, 0.015664467588067055, 0.020248902961611748, 0.04256138950586319, 0.026263777166604996, 0.05013567581772804, -0.012932565063238144, -0.010868982411921024, -0.04033365845680237, -0.002421191893517971, -0.0012479691067710519, 0.010001339949667454, 0.03768382966518402, 0.046500954777002335, -0.015136846341192722, 0.006730092689394951, 0.022629057988524437, 0.011965260840952396, 0.04117785021662712, -0.02457539178431034, -0.022664232179522514, 0.011889048852026463, 0.01897088810801506, -0.012838765978813171, 0.024669190868735313, -0.012346319854259491, 0.0011483074631541967, 0.021421393379569054, 0.017563901841640472, -0.020518576726317406, 0.001897968235425651, 0.031024087220430374, -0.04155304655432701, -0.043757326900959015, -0.0070642526261508465, 0.05205855891108513, -0.01697765663266182, 0.016133463010191917, -0.035878196358680725, -0.0027729389257729053, 0.012615992687642574, 0.004783759359270334, -0.028749456629157066, 0.01410505548119545, 0.017915647476911545, 0.04235034063458443, 0.023039430379867554, 0.009772704914212227, 0.02459884062409401, -0.03524504974484444, 0.013014639727771282, 0.014433352276682854, -0.01110934279859066, -0.017399752512574196, 0.011941811069846153, -0.03179793059825897, 0.010358949191868305, 0.03698033466935158, -0.02085859887301922, -0.005915212444961071, -0.04664165526628494, -0.009719942696392536, 0.0499480776488781, -0.06223577260971069, -0.04816589131951332, 0.038997020572423935, -0.03020334430038929, 0.010142038576304913, 0.03020334430038929, 0.007175639271736145, -0.03615959361195564, -0.019158488139510155, -0.014749924652278423, -0.010634484700858593, -0.003825248684734106, 0.004089058842509985, -0.022042812779545784, -0.01698938012123108, -0.006958728656172752, -0.024293994531035423, 0.011771799996495247, -0.02570098266005516, 0.04654785618185997, 0.007175639271736145, 0.021409668028354645, 0.05506013333797455, 0.043358683586120605, 0.023027705028653145, -0.019873706623911858, 3.824332907242933e-06, 0.002032804535701871, -0.01117383036762476, -0.03043784201145172, -0.004449599888175726, -0.005496046971529722, -0.01736457832157612, -0.00935647077858448, -0.016250712797045708, -0.020506851375102997, -0.0011812837328761816, -0.052480652928352356, -0.019791632890701294, 0.011730763129889965, 0.01599276438355446, -0.034002210944890976, -0.02619342692196369, -0.022277310490608215, 0.04565676301717758, -0.009467856958508492, -0.015652742236852646, -0.014914073050022125, -0.010388261638581753, -0.025185085833072662, 0.027999062091112137, 0.004487705882638693, 0.04005226120352745, -0.008189843036234379, 0.02994539588689804, 0.030648889020085335, -0.038879770785570145, 0.019017789512872696, 0.03690998628735542, -0.00338556501083076, 0.022664232179522514, -0.01322568766772747, -0.005935730878263712, -0.026263777166604996, -0.022488359361886978, 0.009168872609734535, -0.05407524108886719, -0.02098757214844227, -0.045891258865594864, -0.0022042812779545784, 0.021995913237333298, -0.023660849779844284, -0.010810358449816704, 0.034377407282590866, -0.010593447834253311, -0.005003601312637329, 0.04106060042977333, 0.00037373119266703725, 0.0018202908104285598, 0.049479078501462936, 0.028022512793540955, 0.004716341383755207, 0.014738200232386589, 0.007070114836096764, 0.01198871061205864, -0.013378111645579338, -0.018795015290379524, -0.03646444156765938, -0.03559679910540581, -0.022804930806159973, -0.039372216910123825, -0.02146829292178154, 0.0034295334480702877, -0.01645003631711006, -0.052715152502059937, 0.023015979677438736, 0.06364276260137558, 0.007814645767211914, -0.007785333786159754, -0.03620649129152298, -0.043217983096838, 0.06519044935703278, 0.017188703641295433, 0.017200428992509842, 0.0012083975598216057, -0.030977187678217888, -0.029781246557831764, 0.006050048861652613, -0.007720847148448229, 0.005856588017195463, 0.0199909545481205, -0.04659475386142731, 0.00033049561898224056, 0.017821848392486572, 0.00586245022714138, 0.003156929509714246, 0.02269940823316574, 0.02298080548644066, 0.013659508898854256, -0.004349938128143549, -0.016156913712620735, -0.025138186290860176, 0.009034035727381706, 0.0008068197057582438, -0.03381461277604103, 0.0023830861318856478, -0.013436735607683659, 0.013073263689875603, -0.006120398174971342, 0.02621687762439251, 0.020002679899334908, -0.0354560986161232, 0.0008522536954842508, 0.0004920794162899256, -0.02656862512230873, -0.02959364838898182, -0.03508090227842331, -0.008131218142807484, -0.03259522467851639, 0.02145656757056713, -0.008090181276202202, -0.01922883652150631, -0.051214367151260376, 0.03702723607420921, 0.005267411470413208, 0.03834042325615883, -0.035643696784973145, 0.028772905468940735, 0.0009365263977088034, -0.020424775779247284, 0.049479078501462936, -0.0041564772836863995, 0.005607433617115021, 0.003203829051926732, 0.0005737873143516481, -0.019052963703870773, 0.04382767900824547, -0.050370171666145325, 0.08338749408721924, 0.03646444156765938, 0.022558707743883133, 0.011648688465356827, -0.08685806393623352, 0.03808247670531273, 0.003772486699745059, -0.03343941643834114, 0.008406753651797771, -0.025865130126476288, -0.042514488101005554, 0.009778566658496857, -0.0016238987445831299, -0.003479364328086376, 0.014585776254534721, -0.016801781952381134, -0.034494657069444656, 0.055998124182224274, 0.03742588311433792, -0.024880239740014076, 0.049010083079338074, -0.019545409828424454, 0.01598103903234005, -0.014831999316811562, -0.001541824429295957, 0.03271247074007988, 0.006606981623917818, -0.0446484200656414, 0.03658169135451317, -0.005979699082672596, 0.004980151541531086, -0.00617902260273695, -0.03960671275854111, 0.059327997267246246, 0.011642825789749622, 0.054591137915849686, 0.045867811888456345, 0.018173595890402794, 0.015910690650343895, 0.013882282190024853, 0.05201165750622749, 0.007357375230640173, -0.008969549089670181, -0.003801798913627863, -0.06284546852111816, -0.044624973088502884, 0.0004030434647575021, 0.029288802295923233, 0.010095139034092426, 0.011771799996495247, 0.00903989840298891, -0.007052527740597725, 0.008084318600594997, -0.04542226344347, 0.00592400599271059, 0.03970051184296608, 0.040755752474069595, -0.019181936979293823, -0.043757326900959015, 0.036886535584926605, 0.07733744382858276, 0.04467187076807022, 0.012100097723305225, -0.006225922144949436, -0.04530501365661621, 0.0006137252785265446, -0.009561656042933464, 0.009297845885157585, -0.010036515071988106, -0.0177280493080616, -0.05332484841346741, -0.03149308264255524, 0.003195035271346569, 0.03705068677663803, -0.008084318600594997, 0.03533884882926941, -0.012193896807730198, 0.06528424471616745, -0.0027055207174271345, 0.07705604285001755, -0.012029747478663921, 0.007761884015053511, 0.014292653650045395, -0.01696593128144741, -0.022019363939762115, -0.022406285628676414, -0.0016356236301362514, 0.0263341274112463, 0.006624568719416857, -0.01385883241891861, -0.00202694209292531, -0.014140229672193527, 0.002194022061303258, -0.0055781216360628605, 0.013507084921002388, 0.00630213413387537, -0.04028675705194473, -0.02148001827299595, -0.019897155463695526, -0.029124652966856956, -0.0011849477887153625, -0.01722387969493866, -0.05515393242239952, 0.013178788125514984, -0.013647784478962421, 0.027178319171071053, -0.008359854109585285, -0.0008119493722915649, -0.002649827627465129, 0.0021661752834916115, 0.042373791337013245, 0.0053172423504292965, 0.03407255932688713, 0.005381729453802109, 0.011455227620899677, 0.01511339657008648, -0.024622291326522827, 0.033884961158037186, 0.006747680250555277, 0.03135238215327263, 0.021515192463994026, 0.014269203878939152, 0.011631101369857788, 0.03454155847430229, 0.0234849750995636, 0.005326035898178816, -0.020553750917315483, 0.03834042325615883, -0.026357576251029968, 0.0014297050656750798, -0.007345650345087051, -0.004323557019233704, -0.02344980090856552, 0.02208971232175827, 0.020530300214886665, -0.04952597990632057, 0.010810358449816704, -0.006407658103853464, 0.002194022061303258, 0.004818934015929699, 0.034377407282590866, -0.023039430379867554, 0.012229070998728275, 0.004393906332552433, -0.026263777166604996, -0.03660513833165169, 0.028983954340219498, 0.02506783790886402, 0.050604671239852905, 0.01671970821917057, 0.005481390748172998, 0.046360258013010025, -0.0059650433249771595, -0.03304076939821243, 0.01378848310559988, -0.0017792535945773125, -0.013389836065471172, -0.011871461756527424, -0.03271247074007988, 0.0067594051361083984, 0.023027705028653145, 0.0036112694069743156, -0.0537000447511673, -0.02497403882443905, -0.05290275067090988, -0.01698938012123108, -0.020295802503824234, -0.003180379280820489, -0.002065048087388277, -0.025020938366651535, 0.039864663034677505, -0.018947439268231392, 0.0028051824774593115, -0.0224531851708889, 0.05055776983499527, 0.001343966694548726, -0.014128505252301693, -0.02670932374894619, 0.0010449817636981606, -0.017200428992509842, -0.04345248267054558, -0.02896050363779068, -0.011953536421060562, -0.015500318259000778, 0.027037620544433594, -0.027483167126774788, 0.022441459819674492, -0.0001822855556383729, -0.031047536060214043, 0.0038193862419575453, -0.0456802137196064, -0.022758031263947487, -0.03930186480283737, -0.021292420104146004, -0.007761884015053511, -0.0033738401252776384, -0.010399986989796162, 0.008764362893998623, -0.02844460867345333, -0.020178554579615593, -0.0033386654686182737, 0.01872466690838337, -0.03318146988749504, -0.01648521050810814, -0.022898729890584946, 0.009438544511795044, 0.01573481597006321, 0.016942480579018593, -0.024293994531035423, -0.005592777393758297, 0.008746775798499584, -0.030179893597960472, -0.012803591787815094, -0.014187129214406013, 0.004062678199261427, 0.010312049649655819, 0.010247563011944294, -0.005328967235982418, -0.04256138950586319, 0.00195073033683002, 0.026779672130942345, 0.019885431975126266, 0.051870960742235184, 0.0024255889002233744, 0.014620951376855373, 0.026052728295326233, -0.017763223499059677, 0.014738200232386589, -0.013272587209939957, -0.005888831336051226, -0.03318146988749504, -0.014140229672193527, 0.026521725580096245, 0.018501892685890198, 0.04715754836797714, 0.013870556838810444, 0.020542025566101074, -0.017645975574851036, -0.04070885479450226, -0.02584168128669262, 0.015582392923533916, 0.035878196358680725, 0.024505041539669037, 0.05506013333797455, -0.011167967692017555, -0.004349938128143549, -0.019944055005908012, -0.030484741553664207, -0.015828615054488182, -0.012381494976580143, 0.041764095425605774, -0.05613882467150688, 0.0484003908932209, -0.007591872941702604, 0.03754313290119171, -0.027248669415712357, -0.01636796072125435, -0.02098757214844227, 0.01633278653025627, 0.009567518718540668, -0.025536833330988884, -0.02619342692196369, -0.018372919410467148, 0.0034207396674901247, -0.024622291326522827, -0.0020694448612630367, 0.010183076374232769, -0.03667549043893814, 0.0007797058788128197, -0.02685002237558365, 0.003203829051926732, -0.017681149765849113, 0.01078690867871046, 0.01584034040570259, -0.007480486296117306, -0.002399207791313529, 0.02373119816184044, -0.011209004558622837, -0.05782720819115639, -0.03130548447370529, -0.02682657167315483, 0.015898965299129486, 0.014398178085684776, 0.021151719614863396, 0.010851395316421986, -0.024786438792943954, 0.00985477864742279, -0.04317108541727066, 0.0020518575329333544, -0.023121504113078117, 0.04408562555909157, -0.02558373287320137, -0.01173662580549717, -0.0056601958349347115, 0.042748987674713135, -0.017153529450297356, -0.006407658103853464, -0.019533684477210045, -0.01871294155716896, 0.06031288951635361, -0.009344745427370071, 0.004663579165935516, -0.031891729682683945, -0.002255577826872468, 0.020870322361588478, 0.034776054322719574, 0.013108438812196255, -0.012170447036623955, 0.0032829721458256245, -0.018138421699404716, 0.012709791772067547, -0.051589563488960266, 0.007615322712808847, 0.011285216547548771, -0.015476868487894535, -0.013202237896621227, -0.034002210944890976, 0.029007403180003166, -0.05899969860911369, -0.01798599772155285, 0.016649357974529266, -0.0036992060486227274, 0.017282502725720406, -0.03032059222459793, 0.006911828648298979, 0.023508425801992416, 0.007826371118426323, 0.017997723072767258, 0.004455462098121643, 0.034377407282590866, -0.007468761410564184, -0.0154651440680027, 0.025607183575630188, -0.0041183712892234325, 0.03355666622519493, 0.03529195114970207, 0.005387591663748026, 0.013682958669960499, 0.018994338810443878, 0.001821756362915039, -0.03709758445620537, -0.012827041558921337, -0.016051389276981354, 0.025560282170772552, -0.038012128323316574, -0.013260862790048122, 0.010001339949667454, 0.042866237461566925, -0.013882282190024853, 0.04094335436820984, -0.005950387101620436, -0.006935278419405222, 0.018501892685890198, -0.04293658584356308, -0.023789823055267334, -0.005950387101620436, -0.0068649291060864925, 0.016625909134745598, 0.01710662990808487, 0.0028374260291457176, 0.02097584679722786, -0.018443267792463303, -0.01670798286795616, 0.02085859887301922, 0.007826371118426323, -0.01622726209461689, 0.0016136394115164876, -0.0065600816160440445, -0.0035497136414051056, -0.0005125979660078883, -0.002437313785776496, -0.007204951252788305, -0.05665471777319908, -0.04957287758588791, -0.011789387091994286, -0.000351930211763829, 0.01748182624578476, -0.020284077152609825, -0.01354226004332304, 0.05069847032427788, -0.0007643169374205172, -0.000571222510188818, 0.03219657763838768, -0.010013065300881863, 0.01472647488117218, 0.004150614608079195, 0.0008178118150681257, 0.01762252487242222, 0.024247094988822937, 0.02584168128669262, 0.006624568719416857, -0.001768994377925992, 0.008541589602828026, -0.0069645908661186695, 0.0228401068598032, 0.0351981520652771, -0.0049303206615149975, 0.0055165658704936504, -0.009684767574071884, 0.042889684438705444, 0.012369769625365734, -0.021433118730783463, 1.2205804523546249e-05, 0.01242839451879263, -0.0208351481705904, 0.033134568482637405, -0.022441459819674492, -0.0026981928385794163, -0.014081605710089207, -0.00755669828504324, 0.03880942240357399, 0.015500318259000778, -0.027530066668987274, -0.0007584544946439564, 0.002693795831874013, 0.038997020572423935, 0.018666042014956474, 0.02910120226442814, 0.01671970821917057, -0.0017162322765216231, 0.008471240289509296, -0.004783759359270334, 0.015418244525790215, -0.06744162738323212, 0.02434089407324791, 0.02584168128669262, -0.016063112765550613, -0.004725134931504726, 0.017411477863788605, 0.002906309673562646, 0.0004645991721190512, 0.003370908787474036, 0.007949482649564743, -0.06359586119651794, -0.04031020775437355, 0.002453435445204377, 0.005595708731561899, -0.005431560333818197, -0.009684767574071884, -0.010042376816272736, -0.013190513476729393, -0.0008815659675747156, -0.0076563600450754166, -0.006196609698235989, -0.0060910857282578945, 0.027154870331287384, 0.013389836065471172, -0.0024402448907494545, -0.03479950502514839, -0.03210277855396271, 0.013178788125514984, -0.019815081730484962, 0.030156444758176804, 0.027154870331287384, 0.004464255645871162, -0.024364342913031578, -0.008787812665104866, 0.03261867165565491, -0.02258215844631195, -0.014867173507809639, -0.010013065300881863, -0.049103882163763046, 0.05618572235107422, 0.012205621227622032, 0.00661870650947094, 0.01997923105955124, 0.016872132197022438, 0.011982847936451435, -0.003795936470851302, 0.017903922125697136, 0.028139760717749596, -0.008957823738455772, -0.034025661647319794, 0.0008324679220095277, -0.022007638588547707, 0.01948678493499756, -0.0026293089613318443, -0.011519715189933777, 0.01771632395684719, -0.009444407187402248, 0.023250477388501167, -0.004648922942578793, -0.027014169842004776, 0.04682925343513489, -0.0154651440680027, 0.015828615054488182, 0.010282738134264946, -0.006360758561640978, -0.005595708731561899, 0.020694449543952942, -0.014187129214406013, 0.012029747478663921, 0.00972580537199974, -0.025020938366651535, 0.01936953514814377, 0.01553549338132143, 0.040005359798669815, -0.008160530589520931, 0.023144952952861786, -0.01465612556785345, -0.024786438792943954, -0.04129510000348091, -0.016625909134745598, 0.0008896267972886562, -0.04319453239440918, 0.020647550001740456, 0.010951057076454163, 0.014433352276682854, 0.007070114836096764, 0.012838765978813171, 0.019510233774781227, -0.007896720431745052, -0.002018148545175791, -0.0007375695277005434, -0.04441392421722412, 0.030273692682385445, 0.02033097669482231, -0.01371813379228115, -0.018677767366170883, -0.02584168128669262, 0.0028022511396557093, -0.010704834014177322, 0.02221868559718132, 0.010042376816272736, -0.007222538813948631, 0.013682958669960499, -0.04026331007480621, 0.004174064379185438, 0.01347191073000431, -0.007158051710575819, -0.03906736895442009, 0.04746239632368088, -0.010716559365391731, 0.008922649547457695, 0.01598103903234005, -0.01204147282987833, -0.014151955023407936, 0.0223242100328207, -0.05107366666197777, 0.0314461849629879, -0.0034266021102666855, 0.00848882831633091, -0.006818029563874006, 0.008828850463032722, 0.028139760717749596, 0.03158688172698021, 0.005123781505972147, 0.017774948850274086, 0.04706374928355217, -0.011660413816571236, 0.004936183337122202, 0.01797427237033844, -0.0075332485139369965, -0.00332400924526155, -0.011648688465356827, 0.024153295904397964, 0.00233911769464612, 0.004097852855920792, 0.0314461849629879, 0.004692891612648964, 0.02273458242416382, -0.011214867234230042, -0.014632675796747208, 0.00633144611492753, -0.021444842219352722, -0.001118995132856071, -0.00630213413387537, 0.010212387889623642, 0.014292653650045395, -0.024364342913031578, 0.03369736298918724, 0.05979699268937111, 0.023250477388501167, 0.013202237896621227, -0.005493116099387407, 0.00760946050286293, 0.0030426117591559887, -0.040990252047777176, 0.039137717336416245, -0.015125121921300888, -0.01684868149459362, 0.00929198320955038, 0.006571806501597166, -0.015242370776832104, -0.04305383563041687, -0.014597500674426556, -0.02136276848614216, -0.011812836863100529, 0.034283608198165894, -0.03754313290119171, -0.05942179635167122, 0.01609828881919384, -0.02506783790886402, -0.023672573268413544, 0.01054068561643362, -0.024317443370819092, 0.018630865961313248, 0.040638506412506104, 0.03855147212743759, -0.00997789017856121, 0.001958058448508382, 0.012252520769834518, -0.04565676301717758, 0.04643060639500618, -0.015418244525790215, 0.002922431332990527, -0.04242068901658058, 0.011238317005336285, 0.023766374215483665, -0.00960855558514595, 0.006812167353928089, -0.012299420312047005, -0.026381026953458786, -0.03107098676264286, 0.05726441368460655, -0.019521959125995636, -0.0007298750570043921, -0.01884191483259201, -0.031657230108976364, 0.011801112443208694, -0.009508894756436348, -0.026427926495671272, -0.0012267177226021886, -0.002283424371853471, -0.04830659180879593, 0.007480486296117306, 0.04521121457219124, -0.04368697851896286, 0.010992093943059444, -0.0072518507950007915, -0.024786438792943954, 0.0044320123270154, 0.005182405933737755, 0.0016063114162534475, 0.026803122833371162, 0.0008397959754802287, -0.04117785021662712, 0.014187129214406013, 0.009954440407454967, 0.005715888924896717, -0.008699876256287098, -0.010587585158646107, -0.0036405816208571196, -0.0015594117576256394, 0.024551941081881523, -0.00024036045942921191, 0.021292420104146004, 0.014046430587768555, 0.05252755433320999, 0.006073498632758856, 0.02332082763314247, -0.0005038043018430471, -0.012322870083153248, -0.038129378110170364, 0.04103715345263481, 0.018771566450595856, 0.009245083667337894, 0.02706107124686241, -0.006694918032735586, -0.012803591787815094, -0.01160178892314434, 0.01608656346797943, -0.01997923105955124, 0.015476868487894535, 0.0263341274112463, 0.00905748549848795, 0.043217983096838, -0.02572443149983883, 0.0015154434368014336, 0.008336404338479042, 0.008834712207317352, 0.010212387889623642, 0.016063112765550613, -0.005756926257163286, -0.014468527399003506, 0.0014450940070673823, -0.005583983846008778, -0.013108438812196255, 0.038246624171733856, 0.041248198598623276, -0.0384342223405838, 0.011244179680943489, -0.003649375168606639, 0.002427054336294532, 0.008430203422904015, 0.016555558890104294, -0.02884325571358204, 0.005202924367040396, 0.021444842219352722, 0.013413285836577415, 0.0027201769407838583, -0.003535057418048382, -0.011080031283199787, 0.0132960369810462, -0.005613296292722225, -0.02795216254889965, 0.0015359619865193963, -0.029921945184469223, 0.007339787669479847, 0.006225922144949436, -0.01609828881919384, 0.0072694383561611176, 0.025020938366651535, -0.0023112709168344736, -0.005176543723791838, -0.039020467549562454, -0.011068305931985378, -0.033369068056344986, -0.010399986989796162, -0.00330935325473547, -0.009215772151947021, -0.010259288363158703, 0.01710662990808487, 0.015125121921300888, 0.015242370776832104, 0.032032426446676254, -0.0012626252137124538, -0.006554219406098127, 0.01759907603263855, -0.010165488347411156, -0.006313859019428492, -0.014151955023407936, 0.059843890368938446, 0.009655455127358437, -0.023895347490906715, -0.0018569311359897256, 0.02544303424656391, -0.010218250565230846, 0.011801112443208694, -0.008113631047308445, -0.030766138806939125, 0.04021640866994858, -0.028186660259962082, -0.007955345325171947, 0.022992528975009918, 0.006255234591662884, 0.03224347531795502, 0.03754313290119171, -0.00020646817574743181, -0.007662222255021334, 0.02809286117553711, -0.01897088810801506, 0.008822987787425518, 0.0032888345886021852, 0.009104385040700436, -0.017505276948213577, -0.04195169359445572, 0.009514756500720978, 0.008500552736222744, -0.03780107945203781, -0.056091923266649246, 0.03909081965684891, -0.003514538984745741, 0.026803122833371162, -0.04664165526628494, 0.017247328534722328, 0.04178754612803459, -0.03683963790535927, -0.035385750234127045, 0.0016268299659714103, 0.034494657069444656, 0.023895347490906715, -0.02706107124686241, -0.0022819587029516697, 0.02185521461069584, -0.011660413816571236, -0.010974506847560406, 0.008600214496254921, -0.016532110050320625, 0.008201567456126213, 0.013190513476729393, 0.010552410036325455, 0.035268500447273254, -0.008717463351786137, -0.031704131513834, 0.013108438812196255, -0.019416434690356255, -0.0070466650649905205, -0.009807879105210304, -0.02308632992208004, -0.020882047712802887, -0.0007716449908912182, 0.03327526897192001, 0.004470118321478367, -0.029030853882431984, 0.004531674087047577, 0.015500318259000778, -0.0010596378706395626, -0.019381260499358177, -0.020530300214886665, 0.005988493096083403, -0.01670798286795616, 0.001393064740113914, 0.0074335867539048195, -0.001609242637641728, -0.03322836756706238, 0.022511808201670647, 0.006489732302725315, -0.011994573287665844, 0.02459884062409401, -0.013108438812196255, 0.015617567114531994, -0.03149308264255524, -0.012299420312047005, 0.0023127365857362747, 0.029921945184469223, 0.007040802855044603, -0.062095072120428085, -0.019322635605931282, 0.02035442739725113, -0.015558943152427673, 0.017939098179340363, -0.006976315751671791, -0.010962781496345997, -0.004672372713685036, 0.015324444510042667, 0.03618304431438446, 0.009250946342945099, -0.012252520769834518, -0.018032897263765335, 0.018630865961313248, -0.00019291124772280455, 0.014269203878939152, -0.016156913712620735, -0.03540920093655586, 0.011678000912070274, 0.001843740581534803, 0.003467639209702611, -0.022500084713101387, -0.004874627571552992, -0.04131855070590973, -0.0008104837615974247, -0.0564202219247818, 0.023438075557351112, -0.005613296292722225, -0.01736457832157612, -0.017751500010490417, 0.002953209215775132, 0.04854108765721321, -0.005205855704843998, -0.010259288363158703, -0.005243961699306965, 0.009508894756436348, -0.0020694448612630367, 0.03348631411790848, 0.011244179680943489, -0.010798633098602295, 0.010036515071988106, -0.030555089935660362, 0.008981273509562016, 0.01762252487242222, 0.009954440407454967, 0.03231382742524147, -0.01785702258348465, 0.02198418788611889, 0.01011272706091404, -0.004857040010392666, 0.0005239564925432205, -0.03343941643834114, 0.022781481966376305, 0.040732305496931076, 0.03369736298918724, 0.005446216091513634, 0.007316337898373604, -0.020413052290678024, -0.03433050960302353, -0.0013857366284355521, 0.010798633098602295, 0.003687481163069606, -0.016063112765550613, -0.02172624133527279, -0.009813741780817509, 0.0027509548235684633, 0.00026381027419120073, 0.013917457312345505, -0.012991189956665039, 0.01920538768172264, -0.018947439268231392, 0.008066731505095959, 0.010482060723006725, 0.03060198947787285, -0.015136846341192722, 0.009819604456424713, 0.04915078356862068, 0.0046254731714725494, -0.02370774932205677, -0.0038076613564044237, 0.008248467929661274, 0.013835382647812366, -0.0008815659675747156, -0.035127803683280945, -0.024786438792943954, -0.0057481322437524796, -0.05065156891942024, -0.019545409828424454, 0.007158051710575819, -0.0014062552945688367, 0.007697397377341986, 0.008817125111818314, 0.038528021425008774, -0.04621955752372742, 0.004968426655977964, 0.006325583904981613, 0.00377834914252162, 0.0031334797386080027, -0.04896318539977074, -0.01997923105955124, 0.040873002260923386, -0.003151067066937685, -0.011015543714165688, 0.02194901369512081, -0.011437640525400639, 0.04059160500764847, -0.027928713709115982, 0.007908445782959461, -0.029171552509069443, -0.0119711235165596, -0.03360356390476227, 0.015523768030107021, 0.011466952972114086, 0.024505041539669037, -0.02957019954919815, -0.005343623459339142, 0.02694382146000862, 0.027764564380049706, -0.035385750234127045, -0.030367491766810417, -0.0212220698595047, 0.029476400464773178, -0.004596161190420389, -0.014128505252301693, 0.014585776254534721, 0.012932565063238144, 0.002248249715194106, -0.01696593128144741, -0.006501457188278437, -0.029663998633623123, -0.007181501481682062, 0.019052963703870773, 0.010001339949667454, 0.016426585614681244, -0.0033738401252776384, -0.007914307527244091, 0.0026586211752146482, 0.03393186256289482, -0.02246490865945816, 0.02097584679722786, 0.07269438356161118, 0.005469665862619877, -0.0037636931519955397, 0.0478844940662384, -0.03927841782569885, -0.001936074229888618, -0.05899969860911369, 0.00350867654196918, 0.007480486296117306, -0.011994573287665844, -0.0030426117591559887, 0.013483635149896145, -0.0031158924102783203, -0.023285651579499245, -0.0025530969724059105, 0.003921979106962681, 0.025794781744480133, -0.003866286017000675, 0.005161887500435114, 0.018443267792463303, -0.020647550001740456, -0.010798633098602295, -0.06345516443252563, 0.013507084921002388, -0.037894878536462784, 0.02621687762439251, 0.012088372372090816, 0.004959633108228445, -0.004593229852616787, 0.02171451598405838, -0.047743793576955795, 0.01147867739200592, -0.001919952454045415, -0.007949482649564743, -0.03658169135451317, -0.015406519174575806, 0.01587551459670067, 0.04741549864411354, 0.012580818496644497, -0.03229037672281265, 0.044226326048374176, -0.02881980501115322, -0.031235134229063988, -0.01586379110813141, 0.025536833330988884, -0.007814645767211914, 0.012053197249770164, 0.016883857548236847, -0.02207798697054386, -0.03782453015446663, 0.004977220203727484, -0.023496700450778008, 0.029054302722215652, -0.025138186290860176, 0.01297946460545063, 0.020542025566101074, -0.027670765295624733, -0.0025853405240923166, -0.02356705069541931, 0.022910455241799355, -0.002103154081851244, -0.013378111645579338, -0.00652490695938468, 0.011126930825412273, 0.00414768373593688, 0.01504304725676775, -0.047485847026109695, 0.013636059127748013, -0.00810190662741661, 0.022382834926247597, -0.01820877008140087, 0.004698753822594881, 0.007627047598361969, -0.05679541826248169, -0.011976986192166805, 0.0012399082770571113, -0.003916116897016764, 0.007023215293884277, -0.009362333454191685, -0.020823422819375992, -0.032876621931791306, 0.05032327398657799, 0.0359719954431057, 0.03107098676264286, 0.0064955949783325195, -0.010523098520934582, -0.001214992837049067, -0.0045052929781377316, -0.004795484244823456, -0.0017133010551333427, -0.010640347376465797, -0.027389368042349815, -0.001585792750120163, 0.03892666846513748, 0.037003785371780396, 0.006085223518311977, 0.03569059818983078, -0.013917457312345505, -0.024997487664222717, 0.0968007817864418, -0.031282033771276474, 0.007281163241714239, -0.010640347376465797, -0.03583129495382309, 0.020143378525972366, 0.009807879105210304, -0.0005276205483824015, 0.0032595223747193813, -0.02098757214844227, -0.013976081274449825, 0.021304143592715263, -0.021515192463994026, -0.00974339246749878, 0.019416434690356255, -0.018525343388319016, -0.04434357210993767, -0.036394089460372925, -0.0012479691067710519, 0.03470570594072342, 0.010329637676477432, 0.04572711139917374, 0.044507723301649094, 0.059468694031238556, -0.01055827271193266, -0.00799638219177723, 0.05126126483082771, 0.027905263006687164, 0.0021603128407150507, -0.016930757090449333, 0.013495360501110554, -0.020002679899334908, 0.018279120326042175, 0.012815316207706928, 0.00736323744058609, -0.03808247670531273, -0.009192322380840778, 0.048634886741638184, -0.027999062091112137, 0.028257010504603386, 0.008441928774118423, 0.0018393438076600432, 0.011572476476430893, 0.012064922600984573, 0.002043063985183835, 0.03620649129152298, -0.03454155847430229, -0.037988677620887756, 0.024293994531035423, -0.014269203878939152, 0.008406753651797771, -0.028186660259962082, -0.011191417463123798, -0.0018877090187743306, 0.0038457673508673906, 0.01116210501641035, -0.023625673726201057, -0.04821278899908066, 0.00780292134732008, -0.026263777166604996, 0.038528021425008774, -0.021128270775079727, 0.022523533552885056, 0.028749456629157066, -0.01228769589215517], [0.04096878319978714, 0.015179249458014965, 0.015833629295229912, 0.016920365393161774, -0.01009028684347868, 0.01873159222304821, 0.0012218478368595243, 0.010697923600673676, 0.029283449053764343, 0.018661480396986008, -0.005264243111014366, 0.03003131039440632, 0.02154775708913803, 0.05155569687485695, -0.0110660120844841, -0.012994091957807541, -0.044637978076934814, 0.0426982119679451, 0.002005495596677065, 0.038771942257881165, 0.026923011988401413, 0.026899641379714012, -0.01632441207766533, 0.01062196958810091, 0.012865553610026836, -0.02266955003142357, 0.03440162539482117, -0.016149133443832397, 0.018240807577967644, -0.010639497078955173, 0.019935181364417076, -0.01721249893307686, 0.017469575628638268, -0.0036136896815150976, 0.05211659148335457, 0.02132573537528515, -0.02314864844083786, -0.015155878849327564, 0.007128054276108742, -0.054126471281051636, -0.03180748224258423, 0.033420056104660034, 0.05749184638261795, -0.043165627866983414, 0.0061172726564109325, 0.034027695655822754, 0.04484831541776657, -0.006123115308582783, -0.01812395453453064, 0.031176473945379257, -0.04755931347608566, -0.01141072902828455, 0.010072758421301842, -0.04713863879442215, -0.02076484076678753, -0.0013825211208313704, -0.025474030524492264, -0.002595605095848441, 0.016885308548808098, -0.0024539201986044645, 0.016733398661017418, -0.027343682944774628, 0.03449510782957077, 0.06113767251372337, 0.02715671807527542, -0.005416152533143759, 0.03185422345995903, 0.0035172856878489256, -0.043142255395650864, 0.050854578614234924, -0.018369346857070923, 0.03122321516275406, 0.006625584792345762, -0.029984569177031517, 0.019023725762963295, 0.015646662563085556, 0.05094806104898453, -0.031199844554066658, 0.01901203952729702, 0.027343682944774628, -0.015377900563180447, 0.026128409430384636, -0.00151032954454422, 0.017177442088723183, 0.02139584720134735, -0.005021772813051939, -0.0707663893699646, 0.033420056104660034, -0.027483906596899033, -0.012187804095447063, 0.0017747102538123727, -0.019981922581791878, -0.01845114305615425, 0.0081329932436347, 0.029283449053764343, 0.02771761454641819, 0.009102875366806984, 0.03923935443162918, -0.005556376650929451, 0.06076373904943466, -0.0023896510247141123, -0.010218825191259384, 0.012608475983142853, 0.009476806037127972, 0.02228393405675888, 0.001349656144157052, -0.02096349000930786, -0.0049575031735002995, 0.023662803694605827, -0.0004447730607353151, 0.021664610132575035, -0.007490299642086029, -0.031012877821922302, 0.07824499905109406, -0.022015171125531197, -0.02416527271270752, -0.006806707475334406, 0.004551437683403492, -0.031386807560920715, -0.010493430308997631, 0.021641239523887634, 0.026385486125946045, 0.016616545617580414, -0.05954846739768982, 0.01753968745470047, -0.0034150390420109034, -0.04159979149699211, 0.06370844691991806, -0.04124923050403595, -0.026993123814463615, 0.03456522151827812, 0.022202135995030403, 0.0070053581148386, -0.018007101491093636, -0.016184188425540924, 0.015506438910961151, -0.00228740437887609, -0.04655437543988228, 0.001982124987989664, -0.021641239523887634, 0.04973278567194939, -0.014057457447052002, 0.04501190781593323, 0.008740630000829697, -0.008775686845183372, 0.05800600349903107, 0.018345976248383522, 0.059454984962940216, 0.04449775442481041, 0.01832260563969612, -0.002835154300555587, 0.016452951356768608, 0.019456082955002785, -0.00892175268381834, -0.01929248683154583, 0.01662823185324669, -0.0031287483870983124, 0.024889763444662094, -0.005655702203512192, 0.021711351349949837, 0.0007661197450943291, -0.004478404764086008, 0.016359468922019005, -0.019607990980148315, -0.002930097747594118, 0.008314115926623344, 0.0035202070139348507, -0.06426934152841568, -0.06534439325332642, -0.023066850379109383, -0.01678013987839222, 0.015436327084898949, -0.05267748981714249, 0.005126940552145243, -0.008892539888620377, -0.029400302097201347, 0.014092513360083103, 0.029283449053764343, 0.016534749418497086, 0.0036107683554291725, 0.006923560984432697, 0.018462829291820526, 0.02767087332904339, 0.027460535988211632, -0.015728460624814034, 0.0002295072772540152, -0.0071222116239368916, -0.007852545008063316, -0.009289841167628765, 0.029400302097201347, 0.014361276291310787, -0.04330585151910782, 0.027226829901337624, 0.0619790144264698, -0.049405597150325775, -0.0076947929337620735, 0.01458329800516367, 0.01089073158800602, 0.01957293599843979, -0.06291384249925613, 0.010440846905112267, -0.03652835637331009, 0.01195409707725048, -0.013192743062973022, 0.025146840140223503, -0.014840374700725079, -0.0030031311325728893, -0.03122321516275406, 0.026058295741677284, -0.018030472099781036, -0.012468252331018448, -0.012269601225852966, -0.06740101426839828, -0.004151215311139822, -0.031059619039297104, 0.014115883968770504, 0.05805274471640587, -0.012456567026674747, 0.03531308099627495, 0.014069142751395702, -0.05034042149782181, 0.009260627441108227, 0.021255623549222946, 0.014267793856561184, -0.034074436873197556, -0.01095500122755766, -0.04370315372943878, -0.009184673428535461, -0.007542883511632681, -0.03503263369202614, -0.05809948593378067, 0.054126471281051636, -0.023639433085918427, -0.032555341720581055, 0.012737015262246132, 0.014232737943530083, 0.016733398661017418, -0.034635331481695175, -0.036154426634311676, 0.028979629278182983, -0.022459212690591812, -0.017200812697410583, 0.01814732514321804, 0.03061557747423649, -0.011685335077345371, -0.03825778514146805, -0.014302849769592285, -0.02442234940826893, 0.061464861035346985, -0.007040414027869701, -0.021746408194303513, 0.05132199078798294, -0.02299673855304718, -0.06454978883266449, 0.0018944848561659455, -0.016417894512414932, 0.033162981271743774, 0.0029636931139975786, 0.04045462980866432, -0.03973013907670975, 0.02680615708231926, -0.014840374700725079, -0.0038444751407951117, -0.0061464859172701836, -0.06071699783205986, -0.00802198238670826, 0.061745308339595795, -0.04043125733733177, -0.02104528807103634, 0.05076109245419502, -0.012386455200612545, 0.02388482354581356, 0.0323917493224144, -0.038164302706718445, -0.023616060614585876, 0.05239704251289368, -0.005679072812199593, -0.00900939293205738, 0.020870007574558258, -0.00446671899408102, -0.03664521127939224, -0.0012715104967355728, 0.0032280737068504095, -0.012398140504956245, -0.00018523081962484866, -0.008723102509975433, 0.02167629636824131, 0.013940604403614998, -0.03152703493833542, 0.014372961595654488, 0.05520152300596237, -0.0073968167416751385, 0.002621897030621767, 0.007449401076883078, 0.016616545617580414, 0.017633169889450073, -0.02226056344807148, 0.012187804095447063, 0.012292971834540367, -0.03393421322107315, 0.009716356173157692, 0.026432227343320847, 0.015751831233501434, -0.007496142294257879, -0.0046828980557620525, 0.037299588322639465, 0.013671841472387314, 0.020928435027599335, -0.03211129829287529, -0.012409825809299946, -0.07922656834125519, 0.08315284550189972, -0.046086959540843964, -0.007274121046066284, 0.017983730882406235, 0.022248877212405205, -0.026736045256257057, 0.04566628858447075, 0.027507277205586433, -0.0016271828208118677, 0.04536246880888939, 0.008156363852322102, 0.05805274471640587, -0.03477555513381958, 0.027507277205586433, 0.027203459292650223, 0.04884469881653786, 0.04300203174352646, 0.01842777244746685, 0.004609864670783281, -0.05258400738239288, -0.02710997685790062, 0.02078821137547493, -1.9410892491578124e-05, -0.03631801903247833, 0.0005236490396782756, -0.029119854792952538, 0.020986860617995262, -0.03655172884464264, 0.013613414950668812, 0.04061822220683098, -0.007887600921094418, -0.021723037585616112, 0.048751216381788254, 0.01574014499783516, 0.004224248696118593, 0.01903541013598442, 0.026408856734633446, 0.006467832718044519, 0.006064688786864281, 0.02193337306380272, 0.01312263123691082, 0.005372332874685526, -0.0110776973888278, -0.03634139150381088, 0.0011999377747997642, -0.0003021754673682153, -0.023534264415502548, -0.026408856734633446, 0.04597010836005211, 0.017142385244369507, -0.04926536977291107, 0.020624615252017975, 0.04475483298301697, 0.019806642085313797, 0.043188996613025665, -0.033770617097616196, 0.02061293087899685, 0.055902641266584396, -0.03145692124962807, 0.05071435123682022, 0.02094011940062046, 0.014665095135569572, -0.05861363932490349, 0.004084024578332901, -0.02028574049472809, -0.011223764158785343, 0.03419128805398941, 0.030288387089967728, -0.02474953979253769, 0.02109202928841114, -0.015506438910961151, 0.029704120010137558, 0.03194770589470863, 0.03631801903247833, 0.03304612636566162, -0.020729783922433853, -0.030522095039486885, 0.029283449053764343, -0.0368555448949337, -0.015564865432679653, 0.0027577390428632498, 0.018112268298864365, -0.007910971529781818, 0.013064204715192318, 0.042043834924697876, 0.01942102611064911, 0.05104154348373413, -0.006578843574970961, -0.08894877135753632, -0.007268278393894434, -0.014933858066797256, -0.013262854889035225, -0.005290535278618336, 0.008839955553412437, 0.011708705686032772, -0.011171179823577404, 0.009324897080659866, 0.007875915616750717, 0.011311404407024384, 0.07889938354492188, 0.006754123605787754, 0.0015380821423605084, -0.01458329800516367, 0.01662823185324669, -0.006409406196326017, 0.01561160758137703, 0.03451848030090332, 0.028371993452310562, -0.008828270249068737, 0.04917188733816147, -0.012468252331018448, -0.01903541013598442, 0.0398002490401268, -0.044100452214479446, 0.029984569177031517, 0.04505864903330803, 0.039402950555086136, 0.018778333440423012, -0.07497310638427734, -0.03129332512617111, 0.005717049818485975, -0.035500045865774155, -0.005649859551340342, 0.001982124987989664, -0.016815196722745895, -0.0028994237072765827, -0.020122146233916283, 0.02119719795882702, -0.026081666350364685, 0.014513186179101467, -0.04414719343185425, -0.026642562821507454, 0.003786048386245966, -0.01096668653190136, 0.015681719407439232, -0.04893818125128746, -0.008395913057029247, 0.04166990518569946, -0.005261322017759085, -0.035266339778900146, 0.00354065652936697, -0.0081329932436347, 0.008419283665716648, -0.020040348172187805, -0.0589408278465271, -0.02832525223493576, -0.04057148098945618, 0.022856514900922775, 0.020846636965870857, 0.03173736855387688, 0.044941797852516174, 0.04739571735262871, 0.023370670154690742, 0.011328931897878647, 0.04213731735944748, -0.033139608800411224, 0.016242615878582, 0.038164302706718445, -0.032298266887664795, -0.03722947835922241, -0.05632331222295761, 0.02916659601032734, -0.00406649662181735, 0.019888440147042274, -0.015179249458014965, -0.0042797536589205265, -0.017983730882406235, -0.027834467589855194, -0.009891635738313198, 0.02152438648045063, -0.006140643265098333, -0.0251000989228487, -0.041716646403074265, 0.058520156890153885, 0.049078404903411865, 0.06571832299232483, 0.02619852125644684, -0.042020462453365326, -0.027483906596899033, -0.01457161270081997, -0.008460182696580887, 0.030522095039486885, -0.009757254272699356, -0.05178940296173096, -0.04031440615653992, 0.006917718332260847, 0.05954846739768982, 0.025544142350554466, -0.022914942353963852, -0.023160332813858986, -0.025170210748910904, 0.019374284893274307, -0.05370580032467842, 0.022202135995030403, -0.028512217104434967, -0.023826397955417633, -0.0014708915259689093, 0.0017849348951131105, -0.007566254120320082, 0.008968494832515717, -0.002830772427842021, -0.010189611464738846, -0.01340307854115963, -0.007630523759871721, -0.022026855498552322, -0.022926626726984978, -0.0028220084495842457, -0.039683397859334946, -0.03204118832945824, 0.033817358314991, 0.0038357111625373363, -0.0037743630819022655, 0.0014745431253686547, -0.015214306302368641, 0.015950482338666916, -0.003850317792966962, -0.091379314661026, -0.02657245099544525, -0.03162051737308502, -0.016184188425540924, -0.03409780561923981, -0.01443138811737299, 0.02479628100991249, 0.019561249762773514, 0.024843022227287292, 0.00393503624945879, 0.017481260001659393, -0.0005733117577619851, 0.003435488324612379, 0.0016052728751674294, -0.021512702107429504, 0.007414344698190689, -0.04241776466369629, 0.021337421610951424, -0.00951770506799221, 0.021021917462348938, 0.00013429006503429264, 0.013297910802066326, -0.02327718771994114, -0.002201224910095334, -0.03063894808292389, 0.02317201904952526, -0.008074566721916199, 0.00798108335584402, 0.016079019755125046, 0.027577390894293785, -0.026759415864944458, 0.0025663916021585464, 0.0007464007358066738, -0.00656131561845541, 0.013695212081074715, -0.023265501484274864, 0.004463797900825739, -0.00839006993919611, 0.026736045256257057, -0.013181057758629322, 0.001700216205790639, 0.0029125697910785675, -0.04213731735944748, 0.012059265747666359, 0.0502001978456974, 0.02654908038675785, -0.018217436969280243, 0.030218275263905525, -0.005585589911788702, 0.012421511113643646, -0.0369022861123085, -0.0023560556583106518, 0.002291786251589656, 0.022763032466173172, 0.008150520734488964, 0.02147764526307583, 0.04311888664960861, -0.014793633483350277, 0.041763387620449066, 0.008471868000924587, -0.03718273341655731, -0.04447438567876816, 0.009891635738313198, 0.011515897698700428, -0.008582877926528454, 0.024983245879411697, -0.0011502751149237156, -0.07286974787712097, 0.047582682222127914, -0.01756305806338787, -0.004770537838339806, -0.008290745317935944, 0.02139584720134735, -0.003023580415174365, -0.0018506648484617472, -0.014641724526882172, 0.0456429161131382, 0.013590044341981411, 0.0012620161287486553, -0.019607990980148315, -0.01898866891860962, 0.01503902580589056, -0.005889408756047487, 0.017247553914785385, 0.017481260001659393, -0.0031988604459911585, -0.004744246136397123, 0.00655547296628356, 0.029400302097201347, -0.037883855402469635, 8.942019485402852e-05, -0.0038006550166755915, -0.007034571375697851, 0.009652086533606052, -0.0032309950329363346, -0.03274230659008026, -0.01417431142181158, -0.004793908447027206, 0.000548845564480871, -0.004212563391774893, -0.050059974193573, 0.03825778514146805, -0.020320797339081764, -0.008652990683913231, 0.003190096467733383, 0.021442588418722153, 0.016686657443642616, 0.011883985251188278, -0.03510274738073349, 0.0027036943938583136, -0.016125762835144997, -0.0038444751407951117, 0.0057900832034647465, 0.007986926473677158, -0.04106226563453674, -0.023744599893689156, -0.03566364198923111, 0.010440846905112267, 0.013181057758629322, 0.015973852947354317, 0.0228214580565691, -0.009295683354139328, 0.004630313720554113, 0.04987300932407379, 0.010195454582571983, 0.007449401076883078, -0.03505600243806839, -0.006543787661939859, -0.017072273418307304, 0.003409196389839053, 0.05473410710692406, -0.02947041392326355, 0.05155569687485695, 0.004641999024897814, 0.00900939293205738, -0.008191419765353203, -0.012164433486759663, -0.04898492246866226, -0.021232252940535545, 0.013870492577552795, 0.01753968745470047, -0.01571677438914776, -0.00913793221116066, -0.012035895138978958, -0.007443558424711227, -0.030288387089967728, -0.024305496364831924, -0.0325319729745388, 0.007577939424663782, -0.025824589654803276, -0.006941088940948248, -0.040244292467832565, 0.01416262611746788, -0.03162051737308502, -0.01167364977300167, 0.008945123292505741, 0.009342425502836704, 7.79973288445035e-06, -0.0073968167416751385, -0.008950966410338879, -0.03061557747423649, -0.003432566998526454, -0.032298266887664795, -0.007244907319545746, 0.04190361127257347, 0.028745923191308975, -0.004399528726935387, 0.003981777932494879, -0.0037013296969234943, -0.012479937635362148, -0.017703281715512276, -0.014478129334747791, 0.031994447112083435, -0.0009808377362787724, -0.0029768389649689198, 0.011358145624399185, -0.06688685715198517, -0.027834467589855194, -0.025847960263490677, -0.001587744802236557, -0.0033536909613758326, 0.0033975110854953527, 0.03327983245253563, -0.025240322574973106, -0.003666273783892393, -0.00847771018743515, -0.02596481330692768, -0.04547932371497154, 0.012783756479620934, -0.011381516233086586, 0.0034617804922163486, 0.00750782759860158, -0.013601729646325111, -0.011591851711273193, 0.04650763049721718, 0.020554503425955772, 0.022985054180026054, 0.011772974394261837, 0.025193581357598305, 0.01090241689234972, -0.01090241689234972, -0.012853868305683136, 0.01054601464420557, 0.021711351349949837, -0.017200812697410583, -0.00655547296628356, 0.017878562211990356, -0.013344652019441128, 0.019070466980338097, -0.003599083051085472, 0.0280214324593544, -0.02883940562605858, -0.02947041392326355, 0.021489331498742104, 0.0025941443163901567, 0.0426514707505703, -0.020110461860895157, -0.005141547415405512, -0.0007537041092291474, -0.028956258669495583, -0.02187494747340679, -0.02561425417661667, 0.03779037296772003, -0.004522224422544241, 0.0077532194554805756, -0.01581025868654251, -0.007683107629418373, 0.0017323509091511369, 0.015553180128335953, 0.01311094593256712, -0.0028293116483837366, 0.047348976135253906, -0.0008632541284896433, -0.03998721390962601, 0.020496077835559845, 0.0018506648484617472, 0.01632441207766533, 0.016254300251603127, 0.0070053581148386, -0.01665160246193409, -0.013052518479526043, -0.011872299946844578, -0.006076374091207981, -0.01974821649491787, 0.01149836927652359, 0.01779676415026188, 0.013204428367316723, -0.019584620371460915, -0.0161958746612072, 0.0140224015340209, -0.05211659148335457, -0.033466797322034836, -0.052350301295518875, 0.020986860617995262, 0.0051503111608326435, -0.02048439159989357, 0.003850317792966962, -0.024398978799581528, -0.005717049818485975, 0.016417894512414932, 0.032882530242204666, -0.002284483052790165, 0.009190515615046024, -0.011112753301858902, -0.027343682944774628, -0.01295903604477644, -0.020133832469582558, -0.01011365745216608, -0.011843087151646614, -0.04646088927984238, -0.017598114907741547, 0.026993123814463615, -0.020390909165143967, -0.007186480797827244, -0.003593240398913622, -0.006771651562303305, 0.030498724430799484, 0.054406918585300446, 0.0027591995894908905, 0.008226475678384304, -0.026923011988401413, 0.03830452635884285, -0.03246185928583145, -0.033162981271743774, -0.0027781883254647255, 0.014267793856561184, 0.029400302097201347, 0.012678587809205055, -0.01356667373329401, -0.026478968560695648, 0.012246230617165565, -0.01589205488562584, -0.04620381444692612, -0.0001414108119206503, -0.012748700566589832, 0.03159714490175247, -0.02043765038251877, 0.032835789024829865, -0.010207139886915684, -0.02134910598397255, 0.052303560078144073, -0.01721249893307686, 0.010212983004748821, 0.008004453964531422, 0.013788695447146893, 0.012444881722331047, -0.021454274654388428, -0.03765014931559563, 0.0023224602919071913, 0.004145372658967972, 0.022646179422736168, -0.00454267393797636, 0.016277670860290527, 0.04660111665725708, -0.012912294827401638, -0.0003576807794161141, 0.018369346857070923, -0.018638109788298607, 0.05777229368686676, -0.020016977563500404, -0.01010197214782238, 0.011206235736608505, 0.011597694829106331, 0.021080343052744865, -0.01611407659947872, 4.774554690811783e-05, -0.02767087332904339, 0.026338744908571243, -0.005147390067577362, -0.012000839225947857, -0.007741534151136875, -0.02111539989709854, -0.010131184943020344, 0.019666418433189392, -0.0250533577054739, -0.005424916744232178, 0.04870447516441345, 0.027343682944774628, -0.016242615878582, -0.00944175012409687, -0.0029096484649926424, 0.017656540498137474, -0.005994576495140791, 0.05833319202065468, 0.01313431654125452, 0.010884889401495457, 0.0016753848176449537, -0.0022085283417254686, -0.01637115329504013, -0.024328866973519325, 0.0020463941618800163, -0.011819716542959213, 0.0036458245012909174, -0.015085767023265362, 0.0013211731566116214, 0.053472090512514114, -0.012760385870933533, -0.0042885178700089455, -0.029400302097201347, -0.05805274471640587, 0.04571302980184555, 0.031082989647984505, -0.022646179422736168, 0.016581490635871887, 0.004969188477844, -0.007846701890230179, -0.01208263635635376, -0.03131669759750366, -0.0026627955958247185, -0.00968130026012659, 0.021723037585616112, 0.004437505733221769, -5.5870506912469864e-05, -0.036154426634311676, 0.04445101320743561, -0.0007423839415423572, -0.05048064514994621, -0.025146840140223503, 0.0074727716855704784, -0.006835920736193657, -0.008290745317935944, -0.0008574114181101322, 0.017913619056344032, 0.06319428980350494, -0.016873624175786972, 0.008892539888620377, -0.07604815810918808, 0.04779301956295967, 0.015202620066702366, -0.02855895832180977, 0.011095224879682064, 0.004119080491364002, 0.02040259540081024, 0.0427449531853199, 0.004662448540329933, -0.019689789041876793, 0.010218825191259384, 0.008220632560551167, -0.03594408929347992, -0.03330320492386818, -0.0251000989228487, -0.054126471281051636, -0.02028574049472809, 0.009266470558941364, 0.04372652247548103, -0.018345976248383522, 0.04328247904777527, -0.0059332288801670074, 0.03858497366309166, 0.012923980131745338, -0.012421511113643646, 0.008220632560551167, -0.02050776220858097, 0.025193581357598305, 0.012176118791103363, -0.007361760828644037, 0.036691952496767044, 0.005404467228800058, 0.010826462879776955, 0.04078181833028793, 0.006199070252478123, 0.0037393071688711643, 0.03218141198158264, -0.010300622321665287, -0.03781374171376228, -0.012994091957807541, 0.023569319397211075, 1.0435779586259741e-05, -0.028068173676729202, 0.08432137221097946, -0.022213822230696678, 0.02150101587176323, 0.042020462453365326, 0.004256383050233126, 0.04501190781593323, 0.024959875270724297, -0.04620381444692612, 0.02053113281726837, 0.012690273113548756, -0.0011254438431933522, 0.01801878586411476, -0.004817279055714607, -0.00701120076701045, 0.010452532209455967, 0.008238160982728004, 0.03278904780745506, 0.04134271293878555, -0.007986926473677158, -0.008764000609517097, 0.005632331129163504, 0.006724910344928503, 0.04374989494681358, 0.018334290012717247, 0.009967590682208538, 0.013975660316646099, 0.02975086309015751, -0.018696535378694534, -0.027483906596899033, 0.009751412086188793, -0.009663771837949753, -0.004592336714267731, 0.029610637575387955, 0.009815680794417858, -0.039309464395046234, 0.05721139907836914, 0.0007580860983580351, -0.011387358419597149, -0.03038186952471733, -0.012468252331018448, 0.025146840140223503, 0.024025049060583115, -0.004379079211503267, 0.03061557747423649, 0.017960360273718834, -0.002335606375709176, -0.03063894808292389, 0.016125762835144997, 0.002599986968562007, -0.006841763388365507, -0.010808934457600117, 0.013040833175182343, -0.039099130779504776, 0.02020394429564476, 0.0077240061946213245, -0.01312263123691082, 0.009932534769177437, -0.0041541364043951035, -0.01896529830992222, -0.022704605013132095, 0.0043849218636751175, -0.005430759396404028, -0.027460535988211632, 0.012585105374455452, -0.009283998049795628, 0.016382839530706406, 0.01252667885273695, -0.009716356173157692, 0.044123824685811996, 0.005787162110209465, 0.02347583696246147, 0.0029636931139975786, 0.016102390363812447, 0.017726652324199677, 0.03035849891602993, -0.046998415142297745, 0.016452951356768608, 0.04814358055591583, 0.013192743062973022, 0.026011554524302483, 0.00010553318134043366, -0.033793989568948746, -0.022061912342905998, 0.01961967721581459, -0.02122056856751442, 0.01713070087134838, -0.020881693810224533, 0.006093902047723532, 0.013029147870838642, 0.021536072716116905, 0.019105521962046623, -0.004352787043899298, 0.024025049060583115, 0.003999305889010429, -0.00450469646602869, 0.018053842708468437, -0.02418864332139492, 0.03514948859810829, 0.02862907014787197, 0.028465475887060165, 0.023896509781479836, -0.03797733783721924, 9.658659837441519e-05, -0.029400302097201347, 0.0007726927869953215, -0.03213467076420784, 0.01298240665346384, 0.009248942136764526, 0.004382000304758549, -0.011685335077345371, -0.024632684886455536, 0.011036798357963562, 0.025590883567929268, -0.002969535766169429, 0.007268278393894434, 0.008349171839654446, 0.032485231757164, 0.04414719343185425, -0.0006817662506364286, 0.01931585744023323, 0.016242615878582, -0.002053697593510151, -0.03765014931559563, 0.023055166006088257, 0.02050776220858097, -0.005868959240615368, 0.01115365233272314, 0.015366215258836746, -0.02654908038675785, 0.02710997685790062, 0.02254101075232029, 0.003783127060160041, -0.028792664408683777, 0.02165292575955391, 0.025847960263490677, -0.0043177311308681965, -0.017457889392971992, 0.018159009516239166, 0.006923560984432697, -0.022774716839194298, 0.041763387620449066, 0.004674133844673634, 0.033490169793367386, 0.014887116849422455, -0.028675811365246773, -0.003304028417915106, -0.03412117809057236, -0.03456522151827812, 0.022657863795757294, -0.05136873200535774, -0.016149133443832397, 0.003543577855452895, -0.011182865127921104, 0.0016008908860385418, 0.013309596106410027, -0.0019266195595264435, 0.02710997685790062, -0.02360437624156475, 0.017925303429365158, 0.007992768660187721, -0.0016140368534252048, -0.006981987506151199, 0.002881895750761032, 0.03977688029408455, -0.009301526471972466, -0.03250860050320625, 0.03624790906906128, 0.010867360979318619, 0.0191405788064003, 0.01209432166069746, -0.03010142222046852, 0.01443138811737299, 0.003473465796560049, 0.007414344698190689, -0.007133896928280592, -0.0060296328738331795, 0.008460182696580887, -0.02830188162624836, 0.028138285502791405, -0.014957228675484657, 0.004008069634437561, -0.0066606407053768635, -0.01680351048707962, -0.002123809652402997, 0.015249362215399742, -0.010773878544569016, 0.0009443211019970477, -0.0036516671534627676, -0.03802407905459404, 0.0029330190736800432, 0.011965782381594181, 0.06300732493400574, 0.008156363852322102, 0.021991800516843796, 0.026759415864944458, 0.017621485516428947, 0.01313431654125452, 0.04129597172141075, -0.003689644392579794, 0.02200348488986492, 0.031082989647984505, -0.03655172884464264, 0.011878143064677715, 0.05094806104898453, 0.02124393917620182, -0.023896509781479836, 0.05122850835323334, 0.011732076294720173, -0.002223134972155094, 0.0024670662824064493, 0.018264178186655045, -9.211330325342715e-05, -0.014396332204341888, 0.01340307854115963, -0.05071435123682022, -0.03358365222811699, -0.049031663686037064, -0.01416262611746788, 0.03664521127939224, -0.00958197470754385, 0.020729783922433853, 0.028699181973934174, -0.019549565389752388, -0.005030536558479071, -0.015588236972689629, 0.0162192452698946, -0.03295264393091202, -0.01797204464673996, 0.028792664408683777, 0.0034880724269896746, -0.026455597952008247, -0.034611962735652924, -0.015401271171867847, -0.002702233614400029, -0.003590319072827697, 0.007303334306925535, 0.03793059661984444, -0.02977423369884491, -0.0309661366045475, 0.024398978799581528, -0.010166240856051445, 0.03507937490940094, -0.0034822297748178244, -0.009652086533606052, -0.01949113793671131, -0.006759966257959604, 0.017481260001659393, 0.01743451878428459, -0.0008471867768093944, -0.004411214031279087, -0.004189192317426205, -0.0014679701998829842, -0.010487588122487068, -0.007309176959097385, 0.024585943669080734, 0.027647502720355988, -0.05150895565748215, 0.013765323907136917, 0.026315374299883842, -0.010943315923213959, 0.0031258270610123873, 0.0033303203526884317, -0.01091410219669342, -0.024983245879411697, -0.01297072134912014, -0.008664675988256931, 0.002037630183622241, -0.03299938514828682, 0.031971074640750885, -0.018217436969280243, -0.03360702097415924, 0.03634139150381088, -0.017037218436598778, -0.00016943734954111278, 0.04884469881653786, -0.025824589654803276, -0.0031550403218716383, -0.004335259087383747, 0.002366280183196068, 0.026128409430384636, -0.023803027346730232, -0.02481965161859989, -0.03208792954683304, 0.0015570708783343434, -0.026736045256257057, 0.02949378453195095, 0.008950966410338879, 0.010376577265560627, -0.028395364060997963, -0.0032514443155378103, -0.01562329288572073, 0.00893343798816204, -0.009576131589710712, -0.04089867323637009, -0.012643531896173954, 0.008950966410338879, 0.010797249153256416, 0.008939281105995178, 0.01632441207766533, -0.010440846905112267, -0.023919880390167236, -0.028792664408683777, 0.0043469443917274475, 0.018287548795342445, 0.011299719102680683, -0.02923670783638954, -0.014746892265975475, 0.045292358845472336, 0.007128054276108742, 0.031012877821922302, -0.008845798671245575, 0.02918996661901474, -0.02065967209637165, 0.022657863795757294, -0.004904919303953648, 0.009739726781845093, 0.0019587541464716196, -0.003602004377171397, 0.06099744886159897, 0.019350914284586906, 0.0199001245200634, -0.008793214336037636, -0.025707736611366272, 0.023639433085918427, 0.02078821137547493, 0.0161958746612072, -0.004858178086578846, -0.0043936860747635365, 0.039309464395046234, 0.028488846495747566, -0.0024933582171797752, -0.00324560166336596, -0.0169086791574955, -0.027250200510025024, -0.03704250976443291, -0.004659527447074652, 0.02091674879193306, -0.011948254890739918, -0.0013240944826975465, 0.02122056856751442, -0.03143354877829552, -0.029400302097201347, 0.019981922581791878, 0.019234061241149902, 0.031363438814878464, -0.02175809256732464, -0.030241645872592926, -0.004960424732416868, -0.0192106906324625, 0.002621897030621767, 0.007864230312407017, -0.019397655501961708, -0.014817004092037678, -0.030522095039486885, -0.01444307342171669, -0.007840859703719616, 0.043773263692855835, 0.002969535766169429, 0.001317521440796554, 0.002082910854369402, 0.014478129334747791, 0.01148668397217989, -0.009190515615046024, 0.0012254994362592697, 0.0015702168457210064, -0.0038678457494825125, 0.0031930177938193083, 0.019701475277543068, -0.02167629636824131, -0.039636656641960144, 0.0033157137222588062, 0.00151032954454422, 0.0015322394901886582, -0.011580166406929493, -0.015529809519648552, -0.0023954936768859625, -0.0052846926264464855, 0.007776590064167976, -0.02680615708231926, 0.0560428649187088, -0.004419977776706219, 0.04692830517888069, -0.00805703829973936, 0.010715452022850513, -0.028465475887060165, -0.00944175012409687, -0.03923935443162918, 0.0018141482723876834, -0.004951660521328449, -0.0022450450342148542, -0.028208397328853607, 0.013812066055834293, 0.012690273113548756, 0.0018988668452948332, -0.02767087332904339, -0.03645824268460274, -0.03367713466286659, 0.0028234689962118864, -0.005059749819338322, 0.021454274654388428, -0.03122321516275406, 0.018591366708278656, -0.013940604403614998, 0.019654732197523117, -0.027857838198542595, 0.029961198568344116, -0.008483553305268288, 0.011013427749276161, 0.023312242701649666, 0.012234545312821865, -0.05192962661385536, -0.0015702168457210064, 0.0026569529436528683, 0.03304612636566162, -0.012678587809205055, -0.000289212039206177, 0.013777009211480618, -0.0021515623666346073, 0.015179249458014965, 0.016990477219223976, -0.01099005714058876, 0.008214790374040604, -0.0009362874552607536, 0.024001678451895714, -0.013005777262151241, -0.024235384538769722, -0.013309596106410027, -0.012713644653558731, 0.022552696987986565, -0.0038999805692583323, -0.0030031311325728893, -0.02979760430753231, -0.04370315372943878, -0.022809773683547974, -0.0008281980990432203, -0.02091674879193306, 0.00897433701902628, -0.01193072646856308, -0.06403563171625137, -0.010148713365197182, -0.027787726372480392, -0.0139990309253335, 0.013274540193378925, -0.028652440756559372, 0.014104198664426804, 0.027904579415917397, -0.00897433701902628, 0.007794118486344814, -0.028769293799996376, -0.023791341111063957, -0.0139873456209898, -0.005237951409071684, -0.004306045826524496, 0.0051882886327803135, 0.00452514598146081, 0.02533380500972271, 0.04931211099028587, -0.0353364534676075, -0.006964459549635649, -0.029306819662451744, 0.03662183880805969, -0.01502734050154686, -0.01977158710360527, 0.024095160886645317, -0.005746263545006514, -0.031199844554066658, -0.030405240133404732, -0.01822912134230137, -0.0007248559268191457, -0.016511378809809685, 0.009798153303563595, 0.038211043924093246, 0.019280802458524704, -0.006134800612926483, -0.011311404407024384, -0.02327718771994114, 0.025427289307117462, 0.016534749418497086, 0.01639452390372753, 0.04092204198241234, -0.014711836352944374, -0.018696535378694534, -0.009301526471972466, 0.020823266357183456, -0.037252847105264664, 0.025474030524492264, -0.011597694829106331, 0.02776435576379299, 0.0032602082937955856, 0.0018331368919461966, -0.027180088683962822, 0.0022859435994178057, -0.01794867403805256, 0.0026335823349654675, 0.012479937635362148, -0.018392717465758324, -0.0031550403218716383, 0.004370315000414848, 0.010528486222028732, 0.031713999807834625, -0.021839890629053116, -0.023207074031233788, 0.03365376591682434, 0.009552760981023312, -0.03662183880805969, -0.006648955401033163, 0.01165027916431427, 0.01682688295841217, 0.008267374709248543, 0.005112334154546261, 0.012585105374455452, 0.0015672955196350813, -0.008927595801651478, 0.025403916835784912, -0.021641239523887634, 0.056183088570833206, -0.03561690077185631, -0.009383323602378368, 0.03276567906141281, -0.0325319729745388, 0.0309193953871727, 0.007239064667373896, -0.030194904655218124, 0.026128409430384636, -0.037019141018390656, -0.010873204097151756, -0.04164653271436691, 0.03659847006201744, -0.044077083468437195, 0.05828645080327988, -0.02236573025584221, 0.0021705508697777987, -0.0061172726564109325, -0.005273007322102785, 0.03122321516275406, -0.006228283513337374, 0.04003395512700081, 0.0016783062601462007, 0.026642562821507454, -0.031153103336691856, 0.036738693714141846, -8.878115477273241e-05, 0.021559443324804306, -0.04307214543223381, 0.038234416395425797, 0.024562573060393333, 0.023686174303293228, 0.02327718771994114, 0.020729783922433853, 0.024632684886455536, -0.018614739179611206, 0.00223335949704051, 0.03304612636566162, -0.0011948255123570561, 0.012269601225852966, 0.008816584944725037, -0.01682688295841217, -0.010604441165924072, 0.029961198568344116, 0.00042907087481580675, 0.004212563391774893, 0.0019733610097318888, -0.029563896358013153, -0.009447593241930008, 0.006362664978951216, 0.03652835637331009, 0.026665933430194855, 0.022178765386343002, -0.018042156472802162, -0.02916659601032734, 0.02477291040122509, -0.013741953298449516, -0.05361231416463852, 0.02680615708231926, -0.03278904780745506, 0.012690273113548756, 0.01853294111788273, -0.0017747102538123727, 0.021162141114473343, 0.008904225192964077]], "input": ["FLIGHT TICKET TERMS:Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.", "BOOKING MANAGEMENT:Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.", "OVERHEAD COMPARTMENTS:Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.", "BAGGAGE CONVEYOR BELT:The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.", "NORTH AMERICA:North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.", "CHECKED LUGGAGE:", "BAGS:Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.", "16 KG:The entity \"16 KG\" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.", "20 KG:The entity \"20 KG\" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.", "MEDICATIONS:Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.", "PASSPORTS:Passports are required documents for international travel and should be easily accessible during flights.", "VALUABLES:Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.", "ELECTRONIC DEVICES:Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.", "CHECKED BAGS:Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane's cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.", "PLANE'S BELLY:The plane's belly refers to the cargo hold of the aircraft where checked bags are stored.", "NO CHARGE:No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-c3f442b0ba316a10c5ff6c8852a355b6 b/cache/text_embedding/embedding-c3f442b0ba316a10c5ff6c8852a355b6 deleted file mode 100644 index b70c4f24617d229a33e7f194927240fb02a17691..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-c3f442b0ba316a10c5ff6c8852a355b6 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.04047493264079094, 0.05271751061081886, 0.0002837271604221314, 0.03511078655719757, -0.026089264079928398, 0.006467776373028755, -0.011138947680592537, -0.01024706196039915, -0.014308671467006207, 0.013205043040215969, -0.004732127767056227, 0.035136450082063675, -0.024241328239440918, -0.038986317813396454, -0.0016337871784344316, 0.05651604384183884, 0.010773210786283016, 0.044530127197504044, -0.036984387785196304, 0.002242547459900379, 0.03439214453101158, 0.04917563125491142, -0.017555393278598785, -0.016965080052614212, 0.02168758399784565, 0.01200516801327467, 0.04563375562429428, -0.04386281594634056, 0.05661870911717415, 0.0027719042263925076, 0.038524333387613297, -0.030747603625059128, 0.07063222676515579, -0.012832889333367348, 0.036753393709659576, 0.05492476746439934, -0.04568508639931679, 0.04909863322973251, -0.015527796000242233, -0.008059054613113403, -0.027898700907826424, -0.01020856387913227, 0.00955408625304699, 0.011305775493383408, -0.0010418702149763703, 0.05430878698825836, 0.018415195867419243, 0.023022202774882317, 0.005194112192839384, 0.010786043480038643, 0.045993074774742126, 0.028617342934012413, 0.011312192305922508, 0.02295803837478161, -0.009335926733911037, 0.010137982666492462, -0.008174550719559193, -0.017978878691792488, 0.022393392398953438, -0.022624384611845016, -0.0094450069591403, -0.010240646079182625, -0.024382490664720535, -0.016669923439621925, -0.010433139279484749, -0.006066748406738043, -0.008367043919861317, 0.011896088719367981, -0.03888365626335144, 0.015707457438111305, 0.019505992531776428, -0.011908921413123608, -0.003628499573096633, -0.014988814480602741, -0.018017375841736794, -0.015091477893292904, 0.006009000353515148, 0.020532622933387756, 0.015245473012328148, 0.013602863065898418, -0.05820998549461365, 0.007892226800322533, -0.02504980005323887, 0.012088581919670105, -0.009797911159694195, 0.012563399039208889, -0.10060985386371613, 0.005129947327077389, -0.021007439121603966, 0.0027189685497432947, 0.002133467933163047, 0.0012728621950373054, 0.007378911599516869, 0.03978195786476135, -0.00807188730686903, -0.01838953047990799, -0.0007378911250270903, -0.004789875820279121, -0.0008950940100476146, 0.05066424608230591, 0.019185170531272888, 0.020660951733589172, 0.02579410746693611, 0.00830929633229971, 0.014706491492688656, -0.048149000853300095, -0.043015845119953156, 0.007443075999617577, -0.021341094747185707, -0.015720289200544357, 0.02200840599834919, -0.0029868551064282656, -0.03467446565628052, 0.007629152853041887, 0.00911776814609766, -0.007840895093977451, -0.017632389441132545, -0.0033622169867157936, 0.02795003354549408, -0.03464880213141441, -0.04134757071733475, 0.008251547813415527, -0.0036509570199996233, -0.07206950336694717, -0.005306399893015623, -0.024523651227355003, 0.017093408852815628, -0.00081849773414433, -0.014655159786343575, -0.014680825173854828, -0.00020993805082980543, -0.019493158906698227, 0.009810743853449821, 0.002710947999730706, 0.012922720052301884, 0.008174550719559193, -0.012024417519569397, -0.00038538771332241595, -0.015437966212630272, -0.022919541224837303, -0.010606382973492146, -0.034905459731817245, -0.0008253151900134981, 0.011440521106123924, -0.03813934698700905, -0.005954460706561804, 0.01983964629471302, 0.0682196393609047, 0.060519907623529434, 0.0160539448261261, -0.01168434601277113, 0.024459486827254295, 0.00932309404015541, 0.00011278906458755955, 0.02306070178747177, -0.040680259466171265, -0.002025992376729846, 0.048482656478881836, -0.020981773734092712, 0.008161718025803566, -0.006467776373028755, -0.016746921464800835, -0.003885157173499465, -0.013282040134072304, 0.030952928587794304, 0.015425133518874645, -0.014629493467509747, 0.012313157320022583, -0.06642303615808487, -0.02689773589372635, -0.034520473331213, -0.03108125738799572, 0.025909604504704475, -0.020853444933891296, -0.06570439040660858, -0.009624667465686798, 0.005312816239893436, -0.026076430454850197, 0.0020676993299275637, -0.034520473331213, 0.005684969946742058, 0.031517576426267624, -0.020019307732582092, -0.025126798078417778, -0.056362051516771317, -0.013397536240518093, -0.005778008606284857, 0.0329291932284832, -0.04861098527908325, 0.013076714240014553, -0.007295497693121433, -0.047584354877471924, -0.0005987344775348902, -0.0005802871892228723, -0.03462313488125801, -0.005155613180249929, -0.03341684490442276, 0.011992335319519043, 0.02451081946492195, 0.008771279826760292, -0.011177446693181992, -0.016580093652009964, -0.007366078440099955, 0.00923326425254345, -0.03752337023615837, -0.011344274505972862, -0.030542276799678802, 0.02570427767932415, 0.053846802562475204, 0.02843768335878849, 0.022919541224837303, -0.05002260208129883, -0.03162023797631264, 0.01983964629471302, 0.009573335759341717, -0.03357083722949028, 0.056824035942554474, 0.04447879642248154, 0.004138607066124678, 0.010003237053751945, -0.017799217253923416, -0.022072570398449898, -0.01357719674706459, 0.02617909386754036, -0.024767477065324783, 0.00791147630661726, -0.024536484852433205, 0.00038358307210728526, -0.023278862237930298, -0.04209187626838684, -0.0409882478415966, 0.013166544958949089, -0.006961842533200979, -0.0024687270633876324, 0.0017340441700071096, 0.07058089226484299, 0.0010547031415626407, -0.01854352466762066, 0.0014918233500793576, 0.012415820732712746, 0.035470105707645416, 0.028309354558587074, 0.0009127392549999058, -0.029284654185175896, -0.03880665823817253, 0.007500824052840471, -0.004077650606632233, 0.03949963301420212, -0.03159457445144653, -0.010227812454104424, 0.007513656746596098, 0.029849300161004066, 0.03126091882586479, -0.032082222402095795, 0.0021479048300534487, 0.033622171729803085, -0.012704560533165932, -0.03539310768246651, -0.01863335631787777, -0.01565612480044365, 0.0064132362604141235, 0.006724433973431587, -0.03636840730905533, 0.025819772854447365, -0.024292659014463425, -0.04504344239830971, 0.06642303615808487, -0.04868798330426216, 0.008565953932702541, 0.03149190917611122, -0.05692669749259949, 0.03880665823817253, -0.011690761893987656, 0.01815853826701641, -0.03067060559988022, 0.004607007373124361, 0.00999682117253542, -0.012710977345705032, 0.007834479212760925, -0.003622082993388176, -0.0013795356499031186, -0.04121924191713333, 0.04383714869618416, -0.06549906730651855, -0.012146329507231712, 0.025486119091510773, -0.014821987599134445, 0.017414230853319168, -0.013243542052805424, 0.03244154527783394, 0.030952928587794304, -0.06062256917357445, -0.03218488767743111, -0.02295803837478161, -0.0029595850501209497, 0.001154960016719997, -0.06883561611175537, -0.007853728719055653, -0.0248958058655262, -0.028129693120718002, 0.0032018059864640236, 0.046788714826107025, -0.002521662740036845, 0.011055533774197102, -0.03985895588994026, -0.0005630429950542748, 0.03516211733222008, -0.011921754106879234, -0.02877133898437023, -0.02547328546643257, -0.024292659014463425, -0.0001597093214513734, -0.028129693120718002, -0.0449664443731308, -0.0038562833797186613, -0.020545456558465958, -0.011344274505972862, -0.007962808012962341, 0.018915679305791855, -0.005636846646666527, 0.024716144427657127, 0.01871035248041153, 0.025640113279223442, -0.05744001269340515, -0.005264692939817905, -0.024690479040145874, 0.03464880213141441, 0.03236454725265503, -0.019813980907201767, 0.012281075119972229, -0.07242882996797562, 0.01831253245472908, 0.017478395253419876, -0.024703312665224075, -0.053692810237407684, -0.02553744986653328, -0.02257305197417736, 0.02304787002503872, 0.018120039254426956, -0.031106924638152122, -0.00198909780010581, -0.02674374170601368, 0.05887729674577713, -0.0011685950448736548, 0.023702347651124, -0.002245755633339286, 0.04958628490567207, 0.015707457438111305, -0.02408733405172825, 0.011953836306929588, -0.02417716383934021, 0.02828368917107582, -0.029361650347709656, 0.016130942851305008, -0.03092726320028305, 0.003997445106506348, 0.011061950586736202, -0.0033654251601547003, -0.02571711130440235, 0.02103310637176037, -0.024857306852936745, 0.00899585522711277, 0.039730627089738846, 0.0449664443731308, -0.02416433021426201, 0.04891897365450859, -0.015373801812529564, 0.023702347651124, 0.021225599572062492, -0.0011300963815301657, 0.007661235053092241, 0.005303191486746073, -0.06857895851135254, 0.0034648801665753126, -0.006503066513687372, -0.01233240682631731, 0.0002684881037566811, 0.023509852588176727, -0.038678329437971115, -0.0417582206428051, 0.07935858517885208, -0.030952928587794304, 0.01895417831838131, 0.02297087199985981, 0.03287786245346069, 0.01232599001377821, -0.03395582363009453, 0.03870399296283722, 0.027590712532401085, -0.008302879519760609, 0.019980808719992638, -0.010266311466693878, -0.029361650347709656, 0.034417808055877686, 0.003907614853233099, -0.016657089814543724, 0.026089264079928398, -0.008103969506919384, 0.028078362345695496, -0.0030863098800182343, 0.011042701080441475, -0.011203112080693245, -0.001719607156701386, -0.013294873759150505, -0.00023740845790598541, 0.048149000853300095, 0.031209586188197136, 0.011094032786786556, -0.0019265374867245555, -0.026718076318502426, 0.017414230853319168, -0.08521038293838501, 0.027847370132803917, -0.007398160640150309, 0.019647153094410896, -0.016259271651506424, 0.00786656141281128, 0.03262120485305786, -0.029361650347709656, -0.01655442826449871, 0.026384420692920685, 0.020994607359170914, -0.05323082581162453, 0.051203228533267975, -0.051844872534275055, 0.03231321647763252, -0.010991369374096394, -0.01052296906709671, 0.0393456406891346, -0.032569874078035355, -0.01538663450628519, -0.031029926612973213, 0.00983641017228365, 0.04812333360314369, 0.00014707694936078042, -0.02570427767932415, -0.026487084105610847, -0.021892908960580826, 0.006073164753615856, -0.05287150293588638, -0.018813015893101692, -0.0345461368560791, 0.03156890720129013, 0.03341684490442276, -0.03485412895679474, 0.0070131742395460606, 0.0028039864264428616, 0.023407191038131714, -0.0028023822233080864, -0.012101414613425732, 0.020545456558465958, -0.03126091882586479, -0.07899926602840424, -0.025973768904805183, -0.06128988042473793, 0.0030863098800182343, -0.039011985063552856, -0.060673899948596954, 0.041655559092760086, -0.03906331583857536, 0.06755232810974121, 0.04684004560112953, 0.050638582557439804, 0.043503496795892715, 0.017221737653017044, 0.04512044042348862, 0.00455888407304883, -0.023753678426146507, -0.007513656746596098, -0.00839270930737257, 0.0038017434999346733, 0.030465278774499893, 0.000257259322097525, 0.008867526426911354, 0.017670888453722, -0.014757823199033737, 0.012858555652201176, -0.01774788647890091, -0.03239021450281143, -0.041090913116931915, -0.030234286561608315, 0.027128728106617928, -0.06329181045293808, -0.055540744215250015, 0.010875874198973179, 0.08100119978189468, 0.015117143280804157, 0.011645847000181675, -0.04673738405108452, -0.03793402016162872, -0.00744949234649539, -0.00863011833280325, 0.035136450082063675, -0.013359038159251213, -0.07740798592567444, -0.006852762773633003, 0.04085991904139519, 0.020994607359170914, 0.07001624256372452, -0.010420306585729122, 0.004597382619976997, -0.020930442959070206, 0.01638760045170784, -0.06852763146162033, 0.05471944063901901, -0.03446914255619049, -0.021276930347085, 0.05202453210949898, 0.0024173955898731947, -0.021700415760278702, -0.014924650080502033, -0.0007419014000333846, 0.010176481679081917, -0.02434399165213108, -0.0030782893300056458, -0.04904730245471001, 0.001355473999865353, 0.021790245547890663, -0.010875874198973179, 0.034084152430295944, 0.020198967307806015, -0.0034969623666256666, -0.020506957545876503, -0.03162023797631264, -0.00531923258677125, -0.036984387785196304, -0.006146953906863928, -0.07083754986524582, 0.00811680220067501, 0.0164645966142416, 0.007802396547049284, -0.05202453210949898, -0.020506957545876503, 0.0038242009468376637, 0.04193788394331932, 0.0033718417398631573, 0.02466481365263462, -0.013846687972545624, 0.0192878320813179, 0.011607348918914795, 0.02594810165464878, -0.013910852372646332, -0.012666061520576477, -0.008976605720818043, 0.0031793483067303896, -0.01397501677274704, 0.03665073215961456, 0.0013691089116036892, 0.01583578623831272, 0.014860485680401325, 0.04142456874251366, 0.0224960558116436, 0.040757257491350174, -0.003622082993388176, 0.004148231353610754, -0.031543243676424026, 0.03431514650583267, 0.02193140797317028, -0.0030157289002090693, 0.004940662533044815, 0.001230353256687522, 0.010766793973743916, 0.028950998559594154, -0.023176198825240135, 0.008437625132501125, 0.05017659813165665, 0.0065704393200576305, 0.01695224642753601, 8.782508666627109e-05, -0.014103345572948456, -0.024048835039138794, -0.013384703546762466, 0.009964738972485065, 0.029489979147911072, 0.04327250272035599, 0.006718017626553774, 0.07622735947370529, -0.04463278874754906, 0.007212083786725998, -0.00036593785625882447, 0.004488302860409021, 0.009079269133508205, 0.018915679305791855, -0.013808188959956169, -0.04778968170285225, 0.0018415196100249887, 0.022149566560983658, -0.041244905441999435, 0.008809778839349747, 0.030824599787592888, 0.01024706196039915, 0.003225867636501789, 0.013923685066401958, -0.0409625843167305, 0.011870422400534153, 0.04974028095602989, -0.018761685118079185, -0.00023660639999434352, -0.01469365879893303, 0.0009752995683811605, 0.019133837893605232, -0.02619192749261856, -0.011960253119468689, -4.7271150833694264e-05, 0.015348135493695736, 0.005367355886846781, 0.009368008933961391, 0.006897678133100271, 0.03126091882586479, 0.030388282611966133, 0.05528408661484718, 0.005514934193342924, 0.02256022021174431, -0.01566895842552185, -0.01799171045422554, 0.014424167573451996, -0.043503496795892715, 0.0065062749199569225, -0.011511101387441158, 0.0030221454799175262, -0.06072523444890976, 0.014860485680401325, 0.036573734134435654, -0.017452729865908623, -0.02513962984085083, 0.026949068531394005, -0.00174687709659338, -0.03382749482989311, -0.007038839627057314, -0.015040146186947823, -0.012781557627022266, -0.0001335422566626221, -0.015489297918975353, 0.014308671467006207, 0.017157573252916336, 0.016207939013838768, 0.013718359172344208, -0.01654159463942051, 0.008777696639299393, 0.0054411450400948524, 0.024112999439239502, -0.01823553629219532, 0.007256999146193266, -0.057388681918382645, 0.004305434413254261, 0.025678612291812897, 0.02972097136080265, 0.01736290007829666, -0.0200834721326828, 0.008360627107322216, 0.03203089162707329, -0.0021896117832511663, -0.0017067743465304375, -0.0031520784832537174, 0.013795356266200542, -0.026949068531394005, -0.042605191469192505, 0.04732769727706909, -0.012505650520324707, 0.018338199704885483, -0.002499205293133855, 0.01991664431989193, -0.03277520090341568, -0.016259271651506424, -0.009175515733659267, 0.009675998240709305, -0.016644258052110672, -0.02263721637427807, -0.013551531359553337, -0.04263085871934891, 0.034571804106235504, -0.037061385810375214, 0.019801149144768715, -0.020930442959070206, -0.002956376876682043, 0.02449798583984375, -0.02448515221476555, -0.0035001705400645733, -0.02941298298537731, 0.02689773589372635, 0.00518448743969202, -0.038601331412792206, -0.010054568760097027, 0.032492876052856445, -0.024857306852936745, 0.023227529600262642, 0.013134462758898735, 0.0060282498598098755, -0.003525836393237114, 0.003612458473071456, -0.010741128586232662, 0.03123525343835354, -0.01736290007829666, 0.007545738946646452, 0.03467446565628052, 0.05212719738483429, 0.024292659014463425, 0.00010607184958644211, -0.002778320573270321, -0.06934893131256104, 0.01942899450659752, -0.001488615176640451, -0.011831924319267273, -0.04296451434493065, -0.020622452720999718, -0.013590029440820217, -0.0055021014995872974, 0.020814945921301842, 0.029849300161004066, 0.011633014306426048, 0.012531316839158535, -0.005572682246565819, -0.04047493264079094, -0.0385756641626358, -0.05831265076994896, -0.007263415493071079, -0.024061666801571846, -0.012563399039208889, 0.007282664533704519, -0.021584920585155487, 0.0053930217400193214, 0.01489898469299078, -0.020853444933891296, 0.00018306919082533568, -0.016836751252412796, -0.02185440994799137, 0.015630459412932396, -0.029258986935019493, -0.007205667439848185, 0.04873931407928467, 0.028540346771478653, -0.0059512523002922535, 0.033057522028684616, -0.006098830606788397, -0.0034199650399386883, -0.007404576987028122, -0.012704560533165932, 0.022701380774378777, 0.005492476746439934, 0.01944182813167572, 0.00700675742700696, -0.048636652529239655, 0.03539310768246651, -0.0037343709263950586, -0.02513962984085083, 0.04306717589497566, -0.01441133487969637, -0.00728908134624362, -0.025242293253540993, 0.03729237616062164, -0.021238431334495544, 0.009239680133759975, -0.02306070178747177, -0.013500199653208256, 0.01538663450628519, 0.0019650361500680447, -0.00811680220067501, 0.0522298589348793, -0.011536767706274986, -0.030157290399074554, 0.00956050306558609, 0.02859167754650116, -0.008463290520012379, 0.02113576978445053, 0.03475146368145943, -0.025075465440750122, -0.05841531231999397, 0.006955426186323166, -0.020455624908208847, -0.02330452762544155, 0.011857589706778526, 0.015206973999738693, 0.00811680220067501, 0.02474181167781353, 0.012255409732460976, -0.00728908134624362, -0.018299700692296028, -0.049432288855314255, -0.03516211733222008, -0.031029926612973213, 0.009528419934213161, -0.004411305766552687, -0.02682073973119259, 0.053846802562475204, -0.0020003265235573053, 0.002358043333515525, -0.009502754546701908, 0.03077326901257038, 0.006608937866985798, 0.010657714679837227, -0.010131565853953362, -0.03380183130502701, -0.01293555274605751, -0.008873943239450455, 0.015296803787350655, -0.014154677279293537, -0.012101414613425732, -0.06898961216211319, -0.005027284380048513, 0.04355482757091522, -0.027975698933005333, 0.003455255413427949, -0.034417808055877686, 0.023266028612852097, 0.04355482757091522, -0.008411958813667297, -0.01774788647890091, -0.0038402420468628407, 0.049919940531253815, -0.04255386069417, 0.0034327979665249586, 0.03195389360189438, 0.009695247747004032, 0.0017741469200700521, 0.04304151237010956, -0.04463278874754906, -0.030542276799678802, -0.007263415493071079, -0.010349725373089314, -0.010234229266643524, 0.02626892551779747, 0.002795965876430273, 0.017863381654024124, -0.007718983106315136, 0.011171029880642891, -0.00807830411940813, -2.4412567654508166e-05, 0.054565444588661194, -0.032082222402095795, -0.014270173385739326, -0.015425133518874645, 0.011998751200735569, -0.010728295892477036, -0.02682073973119259, -0.017067743465304375, 0.0002921487612184137, -0.013782523572444916, 0.015283971093595028, 0.0001603108539711684, 0.03942263498902321, 0.04198921471834183, -0.02191857434809208, -0.0055855149403214455, 0.02057112194597721, -0.025601614266633987, 0.012505650520324707, -0.009149850346148014, -0.02915632538497448, -0.03223621845245361, 0.016361933201551437, -0.015117143280804157, -0.015707457438111305, -0.03475146368145943, 0.03839600458741188, 0.00455567566677928, -0.027693375945091248, -0.00190247583668679, 0.03164590522646904, -0.020134802907705307, -0.018286867067217827, -0.0007394952699542046, 0.008334961719810963, -0.0009303844999521971, -0.011761343106627464, -0.01554062869399786, 0.0018479360733181238, 0.01800454407930374, -0.0032547416631132364, -0.03303185850381851, -0.02451081946492195, 0.035624101758003235, -0.03428947925567627, 0.010535801760852337, -0.037626031786203384, -0.04627539962530136, -0.006993924733251333, -0.010792460292577744, 0.023509852588176727, 0.034571804106235504, 0.00515882158651948, 0.017696553841233253, 0.017414230853319168, 0.026923401281237602, 0.008091136813163757, 0.03333984687924385, 0.0005417885258793831, -0.005813298746943474, 0.021097270771861076, 0.03277520090341568, -0.010792460292577744, 0.0036573733668774366, -0.0055983480997383595, -0.011908921413123608, -0.007686900906264782, -0.0055213505402207375, -0.002197632333263755, 0.019403329119086266, -0.011395606212317944, 0.015720289200544357, -0.0006957832374610007, 0.020224634557962418, 0.018120039254426956, -0.012114247307181358, 0.01959582231938839, -0.024921471253037453, 0.016605759039521217, 0.007032423280179501, -0.02851467952132225, -0.00927176233381033, 0.004863664973527193, -0.012191245332360268, 0.0035065871197730303, -0.0017083784332498908, -0.02465198002755642, 0.006464567966759205, 0.01750406064093113, -0.03808801621198654, 0.04168122634291649, 0.0028312562499195337, 0.010587133467197418, 0.017670888453722, -0.022868208587169647, -0.013333371840417385, 0.003930072300136089, -0.02401033602654934, 0.02256022021174431, -0.01092078909277916, 0.038755327463150024, -0.025498950853943825, -0.03446914255619049, 0.008495372720062733, 0.008488955907523632, 0.0035932089667767286, 0.022136734798550606, 0.008450457826256752, 0.02121276594698429, 0.004594174213707447, 0.017850549891591072, 0.04532576724886894, -0.006214326713234186, 0.031928230077028275, 0.015514963306486607, -0.01718323864042759, -0.033134520053863525, -0.0361630842089653, -0.030798934400081635, -0.0130510488525033, -0.012441486120223999, 0.021097270771861076, -0.010972120799124241, -0.0015279159415513277, 0.03816501423716545, -0.001047484576702118, 0.002961189253255725, 0.0023179405834525824, 0.03051661141216755, 0.0248958058655262, -0.004876498132944107, 0.009855658747255802, -0.05471944063901901, 0.0018639771733433008, 0.01518130861222744, 0.006551189813762903, -0.02498563565313816, 0.015258305706083775, 0.028874000534415245, 0.034571804106235504, -0.045736417174339294, -0.023497020825743675, 0.011337857693433762, -0.012281075119972229, -0.03752337023615837, 0.04239986836910248, 0.02217523381114006, -0.016028279438614845, 0.0265127494931221, -0.016336267814040184, 0.02048129215836525, 0.024934304878115654, -0.007417410146445036, -0.012184828519821167, 0.014590995386242867, 0.0385500006377697, 0.027770372107625008, -0.0038562833797186613, 0.004805916920304298, 0.026641078293323517, -0.0026179093401879072, 0.002988459076732397, -0.020032139495015144, 0.019159503281116486, 0.038678329437971115, 0.013898019678890705, 0.0035867926198989153, 0.007686900906264782, 0.008662200532853603, 0.026166262105107307, 0.034571804106235504, 0.018351031467318535, 0.017414230853319168, 0.00019590207375586033, 0.021661916747689247, 0.011992335319519043, 0.027847370132803917, 0.03413548693060875, 0.013731191866099834, -0.0069810920394957066, 0.01711907424032688, -0.0006199889467097819, -0.04666038602590561, 0.014218841679394245, 0.0030991428066045046, 0.0067950147204101086, 0.0022537761833518744, -0.0011276901932433248, -0.046455059200525284, 0.006929760333150625, -0.01847936026751995, -0.031106924638152122, 0.007378911599516869, -0.015412299893796444, 0.013076714240014553, 0.018209870904684067, -0.0038017434999346733, 0.017003579065203667, -0.007853728719055653, 0.02555028349161148, 0.0112480279058218, -0.025768442079424858, 0.0038883655797690153, 0.025845440104603767, -0.007795980200171471, 0.014950316399335861, 0.02569144405424595, -5.3687595936935395e-05, 0.03174856677651405, -0.005094657186418772, -0.01799171045422554, -0.045017775148153305, 0.002977230353280902, -0.004488302860409021, -0.002062886953353882, -0.028643008321523666, 0.035701099783182144, -0.02513962984085083, -0.023189030587673187, 0.030901597812771797, 0.021661916747689247, 0.02266288362443447, 0.027975698933005333, -0.004497927613556385, 0.028874000534415245, -0.05887729674577713, 0.011029868386685848, 0.0057587590999901295, -0.022342059761285782, 0.019493158906698227, 0.005027284380048513, -0.027308389544487, -0.008918858133256435, 0.0164774302393198, -0.021315429359674454, -0.012082165107131004, 0.009964738972485065, 0.03544444218277931, -0.02225222997367382, -0.01895417831838131, 0.00022738275583833456, 0.007667651399970055, -0.01446266658604145, -0.0054251039400696754, -0.015527796000242233, 0.007103004492819309, 0.028181025758385658, 0.008155301213264465, 0.00395252974703908, -0.04766135290265083, -0.010676964186131954, 0.0009472276433371007, -0.01140202209353447, -0.010843791998922825, 0.03672773018479347, -0.0059833345003426075, -0.00504332548007369, -0.015964115038514137, 0.018351031467318535, 0.02144375815987587, -0.0018334990600124002, -0.017940379679203033, -0.015591960400342941, -0.013320539146661758, 0.03916597738862038, -0.01719607226550579, 0.02041712775826454, 0.00017835710605140775, 0.004783459473401308, 0.034494806081056595, -0.013731191866099834, 0.03405848890542984, 0.00041345966747030616, -0.010445971973240376, 0.014655159786343575, -0.003160099033266306, -0.0068720122799277306, 0.03849866986274719, -0.013448867946863174, -0.00017224143084604293, -0.0200706385076046, 0.008694282732903957, -0.0031793483067303896, -0.012749475426971912, -0.002435040660202503, 0.0009143433417193592, -0.019454659894108772, 0.02617909386754036, -0.013949350453913212, -0.013448867946863174, 0.010465221479535103, -0.005412271246314049, 0.03688172250986099, -0.04088558629155159, 0.012730225920677185, -0.04948362335562706, -0.006159787066280842, 0.007879394106566906, 0.008200216107070446, -0.00795639120042324, 0.023009371012449265, -0.004542842973023653, 0.02280404418706894, -0.012749475426971912, -0.02972097136080265, 0.02208540216088295, -0.0188643466681242, 0.004837999120354652, 0.004549259319901466, -0.004481886513531208, -0.004972744733095169, -0.033930160105228424, 0.018209870904684067, 0.04183521866798401, -0.01598978042602539, 0.009143433533608913, -0.018440861254930496, -0.015309637412428856, -0.009239680133759975, -0.02032729610800743, 0.10148248821496964, -0.01489898469299078, -0.011883256025612354, 0.014218841679394245, 0.014437000267207623, -0.02385634183883667, 0.011479019187390804, 0.011061950586736202, -0.029772303998470306, 0.030182955786585808, -0.012088581919670105, 0.03410981968045235, 0.03108125738799572, 0.004106524400413036, 0.023920506238937378, -0.01221049390733242, -0.038036685436964035, -0.005572682246565819, 0.015964115038514137, -0.011594515293836594, 0.0033237184397876263, -0.032005224376916885, 0.033057522028684616, -0.044709786772727966, -0.0026531999465078115, -0.010702629573643208, 0.013307706452906132, -0.0112480279058218, -0.015168474987149239, 0.04789234325289726, 0.028643008321523666, -0.008700698614120483, -0.036188747733831406, -0.03367350250482559, -0.01325637474656105, -0.010080235078930855, -0.031106924638152122, -0.00411935755982995, 0.020044973120093346, 0.01840236410498619, -0.013705525547266006, -0.022547386586666107, -0.0003982206108048558, 0.015964115038514137, 0.018043043091893196, 0.014834820292890072, -0.03162023797631264, -0.05477077141404152, 0.01935199648141861, -0.01944182813167572, 0.04198921471834183, 0.007718983106315136, -0.045171771198511124, -0.015681790187954903, -0.010381807573139668, -0.002229714533314109, -0.0037696612998843193, -0.022021237760782242, -0.0028681508265435696, 0.0112416110932827, -0.014424167573451996, -0.01702924445271492, -0.048149000853300095, -0.00863011833280325, 0.025011301040649414, 0.02715439349412918, -0.005335273686796427, -0.028899667784571648, 0.01958298869431019, -0.021392427384853363, -0.030157290399074554, -0.0064741927199065685, -0.0020933651831001043, 0.0019698485266417265, 0.014924650080502033, 0.02504980005323887, -0.025190962478518486, 0.025729943066835403, -0.015861451625823975, 0.039396971464157104, -0.013410369865596294, -0.014257339760661125, 0.023163365200161934, 0.036342743784189224, -0.011742093600332737, -0.035855092108249664, 0.02167475037276745, 0.020288798958063126, 0.01736290007829666, -0.03067060559988022, 0.03493112325668335, -0.008052637800574303, -0.03326284885406494, -0.02915632538497448, 0.005495684687048197, 0.005152405239641666, -0.004177105613052845, -0.04001294821500778, 0.011819090694189072, -0.032159220427274704, -0.003788910573348403, -0.02900232933461666, -0.04506910592317581, 0.0030814975034445524, -0.01589995063841343, -0.02072511613368988, 0.0018014168599620461, 0.010548635385930538, -0.0028633384499698877, -0.014655159786343575, -0.03364783525466919, -0.014385669492185116, 0.030542276799678802, -0.009355176240205765, -0.0401412770152092, -0.012505650520324707, 0.034340813755989075, -0.037857022136449814, 0.005755550693720579, 0.02096894197165966, -0.02851467952132225, 0.009804327972233295, 0.048790644854307175, 0.02674374170601368, -0.011485435999929905, 0.008322129026055336, -0.014667992480099201, 0.02537062205374241, 0.026384420692920685, 0.018248368054628372, -0.02900232933461666, 0.008059054613113403, 0.028617342934012413, 0.015758788213133812, 0.015848618000745773, 0.0017869798466563225, -0.03218488767743111, 0.010170064866542816, -0.010067401453852654, -0.00395252974703908, 0.010824542492628098, 0.01936483010649681, -0.005688178353011608, -0.0052037364803254604, -0.05125455930829048, 0.029541311785578728, -0.007597070652991533, -0.011633014306426048, -0.013461700640618801, 0.0033718417398631573, 0.02956697717308998, 0.01686241663992405, -0.02825802192091942, -0.011607348918914795, 0.016644258052110672, 0.043246835470199585, 0.01505297888070345, -0.013179377652704716, 0.013641361147165298, -0.035778094083070755, -0.04209187626838684, -0.013063881546258926, -0.06863029301166534, 0.03729237616062164, -0.0032066181302070618, 0.007725399453192949, -0.015887117013335228, -0.007763898000121117, -0.04481244832277298, -0.015758788213133812, -0.03123525343835354, -0.026923401281237602, 0.0011589702917262912, 0.023420022800564766, -0.02104593813419342, 0.004844415932893753, 0.016746921464800835, 0.03711271658539772, -0.013602863065898418, 0.005351314786821604, 0.025524616241455078, -0.006291323807090521, -0.033134520053863525, 0.009098518639802933, -0.01414184458553791, -0.00888035912066698, 0.019069673493504524, -0.02723139151930809, 0.015283971093595028, -0.015309637412428856, 0.021187100559473038, -0.03470013290643692, 0.023817842826247215, -0.0032114305067807436, -0.029053661972284317, -0.018928511068224907, -0.02376651205122471, 0.006079581566154957, -0.029130658134818077, -9.013099770527333e-05, 0.031928230077028275, -0.004228436853736639, 0.015168474987149239, 0.0014493144117295742, 0.03318585082888603, -0.033545173704624176, -0.005271109286695719, -0.026795072481036186, 0.01921083591878414, -0.007558571640402079, 0.004892539232969284, -0.037959687411785126, -0.0038498668000102043, 0.02208540216088295, 0.01293555274605751, -0.0004692025249823928, 0.024703312665224075, -0.01418034266680479, -0.028129693120718002, -0.009457839652895927, -0.023753678426146507, -0.017863381654024124, 0.02135392837226391, 0.012544149532914162, 0.005126739386469126, 0.013513032346963882, -0.017401397228240967, 0.01710624247789383, 0.0021735706832259893, -0.01615660823881626, 0.05343615263700485, 0.0036188748199492693, 0.010619215667247772, -0.020917609333992004, -0.023407191038131714, 0.0022826502099633217, -0.04270785674452782, 0.012184828519821167, 0.02344568818807602, -0.00795639120042324, 0.012544149532914162, 0.011549600400030613, -0.012152746319770813, -0.013564364053308964, -0.017709387466311455, 0.017799217253923416, -0.026692409068346024, -0.046480726450681686, -0.01059996709227562, -0.04830299690365791, -0.007860144600272179, 0.03221055120229721, 0.05081824213266373, -0.014090512879192829, 0.021751748397946358, -0.02014763653278351, 0.011299358680844307, 0.007616319693624973, -0.038755327463150024, -0.030080292373895645, -0.04137323424220085, -0.028052696958184242, 0.028566012158989906, 0.005960877053439617, 0.002938731573522091, 0.040115613490343094, -0.004154648166149855, 0.0020516582299023867, -0.005078616086393595, -0.013782523572444916, -0.019967975094914436, 0.00802697241306305, -0.03405848890542984, -0.03518778458237648, -0.032492876052856445, -0.013410369865596294, -0.007173585239797831, -0.008565953932702541, -0.009137017652392387, -0.004334308207035065, -0.02504980005323887, -0.006275282707065344, -0.038344673812389374, -0.009412924759089947, 0.0056015560403466225, 0.005877463147044182, 0.01510431058704853, -0.0023997502867132425, -0.005094657186418772, 0.039627961814403534, -0.01976265013217926, -0.0013017362216487527, -0.011119699105620384, -0.0261020977050066, 0.030542276799678802, -0.007321163546293974, -0.008014139719307423, 0.018428029492497444, -0.016426097601652145, -0.02263721637427807, 0.018736017867922783, -0.018774516880512238, 0.029592642560601234, -0.013205043040215969, -0.001298528048209846, 0.026641078293323517, 0.007776731159538031, -0.012941968627274036, -0.006461360026150942, 0.004773834720253944, -0.010728295892477036, 0.012435070239007473, 0.009894157759845257, -0.003962154500186443, 0.007410993799567223, 0.006942593026906252, -0.016092443838715553, -0.024318326264619827, -0.005556641146540642, -0.021187100559473038, -0.000919155718293041, 0.03765169903635979, -0.02578127570450306, -0.02046845853328705, 0.07982057332992554, -0.0100353192538023, -0.023266028612852097, 0.0013225896982476115, -0.019403329119086266, 0.010882290080189705, 0.0064741927199065685, -0.06519107520580292, 0.0014573349617421627, -0.026487084105610847, -0.005527766887098551, 0.009252512827515602, -0.02738538570702076, -0.02135392837226391, 0.00016672730271238834, -0.008578786626458168, -0.01188967190682888, 0.03051661141216755, -0.004051984753459692, 0.0020933651831001043, 0.009201182052493095, 0.04191221669316292, 0.00959900114685297, 0.038601331412792206, -0.022778378799557686, -0.014706491492688656, 0.037882689386606216, -0.0057427179999649525, -0.021738914772868156, -0.00744949234649539, 0.015463631600141525, -0.007423826493322849, 0.0329291932284832, 0.04183521866798401, 0.0030125207267701626, -0.020455624908208847, -0.03780569136142731, 0.007969223894178867, -0.0058678388595581055, 0.012024417519569397, -0.00035651371581479907, 0.03459747135639191, -0.014039181172847748, -0.002032408956438303, -0.015450798906385899, 0.03790835663676262, -0.028797004371881485, -0.018915679305791855, -0.016823917627334595, -0.0015808516182005405, 0.034494806081056595, -0.005688178353011608, -0.001337828696705401, -0.012672478333115578, -0.02547328546643257, -0.002977230353280902, -0.014924650080502033, -0.017773551866412163, -0.020622452720999718, -0.024998469278216362, 0.03246720880270004, 0.007378911599516869, -0.025922436267137527, 0.026795072481036186, -0.010407472960650921], [0.0382680706679821, -0.00830655638128519, 0.05191739648580551, 0.019656389951705933, -0.04237876832485199, 0.03515666350722313, -0.04217436909675598, -0.009328552521765232, 0.021053116768598557, -0.005337090231478214, -0.018952347338199615, -0.01624973677098751, 0.014694031327962875, 0.02468688040971756, -0.00117387599311769, 0.027979979291558266, 0.001737393205985427, 0.03863144665956497, -0.0038665514439344406, -0.0012718172511085868, 0.030069392174482346, 0.04583084210753441, 0.05368885397911072, 0.003664991119876504, -0.02952432818710804, -0.011196534149348736, 0.007659292314201593, -0.01992892101407051, 0.04099339246749878, -0.011020523495972157, 0.09220674633979797, -0.0023548491299152374, -0.02511839009821415, 0.00110574287828058, 0.01818017289042473, 0.008772131986916065, 0.008630188181996346, 0.005183790810406208, 0.01078773569315672, -0.009197963401675224, -0.052008241415023804, -0.026912560686469078, -0.02289270982146263, -0.03992597758769989, -0.02859317697584629, 0.04260587692260742, 0.01249106228351593, -0.015409428626298904, 0.008022668771445751, 0.03990326449275017, 0.052235350012779236, 0.038654159754514694, 0.01169617660343647, 0.03422550857067108, 0.009476173669099808, -0.007511670235544443, 0.0001999634550884366, 0.03383942320942879, 0.004090822767466307, -0.010083694010972977, -0.03588341549038887, -0.006398830562829971, -0.009481851942837238, 0.013842367567121983, -0.00036231178091838956, 0.005955965258181095, -0.028388777747750282, 0.0496462918817997, -0.03665558993816376, -0.002323621418327093, 0.04094797372817993, -0.019406568259000778, 0.019690455868840218, -0.02518652379512787, -0.019792655482888222, 0.006591874174773693, 0.03651932254433632, -0.018009839579463005, 0.03452075272798538, 0.03790469467639923, -0.05859443545341492, 0.013989989645779133, -0.0024825986474752426, 0.021041762083768845, -0.026617318391799927, 0.038222648203372955, -0.04901038482785225, -0.026730872690677643, -0.04828363284468651, -0.01356983557343483, -0.07608192414045334, -0.019236234948039055, 0.004048239439725876, 0.051281485706567764, -0.020769229158759117, 0.02195020206272602, 0.023778440430760384, -0.0013534349855035543, -0.009073053486645222, 0.04585355147719383, 0.005853765644133091, 0.0005102882860228419, -0.03011481463909149, 0.016999199986457825, 0.049918826669454575, -0.07853471487760544, -0.04526306688785553, 0.06558942794799805, -0.03263573721051216, 0.033248934894800186, 0.04194725677371025, -0.01739664189517498, 0.0005777116166427732, 0.07503721863031387, -0.031091388314962387, 0.016556335613131523, 0.020042477175593376, 0.009567017666995525, -0.003761512925848365, -0.003716090926900506, 0.003542919410392642, 0.011605331674218178, 0.026912560686469078, -0.05305294692516327, 0.010509525425732136, -0.033816710114479065, 0.012661394663155079, -0.020110609009861946, 0.026322074234485626, -0.02859317697584629, 0.022858643904328346, -0.049192074686288834, 0.06127433851361275, -0.06513521075248718, 0.010992134921252728, 0.008919754065573215, -0.004017012193799019, -0.023369641974568367, 0.011389577761292458, 0.017237665131688118, 0.04864700883626938, -0.009004919789731503, 0.051145222038030624, 0.03193169832229614, -0.06967741250991821, 0.0003454559191595763, 0.0160907581448555, 0.034043822437524796, -0.03327164798974991, -0.023869283497333527, -0.00307734333910048, 0.0033725867979228497, -0.027979979291558266, 0.013331369496881962, 0.025527188554406166, -0.006404507905244827, 0.019531479105353355, 0.0648626759648323, -0.007466248236596584, -0.016408713534474373, -0.01191193051636219, 0.009425073862075806, -0.016124825924634933, -0.04499053582549095, -0.008755099028348923, -0.011866508983075619, -0.01933843456208706, -0.009799805469810963, -0.020246876403689384, -0.04646674916148186, -0.05123606324195862, -0.02200697921216488, -0.009050342254340649, -0.03402110934257507, -0.07072212547063828, -0.03847246989607811, 0.010384614579379559, -0.015795515850186348, -0.056187067180871964, 0.015295873396098614, 0.035520039498806, -0.008931109681725502, -0.07140345126390457, -0.03220422938466072, -0.032726582139730453, 0.04728434607386589, -0.010299447923898697, 0.007920469157397747, -0.05368885397911072, -0.011253311298787594, 0.012559195049107075, -0.019679101184010506, -0.03249947354197502, 0.01704462245106697, -0.004028367344290018, 0.006660006940364838, -0.03229507431387901, 0.010299447923898697, 0.03695083409547806, 0.004116372670978308, 0.014932496473193169, -0.053961388766765594, 0.021848002448678017, 0.06036589667201042, -0.05477898567914963, -0.000600777508225292, 0.015341294929385185, 0.035043105483055115, 0.02620851993560791, -0.03922193497419357, 0.02448248118162155, -0.02852504327893257, -0.017362575978040695, 0.02223408967256546, 0.00025904757785610855, 0.018032550811767578, 0.05650502070784569, -0.00528882909566164, 0.006535096559673548, -0.03529292717576027, -0.04539933428168297, -0.04614879563450813, -0.005013457965105772, -0.022654244676232338, -0.05423391982913017, -0.004752281121909618, -0.014580476097762585, -0.0046273707412183285, 0.035996969789266586, -0.015034696087241173, -0.014750808477401733, 0.004232766572386026, 0.018577616661787033, -0.04923749342560768, -0.005550005938857794, 0.02995583787560463, 0.02402826026082039, -0.025322789326310158, -0.0029155274387449026, 0.029615173116326332, -0.001313690678216517, 0.05096353217959404, -0.03513395041227341, -0.03683727607131004, 0.01970181055366993, -0.016579044982790947, 0.026957983151078224, -0.018520837649703026, 0.05741346254944801, 0.0030063714366406202, -0.023085754364728928, -0.02807082235813141, 0.0281616672873497, -0.012706817127764225, -0.009657861664891243, 0.015205029398202896, 0.011020523495972157, -0.05010051280260086, 0.05768599361181259, -0.002376140560954809, -0.058367326855659485, 0.044649869203567505, 0.01747613213956356, -0.03581527993083, -0.05414307489991188, -0.04737519100308418, 0.003613891312852502, -0.05173570662736893, -0.01353576872497797, -0.009936071932315826, -0.048828694969415665, 0.01739664189517498, 0.036269500851631165, -0.07026790082454681, -0.059366609901189804, 0.02078058570623398, 0.024936702102422714, -0.028093533590435982, -0.01855490542948246, 0.02425537072122097, -0.01762375235557556, -0.00418450590223074, 0.022767798975110054, -0.06758800148963928, -0.01912268064916134, 0.008164612576365471, 0.026458339765667915, 0.015295873396098614, 0.013955922797322273, 0.012786305509507656, 0.04737519100308418, -0.0038154516369104385, 0.02201833575963974, -0.014569120481610298, 0.02670816145837307, -0.033453334122896194, -0.03234049677848816, 0.03386213257908821, -0.0483744777739048, -0.036201369017362595, -0.03358960151672363, 0.0431736521422863, 0.01740799844264984, -0.04242418706417084, -0.004417293705046177, 0.017714597284793854, -0.01724902167916298, 0.031591031700372696, -0.01198006421327591, 0.012127685360610485, 0.015568405389785767, -0.023710306733846664, -0.0168288666754961, -0.07176683098077774, -0.0029694661498069763, -0.0006348440074361861, -0.04396853968501091, -0.028207089751958847, 0.0058367326855659485, -0.028502332046628, 0.07326575368642807, 0.03011481463909149, 0.021779870614409447, -0.05863985791802406, 0.013036126270890236, -0.02368759550154209, 0.0103278374299407, 0.08961769193410873, -0.03177271783351898, -0.0303192138671875, -0.08244100958108902, -0.0026855783071368933, 0.04267400875687599, -0.011934641748666763, -0.019031835719943047, -0.013774234801530838, 0.02757118083536625, 0.0016919710906222463, -0.049918826669454575, 0.007852335460484028, 0.0020965111907571554, -0.010850190185010433, 0.029342640191316605, 0.008397400379180908, -0.012820371426641941, 0.018168818205595016, 0.014580476097762585, 0.042696721851825714, -0.035338349640369415, 0.021632248535752296, -0.014637253247201443, 0.009345585480332375, -0.031522899866104126, -0.032658450305461884, -0.046875547617673874, -0.04901038482785225, 0.030909700319170952, -0.013490347191691399, 0.021927490830421448, 0.025527188554406166, -0.012263951823115349, -0.020735163241624832, 0.018134750425815582, 0.039380911737680435, 0.05741346254944801, 0.017203599214553833, -0.0036507968325167894, 0.01411490049213171, -0.013592546805739403, 0.012468351051211357, 0.03906295821070671, -0.010645791888237, -0.011310088448226452, -0.03379400074481964, -0.002024119719862938, -0.01046978123486042, 0.014659964479506016, -0.010685536079108715, 0.03224965184926987, -0.0013129808939993382, 0.019440634176135063, -0.04446817934513092, 0.011253311298787594, 0.00912983063608408, 0.01913403533399105, 0.020462630316615105, -0.038222648203372955, -0.027843711897730827, 0.0444454699754715, 0.009339908137917519, 0.017067333683371544, 0.003568469313904643, 0.013989989645779133, 0.023505907505750656, -0.04360515996813774, 0.017510198056697845, 0.015920426696538925, 0.029206374660134315, 0.0030461158603429794, -0.03520208224654198, -0.00014859750808682293, -0.03320351243019104, 0.003457752987742424, 0.01302477065473795, 0.06263700127601624, -0.010742313228547573, 0.0228132214397192, -0.03667829930782318, 0.014659964479506016, -0.026889849454164505, -0.006506707519292831, 0.011491777375340462, 0.040039531886577606, 0.0223703570663929, 0.02172309160232544, -0.012366151437163353, 0.009192286059260368, -0.021098539233207703, -0.051508598029613495, -0.033680446445941925, 0.008584766648709774, -0.03081885725259781, -0.05427934229373932, 0.006342052947729826, -0.04221978783607483, 0.006642973981797695, -0.022722376510500908, -0.0395398885011673, 0.03313538059592247, -0.059457454830408096, -0.019815366715192795, 0.031091388314962387, -0.0018736593192443252, 0.035542748868465424, -0.018464060500264168, -0.01782815158367157, -0.04076628386974335, -0.03792740777134895, -0.05232619494199753, -0.012139040976762772, 0.032885558903217316, -0.031023256480693817, 0.051871974021196365, 0.045217644423246384, 0.013274592347443104, -0.04294654354453087, -0.039244644343853, -0.007057450246065855, 0.007920469157397747, -0.044513601809740067, 0.029047396034002304, 0.014500987716019154, -0.016079403460025787, -0.020553475245833397, -0.02157547138631344, -0.022847287356853485, 0.019656389951705933, -0.07217562943696976, 0.008970853872597218, -0.020315008237957954, 0.02975143864750862, 0.046603016555309296, 0.046512171626091, 0.008851620368659496, -0.018373217433691025, 0.016658535227179527, 0.0174647755920887, 0.0062114642933011055, 0.005396706517785788, -0.05205366015434265, 0.02859317697584629, -0.013433569110929966, -0.007755814120173454, -0.019588256254792213, 0.03976700082421303, 0.0001418551692040637, 0.027593892067670822, 0.01603398099541664, -0.041106950491666794, -0.01920216903090477, -0.007716069463640451, 0.03211338445544243, -0.07998821884393692, -0.05523320659995079, 0.0453311987221241, 0.06350001692771912, 0.03849518299102783, 0.021700380370020866, -0.06390881538391113, -0.0257088765501976, -0.05600538104772568, -0.0006444252212531865, 0.009226352907717228, -0.009311518631875515, 0.011196534149348736, -0.011236278340220451, -0.0330672487616539, -0.02916095219552517, 0.059729985892772675, -0.0068757617846131325, 0.04987340420484543, 0.002749453065916896, -0.013842367567121983, -0.0043349661864340305, 0.013637968339025974, -0.022188669070601463, 0.02482314594089985, 0.0037104131188243628, -0.025368211790919304, -0.028275221586227417, 0.0035485972184687853, -0.03456617519259453, -0.0017416514456272125, -0.016840223222970963, -0.030296502634882927, -0.06200109049677849, 0.034611597657203674, 0.02525465562939644, -0.02952432818710804, 0.00362808583304286, 0.04085712879896164, -0.01400134526193142, 0.03234049677848816, 0.008522311225533485, -0.01439878810197115, -0.0034265255089849234, 0.016772089526057243, -0.03293098136782646, -0.029774149879813194, -0.03572443872690201, -0.021109893918037415, 0.004965197294950485, -0.050918109714984894, 0.011241955682635307, -0.002755130873993039, -0.0045081377029418945, -0.017953062430024147, 0.03754131868481636, -0.036496613174676895, -0.00765361450612545, 0.038949403911828995, -0.0008332105935551226, -0.0016820350429043174, -0.005427934229373932, -0.0016877128509804606, -0.010140471160411835, 0.027253225445747375, -0.0006909118383191526, -0.01035622600466013, 0.010202926583588123, 0.029365351423621178, -0.018600326031446457, -0.005782793741673231, -0.04172014817595482, -0.015647893771529198, 0.023937417194247246, 0.02468688040971756, -0.02577701024711132, 0.01151448767632246, 0.011224922724068165, -0.008136224001646042, 0.0016110631404444575, 0.0015003469306975603, -0.021904779598116875, -0.00021149638632778078, 0.04951002821326256, 0.002638736739754677, 0.010804768651723862, -0.017850862815976143, 0.003471947507932782, -0.03231778368353844, -0.01472809724509716, 0.0471935048699379, -0.05423391982913017, 0.020383141934871674, 0.004684148356318474, 0.008153256960213184, -0.05695924162864685, -5.509197217179462e-05, 0.015636539086699486, -0.0001843496283981949, 0.010049627162516117, -0.005995709914714098, -0.006915505975484848, -0.004315094090998173, 0.0027877779211848974, -0.013865078799426556, -0.0404256172478199, -0.012207173742353916, -0.052507881075143814, -0.0021305778063833714, -0.00841443333774805, 0.025731587782502174, -0.0009375393856316805, 0.0033470368944108486, 0.034543465822935104, 0.03704167529940605, 0.025163812562823296, -0.053734276443719864, 0.03333977982401848, -0.01827101781964302, -0.02829793281853199, -0.03940362110733986, 0.02988770417869091, -0.05668671056628227, -0.03717794269323349, 0.020121965557336807, -0.010447070002555847, -0.010515202768146992, 0.001971600577235222, -0.0024996318388730288, 0.015909070149064064, 0.03097783401608467, -0.03456617519259453, -0.009345585480332375, -0.010804768651723862, -0.005674916785210371, -0.0038665514439344406, -0.02491399087011814, -0.009646506048738956, -0.02591327577829361, 0.015148251317441463, 0.020042477175593376, -0.011497454717755318, -0.021030405536293983, 0.026753583922982216, -0.02505025640130043, -0.020315008237957954, 0.010316481813788414, -0.008034024387598038, -0.04203810170292854, -0.01676073484122753, -0.028752153739333153, -0.04419564828276634, -0.02448248118162155, 0.035974256694316864, -0.00916389748454094, 0.005413739942014217, -0.015784159302711487, 0.0011249053059145808, 0.007352693472057581, -0.01097510103136301, 0.03327164798974991, -0.04519493505358696, 0.00967489555478096, 0.010617402382194996, -0.011764309369027615, 0.009725995361804962, 0.03343062475323677, 0.005567039363086224, 0.015341294929385185, 0.04437733814120293, -0.007415148429572582, -0.010271059349179268, -0.003948878962546587, 0.0023974322248250246, -0.024596037343144417, -0.006307986099272966, -0.02057618647813797, 0.01587500423192978, -0.0072732046246528625, -0.03256760537624359, 0.017953062430024147, 0.0001896725152619183, 0.017873574048280716, -0.02693527191877365, 0.04462715610861778, -0.021416492760181427, 0.01097510103136301, -0.0027608086820691824, -0.018952347338199615, -0.002202969044446945, 0.01152016595005989, -0.021768514066934586, 0.0032902592793107033, 0.004661437124013901, -0.015829581767320633, 0.01841863803565502, -0.007994279265403748, 0.03154560923576355, 0.010685536079108715, -0.04446817934513092, -0.03831349313259125, 0.02541363425552845, -0.010532236658036709, 0.008772131986916065, 0.02166631445288658, 0.0013115615583956242, -0.0007785622146911919, 0.02902468666434288, 0.0046529206447303295, 0.021439203992486, -0.003787062829360366, 0.017521552741527557, -0.01479623094201088, 0.037723008543252945, 0.014160322025418282, 0.009850905276834965, 0.0009034728282131255, -0.005535811651498079, -0.03919922187924385, 0.002756550209596753, -0.0013073032023385167, -0.04231063276529312, -0.033021826297044754, -0.025436343625187874, 0.01086722407490015, 0.0077387806959450245, 0.013308659195899963, 0.015091474168002605, -0.0020113447681069374, 0.014228454791009426, -0.01942927949130535, 0.00124484789557755, -0.008976531215012074, -0.01302477065473795, 0.020757874473929405, 0.018282372504472733, 0.0006774272187612951, -0.021609537303447723, -0.03229507431387901, 0.03125036507844925, -0.05182655155658722, -0.006239853333681822, 0.012002775445580482, -0.005396706517785788, -0.020826006308197975, 0.010361903347074986, -0.010850190185010433, 0.006114942487329245, 0.020848717540502548, -0.011082978919148445, 0.03558817133307457, 0.012104975059628487, -0.02541363425552845, 6.986300286371261e-05, -0.011650754138827324, -0.026889849454164505, 0.015500272624194622, -0.007097194436937571, 0.030637169256806374, -0.017782729119062424, 0.005967320874333382, -0.04628506302833557, -0.005453484132885933, 0.008675610646605492, -0.025504477322101593, 0.06454472243785858, -0.031204944476485252, -0.007931824773550034, -0.0333624891936779, 0.007097194436937571, -0.0327720046043396, -0.002520923502743244, 0.022835932672023773, -0.0168288666754961, 0.00939100794494152, 0.04455902427434921, 0.000722139491699636, -0.0026500923559069633, 0.006387474946677685, -0.011889220215380192, -0.016772089526057243, -0.0019020481267943978, 0.004726731218397617, -0.017078688368201256, -0.023574041202664375, 0.025958698242902756, -0.008408755995333195, -0.003999978769570589, -0.05060015618801117, -0.03104596585035324, 0.0007224943838082254, 0.013263236731290817, -0.0008183065219782293, -0.004053917247802019, -0.021132605150341988, -0.003872229252010584, 0.003645119024440646, -0.03960802033543587, -0.025459054857492447, -0.001910564722493291, -0.016420068219304085, 0.06758800148963928, 0.015647893771529198, 0.010288093239068985, -0.005796988494694233, 0.012763594277203083, 0.006716784555464983, -0.01805526204407215, 0.010009882971644402, -0.011048912070691586, -0.0004173150227870792, -0.001330723986029625, -0.03513395041227341, -0.021405138075351715, 0.03388484567403793, -0.050282202661037445, -0.022824576124548912, 0.008715354837477207, -0.02584514208137989, -0.009368296712636948, -0.018021196126937866, -0.013796946033835411, 0.05414307489991188, 0.029615173116326332, -0.04099339246749878, 0.0005557102849707007, 0.0035230473149567842, -0.01581822708249092, 0.03636034578084946, 0.004229927901178598, 0.06013878434896469, 0.054960671812295914, -0.010730957612395287, 0.008454177528619766, -0.029842281714081764, -0.01739664189517498, 0.008630188181996346, -0.0324767604470253, 0.028979264199733734, 0.010651469230651855, 0.0035571136977523565, -0.002782100113108754, 0.02829793281853199, -0.004956680350005627, 0.0025620870292186737, 0.03701896592974663, -0.0005702595808543265, -0.03320351243019104, 0.015466205775737762, -0.016942422837018967, 0.024096393957734108, 0.006591874174773693, -0.010765024460852146, 0.03068258985877037, -0.002049669623374939, 0.02952432818710804, 0.020814651623368263, 0.028320644050836563, 0.03263573721051216, -0.02614038623869419, -0.036133237183094025, -0.014262521639466286, -0.024141816422343254, 0.012173107825219631, -0.01158262137323618, 0.01439878810197115, -0.03097783401608467, 0.013467635959386826, -0.010095049627125263, 0.015568405389785767, -0.000561388093046844, 0.0031426376663148403, 0.03651932254433632, -0.011673465371131897, 0.03379400074481964, 0.014137610793113708, 0.010969423688948154, -0.016726667061448097, 0.003162509761750698, 0.04301467537879944, -0.0044541992247104645, -0.005708983168005943, 0.005578394513577223, -0.03624679148197174, 0.029569750651717186, 0.009947427548468113, -0.029933126643300056, 0.0005532262730412185, 0.024278081953525543, 0.005266118329018354, 0.038654159754514694, -0.02432350441813469, -0.045671865344047546, 0.01964503340423107, -0.006716784555464983, 0.007772847078740597, 0.029251795262098312, -0.009214997291564941, 0.02049669623374939, 0.03751860931515694, 0.06145602464675903, 0.0030886989552527666, 0.01653362438082695, -0.015034696087241173, -0.021495983004570007, 0.022268157452344894, 0.03408924490213394, 0.010782057419419289, -0.0013016253942623734, 0.013672035187482834, 0.02720780484378338, 0.007341337855905294, 0.03470244258642197, -0.02013332024216652, 0.012979349121451378, 0.008681287989020348, 0.015636539086699486, -0.004536526743322611, -0.03075072355568409, 0.010901289992034435, -0.05859443545341492, 0.00470685912296176, -0.03190898522734642, -0.006773562170565128, -0.009629473090171814, -0.009760061278939247, 0.016124825924634933, 0.012048196978867054, -0.0030574712436646223, 0.008397400379180908, 0.022552045062184334, -0.059957098215818405, 0.06072927266359329, 0.01381965633481741, -0.04271943122148514, -0.0013683390570804477, -0.012184463441371918, -0.029478905722498894, 0.00404256209731102, 6.564904651895631e-06, -0.00012943508045282215, 0.0029183663427829742, -0.00530586251989007, -0.0046813092194497585, -0.039244644343853, 0.02511839009821415, 0.012082263827323914, -0.017271732911467552, -0.04951002821326256, 0.053961388766765594, 0.012036841362714767, 0.004721053875982761, 0.006915505975484848, 0.028456909582018852, -0.007551414892077446, -0.009158219210803509, 0.011082978919148445, 0.015318584628403187, 0.015102829784154892, -0.051008954644203186, 0.002748033730313182, -0.011730242520570755, 0.014853008091449738, 0.01769188605248928, -0.006512385327368975, 0.01342221349477768, 0.016283802688121796, 0.0028729443438351154, 0.03118223324418068, -0.0035116916988044977, 0.041265927255153656, 0.003926167730242014, 0.0024499513674527407, 0.019315723329782486, 0.05105437710881233, -0.0063534085638821125, 0.008431467227637768, 0.014387432485818863, 0.015068762935698032, 0.012479706667363644, 0.009521596133708954, -0.004292383324354887, -0.0020510891918092966, -0.004916936159133911, 0.014024055562913418, -0.01978130079805851, -0.011741598136723042, 0.004056756384670734, -0.017192242667078972, -0.02577701024711132, 0.030137525871396065, 0.023914705961942673, -0.04038019850850105, -0.004005656577646732, -0.006325019523501396, 0.010901289992034435, 0.021984269842505455, 0.0015997076407074928, -0.0036593133118003607, 0.014432854019105434, 0.04106152802705765, -0.03177271783351898, -0.003948878962546587, 0.049419183284044266, -0.005765760783106089, -0.02122345007956028, 0.021689025685191154, -0.01948605664074421, 0.02554989978671074, 0.03413466736674309, -0.01125898864120245, 0.031727299094200134, 0.0019077258184552193, 0.03352146968245506, 0.0037643518298864365, 0.05205366015434265, 0.001598288188688457, 0.0010773540707305074, 0.02648105099797249, 0.007744458504021168, 0.007846658118069172, 0.02043991908431053, -0.019247591495513916, 0.027911845594644547, 0.035270217806100845, 0.019792655482888222, 0.02246120013296604, -0.027979979291558266, 0.012468351051211357, -0.005311540327966213, -0.010106404311954975, 0.027321359142661095, 0.009067375212907791, -0.02707153744995594, -0.008931109681725502, -0.045081377029418945, -0.016590401530265808, 0.020337719470262527, 0.0058651212602853775, 0.023278797045350075, 0.019145391881465912, 0.02664002776145935, 0.016783444210886955, 0.0017913318006321788, -0.0033072924707084894, 0.02657189592719078, 0.010617402382194996, 0.019838077947497368, 0.010980779305100441, -0.00738108204677701, 0.01342221349477768, 0.008510955609381199, 0.018588971346616745, 0.005285990424454212, 0.021041762083768845, -0.02274508774280548, -0.018009839579463005, 0.005572717171162367, -0.024414347484707832, -0.016011269763112068, -0.01835050620138645, 0.016556335613131523, -0.007199394050985575, 0.015148251317441463, -0.009112797677516937, 0.01676073484122753, -0.0038835846353322268, 0.0023108464665710926, -0.01645413599908352, 0.04326449707150459, -0.046171508729457855, 0.05564200505614281, 0.03783656284213066, 0.0070233833976089954, -0.0139332115650177, -0.005802665837109089, 0.021768514066934586, -0.035270217806100845, 0.0017004878027364612, -0.023346930742263794, -0.00030305018299259245, -0.005848088301718235, 0.025935987010598183, -0.008215712383389473, -0.03804096207022667, -0.010702569037675858, 0.009521596133708954, -0.021530048921704292, -0.028116244822740555, -0.009686251170933247, 0.03947175666689873, 0.005257601384073496, -0.019168103113770485, -0.022052401676774025, -0.043355342000722885, -0.03672372177243233, -0.02122345007956028, -0.013626612722873688, -0.0028218445368111134, 0.022767798975110054, -0.0070744832046329975, -0.03529292717576027, -0.026980694383382797, 0.009124153293669224, -0.011787020601332188, 0.026026830077171326, 0.0063817971386015415, 0.005183790810406208, -0.01360390242189169, 8.50776195875369e-05, -0.00916389748454094, 0.010293770581483841, 0.01774866320192814, 0.010447070002555847, 0.020610252395272255, -0.004922613967210054, 0.03025108017027378, -0.0011256149737164378, 0.040039531886577606, 0.008454177528619766, 0.0014371818397194147, 0.00025709587498568, 0.02886570803821087, -0.007988601922988892, 0.02727593667805195, 0.004459877032786608, -0.009107119403779507, -0.022688310593366623, -0.0053172181360423565, 0.016204314306378365, -0.01021428219974041, -0.012581906281411648, -0.025027545168995857, 0.01652226783335209, -0.01302477065473795, 0.04235605522990227, -0.0081930011510849, -0.011105689220130444, -0.02520923502743244, -0.012820371426641941, -0.006205786485224962, 0.0018906925106421113, -0.007171005010604858, -0.014126255176961422, -0.0021121250465512276, 0.02224544622004032, 0.03765487298369408, -0.049782559275627136, -0.018645748496055603, -0.02222273498773575, -0.02216595783829689, -0.00776149146258831, 0.018373217433691025, -0.009027631022036076, 0.03783656284213066, -0.022904066368937492, -0.01464860886335373, 0.013899145647883415, 0.03361231088638306, 0.0257088765501976, -0.0012845922028645873, -0.013876434415578842, -0.015863649547100067, -0.007585481274873018, -0.01588635891675949, 0.05863985791802406, 0.020701095461845398, -0.012729527428746223, -0.00369905773550272, 0.0022526495158672333, -0.007744458504021168, 0.013081548735499382, -0.023801151663064957, -0.02411910519003868, 0.017339864745736122, -0.005995709914714098, 0.0008431466994807124, 0.0281616672873497, -0.018032550811767578, -0.011088656261563301, -0.01986078917980194, 0.02223408967256546, -0.012241240590810776, 0.006921183783560991, -0.007772847078740597, 0.011752953752875328, -0.025300078094005585, 0.003951717633754015, -0.015227739699184895, 0.013320013880729675, -0.003980106674134731, -0.0032448372803628445, -0.0004261865105945617, -0.019690455868840218, 0.01166210975497961, -0.012263951823115349, -0.013592546805739403, -0.01603398099541664, 0.0018112040124833584, 0.028025401756167412, -0.0017501681577414274, -0.030796146020293236, 0.014864363707602024, 0.007006350439041853, 0.05246245861053467, -0.017430709674954414, 0.00200424762442708, -0.020087899640202522, -0.015840938314795494, -0.022336289286613464, 0.010219959542155266, -0.002342074178159237, -0.007772847078740597, 0.020405853167176247, -0.0021930329967290163, 0.034475330263376236, 0.02895655296742916, 0.00483744777739048, -0.007102872245013714, -0.016783444210886955, 0.015454850159585476, 0.0002684513747226447, -0.017760019749403, -0.00016660663823131472, 0.019451990723609924, -0.011900575831532478, -0.005030491389334202, 0.005513100419193506, -0.011219244450330734, 0.02179122529923916, 0.011417966336011887, 0.01949741132557392, -0.05609622225165367, -0.011718886904418468, -0.027253225445747375, -0.013615257106721401, -0.007920469157397747, 0.005535811651498079, -0.008522311225533485, 0.011730242520570755, 0.014069478027522564, -0.03904024511575699, -0.010106404311954975, -0.00117387599311769, -0.0005947448662482202, -0.015647893771529198, -0.049782559275627136, 0.014535053633153439, 0.02078058570623398, -0.0004297351115383208, -0.03199983015656471, -0.006631618365645409, 0.01262732781469822, 0.03363502398133278, 0.007750136312097311, 0.039312779903411865, 0.009839550592005253, -0.003534402698278427, -0.020485341548919678, 0.002627381356433034, 0.0068757617846131325, -0.014342010021209717, -0.014716742560267448, 0.02931992895901203, -0.024050971493124962, 0.012672750279307365, -0.025822430849075317, -0.046307772397994995, 0.003551436122506857, 0.01573873870074749, 0.004704020451754332, -0.005961643066257238, -0.03695083409547806, -0.011866508983075619, 0.015931781381368637, -0.0019559867214411497, -0.014637253247201443, 0.0011291636619716883, -0.0008197259157896042, -0.007125583011657, -0.05069100111722946, 0.0007366887875832617, -0.01855490542948246, -0.012207173742353916, 0.03783656284213066, -0.0004708988417405635, -0.007409470621496439, 0.01753290928900242, 0.02757118083536625, -0.008386044763028622, 0.013376791961491108, -0.011752953752875328, -0.0016735184472054243, 0.0010411584516987205, -0.026799006387591362, 0.015988558530807495, 0.01704462245106697, 0.0018608843674883246, 0.022359000518918037, 0.016204314306378365, -0.03781384974718094, -0.0015769965248182416, 0.03542919456958771, 0.051145222038030624, -0.010242670774459839, -0.008550699800252914, -0.007341337855905294, 0.014228454791009426, -0.014171677641570568, 0.022336289286613464, -0.013501702807843685, -0.02468688040971756, 0.003724607639014721, -0.015148251317441463, -0.012082263827323914, -0.012763594277203083, 0.0008871493046171963, -0.03538377210497856, -0.0017189404461532831, -0.01718088798224926, 0.02200697921216488, -0.027684735134243965, 0.01490978617221117, 0.04330991953611374, -0.03436177596449852, -0.018282372504472733, 0.00602977629750967, 0.0015713188331574202, -0.013637968339025974, 0.014989274553954601, 0.010129115544259548, 0.026549184694886208, 0.010123438201844692, -0.027911845594644547, -0.011730242520570755, -0.023006264120340347, -0.018532194197177887, 0.013274592347443104, 0.007125583011657, 0.003085860051214695, -0.01302477065473795, 0.017907639965415, 0.04178828001022339, -0.0404256172478199, -0.022177312523126602, 0.007171005010604858, 0.03595154732465744, -0.00022373904357664287, -0.042197078466415405, -0.03495226427912712, -0.012718171812593937, 0.0006852340884506702, -0.017498841509222984, 0.019826721400022507, -0.02916095219552517, -0.01472809724509716, -0.027889134362339973, 0.017805440351366997, -0.01587500423192978, 0.031363919377326965, -0.006080876104533672, 0.0038097738288342953, 0.02836606651544571, 0.0209963396191597, -0.008459855802357197, -0.015102829784154892, -0.0223703570663929, 0.007704714313149452, 0.022427134215831757, -0.0011071623302996159, -0.02534550055861473, 0.0003202608786523342, -0.019372502341866493, -0.004797703120857477, 0.0005532262730412185, 0.0040823062881827354, 0.0006344891735352576, 0.010958068072795868, 0.01630651392042637, 0.01992892101407051, 0.006620262749493122, 0.02180257998406887, -0.015477561391890049, -0.011491777375340462, -0.0346343070268631, -0.03710981085896492, 0.006376119330525398, 0.04290112107992172, 0.023505907505750656, -0.0388585589826107, 0.009322874248027802, -0.0025649259332567453, 0.006773562170565128, 0.015704670920968056, -0.006733817979693413, 0.022120535373687744, 0.001633774139918387, -0.01797577366232872, 0.02359675243496895, -0.01882743649184704, -0.006625940557569265, 0.018441349267959595, -0.014342010021209717, -0.024959413334727287, -0.01631786860525608, 0.019406568259000778, -0.021348360925912857, -0.02922908589243889, -0.03531564027070999, 0.025822430849075317, 0.002114963950589299, 0.01912268064916134, -0.02402826026082039, -0.004925452638417482, -0.04873785376548767, -0.01260461751371622, -0.02670816145837307, -0.012763594277203083, -0.0027281614020466805, 0.04174285754561424, -0.0303192138671875, -0.0005503874272108078, -0.0030461158603429794, -0.010679857805371284, -0.035633593797683716, 0.0008239842718467116, -0.019724521785974503, 0.04374142736196518, 0.030796146020293236, -0.005158240906894207, 0.02448248118162155, 0.0025720233097672462, 0.004227088764309883, -0.015454850159585476, -0.003664991119876504, 0.01198006421327591, -0.02382386103272438, -0.008096478879451752, -0.017669174820184708, -0.021836647763848305, 0.003846679348498583, -0.013320013880729675, -0.009362618438899517, 0.011281699873507023, 0.029569750651717186, 0.0020780584309250116, 0.007988601922988892, -0.01111704483628273, 0.015466205775737762, 0.034180086106061935, 0.007858013734221458, 0.004894225392490625, 0.008641543798148632, -0.004633048549294472, -0.008613155223429203, -0.018168818205595016, -0.018713882192969322, 0.01194599736481905, 0.006103586871176958, 0.0398351326584816, 0.04937376081943512, 0.021779870614409447, 0.040312062948942184, -0.006483996752649546, -0.03899482265114784, 0.011213567107915878, -0.01183244213461876, -0.011752953752875328, 0.027253225445747375, -0.011866508983075619, -0.006773562170565128, 0.01818017289042473, 0.008959498256444931, 0.004814736545085907, -0.02475501410663128, -0.0027437752578407526, 0.013308659195899963, -0.009845227934420109, -0.010929679498076439, 0.02346048504114151, 0.021041762083768845, 0.01010072696954012, -0.031204944476485252, 0.007318626623600721, 0.045376621186733246, 0.026980694383382797, -0.0028119084890931845, 0.007278882432729006, -0.017771374434232712, 0.0630912184715271, -0.029183663427829742, -0.01166210975497961, -0.027480335906147957, -0.020701095461845398, 0.027412204071879387, 0.01848677173256874, -0.009254741482436657, 0.030659878626465797, -0.0450359545648098, -0.00830655638128519, 0.008647221140563488, -0.010055304504930973, 0.006915505975484848, 0.003559952601790428, -0.018429994583129883, -0.010782057419419289, 0.008459855802357197, -0.0006806209567002952, -0.012911215424537659, -0.012593261897563934, 0.01971316710114479, 0.034407198429107666, 0.005010619293898344, -0.04539933428168297, 0.006796273402869701, 0.03574714809656143, -0.002740936353802681, 0.013921855948865414, 0.018032550811767578, 0.03651932254433632, -0.020019765943288803, 0.013126970268785954, -0.012036841362714767, 0.02266559936106205, -0.037200652062892914, 0.002220002468675375, -0.0038835846353322268, -0.00615468667820096, 0.003048954764381051, -0.001356983557343483, -0.014035411179065704, 0.007085838820785284, -0.013161037117242813, -0.005831054877489805, 0.006591874174773693, -0.014569120481610298, -0.01927030272781849, 0.000975864240899682, -0.0339529775083065, 0.020269587635993958, -0.027911845594644547, -0.0049964250065386295, -0.003787062829360366, 0.003239159472286701, 0.013399503193795681, 0.026231229305267334, -0.026526473462581635, 0.018645748496055603, -0.054324764758348465, 0.028638597577810287, -0.011968708597123623, 0.005578394513577223, -0.004105017054826021, 0.02700340561568737], [0.022893473505973816, -0.005781889893114567, 0.013202371075749397, 0.0033064449671655893, -0.00026023623649962246, -0.011715934611856937, -0.0697103962302208, -0.01707647182047367, 0.03218663111329079, 0.005530248861759901, -0.021044205874204636, -0.0011952945496886969, -0.028979673981666565, 0.0180596262216568, -0.01292147021740675, 0.011206800118088722, -0.004511980805546045, 0.008380228653550148, -0.03857714310288429, -0.0016005535144358873, 0.014618583023548126, 0.0521540492773056, 0.062453772872686386, -0.019300274550914764, -0.014325977303087711, -0.0025149465072900057, 0.017053063958883286, -0.02282324805855751, 0.031133251264691353, -0.007578488904982805, 0.0496259368956089, -0.002441795077174902, -0.014899484813213348, -0.004280822351574898, 0.010434321127831936, -0.0001434682635590434, 0.024274572730064392, -0.014665400609374046, 0.005615104455500841, 0.013834400102496147, -0.06615231186151505, -0.017298851162195206, 0.015742190182209015, -0.015613443218171597, -0.021875206381082535, 0.029330801218748093, -0.0019209567690268159, -0.018363937735557556, 0.03012668900191784, 0.04754258319735527, 0.04770644009113312, 0.014606879092752934, 0.037593986839056015, 0.04349292069673538, -0.06507551670074463, -0.010211940854787827, 0.032865479588508606, 0.04365677759051323, 0.019826965406537056, -0.016233766451478004, -0.011797863990068436, -0.010785448364913464, -0.00038623958243988454, 0.026240883395075798, -0.035885170102119446, -0.0478937104344368, -0.070646733045578, 0.01406848430633545, -0.05093681067228317, -0.009211229160428047, -0.00926975067704916, -0.018118148669600487, -0.028113560751080513, -0.026545193046331406, -0.01644444279372692, 0.014864372089505196, 0.018223486840724945, 0.014407907612621784, 0.032092999666929245, 0.023080741986632347, -0.04506128653883934, 0.0226827971637249, -0.012266033329069614, 0.02325630560517311, -0.04901731386780739, 0.034433845430612564, -0.058802053332328796, -0.02359572798013687, -0.057444360107183456, -0.05702300742268562, 0.00443005096167326, -0.014255751855671406, 0.03625970333814621, 0.06240695342421532, -0.011651560664176941, 0.016526373103260994, -0.00222087767906487, 0.013881216756999493, 0.012008540332317352, 0.058521151542663574, -0.0022428231313824654, -0.01863313466310501, -0.01843416318297386, 0.0029406878165900707, 0.024391615763306618, -0.03974756598472595, -0.03789829835295677, 0.028043335303664207, -0.018094738945364952, -0.006618741899728775, 0.012020244263112545, 0.010434321127831936, -0.02696654573082924, 0.05945748835802078, 0.008122735656797886, -0.001998497173190117, 0.031016210094094276, -0.023630840703845024, -0.01117168739438057, -0.05206041410565376, -0.013904625549912453, 0.04911094903945923, 0.026755869388580322, -0.039583705365657806, 0.017193514853715897, -0.00958576425909996, 0.02408730611205101, 0.015566625632345676, 0.0348551981151104, -0.07167670130729675, 0.021676234900951385, -0.04143297299742699, 0.05430762842297554, -0.056320756673812866, 0.006372953299432993, 0.04948548600077629, 0.02258916385471821, -0.046887144446372986, 0.015110161155462265, 0.007812573574483395, 0.016608303412795067, 0.02287006564438343, 0.03675128147006035, 0.04515491798520088, -0.052294500172138214, -0.00248714885674417, 0.013693949207663536, 0.048689596354961395, 0.005945748649537563, 0.0195577684789896, 0.012031948193907738, -0.0030694343149662018, -0.015976274386048317, 0.010282166302204132, 0.01459517516195774, -0.05318402126431465, 0.029939420521259308, 0.05894250422716141, 0.010077342391014099, -0.04892368242144585, -0.026147250086069107, 0.032233450561761856, 0.020318543538451195, -0.031460970640182495, 0.006408066023141146, 0.020997388288378716, 0.015543217770755291, 0.02457888238132, -0.014677104540169239, -0.039630524814128876, -0.049860019236803055, -0.02379469946026802, 0.005062079522758722, -0.0323270820081234, -0.04808097705245018, -0.02851150371134281, 0.02881581522524357, 0.019241753965616226, -0.02612384222447872, 0.026826094835996628, -0.026311108842492104, -0.014922893606126308, -0.057163458317518234, -0.029611703008413315, -0.051170893013477325, 0.04850232973694801, 0.0028543691150844097, -0.004997706040740013, -0.05149861052632332, -0.02277643233537674, 0.020599445328116417, -0.003236219519749284, -0.0283710528165102, 0.06282830983400345, -0.0319291390478611, 0.0174275990575552, -0.04826824367046356, -0.007707235403358936, 0.011967575177550316, -0.04272044077515602, 0.007900355383753777, -0.012371371500194073, 0.0036956106778234243, 0.041784100234508514, -0.05337128788232803, -0.0014615657273679972, 0.009427757002413273, 0.03206958994269371, 0.07972921431064606, -0.04363337159156799, 0.03941984847187996, -0.019335387274622917, -0.015777302905917168, 0.02194543182849884, 0.05191996321082115, 0.019113007932901382, 0.012734202668070793, 0.002270620549097657, 0.03916235268115997, -0.0071103195659816265, -0.026334518566727638, -0.0032918148208409548, -0.006952312774956226, -0.011967575177550316, -0.016046499833464622, -0.010410912334918976, -0.0016517594922333956, -0.03022032231092453, 0.03728967532515526, -0.018176669254899025, -0.012991695664823055, -0.023197783157229424, -7.351719250436872e-05, -0.033263422548770905, 0.07687338441610336, 0.032233450561761856, 0.005685329902917147, -0.04220545291900635, -0.034574296325445175, 0.03787488862872124, 0.02638133428990841, 0.03860054910182953, -0.05936385318636894, -0.04929821565747261, 0.021828388795256615, -0.011768603697419167, 0.0055887699127197266, 0.015192090533673763, 0.030641674995422363, 0.0012786871520802379, -0.0369853675365448, -0.00922293309122324, 0.043329060077667236, -0.04967275261878967, -0.020892050117254257, 0.017603162676095963, -0.01986207813024521, -0.04812779277563095, 0.03183550760149956, -0.03361454978585243, -0.02476615086197853, 0.023736178874969482, -0.016374217346310616, -0.022507233545184135, -0.03689173236489296, -0.032092999666929245, -0.01853950135409832, -0.05177951231598854, -0.020763304084539413, 0.02539817988872528, -0.0165965985506773, 0.011475997976958752, -0.004114036913961172, -0.05472898110747337, -0.02670905366539955, 0.0033913005609065294, 0.019780149683356285, -0.014852668158710003, -0.03937302902340889, 0.006361248902976513, -0.02077500894665718, -0.01732226088643074, 0.014197231270372868, -0.03616607189178467, -0.036376748234033585, 0.006209094077348709, 0.030782125890254974, 0.011733490973711014, -0.01937049999833107, -0.032139815390110016, 0.034574296325445175, -0.011961722746491432, 0.012465004809200764, -0.005006484221667051, 0.04162024334073067, -0.012347962707281113, -0.031367335468530655, 0.029705336317420006, -0.0411754809319973, -0.028347644954919815, -0.011862237006425858, 0.04714464023709297, -0.006384657695889473, -0.021137839183211327, -0.05440125986933708, 0.020716486498713493, -0.005802372004836798, 0.033942267298698425, -0.052481766790151596, 0.006858679000288248, -0.010264609940350056, 0.0003249752626288682, 0.030033053830266, -0.041924551129341125, -0.03178868815302849, 0.006267615128308535, -0.05327765643596649, -0.02656860277056694, 0.013178963214159012, -0.03970075026154518, 0.0630623921751976, 0.03576812893152237, 0.024789558723568916, 0.005989639554172754, -0.03017350472509861, -0.00015334370255004615, 0.040707312524318695, 0.05533760040998459, -0.030196914449334145, -0.0038360613398253918, -0.004906998481601477, -0.0032625540625303984, 0.005755555350333452, -0.008532383479177952, 0.031554605811834335, -0.05515033379197121, 0.009936891496181488, 0.007256622426211834, -0.06011292710900307, -0.004924554843455553, 0.0007187128649093211, -0.006133016664534807, 0.015648555010557175, 0.009386792778968811, -0.017778726294636726, 0.005421984475106001, 0.02112613618373871, 0.03995824232697487, -0.009070778265595436, -0.0052551995031535625, -0.011511110700666904, -0.01674875244498253, -0.026849504560232162, -0.01635080948472023, -0.044312216341495514, 0.0005859429948031902, 0.01560173835605383, -0.03476156294345856, -0.011511110700666904, 0.006308579817414284, 0.008292446844279766, -0.024274572730064392, -0.0006704329280182719, 0.02944784238934517, -0.012055356986820698, 0.02340845949947834, -0.007537524215877056, 0.046442385762929916, -0.009375087916851044, 0.0007150553283281624, 0.08703265339136124, -0.029869195073843002, -0.005635586567223072, -0.008590904995799065, 0.0032684062607586384, -0.030992800369858742, -0.020716486498713493, -0.003680980298668146, 0.04140956699848175, -0.0036897584795951843, 0.0021257807966321707, 0.013389639556407928, 0.01820007711648941, 0.054916247725486755, 0.008971292525529861, 0.027504941448569298, -0.035112690180540085, -0.02097398042678833, 0.04339928552508354, -0.03977097198367119, -0.010785448364913464, -0.023572320118546486, 0.008918623439967632, 0.00849141925573349, 0.015262315981090069, 0.007162988651543856, 0.02131340280175209, 0.0011638393625617027, 0.00883084163069725, -0.03834305703639984, 0.011604744009673595, -0.022226333618164062, 0.019990824162960052, 0.002389125991612673, 0.05688255652785301, -0.0188906267285347, 0.055993035435676575, 0.006852826569229364, 0.02539817988872528, 0.00019659448298625648, 0.005714590195566416, -0.018317120149731636, 0.0005094997468404472, 0.013565202243626118, 0.03670446574687958, -0.06788453459739685, 0.010721074417233467, -0.00163274013902992, -0.0058930800296366215, -0.014127005822956562, 0.017848951742053032, -0.010843968950212002, -0.057491179555654526, 0.005524396430701017, -0.01883210614323616, -0.00316306808963418, -0.01053380686789751, -0.05402672663331032, 0.0031074730213731527, -0.0739707350730896, -0.016947725787758827, 0.04281407222151756, -0.011282877996563911, 0.018656542524695396, -0.0264749675989151, -0.029916012659668922, -0.053605373948812485, -0.028979673981666565, -0.03328682854771614, -0.002867536386474967, 0.05290311947464943, -0.0212197694927454, 0.008579201065003872, 0.06563732028007507, 0.015613443218171597, -0.04803416132926941, -0.048736415803432465, 0.04236931353807449, 0.02408730611205101, -0.02827741950750351, 0.0012721035163849592, 0.045810356736183167, 0.011903202161192894, -0.002579319756478071, -0.0007783313049003482, -0.018527796491980553, -0.013565202243626118, -0.11994495242834091, -0.009954447858035564, 0.019733332097530365, 0.05149861052632332, 0.04588058218359947, -0.014080189168453217, -0.01635080948472023, -0.016772162169218063, 0.009521391242742538, 0.0335911400616169, -0.009199525229632854, -0.036189477890729904, -0.027130404487252235, 0.023326531052589417, -0.0403795950114727, 0.004008698742836714, 0.020517515018582344, 0.03490201383829117, 0.020552627742290497, -2.1168198145460337e-05, 0.013963146135210991, -0.006261763162910938, -0.024649107828736305, -0.00958576425909996, 0.04480379447340965, -0.06999129801988602, -0.04768303409218788, 0.013225779868662357, 0.040309369564056396, 0.023104149848222733, 0.05772526189684868, -0.052294500172138214, 0.00325377588160336, -0.0433056503534317, -0.01835223287343979, 0.03967734053730965, -0.010241201147437096, 0.0029362987261265516, 0.027083588764071465, -0.05566531792283058, -0.03916235268115997, 0.048642780631780624, 0.0028865558560937643, 0.019101303070783615, -0.006946460343897343, -0.04695736989378929, 0.001152866636402905, 0.026592010632157326, -0.0032215893734246492, 0.023373346775770187, 0.01443131547421217, -0.03438702970743179, -0.0067650447599589825, 0.013530089519917965, -0.029705336317420006, 0.009550651535391808, -0.001839027157984674, -0.025093868374824524, -0.05023455619812012, 0.0012069987133145332, 0.038670774549245834, -0.03206958994269371, -0.007028390187770128, 0.04452289268374443, 0.0001789467060007155, 0.004096480552107096, -0.0470275953412056, 0.008409488946199417, -0.016573190689086914, 0.0036692761350423098, -0.057303909212350845, -0.032771844416856766, -0.050983626395463943, -0.009538947604596615, -0.008397785015404224, -0.03906872123479843, -0.018328825011849403, -0.01897255703806877, 0.02282324805855751, 0.00039830958121456206, -0.007631157990545034, -0.03689173236489296, -0.023782994598150253, 0.016772162169218063, 0.01741589419543743, 0.02297540381550789, -0.013389639556407928, -0.03483178839087486, -0.04321201890707016, 0.044312216341495514, -0.0416436493396759, -0.014009963721036911, -0.008696243166923523, 0.04506128653883934, -0.0048426249995827675, -0.011019532568752766, -0.012219215743243694, -0.00919367279857397, 0.0003891656524501741, 0.027762433513998985, -0.021922022104263306, 0.021816685795783997, 0.008263186551630497, -0.004473941866308451, 0.0008200276060961187, -0.0001879991905298084, -0.018211781978607178, 0.007601897232234478, 0.0554780513048172, -0.023338234052062035, 0.01540276687592268, -0.044124945998191833, -0.022015657275915146, -0.042603395879268646, -0.010252906009554863, 0.01423234399408102, -0.026685643941164017, 0.020693078637123108, 0.0023349937982857227, 0.0016502963844686747, -0.0668545588850975, 0.002617358462885022, 0.031156660988926888, -0.010288017801940441, -0.01892573945224285, -0.016069907695055008, -0.012020244263112545, -0.003912138752639294, 0.001622498850338161, -0.014606879092752934, -0.02112613618373871, 0.0075433761812746525, -0.04564649611711502, -0.0002114076487487182, -0.019183233380317688, -0.011698378250002861, -0.0028075522277504206, -0.020084459334611893, 0.013530089519917965, 0.017158402130007744, 0.014653695747256279, -0.029845787212252617, 0.013331118039786816, -0.017041359096765518, -0.032865479588508606, -0.027364490553736687, 0.033895451575517654, -0.05444807931780815, -0.03270161896944046, 0.018527796491980553, 0.005913562141358852, -0.005489283706992865, -0.026802686974406242, -0.008058362640440464, -0.01990889571607113, 0.017006246373057365, -0.029166940599679947, -0.001755634555593133, 0.015238907188177109, 0.05079635977745056, 0.015238907188177109, -0.014958006329834461, -0.010592328384518623, -0.04618489369750023, 0.011475997976958752, 0.018796993419528008, 0.006887939292937517, -0.0005804566317237914, -5.2577597671188414e-05, 8.993055234896019e-05, -0.030992800369858742, -0.03600221127271652, 0.006367101334035397, 0.011868089437484741, -0.00020262948237359524, 0.012359666638076305, -0.02841787040233612, -0.005263977684080601, 0.009919335134327412, -0.0378514789044857, -0.0014520559925585985, -0.027996517717838287, -0.002526650670915842, -0.013331118039786816, -0.01053380686789751, 0.04108184576034546, -0.06165788322687149, 0.004371529910713434, 0.023349938914179802, -0.03071190044283867, -0.00824563018977642, 0.048549145460128784, 0.008971292525529861, 0.0062266504392027855, -0.002185764955356717, -0.006285171490162611, -0.006437326315790415, -0.008795728906989098, 0.0013159944210201502, -0.018270302563905716, -0.008596757426857948, 0.005980861373245716, 0.04545922949910164, -0.02044728957116604, -0.0668545588850975, 0.02262427657842636, 0.0017702648183330894, -0.01687750034034252, 0.005246421322226524, 0.0319291390478611, -0.02516409382224083, 0.03920917212963104, -0.008608461357653141, -0.02944784238934517, 0.013717358000576496, 0.009901778772473335, -0.010832265019416809, -0.026404742151498795, -0.003812653012573719, -0.003631237428635359, -0.01102538499981165, -0.016608303412795067, 0.021442148834466934, 0.02291688323020935, -0.03494882956147194, -0.050094105303287506, 0.027458123862743378, 0.011844680644571781, 0.043703593313694, 0.014009963721036911, 0.0003138196771033108, 0.0021930800285190344, 0.02769220806658268, 0.02661541849374771, 0.02638133428990841, -0.015215499326586723, -0.011821272782981396, -0.019885485991835594, -0.016666823998093605, 0.028745589777827263, 0.009907631203532219, -0.008333411999046803, 0.0097788842394948, -0.03483178839087486, 0.021922022104263306, 0.0054600234143435955, -0.029518067836761475, -0.023782994598150253, -0.0365874245762825, -0.03148438036441803, -0.020704783499240875, -0.0024622774217277765, 0.01585923135280609, 0.028019927442073822, -0.010434321127831936, -0.00966184213757515, -0.036915142089128494, -0.034082718193531036, -0.020646261051297188, 0.0168306827545166, -0.008678686805069447, 0.02223803661763668, -0.0433056503534317, -0.02049410715699196, 0.028347644954919815, -0.028605138882994652, -0.008824989199638367, 0.009538947604596615, -0.007315143942832947, -0.04087117314338684, 0.034340210258960724, -0.009574060328304768, 0.012055356986820698, 0.01306192111223936, -0.009849109686911106, 0.01075618714094162, -0.0005171806551516056, -0.023127559572458267, -0.02914353273808956, -0.02291688323020935, -0.03251435235142708, 0.004040885251015425, -0.012956582941114902, -0.002852906007319689, -0.013717358000576496, 0.00411111069843173, -0.009966151788830757, 0.015695372596383095, 0.014255751855671406, -0.02404048852622509, 0.04695736989378929, 0.0024227756075561047, -0.01540276687592268, -0.029962828382849693, 0.007584340870380402, -0.006378805264830589, -0.029916012659668922, 0.01567196473479271, -0.04794052615761757, 0.009141003713011742, 0.029471252113580704, -0.005691181868314743, -0.03459770232439041, -0.000898299680557102, -0.03757057711482048, -0.005117674823850393, 0.014665400609374046, 0.039349623024463654, -0.039490073919296265, -0.037547171115875244, 0.011101461946964264, -0.022753022611141205, -0.008216369897127151, 0.008614313788712025, -0.03157801181077957, 0.035323366522789, 0.016222063452005386, 0.017685091122984886, -0.018480978906154633, -0.02443843148648739, -0.01384610403329134, 0.03157801181077957, -0.015086752362549305, 0.00615642499178648, 0.0012911228695884347, 0.01269908994436264, 0.0361192524433136, 0.020810121670365334, -0.018024513497948647, -0.016034794971346855, 0.034574296325445175, -0.00013030099216848612, 0.012125582434237003, -0.008590904995799065, -0.020704783499240875, 0.002084815874695778, -0.01917152851819992, -0.01265227235853672, 0.0006137405871413648, 0.02277643233537674, -0.045529454946517944, -0.008497270755469799, 0.0193236842751503, -0.020915459841489792, -0.0013672003988176584, -0.012546934187412262, -0.009936891496181488, 0.04901731386780739, 0.03089916706085205, -0.06980402767658234, -0.0043159350752830505, -0.031952548772096634, -0.005638512782752514, 0.016315696761012077, -0.02579612284898758, 0.025491813197731972, 0.04728509113192558, -0.01287465263158083, 0.013530089519917965, -0.038179200142621994, -0.00555950915440917, 0.002791458973661065, -0.017532937228679657, 0.01687750034034252, 0.028675364330410957, 0.015636852011084557, 0.01053380686789751, 0.03689173236489296, -0.009181968867778778, 0.019136415794491768, 0.041105255484580994, -0.014852668158710003, -0.020154684782028198, -0.01454835757613182, 0.01664341427385807, 0.01669023185968399, 0.0046378010883927345, 0.001068011042661965, 0.010434321127831936, -0.009884222410619259, 0.029564885422587395, 0.01640933007001877, 0.0021067613270133734, 0.03888145089149475, -0.0176616832613945, 0.003025543410331011, -0.012605455704033375, 0.01810644380748272, 0.01175104733556509, -0.007385369390249252, 0.00149667845107615, -0.035744719207286835, 0.005454171448945999, -0.03548722714185715, 0.0207867119461298, -0.012137286365032196, 0.02954147756099701, -0.02467251755297184, 0.007601897232234478, 0.0428374819457531, 0.011587187647819519, 0.013108737766742706, -0.01961628906428814, -0.00829829927533865, 0.008280742913484573, 0.0017366150859743357, -0.022366784512996674, 0.005351759027689695, -0.05163906142115593, 0.02516409382224083, 0.0041315932758152485, -0.025608856230974197, 0.012383075430989265, 0.04227567836642265, 0.01350668165832758, -0.0028558322228491306, -0.03211640566587448, -0.0361192524433136, 0.04101162403821945, 0.015847528353333473, 0.029424434527754784, 0.02638133428990841, -0.01738078147172928, 0.036423563957214355, 0.03848350793123245, 0.06896132230758667, 0.03347409889101982, -0.004798734560608864, -0.025632264092564583, -0.03504246473312378, 0.03595539554953575, 0.023630840703845024, 0.03644697368144989, -0.004494424443691969, 0.018551204353570938, 0.031133251264691353, 0.009351680055260658, 0.034972239285707474, -0.02467251755297184, -0.012453300878405571, 0.01019438449293375, -0.006449030712246895, -0.025772714987397194, -0.0141855264082551, 0.011405772529542446, -0.034480661153793335, -0.016327401623129845, -0.02525772899389267, 0.020903754979372025, -0.013377934694290161, -0.004222300834953785, 0.00946872215718031, -0.0029245945625007153, 0.03256116807460785, 0.006964016705751419, 0.007332700304687023, -0.02302222140133381, 0.06882087141275406, 0.029798969626426697, -0.0097788842394948, 0.004617318976670504, -0.007168841082602739, -0.027130404487252235, -0.002008738461881876, 0.01138821616768837, -0.016772162169218063, -0.0019911821000277996, 0.004664135631173849, -0.014922893606126308, -0.02958829328417778, 0.03143756091594696, 0.022179516032338142, -0.04482720047235489, -0.0103933559730649, 0.009702806361019611, 0.00869039073586464, 0.02652178518474102, 0.014443020336329937, 0.026264293119311333, 0.021828388795256615, 0.010012968443334103, 0.006074495613574982, 0.027270855382084846, 0.007157136686146259, -0.01323748379945755, -0.022296559065580368, -0.01024705357849598, -0.0006953044212423265, -0.008947883732616901, 0.017193514853715897, 0.005896005779504776, 0.011236061342060566, 0.0008405100088566542, 0.03508928045630455, -0.013799287378787994, 0.033357053995132446, 0.05327765643596649, 0.0002364620304433629, 0.033216606825590134, 0.015391062945127487, 0.005922340322285891, 0.02165282517671585, -0.03174187242984772, 0.027949701994657516, 0.017848951742053032, 0.016818977892398834, 0.007051798515021801, 0.008889363147318363, -0.002905575092881918, 0.015133569948375225, -0.012886357493698597, -0.004778251983225346, -0.015554921701550484, 0.01702965423464775, -0.011885645799338818, 0.004029181320220232, 0.029822377488017082, -0.012745906598865986, -0.01411530189216137, -0.004070146009325981, 0.0065602208487689495, 0.030548039823770523, -0.026872912421822548, 0.001324041048064828, 0.03803874924778938, 0.0377812534570694, -0.006302727852016687, -0.029073307290673256, 0.012137286365032196, 0.01605820283293724, -0.010463581420481205, 0.012710793875157833, 0.013881216756999493, 0.025866348296403885, 0.043048158288002014, -0.027130404487252235, 0.010288017801940441, 0.0006298338994383812, 0.023150967434048653, 0.006612889934331179, 0.032537758350372314, 0.02818378619849682, 0.008339263498783112, 0.025632264092564583, -0.0035697901621460915, 0.02661541849374771, 0.0411754809319973, -0.005533174611628056, 0.019066190347075462, 0.028113560751080513, 0.02082182466983795, 0.0017731908010318875, -0.052341315895318985, 0.02052921988070011, -0.011399920098483562, -0.012418188154697418, 0.023092446848750114, 0.0061271642334759235, -0.02516409382224083, -0.024157531559467316, -0.02102079801261425, -0.012511822395026684, 0.030828941613435745, -0.02102079801261425, -0.006466587074100971, 0.012429892085492611, 0.03167164698243141, 0.008134439587593079, -0.0017015024786815047, 0.0012735665077343583, 0.015297428704798222, -0.002690509893000126, 0.041105255484580994, 0.02359572798013687, -0.007408777717500925, 0.005316646303981543, 0.03412953391671181, -0.0025939499028027058, 0.02326800860464573, 0.0062149460427463055, -0.030735308304429054, -0.025913165882229805, 0.005149861332029104, -0.03656401485204697, -0.020892050117254257, -0.01445472426712513, 0.013050216250121593, -0.038132380694150925, -0.0034410436637699604, -0.001846342347562313, -0.0014886317076161504, -0.006074495613574982, 0.009521391242742538, -0.021570896729826927, 0.024157531559467316, -0.03522973135113716, 0.048642780631780624, 0.02360743284225464, 0.006378805264830589, -0.0012925858609378338, -0.014688808470964432, 0.043282244354486465, -0.03761739656329155, 0.004795808345079422, -0.017685091122984886, -0.009813996963202953, -0.005445393268018961, 0.03391885757446289, -0.00480458652600646, -0.029518067836761475, -0.018164964392781258, 0.013132146559655666, -0.03668105602264404, -0.0073502566665410995, -0.018071331083774567, 0.033989083021879196, 0.023537207394838333, -0.01644444279372692, -0.006478291470557451, -0.023584023118019104, -0.011985131539404392, 0.010510399006307125, -0.023572320118546486, -0.005135230720043182, 0.01781383901834488, -0.01795428805053234, -0.02258916385471821, -0.037500351667404175, 0.004488572012633085, -0.016971133649349213, 0.007578488904982805, 0.028066743165254593, -0.01301510352641344, -0.010381652042269707, -0.0072098057717084885, 0.001311605330556631, 0.03539359197020531, 0.02350209467113018, 0.025281136855483055, 0.04780007526278496, 0.004342269152402878, 0.01287465263158083, 0.002988967811688781, 0.042111821472644806, 0.0029758005402982235, -0.02670905366539955, -0.036236297339200974, 0.019826965406537056, -0.043680187314748764, 0.02282324805855751, 0.0005435151979327202, -0.0031718462705612183, -0.016268879175186157, -0.0012867337791249156, 0.023864924907684326, -0.0020014233887195587, 0.009960299357771873, 0.0027534200344234705, 0.018083035945892334, -0.005699960049241781, 0.03848350793123245, -0.019979121163487434, -0.0029289836529642344, -0.03918576240539551, 0.013342821970582008, 0.006033530458807945, -0.016467852517962456, 0.0011001976672559977, -0.0014323052018880844, -0.024859784170985222, 0.04887686297297478, 0.016526373103260994, -0.038764409720897675, 0.0010994661133736372, -0.03529995679855347, -0.030875759199261665, -0.019358796998858452, -0.005348833277821541, -0.020611148327589035, 0.03553404286503792, -0.006051086820662022, -0.027177222073078156, 0.0391155369579792, 0.034574296325445175, -0.009135151281952858, 0.012219215743243694, -0.04454629868268967, -0.0348551981151104, 0.011903202161192894, -0.0074263340793550014, 0.04044982045888901, 0.001669315854087472, -0.011236061342060566, 0.014009963721036911, -0.015730485320091248, 0.005457097198814154, 0.007315143942832947, -0.01853950135409832, -0.03183550760149956, -0.00040708776214160025, -0.011066349223256111, 0.021582599729299545, 0.024789558723568916, -0.014688808470964432, 0.014735626056790352, -0.02413412183523178, 0.01639762707054615, -0.03616607189178467, -0.005164491478353739, -0.010036377236247063, 0.020377064123749733, -0.04777666553854942, 0.007631157990545034, -0.022881770506501198, 0.03202277421951294, 0.00946872215718031, -0.001049723126925528, 0.03342727944254875, -0.03733649477362633, 0.00395310390740633, 0.0006499505252577364, 0.006782601121813059, 0.01454835757613182, -0.005211308598518372, 0.023677658289670944, -0.008889363147318363, 0.017579752951860428, -0.022120995447039604, -0.0043920124880969524, 0.031999364495277405, -0.005214234348386526, -0.009732067584991455, -0.033169787377119064, -0.03616607189178467, -0.026006799191236496, 0.02199224755167961, -0.01209046971052885, -0.010838117450475693, 0.009954447858035564, 0.0037570579443126917, 0.04700418934226036, -0.001346717937849462, 0.015472992323338985, -0.02097398042678833, -0.003116251202300191, -0.002105298452079296, -0.007695531472563744, -0.017158402130007744, -0.022834952920675278, 0.02579612284898758, -0.009187820367515087, 0.015648555010557175, -0.017509527504444122, 0.01635080948472023, -5.0337333959760144e-05, 0.02603020705282688, 0.0069815730676054955, -0.02535136230289936, 0.0069815730676054955, -0.04052004590630531, 0.020611148327589035, 0.01192661002278328, -0.011224356479942799, 0.001621035858988762, 0.03412953391671181, 0.009603320620954037, -0.012570342980325222, -0.007151284720748663, -0.00943946186453104, 0.006969869136810303, -0.02116124890744686, -0.008684538304805756, 0.00880743283778429, 0.02769220806658268, 0.005612178239971399, -0.03436361998319626, -0.04559968039393425, 0.002520798472687602, -0.006291023455560207, -0.01209046971052885, 0.034527480602264404, 0.014712217263877392, 0.020576035603880882, -0.04068390280008316, -0.005541952792555094, 0.025679081678390503, -0.004447607323527336, -0.019007669761776924, 0.02539817988872528, -0.009181968867778778, 0.027130404487252235, -0.013471568934619427, -0.027762433513998985, -0.004169631749391556, 0.03960711508989334, 0.009556503966450691, -0.008403637446463108, -0.0063553969375789165, -0.01707647182047367, -0.0073502566665410995, -0.007853538729250431, -0.026357926428318024, -0.013974850997328758, -0.014396202750504017, 0.02710699662566185, -0.0575379952788353, 0.008801581338047981, 0.018282007426023483, -0.022600868716835976, 0.01736907660961151, -0.005135230720043182, -0.013249188661575317, 0.04302474856376648, 0.03181209787726402, -0.013951442204415798, 0.02467251755297184, -0.0005881375400349498, 0.020950572565197945, 0.005907710175961256, -0.029213758185505867, 0.002355476375669241, -0.006320284213870764, 0.002703677164390683, -0.008561644703149796, 0.005591696128249168, -0.017053063958883286, -0.008339263498783112, 0.004040885251015425, 0.03794511407613754, -0.027715615928173065, -0.00471973093226552, -0.00011384192475816235, 0.02399367094039917, 0.0037570579443126917, -0.005799445789307356, 0.02525772899389267, -0.025000235065817833, 0.016034794971346855, -0.02823060378432274, 0.005948674865067005, -0.035885170102119446, 0.007016685791313648, -0.02457888238132, 0.0026744166389107704, -0.012886357493698597, 0.038226015865802765, -0.012172399088740349, 0.02024831809103489, 0.05655483901500702, -0.04105843976140022, -0.027762433513998985, -0.009404349140822887, 0.01952265575528145, -0.0026802686043083668, 0.011423328891396523, -0.0022428231313824654, 0.0203887689858675, 0.010469433851540089, -0.04447607323527336, -0.0323973074555397, -0.027036771178245544, -0.016912613064050674, 0.017731908708810806, -0.006688967347145081, 0.025327954441308975, -0.0032742584589868784, -0.005574139766395092, 0.018820401281118393, -0.02818378619849682, -0.02258916385471821, -0.027177222073078156, 0.02272961474955082, -0.0014227954670786858, -0.032233450561761856, -0.023829812183976173, -0.009603320620954037, -0.002320363651961088, -0.013834400102496147, 0.03600221127271652, -0.03181209787726402, -0.008573348633944988, -0.01615183800458908, 0.005141083151102066, -0.027458123862743378, -0.004959667567163706, 0.0241809394210577, 0.003721945220604539, 0.03775784745812416, 0.04143297299742699, 0.0043364171870052814, -0.02044728957116604, -0.015414470806717873, -0.018024513497948647, 0.0260770246386528, 0.021816685795783997, -0.01800110563635826, 0.03188232332468033, -0.01674875244498253, -0.006852826569229364, 0.0026012652087956667, -0.000990470522083342, 0.01150525826960802, -0.05014092102646828, 0.02208588272333145, 0.008678686805069447, 0.034621112048625946, 0.04342269524931908, -0.011581335216760635, -0.0071103195659816265, -0.018773585557937622, -0.0043364171870052814, -0.020962275564670563, 0.005442467052489519, 0.01590604893863201, -0.015613443218171597, -0.010065637528896332, 0.03693855181336403, -0.004432977177202702, -0.01619865372776985, -0.0004542704264167696, 0.0065192561596632, 0.037828072905540466, -0.0031806244514882565, 0.015835823491215706, 0.008696243166923523, 0.006062791217118502, 0.010375799611210823, 0.018867218866944313, -3.0197828891687095e-05, -0.006279319524765015, 0.002008738461881876, 0.0015171607956290245, -0.021582599729299545, -0.014934597536921501, -0.015098457224667072, -0.029354209080338478, 0.027224039658904076, -0.007783312816172838, -0.04009869322180748, -0.026872912421822548, -0.011329694651067257, -0.0130385123193264, 0.005345907062292099, 0.0024856857489794493, 0.02670905366539955, -0.001476927543990314, -0.00729758758097887, -0.006408066023141146, 0.008327559567987919, -0.01070351805537939, 0.006671410985291004, -0.037687622010707855, 0.014922893606126308, 0.02715381421148777, 0.003508342895656824, 0.009187820367515087, -0.01746271178126335, 0.00615642499178648, -0.02661541849374771, -0.0264749675989151, 0.02385322004556656, -0.01481755543500185, -0.016046499833464622, 0.0067767491564154625, -0.03558085858821869, 0.01761486567556858, -0.026217475533485413, -0.014946301467716694, -0.0018492683302611113, 0.03206958994269371, 2.83919016510481e-05, 0.02262427657842636, -0.039981648325920105, -0.014805851504206657, 0.004994780290871859, 0.0004996242932975292, -0.006495847832411528, 0.015086752362549305, -0.0072215101681649685, 0.004263265989720821, -0.015636852011084557, -0.0021184657234698534, 0.011575483717024326, -0.007777460850775242, 0.05140497907996178, 0.04234590381383896, -0.008538235910236835, 0.0258429404348135, -0.01323748379945755, -0.01639762707054615, -0.010592328384518623, -0.011429180391132832, -0.00793546810746193, 0.024859784170985222, 0.003256702097132802, -0.0015244759852066636, -0.012968286871910095, 0.015742190182209015, 0.014349386096000671, -0.012991695664823055, 0.000964867474976927, 0.01537935808300972, -0.03391885757446289, 0.00375413172878325, 0.0009129299432970583, 0.0016415183199569583, 0.020260022953152657, -0.02195713482797146, 0.02203906513750553, 0.015999682247638702, 0.0296351108700037, 0.0024227756075561047, -0.0011916368966922164, -0.020716486498713493, 0.06039382889866829, -0.008146144449710846, -0.010106602683663368, -0.006636298261582851, -0.007619453594088554, 0.002656860277056694, -0.003803874831646681, 0.007929615676403046, 0.015051639638841152, 0.007941320538520813, -0.0014864371623843908, 0.03602562099695206, -0.011300434358417988, 0.03302933648228645, 0.020868642255663872, -0.011967575177550316, -0.005006484221667051, 0.03761739656329155, -0.011868089437484741, -0.004997706040740013, 0.015742190182209015, 0.008204665035009384, 0.035838350653648376, 0.005989639554172754, -0.04473356902599335, 0.013928033411502838, 0.04911094903945923, 0.011200948618352413, -0.009995412081480026, 0.02846468798816204, 0.03441043570637703, 0.009176116436719894, 0.008795728906989098, -0.02233167178928852, 0.0011323842918500304, -0.035323366522789, -0.0012823446886613965, -0.004365677945315838, -0.00384483952075243, 0.0011067813029512763, 0.013296005316078663, -0.012488413602113724, 0.002264768583700061, -0.0390453115105629, -0.025913165882229805, -0.017439302057027817, -0.028675364330410957, 0.006086199544370174, -0.00907663069665432, -0.032771844416856766, 0.01693602092564106, -0.011516962200403214, -0.02467251755297184, -0.0030518779531121254, -0.004283748101443052, 0.0258429404348135, 0.01635080948472023, -0.02009616233408451, 0.025959981605410576, -0.06039382889866829, 0.015578330494463444, -0.019499247893691063, 0.009380940347909927, 0.002871925476938486, 0.01985037513077259], [0.026037130504846573, 0.05476607009768486, 0.04098890349268913, 0.034137025475502014, -0.05085071176290512, 0.04906432703137398, -0.024544399231672287, -0.011067003943026066, 0.0015080245211720467, -0.045858629047870636, 0.028141634538769722, -0.04451272636651993, 0.02613501437008381, 0.021571174263954163, 0.04353388398885727, -0.0004118008364457637, -0.006313514430075884, -0.031053682789206505, -0.006399163044989109, 0.03934934735298157, 0.033158186823129654, 0.07708360999822617, 0.04008347541093826, -0.013911755755543709, -0.0013963757082819939, -0.03599682077765465, 0.01121382974088192, -0.004710664972662926, 0.04673958569765091, 0.02655102126300335, 0.03996112197637558, -0.02171800099313259, 0.02103281393647194, -0.01990714855492115, 0.020592335611581802, 0.02738303504884243, 0.00021163580822758377, 0.0018597949529066682, -0.01271267794072628, -0.022745782509446144, -0.061177466064691544, -0.04801207780838013, -0.0286555252969265, -0.00809989683330059, -0.05011657997965813, -0.03242405876517296, 0.014352234080433846, -0.020066209137439728, -0.001219725701957941, -0.003930652514100075, 0.03607023507356644, 0.005175613798201084, 0.004579133354127407, 0.029805662110447884, -0.01984596997499466, -0.0034504092764109373, -0.02158340997993946, 0.04155173525214195, 0.009201090782880783, -0.00224368367344141, 0.011886782012879848, -0.03080897219479084, -0.03575211018323898, 0.03367207944393158, -0.018206413835287094, -0.029365183785557747, -0.0006412163493223488, 0.01738663576543331, -0.02696702815592289, 0.011941841803491116, 0.013850579038262367, -0.0042885406874120235, 0.002990048611536622, -0.019735850393772125, 0.003109344746917486, -0.013275510631501675, 0.001234255381859839, 0.02437310293316841, 0.01051640696823597, 0.0027927514165639877, -0.03149415925145149, -0.015588019043207169, -0.02305166982114315, 0.04037712886929512, -0.0531020425260067, 0.022231891751289368, -0.054521359503269196, -0.023712385445833206, -0.03611917793750763, 0.007769538555294275, -0.09137466549873352, -0.04245716333389282, 0.013923991471529007, 0.06837193667888641, -0.029585422948002815, 0.015269896015524864, -0.015416721813380718, -0.008754495531320572, -0.028753409162163734, 0.08349500596523285, -0.006509282626211643, 0.003389231627807021, -0.00879731960594654, -0.01474376954138279, 0.045026615262031555, -0.045589447021484375, -0.05202531814575195, -0.04605439677834511, -0.031543102115392685, 0.009360152296721935, 0.04779183864593506, -0.02401827462017536, -0.0268936138600111, 0.10140776634216309, -0.006215630564838648, 0.019442198798060417, 0.002347685396671295, -0.013764929957687855, -0.014939537271857262, -0.016603564843535423, -0.011770544573664665, 0.031396277248859406, 0.008283428847789764, -0.08858497440814972, 0.0019056780729442835, -0.015135305002331734, 0.014841653406620026, 0.007647183258086443, 0.011073121801018715, -0.06592483818531036, 0.026428665965795517, -0.038101326674222946, 0.03920252248644829, -0.08946593105792999, 0.0027560449671000242, 0.04735136032104492, -0.024324161931872368, -0.016260970383882523, -0.04654381796717644, 0.013715988025069237, 0.027211736887693405, -0.01892830803990364, 0.010644879192113876, 0.020641276612877846, -0.030784500762820244, -0.04108678549528122, -0.0029976959340274334, -0.006025980692356825, -0.005224555730819702, -0.017851585522294044, 0.006313514430075884, 0.012425143271684647, -0.0015309661393985152, -0.0078551871702075, -0.008332370780408382, 0.005652797874063253, 0.03269323706626892, 0.046837467700242996, 0.004144773352891207, -0.01341010071337223, -0.032864537090063095, 0.010852882638573647, -0.007567652501165867, -0.024397574365139008, 0.015416721813380718, 0.010228872299194336, -0.023993803188204765, -0.017423342913389206, 0.00723117683082819, -0.009335681796073914, -0.017986174672842026, -0.033525250852108, -0.021081754937767982, -0.014413411729037762, -0.05633221194148064, -0.008228369057178497, 0.029536481946706772, -0.015551311895251274, -0.009305092506110668, 0.008075425401329994, 0.0412336140871048, -0.016260970383882523, -0.062009479850530624, 0.0020892105530947447, -0.01983373425900936, 0.024703461676836014, -0.0432891771197319, 0.013459042645990849, -0.04695982486009598, -0.01962573081254959, 0.015306602232158184, -0.01519648265093565, -0.022464366629719734, 0.013777165673673153, 0.0018919131252914667, 0.005533501971513033, -0.03543398901820183, 0.011562541127204895, 0.06807828694581985, -0.02333308570086956, 0.028875764459371567, -0.05554914101958275, 0.04629910737276077, 0.04421907290816307, -0.05677269026637077, -0.000624774897005409, -0.028312932699918747, 0.06656108796596527, 0.05261262133717537, -0.0035727641079574823, 0.035458460450172424, 0.0063746920786798, -0.0002890635223593563, 0.04952927678823471, -0.012651500292122364, 0.020029501989483833, 0.0056589157320559025, -0.012039725668728352, 0.02383474074304104, 0.005521266255527735, -0.03254641219973564, 0.010473581962287426, 0.01566143147647381, 0.023504383862018585, -0.03690224885940552, -0.006282926071435213, -0.032937947660684586, -0.01104253251105547, 0.02429969049990177, -0.015282131731510162, -0.004068301524966955, -0.028263989835977554, -0.0013413159176707268, -0.007959188893437386, 0.005986215081065893, 0.03663306683301926, 0.000597627367824316, -0.019393257796764374, -0.0004343600303400308, 0.02306390553712845, 0.03386784717440605, 0.05393405631184578, -0.04583415761590004, -0.027627743780612946, -0.009280622005462646, -0.00019108399283140898, 0.028386345133185387, -0.01774146594107151, 0.04448825493454933, 0.04791419208049774, -0.007904129102826118, -0.02362673729658127, 0.038052383810281754, -0.008118249475955963, 0.011574776843190193, 0.013703752309083939, -0.011219947598874569, -0.027480918914079666, 0.035458460450172424, 0.0025679240934550762, -0.044953204691410065, 0.018830424174666405, 0.004239598289132118, -0.03729378432035446, -0.040352657437324524, 0.025621123611927032, 0.01292068138718605, -0.029952488839626312, -0.027064912021160126, -0.004579133354127407, -0.010210519656538963, -0.014242114499211311, 0.04255504533648491, -0.05334675312042236, -0.04625016450881958, 0.021632352843880653, 0.044684022665023804, 0.0023522735573351383, -0.023528853431344032, -0.009990280494093895, -0.03582552447915077, -0.022403188049793243, 0.036853305995464325, -0.06259678304195404, -0.03151863068342209, 0.0018766188295558095, 0.027847982943058014, -0.024752402678132057, -0.020800339058041573, -0.02919388748705387, 0.061177466064691544, -0.004982904531061649, 0.02312508225440979, -0.07023173570632935, 0.015343308448791504, -0.014339998364448547, -0.014511295594274998, 0.008864615112543106, -0.06866558641195297, -0.06646320223808289, -0.02674678899347782, 0.051095422357320786, 0.013960697688162327, 0.01344680693000555, -0.03428385406732559, 0.026306310668587685, -0.01836547628045082, 0.0042090099304914474, -0.02417733520269394, -0.018744776025414467, 0.03176334127783775, -0.03597234934568405, 0.020433275029063225, -0.04358282685279846, 0.0028707527089864016, 0.008827908895909786, -0.06939972192049026, -0.029438598081469536, 0.03731825575232506, -0.06156900152564049, 0.024703461676836014, 0.012614794075489044, 0.013043035753071308, -0.050263408571481705, 0.009543685242533684, 0.006454222835600376, 0.004340541083365679, 0.05104647949337959, -0.0531020425260067, -0.03736719861626625, -0.025376413017511368, 0.040132418274879456, 0.009042029269039631, -0.013055271469056606, 0.027162795886397362, -0.011256653815507889, 0.03756296634674072, 0.012602558359503746, -0.037709791213274, -0.02983013354241848, 0.008277310989797115, -0.04451272636651993, 0.020176328718662262, 0.0447084940969944, 0.03457750380039215, -0.0028891058173030615, -0.016725920140743256, 0.014119759202003479, -0.015074128285050392, 0.03966746851801872, -0.04032818600535393, -0.012700442224740982, -0.025547711178660393, -0.02571900747716427, -0.035385046154260635, -0.028190577402710915, -0.008962498977780342, -0.011073121801018715, -0.02381027117371559, -0.015600253827869892, -0.04057289659976959, -0.011085357517004013, -0.015820493921637535, 0.04204115644097328, 0.05085071176290512, 0.027627743780612946, -0.04098890349268913, 0.0016257911920547485, -0.003380055073648691, -0.020237505435943604, 0.057115282863378525, -0.014939537271857262, -0.0034075849689543247, -0.028753409162163734, -0.02801927924156189, 0.03837050870060921, -0.01656685769557953, -0.002538864966481924, -0.002130505396053195, 0.0078551871702075, 0.024752402678132057, -0.014817182905972004, 0.0314452201128006, -0.013532456010580063, 0.019784793257713318, 0.0475226566195488, -0.024262983351945877, 0.006038215942680836, -0.005931155290454626, 0.0013741988223046064, 0.02081257477402687, -0.02809269353747368, -0.035042453557252884, 0.00858931615948677, -0.0303929653018713, 0.03996112197637558, 0.011311713606119156, 0.03553187474608421, 0.014939537271857262, -0.03303583338856697, 0.004982904531061649, -0.06460340321063995, -0.05393405631184578, 0.030515320599079132, 0.06939972192049026, -0.004894197452813387, 0.045246854424476624, -0.007953071035444736, 0.026379723101854324, -0.04727794602513313, 0.02557218074798584, 0.011158769950270653, 0.026012659072875977, 0.04382753744721413, 0.016933923587203026, -0.030906856060028076, 0.029805662110447884, -0.0015179659239947796, -0.04140491038560867, -0.06646320223808289, 0.01830429770052433, -0.04918668419122696, -0.015563547611236572, 0.010106517933309078, -0.016713684424757957, -0.021253053098917007, -0.003939828835427761, -0.03386784717440605, 0.005031846463680267, -0.043484944850206375, -0.01599179022014141, 0.01901395618915558, 0.0034748802427202463, -0.004114184528589249, -0.0398142971098423, 0.0008733083377592266, -0.04859938099980354, -0.02730962075293064, -0.01955231837928295, 0.013312216848134995, 0.014584708027541637, -0.009555920027196407, 0.018071824684739113, 0.05246579647064209, 0.0078551871702075, -0.03885992616415024, -0.05917084589600563, 0.012602558359503746, 0.012510792352259159, -0.03024614043533802, 0.02647760882973671, 0.0127493841573596, -0.03151863068342209, -0.005824095103889704, 0.001917913556098938, -0.01991938427090645, 0.025963718071579933, -0.05917084589600563, -0.036363884806632996, -0.004147832281887531, 0.040621839463710785, 0.03509139642119408, 0.04583415761590004, 0.012168197892606258, -0.054521359503269196, 0.03868862986564636, -0.02277025394141674, -0.018879367038607597, -0.014009639620780945, -0.05966026708483696, 0.023443205282092094, -0.04147832468152046, -0.01628544181585312, -0.010687703266739845, 0.0426284596323967, -0.006882464978843927, 0.014107524417340755, 0.04199221357703209, 0.024850286543369293, 0.039447229355573654, -0.009360152296721935, 0.026159485802054405, -0.09998845309019089, -0.05584279075264931, 0.016811568289995193, 0.024287454783916473, 0.010026986710727215, 0.027970338240265846, -0.032937947660684586, 0.010149342007935047, -0.02297825738787651, -0.024226276203989983, 0.029218358919024467, -0.0118806641548872, 0.017484519630670547, 0.024984877556562424, -0.03411255404353142, -0.019589025527238846, 0.014217643067240715, 0.03778320550918579, 0.03976535424590111, -0.018059588968753815, -0.048379141837358475, -0.03102921135723591, 0.03991217911243439, -0.014131994917988777, 0.039569586515426636, 0.020005032420158386, -0.016713684424757957, -0.04372965544462204, 0.017019571736454964, -0.016676977276802063, 0.0026076894719153643, 0.012351730838418007, -0.030197197571396828, -0.06093275919556618, 0.03487115725874901, 0.024201806634664536, -0.022109536454081535, 0.0314452201128006, 0.03516480699181557, -0.0004209774488117546, 0.005294909700751305, -0.007121057249605656, -0.01585719920694828, -0.045100029557943344, -0.01934431493282318, -0.032105933874845505, -0.02667337656021118, -0.024422045797109604, -0.03653518483042717, 0.015832727774977684, 0.00040721253026276827, 0.014841653406620026, -0.03626600280404091, 0.0025006290525197983, -0.010608172975480556, 0.02453216351568699, -0.02250107191503048, -0.0019316785037517548, 0.020384332165122032, 0.028337402269244194, 0.006802934221923351, -0.03624153137207031, 0.007017055526375771, 0.023590032011270523, 0.023430969566106796, -0.010020868852734566, 0.008118249475955963, -0.004664781969040632, 0.032864537090063095, -0.0019592083990573883, -0.023112846538424492, -0.012235493399202824, -0.009201090782880783, 0.025694536045193672, 0.011929606087505817, -0.01941772736608982, -0.0026642787270247936, -0.009072618559002876, 0.02004173770546913, -0.03313371539115906, 0.011079239659011364, 0.03178781270980835, -0.010907942429184914, 0.03868862986564636, -0.017704758793115616, 0.008161074481904507, -0.021155167371034622, -0.013581397943198681, -0.013079742901027203, -0.014560237526893616, 0.0032546413131058216, -0.04421907290816307, -0.00639304518699646, 0.015110834501683712, 0.04059736803174019, -0.051242247223854065, -0.021118462085723877, 0.008252840489149094, -0.004655605182051659, 0.01585719920694828, 0.002769809914752841, -0.015979554504156113, -0.03332948312163353, 0.000523449678439647, -0.015147540718317032, -0.01467035710811615, -0.00702317338436842, -0.03166545554995537, 0.01705627702176571, -0.003502409905195236, 0.010638761334121227, -0.007946953177452087, 0.028557641431689262, 0.004205951001495123, 0.0012113138800486922, 0.01167266070842743, -0.037122488021850586, 0.016395561397075653, 0.0062064542435109615, -0.0068947006948292255, 0.007347413804382086, 0.020274212583899498, -0.035801053047180176, -0.008424137718975544, 0.028263989835977554, -0.0032056993804872036, -0.02613501437008381, 0.004805489908903837, -0.016175322234630585, 0.02633078210055828, 0.0018674421589821577, -0.01515977643430233, -0.003453467972576618, -0.00302981398999691, 0.018561244010925293, 0.0021718000061810017, -0.0034809978678822517, 0.0016930864658206701, -0.0276032742112875, 0.016248734667897224, 0.02451992966234684, -0.04358282685279846, -0.005619150586426258, 0.027407504618167877, -0.028631053864955902, -0.017900526523590088, 0.014694827608764172, 0.0067906989715993404, 0.008754495531320572, -0.033525250852108, 0.011158769950270653, -0.0489175021648407, 0.004548544529825449, 0.029658835381269455, -0.015600253827869892, -0.002268154639750719, -0.009818983264267445, -0.008069307543337345, -0.003958181943744421, 0.003025225829333067, 0.023528853431344032, -0.046568289399147034, 0.017704758793115616, 0.015955083072185516, -0.047889720648527145, -0.004236539825797081, 0.014511295594274998, 0.011978548020124435, 0.014927302487194538, 0.05134012922644615, -0.0398387685418129, -0.01823088526725769, 0.014193172566592693, -0.008320135995745659, -0.02445875108242035, 0.01278609037399292, -0.017790406942367554, 0.019038427621126175, -0.04037712886929512, -0.023700151592493057, 0.01540448609739542, -0.012565852142870426, -0.0068396409042179585, 0.03271770849823952, 0.028802352026104927, -0.007849069312214851, 0.019821498543024063, 0.0008480726392008364, -0.0017680288292467594, 0.005193966906517744, -0.01519648265093565, -0.01408305298537016, 0.02730962075293064, -0.016248734667897224, 0.012064196169376373, -0.0020830926951020956, -0.020029501989483833, 0.03198358044028282, 0.01927090249955654, -0.026183955371379852, -0.059904977679252625, 0.015257660299539566, 0.02221965603530407, -0.013079742901027203, 0.028949176892638206, 0.019735850393772125, -0.018133001402020454, 0.0035391165874898434, 0.03680436313152313, -0.028043750673532486, -0.0013046094682067633, 0.010926296003162861, -0.017447814345359802, 0.022268598899245262, 0.02263566292822361, 0.014242114499211311, 0.01878148317337036, -0.009231680072844028, -0.010418523102998734, 0.015465663745999336, -0.004181480035185814, -0.041258085519075394, -0.026599962264299393, -0.006386927794665098, -0.01753346249461174, 0.025449827313423157, 0.03457750380039215, 0.01380163710564375, 0.032228291034698486, 0.02361450158059597, 0.005395852494984865, -0.0055120899342000484, -0.005414206068962812, -0.036926720291376114, 0.018255356699228287, 0.011862310580909252, 0.014560237526893616, -0.009354034438729286, 0.003979594446718693, 0.0384194478392601, -0.05266156420111656, 0.02404274418950081, -0.011060886085033417, -0.0059403320774436, -0.02907153218984604, 0.018194178119301796, -0.022880373522639275, -0.026428665965795517, 0.013875049538910389, -0.022819194942712784, -0.008852379396557808, -0.009562037885189056, -0.03288900479674339, 0.012406790629029274, -0.005970920901745558, -0.03364760801196098, 0.0008870732854120433, -0.00963545124977827, 0.03746508061885834, -0.0010553112952038646, -0.007530946284532547, -0.061520062386989594, -0.007292354013770819, 0.01809629425406456, -0.022023888304829597, 0.04164962098002434, 0.011330067180097103, -0.011397361755371094, -0.037685319781303406, 0.009072618559002876, -0.037758734077215195, -0.02368791587650776, 0.04527132585644722, -0.07458756864070892, 0.005089965183287859, 0.06230313330888748, -0.017435578629374504, -0.019111840054392815, 0.009812865406274796, 0.017129691317677498, -0.009005323052406311, 0.020139621570706367, 0.01009428221732378, -0.05476607009768486, -0.05114436149597168, 0.05011657997965813, -0.035458460450172424, 0.008852379396557808, -0.01781487837433815, -0.010473581962287426, 0.03347631171345711, 0.0030466378666460514, 0.02466675452888012, 0.0011233713012188673, -0.022684605792164803, -0.024703461676836014, -0.027064912021160126, -0.005411147139966488, -0.003545234212651849, -0.01941772736608982, -0.016933923587203026, 0.03885992616415024, 0.005258203484117985, 0.017900526523590088, -0.005554914008826017, -0.005371381528675556, -0.041600678116083145, -0.024764638394117355, 0.006539871450513601, -0.032864537090063095, -0.01446235366165638, -0.02571900747716427, -0.02284366637468338, -0.01942996308207512, 0.040621839463710785, -0.05902402102947235, 0.0030619322787970304, 0.009788394905626774, -0.03271770849823952, 0.0034473503474146128, -0.019943853840231895, -0.028949176892638206, 0.06768675148487091, 0.05912190303206444, -0.061862654983997345, 0.006133040878921747, 0.008791201747953892, -0.010693821124732494, 0.04375412315130234, 0.0303929653018713, 0.023859212175011635, -0.015636960044503212, -0.013887285254895687, -0.004276304971426725, -0.021497761830687523, 0.013618104159832, -0.002635219367220998, -0.029463067650794983, 0.03183675557374954, -0.009935220703482628, -0.011128181591629982, 0.009354034438729286, 0.013422336429357529, 0.02214624360203743, -0.0023109789472073317, 0.010234990157186985, 0.01865912787616253, -0.02956095151603222, 0.020788103342056274, 0.016052966937422752, -0.011531952768564224, 0.02032315544784069, -0.025254057720303535, 0.016028497368097305, -0.034969039261341095, 0.04588310047984123, 0.014964008703827858, -0.026942556723952293, 0.020922694355249405, -0.06783357262611389, -0.006362456828355789, -0.012529144994914532, 0.015820493921637535, -0.010773352347314358, -0.00925615057349205, -0.013764929957687855, -0.0321548767387867, -0.0021442703437060118, -0.009929102845489979, 0.014376704581081867, 0.004328305833041668, -0.020518923178315163, 0.02858211286365986, -0.022892609238624573, 0.03208146244287491, 0.02290484309196472, 0.004836078733205795, 0.03394125774502754, -0.04769395291805267, -0.014425646513700485, 0.0068457587622106075, 0.005759858526289463, 0.03296241909265518, -0.03276665136218071, 0.023357557132840157, 0.010179930366575718, 0.009476389735937119, -0.02354108914732933, 0.04079313576221466, -0.032375115901231766, 0.02117963880300522, -0.0335497222840786, -0.03822368010878563, 0.032742179930210114, 8.019983943086118e-05, -0.0013321393635123968, -0.008564845658838749, -0.033916786313056946, 0.003477938938885927, 0.008460843935608864, 0.03479774296283722, -0.03186122328042984, 0.024605577811598778, -0.011574776843190193, -0.016322148963809013, 0.0101309884339571, -0.023296380415558815, 0.006099393591284752, 0.012516910210251808, 0.021779177710413933, -0.0034748802427202463, -0.01633438467979431, -0.009311210364103317, -0.000735276669729501, 0.025767948478460312, 0.021840356290340424, -0.006778463255614042, 0.008240604773163795, -0.04571180418133736, 0.025694536045193672, -0.004985963460057974, -0.03788108751177788, -0.02403050847351551, 0.012455732561647892, -0.028679996728897095, 0.010644879192113876, 0.026183955371379852, 0.019821498543024063, -0.00539891142398119, -0.021632352843880653, 0.02472793310880661, -0.016028497368097305, 0.015098598785698414, 0.015172012150287628, -0.022794723510742188, -0.013018565252423286, -0.00438642455264926, -0.028459757566452026, 0.005545737221837044, 0.013544691726565361, -0.008834026753902435, 0.028312932699918747, 0.030711088329553604, 0.0027025146409869194, 0.0033035832457244396, 0.031616516411304474, 0.04669064283370972, -0.01768028736114502, -0.015477899461984634, 0.014095288701355457, -0.004609722178429365, 0.0006186571554280818, -0.006686697248369455, -0.012602558359503746, -0.012651500292122364, -0.019650202244520187, 0.0024807462468743324, 0.008693317882716656, -0.02270907536149025, -0.019038427621126175, 0.016309913247823715, -0.018279828131198883, 0.005102200899273157, -0.005034905392676592, -0.006077981553971767, 0.014144230633974075, -0.0067968168295919895, 0.007726714015007019, 0.01404634676873684, -0.009115442633628845, 0.06014968454837799, 0.005120554007589817, -0.035311635583639145, -0.01432776264846325, -0.006405280902981758, -0.011091474443674088, 0.01071829255670309, -0.043142348527908325, 0.0041845389641821384, 0.007408591452986002, 0.020629042759537697, -0.004609722178429365, 0.0031995815224945545, 0.011348419822752476, 0.01237008348107338, 0.00504714110866189, 0.0015799080720171332, 0.007469768635928631, -0.014829417690634727, -0.007622712291777134, 0.027211736887693405, 0.020922694355249405, -0.032375115901231766, 0.007500357460230589, -0.009935220703482628, -0.022317539900541306, 0.005765976384282112, -0.012651500292122364, -0.0008878380176611245, 0.014119759202003479, 0.05246579647064209, -0.015355544164776802, -0.03890886902809143, 0.025523239746689796, 0.04605439677834511, -0.01470706332474947, 0.0027223972138017416, -0.006417516153305769, -0.008326252922415733, 0.0488930307328701, -0.03947170078754425, -0.004704547114670277, 0.01628544181585312, 0.014731533825397491, -0.00786130502820015, 0.020629042759537697, 0.031469687819480896, 0.011219947598874569, -0.013520220294594765, -0.010785587131977081, 0.016297677531838417, 0.03966746851801872, -0.010638761334121227, 0.02242765948176384, 0.06196054071187973, 0.003979594446718693, 0.006319632288068533, 0.004582192283123732, -0.009280622005462646, -0.011379009112715721, 0.0035391165874898434, 0.01892830803990364, 0.002277331193909049, -0.03095579892396927, 0.001288550440222025, -0.00814272090792656, -0.002291096141561866, 0.018475595861673355, -0.0153677798807621, 0.0035819406621158123, 0.021473290398716927, 0.013605868443846703, -0.021534468978643417, 0.01627320609986782, 0.011311713606119156, 0.03599682077765465, 0.007243412081152201, 0.017900526523590088, -0.0036308825947344303, 0.00859543401747942, 0.02117963880300522, 0.019686909392476082, 0.026771260425448418, 0.018463360145688057, 0.0019408551743254066, -0.035947881639003754, -0.008002012968063354, 0.037269312888383865, -0.03499351069331169, -0.010204401798546314, -0.006570459809154272, 0.023590032011270523, 0.007255647797137499, -0.006405280902981758, 0.001888854312710464, -0.028312932699918747, -0.010938530787825584, 0.017998410388827324, 0.008246722631156445, 0.01816970854997635, -0.0474981851875782, 0.017912762239575386, -0.0016976747428998351, 0.002856987761333585, -0.009329563938081264, 0.0016487326938658953, 0.008638258092105389, -0.03570317104458809, 0.0038694748654961586, 0.002789692487567663, 0.025278529152274132, 0.004881961736828089, 0.00921944435685873, -0.00018209854897577316, -0.03408808633685112, -0.007194470148533583, 0.01879371888935566, -0.041527263820171356, -0.024214042350649834, -0.011073121801018715, 0.04803654924035072, -0.010149342007935047, 0.012039725668728352, -0.024262983351945877, -0.03235064446926117, -0.027211736887693405, -0.03829709440469742, 0.014450117945671082, 0.015049656853079796, 0.013960697688162327, 0.012835032306611538, -0.004579133354127407, -0.02150999754667282, 0.019674673676490784, -0.014303292147815228, 0.05290627479553223, 0.010816176421940327, -0.02738303504884243, -0.02633078210055828, 0.012651500292122364, -0.004049948416650295, 0.017900526523590088, -0.0061819832772016525, 0.019332079216837883, 0.029389655217528343, -0.012486320920288563, 0.00796530582010746, -0.011660424992442131, 0.034969039261341095, 0.036168117076158524, -0.008466961793601513, -0.025376413017511368, 0.013764929957687855, -0.00372876669280231, 0.031200507655739784, 0.0023140376433730125, 0.033574193716049194, 0.007237294223159552, 0.028312932699918747, 0.03298689052462578, -0.01607743836939335, -0.011195476166903973, 0.013569162227213383, 0.022745782509446144, 0.010381815955042839, 0.03646177053451538, -0.024262983351945877, 0.0010308403288945556, -0.03932487592101097, 0.003000754863023758, -0.0013741988223046064, -0.027431976050138474, -0.013850579038262367, 0.004747371654957533, 0.009341799654066563, 0.0342349112033844, 0.008362960070371628, -0.02914494462311268, -0.005313263274729252, 0.017790406942367554, 0.004239598289132118, 0.00988016091287136, -0.004456778522580862, -0.036706481128931046, 0.019050663337111473, 0.000121781398775056, -0.011354537680745125, 0.013251039199531078, 0.03528716415166855, 0.01120771188288927, -0.013177626766264439, -0.023430969566106796, -0.01365481037646532, -0.013006329536437988, -0.018206413835287094, 0.06318408995866776, 0.023137317970395088, -0.03793003037571907, 0.015208718366920948, 0.028190577402710915, 0.0009482507593929768, -0.00025503357755951583, -0.0068947006948292255, -0.0002642101899255067, 0.006809052079916, 0.007708360906690359, 0.026012659072875977, 0.021754708141088486, 0.007359649520367384, -0.009305092506110668, -0.013960697688162327, -0.032105933874845505, -0.024605577811598778, -0.023492148146033287, 0.019882677122950554, 0.008705553598701954, -0.04385200887918472, 0.006509282626211643, -0.004285481758415699, 0.03536057472229004, -0.016395561397075653, 0.03386784717440605, 0.005304086487740278, -0.02270907536149025, 0.03709801658987999, 0.013471278361976147, 0.03540951758623123, 0.00022482719214167446, -0.0032393469009548426, -0.0029044002294540405, 0.011752191931009293, -0.013703752309083939, -0.02877788059413433, -0.028900235891342163, 0.029169416055083275, 0.010387933813035488, 0.0071577634662389755, 0.0036522948648780584, -0.003826650558039546, -0.004472072701901197, -0.0005666562938131392, -0.02073916234076023, -0.01726428046822548, 0.03374549001455307, -0.011036415584385395, 0.02843528613448143, 0.020005032420158386, -0.0010545465629547834, -0.016444502398371696, 0.006007627118378878, 0.003624764969572425, -0.02416509948670864, 0.02745644748210907, 0.016787096858024597, 0.02858211286365986, -0.021265286952257156, 0.01254138071089983, 0.0004630369658116251, 0.016052966937422752, 0.025107232853770256, 0.015624725259840488, 0.0007620418327860534, -0.040768664330244064, 0.022966021671891212, -0.02535194158554077, 0.006295161321759224, 0.0020815632306039333, 0.044316958636045456, 0.0038480625953525305, 0.01093241386115551, 0.004854431841522455, -0.017802642658352852, -0.009519213810563087, 0.011788898147642612, -0.0021289759315550327, 0.00030129903461784124, -0.03722037002444267, 0.0025679240934550762, 0.00351158669218421, -0.035947881639003754, 0.009537567384541035, -0.0010606643045321107, 0.019858205690979958, 0.006674461532384157, -0.026599962264299393, 0.029512010514736176, 0.009201090782880783, 0.01760687492787838, -0.03597234934568405, 0.009623215533792973, 0.02122858166694641, -0.0029732249677181244, 0.01775370165705681, 0.02571900747716427, -0.0251561738550663, 0.009531449526548386, -0.02327190898358822, -0.033696550875902176, 0.00702317338436842, -0.02277025394141674, 0.008693317882716656, 0.004273246042430401, 0.001397140440531075, -0.011397361755371094, -0.005490677896887064, -0.00549985421821475, -0.008485314436256886, -0.007439179811626673, 0.003832768416032195, 0.022672370076179504, -0.033084772527217865, -0.011018062010407448, -0.024275219067931175, -0.01648120954632759, 0.021754708141088486, -0.0025006290525197983, -0.005053258966654539, -0.0071332924999296665, 0.02429969049990177, 0.0005203908076509833, 0.015698138624429703, -0.026086071506142616, -0.007543181534856558, 0.003872533794492483, -0.016468973830342293, 0.000776953820604831, 0.022831430658698082, 0.022390952333807945, -0.006240101531147957, 0.0258413627743721, -0.01615085080265999, -0.0012487850617617369, -0.010877354070544243, 0.01823088526725769, 0.002340038074180484, 0.01124441809952259, -0.015955083072185516, -0.015135305002331734, -0.0028156929183751345, 0.0038480625953525305, 0.004955374635756016, -0.06362456828355789, 0.009035912342369556, -0.04451272636651993, 0.01299409382045269, -0.014193172566592693, 0.03102921135723591, -0.03359866514801979, 0.00019691497436724603, -0.028263989835977554, 0.009237797930836678, -0.018622420728206635, 0.0006282161339186132, 0.021412113681435585, -0.026526549831032753, -0.01386281382292509, -0.0019454434514045715, -0.013691517524421215, 0.007690007798373699, 0.010877354070544243, -0.022182948887348175, 0.006350221112370491, 0.029022591188549995, -0.010785587131977081, 0.005111377220600843, -0.02907153218984604, -0.010938530787825584, 0.03186122328042984, -0.0028952236752957106, -0.012217139825224876, -0.03257088363170624, -0.003890886902809143, 0.037709791213274, -0.015808258205652237, -0.02667337656021118, -0.016958393156528473, 0.04155173525214195, -0.0055916206911206245, -0.03435726463794708, -0.02892470732331276, -0.011311713606119156, 0.0068151699379086494, -0.015306602232158184, -0.006680579390376806, -0.008895203471183777, -0.004141714423894882, -0.017704758793115616, 0.00830790027976036, -0.002930400660261512, 0.015086363069713116, -0.015343308448791504, -0.016738155856728554, 0.026306310668587685, 0.028068222105503082, -0.006172806490212679, -0.01747228391468525, 0.010785587131977081, -0.02075139619410038, 0.010620408691465855, -0.007537064142525196, 0.001726733986288309, -0.024886993691325188, 0.004514897242188454, -0.006362456828355789, -0.013703752309083939, -0.017484519630670547, 0.014817182905972004, 0.00884014368057251, 0.01316539105027914, 0.016738155856728554, 0.0286555252969265, 0.003202640451490879, -0.015147540718317032, 0.017276516184210777, -0.02606160193681717, -0.03296241909265518, 0.024434279650449753, 0.03861521929502487, 0.0004037712933495641, -0.011434068903326988, 0.0019928559195250273, -0.0007215117802843451, 0.002188623882830143, 0.05104647949337959, 0.00569562241435051, 0.04666617140173912, -0.008858497254550457, -0.011905135586857796, -0.003113933140411973, 0.009023676626384258, 0.010112635791301727, -0.0071332924999296665, -0.01079782284796238, -0.021962711587548256, -0.017276516184210777, 0.006084098946303129, -0.017900526523590088, -0.01698286458849907, 0.021008342504501343, 0.0009750158642418683, -0.0032332290429621935, 0.011464657261967659, -0.009458036161959171, 0.007017055526375771, -0.025670064613223076, -0.012675970792770386, -0.02542535588145256, 0.011140416376292706, -0.03763637691736221, 0.027554331347346306, -0.007953071035444736, 0.010657114908099174, 0.005582443904131651, 0.0024516871199011803, -0.01599179022014141, -0.03443067893385887, -0.02257448621094227, 0.022366482764482498, 0.028631053864955902, 0.013495748862624168, 0.023932624608278275, 0.016456738114356995, 0.013789401389658451, 0.008369077928364277, -0.012663736008107662, 0.008901321329176426, 0.02403050847351551, -0.02598818764090538, -0.023504383862018585, -0.014021875336766243, 0.027701158076524734, 0.011574776843190193, -0.041527263820171356, 0.014486824162304401, 0.01892830803990364, -0.008895203471183777, -0.006809052079916, -0.004435366485267878, 0.014866124838590622, 0.023859212175011635, -0.020567864179611206, 0.005037964321672916, 0.036975663155317307, -0.0007322177989408374, -0.012241611257195473, -0.046984296292066574, 0.007573770359158516, -0.0043374826200306416, 0.01698286458849907, -0.004349717870354652, 0.04392542317509651, -0.006399163044989109, 0.012871739454567432, 0.016884980723261833, -0.03171439841389656, -0.008778966963291168, -0.050899654626846313, -0.009739452973008156, 0.003952064551413059, 0.015428957529366016, -0.02647760882973671, -0.0027835748624056578, -0.0049523161724209785, 0.026306310668587685, -0.00770224304869771, 0.00475043011829257, -0.0003611382271628827, -0.023296380415558815, -0.04287317022681236, -0.024360867217183113, 0.009127678349614143, 0.017557933926582336, -0.030637675896286964, 0.04554050788283348, 0.03949617221951485, 0.017643582075834274, -0.0013053742004558444, 0.009066500701010227, -0.008528138510882854, 0.08755718916654587, -0.027505388483405113, -0.010644879192113876, -0.02306390553712845, -0.01599179022014141, -0.005432559177279472, 0.0031246391590684652, -0.0006094805430620909, -0.003315818728879094, -0.009617097675800323, -0.0052887918427586555, -0.002454745816066861, -0.028753409162163734, 0.02752985991537571, 0.005643621552735567, 0.007530946284532547, -0.01564919576048851, 0.016260970383882523, 0.009360152296721935, -0.020005032420158386, -0.02522958815097809, 0.00991686712950468, 0.0454181507229805, -0.013948462903499603, -0.009586509317159653, -0.010914060287177563, 0.013361158780753613, 0.020934930071234703, 0.0005754505400545895, -0.015392250381410122, 0.04813443124294281, -0.02173023670911789, 0.04113572835922241, -0.004542427137494087, 0.055010776966810226, -0.035727642476558685, 0.01180113386362791, 0.03151863068342209, 0.0019393257098272443, 0.007830715738236904, -0.024067215621471405, -0.010455229319632053, -0.000546008872333914, -0.0015623195795342326, -0.004704547114670277, 0.01878148317337036, -0.04001006484031677, -0.010632643476128578, 0.0202619768679142, -0.03795450180768967, 0.05687057226896286, -0.016884980723261833, -0.003453467972576618, 0.0069925845600664616, 0.00873002503067255, 0.012871739454567432, 0.015710374340415, -0.039985593408346176, 0.0007150116725824773, -0.04507555812597275, 0.006753992289304733, -0.017435578629374504, 0.0258413627743721, -0.014278820715844631, 0.021142933517694473], [0.028954295441508293, 0.033764518797397614, 0.011398139409720898, 0.004409371875226498, -0.033439189195632935, 0.01319906860589981, -0.048566993325948715, -0.009632066823542118, 0.063299760222435, 0.013826489448547363, -0.025027107447385788, 0.016870640218257904, 0.007935707457363605, 0.0025837526191025972, -0.021646007895469666, -0.0402943380177021, 0.013919440098106861, -0.007784661836922169, 0.0024893488734960556, -0.004269944969564676, -0.04654530808329582, 0.020333072170615196, -0.0485205203294754, 0.025793954730033875, -0.02779240533709526, 0.0054899295791983604, 0.006686675827950239, -0.012838882394134998, 0.06478697806596756, -0.02319132164120674, 0.07394266873598099, -0.01676606945693493, 0.0014516360824927688, -0.03357861563563347, 0.05623546615242958, -0.023574745282530785, 0.0024849919136613607, -0.003015104215592146, 0.023621220141649246, -0.029628191143274307, -0.0004353456024546176, -0.0001848131068982184, -0.0044587524607777596, -0.0004266314208507538, -0.01635940931737423, 0.06543763726949692, 8.373776654480025e-05, -0.045360177755355835, -0.011955846101045609, 0.02207590639591217, 0.011235474608838558, 0.012955071404576302, -0.018845852464437485, -0.0682726502418518, 0.009725017473101616, -0.007221145089715719, -0.011363282799720764, 0.02800154499709606, -0.021111538633704185, -0.012652980163693428, 0.000104297767393291, -0.038667693734169006, -0.039039500057697296, 0.03622772544622421, -0.005385359283536673, -0.004150851629674435, 0.021553056314587593, 0.02988380566239357, -0.010021300055086613, 0.029581714421510696, 0.006059255450963974, 0.03297443315386772, -0.026793180033564568, -0.011607279069721699, -0.012641360983252525, -0.010671958327293396, 0.04538341611623764, 0.02273818477988243, -0.007029433269053698, -0.05414406582713127, -0.015116186812520027, 0.02704879455268383, 0.01799767278134823, 0.009562353603541851, -0.03806351125240326, 0.04912470281124115, -0.057072028517723083, -0.029000770300626755, -0.024608826264739037, -0.014326101168990135, -0.06585591286420822, 0.004885746631771326, -0.019089849665760994, 0.001601955620571971, -0.03511231020092964, -0.02071649581193924, 0.04387295991182327, -0.002774012042209506, -0.022145619615912437, 0.06836559623479843, -0.0031951970886439085, -0.001535146962851286, -0.012989928014576435, 0.025422150269150734, 0.06464754790067673, -0.01400077249854803, -0.039039500057697296, -0.0014458266086876392, 0.031254835426807404, 0.004418086260557175, 0.09601857513189316, -0.0052372184582054615, -0.028094496577978134, 0.06339270621538162, -0.021564675495028496, 0.009132454171776772, -0.007563902996480465, 0.04958945885300636, -0.010079394094645977, -0.015999222174286842, -0.04229278862476349, -0.034508127719163895, -0.007378000300377607, -0.036738958209753036, -0.002002807566896081, -0.009806349873542786, 0.018892329186201096, -0.012304413132369518, 0.011351663619279861, 0.007784661836922169, -0.0017036210047081113, -0.05274979770183563, 0.044291239231824875, -0.031510453671216965, 0.0036454293876886368, 0.014116961508989334, -0.016092173755168915, -0.013907820917665958, 0.020565450191497803, 0.014372576959431171, 0.010590625926852226, 0.0017254063859581947, 0.04508132487535477, 0.030023233965039253, -0.05488767474889755, 0.0034101465716958046, -0.03585591912269592, 0.040549956262111664, -0.05981408804655075, -0.011967465281486511, -0.03281176835298538, -0.033973660320043564, -0.02121610753238201, -0.04403562471270561, 0.0018459524726495147, -0.05614251643419266, 0.03490317240357399, 0.05409758910536766, 0.02021688222885132, -0.015429897233843803, -0.014337720349431038, 0.023365603759884834, -0.007017814554274082, 0.001921475282870233, 0.044616568833589554, -0.01134585402905941, -0.021715721115469933, 0.010230439715087414, -0.025468625128269196, -0.03269558027386665, 0.0008372868760488927, 0.012164986692368984, -0.033764518797397614, -0.015883034095168114, -0.014848952181637287, 0.0024254450108855963, 0.009033693000674248, 0.025956619530916214, -0.021843528375029564, -0.001219258178025484, -0.005867543630301952, 0.016859021037817, -0.017835009843111038, -0.03181254491209984, -0.025189772248268127, -0.005013554822653532, -0.03745932877063751, 0.0057716877199709415, -0.03197520971298218, 0.020402785390615463, -0.01577846333384514, 0.022714946419000626, -0.024980630725622177, 0.022412855178117752, -0.011543375439941883, -0.04940355569124222, -0.013954296708106995, -0.04045700281858444, 0.03550735488533974, -0.01073005236685276, 0.032579392194747925, -0.05307512730360031, 0.004226374439895153, 0.016905497759580612, -0.029163435101509094, 0.016173506155610085, 0.02405111864209175, -0.009039502590894699, -0.003590239677578211, 0.02047249861061573, 0.03174282982945442, 0.018474048003554344, -0.019461654126644135, 0.0018357859225943685, 0.026072807610034943, -0.00795313622802496, 0.04394267499446869, -0.01451200433075428, 0.021994573995471, 0.004223469644784927, -0.054562345147132874, -0.017835009843111038, 0.0064252507872879505, 0.005922733340412378, -0.010096822865307331, -0.03385746851563454, -0.009632066823542118, -0.013768394477665424, 0.03587915748357773, 0.01747482270002365, -0.0009847016772255301, -0.021111538633704185, -0.04403562471270561, -0.02264523319900036, 0.01354763563722372, -0.030627416446805, 0.027118507772684097, -0.007348953280597925, 0.0153137082234025, 0.061068929731845856, -0.0452207513153553, 0.00815646629780531, -0.008022849448025227, -0.027606502175331116, 0.02338884212076664, 0.010840431787073612, -0.0008917504455894232, -0.031998444348573685, 0.001947617856785655, 0.013745157048106194, -0.01052672229707241, 0.0029308670200407505, 0.03592563420534134, -0.0291866734623909, 0.00461560720577836, -0.03548411652445793, 0.039899297058582306, -0.011920989491045475, 0.04917117953300476, 0.017277302220463753, -0.011566612869501114, 0.0423392653465271, -0.00442970497533679, -0.03415955975651741, -0.05442291870713234, 0.002710107946768403, 0.03160340338945389, -0.03185901790857315, -0.000774109095800668, 0.027490314096212387, 0.020356310531497, -0.0009694518521428108, 0.031045695766806602, -0.043384965509176254, -0.08086752891540527, 0.026444612070918083, 0.05335398018360138, -0.017254063859581947, -0.016219982877373695, 0.0013427089434117079, -0.024237021803855896, -0.006460107397288084, 0.012013941071927547, -0.007453523110598326, 0.00690743513405323, -0.02272656559944153, 0.018230050802230835, 0.01705654338002205, -0.009388069622218609, -0.0031400073785334826, 0.08491090685129166, -0.021483343094587326, 0.012873739004135132, 0.037831131368875504, 0.05019364133477211, -0.019554605707526207, -0.01846242882311344, 0.0009578329045325518, -0.02586366795003414, -0.05502710118889809, -0.058559246361255646, 0.005577071104198694, -0.029697904363274574, -0.009219596162438393, -0.037226948887109756, -0.001202555955387652, 0.03513554856181145, 0.05191323906183243, -0.05967466160655022, -0.016266457736492157, 0.009364832192659378, 0.06111540645360947, 0.04213012382388115, -0.054608821868896484, -0.025840429589152336, 0.046475593000650406, -0.00014378386549651623, 0.012955071404576302, -0.0006717175710946321, 0.02860572747886181, 0.015894653275609016, -0.020542211830615997, 0.02934933640062809, -0.03436870127916336, 0.015081330202519894, 0.006797055713832378, -0.0006597355823032558, 0.02330750972032547, -0.03111540898680687, -0.011990702711045742, -0.09518201649188995, 0.022680088877677917, 0.026421375572681427, 0.04287373647093773, 0.02421378344297409, -0.03694809600710869, 0.0637180358171463, 0.009446164593100548, 0.0002372796880081296, -0.03799379616975784, -0.006471726577728987, -0.0036018583923578262, 0.023934930562973022, 0.04459333047270775, -0.053214553743600845, 0.041618894785642624, 0.03815646097064018, 0.03264910355210304, 0.007116575259715319, 0.014047248288989067, -0.055724237114191055, 0.01993802934885025, -0.0867234542965889, -0.006140587851405144, -0.005588690284639597, 0.022680088877677917, 0.0365762934088707, -0.012896977365016937, 0.05089077353477478, 0.019229276105761528, -0.009992252103984356, -0.0017500965623185039, 0.006314871367067099, 0.028536014258861542, 0.027885355055332184, 0.004281564150005579, -0.007662663236260414, 0.0006913244724273682, 0.04459333047270775, -0.023783884942531586, 0.026165759190917015, 0.023609600961208344, 0.0053069316782057285, -0.046591781079769135, -0.009237024001777172, 0.03655305504798889, -0.033113859593868256, -0.02327265404164791, 0.0472889170050621, 0.008911695331335068, -0.014465528540313244, 0.0013180187670513988, 0.017358634620904922, 0.022470949217677116, -0.019868316128849983, 0.033276524394750595, -0.027234697714447975, -0.042246315628290176, 0.027327649295330048, -0.004438419360667467, -0.014175055548548698, 0.022389616817235947, -0.014999997802078724, 0.019763745367527008, -0.02656080201268196, -0.010393104515969753, 0.044663045555353165, 0.036274202167987823, -0.023342367261648178, -0.020042600110173225, -0.024353211745619774, -0.028931057080626488, -0.016545310616493225, 0.02416730858385563, 0.005333074368536472, 0.021855147555470467, 0.07468628138303757, 0.02602633275091648, 0.009800540283322334, -0.0230170376598835, 0.03762199357151985, 0.014058866538107395, -0.0011960203992202878, -0.02832687459886074, 0.041084423661231995, -0.02097211219370365, 0.03539116308093071, -0.01812548190355301, -0.004383229184895754, -0.004824747331440449, 0.04986831173300743, -0.002365898108109832, -0.01853214204311371, -0.044663045555353165, -0.0394577793776989, 0.016986830160021782, 0.012350888922810555, -0.04410533979535103, 0.03513554856181145, -0.058931052684783936, 0.00429608765989542, 0.012594886124134064, -0.04031757637858391, 0.0037848560605198145, -0.030929507687687874, -0.002736250637099147, -0.0583733469247818, -0.013675442896783352, -0.03587915748357773, 0.024353211745619774, -0.05581718683242798, -0.02688613161444664, 0.04382648319005966, -0.008714173920452595, -0.02528272196650505, -0.06999224424362183, 0.02146010473370552, 0.028048019856214523, -0.007424476090818644, -0.020402785390615463, -0.0033433379139751196, -0.01585979573428631, 0.04243221506476402, 0.006616962607949972, -0.026119284331798553, -0.024515874683856964, 0.01582494005560875, -0.06060417369008064, -0.0015554800629615784, 0.02811773307621479, -0.020367927849292755, 0.03390394523739815, 0.004357086960226297, 0.024283496662974358, -0.015255613252520561, -0.01558094285428524, 0.025003869086503983, -0.01582494005560875, -0.011752516031265259, -0.027072032913565636, -0.02104182541370392, -0.032091397792100906, -0.005577071104198694, -0.027443837374448776, 0.058140967041254044, -0.03334623947739601, 0.031231598928570747, 0.0180906243622303, -0.034879934042692184, 0.005298217758536339, -0.0028713203500956297, 0.07310611009597778, -0.028257161378860474, -0.014744382351636887, 0.04740510508418083, 0.04982183501124382, 0.02635166049003601, 0.005966304335743189, -0.06831911951303482, -0.03074360452592373, -0.038249414414167404, -0.04724244028329849, 0.032951194792985916, -0.010561578907072544, 0.011462043039500713, -0.009672733023762703, -0.05200618878006935, -0.02688613161444664, 0.03302090987563133, -0.013129355385899544, 0.036158010363578796, -0.022621994838118553, -0.016417503356933594, -0.060325320810079575, 0.06957396119832993, -0.007883422076702118, 0.001082009868696332, -0.016289696097373962, -0.020588688552379608, -0.019577844068408012, 0.0345313660800457, -0.07747481763362885, 0.012199843302369118, -0.013373351655900478, -0.028931057080626488, -0.018892329186201096, -0.0003643613890744746, 0.03392718359827995, 0.004967079032212496, 0.020251739770174026, 0.04935707896947861, 0.0017370253335684538, 0.034345462918281555, 0.020135551691055298, -0.054283492267131805, -0.004935127217322588, -0.012920214794576168, -0.04884584993124008, 0.04217660054564476, -0.029442287981510162, -0.025701003149151802, 0.000554076221305877, -0.03520526364445686, 0.01878775842487812, -0.0031283884309232235, -0.03297443315386772, -0.024027882143855095, 0.01771881990134716, 0.041665367782115936, -0.03790084645152092, 0.024190546944737434, 0.01547637302428484, -0.002175638685002923, 0.0207629706710577, 0.000483999727293849, 0.017044924199581146, 0.02886134386062622, 0.011281950399279594, -0.009887682273983955, -0.01738187111914158, 0.0032997671514749527, -0.017254063859581947, -0.005100696347653866, 0.0026592754293233156, 0.02050735615193844, 0.05990704149007797, 0.019101468846201897, -0.011014715768396854, -0.02495739422738552, 0.0007240026025101542, 0.006675057113170624, -0.03325328603386879, 0.004946745932102203, 0.012629742734134197, -0.014500385150313377, 0.005013554822653532, -0.021018587052822113, -0.006442679092288017, -0.002855344209820032, -0.013233925215899944, -0.0023920407984405756, -0.022424474358558655, 0.032532915472984314, -0.01035824790596962, 0.025910142809152603, -0.012141748331487179, 0.061068929731845856, -0.03520526364445686, -0.005309836473315954, 0.03390394523739815, 0.0019403559854254127, 0.006192872766405344, 0.012199843302369118, 0.019752128049731255, -0.021309059113264084, -0.013849726878106594, -0.002204685937613249, -0.008714173920452595, -0.0191130880266428, -0.0291866734623909, 0.01434933952987194, -0.03441517800092697, -0.004275754559785128, -0.016789307817816734, -0.037970561534166336, 0.03555382788181305, -0.006518201902508736, -0.0023847788106650114, -0.04287373647093773, 0.031045695766806602, 0.00974244624376297, -0.030069708824157715, -0.028350111097097397, -0.008505033329129219, -0.06158016249537468, -0.0365762934088707, -0.01221146248281002, 0.0070700994692742825, 0.020402785390615463, 0.0034914789721369743, -0.0008438224904239178, 0.03278852999210358, -0.031510453671216965, -0.05730440467596054, -0.04143299162387848, -0.0230170376598835, -0.0390627346932888, -0.024725016206502914, 0.01903175562620163, -0.027815641835331917, 0.017544535920023918, -0.049310605973005295, -0.023958168923854828, -0.014604954980313778, -0.02955847792327404, 0.012966690585017204, -0.0022889229003340006, -0.03834236413240433, 0.020611925050616264, 0.009603019803762436, -0.013768394477665424, -0.020077455788850784, -0.00023927669099066406, -0.016719594597816467, 0.00730828708037734, -0.01611541211605072, -0.0040491861291229725, 0.009957395493984222, -0.02930286154150963, -0.02486444264650345, 0.009620447643101215, 0.020205264911055565, 0.04254840686917305, -0.01512780599296093, 0.02614252083003521, -0.017614249140024185, -0.04954298213124275, -0.006367156282067299, 0.013175830245018005, 0.0013746608747169375, 0.04666149616241455, 0.046847399324178696, -0.027606502175331116, 0.002240994945168495, -0.004281564150005579, 0.02860572747886181, -0.0180906243622303, 0.0041828034445643425, -0.053214553743600845, 0.009347403421998024, -0.014581717550754547, -0.019008517265319824, 0.000541004934348166, -0.0037180474027991295, -0.044872187077999115, 0.015290469862520695, 0.016092173755168915, 0.02774592861533165, 0.03975987061858177, -0.02651432529091835, -0.001895332825370133, -0.018323002383112907, -0.009329975582659245, -0.025584813207387924, 0.03622772544622421, 0.03806351125240326, -0.030023233965039253, -0.0008125966996885836, -0.010433770716190338, 0.032742056995630264, 0.0025416340213268995, -0.0049147941172122955, -0.02458558976650238, 0.005501548293977976, -0.004011424724012613, 0.008987218141555786, -0.026979081332683563, -0.026746703311800957, -0.012025559321045876, 0.036483339965343475, -0.013477922417223454, 0.030557703226804733, 0.008499223738908768, 0.0010892717400565743, -0.002018783474341035, -0.01416343729943037, 0.013524397276341915, -0.030859794467687607, -0.011462043039500713, 0.011142523027956486, -0.018764520063996315, 0.032370250672101974, -0.05586366355419159, -0.05735088139772415, -0.03938806429505348, -0.017277302220463753, 0.018195195123553276, 0.0029570097103714943, 0.021436868235468864, 0.017730439081788063, 0.013989153318107128, 0.008417892269790173, -0.006442679092288017, -0.009568163193762302, 0.03748256713151932, -0.020193645730614662, -0.007883422076702118, 0.0014414695324376225, 0.00875484012067318, -0.013803251087665558, -0.0269326064735651, 0.033973660320043564, -0.04710301384329796, 0.014523622579872608, 0.022308284416794777, -0.009405498392879963, -0.020379547029733658, -0.02097211219370365, -0.024190546944737434, 0.015766844153404236, 0.04045700281858444, -0.013512779027223587, -0.004023043438792229, 0.014128580689430237, -0.027072032913565636, 0.01038148533552885, 0.0019403559854254127, -0.0035670017823576927, 0.014802476391196251, -0.006099921651184559, 0.026212234050035477, -0.02967466600239277, 0.02084430307149887, -0.03374128043651581, -0.005600308999419212, 0.010044537484645844, -0.036529816687107086, -0.006524011492729187, 0.024446161463856697, -0.006146397441625595, -0.0332997627556324, 0.0068261027336120605, -0.010236249305307865, -0.017986055463552475, 0.007912470027804375, -0.010538340546190739, 0.006326490081846714, 0.001787857967428863, 0.010265296325087547, -0.0005315645830705762, 0.010102632455527782, -0.009335785172879696, -0.012711075134575367, 0.025631289929151535, -0.0049612694419920444, 0.0028931056149303913, -0.04842756688594818, -0.00247773015871644, 0.010085203684866428, -0.03171959146857262, -0.05651432275772095, 0.009091787971556187, -0.029116958379745483, -0.00571359321475029, -0.015941128134727478, -0.02914019674062729, -0.026653753593564034, -0.03748256713151932, -0.0166498813778162, -0.015185900032520294, -0.010654529556632042, 0.04271107167005539, -0.020611925050616264, 0.0328814834356308, -0.00805770605802536, -0.02639813721179962, 0.017358634620904922, -0.00685515021905303, -0.015383421443402767, 0.010689386166632175, 0.010602245107293129, -0.010230439715087414, 0.015883034095168114, -0.019926410168409348, -0.03267234191298485, -0.005751354619860649, 0.03920216113328934, -0.04101471230387688, -0.008539889939129353, 0.03030208684504032, 0.020240120589733124, 0.0026258709840476513, -0.0039852820336818695, 0.011130904778838158, 0.04954298213124275, 0.025724241510033607, -0.029047245159745216, -0.0034101465716958046, -0.02298218011856079, -0.010695195756852627, 2.1286185074131936e-05, -0.0028262969572097063, 0.044453904032707214, 0.045731984078884125, -0.03876064345240593, -0.015522847883403301, -0.03569325432181358, 0.029976757243275642, -0.007273430470377207, 0.014802476391196251, -0.011706040240824223, 0.01282726414501667, 0.020251739770174026, 0.01763748750090599, 0.03820293769240379, -0.011932608671486378, -0.035089071840047836, 0.006657628808170557, -0.025840429589152336, -0.009806349873542786, -0.007784661836922169, 0.023249415680766106, -0.02269170805811882, -0.005385359283536673, -0.045778460800647736, 0.007151431869715452, -0.013477922417223454, 0.006245157681405544, 0.000513410079292953, 0.017974436283111572, -0.017544535920023918, -0.01763748750090599, -0.03320681303739548, 0.00922540482133627, -0.015092948451638222, -0.0029541049152612686, -0.03415955975651741, -0.005896591115742922, 0.003857474308460951, 0.04261811822652817, -0.012072035111486912, -0.009603019803762436, 0.04682416096329689, 0.008208751678466797, 0.002309256000444293, -0.02186676673591137, -0.021204490214586258, -0.002843725262209773, 0.026862893253564835, -0.005077458452433348, 0.01878775842487812, 0.013338495045900345, -0.04180479794740677, 0.007651044521480799, -0.0016571453306823969, -0.057490307837724686, -0.007209526374936104, 0.000534469319973141, -0.023342367261648178, 0.018160337582230568, 0.028931057080626488, -0.008017039857804775, 0.015975985676050186, -0.031185122206807137, -0.014744382351636887, -0.015639036893844604, 0.008336559869349003, 0.008603794500231743, 0.0070410524494946, 0.005858829244971275, 0.008615412749350071, 0.03810998797416687, 0.03420603647828102, 0.016161886975169182, 0.0002276577870361507, -0.04496513679623604, -0.03111540898680687, 0.024190546944737434, 0.004975793417543173, 0.006982957944273949, -0.014604954980313778, 0.005620642099529505, -0.009736636653542519, 0.007378000300377607, -0.010416341945528984, -0.03713399916887283, -0.002373160095885396, 0.0005257551674731076, 0.002374612260609865, -0.007680092006921768, -0.023981405422091484, 0.025515099987387657, -0.033323001116514206, 0.01400077249854803, 0.0051675052382051945, -0.024190546944737434, -0.04608055204153061, 0.022052669897675514, 0.012316032312810421, -0.009016265161335468, 0.03639039024710655, 0.019868316128849983, -0.0017544536385685205, -0.011084428988397121, 0.012246319092810154, 0.015104567632079124, -0.03395042195916176, -0.015011616982519627, -0.016742832958698273, -0.0036483341827988625, 0.04879937320947647, 0.0035699065774679184, -0.01161308865994215, 0.0066285813227295876, 0.06013941764831543, -0.021448485553264618, 0.010404723696410656, -0.02807125821709633, -0.023865217342972755, -0.0406893827021122, -0.009893491864204407, 0.02656080201268196, -0.004929317627102137, -0.0013862798223271966, 0.04178155958652496, 0.004618512000888586, 0.008005420677363873, 0.02097211219370365, 0.0020914017222821712, 0.012350888922810555, -0.003122578840702772, -0.013536016456782818, 0.0010580458911135793, 0.002988961525261402, 0.0057077836245298386, 0.00637296587228775, -0.035251736640930176, 0.0023034466430544853, 0.004342563450336456, 0.013303638435900211, 0.023319128900766373, -0.02384197898209095, -0.020042600110173225, -0.015894653275609016, 0.029256386682391167, -0.06715723127126694, -0.005304026883095503, 0.012339269742369652, -0.008719983510673046, -0.04566226899623871, 7.461511268047616e-05, 0.014872189611196518, 0.021018587052822113, -0.018276527523994446, 0.014453909359872341, -0.011142523027956486, 0.01924089528620243, -0.021634388715028763, -0.017149493098258972, -0.018764520063996315, -0.0049612694419920444, -0.041293565183877945, 0.031347788870334625, -0.004086947534233332, -0.028140971437096596, 0.022436093538999557, 0.0026476564817130566, -0.028838105499744415, -0.03980634734034538, -0.006646009627729654, -0.023051893338561058, 0.015917889773845673, 0.03020913526415825, 0.010317581705749035, 0.01389620266854763, 0.035670019686222076, 0.013965915888547897, -0.02071649581193924, -0.028721917420625687, 0.021030206233263016, -0.007505808491259813, 0.004275754559785128, 0.03399689495563507, 0.01488380879163742, -0.027304410934448242, 0.0011923894053325057, 0.01977536454796791, 0.03336947411298752, -0.009213786572217941, 0.0033694806043058634, 0.026607276871800423, 0.018230050802230835, -0.01845080964267254, 0.0017500965623185039, 0.027397362515330315, -0.020588688552379608, 0.017149493098258972, 0.01469790656119585, 0.02202943153679371, -0.01424476969987154, -0.007348953280597925, 0.0004974340554326773, -0.016127031296491623, -0.0021553055848926306, 0.009486830793321133, -0.024446161463856697, -0.005211075767874718, 0.0062219202518463135, -0.007383809890598059, -0.01635940931737423, -0.01940356008708477, 0.012385745532810688, -0.00411018542945385, 0.006419441197067499, 0.033113859593868256, 0.009178929962217808, 0.003375289961695671, 0.015371802262961864, 0.006675057113170624, 0.041990697383880615, 0.0215879138559103, -0.017416728660464287, 0.011386520229279995, -0.015511229634284973, 0.03325328603386879, 0.007517427206039429, 0.022168857976794243, -0.00040557218017056584, -0.011252903379499912, 0.05916342884302139, -0.03144073858857155, -0.03406661003828049, -0.011037953197956085, 0.02162276953458786, 0.005597404204308987, 0.01229279488325119, 0.004374515265226364, 0.017649106681346893, 0.023412080481648445, 0.002442873315885663, 0.008191322907805443, 0.015534467063844204, -0.04157241806387901, 0.033601853996515274, -0.0076684728264808655, 0.0015017426339909434, -0.01328040100634098, -0.016371028497815132, -0.01846242882311344, -0.0180906243622303, 0.007116575259715319, -0.010805575177073479, -0.004670796915888786, 0.0014588979538530111, -0.0013521492946892977, 0.02897753193974495, -0.037714943289756775, -0.0017965721199288964, -0.011096048168838024, -0.011247093789279461, -0.01927575282752514, -0.025050343945622444, 0.027490314096212387, 0.009539115242660046, 0.008063515648245811, -0.0075987596064805984, -0.04424476623535156, -0.013431446626782417, -0.035762969404459, -0.0029657238628715277, 0.011723468080163002, -0.010886907577514648, 0.02486444264650345, 0.0037848560605198145, 0.03769170492887497, -0.01381487026810646, 0.01624321937561035, 0.02437644824385643, 0.0008067872258834541, 0.025375673547387123, 0.005019363947212696, 0.007093337364494801, -0.016673119738698006, 0.002336850855499506, 0.035739731043577194, -0.004522656090557575, 0.02597985602915287, -0.018241669982671738, 0.018590237945318222, -0.013292019255459309, 0.009422926232218742, 0.007918279618024826, 0.011206427589058876, -0.02306351251900196, 0.00787180382758379, 0.01566227525472641, 0.004455847665667534, 0.017869865521788597, -0.006884197238832712, 0.014558479189872742, 0.02105344459414482, 0.02762974053621292, -0.03111540898680687, -0.02491091750562191, -0.008080943487584591, 0.008597984910011292, -0.024074357002973557, 0.0018575714202597737, 0.016452360898256302, 0.013594111427664757, -0.03731990233063698, 0.000513410079292953, 0.0009861539583653212, 0.014291244558990002, 0.01775367744266987, 0.0004407919477671385, -0.013745157048106194, 0.024399686604738235, 0.02930286154150963, -0.03550735488533974, -0.013698681257665157, 0.02746707573533058, 0.0004825473588425666, 0.013849726878106594, 0.03520526364445686, -0.013454684056341648, 0.004089852329343557, -0.06511230766773224, -0.025886906310915947, -0.000580218737013638, 0.02828039787709713, 0.00623934855684638, 0.021727340295910835, -0.027769166976213455, -0.026862893253564835, 0.043059635907411575, -0.028303636237978935, 0.06422927230596542, 0.0017225017072632909, -0.06567001342773438, 0.006843531038612127, -0.004935127217322588, 0.027141746133565903, 0.043431442230939865, 0.023051893338561058, 0.0015395040391013026, 0.0029381290078163147, 0.01792795956134796, 0.025840429589152336, 0.01746320351958275, -0.01652207411825657, -0.0017297634622082114, -0.03606506064534187, 0.034020133316516876, 0.026653753593564034, 0.027304410934448242, -0.032091397792100906, 0.0005206718924455345, -0.035460878163576126, 0.0009542020270600915, 0.001921475282870233, 0.005492834374308586, -0.026119284331798553, 0.02006583660840988, 0.016266457736492157, 0.0019403559854254127, 0.00362800108268857, -0.000250169396167621, 0.011822229251265526, -0.008847790770232677, 0.002410921500995755, 0.03141750022768974, 0.016185125336050987, -0.029744379222393036, -0.028628965839743614, -0.02096049301326275, 0.044616568833589554, -0.026537563651800156, -0.004461656790226698, -0.014419052749872208, 0.0062219202518463135, 0.03708752244710922, -0.00036708457628265023, -0.008545699529349804, -0.017323777079582214, 0.02800154499709606, -0.001998450607061386, -0.019043374806642532, 0.01150851882994175, 0.013582492247223854, -0.022877611219882965, 0.004432609770447016, 0.019043374806642532, 0.011218046769499779, -0.011485281400382519, -0.010271105915307999, -0.020077455788850784, -0.02560805156826973, -0.04087528586387634, 0.01221146248281002, 9.576513548381627e-05, -0.023772265762090683, -0.02363283932209015, -0.018392715603113174, -0.0293958131223917, 0.020007742568850517, 0.0006201586802490056, 0.030348561704158783, -0.0010224630823358893, 0.010782337747514248, 0.026909368112683296, -0.013001547195017338, 0.02306351251900196, -0.03460107743740082, -0.0056380704045295715, 0.02228504605591297, 0.029093721881508827, -0.003363671014085412, -0.030395038425922394, 0.006831912323832512, 0.012804025784134865, 0.009591400623321533, 0.008464367128908634, -0.01598760485649109, -0.0095565440133214, 0.031254835426807404, -0.00910921674221754, 0.04575522243976593, -0.028512775897979736, -0.012629742734134197, 0.010067775845527649, 0.014686287380754948, 0.012722693383693695, 0.005768782924860716, 0.0031690546311438084, -0.012780788354575634, 0.004598178900778294, 0.014151818118989468, -0.02084430307149887, -0.02146010473370552, 0.03913244977593422, -0.030557703226804733, 0.002429802203550935, -0.027862118557095528, 0.010759099386632442, 0.00664020050317049, 0.002254066290333867, -0.006041827145963907, 0.0003917747235391289, -0.0033956230618059635, 0.0022918276954442263, 0.01961269974708557, -0.01488380879163742, 0.02285437285900116, 0.0054347398690879345, -6.494782428489998e-05, 0.005036792252212763, 0.0349264070391655, -0.030813317745923996, 0.03587915748357773, 0.009730827063322067, -0.005556738004088402, 0.0005279337055981159, -0.026816416531801224, -0.0012250675354152918, -0.019949648529291153, -0.02047249861061573, -0.022993799299001694, 0.00998644344508648, 0.0026505612768232822, 0.01145042385905981, 0.0038022843655198812, 0.0036076679825782776, 0.025375673547387123, 0.023621220141649246, 0.01982184126973152, 0.0037529042456299067, 0.01624321937561035, 9.208884875988588e-05, -0.040061961859464645, -0.0061580161564052105, 0.008667698130011559, 0.004194422159343958, -0.028559252619743347, -0.018718045204877853, 0.024608826264739037, -0.017939578741788864, 0.0016455264994874597, 0.018648331984877586, -0.02047249861061573, 0.040178149938583374, 0.0006862411973997951, 0.02261037565767765, -0.02363283932209015, -0.0291866734623909, 0.047869861125946045, -0.022633614018559456, 0.004856699611991644, 0.0345313660800457, 0.04436095431447029, -0.0008656079298816621, 0.04361734539270401, 0.031231598928570747, -0.0035176214296370745, -0.005736831109970808, -0.042734306305646896, 0.0031109601259231567, -0.03116188570857048, -0.049961261451244354, -0.01247869711369276, 0.0060883029364049435, -0.001985379261896014, -0.021204490214586258, 0.04013167321681976, 0.041618894785642624, -0.010067775845527649, -0.0062277293764054775, 0.013373351655900478, 0.008458557538688183, 0.011496899649500847, -0.04301316291093826, -0.0008430962916463614, -0.04173508286476135, 0.019171182066202164, -0.017695581540465355, 0.024725016206502914, -0.01496514119207859, -0.002788535552099347, -0.010410533286631107, 0.032207585871219635, 0.018810996785759926, 1.8302034732187167e-05, -0.020611925050616264, -0.04945003241300583, 0.0066285813227295876, 0.03922539949417114, 0.03111540898680687, -0.05697907879948616, -0.02367931418120861, 0.015673894435167313, -0.011897752061486244, -0.012362508103251457, -0.014093724079430103, 0.021971337497234344, -0.02746707573533058, 0.010613863356411457, 0.00201442651450634, -0.002633132738992572, 0.008807124570012093, 0.0037993798032402992, -0.021111538633704185, 0.0140821048989892, -0.01969403214752674, 0.02614252083003521, 0.031835779547691345, 0.017451586201786995, 0.0032387678511440754, -0.004755034111440182, 0.03262586519122124, 0.0336948037147522, 0.02683965489268303, -0.000780644710175693, 0.006117349956184626, 0.005934352520853281, -0.014674668200314045, 0.04912470281124115, 0.017904723063111305, 0.05581718683242798, -0.002294732490554452, 0.019519750028848648, -0.015011616982519627, 0.014546860940754414, 0.009539115242660046, 0.008563128300011158, -0.005789116024971008, -0.01985669694840908, -0.022842753678560257, 0.006117349956184626, 0.006541439797729254, -0.004856699611991644, 0.017904723063111305, -0.008377226069569588, 0.01247869711369276, -0.018683187663555145, -0.020030980929732323, -0.013071260415017605, -0.004258326254785061, -0.014012391678988934, 0.007685901131480932, -0.01346630323678255, 0.015511229634284973, 0.024399686604738235, -0.021343916654586792, -0.03176606819033623, -0.02154143713414669, -0.02539891190826893, -0.013640586286783218, -0.016022460535168648, -0.012606504373252392, 0.017370253801345825, 0.024074357002973557, -0.023528268560767174, 0.023412080481648445, 0.002012974116951227, -8.641555905342102e-05, -0.03773818165063858, 0.012153367511928082, -0.020670020952820778, -0.019868316128849983, -0.021564675495028496, -0.05065839737653732, -0.01587141491472721, 0.017776913940906525, 0.03046475164592266, -0.011566612869501114, -0.005748449824750423, 0.014488765969872475, -0.015383421443402767, -0.021762195974588394, 0.0035670017823576927, -0.0033723851665854454, 0.00963787641376257, -0.02030983380973339, 0.019961267709732056, 0.0037412852980196476, 0.020112313330173492, -0.018311383202672005, -0.008313321508467197, -0.0022090431302785873, 0.02577071636915207, 0.015673894435167313, 0.011671183630824089, 0.04842756688594818, 0.0010159274097532034, 0.04777691140770912, 0.006953910458832979, -0.01362896803766489, -0.005803639534860849, 0.01619674451649189, 0.04559255763888359, -0.01619674451649189, 0.00389523571357131, -0.029697904363274574, -0.02215723879635334, 0.027722692117094994, 0.04917117953300476, 0.0109972869977355, -0.009864444844424725, -0.006146397441625595, -0.004618512000888586, -0.023121608421206474, -0.007662663236260414, 0.026955844834446907, 0.03920216113328934, 0.008266845718026161, 0.027188222855329514, 0.0505654439330101, -0.0006121707265265286, 0.014535241760313511, 0.014268007129430771, -0.02347017452120781, 0.05051897093653679, 0.027188222855329514, 0.053168077021837234, -0.009521687403321266, -0.004664987791329622, 0.04457009211182594, 0.014651430770754814, -0.03260262683033943, 0.01828814670443535, -0.03041827492415905, -0.02881486713886261, -0.0030877222307026386, -0.017439967021346092, -0.0180906243622303, 0.003192292293533683, -0.015069711022078991, -0.0308365561068058, -0.0023688029032200575, 0.05293570086359978, 0.018892329186201096, 0.007982183247804642, 0.0017341205384582281, 0.008789696730673313, -0.014337720349431038, -0.02807125821709633, 0.02807125821709633, 0.04078233242034912, 0.015406658872961998, 0.020611925050616264, 0.002159662777557969, -0.0075348555110394955, -0.01115995179861784, 0.03585591912269592, -0.014500385150313377, 0.029860569164156914, -0.02725793607532978, -0.0019258323591202497, 0.020937254652380943, 0.00045168466749601066, 0.04298992455005646, 0.005295312963426113, -0.022424474358558655, -0.0017195969121530652, -0.016161886975169182, 0.014744382351636887, 0.018590237945318222, 0.005216885358095169, -0.022749802097678185, -0.018392715603113174, -0.025631289929151535, 0.033276524394750595, 0.009864444844424725, -0.024306735023856163, 0.007720757741481066, -0.03162664175033569, -0.026119284331798553, 0.022494187578558922, -0.017660725861787796, -0.00869674514979124, -0.0207513514906168, 0.025677764788269997, 0.004031757824122906, -0.013326876796782017, 0.005858829244971275, 0.0011459138477221131], [0.014708916656672955, 0.03572165593504906, 0.037727415561676025, 0.04415062814950943, -0.012028598226606846, 0.043864089995622635, -0.04075993597507477, -0.03256974369287491, 0.013515010476112366, 0.028367195278406143, -0.022421546280384064, -0.02946558967232704, 0.03393079712986946, 0.027316559106111526, 0.006775414105504751, -0.014111964032053947, 0.054107800126075745, 0.016881825402379036, -0.01580731011927128, -0.023364732041954994, -0.012464374303817749, 0.028964148834347725, -0.02552570030093193, 0.025239164009690285, -0.040879327803850174, -0.012786728329956532, 0.027913512662053108, -0.020642627030611038, 0.029537223279476166, -0.015126783400774002, 0.0764099583029747, -0.027483705431222916, -0.029513346031308174, 2.9754364732070826e-05, 0.006285912822932005, -0.007008225657045841, 0.020224759355187416, -0.028462707996368408, -0.01443431805819273, -0.006411273032426834, -0.021681325510144234, -0.023567695170640945, -0.00011603269376792014, -0.06170104071497917, -0.06757505238056183, 0.0402584969997406, -0.029943151399493217, -0.031972791999578476, 0.010554125532507896, 0.019412904977798462, -0.000451818632427603, 0.001822198391892016, -0.02535855397582054, -0.003441432723775506, -0.006918682716786861, 0.008769236505031586, -0.023054316639900208, 0.04706375673413277, -0.01845777966082096, -0.028797002509236336, 0.029155174270272255, -0.02086946927011013, -0.016153542324900627, -0.019806893542408943, -0.019257696345448494, 0.028797002509236336, -0.0007805157802067697, 0.03393079712986946, -0.05945649743080139, 0.008052892982959747, 0.0391601026058197, 0.008960261009633541, 0.018935341387987137, -0.01565210148692131, -0.03708270564675331, -0.0346471406519413, 0.03591267764568329, 0.0008581196307204664, 0.0160222128033638, -0.0010155659401789308, 0.012595703825354576, 0.03932724893093109, 0.0007144778501242399, 0.0201292484998703, -0.027650853618979454, 0.029513346031308174, -0.04360143095254898, -0.013538888655602932, -0.027698608115315437, -0.02049935795366764, -0.06165328249335289, 0.04708763584494591, -0.005778503138571978, 0.006661992985755205, -0.00540242251008749, 0.034193456172943115, 0.015341686084866524, 0.0030832611955702305, -0.00012610627163667232, 0.020236698910593987, -0.03075500763952732, -0.060268353670835495, -0.034145697951316833, 0.0310893002897501, 0.04773234575986862, -0.010404886677861214, -0.02349606156349182, 0.0006018030107952654, -0.015114844776690006, 0.010655607096850872, 0.08892208337783813, -0.02757921814918518, -0.03321445360779762, 0.04190608486533165, 0.00023169229098130018, 0.016320688650012016, -0.004509978462010622, 0.0092109814286232, -0.007796203251928091, -0.04150015860795975, 0.008822961710393429, 0.0029399923514574766, 0.0077126300893723965, -0.02760309725999832, -0.0008126019965857267, 0.03682004660367966, -0.023328915238380432, -0.021561933681368828, -0.003250407986342907, -0.04391184821724892, 0.023985562846064568, -0.059886302798986435, 0.031184813007712364, -0.020177004858851433, 0.013109083287417889, 0.05458536371588707, 0.0003193697484675795, -0.01144358515739441, -0.01659528724849224, 0.03741700202226639, 0.01975913718342781, 0.007002255879342556, 0.07177760452032089, -0.005232291296124458, -0.09226502478122711, -0.05315267667174339, 0.013240412808954716, 0.0247854795306921, -0.044031236320734024, 0.02368708699941635, -0.009581091813743114, 0.021549995988607407, 0.03522021323442459, 0.03240259736776352, 0.010369069874286652, -0.02815229259431362, 0.06389782577753067, 0.04918890818953514, -0.01173609122633934, -0.020224759355187416, 0.011998751200735569, 0.018481658771634102, -0.02065456658601761, -0.03366813808679581, -0.008226009085774422, -0.025382433086633682, -0.025836115702986717, 0.02905966155230999, -0.005488981027156115, -0.03278464823961258, -0.06504397839307785, 0.009825842455029488, -0.03631860762834549, -0.02925068698823452, -0.049809738993644714, -0.01098393090069294, 0.028200048953294754, 0.004202547483146191, -0.010184014216065407, 0.05181550234556198, 0.039757054299116135, 0.05315267667174339, -0.04307611286640167, -0.018326450139284134, -0.0002956781827379018, 0.02014118619263172, 0.01137195061892271, -0.013001631945371628, -0.09498712420463562, -0.015281991101801395, 0.03543511778116226, 0.009246798232197762, -0.018505536019802094, 0.014708916656672955, -0.008524485863745213, -0.014517891220748425, -0.01461340393871069, -0.010739180259406567, 0.02741207182407379, -0.0006316506769508123, 0.011198834516108036, -0.024475064128637314, 0.022111130878329277, 0.029656613245606422, -0.0506693534553051, 0.05902669206261635, 0.03591267764568329, 0.01182563416659832, 0.02571672573685646, 0.006942560896277428, 0.04918890818953514, 0.05425106734037399, -0.002393780741840601, 0.04663395136594772, 0.04735029488801956, -0.012356922961771488, 0.02829556167125702, 0.007784264162182808, 0.0547763854265213, -0.027125533670186996, -0.0824272409081459, -0.024319855496287346, 0.027292681857943535, 0.03646187484264374, -0.00886474922299385, -0.0072828237898647785, -0.003148925956338644, -0.016344567760825157, 0.050573840737342834, -0.0005622549215331674, -0.042765695601701736, -0.002419151132926345, -0.010482490994036198, -0.02495262585580349, 0.004635338205844164, -0.0031847429927438498, -0.008697601966559887, -0.0043667093850672245, 0.012207684107124805, 0.02066650614142418, -0.007879776880145073, 0.012953875586390495, -0.013479193672537804, -0.013515010476112366, 0.031734008342027664, 0.01489994116127491, -0.023913929238915443, 0.010834692977368832, -0.010464582592248917, 0.003441432723775506, 0.007193280849605799, -0.003148925956338644, 0.057832784950733185, -0.03667677938938141, 0.003196682082489133, -0.011974873021245003, 0.03498143330216408, -0.06284718960523605, 0.029513346031308174, -0.016463957726955414, -0.015246174298226833, 0.027889633551239967, 0.02609877474606037, -0.033453233540058136, -0.027794120833277702, -0.026122653856873512, 0.015795370563864708, -0.02158581279218197, -0.023197585716843605, 0.0012170374393463135, -0.014553708955645561, 0.023710964247584343, 0.05081262066960335, -0.06981959939002991, -0.05945649743080139, 0.02497650496661663, 0.036079827696084976, -0.014494013041257858, -0.003569777589291334, 0.028032902628183365, -0.010757088661193848, 0.0011551036732271314, 0.02126345783472061, -0.044031236320734024, -0.03426508978009224, 0.004309999290853739, -0.03488592058420181, 0.02423628233373165, 0.0473741739988327, 0.005256169009953737, 0.03519633412361145, 0.004474161192774773, -0.012189775705337524, 0.01473279483616352, 0.01623711548745632, -0.032116059213876724, -0.029752125963568687, 0.016081908717751503, -0.016846006736159325, -0.04565494880080223, -0.01678631268441677, 0.05386902019381523, 0.014828306622803211, -0.004199562594294548, -0.018529415130615234, 0.030110297724604607, 0.007837990298867226, 0.01975913718342781, -0.00740221468731761, -0.010595912113785744, 0.037345364689826965, -0.010882449336349964, -0.01562822423875332, -0.0506693534553051, 0.0029952104669064283, 0.0310893002897501, -0.0057844724506139755, -0.00591281708329916, 0.03142359480261803, 0.003707076655700803, 0.09073682129383087, -0.016117725521326065, 0.046275779604911804, -0.048902370035648346, -0.0007894700393080711, -0.02381841652095318, 0.019233819097280502, 0.06308597326278687, 0.00438163336366415, -0.03818110004067421, -0.05195876955986023, -0.020988859236240387, 0.03330996632575989, 0.015926700085401535, -0.01864880509674549, -0.05086037516593933, 0.027340438216924667, 0.0232811588793993, -0.031065423041582108, -0.06981959939002991, -0.009127408266067505, -0.02848658710718155, 0.03319057449698448, 0.02273196168243885, -0.01862492598593235, 0.02199174091219902, -0.023997502401471138, 0.0030310277361422777, -0.004539825953543186, 0.06480519473552704, -0.018863707780838013, 0.01135404221713543, -0.07707854360342026, -0.01751459389925003, -0.011228681541979313, 0.005306910257786512, 0.0002356097975280136, -0.003396661253646016, 0.012524069286882877, 0.019233819097280502, 0.02254093624651432, -0.010321313515305519, 0.002732551423832774, 0.026337556540966034, 0.07053594291210175, 0.005578523501753807, -0.03321445360779762, -0.007873807102441788, 0.04252691566944122, -0.012703155167400837, 0.017216118052601814, -0.01182563416659832, 0.008846839889883995, -0.03221157193183899, 0.008351369760930538, 0.04942769184708595, -0.026385312899947166, -0.019818833097815514, 0.042192623019218445, -0.04059278964996338, 0.020797835662961006, -0.0031310173217207193, -0.013097143732011318, -0.004987540654838085, 0.0144462576135993, 0.004145836923271418, -0.039948079735040665, -0.014637282118201256, 0.003587686223909259, 0.050048522651195526, 0.03982868790626526, 0.017395203933119774, 4.423513382789679e-05, -0.015532711520791054, -0.023770660161972046, 0.0580715648829937, 0.019484538584947586, 0.04450879991054535, -0.003569777589291334, -0.009736299514770508, -0.018207060173153877, -0.0034623260144144297, -0.011950994841754436, 0.052436333149671555, 0.05797605216503143, 0.01537750381976366, 0.03476652875542641, 0.02049935795366764, -0.019794953987002373, -0.05090813338756561, 0.05993405729532242, 0.03445611521601677, 0.015222296118736267, 0.06824364513158798, 0.03457550331950188, -0.03758414834737778, 0.0230781938880682, -0.04429389536380768, -0.013001631945371628, -0.004790545906871557, 0.026791241019964218, -0.020033735781908035, -0.03125644847750664, -0.029895395040512085, 0.01183757372200489, 0.03467101603746414, -0.048520322889089584, -0.015986395999789238, -0.001366275711916387, -0.06704973429441452, 0.0026250998489558697, 0.010661576874554157, 0.010846631601452827, 0.017920522019267082, -0.044031236320734024, -0.014971575699746609, -0.014458196237683296, -0.039016835391521454, -0.054680876433849335, 0.0024863083381205797, 0.015174539759755135, -0.013849304057657719, 0.06351577490568161, 0.05028730258345604, -0.003716031089425087, -0.0342412106692791, -0.003104154486209154, 0.009837782010436058, -0.009019956924021244, -0.0111630167812109, -0.026982266455888748, -0.004930830094963312, -0.007742477580904961, -0.010966022498905659, 0.011831603944301605, -0.022433485835790634, 0.015019332058727741, -0.02590775117278099, 0.012309166602790356, 0.03581716865301132, 0.012488252483308315, 0.022994620725512505, 0.023555757477879524, 0.005256169009953737, -0.010667545720934868, 0.010685455054044724, 0.056543368846178055, -0.01694151945412159, 0.019293513149023056, -0.06494846194982529, 0.008596120402216911, -0.01117495633661747, -0.02982376143336296, -0.017574289813637733, 0.0391601026058197, -0.05620907247066498, 0.050955887883901596, 0.0009857183322310448, -0.03350099176168442, -0.004465206991881132, -0.03524409234523773, 0.028414951637387276, -0.03166237473487854, -0.028080658987164497, 0.010828723199665546, 0.042574673891067505, 0.028964148834347725, 0.008005136623978615, -0.09828230738639832, -0.011025717481970787, -0.029728248715400696, -0.024343734607100487, -0.011383889243006706, -0.011318224482238293, -0.021096311509609222, -0.023878110572695732, -0.0264330692589283, -0.008005136623978615, 0.035673897713422775, -0.029322320595383644, 0.03319057449698448, 0.004295075312256813, 0.008267795667052269, -0.02511977218091488, 0.03913622349500656, -0.002501232083886862, 0.050191789865493774, 0.042956721037626266, 0.026409190148115158, -0.014398501254618168, 0.02851046435534954, -0.0029922258108854294, 0.0077305384911596775, -0.0038951169699430466, -0.02867761068046093, -0.06203533336520195, 0.009073682129383087, -0.0020415785256773233, -0.0361514613032341, -0.012691216543316841, 0.03732148930430412, -0.017442960292100906, 0.019890466704964638, 0.019806893542408943, -0.02181265503168106, -0.016666920855641365, -0.01823093742132187, -0.024116892367601395, -0.010655607096850872, 0.01144358515739441, -0.014350744895637035, 0.004632353782653809, -0.03514857962727547, 0.033596500754356384, -0.027674730867147446, -0.01692958176136017, -0.02497650496661663, 0.04281345382332802, -0.031948912888765335, -0.004536841064691544, 0.041070349514484406, 0.005220352206379175, -0.0230781938880682, -0.014016451314091682, 0.01480442937463522, 0.012512130662798882, 0.017633985728025436, 0.0012050984660163522, -0.008231978863477707, -0.0026683788746595383, -0.0060799638740718365, -0.03034907951951027, -0.024689966812729836, -0.04133301228284836, 0.03113705664873123, 0.016702739521861076, 0.00549196545034647, -0.05501516908407211, 0.027149412781000137, -0.015401381999254227, -0.008124527521431446, -0.01866074465215206, -0.010900357738137245, 0.0032713012769818306, -0.00013795205450151116, 0.0331428200006485, 0.008482699282467365, -0.011939055286347866, 0.01443431805819273, 0.006638114806264639, -0.00040070456452667713, -0.03073112852871418, 0.057450734078884125, -0.04820990562438965, 0.03235483914613724, -0.0032921945676207542, 0.002698226599022746, -0.03237871825695038, -0.017765315249562263, 0.019794953987002373, 0.00544719398021698, -0.0088349012658, 0.048711348325014114, 0.01257182564586401, -0.01117495633661747, 0.009431853890419006, 0.0004107781278435141, 0.002122167032212019, -0.00930052436888218, -0.045368410646915436, -0.0006711987662129104, -0.00820810068398714, 0.004530871752649546, -0.01507902704179287, -0.003022073535248637, 0.06385006755590439, 0.07306701689958572, 0.037918440997600555, -0.02903578244149685, 0.05530170723795891, 0.012774789705872536, -0.04472370073199272, -0.0017460868693888187, 0.011031687259674072, -0.024260161444544792, -0.03295179456472397, 0.024713845923542976, -0.025836115702986717, 0.008452851325273514, 0.029704369604587555, 0.021514177322387695, 0.010542185977101326, -0.003065352560952306, -0.030611738562583923, -0.005369590129703283, 0.00013375472917687148, -0.03338159993290901, -0.006972408387809992, -0.0031996669713407755, -0.04563106968998909, 0.01210620254278183, -0.02648082561790943, -0.014685038477182388, -0.02178877592086792, -0.043840210884809494, 0.018290633335709572, -0.008220040239393711, -0.034026309847831726, 0.0049278452061116695, -0.00864387582987547, -0.018386146053671837, -0.014088085852563381, -0.03560226410627365, -0.02810453623533249, -0.013562766835093498, 0.016678860411047935, -0.01786082796752453, 0.0004171207547187805, 0.006363516673445702, -0.020809773355722427, 0.01790858432650566, 0.012124110944569111, 0.011873390525579453, -0.02309013344347477, 0.001099139335565269, 0.002210217760875821, 0.011843543499708176, 0.006065040361136198, 0.03242647647857666, -0.005154687445610762, 0.014350744895637035, 0.04240752384066582, -0.037894561886787415, -0.03591267764568329, 0.000616353761870414, 0.014649221673607826, -0.005879984702914953, 0.03732148930430412, -0.04097484052181244, 0.022457363083958626, -0.0034444176126271486, -0.020177004858851433, 0.005330788437277079, -0.01414778083562851, -0.021120188757777214, -0.04169118031859398, 0.04462818801403046, 0.015174539759755135, -0.011933086439967155, 0.0028802971355617046, -0.012894179672002792, -0.01518647838383913, 0.0033518897835165262, -0.01127046812325716, 0.03390691801905632, 0.015890883281826973, -0.018947280943393707, 0.01825481653213501, -0.025836115702986717, 0.013491133227944374, 0.002017700346186757, -0.01734744757413864, -0.003193697426468134, 0.040497276932001114, -0.033453233540058136, -0.014685038477182388, -0.021358970552682877, -0.027125533670186996, -0.01975913718342781, 0.02343636564910412, 0.006638114806264639, 0.00484725646674633, 0.0037936349399387836, 0.004512962885200977, -0.012261410243809223, 0.017263874411582947, 0.014398501254618168, 0.016619164496660233, -0.010130289010703564, 0.013526950031518936, -0.007670843042433262, -0.014852184802293777, -0.0010715302778407931, -0.04099871590733528, -0.026695728302001953, -0.025191407650709152, 0.03390691801905632, 0.01920993998646736, 0.010506369173526764, 0.0027041961438953876, 0.020356088876724243, 0.038658663630485535, -0.03218769282102585, -0.0038115435745567083, -0.03648575395345688, -0.023245342075824738, 0.026934510096907616, -0.005092007108032703, -0.007235067896544933, -0.01239273976534605, -0.03932724893093109, 0.028653733432292938, -0.05554048717021942, 0.00997508130967617, -0.011921146884560585, -0.02996702864766121, -0.012846424244344234, 0.01862492598593235, -0.008936382830142975, 0.0021952937822788954, 0.045368410646915436, -0.030086420476436615, -0.014302988536655903, 0.022397669032216072, -0.05200652778148651, 0.011013778857886791, 0.0024892929941415787, -0.00581431994214654, 0.021167945116758347, -0.025000382214784622, 0.00042794051114469767, -0.0016162496758624911, 0.0240333192050457, -0.061366744339466095, 0.0013923923252150416, 0.011580883525311947, -0.03665290027856827, 0.005697914399206638, -0.018123487010598183, 0.002344531938433647, -0.03667677938938141, 0.00819019228219986, -0.024343734607100487, -0.017216118052601814, 0.016153542324900627, -0.025764482095837593, -0.027650853618979454, 0.024152709171175957, 0.021191824227571487, 0.0016804221086204052, -0.01567598059773445, -0.007449970580637455, 0.0012424079468473792, -0.002607191214337945, 0.0201292484998703, 0.03092215396463871, -0.01100183930248022, -0.007121646776795387, -0.019424842670559883, 0.021824592724442482, -0.022421546280384064, 0.002052025170996785, -0.02626592293381691, 0.026934510096907616, -0.01991434395313263, -0.00540242251008749, -0.024128831923007965, -0.02738819271326065, 0.008273765444755554, -0.022302156314253807, -0.00885280966758728, -0.009181133471429348, -0.00046413077507168055, 0.05902669206261635, -0.011873390525579453, -0.04469982534646988, 0.03202054649591446, 0.019472599029541016, -0.0032713012769818306, -0.019102489575743675, -0.01257182564586401, -0.020439663901925087, 0.037560269236564636, -0.0034772499930113554, -0.0028041857294738293, -0.012136049568653107, 0.029131295159459114, -0.051719989627599716, 0.0072828237898647785, 0.02288717031478882, 0.023364732041954994, 0.0047129420563578606, -0.013598584569990635, 0.010631728917360306, 0.013132961466908455, 0.02815229259431362, -0.0073843058198690414, -0.014816367998719215, 0.0042473189532756805, -0.015735674649477005, -0.004298060201108456, 0.038276612758636475, 0.04754132032394409, 0.022111130878329277, -0.02292298711836338, 0.04009134694933891, 0.005721792578697205, -0.006596328224986792, 0.019257696345448494, 0.00534869683906436, -0.0014625343028455973, -0.004199562594294548, -0.01144955400377512, 0.0008200638694688678, 0.03347711265087128, -0.027841877192258835, -0.00220872531645, 0.01863686554133892, 0.011216742917895317, -0.030659494921565056, -0.012070384807884693, -0.007957380264997482, -0.010207892395555973, 0.01713254489004612, -0.03297566995024681, 0.013431437313556671, -0.01473279483616352, 0.014111964032053947, 0.011568944901227951, 0.018696561455726624, 0.027459828183054924, -0.00027832924388349056, -0.028916392475366592, -0.03820497915148735, 0.009270676411688328, 0.017598167061805725, -0.05277062579989433, -0.032116059213876724, -0.011097352020442486, 0.05124242603778839, 0.0037966195959597826, -0.015138722956180573, -0.0037966195959597826, 0.003784680739045143, 0.039924200624227524, -0.05214979499578476, 0.006578419823199511, -0.015425260178744793, -0.006709749344736338, 0.013491133227944374, -0.004584597423672676, 0.024522820487618446, -0.027674730867147446, -0.02347218245267868, 0.01192711666226387, -0.06098469719290733, 0.019150245934724808, 0.008727449923753738, -0.014780551195144653, -0.018350329250097275, 0.03443223610520363, -0.011562975123524666, 0.0177294984459877, -0.0069365911185741425, -0.028080658987164497, 0.013861243613064289, 0.01617741957306862, 0.03295179456472397, -0.006160552613437176, 0.01414778083562851, -0.005805365741252899, 0.03701107203960419, 0.06060264632105827, -0.03264137730002403, 0.043696943670511246, -0.05248408764600754, -0.03648575395345688, 0.023722903802990913, -0.008542394265532494, 0.022111130878329277, -0.002525110263377428, -0.009837782010436058, 0.03758414834737778, 0.01826675422489643, 0.012219623662531376, 0.004504008684307337, 0.008846839889883995, 0.010386978276073933, 0.029131295159459114, -0.007736507803201675, -0.001448356662876904, 0.04625190049409866, -0.04804275929927826, -0.003930934239178896, -0.009085621684789658, -0.014410439878702164, 0.0018953250255435705, -0.0020863499958068132, 0.025239164009690285, -0.032856281846761703, 0.001596848713234067, 0.014374623075127602, 0.012064415961503983, -0.01805185154080391, 0.02796126902103424, -0.013741852715611458, -0.017263874411582947, -0.015950579196214676, -0.0335487462580204, -0.039589907974004745, -0.007097768597304821, -0.007372366730123758, -0.008506577461957932, -0.008775206282734871, 0.03686780482530594, 0.020368028432130814, 0.006429181434214115, 0.011789817363023758, 0.0025877903681248426, -0.00604713149368763, 0.02330503612756729, 0.037727415561676025, 0.03555450588464737, 0.007939471863210201, -0.0031131086871027946, -0.0055516608990728855, 0.021526116877794266, 0.003975705709308386, -0.00933037232607603, 0.021908167749643326, -0.004715926945209503, -0.06647665798664093, -0.010948114097118378, -0.01789664477109909, 0.03352486714720726, 0.001950543257407844, -0.010918266139924526, -0.003238468896597624, 0.02571672573685646, 0.023770660161972046, 0.016798250377178192, -0.036199215799570084, 0.008775206282734871, -0.012798667885363102, 0.005617325659841299, -0.018374206498265266, 0.009479610249400139, -0.008399125188589096, 0.009264707565307617, -0.02070232294499874, 0.007438031490892172, -0.00950945820659399, 0.008924444206058979, -0.006130705121904612, 0.017574289813637733, 0.032521989196538925, 0.018744317814707756, -0.008434942923486233, -0.00790365505963564, 0.001396123319864273, 0.0014513414353132248, -0.04904564097523689, 0.028797002509236336, 0.006291882134974003, -0.03820497915148735, -0.001037205453030765, -0.0035041128285229206, -0.019985979422926903, -0.01618935912847519, -0.008434942923486233, -0.025812238454818726, 0.020738139748573303, 0.02102467603981495, 0.01696539856493473, -0.011031687259674072, 0.03376365080475807, -0.004903967026621103, -0.012225592508912086, -0.003384722163900733, 0.011598792858421803, 0.005235275719314814, 0.025286920368671417, -0.007945441640913486, 0.04114198684692383, -0.03333384171128273, 0.026910630986094475, 0.044222261756658554, 0.024642210453748703, 0.04028237238526344, 0.004921875894069672, 0.040521156042814255, 0.0027638913597911596, 0.0006887342897243798, 0.008996078744530678, 0.023746781051158905, 0.013658279553055763, 0.021478360518813133, 0.017275813966989517, 0.03440835699439049, -0.04376857727766037, 0.0010588449658825994, 0.011151078157126904, 0.005405407398939133, -0.0033996461424976587, -0.0003128405660390854, -0.010404886677861214, 0.026027141138911247, -0.026528581976890564, -0.013932878151535988, 0.001795335439965129, 0.0026773333083838224, -0.005915801972150803, 0.005217367317527533, -0.0014505952131003141, 0.018290633335709572, 0.017813071608543396, -0.007360427640378475, 0.0087632667273283, -0.015938639640808105, 0.024451185017824173, -0.009563183411955833, 0.011664457619190216, 0.0019430812681093812, 0.01368215773254633, 0.019627807661890984, 0.033835284411907196, 0.004181654192507267, -0.0223857294768095, -0.021108251065015793, -0.0025564501993358135, -0.03820497915148735, -0.012715093791484833, 0.009969111531972885, -0.009903446771204472, -0.004787561483681202, 0.020236698910593987, 0.0055337524972856045, 0.01565210148692131, -0.011789817363023758, 0.031781766563653946, 0.021824592724442482, 0.024809356778860092, -0.04412674903869629, 0.04689661040902138, 0.05071710795164108, 0.036557387560606, -0.005739700980484486, -0.02423628233373165, 0.018720438703894615, -0.016511714085936546, 0.008966230787336826, -0.009049803949892521, -0.0028041857294738293, -0.00405927887186408, 0.009855690412223339, 0.03187727928161621, -0.049284420907497406, 0.010482490994036198, 0.006745566613972187, -0.011945025064051151, 0.006214278284460306, -0.009306494146585464, -0.017657862976193428, -0.004575643222779036, 0.00922888983041048, -0.039231736212968826, -0.06289494782686234, -0.032330963760614395, -0.007449970580637455, -0.04078381508588791, 0.005557630211114883, 0.0022176795173436403, 0.0151984179392457, 0.006530663464218378, -0.013204595074057579, -0.02164550870656967, -0.010554125532507896, 0.02815229259431362, -0.0011603269958868623, -0.00931843277066946, -0.004465206991881132, 0.0060620554722845554, -0.023245342075824738, -0.004253288730978966, 0.004545795265585184, 0.017741436138749123, 0.028940271586179733, -0.020582931116223335, 0.0398525670170784, -0.0013752299128100276, 0.008434942923486233, 0.009610939770936966, -0.00930052436888218, -0.004939784295856953, 0.005333772860467434, 0.03777517005801201, 0.015174539759755135, 0.0023803492076694965, -0.028056779876351357, -0.0024698921479284763, 0.016440080478787422, 0.0055456911213696, -0.005865061189979315, -0.012524069286882877, -0.010834692977368832, -0.023758720606565475, -0.010470551438629627, 0.03032520040869713, 0.003193697426468134, 0.0021012737415730953, -0.019030854105949402, -0.008357338607311249, -0.010166105814278126, 0.002349009271711111, 0.004486100282520056, -0.006596328224986792, -0.019675564020872116, 0.0037787111941725016, 0.011240621097385883, -0.05310491845011711, -0.008273765444755554, 0.015102905221283436, -0.0019057717872783542, 0.015508833341300488, 0.041667304933071136, -0.00413986761122942, 0.04512963071465492, -0.039780933409929276, -0.03646187484264374, -0.01164057943969965, 0.019030854105949402, 0.03366813808679581, -0.016296811401844025, -0.03627084940671921, -0.004011522512882948, -0.0022415576968342066, -0.03316669538617134, 0.0588834211230278, 0.027268802747130394, -0.03502918779850006, 0.012273348867893219, -0.006608267314732075, 0.009992989711463451, 0.005718807689845562, 0.01823093742132187, -0.00484725646674633, -0.011557006277143955, -0.0217768382281065, 0.0029937182553112507, 0.03705883026123047, 0.006059070583432913, -0.022600632160902023, -0.0001670534984441474, 0.022457363083958626, 0.00978405587375164, -0.03691555932164192, -0.00799916684627533, -0.006399333942681551, -0.026003263890743256, 0.007073890417814255, -0.013634401373565197, 0.010022836737334728, -0.009790025651454926, 0.02086946927011013, 0.01993822306394577, 0.023161767050623894, -0.011025717481970787, 0.024152709171175957, -0.026361435651779175, -0.011933086439967155, -0.00017339612531941384, -0.003626488149166107, 0.01302550919353962, -0.039566028863191605, -0.0088349012658, -0.01622517593204975, 0.004897997714579105, -0.011873390525579453, -0.01209426298737526, -0.01119286473840475, 0.01862492598593235, 0.008023045025765896, 0.03729761019349098, -0.02774636447429657, -0.007330580148845911, 0.010416826233267784, 0.006297851912677288, 0.01454176940023899, 0.0027221047785133123, 0.01509096659719944, -0.01604609005153179, 0.0014020928647369146, 0.01601027324795723, 0.010954083874821663, -0.006459028925746679, 0.025645092129707336, -0.015019332058727741, 0.00039548121276311576, -0.013288169167935848, -0.0152700524777174, 0.0026012216694653034, -0.009270676411688328, 0.0031459410674870014, -0.006226217374205589, -0.011968903243541718, 0.02348412200808525, -0.023352792486548424, -0.00438163336366415, -0.007360427640378475, 0.0012536008143797517, 0.03818110004067421, 0.002457953058183193, 0.006148613523691893, -0.030110297724604607, -0.033596500754356384, -0.011903238482773304, -0.0072828237898647785, -0.007826050743460655, -0.04009134694933891, 0.0036802138201892376, -0.007449970580637455, -0.01603415235877037, -0.01491188071668148, -0.001574462978169322, 0.013538888655602932, 0.005539721809327602, -0.004124943632632494, 0.04622802510857582, -0.01480442937463522, -0.010124319233000278, -0.037345364689826965, 0.009664665907621384, -0.0016863916534930468, -0.014577587135136127, -0.002525110263377428, -0.01044070441275835, -0.005966543219983578, 0.024439247325062752, -0.03450386971235275, -0.04942769184708595, -0.0013349356595426798, -0.03927949443459511, 0.01507902704179287, -0.010864540934562683, -0.01729969121515751, -0.02420046553015709, 0.020941102877259254, 0.02905966155230999, -0.003671259619295597, 0.0014349252451211214, 0.0024027349427342415, -0.0020759033504873514, -0.04083156958222389, 0.04329101741313934, -0.019687503576278687, 0.011115260422229767, 0.021358970552682877, 0.007951411418616772, -0.015986395999789238, 0.022672265768051147, -0.02867761068046093, -0.026361435651779175, 0.005062159616500139, -0.018039913848042488, -0.024176588281989098, 0.00912143848836422, -0.03729761019349098, -0.009987019933760166, 0.008996078744530678, 0.01090632751584053, 0.03199666738510132, -0.011240621097385883, -0.026122653856873512, 0.0034563567023724318, 0.02834331803023815, 0.021335091441869736, -0.024713845923542976, -0.019603928551077843, 0.0006379932747222483, -0.0240333192050457, 0.012452434748411179, 0.01126449927687645, -0.027149412781000137, -0.016989275813102722, -0.015496893785893917, -0.01472085528075695, 0.027268802747130394, -0.0007305209874175489, 0.0223857294768095, -0.03636636212468147, 0.0339546725153923, 0.0028534343000501394, 0.02607489749789238, -0.03899295628070831, -0.016643043607473373, 0.02554957941174507, 0.0032265298068523407, -0.000529795594047755, 0.0006562749622389674, 0.023901989683508873, -0.02738819271326065, 0.013359802775084972, 0.013395620509982109, 0.00699031725525856, 0.00011006317072315142, 0.0020415785256773233, -0.0007454447913914919, -0.052245307713747025, -0.013897060416638851, -0.036772292107343674, -0.007670843042433262, 0.003587686223909259, -0.02362739108502865, 0.034336723387241364, 0.030038664117455482, -0.03182952105998993, -0.013479193672537804, -0.017550412565469742, 0.042741820216178894, 0.02139478735625744, -0.012500191107392311, -0.036223094910383224, -0.02829556167125702, -0.01659528724849224, 0.0011394335888326168, 0.02326921932399273, 0.0021579843014478683, -0.02760309725999832, -0.032689135521650314, 0.015317807905375957, 0.004686079453676939, 0.0032474230974912643, 0.0014505952131003141, 0.00267434841953218, 0.0021102281752973795, 0.03541123867034912, 0.007569361478090286, -0.03280852362513542, -0.017419083043932915, 0.020785896107554436, 0.010422795079648495, -0.013586645014584064, -0.00391601026058197, -0.010661576874554157, -0.01566404104232788, 0.011533128097653389, -0.005112900398671627, 0.002002776600420475, 0.005360635928809643, 0.039804812520742416, 0.001093916012905538, -0.004912921227514744, 0.020988859236240387, -0.0073843058198690414, -0.0003400765417609364, -0.010786936618387699, 0.006805261597037315, -0.027722487226128578, 0.004396557342261076, 0.050382815301418304, 0.021824592724442482, -0.0175265334546566, 0.026027141138911247, -0.026361435651779175, -0.013658279553055763, 0.019830770790576935, 0.010184014216065407, 0.0342412106692791, 0.03686780482530594, -0.013395620509982109, 0.002701211255043745, 0.0354589968919754, -0.01333592552691698, 0.0099631417542696, -0.02511977218091488, -0.05716419965028763, 0.013932878151535988, 0.025621213018894196, -0.0013864227803424, -0.032307084649801254, -0.0009334849310107529, -0.0006932113901712, -0.012404678389430046, -0.008811023086309433, -0.050573840737342834, -0.011676396243274212, -0.007837990298867226, 0.0033309964928776026, -0.02251705899834633, -0.01380154862999916, -0.0037548330146819353, 0.024331795051693916, -0.03803783282637596, -0.028988026082515717, -0.01200472004711628, 0.0006678409408777952, -0.04130913317203522, 0.00470398785546422, -0.01135404221713543, 0.032880160957574844, 0.03242647647857666, 0.014565647579729557, 0.0071634333580732346, 0.012512130662798882, 0.02516752853989601, -0.028916392475366592, -0.026170410215854645, -0.015162600204348564, -0.0010185507126152515, -0.03357262536883354, -0.008309582248330116, -0.01537750381976366, -0.0055456911213696, 0.013276229612529278, 0.008876687847077847, 0.03517245873808861, 0.024522820487618446, 0.016332628205418587, -0.007217159029096365, -0.02922680787742138, -0.0011737584136426449, 0.042574673891067505, -0.008285705000162125, 0.03469489514827728, 0.009181133471429348, 0.006870926357805729, -0.02106049470603466, -0.026862874627113342, -0.017239997163414955, -0.003119078231975436, -0.0015938639407977462, 0.016296811401844025, 0.027316559106111526, -0.002280359622091055, 0.029202930629253387, 0.02516752853989601, -0.04524902254343033, 0.027722487226128578, 0.00253555690869689, 0.03703495115041733, -0.0002826198178809136, 0.007927533239126205, -0.024522820487618446, 0.004769652616232634, 0.019830770790576935, -0.0019475584849715233, -0.009133377112448215, -0.029943151399493217, 0.023245342075824738, -0.004736820235848427, -0.02122764103114605, 0.007963350042700768, -0.0005838944343850017, 0.01790858432650566, -0.0021132128313183784, 0.0013685142621397972, 0.005865061189979315, 0.00540242251008749, 0.0016072953585535288, 0.008548364043235779, 0.007193280849605799, 0.09111887216567993, 0.010524277575314045, 0.006076979450881481, 0.01659528724849224, -0.016141602769494057, 0.02922680787742138, 0.002156491857022047, -0.014637282118201256, 0.022409606724977493, -0.012368861585855484, -0.027817999944090843, -0.03202054649591446, -0.02457057684659958, -0.04023461788892746, -0.01808766834437847, -0.008005136623978615, 0.01734744757413864, 0.02829556167125702, 0.02309013344347477, 0.001042428775690496, 0.01060785073786974, -0.004698018543422222, 0.05955201014876366, 0.02609877474606037, -0.04023461788892746, 0.015687918290495872, 0.006787353195250034, 0.005805365741252899, 0.02385423332452774, 0.04078381508588791, 0.03338159993290901, 0.0027370285242795944, 0.01751459389925003, -0.025931628420948982, 0.018768195062875748, -0.03648575395345688, 0.007360427640378475, 0.02722104638814926, -0.01788470521569252, 0.03457550331950188, 0.011945025064051151, -0.02476160041987896, 0.03911234438419342, -0.021669385954737663, -0.003223544918000698, 0.038658663630485535, 0.00864387582987547, -0.04192996397614479, 0.025406310334801674, -0.009288584813475609, 0.03385916352272034, -0.010225800797343254, -0.020917225629091263, -0.001408808515407145, -0.024809356778860092, 0.008858779445290565, 0.0087632667273283, -0.01734744757413864, 0.03166237473487854, -0.039924200624227524, -0.015783431008458138, -0.01936514861881733, 0.00959900114685297, -0.013813487254083157, -0.0039577968418598175], [0.012831207364797592, 0.030982952564954758, 0.029217084869742393, 0.0020898012444376945, -0.056507766246795654, 0.042610157281160355, -0.033299218863248825, -0.008324804715812206, 0.025478947907686234, 0.0196768119931221, -0.03866562247276306, -0.013416008092463017, 0.06256216764450073, 0.03809228911995888, -0.020571213215589523, 0.022486146539449692, 0.016580810770392418, -0.026671482250094414, -0.012773874215781689, -0.010308539494872093, -0.02442401461303234, 0.04338989406824112, -0.05150829628109932, 0.019298411905765533, 0.010727073065936565, -0.015789609402418137, 0.021465612575411797, 0.03251948580145836, 0.0393536239862442, -0.023781880736351013, 0.06719470769166946, -0.013828808441758156, 0.025685349479317665, -0.02999681793153286, 0.01569787599146366, -0.01458560861647129, 0.017222942784428596, -0.013519207946956158, 0.000898700556717813, -0.012429874390363693, -0.018920011818408966, -0.0308682844042778, -0.010629606433212757, 0.014952542260289192, -0.04935256391763687, 0.035500820726156235, -0.03657868877053261, -0.0016168010188266635, -0.04595842584967613, 0.04293122515082359, 0.019791478291153908, 0.016993610188364983, -0.004354469478130341, 0.022268280386924744, 0.013484807685017586, -0.003448602044954896, -0.02742828242480755, 0.015583209693431854, 0.012556007131934166, 0.009563205763697624, 0.0154341422021389, -0.01922961138188839, -0.033138684928417206, 0.04843522980809212, 0.02315121330320835, -0.012968807481229305, -0.01355360820889473, 0.028414417058229446, -0.003958869259804487, 0.04394029453396797, 0.017016543075442314, 0.00542373675853014, -0.022153614088892937, 0.0015193342696875334, 0.009339605458080769, 0.008961205370724201, 0.05169176310300827, 0.025387214496731758, -0.009935872629284859, -0.050178162753582, 0.02524961531162262, 0.045522693544626236, -0.012556007131934166, 0.055223498493433, -0.0428624264895916, 0.03180855140089989, -0.09012805670499802, 0.0017687344225123525, 0.02387361414730549, -0.04641709476709366, -0.06834137439727783, 0.016993610188364983, -0.012854141183197498, 0.0037983355578035116, -0.008600004948675632, 0.028735483065247536, 0.03827575594186783, -0.0018862677970901132, 0.009236405603587627, 0.045660294592380524, -0.015147475525736809, -0.019241077825427055, -0.026350416243076324, -0.006564670708030462, 0.05100376531481743, -0.04173869267106056, -0.059259768575429916, -0.004609602969139814, 0.031120551750063896, -0.017096810042858124, 0.04967362806200981, -0.017337610945105553, -0.0030042685102671385, 0.0772395133972168, -0.019745612516999245, -0.0025441681500524282, -0.016798676922917366, 0.017589876428246498, -0.003698002314195037, -0.028873084113001823, -0.035340286791324615, -0.037541888654232025, -0.002519801491871476, -0.0760011151432991, 0.01363387517631054, 0.005142803303897381, 0.018598943948745728, -0.004314335994422436, 0.009540271945297718, 0.017142677679657936, 0.057379234582185745, -0.029698684811592102, 0.021580278873443604, -0.018254945054650307, 0.000846383860334754, 0.04180749133229256, -0.02914828434586525, -0.009202005341649055, -0.034858688712120056, 0.027932817116379738, 0.03036375157535076, 0.02074321173131466, 0.011220140382647514, 0.018472811207175255, -0.04494936019182205, -0.0059225368313491344, -0.008554138243198395, 0.041280023753643036, -0.004188202321529388, -0.02410294860601425, 0.00905867200344801, -0.04017922282218933, -0.024630414322018623, 0.009511605836451054, 0.015342408791184425, -0.06013123691082001, 0.01779627799987793, 0.03896375745534897, 0.02341494709253311, 0.023506680503487587, -0.01870214380323887, 0.02424054779112339, -0.02002081274986267, -0.005415136460214853, 0.0003275168710388243, -0.004148069303482771, -0.02811628393828869, -0.035867754369974136, -0.04490349441766739, -0.04893976449966431, -0.024332281202077866, 0.0038356021977961063, -0.01880534552037716, -0.028047483414411545, -0.02848321758210659, -0.029033618047833443, 0.018610410392284393, 0.009150405414402485, -0.055498700588941574, -0.01896587759256363, 0.017647210508584976, 0.010692672803997993, -0.03933069109916687, -0.021098678931593895, -0.008536938577890396, 0.028437349945306778, -0.027497082948684692, -0.01721147634088993, -0.05747096613049507, 0.009093072265386581, 0.01507867593318224, 0.023174148052930832, -0.037885889410972595, 0.005893870256841183, 0.001127317314967513, -0.015789609402418137, -0.011707473546266556, -0.014425075612962246, 0.008617205545306206, -0.028391484171152115, 0.03699148818850517, -0.03185442090034485, 0.010136539116501808, 0.030249085277318954, -0.06393817067146301, 0.032450687140226364, 0.007923471741378307, 0.029744550585746765, 0.02458454854786396, 0.02020427957177162, 0.020938144996762276, 0.014367741532623768, -0.032657086849212646, -0.0043974691070616245, 0.03410188853740692, 0.002461034804582596, 0.04208269342780113, -0.03623468801379204, 0.009993205778300762, 0.0031734018120914698, -0.06673604249954224, -0.03332215175032616, -0.02490561455488205, -0.005604336503893137, -0.03593655675649643, 0.01777334325015545, -0.0037266688887029886, -0.018942944705486298, 0.010291339829564095, -0.00015811467892490327, -0.036693356931209564, -0.006639203988015652, -0.032657086849212646, -0.01373707503080368, -0.008198671974241734, 0.03589068725705147, 0.00039918356924317777, -0.027405349537730217, -0.030088551342487335, 0.049902964383363724, 0.00476153613999486, -0.002117034513503313, -0.013874675147235394, 0.0018031344516202807, 0.012533074244856834, -0.008496805094182491, -0.0037582023069262505, -0.009729472920298576, -0.00417100265622139, 0.028597883880138397, 0.04733442887663841, -0.0016870343824848533, 0.028781350702047348, -0.04843522980809212, 0.012773874215781689, -0.03352855518460274, 0.012659207917749882, -0.025662414729595184, 0.01747521013021469, -0.041257090866565704, 0.02312828041613102, 0.04199095815420151, -0.01609920896589756, -0.022509079426527023, -0.06352537125349045, -0.00423120241612196, 0.030249085277318954, -0.0059168036095798016, 0.011581339873373508, 0.001876234426163137, -0.004400336183607578, 0.017888011410832405, 0.00831333827227354, -0.05848003551363945, -0.03488162159919739, 0.011174273677170277, 0.015239208936691284, -0.09031151980161667, -0.02506614848971367, -0.026877881959080696, -0.015606142580509186, -0.04006455838680267, 0.021924279630184174, -0.058388300240039825, 0.0030186017975211143, -0.030065618455410004, -0.0031562019139528275, 0.013094941154122353, -0.005796403624117374, 0.006214937195181847, 0.06586457043886185, -0.04082135856151581, -0.0066105374135077, 0.021557345986366272, 0.026900816708803177, -0.037174955010414124, 0.012074407190084457, 0.019791478291153908, -0.036349356174468994, -0.054994165897369385, -0.04898563027381897, 0.01838107779622078, 0.01925254426896572, -0.059076301753520966, -0.019906144589185715, 0.02832268364727497, 0.04524749517440796, 0.06389230489730835, -0.05375576391816139, 0.0012011340586468577, 0.05714990198612213, -0.011736140586435795, -0.06448857486248016, -0.07150617986917496, -0.01628267578780651, -0.0011008006986230612, -0.0447658933699131, 0.015170409344136715, 0.03662455454468727, -0.03442295268177986, -0.003096001921221614, -0.038757357746362686, 0.03270295262336731, -0.03884908929467201, 0.01999787800014019, -0.013450408354401588, 0.04407789185643196, 0.04898563027381897, -0.043825626373291016, 0.001924967858940363, -0.04118829220533371, 0.008955472148954868, 0.004007602576166391, -0.009872806258499622, -0.013760007917881012, -0.017624277621507645, 0.05306776612997055, 0.00030064184102229774, -0.023621346801519394, -0.02506614848971367, 0.017337610945105553, 0.024836814031004906, 0.034147754311561584, 0.03446882218122482, -0.010732806287705898, 0.02198161371052265, -0.014608542434871197, 0.012200540862977505, 0.01922961138188839, 0.06274563819169998, -0.01785361021757126, -0.04657762870192528, -0.0707264393568039, -0.009448539465665817, -0.028574950993061066, -0.016856011003255844, 0.036532822996377945, -0.033826686441898346, 0.011420806869864464, 0.03268001973628998, -0.00847387220710516, -0.020479479804635048, 0.0014412174932658672, 0.005776336882263422, 0.03644108772277832, 0.03926188871264458, -0.01729174330830574, -0.017945343628525734, 0.02609814889729023, -0.0066105374135077, 0.0017013676697388291, 0.026052283123135567, 0.029606951400637627, -0.06430510431528091, 0.014081074856221676, 0.03589068725705147, -0.013381607830524445, -0.027542950585484505, 0.0276117492467165, 0.0008578505367040634, 0.010904806666076183, -0.0011631506495177746, 0.036670420318841934, -0.010354406200349331, -0.018587477505207062, 0.0482058972120285, -0.01777334325015545, -0.04605016112327576, 0.0009101672330871224, 0.004773003049194813, 0.04694456234574318, 0.0034285353031009436, -0.006409870460629463, 0.01499840896576643, -0.03577602282166481, 0.029790418222546577, 0.019023211672902107, 0.015216276049613953, -0.006977471057325602, -0.018048543483018875, -0.06095683574676514, -0.004689869470894337, 0.006427070591598749, 0.012166140601038933, -0.004202535841614008, 0.005254602991044521, 0.024538680911064148, 0.019080543890595436, -0.004887669812887907, 0.005062536336481571, 0.022841613739728928, 0.023644281551241875, 0.036349356174468994, 0.023506680503487587, 0.040592025965452194, -0.023965347558259964, 0.08246831595897675, -0.003987535834312439, -0.014172808267176151, -0.008164271712303162, 0.036693356931209564, -0.04705922678112984, -0.009196272119879723, -0.026992550119757652, -0.009729472920298576, -0.0023463680408895016, 0.002430934691801667, -0.05173763260245323, 0.06760750710964203, -0.03352855518460274, 0.010188139043748379, -0.010148006491363049, 0.03139575198292732, 0.011856540106236935, -0.03306988626718521, -0.015743743628263474, -0.015136009082198143, 0.017750410363078117, -0.015480008907616138, -0.03171681985259056, -0.03506508842110634, -0.026029348373413086, 0.03816108778119087, 0.025043215602636337, -0.05513176694512367, -0.04843522980809212, -0.03710615634918213, 0.03242775425314903, 0.0028623684775084257, 0.02641921676695347, 0.014276008121669292, -0.0053922031074762344, 0.015365342609584332, 0.01037160586565733, 0.001902034506201744, -0.051095496863126755, 0.015606142580509186, -0.01914934441447258, 0.016798676922917366, 0.048251762986183167, 0.014975476078689098, 0.03015735186636448, 0.045683227479457855, 0.004979402758181095, -0.003514535492286086, 0.01019960641860962, 0.0071093374863266945, -0.02268107980489731, -0.006117470562458038, -0.02135094627737999, 0.00568173686042428, -0.04006455838680267, 0.024951482191681862, -0.016672544181346893, 0.03343681991100311, 0.0006801170529797673, -0.001335150795057416, -0.021924279630184174, -0.001949334517121315, -0.005627269856631756, -0.0072813378646969795, 0.05114136263728142, -0.028368551284074783, -0.0247221477329731, 0.028941884636878967, 0.06591043621301651, 0.05797550082206726, 0.006794004235416651, -0.05224216356873512, -0.04999469593167305, -0.02541014924645424, -0.01604187674820423, -0.004460535943508148, -0.00973520614206791, 0.009884272702038288, -0.02609814889729023, -0.03190028667449951, -0.025868816301226616, 0.02387361414730549, 0.03157921880483627, 0.010010406374931335, -0.022577879950404167, -0.033826686441898346, -0.029262950643897057, 0.035684287548065186, 0.020066678524017334, -0.018128810450434685, -0.0023148346226662397, 0.025295481085777283, 0.008353471755981445, 0.0022589347790926695, -0.033964287489652634, 0.02490561455488205, -0.014849342405796051, -0.039399489760398865, -0.041624024510383606, 0.019722677767276764, 0.026556815952062607, -0.014803475700318813, -0.015239208936691284, 0.03478988632559776, -0.015457076020538807, 0.03359735384583473, 0.008731871843338013, -0.061965905129909515, -0.01949334517121315, 0.014046675525605679, -0.016431743279099464, -0.004380269441753626, -0.023506680503487587, -0.021683480590581894, -0.02042214572429657, -0.054352033883333206, 0.009998939000070095, 0.012349607422947884, -0.008106938563287258, -0.023621346801519394, 0.03352855518460274, 0.03238188475370407, -0.019298411905765533, 0.0007675504893995821, 0.018816811963915825, -0.005415136460214853, -0.0030530018266290426, 0.02692374959588051, 0.018610410392284393, 0.056691233068704605, 0.021419746801257133, -0.009299471974372864, -0.0175554770976305, -0.02227974683046341, -0.006083070300519466, -0.03366615250706673, -0.009224939160048962, 0.01846134476363659, 0.05646190047264099, -0.02371308021247387, -0.03339095413684845, -0.028850151225924492, 0.014516809023916721, -0.01058373972773552, -0.011506807059049606, 0.016489077359437943, 0.004085002467036247, -0.013266941532492638, 0.03761069104075432, 0.004755802918225527, -0.0009402672294527292, -0.00686853751540184, 0.022245347499847412, -0.010618139989674091, -0.024446947500109673, 0.04233495891094208, -0.006656404118984938, 0.030409617349505424, -0.016959210857748985, 0.05049923062324524, -0.008376404643058777, -0.009815472178161144, -0.008875205181539059, 0.010268406011164188, 0.03644108772277832, 0.01596160978078842, 0.024836814031004906, -0.03082241863012314, -0.005839403718709946, -0.016695477068424225, 0.017658676952123642, -0.028253883123397827, -0.018770944327116013, 0.009351071901619434, -0.022451747208833694, 0.012303740717470646, -0.00417100265622139, 0.019527744501829147, 0.03593655675649643, 0.011627206578850746, 0.009127472527325153, -0.041096556931734085, 0.04123415797948837, 0.0494442954659462, -0.015308009460568428, 0.005498270038515329, 0.0013695508241653442, -0.04705922678112984, -0.00991867296397686, -0.01022253930568695, -0.01862187869846821, 0.030134418979287148, -0.005091202910989523, 0.044834692031145096, 0.009064405225217342, -0.01779627799987793, -0.03306988626718521, -0.06164483726024628, -0.013175208121538162, -9.594381117494777e-05, -0.030960017815232277, 0.005979870446026325, -0.02167201228439808, 0.004684136249125004, -0.0030128685757517815, 0.014677342027425766, -0.008869471959769726, -0.039399489760398865, 0.007321470882743597, 0.01662667654454708, -0.02389654703438282, 0.026075216010212898, 0.01433334220200777, -0.011460940353572369, -0.006639203988015652, -0.002117034513503313, -0.018759477883577347, 0.021156013011932373, 0.014849342405796051, -0.006902937311679125, 0.004406069405376911, -0.012074407190084457, 0.0016899009933695197, 0.05256323143839836, 0.016936276108026505, 0.03359735384583473, -0.05403096601366997, -0.021098678931593895, 0.0048016696237027645, -0.014218674972653389, -0.00904147233814001, 0.04802243039011955, -0.0003035085101146251, 0.036372289061546326, 0.03680802136659622, -0.018679210916161537, -0.015789609402418137, 0.01136347372084856, -0.01609920896589756, 0.0009675005567260087, 0.018048543483018875, -0.013874675147235394, -0.018174678087234497, -0.013278407976031303, -0.011810673400759697, 0.014448008500039577, -0.018369611352682114, 0.011254539713263512, 0.003623468801379204, 0.024263480678200722, -0.005956937093287706, 0.008364938199520111, -0.0027104350738227367, -0.019458945840597153, -0.023506680503487587, -0.016557876020669937, -0.026212815195322037, 0.0033310686703771353, -0.0015035675605759025, -0.005326269660145044, 0.008336272090673447, -0.013324274681508541, 0.027061348780989647, -0.028024550527334213, -0.02692374959588051, -0.02985921874642372, 0.022921880707144737, -0.030065618455410004, 0.013094941154122353, -0.0037840022705495358, 0.012728007510304451, -0.030799485743045807, 0.015812542289495468, -0.020754680037498474, 0.008559871464967728, 0.016718409955501556, -0.004535069223493338, -0.009763872250914574, 0.00962627213448286, -0.002230267971754074, -0.01306054089218378, -0.04302296042442322, -0.002102701226249337, -0.03878029063344002, 0.0467381626367569, -0.043000027537345886, -0.03811522200703621, -0.05490243434906006, -0.00771707110106945, -0.012395474128425121, -0.009075871668756008, 0.05082029849290848, -0.0036062689032405615, 0.01433334220200777, 0.017991211265325546, -0.03756482154130936, 0.005951203405857086, -0.014413608238101006, -0.010537873022258282, -0.003930202219635248, -0.0037811356596648693, 0.004354469478130341, -0.012636274099349976, -0.02678614854812622, 0.01585840992629528, -0.030960017815232277, 0.006902937311679125, 0.01959654502570629, -0.005796403624117374, -0.004004735965281725, 0.022256813943386078, -0.00039273357833735645, -0.004265602678060532, 0.032473620027303696, -0.02371308021247387, 0.01381734199821949, 0.023598413914442062, -0.0007127254502847791, -0.018977344036102295, -0.003210668684914708, 0.01838107779622078, 0.014470942318439484, -0.01986027881503105, 0.026510948315262794, -0.006673603784292936, 0.014505341649055481, -0.03678508847951889, 0.009729472920298576, 0.005621536634862423, -0.02848321758210659, -0.005624403245747089, -0.008995605632662773, 0.021362412720918655, -0.04368802532553673, 0.006461470387876034, -0.0062034702859818935, 0.01135200634598732, 0.017314676195383072, -0.02268107980489731, 0.008084004744887352, 0.026488015428185463, -0.012773874215781689, -0.028735483065247536, 0.0085942717269063, 0.0003837752446997911, -0.00527753634378314, 0.021580278873443604, 0.019963478669524193, -0.006415603682398796, -0.05150829628109932, 0.0010305673349648714, -0.024630414322018623, -0.002204468008130789, -0.031051751226186752, 0.034675221890211105, 0.0065073370933532715, 0.009718005545437336, 0.011501073837280273, -0.016775744035840034, -0.02387361414730549, -0.014367741532623768, -0.034973353147506714, -0.05710403248667717, -0.007143737748265266, 0.016993610188364983, -0.014436542056500912, 0.03763362392783165, -0.0008435171912424266, -0.03325335308909416, -0.006719470489770174, 0.020066678524017334, 0.010893340222537518, -0.012487207539379597, 0.005271803122013807, 0.0017701677279546857, 0.03848215565085411, -0.0029240017756819725, -0.01896587759256363, -0.011868007481098175, 0.01559467613697052, -0.054306164383888245, -0.001190384034998715, 0.015342408791184425, 0.007080670911818743, -0.002790701575577259, -0.008015205152332783, 0.044628292322158813, 0.0359136201441288, 0.061920035630464554, -0.03650989010930061, 0.038917891681194305, -0.012601873837411404, -0.0110997399315238, -0.03192321956157684, 0.001459134160540998, 0.032106686383485794, 0.05114136263728142, 0.028047483414411545, -0.03082241863012314, -0.02375894784927368, 0.026144016534090042, 0.013049074448645115, -0.017039475962519646, -0.023850681260228157, 0.011621473357081413, 0.042312026023864746, -0.02034187875688076, 0.00563013693317771, -0.011833607219159603, 0.005266069900244474, -0.002301934640854597, -0.004589536227285862, -0.003978935535997152, -0.0008213004912249744, 0.03192321956157684, -0.02026161178946495, 0.0035346022341400385, -0.0362805537879467, 0.014023741707205772, 0.00640413723886013, 0.05692056566476822, -0.016133610159158707, -0.007648271042853594, 0.011971207335591316, -0.03068481758236885, -0.028574950993061066, -0.015445609577000141, -0.0038786022923886776, 0.03850508853793144, -0.026006415486335754, -0.04384855926036835, -0.02745121717453003, 0.004724269732832909, 0.009259338490664959, -0.02800161764025688, 0.026854949072003365, -0.02286454662680626, 0.040156289935112, -0.02151148021221161, -0.0268090832978487, -0.019057611003518105, -0.009265072643756866, -0.011868007481098175, -0.020284544676542282, 0.00944280531257391, 0.004807402845472097, 0.00336833531036973, 0.005627269856631756, -0.05696643516421318, 0.02058267965912819, 0.00831333827227354, -0.03623468801379204, -0.012303740717470646, 0.0276117492467165, -0.02745121717453003, 0.02002081274986267, -0.01153547316789627, -0.0247221477329731, -0.00019708345644176006, 0.004532202612608671, 0.046554695814847946, 0.020146945491433144, 0.03614295646548271, -0.00745907099917531, -0.019378678873181343, 0.04488056153059006, -0.00296986848115921, -0.010400272905826569, -0.011002273298799992, -0.022451747208833694, 0.011569873429834843, 0.005266069900244474, -0.0005808586720377207, 0.0004636836238205433, -0.01280827447772026, 0.0030616018921136856, -0.0239194817841053, 0.018736544996500015, -0.008267471566796303, 0.019355744123458862, -0.0038786022923886776, -0.004383136052638292, -0.04861869663000107, -0.028850151225924492, -0.010537873022258282, 0.004549402743577957, -0.01187947392463684, -0.005764869973063469, -0.01808294467628002, 0.0029326018411666155, 0.005853736773133278, 0.021396812051534653, -0.020720278844237328, 0.04742616042494774, 0.0039560021832585335, 0.033987220376729965, -0.041280023753643036, -0.0014820675132796168, -0.009253605268895626, -0.034491755068302155, -0.016397343948483467, -0.013347207568585873, -0.02023867890238762, 0.0640757754445076, -0.0335744209587574, 0.017761876806616783, 0.011994140222668648, 0.03206082060933113, -0.015491476282477379, -0.023323213681578636, -0.0104232057929039, -0.005790669936686754, -0.019195212051272392, -0.04137175902724266, 0.03226722031831741, 0.025501882657408714, 0.04472002759575844, 0.011810673400759697, -0.01999787800014019, 0.010136539116501808, 0.007562271319329739, 0.013771475292742252, 0.017177077010273933, 0.020353345200419426, -0.015663476660847664, 0.004013335797935724, 0.019711211323738098, 0.026877881959080696, 0.013335741125047207, -0.01994054578244686, 0.02985921874642372, 0.0110997399315238, -0.021626146510243416, -0.003924468997865915, -0.03593655675649643, -0.0024252014700323343, -0.0069488040171563625, 0.019160810858011246, -0.05692056566476822, 0.027221882715821266, 0.00588813703507185, -0.01909201219677925, -0.024286415427923203, 0.0482058972120285, 0.004967936314642429, 0.027520015835762024, 0.00422260258346796, -0.0015279342187568545, 0.039582956582307816, -0.0060945372097194195, -0.01830081082880497, 0.017142677679657936, -0.00027878349646925926, -0.03561548888683319, -0.044490694999694824, -0.006214937195181847, 0.008359204977750778, -0.016821609809994698, -0.0053922031074762344, 0.01628267578780651, -0.012200540862977505, -0.03589068725705147, 0.0009130339021794498, -0.019241077825427055, 0.01381734199821949, 0.02169494703412056, 0.016271209344267845, 0.0014978342223912477, 0.054122697561979294, 0.015032809227705002, 0.010274139232933521, -0.008164271712303162, 0.0062034702859818935, -0.014975476078689098, -0.01499840896576643, -0.011288939975202084, -0.0032938020303845406, -0.04327522590756416, 0.039078421890735626, 0.03018028475344181, 0.02456161566078663, 0.023850681260228157, 0.03208375349640846, -0.0005758419865742326, -0.0005697503220289946, -0.023105347529053688, -0.028047483414411545, -0.0030042685102671385, -0.002760601695626974, 0.036188822239637375, -0.01194827351719141, 0.021729346364736557, 0.032313086092472076, -0.056874699890613556, 0.007275604177266359, -0.029446417465806007, 0.02591468207538128, -0.002397968200966716, -0.02829975076019764, 0.03878029063344002, -0.03116641938686371, -0.007206804119050503, 0.01662667654454708, 0.015170409344136715, 0.003362602088600397, 0.02246321365237236, -0.03368908539414406, 0.01654640957713127, 0.004853269550949335, 0.0018332344479858875, 0.03171681985259056, 0.006811203900724649, 0.03444588556885719, 0.04352749139070511, 7.368233491433784e-05, -0.031625084578990936, 0.0048016696237027645, 0.03680802136659622, -0.004804536234587431, 0.012785340659320354, -0.0420597568154335, -0.004506402648985386, 0.016408810392022133, -0.047380294650793076, -0.032313086092472076, -0.03258828446269035, 0.01089907344430685, -0.016133610159158707, 0.0030042685102671385, 0.004535069223493338, 0.03304695338010788, -0.007011870853602886, -0.004985136445611715, 0.0013609507586807013, 0.04962776228785515, -0.024469882249832153, 0.06169070303440094, 0.013771475292742252, 0.020387746393680573, -0.012556007131934166, 0.0023119680117815733, 0.015789609402418137, -0.00990720558911562, 0.03453762084245682, -0.02713014930486679, 0.0006862087175250053, -0.020640011876821518, 0.023403480648994446, -0.00673667062073946, -0.04355042427778244, 0.007229737471789122, -0.01646614260971546, -0.020227212458848953, -0.0051772031001746655, -0.025524815544486046, 0.053664032369852066, 0.01824347674846649, -0.030616018921136856, 0.014046675525605679, -0.03880322352051735, -0.021305078640580177, -0.03513388708233833, -0.010474806651473045, 0.009890005923807621, -0.021488545462489128, 0.04318349435925484, 0.001282834098674357, 0.0002320209750905633, -0.00818147137761116, 0.006421337369829416, -0.002670301590114832, -0.003505935426801443, 0.021889880299568176, 0.00010015422594733536, 0.001684167655184865, -0.010979339480400085, 0.0048905364237725735, 0.010016139596700668, 0.025456015020608902, 0.014081074856221676, -0.023827748373150826, 0.003055868437513709, -0.01840401068329811, 0.03476695343852043, -0.024309348315000534, -0.0033339352812618017, -0.012796808034181595, 0.0132210748270154, 0.01526214275509119, 0.03556962311267853, -0.005764869973063469, -0.01668401062488556, 0.021178945899009705, 0.0374501571059227, 0.006908670999109745, -0.02352961339056492, -0.01888561062514782, -0.016959210857748985, 0.024951482191681862, -0.00416526896879077, 0.02800161764025688, 0.014230141416192055, 0.026235749945044518, -0.0032995352521538734, 0.01803707703948021, 0.0011036673095077276, 0.0343770869076252, -0.008485338650643826, -0.031097618862986565, -0.012762407772243023, 0.03325335308909416, 0.024951482191681862, -0.025478947907686234, -0.01025120634585619, 0.018598943948745728, 0.008055337704718113, -0.021763745695352554, 0.010973606258630753, -0.040775492787361145, 0.02641921676695347, -0.04779309406876564, 0.013106407597661018, 0.01882827840745449, 0.013209608383476734, 0.03419362008571625, 0.00924213882535696, -0.005426603369414806, -0.021488545462489128, -0.017991211265325546, -0.0031246684957295656, 0.07407470792531967, 0.007814537733793259, -0.021396812051534653, 0.006186270155012608, -0.018071478232741356, 0.031946152448654175, 0.027841083705425262, 0.011587074026465416, 0.031602151691913605, 0.030226152390241623, -0.02020427957177162, -0.004337269347161055, 0.00527753634378314, 0.02591468207538128, -0.0279786828905344, -0.006123203784227371, 0.04994883015751839, 0.033964287489652634, -0.01365680806338787, 0.004004735965281725, 0.012441340833902359, -0.0008607172057963908, 0.015789609402418137, -0.0023306014481931925, -0.013909075409173965, -0.00919053889811039, 0.013278407976031303, 0.05426029860973358, -0.01063533965498209, -0.014058141969144344, 0.045316293835639954, 0.029629884287714958, 0.00132081750780344, 0.01176480669528246, 0.01414987538009882, -0.0132210748270154, -0.0033339352812618017, 0.0068054706789553165, -0.016752809286117554, 0.0185416117310524, -0.025364281609654427, -0.0062206704169511795, -0.01314080785959959, -0.002334901364520192, 0.0071265376172959805, 0.03900962322950363, -0.020490946248173714, -0.01607627607882023, 0.021041346713900566, -0.010520673356950283, -0.01628267578780651, 0.02559361606836319, 0.0008048171293921769, -0.018518676981329918, 0.024194682016968727, 0.007138004060834646, -0.029079483821988106, -0.04020215570926666, -0.024974415078759193, -0.012647740542888641, -0.006117470562458038, -0.006071603856980801, 0.013209608383476734, 0.008066805079579353, -0.02575414814054966, -0.021488545462489128, -0.019619477912783623, 0.003927335608750582, 0.03777122125029564, 0.018495744094252586, 0.03524855524301529, -0.00635253731161356, 0.009385472163558006, 0.022188013419508934, -0.010428939945995808, 0.016133610159158707, -0.04240375757217407, -0.000528900302015245, 0.019883211702108383, 0.0018146011279895902, -0.01492960937321186, -0.05306776612997055, 0.015021342784166336, 0.031143484637141228, 0.02731361612677574, -0.0026029348373413086, -0.012097341008484364, 0.014264541678130627, 0.03047841787338257, -0.0036464021541178226, 0.01045187283307314, -0.037197887897491455, 0.02278427965939045, -0.030753618106245995, 0.023621346801519394, 0.008663072250783443, 0.0013674008660018444, -0.006971737369894981, -0.01381734199821949, -0.021098678931593895, 0.008915338665246964, -0.02591468207538128, -0.0447658933699131, 0.04412376135587692, -0.033826686441898346, -0.0019321345025673509, -0.040248025208711624, 3.934950291295536e-05, 0.013209608383476734, 0.005701803602278233, -0.014620008878409863, -0.001228367444127798, -0.0005428753211162984, -0.016225343570113182, -0.021786680445075035, 0.0104232057929039, 0.026189882308244705, -0.007292804308235645, -0.007952137850224972, 0.02612108178436756, 0.0167872104793787, -0.005770603660494089, 0.03763362392783165, -0.017142677679657936, 0.027061348780989647, -0.0072698709554970264, -0.027405349537730217, 0.019160810858011246, 0.025456015020608902, -0.028162149712443352, -0.0017787676770240068, 0.022348547354340553, 0.004993736278265715, -0.0071265376172959805, 0.03997282311320305, -0.006828404031693935, 0.01551440916955471, 0.029446417465806007, 0.024974415078759193, -0.000766117125749588, 0.010417472571134567, 0.01056654006242752, -0.039422422647476196, -0.007115070708096027, -0.014356275089085102, 0.004314335994422436, -0.024171747267246246, -0.005246003158390522, 0.01864481158554554, 0.005036736372858286, -0.016695477068424225, 0.04916909709572792, -0.04222029075026512, 0.002628734800964594, 0.006042936816811562, -0.004107935819774866, -0.017842143774032593, -0.025387214496731758, 0.060452304780483246, -0.014493875205516815, -0.004196802619844675, 0.03612001985311508, 0.030914152041077614, 0.012131740339100361, 0.026671482250094414, -0.0034314021468162537, 0.0052488697692751884, -0.013954942114651203, -0.05256323143839836, 0.0027720683719962835, -0.041440557688474655, -0.046027228236198425, 0.029377616941928864, -0.0015666342806071043, 0.019504811614751816, -0.02135094627737999, 0.012556007131934166, 0.036693356931209564, -0.039743490517139435, -0.011524006724357605, -0.007883338257670403, 0.0030300684738904238, 0.011122673749923706, -0.014631475321948528, -0.0014003674732521176, -0.03419362008571625, -0.00833053793758154, -0.017142677679657936, 0.02898775041103363, -0.02352961339056492, -0.026396282017230988, -0.01814027689397335, 0.0171885434538126, -0.005094069521874189, 0.01848427765071392, 0.0023607013281434774, -0.006845604162663221, 0.017589876428246498, 0.04004162549972534, -0.005435203202068806, -0.03139575198292732, -0.0033024020958691835, 0.024515748023986816, 0.015846943482756615, -0.015468542464077473, -0.031074685975909233, 0.016374409198760986, 0.007682671304792166, 0.011741873808205128, 0.01846134476363659, 0.0024094348773360252, 0.0013889007968828082, 0.03151042014360428, -0.004457669332623482, 0.03068481758236885, -0.004798803012818098, 0.02238294668495655, 0.02800161764025688, 0.0006654253811575472, -0.051600031554698944, -0.03180855140089989, 0.03529442101716995, 0.03302402049303055, 0.004480602685362101, -0.010870406404137611, 0.009683606214821339, 0.012567474506795406, 0.010933472774922848, 0.03605122119188309, -0.018713612109422684, 0.005647336598485708, 0.00436306931078434, 0.011243073269724846, -0.006386937107890844, 0.005541270133107901, -0.0107156066223979, 0.02646508254110813, -0.01660374365746975, -0.0015623342478647828, -0.03249655291438103, 0.026396282017230988, 0.019424544647336006, -0.0276117492467165, 0.012785340659320354, -0.025868816301226616, 0.042128559201955795, -0.00957467220723629, -2.4495457182638347e-06, -0.01617947593331337, -0.021178945899009705, -0.02561654895544052, -0.013576541095972061, 0.00024044180463533849, -0.007052004337310791, 0.014161341823637486, -0.041945092380046844, -0.008095471188426018, -0.0066678705625236034, -0.0038528023287653923, -0.022853080183267593, -0.001980867935344577, -0.019401611760258675, 0.03355148807168007, 0.03444588556885719, -0.009804005734622478, 0.03981228917837143, 0.01593867689371109, 0.030638951808214188, 0.007843204773962498, 0.007241204380989075, -0.002068301197141409, -0.01151254028081894, -0.012567474506795406, -0.024332281202077866, -0.017177077010273933, 0.004956469871103764, 0.020169878378510475, 0.01991761103272438, -0.010509205982089043, 0.00509980320930481, 0.0029082351829856634, 0.005667403340339661, -0.010463339276611805, -0.015193342231214046, 0.0026488015428185463, 0.00161966762971133, -0.00217436789534986, 0.018656278029084206, -0.009431338869035244, -0.033115752041339874, -0.005956937093287706, 0.0035661354195326567, -0.003505935426801443, -0.011237340047955513, 0.0030702019575983286, 0.03997282311320305, 0.02375894784927368, -0.008519737981259823, 0.005220203194767237, -0.024148814380168915, 0.006123203784227371, -0.004824602976441383, 0.03121228516101837, 0.022153614088892937, 0.02124774642288685, -0.005125603172928095, 0.015537342987954617, 0.018851211294531822, 0.04022509232163429, -0.015846943482756615, -0.0017988344188779593, 0.01037160586565733, -0.015502942726016045, -0.022692546248435974, -0.011678807437419891, 0.028597883880138397, 0.00945427268743515, 0.007757204584777355, -0.006685070693492889, 0.0478389635682106, -0.012693607248365879, 0.005893870256841183, -0.01187947392463684, -0.017910944297909737, 0.08072537928819656, -0.02373601496219635, 0.037037353962659836, -0.0193098783493042, -0.028070416301488876, 0.03332215175032616, -0.00474720261991024, 0.01340454164892435, 0.017601344734430313, -0.016236810013651848, -0.046692293137311935, -0.013049074448645115, -0.031625084578990936, -0.015640541911125183, 0.026717349886894226, -0.010549339465796947, -0.034812819212675095, 0.011254539713263512, -0.00039846691652201116, 0.026900816708803177, 0.01339307427406311, -0.011994140222668648, 0.0164202768355608, 0.013714141212403774, -0.037060290575027466, 0.014677342027425766, 0.03343681991100311, 0.017463743686676025, 0.0005600753356702626, -0.006765337195247412, 0.018920011818408966, -0.009156138636171818, 0.017784811556339264, -0.030409617349505424, 0.03946829214692116, -0.012257874011993408, -0.02050241269171238, 0.022921880707144737, -0.005271803122013807, 0.04724269360303879, 0.00567600317299366, -0.057379234582185745, -0.01128320675343275, 0.007969338446855545, 0.012429874390363693, -0.02949228510260582, -0.004919202998280525, -0.03222135081887245, 0.024446947500109673, -0.008319071494042873, 0.03696855530142784, -0.021545879542827606, -0.0397893562912941, 0.003841335652396083, -0.015285075642168522, 0.015629075467586517, -0.008600004948675632, -0.02145414613187313, 0.009379738941788673, -0.013897608034312725, 0.004047735594213009, -0.03657868877053261, -0.012074407190084457, -0.006249336991459131, -0.024332281202077866], [0.013563829474151134, 0.038661375641822815, 0.004389282315969467, -0.002675677416846156, -0.033597249537706375, 0.013920772820711136, -0.041539229452610016, -0.026503009721636772, 0.016820933669805527, 0.030139366164803505, -0.037858255207538605, -0.013106497004628181, 0.006670370232313871, 0.05836016312241554, -0.034110356122255325, -0.0024637426249682903, 0.029046228155493736, 0.003873388050124049, -0.005250964779406786, -0.001996649196371436, -0.023848246783018112, 0.011266009882092476, -0.07357485592365265, 0.05180133879184723, -0.06848841905593872, -0.00691576860845089, 0.020301127806305885, -0.018549876287579536, 0.012269912287592888, -0.0012423285515978932, 0.1337643414735794, -0.02973780408501625, 0.003466250142082572, -0.013441130518913269, 0.021661972627043724, -0.0034411526285111904, 0.009001653641462326, -0.0050111436285078526, -0.002087279222905636, -0.036497410386800766, -0.06139417737722397, -0.018304478377103806, -0.002148628933355212, -0.038103654980659485, -0.0049804686568677425, 0.05715548247098923, -0.0012214139569550753, -0.015203536488115788, -0.016519762575626373, 0.03422189876437187, 0.0031539250630885363, -0.0039626238867640495, -0.02060229703783989, -0.0021709378343075514, 0.0020844906102865934, 0.014534268528223038, -0.019576087594032288, 0.03899601101875305, -0.020122654736042023, -0.011137733235955238, 0.02547679841518402, -0.015482397750020027, -0.02082538604736328, 0.005861671641469002, -0.0015699909999966621, 0.011701034381985664, -0.025945287197828293, 0.01597319357097149, -0.001811206340789795, 0.03056323528289795, 0.033597249537706375, -0.014010008424520493, -8.378920756513253e-05, -0.0060457200743258, -0.03716667741537094, 0.010462888516485691, 0.04165077209472656, -0.0052872165106236935, -0.01511430088430643, -0.04399321228265762, 0.0030591122340410948, 0.01911875419318676, 0.00035293426481075585, 0.03083094209432602, -0.02632453851401806, 0.032258715480566025, -0.0584493987262249, 0.005772436037659645, -0.013307277113199234, -0.06447280943393707, -0.06291118264198303, 0.046045634895563126, -0.016385909169912338, 0.011723343282938004, -0.01021749060600996, 0.0011949221370741725, 0.06857765465974808, -0.004464574623852968, -0.012526464648544788, 0.045867159962654114, -0.010853295214474201, 0.00815949123352766, -0.054523028433322906, 0.02393748238682747, 0.028533121570944786, -0.04490787908434868, -0.04381474107503891, 0.005415493156760931, 0.00424985121935606, -0.007406564895063639, 0.06032335013151169, -0.02971549518406391, 0.00561906211078167, 0.08307845890522003, -0.0184160228818655, -0.007757930550724268, -0.02527601830661297, 0.03696589916944504, 0.0017205763142555952, -0.009643035009503365, -0.01741212047636509, -0.019453387707471848, -0.01054654736071825, -0.052202899008989334, 0.007289443165063858, 0.0002457468071952462, -0.005379240959882736, -0.020133810117840767, -0.024852149188518524, 0.01406578067690134, 0.035738907754421234, -0.06076952815055847, 0.01794753409922123, -0.019933030009269714, -0.002939201658591628, 0.002074730582535267, 0.007395410444587469, -0.008655864745378494, 0.01989956572651863, -0.005022298078984022, 0.03482424095273018, 0.003650298807770014, 0.04693799093365669, -0.005889557767659426, -0.05073050782084465, -5.594661706709303e-05, 0.007992174476385117, -0.0008818999049253762, -0.009620726108551025, -0.03288336470723152, -0.0018864989979192615, -0.017356347292661667, 0.0241828802973032, -0.014378106221556664, 0.006095915101468563, -0.046357959508895874, 0.04452862590551376, 0.02813156135380268, 0.027685383334755898, 0.006397085729986429, -0.034645769745111465, 0.013351894915103912, -0.028332341462373734, -0.008973767049610615, 0.017624055966734886, -0.02574450522661209, -0.011148887686431408, -0.018014460802078247, -0.03328492492437363, -0.0438370481133461, -0.06572210788726807, 0.0036893393844366074, -0.012392611242830753, -0.05568309128284454, -0.03382033854722977, -0.01736750267446041, 0.05608465149998665, -0.003957046661525965, -0.021026168018579483, 0.021371955052018166, 0.014110398478806019, 0.055638473480939865, -0.029849348589777946, -0.06349121779203415, 0.010931376367807388, 0.03295028954744339, -0.017467893660068512, 0.007875052280724049, -0.04481864348053932, 0.008678173646330833, -0.003912428859621286, 0.031723298132419586, -0.012414920143783092, 0.020033419132232666, -0.0002764216042123735, -0.00916897039860487, -0.009118775837123394, -0.008678173646330833, 0.02732844091951847, -0.0027161124162375927, 0.02245393954217434, -0.037568237632513046, -0.022509710863232613, 0.0005190311931073666, -0.05238137021660805, 0.07339638471603394, -0.007161166984587908, 0.009458987042307854, 0.015259308740496635, 0.013753456063568592, 0.014322333969175816, 0.04310085251927376, 0.005013932008296251, 0.0029364130459725857, -0.005772436037659645, 0.013898463919758797, 0.04138306528329849, -0.016664771363139153, 0.026926878839731216, 0.012515310198068619, -0.019598396494984627, -0.030139366164803505, -0.004216387867927551, -0.018527567386627197, -0.039486806839704514, -0.006129378918558359, 0.017010560259222984, -0.003728379961103201, 0.024249807000160217, 0.024472897872328758, -0.00590628944337368, -0.012526464648544788, -0.05394299328327179, -0.027038423344492912, 0.020468443632125854, 0.002005015267059207, -0.017858298495411873, -0.007802548352628946, -0.023491304367780685, 0.059877168387174606, 0.004793631378561258, 0.028265414759516716, -0.0013197127263993025, -0.004350241273641586, 0.04747340455651283, -0.010652514174580574, -0.010970416478812695, 0.003494136268272996, 0.04756264016032219, -0.0002696243464015424, 0.018371405079960823, -0.02165081724524498, 0.032258715480566025, -0.035716596990823746, -0.012928025797009468, -0.03582814335823059, 0.04008914902806282, -0.0547461174428463, 0.02605683170258999, -0.03638586774468422, 0.0033993234392255545, 0.05291678383946419, -0.01967647671699524, -0.011779115535318851, -0.05541538447141647, -0.01447849627584219, 0.01315111480653286, 0.0022699336986988783, 0.013641911558806896, 0.007322906516492367, 0.0031845998018980026, 0.01154487207531929, 0.026391465216875076, -0.04787496477365494, -0.0594756081700325, -0.001696872990578413, 0.03475731238722801, -0.03029552847146988, -0.02549910731613636, 0.03861675783991814, -0.02708304114639759, -0.016620153561234474, 0.012359147891402245, -0.018929127603769302, -0.007127703167498112, -0.0017777428729459643, -0.0005273970891721547, 0.004129940643906593, -0.016162820160388947, -0.019274916499853134, 0.038371361792087555, 0.006179573945701122, -0.010613474063575268, -0.003237583674490452, 0.05385375767946243, -0.023424377664923668, -0.016185129061341286, 0.043145470321178436, -0.03562736138701439, -0.026748407632112503, -0.029804730787873268, 0.015995502471923828, -0.006592289078980684, -0.019085289910435677, 0.008377003483474255, -0.00023738096933811903, 0.045867159962654114, 0.06300041824579239, -0.041293829679489136, -0.018427176401019096, 0.010295571759343147, -0.006419394630938768, 0.004801997449249029, -0.08147221803665161, -0.023959791287779808, 0.034154973924160004, 0.001358753303065896, 0.03341877833008766, -6.919254519743845e-05, -0.007679849397391081, 0.03591737896203995, -0.01938646100461483, 0.027774618938565254, -0.03991067782044411, 0.014634658582508564, -0.025588342919945717, 0.024472897872328758, 0.04907964915037155, -0.028622359037399292, -0.0236697755753994, -0.03324030712246895, 0.011477944441139698, 0.02924700826406479, -0.014255406334996223, 0.004916330799460411, -0.043145470321178436, 0.03908524662256241, -0.004364184569567442, -0.004492460750043392, -0.02465136907994747, 0.010998303070664406, 0.009670921601355076, 0.018081387504935265, 0.06416048854589462, -0.01921914331614971, 0.030652470886707306, 0.007434451021254063, 0.04167308285832405, 0.04390397667884827, 0.032794129103422165, -0.05711086094379425, 0.004645834676921368, -0.0920020267367363, -0.016910169273614883, -0.02895699255168438, -0.015370853245258331, 0.030920177698135376, -0.051176685839891434, 0.02815387025475502, 0.03058554418385029, 0.00948687270283699, -0.012515310198068619, 0.017233649268746376, 0.037568237632513046, 0.02245393954217434, -0.003165079513564706, -0.00920801144093275, -0.003918006084859371, 0.025342945009469986, -0.0033770143054425716, 0.03502502292394638, -0.007941978983581066, 0.03665357455611229, -0.03763516619801521, -0.013496902771294117, 0.034645769745111465, -0.04957044497132301, -0.020736150443553925, 0.031500209122896194, -0.005685988813638687, 0.017077486962080002, 0.004966525826603174, 0.01636360026896, -0.007451182696968317, -0.0033045103773474693, 0.03692128136754036, -0.0409591980278492, -0.02918008156120777, 0.011745652183890343, 0.033864956349134445, -0.004233119543641806, 0.019196834415197372, 0.013664220459759235, 0.03266027569770813, -0.023513613268733025, -0.014422724023461342, 0.01699940487742424, 0.05760166049003601, -0.0056079076603055, -0.014500805176794529, -0.006625752430409193, -0.008081410080194473, 0.0005207741050980985, 0.0520690456032753, 0.009085312485694885, 0.01663130708038807, 0.06295580416917801, 0.023558231070637703, -0.029916275292634964, -0.01248184684664011, 0.010451734066009521, 0.026636863127350807, 0.003954257816076279, 0.01726711168885231, 0.005184037610888481, -0.018081387504935265, 0.06987157464027405, -0.03511425852775574, -0.024294424802064896, -0.0006260443478822708, 0.045264821499586105, -0.013719992712140083, -0.0009028145577758551, -0.03364186733961105, -0.005833785515278578, 0.02601221390068531, 0.02784154564142227, -0.05711086094379425, 0.012704935856163502, -0.07973212003707886, -0.03428882732987404, 0.045309439301490784, 0.037345148622989655, 0.024807531386613846, -0.01887335628271103, -0.027796927839517593, -0.042855456471443176, -0.03966527804732323, -0.04707184433937073, -0.005276062060147524, -0.026079140603542328, -0.0364304855465889, 0.04885656014084816, -0.0009760156972333789, -0.0331287607550621, -0.04086996242403984, -0.029693186283111572, 0.030607853084802628, 0.013173423707485199, -0.006252077873796225, -0.0007975442567840219, -0.008432775735855103, -0.0008860828238539398, 0.021974297240376472, 0.005390395410358906, -0.017914071679115295, 0.01540431659668684, -0.04011145606637001, 0.03448960557579994, 0.0321025513112545, 0.012783017009496689, 0.04196310043334961, 0.011210237629711628, -0.010903489775955677, -0.019107598811388016, -0.01658668927848339, 0.049258120357990265, -0.008092564530670643, 0.037835948169231415, -0.06924691796302795, -0.055103059858083725, -0.07156705111265182, 0.021249257028102875, -0.02340206876397133, 0.03288336470723152, -0.007534841541200876, 0.002889006631448865, 0.0007940584910102189, 0.0065309396013617516, -0.0024986001662909985, -0.0337534137070179, 0.08486317098140717, -0.014768511988222599, -0.05055203661322594, 0.0537199042737484, 0.039732206612825394, 0.05733395367860794, 0.0537199042737484, -0.06242038682103157, -0.01277186255902052, -0.03883984684944153, -0.04064687341451645, -0.009843816049396992, -0.009297247044742107, -0.03054092638194561, -0.06286656856536865, -0.04401551932096481, -0.03937526419758797, 0.03129943087697029, 0.01117677427828312, 0.03112095780670643, -0.019843794405460358, -0.02735074982047081, -0.050596654415130615, 0.05251522362232208, 0.003379802918061614, -0.0014709951356053352, -0.012626854702830315, -0.006525362376123667, 0.010619050823152065, 0.007858321070671082, -0.04720569774508476, 0.021305028349161148, -0.010730595327913761, -0.01602896675467491, -0.05653082951903343, -0.01663130708038807, 0.015248154290020466, -0.015861649066209793, -0.020769614726305008, 0.04441707953810692, 0.030473999679088593, 0.019576087594032288, 0.022766264155507088, -0.021717743948101997, -0.0002483611460775137, 0.011243700981140137, -0.0440378300845623, 0.04361395910382271, -0.006547671277076006, 0.01156718097627163, 0.01276070810854435, -0.0312771201133728, 0.029916275292634964, -0.0031539250630885363, 0.01315111480653286, -0.05505844205617905, 0.016675924882292747, 0.03506964072585106, -0.02630222961306572, 0.03310645371675491, -0.003240372287109494, -0.013307277113199234, 0.04254313185811043, 0.020769614726305008, 0.000809395918622613, 0.007345215417444706, -0.0015434991801157594, -0.03029552847146988, -0.010641359724104404, -0.010518660768866539, -0.01687670685350895, -0.03239256888628006, -0.03455653414130211, 0.007339638192206621, 0.024071335792541504, -0.021595044061541557, -0.028778521344065666, -0.012548773549497128, -0.0030563236214220524, -0.015571633353829384, -0.003165079513564706, -0.007484646048396826, -0.01882873848080635, -0.004910753574222326, 0.005362509284168482, 0.012693781405687332, 0.002459559589624405, 0.01749020256102085, -0.0014737837482243776, -0.021985450759530067, -0.03183484449982643, 0.032794129103422165, -0.07205784320831299, 0.000877019832842052, -0.02062460593879223, 0.05135515704751015, -0.01794753409922123, 0.02735074982047081, 0.018349096179008484, -0.010072481818497181, -0.00041654956294223666, 0.009916319511830807, 0.010697131976485252, -0.011678725481033325, 0.02815387025475502, -0.01568317785859108, -0.002796982182189822, -0.03714437037706375, -0.06344659626483917, 0.0012918264837935567, -0.023491304367780685, -0.01566086895763874, 0.0077969711273908615, 0.00507807033136487, 0.031767915934324265, 0.018014460802078247, 0.006832110229879618, -0.02028997242450714, 0.01862795650959015, 0.00849970243871212, -0.025432180613279343, -0.02072499692440033, -0.02162850834429264, -0.04410475492477417, -0.018326787278056145, -0.028845448046922684, -0.009871701709926128, -0.0120914401486516, 0.015080837532877922, 0.013117651455104351, 0.01339651271700859, -0.035984303802251816, -0.0473395511507988, -0.019665323197841644, -0.003268258413299918, -0.024495206773281097, -0.02308974415063858, -0.0057612815871834755, -0.027819236740469933, -0.0003743717388715595, -0.011790269985795021, 0.015013910830020905, -0.01673169806599617, -0.04064687341451645, 0.007055199239403009, -0.00014474662020802498, 0.0014514748472720385, 0.012582236900925636, -0.006268809549510479, -0.03337416052818298, -0.03500271216034889, -0.0008066073060035706, -0.009453409351408482, 0.010278839617967606, -0.009252629242837429, 0.007077508140355349, 0.0011628529755398631, -0.001961791655048728, -0.0030340144876390696, 0.0358058325946331, 0.0014347430551424623, 0.050864361226558685, -0.0473395511507988, 0.03645279258489609, -0.015917422249913216, -0.031232502311468124, 0.015292772091925144, 0.024785222485661507, -0.001911596511490643, 0.026770716533064842, 0.046625666320323944, -0.048187289386987686, -0.03058554418385029, 0.015170073136687279, -0.013206887058913708, -0.011790269985795021, -0.0022978198248893023, -0.02918008156120777, 0.030897868797183037, -0.000511362508405, -0.001747068134136498, 0.03424420952796936, 0.012716090306639671, -0.03591737896203995, -0.015750104561448097, 0.042855456471443176, 0.002289453987032175, 0.0076073454692959785, -0.02944778837263584, 0.006419394630938768, -0.020546525716781616, -0.029135463759303093, -0.034378062933683395, -0.00017454996122978628, -0.0025432182010263205, -0.01595088467001915, -0.004339086823165417, -0.018036769703030586, 0.02235354855656624, -0.007205784786492586, -0.023692084476351738, -0.015058528631925583, -0.007858321070671082, -0.02471829578280449, 0.016932478174567223, -0.014679276384413242, -0.016107048839330673, -0.022587792947888374, 0.007506955415010452, -0.008098142221570015, 0.005133842583745718, 0.027730001136660576, -0.024785222485661507, 0.002073336159810424, 0.015337389893829823, -0.0008247332880273461, 0.01155602652579546, -0.006982695311307907, 0.0236697755753994, -0.01924145221710205, 0.00989958830177784, -0.028310032561421394, -0.04760725796222687, 0.0027077465783804655, -0.015259308740496635, 0.02523140050470829, -0.015995502471923828, 0.027038423344492912, 0.006659215781837702, -0.008940303698182106, 0.007367524318397045, -0.04122690483927727, -0.008761832490563393, -0.012013358995318413, 0.014679276384413242, 0.0012067736824974418, -0.040513020008802414, 0.018917974084615707, 0.0013336557894945145, -0.030697088688611984, 0.0022434417624026537, -0.03979913145303726, 0.01709979586303234, 0.020646914839744568, 0.005471265409141779, -0.003943103365600109, -0.00041306379716843367, 0.0064417035318911076, 0.004838249180465937, 0.0102397995069623, -0.002110982546582818, 0.004832671955227852, 0.02313436195254326, -0.02218623086810112, -0.010769636370241642, 0.01953146979212761, 0.022030068561434746, 0.024896766990423203, -0.04649181291460991, 0.016274364665150642, -0.02062460593879223, 0.03344108536839485, -0.02630222961306572, -0.0008728369139134884, 0.0201672725379467, -0.0312771201133728, 0.05126592144370079, -0.004272160120308399, -0.006040142849087715, -0.026369156315922737, 0.005652525462210178, 0.021249257028102875, -0.0037200141232460737, -0.02793078124523163, 0.008137182332575321, -0.014545422978699207, 0.04832114279270172, 0.005624639336019754, -0.011578335426747799, 0.013206887058913708, 0.004300046246498823, 0.004074168391525745, -0.01008363626897335, 0.009782466106116772, 0.0027272668667137623, 0.018962591886520386, 0.012716090306639671, 0.0032208517659455538, -0.013865000568330288, -0.04283314570784569, -0.00949802715331316, -0.024294424802064896, 0.0120914401486516, -0.0025264862924814224, -0.028845448046922684, -0.039754513651132584, 0.004286103416234255, -0.0061739967204630375, -0.03984374925494194, -0.017523664981126785, 0.016385909169912338, 0.003892908338457346, 0.04800881817936897, 0.01982148550450802, -0.042877763509750366, 0.007941978983581066, 0.024294424802064896, -0.011890660040080547, -0.023714393377304077, 0.00041898959898389876, -0.003195754252374172, 0.01081425417214632, -0.012381456792354584, -0.035694289952516556, -0.018717192113399506, 0.04675951972603798, -0.048231907188892365, -0.03696589916944504, 0.012426074594259262, 0.028600050136446953, 0.01339651271700859, -0.015571633353829384, 0.034177280962467194, 0.01955377869307995, 0.04805343598127365, -0.027730001136660576, 0.029023919254541397, 0.0013706049649044871, -0.004707184620201588, -0.01047404296696186, -0.0009355807560496032, 0.02732844091951847, 0.05465688183903694, -0.02520909160375595, 0.009704384952783585, -0.01731172949075699, -0.034110356122255325, 0.01953146979212761, -0.014400415122509003, 0.01907413639128208, 0.021706590428948402, 0.012247603386640549, -0.00443947734311223, -0.004330721218138933, -0.0067484513856470585, -0.03299490734934807, 0.024606751278042793, -0.024093644693493843, 0.004656989127397537, -0.012671472504734993, 0.03167868033051491, -0.018917974084615707, -0.0019854947458952665, -0.05180133879184723, -0.012671472504734993, -0.0006312730256468058, 0.0068376874551177025, 0.013909618370234966, 0.020836541429162025, 0.03029552847146988, -0.0033825915306806564, -0.025610651820898056, -0.013485748320817947, -0.03326261416077614, 0.05081974342465401, -0.059074047952890396, 0.006006679497659206, -0.008471816778182983, 0.045064039528369904, -0.012392611242830753, -0.024606751278042793, 0.03776901960372925, -0.008482971228659153, 0.022074686363339424, -0.011249278672039509, -0.008789719082415104, -0.025186782702803612, 0.01814831607043743, -0.009598417207598686, 0.007612922694534063, 0.03431113436818123, -0.018817583099007607, 0.002589230192825198, 0.0031483478378504515, -0.08914648741483688, 0.011600644327700138, 0.014768511988222599, -0.02998320385813713, 0.0007079599890857935, 0.05684315413236618, 0.0036335671320557594, 0.026703789830207825, -0.014511959627270699, -0.031745608896017075, 0.00411042058840394, 0.002525092102587223, 0.038639068603515625, 0.041829247027635574, 0.030161675065755844, -0.027417676523327827, 0.02286665327847004, 0.0500166229903698, -0.014322333969175816, 0.0031762339640408754, -0.02764076553285122, -0.02074730582535267, 0.030139366164803505, 0.0025418237783014774, -0.012325684539973736, 0.01911875419318676, -0.006625752430409193, 0.02793078124523163, 0.002986608073115349, 0.01014498621225357, -0.015437779948115349, -0.012704935856163502, 0.005153363104909658, 0.0034132665023207664, 0.010881180875003338, -0.0015839340630918741, 0.017523664981126785, -0.01144448108971119, -0.0010303937597200274, -0.0004033036530017853, -0.03301721811294556, -0.013229195959866047, -0.003957046661525965, -0.01663130708038807, -0.016129357740283012, 0.04227542504668236, 0.004194078966975212, -0.005610696040093899, -0.02189621515572071, 0.01245953794568777, -0.014422724023461342, -0.032481804490089417, -0.013307277113199234, -0.00637477682903409, -0.022665873169898987, 0.03984374925494194, -0.001675958395935595, -0.016553226858377457, 0.0048466152511537075, 0.04109305143356323, -0.017769062891602516, 0.012303375639021397, -0.026212994009256363, -0.0019520313944667578, -0.03796980157494545, -0.026882261037826538, 0.06451743096113205, -0.022632410749793053, -0.006519785150885582, 0.038125962018966675, -0.032236404716968536, 0.023223597556352615, 0.021171174943447113, 0.009302823804318905, 0.0009725299314595759, 0.024896766990423203, -0.00540712708607316, -0.010635782964527607, 0.002389844274148345, 0.015750104561448097, 0.025454489514231682, -0.037300530821084976, 0.005828208290040493, 0.03399880975484848, 0.007735621649771929, 0.0216061994433403, -0.052425988018512726, -0.008020061068236828, -0.008126027882099152, -0.0006682222010567784, -0.04372550547122955, 0.04169538989663124, 0.015248154290020466, 0.0027704902458935976, -0.0024637426249682903, -0.016675924882292747, 0.011901814490556717, 0.019910721108317375, -0.026123758405447006, 0.03319568932056427, 0.017958689481019974, 0.007551573216915131, -0.004333509597927332, 0.005485208239406347, 0.01122696977108717, 0.006698256358504295, -0.053273726254701614, 0.0563969761133194, -0.006938077509403229, -0.013608448207378387, 0.02947009727358818, -0.002131897257640958, -0.029403170570731163, -0.02708304114639759, -0.02055767923593521, -0.01848294958472252, 0.03049630858004093, 0.007456759922206402, -0.0008156702970154583, 0.013742301613092422, 0.06001102551817894, 0.011756806634366512, -0.014779666438698769, -0.01989956572651863, 0.008862222544848919, 3.3659471228020266e-06, 0.01928607001900673, 0.013117651455104351, -0.0011586700566112995, 0.0004949793801642954, 0.028042325749993324, 0.025900669395923615, 0.049258120357990265, 0.013742301613092422, -0.0013719992712140083, 0.02235354855656624, 0.01115446537733078, -0.036742810159921646, -0.002989396685734391, 0.015727795660495758, -0.002083096420392394, 0.03408804535865784, 0.004746225196868181, 0.0043446640484035015, -0.015560478903353214, -0.013597293756902218, 0.012046822346746922, 0.008404890075325966, 0.022119304165244102, -0.005027875304222107, -0.0201672725379467, 0.010563278570771217, 0.009308401495218277, -0.035761214792728424, -0.014779666438698769, 0.0005036938237026334, 0.008304499089717865, 0.016307828947901726, -0.01156718097627163, 0.025052929297089577, 0.010607896372675896, -0.007730044424533844, 0.018527567386627197, -0.019709940999746323, 0.047384168952703476, 0.03770209476351738, -0.0078192800283432, 0.0003091878315899521, -0.00022814367548562586, 0.028778521344065666, 0.015382007695734501, 0.01677631586790085, -0.021126557141542435, -0.0268599521368742, 0.050328947603702545, -0.040468402206897736, -0.006787491962313652, -0.017456738278269768, 0.011171197518706322, -0.01578356884419918, -0.03607353940606117, -0.008471816778182983, 0.029113154858350754, 0.009280514903366566, 0.0042135994881391525, -0.0035415426827967167, 0.011634107679128647, -0.013184578157961369, 0.05438917502760887, 0.008600092492997646, 0.004227542318403721, -0.01590626686811447, 0.009916319511830807, 0.012359147891402245, -0.01979917660355568, 0.012626854702830315, -0.03448960557579994, -0.0018349095480516553, -0.02101501263678074, -0.006419394630938768, -0.0029559333343058825, -0.05148901045322418, -0.006397085729986429, -0.029090845957398415, -0.030897868797183037, -0.01673169806599617, -0.019988801330327988, 0.022710490971803665, 0.009676498360931873, 0.023491304367780685, -0.008114873431622982, -0.026703789830207825, -0.025186782702803612, -0.007010581437498331, -0.006848841905593872, 0.02494138479232788, -0.017590591683983803, 0.030384764075279236, 0.018661420792341232, 0.0356050543487072, -0.0024372506886720657, -0.00019764318130910397, 0.026659172028303146, 0.01848294958472252, 0.004428322892636061, 0.0012423285515978932, -0.0074400282464921474, -0.012838789261877537, 0.029358552768826485, -0.01123812422156334, 0.013742301613092422, 0.02578912489116192, -0.007696581073105335, 0.04225311428308487, -0.014679276384413242, -0.003772997995838523, -0.004841038025915623, -0.012861098162829876, -0.02947009727358818, 0.008036792278289795, 0.010195181705057621, -0.0025989904534071684, 0.025900669395923615, -0.01276070810854435, 0.0005730606499128044, 0.030630161985754967, -0.00230479147285223, 0.013296122662723064, -0.006475167348980904, -0.024026717990636826, 0.018449485301971436, -0.0030256486497819424, 0.01617397554218769, -0.0020998280961066484, 0.03136635571718216, -0.03585045039653778, -0.018505258485674858, 0.005574443843215704, 0.03694358840584755, 0.011979895643889904, 0.005677622742950916, -0.022130459547042847, 0.03301721811294556, 0.03105403110384941, -0.042610056698322296, 0.004604005720466375, 0.009821507148444653, -0.016542071476578712, 0.0023424376267939806, 0.02340206876397133, -0.019352996721863747, 0.01143332663923502, -0.03750131279230118, -0.0164639912545681, 0.013329586014151573, 0.04196310043334961, 0.0071332803927361965, -0.00858336128294468, -0.019709940999746323, -0.03328492492437363, -0.013653066009283066, -0.02187390625476837, 0.06063567474484444, 0.012649163603782654, -0.0510428324341774, -0.005928598344326019, -0.009358596056699753, 0.00949802715331316, 0.03616277500987053, 0.006313427351415157, -0.0023494092747569084, 0.003982143942266703, 0.002366140950471163, 0.025432180613279343, 0.023535922169685364, 0.003912428859621286, 0.024495206773281097, -0.012849943712353706, 0.030050130560994148, 0.007155589759349823, -0.012638009153306484, -0.015236999839544296, 0.017222493886947632, -0.037322841584682465, 0.007718889974057674, -0.022777417674660683, 0.0043167779222130775, -0.02165081724524498, 0.011477944441139698, 0.017646364867687225, 0.008588938042521477, -0.006073606200516224, 0.023959791287779808, 0.006224191747605801, -0.014355797320604324, -0.01289456244558096, 0.02313436195254326, -0.01247069239616394, -0.02549910731613636, -0.008973767049610615, -0.030697088688611984, 0.0510428324341774, -0.03631893917918205, -0.02652531862258911, 0.0011419383808970451, 0.005733394995331764, 0.0223312396556139, -0.0027997707948088646, -0.034891169518232346, -0.003658664645627141, 0.04057994484901428, -0.0012737005017697811, -0.009018384851515293, -0.02177351713180542, 0.010016709566116333, -0.0018753445474430919, 0.010490775108337402, 0.011622953228652477, 0.004684875253587961, -0.014500805176794529, -0.01380922831594944, -0.024115953594446182, -0.023424377664923668, -0.007780239451676607, 0.0036056810058653355, 0.007066353689879179, -0.008042369969189167, -0.0003618229820858687, -0.01895143650472164, -0.013496902771294117, 0.026659172028303146, -0.025432180613279343, 0.03134404867887497, -0.024562133476138115, -0.011187928728759289, 0.028332341462373734, 0.009458987042307854, 0.01897374540567398, -0.04751802235841751, -0.001774954260326922, -0.005811476614326239, -0.0004953279858455062, -0.013965390622615814, -0.03370879590511322, 0.03058554418385029, 0.004336298443377018, 0.028354650363326073, 0.0011998021509498358, -0.022364703938364983, 0.010273262858390808, 0.013273813761770725, -0.022955888882279396, 0.021572735160589218, -0.010295571759343147, 0.0236697755753994, -0.037858255207538605, -0.004888444673269987, 0.012147212401032448, -0.025164473801851273, -0.0027021693531423807, 0.011477944441139698, -0.024093644693493843, 0.009955360554158688, -0.02712765894830227, -0.021104248240590096, 0.03912986442446709, -0.047919582575559616, 0.021684281527996063, -0.042877763509750366, 0.006993849761784077, -0.02625761181116104, -0.005794744938611984, -0.0025362465530633926, -0.019877256825566292, -0.008756255730986595, 0.003823193022981286, -0.013686529360711575, 0.0068655735813081264, 0.02815387025475502, -0.007205784786492586, -0.01924145221710205, 0.01592857576906681, 0.029804730787873268, -0.004863346926867962, 0.030451690778136253, -0.006090337876230478, 0.002810925245285034, -0.012426074594259262, -0.026436083018779755, -0.009698807261884212, -0.0076631177216768265, -0.016765162348747253, -0.00312325032427907, -0.01143332663923502, 0.004643046297132969, 0.011701034381985664, -0.007272711489349604, -0.02471829578280449, 0.016642462462186813, 0.03029552847146988, 0.019854947924613953, 0.011656416580080986, 0.01882873848080635, 0.012671472504734993, -0.001194224925711751, -0.012671472504734993, 0.001109172124415636, 0.007875052280724049, -0.018371405079960823, -0.016307828947901726, -0.0060847606509923935, 0.0208923127502203, -0.029269317165017128, 0.0331287607550621, -0.017445584759116173, 0.0107529042288661, 0.012883407063782215, 0.009202433750033379, -0.01249300129711628, 0.0019339054124429822, 0.06746220588684082, 0.016497453674674034, 0.0027481813449412584, 0.018717192113399506, 0.05626312270760536, -0.018772965297102928, 0.005228655878454447, 0.024361351504921913, 0.006804224103689194, -0.001337838708423078, -0.014980446547269821, 0.008784141391515732, -0.0321025513112545, -0.013708838261663914, -0.003443941241130233, -0.014166170731186867, -0.0004022578941658139, -0.021561581641435623, 0.012303375639021397, 0.06871150434017181, -0.0493919737637043, -0.03138866648077965, 0.027551529929041862, 0.0183156318962574, 0.023178979754447937, -0.02133849263191223, -0.016798624768853188, -0.021784670650959015, -0.001918568043038249, -0.00460958294570446, 0.013530366122722626, -0.018081387504935265, -0.019051827490329742, -0.010278839617967606, 0.015370853245258331, -0.011589489877223969, 0.003061900846660137, -0.017233649268746376, 0.00018509440997149795, 0.019520314410328865, 0.03638586774468422, -0.005133842583745718, -0.035471200942993164, -0.01782483607530594, 0.014121552929282188, -0.009955360554158688, -0.017189031466841698, -0.007456759922206402, -0.0002485354198142886, 0.005599541589617729, 0.005086436402052641, 0.003081421134993434, -0.03587276116013527, 0.02732844091951847, 0.003201331477612257, -0.021204639226198196, 0.026123758405447006, -0.008248726837337017, 0.02393748238682747, 0.01930837891995907, 0.010646937415003777, 0.0036614532582461834, -0.012883407063782215, 0.035225801169872284, 0.027707692235708237, 0.003544331295415759, -0.004085322842001915, 0.028265414759516716, -0.01909644529223442, 0.0030200714245438576, 0.03908524662256241, -0.02389286458492279, 0.04640257731080055, 0.024093644693493843, -0.024339042603969574, 0.0006971540860831738, 0.031991004943847656, -0.020780768245458603, 0.022364703938364983, 0.019207989796996117, -0.0060457200743258, 7.015113078523427e-05, 0.019007209688425064, -0.002958721946924925, 0.001279277727007866, 0.047651875764131546, -0.01087560411542654, 0.019129907712340355, -0.017110949382185936, 0.0015016698744148016, -0.023268215358257294, -0.00014160943101160228, -0.011756806634366512, -0.012649163603782654, -0.004129940643906593, -0.02041267231106758, 0.04267698526382446, -0.03551581874489784, -0.013452284969389439, 0.01022864505648613, -0.00039493778604082763, -0.021003859117627144, -0.019843794405460358, -0.020736150443553925, 0.006542094051837921, 0.05126592144370079, -0.02218623086810112, 0.03502502292394638, -0.015493552200496197, 0.016921324655413628, -0.02708304114639759, -0.024584442377090454, -0.0012109566014260054, -0.01856102980673313, -0.004350241273641586, -0.023535922169685364, -0.038059037178754807, -0.0029196813702583313, 0.021450037136673927, -0.008862222544848919, 0.03112095780670643, 0.009520336054265499, 0.0007121429080143571, -0.02101501263678074, 0.004860558081418276, 0.014578886330127716, 0.012604545801877975, -0.023535922169685364, 0.00703289033845067, 0.007724467199295759, 0.003535965457558632, -0.04296699911355972, 0.0063636223785579205, -0.030964795500040054, 0.03181253373622894, 0.0029224699828773737, 0.011689879931509495, 0.033842649310827255, 0.020936932414770126, 0.009799198247492313, 0.007110971491783857, -0.009313978254795074, -0.013117651455104351, -0.0035471199080348015, 0.052202899008989334, 0.039999913424253464, -0.00991074275225401, -0.0003309739113319665, -0.004196867812424898, 0.01408808957785368, 0.024896766990423203, 0.011355245485901833, 0.0016327349003404379, -0.025655269622802734, 0.0006748451269231737, -0.02732844091951847, 0.004336298443377018, 0.026369156315922737, 0.014946983195841312, -0.009369750507175922, 0.0034132665023207664, 0.033864956349134445, -0.003443941241130233, 0.002568315714597702, 0.009336287155747414, -0.016954787075519562, 0.08495240658521652, 0.01206913124769926, 0.05416608229279518, 0.0060847606509923935, -0.04452862590551376, 0.0005110139609314501, -0.014021162874996662, -0.018103696405887604, 0.010613474063575268, -0.014801975339651108, -0.046313341706991196, -0.0025083604268729687, -0.010362498462200165, -0.005329045932739973, 0.01041269302368164, -0.01650860905647278, -0.03770209476351738, -0.008259881287813187, 0.00035345711512491107, 0.007016158662736416, 0.008873376995325089, -0.0018781331600621343, 0.01977686770260334, -0.008895685896277428, -0.03796980157494545, 0.03299490734934807, 0.03179022669792175, 0.022007759660482407, 0.009564953856170177, 0.020011110231280327, 0.02389286458492279, -0.021974297240376472, 0.0236697755753994, -0.0281984880566597, 0.009542644955217838, -0.022342395037412643, -0.004520346876233816, 0.01247069239616394, 0.009626303799450397, 0.03288336470723152, 0.013842691667377949, -0.06308965384960175, -0.0015253731980919838, -0.019955338910222054, -0.010289994068443775, 0.013597293756902218, -0.008025637827813625, -0.01911875419318676, 0.012046822346746922, -0.023491304367780685, 0.028376959264278412, -0.04254313185811043, -0.03214716911315918, -0.022119304165244102, -0.013307277113199234, -0.015839340165257454, -0.003179022576659918, -0.021003859117627144, 0.014601195231080055, -0.04113766923546791, 0.02467367798089981, -0.018126007169485092, 0.001797263277694583, -0.0009655583999119699, 0.006179573945701122], [0.032481227070093155, 0.04995373263955116, 0.03383743762969971, 0.006023832596838474, -0.058000579476356506, 0.00568760558962822, -0.029633186757564545, -0.024050123989582062, 0.0387876033782959, -0.0013131219893693924, -0.017664635553956032, -0.01097399927675724, 0.017766350880265236, 0.03270726278424263, -0.02857082337141037, -0.016376234591007233, -0.004613939207047224, -0.042584992945194244, -0.01801498979330063, 0.027056388556957245, 0.005854306276887655, 0.041206181049346924, -0.03923967480659485, 0.03324974700808525, -0.03334015980362892, 0.018241023644804955, 0.025564556941390038, 0.0062555186450481415, 0.01739339344203472, -0.033385369926691055, 0.02488645352423191, -0.033294953405857086, -0.0059164660051465034, 0.01648925244808197, 0.012251096777617931, -0.04023423045873642, 0.027983132749795914, -0.017879368737339973, 0.01618410460650921, -0.019619837403297424, -0.002609291346743703, -0.037815652787685394, 0.0017644856125116348, -0.026152249425649643, -0.06193358823657036, 0.08087532222270966, -0.006526760291308165, -0.04814545437693596, 0.015268663875758648, -0.005715860053896904, 0.012081569992005825, 0.03153188154101372, -0.0388554148375988, 0.01616150140762329, 0.013019615784287453, 0.025428935885429382, -0.01754031516611576, 0.025609765201807022, -0.034583352506160736, -0.028706444427371025, 0.039556123316287994, -0.005512428469955921, -0.02563236840069294, -0.003983866889029741, -0.007538266945630312, 0.002703943522647023, -0.007340486627072096, -0.033927854150533676, -0.011007904075086117, 0.016873512417078018, 0.05099349468946457, -0.017461203038692474, 0.007295279297977686, -0.021247290074825287, 0.009956841357052326, -0.011448672041296959, 0.004006470087915659, -0.02902289293706417, -0.0077021424658596516, -0.01781155727803707, -0.01359600480645895, 0.02784751169383526, -0.0039527867920696735, 0.029361946508288383, -0.027440648525953293, 0.03261684998869896, -0.038086894899606705, -0.009391753934323788, -0.003348143305629492, -0.034470334649086, -0.06785570830106735, 0.03216477856040001, -0.001908582984469831, 0.034673769026994705, -0.025202902033925056, 0.02362065762281418, 0.04678924381732941, 0.028774254024028778, 0.0002940220874734223, 0.064058318734169, -0.003223824081942439, 0.005071660038083792, -0.030243482440710068, 0.03851636126637459, 0.05221408233046532, -0.03693411871790886, -0.04086712747812271, 0.04199730232357979, -0.023485036566853523, -0.03349838778376579, 0.05253053084015846, -0.03291069343686104, 0.005803448613733053, 0.05008935555815697, -0.053615499287843704, 0.012725770473480225, -0.01414979062974453, 0.020071906968951225, 0.027531061321496964, 0.00909790862351656, -0.003379223169758916, -0.019054749980568886, 0.026152249425649643, -0.03589435666799545, 0.04805503785610199, -0.00975906103849411, 0.02089693583548069, 0.0011471275938674808, -0.03695672005414963, -0.019981494173407555, 0.07129143923521042, -0.055152539163827896, 0.0125336404889822, -0.04455149546265602, -0.01497481856495142, 0.020783917978405952, -0.005859957076609135, -0.010137669742107391, -0.040821921080350876, 0.0064759026281535625, 0.02793792448937893, 0.0061368499882519245, 0.021394211798906326, -0.024547399953007698, -0.04995373263955116, -0.024479590356349945, -0.008312436752021313, 0.015596414916217327, 0.043489132076501846, -0.007922526448965073, 0.011900742538273335, 0.01607108861207962, -0.015313871204853058, 0.0319613479077816, -0.0046195900067687035, -0.013810737989842892, 0.04918521270155907, 0.020829124376177788, -2.1223891963018104e-05, 0.028231769800186157, -0.021710660308599472, 0.015506000258028507, -0.046427588909864426, -0.047738589346408844, 0.024660417810082436, -0.03261684998869896, -0.0002843096444848925, 0.005803448613733053, -0.003856722032651305, -0.024547399953007698, -0.025406332686543465, -0.009945539757609367, -0.024931659922003746, -0.004676098935306072, -0.057277265936136246, -0.017619427293539047, 0.054429225623607635, 0.028344787657260895, -0.01194594893604517, 0.01382203958928585, 0.0011337067699059844, 0.039284881204366684, -0.03930748626589775, -0.007899923250079155, 0.025745386257767677, 0.030559930950403214, -0.02728242427110672, -0.031938742846250534, -0.07210516184568405, -0.029972240328788757, 0.03383743762969971, 0.021292496472597122, -0.01043151505291462, 0.05144556611776352, -0.01768723875284195, -0.025835799053311348, -0.028706444427371025, -0.024841245263814926, 0.04678924381732941, -0.01808279938995838, 0.02572278305888176, -0.031938742846250534, -0.022354861721396446, -0.004695876967161894, -0.06631866842508316, -0.012171984650194645, 0.04687965661287308, 0.04337611421942711, 0.05316343158483505, 0.017935875803232193, 0.05479088053107262, 0.017913272604346275, -0.019631139934062958, -0.0051535977981984615, 0.03944310545921326, -0.010471071116626263, 0.05845265090465546, -0.0032040460500866175, 0.01924687996506691, 0.01277097687125206, -0.031554486602544785, -0.01065754983574152, -0.006899718195199966, 0.03849375993013382, -0.026242662221193314, 0.004359649959951639, 0.014793990179896355, 0.02644609473645687, 0.04229114577174187, 0.020139718428254128, -0.040550678968429565, 0.005142296198755503, 0.010923140682280064, -0.010996602475643158, 0.03589435666799545, -0.00833503995090723, -0.006187708117067814, -0.022287050262093544, -0.008967937901616096, 0.02164285071194172, 0.014262808486819267, -0.018354041501879692, -0.021608944982290268, 0.023010361939668655, -0.0173029787838459, -0.032458625733852386, 0.00540506187826395, -0.0014494493370875716, 0.04007600247859955, -0.0020329023245722055, 0.02086303010582924, -0.004161869175732136, 0.010132018476724625, -0.06491725146770477, 0.024004915729165077, -0.0045433035120368, 0.01133000385016203, -0.01053888164460659, 0.041861679404973984, -0.011216986924409866, -0.0009493469842709601, 0.06193358823657036, -0.032458625733852386, -0.023134682327508926, -0.03291069343686104, 0.023089474067091942, 0.03184833005070686, -0.001307471189647913, 0.01951812207698822, 0.0015370378969237208, -0.032752469182014465, -0.014341920614242554, 0.041025351732969284, -0.054881297051906586, -0.04511658474802971, 0.01547209545969963, 0.05275656655430794, -0.017427297309041023, -0.034312110394239426, -0.022953853011131287, -0.002654498443007469, -0.0052016302943229675, 0.05302780866622925, -0.04936604201793671, -0.029994843527674675, -0.034470334649086, 0.01589025929570198, 0.039013639092445374, 0.016172803938388824, -0.014850499108433723, 0.07364220172166824, 0.009662996046245098, 0.048823557794094086, 0.009555629454553127, 0.018636584281921387, -0.03589435666799545, 0.06238565966486931, 0.009527374990284443, -0.06342542171478271, -0.05668957531452179, -0.004995373543351889, 0.02518029883503914, 0.05723205953836441, -0.040641091763973236, -0.01915646530687809, 0.02024143375456333, 0.043037064373493195, 0.005978625733405352, -0.04550084471702576, 0.01042021345347166, 0.010228083468973637, 0.036527253687381744, -0.02389189787209034, -0.050586629658937454, -0.026943370699882507, 0.018003687262535095, -0.012081569992005825, -0.003865198465064168, 0.03408607840538025, 0.004370951559394598, 0.04104795306921005, -0.036436840891838074, 0.05162639170885086, -0.05008935555815697, 0.0013583290856331587, -0.043150078505277634, 0.041115764528512955, 0.0475577637553215, -0.007103149779140949, -0.011183081194758415, -0.05144556611776352, 0.010516278445720673, 0.03225519508123398, 0.015460793860256672, -0.0020258387085050344, -0.036256011575460434, 0.010403260588645935, 0.021665453910827637, -0.04538782685995102, -0.03607518598437309, 0.04608853533864021, 0.015969371423125267, 0.016737891361117363, 0.05867868289351463, -0.03749920427799225, 0.027237216010689735, -0.031057208776474, -0.026852957904338837, -0.01951812207698822, 0.04859752207994461, -0.008125958032906055, 0.013675116933882236, -0.07201474905014038, -0.03241341933608055, -0.02015101909637451, -0.07870538532733917, 0.04159043729305267, 0.013562100008130074, -0.013935057446360588, 0.010832726955413818, -0.04362475499510765, 0.00021897139959037304, 0.0194277074187994, 0.027440648525953293, 0.06193358823657036, -0.00560001702979207, -0.013584703207015991, -0.009001843631267548, -0.0005834528128616512, -0.047467347234487534, 0.037815652787685394, 0.0034074776340276003, -0.01790197193622589, -0.03187093511223793, -0.018986938521265984, 0.04385078698396683, -0.01026763953268528, -0.012386717833578587, 0.03415388613939285, -0.006509807892143726, 0.04292404651641846, -0.009889030829071999, 0.02692076750099659, -0.02107776328921318, 0.0045433035120368, 0.06866943091154099, -0.04914000630378723, -0.03322714567184448, -0.006651079747825861, 0.011250891722738743, 2.843096444848925e-05, -0.002202428411692381, 0.035510096698999405, 0.03645944595336914, -0.06532411277294159, 0.01969894953072071, -0.027960529550909996, 0.0543840192258358, -0.018580077216029167, 0.0007593362824991345, -0.014997421763837337, 0.005854306276887655, -0.011143525131046772, 0.019710252061486244, 0.0216202475130558, 0.011216986924409866, 0.02766668237745762, 0.033385369926691055, -0.007849065586924553, -0.002323922235518694, 0.024208348244428635, 0.009064002893865108, 0.018625283613801003, 0.04398640990257263, 0.028435202315449715, -0.014274110086262226, 0.05298260226845741, -0.04073150455951691, -0.06193358823657036, -0.02884206548333168, 0.010747963562607765, -0.03987257182598114, 0.014963516965508461, 0.003110806690528989, 0.011120921932160854, 0.007866017520427704, 0.018693093210458755, -0.004927563015371561, 0.022795628756284714, -0.036052580922842026, -0.0032520785462111235, 0.022795628756284714, 0.03424430266022682, 0.04292404651641846, -0.03383743762969971, 0.03184833005070686, -0.005568936932832003, -0.016240613535046577, -0.04977290704846382, 0.042494580149650574, 0.017246469855308533, -0.021688057109713554, -0.031102415174245834, 0.011629500426352024, 0.0013526781694963574, -0.050767458975315094, -0.016805700957775116, 0.025293314829468727, 0.001689611584879458, -0.015189551748335361, -0.0009140290203504264, -0.003958437591791153, 0.021902790293097496, 0.002373367315158248, -0.0025683226995170116, -0.0198458731174469, -0.00960648711770773, -0.015958070755004883, -0.018749602138996124, 0.026152249425649643, 0.032187383621931076, 0.039465710520744324, 0.0061368499882519245, -0.0039753904566168785, -0.0038991037290543318, -0.020275339484214783, 0.033385369926691055, -0.0050575328059494495, 0.03505802899599075, -0.06799132376909256, 0.0013774007093161345, -0.06107465550303459, -0.0013985915575176477, -0.02470562420785427, 0.03241341933608055, -0.03905884549021721, 0.07020647078752518, -0.0336340069770813, 0.0011803264496847987, 0.02508988417685032, 0.003500716993585229, 0.06853380799293518, -0.016195407137274742, -0.030356500297784805, -0.000369425950339064, 0.043782979249954224, 0.034583352506160736, 0.05393194779753685, -0.013720324262976646, 0.009425659663975239, -0.012635355815291405, -0.022467877715826035, -0.014217601157724857, -0.009572582319378853, 0.019868476316332817, -0.020410960540175438, -0.051038701087236404, -0.0021007126197218895, 0.033860042691230774, 0.008012940175831318, 0.04195209592580795, -0.02353024296462536, -0.008877524174749851, -0.04941124841570854, 0.007018386386334896, 0.007080546114593744, 0.010510627180337906, 0.02062569372355938, 0.016500554978847504, -0.01116612832993269, 0.01969894953072071, -0.03361140191555023, 0.00849891547113657, -0.014760085381567478, -0.038267724215984344, -0.05849785730242729, -0.011369559913873672, 0.051219530403614044, -0.038629379123449326, -0.007493060082197189, 0.029452359303832054, -0.017314281314611435, -0.004941690247505903, 0.024366572499275208, -0.005956022068858147, -0.014036772772669792, 0.03318193554878235, -0.042110320180654526, 0.04043766111135483, -0.011674707755446434, -0.024954263120889664, -0.01783416047692299, -0.03243602067232132, 0.019506819546222687, 0.014511446468532085, 0.010256337933242321, -0.023010361939668655, 0.011081365868449211, 0.0033848739694803953, -0.018421851098537445, 0.023937106132507324, -0.0015412761131301522, -0.025383729487657547, -0.006515458691865206, 0.006684985011816025, 0.017981084063649178, 0.019224276766180992, -0.011697310954332352, -0.00018259389617014676, -0.03876500204205513, -0.006865812931209803, -0.06324458867311478, -0.03797387704253197, -0.03148667514324188, 0.011448672041296959, 0.056825198233127594, -0.002695467323064804, -0.04647279530763626, 0.007114451378583908, 0.0035770037211477757, 0.001722104148939252, -0.02194799855351448, -0.0048851813189685345, 0.006651079747825861, -0.006628476083278656, 0.0002168523205909878, -0.021541135385632515, -0.017076943069696426, -0.022117523476481438, 0.000528003612998873, -0.022140126675367355, -0.039917778223752975, 0.033656612038612366, -0.011674707755446434, 0.03489980474114418, 0.017235167324543, 0.04032464325428009, -0.02710159495472908, 0.02452479675412178, 0.027960529550909996, 0.015551207587122917, 0.0518072210252285, 0.026604318991303444, 0.001746120280586183, -0.014760085381567478, -0.020184924826025963, -0.02107776328921318, -0.0167830977588892, -0.03851636126637459, -0.028141357004642487, 0.013709022663533688, -0.010781869292259216, 0.012691864743828773, -0.01790197193622589, -0.014895706437528133, 0.057910166680812836, 0.03410867974162102, 0.032842885702848434, -0.0123076057061553, 0.026061834767460823, 0.034967612475156784, -0.020230131223797798, 0.004975595511496067, -0.004806069191545248, 0.0194277074187994, -0.009555629454553127, 0.0040714554488658905, -0.012126777321100235, 0.020343149080872536, 0.007504361681640148, 0.02134900540113449, 0.02848040871322155, -0.021156875416636467, -0.001152778510004282, -0.00987772922962904, -0.012126777321100235, 0.006786700803786516, -0.02113427221775055, -0.01978936418890953, 0.02026403695344925, -0.03060513734817505, -0.016466649249196053, -0.0008942509302869439, -0.006792351603507996, -0.029520170763134956, 0.003695672145113349, -0.019653743132948875, -0.028548220172524452, 0.021235987544059753, -0.011878139339387417, -0.014635765925049782, -0.025248108431696892, 0.012454528361558914, -0.039375293999910355, 0.007300930097699165, 0.03575873747467995, -0.020309243351221085, -0.012511037290096283, -0.008210721425712109, -0.019179068505764008, 0.049275629222393036, 0.015031327493488789, 0.00842545460909605, -0.032933298498392105, 0.030085258185863495, -0.010685804300010204, -0.0005456625949591398, -0.0024482414592057467, 0.051852427423000336, -0.009521723724901676, 0.022558292374014854, 0.056463539600372314, -0.05614709109067917, -0.04701527953147888, -0.002104950835928321, 0.005368330981582403, 0.0006763390847481787, 0.021631548181176186, 0.001023514661937952, 0.04061848670244217, 0.0007600426906719804, -0.003062774194404483, 0.026694731786847115, -0.001590721309185028, -0.007250072434544563, -0.016500554978847504, 0.04981811344623566, 0.022580895572900772, 0.0028706444427371025, -0.011544737033545971, -0.00666238134726882, -0.03087637946009636, -0.018726998940110207, -0.030989397317171097, -0.009623439982533455, -0.026129644364118576, -0.015053930692374706, 0.030017446726560593, -0.012002457864582539, 0.024050123989582062, 0.0271920096129179, -0.026988578960299492, -0.02563236840069294, 0.005859957076609135, -0.014567955397069454, 0.008323738351464272, -0.0026446094270795584, 0.011686009354889393, -0.03777044638991356, 0.024931659922003746, -0.0023352240677922964, 0.013449082151055336, 0.02644609473645687, 0.0033424925059080124, 0.002288604388013482, 0.03731837868690491, -0.015833750367164612, -0.027214612811803818, -0.013562100008130074, 0.024863848462700844, 0.014059376902878284, 0.029723601415753365, -0.03535187244415283, -0.01960853487253189, -0.030266085639595985, -0.015619018115103245, 0.0016175629571080208, -0.018851319327950478, 0.033927854150533676, 0.022761723026633263, 0.018806111067533493, 0.011923345737159252, -0.007368740625679493, -0.01705433987081051, -0.028977686539292336, -0.009386102668941021, 0.023665864020586014, -0.0016189756570383906, -0.0028056593146175146, 0.009516073390841484, -0.0379512757062912, 0.039917778223752975, -0.011465624906122684, 0.006792351603507996, 0.0009684186661615968, -0.021755868569016457, -0.051400355994701385, 0.022671310231089592, -0.010736661963164806, 0.015573810786008835, 0.024004915729165077, -0.02203841134905815, -0.008866222575306892, 0.0094878189265728, -0.003150362754240632, 0.010900537483394146, -0.008730601519346237, 0.0019537899643182755, 0.016794400289654732, -0.025700177997350693, 0.01414979062974453, -0.015517301857471466, 0.007566521409898996, -0.014048074372112751, -0.0082163717597723, 0.028435202315449715, -0.016172803938388824, 0.022942552343010902, -0.02904549613595009, 0.013652513734996319, -0.06491725146770477, 0.006199009716510773, -0.005311822518706322, -0.02488645352423191, 0.035419683903455734, -0.024592606350779533, -0.0023945581633597612, 0.04195209592580795, -0.009013145230710506, -0.012149380519986153, -0.027531061321496964, -0.012454528361558914, -0.009634741581976414, -0.009047050960361958, 0.03738618642091751, -0.005125343333929777, -0.01497481856495142, 0.007979035377502441, -0.00396408885717392, 0.029610583558678627, -0.03252643719315529, -0.015008723363280296, 0.015991976484656334, 0.029452359303832054, 0.037702638655900955, 0.01663617603480816, -0.009883380495011806, -0.008956636302173138, 0.009329594671726227, -0.04473232477903366, 0.020275339484214783, 0.00473825866356492, -0.0021656977478414774, 0.046698831021785736, 0.029542773962020874, -0.008945334702730179, 0.006199009716510773, 0.04660841450095177, 0.002056918339803815, 0.012002457864582539, -0.016681382432579994, -0.02497686631977558, 0.010188527405261993, -0.020942142233252525, -0.0013194793136790395, -0.04959207773208618, 0.022207938134670258, -0.05750330165028572, -0.032571643590927124, 0.051671598106622696, 0.023665864020586014, 0.0267399400472641, 0.0006403147708624601, 0.05280177295207977, 0.04556865617632866, 0.06640908122062683, -0.040460262447595596, 0.0015158471651375294, 0.02472822740674019, -0.037340980023145676, -0.03645944595336914, -0.0008723537903279066, 0.012002457864582539, 0.03207436576485634, -0.018071496859192848, 0.016952624544501305, -0.006295074708759785, -0.002143094316124916, 0.02227574773132801, -0.010957046411931515, 0.03747660294175148, 0.010849679820239544, -0.005068834871053696, -0.008453709073364735, 0.017574220895767212, -0.015619018115103245, -0.013449082151055336, 0.004783465526998043, 0.0001448919647373259, -0.02515769563615322, 0.038991037756204605, 0.017110848799347878, -0.007617379073053598, 0.015912864357233047, -0.03840334713459015, 0.0475577637553215, -0.012963106855750084, 0.028276978060603142, 0.01567552611231804, 0.0009401643183082342, 0.014861800707876682, -0.01645534671843052, -0.003687195712700486, -0.043669961392879486, -0.028977686539292336, 0.016500554978847504, -0.05732247605919838, -0.016647476702928543, -0.02866123802959919, 0.007679538801312447, -0.005577413365244865, -0.019032146781682968, 0.028525616973638535, -0.015867656096816063, 0.0509030818939209, 0.00909790862351656, -0.020377054810523987, -0.029700998216867447, 0.0216202475130558, 0.017438599839806557, 0.0014551002532243729, 0.025135090574622154, 0.0018082798924297094, 0.02182367816567421, 0.00909790862351656, -0.07445592433214188, 0.0002226797805633396, 0.008465010672807693, -0.029000289738178253, -0.0025753863155841827, 0.039352692663669586, -0.0071653095073997974, 0.022852137684822083, -3.1868946734903147e-06, -0.05338946357369423, 0.011358258314430714, 0.001250256085768342, 0.02263740450143814, -0.012612752616405487, 0.014183695428073406, -0.026785146445035934, 0.03399566188454628, 0.03178051859140396, -0.007233119569718838, 0.010261988267302513, -0.0335661955177784, -0.03797387704253197, 0.01772114261984825, 0.013584703207015991, 0.00815421249717474, 0.01621801033616066, -0.019619837403297424, 0.010957046411931515, 0.002362065715715289, -0.008114656433463097, -0.006182056851685047, -0.0036278616171330214, -0.006690635811537504, 0.009521723724901676, 0.009815569967031479, -0.049546871334314346, 0.04728652164340019, -0.023078173398971558, -0.021575039252638817, 0.012273699976503849, -0.007899923250079155, -0.020071906968951225, 0.0017489457968622446, 0.019834570586681366, -0.03388264402747154, -0.01654576137661934, 0.022886043414473534, -0.01739339344203472, -0.02784751169383526, 0.012725770473480225, -0.031735312193632126, -0.020614391192793846, -0.002802833914756775, -0.016206709668040276, 0.010697105899453163, 0.022411368787288666, 0.008747554384171963, -0.016771797090768814, 0.005263790022581816, 0.027892718091607094, -0.01259014941751957, -0.005950371269136667, 0.03361140191555023, -0.021721962839365005, -0.0052920444868505, -0.03372441977262497, 0.0680365338921547, -0.021032556891441345, 0.008284182287752628, 0.014172393828630447, -0.016387537121772766, -0.016206709668040276, -0.012454528361558914, -0.003393350401893258, -0.017822859808802605, 0.017913272604346275, -0.05714164674282074, -0.005218582693487406, -0.026965973898768425, 0.010324148461222649, 0.011279146187007427, -0.009804267436265945, 0.005843004677444696, 0.013709022663533688, 0.014409731142222881, 0.014115884900093079, -0.020580485463142395, 0.031125018373131752, -0.0005590834189206362, -0.00022762430307921022, -0.05017976835370064, 0.02140551432967186, 0.019834570586681366, 0.01127349492162466, -0.031667500734329224, -0.008611933328211308, 0.02599402330815792, 0.016862209886312485, -0.00721051637083292, 0.01326825376600027, 0.016195407137274742, 0.023869294673204422, -0.0035204950254410505, -0.01181032881140709, 0.019823268055915833, -0.006046436261385679, -0.03641423583030701, 0.04244937002658844, 0.011109620332717896, -0.02913591079413891, 0.014285411685705185, 0.025044677779078484, -0.03591696172952652, -0.006764097139239311, 0.016150200739502907, -0.03639163449406624, 0.026061834767460823, 0.009787315502762794, -0.02737283706665039, -0.03157708793878555, 0.02802833914756775, 0.009968142956495285, -0.004178822040557861, -0.01309872791171074, -0.005139470566064119, 0.012296303175389767, 0.0007522727246396244, -0.005289218854159117, 0.01777765154838562, -0.01955202780663967, 0.03919446840882301, 0.021654153242707253, -0.0007501536165364087, 0.048552315682172775, 0.004653495270758867, 0.015788543969392776, -0.01834273897111416, -0.016862209886312485, 0.009809918701648712, -0.007781254593282938, -0.00229284237138927, 0.02728242427110672, -0.014081980101764202, 0.003198395250365138, -0.004650670103728771, -0.02416313998401165, 0.006419393699616194, 0.002792944898828864, 0.010646248236298561, -0.009035748429596424, -0.034854594618082047, 0.035035423934459686, -0.00748740928247571, 0.00028466281946748495, 0.009408706799149513, 0.030085258185863495, 0.01735948771238327, 0.025926213711500168, -0.011409115977585316, 0.007464805617928505, 0.005430490709841251, 0.004613939207047224, 0.014432334341108799, -0.011267844587564468, 0.01919037103652954, 0.016930021345615387, -0.016297122463583946, -0.007967733778059483, 0.004006470087915659, 0.03566832095384598, 0.032842885702848434, 0.01645534671843052, -0.026152249425649643, -0.0198458731174469, 0.014714878052473068, -0.04728652164340019, -0.02563236840069294, -0.02044486440718174, 0.01843315362930298, 0.0075326161459088326, -0.02200450748205185, -0.004294665064662695, -0.0028621680103242397, 0.009804267436265945, 0.0045715575106441975, 0.016444046050310135, 0.018625283613801003, -0.0038991037290543318, 0.03591696172952652, 0.02884206548333168, 0.007012735586613417, 0.006956227123737335, -0.00693362345919013, -0.010798822157084942, -0.015302568674087524, 0.02305557020008564, -0.0060633886605501175, -0.025587162002921104, -0.006289423909038305, 0.015754638239741325, 0.0168509092181921, -0.030379103496670723, 0.010555834509432316, -0.018263626843690872, -0.025948816910386086, 0.005162074230611324, -0.019359897822141647, 0.037996482104063034, 0.005707383621484041, 0.006481553427875042, -0.021665453910827637, -0.00439072959125042, -0.017495108768343925, -0.0396917462348938, -0.01756291836500168, -0.00721051637083292, -0.026694731786847115, 0.06374187022447586, 0.03731837868690491, -0.03797387704253197, -0.01654576137661934, 0.006487204227596521, 0.00833503995090723, 0.031125018373131752, 0.0246152114123106, -0.007012735586613417, 0.03483199328184128, -0.00830678641796112, 0.025406332686543465, -0.005713034421205521, -0.0005184677429497242, 0.01592416502535343, -0.01410458330065012, 0.01125654298812151, -0.008787110447883606, 0.04502617195248604, -0.01999279484152794, -0.010403260588645935, -0.001583657693117857, 0.017235167324543, -0.0023083824198693037, 0.01939380168914795, 0.013505591079592705, -0.0009239180362783372, 0.00521010672673583, 0.02185758389532566, 0.013064822182059288, -0.032458625733852386, -0.013776833191514015, -0.013132632710039616, 0.020738709717988968, -0.024185745045542717, 0.03318193554878235, -0.0099398884922266, -0.028073545545339584, -0.009973794221878052, -0.020580485463142395, 0.005667827557772398, -0.003958437591791153, -0.00583170261234045, -0.020343149080872536, -0.005571762565523386, 0.00027971831150352955, 0.0116634052246809, -0.017766350880265236, 0.0014437985373660922, 0.014172393828630447, -0.003452684497460723, 0.007962082512676716, 0.015664225444197655, -0.018930431455373764, -0.002573973499238491, -0.05045101046562195, -0.026513904333114624, -0.007538266945630312, 0.038177311420440674, 0.039013639092445374, 0.007493060082197189, -0.006713239476084709, -0.013110029511153698, -0.04116097092628479, -0.0015059581492096186, 0.06148151680827141, 0.011313050985336304, 0.0048851813189685345, 0.012364113703370094, -0.00024916825350373983, 0.01630842499434948, 0.021145572885870934, 0.02920372039079666, 0.004772163927555084, -0.011397814378142357, 0.001980631612241268, -0.015053930692374706, 0.0202979426831007, 0.010437165386974812, -0.02671733684837818, 0.0028494535945355892, 0.02254698984324932, 0.015585112385451794, -0.006814955268055201, 0.021168177947402, 0.032209984958171844, 0.008323738351464272, 0.009436961263418198, -0.04005340114235878, -0.016172803938388824, -0.0362786166369915, 0.02472822740674019, 0.021247290074825287, 0.005393759813159704, 0.012386717833578587, 0.006362885236740112, 0.02739544026553631, -0.006323328707367182, -0.006871463730931282, -0.003622210817411542, -0.014059376902878284, -0.016410140320658684, -0.025745386257767677, 0.0033990012016147375, 0.028525616973638535, -0.0011979854898527265, -0.009679948911070824, -0.024637814611196518, -0.014285411685705185, 0.009719504974782467, 0.01115482673048973, -0.051671598106622696, -0.04977290704846382, 0.05081266537308693, 0.011629500426352024, 0.025564556941390038, -0.015189551748335361, 0.0013110029976814985, -0.018455756828188896, 0.013562100008130074, 0.04448368772864342, 0.003630687016993761, -0.003037345129996538, -0.008188117295503616, 0.0017574221128597856, -0.02635568007826805, -0.012420622631907463, 0.00162462645675987, 0.015099137090146542, -0.018184514716267586, 0.021394211798906326, 0.010623645037412643, -0.017969781532883644, 0.0071201021783053875, -0.02920372039079666, 0.020218830555677414, -0.014635765925049782, 0.005269440822303295, 0.01567552611231804, 0.020218830555677414, 0.016602270305156708, -0.05040580406785011, -0.024637814611196518, 0.015664225444197655, 0.007753000129014254, -0.004054502584040165, -0.02940715290606022, 0.01895303465425968, 0.015494698658585548, -0.018026290461421013, 0.019179068505764008, -0.0062103113159537315, -0.010290242731571198, -0.011674707755446434, -0.003916056361049414, 0.01792457513511181, -0.01520085334777832, -0.0050321039743721485, -0.005859957076609135, 0.008374596945941448, 0.007103149779140949, -0.0148844039067626, 0.003161664353683591, 0.030266085639595985, 0.01004160474985838, 0.012273699976503849, -0.01277097687125206, -0.03268466144800186, 0.01772114261984825, -0.03727316856384277, 0.019981494173407555, -0.018354041501879692, -0.005549158900976181, 0.013211745768785477, 0.009617788717150688, 0.001039054594002664, -0.02035445161163807, 0.006515458691865206, 0.0014070678735151887, -0.014081980101764202, -0.0167830977588892, 0.018387947231531143, -0.009889030829071999, -0.00587690994143486, 0.006673682946711779, 0.024479590356349945, -0.004684575367718935, 0.018274929374456406, -0.02305557020008564, -0.02527071163058281, 0.005308996886014938, -0.029090704396367073, 0.02002670057117939, 0.029610583558678627, -0.03139626234769821, 0.006798002403229475, 0.0017842637607827783, 0.025700177997350693, 0.00505188200622797, -0.002154395915567875, 0.00045348270214162767, -0.0004156924842391163, 0.02626526542007923, 0.013754229061305523, -0.0035063677933067083, 0.02176716923713684, -0.0168509092181921, -0.022535689175128937, -0.03978215903043747, 0.015788543969392776, -0.017822859808802605, -0.0046930513344705105, -0.012804882600903511, -0.008724951185286045, 0.0047636874951422215, -0.015539905987679958, 0.03415388613939285, -0.052575740963220596, 0.013381271623075008, -0.0094878189265728, 0.00576389255002141, -0.00568195478990674, -0.04602072387933731, 0.009335245005786419, 0.012251096777617931, -0.009013145230710506, -0.003037345129996538, 0.03923967480659485, 0.0015327997971326113, 0.02838999591767788, 0.002630482194945216, 0.0011167541379109025, 0.005458745174109936, -0.007645633537322283, -0.015268663875758648, -0.03033389523625374, -0.012827485799789429, -0.006289423909038305, 0.009103558957576752, 0.026333076879382133, -0.011409115977585316, 0.0271920096129179, 0.012511037290096283, -0.03731837868690491, 0.0008970763883553445, 0.008764507248997688, 0.00748740928247571, 0.01515564601868391, -0.0074365511536598206, -0.008594980463385582, 0.025519350543618202, -0.02434396930038929, 0.00036977912532165647, 0.060306135565042496, -0.021688057109713554, -0.029610583558678627, 0.00893403310328722, 0.03768003359436989, 0.025248108431696892, 0.007747349329292774, -0.018489662557840347, -0.002069632988423109, 0.030808569863438606, 0.013223047368228436, -0.017472505569458008, -0.04457410052418709, 0.008883175440132618, 0.0020752837881445885, 0.011878139339387417, -0.012443226762115955, -0.032390814274549484, -0.012850088998675346, -0.008210721425712109, 0.003517669625580311, -0.021089063957333565, -0.027350233867764473, -0.024570003151893616, -0.0027901194989681244, 0.024027518928050995, 0.01576594077050686, 0.02416313998401165, 0.041477419435977936, -0.004526350647211075, 0.006035134196281433, -0.009934238158166409, -0.03573613241314888, 0.03465116396546364, 0.0327298678457737, -0.007413947954773903, -0.02940715290606022, 0.04086712747812271, -0.025835799053311348, 0.016263218596577644, 0.0017574221128597856, 0.004769338294863701, 0.030175670981407166, -0.006453298963606358, -0.009600836783647537, 0.0011252304539084435, 0.003266205545514822, -0.023846691474318504, 0.009148766286671162, -0.02664952538907528, -0.01115482673048973, 0.025677574798464775, 0.012895296327769756, -0.018455756828188896, -0.02006060630083084, 0.021089063957333565, -0.012646657414734364, -0.0026926419232040644, 0.0006611523567698896, -0.01383334118872881, -0.018907826393842697, -0.02902289293706417, 0.005778019316494465, -0.03896843269467354, -0.0016232137568295002, -0.03499021753668785, 0.029181117191910744, -0.03033389523625374, 0.006651079747825861, -0.01249973475933075, 0.011855535209178925, -0.024547399953007698, -0.005097088869661093, -0.030153067782521248, 0.02323639765381813, 0.045071378350257874, 0.0030797268263995647, -0.0025061629712581635, -0.0067075882107019424, 0.04904959350824356, 0.013008314184844494, -0.008804063312709332, 0.010273290798068047, -0.0025400682352483273, -0.02407272718846798, -0.0011139287380501628, -0.03058253414928913, 0.004704353399574757, 0.005557635333389044, -0.027237216010689735, 0.007187912706285715, 0.0074591548182070255, -0.011912044137716293, 0.01781155727803707, -0.01003030315041542, 0.04095754027366638, -0.028616029769182205, -0.007894271984696388, 0.02940715290606022, -0.00030320475343614817, 0.019032146781682968, -0.04608853533864021, -0.015279965475201607, -0.006605872884392738, 0.008594980463385582, -0.0020484421402215958, -0.0022222064435482025, 0.02637828327715397, -0.0031475373543798923, -0.00152714888099581, 0.02617485262453556, -0.04337611421942711, -0.019823268055915833, 0.0077982074581086636, 0.048733144998550415, 0.01777765154838562, 0.008255927823483944, -0.023349415510892868, -0.0005982863949611783, 0.0035204950254410505, 0.0293845497071743, -0.01645534671843052, 0.01382203958928585, -0.013076124712824821, -0.01070275716483593, -0.043421320617198944, -0.0267399400472641, 0.04986331984400749, 0.010239385068416595, 0.005984276533126831, 0.00869669672101736, 0.05004414916038513, 0.022196635603904724, -0.004481143783777952, 0.01410458330065012, 0.0045715575106441975, 0.10533230751752853, 0.005181852262467146, 0.030514724552631378, -0.013177840039134026, -0.020817823708057404, 0.005142296198755503, 0.0027463252190500498, -0.00638548843562603, 0.01999279484152794, -0.014228902757167816, -0.0029949636664241552, -0.030085258185863495, -0.04622415453195572, -0.026016628369688988, 0.019495518878102303, -0.025926213711500168, -0.016104992479085922, -0.017619427293539047, 0.016297122463583946, 0.0297688078135252, 0.007419598754495382, 0.009968142956495285, 0.04473232477903366, -6.0261281760176644e-05, -0.05564981698989868, -0.0005912227788940072, 0.001348439953289926, 0.02820916660130024, 0.003393350401893258, 0.00905270129442215, 0.025428935885429382, -0.006560665555298328, -0.01326825376600027, -0.014093281701207161, 0.006521109491586685, -0.015031327493488789, 0.004399206023663282, 0.013765530660748482, 0.011776423081755638, 0.03749920427799225, 0.005752590484917164, -0.03790606930851936, 0.03912665694952011, 0.006261169444769621, 0.01717866025865078, 0.007317882962524891, -0.014873102307319641, -0.016410140320658684, -0.017472505569458008, -0.038900621235370636, 0.032300401479005814, -0.0271920096129179, -0.03139626234769821, -0.008996192365884781, -0.02664952538907528, -0.012002457864582539, 0.001494656433351338, 0.010391958989202976, 0.015506000258028507, -0.038267724215984344, -0.00038673175731673837, -0.01975545845925808, 0.0066454289481043816, -0.01131870225071907, 0.0035826547536998987], [0.019837994128465652, 0.02940691076219082, -0.015182514674961567, -0.004597133025527, -0.029677148908376694, 0.015587873756885529, -0.016779381781816483, 0.016288038343191147, 0.042796019464731216, -0.0002504700387362391, -0.05331077426671982, 0.0011961143463850021, 0.039970796555280685, 0.020808398723602295, -0.014985977672040462, 0.014101559296250343, 0.0340501070022583, 0.02169281616806984, -0.0662822425365448, -0.0042501213029026985, 0.006326047703623772, 0.05134539678692818, -0.03748951107263565, 0.02948061190545559, -0.01572299189865589, -0.01221602875739336, 0.03220756724476814, -0.021410293877124786, 0.09423968940973282, 0.000595754012465477, 0.06431686878204346, -0.035769809037446976, 0.006977078039199114, -0.0014794046292081475, 0.0008452644106000662, 0.01370848435908556, 0.006356756668537855, -0.03751407936215401, 0.03201103210449219, 0.033337656408548355, -0.014408648945391178, -0.007855354808270931, 0.0032397962640970945, -0.02498481795191765, -0.07876236736774445, 0.07095000147819519, -0.006983219645917416, -0.013143438845872879, -0.04618629068136215, 0.02650798298418522, 0.020046815276145935, 0.023179130628705025, 0.01695135235786438, -0.01149129681289196, 0.02084524929523468, 0.011509722098708153, -0.04097805172204971, -0.011614132672548294, 0.025721833109855652, 0.036531392484903336, 0.014420932158827782, -0.000657171942293644, -0.00793519802391529, 0.021250607445836067, 0.01218531932681799, -0.0677562728524208, 0.0053802113980054855, 0.027662640437483788, -0.034860823303461075, 0.020734697580337524, 0.020955801010131836, 0.008371265605092049, 0.006768256891518831, -0.0041733491234481335, -0.030979208648204803, 0.00954434834420681, 0.024223236367106438, 0.008623078465461731, 0.012676662765443325, 0.0075298394076526165, -0.045940618962049484, -0.007793936878442764, -0.007566690444946289, 0.05237722024321556, -0.058224208652973175, 0.030880941078066826, -0.0822017714381218, -0.01461747009307146, -0.014543768018484116, -0.06284283846616745, -0.033558763563632965, 0.011534289456903934, 0.014936842955648899, 0.0031261732801795006, -0.003946102689951658, 0.04861844331026077, 0.01210547611117363, 0.014875425025820732, -0.01642315648496151, 0.03382899984717369, 0.013413677923381329, -0.014789439737796783, -0.024677729234099388, 0.015993231907486916, 0.01611606776714325, -0.03382899984717369, -0.03255150839686394, -0.004065867513418198, 0.008592369966208935, 0.011804528534412384, 0.013941872864961624, -0.022933458909392357, -0.03309198468923569, 0.04773402214050293, -0.03903724253177643, -0.03871786966919899, 0.007843070663511753, -0.021520845592021942, 0.01587039604783058, -0.02229471318423748, 0.015944097191095352, -0.0010310537181794643, 0.01557558961212635, -0.06353072077035904, 0.031052911654114723, 0.018843024969100952, -0.03228126838803291, -0.015035111457109451, -0.046407394111156464, -0.03262520954012871, -0.008690638467669487, -0.04793056100606918, 0.06741233170032501, -0.014310380443930626, 0.01572299189865589, 0.02596750482916832, 0.018437664955854416, -0.03938118368387222, -0.024542609229683876, -0.014359514228999615, 0.03343592584133148, -0.010330497287213802, 0.059206895530223846, 0.020501308143138885, -0.08790135383605957, 0.038152825087308884, -0.0004740697331726551, 0.00274077570065856, 0.035548705607652664, 0.03328852355480194, -0.03427121043205261, -0.007572832051664591, 0.0028451860416680574, -0.013671633787453175, 0.05277029424905777, -0.03262520954012871, 0.016545992344617844, 0.03564697131514549, 0.033632464706897736, 0.026925625279545784, -0.003697359934449196, -0.025476161390542984, -0.016914499923586845, -0.03635942190885544, 0.019113263115286827, 0.027048461139202118, -0.0031691656913608313, 0.01370848435908556, -0.06937770545482635, 0.04100261628627777, -0.00844496674835682, 0.024235518649220467, -0.026409713551402092, -0.016066933050751686, -0.060435254126787186, -0.0012675127945840359, 0.045547544956207275, 0.026237744837999344, 0.010453333146870136, -0.05955083668231964, 0.023572206497192383, 0.006737547926604748, -0.0050976891070604324, -0.010969243943691254, 0.002445969497784972, 0.030217627063393593, -0.02680278941988945, -0.011749251745641232, -0.044712260365486145, 0.019973114132881165, 0.0517876073718071, -0.017061904072761536, -0.01841309852898121, -0.0017596239922568202, 0.0025995143223553896, -0.03309198468923569, -0.05620969831943512, -0.03053699992597103, -0.007364010903984308, -0.024272369220852852, 0.005668875761330128, -0.06814935058355331, 0.03842306509613991, -0.0020221855957061052, -0.03717013821005821, 0.012240595184266567, 0.012523118406534195, 0.04407351464033127, 0.03400097042322159, -0.0038693302776664495, 0.03596634417772293, -0.027932878583669662, -0.039602287113666534, -0.014138409867882729, 0.01114735659211874, -0.005106901749968529, 0.048913247883319855, -0.016324888914823532, 0.03903724253177643, -0.01096310280263424, -0.025918370112776756, -0.012873200699687004, -0.004277759697288275, -0.023117713630199432, -0.02940691076219082, 0.0449087992310524, -0.03301828354597092, -0.00649187620729208, 0.01650914177298546, -0.010797274298965931, -0.023793309926986694, -0.005057767499238253, -0.010950818657875061, 0.008868750184774399, 0.03208473324775696, 0.05537441372871399, 0.011939647607505322, -0.06200755387544632, -0.027318699285387993, 0.006798965856432915, 0.01309430506080389, 0.0005612064269371331, -0.02396528050303459, 0.0014870818704366684, 0.018609635531902313, -0.0070630633272230625, 0.005718010477721691, 0.01057616900652647, -0.008199295029044151, -0.003086251439526677, -0.002998730866238475, 0.07144134491682053, 0.07537209987640381, 0.0037249980960041285, -0.0035438151098787785, 0.020046815276145935, 0.015637008473277092, -0.018609635531902313, 0.006921801716089249, -0.025770967826247215, -0.01031207200139761, 0.001150050899013877, -0.010097109712660313, -0.0009458363056182861, -0.07615824788808823, -0.029529746621847153, 0.028620760887861252, -0.09699121117591858, -0.0006187857361510396, 0.03537673503160477, -0.03682619705796242, 0.018449949100613594, 0.007333301939070225, -0.03242867439985275, -0.03100377693772316, -0.020673278719186783, 0.022736921906471252, -0.0637272521853447, -0.012627528980374336, 0.02795744687318802, -0.0011393028544262052, -0.004683117847889662, 0.04186246916651726, -0.05016617476940155, 0.025746401399374008, 0.010183095000684261, 0.012492408975958824, -0.02542702667415142, -0.03252694010734558, 0.0018195065204054117, 0.036089181900024414, 0.0003969134413637221, -0.0306107010692358, 0.004041300620883703, 0.006878809537738562, -0.07994159311056137, -0.007247317116707563, 0.003439404768869281, -0.0594034306704998, -0.017835769802331924, 0.007081488613039255, 0.04557211324572563, 0.018978143110871315, -0.00897316075861454, -0.023621339350938797, 0.03269891068339348, -0.006344473455101252, 0.03100377693772316, -0.0322321355342865, -0.010834124870598316, -0.018007740378379822, 0.0035622406285256147, -0.02894013375043869, -0.07090087234973907, 0.011515864171087742, -0.02886643260717392, -0.038447629660367966, 0.0213734433054924, 0.055472683161497116, -0.03473798558115959, 0.03709643706679344, 0.013229424133896828, 0.042967990040779114, -0.03675249591469765, -0.000523204100318253, 0.0011961143463850021, 0.025746401399374008, 0.06947597116231918, -0.015637008473277092, -0.04847103729844093, -0.04495793208479881, 0.017983172088861465, -0.0009089855011552572, -0.0062769134528934956, -0.03191276267170906, -0.04660393297672272, 0.023265115916728973, 0.017270725220441818, -0.049674831330776215, -0.0065287272445857525, 0.0458177849650383, 0.008340556174516678, -0.011620274744927883, 0.05714325234293938, -0.004336106590926647, -0.009458363056182861, 0.006645421031862497, -0.007775511126965284, -0.002958809258416295, 0.023793309926986694, 0.0007792401011101902, 0.02015736885368824, -0.023940714076161385, -0.025230489671230316, -0.0840197429060936, -0.06534869223833084, 0.009206549264490604, 0.0004306932969484478, 0.03407467529177666, 0.04567037895321846, 0.012191461399197578, -0.00338719948194921, 0.04097805172204971, 0.04861844331026077, 0.008027324452996254, 0.046309128403663635, -0.05385125055909157, 0.0017719075549393892, 0.048151664435863495, 0.009562773630023003, 0.020710129290819168, -0.005699584726244211, 0.009439937770366669, -0.03564697131514549, 0.01316800620406866, 0.011485154740512371, -0.007050779648125172, 0.0002378025819780305, 0.04198530316352844, -0.028227685019373894, 0.029873685911297798, -0.03780888393521309, 0.002161911455914378, -0.015293067321181297, 0.02648341655731201, 0.06618396937847137, 0.017504112794995308, -0.02330196648836136, -0.007984332740306854, 0.004799812100827694, 0.007996615953743458, 0.05625883489847183, 0.019825711846351624, 0.023768743500113487, -0.05109972506761551, 0.010563885793089867, 0.024554893374443054, 0.05620969831943512, -0.009630332700908184, -0.022257862612605095, -0.02396528050303459, -0.022171877324581146, 0.021557698026299477, 0.049674831330776215, -0.005628954153507948, 0.03284631296992302, 0.03940575197339058, 0.005920689553022385, -0.03107747808098793, -0.03353419527411461, -0.001907027093693614, -0.017749784514307976, 0.004649338312447071, -0.016312604770064354, 0.00014327654207590967, -0.0004775244742631912, -0.026630818843841553, 0.029112104326486588, -0.01564929075539112, -0.041420258581638336, 0.03375529870390892, -0.042796019464731216, -0.0333130918443203, 0.04957656189799309, 0.008887176401913166, 0.014973693527281284, -0.0378580167889595, -0.010883258655667305, 0.07144134491682053, -0.05046097934246063, 0.012615244835615158, -0.009918997064232826, 0.01325399149209261, 0.025144504383206367, -0.009661042131483555, 0.009820728562772274, -0.04987136647105217, -0.010557743720710278, -0.05817507207393646, -0.017307575792074203, 0.010127818211913109, -0.013991006650030613, -0.008088742382824421, 0.009556631557643414, -0.03689989820122719, -0.03002109006047249, -0.04957656189799309, 0.02557443082332611, -0.0006329886382445693, -0.022970309481024742, -0.025549862533807755, -0.025869237259030342, -0.00627998448908329, 0.04193617030978203, 0.00775094423443079, -0.030659835785627365, 0.04709527641534805, -0.029382342472672462, -0.00916969869285822, 0.02741696871817112, 0.08136648684740067, 0.06539782136678696, -0.003144598565995693, 0.024223236367106438, -0.011368460953235626, 0.0195554718375206, -0.027736341580748558, 0.011786103248596191, 0.008223862387239933, -0.04549841210246086, -0.025230489671230316, -0.05164020508527756, 0.0612214021384716, 0.000786917342338711, 0.04778315871953964, -0.002588766161352396, 0.0340501070022583, -0.03002109006047249, -0.030365029349923134, -0.004029016941785812, -0.03918464481830597, 0.03328852355480194, -0.022958025336265564, -0.018806172534823418, 0.017368992790579796, 0.05935429781675339, 0.026286877691745758, 0.04488423094153404, -0.021103205159306526, 0.0021757306531071663, -0.03056156635284424, -0.022503534331917763, 0.0219139214605093, -0.011736968532204628, 0.04414721578359604, -0.047537487000226974, 0.01757781393826008, 0.010176952928304672, 0.05164020508527756, 0.00627998448908329, 0.029308641329407692, 0.006350615061819553, 0.01363478321582079, -0.011264050379395485, 0.014187544584274292, 0.03343592584133148, -0.03564697131514549, -0.038226526230573654, -0.004495793022215366, -0.020575009286403656, 0.018879875540733337, -0.0478077232837677, 0.009839153848588467, -0.006541010458022356, -0.031888194382190704, -0.027932878583669662, -0.014261245727539062, 0.04648109897971153, -0.013536513783037663, -0.033165689557790756, 0.04498250037431717, -0.02206132374703884, -0.00016602037067059427, 0.023461652919650078, 0.0007266509928740561, -0.003424050286412239, 0.004901151638478041, -0.07851669192314148, -0.009046862833201885, -0.004455871414393187, 0.0024398276582360268, -0.008223862387239933, -0.03628572076559067, -0.007247317116707563, 0.015428186394274235, 0.020869815722107887, -0.01325399149209261, 0.023080861195921898, 0.014261245727539062, -0.002032933756709099, 0.03640855476260185, 0.008451108820736408, 0.007879922166466713, 0.010398057289421558, -0.007523697800934315, -0.004560281988233328, 0.01778663508594036, -0.003964527975767851, 0.010183095000684261, 0.009685609489679337, 0.008874892257153988, 0.0006053505931049585, 0.01779891923069954, -0.019260665401816368, 0.005128398071974516, 0.0641203299164772, 0.025795534253120422, -0.00836512353271246, 0.011466729454696178, 0.0010325891198590398, 0.005791711620986462, -0.015219365246593952, -0.013917305506765842, -0.009839153848588467, -0.01496141031384468, 0.011607990600168705, 0.00702621228992939, 0.006516443565487862, -0.015207082033157349, 0.006878809537738562, -0.04363130405545235, -0.049380023032426834, 0.023633623495697975, 0.006841958500444889, 0.026286877691745758, -0.010778849013149738, 0.03977425768971443, -0.046407394111156464, 0.028080282732844353, 0.018376247957348824, -0.002524277428165078, 0.014187544584274292, -0.0026379006449133158, 0.0059329732321202755, -0.026679953560233116, -0.002894320525228977, -0.01378218550235033, -0.04512990266084671, -0.0037833452224731445, -0.018314829096198082, 0.016816232353448868, -0.019186964258551598, 0.005033200141042471, -0.01962917298078537, 0.022577235475182533, 0.035622406750917435, -0.032404106110334396, 0.046997006982564926, -0.0476357564330101, 0.016177484765648842, 0.015612440183758736, -0.03648225590586662, -0.006706838961690664, -0.007136764470487833, -0.030905507504940033, -0.018990427255630493, 0.03171622380614281, 0.011190349236130714, 0.021569980308413506, 0.015624724328517914, 0.03373073413968086, 0.05385125055909157, -0.005352573469281197, -0.03734210878610611, -0.039823394268751144, -0.014973693527281284, 0.01985027827322483, -0.037759751081466675, -0.03038959763944149, -0.009132848121225834, -0.016472291201353073, 0.02726956643164158, 0.01325399149209261, 0.01156499795615673, -0.0554235503077507, 0.022392980754375458, -0.014863141812384129, -0.0418379008769989, 0.005718010477721691, -0.01778663508594036, -0.034934524446725845, -0.00018713278404902667, -0.01680394820868969, -0.018818456679582596, 0.00015853505465202034, 0.01221602875739336, 0.002441363176330924, 0.010484042577445507, -0.0042839013040065765, -0.024702295660972595, 0.021643681451678276, 0.0002577634295448661, 0.005622812546789646, -0.0358680784702301, 0.024112682789564133, 0.012504693120718002, 0.011423736810684204, 0.007769369520246983, 0.027588939294219017, -0.006792824249714613, 0.009347810409963131, 0.00843882467597723, 0.005979036446660757, 0.03358332812786102, 0.023940714076161385, -0.009728602133691311, -0.03864416852593422, 0.03247780725359917, 0.008217720314860344, 0.025844668969511986, -0.013843603432178497, -0.0013373756082728505, -0.0032029456924647093, -0.011509722098708153, -0.009851437993347645, -0.008911742828786373, 0.010029549710452557, 0.02709759585559368, 0.02390386164188385, -0.014691171236336231, -0.016558276489377022, -0.02589380368590355, 0.003943031653761864, 0.0006917195278219879, -0.01572299189865589, 0.005370998755097389, -0.01291005127131939, -0.004480438772588968, -0.018216561526060104, -0.019985398277640343, 0.005816278979182243, -0.003078574314713478, 0.001725844107568264, 0.02550072968006134, -0.028694462031126022, 0.04122372344136238, -0.007112197577953339, -0.03640855476260185, -0.0030647553503513336, 0.016214337199926376, 0.009065288119018078, 0.014985977672040462, -0.006028170697391033, 0.008377406746149063, -0.03242867439985275, 0.017197024077177048, -0.019457204267382622, -0.01648457534611225, 0.008807332254946232, 0.011730826459825039, -0.0391109436750412, 0.050903189927339554, -0.023228265345096588, -0.011614132672548294, -0.035622406750917435, -0.026974759995937347, 0.02330196648836136, 0.014789439737796783, 0.03247780725359917, -0.001951555022969842, -0.003037117188796401, -0.0026655385736376047, -0.01930980011820793, 0.011012236587703228, -0.006688413675874472, 0.009022295475006104, -0.016152918338775635, 0.020280204713344574, 0.015022828243672848, -0.0014210576191544533, -0.02459174394607544, 0.0517876073718071, -0.036015480756759644, -0.022650936618447304, 0.039675988256931305, -0.0099619897082448, -0.007849212735891342, 0.020132800564169884, -0.010778849013149738, 0.0034946808591485023, -0.0006686878041364253, 0.02564813196659088, 0.026458848267793655, 0.0008299099281430244, -0.03640855476260185, 0.00342712108977139, -0.029529746621847153, -0.01057616900652647, 0.01633717305958271, -0.028448790311813354, 0.0119949234649539, -0.006175573915243149, 0.005696514155715704, 0.0012583000352606177, -0.0052082412876188755, 0.028203118592500687, -0.04414721578359604, 0.024395206943154335, -0.016693396493792534, 0.012252879329025745, -0.034246642142534256, 0.009046862833201885, -0.022343846037983894, -0.029652582481503487, 0.013315409421920776, 0.00251045823097229, 0.019211532548069954, 0.06854242086410522, -0.011165781877934933, -0.015538739040493965, 0.020562727004289627, -0.005561394616961479, 0.0014962946297600865, -0.006224708165973425, 0.0026148688048124313, -0.00677439896389842, -0.05955083668231964, 0.024014415219426155, 0.007861495949327946, 0.00484894635155797, -0.009581198915839195, -0.035401299595832825, -0.014899992384016514, 0.012357289902865887, 0.006817391607910395, 0.017246156930923462, 0.005186744965612888, -0.02037847228348255, -0.015108813531696796, -0.021815652027726173, 0.011982640251517296, 0.014310380443930626, -0.02031705528497696, 0.07719007134437561, 0.012652095407247543, -0.013905021362006664, -0.008813474327325821, 0.05473566800355911, 0.0026578614488244057, 0.0058715553022921085, -0.0017074187053367496, 0.002304708119481802, -0.008672213181853294, -0.055865757167339325, 0.026630818843841553, -0.014285813085734844, 0.0033810576424002647, -0.0398479588329792, -0.006983219645917416, 0.0011039874516427517, 0.00935395248234272, -0.035081926733255386, -0.009378519840538502, -0.0029188876505941153, 0.03628572076559067, 0.053802117705345154, -0.0077202352695167065, -0.0060895886272192, -0.0011224128538742661, 0.003135385923087597, 0.014556052163243294, 0.02680278941988945, 0.03930748254060745, 0.038693301379680634, 0.013905021362006664, -0.007701809983700514, 0.006719122640788555, 0.030954642221331596, 0.008825758472084999, 0.00484894635155797, -0.017197024077177048, 0.004750677850097418, 0.01138074416667223, 0.004747606813907623, 0.03807912394404411, -0.005355644505470991, 0.020108234137296677, 0.01817971095442772, 0.016693396493792534, -0.04729181528091431, -0.013880454935133457, 0.03871786966919899, -0.0024966392666101456, -0.002402976853772998, -0.009028437547385693, 0.0026993185747414827, -0.022589517757296562, 0.00988828856498003, -0.003463971894234419, 0.025181354954838753, 0.014678888022899628, -0.005306510254740715, -0.026213176548480988, -0.011706259101629257, -0.028424222022294998, 0.0004138033837080002, 0.022540384903550148, 0.030340462923049927, -0.054932206869125366, 0.032256703823804855, -0.010778849013149738, -0.026458848267793655, 0.006952510681003332, -0.0047353231348097324, 0.02611490897834301, -0.024419773370027542, 0.016386305913329124, -0.0018317900830879807, -0.010084825567901134, -0.014678888022899628, 0.01702505350112915, 0.006332189776003361, -0.016558276489377022, 0.020968085154891014, 0.007449996192008257, -0.03581894189119339, 0.03459058329463005, -0.021250607445836067, -0.020501308143138885, -0.01271351333707571, 0.04444202035665512, -0.009077571332454681, 0.022135024890303612, -0.0016429298557341099, 0.0005719545879401267, -0.009532064199447632, 0.026409713551402092, 0.054637398570775986, 0.0017765138763934374, -0.015428186394274235, -0.00269164121709764, 0.03884070739150047, 0.047758590430021286, 0.012762648053467274, -0.014764873310923576, -0.00023761065676808357, -0.06063178926706314, -0.005149894393980503, 0.01103066187351942, -0.006255417130887508, 0.03377986699342728, 0.024861982092261314, 0.028129417449235916, -0.01680394820868969, -0.0322321355342865, 0.007499130442738533, 0.01363478321582079, -0.011128931306302547, 0.011472871527075768, -0.02763807401061058, 0.014531484805047512, 0.0018102937610819936, 0.008666071109473705, -0.005564465653151274, -0.02618861012160778, -0.0006560203619301319, -0.008426541462540627, 0.0018271837616339326, -0.0011224128538742661, 0.0380299873650074, -0.012148468755185604, 0.015538739040493965, 0.01825341209769249, -0.04115001857280731, 0.0525246225297451, 0.026704519987106323, -0.01932208426296711, -0.01149743888527155, -0.002791445469483733, -0.03613831475377083, 0.0517876073718071, 0.03618745133280754, -0.014826291240751743, 0.0064673093147575855, -0.014642037451267242, -0.01588268019258976, -0.004959498532116413, 0.020329337567090988, 0.019985398277640343, -0.03161795437335968, -0.0478077232837677, 0.07522469013929367, 0.009341668337583542, 0.01841309852898121, -0.0038724010810256004, -0.006212424486875534, -0.007038495969027281, -0.0019346651388332248, 0.003040187992155552, -0.027073027566075325, 0.0036605093628168106, -0.023314250633120537, -0.0016490716952830553, -0.0021603761706501245, -0.013573365285992622, -0.040511272847652435, -0.008027324452996254, 0.03670336306095123, 0.041420258581638336, -0.009869863279163837, 0.0011554249795153737, -0.04009363055229187, -0.0010018801549449563, -0.015858111903071404, -0.024260086938738823, 0.01841309852898121, 0.018683336675167084, 0.008954735472798347, 0.013794469647109509, -0.026016639545559883, 0.04375414177775383, 0.03154425323009491, 0.006175573915243149, -0.054784804582595825, -0.0015554093988612294, 0.017356710508465767, 0.006848100572824478, -0.04675133526325226, -0.0026609322521835566, 0.030193058773875237, 0.0037342107389122248, -0.05321250483393669, 0.02633601240813732, -0.0006137955351732671, -0.01892900839447975, -0.0048643010668456554, -0.021017219871282578, 0.0016014728462323546, 0.02047674171626568, -0.010674438439309597, -0.02648341655731201, 0.016840798780322075, -0.0005385585827752948, -0.018277978524565697, -0.025476161390542984, 0.045326441526412964, -0.005650450475513935, 0.03559783846139908, 0.007806220091879368, 0.014310380443930626, -0.038447629660367966, -0.0019254524959251285, 0.02803114801645279, 0.015759844332933426, -0.01381903700530529, -0.010803415440022945, 0.027294132858514786, 0.010938535444438457, 0.0333130918443203, -0.0021235253661870956, 0.019506337121129036, 0.013327693566679955, -0.002725421218201518, 0.03056156635284424, -0.03758778050541878, -0.029284074902534485, 0.015182514674961567, 0.006080375984311104, 0.014138409867882729, 0.01687764935195446, -0.020562727004289627, -0.003184520173817873, 0.04414721578359604, -0.02383016049861908, -0.0031292440835386515, -0.045326441526412964, 0.06294110417366028, -0.006144864950329065, 0.0043453192338347435, 0.0006698394427075982, -0.000990364234894514, 0.019653741270303726, 0.04225554317235947, 0.011798386462032795, 0.0033964121248573065, -0.0051130433566868305, 0.0013496592873707414, 0.02618861012160778, 0.004471226129680872, 0.030880941078066826, 0.028890999034047127, -0.02894013375043869, -0.001639859052374959, 0.03709643706679344, 0.020525876432657242, 0.0001220681588165462, 0.004240908659994602, -0.01923609897494316, -0.01870790496468544, 0.031814493238925934, -0.006068092305213213, -0.00844496674835682, -0.02648341655731201, 0.004667763598263264, -0.009489071555435658, 0.004821308422833681, 0.008530952036380768, 0.03451688215136528, 0.001458676066249609, 0.011079796589910984, 0.020489025861024857, 0.018351681530475616, -0.013499663211405277, 0.021778801456093788, 0.0003189894196111709, -0.014199827797710896, -0.0028820368461310863, 0.018265696242451668, 0.006755973678082228, -0.029750850051641464, 0.033190254122018814, -0.034787122160196304, -9.970818791771308e-05, -0.0075605483725667, 0.03390270471572876, -0.026999326422810555, -0.032256703823804855, 0.020267920568585396, 0.022933458909392357, -0.014764873310923576, -0.033706165850162506, -0.0031507404055446386, 0.0073578692972660065, -0.018363963812589645, 0.0195554718375206, -0.045694947242736816, -0.05424432456493378, -0.008027324452996254, -0.0497976653277874, 0.006098801735788584, -0.03284631296992302, 0.016054648905992508, -0.00943379569798708, 0.008518668822944164, 0.008512526750564575, 0.0005815511103719473, -0.026851924136281013, 0.024075832217931747, -0.004827450029551983, -0.01757781393826008, -0.022171877324581146, 0.0056473794393241405, -0.02475143037736416, 0.0033749158028513193, 0.017774352803826332, 0.005392495077103376, 0.018425382673740387, -0.029898254200816154, 0.014420932158827782, -0.015354485251009464, 0.03805455565452576, -0.009863721206784248, -0.010115534998476505, 0.005254304967820644, 0.025402460247278214, -0.01803230680525303, -0.015465037897229195, -0.021361159160733223, -0.018806172534823418, 0.03736667335033417, -0.013868170790374279, -0.00011391109001124278, -0.02719586342573166, -0.006504159886389971, 0.009421512484550476, -0.0027223501820117235, -0.0034455463755875826, -0.00211738352663815, 0.03139685094356537, 0.013991006650030613, -0.02312999591231346, 0.017848053947091103, 0.022773772478103638, 0.04198530316352844, -0.01023222878575325, -0.041420258581638336, -0.024309221655130386, -0.007247317116707563, -6.423692866519559e-06, 0.002951132133603096, -0.012246737256646156, -0.015538739040493965, -0.03687532991170883, -0.014470066875219345, 0.030880941078066826, 0.004458942450582981, 0.021963056176900864, -0.03704730048775673, -0.010619161650538445, 0.019137829542160034, 0.014789439737796783, 0.03766148164868355, -0.007578973658382893, -0.015772126615047455, 9.800480256672017e-06, 0.023154564201831818, -0.013327693566679955, 0.07954851537942886, -0.005205170251429081, 0.007192040793597698, 0.006326047703623772, 0.0072964513674378395, -0.020562727004289627, 0.024382922798395157, 0.006811249535530806, 0.009016153402626514, 0.034394048154354095, -0.0035192479845136404, 0.0067621152848005295, 0.031347718089818954, 0.008487959392368793, -0.014310380443930626, 0.005988249089568853, 0.014138409867882729, -0.00488886795938015, 0.026999326422810555, 0.018363963812589645, -0.013008319772779942, -0.03375529870390892, 0.020022248849272728, -0.027515238150954247, -0.004228624980896711, -0.012203744612634182, 0.019150113686919212, 0.010999953374266624, -0.01084640808403492, 0.0019423423800617456, 0.00604966701939702, 0.030635269358754158, -0.00480902474373579, -0.009132848121225834, 0.03849676623940468, -0.017147889360785484, -0.019653741270303726, -0.0030018019024282694, -0.007787794806063175, 0.01069286372512579, -0.05164020508527756, 0.018314829096198082, -0.0068726674653589725, 0.01625118777155876, -0.00454492773860693, 0.02419866807758808, -0.015415903180837631, -0.02220872789621353, 0.051738474518060684, -0.02107863686978817, -0.0023738034069538116, -0.014592902734875679, -0.02496025152504444, -0.0003685076371766627, -0.007972048595547676, -0.011098221875727177, -0.03793172165751457, -0.029210371896624565, -0.006043525412678719, 0.0028405797202140093, -0.016447724774479866, 0.00525123393163085, 0.006891092751175165, 0.01679166406393051, 0.01679166406393051, 0.007812362164258957, -0.023412518203258514, -0.0063383313827216625, -0.0064673093147575855, 0.0013819036539644003, -0.006436600349843502, -0.009765452705323696, 0.006541010458022356, 0.019948547706007957, 0.03709643706679344, 0.03572067245841026, -0.031495120376348495, 0.013806752860546112, -0.016398590058088303, 0.021557698026299477, -0.024174101650714874, -0.00010229925828753039, 0.02199990674853325, 0.017626948654651642, 0.019051846116781235, 0.0008997728582471609, -0.04178876802325249, -0.000545468064956367, -0.0007208930910564959, -0.01461747009307146, 0.023412518203258514, -0.012050200253725052, 0.010551602579653263, -0.01580897718667984, 0.018523650243878365, 0.011141214519739151, -0.030586134642362595, -0.013069737702608109, 0.01485085766762495, 0.0061663612723350525, 0.027367834001779556, -0.027760909870266914, -0.062204089015722275, -0.006663846783339977, -0.02030477114021778, 0.02557443082332611, 0.014494634233415127, 0.008162444457411766, 0.01042262464761734, 0.005834704264998436, 0.01370848435908556, -0.01316800620406866, 0.01363478321582079, -0.004115002229809761, 0.0020037603098899126, -0.05011703819036484, 0.04267318546772003, 0.023203697055578232, 0.009126706048846245, -0.0007174382917582989, 0.026016639545559883, -0.029996521770954132, 0.0014456247445195913, -0.010355064645409584, -0.020267920568585396, 0.0002566118200775236, -0.015010545030236244, 0.03122488036751747, 0.019150113686919212, -0.00870906375348568, 0.00414264015853405, 0.005730293691158295, 0.018658770248293877, -0.0020943516865372658, 0.025623565539717674, -0.014543768018484116, -0.0060895886272192, 0.03183906152844429, 0.026090340688824654, 0.0034363337326794863, 0.022958025336265564, -0.005506118293851614, -0.014592902734875679, -0.04657936468720436, 0.00042570309597067535, 0.006731406319886446, -0.01618976891040802, -0.02024335414171219, -0.000671758723910898, -0.007628108374774456, -0.021201472729444504, 0.021017219871282578, -0.030487865209579468, 0.0007665726589038968, -0.00989443063735962, 0.02948061190545559, 0.03724383935332298, 0.012873200699687004, 0.04451572522521019, -0.026827355846762657, -0.04115001857280731, 0.014298096299171448, 0.0016475362936034799, 0.0065103014931082726, 0.006645421031862497, 0.010201520286500454, 0.04810253158211708, 0.002703924896195531, 0.012302013114094734, -0.03557327017188072, 0.012252879329025745, -0.002794516272842884, 0.018769321963191032, -0.009532064199447632, 0.01755324751138687, -0.02788374572992325, 0.0195554718375206, 0.030291328206658363, -0.011350035667419434, -0.0016874579014256597, 0.007321018725633621, 0.013610215857625008, 0.02419866807758808, -0.016926784068346024, -0.008573944680392742, -0.037538643926382065, -0.007499130442738533, 0.002066713757812977, 0.03292001783847809, -0.00855551939457655, 0.01626347005367279, -0.006835816893726587, 0.01757781393826008, -0.025869237259030342, -0.013290842063724995, -0.01496141031384468, -0.009753168560564518, 0.028276819735765457, 0.006233920808881521, -0.029357776045799255, -0.009341668337583542, 0.01841309852898121, -0.00397067004814744, 0.019874844700098038, 0.009556631557643414, -0.031421419233083725, 0.019039561972022057, 0.004944144282490015, -0.004047442227602005, -0.00018559733871370554, 0.0048643010668456554, 0.005484621971845627, 0.009863721206784248, -0.004262404982000589, -0.003439404768869281, -0.008782765828073025, 0.024075832217931747, -0.0043729571625590324, -0.013622499071061611, 0.01795860566198826, -0.006559436209499836, 0.02879273146390915, 0.027687206864356995, 0.008082601241767406, 0.01363478321582079, 0.005773286335170269, 0.030659835785627365, -0.010778849013149738, 0.04869214445352554, -0.010226086713373661, 0.01049632579088211, -0.023559922352433205, -0.013192573562264442, 0.007419287227094173, 0.011902797035872936, 0.003120031440630555, -0.006255417130887508, 0.012615244835615158, 0.017749784514307976, -0.03925834596157074, 0.0006195534951984882, 0.01580897718667984, -0.00702621228992939, -0.00812559388577938, -0.003184520173817873, 0.0008268390083685517, -0.010883258655667305, -0.013008319772779942, -0.013266275636851788, -0.04618629068136215, -0.028768163174390793, -0.028055714443325996, -0.011350035667419434, 0.004458942450582981, 0.022884324193000793, -0.03697359934449196, -0.01496141031384468, -0.017221590504050255, -0.0008329808479174972, -0.0038693302776664495, -0.020882099866867065, -0.040118198841810226, 0.0371210016310215, 0.017123321071267128, -0.0036390130408108234, 0.007757085841149092, -0.0025043166242539883, 0.008322130888700485, -0.015686141327023506, -0.02948061190545559, -0.01504739560186863, -0.013462812639772892, -0.034246642142534256, -0.01588268019258976, -0.025451594963669777, -0.013683917000889778, -0.0013634782517328858, 0.006798965856432915, 0.0008544771117158234, 0.019064128398895264, -0.010250654071569443, -0.01772521808743477, 0.017356710508465767, -0.02589380368590355, 0.026679953560233116, 0.0006068860529921949, 0.019567755982279778, -0.01282406598329544, 0.037464942783117294, -0.009532064199447632, -0.011208774521946907, -0.0029403839726001024, 0.018879875540733337, -0.008604653179645538, 0.03016849234700203, 0.00793519802391529, -0.018843024969100952, 0.01649685949087143, 0.009802303276956081, -0.021176906302571297, 0.011466729454696178, 0.023707324638962746, 0.048986949026584625, 0.028129417449235916, -0.0008276067674160004, 0.009046862833201885, 0.0010993811301887035, 0.04132198914885521, 0.018609635531902313, -0.010140102356672287, 0.009396945126354694, 0.024088116362690926, -0.008082601241767406, 0.007364010903984308, 0.011165781877934933, 0.015980947762727737, 0.0002708147221710533, 0.01416297722607851, 0.025770967826247215, 0.022650936618447304, -0.0071858991868793964, -0.006283055525273085, -0.029308641329407692, -0.04422091692686081, 0.06731406599283218, -0.014310380443930626, 0.008752056397497654, 0.017074188217520714, 0.0032766470685601234, 0.010195378214120865, 0.022859757766127586, -0.024861982092261314, 0.039528585970401764, -0.028989268466830254, -0.02695019170641899, 0.010416482575237751, -0.01095696073025465, 0.0034086958039551973, 0.023326534777879715, 0.009802303276956081, -0.021975338459014893, 0.011853662319481373, 0.010803415440022945, -0.0035560987889766693, 0.008457249961793423, 0.02557443082332611, 0.00631990609690547, 0.012443275190889835, -0.017700649797916412, 0.017516396939754486, 0.03748951107263565, -0.008696780540049076, -0.0057702152989804745, 0.024763714522123337, 0.005761002656072378, -0.0024229376576840878, 0.04139569029211998, 0.012467841617763042, 0.031274016946554184, -0.03407467529177666, -0.0032612925861030817, 3.7642479583155364e-05, -0.010170810855925083, 0.019592322409152985, 0.004572565667331219, 0.0013350724475458264, 0.0065103014931082726, 0.013880454935133457, -0.011779961176216602, 0.0027177438605576754, 0.0010218409588560462, -0.012283587828278542, -0.008795049041509628, -0.003835550509393215, 0.02520592324435711, -0.01271351333707571, -0.04237838089466095, 0.003571453271433711, -0.02741696871817112, 0.01627575419843197, -0.0023738034069538116, -0.03070897050201893, 0.035843510180711746, -0.05375298112630844, -0.0003965295909438282, -0.013401394709944725, -0.01771293394267559, 0.010207661427557468, 0.007253458723425865], [0.037356942892074585, 0.04065098986029625, 0.010772756300866604, 0.04255421832203865, -0.02767000161111355, 0.007905715145170689, -0.00333064841106534, -0.01664104126393795, 0.004547616001218557, 0.008466922678053379, 0.022301923483610153, -0.023082735016942024, 0.004608616698533297, 0.02091110311448574, -0.007484808564186096, 0.018654070794582367, 0.035673316568136215, -0.017690256237983704, -0.05246075987815857, 0.05167995020747185, -0.009022030979394913, 0.046799879521131516, -0.051240742206573486, 0.030232038348913193, -0.034990109503269196, -0.012700384482741356, 0.01858086884021759, -0.012993188574910164, 0.0536319799721241, -0.022387325763702393, 0.056023214012384415, -0.030500441789627075, -0.020715899765491486, 0.011724370531737804, 0.0175438541918993, -0.044384244829416275, -0.01368859875947237, -0.03743014484643936, 0.014079004526138306, -0.009095232002437115, -0.009686940349638462, -0.05577921122312546, -0.010357949882745743, -0.05128954350948334, -0.023948946967720985, 0.09862623363733292, -0.0067771985195577145, -0.04167580604553223, -0.004727568477392197, 0.006386792752891779, 0.01975208707153797, 0.010845957323908806, -0.01043115183711052, -0.018336866050958633, 0.00138243252877146, -0.009522237814962864, -0.0470682829618454, 0.03503890708088875, -0.020447496324777603, 0.0031095200683921576, 0.019666684791445732, 0.0006530907121486962, -0.0009432262158952653, 0.015872430056333542, -0.016262836754322052, 0.013615397736430168, -0.004450014792382717, -0.006868699565529823, -0.008454722352325916, 0.019434882327914238, 0.061976898461580276, -0.0025422119069844484, -0.006801598705351353, -0.013529996387660503, -0.013163991272449493, -0.019861888140439987, 0.037966951727867126, 0.01368859875947237, 0.02293633297085762, -0.024241751059889793, 0.006093988660722971, 0.05802404135465622, -0.011376664973795414, 0.021155107766389847, -0.03281847760081291, 0.059390462934970856, -0.03957737609744072, 0.0058591351844370365, 0.0017705507343634963, -0.03818655386567116, -0.07100503146648407, 0.020227894186973572, -0.020447496324777603, -0.03064684569835663, -0.0066002956591546535, 0.013127390295267105, 0.00620684027671814, 0.018227064982056618, -0.005779833998531103, 0.06070807948708534, -0.050118327140808105, -0.026279181241989136, -0.017568254843354225, 0.03013443760573864, 0.010766656138002872, -0.04819069802761078, -0.048947110772132874, 0.007112703286111355, 0.000687784980982542, 0.014042403548955917, 0.06212330237030983, -0.03303807973861694, 0.003248297143727541, 0.03969937562942505, -0.033818889409303665, 0.0249615628272295, -0.0180196613073349, 0.038820963352918625, -0.004129759967327118, -0.02569357305765152, -0.020813502371311188, -0.0425054170191288, -0.0008158868295140564, -0.027743203565478325, -0.02647438459098339, 0.028084807097911835, -0.009943144395947456, -0.024022148922085762, -0.010229848325252533, -0.032525673508644104, 0.017580455169081688, -0.057096827775239944, 0.014323008246719837, -0.040333785116672516, 0.0050417231395840645, 0.03025643900036812, 0.03616132587194443, 0.014286407269537449, -0.02810920774936676, -0.0028929670806974173, 0.01442060898989439, -0.01019934844225645, 0.028597215190529823, 0.0011353789595887065, -0.041919808834791183, -0.03711294010281563, 0.02150891162455082, -0.018031861633062363, 0.004629967268556356, 0.021399110555648804, -0.025669172406196594, -0.012285578064620495, 0.05368077754974365, 0.022167721763253212, 0.013285992667078972, -0.03608812391757965, 0.05773123726248741, 0.057096827775239944, 0.00829611998051405, 0.009827242232859135, 0.015750428661704063, 0.007808113470673561, -0.023009533062577248, -0.03474610298871994, 0.015713827684521675, -0.023521941155195236, 0.016787443310022354, -0.01189517229795456, -0.01211477629840374, -0.03669813275337219, -0.020252294838428497, 0.0055937813594937325, -0.050069525837898254, 0.03591732308268547, -0.03396529331803322, 0.03557571768760681, 0.0033123481553047895, 0.013444595038890839, -0.012169676832854748, 0.017348652705550194, 0.008729226887226105, 0.045628663152456284, -0.053827181458473206, -0.007490908727049828, -0.021155107766389847, -0.009729641489684582, -0.023814745247364044, -0.010827656835317612, -0.06368492543697357, 0.011699969880282879, 0.0049410718493163586, 0.027645600959658623, -0.03901616483926773, 0.012663783505558968, -0.0010888657998293638, -0.050118327140808105, 0.022057920694351196, -0.041065797209739685, 0.008155818097293377, 0.0007781425374560058, 0.014518210664391518, -0.033135682344436646, -0.005377227906137705, -0.0014724088832736015, -0.056755222380161285, 0.0498255230486393, 0.008149717934429646, -0.01888587325811386, 0.03608812391757965, 0.044213440269231796, 0.04948391765356064, 0.033648088574409485, 0.0019123777747154236, 0.02147231251001358, 0.04582386463880539, -0.028987620025873184, 0.03520971164107323, 0.006478293798863888, 0.042188212275505066, 0.03281847760081291, -0.07442107796669006, 0.0041236598044633865, 0.0222043227404356, 0.03469730541110039, 0.009363635443150997, -0.013115189969539642, 0.0002049248432740569, 0.042749419808387756, 0.002244832692667842, 0.003779004793614149, -0.03542931377887726, -0.02167971432209015, -0.05202155560255051, -0.003916257061064243, 0.028768017888069153, -0.010980159044265747, -0.017019247636198997, -0.029280424118041992, -0.03194006532430649, 0.016433637589216232, -0.02547396905720234, 0.016201835125684738, -0.0002319939958397299, 0.024083148688077927, -0.0009630514541640878, 0.0011719794711098075, -0.02271672897040844, -0.04936191812157631, -0.0016134734032675624, -0.020325494930148125, 0.0017415753100067377, -0.030378440394997597, 0.01500621810555458, -0.05324157327413559, 0.016311636194586754, -0.010071245953440666, 0.036917734891176224, -0.04035818576812744, 0.029768431559205055, -0.007643410935997963, -0.020581698045134544, 0.01055925339460373, -0.03176926076412201, -0.0003452268720138818, -0.035892922431230545, 0.0452626571059227, 0.021191706880927086, -0.02923162467777729, -0.009028131142258644, 0.0244857557117939, -0.02388794720172882, 0.006508794613182545, 0.055974412709474564, -0.043945036828517914, -0.027059992775321007, 0.02530316635966301, 0.0554376058280468, -0.009107432328164577, -0.052655965089797974, 0.025425169616937637, 0.011431565508246422, -0.02664518728852272, 0.05616961419582367, -0.021399110555648804, -0.00881462823599577, -0.014945216476917267, 0.003126295283436775, 0.026157179847359657, 0.016543440520763397, 0.03672253340482712, 0.0720786452293396, -0.05948806181550026, 0.011187562718987465, 0.025839975103735924, 0.009632039815187454, -0.0406021885573864, 0.0026886139530688524, -0.0043432628735899925, -0.037015337496995926, -0.07032182067632675, 0.010656855069100857, 0.05797524005174637, 0.017434053122997284, -0.05221675708889961, -0.004273111931979656, 0.011712170206010342, 0.048654306679964066, 0.045457858592271805, -0.008015516214072704, -0.015933431684970856, 0.03789374977350235, -0.00540162855759263, -0.0037271541077643633, -0.057096827775239944, -0.017080247402191162, 0.03833295777440071, 0.013932602480053902, 0.031183652579784393, -0.008119218051433563, -0.0016958246706053615, 0.053387973457574844, -0.008399821817874908, 0.039821378886699677, -0.042188212275505066, 0.021569913253188133, -0.05246075987815857, 0.0324280709028244, 0.04367663338780403, 0.03486810624599457, -0.020057091489434242, -0.06763777881860733, -0.005804234184324741, 0.0379425510764122, 0.014750014059245586, -0.006783298682421446, -0.022643528878688812, 0.024241751059889793, 0.031452056020498276, -0.04167580604553223, -0.035063307732343674, 0.011346165090799332, -0.021874917671084404, 0.01926407963037491, 0.013176191598176956, -0.0461166687309742, 0.020679300650954247, -0.01351779606193304, -0.0007861488847993314, -0.007661711424589157, 0.06661296635866165, -0.023082735016942024, 0.007606810424476862, -0.09677180647850037, -0.027303995564579964, 0.011882972903549671, 0.006838199216872454, 0.014262006618082523, -0.017312051728367805, -0.011950073763728142, 0.021020904183387756, 0.04838590323925018, 0.007741012144833803, 0.015811430290341377, 0.050069525837898254, 0.06924820691347122, 0.001738525228574872, -0.03743014484643936, -0.009083031676709652, 0.02060609869658947, -0.009863843210041523, 0.03779614716768265, 0.008308320306241512, 0.011950073763728142, -0.011492567136883736, -0.00907083135098219, 0.05870725214481354, -0.007936215028166771, -0.02310713566839695, 0.03569771721959114, -0.024168550968170166, 0.02923162467777729, -0.03523411229252815, -0.009882143698632717, -0.00965644046664238, 0.003477050457149744, 0.014689013361930847, -0.032525673508644104, -0.057926442474126816, -0.018946874886751175, 0.0003109138924628496, 0.029939234256744385, 0.030036836862564087, -0.02754800021648407, 0.0222043227404356, -0.030598044395446777, 0.025717973709106445, -0.03396529331803322, 0.06949220597743988, -0.0032055964693427086, 0.005175925325602293, -0.04919111356139183, -0.026523184031248093, -0.004312762524932623, 0.048947110772132874, 0.005063073709607124, -0.007734912447631359, 0.029280424118041992, 0.017531653866171837, 0.00012114394485251978, -0.0031811962835490704, 0.041797805577516556, -0.0014335208106786013, -0.0031476456206291914, 0.0471658855676651, 0.00756410975009203, -0.022558126598596573, 0.036454129964113235, -0.01703144796192646, -0.023851346224546432, -0.020496297627687454, -0.007002901751548052, 0.0005379515350796282, -0.020459696650505066, -0.030500441789627075, -0.015055018477141857, 0.014237606897950172, -0.01647023856639862, -0.043432630598545074, 7.172369805630296e-05, -0.060122471302747726, -0.0002813665778376162, 0.04531145840883255, 0.04653147608041763, -0.007442107889801264, -0.07295706123113632, -0.033477287739515305, -0.05475439503788948, -0.031354453414678574, -0.020410895347595215, 0.011889072135090828, -0.008485223166644573, -0.01080325711518526, 0.022704528644680977, 0.008637725375592709, -0.020276693627238274, -0.0518263503909111, -0.03762534633278847, 0.036234524101018906, -0.023009533062577248, -0.014323008246719837, -0.0038583059795200825, 0.02991483360528946, 0.0020359044428914785, 0.0033275983296334743, 0.015445424243807793, -0.07495788484811783, -0.001497571705840528, -0.031134851276874542, -0.013627598062157631, 0.021057505160570145, -0.012529581785202026, 0.0033489486668258905, 0.014042403548955917, 0.0014655463164672256, -0.004376813303679228, 0.016604440286755562, 0.0068503995425999165, -0.03281847760081291, 0.030061235651373863, -0.0481174997985363, -0.0324280709028244, -0.026913590729236603, 0.012047674506902695, -0.004431714303791523, 0.025791173800826073, -0.05368077754974365, 0.06544174998998642, -0.01883707381784916, -0.032525673508644104, 0.01224287785589695, -0.006002487149089575, 0.015921231359243393, -0.016933845356106758, -0.055242400616407394, 0.06978501379489899, 0.06183049827814102, 0.033818889409303665, 0.018702872097492218, -0.07998435944318771, -0.01470121368765831, -0.020410895347595215, -0.02788960561156273, -0.019068876281380653, -0.012267278507351875, 0.009955344721674919, -0.02586437575519085, -0.0388941653072834, -0.03930896893143654, 0.041187796741724014, -0.014469410292804241, 0.034209296107292175, -0.01841006800532341, -0.027181994169950485, -0.0500207245349884, 0.03999217972159386, -0.0360393226146698, 0.03813775256276131, -0.014847615733742714, -0.0022234823554754257, 0.008747527375817299, 0.008052117191255093, -0.044164642691612244, 0.0017583505250513554, -0.011937873438000679, -0.04221261292695999, -0.04357903078198433, -0.0038125552237033844, 0.019715486094355583, -0.04828830063343048, 0.018080662935972214, 0.026327982544898987, 0.010705655440688133, 0.01116316206753254, 0.014579211361706257, -0.015970032662153244, -0.01871507242321968, -0.009693040512502193, -0.06051287800073624, -0.00514237442985177, 0.013932602480053902, -0.030207637697458267, -0.009827242232859135, -0.03633212670683861, 0.02686478942632675, -0.019166478887200356, -0.007551909424364567, -0.032794076949357986, 0.02074030041694641, 0.013481196016073227, -0.026279181241989136, 0.036576129496097565, 0.015421023592352867, -0.022143321111798286, -0.04006538167595863, 0.025449570268392563, 0.01866627112030983, 0.052704766392707825, 0.0406997911632061, -0.017263250425457954, -0.021277109161019325, -0.014811014756560326, -0.01892247423529625, -0.011266863904893398, -0.006569795310497284, 0.01183417160063982, 0.04423784092068672, 0.0038064552936702967, -0.0304760430008173, 0.01642143912613392, -0.014506010338664055, 0.007936215028166771, -0.029597628861665726, -0.02285093255341053, 0.01866627112030983, -0.00702730193734169, 0.024607757106423378, -0.008320520631968975, -0.02823120914399624, -0.02276553027331829, 0.01629943586885929, -0.03228166699409485, -0.057145629078149796, 0.032696474343538284, -0.04426224157214165, 0.022753329947590828, 0.029768431559205055, 0.03125685453414917, -0.027694402262568474, -0.0067466977052390575, 0.0037332542706280947, -0.0006332654156722128, 0.036966536194086075, 0.03474610298871994, 0.0030576693825423717, -0.011150961741805077, -0.013102990575134754, -0.0006058150320313871, -0.0016729492926970124, -0.029280424118041992, -0.02346094138920307, 0.012663783505558968, -0.016482438892126083, 0.013554397039115429, -0.02047189697623253, 0.005209475755691528, 0.03198886290192604, 0.07202984392642975, 0.03723493963479996, -0.012919987551867962, 0.009467337280511856, 0.03130565583705902, -0.02280213125050068, -0.015177019871771336, -0.010748355649411678, 0.0026855638716369867, 0.024693157523870468, 0.023509740829467773, -0.027645600959658623, -0.01956908404827118, 0.024461355060338974, -0.002449185587465763, 0.0368933342397213, 0.01079715695232153, -0.020142491906881332, -0.033867690712213516, 0.011266863904893398, -0.006039087660610676, 0.004090109374374151, -0.0009371261112391949, -0.0005089761107228696, 0.0010812407126650214, -0.028206808492541313, -0.0017659756122156978, -0.005944536067545414, -0.036454129964113235, 0.012047674506902695, -0.009205034002661705, -0.02832881174981594, 0.03064684569835663, -0.00816801842302084, -0.03652733191847801, -0.04758068919181824, -0.012968787923455238, -0.017482854425907135, -0.00840592198073864, 0.006838199216872454, -0.013651997782289982, 0.00797281600534916, -0.006612495984882116, -0.01689724437892437, 0.03152525797486305, 0.0015234971651807427, 0.010717855766415596, -0.0194470826536417, 0.009650340303778648, 0.0031445955391973257, -0.009046431630849838, 0.01213917601853609, 0.027303995564579964, -0.0007861488847993314, 0.03220846876502037, 0.052314359694719315, -0.0277188029140234, -0.022863131016492844, 0.015030617825686932, 0.007960615679621696, 0.009985844604671001, 0.019044475629925728, -0.019068876281380653, 0.01453041099011898, 0.012919987551867962, -0.020898902788758278, -0.001220017671585083, 0.015396623872220516, -0.013188390992581844, -0.004514065571129322, 0.030427241697907448, 0.004562866408377886, 0.003114095190539956, -0.013590997084975243, 0.0004140435194130987, -0.021789515390992165, -0.021435711532831192, -0.04997192695736885, 0.043603431433439255, 0.0063074915669858456, 0.016872845590114594, -0.006209890358150005, -0.034209296107292175, 0.02388794720172882, 0.03245247155427933, -0.04087059199810028, -0.017836658284068108, -0.013310393318533897, -0.0024171601980924606, -0.002774015301838517, -0.02732839621603489, -0.019947290420532227, -0.05133834481239319, 0.0022402575705200434, 0.004739768803119659, 0.013102990575134754, -0.014493810012936592, -0.008540123701095581, 0.021094106137752533, 0.015457624569535255, 0.0012154426658526063, 0.013920402154326439, -0.025815574452280998, 0.0027785904239863157, 0.02453455701470375, 0.0013290568022057414, -0.04082179069519043, -0.05738963186740875, -0.01159626804292202, -0.013603197410702705, 0.043871838599443436, 0.0351853109896183, 0.053485576063394547, 0.0071432036347687244, 0.016226235777139664, 0.011236363090574741, -0.016628840938210487, -0.016348237171769142, -0.02194811776280403, -0.018349066376686096, 0.0043432628735899925, 0.0050142728723585606, -0.013908201828598976, -0.0065270946361124516, -0.029890432953834534, 0.04858110472559929, -0.024802960455417633, 0.004010808188468218, -0.012517381459474564, -0.009564938955008984, -0.011193662881851196, 0.01616523414850235, -0.0037759547121822834, 0.025205565616488457, 0.02788960561156273, -0.0165922399610281, 0.022533727809786797, 0.007850813679397106, -0.017141249030828476, 0.028694815933704376, -0.0013077064650133252, -0.008216818794608116, 0.041065797209739685, -0.010662954300642014, 0.006459993775933981, -0.0036905535962432623, 0.03486810624599457, -0.03716173768043518, -0.009083031676709652, 0.020203493535518646, -0.05485199764370918, 0.018031861633062363, 0.003937607165426016, 0.028646016493439674, -0.022216523066163063, 0.008613324724137783, -0.013078589923679829, -0.0018986525246873498, 0.01002244558185339, -0.008247319608926773, 0.019642286002635956, 0.029256025329232216, -0.005541930440813303, 0.003952857572585344, -0.013200591318309307, 0.028206808492541313, -0.01888587325811386, 0.00918063335120678, 0.005477879662066698, 0.0071432036347687244, -0.01740965247154236, 0.013725198805332184, 0.029256025329232216, 0.006283091381192207, -0.02625478059053421, -0.004193810746073723, 0.013005388900637627, 0.0014998592669144273, 0.001509771915152669, 0.032794076949357986, -0.02366834320127964, -0.015970032662153244, 0.019544683396816254, -0.02461995743215084, -0.02380254492163658, 0.02150891162455082, -0.02241172455251217, 0.03250127285718918, -0.01273698452860117, -0.026889190077781677, 0.00025372556410729885, 0.05021592974662781, 0.02160651423037052, -0.02444915473461151, 0.015970032662153244, -0.03918696939945221, 0.03721053898334503, -0.018263665959239006, -0.006954100914299488, -0.008753626607358456, 0.022570326924324036, -0.06929700821638107, -0.04587266594171524, 0.03891856595873833, 0.0064538936130702496, 0.02307053469121456, -0.02427835203707218, 0.036063723266124725, 0.0361369252204895, 0.025327567011117935, -0.0199228897690773, 0.020118091255426407, -0.011437665671110153, -0.017531653866171837, -0.04048018902540207, 0.02121610753238201, 0.025205565616488457, 0.050069525837898254, -0.012462480925023556, -0.017129048705101013, -0.028524013236165047, -0.027303995564579964, -0.01284678652882576, -0.0015227346448227763, -0.010339650325477123, -0.004816019907593727, -0.0018376517109572887, 0.01590903103351593, 0.0323304682970047, -0.00913793221116066, -0.030793247744441032, -0.01806846261024475, -0.014811014756560326, -0.056072015315294266, 0.022216523066163063, 0.00954663846641779, 0.020325494930148125, 0.0055510806851089, -0.03811335191130638, 0.02491276152431965, -0.01099235936999321, 0.02371714450418949, -0.014005803503096104, 0.031403254717588425, 0.0016637991648167372, -0.014432809315621853, -0.03194006532430649, -0.02470535784959793, -0.03018323890864849, 0.015469824895262718, -0.01737305149435997, -0.04655587673187256, 0.0021319808438420296, 0.05104554072022438, -0.013249392621219158, -0.046458274126052856, 0.00107514054980129, -0.017556054517626762, 0.030524842441082, -0.052363160997629166, -0.023765945807099342, 0.0005459579406306148, 0.012425879947841167, 0.020935503765940666, 0.0024537607096135616, 0.024607757106423378, -0.026889190077781677, -0.013310393318533897, 0.008418122306466103, -0.06539294868707657, 0.0024202100466936827, 0.025839975103735924, -0.0005421453970484436, -0.021569913253188133, 0.03850375860929489, -0.00042776871123351157, 0.01116316206753254, 0.0009470387594774365, -0.0267671886831522, 0.02072810009121895, -0.013346993364393711, 0.023778144270181656, 0.018458867445588112, 0.01633603684604168, -0.003989458084106445, 0.04806869849562645, 0.061049684882164, -0.018934674561023712, 0.006097038276493549, -0.02086230367422104, -0.020191293209791183, 0.0180196613073349, 0.005206425674259663, -0.02574237436056137, 0.02021569386124611, -0.030061235651373863, 0.014823215082287788, -0.031744860112667084, 0.01750725321471691, 0.003248297143727541, 0.01629943586885929, -0.032306067645549774, 0.0045659164898097515, -0.004303612280637026, -0.014213206246495247, 0.01442060898989439, -0.016799643635749817, -0.010839857161045074, -0.01858086884021759, -0.028353212401270866, 0.025449570268392563, 0.0027999405283480883, -0.008387621492147446, -0.03523411229252815, 0.03501450642943382, -0.009583239443600178, 0.004398163873702288, -0.008046017028391361, 0.00444086454808712, -0.003693603677675128, -0.04172460734844208, -0.004276162013411522, -0.01459141168743372, -0.022082321345806122, 0.01871507242321968, -0.010040746070444584, -0.018519869074225426, 0.007399407215416431, 0.02940242737531662, -0.034770503640174866, 0.035844121128320694, 0.005834734532982111, 0.005178974941372871, -0.010974058881402016, -0.04743428900837898, 0.01301758922636509, -0.02810920774936676, 0.0028228159062564373, 0.02889001928269863, -0.03086644783616066, 0.007429908029735088, 0.02242392487823963, 0.0014960466651245952, 0.02293633297085762, -0.01676304265856743, -0.027621200308203697, -0.015274621546268463, -0.008143617771565914, -0.01388380117714405, 0.025961976498365402, -0.01862967014312744, 0.0203010942786932, 0.01055925339460373, -0.002089280402287841, 0.02181391604244709, -0.011285163462162018, -0.00968084018677473, 0.006011637393385172, 0.0005760770873166621, -0.0537295788526535, 0.014945216476917267, 0.0315740592777729, -0.013139590620994568, -0.016189634799957275, -0.017129048705101013, 0.0032086465507745743, 0.025400768965482712, -0.020850103348493576, 0.018556470051407814, 0.02535196766257286, 0.022387325763702393, -0.010364050045609474, 0.011047259904444218, -0.014298607595264912, -0.006551495287567377, -0.014933017082512379, 0.049117911607027054, -0.012712584808468819, 0.004950221627950668, 0.030232038348913193, 0.010547053068876266, -0.018934674561023712, -0.01442060898989439, -0.002197556896135211, -0.028255609795451164, 0.050459932535886765, 0.013590997084975243, 0.012011074461042881, 0.013176191598176956, 0.020898902788758278, 0.02302173338830471, -0.0003623833763413131, 0.0045201657339930534, 0.03767414763569832, -0.0101505471393466, -3.259734876337461e-05, -0.01374959945678711, 0.03967497497797012, -0.009156232699751854, 0.017055846750736237, 0.03828415647149086, 0.028133608400821686, -0.004511015489697456, -0.01677524298429489, 0.018507668748497963, -0.010656855069100857, -0.01871507242321968, 0.02513236552476883, 0.024851759895682335, -0.003678353503346443, 0.03406289592385292, -0.0323304682970047, 0.054119985550642014, -0.002920417347922921, 0.011510866694152355, -0.0030500441789627075, -0.003693603677675128, -0.0388941653072834, -0.00642339326441288, -0.015665028244256973, 0.03440449759364128, -0.03501450642943382, -0.03167165815830231, 0.019300680607557297, 0.03674693405628204, 0.01351779606193304, -0.012291678227484226, -0.008180218748748302, 0.03030524030327797, -0.020032690837979317, 0.004791619721800089, 0.025278767570853233, -0.026181580498814583, 0.003644802840426564, 0.016933845356106758, 0.009644240140914917, 0.016531240195035934, 0.0032909978181123734, 0.026181580498814583, 0.005056973546743393, 0.021142907440662384, -0.014432809315621853, -0.0044469647109508514, 0.01875167153775692, -0.017531653866171837, -0.015055018477141857, -0.03547811508178711, 0.025961976498365402, 0.0011933298083022237, 0.01351779606193304, -0.020362095907330513, 0.005172875244170427, -0.004578116349875927, 0.008552324026823044, -0.009113532491028309, 0.007173703983426094, -0.05031352862715721, 0.04170020669698715, 0.019605685025453568, 0.007204204332083464, -0.008369321934878826, -0.014933017082512379, 0.014603612013161182, -0.011852472089231014, 0.008570624515414238, -0.011053360067307949, 0.004141960293054581, 0.01599443145096302, -0.021716315299272537, 0.0171656496822834, -0.059292860329151154, 0.002221957314759493, -0.018129462376236916, -0.01357879675924778, -0.005099674221128225, -0.005328427534550428, 0.02749919891357422, -0.024668758735060692, 0.003005818696692586, -0.014713414013385773, -0.01975208707153797, -0.01152916718274355, -0.03350168466567993, -0.042188212275505066, 0.027133194729685783, 0.0009691515588201582, 0.018910273909568787, 0.022216523066163063, 0.012907787226140499, -0.008869528770446777, 0.03350168466567993, 0.03755214437842369, 0.003068344434723258, -0.00582863437011838, 0.004855670500546694, 0.007454308215528727, 0.023265738040208817, 0.012895586900413036, 0.001332106883637607, 0.006228190381079912, 0.03264767304062843, -0.027255196124315262, 0.02974403090775013, -0.007765412796288729, 0.00642339326441288, -0.01159626804292202, 0.005090523976832628, 0.004035208374261856, 0.005288776941597462, 0.010791056789457798, 0.024766359478235245, 0.002702339319512248, -0.022216523066163063, 0.028865618631243706, 0.0009752516634762287, -0.009192833676934242, -0.027352796867489815, 0.0049410718493163586, -0.0009821142302826047, -0.003958957269787788, -0.01892247423529625, 0.007320106029510498, -0.010571453720331192, -0.012517381459474564, 0.0111021613702178, -0.0030012435745447874, -0.012047674506902695, 0.025937575846910477, 0.0047123185358941555, -0.02069150097668171, -0.011242463253438473, -0.025400768965482712, 0.008954930119216442, -0.026230379939079285, -0.008283920586109161, 0.011486466974020004, 0.030890848487615585, 0.0014716463629156351, 0.016140833497047424, -0.01819046400487423, 0.008088717237114906, -0.04728788509964943, -0.003565501654520631, -0.0002308502298546955, 0.010412851348519325, 0.03723493963479996, -0.017348652705550194, -0.03928457200527191, -0.02034989558160305, 0.007307906169444323, -0.01965448446571827, 0.060854483395814896, -0.006911400239914656, -0.026108378544449806, 0.0004022245993837714, -0.02082570269703865, -0.0020084541756659746, -0.0052979267202317715, 0.06300171464681625, -0.026620786637067795, 0.007472608238458633, 5.013510235585272e-05, -0.0005070698680356145, -0.010467751882970333, -0.019044475629925728, -0.03035403974354267, 0.019215278327465057, 0.005236926022917032, 0.031622860580682755, 0.002345483982935548, -0.015042818151414394, -0.0015128219965845346, -0.012212377041578293, 0.018044061958789825, 0.0032787974923849106, 0.027450397610664368, -0.01973988674581051, 0.018739471212029457, 0.024985963478684425, 0.0015067218337208033, -0.026669587939977646, 0.021789515390992165, -0.013468995690345764, 0.011523067019879818, -0.033208880573511124, -0.008735327050089836, 0.009150132536888123, 0.02074030041694641, -0.0003267359861638397, -0.01332259364426136, 0.010894757695496082, -0.004157210234552622, -0.0099126435816288, -0.037015337496995926, 0.037918150424957275, 0.031110450625419617, 0.03979697823524475, -0.039333369582891464, -0.003019543830305338, 0.02094770409166813, 0.017726857215166092, 0.0049410718493163586, -0.01129126362502575, 0.005877435207366943, -0.010900857858359814, 0.021313710138201714, 0.021411310881376266, 0.015030617825686932, 0.0023607341572642326, -0.010900857858359814, 0.011590167880058289, -0.028865618631243706, 0.008058217354118824, -0.005846934858709574, 0.02094770409166813, 0.01045555155724287, -0.018458867445588112, 0.00978454202413559, 0.014030203223228455, -0.002103005535900593, 0.0015486599877476692, 0.014689013361930847, -0.015323422849178314, 0.004526265896856785, 0.02228972315788269, -0.018397867679595947, 0.028304411098361015, -0.0295244287699461, -0.0071798041462898254, 0.016275037080049515, 0.015677226707339287, -0.0033611487597227097, -0.02703559212386608, -0.0006599533371627331, 0.027840804308652878, 0.0030027686152607203, -0.014213206246495247, 0.006139738950878382, 0.013481196016073227, -0.015042818151414394, -0.0162140354514122, 0.06178169697523117, -0.018507668748497963, -0.019081076607108116, -0.0010339650325477123, 0.003522801212966442, 0.0012993188574910164, -0.019081076607108116, -0.002700814278796315, 0.021704114973545074, 0.012492981739342213, 0.012639383785426617, -0.024632157757878304, -0.006819899193942547, 0.018178263679146767, -0.0425054170191288, -0.0018864524317905307, -0.030036836862564087, 0.017751257866621017, -0.029597628861665726, -0.007234705146402121, 0.006569795310497284, -0.008973230607807636, 0.0011719794711098075, -0.006459993775933981, -0.011279063299298286, -0.006069588009268045, 0.04928871616721153, -0.013493395410478115, 0.002255507744848728, 0.003962007351219654, 0.008485223166644573, -0.021277109161019325, 0.04004098102450371, -0.014847615733742714, -0.012639383785426617, 0.027572400867938995, -0.013920402154326439, -0.015762628987431526, 0.010858157649636269, -0.02017909288406372, -0.0005981899448670447, 0.02591317519545555, 0.0057401834055781364, -0.014323008246719837, -0.023912347853183746, -0.0013641322730109096, 0.023082735016942024, 0.025937575846910477, 0.013139590620994568, -0.004059609025716782, -0.005837784614413977, -0.005575480870902538, -0.037137340754270554, 0.0018803522689267993, 0.01841006800532341, -0.005246076267212629, -0.03599052131175995, -0.013176191598176956, 0.0034251997712999582, 0.024717558175325394, -0.002619988052174449, 0.05885365605354309, -0.04557986184954643, 0.0004792381951119751, -0.012761385180056095, 0.016189634799957275, -0.031842462718486786, -0.00883902795612812, 0.02327793836593628, 0.02461995743215084, -0.00022455950966104865, -0.0009523763437755406, 0.034599702805280685, -0.0026123628485947847, 0.03523411229252815, 0.017787858843803406, -0.01917867921292782, -0.02698679082095623, 0.0029112673364579678, -0.004023008514195681, -0.04284702241420746, -0.0304760430008173, -0.013481196016073227, 0.01153526734560728, -0.01069345511496067, -0.01241368055343628, 0.0277188029140234, 0.03716173768043518, -0.025839975103735924, -0.0023836095351725817, 0.005575480870902538, 0.012248978018760681, 0.007173703983426094, -0.025254366919398308, -0.01655564084649086, -0.011809770949184895, -0.01862967014312744, -0.007192004472017288, 0.05041113123297691, -0.02962202951312065, -0.006972401402890682, -0.03930896893143654, 0.01123026292771101, -0.028426412492990494, 0.010986259207129478, -0.02072810009121895, -0.012346578761935234, 0.027230795472860336, 0.030793247744441032, -0.0024110600352287292, -0.031061651185154915, -0.025547171011567116, 0.015042818151414394, -0.004831270314753056, -0.023009533062577248, -0.013237192295491695, 0.011016760021448135, -0.0001839557953644544, 0.03935777023434639, 0.0077471123076975346, -0.004425614140927792, -0.0023698844015598297, 0.030549243092536926, 0.0018041011644527316, 0.02150891162455082, 0.015225821174681187, 0.01694604568183422, 0.01218187715858221, 0.035624515265226364, -4.65608318336308e-05, -0.028182409703731537, -0.009436837397515774, 0.013639798387885094, 0.0008593499660491943, -0.01715344935655594, 0.038650162518024445, -0.01241368055343628, -0.024424754083156586, 0.03779614716768265, 0.01810506358742714, 0.021447911858558655, 0.0036631030961871147, -0.002499511232599616, -0.03762534633278847, 0.030036836862564087, -0.010614153929054737, -0.005191175267100334, -0.021289309486746788, -0.02664518728852272, 0.026840388774871826, 0.043774235993623734, -0.019459282979369164, -0.028402011841535568, 0.018202664330601692, -0.018690671771764755, -0.0019047526875510812, -0.009949244558811188, -0.010705655440688133, 0.016140833497047424, -0.013871601782739162, 0.020081492140889168, 0.004898371174931526, -0.029939234256744385, -0.021240508183836937, -0.0034343497827649117, 0.002232632366940379, -0.020618299022316933, -0.027987206354737282, -0.015457624569535255, -0.00480686966329813, 0.016433637589216232, -0.025376368314027786, 0.0415538027882576, 0.02720639482140541, -0.013139590620994568, 0.020362095907330513, 0.003632602747529745, 0.027255196124315262, -0.0022372074890881777, 0.01476221438497305, -0.010845957323908806, -0.02224092371761799, -0.020496297627687454, -0.010888658463954926, -0.02026449330151081, 0.01103506051003933, 0.03862576186656952, -0.010382350534200668, 0.007795913144946098, 0.006551495287567377, 0.0011628293432295322, -0.024388153105974197, -0.005200325511395931, 0.026132779195904732, 0.007991115562617779, 0.001143004046753049, 0.029841633513569832, 0.005874385125935078, -0.026840388774871826, -0.037186138331890106, -0.010504352860152721, -0.01750725321471691, -0.01230997871607542, -0.006533194798976183, 0.027401598170399666, 0.01633603684604168, 0.010242048650979996, 0.008363221772015095, -0.006051287986338139, -0.02586437575519085, -0.020667100325226784, -0.021996919065713882, 0.049215514212846756, 0.011828071437776089, -0.0003147264360450208, 0.00376680470071733, -0.007704411633312702, 0.004157210234552622, 0.0006435593240894377, -0.016458038240671158, 0.005480929743498564, 0.0019779535941779613, 0.0016317736590281129, -0.017580455169081688, -0.01797086000442505, 0.020874502137303352, 0.03001243621110916, 0.012395380064845085, 0.0343312993645668, 0.019849687814712524, -0.013896001502871513, 0.02918282337486744, 0.018080662935972214, -0.007515308912843466, 0.07539709657430649, -0.0007514546741731465, 0.02418075129389763, 0.018824873492121696, -0.0026626887265592813, 0.0071066031232476234, 0.03289167582988739, -0.03725934028625488, 0.035160910338163376, 0.008564524352550507, -0.028182409703731537, -0.030524842441082, -0.04963032156229019, -0.03799135237932205, -0.02211892046034336, -0.012212377041578293, -0.008283920586109161, -0.011956173926591873, 0.0324280709028244, 0.013786200433969498, -0.003382499096915126, 0.00220975698903203, 0.024888360872864723, -0.014335207641124725, -0.04372543469071388, 0.025888776406645775, -0.011144861578941345, 0.03635652735829353, -0.00702730193734169, 0.02935362607240677, 0.05114314332604408, 0.014018003828823566, 0.006581995636224747, -0.016567841172218323, 0.014884215779602528, -0.058609649538993835, 0.017739057540893555, 0.0083449212834239, -0.0005612081731669605, 0.04245661571621895, -0.0008921379339881241, -0.051923952996730804, 0.013188390992581844, -0.017360851168632507, 0.00860112439841032, 0.017580455169081688, 0.0011231787502765656, -0.0021411310881376266, 0.006734497845172882, -0.027987206354737282, 0.02371714450418949, -0.012822385877370834, 0.008430322632193565, 0.014567011035978794, -0.03289167582988739, 0.0007320106378756464, 0.010778856463730335, -0.02884121797978878, 0.02422955259680748, -0.031622860580682755, 0.013127390295267105, -0.04548225924372673, 0.020752500742673874, -0.009125732816755772, -0.006771098356693983], [0.01933763176202774, 0.04389844089746475, 0.03513774648308754, 0.03613489866256714, -0.022970115765929222, 0.02219850942492485, -0.04707983136177063, -0.009283012710511684, 0.018827185034751892, 0.027967747300863266, -0.02269708551466465, 0.0049976324662566185, 0.015491473488509655, 0.030223211273550987, -0.011158608831465244, -0.05299152061343193, 0.03411685302853584, -0.0071047102101147175, -0.024311522021889687, 0.029059866443276405, 0.003973770420998335, 0.07530874013900757, -0.030057018622756004, 0.019278276711702347, -0.00108544179238379, -0.009591655805706978, 0.02879870869219303, 0.0015461796429008245, 0.05094973370432854, 0.0088734682649374, 0.08471046388149261, -0.02034665457904339, -0.007122516166418791, 0.014185678213834763, 0.032621126621961594, -0.07454900443553925, -0.008618244901299477, 0.017592614516615868, 0.009496688842773438, -0.01590695232152939, -0.017604487016797066, -0.03304847702383995, -0.0207146517932415, -0.058167215436697006, -0.044064633548259735, 0.059164367616176605, -0.01991930417716503, -0.026899369433522224, 0.008262119255959988, 0.02209167182445526, -0.013366589322686195, 0.01030984241515398, 0.001320633222348988, 0.030128244310617447, 0.02447771467268467, 0.0027570074889808893, -0.015633923932909966, 0.03198009729385376, -0.024928808212280273, -0.022958245128393173, 0.03820043057203293, -0.003531581023707986, -0.032312482595443726, 0.027374204248189926, -0.015728890895843506, 0.013437814079225063, -0.013200396671891212, -0.03119662217795849, -0.06457748264074326, 0.0006250750157050788, 0.03235996514558792, 0.011817441321909428, -0.0162749495357275, -0.015147218480706215, -0.02692311257123947, -0.00570098077878356, -0.00893282238394022, 0.033095959573984146, 0.019373243674635887, -0.013247880153357983, -0.017307715490460396, 0.05360880494117737, -0.006012591067701578, 0.04995258152484894, -0.036253608763217926, 0.02516622468829155, -0.06348536163568497, -0.018530413508415222, -0.05261165276169777, -0.031149137765169144, -0.05954423546791077, 0.0021961091551929712, 0.011864924803376198, 0.016263078898191452, -0.034283045679330826, -0.001914176275022328, 0.012654337100684643, -0.0008858629735186696, -0.02260211855173111, 0.0592118538916111, 0.04496682062745094, -0.03088798001408577, -0.05071231722831726, 0.04529920592904091, 0.04320993274450302, -0.040408410131931305, -0.04358980059623718, 0.04477688670158386, 0.005938398186117411, 0.009377979673445225, 0.06329543143510818, 0.008938757702708244, -0.02140316180884838, 0.07013304531574249, -0.031030429527163506, -0.007864445447921753, -0.011799635365605354, 0.01904086023569107, 0.014482449740171432, -0.0026368149556219578, -0.02932102605700493, -0.014707996509969234, 0.018079319968819618, -0.02803897298872471, -0.0069325827062129974, 0.005896850023418665, -0.004792859777808189, -0.017545131966471672, 0.015491473488509655, -0.03741695359349251, 0.03425930440425873, -0.04095447063446045, 0.006997872143983841, -0.027469171211123466, -0.014256903901696205, 0.04871801286935806, 0.0020521751139312983, 0.0015172443818300962, -0.01569327712059021, 0.0013651489280164242, 0.02358740009367466, 0.007811026182025671, 0.033499568700790405, 0.03179016336798668, -0.06391271203756332, -0.0453941710293293, -0.0187678299844265, -0.0008673147531226277, -0.03404562920331955, 0.02241218462586403, -0.010161456651985645, 0.026187118142843246, 0.012096406891942024, 0.03416433557868004, 0.0015921791782602668, 0.014672383666038513, 0.058452118188142776, 0.030057018622756004, 0.010458228178322315, 0.012962980195879936, -0.03228874132037163, 0.001574372872710228, -0.001193021540530026, -0.06277310848236084, 0.023860430344939232, -0.007021613884717226, 0.02998579479753971, -0.014399354346096516, -0.005098534747958183, -0.05854708328843117, -0.04261638969182968, 0.02801523171365261, -0.024905065074563026, 0.003427711082622409, -0.05470092594623566, -0.01188866700977087, -0.0207146517932415, 0.015159089118242264, -0.03801049664616585, -0.016702301800251007, 0.01925453543663025, 0.051851920783519745, -0.0641501322388649, -0.03620612621307373, -0.0014972123317420483, -0.005552595015615225, 0.0005586723564192653, -0.005519950296729803, -0.07625840604305267, -0.013342847116291523, 0.02140316180884838, 0.006831680424511433, 0.004012350924313068, 0.03319092467427254, 0.011146738193929195, -0.021664321422576904, -0.02822890691459179, 0.020987682044506073, 0.04311496391892433, 0.014529933221638203, 0.019990529865026474, -0.03896016627550125, -0.016714172437787056, 0.038532812148332596, -0.05878450348973274, 0.03658599406480789, 0.030057018622756004, -0.0035256457049399614, 0.03915009647607803, 0.0017420487711206079, 0.013141042552888393, -0.014458708465099335, -0.003952996805310249, -0.005757367238402367, 0.050000064074993134, -0.003258551238104701, 0.023706108331680298, 0.018399834632873535, 0.05052238330245018, 0.011740281246602535, -0.03703708574175835, -0.05337138846516609, 0.031244104728102684, -0.00020365945238154382, -0.020655296742916107, -0.017830032855272293, -0.03404562920331955, 0.015443990007042885, 0.024905065074563026, -0.0024394618812948465, -0.012820529751479626, 0.0013540200889110565, -0.009146498516201973, -0.06462496519088745, -0.013034204952418804, 0.011443509720265865, 0.008469859138131142, -0.019396986812353134, -0.04480062797665596, 0.02122509852051735, -0.008315538056194782, 0.005472466815263033, -0.020667169243097305, -0.01026235893368721, 0.011117060668766499, -0.00972817000001669, -0.002062561921775341, -0.010054619051516056, 0.03205132484436035, -0.014150066301226616, 0.022661473602056503, 0.013972003012895584, 0.059164367616176605, -0.0394587405025959, 0.002770362189039588, -0.004991696681827307, 0.033119700849056244, -0.0532764233648777, 0.01883905567228794, -0.0006899937870912254, 0.007864445447921753, 0.048812977969646454, -0.00013447459787130356, -0.01007242500782013, -0.02585473470389843, -0.012951108627021313, 0.033689502626657486, -0.05365629121661186, -0.002507719211280346, -0.0019275309750810266, 0.0011195705737918615, 0.010066489689052105, 0.05094973370432854, -0.060161519795656204, -0.052944038063287735, 0.01786564476788044, 0.01964627392590046, -0.012238857336342335, 0.00017713550187181681, -0.027967747300863266, -0.016049403697252274, -0.000617284735199064, 0.04764963313937187, -0.06429257988929749, -0.021640578284859657, -0.0005723980721086264, -0.0024824936408549547, 0.008695404976606369, 0.0345679447054863, -0.004724602680653334, 0.04788705334067345, 0.011971763335168362, 0.0036710635758936405, 0.0022524958476424217, 0.02792026475071907, -0.016037533059716225, -0.033095959573984146, 0.058452118188142776, -0.021972963586449623, -0.07274463027715683, -0.008582632057368755, 0.0044011217541992664, 0.028537549078464508, -0.02002614177763462, -0.015052251517772675, 0.0018206932581961155, 0.0434473492205143, 0.029439734295010567, -0.03188513219356537, -0.030270693823695183, 0.02535615861415863, -0.0048848590813577175, -0.0054220156744122505, -0.08741701394319534, 0.035066522657871246, 0.0048848590813577175, -0.013675231486558914, -0.029558442533016205, 0.00562382023781538, 0.018589768558740616, 0.03285854309797287, 0.029748376458883286, 0.02350430376827717, -0.032906025648117065, -0.006398393772542477, -0.03050811216235161, 0.019859949126839638, 0.032312482595443726, -0.018482929095625877, -0.03967241570353508, -0.053133971989154816, 0.018625380471348763, -0.012007375247776508, 0.04501430317759514, -0.01697533018887043, -0.03228874132037163, 0.02929728478193283, -0.010600678622722626, -0.012927367351949215, -0.04648629203438759, -0.03760688751935959, -0.0022836567368358374, 0.030816754326224327, 0.03858029842376709, -0.0364910252392292, 0.016524238511919975, 0.006089751608669758, 0.032526157796382904, -0.011111125349998474, 0.05474840849637985, -0.0057425289414823055, 0.016607334837317467, -0.05052238330245018, 0.008766630664467812, -0.017497649416327477, -0.0414530448615551, 0.021094519644975662, 0.009793460369110107, -0.012464404106140137, 0.015159089118242264, -0.014648642390966415, -0.03580251708626747, -0.02832387387752533, 0.03117288090288639, 0.05731251463294029, 0.0011648281943053007, -0.03243119269609451, -0.03378446772694588, 0.04185665398836136, 0.01934950239956379, 0.015420247800648212, 0.009924039244651794, -0.0033357117790728807, -0.07706562429666519, 0.012500016018748283, 0.030840495601296425, -0.0345679447054863, -0.010208940133452415, 0.02682814560830593, -0.0034336464013904333, -0.006588327698409557, -0.009235529229044914, 0.02133193612098694, 0.021047035232186317, -0.004193381406366825, 0.003599838586524129, -0.02101142331957817, -0.05968668684363365, -0.001127731753513217, 0.002323721069842577, 0.04351857677102089, -0.009579784236848354, 0.026400793343782425, 0.05042741447687149, -0.05940178781747818, 0.012286340817809105, 0.008920951746404171, 0.03798675537109375, -7.65577788115479e-05, -0.014375612139701843, -0.023824816569685936, -0.03779682144522667, -0.0172721017152071, 0.028988640755414963, 0.01204298809170723, 0.0022925599478185177, 0.033689502626657486, 0.02932102605700493, -0.0034128723200410604, -0.027849039062857628, 0.021676192060112953, 0.04817195236682892, 0.03129158914089203, 0.024228425696492195, 0.025522349402308464, -0.018138675019145012, 0.02279205247759819, -0.05023748055100441, 0.001490534981712699, -0.019693758338689804, 0.049382779747247696, 0.003745256457477808, -0.00010906353418249637, -0.0022257864475250244, -0.019966786727309227, -0.010630356147885323, -0.01658359169960022, -0.04273509979248047, 0.019859949126839638, -0.048195693641901016, -0.014411224983632565, 0.0375119186937809, 0.020880844444036484, 0.004760215058922768, -0.05341887101531029, -0.02179490029811859, -0.048361886292696, -0.014767350628972054, -0.019195182248950005, 0.019812466576695442, 0.001679726759903133, -0.02547486685216427, 0.026495760306715965, 0.02064342610538006, -0.030057018622756004, -0.03836662322282791, 0.0039678351022303104, 0.018019966781139374, 0.02240031398832798, -0.04582152143120766, -0.006600198335945606, 0.00852921325713396, 0.007466771174222231, -0.000500430993270129, 0.022851407527923584, -0.046723708510398865, -0.025973442941904068, -0.03333337604999542, -0.018221771344542503, -0.0038877069018781185, 0.006582392379641533, 0.05968668684363365, 0.006303426809608936, 0.022863278165459633, -0.03644354268908501, 0.01963440328836441, 0.029843343421816826, -0.028181422501802444, 0.001593663007952273, -0.032217517495155334, -0.018079319968819618, -0.0651472806930542, -0.009069337509572506, -0.0512821190059185, 0.02979586087167263, -0.021450644358992577, 0.04173794761300087, 0.01964627392590046, -0.001618888578377664, 0.04764963313937187, -0.011081448756158352, 0.020251687616109848, -0.061443574726581573, -0.010292036458849907, 0.02241218462586403, 0.05773986503481865, 0.027564138174057007, 0.02556983381509781, -0.02920231781899929, -0.004273509606719017, -0.032906025648117065, -0.03088798001408577, -0.014767350628972054, -0.01099835243076086, -0.014909801073372364, -0.009116820991039276, -0.02367049641907215, 0.011330736801028252, 0.03297724947333336, 0.0010594743071123958, 0.06343787908554077, -0.004674151539802551, -0.03316718339920044, -0.03836662322282791, 0.030175726860761642, -0.00868353433907032, 0.04133433848619461, 0.020892715081572533, 0.003365389071404934, -0.0038728683721274137, 0.0014727286761626601, -0.030721787363290787, -0.007721995003521442, -0.0316002294421196, -0.02594970166683197, -0.043945927172899246, 0.015598311088979244, 0.006279685068875551, -0.03758314624428749, 0.016251208260655403, 0.05242171883583069, 0.0007029775297269225, -0.0007775413687340915, 0.03069804608821869, -0.012405049055814743, -0.03739321231842041, 0.008659793063998222, 0.006944453343749046, 0.016037533059716225, -0.046723708510398865, -0.018815314397215843, -0.007828832603991032, -0.04482436925172806, 0.019598791375756264, -0.048599302768707275, 0.0028861030004918575, -0.02723175473511219, 0.022424055263400078, -0.014684254303574562, -0.017307715490460396, 0.043969668447971344, -0.005801883060485125, -0.015432118438184261, -0.02377733401954174, 0.02920231781899929, 0.023860430344939232, 0.04204658791422844, 0.01786564476788044, -0.025427384302020073, -0.01914769783616066, -0.00838676281273365, -0.0162749495357275, -0.021142002195119858, -0.04223652184009552, -0.002619008533656597, 0.043471090495586395, -0.01875595934689045, -0.012915496714413166, -0.0003568677348084748, 0.002357849618420005, -0.004706796258687973, -0.016215596348047256, -0.005852334201335907, 0.007359933573752642, 0.03501904010772705, 0.05261165276169777, -0.00844611693173647, -0.004531701095402241, -0.010861837305128574, 0.02082148939371109, -0.012630595825612545, -0.020168591290712357, 0.02113013155758381, -0.05693264678120613, 0.05009503290057182, 0.003869900479912758, 0.029748376458883286, -0.06524225324392319, -0.004656345117837191, 0.04648629203438759, 0.0037571273278445005, 0.005015438422560692, 0.04627261310815811, 0.007336191833019257, -0.034306786954402924, 0.008861597627401352, -0.007834767922759056, 0.04786330834031105, -0.010695645585656166, -0.009312690235674381, 0.023243146017193794, -0.03632483258843422, 0.015669535845518112, -0.01972937025129795, -0.012084536254405975, 0.027659105136990547, 0.059069402515888214, 0.008784436620771885, -0.01678539626300335, 0.025925960391759872, -0.0008398633799515665, -0.02389604225754738, -0.014874188229441643, 0.0011826344998553395, -0.02732672169804573, -0.03810546174645424, 0.0044248634949326515, -0.009348303079605103, 0.011965827085077763, 0.0026368149556219578, 0.010523517616093159, -0.000830960227176547, -0.0041844784282147884, -0.010345455259084702, -0.026590727269649506, -0.039719898253679276, -0.0008443149854429066, -0.025000032037496567, -0.01193615049123764, -0.03278731554746628, -0.004671183880418539, 0.0008406052947975695, -0.009033724665641785, -0.011942085810005665, -0.0523267537355423, 0.014209420420229435, -0.035683806985616684, -0.02991456910967827, 0.00810186192393303, -0.010387003421783447, -0.03245493397116661, -0.0404321514070034, -0.04114440456032753, -0.04363728314638138, 0.02870374172925949, 0.012832400389015675, -0.004412992391735315, -0.027160529047250748, -0.018708476796746254, 0.014066969975829124, 0.032549899071455, 0.024216555058956146, 0.03603993356227875, -0.026994336396455765, 0.005024341866374016, -0.011111125349998474, -0.0076685757376253605, 0.013046075589954853, 0.04121562838554382, -0.006558650638908148, 0.03240744769573212, 0.06761642545461655, -0.03644354268908501, -0.021830512210726738, -0.004297251347452402, 0.005416080355644226, -0.026115892454981804, 0.013425943441689014, -0.03316718339920044, 0.023148179054260254, -0.0022005608770996332, -0.01866099238395691, 0.03710830956697464, -0.002004691632464528, 0.018103063106536865, -0.012369437143206596, 0.041714202612638474, 0.024501455947756767, 0.0032466803677380085, -0.02042975090444088, -0.01021487545222044, -0.008060314692556858, 0.012571241706609726, -0.020667169243097305, 0.02932102605700493, -0.0031606166157871485, -0.035090263932943344, 0.007431158795952797, -0.018577896058559418, 0.04985761642456055, -0.026661952957510948, -0.008273989893496037, -0.02989082783460617, 0.03098294697701931, 0.003362421179190278, 0.009983393363654613, -0.02002614177763462, 0.0019898531027138233, -0.01135447807610035, 0.021058905869722366, 0.007472706958651543, 0.030033277347683907, 0.001973530510440469, -0.016108758747577667, -0.02082148939371109, 0.032217517495155334, -0.00395002868026495, 0.012808658182621002, -0.028846191242337227, 0.03048437088727951, 0.0012204728554934263, 0.004353638272732496, -0.04154801368713379, -0.04924032837152481, -0.04586900398135185, 0.001512792776338756, 0.005000600125640631, 0.039482481777668, 0.03276357427239418, 0.022934501990675926, -0.016631076112389565, 0.05242171883583069, -0.04088324308395386, 0.005493240896612406, -0.01608501560986042, 0.0007233805954456329, 0.02604466862976551, -0.0022228185553103685, 0.0212132278829813, -0.018981507048010826, -0.026377052068710327, 0.0522792711853981, -0.05674271285533905, 0.0038431910797953606, 0.007870380766689777, -0.026020927354693413, -0.02891741693019867, 0.008238377049565315, 0.022661473602056503, -0.004896730184555054, 0.010220810770988464, -0.020584072917699814, 0.004202284850180149, 0.026566985994577408, -0.013057946227490902, 0.01737893931567669, 0.005917624104768038, 0.016108758747577667, 0.014791091904044151, -0.0016693397192284465, 0.009894362650811672, -0.0035256457049399614, 0.020180463790893555, -0.05698012933135033, -0.004318025428801775, 0.025522349402308464, -0.04522797837853432, -0.007110645528882742, -0.007638898678123951, -0.0015476634725928307, -0.04382721707224846, 0.00785257387906313, -0.02162870764732361, -0.002703588455915451, 0.03663347661495209, -0.04164297878742218, -0.011645314283668995, 0.02180677093565464, 0.01589508168399334, -0.0202398169785738, -0.005695045460015535, 0.009603526443243027, -0.029439734295010567, 0.0004295767575968057, 0.037060827016830444, 0.004068737383931875, -0.01104583591222763, 0.04252142459154129, -0.021082649007439613, -0.01071345154196024, -0.05261165276169777, -0.017545131966471672, -0.019563177600502968, 0.02408597618341446, 0.029582183808088303, -0.010256423614919186, -0.01835235022008419, -0.003665128257125616, -0.013520910404622555, -0.02566480077803135, 0.025878475978970528, 0.0003783836727961898, -0.017022814601659775, 0.06671423465013504, 0.017996225506067276, -0.011882731691002846, 0.014387482777237892, 0.0192426647990942, -0.002875715959817171, -0.004448605235666037, 0.014494320377707481, -0.0081493454053998, -0.000691848574206233, 0.002469138940796256, -0.02378920465707779, -0.052754104137420654, 0.03273983299732208, -0.05109218508005142, -0.004065769724547863, 0.022269735112786293, 0.00567130371928215, 0.01689223386347294, -0.00404499564319849, 0.019112085923552513, 0.03791552782058716, 0.06965821236371994, -0.013793939724564552, -0.000512672821059823, 0.016702301800251007, -0.02259024791419506, -0.011799635365605354, 0.017022814601659775, 0.03608741611242294, 0.006333104334771633, 0.006831680424511433, -0.006517102476209402, -0.030246952548623085, -0.008707276545464993, 0.00429428368806839, -0.01728397235274315, 0.01188866700977087, -0.02033478394150734, 0.006873228121548891, 0.005715819541364908, 0.01188866700977087, -0.0018028869526460767, -0.012630595825612545, -0.005300339311361313, -0.018091192469000816, -0.04871801286935806, 0.009567913599312305, -0.015349023044109344, -0.030911721289157867, 0.016227466985583305, -0.013141042552888393, 0.00947888195514679, -0.03345208615064621, 0.0032852606382220984, 0.011490993201732635, 0.003952996805310249, 0.02632956951856613, -0.011864924803376198, -0.04648629203438759, -0.045441653579473495, -0.01638178713619709, 0.012666208669543266, -0.04608267918229103, -0.010481970384716988, -0.019764982163906097, 0.039719898253679276, -0.023444950580596924, -0.014624900184571743, -0.0008480246178805828, 0.012974850833415985, 0.02732672169804573, -0.015669535845518112, -0.013271622359752655, 0.008380827493965626, 0.010731258429586887, -0.009401721879839897, 0.00938391499221325, 0.018399834632873535, 0.0009756363579072058, 0.005386402830481529, -0.00044218957191333175, -0.047910794615745544, 0.01076093502342701, -0.004282413050532341, -0.006374652031809092, 0.006558650638908148, 0.03558884188532829, -0.008066250011324883, 0.0035671936348080635, 0.00501247076317668, -0.03499529883265495, -0.0032852606382220984, -0.011977698653936386, 0.01875595934689045, 0.0036384188570082188, -0.00010841434414032847, 0.006505231838673353, 0.03691837564110756, 0.05883198603987694, -0.016915977001190186, 0.011924279853701591, -0.02288701944053173, -0.0315764881670475, 0.014351870864629745, -0.0015906953485682607, -0.0027199110481888056, 0.008333344012498856, -0.006742648780345917, -0.013580264523625374, -0.003899577772244811, 0.028941158205270767, -0.021355677396059036, 0.03387943655252457, -0.022435925900936127, 0.028537549078464508, -0.0054576280526816845, -0.043684765696525574, 0.025237450376152992, -0.014494320377707481, 0.018209900707006454, 0.01096273958683014, -0.013544651679694653, -0.012547499500215054, 0.005424983333796263, 0.043091222643852234, -0.01658359169960022, 0.0062025245279073715, -0.025308674201369286, -0.04655751585960388, -0.02250715158879757, 0.030460627749562263, -0.004181510768830776, -0.027160529047250748, -0.011657184921205044, 0.002021013991907239, -0.004285380709916353, 0.061538539826869965, 0.027659105136990547, 0.003745256457477808, 0.017616357654333115, 0.03501904010772705, -0.008113733492791653, -0.01041668001562357, -0.0345204621553421, -0.011835248209536076, -0.007496448699384928, -0.0030374564230442047, 0.046510033309459686, -0.012357565574347973, 0.02476261556148529, 0.005015438422560692, -0.019859949126839638, 0.007929734885692596, -0.0017375971656292677, 0.027849039062857628, -0.0030226178932935, 0.027896521613001823, -0.04719854146242142, 0.010292036458849907, -0.01051164697855711, -0.0009452172671444714, -0.0004028673283755779, -0.008897210471332073, 0.0015817921375855803, 0.027849039062857628, 0.0157763734459877, 0.008190893568098545, -0.02564105950295925, 0.028395097702741623, 0.005199437029659748, -0.014981025829911232, -0.041001953184604645, 0.007591415196657181, -0.033119700849056244, -0.03466291353106499, -0.016417400911450386, -0.016215596348047256, -0.0035286133643239737, 0.011022093705832958, -0.0034188078716397285, -0.006220330949872732, 0.014090711250901222, 0.03176642209291458, -0.010612549260258675, 0.0044011217541992664, 0.0013176655629649758, -0.03535142168402672, -0.039340030401945114, 0.0444207601249218, 0.019670015200972557, -0.01836422085762024, 0.008262119255959988, 0.0009437334374524653, -0.03361827880144119, -0.009253336116671562, -0.008624180220067501, -0.03295350819826126, 0.0227089561522007, 0.022079801186919212, 0.009199917316436768, -0.014209420420229435, 0.05959172174334526, 0.02998579479753971, 0.02160496637225151, 0.002958812052384019, 0.003469259012490511, 0.04432579502463341, -0.0043477024883031845, -0.021949220448732376, 0.01883905567228794, -0.013414072804152966, 0.04814821109175682, 0.01678539626300335, 0.013390330597758293, 0.009627267718315125, -0.0007497190381400287, 0.029938310384750366, -0.00818495824933052, -0.007822897285223007, 0.0226852148771286, -0.01707029715180397, 0.005739561282098293, 0.04195162281394005, 0.01728397235274315, 0.01002494152635336, -0.017913129180669785, 0.008695404976606369, -0.005092599429190159, -0.009662880562245846, -0.007169999647885561, 0.03414059430360794, -0.024216555058956146, 0.01993117481470108, -0.0222103800624609, -0.007834767922759056, 0.03789178654551506, 0.03138655424118042, -0.013057946227490902, -0.003748224349692464, 0.03145778179168701, 0.02249528095126152, 0.012713692151010036, 0.008078120648860931, 0.041595496237277985, -0.0026932014152407646, 0.0212132278829813, 0.009336431510746479, -0.00459105521440506, -0.02408597618341446, 0.0118411835283041, 0.04995258152484894, 0.021094519644975662, 0.0004388508677948266, -0.015527085401117802, 0.015930695459246635, 0.0064874254167079926, -0.050379931926727295, 0.013960132375359535, -0.02932102605700493, 0.015515214763581753, -0.019598791375756264, 0.0057959477417171, -0.030745528638362885, 0.03539890795946121, 0.0025210739113390446, -0.01647675409913063, 0.0016114693135023117, 0.016915977001190186, -0.05341887101531029, 0.04876549541950226, 0.02822890691459179, 0.012701820582151413, -0.01193615049123764, -0.029249800369143486, -0.0004748344363179058, -0.026400793343782425, 0.019195182248950005, -0.007466771174222231, -0.015277797356247902, 0.008303667418658733, 0.038247913122177124, 0.01943259872496128, -0.029344767332077026, -0.013865165412425995, 0.01079654786735773, -0.018684735521674156, 0.0008591535151936114, -0.031030429527163506, 0.006896969862282276, -0.005662400741130114, 0.026305826380848885, -0.02872748300433159, -0.04905039444565773, -0.011146738193929195, -0.00946701131761074, -0.031339071691036224, 0.020667169243097305, -0.0008005411364138126, 0.025736026465892792, 0.02211541309952736, -0.021367549896240234, -0.02675691992044449, 0.020465362817049026, 0.04586900398135185, 0.0043477024883031845, -0.004024221561849117, -0.007787284441292286, 0.026780661195516586, -0.014696125872433186, 0.011128932237625122, 0.038556553423404694, 0.015182830393314362, 0.04867053031921387, -0.025403641164302826, 0.011194221675395966, 0.0005152695230208337, 0.029463475570082664, 0.003579064505174756, -0.01578824408352375, 0.0002201673632953316, -0.004451572895050049, 0.011716539040207863, 0.02910735085606575, 0.03779682144522667, -0.009538236074149609, 0.001681210589595139, 0.021153872832655907, 0.010588807985186577, 0.03480536490678787, -0.01120015699416399, -0.015717020258307457, -0.015930695459246635, -0.017343327403068542, 0.02466764859855175, 0.010772805660963058, 0.00863605085760355, -0.014280645176768303, -0.006653617601841688, -0.012737433426082134, 0.008345214650034904, 0.027564138174057007, -0.00011101109703304246, -0.018827185034751892, 0.03710830956697464, 0.012238857336342335, -0.03535142168402672, -0.03796301409602165, 0.006131299305707216, 0.018708476796746254, -0.000573510944377631, 0.01943259872496128, 0.0006970420945435762, -0.01051164697855711, -0.046130165457725525, -0.03414059430360794, 0.018910281360149384, 0.022079801186919212, 0.015052251517772675, -0.006653617601841688, -0.01786564476788044, -0.007134387269616127, 0.005009503103792667, -0.04354231804609299, 0.062203310430049896, 0.02169993333518505, -0.043874699622392654, 0.023421207442879677, -0.015823857858777046, 0.010553195141255856, 0.009081208147108555, -0.009662880562245846, -0.02742168866097927, -0.004300219472497702, 0.01124764047563076, -0.015645794570446014, 0.04123936966061592, 0.0182692538946867, -0.02822890691459179, 0.012143890373408794, 0.029131092131137848, -0.0020551427733153105, -0.016263078898191452, 0.006333104334771633, 0.007977218367159367, -0.0019438534509390593, 0.004107317887246609, -0.016749784350395203, 0.01589508168399334, -0.025593575090169907, 0.0025433318223804235, 0.0044159600511193275, -0.0016515335300937295, -0.02811019867658615, 0.02080961875617504, -0.010737193748354912, -0.0031190686859190464, -0.008256183937191963, 0.016524238511919975, 0.019575048238039017, -0.027944006025791168, -0.011253575794398785, -0.008256183937191963, 0.046533774584531784, 0.0003715208440553397, 0.002239141147583723, -0.023907912895083427, -0.0012405049055814743, 0.01786564476788044, 0.019076472148299217, -0.02545112557709217, -0.008606374263763428, -0.0017375971656292677, -0.022863278165459633, 0.011805570684373379, 0.013544651679694653, 0.028679998591542244, -0.012678079307079315, -0.001703468500636518, -0.011265446431934834, -0.013877036049962044, -0.022151025012135506, 0.013437814079225063, 0.004641506355255842, -0.027113046497106552, -0.015657665207982063, -0.009288948029279709, -0.009389850310981274, -0.0002183125470764935, 0.005048083607107401, 0.004555442836135626, -0.040906984359025955, 0.016156241297721863, -0.017521390691399574, 0.011081448756158352, -0.011069577187299728, 0.009336431510746479, -0.0031457780860364437, 0.0026086217258125544, 0.03758314624428749, -0.042568907141685486, -0.020394138991832733, 0.005879043601453304, 0.029154833406209946, -0.010476034134626389, -0.04579778015613556, 0.018114933744072914, -0.014862317591905594, 0.0345442034304142, -0.004537636414170265, -0.014791091904044151, 0.013817681930959225, 0.017616357654333115, -0.002538880333304405, 0.03000953607261181, -0.02419281378388405, -0.015325280837714672, -0.01923079416155815, 0.005552595015615225, 0.006083816289901733, -0.024157201871275902, 0.017414553090929985, 0.013758327811956406, 0.012998592108488083, 0.021581225097179413, -0.017830032855272293, -0.024204684421420097, 0.03760688751935959, -0.02488132379949093, 0.002153077395632863, -0.029724635183811188, 0.014019486494362354, -0.02932102605700493, -0.008897210471332073, -0.007621092721819878, -0.019385116174817085, -0.01775880716741085, -0.005436853971332312, -0.015859469771385193, -0.018708476796746254, 0.02042975090444088, -0.006718907039612532, 0.013188526034355164, 0.017818162217736244, 0.004959051962941885, -0.03732198476791382, -0.0030537787824869156, 0.010487905703485012, -0.006647681817412376, 0.0015654697781428695, -0.021486258134245872, -0.020394138991832733, -0.0006766390288248658, 0.006475554313510656, 0.0039233192801475525, 0.007603286299854517, 0.0035879677161574364, 0.024216555058956146, -0.007526125758886337, -0.024596422910690308, -0.0005256565636955202, 0.04093072563409805, 0.007069097366183996, 0.020180463790893555, -0.0004907858674414456, -0.004006415605545044, -0.020892715081572533, -0.012114212848246098, 0.01578824408352375, -0.0014504707651212811, -0.02250715158879757, -0.01188866700977087, -0.012090471573174, 0.0003216261393390596, 0.00042438326636329293, 0.02280392311513424, -0.044943079352378845, -0.0010483453515917063, 0.01589508168399334, 0.001445277244783938, 0.0011670539388433099, -0.008048443123698235, 0.022139154374599457, 0.0014207935892045498, -0.013888906687498093, 0.016025662422180176, 0.023563658818602562, -0.02278018184006214, 0.004258671309798956, 0.04463443532586098, 0.00426460662856698, -0.015159089118242264, 0.007187806069850922, -0.019705628976225853, -0.021153872832655907, -0.013176655396819115, 0.010375131852924824, 0.0020788845140486956, -0.0182455126196146, -0.022364702075719833, 0.015645794570446014, 0.04033718258142471, -0.016441142186522484, -0.013176655396819115, -0.011538476683199406, 0.01035732589662075, 0.034306786954402924, -0.053039006888866425, -0.045916490256786346, -0.009829072281718254, 0.0012716659111902118, -0.0049976324662566185, 0.022578377276659012, -0.021379420533776283, -0.014363741502165794, -9.42249535000883e-05, 0.02396726794540882, 0.008944693021476269, 0.02288701944053173, -0.02623460255563259, 0.01193615049123764, 0.004178543109446764, 0.059069402515888214, 0.012535628862679005, -0.034093111753463745, -0.013330976478755474, -0.018518542870879173, 0.013544651679694653, -0.007983153685927391, -0.029463475570082664, 0.009193981997668743, -0.02594970166683197, -0.006439941935241222, -0.03219377249479294, 0.016512367874383926, 0.02042975090444088, 0.010885579511523247, -0.004994664806872606, 0.00976378284394741, 0.004237897228449583, 0.017628228291869164, 0.022934501990675926, -0.009835007600486279, -0.007537996396422386, -0.02732672169804573, 0.03209880739450455, 0.07611595839262009, -0.009004048071801662, -0.0032051324378699064, 0.014565546065568924, -0.009348303079605103, 0.003558290423825383, 0.010185198858380318, -0.022578377276659012, 0.0542735755443573, 0.012998592108488083, -0.004706796258687973, -0.026590727269649506, 0.0073124500922858715, -0.01179370004683733, 0.0187678299844265, -0.01169873308390379, -0.009793460369110107, -0.0038847392424941063, 0.008113733492791653, 0.009188045747578144, -0.04867053031921387, -0.022151025012135506, -0.02389604225754738, -0.016346175223588943, -0.027160529047250748, -0.02319566160440445, -0.018209900707006454, -0.02526119165122509, 0.016346175223588943, -0.022234121337532997, -0.016120629385113716, -0.0032615188974887133, 0.023836687207221985, -0.02172367461025715, -0.02152187004685402, -0.0001797322474885732, -0.014719867147505283, -0.04886046051979065, -0.021759288385510445, -0.012013310566544533, 0.027184270322322845, 0.029249800369143486, 0.004042027983814478, 0.015871340408921242, -0.002619008533656597, 0.030365660786628723, -0.005772206000983715, -0.0058463988825678825, 0.029463475570082664, 0.027991488575935364, -0.012986721470952034, -0.039933573454618454, -0.04173794761300087, 0.016251208260655403, 0.026092151179909706, 0.0016114693135023117, 0.02941599301993847, 0.04252142459154129, 0.008357086218893528, -0.009561978280544281, -0.017331456765532494, 0.03117288090288639, 0.03772559389472008, -0.0015387602616101503, 0.02675691992044449, 0.01609688624739647, -0.0007078000926412642, -0.03888893872499466, -0.023860430344939232, -0.01932576112449169, 0.016512367874383926, 0.007959412410855293, 0.023812945932149887, 0.045061785727739334, 0.024180943146348, 0.03639606013894081, 0.0007960895891301334, -0.03839036449790001, 0.0079000573605299, 0.0018117900472134352, 0.04451572895050049, 0.009734105318784714, 0.007466771174222231, 0.007092839106917381, 0.011556282639503479, 0.013354717753827572, 0.01735519804060459, -0.016619205474853516, -0.010826224461197853, 0.021236969158053398, -0.0063152979128062725, -0.017984353005886078, -0.018304867669939995, 0.0345204621553421, -0.02782529778778553, -0.016215596348047256, 0.018376091495156288, 0.0040954467840492725, 0.018221771344542503, 0.006986001506447792, 0.015740761533379555, -0.021462516859173775, 0.09055092185735703, 0.009211787953972816, 0.027397945523262024, -0.007555802818387747, -0.027967747300863266, -0.014245032332837582, -0.01688036322593689, -0.0014037293149158359, 0.017913129180669785, -0.0009481849847361445, -0.003869900479912758, -0.028086455538868904, -0.03119662217795849, -0.024738874286413193, 0.004255703650414944, 0.008511407300829887, -0.004136994946748018, -0.001319149392656982, 0.02820516563951969, 0.011164544150233269, 0.004220090806484222, 0.018328608945012093, 0.035185229033231735, 0.026661952957510948, -0.023931654170155525, 0.028442582115530968, 0.026377052068710327, 0.009674751199781895, -0.006018526386469603, 0.01035732589662075, 0.043755993247032166, -0.024097846820950508, -0.00293655414134264, -0.013129171915352345, 0.018589768558740616, -0.03050811216235161, -0.0002442800614517182, -0.006060074549168348, -0.011229834519326687, 0.07060787826776505, -0.010683774948120117, -0.028252648189663887, 0.014411224983632565, -0.014316258020699024, 0.004015318583697081, 0.02556983381509781, -0.004377380013465881, -0.032906025648117065, 0.00784070324152708, 0.0005386403063312173, 0.02811019867658615, -0.014066969975829124, -0.015123476274311543, -0.018387963995337486, -0.020192334428429604, -0.016512367874383926, 0.014862317591905594, -0.01836422085762024, 0.02466764859855175, -0.028347615152597427, 0.00882598478347063, -0.008487665094435215, 0.009033724665641785, -0.015550827607512474, 0.014233161695301533], [0.024128934368491173, 0.03815627098083496, 0.02154369093477726, 0.02376987226307392, -0.046318937093019485, 0.019868070259690285, -0.07425392419099808, -0.02355443686246872, 0.0059843589551746845, -0.013895681127905846, 0.0017145187593996525, -0.0069239032454788685, -0.009150084108114243, 0.029012171551585197, 0.008072899654507637, 0.023386873304843903, 0.007636041846126318, -0.04679768532514572, 0.03032873012125492, -0.014350492507219315, 0.0014766405802220106, 0.05151335895061493, -0.028341922909021378, 0.04373369365930557, -0.06271608173847198, 0.021962596103549004, 0.04143569990992546, 0.04600774869322777, 0.04926324263215065, 0.00216035358607769, 0.07224317640066147, -0.023590343073010445, -0.01930554211139679, 0.010568377561867237, -0.0121542327105999, -0.016492892056703568, 0.011280516162514687, -0.0016666438896209002, 0.004560081288218498, -0.02309962548315525, -0.002072084229439497, -0.031214416027069092, -0.0006392043433152139, -0.024655558168888092, -0.009473240002989769, 0.04122026264667511, -0.002591227414086461, -0.04935899004340172, 0.02333899959921837, -0.007019652985036373, -0.022118190303444862, -0.010891532525420189, -0.02005957067012787, 0.04378156736493111, 0.009640801697969437, 0.04493056610226631, -0.008653382770717144, 0.00549663370475173, -0.017402514815330505, 0.01502074021846056, -0.0010188370943069458, 0.008138728328049183, -0.025158245116472244, -0.009886160492897034, -0.0009971437975764275, 0.029036108404397964, 0.011920842342078686, -0.005059775430709124, 0.0002969737979583442, 0.025876367464661598, 0.025660930201411247, -0.03353634476661682, 0.026857802644371986, -0.02937123365700245, -0.02094525657594204, -0.01405127439647913, 0.0062716081738471985, -0.0013569534057751298, 0.01084964256733656, 0.004563073627650738, -0.01345283817499876, 0.03406297042965889, -0.018539544194936752, 0.03210010007023811, -0.05050798878073692, 0.044978439807891846, -0.02743230015039444, -0.019485071301460266, -0.004410472232848406, -0.04224957153201103, -0.05663597211241722, 0.0180368572473526, 0.03142985329031944, -0.013117714785039425, -0.01267487183213234, 0.012615027837455273, 0.028940359130501747, -0.016588643193244934, -0.020215163007378578, 0.056683845818042755, -0.03547528013586998, -0.001784835010766983, -0.015607208013534546, 0.004928119480609894, 0.03530771657824516, -0.04031063988804817, -0.019544916227459908, 0.013764024712145329, -0.009305678308010101, 0.01267487183213234, 0.06826956570148468, -0.05136973410844803, -0.01901829242706299, 0.05677959695458412, -0.049598366022109985, -0.030280854552984238, -0.01983216404914856, 0.039472829550504684, 0.016576673835515976, 0.02467949502170086, -0.012806527316570282, 0.0105863306671381, 0.03810839727520943, -0.04433212801814079, 0.02563699334859848, 0.013799930922687054, -0.02743230015039444, 0.023063719272613525, -0.008521727286279202, 0.00101509690284729, 0.04586412385106087, -0.002891941461712122, 0.05180060863494873, -0.05677959695458412, -0.01214824803173542, 0.022261815145611763, -0.021124785766005516, -0.029179733246564865, 0.0005621556774713099, 0.026067866012454033, 0.023303093388676643, -0.03444596752524376, 0.07339217513799667, 0.010837674140930176, -0.028006799519062042, 0.021268410608172417, 0.02817436121404171, -0.006624685134738684, 0.029945731163024902, 0.010903501883149147, -0.009664739482104778, 0.027384426444768906, 0.02162747271358967, 0.02355443686246872, 0.004622917156666517, -0.020753756165504456, 0.04658224806189537, 0.019126011058688164, -0.0022561033256351948, -0.018084732815623283, 0.03667214885354042, 0.020310914143919945, -0.0164689552038908, -0.008485821075737476, 0.014769397675991058, 0.024847056716680527, -0.010406799614429474, -0.01595430076122284, -0.025325806811451912, -0.056971095502376556, -0.021555660292506218, 0.01110696978867054, -0.06084895879030228, 0.008084869012236595, 0.00010154708434129134, 0.009335599839687347, 0.014111118391156197, -0.056444473564624786, -0.003743216395378113, 0.011681468226015568, 0.01006569154560566, 0.06568431854248047, -0.030735665932297707, -0.0058018360286951065, -0.030879290774464607, 0.07779666036367416, -0.040956951677799225, 0.03509227931499481, -0.02623542957007885, -0.006552872713655233, -0.021735191345214844, 0.012447466142475605, -0.011454062536358833, 0.00816266518086195, -0.004497245419770479, -0.0397840179502964, 0.02028697542846203, -0.011872967705130577, 0.0529017299413681, -0.029155796393752098, 0.005287181120365858, -0.01561917643994093, 0.015128458850085735, 0.034996528178453445, -0.06352995336055756, 0.04694131016731262, 0.02467949502170086, 0.020741786807775497, 0.03212403878569603, 0.014494117349386215, 0.027073239907622337, 0.040358513593673706, -0.020011695101857185, 0.009263787418603897, 0.04174688830971718, -0.0039646378718316555, 0.011986671015620232, -0.021866846829652786, 0.007247058674693108, 0.023195374757051468, -0.04828180745244026, -0.0072111524641513824, -0.01976035349071026, 0.07832328975200653, -0.04993348941206932, -0.0007065283716656268, 0.030209042131900787, 0.01752220280468464, 0.03798871114850044, 0.022908125072717667, -0.03542740270495415, -0.020765725523233414, 0.04667799919843674, 0.004087316803634167, 0.019485071301460266, -0.009676707908511162, 0.011501937173306942, -0.019497040659189224, 0.003716286737471819, 0.029682420194149017, 0.020550288259983063, 0.01006569154560566, -0.016385173425078392, 0.008013056591153145, -0.026187554001808167, 0.015930363908410072, -0.027312614023685455, 0.022836312651634216, 0.02049044519662857, -0.022692687809467316, 0.05424222722649574, -0.0009978917660191655, -0.007229105569422245, -0.046630121767520905, 0.019353415817022324, 0.00987419206649065, -0.005664195399731398, 0.023937435820698738, 0.024116965010762215, -0.0018327098805457354, -0.04368581995368004, 0.06506194919347763, -0.026857802644371986, -0.02786317467689514, -0.027767425402998924, 0.03542740270495415, 0.050268612802028656, -0.013237401843070984, 0.005077728535979986, -0.0005902074044570327, -0.005951444618403912, -0.01639714278280735, 0.017390547320246696, -0.05419435352087021, -0.04715674743056297, 0.0015918394783511758, -0.0029936754144728184, 0.009574973955750465, -0.009102209471166134, 0.029945731163024902, -0.003050526836887002, -0.019796257838606834, 0.02855736017227173, -0.021507784724235535, -0.0709984302520752, 0.023374905809760094, 0.00961088016629219, 0.016205644235014915, -0.01385977491736412, -0.03875470906496048, 0.0593169629573822, -0.007546276319772005, 0.02771954983472824, 0.024655558168888092, 0.046845559030771255, -0.03710302338004112, -0.007444542367011309, 0.02534974366426468, -0.03315334767103195, -0.02347065508365631, -0.0033392722252756357, 0.05424222722649574, 0.048401493579149246, -0.03018510527908802, -0.01260305941104889, 0.03674396127462387, 0.03904195502400398, -0.018156545236706734, -0.03851533308625221, -0.007097449619323015, 0.008958584628999233, -0.020382726565003395, -0.007869431748986244, -0.041339948773384094, -0.03808445855975151, 0.011495953425765038, 0.0007196191581897438, 0.0014003399992361665, -0.0320761613547802, -0.02191472239792347, 0.05596572160720825, -0.02525399439036846, 0.046989183872938156, -0.06755144149065018, 0.015667051076889038, -0.019664602354168892, 0.014913021586835384, 0.050124987959861755, -0.018743012100458145, -0.022034408524632454, -0.06223732978105545, 0.016217611730098724, 0.01528405211865902, -0.043183133006095886, -0.008976537734270096, -0.02363821677863598, -0.011065078899264336, 0.0008931655320338905, -0.05089098587632179, -0.018300168216228485, 0.05156123638153076, -0.00713335582986474, 0.01676817238330841, 0.06803019344806671, -0.0021424004808068275, -0.015319958329200745, -0.050268612802028656, -0.011382250115275383, 0.01557130180299282, 0.048712681978940964, -0.012208092026412487, -0.004515198525041342, -0.04679768532514572, -0.028509484604001045, -0.033129408955574036, -0.03786902129650116, 0.016947703436017036, 0.022249845787882805, 0.010005847550928593, 0.003312342567369342, 0.003662427654489875, 0.010712002404034138, 0.004964025691151619, 0.029706357046961784, 0.010257191024720669, 0.009515129961073399, -0.042967695742845535, -0.0029293436091393232, -0.006071132142096758, -0.04086120054125786, 0.03497259318828583, 0.009197959676384926, -0.015128458850085735, -0.004236925859004259, -0.006935871671885252, 0.07693491876125336, 0.006762325298041105, -0.014709553681313992, 0.044547565281391144, -0.025469431653618813, 0.03645671531558037, -0.04380550608038902, 0.009042366407811642, -0.05491247773170471, 0.022979937493801117, 0.07535504549741745, -0.0001539102231618017, -0.024799183011054993, -0.032602787017822266, 0.03145378828048706, 0.042608633637428284, -0.014326554723083973, 0.010939408093690872, 0.012399591505527496, -0.028581297025084496, 0.002202244009822607, -0.04888024181127548, 0.07607316970825195, -0.003503842046484351, -0.022680720314383507, -0.029275482520461082, -0.054002854973077774, -0.02594817988574505, 0.04969411343336105, 0.02020319551229477, -0.015774769708514214, 0.004284800961613655, 0.046701934188604355, 0.0160380806773901, -0.020526351407170296, 0.0708548054099083, 0.009174021892249584, 0.020454538986086845, 0.06262032687664032, 0.011172797530889511, 0.0019658617675304413, 0.03660033643245697, 0.007803604006767273, -0.0524708591401577, -0.027336550876498222, -0.05127398669719696, -0.010454675182700157, -0.0022845289204269648, 0.03956858068704605, 0.04076545313000679, 0.008934647776186466, 0.007989118807017803, -0.03657640144228935, 0.060035087168216705, -0.07095056027173996, -0.0032285614870488644, 0.046845559030771255, 0.03542740270495415, 0.04076545313000679, -0.060418084263801575, 0.0001857956376625225, -0.0461992509663105, -0.014218836091458797, -0.041244201362133026, -0.010957361198961735, 0.056157223880290985, -0.05208785831928253, -0.004207004327327013, 0.05357198044657707, 0.01699557900428772, -0.032770346850156784, -0.006648622453212738, 0.047874871641397476, -0.01743842102587223, -0.05835946649312973, -0.01766582764685154, -0.008551648817956448, 0.026283303275704384, 0.008180618286132812, 0.051992107182741165, -0.016229581087827682, -0.01144209410995245, -0.0263790525496006, -0.014027336612343788, 0.009269772097468376, 0.0359300896525383, 0.0026765044312924147, -0.011424141004681587, -0.02324325032532215, -0.020538318902254105, -0.011346343904733658, 0.03384753316640854, -0.005122611299157143, 0.03540346771478653, -0.04339857026934624, 0.02788711152970791, -0.024320434778928757, 0.017055422067642212, 0.0001101496018236503, 0.05807221680879593, -0.022273782640695572, 0.04988561570644379, -0.03899408131837845, 0.006606732029467821, 0.015116490423679352, 0.008366133086383343, 0.028509484604001045, -0.04792274534702301, -0.05194423347711563, 0.03442203253507614, 0.07042393088340759, 0.017641888931393623, 0.062189456075429916, -0.03423053026199341, -0.005664195399731398, -0.02697748877108097, -0.03956858068704605, 0.0012739204103127122, -0.011825093068182468, 0.024416184052824974, -0.02138809859752655, -0.028294047340750694, -0.032770346850156784, 0.023123562335968018, 0.010574362240731716, 0.045481126755476, -0.05314110592007637, 0.021483847871422768, -0.012854402884840965, 0.011843046173453331, 0.030209042131900787, -0.009706629440188408, 0.0003465317713562399, -0.002501461887732148, 0.014960897155106068, 0.02781529910862446, 0.012986058369278908, -0.008378102444112301, -0.018168512731790543, -0.008108805865049362, -0.030687792226672173, 0.004865283612161875, 0.05242298170924187, 0.00023769124527461827, 0.004299761727452278, 0.02973029389977455, -0.025541244074702263, -0.01759401522576809, 0.056396596133708954, -0.037677522748708725, -0.017558109015226364, -0.04002339020371437, -0.07253042608499527, -0.006113022565841675, 0.00913213100284338, -0.014170961454510689, -0.009999863803386688, -0.030903229489922523, 0.029203670099377632, 0.0357864648103714, -0.012519278563559055, -0.026187554001808167, 0.024799183011054993, -0.013237401843070984, -0.036552462726831436, 0.05089098587632179, 0.012734715826809406, -0.0028141445945948362, 0.0015619175974279642, 0.014254742302000523, 0.010652158409357071, 0.03272247314453125, 0.03353634476661682, -0.01864726096391678, -0.04145963862538338, -0.018216388300061226, -0.018731042742729187, 0.02846161089837551, -0.008264399133622646, 0.01782141998410225, 0.05649234727025032, 0.0009133627754636109, -0.02764773741364479, 0.029921794310212135, 0.031334102153778076, -0.004838353954255581, -0.02594817988574505, -0.022489219903945923, 0.035140153020620346, -0.010526486672461033, 0.003297381568700075, -0.0015783746493980289, -0.0033302956726402044, -0.0027034340891987085, 0.01001781690865755, -0.04280013218522072, -0.01222604513168335, 0.054002854973077774, -0.006457122974097729, 0.041244201362133026, 0.00868330430239439, 0.028341922909021378, -0.03801264613866806, 0.01203454565256834, 0.021866846829652786, -0.025014620274305344, 0.000547194795217365, 0.005610336549580097, 0.0007674940279684961, 0.019999727606773376, 0.012710778042674065, -0.0005389663274399936, -0.013033933006227016, -0.015248145908117294, -0.0030939134303480387, -0.01685195416212082, -0.02221393957734108, 0.01728282868862152, -0.040358513593673706, 0.02719292603433132, 0.047060996294021606, -0.006265623494982719, 0.023207344114780426, -0.020981160923838615, 0.026570552960038185, 0.011334375478327274, -0.045481126755476, 0.0019105065148323774, -0.02162747271358967, 0.02004760131239891, -0.03123835287988186, 0.008072899654507637, 0.004183066543191671, 0.046390749514102936, 0.01521223969757557, 0.0022471267729997635, 0.054960351437330246, -0.01937735453248024, -0.025660930201411247, 0.0013898672768846154, 0.0019763344898819923, 0.004168105777353048, 0.0018850730266422033, -0.007989118807017803, 0.008384086191654205, -0.025517305359244347, -0.033129408955574036, 0.0011460046516731381, -0.0073308395221829414, -0.029610607773065567, 0.0012731723254546523, -0.03442203253507614, -0.028054673224687576, 0.0047515807673335075, -0.0005486909067258239, -0.0326506607234478, -0.0487605556845665, -0.0025897312443703413, -0.03480502963066101, 0.002737844130024314, 0.019473103806376457, 0.0027049302589148283, -0.008671335875988007, 0.02728867530822754, -0.04969411343336105, 0.01334512047469616, -0.0005561713478527963, 0.005305134225636721, -0.04291982203722, 0.01668439246714115, 0.0009208432165905833, -0.004093301482498646, -0.014434273354709148, 0.001991295488551259, -0.003794083371758461, 0.03123835287988186, 0.057880718261003494, -0.04727643355727196, -0.013201495632529259, -0.016648486256599426, 0.004700713790953159, 0.02041863277554512, -0.01573886349797249, -0.010029785335063934, 0.022237876430153847, 0.006852090824395418, 0.005652226973325014, -0.0019509010016918182, -0.001172934309579432, 0.007115402724593878, -0.021854877471923828, 0.0365045890212059, 0.04775518178939819, 0.012351716868579388, -0.01210635807365179, 0.02303978055715561, -0.0354992151260376, -0.02406909130513668, 0.007270995993167162, -0.00010856000881176442, -0.032363411039114, -0.02958666905760765, 0.03248310089111328, -0.013608431443572044, -0.016576673835515976, 0.009413396008312702, -0.0029128866735845804, -0.007689901161938906, -0.008408023975789547, -0.021280379965901375, 0.02028697542846203, -0.0007214892539195716, 0.014877116307616234, -0.017785513773560524, 0.028868546709418297, 0.007923291064798832, 0.0065588573925197124, 0.025469431653618813, 0.0018671199213713408, 0.009269772097468376, 0.009694661013782024, -0.044691190123558044, 0.027982860803604126, -0.009389459155499935, 0.0023249234072864056, -0.002853043144568801, 0.03286609798669815, -0.01909010484814644, -0.012710778042674065, -0.017929138615727425, -0.03985583037137985, 0.036121588200330734, 0.003946684766560793, 0.04399700462818146, 0.00999387912452221, 0.010484596714377403, 0.016935735940933228, -0.019640665501356125, -0.017474327236413956, 0.0033662018831819296, 0.018096700310707092, 0.022848282009363174, 0.018060794100165367, -0.0006616456666961312, -0.01099326740950346, -0.03078354150056839, 0.014889084734022617, -0.016720298677682877, -0.0006081604515202343, -0.013835837133228779, -0.0008617476560175419, -0.004215980879962444, 0.041268136352300644, -0.005275212228298187, -0.011872967705130577, 0.03195647522807121, -0.0031597414053976536, -0.022106220945715904, -0.00010687690519262105, 0.016576673835515976, 0.030017543584108353, 0.022860251367092133, -0.0060890852473676205, 0.002257599262520671, -0.018515605479478836, 0.0064690918661653996, 0.018539544194936752, 0.02973029389977455, -0.004317714832723141, 0.008653382770717144, 0.01765385828912258, -0.007923291064798832, -0.009503161534667015, 0.030232980847358704, -0.026929615065455437, -0.05223148316144943, 0.008007071912288666, 0.0025358719285577536, 0.040143080055713654, 0.03329697251319885, -0.0036145527847111225, 0.013943555764853954, 0.029179733246564865, 0.005433797836303711, -0.011017204262316227, 0.01412308681756258, 0.042824070900678635, 0.010263175703585148, -0.009024413302540779, -0.008593538776040077, 0.014601835049688816, -0.02862917259335518, 0.009563005529344082, 0.0006343420245684683, 0.010670111514627934, 0.026402991265058517, -0.01639714278280735, 0.008964569307863712, 0.019724447280168533, 0.02071784995496273, -0.0024416183587163687, -0.012495340779423714, -0.01110696978867054, -0.003141788300126791, -0.008072899654507637, -0.027695612981915474, -0.004628901369869709, 0.01810866966843605, 0.02221393957734108, -0.007199183572083712, -0.04167507588863373, 0.01262699719518423, 0.02645086497068405, 0.012495340779423714, -0.027623800560832024, 0.010340971872210503, -0.0002883712877519429, 0.010424752719700336, 0.015176333487033844, -0.025660930201411247, -0.02877279743552208, 0.027336550876498222, -0.08583964407444, -0.020897381007671356, 0.048784494400024414, -0.012279904447495937, -0.005095681641250849, 0.0019209791207686067, 0.042153824120759964, 0.04622318595647812, 0.05438585206866264, -0.05165698379278183, 0.03142985329031944, 0.042225636541843414, -0.02362624928355217, 0.02661842852830887, 0.025541244074702263, 0.007073511835187674, 0.017402514815330505, -0.0034619516227394342, 0.009622848592698574, 0.0015005780151113868, -0.012758652679622173, 0.00607412401586771, -0.029802106320858, -0.011633593589067459, 0.007845493964850903, -0.02922760881483555, -0.016828017309308052, 0.025972116738557816, -0.020586194470524788, -0.03537952899932861, -0.02520611882209778, -0.023805778473615646, -0.037964772433042526, 0.05046011134982109, -0.018683167174458504, -0.018300168216228485, 0.016145799309015274, -0.021256443113088608, 0.015307989902794361, 0.016744235530495644, 0.0013995919143781066, -0.005173478275537491, -0.021268410608172417, 0.015595238655805588, -0.00758218253031373, -0.004646854475140572, -0.00044396461453288794, -0.05352410301566124, 0.01001781690865755, -0.043039508163928986, -0.031645290553569794, -0.006887997034937143, 0.0396403931081295, -0.01654076762497425, -0.02355443686246872, -0.00043611013097688556, -0.025589117780327797, 0.05074736103415489, -0.005110642407089472, 0.010101597756147385, -0.031046852469444275, -0.0004862291389144957, 0.035594966262578964, -0.027240801602602005, 0.04112451523542404, -0.012112341821193695, 0.006193811539560556, -0.0009096225257962942, -0.047300372272729874, -0.012507310137152672, 0.030352666974067688, -0.005694117397069931, -0.03698333725333214, 0.06266820430755615, 0.013309214264154434, 0.03533165529370308, -0.007151308935135603, 0.004536143969744444, 0.01523617748171091, -0.001977830659598112, 0.042967695742845535, -0.014637741260230541, 0.030232980847358704, -0.020251069217920303, 0.041483573615550995, 0.031118664890527725, -0.006612716242671013, 0.016816047951579094, -0.010143487714231014, 0.010299080982804298, 0.021184630692005157, 0.01967657171189785, -0.011304453946650028, -0.0019748383201658726, -0.019688541069626808, -0.0031178509816527367, 0.008276368491351604, 0.008521727286279202, 0.019868070259690285, -0.0011430125450715423, 0.008575585670769215, 0.0016232572961598635, 0.016085956245660782, -0.02086147479712963, -0.011148860678076744, -0.020550288259983063, -0.05060373619198799, -0.04023882746696472, 0.029131857678294182, 0.015104521065950394, 0.030687792226672173, 0.028413735330104828, -0.03389540687203407, -0.015391770750284195, 0.014960897155106068, -0.001277660601772368, -0.043709754943847656, 0.012650934047996998, -0.008168649859726429, -0.01736660860478878, -0.001864127698354423, -0.03676789999008179, -0.01698360964655876, 0.006612716242671013, -0.002683984814211726, -0.025062493979930878, -0.007677932269871235, 0.047731246799230576, -0.005541516002267599, 0.0033273035660386086, 0.03966432809829712, -0.002853043144568801, -0.003246514592319727, -0.039903704077005386, 0.04734824597835541, -0.012998026795685291, 0.0046169329434633255, -0.009120162576436996, -0.02520611882209778, -0.007073511835187674, 0.01521223969757557, 0.008880788460373878, 0.0005494389333762228, 0.0025194149930030107, -0.02676205150783062, 0.002513430779799819, -0.0037222711835056543, -0.014853178523480892, -0.0013360080774873495, 0.0016516830073669553, 0.01148398406803608, 0.05007711425423622, -0.0016068003606051207, 0.0050867050886154175, -0.022979937493801117, 0.020526351407170296, -0.009712614119052887, 0.020143352448940277, -0.0456247515976429, 0.048257868736982346, 0.014841210097074509, -0.02303978055715561, -0.023901529610157013, -0.00751037010923028, -0.00987419206649065, 0.030879290774464607, 0.002854539081454277, -0.007606119848787785, 0.03870683163404465, 0.0330815352499485, -0.04198626056313515, 0.005215368699282408, -0.005131587851792574, -0.009443318471312523, -0.015475551597774029, 0.020239101722836494, 0.03248310089111328, -0.03370390832424164, -0.01393158733844757, 0.0006623936933465302, -0.0019733423832803965, -0.021651409566402435, 0.009622848592698574, -0.019341448321938515, 0.033727847039699554, 0.03391934558749199, -0.0017968036700040102, -0.01735464110970497, 0.05127398669719696, 0.01338102575391531, 0.010670111514627934, 0.006229717284440994, 0.01640911214053631, 0.013392995111644268, 0.0002749064879026264, -0.018240325152873993, 0.014182929880917072, -0.0003949676756747067, -0.0026031960733234882, 0.03844352066516876, -0.011430125683546066, 0.02376987226307392, -0.0007839510217308998, 0.010945391841232777, 0.01020931638777256, -0.04052607715129852, -0.0033422643318772316, 0.010071676224470139, -0.015858551487326622, 0.030592041090130806, 0.02423665300011635, -0.0031507648527622223, -0.03423053026199341, -0.010125534608960152, 0.007175246253609657, 0.009485208429396152, 0.02585243061184883, 0.003599591786041856, -0.011561781167984009, 0.014362460933625698, -0.014996803365647793, 0.012854402884840965, 0.015906425192952156, 0.01639714278280735, 0.0007521591032855213, 0.03999945521354675, -0.029395170509815216, 0.018312137573957443, 0.03162135183811188, 0.00548167247325182, 0.03485290706157684, -0.01006569154560566, 0.042225636541843414, 0.0060561709105968475, -0.014278680086135864, -0.01535586453974247, -0.008898741565644741, 0.01573886349797249, 0.02453587017953396, 0.004817408975213766, -0.02423665300011635, -0.024703433737158775, -0.008557632565498352, -0.02556518092751503, -0.027384426444768906, -0.02712111361324787, 0.019497040659189224, 0.008180618286132812, 0.003791091265156865, 0.0011198230786249042, -0.01549948938190937, 0.020071540027856827, 0.01267487183213234, 0.012028560973703861, -7.040971831884235e-05, -0.004709690343588591, 0.026929615065455437, 0.030759604647755623, 0.0010517510818317533, 0.024176809936761856, 0.0003960897447541356, -0.011083032004535198, -0.008707242086529732, 0.0183241069316864, 0.02236953377723694, 0.020394694060087204, -0.018060794100165367, -0.006241686176508665, -0.0012410064227879047, -0.036552462726831436, -0.014889084734022617, 0.007881400175392628, -0.04916749149560928, 0.017857326194643974, -0.018096700310707092, 0.023686092346906662, -0.017306765541434288, 0.021352192386984825, -0.01170540601015091, -0.013728119432926178, -0.028222236782312393, -0.03475715592503548, -0.010831689462065697, 0.0196047592908144, -0.009622848592698574, 0.03346453234553337, -0.006032233592122793, 0.01713920384645462, -0.011549812741577625, -0.005382930859923363, 0.020023664459586143, 0.004398503806442022, 0.008653382770717144, 0.02095722407102585, 0.011657530441880226, 0.0007065283716656268, -0.022249845787882805, 0.008102822117507458, -0.005999319721013308, 0.027551988139748573, -0.009820332750678062, 0.03525984287261963, -0.01390764955431223, 0.025373680517077446, -0.006528935395181179, -0.057354092597961426, -0.01877891831099987, -0.016959672793745995, -0.002815640764310956, 0.014601835049688816, -0.003282420802861452, -0.03188466280698776, -0.002303978195413947, -0.0034709281753748655, 0.029299421235919, 0.00398857519030571, -0.0027827268932014704, -0.017929138615727425, -0.005008908454328775, -0.011352328583598137, 0.02824617363512516, -0.0076539949513971806, -0.012710778042674065, -0.01834804378449917, -0.013883712701499462, 0.006864059716463089, -0.0005696361768059433, -0.016062019392848015, -0.008539680391550064, 0.011274531483650208, -0.024847056716680527, 0.04368581995368004, -0.013285276480019093, -0.022345595061779022, 0.022118190303444862, -0.006504998076707125, -0.007091464940458536, 0.002636109944432974, -0.009808364324271679, 0.03478109464049339, -0.03660033643245697, -0.008366133086383343, 0.003527779597789049, 0.025900304317474365, 0.016002174466848373, 0.005442774388939142, -0.018060794100165367, -0.017474327236413956, -0.003025093348696828, -0.01676817238330841, 0.06482257694005966, 0.016792111098766327, -0.016157768666744232, 0.0034709281753748655, 0.015607208013534546, -0.00812077522277832, 0.03585827723145485, 0.03147772699594498, 0.022453313693404198, 0.006570825818926096, 0.0020960215479135513, -0.03801264613866806, 0.004359605256468058, 0.003243522485718131, -0.015535395592451096, 0.01922176033258438, 0.00758218253031373, 0.027240801602602005, -0.010215300135314465, -0.01588248834013939, 0.012112341821193695, 0.007205167785286903, 0.017330702394247055, -0.018515605479478836, 0.022190002724528313, -0.029251545667648315, 0.01419489923864603, 0.04385337978601456, -0.01602611318230629, -0.007546276319772005, 0.006011288147419691, -0.014769397675991058, 0.014422304928302765, 0.006564841605722904, -0.02414090372622013, 0.02570880576968193, -0.018156545236706734, -0.013668275438249111, -0.001395103638060391, 0.003105882089585066, -0.006092077121138573, -0.002251615049317479, -0.002829105593264103, -0.0015043182065710425, 0.043637942522764206, -0.02004760131239891, -0.027240801602602005, -0.011274531483650208, 0.02721686288714409, -0.009868207387626171, -0.004027473274618387, -0.032842159271240234, 0.0018102684989571571, -0.022788438946008682, 0.02183094061911106, 0.03456565737724304, 1.951929561982979e-06, 0.01051451824605465, -0.020622100681066513, -0.00737871415913105, -0.015152396634221077, 0.007833525538444519, -0.04809030517935753, 0.0001431570854038, 0.018838761374354362, 0.003138796193525195, 0.0017190070357173681, 0.0021947636269032955, 0.008330227807164192, 0.0147574283182621, 0.03243522346019745, 0.0036564432084560394, 0.009299693629145622, 0.031046852469444275, -0.0027692620642483234, 0.01177721843123436, -0.04023882746696472, -0.0027812307234853506, -0.019042229279875755, -0.0028201290406286716, -0.007013668306171894, -0.0026869771536439657, -0.004153145011514425, 0.01364433765411377, -0.01825229451060295, 0.021723221987485886, -0.013416931964457035, -0.008563617244362831, -0.0019254673970863223, -0.024631621316075325, 0.00816266518086195, -0.01713920384645462, -0.0047994558699429035, 0.019401291385293007, -0.002033185912296176, -0.0037312477361410856, -0.035738591104745865, -0.005613328423351049, 0.03210010007023811, 0.0005516830715350807, -0.008701257407665253, 0.016576673835515976, -0.03040054254233837, 0.0007742264424450696, -0.038275957107543945, 0.03135804086923599, 0.012638965621590614, -0.013668275438249111, 0.00046715399366803467, -0.024344371631741524, -0.010939408093690872, 0.0028231211472302675, 0.0121542327105999, -0.008629444986581802, 0.006648622453212738, -0.0400712676346302, 0.04059788957238197, -0.007498401682823896, -0.006403263658285141, -0.02406909130513668, 0.026785990223288536, -0.0035816386807709932, 0.034158721566200256, -0.008880788460373878, -0.00835416465997696, -0.016217611730098724, -0.03748602420091629, -0.0032943894620984793, 0.047826994210481644, -0.029036108404397964, -0.010741923935711384, 0.024272559210658073, 0.03542740270495415, 0.0029891871381551027, -0.012926215305924416, 0.004655831027776003, 0.034924719482660294, 0.006439169868826866, 0.037821147590875626, -0.006295545492321253, 0.023063719272613525, 0.030879290774464607, -0.014434273354709148, -0.019580822438001633, 0.0013524651294574142, 0.022333627566695213, -0.020394694060087204, -0.004766541533172131, -0.0011572253424674273, 0.005523563362658024, -0.026594489812850952, 0.03303366154432297, -0.016133831813931465, -0.015966268256306648, -0.042680446058511734, 0.010029785335063934, -0.03329697251319885, 0.0053260792046785355, 0.032913971692323685, 0.003423053305596113, -0.003180686617270112, -0.0038419582415372133, 0.01907813549041748, -0.022010471671819687, 0.025086432695388794, -0.005846718326210976, 0.011926827020943165, -0.0017010539304465055, -0.001995783532038331, -0.000976946554146707, -0.044834814965724945, -0.003662427654489875, 0.006307513918727636, -0.02324325032532215, -0.021783065050840378, -0.022010471671819687, 0.01959278993308544, 0.02258496917784214, -0.044906627386808395, -0.006648622453212738, 0.01207643561065197, 0.02757592499256134, -0.012794558890163898, -0.014362460933625698, 0.02415287122130394, -0.001290377345867455, -0.013213464058935642, -0.01233974751085043, 0.048186056315898895, -0.023686092346906662, -0.03657640144228935, -0.033273033797740936, 0.02503855712711811, 0.0009290716843679547, 0.01117878220975399, -0.00864141434431076, -0.020227132365107536, 0.017617952078580856, -0.00032913972972892225, 0.02145991101861, -0.024356340989470482, -0.025900304317474365, 0.006169873755425215, -0.011795171536505222, -0.011920842342078686, -0.005484664812684059, 0.011573749594390392, -0.008252430707216263, 0.013045902363955975, -0.01542767696082592, -0.015750832855701447, -0.026402991265058517, 0.001629241625778377, 0.00751037010923028, 0.012243998236954212, 0.014601835049688816, 0.004410472232848406, 0.002604692243039608, -0.013919618912041187, -0.02884460985660553, -0.04411669448018074, 0.029802106320858, 0.029873918741941452, 0.011849029920995235, -0.028724921867251396, 0.025660930201411247, 0.00018130737589672208, 0.010646174661815166, 0.02884460985660553, 0.013668275438249111, 0.010047738440334797, -0.036408837884664536, -0.005789867136627436, 0.018096700310707092, -0.0031178509816527367, -0.013835837133228779, -0.020478475838899612, 0.000937300210352987, 0.009221896529197693, -0.014290648512542248, -0.002333899959921837, -0.00953906774520874, 0.003782114712521434, 0.014290648512542248, 0.0006163889775052667, 0.016062019392848015, -0.0020017679780721664, -0.03214797377586365, -0.013057870790362358, 0.021220536902546883, 0.009628833271563053, 0.0019179870141670108, -0.014230805449187756, 0.02520611882209778, 0.04567262530326843, 0.005960421171039343, 0.0050388299860060215, -0.007749744690954685, -0.030903229489922523, -0.04488269239664078, 0.0032913973554968834, -0.039401017129421234, 0.044236380606889725, 0.016959672793745995, -0.025230055674910545, 0.023207344114780426, -0.002486501121893525, 0.037749335169792175, 0.00255232909694314, -0.0420580729842186, -0.007420605048537254, -0.02453587017953396, -0.018060794100165367, 0.017246922478079796, -0.019473103806376457, 0.0160380806773901, 0.01549948938190937, -0.004302754066884518, -0.003671404207125306, 0.04093301296234131, -0.007055559195578098, -0.01502074021846056, -0.02520611882209778, 0.02757592499256134, 0.020825568586587906, -0.027384426444768906, 0.009455286897718906, 0.00751037010923028, 0.037390273064374924, -0.04100482538342476, -0.007911322638392448, 0.0013015980366617441, 0.013536619953811169, 0.005209384486079216, 0.01438639871776104, 0.02056225761771202, 0.011633593589067459, 0.021555660292506218, 0.02937123365700245, -0.03451777994632721, -0.03822808340191841, 0.0018267255509272218, 0.03585827723145485, 0.01255518477410078, 0.01385977491736412, -0.03480502963066101, 0.0006721182726323605, -0.000150076491991058, 0.030663853511214256, -0.01751023344695568, 0.012070451863110065, -0.005047806538641453, 0.007336823735386133, -0.01759401522576809, 0.0005374702159315348, 0.04471512883901596, -0.01364433765411377, 0.009239849634468555, 0.03286609798669815, 0.022453313693404198, 0.004488268867135048, -0.01834804378449917, 0.005302141886204481, 0.01040081586688757, 0.11872968077659607, 0.040286704897880554, 0.036935463547706604, -0.008025025017559528, -0.01578673906624317, 0.003536755917593837, -0.00678626261651516, 0.006415232550352812, 0.006702481769025326, -0.02295600064098835, 0.002022713189944625, -0.016971642151474953, -0.046845559030771255, -0.02428452856838703, 0.03363209590315819, -0.011920842342078686, -0.01289030909538269, 0.023901529610157013, 0.033799659460783005, 0.04045426473021507, 0.017474327236413956, -0.018766948953270912, 0.024942807853221893, 0.0010726962937042117, -0.029131857678294182, -0.023003874346613884, 0.006259639281779528, -0.030520230531692505, -0.03145378828048706, -0.002999659860506654, 0.01976035349071026, -0.0012858890695497394, 0.01177123375236988, 0.007677932269871235, 0.03356028348207474, -0.03815627098083496, 0.014075212180614471, 0.00928174052387476, -0.011759265325963497, 0.021962596103549004, -0.007181230466812849, -0.015248145908117294, 0.01385977491736412, 0.010502549819648266, 0.005296157673001289, 0.014027336612343788, -0.028365859761834145, 0.017917169257998466, 0.004775518085807562, -0.01871907338500023, 0.012100373394787312, -0.0029128866735845804, 0.0011826589470729232, 0.00789935328066349, -0.010035770013928413, 0.008910709992051125, 0.011693436652421951, -0.025541244074702263, -0.008539680391550064, -0.03341665863990784, -0.003063991665840149, -0.024559808894991875, -0.008366133086383343, -0.01170540601015091, 0.007839510217308998], [0.025628168135881424, 0.06981150060892105, -0.03738589212298393, 0.021919433027505875, -0.02891206368803978, 0.04771983250975609, -0.0452626533806324, -0.018876660615205765, 0.039889004081487656, -0.0022921250201761723, 0.011459189467132092, -0.0012867188779637218, 0.0217012707144022, -0.022068699821829796, 0.02392880991101265, 0.003530762391164899, 0.008336043916642666, -0.01815328560769558, -0.03727107122540474, 0.019370393827557564, -0.04604343697428703, 0.024319201707839966, -0.02634006179869175, 0.03127738833427429, -0.023997701704502106, -0.013399673625826836, 0.017257677391171455, -0.00980575941503048, 0.08179886639118195, -0.012079225853085518, 0.08464644104242325, -0.02395177260041237, 0.004988995846360922, -0.004145057871937752, 0.06599941849708557, -0.023170987144112587, 0.009845946915447712, 0.005729594733566046, 0.0035336329601705074, -0.0269600972533226, 9.320279787061736e-05, -0.05111854895949364, 0.018899625167250633, 0.005993684288114309, 0.011338626965880394, 0.034790925681591034, -0.00014182254381012172, -0.0526801235973835, 0.00022336377878673375, 0.0054855989292263985, 0.003826427971944213, 0.00023233421961776912, 0.013204476796090603, 8.886335308488924e-06, 0.007848052307963371, -0.02503109537065029, -0.014720121398568153, 0.0369725376367569, -0.0071935695596039295, 0.022183522582054138, 0.0023653237149119377, -0.031093673780560493, -0.00932350941002369, 0.060442060232162476, -0.005491340067237616, 0.017866231501102448, 0.0022648549638688564, 0.010127260349690914, 0.006045354064553976, 0.03049660101532936, 0.0062864795327186584, 0.03582432121038437, -0.043264757841825485, -0.031369246542453766, 0.0028073866851627827, -0.012848530896008015, 0.011126207187771797, 0.03162185102701187, 0.007457659114152193, -0.060947272926568985, -0.0330226756632328, 0.05685962736606598, 0.01667208783328533, 0.03738589212298393, -0.02519184537231922, 0.02634006179869175, -0.055160269141197205, -0.030932923778891563, -0.00498038437217474, -0.02070232480764389, -0.07578221708536148, 0.007790641393512487, -0.025811882689595222, -0.016476891934871674, -0.03164481744170189, -0.026615632697939873, 0.029325421899557114, 0.027740884572267532, -0.021150127053260803, 0.046824224293231964, -0.013043726794421673, 0.005626255646348, -0.015787962824106216, 0.0245488453656435, 0.005583197344094515, 1.145972782978788e-05, -0.05924791470170021, 0.011499376967549324, 0.013548942282795906, 0.00045569799840450287, 0.06889292597770691, 0.011975886300206184, -0.005281791090965271, 0.07040856778621674, -0.026110418140888214, 0.022860968485474586, -0.0054741171188652515, 0.0194163229316473, -0.012894459068775177, -0.018210696056485176, -0.0478576198220253, -0.04011864587664604, 0.004124963656067848, -0.013388191349804401, -0.0029824895318597555, -0.0037431821692734957, 0.03049660101532936, 0.025788918137550354, 0.01476605050265789, -0.012171083129942417, 0.002190220868214965, -0.03391828387975693, 0.01876183971762657, -0.05529805272817612, -0.010885082185268402, 0.019048893824219704, 0.003717347513884306, -0.03290785476565361, 0.020357858389616013, -0.00590182701125741, 0.008772365748882294, -0.009656491689383984, 0.05493062362074852, 0.030221030116081238, -0.012733709067106247, -0.020989377051591873, -0.014834943227469921, 0.005000478122383356, -0.03143813833594322, -0.01845182105898857, -0.02119605615735054, -0.026431918144226074, -0.013457085005939007, -0.000764998490922153, 0.013996745459735394, -0.028452778235077858, 0.04565304517745972, 0.04868433251976967, -0.006636685226112604, 0.021391253918409348, -0.010362643748521805, 0.0279475636780262, 0.006493158172816038, -0.012251458130776882, 0.027832740917801857, 0.002480145310983062, -0.017602141946554184, 0.004010142292827368, -0.017406946048140526, -0.031529996544122696, 0.0025877906009554863, 0.020667877048254013, -0.03336713835597038, 0.018876660615205765, -0.04960290715098381, 0.0013893406139686704, 0.01068988535553217, 0.02712084725499153, -0.0456300787627697, -0.011998850852251053, 0.02762606367468834, 0.016901731491088867, -0.026914170011878014, -0.03175963833928108, -0.015684623271226883, -0.02004784159362316, -0.025306668132543564, 0.003892450360581279, -0.01768251694738865, 0.041175004094839096, -0.004001530818641186, 0.035388000309467316, -0.039889004081487656, -0.0007484928937628865, -0.0031690746545791626, -0.02939431369304657, -0.011459189467132092, -0.028292028233408928, 0.017728446051478386, -0.0034819631837308407, 0.023882880806922913, -0.036214713007211685, -0.005646349396556616, -0.021597931161522865, -0.010931010358035564, 0.021953878924250603, 0.013147066347301006, -0.00641852430999279, 0.01816476695239544, -0.003639842849224806, 0.03593914210796356, 0.005936273839324713, -0.016924696043133736, 0.02907281368970871, 0.032356709241867065, -0.014651228673756123, 0.058696772903203964, -0.0017065351130440831, 0.030703280121088028, 0.01653430238366127, -0.05640034005045891, 0.003665677737444639, 0.02025452069938183, 0.019967466592788696, -0.006493158172816038, -0.008301597088575363, -0.009949286468327045, -0.0005733900470659137, 0.05088890716433525, -0.023882880806922913, 0.014226389117538929, -0.004802410956472158, -0.03626064211130142, -0.03777628764510155, -2.886236870836001e-05, -0.018738875165581703, 0.042667683213949203, -0.017418427392840385, 0.0037575350143015385, 0.06765285134315491, -0.0575026273727417, -0.012159600853919983, -0.0085025355219841, 0.00939240213483572, 0.0340101420879364, -0.005672184284776449, 0.023377666249871254, -0.014008227735757828, 0.009736866690218449, 0.024594774469733238, 0.00996076874434948, -0.008904410526156425, 0.04388479143381119, -0.0619577020406723, -0.00866328552365303, -0.031415171921253204, 0.03410199657082558, -0.0317826010286808, 0.05653812736272812, 0.030703280121088028, -0.016316141933202744, 0.03773035854101181, -0.012481101788580418, -0.019691893830895424, -0.05442541092634201, 0.010087072849273682, 0.027832740917801857, -0.024043630808591843, -0.020426752045750618, 0.025329632684588432, -0.0025404265616089106, -0.00762415025383234, 0.03226485475897789, -0.025788918137550354, -0.06168213114142418, 0.020621947944164276, 0.04721461609005928, 0.017602141946554184, -0.037317000329494476, 0.003189168404787779, 0.011212323792278767, 0.00674002431333065, 0.03515835478901863, -0.01485790777951479, 0.003975695930421352, 0.005930532701313496, 0.015638694167137146, 0.01188402995467186, -0.014168977737426758, 0.004426370374858379, 0.06843363493680954, -0.021942395716905594, 0.012871494516730309, 0.011017126962542534, 0.008198258467018604, -0.03658214211463928, 0.009581857360899448, 0.001649124431423843, -0.02282652258872986, -0.04813319072127342, 0.0010936751496046782, 0.0224476121366024, -0.03242560476064682, -0.03355085477232933, -0.018876660615205765, 0.014329728670418262, 0.03917710855603218, 0.06384077668190002, -0.02939431369304657, -0.01204477995634079, 0.007549516391009092, 0.04317289963364601, 0.00401301309466362, -0.037500716745853424, -0.006194622255861759, 0.0436551496386528, 0.0014768920373171568, 0.018268106505274773, -0.014387139119207859, 0.028935028240084648, 0.02360730804502964, -0.0136637631803751, 0.028544634580612183, -0.03051956556737423, -0.0038379100151360035, -0.024479951709508896, 0.013284852728247643, 0.0353650338947773, 0.0030743468087166548, -0.02521480992436409, -0.0885503739118576, 0.007405989337712526, 0.02135680615901947, 0.029463207349181175, 0.035893213003873825, -0.02666156180202961, 0.04131279140710831, 0.015925748273730278, -0.0028203041292726994, -0.03304563835263252, 0.01027652807533741, -0.028154242783784866, 0.0030312887392938137, 0.03947564586997032, -0.059844985604286194, 0.013135584071278572, -0.0008202563622035086, 0.02553630992770195, -0.0036742892116308212, 0.033137496560811996, -0.04735240340232849, 0.04974069073796272, -0.07045450061559677, -0.004079035483300686, 0.016155390068888664, 0.014410103671252728, 0.030473636463284492, -0.03488278388977051, 0.02764902636408806, 0.02425030991435051, -0.018842214718461037, -0.027878670021891594, 0.007991579361259937, 0.0340101420879364, 0.05878862738609314, 0.01267629861831665, -0.0010118648642674088, 0.0065276045352220535, 0.03003731556236744, -0.02971581555902958, 0.005919050425291061, 0.0073485784232616425, -0.0039268964901566505, -0.06283034384250641, -0.013204476796090603, 0.06733135133981705, -0.020656395703554153, -0.010741555131971836, 0.05378241091966629, 0.012492584064602852, 0.01768251694738865, 0.002798774978145957, -0.015133479610085487, 0.02102382481098175, -0.01420342456549406, 0.005907568149268627, -0.03433164209127426, -0.05277198180556297, 0.0060798004269599915, -0.021150127053260803, 0.021402735263109207, 0.02086307480931282, -0.0362376794219017, 0.025145918130874634, -0.06880106776952744, -0.0016649123281240463, 0.015650175511837006, 0.04480336606502533, 0.007027078419923782, -0.004937326069921255, -0.010557840578258038, -0.03823557496070862, -0.03237967565655708, 0.08345229923725128, 0.00017303964705206454, -0.002342359395697713, 0.06025834381580353, 0.008158070966601372, -0.018107356503605843, -0.02762606367468834, 0.056262556463479996, -0.030932923778891563, 0.009036455303430557, 0.005543009843677282, 0.03802889585494995, -0.02888909913599491, 0.03084106557071209, -0.03965935856103897, -0.05447134003043175, 0.002817433560267091, 0.02826906368136406, -0.02166682481765747, -0.02073677070438862, -0.026271168142557144, -0.02553630992770195, 0.03472203388810158, 0.020989377051591873, -0.03389531746506691, 0.03665103763341904, -0.02282652258872986, 0.032678209245204926, 0.042667683213949203, -0.024365130811929703, 0.031851496547460556, -0.010879340581595898, -0.011591234244406223, -0.07339392602443695, -0.02631709724664688, 0.007233757060021162, 0.01864701882004738, -0.05346091091632843, 0.010603769682347775, 0.03504353389143944, -0.028820207342505455, -0.03208113834261894, -0.038465216755867004, -0.0018357094377279282, 0.03853410854935646, -0.007991579361259937, -0.007802123669534922, 0.007377284113317728, 0.018026981502771378, 0.031415171921253204, 0.023538416251540184, 0.0063037024810910225, -0.05699741467833519, -0.005109558813273907, -0.05442541092634201, -0.012699262239038944, 0.018382929265499115, -0.018715910613536835, 0.027694955468177795, -0.0047277770936489105, 0.012572959065437317, -0.007457659114152193, -0.018417375162243843, 0.01748732104897499, -0.03768442943692207, -0.006424265448004007, -0.030266959220170975, -0.016430962830781937, -0.019071858376264572, 0.011263993568718433, -0.03256338834762573, 0.039567504078149796, -0.013525977730751038, 0.04767390340566635, 0.005606161896139383, -0.018199214711785316, 0.02859056368470192, -0.006504640448838472, 0.041335754096508026, -0.048730261623859406, -0.026454882696270943, 0.05281790718436241, 0.043586257845163345, 0.038005929440259933, 0.013594870455563068, -0.06462156027555466, -0.030129171907901764, -0.005336331203579903, -0.018830733373761177, 0.010104295797646046, -0.00987465213984251, 0.015030140057206154, -0.001620418974198401, -0.06893885135650635, -0.021494591608643532, 0.055481769144535065, -0.03818964585661888, 0.028292028233408928, -0.014100085012614727, -0.0327700674533844, -0.045515257865190506, 0.05424169450998306, -0.006998372729867697, 0.015983158722519875, -0.038947466760873795, -0.013296334072947502, -0.01308965589851141, 0.04027939587831497, -0.04147354140877724, 0.006533345673233271, -0.011131948791444302, -0.04560711607336998, -0.03575542941689491, 0.043907757848501205, 0.03531910479068756, 0.004090517293661833, 0.04011864587664604, 0.04461964964866638, 0.013009280897676945, 0.027235670015215874, 0.014697156846523285, -0.03467610478401184, 0.024365130811929703, -0.01795808970928192, -0.023159505799412727, 0.02441105991601944, -0.006630944088101387, -0.03134628012776375, 0.006016648840159178, -0.013170030899345875, 0.04367811605334282, -0.0010893694125115871, -0.012722226791083813, -0.02939431369304657, 0.010569322854280472, 0.01989857293665409, -0.036214713007211685, 0.005307625979185104, -0.003616878530010581, -0.003602525917813182, -0.015558319166302681, 0.0035565972793847322, 0.006682613864541054, 0.03260931745171547, 0.01211367268115282, -0.00441201776266098, -0.00498038437217474, -0.005769782233983278, -0.004010142292827368, -0.016419479623436928, -0.020621947944164276, -0.005623384844511747, 0.06521863490343094, 0.039108216762542725, -0.0111606540158391, -0.003720217850059271, 0.0014431632589548826, -0.013939335010945797, -0.022906897589564323, -0.014123049564659595, 0.022527987137436867, -0.012159600853919983, 0.0008747965912334621, -0.03051956556737423, -0.0047363885678350925, -0.005100946873426437, -0.02266577258706093, -0.005388000980019569, -0.045836757868528366, 0.026408953592181206, -0.016304658725857735, 0.04174911230802536, -0.004704812541604042, 0.05396612361073494, -0.053231265395879745, 0.0053937421180307865, 0.02698306180536747, -0.0013383885379880667, 0.007159123197197914, 0.020840110257267952, 0.002115587005391717, -0.02985360100865364, -0.022401683032512665, 0.0005891780601814389, 0.0012415079399943352, -0.021781645715236664, -0.011505118571221828, 0.021460145711898804, 0.012664816342294216, 0.015627210959792137, -0.0163850337266922, -0.034469425678253174, 0.00565783167257905, 0.044550757855176926, 0.017246196046471596, 0.004587120376527309, 0.021483110263943672, -0.008112141862511635, -0.010546358302235603, 0.0012996363220736384, -0.0004065400280524045, -0.04544636607170105, -0.03327528387308121, 0.02987656556069851, 0.01784326694905758, 0.03793703764677048, 0.007583962753415108, -0.03678882122039795, 0.022378718480467796, -0.009662232361733913, -0.03293081745505333, -0.044367045164108276, -0.016166873276233673, -0.016660606488585472, -0.013434120453894138, 0.023676201701164246, -0.005422447342425585, -0.02888909913599491, -0.043287720531225204, -0.010816189460456371, -0.00297387782484293, -0.02730456180870533, 0.01895703561604023, -0.020461197942495346, -0.029302457347512245, 0.005827193148434162, -0.014157496392726898, -0.014191942289471626, -0.03306860476732254, -0.02102382481098175, -0.04032532498240471, 0.0069696675054728985, -0.016086498275399208, -0.035250212997198105, 0.0012730838498100638, -0.03143813833594322, -0.018371446058154106, 0.013847477734088898, 0.026914170011878014, 0.01895703561604023, -0.004767964594066143, 0.030542530119419098, -0.0037001240998506546, -0.05166969448328018, 0.006297961343079805, 0.01132140401750803, 0.0013843171764165163, 0.0631977766752243, 0.05745669826865196, -0.0458826869726181, 0.011838100850582123, 0.009346473030745983, 0.027855705469846725, -0.02503109537065029, 0.014444549567997456, -0.06742320954799652, 0.017429910600185394, -0.011998850852251053, -0.02666156180202961, 0.022573914378881454, 0.0070328195579349995, -0.034607212990522385, 0.024181416258215904, 0.018911108374595642, 0.014478996396064758, 0.03081810101866722, -0.017579177394509315, 0.030129171907901764, -0.034285712987184525, -0.014639746397733688, -0.04172614961862564, 0.06328963488340378, 0.004532580263912678, 0.0043689594604074955, 0.004248396959155798, -0.025582239031791687, 0.009627786464989185, 0.01429528184235096, -0.024801453575491905, -0.020105252042412758, 0.009283321909606457, 0.004139316733926535, 0.006211845204234123, 0.013790067285299301, -0.01604056917130947, -0.024181416258215904, 0.03906228765845299, -0.005769782233983278, 0.01373265590518713, -0.01179217267781496, -0.010919529013335705, 0.0071304175071418285, -0.008812553249299526, 0.028636492788791656, -0.017923641949892044, 0.007520811166614294, -0.004713424481451511, 0.007825087755918503, 0.036674000322818756, -0.05855898559093475, -0.05222083628177643, -0.02392880991101265, -0.02634006179869175, -0.0024069466162472963, 0.0249162744730711, 0.02583484724164009, 0.03593914210796356, -0.0027930340729653835, 0.01815328560769558, 0.014180460013449192, 0.0031633335165679455, 0.011263993568718433, -0.018819250166416168, 0.015064585953950882, -0.009742607362568378, 0.0015457849949598312, -0.014168977737426758, -0.01372117456048727, 0.04158836230635643, -0.0523126944899559, -0.0017639459110796452, 0.0031633335165679455, -0.02826906368136406, -0.01623576506972313, 0.000898478552699089, -0.030726244673132896, 0.00882977619767189, 0.04108314588665962, -0.014065639115869999, -0.005540139507502317, 0.0008877140353433788, -0.012194047681987286, 0.023676201701164246, 0.0025892257690429688, -0.000331726623699069, 0.02470959536731243, -0.003944119904190302, 0.02298727259039879, -0.00882403552532196, 0.024479951709508896, -0.01283704861998558, -0.019163714721798897, 0.004001530818641186, -0.04716869071125984, 0.002917902311310172, 0.005936273839324713, 0.006516122259199619, -0.01189551129937172, 0.006613720674067736, -0.03550282120704651, -0.03963639587163925, 0.019496697932481766, -0.028062384575605392, 0.013629317283630371, 0.005540139507502317, -0.007652855943888426, 0.0075552575290203094, -0.007118935696780682, 0.010075590573251247, -0.01068414468318224, 0.00842215958982706, -0.012791119515895844, -0.015856854617595673, -0.034285712987184525, 0.003829298308119178, 0.011861065402626991, -0.027396420016884804, -0.02698306180536747, -0.00059671321650967, -0.021712753921747208, -0.02311357669532299, -0.008892928250133991, 0.00014191224181558937, -0.02229834347963333, -0.01780882105231285, -0.010712849907577038, -0.024204380810260773, -0.011861065402626991, 0.015328675508499146, -0.049694761633872986, 0.040210504084825516, 0.00892163347452879, -0.043104007840156555, 0.027832740917801857, 0.018359964713454247, 0.00550282234326005, 0.0020997989922761917, 0.01157401129603386, -0.016143908724188805, 0.012056262232363224, -0.007928427308797836, -0.018417375162243843, -0.02647784724831581, 0.024686630815267563, -0.05989091470837593, -0.019083339720964432, 0.005445411428809166, 0.016097979620099068, 0.005006219260394573, -0.032356709241867065, 0.024479951709508896, 0.03423978388309479, 0.009949286468327045, -0.035388000309467316, 0.006016648840159178, -0.018589608371257782, -0.017774375155568123, 0.0037058652378618717, -0.00347048114053905, 0.034767962992191315, 0.0498325489461422, 0.00683188159018755, -0.038005929440259933, -0.04124389588832855, -0.01830255426466465, -0.011780690401792526, -0.00630944361910224, 0.024525880813598633, 0.005448282230645418, -0.004426370374858379, 0.010144483298063278, 0.03189742565155029, 0.03130035102367401, -0.008295856416225433, 0.002043823478743434, -0.015454979613423347, -0.011246769689023495, 0.01942780427634716, 0.009254616685211658, -0.017062481492757797, -0.009294804185628891, -0.035709500312805176, 0.02266577258706093, -0.015615729615092278, 0.014984210953116417, -0.029761742800474167, 0.018589608371257782, -0.022401683032512665, -0.010098554193973541, -0.08326858282089233, 0.007400248199701309, -0.008364749141037464, -0.02025452069938183, -0.02266577258706093, -0.02118457481265068, -0.002560520311817527, 0.04781169071793556, -0.026569705456495285, -0.004501004237681627, 0.03917710855603218, 0.00683188159018755, 0.02955506555736065, -0.044412970542907715, -0.04078461229801178, 0.014008227735757828, 0.024296239018440247, 0.021391253918409348, 0.0032207441981881857, 0.004684718791395426, -0.041657254099845886, 0.013055209070444107, -0.0066711315885186195, -0.04868433251976967, 0.01652281917631626, 0.03899339586496353, -0.03226485475897789, 0.005000478122383356, 0.0139737818390131, -0.014789014123380184, -0.002114151604473591, -0.0005802076193504035, -0.04041718319058418, 0.013652280904352665, -0.02891206368803978, -0.01942780427634716, -0.007727489806711674, 0.0013046597596257925, 0.01751028560101986, 0.03166778013110161, 0.04932733252644539, 0.003602525917813182, 0.01325040590018034, -0.025490382686257362, -0.03164481744170189, -0.0011144866002723575, -0.004630178678780794, 0.004813893232494593, -0.01413453184068203, -0.00526456767693162, -0.00039362258394248784, -0.0215175561606884, -0.008737918920814991, -0.03534207120537758, 0.008795330300927162, 0.01204477995634079, -0.007819347083568573, 0.005850157700479031, -0.0018888143822550774, 0.023377666249871254, -0.009449812583625317, 0.016097979620099068, -0.012297387234866619, -0.014237871393561363, -0.027419384568929672, 0.006395559757947922, 0.012125154957175255, -0.004676107317209244, 0.02310209348797798, -0.019944502040743828, -0.01958855427801609, -0.015432015061378479, 0.021241985261440277, -0.0045124865137040615, -0.03614582121372223, -0.02374509535729885, 0.012722226791083813, 0.009243134409189224, 0.04514782875776291, -0.004730647429823875, -0.02040378749370575, 0.0005665725329890847, 0.01733805239200592, -0.012917423620820045, 0.014100085012614727, -0.015007175505161285, -0.018738875165581703, -0.021942395716905594, -0.026937132701277733, 0.009116830304265022, 0.0037288295570760965, 0.0002662424521986395, 0.02792459912598133, -0.012538512237370014, 0.02266577258706093, 0.012331833131611347, 0.00898478552699089, 0.03334417566657066, -0.0015716198831796646, -0.022723183035850525, 0.007922686636447906, 0.022700218483805656, -0.0033355657942593098, -0.0002784422249533236, -0.054379481822252274, 0.02185053937137127, 0.021092716604471207, 0.03566357120871544, 0.008066213689744473, -0.022378718480467796, 0.02070232480764389, 0.016591712832450867, 0.021299395710229874, -0.08997415751218796, -0.017154337838292122, -0.004977514035999775, -0.015581282787024975, -0.03793703764677048, -0.022688737139105797, 0.03260931745171547, 0.009570375084877014, -0.0053392015397548676, 0.009024973027408123, 0.0007578221848234534, 0.03357381746172905, -0.006516122259199619, 0.010552099905908108, -0.021483110263943672, -0.03504353389143944, -0.027832740917801857, 0.035732463002204895, 0.005775523371994495, 0.0017524637514725327, 0.023216916248202324, 0.03600803390145302, -0.024434024468064308, -0.011631421744823456, -0.003694383194670081, -0.018245143815875053, 0.03550282120704651, 0.029118742793798447, 0.004707683343440294, -0.020507127046585083, 0.01667208783328533, 0.030772173777222633, -0.019358912482857704, -0.03065735101699829, 0.0067859529517591, -0.018692946061491966, 0.0008676202851347625, 0.0030111949890851974, 0.04356329143047333, -0.01373265590518713, 0.021609414368867874, 0.0414276123046875, 0.02716677635908127, -0.011258251965045929, 0.041335754096508026, 0.013284852728247643, 0.02390584535896778, 0.006562050897628069, 0.013376710005104542, 0.0279475636780262, -0.009329250082373619, 0.0382126085460186, -0.0038580037653446198, 0.027097884565591812, -0.004561285953968763, -0.0009056549170054495, -0.004383312538266182, -0.016947658732533455, -0.0051870630122721195, 0.008221222087740898, -0.009622044861316681, -0.010936751961708069, -0.0031776861287653446, -0.03580135479569435, 0.004374700598418713, -0.0007061524665914476, -0.0012666251277551055, -0.0009207252296619117, 0.018911108374595642, 0.029899530112743378, -0.012630369514226913, 0.003774758195504546, 0.049878478050231934, -0.016752462834119797, 0.022527987137436867, 0.02086307480931282, -0.011269734241068363, 0.000256554369116202, -0.012871494516730309, 0.017774375155568123, 0.003949861042201519, 0.03352788835763931, -0.017774375155568123, -0.01107453741133213, 0.045698974281549454, -0.027258634567260742, -0.022126110270619392, -0.021276431158185005, 0.051485978066921234, 0.01002966146916151, 0.0028346567414700985, 0.00033477655961178243, -0.0017467227298766375, 0.02103530615568161, 0.006372595671564341, 0.009633527137339115, 0.00923739280551672, -0.04627308249473572, 0.03793703764677048, -0.0029537840746343136, -0.007842311635613441, -0.03237967565655708, -0.011998850852251053, 0.014754568226635456, -0.02523777447640896, 0.027694955468177795, 0.013330780901014805, 0.007773418445140123, 0.018532196059823036, -0.005479858256876469, 0.029830636456608772, -0.014478996396064758, -0.006774471141397953, -0.01749880239367485, -0.020667877048254013, -0.03198928013443947, -0.011292698793113232, 0.010247822850942612, 0.0003893167886417359, 0.011218064464628696, -0.0017711222171783447, -0.047444261610507965, -0.005812840536236763, -0.016132427379488945, -0.020001912489533424, 0.028843171894550323, -0.016006123274564743, 0.017303606495261192, 0.007790641393512487, 0.024434024468064308, -0.01784326694905758, 0.03596210852265358, 0.020300447940826416, 0.020909002050757408, -0.012745191343128681, -0.001977801090106368, -0.005327719729393721, -0.01587981916964054, 0.0008338914485648274, 0.02374509535729885, -0.0018084392650052905, 0.048868048936128616, -0.03148406744003296, 0.019565589725971222, -0.007159123197197914, 0.0011518035316839814, 0.014720121398568153, 0.021310878917574883, -0.00866328552365303, 0.019232608377933502, -0.006211845204234123, 0.025903739035129547, 0.019209643825888634, -0.003117404878139496, 0.03270117565989494, 0.019990431144833565, 0.006866327952593565, -0.036053963005542755, -0.038648929446935654, 0.00015823844296392053, 0.034630175679922104, -0.04275954142212868, 0.02119605615735054, -0.003298248862847686, 0.009478517808020115, -0.03899339586496353, -0.004862692207098007, 0.0022476317826658487, 0.008852740749716759, 0.04220839962363243, -0.011131948791444302, -0.011906993575394154, 0.0036427134182304144, 0.02631709724664688, -0.023033201694488525, -0.010712849907577038, 0.03244856745004654, 0.010902305133640766, 0.011872547678649426, 0.02971581555902958, -0.025972632691264153, -0.0021371159236878157, -0.05015404894948006, -0.019324464723467827, 0.008548463694751263, 0.014743085950613022, 0.012733709067106247, 0.015121997334063053, -0.027970528230071068, -0.022895416244864464, 0.033803462982177734, -0.028613528236746788, 0.0691225677728653, -0.010465983301401138, -0.04099129140377045, 0.012630369514226913, -0.005416706204414368, 0.006521863397210836, 0.01717730239033699, 0.03520428389310837, -0.008393454365432262, -0.024296239018440247, 0.02457180991768837, 0.013870442286133766, -0.0010570758022367954, -0.005878862924873829, -0.019037412479519844, -0.022505022585392, 0.030749209225177765, 0.030795136466622353, 0.028360920026898384, -0.02728159911930561, 0.029302457347512245, -0.050337765365839005, 0.00433451309800148, 0.025099989026784897, 0.010707108303904533, -0.025306668132543564, 0.020771216601133347, 0.01606353372335434, 0.0021973971743136644, -0.010638215579092503, -0.0012364845024421811, 0.011975886300206184, 0.010454501025378704, -0.01914075016975403, 0.015592765063047409, 0.006125729065388441, -0.009897616691887379, -0.02872834913432598, -0.031231459230184555, 0.023561380803585052, -0.008485311642289162, -0.023859916254878044, -0.03485982120037079, 0.0139737818390131, 0.022401683032512665, -0.0011381685035303235, -0.01236627995967865, -0.024273274466395378, 0.03081810101866722, 0.007090230006724596, 0.020610466599464417, -0.00040223420364782214, 0.00683188159018755, -0.022195003926753998, -0.0010707108303904533, 0.010620992630720139, 0.010098554193973541, -0.004044588655233383, -0.004139316733926535, -0.0005357142654247582, -0.050337765365839005, -0.022195003926753998, -0.0016405127244070172, 0.00510381767526269, -0.00578700564801693, -0.01173476129770279, 0.014341210946440697, -0.003088699420914054, 0.02217203937470913, 0.002039517741650343, 0.030955888330936432, -0.004641660954803228, 0.00417376309633255, 0.01768251694738865, -0.019990431144833565, 0.018543679267168045, -0.031851496547460556, 0.016178354620933533, 0.021276431158185005, 0.0414276123046875, -0.013801549561321735, -0.04030236229300499, -0.004759353119879961, -0.00040510474354960024, 0.01637355238199234, -0.009185723029077053, 0.0022361495066434145, 0.00268969452008605, 0.015271265059709549, -0.003921155817806721, 0.06512677669525146, -0.03644435852766037, -0.022723183035850525, 0.025765953585505486, 0.015351640060544014, 0.008531240746378899, -0.007331355474889278, 0.015960194170475006, -0.015960194170475006, 0.01973782293498516, 0.013078173622488976, -0.025260739028453827, -0.022918378934264183, 0.05245048180222511, -0.016913212835788727, -0.028292028233408928, -0.02503109537065029, 0.010833412408828735, -0.02631709724664688, -0.01188402995467186, -0.021804610267281532, -0.0019806716591119766, 0.0015170796541497111, 0.00044888045522384346, -0.004492392763495445, -0.011436225846409798, 0.012722226791083813, 0.007830829359591007, -0.013227441348135471, 0.014387139119207859, 0.005367907229810953, -0.03226485475897789, 0.021632378920912743, 0.014019710011780262, 0.00017689693777356297, 0.002757152309641242, -0.024801453575491905, -0.025811882689595222, -0.006280738394707441, -0.021115681156516075, -0.002261984394863248, 0.028705384582281113, 0.0002513515355531126, -0.021597931161522865, 0.017889196053147316, 0.018337000161409378, 0.030542530119419098, 0.01050617080181837, 0.013468566350638866, -0.009197205305099487, -0.03068031556904316, -0.010000956244766712, -0.03290785476565361, -0.02891206368803978, 0.0081925168633461, 0.00028041572659276426, -0.018842214718461037, -0.020151181146502495, 0.020518610253930092, -0.014662710949778557, -0.008996267803013325, 0.04735240340232849, -0.027212705463171005, 0.010620992630720139, -0.030955888330936432, -0.004788058344274759, -0.014777532778680325, -0.032815996557474136, 0.04960290715098381, -0.03226485475897789, 0.0327700674533844, 0.015799444168806076, 0.023320255801081657, -0.004492392763495445, 0.03157592564821243, 0.05557362735271454, 0.0024155580904334784, -0.025306668132543564, -0.03580135479569435, 0.009065160527825356, -0.03228781744837761, -0.05359869450330734, 0.01795808970928192, 0.0032121327240020037, -0.002950913505628705, -0.03518132120370865, 0.04590565338730812, 0.037500716745853424, -0.005413835868239403, 0.006039612926542759, -0.011143430136144161, 0.03658214211463928, 0.003404458751901984, -0.041197970509529114, -0.017269160598516464, -0.015581282787024975, 0.014329728670418262, -0.015386086888611317, 0.025306668132543564, -0.012481101788580418, -0.010230598971247673, -0.00683188159018755, 0.0010613816557452083, 0.019381877034902573, 0.005729594733566046, -0.030909959226846695, -0.021081235259771347, -0.019795233383774757, 0.034607212990522385, -0.008169552311301231, -0.042139504104852676, -0.010069848969578743, 0.02679934725165367, -0.04388479143381119, -0.02057602070271969, -0.014743085950613022, -0.0007477753097191453, -0.018555160611867905, 0.03481389209628105, 0.013055209070444107, -0.01252702996134758, -0.011711797676980495, 0.029600992798805237, -0.04094536229968071, 0.018026981502771378, 0.005540139507502317, 0.03254042565822601, 0.017728446051478386, 0.03130035102367401, 0.01243517268449068, -0.022080183029174805, -0.0038379100151360035, 0.0321500301361084, -0.005838675424456596, -0.010557840578258038, 0.020621947944164276, -0.029187636449933052, -0.01141326129436493, 0.04900583252310753, 0.0021844797302037477, 0.05800784379243851, 0.0056922780349850655, 0.02278059348464012, -0.026110418140888214, 0.0032925077248364687, 0.0033441775012761354, -0.013284852728247643, -0.011998850852251053, -0.007222274783998728, -0.026133382692933083, 0.014398621395230293, 0.021747199818491936, -0.0136637631803751, 0.00224476121366024, -0.009214428253471851, 0.013376710005104542, -0.00433451309800148, -0.007997320033609867, -0.0051870630122721195, -0.0036628071684390306, -0.00012370226613711566, 0.005743947811424732, -0.03793703764677048, -0.020644912496209145, -0.008146588690578938, -0.029784707352519035, -0.046319011598825455, -0.02422734536230564, -0.008181034587323666, -0.02165534347295761, -0.01832551881670952, 0.01019041147083044, 0.022034253925085068, 0.02104678936302662, -0.0072567216120660305, 0.03421681746840477, 0.012148119509220123, -0.014949765056371689, 0.0060798004269599915, -0.012090708129107952, -0.017234712839126587, -0.006269256118685007, -0.034767962992191315, -0.02588077448308468, -0.005126781761646271, 0.04790354520082474, 0.04726054519414902, -0.005009089596569538, -0.009380919858813286, 0.017303606495261192, -0.019657447934150696, -0.013055209070444107, 0.004624437540769577, -0.004790928680449724, 0.024686630815267563, 0.008318820968270302, 0.027373455464839935, -0.008060472086071968, -0.025145918130874634, -0.032356709241867065, -0.01667208783328533, -0.010196153074502945, -0.0034130702260881662, 0.012067743577063084, 0.019657447934150696, 0.038304466754198074, 0.014329728670418262, 0.019002964720129967, -0.0041335755959153175, -0.021127164363861084, -0.0035652087535709143, -0.03543392941355705, 0.02053009159862995, 0.005419576540589333, -0.0019993300084024668, -0.024617739021778107, -0.021230503916740417, 0.026546740904450417, 0.020610466599464417, -0.036053963005542755, -7.898465992184356e-05, -0.02503109537065029, -0.03690364211797714, -0.028980957344174385, -0.0359850712120533, 0.03952157497406006, 0.03286192566156387, 0.005600420758128166, 0.025467418134212494, 0.03791407123208046, 0.01574203372001648, 0.01895703561604023, 0.015983158722519875, -0.025283703580498695, 0.0992976725101471, 0.019818197935819626, 0.04034829139709473, 0.021793128922581673, 0.03258635476231575, 0.022114628925919533, 0.016603194177150726, -0.024985168129205704, 0.01912926882505417, 0.0010097118793055415, -0.03575542941689491, -0.012549994513392448, -0.03851114585995674, -0.020116733387112617, -0.0277638491243124, -0.003941249568015337, -0.007067265920341015, 0.0026940004900097847, 0.04498707875609398, 0.02379102259874344, 0.000764998490922153, 0.011516600847244263, 0.008181034587323666, -0.02523777447640896, -0.045698974281549454, 0.028039420023560524, 0.014513443224132061, 0.005029183346778154, -0.017762891948223114, 0.012549994513392448, 0.033298246562480927, -0.011826618574559689, 0.0347449965775013, 0.00490287970751524, 0.024434024468064308, -0.020346377044916153, 0.009822983294725418, 0.0011037220247089863, 0.003312601475045085, 0.03938378766179085, -0.00730265025049448, -0.0110687967389822, -0.008140847086906433, -0.01668356917798519, 0.023676201701164246, 0.009208687581121922, 0.014168977737426758, -0.008950338698923588, 0.002762893447652459, -0.03616878390312195, 0.04781169071793556, -0.007250980474054813, 0.0015845373272895813, 0.008089177310466766, -0.029279492795467377, -0.018337000161409378, 0.005913309287279844, -0.015064585953950882, -0.003160462947562337, -0.01461678184568882, 0.031070709228515625, -0.012653334066271782, 0.009886134415864944, 0.021632378920912743, -0.011849583126604557], [0.03912678733468056, 0.06313858181238174, -0.011665092781186104, 0.023413890972733498, -0.0010956577025353909, 0.020543955266475677, -0.06576935946941376, -0.005515657365322113, 0.043264277279376984, 0.008274980820715427, -0.015437861904501915, -0.04391001537442207, -0.019766680896282196, 0.02530326507985592, 0.0184632521122694, 0.019085071980953217, 0.01164715550839901, -0.05237632617354393, -0.04364693537354469, 0.019300317391753197, 0.011575406417250633, 0.04510582238435745, -0.02110598422586918, 0.02513585239648819, -0.024310745298862457, -0.015091078355908394, 0.04388609901070595, -0.020543955266475677, 0.05232849344611168, 0.012532051652669907, 0.07284852862358093, -0.015533526428043842, 0.010457327589392662, 0.021404936909675598, 0.034797970205545425, 0.03381740674376488, 0.0409444160759449, 0.04388609901070595, 0.00037387636257335544, -0.024514032527804375, -0.053380802273750305, -0.03130621463060379, 0.006277984008193016, -0.03032565303146839, -0.02865152433514595, 0.052471987903118134, 0.014445342123508453, -0.010391558520495892, -0.015114993788301945, 0.03912678733468056, 0.03470230475068092, 0.057877033948898315, -0.006558998487889767, -0.007659140508621931, 0.005820588208734989, -0.04120749235153198, -0.02920159511268139, 0.03276509791612625, 0.010702468454837799, -0.0015739803202450275, -0.014337719418108463, -0.01662171073257923, -0.027981871739029884, 0.03087572380900383, -0.009327290579676628, -0.03113880194723606, 0.02427487261593342, 0.022253958508372307, -0.034367479383945465, 0.0008370645227842033, 0.01876220479607582, 0.004884869325906038, 0.020543955266475677, -0.033721741288900375, -0.05687255784869194, -0.0184632521122694, 0.054576609283685684, -0.001316881855018437, -0.003225688124075532, -0.01552156824618578, -0.023150812834501266, 0.022540953010320663, -0.009566452354192734, 0.03977252542972565, -0.04037042707204819, 0.044938407838344574, -0.06710866093635559, -0.014146390371024609, 0.003085180651396513, 0.0022690428886562586, -0.05285464599728584, -0.008191274479031563, -0.01562919095158577, -0.011354182846844196, -0.02745571732521057, -0.013393032364547253, 0.03498929738998413, 0.018857868388295174, -0.013620235957205296, 0.03405657038092613, -0.012065687216818333, 0.016131429001688957, 0.003877402516081929, 0.0011195738334208727, 0.03840930387377739, -0.02556634321808815, -0.029536420479416847, 0.0419728085398674, 0.018833952024579048, 0.029153762385249138, 0.06763481348752975, -0.005506688728928566, -0.05189800262451172, 0.06294725090265274, -0.020543955266475677, 0.03494146466255188, -0.016454298049211502, 0.05816402658820152, -0.014385552145540714, 0.01443338394165039, -0.026738233864307404, -0.0460863821208477, 0.008681555278599262, -0.024418368935585022, 0.008035819977521896, -0.005348244681954384, 0.030158240348100662, 0.0020298815798014402, -0.0440295934677124, -0.013476739637553692, 0.00015424034791067243, -0.047593098133802414, 0.006929698400199413, -0.024215081706643105, -0.014935622923076153, 0.032191112637519836, -0.01610751263797283, -0.015342197380959988, 0.025279348716139793, -0.019192693755030632, 0.04603854939341545, -0.0011023840634152293, 0.034534890204668045, 0.02508801966905594, -0.03243027254939079, 0.010068690404295921, -0.037189580500125885, 0.07117440551519394, -0.038815878331661224, -0.043192531913518906, -0.0696437731385231, 0.009817571379244328, -0.02183542586863041, -0.04029867798089981, -0.026188163086771965, -0.0012294385815039277, 0.03288467973470688, 0.03343474864959717, 0.028316697105765343, -0.013859396800398827, -0.04135098680853844, 0.03695042058825493, -0.006648683920502663, -0.03125838190317154, -0.0031300236005336046, -0.017889264971017838, -0.021440809592604637, -0.01657387800514698, -0.027934039011597633, -0.027312221005558968, -0.01034372579306364, -0.007246587425470352, -0.003437943756580353, -0.014361635781824589, -0.06725215911865234, 0.004152438137680292, 0.011258518323302269, -0.014732335694134235, -0.026355575770139694, -0.008484247140586376, 0.057494375854730606, 0.029966911301016808, -0.00950666144490242, -0.05562891811132431, -0.0386962965130806, 0.04567980766296387, -0.07246587425470352, -0.011055231094360352, -0.0128070879727602, 0.054241783916950226, -0.008280959911644459, 0.013680025935173035, -0.014373593963682652, 0.02072332613170147, -0.020412417128682137, -0.013404990546405315, -0.02334214188158512, 0.012567926198244095, 0.05400262027978897, -0.029273342341184616, 0.02103423699736595, -0.07605329155921936, 0.029727749526500702, 0.0007675582892261446, 0.00032286776695400476, -0.028197117149829865, 0.018092552199959755, 0.034367479383945465, 0.008813093416392803, -0.04359910637140274, 0.032693348824977875, 0.006032843608409166, -0.06041214242577553, 0.0378592349588871, -0.0008363171946257353, -0.0050104293040931225, 0.034534890204668045, -0.033721741288900375, 0.035180628299713135, -0.018044719472527504, -0.06471704691648483, 0.015940099954605103, -0.0035425766836851835, -0.002176367910578847, -0.03675909340381622, -0.041901059448719025, 0.021990882232785225, -0.006702495273202658, 0.010074669495224953, 0.0008310854900628328, -0.004424483980983496, -0.0012511125532910228, -0.04960205405950546, -0.022720323875546455, -0.005695028230547905, 0.019156819209456444, 0.03558720275759697, -0.02385633997619152, 0.001446178532205522, 0.05601157620549202, -0.02967991679906845, 0.016418423503637314, -0.002233168575912714, -0.050941355526447296, 0.0378592349588871, -0.005464835558086634, -0.010158375836908817, 0.007031342014670372, 0.03001474216580391, 0.03427181392908096, -0.029321175068616867, 0.025972917675971985, 0.04517756775021553, -0.002530625555664301, -0.004478295333683491, 0.0029551368206739426, 0.028675438836216927, -0.06352124363183975, 0.04013126716017723, 0.0005089651676826179, -0.013668068684637547, 0.039724692702293396, 0.0031001283787190914, -0.03666342794895172, -0.046349458396434784, -0.02518368512392044, 0.022971441969275475, -0.00773088913410902, -0.03173670545220375, 0.014935622923076153, -0.046349458396434784, -0.006929698400199413, 0.03223894163966179, -0.00834672898054123, -0.05964682623744011, 0.02501627244055271, 0.037189580500125885, -0.006313858088105917, -0.008765261620283127, 0.023712843656539917, 0.004738383460789919, -0.023437807336449623, 0.03195194900035858, -0.021895216777920723, 0.008579911664128304, -0.0037428743671625853, -0.011043272912502289, 0.0075754341669380665, -0.0077727423049509525, -0.0036621573381125927, 0.08848968148231506, -0.037452660501003265, 0.013094081543385983, 0.0173391941934824, 0.023282352834939957, -0.028340613469481468, -0.06227760389447212, -0.011922190897166729, -0.0718918889760971, -0.04510582238435745, -0.05314164236187935, 0.03154537454247475, -0.004424483980983496, -0.027049142867326736, -0.03240635618567467, 0.024131374433636665, 0.02077115885913372, 0.042116302996873856, -0.06055564060807228, 0.015533526428043842, 0.02535109780728817, 0.08561974763870239, -0.0014611260266974568, -0.031330130994319916, -0.0019058166071772575, -0.040537841618061066, -0.008520121686160564, -0.023437807336449623, 0.04216413572430611, -0.0035993775818496943, 0.05644206702709198, -0.013512613251805305, 0.06720432639122009, -0.03728524595499039, 0.0033841324038803577, 0.0034289751201868057, -0.00967407412827015, 0.01836758852005005, 0.009488724172115326, -0.05027170479297638, -0.036639511585235596, 0.01153953280299902, 0.004188312217593193, 0.003360216272994876, 0.02599683403968811, -0.02508801966905594, 0.0510370209813118, 0.00016619841335341334, -0.008550016209483147, -0.03544370457530022, 0.020316751673817635, 0.023999836295843124, 0.037954896688461304, 0.014768210239708424, -0.043096866458654404, 0.016860870644450188, 0.04041825979948044, 0.020950529724359512, 0.003548555774614215, -0.011730861850082874, -0.06438222527503967, 0.006947635672986507, -0.05118051916360855, 0.01513891015201807, -0.021464725956320763, -0.004412525799125433, 0.03872021287679672, -0.03142579644918442, -0.015366113744676113, 0.0613209567964077, -0.049315061420202255, -0.024657530710101128, -0.012460303492844105, 0.015868352726101875, 0.051324013620615005, -0.0003596761671360582, 0.019934093579649925, -0.034917548298835754, 0.013739816844463348, -0.006475292146205902, 0.04058567062020302, -0.01922856830060482, 0.018319755792617798, -0.028795020654797554, 0.015174784697592258, 0.04118357598781586, -0.017542481422424316, -0.013883313164114952, 0.029536420479416847, -0.009393059648573399, 0.017913181334733963, 0.003192803356796503, 0.01205372903496027, 0.031067052856087685, -0.0024469189811497927, 0.036256853491067886, -0.04051392525434494, -0.011952086351811886, -0.009309353306889534, -0.022720323875546455, -0.0003064254124183208, -0.00890875793993473, -0.010050753131508827, 0.014529048465192318, -0.013022332452237606, -0.026140330359339714, 0.052519820630550385, 0.002551552141085267, 0.01743485778570175, -0.01387135498225689, 0.006995467934757471, -0.020316751673817635, -0.011659113690257072, 0.04816708713769913, 0.028125368058681488, 0.015653107315301895, 0.05443311110138893, 0.016597794368863106, -0.015270449221134186, -0.042283717542886734, -0.001967101590707898, -0.02312689833343029, 0.02774270996451378, -0.010457327589392662, 0.021094026044011116, -0.020400458946824074, -0.012388555333018303, 0.005844504106789827, -0.0110073983669281, -0.014457300305366516, 0.00398203544318676, -0.03630468621850014, 0.0028370509389787912, -0.025159768760204315, 0.0009431923972442746, -0.0014514101203531027, 0.004550043493509293, 0.0024827932938933372, 0.03563503175973892, -0.026188163086771965, 0.016382548958063126, -0.023091023787856102, 0.0012092592660337687, -0.00901040155440569, -0.002983537269756198, 0.01836758852005005, -0.08208015561103821, -0.038050562143325806, -0.04041825979948044, -0.013070165179669857, -0.005641217343509197, 0.0008684544591233134, 0.014911706559360027, -0.005156915634870529, 0.005874399561434984, -0.02659473568201065, 0.01100141927599907, 0.01751856505870819, -0.0276231300085783, -0.049315061420202255, -0.004188312217593193, -0.015700940042734146, 0.006230151746422052, 0.006953614763915539, -0.003581440541893244, -0.04154231771826744, 0.028149284422397614, -0.07667510956525803, -0.030684394761919975, -0.017458774149417877, 0.01884591020643711, 0.0400116853415966, -0.014170306734740734, 0.0471147745847702, -0.010547013022005558, -0.010971524752676487, 0.055389758199453354, -0.008209211751818657, 0.0038504968397319317, -0.04826274886727333, -0.005671112332493067, -0.052998144179582596, 0.015641149133443832, 0.0005758555489592254, 0.07303985953330994, -0.004194291308522224, 0.04082483425736427, 0.00789830181747675, -0.009345227852463722, 0.01863066479563713, 0.019838429987430573, 0.01970689184963703, -0.0469234474003315, -0.04225980117917061, 0.06313858181238174, 0.05400262027978897, 0.002629279624670744, 0.004107595421373844, -0.06878279149532318, -0.0532851368188858, -0.02059178799390793, 0.012292890809476376, 0.04737785458564758, -0.011276455596089363, 0.030588729307055473, -0.01854695938527584, -0.03998776897788048, -0.03243027254939079, 0.022636616602540016, -0.01100141927599907, 0.05390695855021477, -0.013847439549863338, 0.03259768337011337, -0.029919078573584557, 0.044125258922576904, 0.004807142075151205, -0.02093857154250145, -0.03651992976665497, -0.013644152320921421, -0.01286687795072794, 0.06060347333550453, -0.03544370457530022, -0.01248421985656023, -0.02038850076496601, -0.016203178092837334, -0.01949164643883705, 0.023700885474681854, 0.03288467973470688, 0.0071449438109993935, 0.03429573029279709, 0.02740788459777832, -0.031330130994319916, 0.05041520297527313, -0.01033774670213461, -0.028890684247016907, 0.03417614847421646, -0.007228650152683258, -0.03950944542884827, 0.06452571600675583, -0.020735284313559532, -0.010606803931295872, 0.015318281017243862, -0.021943049505352974, 0.0276231300085783, -0.05266331881284714, -0.018487168475985527, -0.021644096821546555, 0.00927347969263792, 0.004140479955822229, -0.022086545825004578, -0.006200256757438183, -0.0003378153487574309, 0.005333296954631805, 0.0036203041672706604, 0.019252484664320946, 0.015832478180527687, 0.026522988453507423, -0.0036203041672706604, 0.03695042058825493, 0.011126979254186153, 0.004959607496857643, -0.00796407088637352, -0.02166801318526268, -0.004098626784980297, 0.004475305788218975, 0.042929451912641525, 0.042331550270318985, 0.04838233068585396, -0.02676215022802353, -0.006119539961218834, 0.00011444241681601852, -0.009530577808618546, 0.011031314730644226, 0.010134460404515266, -0.020496122539043427, 0.015007371082901955, -0.01464862935245037, -0.003781737992540002, 0.010331768542528152, 0.012555968016386032, -0.006708474364131689, -0.01970689184963703, 0.006230151746422052, -0.008573932573199272, 0.023665010929107666, 0.0052226847037673, 0.043742600828409195, -0.02881893701851368, 0.011527574621140957, 0.02274424023926258, -0.022708365693688393, -0.02303123287856579, 0.014756252057850361, 0.008902779780328274, -0.038002729415893555, 0.012627716176211834, -0.011318308301270008, -0.03601768985390663, -0.024609697982668877, -0.017925139516592026, 0.04257071018218994, -0.0058773891068995, -0.003955129999667406, -0.0051987688057124615, -0.01027795672416687, 0.003614325076341629, 0.03974860906600952, 0.03302817419171333, -0.021644096821546555, 0.04359910637140274, 0.014158348552882671, -0.0114976791664958, -0.023509556427598, 0.01567702367901802, -0.06715649366378784, -0.03927028551697731, 0.00835270807147026, 0.02188325859606266, 0.030469149351119995, 0.018224090337753296, -0.01876220479607582, 0.03324342146515846, 0.01682499796152115, -0.028747187927365303, 0.004762299358844757, -0.035563286393880844, -0.015186742879450321, -0.01137212011963129, -0.004236144479364157, -0.025805504992604256, -0.02175172045826912, -0.0296320840716362, -0.01359631959348917, -0.011874358169734478, -0.02110598422586918, 0.028149284422397614, -0.014014852233231068, -0.05969465896487236, -0.0028803988825529814, 0.020735284313559532, -0.0007585897692479193, 0.004179343581199646, -0.00824508536607027, -0.030349569395184517, 0.009925194084644318, 0.030253903940320015, -0.018726330250501633, -0.01370394229888916, -0.03254985436797142, 0.004263049922883511, -0.01359631959348917, 0.05591591075062752, 0.028244949877262115, -0.04199672490358353, 0.024143332615494728, 0.007156901992857456, -0.007258545607328415, -0.035013213753700256, 0.02304319106042385, -0.01269946526736021, 0.06002948433160782, 0.00618829857558012, -0.011760757304728031, 0.041901059448719025, -0.01121666468679905, 0.011132958345115185, -0.04567980766296387, 0.01049320213496685, -0.02838844619691372, 0.022493120282888412, -0.04833449795842171, -0.013369116932153702, 0.021572349593043327, -0.006529103498905897, -0.057446543127298355, 0.00839456170797348, 0.013129955157637596, -0.002324348781257868, 0.016418423503637314, -0.022899694740772247, 0.03367391228675842, -0.02680998109281063, 0.003106107469648123, -0.016466256231069565, 0.011970022693276405, 0.006511166226118803, 0.0024783089756965637, 0.020735284313559532, -0.03367391228675842, -0.014074642211198807, 0.008597848936915398, 0.018224090337753296, -0.006529103498905897, -0.00834672898054123, -0.025422846898436546, 0.0021315249614417553, -0.005680080968886614, 0.010409495793282986, -0.014206181280314922, 0.0735660120844841, -0.010511139407753944, 0.04876498878002167, 0.009159877896308899, -0.0038863711524754763, -0.013381075114011765, 0.015952058136463165, 0.01121666468679905, -0.019204651936888695, 0.01712394878268242, 0.01359631959348917, -0.021644096821546555, -0.006355711724609137, -0.05553325265645981, -0.03671126067638397, -0.04180539399385452, -0.013404990546405315, 0.005853472743183374, 0.01408660039305687, 0.03735699504613876, 0.001789225498214364, 0.0005822082748636603, 0.016669541597366333, 0.005455866921693087, 0.02518368512392044, 0.005082177463918924, -0.006929698400199413, 0.0005657659494318068, -0.01837954670190811, 0.02324647828936577, -0.011748799122869968, 0.003026885213330388, 0.017805559560656548, -0.050893522799015045, 0.023282352834939957, -0.018570875748991966, 0.006582914851605892, 0.0006464828620664775, -0.014839958399534225, 0.004152438137680292, -0.0043019140139222145, 0.013297367841005325, 0.006666621193289757, 0.014732335694134235, 0.026188163086771965, -0.03482188656926155, -0.014289887621998787, -0.013476739637553692, 0.008998444303870201, 0.010618762113153934, -0.007168859709054232, 0.007910259999334812, -0.02680998109281063, 0.012149393558502197, -0.0025037198793143034, 0.0015059688594192266, 0.025829419493675232, -0.017674019560217857, 0.02008954994380474, 0.01357240416109562, 0.02719263918697834, -0.029129846021533012, 0.008089630864560604, -0.017506606876850128, -0.016346674412488937, 0.007019384298473597, -0.060746971517801285, 0.006828055251389742, 0.0075395600870251656, 0.006708474364131689, -0.0032226985786110163, 0.048621490597724915, -0.02236158214509487, 0.0032645517494529486, 0.007916239090263844, 0.003557524411007762, -0.008998444303870201, -0.06289941817522049, 0.02616424672305584, 0.0064812712371349335, -0.046875614672899246, -0.024944523349404335, -0.03807447850704193, 0.012496178038418293, -0.018774161115288734, -0.010248061269521713, -0.04984121397137642, 0.009578409604728222, -0.03022998757660389, 0.016633668914437294, -0.002243631985038519, -0.026068581268191338, 0.011425931006669998, -0.024131374433636665, 0.014062684029340744, 0.027503550052642822, -0.014588839374482632, 0.011354182846844196, -0.007414000108838081, -0.0012122488114982843, 0.012555968016386032, -0.003303415374830365, 0.01640646532177925, 0.03408048674464226, -0.03137796372175217, -0.007796658203005791, 0.007832532748579979, 0.04376651719212532, -0.04723435640335083, -0.025255432352423668, -0.0031240445096045732, -0.0008766756509430707, 0.014098558574914932, -0.007862427271902561, -0.0369265042245388, 0.02183542586863041, 0.01939598098397255, -0.00895061157643795, 0.022158294916152954, -0.01610751263797283, -0.031449709087610245, -0.0015126952202990651, 0.004591897130012512, 0.03326733782887459, 0.047043029218912125, -0.01901332288980484, 0.016549961641430855, -0.02136906236410141, 0.021608224138617516, -0.03319558873772621, -0.005599363707005978, 0.008364666253328323, 0.022170253098011017, -0.0219669658690691, 0.016418423503637314, 0.06438222527503967, 0.005985011346638203, -0.019108988344669342, -0.00013564930122811347, -0.026953479275107384, -0.016466256231069565, 0.01321366149932146, 0.020842907950282097, -0.026690401136875153, -0.014720377512276173, -0.027001310139894485, -0.008406519889831543, 0.002231673803180456, 0.002097145654261112, 0.016083598136901855, 0.014672545716166496, 0.016968494281172752, 0.004289955832064152, -0.04257071018218994, -0.013548487797379494, 0.015868352726101875, -0.022122420370578766, -0.03931811824440956, 0.005073208827525377, 0.008436414413154125, 0.020352626219391823, 0.0031509501859545708, 0.009853445924818516, 0.013584361411631107, 0.003524639643728733, -0.012011876329779625, -0.01332128420472145, -0.023963961750268936, -0.0032555831130594015, 0.02291165292263031, -0.029871245846152306, -0.004696529824286699, -0.02029283531010151, -0.022062629461288452, -0.018008844926953316, 0.0015186741948127747, -0.01806863583624363, 0.0001289228821406141, 0.00685197114944458, -0.027049142867326736, -0.0031658976804465055, 0.017578355967998505, 0.008448372595012188, -0.015593316406011581, -0.007736868225038052, -0.027647046372294426, 0.02590116858482361, -0.006875887513160706, -0.005121041089296341, 0.047258272767066956, -0.027694879099726677, -0.007073195185512304, 0.011503658257424831, 0.029369007796049118, 0.005375150125473738, -0.0065350825898349285, -0.04902806505560875, -0.023150812834501266, 0.008167358115315437, -0.006242109928280115, 0.02496843971312046, -0.023975919932127, 0.007156901992857456, -0.0026681432500481606, 0.006236130837351084, -0.03656776249408722, -0.0357067808508873, 0.005623280070722103, -0.010523097589612007, -0.025159768760204315, -0.009494703263044357, -0.0204243753105402, 0.00018675134924706072, -0.05428961664438248, 0.012424429878592491, -0.012412471696734428, 0.0038983291015028954, 0.005076198372989893, 0.001769793569110334, 0.025638090446591377, -0.02236158214509487, 0.032358523458242416, 0.026666484773159027, -0.023138856515288353, -0.033602163195610046, 0.049315061420202255, 0.00832879263907671, -0.00824508536607027, -0.011461805552244186, 0.00020683715410996228, -0.022074587643146515, 0.03819406032562256, -0.020149338990449905, -0.04115965962409973, 0.03613727167248726, -0.0005859452066943049, -0.00040395837277173996, -0.01332128420472145, -0.028077537193894386, -0.002907304558902979, -0.03302817419171333, -0.007706972770392895, 0.03726132959127426, 0.01006271131336689, -0.013476739637553692, 0.0027129859663546085, 0.009967046789824963, 0.017207656055688858, 0.003138992004096508, 0.03716566413640976, 0.04041825979948044, -0.012023834511637688, -0.020759200677275658, 0.0011950591579079628, 0.020412417128682137, 0.00762326642870903, 0.0052077374421060085, -0.0148160420358181, 0.02594900131225586, 0.021189691498875618, 0.0044992221519351006, 0.01747073233127594, -0.0008692018454894423, 0.030947472900152206, 0.0007989482255652547, -0.02282794564962387, -0.04670820012688637, -0.005159905180335045, 0.03161712363362312, -0.014421426691114902, -0.02508801966905594, 0.01121666468679905, -0.00012088856601621956, 0.02221808396279812, -0.010588866658508778, -0.01275925524532795, -0.037189580500125885, 0.0006494724075309932, 0.013357158750295639, -0.01785339042544365, -0.022672491148114204, -0.028747187927365303, -0.04202064126729965, 0.025877252221107483, 0.029871245846152306, -0.017446815967559814, 0.0043557253666222095, 0.022600742056965828, -0.04577547311782837, -0.0029850320424884558, -0.005031355656683445, -0.008376624435186386, 0.025662006810307503, 0.02200283855199814, 0.0069655729457736015, -0.011467784643173218, 0.030158240348100662, 0.025111936032772064, -0.006923719774931669, -0.007162881083786488, -0.00555452099069953, -0.00527948560193181, 0.013775690458714962, 0.02111794240772724, 0.010744321160018444, -0.013656110502779484, 0.014792126603424549, 0.012400513514876366, 0.05472010374069214, 0.0229953583329916, 0.033506497740745544, 0.007671098690479994, -0.00901638064533472, -0.00993715226650238, 0.015449820086359978, -0.0025321203283965588, 0.0004476800677366555, 0.03321950510144234, 0.01610751263797283, 0.016932619735598564, -0.008167358115315437, -0.003369184909388423, 0.01451709121465683, -0.016370590776205063, 0.017626186832785606, 0.01381156500428915, -0.03305209055542946, -0.002091166563332081, -0.013859396800398827, -0.015868352726101875, -0.008705471642315388, 0.0235573872923851, -0.014971497468650341, 0.04570372402667999, 0.008376624435186386, -0.001502231927588582, 0.009309353306889534, 0.021141858771443367, 0.03011040762066841, 0.0449623242020607, 0.019300317391753197, 0.0307083111256361, -0.02594900131225586, -0.038911543786525726, 0.012412471696734428, 0.00835270807147026, -0.006600851658731699, 0.02929725870490074, 0.011366141028702259, -0.01209558267146349, 0.01704024337232113, -0.036256853491067886, -0.02132122963666916, 0.007790679112076759, 0.028914600610733032, -0.00762326642870903, 0.011192748323082924, -0.00867557618767023, -0.002783239586278796, 0.005724923685193062, -0.008956590667366982, 0.009100086987018585, 0.026044664904475212, -0.04988904669880867, 0.025757672265172005, -0.006469313055276871, 0.011413972824811935, -0.017877306789159775, 0.008980507031083107, 0.013632194139063358, -0.01820017397403717, -0.004071721341460943, -0.024633614346385002, -0.006098613142967224, 0.00901638064533472, 0.02107010968029499, 0.021273396909236908, -0.015330239199101925, 0.00176680414006114, -0.00899246521294117, 0.004881879780441523, -0.02740788459777832, 0.006200256757438183, 0.02437053620815277, -0.00018637765606399626, 0.010863902047276497, -0.028508026152849197, -0.07083957642316818, -0.02680998109281063, 0.0006591883138753474, -0.024681445211172104, -0.00783851183950901, 0.01004477497190237, -0.0017608250491321087, -0.0037757589016109705, 0.018750246614217758, 0.0013004395877942443, 0.0018624686636030674, -0.009327290579676628, 0.007384105119854212, 0.007384105119854212, -0.010313831269741058, -0.016322758048772812, -0.017662061378359795, 0.005671112332493067, 0.015425903722643852, 0.009841487742960453, 0.036209020763635635, -0.03429573029279709, 0.005587405990809202, 0.0012443860759958625, 0.019898220896720886, 0.03790706768631935, 0.0018265944672748446, -0.0018041729927062988, 0.01535415556281805, 0.011366141028702259, 0.008813093416392803, 0.012902752496302128, 0.003919255919754505, 0.024824943393468857, 0.00811354722827673, 0.016932619735598564, 0.003070233156904578, -0.025829419493675232, 0.010421453975141048, -0.012316807173192501, -0.023700885474681854, -0.00978767592459917, 0.018176259472966194, 0.01192816998809576, -0.02093857154250145, -0.012962542474269867, 0.006517145317047834, 0.033339083194732666, 0.00839456170797348, 0.029129846021533012, -0.004179343581199646, 0.01704024337232113, 0.046229880303144455, -0.032191112637519836, 0.0014842947712168097, -0.008585890755057335, -0.01275925524532795, -0.0008041798719204962, 0.013680025935173035, -0.025542426854372025, -0.02256486937403679, -0.03309992328286171, -0.042498961091041565, 0.026499072089791298, 0.01845129393041134, 0.004191301763057709, 0.03443922847509384, -0.0035067026037722826, -0.027599213644862175, 0.03640034794807434, -0.013955061323940754, 0.07260937243700027, 0.020316751673817635, -0.05065436288714409, -0.029177678748965263, -0.020400458946824074, 0.01164715550839901, 0.004869922064244747, 0.008813093416392803, 0.030158240348100662, -0.011706945486366749, 0.010744321160018444, 0.02029283531010151, 0.008257043547928333, 0.018104510381817818, -0.012842961587011814, -0.03544370457530022, 0.02903418242931366, 0.02826886624097824, 0.032358523458242416, -0.019981926307082176, 0.022672491148114204, -0.05156317725777626, 0.012460303492844105, -0.028890684247016907, 0.011802610009908676, -0.012191247195005417, 0.020866822451353073, 0.020795075222849846, -0.020962487906217575, 0.0015978964511305094, -0.008053756318986416, 0.025925084948539734, -0.015318281017243862, 0.006828055251389742, 0.00477425754070282, -0.001038109534420073, -0.020496122539043427, -0.03685475513339043, -0.018893742933869362, 0.03998776897788048, -0.008412498980760574, -0.004567980766296387, -0.02929725870490074, 0.008478268049657345, -0.016765207052230835, -0.0042122285813093185, 0.0018953533144667745, -0.05075002834200859, 0.017291361466050148, 0.014289887621998787, -0.005901305004954338, -0.003213729942217469, -0.010242082178592682, -0.012627716176211834, 0.00221074721775949, -0.007970049977302551, 0.002452898072078824, -0.01690870337188244, -0.0015829488402232528, 0.007276482414454222, -0.009536556899547577, -0.007928197272121906, -0.004095637239515781, 0.004454378969967365, -0.011760757304728031, -0.0010590361198410392, 0.0016173282638192177, -0.001868447638116777, -0.003082191338762641, 0.02805362083017826, 0.01712394878268242, -0.011838484555482864, 0.018104510381817818, 0.00789830181747675, -0.00431387173011899, 0.0012757760705426335, -0.007778721395879984, -0.0038056541234254837, -0.010780195705592632, 0.032693348824977875, -0.01794905588030815, -0.026307743042707443, 0.01631079986691475, 0.008723407983779907, 0.002209252445027232, -0.004251092206686735, -0.0169206615537405, 0.0030911597423255444, 0.016549961641430855, 0.009135961532592773, 0.03855280205607414, -0.03893546015024185, 0.016454298049211502, 0.0052226847037673, -0.010295893996953964, 0.019623184576630592, -0.018558917567133904, 0.023306269198656082, 0.01836758852005005, 0.010636698454618454, 0.0194438137114048, -0.0245379488915205, -0.026929562911391258, 0.03807447850704193, 0.005461846012622118, 0.029153762385249138, 0.022708365693688393, -0.0059700640849769115, 0.0052077374421060085, -0.019156819209456444, 0.00888484250754118, -0.007246587425470352, -0.014182264916598797, -0.013632194139063358, 0.012131457217037678, -0.00939903873950243, 0.005007439758628607, 0.0015485694166272879, -0.02060374617576599, 0.005186810623854399, -0.0022167263086885214, -0.03979644179344177, 0.004926722962409258, 0.00596408499404788, -0.0063377744518220425, -0.003727926639840007, -0.01721961423754692, -0.029369007796049118, -0.0011554480297490954, -0.009572431445121765, -0.023784590885043144, -0.012926667928695679, 0.02200283855199814, -0.0023811496794223785, -0.00862774346023798, -0.004146459046751261, 0.007186796981841326, 0.020567871630191803, 0.03678300604224205, 0.058642350137233734, 0.012615758925676346, 0.003306404920294881, -0.025757672265172005, -0.013285410590469837, 0.020412417128682137, -0.0032765096984803677, -0.012795129790902138, -0.0045440648682415485, 0.018869826570153236, -0.01738702692091465, -0.00444242125377059, 0.04407742619514465, -0.023832423612475395, -0.00010547386773396283, -0.004786215722560883, 0.004576949402689934, -0.022552911192178726, 0.00550369918346405, 0.02924942597746849, -0.04950638860464096, 0.02166801318526268, 0.03938986733555794, 0.005587405990809202, -0.01321366149932146, 0.043694768100976944, 0.05859451740980148, 0.015437861904501915, 0.01177271455526352, -0.042762041091918945, -0.008496205322444439, -0.03850496932864189, -0.028029704466462135, 0.04347952455282211, -0.00660683074966073, 0.01884591020643711, -0.04025084525346756, 0.03931811824440956, 0.009357186034321785, -0.007497706916183233, 0.006331795360893011, 0.00016629183664917946, -0.0013520086649805307, 0.008550016209483147, -0.04180539399385452, -0.03472622111439705, -0.030780058354139328, 0.001162174390628934, -0.007079174276441336, 0.032478105276823044, -0.012352680787444115, -0.030349569395184517, -0.0036292728036642075, 0.010014879517257214, 0.00727050332352519, 0.01647821255028248, -0.012280932627618313, -0.023138856515288353, 0.008890821598470211, 0.025207601487636566, -0.013620235957205296, -0.009201730601489544, 0.013476739637553692, 0.026786064729094505, -0.010008900426328182, -0.01820017397403717, -0.019025281071662903, 0.042546793818473816, 0.028484109789133072, 0.0012533547123894095, -0.009249563328921795, -0.004233154933899641, 0.01115687470883131, -0.009416976012289524, 0.015390029177069664, -0.014839958399534225, -0.005303401965647936, 0.020830949768424034, 0.016131429001688957, -0.0076651195995509624, 0.015103035606443882, -0.02445424348115921, 0.03109096921980381, 0.04419700801372528, 0.0031688872259110212, 0.03338691592216492, 0.01918073557317257, -0.0011517110979184508, -0.020878780633211136, 0.032645516097545624, 0.021895216777920723, 0.01725548692047596, -0.04029867798089981, 0.013943104073405266, -0.02573375590145588, -0.021297313272953033, 0.005778735037893057, 0.018080594018101692, 0.03044523298740387, -0.01357240416109562, -0.03764398768544197, 0.029010266065597534, 0.006397564895451069, -9.001246507978067e-05, -0.007360188756138086, 0.02513585239648819, -0.001801183563657105, 0.014218139462172985, -0.04266637563705444, 0.005701007321476936, -0.022086545825004578, -0.0064453971572220325, 0.03305209055542946, 0.027766626328229904, -0.0008310854900628328, 0.02822103351354599, -0.034845802932977676, -0.024992356076836586, -0.008334770798683167, 0.014170306734740734, -0.026905646547675133, -0.03541978821158409, 0.03113880194723606, 0.022624658420681953, 0.020747242495417595, -0.012388555333018303, 0.028795020654797554, -0.02390417270362377, 0.03353041410446167, 0.0071090697310864925, -0.03900720924139023, -0.005324328318238258, -0.028197117149829865, -0.009554494172334671, -0.0387919619679451, -0.011563449166715145, 0.036376435309648514, 0.011461805552244186, -0.0008893811027519405, -0.013943104073405266, 0.015043245628476143, 0.015390029177069664, 0.021656055003404617, 0.021213607862591743, 0.0015964016783982515, 0.024609697982668877, -0.01248421985656023, 0.01867849752306938, -0.02556634321808815, -0.011097083799540997, -0.004756320267915726, -0.0022839903831481934, -0.014469258487224579, 0.014768210239708424, 0.007240608334541321, 0.025064103305339813, 0.03305209055542946, -0.0005844504339620471, 0.024035710841417313, -0.0003742500557564199, -0.0173391941934824, 0.0020926613360643387, -0.010636698454618454, -0.007156901992857456, 0.029942994937300682, -0.0008990970090962946, -0.02410745806992054, -0.009626242332160473, 0.03250202164053917, 0.029105929657816887, -0.014851916581392288, -0.04163798317313194, 0.011419951915740967, -0.015318281017243862, -0.03443922847509384, 0.0235573872923851, 0.024310745298862457, 0.01982647180557251, -0.013129955157637596, 0.03970077633857727, 0.024203123524785042, 0.03747657686471939, 0.0019820493180304766, 0.0055395737290382385, -0.03565894812345505, 0.04941072314977646, 0.041685815900564194, 0.015330239199101925, 0.01419422309845686, -0.007611308246850967, 0.015557442791759968, -0.014768210239708424, -0.0386962965130806, -0.017972972244024277, -0.03027782030403614, -0.05854668468236923, 0.0005773503216914833, 0.006343753542751074, -0.02337801642715931, -0.02767096273601055, -0.008896800689399242, -0.003680094378069043, -0.013739816844463348, 0.001626296783797443, 0.014792126603424549, 0.024633614346385002, 0.002037355210632086, 0.030995303764939308, -0.004863942973315716, -0.030349569395184517, 0.014206181280314922, 0.021978924050927162, 0.016346674412488937, 0.027383968234062195, 0.00839456170797348, 0.0429055355489254, -0.005542563274502754, 0.03860063478350639, -0.019814513623714447, -0.004361703991889954, 0.004609833937138319, 0.005590395536273718, 0.0369265042245388, -0.02209850400686264, 0.052137162536382675, -0.014493174850940704, -0.009028338827192783, 0.0014499153476208448, -0.001425251830369234, -0.012113519944250584, 0.014983455650508404, -0.0032226985786110163, -0.02941684052348137, -0.004331809002906084, -0.0020642608869820833, 0.041303157806396484, -0.058307524770498276, -0.022026754915714264, -0.005686060059815645, -0.033841323107481, -0.002898335922509432, 0.014146390371024609, -0.011252539232373238, 0.0017653093673288822, -0.027336137369275093, 0.036209020763635635, 0.013440865091979504, -0.012771213427186012, -0.001138258259743452, -0.004020899534225464], [0.005332671105861664, 0.039367493242025375, -0.016378512606024742, 0.038663286715745926, -0.023511458188295364, 0.04770440608263016, -0.041525550186634064, -0.02364775538444519, 0.06265179067850113, 0.013970576226711273, -0.015174544416368008, -0.008961613290011883, 0.013561681844294071, -0.009120628237724304, 0.010148544795811176, -0.0027288056444376707, 0.018968181684613228, -0.006917139049619436, -0.02145562507212162, 0.01730988547205925, -0.013277726247906685, 0.05188422277569771, -0.013436741195619106, 0.010625588707625866, 0.002978686010465026, 0.015538007020950317, 0.05238398164510727, -0.017502974718809128, 0.06565035134553909, -0.014072800055146217, 0.07160204648971558, -0.008166540414094925, -0.015560722909867764, -0.021387476474046707, 0.046341422945261, 0.019785970449447632, 0.006911459844559431, 0.036709677428007126, 0.014788365922868252, -0.009802119806408882, -0.03923119604587555, -0.0189908966422081, -0.0024491101503372192, -0.03825439140200615, -0.027986586093902588, 0.028895240277051926, 0.003975367173552513, -0.01403872575610876, -0.005795517470687628, 0.01678740791976452, -0.006718370597809553, 0.036209918558597565, 0.0003698511281982064, -0.042752236127853394, -0.010801640339195728, -0.028849808499217033, -0.009484090842306614, 0.02925870381295681, 0.00163274013902992, -0.0020955863874405622, -0.00596305076032877, -0.032734308391809464, -0.018695583567023277, 0.035460274666547775, -0.002216267166659236, -0.006780840922147036, 0.016378512606024742, 0.020183507353067398, -0.020910432562232018, 0.028395481407642365, -0.0061050280928611755, 0.014197740703821182, 0.01829804852604866, -0.009535202756524086, -0.02535148523747921, -0.013754771091043949, 0.046455007046461105, 0.02607840858399868, 0.020126717165112495, -0.04761354252696037, -0.02657816931605339, 0.017957301810383797, 0.010665342211723328, 0.03214368224143982, -0.04038973152637482, 0.03682325780391693, -0.06324241310358047, -0.036936841905117035, -0.011068558320403099, 0.003887341357767582, -0.04627327620983124, 0.010125827975571156, -0.013641188852488995, 0.028395481407642365, -0.02487444132566452, -0.01782100275158882, 0.031121445819735527, 0.01144905760884285, -0.029326852411031723, 0.024806292727589607, 0.011914744041860104, 0.035937320441007614, -0.0017661988968029618, 0.0248517245054245, 0.03736845403909683, -0.017116796225309372, -0.056881826370954514, 0.03511952981352806, 0.0073714666068553925, -0.00028963389922864735, 0.08586793392896652, -0.01181252021342516, -0.03975367173552513, 0.09440929442644119, -0.017832361161708832, 0.014424904249608517, -0.004847108386456966, 0.056200336664915085, -0.015424424782395363, 0.017412109300494194, -0.01853656955063343, -0.029304135590791702, -0.008211973123252392, -0.03800451010465622, -0.00863790512084961, -0.006139102857559919, 0.02432924695312977, 0.008671979419887066, -0.014879231341183186, -0.017616556957364082, -0.02807745151221752, -0.06110707297921181, 0.02560136467218399, -0.015515290200710297, -0.0009966813959181309, 0.04136653617024422, 0.0014339718036353588, -0.030144643038511276, 0.01634443923830986, -0.006661579944193363, 0.01878645084798336, 0.005466130096465349, 0.04725008085370064, 0.04068504273891449, -0.06369674205780029, 0.012346355244517326, -0.05433759093284607, 0.045932527631521225, -0.06719506531953812, -0.0400489866733551, -0.03927662968635559, -0.0011691838735714555, -0.008223331533372402, -0.07046622782945633, -0.031121445819735527, -0.03514224663376808, 0.039322059601545334, 0.05061210319399834, 0.012948338873684406, -0.026032976806163788, -0.047159213572740555, 0.024692710489034653, -0.012959697283804417, -0.02141019143164158, 0.006019841879606247, -0.02335244230926037, -0.029304135590791702, 0.0004564573464449495, -0.0261011254042387, -0.032734308391809464, -0.010341634042561054, -0.008444815874099731, 0.0007631285116076469, -0.020126717165112495, -0.06964843720197678, 0.02878165990114212, 0.025283336639404297, 0.010869789868593216, -0.03584645316004753, -0.015651589259505272, 0.042275190353393555, 0.020808208733797073, -0.030803417786955833, -0.03396099433302879, -0.040798626840114594, 0.01083571556955576, -0.03557385876774788, 0.007717891596257687, -0.02097858116030693, 0.045228321105241776, -0.015254052355885506, -0.00877420324832201, 0.0006875255494378507, 0.025442350655794144, -0.016037767753005028, -0.020637834444642067, -0.026850765570998192, 0.0005384493269957602, 0.04979431629180908, -0.019433867186307907, 0.03639164939522743, -0.0589263029396534, 0.010460895486176014, 0.025510499253869057, -0.030894283205270767, -0.01732124388217926, 0.001062700874172151, 0.013084637001156807, -0.005275880452245474, -0.00567057728767395, 0.019672388210892677, -0.01156831905245781, -0.05942606180906296, 0.04066232964396477, 0.012334996834397316, -0.018400270491838455, 0.030099209398031235, -0.012039683759212494, 0.028713509440422058, -0.0404805988073349, -0.05842654034495354, 0.009171740151941776, 0.009376187808811665, -0.008558398112654686, -0.023534175008535385, -0.02585124596953392, -0.011676221154630184, 0.0018414469668641686, 0.040321581065654755, -0.008246047422289848, -0.0092512471601367, -0.01753704808652401, -0.04413793608546257, -0.05120272934436798, -0.015765171498060226, 0.008870747871696949, 0.0409122072160244, -0.031030580401420593, 0.016185423359274864, 0.07078425586223602, -0.03707313910126686, 0.014106874354183674, -0.018695583567023277, -0.042070742696523666, 0.01473157573491335, 0.0009377607493661344, 0.002238983754068613, -0.010154224000871181, 0.03118959628045559, 0.023511458188295364, -0.030780700966715813, 0.041457399725914, 0.0248517245054245, -0.012584877200424671, -2.7868611596204573e-06, -0.018854599446058273, 0.027146078646183014, -0.0365733802318573, 0.0706479549407959, 0.005556995514780283, -0.019195344299077988, 0.051793355494737625, 0.01257351879030466, -0.036005470901727676, -0.05874456837773323, 0.010898185893893242, 0.026487303897738457, -0.053020041435956955, -0.02612384222447872, 0.017400750890374184, 0.0008689017267897725, 0.0006885904003866017, 0.051339030265808105, -0.03968552500009537, -0.0736919492483139, 0.02070598490536213, 0.03702770546078682, -0.0050714327953755856, -0.00901840440928936, -0.008995688520371914, -0.018468420952558517, -0.016639752313494682, 0.038663286715745926, 0.0007368627120740712, 0.00866630021482706, -0.010176939889788628, 0.005860827397555113, 0.015299485065042973, -0.004015121143311262, -0.031121445819735527, 0.08927538990974426, -0.03661881014704704, -0.0019209542078897357, 0.005028839688748121, 0.030576253309845924, -0.011778444983065128, -0.06115250661969185, 0.012016966938972473, -0.04897652566432953, -0.06987559795379639, -0.07278329879045486, 0.013947860337793827, -0.010665342211723328, 0.00414857966825366, -0.04834046587347984, 0.0037112892605364323, 0.031144162639975548, 0.029076972976326942, -0.060607314109802246, -0.014458978548645973, -0.0065820724703371525, 0.06805828958749771, 0.021512415260076523, -0.06687703728675842, -0.0185024943202734, 0.005261682439595461, -0.0018528051441535354, -0.018411628901958466, 0.024420112371444702, 0.0004986956482753158, 0.04000355303287506, -0.006031200289726257, 0.05542797967791557, -0.039640091359615326, -0.0013935081660747528, 0.002730225445702672, 0.008609510026872158, 0.04023071750998497, -0.0036743751261383295, -0.027713989838957787, -0.06492342799901962, 0.024669993668794632, 0.011573998257517815, 0.017957301810383797, 0.03214368224143982, -0.052065953612327576, 0.056881826370954514, 0.007837153039872646, -0.012596235610544682, -0.04284309968352318, 0.01485651545226574, 0.0026478786021471024, 0.03730030357837677, 0.035732872784137726, -0.04752267524600029, 0.023556889966130257, 0.04293396696448326, 0.044478680938482285, 0.01879780739545822, 0.00014818891941104084, -0.0608799085021019, 0.007206772919744253, -0.05451932176947594, 0.01486787386238575, -0.006803557276725769, -0.0051679774187505245, 0.022125758230686188, -0.010784603655338287, 0.019456584006547928, 0.04675031825900078, -0.029781179502606392, -0.013130070641636848, -0.013198219239711761, 0.014617993496358395, 0.03318863734602928, 0.01610591635107994, -0.012971055693924427, -0.017889153212308884, 0.03118959628045559, -0.018706941977143288, 0.042797669768333435, 0.01683284156024456, 0.026691751554608345, -0.06051644682884216, 0.021046729758381844, 0.012721175327897072, -0.01635579764842987, -0.015231335535645485, 0.05342893674969673, -0.008700375445187092, 0.0020586722530424595, 0.008024563081562519, 0.0022915152367204428, 0.01830940507352352, -0.00015404548321384937, 0.026396438479423523, -0.02435196377336979, -0.03884501755237579, 0.012687101028859615, -0.015401708893477917, -0.015390350483357906, 0.00888210628181696, -0.030757984146475792, 0.0028622644022107124, -0.03705042228102684, -0.03384741395711899, 0.04504659026861191, 0.008842352777719498, -0.0028622644022107124, -0.01192610152065754, -0.0008887785370461643, -0.013652547262609005, -0.035664722323417664, 0.04706835001707077, 0.02705521322786808, 0.004537597764283419, 0.0628335177898407, 0.04088949039578438, 0.0024803453125059605, -0.040548745542764664, 0.02971303090453148, -0.0030468350742012262, 0.013607114553451538, -0.025533216074109077, 0.0008724511135369539, -0.043024830520153046, 0.00026372302090749145, 0.008535681292414665, -0.036641526967287064, -0.01709407940506935, 0.014924664981663227, -0.018956823274493217, -0.030917000025510788, -0.003722647437825799, -0.019842762500047684, 0.011801161803305149, 0.001989103388041258, -0.01606048457324505, 0.025510499253869057, -0.014879231341183186, 0.018377555534243584, -0.0054263761267066, -0.01946794055402279, 0.016514811664819717, -0.009597672149538994, 0.02166007272899151, -0.06537775695323944, -0.039935402572155, -0.023488741368055344, -0.008501606993377209, -0.016162708401679993, -0.009847552515566349, 0.011857952922582626, -0.0021140435710549355, 0.012664384208619595, -0.03409729152917862, 0.019888194277882576, -0.004960690625011921, -0.028827091678977013, -0.028350047767162323, -0.006502564996480942, -0.006604788824915886, 0.030667118728160858, 0.016696542501449585, -0.008473210968077183, -0.03339308500289917, 0.012846115045249462, -0.08959341794252396, -0.015503932721912861, 0.0017917548539116979, 0.020376596599817276, 0.03927662968635559, 0.00023869950382504612, 0.06269722431898117, -0.027850287035107613, -0.013016488403081894, 0.040094420313835144, -0.021830445155501366, -0.007945055142045021, -0.04847676306962967, 0.0017974339425563812, -0.033052340149879456, -0.019206702709197998, -0.01949065737426281, 0.07560012489557266, 0.009308038279414177, 0.031802937388420105, 0.023511458188295364, -0.01678740791976452, 0.012244131416082382, 0.01703728921711445, 0.04163913428783417, -0.020353879779577255, -0.025555932894349098, 0.04370632395148277, 0.04979431629180908, -0.0010002307826653123, 0.008001846261322498, -0.03775463253259659, -0.0280547346919775, -0.009291001595556736, 0.0018911389634013176, 0.0580630786716938, -0.009450015611946583, 0.010585835203528404, -0.03318863734602928, -0.044228799641132355, -0.01499281357973814, 0.0389585979282856, 0.007695175241678953, 0.051293596625328064, 0.0016682344721630216, -0.010795962065458298, -0.07223810255527496, 0.04559178277850151, 0.004778959322720766, -0.01661703549325466, -0.008143823593854904, -0.020796850323677063, -0.021024012938141823, 0.05524624511599541, -0.029145121574401855, -0.004830071236938238, -0.027895720675587654, -0.005321313161402941, -0.025714946910738945, 0.01805952563881874, 0.03332493454217911, -0.002603865461423993, 0.04118480533361435, 0.054746486246585846, -0.010733491741120815, 0.028917957097291946, -0.009699895977973938, -0.04979431629180908, 0.015197261236608028, 0.000548742653336376, -0.058653704822063446, 0.038595136255025864, -0.03298418968915939, -0.04670488461852074, -0.0010463735088706017, -0.0034926440566778183, 0.03150762617588043, -0.014924664981663227, -0.023011697456240654, -0.04018528386950493, 0.026987064629793167, 0.02532876841723919, -0.041343819350004196, 0.008938897401094437, -0.00792801845818758, -6.606386159546673e-05, 0.0076667796820402145, -0.0018400271655991673, 0.014924664981663227, 0.015685662627220154, 0.015765171498060226, 0.008876427076756954, 0.0008454754133708775, -0.004299075808376074, -0.04379718750715256, -0.009512485936284065, -0.012868831865489483, -0.0041343821212649345, 0.04366089031100273, 0.0241475161164999, 0.02900882251560688, -0.041570983827114105, -0.009461374022066593, 0.01059151440858841, -0.032030101865530014, -0.00019557386985979974, 0.022352922707796097, -0.014175023883581161, 0.0015177384484559298, -0.0057273684069514275, 0.0007134364568628371, -0.013334517367184162, -0.013459458015859127, 0.007456653285771608, -0.025896677747368813, 0.03357481583952904, -0.012959697283804417, 0.011971534229815006, -0.013255010358989239, 0.03970824182033539, -0.03820895776152611, 0.002129661152139306, 0.030371805652976036, -0.026396438479423523, -0.0034812858793884516, 0.013141428120434284, 0.0012820559786632657, -0.0231707114726305, -0.0113411545753479, -0.007388504222035408, -0.024420112371444702, -0.0004752693639602512, -0.040094420313835144, 0.024056650698184967, -0.010460895486176014, 0.009319396689534187, -0.004807354882359505, -0.02587396278977394, 0.02392035350203514, 0.017355317249894142, 0.016037767753005028, -0.03804994374513626, 0.03714128956198692, 0.033052340149879456, -0.025737663730978966, -0.028213748708367348, 0.009733970277011395, -0.04920369014143944, -0.02510160394012928, -0.005968729965388775, 0.027736704796552658, 0.034256309270858765, 0.01755976490676403, -0.007769003510475159, 0.051111865788698196, 0.0005813974421471357, -0.05047580599784851, -0.0012465616455301642, -0.042320623993873596, -0.014595276676118374, -0.012948338873684406, -0.0069228182546794415, -0.03116687946021557, -0.017911870032548904, -0.02049017883837223, -0.03118959628045559, -0.02118302881717682, -0.03673239424824715, 0.013834278099238873, -0.007837153039872646, -0.054473888128995895, 0.0028253502678126097, -0.00792801845818758, 0.003938453271985054, -0.010830036364495754, -0.00901840440928936, -0.03514224663376808, 0.012698458507657051, 0.01999041810631752, -0.014220456592738628, -0.008899143896996975, -0.030576253309845924, -0.004656858742237091, -0.014424904249608517, 0.037959080189466476, 0.02344330959022045, -0.03164392337203026, 0.023329727351665497, 0.016412587836384773, -0.00999520905315876, -0.014606635086238384, 0.013311801478266716, -0.009569277055561543, 0.06051644682884216, 0.02389763668179512, -0.036936841905117035, 0.023284293711185455, -0.005883543752133846, 0.013436741195619106, -0.036664243787527084, 0.003259801072999835, -0.06219746172428131, 0.011857952922582626, -0.03259801119565964, -0.02189859375357628, 0.01437947154045105, -0.0074225785210728645, -0.03068983554840088, 0.022114399820566177, 0.0010080395732074976, 0.010920901782810688, 0.025033455342054367, -0.02270502597093582, 0.0297357477247715, -0.013027846813201904, -0.004514881409704685, -0.00555415591225028, 0.015753813087940216, 0.017627913504838943, -0.004023639485239983, 0.017366675660014153, -0.020569685846567154, 0.012516727671027184, 0.002877881983295083, 0.00627540098503232, -0.012175981886684895, 0.004722168203443289, -0.02246650494635105, 0.009609030559659004, -0.017730137333273888, 0.012051042169332504, -0.009421620517969131, 0.05928976461291313, -0.0014140949351713061, 0.04141196981072426, 0.006741086952388287, -0.014209098182618618, 0.005341189913451672, 0.013107353821396828, 0.002363923704251647, -0.04288853332400322, 0.00506575359031558, 0.005574032664299011, -0.02587396278977394, 0.03293875604867935, -0.06515058875083923, -0.04406978562474251, -0.019899552688002586, -0.03148490935564041, 0.01242586225271225, -0.02270502597093582, 0.01703728921711445, 0.015288126654922962, 0.013618472032248974, 0.012210056185722351, -0.008115428499877453, -0.010881148278713226, 0.016401229426264763, -0.009853231720626354, 0.0063889832235872746, -0.006002804730087519, 0.04284309968352318, -0.027509542182087898, -0.02101265639066696, 0.02052425406873226, -0.04924912005662918, -0.004009441938251257, -0.005565514322370291, -0.0068376315757632256, -0.020660551264882088, 0.0073714666068553925, -0.0033251107670366764, -0.007541839499026537, 0.0404805988073349, -0.01390242762863636, 0.01830940507352352, 0.030326373875141144, -0.027873003855347633, -0.01073917094618082, -0.009432978928089142, 0.010148544795811176, -0.006604788824915886, 0.003935613669455051, -0.0006967540830373764, -0.02167143113911152, 0.0058494689874351025, 0.0017761372728273273, -0.01775285415351391, 0.018820524215698242, -0.03043995425105095, 0.0017008893191814423, 0.04073047637939453, 0.021785013377666473, -0.04343372583389282, 0.00628675939515233, -0.029599448665976524, -0.01158535573631525, 0.01949065737426281, -0.05479191988706589, 0.012675742618739605, 0.02069462649524212, -0.007013683672994375, -2.1496265617315657e-05, 0.02703249827027321, -0.011971534229815006, -0.01549257431179285, 0.006809236016124487, 0.0008809698047116399, -0.018888672813773155, -0.04711377993226051, 0.0014020268572494388, -0.004648339934647083, -0.015606156550347805, -0.038867734372615814, -0.015378992073237896, -0.027464108541607857, -0.011630788445472717, -0.0006257654167711735, -0.03480150178074837, -0.007433936931192875, -0.04613697528839111, -0.01851385273039341, 0.002192131010815501, -0.014004651457071304, 0.008490248583257198, -0.033756546676158905, 0.012187340296804905, 0.01830940507352352, -0.003302394412457943, 0.017219020053744316, -0.016139991581439972, -0.012709816917777061, -0.01679876632988453, 0.003966848831623793, 0.01512911170721054, 0.03927662968635559, -0.012823399156332016, -0.033279504626989365, -0.004406978376209736, 0.03068983554840088, -0.057654183357954025, -0.01158535573631525, 0.023261576890945435, -0.0005608107312582433, 0.017957301810383797, -0.018627434968948364, -0.015787886455655098, 0.045500919222831726, 0.023250220343470573, -0.01611727476119995, -0.01659431867301464, -0.004688093904405832, -0.05120272934436798, 0.010585835203528404, -0.0077633243054151535, 0.053292639553546906, 0.033983711153268814, -0.021080804988741875, -0.012528086081147194, -0.03430173918604851, 0.026010259985923767, -0.0226823091506958, -0.004980567377060652, -0.008087032474577427, 0.026964347809553146, 0.003302394412457943, 0.00567057728767395, 0.052747443318367004, 0.014186382293701172, -0.02194402739405632, 0.012232773005962372, -0.029395001009106636, -0.01829804852604866, -0.0031916520092636347, 0.016458019614219666, -0.03607361763715744, -0.016935065388679504, -0.049339987337589264, -0.00138853897806257, 9.055496047949418e-05, 0.0063492292538285255, 0.011426341719925404, 0.0006105028442107141, -0.010529044084250927, -0.007530481554567814, -0.031348612159490585, 0.0015007011825218797, -0.0015631711576133966, -0.0005629403749480844, -0.04170728102326393, 0.009580635465681553, -0.003810673486441374, 0.03591460362076759, 0.0019422508776187897, 0.004605746828019619, 0.03466520085930824, 0.01255080197006464, 0.0030894281808286905, -0.013118712231516838, -0.016923706978559494, -0.014299963600933552, 0.012721175327897072, -0.00670701265335083, 0.006644542329013348, -0.026691751554608345, -0.03139404207468033, -0.013686621561646461, -0.00350968143902719, -0.027691273018717766, 0.0034812858793884516, 0.022534653544425964, -0.002856585429981351, 0.009239889681339264, 0.027509542182087898, -0.0030042417347431183, 0.012232773005962372, -0.030076492577791214, -0.030371805652976036, 0.016719259321689606, 0.01879780739545822, -0.02142154984176159, 0.01013150718063116, -0.02950858324766159, 0.0029048577416688204, 0.00750776519998908, 0.038140811026096344, 0.030121926218271255, 0.012334996834397316, -0.040571462363004684, -0.04136653617024422, -0.006587751675397158, 0.0004628463357221335, 0.02194402739405632, -0.016446663066744804, 0.020546969026327133, -0.009779403917491436, 0.01775285415351391, -0.03455162048339844, -0.04338829591870308, -0.004847108386456966, 0.0009888726053759456, -0.006167498417198658, -0.014277247712016106, -0.01452712807804346, 0.025942111387848854, -0.053701531141996384, 0.0065934304147958755, -0.0024491101503372192, 0.007592951413244009, -0.00805295817553997, 0.006860347930341959, 0.03414272516965866, -0.01997905969619751, 0.01754840649664402, 0.00902976281940937, -0.019149912521243095, -0.02975846268236637, 0.01804816722869873, 0.0015007011825218797, -0.02803201787173748, -0.01390242762863636, -0.017116796225309372, -0.02385220304131508, 0.06419650465250015, -0.0012529506348073483, -0.02194402739405632, 0.018139032647013664, 0.04052602872252464, -0.01928620971739292, -0.022012175992131233, -0.028577212244272232, 0.0017278649611398578, -0.022239340469241142, 0.0065423185005784035, 0.02828189916908741, -0.004480806645005941, -0.011892027221620083, 0.020387955009937286, 0.004111665766686201, 0.019695105031132698, 0.023113921284675598, 0.03973095491528511, 0.03720943629741669, -0.005619465373456478, -0.027123363688588142, 0.015117754228413105, -0.0007137914071790874, -0.015776529908180237, 0.007337392307817936, -0.005877864547073841, 0.00878556165844202, 0.017389392480254173, 0.019388433545827866, 0.009313717484474182, -0.019865477457642555, 0.029099687933921814, 0.0010208175517618656, 0.028690792620182037, -0.0522022508084774, 0.007524802349507809, -0.0026478786021471024, -0.02828189916908741, -0.04820416867733002, 0.007876906543970108, -0.003538076765835285, 0.016242215409874916, -0.03552842512726784, 0.00015573146811220795, -0.03854970261454582, 0.01094929687678814, -0.02122846059501171, -0.02464727684855461, -0.0268053337931633, -0.007689496036618948, -0.04752267524600029, 0.033756546676158905, 0.028213748708367348, -0.018809165805578232, 0.021307969465851784, 0.005934655200690031, -0.052020519971847534, -0.006491207052022219, -0.010080395266413689, -0.020796850323677063, 0.014436262659728527, 0.03845883905887604, 0.018388913944363594, -0.010631267912685871, 0.04761354252696037, 0.03727758675813675, -0.021398834884166718, -0.010580155998468399, -0.005548476707190275, -0.002696150913834572, 0.010892506688833237, 0.01582196168601513, 0.005383783020079136, -0.007450974080711603, 0.003912897314876318, 0.013141428120434284, 0.07028449326753616, 0.01159671414643526, 0.024919873103499413, 0.0063889832235872746, 0.024760859087109566, -0.0024462705478072166, 0.0270779300481081, 0.018593359738588333, -0.007575914263725281, 0.031144162639975548, 0.030394522473216057, 0.02710064686834812, -0.012607593089342117, -0.012528086081147194, -0.004335989709943533, -0.017866436392068863, 0.020160790532827377, 0.006309475749731064, -0.021092163398861885, -0.004659698344767094, 0.0012465616455301642, -0.0034926440566778183, -0.01387971080839634, 0.013300443068146706, -0.017355317249894142, 0.008626546710729599, 0.01682148315012455, 0.03775463253259659, 0.015310843475162983, 0.011664863675832748, 0.014572560787200928, 0.03439260646700859, 0.040321581065654755, 0.016423946246504784, -0.020433388650417328, -0.018650151789188385, 0.00375388259999454, 0.01293698139488697, -0.00732035469263792, 0.02462456002831459, 0.00604255823418498, -0.019172629341483116, 0.03341580182313919, -0.03316592052578926, -0.026214707642793655, -0.003929934464395046, 0.025419633835554123, -0.015753813087940216, 0.01581060327589512, 0.009523844346404076, 0.002490283688530326, 0.009228531271219254, -0.00914902426302433, 0.010267805308103561, 0.016264930367469788, -0.05102099850773811, 0.03630078211426735, -0.010977692902088165, -0.0019323125015944242, -0.014538486488163471, -0.0017661988968029618, -0.008109749294817448, -0.012187340296804905, 0.003327950369566679, -0.016162708401679993, -0.025396917015314102, 0.01119349803775549, 0.0042564827017486095, 0.018593359738588333, -0.023784054443240166, -0.001673913560807705, -0.0023781214840710163, -0.017150869593024254, -0.030303657054901123, -0.01084707397967577, 0.02710064686834812, -0.005488846451044083, 0.004722168203443289, -0.010199656710028648, -0.06742222607135773, -0.015674306079745293, -0.01780964620411396, -0.0068262736313045025, 0.01657160185277462, 0.010455216281116009, 0.012482653371989727, 0.005131063517183065, 0.009535202756524086, 0.00590626010671258, 0.007235168479382992, 0.0029644882306456566, 0.003302394412457943, 0.013629830442368984, 0.011914744041860104, -0.017480257898569107, -0.04070775955915451, 0.010869789868593216, 0.02367047220468521, 0.002229045145213604, 0.02900882251560688, -0.02147834189236164, 0.02507888898253441, 0.00927396398037672, 0.0022858362644910812, 0.022818608209490776, -0.019820045679807663, -0.021080804988741875, 0.007297638338059187, 0.00939890369772911, 0.005650700535625219, 0.02117167040705681, 0.00566205894574523, 0.017934584990143776, 0.0031263423152267933, 0.03237084671854973, -0.0069228182546794415, -0.01707136258482933, -0.004832910839468241, -0.001963547430932522, -0.019456584006547928, -0.005344029515981674, 0.012187340296804905, 0.014129591174423695, -0.04186629503965378, 0.008830994367599487, 0.008075674995779991, 0.007933697663247585, 0.014231815002858639, 0.017423467710614204, -0.010455216281116009, 0.022114399820566177, 0.03257529437541962, -0.03870872035622597, -0.018865957856178284, 0.0008994268719106913, 0.002507320838049054, -0.006201573181897402, 0.024510979652404785, -0.0268053337931633, -0.008654942736029625, -0.0385269895195961, -0.035482991486787796, 0.02855449542403221, 0.032302699983119965, -0.0008610929362475872, 0.03166664019227028, -0.0284863468259573, -0.00828580092638731, 0.005917618051171303, -0.05002147704362869, 0.07664508372545242, 0.0053866226226091385, -0.03248443081974983, 0.002747262828052044, -0.010693738237023354, 0.020626477897167206, 0.03189380466938019, 0.004247963894158602, 0.00554563757032156, -0.010540402494370937, 0.01975189708173275, 0.011778444983065128, 0.012868831865489483, 0.0029758464079350233, -0.018139032647013664, -0.03291603922843933, 0.017139511182904243, 0.025510499253869057, 0.012971055693924427, -0.02189859375357628, 0.035732872784137726, -0.07909844815731049, 0.0003441177250351757, -0.022716384381055832, 0.011522886343300343, -0.018320763483643532, 0.02923598699271679, 0.0321209691464901, -0.03153034299612045, -0.011892027221620083, -0.006860347930341959, 0.018968181684613228, -0.00828580092638731, -0.006741086952388287, -0.0009335014037787914, 0.010205335915088654, -0.03682325780391693, -0.038913168013095856, -0.02873622626066208, 0.035687439143657684, -0.02755497395992279, -0.006752445362508297, -0.003924255259335041, -0.0023795412853360176, -0.00035618580295704305, -0.017230378463864326, -0.018184466287493706, -0.03807266056537628, 0.030053775757551193, -0.004157098475843668, -0.005162298213690519, -0.00829715933650732, 0.008319876156747341, -0.03193923830986023, -0.013856994919478893, 0.022966263815760612, 0.0006353489006869495, -0.025396917015314102, -0.007990487851202488, 0.01608319953083992, -0.021591924130916595, -0.019456584006547928, -0.003424494992941618, 0.001703728805296123, -0.014958739280700684, -0.009796440601348877, 0.0022191067691892385, -0.03673239424824715, -0.005866506136953831, -0.011312759481370449, 0.008194935508072376, -0.004304755013436079, 0.018184466287493706, 0.024079367518424988, -0.0066899750381708145, 0.019331643357872963, -0.0385269895195961, -0.009546560235321522, -0.01546985749155283, 0.051566191017627716, -0.016264930367469788, -0.024442829191684723, -0.0025144198443740606, 0.025169754400849342, 0.022511936724185944, 0.011113991029560566, 0.004171296022832394, -0.0022872560657560825, 0.0221939068287611, 0.007945055142045021, 0.04670488461852074, -0.0449330098927021, -0.03143947571516037, -0.013652547262609005, 0.0036459797993302345, 0.01436811313033104, -0.010807319544255733, 0.020774133503437042, 0.008632225915789604, -0.002751521999016404, 0.019604239612817764, -0.046932049095630646, -0.01726445183157921, 0.021330684423446655, -0.012516727671027184, 0.0038759831804782152, -0.00780875701457262, -3.001490949827712e-05, -0.00499760452657938, -0.012675742618739605, 0.005119705107063055, -0.009915702044963837, 0.004344508517533541, -0.010415461845695972, 0.01389106921851635, -0.011971534229815006, 0.021773654967546463, 0.017150869593024254, -0.020172148942947388, 0.0032172079663723707, 0.014549843966960907, -0.04993061348795891, 0.027645839378237724, 0.009188777767121792, -0.00669565424323082, 0.0025172594469040632, 0.0002990399079862982, -0.025919394567608833, -0.010546081699430943, -0.00841642078012228, -0.018479779362678528, 0.013186860829591751, 0.009478411637246609, 0.013811561278998852, 0.033983711153268814, 0.003850427223369479, 0.013255010358989239, 0.029576731845736504, 0.03898131474852562, 0.026487303897738457, 0.01681012474000454, 0.0019607078284025192, -0.03359753265976906, -0.012391787953674793, 0.013800203800201416, -0.0022105881944298744, -0.018388913944363594, 0.0022829966619610786, 0.023466024547815323, -0.015174544416368008, -0.003631782019510865, 0.036664243787527084, -0.011358192190527916, 0.005838110577315092, 0.000988162704743445, 0.0030525140464305878, -0.01683284156024456, -0.00866630021482706, 0.04125295579433441, -0.02657816931605339, -0.0010790282394737005, 0.035005949437618256, 0.029554016888141632, -0.023556889966130257, 0.04318384826183319, 0.04161641746759415, 0.007377145811915398, 0.0028367084451019764, -0.037913646548986435, -0.003092267783358693, -0.03709585592150688, -0.03116687946021557, 0.023556889966130257, 0.014095516875386238, 0.022239340469241142, -0.029145121574401855, 0.04552363604307175, 0.02905425615608692, 0.00011304950749035925, 0.0007233748910948634, -0.010557440109550953, -0.004781798925250769, -0.002112623769789934, -0.042252473533153534, -0.010653984732925892, -0.04186629503965378, 0.004614265635609627, -0.012766608037054539, 0.02948586642742157, -0.0290315393358469, -0.026010259985923767, 0.003444371744990349, 0.007854189723730087, 0.02878165990114212, 8.89133516466245e-05, -0.00319733121432364, -0.019308926537632942, 0.02238699607551098, 0.051793355494737625, -0.007547518704086542, -0.02342059276998043, -0.019604239612817764, 0.023227503523230553, -0.025783095508813858, -0.01780964620411396, -0.02147834189236164, 0.03875415027141571, 0.008183577097952366, 0.0063889832235872746, -0.013073279522359371, 0.0037453637924045324, 0.02244378812611103, -0.003092267783358693, 0.006990967318415642, -0.01656024344265461, -0.004162777215242386, 0.012959697283804417, 0.033029623329639435, 0.009455694817006588, 0.0009995208820328116, -0.008757166564464569, 0.05020320788025856, 0.026373721659183502, 0.0070818327367305756, 0.007042079232633114, 0.009109269827604294, -0.012584877200424671, -0.023602323606610298, 0.03941292688250542, 0.027941152453422546, 0.036709677428007126, -0.028804374858736992, 0.028440913185477257, -0.013993293046951294, -0.01825261488556862, 0.004469448700547218, 0.013232293538749218, 0.01387971080839634, 0.0024704067036509514, -0.05161162465810776, -0.02190995216369629, 0.016151349991559982, 0.00030596129363402724, 0.0036403005942702293, 0.002642199397087097, -0.006110707297921181, 0.004889701958745718, -0.025033455342054367, -0.006746766157448292, -0.031030580401420593, -0.01147177442908287, 0.028213748708367348, -0.003171775257214904, 0.0006626795511692762, 0.0231707114726305, -0.03970824182033539, -0.02270502597093582, -0.03159848973155022, 0.010137186385691166, -0.020138075575232506, -0.03884501755237579, 0.007950734347105026, 0.01631036400794983, 0.005332671105861664, -0.01549257431179285, 0.010523364879190922, -0.013289084658026695, 0.010920901782810688, -0.014674784615635872, -0.01464070938527584, -0.012959697283804417, -0.023829488083720207, -0.03589188680052757, -0.042297907173633575, -0.011153744533658028, 0.04236605763435364, 0.01242586225271225, 0.003895859932526946, 0.005159458611160517, 0.02971303090453148, -0.009915702044963837, -0.0051935333758592606, -0.0014495892683044076, 0.00670701265335083, 0.02439739741384983, -0.007047758437693119, 0.021841803565621376, -0.006491207052022219, 0.009864590130746365, 0.004228087142109871, -0.015208619646728039, -0.012380429543554783, 0.010296201333403587, -0.006701333448290825, 0.013368592597544193, 0.04170728102326393, 0.007780361454933882, 0.05074840411543846, 0.011488811112940311, -0.012266847304999828, 0.01726445183157921, -0.0025300374254584312, 0.01193745993077755, 0.0037425244227051735, 0.0071272654458880424, -0.037936363369226456, -0.013686621561646461, 0.0365733802318573, 0.03291603922843933, -0.0031121447682380676, -0.023079846054315567, 0.019933627918362617, -0.010182619094848633, -0.023784054443240166, 0.002478925511240959, 0.023238861933350563, 0.02628285624086857, -0.01109695341438055, 0.04379718750715256, 0.03661881014704704, 0.01922941952943802, 0.002897758735343814, 0.010154224000871181, -0.03162120655179024, 0.08246047794818878, 0.030644401907920837, 0.03605090081691742, 0.004341668915003538, -0.0011535664089024067, 0.024306531995534897, -0.007308996748179197, -0.040321581065654755, -0.020808208733797073, -0.027645839378237724, -0.02100129798054695, 0.0030979469884186983, 0.008734449744224548, -0.024011218920350075, -0.012823399156332016, -0.0031206633429974318, -0.02287539839744568, -0.007257884833961725, 0.025896677747368813, 0.018616076558828354, 0.019149912521243095, 0.01192610152065754, 0.019865477457642555, -0.01293698139488697, -0.035687439143657684, 0.026510020717978477, 0.022773174569010735, 0.01196017675101757, 0.014186382293701172, -0.00701936287805438, 0.0340745784342289, -0.01452712807804346, 0.03073526732623577, 0.0035636327229440212, 0.024942589923739433, -0.017162228003144264, 0.009677180089056492, 0.0321209691464901, -0.016696542501449585, 0.03868600353598595, 0.0014240333111956716, 0.0001343461190117523, 0.0030354768969118595, -0.022818608209490776, 0.006411699578166008, 0.02389763668179512, 0.008723091334104538, -0.01610591635107994, -0.005843789782375097, -0.010108791291713715, 0.023534175008535385, -0.024238381534814835, -0.03298418968915939, -0.0107164541259408, -0.03734573721885681, -0.007388504222035408, 0.01634443923830986, -0.012857473455369473, 0.003180293831974268, -0.024261098355054855, 0.021126236766576767, 0.013641188852488995, -0.010869789868593216, 0.0027202870696783066, -0.004895380698144436]], "input": ["DAMAGED BAGGAGE:", "BATTERIES:Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft. It is essential to protect batteries from damage and short circuits during transport. Non-lithium-based batteries can be transported in the aircraft hold, but precautions must be taken to ensure their safety.", "LAPTOP:Laptops are portable computing devices that may be considered dangerous goods due to the presence of lithium batteries. These batteries require special handling and must be managed in accordance with airline regulations to ensure safety during transport.", "MEDICAL EQUIPMENT:Medical equipment may contain batteries or other components that are classified as dangerous goods. This includes various types of medical devices and instruments that, due to their components, require careful handling and adherence to safety regulations.", "COMPRESSED GASES:Compressed gases, including butane and oxygen, are prohibited on aircraft due to their dangerous nature and inherent flammability, which pose significant potential hazards during air travel.", "CORROSIVES:Corrosives, which include substances such as acids and wet cell batteries, are prohibited on aircraft due to their hazardous nature. This prohibition is in place to ensure the safety of passengers and crew, as these materials can pose significant risks during air travel.", "EXPLOSIVES:Explosives, other than light ammunition, are strictly prohibited on aircraft for safety reasons. This regulation is in place to ensure the safety of passengers and crew during air travel.", "FLAMMABLE LIQUIDS:Flammable liquids and solids are prohibited on aircraft due to safety concerns and their potential to ignite. This regulation is in place to ensure the safety of passengers and crew, as the presence of such materials poses significant risks during flight.", "RADIOACTIVE MATERIALS:Radioactive materials are strictly forbidden on aircraft due to significant safety and health risks. This prohibition is enforced to ensure the safety of passengers and crew, as the presence of radioactive materials poses potential hazards during air travel.", "BRIEFCASES WITH ALARM DEVICES:Briefcases with installed alarm devices are prohibited on aircraft for security reasons.", "OXIDIZING MATERIALS:Oxidizing materials, including substances like hydrogen peroxide and bleaching powders, are prohibited on aircraft due to their reactive nature. This restriction is in place to ensure safety during air travel, as these materials can pose significant risks.", "POISONS:Poisons, which encompass a range of harmful substances including insecticides and herbicides, are classified as dangerous goods and are strictly prohibited on aircraft. This prohibition is in place due to the hazardous effects these substances can have on health, posing significant risks to passengers and crew during air travel.", "HIGH-STRENGTH MAGNETIC MATERIALS:High-strength magnetic materials are prohibited on aircraft due to their potential to harm people and the environment, as well as their ability to interfere with navigation and safety equipment. This prohibition is in place to ensure the safety and well-being of passengers and crew, as well as to maintain the integrity of aircraft operations.", "OXYGEN:Oxygen is a compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its potential hazards.", "AQUALUNG CYLINDERS:Aqualung cylinders are classified as dangerous goods and are prohibited on aircraft due to their compressed gas content.", "COMPRESSED GAS CYLINDERS:Compressed gas cylinders are classified as dangerous goods and are prohibited on aircraft due to their potential hazards."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-c7f31dbf56ebf07dd1c7c37d52c36edc b/cache/text_embedding/embedding-c7f31dbf56ebf07dd1c7c37d52c36edc deleted file mode 100644 index 8c267815528a21772a9c3bf1ef58a84b3cccfe7b..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-c7f31dbf56ebf07dd1c7c37d52c36edc +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.010193886235356331, 0.015982234850525856, 0.06392893940210342, 0.027614522725343704, -0.03321525454521179, 0.03949696943163872, 0.0027430381160229445, 0.022861545905470848, 0.021027062088251114, 0.037801459431648254, -0.010659456253051758, -0.021082652732729912, 0.0042283437214791775, -0.011187564581632614, -0.029407313093543053, 0.04944764822721481, 0.008456687442958355, 0.05803636088967323, -0.009686624631285667, -0.015342946164309978, 0.07237868010997772, 0.01767774298787117, 0.018553290516138077, 0.007504701614379883, -0.046473562717437744, -0.03568902611732483, -0.01248004101216793, 0.005281086545437574, 0.033854544162750244, -0.06676404923200607, 0.09517073631286621, -0.022305641323328018, 0.01587105542421341, -0.020123718306422234, 0.00020292661793064326, 0.041275858879089355, -0.025835631415247917, 0.012848327867686749, 0.026169173419475555, 0.021819226443767548, -0.0001821887999540195, 0.03755130618810654, -0.044249944388866425, -0.0042005483992397785, -0.03504973649978638, 0.04302695766091347, 0.03896885737776756, -0.01941494084894657, 0.019109195098280907, 0.012077011168003082, 0.0122993728145957, 0.031575337052345276, 0.004304780159145594, -0.02475161850452423, 0.02411232888698578, -0.01434231922030449, 0.002185397082939744, 0.03794043883681297, 0.0014757509343326092, -0.026030197739601135, 0.015120584517717361, -0.0442221499979496, -0.0379682332277298, 0.02030438743531704, -0.001695506740361452, -0.016677115112543106, 0.005927324760705233, 0.02010982111096382, -0.04538954794406891, -0.020054230466485023, 0.02461264282464981, 0.04027523472905159, 0.027850782498717308, -0.03799602761864662, 0.007330982014536858, -0.02307000942528248, -0.01074979081749916, 0.004026828333735466, -0.042526643723249435, -0.0010318964486941695, -0.03113061562180519, 0.024904491379857063, 0.021860918030142784, 0.008519226685166359, -0.010263375006616116, -0.026599999517202377, -0.049392055720090866, 0.01286222506314516, -0.07009947299957275, 0.030185578390955925, -0.02800365537405014, 0.02313949726521969, -0.022680876776576042, 0.06142737343907356, 0.03527209907770157, -0.03168651834130287, 0.0288236141204834, -0.016162903979420662, -0.021235527470707893, 0.02579393796622753, 0.0043221525847911835, -0.027642318978905678, 0.0044541796669363976, 0.014189445413649082, 0.029212746769189835, -0.03446603938937187, -0.029018180444836617, 0.02833719737827778, 0.002703082514926791, -0.04566749930381775, -0.05725809559226036, -0.017510971054434776, -0.04655694589018822, 0.06531870365142822, -0.033715568482875824, -0.019039707258343697, -0.03555005043745041, -0.0030192527920007706, 0.062483590096235275, 0.010131347924470901, -0.052171576768159866, 0.014884325675666332, 0.015120584517717361, -0.06843176484107971, 0.020957574248313904, -0.036356110125780106, -0.0024702977389097214, -0.03293730318546295, -0.07171159237623215, -0.03196446970105171, 0.04477805271744728, -0.013341692276299, 0.033382024616003036, -0.04936426132917404, -0.003059208393096924, 0.011361285112798214, -0.020346080884337425, -0.013800312764942646, -0.012292423285543919, -0.04444451257586479, 0.01981797255575657, 0.011097230017185211, 0.009116822853684425, 0.02910156548023224, -0.05703573301434517, -0.009499006904661655, 0.026766769587993622, 0.053811490535736084, 0.014870427548885345, -0.00924884993582964, -0.02024879679083824, 0.021221628412604332, -0.011312643066048622, -0.007761807180941105, 0.025682756677269936, 0.005882157478481531, 0.008262121118605137, 0.08955610543489456, 0.011034690774977207, -0.024932287633419037, -0.00010672919597709551, -0.029768651351332664, -0.023334063589572906, -0.009033437818288803, 0.044944826513528824, -0.0011387342819944024, -0.043833017349243164, 0.038718704134225845, -0.053811490535736084, -0.07521378993988037, -0.03555005043745041, -0.06315067410469055, -0.08066164702177048, 0.021096549928188324, -0.013077638112008572, -0.049670007079839706, -0.0056980145163834095, -0.03827397897839546, 0.004652220290154219, -0.011013844981789589, -0.0031356450635939837, 0.001909182290546596, -0.06554106622934341, -0.03841295465826988, -0.07115568965673447, 0.026044094935059547, 0.008602611720561981, 0.011250103823840618, -0.01677439920604229, 0.029963217675685883, 0.027142005041241646, 0.055006686598062515, 0.02924054116010666, 0.020610135048627853, -0.010930459015071392, 0.03104722872376442, 0.004891953896731138, 0.011215359903872013, -4.6931530960137025e-05, 0.01698286272585392, 0.048975128680467606, -0.031992267817258835, 0.06870971620082855, -0.0008047576411627233, -0.03777366504073143, -0.039469171315431595, 0.00704955542460084, 0.01607951894402504, -0.003125221934169531, -0.027058620005846024, -0.013251357711851597, -0.04672371596097946, 0.01265376154333353, 0.006312983110547066, -0.02619696781039238, 0.025613268837332726, -0.03432706370949745, 0.06693082302808762, -0.00507609685882926, 0.027475547045469284, 0.010430146008729935, 0.0221110749989748, 0.01250783633440733, -0.020637929439544678, -0.008401096798479557, 0.02960187941789627, -0.005913427099585533, -0.0519770085811615, 0.011229258030653, -0.053394563496112823, 0.01074284128844738, -0.0016790033550933003, -0.013751671649515629, -0.012737146578729153, -0.003696760628372431, -0.037050992250442505, -0.013119330629706383, 0.01029811892658472, 0.01801128499209881, 0.031075024977326393, 0.048975128680467606, 0.010728944092988968, 0.005861311219632626, -0.0001961949747055769, 0.011583645828068256, -0.0012664184905588627, -0.03630052134394646, -0.01919258013367653, 0.028100939467549324, 0.028656842187047005, 0.03304848447442055, -0.003919122274965048, 0.027670113369822502, -0.04027523472905159, -0.001488780020736158, 0.020888086408376694, -0.02273646742105484, -0.030407940968871117, 0.02369540184736252, 0.0010449255350977182, 0.0009302703547291458, -0.02355642430484295, -0.020971471443772316, 0.025891222059726715, -0.062483590096235275, -0.02509905770421028, 0.01012439839541912, -0.05075402185320854, -0.021193834021687508, 0.05981525406241417, -0.052922043949365616, 0.04038641229271889, 0.03029675967991352, -0.011493312194943428, -0.03771807625889778, -0.0003939099842682481, -0.0056667448952794075, -0.020401671528816223, 0.008692946285009384, -0.013355589471757412, -0.02647492103278637, 0.010902663692831993, 0.011493312194943428, -0.0175387654453516, 0.0034101225901395082, 0.024028943851590157, -0.006333829369395971, -0.01588495261967182, -0.02197209931910038, 0.005590307991951704, 0.03202006220817566, -0.028156530112028122, -0.021985996514558792, -0.0364672914147377, 0.032131243497133255, 0.02626645565032959, -0.0175943560898304, -0.02515464834868908, 0.005274137482047081, 0.008053656667470932, 0.003731504548341036, 0.03477178514003754, -0.014759247191250324, -0.01005491055548191, -0.038857679814100266, 0.01752486824989319, -0.0036481190472841263, 0.014495193026959896, -0.01947053149342537, -0.006521447096019983, -0.04227648675441742, -0.0042040226981043816, -0.0050969431176781654, -0.028851408511400223, -0.04191514849662781, -0.018872935324907303, 0.01371692679822445, 0.007442162837833166, -0.014085213653743267, 0.012466143816709518, 0.029546288773417473, 0.004016405437141657, 0.04046979919075966, -0.0364672914147377, 0.011903290636837482, -0.03090825304389, 0.0133138969540596, 0.005246342625468969, -0.05053165927529335, -0.031853288412094116, -0.04669592157006264, 0.007428265176713467, 0.03104722872376442, 0.009707470424473286, -0.020846394822001457, -0.011041640304028988, -0.009853395633399487, 0.008901409804821014, 0.026377636939287186, 0.003397962311282754, 0.024154022336006165, -0.031075024977326393, 0.0008903147536329925, -0.016663217917084694, -0.018247542902827263, 0.04755757376551628, 0.027461649850010872, 0.05567377060651779, 0.004224868956953287, 0.03163092955946922, -0.01774723082780838, 0.04019184783101082, -0.05675778165459633, 0.020915882661938667, -0.07916070520877838, 0.018039079383015633, -0.03118620626628399, 0.001312454231083393, -0.0255854744464159, -0.015579205006361008, 0.000753944565076381, 0.019428839907050133, 0.016732705757021904, 0.02044336311519146, 0.008533123880624771, 0.03293730318546295, -0.007240647450089455, 0.017302507534623146, 0.03832957148551941, -0.013487616553902626, 0.010513531044125557, 0.04697387292981148, -0.012493939138948917, -0.00970052182674408, -0.06431807577610016, -0.03043573535978794, -0.0033058905974030495, 0.010513531044125557, -0.0399416908621788, 0.0019526121905073524, 0.027489444240927696, -0.00014147318142931908, 0.03193667531013489, -0.00987424235790968, 0.05809194967150688, 0.0210131648927927, -0.07576969265937805, -0.0040094563737511635, -0.010388452559709549, 0.009346133098006248, -0.008838871493935585, 0.026085788384079933, -0.04299916326999664, 0.0056320009753108025, -0.013042894192039967, 0.01635747030377388, 0.022764261811971664, 0.019943051040172577, 0.046195607632398605, -0.001343723852187395, 0.026461021974682808, -0.015009403228759766, -0.020540647208690643, -0.050364889204502106, -0.032131243497133255, -0.011236206628382206, -0.034354858100414276, -0.01348066795617342, 0.020707417279481888, -0.0055381921119987965, 0.04174837842583656, 0.009116822853684425, 0.06014879420399666, -0.018594983965158463, 0.015106686390936375, -0.015634795650839806, -0.0463067889213562, 0.06998829543590546, -0.025807835161685944, 0.00219234568066895, 0.03466060385107994, 0.02612747997045517, 0.020763007923960686, -0.013112382031977177, -0.03135297819972038, 0.008908359333872795, 0.0131679717451334, -0.02960187941789627, 0.012952559627592564, -0.0967828556895256, -0.014717553742229939, 0.02849007211625576, 0.037328943610191345, 0.01766384392976761, -0.036217134445905685, -0.022778159007430077, 0.05642424151301384, -0.008547021076083183, -0.018483802676200867, -0.03730114921927452, 0.011854649521410465, -0.02141619473695755, 0.0010414511198177934, 0.015329048037528992, 0.0016242815181612968, 0.05281086638569832, 0.002343482105061412, 0.0034865594934672117, -0.012987303547561169, 0.025738347321748734, 0.004124111495912075, -0.012222935445606709, -0.039552558213472366, -0.0026909220032393932, -0.055701564997434616, 0.031575337052345276, 0.006907104980200529, -0.05189362168312073, 0.056035108864307404, -0.07426875084638596, 0.00869989488273859, 0.055618178099393845, 0.05470093712210655, 0.08433061093091965, 0.027948064729571342, -0.02059623785316944, -0.060204386711120605, -0.03174211084842682, -0.030268963426351547, 0.01587105542421341, -0.009644931182265282, -0.024487564340233803, -0.014856530353426933, -0.02993542142212391, 0.027892475947737694, -0.04588986188173294, -0.03374336287379265, -0.0406365692615509, -0.007879937067627907, -0.02031828463077545, 0.0006262604147195816, 0.05158787593245506, -0.025877323001623154, -0.010596917010843754, 0.045862067490816116, 0.0287680234760046, 0.022625286132097244, -0.009089027531445026, -0.005996812600642443, 0.007539446000009775, -0.004645271692425013, -0.020568441599607468, 0.03688421845436096, -0.016176801174879074, -0.006163583602756262, -0.030797073617577553, -0.042526643723249435, -0.008970898576080799, 0.03916342556476593, -0.006399842910468578, 0.04116467759013176, -0.03007439710199833, 0.03474399074912071, 0.011451618745923042, 0.045723091810941696, -0.0011283110361546278, -0.021513478830456734, 0.002977560041472316, -0.02030438743531704, -0.011826854199171066, -0.0731569454073906, 0.004843312315642834, 0.031158410012722015, 0.012744095176458359, -0.005621577613055706, 0.008289916440844536, 0.005996812600642443, -0.027767397463321686, -0.016399163752794266, 0.02348693646490574, 0.007532496936619282, -0.030741482973098755, -0.021402297541499138, 0.007421316113322973, 0.003354532178491354, 0.021332809701561928, -0.032186832278966904, -0.04194294288754463, -0.022958828136324883, 0.039413582533597946, 0.048141270875930786, -0.03165872395038605, -0.020901983603835106, 0.049392055720090866, 0.0072962380945682526, 0.0027465124148875475, 0.0017102728597819805, -0.023264575749635696, -0.0015712969470769167, -0.031992267817258835, 0.031075024977326393, -0.012403604574501514, 0.004488923586905003, 0.017219120636582375, 0.006045454181730747, -0.0014349267585203052, 0.009415620937943459, 0.03321525454521179, 0.0020707417279481888, 0.01760825328528881, 0.01091656181961298, 0.00538879306986928, 0.03880208730697632, -0.027531137689948082, -0.004148432519286871, -0.006476279813796282, 0.01243834849447012, -0.03813500329852104, 0.042443256825208664, -0.006184430327266455, 0.004843312315642834, 0.006799398921430111, 0.007449111435562372, -0.001315928646363318, -0.03852413594722748, 0.017233019694685936, 0.024779412895441055, 0.012688505463302135, -0.012243782170116901, 0.0027100311126559973, -0.015968337655067444, 0.019678995013237, 0.009589341469109058, -0.05397826433181763, 0.0729345828294754, -0.0021124344784766436, 0.022194460034370422, -0.04269341379404068, -0.0020985370501875877, -0.0032138191163539886, -0.016857784241437912, 0.012848327867686749, -0.024418076500296593, -0.011173667386174202, -0.009401723742485046, 0.00485026091337204, 0.006406791973859072, -0.03360438719391823, 0.028114836663007736, 0.04327711462974548, 0.0329928919672966, -0.021860918030142784, 0.018469905480742455, 0.01663542166352272, 0.014356216415762901, 0.03560563921928406, -0.0017224332550540566, 0.0020585814490914345, 0.007442162837833166, 0.00568411685526371, 0.0087693827226758, 0.003832262009382248, -0.018191952258348465, -0.026836257427930832, -0.002748249564319849, 0.024015046656131744, 0.02051285095512867, 0.011944984085857868, 0.013286101631820202, 0.032742734998464584, 0.014328421093523502, 0.027836885303258896, 0.006497126072645187, -0.019428839907050133, -0.016413060948252678, 0.028517866507172585, -0.021541273221373558, -0.023320166394114494, -0.00831771083176136, -0.0053540486842393875, -0.011521107517182827, -0.022931033745408058, 0.030324554070830345, -0.026252558454871178, 0.0110555374994874, 0.015607000328600407, -0.023681502789258957, -0.025196341797709465, 0.013987930491566658, -0.015926644206047058, -0.021666351705789566, 0.035855796188116074, -0.004676540847867727, -0.002572792349383235, 0.022750364616513252, 0.004124111495912075, 0.041275858879089355, -0.013376436196267605, 0.014675861224532127, -0.007143364287912846, 0.05142110586166382, 0.03340981900691986, 0.006066300440579653, -0.016315776854753494, 0.03963594511151314, 0.029574085026979446, -0.0029167579486966133, 0.026085788384079933, -0.009721368551254272, 0.006073249503970146, 0.00424571568146348, -0.03321525454521179, 0.006924477405846119, -0.03285391628742218, 0.03126959130167961, -0.0035352010745555162, -0.019109195098280907, 0.02030438743531704, 0.025404805317521095, 0.030519120395183563, -0.01927596516907215, 0.011409926228225231, -0.027781294658780098, 0.03224242106080055, 0.03424367681145668, -0.017302507534623146, 0.014203343540430069, -0.017900103703141212, -0.010756739415228367, 0.01167398039251566, -0.04797450080513954, -0.016885578632354736, 0.049030717462301254, 0.007768756244331598, -0.005440908949822187, 0.02237512916326523, -0.039747126400470734, 0.007091248407959938, -0.04149822145700455, 0.01234106533229351, -0.037050992250442505, -0.014133854769170284, -0.005621577613055706, -0.022541901096701622, -0.013508463278412819, -0.02398725040256977, 0.040580980479717255, -0.03930240124464035, 0.012049215845763683, -0.014592476189136505, -0.015787668526172638, 0.007664524018764496, -0.008352454751729965, 0.008567867800593376, -0.006771603599190712, 0.053950466215610504, 0.01022863108664751, -0.022194460034370422, -0.038857679814100266, -0.0728234052658081, 0.01774723082780838, 0.026947438716888428, -0.007330982014536858, -0.04319372773170471, -0.03980271518230438, -0.013821159489452839, -0.001780629507265985, 0.019678995013237, 0.06070470064878464, -0.02937951870262623, -0.008692946285009384, -0.0066291531547904015, -0.04794670641422272, 0.0071989549323916435, -0.0372733511030674, 0.014759247191250324, -0.022055484354496002, -0.02155517227947712, -0.009763061068952084, -0.0027308776043355465, -0.00786603894084692, 0.05411724001169205, -0.041970741003751755, -0.03279832750558853, 0.025752244517207146, 0.00956154614686966, 0.012382757849991322, 0.019790176302194595, 0.00583699019625783, 0.01434231922030449, 0.021249424666166306, 0.003281569806858897, 0.03071368671953678, -0.002631857292726636, -0.009304440580308437, 0.021332809701561928, -0.020012538880109787, -0.014828735031187534, -0.04091452434659004, 0.020276593044400215, -0.01507889200001955, -0.06976593285799026, -0.009693573229014874, -0.031075024977326393, -0.011013844981789589, -0.02259749174118042, -0.008032810874283314, 0.032270219177007675, 0.0007365726050920784, 0.03429926559329033, -0.03571682050824165, 0.01289002038538456, -0.0006762049160897732, -0.032687146216630936, 0.009075130335986614, 0.010277272202074528, -0.00953375082463026, 0.026461021974682808, -0.01386285200715065, 0.019011911004781723, -0.010339811444282532, 0.03396572545170784, 0.008547021076083183, 0.021735839545726776, -0.004853735212236643, -0.015690386295318604, 0.0056702191941440105, 0.004527141805738211, 0.035661231726408005, -0.013835056684911251, 0.01067335344851017, 0.00987424235790968, 0.011708724312484264, 0.021318912506103516, 0.01573207788169384, -0.01300120074301958, -0.004415960982441902, -0.03613375127315521, -0.029574085026979446, -0.03610595315694809, 0.037328943610191345, 0.0031304333824664354, -0.007595036178827286, -0.016593730077147484, 0.01431452389806509, 0.03021337278187275, -0.009353081695735455, -0.01517617516219616, 1.9231341866543517e-05, -0.020540647208690643, -0.03549446165561676, 0.00014418756472878158, -0.001642522169277072, -0.0066604227758944035, -0.005135161802172661, -0.014189445413649082, -0.0021489157807081938, -0.06259477138519287, -0.028517866507172585, 0.035383280366659164, -0.032464783638715744, -0.014196394011378288, -0.0018727011047303677, 0.021527376025915146, 0.07749299705028534, -0.01098604965955019, -0.02390386536717415, -0.00253804842941463, 0.013987930491566658, -0.030463529750704765, -0.015092789195477962, 0.034493833780288696, -0.011138923466205597, -0.006132314447313547, 0.01448129490017891, 0.007817397825419903, -0.0009198471088893712, 0.00765757542103529, -0.02252800390124321, 0.01712183840572834, 0.0012568638194352388, -0.01962340623140335, -0.010444043204188347, -0.004547988064587116, -0.0005076965317130089, 0.006399842910468578, -0.03846854716539383, -0.0027777820359915495, 0.017788922414183617, -0.03285391628742218, 0.012452245689928532, -0.0067264363169670105, 0.05253291130065918, 0.021027062088251114, 0.003634221386164427, -0.021985996514558792, -0.0199708454310894, -0.006688218098133802, 0.04069216176867485, 0.0009363505523651838, 0.00841499399393797, -0.025321420282125473, -0.023320166394114494, 0.007532496936619282, -0.03377115726470947, -0.009728317148983479, 0.013605746440589428, -0.004718233831226826, -0.007824346423149109, 0.021819226443767548, -0.02307000942528248, -0.037801459431648254, -0.023584220558404922, -0.020401671528816223, 0.0144118070602417, -0.0024581372272223234, 0.013564053922891617, -0.00887361541390419, 0.005579884629696608, -0.008234325796365738, 0.01830313354730606, -0.024001147598028183, 0.009102925658226013, -0.019665097817778587, 0.0015131008112803102, 0.0007005257066339254, 0.037467919290065765, 0.018122464418411255, 0.022931033745408058, -0.0054165879264473915, 0.03516091778874397, -0.00015471932420041412, 0.049308668822050095, 0.011493312194943428, -0.009617136791348457, -0.013466770760715008, -0.0015730340965092182, 0.032826121896505356, 0.02155517227947712, 0.01531515084207058, 0.03535548597574234, 0.014397909864783287, 0.010270323604345322, 0.01566259004175663, -0.025974607095122337, 0.007310135290026665, 0.004537565167993307, 0.05439519137144089, 0.028156530112028122, -0.002578004030510783, -0.01129179634153843, 0.02586342580616474, 0.01621849462389946, 0.02273646742105484, 0.016246289014816284, 0.006649999879300594, -0.020221002399921417, -0.012327167205512524, -0.020985370501875877, -0.005798771977424622, -0.016454754397273064, -0.0039503914304077625, -0.005190751980990171, -0.0026648640632629395, -0.005496499128639698, 0.005027455277740955, 0.010652507655322552, -0.011694827117025852, 0.03021337278187275, -0.012702402658760548, 0.017413686960935593, -0.001850117463618517, -0.022236153483390808, -0.019567815586924553, 0.01607951894402504, 0.0017728121019899845, -0.018942423164844513, 0.0032364027574658394, 0.0316031314432621, 0.0015469761565327644, 0.04666812717914581, -0.0006740334210917354, 0.007324032951146364, -0.0007352696848101914, -0.0030296759214252234, 0.012090908363461494, -0.004547988064587116, 0.01739978976547718, 0.013668285682797432, -0.038996655493974686, -0.009485109709203243, 0.008123144507408142, 0.019234273582696915, 0.02910156548023224, -0.013049842789769173, 0.014898222871124744, -0.031102819368243217, 0.010200835764408112, 0.04430553689599037, -0.02918495237827301, 0.03991389647126198, 0.009158515371382236, 0.020540647208690643, -0.03685642406344414, -0.006121891085058451, -0.03921901434659958, -0.036078158766031265, -0.0009050809312611818, 0.010374555364251137, 0.0034570270217955112, 0.040719956159591675, -0.03824618458747864, -0.006747283041477203, -0.013848954811692238, -0.0420263297855854, 0.014022674411535263, 0.04247105494141579, 0.013369487598538399, 0.0364672914147377, -0.018900729715824127, 0.02703082375228405, 0.015064993873238564, 0.007185057271271944, -0.03007439710199833, 0.022402925416827202, 0.029296131804585457, -0.02334796078503132, -0.013994879089295864, -0.037467919290065765, 0.022958828136324883, -0.016718808561563492, -0.034966353327035904, 0.0576472282409668, 0.02079080417752266, 0.01434231922030449, -0.00021128688240423799, 0.024209612980484962, -0.005020506680011749, 0.022555798292160034, 0.010388452559709549, -0.010270323604345322, 0.02009592391550541, 0.055562589317560196, 0.010624712333083153, -0.013438975438475609, -0.01067335344851017, 0.006528395693749189, 0.03374336287379265, 0.006240020506083965, 0.015259560197591782, 0.00786603894084692, -0.001708535710349679, 0.018469905480742455, 0.029129361733794212, 0.006893207784742117, 0.006153160706162453, 0.030268963426351547, -0.01689947582781315, 0.013022047467529774, 0.012834429740905762, 0.01919258013367653, 0.0131679717451334, 0.02800365537405014, 0.007143364287912846, 0.02134670689702034, -0.0012551266700029373, 0.019915254786610603, 0.02363981120288372, -0.016857784241437912, -0.04816906899213791, 0.0017710748361423612, -0.024862799793481827, -0.0020863765385001898, -0.001294213579967618, -0.03618934005498886, -0.006632627919316292, -0.01844210922718048, -0.026947438716888428, -0.005861311219632626, 0.020054230466485023, 0.012945611029863358, 0.01780281960964203, 0.02937951870262623, -0.025210238993167877, 0.017246916890144348, -0.00176238885615021, -0.007084299344569445, -0.038718704134225845, 0.04299916326999664, 0.023737093433737755, 0.0033319485373795033, 0.009068181738257408, 0.004989237058907747, 0.02807314321398735, -3.650833241408691e-05, 0.019595609977841377, -0.0034188085701316595, 0.0038670061621814966, -0.007838244549930096, 0.03057471103966236, -0.037523508071899414, 0.00212285784073174, -0.039274606853723526, 0.03404910862445831, 0.022263947874307632, -0.028448378667235374, 0.021847020834684372, 0.009165464900434017, 0.0378570519387722, 0.021749738603830338, -0.018414314836263657, 0.04969780147075653, -0.030602507293224335, -0.01015219371765852, -0.0008486219448968768, -0.02334796078503132, -0.03285391628742218, -0.007615882437676191, -0.018761754035949707, -0.0006145343068055809, 0.018108567222952843, -0.04825245216488838, -0.014564680866897106, 0.0013993141474202275, 0.02094367705285549, -0.0014627219643443823, -0.0329928919672966, 0.005642423871904612, 0.042804595082998276, -0.02482110634446144, 0.006299085449427366, -0.0021332809701561928, -0.0055451407097280025, 0.014634168706834316, 0.015912747010588646, 0.0031478055752813816, -0.04922528564929962, -0.026877950876951218, 0.010305067524313927, -0.002157601760700345, -0.026836257427930832, 0.012612068094313145, 0.015857156366109848, -0.012952559627592564, 0.0007608933956362307, -0.0308526623994112, -0.023306269198656082, 0.006378996651619673, 0.016399163752794266, 0.0040094563737511635, -0.022903237491846085, 0.021860918030142784, 0.01621849462389946, 0.006552716717123985, 0.007310135290026665, 0.02480720914900303, 0.018678369000554085, -0.02087418921291828, 0.02059623785316944, 0.0031113242730498314, 0.0024355535861104727, -0.014182496815919876, 0.017094042152166367, -0.02384827472269535, 0.009589341469109058, -0.030268963426351547, 0.027850782498717308, 0.008018912747502327, 0.03557784482836723, -0.0039052243810147047, -0.004561885725706816, -0.003623798256739974, -0.00461052730679512, 0.023028315976262093, 0.029768651351332664, 0.010840124450623989, -0.03307627886533737, 0.011104179546236992, 0.0037176068872213364, 0.018456008285284042, -0.0055729360319674015, -0.016440855339169502, -0.024501461535692215, 0.010721995495259762, 0.013445924036204815, -0.009172413498163223, -0.008338557556271553, 0.031019434332847595, 0.00575360469520092, 0.017205223441123962, 0.017344199120998383, -0.05161567032337189, 0.039747126400470734, -0.0006249574944376945, 0.008540072478353977, -0.008470584638416767, -0.03049132600426674, -0.03616154566407204, -0.022611388936638832, -0.007734012324362993, -0.004506295546889305, 0.028114836663007736, 0.006021133624017239, -0.008324660360813141, -0.016301879659295082, 0.009373928420245647, -0.01760825328528881, 0.084275022149086, -0.0054131136275827885, -0.010923510417342186, 0.0030922151636332273, 0.05133771896362305, -0.03460501506924629, -0.003860057331621647, 0.0028403212781995535, 0.012264628894627094, 0.012973405420780182, -0.04286018759012222, 0.04327711462974548, 0.04472246393561363, 0.0038565827999264, 0.00038283533649519086, -0.016371367499232292, -0.003849634202197194, 0.0364672914147377, 0.031853288412094116, -0.008359404280781746, 0.01995694823563099, -0.033687774091959, -0.00523244496434927, -0.003001880832016468, -0.023889968171715736, -0.01594054326415062, 0.020763007923960686, -0.0143840117380023, -0.02155517227947712, 0.020915882661938667, -0.018817344680428505, 0.014953813515603542, -0.008804126642644405, 0.0017276449361816049, -0.009575443342328072, -0.01153500471264124, 0.006083672866225243, -0.022013792768120766, 0.0241957139223814, 0.008505328558385372, -0.0175943560898304, 0.012556478381156921, -0.00841499399393797, -0.020554544404149055, 0.00956154614686966, 0.01988746039569378, -0.02190261147916317, -0.00363769568502903, 0.007469957694411278, -0.003734978847205639, -0.011861598119139671, -0.008776332251727581, -0.04886394739151001, -0.023667605593800545, -0.033104073256254196, 0.006243494804948568, 0.001359358662739396, 0.00026036277995444834, -0.04083113744854927, -0.01431452389806509, 0.02550208941102028, 0.028795819729566574, -0.06765349954366684, 0.001240360434167087, 0.012667658738791943, -0.0098394975066185, 0.0031234847847372293, 0.007685370743274689, -0.001818847842514515, 0.011715673841536045, -0.026975233107805252, 4.408143649925478e-05, 0.029713060706853867, -0.0077131655998528, -0.00963103398680687, 0.028239915147423744, -0.018136363476514816, 0.024570949375629425, -0.007014811504632235, -0.024209612980484962, -0.003728030016645789, -0.01008270587772131, 0.014689759351313114, 0.04652915149927139, -0.022263947874307632, -0.0009198471088893712, 0.036078158766031265, 0.010006269440054893, -0.020540647208690643, 0.043360497802495956, -0.005260240286588669, -0.002918495098128915, 0.013348640874028206, 0.013876749202609062, 0.020401671528816223, 0.023528629913926125, -0.017080144956707954, -0.03432706370949745, 0.0028663792181760073, -0.027350468561053276, 0.004047675058245659, -0.021805327385663986, -0.009686624631285667, 0.006406791973859072, -0.02584952861070633, -0.013591849245131016, -0.010930459015071392, -0.009068181738257408, -0.015162277035415173, 0.0022340386640280485, -0.001592143322341144, -0.01752486824989319, 0.028656842187047005, -0.021513478830456734, -0.03007439710199833, -0.01767774298787117, 0.022402925416827202, -0.035661231726408005, -0.014703656546771526, 0.005423536989837885, -0.016510343179106712, 0.016468651592731476, 0.004600104410201311, 0.00352477771230042, 0.01607951894402504, 0.026655588299036026, -0.01036760676652193, 0.018525496125221252, 0.0031981843058019876, 0.005086520221084356, 0.008790229447185993, 0.023598117753863335, 0.014272831380367279, -0.00727539137005806, 0.013119330629706383, 0.0036828629672527313, -0.00674033397808671, -0.0089431032538414, -0.00841499399393797, -0.008192633278667927, -0.025057366117835045, 0.019512224942445755, -0.011597543954849243, -0.000805626274086535, -0.03680083528161049, 0.03479957953095436, -0.0018553290283307433, -0.027211492881178856, 0.011257052421569824, 0.0010970415314659476, 0.008380250073969364, 0.0035438870545476675, -0.002286154543980956, 0.017636049538850784, 0.010721995495259762, -0.016121210530400276, 0.040025077760219574, -0.013299999758601189, 0.022430719807744026, -0.027336571365594864, -0.006858463399112225, 0.01601003110408783, -0.0427212119102478, -0.01837262138724327, 0.03163092955946922, -0.02010982111096382, -0.012139550410211086, 0.020763007923960686, -0.0036481190472841263, -0.01150720939040184, -0.027336571365594864, -0.0385519303381443, 0.022639183327555656, 0.015982234850525856, -0.04008066654205322, -0.006236546207219362, 0.01594054326415062, 0.0043256268836557865, -0.023625914007425308, 0.0017363309161737561, -0.007859090343117714, 0.01670490950345993, 0.006111467722803354, -0.01621849462389946, -0.02127721905708313, -0.012730197980999947, 0.009047335013747215, -0.012980354949831963, 0.013487616553902626, -0.005819618236273527, 0.01050658244639635, 0.012612068094313145, 0.014717553742229939, -0.014439602382481098, -0.005996812600642443, -0.027128107845783234, 0.028170427307486534, -0.02307000942528248, 0.020957574248313904, 0.0055381921119987965, 0.012327167205512524, -0.014564680866897106, -0.023598117753863335, -0.009804753586649895, 0.015134481713175774, -0.06431807577610016, 0.0014879113296046853, -0.008706843480467796, 0.01663542166352272, -0.005757078994065523, 0.040303029119968414, 0.0005645898636430502, -0.0025675809010863304, 0.05272747948765755, -0.009311389178037643, -0.002157601760700345, 0.009436467662453651, 0.015342946164309978, -0.008303813636302948, -0.03485517203807831, -0.017830615863204002, -0.01220208965241909, 0.05759163945913315, -0.0277257040143013, -0.008790229447185993, 0.01295950822532177, -0.007407418452203274, 0.014648065902292728, 0.015092789195477962, -0.04614001885056496, 0.027058620005846024, -0.0005567724583670497, 0.006257392466068268, -0.006688218098133802, -0.013084586709737778, -0.0025293624494224787, -0.037745870649814606, -0.011840751394629478, -0.0019178682705387473, -0.0322980135679245, -0.024793311953544617, 0.0015886689070612192, 0.000744390010368079, -0.00491974875330925, 0.011694827117025852, 0.016135109588503838, -0.015134481713175774, -0.00967272650450468, -0.011097230017185211, -0.03335423022508621, -0.01719132624566555, 0.009825600311160088, 0.0035039314534515142, -0.005072622559964657, 0.021652454510331154, -0.01877565309405327, 0.010200835764408112, -0.02099926769733429, 0.01136823371052742, -0.019873563200235367, -0.012528683058917522, -0.026141377165913582, 0.017483176663517952, -0.004363845102488995, 0.016037825495004654, 0.04714064672589302, 0.0025554203893989325, -0.03791264072060585, -0.05317220091819763, 0.017510971054434776, -0.018066875636577606, 0.018872935324907303, -0.013689132407307625, -0.023584220558404922, -0.02087418921291828, 0.008936154656112194, 0.005364472046494484, -0.007935527712106705, 0.01164618507027626, -0.0143840117380023, 0.00462442496791482, 0.04163719713687897, 0.0013324320316314697, 0.016399163752794266, 0.034354858100414276, 0.008053656667470932, -0.04683489724993706, -0.001271630055271089, -0.006389419548213482, 0.010721995495259762, 0.04583427309989929, 0.013216613791882992, 0.024292998015880585, 0.012542580254375935, -0.003790569258853793, 0.03382674977183342, -0.006893207784742117, 0.04950323700904846, 0.009304440580308437, -0.03377115726470947, -0.01927596516907215, 0.01129874587059021, 0.03488296642899513, 0.012139550410211086, 0.010854022577404976, 0.021166039630770683, 0.0068793101236224174, 0.016232391819357872, -0.006403317209333181, -0.03782925754785538, 0.014939915388822556, -0.005809195339679718, -0.018483802676200867, -0.007699268404394388, 0.03118620626628399, 0.018317030742764473, -0.020332183688879013, -0.04511159658432007, 0.018261441960930824, 0.019998639822006226, 0.011812957003712654, -0.0035508358851075172, -0.011708724312484264, -0.039886102080345154, 0.010270323604345322, 0.003957340493798256, -0.0005441777175292373, -0.008477533236145973, -0.016204597428441048, -0.010687251575291157, 0.014425704255700111, -0.03999727964401245, 0.036912016570568085, -0.05436739698052406, 0.004777298774570227, 0.03568902611732483, 0.004676540847867727, 0.023514732718467712, 0.027044720947742462, -0.010583019815385342, -0.0026075365021824837, 0.008352454751729965, -0.00077565957326442, 0.033382024616003036, -0.027461649850010872, 0.035105329006910324, 0.00803975947201252, 0.022055484354496002, 0.0022270898334681988, 0.0010796694550663233, 0.018178055062890053, 0.014578578062355518, -0.0322980135679245, -0.009075130335986614, 0.000713120389264077, -0.01022168155759573, 0.012486989609897137, 0.0030227270908653736, -0.0008481876575388014, -0.027086414396762848, -0.010583019815385342, 0.02487669698894024, -0.021582966670393944, 0.012702402658760548, 0.013765568844974041, 0.017288610339164734, -0.014592476189136505, -0.00011215794074814767, 0.0005645898636430502, 0.0210687555372715, -0.00797027163207531, -0.007886885665357113, 0.011972779408097267, 0.009095976129174232, -0.0016182013787329197, -0.037884846329689026, 0.000697485578712076, -0.0012169082183390856, -0.027058620005846024, -0.017927898094058037, 0.028392788022756577, -0.022166665643453598, 0.018261441960930824, -0.027642318978905678, 0.02030438743531704, -0.012382757849991322, -0.00280731450766325, 0.0004277853877283633, 0.025057366117835045]], "input": ["# Baggage Management Community\n\nThe Baggage Management Community encompasses various entities involved in the handling, reporting, and claims processes related to passenger baggage, particularly focusing on EL AL Israel Airlines and its associated services. The community includes the Baggage Service Center, courier services, and various documentation necessary for managing baggage issues, highlighting the interconnectedness of these entities in ensuring a smooth travel experience for passengers.\n\n## EL AL Israel Airlines as the central entity\n\nEL AL Israel Airlines plays a pivotal role in the baggage management community, being responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability. The airline's policies and procedures directly influence how baggage issues are managed, impacting passenger experiences. The airline's relationship with various entities, such as the Baggage Service Center and the Claims Department, is crucial for effective baggage handling and resolution of issues. [Data: Entities (250); Relationships (24, 193, 361)]\n\n## Baggage Service Center's essential role\n\nThe Baggage Service Center is dedicated to assisting travelers with baggage-related issues, including delays and damages. This center serves as a crucial resource for passengers, providing support and facilitating the claims process. Its coordination with the Claims Department ensures that claims are processed efficiently, which is vital for maintaining passenger trust and satisfaction. The center's ability to manage reports of delayed baggage and coordinate with courier services for delivery further emphasizes its importance in the community. [Data: Entities (113, 202); Relationships (186, 222, 228)]\n\n## Importance of documentation in baggage claims\n\nDocumentation such as flight tickets, boarding passes, and baggage tags is essential for passengers filing claims for lost or damaged baggage. These documents serve as proof of travel and ownership, facilitating the claims process. The requirement for specific documents underscores the structured nature of baggage claims and the importance of proper documentation in ensuring that passengers receive compensation for their issues. The Baggage Service Center provides guidance on the necessary documentation, which is critical for a smooth claims process. [Data: Entities (251, 252, 253); Relationships (194, 195, 196)]\n\n## Courier service enhances passenger experience\n\nThe courier service is responsible for delivering retrieved delayed baggage to passengers' specified addresses, significantly enhancing the travel experience by alleviating the inconvenience caused by baggage delays. This service is crucial for maintaining customer satisfaction, as it ensures that passengers receive their belongings promptly after they have been located. The relationship between the Baggage Service Center and the courier service is vital for effective communication and coordination in managing delayed baggage. [Data: Entities (117); Relationships (187, 251)]\n\n## Challenges associated with oversized and overweight baggage\n\nOversized and overweight baggage presents unique challenges in baggage management, requiring special handling and potentially incurring additional fees. The designated locations for checking in such baggage are critical for ensuring that these items are processed appropriately. The community's ability to manage these types of baggage effectively is essential for operational efficiency and passenger satisfaction, as mishandling can lead to delays and increased costs. [Data: Entities (340); Relationships (323, 403)]"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-d8e3967001535721501dfa9cc02ff282 b/cache/text_embedding/embedding-d8e3967001535721501dfa9cc02ff282 deleted file mode 100644 index c180a2f1d8315642c368afee2e5fab37f652d540..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-d8e3967001535721501dfa9cc02ff282 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.058177683502435684, 0.042875852435827255, 0.028496086597442627, 0.01867174357175827, -0.058177683502435684, 0.033940639346838, -0.0026879736687988043, 0.014610282145440578, 0.01588360406458378, 0.05058165267109871, -0.04280999302864075, 0.038770485669374466, -0.03508223965764046, 0.041492760181427, -0.02485174871981144, 0.02744230255484581, 0.016926411539316177, 0.03721176087856293, -0.010471982881426811, 0.030164578929543495, 0.019308404996991158, 0.009538944810628891, 0.014248043298721313, -0.0029939552769064903, 0.013040582649409771, -0.017255719751119614, 0.042766083031892776, -0.054752882570028305, 0.041317131370306015, -0.04882534593343735, 0.06770564615726471, -0.007173418067395687, 0.03470902517437935, -0.018605880439281464, 0.04263436049222946, -0.03336983919143677, -0.021361088380217552, 0.011866051703691483, 0.0384850837290287, -0.009352336637675762, -0.027354488149285316, 0.0027757890056818724, -0.008616883307695389, -0.03844117745757103, -0.06814472377300262, 0.09062545746564865, 0.013611381873488426, -0.029330333694815636, -0.03117445670068264, 0.02869367226958275, -0.019374266266822815, 0.006909972056746483, -0.003756851190701127, -0.009165729396045208, 0.045005377382040024, 0.015268897637724876, 0.009818855673074722, 0.030647562816739082, 0.026278749108314514, 0.012338059023022652, 0.01195386704057455, -0.0034604743123054504, -0.004327651113271713, 0.020570749416947365, -0.03844117745757103, -0.01659710519015789, 0.042458731681108475, 0.03086710162460804, -0.03527982532978058, 0.040636561810970306, 0.0021624534856528044, 0.02687150239944458, 0.0032574012875556946, -0.04456629976630211, -0.016048258170485497, -0.007843010127544403, 0.023468656465411186, -0.040900006890296936, -0.0065367566421628, -0.0002591582597233355, -0.025510365143418312, 0.010159140452742577, -0.03091100975871086, 0.0435783751308918, 0.004582864698022604, 0.013600405305624008, -0.033391792327165604, -0.009379778988659382, -0.021437926217913628, -0.00631721829995513, -0.022700272500514984, -0.01861685886979103, 0.015411597676575184, 0.0760481059551239, -0.0027003225404769182, -0.0065641989931464195, 0.03075733222067356, -0.007727752439677715, -0.04926442354917526, 0.06858380138874054, -0.003422055160626769, 0.01457735151052475, -0.012930813245475292, 0.02261245809495449, 0.023819919675588608, -0.059099745005369186, -0.04482974484562874, -0.01830950379371643, 0.019066911190748215, 0.020219488069415092, 0.022941764444112778, -0.03569694608449936, -0.026476332917809486, 0.07859475165605545, 0.009308429434895515, -0.00047029246343299747, -0.028298502787947655, -0.00035640690475702286, 0.0030762820970267057, -0.00993411336094141, 0.008221713826060295, -0.03506028652191162, 0.013633335940539837, -0.06985712796449661, 0.019001049920916557, 0.0465860515832901, -0.0769701674580574, 0.05690436065196991, -0.01794726587831974, -0.0019044957589358091, 0.057036083191633224, 0.004486816469579935, 0.04553226754069328, -0.02790333330631256, 0.008199759759008884, -0.011350136250257492, 0.021042758598923683, 0.0015079545555636287, -0.005834233481436968, 0.02417118102312088, 0.0220965426415205, 0.042568501085042953, 0.020834196358919144, 0.012711274437606335, 0.0012136357836425304, 0.0035071263555437326, 0.006997787393629551, 0.04829845204949379, 0.0029445590917021036, 0.02770574949681759, -0.0031037244480103254, 0.033172257244586945, 0.026651963591575623, 0.008271110244095325, 0.013600405305624008, -0.029527917504310608, 0.004302952904254198, 0.08210737258195877, -0.004753006622195244, 0.03207456320524216, -0.030998826026916504, -0.015949467197060585, 0.005872652865946293, -0.038309454917907715, 0.03839727118611336, 0.004829845391213894, -0.009368802420794964, 0.02344670332968235, -0.05866066738963127, -0.034050408750772476, 0.0034110781271010637, -0.025356687605381012, -0.021031780168414116, -0.030669517815113068, -0.04076828435063362, 0.008304040879011154, -0.03299662470817566, 0.04129517823457718, 0.0002910599287133664, -0.007996686734259129, 0.030252395197749138, 0.00697583332657814, -0.06059260293841362, 0.0014132786309346557, -0.037431299686431885, 0.029484009370207787, 0.008627859875559807, -0.020219488069415092, 0.019264496862888336, -0.0219428651034832, 0.010691520757973194, 0.0270690880715847, -0.028957117348909378, 0.023929687216877937, -0.017156926915049553, -0.0240614116191864, -0.048474084585905075, -0.009291963651776314, 0.033479608595371246, 0.0034687069710344076, -0.00861139502376318, -0.021767234429717064, 0.03536764159798622, -0.008007664233446121, -0.02713494934141636, -0.04684950038790703, 0.04035116359591484, 0.005790325812995434, 0.03003285638988018, 0.02349061146378517, 0.0079637560993433, 0.014489536173641682, -0.034423623234033585, 0.004486816469579935, 0.0159275121986866, 0.03881439194083214, 0.04886925220489502, 0.005568043328821659, 0.011712375096976757, 0.043600331991910934, 0.003932482097297907, -0.025093242526054382, 0.0015285363188013434, -0.004453885834664106, -0.03143790364265442, -0.010268909856677055, 0.006981321610510349, 0.04190988466143608, 0.01695934310555458, -0.027530118823051453, -0.03196479380130768, 0.019846273586153984, -0.0025699716061353683, -0.02214045077562332, 0.029484009370207787, 0.018199734389781952, -0.016630034893751144, -0.023380842059850693, -0.029022978618741035, -0.012294151820242405, 0.0201316736638546, 0.02805701084434986, 0.01633365824818611, 0.013765059411525726, -0.004327651113271713, -0.009066936559975147, -0.012228290550410748, 0.028210686519742012, 0.03508223965764046, 0.00941270962357521, 0.04217332974076271, 0.01499447412788868, 0.014434651471674442, -0.025949440896511078, -0.00427825516089797, 0.010845198296010494, 0.050757281482219696, 0.029374239966273308, 0.06480774283409119, -0.034006502479314804, 0.01457735151052475, 0.01748623512685299, 0.003625128185376525, -0.013995574787259102, -0.033172257244586945, 0.00030375199276022613, 0.08882524818181992, 0.0004329023358877748, -0.005441808607429266, 0.02572990395128727, -0.04127322509884834, 0.023227164521813393, 0.0013330098008736968, -0.02012069709599018, -0.049615684896707535, 0.02397359535098076, 0.039341285824775696, -0.005010964348912239, -0.03655314818024635, 0.0005635963170789182, -0.06032915785908699, -0.016717851161956787, 0.024039456620812416, -0.01940719597041607, -0.0022516408935189247, -0.005087803117930889, 0.0005450727185234427, 0.014818843454122543, 0.007261233404278755, 0.028759533539414406, 0.02763988822698593, 0.0259933490306139, -0.008830932900309563, 0.013216213323175907, 0.03207456320524216, -0.01110315602272749, -0.025334734469652176, -0.023073488846421242, 0.018035082146525383, -0.01726669631898403, 0.012546621263027191, 0.028518041595816612, -0.005636649206280708, -0.00010222257697023451, -0.06357832998037338, 0.021975796669721603, 0.021284250542521477, 0.015938488766551018, -0.06327097117900848, -0.03477488458156586, -0.032557547092437744, 0.07793614268302917, -0.03683854639530182, -0.03657510131597519, -0.05036211386322975, 0.03163548558950424, 0.020867127925157547, 0.045005377382040024, 0.03304053097963333, 0.03139399364590645, 0.03143790364265442, 0.039977945387363434, 0.03604820743203163, -0.008315017446875572, 0.04965959116816521, -0.019176680594682693, 0.028188733384013176, 0.0478154681622982, -0.03620188683271408, -0.01413827482610941, -0.018199734389781952, 0.004983521997928619, 0.01924254186451435, -0.022349011152982712, -0.00957187544554472, -0.06125121936202049, -0.020054833963513374, 0.05712389573454857, -0.004143787547945976, 0.01747525855898857, 0.04996694624423981, -0.015631135553121567, 0.009341360069811344, -0.00045485617010854185, -0.00987922865897417, 0.003523591673001647, 0.003553778165951371, 0.011394044384360313, 0.015159128233790398, 0.023797964677214622, 0.030164578929543495, 0.012711274437606335, -0.029527917504310608, -0.042875852435827255, -0.05804595723748207, -0.03152571618556976, 0.04996694624423981, -0.01690445840358734, -0.014302928000688553, 0.017980197444558144, -0.04037311673164368, -0.006492848973721266, 0.025510365143418312, 0.05396254360675812, -0.01924254186451435, -0.035609133541584015, 0.008644325658679008, 0.024346811696887016, -0.008545532822608948, -0.02329302579164505, 0.02998894825577736, -0.013611381873488426, -0.019835297018289566, -0.00801864080131054, 0.010510401800274849, 0.0291547030210495, -0.02972550317645073, -0.0015120708849281073, 0.003188795642927289, -0.022853950038552284, 0.014665166847407818, 0.00394071452319622, 0.045927438884973526, 0.07152561843395233, 0.004972545430064201, 0.051371991634368896, -0.01758502796292305, 0.005082314368337393, 0.013183282688260078, 0.006223914213478565, -0.02733253315091133, 0.023732103407382965, -0.010230490937829018, 0.012052658945322037, 0.01341379713267088, 0.004025785718113184, 0.04518100619316101, 0.037058085203170776, -0.004055972211062908, -0.040021855384111404, 0.0114928362891078, -0.029286425560712814, 0.0088693518191576, 0.007014252711087465, -0.0011868795845657587, -0.007091091014444828, 4.588010051520541e-05, -0.020406097173690796, 0.013183282688260078, 0.00422885874286294, 0.03464316204190254, 0.02474197931587696, 0.0033369839657098055, 0.014511489309370518, 0.013699197210371494, -0.010664078406989574, 0.054752882570028305, 0.01545550487935543, -0.03336983919143677, -0.020274372771382332, -0.003172330092638731, 0.013918736018240452, -0.016004351899027824, 0.021547695621848106, -0.0044456529431045055, 0.043183207511901855, -0.0037870376836508512, -0.00131311418954283, 0.010537844151258469, -0.04223919287323952, -0.029505964368581772, -0.006553221959620714, 0.06546635925769806, 0.018737604841589928, -0.041514717042446136, -0.003924249205738306, 0.011789212934672832, -0.01711302064359188, 0.01558722835034132, -0.02858390286564827, -0.04300757870078087, -0.02302958071231842, 0.01836438849568367, 0.016882505267858505, 0.008144875057041645, -0.023776011541485786, -0.013655290007591248, 0.018199734389781952, 0.049044884741306305, -0.021920911967754364, -0.039648640900850296, -0.015850674360990524, -0.021646488457918167, 0.001986822811886668, -0.050142575055360794, -0.034994423389434814, -0.019012026488780975, -0.05233795940876007, 0.008079013787209988, -0.02717885747551918, 0.0541381761431694, 0.03901197761297226, 0.052513591945171356, -0.00944015197455883, 0.03352351859211922, 0.06125121936202049, 0.03163548558950424, 0.008589440956711769, 0.005524135660380125, -0.047288574278354645, 0.014335858635604382, -0.01556527428328991, 0.024368764832615852, 0.0009748878073878586, 0.037167854607105255, -0.0068660639226436615, 0.03372110053896904, -0.021448904648423195, -0.031196409836411476, -0.009868252091109753, 0.025071287527680397, 0.02333693392574787, -0.04414917528629303, -0.06239281967282295, 0.058221589773893356, 0.04098782315850258, 0.0724915862083435, 0.017102042213082314, -0.01686055026948452, -0.0372556708753109, -0.049835219979286194, -0.0038309453520923853, 0.03565303981304169, -0.008358925580978394, -0.004961568396538496, -0.027376441285014153, 0.029945040121674538, -0.027925286442041397, 0.03714590147137642, -0.03916565328836441, 0.010257932357490063, -0.060768235474824905, 0.026015302166342735, -0.04799110069870949, 0.03896807134151459, 0.006311729550361633, -0.01821071282029152, 0.005052127875387669, -0.011295251548290253, 0.028781486675143242, -0.0134577052667737, -0.0016149794682860374, 0.04996694624423981, 0.010181094519793987, -0.007760683074593544, -0.005911071784794331, 0.012305128388106823, 0.03117445670068264, -0.004346860572695732, -0.01107022538781166, -0.0013254631776362658, -0.0038089915178716183, -0.03565303981304169, -0.002430015942081809, -0.039977945387363434, -0.0021775467321276665, 0.02454439550638199, -0.04068046808242798, 0.03380891680717468, 0.004527979996055365, -0.009703597985208035, -0.05058165267109871, -0.017870428040623665, -0.007513702381402254, -0.010109744034707546, 0.010175606235861778, -0.011136086657643318, -0.004733797162771225, 0.013260120525956154, -0.01649831235408783, -0.004349605180323124, -0.033062487840652466, -0.004898451268672943, 0.010521379299461842, 0.01263443659991026, 0.04724466800689697, 0.04821063578128815, 0.025861626490950584, -0.01400655135512352, -0.03973645344376564, -0.031876977533102036, 0.011800190433859825, 0.023205211386084557, -0.020768335089087486, -0.016465380787849426, -0.0006030445802025497, 0.03703613206744194, 0.014017527922987938, -0.012414897792041302, 0.028452180325984955, 0.023666242137551308, 0.015949467197060585, -0.03437971696257591, -0.002335340017452836, -0.06006571277976036, -0.0014023017138242722, -0.02340279519557953, 0.009006563574075699, 0.0011127854231745005, -0.004182206932455301, -0.05971445143222809, 0.01566406711935997, 0.03527982532978058, 0.02619093284010887, 0.0526014044880867, 0.00210070819593966, 0.017969219014048576, -0.03413822501897812, 0.023622334003448486, -0.018902258947491646, 0.010592728853225708, 0.02219533361494541, 0.02542254887521267, -0.027815518900752068, -0.024456581100821495, 0.015905559062957764, -0.024807842448353767, -0.052425775676965714, -0.042305052280426025, 0.03440167009830475, 0.024193134158849716, -0.01603728160262108, 0.017563072964549065, 0.02116350457072258, -0.009873740375041962, 0.07055965065956116, -0.01664101332426071, 0.009840809740126133, -0.023512564599514008, 0.03293076157569885, -0.0007478027255274355, 0.003202516818419099, 0.00035846506943926215, 0.023424750193953514, -0.015642112120985985, -0.012294151820242405, 0.012316105887293816, -0.014226090162992477, -0.002977489959448576, 0.02671782672405243, 0.02557622641324997, 0.005219526123255491, -0.015993373468518257, 0.0016410497482866049, -0.057650789618492126, -0.006405033636838198, -0.0035071263555437326, -0.02572990395128727, 0.003759595565497875, 0.014895682223141193, -0.0129198357462883, 0.012821043841540813, -0.019626734778285027, -0.03521396219730377, -0.04232700914144516, 0.008759583346545696, -0.016673943027853966, -0.06094386428594589, 0.02454439550638199, -0.025334734469652176, -0.03220628574490547, -0.0017247487558051944, 0.008567486889660358, -0.005998887587338686, -0.009308429434895515, -0.01954989694058895, 0.01193191297352314, 0.011547720991075039, -0.004766727797687054, 0.0012733228504657745, 0.06116340309381485, -0.0321623794734478, 0.007683844771236181, -0.04755202308297157, 0.03949496150016785, 0.02904493361711502, -0.0008061176631599665, -0.018594903871417046, -0.00429197633638978, 0.000766326324082911, 0.040548745542764664, 0.0036004302091896534, 0.017233766615390778, -0.015444528311491013, -0.0036004302091896534, -0.021196434274315834, -0.03220628574490547, 0.04439066722989082, 0.00952247902750969, -0.006174518261104822, -0.03497247025370598, 0.02801310271024704, 0.0037842935416847467, -0.009456617757678032, 0.022853950038552284, 0.02728862501680851, 0.007826544344425201, 8.507113670930266e-05, -0.0024409927427768707, 0.0008884445414878428, -0.0019072400173172355, -0.0015189314726740122, -0.01726669631898403, -0.013161328621208668, -0.03958277776837349, -0.004980777855962515, -0.03723371773958206, 0.004791426006704569, -0.024785887449979782, 0.06748610734939575, -0.03778256103396416, 0.010329282842576504, 0.006383079569786787, -0.002019753446802497, -0.008759583346545696, -0.01509326696395874, 0.02084517292678356, -0.015554296784102917, 0.005181106738746166, 0.03354547172784805, 0.01545550487935543, 0.02687150239944458, -0.02439071796834469, -0.005274410825222731, 0.010729940608143806, 0.03117445670068264, -0.007118533365428448, 0.014796889387071133, -0.005790325812995434, 0.00046446098713204265, 0.01847415789961815, 0.024302903562784195, -0.04513709992170334, -0.06753002107143402, -0.05664091184735298, 0.00645991787314415, -0.014160227961838245, 0.013358913362026215, 0.03536764159798622, 0.0021569649688899517, -0.017343536019325256, 0.0288473479449749, -0.029132748022675514, -0.011097666807472706, -0.002296920632943511, 0.009862763807177544, 0.01961575821042061, -0.003770572366192937, 0.019176680594682693, 0.015203035436570644, -0.0330844409763813, 0.021602580323815346, -0.0090230293571949, -0.00959382951259613, 0.03980231657624245, -0.037541069090366364, 0.0051536643877625465, -0.00287320907227695, -0.026739779859781265, 0.014390743337571621, 0.06006571277976036, -0.020581727847456932, -0.03251364082098007, 0.014467582106590271, -0.02641047164797783, 0.0005001359968446195, -0.024412672966718674, 0.008578463457524776, 0.024237042292952538, -0.008759583346545696, 0.018858350813388824, -0.05172325298190117, 0.011602605693042278, -0.02333693392574787, 0.01571895182132721, 0.012842997908592224, 0.02401750348508358, 0.015246943570673466, -0.014895682223141193, -0.010246955789625645, -0.023885780945420265, 0.005419855006039143, -0.01722279004752636, 0.018638812005519867, 0.043336883187294006, 0.00503291841596365, 0.01001644041389227, 0.002161081414669752, 0.02198677323758602, -0.017716750502586365, -0.033435702323913574, 0.018496112897992134, 0.016201935708522797, 0.011015340685844421, -0.003136655315756798, 0.0047365413047373295, -0.07499432563781738, -0.005872652865946293, 0.02225021831691265, -0.00472282012924552, 0.009752994403243065, 0.002288687974214554, 0.026630010455846786, 0.02702517993748188, 0.014763958752155304, -0.013710174709558487, -0.04263436049222946, -0.030779287219047546, -0.022634411230683327, -0.02235998772084713, 0.04544445499777794, -0.005713487509638071, 0.005441808607429266, 0.02137206494808197, -0.008035106584429741, -0.03444558009505272, -0.010164628736674786, 0.016981296241283417, 0.0432710237801075, 0.015631135553121567, -0.021920911967754364, -0.006794714368879795, -0.02163551189005375, -0.044895607978105545, -0.010823244228959084, 0.0291547030210495, -0.008852886967360973, -0.02827654965221882, 0.025971395894885063, 0.01946208067238331, 0.005587252788245678, 0.0036717799957841635, -0.03075733222067356, 0.034730978310108185, 0.01986822672188282, -0.01960478164255619, -0.04201965406537056, -0.03569694608449936, 0.00791435968130827, -0.03826554864645004, -0.0024066900368779898, 0.022129472345113754, 0.017036180943250656, 0.03354547172784805, 0.019692596048116684, -0.014533443376421928, -0.019747480750083923, 0.01566406711935997, -0.0016163516556844115, -0.014840797521173954, 0.03194284066557884, 0.017870428040623665, 0.019484035670757294, -0.004050483927130699, 0.06783737242221832, 0.0020965919829905033, -0.027925286442041397, 0.04193183779716492, -0.022853950038552284, -0.013139374554157257, 0.034423623234033585, 0.0031558647751808167, 0.017716750502586365, -0.005057616624981165, 0.0034549860283732414, 0.011015340685844421, -0.011481859721243382, -0.013293051160871983, 0.023468656465411186, 0.02717885747551918, 0.053303927183151245, -0.03297467157244682, -0.0027222763746976852, 0.004643237683922052, -0.03383086994290352, 0.02763988822698593, 0.007853986695408821, -0.006613594945520163, 0.004983521997928619, 0.026586102321743965, -0.02698127180337906, -0.057914234697818756, 0.006641037296503782, 0.007365514058619738, 0.024149226024746895, -0.0351700559258461, -0.006114145275205374, -0.032864902168512344, -0.011679444462060928, -0.008463205769658089, 0.0035428013652563095, 0.012184382416307926, -0.008501625619828701, 0.04548836126923561, 0.002698950469493866, -0.0372556708753109, 0.01924254186451435, 0.03086710162460804, -0.027200810611248016, 0.0029500476084649563, 0.05282094329595566, 0.0028759532142430544, -0.004843566566705704, -0.028078963980078697, -0.01638854295015335, -0.041514717042446136, -0.005790325812995434, 0.06652013957500458, 0.018858350813388824, 0.04583962261676788, -0.018243642523884773, -0.006339171901345253, 0.06226109713315964, -0.004753006622195244, -0.00624037953093648, 0.001940170768648386, -0.019747480750083923, 0.030823195353150368, 0.07077918946743011, -0.0013041954953223467, 0.0065751755610108376, 0.011372090317308903, -0.006322706583887339, 0.0299230869859457, -0.004849054850637913, -0.005647625774145126, -0.009094378910958767, -0.03714590147137642, -0.008825444616377354, -0.025905534625053406, -0.016695896163582802, -0.00899558700621128, -0.024654164910316467, 0.014094366692006588, -0.002778533147647977, 0.008693721145391464, -0.005543345119804144, -0.023644287139177322, -0.010784825310111046, -0.00010591013415250927, 0.045005377382040024, 0.010488447733223438, -0.020054833963513374, -0.007656402420252562, 0.03240387141704559, -0.004700866527855396, 0.0021130573004484177, 0.018704673275351524, 0.025378640741109848, 0.013391843996942043, 0.04193183779716492, 0.019593805074691772, 0.011898982338607311, 0.0217891875654459, 0.0010476099560037255, 0.049879129976034164, 0.0002450940664857626, 0.025664040818810463, -0.00700327567756176, -0.0079637560993433, 0.021020803600549698, 0.01857295073568821, 0.023885780945420265, 0.06177811324596405, 0.011789212934672832, -0.002048567868769169, -0.012436851859092712, 0.007420398760586977, 0.03365524113178253, -0.01294178981333971, 0.00900107529014349, -0.02173430472612381, -0.009846298024058342, -0.009538944810628891, -0.03767279163002968, 0.0519866980612278, 0.01639951951801777, 0.02038414217531681, 0.00624037953093648, -0.009895694442093372, -0.014643212780356407, -0.025949440896511078, 0.023512564599514008, 0.012305128388106823, 0.020164603367447853, 0.0029802341014146805, 0.03321616351604462, 0.0038693647366017103, -0.006833133287727833, 0.002897907281294465, 0.01548843551427126, 0.0017563073197379708, 0.03341374918818474, -0.015301828272640705, 0.04671777784824371, 0.03569694608449936, -0.011350136250257492, -0.01639951951801777, -0.001830401597544551, -0.008282086811959743, 0.012414897792041302, 0.00768933305516839, 0.06068041920661926, 0.020318280905485153, -0.020307304337620735, 0.0036004302091896534, -0.023644287139177322, -0.019110819324851036, 0.014599304646253586, 0.02397359535098076, -0.03321616351604462, 0.01634463481605053, -0.0012849858030676842, 0.0014626746997237206, 0.00041815207805484533, 0.006103168241679668, 0.03451143950223923, -0.007305141072720289, -0.003773316740989685, 0.014335858635604382, -0.03541154786944389, 0.020987873896956444, -0.012678343802690506, 0.021492810919880867, -0.0109714325517416, 0.03497247025370598, 0.03681659325957298, 0.015631135553121567, 0.025027379393577576, -0.012535643763840199, 0.010493936948478222, -0.0005900094984099269, -0.009862763807177544, 0.028649764135479927, 0.024873703718185425, 0.0016410497482866049, 0.0348627008497715, 0.00033805487328208983, -0.010784825310111046, -0.0023024091497063637, 0.003902295371517539, -0.021394019946455956, 0.010312817059457302, 0.012107543647289276, -0.05181106925010681, -0.010071325115859509, -0.0023010370787233114, -0.03268926963210106, -0.01491763535887003, 0.017398420721292496, -0.034467533230781555, 0.028078963980078697, -0.012656389735639095, 0.021207410842180252, 0.02276613377034664, 0.0007848498644307256, 0.029286425560712814, 0.013238166458904743, 0.025071287527680397, -0.027464255690574646, 0.035301778465509415, -0.024215087294578552, 0.0010558426147326827, 0.0481228232383728, 0.02717885747551918, 0.03569694608449936, 0.005274410825222731, -0.02049391157925129, -0.016586128622293472, 0.014840797521173954, 0.003029630286619067, -0.011196459643542767, -0.024763934314250946, 0.014895682223141193, -0.0006860575522296131, -0.01991213485598564, 0.011525766924023628, 0.008441252633929253, -0.014906658791005611, -0.0061086565256118774, -0.016421474516391754, 0.04096587002277374, -0.04190988466143608, -0.011503812856972218, -0.0011409136932343245, -0.0023380841594189405, -0.002043079352006316, -0.00099203921854496, -0.007184394635260105, -0.003218982135877013, 0.030120670795440674, -0.027310580015182495, 0.00013729727652389556, -0.014742004685103893, 0.040438976138830185, -0.012788113206624985, -0.0481228232383728, 0.016662966459989548, -0.01248075906187296, -0.008589440956711769, 0.002044451655820012, -0.004333139397203922, 0.03398454934358597, 0.021459881216287613, 0.009379778988659382, -0.014599304646253586, -0.031569626182317734, -0.028342410922050476, -0.010241467505693436, 0.039758406579494476, 0.006372102536261082, -0.025093242526054382, 0.0006243123789317906, -0.00010359469160903245, -0.02153671905398369, -0.014039481990039349, 0.01237098965793848, -0.019484035670757294, -0.004626772366464138, 0.013787012547254562, 0.0058616758324205875, 0.012272197753190994, -0.014610282145440578, -0.004939614329487085, -0.018540019169449806, 0.017661865800619125, 0.03060365654528141, -0.016465380787849426, 0.026081165298819542, -0.03253559395670891, -0.008627859875559807, -0.020922010764479637, -0.014215112663805485, -0.02054879628121853, 0.04807891324162483, -0.027244718745350838, -0.012645413167774677, 0.01790335774421692, 0.01060919463634491, 0.011339159682393074, -0.00011774463200708851, 0.0027689284179359674, 0.02889125607907772, -0.014533443376421928, 0.020889081060886383, -0.004698122385889292, -0.00031404284527525306, 0.0057683722116053104, 0.010680544190108776, -0.03211846947669983, -0.04952786862850189, -0.013161328621208668, -0.01986822672188282, 0.020614657551050186, -0.014094366692006588, 0.0017672843532636762, 0.00959931779652834, 0.013611381873488426, -0.004069693386554718, -0.025378640741109848, -0.013249143958091736, -0.023271072655916214, -0.011898982338607311, -0.0076124947518110275, -0.012206336483359337, 0.00022193962649907917, 0.0007450585253536701, -0.052206236869096756, 0.009423687122762203, 0.008841910399496555, 0.01676175929605961, 0.01919863559305668, 0.006070237141102552, -0.025554271414875984, -0.010762871243059635, -0.009044983424246311, 0.01851806603372097, 0.05743125081062317, 0.01743135042488575, -0.026937363669276237, 0.011580651625990868, 0.0015216757310554385, -0.0022200823295861483, 0.010614682920277119, 0.015894582495093346, -0.0035702434834092855, 0.010054859332740307, -0.009407221339643002, 0.025137148797512054, 0.01040063239634037, 0.019473057240247726, -0.039077840745449066, 0.002095219912007451, -0.022810041904449463, 0.004928637761622667, 0.01690445840358734, 0.028254594653844833, -0.025532318279147148, -0.029945040121674538, 0.0210537351667881, -0.01961575821042061, -0.0084851598367095, -0.0327770859003067, -0.019264496862888336, 0.03044997900724411, 0.02562013454735279, 0.009237078949809074, 0.01738744229078293, 0.02302958071231842, -0.004253556951880455, 0.019385242834687233, -0.005502181593328714, -0.030691470950841904, -0.013754081912338734, 0.015642112120985985, 0.015696996822953224, 0.007321606390178204, -0.001968985190615058, -0.010351236909627914, -0.0033067974727600813, 0.03233800828456879, -0.004588352981954813, -0.0008479671669192612, -0.02801310271024704, -0.017398420721292496, 0.021591603755950928, -0.006882529705762863, -0.0005299794720485806, 0.002634461037814617, 0.021931888535618782, -0.0014503257116302848, 0.004838077817112207, 0.027925286442041397, -0.0035949416924268007, -0.0035702434834092855, -0.04715685173869133, -0.012821043841540813, 0.027003226801753044, -0.0035565225407481194, -0.030471932142972946, 0.0065312678925693035, -0.0005121419671922922, -0.0017329814145341516, 0.004684401210397482, 0.008199759759008884, -0.018199734389781952, -0.024807842448353767, 0.020307304337620735, -0.02226119674742222, 0.0041739740408957005, 0.021448904648423195, 0.037058085203170776, 0.016147051006555557, -0.034423623234033585, 0.011898982338607311, -0.00754663348197937, -0.03582867234945297, -0.03582867234945297, -0.024522442370653152, 0.01924254186451435, 0.033062487840652466, -0.013677244074642658, 0.004069693386554718, -0.008819956332445145, 0.040592655539512634, 0.005762883462011814, 0.016454404219985008, 0.0018043314339593053, 0.003051584120839834, -0.00957187544554472, -0.005010964348912239, 0.012052658945322037, -0.002037591068074107, 0.008940702304244041, -0.04970349743962288, -0.017145950347185135, -0.00905047170817852, -0.017574051395058632, -0.005784837529063225, -0.007947291247546673, 0.002969257067888975, 0.0035510340239852667, 0.03196479380130768, 0.005137199070304632, -0.019725527614355087, -0.013424774631857872, -0.009670667350292206, -0.06252454221248627, 0.010631147772073746, 0.03139399364590645, -0.01748623512685299, 0.0024039456620812416, 0.0017192602390423417, 0.012349036522209644, -0.011448929086327553, 0.016410497948527336, -0.04454434663057327, 0.01924254186451435, -0.012623459100723267, 0.018715649843215942, 0.009588340297341347, -0.03297467157244682, 0.014248043298721313, -0.017200835049152374, 0.018243642523884773, 0.025817718356847763, -0.0065696872770786285, 0.010845198296010494, 0.02126229554414749, 0.013029605150222778, 0.03451143950223923, -0.006059260573238134, -0.007305141072720289, -0.023666242137551308, -0.014226090162992477, 0.009017541073262691, 0.009731040336191654, 2.662760925886687e-05, 0.0269154105335474, -0.0034549860283732414, -0.03479684144258499, -0.056772634387016296, -0.018342435359954834, -0.01588360406458378, -0.009824343957006931, 0.023841872811317444, 0.0009282358805648983, -0.025707948952913284, 0.006059260573238134, 0.006125121843069792, 0.008221713826060295, 0.006306241266429424, -0.045312728732824326, -0.0024108062498271465, 0.005664091091603041, 0.005724464543163776, -0.005554322153329849, -0.018068011850118637, 0.038616809993982315, -0.008024129085242748, 0.015181082300841808, 0.042348962277173996, 0.0010400633327662945, 0.015312804840505123, 0.002829301403835416, -0.015334758907556534, 0.019725527614355087, -0.02333693392574787, -0.021811142563819885, -0.01597142033278942, 0.006333683617413044, -0.012195358984172344, 0.009017541073262691, 0.031306177377700806, -0.02070247381925583, -0.010235979221761227, 0.011179993860423565, 0.005894606467336416, 0.018441228196024895, -0.0014558141119778156, -0.010334771126508713, 0.0160811897367239, -0.03497247025370598, 0.014643212780356407, -0.023205211386084557, 0.03920956328511238, -0.005096035543829203, 0.01548843551427126, -0.005834233481436968, 0.03220628574490547, -0.038199685513973236, -0.009182194247841835, -0.022897858172655106, -0.011004363186657429, 0.040592655539512634, 0.008358925580978394, -0.011372090317308903, 0.012623459100723267, 0.004714587703347206, 0.0011072969064116478, -0.04004380851984024, -0.02256854996085167, -0.03044997900724411, 0.01143795158714056, -0.010900082997977734, 0.032294102013111115, -0.0031119571067392826, 0.006344660185277462, -0.005301852710545063, 0.006169029511511326, 0.023358888924121857, 0.013402820564806461, -0.022524641826748848, 0.010686032474040985, -0.014774936251342297, -0.0086388373747468, -0.036970268934965134, 0.0014420930529013276, -0.003817224409431219, 0.01956087350845337, -0.009857275523245335, 0.009895694442093372, 0.004936870187520981, -0.015620158985257149, -0.009012051858007908, 0.04684950038790703, -0.008518090471625328, 0.002605646615847945, 0.003778805024921894, -0.004492304753512144, -0.01341379713267088, -0.04939614608883858, -0.004149276297539473, 0.000999585841782391, 0.04799110069870949, -0.004816124215722084, -0.03771670162677765, -0.009407221339643002, -0.010395144112408161, -0.02439071796834469, 0.007299652323126793, -0.012645413167774677, -0.010076813399791718, 0.0001750304363667965, -0.020867127925157547, 0.0034165666438639164, -0.007832033559679985, 0.01981334201991558, -0.036487285047769547, -0.0007896522874943912, -0.020735403522849083, 0.019363289698958397, -0.01509326696395874, -0.002604274544864893, 0.02397359535098076, 0.0018358899978920817, -0.042766083031892776, -0.00850711390376091, -0.024763934314250946, 0.03999990224838257, 0.01008779089897871, 0.038572899997234344, 0.055587127804756165, -0.020373165607452393, 0.002941814949735999, -0.0297694094479084, 0.015148150734603405, -0.017025204375386238, -0.008353437297046185, 0.004344116430729628, -0.005735441111028194, 0.0035482896491885185, -0.006355637218803167, 0.002006032271310687, 0.014171205461025238, 0.005609206855297089, -0.008408321999013424, 0.02329302579164505, 0.0016479103360325098, -0.007557610049843788, 0.010878128930926323, -0.017134973779320717, 0.02198677323758602, 0.033940639346838, 0.0009591084672138095, 0.021350111812353134, -0.046498239040374756, -0.0005906955921091139, -0.00804059486836195, 0.023227164521813393, -0.013205235823988914, 0.022019702941179276, 0.00553511269390583, -0.0025288083124905825, 0.006794714368879795, 0.00837539043277502, -0.04061460867524147, 0.010751894675195217, 0.028913211077451706, 0.05743125081062317, 0.0072337910532951355, -0.0267617329955101, 0.0029006514232605696, 0.01726669631898403, 0.04423699155449867, 0.042722176760435104, -0.01395166665315628, -0.02515910379588604, 0.02246975712478161, -0.0033067974727600813, -0.03470902517437935, -0.010005463846027851, 0.04096587002277374, -0.019516965374350548, 0.02998894825577736, 0.005216781981289387, 0.03470902517437935, -0.01353454403579235, -0.0076124947518110275, -0.01754111982882023, 0.006443452555686235, 0.07916555553674698, -0.010049371048808098, -0.00946759432554245, 0.005268922075629234, -0.03014262579381466, -0.0012856718385592103, 0.01444562803953886, -0.03688245639204979, 0.028496086597442627, -0.013029605150222778, -0.04362228512763977, -0.018759557977318764, -0.0299230869859457, -0.01009327918291092, 0.018452204763889313, -0.03211846947669983, -0.026278749108314514, 0.00499175488948822, -0.0021693140733987093, 0.019879203289747238, 0.01351258996874094, 0.0009968416998162866, 0.009313917718827724, -0.005167385563254356, -0.027310580015182495, 0.020263396203517914, 0.015400620177388191, 0.031350087374448776, 0.014621258713304996, 0.001933310180902481, 0.031986746937036514, 0.010724452324211597, 0.015257920138537884, -0.01711302064359188, 0.011053759604692459, -0.02485174871981144, 0.008408321999013424, 0.014873728156089783, 0.012019728310406208, -0.0021116852294653654, 0.04965959116816521, -0.06436866521835327, 0.036289699375629425, -2.4355043933610432e-05, 0.029132748022675514, 0.013402820564806461, -0.009138287045061588, 0.026322657242417336, 0.006223914213478565, -0.015411597676575184, 0.0381777323782444, 0.00389680708758533, 0.008841910399496555, -0.02147085778415203, 0.00776617182418704, 0.0270690880715847, -0.029549872502684593, -0.04280999302864075, 0.009291963651776314, -0.009291963651776314, 0.010461005382239819, -0.013007651083171368, -0.008737629279494286, 0.021240342408418655, 0.019780412316322327], [0.01359901949763298, -0.0018756320932880044, 0.008579025976359844, -0.00854607205837965, -0.0017039966769516468, -0.007403666619211435, -0.0027736288029700518, 0.0007950153667479753, 0.030998732894659042, 0.04411442577838898, -0.06072324514389038, 0.051144614815711975, -0.023485220968723297, -0.03420625627040863, -0.06973067671060562, 0.040599334985017776, -0.04007206857204437, 0.004281274508684874, 0.029834358021616936, 0.02304583415389061, 0.01040797308087349, 0.03236083313822746, -0.014906194992363453, 0.02754954807460308, -0.05593392997980118, 0.0024811618495732546, 0.0037430257070809603, 0.02620941773056984, 0.04565228149294853, -0.034711550921201706, 0.07078520208597183, -0.02405642345547676, 0.028538167476654053, -0.01940990798175335, 0.06678678095340729, 0.0031251381151378155, -0.028450291603803635, -0.0014774379087612033, -0.016751619055867195, -0.005437410902231932, -0.01793796382844448, 0.043059900403022766, -0.05382487550377846, -0.02333143539726734, -0.05549454316496849, 0.01566413603723049, 0.02932906337082386, -0.01777319237589836, 0.005997628904879093, 0.03943495824933052, -0.027307884767651558, -0.022826140746474266, -0.015147857367992401, 0.0935014933347702, -0.018421288579702377, -0.011457009240984917, 0.027659393846988678, -0.0032926544081419706, -0.0018152163829654455, -0.045564405620098114, -0.003764995140954852, -0.019168246537446976, 0.026011694222688675, 0.04595985263586044, -0.018586058169603348, 0.010611189529299736, 0.013214555568993092, 0.027637425810098648, -0.026604866608977318, 0.04508107900619507, 0.03743574768304825, 0.0663473978638649, -0.00883716531097889, -0.03710620850324631, -0.03209720179438591, -0.008408763445913792, 0.00531657924875617, -0.009276552125811577, 0.020574282854795456, -0.011336177587509155, -0.0360516794025898, 0.0290214940905571, -0.004341690335422754, 0.0021475027315318584, 0.0011389728169888258, -0.021398134529590607, -0.016817526891827583, -0.018750827759504318, -0.025748062878847122, 0.002455073408782482, -0.02546246163547039, -0.017366761341691017, 0.013335387222468853, 0.057120274752378464, 0.01624632440507412, 0.04477350786328316, -0.011973288841545582, -0.004023134708404541, -0.07610177993774414, -0.0036167020443826914, -0.004852476995438337, -0.02006898820400238, -0.04846435785293579, -0.004069819580763578, 0.02407839335501194, -0.11213149130344391, -0.07333364337682724, 0.0408409982919693, 0.048376478254795074, -0.03976449742913246, -0.048376478254795074, 0.010990160517394543, -0.017015250399708748, 0.08629555255174637, -0.004437806084752083, 0.0007222419371828437, 0.031525999307632446, -0.001741069951094687, 0.023287497460842133, 0.020497391000390053, -0.002368569141253829, 0.015697091817855835, -0.021562904119491577, -0.008375809527933598, -0.013664927333593369, -0.023243557661771774, -0.03512896969914436, -0.015081949532032013, -0.023858699947595596, 0.013225540518760681, 0.023792792111635208, -0.0016696695238351822, 0.004020388703793287, -0.04371897876262665, 0.009996048174798489, -0.013686896301805973, -0.02306780405342579, 0.006700647529214621, -0.031174488365650177, -0.014159237034618855, -0.003023529890924692, 0.0028450291138142347, 0.022167060524225235, 0.006030582822859287, -0.01887165941298008, 0.0282745361328125, -0.003729294752702117, 0.0593172088265419, 0.0190364308655262, 0.03042753040790558, 0.012841077521443367, -0.008798719383776188, 0.01798190176486969, -0.0042318436317145824, 0.006821479182690382, 0.04925525188446045, 0.020178835839033127, 0.01587284542620182, 0.0018976014107465744, 0.052902162075042725, -0.055318787693977356, -0.013500156812369823, -0.006003121379762888, -0.008408763445913792, 0.03389868512749672, -0.00514082470908761, -0.010336573235690594, -0.020003080368041992, -0.05681270360946655, -0.04189552366733551, -0.04683862626552582, -0.03411838039755821, -0.014389915391802788, 0.011643748730421066, 0.006426030769944191, 0.00646447716280818, 0.02829650603234768, 0.03033965453505516, -0.0026404396630823612, 0.0017342044739052653, -0.003841887693852186, -0.01760842278599739, -0.053253673017024994, -0.0676216185092926, -0.008403271436691284, -0.004605322144925594, -0.00968298502266407, 0.01810273341834545, 0.018750827759504318, 0.00829891674220562, 0.010781452059745789, 0.0078046065755188465, -0.0046712299808859825, 0.0052094790153205395, 0.012863046489655972, 0.042400818318128586, -0.0012165519874542952, 0.0006395136588253081, 0.0307790394872427, -0.01624632440507412, -0.00036112096859142184, -0.010924252681434155, 0.02928512543439865, 0.018651966005563736, -0.06309593468904495, 0.029746482148766518, -0.006530385464429855, -0.0038006952963769436, 0.06366713345050812, 0.03482139855623245, 0.004662991501390934, -0.015894815325737, -0.01938793994486332, 0.014719455502927303, -0.028362413868308067, 0.02182653546333313, 0.016334202140569687, -0.000737345835659653, 0.005360518116503954, 0.02860407531261444, 0.03312975913286209, -0.027329854667186737, 0.03816073760390282, -0.03846830874681473, -0.03431610390543938, -0.008419748395681381, 0.0047453767620027065, -0.013313418254256248, 0.008617471903562546, -0.020662160590291023, -0.010666112415492535, 0.02682456001639366, 0.02297992631793022, -0.029746482148766518, -0.02445187233388424, -0.030207837000489235, -0.03864406421780586, -0.035414569079875946, -0.02482534945011139, 0.013456218875944614, -0.03868800029158592, 0.016707681119441986, 0.02581397071480751, 0.008293424732983112, -0.01641109399497509, -0.03833649307489395, -0.019376954063773155, -0.010204756632447243, 0.060547489672899246, 0.029482848942279816, 0.021277302876114845, 0.016092538833618164, 0.051144614815711975, -0.05263853073120117, 0.05540666729211807, -0.02269432507455349, 0.017531530931591988, -0.053605180233716965, 0.0791335478425026, -0.046311359852552414, 0.0037430257070809603, 0.018608028069138527, -0.03912738710641861, 0.04213718697428703, -0.011270269751548767, -0.0035068553406745195, -0.010155325755476952, 0.01166571769863367, -0.027813179418444633, 0.005712027661502361, -0.010748498141765594, -0.017718270421028137, -0.0007318535353988409, 0.015246719121932983, -0.03662288561463356, 0.005173778627067804, -0.01636715605854988, 0.01676260307431221, 0.006316184066236019, -0.011577839963138103, -0.01690540462732315, 0.006870910059660673, 0.005149063188582659, -0.04811284691095352, -0.02201327495276928, -0.04075311869382858, -0.0035672709345817566, 0.0415879525244236, -0.048684049397706985, 0.05558242276310921, 0.019618617370724678, 0.008804211392998695, -0.033722929656505585, -0.0019992096349596977, 0.024979135021567345, 0.015125888399779797, 0.007782637607306242, -0.02684652991592884, 0.007722221780568361, 0.032954003661870956, 0.006343645974993706, -0.02112351730465889, -0.008529595099389553, 0.028560137376189232, -0.022276906296610832, 0.01795993186533451, 0.03515093773603439, 0.05277034640312195, 0.04147810861468315, -0.02140911854803562, 0.020475421100854874, -0.014049390330910683, 0.022848110646009445, -0.006343645974993706, -0.0127531997859478, 0.00181247026193887, -0.006953294854611158, 0.05118855461478233, -0.029790420085191727, 0.014939148910343647, -0.0011273015988990664, -0.005854828283190727, 0.028208628296852112, -0.03233886510133743, 0.032668404281139374, -0.0016559386858716607, 0.010023510083556175, 0.02722000703215599, -0.032624464482069016, 0.00028954900335520506, -0.016564879566431046, -0.0036935945972800255, 0.0016325963661074638, 0.017015250399708748, -0.02265038527548313, -0.011742610484361649, -0.014291053637862206, 0.02370491437613964, -0.025923816487193108, -0.006008613388985395, 0.007980361580848694, -0.03040556237101555, 0.022243952378630638, 0.004676722455769777, 0.0011060187825933099, 0.0013140409719198942, 0.022452661767601967, 0.035085029900074005, 0.027088191360235214, 0.024012485519051552, -0.06072324514389038, 0.017081158235669136, -0.03148205950856209, 0.04393867403268814, -0.05716421455144882, -0.02724197693169117, 0.019959142431616783, -0.024166269227862358, -0.015444443561136723, -0.013434248976409435, -0.010979175567626953, -0.04587197303771973, 0.013313418254256248, 0.04820072278380394, -0.046267423778772354, -0.01393954362720251, -0.05769147723913193, -0.01934400014579296, -0.0004850417608395219, -0.017388729378581047, 0.004594337660819292, -0.042400818318128586, -0.03001011349260807, -0.012313812971115112, -0.008947012014687061, 0.029548756778240204, 0.022892048582434654, 0.002799717243760824, 0.008458194322884083, 0.04365307092666626, 0.0008746542152948678, 0.020156865939497948, 0.015653152018785477, -0.042071279138326645, 0.03304188326001167, 0.03359111398458481, -0.050837043672800064, 0.006991741247475147, 0.007617867551743984, 0.006327169016003609, 0.0018852436915040016, 0.0210576094686985, 0.014719455502927303, 0.011951318942010403, -0.016674727201461792, 0.02267235517501831, -0.02058526873588562, 0.06727010756731033, 0.004446044564247131, -0.06792918592691422, -0.004569621756672859, -0.09077730029821396, -0.017883040010929108, -0.04745376855134964, -0.0054566338658332825, -0.02220001444220543, 0.02234281599521637, -0.026363203302025795, 0.015576259233057499, 0.0033256083261221647, 0.024715503677725792, 0.022804170846939087, 0.044531844556331635, 0.016641773283481598, -0.022331830114126205, 0.04075311869382858, 0.0360516794025898, 0.01185245718806982, -0.020673146471381187, -0.05892176181077957, 0.010671605356037617, 0.02965860441327095, -0.019278092309832573, 0.013796743005514145, -0.003122391877695918, 0.053297609090805054, 0.02306780405342579, -0.004064327105879784, 0.01221495121717453, -0.035063061863183975, -0.02825256623327732, -0.01564216800034046, 0.036117590963840485, 0.050441596657037735, -0.07082913815975189, 0.005486841779202223, -0.015905799344182014, -0.046223483979701996, -0.010424450039863586, 0.015806937590241432, -0.031525999307632446, 0.0017245928756892681, 0.0014815571485087276, -0.000941248785238713, -0.041719768196344376, 0.02368294447660446, 0.01064414344727993, 0.06476560235023499, -0.007848545908927917, 0.016158446669578552, -0.03040556237101555, -0.020475421100854874, -0.03345929831266403, -0.017685316503047943, -0.04191749542951584, -0.022935986518859863, -0.0021694719325751066, 0.0041769202798604965, 0.0633595660328865, -0.015631182119250298, 0.003885826328769326, 0.029878297820687294, 0.002326003508642316, 0.0341842882335186, 0.005876797717064619, 0.033305514603853226, 0.03251461684703827, -0.02825256623327732, 0.011154931038618088, -0.05474758520722389, -0.04044554755091667, 0.005085901357233524, 0.03736983984708786, -0.019003476947546005, 0.013093724846839905, 0.006250276230275631, 0.010270664468407631, -0.037545595318078995, -0.04048948734998703, 0.04609166830778122, -0.012247905135154724, 0.027154099196195602, -0.057032398879528046, -0.03286612778902054, -0.042444758117198944, 0.006881894543766975, 0.050793107599020004, 0.038600124418735504, -0.03868800029158592, -0.03280021995306015, -0.01940990798175335, -0.014950133860111237, -0.013840681873261929, -0.008128654211759567, -0.01744365319609642, -0.03422822803258896, 0.015147857367992401, -0.00039304516394622624, 0.0321631096303463, -0.005657104309648275, 0.04264248162508011, -0.0408409982919693, -0.002117294818162918, 0.00021557410946115851, 0.05035372078418732, 0.030581315979361534, 0.02220001444220543, -0.03354717791080475, -0.044443968683481216, -0.020969731733202934, -0.024913227185606956, 0.0037787258625030518, 0.010171802714467049, 0.011874426156282425, 0.012105104513466358, -0.018608028069138527, 0.014203175902366638, 0.043103836476802826, -0.018080763518810272, 0.017926977947354317, 0.025242768228054047, -0.0076288520358502865, -0.011478978209197521, 0.0053852335549890995, -0.001974494196474552, 0.04077508673071861, -0.03392065688967705, -0.06951098144054413, -0.018860675394535065, 0.009957601316273212, 0.0015351073816418648, -0.016663741320371628, -0.00043252130853943527, 0.05171581730246544, 0.004621799103915691, 0.013401295058429241, 0.0034519319888204336, 0.004391121212393045, -0.028538167476654053, 0.02686849795281887, 0.03218507766723633, -0.024935197085142136, 0.025330644100904465, -0.0517597571015358, 0.008914058096706867, 0.011709656566381454, -0.008480164222419262, 0.022518569603562355, -0.011100007221102715, -0.04639923945069313, -0.02372688427567482, -0.002894459990784526, -0.014071360230445862, -0.010677097365260124, -0.024385962635278702, 0.01306077092885971, 0.03031768463551998, -0.038622092455625534, 0.013522126711905003, 0.016850480809807777, 0.006837956141680479, -0.008798719383776188, -0.013697881251573563, 0.004569621756672859, -0.008815196342766285, 0.03174569085240364, -0.006673186086118221, 0.020354589447379112, 0.016422079876065254, -0.04391670227050781, -0.005269894376397133, -0.0010085297981277108, 0.029592696577310562, -0.00986972451210022, 0.056724827736616135, -0.002439969452098012, 0.020761022344231606, -0.0028834755066782236, -0.025682155042886734, 0.026736682280898094, 0.007304804399609566, 0.018860675394535065, 0.014642562717199326, -0.016356170177459717, 0.008502133190631866, -0.014917179010808468, -0.0042455741204321384, -0.05162794142961502, -0.01046838890761137, 0.025352614000439644, 0.013555080629885197, -0.006777540314942598, 0.02333143539726734, -0.027791211381554604, 0.02511095069348812, 0.040643271058797836, -0.00688738701865077, 0.02370491437613964, -0.02616547979414463, 0.02021178975701332, -0.0035013630986213684, 0.0006069029332138598, 0.004171427804976702, -0.03148205950856209, 0.010847359895706177, -0.04653105512261391, 0.02377082221210003, -0.020299667492508888, -1.5393554349429905e-05, -0.00013413309352472425, -0.022518569603562355, -0.03187750652432442, 0.007101587951183319, 0.008853642269968987, 0.013126678764820099, -0.01222593616694212, -0.027307884767651558, -0.03033965453505516, -0.010358542203903198, 0.005898766685277224, -0.009172198362648487, 0.00962256919592619, -0.001148584415204823, -0.0310426726937294, -0.0021529949735850096, 0.014093329198658466, -0.03743574768304825, -0.029416941106319427, 0.0032075231429189444, -0.02998814359307289, -0.02928512543439865, 0.04330156370997429, -0.00013233092613518238, -0.02337537333369255, 0.006925833411514759, -0.03833649307489395, 0.017872055992484093, 0.010605697520077229, -0.049387067556381226, -0.02754954807460308, -0.0022257682867348194, -0.0030976764392107725, -0.009139243513345718, -0.004830508027225733, 0.03462367504835129, 0.009853247553110123, 0.012094119563698769, 0.05061735212802887, 0.037128180265426636, 0.003375039203092456, 0.023858699947595596, -0.0004287453193683177, -0.028208628296852112, -0.015773983672261238, 0.03725999593734741, 0.003116899635642767, -0.01306077092885971, 0.04811284691095352, 0.027373792603611946, -0.010122371837496758, -0.03003208339214325, 0.0027379286475479603, -0.021540934219956398, -0.005003516562283039, -0.019640587270259857, 0.02647305093705654, 0.04604772850871086, 0.0034931243862956762, 0.005744981579482555, -0.012412674725055695, -0.0663473978638649, -0.018080763518810272, 0.013708866201341152, -0.005009008571505547, -0.0046547530218958855, -0.003383277915418148, 0.0031306303571909666, -0.025572307407855988, -0.0036881023552268744, 0.007354235276579857, -0.00314436131156981, -0.01638912409543991, -0.03315172716975212, 0.03205326199531555, -0.00045963970478624105, 0.006184368394315243, 0.018322426825761795, -0.05057341232895851, -0.013478187844157219, 0.0012110596289858222, 0.012247905135154724, 0.028076812624931335, -0.0037622489035129547, 0.028538167476654053, 0.024605656042695045, 0.01341228000819683, 0.012006242759525776, 0.03317369893193245, 0.0064040618017315865, -0.007908960804343224, -0.0034739014226943254, 0.006134937051683664, -0.030251776799559593, -0.04947494715452194, -0.0038501261733472347, -0.03708424046635628, 0.012061165645718575, 0.004772838205099106, 0.025660185143351555, -0.011292238719761372, -0.01920120045542717, 0.018619012087583542, -0.011347162537276745, -0.04163189232349396, -0.018135687336325645, 0.03042753040790558, -0.025704123079776764, 0.008480164222419262, 0.037501655519008636, -0.0007963884272612631, -0.050441596657037735, -0.007354235276579857, 0.030866917222738266, -0.009408368729054928, 0.03282218798995018, -0.0041769202798604965, -0.02403445355594158, -0.018597044050693512, -0.012665322050452232, 0.012599414214491844, 0.0020980716217309237, -0.021584872156381607, -0.003270684974268079, 0.019146276637911797, 0.004462521523237228, 0.014291053637862206, -0.04461972415447235, 0.015290657989680767, 0.011973288841545582, 0.010605697520077229, 0.02972451224923134, -0.003018037648871541, 0.0006247530109249055, -0.05035372078418732, 0.017476607114076614, 0.013390311039984226, -0.010429942049086094, 0.018179625272750854, -0.004391121212393045, -0.011797533370554447, 0.019937172532081604, 0.005094139836728573, -0.0024907735642045736, -0.02930709533393383, 0.04193946346640587, 0.025989724323153496, 0.0016847734805196524, 0.009265568107366562, 0.009809308685362339, 0.01414825301617384, 0.016312232241034508, -0.007431128062307835, 0.01905839890241623, 0.004462521523237228, -0.013082739897072315, 0.020640190690755844, -0.033327482640743256, 0.02220001444220543, -0.007771652657538652, 0.00610198313370347, 0.012654338032007217, 0.006475462112575769, -0.0017424429534003139, 0.025418521836400032, 0.043125808238983154, -0.007941914722323418, -0.048771925270557404, 0.004275782033801079, -0.030229806900024414, -0.02761545591056347, 0.016147462651133537, -0.04639923945069313, -0.007420143578201532, 0.05909751355648041, 0.05105673894286156, -0.02761545591056347, 0.003968211356550455, 0.0004551771853584796, 0.03106464259326458, -0.01412628311663866, 0.027857119217514992, 0.009891693480312824, -0.0037183102685958147, -0.018135687336325645, -0.006338153500109911, -0.017333805561065674, 0.01359901949763298, -0.03952283784747124, 0.0048332540318369865, 0.008881104178726673, -0.0009309506276622415, 0.011874426156282425, 0.007766160648316145, 0.05971265584230423, 0.014093329198658466, 0.023309465497732162, -0.04264248162508011, -0.0012632368598133326, 0.030119961127638817, -0.0044405520893633366, -0.014785363338887691, 0.05650513246655464, -0.021958351135253906, 0.024913227185606956, 0.00267888605594635, -0.048684049397706985, -0.061997465789318085, 0.005352279637008905, -0.01052880473434925, -0.030888887122273445, 0.015103918500244617, -0.007035680115222931, 0.009309506043791771, -0.011391101405024529, -0.02682456001639366, 0.013016832061111927, -0.04894768074154854, -0.0005282938946038485, -0.009139243513345718, -0.026978345587849617, 0.007458589505404234, 0.0067555708810687065, 0.02579200081527233, -0.0013847547816112638, -0.020244743674993515, 0.028779830783605576, 0.012445629574358463, 0.05039765685796738, -0.014159237034618855, 0.019091352820396423, 0.010331080295145512, 0.020387543365359306, -0.02304583415389061, 0.0034574242308735847, -0.024869289249181747, 0.029438911005854607, -0.0009336968068964779, 0.020881853997707367, -0.04916737601161003, 0.005404456984251738, -0.006656709127128124, -0.007985853590071201, 0.006480954121798277, 0.030141929164528847, 0.012423659674823284, 0.011478978209197521, -0.015005056746304035, 0.005788919981569052, -0.026604866608977318, -0.017410699278116226, -0.02440793253481388, -0.006925833411514759, 0.0055280341766774654, -0.007854037918150425, -0.002566293114796281, -0.01451074704527855, 0.0010462896898388863, 0.01084186788648367, -0.011918365024030209, 0.01022123359143734, 0.039940252900123596, -0.02618744969367981, 0.03763347491621971, 0.014587639831006527, -0.021090563386678696, -0.014719455502927303, 0.005201240535825491, 0.004421329125761986, 0.025660185143351555, -0.026363203302025795, 0.01186344213783741, 0.028494229540228844, 0.04356519505381584, -0.005278132855892181, -0.023287497460842133, -0.0014142760774120688, -0.03042753040790558, 0.05874600633978844, 0.003029022365808487, -0.009413860738277435, 0.028757860884070396, 0.004901908338069916, -0.0027736288029700518, -0.048024971038103104, 0.0027722555678337812, 0.026714712381362915, -0.024649595841765404, 0.01622435450553894, -0.02044246718287468, -0.0007572555914521217, -0.02089283987879753, 0.030449500307440758, -0.005201240535825491, 0.0023067803122103214, 0.0056186579167842865, -0.010858344845473766, 0.02062920667231083, 0.005640627350658178, 0.012192981317639351, -0.015839891508221626, 0.03181159868836403, -0.0275275781750679, -0.015092934481799603, -0.011522917076945305, 0.019212184473872185, 0.009781846776604652, -0.039303142577409744, 0.01967354118824005, 0.024715503677725792, 0.026802590116858482, 0.059492964297533035, -0.002739301649853587, 0.012852061539888382, -0.025352614000439644, -0.0015474651008844376, -0.029394973069429398, -0.006316184066236019, -0.003968211356550455, -0.02515489049255848, -0.010402481071650982, -0.008227516897022724, 0.03003208339214325, -0.009474276565015316, 0.028735892847180367, 0.010781452059745789, 0.0016092539299279451, 0.01582890748977661, 0.0006765869329683483, 0.030537378042936325, -0.01202821172773838, -0.00837031751871109, 0.02131025679409504, 0.006069029215723276, 0.009336967952549458, -0.03414034843444824, -0.02107957750558853, 0.03416231647133827, 0.045564405620098114, 0.05272640660405159, 0.0022793186362832785, -0.009639046154916286, 0.017388729378581047, 0.008353840559720993, 0.014994071796536446, -0.018443258479237556, -0.027132131159305573, 0.04595985263586044, 0.024913227185606956, -0.009617077186703682, 0.00883716531097889, -0.01591678336262703, 0.042466726154088974, 0.030471470206975937, -0.02684652991592884, 0.0658201351761818, 0.004706930369138718, -0.006118460092693567, 0.016422079876065254, 0.005407202988862991, 0.00471791485324502, 0.020826930180191994, 0.019827326759696007, 0.04617954418063164, 0.0550551563501358, 0.007359727751463652, 0.003781472099944949, 0.045520465821027756, -0.01645503379404545, 0.002113175578415394, -0.021738657727837563, 0.01575201377272606, 0.052858222275972366, 0.01310470886528492, 0.029592696577310562, -0.010254187509417534, 0.030537378042936325, -0.029219217598438263, 0.035831987857818604, 0.005915243644267321, 0.013752805069088936, -0.00939189177006483, -0.02368294447660446, 0.01566413603723049, -0.012830092571675777, 0.002058252226561308, 0.03354717791080475, -0.01258843019604683, 0.0002801090304274112, 0.041346292942762375, -0.04688256233930588, 0.049387067556381226, 0.02478141151368618, -0.01973944902420044, 0.004259305074810982, 0.030207837000489235, 0.03589789569377899, 0.0045860991813242435, 0.005396218039095402, 0.005860320292413235, -0.031943414360284805, 0.02719803899526596, 0.014466808177530766, 0.0015062725869938731, 0.007123557385057211, -0.0258798785507679, -0.03444791957736015, 0.0019030937692150474, -0.04565228149294853, -0.0219913050532341, 0.007277342490851879, -0.02128828689455986, 0.0015955230919644237, 0.020189819857478142, 0.07346545904874802, -0.0025580546353012323, -0.04609166830778122, 0.03132827207446098, 0.0035782556515187025, 0.017125098034739494, 0.044202305376529694, -0.0068983715027570724, -0.004871700424700975, 0.030603285878896713, 0.05167188122868538, 0.033986564725637436, 0.009210644289851189, 0.03550244867801666, -0.01605958491563797, -0.025748062878847122, 0.001795993302948773, -0.005464872345328331, 0.015949739143252373, -0.029219217598438263, -0.014884225092828274, 0.008820688351988792, -0.016751619055867195, 0.04771739989519119, 0.00818357802927494, -0.0017232198733836412, -0.027769241482019424, -0.017850086092948914, -0.015762999653816223, -0.027483640238642693, -0.0007064514793455601, -0.007771652657538652, -0.021628811955451965, -0.023617036640644073, -0.022914018481969833, -0.007359727751463652, -0.026714712381362915, 0.005893274676054716, -0.02405642345547676, -0.0010620801476761699, -0.02825256623327732, 0.024495810270309448, 0.008425240404903889, -0.060283858329057693, -0.0003415545215830207, 0.018937567248940468, 0.046926502138376236, -0.028010904788970947, 0.010770467109978199, 0.0016724157612770796, 0.023309465497732162, -0.024188239127397537, 0.0006621695356443524, -0.009397383779287338, 0.03108661063015461, -0.013752805069088936, 0.03317369893193245, -0.010534296743571758, 0.005478603299707174, 0.03108661063015461, -0.015817921608686447, -0.009825785644352436, -0.024935197085142136, -0.029153309762477875, 0.020299667492508888, 0.0005506065208464861, -0.0068269711919128895, -0.019442861899733543, 0.01940990798175335, -0.020826930180191994, 0.035392601042985916, 0.018937567248940468, 0.015653152018785477, 0.0073102968744933605, 0.0195966474711895, 0.022584477439522743, -0.004907400347292423, 0.036447130143642426, 0.011775564402341843, 0.027703333646059036, 0.011830487288534641, 0.007431128062307835, -0.044861383736133575, -0.006997233722358942, 0.03710620850324631, -0.018948553130030632, -0.021903429180383682, 0.0065798163414001465, -0.023924607783555984, 0.03736983984708786, -0.015466412529349327, -0.01777319237589836, -0.02686849795281887, -0.015301642939448357, 0.011929349973797798, -0.010693574324250221, 0.028450291603803635, 0.0038006952963769436, -0.029087401926517487, -0.054308198392391205, -0.0046410225331783295, 0.009600600227713585, 0.00927106011658907, -0.018487196415662766, 0.011786549352109432, -0.019981112331151962, 0.006480954121798277, -0.0014348722761496902, -0.01413726806640625, -0.0226284172385931, -0.016092538833618164, -0.005596688482910395, -0.00776066817343235, -0.003160838270559907, -0.050793107599020004, -0.008150624111294746, -0.004476252477616072, 0.01884969137609005, 0.02039852924644947, -0.010935237631201744, -0.007041172124445438, -0.03167978301644325, -0.00514082470908761, 0.024583688005805016, 0.06173383444547653, 0.015543305315077305, -0.027110161259770393, 0.02025572769343853, 0.03427216410636902, 0.0029850834980607033, 0.0011238688603043556, 0.021134501323103905, -0.004764599725604057, 0.032668404281139374, -0.03205326199531555, 0.022584477439522743, 0.021716689690947533, -0.004693199414759874, 0.012720245867967606, 0.014906194992363453, 0.000655990676023066, 0.004698691889643669, -0.007343250792473555, -0.016718665137887, 0.018739843741059303, -0.010039987042546272, -0.011154931038618088, 0.0065798163414001465, 0.0013360102893784642, -0.00988070946186781, -0.026604866608977318, 0.017015250399708748, -0.027659393846988678, -0.0024495809338986874, -0.02077200822532177, 0.031130550429224968, -0.0015529574593529105, -0.014444838277995586, 0.010501342825591564, -0.026692744344472885, -0.005025485530495644, 0.009001935832202435, 0.02370491437613964, 0.0180258397012949, -0.007030187640339136, 0.023177649825811386, -0.022804170846939087, 0.003946241922676563, 0.0008602368179708719, 0.030976764857769012, -0.022375769913196564, -0.013269479386508465, 0.0011094515211880207, -0.005640627350658178, 0.02482534945011139, -0.02234281599521637, 0.02508898265659809, -0.020365575328469276, 0.002990575972944498, -0.08234107494354248, 0.00985873956233263, -0.034052472561597824, 0.011467993259429932, 0.029175279662013054, -0.029504818841814995, 0.017410699278116226, -0.03422822803258896, -0.004890923388302326, -0.0036908485926687717, -0.024495810270309448, 0.012269874103367329, -0.017926977947354317, 0.018673935905098915, 0.013730835169553757, -0.026714712381362915, -0.039940252900123596, 0.014477793127298355, 0.0087328115478158, -0.026055632159113884, 0.032712340354919434, -0.008738303557038307, 0.010737513191998005, -0.04613560810685158, -0.009787339717149734, -0.016191400587558746, 0.013719850219786167, 0.044443968683481216, 0.031152518466114998, 0.0007510766736231744, -0.00871084164828062, 0.003303638892248273, 0.007974869571626186, 0.03323960676789284, 0.03451382741332054, 0.012160027399659157, 0.009704953990876675, 0.013335387222468853, -0.006689663045108318, 0.011204361915588379, 0.0028312981594353914, 0.006794017273932695, -0.019420893862843513, 0.0010682590072974563, 0.03903951123356819, 0.010979175567626953, -0.01534558180719614, -0.00724988104775548, 0.04846435785293579, -0.0002291333075845614, -0.015477397479116917, 0.0037347872275859118, 0.009704953990876675, -0.002304034074768424, -0.03286612778902054, -0.014609608799219131, -0.025023074820637703, -0.007678282912820578, -0.025945786386728287, 0.018981507048010826, -0.01711411401629448, 0.01028164941817522, -0.020343605428934097, -0.012972893193364143, 0.004404852166771889, 0.003891318803653121, -0.033437330275774, 0.027747271582484245, -0.04666287079453468, 0.018816737458109856, -0.027659393846988678, -0.01346720289438963, 0.03846830874681473, 0.036161527037620544, -0.016334202140569687, -0.006129445042461157, 0.02825256623327732, -0.008397778496146202, 0.04635529965162277, -0.023133711889386177, 0.011929349973797798, 0.012522521428763866, -0.01629026234149933, -0.0006254395702853799, 0.04092887416481972, -0.0015598229365423322, 0.0360516794025898, 0.0026322011835873127, -0.025286706164479256, -0.010171802714467049, -0.0195966474711895, -0.004347182344645262, -0.0003506512148305774, 0.012852061539888382, 0.025638215243816376, -0.00956764630973339, -0.013247509486973286, -0.0038336492143571377, 0.021540934219956398, -0.02075003832578659, -0.01564216800034046, -0.00967200007289648, -0.014291053637862206, 0.004127488937228918, -0.0063765998929739, 0.02445187233388424, 0.008754780516028404, -0.013368341140449047, -0.02724197693169117, -0.007766160648316145, -0.003795202821493149, -0.007447605021297932, 0.01119337696582079, -0.044180337339639664, -0.01255547534674406, -0.00742563558742404, -0.020200805738568306, 0.002199679845944047, 0.005096885841339827, -0.04885980486869812, -0.01676260307431221, -0.0020101943518966436, 0.014532716013491154, -0.015356565825641155, 0.013895605690777302, 0.008194562047719955, 0.012291844002902508, 0.013829696923494339, -0.022606447339057922, -0.026077602058649063, 0.028889676555991173, -0.026692744344472885, -0.01756448484957218, -0.0182894729077816, 0.017872055992484093, 0.029944205656647682, 0.0033942623995244503, 0.03462367504835129, -0.012709260918200016, -0.03767741098999977, -0.018651966005563736, -0.02300189435482025, 0.029109369963407516, 0.012885015457868576, -0.025067012757062912, 0.00837031751871109, -0.010852851904928684, -0.024913227185606956, -0.0024797888472676277, -0.019618617370724678, -0.02684652991592884, -0.017828116193413734, -0.017059190198779106, 0.007799114566296339, 0.0007545094122178853, 0.007057649549096823, 0.03559032455086708, 0.03666682168841362, 0.008441717363893986, 0.022408723831176758, 0.004874446429312229, 0.016147462651133537, 0.009655523113906384, 0.021881459280848503, -0.03003208339214325, -0.03633728250861168, -0.03207523003220558, -0.0035123475827276707, -0.0711367130279541, 0.0011046456638723612, 0.038226645439863205, 0.02126631699502468, -7.526214176323265e-05, 0.00950723048299551, -0.027747271582484245, 0.017740238457918167, 0.009468783624470234, -0.007216927129775286, -0.02996617555618286, 0.031196458265185356, 0.007711237296462059, -0.023551128804683685, 0.022397737950086594, 0.01622435450553894, 0.013049785979092121, 0.040335699915885925, 0.016312232241034508, -0.030844949185848236, 0.03238280117511749, -0.007980361580848694, 0.003981942310929298, -0.04929919168353081, 0.013269479386508465, 0.01601564697921276, -0.024320054799318314, 0.018069779500365257, -0.004954085219651461, 0.0007551959133706987, -0.03453579545021057, 0.026648804545402527, -0.030119961127638817, 0.01293993927538395, 0.000810805824585259, 0.0012886389158666134, -0.03242674097418785, 0.008562549017369747, -0.01413726806640625, -0.023199619725346565, 0.026429111137986183, 0.04215915501117706, 0.008573533967137337, -0.0022834378760308027, 0.016707681119441986, -0.04925525188446045, 0.029460880905389786, 0.02618744969367981, -0.01847621239721775, -0.018882645294070244, -0.0345577672123909, -0.01676260307431221, -0.008139639161527157, 0.01256646029651165, -0.0069148484617471695, 0.02147502638399601, 0.022562509402632713, 0.014928163960576057, -0.005261655896902084, 0.03460170328617096, -0.0168285109102726, -0.01990421861410141, -0.002596501028165221, -0.0008417001808993518, 0.04152204468846321, -0.017498577013611794, -0.0008815196342766285, 0.003910542000085115, 0.01814667135477066, 0.053561244159936905, -0.00891955103725195, 0.0073102968744933605, -0.008364824578166008, 0.006360122933983803, 0.010858344845473766, -0.02011292800307274, -0.022452661767601967, -0.009512722492218018, -0.009589615277945995, 0.02998814359307289, 0.018608028069138527, 0.0008629829972051084, -0.004781076684594154, 0.026319265365600586, -0.024913227185606956, 3.4563086956040934e-05, -0.029878297820687294, -0.021936383098363876, 0.012313812971115112, 0.021211395040154457, 0.015806937590241432, -0.02341931313276291, 0.005948198027908802, -0.025418521836400032, -0.024342024698853493, 0.020848900079727173, 0.009199659340083599, -0.016070568934082985, 0.008881104178726673, -0.03220704570412636, -0.036117590963840485, 0.054615769535303116, 0.016191400587558746, 0.0057614585384726524, -0.03664485365152359, -0.012094119563698769, 0.015949739143252373, 0.008957996964454651, 0.0290214940905571, -0.008425240404903889, -0.028472259640693665, 0.016707681119441986, 0.02308977209031582, -0.0251329205930233, 0.0018962284084409475, -0.012412674725055695, 0.016422079876065254, 0.00878224242478609, -0.004327959381043911, -0.011231822893023491, 0.026758652180433273, -0.0011465247953310609, 0.002820313675329089, -0.006343645974993706, 0.035436540842056274, -0.02961466647684574, 0.026604866608977318, 0.024495810270309448, -0.010331080295145512, 0.010797929018735886, -0.021914413198828697, 0.019629601389169693, -0.04336747154593468, 0.020870869979262352, -0.005920736119151115, 0.014532716013491154, -0.0310426726937294, 0.0007071380387060344, 0.01088031381368637, 0.00029126534354873, 0.023836730048060417, 0.04464169219136238, -0.022210998460650444, -0.009759877808392048, -0.021540934219956398, 0.037216056138277054, 0.03886375576257706, 0.004739884287118912, -0.02213410660624504, 0.004520190879702568, -0.02480338141322136, 0.03688651695847511, -0.027417732402682304, 0.0020513867493718863, 0.008436225354671478, 0.009573138318955898, 0.007156511303037405, 0.0016339693684130907, -0.022540539503097534, -0.012983878143131733, -0.02895558625459671, 0.014818317256867886, -0.046970441937446594, 0.030998732894659042, -0.0005447709118016064, 0.01845424249768257], [0.05384749546647072, 0.022221639752388, -0.04045723006129265, 0.03181680664420128, -0.003481827909126878, 0.004409718792885542, -0.012041694484651089, 0.0212191604077816, 0.036280229687690735, 0.042820218950510025, -0.0038488071877509356, -0.0069517213851213455, 0.02203069068491459, 0.0034161892253905535, -0.03215096518397331, 0.007446994073688984, -0.019273871555924416, 0.022114232182502747, 0.032389651983976364, 0.0051436773501336575, 0.04303503409028053, 0.02044343203306198, 0.012793553993105888, 0.012698080390691757, -0.034728772938251495, -0.018760697916150093, 0.007482797373086214, -0.0274727251380682, 0.020276350900530815, -0.04060044139623642, 0.005101907067000866, -0.02911965735256672, -0.004487291444092989, -0.02217390201985836, 0.021159488707780838, 0.019643833860754967, -0.016147088259458542, 0.002030320465564728, 0.019417082890868187, -0.026279296725988388, -0.05508866161108017, 0.07757285982370377, 0.021338501945137978, -0.05948048084974289, -0.018677156418561935, 0.06702294945716858, -0.0026285264175385237, -0.027997834607958794, -0.012149102985858917, 0.050362687557935715, -0.018820367753505707, 0.03260446712374687, -0.019047120586037636, 0.0006851025973446667, 0.021541384980082512, -0.007172505836933851, -0.009821916930377483, -0.0168631449341774, 0.005397280678153038, 0.02249612845480442, 0.020228615030646324, 0.014440485276281834, -0.026327034458518028, 0.03845226764678955, -0.02391630783677101, -0.041316498070955276, 0.008741864003241062, 0.034991323947906494, -0.03685307502746582, 0.04356014356017113, 0.0036131050437688828, 0.050171736627817154, -0.025682583451271057, -0.03575512021780014, -0.018486209213733673, -0.008300296030938625, 0.061199016869068146, 0.035086799412965775, 0.032532863318920135, 0.023379266262054443, -0.01800883747637272, 0.01056184247136116, -0.02185167744755745, -0.016338037326931953, 0.00646838266402483, 0.011850745417177677, -0.048668015748262405, 0.014905923046171665, -0.014607565477490425, -0.0061103543266654015, -0.007387322839349508, 0.05227217078208923, 0.012202806770801544, 0.06406324356794357, 0.023391200229525566, 0.04384656623005867, -0.006808510050177574, -0.008264493197202682, -0.014882054179906845, 0.10005705058574677, 0.04165065661072731, -0.0029925222042948008, -0.005668785888701677, -0.008330131880939007, 0.028880970552563667, -0.020133139565587044, -0.026637325063347816, -0.0038368727546185255, 0.02506200037896633, -0.03016987442970276, -0.0004896786413155496, -0.02331959456205368, -0.02286609075963497, 0.07618848234415054, 0.027926228940486908, -0.02404758520424366, 0.00942211877554655, -0.030885931104421616, -0.011486750096082687, -0.03141104057431221, -0.003735431469976902, -0.013951179571449757, 0.02257966808974743, -0.10034347325563431, -0.020288284868001938, -0.002955227391794324, -0.05723683536052704, 0.004299326334148645, -0.029477685689926147, -0.03740205243229866, 0.02577805705368519, 0.008145149797201157, 0.03912058845162392, -0.024083388969302177, -0.007220242638140917, 0.04045723006129265, -0.018808433786034584, -0.04589926451444626, -0.01691088266670704, 0.00610438734292984, 0.008079511113464832, -0.03322505205869675, 0.040672045201063156, 0.01453595981001854, -0.04609021171927452, 0.022424522787332535, 0.02771141193807125, 0.0467107929289341, 0.032437387853860855, 0.002929867245256901, -0.029835714027285576, 0.022555800154805183, 0.047761011868715286, 0.00715460442006588, -0.02112368494272232, 0.05279728025197983, -0.014500156976282597, 0.02482331357896328, -0.0030909799970686436, 0.0009167023235931993, -0.03966956585645676, -0.02522907964885235, -0.021457845345139503, -0.043416932225227356, 0.05852573737502098, -0.015860665589571, 0.04389430209994316, -0.02821265161037445, -0.053417861461639404, -0.02532455511391163, -0.02711469680070877, 0.022102296352386475, 0.015657782554626465, 0.02262740582227707, -0.01165979728102684, 0.011027280241250992, -0.015347491018474102, 0.0027105745393782854, -0.0008137691183947027, -0.04468196630477905, 0.010406697168946266, -0.021016277372837067, 0.0017558317631483078, -0.011337571777403355, -0.03296249732375145, 0.012757751159369946, 0.03955022245645523, -0.002482331357896328, -0.03475264087319374, -0.014201800338923931, 0.022794485092163086, 0.0015633914154022932, -0.039478618651628494, 0.016302233561873436, -0.03396497666835785, -0.0061998614110052586, -0.029191263020038605, -0.013652822934091091, 0.04038562253117561, -0.06463608890771866, 0.00676674023270607, -0.04174613207578659, -0.050219472497701645, 0.06387230008840561, 0.012232642620801926, -0.010543941520154476, 0.02551550231873989, -0.0053704287856817245, 0.06072164699435234, 0.004111361224204302, 0.03377402946352959, -0.01787756010890007, -0.03155425190925598, 0.06835959106683731, 0.0075782714411616325, -0.01581292785704136, 0.07222630083560944, 0.025658713653683662, 0.011254031211137772, 0.0029805877711623907, -0.0494556799530983, -0.011206294409930706, 0.0584302619099617, 0.0012806979939341545, -0.026685062795877457, 0.013581217266619205, -0.011289834044873714, -0.003129766322672367, -0.00872993003576994, -0.06726163625717163, -0.01745986007153988, 0.031124617904424667, 0.013712494634091854, -0.04580378904938698, -0.0031536349561065435, 0.041125547140836716, 0.019763177260756493, -0.04088686406612396, -0.0009025303297676146, -0.008103379979729652, -0.018641354516148567, 0.043774958699941635, -0.00845544133335352, -0.010669250972568989, -0.026637325063347816, -0.008348032832145691, -0.0153594259172678, -0.011343538761138916, 0.025109736248850822, 0.019739309325814247, -0.008031774312257767, -0.016147088259458542, 0.042533792555332184, -0.048023566603660583, 0.017018292099237442, -0.005268987268209457, 0.05165158957242966, -0.023785032331943512, 0.027735279873013496, -0.04320211336016655, 0.004466406535357237, -0.005743375048041344, -0.028904840350151062, -0.05556603521108627, -0.0704122856259346, -0.0075663370080292225, 0.06797768920660019, -0.05699814856052399, -0.05284501612186432, 0.03976504132151604, -0.00350271281786263, 0.05327465012669563, 0.041173286736011505, -0.003604154335334897, -0.04530254751443863, 0.027806885540485382, 0.030742719769477844, -0.0011956662638112903, 0.009827883914113045, 0.019739309325814247, -0.0654476210474968, -0.022364851087331772, 0.04026627913117409, 0.014154062606394291, 0.011176458559930325, -0.010925838723778725, -0.01572938822209835, -0.02661345712840557, -0.025396160781383514, 0.01640964299440384, 0.027424989268183708, -0.02440561354160309, -0.03711562976241112, 0.04795195907354355, -0.018856171518564224, 0.008216755464673042, -0.05064911022782326, 0.004815484397113323, -0.04477744176983833, -0.03432300686836243, 0.006402744445949793, 0.056854937225580215, -0.0005098177934996784, 0.03525387868285179, -0.020694050937891006, 0.028427468612790108, -0.010209781117737293, 0.005996978376060724, -0.04148357734084129, 0.021111750975251198, -0.03250899538397789, 0.062153760343790054, -0.027997834607958794, -0.008312229998409748, -0.0057672434486448765, 0.009129728190600872, -0.0212191604077816, -0.009571297094225883, 0.02020474523305893, -0.0167318694293499, 0.01577712595462799, 0.008306263014674187, 0.027281777933239937, -0.0026643292512744665, -7.08132065483369e-05, 0.025396160781383514, 0.016851210966706276, 0.07413578033447266, 0.010012865997850895, -0.005585245788097382, -0.025682583451271057, 0.017209239304065704, 0.013044173829257488, -0.033630818128585815, -0.038189712911844254, -0.01058571133762598, -0.00834206584841013, -0.013843771070241928, -0.03179293870925903, -0.027234040200710297, 0.03470490127801895, -0.018545880913734436, 0.02551550231873989, 0.02285415679216385, -0.03596993535757065, 0.0015164001379162073, 0.010597645305097103, 0.037736210972070694, 0.005113841500133276, -0.015132674016058445, 0.04348853603005409, 0.020192811265587807, -0.007345553021878004, 0.01453595981001854, -0.052415382117033005, -0.008646390400826931, -0.024107256904244423, 0.016254497691988945, 0.02044343203306198, 0.013557348400354385, 0.032437387853860855, 0.0014119751285761595, 0.028427468612790108, 0.0629175528883934, -0.026541851460933685, 0.021815873682498932, -0.04339306429028511, 2.575661346781999e-05, 0.041722264140844345, -0.015514571219682693, 0.014189865440130234, 0.022603537887334824, 0.0399559885263443, -0.04365561902523041, 0.002721017226576805, -0.013163517229259014, 0.01802077144384384, 0.044180724769830704, 0.038332924246788025, 0.02423853427171707, 0.04730750992894173, -0.02666119486093521, -0.012220708653330803, 0.029549291357398033, 0.056759461760520935, 0.07719095796346664, -0.023928243666887283, -0.013294794596731663, -0.010126241482794285, 0.026541851460933685, -0.03986051306128502, -0.034036584198474884, 0.007900496944785118, 0.024071455001831055, 0.00048333857557736337, 0.05222443491220474, 0.007733417209237814, 0.053656548261642456, -0.00936841405928135, -0.054515816271305084, 0.002446528524160385, -0.038332924246788025, -0.00901038572192192, -0.02606447972357273, 0.018414603546261787, 0.0004855762526858598, 0.002471888903528452, -0.03437074273824692, 0.051460638642311096, 0.01787756010890007, 0.02976410835981369, 0.01204766146838665, 0.030742719769477844, -0.02642250806093216, 0.029048051685094833, 0.014368879608809948, 0.03725884109735489, 0.04604247584939003, 0.02312864549458027, -0.056759461760520935, 0.05198574811220169, -0.011970088817179203, -0.04329758882522583, 0.03551643341779709, -0.03814197704195976, -0.0073634544387459755, -0.011987989768385887, -0.014893988147377968, 0.024035651236772537, -0.06659331172704697, -0.02451302297413349, -0.001173289492726326, 0.054849978536367416, 0.049407944083213806, -0.026494113728404045, -0.003010423621162772, -0.024214666336774826, -0.003962182905524969, 0.0019244035938754678, -0.025706451386213303, -0.06100806966423988, -0.025085868313908577, -0.02501426264643669, 0.023236054927110672, -0.01122419536113739, 0.015383293852210045, -0.04659145325422287, -0.031745199114084244, -0.015096871182322502, -0.008962648920714855, -0.013796034269034863, 0.004108377732336521, 0.002876162761822343, 0.017519531771540642, -0.022830288857221603, 0.006695134099572897, -0.04764166846871376, -0.03234191611409187, 0.03155425190925598, 0.030527902767062187, 0.008801535703241825, 0.02642250806093216, 0.06253565847873688, 0.027043091133236885, 0.03090980090200901, 0.09213268756866455, -0.018044639378786087, -0.0006388572510331869, 0.006223729811608791, -0.001472392468713224, 0.010233649984002113, -0.02582579478621483, 0.038332924246788025, 0.006915918551385403, -0.001188207301311195, 0.000557927880436182, 0.015287820249795914, -0.00032726049539633095, -0.05967142805457115, 0.006933819968253374, -0.014368879608809948, 0.017794020473957062, -0.010693119838833809, 0.01440468244254589, 0.06707068532705307, 0.005137709900736809, 0.02806944027543068, 0.02931060642004013, 0.002783672185614705, -0.010925838723778725, -0.057714205235242844, 0.03391724079847336, 0.005257052835077047, -0.010633448138833046, -0.022973500192165375, -0.0654476210474968, -0.008574784733355045, 0.008007905445992947, 0.041865475475788116, 0.006909951567649841, 0.018856171518564224, 0.013628954067826271, 0.018593616783618927, -0.011122753843665123, 0.01952449232339859, 0.02556324005126953, -0.023307660594582558, 0.018999382853507996, 0.04129263013601303, -0.042318977415561676, -0.01533555705100298, 0.010716988705098629, 0.025801924988627434, -0.008533013984560966, -0.028546812012791634, -0.026303166523575783, 0.029978925362229347, 0.031387172639369965, -0.03236578404903412, -0.04936020448803902, 0.0077035813592374325, 0.005092956591397524, -0.01426147110760212, 0.0013612544862553477, -0.011039214208722115, 0.00964886974543333, -0.007196374237537384, -0.05924179404973984, -0.016421576961874962, -0.008085479028522968, -0.012996437028050423, -0.023928243666887283, -0.010376861318945885, -0.011301768943667412, 0.005069087725132704, -0.0034072385169565678, 0.0008764241356402636, 0.02582579478621483, -0.00029164410079829395, -0.02506200037896633, 0.019238067790865898, -0.04160292074084282, 0.013438005931675434, -0.028427468612790108, 0.001272493158467114, 0.0034788441844284534, 0.04461035877466202, -0.029978925362229347, 0.004621552303433418, -0.02926286868751049, 0.001967665273696184, -0.028093308210372925, -0.007960168644785881, 0.007327651605010033, -0.011534486897289753, -0.001257575349882245, 0.03150651603937149, -0.01957222819328308, -0.015968075022101402, -0.027186302468180656, -0.006402744445949793, 0.011206294409930706, 0.008544948883354664, -0.010418631136417389, -0.00766777852550149, 0.029334474354982376, -0.0002832528261933476, 0.009428085759282112, 0.02432207390666008, -0.03904898464679718, -0.02030022069811821, 0.027830753475427628, -0.005755309481173754, -0.031936150044202805, 0.05728457123041153, 0.02102821134030819, 0.022412588819861412, -0.026804406195878983, -0.0006589963450096548, 0.04284408688545227, 0.022376785054802895, 0.04503999277949333, 0.028475206345319748, -0.017674677073955536, -0.004925876390188932, 0.0187368281185627, 0.02537229098379612, -0.042772479355335236, -0.0027001320850104094, 0.03487198427319527, -0.007452961523085833, -0.014440485276281834, -0.01140917744487524, 0.0013060583733022213, -0.02802170254290104, 0.05169932544231415, -0.046973347663879395, 0.034490086138248444, -0.04029014706611633, 0.009732410311698914, -0.029978925362229347, -0.0010987002169713378, 0.022054560482501984, 0.000531075696926564, -0.02428627200424671, -0.05169932544231415, 0.02112368494272232, -0.023164449259638786, 0.011892516165971756, 0.015001397579908371, -0.00238984078168869, -0.01714956946671009, 0.034943588078022, 0.016791539266705513, 0.0024077421985566616, 0.005728457123041153, -0.01745986007153988, -0.023928243666887283, -0.035039063543081284, -0.038476135581731796, 0.021505583077669144, -0.010293321684002876, -0.014177931472659111, -0.01149868406355381, -0.012865159660577774, -0.019488688558340073, 0.04499225690960884, -0.018820367753505707, -0.019178397953510284, -0.022197771817445755, 0.02582579478621483, -0.013569283299148083, -0.00909392535686493, -4.1082378743340087e-07, -0.017531465739011765, -0.02043149806559086, 0.009159564040601254, -3.959642072004499e-06, -0.01440468244254589, 0.021362371742725372, 0.016719933599233627, -0.023856637999415398, -0.01568165235221386, -0.031148485839366913, 0.03480037674307823, 0.010179945267736912, 0.03881029784679413, 0.0544203445315361, 0.02907191962003708, 0.007399257272481918, 0.015383293852210045, -0.01042459812015295, 0.010400730185210705, -0.035588040947914124, 0.009827883914113045, -0.058000627905130386, 0.0053704287856817245, 0.050410423427820206, 0.008348032832145691, 0.03382176533341408, -0.01994219236075878, -0.014965594746172428, -0.014297273941338062, -0.021064015105366707, -0.05084005743265152, 0.026685062795877457, 0.051317427307367325, -0.00702929450199008, -0.004403751343488693, 0.0068741487339138985, -0.046567581593990326, -0.011904450133442879, -0.04215189814567566, -0.029143525287508965, -0.03176906704902649, -0.0014634417602792382, -0.013079977594316006, 0.00912376120686531, -0.008174985647201538, 0.03205548971891403, -0.04184160754084587, -0.0324612557888031, -0.00461856834590435, 0.02802170254290104, -0.010329124517738819, -0.02701922319829464, 0.017268911004066467, -0.008467375300824642, -0.007649877108633518, -0.0047766980715096, 0.020145073533058167, 0.0029686535708606243, 0.011844778433442116, 0.03771234303712845, -0.0057672434486448765, 0.003207339206710458, -0.03217483311891556, -0.01760307140648365, -0.016719933599233627, 0.03482424467802048, 0.014130194671452045, 0.010991477407515049, -0.015431031584739685, -0.07513826340436935, -0.03506293147802353, -0.035635776817798615, 0.0020437464118003845, -0.0003000354045070708, 0.024751707911491394, 0.015598111785948277, -0.007882595993578434, -0.0032371750567108393, -0.03456168994307518, -0.010347025468945503, -0.020216679200530052, -0.02335539646446705, -0.019536426290869713, 0.0156100457534194, 0.017030226066708565, 0.02044343203306198, -0.036829207092523575, 0.023438937962055206, -0.025085868313908577, 0.009046188555657864, 0.02971637062728405, -0.027043091133236885, 0.007912431843578815, 0.026088347658514977, -0.036280229687690735, 0.03305797278881073, 0.02030022069811821, -0.054515816271305084, 0.023928243666887283, 0.02057470940053463, -0.018486209213733673, 0.01965576782822609, -0.05427713319659233, 0.0007291102665476501, 0.018080443143844604, -0.006635462865233421, -0.02070598490536213, -0.018223654478788376, 0.014512091875076294, -0.016039680689573288, 0.003529564943164587, 0.017435992136597633, -0.014643368311226368, 0.01695862039923668, -0.03570738434791565, 0.03169746324419975, -0.0029268835205584764, 0.008336098864674568, -0.02811717800796032, 0.019631899893283844, -0.010203814134001732, 0.008061610162258148, -0.010806495323777199, 0.018175916746258736, 0.017794020473957062, 0.00421578623354435, 0.012363919988274574, 0.0007600648095831275, 0.013199320062994957, 0.05337012559175491, 0.026756668463349342, 0.015037200413644314, -0.014177931472659111, 0.008586718700826168, -0.021135620772838593, -0.020682116970419884, 0.04150744527578354, 0.019596097990870476, 0.01755533367395401, -0.007524567190557718, -0.024584628641605377, 0.030289217829704285, -0.004326178692281246, -0.02203069068491459, -0.009213268756866455, -0.012232642620801926, -0.016970554366707802, -0.00285229436121881, -0.028737759217619896, 0.04083912447094917, 0.023200251162052155, -0.03484811261296272, 0.0025957070756703615, 0.017567269504070282, 0.021064015105366707, -0.007518600206822157, 0.006820444483309984, -0.007458928506821394, -0.004943777807056904, -0.035277750343084335, -0.0001306244812440127, -0.013426071032881737, -0.029429947957396507, -0.028785496950149536, 0.0103589603677392, 0.005295839160680771, -0.00028213398763909936, 0.005961175542324781, -0.013927311636507511, -0.000683983729686588, 0.048309989273548126, -0.005522590596228838, -0.07146250456571579, -0.0402185432612896, 0.009983030147850513, -0.046925611793994904, -0.000560538494028151, 0.020133139565587044, -0.012059595435857773, 0.04649597778916359, -0.022376785054802895, -0.04468196630477905, -0.014154062606394291, 0.0574277825653553, -0.04881122708320618, -0.02916739508509636, 0.03866708651185036, -0.008037741295993328, 0.0069517213851213455, 0.00217651529237628, 0.043727222830057144, -0.024011783301830292, -0.012662277556955814, 0.008533013984560966, -0.008759765885770321, 0.04346466809511185, 0.015538440085947514, 0.0168631449341774, -0.008222722448408604, -0.020503103733062744, 0.0023972997441887856, 0.01682734303176403, -0.019464820623397827, -0.007608107291162014, -0.014321142807602882, 0.022006822749972343, 0.020467299968004227, -0.01778208650648594, -0.013115780428051949, 0.03200775384902954, -0.013724428601562977, 0.025587107986211777, 0.002771737752482295, 0.025539372116327286, -0.017316648736596107, 0.02857067994773388, -0.0026315099094063044, -0.002042254665866494, 0.0070770313031971455, -0.025706451386213303, 0.03090980090200901, 0.020133139565587044, -0.007208308670669794, -0.022519996389746666, -0.03661438822746277, 0.011755271814763546, -0.0037175300531089306, -0.0034072385169565678, 0.013831837102770805, -0.0057016052305698395, 0.019452884793281555, -0.015073003247380257, 0.006098419893532991, 0.014201800338923931, 0.011194360442459583, 0.00390251143835485, 0.012113300152122974, 0.007673745509237051, 0.0038428399711847305, -0.02935834228992462, -0.04150744527578354, -0.014965594746172428, 0.02852294221520424, 0.055709246546030045, -0.003147667972370982, 0.016159022226929665, 0.014512091875076294, 0.003213306423276663, -0.006933819968253374, -0.026756668463349342, -0.03100527450442314, -0.009869654662907124, -0.049216993153095245, 0.038189712911844254, 0.020228615030646324, 0.02135043777525425, 0.031029142439365387, 0.04155518114566803, -0.011110819876194, -0.01605161465704441, 0.021040145307779312, -0.010341058485209942, -0.0011367406696081161, 0.011236130259931087, -0.016946686431765556, 0.0274727251380682, -0.028188783675432205, -0.002504708245396614, 0.015025265514850616, -0.0035116635262966156, -0.012328117154538631, 0.021469779312610626, 0.0012158052995800972, -0.00410241074860096, 0.0031745200976729393, -2.7714580937754363e-05, 0.029525423422455788, -0.02396404556930065, -0.019691571593284607, -0.022484194487333298, 0.06568630784749985, 0.00155742431525141, -0.00951162539422512, 0.0414358414709568, 0.026804406195878983, 0.027902359142899513, 0.016290299594402313, 0.0382135845720768, -0.01952449232339859, 0.008348032832145691, -0.01933354325592518, -0.037974897772073746, -0.03799876570701599, 0.02189941518008709, 0.00930874329060316, -0.015383293852210045, 0.024703972041606903, 0.05289275571703911, -0.020610511302947998, 0.03305797278881073, -0.0059850444085896015, 0.0030313085298985243, -0.002882129978388548, 0.006635462865233421, 0.02716243453323841, -0.002956719370558858, 0.01458369754254818, 0.0023033171892166138, -0.013342531397938728, -0.028308125212788582, -0.035039063543081284, 0.005534525029361248, 0.04604247584939003, 0.01915452815592289, -0.0058060297742486, 0.022746749222278595, 0.0036280229687690735, -0.032437387853860855, 0.021911349147558212, 0.012077497318387032, 0.0011792565928772092, 0.009738377295434475, 0.04477744176983833, -0.011558355763554573, 0.021744268015027046, 0.005439050495624542, 0.001020381459966302, 0.047761011868715286, 0.04783261567354202, 0.010269452817738056, 0.04835772514343262, 0.03205548971891403, -0.02527681738138199, -0.01243552565574646, -0.0382135845720768, 0.016170958057045937, 0.012053628452122211, 0.0064624156802892685, 0.049216993153095245, 0.012996437028050423, -0.0078050228767097, -0.024381745606660843, 0.025443896651268005, -0.04714042693376541, 0.022758683189749718, 0.011122753843665123, 0.01547876838594675, 0.03081432543694973, 0.009326644241809845, -0.020324088633060455, -0.005814980715513229, 0.029692502692341805, -0.0009047680650837719, 0.030384691432118416, 0.005257052835077047, -0.008783634752035141, -0.016767671331763268, -0.013640888966619968, 0.005570327863097191, -0.01177317276597023, -0.030098268762230873, 0.006695134099572897, -0.009523560293018818, -0.01658865623176098, 0.015645848587155342, -0.0003613850858528167, 0.00818691961467266, 0.021971020847558975, -0.005263019818812609, 0.07819344103336334, -0.0020899916999042034, -0.019739309325814247, 0.015538440085947514, -0.017591137439012527, -0.013521545566618443, 0.012721948325634003, 0.003723497036844492, -0.0005340593052096665, 0.00831819698214531, -0.007190407253801823, -0.004472373519092798, -0.024656234309077263, 0.003854774171486497, -0.021481715142726898, -0.003598187118768692, 0.004299326334148645, 0.004287392366677523, -0.0038219550624489784, 0.026327034458518028, 0.04348853603005409, 0.02857067994773388, -0.012507131323218346, 0.02962089702486992, -0.00917149893939495, 0.033988844603300095, 0.03537322208285332, 0.029549291357398033, -0.0058060297742486, -0.013318662531673908, 0.05489771440625191, -0.010907936841249466, 0.013867639936506748, 0.00461856834590435, -0.03336826339364052, -0.008676225319504738, 0.027424989268183708, -0.02482331357896328, 0.0004195647197775543, -0.026756668463349342, 0.005809013731777668, -0.021935217082500458, 0.0013321646256372333, 0.00311484863050282, 0.0208491962403059, -0.008652357384562492, 0.0073037827387452126, -0.009440019726753235, 0.03444235026836395, -0.028045572340488434, 0.020885000005364418, -0.00983385182917118, -0.03988438472151756, 0.011075017042458057, -0.01837879978120327, 0.022161968052387238, -0.0017767167882993817, 0.03236578404903412, -0.008879108354449272, 0.0008346540853381157, 0.001257575349882245, 0.04458649083971977, -0.025849662721157074, -0.02921513095498085, 0.02281835488975048, -0.0008905960712581873, 0.002540511079132557, 0.005856750532984734, 0.019512556493282318, 0.014106325805187225, 0.029835714027285576, 0.007470862939953804, 0.007536501623690128, -0.025706451386213303, -0.004385849926620722, -0.0022704978473484516, 0.007781154476106167, 0.024584628641605377, 0.012805488891899586, 0.0004769984807353467, 0.0026538867969065905, -0.034633297473192215, -0.03324891999363899, 0.0074410270899534225, -0.011510618962347507, 0.0232241190969944, 0.013270925730466843, 0.0018229621928185225, 0.0129845030605793, -0.021517517045140266, 0.03274767845869064, -0.014070522971451283, -0.010639416053891182, -0.024310139939188957, 0.01582486368715763, 0.020491167902946472, 0.011450947262346745, 0.021863611415028572, 0.036089278757572174, -0.04675853252410889, -0.012698080390691757, 0.012578736990690231, -0.0003871184017043561, -0.032986365258693695, -0.03871482238173485, -0.009875621646642685, 0.029406080022454262, 0.0004150893655605614, 0.03964569792151451, -0.007476829923689365, -0.01188654825091362, 0.03592219948768616, -0.00648031709715724, -0.005182463675737381, -0.013998917303979397, 0.022209705784916878, 0.016946686431765556, 0.007810989860445261, 0.00477968156337738, -0.025658713653683662, -0.015800993889570236, 0.008688160218298435, -0.004317227751016617, -0.029406080022454262, -0.004171032924205065, -0.013414137065410614, 0.020455366000533104, -0.003854774171486497, -0.02582579478621483, 0.010394763201475143, -0.02047923393547535, -0.00596714299172163, 0.007924365811049938, 0.010603613220155239, 0.00952952727675438, 0.02207842841744423, 0.020932737737894058, 0.01581292785704136, 0.0018080442678183317, 0.01750759780406952, 0.016898948699235916, -0.031148485839366913, -0.010925838723778725, -0.025539372116327286, 0.07179666310548782, -0.007524567190557718, -0.013163517229259014, 0.019357411190867424, 0.03840453177690506, -0.03637570142745972, 0.01768661104142666, -0.00741715868934989, 0.023785032331943512, -0.001467171241529286, -0.0208491962403059, 0.013199320062994957, 0.016433510929346085, -0.0034072385169565678, -0.02286609075963497, 0.017221175134181976, -0.011737369932234287, -0.008282394148409367, 0.05403844639658928, 0.014655303210020065, -0.00753053417429328, -0.029477685689926147, 0.02826038934290409, -0.03384563326835632, -0.016791539266705513, -0.024847183376550674, -0.016982488334178925, 0.017626939341425896, -0.031243959441781044, 0.027783017605543137, 0.014046654105186462, 0.0014201799640432, -0.02349860779941082, 0.011719468981027603, 0.016946686431765556, -0.024429483339190483, -0.04188934341073036, 0.0103589603677392, 0.026685062795877457, 0.005647900514304638, -0.0064624156802892685, -0.010543941520154476, -0.019918322563171387, 0.004027821589261293, -0.0139869824051857, 0.023808900266885757, 0.00042366713751107454, 0.00784082617610693, -0.0030014729127287865, -0.017579203471541405, 0.0027001320850104094, -0.013772165402770042, 0.007065097335726023, -0.0034788441844284534, 0.0070770313031971455, -0.00966677162796259, -0.02112368494272232, -0.050362687557935715, 0.01677960529923439, 0.008348032832145691, -0.0011516585946083069, 0.005832882132381201, -0.03680533543229103, -0.004928859882056713, -0.028141045942902565, -0.006832378450781107, 0.019954126328229904, -0.01508493721485138, -0.004896040540188551, 0.003150651464238763, 0.0015275885816663504, 0.0016752753872424364, -0.0033803863916546106, -0.01220877468585968, 0.010770692490041256, -0.005585245788097382, -0.024429483339190483, 0.02075372263789177, -0.02802170254290104, 0.012566803023219109, -0.02601674199104309, 0.004072574898600578, -0.007053162902593613, 0.021433977410197258, -0.026780536398291588, -0.0014082457637414336, -0.015514571219682693, 0.01378410030156374, 0.01663639396429062, 0.0337262898683548, -0.02692374773323536, -0.007643910124897957, -0.0071009001694619656, -0.028141045942902565, 0.03549256548285484, -0.018080443143844604, -0.011242097243666649, -0.043369192630052567, -0.027902359142899513, -0.009105860255658627, 0.03131556510925293, -0.017770150676369667, -0.013115780428051949, -0.022006822749972343, -0.011206294409930706, -0.018116245046257973, -0.0006183451623655856, -0.016266431659460068, -0.02577805705368519, -0.009070057421922684, -0.057905156165361404, 0.01506106834858656, 0.0069517213851213455, -0.037425920367240906, -0.03377402946352959, -0.012721948325634003, 0.03391724079847336, -0.013306728564202785, 0.021815873682498932, 0.01003673393279314, 0.021911349147558212, -0.039430879056453705, 0.005161578767001629, 0.021648794412612915, -0.009451954625546932, -0.029835714027285576, 0.008222722448408604, 0.014237603172659874, -0.002130270004272461, -0.010537974536418915, 0.01581292785704136, -0.007620041258633137, -0.011218228377401829, 0.03036082349717617, 0.0016916850581765175, 0.004734927788376808, -0.02976410835981369, -0.017340516671538353, 0.025133606046438217, -0.012214741669595242, 0.013175451196730137, -0.002151154913008213, -0.02711469680070877, -0.02656571939587593, -0.019178397953510284, 0.01952449232339859, 0.005173512734472752, 0.014082456938922405, 0.01837879978120327, 0.021923283115029335, -0.03334439545869827, -0.011761238798499107, 0.022114232182502747, 0.003914445638656616, -0.03160198777914047, -0.033439867198467255, 0.0034072385169565678, -0.024489155039191246, 0.01824752241373062, -0.03377402946352959, -0.03310570865869522, 0.011540453881025314, -0.006748838350176811, 0.0129845030605793, -0.011349505744874477, 0.01765080913901329, 0.036972418427467346, 0.0153594259172678, -0.007912431843578815, -0.010132208466529846, 0.002198892179876566, -0.01605161465704441, 0.02308090776205063, 0.018868105486035347, -0.012853225693106651, 0.00043933090637438, 0.014882054179906845, 0.006790608633309603, -0.05074458196759224, -0.009959161281585693, 0.0327238105237484, -0.003741398686543107, -0.016266431659460068, -0.009929325431585312, 0.006665298715233803, -0.0028493106365203857, 0.024990394711494446, -0.025706451386213303, 0.025181343778967857, 0.011808975599706173, 0.04239058122038841, -0.0012172971619293094, 0.013545414432883263, -0.02399984933435917, -0.032294176518917084, -0.0030700950883328915, 0.013473808765411377, -0.001525350846350193, 0.009076024405658245, -0.03026534803211689, -0.0021123685874044895, 0.0018229621928185225, 0.00516754575073719, 0.0012903946917504072, 0.0063251713290810585, -0.01856974884867668, 0.025157473981380463, 0.00856881681829691, 0.017245043069124222, -0.0023421035148203373, 0.025181343778967857, 0.010281386785209179, 0.01988252066075802, 0.016266431659460068, 0.029787976294755936, -0.030193742364645004, 0.026804406195878983, 0.01608741655945778, 0.004248605575412512, -0.02666119486093521, -0.00856881681829691, -0.02098047360777855, 0.03551643341779709, -0.020085403695702553, -0.0074887643568217754, 0.026971485465765, -0.010991477407515049, 0.012698080390691757, -0.01019784715026617, 0.0027329514268785715, -0.011039214208722115, -0.0002136983093805611, 0.018414603546261787, -0.033678553998470306, -0.020491167902946472, -0.009451954625546932, -0.018211720511317253, 0.01017397828400135, -0.01750759780406952, 0.006014879792928696, -0.018772631883621216, -0.03386950120329857, -0.013891508802771568, -0.010394763201475143, -0.0022913827560842037, 0.033583078533411026, -0.006307269912213087, -0.015049134381115437, 0.020013798028230667, -0.028880970552563667, -0.023987913504242897, 0.02556324005126953, -0.0113614397123456, -0.012244577519595623, -0.01124806422740221, -0.017817888408899307, 0.022985434159636497, -0.012638408690690994, -0.023761162534356117, -0.024608496576547623, -0.00257780565880239, -0.0031924215145409107, -0.005439050495624542, 0.017674677073955536, -0.008640422485768795, 0.034728772938251495, -0.017543399706482887, 0.0014902938855811954, -0.028451336547732353, 0.011218228377401829, -0.009690639562904835, -0.0014597122790291905, -0.021362371742725372, 0.011982022784650326, -0.001331418752670288, 0.020097337663173676, -0.03511066734790802, -0.005656851455569267, -0.0018229621928185225, -0.011015345342457294, 0.021612990647554398, -0.016481248661875725, 0.003275961382314563, -0.02907191962003708, 0.004621552303433418, 0.021923283115029335, 0.0344662182033062, 0.030742719769477844, 0.023928243666887283, -0.0188442375510931, 0.011904450133442879, 0.006098419893532991, -0.00030656196759082377, 0.030384691432118416, -0.0028746710158884525, -0.022782551124691963, 0.012698080390691757, 0.013270925730466843, -0.0332011841237545, 0.02175620198249817, -0.0061879269778728485, 0.014798514544963837, 0.008950714021921158, 0.0058358656242489815, 0.005450984928756952, -0.014476289041340351, 0.014595631510019302, 0.02203069068491459, -0.0014902938855811954, -0.011450947262346745, -0.0227228794246912, 0.024429483339190483, 0.010788594372570515, -0.03148264437913895, -0.020145073533058167, -0.002392824273556471, -0.009016352705657482, 0.003866708604618907, 0.020419562235474586, 0.011898483149707317, -0.007602139841765165, 0.010006899014115334, 0.00845544133335352, -0.04019467532634735, 0.012948700226843357, -0.00964290276169777, -0.00927890744060278, -0.0029030148871243, -0.004236671607941389, -0.010800528340041637, 0.011958153918385506, -0.003050701692700386, 0.04936020448803902, -0.04508773237466812, -0.02368955686688423, -0.004839352797716856, 0.012507131323218346, -0.026398640125989914, 0.030838193371891975, 0.002955227391794324, -0.021863611415028572, 0.011564322747290134, 0.01458369754254818, 0.050362687557935715, -0.011367406696081161, 0.006593693047761917, 0.016218693926930428, 0.03685307502746582, -0.03955022245645523, 0.03444235026836395, -0.00436496501788497, 0.009977063164114952, 0.002283924026414752, 0.04093459993600845, 0.009726442396640778, 0.00662949588149786, 0.02911965735256672, -0.013473808765411377, 0.029143525287508965, -0.031983885914087296, 0.007423125673085451, 0.03415592387318611, -0.015383293852210045, 0.002525593154132366, 0.012900962494313717, -0.03081432543694973, 0.007375388406217098, 0.004206835757941008, 0.038285188376903534, 0.01668413169682026, -0.012220708653330803, -0.014870120212435722, 0.018593616783618927, -0.0036548750940710306, 0.009845785796642303, 0.0038786428049206734, 0.0012560836039483547, -0.00025677360827103257, -0.0414358414709568, 0.01520427968353033, -0.019464820623397827, -0.028284257277846336, 0.02098047360777855, -0.0354686975479126, 0.021362371742725372, 0.021839743480086327, -0.031076880171895027, -0.0013843771303072572, -0.02044343203306198], [0.0369986817240715, 0.025994762778282166, 0.002006278606131673, 0.018556296825408936, -0.026814930140972137, 0.055498022586107254, -0.0012573058484122157, 0.031849849969148636, 0.04027935117483139, 0.029867777600884438, -0.017121002078056335, -0.01148234959691763, -0.007466944400221109, 0.028341354802250862, -0.02314695715904236, -0.018317081034183502, -0.02069784514605999, 0.042922113090753555, 0.00614556297659874, -0.014546587131917477, 0.026427628472447395, 0.04875442013144493, 0.0003527718363329768, 0.04431184381246567, -0.06064685061573982, -0.0265871062874794, 0.02881978452205658, -0.03262445330619812, 0.03904910013079643, -0.054996807128190994, 0.0661146342754364, -0.039003536105155945, 0.03453817591071129, 0.035449475049972534, 0.021176276728510857, -0.01011540275067091, -0.022304007783532143, -0.006823340430855751, -0.021062364801764488, -0.042056381702423096, -0.0048070945776999, 0.03768215328454971, -0.04449410364031792, -0.024194950237870216, -0.017565259709954262, 0.034264788031578064, -0.0017101068515330553, -0.046658433973789215, -0.0053908945992589, 0.009232583455741405, -0.028614742681384087, 0.019342290237545967, 0.01861325278878212, 0.040985606610774994, 0.029480475932359695, 0.022907741367816925, -0.014295980334281921, 0.0049551804549992085, 0.024513904005289078, 0.024308862164616585, 0.031530894339084625, 0.011556392535567284, -0.026063110679388046, 0.008725673891603947, 0.014740237966179848, -0.05098709836602211, 0.04319550469517708, 0.04506366327404976, 0.005581697449088097, -0.012894860468804836, 0.025994762778282166, 0.040621086955070496, -0.022372355684638023, -0.05130605399608612, -0.03061959706246853, 0.008890846744179726, 0.05003023520112038, -0.027042753994464874, 0.017986735329031944, -0.014398501254618168, 0.01291764248162508, -0.001123458961956203, 0.010343227535486221, 0.0016773570096120238, -0.0002598621940705925, 0.013544159941375256, -0.06233275309205055, 0.014387110248208046, -0.02238374575972557, -0.005032071378082037, -0.031849849969148636, 0.07613891363143921, -0.00731316301971674, 0.0398920513689518, 0.02540241926908493, 0.043924540281295776, 0.001194654149003327, -0.019125858321785927, -0.019308116286993027, 0.027976835146546364, 0.024923987686634064, -0.039687007665634155, -0.036269642412662506, -0.02335199899971485, 0.026883278042078018, -0.07199250906705856, -0.021643316373229027, 0.047660861164331436, -0.00878832582384348, -0.019889069721102715, 0.002533122431486845, -0.04219307750463486, -0.014375719241797924, 0.07755142450332642, 0.040051527321338654, 0.026063110679388046, 0.03326236084103584, -0.06119363009929657, -0.00513743981719017, -0.0037163852248340845, -0.002325232606381178, -0.04494975134730339, -0.000519724388141185, -0.09295234829187393, -0.005470633041113615, -0.0071422946639359, -0.08352041989564896, -0.0021159190218895674, -0.022155921906232834, 0.01746273972094059, 0.004693182185292244, -0.01854490488767624, 0.043491676449775696, -0.021768620237708092, 0.05417663976550102, 0.01279233954846859, -0.0012786643346771598, -0.059052079916000366, 0.009397756308317184, 0.03567729890346527, 0.001963561400771141, 0.015161712653934956, 0.048162076622247696, 0.002531698439270258, -0.03608738258481026, -0.025698591023683548, -0.005180157255381346, 0.06347187608480453, -0.03355853259563446, -0.01667674444615841, -0.010200836695730686, -0.007068251725286245, 0.014364327304065228, 0.007586552295833826, -0.013213814236223698, 0.013589724898338318, -0.00662968959659338, 0.025106247514486313, 0.005849391222000122, 0.057548440992832184, -0.019706809893250465, -0.009705319069325924, 0.013008772395551205, -0.053948815912008286, -0.0070910342037677765, 0.020424457266926765, 0.0037391677033156157, -0.017007090151309967, -0.04121343046426773, -0.0032180193811655045, -0.03456095978617668, -0.012405037879943848, 0.03535834327340126, -0.008492154069244862, -0.0038018194027245045, -0.0022298311814665794, -0.008469372056424618, 0.012701209634542465, 0.032282717525959015, -0.031781502068042755, 0.018271515145897865, -0.023762084543704987, -0.03574564680457115, 0.01114061288535595, -0.02881978452205658, 0.01976376585662365, 0.04157795011997223, -0.015571797266602516, -0.016391964629292488, -0.009916056878864765, -0.021335754543542862, -0.0032180193811655045, -0.026678236201405525, -0.01792977936565876, 0.00923827849328518, -0.0352216511964798, -0.012336690910160542, -0.03025507926940918, 0.06237831711769104, -0.01612996682524681, -0.008275721222162247, -0.060419026762247086, 0.003232258604839444, -0.00307278148829937, 0.005108961835503578, 0.008218765258789062, -0.015526232309639454, -0.025539113208651543, 0.028159094974398613, 0.00019187085854355246, 0.008195982314646244, -0.003032912267372012, -0.04406123608350754, 0.01478580292314291, 0.00547917652875185, 0.05253630504012108, 0.08926159888505936, 0.012974599376320839, 0.022987481206655502, -0.011619043536484241, -0.015457884408533573, 0.005453546065837145, 0.05763956904411316, -0.004266011528670788, -0.005234265234321356, 0.05987225100398064, 0.04747860133647919, 0.027316143736243248, 0.007563769817352295, -0.053447600454092026, -0.030414555221796036, 0.013851722702383995, 0.003685059491544962, -0.004798551090061665, -0.048891112208366394, -0.004271707497537136, 0.011903824284672737, -0.022953307256102562, -0.0002160771982744336, 0.03148533031344414, 0.004228990059345961, 0.016824830323457718, 0.0015719883376732469, 0.024741727858781815, 0.009511668235063553, -0.000266981718596071, -0.0021614839788526297, 0.03444704785943031, 0.02626815252006054, 0.025447983294725418, -0.02170027233660221, 0.009705319069325924, 0.036201294511556625, -0.06451986730098724, -0.009261061437427998, 0.004243229050189257, 0.036520250141620636, -0.044471319764852524, 0.03150811418890953, -0.02993612550199032, 0.001557749230414629, 0.003662277013063431, -0.06939531117677689, -0.0235342588275671, -0.05331090837717056, -0.0009511668467894197, 0.04415236786007881, -0.061968233436346054, -0.015617362223565578, 0.038069456815719604, -0.0023651018273085356, 0.025630243122577667, 0.048891112208366394, -0.0195815060287714, -0.059234339743852615, 0.009676841087639332, 0.016289444640278816, -0.01771334558725357, -0.0028762829024344683, 0.0477975569665432, -0.039003536105155945, -0.020561151206493378, 0.046977389603853226, -0.013236597180366516, 0.0066923415288329124, 0.008839585818350315, 0.009836317971348763, -0.05827748030424118, -0.024491121992468834, 0.05558915063738823, 0.04356002435088158, 0.02181418426334858, 0.0005841559614054859, 0.0804675742983818, -0.020356109365820885, -0.03820614889264107, 0.013532768934965134, 0.017599433660507202, -0.021871142089366913, -0.030984116718173027, 0.015856577083468437, 0.011026700027287006, -0.015617362223565578, 0.02458225190639496, -0.031098028644919395, 0.06903079152107239, -0.01475162897258997, 0.027111101895570755, -0.016950134187936783, -0.026678236201405525, -0.019319508224725723, 0.00424038153141737, -0.03319401293992996, -0.008304199203848839, -0.0001510226575192064, -0.010702050291001797, -0.026040326803922653, 0.034014180302619934, 0.03093855269253254, -0.003756254678592086, 0.012006345205008984, 0.014592152088880539, 0.03335348889231682, -0.024741727858781815, 0.015138930641114712, -0.01481997687369585, 0.003351866267621517, 0.06602350622415543, -0.0067265150137245655, -0.022269833832979202, -0.001842529745772481, -0.02827300690114498, 0.04128177836537361, -0.03820614889264107, -0.043104372918605804, -0.024559469893574715, -0.005687066353857517, 0.05508793890476227, -0.03132585436105728, 0.00034227053401991725, 0.05877869203686714, -0.009819230996072292, 0.0022013531997799873, 0.01986628584563732, 0.005883564706891775, -0.024172168225049973, -0.039800919592380524, -0.019000554457306862, 0.04034769907593727, 0.031166376546025276, 0.0285691786557436, 0.016403356567025185, -0.04333220049738884, 0.0022540376521646976, -0.06739045679569244, -0.02483285777270794, 0.017872823402285576, 0.015332581475377083, 0.007273293565958738, 0.007005599793046713, 0.010559660382568836, -0.01696152612566948, 0.06319848448038101, 0.0470685176551342, 0.031963761895895004, 0.02813631109893322, -0.06657028943300247, -0.02938934601843357, 0.00815611332654953, -0.015605970285832882, -0.018339863047003746, 0.027612315490841866, 0.035586170852184296, -0.022736873477697372, 0.031098028644919395, 0.03255610540509224, -0.0021942337043583393, 0.024696163833141327, -0.0034657784271985292, 0.035130519419908524, 0.03695311397314072, 8.725852239876986e-05, 0.017770301550626755, 0.01058244239538908, 0.04128177836537361, 0.048207640647888184, -0.012097475118935108, -0.022930525243282318, 0.02478729374706745, 0.021552186459302902, -0.04260316118597984, -0.03223714977502823, 0.01444406621158123, 0.007432770449668169, 0.0011683119228109717, 0.024354426190257072, 0.013339118100702763, 0.058231912553310394, -0.004516618326306343, -0.04752416908740997, 0.03312566503882408, -0.07158242166042328, 0.015070583671331406, 0.019706809893250465, -0.017383001744747162, -0.021552186459302902, -0.006635385099798441, -0.052445173263549805, 0.00023957158555276692, 0.021859750151634216, 0.03658859804272652, 0.04157795011997223, 0.03695311397314072, -0.013236597180366516, 0.022474875673651695, -0.01818038709461689, 0.034082528203725815, 0.039436399936676025, 0.0161755308508873, -0.022212877869606018, 0.005436459556221962, 0.010844441130757332, -0.022326789796352386, 0.040689434856176376, 0.007347336504608393, 0.0337863564491272, -0.012051910161972046, 0.007199250627309084, 0.07203806936740875, -0.05340203642845154, 0.012837904505431652, -0.02738449163734913, 0.01692735217511654, 0.02925265207886696, -0.02932099811732769, -0.017804475501179695, -0.0043913149274885654, -0.03667972609400749, -0.0027993922121822834, 0.003394583472982049, -0.0467039979994297, -0.03836562857031822, 0.02663267031311989, -0.0059746946208179, -0.01581101305782795, -0.004456814378499985, -0.04583826661109924, -0.012940425425767899, -0.038752928376197815, 0.007728942204266787, -0.008224460296332836, -0.023192523047327995, 0.010593834333121777, -0.005544675979763269, -0.0208459310233593, -0.05121492221951485, 0.0011441055685281754, -0.014432675205171108, -0.012940425425767899, 0.021495230495929718, 0.03955031558871269, 0.07240258902311325, 0.03939083591103554, 0.07695908099412918, 0.039071884006261826, 0.059735555201768875, -0.024992335587739944, -0.018909424543380737, 0.0017371609574183822, 0.012860686518251896, -0.039618659764528275, -0.02041306532919407, 0.06506664305925369, -0.02073201909661293, -0.006851818412542343, -0.02126740664243698, 0.018260125070810318, -0.028865350410342216, -0.06739045679569244, 0.03155367821455002, -0.015366755425930023, 0.0004428336687851697, -0.005783891770988703, 0.008082070387899876, 0.06283396482467651, 0.03000447154045105, 0.027156667783856392, 0.027475621551275253, -0.036816421896219254, -0.015731273218989372, 0.0183284729719162, 0.029412128031253815, 0.04907337203621864, -0.009517364203929901, -0.009779362007975578, -0.024946769699454308, 0.04424349591135979, 0.011032395996153355, 0.026359282433986664, -0.012587297707796097, 0.009750884026288986, 0.035449475049972534, 0.007842854596674442, 0.012393646873533726, 0.02777179330587387, 0.011744347400963306, -0.056318189948797226, -0.007227728608995676, 0.0499391071498394, -0.050394754856824875, -0.014193459413945675, 0.027225013822317123, 0.03155367821455002, -0.0026057413779199123, -0.020002981647849083, -0.01099252700805664, 0.03506217151880264, 0.0026769365649670362, -0.009050323627889156, -0.0028919458854943514, 0.03579121083021164, -0.0034458439331501722, 0.04082613065838814, -0.010252097621560097, -0.03399140015244484, -0.009061714634299278, 0.0018382580019533634, -0.06857514381408691, 0.001707258983515203, 0.00348571315407753, -0.01667674444615841, -0.021723056212067604, 0.015492058359086514, 0.009881882928311825, 0.01097544003278017, -0.0015264233807101846, -0.015070583671331406, 0.01736021786928177, -0.05003023520112038, -0.004647617693990469, 0.021859750151634216, -0.030801856890320778, 0.0059746946208179, -0.04207916557788849, 0.034014180302619934, 0.02403547242283821, 0.002105951774865389, -0.01829429902136326, 0.011881042271852493, -0.02396712638437748, -0.02802239917218685, -0.004835572559386492, 0.002703990787267685, 0.028865350410342216, -0.008907933719456196, 0.020242197439074516, 0.0002497168898116797, -0.02802239917218685, -0.014933888800442219, 0.019216986373066902, -0.0036451902706176043, 0.03431035205721855, 0.0018980619497597218, -0.0503036268055439, -0.05221734941005707, 0.037499893456697464, 0.003437300445511937, 0.008042200468480587, 0.054632287472486496, -0.008868064731359482, -0.05121492221951485, -0.003237954108044505, -0.0025302746798843145, 0.037499893456697464, 0.027042753994464874, 0.002837837440893054, 0.013885896652936935, -0.05299195274710655, 0.00439416291192174, 0.013213814236223698, 0.022110356017947197, -0.006196823436766863, 0.03560895100235939, -0.0067322105169296265, -0.00647590821608901, 0.017701955512166023, 0.015719883143901825, -0.025174595415592194, -0.008059287443757057, -0.009813535958528519, -0.027111101895570755, 0.007666290737688541, -0.006470212712883949, 0.003300605807453394, 0.04618000239133835, 0.037363201379776, -0.020253587514162064, 0.03549503907561302, -0.025539113208651543, 0.03572286292910576, -0.005430764053016901, 7.889309199526906e-05, 0.01757665164768696, 0.025675809010863304, 0.0003412026271689683, -0.035130519419908524, 0.045405399054288864, -0.0285691786557436, 0.047706425189971924, 0.0109583530575037, -0.020059937611222267, 0.020367499440908432, 0.01176712941378355, 0.02465059794485569, -0.04116786643862724, 0.014694673009216785, 0.009705319069325924, -0.030710726976394653, -0.01570849120616913, 0.003947057295590639, -0.006253779400140047, 0.007427074946463108, -0.005630110390484333, -0.02453668601810932, -0.03898075222969055, -0.01207469217479229, 0.03310288488864899, -0.0362924262881279, -0.023921560496091843, -0.01512753963470459, -0.038251716643571854, 0.019627071917057037, 0.004453966859728098, -0.022588787600398064, -0.030801856890320778, 0.009916056878864765, 0.004038187209516764, 0.009557233192026615, -0.01656283251941204, -0.012803730554878712, 0.062287189066410065, -0.013874505646526814, -0.0013747777557000518, -0.03939083591103554, 0.008754151873290539, 0.014375719241797924, 0.012997381389141083, 0.015970489010214806, 0.051397182047367096, 0.004234686028212309, 0.006282257381826639, -0.003038607770577073, 0.016232486814260483, -0.039937615394592285, 0.020025763660669327, -0.012131649069488049, -0.0219167061150074, 0.03964144363999367, 0.017155176028609276, 0.00678347097709775, -0.02314695715904236, 0.022190095856785774, -0.005191548261791468, 0.006578429136425257, -0.02888813242316246, 0.03563173487782478, 0.01706404611468315, -0.020071327686309814, 0.018009517341852188, -0.021620534360408783, -0.03155367821455002, -0.03082463890314102, -0.038069456815719604, -0.016221096739172935, -0.010143880732357502, 0.005185852758586407, -0.036019034683704376, 0.009192714467644691, 0.018339863047003746, 0.0366569459438324, -0.010497008450329304, 0.004838420543819666, 0.008309894241392612, 0.0330573171377182, -0.0014352936996147037, 0.00237079756334424, 0.019091684371232986, -0.022258441895246506, -0.025880850851535797, -0.014865540899336338, 0.010593834333121777, 0.01803230121731758, 0.026860496029257774, 0.01792977936565876, -0.02565302699804306, 0.004368532449007034, -0.03690754994750023, 0.006504386197775602, 0.000736869522370398, -0.02433164417743683, -0.0039043405558913946, 0.023329216986894608, 0.00045742865768261254, -0.057183921337127686, -0.037203721702098846, -0.025174595415592194, 0.002242646412923932, 0.024308862164616585, 0.009329408407211304, -0.00864023994654417, -0.031211940571665764, 0.008241547271609306, -0.02478729374706745, 0.005707000847905874, 0.043104372918605804, -0.003699298482388258, -0.019456202164292336, -0.023158349096775055, 0.060783546417951584, -0.002071778057143092, -0.06237831711769104, -0.010024272836744785, -0.0032123238779604435, -0.03392305225133896, -0.0018823989666998386, -0.02651875838637352, -0.011305784806609154, -0.0006008868222124875, -0.018237343057990074, 0.0035626038443297148, -0.01180130336433649, -0.010320444591343403, 0.023090001195669174, 0.012815121561288834, 0.0014979453990235925, 0.026746584102511406, -0.04071221873164177, 0.017132394015789032, 0.0009504548506811261, 0.006510081700980663, -0.003286366816610098, 0.003890101332217455, 0.025493549183011055, -0.019319508224725723, 0.026131456717848778, 0.008173200301826, -0.019068900495767593, 0.01717795804142952, 0.018203169107437134, 0.017941171303391457, 0.02806796506047249, 0.00666386354714632, -0.014227633364498615, -0.025129029527306557, -0.0007212065975181758, -0.009420538321137428, 0.02152940444648266, 0.039436399936676025, 0.027612315490841866, 0.011994954198598862, 0.007751724682748318, -0.006282257381826639, -0.004297337494790554, 0.015514841303229332, 0.000316818302962929, 0.024126602336764336, -0.04663565382361412, 0.002517459448426962, 0.01947898603975773, 0.004923854488879442, 0.0019607136491686106, 0.0195815060287714, -0.006709428038448095, 0.02396712638437748, -0.0065271686762571335, 0.013464421033859253, -0.035517822951078415, -0.0055389804765582085, -0.0011562088038772345, 0.013077120296657085, -0.017884215340018272, 0.014273198321461678, 0.00033230322878807783, 0.043742284178733826, 0.01047422643750906, -0.014728846959769726, -0.01901194453239441, 0.03565451502799988, 0.012769556604325771, -0.00035348377423360944, 0.019752373918890953, 0.01609579287469387, -0.011203263886272907, -0.04219307750463486, -0.011647521518170834, -0.04201081767678261, -0.01595909893512726, -0.030482903122901917, 0.009853404946625233, 0.0037334722001105547, 0.04481305554509163, 0.017770301550626755, -0.008771238848567009, 0.03456095978617668, 0.058550868183374405, 0.020891496911644936, -0.056318189948797226, 0.004479596856981516, 0.01896638050675392, -0.04574713855981827, -0.01901194453239441, 0.024422774091362953, -0.014090938493609428, 0.05331090837717056, 0.021939488127827644, -0.018282907083630562, -0.00031646230490878224, 0.016369182616472244, -0.035517822951078415, -0.04185134172439575, -0.007717551197856665, -0.026245368644595146, -0.010656485334038734, -0.008725673891603947, 0.049529023468494415, -0.01620970480144024, 0.007022686768323183, 0.01559457927942276, -0.003827449632808566, 0.01918281428515911, 0.033649660646915436, 0.003693602979183197, 0.007147990167140961, -0.03838840872049332, 0.007068251725286245, 0.00901615060865879, -0.0030756292399019003, 0.0006286529242061079, -0.004172034095972776, 0.009580015204846859, 0.030915768817067146, -0.011778520420193672, -0.025311289355158806, -0.0055389804765582085, -0.017291871830821037, 0.06702593713998795, 0.026792148128151894, -0.011778520420193672, -0.035130519419908524, 0.04089447855949402, -0.006977121811360121, -0.045291487127542496, 0.001002427306957543, -0.015605970285832882, 0.03442426398396492, -0.02763509750366211, -0.0034686264116317034, -0.01559457927942276, -0.05932547152042389, 0.045656006783246994, -0.029708299785852432, 0.013225206173956394, -0.007210642099380493, 0.0051545267924666405, -0.001977800391614437, -0.01546927634626627, 0.004257468041032553, 0.007711855694651604, 0.017018482089042664, 0.020868714898824692, 0.02515181340277195, -0.03000447154045105, 0.00391573179513216, -0.036132946610450745, -0.022554613649845123, 0.0034686264116317034, 0.03143976628780365, 0.04064387083053589, 0.004117925651371479, 0.011385523714125156, -0.019342290237545967, -0.02004854567348957, -0.004881137516349554, -0.025197377428412437, -0.015514841303229332, -0.005319699645042419, -0.04474471136927605, 0.0075011178851127625, -0.016050228849053383, 0.004080904182046652, 0.03014116734266281, 0.06301622837781906, 0.017633607611060143, -0.014797193929553032, -0.00779728963971138, -0.003910036291927099, -0.023921560496091843, -0.012017736211419106, -0.02173444628715515, 0.011414001695811749, -0.0362924262881279, -0.005037766881287098, -0.002434873254969716, -0.011134916916489601, -0.02378486655652523, -0.016084400936961174, 0.0043998584151268005, -0.007569465320557356, -0.0023665258195251226, 0.014022591523826122, -0.00013126600242685527, 0.0004058121994603425, 0.012279734946787357, -0.005521893501281738, 0.03866180032491684, -0.010246401652693748, -0.030391773208975792, 0.020777584984898567, -0.0008144722087308764, 0.001984919887036085, 0.062104929238557816, -0.0028349896892905235, -0.026108674705028534, -0.04305880889296532, 0.003451539436355233, -0.032715581357479095, -0.0384567566215992, 0.0003568655520211905, -0.019171422347426414, -0.02195088006556034, -0.03428757190704346, 0.03914022818207741, -0.023739300668239594, 0.03335348889231682, -0.01799812726676464, 0.0010152424219995737, -0.024445556104183197, -0.0036451902706176043, -0.0021515164989978075, -0.030346209183335304, 0.033148448914289474, -0.058368608355522156, -0.006749297492206097, -0.016073010861873627, -0.015321190468966961, 0.03118915855884552, 0.03148533031344414, 0.01824873313307762, 0.02023080550134182, 0.009950229898095131, 0.009898969903588295, -0.037704937160015106, 0.021107928827404976, -0.008321286179125309, -0.0018510731169953942, -0.0017912692856043577, 0.03727206960320473, 0.045974962413311005, 0.011869650334119797, 0.001119899214245379, 0.019570114091038704, 0.0005585257313214242, 0.05554358661174774, -0.04362836852669716, 0.05659157782793045, 0.01911446638405323, -0.033148448914289474, -0.008275721222162247, 0.013509985990822315, 0.03435591608285904, -0.022543223574757576, 0.0009355039219371974, 0.025539113208651543, 0.042238641530275345, -8.347628318006173e-05, -0.006811949424445629, 0.01893220655620098, -0.00662968959659338, 0.018157603219151497, 0.011271611787378788, 0.02249765768647194, 0.031849849969148636, -0.005299764685332775, -0.004528009798377752, -0.015719883143901825, 0.010696355253458023, -0.007671986240893602, -0.004388467408716679, -0.01896638050675392, -0.005604479927569628, -0.01782725751399994, -0.028500830754637718, -0.004416945390403271, 0.015514841303229332, -0.03679363802075386, 0.005715544335544109, 0.02316974103450775, 0.003038607770577073, 0.01939924620091915, 0.007216337602585554, 0.02619980461895466, 0.027999617159366608, -0.009978707879781723, 0.049027808010578156, -0.0013327726628631353, -0.025129029527306557, -0.010969744063913822, -0.02026497945189476, -0.013077120296657085, 0.02863752469420433, 0.0029788038227707148, -0.011038091965019703, 0.008167504332959652, 0.02831857092678547, -0.018841076642274857, -0.02324947901070118, 0.03007281944155693, -0.018567686900496483, -0.02501511760056019, -0.0038673190865665674, 0.004901072010397911, 0.016004662960767746, 0.034469831734895706, -0.011903824284672737, -0.011596261523663998, -0.02576693892478943, 0.02957160584628582, 0.029047610238194466, 0.009232583455741405, 0.015719883143901825, -0.002839261433109641, -0.017542477697134018, -0.0033176925498992205, 0.019991589710116386, 0.013612506911158562, 0.03353574872016907, 0.02508346550166607, -0.02645041234791279, -0.01619831472635269, -0.004772921092808247, 0.010861528106033802, 0.031211940571665764, -0.019034728407859802, 0.006077215541154146, -0.005362416617572308, 0.009876186959445477, 0.008833890780806541, 0.014352936297655106, -0.02151801437139511, 0.0048042465932667255, -0.010713442228734493, 0.0265871062874794, -0.026814930140972137, -0.01717795804142952, -0.02291913330554962, -0.010269184596836567, -0.007444161921739578, -0.007256206590682268, 0.024764511734247208, -0.01732604391872883, 0.012131649069488049, -0.010138185694813728, -0.00882249977439642, 0.014421284198760986, 0.04807094484567642, -0.0219167061150074, -0.033034536987543106, 0.02806796506047249, -0.0019080291967839003, 0.021574970334768295, -0.0019592896569520235, 0.002419210271909833, -0.007324554026126862, 0.022486267611384392, 0.00891362875699997, 0.013783375732600689, -0.0391630120575428, -0.02913874015212059, -0.044676363468170166, 0.0040011657401919365, 0.008099157363176346, -0.008839585818350315, 0.015867969021201134, 0.000761787814553827, -0.028546396642923355, -0.023989908397197723, 0.005296917166560888, -0.014569370076060295, -0.0021529404912143946, -7.924906822154298e-05, -0.0020020068623125553, -0.01462632603943348, -0.008942107670009136, 0.02615424059331417, -0.017701955512166023, -0.008902237750589848, -0.002533122431486845, 0.004342902451753616, 0.018282907083630562, -0.015138930641114712, 0.023272261023521423, -0.014876932837069035, -0.02802239917218685, 0.004730203654617071, 0.02806796506047249, -0.006470212712883949, -0.03182706609368324, 0.009642667137086391, -0.030733510851860046, 0.03977813944220543, 0.014899714849889278, 0.005254199728369713, 0.015002235770225525, -0.009910360909998417, 0.014022591523826122, 0.006766384467482567, -0.014125112444162369, -0.012735383585095406, 0.03380914032459259, -0.01261007972061634, -0.005145983304828405, -0.018727164715528488, -0.0066866460256278515, 0.0035796905867755413, -0.002654154086485505, -0.016756484284996986, 0.00043962986092083156, 0.0055389804765582085, 0.005268439184874296, 0.003286366816610098, -0.0061284760013222694, -0.010269184596836567, 0.007438466418534517, -0.03169037401676178, -0.031143594533205032, -0.009682536125183105, 0.014865540899336338, -0.05094153434038162, -0.005459242034703493, -0.0006350604817271233, 0.013544159941375256, 0.0391630120575428, -0.005672827363014221, 0.030232297256588936, 0.0017884214175865054, 0.0059177386574447155, -0.01528701651841402, 0.06834731996059418, 0.023557040840387344, 0.008475067093968391, 0.007062556222081184, 0.025288507342338562, -0.024491121992468834, -0.011419697664678097, 0.023579824715852737, 0.005866478197276592, -0.004940941464155912, -0.0012302517425268888, 0.016642572358250618, -0.027976835146546364, 0.025288507342338562, -0.008429502137005329, -0.02565302699804306, -0.03349018469452858, -0.003949905280023813, 0.023853212594985962, 0.02260017953813076, -0.005459242034703493, -0.004733051639050245, 0.0323510617017746, -0.01226834300905466, 0.006453125737607479, -0.024308862164616585, -0.005100418347865343, 0.02626815252006054, 0.003010129788890481, 0.02453668601810932, 0.006424647755920887, 0.01659700646996498, -0.005020679906010628, -0.018066473305225372, 0.01991185173392296, -0.015788229182362556, -0.027862923219799995, 0.007444161921739578, 0.022042009979486465, 0.010280575603246689, -0.020492803305387497, -0.008873759768903255, -0.010508399456739426, 0.0036110165528953075, 0.015355363488197327, -0.0019023336935788393, -0.011892433278262615, -0.008668717928230762, 0.006390474271029234, 0.016038836911320686, 0.03456095978617668, 0.0076605952344834805, -0.016335008665919304, -0.001970680896192789, -0.0031553676817566156, -0.005396590102463961, 0.0057582613080739975, -0.007267598062753677, 0.030733510851860046, 0.020242197439074516, -0.007449857424944639, 0.006447430234402418, 0.007871332578361034, 0.0377277173101902, -0.020424457266926765, -0.002995890798047185, -0.00431157648563385, 0.010986831039190292, -0.012086084112524986, 0.008395329117774963, 0.026382064446806908, 0.005251352209597826, -0.009477494284510612, 0.03326236084103584, 0.024855641648173332, 0.0011526490561664104, 0.0055332849733531475, 0.00982492696493864, -0.023739300668239594, -0.003323388285934925, -0.009118671528995037, 0.004303032997995615, 0.038684580475091934, 0.023260870948433876, -0.007916897535324097, 0.0031639111693948507, -0.026382064446806908, 0.002938934601843357, 0.00028656036010943353, 0.015207277610898018, 0.0074954223819077015, -0.03257888928055763, -0.008645935915410519, 0.010946962051093578, 0.037249285727739334, -0.013646680861711502, -0.026359282433986664, -0.018920814618468285, -0.004471053835004568, -0.008560501039028168, 0.017838649451732635, -0.015549014322459698, 0.003215171629562974, 0.027338925749063492, -0.021768620237708092, -0.013612506911158562, 0.010451443493366241, -0.004012557212263346, 0.002239798428490758, -0.00522002624347806, -0.022224269807338715, -0.0021928097121417522, -0.021688882261514664, -0.018260125070810318, -0.02802239917218685, -0.006020259577780962, -0.003807515138760209, -0.015719883143901825, 0.009044628590345383, -0.012803730554878712, 0.007147990167140961, -0.03904910013079643, -0.0038189063780009747, -0.017838649451732635, -0.020709237083792686, -0.03624685853719711, -0.019991589710116386, 0.03599625453352928, 0.030209513381123543, -0.028227441012859344, 0.0084465891122818, -0.0004446135426405817, 0.005032071378082037, 0.013897287659347057, 0.014808584935963154, -0.01241642888635397, 0.017189349979162216, -0.004217599052935839, 0.027225013822317123, 0.023044437170028687, -0.028751438483595848, 0.0020618108101189137, -0.0380922369658947, -0.04761529713869095, -0.0022241356782615185, -0.00030827487353235483, -0.017451347783207893, -0.006760688498616219, 0.03187263011932373, 0.018191777169704437, -0.03267001733183861, -0.005487720016390085, -0.004505227319896221, 0.01543510239571333, -0.013339118100702763, -0.05403994396328926, -0.0003670108562801033, 0.02026497945189476, 0.017109612002968788, 0.007438466418534517, -0.002825022442266345, 0.02540241926908493, -0.009796448983252048, 0.011243133805692196, -0.005635805893689394, -0.011812694370746613, 0.016585616394877434, 0.014022591523826122, -0.0008187438943423331, -0.01656283251941204, -0.009477494284510612, -0.028865350410342216, 0.027065537869930267, 0.03431035205721855, -0.012929034419357777, -0.005197243764996529, 0.025949198752641678, -2.9968696253490634e-05, -0.058049652725458145, 0.0038957970682531595, 0.030209513381123543, 0.012803730554878712, -0.00923827849328518, -0.03904910013079643, 0.023853212594985962, 0.00029812956927344203, -0.021574970334768295, -0.01248477678745985, 0.01229112595319748, 0.008383937180042267, 0.02770344540476799, -0.03112081065773964, 0.018852468580007553, -0.0038815580774098635, 0.0009483190369792283, -0.024946769699454308, -0.012496167793869972, 0.011675999499857426, -0.004593509249389172, -0.005034918896853924, -0.008475067093968391, -0.020435847342014313, -0.028842568397521973, -0.009523059241473675, -0.013863113708794117, -0.011152003891766071, 0.0015691404696553946, -0.0409628264605999, 0.00508333183825016, 0.025561897084116936, 0.03977813944220543, 0.003431604942306876, 0.03852510452270508, 0.007016991265118122, 0.03214602172374725, -0.023921560496091843, 0.04052995890378952, -0.012496167793869972, 0.028660308569669724, -0.022121747955679893, -0.004752986133098602, 0.005860782228410244, 0.01063370332121849, -0.01882968656718731, -0.01954733207821846, 0.030300643295049667, -0.01871577277779579, -0.02428608015179634, -0.005906347185373306, -0.0423981174826622, 0.010121098719537258, 0.02663267031311989, 0.007580856326967478, 3.813388684648089e-05, -0.016414746642112732, -0.009602798148989677, 0.0037021462339907885, 0.012199996039271355, -0.02881978452205658, -0.022155921906232834, 0.005715544335544109, -0.012860686518251896, -0.01574266515672207, 0.005314003676176071, 0.03608738258481026, 0.009369278326630592, -0.007119512185454369, 0.013623898848891258, 0.018522122874855995, -0.015970489010214806, 0.045040883123874664, -0.00662968959659338, -0.02198505401611328, -0.015207277610898018, 0.00783146359026432, -0.03187263011932373, 0.02478729374706745, -0.023579824715852737, 0.007649203762412071, -0.028660308569669724, 0.010576747357845306, -0.003670820500701666, 0.04613443836569786, 0.020504195243120193, 0.01681344024837017, 0.009608493186533451, 0.01525284256786108, -0.024741727858781815, -0.020743411034345627, 0.004459662362933159, -0.009995794855058193, -0.03964144363999367, -0.04046161100268364, -0.0021458209957927465, -0.026427628472447395, -0.008560501039028168, -0.006401865277439356, 0.0179639533162117, -0.026792148128151894, -0.01612996682524681, 0.037385981529951096, -0.0019336595432832837, 0.038001108914613724, -0.00896488968282938, 0.031029682606458664, 0.006253779400140047, 0.030300643295049667, 0.01332772709429264, 0.017736129462718964, -0.021677490323781967, 0.00882249977439642, 0.003200932638719678, -0.0036252555437386036, 0.0015719883376732469, -0.019923243671655655, -0.012564514763653278, 0.014421284198760986, -0.02813631109893322, -0.016471702605485916, 0.023420346900820732, -0.026541540399193764, 0.011567783541977406, 0.023762084543704987, 0.023557040840387344, -0.01115769986063242, -0.02291913330554962, 0.015150321647524834, -0.004291641991585493, 0.020492803305387497, -0.013749201782047749, 0.008731369860470295, 0.0024605034850537777, 0.00549626350402832, -0.025288507342338562, -0.02676936611533165, 0.014375719241797924, -0.03487991541624069, 0.017599433660507202, 0.008577588014304638, 0.060419026762247086, -0.015651535242795944, 0.010821658186614513, -0.024946769699454308, -0.01413650345057249, 0.08771239221096039, -0.0031895413994789124, -0.015343972481787205, -0.03695311397314072, 0.00406951317563653, -0.004445423372089863, 0.0037534066941589117, -0.011630435474216938, 0.021335754543542862, -0.0041606430895626545, -0.022155921906232834, -0.003371800994500518, -0.02758953347802162, -0.02015106752514839, -0.007461248897016048, -0.004029643721878529, -0.007558074314147234, 0.027407273650169373, 0.009380669333040714, 0.028432482853531837, -0.014398501254618168, 0.020777584984898567, 0.0035027998965233564, 0.016915960237383842, -0.01764499954879284, -0.000982492696493864, 0.00045671669067814946, -0.02645041234791279, 0.017485521733760834, 0.03813780099153519, -0.0019037575693801045, -0.0014495326904579997, 0.030027253553271294, -0.012199996039271355, 0.029412128031253815, -0.03759102523326874, 0.006447430234402418, -0.015195886604487896, -0.009739493019878864, 0.006350604817271233, 0.06310735642910004, 0.005416525062173605, -0.0075011178851127625, 0.006259474903345108, 0.03581399470567703, 0.036315206438302994, -0.0028976413886994123, -0.010553964413702488, -0.011488044634461403, -0.010303357616066933, 0.032966189086437225, -0.022076183930039406, -0.016016054898500443, -0.00826432928442955, -0.018624642863869667, 0.028774220496416092, -0.005576001945883036, -0.013031555339694023, 0.03225993365049362, -0.024422774091362953, 0.03007281944155693, 0.010998222045600414, 0.005741174798458815, -0.031895413994789124, -0.015025018714368343], [0.006785502657294273, -0.025151774287223816, 0.027489300817251205, 0.038869708776474, -0.02957303822040558, -0.01125351618975401, -0.036999691277742386, 0.07148820906877518, 0.019207781180739403, -0.010732581838965416, -0.014559444971382618, -0.0006428195047192276, 0.008869240060448647, 0.0044479770585894585, 0.005897243041545153, 0.03480909392237663, 0.03566396236419678, 0.01158076897263527, -0.012181847356259823, 0.06096266582608223, -0.007333151530474424, 0.03953757509589195, 0.019341353327035904, -0.0279434472322464, 0.00824812613427639, -0.01489337719976902, 0.025672709569334984, -0.02728894166648388, 0.04797938093543053, -0.04426605626940727, 0.05214685574173927, -0.044372912496328354, 0.044746916741132736, -0.020423294976353645, -0.018112484365701675, -0.0020119415130466223, 0.005686865653842688, 0.046162791550159454, 0.0037934700958430767, -0.03606468066573143, -0.0283441673964262, 0.016669895499944687, 0.03112248331308365, 0.017711764201521873, 0.03745383769273758, 0.05663490295410156, 0.04279675334692001, -0.04552163928747177, -0.0358242467045784, 0.036545541137456894, 0.026995081454515457, -0.011033120565116405, -0.0015536196297034621, -0.024043120443820953, -0.009109671227633953, -0.008688916452229023, -0.04696422815322876, -0.002572947647422552, 0.03750726580619812, -0.024938058108091354, -0.011079871095716953, -0.02671457827091217, 0.043037183582782745, 0.04902125149965286, -0.031897205859422684, 0.021184660494327545, 0.03432823345065117, 0.049582257866859436, -0.07106077671051025, -0.00243937480263412, -0.022600533440709114, 0.009283315390348434, -0.043037183582782745, -0.03553038835525513, 0.004354475997388363, 0.04025886952877045, 0.05481831356883049, -0.0007872452260926366, -0.0363585390150547, -0.02356225810945034, -0.01356432680040598, 0.0186734888702631, -0.03312607482075691, 0.03291235864162445, -0.006641911808401346, 0.010345220565795898, -0.05658147484064102, 0.010565615259110928, -0.008188017643988132, 0.0038001486100256443, 0.023682473227381706, 0.009283315390348434, -0.008201375603675842, 0.016923684626817703, -0.015694813802838326, 0.050998128950595856, 0.010672473348677158, -0.046376507729291916, -0.04998297616839409, 0.05935979261994362, -0.011534018442034721, -0.02337525598704815, -0.008094516582787037, -0.019140994176268578, 0.011473910883069038, -0.06267239898443222, -0.05046383664011955, 0.028504453599452972, 0.03467551991343498, -0.05631433054804802, -0.0228810366243124, -0.0190742090344429, -0.005626758094877005, 0.02837088145315647, 0.0031907223165035248, -0.018392987549304962, -0.022173099219799042, -0.009056242182850838, -0.01940814033150673, -0.02639400213956833, 0.005242736078798771, 0.007814014330506325, -0.004741837736219168, -0.10375942289829254, -0.0044680130667984486, 0.013237073086202145, -0.09088299423456192, -0.032244496047496796, -0.05818435177206993, 0.022440245375037193, 0.03184377774596214, -0.04415919631719589, 0.03475566580891609, -0.01565474271774292, -0.02597992680966854, -0.002339195227250457, -0.013851508498191833, -0.024657554924488068, 0.019007422029972076, -0.07068677246570587, 0.023989690467715263, -0.042823467403650284, 0.02671457827091217, -0.04381190612912178, -0.03585096448659897, 0.026273787021636963, 0.019127637147903442, 0.03288564458489418, -0.050650838762521744, 0.022026170045137405, -0.016055461019277573, -0.02842431142926216, -0.010512186214327812, -0.03400765731930733, -0.05738291144371033, 0.00051968201296404, -0.013497540727257729, 0.010365256108343601, -0.0017715104622766376, 0.015441025607287884, -0.01570817083120346, -0.02799687720835209, 0.040232155472040176, -7.247372559504583e-05, 0.038281988352537155, 0.016189033165574074, -0.038468990474939346, 0.01562802866101265, -0.06817559897899628, -0.010999727062880993, -0.016349321231245995, -0.03256506845355034, -0.02519184723496437, 0.006418177392333746, -0.016696611419320107, -0.01630925014615059, -0.004444637801498175, 0.004010525997728109, 0.006899039726704359, 6.756909715477377e-05, 0.025525778532028198, 0.02266731858253479, -0.024363694712519646, 0.01586845889687538, -0.023121466860175133, 0.021812452003359795, 0.005950672086328268, -0.018499845638871193, 0.02663443423807621, 0.030508046969771385, -0.01176777109503746, -0.041781600564718246, 0.030401188880205154, 0.060535233467817307, -0.028825029730796814, -0.033526793122291565, -0.03563724830746651, -0.006378105375915766, 0.027382442727684975, 0.0112401582300663, 0.012776246294379234, -0.02676800638437271, 0.0312560573220253, -0.0005722763598896563, -0.005109163001179695, -0.017685050144791603, -0.03451523557305336, 0.07106077671051025, 0.06106952577829361, -0.006504999473690987, 0.01970200054347515, -0.023909546434879303, -0.055299174040555954, 0.028691455721855164, 0.010104789398610592, 0.017765194177627563, 0.03927043080329895, -0.025525778532028198, 0.010692509822547436, 0.05332229658961296, -0.05123855918645859, -0.021839167922735214, 0.009704070165753365, -0.026180285960435867, 0.022787535563111305, 0.03919028490781784, 0.0015344185521826148, -0.030347760766744614, -0.018847133964300156, -0.047445088624954224, -0.05519231781363487, 0.0360913947224617, -0.026914937421679497, -0.030267616733908653, -0.024069834500551224, 0.0470176562666893, 0.0019301282009109855, -0.05161256343126297, -0.009530426003038883, 0.005376308690756559, 0.03168348968029022, 0.0059439935721457005, -0.008608772419393063, 0.07015248388051987, 0.0005484836874529719, -0.014626231044530869, -0.020236292853951454, -0.01859334670007229, -0.011747735552489758, 0.03614482283592224, 0.04554835334420204, 0.011687627993524075, 0.014572801999747753, 0.008294876664876938, 0.016042103990912437, 0.006535053718835115, 0.022346744313836098, -0.0048052845522761345, 0.02644743211567402, -0.052307143807411194, -0.008775738999247551, -0.011647555977106094, -0.030240902677178383, 0.007186221424490213, -0.019848931580781937, -0.04829995706677437, 0.060535233467817307, -0.026754649356007576, 0.038468990474939346, 0.012682746164500713, -0.02684815041720867, 0.009396852925419807, 0.004688408225774765, 0.0294661782681942, -0.020690441131591797, 0.002394293900579214, -0.010946298018097878, -0.00907627772539854, 0.038549136370420456, 0.019448213279247284, -0.016269177198410034, -0.04263646528124809, 0.01021832600235939, -0.03411451727151871, 0.0224803164601326, -0.018579987809062004, 0.03451523557305336, 0.005893903784453869, -0.009450281970202923, 0.042983755469322205, 0.08537978678941727, -0.02815716527402401, 0.002360900864005089, -0.0008615451515652239, 0.01875363290309906, -0.02484455704689026, -0.033954229205846786, -0.014572801999747753, 0.015601313672959805, -0.014319013804197311, 0.006070887669920921, 0.054043591022491455, -0.005262771621346474, 0.0011796156177297235, -0.001566976890899241, 0.01693704165518284, -0.011373731307685375, 0.0005518230027519166, -0.0294661782681942, -0.03133619949221611, -0.015481097623705864, 0.07426652312278748, -0.03758741170167923, -0.007480081636458635, 0.000816464249510318, -0.00816798210144043, -0.05126527324318886, 0.006314658094197512, 0.05153242126107216, -0.01500023528933525, 0.06336697936058044, 0.030828623101115227, -0.0016905318479984999, -0.04667036607861519, 0.05415044724941254, 0.0008698934107087553, 0.02718208357691765, 0.06101609393954277, -0.027101939544081688, 0.018499845638871193, -0.010191611014306545, -0.010351899079978466, 0.0017481351969763637, -0.04033901169896126, -0.002673127455636859, -0.04442634433507919, 0.01649625226855278, 0.004267653916031122, 0.030454618856310844, -0.0454949252307415, 0.03585096448659897, 0.010365256108343601, -0.022133028134703636, -0.013878223486244678, -0.012662709690630436, -0.02206624113023281, 0.02595321275293827, 0.03171020373702049, 0.030748479068279266, 0.03154991567134857, 0.005486506503075361, 0.008541986346244812, -0.011213444173336029, 0.00778729934245348, -0.009283315390348434, -0.024523982778191566, 0.03753397986292839, -0.043170757591724396, -0.017270974814891815, 0.015093736350536346, -0.019060852006077766, 0.022173099219799042, 0.026193642988801003, 0.009844321757555008, 0.029038745909929276, 0.0034161265939474106, -0.04079316183924675, 0.060535233467817307, -0.0024443839211016893, 0.03715997561812401, 0.038175132125616074, 0.0437050499022007, -0.00820805411785841, 0.0033593580592423677, -0.019421497359871864, 0.04108702018857002, 0.011654234491288662, 0.04987611621618271, -0.06577128916978836, -0.03416794538497925, 0.0340343713760376, 0.0005998257547616959, -0.004775230772793293, 0.019929075613617897, 0.026968365535140038, 0.03780112788081169, -0.03943071514368057, 0.010058038868010044, 0.003387742443010211, -0.027863305062055588, -0.03571739047765732, 0.00740661658346653, 0.013237073086202145, -0.021598735824227333, -0.01066579483449459, 0.036705829203128815, 0.061710674315690994, 0.04429277032613754, 0.004381190519779921, -0.0424494631588459, -0.0348358079791069, -0.04982268810272217, 0.03579753264784813, 0.008555343374609947, -0.019261211156845093, 0.007680441252887249, 0.0045982468873262405, -0.025525778532028198, 0.0030905427411198616, -0.009824286215007305, 0.0051625920459628105, -0.0003015825350303203, 0.01100640557706356, 0.015374239534139633, -0.003277544630691409, 0.04188845679163933, -0.006151031702756882, 0.023388613015413284, 0.003412787336856127, -0.018473129719495773, -0.013190322555601597, 0.005062412470579147, 0.009096313267946243, 0.011560733430087566, -0.04528120905160904, -8.948340109782293e-05, -0.036705829203128815, 0.015908531844615936, 0.001833287882618606, -0.0006419846904464066, -0.010952976532280445, 0.009997930377721786, -0.0014409174909815192, -0.011340337805449963, -0.04196860268712044, 0.005269450601190329, -0.011106586083769798, -0.010705866850912571, 0.007974301464855671, -0.0170171856880188, -0.038308702409267426, -0.0315232016146183, 0.05845149606466293, 0.0021405054721981287, -0.05770348757505417, -0.00032579261460341513, -0.004942196886986494, 0.07148820906877518, -0.015160522423684597, 0.05519231781363487, 0.0026764667127281427, 0.009503711014986038, -0.06790845841169357, 0.021892596036195755, 0.02345540001988411, -0.03876285254955292, -0.021531948819756508, -0.04723137244582176, 0.03163006156682968, 0.006752109620720148, 0.029305892065167427, 0.02967989630997181, 0.03248492628335953, 0.017190830782055855, 0.0005906426231376827, 0.05994751304388046, -0.012402242980897427, -0.010418685153126717, -0.007179542910307646, -0.020009217783808708, -0.02984018251299858, -0.015240666456520557, 0.06368755549192429, -0.005496524274349213, 0.024710984900593758, -0.02978675439953804, -0.013116857968270779, -0.04239603504538536, -0.038255274295806885, -0.0017230903031304479, -0.006555089261382818, 0.019100923091173172, -0.022159742191433907, -0.0034294838551431894, -0.010144860483705997, 0.0480060949921608, 0.060214657336473465, -0.0343015193939209, -0.041754886507987976, -0.07704484462738037, -0.053963445127010345, 0.031950633972883224, 0.012509101070463657, -0.014626231044530869, -0.022814249619841576, -0.006464927922934294, 0.011333659291267395, -0.05626089870929718, 0.014532729983329773, 0.0012497412972152233, 0.01298996340483427, -0.05169270932674408, -0.014385799877345562, -0.049208253622055054, 0.049101393669843674, -0.0022006132639944553, -0.025405563414096832, 0.025258632376790047, -0.0114405183121562, 0.025151774287223816, -0.06106952577829361, -0.00041324112680740654, 0.018553273752331734, -0.006872325204312801, -0.01208166778087616, -0.03862927854061127, 0.0038302026223391294, 0.005453113000839949, 0.019167710095643997, -0.0031356236431747675, 0.019261211156845093, 0.025645993649959564, 0.013945009559392929, -0.015254023484885693, 0.003993829246610403, 0.00449806684628129, -0.0030488010961562395, -0.08842524886131287, -0.016536323353648186, -0.013437432236969471, -0.02802359126508236, -0.051131702959537506, -0.015441025607287884, 0.010645759291946888, 0.013891580514609814, -0.011988166719675064, 0.061603814363479614, 0.05658147484064102, -0.004357815254479647, -0.011934737674891949, -0.02666114829480648, 0.011393767781555653, 0.0054163807071745396, -0.007687119767069817, 0.020076004788279533, 0.027061866596341133, 0.014118654653429985, 0.012101703323423862, 0.0003172356227878481, -0.0099177872762084, -0.03721340745687485, 0.005192645825445652, 0.012074989266693592, 0.010779332369565964, -0.01398508157581091, 0.0348358079791069, 0.007019255310297012, 0.000709188578184694, 0.01823269948363304, -0.0025312062352895737, 0.010064717382192612, 0.011039799079298973, -0.025071630254387856, 0.0020870764274150133, -0.03232463821768761, 0.04517434909939766, -0.03256506845355034, -0.0006628554547205567, 0.016002032905817032, -0.018032340332865715, -0.05781034752726555, 0.022466959431767464, 0.01862006075680256, 0.03184377774596214, 0.005569989327341318, 0.0008749024127610028, 0.05415044724941254, -0.03130948543548584, -0.031015625223517418, 0.011313623748719692, 0.02366911619901657, 0.017564835026860237, 0.030214186757802963, 0.0007534345495514572, -0.003409448079764843, 0.013891580514609814, -0.017137400805950165, -0.017925482243299484, -0.01747133396565914, 0.047632090747356415, -0.00028008566005155444, -0.0025595903862267733, -0.0025679387617856264, 0.02293446473777294, -0.0034428411163389683, 0.050837840884923935, -0.016456179320812225, -0.0017381171928718686, 0.0018499845173209906, -0.0027015116065740585, 0.021665522828698158, -0.03790798410773277, 0.0029486215207725763, 0.006752109620720148, -0.04632307589054108, -0.025392206385731697, -0.016750039532780647, 0.013477504253387451, -0.0068923612125217915, 0.03171020373702049, 0.0333130769431591, 0.0027716374024748802, 0.017431261017918587, -0.03470223769545555, -0.04260975122451782, -0.007840728387236595, -0.033500079065561295, -0.04084658995270729, -0.019434854388237, -0.0014534399379044771, 0.0021187998354434967, 0.010358577594161034, -0.009884393773972988, -0.018847133964300156, -0.030561476945877075, 0.04992954432964325, 0.03598453477025032, -0.05260100215673447, 0.025285348296165466, -0.030160758644342422, 0.015213952399790287, -0.011133300140500069, 0.01489337719976902, 0.00979757122695446, -0.04335775971412659, 0.008368341252207756, -0.006341373082250357, 0.00977085717022419, 0.013771364465355873, 0.05340243875980377, 0.00862880889326334, -0.015561241656541824, 0.00945696048438549, -0.04894110560417175, 0.0024761073291301727, 0.03475566580891609, 0.035450246185064316, 0.02845102548599243, 0.013557648286223412, 0.008308233693242073, -0.006575125269591808, 0.0030471314676105976, 0.004564853385090828, -0.012956569902598858, 0.02269403450191021, -0.023174896836280823, -0.015587955713272095, 0.04709779843688011, 0.013637792319059372, 0.010198290459811687, -0.054070305079221725, -0.00790751539170742, -0.009530426003038883, -0.03259178623557091, -0.019969146698713303, 0.019474927335977554, 0.04894110560417175, 0.004888767842203379, 0.026153571903705597, -0.024710984900593758, 0.045895643532276154, -0.010538901202380657, 0.014746447093784809, 0.0006858133128844202, 0.02419004961848259, -0.012562530115246773, -0.020530153065919876, 0.02408319152891636, -0.015948602929711342, 0.015107093378901482, -0.02340197004377842, -0.000148182429256849, 0.023629043251276016, -0.005703562404960394, 0.016896970570087433, -0.013043392449617386, -0.02826402336359024, -0.0006190268322825432, 0.006879003718495369, 0.007760584820061922, -0.02831745147705078, 0.038068272173404694, 0.030614905059337616, -0.013838151469826698, -0.007773941848427057, 0.014546087943017483, -0.030347760766744614, 0.006204460747539997, -0.014319013804197311, 0.0016738352132961154, -0.0007880800403654575, 0.009129706770181656, -0.025726137682795525, -0.039804719388484955, -0.052307143807411194, -0.03948414698243141, 0.011567411944270134, 0.026567647233605385, 0.019822215661406517, 0.01628253422677517, -0.027676302939653397, -0.008194697089493275, -0.014479300938546658, 0.0025095005985349417, -0.013444110751152039, 0.021598735824227333, -0.012642674148082733, -0.0003583510115277022, 0.027569444850087166, 0.007620333228260279, -0.010765974409878254, 0.020156148821115494, -0.012275348417460918, 0.03919028490781784, -0.01872691884636879, 0.0058137597516179085, -0.0077539063058793545, -0.010118146426975727, -0.00021256873151287436, 0.02587306872010231, 0.012769567780196667, -0.021572021767497063, 0.012175168842077255, -0.018085768446326256, -0.005870528519153595, 0.04277003929018974, -0.014225512742996216, 0.034996096044778824, -0.013310538604855537, -0.02298789471387863, 0.04081987589597702, -0.07608311623334885, 0.0376141257584095, -0.009430245496332645, 0.0018533237744122744, -0.004651675932109356, -0.019875645637512207, -0.01657639630138874, -0.026300501078367233, 0.00028655558708123863, -0.02250703237950802, 0.011721020564436913, 0.015227309428155422, -0.029279176145792007, 0.015267381444573402, -0.025859711691737175, 0.03171020373702049, 0.022894393652677536, 0.008308233693242073, 0.014332370832562447, 0.00793422944843769, -0.0009233225719071925, -0.0035296636633574963, -0.002648082561790943, -0.00012105042696930468, -0.008501914329826832, -0.08035744726657867, -0.03256506845355034, -0.021785737946629524, -9.172700811177492e-05, -0.011627519503235817, 0.018660131841897964, 0.030614905059337616, -0.015187237411737442, 0.010532221756875515, -0.033687081187963486, -0.021999454125761986, -0.04055272787809372, -0.023936262354254723, -0.015307452529668808, 0.045922357589006424, 0.02807702124118805, 0.012969927862286568, -0.0029118889942765236, 0.009510389529168606, -0.0566883347928524, 0.00931003037840128, 0.010238361544907093, 0.019127637147903442, -0.021812452003359795, 0.01363111287355423, -0.05305515229701996, 0.03146977350115776, -0.011233479715883732, -0.0014392478624358773, 0.01725761778652668, -0.01339736022055149, -0.007226293440908194, -0.020663725212216377, 0.011614162474870682, -1.7779282643459737e-05, 0.011527339927852154, -0.009851000271737576, 0.02022293582558632, 0.04848695918917656, -0.006992540787905455, -0.055673178285360336, 0.010819404385983944, -0.016883613541722298, -0.01670996844768524, 3.570857188606169e-06, -0.01859334670007229, 0.019261211156845093, -0.017524762079119682, 0.0482732430100441, -0.004357815254479647, -0.033793941140174866, 0.02954632230103016, -0.014586159028112888, -0.05492516979575157, 0.021545307710766792, -0.008348305709660053, 0.01932799629867077, -0.014866662211716175, 0.0403924398124218, -0.009430245496332645, -0.02815716527402401, 0.027409156784415245, 0.01496016327291727, 0.0060041011311113834, 0.019942432641983032, 0.03411451727151871, 0.020810656249523163, 0.0018082429887726903, -0.011493947356939316, -0.022213172167539597, 0.001152066164650023, 0.013016678392887115, 0.022680675610899925, 0.015507812611758709, 0.06374098360538483, -0.012115061283111572, -0.010432042181491852, 0.0013340591685846448, 0.005800402723252773, 0.04228917509317398, 0.016696611419320107, 0.008388377726078033, -0.0406595878303051, 0.022466959431767464, 0.013945009559392929, -0.00786744337528944, -0.015187237411737442, 0.0074132950976490974, 0.016242463141679764, -0.014479300938546658, 0.020650368183851242, 0.030695049092173576, -0.04084658995270729, 0.02489798702299595, -0.021371662616729736, 0.0014283950440585613, 0.0033944209571927786, 0.02269403450191021, -0.02568606659770012, 0.02272074855864048, 0.00024564890190958977, 0.012328777462244034, 0.030614905059337616, -0.017190830782055855, 0.017644979059696198, -0.0007826536311767995, -0.023134823888540268, -0.026941651478409767, -0.024550696834921837, 0.019421497359871864, 0.01644282229244709, 0.06395469605922699, 0.008461842313408852, 0.015881815925240517, -0.025832995772361755, 0.0074132950976490974, 0.02024964988231659, -0.03924371302127838, 0.02285432070493698, 0.005777027457952499, 0.0013958367053419352, 0.05770348757505417, 0.017604906111955643, 0.0007872452260926366, -0.013657827861607075, -0.011493947356939316, 0.01815255545079708, -0.030988909304142, -0.008214732632040977, 0.015748243778944016, -0.016923684626817703, 0.02970661036670208, 0.03622496873140335, 0.010719223879277706, -0.015441025607287884, -0.0074400100857019424, -0.011139978654682636, -0.015160522423684597, -0.013544291257858276, 0.02182580903172493, -0.001970200100913644, -0.028744885697960854, -0.010739260353147984, 0.03470223769545555, 0.033713795244693756, -0.003499609651044011, 0.01793883927166462, -0.0177785512059927, -0.005079109221696854, -0.0015519500011578202, -0.03171020373702049, 0.0036966297775506973, 0.014452586881816387, 0.02198609709739685, 0.013931652531027794, 0.0027349048759788275, -0.049315109848976135, -0.0017998946132138371, 0.0034261445980519056, 0.0011913032503798604, -0.019501641392707825, 0.0006879003485664725, 0.04431948438286781, 0.018486488610506058, -0.028718171641230583, 0.05129198729991913, 0.013677863404154778, 0.03184377774596214, -0.010051359422504902, -0.038335420191287994, 0.016349321231245995, -0.01796555332839489, 0.004424601793289185, 0.02516513131558895, 0.007600297220051289, 0.026220357045531273, 0.023922903463244438, -0.025672709569334984, 0.0009675686014816165, 0.011133300140500069, 0.010799367912113667, 0.008221411146223545, 0.006047512404620647, -0.00533957639709115, -0.009363459423184395, 0.018165912479162216, 0.03264521434903145, -0.00630464032292366, -0.0016037095338106155, 0.005185967311263084, -0.0015051994705572724, -0.00979757122695446, 0.006641911808401346, 0.038522422313690186, -0.025832995772361755, -0.005743633955717087, 0.03659897297620773, -0.05193313956260681, 0.009804249741137028, 0.0406595878303051, 0.0038769531529396772, -0.021425090730190277, 0.060000941157341, 0.015521169640123844, -0.020556867122650146, -0.002966987667605281, 0.01204159576445818, -0.010852796956896782, 0.021238088607788086, 0.027302298694849014, -0.00040531024569645524, -0.016349321231245995, -0.017818624153733253, 0.025432277470827103, 0.014345727860927582, 0.026019997894763947, 0.01622910611331463, 0.04199531674385071, -0.016536323353648186, 0.035209812223911285, 0.00568018713966012, -0.022239886224269867, -0.006181085482239723, -0.010291790589690208, -0.016349321231245995, 0.03753397986292839, 0.003142302157357335, 0.0209575854241848, -0.04212888702750206, 0.014559444971382618, 0.020062647759914398, 0.039884865283966064, -0.016349321231245995, 0.009704070165753365, -0.017578192055225372, -0.023655759170651436, -0.01807241141796112, -0.015601313672959805, -0.01733775995671749, -0.02989361248910427, 0.0016295892419293523, -0.0011136640096083283, -0.041434310376644135, 0.006157710216939449, 0.020890800282359123, -0.014866662211716175, 0.0036732545122504234, 0.005069090984761715, -0.011293587274849415, -0.017738480120897293, 0.03288564458489418, -0.0294661782681942, -0.01586845889687538, -0.005850492510944605, 0.024016404524445534, 0.015173880383372307, 0.0312560573220253, 0.0060041011311113834, 0.011754414066672325, -0.044506486505270004, 0.0378812700510025, 0.03419465944170952, 0.026594361290335655, -0.012976606376469135, 0.00037650857120752335, 0.0037300228141248226, -0.009256601333618164, -0.019915716722607613, -0.004998965188860893, 0.005837135016918182, -0.02571278065443039, -0.024751055985689163, -0.02845102548599243, 0.012128418311476707, -0.007092720363289118, 0.003940400201827288, -0.01817926950752735, 0.03235135227441788, -0.013691221363842487, 0.023962976410984993, 0.022413531318306923, 0.01360439881682396, -0.011119943112134933, -0.0009542113402858377, 0.0026230376679450274, 0.03272535651922226, -0.018900563940405846, -0.012475707568228245, -0.010605687275528908, 0.002452732063829899, 0.004872071091085672, -0.029065459966659546, -0.005195985548198223, -0.004721801728010178, 0.004711783491075039, -0.02410990558564663, -0.010685831308364868, -0.007540189661085606, 0.004107366316020489, 0.003917024936527014, -0.0021071122027933598, -0.009997930377721786, 0.004715122748166323, 0.01715075969696045, 0.02206624113023281, 0.03467551991343498, 0.03141634166240692, 0.022493673488497734, -0.003950417973101139, -0.013484182767570019, 0.006792181171476841, 0.001576994895003736, -0.002865138463675976, 0.011347017250955105, 0.005746973678469658, 0.006879003718495369, -0.012856390327215195, -0.0028233968187123537, 0.020690441131591797, 0.011948094703257084, 0.03181706368923187, -0.0007897497271187603, -0.014305655844509602, 0.035129670053720474, 0.030614905059337616, 0.030721765011548996, 0.006852289196103811, 0.03120262734591961, 0.013784722425043583, 0.0050824484787881374, 0.02190595306456089, 0.007994337007403374, 0.0008135423995554447, -0.028664741665124893, 0.030294330790638924, 0.04068630188703537, 0.0015269051073119044, -0.01561467070132494, -0.007773941848427057, -0.014305655844509602, 0.021318232640624046, 0.030882051214575768, -0.0060041011311113834, 0.033526793122291565, 0.006618536543101072, 0.021465163677930832, 0.00031013955594971776, -0.009249922819435596, 0.02829073742032051, -0.0034695558715611696, -0.0015010252827778459, 0.008401734754443169, 0.025405563414096832, 0.011694306507706642, -0.0010894538136199117, -0.02994704060256481, -0.03104233928024769, 0.026407359167933464, 0.009470317512750626, 0.025726137682795525, -0.015694813802838326, 0.046349793672561646, 0.027275584638118744, -0.002314150333404541, 0.002649752190336585, -0.03590439260005951, -0.04501406475901604, -0.03138962760567665, -0.013136893510818481, -0.008789096027612686, -0.0030788551084697247, 0.02965318039059639, -0.008582058362662792, 0.012408921495079994, -0.0075802612118422985, -0.009924465790390968, -0.011066514067351818, -0.020810656249523163, 0.00640148064121604, 0.002404311904683709, 0.026019997894763947, 0.08126574754714966, -0.003354349173605442, -0.01888720691204071, 0.0034695558715611696, 0.03133619949221611, 0.011407124809920788, 0.0340343713760376, 0.019875645637512207, 0.02133158966898918, 0.0528414361178875, -0.0066753048449754715, 0.018392987549304962, -0.0061710672453045845, 0.01972871646285057, -0.010438721626996994, -0.00977085717022419, 0.006241193041205406, -0.016148962080478668, 0.008281518705189228, -0.014105296693742275, 0.011033120565116405, -0.003826863132417202, 0.006261229049414396, -0.008101196028292179, 0.0019034136785194278, -0.01644282229244709, 0.023148180916905403, 0.03160334378480911, -0.015855101868510246, 0.04338447377085686, 0.015507812611758709, 0.014238869771361351, -0.00983764324337244, 0.01959514245390892, 0.005937315057963133, -0.010472114197909832, 0.013958366587758064, -0.017538120970129967, 0.07090049237012863, 0.0074667246080935, -0.035129670053720474, 0.008495235815644264, 0.0073732235468924046, 0.019822215661406517, 0.011687627993524075, 0.019100923091173172, -0.01978214457631111, -0.04226246103644371, 0.0005793723976239562, -0.03641197085380554, 0.019862288609147072, 0.014639588072896004, -0.03595782071352005, -0.00014306908997241408, -0.018392987549304962, 0.00700589781627059, 0.0010084753157570958, 0.030668335035443306, -0.025418920442461967, 0.007493439130485058, -0.027783161029219627, 0.023548899218440056, 0.01326378807425499, 0.018165912479162216, 0.0037968093529343605, -0.029386036098003387, -0.01216181181371212, -0.005703562404960394, 0.021491877734661102, -0.022627247497439384, -0.0035630566999316216, 0.02098430134356022, 0.008882597088813782, 0.009790892712771893, 0.008121231570839882, 0.01935471221804619, -0.012595923617482185, 0.003028765320777893, -0.00032120104879140854, 0.0315232016146183, 0.019501641392707825, -0.012615959160029888, 0.009944501332938671, 0.042876895517110825, 0.0013332243543118238, -0.011326980777084827, 0.011814521625638008, 0.03566396236419678, -0.0024761073291301727, -0.0283441673964262, 0.03341993689537048, -0.023308468982577324, 0.009236564859747887, -0.022346744313836098, 0.03280550241470337, 0.026834793388843536, 0.0006582638598047197, -0.019060852006077766, 0.0011128290789201856, 7.13780100340955e-05, -9.433585364604369e-05, -0.02650086022913456, -0.02791673317551613, 0.02024964988231659, 0.005967368837445974, 0.02581963874399662, 0.006144352722913027, 0.019047493115067482, -0.0037200050428509712, -0.013811436481773853, -0.07517482340335846, -0.010799367912113667, -0.0031706865411251783, -0.03128277137875557, -0.024310264736413956, -0.011313623748719692, 0.026260429993271828, 0.013270466588437557, 0.023722544312477112, 0.008541986346244812, 0.004434620030224323, -0.030374474823474884, 0.01573488675057888, 0.013317217119038105, -0.029172318056225777, -0.005974047351628542, -0.02802359126508236, 0.024857914075255394, 0.04277003929018974, 0.00740661658346653, 0.014345727860927582, 0.014345727860927582, 0.024710984900593758, 0.003983811475336552, 0.0034294838551431894, 0.0376141257584095, -0.0179121233522892, 0.01286974735558033, 0.030668335035443306, 0.003499609651044011, -0.007333151530474424, 0.01500023528933525, -0.00896941963583231, -0.004514763597398996, -0.025365492329001427, -0.010124824941158295, -0.01421215571463108, -0.017631622031331062, 0.013931652531027794, 0.009603890590369701, -0.0014041849644854665, 0.025726137682795525, -0.018900563940405846, 0.0023108110763132572, 0.013363967649638653, -0.016322607174515724, -0.007974301464855671, -0.025539135560393333, 0.020997658371925354, -0.03801484405994415, -0.02350882813334465, -0.0043010469526052475, -0.020944228395819664, -0.01668325439095497, 0.004715122748166323, -0.0120015237480402, -0.022226529195904732, 0.0031940615735948086, -0.0528414361178875, 0.011721020564436913, -0.005569989327341318, -0.04111373424530029, -0.009790892712771893, 0.01565474271774292, -0.015267381444573402, -0.00019597647769842297, 0.03157662972807884, 0.030561476945877075, -0.0201962199062109, -0.004885428585112095, 0.00973078515380621, 0.013217037543654442, -0.021371662616729736, -0.018513202667236328, 0.00933674443513155, 0.0036098072305321693, 0.02997375652194023, 0.010305148549377918, -0.00467505119740963, -0.012141775339841843, 0.0315232016146183, -0.025699423626065254, 0.02802359126508236, -0.015347524546086788, -0.02951960824429989, -0.025071630254387856, 0.018526559695601463, 0.03750726580619812, 0.02997375652194023, -0.004908803850412369, -0.02109115943312645, -0.013283823616802692, -0.008682237938046455, -0.015587955713272095, -0.010912904515862465, -0.020009217783808708, 0.005192645825445652, 0.011707663536071777, -0.016589753329753876, 0.042876895517110825, 0.03133619949221611, -0.002138835843652487, 0.030882051214575768, -0.02424347959458828, 0.015200594440102577, -0.011013085022568703, 0.01636267825961113, 0.022333387285470963, -0.025044916197657585, -0.015895172953605652, -0.009543783031404018, -0.0009976224973797798, -0.0004562349058687687, 0.014759804122149944, -0.02090415731072426, 0.02813044935464859, 0.018606703728437424, 0.004220903385430574, 0.04672379791736603, -0.038442276418209076, -0.011887987144291401, -0.02829073742032051, -0.0007563564577139914, 0.013544291257858276, -0.017164116725325584, -0.009510389529168606, 0.014465943910181522, 0.015507812611758709, 0.0026347253005951643, 0.014105296693742275, 0.014492657966911793, 0.013283823616802692, -0.0006131830159574747, 0.02671457827091217, 0.011841236613690853, 0.014866662211716175, -0.018740275874733925, -0.014906734228134155, 0.008114553056657314, -0.02030307985842228, -0.006758788134902716, 0.006221157032996416, 0.003907007165253162, 0.01318364404141903, 0.026647791266441345, -0.030748479068279266, -0.030855337157845497, 0.01888720691204071, -0.023388613015413284, -0.01862006075680256, -0.00028488592943176627, -0.030721765011548996, 0.038362134248018265, 0.012742853723466396, -0.006558428984135389, 0.0147330891340971, 0.00012438975682016462, -0.020810656249523163, -0.009530426003038883, 0.006965826265513897, -0.02201281115412712, 0.006715376861393452, -0.02038322202861309, -0.01699047163128853, -0.029038745909929276, -0.01793883927166462, -0.01481323316693306, 0.0039437394589185715, -0.04028558358550072, 0.02293446473777294, 0.007733870297670364, 0.026968365535140038, -0.0041107055731117725, -0.016042103990912437, 0.00027403314015828073, 0.014319013804197311, 0.012956569902598858, 0.024737698957324028, 0.024470552802085876, -0.02521856129169464, 0.011413803324103355, 0.021491877734661102, -0.004391208756715059, -0.015227309428155422, -0.002496143337339163, -0.0006958312587812543, -0.044586628675460815, -0.01736447587609291, -0.005580007564276457, -0.036919545382261276, 0.0018216002499684691, 0.0018800384132191539, -0.006054190918803215, -0.00975749921053648, -0.006371426861733198, 0.006999219302088022, 0.005065751727670431, 0.025405563414096832, -0.006745430640876293, -0.01665653847157955, 0.0040071867406368256, 0.008728988468647003, -0.009904429316520691, -0.013524254783987999, -0.032164350152015686, 0.009583855047821999, -0.018112484365701675, -0.03149648755788803, 0.0061109596863389015, 0.05535260587930679, -0.014706375077366829, 0.01668325439095497, -0.04659022390842438, 0.010879511944949627, 0.0005109162884764373, -0.004992286674678326, 0.014359085820615292, -0.029172318056225777, -0.0147330891340971, 0.027248868718743324, 0.025832995772361755, -0.04562849923968315, -0.021211374551057816, -0.02274746261537075, -0.016723325476050377, -0.006715376861393452, -0.023602329194545746, -0.028504453599452972, 0.018259413540363312, -0.025098346173763275, 0.008488557301461697, 0.0394040010869503, 0.003509627655148506, 0.035183098167181015, 0.011594126932322979, 0.03390079736709595, 0.002896862104535103, -0.007800656836479902, -0.006161049474030733, 0.015227309428155422, 0.018259413540363312, 0.043277617543935776, -0.02035650797188282, 0.009931144304573536, 0.02584635466337204, -0.011921380646526814, 0.008194697089493275, -0.04346461594104767, 0.007379902061074972, -0.02049008011817932, -0.00823476817458868, 0.029279176145792007, 0.007940907962620258, -0.004120723810046911, 0.03288564458489418, -0.013878223486244678, 0.0006528375088237226, 0.0044479770585894585, 0.030401188880205154, 0.006217817775905132, 0.02043665200471878, -0.030721765011548996, -0.006010780110955238, -0.008395056240260601, 0.02997375652194023, -0.0008081159903667867, 0.009143063798546791, 0.0064048198983073235, 0.008915990591049194, 0.014839948154985905, 0.0027382441330701113, -0.05428402125835419, 0.005750312935560942, -0.0141720836982131, 0.019047493115067482, -0.013891580514609814, -0.01804569736123085, 0.013497540727257729, -0.013270466588437557], [-0.02064022794365883, -0.0349784716963768, 0.00219226093031466, 0.023998845368623734, -0.00949572678655386, -0.034563224762678146, 0.014900046400725842, 0.07376744598150253, 0.04601915925741196, -0.026404837146401405, -0.0012686413247138262, 0.020811213180422783, 0.01474127545952797, -0.006332519929856062, 0.034709781408309937, -0.017757924273610115, 0.033024366945028305, -0.01696407049894333, -0.015718327835202217, 0.011993316002190113, 0.046165719628334045, 0.00835990346968174, 0.033219777047634125, 0.0024090444203466177, 0.029751241207122803, -0.020896704867482185, 0.050709012895822525, -0.007413384038954973, 0.009550685994327068, -0.019589897245168686, 0.028823040425777435, -0.031387802213430405, 0.03869126737117767, -0.027577299624681473, 0.07401170581579208, 0.03082599863409996, 0.022679826244711876, 0.0006492054089903831, 0.034001417458057404, -0.0174892358481884, -0.032877806574106216, 0.003853249829262495, 0.032926660031080246, -0.015474065206944942, 0.026404837146401405, 0.04440702497959137, 0.0071996538899838924, -0.04836408793926239, -0.03358617052435875, 0.00859805941581726, 0.010662082582712173, -0.017525874078273773, 0.010778107680380344, -0.012652826495468616, -0.004918847233057022, -0.014264962635934353, 0.0005022659315727651, 0.0004576115752570331, 0.028334515169262886, 0.01135212555527687, -0.013935207389295101, -0.04203767329454422, 0.0016228227177634835, 0.07332777231931686, -0.0001507561100879684, -0.024914832785725594, 0.04721605032682419, 0.0799228772521019, -0.03961946815252304, -0.003816610435023904, 0.02082342654466629, 0.005529505200684071, -0.018576206639409065, -0.04306357726454735, 0.0304840300232172, 0.04145144298672676, 0.03641962260007858, 0.014765702188014984, -0.03058173507452011, 0.017037348821759224, -0.005847047083079815, 0.008085107430815697, -0.013373402878642082, 0.026991067454218864, -0.059649039059877396, 0.017574727535247803, -0.02266761288046837, -0.0033433507196605206, -0.005666903220117092, -0.0318763293325901, -0.0017754870932549238, -0.004292923491448164, 0.008610272780060768, 0.03304879367351532, -0.03847143054008484, -0.010588803328573704, 0.01092466525733471, -0.06301987171173096, -0.05031818896532059, 0.04130488261580467, -0.033610597252845764, -0.03226714953780174, -0.018063252791762352, -0.042110953480005264, 0.012384137138724327, -0.046849656850099564, -0.07200875133275986, 0.018759403377771378, -0.03585781902074814, -0.010570484213531017, -0.01671980693936348, -0.03898438438773155, 0.016646528616547585, 0.024194255471229553, 0.04948769509792328, -0.049170155078172684, 0.00190219865180552, 0.004027287010103464, 0.0020838691852986813, -0.009196504019200802, -0.003859356278553605, -0.01580381952226162, -0.007761458866298199, -0.03888668119907379, 0.007101948373019695, 0.009715563617646694, -0.03649290278553963, 0.005480652675032616, -0.030459603294730186, 0.019308995455503464, 0.06165199726819992, -0.01730603724718094, 0.03202288597822189, -0.022093594074249268, -0.0013655831571668386, 0.004387575201690197, 0.043747514486312866, -0.009098798967897892, 0.015864886343479156, -0.08519895374774933, 0.006072990596294403, -0.02265539951622486, 0.016695380210876465, 0.009471300058066845, -0.04367423430085182, 0.013910781592130661, 0.013153566047549248, 0.09003536403179169, 0.029946651309728622, -0.00036105135222896934, -0.02294851467013359, -0.013348976150155067, -0.029506977647542953, -0.010802533477544785, -0.011797905899584293, -0.010423926636576653, -0.00797518901526928, 0.029751241207122803, 0.019931865856051445, -0.04614129289984703, -0.003938741981983185, -0.011175035499036312, 0.02101883664727211, -0.030166488140821457, 0.019699815660715103, 0.01652439683675766, -0.008335476741194725, -0.0174892358481884, -0.06316642463207245, 0.03019091486930847, -0.003721958491951227, -0.029848946258425713, -0.008524781093001366, -0.017073988914489746, -0.012762744911015034, -0.02831008844077587, -0.01709841378033161, 0.059795599430799484, 0.008353796787559986, -0.01802661456167698, -0.004796715918928385, 0.01171851996332407, -0.023424828425049782, 0.01874719001352787, -0.011901717633008957, 0.020078424364328384, 9.360237163491547e-05, -0.010130810551345348, 0.009465193375945091, 0.030239766463637352, -0.03615093231201172, -0.002757119247689843, 0.03859356418251991, 0.05158836022019386, 0.021568428725004196, 0.0006221074727363884, -0.065706767141819, -0.00598139176145196, 0.010020892135798931, -0.0043631489388644695, -0.013519960455596447, 0.0011465097777545452, 0.024670569226145744, 0.02256990782916546, -0.03299994021654129, 0.012762744911015034, -0.012872663326561451, 0.015376360155642033, 0.05359131470322609, 0.029751241207122803, -0.01604808308184147, 0.019357847049832344, -0.04628784954547882, 0.02569647505879402, 0.00876904372125864, 0.024731634184718132, 0.005602783989161253, 0.01323905773460865, -0.01642669178545475, 0.03209616616368294, 0.008347690105438232, -0.009269783273339272, -0.0007553072064183652, -0.005581411067396402, 0.008622486144304276, 0.026697952300310135, -0.0012892510276287794, -0.012579547241330147, 0.029995504766702652, -0.03507617488503456, -0.03165649250149727, 0.026844510808587074, -0.029018452391028404, 0.006454651243984699, -0.011126182042062283, 0.03659060597419739, -0.007010350003838539, -0.08177927136421204, -0.005639423616230488, 0.008121746592223644, 0.03436781466007233, 0.0018609792459756136, 0.025598768144845963, 0.010393393225967884, 0.021519575268030167, -0.006085203494876623, -0.037518806755542755, 0.009837694466114044, 0.05237000063061714, 0.03314649686217308, 0.01122999470680952, 0.022777531296014786, -0.0010549110593274236, -0.0015213008737191558, 0.026966642588377, 0.019247928634285927, 0.03822717070579529, 0.012439096346497536, 0.018625058233737946, -0.03820274397730827, -0.009001093916594982, -0.018331943079829216, -0.0348074845969677, -0.0009030100191012025, -0.03659060597419739, -0.029018452391028404, 0.05798805132508278, -0.06409462541341782, -0.006231761537492275, 0.004244070500135422, -0.03378158062696457, 0.029360421001911163, 0.013568812981247902, -0.021971462294459343, -0.0312168188393116, 0.02410876378417015, 0.0007308808853849769, -0.006723340600728989, -0.023754583671689034, 0.039937011897563934, -0.03536929190158844, -0.038153890520334244, 0.042648330330848694, 0.004418108146637678, 0.02667352557182312, 0.014326028525829315, 0.03883782774209976, 0.025305652990937233, -0.004091406241059303, 0.03243813291192055, 0.05588738992810249, 0.006411905400454998, -0.029629109427332878, 0.009025519713759422, 0.0065157171338796616, -0.03634634241461754, -0.013397828675806522, -0.03111911378800869, -0.004711223766207695, -0.0230462197214365, -0.008445395156741142, 0.0317053459584713, 0.0010610176250338554, -0.007046989165246487, -0.02879861555993557, -0.05354246497154236, -0.018429648131132126, -0.01642669178545475, -0.04895031824707985, -0.04526194557547569, -0.06834480166435242, 0.09907309710979462, -0.022863022983074188, -0.011120076291263103, 3.8762447474027795e-08, 0.018160957843065262, -0.012213152833282948, 0.010136917233467102, 0.03600437566637993, -0.012579547241330147, 0.020896704867482185, 0.018576206639409065, 0.021971462294459343, -0.07679630815982819, 0.07034776359796524, -0.01623127982020378, 0.02054252289235592, 0.04084078222513199, -0.03111911378800869, 0.007572154980152845, 0.007291252259165049, -0.035979948937892914, -0.0003891034284606576, -0.05383557826280594, 0.0169152170419693, -0.08847208321094513, 0.013153566047549248, 0.019296782091259956, -0.005318828392773867, -0.055301155894994736, 0.04059652239084244, 0.021629493683576584, -0.008353796787559986, 0.026991067454218864, -0.0040730866603553295, 0.010411713272333145, -0.0030960342846810818, 0.0027158998418599367, 0.017941121011972427, 0.024377454072237015, 0.020334899425506592, 0.009416340850293636, 0.03314649686217308, -0.05437295883893967, -0.043845221400260925, 0.009538472630083561, -0.0014312288258224726, 0.0010419345926493406, -0.04137816280126572, 0.012164300307631493, -0.009446874260902405, -0.011578069068491459, -0.012121554464101791, 0.035540275275707245, 0.024365240707993507, -0.023473680019378662, -0.0005064642173238099, 0.021995889022946358, 0.022582119330763817, 0.018160957843065262, 0.04575047269463539, -0.008024041540920734, -0.041231606155633926, -0.010857492685317993, 0.00247011031024158, 0.03246255964040756, -0.01763579249382019, 0.02860320545732975, -0.05388443171977997, 0.03619978576898575, 0.02816353179514408, -0.01802661456167698, 0.019260141998529434, 0.014851193875074387, 0.08143730461597443, 0.015632836148142815, 0.01186507847160101, 0.0030029090121388435, 0.0016106095863506198, -0.03852028399705887, -0.060479532927274704, -0.02487819269299507, 0.027039920911192894, -0.03329305723309517, -0.0006034061079844832, 0.03204731270670891, 0.0309725571423769, -0.013532173819839954, -0.01558398362249136, -0.019052518531680107, 0.0055783577263355255, -0.023107286542654037, -0.0014999278355389833, -0.027284184470772743, -0.019125796854496002, 0.03165649250149727, 0.01869833655655384, -0.03744552657008171, -0.016890790313482285, -0.035296011716127396, 0.011156715452671051, -0.03153436258435249, 0.0028059720061719418, 0.018295302987098694, 0.040669798851013184, 0.0204326044768095, -0.007590474560856819, -0.01104069035500288, 0.02672237902879715, 0.01696407049894333, 0.0052211228758096695, 0.002450263826176524, -0.010912451893091202, 0.03898438438773155, -0.00020189868519082665, 0.05823231488466263, 0.04965868219733238, -0.0030502351000905037, 0.018539566546678543, -0.05823231488466263, -0.03734782338142395, 0.026404837146401405, -0.01711062714457512, -0.009874334558844566, -0.03837372735142708, -0.03483191132545471, 0.002297599334269762, -0.01464357040822506, -0.019968505948781967, -0.02140965685248375, -0.019064731895923615, -0.03685929626226425, 0.023253843188285828, 0.03180304914712906, -0.07679630815982819, -0.006131002679467201, 0.001465578330680728, 0.045774899423122406, 0.003822716884315014, 0.025036964565515518, 0.00483335554599762, 0.025403358042240143, -0.04357653111219406, 0.009672816842794418, 0.008824002929031849, -0.017989974468946457, -0.013617665506899357, -0.03160763904452324, 0.011901717633008957, 0.027772709727287292, 0.029677962884306908, 0.050464749336242676, -0.011095649562776089, 0.041964393109083176, 0.051148686558008194, 0.018087679520249367, 0.018063252791762352, 0.0024640036281198263, 0.0061126830987632275, -0.011681880801916122, -0.0038807294331490993, -0.006231761537492275, 0.05398213490843773, 0.0068882182240486145, 0.005999711342155933, -0.013996273279190063, -0.03082599863409996, -0.019944079220294952, -0.03571125864982605, -0.030313046649098396, 0.013727583922445774, -0.021531788632273674, -0.042501773685216904, -0.03309764340519905, 0.007169120945036411, 0.04057209566235542, 0.07533072680234909, 0.019553259015083313, -0.012897090055048466, -0.07870155572891235, -0.03651732951402664, -0.002340345410630107, 0.04648325964808464, -0.011187247931957245, -0.028529925271868706, -0.011419298127293587, 0.038007333874702454, -0.01922350376844406, 0.009581218473613262, 0.0017449542647227645, 0.06101691350340843, -0.012738319113850594, 0.03600437566637993, 0.03817831724882126, 0.051148686558008194, 0.013727583922445774, -0.029506977647542953, 0.035589128732681274, 0.021299738436937332, -0.019931865856051445, -0.01827087625861168, 0.021189820021390915, 0.020982196554541588, 0.012188727036118507, -0.01715948060154915, -0.00855531357228756, -0.017183907330036163, 0.002650254173204303, 0.014423733577132225, -0.002605981659144163, 0.0074744499288499355, 0.018490713089704514, 0.001459471764974296, -0.021299738436937332, 0.00022231755428947508, -0.006127949804067612, -0.009959826245903969, -0.0723995715379715, -0.008158386684954166, -0.029922224581241608, -0.00180907326284796, -0.01624349318444729, -0.03329305723309517, 0.0619451142847538, 0.001998377265408635, 0.026453688740730286, 0.03243813291192055, 0.03363502398133278, -0.03172977268695831, -0.017611367627978325, -0.018857108429074287, 0.0349784716963768, 0.023070646449923515, 0.027626153081655502, 0.010100278072059155, 0.04819310083985329, -0.007065309211611748, 0.009068266488611698, 0.01207880862057209, -0.00807289406657219, -0.01957768388092518, 0.006210388150066137, 0.0709339901804924, -0.002641094382852316, 0.024585077539086342, -0.02691778913140297, 0.015474065206944942, -0.022386709228157997, 0.004894420970231295, -0.009972039610147476, -0.013190205208957195, -0.003331137588247657, -0.00213272194378078, -0.0013495534658432007, -0.037079133093357086, 0.007004243321716785, -0.024377454072237015, -0.048828184604644775, -0.0011205568443983793, -0.030166488140821457, -0.03385486081242561, 0.02918943576514721, 0.03251141309738159, 0.0008778203628025949, -0.01624349318444729, 0.030142061412334442, 0.03126567229628563, 0.0031296205706894398, -0.027186479419469833, 0.04970753192901611, 0.02518352121114731, -0.0010793374385684729, 0.037469953298568726, -0.021727198734879494, -0.011150608770549297, 0.026209427043795586, -0.003960114903748035, -0.03309764340519905, 0.003070081351324916, -0.001367109827697277, 0.024365240707993507, -0.013226844370365143, -0.005297455005347729, -0.013690944761037827, -0.017562514171004295, 0.050660159438848495, -0.007388957776129246, -0.020750146359205246, 0.0007179044187068939, 0.02682008408010006, -0.004109725821763277, -0.016707593575119972, -0.04599473625421524, -0.012378030456602573, -0.01140708476305008, -0.008079000748693943, 0.008616379462182522, 0.010228515602648258, -0.012066595256328583, 0.04035225883126259, 0.011193354614078999, 0.019638750702142715, 0.002462476957589388, -0.031387802213430405, -0.013984059914946556, -0.01128495391458273, -0.07235071808099747, -0.033317480236291885, -0.043600957840681076, 0.008824002929031849, 0.007230186834931374, 0.009782735258340836, -0.019821947440505028, -0.004699010867625475, -0.027552872896194458, 0.017916696146130562, -0.022350070998072624, -0.06306872516870499, 0.031583212316036224, -0.022630972787737846, -0.026209427043795586, -0.00961785763502121, 0.017513660714030266, 0.0014213057002052665, -0.04601915925741196, -0.00876904372125864, 0.010692615993320942, 0.010985731147229671, -0.03373272716999054, 0.02256990782916546, 0.009147651493549347, -0.021910397335886955, 0.013727583922445774, -0.034758634865283966, -0.010033105500042439, 0.038105037063360214, 0.005956965498626232, 0.035002898424863815, -0.02324162982404232, 0.01461914461106062, -0.017379317432641983, -0.012713892385363579, 0.04291702061891556, -0.013654305599629879, 0.0004965410334989429, -0.02106768824160099, 0.008952241390943527, 0.039253074675798416, 0.00801793485879898, 0.02860320545732975, -0.005389053840190172, 0.001743427594192326, -0.002799865324050188, -0.04255062714219093, -0.046214573085308075, -0.003651732811704278, 0.03392814099788666, -0.020884491503238678, 0.042208656668663025, -0.027039920911192894, -0.04372308775782585, -0.03194960951805115, 0.02291187457740307, 0.003984541166573763, 0.021177606657147408, 0.02373015694320202, 0.006115736439824104, 0.02410876378417015, -0.007340105250477791, 0.04579932242631912, -0.005761554930359125, -0.00648518418893218, 0.003651732811704278, -0.002172414679080248, 0.0006419538403861225, -0.0027723857201635838, -0.01851513981819153, -0.018673911690711975, 0.01807546615600586, -0.001086207339540124, 0.00483335554599762, 0.02049367129802704, 0.012994795106351376, 0.012897090055048466, -0.004341776017099619, 0.022386709228157997, 0.024914832785725594, -0.009361381642520428, 0.03368387743830681, 0.015229801647365093, -0.012329177930951118, 0.025574343279004097, -0.021922610700130463, -0.0428193137049675, -0.051344096660614014, -0.024389667436480522, 0.0007285909377969801, 0.0011747527169063687, 0.00966671109199524, 0.008304944261908531, -0.037567660212516785, -0.01514430996030569, -0.012811597436666489, 0.008543100208044052, 0.003822716884315014, 0.0067599802277982235, -0.002175467787310481, 0.00949572678655386, 0.03107026219367981, 0.011052903719246387, -0.03908209130167961, -0.004879154730588198, -0.02933599427342415, 0.014252749271690845, -0.02879861555993557, -0.007163014262914658, -0.03102140873670578, -0.02368130348622799, 0.0062592411413788795, 0.014423733577132225, 0.05378672480583191, 0.01990743912756443, 0.0009236197220161557, 0.0010083484230563045, -0.023669090121984482, 0.025574343279004097, -0.06727004796266556, 0.03966832160949707, -0.010051424615085125, -0.011547536589205265, -0.01927235536277294, -0.05627821013331413, 0.04738703370094299, -0.03446551784873009, 0.037567660212516785, 0.02474384754896164, -0.03619978576898575, 0.021702773869037628, -0.023644665256142616, -0.0023388187400996685, -0.00891560222953558, 0.009080478921532631, 0.05022048577666283, -0.018160957843065262, 0.027919268235564232, -0.02150736190378666, 0.023204991593956947, 0.0323648564517498, 0.022313430905342102, 0.03827602043747902, -0.004143312107771635, 0.0032609119080007076, -0.01474127545952797, 0.039253074675798416, -0.024426305666565895, -0.021177606657147408, -0.05637591332197189, -0.00807289406657219, -0.03417240083217621, -0.01704956218600273, -0.021104328334331512, 0.006588995922356844, 0.001587709877640009, 0.01333676278591156, -0.003456322243437171, -0.011974996887147427, -0.04614129289984703, 0.01350774709135294, -0.027039920911192894, -0.003196792909875512, -0.006243974436074495, 0.014765702188014984, 0.037909626960754395, 0.021482937037944794, -0.014326028525829315, -0.04005914181470871, 0.019785307347774506, 0.02082342654466629, -0.0063203065656125546, -0.03461207449436188, 0.0031082474160939455, -0.04367423430085182, 0.0027158998418599367, -0.027992546558380127, -0.019394487142562866, -0.002703686710447073, 0.007315678521990776, -0.01637783832848072, -0.023473680019378662, -0.003057868219912052, -0.016255706548690796, 0.035589128732681274, -0.03224272280931473, 0.011901717633008957, 0.0015648102853447199, 0.04350325092673302, -0.02928714081645012, -0.035491421818733215, -0.013654305599629879, -0.008500354364514351, -0.025525489822030067, -0.0001881588832475245, 0.02672237902879715, 0.0006102760089561343, 0.02657582052052021, 0.0020533364731818438, -0.026258278638124466, -0.005526451859623194, -0.018686125054955482, -0.025501063093543053, -0.006127949804067612, -0.004528026562184095, 0.017843415960669518, -0.005648583173751831, 0.0465809665620327, -0.024853765964508057, -0.020908918231725693, 0.030044356361031532, 0.046312276273965836, -0.04237964004278183, 0.03908209130167961, -0.008927814662456512, 0.03820274397730827, -6.960543396417052e-05, 0.005053191911429167, 0.023595811799168587, -0.00047325968625955284, 0.0016167161520570517, 0.007089735474437475, 0.006857685279101133, 0.04164685308933258, 0.00270674005150795, 0.02020055614411831, -0.003734171623364091, -0.014252749271690845, -0.0014220690354704857, 0.01758694089949131, -0.01946776546537876, -0.03111911378800869, 0.020737934857606888, 0.01874719001352787, 0.01951661892235279, 0.0028929905965924263, 0.011400978080928326, -0.025745326653122902, -0.02072572149336338, 0.024438519030809402, 0.009483513422310352, -0.05896510183811188, -0.0177334975451231, -0.006918751168996096, 0.001749534159898758, 0.034563224762678146, 0.008353796787559986, -0.017525874078273773, 0.04557948559522629, 0.00299680233001709, 0.01894260011613369, 0.03063058853149414, -0.033317480236291885, 0.015400785952806473, 0.022411135956645012, -0.005193643271923065, -0.012200940400362015, -0.0451153889298439, 0.008824002929031849, 0.01966317743062973, 0.05388443171977997, 0.004424214828759432, 0.035149455070495605, -0.001958684530109167, 0.001601449679583311, 0.018783830106258392, -0.03422125428915024, -0.011749053373932838, -0.003358617192134261, -0.01966317743062973, 0.06590217351913452, -0.000961022509727627, -0.021629493683576584, -0.012603973969817162, 0.02358359843492508, 0.011431511491537094, -0.014838981442153454, 7.986256969161332e-05, 0.04272161051630974, 0.0010060585336759686, 0.007871377281844616, 0.024719422683119774, -0.014729063026607037, -0.031094687059521675, -0.019992930814623833, 0.0018548726802691817, -0.0091110123321414, 0.009410234168171883, 0.02059137634932995, -0.035198308527469635, -0.0065645696595311165, -0.025574343279004097, 0.004399788565933704, -0.007962975651025772, 0.011089542880654335, -0.01014913059771061, -0.039790451526641846, 0.022350070998072624, -0.019492192193865776, -0.014460373669862747, -0.009434660896658897, 0.022044740617275238, 0.02642926387488842, -0.015071030706167221, 0.014924473129212856, -0.003731118282303214, -0.0020792894065380096, 0.019394487142562866, 0.0049432734958827496, -0.026795657351613045, -0.002944896463304758, 0.0737185925245285, 0.01590152457356453, -0.0058348337188363075, 0.020664654672145844, 0.01533972006291151, 0.009562898427248001, 0.024365240707993507, 0.0012518481817096472, 0.013422255404293537, -0.005401266738772392, 0.008439288474619389, -0.007016456685960293, 0.06512053310871124, -0.04228193685412407, 0.021336378529667854, -0.002456370508298278, -0.02376679517328739, -0.009452980943024158, -0.0032242725137621164, 0.008976667188107967, -0.004247123841196299, -0.02373015694320202, 0.006509610451757908, -0.010533844120800495, 0.038056183606386185, 0.0073278918862342834, -0.00014817989722359926, 0.015730541199445724, 0.008622486144304276, -0.022643186151981354, 0.010100278072059155, -0.009715563617646694, -0.0017006815178319812, -0.007095842156559229, 0.04269718378782272, -0.042159803211688995, 0.05022048577666283, -0.014765702188014984, -0.0021403550636023283, -0.016878576949238777, 0.0250858161598444, 0.006454651243984699, 0.008451501838862896, -0.03299994021654129, 0.025818604975938797, -0.011443724855780602, 0.015669476240873337, 0.006863791961222887, -0.0027662792708724737, -0.0017022081883624196, -0.048241954296827316, 0.020786786451935768, 0.03370830416679382, 0.040083568543195724, 0.015022178180515766, 0.030606161803007126, -0.017025135457515717, -0.008701871149241924, -0.006140162702649832, -0.021470723673701286, 0.013898568227887154, -0.011675774119794369, 0.009562898427248001, 0.022105807438492775, -0.0038288235664367676, -0.0028502445202320814, -0.021421870216727257, 0.043894071131944656, 0.0005690566031262279, 0.03373272716999054, 0.021824903786182404, 0.025843031704425812, -0.013556599617004395, -0.031583212316036224, -0.020957769826054573, 0.03409912437200546, 0.01092466525733471, -0.05266311764717102, -0.0025739220436662436, 0.019687602296471596, -0.05153950676321983, -0.02603844180703163, -0.010283474810421467, 0.0006163825746625662, 0.02281416952610016, 0.017599154263734818, -0.019919652491807938, 0.004399788565933704, 0.051637209951877594, -0.030337471514940262, 0.01714726723730564, -0.006625635549426079, 0.0023861448280513287, 0.037079133093357086, -0.02183711715042591, 0.023107286542654037, 0.008579740300774574, -0.03478306159377098, 0.019541045650839806, 0.018881535157561302, 0.024243108928203583, 0.003819663543254137, 0.01608472317457199, -0.01980973407626152, 0.02155621536076069, 0.03817831724882126, 0.012182620353996754, 0.009801055304706097, -0.02662467397749424, 0.007059202529489994, -0.018234238028526306, 0.05139295011758804, -0.02569647505879402, -0.0477290041744709, -0.019394487142562866, 0.027088774368166924, 0.0062592411413788795, 0.005483705550432205, 0.0290917307138443, 0.005801247898489237, -0.01662210188806057, -0.006189015228301287, 0.01333676278591156, 0.03541814535856247, -0.024279749020934105, -0.01941891387104988, -0.001977004110813141, 0.0009182764333672822, 0.006851579062640667, 0.0003204044478479773, -0.012365817092359066, -0.0002251800033263862, 0.00884232297539711, -0.05823231488466263, -0.0004675347590819001, 0.029531404376029968, 0.030752720311284065, 0.005920325871556997, 0.0017251078970730305, -0.0068271527998149395, 0.0013388668885454535, 0.008311050944030285, 0.023412615060806274, 0.012579547241330147, 0.00114192976616323, 0.027968119829893112, -0.0042013246566057205, 0.03339076042175293, -0.025061389431357384, -0.011614708229899406, -0.03610207885503769, 0.01543742511421442, 0.01613357476890087, 0.019919652491807938, -0.009172078222036362, -0.027577299624681473, 0.0006778300157748163, 0.006613422185182571, 0.011468150652945042, -0.010375073179602623, -0.02159285545349121, 0.009770522825419903, 0.011095649562776089, -0.006121843121945858, -0.01323905773460865, 0.0451153889298439, 0.026649100705981255, 0.026160573586821556, -0.009330849163234234, -0.016512183472514153, 0.019846374168992043, -0.024902619421482086, 0.012396350502967834, -0.004711223766207695, -0.032389283180236816, -0.001789226895198226, 0.03419682756066322, -0.00704088294878602, 0.0008762937504798174, 0.03414797782897949, 0.02608729526400566, 0.03734782338142395, 0.029946651309728622, 0.005474545992910862, 0.003441056003794074, -0.026307132095098495, 0.008579740300774574, -0.007932443171739578, -0.0050104460678994656, 0.004451694432646036, 0.01918686367571354, 0.0062714540399611, -0.020212767645716667, -0.027504021301865578, -0.010930771939456463, 0.020457031205296516, 0.0009259096696041524, 0.03058173507452011, -0.0011014736955985427, 0.016976282000541687, 0.0007686653407290578, -0.03280453011393547, -0.0222279392182827, -0.032633546739816666, -0.054763779044151306, -0.013031434267759323, 0.005147844087332487, -0.0108269602060318, 0.020505884662270546, 0.022362282499670982, -0.026014016941189766, 0.01967538893222809, 0.01855177991092205, 0.007657647132873535, 0.0038685163017362356, -0.019895225763320923, -0.004973806440830231, 0.035979948937892914, 0.023168351501226425, 0.07088514417409897, -0.004650157876312733, -0.03627306595444679, -0.0003301367978565395, 0.0021739413496106863, -0.005080671515315771, 0.010063637979328632, 0.006662275176495314, -0.00799350906163454, 0.03392814099788666, -0.020420391112565994, 0.017269399017095566, -0.011199461296200752, 0.0031815264374017715, 0.004399788565933704, -0.035296011716127396, -0.0045249732211232185, -0.006332519929856062, 0.01614578813314438, -0.037909626960754395, 0.0020350166596472263, 0.014093978330492973, 0.0045402394607663155, -0.024585077539086342, -0.002135775052011013, 0.01408176589757204, 0.003157100174576044, -0.015376360155642033, 0.007443916983902454, 0.024389667436480522, 0.027601726353168488, 0.02358359843492508, -0.03419682756066322, 0.0048028226010501385, 0.020371539518237114, 0.0008686605142429471, -0.004476120695471764, -0.007865270599722862, 0.03729896992444992, 0.017989974468946457, -0.0065157171338796616, 0.007028669584542513, 0.017892269417643547, 0.01284823752939701, 0.010710935108363628, 0.023461466655135155, -0.029531404376029968, -0.05901395529508591, 0.04704506695270538, 0.006937070749700069, 0.04521309211850166, 0.017806777730584145, -0.009910973720252514, -0.01417947094887495, -0.0028716176748275757, -0.030019929632544518, 0.0418422631919384, -0.029458126053214073, -0.029067303985357285, -0.012750531546771526, -0.0030456550884991884, 0.022264577448368073, -0.006283667404204607, 0.008976667188107967, 0.00657067634165287, -0.022142445668578148, -0.018783830106258392, -0.005053191911429167, 0.009642284363508224, -0.044333744794130325, 0.0025525488890707493, -0.00705309584736824, 0.0009343062411062419, 0.00025323210866190493, 0.03744552657008171, 0.01198720932006836, -0.03155878931283951, 0.02175162546336651, -0.0003354800574015826, -0.019992930814623833, -0.0031876328866928816, -0.0006965313805267215, -0.004586039111018181, 0.03131452575325966, -0.005379893817007542, -0.02711319923400879, 0.027284184470772743, -0.005932539235800505, 0.029653536155819893, 0.010057531297206879, 0.0030029090121388435, 0.011816225945949554, -0.0041677383705973625, 0.006588995922356844, 0.026697952300310135, -0.002987642539665103, -0.013031434267759323, -0.006338626611977816, 0.00760879460722208, 0.0036242532078176737, -0.01427717600017786, -0.011181141249835491, -0.020933344960212708, -0.014069552533328533, -0.005816514138132334, 0.015009964816272259, -0.017037348821759224, 0.00166404212359339, -0.002638041041791439, -0.02271646447479725, -0.06306872516870499, 0.00015800766414031386, 0.024475159123539925, -0.010265154764056206, 0.007633220870047808, -0.0034746420569717884, 0.006717234384268522, -0.023498106747865677, 0.02087227813899517, -0.02608729526400566, -0.0012106287758797407, -0.016402265056967735, 0.02894517220556736, 0.0022930195555090904, -0.01763579249382019, -0.0051264711655676365, -0.01593816466629505, 0.012823810800909996, 0.028920747339725494, 0.023229416459798813, -0.004408948123455048, 0.00838432926684618, 0.04382079467177391, 0.023791221901774406, -0.02879861555993557, 0.008988880552351475, -0.02479270100593567, 0.007657647132873535, 0.025965163484215736, 0.01101626455783844, -0.015864886343479156, 0.03234042972326279, -0.07767565548419952, -0.0027449061162769794, -0.00845760852098465, 0.015522917732596397, -0.016512183472514153, -0.01827087625861168, 0.021947035565972328, -0.001551833818666637, 0.0065035042352974415, 0.013300123624503613, 0.0077797784470021725, 0.03512502834200859, 0.03082599863409996, -0.019895225763320923, -0.018051039427518845, 0.01825866475701332, 0.018576206639409065, 0.013739797286689281, -0.0010671243071556091, -0.006778299808502197, -0.0177334975451231, -0.012701679021120071, -0.0025571289006620646, -0.00289909727871418, 0.002589188516139984, -0.028236810117959976, -0.034563224762678146, -0.024389667436480522, -0.035686831921339035, -0.054568368941545486, -0.023449253290891647, 0.0029601629357784986, -0.019443340599536896, 0.00903773307800293, 0.020163916051387787, -0.0020151701755821705, -0.010784214362502098, -0.0002648727677296847, 0.013165779411792755, 0.013898568227887154, -0.020750146359205246, -0.007785885129123926, 0.02711319923400879, 0.014289389364421368, -0.009165971539914608, -0.01632898487150669, 0.025720899924635887, 0.02440188080072403, 0.035979948937892914, -0.05637591332197189, 0.01304364763200283, -0.019626537337899208, -0.0216539204120636, -0.06165199726819992, 0.011541429907083511, 0.03290223330259323, 0.02682008408010006, 0.009391915053129196, 0.004799769259989262, 0.025134669616818428, 0.027381889522075653, -0.059355925768613815, -0.011883397586643696, -0.03053288348019123, -0.01957768388092518, -0.015828246250748634, 0.03561355546116829, 0.004451694432646036, 0.013764224015176296, 0.0002887265582103282, 0.004158578813076019, -0.00705309584736824, 0.0025265959557145834, -0.0037066920194774866, -0.0003354800574015826, 0.035784538835287094, -0.03441666439175606, -0.044822271913290024, 0.006265347357839346, -6.521632894873619e-05, -0.01541299931704998, -0.011828438378870487, -0.029824519529938698, 0.024621715769171715, 0.018722763285040855, 0.026746805757284164, 0.018234238028526306, -0.007798098027706146, 0.00801793485879898, -0.01551070436835289, -0.0235347468405962, 0.012750531546771526, -0.03695699945092201, 0.0072790393605828285, 0.015913737937808037, 0.003447162453085184, -0.003926528617739677, 0.0014999278355389833, 0.01797776110470295, 0.01162081491202116, -0.013165779411792755, 0.0046409983187913895, 0.001584656652994454, 0.005392107181251049, 0.006375265773385763, 0.0016686220187693834, 0.013617665506899357, -0.042159803211688995, 0.011022370308637619, -0.009367488324642181, -0.004210484679788351, -0.02420646883547306, 0.03639519587159157, -0.004460853990167379, 0.005630263593047857, 0.02270425111055374, 0.0021647813264280558, -0.024243108928203583, -0.01657324843108654, 0.004677637480199337, 0.06121232360601425, -0.004433374386280775, -0.010106383822858334, 0.0019953239243477583, -0.010991837829351425, 0.004463907331228256, -0.03935077786445618, 0.017452595755457878, -0.029018452391028404, 0.020334899425506592, -0.011877291835844517, -0.014582504518330097, -0.05232114717364311, -0.015461851842701435, 0.015742754563689232, 0.014875620603561401, -0.03439223766326904, 0.00732178520411253, 0.04247734695672989, -0.01918686367571354, -0.006430224981158972, -0.04450472816824913, 0.020713508129119873, 0.005624156910926104, -0.003117407439276576, 0.00949572678655386, 0.01514430996030569, -0.02870091050863266, 0.0134833212941885, 0.019064731895923615, -0.0035234945826232433, 0.01017355639487505, 0.017135053873062134, -0.03058173507452011, -0.031632065773010254, -0.012603973969817162, -0.03385486081242561, -0.022240152582526207, 0.00019884540233761072, 0.003776917699724436, 0.0190403051674366, -0.006048563867807388, -0.006466864608228207, 0.004143312107771635, 0.006344732828438282, 0.04088963568210602, -0.006863791961222887, -0.01923571527004242, -0.02062801644206047, -0.01200552936643362, -0.028481073677539825, -0.020750146359205246, -0.01599923148751259, -0.0023769850376993418, -0.01971202902495861, -0.02449958585202694, 0.00925146322697401, 0.053933285176754, 0.006546250078827143, 0.006014978047460318, -0.0037921839393675327, 0.029458126053214073, 0.07025005668401718, -0.014655783772468567, 0.029018452391028404, 0.004928007256239653, -0.026209427043795586, 0.055936239659786224, 0.03883782774209976, -0.007743139285594225, -0.024731634184718132, 0.0030792411416769028, -0.04697178676724434, 0.001587709877640009, -0.014680210500955582, -0.004103619605302811, 0.023204991593956947, -0.014497012831270695, -0.0063080936670303345, 0.000577834784053266, 0.009385808371007442, 0.033024366945028305, 0.016158001497387886, 0.023742370307445526, -0.0022029473911970854, -0.006060777232050896, 0.0027678057085722685, -0.013519960455596447, 0.019174650311470032, 0.031485509127378464, 0.0027616992592811584, 0.017513660714030266, -0.008927814662456512, -0.00333419069647789, 0.01642669178545475, -0.027406316250562668, -0.005181430373340845, -0.008677445352077484, 0.009984252974390984, 0.02266761288046837, -0.024230895563960075, -0.012457416392862797, 0.029629109427332878, -0.0354669950902462, 0.0004305136390030384, -0.017025135457515717, 0.017269399017095566, 0.014497012831270695, -0.012762744911015034, -0.000970945693552494, 0.0033952565863728523, -0.01729382388293743, 0.009446874260902405, 0.0035173881333321333, -0.029629109427332878, -0.006796619854867458, -0.005908112972974777, 0.02435302734375, 0.006790513172745705, -0.05251655727624893, 0.018539566546678543, -0.015022178180515766, -0.006344732828438282, -0.0009388861362822354, -0.013825288973748684, 0.014997752383351326, -0.005456225946545601], [-0.017849046736955643, 0.04099008068442345, -0.003698117332533002, 5.72484677832108e-05, -0.023768315091729164, 0.014598581939935684, 0.04062511399388313, 0.022114571183919907, 0.015533803030848503, 0.04826655983924866, 0.013036076910793781, 0.03594900667667389, 0.008519641123712063, 0.005314796231687069, -0.06263703852891922, 0.03604025021195412, -0.03953022137284279, 0.03720357269048691, 0.013868652284145355, -0.003749440424144268, -0.0012688220012933016, 0.02869533747434616, 0.0036467942409217358, 0.05611329898238182, -0.027372341603040695, -0.012739543803036213, -0.01739284209907055, -0.003070834558457136, 0.02235407754778862, -0.04854028299450874, 0.028284752741456032, -0.020848600193858147, 0.025501897558569908, -0.009067087434232235, 0.04101289063692093, 0.02181803621351719, -0.0402829609811306, 0.030862314626574516, -0.022399699315428734, -0.027281099930405617, -0.03364516794681549, 0.07312977313995361, -0.026186205446720123, -0.03186596557497978, -0.046761080622673035, 0.040921650826931, 0.0082801328971982, -0.03323458507657051, -0.0237226951867342, 0.047080427408218384, -0.04418351873755455, 0.022650612518191338, 0.0006073238328099251, 0.06190711259841919, 0.028740957379341125, 0.04365888237953186, -0.003381624585017562, -0.00506103178486228, -0.015134623274207115, 0.023585833609104156, 0.005713975988328457, -0.005015411414206028, 0.01812276989221573, 0.047719113528728485, -0.03722638264298439, -0.030086765065789223, 0.009797017090022564, 0.035584043711423874, -0.005517237354069948, -1.3443365787679795e-05, 0.03661050647497177, 0.04587148129940033, -0.0630476251244545, -0.036633316427469254, -0.014427504502236843, 0.033713601529598236, 0.028763767331838608, 0.011142823845148087, 0.008753446862101555, 0.0285812858492136, 0.00010282448056386784, -0.0030879422556608915, -0.007983599789440632, -0.007732686121016741, 0.016788369044661522, 0.01717614382505417, -0.04270085319876671, 0.008650800213217735, -0.03585776686668396, -0.014746848493814468, -0.024384193122386932, 0.06464434415102005, 0.007304993458092213, 0.08321191370487213, 0.05401475355029106, 0.023175248876214027, 0.017974503338336945, -0.012123665772378445, -0.04625925421714783, 0.03688422963023186, 0.027577633038163185, -0.009255272336304188, -0.0012018168345093727, -0.0047873081639409065, 0.04037420451641083, -0.08111336827278137, -0.05296548083424568, 0.04295176640152931, -0.01601281948387623, -0.027919787913560867, -0.04010047763586044, -0.020540660247206688, -0.03175191581249237, 0.07472649216651917, 0.02034677378833294, 0.0025989466812461615, 0.04062511399388313, -0.06031038984656334, -0.0112853879109025, -0.013332610949873924, 0.023471781983971596, -0.008610881865024567, -0.011091500520706177, -0.06747282296419144, -0.016275137662887573, -0.0364508330821991, -0.05506402626633644, 0.008354266174137592, -0.030885124579072, -0.017438462004065514, 0.013982703909277916, -0.03437509760260582, 0.030542969703674316, -0.046053964644670486, -0.0041970922611653805, -0.017244575545191765, 0.026345878839492798, 0.02636868879199028, 0.009260975755751133, -0.006409689784049988, -0.015978604555130005, 0.0017007917631417513, 0.012785164639353752, -0.012728138826787472, -0.03314334154129028, 0.013218559324741364, 0.01497495174407959, 0.05556585267186165, 0.007316398434340954, -0.01497495174407959, 0.003983245696872473, 0.025889672338962555, 0.011724486015737057, 0.006124561186879873, -0.007527393754571676, 0.07303852587938309, -0.01145076286047697, -0.008531046099960804, -0.0030109575018286705, 0.026733653619885445, -0.0289006307721138, -0.032208122313022614, 0.04758225381374359, -0.028740957379341125, 0.011102905496954918, -0.013583524152636528, -0.018179796636104584, -0.0007962214876897633, -0.0354243703186512, 0.016320757567882538, -0.022810284048318863, -0.0018961048917844892, -0.01080637238919735, 0.023289300501346588, 0.011998209170997143, -0.002302413107827306, -0.01075504906475544, 0.02837599255144596, 0.006250017788261175, 0.0028954804874956608, -0.03150100260972977, -0.027896977961063385, -0.02424733154475689, -0.05839432775974274, -0.011000259779393673, 0.02712142840027809, 0.01613827608525753, -0.03524188697338104, 0.003407286247238517, -0.0065237414091825485, 0.03818441554903984, 0.004818672314286232, -0.051824964582920074, 0.016719937324523926, -0.0011169910430908203, 0.00020636178669519722, 0.004171430598944426, -0.031797535717487335, 0.03515064716339111, -0.013857247307896614, -0.01888691447675228, -0.05136875808238983, 0.006267125718295574, 0.01878426969051361, 0.007784009445458651, 0.0006686264532618225, 0.006985649466514587, -0.011701676063239574, 0.012796569615602493, -0.005200744606554508, -0.0031763319857418537, -0.019046587869524956, -0.021019676700234413, 0.029265593737363815, -0.03154662251472473, 0.06605858355760574, 0.02529660426080227, 0.01475825347006321, -0.007208049762994051, -0.009095600806176662, -0.01929750107228756, -0.015305700711905956, 0.06204397231340408, 8.014785271370783e-05, 0.003954732790589333, 0.05009138211607933, 0.0354243703186512, -0.000753452186472714, 0.01836227811872959, -0.07002757489681244, -0.028102269396185875, 0.021658364683389664, 0.012340364046394825, -0.007504583336412907, 0.0016323609743267298, -0.0023936540819704533, -0.02286730892956257, -0.01645761914551258, -0.010886208154261112, 0.0052663241513073444, -0.033690787851810455, 0.015100408345460892, -0.02121356502175331, 0.007441855035722256, -0.02698456682264805, -0.0027942596934735775, -0.010549756698310375, -0.005257770419120789, 0.037705399096012115, 0.005209298804402351, -0.008679312653839588, 0.010726535692811012, 0.03138694912195206, -0.0727648064494133, 0.014860900118947029, 0.01878426969051361, 0.07025567442178726, -0.01878426969051361, 0.057116951793432236, 0.013788816519081593, -0.010948936454951763, 0.005069585517048836, -0.06806588917970657, 0.010156278498470783, -0.08307505398988724, -0.017677970230579376, 0.048357803374528885, -0.030542969703674316, -0.032550275325775146, 0.0180315300822258, -0.07285604625940323, 0.004091594833880663, 0.04046544432640076, 0.022958550602197647, -0.02880938909947872, 0.006683413404971361, 0.0074133421294391155, -0.004855739418417215, 0.019069397822022438, 0.04272366315126419, -0.06989070773124695, -0.011827132664620876, 0.04229026660323143, -0.005976294633001089, -0.01308169774711132, 0.025547517463564873, 0.016811178997159004, -0.04758225381374359, -0.016263732686638832, 0.08188892155885696, 0.0700731948018074, 0.02625463716685772, -0.008513938635587692, 0.05260051414370537, 0.018396494910120964, 0.0010663807624951005, -0.0043510617688298225, 0.010452812537550926, -0.0006073238328099251, 0.0027971111703664064, 0.016058439388871193, 0.021042486652731895, -0.026414308696985245, 0.03396451473236084, -0.0552465096116066, 0.08366812020540237, -0.006101750768721104, -0.005346160382032394, 0.017267385497689247, -0.027668874710798264, -0.006677710451185703, 0.027440771460533142, -0.012408794835209846, -0.0094320522621274, -0.00651233596727252, -0.005163677968084812, -0.02919716387987137, 0.04776473343372345, -0.006318448577076197, 0.019594034180045128, 0.020802978426218033, -0.004678959492594004, 0.022969955578446388, 0.008901713415980339, 0.019742300733923912, 0.014724038541316986, 0.018271038308739662, 0.042769283056259155, -0.007133916486054659, 0.00971147883683443, -0.022730447351932526, -0.008576666936278343, 0.03512783721089363, -0.01740424707531929, 0.0021341871470212936, 0.0364508330821991, -0.019240474328398705, 0.02625463716685772, -0.015967199578881264, 0.005397483240813017, -0.0026017979253083467, -0.018214011564850807, 0.012317553162574768, 0.017643755301833153, 0.00021438102703541517, 0.008565261960029602, 0.009671560488641262, 0.018259631469845772, 0.017974503338336945, 0.019696680828928947, 0.0004747390339616686, 0.016594480723142624, -0.010464217513799667, -0.026072153821587563, -0.03182034566998482, 0.015191649086773396, 0.011251172982156277, 0.019457172602415085, -0.0019645357970148325, -0.005739637650549412, -0.008953036740422249, -0.023163843899965286, 0.027782926335930824, 0.05209868773818016, 0.014724038541316986, -0.0023152439389377832, -0.027463581413030624, -0.04904210940003395, -0.006147371605038643, -0.0386178120970726, 0.026437118649482727, -0.01354930829256773, -0.004698918666690588, -0.006324151065200567, -0.02087141014635563, 0.01012776605784893, 0.012454414740204811, 0.0285812858492136, 0.006358366459608078, 0.032846808433532715, 0.04473096877336502, 0.03334863483905792, 0.041172564029693604, -0.014986356720328331, 0.011633245274424553, 0.047308530658483505, -0.03531032055616379, -0.028421614319086075, 0.005043923854827881, 0.045301225036382675, -0.03937055170536041, -0.019958999007940292, 0.02436138316988945, -0.025433465838432312, 0.014370478689670563, -0.0003232644812669605, 0.024726347997784615, 0.06437062472105026, -0.01239738892763853, -0.03515064716339111, 0.010851992294192314, -0.06519179046154022, -0.01092612650245428, -0.04288333281874657, -0.010458515025675297, -0.024292953312397003, -0.02458948642015457, -0.03343987464904785, 0.02677927352488041, 0.014142376370728016, 0.05684322863817215, -0.013743195682764053, 0.031706295907497406, -0.01138803455978632, 0.01760953851044178, -0.0054573602974414825, 0.031683485954999924, 0.032002829015254974, 0.0379791222512722, -0.04452567547559738, 0.0142906429246068, 0.036542076617479324, -0.010492730885744095, 0.009757098741829395, -0.02901468053460121, -0.004995452240109444, -0.0020016024354845285, 0.014416099525988102, 0.013914273120462894, -0.06414251774549484, -0.02814789116382599, -0.027714494615793228, 0.05328482389450073, 0.0546078197658062, -0.06044725328683853, -0.001495499280281365, 0.003726630238816142, -0.04144628718495369, -0.004989749751985073, -0.03166067600250244, -0.05228117108345032, -0.015602233819663525, 0.03006395511329174, 0.004410938825458288, 0.027896977961063385, -0.01092612650245428, -0.0611315593123436, -0.006164479069411755, -0.0015525249764323235, -0.030223626643419266, 0.024749157950282097, -0.031136037781834602, 0.02170398458838463, 0.01551099307835102, -0.037591349333524704, -0.022753259167075157, -0.022217215970158577, -0.00938072893768549, 0.02406485006213188, -0.019365930929780006, -0.01928609423339367, 0.04069354757666588, 0.04368169233202934, 0.08686155825853348, 0.032413411885499954, 0.0726279467344284, -0.03140976279973984, 0.002812793245539069, 0.0120210200548172, -0.04379574581980705, -0.02826194278895855, -0.048996489495038986, 0.02035817876458168, 0.010150576010346413, -0.02266201749444008, -0.01951419748365879, -0.017438462004065514, 0.0036810096353292465, -0.08161519467830658, 0.012739543803036213, 0.01007074024528265, 0.009717181324958801, -0.020164290443062782, 0.010874803178012371, 0.05228117108345032, 0.019651059061288834, 0.00450788252055645, 0.013629144988954067, -0.05761877819895744, -0.008348563686013222, -0.008074840530753136, 0.01539694145321846, -0.0022639206144958735, -0.009990904480218887, -0.023996418341994286, -0.018921131268143654, 0.025661569088697433, 0.007185239344835281, 0.04564337804913521, -0.006284233182668686, 0.00014933607599232346, 0.0392564982175827, 0.043932605534791946, 0.021532908082008362, 0.0694345012307167, 0.04094446077942848, -0.04735415056347847, -0.03932492807507515, 0.027782926335930824, -0.040761977434158325, -0.019696680828928947, 0.009574616327881813, 0.03154662251472473, -0.0013151554157957435, -0.006381176877766848, 0.00416857935488224, 0.0262774471193552, 0.011091500520706177, -0.025912482291460037, -0.013286990113556385, 0.025136932730674744, 0.017860451713204384, 0.0022596437484025955, -0.01181572675704956, -0.0065693617798388, -0.003304639831185341, -0.03526470065116882, -0.0675184428691864, 0.003196291159838438, 0.012180691584944725, -0.0033502604346722364, -0.02680208347737789, 0.005340457893908024, 0.02616339549422264, -0.012807974591851234, 0.0120210200548172, 0.002335202880203724, 0.02360864356160164, -0.03583495691418648, -0.024384193122386932, 0.03629116341471672, 0.0037665481213480234, -0.009363621473312378, -0.04162876680493355, 0.02234267257153988, 0.018202606588602066, 0.006187289487570524, -0.007681363262236118, 0.006837382446974516, -0.004205645993351936, -0.002906885463744402, 0.02111091837286949, -0.007071188185364008, 0.023471781983971596, -0.023540213704109192, 0.013321205973625183, 0.008890308439731598, -0.016047034412622452, 0.0015924429753795266, -0.010458515025675297, -0.0023123924620449543, 0.003966138232499361, -0.04359045252203941, -0.03257308527827263, -0.053741030395030975, 0.03553842380642891, 0.002209746278822422, -0.0006222930387593806, 0.048677146434783936, -0.02406485006213188, -0.03978113457560539, -0.0004519287613220513, -0.016697127372026443, -0.03341706469655037, 0.052874237298965454, 0.015054787509143353, -0.01254565641283989, -0.03672455623745918, -0.04007766768336296, -0.00014969249605201185, 0.014016919769346714, 0.0012110834941267967, 0.03277837857604027, -0.0055001298896968365, -0.013503688387572765, 0.027235480025410652, 0.0018162688938900828, -0.03090793453156948, 0.019879162311553955, 0.003182034706696868, 0.00722515769302845, 0.0018433560617268085, 0.011085798032581806, 0.0038663430605083704, 0.013252775184810162, 0.05118627846240997, -0.049726419150829315, 0.0335083082318306, -0.026186205446720123, 0.022719042375683784, -0.03218531236052513, 0.028718147426843643, 0.023563023656606674, -0.010515540838241577, -0.0013800221495330334, -0.0035726607311517, 0.043499212712049484, -0.006033319979906082, 0.01699366234242916, 0.01983354240655899, -0.00024022080469876528, -0.004305440932512283, 0.024224521592259407, -0.01729019545018673, -0.019776515662670135, 0.012796569615602493, 0.003698117332533002, -0.016526050865650177, -0.023654265329241753, -0.003595470916479826, 0.0018775714561343193, 0.004778754431754351, -0.0006504494813270867, -0.040237341076135635, 0.0035298913717269897, -0.015134623274207115, 0.02764606475830078, -0.026003723964095116, -0.014803874306380749, -0.00569401727989316, -0.003487122245132923, 0.026870515197515488, -0.01487230509519577, -0.022194406017661095, -0.023973608389496803, -0.03818441554903984, 0.027782926335930824, -0.004000353626906872, -0.0022411104291677475, 0.008080543018877506, 0.016628697514533997, -0.007561609148979187, -0.005542899016290903, -0.03236779198050499, 0.06510055065155029, 0.04493625834584236, 0.021224969998002052, 0.031090417876839638, 0.04235869646072388, 0.003310342552140355, 0.012100855819880962, -0.04954393580555916, 0.02065471187233925, -0.035287510603666306, 0.025365035980939865, -0.02520536445081234, -0.0445028655230999, 0.037180762737989426, 0.0364508330821991, -0.010954638943076134, -0.0015582275809720159, 0.023494591936469078, -0.008012112230062485, -0.015784716233611107, -0.01942295767366886, 0.05629578232765198, -0.01122836209833622, -0.010304545983672142, -0.01729019545018673, 0.01960543915629387, -0.06906954199075699, 0.005488724447786808, -0.035584043711423874, -0.04026015102863312, -0.0011633244575932622, 0.027874166145920753, -0.029607748612761497, 0.004747390281409025, -0.00017651238886173815, 0.04345359280705452, -0.015077597461640835, -0.010310248471796513, -0.006421094760298729, 0.03859500214457512, 0.006198694463819265, -0.01487230509519577, 0.041081320494413376, -0.04712604731321335, -0.019149232655763626, -0.02657398022711277, 0.016411999240517616, 0.012636897154152393, 0.014302047900855541, 0.005018262658268213, -0.008953036740422249, 0.0014869454316794872, -0.04343077912926674, -0.012283338233828545, 0.01571628637611866, -0.015043382532894611, 0.026003723964095116, -0.0025105569511651993, -0.009249569848179817, -0.0870896652340889, -0.004422343801707029, -0.013503688387572765, -0.002751490566879511, 0.007436152547597885, 0.019263284280896187, 0.0029967010486871004, -0.0048044160939753056, 0.010732238180935383, -0.006700520869344473, -0.00651233596727252, -0.01719895377755165, 0.02573000080883503, -0.040967270731925964, 0.013286990113556385, 0.03765977919101715, 0.015225864946842194, -0.028512854129076004, 0.044867828488349915, 0.020928435027599335, -0.025342226028442383, 0.0189895611256361, -0.02214878611266613, 0.014552961103618145, -0.0032219525892287493, -0.018282443284988403, 0.01533991564065218, -0.009757098741829395, -0.017370032146573067, 0.01962824910879135, 0.015100408345460892, 0.007920871488749981, 0.021247779950499535, -0.05684322863817215, 0.006729033775627613, 0.0033360039815306664, 0.02066611684858799, -0.002014433266595006, -0.007738389074802399, 0.02214878611266613, -0.04546089470386505, 0.008776256814599037, -0.010834884829819202, 0.010219006799161434, 0.01855616644024849, -0.025456277653574944, 0.002316669560968876, 0.012135070748627186, 0.006181586999446154, -0.023677075281739235, -0.01423361711204052, 0.008747744373977184, -0.009129815734922886, 0.02192068286240101, 0.003418691223487258, 0.018111364915966988, 0.010270330123603344, 0.015134623274207115, 0.02065471187233925, 0.015568018890917301, 0.02413327991962433, 0.0017820533830672503, 0.0010478474432602525, -0.008000707253813744, 0.028239130973815918, 0.006609279662370682, 0.03134132921695709, -0.01191837340593338, 0.002444977406412363, 0.029607748612761497, 0.030816692858934402, 0.017552513629198074, 0.0037808045744895935, -0.04664703086018562, 0.00954610388725996, 0.009762801229953766, -0.03015519492328167, -0.026072153821587563, 0.005289134569466114, -0.009700072929263115, 0.02287871576845646, 0.014302047900855541, -0.006979946978390217, 0.006426797714084387, 0.02152150310575962, 0.012351769022643566, 0.011621839366853237, -0.008405589498579502, 0.01260268222540617, -0.01359492912888527, -0.027372341603040695, -0.022627802565693855, -0.019582629203796387, -0.005491575691848993, -0.03015519492328167, 0.03314334154129028, 0.004473667126148939, 0.03339425474405289, 0.022433914244174957, -0.008462615311145782, 0.023745505139231682, 0.04336234927177429, 0.003609727369621396, -0.040647927671670914, -0.02604934386909008, 0.0533304437994957, -0.02520536445081234, -0.016925230622291565, 0.020016023889183998, -0.015990009531378746, 0.041400667279958725, 0.02383674681186676, -0.020392393693327904, 0.011131418868899345, 0.027052996680140495, -0.017643755301833153, -0.029676180332899094, 0.029288405552506447, -0.03754572570323944, -0.020905625075101852, 0.005072436761111021, 0.015271484851837158, 0.010966043919324875, -0.026961755007505417, 0.0029482292011380196, -0.03658769652247429, 0.023448972031474113, 0.005443104077130556, 0.016297947615385056, 0.047719113528728485, -0.011941183358430862, -0.009677262976765633, 0.002648844150826335, -0.019115017727017403, 0.007829629816114902, 0.017734995111823082, 0.022912930697202682, 0.04197092354297638, -0.0152828898280859, 0.01196399424225092, 0.0012146476656198502, -0.02479477785527706, 0.052144307643175125, 0.025912482291460037, -0.019137827679514885, -0.018624596297740936, 0.04881400614976883, -0.011199849657714367, -0.0010221858974546194, 0.027486391365528107, -0.01833946816623211, 0.057527534663677216, -0.018693028017878532, -0.006979946978390217, -0.005360416602343321, -0.04124099388718605, 0.010435705073177814, -0.017541108652949333, 0.011599029414355755, -0.0008254471467807889, 0.02131620980799198, 0.024292953312397003, -0.016263732686638832, 0.00016305789176840335, 0.007652850355952978, -0.01376600656658411, 0.014826684258878231, 0.03576652705669403, -0.03234498202800751, 0.03195720911026001, -0.04051106423139572, -0.029288405552506447, -0.03036048822104931, 0.018590381368994713, -0.018601786345243454, 0.014279237948358059, 0.03474006429314613, -0.005172231700271368, -0.021966302767395973, 0.0030850910115987062, -0.0051836371421813965, -0.025159742683172226, -0.038549378514289856, -0.034968163818120956, 0.048996489495038986, -0.004085892345756292, -0.018065745010972023, 0.02593529224395752, 0.05022824555635452, 0.02318665385246277, -0.014712633565068245, -0.004918467719107866, 0.005132313817739487, 0.000602334039285779, -0.03656488656997681, -0.018590381368994713, 0.019856352359056473, -0.05812060460448265, 0.0035669582430273294, -0.01635497435927391, 0.025798430666327477, -0.011405142024159431, -0.0008147548069246113, 0.0041343639604747295, -0.006004807073622942, 0.014153781346976757, -0.018704432994127274, -0.009722883813083172, -0.016856800764799118, -0.020917030051350594, -0.001583889126777649, 0.03763696923851967, 0.027258289977908134, -0.03544718027114868, 0.01781483180820942, 0.029904281720519066, 0.029242783784866333, 0.020951244980096817, 0.027896977961063385, -0.03382765129208565, 0.003524188883602619, -0.001870443345978856, 0.006911516189575195, -0.041400667279958725, 0.01196399424225092, -0.010726535692811012, -0.01624092273414135, -0.006711925845593214, 0.03070264309644699, -0.008308646269142628, 0.036747366189956665, 0.01434766873717308, 0.00508954469114542, 0.002262494992464781, 0.006267125718295574, 0.007031269837170839, -0.07125932723283768, 0.039507411420345306, -0.030178004875779152, -0.002219725865870714, -0.01625232771039009, -0.041195373982191086, -0.009939581155776978, 0.028421614319086075, 0.012043830007314682, 0.000974426802713424, 0.011781511828303337, -0.005095247179269791, -0.015271484851837158, 0.006335556507110596, -0.005514386110007763, -0.009335109032690525, 0.017951693385839462, 0.05018262565135956, 0.02097405679523945, -0.01074934657663107, 0.0019730895292013884, 0.01381162740290165, 0.008416994474828243, 0.05364978685975075, -0.040009237825870514, 0.05634140223264694, 0.0026132031343877316, -0.031181657686829567, -0.008656502701342106, 0.028125079348683357, 0.025045691058039665, -0.008365672081708908, 0.024612296372652054, 0.03982675448060036, 0.03131851926445961, -0.018293848261237144, -0.00240078242495656, 0.021977707743644714, -0.03576652705669403, 0.04703480750322342, 0.02753201313316822, 0.0331205315887928, 0.011262577958405018, 0.015739096328616142, 0.004422343801707029, 0.014165186323225498, 0.02648274041712284, 0.006825977470725775, 0.006962839048355818, -0.0029197162948548794, 0.0084398053586483, -0.006135966628789902, -0.03882310166954994, 0.011792916804552078, 0.013446662575006485, -0.001793458592146635, 0.007977896369993687, -0.0023366285022348166, -0.009779909625649452, 0.016799774020910263, -0.02666522189974785, 0.036975469440221786, 0.006529443897306919, -0.023699885234236717, 0.031067606061697006, 0.007219454739242792, -0.008462615311145782, -0.023061197251081467, -0.0013907145475968719, -0.005850838031619787, 0.005542899016290903, 0.03332582488656044, -0.008479722775518894, 0.003860640572384, 0.014849495142698288, -0.030406108126044273, 0.0015525249764323235, -0.020529255270957947, -0.020095860585570335, -0.011530598625540733, 0.02152150310575962, 0.023699885234236717, 0.00654084887355566, 0.016811178997159004, -0.008542451076209545, 0.0049840472638607025, -0.03323458507657051, 0.04037420451641083, 0.03150100260972977, 0.019126422703266144, 0.011770106852054596, -0.02488601952791214, 0.0008518215618096292, 0.02794259786605835, 0.04395541548728943, 0.0007007034146226943, 0.05547460913658142, -0.0014883710537105799, -0.0164348091930151, -0.01312731858342886, -0.013788816519081593, 0.0014284939970821142, 0.018750052899122238, -0.045392464846372604, -0.009049979969859123, -0.008576666936278343, 0.02983585186302662, 0.007419045083224773, 0.013446662575006485, 0.0019174894550815225, -0.007578717079013586, -0.013001861982047558, 0.013412446714937687, -0.029767420142889023, -0.022125976160168648, -0.03067983128130436, -0.03154662251472473, -0.03125008940696716, -0.01992478221654892, -0.008673610165715218, -0.013503688387572765, 0.023494591936469078, -0.028604095801711082, -0.007036972790956497, -0.004544949159026146, 0.039803944528102875, -0.026094965636730194, -0.05027386546134949, 0.014621391892433167, -0.009295190684497356, 0.02424733154475689, -0.031592242419719696, 0.009614534676074982, -0.00017009700241032988, 0.01360633410513401, 0.012773758731782436, 0.001760668819770217, -0.007527393754571676, -0.014678417704999447, 0.010561161674559116, 0.0022040437906980515, 0.020917030051350594, -0.018932536244392395, 0.01197539921849966, 0.010783561505377293, -0.03325739502906799, -0.004735985305160284, -0.01740424707531929, 0.009392134845256805, -0.01602422446012497, -0.0015739095397293568, -0.000776975299231708, 0.031044796109199524, -0.017529703676700592, 0.026733653619885445, 0.0025176850613206625, -0.015853147953748703, 0.023494591936469078, 0.0042341588996350765, 0.040146101266145706, -0.028216321021318436, 0.004770200699567795, 0.00251625943928957, 0.011245469562709332, 0.0023109668400138617, 0.021989114582538605, -0.01657167077064514, -0.029470887035131454, -0.0033217475283890963, -0.0001391783735016361, 0.003812168724834919, -0.0094320522621274, -0.001598145579919219, 0.034215424209833145, -0.0065864697098731995, 0.010737941600382328, 0.012374578975141048, -0.02047223038971424, -0.02573000080883503, 0.02887781895697117, -0.012408794835209846, 0.01928609423339367, -0.04324829950928688, -0.010327355936169624, -0.00780681986361742, 0.010555459186434746, 0.009700072929263115, -0.000876770296599716, 0.023471781983971596, 0.014746848493814468, 0.007179536856710911, -0.03998642787337303, -0.020860005170106888, -0.002828475320711732, -0.02817070111632347, -0.005497278645634651, -0.010583971627056599, 0.03300648182630539, 0.00500970846042037, 0.02974461019039154, -0.0012645451352000237, 0.016913825646042824, 0.03079388290643692, 0.0003667465934995562, 0.020597686991095543, -0.02782854624092579, -0.005591371096670628, -0.004678959492594004, 0.060492873191833496, 0.009973797015845776, -0.01475825347006321, 0.019958999007940292, 0.07253669947385788, -0.012454414740204811, 0.023973608389496803, 0.01993618905544281, 0.007595824543386698, -0.002951080445200205, -0.023585833609104156, -0.007538798730820417, -2.296621460118331e-05, 0.012522845529019833, -0.01781483180820942, -0.010971746407449245, -0.006843085400760174, -0.012671113014221191, 0.049087733030319214, -0.006609279662370682, 0.018955346196889877, 0.006729033775627613, 0.032436225563287735, -0.01909220777451992, 0.002088566543534398, -0.04176563024520874, -0.02320946380496025, 0.008673610165715218, -0.01729019545018673, 0.01856757141649723, 0.011872752569615841, -0.003002403536811471, -0.012157881632447243, -0.014860900118947029, 0.007458962965756655, -0.013207154348492622, -0.0343979075551033, 0.027509203180670738, 0.009203949943184853, 0.012876405380666256, 0.02427014149725437, 0.0012595553416758776, 0.004122958984225988, -0.03259589523077011, 0.011770106852054596, 0.015157434158027172, -0.042541179805994034, 0.0063697719015181065, -0.007036972790956497, -0.006837382446974516, 0.02140745148062706, 0.002295284764841199, 0.003797912271693349, -0.012135070748627186, -0.011507788673043251, -0.005565709434449673, 0.006358366459608078, 0.0009801293490454555, 0.017792021855711937, 0.013959893956780434, -0.007744091562926769, -0.015419752337038517, -0.020506445318460464, 0.020198507234454155, 0.006210099905729294, -0.0043339538387954235, 0.008462615311145782, 0.006637792568653822, -0.03448915109038353, -0.0061701820231974125, 0.018385088071227074, 0.011838537640869617, 0.004348210524767637, 0.015465372242033482, 0.0019645357970148325, -0.0040174610912799835, -0.035698093473911285, 0.014073945581912994, -0.02043801359832287, -0.01122265961021185, -0.014940735884010792, -0.01950279250741005, 0.03795631229877472, 0.01360633410513401, -0.0055200885981321335, 0.0054573602974414825, 0.004522138740867376, 0.008234512992203236, 0.02436138316988945, 0.036428023129701614, 0.0059363762848079205, -0.002770023886114359, 0.008667907677590847, 0.013925678096711636, 0.02427014149725437, -0.028946250677108765, -0.00780681986361742, -0.04977203905582428, -0.019069397822022438, -0.0058736479841172695, 8.61622829688713e-05, -0.013937083072960377, 0.02047223038971424, 0.041400667279958725, -0.004445154219865799, -0.020837195217609406, 0.012693922966718674, 0.01007074024528265, -0.029060302302241325, -0.01970808580517769, -0.011057285591959953, 0.013195749372243881, -0.0018362278351560235, -0.013857247307896614, -0.040328580886125565, -0.035606853663921356, 0.011045879684388638, -0.02541065588593483, 0.011673162691295147, -0.02383674681186676, 0.024612296372652054, -0.04176563024520874, -0.008320051245391369, -0.00654084887355566, 0.014587176963686943, -0.029653368517756462, 0.014997761696577072, 0.008873200044035912, 0.015111813321709633, -0.024384193122386932, -0.003686712123453617, -0.004698918666690588, -0.019331716001033783, 0.02940245531499386, -0.011758701875805855, 0.0008468317682854831, -0.0017991611966863275, -0.010549756698310375, 0.005605627316981554, 0.008570964448153973, -0.030178004875779152, 0.003013808745890856, -0.026505550369620323, -0.046464547514915466, -0.0030879422556608915, -0.0023366285022348166, -0.023540213704109192, 0.02278747409582138, 0.009169734083116055, 0.018328063189983368, -0.008924523368477821, -0.010082145221531391, 0.005209298804402351, 0.014381883665919304, -0.01686820574104786, -0.031706295907497406, -0.008992954157292843, -0.00959742721170187, 0.017529703676700592, 0.004442302975803614, 0.007533096242696047, 0.004812969826161861, -0.0177121851593256, 0.009289488196372986, 0.002003028057515621, 0.00833715870976448, 0.01533991564065218, 0.012853595428168774, 0.0014826684491708875, -0.035469990223646164, 0.004006056115031242, -0.05050196871161461, 0.006078940816223621, 0.03711233288049698, -0.022502345964312553, -0.009859745390713215, 0.0262774471193552, 0.0043139951303601265, -0.04007766768336296, 0.0006026904447935522, 0.021224969998002052, -0.014051134698092937, -0.00240078242495656, -0.03366797789931297, -0.011895563453435898, 0.0072764805518090725, -0.02835318259894848, -0.016411999240517616, 0.02151009812951088, -0.005622734781354666, 0.03588057681918144, -0.022490939125418663, 0.03120446763932705, -0.014781064353883266, 0.001856186892837286, -0.02290152572095394, -0.03234498202800751, -0.01984494738280773, 0.01677696406841278, -0.02541065588593483, 0.0025832646060734987, -0.02203473448753357, -0.00567120686173439, -0.006335556507110596, -0.008947334252297878, 0.001965961419045925, 0.006768951658159494, -0.02383674681186676, 0.03451196104288101, 0.013412446714937687, 0.015237269923090935, -0.00014657388965133578, 0.03257308527827263, 0.009996606968343258, 0.03038329817354679, 0.00019727331527974457, 0.03804755210876465, 0.004607677459716797, 0.022741852328181267, -0.03405575454235077, 0.02216019108891487, -0.010954638943076134, -0.00822880957275629, -0.057938121259212494, 0.010156278498470783, 0.021281994879245758, 0.00769847072660923, -0.01002511940896511, 0.017541108652949333, -0.08079402893781662, 0.009631642140448093, 0.03585776686668396, -0.003863491816446185, -0.00838277954608202, -0.0364508330821991, 0.014689822681248188, 0.0047302828170359135, 0.03166067600250244, -0.03036048822104931, -0.002099971752613783, -0.017484081909060478, -0.02963055856525898, -0.0028013880364596844, -0.005497278645634651, 0.010578269138932228, -0.02732671983540058, -0.014575771056115627, -0.004818672314286232, 0.007886655628681183, -0.02584405243396759, 0.03437509760260582, -0.02287871576845646, -0.02477196790277958, -0.008827580139040947, 0.005796663463115692, -0.018795674666762352, 0.03250465542078018, -0.0060105100274086, -0.013001861982047558, -0.023745505139231682, 0.0030223627109080553, -0.017951693385839462, 0.013743195682764053, 0.019787920638918877, 0.04753663018345833, 0.013503688387572765, -0.016297947615385056, 0.018601786345243454, -0.0571625716984272, 0.04922459274530411, -0.01497495174407959, -0.030748263001441956, -0.02712142840027809, 0.01561363972723484, -0.012819379568099976, 0.005896458402276039, -0.021761011332273483, 0.01423361711204052, 0.0004693928640335798, -0.016811178997159004, 0.03829846531152725, 0.009990904480218887, 0.036952659487724304, -0.003281829645857215, 0.004641892854124308, 0.030178004875779152, 0.022319862619042397, 0.003914814908057451, 0.025912482291460037, -0.03715795278549194, 0.03699827939271927, 0.026437118649482727, 0.028421614319086075, 0.03036048822104931, -0.012465820647776127, -0.009181139059364796, 0.009232462383806705, -0.02573000080883503, -0.014279237948358059, 0.0027343828696757555, -0.009660155512392521, 0.002581838984042406, 0.032094068825244904, 0.023471781983971596, 0.001288781058974564, -0.016081249341368675, 0.008188892155885696, -0.017358625307679176, 0.021236374974250793, 0.004359615501016378, -0.02235407754778862, 0.0036040248814970255, 0.03346268832683563, -0.02003883384168148, 0.014416099525988102, -0.02951650694012642, -0.023768315091729164, 0.01580752618610859, 0.047308530658483505, 0.026916135102510452, 0.01487230509519577, 0.02131620980799198, -0.03257308527827263, -0.02869533747434616, 0.03677017614245415, -0.023448972031474113, -0.012146476656198502, -0.016833988949656487, -0.02067752182483673, -0.028284752741456032, 0.02203473448753357, 0.011205552145838737, -0.0035013786982744932, -0.06437062472105026, -0.007972193881869316, -0.00048436212819069624, -0.007624337449669838, -0.02529660426080227, 0.007601527031511068, -0.0038863022346049547, -0.0017663714243099093, 0.008148973807692528, -0.0034272451885044575, 0.03204844892024994, -0.027395151555538177, 0.02901468053460121, -0.017677970230579376, 0.03629116341471672, -0.00843410287052393, 0.008559559471905231, 0.020517850294709206, -0.003509932430461049, 0.015203054063022137, 0.03731762617826462, 0.012819379568099976, -0.008935928344726562, 0.01971949078142643, -0.004462261684238911, 0.011781511828303337, -0.023768315091729164, -0.010680915787816048, 0.01060107909142971, -0.004718877375125885, 0.022947145625948906, 0.05291985720396042, -0.00828583538532257, -0.006609279662370682, -0.010258925147354603, 0.037477295845746994, 0.05565709248185158, -0.005226406268775463, -0.02764606475830078, 0.008947334252297878, -0.021487288177013397, 0.019548414275050163, -0.020962651818990707, -0.0035156349185854197, 0.0030195112340152264, -0.011553408578038216, 0.012351769022643566, 0.016799774020910263, -0.042130593210458755, 0.044981878250837326, -0.008086245507001877, 0.007373424246907234, -0.0029083113186061382, -0.007977896369993687, -0.02614058554172516, 0.004633339121937752], [0.01441311463713646, -0.018566593527793884, 0.022569037973880768, -0.009326450526714325, -0.0076758465729653835, -0.02328106388449669, 0.003867591032758355, -0.012363345362246037, 0.042656779289245605, 0.015642976388335228, -0.005696200765669346, 0.029063571244478226, 0.03357306122779846, -0.04172898828983307, -0.031566448509693146, -0.01640894263982773, 0.016042141243815422, 0.010631829500198364, 0.018275311216711998, -0.03163117542862892, 0.007368381135165691, 0.033896710723638535, -0.022849533706903458, 0.010658800601959229, 0.00016098105697892606, 0.02272007428109646, 0.030746538192033768, 0.020227985456585884, 0.025460291653871536, -0.026668576523661613, 0.028243662789463997, -0.018534230068325996, 0.03717634081840515, 0.034241933375597, 0.05005752295255661, -0.009482880122959614, -0.009191596880555153, -0.061363618820905685, 0.031436987221241, -0.04975545033812523, -0.014531785622239113, 0.02802789770066738, 0.00969864521175623, -0.021188141778111458, 0.027768978849053383, 0.07003737986087799, 0.009153838269412518, -0.0017058935482054949, -0.03022870235145092, 0.01075589470565319, -0.014520997181534767, -0.006235613953322172, -0.03562283143401146, -0.014477844350039959, 0.03480292484164238, 0.0072389221750199795, -0.007093280553817749, 0.007654270157217979, 0.012266251258552074, 0.018307676538825035, 0.0019391896203160286, 0.00640822621062398, -0.0017948966706171632, 0.09424623101949692, -0.018566593527793884, 0.011262943036854267, 0.004296424333006144, 0.056228406727313995, -0.040844351053237915, 0.009024378843605518, 0.024899302050471306, 0.03911822661757469, -0.03158802166581154, -0.04509492218494415, 0.026280200108885765, -0.001152995158918202, 0.008182894438505173, 0.0011583893792703748, -0.0023882510140538216, 0.030401315540075302, -0.020605575293302536, 0.024338312447071075, 0.004291030112653971, 0.015578246675431728, 0.019408078864216805, 0.014650456607341766, -0.004261362366378307, 7.678206748096272e-05, -0.005353673826903105, 0.01622554287314415, -0.011467919684946537, 0.029905054718255997, 0.02008773945271969, 0.03247265890240669, 0.00949366856366396, 0.0007801260217092931, 0.051395267248153687, -0.024597231298685074, -0.09467776119709015, 0.05381183698773384, -0.01511435117572546, -0.028955688700079918, 0.00022486777743324637, 0.005013843532651663, 0.028222085908055305, -0.10520710796117783, -0.024510925635695457, 0.026841189712285995, -0.008992014452815056, -0.03122122213244438, -0.02535240910947323, -0.015071198344230652, -0.017574073746800423, 0.06831125915050507, -0.012072062119841576, -0.022353272885084152, 0.0074115339666605, 0.047511495649814606, 0.009499062784016132, 0.031005457043647766, 0.014564150013029575, 0.0036814934574067593, 0.014574938453733921, -0.04483600705862045, 0.006532290950417519, 0.008069617673754692, -0.029991360381245613, -0.01788693480193615, -0.025287680327892303, 0.0054885270074009895, 0.04129745811223984, -0.02169518917798996, 0.0068990918807685375, -0.04436132311820984, -0.02524452656507492, -0.05739353969693184, 0.043627720326185226, 0.01691599003970623, -0.025740787386894226, -0.026927495375275612, 0.03601120784878731, 0.0009817315731197596, 0.06546315550804138, -0.014456267468631268, -0.03171748295426369, -0.01281645242124796, 0.006828967947512865, 0.05079112574458122, 0.014898586086928844, 0.006548473611474037, -0.020702669396996498, 0.04785671830177307, -0.018469499424099922, 0.02054084651172161, 0.007023156620562077, 0.030056091025471687, 0.00010080279753310606, 0.020896857604384422, 0.006160096265375614, 0.0038460143841803074, -0.029365641996264458, -0.02772582694888115, -0.017185697332024574, -0.008339324034750462, -0.007508628536015749, 0.018739206716418266, -0.032494235783815384, -0.018307676538825035, -0.043476685881614685, -0.01051315851509571, -0.05588318407535553, -0.026409659534692764, -0.03076811507344246, -0.004892475437372923, -0.016883626580238342, -0.013506900519132614, 0.0009102593758143485, 0.04712311550974846, -0.016754167154431343, -0.03702530637383461, -0.003894561668857932, 0.009029773063957691, -0.04975545033812523, -0.015189869329333305, -0.0052430941723287106, 0.014003160409629345, -0.04807248339056969, -0.0022345182951539755, 0.008959649130702019, 0.04884923994541168, -0.026517542079091072, 0.009207779541611671, 0.014833856374025345, 0.07815015316009521, 0.01387370191514492, -0.03493238240480423, -0.05355291813611984, -0.003843317274004221, 0.003905349876731634, -0.000724836194422096, 0.015362481586635113, -0.021112622693181038, -0.004393518436700106, -0.01337744202464819, -0.007783729117363691, 0.004668619018048048, 0.017520133405923843, 0.03672323375940323, 0.05130895972251892, 0.018717629835009575, -0.0045418571680784225, -0.025050338357686996, -0.0056314715184271336, 0.011813144199550152, -0.0613204650580883, -0.020983165130019188, 0.03838462755084038, -0.020206410437822342, -0.008641395717859268, 0.014154196716845036, 0.002745612058788538, -0.010977054014801979, -0.013668724335730076, -0.006753450259566307, -0.01574007049202919, 0.004304515663534403, -0.018156640231609344, -0.033616214990615845, 0.03754314407706261, -0.03702530637383461, -0.026646999642252922, 0.053164541721343994, 0.02243957854807377, -0.032105859369039536, 0.0010228618048131466, 0.004916748963296413, -0.0022358668502420187, -0.08212023228406906, 0.012330980040133, 0.03922611102461815, 0.011446342803537846, -0.005431888625025749, -0.01547036413103342, -0.004838534165173769, 0.02373417094349861, -0.01944044418632984, -0.016667861491441727, -0.018609747290611267, 0.05588318407535553, 0.009078320115804672, -0.018696052953600883, -0.03663692995905876, -0.00877624936401844, -0.031027033925056458, 0.03465189039707184, -0.0454833023250103, 0.06239929050207138, -0.020583998411893845, 0.012633051723241806, -0.0061654900200665, 0.020400598645210266, 0.00956918578594923, -0.023647865280508995, 0.023108450695872307, -0.012535957619547844, 0.011759202927350998, 0.04768410697579384, -0.005982089787721634, -0.03173905983567238, 0.015276174992322922, -0.06045740470290184, 0.0082422299310565, 0.0014253987465053797, -0.03851408511400223, -0.010653406381607056, 0.03352991119027138, 0.004660528153181076, 0.0016114962054416537, -0.0020052676554769278, 0.06352127343416214, -0.036248549818992615, -0.031695906072854996, 0.05601264163851738, -0.01463966816663742, -0.006251796148717403, 0.003133989404886961, 0.01428365521132946, 0.004752228036522865, -0.043455109000205994, 0.05005752295255661, 0.06071632355451584, 0.0003566868253983557, -0.03881615772843361, -0.008970437571406364, 0.04136218503117561, 0.009143049828708172, -0.022504309192299843, 0.025848669931292534, -0.01919231377542019, 0.015222233720123768, 0.03519130125641823, -0.002674139803275466, 0.014877009205520153, -0.00042478772229515016, -0.026949072256684303, 0.00044164436985738575, -0.02716483734548092, 0.02156572975218296, 0.02120971865952015, -0.007497840095311403, -0.0029721653554588556, 0.07698501646518707, -0.01538405753672123, -0.03383198007941246, -0.03255896642804146, 0.06244244426488876, 0.010777470655739307, 0.003597884438931942, 0.035709138959646225, -0.0031043216586112976, -0.01778983883559704, -0.0037192523013800383, 0.06813864409923553, -0.09355578571557999, 0.062873974442482, 0.0022331697400659323, 0.033918287605047226, 0.03965764120221138, -0.0551927350461483, -0.015340904705226421, -0.024338312447071075, -0.03050919808447361, 0.0001720221625873819, -0.025978129357099533, 0.0014173075323924422, -0.011209001764655113, 0.0357738696038723, -0.024791419506072998, -0.028114203363656998, -0.06144992634654045, 0.004471733700484037, 0.00391613831743598, -0.04110326990485191, 0.046260055154561996, -0.007168798241764307, 0.0004460270865820348, 0.019666995853185654, 0.023367369547486305, -0.015081986784934998, 0.018825512379407883, 0.010718136094510555, 0.029602983966469765, -0.040973808616399765, -0.02182464860379696, -0.09113921225070953, -0.029063571244478226, 0.04004601761698723, -0.01760643906891346, -0.02899884060025215, -0.002471860032528639, -0.010917718522250652, -0.012136791832745075, 0.006009060423821211, 0.031242799013853073, -0.025481868535280228, -0.011640531942248344, 0.017714321613311768, -0.01835082843899727, 0.0449654646217823, -0.02061636373400688, 0.04686420038342476, -0.016322636976838112, -0.012654628604650497, -0.02746690809726715, 0.040973808616399765, 0.04518122971057892, 0.007309045642614365, 0.01547036413103342, -0.007443898823112249, 0.025287680327892303, 0.04412398114800453, 0.015168292447924614, 0.014596515335142612, 0.015081986784934998, 0.05653047934174538, 0.0439513698220253, -0.03132910653948784, 0.018070334568619728, -0.011899449862539768, -0.0029937420040369034, -0.05407075583934784, -0.0452243834733963, 0.006478349678218365, 0.026862766593694687, -0.04326092079281807, 0.015988200902938843, 0.03881615772843361, 0.0005107566248625517, -0.023065298795700073, -0.017207274213433266, -0.009509850293397903, -0.03698215261101723, -0.009035167284309864, -0.03922611102461815, 0.05402760207653046, -0.005766324698925018, 0.026798035949468613, -0.031695906072854996, 0.005442677065730095, -0.04492231085896492, 0.025762362405657768, -0.06826810538768768, 0.020832128822803497, 0.024618808180093765, 0.005286247003823519, -0.0066347792744636536, 0.010416064411401749, 0.017876146361231804, 0.008997408673167229, -0.012374133802950382, 0.018404770642518997, 0.020066162571310997, 0.0023531890474259853, -0.010329758748412132, -0.017574073746800423, 0.05726408213376999, 0.0038271350786089897, -0.028502581641077995, 0.005971301347017288, -0.05536534637212753, 0.006942244712263346, -0.02856731042265892, -0.030875997617840767, -0.012309404090046883, -0.044318169355392456, -0.02218066155910492, 0.004318000748753548, -0.016894415020942688, 0.012287827208638191, -0.019990645349025726, -0.013474536128342152, -0.023043721914291382, -0.011413978412747383, 0.018340039998292923, -0.06995107233524323, 0.007670452352613211, -0.02440304309129715, 0.01865290105342865, -0.007611116860061884, 0.02912830002605915, -0.009294085204601288, -0.022266967222094536, -0.059292271733284, 0.034328240901231766, -0.004067173693329096, 0.00797252357006073, -0.01637657731771469, -0.015157504007220268, 0.0485471673309803, 0.038751427084207535, 0.037111613899469376, 0.024510925635695457, 0.006753450259566307, 0.03827674314379692, 0.06645567715167999, 0.017908509820699692, 0.052646704018116, 0.011565013788640499, -0.03510499745607376, -0.03967921808362007, -0.005348279606550932, -0.013258771039545536, 0.04824509471654892, -0.0036383403930813074, -0.00880321953445673, -0.01742303930222988, 0.025050338357686996, -0.042937271296978, -0.03201955556869507, -0.03484607860445976, 0.04729573056101799, 0.03037973865866661, -0.02414412423968315, -0.01742303930222988, 0.0738348439335823, 0.050143830478191376, 0.03913980349898338, 0.02828681655228138, 0.002509618876501918, -0.054286520928144455, -0.0518699511885643, -0.0032850250136107206, 0.03260212019085884, -0.007470869459211826, -6.658378879365046e-06, -0.04274308308959007, -0.0190412774682045, 0.004148085601627827, 0.05312138795852661, -0.002574348356574774, 0.05350976809859276, -0.010265029035508633, 0.01241728663444519, -0.02003379724919796, 0.006764238700270653, 0.018685264512896538, 0.004404306877404451, 0.018566593527793884, 0.01490937452763319, -0.042484164237976074, -0.030271856114268303, 0.01241728663444519, -0.009553004056215286, -0.02003379724919796, -0.025611327961087227, -0.015405634418129921, -0.017261214554309845, 0.010184116661548615, -0.01783299259841442, -0.005561347585171461, -0.004647042602300644, -0.02067030407488346, 0.032364778220653534, 0.003071956802159548, 0.00019873995915986598, 0.046821046620607376, -0.03240793198347092, -0.03590332716703415, 0.016527613624930382, -0.005483132787048817, -0.001865020371042192, -0.043045155704021454, -0.03775890916585922, 0.054976969957351685, 0.004962599370628595, 0.018555806949734688, 0.0171209666877985, 0.028071051463484764, -0.033918287605047226, -0.010238057933747768, 0.03788836672902107, 0.013366653583943844, 0.011009418405592442, 0.0015076592098921537, 0.013938430696725845, 0.004827746190130711, -0.026970649138092995, -0.008603637106716633, 0.016516825184226036, 0.022245390340685844, -0.007530204951763153, 0.000746412668377161, 0.013970796018838882, -0.047079965472221375, 0.02356155775487423, -0.016042141243815422, -0.001788154011592269, -0.011694473214447498, 0.004695589654147625, -0.011629743501543999, -0.03814728558063507, 0.03495395928621292, 0.004005141090601683, -0.028675192967057228, 0.037823636084795, 0.029905054718255997, 0.0001201036648126319, 0.004498704336583614, 0.025309257209300995, -0.028783075511455536, -0.03447927534580231, 0.016818895936012268, 0.02343210019171238, 0.02386363036930561, 0.01091232430189848, 0.023130027577280998, 0.048029329627752304, -0.029581407085061073, 0.014456267468631268, 0.051956258714199066, 0.013506900519132614, 0.014445479027926922, 0.006068395916372538, -0.01351768895983696, 0.003910744097083807, 0.008134347386658192, -0.023475252091884613, -0.0009419498965144157, -0.03290419280529022, -0.04643266648054123, -0.0028912534471601248, -0.0099036218598485, 0.027510061860084534, -0.04768410697579384, -0.019580690190196037, 0.017153332009911537, 0.010092416778206825, 0.002394993556663394, 0.012913546524941921, 0.05704831704497337, -0.008096588775515556, 0.005013843532651663, -0.035428643226623535, 0.00515409093350172, -0.0009925198974087834, -0.02593497559428215, -0.03661535307765007, -0.0007194420322775841, 0.010270423255860806, 0.015653764829039574, 0.02968928962945938, -0.01594504714012146, -0.001188731286674738, -0.024014664813876152, -0.013420594856142998, 0.008646789938211441, -0.05502012372016907, -0.04175056517124176, -0.04298042505979538, -0.005653047934174538, -0.029754018411040306, -0.006990792229771614, -0.004393518436700106, 0.017865357920527458, -0.03870827332139015, -0.010502370074391365, -0.025827093049883842, -0.026668576523661613, -0.013194041326642036, 0.005787901114672422, -0.02115577645599842, 0.025719210505485535, 0.02701380103826523, -0.027251143008470535, -0.03745683655142784, -0.007492446340620518, -0.024230429902672768, 0.01358241867274046, -0.01171605009585619, 0.021339176222682, 0.004040203057229519, -0.003956594038754702, 0.018588170409202576, -0.03562283143401146, 0.06239929050207138, 0.026539117097854614, 0.0189118180423975, 0.03480292484164238, 0.015233022160828114, 0.012740934267640114, 0.012007332406938076, -0.007454687263816595, -0.019278619438409805, -0.012740934267640114, -0.005944330710917711, -0.020227985456585884, 0.010637223720550537, 0.02190016582608223, 0.01262226328253746, 0.04712311550974846, -0.01693756692111492, 0.010496976785361767, -0.024014664813876152, -0.003570913802832365, -0.02059478685259819, 0.011403189972043037, 0.04479285329580307, -0.0037111612036824226, 0.031415410339832306, -0.015308540314435959, -0.015286963433027267, -0.021220505237579346, 0.01115506049245596, -0.02151178941130638, -0.02259061485528946, -0.008668366819620132, 0.01014635805040598, 0.032968919724226, 0.0009358815150335431, 0.017369097098708153, -0.02524452656507492, -0.019925914704799652, -0.02882622927427292, 0.021986473351716995, -0.005178364459425211, -0.0099036218598485, 0.0017099390970543027, -0.015502728521823883, -0.013237194158136845, -0.010205693542957306, -0.002902041655033827, 0.005469647701829672, -0.01686204969882965, 0.012438862584531307, -0.009844286367297173, 0.0490650050342083, -0.004433974623680115, -0.002664700150489807, 0.035709138959646225, 0.03465189039707184, -0.007098674774169922, 0.009153838269412518, -0.023518405854701996, -0.056487325578927994, -0.024791419506072998, 0.014715185388922691, 0.020940011367201805, -0.03434981778264046, 0.02029271610081196, -0.017854569479823112, -0.03107018768787384, -0.021598095074295998, -0.030120819807052612, 0.017822204157710075, -0.03823358938097954, 0.009482880122959614, 0.04423186182975769, -0.020206410437822342, -0.008549695834517479, 0.022655345499515533, -0.032645273953676224, -0.02218066155910492, -0.034047745168209076, -0.014607302844524384, -0.002121241530403495, -0.04487915709614754, -0.013226405717432499, -0.006057607475668192, -0.02151178941130638, 0.01547036413103342, 0.04313145950436592, -0.006877515465021133, 0.01592347025871277, 0.010119386948645115, 0.009660886600613594, 0.016182389110326767, -0.05286246910691261, 0.0009170020348392427, -0.007282075006514788, -0.004555342718958855, -9.945426427293569e-05, -0.01863132417201996, 0.011403189972043037, -0.02494245581328869, -0.008873343467712402, 0.01997985690832138, -0.026237046346068382, 0.04121115058660507, -0.02205120213329792, 0.016268694773316383, -0.017239637672901154, 0.00477110780775547, 0.02453250251710415, -0.020530058071017265, 0.010394487529993057, -0.01566455326974392, 0.0019513263832777739, 0.017293579876422882, 0.0035412460565567017, 0.0024421922862529755, 0.004199329763650894, 0.0008077709353528917, 0.007066309917718172, 0.041275881230831146, -0.013539265841245651, -0.043886639177799225, -0.012633051723241806, -0.0066132028587162495, -0.013485324569046497, -0.013140100054442883, -0.033227838575839996, -0.0011536694364622235, 0.02171676605939865, -0.01967778429389, -0.0074654752388596535, -0.005582924000918865, -0.02120971865952015, -0.0036275521852076054, -0.024230429902672768, -0.037219494581222534, 0.006413619965314865, -0.002287111012265086, -0.001985039794817567, 0.028329968452453613, -0.001188731286674738, -0.03163117542862892, 0.0024314038455486298, 0.012093639001250267, 0.025179797783493996, -0.005987484008073807, -0.013819760642945766, -0.020842917263507843, 0.04192317649722099, -0.03020712547004223, -0.043606143444776535, -0.04440447688102722, 0.007837670855224133, -0.026150740683078766, -0.02688434161245823, -0.008479571901261806, -0.003018015529960394, 0.015642976388335228, -0.020249562337994576, 0.00640822621062398, 0.02591339871287346, 0.030012937262654305, -0.05130895972251892, 0.016592342406511307, -0.0015063106548041105, -0.05130895972251892, -0.02759636752307415, -0.004053688608109951, 0.01484464481472969, -0.00462546618655324, 0.02869676984846592, -0.04177213832736015, -0.02054084651172161, 0.0038190437480807304, -0.026798035949468613, -0.005256579257547855, 0.03234320133924484, -0.011327672749757767, 0.008851766586303711, 0.002614804310724139, 0.01760643906891346, -0.028610464185476303, -0.00835550669580698, -0.005933542735874653, 0.033767253160476685, -0.015135928057134151, 0.01913837157189846, -0.005272761918604374, 0.02496403269469738, -0.001161760650575161, 0.017908509820699692, 0.04647582024335861, 0.026992224156856537, -0.007416928187012672, 0.02397151291370392, 0.024791419506072998, 0.02621546946465969, 0.015286963433027267, -0.006920668296515942, -0.00346842547878623, -0.03754314407706261, 0.00388377346098423, 0.016667861491441727, -0.005499314982444048, -0.05010067671537399, 0.02718641422688961, 0.0406285859644413, -0.006392043549567461, 0.04183686897158623, -0.008652184158563614, 0.0018960365559905767, -0.0033281780779361725, 0.0038810763508081436, 0.019634632393717766, -0.02130681276321411, -0.030681809410452843, 0.02608601190149784, 0.011014812625944614, 0.024057818576693535, -0.0038918645586818457, -0.0013242588611319661, 0.018016392365098, 0.013506900519132614, -0.026301776990294456, -0.010901535861194134, -0.023130027577280998, 0.022061990574002266, 0.02079976350069046, 0.03396144136786461, -0.007476263679563999, -0.03851408511400223, -0.004048294387757778, 0.01025963481515646, 0.06723242998123169, 0.03504026681184769, 0.017574073746800423, -0.03816886246204376, 0.005771718919277191, -0.0010626435978338122, -0.021889377385377884, -0.021554941311478615, -0.0016559978248551488, -0.013744242489337921, 0.0815160870552063, -0.004525674972683191, 0.00021003391884732991, -0.0019270528573542833, 0.01544878724962473, 0.03381040319800377, -0.0026175014209002256, 0.00690448610112071, 0.019742514938116074, 0.0008124907617457211, -0.0022614889312535524, -0.010119386948645115, 0.002608061768114567, -0.0011678290320560336, -0.010065445676445961, -0.027790555730462074, -0.009806527756154537, -0.024079395458102226, 0.009741798043251038, 0.026819612830877304, -0.00693685095757246, -0.010982448235154152, -0.016527613624930382, 0.04295884817838669, 0.026733307167887688, -0.012233885936439037, -0.04121115058660507, -0.0006476326962001622, -0.020605575293302536, -0.015146716497838497, -0.00234105228446424, -0.023000568151474, 0.00652150297537446, -0.004212815314531326, 0.04587167873978615, -0.011532649397850037, -0.01844792254269123, -0.018954971805214882, -0.03037973865866661, -0.03855723887681961, 0.0013256074162200093, 0.03262369707226753, 0.01788693480193615, -0.01673259027302265, 0.037090037018060684, 0.024295160546898842, 0.02470511384308338, 0.012633051723241806, 0.0024920878931879997, -0.04030493646860123, 0.008118164725601673, -0.0027577488217502832, -0.015502728521823883, 0.02830839343369007, -0.013107734732329845, -0.009973745793104172, -0.013215617276728153, -0.020497692748904228, -0.04252731800079346, 0.01275172270834446, -0.0009466697811149061, 0.02841627597808838, 0.014391537755727768, -0.015373269096016884, -0.02675488404929638, 0.013711877167224884, -0.008134347386658192, 0.01778983883559704, -0.026582270860671997, 0.023539982736110687, -0.003913441207259893, 0.011705261655151844, -0.0031474747229367495, 0.005636865273118019, 0.012643840163946152, 0.019310984760522842, -0.03898876905441284, 0.058731283992528915, 0.02016325667500496, -0.01982882060110569, 0.0090729258954525, 0.031415410339832306, -0.015653764829039574, 0.008048041723668575, -0.006392043549567461, 0.007772940676659346, 0.02882622927427292, -0.009914410300552845, 0.010416064411401749, 0.019386501982808113, -0.004700983874499798, -0.04544014856219292, 0.01304300595074892, 0.02414412423968315, 0.02677645906805992, 0.009601551108062267, 0.016678648069500923, -0.02108025923371315, 0.007179586682468653, 0.0026552602648735046, -0.0027806737925857306, 0.0025999704375863075, -0.011413978412747383, 0.013539265841245651, -0.01599898934364319, 0.00856048334389925, 0.009957563132047653, -0.014758339151740074, 0.040995385497808456, 0.020249562337994576, 0.028632041066884995, 0.010723529383540154, 0.011349248699843884, 0.01762801595032215, 0.015804799273610115, -0.020023008808493614, -0.020227985456585884, 0.02113419957458973, -0.03993813693523407, -0.009234749712049961, 0.02205120213329792, -0.006731873843818903, -0.011597379110753536, 0.00394041184335947, 0.00898122601211071, 0.014585726894438267, 0.01816742867231369, -0.04058543220162392, -0.04228997603058815, 0.035558104515075684, -0.010216481983661652, 4.555510895443149e-05, -0.02302214503288269, -0.02826523967087269, 0.006003666203469038, 0.020120102912187576, 0.013679512776434422, 0.014305232092738152, 0.009828104637563229, 0.011198213323950768, -0.018124274909496307, 0.05450228601694107, 0.026841189712285995, 0.03926926478743553, 0.0005205335328355432, 0.02302214503288269, 0.03825516626238823, 0.02427358366549015, 0.008058830164372921, -0.0033497544936835766, -0.025460291653871536, -0.025028761476278305, 0.02716483734548092, -0.02815735712647438, -0.027704250067472458, -0.01758486218750477, 0.004986872896552086, 0.04544014856219292, -0.005653047934174538, 0.05338030681014061, 0.0007834973512217402, -0.003597884438931942, -0.015912681818008423, 0.00011251817340962589, 0.031393833458423615, -0.030875997617840767, -0.008873343467712402, -0.009752586483955383, -0.030142396688461304, -0.017854569479823112, -0.02843785099685192, -0.0025729998014867306, 0.005620683077722788, 0.013291135430335999, -0.01781141571700573, 0.009401967748999596, -0.02126365900039673, -0.022655345499515533, -0.0025676058139652014, 0.014596515335142612, -0.009553004056215286, -0.0018313070759177208, 0.013960007578134537, -0.02274165116250515, 0.029430370777845383, 0.021727554500102997, 0.010653406381607056, 0.00981192197650671, 0.01206127367913723, -0.015599822625517845, -0.025719210505485535, -0.051524724811315536, 0.005156788043677807, 0.004115720745176077, 0.029732443392276764, 0.020249562337994576, 0.006748056039214134, 0.001229861518368125, -0.048590321093797684, 0.017433827742934227, -0.01324798259884119, 0.021867802366614342, 0.0024138730950653553, -0.004736045841127634, 0.017930086702108383, 0.0002693693386390805, 0.030983880162239075, -0.01576164737343788, 0.018890243023633957, 0.018124274909496307, 0.023906782269477844, 0.004202026873826981, -0.016344211995601654, 0.023000568151474, 0.02051926963031292, -0.01852344162762165, 0.013161676004529, 0.023669440299272537, -0.024359889328479767, -0.005178364459425211, -0.004736045841127634, 0.005615288857370615, 0.01766038127243519, 0.05182679742574692, -0.013819760642945766, 0.010238057933747768, -0.027768978849053383, 0.007066309917718172, -0.008463389240205288, -0.004717166535556316, 0.017207274213433266, 0.007551781367510557, 0.007816093973815441, 0.00640822621062398, -0.015481152571737766, -0.041534800082445145, 0.014035525731742382, -0.009051349945366383, -0.004660528153181076, -0.001345835393294692, 0.03650746867060661, 0.03314153105020523, -0.016851261258125305, -0.010540129616856575, -0.028329968452453613, -0.012223097495734692, -0.015729282051324844, 0.02358313463628292, -0.017077814787626266, -0.00821525976061821, -0.007147221826016903, -0.012665416114032269, 0.013150888495147228, 0.038060978055000305, -0.005078573245555162, 0.015330116264522076, -0.003516972530633211, -0.013711877167224884, 0.0011502981651574373, 0.012600687332451344, 0.04988491162657738, 0.04257047176361084, -0.004412398207932711, -0.004371942020952702, 0.015696916729211807, -0.02563290484249592, 0.021889377385377884, 0.012697781436145306, -0.05363922566175461, -0.006203249096870422, -0.014887797646224499, 0.022935839369893074, 0.015804799273610115, -0.020551634952425957, -0.012190733104944229, -0.010901535861194134, 0.033486757427453995, 0.005108240991830826, 0.04509492218494415, -0.011575802229344845, 0.011036389507353306, 0.01091232430189848, -0.0008259760797955096, -0.025827093049883842, -0.014510208740830421, -0.005356370937079191, 0.00030544260516762733, 0.0014699003659188747, -0.0011637834832072258, 0.00042714763549156487, 0.013916854746639729, 0.00867376010864973, -0.02744533121585846, 0.0024920878931879997, 0.025589751079678535, -0.005911966320127249, -0.014758339151740074, 0.0013121220981702209, 0.0036626141518354416, 0.05333715304732323, -0.049712300300598145, 0.0012467182241380215, 0.0040375059470534325, 0.013755030930042267, -0.015028045512735844, 0.01318325288593769, -0.043584566563367844, -0.06373703479766846, 0.043908216059207916, -0.020530058071017265, 0.030271856114268303, 0.010594070889055729, 0.0018677173648029566, -0.018081123009324074, 0.003810952650383115, -0.03478134796023369, -0.001635769847780466, -0.043174613267183304, -0.015092775225639343, 0.0049572051502764225, -0.007950946688652039, -0.0026255925185978413, -0.04492231085896492, -0.004436671733856201, -0.012277038767933846, -0.04377875477075577, -0.022137507796287537, 0.0056584421545267105, 0.010599465109407902, -0.01586952991783619, 0.015513516962528229, 0.008522724732756615, -0.009563791565597057, -0.013140100054442883, 0.010939295403659344, 0.028200509026646614, -0.039161380380392075, 0.011030995287001133, 0.004922143183648586, 0.007449293043464422, -0.004892475437372923, -0.022061990574002266, 0.021835437044501305, 0.012136791832745075, -0.026668576523661613, -0.04228997603058815, 0.021749131381511688, 0.032645273953676224, 0.020508481189608574, 0.024661960080266, -0.001990433782339096, -0.03273157775402069, -0.020325081422924995, 0.009962957352399826, 0.044318169355392456, 0.015254599042236805, -0.015222233720123768, 0.007923976518213749, 0.01956990174949169, 0.013442170806229115, -0.0031366865150630474, 0.008398659527301788, -0.05920596793293953, 0.004916748963296413, -0.010318970307707787, 0.004404306877404451, -0.01504962146282196, 0.01037291157990694, 0.01678653061389923, -0.020411387085914612, -0.040693312883377075, -0.0032310837414115667, 0.030595503747463226, -0.021576518192887306, -0.009029773063957691, -0.00022351925144903362, 0.0449654646217823, 0.001369434641674161, 0.015858741477131844, -0.017725110054016113, 0.023237910121679306, -0.02248273231089115, 0.04315303638577461, -0.012158368714153767, -0.017002297565340996, -0.010583282448351383, -0.01668943651020527, 0.005450767930597067, 0.03564440831542015, -0.0031474747229367495, 0.008528118953108788, 0.00041130237514153123, 0.02261219173669815, 0.006958427373319864, -0.017649592831730843, 0.024295160546898842, -0.02927933633327484, 0.007756758481264114, 0.04966914653778076, 0.02910672314465046, -0.022676920518279076, 0.031005457043647766, -0.03230004757642746, -0.04703681170940399, 0.0011658063158392906, -0.011020206846296787, -0.014240502379834652, -0.01908443123102188, -0.0039350176230072975, 0.014089467003941536, 0.002203501993790269, -0.047899872064590454, -0.010248846374452114, 0.019278619438409805, 0.020767400041222572, -0.027661096304655075, -0.020756611600518227, 0.004763016477227211, 0.03659377619624138, 0.011888661421835423, 0.0009891485096886754, -0.01289196964353323, 0.026452811434864998, -0.05696200951933861, 0.016926778480410576, 0.004485218785703182, -0.00293170940130949, -0.008339324034750462, -0.03933399170637131, -0.015988200902938843, -0.03212743625044823, -0.032364778220653534, -0.006677932571619749, 0.01798402890563011, 0.006591626442968845, 0.002432752400636673, 0.010604859329760075, 0.020896857604384422, -0.027359025552868843, 0.004258665256202221, 0.008414842188358307, 0.003783982014283538, -0.011705261655151844, -0.017768263816833496, 0.010065445676445961, 0.009898227639496326, -0.015934258699417114, -0.029041994363069534, -0.007487052120268345, 0.00945590902119875, 0.007686634548008442, -0.0010606207652017474, 0.0029236183036118746, -0.021252870559692383, -0.002258791821077466, -0.05834290757775307, 0.0047117723152041435, 0.019591478630900383, 0.01883630082011223, -0.012784087099134922, -0.013668724335730076, 0.0419015996158123, 0.014499420300126076, -0.06378018856048584, -0.010189510881900787, -0.042505741119384766, 0.006192460656166077, -0.00453646294772625, 0.02761794440448284, 0.007594934664666653, -0.0057825068943202496, 0.00435575982555747, 0.009639309719204903, -0.004148085601627827, 0.02115577645599842, -0.018674476072192192, -0.0028534946031868458, 0.015837164595723152, 0.012298615649342537, -0.014262079261243343, -0.015977412462234497, 0.013269558548927307, 0.021393118426203728, -0.03374567627906799, 0.010065445676445961, 0.010318970307707787, -0.004166965372860432, 0.01295669935643673, 0.01844792254269123, -0.024877725169062614, -0.017228851094841957, -0.0370468832552433, 0.017358308658003807, -0.01706702634692192, -0.013916854746639729, 0.023906782269477844, 0.025179797783493996, -0.01078286487609148, 0.010610252618789673, 0.016387365758419037, 0.014747550711035728, 0.006947638932615519, -0.00010459554323460907, -0.03851408511400223, 0.03275315463542938, -0.034198783338069916, -0.011252154596149921, -0.018922606483101845, 0.010610252618789673, -0.02841627597808838, 0.047338880598545074, -0.018749995157122612, -0.017595650628209114, -0.046216901391744614, 0.03035816177725792, -0.027251143008470535, 0.015847953036427498, 0.00873848982155323, 0.0038541057147085667, -0.01859895884990692, -0.0077783348970115185, -0.014111042954027653, 0.03575229272246361, 0.029926631599664688, 0.008317748084664345, 0.04699365794658661, -0.035299185663461685, -0.01766038127243519, -0.020886069163680077, -0.007244315929710865, -0.013496112078428268, 0.016516825184226036, -0.025028761476278305, -0.031027033925056458, -0.03924768790602684, -0.02813578024506569, 0.006602414883673191, 0.023194758221507072, -0.0007841716287657619, 0.01816742867231369, 0.029171453788876534, -0.009687856771051884, -0.012438862584531307, -0.03255896642804146, 0.011888661421835423, 0.015286963433027267, 0.015060409903526306, 0.014984892681241035, 0.012287827208638191, -0.03728422522544861, 0.00862521305680275, -0.023324215784668922, 0.013107734732329845, 0.019310984760522842, 0.019278619438409805, -0.0006897743442095816, -0.004843928385525942, 0.006386649329215288, -0.024467771872878075, -0.010480794124305248, 0.005949724931269884, -0.015988200902938843, 0.003730040742084384, 0.015934258699417114, -0.021479424089193344, -0.028329968452453613, -0.00672647962346673, 0.02074582315981388, -0.011802355758845806, -0.030293432995676994, -0.006332708057016134, -0.04341195523738861, -0.029495101422071457, -0.021015528589487076, -0.0004942371160723269, 0.007336016278713942, -0.017617227509617805, 0.00228036823682487, 0.06231298670172691, 0.03827674314379692, 0.011974968016147614, 0.002636380959302187, -0.025417139753699303, -0.015200657770037651, 0.08445049077272415, 0.0024920878931879997, 0.02772582694888115, -0.02494245581328869, -0.0490650050342083, 0.04032651335000992, 0.052776165306568146, 0.006785815116018057, 0.016905201599001884, -0.042505741119384766, -0.023885205388069153, -0.007006974425166845, -0.04205263406038284, -0.004525674972683191, 0.0040887501090765, -0.018437135964632034, -0.01778983883559704, -0.004544554278254509, -0.009288690984249115, 0.03838462755084038, 0.01852344162762165, 0.04261362552642822, 0.002405781764537096, 0.021112622693181038, -0.031005457043647766, 0.013701089657843113, 0.01008162833750248, -0.002099664881825447, -0.001635769847780466, 0.026668576523661613, -0.013884489424526691, -0.00029684571200050414, 0.022115930914878845, 0.001437535509467125, -0.016808107495307922, -0.030595503747463226, 0.02425200678408146, 0.024316737428307533, -0.0025500748306512833, 0.005386038683354855, 0.026560693979263306, -0.05644417181611061, -0.005294338334351778, 0.025762362405657768, 0.01627948321402073, 8.672749390825629e-05, -0.011877873912453651, -0.02580551616847515, 0.038082554936409, -0.009434333071112633, 0.021533366292715073, -0.029581407085061073, -0.024295160546898842, 0.01960226707160473, -0.006327314302325249, 0.033227838575839996, -0.005874207243323326, -0.037823636084795, 0.014736762270331383, 0.0003179165069013834, 0.025266103446483612, 0.01414340827614069, -0.011964179575443268, 0.020195621997117996, 0.03478134796023369], [0.04750482738018036, -0.022830983623862267, 0.05651436373591423, -0.0027258966583758593, -0.053033407777547836, 0.0034604810643941164, 0.0028461944311857224, -0.031901948153972626, 0.04250863194465637, 0.04684958979487419, -0.06708009541034698, 0.012848827987909317, -0.043819110840559006, -0.017578834667801857, -0.004182267934083939, 0.029772423207759857, 0.001979794353246689, 0.03280290216207504, 0.028810041025280952, 0.000430320535087958, 0.0009444656316190958, 0.0325162373483181, 0.02543146349489689, 0.05585912615060806, 0.01730240508913994, 0.004228339064866304, 0.05983151122927666, 0.014210496097803116, 0.059053417295217514, -0.034420523792505264, 0.02375241369009018, -0.0055132219567894936, -0.008431083522737026, -0.0685134306550026, 0.025943370535969734, 0.03290528431534767, -0.011548588052392006, -0.006040484644472599, 0.017957644537091255, 0.005825484171509743, -0.08935821801424026, 0.06929152458906174, -0.01541859284043312, -0.03255718946456909, -0.03317147493362427, 0.05229626223444939, 0.0248786062002182, 0.01579740270972252, -0.01678026095032692, 0.029403850436210632, -0.015602879226207733, 0.01972883753478527, 0.029424326494336128, 0.020066695287823677, 0.047873400151729584, 0.009106798097491264, -0.0005890112370252609, -0.009035131894052029, 0.03417481109499931, 0.032434333115816116, 0.013923829421401024, -0.04615340009331703, -0.031103376299142838, 0.04023577272891998, -0.03311004489660263, 0.0007569802110083401, 0.03433861956000328, 0.043286725878715515, -0.03147194907069206, -0.03380623832345009, 0.04590768367052078, 0.044269587844610214, -0.026782894507050514, -0.03134909272193909, 0.031369566917419434, -0.013596209697425365, 0.03478909656405449, 0.036283861845731735, -0.0065063186921179295, 0.029895279556512833, -0.026680514216423035, 0.04201720282435417, 0.0052521503530442715, 0.010903586633503437, -0.028912421315908432, 0.04283624887466431, -0.007842391729354858, -0.01783478632569313, -0.013135494664311409, -0.011620254255831242, 0.011169777251780033, -0.03708243370056152, 0.021295268088579178, 0.05852103605866432, -0.015889545902609825, -0.021889077499508858, -0.015275259502232075, 0.0020655386615544558, -0.05192769318819046, 0.07768677920103073, 0.021889077499508858, 0.04179196432232857, 0.0119478739798069, 0.023957176133990288, 0.013074065558612347, -0.05925817787647247, -0.046481017023324966, -0.036345288157463074, -0.0016252999193966389, 0.01955479010939598, -0.0055132219567894936, 0.001398781780153513, 0.015899784862995148, 0.057374365627765656, 0.008825250901281834, 0.0046916138380765915, 0.013647399842739105, 0.006598461885005236, 0.028994327411055565, -0.015510736033320427, -0.017845025286078453, -0.043778154999017715, 0.00731512950733304, -0.04947054758667946, 0.0063681043684482574, 0.005733341444283724, -0.015889545902609825, 0.04023577272891998, -0.044720061123371124, 0.012449541129171848, 0.023322414606809616, 0.012736208736896515, 0.04398291930556297, -0.025206224992871284, 0.006951676215976477, -0.029280994087457657, 0.0030791114550083876, 6.366824527503923e-05, -0.000806251133326441, -0.049593403935432434, 0.012203826569020748, 0.019810741767287254, 0.049388639628887177, 0.009060727432370186, -0.01877669245004654, 0.0482829250395298, -0.0018454192904755473, 0.07531153410673141, 0.00619405647739768, -0.014814544469118118, -0.03667290881276131, 0.021418124437332153, 0.014087638817727566, -0.014159305952489376, -0.009536799043416977, 0.0077348919585347176, 0.018633360043168068, 0.02842099219560623, 0.024264320731163025, 0.015654070302844048, -0.037471480667591095, -0.01068858616054058, -0.0029485756531357765, -0.017179548740386963, 0.030468614771962166, 0.007704177405685186, 0.01108787301927805, -0.021848125383257866, -0.04902007058262825, -0.03587433695793152, -0.029199087992310524, 0.006178698968142271, -0.002135925693437457, -0.057865794748067856, -0.023527175188064575, -0.0023368485271930695, 0.003434885758906603, 0.020066695287823677, -0.022257650271058083, -0.030366232618689537, -0.002519854810088873, -0.02926051802933216, -0.027663372457027435, -0.04947054758667946, -0.009239894337952137, 0.026926228776574135, -0.009168227203190327, -0.008308226242661476, 0.021786697208881378, -0.015009068883955479, 0.014763354323804379, 0.01702597551047802, -0.011712397448718548, 0.02052740938961506, -0.0011415492044761777, -0.00914263166487217, -0.03738957643508911, -0.04410577565431595, 0.020824315026402473, 0.0016624130075797439, 0.04009243845939636, -0.013585971668362617, 0.029403850436210632, 0.01419002003967762, -0.06761247664690018, -0.043041013181209564, 0.04009243845939636, -0.014159305952489376, 0.048856258392333984, -0.0003778502286877483, -0.04080910608172417, -0.02379336766898632, -0.03624290972948074, 0.01653454639017582, -0.04607149213552475, -0.0022088722325861454, 0.014149067923426628, 0.0053033409640192986, -0.03675481304526329, 0.008958346210420132, -0.019984789192676544, -0.030755281448364258, 0.051518168300390244, -0.022830983623862267, -0.06634294986724854, 0.0004242416762281209, -0.003726671915501356, -0.0032198855187743902, -0.0234043188393116, -0.022585269063711166, -0.025738608092069626, 0.04607149213552475, -0.024387177079916, 0.027315275743603706, 0.030386708676815033, 0.0001914846507133916, 0.0261071790009737, -0.010750015266239643, -0.030632423236966133, -0.006521675735712051, 0.01706692948937416, 0.03878195956349373, -0.005218876525759697, 0.020240742713212967, -0.01899169385433197, -0.010227871127426624, 0.009306441992521286, 0.013033113442361355, -0.0011197932763025165, -0.00846179760992527, -0.00013677474635187536, -0.01951383613049984, 0.01133358757942915, 0.004248815588653088, 0.020721934735774994, 0.03005908988416195, 0.01068858616054058, 0.03607909753918648, 0.0016944071976467967, -0.015991928055882454, -0.023875271901488304, 0.007714415434747934, -0.008559059351682663, 0.000566615373827517, -0.04603054001927376, -0.03317147493362427, 0.05209150165319443, -0.030386708676815033, -0.015265021473169327, -0.0028333968948572874, -0.014097876846790314, 0.019390979781746864, 0.014456210657954216, -0.00951120350509882, -0.03413385897874832, -0.01591002196073532, 0.010698824189603329, 0.006291318219155073, -0.02883051708340645, -0.025410987436771393, -0.02526765502989292, 0.003857207717373967, 0.028584802523255348, -0.0014000615337863564, -0.012449541129171848, -0.025779560208320618, 0.034563858062028885, 0.006792985834181309, -0.0030279208440333605, 0.020803838968276978, 0.01084215845912695, -0.004453577566891909, -0.027274323627352715, -0.021356696262955666, -0.0114564448595047, -0.016514070332050323, -0.027335751801729202, -0.007827035151422024, -0.010350728407502174, -0.003368338104337454, -0.0034553620498627424, 0.03132861480116844, -0.009526561014354229, 0.038556721061468124, -0.03874100744724274, 0.032884806394577026, -0.0025902418419718742, 0.030325280502438545, -0.015305973589420319, -0.026885276660323143, 0.008072749711573124, 0.04652196913957596, -0.023383842781186104, -0.007054057437926531, -0.04267244040966034, 0.019298836588859558, 0.009726203978061676, 0.041013866662979126, 0.0008158493437804282, -0.025881940498948097, 0.0066957236267626286, 0.0011197932763025165, 0.0013475911691784859, -0.05434388667345047, 0.026045750826597214, 0.01460978202521801, -0.014978354796767235, 0.01702597551047802, -0.03192242607474327, -0.014568829908967018, -0.00684929545968771, 0.027479086071252823, 0.0216843169182539, 0.015787165611982346, -0.009239894337952137, -0.005543936509639025, 0.011937635950744152, -0.0021448838524520397, -0.033580999821424484, 0.016299070790410042, -0.03182004392147064, -0.011743111535906792, 0.010053823702037334, 0.001071802107617259, 0.01529573556035757, 0.0033504213206470013, 0.008630726486444473, 0.035546716302633286, 0.006813461892306805, -0.023363366723060608, 0.004811911378055811, -0.009449775330722332, -0.000735224224627018, -0.02453051134943962, -0.06474580615758896, 0.0022946163080632687, -0.007013105321675539, 0.0017558358376845717, -0.029199087992310524, -0.0003647326666396111, -0.011548588052392006, -0.037410054355859756, 0.01923740841448307, 0.01996431313455105, -0.050330545753240585, -0.003365778597071767, 0.007867987267673016, 0.0002757890906650573, 0.017455976456403732, -0.028113849461078644, 0.045948635786771774, 0.010243228636682034, -0.04897911474108696, -0.03513719141483307, -0.030386708676815033, -0.02113145776093006, -0.004689054097980261, 0.00877405982464552, -0.016800737008452415, -0.005472269374877214, 0.014251448214054108, -0.0018530978122726083, 0.015920260921120644, 0.05528579279780388, 0.05602293461561203, 0.04046100750565529, -0.011671445332467556, 0.001868454972282052, 0.02428479678928852, 0.028543850407004356, -0.029895279556512833, 0.03458433598279953, 0.04922483116388321, 0.01864359714090824, -0.04349149018526077, -0.03632481396198273, 0.06511437892913818, -0.004717208910733461, -0.009311560541391373, -0.05573626980185509, 0.02428479678928852, -0.02975194714963436, 0.020660504698753357, -0.045989587903022766, 0.037819575518369675, 0.012910256162285805, 0.04060434177517891, -0.011640730313956738, 0.043737202882766724, 0.009229655377566814, 0.0031251830514520407, -0.04897911474108696, 0.004356315825134516, -0.015991928055882454, 0.028011467307806015, 0.020240742713212967, -0.01231644582003355, 0.021930031478405, 0.02162288688123226, 0.000858081562910229, 0.014445972628891468, 0.011845492757856846, -0.06933248043060303, 0.00395191041752696, -0.002396997530013323, 0.040972914546728134, -0.011159539222717285, 0.03257766366004944, 0.005774294026196003, -0.046726733446121216, -0.03182004392147064, 0.012162874452769756, 0.07813725620508194, 0.004113160539418459, -0.06724390387535095, -0.04558006301522255, 0.010079419240355492, -0.007852629758417606, 0.012725970707833767, -0.007207629270851612, -0.016729071736335754, 0.0221757460385561, 0.02852337434887886, 0.01126192044466734, -0.03253671154379845, -0.015203592367470264, -0.009234774857759476, 0.027130991220474243, 0.04754577949643135, -0.0620838962495327, 0.013104780577123165, 0.013770257122814655, -0.04222196340560913, 0.004005660302937031, -0.049593403935432434, 0.014865735545754433, -0.023281460627913475, -0.0650734230875969, 0.06273913383483887, -0.03642719238996506, 0.04060434177517891, 0.009065845981240273, 0.04734101891517639, 0.011466682888567448, 0.0013821447500959039, 0.06536009162664413, 0.00410036277025938, 0.011364301666617393, -0.03227052092552185, -0.02567717805504799, -0.03941672295331955, 0.023076700046658516, 0.04177148640155792, 0.003378576133400202, 0.03331480920314789, 0.005707745905965567, -0.007990844547748566, -0.06916867196559906, -0.00795501098036766, -0.017333120107650757, 0.006229889579117298, -0.013319781050086021, -0.05143626406788826, -0.0013975019101053476, 0.031123854219913483, 0.03319195285439491, 0.0014832461019977927, -0.02354765124619007, 0.0012426505563780665, -0.06806295365095139, -0.07662200927734375, -0.011425730772316456, 0.011364301666617393, -0.005065304692834616, -0.0027770872693508863, -0.008466917090117931, 0.011804540641605854, -0.024161938577890396, 0.033478617668151855, -0.01175334956496954, 0.056678175926208496, 0.00013749461504630744, 0.061715323477983475, -0.00607119919732213, 0.04246767982840538, -0.01871526427567005, -0.004156672395765781, 0.0007365040364675224, -0.05405721813440323, 0.013913591392338276, -0.006178698968142271, 0.008523226715624332, 0.03779910132288933, 0.01448692474514246, 0.01818288303911686, -0.026680514216423035, -0.017711929976940155, 0.0031405400950461626, -0.00944465585052967, 0.00975691806524992, 0.002045062370598316, 0.008374773897230625, -0.03851576894521713, -0.009854180738329887, 0.011057158000767231, 0.006060960702598095, 0.03816767409443855, -0.04492482542991638, 0.007141081616282463, -0.005600246135145426, 0.017783597111701965, -0.04312291741371155, -0.06204294413328171, -0.00795501098036766, 0.05061721429228783, -0.012766922824084759, 0.010279062204062939, 0.015367402695119381, 0.040768153965473175, -0.032290998846292496, 0.03010004200041294, -0.017845025286078453, 0.04191482067108154, -0.027520038187503815, 0.006987509783357382, 0.019677646458148956, 0.0029613731894642115, 0.025165272876620293, -0.0013168768491595984, -0.01563359424471855, 0.0022267887834459543, 0.00572822242975235, 0.02260574698448181, -0.014128590933978558, -0.034277189522981644, 0.0011293914867565036, 0.010750015266239643, -0.0002399556979071349, -0.009372989647090435, -0.014845258556306362, -0.019053122028708458, 0.022585269063711166, 0.02375241369009018, -0.003672921797260642, 0.021868601441383362, 0.017609547823667526, -0.016718832775950432, 0.009884894825518131, 0.005369888618588448, -0.03511671721935272, -0.03454338014125824, 0.017988359555602074, 0.01212192140519619, 0.005154888145625591, 0.012347159907221794, 0.013913591392338276, 0.007212748285382986, -0.018838122487068176, -0.049101974815130234, -0.01979026570916176, 0.0016931273275986314, 0.016729071736335754, -0.0002546729811001569, -0.06495057046413422, -0.017159070819616318, 0.038700055330991745, 0.008646083995699883, -0.029833851382136345, 0.01892002671957016, 0.03843386471271515, -0.004499649163335562, -0.010893348604440689, -0.009593108668923378, 0.0007748969364911318, -0.018909787759184837, 0.040870532393455505, -0.028666706755757332, 0.04775054380297661, -0.03767624497413635, 0.02071169577538967, 0.00575381750240922, 0.008538583293557167, 0.00807786826044321, 0.02260574698448181, -0.015500498004257679, -0.02981337532401085, 0.02095741033554077, -0.031860996037721634, -0.012572398409247398, 0.008190487511456013, 0.006798104848712683, -0.02330193668603897, 0.022482888773083687, -0.02025098167359829, -0.025840988382697105, -0.002879468258470297, -0.050781022757291794, -0.015336688607931137, -0.005938103422522545, -0.008129059337079525, -0.03253671154379845, -0.02197098359465599, 0.026127655059099197, 0.0019260443514212966, -0.0013181566027924418, 0.0007736171828582883, 0.009260370396077633, -0.07035628706216812, 0.0039058388210833073, -0.02592289447784424, -0.03478909656405449, 0.006178698968142271, 0.02971099503338337, -0.022441936656832695, 0.009060727432370186, 0.006373223382979631, 0.01640145108103752, 0.0064909616485238075, -0.031164806336164474, 0.009695489890873432, 0.01350406650453806, 0.003800898091867566, 0.012848827987909317, -0.06278008967638016, 0.025451941415667534, -0.034359097480773926, 0.003427207237109542, -0.029936231672763824, -0.04263148829340935, -0.0007409831741824746, 0.016688119620084763, -0.005364769604057074, -0.01280787494033575, 0.019227169454097748, 0.010222752578556538, -0.011773825623095036, -0.002682384802028537, 0.039089102298021317, 0.0065063186921179295, 0.020578600466251373, -0.019626455381512642, 0.018315978348255157, 0.0014461330138146877, -0.04058386757969856, 0.008999298326671124, 0.007074533961713314, 0.016022641211748123, -0.019350027665495872, 0.026721466332674026, -0.01755835860967636, 0.012920494191348553, -0.012828350998461246, 0.010801205411553383, 0.02326098456978798, -0.017476452514529228, 0.0058510797098279, -0.05974960699677467, 0.01591002196073532, 0.005229114554822445, 0.06241151690483093, -0.01625811867415905, -0.003296671202406287, 0.00037881004391238093, 0.030878137797117233, -0.017885977402329445, -0.0011421891395002604, 0.029547184705734253, -0.015469783917069435, 0.0126850176602602, -0.003056075656786561, 0.008528345264494419, 0.019913123920559883, -0.03145147114992142, -0.009173346683382988, 0.01933978870511055, 0.022933365777134895, 0.01919645629823208, -0.008251916617155075, -0.01068858616054058, 0.04050196334719658, 0.015213831327855587, 0.02616860903799534, 0.0066394140012562275, -0.07957059144973755, -0.05258293077349663, 0.0006418015109375119, -0.0024571463000029325, 0.007197391241788864, 0.009157989174127579, -0.009823466651141644, -0.016698356717824936, 0.0005845320993103087, -0.05094483494758606, -0.002197354333475232, 0.0033990524243563414, -0.04201720282435417, 0.0025723250582814217, 0.027847658842802048, -0.010294418781995773, 0.019472884014248848, -0.05557245761156082, -0.026270989328622818, -0.017527643591165543, -0.02098812535405159, 0.0381881482899189, 0.0002006029535550624, 0.019390979781746864, -0.03962148353457451, 0.014650735072791576, 0.023076700046658516, 0.01505002100020647, 0.006403937470167875, 0.006045603659003973, 0.027847658842802048, -0.017087405547499657, 0.009439537301659584, -0.01448692474514246, 0.009823466651141644, 0.006833937950432301, 0.012695255689322948, -0.03315100073814392, -0.03822910040616989, -0.0256157498806715, -0.04001053422689438, 0.0014371746219694614, 0.019073598086833954, 0.0031968497205525637, 0.004259053617715836, -0.007197391241788864, 0.008907155133783817, 0.009285965003073215, 0.003061194671317935, -0.058602940291166306, -0.03394957259297371, 0.03499385714530945, 0.01563359424471855, -0.01201954111456871, 0.008538583293557167, 0.03368338197469711, 0.03366290405392647, 0.02960861288011074, -0.019319312646985054, -0.01822383515536785, 0.03237290307879448, -0.0026094382628798485, -0.014046686701476574, -0.022011935710906982, -0.0014640496810898185, 0.0032173260115087032, -0.016350261867046356, 0.02319955639541149, 0.013063827529549599, 0.022093839943408966, 0.013360733166337013, 0.0591353215277195, 0.015367402695119381, -0.024796701967716217, -0.029936231672763824, -0.0021819970570504665, -0.007402153220027685, 0.005697507876902819, 0.009710847400128841, -0.0022165507543832064, 0.06384485214948654, 0.013514304533600807, -0.015950974076986313, 0.012920494191348553, 0.013678114861249924, 0.003954469691962004, -0.0038879220373928547, -0.027950039133429527, 0.0001458930637454614, -0.00933715607970953, -0.018203359097242355, -0.006352746859192848, -0.010468467138707638, 0.018367169424891472, -0.04390101507306099, 0.011773825623095036, 0.018305739387869835, -0.007468700874596834, -0.02147955447435379, 0.018162406980991364, -0.016718832775950432, 0.0492657832801342, -0.042303867638111115, -0.04226291552186012, -0.022114316001534462, 0.006270842161029577, -0.013545018620789051, 0.01450740173459053, 0.022790031507611275, 0.0026542299892753363, 0.027704324573278427, 0.016800737008452415, 0.014794068410992622, -0.0359562411904335, 0.03951910138130188, 0.01780407316982746, -0.028666706755757332, 0.09451822936534882, 0.006209413520991802, 0.0357310026884079, 0.006352746859192848, 0.04152577370405197, 0.030980519950389862, -0.04566196724772453, 0.00946001335978508, 0.004550839774310589, 0.007929416373372078, -0.023076700046658516, -0.025738608092069626, 0.019534314051270485, -0.002930658869445324, -0.010473586618900299, -0.005932984407991171, -0.021295268088579178, 0.024325748905539513, 0.005738460458815098, 0.045457206666469574, 0.03616100177168846, -0.01796788163483143, -0.006813461892306805, 0.011538350023329258, -0.017261452972888947, -0.0035858978517353535, -0.006450009066611528, -0.006229889579117298, -0.02494003437459469, 0.034420523792505264, -0.019390979781746864, 0.01468144915997982, -0.015439068898558617, 0.02410051040351391, -0.007007985841482878, -0.004532922990620136, 0.008881560526788235, -0.01979026570916176, -0.0021679196506738663, -0.04179196432232857, 0.003980065230280161, -0.03317147493362427, -0.022114316001534462, -0.002599200000986457, 0.0056053651496768, 0.0029050635639578104, 0.04541625455021858, -0.026967180892825127, 0.0025633666664361954, 0.02133622020483017, 0.015275259502232075, -0.006178698968142271, 0.009301322512328625, -0.032250046730041504, -0.022257650271058083, 0.010253466665744781, 0.013678114861249924, 0.019145265221595764, 0.03216813877224922, 0.061223894357681274, 0.016831452026963234, 0.023772889748215675, 0.027520038187503815, 0.015961213037371635, -0.02774527668952942, -0.02946527861058712, -0.019995028153061867, 0.042590536177158356, 0.014282163232564926, 0.0038444101810455322, 0.023465747013688087, -0.0033913739025592804, 0.005369888618588448, 0.018807407468557358, 0.017435500398278236, -0.004550839774310589, -0.01382144819945097, -0.003232683055102825, -0.011763587594032288, 0.0033248260151594877, -0.02827765792608261, -0.03208623453974724, -0.03675481304526329, 0.021704792976379395, -0.06708009541034698, 0.0131764467805624, -0.00020316248992457986, -0.03718481585383415, 0.020097408443689346, 0.020762886852025986, 0.03460481017827988, -0.004205303732305765, 0.022994793951511383, 0.012551922351121902, 0.02276955544948578, 0.03321242704987526, -0.06548295170068741, 0.0024008366744965315, 0.007289533969014883, 0.016595976427197456, 0.03388814255595207, -0.013268589973449707, -0.009106798097491264, 0.017476452514529228, -0.028257181867957115, -0.015398116782307625, -0.019216932356357574, 0.006844176445156336, -0.01867431215941906, -0.042590536177158356, 0.021397648379206657, 0.04467910900712013, 0.019780028611421585, 0.01808050088584423, 0.01779383420944214, 0.010473586618900299, -0.03886386379599571, 0.006936319172382355, 0.020926695317029953, 0.021745745092630386, 0.0251243207603693, 0.017650501802563667, -0.02052740938961506, -0.01761978678405285, -0.015387878753244877, 0.022974317893385887, 0.0034656000789254904, -0.004000541288405657, -0.0325162373483181, 0.017230737954378128, 0.019749313592910767, 0.0024814617354422808, 0.017916692420840263, 0.01800883561372757, 0.0049629234708845615, 0.012408589012920856, 0.024223366752266884, -0.02197098359465599, 0.0026439917273819447, -0.02448955737054348, 0.01853097788989544, 0.024673843756318092, 0.03499385714530945, -0.04967530816793442, 0.06986486166715622, 0.0044023869559168816, -0.010279062204062939, 0.03368338197469711, -0.024550987407565117, -0.011691921390593052, -0.03143099695444107, -0.01748669147491455, 0.06138770654797554, 0.026148131117224693, -0.025800036266446114, 0.012029779143631458, -0.01933978870511055, -0.009117037057876587, -0.009700608439743519, 0.008466917090117931, -0.0027003013528883457, 0.01604311726987362, 0.016555022448301315, 0.029792899265885353, 0.0020079491659998894, 0.027724800631403923, 0.04275434464216232, -0.021745745092630386, 0.011466682888567448, 0.007591558154672384, -0.003734350437298417, 0.014149067923426628, 0.029240041971206665, -0.0007614594069309533, 0.025738608092069626, 0.05065816640853882, 0.00712060509249568, 0.019145265221595764, 0.009797871112823486, -0.04390101507306099, 0.032639093697071075, 0.01566430740058422, -0.0033964929170906544, 0.043819110840559006, 0.031901948153972626, -0.0064295330084860325, 0.05237817019224167, -0.0016662523848935962, 0.005656555760651827, -0.020906219258904457, -0.002175598405301571, -0.0031507781241089106, -0.036775290966033936, 0.0263528935611248, -0.00953168049454689, -0.02971099503338337, 0.023588605225086212, -0.013391447253525257, -0.014394782483577728, 0.01601240411400795, -0.0234043188393116, 0.022339554503560066, 0.04345053806900978, 0.06318961083889008, 0.03450242802500725, -0.026230037212371826, 0.02641432359814644, 0.019544551149010658, 0.04553911089897156, 0.011292634531855583, 0.01888931170105934, 0.01026882417500019, 0.04177148640155792, 0.041505295783281326, 0.007187152747064829, 0.03591528907418251, -0.009326918050646782, -0.009495846927165985, -0.03458433598279953, -0.0022869377862662077, -0.006741795223206282, -0.040379103273153305, -0.03902767226099968, -0.0022229496389627457, 0.0035833383444696665, -0.007233224343508482, -0.0033888143952935934, 0.022933365777134895, -0.004333280026912689, -0.018346693366765976, -0.04152577370405197, 0.044310539960861206, -0.03388814255595207, 0.0014806865947321057, 0.0112107302993536, -0.017783597111701965, -0.005963698960840702, -0.013319781050086021, 0.018019072711467743, -0.012797636911273003, 0.01113906316459179, -0.03730767220258713, 0.0023880391381680965, 0.027868134900927544, 0.01933978870511055, -0.016636928543448448, 0.013258351944386959, 0.0027566109783947468, 0.00018924505275208503, -0.011405253782868385, -0.01557216513901949, 0.009526561014354229, 0.01597145013511181, 0.02827765792608261, 0.012654303573071957, -0.0066342949867248535, -0.029055755585432053, -0.038249578326940536, 0.01450740173459053, 0.017251214012503624, -0.027376705780625343, 0.014230972155928612, 0.009280846454203129, -0.01411835290491581, -0.0053186980076134205, 0.0034476835280656815, -0.0030151233077049255, -0.026332417502999306, 0.01308430451899767, 0.02526765502989292, 0.014742878265678883, 0.016595976427197456, -0.014333353377878666, 0.005871555767953396, 0.008646083995699883, -0.026434799656271935, 0.017640262842178345, -0.011927397921681404, 0.019053122028708458, -0.031226234510540962, -0.04275434464216232, 0.02676241844892502, -0.02551336959004402, -0.005682150833308697, 0.02960861288011074, -0.012357397936284542, 0.02911718375980854, -0.01059644389897585, -0.005697507876902819, 0.021909555420279503, 0.023957176133990288, 0.0416281521320343, -0.013012637384235859, -0.02276955544948578, 0.016585737466812134, 0.01032001432031393, 0.036488622426986694, 0.011681683361530304, 0.02567717805504799, -0.03139004483819008, -0.008891798555850983, -0.0006459607393480837, -0.04795530438423157, -0.0012375315418466926, 0.01475311629474163, -0.02162288688123226, -0.010545252822339535, 0.024305272847414017, -0.01333001907914877, -0.013370971195399761, -0.0453343503177166, -0.037573862820863724, -0.013688352890312672, 0.008031796663999557, -0.0030714329332113266, 0.017425263300538063, 0.008405487984418869, -0.003678040811792016, 0.02715146727859974, 0.016032880172133446, 0.030775757506489754, 0.04394196718931198, -0.0031891711987555027, 0.007228105328977108, -0.024510035291314125, -0.028339087963104248, 0.014538115821778774, 0.030079565942287445, 0.018827883526682854, 0.00870751217007637, 0.024960510432720184, 0.03872052952647209, -0.011835254728794098, -0.00243922951631248, -0.0014781270874664187, -0.043286725878715515, -0.013841924257576466, 0.012705493718385696, 0.04725911468267441, 0.007263938896358013, -0.008180249482393265, 0.015469783917069435, 0.007064295466989279, 0.005203519016504288, -0.004573875572532415, 0.02827765792608261, 0.003112385282292962, 0.01133358757942915, -0.010079419240355492, 0.022749079391360283, -0.01605335623025894, -0.05794769898056984, -0.020752647891640663, -0.019298836588859558, 0.021172409877181053, 0.018019072711467743, 0.03857719525694847, 0.021029077470302582, 0.02375241369009018, -0.011200492270290852, -0.0020092290360480547, 0.03661147877573967, -0.03849529102444649, -0.006286199204623699, 0.0342567153275013, 0.015561927109956741, -0.001689288066700101, 0.0053750076331198215, -0.006235008593648672, 0.025984322652220726, 0.03552624210715294, 0.01660621352493763, 0.0058510797098279, 0.00395191041752696, -0.022892413660883904, 0.03108290024101734, -0.005160007160156965, 0.00975691806524992, 0.008497631177306175, -0.011650968343019485, -0.0005822925013490021, 0.010069181211292744, 0.0023880391381680965, -0.0005106257158331573, -0.02823670580983162, -0.03184052184224129, 0.013616685755550861, 0.032434333115816116, 0.01068858616054058, -0.053688645362854004, -0.003980065230280161, -0.02645527571439743, -0.00712060509249568, -0.005769175011664629, -0.0124393031001091, -0.02410051040351391, -0.025410987436771393, 0.028666706755757332, 0.012664541602134705, 0.016237642616033554, -0.03302814066410065, 0.006864652503281832, 0.0034758381079882383, -0.037266720086336136, 0.007407272234559059, -0.008676798082888126, -0.009890014305710793, -0.013800972141325474, -0.004474054090678692, -0.03440004959702492, 0.04562101513147354, 0.00360893364995718, -0.01450740173459053, 0.009618704207241535, 0.008553940802812576, 0.011313111521303654, 0.03814719617366791, 0.022626223042607307, -0.000481831026263535, -0.02936289831995964, 0.028687182813882828, 0.00872286967933178, 0.02743813395500183, -0.006020008586347103, -0.04873340204358101, 0.027601944282650948, -0.01579740270972252, -0.011978588066995144, -0.01706692948937416, -0.03194290027022362, -0.007166676688939333, 0.011978588066995144, 0.011343825608491898, -0.0004236017994116992, -0.012111683376133442, 0.03861815109848976, -0.008973702788352966, -0.0433686338365078, 0.026475751772522926, 0.005298221949487925, -0.023854795843362808, -0.010038466192781925, -0.006910724099725485, 0.03759433701634407, -0.02021002769470215, -0.008861083537340164, -0.018725503236055374, 0.02739718183875084, -0.010463347658514977, 0.010729539208114147, -0.008799655362963676, -0.0027130991220474243, 0.025697655975818634, -0.009792751632630825, 0.025001464411616325, 0.01231644582003355, -0.022626223042607307, 0.019544551149010658, 0.016667641699314117, 0.01126192044466734, 0.04031767696142197, -0.010494062677025795, -0.014599543996155262, -0.003982624504715204, 0.0018799728713929653, 0.0043358393013477325, 0.010514538735151291, 0.008036916144192219, 0.0002865071000996977, -0.03147194907069206, -0.04705435037612915, -0.032393377274274826, -0.003969827201217413, -0.023097176104784012, -0.00015085215272847563, 0.007166676688939333, 0.01692359521985054, -0.008789417333900928, -0.01608406938612461, -0.010304657742381096, 0.01175334956496954, -0.03575148060917854, -0.0010167722357437015, -0.012971685267984867, -0.0041925059631466866, 0.00709501001983881, -0.015162640251219273, -0.023383842781186104, 0.0423857755959034, -0.011476920917630196, -0.016145499423146248, 0.012255017645657063, -0.01182501669973135, 0.005282864440232515, -0.018408121541142464, -0.027806704863905907, -0.02596384659409523, -0.01333001907914877, -0.00612238934263587, 0.01640145108103752, -0.02350669912993908, -0.025636225938796997, -0.01579740270972252, 0.011763587594032288, 0.0021500030998140574, -0.017333120107650757, -0.006050722673535347, 0.005472269374877214, 0.015244545415043831, -0.005431317258626223, -0.0018006275640800595, -0.03409290686249733, -0.012664541602134705, 0.008047154173254967, -0.029874803498387337, 0.03667290881276131, -0.0011473081540316343, 0.026598608121275902, -0.04312291741371155, -0.001108915195800364, -0.019083837047219276, -0.018244311213493347, -0.025451941415667534, 0.006153103895485401, -0.007263938896358013, -0.0038162553682923317, 0.00790382083505392, 0.021868601441383362, 0.01207073125988245, -0.005625841207802296, -0.013739543035626411, -0.002879468258470297, -0.027479086071252823, 0.0023982771672308445, 0.008523226715624332, 0.04218101128935814, 0.02483765408396721, 0.009628942236304283, -0.0034502430353313684, -0.021909555420279503, -0.005262388382107019, 0.016810975968837738, -0.009183584712445736, -0.0028897065203636885, -0.01224477868527174, -0.0006286839488893747, -0.02003598026931286, -0.022749079391360283, -0.01730240508913994, 0.03765576705336571, 0.006905605085194111, -0.0002415554045001045, -0.008738226257264614, 0.020056456327438354, 0.03960100933909416, 0.03360147401690483, -0.018766455352306366, -0.022749079391360283, -0.027233371511101723, -0.0067110806703567505, -0.003178932936862111, -0.04701339825987816, -0.0037573862355202436, -0.05430293455719948, 0.031656235456466675, -0.019452407956123352, -0.006967033725231886, -0.02631194144487381, -0.015551688149571419, -0.021295268088579178, -0.02410051040351391, 0.03390862047672272, -0.010432633571326733, 0.01133358757942915, -0.021459078416228294, -0.01431287731975317, -0.03560814633965492, -0.01394430547952652, 0.008134177885949612, 0.02424384281039238, -0.025943370535969734, 0.03755338490009308, 0.027069561183452606, 0.017230737954378128, -0.011906921863555908, -0.03167670965194702, -0.005085780750960112, -0.05721055716276169, 0.0020591397769749165, 0.031901948153972626, -0.0010788408108055592, 0.0047632805071771145, 0.04664482921361923, -0.037410054355859756, -0.03317147493362427, -0.05344293266534805, 0.01689288020133972, -0.010545252822339535, -0.017885977402329445, -0.001689288066700101, -0.023854795843362808, -0.02350669912993908, -0.0005253429990261793, 0.024571463465690613, -0.00575381750240922, 0.026025274768471718, 0.008733107708394527, 0.01895074173808098, -0.00772465392947197, -0.005917627364397049, -0.029792899265885353, -0.0012074570404365659, 0.020691219717264175, 0.025390511378645897, -0.03173813968896866, 0.018418358638882637, -0.044228632003068924, 0.011906921863555908, -0.02133622020483017, 0.007064295466989279, -0.023957176133990288, 0.026987656950950623, 0.012551922351121902, -0.010883110575377941, 0.004642982501536608, -0.032147664576768875, -0.016022641211748123, 0.007325367536395788, 0.0226671751588583, 0.0017980680568143725, -0.0052521503530442715, -0.009081203490495682, 0.01892002671957016, 0.012674779631197453, 0.004642982501536608, -0.0055900076404213905, 0.007601796183735132, -0.027069561183452606, 0.04050196334719658, -0.015654070302844048, -0.018418358638882637, -0.011589540168642998, -0.001868454972282052, -0.015336688607931137, -0.01487597357481718, 0.0006549190729856491, 0.023527175188064575, -0.01983121782541275, 0.000904792919754982, -0.009234774857759476, 0.0035807788372039795, 0.09894109517335892, -0.011712397448718548, -0.024673843756318092, -0.010058943182229996, -0.021295268088579178, 0.014056924730539322, 0.03306909278035164, -0.03182004392147064, 0.04488387331366539, -0.06278008967638016, -4.8830985178938136e-05, -0.002498098649084568, -0.0256157498806715, -0.0014794068410992622, -0.001131311058998108, -0.014906687662005424, -0.014210496097803116, -0.030263852328062057, 0.0066496520303189754, 0.0015075616538524628, 0.004801673348993063, 0.02074241079390049, 0.016247879713773727, -0.00020028301514685154, -0.0234043188393116, 0.009818347170948982, 0.014251448214054108, 0.00807786826044321, -0.018612883985042572, -0.011784064583480358, 0.04138243943452835, -0.002079616067931056, 0.00648072361946106, -0.003166135400533676, -0.004031255841255188, -0.0251243207603693, -0.005569531582295895, 0.01818288303911686, -0.00037145140231586993, 0.011323349550366402, 0.044965777546167374, -0.015131926164031029, 0.04011291265487671, 0.004092684481292963, 0.016421927139163017, 0.03765576705336571, 0.002269021002575755, -0.012920494191348553, -0.017599310725927353, -0.03317147493362427, 0.04881530627608299, -0.015930498018860817, -0.007658105809241533, 0.02932194620370865, 0.02078336291015148, 0.025984322652220726, -0.028850993141531944, -0.017845025286078453, 0.01758907176554203, -0.012603112496435642, 0.018336454406380653, 0.006101913284510374, -0.026086702942848206, 0.019247645512223244, 0.0034169689752161503], [0.06291412562131882, 0.017926272004842758, 0.029208682477474213, 0.003927068784832954, -0.042658448219299316, -0.009712595492601395, 0.008689683862030506, 0.00902390293776989, 0.055743616074323654, 0.04229384660720825, -0.07247480005025864, 0.05951116979122162, -0.04209129139780998, 0.00013775441038887948, 0.004554994869977236, 0.033644676208496094, -0.014371400699019432, 0.022868655622005463, 0.005124685354530811, 0.0045904419384896755, 0.0072869788855314255, -0.006243811454623938, 0.0047043804079294205, 0.008542830124497414, 0.0033624419011175632, -0.0019951839931309223, 0.05481185391545296, -0.03230779990553856, 0.04359021037817001, -0.037695810198783875, 0.02197740599513054, -0.013621941208839417, 0.024489110335707664, -0.019141612574458122, 0.039923932403326035, 0.011241898871958256, -0.006340025924146175, -0.03427259996533394, 0.03001890890300274, -0.01694387197494507, -0.07924019545316696, 0.04225333780050278, -0.008233931846916676, 0.00065577746136114, -0.03244958817958832, 0.06153673678636551, 0.02588675171136856, -0.006886929273605347, -0.007388256955891848, 0.012143276631832123, 0.009332802146673203, 0.004962640348821878, 0.0009020104771479964, 0.013297850266098976, 0.0482490174472332, 0.015272778458893299, 0.003954920452088118, 0.024347320199012756, -0.010603845119476318, 0.04533219709992409, 0.010765890590846539, -0.01036584097892046, -0.003410549135878682, 0.03001890890300274, -0.024671411141753197, -0.027770528569817543, 0.019627748057246208, 0.03313828259706497, -0.03504231572151184, -0.001398907508701086, 0.013196571730077267, 0.041017740964889526, 0.00733761815354228, -0.027709761634469032, -0.001534367329441011, 0.010806402191519737, 0.002363584004342556, -0.013611813075840473, 0.00586908170953393, 0.014837280847132206, -0.054892875254154205, 0.022321753203868866, -0.01049243938177824, 0.011728035286068916, -0.01574878580868244, 0.002967456355690956, -0.01115074846893549, -0.022382520139217377, -0.041807711124420166, -0.002585130510851741, -0.007995927706360817, -0.05667537450790405, 0.043063562363386154, 0.0669652596116066, 0.014259994961321354, -0.02171408198773861, -0.0050082155503332615, -0.008912496268749237, -0.02392195165157318, 0.06518276035785675, 0.023719394579529762, 0.024083996191620827, 0.02726413682103157, 0.011565989814698696, 0.03133552893996239, -0.05886298790574074, -0.03295598179101944, -0.034353625029325485, -0.010806402191519737, 0.0026180457789450884, 0.023516837507486343, 0.00029497325886040926, -0.034232087433338165, 0.07741718739271164, 0.013470022939145565, 0.0015964002814143896, 0.00733761815354228, 0.0036105739418417215, 0.00798073597252369, -0.019242890179157257, 0.013530789874494076, -0.009955664165318012, 0.010522822849452496, -0.0593896359205246, 0.0052867308259010315, 0.04290151596069336, -0.033705443143844604, 0.04241538047790527, -0.022382520139217377, -0.019131483510136604, 0.05635128542780876, 0.027122346684336662, 0.03522461652755737, -0.018463047221302986, 0.006755267269909382, -0.051489923149347305, 0.01327759400010109, 0.0325508676469326, -0.01850355789065361, -0.008988454937934875, 0.01646786369383335, 0.000503543415106833, 0.042982541024684906, 0.025724705308675766, -0.021855872124433517, 0.02562342770397663, 0.030849391594529152, 0.07587775588035583, 0.016619781032204628, 0.017946526408195496, -0.022807888686656952, 0.051935549825429916, 0.0005412062746472657, 0.015839936211705208, 0.026170330122113228, 0.01059371791779995, -0.009231523610651493, 0.04016700014472008, -0.012183788232505322, 0.006547646597027779, -0.03686532750725746, -0.031213993206620216, 0.04156464338302612, -0.025258826091885567, 0.044562481343746185, 0.03212549909949303, -0.023111723363399506, -0.016305817291140556, -0.030444277450442314, -0.06271156668663025, 0.0016698271501809359, 0.01033039391040802, -0.014330889098346233, -0.055216968059539795, -0.02758822776377201, -0.0008855527266860008, 0.010877297259867191, 0.010938064195215702, -0.0006893259123899043, -0.0567563995718956, 0.022321753203868866, -0.03137603774666786, -0.03885038197040558, -0.03753376379609108, -0.013996670953929424, 0.023233259096741676, 0.047236230224370956, 0.019111229106783867, -0.021592548117041588, 0.010345585644245148, 0.024043485522270203, 0.033502884209156036, 0.002273699501529336, 0.012811713851988316, -0.013723218813538551, 0.015850065276026726, -0.03550819680094719, 0.006522327195852995, 0.013449767604470253, 0.0003968846285715699, 0.020448103547096252, -0.032469846308231354, 0.04662856087088585, 0.02641339972615242, -0.03812117874622345, -0.05173299089074135, 0.034819502383470535, 0.0037523636128753424, 0.049666911363601685, 0.03554870933294296, -0.019911328330636024, -0.050315093249082565, -0.0541231594979763, 0.011302665807306767, -0.013014270924031734, -0.002072408562526107, 0.03891114890575409, 0.011424200609326363, -0.017926272004842758, 0.03959984332323074, 0.020741811022162437, -0.020701298490166664, 0.012983887456357479, 0.00385870598256588, -0.04683111980557442, -0.015981726348400116, 0.02438783086836338, 0.027446437627077103, 0.019404936581850052, -0.05408265069127083, -0.015738658607006073, 0.06728935241699219, 0.012072381563484669, 0.00729204248636961, 0.06818059831857681, -0.0009020104771479964, 0.011434327811002731, -0.01190020889043808, -0.02060002088546753, -0.0023483922705054283, 0.0051170894876122475, 0.012659796513617039, 0.005112025886774063, 0.023192746564745903, -0.016579268500208855, -0.008892240934073925, 0.0010868435492739081, 0.00968221202492714, 0.028722545132040977, 0.006486879661679268, 0.01876688189804554, -0.014148588292300701, 0.023901695385575294, 0.0038460460491478443, 0.020448103547096252, -0.0008982125436887145, 0.03538666293025017, 0.025461383163928986, 0.025643683969974518, -0.0027724953833967447, -0.006076702382415533, -0.005058854818344116, -0.008026311174035072, -0.011697651818394661, -0.04152413085103035, -0.003147225361317396, 0.07462190091609955, -0.020255673676729202, -0.02274712175130844, 0.01213314849883318, -0.013915647752583027, 0.03850603476166725, 0.005469032097607851, -0.03909344971179962, -0.012842097319662571, 0.008006054908037186, 0.010634228587150574, -0.007676900364458561, -0.07178610563278198, -0.019779665395617485, -0.042010266333818436, -0.028621267527341843, 0.020113883540034294, -0.004058730788528919, -0.00777817890048027, -0.03313828259706497, 0.0019040333572775126, 0.015920959413051605, 0.01772371493279934, -0.0010596249485388398, 0.02019490674138069, 0.024509364739060402, -0.003592850174754858, 0.006046318914741278, 0.01870611496269703, -0.02341555990278721, 0.00647168792784214, 0.014887920580804348, -0.01173816341906786, 0.002055950928479433, -0.024610644206404686, 0.022524310275912285, -0.011505222879350185, 0.04069364815950394, -0.021471014246344566, 0.009950599633157253, 0.004220776259899139, -0.010062006302177906, -0.048735152930021286, -0.008071886375546455, -0.0253601036965847, 0.05440673977136612, -0.02623109705746174, -0.01575891487300396, -0.05728304758667946, 0.041605155915021896, 0.022382520139217377, 0.06287360936403275, -0.00865930039435625, 0.024306809529662132, 0.01562725193798542, 0.06534480303525925, 0.013520662672817707, -0.023091468960046768, 0.03676404803991318, 0.013358617201447487, -0.0004782238102052361, 0.02928970381617546, -0.024205530062317848, -0.00036080420250073075, 0.00366880907677114, 0.05043662711977959, 0.011758418753743172, -0.018685858696699142, 0.00036238666507415473, -0.015971599146723747, 0.044157370924949646, 0.042861007153987885, -0.030099932104349136, 0.0013166188728064299, 0.011647013016045094, 0.00986957736313343, 0.01766294799745083, -0.02282814495265484, 0.010522822849452496, 0.030221465975046158, 0.03099118173122406, 0.0012545858044177294, -0.029370727017521858, -0.010563334450125694, 0.03336109593510628, 0.019911328330636024, 0.01987081579864025, -0.02008350007236004, -0.062468498945236206, -0.010355713777244091, 0.003990367986261845, -0.011252027004957199, -0.01785537600517273, 0.012801585718989372, 0.0033118026331067085, -0.023253513500094414, 0.022726865485310555, 0.06562838703393936, -0.03591331094503403, 0.0033143346663564444, 0.038992173969745636, 0.004230903927236795, 0.03500180318951607, -0.04079492762684822, 0.036055099219083786, -0.0007526248809881508, -0.038546547293663025, -0.049140267074108124, -0.014928432181477547, -0.016559014096856117, -0.011282410472631454, 0.0030054356902837753, 0.0016723590670153499, -0.02086334489285946, 0.02386118471622467, -0.0033548460341989994, 0.007732603698968887, 0.02943149395287037, 0.04217231273651123, 0.05570310354232788, -0.029796097427606583, 0.02386118471622467, 0.007023654878139496, 0.018138956278562546, -0.04610191285610199, 0.008188356645405293, -0.003944792319089174, 0.009353057481348515, -0.00777817890048027, 0.0051525370217859745, 0.041888732463121414, -0.026109563186764717, 0.00104569923132658, -0.048086971044540405, 0.00639066519215703, -0.02426629699766636, -0.02955302782356739, -0.05825531855225563, 0.048289526253938675, -0.004846170078963041, 0.00813771691173315, -0.014108076691627502, 0.01687297597527504, 0.004319522529840469, 0.0338674858212471, 0.00794022437185049, 0.010289882309734821, -0.0023509240709245205, 0.007788306567817926, 0.006861609406769276, 0.03603484481573105, 0.05683742091059685, 0.0038359183818101883, -0.0361158661544323, 0.030180955305695534, 0.01706540584564209, -0.03741222992539406, 0.034495413303375244, -0.005337370093911886, 0.010867169126868248, 0.017430007457733154, 0.031031692400574684, -0.028094619512557983, -0.058619920164346695, -0.027952829375863075, 0.0006371042691171169, 0.058093272149562836, 0.010411416180431843, -0.03883012756705284, -0.0017280621686950326, -0.013237083330750465, -0.009515102952718735, 0.013935904018580914, 0.012690179981291294, -0.047114696353673935, -0.010011366568505764, -0.029451750218868256, 0.03471822664141655, -0.008654236793518066, -0.018594708293676376, -0.006294450722634792, 0.03321930393576622, 0.07498650252819061, -0.026129819452762604, -0.0313962958753109, -0.025198059156537056, -0.006988207343965769, 0.0006418516859412193, -0.03662225976586342, 0.0052411556243896484, -0.03674379363656044, -0.04897822067141533, 0.03336109593510628, -0.024489110335707664, 0.05870094522833824, 0.03297623619437218, 0.0304645337164402, 0.030383510515093803, 0.024509364739060402, 0.04845157265663147, 0.004453716333955526, 0.014634724706411362, 0.009150500409305096, -0.04533219709992409, -0.003461188403889537, -0.0032611635979264975, 0.012528134509921074, -0.013713091611862183, 0.010411416180431843, -0.01681220903992653, -0.005975423846393824, 0.0026332377456128597, -0.027102092280983925, -0.012345833703875542, 0.02805410884320736, -0.019769538193941116, -0.040572114288806915, -0.046061404049396515, 0.01824023388326168, 0.04018725827336311, 0.053312934935092926, 0.011910336092114449, 0.016842592507600784, -0.061293669044971466, -0.05432571843266487, -0.01441191229969263, 0.05971372872591019, -0.004127093590795994, 0.0015900704311206937, -0.033907998353242874, -0.00029528976301662624, -0.038425013422966, 0.049585890024900436, -0.03617663308978081, 0.024083996191620827, -0.022382520139217377, 0.030910158529877663, -0.04290151596069336, 0.047114696353673935, -0.01942519098520279, 0.0019040333572775126, 0.020762065425515175, -0.014563829638063908, 0.040369559079408646, -0.02046835795044899, -0.01738949678838253, 0.03198371082544327, 0.02764899469912052, -0.03060632385313511, -0.030505044385790825, -0.005818442441523075, 0.0465475395321846, -0.0021800168324261904, -0.018544070422649384, 0.007109741680324078, 0.009353057481348515, -0.05849838629364967, -0.011282410472631454, -0.027284393087029457, -0.008087078109383583, 0.031416550278663635, 0.02831743285059929, 0.019648004323244095, 0.016164027154445648, -0.006897056940943003, -0.038019899278879166, -0.05205708369612694, -0.024347320199012756, 0.011525478214025497, 0.024509364739060402, -0.01458408497273922, -0.020640531554818153, 0.014766386710107327, -0.009145436808466911, -0.008882112801074982, -0.024043485522270203, 0.019759410992264748, -0.02471192181110382, 0.019263146445155144, 0.027304649353027344, 0.03261163458228111, 0.02177484892308712, -0.019982222467660904, -0.023456070572137833, 0.0011267218505963683, 0.009980983100831509, 0.02935047261416912, -0.02256482094526291, -0.05302935466170311, -0.004706912208348513, 0.0350220613181591, -0.003678936744108796, -0.02452962100505829, -0.006415984593331814, 0.0019989819265902042, -0.006218492053449154, -0.01746039092540741, -0.002274965401738882, -0.0010849445825442672, -0.005479159764945507, -0.015617124736309052, -0.0037371718790382147, 0.023395303636789322, -0.008117461577057838, -0.0406733937561512, 0.013429512269794941, 0.006248875521123409, 0.03844526782631874, 0.05627026408910751, 0.008056694641709328, 0.009317610412836075, -0.03451566770672798, -0.017055276781320572, -0.023253513500094414, 0.022423030808568, 0.06441304087638855, 0.005641205236315727, -0.050193559378385544, -0.011120365001261234, 0.02955302782356739, 0.014594213105738163, -0.03739197552204132, -0.019384680315852165, 0.04290151596069336, 0.017348984256386757, -0.024691667407751083, 0.0028687098529189825, -0.010603845119476318, -0.012497751042246819, 0.05837685242295265, -0.03163936361670494, 0.026636211201548576, -0.050963275134563446, 0.04164566472172737, -0.023030702024698257, 0.007302170619368553, 0.016103260219097137, 0.014604341238737106, -0.03496129438281059, -0.03639944642782211, 0.0059045287780463696, -0.014533446170389652, 0.00037789493217132986, 0.007418640423566103, -0.000507974298670888, -0.006659052800387144, -0.018230106681585312, -0.0049727680161595345, -0.03830347955226898, -0.008218740113079548, -0.037493251264095306, -0.023172490298748016, -0.0042866067960858345, -0.0012172394199296832, -0.01863522082567215, -0.01203186996281147, 0.018787138164043427, -0.025096779689192772, -0.023233259096741676, -0.016700802370905876, -0.018017422407865524, -0.03202421963214874, 0.029188426211476326, -0.021268457174301147, -0.0203366968780756, 0.014138460159301758, -0.009849321097135544, -0.01895931176841259, -0.005939976312220097, -0.022321753203868866, 0.012001486495137215, 0.013844753615558147, -0.016001982614398003, -0.0036105739418417215, 0.012041998095810413, -0.03629816696047783, 0.003015563590452075, -0.0439143031835556, 0.025866495445370674, -0.04032904654741287, -0.02732490375638008, -0.020154396072030067, -0.024083996191620827, 0.008046566508710384, 0.023192746564745903, -0.0035092956386506557, 0.0262918658554554, -0.015617124736309052, -0.011788802221417427, -0.033644676208496094, -0.018078189343214035, 0.05918708071112633, 0.025744961574673653, 0.0037321080453693867, 0.00771741196513176, 0.0003383330476935953, -0.005200644489377737, -0.036318425089120865, 0.017055276781320572, 0.017602181062102318, -0.0012887672055512667, 0.0026534933131188154, 0.015981726348400116, 0.006785650737583637, 0.009302418678998947, 0.01474613044410944, -0.016123516485095024, 0.01888841576874256, -0.02529933676123619, 0.03868833929300308, -0.04772236943244934, 0.022645844146609306, -0.0296948179602623, 0.05728304758667946, -0.03532589599490166, -0.002142037497833371, 0.004068858455866575, 0.00342574086971581, 0.0021838147658854723, -1.9919398255296983e-05, 0.03190268576145172, -0.0296948179602623, 0.018908672034740448, -0.022058429196476936, 0.019040333107113838, 0.012761075049638748, -0.03465745970606804, 0.01641722396016121, 0.013621941208839417, 0.052138105034828186, -0.0016128580318763852, -0.0009425218449905515, -0.029532773420214653, 0.047762878239154816, -0.0067704590037465096, 0.02432706393301487, -0.02511703595519066, -0.06643860787153244, -0.0827241763472557, -0.009778426960110664, -0.008046566508710384, 0.03419157862663269, 0.025481637567281723, -0.006380537524819374, -0.0266767218708992, 0.008355465717613697, -0.04087594896554947, -0.03445490077137947, -0.01843266375362873, 0.013561173342168331, 0.0035371470730751753, 0.013571301475167274, 0.032733168452978134, 0.011171003803610802, -0.04707418754696846, 0.013783985748887062, -0.012406600639224052, -0.017764225602149963, 0.03212549909949303, -0.025076525285840034, 0.0023332005366683006, -0.0165488850325346, -0.006400792859494686, 0.022443287074565887, 0.04346867650747299, 0.006329898256808519, -0.007135061081498861, 0.005565246567130089, -0.012153404764831066, -0.0075908140279352665, -0.040572114288806915, 0.0016976787010207772, 0.04008597880601883, -0.026636211201548576, -0.02307121269404888, -0.0216533150523901, -0.014533446170389652, -0.044886574149131775, 0.010320265777409077, 0.013753602281212807, 0.04152413085103035, 0.012153404764831066, -0.023375047370791435, -0.018594708293676376, -0.015455079264938831, 0.003195332596078515, -0.04472452774643898, 0.00974297896027565, 0.033826977014541626, 0.02726413682103157, 0.011657140217721462, -0.01765282079577446, 0.023395303636789322, 0.02321300283074379, -0.020822832360863686, -0.010178476572036743, 0.006517263129353523, 0.03810092434287071, 0.01876688189804554, 0.0067603313364088535, -0.03404978662729263, 0.0011153280502185225, 0.02902638167142868, -0.018908672034740448, 0.020235419273376465, 0.024468854069709778, 0.047236230224370956, 0.012629413045942783, 0.02406373992562294, -0.0034687842708081007, -0.014158716425299644, -0.03413081169128418, -0.014442295767366886, -0.011252027004957199, 0.013054781593382359, -0.005058854818344116, -0.010917807929217815, 0.026757745072245598, -0.0064210486598312855, -0.0004652475181501359, 0.014594213105738163, 0.03145706281065941, 0.024934735149145126, 0.02949226088821888, -0.03398901969194412, -0.0190200787037611, -0.010082261636853218, -0.0266767218708992, 0.010340522043406963, 0.033705443143844604, 0.0006640063365921378, -0.03477899357676506, 0.01779460906982422, 0.0232737697660923, -0.030484789982438087, -0.013085165061056614, 0.0007368001388385892, 0.006866673473268747, 0.027628740295767784, -0.04387379065155983, -0.0393567755818367, -0.01251800637692213, 0.037959132343530655, -0.03931626304984093, 0.039336517453193665, 0.016721058636903763, 0.003499167738482356, 0.03577151894569397, 0.01995183899998665, -0.022463543340563774, -0.03601458668708801, 0.012426855973899364, 0.027021069079637527, -0.0020698767621070147, 0.022645844146609306, 0.0025534809101372957, 0.02511703595519066, -0.0013672580244019628, 0.044886574149131775, 0.028033852577209473, -0.04533219709992409, 0.019202379509806633, 0.015738658607006073, -0.00876057893037796, 0.0028206026181578636, 0.004390417132526636, 0.03558921813964844, 0.003754895646125078, 0.010294945910573006, 0.008542830124497414, -0.024043485522270203, 0.006775523070245981, -0.0061881085857748985, 0.024549877271056175, 0.03767555207014084, -0.008092141710221767, 0.013287722133100033, -0.012750946916639805, -0.029634051024913788, -0.008066821843385696, -0.010776018723845482, -0.012224298901855946, -0.017885759472846985, 0.03668302670121193, -0.02823640964925289, -0.015850065276026726, -0.01981004886329174, -0.014077693223953247, -0.02471192181110382, -0.005479159764945507, 0.012548389844596386, -0.03694634884595871, -0.013591557741165161, -0.022321753203868866, -0.009044158272445202, 2.1027130060247146e-05, -0.006816034205257893, 0.02256482094526291, 0.02230149693787098, -0.017733842134475708, 0.0254411268979311, 0.006507135462015867, -0.040045466274023056, 0.022929422557353973, 0.035872798413038254, 0.004955044481903315, 0.0162754338234663, -0.034292854368686676, -0.025339847430586815, -0.009332802146673203, 0.011464711278676987, 0.027952829375863075, 0.0033345902338624, 0.028945358470082283, -0.004691720474511385, -0.010153156705200672, 0.05801225081086159, 0.0016875508008524776, -0.02843896672129631, -0.011525478214025497, -0.01575891487300396, 0.053191401064395905, 0.04395481199026108, 0.02511703595519066, 0.0032333119306713343, 0.01725783385336399, -0.025927262380719185, 0.03176089748740196, 0.019040333107113838, 0.004815786611288786, -0.0044106729328632355, -0.021855872124433517, -0.025157546624541283, -0.0006621073698624969, -0.013946031220257282, -0.021146923303604126, -0.03577151894569397, 0.023557348176836967, -0.036379192024469376, 0.019496086984872818, -0.011991359293460846, -0.019658131524920464, -0.012811713851988316, -0.010705123655498028, 0.05570310354232788, 0.023780161514878273, -0.005137345287948847, -0.005170261021703482, 0.030889902263879776, -0.01692361570894718, -0.0018723838729783893, 0.011444455944001675, 0.016386840492486954, 0.042536914348602295, 0.02608930878341198, 0.00524621969088912, -0.010897552594542503, 0.033644676208496094, -0.04865412786602974, 0.028742801398038864, -0.0072971065528690815, 0.005889337044209242, -0.004871489480137825, -0.025015758350491524, -0.002501575741916895, 0.027831295505166054, 0.029512517154216766, 0.006659052800387144, 0.019273273646831512, 0.03532589599490166, -0.03208498656749725, 0.017865505069494247, 0.012335705570876598, 0.012852225452661514, 0.010279754176735878, 0.015931088477373123, -0.014371400699019432, -0.0028231346514075994, -0.05363702401518822, 0.023516837507486343, 0.032328054308891296, -0.006076702382415533, -0.027669250965118408, 0.012629413045942783, -0.013834625482559204, -0.018665604293346405, -0.0035574028734117746, 0.019070716574788094, 0.025988029316067696, 0.0055804383009672165, 0.04099748283624649, -0.03267240151762962, -0.0173186007887125, 0.020559508353471756, 0.01272056344896555, 0.003965048119425774, 0.024165019392967224, -0.015080349519848824, 0.05760713666677475, 0.03777683153748512, -0.00023927015718072653, 0.009368249215185642, -0.05230015143752098, -0.0006886929040774703, 0.0036080419085919857, -0.005651332903653383, 0.07065179198980331, 0.02086334489285946, -0.05059867352247238, -0.003511827439069748, -0.01817946694791317, 0.0006956558208912611, -0.028864335268735886, 0.002376243704929948, 0.007828817702829838, 0.008269378915429115, 0.014756258577108383, 0.04569680243730545, 0.007200892083346844, 0.006304578389972448, 0.03192294389009476, -0.02060002088546753, -0.006223555654287338, 0.008730195462703705, -0.01968851499259472, 0.0018749157898128033, 0.014178971759974957, 0.0059045287780463696, 0.004342310130596161, 0.03078862465918064, 0.01967838779091835, -0.013682708144187927, 0.0020331633277237415, -0.029472006484866142, 0.01602223888039589, 0.019202379509806633, 0.009175820276141167, 0.040308792144060135, 0.010846913792192936, 0.006502071395516396, 0.029654307290911674, -0.010411416180431843, -0.0069578238762915134, -0.035670243203639984, 0.02485371194779873, -0.039255496114492416, -0.010553206317126751, 0.01311554852873087, -0.01386500895023346, -0.012366089038550854, -0.005874145310372114, -0.030424023047089577, -0.0017787014367058873, 0.012568646110594273, -0.03342186287045479, 0.018594708293676376, 0.0064564961940050125, 0.03471822664141655, 0.035346150398254395, 0.0015951343812048435, 0.03917447477579117, -0.03086964786052704, 0.04269896075129509, 0.0008235197747126222, 0.019009949639439583, -0.02876305766403675, 0.013976414687931538, 0.03208498656749725, 0.021349480375647545, 0.03289521485567093, 0.0010805135825648904, -0.02130896970629692, -0.020103756338357925, 0.020681044086813927, -0.013672580011188984, -0.03473848104476929, -0.048613619059324265, -0.01790601573884487, 0.012599029578268528, -0.019303657114505768, 0.00034276398946531117, 0.0008057960076257586, -0.010836785659193993, -0.010938064195215702, -0.04930230975151062, 0.0296948179602623, -0.04865412786602974, -0.00418279692530632, 0.010907680727541447, -0.0017040085513144732, -0.002148367464542389, -0.009353057481348515, -0.014877792447805405, -0.018412407487630844, 0.028337687253952026, -0.02679825760424137, 0.009277098812162876, 0.008755515329539776, 0.031882431358098984, -0.017045149579644203, -0.019303657114505768, -0.004787934944033623, 0.0044916956685483456, -0.012143276631832123, 0.001790095237083733, 0.005828570108860731, 0.011586245149374008, 0.02773001790046692, 0.01574878580868244, -0.007160380948334932, -0.01660965196788311, -0.020822832360863686, -0.008198483847081661, 0.002242049900814891, -0.02236226387321949, 0.0007766784983687103, 0.0216533150523901, -0.004825914278626442, -0.019931582733988762, -0.013389000669121742, -0.004251159727573395, -0.03500180318951607, 0.0043017989955842495, 0.02714260295033455, 0.01197110302746296, 0.0184427909553051, -0.008679556660354137, -0.008385849185287952, -0.006542582530528307, -0.00031364645110443234, 0.05302935466170311, -0.019850561395287514, 0.03810092434287071, 0.0015204414958134294, -0.02673749066889286, 0.027811041101813316, -0.015191755257546902, -0.0007342681637965143, 0.02112666890025139, -0.033907998353242874, -0.013611813075840473, 0.008603597991168499, 0.005076578352600336, 0.013348489068448544, 0.009398632682859898, -0.0032662274315953255, 0.013409256003797054, -0.007378129288554192, 0.010097453370690346, 0.002095196396112442, -0.0069932714104652405, 0.032530613243579865, -0.01772371493279934, -0.04593987017869949, -0.0241245087236166, 0.016447607427835464, -0.05035560578107834, -0.011849569156765938, -0.01336874533444643, -0.024792945012450218, 0.0019065652741119266, 0.02157229371368885, -0.012204043567180634, -0.009591061621904373, -0.028074365109205246, -0.011211515404284, -0.011697651818394661, -0.030099932104349136, 0.00829976238310337, -0.01633620075881481, -0.0033953574020415545, -0.03777683153748512, 0.011322922073304653, 0.029269449412822723, 0.033766210079193115, 0.018402280285954475, -0.0018888416234403849, -0.012912992388010025, -0.0652637854218483, -0.020286057144403458, -0.0004652475181501359, 0.03895166143774986, 0.020508870482444763, 0.005772867240011692, 0.012345833703875542, -0.023192746564745903, -0.02910740301012993, 0.0031852046959102154, 0.00403847498819232, -0.010360777378082275, 0.0019027673406526446, -0.012963631190359592, 0.04593987017869949, 0.009783490560948849, -0.016964126378297806, -0.0075553664937615395, 0.010857040993869305, 0.0024686602409929037, 0.0061627887189388275, 0.024144763126969337, 0.009459399618208408, -0.025967774912714958, -0.01474613044410944, -0.003162417095154524, -0.017490774393081665, -0.05517645552754402, -0.03176089748740196, 0.00570703623816371, 0.034495413303375244, 0.021227946504950523, 0.0162754338234663, 0.02157229371368885, 0.056391797959804535, -0.018463047221302986, 0.012082509696483612, 0.01464485190808773, -0.014594213105738163, -0.0190200787037611, 0.007788306567817926, -0.0026256416458636522, -0.0012583837378770113, 0.0216533150523901, -0.002499043708667159, 0.022909168154001236, 0.030970925465226173, 0.02477268874645233, 0.006978079676628113, -0.009783490560948849, -0.014371400699019432, 0.01849343068897724, -0.016781825572252274, -0.014654980041086674, -0.029309960082173347, 0.0101683484390378, -0.019404936581850052, 0.029836608096957207, 0.012224298901855946, -0.015363928861916065, -0.026210842654109, -0.04176719859242439, -0.008061758242547512, 0.02040759101510048, 0.0026788129471242428, -0.052664753049612045, 0.010143028572201729, -0.020964622497558594, -0.019242890179157257, 0.007742731366306543, -0.017632564529776573, -0.023820672184228897, -0.031132971867918968, 0.0012862352887168527, -0.00968221202492714, -0.0015128456288948655, 0.0022850933019071817, 0.013409256003797054, -0.012821841984987259, -0.054892875254154205, 0.015606996603310108, -0.005195580422878265, -0.027284393087029457, -0.019263146445155144, -0.009003646671772003, -0.022848401218652725, 0.0558246374130249, -0.022443287074565887, -0.017743971198797226, 0.009818937629461288, 0.04512964189052582, 0.006167852785438299, -0.015870321542024612, 0.0014849940780550241, 0.028560500591993332, -0.020478487014770508, 0.008679556660354137, 0.02465115487575531, 0.020610148087143898, -0.0005019609234295785, -0.046588052064180374, -0.006567902397364378, -0.013004142791032791, -0.022078685462474823, 0.018068062141537666, -0.012852225452661514, -0.005939976312220097, 0.011647013016045094, 0.007428768556565046, 0.003451060503721237, 0.005864017643034458, 0.013540918007493019, 0.005200644489377737, -0.062022872269153595, 0.030059419572353363, 0.01082665752619505, -0.03512333706021309, -0.03072785772383213, -0.0038409822154790163, 0.02523856982588768, -0.015991855412721634, -0.01467523630708456, -0.043185096234083176, 0.023719394579529762, -0.01386500895023346, 0.0072515313513576984, -0.007378129288554192, -0.02032656967639923, 0.009631573222577572, -0.006096957717090845, 0.02758822776377201, 0.020681044086813927, -0.032591380178928375, 0.02714260295033455, 0.011079853400588036, 0.011616629548370838, 0.01474613044410944, 0.004790466744452715, -0.009494847618043423, -0.01049243938177824, -0.012305322103202343, -0.009251778945326805, 0.01759205386042595, 0.011505222879350185, -0.00472210394218564, -0.00833520945161581, -0.027547717094421387, -0.05177350342273712, -0.0005693743587471545, -0.0013052249560132623, -0.004772743210196495, 0.003904281184077263, 0.010360777378082275, -0.009353057481348515, -0.026109563186764717, -0.010335457511246204, -0.0014596745604649186, -0.033442117273807526, 0.00360550987534225, -0.01467523630708456, -0.025907007977366447, -0.01251800637692213, -0.02038733661174774, 0.007509791292250156, 0.02641339972615242, -0.004630953539162874, -0.015981726348400116, 0.05278628692030907, -0.01245723944157362, 0.02849973365664482, -0.0015824745642021298, -0.02594751864671707, -0.00030620882171206176, -0.001052029081620276, -0.02145075798034668, 0.002628173679113388, 0.007281914819031954, -0.028519989922642708, 0.01692361570894718, 0.019830305129289627, 0.012477494776248932, 0.011809057556092739, -0.008147845044732094, 0.0024876499082893133, -0.009621445089578629, -0.014462551102042198, -0.017440134659409523, -0.014594213105738163, -0.02151152677834034, -0.0018166807712987065, -0.049585890024900436, 0.04792492464184761, 0.013348489068448544, 0.022868655622005463, -0.04545373097062111, 0.0019002354238182306, -0.04026827961206436, -0.01882764883339405, -3.0482415240840055e-05, 0.006314706522971392, 0.010624101385474205, -0.009201140142977238, -0.0027750274166464806, 0.024489110335707664, 0.041483622044324875, 0.008963136002421379, -0.045089129358530045, -0.012092637829482555, -0.02876305766403675, -0.003033287124708295, -0.021471014246344566, 0.05635128542780876, -0.0010792476823553443, 0.027689507231116295, -0.009849321097135544, 0.005879209376871586, -0.0012780064716935158, 0.020053116604685783, -0.007114805746823549, 0.010244307108223438, -0.0049195969477295876, 0.02400297299027443, -0.036460213363170624, -0.02066078782081604, -0.017278090119361877, 0.05023407191038132, -0.005641205236315727, 0.029856864362955093, 0.017409751191735268, -0.005924784578382969, 0.0330977700650692, 0.023962462320923805, 0.005185452755540609, -0.023618115112185478, 0.018989695236086845, 0.003987835720181465, -0.016852721571922302, -0.029512517154216766, 0.006593221798539162, -0.05197605863213539, 0.007894649170339108, -0.009008711203932762, -0.032267287373542786, -0.021916639059782028, -0.02394220605492592, -0.054690320044755936, -0.014766386710107327, -0.003066202625632286, -0.033057261258363724, 0.005155068822205067, -0.029188426211476326, -0.007550302427262068, -0.017733842134475708, 0.0002473407657817006, -0.018847905099391937, 0.008846665732562542, -0.020559508353471756, 0.004775275010615587, -0.020579764619469643, 0.014391656033694744, 0.0007798434235155582, -0.021855872124433517, -0.0031649491284042597, -0.04196975752711296, -0.00663373339921236, 0.030545556917786598, 0.02073168195784092, 0.029127659276127815, 0.060523953288793564, -0.0685046911239624, -0.02799334190785885, -0.027426183223724365, 0.004360033664852381, -0.0005136712570674717, -0.001441950793378055, -0.021268457174301147, -0.014715746976435184, -0.01581968180835247, -0.009687276557087898, 0.01115074846893549, 0.003638425376266241, 0.0152322668582201, 0.004585378337651491, 0.01719706691801548, -0.00016204539861064404, -0.011059598065912724, -0.022666098549962044, -0.018614964559674263, 0.024732178077101707, 0.03597407788038254, 0.00038011037395335734, 0.018230106681585312, -0.0474793016910553, 0.00820354837924242, -0.034697968512773514, 0.017440134659409523, -0.03228754550218582, 0.017490774393081665, -0.018159212544560432, 0.005458903964608908, 0.009975919499993324, -0.04176719859242439, -0.04634498059749603, -0.008709940128028393, -0.0015482930466532707, 0.023050956428050995, -0.011657140217721462, -0.008087078109383583, 0.001398907508701086, 0.0022850933019071817, 0.004370161797851324, 0.0033852295018732548, 0.008000991307199001, -0.02823640964925289, 0.021693827584385872, -0.02491447888314724, -0.062144409865140915, -0.01576904207468033, 0.010664612054824829, -0.002006577793508768, -0.0026458974462002516, -0.007449024356901646, 0.011647013016045094, -0.012771202251315117, -0.010087325237691402, -0.003813130548223853, 0.004575250204652548, 0.054042138159275055, -0.008066821843385696, -0.017176812514662743, 0.015981726348400116, -0.038668081164360046, 0.022463543340563774, -0.010563334450125694, -0.026575444266200066, 0.04784390330314636, -0.054568786174058914, -0.03007967583835125, 0.0012526868376880884, -0.04492708668112755, 0.0002213881816715002, 0.0133383609354496, -0.030808880925178528, -0.03105194866657257, -0.017956655472517014, 0.006299514789134264, 0.004934788681566715, 0.01883777603507042, -0.01641722396016121, 0.025380359962582588, 0.022666098549962044, -0.030302489176392555, 0.016194410622119904, -0.018675731495022774, 0.023354792967438698, -0.000527913507539779, -0.007849073968827724, 0.017936399206519127, 0.02086334489285946, 0.016781825572252274, 0.01424986682832241, 0.0465475395321846, -0.03536640852689743, -0.0058944011107087135, 0.012497751042246819, 0.00044467535917647183, 0.003405485302209854, 0.030444277450442314, -0.03550819680094719, 0.0361158661544323, -0.01973915472626686, 0.03955933079123497, 0.028601011261343956, 0.0018888416234403849, 0.014259994961321354, 0.007383193355053663, -0.019435320049524307, 0.02503601275384426, -0.01707553304731846, 0.00299277575686574, -0.028256665915250778, 0.015080349519848824, 0.022868655622005463, -0.026960302144289017, -0.02720336988568306, 0.03007967583835125, -0.004585378337651491, 0.012224298901855946, -0.005737419705837965, -0.0032181201968342066, 0.007808562368154526, 0.023901695385575294], [0.019511619582772255, 0.0011119585251435637, 0.025645781308412552, 0.008595750667154789, -0.028067758306860924, -0.009767127223312855, -0.02496672421693802, 0.04214690625667572, 0.035922203212976456, -0.0017683819169178605, 0.014316820539534092, 0.02532888762652874, 0.01576547883450985, -0.022499477490782738, -0.021379029378294945, 0.028294110670685768, -0.01220042072236538, 0.012732350267469883, 0.013060561381280422, -0.004634575452655554, 0.005033522378653288, 0.005627698730677366, 0.0034999814815819263, 0.0325721800327301, -0.03266272321343422, -0.02487618289887905, 0.004776046145707369, 0.00354525214061141, 0.026166394352912903, -0.018572254106402397, 0.0727950856089592, -0.03630700334906578, 0.038072556257247925, -0.008680633269250393, 0.047715187072753906, -0.007447009906172752, -0.026845453307032585, 0.02471773512661457, 0.022442888468503952, -0.02309931255877018, -0.04040399193763733, 0.02390286512672901, -0.0012810159241780639, -0.01725940778851509, 0.024830911308526993, 0.02460455894470215, 0.02517044171690941, -0.02707180567085743, 0.015527808107435703, 0.05667876452207565, -0.0356505811214447, 0.022182583808898926, -0.014396043494343758, -0.0006330807227641344, 0.043663471937179565, 0.031870488077402115, -0.026370111852884293, 0.014429996721446514, 0.038683708757162094, 0.00033510837238281965, -0.016919879242777824, 0.0028322404250502586, -0.010174562223255634, 0.025962676852941513, 0.030897168442606926, 0.005709751509130001, -0.004303534049540758, 0.04139994457364082, -0.029765404760837555, 0.02528361789882183, -0.01948898285627365, 0.0338623933494091, -0.05599970370531082, -0.08710058778524399, -0.006207727827131748, -0.04839424788951874, 0.03886479139328003, -0.016308724880218506, 0.04957128316164017, 0.007435692474246025, -0.012766302563250065, 0.017734749242663383, -0.019919054582715034, -0.002850631717592478, 0.023699147626757622, 0.0011657173745334148, -0.014316820539534092, 0.024423476308584213, -0.021775146946310997, -0.0074979392811656, 0.0012852599611505866, 0.030580274760723114, 0.033658675849437714, 0.031032981351017952, 0.014735572971403599, -0.017474442720413208, 0.009529456496238708, -0.025215711444616318, -0.009835032746195793, 0.04608544707298279, 0.0007688924670219421, 0.026551194489002228, 0.034020837396383286, -0.018221408128738403, 0.007147092372179031, -0.031259335577487946, -0.035197872668504715, 0.04162629693746567, -0.004422369413077831, 0.0074243745766580105, -0.019443713128566742, -0.03854789584875107, -0.025804229080677032, 0.06745316088199615, -0.011498726904392242, -0.01876465417444706, 0.02196754701435566, 0.03549213334918022, -0.0078091747127473354, 0.008788150735199451, -0.01323032658547163, 0.005191969219595194, -0.020360441878437996, -0.07632619142532349, -0.03739349544048309, 0.0014797820476815104, -0.01625213772058487, 0.0043969047255814075, -0.039408039301633835, 0.04583645984530449, -0.02277109958231449, -0.010174562223255634, 0.017689477652311325, -0.06808695197105408, -0.00027816646615974605, 0.02399340644478798, 0.010021774098277092, -0.016320042312145233, -0.011572291143238544, 0.00867497455328703, 0.004362951964139938, -0.039249591529369354, 0.049661822617053986, -0.004210163839161396, -0.039657026529312134, 0.017440490424633026, -0.008465598337352276, 0.0538267157971859, 0.016195548698306084, -0.009235197678208351, -0.047760460525751114, 0.023767054080963135, -0.0003441271255724132, -0.010084020905196667, -0.004795851651579142, 0.052378058433532715, -0.019013643264770508, 0.02394813485443592, -0.0220467709004879, -0.0034773461520671844, 0.006626480724662542, -0.026392746716737747, -0.007271586451679468, 0.003930051811039448, 0.025238346308469772, -0.014169691130518913, -0.01734994910657406, -0.008278856985270977, -0.06528016924858093, -0.044070906937122345, -0.03329651057720184, 0.007588480599224567, -0.017474442720413208, -0.005811610259115696, -0.015346725471317768, 0.01964743062853813, -0.0012838452821597457, 0.03816309571266174, -0.028905263170599937, 0.00395268714055419, 0.024491382762789726, -0.004532716702669859, 0.01397729106247425, -0.016919879242777824, -0.025758959352970123, 0.02055284194648266, -0.009455892257392406, 0.0471719428896904, 0.010378279723227024, 0.03567321598529816, -0.026483288034796715, -0.019466347992420197, 0.010734785348176956, 0.07329306751489639, -0.05685984715819359, -0.014316820539534092, -0.037144508212804794, 0.013671714812517166, 0.03599010780453682, -0.026777546852827072, -0.02033780701458454, 0.010106656700372696, 0.014848749153316021, 0.011906161904335022, -0.003344363998621702, -0.0010468821274116635, -0.0017924319254234433, 0.05749363452196121, 0.055863890796899796, 0.016761431470513344, -0.007990256883203983, -0.01601446606218815, -0.022725829854607582, 0.03895533084869385, -0.03610328584909439, 0.004428028129041195, 0.019239995628595352, 0.0820755586028099, -0.035967472940683365, 0.013264278881251812, -0.023404888808727264, 0.010774397291243076, 0.0226918775588274, -0.004532716702669859, -0.03594483807682991, 0.00778088066726923, -0.009993479587137699, -0.01783660799264908, 0.055501729249954224, -0.0179497841745615, -0.011736397631466389, 0.03866107389330864, -0.00806382205337286, -0.04590436443686485, 0.006162457168102264, 0.03671443834900856, 0.018821243196725845, -0.03372658044099808, 0.013716984540224075, 0.050476692616939545, -0.00978976208716631, -0.018345901742577553, -0.00016189536836463958, -0.02933533489704132, -0.00576351024210453, -0.005941763520240784, -0.01535804383456707, 5.835660340380855e-05, 0.05523010343313217, 0.05034088343381882, 0.019138136878609657, 0.010565021075308323, 0.02901843935251236, -0.04590436443686485, 0.018787289038300514, 0.011176173575222492, 0.029108980670571327, -0.03200629726052284, 0.023608606308698654, -0.03773302584886551, 0.0082052918151021, -0.007033916190266609, -0.016071055084466934, -0.02297481894493103, -0.05604497343301773, 0.00038586094160564244, 0.06939979642629623, -0.06396732479333878, -0.05962134897708893, 0.0032226992771029472, -0.027252888306975365, 0.0027516023255884647, 0.021729877218604088, 0.004303534049540758, -0.009982162155210972, 0.0197379719465971, -0.007011280860751867, -0.0055399867706000805, -0.027003899216651917, 0.03585429862141609, -0.035514768213033676, -0.006388810463249683, 0.001652376027777791, 0.007220657076686621, -0.011583608575165272, -0.016795383766293526, -0.004105475265532732, 0.03490361571311951, -0.00494298106059432, 0.06215650215744972, 0.07311198115348816, -0.02861100435256958, -0.03245900571346283, 0.006818880792707205, -0.010972456075251102, 0.02517044171690941, -0.02804512344300747, 0.017983736470341682, 0.008075139485299587, -0.029063710942864418, -0.03379448503255844, 0.014237596653401852, -0.010429209098219872, 0.008386374451220036, -0.015437266789376736, -0.019930372014641762, -0.017904512584209442, 0.015437266789376736, -0.02784140594303608, -0.03549213334918022, -0.03666916862130165, 0.06695518642663956, -0.01151004433631897, -0.018345901742577553, -0.049707092344760895, 0.04271278902888298, -0.02661909908056259, 0.009003185667097569, 0.0007398910238407552, 0.02815829962491989, 0.036216460168361664, 0.014701619744300842, 0.0487111397087574, -0.05654295161366463, 0.010712150484323502, -0.014169691130518913, 0.025781594216823578, 0.029244793578982353, -0.028022486716508865, -0.01147043239325285, -0.025758959352970123, -0.007916692644357681, 0.02168460749089718, -0.07709579169750214, 0.01418100856244564, 0.0033330463338643312, -0.02682281658053398, 0.012223055586218834, -0.030897168442606926, -0.03816309571266174, 0.037914108484983444, 0.011583608575165272, -0.019421078264713287, 0.02913161739706993, -0.008561798371374607, 0.02071128971874714, 0.014656349085271358, 0.0697619616985321, 0.006518963258713484, 0.004413881339132786, 0.008493891917169094, 0.00020371760183479637, 0.004210163839161396, 0.01579943113029003, -0.04834897816181183, -0.022714512422680855, -0.009608680382370949, -0.006111527793109417, -0.025260983034968376, 0.0243555698543787, -0.015889972448349, -0.01266444381326437, 0.030693450942635536, 0.03789147362112999, 0.030127570033073425, -0.010327350348234177, 0.006468033883720636, -0.007209339644759893, 0.06251867115497589, 0.004150745924562216, 0.0443425290286541, 0.03241373226046562, -0.032640084624290466, -0.04979763552546501, 0.017157549038529396, -0.004736434202641249, 0.022827688604593277, -0.01758761890232563, -0.03784620389342308, 0.005605063401162624, 0.025826863944530487, -0.04703612998127937, 0.03594483807682991, 0.06795113533735275, 0.05246859788894653, 0.030897168442606926, -0.027931945398449898, -0.009127680212259293, -0.012392820790410042, 0.013852796517312527, -0.029833311215043068, -0.04794154316186905, -0.00346036977134645, -0.013003973290324211, -0.020247265696525574, -0.00040354474913328886, 0.04988817498087883, 0.032889075577259064, -0.011391209438443184, -0.0033302167430520058, -0.019556889310479164, -0.06595923006534576, -0.005667310208082199, -0.001829214277677238, 0.014939290471374989, -0.008516527712345123, 0.01661430113017559, -0.0028732670471072197, 0.02815829962491989, -0.05767471715807915, 0.0784539133310318, 0.033251240849494934, 0.0402681790292263, -0.00423562852665782, 0.0015250525902956724, 0.029312698170542717, -0.0048977104015648365, 0.023812323808670044, 0.018979689106345177, -0.01581074856221676, 0.0056814574636518955, 0.004742092918604612, -0.03225528821349144, 0.053147658705711365, -0.03508469834923744, 0.05029560998082161, 0.019466347992420197, -0.002782725729048252, 0.008635362610220909, -0.038117825984954834, -0.026189029216766357, -0.007248951122164726, 0.00024721978115849197, 0.04139994457364082, -0.018594888970255852, -0.02707180567085743, -0.007192363031208515, -0.009535115212202072, -0.048530060797929764, -0.021209266036748886, -0.019319219514727592, -0.025419428944587708, 0.01763289049267769, 0.02897316962480545, -0.01617291383445263, 0.0440935418009758, -0.007560186553746462, -0.02650592289865017, -0.012415455654263496, 0.03881952166557312, 0.022159947082400322, -0.0238349586725235, -0.016059737652540207, 0.037710390985012054, -0.05446050316095352, 0.010078362189233303, -0.04189791902899742, -0.02455928735435009, 0.048530060797929764, -0.033409684896469116, 0.015222231857478619, 0.04323340207338333, 0.01355853769928217, 6.891163138789125e-06, 0.02881472185254097, 0.0686754658818245, 0.019262630492448807, -0.008160021156072617, -0.009614339098334312, -0.026030581444501877, 0.0033104110043495893, -0.025464700534939766, 0.03651072084903717, -0.022273123264312744, 0.0083920331671834, -0.008358079940080643, -0.018662795424461365, 0.004068693146109581, -0.07428901642560959, 0.015120373107492924, 0.035311050713062286, 0.04703612998127937, -0.06134163215756416, -0.04373137652873993, 0.07478699088096619, 0.07505861669778824, 0.04364083707332611, 0.04241853207349777, 0.0050193751230835915, -0.034994155168533325, -0.0312819704413414, 0.023495430126786232, -0.006275633815675974, -0.008873033337295055, -0.014780843630433083, -0.01412442047148943, 0.001617008470930159, -0.022442888468503952, 0.038728978484869, 0.0014698790619149804, 0.03700869530439377, -0.0021418642718344927, 0.040788792073726654, -0.03956648334860802, 0.0394759438931942, 0.018753336742520332, -0.033092793077230453, 0.004201675299555063, 0.03542422503232956, -0.02289559505879879, -0.0392269566655159, 0.04103777930140495, -0.006694386713206768, 0.00716406898573041, 0.01581074856221676, -0.05224224552512169, 0.010870597325265408, 0.010519750416278839, -0.015833385288715363, -0.009223880246281624, 0.037755660712718964, -0.006801904179155827, -0.01286816131323576, -0.0082052918151021, -0.05563753843307495, 0.03245900571346283, -0.01020851545035839, -0.08542557805776596, 0.021254535764455795, -0.019070230424404144, 0.028113028034567833, -0.037823569029569626, -0.021910959854722023, 0.010723467916250229, 0.020213313400745392, 0.0012456482509151101, -0.0007936498150229454, -0.007509257178753614, -0.026121122762560844, -0.019138136878609657, 0.016602983698248863, -0.05835377424955368, 0.01612764410674572, -0.004179039970040321, 0.035899568349123, 0.024989359080791473, -0.005695604719221592, -0.0013892408460378647, 0.03343231976032257, -0.02111872471868992, 0.00901450403034687, -0.019217360764741898, 0.027615051716566086, -0.007192363031208515, 0.011476091109216213, -0.02403867617249489, 0.03979283943772316, -0.04574592038989067, 0.033409684896469116, -0.009478527121245861, -0.0006903763278387487, 0.01363776158541441, -0.03193839266896248, -0.013264278881251812, -0.008618386462330818, 0.041513118892908096, -0.00917860958725214, -0.021695924922823906, 0.020190676674246788, -0.03845735639333725, -0.0006489961524493992, 0.026687005534768105, 0.04429725930094719, 0.04574592038989067, 0.03501679003238678, 0.028520463034510612, 0.018244042992591858, -0.01158926822245121, 0.001295870286412537, 0.014158372767269611, 0.027162346988916397, -0.03522050753235817, 0.020088817924261093, -0.009240856394171715, 0.01697646640241146, 0.044274624437093735, 0.00671702204272151, -0.023563334718346596, -0.026392746716737747, -0.026687005534768105, 0.005109916441142559, -0.003092546248808503, 0.025781594216823578, -0.010100997984409332, -0.016071055084466934, 0.049299657344818115, -0.0033075816463679075, 0.0020244435872882605, -0.014758207835257053, 0.031712040305137634, 0.0005998351261951029, -0.003245334606617689, -0.0071810451336205006, 0.013965972699224949, -0.010995091870427132, -0.0707579106092453, -0.003035958157852292, -0.01754234917461872, -0.006705704145133495, 0.012155150063335896, -0.00946155097335577, 0.002385193482041359, 0.01981719583272934, -0.04065297916531563, -0.02804512344300747, -0.011040362529456615, -0.042893871665000916, -0.04952601343393326, -0.03447354584932327, -0.023495430126786232, -0.0014826114056631923, 0.013264278881251812, 0.006190751679241657, -0.007978939451277256, -0.02083578333258629, -0.007118798326700926, 0.014622396789491177, -0.03039919212460518, -0.014497902244329453, -0.022510794922709465, 0.0120532913133502, 0.023291712626814842, -0.011611903086304665, -0.016636937856674194, -0.03784620389342308, -0.04631179943680763, -0.0017952612834051251, -0.005647504702210426, -0.007571503985673189, 0.023110629990696907, 0.049616552889347076, 0.0026893552858382463, -0.024944087490439415, -0.032277923077344894, 0.04785099998116493, 0.049299657344818115, 0.04880168288946152, 0.029674863442778587, 0.008940938860177994, 0.004937322344630957, 0.0482131652534008, -0.005958739668130875, 0.005005228333175182, -0.025306252762675285, -0.012970020063221455, -0.03322860226035118, -0.01831194944679737, 0.02317853644490242, 0.00015933121903799474, 0.04839424788951874, 0.006117186974734068, -0.025577876716852188, 0.00290863448753953, -0.02286164090037346, -0.04445570707321167, -0.012438091449439526, 0.027252888306975365, 0.006609504111111164, 0.024423476308584213, 0.018368536606431007, 0.011481749825179577, -0.004379928577691317, 0.005438128020614386, -0.017734749242663383, -0.027501875534653664, 0.022669240832328796, -0.007679021917283535, 0.026551194489002228, -0.0010765909682959318, 0.047669917345047, -0.019522937014698982, -0.009297444485127926, -0.022918229922652245, 0.0024870524648576975, 0.029561687260866165, -0.010763079859316349, 0.0243555698543787, -0.02107345312833786, 0.01596919633448124, -0.011051679961383343, 0.00015614811854902655, 0.05477739870548248, -0.025713687762618065, 0.01432813797146082, -0.020926324650645256, 0.04567801207304001, -0.010378279723227024, -0.01713491417467594, 0.018538301810622215, -0.007679021917283535, 0.019839830696582794, -0.018210090696811676, -0.022725829854607582, -0.04993344843387604, -0.03752930834889412, -0.01851566694676876, 0.007928010076284409, 0.001253429101780057, 0.019353171810507774, 0.013886749744415283, -0.015912607312202454, 0.00942193903028965, -0.04610808193683624, -0.03252691030502319, -0.03610328584909439, 0.03144041448831558, -0.02630220539867878, -0.020779194310307503, 0.03295698016881943, 0.037665121257305145, -0.011538338847458363, -0.015029831789433956, -0.010570679791271687, -0.03157622739672661, -0.005158016458153725, -0.005174993071705103, 0.011295009404420853, -0.01664825528860092, -0.021616701036691666, 0.015154325403273106, 0.03374921530485153, 0.004654381424188614, 0.009308762848377228, -0.02897316962480545, -0.00447895796969533, 0.03196102753281593, -0.06550652533769608, 0.017938466742634773, 0.03198366239666939, -0.010406574234366417, -0.010061386041343212, -0.017768701538443565, 0.018855195492506027, -0.019670065492391586, 0.004082840401679277, 0.0011204468319192529, -0.0004870123811997473, 0.02132244221866131, 0.00012776559742633253, 0.024830911308526993, 0.007548868656158447, 0.006705704145133495, 0.014373408630490303, -0.0014797820476815104, 0.028316745534539223, -0.014690302312374115, 0.007005621679127216, 0.020609430968761444, 0.02487618289887905, 0.014939290471374989, -0.009161633439362049, 0.010100997984409332, 0.01997564174234867, 0.049661822617053986, -0.008980550803244114, -0.021752512082457542, -0.03635227307677269, -0.011419503018260002, 0.01645585522055626, -0.0456327423453331, 0.014022561721503735, 0.002270602388307452, 0.016116324812173843, -0.01533540803939104, -0.011351597495377064, -0.005788974929600954, 0.0027671640273183584, -0.0017443319084122777, -0.037189777940511703, -0.02978803962469101, 0.031032981351017952, -0.009008845314383507, 0.004637404810637236, 0.016512442380189896, 0.004999569617211819, -0.030489733442664146, 0.0074243745766580105, 0.009093726985156536, 0.04169420152902603, -0.013219008222222328, -0.003123669885098934, -0.0120532913133502, -0.01432813797146082, -0.005568280816078186, -0.004382757935672998, 0.00038975136703811586, 0.007718633394688368, -0.03132724016904831, -0.03433773294091225, 0.002216843655332923, -0.011091291904449463, 0.020168041810393333, 0.01645585522055626, -0.013807525858283043, 0.07619038224220276, 0.025396794080734253, -0.030014391988515854, -0.007243292406201363, 0.016919879242777824, 0.002327190712094307, -0.015833385288715363, -0.009919915348291397, 0.04081142693758011, 0.030897168442606926, 0.044523611664772034, -0.04400300234556198, -0.009025821462273598, 0.010825326666235924, -0.04210163652896881, -0.0120532913133502, 0.03214211016893387, -0.010050068609416485, -0.003867805004119873, -0.003915905021131039, 0.01098377350717783, 0.03112352266907692, 0.0120532913133502, -0.0011169100180268288, 0.003344363998621702, 0.004614769481122494, 0.027547147125005722, -0.02082446590065956, -0.004529887344688177, -0.010270762257277966, -0.005090110469609499, 0.03603538125753403, 0.01633136160671711, 0.012562585063278675, 0.0017415025504305959, 0.011804303154349327, 0.029290063306689262, -0.010683855973184109, 0.022114677354693413, 0.02217126451432705, -0.030444463714957237, 0.043912459164857864, 0.005191969219595194, 0.004784534219652414, -0.055049020797014236, 0.04278069734573364, 0.02261265367269516, 0.010734785348176956, 0.004187528509646654, -0.0033669990953058004, 0.03424719348549843, -0.011657173745334148, -0.012675761245191097, -0.002296067075803876, -0.014939290471374989, 0.0044817873276770115, -2.5486804588581435e-05, 0.006054939702153206, -0.00925783347338438, -0.01118749100714922, 0.02784140594303608, -0.014203643426299095, 0.008906986564397812, 0.015708889812231064, 0.011079973541200161, -0.013660396449267864, 0.01479216106235981, 0.00970488041639328, -0.0027742376551032066, -0.019273947924375534, -0.03209684044122696, -0.009970844723284245, 0.0035169580951333046, -0.0059021515771746635, 0.023031406104564667, 0.001351043814793229, -0.011747715063393116, 0.00031583302188664675, 0.018821243196725845, -0.010067044757306576, -0.01177034992724657, -0.0029567345045506954, -0.04472732916474342, 0.03927222639322281, 0.020405713468790054, -0.004057375714182854, 0.03139514476060867, 0.0276829581707716, -0.036895520985126495, 0.04040399193763733, -0.0024997848086059093, 0.011379891075193882, -0.022182583808898926, -0.02788667567074299, -0.031779944896698, 0.03662389889359474, 0.0040771812200546265, -0.019670065492391586, -0.0443425290286541, -0.021163994446396828, -0.04533848166465759, 0.019273947924375534, -0.0027897993568331003, -0.02192227728664875, 0.017768701538443565, -0.027705593034625053, 0.04862060025334358, 0.03399820253252983, -0.013875432312488556, -0.03368131071329117, 0.02014540694653988, -0.01446394994854927, -0.03374921530485153, 0.022623971104621887, 0.016953831538558006, 0.06958087533712387, 0.030535005033016205, 0.029244793578982353, -0.006875468883663416, -0.03404347598552704, 0.013535902835428715, -0.00826753955334425, -0.0299917571246624, 0.003757457947358489, -0.001772626070305705, 0.0016099349595606327, 0.023291712626814842, 0.01576547883450985, 0.009246515110135078, 0.02922215685248375, 0.021944912150502205, 0.007622433360666037, 0.0037433109246194363, -0.002315873047336936, 0.03216474503278732, -0.04044926166534424, 0.027931945398449898, -0.006767951417714357, 0.02159406617283821, -0.0007986013079062104, -0.020982911810278893, -0.034383002668619156, 0.017451807856559753, 0.0004781704628840089, 0.02139034867286682, 0.01664825528860092, -0.022499477490782738, -0.0241065826267004, 0.04461415484547615, -0.015143007971346378, 0.012472043745219707, 0.009801080450415611, 0.05839904397726059, -0.013569855131208897, 0.01085927989333868, 0.0229408647865057, -0.01766684278845787, 0.02342752367258072, 0.028135664761066437, -0.03562794625759125, 0.0522875152528286, 0.020281217992305756, -0.011091291904449463, -0.008544821292161942, 0.018176136538386345, -0.00021468156774062663, 0.008386374451220036, -0.00270491698756814, 0.05482266843318939, 0.05464158579707146, 0.006490669213235378, -0.0017768702236935496, 0.02759241685271263, -0.011815620586276054, -0.013943337835371494, 0.027547147125005722, 0.045044224709272385, 0.025781594216823578, -0.017802653834223747, 0.0012753570917993784, -0.0019480495247989893, 0.033613402396440506, -0.03954384848475456, -0.029652228578925133, 0.02071128971874714, -0.030286015942692757, 0.01940976083278656, -0.01527881994843483, 0.010604633018374443, -0.004835463594645262, -0.03406611084938049, -0.005885174963623285, 0.03544686362147331, 0.021775146946310997, 0.0075658452697098255, 0.006315245758742094, -0.00019133892783429474, 0.04762464761734009, -0.01961347833275795, 0.024265030398964882, 0.016829337924718857, -0.00667741009965539, 0.012607855722308159, 0.0076450686901807785, -0.012879479676485062, -0.04676450788974762, 0.0005694190040230751, -0.020530207082629204, 0.014565808698534966, 0.019398441538214684, -0.026121122762560844, -0.0312819704413414, -0.0011749129043892026, -0.032685358077287674, -0.015788113698363304, 1.4368103620654438e-05, -0.030127570033073425, 0.016874607652425766, 0.04653815180063248, 0.0014727084198966622, -0.015629667788743973, 0.002208355348557234, 0.024898817762732506, 0.003446222748607397, 0.009755809791386127, 0.024808276444673538, 0.0071074808947741985, -0.018459077924489975, -0.004447834100574255, 0.044998954981565475, -0.011040362529456615, 0.017315996810793877, -0.006988645531237125, -0.0108988918364048, 0.00895791593939066, 0.016399266198277473, 0.02670964039862156, -0.0039979577995836735, -0.006954692304134369, -0.009608680382370949, 0.01628609001636505, 0.01766684278845787, 0.022239170968532562, 0.004671357572078705, -0.0008169924258254468, -0.005494716111570597, 0.0010546629782766104, 0.03225528821349144, -0.031508322805166245, 0.011872208677232265, 0.0138414790853858, -0.013626444153487682, -0.0026568169705569744, -0.035401590168476105, 0.0039045873563736677, 0.0037631166633218527, -0.010774397291243076, -0.000754038046579808, 0.01587865501642227, -0.016150278970599174, 0.014712938107550144, 0.006196410395205021, -0.024581924080848694, 0.000987464445643127, -0.005941763520240784, -0.004685504827648401, 0.008143045008182526, 0.018945736810564995, 0.025238346308469772, 0.04343711957335472, -0.007560186553746462, 0.007458327803760767, 0.01041223295032978, -0.01505246665328741, -0.04416145011782646, 0.012913431972265244, 0.001368727651424706, -0.027569781988859177, 0.020394396036863327, -0.01102338545024395, -0.022103359922766685, -0.006671751383692026, 0.013309549540281296, -0.03642018139362335, 0.00942193903028965, -0.006801904179155827, 0.0011204468319192529, 0.017531031742691994, 0.004094157833606005, 0.003437734441831708, -0.030059663578867912, -0.028837358579039574, 0.04223744943737984, 0.022782418876886368, 0.004133769776672125, -0.012075926177203655, -0.015097737312316895, -9.681891242507845e-05, -0.016682207584381104, 0.010593315586447716, 0.03983810916543007, -0.02248816005885601, -0.02313326485455036, 0.005636186804622412, 0.012155150063335896, 0.0051184045150876045, 0.04124149680137634, -0.007243292406201363, 0.02630220539867878, 0.001292333472520113, -0.0020994229707866907, -0.0003552679263520986, 0.020326489582657814, 0.011408185586333275, 0.016105007380247116, -0.004286557901650667, -0.017859242856502533, -0.024332934990525246, -0.04843951761722565, -0.003146305214613676, 0.004046057816594839, 0.0003009786014445126, -0.0071074808947741985, 0.0012781864497810602, 0.012438091449439526, -0.0012994071003049612, -0.060888927429914474, -0.013762255199253559, 0.008052503690123558, -0.015041149221360683, 0.005755022168159485, -0.00047569474554620683, 0.04221481457352638, -0.009042797610163689, 0.0010723468149080873, 0.0013277011457830667, 0.006615163292735815, 0.005599404685199261, 0.012528632767498493, 0.016557713970541954, -0.027139710262417793, 0.016512442380189896, -0.026370111852884293, 0.06034567952156067, 0.013117149472236633, -0.032119475305080414, -0.012992655858397484, 0.027501875534653664, -0.03816309571266174, -0.0065019866451621056, 0.02990121580660343, -0.0217977836728096, 0.022193901240825653, -0.022759782150387764, 0.013592490926384926, -0.013162420131266117, 0.014486584812402725, 0.007509257178753614, -0.037416134029626846, 0.020326489582657814, 0.00832412764430046, 0.021333759650588036, -0.02990121580660343, 0.0012619172921404243, -0.03277589753270149, 0.007175386417657137, -0.044682059437036514, -0.027298158034682274, -0.01156663242727518, -0.010921526700258255, -0.003915905021131039, -0.039091143757104874, 0.0022140140645205975, 0.018255360424518585, 0.01706700772047043, -0.011176173575222492, -0.019024960696697235, 0.03205156698822975, -0.025238346308469772, -0.03526578098535538, 0.007758245337754488, 0.043505024164915085, 0.025713687762618065, -0.042282719165086746, -0.002827996388077736, -0.006909422110766172, -0.02082446590065956, -0.014294184744358063, 0.003282116958871484, -0.009404962882399559, -0.03512996807694435, 0.00012997607700526714, -0.013445361517369747, 0.044998954981565475, 0.01799505390226841, 0.014961926266551018, 0.0014444143744185567, 0.009857668541371822, -0.012788938358426094, 0.014645031653344631, -0.011136561632156372, -0.0046968222595751286, 0.029855946078896523, -0.014486584812402725, 0.003567887470126152, -0.03347759321331978, 0.007554527837783098, 0.011295009404420853, -0.05052196606993675, 0.00939930323511362, -0.0018164819339290261, 0.01774606667459011, -0.018730701878666878, -0.0021248876582831144, 0.015946561470627785, 0.011940115131437778, -0.013377455994486809, 0.023676512762904167, 0.008624045178294182, -0.03732559084892273, 0.02354069985449314, -0.03338705003261566, -0.004951469600200653, -0.03076135739684105, -0.010004797950387001, 0.03225528821349144, 0.026732275262475014, -0.01787056028842926, -0.0333191454410553, 0.01787056028842926, 0.011238421313464642, 0.031010346487164497, 0.013252961449325085, -0.001991905504837632, -0.008029868826270103, -0.018413808196783066, 0.020043548196554184, 0.043663471937179565, 0.018062960356473923, -0.013083197176456451, -0.033454958349466324, -0.005998351611196995, -0.00020583966397680342, -0.010864938609302044, -0.01418100856244564, -0.02102818340063095, -0.014848749153316021, 0.008454279974102974, -0.036329638212919235, 0.00895791593939066, 0.012573902495205402, -0.023008771240711212, -0.021809101104736328, -0.06269975006580353, -0.0003855072718579322, -0.008646680042147636, -0.00038409256376326084, -0.02532888762652874, -0.00040142270154319704, 0.021345077082514763, -0.0013517511542886496, -0.020371759310364723, 0.00873156264424324, 0.03354549780488014, -0.015244866721332073, 0.0061398218385875225, 0.03164413198828697, -0.004504422657191753, 0.004130940418690443, -0.016025783494114876, 0.02594004012644291, 0.04429725930094719, 0.011838256381452084, 0.01576547883450985, 0.0012024997267872095, 0.01033300906419754, 0.003559399163350463, -0.031259335577487946, 0.00026490361778996885, 0.008697609417140484, -0.009823715314269066, 0.04789626970887184, 0.017440490424633026, -0.012754985131323338, 0.01713491417467594, -0.028475193306803703, -0.020235948264598846, -0.027411334216594696, 0.021537477150559425, -0.012121196836233139, -0.03071608766913414, 0.017214136198163033, 0.019805878400802612, -0.01879860647022724, -0.01741785556077957, 0.020801831036806107, 0.02326907590031624, -0.001114080660045147, -0.017531031742691994, -0.006473692599684, -0.026551194489002228, 0.02897316962480545, -0.009818056598305702, 0.037755660712718964, 0.027003899216651917, -0.023970771580934525, -0.003129328601062298, -0.0023866081610322, 0.016342679038643837, 0.018855195492506027, -0.004705310799181461, -0.047669917345047, 0.0027544316835701466, -0.01851566694676876, -0.038231004029512405, 0.026981264352798462, 0.009127680212259293, -0.013683032244443893, -0.012132515199482441, 0.01762157306075096, 0.018244042992591858, -0.05409834161400795, -0.01037262100726366, 0.02460455894470215, 0.01900232397019863, -0.029108980670571327, -0.026347476989030838, -0.00832412764430046, 0.023812323808670044, 0.011181832291185856, -0.023857593536376953, 0.022646605968475342, 0.020235948264598846, 0.02990121580660343, 0.01163453795015812, 0.03270799294114113, -0.03413401544094086, -0.003876293310895562, -0.03954384848475456, -0.009020162746310234, -0.008912645280361176, 0.010717809200286865, -0.016195548698306084, -0.008335445076227188, -0.004003616515547037, 0.010389597155153751, -0.037099238485097885, -0.012223055586218834, -0.033047523349523544, 0.022239170968532562, -0.01925131306052208, 0.009303104132413864, 0.019624795764684677, 0.04146784916520119, 0.013569855131208897, 0.017655525356531143, 0.00623036315664649, -0.010134950280189514, -0.022918229922652245, 0.03198366239666939, 0.025147804990410805, 0.026958629488945007, -0.03144041448831558, -0.04146784916520119, -0.001154399709776044, 0.03859316557645798, -0.023076677694916725, -0.0007154873455874622, 0.07483226805925369, 0.010893233120441437, 0.006490669213235378, 0.012754985131323338, -0.03270799294114113, -0.003126499243080616, -0.022420253604650497, 0.0050816223956644535, 0.009144656360149384, -0.04533848166465759, -0.007797856815159321, -0.023472795262932777, 0.01246072631329298, -0.011476091109216213, 0.0018419466214254498, 0.015459902584552765, -0.027977216988801956, 0.011125244200229645, -0.034609355032444, 0.01621818356215954, -0.0001060144932125695, -0.01584470272064209, -0.018832560628652573, 0.026483288034796715, -0.043301306664943695, 0.004201675299555063, 0.014282867312431335, -0.030218111351132393, -0.026438016444444656, 0.0013008217792958021, -0.05287603288888931, -0.022261805832386017, 0.018255360424518585, -0.010836644098162651, -0.05097467079758644, -0.0006673873285762966, -0.0017966760788112879, 0.02953905239701271, -0.009371009655296803, 0.013117149472236633, 0.042079001665115356, -0.018730701878666878, 0.002040005289018154, -0.02548733539879322, 0.021933594718575478, -0.01981719583272934, -0.0015208084369078279, 0.018934419378638268, -0.009818056598305702, -0.03205156698822975, 0.034994155168533325, -0.018538301810622215, 0.012607855722308159, -0.004815657623112202, 0.0005089403130114079, 0.004917516373097897, -0.009993479587137699, -0.025260983034968376, -0.023472795262932777, 0.005588086787611246, 0.0011324718361720443, -0.013988608494400978, 0.01650112494826317, 0.016444537788629532, -0.011849573813378811, 0.02030385471880436, 0.008199633099138737, 0.0011770350392907858, -0.0120532913133502, 0.03205156698822975, -0.009297444485127926, 0.008657998405396938, -0.0007738439599052072, -0.017961101606488228, -0.017689477652311325, -0.011215785518288612, 0.011679808609187603, -0.012166467495262623, 0.008561798371374607, -0.010180220939218998, -0.0117929857224226, 0.05423415079712868, 0.019590841606259346, 0.005568280816078186, -0.005568280816078186, -0.03173467516899109, 0.018753336742520332, 0.026392746716737747, -0.00733383372426033, -0.012732350267469883, -0.025238346308469772, -0.0394759438931942, 0.0063605159521102905, 0.021990183740854263, 0.036850251257419586, -0.01664825528860092, -0.014192325994372368, -0.024785641580820084, -0.0174291729927063, 0.04031344875693321, -0.006892445497214794, 0.029765404760837555, -0.010966797359287739, -0.0016481319908052683, 0.0027671640273183584, -0.002537981839850545, -0.008114751428365707, 0.0005386491538956761, -0.01685197278857231, -0.042486436665058136, 0.02041703090071678, -0.020077500492334366, 0.004150745924562216, 0.006015327759087086, -0.016478490084409714, -0.013490632176399231, -0.020733924582600594, 0.025260983034968376, 0.039657026529312134, 0.02799985185265541, 0.01725940778851509, 0.013422726653516293, 0.008629703894257545, -0.033251240849494934, 0.00626997509971261, -0.0013531658332794905, -0.022623971104621887, -0.0007971865707077086, 0.036125920712947845, 0.03578639030456543, -0.004784534219652414, 0.03368131071329117, 0.01458844356238842, 0.021877005696296692, -0.021809101104736328, 0.034224554896354675, 0.020450983196496964, -0.011611903086304665, 0.03553740307688713, -0.006949033588171005, -0.0021404495928436518, -0.0037942402996122837, 0.014396043494343758, 0.03816309571266174, 0.056271329522132874, -0.019307902082800865, 0.0066038453951478004, 0.03270799294114113, -0.001982002519071102, 0.02171855978667736, -0.011079973541200161, 0.009659609757363796, -0.002608716953545809, -0.005033522378653288, 0.01122710295021534, -0.019602160900831223, -0.06949033588171005, -0.0034122697543352842, 0.012641808949410915, 0.017972419038414955, -0.027298158034682274, -0.02548733539879322, 0.02054152451455593, -0.0009754394995979965], [0.012389209121465683, 0.03905367851257324, -0.031983811408281326, -0.02410079538822174, -0.018724985420703888, 0.018702397122979164, 0.018894391134381294, 0.0014039503876119852, 0.03932472690939903, 0.06057950481772423, 0.010429749265313148, 0.010960553772747517, 0.027059748768806458, 0.006414832081645727, -0.07991435378789902, 0.005734385456889868, -0.023468347266316414, 0.025636740028858185, 0.02065621130168438, 0.014986764639616013, -0.006674587726593018, 0.023152122274041176, -0.012197216041386127, 0.0395280160009861, -0.05416467413306236, -0.00040727973100729287, 0.0119148725643754, -0.032345209270715714, 0.05375809967517853, -0.07182805240154266, 0.06446454674005508, -0.028979681432247162, 0.06179922819137573, 0.0005244520725682378, 0.03216451033949852, 0.016534004360437393, -0.02816653437912464, 0.02403303235769272, -0.017381032928824425, -0.03568815067410469, -0.05335152521729469, 0.05086690932512283, -0.0003310471074655652, -0.0320063978433609, -0.04366151615977287, 0.05615236610174179, 0.014546309597790241, -0.024236319586634636, -0.029431430622935295, 0.024326669052243233, -0.03220968320965767, -0.017877956852316856, -0.012423090636730194, 0.052222155034542084, 0.03426514193415642, 0.03178052231669426, 0.017268095165491104, 0.004463842138648033, 0.001706763170659542, 0.02561415359377861, 0.0035744619090110064, 0.0074990289285779, 0.016635647043585777, 0.0856967344880104, -0.02394268289208412, -0.012897426262497902, 0.0194139014929533, 0.016375891864299774, 0.00809759646654129, 0.01755043864250183, 0.006155076436698437, 0.002827664837241173, -0.05235767737030983, -0.03604954853653908, -0.03693046048283577, 0.02642730064690113, 0.043187178671360016, 0.0037438676226884127, 0.014625364914536476, -0.009927178733050823, 0.006731056142598391, -0.005361692979931831, 0.016454948112368584, -0.018826628103852272, 0.008554991334676743, -0.00042633787961676717, -0.05619754269719124, 0.00228697806596756, -0.04147053509950638, -0.007871721871197224, -0.0014406549744307995, 0.04406809061765671, -0.025636740028858185, 0.08000469952821732, 0.035281576216220856, 0.024055620655417442, 0.019018622115254402, -0.012682845816016197, -0.053848449140787125, 0.01643235981464386, 0.019628481939435005, 0.024394432082772255, -0.010881497524678707, -0.004845004994422197, 0.04250955581665039, -0.07151182740926743, -0.06893685460090637, 0.042690254747867584, 0.003997976426035166, -0.028505345806479454, -0.06157335266470909, -0.02545604109764099, -0.03421996533870697, 0.08483841270208359, 0.03799206763505936, -0.010254696011543274, 0.014873826876282692, -0.02886674366891384, -0.006431772839277983, -0.005457689519971609, 0.01895085908472538, -0.01654529757797718, 0.0013693633954972029, -0.057914186269044876, 0.011259837076067924, -0.029228143393993378, -0.07146664708852768, 0.007877368479967117, -0.03216451033949852, 0.012163334526121616, 0.0320967473089695, -0.03498794138431549, 0.03844381868839264, -0.03573332354426384, -0.015686973929405212, 0.009266495704650879, 0.027895484119653702, -0.024484781548380852, -0.026924224570393562, -0.02038516104221344, -0.021051490679383278, 0.01032810565084219, 0.0136202247813344, -0.02054327353835106, -0.0374273844063282, 0.021074078977108, 0.006815758999437094, 0.040521860122680664, 0.006731056142598391, -0.023581283167004585, 0.006894815247505903, 0.028798982501029968, 0.011632530018687248, 0.00265967077575624, 0.008227474056184292, 0.0559716671705246, 0.011542180553078651, -0.0008922037668526173, 0.01364281214773655, 0.047569140791893005, -0.040634799748659134, -0.014151029288768768, 0.011321952566504478, -0.030018704012036324, 0.01087020430713892, 0.008944625034928322, -0.027579260990023613, 0.003763631684705615, -0.039821650832891464, 0.010395867750048637, -0.046755995601415634, 0.01686152070760727, 0.018973447382450104, -0.001207722001709044, -0.002419679192826152, -0.016014492139220238, -0.010570920072495937, 0.04002493619918823, 0.000981847639195621, -0.02902485616505146, 0.0055593326687812805, -0.010745973326265812, -0.03810500726103783, -0.055745795369148254, -0.036139898002147675, 0.02766961045563221, 0.024394432082772255, -0.0019001681357622147, -0.001754761440679431, -0.005217697937041521, 0.03433290496468544, -0.0001806112559279427, -0.05280942842364311, 0.00918743945658207, 0.006386597640812397, 0.002864369424059987, -0.0003698692889884114, -0.03374563157558441, 0.020701386034488678, -0.024733243510127068, -0.04239661991596222, -0.026517650112509727, -0.017855368554592133, -0.00572591507807374, 0.009701304137706757, -0.007137630134820938, 0.0021613354329019785, -0.009802947752177715, 0.0463494211435318, 0.02712751179933548, -0.00531934155151248, -0.04138018563389778, -0.02751149795949459, 0.011457477696239948, -0.00552262831479311, 0.042645081877708435, 0.03688528388738632, 0.017335858196020126, -0.011152546852827072, 0.020260930061340332, 0.005951789673417807, -0.06179922819137573, 0.04169640690088272, -0.010288577526807785, -0.016229072585701942, 0.008487229235470295, 0.03767584636807442, 0.021028904244303703, -0.006651999894529581, -0.03932472690939903, -0.04359375312924385, 0.040589623153209686, 0.031170662492513657, -0.02561415359377861, -0.00935684610158205, -0.022146981209516525, -0.02398785762488842, -0.00829523615539074, -0.007832193747162819, 0.015122288838028908, -0.0211644284427166, 0.012795782648026943, 0.0069851647131145, -0.014263966120779514, -0.02766961045563221, -0.026133663952350616, -0.027150098234415054, 0.01245697122067213, 0.05416467413306236, 0.02626918815076351, 0.02033998630940914, 0.016364598646759987, 0.02333282306790352, -0.061754051595926285, 0.006680234335362911, 0.025952965021133423, 0.05366775020956993, -0.006205898243933916, 0.05086690932512283, -0.017697256058454514, -0.008594519458711147, 0.012953895144164562, -0.03860193118453026, -0.0015938259894028306, -0.05538439378142357, -0.023197297006845474, 0.05014410987496376, -0.02065621130168438, -0.048969563096761703, 0.032458145171403885, -0.06021810695528984, -0.0037833957467228174, 0.03887297958135605, 0.01404938567429781, -0.02367163449525833, -0.01073467917740345, -0.019899532198905945, 0.01044668909162283, 0.0028883684426546097, 0.045242637395858765, -0.06469041854143143, -0.02209051325917244, 0.030764088034629822, -0.0017985246377065778, 0.015065819956362247, 0.015156170353293419, -0.028008421882987022, -0.04601060971617699, -0.027263035997748375, 0.07973365485668182, 0.03871486708521843, 0.010102231055498123, -0.007442560512572527, 0.053848449140787125, -0.014263966120779514, 0.01445595920085907, 0.010949259623885155, -0.0016827640356495976, -0.0044836062006652355, 0.026133663952350616, -0.017042221501469612, -0.003930213861167431, -0.04065738618373871, 0.031757935881614685, -0.04788536578416824, 0.0423288568854332, -0.009289083071053028, 0.035665564239025116, -0.024439606815576553, -0.020995022729039192, -0.012897426262497902, 0.03684011101722717, -0.06374174356460571, -0.018115123733878136, -0.006843993440270424, 0.013179769739508629, -0.015743443742394447, 0.0313965380191803, -0.011186428368091583, -0.006301894783973694, 0.005872733425348997, -0.014365609735250473, 0.04445207491517067, -0.002910955809056759, 0.009018033742904663, 0.03345199301838875, 0.036410946398973465, 0.038534168154001236, -0.01247955858707428, -0.001288189785555005, -0.010265990160405636, -0.031644999980926514, 0.023807158693671227, -0.04393256455659866, -0.007707962766289711, 0.005646859295666218, -0.03444584086537361, 0.031125487759709358, -0.011152546852827072, -0.004384786356240511, 0.04991823434829712, -0.011288071982562542, 0.015009352006018162, 0.014806064777076244, -0.013552461750805378, 0.025026880204677582, -0.005005940794944763, 0.02685646153986454, 0.029160380363464355, 0.032028984278440475, 0.006087314337491989, 0.033068008720874786, -0.012490852735936642, 0.029499191790819168, -0.02907003089785576, -0.019481664523482323, 0.008481582626700401, 0.00670282170176506, -0.005268519744277, 0.003927390556782484, -0.007284448482096195, -0.022338975220918655, 0.009153558872640133, 0.05881768465042114, -0.00555086275562644, -0.011790641583502293, -0.03756290674209595, -0.03740479424595833, -0.006301894783973694, -0.018883097916841507, 0.012852251529693604, -0.015912849456071854, 0.0025552038569003344, -0.015788618475198746, -0.015201345086097717, 0.005488747265189886, 0.017957013100385666, 0.012795782648026943, 0.023920096457004547, 0.01998988166451454, 0.028776394203305244, 0.010277283377945423, 0.033113181591033936, -0.011214662343263626, 0.01577732525765896, 0.02480100467801094, -0.04955683648586273, -0.01678246632218361, 0.0360269621014595, 0.033497169613838196, -0.04381962865591049, -0.005158405750989914, 0.02545604109764099, -0.008125830441713333, 0.011378421448171139, 0.004949471913278103, 0.037224095314741135, 0.06889168173074722, -0.003187651978805661, -0.07399643957614899, 0.016285542398691177, -0.03437807783484459, 0.01340564340353012, -0.01354116853326559, -0.02452995628118515, -0.047298092395067215, -0.02886674366891384, -0.040521860122680664, 0.005694857332855463, 0.007165864109992981, 0.039437662810087204, -0.006448713131248951, 0.03914402797818184, -0.005130171775817871, 0.029205555096268654, -0.0036930458154529333, 0.047072216868400574, 0.04255473241209984, 0.027037162333726883, -0.022835899144411087, 0.03162240982055664, 0.037382207810878754, -0.013925154693424702, 0.01968495175242424, -0.03293248265981674, -0.0006066844216547906, 0.006025198847055435, -0.018149005249142647, 0.018182886764407158, -0.06563909351825714, -0.019481664523482323, -0.027872897684574127, 0.05380327254533768, 0.0381275936961174, -0.040250811725854874, -0.02019316889345646, -0.02201145701110363, -0.037766195833683014, -0.018657222390174866, -0.014715715311467648, -0.07530651241540909, 0.005336281843483448, 0.019696244969964027, 2.1848492906428874e-05, -0.03925696387887001, -0.02076914720237255, -0.026133663952350616, 0.012310152873396873, 0.007741843815892935, 0.01692928373813629, -0.008577578701078892, -0.02929590456187725, -0.014015504159033298, 0.039776477962732315, -0.038150180131196976, -0.027805134654045105, 0.006081667263060808, -0.027217861264944077, 0.06035362929105759, -0.0010220814729109406, -0.014038091525435448, 0.04662046954035759, 0.02545604109764099, 0.08334764093160629, 0.054977819323539734, 0.0724153220653534, -0.00014611247752327472, 0.01494158897548914, 0.014162322506308556, -0.009114030748605728, -0.04492641240358353, -0.04208039492368698, 0.023581283167004585, 0.015201345086097717, -0.009577073156833649, 0.003684575669467449, -0.00958836730569601, -0.02859569527208805, -0.07666175812482834, 0.006731056142598391, 0.005333458539098501, 0.0011491358745843172, -0.008713103830814362, 0.013360468670725822, 0.03290989622473717, -0.024349257349967957, 0.02279072441160679, 0.019470371305942535, -0.048608165234327316, -0.030741501599550247, 0.001079255947843194, 0.017098689451813698, -0.0006409185007214546, -0.009097089990973473, -0.010537039488554, -0.037065982818603516, 0.03498794138431549, 0.010599154978990555, 0.04049927368760109, -0.026133663952350616, 0.00014117147657088935, 0.014388197101652622, 0.028573106974363327, -0.005127348005771637, 0.05240285396575928, 0.023073066025972366, -0.034852415323257446, -0.044700536876916885, 0.016150018200278282, -0.021322540938854218, -0.0018818158423528075, 0.012671551667153835, 0.03444584086537361, 0.005011587403714657, -0.0005360986688174307, -0.007143276743590832, 0.0299509409815073, 0.013631517998874187, -0.03015422821044922, -0.009238261729478836, 0.022000163793563843, 0.012581202201545238, -0.037178922444581985, -0.016917990520596504, -0.019278377294540405, 0.04320976510643959, -0.015472394414246082, -0.046755995601415634, -0.011903579346835613, -0.008204886689782143, 0.00583320576697588, -0.029476605355739594, 0.006872227415442467, 0.012660258449614048, -0.007487735245376825, 0.009678716771304607, -0.006764937192201614, 0.01852169819176197, -0.030176814645528793, -0.0013185415882617235, 0.036523886024951935, -0.03351975604891777, 0.010198228061199188, -0.037020809948444366, 0.017076103016734123, 0.003907626494765282, 0.006708468776196241, -0.001205604407005012, -0.005022881086915731, -0.014839946292340755, 0.0023109770845621824, 0.009887650609016418, -0.01584508642554283, 0.0258852019906044, -0.02266649343073368, 0.011903579346835613, 0.027195272967219353, -0.026517650112509727, -0.0009423196315765381, 0.0025777912233024836, 0.013597636483609676, -0.005420984700322151, -0.026449888944625854, -0.025094641372561455, -0.048427462577819824, 0.020125405862927437, -0.0016728820046409965, -0.021683938801288605, 0.04639459401369095, -0.020791735500097275, -0.04619130864739418, 0.020825617015361786, -0.0016192368930205703, -0.006561650428920984, 0.038037244230508804, 0.016522709280252457, -0.015788618475198746, -0.02983800321817398, -0.0051753465086221695, -0.0015034762909635901, 0.027421148493885994, 0.009571426548063755, 0.020102819427847862, -0.018115123733878136, -0.017618199810385704, 0.011790641583502293, 0.003165064612403512, -0.022926248610019684, -0.03069632686674595, 0.011265483684837818, 0.015912849456071854, 0.0008611460216343403, -0.009334257803857327, -0.002154276706278324, 0.0006232720916159451, 0.030854439362883568, -0.05213180556893349, 0.039392489939928055, -0.019289670512080193, 0.03440066799521446, -0.023897508159279823, 0.029273318126797676, 0.029318492859601974, -0.002398503478616476, -0.005341928917914629, -0.0009994941065087914, 0.026675762608647346, -0.02088208496570587, 0.02355869673192501, 0.030357515439391136, 0.008831688202917576, 0.007566791493445635, 0.040951021015644073, -0.005536745302379131, -0.02097243443131447, -0.013258825056254864, -0.010034468956291676, -0.026382125914096832, -0.028279470279812813, 0.026336951181292534, 0.01732456311583519, -0.008905096910893917, -0.00039880943950265646, -0.035981785506010056, -0.03492017835378647, -0.03467171639204025, 0.01364281214773655, -0.02674352563917637, -0.002686493331566453, -0.017855368554592133, -0.004669952671974897, 0.05289977788925171, -0.006126841995865107, -0.00914791226387024, -0.0108871441334486, -0.047252919524908066, 0.03476206585764885, -0.004644541535526514, -0.008786512538790703, 0.00374951446428895, 0.04309682920575142, -0.025591565296053886, -0.0023067418951541185, -0.01145183015614748, 0.05172523111104965, 0.00477724289521575, 0.02003505639731884, 0.038082417100667953, 0.0238749198615551, 0.008876862935721874, 0.031916048377752304, -0.050053760409355164, -0.005940495990216732, -0.0279858335852623, 0.016093548387289047, -0.027330799028277397, -0.026562824845314026, 0.03918920457363129, 0.04027339816093445, -0.01976400800049305, -0.01404938567429781, 0.01810383051633835, -0.017335858196020126, -0.010282930918037891, -0.017290683463215828, 0.027375973761081696, 0.003695869352668524, -0.006482594180852175, -0.006211545318365097, -0.0027824898716062307, -0.062025099992752075, -0.01505452673882246, -0.018115123733878136, -0.037449970841407776, -0.01938001997768879, 0.0049297078512609005, -0.037766195833683014, 0.03785654529929161, 0.003794689429923892, 0.03286471962928772, -0.04126724600791931, -0.01821676827967167, -0.009904591366648674, 0.03530416265130043, -0.005649682600051165, -0.019368726760149002, 0.018420055508613586, -0.04379703849554062, 0.0024479134008288383, -0.030199402943253517, 0.023513521999120712, 0.027421148493885994, 0.0002943425497505814, 0.003918920177966356, -0.009080149233341217, -0.004074208904057741, -0.019617188721895218, -0.015393338166177273, 0.0035631682258099318, -0.03250332176685333, 0.030402690172195435, 0.013733161613345146, -0.016093548387289047, -0.07715868204832077, 0.016488829627633095, -0.01342823076993227, -0.004898650571703911, 0.023073066025972366, 0.007035986520349979, -0.005014411173760891, -0.025794852524995804, 0.011310659348964691, 0.004890180192887783, -0.013032951392233372, 0.005607331171631813, 0.004325494170188904, -0.04883403703570366, -0.010486217215657234, 0.06554874032735825, 0.032458145171403885, -0.07119560241699219, 0.00377774890512228, 0.033655282109975815, -0.01902991533279419, 0.024733243510127068, -0.019244495779275894, 0.025523804128170013, -0.012807076796889305, -0.03225485980510712, 0.02410079538822174, -0.002726021222770214, -0.020373867824673653, 0.01456889696419239, 0.024891356006264687, 0.010943613015115261, 0.03534933924674988, -0.028076183050870895, 0.008413820527493954, 0.005734385456889868, 0.005968729965388775, -0.00947542954236269, -0.003879392286762595, 0.04255473241209984, -0.027059748768806458, -0.004712304100394249, -0.013258825056254864, 0.016793759539723396, 0.025433454662561417, -0.02464289404451847, 0.005996964406222105, 0.031148076057434082, 0.0057823839597404, -0.035010527819395065, -0.02491394244134426, -0.004678423050791025, 0.005776736885309219, 0.01727938838303089, 0.015494981780648232, 0.0004203380667604506, 0.009808594360947609, 0.0028206061106175184, -0.01087020430713892, 0.01507711410522461, -0.007679728325456381, -0.004446901381015778, -0.010034468956291676, -0.016375891864299774, -0.005751326214522123, 0.02169523388147354, 0.021921107545495033, -0.018352292478084564, 0.008566285483539104, 0.014094560407102108, 0.015822499990463257, 0.015314281918108463, 0.011497004888951778, -0.05371292307972908, 0.00480547733604908, -0.030289752408862114, 0.0041758525185287, -0.003879392286762595, -0.013575049117207527, -0.007211039308458567, 0.02367163449525833, 0.005576273426413536, -0.03252590820193291, 0.017505263909697533, 0.01747138239443302, 0.014467253349721432, 0.02057715505361557, -0.0045457216911017895, 0.010209521278738976, -0.011446183547377586, -0.05235767737030983, -0.02162747085094452, -0.005525451619178057, -0.01766337640583515, -0.019718831405043602, 0.04219333082437515, -0.00524028530344367, 0.04316459223628044, 0.0024210908450186253, 0.023965271189808846, 0.04187710955739021, 0.03774360567331314, 0.0021740407682955265, -0.05615236610174179, -0.0320967473089695, 0.05814006179571152, -0.04596543312072754, -0.021062783896923065, 0.031373947858810425, -0.008481582626700401, 0.0517704039812088, 0.029273318126797676, -0.029273318126797676, -0.016613060608506203, 0.01952683925628662, -0.008176651783287525, -0.051634881645441055, 0.04479088634252548, -0.01067821029573679, 0.012219803407788277, -0.009780360385775566, 0.020938554778695107, 0.011609942652285099, -0.020938554778695107, 0.020803028717637062, -0.014015504159033298, 0.027263035997748375, 0.012660258449614048, 0.012423090636730194, 0.03921179100871086, -0.01494158897548914, -0.01681634597480297, 0.009418961592018604, -0.024078207090497017, 0.0008011481259018183, 0.0019199320813640952, 0.01608225516974926, 0.03220968320965767, -0.0036902225110679865, -0.00022163921676110476, 0.024597719311714172, -0.03297765925526619, 0.035281576216220856, 0.014467253349721432, -0.0038144534919410944, -0.0218194629997015, 0.03688528388738632, 0.0012832487700507045, -0.006002611480653286, 0.0057739135809242725, -0.02762443572282791, 0.04081549867987633, -0.03424255549907684, -0.0021218073088675737, -0.025320516899228096, -0.04461018741130829, -0.0011943107238039374, -0.032412972301244736, -0.0018366409931331873, -0.015901556238532066, 0.010937966406345367, 0.02340058423578739, -0.02076914720237255, 0.0038935095071792603, 0.02333282306790352, -0.008046774193644524, 0.015935435891151428, 0.033068008720874786, -0.026020728051662445, 0.003709986573085189, -0.00670282170176506, -0.03144171088933945, -0.02298271656036377, 0.006307541858404875, 0.025568978860974312, 0.023310234770178795, 0.04542333632707596, -0.010181287303566933, -0.02534310333430767, 0.029476605355739594, -0.004014916718006134, -0.03309059515595436, -0.005514157935976982, -0.02744373492896557, 0.04869851469993591, 0.016025787219405174, -0.012163334526121616, 0.026879049837589264, 0.03313576802611351, 0.021028904244303703, -0.03674975782632828, 0.021672645583748817, -0.006742349825799465, -0.017844075337052345, -0.03243555873632431, -0.04381962865591049, 0.047840192914009094, -0.02468806877732277, 0.01953813247382641, -0.027059748768806458, 0.01767466962337494, -0.020904673263430595, -0.0299509409815073, -0.015280401334166527, -0.01589026115834713, 0.023807158693671227, -0.006279307417571545, 0.02886674366891384, -0.002641318365931511, -0.011017022654414177, -0.007024692837148905, 0.0449489988386631, 0.016183897852897644, -0.04192228242754936, 0.04049927368760109, 0.028437582775950432, 0.03141912445425987, 0.022677786648273468, -0.0004566897405311465, -0.056287892162799835, -0.003040833631530404, -0.013473406434059143, -0.003182005137205124, -0.025433454662561417, -0.01957201398909092, -0.01864592917263508, -0.0039019796531647444, -0.02244061790406704, 0.042645081877708435, -0.01551756914705038, 0.0036591647658497095, 0.02053198032081127, -0.0019439313327893615, -0.0001699351705610752, 0.003947154618799686, -0.014659246429800987, -0.05484229698777199, 0.040634799748659134, -0.019391315057873726, -0.012321447022259235, 0.01573215052485466, -0.05267390236258507, -0.021345127373933792, 0.044858649373054504, 0.015269107185304165, 0.013597636483609676, 0.0007005634834058583, 0.00026204955065622926, -0.0027316680643707514, 0.02685646153986454, 0.008385585620999336, 2.849899283319246e-05, -0.007995952852070332, 0.055203694850206375, -0.000760208407882601, -0.009622247889637947, 0.011779348365962505, 0.007380445022135973, 0.028234295547008514, 0.04481347277760506, -0.04230627045035362, 0.06920790672302246, 0.008538051508367062, -0.04212556779384613, 0.004229497630149126, 0.0014498310629278421, 0.02809877134859562, -0.010830676183104515, -0.017584320157766342, 0.046439770609140396, 0.021650057286024094, 0.007600672543048859, 0.02244061790406704, 0.009368139319121838, 0.0019044032087549567, 0.049737535417079926, 0.0018465229077264667, 0.019888238981366158, 0.0025410866364836693, -0.004469489213079214, 0.0107120918110013, -0.000923967338167131, 0.03038010187447071, 0.0049918233416974545, 0.005358869209885597, 0.005412514321506023, -0.017990892753005028, -0.01756173186004162, 0.0010940789943560958, 0.022034045308828354, 0.00023469758161809295, 0.005946142598986626, 0.009040621109306812, 0.0007552673923783004, -0.034581366926431656, 0.026133663952350616, -0.03697563335299492, 0.006081667263060808, 0.022338975220918655, -0.027421148493885994, 0.04445207491517067, 0.005387103650718927, -0.028031008318066597, 0.0008449113229289651, -0.01410585455596447, -0.016285542398691177, -0.02266649343073368, 0.020904673263430595, 0.007566791493445635, 0.0025368514470756054, 0.03936990350484848, -0.04589767009019852, -0.026562824845314026, 0.010841969400644302, -0.03925696387887001, -0.002889780094847083, 0.009509311057627201, -0.0059235552325844765, 0.004630424547940493, 0.03783395513892174, 0.00821617990732193, 0.012569908984005451, -0.041176896542310715, 0.03918920457363129, 0.025523804128170013, 0.027217861264944077, 0.015257813967764378, -0.025840027257800102, -0.013032951392233372, 0.016375891864299774, 0.054074324667453766, -0.011113018728792667, 0.02647247537970543, 0.010243402794003487, 0.00352081679739058, -0.025907790288329124, 0.009723891504108906, 0.0015006528701633215, 0.007679728325456381, -0.022101806476712227, 0.008154064416885376, -0.011502652429044247, 0.006962577346712351, 0.01786666177213192, 0.02011411264538765, 0.004136324394494295, -0.013699280098080635, -0.006493887864053249, 0.005759796593338251, -0.04630424454808235, -0.02298271656036377, -0.027647022157907486, -0.005570626817643642, -0.002829076489433646, -0.029747653752565384, 0.0149980578571558, -0.030877025797963142, 0.034468427300453186, -0.017810193821787834, -0.004469489213079214, -0.002651200396940112, 0.05086690932512283, -0.021458065137267113, -0.05430019646883011, 0.012524733319878578, -0.011632530018687248, 0.037495143711566925, -0.04456501454114914, -0.00543510215356946, -0.007019045762717724, -0.0026116722729057074, 0.0036365773994475603, 0.009690009988844395, -0.019018622115254402, -0.015235225670039654, -0.012197216041386127, 0.0022982717491686344, 0.02561415359377861, -0.019854357466101646, 0.027850309386849403, 0.029815416783094406, -0.022079220041632652, -0.03022199124097824, -0.0003231062146369368, 0.008775219321250916, 0.0037608081474900246, 0.007273154798895121, 0.004605013877153397, 0.014873826876282692, -0.015901556238532066, 0.014828652143478394, -0.02259873040020466, -0.009328611195087433, 0.04208039492368698, -0.0023392115253955126, 0.031102901324629784, -0.025478629395365715, 0.006827052682638168, -0.011056549847126007, -0.006979518104344606, 0.0027189627289772034, 0.03263884782791138, -0.00775878457352519, -0.015438512898981571, 0.009108384139835835, 0.0009670246508903801, 0.0008124418673105538, 0.00072279799496755, 0.009390726685523987, 0.029634717851877213, -0.014184909872710705, -0.00024157969164662063, 0.002939190249890089, -0.03259367123246193, 0.002814959269016981, 0.016500122845172882, -0.0019425195641815662, 0.013055538758635521, -0.024055620655417442, -0.022192155942320824, 0.007278801407665014, 0.01404938567429781, -0.0020625153556466103, -0.004043151158839464, 0.007589378859847784, -0.018386173993349075, 0.016014492139220238, -0.032458145171403885, -0.029499191790819168, -0.020204462110996246, -0.0340166799724102, 0.0010037291795015335, 0.006787524558603764, 0.03336164355278015, -0.021107960492372513, 0.027601847425103188, 0.006290601100772619, 0.013654105365276337, 0.021796876564621925, -0.004215380176901817, 0.017042221501469612, -0.03627542406320572, -0.013981623575091362, 0.008746985346078873, 0.07173769921064377, -4.9454134568804875e-05, -0.0026342598721385, 0.008425113745033741, 0.05199627950787544, -0.008091948926448822, 0.009831181727349758, 0.021751701831817627, 0.001019258052110672, 0.012039103545248508, -0.0211192537099123, 0.004026210401207209, -0.01551756914705038, 0.008498523384332657, -0.022429324686527252, -0.013800923712551594, -0.012287565506994724, -0.004684069659560919, 0.05014410987496376, 0.006380951032042503, 0.022113099694252014, -0.016985751688480377, 0.02739856019616127, -0.017448794096708298, 0.010587860830128193, -0.032616257667541504, -0.03860193118453026, 0.01456889696419239, -0.007538557052612305, 0.027195272967219353, 0.007662788033485413, 0.01631942391395569, -0.03905367851257324, 0.004311377182602882, 0.010265990160405636, -0.028143946081399918, -0.03309059515595436, 0.01402679830789566, 0.016330717131495476, 0.022067924961447716, 0.010136112570762634, -0.009712597355246544, 0.014218791387975216, 0.004088325891643763, 0.008001599460840225, -0.0071828048676252365, -0.04639459401369095, 0.008809099905192852, 0.016917990520596504, -0.007702316157519817, 0.04747879132628441, -0.03275178372859955, -0.011756760999560356, -0.021593589335680008, 0.007990305311977863, -0.0007160923560149968, 0.0015302988467738032, -0.00813712365925312, 0.023242471739649773, 0.030944788828492165, 0.010627388954162598, 0.007894309237599373, -0.000853381585329771, 0.022237330675125122, 0.005660976283252239, 0.0007040927303023636, -0.010401514358818531, -0.009390726685523987, -0.010011881589889526, 0.024123381823301315, 0.011480065062642097, -0.02972506731748581, 0.0047546555288136005, 0.03464912623167038, 0.004164558835327625, -0.0029646011535078287, -0.031983811408281326, 0.022338975220918655, -0.03333905711770058, -0.01716645248234272, -0.015506274998188019, -0.019831769168376923, 0.03250332176685333, 0.0408380851149559, -0.016635647043585777, 0.008114536292850971, -0.013010364025831223, 0.008317823521792889, 0.019041208550333977, 0.03697563335299492, -0.007024692837148905, -0.015302988700568676, 0.0038991563487797976, 0.012163334526121616, 0.017923131585121155, -0.014388197101652622, -0.015201345086097717, -0.03223227337002754, -0.01205039769411087, -0.0029984822031110525, 0.015743443742394447, -0.010113525204360485, 0.006369657348841429, 0.03053821437060833, 0.00626801373437047, -0.010147405788302422, 0.015043232589960098, -0.024484781548380852, -0.005768266506493092, -0.03169017285108566, -0.019165439531207085, 0.0020455748308449984, -0.009978000074625015, -0.0258852019906044, -0.02209051325917244, 0.0010601978283375502, 0.018962152302265167, -0.027601847425103188, 0.0085267573595047, -0.0017138217808678746, 0.01922190934419632, -0.035484861582517624, -0.0021161604672670364, -0.01104525662958622, -0.0021571002434939146, -0.057146213948726654, 0.016104841604828835, 0.0368175208568573, 0.023242471739649773, -0.009390726685523987, -0.004989000037312508, -0.014602777548134327, -0.0167034100741148, 0.024304082617163658, -0.02690163627266884, 0.0005297460011206567, 0.00211757211945951, -0.003537757322192192, 0.015743443742394447, 0.010666917078197002, -0.030131639912724495, 0.018860509619116783, -0.04711739346385002, -0.029747653752565384, -0.011824523098766804, -0.010186933912336826, -0.0031537709292024374, 0.020509392023086548, 0.010576567612588406, 0.04942131042480469, -0.005895320791751146, 0.00323565024882555, 0.01845393516123295, 0.0017844075337052345, -0.011175134219229221, -0.0476594902575016, 0.008538051508367062, -0.014772183261811733, -0.016025787219405174, -0.008797806687653065, -0.00922132097184658, 0.012332740239799023, -0.008453348651528358, -0.0075159696862101555, 0.0037608081474900246, 0.008374292403459549, 0.010836322791874409, 0.009328611195087433, -0.009791653603315353, -0.012355327606201172, 0.01863463595509529, -0.031328774988651276, -0.006166370119899511, 0.012920013628900051, -0.04352599009871483, -0.01589026115834713, 0.015438512898981571, -0.002415444003418088, -0.035484861582517624, 0.013281412422657013, 0.004170205444097519, 0.003913273569196463, 0.0013601871905848384, -0.00927778985351324, -0.01102266926318407, -0.01042410172522068, -0.0056214481592178345, -0.017573025077581406, 0.01708739623427391, 0.026246601715683937, 0.035439688712358475, -0.018036067485809326, 0.004537251312285662, -0.011632530018687248, -0.010853263549506664, -0.040250811725854874, -0.031532060354948044, -0.011378421448171139, 0.01952683925628662, -0.029273318126797676, 0.011779348365962505, 0.0011569003108888865, -0.016183897852897644, -0.02247449941933155, -0.03647870942950249, -0.007798312697559595, -0.014625364914536476, -0.013925154693424702, 0.02545604109764099, 0.008046774193644524, 0.006561650428920984, -0.004568309057503939, 0.0374273844063282, 0.004178675822913647, 0.03356493264436722, -0.0010009057587012649, 0.035168640315532684, 0.022022750228643417, 0.02088208496570587, -0.020012468099594116, -0.00729574216529727, -0.009887650609016418, 0.020723972469568253, -0.054345373064279556, 0.015766030177474022, 0.04131242260336876, 0.00572591507807374, -0.012987775728106499, 0.025907790288329124, -0.0613926537334919, 0.008204886689782143, 0.034807238727808, -0.006448713131248951, -0.01627424731850624, -0.03720150887966156, 0.012976482510566711, 0.008244414813816547, 0.033813394606113434, -0.02057715505361557, -0.00469818664714694, -0.013247531838715076, -0.0119148725643754, -0.029047444462776184, 0.022079220041632652, 0.021808169782161713, 0.010474923998117447, -0.022779429331421852, 0.023513521999120712, 0.005581920500844717, -0.03623024746775627, 0.019120264798402786, -0.011033962480723858, -0.021175721660256386, -0.03584626317024231, 0.029115205630660057, -0.037224095314741135, 0.034084443002939224, -0.007160217501223087, -0.008955918252468109, -0.025591565296053886, 0.021220896393060684, 0.0006864463211968541, 0.01778760552406311, 0.01727938838303089, 0.03496535122394562, 0.03510087728500366, 0.01364281214773655, -0.004153265152126551, -0.04743361845612526, 0.019944706931710243, 0.011423596180975437, -0.02030610479414463, -0.04077032208442688, -0.0006366833695210516, -0.027330799028277397, -0.013066831976175308, -0.00904626864939928, 0.01930096559226513, -0.01073467917740345, -0.006426125764846802, 0.04851781576871872, 0.008730044588446617, 0.029770242050290108, -0.009018033742904663, 0.011259837076067924, 0.02224862575531006, 0.01805865578353405, 0.020983729511499405, 0.02100631594657898, -0.03216451033949852, 0.019075090065598488, 0.009831181727349758, 0.03860193118453026, 0.01554015651345253, -0.0036365773994475603, -0.024710655212402344, 0.000921849743463099, -0.027263035997748375, -0.019233202561736107, 0.0017349974950775504, -0.013586343266069889, -0.008571932092308998, 0.040205638855695724, 0.026088489219546318, -0.021683938801288605, -0.05018928274512291, 0.0035575213842093945, -0.022214744240045547, -0.0013792453100904822, 0.0015938259894028306, -0.011926166713237762, -0.013112006708979607, 0.00993847195059061, -0.012953895144164562, -0.008600166998803616, -0.0030747149139642715, -0.029476605355739594, 0.006731056142598391, 0.01193745993077755, 0.0313061885535717, -0.0020596918184310198, 0.024868767708539963, -0.022305093705654144, -0.028189120814204216, 0.06577461212873459, -0.02599813975393772, -0.0005939790280535817, -0.005000293720513582, -0.007990305311977863, -0.009571426548063755, 0.009509311057627201, -0.0009627895196899772, 0.019820475950837135, -0.041018784046173096, -0.010994435288012028, 0.013789630495011806, -0.0251849927008152, -0.01810383051633835, -0.0026229661889374256, 0.000828676566015929, -0.027488909661769867, -0.005130171775817871, -0.016985751688480377, 0.026065902784466743, -0.02685646153986454, 0.032458145171403885, -0.026133663952350616, 0.042419206351041794, 0.004359375219792128, 0.017731137573719025, 0.023073066025972366, 0.005398397333920002, 0.011378421448171139, 0.029770242050290108, 0.006668940652161837, -0.014286553487181664, 0.004198439884930849, -0.007397385314106941, 0.04086067155003548, -0.022451912984251976, -0.013202357105910778, 0.023807158693671227, 0.012920013628900051, 0.019278377294540405, 0.036365773528814316, -0.01007399708032608, -0.015980610623955727, -0.004305730108171701, 0.034739479422569275, 0.026517650112509727, -0.006318835541605949, -0.021288659423589706, 0.0020893379114568233, -0.013326588086783886, 0.0389181524515152, -0.006544709671288729, -0.0038370408583432436, -0.00019869886455126107, -0.026924224570393562, -0.006589884869754314, 0.015607918612658978, -0.03412961587309837, 0.009667422622442245, -0.012423090636730194, 0.01065562292933464, -0.0018535815179347992, 0.013032951392233372, -0.009718244895339012, 0.009667422622442245], [0.03386344015598297, 0.025099359452724457, 0.04267621412873268, 0.007832898758351803, -0.06889542937278748, 0.03768555447459221, 0.001097792643122375, -0.010809035040438175, 0.014984146691858768, 0.05024740844964981, 0.004175111651420593, 0.02226320467889309, -0.015604936517775059, -0.0119228046387434, -0.002548583084717393, -0.008818858303129673, -0.010023919865489006, 0.0557979941368103, 0.004920667037367821, -0.029773537069559097, 0.029505744576454163, 0.04613315686583519, 0.023103095591068268, 0.0649029016494751, -0.012549679726362228, -0.01598227769136429, 0.048543281853199005, 0.053071390837430954, 0.023723885416984558, -0.050734300166368484, 0.06436731666326523, -0.019573118537664413, 0.06052086129784584, -0.031234217807650566, 0.05604143813252449, -0.01422946248203516, -0.003035476664081216, 0.01615269109606743, 0.011137688532471657, -0.006865198258310556, -0.0405338816344738, -0.03335220366716385, -0.018562814220786095, -0.033084411174058914, -0.04291966184973717, 0.030698634684085846, 0.021289417520165443, -0.04036346822977066, -0.005462336353957653, 0.03454509377479553, -0.017576854676008224, 0.013645189814269543, 0.015775348991155624, -0.003353478852659464, 0.02592707797884941, 0.02989525906741619, -0.008131121285259724, -0.0013838425511494279, 0.0045920140109956264, 0.000725395220797509, 0.00800939742475748, -0.028751060366630554, -0.032524485141038895, 0.05876804515719414, -0.02991960383951664, -0.0130609180778265, 0.024551603943109512, 0.027679894119501114, -0.012914849445223808, 0.006439166143536568, 0.021374624222517014, 0.015069353394210339, -0.05097774788737297, -0.016956064850091934, -0.0048598055727779865, 0.008338050916790962, 0.015751004219055176, 0.044915925711393356, -0.036127496510744095, -0.022530995309352875, -0.01975570246577263, -0.009336182847619057, 0.0014606805052608252, 0.019524428993463516, -0.01604313962161541, 0.01848977990448475, -0.042627524584531784, 0.037563830614089966, -0.020668627694249153, -0.01369387935847044, -0.004945011809468269, 0.018027231097221375, 0.001163979759439826, 0.08311271667480469, 0.020425181835889816, -0.01750382035970688, 0.022165825590491295, -0.03354696184396744, 0.017065616324543953, 0.06797032803297043, 0.02699824422597885, 0.01567796990275383, 0.004135551396757364, 0.015251938253641129, 0.05243842676281929, -0.05389910936355591, -0.07157333940267563, 0.005940100643783808, -0.002935054711997509, -0.03047953173518181, -0.005078907590359449, -0.03135593980550766, -0.0074494704604148865, 0.029432710260152817, 0.037028249353170395, -0.00875191017985344, -0.004555497318506241, 0.032183658331632614, 0.047837283462285995, 0.008411085233092308, -0.023602161556482315, 0.00872756540775299, 0.012336663901805878, -0.0920228660106659, 0.008447602391242981, 0.008575411513447762, -0.0211676936596632, -0.007510331925004721, -0.025099359452724457, -0.033230479806661606, 0.04781293869018555, -0.013681706972420216, 0.031818490475416183, -0.055749304592609406, -0.03724735230207443, -0.011588064953684807, 0.022482305765151978, -0.013304364867508411, -0.015641452744603157, -0.0036364856641739607, 0.01007869467139244, 0.014278151094913483, 0.02575666457414627, 0.024636810645461082, -0.07434863597154617, -0.01840457320213318, -0.019719185307621956, 0.07649096846580505, 0.08067824691534042, -0.011137688532471657, -0.024016020819544792, 0.04627922549843788, -0.014984146691858768, 0.013754741288721561, 0.0007021916680969298, -0.02753382734954357, -0.0414346344769001, 0.06461076438426971, 0.006274839863181114, 0.016396138817071915, -0.002127115847542882, 0.01855064183473587, 0.01379125751554966, -0.015592764131724834, 0.05609012767672539, -0.003523891558870673, -0.01655437797307968, 0.006055737845599651, -0.047642529010772705, -0.03712562844157219, -0.034472059458494186, 0.005867066327482462, -0.03254882991313934, -0.015909245237708092, -0.025245426222682, -0.014667666517198086, -0.010961189866065979, 0.014265978708863258, -0.018051575869321823, -0.03547019138932228, 0.0023781703785061836, 0.00657914811745286, -0.07775688916444778, -0.02811809815466404, -0.023151785135269165, 0.04669308662414551, 0.01612834632396698, 0.020619938150048256, -0.02558625303208828, -0.029310988262295723, 0.020486043766140938, 0.032694898545742035, 0.017406441271305084, 0.04089905321598053, -0.015166731551289558, 0.0023020931985229254, -0.04301704093813896, -0.02845892496407032, 0.010109125636518002, -0.0043150936253368855, 0.013998188078403473, -0.029408365488052368, 0.035056330263614655, 0.011782822199165821, -0.04019305855035782, -0.022056274116039276, 0.001939966226927936, -0.007863329723477364, 0.045670609921216965, -0.01801505871117115, -0.020388664677739143, -0.02505066990852356, -0.041385944932699203, -0.013937326148152351, -0.0387323759496212, -0.013219158165156841, 0.050734300166368484, 0.029432710260152817, 0.007978967390954494, 0.026779141277074814, -0.0078815883025527, -0.03133159503340721, 0.0342286117374897, 0.010711656883358955, -0.0034599867649376392, 0.009299665689468384, -0.014083393849432468, -0.032719243317842484, -0.008684962056577206, -0.026754796504974365, -0.0504421666264534, 0.02651135064661503, 0.0027585558127611876, 0.00806417316198349, 0.014984146691858768, 0.039194926619529724, -0.03985223174095154, -0.028507612645626068, 0.047472115606069565, -0.0001924750831676647, 0.022299721837043762, 0.0629553273320198, -0.02595142275094986, -0.03573798015713692, -0.015556246973574162, 0.01541017834097147, -0.01003609225153923, 0.012361008673906326, 0.017552509903907776, 0.01289050467312336, 0.0171386506408453, -0.015093698166310787, -0.018879294395446777, -0.06363698095083237, 0.010997707024216652, 0.0029852655716240406, 0.01939053274691105, -0.002769206650555134, 0.014898940920829773, -0.02082686871290207, 0.009421388618648052, 0.05292532220482826, -0.03298703208565712, 0.002492286032065749, -0.03495895117521286, -0.018648020923137665, 0.06076430529356003, -0.05482420697808266, -0.001874539884738624, 0.040436502546072006, -0.014533770270645618, 0.037588175386190414, 0.0035421501379460096, -0.007206023670732975, -0.05063692107796669, 0.02018173411488533, 0.011235066689550877, -0.053217459470033646, 0.005602318327873945, -0.0059309713542461395, -0.05871935561299324, -0.04106946662068367, 0.02646266110241413, -0.061251200735569, -0.005553628783673048, -0.023833436891436577, -0.04321179538965225, -0.002647483255714178, 0.008989270776510239, 0.08988053351640701, 0.025464529171586037, -0.00937270000576973, -0.020084356889128685, 0.008910151198506355, 0.033985164016485214, -0.011277670040726662, 0.027339069172739983, -0.02755817025899887, 0.023480437695980072, -0.013754741288721561, 0.010364744812250137, 0.047277357429265976, -0.019098397344350815, 0.007711175363510847, -0.05190284550189972, 0.023748230189085007, 0.01992611587047577, -0.006119642406702042, -0.01880626007914543, -0.004969356581568718, -0.005940100643783808, 0.05657702311873436, -0.06602275371551514, -0.013669534586369991, -0.024734189733862877, -0.04574364423751831, 0.00014045735588297248, 0.03985223174095154, 0.007650313898921013, 0.004698521923273802, 0.022737925872206688, 0.035031985491514206, 0.03079601190984249, -0.03656570240855217, 0.03079601190984249, 0.010656881146132946, 0.012513162568211555, 0.0504421666264534, 0.003192195435985923, 0.013073090463876724, -0.03534846752882004, 0.03444771468639374, -0.00021358647791203111, -0.027460793033242226, 0.021691104397177696, -0.006256581284105778, 0.021472003310918808, 0.04102077707648277, -0.004394213669002056, -0.016907375305891037, -0.024868084117770195, 0.00859975628554821, 0.028337201103568077, -0.007802468258887529, 0.014485080726444721, 0.039365336298942566, 0.047106944024562836, 0.013255675323307514, 0.024624638259410858, 0.0558953732252121, 0.007875502109527588, -0.017321236431598663, -0.04596274346113205, 0.017236029729247093, -0.06251712143421173, -0.014752872288227081, 0.02155720815062523, -0.050198718905448914, -0.03155069798231125, 0.008112862706184387, -0.01962180808186531, 0.003575623966753483, 0.05696653574705124, 0.03770989924669266, -0.05555454641580582, 0.014545942656695843, 0.004923710133880377, -0.0035391070414334536, 0.05117250606417656, 0.00206929724663496, 0.01792985200881958, -0.006189633626490831, -0.0521949827671051, -0.021545035764575005, 0.034520749002695084, 0.014667666517198086, -0.0009007529588416219, 0.014667666517198086, -0.01728471927344799, 0.0006964859203435481, 0.017601199448108673, 0.012500990182161331, 0.016870860010385513, 0.025342805311083794, 0.06388042867183685, 0.055408477783203125, -0.03724735230207443, -0.023796919733285904, 0.0368821807205677, 0.011235066689550877, -0.01876974292099476, 0.028507612645626068, 0.008776254951953888, -0.01872105523943901, 0.002043431159108877, -0.010017833672463894, 0.05623619630932808, 0.018173299729824066, 0.01863584853708744, -0.014971974305808544, 0.025464529171586037, -0.01549538504332304, 0.015093698166310787, -0.0540451779961586, -0.03135593980550766, -0.0004682545841205865, -0.01495980191975832, -0.015251938253641129, 0.027801617980003357, 0.015398005954921246, 0.01422946248203516, -0.0029441840015351772, 0.03084470145404339, -0.014022531919181347, 0.03459378331899643, 0.010474296286702156, 0.029091885313391685, 0.007510331925004721, -0.04428296163678169, 0.002320351777598262, 0.03785596787929535, 0.014838078990578651, -0.018501952290534973, 0.03695521503686905, -0.006883456837385893, 0.0324271060526371, 0.020510388538241386, 0.012939194217324257, 0.02609749138355255, -0.04525674879550934, -0.020327802747488022, 0.00045722341747023165, 0.023723885416984558, 0.01541017834097147, -0.0503934770822525, -0.046790461987257004, -0.01934184320271015, 0.0029822224751114845, 0.0026976941153407097, -0.04464813321828842, 0.0016067484393715858, -0.04092339798808098, 0.014095566235482693, 0.04411254823207855, -0.055408477783203125, 0.006414821837097406, -0.03498329594731331, -0.019974805414676666, 0.05472682788968086, 0.001167783630080521, -0.034691162407398224, -0.0042724902741611, -0.024137744680047035, -0.009354441426694393, -0.03870803117752075, 0.020486043766140938, 0.012878332287073135, -0.05151332914829254, 0.026170523837208748, -0.04301704093813896, 0.05983920767903328, 0.0450863353908062, 0.045670609921216965, 0.024283813312649727, 0.022470133379101753, 0.05735605210065842, -0.030382152646780014, -0.023188302293419838, -0.046230535954236984, 0.017564682289958, -0.028751060366630554, -0.002998959505930543, 0.014716355130076408, -0.0031115536112338305, 0.009853506460785866, -0.018818432465195656, 0.007346005644649267, -0.045305438339710236, -0.05350959300994873, -0.03220800310373306, -0.012561852112412453, 0.006487855687737465, -0.04355262219905853, -0.009786559268832207, 0.03420426696538925, 0.07040479779243469, 0.05472682788968086, -0.01844109036028385, -0.03566494584083557, 0.0022321022115647793, -0.0021377666853368282, -0.003943837247788906, 0.022896166890859604, -0.011947148479521275, -0.03403385356068611, -0.00938487146049738, -0.014886768534779549, -0.03006567247211933, 0.04759383946657181, -0.020778179168701172, 0.03064994513988495, -0.045646265149116516, 0.023882124572992325, -0.05312008038163185, 0.020729489624500275, -0.016956064850091934, -0.006883456837385893, 0.015751004219055176, -0.016164863482117653, -0.009993488900363445, -0.03274358808994293, -0.019633980467915535, 0.001933880033902824, -0.011612409725785255, -0.026803486049175262, -0.034496404230594635, 0.0011426782002672553, 0.014716355130076408, -0.018891466781497, 0.0007767472416162491, 0.017893334850668907, -0.01549538504332304, -0.029067540541291237, 0.01934184320271015, -0.007656400091946125, -0.022932682186365128, -0.0024283812381327152, -0.05302270129323006, 0.014071221463382244, -0.001519259880296886, 0.012829643674194813, -0.05803770199418068, -0.033619996160268784, 0.01513021532446146, 0.040266092866659164, -0.002323394874110818, 0.002935054711997509, -0.010863810777664185, -0.0003170513373333961, -0.017552509903907776, 0.017150823026895523, -0.014436392113566399, -0.010498641058802605, -0.010784690268337727, 0.002058646408841014, -0.00424205930903554, 0.00986567884683609, 0.030747324228286743, 0.014192945323884487, -0.019414877519011497, -0.01153937540948391, -0.00958571583032608, 0.020388664677739143, 0.010882069356739521, -0.004181197844445705, -0.007248626556247473, 0.017893334850668907, -0.03583535924553871, 0.0040138280019164085, 0.01495980191975832, 0.023127440363168716, 0.006080082152038813, 0.01441204734146595, -0.009792645461857319, -0.03364434093236923, 0.021045971661806107, -5.192262688069604e-05, -0.011734132654964924, 0.000742512580472976, -0.020498216152191162, -0.026754796504974365, 0.031088149175047874, 0.002335567260161042, 0.029091885313391685, 0.013596500270068645, 0.005988789722323418, 0.044258616864681244, -0.05506765469908714, -0.011551547795534134, 0.012221026234328747, -0.0010133470641449094, 0.028531957417726517, -0.006451338529586792, -0.028531957417726517, -0.0369308702647686, -0.0048567624762654305, 0.0048963227309286594, -0.00962831825017929, -0.0369308702647686, 0.012744436971843243, 0.006408735644072294, -0.0055353702045977116, -0.009171855635941029, 0.006816508714109659, -0.01120463665574789, 0.054483380168676376, -0.029140574857592583, 0.022835304960608482, -0.03554322570562363, 0.051075126975774765, 0.03491026163101196, -0.03656570240855217, 0.0010232371278107166, -0.0006128011154942214, -0.01180716697126627, 0.00380689837038517, 0.0078815883025527, -0.011344618164002895, 0.026900865137577057, 0.0030111318919807673, 0.02721734531223774, 0.029140574857592583, 0.023821264505386353, 0.011916718445718288, -0.016931720077991486, -0.024502914398908615, -0.004132508300244808, -0.009530940093100071, -0.03301137685775757, -0.0032378416508436203, -0.020753834396600723, -0.012659230269491673, 0.018708882853388786, -0.024247296154499054, -0.0006618708139285445, -0.027290379628539085, -0.021593725308775902, -0.018392400816082954, 0.009798731654882431, 0.004598100204020739, -0.008593670092523098, 0.018611503764986992, 0.009439647197723389, 0.008167638443410397, -0.01615269109606743, -0.0050819506868720055, -0.008374568074941635, -0.004108163993805647, 0.01180716697126627, -0.020790351554751396, 0.03929230570793152, -0.02457594871520996, 0.013462604954838753, -0.030917735770344734, 0.036322254687547684, 0.008271102793514729, -0.0028285467997193336, -0.007717261556535959, -0.021216383203864098, 0.004062517546117306, 0.015154560096561909, -0.04199456423521042, -0.0006930624367669225, 0.003910363186150789, 0.01730906404554844, -0.0297248475253582, -0.051951535046100616, 0.04218931868672371, 0.00785115733742714, 0.03690652549266815, -0.013024400919675827, 0.02404036559164524, -0.013255675323307514, -0.026000112295150757, 0.02322481945157051, 0.005596232134848833, 0.03099077008664608, 0.009890023618936539, 0.041483324021101, -0.014363357797265053, -0.025367150083184242, 0.0007485987152904272, -0.018088093027472496, 0.0034660729579627514, -0.025513218715786934, 0.00782681256532669, -0.045135024935007095, 0.0216424148529768, -0.03279227763414383, 0.04805638641119003, -0.03079601190984249, -0.007662486284971237, -0.0022960070054978132, 0.01925663650035858, -0.021143348887562752, -0.01911056973040104, 0.025172393769025803, -0.022652719169855118, -2.0837995180045255e-05, 0.03318179026246071, 0.042286697775125504, 0.018903639167547226, -0.011028137058019638, 0.01758902706205845, 0.038464583456516266, 0.038805410265922546, 0.0025896646548062563, -0.026340937241911888, -0.011788908392190933, 0.01685868762433529, -0.0021788482554256916, 0.05555454641580582, 0.003551279427483678, -0.028556302189826965, -0.04705825448036194, -0.0061926767230033875, -0.01818547211587429, 0.001649351674132049, 0.02741210348904133, -0.003989483695477247, -0.036833491176366806, -0.003362608142197132, -0.053217459470033646, -0.016432655975222588, -0.013559983111917973, -0.005325397476553917, 0.01202018279582262, -0.03456943854689598, 0.03493460640311241, 0.014205117709934711, -0.019122742116451263, 0.02333437092602253, -0.034861572086811066, -0.03099077008664608, 0.0027889867778867483, 0.005775773897767067, 0.01736992411315441, 0.01522759348154068, -0.02629224769771099, 0.029773537069559097, 0.028604991734027863, -0.010748174041509628, 0.01683434285223484, 0.007960708811879158, -0.004266404081135988, 0.013547810725867748, -0.013024400919675827, -0.011235066689550877, -0.016992582008242607, -0.007650313898921013, -0.0026277033612132072, -0.026438316330313683, 0.02811809815466404, -0.04523240402340889, 0.011886287480592728, 0.02223885990679264, 0.0011396351037546992, 0.004169025458395481, -0.02046169899404049, 0.014850251376628876, -0.016870860010385513, 0.008575411513447762, -0.028069408610463142, -0.006889542564749718, 0.04920058697462082, -0.018027231097221375, 0.020315630361437798, -0.007552935276180506, 0.01939053274691105, -0.0078085544519126415, -0.004893279634416103, 0.02775292843580246, -0.021301589906215668, 0.012817471288144588, 0.014984146691858768, -0.020778179168701172, -0.046400949358940125, -0.03150200843811035, 0.008252844214439392, 0.02646266110241413, 0.023930814117193222, 0.04666874185204506, 0.014643321745097637, 0.03892713412642479, 0.025172393769025803, 0.0396331287920475, -0.017771612852811813, -0.013146123848855495, -0.011941062286496162, -0.009196200408041477, -0.014205117709934711, 0.019804392009973526, -0.007120816968381405, 0.026730451732873917, -0.010796862654387951, -0.006213977932929993, 0.024843739345669746, 0.033814750611782074, 0.014618976972997189, 0.01424163393676281, -0.03155069798231125, -0.0003716366773005575, -0.013839947059750557, -0.036273565143346786, -0.0023142655845731497, -0.02243361808359623, -0.009196200408041477, -0.061494648456573486, -0.00193692313041538, 0.04956575483083725, 0.007132989354431629, -0.0003250394365750253, 0.0033382633700966835, 0.005526240915060043, 0.0775621309876442, -0.017260374501347542, -0.02358998917043209, 0.00989610981196165, 0.014618976972997189, -0.029797881841659546, 0.015446695499122143, 0.04102077707648277, -0.011715874075889587, 0.019877426326274872, 0.011454169638454914, -0.01992611587047577, 0.0007314813556149602, 0.02136245183646679, -0.022835304960608482, -0.04732604697346687, -0.00893449503928423, 0.004668091423809528, 0.021946724504232407, -0.030552566051483154, 0.04255449026823044, 0.02260402962565422, -0.03841589763760567, 0.012434042058885098, 0.0008026135037653148, -0.010930758900940418, -0.009159683249890804, 0.029822226613759995, 0.012720092199742794, -0.01504500862210989, -0.010565588250756264, 0.013535639271140099, -0.014253806322813034, -0.011101171374320984, 0.011259411461651325, 0.004984572064131498, 0.03997395560145378, -0.04871369153261185, 0.009226631373167038, 0.005794032476842403, -0.020254768431186676, 0.011472427286207676, 0.020680800080299377, -0.03622487559914589, -0.008228499442338943, 0.01795419678092003, -0.04990658164024353, -0.010224763303995132, -0.028507612645626068, 0.01649351604282856, 0.03318179026246071, -0.0405825711786747, -0.007942450232803822, -0.03861065208911896, -0.0004553214821498841, -0.007425125688314438, -0.014898940920829773, 0.007686831057071686, -0.006046608556061983, -0.00232187332585454, 0.030357807874679565, -0.019609635695815086, 0.023066578432917595, -0.018672365695238113, -0.040460847318172455, 0.01668827421963215, 0.06417255848646164, 0.001999306259676814, 0.033985164016485214, -0.013121779076755047, -0.046060122549533844, -0.00469243573024869, -0.021045971661806107, 0.042067598551511765, 0.038099415600299835, 0.043844759464263916, 0.03515370935201645, 9.966101060854271e-05, 0.03751514106988907, -0.0003940794267691672, -0.022750098258256912, -0.017102133482694626, -0.0025622770190238953, 0.0558466836810112, 0.04211628809571266, 0.009190114215016365, 0.015458867885172367, 0.035031985491514206, -0.00018810064648278058, 0.022908339276909828, 0.0008018527296371758, 0.009482250548899174, 0.00793636403977871, -0.0008543459116481245, -0.01593359000980854, -0.020571250468492508, -0.014071221463382244, -0.016006622463464737, -0.03228103742003441, 0.009524853900074959, -0.0432848297059536, -0.008575411513447762, 0.004704608116298914, 0.005298009607940912, 0.03461812809109688, 0.00793636403977871, 0.03639528900384903, 0.006037479266524315, -0.0006584473303519189, 0.007132989354431629, 0.02541583962738514, 0.0063783046789467335, -0.029846571385860443, 0.04209194332361221, 0.0012583154020830989, -0.012068872340023518, 0.03690652549266815, -0.005900540389120579, -0.015446695499122143, -0.040095679461956024, 0.0008961883140727878, -0.001134309684857726, -0.04131291061639786, 0.010736001655459404, -0.01792985200881958, -0.041556358337402344, -0.02899450622498989, 0.02755817025899887, -0.001458398182876408, 0.04165373742580414, 0.000742512580472976, 0.016420483589172363, -0.017710750922560692, 0.020729489624500275, -0.001321459305472672, -0.03890278935432434, 0.06071561574935913, 0.008660618215799332, 0.017406441271305084, -0.010139556601643562, -0.028361545875668526, -0.028580646961927414, 0.011618495918810368, 0.009275320917367935, 0.007625969126820564, -0.018708882853388786, 0.01812461018562317, -0.02009652927517891, -0.027436448261141777, -0.009603974409401417, 0.04012002423405647, 0.008532808162271976, 0.012744436971843243, -0.009993488900363445, -0.005873152520507574, -0.017637716606259346, 0.028507612645626068, -0.025732319802045822, 0.018051575869321823, -0.046936530619859695, 0.024393362924456596, 0.023918641731142998, -0.02414991706609726, -0.011648926883935928, -0.05876804515719414, 0.006664354354143143, -0.02378474734723568, -0.004077733028680086, 0.05102643743157387, 0.028702370822429657, -0.0193661879748106, 0.020790351554751396, -0.012853987514972687, 0.007869415916502476, -0.007577280048280954, -0.0024283812381327152, 0.01387646421790123, -0.0020175648387521505, 0.00574229983612895, 0.032889652997255325, -0.012927021831274033, 0.001450790441595018, 0.021094659343361855, 0.028142442926764488, 0.0035025898832827806, 0.00212102965451777, 0.032500140368938446, -0.010054350830614567, 0.020960764959454536, -0.011472427286207676, 0.0033382633700966835, 0.021581552922725677, 0.02899450622498989, -0.015507557429373264, 0.0074494704604148865, -0.017917679622769356, 0.014606804586946964, 0.011235066689550877, 0.026925209909677505, 0.025294115766882896, 0.026925209909677505, -0.008435430005192757, 0.046206191182136536, -0.020705144852399826, -0.000709038635250181, -0.039535749703645706, -0.010011747479438782, -0.021021626889705658, -0.02361433394253254, 0.005739256739616394, -0.015081525780260563, -0.008672790601849556, 0.015690142288804054, -0.016651757061481476, -0.003008088795468211, 0.03223234787583351, -0.023602161556482315, 0.02848326787352562, 0.012829643674194813, -0.003742993576452136, -0.0022777486592531204, -0.01750382035970688, 0.02018173411488533, -0.012671402655541897, 0.024831566959619522, 0.027485137805342674, 0.003453900571912527, 0.022165825590491295, 0.011904546059668064, 0.03529977798461914, 0.024356845766305923, -0.0033717374317348003, -0.005526240915060043, -0.018952328711748123, -0.024782877415418625, -0.01027345284819603, -0.003167850663885474, -0.0011365920072421432, -0.038269829005002975, -0.0078815883025527, 0.014217290095984936, -0.00820415560156107, 0.0016904333606362343, 0.040460847318172455, 0.019122742116451263, 0.0009159683831967413, 0.0021119005978107452, 0.04615750163793564, -0.03844023868441582, -0.03741776570677757, -0.01835588365793228, 0.021800655871629715, -0.017856817692518234, 0.004853719379752874, -0.008344137109816074, -0.006615665275603533, 0.03206193447113037, -0.0170899610966444, -0.015264110639691353, 0.008989270776510239, 0.02358998917043209, -0.004211628809571266, -0.010066523216664791, 0.014314668253064156, -0.0072790575213730335, -0.02155720815062523, 0.008977098390460014, 0.012056699953973293, 0.02916491962969303, 0.01829502172768116, 0.004293791949748993, -0.010084780864417553, -0.020400837063789368, -0.025318460538983345, -0.024089055135846138, 0.005657093599438667, -0.03043084219098091, -0.005474508740007877, 0.027679894119501114, 0.015799693763256073, -0.03196455538272858, -0.020960764959454536, 0.009451819583773613, -0.011350704357028008, -0.01711430586874485, 0.007942450232803822, -0.00392557866871357, 0.020510388538241386, -0.018903639167547226, 0.007461642846465111, -0.0070112659595906734, -0.004549411125481129, 0.042432766407728195, -0.025902733206748962, 0.03364434093236923, -0.0056236195378005505, 0.01691954769194126, 0.026048801839351654, 0.0015915330732241273, -0.00019057314784731716, 0.062078919261693954, -0.04041215777397156, 3.170870058966102e-06, -0.009798731654882431, -0.008453687652945518, 0.021435486152768135, 0.003870803164318204, 0.028045063838362694, -0.020193906500935555, 0.0033200050238519907, 0.0004393452836666256, 0.000838369713164866, 0.006974749267101288, 0.01189237367361784, 0.009056218899786472, 0.01153937540948391, -0.0013267847243696451, -0.007473814766854048, -0.03690652549266815, 0.012549679726362228, -0.007157334126532078, -0.006147030275315046, 0.010644708760082722, 0.019999150186777115, 0.0067860777489840984, -0.016627412289381027, -0.03293834254145622, -0.04194587469100952, -0.008971012197434902, -0.026754796504974365, 0.0010141078382730484, -0.0037003904581069946, -0.007059955503791571, -0.01587272807955742, -0.005273664835840464, 0.02046169899404049, -0.001647830125875771, 0.018428917974233627, -0.009561371058225632, -0.011868028901517391, -0.014485080726444721, -0.001066601020283997, -0.0009638969204388559, 0.07147596031427383, -0.008179810829460621, -0.016079656779766083, 0.03941402584314346, 0.0324271060526371, -0.05175677686929703, 0.026803486049175262, 0.000533680897206068, -0.021435486152768135, 0.011478513479232788, -0.03113683871924877, 0.02575666457414627, 0.031599387526512146, 0.024186434224247932, 0.01754033751785755, -0.0069990940392017365, 0.023030061274766922, 0.0081189488992095, 0.005736213643103838, -0.0007851157570257783, 0.007589451968669891, -0.020145216956734657, 0.010693398304283619, -0.029627468436956406, -0.03169676661491394, -0.043698690831661224, -0.023663023486733437, 0.02009652927517891, 0.009360527619719505, 0.02412557229399681, 0.005285837221890688, 0.005660136695951223, -0.04666874185204506, 0.02901885099709034, 0.02904319576919079, 0.0072790575213730335, 0.018648020923137665, -0.0058518508449196815, 0.008672790601849556, 0.03581101447343826, -0.008709306828677654, 0.007467728573828936, 0.023127440363168716, 0.0046346173621714115, 0.006086168345063925, 0.01883060485124588, -0.018696710467338562, -0.02989525906741619, 0.030528221279382706, 0.005161070730537176, -0.014618976972997189, 0.0050332616083323956, -0.011131602339446545, -0.022957026958465576, -0.014278151094913483, -0.0021499390713870525, -0.030187396332621574, -0.02015738934278488, -0.02460029348731041, 0.011740218847990036, 0.02775292843580246, 0.021922379732131958, -0.003587796352803707, 0.009037960320711136, 0.017248202115297318, -0.009220545180141926, -0.011904546059668064, -0.0001578599913045764, 0.031282905489206314, -0.005118467845022678, 0.0279233418405056, -0.016237897798419, 0.020924247801303864, -0.00702952453866601, 0.025975767523050308, 0.030893390998244286, -0.021581552922725677, 0.01610400155186653, -0.014375530183315277, -0.022810960188508034, 0.007972881197929382, -0.014740699902176857, 0.027436448261141777, 0.047618184238672256, 0.0022214516066014767, -0.007126903161406517, 0.00803374219685793, 0.014838078990578651, -0.02037649229168892, 0.012853987514972687, 0.010474296286702156, -0.028580646961927414, 0.004324222914874554, 0.026073146611452103, 0.03727169707417488, 0.00497544277459383, -0.006323528941720724, -0.03354696184396744, -0.006186590529978275, -0.030357807874679565, -0.0013420002069324255, -0.003934707958251238, -0.05097774788737297, 0.025148048996925354, -0.021398968994617462, -0.01750382035970688, 0.016359621658921242, 0.021119004115462303, 0.029992638155817986, 0.011575892567634583, -0.02592707797884941, 0.00671304389834404, 0.04382041469216347, -0.01387646421790123, -0.007784209679812193, -0.0003510958340484649, 0.03478853777050972, -0.03695521503686905, -0.004929796326905489, -0.0054410346783697605, 0.004418558441102505, -0.00893449503928423, 0.017832472920417786, 0.0035330208484083414, -0.013170468620955944, 0.022762270644307137, -0.03734473139047623, 0.013292192481458187, 0.01840457320213318, 0.003362608142197132, -0.007625969126820564, 0.023772574961185455, 0.005845765117555857, 0.01705344393849373, 0.009494422934949398, 0.004665048327296972, 0.002268619369715452, -0.026073146611452103, -0.0045402818359434605, -0.011015964671969414, 0.0014393788296729326, 0.008557152934372425, -0.007455556653439999, -0.027485137805342674, -0.03369303047657013, 0.03262186422944069, -0.002393385861068964, -0.015276283025741577, 0.016931720077991486, 0.002868106821551919, -0.00425727479159832, 0.03045518696308136, -0.017272546887397766, 0.03298703208565712, 0.010717743076384068, -0.003913406282663345, 0.01705344393849373, 0.01072382926940918, 0.0238699521869421, -0.014655494131147861, -0.014180772937834263, 0.015921417623758316, -0.0350806750357151, 0.028872784227132797, 0.031769800931215286, -0.006293098442256451, 0.006280926056206226, -0.0030202611815184355, -0.03839155286550522, 0.0007912018918432295, -0.01450942549854517, -0.06071561574935913, 0.016907375305891037, 0.0021134219132363796, 0.002773771295323968, -0.003386952681466937, 0.03138028457760811, 0.0076746586710214615, -0.003362608142197132, 0.00440638605505228, 0.004476376809179783, -0.0035604084841907024, -0.013085261918604374, -0.03617618605494499, -0.022652719169855118, -0.0441855825483799, 0.009196200408041477, -0.019974805414676666, 0.03861065208911896, -0.018842777237296104, 0.04343089833855629, -0.020327802747488022, 0.010924672707915306, -0.014363357797265053, -0.006524372845888138, -0.014996319077908993, 0.006217021029442549, 0.013097434304654598, 0.006950404495000839, -0.0004975443007424474, 0.00048537194379605353, -0.00027311680605635047, 0.012245371006429195, 0.0030522134620696306, 0.02575666457414627, -0.03924361616373062, -0.01674913614988327, -0.018988845869898796, 0.009110994637012482, 0.011125516146421432, 0.01237318105995655, -0.05083167925477028, 0.006293098442256451, 0.012367094866931438, -0.014655494131147861, -0.0011419174261391163, 0.0044489894062280655, -0.01956094615161419, -0.016615239903330803, -0.05282794311642647, -0.0036577873397618532, -0.01414425577968359, 0.019439222291111946, 0.003965138923376799, 0.01702909916639328, 0.011381135322153568, -0.0048598055727779865, 0.005416689906269312, 0.021045971661806107, -0.0468391515314579, -0.003718649037182331, -0.0002599935105536133, -0.02232406660914421, -0.013742568902671337, -0.03834286332130432, -0.00923271756619215, -0.009110994637012482, 0.0036730028223246336, -0.007327747065573931, -0.01891581155359745, -0.0037247352302074432, 0.011162033304572105, -0.03284096717834473, -0.030942080542445183, 0.02046169899404049, -0.029116230085492134, -0.010176073759794235, -0.03734473139047623, -0.0157631766051054, -0.04569495469331741, -0.0030963383615016937, -0.017187340185046196, 0.005730127915740013, -0.01013347040861845, 0.051805466413497925, -0.01925663650035858, 0.03352261707186699, -0.006986921653151512, -0.051805466413497925, -0.02651135064661503, -0.009451819583773613, -0.0021164650097489357, 0.03663873299956322, 0.026267902925610542, -0.005991832818835974, 0.05058823153376579, -0.0006687177810817957, 0.005699696950614452, -0.026803486049175262, 0.007662486284971237, -0.02071731723845005, -0.026584384962916374, -0.031428974121809006, -0.026048801839351654, 0.007327747065573931, -0.012671402655541897, -0.00965266302227974, 0.011843684129416943, 0.013803429901599884, -0.00886754784733057, 0.006347873713821173, 0.014302495867013931, 0.0036030118353664875, -0.011454169638454914, 0.006853025872260332, -0.005766644608229399, 0.039170581847429276, -0.001708691823296249, 0.03276793286204338, -0.019098397344350815, 0.008216327987611294, -0.018526297062635422, 0.003742993576452136, -0.018952328711748123, 0.012166250497102737, -0.015300627797842026, -0.009238803759217262, 0.023626506328582764, 0.009786559268832207, -0.004394213669002056, -0.0014758958714082837, 0.013754741288721561, 0.044088203459978104, 0.015020663850009441, 0.009975230321288109, 0.014874596148729324, 0.007741606328636408, 0.025464529171586037, -0.015629280358552933, 0.009250976145267487, 0.008228499442338943, 0.01198975183069706, -0.019183604046702385, -0.03047953173518181, 0.004321179818361998, 0.0005876956274732947, -0.03281662240624428, -0.01629875972867012, -0.01342608779668808, 0.0033686943352222443, 0.011228981427848339, 0.008946667425334454, 0.014618976972997189, -0.015994450077414513, 0.08579063415527344, -0.06227367743849754, -0.010395175777375698, -0.019767874851822853, -0.019500084221363068, -0.012184509076178074, -0.003642571857199073, -0.024527259171009064, 0.023346543312072754, -0.03766120970249176, -0.00923271756619215, 0.017710750922560692, -0.019354015588760376, -0.01604313962161541, 0.04345524311065674, -0.014217290095984936, -0.023906469345092773, -0.011740218847990036, 0.025707975029945374, 0.03191586956381798, -0.026340937241911888, 0.0096830939874053, 0.021678932011127472, 0.04365000128746033, 0.004567669704556465, -0.008843203075230122, 0.03464247286319733, -0.014351185411214828, -0.03189152479171753, -0.005958359222859144, -0.02685217559337616, 0.018258506432175636, 0.043138761073350906, 0.014558115042746067, 0.013231330551207066, -0.04019305855035782, -0.021179866045713425, 0.03118552826344967, 0.015324972569942474, 0.006007048301398754, 0.052341047674417496, 0.00226253317669034, -0.014168600551784039, -0.003429556032642722, 0.010699484497308731, 0.016225725412368774, -0.01651786081492901, -0.0021727620624005795, 0.01180716697126627, -0.014558115042746067, 0.027144310995936394, -0.02277444303035736, -0.019232291728258133, -0.007638141512870789, 0.007059955503791571, -0.00567839527502656, -0.010602105408906937, -0.049297966063022614, 0.018234161660075188, -0.036127496510744095, 0.026706106960773468, 0.011551547795534134, -0.02879974991083145, 0.002971571870148182, 0.006816508714109659], [0.00318667059764266, 0.008635682985186577, 0.021266017109155655, -0.0046668886207044125, 0.0013662930577993393, 0.022881975397467613, -0.011188898235559464, 0.030561011284589767, 0.03187963366508484, 0.02732909470796585, -0.015810539945960045, 0.026152675971388817, 0.057347144931554794, 0.033586084842681885, -0.03319825604557991, -0.009081687778234482, 0.030561011284589767, 0.010994982905685902, 0.05121942609548569, 0.0367145836353302, 0.04778066650032997, 0.01185467280447483, -0.00855165347456932, -0.011531481519341469, -0.023295661434531212, 0.005006240215152502, -0.03655945137143135, 0.003803966799750924, 0.04716014117002487, -0.003464615438133478, 0.06417295336723328, -0.023360298946499825, 0.0457380972802639, 0.03800734877586365, 0.021253088489174843, 0.02570020779967308, -0.06830980628728867, 0.016392285004258156, -0.004983616527169943, -0.035008128732442856, -0.01504780724644661, 0.021201377734541893, -0.011007910594344139, -0.0367145836353302, -0.03906741738319397, 0.06613796204328537, 0.02820817567408085, -0.06975770741701126, -0.02086525969207287, 0.04555710777640343, -0.0466688871383667, -0.006851665209978819, 0.010917416773736477, 0.02453671768307686, 0.008377130143344402, 0.030380023643374443, -0.01248166523873806, -0.0033127153292298317, 0.0555889792740345, -0.015513204038143158, 0.0028457033913582563, -0.012720827013254166, 0.018538277596235275, 0.06003609672188759, 0.021563353016972542, -0.019688840955495834, 0.022894904017448425, 0.02218388207256794, -0.05150383710861206, 0.01387138944119215, 0.025674352422356606, 0.011098404414951801, -0.04279058799147606, -0.015164156444370747, -0.030586866661906242, 0.03278457000851631, 0.014802182093262672, 0.019003674387931824, -0.0022494145669043064, -0.009152790531516075, 0.01253337599337101, -0.007026188541203737, 0.03565451502799988, 0.012934133410453796, 0.031129829585552216, 0.002852167235687375, -0.07420482486486435, 0.00813150405883789, -0.03635260835289955, -0.010458485223352909, 0.007840631529688835, 0.06365584582090378, -0.008700321428477764, 0.051736533641815186, 0.009773318655788898, 0.016482779756188393, 0.03940353915095329, -0.013548198156058788, -0.02113674022257328, 0.04341111332178116, 0.06572427600622177, -0.046539612114429474, 0.007136073894798756, -0.042609598487615585, 0.006489690393209457, -0.07534246146678925, -0.04196321591734886, 0.03508569672703743, 0.00629254337400198, -0.02055499516427517, 0.00403989665210247, -0.0008281788323074579, 0.0009889667853713036, 0.06624138355255127, 0.038317613303661346, 0.03203476592898369, -0.01678011566400528, -0.004964224994182587, -0.008700321428477764, -0.025312377139925957, 0.08971802890300751, 0.001979549415409565, 0.012410563416779041, -0.06060491502285004, -0.014983169734477997, 0.018848542124032974, -0.0750839039683342, 0.010342136025428772, -0.02963021956384182, -0.04493657872080803, 0.04136854410171509, -0.10197345912456512, 0.04894415661692619, 0.006774099078029394, 6.51433365419507e-05, -0.006121251732110977, 0.02350250445306301, -0.001855120644904673, 0.002165384590625763, -0.020619632676243782, -0.01211322657763958, 0.03136252611875534, 0.0452209897339344, -0.0031446556095033884, -0.00023592996876686811, 0.016224225983023643, -0.0367145836353302, 0.06174255162477493, 0.006308702751994133, -0.006195585709065199, -0.033017270267009735, -0.005545970518141985, 0.016275936737656593, -0.002000556793063879, -0.019585419446229935, 0.0026453244499862194, 0.028466729447245598, 0.010258105583488941, 0.021834833547472954, 0.03487885370850563, -0.04392822086811066, -0.035318393260240555, 0.015513204038143158, -0.011576727963984013, 0.029397521167993546, -0.025842411443591118, -0.019546637311577797, -0.01793067716062069, -0.0551752932369709, 0.004372784402221441, -0.0027746011037379503, -0.041187554597854614, 0.019443215802311897, 0.004983616527169943, -0.007911734282970428, -0.030819565057754517, -0.03604234382510185, 0.011848209425807, -0.024110104888677597, -0.0022542623337358236, 0.026398301124572754, 0.021408220753073692, -0.03187963366508484, -0.044031642377376556, -0.021640919148921967, 0.011686613783240318, 0.022158026695251465, -0.0012459041317924857, -0.025183100253343582, 0.0036876178346574306, 0.006496154237538576, -0.0005853810580447316, 0.005804523825645447, 0.04227348044514656, -0.001099659944884479, -0.016107875853776932, -0.015926890075206757, -0.02647586725652218, 0.033586084842681885, 0.003496934659779072, -0.0027309702709317207, -0.042609598487615585, -0.0020490356255322695, 0.008280172944068909, 0.0016458539757877588, -0.04651375487446785, 0.008228462189435959, -0.006586647592484951, 0.037464387714862823, 0.0052518658339977264, 0.019055385142564774, -0.03462029993534088, -0.02024473063647747, 0.0135869812220335, -0.02942337654531002, 0.021989965811371803, 0.05910530686378479, 0.005384374409914017, 0.021783122792840004, 0.03534425050020218, -0.019184662029147148, 0.009960769675672054, 0.04374723508954048, 0.01703866943717003, 0.011628438718616962, 0.013341355137526989, 0.013263789005577564, -0.027872055768966675, -0.037050701677799225, -0.040101632475852966, -0.031595226377248764, 0.01460826676338911, 0.0035971240140497684, -0.008383593522012234, 0.010400310158729553, 0.04175637289881706, 0.002297893399372697, -0.03759366273880005, 0.0008903932757675648, -0.0036585305351763964, 0.0008079793769866228, -0.028492584824562073, -0.0041530136950314045, -0.02060670591890812, -0.004110998939722776, -0.04144610837101936, -0.033586084842681885, -0.0018341131508350372, 0.03412904962897301, -0.003891228698194027, 0.02743251621723175, 0.02769106812775135, -0.005788363981992006, -0.022959541529417038, -0.0038783010095357895, 0.06789612025022507, 0.07063678652048111, -0.012093835510313511, 0.06929230690002441, -0.012552767060697079, 0.010839851573109627, 0.004780006129294634, -0.05243462696671486, 0.031233251094818115, -0.06205281615257263, -0.052357062697410583, 0.03182792291045189, 0.028544295579195023, -0.01040677446871996, 0.05233120545744896, -0.040773872286081314, 0.048840735107660294, -3.7419544241856784e-05, -0.0041530136950314045, -0.022326085716485977, -0.008894236758351326, 0.01924929954111576, 0.015474420972168446, -0.025299450382590294, 0.061380576342344284, -0.06500032544136047, 0.01211322657763958, 0.057760827243328094, 0.0018308812286704779, 0.0024077785201370716, 0.008461159653961658, 0.011783570982515812, -0.014828037470579147, -0.03193134441971779, 0.04385065659880638, 0.036947280168533325, -0.005675246939063072, 0.001603838987648487, 0.0359906330704689, 0.018680483102798462, 0.0024998881854116917, -0.01465997751802206, -0.03397391736507416, -0.014453134499490261, 0.011020838283002377, -0.01625008136034012, 0.010581297799944878, -0.010031871497631073, 0.026346590369939804, -0.03446516767144203, 0.0282598864287138, -0.01132463850080967, 0.022623421624302864, -0.02963021956384182, -0.046125926077365875, -0.06381097435951233, 0.020231803879141808, -0.03955867141485214, 0.002971748122945428, 0.03643017262220383, -0.03549938276410103, -0.032655294984579086, 0.051529690623283386, 0.04578980803489685, -9.074617992155254e-05, 0.02548043802380562, 0.005009471904486418, 0.03213818743824959, -0.016327647492289543, 0.0027519776485860348, 0.03555109351873398, 0.041989073157310486, 0.019430287182331085, 0.01465997751802206, -0.03950696066021919, -0.013231470249593258, 0.002328596543520689, 0.04509171098470688, -0.0042241159826517105, -0.013625764288008213, -0.04860803857445717, 0.00015967691433615983, 0.019313938915729523, -0.03772294148802757, -0.00640889210626483, 0.0281564649194479, -0.004973920993506908, 0.008092720992863178, 0.029552653431892395, -0.004838180262595415, 0.007233031094074249, 0.02312760055065155, 0.0189261082559824, 0.0272773839533329, 0.008506407029926777, 0.02065841667354107, 0.014091160148382187, -0.05039205774664879, 0.013044019229710102, -0.05450305715203285, -0.03601648658514023, 0.035525236278772354, 0.01820215955376625, -0.012119690887629986, 0.0465654656291008, -0.04695329815149307, -0.01258508674800396, 0.00954708456993103, 0.022688060998916626, 0.00016371681704185903, 0.03247430548071861, -0.025945832952857018, -0.035628657788038254, 0.012145545333623886, 0.01887439750134945, 0.06432808190584183, 0.009275603108108044, 0.04560881853103638, 0.01281778421252966, 0.010600688867270947, -0.019895683974027634, 0.00046499213203787804, 0.022313158959150314, 0.009508301503956318, 0.009475981816649437, 0.016224225983023643, 0.033741217106580734, 0.03120739571750164, -0.01211322657763958, 0.01062008086591959, 0.07927247136831284, -0.03304312378168106, -0.02370934560894966, -0.018809759989380836, -0.019378576427698135, -0.022377796471118927, 0.01290181465446949, -0.004107767250388861, -0.016560345888137817, 0.033534374088048935, -0.011964558623731136, 0.023954972624778748, 0.08506406843662262, -0.0009307922446168959, -0.05812280252575874, 0.01471168827265501, -0.0031381917651742697, 0.020490355789661407, -0.009243284352123737, 0.012055052444338799, 0.022985396906733513, -0.04079972580075264, -0.022248519584536552, 0.053623974323272705, 0.031440094113349915, 0.008260780945420265, 0.021149666979908943, 0.013076337985694408, 0.03555109351873398, 0.015383927151560783, -0.0051839957013726234, -0.0031333439983427525, 0.02470477670431137, 0.019831044599413872, 0.00041065551340579987, 0.01544856559485197, 0.0023366762325167656, -0.060811758041381836, 0.004870499484241009, -0.028130609542131424, 0.003917084075510502, 0.008506407029926777, -0.03555109351873398, -0.012029197067022324, -0.040308475494384766, 0.0015795996878296137, -0.016172515228390694, 0.010490803979337215, 0.03922254964709282, -0.021692629903554916, -0.009753926657140255, 0.016017382964491844, -0.028389163315296173, 0.02423938177525997, -0.008002227172255516, -0.016547417268157005, 0.011079013347625732, -0.009301458485424519, 0.004482669290155172, -0.0095664756372571, -0.05951899290084839, -0.04488486796617508, 0.006499385926872492, -0.0037199370563030243, -0.022726843133568764, -0.02575191855430603, -0.04478144645690918, -0.030431734398007393, 0.005859466269612312, -0.027768634259700775, -0.031336672604084015, 0.01004479918628931, -0.019960321485996246, 0.04211834818124771, 0.010497268289327621, 0.041885651648044586, 0.044600460678339005, -0.01940443180501461, 0.03420661389827728, 0.03632675111293793, 0.05817451328039169, -0.013315499760210514, 0.003202830208465457, 0.018758049234747887, 0.0275359358638525, 0.017374787479639053, -0.04074801504611969, -0.025868266820907593, 0.03314654529094696, -0.024795271456241608, -0.0365077406167984, -0.010794604197144508, -0.018434857949614525, -0.07803141325712204, -0.0007344532641582191, -0.0024691850412636995, -0.012507520616054535, -0.010930344462394714, -0.007084363140165806, 0.045634675770998, 0.01323793362826109, 0.05553726851940155, 0.04855632781982422, -0.048168499022722244, -0.02633366361260414, -0.050159357488155365, 0.011260000057518482, 0.04392822086811066, -0.013561125844717026, -0.029966339468955994, -0.04537612199783325, 0.013897244818508625, 0.03229331970214844, 0.030173180624842644, -0.016961103305220604, 0.0019472303101792932, -0.0565197728574276, -0.009689288213849068, 0.02544165402650833, 0.06701704114675522, 0.028880413621664047, -0.03472372144460678, 0.02161506377160549, 0.0009623034275136888, -0.010910953395068645, -0.04366966709494591, 0.025286521762609482, 0.03350852057337761, 0.0033838176168501377, -0.010206395760178566, -0.0007146577700041234, 0.008719713427126408, 0.024058394134044647, -0.023838622495532036, 0.019598348066210747, 0.02957850880920887, 0.002530591329559684, -0.02177019603550434, -0.006987405475229025, -0.01237824372947216, 0.022041676566004753, 0.005749580916017294, -0.09933621436357498, -0.009314386174082756, 0.022429507225751877, -0.028854558244347572, -0.012210183776915073, -0.014272147789597511, 0.029294099658727646, 0.019055385142564774, 0.003577732713893056, -0.016948174685239792, 0.0185124222189188, -0.03125910460948944, -0.025183100253343582, 0.014065304771065712, -0.017749691382050514, -0.01935272105038166, -0.027173962444067, 0.0021055941469967365, -0.0035551092587411404, 0.05271903797984123, -0.024304019287228584, -0.012287749908864498, 0.02496333047747612, -0.027613501995801926, 0.0045731631107628345, 0.01036152709275484, -0.0045990184880793095, 0.0117447879165411, 0.0027649053372442722, 0.039610378444194794, -0.02045157365500927, 0.011867600493133068, 0.025351161137223244, 0.025945832952857018, -0.005772204603999853, -0.002255878411233425, -0.025570930913090706, -0.0067417798563838005, 0.036792147904634476, -0.024161815643310547, -0.010264569893479347, 0.040411897003650665, -0.03136252611875534, -0.051477979868650436, 0.02810475416481495, -0.005310040432959795, 0.0020684271585196257, 0.061173733323812485, -0.03813662752509117, 0.027561791241168976, -0.024562573060393333, -0.01460826676338911, 0.027716923505067825, 0.006428283639252186, 0.0016902928473427892, 0.021847762167453766, -0.01568126305937767, -0.022313158959150314, 0.011783570982515812, 0.002456257352605462, -0.028518440201878548, -0.04397993162274361, 0.028957979753613472, 0.00209751445800066, 0.022403651848435402, -0.0005078150425106287, 0.0008112112991511822, 0.004214420448988676, 0.058019381016492844, -0.03570622578263283, 0.020529139786958694, -0.024691849946975708, 0.02077476494014263, -0.012100298888981342, -0.008318955078721046, -8.591093319409993e-06, 0.005051487125456333, 0.018745120614767075, -0.03180206939578056, -0.014647049829363823, -0.01824094168841839, 0.009999552741646767, 0.020645488053560257, 0.003952634986490011, -0.01206151582300663, 0.017762618139386177, -0.007737210486084223, -0.016495706513524055, 0.016482779756188393, -0.033689506351947784, -0.015409782528877258, -0.010801068507134914, 0.020800620317459106, -0.016534490510821342, 0.009172181598842144, -0.01893903687596321, -0.012345924973487854, -0.029035545885562897, 0.013780895620584488, 0.010742893442511559, -0.038783010095357895, 0.023037107661366463, 0.0017290757969021797, -0.006890447810292244, 0.030664432793855667, -0.014944386668503284, 0.030328312888741493, -0.012449345551431179, -0.015021951869130135, 0.019158806651830673, 0.005542738363146782, 0.009340241551399231, 0.010374454781413078, 0.03387049585580826, 0.0065737199038267136, 0.02769106812775135, 0.01248166523873806, 0.053623974323272705, 0.0450141467154026, 0.0367145836353302, -0.012824248522520065, 0.01945614255964756, -0.021317727863788605, 0.04684987664222717, -0.0017807865515351295, 0.014091160148382187, -0.05869162082672119, 0.010471412912011147, -0.02171848528087139, -0.0055750575847923756, 0.029397521167993546, 0.03643017262220383, -0.0016523178201168776, -0.033172402530908585, 0.018602916970849037, -0.007478657178580761, -0.011447452008724213, -0.012779001146554947, 0.03410319238901138, 0.01972762495279312, -0.032603584229946136, -0.024950401857495308, -0.016793042421340942, -0.0069098393432796, 0.006412124261260033, 0.04069630429148674, -0.014647049829363823, -0.0003692465543281287, 0.011117796413600445, -0.056726615875959396, 0.06391439586877823, -0.03992064297199249, 0.004382479935884476, 0.009379024617373943, -0.02087818644940853, -0.004960993304848671, 0.05072817578911781, -0.027044685557484627, 0.01083338726311922, 0.0071166823618113995, -0.036947280168533325, 0.013961883261799812, -0.02071012742817402, 0.0027164265047758818, 0.05543384701013565, 0.03428418189287186, 0.0009388719918206334, -0.028466729447245598, -0.02642415650188923, -0.024032538756728172, -0.01703866943717003, -0.015319288708269596, -0.03131081536412239, -0.02060670591890812, -0.006683605257421732, -0.005187227390706539, -0.04555710777640343, -0.0018276493065059185, 0.016637910157442093, -0.01179649867117405, 0.016702549532055855, -0.007039116229861975, 0.0010010864352807403, -0.04504000023007393, 0.02417474240064621, -0.008254317566752434, -0.004065752029418945, -0.07084362953901291, 0.014621194452047348, -0.04121341183781624, 0.00035389495315030217, 0.02370934560894966, 0.019856899976730347, -0.053727395832538605, 0.025053823366761208, 0.03366365283727646, -0.0060178302228450775, 0.005991974845528603, -0.035421814769506454, -0.013858461752533913, -0.020542066544294357, -0.01491853129118681, 0.033379241824150085, 0.0071166823618113995, -0.031957197934389114, 0.003926779609173536, -0.00509996572509408, 0.01746528223156929, 0.017232583835721016, -0.01986982859671116, 0.013755040243268013, -0.0072976695373654366, 0.014323858544230461, -0.010704110376536846, -0.04747040197253227, 0.0008952411590144038, 0.006544632837176323, -0.009314386174082756, 0.0063248625956475735, -0.005578289739787579, 0.028415018692612648, -0.03942939266562462, 0.008137968368828297, 0.01279839314520359, 0.010380919091403484, -0.0006120443576946855, -0.02769106812775135, 0.010154685005545616, -0.025674352422356606, -0.002926501212641597, 0.01397481095045805, 0.011130724102258682, 0.016224225983023643, 0.019313938915729523, 0.011815889738500118, 0.03193134441971779, 0.022726843133568764, 0.025312377139925957, 0.0033838176168501377, -0.028699427843093872, -0.011628438718616962, -0.00025350353098474443, 0.008836062625050545, -0.033844638615846634, 0.013302572071552277, 0.015138301067054272, 0.024213526397943497, -0.017452353611588478, -0.005025631748139858, -0.05300344526767731, -0.029397521167993546, -0.03314654529094696, 0.004408335313200951, 0.03979136794805527, -0.004421263001859188, -0.03025074675679207, 0.0136904027312994, 0.013961883261799812, 0.013431848958134651, -0.004411567468196154, 0.010982055217027664, 0.04366966709494591, 0.005823915358632803, -0.005555666051805019, -0.02024473063647747, -0.02019301988184452, -0.04747040197253227, -0.013936027884483337, 0.0034258326049894094, 0.006631894502788782, -0.029294099658727646, 0.015668336302042007, -0.014117015525698662, 0.03366365283727646, -0.0027988404035568237, 0.022946614772081375, 0.056106086820364, 0.04506585747003555, 0.00011069317406509072, -0.03288799151778221, -0.006896911654621363, 0.04710843041539192, -0.03787807375192642, -0.014931458979845047, 0.013677475042641163, -0.027354950085282326, 0.036843858659267426, 0.024148887023329735, -0.012662652879953384, -0.023980828002095222, 0.021253088489174843, -0.032707005739212036, -0.011292319744825363, 0.020012032240629196, -0.03482714295387268, -0.007200711872428656, 0.00012877171684522182, 0.011550872586667538, 0.005507187452167273, -0.050417911261320114, 0.01316683180630207, -0.003393513383343816, 0.011440987698733807, 0.004123926628381014, 0.01014822069555521, 0.05274489149451256, 0.0007902038050815463, -0.009954305365681648, 0.021278943866491318, -0.02050328440964222, -0.03288799151778221, 0.012100298888981342, 0.007517439778894186, 0.036740437150001526, -0.004343696869909763, 0.008900701068341732, -0.00036056077806279063, -0.0029168054461479187, 0.05910530686378479, 0.03387049585580826, -0.0058788578025996685, -0.04369552433490753, 0.04147196561098099, 0.006179426331073046, -0.028027188032865524, 0.009139862842857838, -0.01940443180501461, 0.053365420550107956, -0.004673352465033531, -0.013858461752533913, 0.017232583835721016, -0.035473525524139404, 0.022093387320637703, 0.006509081926196814, 0.0008051514159888029, -0.012643260881304741, 0.03262943774461746, -0.008299564011394978, -0.02192532829940319, 0.02171848528087139, 0.021627992391586304, 0.004191796761006117, 0.02165384776890278, 0.04537612199783325, 0.01279839314520359, -0.015215867199003696, -0.01195809431374073, -0.032862138003110886, -0.05256390571594238, 0.026359518989920616, 0.03019903600215912, 0.0031850547529757023, 0.03865373134613037, -0.03751609846949577, 0.032707005739212036, 0.00748512102290988, 0.009488909505307674, -0.04253203421831131, -0.007724282797425985, -0.016431069001555443, 0.03622332960367203, 0.004960993304848671, 0.0020781229250133038, 0.0114086689427495, 0.010510195977985859, 0.020270586013793945, -0.014595339074730873, 0.02108502946794033, -0.016689620912075043, 0.0020037887152284384, -0.02008959837257862, -0.026605144143104553, 0.01919758878648281, -0.023683490231633186, -0.021886544302105904, -0.03839517757296562, 0.008842526003718376, -0.02533823251724243, -0.0060469177551567554, 0.011382813565433025, -0.012630333192646503, 0.0022995092440396547, 0.00818321481347084, 0.021679703146219254, -0.017529919743537903, -0.024743560701608658, -0.01856413297355175, 0.012229575775563717, 0.009857348166406155, 0.010820459574460983, 0.004582859110087156, -0.0013961882796138525, 0.0279496219009161, 0.017336005344986916, 0.016056165099143982, -0.03079370968043804, 0.003577732713893056, -0.022468289360404015, -0.0037522560451179743, -0.04925442114472389, -0.003568036947399378, 0.019313938915729523, -0.010452020913362503, -0.008700321428477764, 0.061483997851610184, -0.01085277833044529, 0.032060619443655014, 0.00414331816136837, -0.015009024180471897, 0.0021362975239753723, 0.017336005344986916, -0.010969127528369427, -0.0562095083296299, -0.005171068012714386, -0.020942825824022293, -0.02652757801115513, -0.018589988350868225, -0.02978535182774067, -0.019843973219394684, 0.01683182641863823, 0.033637795597314835, 0.0005506379529833794, -0.0029943715780973434, 0.011311710812151432, -0.028466729447245598, 0.034387603402137756, -0.02286904864013195, -0.016818897798657417, 0.02113674022257328, 0.03244845196604729, 0.01767212525010109, 0.013250861316919327, 0.010238714516162872, 0.0279496219009161, 0.004582859110087156, 0.019262228161096573, -0.013664547353982925, 0.04504000023007393, 0.01604323834180832, -0.041394397616386414, -0.006499385926872492, 0.005510419141501188, 0.016120804473757744, -0.011150115169584751, 0.0019763174932450056, 0.05832964554429054, 0.0365077406167984, 0.015202939510345459, 0.004854340106248856, -0.0064347474835813046, -0.009799174033105373, 0.041290976107120514, -0.011925775557756424, 0.018861470744013786, 0.012145545333623886, 0.025105534121394157, 0.033172402530908585, -0.021640919148921967, 0.029862917959690094, 0.006395964417606592, 0.03288799151778221, -0.029656074941158295, 0.00807332992553711, -0.011292319744825363, 0.020994536578655243, 0.0005603336612693965, 0.04351453483104706, -0.014685832895338535, 0.00419502891600132, 0.04390236735343933, 0.0011933855712413788, 0.03601648658514023, -0.0030864812433719635, -0.0031915183644741774, 0.0013380137970671058, -0.01090448908507824, 0.03252601623535156, -0.014207509346306324, -0.06375926733016968, 0.007032652385532856, 0.0006439595599658787, -0.02652757801115513, 0.0005599297001026571, 0.02339908294379711, -0.019107095897197723, 0.020916970446705818, 0.004117462784051895, -0.0374385304749012, -0.030974697321653366, 0.00350663042627275, -0.0045990184880793095, -0.03030245751142502, -0.009088152088224888, 0.03345680981874466, 0.011880528181791306, 0.007620861288160086, -0.012455809861421585, 0.016456924378871918, -0.04341111332178116, 0.028053043410182, 0.01830558106303215, -0.005028863437473774, 0.015668336302042007, 0.00568817462772131, -0.019856899976730347, 0.004385712090879679, 0.02249414473772049, 0.0452209897339344, 0.010335671715438366, -0.010645936243236065, -0.009773318655788898, -0.011020838283002377, 0.006522009614855051, 0.019003674387931824, 0.040308475494384766, -0.026204386726021767, -0.0034419919829815626, -0.03973965719342232, -0.013140976428985596, 0.03518911823630333, 0.03428418189287186, 0.010678254999220371, -0.0006661789957433939, -0.02365763485431671, 0.02722567319869995, -0.04703086242079735, 0.0021136740688234568, -0.04116170108318329, -0.022726843133568764, 0.011996877379715443, -0.005494259763509035, -0.006030757911503315, 0.0191329512745142, 0.04907343536615372, -0.012436418794095516, -0.017219657078385353, -0.02983706258237362, 0.044910725206136703, -0.009379024617373943, -0.03999821096658707, -0.002575838239863515, 0.01583639532327652, 0.006806418299674988, -0.026346590369939804, -0.0113052474334836, 0.026811987161636353, 0.005587985273450613, 0.023088818415999413, 0.014905603602528572, -0.006383036728948355, -0.008467623963952065, -0.007426946423947811, -0.0056429277174174786, 0.0270705409348011, -0.006492922082543373, -0.01062008086591959, -0.0038686052430421114, -0.040049921721220016, -0.010962664149701595, -0.011421596631407738, 0.008926556445658207, -0.0019084472442045808, -0.0012515600537881255, 0.044238485395908356, 0.001901983399875462, -0.011790035292506218, 0.007459265645593405, 0.0185124222189188, 0.006127715576440096, 0.004256435204297304, 0.01667669415473938, 0.04279058799147606, -0.02396789938211441, 0.011014374904334545, -0.0031850547529757023, -0.042299333959817886, 0.0016531257424503565, 0.04196321591734886, -0.028596006333827972, -0.024976257234811783, 0.01904245838522911, -0.00854519009590149, 0.012779001146554947, 0.009172181598842144, -0.0037199370563030243, 0.02926824428141117, -0.02081354893743992, 0.013625764288008213, -0.00881020724773407, -0.014272147789597511, -0.0066706775687634945, 0.015590770170092583, -0.0063248625956475735, -0.010594225488603115, -0.016069093719124794, -0.015383927151560783, 0.026837842538952827, 0.0046410332433879375, 0.022739771753549576, -0.010484340600669384, 0.03136252611875534, -0.03431003540754318, -0.0015181931667029858, -0.004056056495755911, -0.02475648745894432, -0.03361194208264351, 0.008209070190787315, -0.0231793113052845, 0.021472860127687454, 0.02558385767042637, -0.047547969967126846, 0.004802629351615906, 0.023773984983563423, 0.016405213624238968, 0.02065841667354107, 0.01407823245972395, 0.011977486312389374, -0.02585534006357193, 0.0003904560289811343, -0.012630333192646503, 0.08397814631462097, -0.007905269972980022, -0.001767858862876892, 0.0364043191075325, 0.03257772698998451, -0.003315947251394391, 0.03930011764168739, -0.007989299483597279, 0.02412303164601326, -0.004237043671309948, -0.01274668239057064, 0.024459151551127434, -0.013664547353982925, 0.0275359358638525, 0.0041530136950314045, 0.006638358347117901, 0.005161372013390064, -0.020024960860610008, 0.04599664732813835, 0.011583192273974419, 0.027406660839915276, -0.032965559512376785, 0.022429507225751877, -0.028776992112398148, 0.020102526992559433, -0.04747040197253227, -0.025971688330173492, 8.58983039506711e-05, -0.025777773931622505, 0.03131081536412239, 0.015590770170092583, -0.013179759494960308, -0.034387603402137756, -0.010898025706410408, 0.008344810456037521, -0.022222664207220078, -0.033482663333415985, -0.017232583835721016, 0.022907830774784088, -0.0070908269844949245, 0.0013396297581493855, -0.000568413466680795, -0.010910953395068645, -0.011473307386040688, -0.015875179320573807, 0.010652399621903896, -0.005242170300334692, -0.013987738639116287, -0.00802161917090416, -0.025105534121394157, 0.003393513383343816, 0.01662498340010643, -0.012546303682029247, 0.010801068507134914, -0.029138967394828796, -0.008325419388711452, 0.01678011566400528, -0.005329431965947151, -0.0020393398590385914, 0.018344363197684288, -0.02244243398308754, 0.027044685557484627, -0.016715476289391518, -0.012436418794095516, -0.011615511029958725, -0.040101632475852966, -0.012707899324595928, 0.009825029410421848, 0.02060670591890812, 0.008777887560427189, -0.0007542487583123147, -0.021330654621124268, -0.005187227390706539, 0.020735982805490494, 0.030767854303121567, 0.011971022002398968, -0.0013089266140013933, 0.016327647492289543, -0.01025164220482111, 0.0061826580204069614, -0.005187227390706539, -0.01269497163593769, 0.01604323834180832, 0.0377487950026989, -0.024665994569659233, -0.021149666979908943, -0.03405148163437843, 0.03565451502799988, -0.014750471338629723, 0.037050701677799225, 0.0016838290030136704, -0.024407440796494484, 0.003674690145999193, -0.022274374961853027, 0.018796831369400024, -0.006140643265098333, -0.01988275535404682, -0.04374723508954048, -0.0016498938202857971, 0.01222311146557331, 0.00647676270455122, 0.0060469177551567554, -0.016172515228390694, 0.007039116229861975, 0.003461383515968919, -0.016004454344511032, 0.02029644139111042, 0.008836062625050545, -0.016133731231093407, -0.04219591245055199, -0.01856413297355175, -0.020024960860610008, 0.008668002672493458, -0.01935272105038166, -0.033224109560251236, -0.009437198750674725, 0.03120739571750164, 0.014504845254123211, 0.026630999520421028, 0.022054605185985565, 0.022946614772081375, -0.03089713118970394, 0.022261448204517365, -0.010367991402745247, 0.020477429032325745, -0.019960321485996246, 0.016547417268157005, 0.048789024353027344, 0.019339794293045998, -0.014504845254123211, -0.01756870374083519, -0.0008370666182599962, -0.0019262228161096573, -0.009721607901155949, 0.0031074886210262775, -0.00016816071001812816, -0.017594559118151665, 0.015694191679358482, 0.010982055217027664, -0.0025726063176989555, -0.007375235669314861, 0.019805189222097397, -0.023218095302581787, -0.026708565652370453, -0.025506293401122093, 0.0182538703083992, -0.015720047056674957, -0.011440987698733807, -0.0030606258660554886, -0.0019407664658501744, 0.007129610050469637, 0.013431848958134651, -0.024937475100159645, 0.028337452560663223, -0.007310597226023674, -0.030173180624842644, 0.009702215902507305, -0.0045634675770998, 0.044083353132009506, -0.00642505194991827, -0.028621861711144447, 0.009689288213849068, -0.010245177894830704, -0.014802182093262672, -0.0062957750633358955, 0.033689506351947784, -0.00909461546689272, -0.002082970691844821, 0.005122588947415352, -0.014052377082407475, -0.009159253910183907, -0.021330654621124268, -0.004479437600821257, 0.019533708691596985, -0.0032933237962424755, 0.017374787479639053, 0.020529139786958694, 0.013328427448868752, -0.03539596125483513, 0.010225786827504635, -0.008564581163227558, 0.01573297381401062, -0.0029992193449288607, -0.003664994379505515, 0.0062537603080272675, -0.013225005939602852, -0.028621861711144447, -0.017814328894019127, 0.03125910460948944, 0.01321854256093502, 0.02831159718334675, -0.030767854303121567, 0.013393065892159939, -0.014983169734477997, 0.0038621413987129927, -0.010290425270795822, -0.018913181498646736, -0.004780006129294634, 0.005429621320217848, 0.004421263001859188, 0.030121469870209694, -0.01132463850080967, -0.009792709723114967, 0.0093596326187253, -0.020580850541591644, -0.019184662029147148, 0.03462029993534088, -0.009773318655788898, 0.010187003761529922, -0.027148107066750526, 0.03407733887434006, 0.00369084975682199, 0.015810539945960045, 0.00432753749191761, 0.04483315721154213, 0.020593777298927307, 0.030664432793855667, 0.04157538712024689, -0.0071813203394412994, -0.0373351089656353, -0.0014971857890486717, 0.04741869121789932, -0.02820817567408085, -0.025415798649191856, 0.02595876157283783, 0.02050328440964222, -0.005545970518141985, -0.011686613783240318, 0.012888886965811253, -0.03464615345001221, 0.024420367553830147, 0.0050191679038107395, 0.022196808829903603, 0.004146550316363573, -0.005966119468212128, 0.008157359436154366, 0.03324996680021286, 0.02381276711821556, 0.014233364723622799, -0.0014842581003904343, -0.021369438618421555, -0.014207509346306324, -0.018266797065734863, -0.026915408670902252, -0.0018324971897527575, 0.018072882667183876, -0.01281778421252966, -0.01972762495279312, -0.005245401989668608, -0.0014745623338967562, -0.0005526578752323985, 0.000634667812846601, -0.0034678473602980375, -0.02496333047747612, 0.024045465514063835, -0.026837842538952827, 0.011835281737148762, -0.006864592432975769, -0.0062505281530320644, -0.03948110342025757, 0.025881195440888405, -0.02166677452623844, 0.032060619443655014, 0.004140086472034454, 0.01998617686331272, 0.0450141467154026, -0.014724615961313248, -0.004220884293317795, -0.06256992369890213, 0.007937589660286903, 0.016353502869606018, -0.033482663333415985, 0.008415913209319115, -0.001793714240193367, -0.03462029993534088, 0.001573135843500495, -0.015926890075206757, -0.00309456093236804, -0.004479437600821257, 0.0010616849176585674, 0.01981811784207821, 0.03185378015041351, 0.03911912813782692, 0.003942939452826977, 0.03749024122953415, 0.031336672604084015, 0.005132284946739674, 0.04012748599052429, 0.004537612199783325, -0.032965559512376785, 0.028415018692612648, 0.014220437034964561, 0.021201377734541893, 0.01206151582300663, -0.005445780698210001, -0.01877097599208355, 0.006638358347117901, -0.0034743112046271563, -0.021563353016972542, -0.0005389222060330212, 0.0011594503885135055, 0.014569483697414398, 0.036921426653862, -0.0016224225983023643, -0.012934133410453796, 0.008700321428477764, -0.011175970546901226, 0.03381878510117531, 0.01604323834180832, -0.01824094168841839, -0.004485901445150375, 1.8968578388012247e-06, -0.014453134499490261, -0.02175726741552353, 0.017801402136683464, -0.012979380786418915, -0.024135960265994072, 0.009805637411773205, 0.04377308860421181, 0.03973965719342232, 0.013393065892159939, 0.0024239381309598684, -0.0229207593947649, 0.0018858237890526652, 0.01590103469789028, -0.03524082899093628, 0.023360298946499825, 0.011059621348977089, 0.00493190623819828, 0.0090235136449337, 0.02758764661848545, -0.010891561396420002, 0.007129610050469637, -0.028492584824562073, 0.006638358347117901, -0.01491853129118681, -0.013832606375217438, -0.015771757811307907, 0.01460826676338911, -0.019469071179628372, -0.023373227566480637, 0.0004185333091299981, 0.007052043918520212, 0.02270098775625229, -0.0026275489944964647, 0.03477543219923973, -0.0009299842640757561, 0.008894236758351326, -0.022946614772081375, 0.006515545770525932, 0.016689620912075043, 0.016534490510821342, 0.011983949691057205, 0.01125353667885065, 0.04669474437832832, 0.008842526003718376, 0.02343786507844925, -0.012669116258621216, 0.013367210514843464, -0.018331436440348625, -0.001805025851354003, -0.01878390461206436, 0.00523247430101037, 0.005979047156870365, 0.036688726395368576, -0.00013725549797527492, 0.0035841965582221746, -0.012313605286180973, 0.045867372304201126, 0.03226746246218681, 0.016185441985726357, -0.032810427248477936, -0.0071619292721152306, -0.0006964782369323075, 0.03493056446313858, 0.011680149473249912, -0.002456257352605462, -0.00431137764826417, -0.003784575266763568, 0.008428840897977352, 0.008099185302853584, -0.03242259472608566, 0.03971379995346069, -0.012979380786418915, -0.0006932463147677481, -0.026863697916269302, -0.009715143591165543, -0.00855165347456932, 0.01025164220482111], [0.007703020237386227, 0.02335973083972931, 0.0690494179725647, 0.02711300551891327, -0.008184036239981651, 0.02896931953728199, 0.015297642908990383, -0.002157794311642647, 0.020731084048748016, 0.03363042697310448, 0.0356086865067482, 0.012370902113616467, 0.0227364432066679, -0.00432575074955821, -0.011720514856278896, 0.0048169284127652645, 0.013387131504714489, 0.06498449295759201, 0.022235102951526642, 0.009200265631079674, 0.03111017495393753, 0.04189575836062431, -0.01703200861811638, 0.02254674769937992, -0.0421125553548336, -0.0025812231469899416, -0.006622429471462965, -0.03522929176688194, 0.05281684175133705, -0.0027709193527698517, 0.060594383627176285, -0.052030954509973526, 0.011903435923159122, 0.015433140099048615, 0.024091416969895363, 0.03045978955924511, -0.02459275722503662, 0.013163561001420021, 0.017601097002625465, -0.023088736459612846, 0.02894221991300583, 0.05487639829516411, -0.017438499256968498, -0.0180482380092144, 0.005138734355568886, -0.007574297953397036, 0.021516967564821243, -0.01249962393194437, -0.019525159150362015, -0.008305983617901802, -0.031597964465618134, -0.011639216914772987, 0.007587847765535116, 0.011076902970671654, -0.012770618312060833, 0.021828612312674522, -0.05837222933769226, -0.0197284035384655, 0.03587967902421951, 0.020920779556035995, 0.02791243977844715, -0.023969469591975212, -0.008204360492527485, 0.0160022284835577, 0.028833821415901184, -0.024186264723539352, -0.01590738072991371, -0.008976695127785206, 0.03821023181080818, 0.000977274146862328, 0.03758694604039192, 0.023874621838331223, 0.04612327367067337, -0.03219415247440338, 0.026001928374171257, 0.0006635132594965398, 0.04839962720870972, 0.029484208673238754, -0.019267713651061058, -0.0006270983722060919, -0.00863795168697834, -0.016259673982858658, -0.023752672597765923, 0.01285869162529707, -0.04848092794418335, 0.006253199651837349, -0.0931137353181839, 0.024389510974287987, -0.03842702880501747, -0.003600840223953128, -0.024457259103655815, 0.03948390856385231, 0.008861522190272808, 0.022533198818564415, -0.004678043536841869, 0.005487639922648668, 0.03709915652871132, -0.03544608876109123, -0.02720785327255726, 0.020676884800195694, 0.004366399720311165, -0.07918461412191391, -0.0334407277405262, -0.04910421371459961, 0.0760410726070404, -0.002088351873680949, 0.010744933970272541, -0.008482130244374275, -0.022153805941343307, -0.02475535310804844, -0.0035872904118150473, -0.03582547977566719, 0.005961880553513765, 0.06514709442853928, 0.04533739015460014, -0.022817742079496384, -0.0160022284835577, -0.026015477254986763, 0.021598266437649727, -0.02199120819568634, 0.005765409208834171, -0.009328987449407578, 0.013434555381536484, -0.059781402349472046, 0.008224684745073318, -0.015229894779622555, -0.03989040106534958, -0.006104152649641037, -0.03685526177287102, -0.002892866963520646, 0.0045018973760306835, -0.032302550971508026, 0.08026859164237976, 0.010257144458591938, 0.030839180573821068, 0.057179853320121765, 0.009728704579174519, -0.026096776127815247, -0.009437385946512222, 0.0014303431380540133, 0.025852881371974945, 0.020703984424471855, 0.030080396682024002, 0.04628587141633034, -0.03457890450954437, -0.037668243050575256, -0.05831803008913994, 0.026286473497748375, 0.06010659411549568, 0.07517389208078384, 0.018590226769447327, -0.017099756747484207, -0.013556502759456635, -0.01304161362349987, -0.023129386827349663, 0.010169071145355701, -1.9490966224111617e-05, 0.037830840796232224, -0.01684231124818325, 0.0142543138936162, -0.043440427631139755, -0.010731385089457035, -0.03566288575530052, 0.013075487688183784, 0.009904851205646992, -0.004515446722507477, 0.008671825751662254, -0.04048658907413483, -0.08937400579452515, 0.02720785327255726, -0.005917843896895647, -0.029673904180526733, 0.04246484860777855, 0.006639366969466209, -0.002103595295920968, 0.013712325133383274, 0.031055977568030357, 0.04073048382997513, 0.009037668816745281, -0.04056788608431816, 0.012228629551827908, -0.00656823068857193, 0.02410496585071087, 0.010541688650846481, 0.003021589480340481, 0.007655596360564232, 0.03837282955646515, 0.0038176358211785555, -0.02319713495671749, 0.037830840796232224, -0.01693716086447239, -0.015202795155346394, -0.013163561001420021, 0.022560296580195427, 0.013502304442226887, -0.07181356102228165, -0.019525159150362015, -0.018590226769447327, 0.004484959878027439, -0.04070338234305382, -0.017018457874655724, -0.03539188951253891, 0.025053447112441063, 0.00814338680356741, -0.026313571259379387, -0.018319232389330864, -0.01749269850552082, 0.010826232843101025, 0.008339857682585716, -0.005352142732590437, 0.00657500559464097, -0.03327813372015953, -0.034633103758096695, 0.004715305287390947, 0.0025083934888243675, 0.05777604132890701, 0.042139653116464615, 0.03276324272155762, -0.009037668816745281, -0.017980489879846573, -0.03525639325380325, 0.030324291437864304, 0.0380205363035202, 0.03902321681380272, -0.014674355275928974, 0.10601307451725006, 0.0028843984473496675, 0.022478999570012093, 0.020582037046551704, -0.055255793035030365, -0.02810213528573513, -0.0063751470297575, -0.013854596763849258, 0.003641489427536726, -0.062328748404979706, 0.0031655551865696907, 0.027505947276949883, -0.025419289246201515, -0.013929120264947414, 0.01650356873869896, 0.0331968329846859, 0.019782602787017822, -0.01426786370575428, -0.004210577812045813, -0.01789919100701809, -0.004634006880223751, 0.03734305128455162, 0.040405288338661194, 0.017641745507717133, -0.00581622077152133, -0.023657824844121933, 0.01879347302019596, 0.01777724362909794, -0.0471530556678772, -0.001991810044273734, -0.012689320370554924, 0.004346075467765331, -0.025798682123422623, -0.01041974127292633, -0.015392491593956947, -0.00487790210172534, 0.005230194889008999, -0.06726085394620895, -0.05530998855829239, -0.031625065952539444, 0.00032561691477894783, 0.08574268221855164, -0.047315649688243866, -0.025012798607349396, 0.011876336298882961, -0.0036313270684331656, 0.03387432172894478, 0.02853572741150856, -0.043223634362220764, -0.03831863030791283, -0.0020612524822354317, 0.027709193527698517, -0.007716570049524307, -0.012567372992634773, 0.040676284581422806, -0.022058958187699318, 0.01079235877841711, 0.0341724157333374, -0.014240764081478119, -0.01842763088643551, 0.017736593261361122, 0.009484809823334217, -0.013481979258358479, -0.008563428185880184, 0.013658125884830952, 0.0285086277872324, 0.01619192585349083, -0.037614043802022934, 0.022722894325852394, -0.03468730300664902, -0.041922859847545624, 0.011801812797784805, -0.005480865016579628, -0.039836201816797256, -0.03325103223323822, 0.004213965497910976, 0.09506489336490631, -0.014484659768640995, 0.02701815776526928, -0.015568637289106846, 0.03837282955646515, 0.007418476045131683, 0.021625366061925888, -0.02896931953728199, -0.047505345195531845, -0.0033704948145896196, -0.008319533430039883, -0.017140405252575874, -0.0240643173456192, -0.016124175861477852, -0.03815603628754616, 0.00899701938033104, 0.018007589504122734, 0.03905031830072403, -0.024281112477183342, 0.017208155244588852, -0.012960314750671387, 0.017018457874655724, -0.05270844325423241, -0.005314880982041359, -0.005826382897794247, -0.016761014237999916, 0.05297943577170372, 0.037614043802022934, -0.043467529118061066, 0.030595285817980766, -0.031652163714170456, 0.05081148073077202, -0.046041976660490036, -0.027533046901226044, -0.04769504442811012, 0.02856282703578472, 0.03604227676987648, -0.02834603190422058, 0.03476860374212265, 0.0029385972302407026, -0.03341362997889519, 0.014335612766444683, 0.01665261574089527, 0.0020324592478573322, -0.028237633407115936, -0.0011872949544340372, -0.010914306156337261, 0.053548526018857956, 0.042979735881090164, -0.004596745129674673, -0.0007803796324878931, -0.06915780901908875, -0.017506249248981476, -0.03821023181080818, -0.016178375110030174, 0.010819457471370697, -0.01631387323141098, -0.024416610598564148, 0.06162416189908981, 0.011402096599340439, 0.003026670543476939, 0.05433440953493118, 0.028996417298913002, 0.0045764208771288395, 0.036584265530109406, -0.05642106756567955, -0.002703170757740736, 0.0017733207205310464, 0.011612117290496826, -0.017790792509913445, 0.02329198271036148, -0.01380039844661951, 0.0015294256154447794, 0.019809702411293983, 0.0495649054646492, 0.0023712024558335543, 0.035744182765483856, 0.03563578426837921, 0.004952425602823496, 0.03192315995693207, -0.0033078272826969624, 0.027465298771858215, 0.016557767987251282, 0.05325043201446533, 0.04465990513563156, 0.0006901892484165728, 0.009721930138766766, -0.015324742533266544, -0.03395561873912811, -0.03276324272155762, -0.02512119524180889, 0.01100915390998125, 0.028617026284337044, 0.015771884471178055, -0.030784983187913895, 0.01566348597407341, 0.010521363466978073, 0.006680015940219164, -0.027966639026999474, 0.0200942475348711, -0.028047937899827957, -0.020609136670827866, 0.04853512719273567, -0.021354371681809425, 0.0008858134970068932, 0.017289452254772186, -0.021069826558232307, 0.021381471306085587, -0.022235102951526642, 0.019362561404705048, -0.014891151338815689, 0.02326488308608532, 0.009444160386919975, -0.0018851059721782804, 0.0006372606731019914, 0.05853482708334923, 0.0238204225897789, -0.020541388541460037, -0.024172715842723846, 0.01842763088643551, 0.005115022417157888, -0.062111955136060715, 0.02422691322863102, -0.039456807076931, 0.02577158249914646, -0.0014252620749175549, -0.0017343652434647083, -0.0021730377338826656, -0.05213935300707817, 0.001444739755243063, -0.005795896053314209, 0.027370451018214226, 0.05192255973815918, -0.017560448497533798, -0.02896931953728199, -0.005355529952794313, -0.007567523047327995, -0.021503418684005737, 0.006026241462677717, -0.01155114360153675, -0.03043268993496895, -0.018183734267950058, 0.0005928006139583886, -0.027153655886650085, -0.02598837949335575, -0.053304631263017654, -0.03002619743347168, 0.018508927896618843, 0.010169071145355701, 0.007621722295880318, -0.03178766369819641, 0.013082262128591537, 0.03189605847001076, -0.031841862946748734, -0.007208455353975296, 0.04154346510767937, 0.01783144287765026, -0.008461805060505867, 0.03623197227716446, 0.08704345673322678, 0.057830240577459335, 0.0142543138936162, 0.07414411008358002, 0.04460570588707924, 0.011517268605530262, -0.04888742044568062, -0.012824817560613155, -0.0043901121243834496, -0.006720665376633406, -0.004789828788489103, -0.008197585120797157, 0.0035127669107168913, 0.00777076929807663, 0.0038142483681440353, -0.03178766369819641, -0.0037092380225658417, -0.0073168533854186535, 0.00600930443033576, -0.018901871517300606, -0.03254644572734833, -0.03791213780641556, -0.02109692618250847, -0.019308362156152725, 0.050540484488010406, 0.04157056659460068, 0.03577128052711487, 0.09278853982686996, -0.028237633407115936, -0.008556653745472431, -0.02035169117152691, -0.0003558920871000737, 0.10021378844976425, -0.015256993472576141, 0.008814098313450813, -0.04891451820731163, 0.03793923929333687, 0.007885942235589027, 0.02872542291879654, 0.014877601526677608, 0.016259673982858658, 0.005721372552216053, -0.018170185387134552, 0.01665261574089527, 0.05297943577170372, 0.010426515713334084, -0.07853422313928604, 0.009410286322236061, 0.027614345774054527, -0.027654994279146194, -0.011530818417668343, 0.010683960281312466, -0.021191773936152458, 0.002687927335500717, -0.0019376111449673772, 0.000637684075627476, 0.0012076195562258363, 0.00739815179258585, -0.022411249577999115, 0.011449520476162434, 0.04303393512964249, -0.003824410727247596, 0.03468730300664902, -0.020798832178115845, -0.0011830605799332261, -0.014051067642867565, 0.009898076765239239, -0.1262834668159485, -0.01696426048874855, -0.008150161243975163, -0.00777076929807663, -0.03219415247440338, -0.002613403834402561, 0.025663185864686966, 0.005284394137561321, 0.029240313917398453, -0.0120321586728096, -0.0016242737183347344, -0.013888471759855747, 0.017316551879048347, 0.024213364347815514, -0.007628496736288071, -8.844373223837465e-05, -0.013380356132984161, 0.0013566665584221482, 0.00375327467918396, -0.01352262869477272, -0.023739123716950417, 0.0068053510040044785, -0.006077053025364876, -0.005047273822128773, -0.047749243676662445, -0.024145616218447685, 0.024674054235219955, 0.006927298381924629, 0.0200942475348711, 0.00967450626194477, 0.005287781357765198, -0.02915901504456997, 0.018942520022392273, -0.002836974337697029, -0.015893831849098206, 0.035120896995067596, -0.043846920132637024, -0.045770980417728424, 0.03430791199207306, 0.029267413541674614, 0.028020838275551796, 0.03644876927137375, 0.018373431637883186, -0.027492398396134377, -0.015419590286910534, -0.02485020086169243, 0.03587967902421951, 0.02921321429312229, -0.015446689911186695, 0.015270543284714222, -0.025134745985269547, -0.006358209997415543, 0.03157086670398712, -0.0028420554008334875, -0.019741954281926155, 0.029511308297514915, 0.010643311776220798, 0.008427930995821953, -0.035933878272771835, 0.009410286322236061, -0.006480157375335693, 0.03934841230511665, -0.021327272057533264, 0.025012798607349396, 0.006039791274815798, -0.03257354721426964, -0.015568637289106846, 0.010338442400097847, 0.023400381207466125, -0.014782753773033619, 0.005314880982041359, -0.02699105814099312, 0.02689621038734913, 0.023034537211060524, -0.013183885253965855, 0.003153699217364192, -0.022871941328048706, 0.0010246981400996447, -0.0058297705836594105, 0.013542952947318554, -0.02896931953728199, 0.012533498927950859, 0.018847672268748283, -0.007736894767731428, 0.007208455353975296, 0.015555087476968765, 0.008936045691370964, -0.03064948506653309, 0.013238084502518177, -0.0020731084514409304, 0.008834422565996647, -0.02695040963590145, 0.009125742129981518, 0.00018736733181867748, 0.046665262430906296, 0.008184036239981651, 0.02319713495671749, -0.01276384387165308, 0.012154106050729752, 0.035310592502355576, -0.045147694647312164, -0.024606306105852127, -0.04268164187669754, -0.03325103223323822, 0.005463927984237671, 0.019579356536269188, -0.0029995711520314217, -0.006293848622590303, 0.005287781357765198, 0.0029707779176533222, 0.04436181113123894, -0.015216344967484474, 0.02189636044204235, 0.05555388703942299, -0.028264733031392097, -0.0011847543064504862, -0.058860018849372864, -0.004349462687969208, 0.033549126237630844, 0.032952938228845596, 0.023712024092674255, 0.0059042940847575665, -0.0061990004032850266, -0.0031655551865696907, -0.0004062801308464259, 0.02785824052989483, -0.017316551879048347, 0.000599575461819768, -0.003336620517075062, 0.016462920233607292, -0.009071542881429195, -0.017140405252575874, 0.026571016758680344, -0.02642196975648403, 0.025066997855901718, -0.004600132815539837, -0.00803498923778534, -0.048833221197128296, 0.031679265201091766, -0.02791243977844715, -0.02155761793255806, 0.034660205245018005, -0.005338592920452356, -0.027126556262373924, 0.001912205363623798, 0.0055892630480229855, 0.001089059398509562, -0.03129987046122551, 0.008549878373742104, -0.0004162307013757527, -0.013834272511303425, -0.00028581457445397973, 0.046665262430906296, 0.03737014904618263, 0.023427480831742287, -0.01653066836297512, -0.009721930138766766, -0.032492246478796005, 0.008983469568192959, 0.013929120264947414, -0.010616212151944637, 0.000864642031956464, -0.030513986945152283, 0.005765409208834171, 0.010311342775821686, 0.029023516923189163, 0.014240764081478119, -0.00030740947113372386, 0.004047981463372707, -0.005043886136263609, -0.03647586703300476, -0.005843320395797491, -0.10796423256397247, -0.018197285011410713, 0.04311523586511612, 0.026259373873472214, -0.04135376960039139, -0.03327813372015953, -0.0040818555280566216, -0.005470702890306711, 0.027397550642490387, 0.005074372980743647, -0.028481528162956238, -0.018495379015803337, 0.0018495379481464624, -0.028020838275551796, 0.002718414179980755, 0.006476770155131817, -0.015351842157542706, 0.007418476045131683, -0.004813540726900101, 0.04425341263413429, -0.02791243977844715, -0.018779922276735306, -0.008922495879232883, -0.00949158426374197, -0.007655596360564232, 0.0069713350385427475, -0.0010763565078377724, -0.031679265201091766, -0.031164374202489853, -0.007276203949004412, 0.009959050454199314, -0.01718105562031269, -0.017221704125404358, 0.001426108879968524, 0.010724609717726707, -0.02124597318470478, 0.020866582170128822, -0.06601427495479584, 0.046665262430906296, -0.03005329705774784, -0.004786441568285227, 0.0016412108670920134, -0.0043799495324492455, 0.014769203960895538, 0.011720514856278896, -0.0010941405780613422, 0.009810003452003002, -0.05154316499829292, -0.026449069380760193, -0.011043027974665165, 0.06287074089050293, -0.0034788926132023335, 0.01251317374408245, -0.022655146196484566, -0.04075758159160614, -0.02112402580678463, -0.026381321251392365, 0.016666166484355927, 0.031028877943754196, 0.0017360589699819684, 0.003736337646842003, 0.028210533782839775, 0.016232574358582497, -0.006317560561001301, 0.007059408351778984, 0.009959050454199314, 0.001893574488349259, -0.058643221855163574, 0.007303303573280573, -0.013000964187085629, -0.003641489427536726, 0.02006714791059494, -0.001275368151254952, 0.0012635121820494533, -0.0019833415281027555, 0.022343501448631287, -0.010304568335413933, -0.015297642908990383, 0.0037973113358020782, -0.010189395397901535, 0.02829183265566826, 0.0004818621964659542, 0.00011813668970717117, -0.015365391969680786, 0.05615007504820824, -0.009152841754257679, -0.008475354872643948, 0.008854747749865055, 0.0019748727791011333, 0.03257354721426964, -0.03138117119669914, 0.012743519619107246, -0.03886061906814575, -0.01039264164865017, -0.023630725219845772, 0.007601397577673197, -0.011063353158533573, -0.02812923491001129, -0.09571527689695358, -0.010555238462984562, 0.031597964465618134, 0.010968504473567009, -0.02918611466884613, -0.003116437466815114, 0.02583933062851429, 0.051787059754133224, 0.018468279391527176, -0.03620487451553345, 0.021693114191293716, 0.013983319513499737, -0.021733764559030533, -0.013563278131186962, 0.011659541167318821, -0.01997230015695095, 0.026029027998447418, 0.00243556359782815, -0.007804643362760544, -0.0027353514451533556, 0.03861672431230545, -0.030568186193704605, -0.005924618802964687, 0.019335461780428886, -0.003987007308751345, -0.02326488308608532, 0.0027861627750098705, -0.018075337633490562, -0.00834663212299347, -0.020107796415686607, 0.0010162296239286661, 0.017438499256968498, 0.011544368229806423, 0.02006714791059494, 0.0020697209984064102, -0.04181446135044098, -0.037857938557863235, 0.0017140406416729093, -0.022262202575802803, 0.024917950853705406, 0.03525639325380325, 0.005348755046725273, 0.026530368253588676, 0.03563578426837921, 0.005331818014383316, 0.009376412257552147, 0.006364984903484583, -0.024606306105852127, 0.028373131528496742, 0.006314173340797424, 0.011469844728708267, -0.04872482270002365, 0.039456807076931, 0.009152841754257679, -0.019891001284122467, 0.047342751175165176, -0.015514438971877098, 0.01638162136077881, -0.0200942475348711, -0.014715004712343216, -0.0018884933087974787, -0.018834121525287628, 0.030324291437864304, -0.00581622077152133, -0.014728554524481297, -0.03238385170698166, -0.012560597620904446, 0.005470702890306711, -0.01266899611800909, 0.01350907888263464, 0.016910061240196228, 0.012621571309864521, -0.010148745961487293, -0.00375327467918396, -0.019809702411293983, 0.013448105193674564, -0.003285809187218547, -0.03671976178884506, -0.0004316858830861747, 0.015365391969680786, 0.03414531424641609, -0.0005131959333084524, 0.016476469114422798, 0.03479570150375366, 0.012933215126395226, -0.015961579978466034, 0.0190102681517601, -0.01888832077383995, -0.004003944806754589, -0.03815603628754616, -0.0011195462429895997, -0.02437596023082733, 0.023088736459612846, 0.0529252365231514, 0.015473789535462856, 0.0200942475348711, 0.007350727450102568, -0.047532446682453156, -0.004491734784096479, -0.015351842157542706, 0.006239649839699268, -0.004366399720311165, -0.021815061569213867, -0.004949038382619619, -0.0006601258064620197, 0.03363042697310448, -0.022275753319263458, -0.02540574036538601, -0.03005329705774784, 0.016910061240196228, 0.006852774880826473, 0.014457560144364834, 0.02186926081776619, 0.020460089668631554, 0.0007100904476828873, 0.03406401723623276, 0.015704134479165077, -0.0012550435494631529, 0.0056637865491211414, -0.03279034048318863, 0.01997230015695095, -0.022804193198680878, -0.015148595906794071, 0.04934810847043991, 0.04804733768105507, -0.020148444920778275, -0.022628046572208405, 0.014444010332226753, -0.03325103223323822, -0.0435488261282444, 0.032492246478796005, 0.005491027142852545, -0.0586974211037159, -0.017004908993840218, 0.03129987046122551, 0.0007515864563174546, 0.022045407444238663, 0.0038989342283457518, 0.0037058505695313215, -0.013725874945521355, -0.01200505904853344, 0.009322213008999825, 0.0025778356939554214, 0.0360964760184288, -0.024091416969895363, 0.010907530784606934, -0.039754901081323624, -0.020853031426668167, -0.033820122480392456, 0.0015709216240793467, 0.0034670366439968348, -0.033142633736133575, -0.00750654935836792, 0.011700190603733063, -0.03544608876109123, 0.024931499734520912, -0.008976695127785206, -0.0010153827024623752, 0.023278433829545975, 0.025134745985269547, 0.02143567055463791, 0.001409171731211245, -0.03457890450954437, 0.0298365019261837, 0.0056637865491211414, -0.0009078317671082914, -0.03113727457821369, 0.011530818417668343, 0.027289152145385742, -0.005768796894699335, 0.009545783512294292, -0.02999909780919552, 0.018508927896618843, 0.022777093574404716, 0.008150161243975163, 0.03092047944664955, 0.025514138862490654, -0.023535877466201782, -0.017357202246785164, -0.011598567478358746, -0.0006660538492724299, 0.021422119811177254, -0.012574147433042526, 0.015365391969680786, 0.06661046296358109, -0.005562163423746824, 0.006358209997415543, 0.011977959424257278, 0.007763994392007589, -0.006473382469266653, 0.03907741606235504, -0.015744784846901894, 0.0013634413480758667, -0.023061636835336685, -0.0231022872030735, -0.007540423888713121, 0.019498059526085854, -0.033603325486183167, -0.018725724890828133, 0.007757219485938549, 0.06547228991985321, 0.03886061906814575, 0.011950859799981117, 0.01842763088643551, 0.03693655878305435, -0.00751332426443696, 0.03089337982237339, -0.01163244154304266, -0.04541868716478348, -0.00713393185287714, 0.022438349202275276, -0.012079582549631596, -0.00674776453524828, -0.026963958516716957, 0.02338683046400547, 0.04224805161356926, -0.018996719270944595, 0.008177260868251324, -0.016882961615920067, 0.026869110763072968, 0.009437385946512222, -0.04251904785633087, -0.007228780072182417, 0.0022052181884646416, 0.026977509260177612, 0.035120896995067596, -0.011957635171711445, -0.03325103223323822, -0.006890036631375551, 0.015256993472576141, 0.016056427732110023, 0.034470509737730026, 0.027966639026999474, 0.0050574359484016895, -0.030378490686416626, 0.004986300133168697, 0.02747884951531887, 0.016232574358582497, 0.007621722295880318, 0.013583602383732796, -0.01684231124818325, -0.009051218628883362, -0.0016691571800038218, 0.004274939186871052, 0.02180151268839836, 0.0010983748361468315, -0.0022170741576701403, -0.04503929615020752, 0.001293999026529491, 0.03024299256503582, 0.0011110777268186212, -0.010277468711137772, 0.010683960281312466, 0.016476469114422798, -0.02088013105094433, -0.012106682173907757, 0.02208605594933033, -0.017966939136385918, 0.0015997147420421243, 0.029267413541674614, 0.026503268629312515, 0.014836952090263367, -0.011747614480555058, 0.03606937453150749, -0.012682545930147171, 0.00022632280888501555, 0.00034594148746691644, 0.028237633407115936, 0.009952275082468987, -0.028237633407115936, -0.006602105218917131, 0.0017301308689638972, -0.0008176413830369711, -0.00337726972065866, -0.026720063760876656, 0.013109361752867699, 0.014213664457201958, -0.02475535310804844, 0.013793623074889183, -0.04479540139436722, -0.038535427302122116, -0.007716570049524307, 0.01795339025557041, 0.019565807655453682, 0.009417060762643814, -0.01127337384968996, -0.0007033155998215079, -0.03203155845403671, -0.003529704175889492, -0.009640631265938282, -0.019958749413490295, -0.008339857682585716, -0.002594772959128022, -0.0029216601978987455, -0.009857427328824997, -0.03693655878305435, -0.005856870207935572, -0.02298033982515335, -0.006226100027561188, -0.003340007970109582, 0.010751709342002869, 0.0022729667834937572, -0.008983469568192959, 0.03541899099946022, -0.017140405252575874, -0.04525609314441681, -0.01982325315475464, -0.0021544068586081266, 0.0011881417594850063, -0.01510794647037983, -0.0013744505122303963, -0.01141564641147852, 0.03902321681380272, 0.0004446004459168762, -0.022993888705968857, -0.008800548501312733, 0.005253907293081284, 0.007059408351778984, -0.0030097332783043385, 0.0033146021887660027, -0.02624582313001156, -0.005650236736983061, 0.037451449781656265, -0.01823793351650238, -0.04073048382997513, 0.026313571259379387, 0.012479299679398537, -0.021855711936950684, 0.009870977140963078, -0.005423278547823429, -0.00739815179258585, 0.01563638634979725, 0.02533799223601818, -0.01944386027753353, -0.025039898231625557, 0.015202795155346394, -0.011341122910380363, -0.029023516923189163, -0.0027150267269462347, 0.04081178084015846, -0.013739424757659435, -0.006110927555710077, -0.011625667102634907, 0.021909911185503006, 0.04116407409310341, 0.0031079689506441355, -0.021760864183306694, -0.0072423298843204975, -0.024240463972091675, -0.017966939136385918, 0.08243654668331146, 0.017452050000429153, 0.012689320370554924, -0.008475354872643948, 0.02134082093834877, -0.0012448813067749143, 0.015487339347600937, -0.009471260011196136, -0.02459275722503662, 0.0063785347156226635, -0.004386724438518286, 0.004444310907274485, -0.0205684881657362, 0.014484659768640995, 0.0032790342811495066, -0.027248503640294075, -0.01985035091638565, 0.00525729451328516, 0.006578392814844847, 0.019159315153956413, 0.008963145315647125, -0.0112462742254138, 0.03070368431508541, -0.027966639026999474, 0.0020409277640283108, -0.004071693401783705, -0.00891572143882513, -0.0011170057114213705, 0.02564963512122631, 0.0194845087826252, -0.013082262128591537, -0.005379241891205311, -0.011591792106628418, -0.012384451925754547, 0.0035771282855421305, -0.01062298659235239, -0.015568637289106846, 0.014972449280321598, 0.010230044834315777, -0.008549878373742104, -0.034443408250808716, -0.014891151338815689, -0.002706558210775256, -0.026164524257183075, -0.02040589042007923, 0.010473939590156078, -0.008238234557211399, -0.009579657576978207, 0.0052640694193542, 0.0210562776774168, 0.03027009218931198, 0.009220589883625507, -0.0021052889060229063, 0.0064903199672698975, -0.021178225055336952, -0.04005299508571625, -0.006290461402386427, -0.007581072859466076, 0.02298033982515335, 0.018657974898815155, -0.01795339025557041, 0.001991810044273734, 0.010189395397901535, 0.025053447112441063, 0.0002999994612764567, -0.027831140905618668, -0.03092047944664955, 0.002737045055255294, 0.0037837615236639977, -0.03235675022006035, -0.014349161647260189, 0.025351541116833687, -0.00863795168697834, 0.007310078479349613, 0.01739785075187683, -0.006808738224208355, 0.02692331001162529, 0.006873099599033594, -0.025107646360993385, 0.014118816703557968, 0.0027268826961517334, 0.038725122809410095, 0.019592907279729843, -0.005497802048921585, 0.0016581480158492923, -0.009965824894607067, -0.010555238462984562, -0.023928819224238396, 0.0017394463066011667, -0.02831893227994442, 0.0012804493308067322, 0.011937310919165611, 0.0027048643678426743, 0.012174430303275585, 0.013671675696969032, -0.0217744130641222, -0.005369079764932394, -0.025161845609545708, 0.022140255197882652, -0.0032451599836349487, 0.026164524257183075, -0.041489265859127045, -0.02112402580678463, 0.0013083956437185407, -0.017790792509913445, -0.037207555025815964, 0.05381951853632927, -0.005108247511088848, 0.0069713350385427475, 0.015148595906794071, -0.026557467877864838, 0.008631177246570587, 0.0298365019261837, 0.0036177774891257286, -0.010914306156337261, -0.0029911024030297995, 0.017695944756269455, -0.010636536404490471, -0.004942263476550579, 0.014728554524481297, 0.02186926081776619, -0.003060544840991497, 0.008759899064898491, 0.004532384220510721, -0.00393958343192935, -0.02004004828631878, 0.008190810680389404, 0.03070368431508541, -0.001985035138204694, 0.005396179389208555, 0.0061448016203939915, 0.008678601123392582, 0.013210984878242016, -0.000787577941082418, 0.023739123716950417, 0.000216160507989116, 0.015649935230612755, 0.004352850373834372, 0.024619856849312782, -0.009450935758650303, -0.0007710641948506236, -0.016354521736502647, -0.04165186360478401, -0.02831893227994442, -0.017560448497533798, 0.0009671118459664285, -0.021815061569213867, -0.013204210437834263, 0.019145766273140907, 0.004518834408372641, -0.02475535310804844, 0.007940140552818775, -0.009112192317843437, 0.016923610121011734, -0.018847672268748283, -0.0093831866979599, 0.036773961037397385, -0.0007282978622242808, -0.01099560409784317, -0.014864051714539528, -0.013515854254364967, 0.006808738224208355, -0.014809852465987206, 0.020243294537067413, -0.008299208246171474, -0.020392341539263725, 0.01934901252388954, -0.0003851086657959968, -0.0036516517866402864, -0.0157583337277174, 0.023861071094870567, -0.027966639026999474, 0.01826503314077854, 0.028996417298913002, 0.01802113838493824, -0.006493707187473774, 0.018441179767251015, -0.02180151268839836, -0.05108247324824333, 0.008509228937327862, 0.035039596259593964, -0.014958899468183517, -0.035473186522722244, -0.011971184983849525, 0.04327782988548279, 0.02812923491001129, 0.03406401723623276, -0.008150161243975163, 0.018508927896618843, 0.05146186798810959, -0.001163582899607718, -0.03582547977566719, 0.007384601980447769, 0.007438800763338804, -0.009992924518883228, 0.024714704602956772, -0.0315166674554348, 0.036611367017030716, 0.004932100884616375, -0.0046678814105689526, -0.0024677442852407694, -0.0353647917509079, 0.009627081453800201, 0.01634097285568714, 0.013583602383732796, -0.021476319059729576, -0.01172728929668665, -0.0015522907488048077, 0.011835687793791294, 0.009146066382527351, 0.03712625429034233, 0.00019975262694060802, 0.03265484422445297, 0.006442895624786615, 0.017546897754073143, -0.005565550643950701, 0.0227364432066679, -0.011171750724315643, -0.0011779795167967677, 0.011578242294490337, -0.03363042697310448, 0.008570202626287937, 0.010379091836512089, -0.013068713247776031, -0.019376112148165703, 0.0013609008165076375, 0.003492442425340414, -0.021937008947134018, -0.0031367619521915913, 0.0005822148523293436, 0.01669326424598694, 0.011422420851886272, -0.013143236748874187, -0.01997230015695095, 0.004457860719412565, 0.0025778356939554214, -0.02338683046400547, 0.01621902547776699, -0.01783144287765026, 0.013563278131186962, 0.0194845087826252, -0.011429195292294025, 0.0013583602849394083, 0.006984884850680828, 0.0014371180441230536, 0.022248653694987297, 0.012106682173907757, -0.0014201808953657746, 0.011232724413275719, 0.0006931532989256084, -0.0021950560621917248, 0.0295926071703434, -0.02298033982515335, -0.035933878272771835, 0.014565957710146904, -0.03831863030791283, 0.004600132815539837, -0.03438920900225639, -0.007235554978251457, -0.025974828749895096, -0.009335762821137905, -0.019904550164937973, 0.005474090110510588, 0.005677335895597935, 0.029457109048962593, -0.004034431651234627, 0.009166390635073185, -0.007628496736288071, 0.005331818014383316, -0.016896510496735573, 0.008502454496920109, -0.030324291437864304, 0.006829062942415476, -0.005480865016579628, -0.05463250353932381, -0.006263361778110266, 0.00432575074955821, 0.022411249577999115, -0.006127864588052034, 0.010243594646453857, -0.0075200991705060005, 0.0026303408667445183, 0.017018457874655724, -0.0235765278339386, 0.021693114191293716, -0.0038786097429692745, -0.009044443257153034, 0.02242480032145977, 0.03932131081819534, 0.01569058559834957, -0.007072958163917065, 0.0185224786400795, -0.023427480831742287, -0.016476469114422798, 0.012303153052926064, -0.02518894523382187, 0.010521363466978073, -0.04476829990744591, -0.00714070675894618, 0.01643582060933113, -0.012587697245180607, -0.007763994392007589, 0.025703834369778633, 0.003323070937767625, 0.006056728307157755, 0.04227515310049057, 0.018630875274538994, 0.03300713747739792, 0.014836952090263367, -0.03371172398328781, -0.017330102622509003, 0.0007393070263788104, -0.02466050535440445, -0.025256693363189697, -0.04975460097193718, -0.009545783512294292, 0.004976137541234493, 0.006751152221113443, 0.015351842157542706, 0.04842672869563103, -0.02571738325059414, -0.0008790385909378529, -0.033793020993471146, 0.005230194889008999, 0.11457650363445282, -0.025758033618330956, -0.027492398396134377, -0.007377827074378729, 0.011950859799981117, -0.02673361450433731, 0.025161845609545708, -0.04398241639137268, 0.024931499734520912, -0.029511308297514915, -0.010460389778017998, -0.0021662628278136253, -0.01340068131685257, -0.0015302724204957485, 0.012465749867260456, 0.008326307870447636, -0.002571061020717025, 0.009721930138766766, -0.009837103076279163, 0.020487189292907715, 0.005084535572677851, 0.03623197227716446, 0.027004608884453773, 0.01566348597407341, -0.0180482380092144, -0.012221855111420155, 0.0180482380092144, -0.017858542501926422, -0.02726205252110958, 0.04121827334165573, -0.0037803740706294775, -0.008827648125588894, 0.05520159378647804, -0.008814098313450813, 0.038914818316698074, -0.02918611466884613, -0.009017343632876873, -0.01864442601799965, -0.010297792963683605, -0.014606607146561146, 0.03452470898628235, 0.030513986945152283, 0.0117882639169693, -0.014687905088067055, -0.0034636491909623146, 0.02704525738954544, -0.035717085003852844, 0.020121347159147263, -0.013624251820147038, 0.002349184127524495, 0.031841862946748734, -0.014213664457201958, -0.010026798583567142, -0.02121887356042862, -0.02434886060655117, 0.025175394490361214, 0.010318118147552013, -0.01917286589741707, -0.0009433998493477702, 0.008631177246570587, 0.008712475188076496, 0.0019426923245191574, -0.03864382579922676, 0.006978109944611788, -0.012038933113217354], [0.01616048440337181, 0.03507336229085922, 0.0430159829556942, 0.06128663942217827, -0.06972730904817581, -0.0027507555205374956, -0.014915353618562222, 0.019450251013040543, 0.016094950959086418, 0.041102416813373566, -0.03323843330144882, 0.0002326428220840171, -0.06317399442195892, -0.0025869226083159447, -0.02692103385925293, 0.010806422680616379, 0.0014785925159230828, 0.03879564628005028, -0.0057472605258226395, -0.018611425533890724, -0.004928095731884241, 0.04511304572224617, -0.03530928120017052, 0.038271382451057434, -0.008244074881076813, -0.020564313977956772, 0.004508683457970619, -0.028808388859033585, -0.03014526702463627, 0.003735391655936837, 0.061234209686517715, -0.021665271371603012, 0.04566352441906929, -0.0598711222410202, 0.040289804339408875, 0.05135180801153183, 0.01854589208960533, 0.005704664159566164, 0.025767650455236435, 0.037904396653175354, -0.01836239919066429, -0.011042342521250248, 0.03979175165295601, -0.05908472090959549, -8.816261833999306e-05, 0.07743401825428009, 0.0024263663217425346, -0.002015145495533943, -0.013499836437404156, 0.0037681583780795336, -0.006841664668172598, 0.019502677023410797, 0.011802527122199535, -0.026436088606715202, -0.0034568756818771362, -0.04600429907441139, -0.00933192577213049, 0.009043579921126366, 0.06144391745328903, -0.001682564616203308, 0.02086576633155346, -0.061601195484399796, -0.016461936756968498, -0.0023247897624969482, 0.006215822882950306, -0.04178396239876747, 0.012759312056005001, 0.04343539848923683, -0.010557396337389946, 0.03921505808830261, 0.0030292717274278402, 0.0009887319756671786, 0.003528962144628167, -0.01930607669055462, -0.030381185933947563, -0.008126115426421165, -0.0015359340468421578, -0.010504970327019691, 0.0007327429484575987, -0.022530309855937958, -0.028729749843478203, -0.007909855805337429, -0.04173153266310692, 0.023840973153710365, -0.03030254691839218, 0.023539520800113678, -0.0035879421047866344, 0.004407106898725033, -0.022386137396097183, -0.022857975214719772, -0.03916263207793236, -0.039083994925022125, -0.043776169419288635, 0.027812285348773003, -0.021429352462291718, 0.002998143434524536, 0.02424727939069271, 0.005321295000612736, 0.020656060427427292, 0.04676448181271553, -0.0029719301965087652, 0.006396039389073849, -0.007693596184253693, 0.03470637649297714, 0.02526959776878357, 0.011088215745985508, -0.05135180801153183, 0.03494229540228844, 0.014207595027983189, -0.0022674482315778732, 0.04812757298350334, -0.007090691011399031, 0.009404012933373451, 0.06977973878383636, 0.014758073724806309, -0.02627880871295929, 0.011114428751170635, -0.05090618133544922, 0.013866822235286236, -0.0038173082284629345, -0.03984417766332626, -0.02920158952474594, 0.03106273151934147, -0.0713525339961052, 0.031193798407912254, 0.03769468888640404, -0.03030254691839218, 0.029463721439242363, -0.05955656245350838, -0.030984090641140938, 0.07234863936901093, -0.008650381118059158, 0.025230277329683304, -0.035964611917734146, 0.03347435221076012, 0.010701569728553295, -0.024378346279263496, 0.019161904230713844, 0.012529945932328701, -0.016055630519986153, 0.026055995374917984, 0.02956857532262802, 0.05908472090959549, 0.020144902169704437, -0.005753813777118921, -0.019987622275948524, -0.026711327955126762, 0.06270215660333633, 0.06427495181560516, 0.015688644722104073, -0.02554483711719513, 0.015649326145648956, 0.04511304572224617, -0.006396039389073849, -0.004682346247136593, -0.06731569021940231, 0.0013884843792766333, 0.05274111032485962, 0.03572869300842285, 0.011861506849527359, -0.023867188021540642, 0.01726144179701805, -0.033762697130441666, -0.025479303672909737, 0.0022510651033371687, -0.012949357740581036, -0.02967342734336853, -0.015072633512318134, -0.031088944524526596, -0.02388029359281063, -0.03782575577497482, -0.03473259136080742, 0.029463721439242363, -0.017497360706329346, -0.013021444901823997, -0.06422252207994461, 0.030905451625585556, 0.03850730136036873, 0.013198384083807468, 0.01061637606471777, 0.00887319352477789, 0.028362764045596123, -0.0726107731461525, -0.021612845361232758, -0.023369135335087776, 0.031560782343149185, 0.008427567780017853, 0.00196435721591115, -0.022373029962182045, -0.03740634396672249, 0.017038628458976746, -0.012759312056005001, 0.026527835056185722, 0.00019680435070768, -0.0345228835940361, -0.01441730186343193, -0.05730222165584564, -0.011370007880032063, 0.06993702054023743, -0.021914297714829445, -0.010039684362709522, -0.03271416574716568, -0.06485164165496826, -0.025335131213068962, -0.035964611917734146, 0.007719809655100107, 0.009980704635381699, -0.011134088970720768, 0.0617060512304306, -0.011645247228443623, -0.01079986896365881, -0.01710416190326214, -0.03520442917943001, 0.07759129256010056, -0.019817236810922623, 0.03462773561477661, 0.022373029962182045, -0.010701569728553295, 0.021114792674779892, 0.023224961012601852, -0.01994830183684826, 0.01589835062623024, 0.007608402986079454, -0.0008797830669209361, -0.049097463488578796, -0.010773655958473682, -0.003420832334086299, -0.01993519626557827, -0.018768705427646637, -0.03263552859425545, -0.017156587913632393, 0.025046784430742264, 0.015439619310200214, -0.020891981199383736, 0.021062366664409637, 0.014561474323272705, -0.010177304036915302, -0.029096735641360283, -0.03646266460418701, -0.007313503883779049, 0.018441040068864822, 0.024391451850533485, 0.007975389249622822, -0.02967342734336853, 0.02838897705078125, -0.02654094062745571, 0.002837587147951126, 0.040473297238349915, 0.04789165407419205, -0.0011591182556003332, -0.03363163396716118, -0.030171480029821396, 0.06107693165540695, -0.07292532920837402, 0.016016311943531036, 0.050853755325078964, 0.04207230731844902, -0.0006131448899395764, -0.017772600054740906, -0.05614883452653885, -0.008034368976950645, -0.010878508910536766, 0.02066916786134243, -0.0479440800845623, -0.05751192569732666, -0.04123348370194435, 0.02340845577418804, -0.030800597742199898, 0.014731860719621181, 0.047629520297050476, -0.02783849835395813, -0.006612298544496298, 0.020747806876897812, 0.017510468140244484, -0.03087923862040043, 0.003784541506320238, 0.03161320835351944, -0.038717009127140045, -0.015675539150834084, 0.026868607848882675, -0.07565151154994965, -0.013735756278038025, -0.010930935852229595, -0.004400553647428751, -0.0025738158728927374, 0.013336003758013248, 0.02471911907196045, -0.02131139300763607, -0.014836713671684265, 0.01909637078642845, 0.06406524777412415, -0.009063240140676498, -0.03664615750312805, 0.019633743911981583, -0.0016842029290273786, 0.011396221816539764, -0.041023775935173035, 0.009017366915941238, -0.008696254342794418, 0.012346453033387661, -0.025518624112010002, 0.020459461957216263, -0.010740889236330986, -0.03711799904704094, -0.019070157781243324, 0.01287071779370308, -0.0007515837787650526, -0.004282593727111816, -0.04676448181271553, 0.003994247876107693, -0.05420905351638794, 0.020721593871712685, -0.004702006466686726, -0.003058761591091752, -0.0012418539263308048, 0.002672115806490183, -0.05326537415385246, 0.06380311399698257, -0.03305494040250778, 0.017326975241303444, 0.06306914240121841, 0.01854589208960533, 0.019699275493621826, -0.017956092953681946, -0.01664542965590954, 0.007608402986079454, 0.03260931372642517, 0.03300251439213753, -0.013565369881689548, -0.02004004828631878, 0.00030022391001693904, -0.011966359801590443, 0.016750283539295197, -0.03656752035021782, -0.02169148623943329, -0.07816798985004425, 0.02525649033486843, 0.03368405997753143, -0.00033217135933227837, -0.007582189980894327, 0.017064841464161873, -0.01020351704210043, 0.038533516228199005, 0.006861324887722731, 0.0004423490318004042, 0.004361233673989773, 0.026868607848882675, 0.005200058687478304, -0.01848035864531994, 0.0019348673522472382, -0.0061502899043262005, 0.03323843330144882, -0.022268177941441536, 0.008748680353164673, -0.07098554819822311, -0.015374085865914822, 0.04752466827630997, -0.02021043561398983, -0.03473259136080742, 0.0030833363998681307, -0.029358867555856705, 8.575632091378793e-05, 0.06139149144291878, 0.03048603981733322, -0.007549423258751631, -0.010229730978608131, -0.0363578125834465, -0.03869079425930977, 0.030014200136065483, -0.011540394276380539, 0.027969565242528915, 0.009213966317474842, 0.006484508980065584, -0.020289074629545212, 0.019227437674999237, 0.03444424271583557, -0.05997597426176071, 0.006749918218702078, 0.010183857753872871, -0.03557141497731209, -0.026947246864438057, 0.003345469245687127, 0.03232096880674362, 0.026134636253118515, 0.02553172968327999, 0.05835074931383133, 0.014587687328457832, -0.010210070759057999, 0.03258310258388519, -0.03140350431203842, -0.011219281703233719, 0.023945827037096024, 0.04655477777123451, 0.050014927983284, -0.011560054495930672, 0.041862599551677704, 0.06212546303868294, 0.04178396239876747, 0.020184222608804703, -0.044772274792194366, 0.053422655910253525, 0.006953071337193251, -0.006304292939603329, 0.011127535253763199, 0.013945462182164192, 0.033028725534677505, -0.025400664657354355, -0.025780756026506424, 0.005517894402146339, -0.006782684940844774, -0.006179779767990112, -0.0573546476662159, 0.013748862780630589, 0.014063422568142414, 0.0017284378409385681, 0.013113191351294518, -0.0015129974344745278, -0.019712382927536964, 0.03365784510970116, -0.01900462433695793, 0.04624021798372269, 0.00997415091842413, -0.008742127567529678, -0.008984600193798542, 0.010059344582259655, -0.007601849734783173, 0.0028162887319922447, -0.05221684277057648, -0.02488950453698635, -0.05877016484737396, -0.013486729934811592, -0.007968835532665253, 0.010354244150221348, 0.00855208095163107, -0.027576366439461708, -0.04298977181315422, -0.01597699150443077, 0.009915171191096306, 0.025977356359362602, -0.05824589729309082, -0.06600502878427505, -0.057197365909814835, 0.009037026204168797, 0.0006119161262176931, -0.05394691973924637, -0.005111588630825281, -0.010400117374956608, 0.006841664668172598, 0.02066916786134243, -0.018427932634949684, -0.020000729709863663, 0.022451670840382576, -0.0290180966258049, 0.023303601890802383, 0.006887537892907858, 0.06673900038003922, 0.039188846945762634, -0.04710525646805763, 0.0077001494355499744, 0.007470783311873674, 0.0365937314927578, 0.06658171862363815, 0.05824589729309082, 0.03971311077475548, -0.00813266821205616, 0.05882259085774422, 0.004276040475815535, 0.007352823857218027, 0.002029890427365899, -0.040394656360149384, -0.002886736998334527, -0.014010995626449585, -0.012320239096879959, 0.037065573036670685, 0.0384286604821682, -0.021612845361232758, 0.014299341477453709, -0.010950596071779728, -0.009731678292155266, 0.02516474388539791, 0.006163396406918764, 0.0350995771586895, -0.07528452575206757, 0.000642225262708962, 0.025754543021321297, 0.001445006811991334, 0.02673754096031189, 0.06443223357200623, -0.03106273151934147, -0.023473987355828285, -0.012346453033387661, -0.01644882932305336, 0.01487603411078453, -0.014522154815495014, -0.010406670160591602, 0.02011868916451931, 0.01726144179701805, 0.004774092696607113, 0.019607529044151306, -0.026409875601530075, 0.0363578125834465, -0.03960825875401497, 0.015478938817977905, -0.01994830183684826, 0.006828558165580034, -0.05337022989988327, -0.009069792926311493, 0.03279280662536621, 0.014050315134227276, -0.024417666718363762, -0.033946190029382706, -0.01927986368536949, 0.010288710705935955, -0.0345228835940361, 0.0017382678342983127, -0.011789420619606972, 0.002921141916885972, 0.03869079425930977, -0.022006044164299965, -0.010537737049162388, -0.014718754217028618, 0.03648887947201729, 0.007968835532665253, -0.0024411112535744905, -0.028362764045596123, -0.014377981424331665, 0.03971311077475548, -0.040945135056972504, 0.01736629568040371, -0.011134088970720768, 0.011664907447993755, -0.02068227343261242, -0.07953107357025146, 0.0004828976816497743, 0.01782502792775631, -0.007339716888964176, -0.014548367820680141, -0.009757891297340393, 0.0411810539662838, -0.032189901918172836, 0.006143736187368631, -0.02378854714334011, -0.032845232635736465, -0.026606474071741104, 0.004416937008500099, -0.03664615750312805, 0.040001459419727325, 0.022438563406467438, 0.01487603411078453, 0.01469254121184349, -0.006464849226176739, 0.030617104843258858, 0.029699640348553658, 0.01264135167002678, 0.006392762530595064, 0.005881603807210922, -0.010413223877549171, -0.023749226704239845, -0.01589835062623024, -0.0023690247908234596, 0.012995230965316296, -0.010216624476015568, 0.005645683966577053, -0.028074417263269424, -0.0058390069752931595, 0.018768705427646637, 0.005049332045018673, -0.01747114770114422, -0.004331743810325861, -0.010668803006410599, -0.0196730624884367, -0.004479193594306707, 0.040106311440467834, -0.006953071337193251, 0.010911275632679462, -0.02562347613275051, 0.03549277409911156, -0.029725853353738785, 0.02755015157163143, 0.04233444109559059, -0.005809517111629248, 0.05192849785089493, -0.02057742141187191, -0.030433611944317818, -0.03984417766332626, -0.022622056305408478, 0.0044431500136852264, -0.023447774350643158, -0.0050296722911298275, 0.006399315781891346, 0.0020888703875243664, 0.006776131689548492, -0.02747151255607605, 0.0341821126639843, -0.02554483711719513, 0.007601849734783173, -0.01774638704955578, 0.008794553577899933, -0.03342192620038986, 0.004508683457970619, -0.03572869300842285, -0.0047413259744644165, 0.036436453461647034, 0.0027655004523694515, -0.03738012909889221, -0.007195543963462114, 0.03952961787581444, -0.028546256944537163, 0.010944042354822159, 0.03709178417921066, 0.022635163739323616, 0.005124695133417845, 0.0015727964928373694, -0.0058848802000284195, -0.0350995771586895, 0.02664579451084137, -0.02039392851293087, 0.028467616066336632, 0.0009764445130713284, -0.0018480359576642513, -0.00011314714356558397, 0.005848837085068226, 0.003319256007671356, 0.025112317875027657, -0.029254015535116196, 0.008329268544912338, -0.0007900844793766737, -0.011874613352119923, 0.021612845361232758, -0.03583354875445366, -0.017418721690773964, 0.009037026204168797, -0.025977356359362602, 0.03032875992357731, -0.005023119039833546, 0.006199439521878958, -0.060500238090753555, -0.008165434934198856, -0.014286234974861145, -0.00023530510952696204, 0.03308115527033806, -0.041469402611255646, 0.05289838835597038, -0.031115157529711723, 0.04288491979241371, 0.029883133247494698, -0.03276659548282623, -0.01441730186343193, -0.014849820174276829, -0.021573524922132492, 0.030250119045376778, 0.01179597433656454, -0.02196672558784485, 0.004207230638712645, 0.011520734056830406, -0.019712382927536964, -0.031272437423467636, 0.04723632335662842, -0.0077001494355499744, 0.015190592966973782, 0.0018955474952235818, 0.015190592966973782, -0.004207230638712645, -0.0064484658651053905, 0.004328466951847076, -0.014142061583697796, 0.012366112321615219, -0.028048204258084297, -0.0022625334095209837, -0.006998944561928511, -0.04941202327609062, 0.0005132067599333823, 0.0006201078067533672, -0.01872938498854637, 0.007641169708222151, -0.03675101324915886, -0.007955729030072689, 0.01948956958949566, -0.021180326119065285, -0.023172535002231598, 0.007156223990023136, 0.01891287788748741, 0.0024247278925031424, 0.011822187341749668, -0.013165617361664772, -0.01170422788709402, -0.006874431390315294, -0.013591582886874676, -0.015125059522688389, 0.025243384763598442, 0.002996505005285144, 0.020787127315998077, -0.015007100068032742, 0.02314632199704647, 0.026685114949941635, 0.03051225282251835, 0.024325920268893242, 0.010989915579557419, -0.0003217269841115922, 0.022189537063241005, -0.03030254691839218, 0.010852295905351639, 0.0027933521196246147, -0.07308261096477509, -0.013512943871319294, 0.009620271623134613, -0.032661739736795425, -0.03226854279637337, 0.032923873513936996, -0.014037208631634712, -0.02930644154548645, -0.006323952693492174, -0.059399280697107315, 0.012064659968018532, -0.02920158952474594, -0.046161577105522156, -0.0036141553428024054, 0.001391761121340096, -0.005340954754501581, 0.019437143579125404, -0.0332646481692791, 0.014220701530575752, -0.016579896211624146, -0.010917829349637032, 0.00951541867107153, -0.023382240906357765, 0.017772600054740906, -0.019594423472881317, 0.015478938817977905, 0.010485310107469559, 0.02407689392566681, -0.0040008011274039745, -0.005419594701379538, -0.003088251454755664, -0.02305457554757595, 0.016514362767338753, -0.009554739110171795, 0.003971311263740063, -0.006992391310632229, -0.004236720502376556, -0.005295081529766321, 0.0007311046356335282, -0.01681581698358059, -0.0036370919551700354, 0.024784652516245842, 0.02479775808751583, -0.001334419590421021, 0.04471984878182411, -0.013683329336345196, 0.008250628598034382, -0.024640478193759918, 0.010911275632679462, -0.024194853380322456, 0.02343466877937317, 0.0008527506142854691, 0.0041154841892421246, -0.0134211964905262, 0.03066953271627426, -0.01828376017510891, -0.006238759495317936, 0.015570685267448425, 0.024299705401062965, -0.024941930547356606, 0.021009940654039383, 0.021625952795147896, -0.0020479122176766396, -0.03478501737117767, 0.0013180362293496728, -0.0009207412949763238, -0.005101758521050215, 0.009345032274723053, 0.014679433777928352, -0.022097790613770485, 0.015767285600304604, 0.01487603411078453, -0.026868607848882675, -0.08031747490167618, -0.015308552421629429, -0.004036844242364168, -0.023002149537205696, 0.0744457021355629, -0.010131430812180042, -0.025675904005765915, 0.022857975214719772, -0.0030489314813166857, -0.0254661962389946, 0.02242545783519745, 0.021652165800333023, 0.003827138105407357, 0.021612845361232758, -0.015911458060145378, 1.0316357474948745e-05, -0.027943352237343788, -0.002531219506636262, -0.021350713446736336, 0.04199366644024849, 0.017589107155799866, -0.059661414474248886, 0.003876288188621402, 0.03342192620038986, -0.036148104816675186, -0.015872137621045113, -0.026305021718144417, -0.031010305508971214, 0.024207958951592445, -0.020511887967586517, -0.056358542293310165, -0.04749845340847969, -0.015308552421629429, -0.03239960968494415, -0.029883133247494698, 0.043592676520347595, -0.01848035864531994, 0.04558488726615906, -0.019686169922351837, 0.0002852741745300591, -0.012031893245875835, 0.012942804954946041, 0.0018332909094169736, -0.00914843287318945, 0.03536170721054077, 0.0005054246867075562, 0.05203334987163544, -0.008558634668588638, 0.036148104816675186, 0.005095205269753933, 0.0004763443721458316, 0.0010722867446020246, 0.01754978857934475, -0.020066263154149055, -0.009115666151046753, 0.024601159617304802, -0.020144902169704437, 0.0009371245978400111, -0.01689445599913597, -0.04741981625556946, -0.03423453867435455, 0.021429352462291718, -0.017589107155799866, 0.012136746197938919, 0.030748171731829643, -0.012628245167434216, -0.013879929669201374, -0.010177304036915302, 0.0028228419832885265, 0.008788000792264938, 0.004751156084239483, 0.011055449023842812, -0.005789857357740402, 0.03428696468472481, -0.01533476635813713, -0.010832635685801506, -0.00901081319898367, -0.0048232427798211575, 0.009849637746810913, -0.01985655538737774, 0.005934030283242464, -0.0028883751947432756, -0.02149488590657711, -0.027052100747823715, 0.031927768141031265, -0.006130629684776068, 0.013067318126559258, 0.0023411731235682964, -0.03334328532218933, 0.0022576183546334505, 0.033395711332559586, -0.0012107256334275007, -0.03245203569531441, -0.010747442953288555, 0.04789165407419205, 0.017418721690773964, -0.00019618998339865357, -0.03250446170568466, -0.028520043939352036, -0.0020053156185895205, -0.023906506597995758, 0.027576366439461708, 0.03106273151934147, -0.003114464692771435, 0.005665344186127186, 0.006222376134246588, 0.02977828122675419, 0.024417666718363762, -0.020367715507745743, -0.016658537089824677, -0.04034223034977913, 0.03502093628048897, 0.03336950019001961, 0.02057742141187191, 0.020747806876897812, -0.021350713446736336, -0.01846725307404995, 0.024011360481381416, 0.03276659548282623, -0.017615320160984993, 0.00397458765655756, 0.005517894402146339, 0.0020397205371409655, 0.008191648870706558, -0.020695380866527557, -0.015085740014910698, -0.00804092176258564, 0.011953253298997879, -0.03205883502960205, 0.0076149567030370235, -0.0030227182433009148, -0.022530309855937958, -0.010452543385326862, -0.004085994325578213, 0.01893909089267254, 0.004285870585590601, -0.014482834376394749, -0.014574580825865269, 0.04503440856933594, 0.027261806651949883, -0.02765500545501709, 0.03402483090758324, 0.013198384083807468, 0.02049878053367138, -0.006835111416876316, -0.029542360454797745, 0.014731860719621181, -0.03124622441828251, -0.014574580825865269, -0.0015834457008168101, -0.01006589736789465, 0.043514035642147064, -0.01460079476237297, -0.055886704474687576, 0.002832672093063593, 0.03184913098812103, -0.027890924364328384, 0.03916263207793236, 0.025413770228624344, -0.004308807197958231, -0.009161539375782013, 0.0038369682151824236, 0.007798449601978064, 0.016409510746598244, 0.0573546476662159, -0.029437508434057236, -0.024470092728734016, -0.018690064549446106, -0.0010378818260505795, -0.008814213797450066, 0.008984600193798542, -0.004246550612151623, -0.018532786518335342, 0.002095423638820648, 0.002740925643593073, 0.0038893946912139654, -0.015138166025280952, 0.016291551291942596, -0.005694834049791098, 0.03169184923171997, 0.04013252630829811, -0.011193068698048592, 0.03444424271583557, -0.01663232408463955, 0.045611098408699036, 0.025662796571850777, -0.006323952693492174, 0.009154986590147018, 0.031639423221349716, 0.009253285825252533, 0.02637055516242981, -0.022124003618955612, 0.006609022151678801, 0.007057924289256334, 0.01992208883166313, -0.005422871559858322, 0.06726326793432236, 0.05124695226550102, -0.040394656360149384, 0.009888958185911179, -0.0024460263084620237, 0.007890195585787296, 0.006609022151678801, -0.018952198326587677, -0.03502093628048897, 0.019712382927536964, 0.014823607169091702, 0.027261806651949883, 0.01956821046769619, 0.017051735892891884, 0.013879929669201374, 0.0010657334933057427, 0.0051214187406003475, -0.01588524505496025, 0.023958934471011162, 0.05056540668010712, 0.0023460881784558296, 0.00951541867107153, -0.0402635894715786, 0.024116212502121925, 0.02665890008211136, 0.072715625166893, 0.0263836607336998, 0.007922962307929993, 0.028913242742419243, 0.009364692494273186, 0.012510285712778568, 0.02600356936454773, 0.01487603411078453, -0.016461936756968498, 0.036069467663764954, -0.0018906324403360486, -0.0019250373588874936, 0.021639058366417885, 0.006038883235305548, -0.018152693286538124, 0.005550661124289036, -0.021180326119065285, 0.0031062730122357607, -0.02582007646560669, 0.01764153502881527, 0.023290494456887245, -0.03884807229042053, -0.02710452675819397, -0.014495940878987312, 0.012431645765900612, -0.011219281703233719, 0.022307496517896652, 0.004659409634768963, -0.009843084961175919, 0.022556522861123085, 0.031639423221349716, 0.039372339844703674, 0.018126480281352997, 0.025426877662539482, 0.005947136785835028, -0.015033313073217869, 0.03460152447223663, 0.006225652992725372, 0.01337532326579094, 0.007044817786663771, 0.0018906324403360486, -0.009574398398399353, 0.05483817309141159, -0.003692795056849718, -0.0039025014266371727, -0.004017184488475323, -0.005003458820283413, -0.05145666003227234, -0.021573524922132492, -0.024378346279263496, 0.02288419008255005, -0.005675174295902252, 0.018624532967805862, -0.006353442557156086, 0.01533476635813713, -0.012910038232803345, 0.03208504989743233, -0.0006172407302074134, -0.012392326258122921, 0.01903083734214306, 0.0024738777428865433, -0.016684750095009804, -0.019161904230713844, 0.03454909846186638, -0.027314232662320137, -0.0015318383229896426, 0.005065715406090021, 0.032006409019231796, -0.04721010848879814, -0.0022395967971533537, 0.017890559509396553, -0.02452251873910427, -0.025872502475976944, 0.0341821126639843, 0.015085740014910698, 0.011507627554237843, 0.023723013699054718, 0.018690064549446106, -0.011265154927968979, -0.02048567496240139, -0.008303054608404636, 0.011520734056830406, 0.0016489787958562374, 0.01764153502881527, 0.01606873795390129, -0.012071213684976101, -0.0049379258416593075, -0.014142061583697796, -0.014260021969676018, 0.0015203700168058276, 0.0012172790011391044, -0.0009813595097512007, 0.02424727939069271, -0.0021920851431787014, -0.03879564628005028, -0.018506571650505066, 0.03391997888684273, 0.009784105233848095, -0.008650381118059158, 0.013958568684756756, 0.014312447980046272, 0.013670222833752632, -0.02718316577374935, 0.01891287788748741, -0.001892270753160119, -0.010806422680616379, -0.02022354118525982, 0.03517821431159973, 0.012529945932328701, -0.01698620244860649, 0.002385408151894808, -0.006156843155622482, 0.010989915579557419, -0.0014040485257282853, -0.010373903438448906, 0.0003788637404795736, -0.02665890008211136, 0.006497615482658148, -0.010393563657999039, 0.005858667194843292, -0.03850730136036873, -0.0038599048275500536, -0.003329085884615779, -0.008073688484728336, -0.020420141518115997, -0.0020675722043961287, 0.02820548415184021, 0.009587505832314491, 0.00855208095163107, -0.010950596071779728, 0.006422252394258976, 0.0013581753009930253, -0.03648887947201729, 0.012739651836454868, -0.004456256981939077, -0.025938035920262337, -0.006271526217460632, -0.00799504853785038, 0.016121163964271545, -0.011291367933154106, -0.044588781893253326, -0.02516474388539791, 0.006546765565872192, 0.054890599101781845, 0.013801289722323418, 0.016973095014691353, -0.0009444970637559891, -0.02378854714334011, -0.013447410427033901, 0.003827138105407357, 0.0786922499537468, -0.012765864841639996, -0.0061371829360723495, 0.028336551040410995, 0.013178723864257336, -0.030171480029821396, 0.01762842759490013, 0.0008740489138290286, 0.017772600054740906, 0.015216805972158909, -0.0046725161373615265, 0.021822551265358925, 0.023749226704239845, 0.022202644497156143, 0.020524995401501656, -0.008984600193798542, 0.0591895766556263, 0.007831215858459473, 0.03305494040250778, 0.0047314963303506374, 0.012851058505475521, -0.0461091510951519, 0.02699967287480831, -0.02635744772851467, -0.004167910665273666, -0.020328395068645477, 0.00312593299895525, 0.024221066385507584, 0.015452725812792778, -0.0071431174874305725, 0.014404194429516792, -0.020184222608804703, -0.0046037063002586365, -0.044510141015052795, 0.0010305093601346016, -0.005383551586419344, 0.003922161180526018, 0.021101687103509903, -0.007241417188197374, 0.03135107830166817, -0.01993519626557827, -0.042491719126701355, 0.016029417514801025, 0.018978411331772804, 0.023998253047466278, 0.028231697157025337, -0.010275604203343391, -0.022097790613770485, 0.02325117588043213, 0.022359924390912056, -0.007523209787905216, -0.006953071337193251, -0.005013288930058479, 0.004282593727111816, 0.011278261430561543, 0.009338479489088058, -0.008073688484728336, -0.036069467663764954, -0.002018422121182084, -0.011540394276380539, 0.038087889552116394, 0.02169148623943329, -0.02664579451084137, -0.009259839542210102, -0.0014589326456189156, 0.003065314842388034, -0.00942367222160101, -0.008054029196500778, -0.03381512686610222, -0.0007208650931715965, 0.03869079425930977, -0.028991881757974625, 0.019961409270763397, -0.00201023044064641, 0.040289804339408875, 0.010819529183208942, 0.004954309202730656, 0.024745332077145576, -0.005622747354209423, 0.008656933903694153, -0.010144537314772606, 0.008479994721710682, 0.004367786925286055, -0.008250628598034382, -0.008958387188613415, -0.03148214519023895, -0.004400553647428751, -0.007346270605921745, 0.03198019415140152, -0.033762697130441666, -0.022255070507526398, 0.01947646401822567, 0.008519314229488373, -0.017956092953681946, -0.004220337141305208, -0.016094950959086418, -0.01515127345919609, -0.041862599551677704, -0.012149852700531483, -0.0004718389536719769, -0.0018496742704883218, -0.008381694555282593, -0.011520734056830406, 0.009220520034432411, -0.024509413167834282, -0.008329268544912338, -0.02920158952474594, -0.015125059522688389, 0.021901192143559456, -0.01900462433695793, 0.0008281756890937686, -0.009567845612764359, 0.0034535990562289953, -0.015492045320570469, 0.017798813059926033, -0.028991881757974625, -0.001449102652259171, -0.024024466052651405, -0.01865074597299099, 0.006055266596376896, -0.023487094789743423, 0.010531183332204819, 0.0363578125834465, 0.017798813059926033, -0.026331234723329544, 0.028257910162210464, -0.008421014994382858, 0.003042378230020404, 0.0021036153193563223, -0.020839553326368332, 0.006697491742670536, 0.0024787927977740765, -0.004728219471871853, 0.02169148623943329, -0.0038304149638861418, 0.005291805136948824, -0.026436088606715202, -0.004063057713210583, -0.012510285712778568, -0.029909346252679825, 0.039634473621845245, 0.005416317842900753, 0.011107875034213066, -0.021023046225309372, 0.0037190085276961327, 0.059294428676366806, -0.039634473621845245, -0.027025887742638588, -0.0034961956553161144, 0.0360170416533947, 0.008355481550097466, 0.029804494231939316, 0.00910255964845419, 0.009580952115356922, 0.012988678179681301, 0.019908983260393143, 0.001708777854219079, 0.003781264880672097, 0.03423453867435455, -0.002894928678870201, -0.03758983686566353, 0.025413770228624344, -0.02516474388539791, 0.002675392432138324, -0.024470092728734016, -0.014351768419146538, 0.0006082298932597041, -0.02352641522884369, 0.008571741171181202, 0.0019168457947671413, -0.017484255135059357, -0.037065573036670685, 0.00335529912263155, 0.005973350256681442, -0.012320239096879959, 0.012300579808652401, 0.024640478193759918, 0.001586722326464951, -0.05751192569732666, 0.012510285712778568, -0.02380165457725525, -0.011907380074262619, -0.005183675326406956, 0.007732916157692671, -0.003196381265297532, -0.024483198300004005, 0.00864382740110159, -0.025518624112010002, 0.024050680920481682, 0.022818656638264656, 0.012588925659656525, -0.026763753965497017, 0.018165798857808113, -0.024574944749474525, -0.007490443531423807, 0.010583610273897648, 0.02802199125289917, 0.0007204554858617485, 0.004898605868220329, -0.009305712766945362, 0.000822031928692013, 0.003555175382643938, 0.024391451850533485, -0.008158882148563862, -0.0002043816348304972, -0.040394656360149384, 0.0007978665526024997, -0.0356762669980526, -0.006563148926943541, -0.014744967222213745, 0.019057050347328186, 0.03161320835351944, 0.0008879746892489493, 0.021062366664409637, 0.0017808644333854318, -2.538131047913339e-05, 0.020158009603619576, -0.01314595714211464, -0.02233371138572693, 0.0026999672409147024, -0.008119561709463596, -0.023093895986676216, 0.018519679084420204, 0.0013090254506096244, -0.014456621371209621, 0.02011868916451931, -0.008997706696391106, 0.04063057526946068, 0.015675539150834084, 0.0016416063299402595, 0.020813340321183205, -0.013919249176979065, -0.0011410966981202364, -0.00629773922264576, -0.0021003386937081814, -0.00873557385057211, -0.03347435221076012, 0.023264281451702118, -0.013932355679571629, -0.0015736157074570656, 0.009816871955990791, 0.019974516704678535, -0.02728801965713501, -0.004217060748487711, 0.02169148623943329, 0.0059667970053851604, -0.025754543021321297, -0.054261479526758194, -0.021796338260173798, -0.013394983485341072, -0.003245531115680933, -0.026593368500471115, 0.043042197823524475, -0.011592821218073368, 0.029516147449612617, -0.007379036862403154, -0.002906396985054016, -0.010609823279082775, -0.006461572367697954, -0.014836713671684265, -0.022386137396097183, -0.01726144179701805, 0.026973459869623184, 0.0025901992339640856, -0.0019676340743899345, 0.023814760148525238, -0.048651840537786484, 0.0127330981194973, -0.0025607093703001738, -0.01432555541396141, -0.006245312746614218, 0.005773473996669054, 0.004154804162681103, -0.04133833572268486, -0.0021232753060758114, 0.005589981097728014, -0.004433320369571447, -0.007503550034016371, 0.050014927983284, 0.015557578764855862, 0.01524301990866661, 0.004479193594306707, 8.882818656275049e-05, -0.012117086909711361, 0.013303237035870552, -0.005534277763217688, -0.02359194867312908, -0.01728765480220318, 0.01505952700972557, -0.02886081673204899, 0.021757017821073532, 0.011409328319132328, 0.0026360724586993456, -0.012103979475796223, 0.04933338239789009, -0.008440674282610416, 0.038900502026081085, -0.03913642093539238, -0.02270069718360901, -0.006294462829828262, -0.042019881308078766, -0.005717770662158728, -0.010721229948103428, -0.026226382702589035, -0.004852732643485069, 0.028048204258084297, 0.019057050347328186, 0.03887428715825081, -0.014679433777928352, -0.036882080137729645, -0.019777916371822357, 0.01827065274119377, -0.02553172968327999, -0.03014526702463627, -0.01323770359158516, 0.023854080587625504, 0.011736993677914143, 0.000718817173037678, 0.026868607848882675, 0.012647905386984348, -0.008715913631021976, 0.0005242655170150101, 0.0030145265627652407, -0.04513926059007645, 0.044326648116111755, -0.01698620244860649, 0.003188189584761858, 0.0161735899746418, 0.006245312746614218, 0.009456438943743706, -0.007012051064521074, -0.026868607848882675, 0.026344342157244682, -4.7383568016812205e-05, 0.007077584508806467, 0.0017612044466659427, 0.006808898411691189, 0.004187570884823799, 0.0017939710523933172, -0.025702117010951042, -0.036698587238788605, -0.024470092728734016, 0.00031640243832953274, -0.004177740775048733, 0.021625952795147896, 0.0006143736536614597, 0.017484255135059357, -0.020367715507745743, -0.0005386008997447789, 0.019804129377007484, 0.048468347638845444, -0.02609531581401825, -0.04008009657263756, 0.0040008011274039745, 0.03958204388618469, -0.0017120545962825418, 0.04728874936699867, 0.005206611938774586, 0.010917829349637032, -0.016239123418927193, -0.011442095041275024, 0.02509921044111252, 0.019712382927536964, -0.011848400346934795, 0.003443768946453929, -0.01727454923093319, 0.04603051021695137, -0.018336186185479164, 0.02167837880551815, 0.02509921044111252, -0.04086649790406227, -0.0024509411305189133, 0.005537554621696472, 0.022661376744508743, 0.05074889957904816, -0.005363891366869211, -0.022989042103290558, -0.01625223085284233, -0.002672115806490183, 0.0350995771586895, -0.012431645765900612, -0.06364583224058151, -0.012634798884391785, -0.027864711359143257, 0.01836239919066429, -0.003922161180526018, -0.03271416574716568, -0.006163396406918764, -0.011632140725851059]], "input": ["WEIGHT RESTRICTION:Weight restrictions are limits imposed on the weight of bags that passengers can carry on board or check in.", "FLIGHT DESTINATION:The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.", "PRE-CHECKED CARRY-ON:A pre-checked carry-on is a bag that has been checked in online prior to arriving at the airport, allowing for expedited security checks.", "SECURITY CHECK:The security check is a procedure that passengers must go through to ensure safety before boarding the aircraft.", "EXTRA SEAT:An extra seat may be purchased for oversized items that cannot fit in the cabin or under the seat.", "UNDER-SEAT STORAGE:Under-seat storage refers to the space under the seat in front of a passenger where personal bags must be placed.", "CHECK-IN PROCESS:The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight.", "AIRPLANE STORAGE:Airplane storage refers to the designated areas on an aircraft where passengers can store their carry-on and personal bags.", "BAG DIMENSIONS:Bag dimensions refer to the measurements of a bag that must comply with airline policies for carry-on and checked luggage.", "BAG WEIGHT:Bag weight refers to the total weight of a bag, which must adhere to airline restrictions for carry-on and checked luggage.", "CARGO HOLD:The cargo hold is the area of the aircraft where checked bags are stored during the flight.", "FLIGHT CHECK-IN:Flight check-in is the policy that requires passengers to confirm their attendance and check their baggage before boarding.", "BAGGAGE ENFORCEMENT:Baggage enforcement refers to the policies and procedures that airline representatives follow to ensure compliance with baggage limits.)<|COMPLETE|>", "PASSENGERS:Individuals traveling on flights who must check in at the counters regardless of luggage.", "SECURITY CHECK AREAS:", "U.S:Country with specific guidelines regarding the carrying of liquids in handbags."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-de6587a5dac0254abf99141f053172ab b/cache/text_embedding/embedding-de6587a5dac0254abf99141f053172ab deleted file mode 100644 index 1c73330db42fa8ffb931c17fa45c82142980e42b..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-de6587a5dac0254abf99141f053172ab +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.006641480606049299, 0.0040245759300887585, 0.0594322606921196, 0.0728764533996582, -0.011676851660013199, 0.013357375748455524, -0.04209371656179428, 0.03137804940342903, 0.025648146867752075, 0.012749658897519112, -0.03177492693066597, 0.04075425863265991, -0.04075425863265991, 0.026417095214128494, -0.00395016185939312, -0.004098990466445684, -0.020017459988594055, 0.009630457498133183, -0.007286405190825462, 0.010169961489737034, 0.02315526455640793, 0.06166469305753708, -0.06761784106492996, 0.0004197434464003891, -0.009171568788588047, -0.0015844055451452732, -0.03745522350072861, -0.01025677751749754, 0.0500064417719841, -0.005745408125221729, 0.05839046090841293, -0.029666520655155182, 0.06072210893034935, -0.03289114311337471, -0.002894408069550991, -0.04122554883360863, 0.02031511813402176, 0.011224164627492428, 0.03772807493805885, -0.012569824233651161, -0.0059686508029699326, 0.013568216934800148, -0.0073794228956103325, 0.0111807556822896, 0.006412036716938019, 0.042192935943603516, 0.03341204300522804, -0.07496005296707153, -0.008123566396534443, 0.010473819449543953, -0.03557005897164345, 0.05452091246843338, -0.0063624270260334015, 0.025598537176847458, -0.02198944054543972, -0.0026246560737490654, 0.03405696898698807, 0.04045660048723221, -0.0322958268225193, -0.03274231404066086, 0.026615532115101814, -0.012997706420719624, -0.016954069957137108, -0.018157102167606354, 0.016234731301665306, 0.009407213889062405, -0.005993455648422241, 0.003637001384049654, -0.02440790645778179, -0.005670993588864803, -0.006188793573528528, 0.008799497038125992, 0.04095269739627838, -0.0021874718368053436, -0.006222900003194809, 0.009822694584727287, -0.025127245113253593, 0.010566838085651398, 0.049336712807416916, 0.031055588275194168, -0.05635646730661392, 0.022435925900936127, -0.04827011004090309, -0.009103355929255486, 0.009183971211314201, 0.008861509151756763, -0.031303636729717255, -0.030137812718749046, -0.0015347959706559777, -0.04420212283730507, -0.029740935191512108, 0.009729675948619843, -0.024928808212280273, 0.02463115006685257, -0.05774553492665291, -0.040679845958948135, 0.014163531363010406, 0.018553977832198143, -0.02420946955680847, 0.03586771711707115, -0.014833260327577591, -0.022262293845415115, 0.008706479333341122, 0.01173886377364397, 0.03566927835345268, -0.03497474640607834, -0.04755077138543129, 0.03477630764245987, 0.04720350354909897, -0.014833260327577591, 0.03155168518424034, -0.0428626649081707, -0.04132476821541786, 0.07109051197767258, -0.015354161150753498, 0.0053113242611289024, 0.0036401019897311926, -0.018678002059459686, 0.01653238758444786, 0.0120365209877491, -0.01061024609953165, -0.004629192873835564, 0.04571521654725075, -0.05397520959377289, 0.012433397583663464, -0.026590727269649506, -0.02502802573144436, 0.022795595228672028, -0.03951402008533478, -0.046335335820913315, 0.03772807493805885, -0.0019161695381626487, 0.02234910987317562, -0.029592106118798256, -0.003841640893369913, 0.02463115006685257, 0.023750580847263336, -0.015751037746667862, -0.010573038831353188, 0.013754252344369888, 0.005255513358861208, 0.01596187800168991, 0.01250781212002039, 0.004213712643831968, -0.0382985845208168, 0.005339229479432106, -0.029964178800582886, 0.03023703023791313, 0.057596705853939056, 0.017388153821229935, 0.025648146867752075, 0.05333028361201286, 0.02027790993452072, 0.014957284554839134, 0.009785487316548824, 0.0015309202717617154, 0.006796510890126228, 0.020538359880447388, -0.022609559819102287, 0.016061097383499146, -0.04740194231271744, 0.007856914773583412, 0.038248974829912186, 0.005072578322142363, 0.01691686175763607, -0.011372992768883705, -0.006740699987858534, 0.0017921456601470709, -0.034305013716220856, 0.0017952461494132876, -0.020166289061307907, -0.008204181678593159, -0.045963265001773834, 0.026565922424197197, -0.03462747856974602, -0.015713829547166824, 0.018665598705410957, 0.0597299188375473, -0.016011487692594528, 0.007211990654468536, 0.010461417026817799, 0.055364277213811874, -0.050452928990125656, -0.009202574379742146, 0.010293984785676003, -0.00765227572992444, 0.027285261079669, -0.01408911682665348, -0.006157787516713142, -0.0013340322766453028, -0.018690403550863266, 0.015391368418931961, 0.007701885420829058, 0.028128623962402344, 0.01155902910977602, -0.011093939654529095, -0.03380892053246498, 0.034131381660699844, 0.045566387474536896, -0.03961323946714401, -0.011205560527741909, -0.053826380521059036, -0.010715666227042675, 0.014796053059399128, -0.05794397369027138, -0.0008278596214950085, 0.005875633098185062, 0.03331282362341881, 0.046905845403671265, 0.0037021138705313206, 0.02557373233139515, 4.059845377923921e-05, -0.0432843454182148, 0.05204043537378311, 0.05690217390656471, 0.0015549499075859785, 0.021170882508158684, 0.04531833902001381, 0.03700873628258705, 0.051197074353694916, -0.010455216281116009, 0.04675701633095741, -0.01766100525856018, -0.008607259951531887, -0.045417558401823044, -0.011211762204766273, 0.002528537530452013, -0.00912195909768343, 0.006616675760596991, -0.042019303888082504, 0.013940288685262203, 0.009264586493372917, 0.055364277213811874, -0.0285751111805439, -0.004185807425528765, 0.005100483540445566, 0.0002530862984713167, -0.031130002811551094, -0.001944074872881174, -0.01767340861260891, 0.0046726008877158165, 0.022274695336818695, -0.014039507135748863, -0.004164102952927351, 0.0067282975651323795, -0.01580064743757248, 0.03003859333693981, -0.013382180593907833, 0.013456595130264759, 0.004883441608399153, -0.022274695336818695, -0.01194970402866602, 0.048369329422712326, -0.11787232756614685, 0.008601058274507523, 0.002136311959475279, -0.021369321271777153, -0.05169316753745079, 0.010790080763399601, -0.021927429363131523, -0.013692240230739117, 0.00592524278908968, -0.004635394085198641, -0.03782729431986809, -0.06727056950330734, -0.018702806904911995, 0.01530455145984888, -0.039762068539857864, -0.038248974829912186, 0.0012565173674374819, -0.04509509727358818, -0.011279975064098835, 0.009463025256991386, -0.05645568668842316, -0.04266422614455223, 0.037852101027965546, 0.04638494551181793, -0.02196463569998741, -0.038273781538009644, -0.006529859267175198, -0.019446950405836105, -0.029666520655155182, -0.022088659927248955, -0.036760687828063965, 0.003494373755529523, -0.0187896229326725, 0.006622876971960068, -0.028872767463326454, -0.02026550844311714, -0.010740471072494984, 0.0714377760887146, -0.02366376295685768, -0.02181580662727356, -0.01474644336849451, 0.01467202976346016, -0.018293527886271477, -0.034677088260650635, -0.0057144020684063435, -0.06816354393959045, -0.02143133245408535, 0.008855307474732399, 0.07104089856147766, 0.005742307286709547, -0.010920305736362934, -0.060424450784921646, 0.01898806169629097, 0.003416858846321702, -0.033015165477991104, -0.026937995105981827, 0.005612082313746214, -0.029666520655155182, 0.030509883537888527, 0.024891600012779236, -0.02521406300365925, -0.021580161526799202, -0.01174506451934576, -0.05511622875928879, -0.0005770988063886762, 0.02350253239274025, 0.036760687828063965, -0.006424439139664173, -0.011490816250443459, -0.015837853774428368, 0.023738177493214607, -0.021542955189943314, -0.027954990044236183, -0.0017471868777647614, 0.07138817012310028, 0.007466239854693413, -0.03509876877069473, -0.010746672749519348, 0.009760682471096516, 0.037579245865345, -0.022473134100437164, -0.05938265100121498, -0.06419477611780167, -0.029939373955130577, 0.009004136547446251, 0.009841297753155231, -0.02217547595500946, 0.016433168202638626, -0.025697756558656693, 0.0268635805696249, 0.0473027229309082, 0.03852182999253273, 0.0447230227291584, 0.02991456910967827, 0.02217547595500946, -0.018169503659009933, -0.010393204167485237, 0.026417095214128494, -0.03214699774980545, -0.015937073156237602, 0.001646417542360723, -0.0398612879216671, -0.011900095269083977, 0.05263575166463852, -0.005190400872379541, -0.04712908715009689, 0.02423427253961563, -0.020067069679498672, -0.020426739007234573, 0.013965093530714512, 0.05204043537378311, 0.00837161485105753, -0.011776071041822433, -0.0534295029938221, -0.03155168518424034, 0.019682595506310463, -0.0331391915678978, 0.03217180445790291, -0.03743041679263115, -0.04452458769083023, -0.008545247837901115, 0.03522279113531113, 0.007714287843555212, 0.049733590334653854, 0.012470604851841927, 0.04082867503166199, 0.03145246580243111, -0.010597843676805496, 0.03125402703881264, 0.004864837974309921, -0.006015160121023655, 0.0004197434464003891, 0.08815620094537735, -0.038100145757198334, -0.07168582081794739, -0.020215898752212524, -0.025238867849111557, 0.04489665850996971, -0.011794674210250378, -0.02239871956408024, 0.03867065906524658, -0.045367948710918427, -0.015056503936648369, -0.055165838450193405, 0.016023889183998108, 0.01420073863118887, -0.009407213889062405, -0.03537162020802498, -0.06568306684494019, -0.035991739481687546, 0.010349796153604984, 0.007025954779237509, 0.010207168757915497, 0.0015293699689209461, -0.012886084616184235, 0.02350253239274025, 0.013989897444844246, 0.009587048552930355, 0.005345430690795183, 0.03611576557159424, 0.013915483839809895, 0.012712451629340649, 0.0237133726477623, 0.00977308489382267, -0.01785944402217865, -0.02726045623421669, -0.021542955189943314, 0.0432843454182148, 0.051048245280981064, 0.015081308782100677, 0.016420766711235046, 0.015924671664834023, -0.00239366153255105, 0.023924212902784348, -0.010275381617248058, 0.02198944054543972, -0.01541617326438427, -0.018082687631249428, 0.01691686175763607, -0.005013667047023773, 0.029244840145111084, -0.031055588275194168, 0.02104685828089714, 0.005162495654076338, -0.00016336275439243764, 0.006176391150802374, 0.00837781559675932, -0.026268266141414642, 0.0004929950810037553, -0.00493305129930377, -0.004802826326340437, 0.0176486037671566, -0.012886084616184235, 0.01825631968677044, 0.02403583563864231, 0.006796510890126228, 0.0016820743912830949, -0.03894351050257683, 0.01976941153407097, -0.027186043560504913, -0.04063023626804352, 0.005072578322142363, -0.01749977469444275, -0.02577216923236847, -0.004728411789983511, -0.008904917165637016, -0.009401013143360615, -0.016073498874902725, 0.03554525598883629, 0.0585888996720314, -0.0035904922988265753, 0.027905382215976715, 0.003202917752787471, -0.0018727611750364304, -0.0061639887280762196, -0.007298807613551617, -0.033188801258802414, 0.03006339818239212, -0.0016185120912268758, -0.00034881726605817676, 0.024556735530495644, 0.087164007127285, 0.004117594100534916, -0.012495409697294235, -0.04524392634630203, 0.005298921838402748, 0.012402391992509365, -0.02518925815820694, 0.006672486662864685, -0.07967296242713928, -0.037852101027965546, 0.05437208712100983, 0.01655719242990017, 0.02802940458059311, 0.023403313010931015, -0.006827516481280327, -0.026987604796886444, 0.002503732917830348, -0.008625863119959831, 0.05377677083015442, -0.01296049915254116, 0.03926597163081169, -0.02763252891600132, -0.0341561883687973, -0.008526644669473171, 0.013841069303452969, -0.0029006092809140682, 0.04115113615989685, -0.09644100069999695, 0.016507582738995552, 0.04640974849462509, 0.007106570526957512, -0.027359675616025925, 0.011428804136812687, 0.0022246791049838066, -0.023824995383620262, 0.033337630331516266, -0.05958108976483345, -0.0035718888975679874, -0.017747823148965836, -0.011621041223406792, -0.014634822495281696, -0.03420579805970192, 0.022497938945889473, -0.003361048176884651, -0.03534681722521782, 0.009965321980416775, 0.0237133726477623, 0.015205332078039646, -0.017524579539895058, -0.00497645977884531, -0.010349796153604984, 0.0152177345007658, 0.014907674863934517, -0.02634268067777157, 0.03249426558613777, -0.00549736013635993, -0.0024417208041995764, -0.018888842314481735, 0.008067755959928036, 0.02874874323606491, -0.03705834597349167, 0.014051909558475018, -0.026417095214128494, -0.03026183508336544, -0.018281124532222748, -0.013096925802528858, 0.0044617606326937675, -0.004774920642375946, -0.01417593378573656, 0.017028484493494034, -0.014535603113472462, -0.007522050756961107, -0.00894832517951727, 0.0345778688788414, 0.010027334094047546, -0.025474512949585915, -0.022659169510006905, 0.0022138268686830997, -0.00010939296771539375, -0.022659169510006905, -0.010281582362949848, 0.02071199379861355, 0.011186957359313965, -0.023266887292265892, -0.020910432562232018, 0.006548462901264429, 0.01938493736088276, -0.006715895142406225, -0.035619668662548065, 0.011776071041822433, -0.00455787917599082, 0.024928808212280273, -0.01174506451934576, -0.007354618515819311, -0.021728990599513054, -0.004610589239746332, 0.0029843254014849663, -0.03502435237169266, 0.002069649053737521, -0.02295682765543461, 0.04891503229737282, 0.017971064895391464, 0.04053101688623428, -0.026243461295962334, 0.04177125543355942, 0.022857608273625374, -0.005773313343524933, 0.018851635977625847, -5.285550651024096e-05, -0.025796974077820778, -0.026565922424197197, 0.004374943673610687, -0.03306477516889572, -0.06781627982854843, -0.01576343923807144, 0.038621049374341965, 0.010281582362949848, 0.002488229889422655, 0.022101061418652534, -0.011503218673169613, -0.01230317261070013, 0.012402391992509365, 0.005912840366363525, -0.05109785497188568, -0.04643455520272255, 0.02201424539089203, 0.03311438485980034, -0.025524122640490532, 0.013121730647981167, 0.0029905266128480434, -0.05466974154114723, 0.01938493736088276, 0.02760772407054901, -0.005044672638177872, 0.0391419492661953, -0.006982546765357256, 0.0021301107481122017, 0.013803862035274506, 0.006610475014895201, -0.017574189230799675, 0.0116458460688591, 0.006666285451501608, -0.041597623378038406, -0.01637115702033043, -0.023006437346339226, 0.011968308128416538, 0.002345602260902524, 0.02840147726237774, -0.013109328225255013, 0.03303997218608856, -0.036959126591682434, 0.04092789441347122, -0.023242082446813583, -0.007912726141512394, -0.032990362495183945, -0.011112542822957039, -0.04139918461441994, -0.024531930685043335, -0.04869179055094719, -0.024717966094613075, 0.011447407305240631, 0.02238631621003151, -0.006188793573528528, -0.0009666113764978945, -0.009047544561326504, 0.0050260694697499275, 0.03400735929608345, 0.038447413593530655, 0.008439827710390091, -0.0525861419737339, 0.033759310841560364, 0.0005945396260358393, -0.004762518219649792, -0.005621383897960186, 0.0006375604425556958, 0.016408363357186317, 0.02969132550060749, 0.0017068791203200817, -0.05809280276298523, -0.07823428511619568, 0.012799268588423729, 0.0038788479287177324, 0.016123108565807343, 0.02387460321187973, -0.0319981724023819, 0.03623978793621063, -0.022646768018603325, 0.03214699774980545, 0.0027874375227838755, 0.012234959751367569, 0.0012572924606502056, -0.012886084616184235, 0.01635875552892685, 0.03209738805890083, 0.01748737320303917, -0.032022975385189056, -0.020997248589992523, -0.010269179940223694, 0.016631606966257095, -0.04053101688623428, -0.025424903258681297, -0.04774920642375946, -0.014361969195306301, -0.013332570903003216, -0.03160129487514496, 0.0067655048333108425, 0.009946717880666256, -0.0008193330140784383, -0.02703721448779106, -0.020166289061307907, 0.005205904133617878, 0.020922834053635597, 0.022807998582720757, -0.00677170604467392, 0.0034075570292770863, 0.017202116549015045, 0.0009976173751056194, 0.028079014271497726, -0.009103355929255486, 0.023254483938217163, 0.07987140119075775, 0.028103819116950035, -0.013121730647981167, 0.01898806169629097, -0.019843826070427895, -0.007701885420829058, 0.03080754168331623, 0.004002871923148632, -0.047649990767240524, -0.04278825223445892, -0.02574736438691616, -0.0055531710386276245, -0.010802483186125755, 0.006070970557630062, 0.05526505783200264, 0.00873128417879343, -0.034305013716220856, 0.006678687874227762, -0.053677551448345184, -0.0357188880443573, -0.0009332799818366766, 0.0001948532008100301, 0.032022975385189056, -0.01653238758444786, -0.007435233797878027, -0.013121730647981167, -0.003947061020880938, 0.017995869740843773, -0.034850720316171646, -0.01953376643359661, -0.012476806528866291, 0.028872767463326454, -0.025090038776397705, 0.01694166660308838, 0.012712451629340649, -0.037876904010772705, 0.025313282385468483, -0.058340851217508316, -0.011862888000905514, -0.0035129773896187544, -0.02745889499783516, 0.022882413119077682, -0.03274231404066086, -0.02479238063097, 0.00947542767971754, 0.0029068104922771454, -0.007286405190825462, -0.006108177825808525, 0.004440056160092354, -0.02892237715423107, 0.01709049567580223, 0.009934315457940102, 0.0007712737424299121, 0.007522050756961107, 0.05953148007392883, -0.02574736438691616, -0.012098533101379871, 0.008768490515649319, -0.02202664688229561, 0.007732891011983156, 0.03152687847614288, -0.030906761065125465, 0.004030777141451836, 0.007794903125613928, -0.014163531363010406, -0.017809834331274033, 0.0003897064016200602, 0.04139918461441994, 0.009791688062250614, 0.03378411382436752, -0.009940517134964466, 0.0004185807192698121, -0.032072585076093674, 0.005503561347723007, -0.01841755211353302, -0.013220950029790401, -0.013406985439360142, 0.013047316111624241, -0.006443042308092117, 0.008365413174033165, 0.059680309146642685, 0.021853014826774597, -0.05164355784654617, 0.027483699843287468, 0.014014702290296555, -0.000972037436440587, 0.007596464827656746, -0.02835186757147312, -0.028798352926969528, 0.0677170604467392, -0.0026401591021567583, 0.00199678516946733, 0.016085902228951454, -0.05878733843564987, 0.004979560151696205, -0.00738562410697341, -0.017723018303513527, -0.024854393675923347, -0.0059221419505774975, -0.010622648522257805, -0.026218656450510025, 0.038993120193481445, 0.02894718199968338, -0.05333028361201286, -0.051048245280981064, 0.014808455482125282, 0.016991276293992996, 0.0010169961024075747, -0.006235302425920963, -0.0005491934134624898, 0.03175012394785881, -0.0018991162069141865, -0.028674330562353134, 0.002846348797902465, -0.004598186817020178, 0.012997706420719624, -0.003947061020880938, 0.004331535194069147, 0.01953376643359661, -0.015279746614396572, -0.034478649497032166, -0.022088659927248955, 0.022882413119077682, -0.0004185807192698121, -0.012402391992509365, 0.0045113698579370975, 0.021890221163630486, -0.027682138606905937, 0.015887463465332985, -0.006945339497178793, -0.0072553991340100765, -0.009723475202918053, 0.0018278025090694427, 0.014659627340734005, -0.001225511310622096, 0.0297161303460598, -0.002596750855445862, 0.00399357033893466, -0.01709049567580223, 0.0012131088878959417, -0.004570281133055687, -0.023601751774549484, -0.005522164981812239, 0.006219799630343914, -0.0007123623508960009, -0.0027517806738615036, 0.05729905143380165, 0.0077452934347093105, -0.015106112696230412, -0.02518925815820694, -0.01918650045990944, -0.022671572864055634, -0.011621041223406792, 0.0025161351077258587, 0.0059593492187559605, 0.03859624266624451, -0.004601287189871073, -0.01287368219345808, 0.03361048176884651, -0.01973220519721508, 0.017202116549015045, 0.003024633275344968, -0.0019254713552072644, -0.010870696045458317, 0.03522279113531113, 0.013196145184338093, -0.019223706796765327, 0.026764361187815666, 0.010498624294996262, -0.028054209426045418, 0.013531009666621685, 0.004077286459505558, 0.005571774672716856, 0.02141893096268177, -0.01821911334991455, -0.030509883537888527, 0.01993064396083355, 0.0029145621228963137, 0.03214699774980545, 0.00788171961903572, -0.029765740036964417, 0.017524579539895058, -0.02969132550060749, 0.03212219476699829, -0.005463253706693649, -0.011552827432751656, 0.02706201933324337, 0.025238867849111557, 0.0052741169929504395, 0.010312588885426521, -0.005819822195917368, 0.035073962062597275, -0.0038013330195099115, 0.03234543651342392, 0.0458640456199646, 0.02308085188269615, -0.0031130004208534956, -0.0006956966826692224, -0.008532845415174961, -0.002792088547721505, 0.005795017350465059, -0.0019301222637295723, -0.028649525716900826, 0.017611395567655563, 0.005546969827264547, 0.032643094658851624, -0.051792386919260025, 0.030584298074245453, -0.014126324094831944, 0.007931329309940338, 0.029939373955130577, 0.038422610610723495, 0.011788473464548588, 0.019670194014906883, 0.0030974973924458027, -0.006337622180581093, 0.001306902035139501, 0.006002757698297501, -0.045963265001773834, -0.02706201933324337, 0.011757466942071915, 0.014312360435724258, -0.0020417438354343176, -0.014597615227103233, 0.03814975544810295, -0.03884429112076759, 0.050849806517362595, 0.019211305305361748, 0.011193158105015755, 0.04792284220457077, 0.014337165281176567, -0.0304354690015316, 0.008104963228106499, 0.0014433283358812332, 0.00032498143264092505, -0.0031440062448382378, -0.004691204521805048, 0.05814241245388985, 0.013406985439360142, 0.07262840867042542, -0.018690403550863266, 0.02422187104821205, -0.003909854218363762, -0.008216584101319313, 0.041076719760894775, 0.024904003366827965, -0.007894122041761875, -0.03817456215620041, 0.031849343329668045, -0.037579245865345, 0.0029843254014849663, -0.022113464772701263, 0.028500696644186974, 0.0017394354799762368, -0.0018774120835587382, 0.03080754168331623, 0.014510798268020153, 0.017226921394467354, 0.03497474640607834, 0.024655954912304878, -0.006229101214557886, -0.00977308489382267, 0.02654111757874489, 0.02477997913956642, 0.00995912030339241, -0.010349796153604984, -0.001719281543046236, 0.021294906735420227, 0.0003176174941472709, -0.011962106451392174, 0.0608709380030632, 0.018678002059459686, 0.02666514180600643, -0.009884705767035484, -0.012737256474792957, -0.010455216281116009, 0.007404227741062641, 0.0053950403816998005, 0.03988609090447426, 0.04397888109087944, -0.0032370241824537516, 0.011714058928191662, -0.010188564658164978, 0.0009371557389385998, 0.018268723040819168, 0.024507125839591026, -0.0005472555058076978, 0.02855030633509159, 0.0285751111805439, -0.04167203605175018, -0.011695455759763718, 0.056306857615709305, 0.02780616283416748, 0.00733601488173008, 0.003699013264849782, 0.015440978109836578, 0.02032751962542534, 0.0013038014294579625, -0.025524122640490532, -0.010145156644284725, -0.01034359447658062, 0.004213712643831968, 0.01637115702033043, -0.012712451629340649, 0.04139918461441994, 0.009456823579967022, 0.02668994665145874, 0.041994497179985046, 0.026441900059580803, 0.02477997913956642, -0.007584062404930592, 0.05804319307208061, 0.02182820998132229, -0.0017487371806055307, 0.03522279113531113, -0.02671475149691105, -0.0028975086752325296, -0.03351126238703728, 0.002179720439016819, 0.0037269187159836292, -0.022423524409532547, 0.009711072780191898, -0.00601826049387455, 0.009748280048370361, -0.04497107118368149, 0.019496560096740723, 0.027409285306930542, 0.009797889739274979, 0.011633443646132946, 0.03363528475165367, 0.026789166033267975, -0.003088195575401187, -0.0024587742518633604, 0.04154801368713379, 0.041051916778087616, 0.014585212804377079, -0.025846583768725395, -0.007825909182429314, -0.016495181247591972, 0.033585675060749054, -0.01503169909119606, 0.005072578322142363, 0.00530202267691493, 0.02370097115635872, -0.031502075493335724, 0.01146601140499115, -0.011999313719570637, -0.032593484967947006, -0.020451543852686882, 0.008160773664712906, -0.034478649497032166, -0.01099472027271986, -0.013506204821169376, -0.037653662264347076, -0.015044101513922215, 0.02649150788784027, -0.002522336319088936, -0.004353239666670561, -0.06186312809586525, 0.05070097744464874, 0.02107166312634945, -0.027533309534192085, -0.028054209426045418, -0.005987254437059164, 0.028872767463326454, -0.015478184446692467, 0.03103078342974186, -0.024370700120925903, 0.019967850297689438, 0.011583833955228329, 0.04846854507923126, -0.03219660744071007, -0.021369321271777153, 0.015192929655313492, 0.029046401381492615, 0.0028246447909623384, -0.008985532447695732, 0.013196145184338093, 0.01689205691218376, 0.011590034700930119, 0.03772807493805885, 0.00695154070854187, -0.007404227741062641, -0.04683143272995949, -0.009580847807228565, 0.007211990654468536, -0.013704642653465271, 0.036760687828063965, 0.012402391992509365, 0.01597428135573864, -0.057993583381175995, -0.03286633640527725, 0.022423524409532547, 0.037876904010772705, 0.03291594609618187, 0.008309602737426758, -0.02029031328856945, 0.009977724403142929, 0.0013704643351957202, 0.025499317795038223, 0.002544040558859706, 0.03690951690077782, 0.03554525598883629, 0.03423060104250908, 0.0007022854406386614, -0.01176366861909628, 0.013828666880726814, 0.01428755559027195, -0.010405606590211391, -0.04549197107553482, -0.00938861072063446, -0.004167203791439533, -0.02290721796452999, 0.01839274726808071, 0.038273781538009644, 0.009828895330429077, -0.024680759757757187, 0.00032149325124919415, 0.03552044928073883, -0.004855536390095949, 0.004700506571680307, 0.019434547051787376, -0.02988976426422596, -0.013667435385286808, -0.004226115066558123, -0.00977928563952446, -0.007850714027881622, -0.040357381105422974, -0.015279746614396572, -0.015279746614396572, 0.014535603113472462, -0.010548233985900879, 0.006976345553994179, 0.0008495638612657785, 0.03904272988438606, 0.009444421157240868, -0.0003883499011863023, 0.02069959230720997, 0.0034416636917740107, -0.018144698813557625, 0.022646768018603325, 0.019645389169454575, -0.02931925468146801, -0.033908139914274216, 0.02444511465728283, -0.0035873916931450367, -0.0025130347348749638, 0.008055353537201881, -0.044251732528209686, -0.009983925148844719, 0.012669042684137821, -0.016098303720355034, -0.040704648941755295, 0.06191273778676987, -0.007670879364013672, -0.03209738805890083, 0.0036121965385973454, 0.01673082634806633, -0.04938632249832153, 0.009618055075407028, 0.03802573308348656, 0.001995234750211239, -0.008923521265387535, -0.004176505375653505, -0.004334636032581329, 0.023254483938217163, 0.028252648189663887, -0.003568788291886449, -0.005705100018531084, 0.03423060104250908, 0.0049547553062438965, -0.02067478746175766, 0.0027083721943199635, 0.020724397152662277, -0.028500696644186974, 0.016011487692594528, 0.011490816250443459, -0.032047778367996216, -0.0005263264756649733, 0.00643684109672904, 0.03886909410357475, 0.02064998261630535, 0.0011914047645404935, -0.03408177196979523, -0.021555356681346893, 0.01456040795892477, -0.010114150121808052, -0.01069706305861473, 0.025152049958705902, -0.0021750694140791893, -0.016606802120804787, 0.032990362495183945, 0.01767340861260891, -0.019980253651738167, -0.04291227459907532, 0.006529859267175198, 0.004098990466445684, 0.010895500890910625, 0.005695798434317112, 0.011372992768883705, -0.012923291884362698, 0.01993064396083355, 0.029939373955130577, -0.004982660990208387, -0.0028153429739177227, 0.02557373233139515, -0.008011944591999054, -0.0024060639552772045, 0.024742770940065384, -0.003323840908706188, -0.019136890769004822, 0.03269270434975624, -0.014548005536198616, -0.0009053745889104903, -0.016978874802589417, -0.03475150093436241, 0.009463025256991386, 0.00032943853875622153, -0.011726461350917816, 0.0002238244196632877, -0.039017923176288605, 0.0016340151196345687, -0.012848878279328346, -0.00039396973443217576, -0.0016030091792345047, 0.02046394720673561, 0.027558114379644394, -0.0017580389976501465, 0.01296049915254116, -0.005091181956231594, 0.009797889739274979, -0.06508775055408478, 0.03232063353061676, -0.04693065211176872, 0.013419387862086296, 0.003674208652228117, 0.0006050041993148625, -0.01296049915254116, 0.03361048176884651, -0.010690861381590366, -0.005894236732274294, 0.019099682569503784, -0.004089688882231712, 0.017375750467181206, 0.03852182999253273, 0.04787323251366615, -0.06682408601045609, 0.021319711580872536, 0.0019766311161220074, -0.022820400074124336, 0.0169292651116848, 0.0042571211233735085, 0.0062415036372840405, 0.009276988916099072, -0.008694076910614967, -0.0148580651730299, 0.008873911574482918, -0.013741849921643734, -0.00251768552698195, -0.0007712737424299121, 0.008991734124720097, -0.005748508498072624, -0.03641342371702194, 0.008545247837901115, -0.0045485771261155605, 0.008315803483128548, -0.0019037671154364944, 0.016296742483973503, -0.01844235695898533, -0.020997248589992523, -0.017214519903063774, 0.003401355817914009, 0.015242539346218109, -0.0021921226289123297, -0.02703721448779106, 0.01277446374297142, -0.007509648334234953, 0.00020541461708489805, 0.014758845791220665, -0.012371385470032692, 0.014548005536198616, 0.021381722763180733, -0.009649060666561127, 0.015713829547166824, 0.028525501489639282, 0.005636887159198523, -0.0055159637704491615, -0.011025725863873959, 0.01616031676530838, -0.013593021780252457, 0.005137690808624029, 0.01691686175763607, 0.015875061973929405, 0.020042264834046364, -0.008929722011089325, 0.013679837808012962, -0.03703354299068451, 0.0012076828861609101, -0.004005972295999527, -0.016395961865782738, -0.009897108189761639, -0.014833260327577591, -0.005571774672716856, -0.02914562076330185, -0.008855307474732399, -0.018826831132173538, 0.02666514180600643, -0.006536060478538275, 0.015254941768944263, 0.010467618703842163, -0.01447359099984169, -0.018665598705410957, -0.008898716419935226, 0.024395504966378212, 0.00225258432328701, 0.004126895684748888, -0.02723565138876438, 0.007317411247640848, -0.026565922424197197, 0.0012425646418705583, 0.0035005749668926, 0.03604134917259216, -0.0062384032644331455, 0.011317182332277298, -0.029021596536040306, 0.01861599087715149, 0.007038357201963663, -0.012433397583663464, 0.0004670275666285306, -0.014151128940284252, 0.001188304158858955, -0.032618291676044464, 0.01691686175763607, -0.0038788479287177324, -0.021741392090916634, -0.009103355929255486, -0.00968626793473959, 0.002147163962945342, -0.014845662750303745, 0.006784108467400074, 0.00018526072381064296, -0.0045888847671449184, -0.00798714067786932, 0.02743409015238285, 0.01315893791615963, 0.02855030633509159, -0.033362433314323425, -0.026094632223248482, 0.004998163785785437, 0.009159166365861893, 0.007205789443105459, 0.02182820998132229, 0.0023114958312362432, 0.006554664112627506, -0.024531930685043335, -0.007974738255143166, 0.0006073295953683555, -0.014188336208462715, -0.0042292154394090176, 0.0014107720926404, -0.0005654715350829065, 0.008322005160152912, -0.0205011535435915, 0.02969132550060749, -0.024879198521375656, -0.0169292651116848, 0.04152320697903633, -0.020612774416804314, 0.005044672638177872, -0.023440521210432053, -0.033015165477991104, -0.00512218801304698, -0.022708779200911522, -0.027731748297810555, -0.024110250174999237, 0.03576849773526192, -0.009946717880666256, 0.018305929377675056, 0.012569824233651161, 0.0010169961024075747, -0.0009270787704735994, 0.006319018546491861, -0.03946441039443016, 0.03217180445790291, -0.011546626687049866, -0.010752873495221138, -0.005119087174534798, -0.025846583768725395, -0.009704871103167534, -0.024668356403708458, 0.008452230133116245, -0.00969246868044138, -0.005174898076802492, -0.013208547607064247, 0.006374829448759556, 0.006796510890126228, -0.020798811689019203, 0.016061097383499146, 0.021530551835894585, -0.01670602150261402, -0.032444655895233154, -0.03137804940342903, -0.019496560096740723, 0.008873911574482918, 0.007912726141512394, -0.0012782214907929301, -0.038224171847105026, -0.002931615337729454, -0.028426282107830048, 0.012619433924555779, 0.0068523213267326355, -0.025697756558656693, 0.009438220411539078, -0.0025998514611274004, -0.04363161325454712, 0.010076942853629589, 0.0004073410527780652, 0.03641342371702194, -0.021679380908608437, -0.022683974355459213, 0.01372944749891758, -0.00087514374172315, -0.030757931992411613, -0.008861509151756763, 0.017425360158085823, 0.0056740944273769855, -0.030881956219673157, 0.009673865512013435, 0.04561599716544151, -0.011546626687049866, 0.0016448672395199537, -0.015242539346218109, 0.0004887317772954702, -0.01669362001121044, -0.013282961212098598, -0.013295363634824753, 0.019806619733572006, -0.0007046108948998153, 0.019781814888119698, 0.017983468249440193, 0.017549384385347366, -0.012712451629340649, -0.014374371618032455, 0.017363348975777626, -0.014461188577115536, 0.013841069303452969, -0.011106342077255249, -0.03219660744071007, 0.029666520655155182, 0.023775385692715645, -0.004052481614053249, 0.015118515118956566, -0.021096467971801758, -0.010021132417023182, -0.019211305305361748, -0.019496560096740723, 0.012172947637736797, 0.024507125839591026, 0.03894351050257683, 0.00493305129930377, -0.0008945225272327662, -0.005156294442713261, -0.038794681429862976, -0.015378965996205807, 0.003968765493482351, 0.019645389169454575, -0.025524122640490532, -0.0352972075343132, 0.014188336208462715, 0.007298807613551617, 0.0084646325558424, 0.018752416595816612, 0.023452922701835632, 0.004945453722029924, -0.007559257559478283, 0.017723018303513527, -0.006226000841706991, 0.07863116264343262, 0.009419616311788559, 0.022894814610481262, -0.004322233609855175, -0.011881491169333458, 0.0232916921377182, -0.017177311703562737, 0.003850942710414529, 0.017698213458061218, -0.03894351050257683, 0.03780249133706093, -0.011255170218646526, -0.013717045076191425, 0.007546855136752129, 0.025598537176847458, -0.008117365650832653, -0.009432018734514713, -0.010715666227042675, 0.0036959126591682434, 0.015192929655313492, -0.004936152137815952, 0.004467961844056845, -0.015825452283024788, -0.007211990654468536, -0.025796974077820778, -0.002847899217158556, -0.0024835788644850254, 0.009382409043610096, -0.009022739715874195, -0.0026153542567044497, 0.03460267186164856, -0.02822784334421158, 0.03490033000707626, 0.0030277338810265064, 0.039216361939907074, -0.012619433924555779, 0.021530551835894585, 0.030931564047932625, -0.053131844848394394, 0.007633672095835209, -0.0006441492005251348, 0.022832803428173065, -0.004272623918950558, -0.02501562424004078, 0.016259536147117615, 0.0582912415266037, -0.021704185754060745, -0.002085152082145214, 0.01635875552892685, 0.027384480461478233, 0.014709237031638622, -0.03854663297533989, 2.76631471933797e-05, -0.016495181247591972, -0.03217180445790291, -0.018826831132173538, 0.010647453367710114, -0.005720603279769421, -0.019980253651738167, -0.026813970878720284, -0.021753795444965363, -0.04348278418183327, 0.027855772525072098, -0.04132476821541786, 0.0024370700120925903], [0.00406963424757123, 0.008442355319857597, 0.060705605894327164, 0.029382925480604172, -0.042255863547325134, 0.02035643719136715, -0.028897985816001892, 0.00910914782434702, 0.0359516516327858, 0.038376349955797195, -0.02874368615448475, 0.036767229437828064, -0.02962539531290531, 0.03136676922440529, -0.07274092733860016, -0.04646601900458336, -0.023255053907632828, 0.03941235691308975, -0.02175614982843399, -0.015253551304340363, -0.012983152642846107, 0.041065558791160583, -0.038883332163095474, -0.01721535250544548, 0.004708872642368078, 0.005819274112582207, 0.004279039800167084, -0.059427130967378616, 0.031499024480581284, 0.009996366687119007, 0.0032237456180155277, -0.0383543036878109, 0.03612799197435379, 0.0007797606522217393, 0.03394576534628868, 0.008525015786290169, -0.030969999730587006, -0.024533530697226524, 0.003725216956809163, -0.009814513847231865, -0.020874440670013428, -0.012178594246506691, -0.010486816987395287, -0.07291726768016815, -0.016410794109106064, 0.07097750902175903, 0.04018384963274002, -0.025172768160700798, -0.004135762341320515, -0.01279579009860754, -0.020499715581536293, 0.04170479625463486, -0.017612120136618614, -0.07939781993627548, 0.010635605081915855, 0.010404156520962715, -0.016124237328767776, -0.004739181604236364, 0.03965482488274574, 0.03374737873673439, 0.06789153069257736, 0.026693714782595634, 0.026848014444112778, 0.0071528577245771885, -0.04492302983999252, 0.01183693204075098, 0.02872164361178875, 0.008073140867054462, -0.0406908318400383, -0.02803831920027733, 0.040558576583862305, 0.036480676382780075, -0.010982776992022991, -0.021436529234051704, 0.014294694177806377, 0.02969152294099331, 0.004863171838223934, 0.008536037057638168, -0.007814139127731323, -0.038155920803546906, -0.02821466140449047, -0.034078020602464676, 0.00860216561704874, -0.025305025279521942, 0.010172707960009575, 0.01886855438351631, -0.05338742956519127, 0.007841692306101322, -0.02420288883149624, 0.008288056589663029, 0.003422129899263382, 0.04124189913272858, -0.020863419398665428, 0.016818583011627197, -0.016091173514723778, 0.032645244151353836, 0.029581308364868164, -0.02109486795961857, -0.020235203206539154, 0.024555573239922523, -0.038376349955797195, -0.04739181324839592, -0.03088182955980301, 0.024357188493013382, 0.01958494260907173, -0.06811195611953735, -0.027354996651411057, 0.0669216513633728, 0.0015264572575688362, 0.009665725752711296, 0.03619411960244179, 0.0055602723732590675, -0.02750929445028305, 6.952923286007717e-05, -0.027354996651411057, 0.004560084547847509, -0.03661293163895607, 0.006094807758927345, -0.0016146281268447638, 0.003846451872959733, 0.03308609873056412, 0.05069822072982788, -0.009957791306078434, -0.07053665071725845, 0.051315415650606155, 0.0036976635456085205, -0.030507102608680725, 0.01697288267314434, -0.051800355315208435, -0.021381422877311707, 0.00862420815974474, -0.03998546674847603, 0.07384306192398071, -0.0574873723089695, 0.011936124414205551, -0.028391003608703613, -0.014316736720502377, -0.030440974980592728, -0.02420288883149624, -0.012233700603246689, 0.028853900730609894, 0.04611333832144737, 0.03418823331594467, 0.03207213431596756, -0.07080116868019104, -0.002799423411488533, -0.021105889230966568, 0.06330664455890656, 0.02653941512107849, -0.0014258874580264091, -0.03753872588276863, 0.06833238154649734, -0.006596279330551624, -0.039125800132751465, -0.03233664855360985, 0.04419562220573425, -0.003061180468648672, 0.05065413564443588, 0.016697349026799202, 0.041263941675424576, -0.013567284680902958, -0.012707618996500969, -0.020918525755405426, -0.0014754835283383727, 0.013964053243398666, -0.011936124414205551, 0.0004990606103092432, 0.012707618996500969, -0.04928748682141304, -0.0573992021381855, -0.03533445671200752, -0.062116339802742004, 0.013115408830344677, -0.0407349169254303, -0.02969152294099331, -0.02247253619134426, 0.028611430898308754, 0.0693022608757019, 0.010657647624611855, 0.017358629032969475, -0.025789964944124222, -0.0022070256527513266, -0.04157254099845886, 0.024930298328399658, -0.036282289773225784, -0.013809754513204098, -0.004221177659928799, 0.0035130560863763094, -0.03540058434009552, 0.02964743785560131, 0.035510797053575516, -0.048449862748384476, 0.01314847357571125, 0.024335145950317383, -0.005653953645378351, -0.010255368426442146, -0.04133006930351257, -0.0670098215341568, 0.004813575651496649, -0.06820012629032135, -0.00579723110422492, -0.04598107933998108, 0.02468782849609852, -0.0060286796651780605, 0.014360821805894375, -0.024511486291885376, -0.002657523611560464, -0.01579359732568264, 0.044173579663038254, -0.011660590767860413, -0.013831797055900097, -0.05387236922979355, -0.07935373485088348, 0.037186041474342346, 0.013732604682445526, -0.0010346294147893786, 0.031168384477496147, 0.0008321120985783637, 0.0072134751826524734, -0.02202066220343113, -0.004865927156060934, -0.013732604682445526, 0.02828078903257847, -0.008348674513399601, -0.02369590662419796, 0.007075707893818617, -0.019276345148682594, -0.020642992109060287, -0.002494958695024252, -0.07939781993627548, -0.060705605894327164, 0.03138881176710129, 0.010988287627696991, -0.014603291638195515, -0.03808979317545891, 0.057046517729759216, 0.015694405883550644, -0.02198759838938713, -0.026848014444112778, 0.030683444812893867, 0.03802366554737091, -0.0407349169254303, -0.0069985585287213326, 0.03559896722435951, -0.005846827290952206, -0.002740183612331748, 0.016939818859100342, 0.0035406092647463083, 0.05832499638199806, 0.017413737252354622, 0.006937941070646048, -0.004656521137803793, 0.050610050559043884, -0.00591846602037549, 0.02920658327639103, 0.0012330138124525547, 0.013225622475147247, -0.02442331612110138, 0.004799799062311649, 0.0014534408692270517, 0.011054416187107563, 0.01183693204075098, -0.03495972976088524, -0.026958227157592773, -0.02847917377948761, -0.041991353034973145, 0.035025857388973236, 0.026759842410683632, -0.013005195185542107, 0.028589388355612755, -0.01293906755745411, 0.03376942127943039, 0.0083707170560956, -0.028346918523311615, -0.03700970113277435, 0.05616481229662895, 0.010569476522505283, 0.029801735654473305, 0.01697288267314434, 0.013203579932451248, -0.05819274112582207, -0.03260115906596184, 0.0430714450776577, -0.040823087096214294, -0.010106580331921577, 0.025437280535697937, -0.007340220734477043, -0.03299792855978012, -0.015033124014735222, 0.05664974823594093, 0.06374750286340714, 0.022406408563256264, -0.025767920538783073, 0.012509234249591827, 0.06277762353420258, 0.028633473441004753, 0.00431210407987237, -0.002493581036105752, 0.0167524553835392, 0.003918090835213661, 0.017160246148705482, 0.0113519923761487, -0.04287305846810341, -0.014217544347047806, -0.01655407063663006, 0.029515180736780167, 0.010090047493577003, 0.0383102186024189, -0.01290600374341011, -0.023166881874203682, -0.022152917459607124, -0.00800150167196989, -0.06083786487579346, -0.06568726152181625, 0.009290999732911587, 0.029052283614873886, -0.02775176428258419, 0.022880326956510544, -0.001347360317595303, 0.04291714355349541, 0.03392372280359268, 0.03275545686483383, 0.015958918258547783, -0.028787771239876747, 0.014900867827236652, 0.012376978062093258, 0.04282897338271141, 0.06401201337575912, 0.014338779263198376, 0.023144839331507683, -0.029118413105607033, -0.013556263409554958, -0.023563651368021965, -0.02896411344408989, 0.016939818859100342, -0.04752407222986221, -0.02371794916689396, -0.003179660066962242, -0.006265638861805201, -0.0014989038463681936, 0.016080152243375778, -0.0058247847482562065, 0.017876632511615753, 0.06149914488196373, 0.002698853611946106, 0.013942010700702667, 0.028346918523311615, 0.03689948841929436, -0.004987162072211504, 0.05074230581521988, 0.015231508761644363, 0.004832862876355648, -0.023365266621112823, 0.017391692847013474, -0.051579929888248444, 0.019728220999240875, 0.01747986488044262, 0.01353422086685896, -0.02181125618517399, 0.017336586490273476, -0.02563566528260708, 0.040845129638910294, 0.017138201743364334, 0.01315949484705925, 0.01648794300854206, -0.015936875715851784, -0.017270458862185478, 0.02468782849609852, 0.008795038796961308, -0.019485751166939735, -0.006441980134695768, -0.0016587134450674057, 0.02872164361178875, 0.017171267420053482, 0.05647340789437294, 0.008635229431092739, 0.016598155722022057, 0.01184795331209898, 0.01941962167620659, -0.02345343679189682, 0.03782527893781662, 0.007720457389950752, 0.04346821457147598, 0.03306405618786812, -0.014327757991850376, 0.015033124014735222, -0.024313103407621384, -0.035995736718177795, 0.027861978858709335, 0.002395766321569681, 0.0057641672901809216, -0.02294645458459854, 0.027465209364891052, -0.010426199063658714, -0.029052283614873886, 0.006436469499021769, -0.0007811383111402392, 0.05074230581521988, -0.000965746003203094, -0.025988347828388214, -0.03398985043168068, -0.04496711492538452, -0.0018446987960487604, -0.008993423543870449, -0.03211621940135956, -0.013368899933993816, -0.01581563986837864, -0.0113519923761487, 0.0406908318400383, -0.03846452012658119, 0.03749464079737663, -0.015925854444503784, 0.02347547933459282, -0.004383742809295654, -0.0167855191975832, -0.01914408802986145, 0.02181125618517399, 0.030264632776379585, 0.02176717109978199, -0.03520219773054123, 0.0478326678276062, 0.04739181324839592, 0.01185897458344698, 0.020411543548107147, -0.03947848454117775, -0.025988347828388214, 0.007709435652941465, 0.0005345355602912605, -0.009472852572798729, -0.02347547933459282, 0.014460014179348946, -0.0478767529129982, -0.02772972173988819, 0.03273341432213783, -0.021899426355957985, -0.014911889098584652, -0.01652100682258606, 0.00116826337762177, 0.02009192481637001, -0.053255174309015274, 0.00812824722379446, -0.04911114647984505, 0.03209417685866356, 0.032667286694049835, -0.06652487814426422, -0.055150847882032394, -0.03886128589510918, 0.03811183571815491, 0.014559206552803516, 0.026715757325291634, 0.04135211184620857, -0.015672363340854645, -0.030000120401382446, 0.006656896788626909, 0.014955975115299225, -0.044151537120342255, 0.011429142206907272, 0.005146971438080072, 0.027950149029493332, -0.022439472377300262, 0.0908159390091896, 0.030551187694072723, 0.05845725163817406, 0.03251298889517784, -0.016620198264718056, 0.04124189913272858, -0.04968425631523132, 0.03903762996196747, -0.026759842410683632, -0.04335799813270569, 0.02155776508152485, -0.010139644145965576, 0.0383102186024189, 0.015650320798158646, -0.021844319999217987, -0.030022162944078445, -0.005428015720099211, -0.04291714355349541, -0.031719449907541275, -0.02054380066692829, -0.03227052092552185, 0.01742475852370262, -0.02539319545030594, -0.007141835987567902, 0.03562100976705551, -0.029294753447175026, 0.0406247042119503, 0.030947957187891006, -0.05713468790054321, -0.0058523379266262054, -0.030749572440981865, 0.03471725806593895, 0.051579929888248444, -0.00873442180454731, -0.006695471238344908, 0.03850860521197319, -0.020929547026753426, 0.02702435478568077, 0.030485060065984726, 0.001228191889822483, 0.010608051903545856, -0.07595916092395782, 0.0383102186024189, -0.05153584107756615, 0.006607300601899624, 0.0012846763711422682, -0.019529836252331734, 0.02251662313938141, -0.006745067425072193, 0.013368899933993816, -0.012773747555911541, 0.012255743145942688, 0.0011723963543772697, 0.01720433123409748, -0.031212469562888145, 0.002978520467877388, 0.01206838060170412, 0.011814889498054981, -0.014393885619938374, 0.0167083702981472, 0.05700243264436722, 0.003744504414498806, 0.07446025311946869, -0.001186173059977591, -0.021183038130402565, -0.002494958695024252, -0.02821466140449047, -0.0695226863026619, 0.037428513169288635, 0.009290999732911587, -0.03368125110864639, -0.026517372578382492, -0.02249458059668541, 0.0006702359532937407, 0.03132268413901329, -0.013104387558996677, 0.012972131371498108, -0.004538041539490223, -0.017623141407966614, 0.012652512639760971, -0.007511051371693611, -0.052020780742168427, -0.014008138328790665, -0.03160923719406128, 0.018604042008519173, -0.011925103142857552, 0.044173579663038254, -0.0003709373704623431, 0.00567599618807435, -0.011792846955358982, 0.014989038929343224, 0.014713505282998085, 0.006546683143824339, 0.005835806019604206, 0.007665350567549467, 0.021127931773662567, 0.01720433123409748, -0.0179758258163929, 0.018339529633522034, -0.039368268102407455, 0.004664787091314793, 0.02581200748682022, -0.04013976454734802, -0.019044896587729454, 0.005626400467008352, 0.025745877996087074, 0.013258686289191246, -0.035069942474365234, -0.02225211076438427, 0.02181125618517399, -0.005072577390819788, -0.0227039847522974, -0.022880326956510544, 0.03476134315133095, 0.0015829417388886213, 0.004166071303188801, 0.005775188561528921, -0.05100681632757187, 0.045848824083805084, 0.041969310492277145, 0.019100002944469452, 0.015088231302797794, 0.01173773966729641, 0.023122796788811684, 0.014581249095499516, -0.016157303005456924, 0.011693654581904411, -0.03665701672434807, 0.008525015786290169, 0.02490825578570366, -0.008943826891481876, 0.02442331612110138, -0.004215667024254799, 0.0033918211702257395, 0.0010456508025527, 0.029845820739865303, -0.03165332227945328, 0.004369966220110655, -0.017127180472016335, 0.0028848389629274607, -0.002455006120726466, 0.005210344213992357, -0.005133194848895073, 0.027399081736803055, -0.031454939395189285, 0.010558455251157284, -0.004780511371791363, -0.05096273124217987, -0.0021160996984690428, 0.011159119196236134, 0.022902369499206543, 0.009054040536284447, -0.004962363746017218, -0.012520256452262402, -0.03257911652326584, 0.01600300334393978, -0.06542274355888367, 0.004447115585207939, -0.02488621324300766, -0.011781825684010983, -0.021183038130402565, -0.006662407424300909, -0.009820024482905865, -0.005113907624036074, -0.009290999732911587, 0.005709060467779636, -0.009930238127708435, -0.012597405351698399, -0.015507042407989502, -0.022770114243030548, -0.017545992508530617, 0.01542989257723093, 0.010800925083458424, -0.004535286221653223, -0.0075882007367908955, -0.006904877256602049, -0.014404906891286373, -0.04135211184620857, -0.006987537257373333, 0.010134133510291576, 0.01221165806055069, -0.03440866246819496, 0.015385807491838932, -0.04496711492538452, -0.009037508629262447, 0.04408540949225426, -0.004656521137803793, 0.023739991709589958, 0.07926556468009949, 0.01281783264130354, -0.0027773806359618902, -0.017810504883527756, -0.02678188495337963, 0.010900117456912994, 0.0050835986621677876, -0.013831797055900097, -0.009550001472234726, 0.0014989038463681936, -0.018251359462738037, 0.019298387691378593, -0.00860216561704874, 0.02772972173988819, -0.023872248828411102, 0.008436844684183598, 0.04889071732759476, 0.026715757325291634, 0.06374750286340714, 0.003865739330649376, -0.005863359197974205, -0.01196918822824955, -0.029559265822172165, 0.045121416449546814, -0.014889846555888653, -0.004802554380148649, 0.019221238791942596, -0.04468056187033653, -0.013424007222056389, 0.017876632511615753, -0.015870746225118637, 0.04571656882762909, 0.004744692239910364, -0.005698039196431637, -0.03683335706591606, 0.04013976454734802, 0.01576053351163864, 0.0006168513209559023, -0.02318892441689968, -0.034342534840106964, -0.01245412789285183, 0.0075606475584208965, 0.02777380682528019, 0.039103757590055466, 0.01602504588663578, 0.00010961078805848956, 9.264823893317953e-05, 0.027465209364891052, -0.019728220999240875, -0.017568035051226616, 0.013379921205341816, -0.049904681742191315, 0.02609856240451336, 0.02369590662419796, -0.005698039196431637, -0.08411496132612228, -0.024709871038794518, -0.007439412642270327, 0.004171581938862801, 0.0007150102173909545, 0.009941259399056435, -0.030749572440981865, 0.029493138194084167, -0.00859665498137474, -0.04518754407763481, -0.026649629697203636, -0.002302084816619754, -0.006453001871705055, 0.006882834248244762, -0.015176401473581791, -0.00788577739149332, -0.005122173577547073, -0.005687017925083637, 0.021370401605963707, 0.02772972173988819, 0.014173459261655807, -0.002196004381403327, -0.016344664618372917, 0.015253551304340363, -0.07040439546108246, 0.007582690101116896, -0.014812697656452656, -0.021359380334615707, -0.02005886100232601, -0.0058247847482562065, 0.004389253444969654, -0.01959596388041973, 0.0430053174495697, -0.0009347484447062016, 0.011792846955358982, -0.03778119385242462, -0.00789128802716732, 0.02037847973406315, -0.012498212978243828, -0.006331766955554485, -0.011638548225164413, -0.03275545686483383, 0.007604733109474182, -0.007180410902947187, 0.02108384668827057, 0.004747447557747364, 0.015451936051249504, 0.000705366546753794, 0.005496899597346783, -0.040823087096214294, -0.03877311572432518, 0.018725277855992317, 0.0007735611288808286, 0.011087480001151562, 0.005345355719327927, -0.002760848728939891, 0.029493138194084167, -0.006375852040946484, 0.0006478488794527948, -0.014867804013192654, -0.022593772038817406, 0.04040427878499031, -0.017601098865270615, -0.012266765348613262, -0.014404906891286373, 0.0027236517053097486, 0.012509234249591827, -0.024820085614919662, -0.007924351841211319, 0.01989354006946087, -0.001370780635625124, 0.004331391304731369, -0.039346225559711456, -0.023321181535720825, -0.018141144886612892, -0.00429832749068737, -0.026892099529504776, 0.05294657498598099, -0.0013652699999511242, -0.028853900730609894, -0.009439787827432156, -5.0414077122695744e-05, 0.02464374341070652, -0.01578257605433464, -0.003868494648486376, 0.005312291905283928, 0.02294645458459854, 0.0015788086457177997, -0.015154358930885792, 0.021579807624220848, -0.05603255331516266, -0.007422880735248327, 0.0009815891971811652, -0.014030180871486664, -0.02059890702366829, -0.0024880701676011086, -0.010167197324335575, 0.020202139392495155, -0.00908710528165102, -0.010431709699332714, 0.006535661872476339, 0.07869245111942291, -0.04091126099228859, -0.0016435591969639063, 0.010205771774053574, 0.019287366420030594, -0.03154310956597328, 0.0014148660702630877, -0.0002998152340296656, 0.025679750367999077, 0.004854905419051647, 0.02847917377948761, -0.0018267891136929393, -0.0501691959798336, 0.011671612039208412, -0.0009285489213652909, -0.019518814980983734, 0.04434992000460625, 0.003915335517376661, 0.024467401206493378, -0.013192558661103249, -0.003322937758639455, -0.06079377979040146, 0.01218961551785469, 0.019573921337723732, 0.00813926849514246, 0.014933932572603226, -0.004711627960205078, 0.016851646825671196, 0.023321181535720825, -0.0014561961870640516, 0.007048154715448618, -0.010613562539219856, 0.0013239398831501603, 0.029823778197169304, -0.02060992829501629, 0.001934247324243188, 0.04620150849223137, -0.017534971237182617, 0.04642193391919136, 0.016113216057419777, -0.06101420521736145, 0.014647376723587513, 0.014878825284540653, 0.01869221404194832, -0.02607651986181736, -0.0010139644145965576, -0.0004367210785858333, -0.0005731103010475636, 0.004358944948762655, -0.012024295516312122, 0.03811183571815491, -0.014966996386647224, 0.034342534840106964, 0.014680441468954086, -0.03017646260559559, -0.006750578060746193, 0.023122796788811684, -0.004595903679728508, 0.015165380202233791, 0.02682597190141678, -0.004827352240681648, 0.016697349026799202, 0.00016480365593452007, 0.0010139644145965576, 0.008458888158202171, -0.0005321246571838856, -0.004480179864913225, -0.0015732980100437999, -0.007929862476885319, 0.013754647225141525, -0.022053726017475128, 0.009302021004259586, -0.009059551171958447, 0.02466578595340252, 0.018097059801220894, -0.016818583011627197, -0.003039137925952673, 0.03916988521814346, 0.04373272508382797, -0.0015526330098509789, 0.011159119196236134, 0.007125304080545902, -0.030308717861771584, 0.044900987297296524, -0.003799611236900091, 0.012487191706895828, 0.03709787130355835, -0.007725968025624752, 0.04734772816300392, -0.011065437458455563, -0.032645244151353836, -0.0035957160871475935, 0.017413737252354622, 0.032226432114839554, -0.050389621406793594, 0.010591519065201283, -0.03295384347438812, 0.0062325745820999146, -0.00382440909743309, -0.004124741069972515, -0.029823778197169304, -0.005124928895384073, 0.0018006133614107966, -0.038155920803546906, 0.00788026675581932, 0.005461079999804497, 0.033615123480558395, 0.002073391806334257, 0.03319631144404411, -0.0239383764564991, 0.0031686387956142426, 0.01818523183465004, 0.002518378896638751, 0.0025514429435133934, -0.03667905926704407, 0.0007342975586652756, 0.03559896722435951, -0.01198020949959755, -0.0006716136704199016, -0.020400522276759148, -0.027465209364891052, -0.012134509161114693, -0.008646250702440739, 0.0431155301630497, -0.03066140227019787, -0.01652100682258606, -0.02225211076438427, 0.02894207090139389, -0.0006891789380460978, 0.053475599735975266, -0.01743577979505062, 0.03573122248053551, 0.02124916762113571, 0.0024853148497641087, -0.014482056722044945, 0.010966245085000992, 0.018041953444480896, -0.022329259663820267, 0.009638172574341297, -0.05545944347977638, -0.013986095786094666, -0.021469594910740852, 0.026759842410683632, 0.022924412041902542, -0.007643307559192181, -0.00579723110422492, -0.004273529164493084, -0.011148097924888134, -0.0037720578256994486, -0.029581308364868164, -0.008932805620133877, -0.007962927222251892, 0.02966948039829731, -0.015562149696052074, 0.03941235691308975, -0.009753896854817867, 0.018063995987176895, 0.024224931374192238, -0.00027088416391052306, -0.016388751566410065, -0.0017275969730690122, 0.027928106486797333, 0.04108760133385658, -0.005659464281052351, 0.0031934368889778852, 0.055900298058986664, 0.01818523183465004, 0.015011081472039223, 0.05554761365056038, 0.011903060600161552, -0.021656956523656845, 0.005692528560757637, -0.02607651986181736, 0.012619447894394398, 0.02753133699297905, 0.035753265023231506, 9.075394336832687e-05, 0.03879515826702118, 0.014537163078784943, 0.029823778197169304, -0.018306465819478035, 0.030330760404467583, 0.014757590368390083, 0.008772996254265308, 0.0027773806359618902, -0.018052974715828896, 0.019816391170024872, 0.015650320798158646, 0.02561362273991108, 0.03066140227019787, -0.035312410444021225, 0.020753206685185432, 0.0029895417392253876, 0.013831797055900097, 0.015176401473581791, 0.036767229437828064, 0.014217544347047806, 0.009527958929538727, -0.027090484276413918, 0.024511486291885376, -0.010090047493577003, 0.006827727425843477, -0.019342472776770592, 0.040095679461956024, -0.023122796788811684, 0.022152917459607124, 0.005248919129371643, -0.013820775784552097, 0.030330760404467583, 0.023321181535720825, -0.024092676118016243, -0.030683444812893867, 0.007819649763405323, -0.049860596656799316, -0.025437280535697937, 0.009439787827432156, 0.010586008429527283, 0.005444548092782497, 0.02124916762113571, -0.034562960267066956, -0.00824397150427103, -0.014680441468954086, 0.014206523075699806, 0.00394288869574666, 0.029559265822172165, -0.026363074779510498, 0.01887957565486431, -0.000623395259026438, 0.052682064473629, 0.013776689767837524, 0.023321181535720825, 0.032689329236745834, 0.007053665351122618, -0.02490825578570366, 0.003119042608886957, 0.017160246148705482, -0.011054416187107563, 0.00871237926185131, -0.017623141407966614, 0.004631723277270794, 0.013214601203799248, 0.014261629432439804, -0.00800701230764389, -0.008403780870139599, -0.015143337659537792, 0.03041893243789673, 0.023321181535720825, 0.02176717109978199, -0.025481365621089935, 0.016091173514723778, 0.002472915919497609, 0.01576053351163864, -0.0015154358698055148, -0.010255368426442146, 0.03253503143787384, -0.02462170086801052, 0.008447866886854172, -0.007852713577449322, -0.026010390371084213, -0.023607736453413963, -0.005124928895384073, -0.01722637377679348, -0.00871237926185131, 0.02605447731912136, -0.002534911036491394, 0.003521322039887309, 0.0033284483943134546, 0.017391692847013474, 0.057266946882009506, 0.015628278255462646, -0.0062766601331532, 0.027332954108715057, 0.008216418325901031, -0.011550377123057842, -0.0019246035953983665, 0.01695084013044834, -0.028765728697180748, 0.013809754513204098, -0.029603352770209312, 0.016157303005456924, -0.024996425956487656, -0.010299453511834145, 0.03396780788898468, -0.006458512507379055, 0.002113344380632043, 0.03703174367547035, -0.02892002835869789, 0.010723775252699852, 0.005224120803177357, 0.053696028888225555, -0.01148424856364727, 0.012983152642846107, 0.019728220999240875, 0.01701696775853634, 0.02249458059668541, -0.005901934113353491, 0.010222303681075573, -0.0002559020067565143, -0.006877323612570763, -0.009660215117037296, 0.026451244950294495, -0.021833298727869987, 0.026186732575297356, 0.02198759838938713, -0.028523258864879608, -0.002359946956858039, 0.0008210907108150423, 0.005687017925083637, 0.018229316920042038, -0.04137415438890457, 0.010343538597226143, 0.0044636474922299385, 0.024996425956487656, -0.03403393551707268, -0.024820085614919662, 0.005430771503597498, -0.008403780870139599, 0.006579747423529625, -0.0083927595987916, 0.02250560186803341, -0.005265451036393642, 0.013688519597053528, -0.02129325270652771, -0.009456319734454155, 0.016355685889720917, 0.010856031440198421, 0.0030666913371533155, -0.04889071732759476, -0.007632286287844181, -0.0382661335170269, -0.04428379237651825, -0.012641491368412971, 0.018736299127340317, -0.03423231840133667, -0.02896411344408989, 0.01988251879811287, 0.00394839933142066, 0.013611369766294956, 1.9567205526982434e-05, -0.006486065685749054, 0.02581200748682022, -0.017788462340831757, -0.003463459899649024, 0.05625298246741295, -0.0030722019728273153, 0.034562960267066956, -0.012641491368412971, 0.004893480334430933, -0.006100318394601345, 0.02132631652057171, 0.028853900730609894, 0.02054380066692829, -0.020433586090803146, -0.027156611904501915, -0.011693654581904411, 0.01194714568555355, 0.007599222473800182, -0.0043203700333833694, 0.001673867809586227, 0.029537223279476166, 0.04562839865684509, 0.016598155722022057, 0.006194000132381916, 0.030793657526373863, -0.02656145952641964, 0.0167855191975832, -0.0062821707688272, 0.00861318688839674, -0.003405597759410739, 0.005620889365673065, 0.031102254986763, -0.006067254580557346, -0.0030143398325890303, 0.009268957190215588, -0.001610495033673942, 0.008905252441763878, -0.015308658592402935, 0.027332954108715057, -0.041969310492277145, -0.004119230434298515, 0.007979459129273891, -0.0006382051506079733, 0.015914833173155785, -0.022406408563256264, -0.01817421056330204, -0.0068552810698747635, -0.02154674381017685, 0.0003444172616582364, 0.033350612968206406, -0.039103757590055466, -0.03643659129738808, 0.01724841631948948, -0.0020182852167636156, 0.009142211638391018, 0.012002252042293549, -0.013302772305905819, -0.032865673303604126, 0.011892039328813553, 0.008806060068309307, -0.01161650475114584, -0.018030932173132896, 0.0012316361535340548, -0.005946019664406776, -0.019728220999240875, -0.0062876814045012, -0.004865927156060934, 0.004681319463998079, 0.01606913097202778, 0.008458888158202171, -0.01772233471274376, -0.003901558695361018, -0.0055602723732590675, -0.003929112106561661, -0.0167744979262352, -0.021348359063267708, -0.02966948039829731, -0.0028655515052378178, 0.013302772305905819, 0.019706178456544876, -0.02369590662419796, 0.046510107815265656, -0.011770804412662983, 0.005546495318412781, -0.015385807491838932, -0.017909696325659752, 0.029493138194084167, -0.008772996254265308, 0.0125422989949584, -0.029713565483689308, -0.004987162072211504, 0.013357878662645817, 0.0009946770733222365, -0.028523258864879608, -0.017050031572580338, -0.021392444148659706, 0.0075606475584208965, -0.014713505282998085, 0.024092676118016243, -0.00395115464925766, -0.0058247847482562065, -0.01606913097202778, -0.022450493648648262, -0.008888720534741879, 0.0034579492639750242, -0.02894207090139389, -0.015308658592402935, 0.022086789831519127, 7.284424646059051e-05, -0.015374786220490932, 0.015374786220490932, -0.02892002835869789, 0.02149163745343685, 0.0012612559366971254, -0.010938691906630993, 0.010123112238943577, 0.024004504084587097, -0.023078711703419685, -0.02609856240451336, 0.010905628092586994, 0.005786209832876921, -0.03663497418165207, -0.0012536788126453757, 0.016157303005456924, 0.007230007089674473, 0.0023985218722373247, 0.04686278849840164, 0.00909261591732502, -0.0014837494818493724, 0.01839463599026203, 0.020973633974790573, 0.03401189297437668, 0.015330701135098934, 0.010685200802981853, -0.014404906891286373, 0.0008396892808377743, -0.011671612039208412, -0.0009237270569428802, -0.009820024482905865, 0.00394288869574666, -0.007599222473800182, 0.010178218595683575, 0.011104011908173561, -0.025415237993001938, 0.006342788226902485, 0.017810504883527756, -0.015947896987199783, -0.030969999730587006, -0.007279603276401758, -0.02204270474612713, -0.03535649925470352, -0.003686642274260521, -0.036039821803569794, 0.010608051903545856, -0.01220063678920269, 0.041021473705768585, -0.016895733773708344, 0.015914833173155785, -0.006337277591228485, -0.010112090967595577, 0.02585609257221222, -0.012046338059008121, -0.00651912996545434, -0.0335710383951664, -0.005637421738356352, 0.01182591076940298, 0.0024067878257483244, 0.004411295987665653, -0.027112526819109917, 0.005846827290952206, -0.010586008429527283, -0.003915335517376661, 0.007406348828226328, -0.022549686953425407, 0.015286615118384361, -0.018581999465823174, 0.028523258864879608, 0.029118413105607033, -0.011627526953816414, 0.0001399195025442168, 0.00871788989752531, 0.018780384212732315, -0.04355638474225998, 0.0125753628090024, -0.0018584755016490817, -0.016609176993370056, -0.034562960267066956, 0.06105829030275345, 0.021888405084609985, 0.011104011908173561, 0.0263410322368145, -0.014900867827236652, -0.007924351841211319, -0.012641491368412971, -0.00382440909743309, -0.022549686953425407, -0.008910763077437878, 0.004631723277270794, 0.0006351054180413485, -0.0007508296403102577, -0.0046151913702487946, 0.03632637485861778, -0.003322937758639455, -0.03156515210866928, 0.011307907290756702, 0.0006488821236416698, 0.009897174313664436, -0.023343224078416824, -0.022549686953425407, -0.015595213510096073, -0.010817456990480423, 0.005841316655278206, -0.021447550505399704, -0.017347607761621475, 0.022318238392472267, -0.014614312909543514, 0.0383543036878109, 0.008194375783205032, 0.013335836119949818, -0.033615123480558395, -7.624537101946771e-05, -0.01278476882725954, -0.009759407490491867, -0.02006988227367401, -0.028126491233706474, -0.026649629697203636, 0.018703235313296318, 0.0014685951173305511, -0.0045821270905435085, 0.030330760404467583, 0.018052974715828896, 0.009599598124623299, 0.014184480533003807, 0.010117601603269577, 0.004097187891602516, -0.026230817660689354, 0.023100754246115685, 0.003807877190411091, -0.017413737252354622, -0.009445298463106155, 0.005315047223120928, -0.019739242270588875, 0.014404906891286373, 0.012894982472062111, -0.003502034582197666, -0.005105641204863787, 0.03275545686483383, 0.0008782640215940773, -0.015253551304340363, -0.0477885827422142, 0.002818710869178176, -0.02896411344408989, -0.017545992508530617, -0.040845129638910294, 0.004843884147703648, -0.017391692847013474, -0.019970690831542015, -0.00592948729172349, 0.018604042008519173, -0.042939189821481705, 0.014349800534546375, -0.0049403212033212185, -0.0015677873743698, -0.04708321765065193, 0.017160246148705482, -0.05360785499215126, 0.0035350986290723085, 0.01819625310599804, 0.013997117057442665, 0.052064865827560425, -0.0019135823240503669, -0.008938316255807877, -0.019739242270588875, 0.029779693111777306, -0.03989729657769203, 0.02583405002951622, -0.023034626618027687, -0.02462170086801052, 0.002656145952641964, -0.02964743785560131, -0.0009037508862093091, 0.0167083702981472, -0.00801803357899189, -0.019077960401773453, 0.009764918126165867, 0.012972131371498108, 0.012156551703810692, 0.00580825237557292, -0.03760485351085663, 0.011109522543847561, -0.008205397054553032, 0.02131529524922371, 0.002147786086425185, 0.01653202809393406, -0.0033725337125360966, 0.007064686622470617, -0.03443070501089096, -0.018945705145597458, 0.03372533619403839, -0.020477673038840294, -0.02587813511490822, -0.031036127358675003, 0.0025500652845948935, 0.008800549432635307, 0.013335836119949818, -0.011991230770945549, 0.02559158019721508, 0.035069942474365234, -0.00603419030085206, 0.015958918258547783, 0.013600348494946957, 0.004926544614136219, -0.01280681136995554, -0.005626400467008352, -0.030485060065984726, 0.02131529524922371, -0.01302723865956068, -0.006127871572971344, -0.026693714782595634, -0.01577155478298664, -0.03542262688279152, 0.003243032842874527, 0.030529145151376724, 0.030529145151376724, -0.013115408830344677, 0.031212469562888145, -0.03467317298054695, -0.020753206685185432, 0.04124189913272858, -0.023100754246115685, -0.002742938930168748, -0.0024481178261339664, -0.015848703682422638, -0.013820775784552097, 0.010034941136837006, -0.02700231224298477, 0.02174512855708599, -0.048493947833776474, 0.0039621759206056595, 0.004047591704875231, -0.013512177392840385, -0.002302084816619754, -0.04013976454734802, -0.013203579932451248, 0.0035571414045989513, 0.04020589217543602, -0.06396792829036713, -0.009572044014930725, 0.0262969471514225, 0.009395702742040157, 0.004841128829866648, 0.00021732728055212647, -0.009786960668861866, 0.03141085430979729, 0.011374035850167274, -0.0016394261037930846, 0.010018409229815006, -0.04924340173602104, -0.007147347088903189, -0.0012853652006015182, 0.015220487490296364, -0.004741936922073364, 0.019055917859077454, -0.010712753981351852, -0.006706492975354195, 0.0016959105851128697, -0.01695084013044834, 0.004171581938862801, 0.02349752187728882, 0.02803831920027733, -0.026870056986808777, 0.012839875183999538, 0.015275593847036362, 0.04236607626080513, 0.004601414315402508, -0.021469594910740852, -0.01185897458344698, -0.001953534781932831, 0.030947957187891006, -0.024709871038794518, -0.008062118664383888, 0.016432836651802063, 5.437487561721355e-05, 0.0167304128408432, 0.0020830356515944004, -0.013082345016300678, 0.015220487490296364, -0.015892790630459785, 0.03262320160865784, -0.0020568598993122578, 0.0012998307356610894, -0.013457071036100388, 0.02010294608771801], [0.030108356848359108, 0.06217683106660843, 0.011037071235477924, 0.015464435331523418, 0.0012613999424502254, 0.019145358353853226, -0.027601225301623344, 0.021401776000857353, -0.01366386003792286, 0.03231918811798096, -0.009287778288125992, 0.05078078433871269, 0.026142532005906105, -0.0072136977687478065, -0.061857741326093674, 0.031020039692521095, 0.011612571775913239, 0.04941326007246971, 0.010547040961682796, 0.018359031528234482, 0.01028493233025074, 0.029857642948627472, -0.029470177367329597, -0.02584623359143734, -0.014039929956197739, -0.04469529539346695, 0.007800593972206116, -0.047863397747278214, 0.07753870636224747, -0.07908856868743896, 0.013458731584250927, -0.03202289342880249, 0.01649007946252823, 0.011954452842473984, -0.018666725605726242, 0.03008556365966797, -0.04380640387535095, 0.004535626620054245, -0.012307730503380299, -0.021504340693354607, -0.0448092557489872, 0.003390324069187045, 0.03284340724349022, -0.0007635351503267884, -0.02167528122663498, 0.07115691900253296, -0.01538466289639473, -0.06395461410284042, -0.007641049567610025, -0.026096947491168976, -0.0037863366305828094, 0.031020039692521095, -0.0036609801463782787, -0.04134485870599747, 0.012661008164286613, 0.021869013085961342, 0.011048467829823494, -0.03081491030752659, 0.003951579332351685, 0.02374936267733574, -0.033094119280576706, 0.014883236959576607, 0.024638254195451736, 0.02017100341618061, -0.013527107425034046, -0.022302063181996346, -0.016250763088464737, 0.005498592741787434, -0.00015090858505573124, 0.0033077027183026075, 0.035304952412843704, 0.03902006521821022, 0.003980069421231747, 0.011840492486953735, 0.000679133168887347, 0.008609713055193424, -0.045014385133981705, 0.06915121525526047, -0.0012571264524012804, 0.003623942844569683, -0.0598064549267292, 0.00922510027885437, -0.01083764061331749, -0.025549937039613724, -0.03858701512217522, 0.02577785775065422, -0.07721961289644241, -0.01538466289639473, -0.004504287615418434, -0.033777881413698196, -0.0022535682655870914, 0.052011556923389435, -0.024569876492023468, 0.07042756676673889, 0.04196024313569069, 0.02311118319630623, 0.02056986466050148, -0.005390330217778683, -0.016934525221586227, 0.03756137192249298, -0.019749348983168602, -0.03974941000342369, -0.06441045552492142, -0.034598398953676224, 0.019099773839116096, -0.017652476206421852, -0.035190992057323456, 0.025937402620911598, 0.0005224375054240227, -0.03772091493010521, -0.040752265602350235, -0.024000074714422226, 0.02162969671189785, 0.04551581293344498, -0.018245071172714233, 0.013139641843736172, -0.04398874193429947, -0.03822234272956848, -0.02026217058300972, -0.01964678429067135, 0.017253614962100983, -0.01646728813648224, -0.00870657991617918, -0.05023377388715744, 0.009652451612055302, -0.0009985786164179444, -0.049139752984046936, -0.004102576989680529, -0.05565829202532768, -0.03692319244146347, 0.01462112832814455, -0.06372669339179993, 0.11140775680541992, -0.08063843101263046, -0.01187468133866787, 0.003393172984942794, -0.0038062797393649817, -0.03473515063524246, 0.01425645500421524, 0.033869050443172455, 0.011185220442712307, 0.006535633001476526, 0.0005726513336412609, 0.0529688261449337, -0.062450338155031204, 0.00521938968449831, -0.024114035069942474, 0.05255856737494469, 0.02794310636818409, -0.026347659528255463, -0.028831997886300087, 0.031065624207258224, -0.00012740424426738173, -0.04389757290482521, -0.016888940706849098, 0.02304280735552311, 0.030837703496217728, 0.021823430433869362, 0.023339103907346725, 0.08155011385679245, -0.03193172439932823, -0.019213734194636345, -0.004401722922921181, -0.037948835641145706, 0.03225081413984299, -0.00998863484710455, 0.015042781829833984, 0.01633053459227085, -0.05862126499414444, -0.015988653525710106, -0.017891794443130493, -0.018484387546777725, -0.03895168751478195, -0.0065926131792366505, -0.012216562405228615, -0.025413185358047485, 0.003954428248107433, 0.024957342073321342, 0.017925981432199478, -0.0070142666809260845, 0.021572716534137726, 0.011453026905655861, -0.028148235753178596, -0.03993174806237221, -0.039339154958724976, 0.018666725605726242, 0.011048467829823494, 0.024615461006760597, -0.04323660209774971, 0.03184055536985397, 0.05843892693519592, -0.02919667214155197, -0.018039941787719727, -0.029606929048895836, -0.0004042035434395075, -0.01805133745074272, -0.06067255511879921, -0.06937913596630096, 0.0142906429246068, -0.02226787619292736, 0.008370396681129932, -0.04113972932100296, 0.00749290082603693, 0.010193764232099056, -0.02928784117102623, -0.018632536754012108, -0.03416534885764122, -0.03286619856953621, 0.0272593442350626, -0.01948723942041397, 0.01528209913522005, -0.021413171663880348, -0.036740854382514954, 0.013367563486099243, -0.012387502938508987, -0.011578383855521679, 0.036740854382514954, 0.025982987135648727, 0.035304952412843704, -0.024547085165977478, -0.029743682593107224, 0.0005915260408073664, 0.022495796903967857, -0.06409136950969696, -0.014484375715255737, 0.004433062393218279, -0.003421663073822856, -0.04521951451897621, -0.022917449474334717, -0.06668967008590698, -0.03635339066386223, 0.04804573208093643, 0.005518535617738962, -0.024000074714422226, 0.003957277163863182, -0.00454132491722703, 0.041504401713609695, -0.01917954720556736, 0.0032649673521518707, 0.03701436147093773, 0.05729932337999344, -0.003615395864471793, -0.0611283965408802, -0.0064843506552278996, 0.020911745727062225, 0.0011438782094046474, -0.013515711762011051, -0.001978638581931591, 0.03630780428647995, -0.037242282181978226, 0.04173232242465019, 0.022814886644482613, 0.06413695216178894, -0.01604563370347023, -0.0007329082582145929, -0.0016567002749070525, 0.0157835241407156, -0.036626894026994705, 0.017869001254439354, -0.00889461487531662, -0.006153865251690149, 0.00021278556960169226, -0.03298015892505646, -0.03291178494691849, -0.060262296348810196, -0.002960123121738434, 0.008039911277592182, 0.0157835241407156, -0.02577785775065422, 0.06805719435214996, -0.028239404782652855, 0.05725374072790146, 0.0017777832690626383, -0.000552352168597281, -0.11104308068752289, 0.013709444552659988, 0.0026168173644691706, -0.001696586492471397, -0.007766406051814556, 0.047817811369895935, -0.033869050443172455, -0.006490048486739397, 0.006820533890277147, -0.018324842676520348, 0.032455939799547195, 0.04941326007246971, -0.013538504019379616, 0.003108271863311529, -0.03284340724349022, 0.05834776163101196, 0.05903152376413345, -0.0027606922667473555, 0.02207414247095585, 0.012284938246011734, -0.0008212276152335107, 0.0166610199958086, -0.0033646828960627317, -0.021333400160074234, 0.007703727576881647, -0.004487193655222654, 0.01366386003792286, 0.023099787533283234, -0.013572691939771175, -0.009418833069503307, -0.029857642948627472, 0.05310557782649994, 0.0049373372457921505, -0.028991542756557465, -0.026279283687472343, -0.01856416091322899, -0.0037293564528226852, -0.021880410611629486, -0.058211006224155426, -0.05027936026453972, 0.03639897331595421, 0.022564172744750977, -0.018621141090989113, 0.009931654669344425, 0.03692319244146347, -0.018700912594795227, 0.02368098497390747, 0.024911759421229362, 0.009344758465886116, -0.019168151542544365, 0.0030626875814050436, -0.028125444427132607, -0.004803433548659086, 0.05675231292843819, -0.0004302007728256285, 0.02070661634206772, -0.009059857577085495, -0.0017877548234537244, 0.010780660435557365, 0.01290032546967268, -0.025914611294865608, -0.009504303336143494, -0.0390656478703022, 0.01990889385342598, -0.001118949381634593, 0.02125362679362297, 0.01990889385342598, -0.03298015892505646, -0.012911721132695675, 0.009982937015593052, -0.013196622021496296, 0.0013945912942290306, 0.025367600843310356, 0.03765253722667694, 0.0215157363563776, 0.04955001175403595, 0.002430207096040249, 0.025367600843310356, -0.03758416324853897, -0.007059851195663214, -0.07193184643983841, 0.0265983734279871, 0.00995444692671299, -0.022039955481886864, -0.014313435181975365, 0.0272593442350626, 0.0188718531280756, -0.016672417521476746, 0.008005723357200623, 0.015270702540874481, 0.012148185633122921, 0.00481198076158762, -0.018279260024428368, -0.013356166891753674, -0.004168104380369186, -0.01425645500421524, 0.008535639382898808, -0.026849087327718735, -0.005829078145325184, 0.023247934877872467, 0.03067815862596035, 0.031042831018567085, -0.018963022157549858, 0.013766424730420113, -0.0036296409089118242, 0.0031282149720937014, 0.021219439804553986, 0.00582053093239665, 0.048455990850925446, 0.0175499115139246, 0.005156711209565401, 0.013732236810028553, -0.02580065093934536, -0.01292311679571867, 0.05634205415844917, -0.0013661010889336467, -0.016387514770030975, 0.022586964070796967, -0.00884903036057949, 0.0219601821154356, -0.033823467791080475, 0.02586902678012848, 0.02928784117102623, 0.044193871319293976, 0.001015672693029046, -0.04686054587364197, -0.03649014234542847, -0.004028502386063337, 0.0049857706762850285, 0.026735126972198486, -0.03541891276836395, -0.012330522760748863, -0.019020002335309982, -0.012034225277602673, 0.0406155101954937, -0.02068382501602173, 0.001861829194240272, 0.007031361106783152, 0.009584075771272182, 0.021595509722828865, 0.013492919504642487, -0.002017100341618061, 0.01249006763100624, 0.04198303818702698, -0.010609719902276993, -0.056159719824790955, 0.035190992057323456, 0.05998878926038742, -0.022837677970528603, 0.010638209991157055, -0.04232491925358772, -0.02643882855772972, 0.043624065816402435, -0.03958986699581146, -0.006809138227254152, -0.02313397452235222, -0.062359169125556946, -0.0212992113083601, 0.03193172439932823, 0.040843430906534195, -0.0307921189814806, -0.009646753780543804, -0.019544219598174095, -0.0315670482814312, 0.006256429944187403, -0.05100870504975319, 0.004418817348778248, -0.02518526278436184, 0.028809206560254097, 0.028376156464219093, -0.023886114358901978, -0.04836482182145119, 0.008678089827299118, 0.016535663977265358, 0.027441680431365967, 0.007190905511379242, 0.03193172439932823, 0.00013550612493418157, -0.044353414326906204, 0.005068392027169466, -0.0307921189814806, -0.03822234272956848, 0.019737953320145607, 0.011772116646170616, -0.02026217058300972, -0.001702284556813538, 0.03184055536985397, 0.04606282338500023, 0.053424667567014694, 0.03334483504295349, -0.013151038438081741, 0.005623949225991964, -0.05356141924858093, -0.009709431789815426, 0.004188047256320715, -0.06906004250049591, -0.005732211750000715, -0.00624503381550312, -0.024547085165977478, 0.023247934877872467, -0.0026153926737606525, -0.042279332876205444, 0.004373232834041119, -0.02584623359143734, 0.011065561324357986, -0.006034207064658403, 0.01699150539934635, 0.021641092374920845, -0.02043311297893524, -0.014769276604056358, 0.07448456436395645, 0.033800676465034485, 0.04337335377931595, 0.03234197944402695, -0.02855849266052246, -0.032364774495363235, -0.0022108331322669983, 0.0009038489661179483, 0.0060740928165614605, -0.009675243869423866, -0.019658181816339493, -0.009823392145335674, 0.039316363632678986, -0.02450150065124035, 0.016296347603201866, 0.026735126972198486, 0.007207999471575022, -0.033048536628484726, 0.02586902678012848, 0.014906029216945171, 0.03744741156697273, 0.044398996978998184, -0.02869524620473385, -0.012387502938508987, 0.020786389708518982, 0.0011460150126367807, -0.0342109315097332, 0.02226787619292736, 0.010598323307931423, 0.00957837700843811, -0.03211405873298645, 0.01741315983235836, 0.058165423572063446, 0.024250788614153862, -0.05233064666390419, 0.03357275575399399, 0.009549886919558048, 0.0071510192938148975, 0.02728213556110859, -0.006034207064658403, 0.02926504798233509, 0.01256984006613493, 0.00274502276442945, -0.05246739834547043, -0.018438803032040596, 0.013891780748963356, -0.0004715114482678473, -0.02728213556110859, -0.029812058433890343, -0.009019970893859863, 0.04528789222240448, 0.030518613755702972, -0.005834775976836681, 0.024729421362280846, -0.02655278891324997, 0.009510001167654991, 0.01006270945072174, -0.03482631966471672, 0.02589181810617447, -0.0299032274633646, 0.01675218902528286, -0.006638197228312492, 0.01781202107667923, -0.0010192339541390538, -0.006290617864578962, -0.021105479449033737, -0.013481523841619492, 0.00962396152317524, -0.003239326411858201, 0.023099787533283234, 0.012102602049708366, 0.04594885930418968, 0.030951663851737976, -0.024820590391755104, 0.007527089212089777, -0.023453064262866974, -0.018324842676520348, 0.018552765250205994, 0.026940254494547844, -0.027418889105319977, -0.021549925208091736, 0.039316363632678986, 0.00695728650316596, -0.03749299421906471, -0.007430222351104021, -0.011458724737167358, -0.02136758714914322, 0.0342109315097332, -0.020000062882900238, 0.046381909400224686, 0.04341894015669823, 0.012706592679023743, 0.021356191486120224, -0.0279203150421381, -0.011162428185343742, -0.0032165341544896364, 0.006763553712517023, 0.03145308792591095, -0.017914585769176483, 0.0019515730673447251, -0.021766450256109238, 0.010735075920820236, -0.015008593909442425, -0.03067815862596035, -0.022416023537516594, 0.022940242663025856, 0.008227946236729622, 0.0028005784843117, -0.017948774620890617, -0.01156698726117611, 0.026689542457461357, 0.05798308551311493, -0.03630780428647995, 0.024866174906492233, -0.029834851622581482, -0.009310570545494556, 0.01470090076327324, 0.03270665556192398, 0.00403989851474762, 0.013014285825192928, -0.013618276454508305, 0.005840473808348179, -0.005230785347521305, -0.02358981780707836, 0.019897498190402985, 0.012250750325620174, -0.006336201913654804, -0.014085513539612293, -0.015122554264962673, 0.0036723760422319174, -0.011361858807504177, -0.0016239366959780455, -0.04125368967652321, 0.024706630036234856, -0.049869101494550705, -0.02172086574137211, -0.04050154983997345, 0.0305641982704401, -0.016410307958722115, 0.00433619599789381, -0.038655392825603485, 0.0022450212854892015, 0.014165285974740982, -0.024068450555205345, -0.06541331112384796, 0.001913111424073577, -0.008695184253156185, -0.02728213556110859, 0.03070094995200634, -0.019988665357232094, -0.03181776404380798, 0.00593164237216115, 0.02202855795621872, -0.0078062922693789005, -0.052695319056510925, 0.01679777354001999, 0.00958977360278368, -0.02652999758720398, 0.015270702540874481, -0.04549301788210869, 0.02782914601266384, 0.05939619615674019, 0.008313416503369808, 0.03747020289301872, 0.039498697966337204, -0.01392596960067749, -0.013720840215682983, -0.0279203150421381, -0.010518550872802734, -0.0007165264687500894, 0.025504352524876595, 0.006962984800338745, -0.03291178494691849, 0.0022108331322669983, 0.015532812103629112, 0.015304891392588615, -0.036604102700948715, 0.032433148473501205, 0.006022810935974121, 0.006005716510117054, 0.028923166915774345, 0.04736196994781494, 0.018598347902297974, 0.010974393226206303, -0.01825646683573723, -0.012752176262438297, -0.059624116867780685, 0.013390354812145233, 0.0307921189814806, -0.042963095009326935, 0.018814872950315475, -0.011173823848366737, -0.024205204099416733, 0.03856422379612923, 0.00963535811752081, 0.01635332778096199, 0.007789197843521833, -0.02295163832604885, -0.013048473745584488, 0.03416534885764122, -0.008558431640267372, -0.03605709224939346, 0.05770958214998245, 0.004789188504219055, 0.010888922959566116, 0.03924798592925072, 0.012661008164286613, 0.042917512357234955, -0.004415967967361212, 0.01672939769923687, -0.0006335490033961833, 0.04298589006066322, 0.014427395537495613, -0.02928784117102623, 0.028945958241820335, -0.05046169459819794, -0.00998863484710455, -0.015544207766652107, 0.01187468133866787, -0.0571625716984272, -0.0017592647345736623, -0.02224508300423622, -0.03127075359225273, -0.014575543813407421, 0.014917425811290741, -0.022871866822242737, -0.006689479574561119, -0.004712265450507402, -0.031772177666425705, -0.0164444949477911, 0.006267825607210398, -0.03152146562933922, -0.01536187157034874, 0.014233662746846676, 0.007601163350045681, 0.02094593457877636, -0.016923129558563232, 0.009794902056455612, -0.004000012297183275, 0.015772128477692604, -0.013082661665976048, -0.015202326700091362, 0.054883360862731934, -0.031020039692521095, -0.030518613755702972, 0.012535651214420795, -0.012091205455362797, -0.026096947491168976, -0.0018575555877760053, 0.0021410323679447174, -0.017094070091843605, 0.006364692002534866, -0.04717963561415672, 0.01501998957246542, -0.010632512159645557, -0.007840480655431747, 0.019715161994099617, -0.05087195336818695, 0.008957292884588242, 0.01215958222746849, -0.019669577479362488, -0.010011427104473114, -0.03136192262172699, 0.010820546187460423, -0.035897549241781235, 0.07298028469085693, 0.02118525095283985, 0.0065926131792366505, -0.050598450005054474, -0.020114023238420486, 0.033230870962142944, -0.010911715216934681, 0.01215958222746849, -0.01425645500421524, 0.0065926131792366505, 0.007566974963992834, -0.017116863280534744, -0.0009665272082202137, -0.012649612501263618, 0.002166673308238387, 0.02023937925696373, 0.006757855881005526, -0.015122554264962673, -0.00036413929774425924, -0.002321944572031498, 0.02712259255349636, -0.02087755873799324, -0.03186334669589996, 0.011504309251904488, 0.008176663890480995, 0.01915675401687622, -0.035897549241781235, -0.013686652295291424, -0.02655278891324997, 0.006159563548862934, -0.013698047958314419, 0.03234197944402695, -0.022678133100271225, -0.06162982061505318, 0.003934485372155905, 0.0065926131792366505, 0.01094590313732624, -0.037379033863544464, 0.00279203150421381, 0.042210958898067474, 0.007094039116054773, -0.0448092557489872, 0.01392596960067749, -0.01805133745074272, -0.0014366141986101866, -0.004444458521902561, -0.007720822002738714, -0.0017279256135225296, -0.02094593457877636, -0.029037127271294594, 0.02502571977674961, 0.0015455888351425529, -0.0326610691845417, -0.005264973733574152, 0.02158411219716072, 0.061720989644527435, 0.025458768010139465, -0.017891794443130493, -0.004373232834041119, -0.0019102623919025064, 0.001837612595409155, -0.014108305796980858, 0.023339103907346725, 0.006695177406072617, 0.014792068861424923, 0.012774968519806862, -0.018860457465052605, -0.033777881413698196, 0.003210836322978139, -0.04977793246507645, -0.02518526278436184, 0.029584137722849846, -0.007487202994525433, -0.034575607627630234, -0.0006502869073301554, 0.02862687036395073, -0.0073219602927565575, -0.01917954720556736, 0.014085513539612293, -0.0175499115139246, 0.019806329160928726, 0.037310656160116196, 0.022347647696733475, 0.0072136977687478065, -0.007760707754641771, 0.018792081624269485, -0.006877514533698559, -0.028239404782652855, 0.005022807512432337, -0.0044672503136098385, -0.002344736596569419, 0.04528789222240448, -0.019361883401870728, 0.0071453214623034, -0.0257094819098711, -0.02712259255349636, 0.01604563370347023, 0.017208030447363853, 0.013151038438081741, -0.026324868202209473, 0.027760770171880722, 0.00582053093239665, 0.0033219477627426386, -0.010997185483574867, -0.01358408760279417, 0.01672939769923687, 0.010740773752331734, 0.02509409561753273, -0.0195328239351511, -0.036740854382514954, 0.007099737413227558, 0.011783512309193611, 0.017470140010118484, -0.007886064238846302, 0.013606879860162735, -0.009931654669344425, -0.006928796414285898, 0.02931063249707222, -0.008091193623840809, 0.00594873633235693, 0.011094051413238049, 0.021834826096892357, -0.028923166915774345, -0.016900338232517242, 0.0010441627819091082, -0.030176732689142227, -0.00800002459436655, 0.033777881413698196, 0.020718013867735863, 0.009031367488205433, 0.0042564235627651215, 0.02167528122663498, 0.037265073508024216, 0.02641603723168373, 0.0031567050609737635, -0.035236578434705734, -0.02730492874979973, -0.04455854371190071, 0.0361938439309597, 0.005245030391961336, -0.004484344273805618, 0.020296359434723854, 0.020136814564466476, 0.031020039692521095, -0.005324802827090025, -0.016273554414510727, 0.023886114358901978, -0.017287803813815117, 0.002749296370893717, -0.034530021250247955, 0.012501463294029236, -0.04125368967652321, 0.011692344211041927, -0.00973222404718399, 0.020136814564466476, -0.02707700803875923, 0.0011118268594145775, 0.011652457527816296, -0.009344758465886116, 0.03680923208594322, 0.025322016328573227, 0.0004928790149278939, -0.026985839009284973, -0.02796589955687523, -0.030541405081748962, 0.05105429142713547, 0.022792093455791473, -0.014894633553922176, 0.0071852076798677444, -0.012421690858900547, -0.0021695224568247795, 0.04257563129067421, -0.019692368805408478, -0.025618312880396843, 0.0004341181484051049, 0.02500292658805847, -0.013868989422917366, -0.01179490890353918, 0.018951626494526863, -0.007584069389849901, -0.04417107626795769, -0.03211405873298645, 0.024729421362280846, -0.011088353581726551, 0.05114545673131943, -0.005076938774436712, -0.025413185358047485, -0.002887473441660404, 0.020341943949460983, 0.024159619584679604, -0.052649736404418945, 0.005527082830667496, -0.014450187794864178, 0.006951588671654463, -0.026142532005906105, -0.007344752084463835, 0.006849023979157209, -0.005401726346462965, 0.017515724524855614, 0.012307730503380299, -0.034530021250247955, 0.03847305476665497, 0.0067293657921254635, 0.02516247145831585, -0.019669577479362488, -0.0071225292049348354, -0.009287778288125992, 0.024205204099416733, 0.005851869937032461, -0.018336240202188492, -0.02928784117102623, 0.03753857687115669, 0.024114035069942474, 0.02928784117102623, -0.0078917620703578, 0.012250750325620174, 0.021333400160074234, -0.0029772173147648573, 0.0012998615857213736, -0.017914585769176483, 0.036718063056468964, 0.009532793425023556, -0.023886114358901978, 0.01573794148862362, -0.017230823636054993, -0.0002955849631689489, 0.004139613825827837, 0.017265010625123978, -0.035304952412843704, 0.05091753602027893, 0.0018789232708513737, -0.03491748869419098, -0.004085483029484749, 0.013743632473051548, 0.03179497271776199, -0.015259306877851486, 0.023122578859329224, 0.0036125469487160444, 0.02363540045917034, -0.012330522760748863, -0.00019765019533224404, 0.011538497172296047, 0.005290614906698465, 0.01190886925905943, 0.02189180627465248, 0.004945884458720684, 0.01391457300633192, 0.018792081624269485, -0.015247911214828491, 0.0461311973631382, 0.016763584688305855, 0.026028571650385857, 0.02648441307246685, -0.01783481426537037, 0.028900375589728355, -0.024091243743896484, -0.0037436014972627163, 0.0037065641954541206, 0.04323660209774971, -0.04180070012807846, 0.02379494532942772, 0.02789752371609211, -0.002138183219358325, 0.0265983734279871, 0.030974455177783966, -0.0432593934237957, -9.918121941154823e-05, 0.02280348911881447, -0.021265024319291115, -0.012501463294029236, 0.0073219602927565575, -0.015521415509283543, 0.00024911045329645276, 0.014370415359735489, -0.01116812601685524, -0.002084052190184593, -0.015578395687043667, 0.02172086574137211, 0.020467299968004227, 0.029470177367329597, -0.02278069779276848, 0.007646747399121523, 0.0018148204544559121, 0.00409972807392478, 0.03197730705142021, 0.01013108529150486, 0.03471235930919647, -0.01672939769923687, -0.0018589801620692015, 0.0027934559620916843, 0.02935621701180935, 0.028034275397658348, -0.028284989297389984, -0.023225143551826477, 0.03227360546588898, -0.00012295266787987202, -0.005527082830667496, -0.0012941635213792324, -0.019680973142385483, 0.011384651064872742, 0.004125368781387806, -0.013675256632268429, 0.041436027735471725, -0.03391463682055473, 0.038723766803741455, -0.022609757259488106, -0.047772228717803955, 0.01668381318449974, 0.00990886241197586, 0.006837628316134214, 0.018017150461673737, 0.029424592852592468, -0.006792043801397085, -0.030997248366475105, -0.037379033863544464, 0.040091294795274734, -0.005552724003791809, -0.016478683799505234, 0.06627941131591797, -0.014757880941033363, 0.03892889618873596, 0.005846172105520964, -0.0215157363563776, 0.04102576896548271, 0.010347610339522362, -0.0027706639375537634, 0.021800637245178223, 0.00922510027885437, -0.01179490890353918, -0.002588327042758465, 0.005205144640058279, -0.0065926131792366505, -0.02280348911881447, -0.02056986466050148, 0.002937331097200513, -0.03256990388035774, -0.02714538387954235, 0.011293482035398483, 0.019589804112911224, -0.023498648777604103, 0.04022804647684097, -0.01256984006613493, 0.008245039731264114, -0.002458697184920311, -0.012444483116269112, 0.04836482182145119, 0.0006025659968145192, 0.022233687341213226, 0.011840492486953735, -0.004532777704298496, 0.03127075359225273, 0.0013532806187868118, 0.009925956837832928, -0.01884906180202961, -0.004586908966302872, 0.044376205652952194, 0.01017666980624199, 0.0033675318118184805, -0.0118632847443223, -0.013948761858046055, 0.019475843757390976, 0.018359031528234482, 0.00032817054307088256, 0.019692368805408478, -0.03498586267232895, 0.016569852828979492, 0.002316246507689357, -0.01329918671399355, -0.03610267490148544, 0.004333346616476774, 0.007196603808552027, -0.0010605446295812726, 0.009606867097318172, -0.01531628705561161, 0.00911683775484562, 6.650661816820502e-05, -0.007384638302028179, -0.0237265694886446, 0.020820578560233116, 0.006398880388587713, -0.016934525221586227, -0.019567012786865234, -0.01113393809646368, -0.023247934877872467, -0.03334483504295349, 0.0039230892434716225, 0.025595521554350853, 0.00963535811752081, -0.034575607627630234, -0.00016880394832696766, -0.015088366344571114, 0.02931063249707222, 0.02712259255349636, -0.016148198395967484, -0.01913396269083023, -0.017299199476838112, -0.014039929956197739, 0.0033247966784983873, 0.06427370756864548, -0.011196616105735302, -0.009453020989894867, 0.017515724524855614, 0.036581311374902725, -0.011424536816775799, 0.009823392145335674, 0.03551008179783821, 0.015567000024020672, -0.0118632847443223, -0.010723680257797241, 0.008370396681129932, 0.014302038587629795, -0.0005359703209251165, -0.009253590367734432, -0.024114035069942474, 0.005868964362889528, -0.00036378318327479064, 0.011435933411121368, 0.027532849460840225, 0.0529688261449337, -0.027031423524022102, -0.006056998856365681, -0.03899727389216423, 0.01703708991408348, -0.02933342382311821, -0.03649014234542847, -0.01889464631676674, -0.005581214092671871, 0.03630780428647995, 0.02094593457877636, 0.0019857611041516066, -0.020341943949460983, -0.0083305099979043, 0.002242172136902809, -0.036649685353040695, 0.0002719025651458651, 0.009891768917441368, -0.016387514770030975, -0.0029629722703248262, 0.004296309780329466, -0.0025783556047827005, 0.006774949841201305, -0.022393232211470604, -0.004703718237578869, 0.035168200731277466, -0.02384052984416485, -0.04376082122325897, -0.001001427648589015, -0.018245071172714233, 0.009931654669344425, 0.024957342073321342, -0.009396040812134743, -0.009339060634374619, -0.017299199476838112, -0.009048460982739925, 0.014963009394705296, -0.022210896015167236, 0.004430213011801243, 0.011652457527816296, -0.014826256781816483, -0.009663848206400871, 0.009538491256535053, 0.014267850667238235, 0.002867530332878232, 0.026393244042992592, -0.012672403827309608, -0.005139617249369621, -0.025663897395133972, 0.002750720828771591, 0.01043877936899662, 0.012831948697566986, -0.008695184253156185, 0.017800625413656235, 0.02330491505563259, 0.012433087453246117, 0.011076957918703556, 0.045720938593149185, -0.020740805193781853, 0.008717975579202175, -0.00358120771124959, 0.004273517522960901, 0.0339830107986927, 0.010706585831940174, 0.013492919504642487, 0.012706592679023743, -0.01535047497600317, -0.006358994171023369, 0.024524293839931488, 0.028171027079224586, 0.021846221759915352, -0.02134479582309723, 0.021128270775079727, 0.008923104964196682, 0.011407443322241306, 0.012136789970099926, -0.013606879860162735, -0.04376082122325897, -0.0026737975422292948, -0.010085501708090305, 0.01873510144650936, 0.0016210876638069749, -0.02712259255349636, 0.019475843757390976, 0.0021310606971383095, -0.016900338232517242, 0.014222266152501106, -0.038062795996665955, -0.014803464524447918, 0.008467262610793114, 0.010752170346677303, -0.00011609722423600033, 0.016718000173568726, 0.011128240264952183, -0.028284989297389984, -0.005982924718409777, 0.02714538387954235, -0.005498592741787434, -0.0023347651585936546, 0.024957342073321342, -0.0022208045702427626, -0.00924789160490036, 0.026188116520643234, 0.03778929263353348, 0.022723717615008354, 0.0030484425369650126, 0.01739036850631237, 0.06559564918279648, -0.014826256781816483, 0.005646741017699242, -0.0027720883954316378, 0.0046923221088945866, -0.001475788070820272, 0.019475843757390976, -0.017242219299077988, 0.012615423649549484, -0.009749318473041058, 0.02302001416683197, -0.003877504961565137, -0.04731638729572296, 0.012034225277602673, 0.007521390914916992, -0.021925995126366615, -0.02264394611120224, -0.0076068611815571785, -0.017401764169335365, -0.024592669680714607, -0.020911745727062225, -0.01609121821820736, 0.03008556365966797, 0.01468950416892767, 0.018290655687451363, -0.003247873391956091, 0.01840461604297161, 0.010700888000428677, -0.015840504318475723, 0.02851291000843048, -0.013139641843736172, -0.0005712268757633865, -0.02167528122663498, -0.013606879860162735, 0.010797754861414433, -0.015099762007594109, 0.038792144507169724, -0.03158984333276749, -0.01823367550969124, -0.005341896787285805, -0.0033447397872805595, 0.03683202341198921, -0.02266673743724823, -0.011851889081299305, -0.011019977740943432, 0.00859831739217043, 0.01595446653664112, -0.032410357147455215, -0.021048499271273613, -0.005891756154596806, 0.020718013867735863, -0.05146454647183418, -0.0055299317464232445, 0.039475906640291214, -0.0038062797393649817, -0.0017321991035714746, 0.018837666139006615, 0.024000074714422226, 0.002086901105940342, 0.0016282101860269904, -0.006256429944187403, 0.00683193001896143, 0.006028508767485619, 0.011048467829823494, -0.002143881283700466, 0.01788039691746235, -0.0026438829954713583, 0.027373304590582848, -0.020512884482741356, -0.007789197843521833, 0.05255856737494469, -0.0011510007316246629, -0.01823367550969124, -0.03489469736814499, -0.024136828258633614, 0.0036923191510140896, -0.019361883401870728, -0.010336214676499367, -0.008210851810872555, -0.01023934781551361, 1.959808469109703e-05, -0.0035926038399338722, 0.015658168122172356, 0.017208030447363853, -0.012820553034543991, 0.02370377816259861, -0.006096885073930025, -0.006843326147645712, -0.0063931820914149284, 0.026689542457461357, 0.03165821731090546, 0.019612597301602364, -0.03500865772366524, -0.03705994412302971, 0.0011239351006224751, 0.029834851622581482, -0.026005778461694717, -0.02028496377170086, 0.016205178573727608, -0.0008575525134801865, -0.005384632386267185, 0.013857592828571796, -0.030518613755702972, 0.01906558685004711, 0.0078062922693789005, 0.026324868202209473, -0.004199443385004997, 0.003404569113627076, -0.014757880941033363, -0.011652457527816296, -0.00747580686584115, -0.009458718821406364, -0.022963033989071846, -0.03753857687115669, -0.02723655290901661, 0.014404603280127048, 0.007071247324347496, -0.003886051941663027, -0.023498648777604103, -0.0118632847443223, -0.015840504318475723, -0.01745874434709549, -0.030290693044662476, -0.0038347698282450438, 0.009310570545494556, -0.002119664801284671, -0.01668381318449974, -0.006945890374481678, 0.01849578320980072, 0.021435964852571487, 0.004569815006107092, -0.025344807654619217, -0.03366392105817795, 0.010877526365220547, -0.058256592601537704, 0.0292422566562891, 0.016843358054757118, 0.053971678018569946, 0.008860426023602486, 0.005344746168702841, 0.01354989968240261, -0.0243875402957201, 0.021082686260342598, 0.010552739724516869, -0.02134479582309723, 0.0339830107986927, -0.008057004772126675, -0.013470127247273922, -0.02325933240354061, -0.006085488945245743, 0.013390354812145233, -0.0058034369722008705, -0.03778929263353348, -0.016216574236750603, -0.0033447397872805595, 0.06805719435214996, 0.02153852954506874, -0.014039929956197739, 0.015008593909442425, -0.00156125845387578, 0.03225081413984299, 0.01102567557245493, -0.02325933240354061, 0.03694598376750946, 0.020182399079203606, -0.021869013085961342, 0.010700888000428677, -0.02643882855772972, 0.01816529966890812, 0.004034200683236122, -0.023316312581300735, 0.022233687341213226, 0.010643907822668552, 0.020045647397637367, 0.011128240264952183, 0.03573800250887871, 0.006763553712517023, -0.003754997393116355, 0.041618362069129944, 0.004908847156912088, 0.025527145713567734, -0.007772103883326054, -0.009965842589735985, -0.016604039818048477, 0.02787473052740097, 0.019304903224110603, -0.01187468133866787, -0.018290655687451363, -0.017162445932626724, -0.030495822429656982, -0.024752214550971985, 0.01580631732940674, 0.052011556923389435, 0.014723693020641804, 0.0007254296215251088, -0.03261548653244972, -0.02162969671189785, 0.061082810163497925, 0.0007670964114367962, -0.04109414666891098, -0.02311118319630623, -0.00038889009738340974, -0.020763598382472992, 0.0305641982704401, -0.011578383855521679, -0.012706592679023743, -0.029629722237586975, -0.0016339082503691316, 0.02370377816259861, 0.009703733958303928, 0.006900306325405836, 0.0037777896504849195, -0.002377500291913748, -0.02189180627465248, -0.0020997216925024986, 0.0012998615857213736, 0.003094026818871498, -0.0008276379085145891, 0.02434195578098297, 0.006227939855307341, -0.007316261995583773, -0.016695208847522736, -0.002078354125842452, 0.00747580686584115, 0.02330491505563259, 0.024296371266245842, -0.005840473808348179, -0.004552720580250025, -0.010609719902276993, 0.010433080606162548, -0.01356129627674818, 0.030290693044662476, -0.0021652488503605127, -0.020763598382472992, 0.012615423649549484, -0.004068388603627682, 0.031088415533304214, 0.022792093455791473, -0.007612559478729963, -0.0020299209281802177, -0.012512859888374805, 0.02575506642460823, 0.04510555416345596, -0.032524317502975464, 0.006888910196721554, -0.030222317203879356, -0.01633053459227085, 0.03364112973213196, -0.017948774620890617, -0.0019002908375114202, -0.00908264983445406, -0.022814886644482613, 0.03500865772366524, 0.017925981432199478, 0.01153279934078455, -0.0030911776702851057, -0.03058698959648609, 0.04025083780288696, -0.025663897395133972, -0.027441680431365967, -0.003558415686711669, -0.007019964978098869], [0.002998518059030175, 0.025365769863128662, 0.04222526028752327, 0.03960121423006058, -0.03787371888756752, 0.041350577026605606, 0.012081541121006012, -0.03544647619128227, 0.0007735466351732612, 0.057554055005311966, 0.004449943080544472, 0.06389549374580383, -0.01904619298875332, -0.014443181455135345, -0.008090805262327194, 0.008380544371902943, 0.018838457763195038, 0.036955300718545914, -0.02000834420323372, -0.03577448055148125, 0.066388338804245, 0.05213102698326111, -0.03842039406299591, -0.003219922073185444, -0.011808202601969242, -0.03839852660894394, -0.014137042686343193, 0.0031734544318169355, 0.011195925995707512, -0.06310828030109406, 0.04237832874059677, -0.03400325030088425, 0.04522104188799858, -0.060527972877025604, 0.044871170073747635, 0.02805541455745697, -0.02357267215847969, -0.008096272125840187, 0.005745565518736839, 0.03905453905463219, -0.010047906078398228, 0.00612277165055275, -0.007522262632846832, 0.020642487332224846, 0.013841837644577026, 0.0966523289680481, -0.0644640401005745, -0.0236820075660944, -0.008883485570549965, 0.023222798481583595, -0.0010482512880116701, 0.009233358316123486, -0.016837622970342636, 0.0011698867892846465, 0.0509064756333828, 0.005228956695646048, 0.04047589376568794, -0.006368775852024555, -0.004195738583803177, -0.03951374441385269, -0.03540274128317833, -0.013109291903674603, 0.03258189186453819, -0.013393563218414783, 0.010272042825818062, -0.0012723885010927916, -0.03078879602253437, 0.03831105679273605, -0.05226223170757294, -0.0439746230840683, 0.014771186746656895, 0.018018443137407303, -0.000583576678764075, 0.00410827063024044, 0.022435585036873817, 0.002149803563952446, -0.05912848189473152, 0.0445869006216526, 0.005636230111122131, 0.002237271750345826, -0.05025046318769455, -0.00032270970405079424, -0.0202926155179739, -0.036036886274814606, -0.014005840755999088, 0.01088978722691536, -0.021287566050887108, -0.03590568155050278, -0.0289956983178854, -0.03699903562664986, -0.013874637894332409, 0.028295952826738358, -0.005127821583300829, 0.06057170778512955, 0.01729683019220829, -0.03199148178100586, 0.012628217227756977, -0.0444338284432888, -0.0041848053224384785, 0.0515187531709671, -0.019702205434441566, -0.047757621854543686, -0.04762641713023186, -0.002074635587632656, -0.0012662383960559964, -0.06044050306081772, -0.010802319273352623, 0.03524967283010483, -0.01854325272142887, -0.02993598021566868, -0.018346449360251427, -0.026196716353297234, 0.047582682222127914, 0.07806534320116043, 0.027071397751569748, 0.006549179088324308, 0.031576007604599, -0.03159787505865097, 0.008325876668095589, -0.01138179562985897, 0.009676165878772736, 0.003329257247969508, -0.006084504537284374, -0.0811704620718956, 0.011458329856395721, -0.03052639029920101, 0.008435211144387722, 0.015952007845044136, -0.020937692373991013, -0.015558400191366673, 0.038201723247766495, -0.0367366299033165, 0.04740774631500244, -0.09446562081575394, -0.017340565100312233, 0.000988800311461091, 0.015897339209914207, 0.015470932237803936, -0.007445727940648794, 0.013579432852566242, 0.031947746872901917, -0.000832314311992377, 0.0056799640879035, 0.046533066779375076, -0.04819495975971222, -0.024053746834397316, -0.046620532870292664, 0.07928989827632904, 0.05011926218867302, -0.028121016919612885, -0.0009457495762035251, 0.05676684156060219, -0.02735566906630993, 0.03890146687626839, 0.0008452978800050914, 0.0020937693770974874, 0.015503732487559319, 0.05011926218867302, 0.02157183736562729, -0.004255873151123524, -0.05020672827959061, -0.0442807599902153, 0.01933046616613865, 0.0022509386762976646, 0.022380918264389038, -0.007243457715958357, 0.0020131345372647047, 0.017810706049203873, -0.040519628673791885, -0.020675288513302803, -0.03960121423006058, -0.041350577026605606, -0.06660701334476471, 0.027202600613236427, -0.028536489233374596, -0.014661852270364761, 0.011113923974335194, 0.00012112291005905718, 0.029914114624261856, 0.0289956983178854, -0.013645034283399582, 0.04375595226883888, -0.040388427674770355, -0.023528937250375748, 0.027967946603894234, 0.03553394228219986, -0.028514623641967773, 0.03798305243253708, -0.05571722239255905, 0.007713599130511284, 0.008118139579892159, 0.015066391788423061, -0.0029028498101979494, 0.005947835277765989, 0.019724072888493538, 0.005403892602771521, -0.018925925716757774, -0.03293176740407944, 0.003263656049966812, -0.05882234498858452, 0.04998805746436119, -0.061358921229839325, -0.00802520476281643, 0.002241371897980571, -0.07898375391960144, -0.01333889551460743, 0.010468846186995506, -0.012748485431075096, 0.026918329298496246, -0.024053746834397316, 0.009134956635534763, 0.020883025601506233, -0.0030012514907866716, 0.03227575495839119, -0.030263986438512802, -0.007762799970805645, 0.0026226784102618694, 0.0670006200671196, 0.01966940425336361, 0.028492756187915802, -0.003982535097748041, 0.0020719021558761597, 0.009113090112805367, -0.01846671663224697, -0.04561464861035347, 0.006281307898461819, -0.042837534099817276, -0.049900591373443604, -0.024819092825055122, -0.08252621442079544, -0.01625814661383629, 0.03472486138343811, 0.03618995472788811, -0.06735049188137054, 0.03341284021735191, -0.03605875372886658, -0.029039431363344193, -0.02818661741912365, -0.01995367556810379, 0.008227474987506866, 0.020642487332224846, 0.0007222957210615277, -0.0314229391515255, -0.08545640110969543, -0.0318821482360363, -0.015624001622200012, 0.02385694347321987, -0.016094142571091652, 0.06267094612121582, 0.019549135118722916, 0.012551682069897652, 0.00280991499312222, 0.03280056267976761, -0.027180733159184456, 0.010988188907504082, -0.006702248472720385, 0.011873804032802582, 0.007369193248450756, -0.009479362517595291, 0.030132783576846123, 0.0029137833043932915, -0.012704751454293728, -0.02120009809732437, -0.01105925627052784, -0.029214369133114815, -0.01706722564995289, -0.0046276128850877285, -0.01150206383317709, -0.006401576567441225, 0.05042539909482002, -0.02805541455745697, 0.024447353556752205, -0.009419228881597519, -0.027880478650331497, -0.06835637241601944, 0.05164995416998863, 0.004480010364204645, 0.021692106500267982, -0.011020989157259464, -0.034112587571144104, -0.01607227511703968, -0.05077527090907097, 0.007063054479658604, -0.033303506672382355, 0.032188285142183304, 0.02146250195801258, 0.006609313655644655, 0.019264863803982735, -0.006838917266577482, 0.014301045797765255, 0.0016769288340583444, 0.014946123585104942, -0.006997453514486551, -0.011053789407014847, 0.03745824471116066, 0.04209405556321144, -0.0029793845023959875, -0.008265742100775242, 0.017876306548714638, -0.02532203495502472, 0.022676123306155205, 0.021735839545726776, -0.029345570132136345, -0.036977168172597885, -0.021998245269060135, 0.0009286659769713879, -0.051300082355737686, -0.029323704540729523, 0.010190041735768318, -0.021659305319190025, 0.003301923396065831, -0.011010055430233479, -0.03594941645860672, -0.03406885266304016, 0.037676915526390076, 0.03669289872050285, 0.008418811485171318, 0.023354001343250275, 0.01383090391755104, -0.006991986650973558, -0.02860209159553051, 0.015798937529325485, 0.010949921794235706, -0.006166506092995405, 0.010742184706032276, -0.012234610505402088, -0.04906964302062988, 0.026043647900223732, 0.0010933520970866084, 0.04845736548304558, -0.017100026831030846, -0.011972205713391304, 0.008621081709861755, 0.0027415803633630276, 0.022205980494618416, 0.016476815566420555, -0.044455695897340775, 0.0405852310359478, 0.013918372802436352, -0.055498551577329636, -0.05038166418671608, -0.043384213000535965, -0.008746816776692867, 0.026612190529704094, -0.004630346316844225, 0.0015416265232488513, 0.05497374385595322, 0.027727410197257996, -0.013065557926893234, 0.04030095785856247, 0.031401071697473526, 0.033456575125455856, 0.002361640566959977, 0.0069373189471662045, -0.06472644209861755, 0.01716562733054161, -0.007199723739176989, 0.0238350760191679, -0.04275006800889969, 0.01959287002682686, -0.0027976147830486298, 0.001491058967076242, -0.005718231666833162, 0.03960121423006058, 0.018018443137407303, 0.0202926155179739, -0.022938527166843414, -0.0016769288340583444, 0.010709383524954319, -0.03461552783846855, 0.015066391788423061, -0.006035303696990013, -0.0048763505183160305, -0.0032554559875279665, 0.023375868797302246, 0.006079037673771381, -0.0002268705575261265, 0.009949504397809505, 0.005335558205842972, 0.041634850203990936, 0.017056293785572052, 0.04920084401965141, -0.01075858436524868, -0.00998777151107788, -0.016498683020472527, 0.024184947833418846, -0.007812000811100006, -0.0049118841998279095, 0.001965300412848592, -0.01266101747751236, 0.03063572570681572, -0.022916659712791443, -0.010162707418203354, 0.03890146687626839, -0.034243788570165634, 0.024600422009825706, 0.016422148793935776, 0.019866207614541054, 0.026721525937318802, -0.0338064469397068, 0.028230352327227592, -0.05449267104268074, -0.023047862574458122, -0.02425055019557476, -0.007227057591080666, 0.016367482021450996, -0.00561982998624444, -0.014650918543338776, 0.004534678068011999, -0.027049532160162926, 0.026612190529704094, -0.029476772993803024, 0.021692106500267982, 0.0760098397731781, -0.033850181847810745, -0.005494094453752041, -0.030810661613941193, 0.03831105679273605, -0.00993857067078352, -0.032494425773620605, 0.011130324564874172, 0.05466760694980621, 0.01573333702981472, 0.04041029512882233, -0.06389549374580383, -0.00019475334556773305, 0.04871977120637894, 0.0038540661334991455, -0.03050452470779419, -0.004646746441721916, -0.043646614998579025, -0.005433959886431694, -0.02328840084373951, 0.07036814093589783, -0.01784350723028183, -0.007795600686222315, 0.0029684510082006454, -0.031226135790348053, 0.03170721232891083, -0.023200931027531624, -0.034659262746572495, -0.002938383724540472, 0.033718980848789215, 0.013655968010425568, -0.02003020979464054, -0.018630720674991608, -0.020609688013792038, 0.016312813386321068, 0.0010400512255728245, -0.024141214787960052, -0.0004161571559961885, 0.022315315902233124, -0.06796276569366455, 0.01669548638164997, -0.02766180783510208, -0.03802678734064102, 0.0102228419855237, -0.027137000113725662, 0.026393519714474678, -0.003985268529504538, 0.02328840084373951, 0.03428752347826958, 0.05020672827959061, 0.019057126715779305, 0.009227891452610493, -0.012092473916709423, 0.013448230922222137, -0.037939317524433136, -0.021549969911575317, -0.06660701334476471, 0.02274172380566597, 0.004001668654382229, -0.013885571621358395, -0.023069730028510094, -0.045833319425582886, -0.023791341111063957, -0.0030340522062033415, -0.011884737759828568, -0.012507948093116283, 0.018980592489242554, 0.05239343270659447, 0.04701413959264755, -0.07487275451421738, -0.008560947142541409, 0.03813612088561058, 0.03037332184612751, 0.025693774223327637, 0.05339931696653366, 0.00940282829105854, -0.025168966501951218, -0.017701370641589165, 0.015394398011267185, 0.03964494913816452, -0.008227474987506866, -0.002949317218735814, 0.008878018707036972, -0.04154738038778305, -0.028492756187915802, 0.009807368740439415, 0.021746773272752762, -0.017493633553385735, -0.01888219080865383, -0.002505142940208316, -0.0002948633919004351, 0.00022977478511165828, -0.010840586386620998, 0.008550013415515423, 0.03877026587724686, -0.03293176740407944, 0.008664815686643124, 0.002938383724540472, 0.017701370641589165, 0.017132828012108803, 0.0008446145220659673, -0.019341398030519485, -0.0036162619944661856, 0.005975169129669666, -0.008905353024601936, -0.049113377928733826, 0.017307763919234276, -0.0029602509457618, -0.019264863803982735, 0.0017630303045734763, 0.0036408626474440098, -0.00041684048483148217, 0.00735825952142477, -0.0012894721003249288, -0.0708492174744606, 0.006434377282857895, -0.028274085372686386, -0.0026390787679702044, -0.0029411171562969685, 0.015481865964829922, -0.005349225364625454, 0.0024327083956450224, -0.014169842936098576, -0.030001582577824593, 0.024053746834397316, -0.014508782885968685, -0.0011316194431856275, -0.03800491988658905, 0.0048216828145086765, 0.025256434455513954, 0.01620347797870636, -0.009211491793394089, -0.014858655631542206, 0.0032855230383574963, 0.03229762241244316, 0.01091712061315775, -0.0034112585708498955, -0.018827524036169052, 0.00523715652525425, 0.0026049113366752863, 0.019450733438134193, 0.01567866839468479, 0.007653464563190937, 0.03809238597750664, -0.025978045538067818, 0.008823351934552193, -0.014749320223927498, 0.0026076447684317827, -0.026896461844444275, -0.014825854450464249, -0.009916703216731548, 0.0021429702173918486, 0.05217476189136505, -0.03201334923505783, -0.05116887763142586, 0.0003138262254651636, -0.030176518484950066, 0.0009949504164978862, 0.003657262772321701, -0.003700996981933713, 0.050993941724300385, 0.006494511384516954, 0.026109248399734497, 0.040913235396146774, -0.03772064670920372, -0.011048323474824429, 0.022807324305176735, 0.008254808373749256, 0.01628001220524311, -0.046533066779375076, -0.05724791809916496, -0.0045729451812803745, -0.01899152621626854, -0.05125634744763374, -0.022654255852103233, -0.01294528879225254, -0.0019242997514083982, -0.01682668924331665, 0.014421314001083374, -0.02466602437198162, -0.007740932982414961, -0.006264907773584127, 0.02302599512040615, -0.015766138210892677, -0.00257211085408926, -0.027158865705132484, -0.00039087337790988386, 0.011403662152588367, 0.0035533944610506296, 0.01752643473446369, 0.05248090252280235, -0.017253097146749496, -0.01591920666396618, -0.014355713501572609, -0.024053746834397316, 0.02519083209335804, -0.016509616747498512, 0.04141617938876152, 0.015306929126381874, -0.026524722576141357, -0.020467551425099373, 0.02112356200814247, -0.003269122913479805, -0.014126108959317207, 0.011906604282557964, -0.02532203495502472, -0.03325977176427841, -0.03612435236573219, 0.030482657253742218, 0.026787126436829567, -0.0051797558553516865, -0.017493633553385735, 0.014814920723438263, -0.02820848487317562, 0.010293910279870033, -0.05051286891102791, -0.042706333100795746, -0.027421271428465843, -0.026459120213985443, 0.012639150023460388, -0.01026111003011465, -0.02505963109433651, 0.01612694375216961, -0.026065513491630554, -0.01784350723028183, -0.02993598021566868, 0.01693602465093136, -0.012147141620516777, 0.005674497690051794, 0.02711513265967369, -0.015973873436450958, 0.04141617938876152, 0.03662729635834694, -0.03210081905126572, 0.03883586823940277, 0.023069730028510094, 0.00795960333198309, 0.012912488542497158, 0.0037583978846669197, -0.02532203495502472, -0.009091222658753395, 0.035490211099386215, -0.0012416379759088159, -0.012169009074568748, 0.0013120225630700588, -0.01559120137244463, 0.008856152184307575, -0.01750456728041172, 0.021604638546705246, -0.010102573782205582, 0.03284429758787155, 0.026524722576141357, 0.0426625981926918, 0.024184947833418846, -0.004253139719367027, 0.0105891153216362, -0.005496827885508537, -0.032603759318590164, 0.01792004145681858, 0.01750456728041172, -0.034528058022260666, -0.00015887772315181792, -0.045177310705184937, 0.023791341111063957, 0.024010011926293373, 0.038748398423194885, 0.0057619656436145306, -0.013798103667795658, -0.02211851254105568, -0.02748687192797661, 0.053443051874637604, 0.003679129760712385, -0.03612435236573219, 0.025103364139795303, -0.009031088091433048, -0.014147976413369179, 0.04240019619464874, 0.01816057786345482, 0.014563450589776039, 0.004094603471457958, -0.005138754844665527, 0.04154738038778305, 0.026109248399734497, 0.007079455070197582, -0.0025420435704290867, -0.011512997560203075, -0.06227733567357063, -0.01758110150694847, -0.022074779495596886, -0.02214037999510765, -0.06647580862045288, -0.03039518930017948, -0.03787371888756752, -0.025300167500972748, -0.03164160996675491, 0.03052639029920101, -0.010813252069056034, -0.019909942522644997, -0.009320827201008797, -0.02370387315750122, -0.014082374982535839, -0.006319575011730194, -0.0035479275975376368, 0.0009061155724339187, 0.017187494784593582, -0.0033921250142157078, 0.010348577983677387, 0.0015580267645418644, 0.003301923396065831, -0.021976377815008163, 0.009435628540813923, -0.007341859396547079, -0.024403618648648262, 0.0035670611541718245, -0.008041604422032833, 0.011556731536984444, -0.0038704664912074804, 0.009003754705190659, 0.0019721337594091892, -0.012999956496059895, 0.0019899008329957724, -0.002707413164898753, 0.016476815566420555, -0.0460519902408123, 0.010430579073727131, 0.0021921710576862097, 0.009823768399655819, -0.010097106918692589, -0.03885773569345474, -0.005450360476970673, -0.011753534898161888, 0.03336910530924797, 0.017056293785572052, -0.00016084234812296927, 0.01049618050456047, 0.01348103117197752, 0.005876767449080944, 0.009036554954946041, 0.005597962997853756, -0.06927479058504105, -0.010091640055179596, 0.0439746230840683, 0.009063889272511005, 0.016247212886810303, -0.007445727940648794, 0.013251427561044693, -0.011436463333666325, -0.0014760253252461553, 0.00851721316576004, 0.013721569441258907, 0.016247212886810303, 0.017264029011130333, -0.02003020979464054, -0.0070685213431715965, 0.014683718793094158, -0.007719065994024277, -0.002533843507990241, -0.004671346861869097, -0.02818661741912365, -0.006346908863633871, 0.02562817372381687, -0.004581145476549864, -0.021342232823371887, -0.06665074825286865, 0.006450777407735586, 0.033456575125455856, 9.754751226864755e-05, -0.0021730372682213783, -0.0005210505914874375, -0.024600422009825706, -0.018893124535679817, 0.0020391016732901335, 0.04906964302062988, -0.04165671393275261, -0.00030528439674526453, -0.002976651070639491, -0.004321474116295576, -0.021615570411086082, -0.00647264439612627, -0.006767849437892437, -0.00739106023684144, -0.02615298330783844, -0.0019489001715555787, 0.027465004473924637, -0.03360964357852936, -0.022107578814029694, 0.035468343645334244, -0.003744730958715081, 0.016444016247987747, -0.027333803474903107, 0.018171511590480804, 0.06293334811925888, 0.023375868797302246, -0.06450777500867844, 0.006685848347842693, -0.002837248845025897, -0.03227575495839119, -0.009364561177790165, 0.0032007882837206125, 0.012584483250975609, -0.018510451540350914, -0.009162290953099728, -0.04222526028752327, -0.0015976608265191317, 0.009566831402480602, -0.03555580973625183, -0.013579432852566242, 0.019909942522644997, -0.034374989569187164, 0.0195600688457489, -0.0027197133749723434, 0.0008815151522867382, 0.004187538754194975, -0.010244709439575672, 0.003807598724961281, 0.00935362745076418, 0.010643783025443554, -0.0003597811737563461, 0.0006245773984119296, -0.013601300306618214, 0.0011473363265395164, 0.005833033472299576, -0.01436664629727602, -0.009643365629017353, 0.01457438338547945, -0.0042968736961483955, 0.018477650359272957, 0.05724791809916496, 0.008183741010725498, -0.0349653996527195, -0.03448432683944702, -0.0186744537204504, 0.0050977542996406555, 0.019396066665649414, -0.0044335429556667805, -0.04154738038778305, 0.02680899389088154, 0.0026049113366752863, 0.01049618050456047, -0.025147099047899246, 0.008927219547331333, -0.01620347797870636, -0.02339773438870907, 0.0028071815613657236, 0.0057127648033201694, -0.026065513491630554, -0.0031242535915225744, -0.012704751454293728, 0.02411934733390808, 0.002949317218735814, -0.028798894956707954, 0.020817425101995468, 0.003274589544162154, 0.014694652520120144, 0.007937735877931118, -0.003495993325486779, -0.02696206234395504, 0.038726530969142914, 0.006833450868725777, 0.0012682884698733687, -0.005371092353016138, -0.015492799691855907, -0.005390225909650326, -0.010485246777534485, -0.006079037673771381, 0.037655048072338104, 0.02396627888083458, 0.028033548966050148, 0.038726530969142914, 0.014137042686343193, -0.010042439214885235, -0.05532361567020416, -0.014071441255509853, -0.004715080838650465, 0.036452360451221466, 0.021265698596835136, 0.006860784720629454, -0.005936902016401291, -0.017930975183844566, 0.019002459943294525, -0.059697024524211884, -0.011545798741281033, 0.025256434455513954, -0.026787126436829567, 0.013306095264852047, -0.008856152184307575, -0.011010055430233479, -0.06966839730739594, -0.020172346383333206, -0.0010899354238063097, 0.010255643166601658, -0.0021197365131229162, 0.01888219080865383, -0.017756037414073944, -0.000885615183506161, 0.010086173191666603, 0.032057084143161774, -0.004704147577285767, -0.02180144190788269, -0.035227805376052856, 0.008030671626329422, 0.04863230139017105, 0.04648933187127113, 0.0036599962040781975, -0.020205147564411163, -0.008790550753474236, -0.003949734382331371, 0.03175094351172447, -0.006871717981994152, 0.01266101747751236, -0.014902389608323574, 0.04613946005702019, -0.004337874706834555, 0.0020022010430693626, 0.012190875597298145, 0.02956424094736576, -0.04946324974298477, 0.008276675827801228, -0.0222934503108263, 0.007188790012151003, 0.018750987946987152, -0.0075933304615318775, -0.048676036298274994, -0.02339773438870907, -0.004428076092153788, 0.0009252492454834282, -0.05051286891102791, -0.03828918933868408, 0.019756872206926346, 0.02696206234395504, -0.01893685944378376, -0.001204053987748921, 0.012792219407856464, 0.009670699015259743, 0.007494928780943155, 0.028711427003145218, -0.017515501007437706, 0.020544085651636124, 0.005647163838148117, 0.02805541455745697, 0.0033948582131415606, 0.0013482398353517056, -0.02125476486980915, 0.014355713501572609, -0.01771230436861515, 0.006428910419344902, -0.05038166418671608, -0.024687889963388443, 0.030613858252763748, 0.01825897954404354, 0.011797268874943256, 0.017592035233974457, 0.0176357701420784, -0.007008387241512537, -0.019516335800290108, 0.014530649408698082, -0.02057688683271408, -0.02438175119459629, 0.019986476749181747, 0.027946079149842262, 0.03258189186453819, 0.014443181455135345, -0.006631180644035339, -0.007719065994024277, -0.007172389887273312, 0.0026923795230686665, -0.009960438124835491, -0.011786336079239845, 0.006942785810679197, 0.02547510340809822, -0.01744990050792694, -0.010075239464640617, 0.0036763965617865324, 0.03608062118291855, 0.0011104356963187456, 0.017930975183844566, -0.01859791949391365, 0.05112514644861221, -0.0002581336011644453, 0.0016167943831533194, 0.009391894564032555, 0.022031044587492943, 0.023354001343250275, 0.011928471736609936, -0.007090388331562281, 0.016531484201550484, 0.028908230364322662, -0.0005138755077496171, 0.03608062118291855, 0.031248003244400024, 0.06262721121311188, 0.018226180225610733, -0.00449367705732584, -0.004846283234655857, 0.012147141620516777, -0.004395275376737118, 0.01659708470106125, 0.03063572570681572, -0.01633468084037304, -0.034790463745594025, 0.043930888175964355, -0.0301109179854393, 0.03435312211513519, -0.004321474116295576, -0.02232624962925911, -0.04495863988995552, -0.018608853220939636, -0.017602968961000443, 0.003192588221281767, 0.018094977363944054, 0.005783832632005215, 0.03199148178100586, -0.020391017198562622, 0.009058422408998013, -0.007795600686222315, 0.033850181847810745, -0.01023924257606268, 0.002073268871754408, 0.0445869006216526, 0.04288126900792122, 0.02466602437198162, 0.011157657951116562, 0.03461552783846855, -0.019133662804961205, 0.00414107134565711, -0.012923422269523144, -0.006882651709020138, -0.009085755795240402, -0.029870379716157913, -0.036824099719524384, 0.04191911965608597, 0.018849389627575874, 0.010244709439575672, -0.028405288234353065, -0.03428752347826958, -0.016684552654623985, -0.019505402073264122, -0.012540748342871666, 0.02779301069676876, -0.03190401569008827, -0.00411647092550993, -0.0028427154757082462, -0.031532276421785355, -0.020052077248692513, -0.021976377815008163, 0.005876767449080944, 0.02435988560318947, 0.007194256875663996, 0.00517702242359519, -0.005964235868304968, -0.009113090112805367, 0.024556688964366913, -0.0003795981756411493, -0.008593747392296791, 0.01742803305387497, 0.014137042686343193, 0.025693774223327637, 0.005734631791710854, 0.01403864100575447, 0.018138712272047997, 0.02519083209335804, -0.0028345154132694006, 0.01735149882733822, 0.019319532439112663, -0.0006727532017976046, 0.004633079748600721, 0.04222526028752327, -0.027311936020851135, -0.018477650359272957, -0.00636330945417285, -0.016028542071580887, -0.0389670692384243, -0.03201334923505783, 0.007418394088745117, 0.009512163698673248, -0.013852771371603012, -0.020358216017484665, -0.05374918878078461, 0.014465047977864742, 0.0021033361554145813, 0.0239881444722414, 0.007669865153729916, -0.01144739706069231, 0.010425112210214138, 0.028099149465560913, -0.022096646949648857, -0.0017001625383272767, 0.011633266694843769, 0.034528058022260666, 0.01112485770136118, -0.028295952826738358, 0.02862395904958248, -0.02214037999510765, -0.022697990760207176, 0.015634935349225998, 0.00558702927082777, 0.019997410476207733, 0.004742414690554142, -0.0022714389488101006, 0.021582771092653275, -0.057816460728645325, -0.021036094054579735, 0.011611399240791798, -0.024950295686721802, 0.005081353709101677, -0.021418767049908638, 0.03988548368215561, -0.01661895215511322, -0.032603759318590164, -0.041766051203012466, -0.033456575125455856, -0.0068115838803350925, 0.010321243666112423, -0.0033237903844565153, 0.03450619429349899, 0.02888636291027069, -0.03339097276329994, -0.01544906571507454, -0.014388513751327991, -0.028142882511019707, -0.01638934761285782, -0.0027511471416801214, 0.02021608129143715, 0.014027707278728485, -0.032188285142183304, -0.01396210677921772, -0.027574339881539345, 0.019866207614541054, 0.008746816776692867, -0.022107578814029694, -0.0043515413999557495, 0.007210657000541687, 0.016214411705732346, 0.021768640726804733, 0.050469134002923965, 0.014978923834860325, -0.011939405463635921, 0.025300167500972748, 0.03146667405962944, -0.013983973301947117, -0.008238407783210278, 0.04318740963935852, -0.004455409944057465, -0.01976780593395233, -0.013885571621358395, 0.003998935222625732, 0.04771388694643974, 0.012475147843360901, 0.002242738613858819, -0.011359928175807, 0.009883902966976166, -0.02562817372381687, 0.018532318994402885, -0.011305260471999645, 0.04565838351845741, -0.03352217748761177, -0.022020110860466957, -0.03216641768813133, -0.03280056267976761, -0.003099653171375394, -0.009741767309606075, 0.018947791308164597, 0.02115636318922043, 0.0011104356963187456, 0.0011739868205040693, -0.0042886738665401936, -0.0050430865958333015, -0.027552472427487373, 0.015427198261022568, -0.004203938879072666, 0.019888075068593025, -0.02050035260617733, -0.02519083209335804, 0.011972205713391304, 0.006620246917009354, -0.009949504397809505, -0.010988188907504082, -0.018838457763195038, -0.020675288513302803, 0.03623368963599205, -0.01946166716516018, -0.041875384747982025, -0.022807324305176735, -0.02261052094399929, 0.04504610598087311, 0.04111003875732422, 0.010671116411685944, -0.003375724656507373, 0.006904518697410822, 0.0014473248738795519, 0.010955387726426125, -0.03678036481142044, 0.03245069086551666, -0.0018791989423334599, 0.03621182218194008, 0.008424278348684311, -0.009807368740439415, 0.012179942801594734, 0.020926758646965027, 0.01859791949391365, -0.016367482021450996, -0.02341960184276104, -0.021353166550397873, -0.016772020608186722, 0.011403662152588367, 0.011370861902832985, 0.025431370362639427, 0.024884693324565887, -0.010785918682813644, 0.032909899950027466, 0.013393563218414783, 0.029782911762595177, -0.015634935349225998, 0.039972953498363495, -0.031226135790348053, 0.011163124814629555, -0.007052121218293905, -0.002680079312995076, -0.008396944031119347, -0.012092473916709423, -0.023660140112042427, -0.019308598712086678, 0.008697615936398506, 0.024447353556752205, 0.012497014366090298, 0.01463998481631279, 0.02047848515212536, -6.14156379015185e-05, 0.029083166271448135, 0.006079037673771381, -0.022315315902233124, -0.05558602139353752, -0.026240451261401176, -0.011655133217573166, 0.013983973301947117, 0.007412927225232124, 0.003088719677180052, 0.03024211898446083, -0.007970537059009075, -0.008899886161088943, 0.009446562267839909, 0.003031318774446845, 0.020926758646965027, -0.006248507183045149, -0.004854483529925346, -0.013240493834018707, 0.009113090112805367, -0.004477276932448149, -0.0034549927804619074, 0.01724216341972351, 0.02643725462257862, 0.004900950938463211, -0.008998287841677666, 0.027443138882517815, -0.01818244531750679, -0.038332924246788025, 0.06350188702344894, 0.007904935628175735, 0.016706420108675957, 0.028645824640989304, 0.0016304613091051579, 0.03811425343155861, -0.006942785810679197, -0.014738386496901512, 0.0020965025760233402, 0.03638675808906555, -0.012704751454293728, -0.007314525544643402, -0.01286875456571579, 0.013317028991878033, -0.02409747987985611, 0.0019858006853610277, 0.018291780725121498, -0.010605515912175179, 0.015689602121710777, 0.006663980893790722, 0.02862395904958248, -0.007276258431375027, 0.008878018707036972, -0.01226741075515747, 0.016444016247987747, -0.01422451063990593, -0.015667736530303955, 0.010632849298417568, 0.012835953384637833, 0.014760253950953484, -0.0017411631997674704, -0.004769748542457819, -0.0062375739216804504, -0.008172807283699512, -0.034790463745594025, -0.012573549523949623, 0.034112587571144104, -0.012048739939928055, -0.013634100556373596, 0.0008562313742004335, -0.009829235263168812, 0.025693774223327637, 0.012835953384637833, -0.031532276421785355, 0.0010530347935855389, 0.01519759465008974, 0.05309318006038666, -0.04640186205506325, -0.03918574005365372, -0.035337138921022415, 0.012825020588934422, 0.031269870698451996, -0.0445869006216526, -0.006445310544222593, -0.012147141620516777, 0.023769475519657135, -0.04889470711350441, -0.012540748342871666, 0.04154738038778305, 0.021134495735168457, -0.04150364547967911, 0.02125476486980915, 0.008867085911333561, -0.005095020867884159, 0.015689602121710777, -0.011731668375432491, -0.002656845608726144, 0.0153834642842412, 0.028252217918634415, 0.0008815151522867382, 0.006095437798649073, -0.0057892994955182076, 0.025103364139795303, -0.03312857076525688, 0.0046549467369914055, 0.02339773438870907, -0.005034886300563812, -0.013032756745815277, -0.006133705377578735, -0.01463998481631279, -0.01654241792857647, -0.0022782725282013416, -0.01484772190451622, 0.007341859396547079, -0.0057400986552238464, -0.018149644136428833, -0.01688135601580143, 0.025824977084994316, -0.00041820717160589993, -0.021167296916246414, 0.0041684047318995, 0.01560213416814804, -0.02115636318922043, -0.011950338259339333, -0.015798937529325485, -0.009758167900145054, -0.007784666959196329, -0.01123965997248888, -0.033041100949048996, -0.028536489233374596, 0.003985268529504538, -0.041197508573532104, 0.02276359125971794, 0.02193264290690422, -0.010977255180478096, 0.01908992789685726, -0.0019201996037736535, -0.005171555560082197, -0.008276675827801228, 0.017799772322177887, 0.0008309475961141288, -0.020620621740818024, -0.012584483250975609, -0.009840168990194798, -0.0037255974020808935, 0.006817050278186798, 0.009512163698673248, -0.0074074603617191315, -0.022544920444488525, -0.02753060683608055, 0.005196155980229378, -0.020041143521666527, 0.015952007845044136, -0.014585317112505436, -0.02930183708667755, -0.013043690472841263, -0.033981382846832275, -0.02047848515212536, 0.0017794305458664894, 0.013655968010425568, -0.015328796580433846, -0.04920084401965141, 0.001182870357297361, 0.013240493834018707, 0.018608853220939636, -0.004906417801976204, -0.012540748342871666, 0.019002459943294525, 0.02971731126308441, -0.051431283354759216, -0.00357799488119781, 0.0021580036263912916, 0.04032282531261444, 0.007604263722896576, -0.03728330880403519, 0.011731668375432491, -0.015634935349225998, 0.024447353556752205, -0.020861158147454262, -0.005614363122731447, -0.0018395648803561926, -0.03538087382912636, -0.015536533668637276, -0.0018942325841635466, 0.023222798481583595, -0.0013325228355824947, 0.023375868797302246, -0.029607975855469704, 0.0076917321421206, -0.015000791288912296, 0.003290989901870489, 0.017734171822667122, -0.0022878393065184355, -0.010556315071880817, 0.01714376173913479, 0.029629841446876526, 0.015033591538667679, 0.0031324538867920637, 0.05934715270996094, 0.023507069796323776, 0.004980219062417746, -0.013459164649248123, -0.009599631652235985, 0.013470098376274109, -0.028973830863833427, -0.0029903179965913296, 0.014377580024302006, -0.007883069105446339, -0.0032964565325528383, 0.024950295686721802, 0.002987584564834833, -0.007844801060855389, 0.033850181847810745, 0.04613946005702019, -0.02586871013045311, -0.0034604594111442566, -0.012507948093116283, -0.027071397751569748, -0.007587863598018885, 0.011026456020772457, -0.009517630562186241, -0.011906604282557964, -0.023244665935635567, -0.004504610784351826, -0.01340449694544077, -0.004873617086559534, 0.03584008291363716, 0.035184070467948914, 0.03877026587724686, 0.00014486916188616306, -0.008774151094257832, -0.02696206234395504, 0.08235128223896027, 0.005499561317265034, 0.0033128568902611732, -0.03186028078198433, 0.006827984005212784, -0.011600465513765812, 0.025300167500972748, -0.007194256875663996, -0.022916659712791443, -0.0024819092359393835, 0.04823869466781616, 0.012606349773705006, -0.02153903618454933, 0.030854396522045135, -0.014027707278728485, -0.0056854309514164925, -0.02276359125971794, 0.014607184566557407, -0.025431370362639427, -0.029061298817396164, 0.002317906590178609, 0.006439844146370888, 0.005280890502035618, 0.04001668840646744, -0.020533151924610138, -0.005360158625990152, 0.0010995022021234035, 0.02875516004860401, 0.028492756187915802, -0.02766180783510208, 0.011042856611311436, -0.016236279159784317, 0.02562817372381687, -0.0070958551950752735, 0.01429011207073927, -0.02289479412138462, -0.018477650359272957, 0.0007093122112564743, -0.017832573503255844, 0.012103407643735409, 0.010479779914021492, -0.010851520113646984, -0.03310670331120491, -0.0231790654361248, 0.01669548638164997, 0.03966681286692619, -0.05510494485497475, 0.009386427700519562, -0.016116010025143623, -0.01191753800958395, 0.006325041875243187, -0.042422063648700714, -0.017930975183844566, 0.014279178343713284, -0.0011384529061615467, 0.03065759316086769, 0.01605040952563286, 0.02214037999510765, -0.009774567559361458, -0.029389305040240288, 0.027421271428465843, -0.009566831402480602, 0.00810173898935318, -0.038332924246788025, 0.03728330880403519], [0.022609679028391838, 0.012981962412595749, 0.0756937712430954, 0.06534483283758163, -0.012558388523757458, 0.0396556593477726, -0.02436121366918087, -0.0010360385058447719, -0.000741254014428705, 0.037663720548152924, -0.021190134808421135, 0.005758313462138176, -0.00019103748491033912, 0.04309004172682762, -0.047760799527168274, -0.03077206015586853, -0.006204782985150814, 0.01647358387708664, -0.007034758571535349, -0.03319902345538139, 0.014080964960157871, 0.05453798174858093, -0.04292977228760719, -0.017973264679312706, -0.024521484971046448, -0.004871097858995199, 0.0028347959741950035, -0.011379251256585121, 0.016347656026482582, 0.0030308417044579983, 0.003254076698794961, -0.034412503242492676, 0.02754374034702778, -0.06465795636177063, 0.004853926133364439, 0.02536863274872303, -0.031893957406282425, 0.02962726540863514, 0.030657580122351646, 0.047531843185424805, -0.003440105589106679, -0.03436671197414398, 0.03803005442023277, 0.005766899324953556, -0.015489061363041401, 0.09098821878433228, -0.04647863283753395, -0.03148183226585388, -0.01815643161535263, 0.01751534640789032, 0.009541857056319714, 0.028780117630958557, 0.013955037109553814, -0.05389689654111862, 0.008334099315106869, 0.008082244545221329, 0.0407317653298378, 0.027566635981202126, 0.08476053923368454, -0.026696592569351196, -0.025643382221460342, -0.032100021839141846, -0.0018831859342753887, 0.013645943254232407, -0.00231105275452137, -0.013897798024117947, 0.010915610007941723, 0.019072266295552254, -0.04936351254582405, -0.004533383995294571, -0.0053404634818434715, -0.004934061784297228, 0.008311203680932522, 0.010411900468170643, 0.02164805307984352, 0.02264402247965336, -0.026353156194090843, 0.07702173292636871, 0.034412503242492676, -0.015111279673874378, -0.049913015216588974, -0.03503069281578064, -0.015042591840028763, -0.03798425942659378, -0.02493361011147499, 0.030726268887519836, 0.0037577860057353973, 0.004725136794149876, 0.02314773201942444, -0.022472303360700607, 0.03120708093047142, 0.004430352244526148, -0.04492171108722687, -0.0011455094208940864, -0.01253549288958311, 0.0027560913003981113, 0.031252872198820114, -0.0006682734237983823, 0.0036146866623312235, 0.03612969443202019, -0.03537413105368614, -0.028734326362609863, -0.03835059702396393, 0.02674238570034504, 0.000715496193151921, -0.01788168027997017, -0.04455537721514702, 0.07042772322893143, -0.0064909812062978745, 0.006256298627704382, 0.06937450915575027, -0.015489061363041401, 0.0032197327818721533, 0.04480723291635513, -0.025895237922668457, 0.010915610007941723, -0.060582492500543594, -0.0346185676753521, 0.011619658209383488, 0.021693844348192215, -0.022002939134836197, 0.016656750813126564, -0.0009115421562455595, -0.039243534207344055, 0.018431181088089943, 0.03090943582355976, 0.017675617709755898, 0.0012084729969501495, -0.06397107988595963, 0.009347242303192616, 0.0425405390560627, -0.07239676266908646, 0.08553899824619293, -0.04863084480166435, -0.02069787308573723, -0.007647223304957151, -0.01671398989856243, -0.011974544264376163, 0.024384109303355217, 0.04052570462226868, 0.01093850564211607, 0.008351271040737629, -0.0037348901387304068, 0.038442179560661316, -0.03475594148039818, -0.021556468680500984, -0.061223577708005905, 0.06456637382507324, 0.035717569291591644, -0.003465863410383463, 0.015076935291290283, 0.034847527742385864, -0.006273470353335142, -0.012089023366570473, 0.026398947462439537, -0.006050235591828823, 0.033405084162950516, 0.026856863871216774, 0.031046809628605843, 0.00989674311131239, -0.017538242042064667, 0.007899077609181404, -0.01340553630143404, -0.026330258697271347, 0.0038093016482889652, -0.010474864393472672, -0.024613069370388985, 0.009318621829152107, -0.023262212052941322, -0.02422383800148964, -0.0218083243817091, -0.06768021732568741, -0.006542496848851442, 0.012878931127488613, -0.04441800341010094, -0.05627806857228279, -0.0013737527187913656, 0.029970703646540642, 0.030886538326740265, 0.009719300083816051, 0.024842027574777603, 0.0011168895289301872, -0.07802914828062057, -0.034847527742385864, -0.02406356669962406, 0.022792845964431763, 0.017263492569327354, -0.023765921592712402, -0.043502166867256165, -0.023193523287773132, 0.022678367793560028, -0.017996160313487053, 0.0058670686557888985, -0.0156722292304039, 0.008877876214683056, -0.013577255420386791, -0.04721130058169365, -0.06681016832590103, 0.026147091761231422, -0.06081145256757736, 0.0026129919569939375, -0.02053760178387165, -0.028505368158221245, 0.022495198994874954, -0.04524225369095802, 0.0021493504755198956, -0.02321642078459263, -0.0009115421562455595, 0.019243985414505005, -0.03919774293899536, -0.03626707196235657, -0.03019966371357441, -0.019804934039711952, 0.08636324852705002, 0.034137751907110214, -0.007458331994712353, -0.007269441150128841, 0.0327640026807785, 0.0489971786737442, 0.013073545880615711, -0.007074826397001743, -0.01379476673901081, 0.01144221518188715, -0.02754374034702778, -0.09020975977182388, 0.016198834404349327, 0.010039842687547207, -0.05751444399356842, -0.029856225475668907, -0.04194524884223938, -0.045952025800943375, 0.04517356678843498, 0.02687976136803627, -0.016530822962522507, 0.0156722292304039, 0.0039008851163089275, 0.005503596737980843, -0.03393169119954109, -0.026124196127057076, 0.004802410490810871, 0.00887215230613947, -0.017595482990145683, -0.0028147620614618063, -0.010663755238056183, 0.047760799527168274, -0.019015027210116386, 0.015168518759310246, 0.007847562432289124, 0.008128036744892597, 0.01560354046523571, 0.0071206181310117245, 0.015294446609914303, 0.060719866305589676, -0.05600331723690033, -0.00309094344265759, 0.04318162426352501, 0.03617548570036888, -0.014687705785036087, -0.0016942949732765555, -0.003236904740333557, -0.02529994584619999, 0.026971343904733658, 0.0044561102986335754, -0.0389229916036129, -0.07216780632734299, -0.022037282586097717, 0.004364526830613613, -0.0019762003794312477, 0.001649934216402471, 0.020949728786945343, -0.017698513343930244, 0.011304839514195919, -0.015580644831061363, -0.02600971795618534, -0.05151572450995445, 0.04505908861756325, 0.007544191554188728, -0.03294716775417328, 0.017675617709755898, -0.058201320469379425, -0.05050830543041229, -0.020182715728878975, 0.026284467428922653, -0.05504168942570686, 0.034137751907110214, 0.02543731965124607, -0.00875767320394516, 0.007555639836937189, -0.03580915182828903, 0.030520204454660416, 0.058063946664333344, 0.013932141475379467, -0.024521484971046448, 0.019610319286584854, 0.044875919818878174, 0.0021192997228354216, 0.011882960796356201, 0.016256073489785194, -0.028734326362609863, 0.023971984162926674, -0.008603125810623169, 0.0013987950515002012, -0.05220260098576546, -0.030543100088834763, -0.06420004367828369, -0.008173828013241291, 0.01966755837202072, -0.04473854601383209, -0.02651342563331127, 0.0055264923721551895, -0.03846507519483566, -0.0023697232827544212, -0.07331260293722153, -0.053805314004421234, -0.011522350832819939, -0.005970099940896034, -0.02758953347802162, 0.01758403331041336, 0.00464786309748888, 0.029466994106769562, 0.004810996353626251, 0.00024291095905937254, -0.029810432344675064, 0.005529354326426983, -0.01120753213763237, 0.001961890608072281, -0.009152627550065517, 0.02040022797882557, -0.008316927589476109, -0.0013236679369583726, -0.024956507608294487, -0.006548221223056316, -0.01556919701397419, -0.020079685375094414, -0.0006017322884872556, -0.036518923938274384, -0.028711430728435516, 0.0489971786737442, 0.00018549239030107856, 0.02999359928071499, -0.0017887403955683112, -0.0385795533657074, 0.023101940751075745, 0.023514065891504288, -0.029352515935897827, 0.020205611363053322, 0.014435851015150547, -0.00411839596927166, -0.008580230176448822, 0.02338813990354538, -0.005188778508454561, -0.007051930297166109, 0.01859145238995552, -0.016920054331421852, -0.027154510840773582, 0.023468274623155594, 0.07541902363300323, 0.033336397260427475, -0.02861984632909298, 0.004384560510516167, 0.004576313775032759, 0.019175298511981964, 0.01942715235054493, 0.028848806396126747, 0.02658211439847946, -0.04027384892106056, -0.06090303510427475, -0.016725439578294754, 0.03445829451084137, -0.011585313826799393, 0.03056599758565426, 0.017057428136467934, -0.010268800891935825, -1.1101370546384715e-05, 0.07532744109630585, 0.02889459766447544, -0.012959066778421402, 0.031596310436725616, 0.01430992316454649, 0.024086464196443558, 0.008940840139985085, 0.03702263534069061, 0.015466165728867054, 0.0026344568468630314, -0.01624462567269802, 0.04222000017762184, 0.007527019828557968, -0.024819131940603256, -0.01145938690751791, -0.06855025887489319, 0.015168518759310246, -0.00733240507543087, 0.025345737114548683, 0.03977014124393463, -0.03141314536333084, 0.022289136424660683, 0.03725159168243408, 0.011974544264376163, -0.0004915458848699927, -0.026215780526399612, -0.0036204105708748102, -0.03990751504898071, 4.910092684440315e-05, 0.02832220122218132, -0.015477613545954227, 0.019381361082196236, -0.025048090144991875, -0.04563148319721222, -0.023674337193369865, -0.02752084471285343, 0.010583619587123394, 0.012672868557274342, 0.029283827170729637, 0.013222369365394115, -0.006319262087345123, 0.008437130600214005, -0.005363359581679106, 0.0005258896853774786, 0.004725136794149876, -0.030680475756525993, 0.053667936474084854, 0.026902657002210617, 0.0026759556494653225, 0.02513967454433441, -0.04657021537423134, 0.007893353700637817, 0.0504625141620636, -0.014870872721076012, -0.01734362728893757, -0.02140764519572258, -0.02594102919101715, -0.01596987433731556, -0.02802455425262451, 0.04379981383681297, -0.02218610607087612, -0.03663340583443642, -0.040617287158966064, 0.03393169119954109, 0.04292977228760719, -0.04963826388120651, -0.020022444427013397, -0.04203683137893677, 0.046387046575546265, 0.04329610615968704, -0.014103860594332218, -0.05288947746157646, 0.032832689583301544, 0.051927849650382996, 0.04144153743982315, 0.010869817808270454, 0.012317982502281666, 0.0001594662171555683, -0.045517005026340485, -0.021213030442595482, -0.005809829104691744, -0.01377187017351389, 0.017572585493326187, -0.02509388141334057, -0.030085183680057526, -0.0036890984047204256, 0.05760603025555611, 0.029077764600515366, 0.05952928215265274, 0.03509937971830368, -0.01596987433731556, 0.001536885742098093, -0.005678177811205387, -0.012546940706670284, -0.035786256194114685, -0.02788717858493328, 0.019575975835323334, -0.0036833742633461952, -0.020274300128221512, 0.020491810515522957, 0.03429802507162094, 0.004187083803117275, -0.004596347454935312, 0.018270909786224365, 0.011757032945752144, -0.0013708906481042504, 0.018740275874733925, 0.04533383622765541, -0.05939190834760666, -0.004693654831498861, 0.03587783873081207, -0.010062738321721554, 0.038098741322755814, 0.019015027210116386, -0.035282548516988754, 0.031825270503759384, -0.0403883270919323, -0.0006231971783563495, 0.03596942499279976, -0.009370137937366962, -0.0034887592773884535, 0.04297556355595589, 0.005512182600796223, -0.01724059507250786, 0.009169799275696278, 0.03612969443202019, 0.018900547176599503, -0.06104040890932083, 0.010079910047352314, -0.023468274623155594, 0.0028562608640640974, -0.0016656750813126564, -0.03482462838292122, 0.040617287158966064, -0.03523675724864006, 0.019072266295552254, -0.004705103114247322, 0.040319640189409256, 0.03851086646318436, 0.008574506267905235, -0.007509848102927208, -0.014515986666083336, 0.02255243994295597, -0.017561137676239014, -0.040250953286886215, 0.003076633671298623, 0.0003838636912405491, -0.006296366453170776, 0.03386300429701805, -0.010079910047352314, -0.015408925712108612, 0.03379431739449501, 0.007372472435235977, -0.03590073809027672, 0.029924912378191948, 0.004862511996179819, -0.025414424017071724, -0.01444729883223772, -0.04963826388120651, -0.0306346844881773, 0.014641913585364819, 0.006731388159096241, -0.00437883660197258, -0.015271550044417381, 0.002863415749743581, 0.016290416941046715, -0.007549915928393602, -0.028596950694918633, 0.02161370776593685, 0.003102391492575407, 0.014298475347459316, 0.004856788087636232, 0.026307363063097, 0.041556019335985184, 0.017103221267461777, -0.024979403242468834, -0.013600151054561138, 0.052065227180719376, 0.004667897243052721, 0.02465886063873768, 0.029673056676983833, 0.020182715728878975, -0.006805799901485443, -0.04931772127747536, -0.035419922322034836, -0.02587234228849411, -0.010503483936190605, 0.0037949916440993547, -0.0072064776904881, 0.007109169848263264, -0.0013258144026622176, 0.05101201683282852, -0.008311203680932522, -0.058063946664333344, -0.053301602602005005, 0.013508567586541176, -0.008191000670194626, -0.017973264679312706, 0.007263717241585255, -0.0023539825342595577, -0.01919819414615631, 0.027291886508464813, 0.005958652123808861, -0.03580915182828903, 0.026192884892225266, 0.016233177855610847, 0.0025142536032944918, 0.04432642087340355, -0.03175658360123634, -0.045013297349214554, 0.006233402527868748, -0.011024365201592445, -0.02724609524011612, -0.051561515778303146, 0.0019733384251594543, 0.027795596048235893, 0.008534437976777554, 0.007200753781944513, -0.0016456411685794592, 0.013096442446112633, -0.017103221267461777, 0.020079685375094414, -0.051561515778303146, -0.013966485857963562, -0.028711430728435516, 0.007687291130423546, -0.01283313985913992, -0.0007562794489786029, 0.04222000017762184, 0.0003971003752667457, -0.0569191537797451, 0.0035946527495980263, -0.0022080212365835905, -0.05073726549744606, 0.031115498393774033, 0.011407870799303055, 0.01647358387708664, 0.0037778199184685946, -0.00425290921702981, -0.04164760187268257, -0.01969045400619507, 0.000539841887075454, -0.07583114504814148, -0.011064432561397552, -0.006737112067639828, -0.012203502468764782, -0.018900547176599503, 0.022495198994874954, 0.014996799640357494, 0.015225758776068687, -0.031733687967061996, -0.008345547132194042, 0.007034758571535349, 0.004164187703281641, -0.03869403526186943, -0.019919414073228836, -0.03193974867463112, -0.009215590544044971, -0.00012056110426783562, -0.0049684057012200356, 0.011064432561397552, 0.00504281697794795, -0.04304425045847893, -0.014550330117344856, -0.014722049236297607, 0.015958426520228386, 0.01866014115512371, 0.007149237673729658, 0.05023355409502983, -0.039976201951503754, 0.0022881568875163794, 0.047165509313344955, -0.014401507563889027, 0.003963849041610956, 0.02040022797882557, -8.210318628698587e-05, 0.018431181088089943, 0.003646168624982238, -0.015420373529195786, 0.02198004350066185, 0.021522125229239464, -0.00821962021291256, -0.004599209409207106, 0.017938919365406036, -0.002804744988679886, 0.03805295005440712, -0.017503898590803146, 0.021052759140729904, -0.010520655661821365, -0.008316927589476109, 0.057697612792253494, 0.02033153921365738, 0.039747245609760284, 0.002707437612116337, 0.023674337193369865, 0.002883449662476778, -0.039815932512283325, 0.008168104104697704, 0.013989381492137909, -0.034137751907110214, 0.00437883660197258, -0.03645023703575134, 0.029466994106769562, 0.013474224135279655, -0.03184816613793373, 0.004659310914576054, 0.01528299879282713, -0.014092412777245045, -0.01831670291721821, 0.024750443175435066, 0.026055509224534035, -0.024544380605220795, -0.019278328865766525, -0.0035975147038698196, -0.01708032563328743, 0.020926833152770996, 0.016164489090442657, 0.00983377918601036, 0.006073131691664457, 0.019885070621967316, 0.009725023992359638, 0.0331532321870327, 0.03049730882048607, 0.009828055277466774, -0.011562418192625046, -0.008929392322897911, 0.00966206006705761, -0.0031138393096625805, -0.01791602373123169, -0.0785786509513855, -0.035145170986652374, -0.008322651498019695, -0.014332819730043411, -0.05000459775328636, 0.02220900170505047, 0.014035172760486603, -0.018545661121606827, -0.0027890040073543787, -0.03560309112071991, -0.02060629054903984, -0.006239126902073622, -0.040685974061489105, 0.007418264169245958, 0.0006636226898990571, 0.014378610998392105, 0.011625382117927074, -0.014069517143070698, 0.032168708741664886, -0.022163210436701775, 0.007807494141161442, -0.012546940706670284, -0.022701263427734375, -0.025986820459365845, -0.017755752429366112, 0.0026129919569939375, -0.0005394841427914798, 0.022666918113827705, -0.011030089110136032, -0.008179551921784878, 0.01949583925306797, -0.017664169892668724, 0.017801545560359955, 0.005832724738866091, 0.0007115609478205442, -0.025116777047514915, 0.006737112067639828, -0.012764452025294304, 0.00983377918601036, -0.02710871957242489, 0.005246018059551716, 0.021064206957817078, 0.023949088528752327, 0.018557108938694, 0.007538467645645142, 0.02076656185090542, -0.0067428359761834145, -0.001894633867777884, 0.007252269424498081, -0.05124097317457199, -0.0015569196548312902, 0.009518961422145367, -0.02067497745156288, -0.008666089735925198, -0.0018788930028676987, -0.027223199605941772, 0.00465644896030426, -0.005835586693137884, -0.023227868601679802, -0.04009068384766579, -0.014287027530372143, 0.017927471548318863, -0.013966485857963562, -0.012707212008535862, -0.007292337249964476, 0.025528904050588608, -0.02248375117778778, -0.032603729516267776, -0.017126116901636124, -0.037732407450675964, 0.022300584241747856, 0.006639804691076279, -0.03219160437583923, -0.03851086646318436, -0.0020649218931794167, 0.0090095279738307, -0.01734362728893757, 0.04986722022294998, -0.0001958670763997361, -0.0016098663909360766, 0.0009065336780622602, -0.006050235591828823, 0.00019819244334939867, -0.0036003768909722567, -0.007338128983974457, 0.008860704489052296, 0.018030503764748573, -0.023949088528752327, 0.01902647502720356, -0.030474413186311722, -0.032901376485824585, -0.05302685126662254, 0.009902467019855976, 0.02948988974094391, -0.03970145061612129, -0.028276409953832626, 0.02378881722688675, -0.030085183680057526, 0.017824441194534302, -0.04164760187268257, -0.0035517229698598385, 0.0662606731057167, -0.024704651907086372, -0.031252872198820114, -0.0024026362225413322, -0.015729468315839767, -0.02573496662080288, -0.014367163181304932, 0.022220449522137642, -0.0049684057012200356, -0.007464056368917227, -0.04581465199589729, -0.02465886063873768, -0.021522125229239464, -0.007876181975007057, -0.0030623236671090126, 0.009204142726957798, 0.021533573046326637, 0.0020663528703153133, 0.02795586735010147, -0.018843308091163635, 0.005163020454347134, -0.03519096598029137, 0.00361182470805943, 0.0034114858135581017, -0.00037670874735340476, 0.01199743989855051, -0.015523404814302921, 0.022758502513170242, -0.011671173386275768, 0.005120090674608946, 0.005446356721222401, -0.012638524174690247, -0.04563148319721222, 0.013554359786212444, -0.020629186183214188, -0.01587829180061817, 0.031229976564645767, -0.02241506427526474, -0.0062448508106172085, 0.0005713236751034856, -0.041899457573890686, -0.003628996666520834, 0.0022795707918703556, 0.019404256716370583, -0.02040022797882557, 0.025643382221460342, -0.01704598031938076, 0.02745215781033039, -0.01469915360212326, -0.010909886099398136, -0.02378881722688675, -0.015042591840028763, 0.010028394870460033, -0.0020735079888254404, 0.00296501605771482, -0.017492450773715973, 0.028642743825912476, 0.007126342039555311, 0.013176578097045422, 0.0030623236671090126, -0.0010088495910167694, 0.03757213428616524, 0.003128149313852191, 0.0026931276079267263, -0.024269631132483482, -0.021934250369668007, 0.021167239174246788, -0.002236641012132168, -0.02083524875342846, -0.03789267688989639, -0.032397668808698654, -0.008168104104697704, -0.030039392411708832, 0.007847562432289124, 0.011218979954719543, -0.034847527742385864, -0.003148183226585388, 0.0008206741185858846, 0.03885430470108986, 0.038373492658138275, -0.027200302109122276, 0.020617738366127014, -0.04693654924631119, 0.017206251621246338, 0.011447939090430737, -0.0002922801941167563, 0.011608210392296314, -0.025986820459365845, 0.024750443175435066, -0.009135454893112183, 0.005351911298930645, 0.006897383369505405, -0.025780757889151573, -0.006651252508163452, -0.0221517626196146, -0.03777819871902466, -0.038304802030324936, -0.020594842731952667, -0.01444729883223772, 0.02529994584619999, -0.0180190559476614, 0.021934250369668007, 0.0006171154673211277, -6.291894533205777e-05, -0.006382226012647152, 0.014206891879439354, -0.014298475347459316, -0.007452608086168766, 0.005987272132188082, 0.012237846851348877, 0.03374852240085602, 0.006582564674317837, 0.03416065126657486, 0.01211191900074482, -0.024338318035006523, 0.0209039356559515, 0.03718290477991104, -0.04329610615968704, 0.006880211178213358, -0.0131536815315485, 0.020056789740920067, -0.007687291130423546, -0.009186971001327038, 0.02349117025732994, -0.0041813598945736885, -0.024613069370388985, -0.032397668808698654, 0.01147655863314867, -0.009536133147776127, 0.05247735232114792, 0.00023504049750044942, -0.02912355586886406, 0.008912220597267151, 0.0005999435670673847, 0.004974129609763622, 0.011201808229088783, -0.0036347205750644207, -0.010205837897956371, 0.0375034473836422, -0.0684128850698471, -0.01730928383767605, 0.014046620577573776, 0.010909886099398136, 0.04336479306221008, -0.01430992316454649, -0.008460027165710926, -0.0031338732223957777, 0.015557749196887016, -0.007195029407739639, 0.0013036340242251754, -0.016187384724617004, -0.01221495121717453, 0.029215140268206596, -0.01303920242935419, 0.02623867616057396, -0.02442990243434906, 0.011356355622410774, 0.010789682157337666, 0.01560354046523571, 0.012432461604475975, 0.0028777257539331913, 0.0025943892542272806, 0.07367893308401108, -0.024178046733140945, 0.005414875224232674, 0.035282548516988754, 0.018705932423472404, 0.006708492059260607, 0.04006778448820114, 0.019885070621967316, -0.023433931171894073, 0.0048939939588308334, -0.003520241240039468, 0.02781849168241024, -0.003752061864361167, -0.01352001540362835, -0.017206251621246338, 0.03493911027908325, 0.0320771262049675, 0.021132895722985268, -0.001805912354029715, 0.03056599758565426, 0.039312221109867096, -0.002037733094766736, -0.007612879388034344, 0.01253549288958311, 0.07656381279230118, 0.011007193475961685, 0.004453248344361782, 0.0009823762811720371, -0.023582754656672478, 0.05485852435231209, 0.004593485500663519, 0.020148372277617455, 0.016130145639181137, 0.01741231419146061, -0.0005949350888840854, -0.010125702247023582, 0.031527623534202576, 0.047394465655088425, -0.0023468274157494307, 0.0014646206982433796, 0.02321642078459263, -0.0036576164420694113, -0.014596122317016125, 0.03049730882048607, -0.01932412013411522, -0.03770951181650162, 0.02305614948272705, 0.06809233874082565, -0.03851086646318436, -0.01337119285017252, 0.02069787308573723, -0.037297386676073074, -0.029924912378191948, 0.001574091613292694, -0.02768111601471901, -0.0037949916440993547, 0.021384749561548233, 0.0016256073722615838, 0.02580365352332592, -0.011905856430530548, -0.015225758776068687, 0.018167879432439804, 0.04341058433055878, 0.0009723593248054385, 0.008906496688723564, 0.03180237486958504, 0.01354291196912527, 0.024452798068523407, 0.05513327196240425, 0.024887818843126297, -0.014149652794003487, -0.0013279608683660626, -0.01097284909337759, 0.009994050487875938, -0.021029863506555557, -0.017229147255420685, -0.02204873040318489, 0.033107440918684006, -0.03832769766449928, 0.005191640462726355, -0.031825270503759384, -0.018900547176599503, -0.005266051739454269, -0.014241236262023449, -0.0031052534468472004, 0.06644383817911148, -0.03120708093047142, 0.02660501003265381, 0.021922802552580833, 0.01278734765946865, -0.004713688977062702, 0.013645943254232407, 0.006221954710781574, 0.0003316324728075415, 0.0034973453730344772, -0.023903297260403633, 0.01774430461227894, -0.011407870799303055, 0.020961176604032516, -0.036656301468610764, -0.005231708288192749, 0.03663340583443642, -0.002627301961183548, -0.006239126902073622, 0.014149652794003487, -0.00423573749139905, 0.02905486896634102, 0.010829750448465347, -0.006004443857818842, 0.026719490066170692, 0.02026285231113434, -0.009186971001327038, 0.011688346043229103, 0.01835104636847973, -0.00016545849211979657, -0.023697232827544212, -0.04151022806763649, -0.02362854592502117, -0.012810243293642998, -0.03319902345538139, -0.006697044242173433, 0.005658143665641546, -0.014905216172337532, 0.012569837272167206, -0.02154502086341381, 0.013268161565065384, 0.020457467064261436, 0.009255658835172653, 0.0241551510989666, -0.009438825771212578, 0.0036518925335258245, 0.007372472435235977, -0.012856035493314266, 0.003262662561610341, 0.007876181975007057, 0.005855620838701725, -0.009541857056319714, -0.021064206957817078, 0.027131615206599236, 0.025826551020145416, 0.0003364620788488537, 0.059208739548921585, -0.009249934926629066, 0.020789457485079765, -0.0032197327818721533, -0.0064394655637443066, 0.029375411570072174, -0.02258678339421749, -0.014870872721076012, 0.005194502416998148, 0.015992769971489906, -0.027932971715927124, -0.0038093016482889652, 0.011676897294819355, -0.04547121375799179, -0.011482282541692257, -0.019484391435980797, -0.004607795272022486, 0.03251214697957039, 0.04228868708014488, -0.008666089735925198, -0.01211191900074482, 0.02328510768711567, -0.007029034662991762, -0.010680926963686943, -0.01714901253581047, -0.04281529039144516, -0.025963924825191498, -0.032695312052965164, 0.009061044082045555, -0.018064847216010094, -0.054950106889009476, -0.018007608130574226, -0.0032655245158821344, 0.024544380605220795, 0.026627905666828156, 0.0055264923721551895, 0.015122727490961552, -0.007429712451994419, 0.004327320959419012, 0.031733687967061996, 0.05902557447552681, -0.016050010919570923, -0.011871512979269028, 0.03120708093047142, 0.010331764817237854, -0.038808513432741165, -0.01596987433731556, 0.03248925134539604, 0.021957146003842354, -0.01311933808028698, 0.0033485221210867167, 0.0010303144808858633, 0.002366861328482628, 0.010778234340250492, 0.0007906233076937497, -0.018213670700788498, 0.047806594520807266, 0.012981962412595749, 0.0018660140922293067, -0.01828235760331154, 0.03150472790002823, -0.06300945580005646, 0.004936923738569021, -0.017206251621246338, -0.005391979124397039, 0.0018388251774013042, -0.002698851516470313, 0.021831220015883446, -0.0017114668153226376, -0.004447524435818195, -0.003946676850318909, -0.007498399820178747, -0.0015426097670570016, -0.003909470979124308, -0.0030709095299243927, -0.007383920717984438, -0.01444729883223772, -0.01859145238995552, -0.0017629825742915273, 0.011362079530954361, -0.0006979665486142039, -0.019610319286584854, 0.001675692037679255, -0.0037835438270121813, 0.021659500896930695, 0.006622632499784231, -0.022357825189828873, -0.03828190639615059, 0.003923781216144562, 0.008460027165710926, -0.00025614764308556914, 0.02413225546479225, 0.007504123728722334, -0.019221089780330658, 0.010949953459203243, 0.02543731965124607, -0.0002495292865205556, -0.032741107046604156, 0.02046891488134861, -0.018465524539351463, 0.0360381118953228, 0.019301224499940872, -0.008534437976777554, 0.014218339696526527, -0.0032598006073385477, 0.013073545880615711, -0.04982142895460129, -0.01935846544802189, -0.026467634364962578, -0.010680926963686943, 0.01718335598707199, -0.016347656026482582, -0.0035603090655058622, 0.014916663989424706, 0.03356535732746124, 0.023227868601679802, -0.014264131896197796, 0.03306164592504501, -0.009925362654030323, 0.010348936542868614, -0.04091493412852287, -0.023880399763584137, 0.03894588723778725, -0.004078328143805265, 0.005366221535950899, 0.0010539258364588022, -0.031527623534202576, 0.024979403242468834, 0.03814453259110451, 0.006067407783120871, 0.020617738366127014, 0.014641913585364819, 0.04336479306221008, -0.023811712861061096, -0.00437883660197258, -0.015168518759310246, -0.017801545560359955, -0.03026835061609745, -0.028871702030301094, -0.014458746649324894, 0.02328510768711567, -0.019804934039711952, -0.016164489090442657, 0.049913015216588974, -0.0074411602690815926, 0.009387309662997723, 0.004410318564623594, -0.004052570555359125, 0.02060629054903984, -0.027864282950758934, -0.018934890627861023, -0.0022910188417881727, -0.001894633867777884, -0.0007899077609181404, -0.018602900207042694, 0.010778234340250492, -0.015340237878262997, -0.00051587272901088, -0.025620486587285995, 0.032168708741664886, -0.008019281551241875, -0.01779009774327278, 0.054812733083963394, 0.039037469774484634, 0.011688346043229103, 0.029306722804903984, -0.004287253133952618, 0.031733687967061996, -0.0156722292304039, -0.0027961591258645058, 0.0030108080245554447, 0.023971984162926674, 0.01337119285017252, 0.014802184887230396, -0.004484729841351509, 0.01132201123982668, -0.010062738321721554, 0.016656750813126564, 0.011768480762839317, -0.02023995667695999, 0.04448669031262398, 0.0021865563467144966, 0.022964565083384514, -0.012432461604475975, 0.0057182456366717815, 0.010411900468170643, -0.02378881722688675, -0.028848806396126747, -0.010366108268499374, 0.03026835061609745, -0.003397175809368491, 0.017034532502293587, -0.00491688959300518, 0.015534852631390095, -0.0029421201907098293, 0.011087329126894474, -0.01224929466843605, -0.039747245609760284, 0.009450273588299751, -0.009450273588299751, -0.017068875953555107, 0.016805574297904968, 8.28634001663886e-05, 0.01744665950536728, -0.013508567586541176, 0.0022752778604626656, -0.01866014115512371, -0.031161289662122726, 0.005821276921778917, -0.009507513605058193, -0.0009888156782835722, -0.02076656185090542, 0.04418904334306717, 0.0378468856215477, -0.04130416363477707, -0.020709320902824402, 0.0007691584178246558, 0.03947249427437782, -0.04682207107543945, -0.00897518452256918, 0.004318735096603632, -0.0020477501675486565, -0.03523675724864006, 0.00630781427025795, 0.024681756272912025, -0.013428431935608387, 0.016553720459342003, -0.010257353074848652, 0.005297533702105284, 0.001961890608072281, -0.031321559101343155, 0.0010803992627188563, 0.016588063910603523, -0.02258678339421749, 0.006176162976771593, 0.007498399820178747, 0.03720580041408539, 0.03649602830410004, 0.0024097911082208157, -0.01882041245698929, 0.0009229900897480547, -0.011642553843557835, 0.02667369693517685, 0.009398757480084896, -0.01520286314189434, 0.002352551557123661, 0.00852299015969038, 0.022907325997948647, -0.0021407646127045155, 0.011253324337303638, 0.036221276968717575, 0.008093692362308502, 0.033038750290870667, 0.005824138876050711, -0.006428017746657133, -0.0006718509248457849, -0.009776540100574493, -0.02026285231113434, 0.005125814583152533, -0.012638524174690247, 0.0019990962464362383, -0.009330070577561855, 0.03793846815824509, -0.014996799640357494, -0.031092602759599686, 0.012340878136456013, 0.02463596500456333, 0.0018202222418040037, 0.0295585785061121, 0.0038751272950321436, 0.016198834404349327, 0.018099190667271614, 0.01935846544802189, -0.01211191900074482, -0.008534437976777554, -0.0098166074603796, 0.006462361663579941, -0.010526379570364952, -0.004447524435818195, -0.016885709017515182, -0.028299305588006973, 0.021670948714017868, 0.007372472435235977, -0.01872882805764675, 0.00010222651326330379, -0.014916663989424706, -0.0017057429067790508, -0.01120753213763237, -0.04352506250143051, -0.021831220015883446, 0.01583249866962433, -0.019278328865766525, 0.011081605218350887, -0.04808134213089943, 0.018648693338036537, 0.006382226012647152, -0.006405121646821499, 0.010726719163358212, -0.03432092070579529, -0.023010356351733208, 0.005798380821943283, -0.07290047407150269, 0.02694844827055931, 0.015099831856787205, 0.027841387316584587, 0.023811712861061096, -0.01989651843905449, 0.017160460352897644, -0.011327735148370266, 0.02607840485870838, -0.006960346829146147, 0.027978762984275818, -0.003056599758565426, -0.03187106177210808, 0.0036862362176179886, -0.016233177855610847, 0.011940199881792068, 0.003394313855096698, 0.0034114858135581017, -0.004527659621089697, -0.01966755837202072, -0.005520768463611603, 0.001144793932326138, 0.016061458736658096, -0.0066169085912406445, -0.015557749196887016, -0.010119978338479996, 0.026765281334519386, -0.024956507608294487, 0.001961890608072281, 0.02104131132364273, 0.005205950234085321, -0.02161370776593685, 0.0027017134707421064, 0.0045534176751971245, 0.004942647647112608, 0.03519096598029137, -0.01032031700015068, 0.011115948669612408, 0.0026459048967808485, -0.002378309378400445, -0.005486424546688795, -0.006347882095724344, 0.009639164432883263, 0.012695764191448689, 0.038007158786058426, -0.005792656913399696, -8.183487807400525e-05, -0.004948371555656195, -0.0270400308072567, -0.0497298464179039, 0.012123366817831993, -0.013817662373185158, -0.010635134764015675, -0.027429262176156044, -0.03299295902252197, -0.013829110190272331, 0.03056599758565426, 0.0410752035677433, 0.025620486587285995, 0.0016699681291356683, 0.011894408613443375, -0.012421013787388802, -0.005483562592417002, 0.038533762097358704, -0.02623867616057396, 0.008334099315106869, -0.021888459101319313, -0.023113388568162918, -0.029375411570072174, 0.004516211804002523, -0.020526153966784477, 0.020915383473038673, -0.0018731689779087901, 0.04510487988591194, -0.0007165694260038435, -0.019679006189107895, 0.02170529216527939, -0.030153870582580566, 0.0008242516196332872, -0.021968593820929527, -0.016393449157476425, -0.021968593820929527, -0.013588703237473965, -0.0084714749827981, 0.011928752064704895, 0.029238035902380943, -0.016588063910603523, 0.020858144387602806, 0.007675842847675085, 0.03667919710278511, -0.004149877931922674, 0.020411675795912743, -0.014893768355250359, -0.006399397738277912, -0.003102391492575407, 0.012672868557274342, -0.014092412777245045, 0.03782398998737335, -0.009570476599037647, -0.01603856310248375, 0.014035172760486603, -0.018442628905177116, 0.0013902090722694993, 0.0014953870559111238, -0.01949583925306797, 0.001541178789921105, -0.03624417632818222, -0.004536245949566364, 0.06360474973917007, -0.001302918535657227, 0.03113839402794838, -0.021293167024850845, 0.006782903801649809, 0.008494370616972446, -0.0006389381014741957, -0.030955227091908455, -0.007824665866792202, 0.018293805420398712, 0.012203502468764782, 0.02788717858493328, -0.03019966371357441, -0.0033914519008249044, -0.02939830720424652, 0.004687930922955275, -0.03670209273695946, 0.01815643161535263, -0.014825080521404743, -9.006308391690254e-05], [0.01455801259726286, 0.01145380549132824, 0.048151060938835144, 0.044012121856212616, -0.019834140315651894, 0.058068133890628815, -0.005145504605025053, 0.024341898038983345, -0.007207292132079601, 0.01855352707207203, 0.04765930771827698, 0.0007075388566590846, -0.033152516931295395, 0.02823496423661709, -0.041307464241981506, -0.020039038732647896, -0.005849841982126236, 0.0032758088782429695, 0.021903611719608307, -0.017160218209028244, 0.046552855521440506, 0.021985569968819618, -0.0283169224858284, 0.002727706450968981, 0.01761099509894848, -0.03466876596212387, -0.03909456357359886, -0.057248540222644806, 0.061715319752693176, -0.047331470996141434, 0.03800860419869423, -0.041205015033483505, 0.04987220838665962, 0.01545956451445818, -0.003429482690989971, -0.025181980803608894, 0.05323253571987152, -0.04528248682618141, 0.00926651805639267, 0.0022871755063533783, 0.008236905559897423, -0.017201198264956474, -0.026944104582071304, 0.011668949387967587, -0.014301889576017857, 0.027189983054995537, -0.0011864883126690984, -0.05110159516334534, 0.007197047118097544, -0.01769295334815979, 0.0119558060541749, 0.041082076728343964, 0.029013575986027718, -0.0033654519356787205, 0.01149478554725647, 0.031492844223976135, 0.04013954475522041, 0.05224902555346489, -0.02665724791586399, 0.00660284236073494, 0.03479170426726341, -0.007176557090133429, -0.016504544764757156, -0.020090263336896896, 0.012642215006053448, 0.0070536183193326, 0.00978388637304306, -0.013379848562180996, 0.02047956921160221, -0.03389015048742294, 0.02833741158246994, 0.023378876969218254, 0.00034192376188002527, -0.01779540255665779, -0.021903611719608307, 0.01769295334815979, -0.00799102708697319, -0.014127726666629314, 0.008226660080254078, 0.02835790254175663, -0.0444628968834877, 0.04868379607796669, -0.011525520123541355, -0.07827109098434448, -0.01943458802998066, -0.007084352895617485, -0.04181971028447151, 0.009450926445424557, -0.0333574153482914, -0.006899944972246885, -0.0256942268460989, 0.019875118508934975, -0.057084619998931885, 0.016176708042621613, -0.016617238521575928, -0.019147731363773346, 0.003642064519226551, -0.03264027461409569, -0.006351842079311609, 0.01940385438501835, -0.03442288562655449, -0.01768270879983902, -0.03475072234869003, -0.0021270988509058952, -0.014271154999732971, 0.014906339347362518, -0.025018062442541122, 0.013369603082537651, -0.00733023090288043, -0.02573520690202713, 0.020725445821881294, -0.01691434159874916, -0.010572743602097034, 0.007258516736328602, -0.02114548720419407, -0.016176708042621613, 0.020008303225040436, -0.0283169224858284, 0.013400338590145111, -0.04503661021590233, 0.006008638069033623, -0.008656946010887623, 0.018307648599147797, -0.02050005830824375, 0.03696362301707268, -0.009066742844879627, 0.010921070352196693, 0.024280428886413574, -0.05310959741473198, -0.006500393617898226, 0.04679873585700989, 0.01023466233164072, 0.04888869449496269, -0.010767397470772266, -0.0036907277535647154, 0.031410884112119675, -0.005680800881236792, -0.019198955968022346, 0.005470780190080404, -0.019147731363773346, 0.03288615122437477, 0.007827108725905418, 0.00795517023652792, 0.01063421368598938, -0.03214851766824722, -0.025325410068035126, -0.02759977988898754, -0.01684262603521347, 0.051798250526189804, -0.027292432263493538, 0.007299496326595545, 0.029464352875947952, 0.017190953716635704, 0.000787577242590487, 0.008359843865036964, 0.040323954075574875, -0.0026892879977822304, 0.007678557652980089, 0.022456835955381393, 0.011976296082139015, -0.03434092923998833, 0.0009380492847412825, 0.029607780277729034, 0.00332703348249197, 0.04864281788468361, 0.04610208049416542, 0.014301889576017857, 0.03569325432181358, -0.01334911398589611, 0.02389112301170826, -0.025284430012106895, 0.021944589912891388, -0.03657431900501251, -0.0016801647143438458, -0.018840383738279343, -0.003462778637185693, 0.04770028591156006, 0.021780671551823616, -0.018266668543219566, 0.010798132047057152, -0.00023019025684334338, 0.027825167402625084, -0.07503369450569153, 0.04622501879930496, 0.039463382214307785, 0.021637244150042534, -0.00975827407091856, 0.016484055668115616, -0.014629727229475975, -0.051019635051488876, -0.009112844243645668, -0.03190264105796814, -0.0006646383553743362, -0.009655824862420559, 0.003150308970361948, -0.0283169224858284, -0.047290489077568054, 0.004707534797489643, 0.07208316773176193, -0.048151060938835144, -0.011576744727790356, -0.04491367191076279, -0.009030885063111782, -0.0052377087995409966, -0.033972110599279404, 0.03204606845974922, -0.0065567404963076115, -0.032291945070028305, 0.026206471025943756, -0.05429800599813461, 0.03526296839118004, 0.003516564378514886, 0.0185637716203928, 0.033295948058366776, 0.040323954075574875, 0.02212899923324585, -0.003918677102774382, 0.01873793452978134, 0.05167531222105026, 0.03925848379731178, -0.019352629780769348, 0.02491561323404312, 0.03182068094611168, -0.007576108444482088, -0.024198470637202263, 0.014947319403290749, 0.025345899164676666, -0.02137087658047676, -0.012129969894886017, -0.07073083519935608, 0.00966606941074133, -0.01940385438501835, 0.030775699764490128, -0.025919614359736443, 0.0033193498384207487, -0.03638990968465805, 0.04147138446569443, -0.015613238327205181, 0.030611781403422356, -0.014527278020977974, 0.037701256573200226, 0.0036446256563067436, 0.004794616252183914, 0.009425314143300056, -0.006736026145517826, -0.002598364604637027, -0.0001439089246559888, -0.011638213880360126, -0.01783638261258602, 0.0007273883675225079, -0.018235934898257256, -0.00924090575426817, 0.08318864554166794, -0.11310376971960068, -0.034996602684259415, 0.03542688861489296, -0.028911126777529716, -0.026165492832660675, -0.032353416085243225, 0.0211864672601223, -0.030427373945713043, 0.006367209833115339, 0.01690409705042839, -0.07642700523138046, -0.048274002969264984, -0.014394094236195087, -0.039504360407590866, -0.0011198964202776551, -0.019086262211203575, 0.01461948174983263, -0.0009162788628600538, -0.013523276895284653, 0.006858965381979942, -0.04536444693803787, -0.05950241908431053, 0.033152516931295395, 0.012652460485696793, 0.030365904793143272, -0.039422400295734406, -0.0013459246838465333, -0.01850230246782303, -0.025386879220604897, -0.028911126777529716, -0.09269591420888901, 0.033992599695920944, 0.0070894756354391575, -0.03608256205916405, -0.02907504513859749, 0.0024895123206079006, 0.01026027463376522, 0.03374672308564186, -0.00645429128780961, 0.00733023090288043, 0.007186802104115486, 0.025263940915465355, 0.044667795300483704, -0.0043976265005767345, -0.0039878301322460175, 0.007335353177040815, 0.005081473849713802, 0.033213987946510315, -0.005286371801048517, -0.026124512776732445, -0.049175553023815155, -0.04540542885661125, 0.028993086889386177, 0.0009662227821536362, 0.00012085788330296054, -0.01680164784193039, -0.0159923005849123, -0.026185981929302216, -0.017979811877012253, -0.03307056054472923, -0.03804958239197731, -0.0037163400556892157, 0.0034422886092215776, -0.02915700525045395, 0.012580745853483677, 0.0007491587894037366, 0.005388821009546518, 0.008708170615136623, 0.037660278379917145, 0.007166312541812658, -0.005890821572393179, -0.004343840293586254, -0.030652761459350586, 0.008144700899720192, 0.06212511658668518, -0.03532443940639496, -0.020817650482058525, 0.02389112301170826, 0.010465172119438648, 0.033111538738012314, -0.0009374090004712343, -0.04626600071787834, -0.027189983054995537, -0.02313300035893917, -0.0031810435466468334, 0.04005758464336395, 0.00844180304557085, 0.025222960859537125, -0.026985084637999535, -0.04770028591156006, 0.02921847440302372, -0.0008055057842284441, 0.023419857025146484, -0.0014163583982735872, 0.031205985695123672, -0.0022064968943595886, 0.008559620007872581, 0.009189681150019169, -0.011566500179469585, -0.020715201273560524, -0.040221504867076874, -0.049954164773225784, -0.004735708236694336, 0.01506001316010952, 0.04958534985780716, 0.003910993225872517, 0.021657733246684074, -0.03546786680817604, -0.03206655755639076, 0.009947804734110832, 0.028091534972190857, 0.03872574865818024, -0.01587960496544838, -0.057043641805648804, -0.05601914972066879, -0.03102157823741436, -0.02208801917731762, 0.011423070915043354, -0.030324924737215042, -0.005281249526888132, -0.03220998868346214, -0.006341597530990839, -0.017395852133631706, 0.011320621706545353, 0.015623482875525951, -0.018010545521974564, -0.0009841513819992542, -0.02940288372337818, 0.023337898775935173, 0.011013275012373924, -0.0018287159036844969, 0.0056193312630057335, 0.027681738138198853, -0.06589524447917938, -0.038438890129327774, -0.04347938671708107, 0.0337672121822834, 0.05679776519536972, -0.025427859276533127, -0.006510638166218996, 0.035877663642168045, -0.03296811133623123, 0.017969567328691483, -0.06290373206138611, 0.0031887271907180548, 0.02577618509531021, -0.005895943846553564, -0.0038802584167569876, -0.0311445165425539, -0.011566500179469585, 0.011720173060894012, -0.027804676443338394, -0.026165492832660675, -0.032517336308956146, -0.020100507885217667, 0.019250180572271347, -0.013461807742714882, 0.03395162150263786, -0.010121967643499374, 0.013584746979176998, 0.05134747177362442, 0.04143040254712105, 0.005557862110435963, 0.0002032973716268316, 0.03261978179216385, 0.013441317714750767, -0.09302375465631485, 0.04323350638151169, 0.05397016927599907, -0.012590990401804447, -0.016197197139263153, -0.024075530469417572, -0.00969168171286583, 0.03899211436510086, -0.04249587282538414, -0.005547617096453905, -0.0006889699725434184, -0.03995513543486595, -0.023337898775935173, -0.035980112850666046, 0.0495033897459507, -0.0587238073348999, -0.02663675881922245, 0.013953562825918198, -0.02583765611052513, -0.0016481494531035423, -0.02563275769352913, -0.041368935257196426, -0.028071044012904167, 0.03477121517062187, -0.008180557750165462, -0.012703684158623219, 0.005798617377877235, 0.0041158911772072315, -0.020684467628598213, -0.022764183580875397, -0.008436680771410465, 0.054502904415130615, -0.02739488147199154, 0.0014586186734959483, -0.0167299322783947, -0.008267640136182308, -0.009824865497648716, -0.014035522006452084, 0.003516564378514886, -0.02848084084689617, -0.005798617377877235, -0.00795517023652792, 0.04552836716175079, 0.06233001500368118, 0.03380819410085678, -0.004535932559520006, -0.010777642019093037, -0.01948581263422966, 0.0041235750541090965, -0.0005807581474073231, -0.045692283660173416, 0.0515933521091938, -0.0016750423237681389, -0.04712657257914543, 0.006992149166762829, 0.03735293075442314, -0.024341898038983345, -0.024669736623764038, -0.01504976861178875, 0.009635334834456444, -0.033132027834653854, 0.04241391271352768, 0.0031042068731039762, -0.057207558304071426, -0.04606110230088234, 0.0667148306965828, -0.033132027834653854, 0.05774029344320297, -0.00552712706848979, -0.018963322043418884, -0.016996299847960472, -0.0017121800919994712, 0.01761099509894848, 0.02315348945558071, -0.0061674341559410095, 0.05142943188548088, 0.012836867943406105, -0.03655382618308067, 0.01679140329360962, -0.005189045332372189, 0.01334911398589611, 0.03264027461409569, -0.05507661774754524, 0.0033500846475362778, 0.04872477799654007, 0.00027725278050638735, 0.0036446256563067436, -0.010331988334655762, -0.039319951087236404, 0.01952679269015789, -0.0012159424368292093, -0.05491270124912262, 0.006797495763748884, 9.444523311685771e-05, 0.006792373489588499, -0.015756666660308838, -0.0007363526965491474, 0.036861173808574677, -0.012590990401804447, -0.019926343113183975, 0.033193498849868774, -0.011515275575220585, -0.012365602888166904, -0.031472355127334595, -0.006039372645318508, -0.009696803987026215, 0.0284193716943264, -0.017969567328691483, -0.0021578334271907806, 0.0356522761285305, -0.02298957109451294, -0.009645579382777214, -0.05110159516334534, -0.03434092923998833, 0.01685287244617939, 0.007842476479709148, 0.046675797551870346, 0.0019747058395296335, -0.00750439427793026, -0.02907504513859749, -0.017969567328691483, 0.016227932646870613, -0.0018363995477557182, 0.0054502906277775764, 0.015541523694992065, -0.00551688252016902, -0.0009687840356491506, 0.02491561323404312, 0.014137971214950085, 0.008902824483811855, 0.009522641077637672, -0.02583765611052513, 0.02047956921160221, -0.004226024262607098, -0.021063528954982758, 0.0045205652713775635, 0.03987317904829979, -0.014137971214950085, -0.004955973941832781, -0.02395259216427803, 0.010613723658025265, 0.003890503430739045, 0.035119540989398956, -0.007335353177040815, -0.0036318195052444935, 0.012109479866921902, 0.0016712003853172064, 0.004599963314831257, -0.04630697891116142, -0.012775398790836334, -0.0017544402508065104, 0.035898152738809586, 0.0141072366386652, 0.009092355147004128, 0.004587157163769007, 0.024218959733843803, 0.01670944318175316, 0.02485414408147335, -0.03559080511331558, 0.027948105707764626, 0.01783638261258602, 0.023255938664078712, 0.027886636555194855, -0.009958049282431602, -0.017016790807247162, -0.0028736963868141174, 0.02294859103858471, -0.04438093677163124, 0.02647283859550953, -0.02737439051270485, 0.06696071475744247, -0.025325410068035126, 0.020735692232847214, 0.042086075991392136, -0.01934238336980343, 0.025018062442541122, 0.019721446558833122, -0.005860086530447006, 0.004307983443140984, -0.013287643902003765, -0.002024649642407894, -0.0010955646866932511, 0.03913554549217224, 0.09343355149030685, 0.0022705274168401957, -0.053560372442007065, 0.013635970652103424, 0.021698713302612305, -0.02489512413740158, 0.03350084647536278, 0.014476053416728973, -0.005191606469452381, 0.0027430737391114235, 0.009573865681886673, 0.0076222107745707035, -0.00022362711024470627, 0.003570350119844079, -0.03309104964137077, 0.002717461669817567, -0.007489026989787817, 0.020059527829289436, -0.026759697124361992, 0.04009856656193733, 0.0022718082182109356, -0.007094597909599543, -0.05421604588627815, -0.004085156600922346, -0.03341888636350632, -0.017129484564065933, -0.028685739263892174, -0.04077472910284996, 0.0031118905171751976, -0.03001757711172104, -0.018000300973653793, -0.03878721594810486, 0.003129818942397833, 0.0055373720824718475, 0.012181194499135017, -0.013717930763959885, 0.012181194499135017, 0.04495465010404587, 0.04806910455226898, 0.017457321286201477, 0.006018882617354393, -0.04524150863289833, 0.01666846312582493, 0.02229291759431362, -0.027333412319421768, -0.0033424007706344128, 0.0026355022564530373, -0.018440833315253258, -0.005007198080420494, 0.014865360222756863, -0.024341898038983345, -0.01504976861178875, -0.005609086714684963, 0.010818622075021267, -0.00846741534769535, 0.03610305115580559, 0.021022548899054527, -0.0021450272761285305, -0.024177979677915573, 0.05483074113726616, 0.01945507898926735, 0.013912583701312542, 0.013902338221669197, -0.015439074486494064, 0.004784371703863144, -0.0015405778540298343, 0.008498149923980236, 0.03651284798979759, -0.023624755442142487, 0.009205048903822899, -0.007422435097396374, -0.05167531222105026, 0.013441317714750767, -0.05229000374674797, -0.046347957104444504, 0.005895943846553564, -0.021678222343325615, -0.012929072603583336, 0.016309890896081924, 0.011156703345477581, 0.01783638261258602, 0.008498149923980236, 0.001065470278263092, -0.007120210211724043, 0.043930161744356155, -0.012160704471170902, 0.01955752819776535, 0.023296918720006943, -0.0003111890400759876, 0.02762026898562908, 0.023645244538784027, -0.02577618509531021, 0.023358387872576714, 0.0334598645567894, 0.00617767870426178, -0.022477325052022934, -0.02661626785993576, -0.029525822028517723, 0.049995146691799164, -0.005030249245464802, 0.02835790254175663, -0.048233021050691605, -0.014629727229475975, 0.004456534516066313, -0.03972974792122841, 0.03458680585026741, 0.07818912714719772, 0.006382577121257782, -0.03134941682219505, 0.01863548532128334, -0.03704558312892914, -0.005824229680001736, 0.03300908952951431, -0.002727706450968981, 0.02403455227613449, -0.022374875843524933, 0.0019324455643072724, -0.019260425120592117, -0.014127726666629314, 0.007366088218986988, -0.034832682460546494, -0.023604266345500946, 0.024239448830485344, 0.007468536961823702, 0.04360232502222061, -0.005125014577060938, 0.038643788546323776, -0.045733265578746796, 0.0015546645736321807, -0.021104509010910988, -0.0587238073348999, 0.005655188579112291, -0.026165492832660675, 0.053560372442007065, -0.004717779811471701, -0.03999611735343933, -0.0042541977018117905, -0.0141072366386652, -0.025325410068035126, -0.006925557274371386, 0.009235783480107784, 0.011658703908324242, 0.006075229961425066, -0.014742420986294746, -0.022497816011309624, -0.008421313017606735, 0.02837839163839817, -0.01239633746445179, -0.009522641077637672, 0.0030760332010686398, -0.021657733246684074, 0.01775442436337471, 0.014568258076906204, -0.029648760333657265, -0.006869209930300713, -0.02405504137277603, -0.05421604588627815, 0.02846035175025463, 0.01459899265319109, 0.019854629412293434, -0.011166948825120926, 0.010736662894487381, 0.007611965760588646, -0.022497816011309624, -0.027230963110923767, -0.004420677199959755, 0.021780671551823616, 0.025489328429102898, -0.056387968361377716, -0.008744028396904469, -0.0014842308592051268, 0.013154460117220879, 0.02563275769352913, -0.025059042498469353, -0.02473120577633381, -0.0014291645493358374, 0.024198470637202263, -0.00753000658005476, 0.040262483060359955, -0.04626600071787834, -0.0005711535341106355, 0.0046921675093472, -0.018082261085510254, 0.013974052853882313, 0.0026969716418534517, -0.03878721594810486, 0.0013446439988911152, 0.0018095066770911217, -0.03927897289395332, 0.01598205417394638, 0.011648459360003471, -0.007750272285193205, -0.02925945445895195, 0.004538493696600199, 0.011197683401405811, -0.04618404060602188, -0.028193984180688858, -0.0013049449771642685, 0.01937311887741089, -0.026944104582071304, -0.011607479304075241, -0.00690506724640727, 0.07011613994836807, -0.03448435664176941, 0.0025894001591950655, -0.008318864740431309, 0.019311649724841118, 0.035775214433670044, -0.0034730234183371067, -0.006997271440923214, -0.023337898775935173, -0.0011627969797700644, 0.004077472724020481, -0.026862146332859993, 0.023276427760720253, 0.006812863051891327, 0.010880091227591038, -0.02759977988898754, 0.02839888259768486, -0.009189681150019169, -0.005880576558411121, 0.002539456356316805, 0.03477121517062187, -0.006275005638599396, -0.01104400958865881, -0.019239936023950577, 0.002549701137468219, 0.029607780277729034, -0.0026009257417172194, -0.002565068658441305, -0.034853171557188034, 0.005547617096453905, 0.01760075055062771, -0.03024296462535858, -0.051839228719472885, -0.04323350638151169, -0.01235535740852356, -0.05204412713646889, 0.014394094236195087, -0.019905854016542435, -0.05753539875149727, -0.007453169673681259, -0.003355206921696663, -0.009348477236926556, -0.032250966876745224, 0.0319846011698246, -0.013625726103782654, 0.03348035737872124, 0.03362378478050232, -0.03559080511331558, 0.007494149263948202, -0.02573520690202713, 0.03923799470067024, -0.005860086530447006, 0.009261395782232285, -0.03786517679691315, -0.0011679193703457713, 0.019178465008735657, -0.03915603458881378, 0.002186007099226117, 0.03995513543486595, -0.008559620007872581, 0.02731292136013508, 0.010075866244733334, 0.01379988994449377, -0.0004190807230770588, 0.04409407824277878, 0.013103235512971878, 0.021924100816249847, -0.01772368885576725, 0.020172221586108208, -0.008764517493546009, -0.02143234573304653, 0.03876672685146332, 0.018317893147468567, -0.012734419666230679, -0.02039760909974575, 0.00750439427793026, 0.02122744731605053, 0.02053079381585121, -0.0025445788633078337, -0.012314378283917904, 0.005839596968144178, -0.01065470278263092, -0.02301006019115448, 0.014711686410009861, 0.009886335581541061, 4.9983940698439255e-05, 0.02034638449549675, -0.01947556808590889, 0.00880549754947424, -0.016647974029183388, -0.026288431137800217, 0.020018547773361206, -0.0067001692950725555, -0.010378090664744377, -0.0015521034365519881, 0.03290664032101631, -0.04372526332736015, 0.033132027834653854, 0.012713929638266563, -0.027661249041557312, 0.042987629771232605, 0.0002473184431437403, 0.00845717079937458, 0.004938045050948858, 0.05241294205188751, -0.006351842079311609, 0.008037129417061806, -0.006218658294528723, -0.02298957109451294, -0.06999320536851883, -0.012058255262672901, -0.007258516736328602, -0.0002692489651963115, 0.006438923999667168, 0.016268912702798843, -0.02833741158246994, 0.034054070711135864, 0.041184525936841965, -0.017928587272763252, 0.03339839726686478, 0.014639971777796745, -0.029095536097884178, 0.005255637224763632, -0.020756181329488754, -0.03259929269552231, -0.025304920971393585, 0.009881212376058102, -0.017539281398057938, 0.013851114548742771, 0.041102565824985504, 0.0009085951605811715, 0.013851114548742771, 0.0037573196459561586, 0.0074378023855388165, 0.03192313015460968, -0.033152516931295395, -0.022846141830086708, -0.016197197139263153, 0.02655479870736599, -0.04974926635622978, 0.011925071477890015, -0.03360329568386078, -0.006761638447642326, -0.0300995372235775, -0.022354386746883392, 0.03264027461409569, -0.006505515892058611, 0.0036753604654222727, 0.04540542885661125, -0.00970704946666956, 0.0003569709660951048, 0.010127090848982334, 0.020592262968420982, 0.022825652733445168, -0.005486147478222847, 0.002054103882983327, -0.018809648230671883, -0.004036493133753538, -0.03704558312892914, 0.005870331544429064, 0.06278079003095627, 0.04442191496491432, 0.010147579945623875, 0.028911126777529716, 0.007842476479709148, 0.026267942041158676, -0.018133485689759254, -0.0014983175788074732, 0.021452834829688072, 0.024526307359337807, -0.02936190366744995, -0.0026073288172483444, -0.01682213693857193, -0.006961414124816656, 0.011115724220871925, -0.015213686972856522, -0.04503661021590233, 0.008277884684503078, 0.01865597628057003, -0.00030862781568430364, -0.015551768243312836, 0.03807007521390915, 0.02126842737197876, -0.029546311125159264, -0.018338384106755257, 0.006843597628176212, 0.019106751307845116, -0.04147138446569443, -0.011228417977690697, 0.0035421764478087425, 0.017928587272763252, 0.03096010908484459, 0.009363844990730286, -0.00212069577537477, 0.0283169224858284, 0.008375211618840694, -0.013615481555461884, 0.009302375838160515, 0.02647283859550953, 0.03421798720955849, 0.0015303329564630985, 0.04602012038230896, -0.0008599318680353463, 0.011218173429369926, -0.014588747173547745, 0.01777491346001625, 0.014178951270878315, -0.014793645590543747, -0.01694507524371147, -0.01854328066110611, -0.0009700646041892469, 0.0046486263163387775, 0.002807104494422674, 0.0062493933364748955, -0.0309396181255579, 0.04165579006075859, 0.042168036103248596, 0.004740830510854721, -0.004546177573502064, -0.027722718194127083, -0.01850230246782303, 0.006351842079311609, 0.018338384106755257, 0.011873846873641014, 0.021842140704393387, -0.03747586905956268, -0.003841840196400881, 0.034258969128131866, -0.007191924843937159, 0.016115238890051842, -0.015357115305960178, 0.03389015048742294, 0.01144356094300747, 0.004587157163769007, 0.02913651615381241, -0.006315985228866339, -0.02210850827395916, 0.0033833805937319994, 0.013390093110501766, 0.05565033480525017, -0.028706228360533714, -0.01954728178679943, -0.026165492832660675, -0.05155237019062042, 0.016504544764757156, 0.009891457855701447, -0.006018882617354393, 0.019987814128398895, -0.020592262968420982, 0.020059527829289436, 0.007832231000065804, -0.04073375090956688, -0.018000300973653793, 0.02206753008067608, -0.020766425877809525, -0.0018389608012512326, 0.023296918720006943, 0.017252422869205475, 0.0030683495569974184, -0.00126652664039284, 0.0316772535443306, -0.011986540630459785, -0.013789644464850426, 0.03520150110125542, 0.001048182020895183, 0.03352133557200432, -0.006444046273827553, -0.0072329044342041016, 0.006372332107275724, 0.010921070352196693, 0.030673250555992126, -0.009199926629662514, -0.005854964256286621, 0.007852721028029919, 0.019987814128398895, 0.023583775386214256, -0.012529521249234676, -0.003665115451440215, 0.028132515028119087, 0.016094747930765152, -0.026964595541357994, -0.03602109104394913, 0.01933213882148266, 0.018983813002705574, 0.006971659138798714, 0.016320137307047844, -0.01541858445852995, 0.02837839163839817, 0.015193196944892406, -0.004894504323601723, -0.00790394563227892, 0.005639821290969849, 0.015254666097462177, 0.00931774266064167, 0.0018031036015599966, -0.03024296462535858, -0.006141821853816509, 0.0092818858101964, 0.0018133484991267323, -0.00032479557557962835, -0.014527278020977974, 0.0008554497035220265, 0.000441171316197142, -0.009179436601698399, 0.011259152553975582, 0.007268761284649372, -0.010501029901206493, -0.0006527926889248192, 0.05282273888587952, -0.0036676765885204077, 0.025161491706967354, 0.019752180203795433, -0.05060984194278717, -0.036635786294937134, -0.0058856988325715065, -0.0187686700373888, 0.03657431900501251, -0.015490299090743065, -0.03180019184947014, 0.0003339199465699494, 0.004105646628886461, -0.03981170803308487, -0.004566667135804892, -0.00026076490757986903, 0.008979660458862782, 0.015684952959418297, -0.008656946010887623, 0.009845355525612831, 0.014476053416728973, -0.029669251292943954, 0.005998393055051565, 0.024321408942341805, -0.0025945226661860943, -0.04319252818822861, 0.03003806620836258, -0.006310862489044666, 0.034197498112916946, -0.010900581255555153, -0.019106751307845116, 0.011371846310794353, -0.0057166581973433495, -0.04438093677163124, -0.025120511651039124, 0.050118084996938705, 0.02047956921160221, 0.005947168450802565, 0.007570986170321703, 0.08294276893138885, -0.012959807179868221, 0.01967022195458412, 0.04520053043961525, 0.019096506759524345, 0.003178482409566641, -0.011525520123541355, 0.014066257514059544, 0.020961079746484756, -0.001710899407044053, -0.002848084084689617, -0.028521820902824402, 0.014691196382045746, 0.03175920993089676, -0.01692458614706993, 0.017918342724442482, 0.0022346703335642815, -0.016330381855368614, -0.0011634372640401125, -0.0046921675093472, -0.0004795897111762315, -0.03438190743327141, 0.018256423994898796, 0.027661249041557312, 0.03298860043287277, 0.009020640514791012, -0.029566802084445953, 0.01550054457038641, -0.005204412620514631, 0.015244421549141407, 0.021002059802412987, -0.0013689757324755192, -0.0025471400003880262, -0.01329788938164711, 0.022702714428305626, 0.03282468020915985, -0.007791251875460148, -0.013933073729276657, 0.01145380549132824, -0.015408339910209179, 0.01848181150853634, -0.002361451042816043, -0.02124793641269207, -0.014035522006452084, -0.010777642019093037, 0.02052054926753044, 0.024444347247481346, 0.024608265608549118, -0.0063928221352398396, -0.005419555585831404, 0.008969415910542011, 0.03815203160047531, 0.011423070915043354, -0.007243148982524872, 0.011003030464053154, 0.0014125165762379766, -0.007063863333314657, -0.030796190723776817, 0.01848181150853634, 0.01592058502137661, -0.02126842737197876, 0.03481219336390495, 0.0027328289579600096, -0.003416676539927721, 0.0052710045129060745, 0.0020387363620102406, 0.022395366802811623, -0.019229689612984657, 0.018174465745687485, 0.006618209648877382, -0.00308883935213089, 0.02039760909974575, 0.019219445064663887, 0.03659480810165405, -0.0003585717349778861, 0.020182466134428978, -0.013594991527497768, 0.012037765234708786, 0.024280428886413574, -0.0036907277535647154, -0.007033128757029772, 0.01370768528431654, 0.002148869214579463, 0.013410583138465881, 0.012437316589057446, 0.02659577876329422, -0.015766911208629608, 0.0351400300860405, 0.03186165913939476, -0.030816679820418358, 0.03782419487833977, -0.0003422439331188798, -0.011617724783718586, 0.029013575986027718, -0.018860872834920883, -0.013420827686786652, -0.004185044672340155, 0.016207443550229073, -0.02311250939965248, -0.002337119309231639, -0.015756666660308838, 0.004146626219153404, -0.02024393528699875, -0.029956107959151268, 0.0034909520763903856, -0.02835790254175663, -0.0004568588046822697, 0.007842476479709148, -0.0014432512689381838, 0.01850230246782303, -0.006940924562513828, 0.005603963974863291, -0.023542795330286026, -0.010900581255555153, 0.02046932466328144, -0.011627969332039356, -0.011187437921762466, -0.012386091984808445, -0.007489026989787817, 0.010096355341374874, 3.537694283295423e-05, 0.007862966507673264, -0.0019209200982004404, 0.028849657624959946, 0.019813649356365204, 0.0004309263895265758, -0.013676950708031654, 0.022538796067237854, 0.013174950145184994, -0.0007216256344690919, -0.008277884684503078, 0.009092355147004128, 0.029956107959151268, 0.01595132052898407, 0.003736829850822687, -0.019936589524149895, 0.009194804355502129, -0.028050554916262627, 0.016166463494300842, -0.0002551622164901346, -0.00176340457983315, -0.0072175366804003716, -0.03452533483505249, 0.02130940556526184, 0.0017979812109842896, 0.01696556620299816, -0.0030811557080596685, 0.0028378393035382032, 0.012150459922850132, 0.024587776511907578, -0.007099720649421215, -0.006577230058610439, 0.02405504137277603, -0.0022564406972378492, -0.032435376197099686, -0.0022564406972378492, 0.011627969332039356, 0.009881212376058102, -0.008836232125759125, 0.021104509010910988, -0.010623968206346035, -0.022743692621588707, -0.015275156125426292, 0.0031528701074421406, 0.07700072228908539, -0.03014051541686058, 0.0461430624127388, -0.015766911208629608, 0.0499131865799427, -0.024280428886413574, -0.028091534972190857, 0.01016806997358799, -0.0478232242166996, 0.03626697137951851, -0.015746422111988068, 0.003557543968781829, -0.005921556148678064, -0.012170949019491673, -0.018809648230671883, 0.024137001484632492, -0.009123089723289013, -0.027661249041557312, 0.02464924566447735, 0.011925071477890015, -0.019659975543618202, 0.04786420613527298, 0.028030065819621086, 0.020684467628598213, 0.003001757664605975, -0.0050865961238741875, -0.008072986267507076, -0.0375373400747776, -0.008995028212666512, -0.010736662894487381, 0.03606207296252251, -0.042004119604825974, -0.026841655373573303, -0.03003806620836258, -0.04339742660522461, -0.006259637884795666, -0.0024818286765366793, 0.009466294199228287, -0.017375361174345016, -0.01679140329360962, 0.026165492832660675, -0.012037765234708786, 0.030365904793143272, -0.04860183969140053, 0.0009143579518422484, 0.04716755077242851, -0.01770319975912571, -0.00843155849725008, -0.055404458194971085, -0.024362388998270035, 0.01060347817838192, -0.02919798530638218, -0.05319155752658844, -0.012088989838957787, 0.04536444693803787, -0.021575773134827614, -0.0036190133541822433, 0.004802300129085779, -0.027108022943139076, 0.010839111171662807, -0.0006940924213267863, -0.04143040254712105, 0.04054934158921242, -0.002279491862282157, -0.014383849687874317, -0.02827594242990017, -0.0031451864633709192, -0.01058298908174038, -0.004669116344302893, -0.02024393528699875, -0.02757928892970085, 0.004477024544030428, -0.036820195615291595, 0.019977567717432976, -0.0034730234183371067, -0.0022154611069709063, 0.0006377454265020788, -0.009061620570719242, -0.03395162150263786, -0.009461171925067902, 0.0028199106454849243, -0.010239784605801105, 0.012498786672949791, -0.019055526703596115, -0.004036493133753538, -0.01786711812019348, 0.002562507288530469, -0.0007683680159971118, 0.03259929269552231, -0.00445397337898612, -0.0036190133541822433, -0.01758025959134102, 0.014025277458131313, -0.0336647629737854, -0.02311250939965248, 0.03302957862615585, 0.02827594242990017, -0.014127726666629314, -0.029443861916661263, 0.01945507898926735, 0.03456631675362587, -0.022374875843524933, 0.031205985695123672, 0.018983813002705574, 0.0006262199603952467, -0.03450484573841095, -0.0008221537573263049, 0.016555769369006157, -0.013092990964651108, 0.01939360797405243, 0.00012493984831962734, -0.04249587282538414, 0.005399066023528576, -0.0063928221352398396, 0.033152516931295395, 0.037516847252845764, -0.012601235881447792, 0.0016878483584150672, 0.003905870718881488, -0.0009258834761567414, -0.0063364747911691666, 0.013072500936686993, 0.007299496326595545, -0.005043055396527052, 0.03542688861489296, -0.002919798484072089, -0.02645234949886799, 0.0407952181994915, 0.002763563534244895, -0.008964293636381626, 0.019844384863972664, -0.024546796455979347, -0.015623482875525951, -0.01777491346001625, -0.01244756206870079, 0.0015969248488545418, 0.005988148041069508, 0.03823399171233177, 0.013912583701312542, 0.016350870952010155, -0.00035665082396008074, -0.0388077087700367, -0.009025762788951397, 0.032230477780103683, 0.008508395403623581, -0.03567276522517204, 0.00417736079543829, 0.003160553751513362, -0.021043037995696068, -0.0007856562733650208, 0.024177979677915573, 0.019731691107153893, 0.01284711342304945, -0.0006012480007484555, -0.009440681897103786, -0.020100507885217667, 0.09974441677331924, -0.019998058676719666, -0.010726417414844036, -0.01771344430744648, -0.02122744731605053, -0.0371275432407856, 0.000804865499958396, 0.010419070720672607, 0.001557225827127695, -0.01069568283855915, 0.06716561317443848, -0.014455563388764858, -0.02565324679017067, 0.021637244150042534, -0.006664311978965998, -0.0015546645736321807, -0.020766425877809525, -0.026165492832660675, 0.0008503272547386587, -0.013174950145184994, -0.01285735797137022, 0.02839888259768486, 0.011791887693107128, 0.022006060928106308, -0.0024101142771542072, 0.023481326177716255, 0.0019375680712983012, 0.020571773871779442, 0.00837008934468031, -0.012816378846764565, 0.012314378283917904, 0.012631970457732677, 0.005701290909200907, 0.02290761098265648, 0.03302957862615585, 0.008375211618840694, 0.0014112358912825584, -3.7177807826083153e-05, -0.0354473777115345, 0.044012121856212616, 0.021575773134827614, 0.001301743439398706, -0.017047524452209473, -0.009553375653922558, -0.011832867749035358, 0.05245392397046089, -0.010162947699427605, 0.0006896103150211275, -0.024362388998270035, -0.018000300973653793, 0.01058298908174038, -0.04589718207716942, 0.013277399353682995, -0.004387381486594677, -0.031226476654410362, 0.01873793452978134, -0.0046921675093472, 0.02309202030301094, -0.0023524868302047253, -0.014568258076906204, 0.00221418053843081, -0.021801162511110306, 0.027128513902425766, -0.03817252442240715, 0.03370574489235878], [-0.01951138861477375, -0.004277178086340427, 0.07796270400285721, 0.01061527244746685, -0.08425936847925186, -0.025973759591579437, -0.009626239538192749, 0.07415156066417694, 0.0065089743584394455, 0.026098035275936127, -0.02549736574292183, 0.0037671271711587906, 0.011671621352434158, 0.01812363602221012, -0.0504976287484169, -0.0025735562667250633, -0.019956711679697037, 0.05459874868392944, 0.006736814510077238, -0.04627222940325737, 0.018537890166044235, 0.019024638459086418, -0.01895214430987835, 0.015482762828469276, -0.005768494214862585, -0.009419112466275692, -0.0413011759519577, -0.012417279183864594, 0.046769335865974426, -0.057332828640937805, 0.043786704540252686, -0.027050821110606194, 0.015379199758172035, -0.012044450268149376, 0.009424290619790554, -0.046313658356666565, 0.013763606548309326, -0.03925061598420143, 0.03065483458340168, -0.006690210662782192, -0.027050821110606194, 0.024751707911491394, -0.03121407888829708, -0.012603693641722202, -0.021603373810648918, 0.009874792769551277, 0.0287078395485878, -0.05066332966089249, 0.015731316059827805, 0.013856814242899418, -0.013742893934249878, 0.04813637584447861, -0.01096738874912262, 0.021396245807409286, 0.012075519189238548, 0.015192785300314426, -0.03773858770728111, 0.024192465469241142, 0.03065483458340168, 0.009434646926820278, 0.0339067317545414, 0.012417279183864594, 0.012831534259021282, 0.03664081171154976, 0.03297466039657593, -0.005447447299957275, 0.012479417957365513, 0.014188217930495739, 0.01176482904702425, -0.03624727204442024, 0.04051409289240837, 0.018444683402776718, 0.047225017100572586, -0.059859778732061386, -0.03525305911898613, 0.052071794867515564, 0.015586326830089092, -0.008916828781366348, -0.010050850920379162, -0.056545741856098175, -0.013463272713124752, 0.017947576940059662, -0.023032551631331444, -0.03914705291390419, 0.014985657297074795, -0.047680698335170746, -0.04101119935512543, 0.0018499053549021482, -0.013805031776428223, 0.029308507218956947, -0.05501300096511841, -0.027278661727905273, -0.030571984127163887, 0.045526571571826935, -0.028728552162647247, -0.005582079757004976, 0.04382812976837158, -0.018890006467700005, -0.02191406488418579, 0.03993413597345352, -0.03651653602719307, -0.020236333832144737, -0.005809919908642769, 0.030509846284985542, 0.027237234637141228, -0.043331023305654526, 0.0008595781400799751, 0.08674489706754684, 0.03543947637081146, 0.01589701697230339, -0.028749264776706696, -0.017761163413524628, -0.00041587272426113486, 0.03813213109970093, -0.0315869078040123, -0.0028428216464817524, 0.03384459391236305, -0.031980451196432114, 0.010925963521003723, -0.033347491174936295, 0.020837003365159035, 0.01579345390200615, -5.044681529398076e-05, -0.0390642024576664, 0.01781294494867325, -0.021748362109065056, 0.009512319229543209, 0.002129527274519205, -0.050331924110651016, 0.014996013604104519, 0.03479738160967827, -0.032311853021383286, 0.021727649495005608, -0.007648174185305834, 0.024171750992536545, -0.026574427261948586, -0.003938007168471813, -0.005266210529953241, -0.012458705343306065, -0.013131869025528431, 0.016818733885884285, -0.013711825013160706, -0.006679854355752468, 0.0008951781783252954, -0.06188962608575821, 0.02307397685945034, -0.01784401386976242, 0.00477687269449234, 0.046437934041023254, 0.011070952750742435, -0.016373410820961, 0.03649582341313362, -0.017543679103255272, -0.024378878995776176, -0.0028920143377035856, 0.026822980493307114, -0.009703912772238255, 0.029702050611376762, -0.01492351945489645, 0.02616017311811447, -0.012375853955745697, -0.022349031642079353, -0.03796642646193504, -0.020816290751099586, 0.042999621480703354, 0.00870452355593443, -0.020049918442964554, 0.03740718588232994, -0.02537309005856514, -0.030033454298973083, -0.03606085851788521, 0.014271068386733532, -0.053314559161663055, -0.014799242839217186, -0.029453497380018234, -0.024772420525550842, 0.030054166913032532, 0.06292526423931122, -0.01660124957561493, 0.065493643283844, -0.020381322130560875, -0.005390487145632505, -0.033927444368600845, -0.006467548664659262, 0.01973922923207283, 0.03179403394460678, 0.0019003927009180188, 0.00450501823797822, -0.012914384715259075, 0.008751126937568188, 0.013452915474772453, -0.015938442200422287, 0.0200913455337286, 0.01933532953262329, 0.013059373944997787, 0.0015780508983880281, -0.013908595778048038, 0.00706303957849741, 0.013660043478012085, -0.004994356073439121, 0.031048377975821495, -0.04094906151294708, 0.03481809422373772, 0.012935097329318523, -0.08256092667579651, -0.002767738187685609, 0.022100478410720825, -0.03436241298913956, 0.018620740622282028, 0.01188910473138094, 0.02742365002632141, -0.02274257317185402, -0.047349292784929276, -0.022017627954483032, 0.028065744787454605, 0.055261556059122086, -0.013411490246653557, 0.01200302504003048, 0.006048116367310286, 0.06255243718624115, -0.03164904564619064, 0.013628973625600338, -0.002757381647825241, -0.019097134470939636, 0.00772066880017519, 0.01170269027352333, 0.047225017100572586, -0.014830311760306358, 0.013473629020154476, -0.044615212827920914, 0.00812456663697958, 0.010004246607422829, 0.013235432095825672, -0.030592696741223335, -0.01193053089082241, 0.003829265246167779, 0.037386469542980194, -0.03374103084206581, 0.06168249994516373, 0.012148014269769192, -0.0007171781617216766, -0.044822338968515396, -0.02261829748749733, 0.007917439565062523, 0.02282542549073696, -0.015348129905760288, 0.01589701697230339, 0.0029826327227056026, 0.029184231534600258, 0.025414515286684036, -0.03490094467997551, -0.020712725818157196, 0.0384221076965332, -0.06951191276311874, -0.003826676169410348, 0.03417599946260452, -0.010749905370175838, -0.017699025571346283, 0.010434036143124104, -0.039892710745334625, 0.008657919242978096, -0.043910980224609375, 0.00042461088742129505, 0.03676509112119675, -0.04962769150733948, -0.006581468973308802, -0.02433745376765728, -0.007824232801795006, -0.02914280630648136, 0.028438573703169823, -0.03222900256514549, -0.007192494347691536, 0.01963566429913044, -0.03707578033208847, -0.05265175178647041, 0.030799824744462967, 0.0037231126334518194, -0.00237290165387094, -0.04888203367590904, -0.008984144777059555, -0.03881565108895302, 0.016963722184300423, -0.008067606948316097, -0.021044129505753517, 0.02974347583949566, -0.017761163413524628, -0.0021605961956083775, -0.013028305023908615, -0.015109933912754059, -0.0067730615846812725, 0.0827266275882721, -0.02377820946276188, 0.01935604214668274, 0.010050850920379162, 0.07411013543605804, 0.029204944148659706, 0.04225396364927292, 0.012355141341686249, -0.00425905454903841, -0.02156194858253002, 0.042419664561748505, 0.01532741729170084, 0.0373450443148613, -0.026450151577591896, -0.07063039392232895, 0.01188910473138094, -0.02514524944126606, 0.06412660330533981, 0.008305802941322327, 0.0038396217860281467, -0.007839767262339592, 0.027257947251200676, -0.02845928631722927, -0.08624779433012009, -0.004453236237168312, 0.017419403418898582, -0.05592436343431473, 0.03527377173304558, -0.0015909962821751833, 0.020112058147788048, 0.02742365002632141, 0.02800360694527626, 0.02249402180314064, -0.013898239471018314, -0.0029127271845936775, 0.006586647126823664, 0.025973759591579437, 0.05269317701458931, -0.03133835643529892, 0.010408145375549793, 0.0006035817787051201, 0.0007314181420952082, 0.011619839817285538, 0.026947258040308952, 0.004598225466907024, -0.012603693641722202, -0.013794675469398499, -0.004098530858755112, -0.0028428216464817524, -0.02330181747674942, 0.02961919829249382, -0.0028713017236441374, -0.015876304358243942, 0.008694167248904705, 0.0021152871195226908, 0.04005841165781021, 0.03904348984360695, 0.0642094537615776, -0.01400180347263813, 0.005173003301024437, 0.0042849453166127205, -0.015265279449522495, -0.052817452698946, -0.016466617584228516, -0.010874181054532528, -0.03597800433635712, 0.029577773064374924, 0.0070992871187627316, 0.011205584742128849, 0.026781555265188217, -0.036578673869371414, 0.0029386181849986315, 0.03258111700415611, -0.013338996097445488, 0.026677992194890976, -0.020837003365159035, 0.009372509084641933, -0.007787985261529684, -0.004971054382622242, -0.02261829748749733, -0.04830207675695419, -0.009113599546253681, 0.023840349167585373, -0.050911881029605865, 0.006534865126013756, -0.003368407255038619, 0.061475373804569244, -0.002634399803355336, -0.03272610902786255, 0.017139781266450882, -0.01718120649456978, 0.00998353399336338, -0.020308827981352806, -0.026677992194890976, 0.023115402087569237, -0.02630516327917576, -0.05936267599463463, -0.041860420256853104, -0.047804974019527435, 0.04962769150733948, 0.030965525656938553, 0.01654946804046631, -0.0019094544695690274, 0.013028305023908615, -0.05256890133023262, -0.014095010235905647, -0.03606085851788521, -0.005268799606710672, -0.025642355903983116, 0.027050821110606194, -0.007316770497709513, -0.031980451196432114, -0.01393966469913721, -0.0007171781617216766, -0.014219286851584911, -0.031959738582372665, -0.017885439097881317, 0.027071533724665642, 0.009507141076028347, -0.05327313393354416, -0.012655476108193398, 0.019138559699058533, 0.024171750992536545, 0.023943912237882614, 0.026657279580831528, 0.0482606515288353, -0.03177332133054733, 0.06130966916680336, 0.005488872528076172, 0.0064520142041146755, 0.04531944543123245, 0.026574427261948586, 0.009496784768998623, 0.00493998546153307, -0.05339740961790085, -0.0031561017967760563, -0.00010251181811327115, -0.0034409016370773315, 0.00832651648670435, -0.013918952085077763, 0.0143539197742939, -0.001413643592968583, -0.02158266119658947, 0.03947845846414566, -0.05306600406765938, 0.024772420525550842, 0.019697802141308784, 0.028210733085870743, -0.039209190756082535, 0.023156829178333282, -0.022701147943735123, 0.004885614383965731, 0.04763926938176155, -0.014488551765680313, -0.07253596931695938, 0.02916351892054081, -0.029412072151899338, 0.005160057917237282, -0.04312389716506004, 0.017781876027584076, 0.007052683271467686, -0.06702638417482376, -0.014177861623466015, -0.0038007854018360376, -0.002049265429377556, 0.03763502463698387, -0.019449250772595406, 0.023571083322167397, 0.04005841165781021, -0.01532741729170084, -0.035895153880119324, 0.02065058797597885, 0.017823301255702972, 0.022079765796661377, 0.0019482908537611365, 0.037945713847875595, -0.04635508358478546, 0.016414836049079895, -0.016539111733436584, -0.048509206622838974, -0.03879493847489357, 0.021375533193349838, -0.03867065906524658, -0.024648144841194153, -0.0004935454344376922, -0.0021631852723658085, -0.037717875093221664, -0.07021614164113998, -0.03568802773952484, -0.053687386214733124, 0.02595304697751999, 0.04809495061635971, -0.02431674115359783, -0.07319877296686172, 0.04995909705758095, -0.05865844339132309, 0.043455298990011215, 0.013763606548309326, 0.013131869025528431, -0.04469806328415871, -0.015544901601970196, -0.008114210329949856, 0.020205264911055565, -0.006431301590055227, 0.008740770630538464, 0.025083111599087715, -0.07386158406734467, 0.010708479210734367, 0.018869293853640556, 0.014488551765680313, 0.007969221100211143, -0.020609162747859955, -0.009874792769551277, 0.034031011164188385, 0.009869614616036415, -0.005317992530763149, -0.00480276346206665, -0.03980986028909683, 0.012614050880074501, -0.019097134470939636, -0.02593233436346054, 0.019490676000714302, -0.013276857323944569, 0.00014191454101819545, -0.008021003566682339, 0.010594559833407402, 0.038297832012176514, -0.011526632122695446, -0.012210152111947536, 0.04502946883440018, 0.026346588507294655, -0.025642355903983116, -0.056297190487384796, 0.007161425426602364, 0.03268468379974365, 0.03556375205516815, -0.031524769961833954, -0.03007487952709198, 0.006783417891710997, 0.0012382327113300562, -0.0223697442561388, -0.05314885452389717, -0.045070894062519073, 0.03340962901711464, 0.011029526591300964, 0.0384635329246521, -0.001367039978504181, 0.026429438963532448, -0.013970733620226383, -0.043455298990011215, 0.06565934419631958, -0.006622894201427698, 0.00717695988714695, 0.015120290219783783, -0.028769977390766144, -0.0241096131503582, 0.00854399986565113, 0.027817191556096077, 0.003073250874876976, 0.020795578137040138, 0.01176482904702425, 0.019397469237446785, -0.024772420525550842, -0.05087045580148697, 0.0015767563600093126, 0.0025593163445591927, 0.00192369450815022, -0.007451403420418501, 0.05198894441127777, 0.005286923609673977, -0.0070941089652478695, 0.05704284831881523, 0.0018589672399684787, -0.01726405695080757, 0.03767644986510277, 0.0031742253340780735, 0.04217110946774483, 0.005747781600803137, -0.013225075788795948, -0.02630516327917576, -0.007461759727448225, -0.00019175454508513212, 0.020888784900307655, -0.0009896799456328154, 0.029784901067614555, 0.05236177146434784, 0.019345685839653015, -0.006441657897084951, 0.030489133670926094, 0.05832703784108162, 0.010221730917692184, 0.040700506418943405, -0.013732537627220154, 0.0046137599274516106, -0.00943982508033514, -0.029598485678434372, -0.016849802806973457, 0.0034512579441070557, -0.015575970523059368, 0.019552813842892647, -0.021748362109065056, -0.0032001163344830275, 0.009848901070654392, -0.02949492260813713, 0.014498909004032612, 0.018537890166044235, 0.019086778163909912, -0.004124421626329422, -0.023716071620583534, 0.012914384715259075, 0.02181050181388855, 0.0157727412879467, -0.01781294494867325, -0.010413323529064655, -0.04502946883440018, 0.013173294253647327, 0.02698868326842785, -0.021013060584664345, 0.006483083590865135, 0.009807475842535496, -0.003523752558976412, 0.011091665364801884, -0.015410268679261208, -0.03065483458340168, -0.010014602914452553, 0.011319505050778389, -0.030157729983329773, -0.019956711679697037, 0.0042228070087730885, 0.032436128705739975, -0.025518078356981277, 0.018382545560598373, 0.01393966469913721, 0.009429468773305416, -0.030344143509864807, 0.0006424181628972292, -0.028977103531360626, -0.019449250772595406, -0.020578093826770782, -0.04386955499649048, -0.007699956186115742, 0.016062719747424126, 0.0019560582004487514, -0.023943912237882614, -0.023343242704868317, -0.04233681410551071, 0.029929889366030693, -0.020785221830010414, -0.00027767999563366175, 0.007575679570436478, 0.009936930611729622, 0.02446172945201397, -0.02845928631722927, -0.04262679070234299, 0.03481809422373772, 0.0015197963220998645, -0.0011625017505139112, 0.021209832280874252, 0.007477294187992811, 0.015296348370611668, -0.03241541609168053, 0.00406228331848979, -0.01108130905777216, -0.03809070587158203, 0.01124701090157032, 0.01938711293041706, -0.021769074723124504, 0.0275479257106781, 0.017947576940059662, -0.0056597525253891945, -0.02431674115359783, 0.040244828909635544, 0.017906151711940765, 0.053314559161663055, 0.013680756092071533, -0.026118747889995575, 0.021603373810648918, 0.008694167248904705, -0.02916351892054081, -0.004427345469594002, 0.019832435995340347, -0.007995112799108028, 0.028542136773467064, -0.041591156274080276, 0.033948156982660294, -0.033243924379348755, -0.044159531593322754, -0.014478195458650589, -0.02903924323618412, -0.01056349091231823, -0.022183330729603767, 0.0028816580306738615, -7.36272704671137e-05, 0.012510486878454685, 0.003852567169815302, 0.011961599811911583, 0.017170850187540054, -0.03088267520070076, 0.0070941089652478695, -0.02504168637096882, -0.012489774264395237, 0.026822980493307114, 0.015337773598730564, 0.016487330198287964, 0.02711295895278454, 0.028769977390766144, 0.026035897433757782, 0.021644799038767815, -0.026098035275936127, -0.018786443397402763, 0.01781294494867325, 0.018009716644883156, 0.004595636390149593, -0.029557060450315475, 0.0019819489680230618, 0.020930210128426552, -0.019956711679697037, 0.02468957006931305, 0.041736144572496414, -0.015803810209035873, -0.01951138861477375, -0.021292682737112045, -0.03032343089580536, -0.012189439497888088, 0.007254632655531168, -0.0061309668235480785, 0.03111051581799984, -0.014768173918128014, -0.03202187642455101, 0.006203461438417435, -0.037386469542980194, 0.005856523290276527, -0.037365756928920746, -0.0088961161673069, 0.03742789849638939, -0.000844043621327728, 0.019604595378041267, -0.047680698335170746, 0.010522064752876759, -0.0018745017005130649, 0.01457140315324068, -0.04444951191544533, 0.014219286851584911, 0.0026615853421390057, -0.018082210794091225, 0.0734059065580368, -0.001534036360681057, -0.0395820215344429, -0.01429178100079298, -0.04192255809903145, -0.0009133017738349736, -0.01423999946564436, -0.01325614470988512, -0.03912634029984474, -0.045857977122068405, -0.01331828348338604, 0.00542673422023654, 0.019480319693684578, 0.00859060324728489, 0.0001969327131519094, -0.008911650627851486, 0.003259665332734585, -0.020049918442964554, -0.003029236337170005, -0.011050239205360413, 0.01416750531643629, 0.011278079822659492, 0.006006690673530102, -0.035315196961164474, 0.030986238270998, 0.020681656897068024, 0.0009236581390723586, 0.008461148478090763, 0.04308247193694115, 0.005499228835105896, -0.023343242704868317, -0.015058152377605438, -0.004173614550381899, 0.04560942202806473, 0.039209190756082535, -0.006881803274154663, -0.009020392782986164, 0.03206330165266991, 0.004657774232327938, 0.03042699582874775, -0.006177570670843124, 0.012935097329318523, -0.01200302504003048, -0.04308247193694115, -0.045857977122068405, 0.013494341634213924, -0.02607732266187668, 0.0053438832983374596, 0.026222310960292816, 0.03459025174379349, 0.02433745376765728, 0.0005359417991712689, -0.019324973225593567, 0.01555525790899992, -0.021116625517606735, -0.01457140315324068, -0.0018576727015897632, 0.016518399119377136, -0.028997818008065224, 0.019034994766116142, 0.02388177439570427, 0.008569890633225441, -0.002464814344421029, -0.037945713847875595, -0.023571083322167397, -0.01377396285533905, -0.031069090589880943, -0.01309044286608696, 0.02228689379990101, 0.08914757519960403, -0.025621643289923668, 0.005556188989430666, -0.010092276148498058, -0.003536697942763567, -0.006726457737386227, -0.02421317808330059, -0.0012557090958580375, -0.01600058190524578, 0.007151068653911352, 0.004942574538290501, -0.00875630509108305, 0.019345685839653015, 0.005307636223733425, 0.014737104997038841, 0.008062428794801235, -0.008103854022920132, -0.0016958544729277492, -0.0017605817411094904, 0.0014498909004032612, 0.027589350938796997, -0.028769977390766144, 0.01584523543715477, -0.02375749684870243, -0.019066065549850464, 0.019977424293756485, 0.0076844217255711555, -0.012344785034656525, -0.027941467240452766, -0.0017295127036049962, 0.008445614017546177, -0.030282005667686462, -0.004510196391493082, -0.03970629721879959, -0.007332305423915386, -0.020060274749994278, 0.024192465469241142, 0.002649934496730566, -0.029453497380018234, -0.013421846553683281, -0.007378908805549145, 0.013017948716878891, 0.0034383125603199005, 0.01852753385901451, -0.032891809940338135, -0.004432523623108864, 0.029557060450315475, -0.03889850154519081, 0.017999358475208282, -0.008792552165687084, 0.049751970916986465, 0.009926574304699898, 0.0012718908255919814, -0.03684794157743454, 0.020961279049515724, -0.0037257017102092505, -0.031504057347774506, -0.004186559934169054, 0.018745018169283867, -0.005727068986743689, 0.035398051142692566, 0.010718836449086666, -0.01377396285533905, -0.03305751085281372, 0.0643337294459343, 0.00938804354518652, 0.010791330598294735, -0.019822079688310623, 0.0482192263007164, -0.009460537694394588, 0.005349061451852322, 0.02537309005856514, -0.019376754760742188, 0.0022861671168357134, 0.05145041272044182, -0.013194006867706776, 0.004590458236634731, 0.03927132859826088, 0.004098530858755112, 0.00041360725299455225, -0.02226618118584156, -0.004051927011460066, 0.009408756159245968, 0.014706036075949669, 0.012945453636348248, 0.01566917821764946, 0.031193366274237633, 0.03601943328976631, 0.009854079224169254, 0.0223697442561388, -0.0037645380944013596, -0.02560093067586422, 0.01429178100079298, 0.019076421856880188, -0.007518719881772995, 0.0177922323346138, -0.005846166983246803, 0.01337006501853466, -0.010356362909078598, 0.011464494280517101, 0.012458705343306065, 0.022783998399972916, -0.014146791771054268, -2.6659545255824924e-05, 0.029329221695661545, -0.017947576940059662, -0.01660124957561493, -0.005737425293773413, -0.0292877946048975, -0.07763130217790604, -0.006011868827044964, 0.01647697389125824, -0.045153744518756866, 0.008761483244597912, -0.004196916241198778, -0.019138559699058533, 0.021271970123052597, 0.0390227772295475, 0.002511418191716075, 0.010718836449086666, 0.020236333832144737, -0.037034355103969574, 0.01176482904702425, 0.01945960707962513, -0.04502946883440018, -0.0069801886565983295, 0.001273185363970697, 0.010604916140437126, 0.008093497715890408, 0.007161425426602364, -0.009108421392738819, 0.028500711545348167, -0.00899450108408928, 0.008197061717510223, 0.03995484858751297, -0.0032389527186751366, -0.010107810609042645, -0.02903924323618412, 0.018165061250329018, -0.022183330729603767, -0.013473629020154476, -0.024151038378477097, -0.019097134470939636, 0.025973759591579437, -0.009377687238156796, 0.01898321323096752, -0.007964042946696281, -0.004569745156913996, 3.1635452614864334e-05, -0.025393802672624588, 0.0034227780997753143, -0.02709224633872509, 0.0088961161673069, 0.010553134605288506, -0.0004909563576802611, 0.02044346183538437, 0.018206486478447914, 0.02489669807255268, -0.026139460504055023, -0.0367029532790184, 0.03722076863050461, 0.014395345002412796, 0.0169533658772707, 0.0013061963254585862, -0.0024635198060423136, 0.03699292987585068, -0.009507141076028347, -0.021955490112304688, 0.011806254275143147, -0.0033968870993703604, -0.01263476349413395, -0.00614132359623909, 0.04411810636520386, 0.01096738874912262, -0.003611781634390354, -0.005633861757814884, -0.0069750105030834675, 0.029412072151899338, 0.018278980627655983, -0.03318178653717041, -0.029122093692421913, 0.018693234771490097, -0.015078864991664886, -0.016559824347496033, 0.005742603447288275, 0.023281104862689972, -0.024710282683372498, -0.028769977390766144, 0.0447394885122776, 0.01416750531643629, -0.01124701090157032, 0.01824791170656681, -0.0061827488243579865, -0.03755217418074608, 0.03384459391236305, 0.016342341899871826, 0.012427635490894318, 0.0281071700155735, -0.029204944148659706, -0.006778239738196135, -0.009750516153872013, 0.025911621749401093, -0.017098356038331985, 0.0021528289653360844, -0.020029205828905106, -0.007332305423915386, -0.00984372291713953, 0.00332957087084651, 0.0017994181253015995, -0.006239708978682756, 0.006343272514641285, -0.0447394885122776, -0.020557381212711334, 0.014851025305688381, -0.01993599906563759, 0.05261032655835152, 0.013007592409849167, 0.03517020866274834, 0.01222050841897726, 0.006954297889024019, -0.023964624851942062, -0.0050772069953382015, 0.019646020606160164, 0.016963722184300423, 0.040928348898887634, -0.005302458070218563, -0.05439161881804466, 0.0269679706543684, 0.021644799038767815, 0.00485972361639142, 0.030261293053627014, 0.01840325817465782, 0.03974772244691849, -0.0065037962049245834, -0.024834558367729187, 0.02881140261888504, 0.017771519720554352, -0.0028454107232391834, -0.0012375854421406984, 0.03401029855012894, -0.00364285078831017, -0.0396234467625618, 0.0003860981669276953, 5.3703406592831016e-06, 0.022783998399972916, 0.011257367208600044, 0.009636595845222473, 0.0003640908980742097, -0.02674013003706932, -0.052527476102113724, -0.00019110726134385914, -0.03479738160967827, -0.0327053964138031, -0.014312493614852428, 0.02630516327917576, -0.013815389014780521, 0.0022667490411549807, 0.006037759594619274, 0.007125177886337042, 0.001505556283518672, 0.006198283284902573, 0.009512319229543209, -0.05211322009563446, 0.0401412658393383, 0.025559505447745323, 0.038297832012176514, -0.04237823933362961, -0.0042228070087730885, -0.0088961161673069, 0.03430027514696121, 0.023384667932987213, 0.007586035877466202, -0.034963082522153854, -0.03409314900636673, 0.00570635637268424, -0.015368843451142311, -0.007482472341507673, 0.019480319693684578, 0.06014975905418396, -0.006441657897084951, -0.0180718544870615, -0.04009983688592911, 0.028045032173395157, 0.020174195989966393, 0.055965788662433624, 0.011360930278897285, -0.022887563332915306, 0.041963983327150345, 0.009020392782986164, 0.04693503677845001, 0.015006370842456818, 0.003793017938733101, -0.005245497915893793, 0.008963432163000107, 0.005222196225076914, 0.005789207294583321, -0.0025619054213166237, 0.012469061650335789, 0.03581230342388153, -0.012479417957365513, 0.010506530292332172, 0.008140101097524166, 0.015058152377605438, -0.006736814510077238, -0.002432450884953141, 0.004981410689651966, -0.005462981760501862, -0.009056639857590199, 0.015182428993284702, 0.004668130539357662, 0.008792552165687084, -0.0006259126821532845, -0.023446805775165558, -0.010371897369623184, 0.0344659760594368, 0.0022745162714272738, 0.02454458177089691, -0.012034093961119652, -0.04979339614510536, -0.0012220508651807904, 0.012158370576798916, -0.009170559234917164, 0.005633861757814884, 0.019853148609399796, 0.010118166916072369, 0.039768435060977936, -0.018434327095746994, 0.005312814377248287, 0.005165236070752144, -0.014312493614852428, 0.027713628485798836, 0.012199795804917812, -0.008792552165687084, -0.041715431958436966, 0.017377978190779686, 0.020101701840758324, -0.01670481450855732, 0.024026762694120407, -0.006105076055973768, 0.01622842065989971, -0.000888705428224057, -0.003886225400492549, -0.004857134539633989, 0.05729140341281891, 0.0001582581753609702, -0.026905830949544907, -0.034486688673496246, 0.03912634029984474, 0.00379042886197567, -0.011692333966493607, 0.01141271274536848, -0.010475461371243, 0.025890907272696495, -0.004416989162564278, 0.018102923408150673, 0.0002778418129310012, -0.014322850853204727, 0.012831534259021282, 0.030675547197461128, 0.03351319208741188, 0.04038981720805168, 0.009098065085709095, -0.01654946804046631, 0.015513831749558449, 0.01416750531643629, -0.012044450268149376, 0.0002184545446652919, -0.03469381853938103, -0.008813264779746532, 0.04979339614510536, -0.005752959754317999, 0.0034564363304525614, 0.0031250326428562403, -0.038152843713760376, -0.01170269027352333, -0.004766516387462616, 0.019666733220219612, 0.018620740622282028, -0.004784639924764633, -0.011868392117321491, -0.02386106178164482, 0.03293323516845703, 0.022079765796661377, -0.01970815844833851, 0.012872959487140179, 0.006912872660905123, 0.0011845090193673968, -0.0025761453434824944, -0.0120548065751791, -0.004621527157723904, -0.009672842919826508, 0.004059694241732359, -0.00011966453894274309, -0.0037464143242686987, 0.019728872925043106, -0.028666414320468903, -0.02456529438495636, -0.00021343817934393883, -0.0028842471074312925, 0.001390341785736382, -0.017522966489195824, -0.0010945381363853812, -0.011733759194612503, 0.009517497383058071, 0.00248293811455369, -0.010024959221482277, 0.05294172838330269, -0.007554966956377029, -0.023156829178333282, -0.011112377978861332, 0.004536087159067392, 0.009512319229543209, -0.0101958392187953, 0.005695999599993229, -0.022121191024780273, 0.005276567302644253, -0.005701177753508091, -0.012210152111947536, 0.002477759961038828, 0.0023327707313001156, 0.024875985458493233, -0.0005375599721446633, -0.00031894363928586245, -0.002757381647825241, 0.0065037962049245834, 0.05290030315518379, -0.002182603580877185, -0.013960377313196659, -0.00450501823797822, 0.008310981094837189, 0.00028755090897902846, -0.019604595378041267, 0.05795420706272125, -0.017295125871896744, 0.003557410789653659, -0.005204072687774897, -0.004041570704430342, 0.025911621749401093, 0.01640447974205017, -0.036350835114717484, 0.007731025107204914, -0.02630516327917576, -0.0070992871187627316, 0.015430981293320656, -0.012261933647096157, -0.0039690760895609856, -0.032332565635442734, -0.007394443266093731, -0.016104144975543022, 0.005892770830541849, -0.013494341634213924, 0.023902487009763718, 0.012324072420597076, -0.012293003499507904, -0.017885439097881317, 0.014892450533807278, -0.010822399519383907, -0.00880808662623167, -0.06217960640788078, 0.02514524944126606, -0.005369774531573057, 0.016943009570240974, 0.00725981080904603, 0.005255854222923517, 0.005118632689118385, 0.005261032376438379, -0.010366719216108322, 0.04730786755681038, 0.009952465072274208, -0.007824232801795006, 0.003037003567442298, 0.024627432227134705, -0.012065162882208824, 0.02512453682720661, 0.027817191556096077, 0.012976523488759995, -0.02676084265112877, -0.028417861089110374, -0.005809919908642769, 0.04258536547422409, 0.005222196225076914, 0.0229704137891531, 0.009279301390051842, -0.028749264776706696, 0.03597800433635712, -0.01416750531643629, -0.01877608709037304, -0.006053294520825148, -0.020329540595412254, 0.009258588775992393, 0.010604916140437126, -0.03164904564619064, 0.012375853955745697, -0.030489133670926094, -0.014840668998658657, -0.019480319693684578, 0.0008971199858933687, 0.026346588507294655, -0.001746341702528298, 0.04875775799155235, 0.007544610649347305, 0.012779752723872662, -0.014851025305688381, -0.02125125750899315, 0.022680435329675674, 0.0017243344336748123, -0.020298471674323082, 0.03100695088505745, -0.03227042779326439, 0.01085346844047308, -0.004124421626329422, 0.02135482057929039, 0.01200302504003048, 0.024751707911491394, -0.010314937680959702, -0.003640261711552739, -0.010190661065280437, -0.013587548397481441, 0.005908305291086435, -0.033326778560876846, 0.017357265576720238, -0.02721652202308178, 0.008233308792114258, 0.0361851342022419, -0.013111155480146408, -0.014996013604104519, -0.02386106178164482, -0.01457140315324068, 0.010387432761490345, 0.01497530099004507, -0.00076054543023929, 0.004044159781187773, -0.02421317808330059, 0.030634121969342232, -0.0025153018068522215, 0.02089914120733738, -0.014954588375985622, -0.04714216664433479, -0.06971903890371323, 0.04142545163631439, -0.014312493614852428, 0.036205846816301346, -0.01698443666100502, 0.020112058147788048, -0.02535237744450569, -0.006162036210298538, -0.016290558502078056, -0.0018499053549021482, -0.03879493847489357, -0.02054702490568161, 0.013173294253647327, 0.004634472541511059, -0.016093788668513298, 0.04316532239317894, -0.027734341099858284, 0.011288436129689217, 0.04548514634370804, 0.012935097329318523, -0.016093788668513298, -0.028314298018813133, 0.0005404726834967732, 0.007529076188802719, -0.04028625413775444, -0.023363955318927765, -0.009698734618723392, 0.04132188856601715, -0.0017010326264426112, -0.006426123436540365, 0.0031819925643503666, -0.015317060984671116, 0.011423069052398205, 0.016735883429646492, -0.08024109899997711, 0.012303359806537628, -0.007570501416921616, 0.014447126537561417, -0.03206330165266991, -0.013100799173116684, 0.002529541729018092, -0.024151038378477097, -0.053894516080617905, 0.013701468706130981, -0.0014473018236458302, 0.010687766596674919, 0.015575970523059368, 0.010770617984235287, -0.018113279715180397, 0.0018460217397660017, 0.030716974288225174, -0.04198469594120979, -0.047017890959978104, 0.025331664830446243, -0.0017204508185386658, 0.0223697442561388, -0.023446805775165558, -0.05178181454539299, -0.012230864726006985, 0.01898321323096752, -0.0010472872527316213, 0.036682236939668655, -0.014426413923501968, -0.004440290853381157, -0.015783097594976425, 0.01923176646232605, -0.037593599408864975, -0.015358487144112587, 0.029432784765958786, 0.030364857986569405, 0.02065058797597885, 0.010061207227408886, 0.011578414589166641, -0.025766631588339806, 0.004593047313392162, 0.008569890633225441, 0.019677089527249336, -0.028293583542108536, -0.04223325103521347, -0.005364596378058195, 0.0183514766395092, 0.003627316327765584, 0.01710871234536171, -0.0010181599063798785, -0.005170414224267006, 0.017647242173552513, 0.015834879130125046, 0.02216261811554432, 0.030157729983329773, -0.010718836449086666, 0.016042007133364677, -0.02686440572142601, 0.01216872688382864, 0.01129879243671894, 0.006866268813610077, 0.029805613681674004, -0.01680837757885456, 0.028542136773467064, 0.009962821379303932, 0.007321948651224375, 0.029909176751971245, -0.023011839017271996, 0.01943889446556568, -0.005462981760501862, -0.0292877946048975, -0.02047453075647354, -0.009139490313827991, 0.014074297621846199, 0.015617395751178265, -0.009755694307386875, 0.014364276081323624, -0.0028920143377035856, 0.008709701709449291, -0.01614557020366192, -0.024420304223895073, 0.013494341634213924, 0.01423999946564436, -0.025870194658637047, -0.004561977926641703, -0.002788450801745057, 0.0067161014303565025, -0.012324072420597076, -0.0005369127029553056, 0.00717695988714695, 0.04386955499649048, -0.01582452282309532, 0.011640552431344986, -0.01516171544790268, -0.04614795371890068, 0.03641297295689583, -0.008564712479710579, -0.023923199623823166, -0.010537599213421345, -0.01052724290639162, 0.030613409355282784, 0.013028305023908615, -0.02007063291966915, 0.03376174345612526, -0.053438834846019745, 0.0396234467625618, 0.021396245807409286, -0.02340538054704666, 0.01423999946564436, 0.000888705428224057, -0.011236654594540596, -0.007321948651224375, -0.024710282683372498, -0.00044661815627478063, 0.016280202195048332, -0.012241221033036709, 0.03372031822800636, -0.006550399586558342, 0.0111848721280694, -0.009967999532818794, 0.0036609743256121874, 0.040928348898887634, 0.00409335270524025, 0.011578414589166641, -0.03280895948410034, 0.017502253875136375, 0.013742893934249878, 0.009082530625164509, 0.01763688586652279, 0.021313395351171494, 0.003787839785218239, -0.01101917028427124, -0.0367443785071373, -0.02663656696677208, 0.016570180654525757, 0.010092276148498058, 0.011723402887582779, -0.009512319229543209, 0.020029205828905106, 0.04879918321967125, 0.03904348984360695, -0.0051963054575026035, -0.019490676000714302, 0.010599737986922264, 0.0034538472536951303, 0.01824791170656681, -0.02719580940902233, 0.025663068518042564, -0.0075601451098918915, -0.03183545917272568, 0.020868072286248207, 0.059072695672512054, 0.012355141341686249, 0.011164159514009953, -0.0235296580940485, -0.007487650495022535, -0.024606719613075256, 0.00851810909807682, -0.01738833449780941, 0.020402034744620323], [-0.012276588939130306, -0.030830394476652145, -0.01571362279355526, 0.02941030263900757, -0.04795381799340248, 0.034596726298332214, -0.0039567044004797935, 0.030809814110398293, 0.018420029431581497, 0.018224509432911873, 0.008644036017358303, -0.005122106056660414, 0.002076112199574709, -0.0020889753941446543, -0.017288072034716606, -0.026158498600125313, -0.0013236179947853088, 0.019819539040327072, -0.07092225551605225, 0.019675472751259804, 0.01796724647283554, 0.022268682718276978, 0.01370697095990181, 0.007409173529595137, 0.01178264431655407, -0.047254063189029694, 0.001431668410077691, -0.016886740922927856, 0.020004769787192345, -0.06157846748828888, -0.0328679196536541, -0.023544708266854286, 0.036284368485212326, -0.032909080386161804, -0.013923072256147861, 0.015940014272928238, -0.010856498032808304, -0.057050637900829315, -0.0204472616314888, -0.01836857572197914, 0.0029945410788059235, -0.008988768793642521, 0.03439091518521309, 0.03823956847190857, -0.0073731569573283195, 0.04527828469872475, -0.03278559446334839, -0.017843760550022125, -0.02381226047873497, -0.006565351039171219, -0.004062182269990444, 0.03048051707446575, -0.013398256152868271, 0.06536537408828735, -0.012348623014986515, 0.05618623271584511, 0.01286314893513918, 0.013285060413181782, 0.01560042705386877, -0.007054150570183992, -0.006338959559798241, 0.028175441548228264, 0.03461730480194092, -0.038671769201755524, -0.037478070706129074, -0.014561084099113941, -0.04692476615309715, 0.03336186334490776, -0.013130702078342438, -0.025541068986058235, 0.06363657116889954, -0.0034113069996237755, 0.017257200554013252, 0.036119721829891205, -0.03309430927038193, 0.046142686158418655, -0.029472045600414276, 0.01612524315714836, -0.023688774555921555, 0.028998682275414467, -0.027146389707922935, 0.00817581731826067, 0.010203049518167973, -0.020900044590234756, 0.017833469435572624, -0.023915166035294533, -0.04976494982838631, -0.009374663233757019, -0.007470916956663132, 0.001664491486735642, 0.04441387951374054, 0.003339273389428854, -0.03393813222646713, 0.037004705518484116, -0.0408739410340786, -0.03657250478863716, 0.004358034580945969, -0.03039819374680519, 0.003660852089524269, 0.00790311861783266, -0.009189433418214321, -0.004219112917780876, -0.021363116800785065, -0.024800151586532593, 0.013645227998495102, 0.01302779745310545, -0.004432640969753265, 0.001164114917628467, -0.000539609114639461, 0.008731505833566189, 0.04379644989967346, -0.03327953815460205, 0.0008451088797301054, -0.02011796459555626, -0.0066065131686627865, -0.01900658942759037, -0.025561649352312088, -0.07400941103696823, -0.03990663215517998, -0.021754156798124313, 0.03513183072209358, 0.015991466119885445, 0.007187927607446909, -0.07878421247005463, 0.02477956935763359, -0.014643408358097076, -0.006585932336747646, -0.04931216686964035, 0.0051195332780480385, -0.016423668712377548, 0.027681495994329453, 0.009246031753718853, 0.05153492093086243, 0.00487256096675992, -0.009652506560087204, 0.0007557100034318864, 0.007630419917404652, -0.03778678551316261, -0.04803614318370819, 0.034926023334264755, 0.023915166035294533, 0.07079876959323883, -0.002076112199574709, -0.023071343079209328, -0.05766806751489639, -0.02156892791390419, 0.013655519112944603, -0.05338721349835396, 0.0777551606297493, -0.04064755141735077, -0.013120411895215511, 0.06301914155483246, -0.0013454853324219584, 0.009565037675201893, -0.036675408482551575, -0.01773056387901306, 0.012636757455766201, -0.012894020415842533, -0.04404342174530029, -0.012986634857952595, -0.05894409120082855, 0.011803225614130497, 0.0013113979948684573, 0.019068332388997078, -0.005006337538361549, 0.016012048348784447, -0.0037534667644649744, 0.023585868999361992, -0.028813453391194344, 0.03381464630365372, 0.00849482323974371, 0.015857689082622528, -0.01355261355638504, -0.008397063240408897, -0.02846357598900795, 0.0024890191853046417, 0.0336499959230423, 0.04297320917248726, 0.015425488352775574, -0.03181828558444977, -0.003864089958369732, -0.0016194704221561551, 0.013840747997164726, 0.036531344056129456, -0.020467841997742653, -0.011566543020308018, 0.03305314853787422, 0.029286816716194153, -0.04387877136468887, 0.017895212396979332, 0.035317059606313705, 0.017607077956199646, 0.035317059606313705, -0.011926711536943913, 0.021064693108201027, -0.005448829848319292, 0.0016722093569114804, -0.003462759545072913, -0.009791429154574871, -0.02342122048139572, -0.017586497589945793, -0.05462207645177841, -0.040462322533130646, -0.028957519680261612, -0.012235427275300026, 0.011535671539604664, -0.019068332388997078, -0.01254414301365614, 0.03817782551050186, -0.052070025354623795, 0.06483027338981628, -0.06474794447422028, 0.008191253058612347, 0.025685135275125504, 0.016320763155817986, -0.0007190500036813319, 0.0016632050974294543, 0.049106355756521225, 0.017442429438233376, 0.019665181636810303, -0.016897032037377357, -0.022309845313429832, 0.009503294713795185, 0.0336705781519413, -0.034926023334264755, 0.026961158961057663, -0.0019243271090090275, -0.017637949436903, 0.00282474746927619, -0.06911112368106842, -0.034679047763347626, -0.0376632995903492, 0.026467215269804, -0.019222689792513847, 0.00274499598890543, 0.03807492181658745, 0.021507184952497482, 0.017370395362377167, -0.005484846420586109, -0.04544293135404587, 0.0236681941896677, 0.006441865116357803, 0.032826755195856094, 0.005526008550077677, -0.03037761151790619, -0.0320858396589756, 0.010419150814414024, -0.0034267427399754524, 0.047830332070589066, -0.016866160556674004, -0.008072911761701107, -0.03157131373882294, 0.05083516240119934, -0.06548886001110077, -0.028834033757448196, 0.03795143589377403, -0.0078053586184978485, -0.013562903739511967, -0.016886740922927856, -0.03463788703083992, -0.005459120497107506, 0.040359415113925934, -0.012348623014986515, -0.0640893504023552, -0.046307336539030075, 0.0002323406224604696, 0.016567735001444817, 0.02140427939593792, 0.0002390937734162435, 0.04023592919111252, -0.05017657205462456, 0.03990663215517998, 0.01431411225348711, -0.013686390593647957, -0.055280666798353195, 0.0641716793179512, 0.016156114637851715, 0.025685135275125504, -0.0021867353934794664, 0.007970007136464119, -0.010444876737892628, -0.008263287134468555, -0.017535043880343437, -0.00790311861783266, 0.038198407739400864, 0.006050825119018555, -0.006874066777527332, -0.03231222927570343, 0.0024813013151288033, 0.005340779200196266, 0.0276609156280756, -0.021589508280158043, 0.03144782781600952, -0.004057037178426981, -0.004278283100575209, -0.00013659056276082993, 0.04375528544187546, 0.014365565031766891, 0.005325343459844589, -0.0031488987151533365, 0.0008586152107454836, -0.011772354133427143, 0.05458091199398041, -0.028504738584160805, 0.0008682625484652817, 0.02036493644118309, -0.015662169083952904, -0.01211194135248661, -0.030912719666957855, -0.014890381135046482, 0.022412750869989395, -0.0026318002492189407, -0.0561450719833374, -0.020323775708675385, 0.014098010957241058, 0.004147079307585955, -0.013974525034427643, -0.015518102794885635, 0.015898851677775383, -0.0023706783540546894, -0.0012650906573981047, 0.01230746041983366, -0.005417958367615938, -0.0014651126693934202, -0.06643559038639069, -0.023050762712955475, -0.008582293055951595, -0.003740603569895029, 0.0006875353283248842, 0.03280617296695709, 0.008716069161891937, 0.04114149510860443, 0.04803614318370819, -0.02126021310687065, -0.00973483081907034, -0.03111852891743183, -0.005417958367615938, 0.003892388893291354, -0.008880717679858208, 0.008880717679858208, 0.03568752110004425, 0.01859496720135212, -0.001178907579742372, 0.012400075793266296, 0.02871054783463478, 0.035481709986925125, -0.01699993759393692, -0.0034756227396428585, 0.016783837229013443, 0.05886176973581314, 0.02461492083966732, 0.030089477077126503, 0.027455104514956474, -0.013079249300062656, -0.014859509654343128, -0.05297559127211571, -0.007908264175057411, -0.0011062307748943567, 0.006071406416594982, -0.00470791244879365, -0.007018133997917175, -0.01972692459821701, -0.023277154192328453, 0.06808207184076309, 0.02453259751200676, 0.005541444290429354, -0.048241954296827316, -0.03778678551316261, -0.03402045741677284, -0.021363116800785065, -0.0236681941896677, -0.04906519502401352, -0.013768714852631092, 0.01226629875600338, 0.019016878679394722, 0.03424684703350067, 0.043179016560316086, 0.002629227703437209, 0.03863060846924782, 0.005006337538361549, 0.04947681725025177, -0.00392583291977644, 0.019284432753920555, -0.046471983194351196, 0.0360991396009922, 0.01867729239165783, -0.07899002730846405, -0.030130639672279358, -0.03229164704680443, 0.034349750727415085, -0.0011023718398064375, -0.051040973514318466, 0.001194343320094049, -0.026179080829024315, -0.044208068400621414, 0.0035090669989585876, -0.03583158552646637, 0.04114149510860443, 0.020087093114852905, 0.05635088309645653, -0.04499014839529991, -0.029863085597753525, -0.02436794899404049, 0.018872812390327454, 0.021136725321412086, 0.024491434916853905, -0.01527113001793623, 0.013953943736851215, 0.018481772392988205, 0.002428562380373478, 0.045813389122486115, -0.011093179695308208, 0.004805672448128462, 0.010928531177341938, 0.00771788926795125, 0.030254125595092773, 0.00033830080064944923, 0.006194892339408398, -0.01716458611190319, -0.030727488920092583, 0.007172491867095232, -0.010470602661371231, -0.03881583735346794, -0.010640396736562252, -0.030974462628364563, -0.0094158248975873, 0.057915039360523224, 0.04210880398750305, -0.007882537320256233, 0.028957519680261612, 0.01796724647283554, 0.008963041938841343, -0.010774173773825169, 0.032847337424755096, -0.01915065571665764, -0.00486741540953517, -0.029389722272753716, 0.010938821360468864, -0.039741985499858856, 0.07569705694913864, 0.00060907012084499, 0.0017648240318521857, -0.0320446752011776, -0.023215411230921745, -0.12151044607162476, 0.018708163872361183, -0.052399322390556335, 0.014375855214893818, 0.02694057859480381, 0.0015448641497641802, -0.005459120497107506, -0.005469410680234432, -0.041738346219062805, -0.004373470786958933, 0.0031669072341173887, -0.022906694561243057, 0.029245655983686447, 0.009997239336371422, 0.019377047196030617, 0.014170045033097267, 0.015682751312851906, -0.004916295409202576, -0.002770722145214677, 0.03889816254377365, 0.03786911070346832, -0.03784852847456932, 0.04840660095214844, 0.04564874246716499, 0.025232352316379547, -0.013820166699588299, -0.019099203869700432, -0.008072911761701107, 0.01835828647017479, 0.017216037958860397, -0.029245655983686447, 0.000757639470975846, 0.020889753475785255, -0.02165125124156475, 0.004983183927834034, 0.003030557883903384, -0.03305314853787422, 0.0027115517295897007, -0.037972014397382736, -0.05923222750425339, 0.004095626529306173, 0.011103469878435135, 0.046471983194351196, 0.013264479115605354, 0.024388529360294342, -0.05914990231394768, 0.02566455490887165, 0.00677630677819252, 0.004141933750361204, -0.005798707250505686, 0.03175654262304306, -0.002472297288477421, 0.022989019751548767, -0.003542511258274317, 0.0561450719833374, -0.017761435359716415, -0.0561039112508297, 0.03702528774738312, 0.012821986339986324, 0.06948158144950867, 0.03132433816790581, 0.005978791508823633, 0.0006396200624294579, 0.02091033384203911, -0.014622827991843224, 0.0633072704076767, 0.00829415861517191, -0.005371651146560907, -0.023071343079209328, -0.013408546335995197, -0.038774676620960236, -0.05458091199398041, -0.02799021266400814, -0.0071158939972519875, -0.006488172337412834, -0.008227270096540451, -0.004589571617543697, 0.018708163872361183, -0.004435213748365641, -0.012225136160850525, 0.02268030308187008, 0.04507247358560562, 0.021054401993751526, -0.009132836014032364, -0.012976344674825668, -0.010012675076723099, -0.01861554943025112, -0.015075610019266605, -0.023318316787481308, -0.01211194135248661, 0.01254414301365614, -0.008721214719116688, -0.008993913419544697, 0.040997426956892014, -0.021527765318751335, -0.010233920998871326, 0.005024346057325602, 0.005173558369278908, -0.009009349159896374, -0.05540415272116661, 0.013943653553724289, -0.008649181574583054, -0.026405472308397293, -0.009698813781142235, 0.006982116959989071, -0.0033958712592720985, 0.01463311817497015, -0.00283503788523376, 0.05042354390025139, -0.02430620603263378, 0.05235816165804863, 0.012369204312562943, 0.016331054270267487, -0.0449078269302845, 0.011607705615460873, -0.02494421787559986, -0.007609838619828224, -0.005947920028120279, -0.022001130506396294, -0.035646356642246246, 0.006544770207256079, 0.03968024253845215, -0.027064064517617226, -0.002901926403865218, 0.012091360054910183, 0.026487795636057854, 0.025129446759819984, 0.0208485908806324, 0.01560042705386877, 0.012122231535613537, -0.004579280968755484, 0.02228926494717598, -0.00243628048337996, -0.015147644095122814, 0.01478747557848692, 0.012688210234045982, 0.006385267246514559, -0.0320652574300766, -0.04828311502933502, 0.030933300033211708, -0.016228148713707924, 0.011607705615460873, -0.017432138323783875, -0.01114463247358799, -0.017668820917606354, 0.026673024520277977, -0.004887996707111597, 0.020262032747268677, -0.008155236020684242, 0.01414946373552084, 0.0068792118690907955, 0.02004593051970005, 0.003130890429019928, 0.019222689792513847, 0.0010232634376734495, 0.0023115079384297132, 0.032991405576467514, 0.009374663233757019, 0.0054076677188277245, 0.033794064074754715, -0.015219677239656448, -0.017174875363707542, -0.021280793473124504, 0.008834410458803177, 0.007604693528264761, -0.027043484151363373, 0.03190061077475548, 0.005819288548082113, -0.007085022516548634, 0.02126021310687065, 0.009657652117311954, 0.024964800104498863, -0.048159629106521606, -0.013429127633571625, -0.024758988991379738, 0.014756604097783566, -0.03504950925707817, 0.009487858973443508, -7.647543498023879e-06, -0.0021031247451901436, -0.006241200026124716, 0.02101323939859867, -0.023277154192328453, 0.01812160387635231, -0.022824371233582497, -0.04105916991829872, -0.02309192530810833, -0.018944846466183662, -0.036675408482551575, -0.04844776540994644, 0.010326535440981388, -0.0010393423726782203, -0.03745748847723007, 0.005163267720490694, -0.02109556458890438, 0.004368325229734182, -0.008916734717786312, 0.028093116357922554, -0.020406099036335945, -0.02934855967760086, 0.0033367008436471224, -0.037169355899095535, -0.007337139919400215, -0.01827596127986908, 0.0014741168124601245, 0.0037380310241132975, 0.0013879337348043919, 0.029245655983686447, -0.0007010416011326015, -0.028196021914482117, 0.0012400075793266296, -0.010486039333045483, -0.01698964647948742, 0.006616803817451, 0.04770684614777565, 0.00014712226402480155, -0.0059530651196837425, 0.02871054783463478, 0.02572629787027836, 0.0023989772889763117, 0.007542950566858053, 0.04192357510328293, 0.022433331236243248, -0.022721465677022934, 0.031715378165245056, 0.0048982868902385235, 0.004267992917448282, -0.015240258537232876, 0.020972078666090965, -0.04857125133275986, 0.012256008572876453, -0.010007529519498348, 0.025129446759819984, -0.0058244336396455765, -0.03241513669490814, -0.011844387277960777, -0.004790236707776785, -0.032271068543195724, -0.00849996879696846, -0.011165212839841843, -0.0018934555118903518, -0.007187927607446909, 0.0384865403175354, -0.030974462628364563, -0.0033649997785687447, 0.011525381356477737, -0.026426052674651146, -0.011967873200774193, 0.021116144955158234, -0.008278722874820232, 0.007121039088815451, 0.006395557429641485, -0.0011924138525500894, 0.012770534493029118, 0.007687017787247896, 0.00446865800768137, 0.027558010071516037, 0.01334680337458849, 0.05198770388960838, -0.06050825119018555, -0.00962163507938385, -0.018492063507437706, -0.009842881001532078, 0.03762213885784149, -0.006302942987531424, 0.021466022357344627, -0.04383761063218117, 0.0043863337486982346, -0.01668093167245388, 0.0055208634585142136, -0.014869799837470055, 0.015662169083952904, 0.002284495159983635, 0.036037396639585495, -0.02309192530810833, -0.00395155930891633, -0.04153253510594368, 0.014499341137707233, -0.023318316787481308, -0.028442993760108948, 0.030912719666957855, 0.008278722874820232, 0.007121039088815451, 0.005078371148556471, -0.009029930457472801, -0.04231461510062218, -0.021383699029684067, -0.03661366552114487, -0.011762063018977642, 0.027125807479023933, -0.014766895212233067, 0.0013101117219775915, -0.0046384516172111034, 0.009009349159896374, -0.040935683995485306, -0.04676011949777603, 0.012142812833189964, -0.031715378165245056, 0.012492690235376358, -0.019932735711336136, -0.031056785956025124, 0.006868921685963869, -0.004126498010009527, 0.019058041274547577, -0.010712429881095886, 0.0004801170143764466, 0.023050762712955475, 0.003635125933215022, -0.04906519502401352, -0.030336450785398483, -0.009750266559422016, -0.03255920112133026, -0.012245717458426952, -0.02428562566637993, -0.02502654306590557, 0.03970082104206085, 0.008669761940836906, -0.01820392906665802, 0.018780197948217392, -0.007584112696349621, -0.012163393199443817, -0.04186183214187622, 0.007625274825841188, -0.012821986339986324, -0.02100295014679432, -0.00785166583955288, -0.016176695004105568, -0.010403715074062347, -0.010439731180667877, 0.01949024386703968, 0.043261341750621796, 0.020251741632819176, -0.031468406319618225, 0.00457413587719202, 0.034740790724754333, 0.008721214719116688, 0.001575735746882856, -0.022001130506396294, -0.009441550821065903, 0.012554433196783066, -0.0013789295917376876, 0.025211771950125694, 0.01178264431655407, 0.004795381799340248, -0.0154357785359025, 0.046389658004045486, 0.01802898943424225, -0.02702290378510952, 0.013912782073020935, -0.014643408358097076, 0.05779155343770981, 0.04050348326563835, -0.00369686889462173, -0.018625838682055473, -0.02309192530810833, -0.019181527197360992, -0.002863336820155382, -0.02348296530544758, 0.019202109426259995, -0.014530212618410587, 0.016382506117224693, 0.007028424646705389, -0.006055970676243305, 0.010887369513511658, -0.006215473636984825, -0.02525293454527855, -0.029780762270092964, 0.01885223016142845, 0.03297082334756851, -0.0020773985888808966, -0.031386084854602814, 0.01724690943956375, 0.004406914580613375, -0.01946966163814068, 0.012039907276630402, 0.00256619811989367, 0.03640785813331604, -0.010280228219926357, 0.022227521985769272, -0.02718755044043064, 0.04048290103673935, 0.0002331445721210912, -0.01419062539935112, 0.010949112474918365, -0.0069152289070189, -0.019531404599547386, 0.0035039216745644808, -0.024491434916853905, -0.05943803861737251, -0.012873439118266106, 0.02757859043776989, -0.0006701700622215867, -0.006920373998582363, 0.014890381135046482, -0.044208068400621414, -0.004136788658797741, 0.010856498032808304, 0.023688774555921555, -0.02259797975420952, -0.03144782781600952, 0.025211771950125694, -0.00897847767919302, -0.021527765318751335, 0.02790788747370243, -0.025232352316379547, 2.8861690225312486e-05, 0.044784337282180786, -0.01899629831314087, -0.02525293454527855, 0.025458743795752525, 0.0034010165836662054, -0.02198054827749729, 0.009884043596684933, -0.025314677506685257, -0.004147079307585955, -0.013058668933808804, -0.04163543879985809, 0.004944594576954842, 0.00629265233874321, -0.010558072477579117, 0.017421849071979523, -0.021023530513048172, 0.00027189479442313313, -0.02782556414604187, -0.017514463514089584, -0.03399987518787384, -0.023832842707633972, 0.038033757358789444, -0.006997553166002035, 0.011422475799918175, -0.027928467839956284, -0.010969692841172218, -0.003241513390094042, 0.03257978335022926, 0.0017236619023606181, 0.02403865195810795, 0.004280855879187584, -0.021383699029684067, -0.011309280060231686, 0.057462260127067566, -0.020714815706014633, 0.005299617536365986, -0.011196084320545197, 0.009153416380286217, 0.0030202672351151705, 0.010609525255858898, 0.035811007022857666, -0.0005933127249591053, 0.007831084541976452, -0.03597565367817879, -0.03918629512190819, 3.4328528272453696e-05, -0.019696053117513657, 0.04770684614777565, 0.009163707494735718, 0.014128882437944412, -0.015374035574495792, 0.0013853610726073384, -0.04844776540994644, 0.0057575455866754055, 0.01803928054869175, 0.027866724878549576, -0.024635503068566322, 0.031715378165245056, 0.0012258581118658185, 0.018080441281199455, -0.049271006137132645, -0.0050912341102957726, 0.018420029431581497, 0.021342536434531212, 0.014139173552393913, 0.015415197238326073, -0.027763821184635162, 0.01570333167910576, 0.041429631412029266, 0.014283240772783756, 0.03817782551050186, 0.038445379585027695, -0.028895776718854904, 0.028340090066194534, 0.05021773278713226, -0.0014252369292080402, 0.030048316344618797, 0.014417016878724098, -0.007733325008302927, -0.05219351127743721, -0.03992721438407898, 0.012986634857952595, -0.039639078080654144, 0.0280725359916687, 0.014808056876063347, -0.00048076017992570996, -0.015816528350114822, -0.012698500417172909, 0.028360670432448387, -0.026323147118091583, 0.015497521497309208, -0.06347192078828812, -0.026817092671990395, -0.039165716618299484, 0.03247687965631485, -0.025232352316379547, -0.002809311728924513, -0.038610026240348816, 0.02652895823121071, 0.005700947716832161, 0.02716697007417679, -0.01279111485928297, 0.05651552975177765, 0.022474493831396103, -0.020313484594225883, -0.045895714312791824, 0.04354947805404663, 0.017123423516750336, 0.02261856012046337, -0.016012048348784447, 0.006786597426980734, 0.012050197459757328, 0.017020517960190773, 0.0003254376642871648, 0.006236054468899965, 0.007728179916739464, -0.016166405752301216, 0.042602747678756714, -0.019140364602208138, -0.0046230158768594265, -0.03159189224243164, -0.0400712825357914, 0.016310472041368484, 0.0012361486442387104, -0.00068882160121575, 0.003359854454174638, -0.01302779745310545, 0.004996046889573336, 0.03863060846924782, -0.01463311817497015, -0.017576206475496292, -0.0022947858087718487, -0.017617369070649147, 0.028422413393855095, -0.019212398678064346, 0.03397929295897484, 0.0029199346899986267, -0.037725042551755905, -0.005875886417925358, -0.029842505231499672, 0.020807430148124695, 0.019459372386336327, 0.0015590136172249913, 0.003761184634640813, 0.031077368184924126, 0.002100552199408412, -0.019541695713996887, 0.0005235301796346903, 0.021198470145463943, 0.001838143914937973, -0.011165212839841843, 0.05268745869398117, 0.022556817159056664, 0.046060364693403244, -0.0060302442871034145, 0.00016738171689212322, 0.014159753918647766, 0.005448829848319292, -0.03472021222114563, 0.0039695678278803825, 0.021836481988430023, -0.00679688761010766, 0.011000565253198147, 0.033403024077415466, -0.0320446752011776, -0.02749626711010933, -0.0036299806088209152, -0.026035012677311897, -0.06676489114761353, -0.0008849846199154854, 0.020087093114852905, 0.015168225392699242, 0.029492627829313278, 0.049353327602148056, 0.015538684092462063, -0.018142184242606163, 0.007208508439362049, 0.01286314893513918, 0.07643797248601913, -0.012626467272639275, 0.03961849957704544, -0.019510824233293533, 0.0392892025411129, 0.026158498600125313, 0.0022561962250620127, 0.02403865195810795, -0.03725167736411095, 0.029327979311347008, -0.006524188909679651, 0.001897314446978271, 0.018872812390327454, -0.02165125124156475, -0.0008933456847444177, 0.05404580757021904, -0.012286880053579807, -0.002537899184972048, -0.00262536876834929, 0.01210165023803711, -0.032929662615060806, 0.0011924138525500894, 0.04383761063218117, -0.015929723158478737, -0.02910158783197403, 0.03795143589377403, -0.014118592254817486, 0.00597364641726017, 0.009251176379621029, -0.024635503068566322, -0.00583472428843379, -0.0001767075009411201, 0.021939385682344437, 0.005567170679569244, 0.0018844512524083257, -0.012739663012325764, 0.012173684313893318, 0.0002728595572989434, -0.009384953416883945, 0.08800452202558517, -0.016866160556674004, 0.03541996702551842, -0.003635125933215022, -0.007429754827171564, 0.030645165592432022, -0.006760871037840843, -0.01135044265538454, 0.05429277941584587, -0.007141620386391878, 0.007239379920065403, -0.020334064960479736, -0.01852293498814106, -0.045031312853097916, -0.0040647550486028194, -0.023112505674362183, 0.02036493644118309, -0.0008431794121861458, -0.013861329294741154, 0.022721465677022934, -0.012533851899206638, 0.0022111753933131695, 0.03212700039148331, -0.026981741189956665, 0.015826817601919174, 0.022001130506396294, -0.02317424863576889, 0.0026729623787105083, 0.0416766032576561, 0.0088189747184515, 0.025294095277786255, 0.01707197166979313, -0.031139111146330833, 0.014056849293410778, 0.01070213969796896, 0.0012361486442387104, 0.012667628936469555, -0.006035389378666878, -0.0030948736239224672, -0.0007447763346135616, -0.014993286691606045, 0.010835916735231876, 0.022145196795463562, 0.013768714852631092, -0.018862521275877953, -0.0033907259348779917, -0.011916421353816986, -0.015940014272928238, 0.010856498032808304, -0.035564035177230835, -0.014499341137707233, -0.033629417419433594, -0.0132233165204525, -0.006565351039171219, -0.01355261355638504, 0.012029617093503475, -0.0008689056849107146, 0.016711803153157234, -0.010254502296447754, -0.004075045697391033, 0.003421597648411989, -0.013562903739511967, -0.023709356784820557, 0.015168225392699242, 0.018070152029395103, 0.024018071591854095, -0.05001192167401314, -0.019603438675403595, 0.01773056387901306, 0.010084708221256733, -0.02525293454527855, -0.012276588939130306, -0.03937152400612831, 0.01351145189255476, 0.025397000834345818, -0.019747506827116013, 0.049188680946826935, 0.014159753918647766, -0.02059132792055607, 0.03887758031487465, 0.05322256311774254, 0.004576708190143108, 0.032518040388822556, 0.018944846466183662, 0.01611495204269886, -0.03912455216050148, -0.007568676955997944, 0.05075284093618393, -0.011587124317884445, -0.045813389122486115, -0.0049909017980098724, -0.0032337955199182034, -0.0017995545640587807, -0.030583422631025314, -0.04313785582780838, 0.005937629379332066, 0.006627094466239214, -0.01586798019707203, 0.014777185395359993, -0.0036942963488399982, 0.0043220180086791515, -0.001238721190020442, -0.001782832434400916, 0.009647361934185028, -0.03338244557380676, -0.016547154635190964, -0.014334692619740963, 0.030850976705551147, 0.03169479966163635, -0.005546589847654104, 0.01860525831580162, 0.01054778229445219, -0.01755562610924244, -0.017349814996123314, 0.024182720109820366, -0.018965426832437515, -0.03441149741411209, 0.010305955074727535, -0.002302503678947687, -0.020632490515708923, 0.030439354479312897, 0.014880090951919556, -0.003864089958369732, -0.0005354285822249949, 0.031159691512584686, 0.04289088398218155, -0.014550793915987015, -0.02436794899404049, 0.009873753413558006, 0.00597364641726017, 0.046142686158418655, 0.034761372953653336, -0.001124239177443087, 0.013202736154198647, 0.013933362439274788, -0.014293530955910683, -0.01834799535572529, -0.010835916735231876, 0.05289326608181, -0.024018071591854095, 0.037334002554416656, 0.011000565253198147, 0.01515793427824974, 0.0027964485343545675, 0.0037431763485074043, 0.03140666335821152, 0.014972705394029617, -0.007465771399438381, -0.011237246915698051, 0.0015693041495978832, -0.008782957680523396, -0.03225048631429672, 0.011000565253198147, -0.009318064898252487, 0.020992659032344818, 0.0007910836720839143, 0.04527828469872475, 0.02726987563073635, -0.0204369705170393, 0.028731130063533783, 0.028587061911821365, -0.018080441281199455, 0.008963041938841343, 0.007692162878811359, -0.038280729204416275, -0.006657965946942568, -0.015322582796216011, -0.013645227998495102, -0.01595030538737774, -0.0011969159822911024, 0.0071158939972519875, -0.005546589847654104, 0.002477442380040884, 0.007404028438031673, 0.04200590029358864, -0.012986634857952595, -0.016639769077301025, 0.022412750869989395, 0.007651000749319792, -0.009050511755049229, 0.001902459654957056, -0.007486352697014809, -0.03782794624567032, 0.0059016128070652485, 0.020714815706014633, 0.00627207150682807, -0.03552287071943283, -0.012533851899206638, 0.04112091287970543, 0.019685762003064156, 0.00017059751553460956, -0.0030691472347825766, 0.007990588434040546, 0.011885549873113632, -0.02165125124156475, 0.0015525820199400187, -0.011926711536943913, 0.014098010957241058, -0.05025889351963997, -0.0006479811272583902, -0.01747330091893673, 0.01419062539935112, -0.0200356412678957, -0.008798393420875072, 0.005214720498770475, -0.02420330047607422, 0.020663361996412277, 0.03054226003587246, -0.016423668712377548, -0.008278722874820232, 0.03599623590707779, 0.012873439118266106, 0.015363744460046291, -0.018646420910954475, 0.036840058863162994, -0.035070087760686874, -0.044866662472486496, 0.0022021711338311434, -0.013676099479198456, 0.006853485479950905, 0.03214758262038231, -0.027516847476363182, -0.01683528907597065, -0.03132433816790581, -0.03342360630631447, -0.03478195518255234, -0.027475686743855476, 0.014458179473876953, -0.035399384796619415, 0.05149375647306442, -0.009204869158565998, 0.018317123875021935, -0.043096695095300674, 0.010110435076057911, 0.03142724558711052, 0.01699993759393692, -0.0138304578140378, 0.019191818311810493, -0.020344356074929237, -0.016228148713707924, -0.034102778881788254, -0.008397063240408897, -0.004275710787624121, 0.012821986339986324, 0.013809876516461372, -0.0312831774353981, 0.02469724602997303, -0.003933550789952278, 0.05346953868865967, 0.018584677949547768, 0.007815648801624775, -0.01813189499080181, 0.023606451228260994, 0.00017284856585320085, -0.042685072869062424, -0.021116144955158234, -0.011525381356477737, 0.019521115347743034, 0.01419062539935112, 0.057215284556150436, 0.03809550032019615, -0.00204266794025898, -0.03169479966163635, 0.016176695004105568, 0.0049600303173065186, 0.010774173773825169, 0.05919106677174568, 0.0028118842747062445, -0.04853008687496185, 0.00196291645988822, 0.031139111146330833, 0.013480579480528831, 0.02109556458890438, 0.04857125133275986, -0.006817468907684088, 0.013655519112944603, 0.013099830597639084, 0.0012747379951179028, 0.016804417595267296, -0.025541068986058235, -0.005152977537363768, 0.013748133555054665, -0.012328041717410088, 0.0003135392616968602, 0.0007801500032655895, -0.00024890192435123026, 0.00029102872940711677, -0.020951496437191963, -0.023771099746227264, -0.03247687965631485, 0.0018664428498595953, -0.01463311817497015, 0.01338796503841877, 0.00739373778924346, 0.04297320917248726, -0.024512017145752907, -0.018317123875021935, -0.007949425838887691, 0.022227521985769272, 0.012677919119596481, -0.04474317654967308, 0.015754785388708115, 0.014118592254817486, -0.019922444596886635, -0.02887519635260105, -0.010959402658045292, -0.0020478132646530867, 0.01435527391731739, -0.02862822450697422, 0.012770534493029118, -0.012647047638893127, 0.009482713416218758, -0.005315053276717663, -0.017689403146505356, -0.001892169238999486, -0.018255380913615227, -0.04214996472001076, -0.02726987563073635, -0.00805747602134943, 0.03496718406677246, -0.011093179695308208, 0.00548999197781086, 0.02060161903500557, 0.02123963087797165, 0.02123963087797165, -0.008237560279667377, -0.026590701192617416, -0.011720901355147362, -0.006565351039171219, -0.014571375213563442, -0.01885223016142845, 0.01334680337458849, -0.03301198408007622, -0.014571375213563442, -0.03202409669756889, -0.006652820389717817, 0.017596786841750145, 0.01053749118000269, 0.007085022516548634, -0.005284181330353022, -0.01747330091893673, -0.02268030308187008, 0.03694296255707741, 0.009559892117977142, 0.03737516701221466, -0.008906444534659386, -0.026343729346990585, -0.004412060137838125, -0.0047387839294970036, -0.01611495204269886, 0.0033084019087255, 0.014869799837470055, 0.004543263930827379, -0.04853008687496185, -0.038136664777994156, 0.04507247358560562, 0.011720901355147362, 0.002793875988572836, -0.01174148265272379, -0.01619727723300457, -0.004507247358560562, -0.01050147507339716, -0.0029610968194901943, -0.019068332388997078, -0.01058894395828247, -0.018872812390327454, -0.0016516282921656966, 0.0038666625041514635, -0.02284495159983635, 0.014869799837470055, -0.040133025497198105, 0.0046101524494588375, -0.01182380598038435, 0.016248729079961777, -0.011617995798587799, -0.0034113069996237755, 0.020951496437191963, -0.021424859762191772, -0.023956328630447388, -0.006657965946942568, 0.00978628359735012, 0.020138544961810112, -0.0008811256848275661, 0.01539461687207222, -0.016156114637851715, 0.018667001277208328, -0.008314738981425762, 0.03373232111334801, -0.019263852387666702, -0.026426052674651146, 0.007177636958658695, -0.0006450869259424508, -0.003264667233452201, -0.025705715641379356, 0.038363054394721985, 0.0014406726695597172, 0.0041650873608887196, -0.011422475799918175, 0.016742674633860588, -0.0033032565843313932, -0.017504172399640083, -0.014324402436614037, -0.031880028545856476, -0.02510886639356613, 0.12076953053474426, -0.00845366157591343, 0.0018355713691562414, 0.0013017506571486592, 0.017771726474165916, 0.008988768793642521, -0.010094999335706234, 0.0012355054495856166, 0.0053922319784760475, 0.02743452414870262, 0.04387877136468887, -0.022062873467803, -0.025232352316379547, 0.028010793030261993, -0.010671268217265606, -0.004661605227738619, -0.025438163429498672, 0.02309192530810833, -0.017504172399640083, -0.039412688463926315, 0.018409738317131996, -0.012564723379909992, 0.004646169487386942, 0.0037560395430773497, 0.039083391427993774, -0.027702076360583305, -0.05956152454018593, -0.003915542270988226, 0.010367698036134243, -0.005860450677573681, -0.05116445943713188, -0.03439091518521309, -0.024594340473413467, 0.022968439385294914, 0.016259020194411278, 0.017782017588615417, 0.017998117953538895, 0.009487858973443508, -0.008757231757044792, 0.0068946476094424725, 0.004741356708109379, 0.005700947716832161, -0.023915166035294533, -0.004316872917115688, 0.013768714852631092, -6.057739301468246e-05, 0.02492363750934601, 0.01730865240097046, -0.023997491225600243, 0.012256008572876453, 0.010295663960278034, -0.057050637900829315, 0.0009480140870437026, -0.0015294284094125032, 0.01215310301631689, -0.030501099303364754, 0.0009917487623170018, -0.0051118154078722, 0.011587124317884445, -0.0236476119607687, 0.013881910592317581, -0.00957532785832882, 0.06289565563201904, 0.011134341359138489, 0.019449081271886826], [0.01663811132311821, 0.02927117608487606, 0.048335202038288116, 0.007895665243268013, -0.04570331424474716, -0.0207919180393219, 0.004943372681736946, -0.003804794978350401, 0.030438359826803207, 0.03574790805578232, -0.024854179471731186, 0.01787395402789116, 0.001896676025353372, -0.04213310033082962, -0.032383669167757034, 0.027417410165071487, 0.006076229270547628, 0.025517873466014862, -0.012896252796053886, -0.003407150972634554, 0.03984450176358223, 0.036640461534261703, -0.009537734091281891, 0.03432897850871086, -0.040004704147577286, -0.0033613790292292833, 0.025105925276875496, 0.030186614021658897, 0.016249049454927444, -0.03904348984360695, 0.04256793111562729, -0.020105337724089622, 0.038654427975416183, -0.0028507355600595474, 0.039432551711797714, 0.03602254018187523, -0.02083768881857395, -0.01976204849779606, 0.028859227895736694, -0.011219854466617107, -0.08270995318889618, 0.024053171277046204, -0.031903062015771866, -0.023641223087906837, -0.03657180443406105, 0.06371458619832993, 0.023343704640865326, -0.004734538029879332, -0.02066604420542717, 0.05575026199221611, 0.004843246657401323, -0.0035273025278002024, -0.0005825198604725301, 0.04055396467447281, 0.060876719653606415, 0.029431376606225967, -0.012072357349097729, 0.001261589932255447, -0.006139165721833706, -0.03812805190682411, -0.03451206535100937, 0.010247199796140194, -0.02247403748333454, 0.016603782773017883, -0.013720148243010044, -0.011568865738809109, 0.005000588018447161, 0.038677316159009933, -0.04533713683485985, 0.01054471731185913, 0.028081104159355164, 0.01623760722577572, -0.05172232538461685, -0.035450391471385956, -0.013846021145582199, 0.028699025511741638, 0.025838278234004974, 0.01040740218013525, 0.04513116180896759, 0.01862919144332409, 0.0030896079260855913, 0.004514260683208704, -0.00030109373619779944, 0.03526730462908745, -0.017885398119688034, 0.028630368411540985, -0.018846608698368073, 0.023870082572102547, -0.013216656632721424, -0.023000415414571762, 0.005192257929593325, -0.010641982778906822, -0.005192257929593325, 0.07277743518352509, 0.02746318280696869, 0.006322253495454788, 0.03254387155175209, -0.039707183837890625, -0.05012030899524689, 0.08229800313711166, 0.044764988124370575, 0.015459483489394188, -0.0040136296302080154, 0.030369702726602554, 0.008238954469561577, -0.10884574800729752, -0.05346166342496872, 0.04009624570608139, 1.5197724678728264e-05, -0.022817326709628105, -0.03384837135672569, 0.010453173890709877, -0.024899952113628387, 0.06829178333282471, -0.027623385190963745, -0.014807232655584812, 0.0058759767562150955, -0.016374923288822174, 0.03876885771751404, -0.01184349786490202, 0.02026554010808468, 0.012884809635579586, 0.013640047051012516, -0.09602959454059601, -0.006980225443840027, 0.01676398515701294, -0.037807647138834, 0.016397807747125626, -0.019945135340094566, -0.025861162692308426, 0.009148672223091125, -0.045039620250463486, 0.043506257236003876, -0.04059973731637001, -0.021146651357412338, -0.06485888361930847, 0.02570096217095852, -0.0023343705106526613, -0.02977466769516468, -0.03400857374072075, 0.018057042732834816, -0.03625139966607094, 0.029202517122030258, -0.016981400549411774, -0.06838332116603851, 0.004711652174592018, 0.015951531007885933, 0.073189377784729, 0.0026433314196765423, -0.026044251397252083, -0.03307024762034416, 0.038723088800907135, -0.019922250881791115, 0.012060914188623428, 0.008238954469561577, 0.03169709071516991, -0.00523516908288002, 0.04620680585503578, -0.022496923804283142, 0.010086998343467712, -0.04362068697810173, -0.04709935933351517, 0.01577988639473915, -0.014818675816059113, 0.06485888361930847, -0.009360368363559246, -0.04435303807258606, 0.014532600529491901, -0.03178863227367401, -0.05474327504634857, -0.04510827735066414, -0.0020168274641036987, -0.043780889362096786, -0.017130160704255104, -0.02257702499628067, -0.01766798086464405, 0.010012618266046047, -0.022439708933234215, 0.012472862377762794, -0.054377101361751556, 0.003922085743397474, -0.009617835283279419, -0.049021780490875244, -0.03355085477232933, -0.011059652082622051, 0.01953318901360035, 0.004594361409544945, 0.019567517563700676, -0.039226580411195755, -0.011076817288994789, 0.03396280109882355, 0.028538823127746582, 0.010807906277477741, 0.019475974142551422, -0.014132095500826836, -0.005904584191739559, -0.039707183837890625, -0.013056454248726368, -0.0003179006453137845, 0.012335546314716339, 0.0479690246284008, -0.03840268403291702, 0.018366003409028053, 0.016214720904827118, -0.03430609032511711, -0.04517693445086479, 0.03577079623937607, 0.023526793345808983, 0.050852660089731216, 0.004027933347970247, -0.009343203157186508, -0.023572564125061035, -0.05579603090882301, 0.027417410165071487, -0.02798956073820591, 0.01299923937767744, 0.04192712530493736, 0.020379969850182533, -0.04055396467447281, 0.012106685899198055, 0.013010682538151741, -0.0013130834558978677, 0.01711871661245823, 0.001506183878518641, -0.026662172749638557, -0.013491288758814335, -0.02293175645172596, -0.021901888772845268, -0.0040136296302080154, -0.05680301412940025, -0.032131925225257874, 0.03751013055443764, -0.0006930162198841572, -0.028653252869844437, 0.01774808205664158, 0.011156917549669743, -0.010939501225948334, -0.027714928612113, 0.018606306985020638, 0.01762220822274685, 0.00846781488507986, 0.03249809890985489, -0.022210849449038506, -0.024396460503339767, -0.004259653855115175, -0.006139165721833706, -0.02293175645172596, -0.0006114849238656461, 0.04842674359679222, 0.013811692595481873, 0.004634412005543709, -0.02169591374695301, 0.03158266097307205, -0.006413797382265329, 0.04355202987790108, 0.003192594973370433, 0.004860410932451487, -0.01092233695089817, 0.03989027068018913, -0.013159441761672497, 0.016065962612628937, 0.014280854724347591, -0.010024061426520348, 0.03826536610722542, -0.07332669943571091, -0.016146061941981316, 0.06733056902885437, -0.0605105459690094, -0.021581484004855156, 0.008599408902227879, -0.034649383276700974, 0.0326811857521534, -0.004425577353686094, -0.028103990480303764, -0.025655189529061317, 0.03812805190682411, -0.014063438400626183, -0.026181567460298538, 0.004522842820733786, 0.0009640721254982054, -0.04256793111562729, -0.011517371982336044, 0.04215598478913307, -0.027714928612113, -0.008977027609944344, -0.016294822096824646, 0.02698257751762867, -0.016020189970731735, -0.011345727369189262, 0.058084629476070404, 0.04510827735066414, -0.006476733833551407, -0.011957927606999874, 0.021604370325803757, 0.03828825429081917, 0.0015004624146968126, -0.00869667436927557, 0.002008245326578617, 0.019235670566558838, 0.002807824406772852, -0.00893697701394558, 0.02295464277267456, 0.007786956615746021, 0.0403708778321743, -0.04362068697810173, 0.009434747509658337, 0.02446511760354042, 0.0302781593054533, -0.0069344537332654, -0.025174584239721298, -0.018560534343123436, 0.0020468654111027718, -0.028653252869844437, -0.011048209853470325, -0.047557078301906586, 0.004030794370919466, -0.04192712530493736, 0.010928058065474033, 0.03760167211294174, 0.025838278234004974, 0.008032981306314468, 0.01968194730579853, 0.023870082572102547, -0.018640635535120964, 0.02278299815952778, -0.013136555440723896, 0.01512763649225235, 0.029614465311169624, -0.03810516372323036, 0.019979465752840042, -0.02952292189002037, 0.0326811857521534, -0.01583710126578808, -0.012587292119860649, -0.04558888450264931, -0.005967520643025637, 0.004096591379493475, 0.0416753776371479, -0.04064550995826721, -0.027165664359927177, -0.026364654302597046, -0.009108622558414936, 0.007775513455271721, -0.011311397887766361, 0.012083800509572029, 0.03000352717936039, 0.03302447497844696, 0.037143953144550323, 0.0030838865786790848, 0.06934453547000885, 0.01928144320845604, 0.0006658391212113202, -0.003178291255608201, -0.01676398515701294, -0.0906742736697197, -0.025151697918772697, -0.01583710126578808, -0.008914091624319553, -0.011111145839095116, 0.0014103488065302372, -0.011689016595482826, -0.04140074923634529, 0.04622969031333923, 0.05066957324743271, -0.014784346334636211, -0.00573866069316864, 0.02673083171248436, -0.006865795701742172, 0.02824130654335022, -0.016809755936264992, 0.03387125954031944, -0.0031296585220843554, -0.027875130996108055, -0.05616220831871033, 0.011374334804713726, -0.014166424982249737, -0.015264952555298805, 0.02222229167819023, -0.03460361063480377, 0.002886494854465127, 0.014795789495110512, 0.029706008732318878, 0.012930581346154213, 0.019727719947695732, 0.06636935472488403, 0.030941851437091827, -0.04517693445086479, -0.005446864292025566, 0.01869785040616989, 0.04561176896095276, -0.021501382812857628, -0.0021198142785578966, -0.046000830829143524, -0.002797811757773161, -0.0339856892824173, 0.007415059022605419, 0.038929060101509094, 0.041217658668756485, -0.0025417746510356665, -0.04684761166572571, -0.022908871993422508, -0.025815391913056374, -0.00574438227340579, -0.07163313776254654, 0.02746318280696869, 0.018217245116829872, 0.051310379058122635, -0.004039376508444548, 0.022943200543522835, -0.028813455253839493, 0.011866383254528046, -0.018091371282935143, 0.02922540344297886, 0.006940174847841263, 0.02947714924812317, 0.011442992836236954, 0.0027134197298437357, 0.023400919511914253, 0.002647622488439083, -0.010127048939466476, 0.041469406336545944, -0.006270760204643011, -0.04112611711025238, 0.02096356265246868, -0.013628603890538216, 0.017313247546553612, 0.03620562702417374, 0.013388301245868206, 0.014498271979391575, -0.03483247011899948, -0.0441470667719841, 0.005341016687452793, 0.01618039235472679, 0.036457374691963196, -0.0441470667719841, -0.018366003409028053, -0.0021956241689622402, -0.014990320429205894, -0.025838278234004974, 0.006488176994025707, 0.004843246657401323, -0.029065201058983803, 0.02234816551208496, 0.06714747846126556, -0.03702952340245247, 0.007518046069890261, -0.0005417541833594441, 0.0016106012044474483, 0.013937565498054028, -0.045474451035261154, -0.0034872519318014383, -0.00962927844375372, -0.049067553132772446, -0.012621620669960976, -0.030575675889849663, 0.017404790967702866, -0.015356495976448059, -0.03158266097307205, 0.040233563631772995, -0.08376270532608032, 0.05378206446766853, 0.059915509074926376, 0.035930998623371124, 0.03247521445155144, 0.027028348296880722, 0.0378534197807312, -0.005509800743311644, -0.037189725786447525, -0.03888328745961189, -0.0630280002951622, -0.025609416887164116, 0.004931929986923933, 0.026799488812685013, -0.016100291162729263, -0.022634239867329597, -0.016352036967873573, -0.012129572220146656, -0.009898188523948193, -0.02796667441725731, 0.020574500784277916, 0.031079167500138283, 0.06513351202011108, -0.041469406336545944, -0.012404204346239567, 0.0479690246284008, 0.019247112795710564, 0.05071534216403961, 0.0031668483279645443, -0.020093895494937897, -0.04691626876592636, -0.029934868216514587, -0.03426032140851021, 0.027394523844122887, -0.009354646317660809, 0.0003511568356771022, -0.011093981564044952, -0.035953883081674576, -0.0012901973677799106, 0.058633893728256226, -0.009234495460987091, 0.016969958320260048, -0.015036092139780521, 0.024282030761241913, -0.014853004366159439, 0.01991080678999424, -0.014269411563873291, 0.016203276813030243, 0.010521831922233105, -0.02131829597055912, -0.027829358354210854, -0.06174638867378235, -0.013971894048154354, 0.02423625811934471, 0.01854909025132656, -0.006459569558501244, -0.03332199528813362, -0.007157592102885246, 0.019361544400453568, -0.017301805317401886, 0.024121828377246857, 0.020494399592280388, 0.0012043749447911978, -0.022062089294195175, -0.039730072021484375, -0.022496923804283142, -0.0032355061266571283, -0.004142363555729389, -0.0265019703656435, -0.007998651824891567, -0.013456959277391434, 0.011294233612716198, -0.027852244675159454, -0.05012030899524689, 0.011122588999569416, 0.023366590961813927, 0.013434072956442833, 0.014944548718631268, -0.006980225443840027, -0.005441143177449703, 0.0036302893422544003, 0.0017464867560192943, -0.01789684034883976, 0.003430037060752511, 0.01437239907681942, 0.023755652830004692, 0.0116775743663311, 0.034946899861097336, 0.01928144320845604, 0.013697261922061443, -0.003973579034209251, 0.006259317044168711, 0.02544921636581421, 0.033138908445835114, 0.014143538661301136, -9.896401024889201e-05, -0.012690278701484203, 0.04556599631905556, -0.02259991131722927, -0.008296169340610504, 0.009280267171561718, 0.01810281351208687, 0.01716448925435543, -0.002380142454057932, -0.0013230959884822369, 0.0006712030153721571, 0.03675489127635956, -0.007615311536937952, -0.023366590961813927, 0.029957754537463188, -0.021959103643894196, -0.003676061285659671, 0.03217769414186478, 0.011706181801855564, 0.008896926417946815, 0.035633478313684464, 0.00024226961249951273, 0.04572619870305061, -0.037647444754838943, -0.04588640108704567, 0.03400857374072075, 0.0008138828561641276, 0.03176574781537056, 0.008788218721747398, -0.03853999823331833, -0.021146651357412338, 0.00927454512566328, -0.002199915237724781, -0.04465055838227272, 0.005695749539881945, 0.008084474131464958, -0.009886745363473892, -0.03428320586681366, -0.0024774079211056232, -0.021077992394566536, 0.025792505592107773, 0.04039376229047775, -0.01902969740331173, 0.0008074461948126554, -0.037143953144550323, 0.047831710427999496, 0.023046188056468964, -0.024579547345638275, -0.028584595769643784, 0.020872019231319427, -0.009280267171561718, -0.04142363369464874, 0.012163900770246983, -0.025151697918772697, 0.017210261896252632, 0.02257702499628067, 0.027097007259726524, -0.02444223314523697, -0.006110558286309242, -0.01840033195912838, -0.035129986703395844, -0.020128224045038223, -0.040439534932374954, -0.0465729795396328, -0.018514761701226234, -0.02247403748333454, -0.009326038882136345, 0.020379969850182533, 0.016626669093966484, -0.013170884922146797, 0.011517371982336044, 0.0034214546903967857, -0.016306264325976372, -0.02373276650905609, 0.036915093660354614, -0.021581484004855156, 0.007014554459601641, 0.03426032140851021, -0.025815391913056374, -0.01437239907681942, -0.015184851363301277, 0.013147998601198196, -0.008307612501084805, 0.0034958343021571636, 0.010098440572619438, -0.006585442461073399, 0.046000830829143524, 0.013445516116917133, 0.019624732434749603, -0.03327622264623642, 0.03371105715632439, -0.0163634791970253, 0.0007902816869318485, 0.03451206535100937, 0.029110973700881004, -0.005850229877978563, 0.004150945693254471, -0.002890785923227668, 0.009646442718803883, -0.05144769325852394, 0.01688985712826252, -0.0302552729845047, -0.027440296486020088, 0.047007814049720764, 0.00507210660725832, 0.017576437443494797, -0.01953318901360035, 0.007043161895126104, -0.010464617051184177, -0.02496860921382904, 0.014338069595396519, 0.037922076880931854, 0.026799488812685013, -0.012976353988051414, -0.005695749539881945, -0.009045685641467571, -0.008593687787652016, -0.008090196177363396, -0.005784432869404554, -0.01955607533454895, 0.009228773415088654, -0.005006309133023024, -0.025609416887164116, 0.02227950654923916, -0.003229784779250622, 0.05401092395186424, -0.03222346678376198, -0.02625022456049919, -0.035175759345293045, 0.02824130654335022, 0.020826246589422226, 0.008490700274705887, 0.019853591918945312, -0.021455612033605576, 0.012209673412144184, -0.0018337395740672946, 0.017679423093795776, 0.03446629270911217, -0.028950771316885948, 0.020357083529233932, 0.01567690074443817, 0.051813870668411255, 0.00228430749848485, -0.01734757609665394, -0.027097007259726524, -0.011460157111287117, -0.011105424724519253, 0.011534536257386208, -0.016214720904827118, -0.08719560503959656, -0.014418170787394047, -0.005089270882308483, 0.017462007701396942, 0.005052081309258938, 0.007472274359315634, 0.00014276921865530312, -0.017759524285793304, -0.004105173517018557, -0.04140074923634529, -0.01743912138044834, -0.032887160778045654, 0.0157341156154871, -0.012221116572618484, -0.0011278499150648713, 0.02448800392448902, 0.022966086864471436, -0.02255413867533207, 0.01976204849779606, -0.026410426944494247, -0.025517873466014862, 0.01274749357253313, -0.03648025915026665, -0.016752541065216064, -0.0057958755642175674, 0.0032383669167757034, 0.028538823127746582, 0.03698375076055527, 0.01829734444618225, 0.029683122411370277, 0.02068893052637577, 0.005409674718976021, 0.0034929735120385885, -0.044261496514081955, 0.008221790194511414, 0.011877826415002346, 0.0037962128408253193, -0.012392761185765266, -0.03476381301879883, -0.006287924479693174, -0.05350743234157562, -0.007609589956700802, 0.019269999116659164, 0.010333022102713585, 0.021123765036463737, -0.007157592102885246, 0.012541520409286022, -0.00842204224318266, 0.006837188266217709, -0.010979551821947098, -0.04391820728778839, 0.02496860921382904, 0.012335546314716339, 0.00743222376331687, 0.019865036010742188, 0.020402856171131134, -0.01311367005109787, 0.011071095243096352, 0.005258054938167334, -0.006007571239024401, 0.03725838288664818, 0.003535884665325284, -0.015665456652641296, -0.0007752627716399729, 0.023069072514772415, 0.01412065327167511, -0.022187963128089905, -0.0055384086444973946, 0.009160115383565426, 0.03471804037690163, 0.01608884707093239, 0.022142190486192703, 0.010001176036894321, -0.019189897924661636, -0.021741686388850212, -0.017885398119688034, -0.01877795159816742, 0.0012601595371961594, 0.002553217811509967, -0.01588287390768528, 0.0440555214881897, 0.0052065616473555565, 0.007340679876506329, -0.0138574643060565, 0.012015142478048801, -0.025128811597824097, 0.01785106770694256, -0.012358431704342365, -0.019773490726947784, -0.006402354221791029, -0.039936043322086334, -0.017736637964844704, -0.045817743986845016, 0.024785522371530533, -0.04254504665732384, 0.0351986438035965, 0.01724459044635296, -0.0012894822284579277, 0.00791855063289404, -0.008565080352127552, 0.03556482121348381, 0.047007814049720764, -0.00016181106911972165, -0.022313835099339485, -0.001669246586970985, 0.025769619271159172, -0.028859227895736694, 0.0052265869453549385, 0.010584767907857895, -0.009423304349184036, 0.039432551711797714, 0.017553551122546196, -0.033138908445835114, -0.02305763028562069, 0.04188135266304016, 0.012655950151383877, -0.05877121165394783, 0.020151110365986824, -0.019167013466358185, 0.0049748411402106285, -0.004293982870876789, 0.028172647580504417, 0.020528728142380714, -0.03728127107024193, 0.024053171277046204, 0.010836513713002205, -0.035953883081674576, 0.026044251397252083, 0.03247521445155144, 0.028653252869844437, 0.002631888259202242, 6.892615056131035e-05, 0.027348753064870834, -0.03323045000433922, 0.00456289341673255, 0.01592864654958248, 0.02444223314523697, 0.055567171424627304, -0.0009869581554085016, 0.00384770636446774, 0.0002487062884029001, 0.003395708044990897, 0.029454262927174568, 0.004817499779164791, -0.03961564227938652, -0.04005047306418419, 0.026593515649437904, -0.015081864781677723, -0.001910979743115604, -0.03755590319633484, 0.017198817804455757, -0.021364066749811172, -0.01711871661245823, 0.033642400056123734, 0.0057100532576441765, -0.015356495976448059, -0.02270289696753025, 0.013914679177105427, 0.008908369578421116, -0.0007502312073484063, 0.029431376606225967, 0.013079340569674969, 0.011957927606999874, 0.027646269649267197, -0.01174051035195589, -0.04110322892665863, -0.004920486826449633, 0.037670332938432693, 0.010172820650041103, 0.04938795790076256, -0.03648025915026665, -0.045314252376556396, -0.006911567412316799, -0.010756413452327251, 0.0351986438035965, 0.010945222340524197, 0.00497198011726141, 0.012896252796053886, 0.017301805317401886, 0.0352901890873909, 0.02230239287018776, -0.029316946864128113, -0.012919139117002487, 0.0037447193171828985, 0.04842674359679222, 0.01980782113969326, -0.011877826415002346, 0.03611408546566963, -0.00897130649536848, 0.023755652830004692, -0.007352122571319342, 0.021501382812857628, -0.005112157203257084, 0.003607403486967087, -0.026273110881447792, -0.00718047795817256, -0.004980562720447779, -0.02448800392448902, -0.0026919639203697443, -0.04391820728778839, -0.003281278070062399, -0.029957754537463188, 0.0002474547072779387, -0.014715688303112984, -0.024373574182391167, -0.01065914798527956, 0.007317794021219015, 0.0033299108035862446, -0.0018180054612457752, -0.01777096837759018, 0.004251071717590094, 0.029820438474416733, -0.0009447620832361281, -0.039501212537288666, 0.0164321381598711, 0.002573242876678705, 0.02977466769516468, 0.05112729221582413, 0.007363565731793642, 0.012690278701484203, 0.002338661579415202, -0.02303474396467209, 0.016569454222917557, -0.010012618266046047, 0.005615648813545704, 0.004025072790682316, -0.032383669167757034, -0.01739334873855114, 0.045771971344947815, 0.006573999300599098, 0.0047030700370669365, 0.019567517563700676, 0.02205064706504345, -0.014086323790252209, 0.0017865372356027365, 0.005295244976878166, -0.04993721842765808, 0.01487589068710804, 0.013331086374819279, -0.019750606268644333, -0.005429700016975403, -0.027852244675159454, -0.0026905336417257786, 0.007575260940939188, 0.007821285165846348, 0.0026190150529146194, -0.0050148917362093925, 0.014750017784535885, -0.007352122571319342, 0.023892968893051147, -0.004866132512688637, 0.007775513455271721, -0.008833990432322025, 0.03629717230796814, -0.016752541065216064, -0.010556160472333431, -0.004231046419590712, -0.011854940094053745, 0.043025653809309006, 0.034168776124715805, -0.0327269583940506, 0.03904348984360695, 0.042773906141519547, -0.004331172909587622, -0.02700546197593212, -0.004039376508444548, 0.021833229809999466, -0.00842204224318266, -0.01400622259825468, 0.07387596368789673, 0.017507778480648994, -0.021249637007713318, 0.018491875380277634, -0.032429441809654236, 0.021959103643894196, -0.02547210082411766, 0.0007205509464256465, 0.021352624520659447, 0.019327213987708092, 0.017072945833206177, 0.009257380850613117, -0.02998064085841179, 0.01172906719148159, 0.018491875380277634, 0.01040740218013525, -0.022668568417429924, -0.013628603890538216, 0.03183440491557121, 0.001328817568719387, -0.00743222376331687, -0.001849473686888814, -0.009165837429463863, 0.024396460503339767, 0.018571976572275162, -0.007661083713173866, 0.010739248245954514, 0.0005070675979368389, -0.0015219179913401604, -0.011889269575476646, 0.014727131463587284, 0.03686932101845741, 0.001981068169698119, 0.024648206308484077, 0.006974503863602877, -0.002135548507794738, 0.007661083713173866, -0.02673083171248436, 0.020872019231319427, -0.019773490726947784, 0.018720736727118492, 0.05721496418118477, -0.013903236016631126, -0.014395284466445446, 0.011299955658614635, -0.033939916640520096, 0.0013502731453627348, 0.014486828818917274, -0.012690278701484203, 0.011397221125662327, 0.028653252869844437, 0.023217832669615746, 0.025060154497623444, -0.035175759345293045, 0.013376858085393906, 0.026685059070587158, 0.010853678919374943, 0.005449725314974785, 0.015642570331692696, 0.002784938318654895, 0.042293302714824677, 0.014578372240066528, 0.03531307354569435, 0.026891032233834267, -0.009057128801941872, -0.020345641300082207, -0.027188550680875778, 0.007037440314888954, -0.044261496514081955, -0.018732178956270218, -0.0605105459690094, -0.0016606643330305815, 0.004482792224735022, -0.017862511798739433, 0.007054605055600405, 0.0415380634367466, 0.01718737557530403, 0.006785694509744644, -0.016294822096824646, 0.051356151700019836, -0.04515404999256134, -0.012278331443667412, 0.0071347057819366455, -0.024419346824288368, -0.01842321828007698, -0.00818173959851265, 0.002081194194033742, -0.025128811597824097, -0.004937651567161083, -0.021455612033605576, 0.011683295480906963, 0.009823809377849102, 0.026776602491736412, -0.03583945333957672, -0.03377971425652504, -0.01844610460102558, 0.012839037925004959, -0.005898862611502409, -0.01659233868122101, 0.00902279932051897, 0.040233563631772995, 0.006488176994025707, -0.005956077482551336, -0.009165837429463863, -0.003195455763489008, -0.03583945333957672, -0.026685059070587158, 0.010075555182993412, -0.03078165091574192, -0.002886494854465127, 0.020654601976275444, 0.007855614647269249, -0.017324691638350487, -0.015974417328834534, -0.008559358306229115, 0.0026190150529146194, 0.013823134824633598, -0.013411187566816807, -0.018537648022174835, 0.04920486733317375, 0.00115931814070791, 0.01565401442348957, 0.0069344537332654, -0.012884809635579586, 0.026891032233834267, -0.024053171277046204, 0.03803650662302971, 0.0061277225613594055, 0.01835455931723118, 0.03185729309916496, -0.0005503364372998476, 0.0018408914329484105, 0.057352278381586075, -0.0629364624619484, -0.005175093654543161, 0.010201428085565567, 0.012255445122718811, 0.012266888283193111, 0.012152458541095257, 0.014475385658442974, 0.01938442885875702, -0.025426330044865608, 0.011820611543953419, 0.005432560574263334, -0.0008746737730689347, 0.0352901890873909, 0.011282790452241898, -0.021432725712656975, -0.023378033190965652, -0.00040944459033198655, -0.058588121086359024, -0.02343524806201458, -0.009051406756043434, -0.02001379430294037, -0.018091371282935143, 0.03300159052014351, 0.004425577353686094, -0.005429700016975403, -0.008038702420890331, -0.03748724237084389, -0.014132095500826836, -0.02975178137421608, 0.025586532428860664, 0.007661083713173866, 0.01718737557530403, -0.01900681108236313, 0.00041802681516855955, 0.04268236085772514, 0.020231211557984352, 0.015173408202826977, -0.026341769844293594, 0.0025889771059155464, -0.03101051039993763, 0.007060326635837555, -0.018606306985020638, 0.05263776704668999, 0.017027173191308975, -0.03220058232545853, 0.008296169340610504, 0.015081864781677723, -0.02897365763783455, 0.023126287385821342, 0.005641395226120949, -0.008833990432322025, 0.003046696772798896, -0.01224400196224451, 0.027394523844122887, 0.03833402693271637, 0.007203363813459873, 0.00026801633066497743, 0.012610177509486675, 0.0067570870742201805, 0.006219266448169947, 0.02547210082411766, -0.01360571850091219, 0.008931255899369717, -0.003533023875206709, 0.022565580904483795, -0.02001379430294037, -0.028058217838406563, -0.03270407393574715, -0.004874714650213718, -0.002274294849485159, -0.011134032160043716, 0.02419048734009266, 0.0012358431704342365, 0.028676139190793037, -0.03689220920205116, 0.010836513713002205, 0.031056281179189682, -0.008828268386423588, -0.018114257603883743, 0.0012594443978741765, 0.025632303208112717, 0.030621448531746864, 0.0340772308409214, 0.014978877268731594, 0.011013880372047424, 0.008462092839181423, -0.006476733833551407, 0.02901943027973175, -0.014246526174247265, -0.03469515219330788, 0.023217832669615746, -0.021558597683906555, 0.017221704125404358, 0.028676139190793037, -0.03199460729956627, -0.011923598125576973, -0.0029665958136320114, -0.02197054587304592, -0.01054471731185913, -0.013456959277391434, -0.018160030245780945, -0.0018509040819481015, 0.009995453990995884, 0.0066712647676467896, -0.030346816405653954, -0.0013996210182085633, 0.020357083529233932, -0.026570629328489304, 0.0034042904153466225, -0.03078165091574192, -0.008124524727463722, -0.008307612501084805, -0.0008103069267235696, -0.019647618755698204, 0.03510710224509239, -0.007724020164459944, 0.01628337800502777, 0.03487824276089668, -0.040439534932374954, 0.013697261922061443, 0.003464366076514125, -0.01686697080731392, -0.021455612033605576, -0.013823134824633598, 0.01092233695089817, 0.042247530072927475, -0.007334958296269178, -0.036434490233659744, -0.015448040328919888, 0.017782410606741905, -0.00997828971594572, 0.021077992394566536, 0.024396460503339767, 0.01463558804243803, -0.007397894747555256, 0.02748606912791729, 0.036411602050065994, 0.02297752909362316, 0.004067983943969011, -0.03254387155175209, 0.012667393311858177, -0.008513586595654488, -0.008084474131464958, -0.010664869099855423, -0.019796377047896385, 0.007518046069890261, -0.006665543187409639, -0.014818675816059113, -0.001441101892851293, 0.02496860921382904, 0.0062535954639315605, 0.006837188266217709, -0.026044251397252083, 0.00768396956846118, 0.01209524367004633, -0.03602254018187523, -0.021684471517801285, -0.012552962638437748, 0.032910045236349106, -0.027074120938777924, -0.01598586142063141, 0.009068571962416172, 0.029889097437262535, -0.000798863940872252, 0.022874541580677032, 0.009623556397855282, -0.025426330044865608, 0.00438552675768733, -0.008542194031178951, 0.035404618829488754, 0.02952292189002037, 0.00024602434132248163, -0.01615750603377819, 0.023549679666757584, 0.015768444165587425, 0.02194765955209732, -0.008816826157271862, -0.013582832179963589, -0.018434660509228706, -0.007632476277649403, -0.006471012253314257, 0.004648715723305941, 0.014795789495110512, -0.005967520643025637, 0.012896252796053886, -0.03803650662302971, -0.034123003482818604, -0.012198230251669884, -0.004113755654543638, -0.014177868142724037, 0.008462092839181423, -0.005289523396641016, 0.0017421956872567534, -0.0116775743663311, -0.009606392122805119, -0.004851828794926405, 0.009234495460987091, 0.03535884618759155, 0.014750017784535885, -0.00413378095254302, 0.0352444164454937, -0.020620273426175117, -0.0004634411889128387, 0.01810281351208687, -0.022416822612285614, -0.02127252332866192, 0.01814858615398407, -0.007340679876506329, 0.028447279706597328, 0.005818761885166168, -0.031903062015771866, -0.022268064320087433, -0.0340314619243145, -0.04865560308098793, -0.009846694767475128, 0.031628429889678955, -0.030598562210798264, 0.016718212515115738, 0.0195789597928524, 0.04588640108704567, -0.003844845574349165, -0.027669155970215797, -0.004708791617304087, 0.012724608182907104, -0.02494572475552559, -0.007884222082793713, -0.0302781593054533, -0.02005956694483757, 0.011671852320432663, -0.017301805317401886, 0.0009447620832361281, -0.023389477282762527, 0.03705241158604622, -0.05478904768824577, 0.027669155970215797, -0.02547210082411766, -0.0006450986838899553, -0.02119242213666439, 0.001135001890361309, -0.014097766950726509, -0.016123177483677864, -0.012564405798912048, -0.016374923288822174, 0.030712991952896118, -0.018915267661213875, 0.01311367005109787, -0.019647618755698204, -0.05419401451945305, 0.0018437522230669856, -0.011832054704427719, 0.005089270882308483, -0.01812569983303547, 0.00498342327773571, -0.04558888450264931, 0.01812569983303547, -0.020482957363128662, 0.01880083605647087, -0.014452499337494373, 0.01754210703074932, 0.020299868658185005, -0.0013409757521003485, -0.03801362216472626, -0.0027105589397251606, 0.0025074458681046963, 0.035427507013082504, -0.02670794539153576, 0.003813377348706126, 0.02423625811934471, 0.0040737055242061615, 0.009337482042610645, 0.023343704640865326, -0.0402793325483799, 0.0014761460479348898, 0.012655950151383877, -0.004700209014117718, 0.005426839459687471, -0.007878500036895275, 0.01618039235472679, -0.04128631576895714, -0.007775513455271721, 0.013903236016631126, -0.01234698947519064, 0.006368025206029415, -0.0037618838250637054, -0.028653252869844437, -0.02446511760354042, 0.02698257751762867, -0.025678075850009918, -0.020849132910370827, -0.045039620250463486, -0.005764407571405172, -0.06838332116603851, 0.015242066234350204, 0.007609589956700802, -0.007998651824891567, -0.032818503677845, 0.03824248164892197, -0.012633063830435276, -0.0006501050083898008, 0.0063394177705049515, -0.03927234932780266, -0.03295581787824631, -0.0390206053853035, -0.02922540344297886, 0.04769439250230789, 0.012804708443582058, 0.0048489682376384735, 0.05694033205509186, -0.019098354503512383, -0.01603163219988346, -0.05616220831871033, 0.022039202973246574, -0.014498271979391575, -0.009383253753185272, -0.029294060543179512, -0.04590928554534912, -0.027783585712313652, 0.008816826157271862, -0.0032326453365385532, 0.007025997620075941, 0.008313334546983242, 0.011854940094053745, 0.0017622208688408136, 0.0116546880453825, 0.006207823287695646, 0.007489438634365797, 0.022588467225432396, -0.00018380307301413268, 0.024053171277046204, 0.0188809372484684, 0.02222229167819023, -0.0027520398143678904, 0.026410426944494247, -0.01741623505949974, 0.011832054704427719, -0.0033585182391107082, 0.006122000981122255, -0.0018723596585914493, -0.007621033117175102, 0.030873194336891174, -0.03451206535100937, -0.00649961968883872, 0.01699284464120865, 0.0027005462907254696, 0.030918966978788376, -0.0038734530098736286, 0.022016318514943123, 0.011065374128520489, -0.0018551951507106423, 0.023240718990564346, 0.0008918382227420807, 0.008994191884994507, -0.008427764289081097, -0.0024702560622245073, -0.01224400196224451, -0.02207353338599205, 0.007558096665889025, 0.005687167402356863, -0.025037268176674843, 0.017805296927690506, -0.0024573826231062412, 0.009663606993854046, 0.013994780369102955, -0.002736305585131049, -0.004651576746255159, -0.025906935334205627, 0.041744038462638855, -0.023297933861613274, 0.010092719458043575, -0.0067456443794071674, -0.044513240456581116, -0.001223684987053275, 0.01817147247493267, 0.01223255880177021, 0.032658301293849945, -0.053827837109565735, -0.00028678998933173716, 0.03837979584932327, -0.0302781593054533, -0.009875303134322166, 0.0029637350235134363, -0.022439708933234215, -0.0014175006654113531, -0.004511399660259485, 0.009051406756043434, 0.022588467225432396, 5.019719174015336e-05, 0.03048413246870041, 0.01940731517970562, 0.03636582940816879, -0.01880083605647087, -0.01537938229739666, 0.014235083013772964, 0.014715688303112984, -0.025632303208112717, -0.00042446350562386215, 0.044993847608566284, -0.017965499311685562, 0.029065201058983803, 0.0008303321665152907, 0.022897427901625633, -0.03405434638261795, -0.007970044389367104, -0.001526209176518023, -0.03705241158604622, 0.04508539289236069, 0.04057685285806656, -0.01802271418273449, 0.0048489682376384735, -0.010762134566903114, 0.024167601019144058, 0.01575700007379055, -0.028904998674988747, -0.03336776793003082, 0.011362891644239426, -0.0067570870742201805, 0.028699025511741638, -0.03220058232545853, 0.004096591379493475, -0.02230239287018776, -0.005258054938167334, -0.002224231604486704, -0.01047033816576004, -0.028882114216685295, 0.0023315097205340862, -0.01938442885875702, 0.035404618829488754, -0.021913331001996994, 0.012930581346154213, -0.006963061168789864, 0.0036159856244921684], [0.04837695509195328, 0.023428991436958313, 0.0327959842979908, 0.0016297303372994065, -0.0023288025986403227, 0.04948166012763977, 0.0163979921489954, -0.025983626022934914, 0.042070917785167694, 0.062139760702848434, -0.05592578276991844, 0.058135196566581726, -0.044510480016469955, 0.036432310938835144, 0.006438369397073984, -0.017456669360399246, 0.045546144247055054, -0.021127518266439438, -0.04925151169300079, -0.014257622882723808, 0.025270169600844383, 0.02049461379647255, -0.04437239095568657, -0.0522894561290741, 0.002117354888468981, -0.033141206949949265, 0.015074645169079304, -0.038365546613931656, 0.061127111315727234, -0.06002240628004074, 0.02591458149254322, -0.02439560927450657, 0.004884875379502773, -0.03647834062576294, -0.01224383432418108, -0.03316422179341316, -0.012312877923250198, -0.0033371353056281805, 0.0076869186013937, 0.01239342987537384, -0.019481966271996498, -0.017284059897065163, -0.016858287155628204, 0.028515245765447617, -0.018262185156345367, 0.07461374253034592, 0.01701938919723034, -0.05933196470141411, -0.0024985361378639936, 0.01965457573533058, 0.00860175397247076, 0.03737591579556465, 0.021242592483758926, -0.044418420642614365, 0.04701908677816391, 0.03472921997308731, 0.006012597121298313, 0.006098902318626642, 0.039194077253341675, -0.008705319836735725, -0.005696144886314869, -0.021357664838433266, 0.025385241955518723, -0.03323326259851456, 0.020448584109544754, -0.04036783054471016, 0.025247154757380486, 0.026558993384242058, -0.07857227325439453, -0.03196745365858078, 0.021794945001602173, -0.0012643715599551797, 0.046673864126205444, 0.024326564744114876, -0.022830607369542122, 0.001015524729155004, -0.041242387145757675, -0.0009205890237353742, -0.0004700038698501885, 0.03831951692700386, -0.04600643739104271, 0.00309835746884346, -0.024096418172121048, -0.030701644718647003, 0.022105643525719643, -0.03576488420367241, -0.032749954611063004, -0.022807592526078224, -0.038365546613931656, 0.013797327876091003, 0.009309456683695316, 0.004741033539175987, -0.01814711093902588, 0.027916861698031425, 0.005135160870850086, 0.0055235340259969234, 0.018285199999809265, -0.045108862221241, -0.026489948853850365, 0.05873357877135277, 0.00632329611107707, 0.011173649691045284, -0.00535667734220624, 0.020437076687812805, 0.017088433727622032, -0.05951607972383499, -0.018918104469776154, 0.015569462440907955, -0.026466934010386467, 0.00033263472141698003, 0.05781299248337746, -0.032634880393743515, -0.028837451711297035, 0.06522373110055923, -0.0012722827959805727, 0.00335439620539546, -0.01607578620314598, -0.005319278687238693, 0.03728385642170906, 0.01856137625873089, 0.017341595143079758, -0.014349681325256824, -0.010989531874656677, -0.039700403809547424, 0.020448584109544754, -0.022922666743397713, -0.047272246330976486, 0.0379282683134079, -0.04264628887176514, -0.011236939579248428, 0.01927483268082142, 0.009056294336915016, 0.08124198019504547, -0.06826167553663254, 0.016213875263929367, -0.016938839107751846, 0.001203238614834845, 0.01896413415670395, 0.013728284277021885, 0.04805474728345871, -0.005025840830057859, 0.04347481578588486, -0.02529318444430828, 0.048100776970386505, -0.05146092548966408, 0.011190910823643208, -0.01730707474052906, 0.05104666203260422, 0.015557955019176006, 0.0008357222541235387, 0.006921678781509399, 0.006202468648552895, 0.003650710918009281, -0.004346906207501888, 0.0005444420967251062, 0.021840974688529968, -0.0035528982989490032, 0.04540805518627167, 0.021956048905849457, -0.015511925332248211, -0.021587813273072243, -0.007479785941541195, -0.003895242465659976, 0.008785871788859367, -0.008584492839872837, 0.038480620831251144, -0.0460754819214344, 0.008233518339693546, -0.025155095383524895, -0.027410538867115974, -0.015845639631152153, -0.0004620925465133041, 0.008475173264741898, -0.0460754819214344, -0.0533021055161953, -0.02071325294673443, 0.006956201046705246, -0.019804172217845917, 0.04701908677816391, 0.008659291081130505, 0.029274731874465942, 0.016927331686019897, 0.003895242465659976, -0.019712112843990326, 0.014453248120844364, 0.03429194167256355, -0.012991813011467457, 0.013555673882365227, -0.01906770095229149, 0.02918267250061035, 0.0036650951951742172, 0.008918206207454205, -0.012370415031909943, -0.014407218433916569, 0.029781054705381393, 0.023532556369900703, -0.02713436260819435, -0.011110358871519566, -0.0024021619465202093, -0.027410538867115974, 0.024119433015584946, -0.039585329592227936, 0.03433797135949135, -0.025960611179471016, -0.023728182539343834, -0.004200187511742115, -0.0017994638765230775, 0.002387777902185917, 0.023590093478560448, -0.042162977159023285, -0.018365751951932907, -0.003647834062576294, 0.018676450476050377, 0.01873398758471012, -0.0013384501216933131, 0.013187438249588013, -0.03627120703458786, 0.032634880393743515, 0.020632700994610786, 0.04883724823594093, 0.01448777038604021, -0.004372797906398773, -0.013049349188804626, -0.026052670553326607, -0.05799710750579834, 0.02059818059206009, 0.015235748142004013, -0.07751359790563583, -0.004392935894429684, -0.08989551663398743, 0.00415415782481432, 0.025684434920549393, 0.017698323354125023, 0.01469490211457014, -0.006162192672491074, -0.022888144478201866, -0.020252957940101624, -0.04520092159509659, -0.00619671493768692, -0.008734088391065598, 0.015051630325615406, 0.004467733670026064, 0.0035528982989490032, -0.00814721267670393, -0.014418725855648518, -0.006352064199745655, 0.00012954774138052016, -0.022888144478201866, -0.01588016003370285, 0.03228966146707535, 0.02897554077208042, 0.0125430254265666, 0.05376239866018295, -0.03410782292485237, -0.011340506374835968, 0.023187335580587387, -0.010247306898236275, 0.014614351093769073, 0.018872074782848358, -0.010719108395278454, 0.007744455244392157, 0.002899855375289917, 0.03265789523720741, -0.0006293089245446026, -0.037951283156871796, -0.015281777828931808, 0.020241450518369675, -0.0281700249761343, -0.032404735684394836, 0.03495936840772629, -0.018308214843273163, 0.007784731220453978, -0.010627049952745438, -0.01439571101218462, -0.0768231526017189, 0.022922666743397713, -0.004893505945801735, 0.017652295529842377, -0.058135196566581726, -0.040736064314842224, -0.031207967549562454, -0.03125399723649025, 0.03189840912818909, -0.050448279827833176, 0.007059767376631498, -0.03728385642170906, -0.023026233538985252, 0.06715697050094604, 0.039401210844516754, -0.01214026752859354, 0.0399765782058239, 0.007767470087856054, 0.011818061582744122, -0.0063578179106116295, 0.016029756516218185, -0.013302511535584927, -0.045661214739084244, -0.008233518339693546, 0.007209362927824259, 0.011967657133936882, 0.03951628506183624, 0.03730687126517296, -0.0035672825761139393, 0.001609592349268496, -0.02695024386048317, 0.005652992054820061, -0.03321024775505066, -0.012266849167644978, -0.03574186936020851, -0.01147859450429678, -0.01619086042046547, 0.07249638438224792, -0.07765168696641922, -0.0015995234716683626, -0.049435630440711975, 0.024234507232904434, 0.012186297215521336, 0.03093179129064083, -0.004876245278865099, 0.03917106240987778, 0.002300034277141094, 0.020437076687812805, -0.008780118077993393, -0.013785820454359055, 0.03781319409608841, -0.014418725855648518, -0.030655615031719208, 0.023843256756663322, 0.005500519648194313, 0.00989057868719101, -0.04045988991856575, 0.03247377648949623, 0.013083871454000473, 0.02088586427271366, 0.013843357563018799, -0.020874356850981712, -0.0430375374853611, 0.023083770647644997, 0.028147010132670403, 0.01709994114935398, -0.02079380489885807, -0.053025927394628525, 0.015074645169079304, 0.028008921071887016, -0.007479785941541195, 0.0038866118993610144, 0.019010163843631744, 0.01854986883699894, -0.017157478258013725, 0.01014949381351471, 0.0399305485188961, 0.021288622170686722, -0.016317440196871758, 0.017192000523209572, -0.051691073924303055, -0.011541885323822498, 0.02573046274483204, -0.010161001235246658, -0.05749078467488289, 0.006501660216599703, -0.01926332525908947, -0.002432368928566575, 0.0020094732753932476, 0.05831931531429291, 0.011795046739280224, -0.016213875263929367, -0.020977921783924103, -0.025247154757380486, -0.023613108322024345, 0.0005947868339717388, 0.021679872646927834, 0.00865353737026453, -0.03233569115400314, -0.03845760598778725, 0.028722377493977547, -0.02398134395480156, 0.021748915314674377, 0.035189516842365265, -0.023797227069735527, 0.006127670872956514, 0.020644208416342735, 0.03327929228544235, 0.04069003462791443, 0.0040937443263828754, -0.01616784557700157, 0.010638557374477386, -0.011403796263039112, 0.006495906505733728, -0.04069003462791443, -0.030770689249038696, -0.009188629686832428, 0.014050490222871304, -0.03337135165929794, 0.034268926829099655, -0.009090816602110863, 0.016536081209778786, 0.023003218695521355, -0.0019504979718476534, 0.026766126975417137, -0.04961974918842316, 0.0070079839788377285, -0.028515245765447617, -0.025983626022934914, 0.024096418172121048, 0.010155247524380684, 0.020022811368107796, -0.0037255086936056614, -0.0024424376897513866, -0.013302511535584927, 0.0317603200674057, 0.0409662127494812, -0.0060758874751627445, 0.03127701207995415, 0.04075907915830612, 0.010414163582026958, -0.014061997644603252, -0.006587965413928032, 0.044924743473529816, -0.014913542196154594, -0.02787083387374878, -0.008383113890886307, 0.015074645169079304, -0.023325424641370773, 0.03125399723649025, -0.038066357374191284, 0.03822746127843857, 0.02775575965642929, -0.002986160572618246, -0.039815474301576614, -0.018308214843273163, -0.003380287904292345, 0.0035586520098149776, 0.02386627160012722, 0.06011446565389633, -0.027088332921266556, -0.02398134395480156, -0.014349681325256824, -0.01722652278840542, 0.07249638438224792, -0.014027475379407406, -0.04651276022195816, 0.01691582426428795, 0.03822746127843857, -0.0019850200042128563, -0.008854915387928486, 0.008624768815934658, 0.0040678526274859905, 0.03228966146707535, 0.017445161938667297, -0.019102223217487335, 0.019228802993893623, -0.018469316884875298, -0.01588016003370285, 0.02642090618610382, -0.022082628682255745, -0.05348622426390648, 0.002553196158260107, -0.011898613534867764, 0.04865312948822975, -0.004833092447370291, 0.03134605661034584, -0.00388085818849504, 0.04745636507868767, 0.012945783324539661, -0.014073505066335201, 0.021242592483758926, 0.06329049915075302, -0.05624799057841301, -0.025477301329374313, -0.006898663938045502, 0.03912503272294998, 0.01464887335896492, 0.02550031617283821, -0.0348442941904068, 0.028745392337441444, -0.009464805945754051, -0.006248497869819403, 0.015017108991742134, -0.028354141861200333, -0.01617935299873352, 0.0029545153956860304, -0.009033279493451118, -0.043797023594379425, -0.07369314879179001, 0.021449724212288857, 0.033739589154720306, 0.06016049534082413, 0.04181775823235512, 0.0017174739623442292, -0.04805474728345871, -0.012450966984033585, -0.01804354600608349, 0.0697346180677414, -0.009349732659757137, 0.009177122265100479, 0.011162142269313335, 0.0008213380351662636, -0.014096519909799099, 0.006915925070643425, -0.008785871788859367, 0.0022166057024151087, -0.06103505194187164, 0.041242387145757675, -0.021139025688171387, 0.007968848571181297, -0.007163333240896463, -0.028400171548128128, 0.015074645169079304, -0.04089716821908951, 0.03976944461464882, -0.028354141861200333, 0.029965173453092575, 0.03265789523720741, 0.035995032638311386, -0.03505142778158188, -0.009119585156440735, 0.042255036532878876, 0.041035257279872894, -0.013003320433199406, 0.025799507275223732, -0.023417484015226364, -0.018055051565170288, 0.0015750703169032931, -0.02469480037689209, -0.02098942920565605, 0.0002630511298775673, 0.012888246215879917, -0.04777856916189194, -0.037951283156871796, -0.00663399463519454, 0.020529136061668396, -0.01896413415670395, -0.01650155894458294, -0.021944541484117508, -0.027295464649796486, -0.00043835860560648143, 0.01013798639178276, -0.0009989829268306494, -0.02071325294673443, 0.013820342719554901, -0.006340556778013706, -0.03247377648949623, 0.027502598240971565, 0.022209210321307182, -0.006887156516313553, 0.010581020265817642, -0.012209312058985233, 0.010287582874298096, 0.01823917031288147, -0.029251717031002045, -0.018768509849905968, 0.012842217460274696, -0.002396408235654235, 0.003670848673209548, -0.03268091008067131, 0.024832889437675476, -0.010822675190865993, -0.0071057965978980064, -0.030448483303189278, 0.030678629875183105, -0.00604711938649416, 0.018998656421899796, 0.0029804070945829153, -0.0012866670731455088, -0.02662803791463375, 0.00994811486452818, -0.02950487844645977, -0.025132080540060997, 0.007876790128648281, -0.015074645169079304, -0.021380679681897163, 0.004076483193784952, 0.010310596786439419, 0.06784740835428238, 0.024027373641729355, 0.024119433015584946, 0.018055051565170288, -0.031300026923418045, 0.023210350424051285, -0.005494765937328339, -0.003219184698536992, 0.028423186391592026, -0.05284181237220764, -0.049527689814567566, -0.029942158609628677, -0.010063189081847668, -0.013797327876091003, -0.01896413415670395, -0.03307216241955757, 0.02929774671792984, 0.02058667317032814, -0.01914825104176998, 0.024855904281139374, -0.006346310488879681, -0.03707672283053398, 0.03403877839446068, -0.04377400875091553, -0.005434351973235607, -0.015465895645320415, 0.019850201904773712, 0.006904417648911476, 0.02591458149254322, 0.0026596393436193466, 0.06402696669101715, -0.046765923500061035, 0.003783045569434762, 0.0055033965036273, -0.016869794577360153, 0.043405771255493164, 0.007462524808943272, 0.026720097288489342, -0.006156438961625099, -0.02796289138495922, -0.009010265581309795, -0.004945289343595505, -0.02416546270251274, -0.05951607972383499, -0.0007317963754758239, 0.018699465319514275, -0.027594655752182007, -0.03650135546922684, 0.054544899612665176, 0.030977820977568626, -0.04276135936379433, -0.03675451874732971, -0.005621346645057201, 0.023129800334572792, -0.007738701533526182, -0.013072364032268524, -0.02490193396806717, -0.042554229497909546, -0.02345200628042221, -0.029665982350707054, -0.013175930827856064, -0.017986008897423744, 0.0001761165913194418, -0.010017159394919872, -0.021794945001602173, -0.017951486632227898, 0.011864091269671917, 0.0023475021589547396, 0.03921709209680557, 0.013083871454000473, -0.0685838833451271, -0.0019648822490125895, 0.026374876499176025, -0.01997678168118, 0.02386627160012722, 0.04045988991856575, 0.007663903757929802, 0.009844549000263214, 0.012278356589376926, -0.014602843672037125, 0.01393541693687439, -0.010310596786439419, 0.006858388427644968, -0.01865343563258648, 0.0017807644326239824, -0.0002468689053785056, 0.008964235894382, -0.005696144886314869, 0.04119636118412018, 0.005115022882819176, 0.013912402093410492, 0.04796268790960312, 0.0011600860161706805, 0.022899651899933815, 0.016421006992459297, 0.017376117408275604, -0.013659239746630192, 0.00756033742800355, 0.04483268782496452, 0.01658211089670658, -0.0018282323144376278, -0.017882442101836205, -0.009269180707633495, -0.015385344624519348, 0.03238172084093094, -0.018883582204580307, 0.04846901446580887, -0.028515245765447617, -0.009740983135998249, -0.02552333101630211, -0.0009069240186363459, 0.016961852088570595, -0.013360048644244671, -0.006029858253896236, -0.01209423877298832, 0.02232428453862667, 0.008929713629186153, 0.005373938474804163, -0.003463716246187687, -0.004850353579968214, -0.007744455244392157, 0.03291105851531029, 0.05307195708155632, -0.01927483268082142, 0.025270169600844383, -0.03187539428472519, -0.01668567582964897, 0.014131042174994946, -0.006714546121656895, -0.027272449806332588, -0.054130636155605316, -0.0389409177005291, -0.03514348715543747, -0.05316401645541191, 0.0009054856491275132, 0.022071121260523796, -0.02141520194709301, -0.012922768481075764, 0.0024712062440812588, -0.01996527425944805, -0.023486528545618057, 0.0002973934169858694, 0.02272704243659973, 0.0029832839500159025, 0.03362451493740082, 0.003768661292269826, 0.0009155545849353075, -0.0002777949266601354, 0.007784731220453978, -0.031161939725279808, 0.01967759057879448, 0.061311230063438416, -0.006386586464941502, -0.03187539428472519, 0.00804940052330494, 0.0337856188416481, 0.0035931740421801805, 0.039999593049287796, -0.023290902376174927, 0.0034435782581567764, 0.012669607065618038, -0.04126540198922157, 0.03594900295138359, -0.01341758482158184, 0.029735025018453598, 0.005598332267254591, -0.008066661655902863, 0.006380832754075527, -0.032312676310539246, 0.003035066882148385, -0.01802053116261959, 0.016938839107751846, 0.01065581850707531, 0.017157478258013725, -0.0019159759394824505, 0.048100776970386505, -0.012255341745913029, 0.009942361153662205, 0.007393480744212866, -0.03224363178014755, -0.0023518172092735767, 0.05233548581600189, 0.016536081209778786, 0.018710972741246223, -0.01310688629746437, 0.016823764890432358, 0.0327729694545269, -0.015603983774781227, -0.03746797516942024, 0.010563759133219719, 0.015189719386398792, 0.023820241913199425, 0.007675411179661751, -0.024257520213723183, -0.024556713178753853, 0.006306034978479147, -0.04856107011437416, -0.005008579697459936, -0.024763844907283783, -0.016225382685661316, 0.024234507232904434, 0.02798590622842312, -0.05601784214377403, -0.02047159895300865, 0.012278356589376926, -0.001049327664077282, -0.012301371432840824, 0.015845639631152153, -0.02798590622842312, -0.0276637002825737, 0.028400171548128128, 0.011438318528234959, 0.038687754422426224, 0.003365903627127409, -0.002012350130826235, 0.05031019076704979, 0.067617267370224, -0.06324446946382523, -0.021380679681897163, -0.011098851449787617, -0.013348541222512722, -0.0163979921489954, 0.017801890149712563, 0.0012845094315707684, -0.02573046274483204, -0.02193303406238556, 0.029735025018453598, -0.00491939764469862, -0.012612069956958294, -0.012773172929883003, -0.004945289343595505, 0.062461964786052704, -0.022669505327939987, -0.014050490222871304, -0.003095480613410473, -0.0012118691811338067, -0.02600664086639881, 0.04188680276274681, 0.026582008227705956, 0.00978701189160347, -0.008354345336556435, -0.016639646142721176, 0.005261741578578949, -0.0005448017036542296, -0.011944642290472984, 0.004643220920115709, 0.03615613281726837, 0.03401576355099678, -0.02241634391248226, 0.0006864861352369189, -0.010937748476862907, -0.0019533748272806406, -0.008734088391065598, -0.014832991175353527, 0.021668365225195885, 0.00468349689617753, 0.05201328173279762, 0.016351962462067604, 0.009815780445933342, -0.0012722827959805727, 0.008900945074856281, -0.001917414367198944, -0.008411882445216179, -0.041748713701963425, -0.01873398758471012, 0.008843408897519112, 0.0348673090338707, 0.04138047620654106, 0.014015967957675457, -0.041334446519613266, -0.006818112451583147, -0.03162223473191261, 0.010615542531013489, 0.008596000261604786, 0.022358806803822517, -0.01628291793167591, 0.003647834062576294, -0.00994811486452818, -0.023187335580587387, -0.026720097288489342, -0.008688058704137802, 0.008457912132143974, -0.037652090191841125, 0.00016622745897620916, -0.012669607065618038, -0.0020885863341391087, -0.0348212793469429, 0.0010148055152967572, 0.009234658442437649, -0.02745656855404377, 0.02078229747712612, 0.03493635356426239, -0.018181633204221725, 0.022669505327939987, 0.013026335276663303, -0.0014801345532760024, 0.00907355546951294, 0.015189719386398792, 0.022289762273430824, 0.0036190657410770655, -0.03979245945811272, -0.0073762196116149426, -0.04434937611222267, -0.011726003140211105, 0.02573046274483204, 0.009666184894740582, 0.014303652569651604, -0.012853724882006645, -0.007226624060422182, 0.05785902217030525, 0.01845780946314335, -0.033256277441978455, -0.011173649691045284, -0.0327729694545269, 0.04273834452033043, 0.057628873735666275, 0.025477301329374313, 0.001556370873004198, -0.006518921349197626, -0.001707404968328774, 0.030494511127471924, 0.02263498306274414, 0.03574186936020851, -0.05274975299835205, 0.015028616413474083, 0.01448777038604021, -0.003063835436478257, -0.05063239857554436, 0.006749068386852741, -0.019539501518011093, 0.0028077964670956135, -0.0049424124881625175, 0.04190981760621071, 0.02324487268924713, -0.0005875946953892708, 0.02078229747712612, 0.008952728472650051, 0.05274975299835205, 0.01915975846350193, -0.030379438772797585, -0.019504981115460396, 0.05703049153089523, 0.011910120956599712, 0.02501700632274151, 0.00428073899820447, 0.009269180707633495, 0.017583250999450684, 0.02715737745165825, -0.0007875351584516466, 0.008475173264741898, 0.014315159060060978, 0.013279496692121029, 0.031829364597797394, 0.03903297334909439, -0.001150736352428794, 0.03629422187805176, -0.023083770647644997, -0.008222010917961597, 0.0021000937558710575, 0.021783437579870224, 0.01167997345328331, -0.025684434920549393, -0.05923990532755852, -0.007554583717137575, -0.00936699379235506, 0.025799507275223732, -0.012013686820864677, -0.0644872635602951, 0.036018047481775284, 0.0021000937558710575, -0.043589890003204346, -0.028423186391592026, 0.0512307807803154, 0.025224139913916588, 0.008014878258109093, -0.007479785941541195, 0.01101830042898655, 0.030609585344791412, -0.0014873266918584704, 0.02909061312675476, 0.023912299424409866, -0.0050546093843877316, 0.012577547691762447, 0.022796085104346275, -0.005903277080506086, -0.018780017271637917, 0.016881301999092102, 0.003673725528642535, 0.002783343428745866, -0.010678832419216633, 0.005512027069926262, 0.04009165242314339, 0.026374876499176025, 0.01439571101218462, -0.006265759002417326, 0.01638648472726345, -0.00369961722753942, 0.0021029706113040447, 0.006467137951403856, 0.026397891342639923, 0.011702988296747208, -0.009482067078351974, 0.008538463152945042, -0.00860175397247076, -0.01709994114935398, 0.0003186101093888283, -0.0008378798374906182, -1.663173497945536e-05, 0.03215157240629196, 0.029896128922700882, -0.00019202912517357618, -0.00808967649936676, -0.007681164890527725, 0.07093138247728348, 0.00031878991285339, 0.022358806803822517, -0.013820342719554901, 0.01730707474052906, 0.01310688629746437, -0.005563810002058744, 0.01607578620314598, 0.031092895194888115, 0.03762907534837723, 0.03808937221765518, -0.018572883680462837, -0.013003320433199406, -0.0024841520935297012, -0.005535041447728872, 0.014338173903524876, 0.025661420077085495, 0.03905598819255829, 0.0025963487569242716, 0.0026351860724389553, -0.004853230435401201, -0.02480987459421158, -0.0057594352401793, -0.014441740699112415, 0.004577053710818291, -0.04476364329457283, 0.004096621181815863, 0.034683190286159515, -0.023590093478560448, 0.016881301999092102, -0.0026337476447224617, -0.04105827212333679, -0.03316422179341316, -0.01368225459009409, -0.04009165242314339, 0.014269130304455757, -0.0043641673400998116, 0.0009788450552150607, 0.03935518115758896, 0.015707550570368767, -0.0020742022898048162, 0.016904316842556, 0.027019288390874863, 0.01095500960946083, 0.007543076295405626, -0.003944148775190115, 0.02119656279683113, 0.007773223798722029, 0.02938980422914028, 0.027479583397507668, -2.5846615244518034e-05, 0.014499276876449585, -0.014269130304455757, -0.014211593195796013, 0.002056941157206893, -0.020517628639936447, -0.022807592526078224, 0.04312959685921669, 0.01873398758471012, 0.021944541484117508, -0.021668365225195885, -0.035810913890600204, -0.023072263225913048, 0.014096519909799099, -0.020206930115818977, 0.031507160514593124, -0.03597201779484749, 0.02540825679898262, -0.012117253616452217, 0.00039664440555498004, 0.007980355992913246, -0.006375079043209553, 0.0056760068982839584, 0.006052873097360134, 0.014971079304814339, 0.009154107421636581, -0.002602102467790246, -0.03576488420367241, 0.027640685439109802, -0.00245969882234931, -0.014384203590452671, 0.034982383251190186, 0.017986008897423744, 0.012750158086419106, -0.003990177996456623, 0.009568372741341591, 0.022876637056469917, 0.0071921017952263355, 0.004341152496635914, 0.028561275452375412, -0.003247953252866864, 0.009740983135998249, -0.006208222359418869, 0.04828489571809769, -0.040620990097522736, -0.0031760320998728275, -0.00942452996969223, -0.023613108322024345, 0.0017505575669929385, -0.0037082477938383818, -0.007163333240896463, -0.014729424379765987, 0.015603983774781227, 0.017571743577718735, -0.02316432073712349, 0.013244974426925182, 0.006104656029492617, -0.013555673882365227, 0.004634590353816748, 0.02570744976401329, 0.02899855375289917, -0.0031530174892395735, 0.007445263676345348, 0.001116933417506516, -0.019286340102553368, -0.0048877522349357605, 0.009798519313335419, -0.027065318077802658, 0.018112588673830032, -0.025477301329374313, -0.019205788150429726, 0.02971201203763485, 0.013141408562660217, 0.020736267790198326, 0.023336932063102722, 0.012416444718837738, -0.01495957188308239, 0.0031271257903426886, 0.007451017387211323, 0.0022914037108421326, -0.01914825104176998, 0.015028616413474083, -0.02713436260819435, -0.018826045095920563, -0.0317603200674057, 0.006012597121298313, -0.06959652900695801, -0.0004858264874201268, -0.004778432659804821, 0.004243339877575636, 0.023705167695879936, 0.009735229425132275, 0.023521050810813904, -0.014821483753621578, 0.027709729969501495, -0.00860175397247076, -0.04998798295855522, -0.0049021365121006966, -0.015051630325615406, 0.025845536962151527, 0.002310103038325906, -0.045431070029735565, 0.008906698785722256, -0.026282817125320435, 0.0038607202004641294, 0.005678883753716946, 0.013383063487708569, -0.02388928458094597, 0.0012427951442077756, 0.011386536061763763, 0.036133117973804474, 0.05698446184396744, 0.00707127433270216, 0.02418847754597664, 0.00968919973820448, 0.007612120825797319, -0.018285199999809265, -0.0022669504396617413, 0.029320761561393738, 0.016651153564453125, 0.013394570909440517, 0.006104656029492617, 0.013129901140928268, 0.017675310373306274, -0.0019073453731834888, 0.0033026132732629776, -0.012301371432840824, -0.016018249094486237, -0.009505081921815872, 0.008475173264741898, 0.01845780946314335, -0.005002825986593962, -0.04966577887535095, -0.017974501475691795, -0.014867512509226799, -0.010109218768775463, -0.0011960465926676989, 0.001353553612716496, 0.01255453284829855, -0.019240310415625572, 0.03594900295138359, -0.006783590652048588, -0.012508503161370754, -0.010368133895099163, -0.002476959954947233, 0.009568372741341591, -0.0045022559352219105, -0.018308214843273163, -0.028837451711297035, -0.017847919836640358, 0.005414214450865984, 0.0012053962564095855, 0.0006670674192719162, -0.020759282633662224, 0.02439560927450657, -0.009579879231750965, 0.024004358798265457, 0.0066397483460605145, -0.03834253177046776, 0.011818061582744122, -0.0034320710692554712, 0.03449907526373863, 0.025753477588295937, -0.018296707421541214, -0.014752439223229885, -0.0015808240277692676, 0.02180645242333412, 0.010086203925311565, -0.020874356850981712, -0.012876738794147968, -0.021668365225195885, 0.047686513513326645, -0.025040021166205406, -0.03921709209680557, 0.020954908803105354, 0.01813560351729393, 0.01423460803925991, -0.003049451159313321, -0.03051752597093582, -0.012934275902807713, -0.018895089626312256, 0.006317542400211096, -0.01120817195624113, 0.0358339287340641, -0.017192000523209572, 0.004565546289086342, 0.02286512963473797, -0.021553291007876396, 0.022807592526078224, -0.034890323877334595, 0.00803789310157299, -0.04006863757967949, 0.014303652569651604, -0.016467036679387093, 0.037652090191841125, -0.016639646142721176, 0.02754862606525421, -0.016674168407917023, 0.029021568596363068, 0.03403877839446068, -0.017882442101836205, -0.009205890819430351, 0.004890629090368748, 0.035995032638311386, 0.03249679133296013, 0.020264465361833572, 0.024671785533428192, -0.014223100617527962, -0.026605023071169853, -0.028952525928616524, -0.004427457693964243, -0.0016671292250975966, 0.01731858216226101, 0.013486629351973534, 0.0029832839500159025, 0.002192152664065361, 0.02224373258650303, 0.011944642290472984, -0.04361290484666824, 0.019090715795755386, -0.03166826441884041, -0.042047902941703796, 0.004850353579968214, 0.04411923140287399, -0.024763844907283783, -0.0023935313802212477, 0.002429492073133588, 0.014602843672037125, 0.03675451874732971, -0.03567282482981682, 0.004905013367533684, -0.02182946726679802, -0.017364609986543655, 0.020966416224837303, 0.02140369452536106, -0.004228956066071987, 0.012635084800422192, -0.018296707421541214, 0.06375078856945038, -0.01680075004696846, 0.016651153564453125, 0.010598281398415565, 0.005442982539534569, 0.0002430930471746251, 0.006651255767792463, -0.0125430254265666, 0.034890323877334595, -0.032749954611063004, 0.01044293213635683, 0.013636224903166294, -0.019125238060951233, 0.021150533109903336, 0.02069023810327053, -0.025339214131236076, -0.033026132732629776, -0.011806554161012173, -0.0003959252208005637, 0.02621377259492874, 0.006858388427644968, 0.01616784557700157, 0.005063239485025406, 0.017491191625595093, 0.017951486632227898, 0.03440701588988304, 0.004257724154740572, 0.01669718325138092, -0.015293285250663757, -0.020356524735689163, -0.009067801758646965, 0.014050490222871304, -0.024418624117970467, 0.023382961750030518, 0.013279496692121029, -0.007784731220453978, 0.02224373258650303, 0.019217295572161674, -0.013728284277021885, 0.00017584688612259924, 0.030057232826948166, 0.002597787184640765, -0.018584391102194786, -0.006438369397073984, -0.02069023810327053, 0.030356423929333687, 0.03387767821550369, -0.039999593049287796, -0.024556713178753853, -0.01398144569247961, 0.014211593195796013, -0.043382760137319565, -0.009453298524022102, 0.04260025918483734, 0.03813540190458298, -0.010299090296030045, 0.03256583586335182, 0.030264364555478096, -0.008820394054055214, 0.044924743473529816, -0.013314018957316875, 0.018975641578435898, 0.005043101962655783, -0.003184662666171789, -0.018423287197947502, 0.023129800334572792, -0.041012242436409, 0.0019835815764963627, 0.0019317985279485583, -0.033141206949949265, 0.03594900295138359, -0.020632700994610786, -0.0389179028570652, -0.0012212188448756933, 0.017859427258372307, 0.014752439223229885, -0.01997678168118, 0.012255341745913029, 0.013279496692121029, 0.02662803791463375, 0.024050388485193253, 0.0024841520935297012, 0.008394621312618256, 0.012048209086060524, -0.03944724053144455, 0.016213875263929367, 0.050770483911037445, 0.016754720360040665, -0.018664943054318428, -0.016984866932034492, -0.021553291007876396, -0.004853230435401201, -0.030356423929333687, -0.05095460265874863, -0.011242693290114403, 0.0368695892393589, -0.03330230712890625, -0.009821534156799316, 0.028331127017736435, -0.013613210059702396, 0.010529236868023872, 0.026466934010386467, 0.00916561484336853, 0.01957402378320694, 0.0017347349785268307, 0.01131749153137207, -0.0256153903901577, -0.03629422187805176, -0.027732744812965393, -0.02849223092198372, 0.00849818717688322, 0.030057232826948166, -0.02938980422914028, -0.01831972226500511, -0.005822725594043732, 0.004116759169846773, 0.003670848673209548, 0.0071921017952263355, 0.01578810252249241, -0.02487891912460327, -0.05192122235894203, -0.031023850664496422, -0.039401210844516754, 0.008417636156082153, 0.0015247255796566606, -0.006720299832522869, -0.02662803791463375, -0.008900945074856281, 0.0025244278367608786, -0.002613609889522195, 0.02457972802221775, -0.00043871821253560483, 0.012301371432840824, 0.01896413415670395, -0.02101244404911995, 0.0250860508531332, 0.022611968219280243, 0.04773254320025444, 0.02202509343624115, -0.041357461363077164, -0.011248447000980377, -0.018411781638860703, 0.021392187103629112, -0.014729424379765987, -0.0012809133622795343, 0.019240310415625572, -0.040736064314842224, -0.015903174877166748, 0.011760525405406952, 0.007974602282047272, 0.011967657133936882, 0.016467036679387093, -0.032105542719364166, 0.004298000130802393, -0.005560933146625757, -0.03134605661034584, 0.012796187773346901, -0.0050718700513243675, 0.0250860508531332, -0.0034119330812245607, 0.011536131612956524, -0.020759282633662224, -0.008745595812797546, 0.03415385261178017, -0.02602965570986271, 0.017445161938667297, -0.013164423406124115, -0.028515245765447617, -0.010207030922174454, 0.002797727705910802, -0.016340455040335655, 0.0023230488877743483, -0.03104686550796032, 0.020322002470493317, -0.009856056421995163, -0.014073505066335201, -0.01803203858435154, 0.010517729446291924, 0.02550031617283821, 0.0034205636475235224, 0.04616754129528999, 0.016041263937950134, -0.01607578620314598, -0.019217295572161674, 0.012416444718837738, -0.014188578352332115, 0.0017965870210900903, -0.027479583397507668, 0.0163979921489954, -0.031806349754333496, 0.006283020135015249, 0.02846921607851982, 0.022462371736764908, -0.0014873266918584704, -0.009102324023842812, -0.03247377648949623, -0.0251090656965971, 0.06402696669101715, 0.023728182539343834, 0.00643261568620801, 0.008026385679841042, -0.016225382685661316, -0.015385344624519348, 0.013843357563018799, 0.0019274832447990775, 0.003978670574724674, 0.0073301903903484344, 0.004568423144519329, -0.00916561484336853, -0.03475223481655121, 0.015500417910516262, 0.01004017423838377, -0.015247255563735962, -0.03739893063902855, -0.02130012959241867, -0.05873357877135277, -0.026075685396790504, 0.02079380489885807, -0.0032421995420008898, -0.014073505066335201, 0.004997072275727987, -0.03403877839446068, 0.013221959583461285, 0.006933186203241348, 0.022473879158496857, 0.012934275902807713, -0.016950346529483795, 0.01802053116261959, -0.022692520171403885, 0.006783590652048588, -0.0037398929707705975, -0.013325526379048824, -0.030471496284008026, 0.0007278406992554665, 0.02037953957915306, 1.554168193251826e-05, 0.008734088391065598, 0.018607405945658684, -0.08446404337882996, -0.017053911462426186, -0.017571743577718735, 0.01086295023560524, 0.028653332963585854, -0.012266849167644978, 0.0327729694545269, -0.009769750759005547, -0.04842298477888107, 0.014050490222871304, -0.004853230435401201, -0.009372747503221035, 0.0017778875771909952, -0.004997072275727987, 0.01647854410111904, 0.0036679720506072044, 0.016121815890073776, -0.011421057395637035, -0.028354141861200333, 0.005868755280971527, -0.019999796524643898, 0.024326564744114876, -0.013129901140928268, 0.06190961226820946], [0.047021035104990005, 0.03689306601881981, 0.04112284630537033, 0.010686065070331097, -0.008624047972261906, 0.01749483309686184, -0.03158234432339668, 0.05982786417007446, 0.011608392000198364, 0.021372130140662193, -0.03724554926156998, 0.006485660094767809, -0.01838778704404831, 0.01138515304774046, -0.020549673587083817, 0.008101200684905052, 0.028785990551114082, -0.015732426196336746, -0.03567112982273102, -0.0036658078897744417, -0.01882251352071762, 0.029232468456029892, -0.04124033823609352, -0.00197683391161263, 0.015180204063653946, -0.02352226711809635, 0.02341652289032936, -0.0017506582662463188, 0.042203787714242935, -0.05761897936463356, 0.0257781483232975, -0.01065081637352705, 0.030994875356554985, -0.02789303846657276, 0.016742872074246407, -0.05310721695423126, -0.02441522106528282, 0.016296396031975746, -0.02096090093255043, -0.014909968711435795, 0.0008525646990165114, 0.0036334970500320196, -0.0031488349195569754, -0.025355171412229538, -0.041663315147161484, 0.06805243343114853, 0.015556184574961662, -0.022582316771149635, -0.012677585706114769, 0.016966110095381737, 0.030900880694389343, 0.014322499744594097, 0.017071854323148727, 0.0012241390068084002, 0.07129526138305664, 0.0246502086520195, -0.004203342366963625, 0.053436197340488434, -0.02376900427043438, -0.03259279206395149, -0.01389952190220356, -0.053530193865299225, 0.008206944912672043, 0.02756405435502529, -0.01288907416164875, 0.020584920421242714, -0.019703717902302742, 0.03553013876080513, -0.06128478795289993, 0.0006667775451205671, -0.012865575961768627, 0.024180233478546143, -0.03146485239267349, -0.033697232604026794, -0.028621500357985497, 0.009834234602749348, 0.0050228615291416645, -0.0063387928530573845, 0.03487217053771019, -0.028856487944722176, -0.03550663962960243, 0.025049686431884766, -0.005607393570244312, 0.01680161990225315, 0.00935250986367464, 0.0033485745079815388, -0.02375725470483303, 0.011866877786815166, -0.05212026834487915, 0.01670762337744236, 0.01715410128235817, -0.02038518153131008, -0.03865547478199005, 0.016202401369810104, 0.03545964136719704, -0.02072591334581375, 0.055551089346408844, 0.005061047151684761, -0.025167180225253105, 0.07937883585691452, -0.016860365867614746, 0.01220761053264141, -0.007971957325935364, 0.04558761045336723, 0.008060077205300331, -0.04044137895107269, -0.041968800127506256, 0.02060841955244541, 0.05437615141272545, -0.0021633554715663195, 0.020831657573580742, -0.01724809594452381, 0.003392634680494666, 0.08384360373020172, -0.04424818232655525, -0.004194530192762613, -0.010774184949696064, 0.0016052596038207412, 0.016625378280878067, -0.019480478018522263, 0.0012505750637501478, -0.015896916389465332, -0.029655445367097855, -0.06020384281873703, -0.006573780439794064, 0.027963533997535706, -0.027869539335370064, 0.041639816015958786, -0.04448316991329193, 0.003730429569259286, 0.04641006886959076, -0.05616205558180809, 0.06222473829984665, -0.00527253607288003, 0.0009590435074642301, -0.007919085212051868, -0.015509187243878841, -0.0005650719394907355, -0.008870785124599934, 0.026483111083507538, 0.06856940686702728, 0.008042453788220882, -0.0008481586701236665, 0.015485688112676144, -0.021325131878256798, 0.032780781388282776, -0.010075096972286701, 0.03282777965068817, -0.03268678858876228, 0.0007490232237614691, -0.04323773458600044, 0.02295829728245735, -0.047467511147260666, -0.029678944498300552, 0.009346635080873966, 0.009346635080873966, 0.035342149436473846, 0.022605815902352333, -0.043778207153081894, 0.024814698845148087, -0.039853911846876144, -0.006832266692072153, 0.03285127878189087, 0.03992440924048424, -0.0009237953345291317, 0.05197927728295326, -0.020244188606739044, 0.01248959545046091, -0.033579740673303604, -0.02711757831275463, -0.011949123814702034, 0.007296367548406124, -0.03271028399467468, -0.02143087610602379, -0.07148325443267822, 0.014956966042518616, 0.02949095517396927, 0.012818577699363232, -0.013582288287580013, -0.032898277044296265, -0.0013497105101123452, 0.012360352091491222, -0.0571960024535656, -0.010515699163079262, -0.047350019216537476, 0.027752045542001724, -0.019456980749964714, -0.01702485792338848, -0.0358591191470623, 0.03273378312587738, 0.02441522106528282, -0.02184210531413555, 0.03263979032635689, 0.02117238938808441, -0.005395904649049044, -0.014757226221263409, -0.023451771587133408, 0.015297697857022285, 0.013981766998767853, -0.02441522106528282, 0.0437312088906765, -0.02904447726905346, 0.0818697065114975, -0.022288581356406212, -0.024391721934080124, -0.01862277463078499, 0.00397716648876667, 0.004015352111309767, 0.009746113792061806, -0.018082302063703537, 0.04619857668876648, 0.010257212445139885, -0.021595368161797523, 0.00411815894767642, 0.02387474849820137, 0.0003662503440864384, 0.040629372000694275, -0.012160612270236015, -0.028316015377640724, -0.006520908325910568, -0.03419070690870285, 0.011408652178943157, 0.031206363812088966, -0.039853911846876144, -0.0627887099981308, -0.04650406166911125, -0.017776818946003914, -0.02443871833384037, 0.02598963864147663, -0.052308257669210434, -0.02587214484810829, 0.0285745020955801, 0.012031369842588902, -0.02610713243484497, -0.01862277463078499, -0.03416720777750015, -0.046480562537908554, 0.003959542606025934, -0.034566689282655716, 0.026530109345912933, -0.026600604876875877, 0.041075848042964935, 0.04178081080317497, 0.036822568625211716, 0.001020727795548737, -0.02210059203207493, -0.0142990006133914, -0.014275501482188702, 0.005466401111334562, 0.005907002836465836, 0.026060134172439575, -0.03115936741232872, 0.08088275790214539, -0.024485716596245766, 0.016672376543283463, -0.0074432347901165485, 0.0025643031112849712, -0.014486990869045258, 0.041968800127506256, 0.04683304578065872, 0.02643611468374729, -0.031135868281126022, 0.006491534877568483, -0.01634339429438114, -0.03665807843208313, -0.005727824755012989, 0.032475296407938004, -0.00045712446444667876, -0.034472692757844925, 0.0013599912635982037, -0.029396958649158478, 0.013041816651821136, 0.022793805226683617, -0.05122731626033783, -0.06828741729259491, 0.06758245825767517, 0.0062154242768883705, -0.04044137895107269, -0.0012476377887651324, -0.02779904380440712, -0.06358766555786133, 0.008477180264890194, 0.038725968450307846, -0.04156932234764099, 0.016120154410600662, -0.001221201615408063, 0.007554853800684214, 0.024697205051779747, 0.0033162636682391167, 0.008441932499408722, 0.10283061116933823, 0.011520271189510822, 0.049723394215106964, 0.014439993537962437, 0.029185470193624496, 0.01996220462024212, -0.03686956688761711, 0.016648877412080765, 0.013723280280828476, -0.03639959171414375, 0.030900880694389343, 0.04765550047159195, -0.011156040243804455, -0.031088870018720627, -0.07829789817333221, 0.04168681427836418, 0.045117635279893875, 0.01182575523853302, -0.06236572936177254, 0.03966592252254486, 0.006609028670936823, 0.044906146824359894, -0.0594048872590065, 0.008547676727175713, -0.05996885523200035, 0.003983041271567345, 0.008283316157758236, 0.011038546450436115, 0.007601851597428322, 0.037950512021780014, 0.07185923308134079, -0.006985008716583252, 0.009105772711336613, -0.04058237373828888, 0.013558789156377316, -0.010304209776222706, -0.04121683910489082, 0.004884806461632252, 0.011678887531161308, -0.0055486466735601425, -0.02086690627038479, 0.03294527158141136, 0.0033720731735229492, 0.03421420603990555, -0.04004190117120743, -0.005909940227866173, -0.06354066729545593, 0.02655360847711563, 0.011344030499458313, 0.02782254107296467, -0.03644658997654915, 0.010221964679658413, -0.03017241880297661, -0.003043090458959341, -0.04194530099630356, 0.033015768975019455, 0.04868944734334946, 0.008142323233187199, 0.04246227443218231, 0.025590158998966217, 0.049723394215106964, 0.01428725104779005, -0.058558929711580276, -0.009458254091441631, -0.022041844204068184, -0.03202882036566734, 0.0071495003066957, -0.0008753291331231594, -0.030783386901021004, 0.017635826021432877, -0.07209422439336777, 9.739137749420479e-05, 0.004024164285510778, 0.06344667822122574, -0.006579655222594738, -0.003750990843400359, -0.03440219536423683, -0.011796381324529648, 0.004508825950324535, 0.009840109385550022, 0.02690608985722065, 0.0072082472033798695, 0.02779904380440712, -0.029208969324827194, 0.03294527158141136, -0.0025966139510273933, -0.020808158442378044, 0.028762493282556534, -0.01827029325067997, -0.011608392000198364, 0.05949888005852699, 0.012348602525889874, 0.05404716730117798, 0.04154582321643829, 0.012160612270236015, 0.0053136590868234634, -0.07298717647790909, -0.007284617982804775, -0.012195860967040062, 0.02273505926132202, -0.005149167496711016, 0.011391027830541134, -0.014275501482188702, -0.035389143973588943, -0.001593510271050036, 0.0313708558678627, 0.03830299153923988, 0.011250034905970097, -0.005210851784795523, -0.0639636442065239, 0.037151552736759186, -0.04203929752111435, 0.032569292932748795, -0.03945443034172058, -0.004388394765555859, -0.04330822825431824, -0.024180233478546143, 0.014745477586984634, 0.007819214835762978, -0.011579018086194992, 0.05024036765098572, 0.021548369899392128, 0.013041816651821136, 0.022476572543382645, -0.006885139271616936, -0.002483526011928916, 0.03050140105187893, 0.048360466957092285, -0.05099232867360115, -0.03780951723456383, -0.0005915080546401441, 0.016167152673006058, -0.01226635742932558, -0.011972622014582157, -0.019915206357836723, 0.022582316771149635, 0.018000056967139244, 4.167359657003544e-05, 0.060908809304237366, -0.020490925759077072, -0.012642337009310722, 0.013711531646549702, 0.013359049335122108, 0.008659295737743378, -0.03174683451652527, -0.0024600273463875055, -0.02420373074710369, -0.02094915136694908, 0.0035277525894343853, 0.0005430418532341719, 0.002273505786433816, -0.02655360847711563, 0.03987741097807884, 0.01615540310740471, -0.030289912596344948, 0.03003142587840557, -0.0313943549990654, 0.032475296407938004, 0.028879987075924873, -0.007437360007315874, -0.009934104047715664, -0.0013548508286476135, -0.029772939160466194, -0.0076899719424545765, -0.018987005576491356, -0.06438662856817245, 0.01727159507572651, -0.04953540489077568, 0.07604201138019562, -0.018998753279447556, 0.012137114070355892, -0.0029667194467037916, 0.03047790192067623, 0.02610713243484497, 0.003677557222545147, 0.011902126483619213, 0.020220689475536346, 0.006597279105335474, -0.013488292694091797, -0.03160584345459938, 0.0029388146940618753, -0.02758755348622799, 0.009011778049170971, -0.017118852585554123, 7.853958777559455e-06, 0.0046468814834952354, 0.007654723711311817, 0.017306843772530556, 0.012630588375031948, 0.010292460210621357, -0.0066031538881361485, 0.0033338877838104963, -0.03343874588608742, -0.0560680627822876, 0.026530109345912933, -0.0011183945462107658, 0.04873644560575485, -0.013782027177512646, -0.007360989227890968, -0.018775515258312225, -0.06321168690919876, 0.0030284037347882986, 0.039853911846876144, -0.010944551788270473, 0.0021560119930654764, 0.006238922942429781, -0.025919141247868538, -0.03510715812444687, 0.009710866026580334, -0.010392330586910248, -0.005539834499359131, -0.0403708852827549, 0.03684606775641441, -0.013793776743113995, -0.001191828167065978, -0.037833016365766525, 0.023921746760606766, 0.016648877412080765, -0.03912544995546341, 0.010944551788270473, -0.02610713243484497, -0.00485249562188983, 0.012137114070355892, -0.014898219145834446, 0.0039947908371686935, 0.004517638124525547, 0.0020150193013250828, 0.010492200031876564, -0.023909997195005417, 0.020902154967188835, -0.02344002202153206, 0.020772911608219147, -0.015767673030495644, 0.0033133262768387794, -0.04561110958456993, 0.0005518539110198617, 0.009781362488865852, -0.03842048719525337, 0.0033426997251808643, -0.0018020618008449674, -0.010421703569591045, -0.050851333886384964, -0.020443929359316826, 0.015532685443758965, -0.0493474118411541, -0.015885166823863983, 0.03172333911061287, 0.012184111401438713, 0.01949222758412361, 0.009939978830516338, -0.0053635938093066216, -0.04067636653780937, 0.005069859325885773, -0.00868866965174675, 0.007396237459033728, 0.023686759173870087, 0.02678859606385231, 0.021372130140662193, -0.010727187618613243, 0.001401848392561078, -0.013852523639798164, 0.007366864010691643, -0.004714440554380417, 0.014839472249150276, -0.02150137349963188, 0.03668157756328583, 0.03430820256471634, 0.029279464855790138, 0.010503949597477913, 0.0005804930115118623, 0.041663315147161484, 0.015626680105924606, 0.013711531646549702, 0.002536398358643055, -0.03498966619372368, -0.023381274193525314, 0.010586194694042206, -0.03038390725851059, -0.007543104700744152, -0.003163521643728018, -0.017212847247719765, 0.03898445516824722, 0.010797684080898762, -0.04873644560575485, 0.04403669014573097, 0.021818606182932854, -0.01926898956298828, -0.013629285618662834, 0.026976585388183594, -0.011514396406710148, -0.0015582620399072766, 0.029185470193624496, -0.0044794525019824505, -0.03943093493580818, -0.012689335271716118, -0.0010743342572823167, -0.02420373074710369, -0.03677557408809662, -0.01092692743986845, 0.039853911846876144, 0.013676282949745655, -0.03510715812444687, 0.00885316077619791, -0.015003963373601437, 0.01963322050869465, 0.018105801194906235, -0.004690941423177719, -0.0007908804109320045, -0.03104187361896038, -0.009887106716632843, 0.016942612826824188, -0.007819214835762978, -0.01657838188111782, 0.02352226711809635, -0.025613658130168915, -0.012806829065084457, 0.007537229917943478, -0.025049686431884766, 0.02655360847711563, 0.01960972137749195, 0.024485716596245766, -0.003040153067559004, -0.08008380234241486, -0.02836301364004612, -0.032569292932748795, -0.03261629119515419, -0.03856147825717926, 0.014252003282308578, -0.00403591338545084, -0.004764375276863575, 0.00020928590674884617, -0.008671045303344727, 0.010127969086170197, -0.04112284630537033, -0.018011806532740593, 0.013746779412031174, -0.021442625671625137, -0.028081027790904045, -0.029208969324827194, -0.05075734108686447, -0.010157343000173569, -0.02184210531413555, -0.036023613065481186, -0.02254706807434559, 0.009569873102009296, 0.021783357486128807, -0.007754593621939421, -0.04382520169019699, 0.004159281961619854, 0.0022925985977053642, 0.03376772999763489, -0.0002456355723552406, 0.01176700834184885, -0.06542056798934937, 0.0470445342361927, 0.011126667261123657, -0.004006539937108755, 0.014909968711435795, 0.042767759412527084, -0.0006722850957885385, 0.02993743121623993, -7.609561725985259e-05, 0.002445340622216463, -0.030571898445487022, -0.007760468404740095, -0.017917810007929802, -0.04840746149420738, -0.013053566217422485, 0.0009685898548923433, 0.06241272762417793, -0.03891396149992943, 0.016966110095381737, 0.04676254838705063, -0.004749688319861889, 0.03146485239267349, 0.015497437678277493, 0.027728546410799026, -0.01568542793393135, -0.009675618261098862, -0.010838806629180908, 0.010221964679658413, 0.031229862943291664, -0.017353840172290802, -0.0291619710624218, 0.021054895594716072, -0.0009524344350211322, -0.042650263756513596, 0.03285127878189087, -0.011696511879563332, 0.02970244362950325, 0.011232411488890648, 0.0015494499821215868, 0.0011455649510025978, 0.01579117216169834, 0.021806856617331505, -0.033885225653648376, 0.011126667261123657, -0.01581467129290104, 0.028386512771248817, 0.007989581674337387, -0.001155111356638372, -0.006385790184140205, -0.023064041510224342, 0.010409954003989697, 0.02702358365058899, 0.014639732427895069, -0.02643611468374729, -0.01540344301611185, -0.010033974424004555, -0.0001719265419524163, -0.013441295363008976, 0.02051442489027977, 0.005613268353044987, -0.052402254194021225, -0.036470089107751846, -0.03454319015145302, -0.007554853800684214, -0.014780725352466106, 0.07721695303916931, -0.0022632251493632793, -0.018411284312605858, 0.008036579005420208, -0.007272868882864714, -0.04109934717416763, 0.0045675733126699924, 0.00313708558678627, -0.008565301075577736, 0.03174683451652527, 0.014369497075676918, -0.006280045956373215, 0.020808158442378044, 0.0308068860322237, -0.014968715608119965, 0.013887772336602211, 0.04128733649849892, 0.003645246382802725, -0.026976585388183594, -0.010844681411981583, -0.016543133184313774, 0.0025334609672427177, 0.039618924260139465, -0.007836839184165001, 0.019304238259792328, 0.011179539375007153, -0.05235525593161583, 0.014099260792136192, -0.06349366903305054, 0.03268678858876228, -0.026929588988423347, -0.019691968336701393, 0.005043423268944025, -0.030360408127307892, 0.0014951091725379229, -0.017353840172290802, -0.011626015417277813, 0.009687366895377636, 0.016977859660983086, -0.005554521456360817, 0.005719012580811977, -0.0036334970500320196, 0.018587525933980942, 0.007490232586860657, -0.018787264823913574, 0.00981073547154665, 0.03562413156032562, -0.0006491534877568483, 0.015379943884909153, 0.007243495434522629, 0.021771609783172607, 0.03320375829935074, -0.031323857605457306, -0.030877381563186646, 0.019656719639897346, 0.03600011393427849, -0.0020032699685543776, 0.014710228890180588, -0.03308626636862755, -0.003034278517588973, 0.015896916389465332, -0.005081608425825834, -0.0011308782268315554, 0.010409954003989697, 0.00025261176051571965, 0.03489566966891289, -0.006844016257673502, -0.019903456792235374, -0.05559808760881424, -0.01266583614051342, 0.012078367173671722, 0.005105107557028532, 0.020714163780212402, -0.0025789898354560137, -0.005152104888111353, -0.0009399507544003427, -0.008612298406660557, -0.017741570249199867, 0.02566065452992916, 0.01895175687968731, -0.023357775062322617, 0.005986311007291079, -0.027752045542001724, 0.028997480869293213, 0.0044442047365009785, 0.002170698717236519, -0.031088870018720627, 0.0007086347322911024, -0.009499376639723778, -0.03275728225708008, 0.023334277793765068, 0.0029344086069613695, 0.006327043287456036, 0.0392429418861866, -0.020267687737941742, 0.018763765692710876, 0.048031482845544815, -0.011156040243804455, -0.027775544673204422, 0.002280849264934659, 0.00479374872520566, 0.0035395019222050905, 0.03933693841099739, 0.006767645478248596, 0.018000056967139244, 0.017283344641327858, -0.013218057341873646, -0.0313943549990654, -0.01601441018283367, 0.04173381254076958, 0.013323801569640636, 0.002721451222896576, 0.0252141784876585, -0.00851242896169424, 0.00583063205704093, 0.00912927184253931, 0.04695053771138191, 0.04396619647741318, -0.028081027790904045, -0.009076399728655815, -0.034261204302310944, 0.0257781483232975, 0.013441295363008976, -0.005184415727853775, 0.001453986275009811, 0.004781999159604311, -0.014862971380352974, 0.025026189163327217, -0.009775487706065178, 0.02262931317090988, 0.016977859660983086, 0.013594037853181362, 0.0285980012267828, -0.020761162042617798, 0.009405381977558136, -0.006661900784820318, 0.008306814357638359, 0.04403669014573097, 0.014592735096812248, -0.011972622014582157, -0.018634524196386337, 0.02131338231265545, -0.03169983997941017, -0.011438025161623955, 0.0020208940841257572, 0.01312406174838543, -0.00619192561134696, -0.04549361392855644, -0.0009524344350211322, -0.035013165324926376, -0.010151468217372894, -0.06546756625175476, 0.021266385912895203, 0.004156344570219517, -0.005472275894135237, 0.04441267251968384, -0.010004600510001183, 0.017847314476966858, -0.011114917695522308, -0.021019648760557175, -0.013676282949745655, -0.0026964836288243532, 0.010615568608045578, -0.021477874368429184, 0.023369524627923965, -0.026718098670244217, 0.0021809793543070555, -0.015849919989705086, 0.011349905282258987, -0.0024394658394157887, -0.020267687737941742, 0.007308117114007473, -0.009663868695497513, -0.0021560119930654764, 0.03736304119229317, 0.01395826879888773, -0.0035982488188892603, -0.009205642156302929, -0.026976585388183594, 0.04335522651672363, 0.029514452442526817, 0.001675755949690938, 0.045023638755083084, 0.005651453975588083, 0.001630227081477642, 0.019257239997386932, 0.004502951633185148, -0.00942300632596016, -0.014052263461053371, -0.0008327375981025398, -0.003022529184818268, -0.02254706807434559, -0.04079386219382286, 0.006068557035177946, -0.02645961381494999, -0.0040300386026501656, -0.02892698347568512, 0.0481724739074707, -0.041663315147161484, 0.014757226221263409, 0.0005793914897367358, 0.009240890853106976, 0.029772939160466194, -0.0023205033503472805, 0.015027462504804134, 0.000502286187838763, 0.06598453968763351, -0.004796686116605997, -0.011109042912721634, -0.011238286271691322, 0.014604484662413597, -0.003924294374883175, 0.048031482845544815, 0.00625067250803113, 0.04081736132502556, -0.008976529352366924, 0.011050296016037464, -0.01002809964120388, 0.020103195682168007, 0.01971546746790409, 0.04213329032063484, -0.018458282575011253, 0.00017926990403793752, 0.007390362676233053, -0.017565328627824783, 0.03395571932196617, 0.0009517001453787088, -0.001963615883141756, -0.0030166544020175934, 0.003689306555315852, 0.002778729423880577, -0.008300939574837685, -0.012712833471596241, 0.01552093680948019, -0.031112369149923325, -0.02253531850874424, -0.0009568404639139771, 0.051509298384189606, -0.009223266504704952, 0.02714107744395733, -0.012184111401438713, -0.005134481005370617, 0.06814642995595932, -0.01738908886909485, 0.019433481618762016, 0.02096090093255043, 0.028386512771248817, 0.00790733564645052, 0.021912600845098495, -0.024180233478546143, -0.021466124802827835, 0.030877381563186646, -0.0038156125228852034, -0.00431496137753129, 0.017436085268855095, -0.03837348893284798, 0.0140170156955719, 0.007813340052962303, 0.0359061174094677, -0.02141912654042244, 0.027376065030694008, 0.027188075706362724, -0.012712833471596241, 0.03130035847425461, 0.01400526612997055, -0.0038567353039979935, -0.04878344386816025, -0.004773187451064587, -0.03529515117406845, 0.0023249094374477863, 0.002276443177834153, -0.007014382164925337, -0.020890405401587486, 0.05390617623925209, -0.013288553804159164, 0.015767673030495644, 0.0032457674387842417, 0.013276804238557816, 0.08163472265005112, -0.021477874368429184, 0.005748386029154062, -0.0027743233367800713, 0.02242957428097725, 0.014909968711435795, 0.007725220173597336, -0.004077036399394274, 0.025073185563087463, 0.051180317997932434, 0.02005619928240776, 0.0224178247153759, 0.0032839528284966946, -0.005742511712014675, 0.030007926747202873, -0.012759830802679062, 0.026741597801446915, 0.009358384646475315, -0.007437360007315874, 0.018188046291470528, 0.00577188516035676, -0.0011338156182318926, -0.04109934717416763, 0.009499376639723778, 0.0036305596586316824, -0.0448356494307518, -0.011908001266419888, 0.004937678575515747, -0.007631225045770407, 0.012994819320738316, 0.0035806249361485243, -0.0314178541302681, -0.00022948015248402953, -0.009123397059738636, -0.009904731065034866, 0.027611052617430687, 0.018188046291470528, 0.04777299612760544, 0.03038390725851059, 0.0017227533971890807, 0.033885225653648376, 0.012278106063604355, 0.03964242339134216, -0.01092692743986845, 0.007960207760334015, 0.01080943364650011, 0.024297727271914482, 0.01635514199733734, 0.008383185602724552, 0.03867897391319275, -0.0018710894510149956, -0.027658050879836082, 0.011567268520593643, 0.03115936741232872, -0.01671937294304371, -0.02702358365058899, -0.05461113899946213, -0.0051462301053106785, 0.013547039590775967, -0.02287605032324791, -0.02453271485865116, 0.013312052004039288, -0.012090116739273071, -0.010163216851651669, -0.011667138896882534, 0.022453073412179947, -0.05179128423333168, 0.014663231559097767, 0.008518303744494915, -0.0037363041192293167, 0.0142990006133914, 0.00565732829272747, 0.001910743652842939, -0.017741570249199867, 0.00627417117357254, -0.037927012890577316, -0.012125364504754543, 0.004071161616593599, -0.005557458847761154, -0.00027060299180448055, -0.030360408127307892, -0.010051597841084003, 0.03353274241089821, -0.02288779988884926, -0.004056474659591913, 0.026271622627973557, 0.004138720687478781, 0.04617508128285408, 0.0021941973827779293, 0.02039693109691143, 0.020338183268904686, -0.01995045505464077, 0.006567905656993389, 0.020596669986844063, -0.02467370592057705, -0.010333583690226078, -0.01636689156293869, -0.0019709591288119555, 0.00347488047555089, 0.012372101657092571, -0.013970017433166504, -0.00018138112500309944, -0.0014605952892452478, 0.017553579062223434, 0.009628619998693466, 0.0493474118411541, 0.014980465173721313, -0.013406047597527504, -0.011590767651796341, 0.02141912654042244, -0.0005672749830409884, -0.009892981499433517, 0.020667167380452156, -0.0018373099155724049, 0.008054202422499657, 0.01394651923328638, 0.020091446116566658, -0.030407406389713287, 0.03689306601881981, -0.014146258123219013, 0.016778120771050453, 0.026083633303642273, -0.01254834234714508, 0.027634551748633385, 0.003351511899381876, 0.0031928950920701027, 0.027869539335370064, -0.0229817945510149, 0.02845700830221176, 0.013159310445189476, 0.013535290956497192, 0.00818932056427002, -0.0263656172901392, -0.02197134867310524, -0.00817169714719057, 0.0007045958773232996, -0.0527312345802784, -0.01446349173784256, -0.01669587567448616, 0.008606423623859882, -0.01682511903345585, 0.013817275874316692, 0.01406401302665472, -0.01892825774848461, 0.014909968711435795, -0.026177627965807915, -0.003777426900342107, -0.021113643422722816, 0.003013717010617256, -0.009657993912696838, 0.00028822707827202976, -0.047350019216537476, -0.024509215727448463, -0.00485249562188983, -0.009058775380253792, 0.017459584400057793, -0.008447807282209396, -0.015638429671525955, -0.012936072424054146, 0.012078367173671722, -0.001506858505308628, 0.06062682345509529, -0.012630588375031948, -0.0007842713966965675, 0.008312689140439034, 0.020537924021482468, -0.00018404309230390936, 0.017001358792185783, 0.040629372000694275, 0.003351511899381876, 0.0023895311169326305, -0.011449774727225304, 0.00619192561134696, 0.025073185563087463, 0.009293762966990471, -0.025731151923537254, -0.005536897107958794, 0.014874720014631748, 0.017071854323148727, -0.0032222685404121876, -0.011402777396142483, -0.0027273257728666067, -0.05197927728295326, 0.012595339678227901, -0.006409288849681616, -0.02587214484810829, -0.028973981738090515, 0.005290160421282053, 0.003163521643728018, -0.015332946553826332, 0.017060106620192528, 0.007184748537838459, -0.020796410739421844, 0.023040542379021645, 0.03226380795240402, 0.037950512021780014, -0.020338183268904686, -0.023381274193525314, 0.009376008994877338, 0.011520271189510822, 0.012066617608070374, -0.0007383753545582294, -0.001910743652842939, 0.008706294000148773, 0.01771807111799717, 0.03228730708360672, 0.0032340181060135365, 0.03353274241089821, -0.02163061685860157, 0.022840803489089012, -0.03757452964782715, 0.006485660094767809, 0.016848616302013397, -0.003163521643728018, -0.0056279548443853855, 0.03195832669734955, 0.028832988813519478, -0.009058775380253792, -0.0054252780973911285, -0.025308173149824142, -0.04173381254076958, 0.006244797725230455, -0.008441932499408722, -0.02165411412715912, 0.013253305107355118, -0.002742012497037649, 0.005102170165628195, -0.012125364504754543, 9.147079254034907e-05, 0.0011286751832813025, -0.00039617455331608653, 0.01462798286229372, -0.028644999489188194, 0.019868208095431328, 0.018434783443808556, 0.02163061685860157, 0.015544435009360313, -0.008723917417228222, 0.02815152518451214, -0.005134481005370617, -0.0048201847821474075, -0.047256022691726685, -0.010433453135192394, 0.01984470896422863, 0.03440219536423683, 0.038631975650787354, -0.01646088808774948, -0.035248152911663055, 0.01996220462024212, 0.009681492112576962, 0.014710228890180588, 0.01683686673641205, -0.033908721059560776, 0.01884601265192032, -0.0006579654873348773, 0.010515699163079262, 0.007061379961669445, -0.0047408766113221645, -0.04840746149420738, -0.0257781483232975, 0.011238286271691322, -0.014921718277037144, -0.006826392374932766, 0.009052900597453117, 0.006932136602699757, 0.03125336021184921, 0.02206534333527088, -0.024180233478546143, 0.015356444753706455, 0.013206307776272297, -0.008964779786765575, 0.0036863693967461586, 0.02161886729300022, -0.006186050828546286, -0.02476770244538784, -0.013887772336602211, 0.011573143303394318, 0.05306021869182587, 0.0008555020322091877, 0.009757863357663155, 0.036376092582941055, 0.04420118406414986, 0.003921356983482838, 0.02488519623875618, 0.0068205175921320915, -0.026600604876875877, 0.001102973474189639, -0.025167180225253105, 0.017236346378922462, 0.006761770695447922, -0.0229817945510149, 0.014475241303443909, 0.03071288950741291, 0.0063387928530573845, 0.017906062304973602, 0.029890432953834534, -7.035861926851794e-05, -0.015943914651870728, -0.02378075383603573, 0.021936099976301193, 0.04283825308084488, 0.014839472249150276, -0.0004182046395726502, 0.005745448637753725, -0.026882590726017952, -0.04753800854086876, -0.0011903594713658094, -0.012348602525889874, -0.011226536706089973, 0.015332946553826332, -0.013018317520618439, 0.01086818054318428, 0.017060106620192528, 0.0046351319178938866, 0.002709701657295227, -0.01816454716026783, -0.026812095195055008, -0.003351511899381876, 0.0007060645730234683, -0.002116357907652855, 0.004344334825873375, -0.006000997964292765, 0.01579117216169834, 0.007266994100064039, -0.001960678491741419, 0.019797712564468384, -0.003645246382802725, -0.006468036212027073, 0.030900880694389343, 0.017788568511605263, -0.0207376629114151, -0.01260708924382925, -0.016225898638367653, -0.0038802342023700476, 0.02072591334581375, -0.043425723910331726, -0.0075842272490262985, -0.0015714801847934723, 0.06824042648077011, -0.03343874588608742, 0.0022529445122927427, 0.026741597801446915, 0.028292516246438026, -0.023498767986893654, 0.004928866866976023, 0.016214150935411453, -0.020796410739421844, 0.022147588431835175, -0.002235320396721363, 0.007590102031826973, -0.003900795476511121, 0.012125364504754543, -0.014134509488940239, 0.01975071430206299, -0.03933693841099739, 0.012994819320738316, -0.016225898638367653, -0.0018226231914013624, 0.017071854323148727, 0.021677613258361816, -0.0005026533617638052, -0.018552277237176895, 0.023628011345863342, -0.03386172652244568, -0.035342149436473846, -0.010016350075602531, -0.012219359166920185, 0.007760468404740095, -0.00817757099866867, 0.0015538560692220926, -0.021818606182932854, 0.043449223041534424, 0.0006722850957885385, -0.005475212819874287, 0.03607060760259628, -0.020678916946053505, -0.043096739798784256, 0.0036951813381165266, -0.017224596813321114, 0.005578020121902227, -0.04091135412454605, -0.00725524453446269, 0.018881259486079216, 0.017565328627824783, -0.041075848042964935, 0.020244188606739044, 0.0056896391324698925, 0.012137114070355892, 0.010274836793541908, 0.03531865030527115, 0.013817275874316692, 0.018411284312605858, 0.03461368754506111, 0.01862277463078499, -0.020326433703303337, -0.04171031340956688, -0.0381150022149086, -0.01648438535630703, 0.00936425942927599, 0.017306843772530556, -0.025637155398726463, -0.022829053923487663, -0.02230033092200756, -0.002173636108636856, -0.022218085825443268, 0.003924294374883175, -0.02700008451938629, -0.006321168504655361, -0.02198309823870659, -0.02311103790998459, -0.048360466957092285, -0.013617536053061485, -0.011584892868995667, 0.0059363762848079205, -0.017447834834456444, 0.015755923464894295, 0.027728546410799026, -0.03440219536423683, 0.03527165204286575, -0.012701083905994892, -0.03327425569295883, -0.01724809594452381, -0.023487018421292305, 0.03061889484524727, 0.008447807282209396, 0.0369635634124279, 0.026859091594815254, -0.034590188413858414, 0.035013165324926376, -0.026882590726017952, 0.016648877412080765, -0.01149089727550745, -0.006679524667561054, 0.011285283602774143, 0.004024164285510778, 0.004273838363587856, 0.035718128085136414, 0.02500269003212452, 0.029420457780361176, -0.028175022453069687, 0.02084340713918209, 0.014780725352466106, -0.011009172536432743, 0.00495530292391777, -0.006808768026530743, -0.01226635742932558, 0.035389143973588943, 0.021712861955165863, 0.001052304171025753, 0.00024361613031942397, 0.007701721508055925, 0.015191953629255295, -0.03397921845316887, 0.009011778049170971, -0.006879264488816261, -0.017177600413560867, 0.0258016474545002, 0.0011881564278155565, -0.004855433013290167, 0.002539335750043392, -0.032804280519485474, 0.021665863692760468, 0.021771609783172607, -0.0076723480597138405, -0.006297669839113951, -0.016989609226584435, 0.017412588000297546, 0.025308173149824142, 0.0030548397917300463, 0.005472275894135237, -0.0029373459983617067, -0.03635259345173836, 0.01424025371670723, -0.032240308821201324, -0.05597406625747681, -0.010874055325984955, 0.037598028779029846, -0.013829025439918041, 0.008001330308616161, 0.00529603473842144, 0.0252141784876585, -0.010327708907425404, 0.020808158442378044, 0.0025995513424277306, -0.028832988813519478, 0.05931089073419571, 0.027070581912994385, 0.013417797163128853, -0.02589564211666584, -0.04281475767493248, -0.008729792200028896, 0.030242914333939552, 0.007807465735822916, 0.04046487808227539, -0.03517765551805496, -0.0022632251493632793, -0.005357719026505947, -0.0324987955391407, 0.00891190767288208, 0.024932192638516426, -0.029326463118195534, -0.013229806907474995, -0.027517057955265045, 0.004000665154308081, -0.0142990006133914, -0.0021148892119526863, 0.0015920415753498673, 0.014099260792136192, -0.01646088808774948, -0.0015876354882493615, 0.02455621212720871, 0.007437360007315874, 0.004878931678831577, 0.013993516564369202, -0.012195860967040062, 0.030877381563186646, -0.015344696119427681, 0.0029960928950458765, -0.02981993742287159, 0.03395571932196617, -0.020549673587083817, 0.002429185202345252, -0.001515670563094318, 0.000389198336051777, 0.016202401369810104, 0.05418815836310387, -0.06556156277656555, 0.00818932056427002, 0.0022206336725503206, 0.018893009051680565, -0.005149167496711016, -0.024932192638516426, 0.001463532680645585, -0.026976585388183594, -0.003204644424840808, 0.01283032726496458, -0.014322499744594097, -0.01691911369562149, -0.009434755891561508, -0.03238130360841751, 0.004000665154308081, -4.906285903416574e-05, -0.0142990006133914, 0.004737939219921827, -0.03003142587840557, 0.02946745604276657, -0.012372101657092571, 0.021101893857121468, 0.02453271485865116, 0.029655445367097855], [0.030585359781980515, 0.016232246533036232, 0.03473922982811928, 0.029077107086777687, -0.031104592606425285, -0.011287159286439419, -0.03031338006258011, 0.040871139615774155, 0.0053066955879330635, 0.02031194232404232, -0.02447817660868168, 0.007256914395838976, -0.004833822138607502, -0.008097578771412373, -0.0026286225765943527, 0.02383531630039215, 0.02478724531829357, 0.008882611058652401, -0.04322005435824394, -0.010947184637188911, 0.018074290826916695, 0.007306365296244621, -0.028063364326953888, -0.006539876572787762, -0.0035419180057942867, -0.047893162816762924, 0.026950720697641373, -0.015651198104023933, 0.03251394256949425, -0.04077223688364029, 0.003208124777302146, -0.004827640485018492, 0.012548157013952732, -0.04453050345182419, 0.00475964555516839, -0.052319012582302094, -0.04747283086180687, 0.04574204981327057, -0.009098959155380726, -0.0009380210540257394, -0.023798227310180664, 0.011942383833229542, -0.007578345015645027, -0.009438933804631233, -0.04554424434900284, 0.0872807726264, 0.027445228770375252, -0.029373813420534134, -0.013500086031854153, 0.012696509249508381, -0.001608698396012187, 0.027024896815419197, 0.008264475502073765, -0.005782660562545061, 0.02727215178310871, 0.03268701955676079, 0.017777586355805397, 0.027816111221909523, -0.008128485642373562, -0.02190673165023327, -0.014835258945822716, -0.034689780324697495, -0.001112644444219768, 0.021832555532455444, -0.010638116858899593, -0.01646713726222515, -0.013215743005275726, 0.031228220090270042, -0.039165083318948746, 0.021251508966088295, -0.011361336335539818, 0.028557874262332916, -0.03253866732120514, -0.002432364271953702, -0.011070812121033669, 0.003405928146094084, -0.00856736209243536, -0.013512448407709599, 0.03748375549912453, -0.01284486148506403, -0.05573112145066261, 0.00673149898648262, -0.0361238569021225, 0.009562560357153416, 0.010279598645865917, -0.009197860956192017, -0.017109999433159828, -0.008653901517391205, -0.028335344046354294, -0.030437005683779716, 0.003863348625600338, -0.0193600133061409, -0.0029253277461975813, 0.013314644806087017, 0.017122361809015274, -0.01490943506360054, 0.0476706326007843, -0.022549593821167946, -0.054890457540750504, 0.05993444845080376, -0.01225145161151886, 0.01929819956421852, -0.0038293511606752872, 0.059390489012002945, -0.009618192911148071, -0.03684089332818985, -0.07091253995895386, 0.03889310359954834, 0.04099476709961891, -0.028038639575242996, 0.03305790200829506, -0.013215743005275726, -0.027445228770375252, 0.0898522213101387, -0.016331147402524948, -0.005356146488338709, -0.034714505076408386, 0.004521663300693035, -0.005377781577408314, -0.023340808227658272, -0.00014284731878433377, -0.0030087758786976337, -0.030610084533691406, -0.08184117823839188, -0.013438272289931774, 0.02808809094130993, -0.03184635564684868, 0.03921453654766083, -0.05261571705341339, 0.010805013589560986, 0.009482203051447868, -0.05948938801884651, 0.03550571948289871, -0.026110056787729263, -0.021572940051555634, -0.04406071826815605, -0.013042665086686611, 0.013747340068221092, 0.0070529296062886715, -0.020794088020920753, 0.011583864688873291, -0.023353170603513718, -0.013092116452753544, 0.029917772859334946, -0.06418722122907639, 0.04195905849337578, -0.02657984010875225, 0.05627508461475372, 0.0008136212127283216, -0.012566700577735901, -0.011590045876801014, 0.028236443176865578, -0.05241791531443596, -0.011818756349384785, 0.020299579948186874, 0.03286010026931763, 0.05053878203034401, 0.048437122255563736, -0.02123914659023285, -0.008647719398140907, 0.014934160746634007, -0.039165083318948746, 0.0453711673617363, 0.042428839951753616, -0.000109332766442094, 0.031129319220781326, -0.005730118602514267, 0.0064966073259711266, -0.042428839951753616, -0.019112758338451385, -0.02586280182003975, 0.008517911657691002, -0.026184232905507088, -0.025813350453972816, -0.06893450021743774, -0.037088148295879364, 0.03637111186981201, -0.005841383244842291, 0.004045698791742325, -0.011880570091307163, 0.006805675104260445, -0.009735639207065105, -0.039165083318948746, -0.019162209704518318, -0.0479673370718956, 0.030906789004802704, 0.0019239477114751935, 0.00283878855407238, -0.04232994094491005, 0.031623825430870056, 0.01860588788986206, 0.0008228932856582105, 0.016195157542824745, -0.005918650422245264, 0.015589384362101555, 0.013314644806087017, -0.0035326459910720587, 0.010174514725804329, 0.001525250030681491, -0.03765683248639107, 0.036247484385967255, -0.039165083318948746, 0.05370363965630531, -0.019520727917551994, -0.04265137016773224, -0.04106894135475159, 0.018012477084994316, 0.023711688816547394, 0.0025080859195441008, 0.011132625862956047, 0.0257144495844841, 0.0239836685359478, -0.02657984010875225, 0.027791384607553482, 0.020608646795153618, -0.00992726068943739, 0.025936977937817574, 0.02739577926695347, -0.032118335366249084, -0.007158012595027685, -0.01002616249024868, 0.013376458548009396, 0.03800299018621445, -0.051478348672389984, -0.07101143896579742, -0.06191248074173927, -0.0055663129314780235, -0.0025559915229678154, 0.04954976588487625, -0.043961819261312485, -0.05019262805581093, 0.03493703529238701, 0.022413603961467743, -0.0361238569021225, -0.002823335351422429, 0.0016643306007608771, -0.01667730323970318, -0.004265137016773224, -0.029250185936689377, -0.004311497323215008, -0.04092058911919594, 0.014859984628856182, -0.013945143669843674, -0.012461617588996887, 0.0009210223215632141, -0.02279684878885746, -0.020361393690109253, -0.009506928734481335, 0.01730780303478241, 0.013339370489120483, 0.01817319169640541, -0.0007726697367615998, 0.05370363965630531, -0.04495083540678024, 0.01664021611213684, 0.010353774763643742, -0.01985452137887478, -0.02878040261566639, 0.03980794548988342, 0.016281696036458015, 0.02929963730275631, -0.000556322222109884, -0.03701397031545639, 0.0015020699938759208, -0.02675291709601879, -0.0183462705463171, -0.0007170375320129097, 0.0001117473584599793, -0.046187106519937515, 0.017085272818803787, -0.04270081967115402, 0.010329049080610275, 0.04010464996099472, -0.04116784408688545, -0.09192915260791779, 0.06552239507436752, -9.721150854602456e-05, -0.007318727672100067, -0.03303317725658417, -0.014612730592489243, -0.07640158385038376, -0.007992495782673359, 0.035060662776231766, -0.0603795051574707, 0.020905353128910065, 0.020534470677375793, -0.002379822777584195, 0.026975445449352264, 0.01638059876859188, -0.033181529492139816, 0.09138519316911697, 0.0315002016723156, 0.03493703529238701, 0.011200620792806149, 0.018024839460849762, 0.01678856834769249, -0.037780459970235825, 0.042057961225509644, 0.03278592228889465, -0.05212121084332466, -0.009438933804631233, 0.0708136335015297, -0.009154590778052807, -0.04987119510769844, -0.0733850821852684, 0.021387498825788498, 0.05602782964706421, -0.0029114196076989174, -0.04781898483633995, 0.014278937131166458, 0.010421769693493843, 0.020794088020920753, -0.06700591742992401, 0.009599649347364902, -0.05627508461475372, -0.011534414254128933, -0.013005577027797699, 0.011596227064728737, 0.01149732619524002, 0.029349086806178093, 0.0627036914229393, -0.017950663343071938, -0.003217396792024374, -0.013005577027797699, 0.0014982066350057721, -0.007182737812399864, -0.022722672671079636, 0.01379679050296545, 0.03360186144709587, -0.02357569895684719, -0.02687654457986355, 0.041934333741664886, 0.008116123266518116, 0.008147030137479305, -0.018420446664094925, -0.010557759553194046, -0.021832555532455444, 0.02947271429002285, -0.005742481444031, 0.022413603961467743, -0.027865560725331306, 0.02441636472940445, -0.016862744465470314, 0.004147691186517477, 0.002291738521307707, 0.04092058911919594, 0.06468173116445541, 0.009630555287003517, -0.0010631935438141227, 0.007936863228678703, 0.04148927330970764, 0.024799607694149017, -0.024453451856970787, -0.009024783037602901, -0.021882006898522377, -0.039140358567237854, 0.021659478545188904, -0.0098963538184762, -0.012405985035002232, 0.002923782216385007, -0.05672014132142067, 0.007603070233017206, 0.0021773832850158215, 0.05607727915048599, -0.03775573521852493, -0.0026363490615040064, -0.021807830780744553, -0.014736357145011425, -0.013512448407709599, 0.0032575756777077913, 0.013487722724676132, 0.01396986935287714, 0.02083117701113224, -0.03209361061453819, 0.06186303123831749, -0.02322954311966896, 0.00030481821158900857, 0.05845092236995697, -0.01620751991868019, -0.014093495905399323, 0.04502500966191292, 0.040376629680395126, 0.05533551797270775, 0.03320625424385071, 0.004339313134551048, 0.02143695019185543, -0.04230521246790886, 0.0005346874822862446, -0.017406703904271126, -0.0036840892862528563, 0.0012316355714574456, 0.029769420623779297, -0.0049914466217160225, -0.025986429303884506, -0.0006536786095239222, 0.001982670510187745, 0.05469265580177307, -0.009976712055504322, -0.011416967958211899, -0.02193145826458931, 0.006172086112201214, -0.027816111221909523, 0.012659421190619469, -0.04289862513542175, -0.014093495905399323, -0.027643032371997833, -0.025269391015172005, -0.004475302994251251, -0.004935814533382654, 0.007158012595027685, 0.0407475121319294, 0.04381346330046654, 0.017270714044570923, 0.034170545637607574, -0.008196480572223663, 0.00964909978210926, 0.03182163089513779, 0.05597837641835213, -0.03837386891245842, -0.036766715347766876, 0.0028217898216098547, 0.01875424012541771, -0.01985452137887478, 0.02892875485122204, -0.023105915635824203, 0.022524869069457054, 0.03918980807065964, -0.006805675104260445, 0.002444727113470435, -0.02418147213757038, -0.01756741851568222, 0.01823500543832779, 0.01950836554169655, 0.023167729377746582, -0.01788884960114956, -0.011546776629984379, -0.0018636793829500675, -0.006459519267082214, 0.007300183642655611, -0.01431602519005537, -0.0029098743107169867, -0.05583002418279648, 0.040005747228860855, -0.001936310320161283, -0.0056373984552919865, 0.02452762797474861, -0.004605111666023731, 0.06408832222223282, 0.02915128320455551, -0.009469840675592422, -0.01667730323970318, -0.0024617258459329605, -0.02551664598286152, -0.03511011227965355, -0.01698637194931507, -0.04079696163535118, 0.012443073093891144, -0.06809383630752563, 0.03389856591820717, 0.004299134481698275, 0.04027772694826126, 0.03990684822201729, 0.07254441827535629, 0.01079265121370554, -0.013895692303776741, 0.026258409023284912, 0.010032343678176403, -0.02167184092104435, -0.002477179281413555, -0.04727502539753914, 0.011083174496889114, -0.03731067478656769, -0.01739434152841568, -0.021634751930832863, 0.0077946921810507774, -0.031277671456336975, -0.00440730806440115, -0.0024632711429148912, -0.004549479577690363, 0.004166235215961933, 0.030708985403180122, 0.03394801914691925, -0.03874475136399269, -0.04470358043909073, 0.022982288151979446, 0.062456440180540085, 0.06344545632600784, -0.01379679050296545, 0.004830731078982353, -0.009568742476403713, -0.06379161775112152, -0.013166292570531368, 0.03876947611570358, -0.012140187434852123, 0.003928252961486578, 0.017641596496105194, -0.022747397422790527, -0.04509918764233589, 0.0026765279471874237, -0.01482289656996727, 0.007572163362056017, -0.05152779817581177, 0.0218201931566, -0.02742050401866436, 0.011101718991994858, -0.014773445203900337, 0.01921166107058525, 0.00580738577991724, -0.04134092107415199, -0.007003478705883026, -0.07758840173482895, -0.010965729132294655, 0.012127824127674103, 0.016046805307269096, -0.018568798899650574, -0.0030705896206200123, 0.019174572080373764, 0.0009017055854201317, -0.03441780060529709, 0.034541428089141846, -0.012096917256712914, 0.003928252961486578, -0.035901326686143875, 0.006320438347756863, -0.05058823525905609, 0.012202000245451927, 0.0011280978797003627, -0.009506928734481335, 0.036222755908966064, -0.011132625862956047, -0.02915128320455551, -0.025986429303884506, -0.022055085748434067, -0.012436891905963421, -0.05790696293115616, -0.023044101893901825, 0.03085733950138092, 0.01440256368368864, 0.013598987832665443, 0.015564659610390663, -0.025467194616794586, -0.04932723566889763, -5.244496060186066e-05, -0.0022051995620131493, 0.01379679050296545, 0.015045424923300743, 0.04005520045757294, 0.014105859212577343, 0.001089464290998876, -0.0010492855217307806, -0.02473779395222664, 0.011824937537312508, 0.002772339154034853, 0.009636737406253815, -0.006020642817020416, 0.014625092968344688, 0.030807888135313988, 0.017035823315382004, 0.0025853528641164303, -0.00618444848805666, 0.013697889633476734, 0.028384795412421227, 0.006570783443748951, -0.0006057730643078685, -0.028483698144555092, -0.006552239414304495, -0.00809139758348465, -0.027173249050974846, 0.01687510684132576, -0.01851934753358364, -0.029398538172245026, 0.014748720452189445, 0.002642530482262373, -0.048906903713941574, 0.045816224068403244, 0.017864124849438667, -0.023699326440691948, -0.01959490403532982, 0.022611407563090324, -0.024515265598893166, 0.0031184949912130833, 0.030214477330446243, 0.01541630644351244, -0.018642975017428398, -0.015119601972401142, 0.005278879776597023, -0.02346443571150303, -0.03671726584434509, -0.015156690031290054, 0.04596457630395889, -0.012807773426175117, -0.02054683305323124, 0.01944655179977417, -0.03651946410536766, -0.01780231110751629, 0.021486399695277214, -0.02657984010875225, 0.0008105305605567992, -0.04608820378780365, 0.018358632922172546, 0.006774768233299255, -0.0025080859195441008, -0.02363751269876957, 0.03120349533855915, -0.040178827941417694, -0.013833879493176937, -0.009562560357153416, -0.020015237852931023, 0.00771433487534523, 0.03204416111111641, 0.020151227712631226, 0.016256971284747124, -0.06052785739302635, -0.022178713232278824, -0.01840808428823948, -0.018630612641572952, -0.043442584574222565, -0.014241849072277546, -0.016751479357481003, -0.008616812527179718, -0.020757000893354416, -0.00501308124512434, -0.017604507505893707, -0.037285950034856796, -0.023711688816547394, -0.0009248856804333627, 0.00039464107248932123, -0.022487780079245567, -0.010495945811271667, -0.046879418194293976, 0.009377120062708855, -0.016343509778380394, -0.017443792894482613, -0.02727215178310871, 0.010032343678176403, 0.007374360226094723, -0.013228106312453747, -0.014699269086122513, 0.0050810761749744415, 0.024811970070004463, 0.041909605264663696, 0.010211603716015816, 0.030362829566001892, -0.06483007967472076, 0.03276119753718376, 0.004911088850349188, -0.04569259658455849, 0.008579724468290806, 0.03953596577048302, -0.018642975017428398, 0.04279972240328789, 0.0052757891826331615, -0.025838077068328857, -0.01825973205268383, 0.0029160554986447096, -0.01005706936120987, -0.03731067478656769, -0.03209361061453819, -0.013314644806087017, 0.06928066164255142, -0.03891782835125923, 0.010687568224966526, 0.030066125094890594, 0.006762405391782522, 0.03461560606956482, 0.0003606436075642705, 0.03283537179231644, 0.005155252758413553, 0.0036222757771611214, -0.006848944816738367, 0.0025776263792067766, 0.04561842232942581, -0.007040566764771938, -0.007596889045089483, -0.01129952259361744, 0.0017153267981484532, -0.03407164663076401, 0.04576677456498146, -0.021597664803266525, 0.04502500966191292, -0.01421712338924408, 0.009098959155380726, -0.03147547319531441, 0.0215234886854887, -0.008363377302885056, -0.029398538172245026, 0.016800930723547935, -0.00955019798129797, 0.010570121929049492, 0.025294117629528046, -0.011886751279234886, 0.018111377954483032, -0.027346327900886536, 0.019718531519174576, 0.002712070709094405, 0.01912512071430683, -0.04492611065506935, -0.008499367162585258, -0.011404605582356453, -0.00832010805606842, -0.022252889350056648, 0.00300104939378798, -0.03221723809838295, -0.0404508076608181, -0.03718705102801323, -0.0398821197450161, -0.01430366188287735, -0.010261054150760174, 0.05627508461475372, 0.005733209662139416, -0.01901385746896267, 0.016244608908891678, -0.0027012533973902464, -0.04502500966191292, -0.009129866026341915, 0.027544131502509117, 0.010013800114393234, 0.02143695019185543, 0.011608590371906757, 0.010291961021721363, 0.017963025718927383, 0.0407475121319294, -0.023353170603513718, 0.015379218384623528, 0.020447932183742523, -0.0011435511987656355, 0.009506928734481335, 0.006898395251482725, 0.0032204873859882355, -0.00022136987536214292, 0.0442090705037117, -0.027173249050974846, 0.021140243858098984, 0.008431372232735157, -0.04747283086180687, 0.003409018972888589, -0.06517624109983444, 0.023439709097146988, 0.005943375639617443, -0.019669080153107643, -0.004404217470437288, -0.018210280686616898, -0.00930294394493103, -0.03461560606956482, -0.015082512982189655, -0.011682766489684582, 0.0024292736779898405, -0.01817319169640541, 0.0171965379267931, -0.030535908415913582, 0.021288596093654633, 0.009401845745742321, -0.02484905906021595, -0.006045368034392595, 0.032958999276161194, -0.024490540847182274, -0.0004184006538707763, -0.02207981050014496, 0.010489764623343945, 0.010928641073405743, -0.043442584574222565, -0.014699269086122513, 0.0013861695770174265, 0.021387498825788498, -0.006892214063555002, -0.0009171589626930654, -0.021919095888733864, -0.006206083577126265, 0.00749180605635047, -0.024305099621415138, 0.0013027212116867304, -0.0004489211132749915, 0.012783048674464226, 0.05083548650145531, -0.011818756349384785, -0.03822551667690277, -0.045000284910202026, -0.024490540847182274, -0.002623986452817917, 0.0026919813826680183, 0.02022540383040905, -0.019347650930285454, -0.0011149623896926641, 0.0059928265400230885, -0.01860588788986206, -0.02251250483095646, 0.01672675460577011, 0.01638059876859188, 0.016751479357481003, 0.02259904518723488, -0.04682996869087219, -0.0003614162851590663, -0.001269496395252645, -0.0045958394184708595, -0.037632107734680176, 0.02707434818148613, -0.012245270423591137, -0.04200850799679756, -0.016306422650814056, -0.006583146285265684, -0.007324909325689077, 0.02897820621728897, -0.009834540076553822, 0.012115461751818657, 0.04833821952342987, -0.0015167506644502282, -0.029893046244978905, 0.0006463382160291076, -0.00797395221889019, -0.0041538723744452, 0.04097004234790802, 0.010397044010460377, 0.010588666424155235, 0.017011096701025963, -0.004323859699070454, -0.022833935916423798, -0.02207981050014496, 0.023390257731080055, 0.010471220128238201, -0.00999525561928749, 0.011546776629984379, 0.001645786571316421, -0.010601028800010681, -0.0022237435914576054, 0.017208900302648544, 0.010236328467726707, -0.05152779817581177, 0.01481053326278925, -0.008975331671535969, 0.03733540326356888, 0.018358632922172546, -0.016763843595981598, 0.010081795044243336, 0.007423811126500368, -0.04828877002000809, 0.03820079192519188, -0.027865560725331306, -0.0027476137038320303, 0.020608646795153618, 0.026604564860463142, 0.034689780324697495, -0.022203437983989716, 0.018914954736828804, -0.0021990181412547827, 0.007732878904789686, 0.032958999276161194, 0.0008669354720041156, 0.0008198025752790272, -0.020843539386987686, 0.0315002016723156, -0.03085733950138092, -0.023452071473002434, 0.008653901517391205, -0.013116841204464436, -0.007046747952699661, -0.014452015049755573, 1.4270244719227776e-05, -0.035035938024520874, -0.020324304699897766, -0.05226956307888031, -0.01814846694469452, 0.03461560606956482, -0.019261110574007034, 6.596667662961408e-05, -0.012696509249508381, 0.03377493843436241, 0.010205421596765518, 0.004830731078982353, -0.022351790219545364, -0.016924558207392693, 0.04203323274850845, 0.0041538723744452, 0.022030359134078026, -0.018445171415805817, -0.02793973870575428, -0.017666321247816086, 0.0015190687263384461, 0.009247311390936375, -0.022908112034201622, -0.00195330916903913, -0.01136751752346754, -0.0021433858200907707, 0.033478233963251114, 0.006533695384860039, -0.003674817271530628, -0.03973376750946045, -0.0034739230759441853, 0.06695646792650223, 0.03278592228889465, -0.0076525211334228516, 0.04129147157073021, 0.009562560357153416, 0.02268558368086815, 0.026604564860463142, -0.003217396792024374, 0.013648438267409801, -0.022265251725912094, -0.01858116127550602, -0.0013807608047500253, -0.0053715999238193035, -0.019866883754730225, 0.0109780915081501, -0.04401126876473427, -0.004682378843426704, 0.0176292322576046, 0.06631360948085785, -0.04383819177746773, 0.009414208121597767, -0.000267730065388605, 0.015577021986246109, 0.03392329066991806, 1.6817639334476553e-05, 0.004747282713651657, 0.004691650625318289, 0.028730951249599457, -0.012919038534164429, 0.011404605582356453, -0.01018687803298235, 0.023254267871379852, -0.012616151943802834, 0.019953424111008644, 0.01808665320277214, 0.04554424434900284, -0.006570783443748951, 0.03310735151171684, 0.0006417022086679935, 0.015997353941202164, 0.000867708120495081, 0.032291412353515625, -0.017864124849438667, 0.007528894115239382, 0.020757000893354416, 0.006620234344154596, 0.040673334151506424, -0.01275832299143076, -0.004033335950225592, -0.0014387110713869333, 0.015984991565346718, 0.03387384116649628, -0.015564659610390663, -0.00868480745702982, 0.026629289612174034, 0.010063250549137592, -0.03567879647016525, -0.0044783940538764, 0.02204272337257862, -0.0047256480902433395, 0.013055028393864632, -0.010291961021721363, -0.006780949886888266, 0.05266517028212547, -0.030585359781980515, 0.029571617022156715, 0.009086595848202705, 0.002100116340443492, 0.01498361211270094, 0.02655511349439621, -0.02262376993894577, -0.010588666424155235, 0.03372548893094063, 0.025034500285983086, -0.003344114637002349, 0.017109999433159828, -0.027024896815419197, 0.04643436148762703, 0.013734977692365646, 0.01938473805785179, -0.06680811941623688, 0.01741906628012657, 0.00495435856282711, -0.02724742516875267, 0.030263928696513176, 0.033329881727695465, 0.012177275493741035, -0.03567879647016525, -0.010693749412894249, -0.03031338006258011, 0.017258351668715477, -0.0031926713418215513, -0.012881949543952942, -0.013648438267409801, 0.044629406183958054, 0.00820884294807911, 0.008159392513334751, 0.020880626514554024, 0.0043516759760677814, 0.031129319220781326, -0.012634695507586002, -0.0069231209345161915, -0.004982174374163151, 0.04262664541602135, 0.02389713004231453, -0.025788625702261925, 0.015181414783000946, 0.023798227310180664, 0.01990397274494171, 0.026456212624907494, 0.01507015060633421, 0.02554137073457241, -0.006867488846182823, 0.03647001087665558, -0.012931400910019875, 0.030387556180357933, 0.00784414354711771, -0.01346299797296524, 0.012745959684252739, -0.0030458641704171896, 0.007294002454727888, -0.021894369274377823, 0.009698550216853619, -0.0024493630044162273, -0.02517049014568329, -0.013982231728732586, 0.024453451856970787, -0.005893924739211798, 0.019496003165841103, -0.004255864769220352, -0.03464033082127571, 0.003291573142632842, -0.008888793177902699, -0.03048645704984665, -0.0026178050320595503, 0.0075041684322059155, 0.03938761353492737, 0.016108619049191475, 0.013401184231042862, 0.044481050223112106, 0.00580738577991724, 0.032958999276161194, -0.0017230535158887506, 0.0070838360115885735, 0.002525084652006626, 0.01586136408150196, 0.04210741072893143, 0.015960266813635826, 0.042948074638843536, -0.011392242275178432, -0.023711688816547394, 0.0006270214798860252, 0.025158127769827843, -0.01087918970733881, -0.042948074638843536, -0.04097004234790802, -0.00047944157267920673, 0.029225461184978485, -0.02915128320455551, -0.019805070012807846, 0.01041558850556612, -0.011577683500945568, -0.0040549710392951965, -0.028730951249599457, 0.06146742403507233, -0.05889597907662392, 0.010712292976677418, 0.003375021507963538, -0.00473182974383235, -0.009574923664331436, -0.014452015049755573, -0.010706111788749695, -0.003381202695891261, 0.005955738481134176, -0.02097952924668789, 0.011540595442056656, -0.011416967958211899, 0.002623986452817917, 0.00330084515735507, -0.05108274146914482, -0.0009550197864882648, 0.02143695019185543, -0.018506985157728195, -0.01664021611213684, 0.013289920054376125, 0.01765395887196064, 0.05226956307888031, 0.018506985157728195, 0.017765222117304802, 0.020695187151432037, -0.0025127220433205366, 0.021795468404889107, 0.005832110997289419, -0.028211718425154686, -0.009513109922409058, -0.02502213791012764, -0.00021229100821074098, -0.020299579948186874, 0.0024091843515634537, -0.017728134989738464, -0.020621011033654213, -0.018123742192983627, 0.005047078710049391, 0.0016117891063913703, 0.03844804689288139, 0.008573543280363083, -0.00710856169462204, -0.0034121095668524504, -0.008233568631112576, 0.019174572080373764, -0.005337602458894253, 0.0073310905136168, 0.022092172876000404, -0.0007614660426042974, 0.00999525561928749, -0.007980133406817913, -0.036766715347766876, 0.028755677863955498, -0.020757000893354416, 0.015082512982189655, 0.043269503861665726, 0.00027835427317768335, 0.011101718991994858, -0.011250071227550507, 0.009321487508714199, 0.024638893082737923, -0.0038293511606752872, 0.025739174336194992, -0.0030134120024740696, -0.0039962478913366795, -0.00013579671212937683, -0.014711631461977959, -0.004447487182915211, -0.03651946410536766, 0.004543297924101353, -0.03921453654766083, -0.0006617916515097022, -0.002746068174019456, 0.01074938103556633, -0.00396534102037549, 0.023958943784236908, 0.03600022941827774, -0.030535908415913582, 0.016652578487992287, -0.04561842232942581, -0.030882064253091812, -0.025838077068328857, -0.03172272816300392, 0.013092116452753544, -0.006935483776032925, -0.03219251334667206, -0.02046029455959797, 0.011095537804067135, -0.01275832299143076, 0.007324909325689077, -0.03276119753718376, -0.0315002016723156, -0.006036096252501011, 0.013883329927921295, 0.00745471753180027, 0.05444540083408356, 0.00697875302284956, -0.006317347753793001, 0.023909492418169975, 0.013067390769720078, 0.011491144075989723, 0.04250301793217659, 0.020089413970708847, 0.008888793177902699, -0.010842101648449898, -0.00979745201766491, 0.0025930795818567276, 0.038670577108860016, 0.02212926186621189, -0.027494680136442184, 0.006762405391782522, 0.013623712584376335, 0.007034385576844215, -0.011027542874217033, -0.014649818651378155, -0.015403944067656994, -0.06710482388734818, 0.005022353492677212, -0.023217180743813515, -0.021572940051555634, -0.011954746209084988, 0.014934160746634007, -0.010613391175866127, -0.01284486148506403, 0.007677246350795031, 0.004512391518801451, 0.006360617466270924, 0.016516588628292084, 0.041242022067308426, 0.027890287339687347, -0.018309181556105614, -0.0315002016723156, 0.0012795410584658384, 0.03565407171845436, 0.01858116127550602, 0.020324304699897766, 0.0022608316503465176, 0.0059928265400230885, 0.023439709097146988, 0.02761830762028694, 0.03243976831436157, 0.008072853088378906, -0.05266517028212547, 0.01028577983379364, -0.0554838702082634, -0.034368351101875305, 0.017443792894482613, -0.004203323274850845, -0.012523431330919266, 0.023674601688981056, 0.023439709097146988, -0.021103156730532646, 0.0008653901168145239, -0.012177275493741035, -0.017320165410637856, 0.013598987832665443, -0.011849663220345974, -0.02221580035984516, -0.0026378945913165808, 0.002562172943726182, 0.0016967827687039971, -0.04354148358106613, -0.009253492578864098, 0.012721234932541847, 0.01371025200933218, 0.004360948223620653, 0.005337602458894253, -0.005924831610172987, 0.020101776346564293, 0.008171754889190197, 0.018482260406017303, -0.03016502596437931, 0.003770628245547414, -0.009655280970036983, -0.01110790017992258, -0.03716232255101204, -0.029176009818911552, 0.02813754230737686, 0.06052785739302635, 0.033156804740428925, -0.00021460902644321322, -0.019743258133530617, 0.025986429303884506, 0.00929058063775301, 0.021943820640444756, 0.012616151943802834, -0.014427289366722107, 0.012554338201880455, -0.014612730592489243, 0.0024091843515634537, 0.0275935810059309, -0.01693692058324814, -0.040871139615774155, -0.023736415430903435, 0.0017338709440082312, -0.010149789974093437, -0.005108892451971769, 0.021338047459721565, 0.004082786850631237, 0.019322924315929413, 0.013636075891554356, -0.006954027805477381, 0.023081190884113312, 0.0346650555729866, -0.012622333131730556, -0.012109280563890934, 0.006490425672382116, 0.023538611829280853, -0.021511126309633255, -0.013833879493176937, -0.023241905495524406, 0.04905525594949722, -0.005096529610455036, -0.0027847017627209425, 0.024144385010004044, 0.03886837884783745, -0.0074979872442781925, 0.027321601286530495, 0.019397100433707237, -0.003739721607416868, 0.020707549527287483, -0.0023133731447160244, 0.00929058063775301, 0.006614053156226873, -0.006644960027188063, 0.019496003165841103, 0.026456212624907494, -0.011503507383167744, -0.006576964631676674, 0.018296819180250168, -0.0062122647650539875, -0.025417743250727654, -0.006104091182351112, 0.0257144495844841, 0.017876487225294113, 0.0019934880547225475, 0.013734977692365646, 0.002497268607839942, -0.026011154055595398, -0.03651946410536766, 0.016578402370214462, 0.00037686966243200004, -0.02091771550476551, 0.011676585301756859, -0.01603444293141365, -0.0003343728312756866, 0.0151690524071455, 0.021313322708010674, -0.0007232188945636153, -0.0025513553991913795, -0.01225145161151886, -0.00323594082146883, -0.013401184231042862, -0.020818812772631645, -0.0035666434559971094, 0.002137204399332404, 0.01354953646659851, 0.008740440011024475, 0.003269938286393881, 0.007640158291906118, 0.007782329805195332, -0.008765165694057941, 0.019088033586740494, 0.01246779877692461, -0.0033224800135940313, -0.012140187434852123, -0.029225461184978485, 0.014452015049755573, 0.019718531519174576, -0.03701397031545639, -0.0037675376515835524, 0.00217429269105196, 0.05256626754999161, -0.04596457630395889, 0.009686187840998173, 0.025788625702261925, 0.006036096252501011, -0.040871139615774155, -0.022821573540568352, 0.01050212699919939, -0.01103990525007248, 0.023686964064836502, -0.007318727672100067, 0.019891610369086266, -0.01320338062942028, 0.003708814736455679, 0.005343784112483263, 0.022141624242067337, -0.04663216322660446, 0.00710856169462204, -0.01994105987250805, 0.008919699117541313, 0.04381346330046654, 0.019582541659474373, -0.01251106895506382, -0.004326950758695602, -0.007596889045089483, -0.006892214063555002, -0.046508535742759705, -0.015638835728168488, -0.03209361061453819, -0.009692369028925896, 0.019780345261096954, 0.006991115864366293, -0.021140243858098984, 0.03132712095975876, -0.01981743425130844, -0.007294002454727888, 0.042725544422864914, 0.007541256491094828, -0.025912253186106682, -0.00012932559184264392, -0.0022886476945132017, -0.03288482502102852, -0.055434416979551315, -0.016912195831537247, 0.014031682163476944, 0.03473922982811928, -0.0219561830163002, 0.012393622659146786, 0.0171965379267931, 0.014204761013388634, -0.001241680234670639, 0.045000284910202026, -0.0057981135323643684, 0.012430710718035698, 0.018717151135206223, 0.021882006898522377, -0.009556379169225693, -0.04012937471270561, -0.041884880512952805, -0.03481340780854225, 0.018964406102895737, 0.011670404113829136, -0.020410843193531036, -0.02551664598286152, -0.01212164293974638, -0.031277671456336975, -0.010842101648449898, 0.013425909914076328, -0.026827093213796616, -0.032489217817783356, -0.03404691815376282, 0.0018265913240611553, -0.036593638360500336, 0.003745903028175235, 0.006737680174410343, -0.010656661354005337, -0.015898453071713448, 0.0049481769092381, -0.004268227610737085, -0.027445228770375252, 0.00891351792961359, -0.003915890119969845, -0.025009773671627045, 0.0007966224802657962, -0.023130642250180244, 0.028755677863955498, 0.00992726068943739, 0.04007992520928383, 0.04544534534215927, -0.04354148358106613, 0.02314300462603569, -0.016170432791113853, 0.007022022735327482, -0.012208182364702225, -0.015873726457357407, 0.0002970915229525417, 0.010941003449261189, -0.02704962156713009, 0.02756885625422001, 0.021127881482243538, 0.008375739678740501, -0.03716232255101204, -0.016887469217181206, 0.016343509778380394, -0.0008043491980060935, 0.011732217855751514, -0.0008901155670173466, 0.004039517603814602, 0.024713069200515747, 0.03310735151171684, 0.01898913085460663, 0.0019795799162238836, -0.013265194371342659, 0.024601804092526436, -0.032810647040605545, 0.005006900057196617, 0.011979471892118454, -0.0030644081998616457, 0.017691045999526978, -0.008734258823096752, 0.015354492701590061, -0.0024632711429148912, -0.02305646426975727, 0.041365645825862885, 0.030733712017536163, 0.0036222757771611214, -0.00697875302284956, -0.004098240286111832, 0.025442469865083694, 0.02141222357749939, 0.014019319787621498, 0.006144269835203886, -0.003699542721733451, -0.028360070660710335, 0.016862744465470314, -0.008072853088378906, -0.041365645825862885, -0.020670460537075996, 0.026134781539440155, -0.008054309524595737, 0.007751422934234142, 0.0070776548236608505, 0.02242596633732319, 0.00561885442584753, -0.0078750504180789, 0.009568742476403713, -0.031055143103003502, 0.03342878445982933, 0.014081133529543877, 0.0022422876209020615, -0.024317461997270584, -0.06433557718992233, -0.010681386105716228, 0.026950720697641373, 0.005751753691583872, 0.04354148358106613, -0.039338160306215286, 0.009315306320786476, 9.885343752102926e-05, -0.03310735151171684, -0.0077637857757508755, 0.01387096755206585, -0.009197860956192017, -0.012103098444640636, -0.02949744090437889, -0.01884077861905098, -0.00022426739451475441, -0.012616151943802834, -0.005387053359299898, 0.02623368240892887, 0.005751753691583872, -0.02392185479402542, 0.005433413665741682, 0.011664221994578838, 0.039313435554504395, 0.004209504928439856, -0.014229485765099525, 0.019310561940073967, -0.0033224800135940313, -0.00024686797405593097, -0.015737736597657204, 0.03100569173693657, -0.02568972297012806, -0.009692369028925896, -0.013252831064164639, -0.0038169885519891977, 0.007195100653916597, 0.04349203407764435, -0.057461902499198914, -0.009352394379675388, -0.014859984628856182, 0.013030302710831165, 0.009358575567603111, -0.03221723809838295, 0.028236443176865578, -0.013784428127110004, -0.01996578648686409, 0.01754269376397133, -0.009451296180486679, -0.0076525211334228516, -0.03224196285009384, -0.02002760022878647, 0.028557874262332916, -0.008678626269102097, 0.00885788630694151, -0.024342186748981476, -0.017431428655982018, -0.0009596557938493788, -0.018309181556105614, 0.015206140466034412, 0.028335344046354294, 0.031796906143426895], [0.02195036970078945, 0.04820198193192482, 0.029524298384785652, 0.029524298384785652, -0.0021696151234209538, 0.031768426299095154, 0.016176417469978333, 0.019612736999988556, 0.018163403496146202, 0.024288000538945198, -0.011495308019220829, 0.006609655916690826, 0.006475241854786873, -0.02470877580344677, -0.01812833920121193, 0.05166167765855789, 0.01395566575229168, 0.018443919718265533, 0.027771074324846268, -0.0004025110974907875, 0.0698017030954361, 0.047968219965696335, -0.0470331646502018, 0.0022134457249194384, -0.019776370376348495, -0.058300554752349854, -0.025059420615434647, 0.009286245331168175, 0.052035700529813766, -0.07213933765888214, 0.041002072393894196, -0.02407761476933956, 0.039482612162828445, -0.014949159696698189, -0.019004952162504196, 0.016714071854948997, 0.0018730279989540577, -0.010460905730724335, 0.00045620359014719725, 0.0017912108451128006, -0.03382554277777672, 0.019834810867905617, -0.01832703873515129, -0.016293298453092575, 0.002701426623389125, 0.041633233428001404, 0.01909845694899559, -0.03756575286388397, -0.01212062407284975, -0.0036846932489424944, 0.022511400282382965, 0.033895671367645264, -0.0069252364337444305, 0.024732152000069618, 0.012506334111094475, -0.006609655916690826, -0.0053122700192034245, 0.022698411718010902, -0.017204975709319115, -0.04226439446210861, -0.00959013681858778, 0.0007684966549277306, -0.013546580448746681, 0.009718706831336021, 0.027163289487361908, 0.016188105568289757, -0.017567308619618416, 0.02098025195300579, -0.027069784700870514, -0.010081039741635323, 0.03885145112872124, 0.059329111129045486, -0.003629174316301942, 0.00950832013040781, 0.0069252364337444305, 0.010934275574982166, -0.017649125307798386, 0.032820358872413635, 0.02407761476933956, 0.03973975032567978, -0.04530331864953041, 0.05619668588042259, -0.007217440288513899, -0.03803328052163124, -0.014364751987159252, -0.009853120893239975, -0.04497604817152023, -0.00784860085695982, -0.013195935636758804, -0.031908683478832245, -0.022768540307879448, 0.013990730047225952, -0.047079917043447495, 0.044181253761053085, 0.014738772995769978, -0.01234269980341196, 0.016211481764912605, -0.019752994179725647, -0.04927729442715645, 0.04065142944455147, -0.027490558102726936, -0.04815522953867912, -0.05558890104293823, 0.00051574019016698, 0.03686446323990822, -0.010869991034269333, -0.02833210490643978, -0.0049294824711978436, 0.014575138688087463, -0.03431644290685654, 0.00556940957903862, -0.019203651696443558, 0.024638647213578224, 0.07227959483861923, -0.00583823723718524, 0.006720693316310644, -0.00613628514111042, -0.03490085154771805, -0.014282934367656708, -0.005020065698772669, -0.018525738269090652, -0.018899759277701378, -0.0057155112735927105, -0.015802396461367607, 0.029945071786642075, -0.026789268478751183, -0.03239958733320236, -0.004958702716976404, -0.04027740657329559, 0.006510306615382433, 0.04862275719642639, -0.010250518098473549, 0.10500644892454147, -0.05900184437632561, 0.001247711363248527, -0.012284258380532265, -0.018233533948659897, 0.003643784672021866, 0.008047299459576607, 0.0026707451324909925, 0.02772432193160057, 0.0021316285710781813, 0.0025874669663608074, 0.0333346389234066, -0.06320958584547043, 0.02849574014544487, -0.04352671653032303, 0.019998446106910706, 0.012015431188046932, -0.04109557718038559, -0.01942572556436062, 0.027817826718091965, 0.0341060571372509, -0.018841316923499107, 0.02092181146144867, 0.04118908569216728, 0.020220521837472916, 0.005090194754302502, 0.01782444678246975, 0.05409281700849533, -0.04838899150490761, -0.015790706500411034, 0.0053590224124491215, -0.0027481792494654655, 0.033732037991285324, -0.0036408626474440098, 0.009145987220108509, -0.013242688030004501, -0.04032415896654129, -0.015276428312063217, -0.04757082089781761, -0.020045198500156403, -0.06858613342046738, 0.011670630425214767, -0.02847236394882202, -0.08307945728302002, -0.012202441692352295, 0.02879963256418705, 0.021050380542874336, 0.0013426776276901364, 0.016164729371666908, 0.016784200444817543, -0.09359880536794662, -0.029197029769420624, -0.008497294038534164, 0.0034713842906057835, -0.0017707565566524863, -0.019893253222107887, -0.04275529831647873, 0.016258234158158302, -0.011623877100646496, -0.005271361209452152, -0.011337517760694027, -0.02203218638896942, 0.023925667628645897, 0.016036158427596092, -0.05334477126598358, -0.027186665683984756, 0.029781438410282135, -0.01646861992776394, 0.0010132176103070378, -0.035695649683475494, -0.010419996455311775, 0.011173883453011513, -0.09041962772607803, -0.012892043218016624, -0.006112908944487572, -0.020302338525652885, 0.047968219965696335, -0.04004364460706711, 0.01954260841012001, 0.026017850264906883, -0.02625161223113537, 0.018011458218097687, -0.0009628123953007162, 0.013429698534309864, 0.0022163677494972944, 0.06325633823871613, 0.002683894243091345, 0.0031704141292721033, -0.0238789152354002, -0.0069719888269901276, 0.049183785915374756, -0.04455527663230896, -0.037963151931762695, 0.0008430086891166866, -0.01441150438040495, -0.04497604817152023, -0.01942572556436062, -0.0575525127351284, -0.009151831269264221, 0.03064636141061783, 0.0040294937789440155, -0.005665836855769157, 0.02487240917980671, -0.027467181906104088, 0.015580320730805397, -0.02699965424835682, 0.007597305346280336, 0.017871201038360596, 0.024311378598213196, 0.0034509298857301474, -0.030669737607240677, -0.0050522079691290855, 0.01735692098736763, 0.0006914278492331505, -0.0020118248648941517, -0.024732152000069618, 0.004938248544931412, -0.01416605245321989, 0.021050380542874336, -0.01738029718399048, 0.10051819682121277, -0.07111077755689621, -0.02221919596195221, -0.00438013905659318, -0.010560254566371441, -0.02426462434232235, 0.00890053529292345, 0.05231621488928795, -0.0070070531219244, 0.016491997987031937, -0.017181599512696266, -0.012740097008645535, -0.05544864386320114, 0.022628283128142357, -0.015849148854613304, 0.01454007439315319, -0.007100558839738369, 0.049511056393384933, -0.020793240517377853, 0.053298018872737885, 0.01423618197441101, -0.01198036689311266, -0.10743758827447891, 0.03195543587207794, -0.0021330895833671093, -0.007760939653962851, 0.0032493092585355043, 0.03134765103459358, 0.0006676862831227481, 0.005227530840784311, -0.0234698299318552, -0.025082796812057495, 0.02390229143202305, 0.002840223489329219, 0.017672501504421234, 0.0018715669866651297, -0.028378859162330627, 0.024662023410201073, 0.08658590912818909, -0.01926209218800068, 0.02501266822218895, -0.03793977573513985, -0.0010402464540675282, 0.004222348798066378, 0.010770641267299652, -0.05180193483829498, 0.02355164662003517, -0.006048623938113451, -0.005730121396481991, 0.03882807493209839, 0.017695877701044083, -0.011495308019220829, -0.03307750076055527, 0.049464304000139236, 0.00034005247289314866, -0.03536837920546532, 0.015264740213751793, -0.010647916235029697, 0.015556944534182549, 0.020933499559760094, -0.0478045828640461, -0.029197029769420624, 0.008795342408120632, -0.008041455410420895, -0.023925667628645897, 0.057084985077381134, 0.03656057268381119, 0.015650449320673943, 0.013055677525699139, 0.03352164849638939, 0.021377649158239365, -0.005291815381497145, -0.017123157158493996, -0.024732152000069618, -0.040113773196935654, 0.05273699015378952, -0.05142791569232941, -0.024007486179471016, -0.011349205859005451, 0.007924574427306652, 0.0454903282225132, -0.0029424948152154684, -0.03511124104261398, -0.006720693316310644, -0.02487240917980671, 0.011542060412466526, 0.0052392189390957355, -0.003705147420987487, 0.008421321399509907, -0.018829628825187683, -0.029641179367899895, 0.023984109982848167, 0.010121949017047882, 0.013230999931693077, 0.0015516035491600633, 0.045092929154634476, 0.006177193950861692, 0.05011884123086929, 0.0005197579739615321, 0.015603696927428246, -0.05862782150506973, -0.005610317923128605, -0.052222710102796555, 0.0057476540096104145, 0.023726969957351685, -0.03001520037651062, 0.018362103030085564, 0.03230608254671097, 0.016106287017464638, -0.03892157971858978, 0.03314762935042381, 0.053438279777765274, -0.010250518098473549, 0.00761483795940876, -0.036467067897319794, 0.0022470492403954268, 0.008526514284312725, -0.038898203521966934, 0.02545681782066822, -0.02592434361577034, -0.002824152121320367, -0.0010643532732501626, 0.010899211280047894, 0.026555504649877548, 0.004006117582321167, 0.03317100554704666, -0.030950253829360008, 0.006264855153858662, -0.013605020940303802, 0.012541398406028748, 0.02606460265815258, -0.0033866451121866703, 0.01940234936773777, 0.03532162681221962, -0.05409281700849533, -0.042498160153627396, 0.01281022559851408, 0.01567382551729679, 0.02266334742307663, 0.008035611361265182, -0.011103753931820393, 0.012003743089735508, -0.040394287556409836, -0.0016261156415566802, -0.015767330303788185, 0.01760237291455269, 0.001247711363248527, -0.059375863522291183, -0.009718706831336021, -0.018151715397834778, 0.0018949432997033, -0.014528386294841766, -0.005037597846239805, 0.023388013243675232, 0.009835588745772839, -0.03076324425637722, 0.02791133150458336, -0.019308844581246376, 0.023201001808047295, 0.039763130247592926, 0.026438623666763306, 0.0424046516418457, 0.023317884653806686, -0.0026166874449700117, 0.01094596367329359, 0.03716835752129555, -0.03186193108558655, -0.050399355590343475, 0.04336308315396309, 0.05058636516332626, -0.02128414437174797, -0.0006439447170123458, -0.026742516085505486, 0.026181483641266823, 0.05703823268413544, -0.02438150718808174, 0.027630815282464027, -0.03562551736831665, -0.026649009436368942, 0.006481085903942585, 0.04457865282893181, 0.0349242277443409, -0.059656381607055664, -0.03211906924843788, -0.026765892282128334, -0.04284880310297012, -0.006036935839802027, -0.004873963538557291, -0.013324504718184471, 0.005227530840784311, 0.027490558102726936, -0.0005745462258346379, -0.04591110348701477, -0.00479506840929389, 0.016258234158158302, 0.03263334929943085, -0.005630772095173597, -0.01167647447437048, 0.0006994634750299156, 0.020547788590192795, -0.05741225183010101, -0.04895002394914627, -0.0009116766741499305, -0.03368528559803963, 0.006188882049173117, -0.007983014918863773, 0.02166985347867012, -0.007316789589822292, -0.012892043218016624, 0.03137102723121643, 0.06610824912786484, 0.015486815012991428, -0.007550552953034639, -0.0063349842093884945, -0.019191961735486984, -0.030132083222270012, -0.012085559777915478, -0.050679873675107956, 0.006732381414622068, -0.027700945734977722, -0.04002026841044426, -0.004903184249997139, 0.02772432193160057, -0.015486815012991428, -0.02548019401729107, -0.03520474582910538, 0.02258152887225151, -0.012985548004508018, -0.0011549365008249879, 0.013429698534309864, -0.0485292486846447, -0.03924885019659996, 0.07718862593173981, 0.027490558102726936, 0.029524298384785652, 0.018689371645450592, 0.00511357095092535, -0.03125414624810219, -0.00031174521427601576, 0.002258737338706851, -0.0022090626880526543, -0.010659604333341122, 0.01485565397888422, -0.007813536562025547, -0.027841202914714813, -0.031791802495718, 0.01843223161995411, 0.026882773265242577, 0.014224493876099586, -0.05694472789764404, 0.01646861992776394, 0.029617803171277046, 0.019916629418730736, -0.007743407506495714, -0.018584178760647774, -0.017099780961871147, -0.0004667959874495864, -0.020127015188336372, -0.04294230788946152, 0.0035239809658378363, 0.03649044409394264, 0.010455061681568623, -0.016959523782134056, -0.018724435940384865, 0.026321740821003914, 0.001954845152795315, -0.051147397607564926, 0.05643044784665108, -0.022675035521388054, -0.0143881281837821, 0.007363542448729277, 0.011904393322765827, 0.0066622523590922356, 0.010829082690179348, 0.004581759683787823, -0.039669621735811234, -0.007305101491510868, 0.02772432193160057, -0.01311411801725626, -0.030716490000486374, -0.01934390887618065, -0.0036233302671462297, 0.02791133150458336, 0.003792808623984456, -0.01586083695292473, 0.020302338525652885, -0.01061285100877285, 0.011612189002335072, 0.0005190274678170681, -0.001249902881681919, 0.009332997724413872, -0.025410065427422523, 0.027513934299349785, 0.006001871544867754, 0.01904001645743847, 0.018829628825187683, -0.002765711396932602, -0.008923912420868874, -0.027256794273853302, 0.027537310495972633, 0.0018949432997033, -0.0025348702911287546, -0.006820042617619038, 0.03625667840242386, 0.018478984013199806, -0.04212413728237152, 0.01408423576503992, -0.003933066502213478, -0.008695992641150951, 0.029687931761145592, 0.0017400751821696758, 0.004809678997844458, 0.006253167055547237, 0.0447189100086689, -0.015369933098554611, -0.03303074836730957, 0.0016524139791727066, -0.01296217180788517, -0.004143453668802977, -0.0029731763061136007, 0.01326606422662735, -0.010858302935957909, 0.046168241649866104, 0.00437429454177618, 0.036139797419309616, -0.0034596959594637156, -0.020185455679893494, 0.015217987820506096, 0.010215453803539276, 0.04111895710229874, -0.03408268094062805, -0.028729503974318504, -0.032493092119693756, 0.03543850779533386, 2.9973743949085474e-05, -0.04030078276991844, -0.03225932642817497, 0.03349827229976654, -0.014002418145537376, -0.010560254566371441, -0.0014405660331249237, -0.008175869472324848, 0.05030585080385208, 0.02294386364519596, 0.012821913696825504, 0.012097247876226902, -0.024732152000069618, 0.005174933932721615, 0.03165154531598091, 0.014879031106829643, 0.00959013681858778, -7.108777208486572e-05, -0.021926993504166603, -0.028098342940211296, 0.00920442771166563, -0.02758406288921833, 0.024778904393315315, -0.009385594166815281, -0.008836250752210617, 0.00655705900862813, -0.026952901855111122, -0.02590096741914749, -0.0010636227671056986, -0.0019957537297159433, -0.050072088837623596, -0.008994041010737419, -0.027093160897493362, 0.006463553756475449, -0.03866444155573845, 0.018911447376012802, 0.005318114068359137, 0.012892043218016624, -0.02335294894874096, 0.019659489393234253, -0.01697121188044548, -0.006831730715930462, -0.058861587196588516, -0.017450425773859024, -0.04563058540225029, -0.019449101760983467, -0.012693344615399837, -0.024288000538945198, -0.027373677119612694, 0.020956875756382942, 0.010560254566371441, -0.0052158422768116, -0.030248964205384254, 0.020875057205557823, 0.00784860085695982, 0.02412436716258526, 0.029197029769420624, -0.03988001123070717, 0.06180700287222862, 0.01810496300458908, -0.020641295239329338, 0.03595278784632683, 0.028145095333456993, -0.001020522671751678, -0.011425178498029709, -0.005981416907161474, -0.04291893169283867, -0.028308728709816933, 0.04170336201786995, 0.024895785376429558, -0.012775161303579807, 0.005259673111140728, 0.0053151920437812805, 0.021798422560095787, -0.052362967282533646, 0.0424046516418457, 0.02025558613240719, 0.02562045119702816, 0.018362103030085564, 0.02282698079943657, 0.05638369545340538, 0.022452959790825844, 0.00863755214959383, 0.015334868803620338, -0.05853431671857834, -0.01986987516283989, 0.01937897317111492, -0.026929525658488274, 0.024755528196692467, -0.036911215633153915, -0.055729158222675323, 0.013628397136926651, -0.002699965611100197, -0.013920601457357407, 0.0077141872607171535, -0.031137265264987946, 0.002917657606303692, 0.015907589346170425, -0.015662137418985367, -0.04941755160689354, 0.04955780878663063, -0.007053805980831385, 0.005172011908143759, 0.023890603333711624, -0.006399268750101328, 0.029500922188162804, 0.013616709038615227, 0.0074804238975048065, 0.011431022547185421, 0.053905803710222244, 0.025386689230799675, -0.011506996117532253, -0.007813536562025547, -0.00033293000888079405, -0.017812758684158325, -0.01073557697236538, -0.03920209780335426, -0.049511056393384933, -0.04170336201786995, -0.008994041010737419, -0.020910123363137245, 0.0030769086442887783, 0.054653845727443695, -0.02371528185904026, -0.02241789549589157, 0.011863484978675842, -0.05446683615446091, -0.04345658794045448, -0.014493321068584919, -0.010303115472197533, -0.007293413393199444, 0.005771030206233263, -0.009595980867743492, 0.001829197397455573, -0.03092687763273716, 0.013230999931693077, -0.038103409111499786, -0.022207507863640785, 0.009070013649761677, -0.024591892957687378, 0.018151715397834778, -0.023388013243675232, 0.013546580448746681, -0.009730394929647446, 0.0030944410245865583, -0.019168585538864136, -0.0017298479797318578, 0.016211481764912605, -0.015849148854613304, 0.03368528559803963, -0.050866883248090744, -0.010875835083425045, -0.008859626948833466, -0.007842756807804108, -0.021962057799100876, -0.03639693930745125, -0.007667434401810169, -0.01242451649159193, 0.009397282265126705, -0.024288000538945198, -0.01735692098736763, -0.0014851271407678723, 0.005598629824817181, 0.04761757329106331, -0.01425955817103386, 0.0069252364337444305, -0.035228122025728226, 0.00276717240922153, 0.04574746638536453, -0.004207738675177097, -0.025386689230799675, 0.010081039741635323, 0.01660887897014618, 0.011086221784353256, -0.0019942927174270153, 0.019998446106910706, 0.01622316986322403, 0.04542019963264465, -0.007515488192439079, 0.010390776209533215, -0.04560720920562744, 0.017532244324684143, 0.02639187127351761, 0.0031265835277736187, -0.033404767513275146, -0.004967468790709972, -0.011688162572681904, 0.0005880606477148831, 0.04411112517118454, 0.0038570936303585768, -0.039505988359451294, -0.015872525051236153, 0.014329686760902405, -0.00047117905342020094, -0.006001871544867754, -0.05521487817168236, -0.023843850940465927, 0.015708889812231064, -0.0046197460032999516, 0.02849574014544487, -0.0349242277443409, -0.00454669538885355, 0.02851911634206772, -0.018888071179389954, -0.02713991329073906, 0.009718706831336021, -0.03029571659862995, 0.015369933098554611, 0.010232985951006413, -0.04111895710229874, 0.026415247470140457, -0.02468539960682392, -0.04203063249588013, -0.0020775708835572004, 0.015568632632493973, -0.026017850264906883, -0.015451750718057156, 0.050072088837623596, 0.058861587196588516, 0.00845638569444418, -0.027981460094451904, -0.007351854350417852, -0.006878483574837446, 0.015592008829116821, -0.042194265872240067, 0.028308728709816933, 0.018584178760647774, 0.011571280658245087, 0.010618695989251137, -0.024778904393315315, -0.024007486179471016, -0.014306310564279556, -0.019940005615353584, -0.020746488124132156, 0.007801848463714123, -0.06091870367527008, -0.011547904461622238, -0.007141467183828354, -0.01311411801725626, 0.007346009835600853, -0.023423077538609505, 0.024311378598213196, -0.018969887867569923, 0.010209609754383564, 0.018677683547139168, 0.03239958733320236, -0.007457047700881958, 0.017099780961871147, -0.01408423576503992, -0.022862045094370842, -0.024451635777950287, -0.013020613230764866, -0.007533020805567503, -0.022394519299268723, 0.03384891897439957, -0.013301128521561623, -0.03775276616215706, -0.05142791569232941, -0.011916081421077251, -0.023504894226789474, -0.00568629102781415, 0.024498388171195984, -0.04217088967561722, 0.018619243055582047, 0.013943977653980255, -0.018677683547139168, -0.0046927970834076405, 0.002175459172576666, 0.015989406034350395, 0.010180389508605003, -0.006416801363229752, -0.02667238563299179, -0.030506104230880737, -0.03230608254671097, 0.013488139025866985, 0.008292751386761665, 0.003947676625102758, 0.0005445952992886305, -0.00823430996388197, -0.01131998561322689, 0.027513934299349785, 0.018081586807966232, 0.0021082523744553328, -0.013897225260734558, 0.02393735572695732, -0.015732266008853912, 0.02324775420129299, -0.010922587476670742, -0.03443332761526108, 0.01372190285474062, 0.0015910511137917638, 0.009531696327030659, 0.030225588008761406, -0.009221959859132767, 0.020664671435952187, 0.05212920531630516, 0.013125806115567684, 0.00599018344655633, -0.047079917043447495, -0.009736238978803158, -0.01152452826499939, 0.031113889068365097, 0.03959949314594269, -0.015358245000243187, 0.0037431339733302593, 0.013850472867488861, 0.015030976384878159, -0.03120739385485649, -0.010858302935957909, 0.03532162681221962, -0.024521764367818832, 0.013581644743680954, -0.009391438215970993, 0.019227027893066406, -0.031137265264987946, 0.02620485983788967, 0.027958083897829056, -0.0052801272831857204, 0.00670900521799922, 0.003412943333387375, 0.014633579179644585, 0.026555504649877548, 0.02382047474384308, 0.023890603333711624, 0.02205556258559227, -0.01970624178647995, -0.035976164042949677, -0.04214751347899437, 0.04261504113674164, 0.024895785376429558, -0.0013287980109453201, -0.018864694982767105, 0.026555504649877548, -0.017345232889056206, 0.039155345410108566, 0.007217440288513899, 0.012506334111094475, 0.012646591290831566, 0.04123583808541298, -0.029290534555912018, -0.00425741309300065, 0.006551214959472418, -0.008450541645288467, -0.03536837920546532, -0.0189581997692585, 0.033451519906520844, 0.004596369806677103, 0.0637238621711731, 0.02711653709411621, -0.024358130991458893, 0.0051574017852544785, 0.004879807587713003, 0.025129549205303192, -0.03375541418790817, -0.008964820764958858, -0.012085559777915478, 0.017976393923163414, -0.03335801512002945, 0.004047026392072439, -0.006031091790646315, -0.023726969957351685, 0.0143881281837821, 0.018338726833462715, 0.001093573635444045, 0.018140027299523354, 0.013850472867488861, 0.0017795227468013763, -0.02501266822218895, -0.033895671367645264, 0.0020804929081350565, 0.025246430188417435, 0.023843850940465927, -0.020045198500156403, -0.02302568033337593, 0.020197143778204918, 0.021401025354862213, 0.021073756739497185, -0.016620567068457603, 0.025667205452919006, 0.013429698534309864, -0.010519346222281456, 0.013406322337687016, 0.0011731992708519101, -0.00452624075114727, -0.007340165786445141, -0.015486815012991428, 0.007544708903878927, 0.006124597042798996, -0.001969455275684595, 0.006013559643179178, 0.0043392302468419075, -0.037191733717918396, 0.020746488124132156, -0.009747927077114582, -0.0026590570341795683, 0.020512724295258522, 0.030716490000486374, 0.02559707500040531, -0.0025860059540718794, 0.041165709495544434, 0.012331011705100536, 0.016071222722530365, -0.026134731248021126, -0.015264740213751793, 0.0197296179831028, -0.02189192734658718, -0.012681656517088413, 0.008216777816414833, 0.009239492006599903, 0.04876301437616348, 0.03017883561551571, 0.02263997122645378, 0.04446176812052727, 0.0027233418077230453, 0.03656057268381119, 0.019858187064528465, 0.022675035521388054, 0.04880976676940918, -0.008602487854659557, 0.031908683478832245, 0.011144663207232952, 0.02373865805566311, -0.029664555564522743, 0.03151128441095352, 0.01810496300458908, 0.008006391115486622, 0.01608291082084179, 0.0072817252948880196, -0.008275219239294529, -0.0016655630897730589, 0.02456851676106453, 0.011051157489418983, -0.018584178760647774, -0.0036846932489424944, 0.01372190285474062, 0.005221686325967312, -0.00040543312206864357, 0.030997006222605705, -0.012938795611262321, 0.001243328326381743, 0.018280286341905594, 0.0356488935649395, 0.04909028112888336, -0.0017006276175379753, 0.012927107512950897, 0.03137102723121643, 0.00103148038033396, 0.004958702716976404, 0.014119300059974194, 0.038594312965869904, 0.013511516153812408, -0.01249464601278305, -0.0008086747257038951, 0.02092181146144867, -0.007749251555651426, -0.01948416605591774, -0.03438657522201538, 0.024778904393315315, 0.03728523850440979, -0.0001356009452138096, 0.023388013243675232, 0.001179773942567408, 0.0181867815554142, 0.02089843526482582, -0.018911447376012802, 0.04142284765839577, -0.02625161223113537, 0.01076479721814394, -0.02189192734658718, -0.055121373385190964, -0.017263416200876236, 0.008286907337605953, -0.007334321737289429, 0.0050843507051467896, -0.012868667021393776, -0.005616161972284317, 0.01303230132907629, -0.021155573427677155, 0.03681771084666252, -0.02335294894874096, -0.04121246188879013, 0.05442008376121521, 0.024451635777950287, 0.04574746638536453, -0.015627073124051094, -0.013534892350435257, 0.006703161168843508, 0.028589244931936264, 0.0028855151031166315, 0.022452959790825844, -0.0018701059743762016, -0.033264510333538055, -0.019752994179725647, 0.02713991329073906, -0.017614061012864113, 0.012108935974538326, -0.006919391918927431, -0.015101105906069279, -0.02910352498292923, -0.06031091883778572, 0.008368724025785923, 0.018140027299523354, -0.01387384906411171, 0.024147743359208107, -0.00953754037618637, 0.035064488649368286, 0.01705302856862545, -0.008953132666647434, 0.021214013919234276, 0.027350299060344696, -0.012985548004508018, -0.0014990068739280105, 0.022043874487280846, -0.01124985609203577, -0.009502476081252098, 0.005043441895395517, 0.012529710307717323, 0.016679007560014725, 0.009496632032096386, 0.0005533614312298596, -0.02189192734658718, 0.02650875225663185, -0.009455723688006401, 0.017123157158493996, 0.008596643805503845, -0.006779134273529053, 0.016351738944649696, -0.02636849507689476, 0.018899759277701378, 0.020243898034095764, -0.03656057268381119, 0.010157013311982155, -0.012179065495729446, -0.00466357683762908, -0.00833365973085165, -0.01998675800859928, -0.059656381607055664, -0.015124482102692127, -0.008742745034396648, 0.007381074596196413, -0.034947603940963745, 0.013827095739543438, 0.01563876122236252, -0.023645153269171715, 0.0039038462564349174, 0.008327815681695938, 0.0008152493392117321, -0.03656057268381119, 0.024942537769675255, 0.005607395898550749, -0.0006099759484641254, -0.041142333298921585, 0.009823900647461414, -0.028261976316571236, 0.014177740551531315, 0.01962442509829998, -0.04104882478713989, -0.0006665905239060521, -0.02865937352180481, -0.01029727142304182, 0.008561578579246998, 0.049464304000139236, -0.004558383487164974, -0.02205556258559227, -0.0018569567473605275, 0.0682121142745018, -0.013312816619873047, -0.0031119731720536947, 0.05250322446227074, -0.0025903889909386635, -0.0007016549934633076, -0.028378859162330627, 0.030973630025982857, 0.031604792922735214, -0.0006921583553776145, -0.014692019671201706, -0.04792146757245064, 0.016982899978756905, 0.0003342083946336061, -4.6547193051083013e-05, 0.02711653709411621, 0.026719139888882637, -0.024498388171195984, -5.962789145996794e-05, 0.005256751086562872, 0.009514164179563522, -0.029313910752534866, -0.0098648089915514, -0.019776370376348495, -0.022347766906023026, 0.017473801970481873, 0.007106402888894081, 0.006802510470151901, -0.0070070531219244, 0.007597305346280336, 0.025269806385040283, -0.0057914843782782555, 0.0017955939983949065, -0.018233533948659897, -0.012833602726459503, -0.006597967818379402, 0.008883003145456314, 0.009251180104911327, -0.007725875359028578, -0.0014814746100455523, 0.0015063119353726506, 0.044181253761053085, -0.0012608604738488793, -0.025433441624045372, 0.0007896814495325089, 0.024778904393315315, 0.009940782561898232, 0.031043758615851402, -0.008771966211497784, -0.002492500701919198, -0.03244633972644806, -0.024802280589938164, 0.02957105077803135, -0.00825184304267168, -0.0023873071186244488, 0.014434880577027798, -0.005318114068359137, 0.012541398406028748, 0.010519346222281456, 0.022780228406190872, -0.016842642799019814, 0.012050495482981205, -0.025106173008680344, -0.013897225260734558, 0.000585869129281491, -0.0033457365352660418, 0.011945301666855812, -0.026111355051398277, 0.01990494132041931, 0.027373677119612694, -0.01441150438040495, 0.03303074836730957, 0.014189429581165314, 0.019227027893066406, -0.0077141872607171535, 0.013710214756429195, -0.008468073792755604, 0.0032493092585355043, 0.0303190927952528, 0.008982352912425995, -0.003269763430580497, 0.038103409111499786, -0.033732037991285324, -0.0003941102186217904, 0.020606230944395065, 0.04331633076071739, 0.022756852209568024, -0.0009759615641087294, 0.026274988427758217, 0.004052870441228151, 0.021155573427677155, 0.009064169600605965, -0.01507772970944643, -0.030739866197109222, 0.0028007759246975183, -0.019799746572971344, 0.013207623735070229, 0.010367400012910366, -0.005364866461604834, 0.04710329324007034, 0.008684304542839527, -0.021599724888801575, -0.021377649158239365, -0.008240154944360256, -0.016702383756637573, -0.0033223601058125496, 0.006177193950861692, 0.005341490264981985, -0.000583312357775867, -0.0017123158322647214, -0.018420543521642685, -0.02847236394882202, 0.014867343008518219, -0.00787782110273838, -0.0033720347564667463, 0.022254260256886482, -0.014119300059974194, -0.022371143102645874, 0.00018828899192158133, 0.008345347829163074, 0.03349827229976654, 0.02098025195300579, -0.028098342940211296, 0.02760743908584118, 0.027513934299349785, -0.0005321766366250813, 0.01522967591881752, 0.03957611694931984, -0.01677251234650612, 0.0006465014885179698, -0.016094598919153214, 0.0035239809658378363, -0.003947676625102758, 0.009134299121797085, -0.0027335688937455416, -0.022312702611088753, 0.006463553756475449, 0.01763743720948696, -0.008374568074941635, -0.0018569567473605275, 0.0001787923538358882, 0.004520396701991558, -0.010794018395245075, -0.026625633239746094, -0.0022923408541828394, 0.02083999291062355, 0.02158803679049015, -0.001385047216899693, -0.01281022559851408, 0.02359839901328087, 0.00989402923732996, -0.009011573158204556, -0.0023770800326019526, -0.014890719205141068, -0.01088752318173647, -0.010478437878191471, 0.01757899671792984, 0.00715899933129549, -0.01926209218800068, 0.01794132962822914, 0.009917405433952808, -0.04895002394914627, -0.01909845694899559, 0.025807462632656097, 0.030856749042868614, -0.046168241649866104, 0.006720693316310644, -0.010998561047017574, 0.02847236394882202, 0.007638214156031609, -0.06643551588058472, -0.021412713453173637, -0.02470877580344677, 0.016246546059846878, -0.033287886530160904, -0.0037168357521295547, 0.042802050709724426, 0.021319208666682243, -0.001756146433763206, 0.009467411786317825, -0.0013689759653061628, -0.008877159096300602, -0.018619243055582047, -0.007871977053582668, -0.021272456273436546, -0.01387384906411171, 0.03167492151260376, 0.025082796812057495, 0.0223360788077116, -0.011010249145328999, 0.013558268547058105, -0.008643396198749542, 0.0023873071186244488, -0.010104415938258171, 0.016036158427596092, -0.026111355051398277, -0.021880239248275757, -0.04577084258198738, -0.023867227137088776, -0.006194726098328829, -0.0386410653591156, -0.022850356996059418, -0.01976468227803707, -0.008824562653899193, -0.00848560594022274, -0.0076791225001215935, 0.03001520037651062, -0.012892043218016624, 0.02438150718808174, 0.0204542838037014, 0.0001198036625282839, 0.001607122365385294, -0.010636228136718273, 0.004447345621883869, 0.024778904393315315, -0.019916629418730736, -0.030248964205384254, -0.004599291831254959, 0.03894495591521263, -0.04065142944455147, -0.02847236394882202, 0.014984223991632462, -0.01721666380763054, -0.0004335577832534909, 0.004426891449838877, -0.022347766906023026, 0.031043758615851402, 0.022289326414465904, 0.0008861087844707072, -0.008245998993515968, 0.0011395958717912436, -0.0287762563675642, -0.004017805680632591, -0.005259673111140728, 0.0018423466244712472, -0.013149182312190533, -0.010519346222281456, -0.016760824248194695, 0.010373244062066078, -0.010092727839946747, 0.01068298052996397, 0.0009072935790754855, -0.03155803680419922, -0.014212805777788162, -0.021249080076813698, -0.029477545991539955, -0.0356021411716938, -0.011004405096173286, 0.0011308296816423535, -0.029056772589683533, -0.008801186457276344, 0.016036158427596092, 0.011571280658245087, -0.0017678345320746303, -0.020571166649460793, -0.023843850940465927, 0.019297156482934952, -0.058440811932086945, 0.0064577097073197365, 0.029734686017036438, 0.04118908569216728, -0.03195543587207794, -0.014972535893321037, 0.013394634239375591, -0.015767330303788185, 0.02590096741914749, 0.01840885542333126, -0.0227451641112566, 0.02407761476933956, -0.029454169794917107, 0.005291815381497145, -0.004149297717958689, 0.0010716583346948028, 0.030412599444389343, 0.004423969425261021, -0.03803328052163124, 0.013464762829244137, -0.016491997987031937, 0.06858613342046738, 0.01688939519226551, -0.0015808239113539457, 0.02029065042734146, -0.024942537769675255, 0.01423618197441101, -0.00037548222462646663, -0.010127793066203594, 0.029804814606904984, 0.009075857698917389, 0.020746488124132156, 0.023177625611424446, -0.04988507553935051, 0.026906149461865425, -0.004520396701991558, 0.014610202983021736, 0.01577901840209961, -0.008415477350354195, -0.021155573427677155, -0.0004890765412710607, 0.017310168594121933, 0.00989402923732996, 0.011436866596341133, 0.04668252170085907, -0.004675264935940504, 0.010437528602778912, -0.008573266677558422, -0.03742549568414688, -0.03380216658115387, 0.04193712770938873, 0.02742042951285839, -0.010209609754383564, -0.006510306615382433, -0.006410956848412752, -0.032820358872413635, -0.05063312128186226, 0.02620485983788967, 0.034620337188243866, 0.021319208666682243, -0.007503800094127655, 0.007801848463714123, -0.02971130795776844, 0.08625863492488861, 0.0037781985010951757, -0.018969887867569923, -0.022932173684239388, -0.018467295914888382, -0.0009759615641087294, 0.015743954107165337, 0.014072547666728497, -0.010905055329203606, -0.005648304242640734, 0.03394242376089096, 0.01948416605591774, -0.02515292540192604, 0.03952936455607414, -0.018701059743762016, -0.005025909747928381, -0.009981690905988216, -0.011945301666855812, 0.005142791662365198, -0.01622316986322403, -0.004549617413431406, -0.006931080482900143, -0.011840108782052994, -0.011004405096173286, -0.02108544483780861, -0.0075563970021903515, 0.00704211788251996, 0.006060312036424875, 0.004543772898614407, -0.0136517733335495, 0.017181599512696266, -0.03466708958148956, 0.01167647447437048, 0.006574591156095266, 0.030693113803863525, 0.008392100222408772, -0.01423618197441101, 0.026578880846500397, -0.030061952769756317, 0.04527994245290756, 0.015112794004380703, -0.016854330897331238, -0.017812758684158325, -0.007451203651726246, 0.03319438174366951, 0.07405619323253632, -0.02742042951285839, 0.014341374859213829, -0.01727510429918766, -0.0015106949722394347, 0.01729848049581051, -0.06096545606851578, 0.013172559440135956, 0.011290764436125755, -0.007655746303498745, 0.03548526018857956, 0.029734686017036438, 0.010279739275574684, 0.006714849267154932, -0.028986642137169838, 0.02879963256418705, -0.0348774753510952, 0.033100876957178116, -0.03485409915447235, 0.023002304136753082], [0.019588736817240715, 0.028408201411366463, 0.024145837873220444, 0.020212220028042793, -0.049470625817775726, 0.04457344487309456, -0.03459769859910011, 0.013761994428932667, 0.0384066179394722, 0.06035326048731804, 0.006467230152338743, 0.009442949667572975, 0.01664135605096817, 0.030221974477171898, -0.04516291990876198, -0.0007913996814750135, 0.03074343316257, 0.042170196771621704, 0.003542523132637143, 0.014714224264025688, 0.026322364807128906, 0.02284218929708004, -0.050332169979810715, -0.041603393852710724, -0.02618633210659027, -0.042805016040802, 0.0027943423483520746, -0.044686805456876755, 0.01970209740102291, -0.06098807975649834, 0.029088366776704788, -0.035073813050985336, 0.031128859147429466, -0.01354660838842392, 0.017140144482254982, 0.029700513929128647, -0.006444558035582304, -0.055138666182756424, -0.035958025604486465, -0.03350943326950073, -0.03223979473114014, -0.03532320633530617, 0.026095641776919365, 0.010157122276723385, -0.014487503096461296, 0.08298005908727646, -0.04024306312203407, -0.028430873528122902, -0.0002297326282132417, 0.0015204509254544973, -0.002078752499073744, 0.02342032827436924, 0.001031582709401846, 0.020098859444260597, 0.024168509989976883, 0.002060331404209137, 0.015904512256383896, 0.011319070123136044, 0.01101299561560154, -0.019622744992375374, -0.03897342458367348, 0.03373615816235542, 0.015292364172637463, 0.030108612030744553, -0.029745858162641525, 0.05726984515786171, 0.011812189593911171, 0.03187704086303711, -0.006325529422610998, 0.03187704086303711, 0.014918273314833641, 0.0474301353096962, -0.016698036342859268, -0.02741062641143799, -0.007311767898499966, 0.03976694867014885, -0.017366865649819374, 0.015881840139627457, 0.00628018518909812, -0.03194505721330643, -0.010361171327531338, 0.029995251446962357, -0.010791942477226257, -0.0029105369467288256, 0.0121182631701231, -0.002877945778891444, -0.08166507631540298, -0.010939311236143112, 0.007940920069813728, -0.04706738144159317, 0.021572548896074295, 0.02031424455344677, -0.03183169662952423, 0.028702938929200172, 0.04520826414227486, 0.034847091883420944, -0.007419460453093052, -0.026911839842796326, -0.014838920906186104, 0.022479435428977013, -0.028657594695687294, 0.004959532525390387, -0.06457027792930603, 0.008490719832479954, 0.0172081608325243, -0.04507223144173622, -0.04625118151307106, 0.03815722465515137, 0.021402508020401, 0.0026866495609283447, -0.011228381656110287, -0.03856532275676727, 0.03187704086303711, 0.07078244537115097, 0.03017663024365902, -0.012866443954408169, 0.006013787351548672, -0.06298322975635529, 0.014396813698112965, -0.018965251743793488, -0.04110460355877876, 0.0005370465223677456, 0.042396917939186096, -0.071145199239254, 0.02195797488093376, 0.01893124356865883, -0.06960349529981613, -0.021878622472286224, 0.005138075444847345, 0.009029182605445385, 0.004508923273533583, -0.04618316516280174, 0.07431930303573608, -0.031151531264185905, -0.006546583026647568, -0.03446166589856148, -0.030834121629595757, -0.028952334076166153, 0.00020511209731921554, -0.01280976366251707, 0.021311819553375244, 0.052554041147232056, -0.00395062193274498, 0.013818674720823765, -0.008847805671393871, -0.015065642073750496, -0.021345827728509903, -0.0014177177799865603, 0.016845406964421272, -0.019554728642106056, -0.0439612939953804, 0.009675338864326477, -0.06593060493469238, -0.010865626856684685, -0.0007318852585740387, 0.030562056228518486, 0.023511018604040146, 0.051783185452222824, 0.0015388720203191042, 0.034529682248830795, -0.04514024779200554, -0.025211429223418236, 0.020087523385882378, 0.0025491996202617884, 0.019271325320005417, -0.02593693695962429, 0.013784666545689106, 0.008479383774101734, -0.07246018946170807, 0.00586075009778142, -0.03872402757406235, -0.021039754152297974, -0.03965358808636665, -0.05296213924884796, -0.05169249698519707, -0.030834121629595757, 0.07318569719791412, 0.029972579330205917, -0.050604235380887985, -0.05137508735060692, 0.024349886924028397, 0.07731202244758606, -0.04203416407108307, 0.006829984486103058, 0.00550649780780077, 0.04538964107632637, -0.04099124297499657, 0.03922281786799431, -0.02255878783762455, 0.04534429684281349, 0.010400848463177681, -0.0333734005689621, 0.007770878728479147, 0.007510148920118809, 0.010338499210774899, 0.00676763616502285, -0.032557204365730286, -0.04509490355849266, 0.016017872840166092, -0.016482651233673096, -0.02679847925901413, -0.05055889114737511, -0.03641147166490555, -0.04548032954335213, -0.00293037504889071, -0.02899767830967903, -0.02623167634010315, -0.010565221309661865, 0.06330063939094543, -0.01041785255074501, 0.011676155962049961, 0.017910996451973915, 0.02391911670565605, 0.012730411253869534, 0.017650267109274864, -0.02055230177938938, 0.037907831370830536, 0.031741008162498474, 0.015144995413720608, -0.024735312908887863, -0.034507010132074356, -0.023068910464644432, 0.03561794385313988, -0.023533690720796585, -0.026911839842796326, -0.04083253815770149, -0.028680266812443733, -0.0478382334113121, -0.01836444064974785, -0.07164398580789566, -0.05976378172636032, 0.011574131436645985, 0.003786248853430152, -0.052327319979667664, 0.010219470597803593, 0.007328771986067295, 0.0007382618496194482, -0.01690208725631237, 0.0013886691303923726, -0.02933776006102562, 0.014464830979704857, 0.04502688720822334, 0.026322364807128906, -0.003905277466401458, 0.014158756472170353, -0.031468942761421204, -0.0014708556700497866, -0.019271325320005417, 0.05663502588868141, 0.01325187087059021, 0.06878729909658432, 0.004789491184055805, -0.003063573967665434, -0.03702361881732941, -0.013807338662445545, 0.03380417451262474, -0.007283427752554417, -0.025143412873148918, -0.013796002604067326, -0.002526527503505349, 0.017264841124415398, 0.033192023634910583, 0.0031259225215762854, -0.023329639807343483, -0.011370082385838032, -0.018217071890830994, 0.012084254994988441, -0.009272908791899681, -0.04121796414256096, 0.05491194128990173, -0.03448433801531792, 0.044142670929431915, 9.060002776095644e-05, -0.03974427655339241, -0.08823999762535095, 0.03897342458367348, 0.01667536422610283, 0.02564219944179058, 0.006563587114214897, -0.0036927261389791965, -0.021799270063638687, -0.031106187030673027, -0.043870605528354645, -0.07903511077165604, 0.03548191115260124, 0.01210692711174488, -0.023284295573830605, -0.035413894802331924, 0.0015757143264636397, 0.028838973492383957, 0.016471315175294876, 0.02766002155840397, 0.06089739128947258, -0.0002899555256590247, 0.0434398353099823, 0.030131284147500992, 0.04647790268063545, 0.03208108991384506, 0.05677105858922005, 0.026390381157398224, 0.03856532275676727, 0.028929661959409714, -0.02931508794426918, -0.041331324726343155, -0.014147420413792133, -0.014147420413792133, -0.019112620502710342, -0.03922281786799431, -0.05609089508652687, -0.024440575391054153, -0.0004828459059353918, 0.021051090210676193, -0.09513233602046967, -0.029836546629667282, 0.01256037037819624, 0.02795475907623768, -0.00999841745942831, 0.030539384111762047, 0.013682641088962555, -0.022162025794386864, 0.008008936420083046, -0.013761994428932667, 0.008700436912477016, -0.01168749202042818, 0.004897184204310179, -0.006937677506357431, -0.015065642073750496, 0.061305489391088486, 0.046704623848199844, 0.03845196217298508, 0.0027291597798466682, 0.019520720466971397, -0.027183905243873596, -0.01240166462957859, -0.039064113050699234, -0.021572548896074295, -0.03838394582271576, 0.03949488326907158, 0.02253611572086811, -0.012617050670087337, 0.018398448824882507, -0.013285879045724869, -0.01464620791375637, 0.008774121291935444, -0.010859958827495575, 0.04003901407122612, 0.028952334076166153, 0.05128439888358116, 0.02741062641143799, 0.057360533624887466, -0.016788726672530174, 0.01801302097737789, -0.03831592947244644, -0.013478592038154602, -0.06311926245689392, -0.039018768817186356, 0.052599385380744934, 0.0029162049759179354, -0.035663288086652756, 0.03831592947244644, 0.017423545941710472, -0.004344550427049398, -0.0018846222665160894, 0.04652324691414833, 0.007391120307147503, -0.03194505721330643, -0.03101549856364727, -0.0037267343141138554, -0.025551510974764824, -0.03863333910703659, 0.01282109972089529, -0.019566064700484276, 0.03387219086289406, 0.030221974477171898, 0.052826106548309326, -0.019883474335074425, 0.012378992512822151, -0.0035651952493935823, -0.03611673042178154, 0.014872929081320763, 0.018749866634607315, -6.372113421093673e-05, -0.018466465175151825, 0.006376541685312986, -0.03922281786799431, -0.003817423013970256, -0.016970103606581688, -0.011936886236071587, -0.009391937404870987, 0.007595169823616743, 0.0171514805406332, -0.02877095527946949, 0.0029558814130723476, 0.019396021962165833, -0.032013073563575745, 0.018205735832452774, 0.013988715596497059, 0.035663288086652756, 0.011959558352828026, 0.0015530422097072005, -0.03976694867014885, -0.04067383334040642, 0.013988715596497059, 0.03602604195475578, -0.037635765969753265, 0.0020121531561017036, -0.015847831964492798, 0.017899660393595695, -0.01666402816772461, 0.007651850115507841, 0.007748206611722708, -0.034552354365587234, 0.006614599376916885, 0.05132974311709404, 0.04529895260930061, -0.0009642748045735061, 0.030289990827441216, -0.0009536472498439252, -9.237129415851086e-05, -0.04765685647726059, 0.018217071890830994, 0.028929661959409714, -0.011540123261511326, 0.03296530246734619, -0.02541547827422619, 0.02679847925901413, 0.016698036342859268, -0.0185684897005558, -0.015008961781859398, -0.010655909776687622, -0.01887456327676773, -0.033192023634910583, -0.003298797644674778, 0.05754191055893898, -0.06116945669054985, -0.008434039540588856, -0.011993566527962685, -0.029745858162641525, -0.004149002954363823, 0.01829642429947853, -0.012968468479812145, -0.002085837535560131, 0.04983338341116905, -0.014294789172708988, -0.034234944730997086, -0.020416269078850746, 0.001652232836931944, 0.030539384111762047, 0.0102818189188838, 0.01355794444680214, 0.020200883969664574, 0.003001225646585226, -0.03693293035030365, 0.03015395626425743, -0.020450277253985405, -0.06098807975649834, 0.015995200723409653, -0.015734471380710602, 0.042396917939186096, 0.007124722469598055, -0.005058723036199808, 0.03657017648220062, -0.002313976176083088, 0.010349835269153118, 0.027569333091378212, -0.02568754367530346, 0.036819569766521454, -0.029541809111833572, -0.017536906525492668, -0.02003084309399128, -0.011466438882052898, 0.014498839154839516, -0.01041785255074501, 0.006546583026647568, -0.047203414142131805, 0.02450859174132347, 0.0008757117320783436, -0.029133711010217667, -0.007221079431474209, 0.032262466847896576, 0.03638879954814911, 0.029949907213449478, -0.04765685647726059, -0.02366972342133522, 0.05840345472097397, 0.008383027277886868, 0.10057365149259567, 0.025460822507739067, -0.034529682248830795, -0.040175046771764755, -0.0185684897005558, 0.0024797662626951933, -0.010049429722130299, -0.009879388846457005, 0.031990401446819305, -0.013308551162481308, -0.009085863828659058, -0.003684224095195532, 0.03584466502070427, 0.01492960937321186, -0.004109326750040054, -0.005821073893457651, -0.020540965721011162, -0.0429183766245842, 0.018999259918928146, 0.0032874615862965584, 0.014056731946766376, -0.0028623586986213923, -0.009476957842707634, 0.007283427752554417, -0.015224347822368145, 0.017842980101704597, 0.015972528606653214, -0.0054016392678022385, -0.008638088591396809, -0.002690900582820177, -0.0050757271237671375, 0.02509806863963604, -0.03069808892905712, -0.006404881831258535, 0.0020206551998853683, 0.003910945728421211, -0.0608520470559597, 0.004942528437823057, -0.03414425626397133, 0.030358007177710533, -0.02176526188850403, -0.0343029610812664, -0.0030805780552327633, 0.0021070928778499365, -0.011732836253941059, -0.016720708459615707, -0.03205841779708862, -0.005534838419407606, 0.017049456015229225, -0.005900426767766476, 0.0029048689175397158, 0.02505272440612316, -0.055365387350320816, 0.014691552147269249, -0.009346593171358109, -0.009913397021591663, 0.016278602182865143, -0.008400031365454197, 0.006926341447979212, -0.017842980101704597, 0.022094007581472397, -0.0015360380057245493, 0.004911354277282953, -0.005628360901027918, -0.04446008428931236, 0.02539280615746975, -0.01661868393421173, 0.005101233255118132, -0.005322286859154701, 0.04491352662444115, 0.006523910444229841, -0.05377833545207977, -0.020688334479928017, -0.030063267797231674, 0.021935302764177322, 0.02933776006102562, 0.013183854520320892, -0.02428187057375908, -0.03307866305112839, 0.043303802609443665, -0.02139117196202278, -0.01492960937321186, -0.012481017969548702, -0.008745781145989895, -0.008785457350313663, 0.01922598108649254, 0.005653867032378912, 0.04119529202580452, 0.006597595289349556, 0.008218653500080109, 0.007306099869310856, -0.048654429614543915, 0.0018166059162467718, 0.03874669969081879, 0.01921464502811432, 0.03434830531477928, -0.009930401109158993, -0.02284218929708004, 0.01943003013730049, 0.013875355012714863, -0.04151270166039467, -0.04058314487338066, -0.021538540720939636, 0.023896444588899612, -0.000519688124768436, 0.00889881793409586, -0.04092322662472725, -0.0005653866683132946, 0.01638062670826912, 0.019055940210819244, -0.012413001619279385, 0.02675313502550125, -0.0024202517233788967, -0.03607138618826866, 0.006387877743691206, 0.021051090210676193, 0.017004111781716347, 0.030947482213377953, -0.048971839249134064, -0.01635795459151268, -0.0018605331424623728, -0.019373349845409393, 0.004936860408633947, -0.0006160447956062853, 0.00480366125702858, -0.026843823492527008, -0.022105343639850616, -0.017945004627108574, 0.00816197320818901, -0.011483442969620228, -0.028702938929200172, -0.019021932035684586, -0.0116988280788064, -0.015110987238585949, -0.026730462908744812, -0.011664819903671741, -0.0036303778178989887, -0.009006510488688946, -0.056544337421655655, 0.010321495123207569, -0.00444940896704793, -0.023238951340317726, -0.02845354564487934, -0.03550458326935768, 0.01044052466750145, -0.048654429614543915, -0.004452242981642485, -0.045004215091466904, 0.016233257949352264, -0.0018917074194177985, -0.025188757106661797, -0.0022487936075776815, 0.023023566231131554, 0.022989558055996895, -0.0030437358655035496, 0.009618658572435379, 0.0037295683287084103, -0.05631761625409126, 0.042170196771621704, 0.018761202692985535, -0.009851048700511456, 0.015042969956994057, 0.021946638822555542, 0.008513391949236393, 0.014396813698112965, 0.019089948385953903, -0.03632078319787979, 0.01945270411670208, 0.020246228203177452, -0.00858707632869482, -0.026277020573616028, 0.004625118337571621, -0.01861383393406868, 0.03613940253853798, -0.0072890957817435265, 0.04146735742688179, 0.0035850333515554667, 0.030902137979865074, 0.012787091545760632, 0.01947537623345852, 0.025778232142329216, -0.008802461437880993, 0.013036484830081463, -0.0451175756752491, 0.03573130443692207, 0.013138510286808014, 0.00819598138332367, -0.047747544944286346, 0.005353461019694805, -0.035141829401254654, -0.007918247953057289, 0.03743171691894531, 0.03409891203045845, 0.02711588889360428, -0.018489137291908264, -0.004021472297608852, -0.008728777058422565, 0.05772329121828079, -0.020132867619395256, -0.011064008809626102, -0.01831909641623497, -0.01748022623360157, -0.025143412873148918, 0.028317512944340706, 0.001728751347400248, 0.04137666895985603, 0.04235157370567322, -0.01466888003051281, 0.010973319411277771, 0.04230622947216034, 0.007368448190391064, -0.006421885918825865, 0.016834070906043053, -0.04457344487309456, 0.01000408548861742, 0.00972635205835104, 0.0014141752617433667, -0.05722450092434883, -0.019883474335074425, 0.0007198406965471804, -0.028249496594071388, -0.00157004629727453, 0.034280288964509964, -0.0036643859930336475, -0.03920014575123787, -0.0025931268464773893, -0.036230094730854034, -0.020971737802028656, 0.011914214119315147, 0.024689968675374985, 0.0018718692008405924, -0.018466465175151825, 0.017378201708197594, 0.033690813928842545, 0.003678556066006422, 0.006886665243655443, 0.005044552963227034, 0.00626318110153079, -0.00605913158506155, -0.012163607403635979, 0.037907831370830536, -0.008966834284365177, 0.019600072875618935, -0.023284295573830605, 0.03627543896436691, -0.021527204662561417, 0.006688283756375313, 0.014090740121901035, -0.02852156199514866, -0.009777364321053028, -0.04257829487323761, 0.007804886903613806, -0.02118712291121483, -0.03239849954843521, 0.0048745120875537395, -0.01717415265738964, 0.024440575391054153, -0.003602037439122796, -0.039041440933942795, 0.008978170342743397, -0.011029999703168869, -0.005384635180234909, 0.016199249774217606, 0.027229249477386475, 0.036479488015174866, 0.006127147935330868, -0.0006422594306059182, -0.0027546659111976624, 0.0192033089697361, -0.011914214119315147, -0.014986289665102959, -0.018398448824882507, 0.014566855505108833, 0.0074591366574168205, 0.00789557583630085, 0.0034404986072331667, 0.013841346837580204, -0.008660760708153248, 0.02252477966248989, -0.00930691696703434, -0.0044295708648860455, -0.0214591883122921, -0.003811754984781146, -0.0063425335101783276, -0.022694820538163185, 0.0077538746409118176, -0.032330483198165894, 0.0350511409342289, 0.035413894802331924, -0.01002108957618475, -0.013070493005216122, -0.01142109464854002, 0.020212220028042793, 0.011755509302020073, 0.03246651589870453, -0.02618633210659027, -0.01948671229183674, -0.03471105918288231, -0.008031608536839485, 0.009499629959464073, -0.021833278238773346, -0.010100441984832287, -0.015371716581285, 0.02204866334795952, -0.025188757106661797, -0.002998391631990671, -0.028861645609140396, 0.0032109429594129324, 0.007419460453093052, 0.028634922578930855, 0.00338098406791687, -0.042759671807289124, -0.030108612030744553, -0.008371690288186073, -0.00408948864787817, -0.009652666747570038, -0.003624709788709879, 0.03974427655339241, 0.06293788552284241, -0.025846248492598534, -0.018228407949209213, -0.015020297840237617, -0.011160365305840969, 0.021901294589042664, -0.020098859444260597, 0.04568437859416008, 0.01694743148982525, -0.011307734064757824, 0.015995200723409653, -0.009431613609194756, -0.022139353677630424, -0.0044862511567771435, -0.0299045629799366, -0.04824633151292801, 0.03781714290380478, -0.008042944595217705, 0.023828428238630295, -0.02006485126912594, 0.029541809111833572, -0.017083464190363884, -0.03418960049748421, -0.0028949498664587736, -0.032262466847896576, 0.031174203380942345, 0.006880997214466333, 0.017276177182793617, 0.0030494038946926594, -0.0332600399851799, 0.006546583026647568, 0.0012165025109425187, -0.021878622472286224, 2.377918644924648e-05, -0.025279445573687553, -0.01538305263966322, 0.028634922578930855, 0.017570914700627327, -0.05690709128975868, 0.011466438882052898, -0.004568438045680523, 0.028136136010289192, -0.002836852567270398, 0.025030052289366722, -0.04067383334040642, 0.03554992750287056, 0.010474532842636108, 0.00605913158506155, -0.027682693675160408, 0.025438150390982628, 0.03047136776149273, 0.007340108044445515, -0.0192033089697361, -0.04851839691400528, -0.004951030481606722, -0.017888324335217476, -0.017910996451973915, -0.0013093166053295135, 0.015065642073750496, 0.013149846345186234, 0.020994409918785095, -0.013115838170051575, -0.016459979116916656, 0.0058380779810249805, -0.0033979881554841995, 0.0029360433109104633, 0.03271590918302536, -0.023760411888360977, -0.023329639807343483, -0.017298849299550056, -0.017128808423876762, -0.007396788336336613, -0.01975877769291401, -0.004783823154866695, 0.032262466847896576, 0.010927975177764893, 0.006671279668807983, 0.01921464502811432, 0.04198881983757019, 0.02195797488093376, -0.010927975177764893, 0.008082620799541473, -0.031446270644664764, 0.039358850568532944, 0.03754507750272751, 0.006535246502608061, 0.02788674272596836, 0.0024131666868925095, 0.028952334076166153, -0.027796054258942604, 0.013421911746263504, 0.03153695911169052, -0.0015431230422109365, 0.011477774940431118, -0.0019838130101561546, -0.0075554936192929745, -0.029111038893461227, 0.014770904555916786, -0.0031457606237381697, 0.0031429266091436148, -0.01184619776904583, 0.0011399840004742146, -0.01575714349746704, 0.004010136239230633, 0.02679847925901413, -0.0016323946183547378, 0.00787857174873352, -0.008286669850349426, -0.014770904555916786, -0.008048612624406815, 0.053415581583976746, -0.0062688491307199, -0.01582515984773636, 0.05214593932032585, -0.013898027129471302, 0.023012230172753334, 0.05731518939137459, -0.0015388720203191042, -0.024984708055853844, -0.002414583694189787, 0.020155539736151695, -0.021493196487426758, 0.006161156110465527, -0.0020234892144799232, 0.013796002604067326, -0.015371716581285, -0.033169351518154144, 0.017570914700627327, -0.003293129615485668, 0.03942686691880226, -0.01214093528687954, 0.0044862511567771435, 0.004613782279193401, -0.010746598243713379, 0.03815722465515137, 0.0006500530289486051, -0.003789082868024707, 0.019600072875618935, 0.01102433167397976, -0.014102076180279255, 0.032534532248973846, 0.028861645609140396, 0.026277020573616028, 0.0041971816681325436, 0.027002528309822083, -0.006818648427724838, 0.01355794444680214, -0.013909363187849522, 0.05554676428437233, 0.02144785225391388, 0.004849005490541458, -0.02537013404071331, 0.021776597946882248, 0.006359537597745657, -0.02960982546210289, -0.018795210868120193, -0.02815880812704563, -0.002311142161488533, 0.01893124356865883, -0.0163126103579998, 0.036796897649765015, 0.026911839842796326, 0.039336178451776505, 0.010871294885873795, 0.02031424455344677, 0.012027574703097343, -0.024485919624567032, -0.015371716581285, 0.033441416919231415, -0.004129164852201939, 0.03638879954814911, 0.014283453114330769, -0.010400848463177681, 0.00024478835985064507, -0.008706104941666126, -0.025324789807200432, -0.01692475937306881, 0.02285352535545826, -0.0014836087357252836, 0.019248653203248978, -0.013013812713325024, 0.025596855208277702, -0.00930691696703434, -0.013467255979776382, 0.003627543803304434, 0.0008041527471505105, 0.03759042173624039, 0.007447800599038601, -0.001978144980967045, -0.010321495123207569, 0.006240508984774351, 0.014600863680243492, -0.0006047086790204048, 0.01030449103564024, -0.004344550427049398, -0.031106187030673027, 0.030675416812300682, 0.02283085323870182, 0.0037295683287084103, 0.03183169662952423, -0.02254745177924633, 0.0072890957817435265, -0.025143412873148918, 0.027682693675160408, -0.02650374174118042, 0.003349809907376766, 0.008490719832479954, 0.0010259146802127361, -0.011732836253941059, 0.014702888205647469, -0.017389537766575813, 0.002313976176083088, 0.01577981561422348, -0.030947482213377953, -0.023556362837553024, -0.024644624441862106, -0.007011361885815859, -0.0026866495609283447, -0.006183828227221966, -0.0053704651072621346, 0.006223504897207022, 0.006121479906141758, 0.021277811378240585, -0.008082620799541473, 0.04033375158905983, -0.029700513929128647, -0.007226747460663319, 0.003332805819809437, 0.007974928244948387, -0.008048612624406815, -0.009771696291863918, 0.029088366776704788, -0.030244646593928337, 0.0233976561576128, 0.03149161487817764, 0.03967626020312309, -0.013183854520320892, -0.02561952732503414, -0.0017032450996339321, 0.04625118151307106, 0.015201675705611706, -0.03627543896436691, -0.012242959812283516, -0.005730385426431894, -0.026594430208206177, -0.0237150676548481, 0.0016961600631475449, 0.0006050629308447242, -0.010837286710739136, 0.028000103309750557, -0.015473741106688976, -0.02818148024380207, -0.009544974192976952, -0.02253611572086811, -0.017049456015229225, 0.0020518293604254723, -0.0014141752617433667, 0.021277811378240585, -0.015281028114259243, -0.002972885500639677, 0.01114336121827364, 0.003460336709395051, 0.001747172442264855, 0.042986392974853516, 0.00034982417128048837, 0.024916691705584526, -0.0058777546510100365, 0.009221896529197693, -0.0035368551034480333, 0.010389511473476887, 0.006144152022898197, 0.015315036289393902, 0.015315036289393902, 0.005804069805890322, -0.013886691071093082, 0.05772329121828079, 0.02480332925915718, -0.021266475319862366, 0.01352393627166748, -0.019668089225888252, -0.034507010132074356, -0.032897286117076874, 0.033169351518154144, 0.026934511959552765, 0.0019809789955615997, 0.033146679401397705, -0.028362857177853584, 0.001169741153717041, 0.010536881163716316, 0.033169351518154144, 0.016221921890974045, -0.012979804538190365, 0.008383027277886868, 0.03833860158920288, 0.0265490859746933, -0.014192764647305012, 0.00677897222340107, 0.02116445079445839, 0.029677841812372208, -0.01027615088969469, 0.033146679401397705, -0.023511018604040146, -0.01576847955584526, -0.004358720500022173, -0.011642147786915302, 0.007918247953057289, 0.007204074878245592, 0.001801018719561398, 0.050286825746297836, -0.03561794385313988, -0.0029388773255050182, 0.01972476951777935, -0.01576847955584526, -0.028589578345417976, -0.04257829487323761, 0.015949856489896774, -0.01894257962703705, -0.01114336121827364, -0.05024148151278496, -0.014113412238657475, 0.029405776411294937, 0.004772487096488476, -0.024667296558618546, 0.038202568888664246, 0.02645839750766754, -0.024712640792131424, 0.008972502313554287, -0.01029882300645113, -0.03160497546195984, -0.002972885500639677, 0.01750289835035801, 0.033464089035987854, -0.0014836087357252836, -0.03833860158920288, -0.003916613757610321, -0.02457660809159279, 0.03897342458367348, 0.006892333272844553, 0.017344193533062935, -0.005911762826144695, -0.0017769295955076814, -0.010746598243713379, 0.0015587102388963103, 0.06896867603063583, 0.021255139261484146, 0.021243803203105927, 0.0040753185749053955, 0.04196614772081375, -0.014170092530548573, -0.0065522510558366776, 0.03183169662952423, -0.0009741938556544483, 0.02344300039112568, -0.022672148421406746, 0.022332066670060158, 0.017933668568730354, -0.0005845163250342011, 0.004129164852201939, -0.013013812713325024, 0.01042918860912323, -0.016698036342859268, 0.009148212149739265, -0.002821265487000346, 0.014430822804570198, -0.03858799487352371, 0.011551459319889545, -0.03684224188327789, -0.015315036289393902, -0.026140986010432243, -0.006195164285600185, 0.025234101340174675, 0.014714224264025688, 0.02006485126912594, 0.0242365263402462, 0.02086971327662468, 0.013319887220859528, -0.015167667530477047, -0.005537672434002161, -0.036524832248687744, 0.01664135605096817, 0.007045370060950518, 0.013319887220859528, 0.04371190071105957, -0.0185684897005558, -0.033985551446676254, 0.01043485663831234, 0.014283453114330769, -0.01801302097737789, 0.01888589933514595, -0.0371369794011116, -0.0072607556357979774, -0.006926341447979212, -0.0411272756755352, 0.04248760640621185, 0.03239849954843521, -0.016289938241243362, -0.011664819903671741, 0.0012398831313475966, 0.002860941691324115, 0.0065805912017822266, -0.03212643414735794, -0.01831909641623497, -0.016709372401237488, -0.0005565303727053106, 0.0006645773537456989, 0.009136876091361046, -0.00628018518909812, -0.0044550769962370396, 0.01045186072587967, -0.008706104941666126, 0.0076405140571296215, -0.0007836061413399875, -0.028022775426506996, -0.01888589933514595, -0.010383843444287777, 0.002563369693234563, 0.03584466502070427, 0.019350677728652954, -0.002253044629469514, 0.02369239553809166, 0.01724216900765896, -0.019520720466971397, 0.00859274435788393, -0.020438941195607185, 0.006189496256411076, 0.026639774441719055, 0.04062848910689354, 0.010106110014021397, 0.014068068005144596, -0.04334914684295654, 0.020733678713440895, 0.018137719482183456, 0.009278576821088791, 0.014317461289465427, -0.0003374253283254802, -0.006393545772880316, -0.024894019588828087, 0.00015153142157942057, -0.005670871119946241, -0.02793208695948124, 0.0125376982614398, -0.01113769318908453, 0.0046676285564899445, 0.03657017648220062, -0.0076405140571296215, -0.014623535796999931, 0.005733219441026449, -0.030358007177710533, -0.02060898207128048, 0.0013114421162754297, -0.004832001402974129, 0.001554459217004478, -0.032035745680332184, -0.014634871855378151, -0.0032902956008911133, -0.004548599943518639, -0.039064113050699234, -0.013841346837580204, 0.015031633898615837, 0.01610856130719185, 0.045253608375787735, 0.014453494921326637, 0.018228407949209213, -0.006013787351548672, -0.00818464532494545, 0.03072076104581356, 0.0024131666868925095, 0.011766845360398293, 0.026050297543406487, 0.01610856130719185, 0.032602548599243164, 0.030131284147500992, -0.003083412069827318, -0.02147052437067032, -0.029768530279397964, 0.0014595194952562451, 0.02255878783762455, 0.00791257992386818, 0.03248918801546097, -0.005682207178324461, -0.002767419209703803, 0.006801644340157509, -0.006943345535546541, 0.005645364988595247, -0.021572548896074295, 0.0018194399308413267, -0.04792892187833786, -0.032013073563575745, -0.02537013404071331, -0.006529578473418951, 0.0023068911395967007, -0.015700463205575943, 0.01972476951777935, -0.020472949370741844, 0.046364542096853256, 0.00040030511445365846, 0.023556362837553024, 0.02258145995438099, -0.009459953755140305, -0.018466465175151825, -0.004690300673246384, -0.01284377183765173, 0.0021425180602818727, 0.00961299054324627, 0.019350677728652954, 0.004248193930834532, 0.024962035939097404, -0.02620900422334671, -0.01354660838842392, -0.01111502107232809, -0.018749866634607315, 0.05291679501533508, -0.019509384408593178, 0.0013093166053295135, -0.02398713305592537, 0.011222713626921177, -0.0068413205444812775, -0.04572972282767296, -0.00569921126589179, 0.0031457606237381697, 0.053687646985054016, 0.002168024191632867, -0.01945270411670208, 0.01324053481221199, 0.03575397655367851, -0.016743380576372147, 0.015723135322332382, 0.006223504897207022, -0.00409515667706728, 0.021017082035541534, -0.000954355753492564, -0.03323736786842346, 0.010134450159966946, 0.02505272440612316, -0.024123165756464005, 0.005024714861065149, 0.007821891456842422, 0.013047820888459682, -0.02142518013715744, 0.0017769295955076814, -0.0011151862563565373, 0.020427605137228966, -0.043575868010520935, -0.02963249757885933, -0.02391911670565605, -0.005393137224018574, 0.004528761841356754, -0.0073457760736346245, 0.010457528755068779, 0.01889723539352417, -0.022490771487355232, -0.02059764601290226, -0.014691552147269249, 0.016153905540704727, -8.85630797711201e-05, 0.04146735742688179, 0.0163692906498909, -0.015655118972063065, -0.033169351518154144, 0.006331197451800108, -0.01915796473622322, -0.00930124893784523, 0.0010400847531855106, -0.022706156596541405, -0.0038854393642395735, 0.009357929229736328, -0.030108612030744553, 0.013081829994916916, 0.00859841238707304, 0.021277811378240585, 0.018160391598939896, 0.006954681593924761, -0.0013093166053295135, 0.01863650605082512, 0.010536881163716316, -0.01581382378935814, -0.049243904650211334, -0.008332014083862305, -0.035663288086652756, 0.04883580654859543, 0.01690208725631237, 0.001541706034913659, -0.002675313502550125, 0.017933668568730354, 0.021889958530664444, 0.0001316047419095412, 0.011936886236071587, 0.003927949815988541, -0.009981413371860981, -0.03915480151772499, -0.005945771001279354, -0.0109903234988451, -0.02396446093916893, -0.021810606122016907, -0.008388695307075977, -0.035685960203409195, -0.05527469888329506, 0.007997600361704826, -0.008989506401121616, 0.008978170342743397, -0.01027615088969469, -0.009029182605445385, -0.012435673736035824, 0.019112620502710342, -0.0692407414317131, 0.020506957545876503, -0.003621875774115324, 0.02173125371336937, 0.02114177867770195, -0.007816223427653313, 0.002240291563794017, -0.01396604347974062, -0.014498839154839516, 0.017060792073607445, 0.010644573718309402, 0.004517425317317247, -0.019838130101561546, -0.033441416919231415, -0.00023203526507131755, 0.01723083294928074, 0.032534532248973846, -0.02364705130457878, -0.01254903431981802, -0.005330788902938366, 0.009119872003793716, 0.026367709040641785, 0.023737739771604538, -0.0233976561576128, -0.0027489978820085526, 0.019350677728652954, 0.03518717363476753, -0.01663001999258995, 0.009097199887037277, 0.008507723920047283, -0.027796054258942604, 0.0033724820241332054, -0.013081829994916916, 0.002944545354694128, 0.003001225646585226, 0.021481860429048538, -0.002947379369288683, 0.0005062265554443002, -0.00555467652156949, -0.0010096190962940454, -0.002513774437829852, 0.020246228203177452, 0.01859116181731224, -0.015065642073750496, 0.00314009259454906, 0.0047243088483810425, 0.006608931347727776, -0.02310291863977909, -0.022128017619252205, -0.013864018954336643, 0.044664133340120316, -0.0007488894043490291, -0.015564429573714733, -0.001579965348355472, -4.3705880671041086e-05, -0.03242117166519165, -0.031083514913916588, 0.012050246819853783, 0.03223979473114014, 0.006898001302033663, 0.01423810888081789, 0.010344167239964008, -0.028249496594071388, 0.11254454404115677, 0.028068119660019875, -0.0003960540925618261, -0.032829269766807556, -0.022921541705727577, -0.02254745177924633, 0.0042000156827270985, 0.017083464190363884, 0.004234023857861757, -0.0038882733788341284, 0.0214591883122921, 0.020223556086421013, -0.011511783115565777, -0.0019285496091470122, -0.016562003642320633, -0.00016083054651971906, -0.02620900422334671, -0.007804886903613806, 0.027455970644950867, -0.013127174228429794, 0.007974928244948387, 0.017264841124415398, -0.020529629662632942, 0.024962035939097404, -0.02455393597483635, 0.014850256964564323, 0.0077822147868573666, 0.026911839842796326, 0.028113463893532753, -0.02171991765499115, 0.00584374601021409, -0.014204100705683231, 0.021289147436618805, 0.000864375673700124, 0.017026783898472786, -0.0206203181296587, 0.01640329882502556, 0.013297215104103088, -0.00032130684121511877, 0.0208810493350029, 0.02849888987839222, -0.0005388177814893425, -0.041308652609586716, -0.016006536781787872, -0.01745755411684513, 0.020166875794529915, -0.04207950830459595, 0.0026994026266038418, -0.032307811081409454, -0.020506957545876503, 0.03863333910703659, -0.05337023735046387, -0.00748180877417326, -0.0046392884105443954, -0.04486818239092827, 0.0008693351992405951, -0.0007446383824571967, 0.02116445079445839, 0.0071927388198673725, -0.026299692690372467, 0.02081303298473358, -0.021572548896074295, 0.02421385422348976, -0.01885189116001129, 0.030584728345274925], [0.010104498825967312, 0.0474097840487957, 0.06269513070583344, 0.027820177376270294, -0.05089518055319786, -0.001241409801878035, -0.032061442732810974, 0.04854358732700348, 0.04174076393246651, 0.03237638995051384, -0.052322931587696075, -0.001753196120262146, 0.014812932349741459, 0.020849386230111122, -0.03470698371529579, -0.025678548961877823, -0.0046034520491957664, 0.044428300112485886, -0.0014763065846636891, -0.03355218470096588, 0.051189128309488297, 0.02563655748963356, -0.047913696616888046, -0.02485969103872776, 0.011915435083210468, -0.02429278939962387, 0.019327150657773018, 0.006834315601736307, 0.056186262518167496, -0.0036061250139027834, 0.050013333559036255, -0.048963513225317, 0.052112966775894165, 0.04337848350405693, -0.03468598797917366, 0.006482626311480999, -0.016366662457585335, -0.010645154863595963, -0.018959714099764824, -0.006104691885411739, 0.00014279165770858526, -0.018634270876646042, 0.03743651136755943, -0.046150002628564835, -0.030024796724319458, 0.08726087957620621, -0.03313225880265236, -0.013731620274484158, -0.011170064099133015, 0.009737062267959118, 0.004624448716640472, 0.07058976590633392, 0.022130165249109268, -0.08264167606830597, -0.03332122415304184, 0.0018450552597641945, 0.015621292404830456, -0.024901684373617172, 0.019663091748952866, -0.011715969070792198, 0.004999758675694466, -0.0004678251571021974, 0.02347393147647381, -0.010939104482531548, 0.0207339059561491, 0.0007913003792054951, 0.05496847257018089, 0.011495507322251797, -0.031473543494939804, -0.018277332186698914, 0.02194119803607464, 0.03254435956478119, 0.012356358580291271, -0.02546858601272106, -0.028597043827176094, 0.001238129218108952, -0.042517632246017456, 0.02485969103872776, 0.012534827925264835, 0.022466106340289116, -0.06576060503721237, 0.042475637048482895, -0.03046572022140026, -0.04526815563440323, 0.020460953935980797, 0.01511737983673811, -0.08684094995260239, -0.006062699016183615, 0.037079572677612305, 0.004750426858663559, 0.01793089136481285, 0.015106881968677044, -0.012177889235317707, 0.04489022120833397, -0.025174636393785477, -0.0148234311491251, -0.0029184941668063402, -0.049593403935432434, -0.016408655792474747, 0.06723035126924515, 0.030675683170557022, -0.019904550164937973, 0.002638980047777295, 0.02849206142127514, -0.03523189201951027, -0.06903603672981262, 0.018644768744707108, 0.021227320656180382, 0.04812365770339966, 0.0010701583232730627, 0.0185712818056345, -0.044596269726753235, 0.008524522185325623, 0.017993880435824394, -0.047913696616888046, -0.02109084464609623, -0.04543612524867058, 0.025510579347610474, 0.019033201038837433, -0.02830309420824051, -0.02156326361000538, 0.05009731650352478, 0.025741538032889366, -0.03588278219103813, 0.046737898141145706, 0.023557916283607483, -0.017280004918575287, 0.03405609726905823, -0.014749943278729916, -0.02271806262433529, 0.01455047819763422, -0.043630439788103104, 0.037667471915483475, -0.01299674715846777, 0.008923453278839588, -0.003928944002836943, 0.013994074426591396, -0.030213763937354088, 0.02811412699520588, 0.006209673825651407, 0.0029132449999451637, 0.03800341486930847, 0.03781444579362869, 0.0032701832242310047, -0.05912575125694275, 0.031158600002527237, -0.024418767541646957, 0.020156506448984146, 0.02061842568218708, -0.010550671257078648, -0.0027400250546634197, 0.0023752134293317795, 0.019306153059005737, -0.022424113005399704, -0.005275335628539324, 0.03141055628657341, 0.025951502844691277, 0.056186262518167496, 0.016818085685372353, 0.010094000957906246, -0.0016324670286849141, 0.0177944153547287, -0.014497986994683743, -0.023347953334450722, -0.004212394822388887, 0.015432325191795826, -0.020964866504073143, 0.016975557431578636, -0.016608120873570442, 0.004396113101392984, 0.010230476967990398, -0.01039319857954979, 0.0060994429513812065, -0.008755482733249664, -0.09658326208591461, -0.051735032349824905, 0.014812932349741459, 0.03447602316737175, 0.015558303333818913, 0.020838888362050056, 0.01955810934305191, 0.03292229399085045, 0.0007512760348618031, -0.0012578133028000593, 0.02010401524603367, 0.03665964677929878, -0.02832409180700779, -0.028177116066217422, -0.029436897486448288, 0.03428705781698227, 0.007569188252091408, -0.03298528492450714, 0.024712717160582542, 0.02238212153315544, -0.018109360709786415, 0.006235919427126646, -0.016135703772306442, -0.021311307325959206, 0.046527937054634094, -0.05874781683087349, 0.025531575083732605, -0.058663833886384964, 0.02834508754312992, -0.01842430606484413, -0.04392438754439354, 0.001111494842916727, 0.026812352240085602, -0.0160727147012949, 0.06227520853281021, -0.040187034755945206, 0.023200979456305504, -0.024901684373617172, -0.03443403169512749, -0.0019500370835885406, -0.012891765683889389, -0.014319518581032753, 0.04083792120218277, 0.030003799125552177, 0.031053617596626282, -0.0018463674932718277, -0.06063748896121979, -0.01666061207652092, -0.03199845552444458, -0.02775718830525875, -0.038633305579423904, -0.05337274819612503, -0.045352138578891754, -0.04434431344270706, -0.03657566010951996, -0.011012591421604156, -0.02985682524740696, 0.02014600858092308, -0.007989115081727505, -0.030696678906679153, 0.005663768388330936, 0.03210343420505524, -0.010335458442568779, -0.03260734677314758, -0.03640769049525261, 0.051189128309488297, 0.02851305902004242, -0.053246770054101944, 0.027631210163235664, -0.0019815315026789904, -0.014592470601201057, -0.00640388997271657, -0.005317328497767448, 0.015211863443255424, 0.037310533225536346, 0.02700131945312023, 0.0244817566126585, 0.07151360809803009, 0.04064895585179329, -0.02677036076784134, -0.01599922776222229, 0.03693259879946709, -0.03273332491517067, -0.007695166394114494, 0.004816040396690369, -0.04100589454174042, 0.014130551367998123, 0.03411908820271492, -0.018539786338806152, 0.002204617951065302, -0.08255769312381744, -0.04041799530386925, 0.01899120770394802, -0.02349492721259594, 0.02097536437213421, 0.04581405967473984, -0.03199845552444458, 0.05568234995007515, -0.004440730437636375, -0.035378869622945786, -0.06126737967133522, 0.0016613370971754193, -0.0024158938322216272, -0.016555631533265114, -0.021080346778035164, -0.02674936316907406, -0.02257108874619007, -0.011810452677309513, 0.026518404483795166, -0.05719408765435219, -0.012534827925264835, 0.016345666721463203, -0.0020602678414434195, 0.017920393496751785, -0.009800051338970661, 0.006760828197002411, 0.06336701661348343, -0.018277332186698914, -0.016461146995425224, 0.01541132852435112, 0.054632529616355896, 0.01741648092865944, 0.012755289673805237, 0.008603258989751339, -0.009044182486832142, -0.02200418710708618, 0.012251376174390316, 0.016419153660535812, 0.024985669180750847, -0.05030728131532669, -0.06471078097820282, -0.03815038874745369, -0.03296428546309471, 0.00888146087527275, 0.0020418961066752672, -0.015936238691210747, -0.0349169485270977, 0.03145254775881767, -0.08159185945987701, -0.06126737967133522, 0.0009612396243028343, -0.0039446912705898285, 0.0003165857633575797, -0.012671303935348988, 0.045772068202495575, 0.01760544814169407, 0.015463819727301598, -0.0009789553005248308, -0.030675683170557022, -0.005149357486516237, -0.022487102076411247, -0.017185522243380547, -0.027505232021212578, 0.03122158907353878, 0.00534882303327322, 0.05106315016746521, -0.036743633449077606, -0.0029814832378178835, 0.003220316953957081, 0.01889672502875328, -0.025573568418622017, 0.006655846256762743, -0.04753576219081879, -0.0007322480669245124, 0.005857984535396099, 0.0050496249459683895, 0.0018332448089495301, -0.017920393496751785, 0.05534640699625015, 0.019358644261956215, 0.0032780568581074476, 0.03743651136755943, 0.020418960601091385, 0.0029736096039414406, -0.01724851131439209, -0.012870769016444683, -0.0030234758742153645, 0.017238011583685875, 0.003385663265362382, -0.011464012786746025, -0.07369722425937653, -0.018151354044675827, 0.049425434321165085, 0.030150774866342545, -0.02813512459397316, 0.03739451989531517, 0.0035405114758759737, -0.002596987411379814, 0.0221511609852314, 0.007527195382863283, 0.06072147563099861, -0.02700131945312023, -0.05228094011545181, -0.005810742732137442, 0.016744598746299744, -0.011894438415765762, 0.022067176178097725, 0.013448169454932213, 0.011810452677309513, -0.013773612678050995, 0.06324104219675064, -0.005264837294816971, 0.05165104940533638, 0.028807006776332855, 0.007180755492299795, 0.005910475738346577, 0.00616243202239275, -0.02116433158516884, 0.011464012786746025, 0.0009330257889814675, -0.030318744480609894, 0.03621872141957283, -0.03201945126056671, -0.004443354904651642, 0.028009146451950073, -0.008430038578808308, -0.0171540267765522, -0.02792515978217125, -0.011170064099133015, 0.04913148656487465, -0.038843266665935516, -0.02313799038529396, -0.0005629649385809898, -0.018403310328722, -0.0238728616386652, 0.030024796724319458, -0.04703184962272644, -0.02252909541130066, -0.011212056502699852, 0.02372588776051998, -0.0023515925277024508, 0.013437670655548573, -0.0019579106010496616, 0.04967739060521126, -0.009542846120893955, -0.022508099675178528, 0.006535117514431477, -0.018634270876646042, 0.010492931120097637, 0.008508775383234024, -0.035000935196876526, 0.019033201038837433, 0.003936817869544029, 0.01078163180500269, -0.02443976327776909, -0.03269133344292641, 0.012083405628800392, 0.049803368747234344, -0.03365716710686684, 0.028995973989367485, -0.04123685136437416, 0.003600875847041607, 0.025111647322773933, -0.028974978253245354, -0.04581405967473984, 0.005810742732137442, 0.015211863443255424, -0.011170064099133015, -0.022655073553323746, 0.03871728852391243, -0.027799181640148163, -0.0177944153547287, -0.02109084464609623, 0.005873731803148985, -0.011715969070792198, -0.02849206142127514, 0.003942066803574562, -0.03584078699350357, -0.016062216833233833, -0.006671593524515629, -0.06088944524526596, 0.01927465945482254, -0.018770746886730194, 0.052868835628032684, 0.04610800743103027, 0.01242984551936388, 0.0194846224039793, -0.05265887454152107, -0.04434431344270706, -0.029982803389430046, 0.02094387076795101, -0.04547811672091484, -0.0024185182992368937, -0.002700656885281205, 0.015148874372243881, 0.0135741475969553, 0.015316844917833805, 0.020534440875053406, 0.03134756535291672, 0.018728753551840782, 0.004243889357894659, 0.01337468158453703, 0.004096915014088154, 0.037835441529750824, 0.011610987596213818, 0.002444763667881489, 0.02949988655745983, -0.02368389442563057, 0.01330119464546442, 0.027106301859021187, -0.02271806262433529, -0.012944256886839867, 0.0009979832684621215, -0.03290129825472832, 0.001158080529421568, -0.04434431344270706, 0.04197172448039055, 0.04753576219081879, -0.059461694210767746, -0.06122538819909096, 0.02005152404308319, 0.0077529060654342175, 0.010099249891936779, 0.002160000614821911, -0.0013135848566889763, -0.02179422229528427, 0.003629745915532112, 0.01984156109392643, 0.0054065631702542305, -0.006293659098446369, 0.010351206175982952, 0.006398641038686037, -0.020114513114094734, -0.030759667977690697, 0.03296428546309471, 0.006682091858237982, -0.034413035959005356, -0.09817898273468018, -0.0007309358334168792, -0.0030864651780575514, 0.025930505245923996, -0.01444549672305584, 0.00317569961771369, 0.007731909863650799, 0.02735825814306736, 0.02370489202439785, -0.0041284095495939255, 0.03099062852561474, 0.010041509754955769, 0.0027400250546634197, 0.007023282814770937, 0.0019946543034166098, 0.01319621317088604, 0.038045406341552734, -0.0477457232773304, 0.009075677022337914, 0.04392438754439354, -0.013416674919426441, 0.004445979371666908, 0.019117185845971107, -0.055430393666028976, 0.029373908415436745, 0.006004959344863892, -0.08276765793561935, 0.0015996602596715093, 0.008440537378191948, 0.014917914755642414, -0.005246465560048819, -0.03468598797917366, 0.007915628142654896, 0.010025762021541595, -0.03044472262263298, 0.004837036598473787, 0.022970018908381462, 0.0011298666941002011, -0.02523762546479702, 0.027883168309926987, -0.049425434321165085, 0.008288313634693623, -0.011715969070792198, -0.00577924819663167, -0.026350433006882668, 0.009653076529502869, -0.013878594152629375, 0.014770939946174622, -0.001788627472706139, -0.023242970928549767, 0.004640195984393358, 0.020985862240195274, 0.00972131546586752, 0.02872302196919918, 0.03197745606303215, 0.011138569563627243, -0.012765787541866302, -0.005264837294816971, -0.02290702983736992, -0.028849000111222267, 0.03199845552444458, 0.00957958959043026, -0.006361897569149733, 0.005364570301026106, 0.02005152404308319, -0.03831835836172104, -0.01849779486656189, -0.026623385027050972, -0.01522236131131649, 0.008535020984709263, -0.0023384697269648314, -0.0020445205736905336, 0.006550864782184362, -0.004180900286883116, 0.031326569616794586, 0.03636569902300835, -0.031284578144550323, 0.012230380438268185, 0.02563655748963356, 0.017594950273633003, 0.04934144765138626, 0.016125205904245377, -0.0009139978210441768, -0.03411908820271492, 0.02040846273303032, -0.03155753016471863, -0.0051231118850409985, -0.007926126010715961, 0.005842237267643213, 0.04020803049206734, 0.013752616010606289, 0.013311692513525486, -0.052112966775894165, -0.005275335628539324, 0.007789650000631809, -0.0006876308470964432, 0.018130358308553696, -0.01425652951002121, 0.007301484700292349, 0.01386809628456831, 0.021731233224272728, -0.021038353443145752, 0.03985109180212021, -0.04589804634451866, -0.014697453007102013, -0.02370489202439785, -0.00963732972741127, 0.0913761630654335, 0.010025762021541595, 0.03523189201951027, 0.010608411394059658, -0.0009192469296976924, -0.02599349431693554, -0.014403503388166428, 0.023347953334450722, -0.05043325945734978, -0.014414002187550068, -0.005096866749227047, -0.013910088688135147, -0.023956848308444023, 0.00577924819663167, -0.004511592909693718, 0.011474511586129665, -0.05261687934398651, 0.02542659267783165, 0.008031108416616917, -0.0004487972182687372, -0.02024049125611782, -0.0034853960387408733, -0.02949988655745983, -0.019190674647688866, -0.001944787916727364, -0.017731426283717155, 0.03216642513871193, -0.0015826007584109902, -0.04165678098797798, -0.028282098472118378, -0.016807587817311287, 0.020418960601091385, 0.02146877907216549, 0.04472224786877632, 0.04850159212946892, -0.0505172461271286, 0.021878208965063095, 0.0065928571857512, 0.021332303062081337, 0.019075194373726845, 0.009962772950530052, -0.0057425047270953655, 0.05047525092959404, 0.004178275819867849, -0.025279618799686432, 0.012965252622961998, -0.011065082624554634, 0.0022964770905673504, -0.0019828437361866236, 0.017867902293801308, -0.003913196735084057, 0.07252143323421478, 0.018508292734622955, -0.000867412134539336, 0.006808070000261068, 0.03296428546309471, 0.0065928571857512, -0.009548095054924488, 0.038990240544080734, 0.003469648538157344, -0.010246223770081997, -0.006230670027434826, 0.023809872567653656, -0.020576434209942818, -0.010655653662979603, -0.01635616458952427, -0.004755675792694092, -0.00876598060131073, 0.010225228033959866, 0.008886709809303284, -0.021258816123008728, -0.0060994429513812065, -0.010540173389017582, 0.0013398303417488933, -0.00047176197404041886, 0.009369625709950924, 0.0016902070492506027, -0.014865423552691936, -0.012230380438268185, -0.02599349431693554, -0.005632273852825165, 0.03567281737923622, 0.008183331228792667, 0.031284578144550323, 0.03840234503149986, 0.015600296668708324, -0.0123248640447855, 0.042895566672086716, -0.01755295693874359, -0.004180900286883116, -0.0021166957449167967, -0.03636569902300835, -0.013479663990437984, -2.6553014322416857e-05, 0.002142941113561392, -0.03101162426173687, -0.04272759333252907, 0.02483869530260563, 0.0275892186909914, 0.012723795138299465, 0.046905871480703354, -0.012639809399843216, 2.3190315914689563e-05, -0.021689241752028465, -0.015022896230220795, 0.0011515191290527582, -0.02200418710708618, 0.0008451035246253014, 0.023662898689508438, -0.0008949699113145471, -0.038213375955820084, 0.005632273852825165, -0.0068868063390254974, 0.05698412284255028, -0.0405229777097702, 0.014728947542607784, -0.009254146367311478, 0.006566612049937248, 0.002829259727150202, -0.001953973900526762, -0.0010222602868452668, 0.00472418125718832, 0.015001899562776089, -0.014235532842576504, -0.019526615738868713, 0.02252909541130066, -0.022256143391132355, 0.011443017050623894, -0.014644961804151535, 0.020303480327129364, -0.00032839621417224407, -0.021174829453229904, 0.0023817745968699455, -0.01484442688524723, 0.022781051695346832, -0.030087785795331, -0.036470677703619, 0.04934144765138626, -0.008855215273797512, 0.007081022951751947, 0.004254387691617012, 0.012167391367256641, 0.005600779317319393, 0.0041520302183926105, -0.050769202411174774, 0.00882372073829174, 0.002628481946885586, 0.010219979099929333, 0.02177322655916214, 0.02007252164185047, -0.020345473662018776, -0.0006282504764385521, 0.0046926867216825485, -0.028240105137228966, -0.02294902317225933, 0.005873731803148985, 0.02735825814306736, -0.015505812130868435, -0.025132644921541214, -0.013511158525943756, 0.0033541687298566103, 0.002604861045256257, -0.0005331107531674206, -0.024565743282437325, -0.004663816653192043, 0.04417634382843971, 0.0010970598086714745, -0.04234965890645981, 0.006482626311480999, -0.046695906668901443, -0.014980903826653957, -0.015379833988845348, 0.01620919071137905, 0.007290986366569996, -0.03739451989531517, 0.019264161586761475, 0.033825136721134186, -0.03657566010951996, -0.03796141967177391, -0.0019684089347720146, 0.011506006121635437, 0.015967732295393944, -0.04745177552103996, 0.0019172301981598139, 0.02040846273303032, -0.037877436727285385, -0.0037635976914316416, 0.00036645212094299495, 0.014351013116538525, 0.003682236885651946, -0.04560409486293793, 0.01751096546649933, 0.009962772950530052, 0.02175223082304001, -0.007647924590855837, 0.0069865393452346325, 0.10078253597021103, 0.015390332788228989, -0.021143335849046707, -0.024376774206757545, 0.009590087458491325, -0.009138666093349457, -0.04031301289796829, 0.0055692847818136215, 0.022298134863376617, 0.030570700764656067, 0.03655466437339783, -0.04253862798213959, 0.005438057705760002, -0.01063990592956543, -0.0026350433472543955, 0.00993127841502428, 0.013920587487518787, 0.005794995464384556, 0.000216853033634834, -0.009873539209365845, 0.03542086109519005, -0.031158600002527237, 0.007542942650616169, 0.025573568418622017, 0.013479663990437984, -0.0061834282241761684, 0.01897021196782589, 0.027799181640148163, -0.013164718635380268, 0.028786011040210724, -0.03218742087483406, -0.013395678251981735, 0.00012983297347091138, -0.002818761393427849, -0.026245450600981712, -0.0037898430600762367, 0.03850732743740082, -0.009548095054924488, -0.02565755322575569, -0.033069267868995667, -0.0013162093237042427, -0.00909667368978262, -0.0002686878142412752, -0.004409235902130604, -0.03655466437339783, -0.019285157322883606, -0.009164911694824696, 0.003970936872065067, -0.014046565629541874, 0.00838804617524147, 0.03445502743124962, -0.019411135464906693, -0.020481949672102928, 0.00077752151992172, -0.027211284264922142, -0.010293466039001942, -0.016629118472337723, 0.01398357655853033, 0.019610600546002388, -0.011390525847673416, 0.028995973989367485, 0.018508292734622955, -0.009033684618771076, -0.024733712896704674, -0.009569091722369194, -0.027652207762002945, 0.03084365464746952, 0.007527195382863283, 0.012975751422345638, -0.004078543279320002, 0.010876115411520004, -0.004892152268439531, -0.014644961804151535, -0.016041219234466553, 0.027463240548968315, -0.0006626976537518203, -0.056018292903900146, 0.02389385923743248, 0.058495860546827316, 0.008430038578808308, -0.006020706612616777, -0.03235539048910141, -0.03279631584882736, 0.010760635137557983, 0.033216241747140884, -0.0002227582735940814, -0.01175796240568161, -0.0022689192555844784, 0.017479469999670982, -0.0034853960387408733, 0.00341978226788342, 0.029604868963360786, -0.008797475136816502, 0.007826393470168114, 0.007574437186121941, -0.016251184046268463, -0.027400251477956772, -0.0022964770905673504, -0.0007814583368599415, -0.0315365344285965, 0.002090450143441558, 0.0007689917110837996, 0.03489595279097557, 0.03273332491517067, 0.01281827874481678, 0.006041702814400196, 0.003928944002836943, 0.004511592909693718, -0.010435190983116627, -0.048459600657224655, 0.03838134929537773, 0.002436890034005046, 0.029037967324256897, 0.009385373443365097, -0.02868102863430977, 0.026308439671993256, 0.058663833886384964, 0.02035597153007984, 0.0177944153547287, 0.03063368983566761, 0.013175216503441334, 0.0049603902734816074, -0.025909509509801865, 0.0002722965436987579, -0.02733726240694523, -0.018739251419901848, -0.010624158196151257, 0.012293369509279728, 0.025573568418622017, 0.05186101049184799, -0.007469455245882273, -0.014403503388166428, -0.010477184318006039, -0.029037967324256897, 0.028429072350263596, -0.01126454770565033, -0.016786590218544006, 0.04350446164608002, 0.0015747271245345473, -0.06479477137327194, 0.014802434481680393, -0.026812352240085602, 0.00298673240467906, 0.03663865104317665, 0.026833349838852882, -0.01386809628456831, 0.0007821144536137581, -0.012975751422345638, 0.02601449191570282, 0.0008352614822797477, 0.0074957008473575115, -0.06151933595538139, -0.006960293743759394, 0.008136089891195297, -0.011883940547704697, -0.003997182007879019, 0.02563655748963356, 0.021857211366295815, -0.01673409901559353, -0.015180368907749653, 0.001745322486385703, 0.02234012819826603, 0.00870824046432972, -0.019967539235949516, -0.03493794426321983, 0.02141628786921501, -0.02257108874619007, -0.021384794265031815, 0.00930663663893938, -0.006713586393743753, -0.04167777672410011, -0.007227997295558453, 0.015054390765726566, -5.38031745236367e-05, 0.0025038160383701324, -0.010592663660645485, -0.010513927787542343, 0.0160727147012949, 0.007789650000631809, -0.0055797831155359745, -0.011663478799164295, 0.01946362666785717, 0.01927465945482254, -0.004955141339451075, 0.03063368983566761, 0.00988403707742691, 0.01861327327787876, -0.007170257158577442, 0.014025568962097168, 0.005007632076740265, -0.006687340792268515, 0.002472321502864361, 0.050601229071617126, -0.016986055299639702, -0.007012784481048584, 0.03159952163696289, -0.00016829895321279764, 0.016198692843317986, -0.006745080929249525, 0.021878208965063095, -0.004015554208308458, -0.03754149377346039, -0.03330022841691971, 0.012524329125881195, -0.010424693115055561, 0.0017505716532468796, -0.024208804592490196, -0.007007535547018051, -0.004587704781442881, 0.05312079191207886, -0.038654301315546036, -0.01649264246225357, 0.032460372895002365, -0.0318094864487648, 0.0024775706697255373, 0.00484753493219614, 0.021437285467982292, -0.003991933073848486, 0.057488035410642624, -0.022235145792365074, 0.008031108416616917, -0.018256336450576782, -0.005648021120578051, 0.016524136066436768, 0.009731813333928585, 0.012576820328831673, 0.049425434321165085, 0.017301000654697418, -0.010335458442568779, 0.022466106340289116, 0.012587318196892738, 0.020376969128847122, -0.00911766942590475, -0.010660902597010136, -0.022298134863376617, 0.0020261488389223814, -0.032502368092536926, -0.044218335300683975, -0.02620345912873745, 0.011537500657141209, -0.01224087830632925, 0.033972110599279404, -0.027652207762002945, -0.004834412131458521, -0.03141055628657341, 0.021920200437307358, -0.015652786940336227, 0.02905896306037903, -0.045730073004961014, 0.06009158492088318, 0.02311699278652668, 0.0075061991810798645, 0.007527195382863283, -0.0075061991810798645, 0.011275045573711395, 0.0009533659904263914, -0.007023282814770937, -0.014414002187550068, -0.03157852590084076, -0.015327343717217445, 0.020177502185106277, -0.011820951476693153, -0.01270279847085476, 0.04547811672091484, 0.0042176442220807076, -0.004879029467701912, -0.02389385923743248, 0.017636943608522415, 0.0037530995905399323, 0.028009146451950073, 0.0007342164753936231, 0.023809872567653656, -0.03626071661710739, 0.0275892186909914, -0.03924219682812691, 0.033972110599279404, -0.0327543243765831, -0.009663575328886509, -0.026119472458958626, -0.021626252681016922, -0.026539400219917297, -0.01897021196782589, 0.040187034755945206, 0.015505812130868435, -0.009747560136020184, -0.012566322460770607, -0.006293659098446369, 0.026476411148905754, 0.035567834973335266, 0.009595337323844433, -0.02620345912873745, 0.01039319857954979, 0.01993604563176632, -0.02693833038210869, -0.030297748744487762, -0.011726467870175838, -0.0036507423501461744, 0.007737158797681332, -0.015295849181711674, -0.008041606284677982, 0.023641902953386307, 0.005338324699550867, -0.01014649122953415, 0.038255371153354645, 0.002666537882760167, 0.029562875628471375, -0.004254387691617012, -0.021342800930142403, 0.040166039019823074, -0.04757775366306305, -0.010603162460029125, -0.010813126340508461, -0.013311692513525486, -0.007133513689041138, -0.012009918689727783, 0.000655480136629194, -0.010020513087511063, -0.014560976065695286, -0.03588278219103813, -0.014497986994683743, 0.02177322655916214, -0.0004113974573556334, -0.0008273878484033048, 0.015127877704799175, -0.006141435820609331, -0.01708053983747959, -0.003973561339080334, -0.012230380438268185, -0.02408282645046711, -0.02219315432012081, 0.007359224371612072, -0.007301484700292349, -0.021258816123008728, -0.05068521574139595, 0.01995704136788845, -0.019495120272040367, -0.0011817014310508966, 0.018319325521588326, 0.03443403169512749, 0.014833929017186165, 0.026686374098062515, -0.010104498825967312, -0.0054065631702542305, 0.06235919147729874, -0.02007252164185047, 0.04476424306631088, 0.008309310302138329, -0.0045089684426784515, -0.0034827713388949633, -0.006671593524515629, 0.040355004370212555, -0.0015930988593026996, 0.03254435956478119, 0.01781541295349598, 0.005369819235056639, 0.021311307325959206, -0.005585032049566507, -0.022445110604166985, -0.025678548961877823, -0.0008995628450065851, 0.013700125738978386, 0.01745847426354885, 0.0007880196790210903, 0.005262212827801704, -0.008939201012253761, -5.671477993018925e-05, -0.017489967867732048, 0.010036260820925236, 0.007427462842315435, 0.004191398620605469, 0.03210343420505524, -0.007737158797681332, -0.03890625759959221, 0.013416674919426441, 0.00801011174917221, -0.024145815521478653, -0.0012276310008019209, -0.015579300001263618, -0.025153640657663345, -0.028660032898187637, 0.002201993251219392, 0.017332496121525764, 0.0069550443440675735, -0.04468025639653206, -0.012167391367256641, -0.0374155156314373, -0.03063368983566761, -0.01658712513744831, 0.010939104482531548, -0.000650887202937156, -0.052910830825567245, -0.004621823783963919, -0.03384613245725632, 0.017657939344644547, 0.05169304087758064, -0.03210343420505524, -0.012765787541866302, 0.019001707434654236, 0.028240105137228966, -0.0034512768033891916, -0.040564969182014465, 0.028471065685153008, -0.003928944002836943, 0.024124817922711372, -0.02601449191570282, -0.015274852514266968, 0.014466492459177971, 0.011873441748321056, 0.002160000614821911, -0.020775899291038513, 0.003036598674952984, -0.0007696478860452771, -0.01251383125782013, -0.006430135574191809, -0.0038948250003159046, -0.0008700367179699242, -0.00722274836152792, 0.024649728089571, 0.05228094011545181, -0.030675683170557022, -0.003653366817161441, 0.006545615382492542, 0.04967739060521126, -0.053078800439834595, 0.0039761858060956, 0.037499502301216125, 0.013626637868583202, 0.011925932951271534, 0.017573954537510872, -0.01036695297807455, 0.011873441748321056, 0.026077480986714363, 0.045016199350357056, 0.011033588089048862, -0.023033007979393005, -0.006188677623867989, -0.024145815521478653, 0.021405790001153946, 0.009647827595472336, -0.03443403169512749, -0.010634656995534897, -0.012555823661386967, 0.01934814639389515, 0.030402731150388718, 0.011736965738236904, -0.016807587817311287, -0.0066296011209487915, -0.010167487896978855, 0.019495120272040367, 0.006708337459713221, 0.005249090027064085, 0.027442242950201035, -0.03602975606918335, -0.04400837421417236, -0.030906643718481064, 0.003062844043597579, 0.009065179154276848, -0.022634077817201614, -0.02945789508521557, 0.019337648525834084, -0.003991933073848486, -0.011464012786746025, 0.002768895123153925, 0.007123015355318785, 0.0026114224456250668, 0.031095610931515694, -0.006193926557898521, -0.016041219234466553, 0.005264837294816971, -0.0039446912705898285, 0.061183396726846695, 0.022109167650341988, 0.008377548307180405, -0.010865616612136364, 0.014718448743224144, 0.009527098387479782, -0.010282968170940876, -0.021836215630173683, 0.024817699566483498, -0.03199845552444458, 0.04199272021651268, 0.02639242634177208, -0.028953982517123222, 0.03376214951276779, -0.019022703170776367, 0.03487495705485344, -0.01542182732373476, 0.004052297677844763, -0.008776478469371796, -0.01088661327958107, -0.0006597450119443238, -0.017007052898406982, 0.04388239607214928, -0.03598776087164879, -0.003209818620234728, 0.00385283213108778, 0.016513638198375702, 0.006708337459713221, 0.008891958743333817, 0.020366469398140907, -0.04409235715866089, 0.0022164282854646444, -0.026329437270760536, -0.025510579347610474, -0.0006026611663401127, -0.015915241092443466, 0.005511544644832611, -0.012146394699811935, 0.0060784462839365005, -0.005354071967303753, 0.0244817566126585, -0.019337648525834084, -0.014372008852660656, -0.008241071365773678, 0.028282098472118378, 0.03968312218785286, 0.011789456941187382, 0.012534827925264835, -0.026056483387947083, 0.007479953579604626, -0.0027374005876481533, -0.05698412284255028, -0.0009671448497101665, 0.03840234503149986, 0.010534924454987049, -0.009821048006415367, 0.009296138770878315, 0.005884230136871338, -0.02408282645046711, 0.0160727147012949, 0.006755579262971878, 0.0057530030608177185, 0.0022190529853105545, -0.0022689192555844784, 0.0014763065846636891, 0.046527937054634094, -0.00108984240796417, 0.013437670655548573, -0.05261687934398651, 0.002724277786910534, -0.005293707363307476, 0.01670260541141033, -0.012492834590375423, -0.008440537378191948, -0.005511544644832611, 0.00034479962778277695, 0.015442823059856892, 0.005301581230014563, -0.0021140710450708866, 0.00801011174917221, 0.021878208965063095, -0.0025143141392618418, 0.008351302705705166, 0.007133513689041138, -0.022823045030236244, 0.01953711360692978, 0.027883168309926987, -0.001068189856596291, -0.0052254693582654, 0.0028948732651770115, 0.015988728031516075, -0.01330119464546442, -0.03101162426173687, -0.047115832567214966, 0.02563655748963356, 0.03204044699668884, -0.016335168853402138, 0.004267510492354631, 0.015316844917833805, -0.012041413225233555, 0.0027374005876481533, 0.011999419890344143, 0.012639809399843216, 0.02830309420824051, 0.006865810137242079, 0.00808359868824482, -0.04354645311832428, -0.011149067431688309, -0.014455994591116905, 0.0014631839003413916, -0.012891765683889389, 0.018770746886730194, -0.01939013972878456, -0.006991788279265165, 0.03141055628657341, 0.025552570819854736, 0.007395968306809664, -0.005180852022022009, -0.005186100956052542, -0.06151933595538139, -0.01405706349760294, -0.013773612678050995, -0.05375068262219429, -0.02141628786921501, 0.022823045030236244, -0.023179981857538223, -0.0044748494401574135, -0.01751096546649933, 0.01017798576503992, 0.010561169125139713, -0.007962869480252266, 0.005600779317319393, -0.04820764437317848, 0.023641902953386307, -0.03875928372144699, 0.026875341311097145, 0.03279631584882736, 0.010949602350592613, 0.02217215672135353, 0.012608314864337444, 0.03351019322872162, 0.008309310302138329, 0.010597913525998592, -0.020009532570838928, 0.015180368907749653, 0.027085306122899055, -0.0271482951939106, -0.014539980329573154, -0.0061834282241761684, 0.020513445138931274, 0.0002393257018411532, 0.002422455232590437, -0.00016296784451697022, -0.0009500853484496474, -0.013689626939594746, -0.026266448199748993, 0.03044472262263298, -0.00360874948091805, 0.006472128443419933, 0.01292326021939516, 0.008041606284677982, -0.006918300874531269, -0.0036481176503002644, 0.024901684373617172, -0.01463446393609047, -0.012944256886839867, 0.0020602678414434195, 0.01755295693874359, 0.017028048634529114, -0.0011679226299747825, -0.002976234070956707, 0.018634270876646042, -0.025930505245923996, 0.021815219894051552, 0.016765594482421875, 0.024943677708506584, -0.0012971814721822739, -0.006655846256762743, 0.014036067761480808, -0.005632273852825165, 0.02754722535610199, 0.02523762546479702, -0.00497876200824976, -0.018833735957741737, 0.040355004370212555, -0.011327536776661873, 0.007983866147696972, 0.006204424891620874, 0.020754903554916382, -0.02391485497355461, -0.006624351721256971, 0.016818085685372353, 0.016975557431578636, 0.014770939946174622, 0.02313799038529396, -0.010771133005619049, -0.0008477280498482287, 0.006566612049937248, 0.002628481946885586, 0.004763549193739891, -0.03065468743443489, -0.03596676513552666, 0.004393488634377718, 0.010534924454987049, -0.014970405027270317, -0.0008667560177855194, 0.01156899519264698, 0.05152507126331329, 0.002352904761210084, -0.06324104219675064, 0.0015025520697236061, 0.0008582262671552598, -0.004991884808987379, 0.0016993929166346788, 0.013269700109958649, -0.006052201148122549, -0.008786977268755436, 0.018907222896814346, 0.003905323101207614, -0.026077480986714363, -0.001553730689920485, -0.02332695759832859, -0.0027715195901691914, 0.015295849181711674, 0.03493794426321983, 0.01097059901803732, -0.011464012786746025, -0.00528320949524641, -0.0196525938808918, -0.015285350382328033, 0.012765787541866302, -0.01262931153178215, 0.02059742994606495, 0.010167487896978855, -0.02618246152997017, -0.017573954537510872, 0.011023089289665222, 0.01605171710252762, -0.0063566481694579124, -0.016198692843317986, -0.006083695683628321, 0.012303867377340794, 0.035735804587602615, 0.0010097937192767859, -0.02311699278652668, -0.018508292734622955, -0.030591698363423347, 0.014455994591116905, -0.004225517623126507, -0.039599135518074036, 0.012366856448352337, -0.05467452481389046, -0.011547998525202274, 0.005130985751748085, -0.009296138770878315, -0.0029552378691732883, -0.056564196944236755, 0.03754149377346039, -0.01984156109392643, 0.012209383770823479, 0.022235145792365074, 0.025531575083732605], [0.043073903769254684, 0.016020096838474274, 0.09072160720825195, 0.020181315019726753, -0.060119569301605225, -0.013438492082059383, -0.04224873334169388, 0.050076067447662354, -0.0018566338112577796, 0.020016280934214592, -0.04470066726207733, 0.024036040529608727, 0.04194224253296852, 0.03336046636104584, -0.02112436667084694, -0.01532459631562233, 0.016750963404774666, 0.016750963404774666, -0.009919729083776474, -0.045879483222961426, 0.03380841761827469, 0.02368239499628544, -0.052763763815164566, -0.04038620740175247, 0.006395071744918823, 0.008935418911278248, 0.003577703842893243, -0.021902384236454964, 0.04583233222365379, -0.0052103628404438496, 0.041352834552526474, -0.033077552914619446, 0.03109714202582836, -0.00189789233263582, -0.01800050586462021, -0.009359791874885559, -0.008740914054214954, -0.007544416468590498, 0.005018805153667927, -0.014735189266502857, -0.015312808565795422, -0.021018274128437042, 0.02137191779911518, -0.03736843913793564, -0.04493643343448639, 0.1025097593665123, -0.019426872953772545, -0.03762777894735336, 0.0075267343781888485, 0.022597884759306908, -0.00694322120398283, 0.06775829195976257, 0.023717759177088737, -0.09383368492126465, -0.023505574092268944, -0.034232791513204575, 0.0031474363058805466, 0.021878808736801147, 0.020711781457066536, -0.01178815122693777, 0.011452188715338707, -0.01280193217098713, -0.003303629346191883, 0.01933256722986698, -0.0015074098482728004, -0.0031562773510813713, 0.04488927870988846, 0.006224143784493208, -0.06653232127428055, -0.02473154105246067, 0.002303109969943762, 0.036637574434280396, 0.0020997643005102873, -0.004729995504021645, 0.009289063513278961, 0.021466223523020744, -0.03824076056480408, 0.024000676348805428, 0.03840579465031624, 3.927848956664093e-05, -0.04510146751999855, 0.04206012189388275, -0.015737181529402733, -0.013957170769572258, -0.021478012204170227, 0.048119232058525085, -0.05554576963186264, -0.01973336562514305, -0.0013777401763945818, -0.023776700720191002, 0.0007098677451722324, -0.005614107009023428, -0.0022117518819868565, 0.021348342299461365, -0.0002412887115497142, -0.001724017085507512, -0.0019863033667206764, -0.049557387828826904, 0.005531589966267347, 0.03776923567056656, -0.008652502670884132, -0.043639734387397766, -0.03729771077632904, 0.02697128988802433, -0.009595555253326893, -0.07558562606573105, -0.017399311065673828, 0.0324881449341774, 0.046563196927309036, 0.013414915651082993, 0.033266160637140274, -0.05252800136804581, 0.01888461783528328, 0.022149935364723206, -0.06403324007987976, -0.012837296351790428, -0.042838141322135925, -0.04941593110561371, 0.00842263363301754, -0.03802857547998428, -0.007414747029542923, 0.029800446704030037, -0.01434617955237627, -0.061958521604537964, 0.04262595251202583, 0.030554886907339096, 0.004968705587089062, 0.03838222101330757, -0.011216425336897373, -0.055404309183359146, 0.032158076763153076, -0.04040978103876114, 0.03706194832921028, -0.013261670246720314, 0.01158775296062231, -0.002789371181279421, -0.0263347290456295, -0.01933256722986698, 0.025957508012652397, -0.0233287513256073, 0.004729995504021645, 0.010597547516226768, 0.026146119460463524, 0.008251706138253212, -0.08859974145889282, 0.00016365268675144762, -0.010267479345202446, 0.04422914236783981, 0.017788320779800415, -0.024071404710412025, 0.008351905271410942, -0.006683881860226393, -0.02657049335539341, 0.004314463119953871, -0.002457829425111413, -0.021501587703824043, 0.029234614223241806, 0.05078335478901863, -0.016833480447530746, -0.010291055776178837, -0.016067249700427055, 0.026759102940559387, 0.003135648090392351, -0.013709619641304016, 0.031073566526174545, 0.030083362013101578, -0.03081422671675682, 0.02152516320347786, -0.052716612815856934, -0.04137641191482544, 0.000565094465855509, -0.016656657680869102, 0.02005164511501789, -0.01972157694399357, -0.08482753485441208, -0.027820035815238953, 0.01780010759830475, 0.013874653726816177, 0.0036395916249603033, -0.010414831340312958, 0.021678410470485687, 0.02389458194375038, -0.007096467074006796, 0.002173440298065543, 0.023305173963308334, 0.05969519540667534, -0.03220522776246071, -0.0055080135352909565, -0.014723400585353374, 0.002220592927187681, 0.027820035815238953, -0.01609082706272602, 0.02892812341451645, 0.031828008592128754, -0.02600466087460518, -0.013132000342011452, -0.01388644240796566, -0.00769176846370101, 0.030224818736314774, -0.0167981144040823, 0.03213449940085411, -0.027631426230072975, 0.020275620743632317, -0.00034259314998053014, -0.051915016025304794, 0.013014119118452072, 0.018318787217140198, 0.00830475240945816, 0.044559210538864136, -0.014275451190769672, 0.03305397555232048, -0.04345112666487694, -0.029470378533005714, 0.01400432363152504, 0.0013291140785440803, 0.0031945889350026846, 0.042956024408340454, 0.028880970552563667, 0.031757280230522156, -0.008074883371591568, -0.04797777533531189, 0.021466223523020744, 0.009017935954034328, -0.021136155351996422, -0.017422886565327644, -0.05516854673624039, -0.04326251521706581, -0.0129080256447196, -0.03873586282134056, -0.0233641155064106, -0.02932891994714737, 0.007827332243323326, 0.027702154591679573, -0.06403324007987976, -0.029069580137729645, 0.023352326825261116, 0.00403154781088233, -0.023941734805703163, -0.010945298708975315, 0.047081876546144485, 0.009872576221823692, -0.05229223892092705, 0.005404867231845856, -0.015194926410913467, -0.011181061156094074, -0.023269809782505035, -0.013756772503256798, 0.0037545261438935995, 0.052480850368738174, 0.014475849457085133, 0.024354320019483566, 0.05464986711740494, 0.014464061707258224, -0.044559210538864136, -0.011086756363511086, 0.06554211676120758, -0.011222319677472115, 0.0036985324695706367, 0.004924499895423651, 0.0027053807862102985, -0.019615482538938522, 0.009660390205681324, -0.016656657680869102, -0.013839289546012878, -0.04526650160551071, -0.05361251160502434, 0.009012041613459587, -0.02316371724009514, 0.0344921313226223, 0.05545146390795708, -0.017069242894649506, 0.04635101184248924, 0.004915658850222826, -0.05842207744717598, -0.040669120848178864, 0.025297371670603752, -0.02468438819050789, 0.0028453648556023836, -0.015242079272866249, -0.027159899473190308, -0.03692048788070679, 0.0054137082770466805, 0.030271971598267555, -0.05927082523703575, -0.013155576772987843, 0.011399142444133759, -0.002085029147565365, 0.022739343345165253, -0.00484198285266757, 0.012412923388183117, 0.05398973077535629, 0.018295209854841232, -0.021701985970139503, 0.04790704697370529, 0.07016307860612869, 0.005015858449041843, 0.010067081078886986, 0.00777428550645709, -0.012035702355206013, -0.010308737866580486, 0.0142047218978405, 0.024990880861878395, -0.034869350492954254, -0.041282106190919876, -0.015041681006550789, -0.009907941333949566, -0.02093575708568096, 0.01180583331733942, -0.023187292739748955, -0.023599877953529358, -0.08053664863109589, 0.02949395403265953, -0.08294142782688141, -0.05021752417087555, -0.0048920828849077225, -0.00934210978448391, -0.013980747200548649, -0.017505403608083725, 0.028550902381539345, 0.030837804079055786, -0.014157569035887718, 0.00022268554312177002, -0.014629095792770386, 0.00010065975948236883, -0.025745321065187454, 0.00040963824721984565, -0.035718098282814026, 0.02232675813138485, 0.03270033001899719, 0.0324174165725708, -0.028220834210515022, -0.04406410828232765, -0.006053215358406305, 0.043922651559114456, -0.006507059559226036, -0.06582503765821457, 0.008634820580482483, 0.017505403608083725, -0.027796460315585136, 0.004992282018065453, -0.00714361947029829, 0.0009658916387706995, 0.02341126836836338, 0.02312835305929184, -0.0025035087019205093, 0.032676756381988525, 0.03736843913793564, 0.025038033723831177, -0.047081876546144485, 0.010267479345202446, -0.0006063530454412103, 0.007249712944030762, 0.004223105031996965, -0.00036672200076282024, -0.06893710792064667, -0.007597463205456734, 0.04142356291413307, -0.010432513430714607, -0.004343933891505003, 0.03986752778291702, -0.0385001003742218, 0.0035894920583814383, 0.028385868296027184, 0.013697831891477108, 0.054319798946380615, -0.03121502324938774, -0.029682563617825508, -0.04885009676218033, 0.014475849457085133, 0.003229953348636627, 0.0024033093359321356, 0.007697662804275751, 0.024755116552114487, -0.03824076056480408, 0.060685403645038605, 0.0014705718494951725, 0.00204524421133101, -0.005879340227693319, -0.000386430328944698, 0.0005275197327136993, 0.016633080318570137, -0.021230459213256836, 0.024260014295578003, -0.00476241298019886, 0.00478304224088788, 0.030602039769291878, 0.013473856262862682, -0.026546915993094444, 0.005708412267267704, -0.01540711335837841, 0.021430859342217445, -0.008623032830655575, -0.0025565552059561014, 0.04918016493320465, -0.04026832431554794, -0.023104775696992874, 0.014805917628109455, 0.003713267622515559, -0.015654664486646652, 0.016079038381576538, -0.008234023116528988, -0.062241438776254654, -0.010072975419461727, -0.007190772332251072, -0.008434422314167023, 0.006548318080604076, -0.018672430887818336, 0.02217351272702217, -0.03324258700013161, -0.038358643651008606, 0.007903954945504665, -0.021819867193698883, 0.024707965552806854, 0.009236016310751438, -0.009259592741727829, 0.020664628595113754, -0.00924191065132618, -0.007868590764701366, -0.02232675813138485, -0.01190603245049715, -0.015595723874866962, 0.012636898085474968, -0.019320780411362648, 0.07124758511781693, -0.05257515236735344, 0.014923798851668835, 0.019756941124796867, -0.014794129878282547, -0.015242079272866249, 0.013532797805964947, -0.002313424600288272, -0.01204749010503292, -0.03081422671675682, 0.06563642621040344, -0.05502709001302719, 0.0025874990969896317, -0.0691257193684578, 0.03484577313065529, -0.019815882667899132, -0.026523340493440628, -0.012919813394546509, -0.043073903769254684, 0.028598055243492126, 0.007031632121652365, -0.029753293842077255, 0.0010962981032207608, -0.012566168792545795, 0.03925454244017601, 0.041352834552526474, 0.007296865340322256, 0.02925819158554077, -0.05083050578832626, -0.013957170769572258, 0.004606219939887524, 0.0157607588917017, -0.04833142086863518, 0.00175054045394063, -0.026994865387678146, 0.02793791890144348, 0.00460032606497407, 0.038358643651008606, -2.05256583285518e-05, 0.03783996403217316, 0.03809930384159088, 0.007827332243323326, 0.01056218333542347, 0.030554886907339096, 0.034232791513204575, 0.010243902914226055, -0.044040530920028687, 0.025344524532556534, -0.018413091078400612, -0.00118544592987746, 0.0074324291199445724, -0.008540515787899494, -0.012837296351790428, -0.002789371181279421, -0.02737208642065525, -0.01916753314435482, -0.019320780411362648, 0.026075391098856926, 0.03800499811768532, -0.05153779685497284, -0.048237115144729614, 0.030790651217103004, 0.011929608881473541, 0.04290886968374252, 0.01729321852326393, -0.006059109698981047, -0.028032222762703896, -0.025038033723831177, 0.009678072296082973, -0.012082855217158794, -0.010314632207155228, -0.018118388950824738, 0.010656488128006458, -0.04201297089457512, -0.024307167157530785, 0.033431194722652435, -0.01729321852326393, -0.019627271220088005, -0.06356170773506165, -0.004871453624218702, -0.02909315750002861, -0.005048275925219059, -0.0055581131018698215, -0.008693761192262173, -0.003819360863417387, -0.0020643998868763447, -0.009377473965287209, 0.013509221374988556, 0.0024990879464894533, -0.010326419956982136, -0.0004696841351687908, 0.009177075698971748, -0.017057454213500023, -0.024542931467294693, 0.028998851776123047, -0.053753968328237534, 0.02421286143362522, 0.03380841761827469, -0.01692778430879116, -0.020912179723381996, 0.03265317901968956, -0.05450841039419174, 0.02212635986506939, -0.03225238248705864, -0.06544781476259232, 0.0010660908883437514, -0.019544754177331924, 0.01046198420226574, -0.009595555253326893, -0.04104634374380112, -0.018024083226919174, 0.011852986179292202, -0.015253867954015732, -0.021796291694045067, 0.024990880861878395, 0.0018669484416022897, 0.0015619300538673997, 0.009960987605154514, -0.03725055605173111, 0.01534817274659872, 0.00832243449985981, -0.013591738417744637, -0.026523340493440628, 0.026381881907582283, -0.008782172575592995, 0.0014433118049055338, 0.011098544113337994, -0.015855062752962112, -0.001931783277541399, 0.025344524532556534, 0.01302590686827898, 0.03265317901968956, 0.04434702545404434, 0.01844845712184906, -0.05153779685497284, 0.0007257080287672579, -0.007108255289494991, 0.014133993536233902, 0.02392994612455368, 0.017705803737044334, 0.0039018779061734676, -0.010456089861690998, 0.028503749519586563, -0.016149766743183136, -0.01689242012798786, -0.010131916031241417, 0.0021749138832092285, -0.01306127104908228, 0.010025822557508945, -0.0013077480252832174, 0.03213449940085411, 0.020417077466845512, 0.01544247753918171, 0.03901877999305725, -0.04566729813814163, -0.003356676083058119, 0.0001500226353527978, 0.01792977750301361, 0.04885009676218033, -0.006347919348627329, 0.005475596059113741, -0.022138148546218872, -0.009059194475412369, -0.01158185862004757, -0.025320949032902718, -0.001894945278763771, -4.806204287888249e-07, -0.014912011101841927, -0.025556711480021477, 0.015866851434111595, -0.035152267664670944, -0.022032054141163826, 0.026075391098856926, -0.02772573195397854, -0.0162087082862854, -0.03564736992120743, 0.04097561165690422, 0.03024839609861374, -0.0009150552214123309, -0.004971652757376432, 0.04305032640695572, -0.03673188015818596, -0.0309321079403162, -0.016574140638113022, -0.023316962644457817, 0.08223414421081543, 0.01506525743752718, 0.054084036499261856, -0.004326251335442066, -0.014723400585353374, -0.05337674915790558, -0.020310984924435616, 0.005422549322247505, -0.07629291713237762, -0.0012885922333225608, 0.021230459213256836, -0.00010729059431469068, -0.02708917111158371, 0.013780348934233189, 0.002578658051788807, -0.008864689618349075, -0.07082321494817734, 0.015489630401134491, -0.0074324291199445724, -0.019674424082040787, 0.018318787217140198, -0.007320441771298647, -0.035505909472703934, -0.0207707230001688, -0.009041511453688145, -0.02204384282231331, 0.009772377088665962, -0.0238827932626009, -0.020346349105238914, -0.025344524532556534, -0.010591654106974602, 0.03208734840154648, 0.046563196927309036, 0.019391508772969246, 0.018908195197582245, -0.057526178658008575, 0.014723400585353374, 0.004234893247485161, 0.009129922837018967, 0.02737208642065525, 0.022350333631038666, -0.004240787122398615, 0.03925454244017601, 0.014640883542597294, -0.01953296549618244, 0.010674171149730682, 0.004688736982643604, 0.007261501159518957, -0.004824300762265921, 0.0376042015850544, 0.005628841929137707, 0.04814280942082405, 0.017635073512792587, 0.03272390738129616, 0.00379578466527164, 0.025981085374951363, 0.008051306940615177, 0.006972691509872675, 0.026499763131141663, -0.012542592361569405, 0.03128575161099434, -0.015371749177575111, 0.00012644633534364402, 0.0011729210382327437, 0.02480226941406727, -0.017776532098650932, 0.024425048381090164, 0.005030593369156122, -0.0009165287483483553, -0.0028085270896553993, -0.004953970666974783, 0.002560975728556514, -0.00238120649009943, -0.00017267798830289394, -0.013662466779351234, 0.014876646921038628, -0.0013394287088885903, -0.010243902914226055, -0.03333689272403717, -0.027843613177537918, -0.008687867783010006, 0.05526285246014595, 0.024189285933971405, 0.04269668459892273, 0.02697128988802433, 0.025509558618068695, -0.01652698777616024, 0.030059784650802612, -0.008658397011458874, 0.005319403018802404, -0.021513376384973526, -0.01792977750301361, -0.013638890348374844, -0.019261838868260384, -0.016821691766381264, -0.054319798946380615, -0.05710180476307869, 0.005437284708023071, 0.008328328840434551, -0.0018256899202242494, 0.03602458909153938, -0.02252715639770031, -0.017741167917847633, -0.0027053807862102985, -0.023635242134332657, -0.0059883808717131615, -0.002002512104809284, 0.0027274833992123604, 0.04946308210492134, -0.0009224227978847921, -0.04180078208446503, 0.024707965552806854, -0.010473771952092648, 0.01552499458193779, -0.03076707385480404, 0.03614247217774391, 0.005684835836291313, -0.00651295343413949, -0.0033272055443376303, -0.033313315361738205, -0.014369755983352661, -0.002387100597843528, 0.009070982225239277, -0.013249881565570831, -0.013792136684060097, 0.029470378533005714, -0.022739343345165253, -0.025981085374951363, -0.02720705233514309, 0.03402060270309448, -0.006825339514762163, 0.0162087082862854, -0.005537483841180801, -0.02673552744090557, 0.004818406887352467, 0.0030030314810574055, -0.025509558618068695, 0.03420921415090561, 0.0033743581734597683, 0.009124028496444225, 0.00019855666323564947, 0.011092649772763252, 0.0012436499819159508, 0.007485475856810808, -0.06535351276397705, -0.00938336830586195, 0.027584273368120193, -0.008475680835545063, 0.01688063144683838, 0.010986557230353355, -0.030625617131590843, 0.017623286694288254, -0.04196581616997719, -0.04682253673672676, -0.006253614090383053, -0.0001073826861102134, 0.04104634374380112, 0.0019258891697973013, -0.00806309562176466, -0.016715597361326218, 0.01800050586462021, -0.011210531927645206, 0.0034362459555268288, -0.016279436647892, -0.008027730509638786, 0.040079712867736816, 0.012554381042718887, -0.016939572989940643, 0.01288444921374321, -0.04474782198667526, -0.013355975039303303, -0.023116564378142357, 0.01064470037817955, 0.009636813774704933, -0.02628757618367672, 0.02157231606543064, 0.0003118334279861301, -0.03901877999305725, -0.023316962644457817, -0.011139802634716034, -0.021666621789336205, 0.031356483697891235, -0.06681524217128754, -0.005493278615176678, -0.02489657513797283, -0.031875159591436386, -0.014393332414329052, 0.014805917628109455, 0.01920289732515812, -0.011163379065692425, -0.03630750626325607, 0.015713606029748917, 0.0024872999638319016, 0.020358137786388397, -0.010131916031241417, 0.020982908084988594, 0.07478403300046921, 0.024260014295578003, -0.01400432363152504, -0.009259592741727829, 0.01764686219394207, -0.018707795068621635, -0.01584327593445778, 0.0314507856965065, 0.030177665874361992, 0.04644531384110451, 0.029706140980124474, -0.05318813771009445, -0.027584273368120193, 0.0072143482975661755, -0.0035600215196609497, -0.0005886707804165781, -0.0024931938387453556, 0.012259677052497864, 0.025038033723831177, -0.0154660539701581, 0.037674929946660995, -0.03956103324890137, -0.00753262871876359, 0.030059784650802612, -0.016196919605135918, -0.023081200197339058, 0.03196946531534195, 0.033195432275533676, 0.011758680455386639, 0.015666453167796135, -0.01749361678957939, 0.005964804440736771, -0.01973336562514305, -0.0009098979062400758, -0.04425271973013878, -0.014794129878282547, 0.04246091842651367, -0.010656488128006458, -0.03510511294007301, -0.001066827680915594, -0.0065247416496276855, 0.008805749006569386, 0.025792473927140236, 0.0006302976980805397, -0.02361166663467884, -0.01386286597698927, -0.004995229188352823, 0.006318449042737484, -0.014110417105257511, 0.010868675075471401, 0.010974768549203873, -0.008357798680663109, 0.0021203935611993074, -0.005667153745889664, -0.022975105792284012, -0.01813017576932907, -0.014299027621746063, 0.010680064558982849, -0.004352774936705828, 0.010102445259690285, -0.007850908674299717, -0.0035865448880940676, 0.008516939356923103, -0.02256252057850361, -0.006931432988494635, -0.016574140638113022, 0.019238263368606567, -0.0009504196932539344, 0.019226474687457085, -0.004370457027107477, -0.0026641220320016146, -0.015159562230110168, -0.009990458376705647, -0.008935418911278248, 0.011953185312449932, 0.024472201243042946, -0.012495440430939198, -0.0003355939406901598, 0.0557815320789814, 0.002930829068645835, -0.010137810371816158, -0.013379551470279694, -0.04048050940036774, 0.015666453167796135, 0.030460583046078682, -0.002846838440746069, -0.008287070319056511, 0.004971652757376432, 0.014016111381351948, 0.01274299155920744, -0.002846838440746069, -0.012200736440718174, 0.0069609032943844795, -0.0034126697573810816, -0.0008089618640951812, -0.0436868891119957, -0.03854725509881973, 0.006607258692383766, -0.028362290933728218, -0.0026051814202219248, 0.02600466087460518, -0.0017225436167791486, -0.018743161112070084, 0.01532459631562233, 0.013709619641304016, -0.0058145057410001755, -0.01973336562514305, -0.006235931999981403, -0.00023207922640722245, -0.01992197521030903, 0.0455494150519371, -0.0023222658783197403, 0.018519185483455658, 0.022998683154582977, -0.021796291694045067, 0.012990542687475681, 0.05314098671078682, -0.0065188477747142315, 0.005024699494242668, 0.026782678440213203, 0.026876984164118767, 0.008039519190788269, -0.004588537849485874, 0.018024083226919174, -0.03229953348636627, -0.031710125505924225, -0.034232791513204575, 0.03798142448067665, 0.004346880596131086, 0.02272755466401577, -0.009713436476886272, 0.007473687641322613, 0.010314632207155228, 0.01306127104908228, 0.02144264616072178, -0.026876984164118767, -0.00257571111433208, -0.012082855217158794, 0.006713352166116238, -0.06110977381467819, 0.0021115525159984827, -0.010497348383069038, -0.00029580891714431345, 0.062288589775562286, 0.04545510932803154, 0.006347919348627329, -0.005752617958933115, -0.012053384445607662, 0.01054450124502182, 0.000820013287011534, -0.018507396802306175, -0.06771113723516464, 0.018436668440699577, -0.013579949736595154, 0.02060568891465664, -0.007662298157811165, 0.0006483483011834323, 0.02645261026918888, -0.020582111552357674, -0.02956468239426613, 0.0031179659999907017, -0.00777428550645709, 0.014334391802549362, -0.04885009676218033, -0.0005109426565468311, 0.03866513445973396, -0.00818687118589878, 0.0022706924937665462, 0.002521190792322159, 0.016585929319262505, -0.05002891272306442, -0.0034332990180701017, 0.00958376657217741, 0.020747145637869835, -0.016715597361326218, -0.01386286597698927, 0.006843021605163813, 0.012719415128231049, 0.030908532440662384, 9.77127201622352e-05, 0.01647983491420746, 0.02104184962809086, 0.024307167157530785, 0.008534621447324753, 0.0333840437233448, -0.00037095838342793286, 0.04793062061071396, -0.009990458376705647, 0.037109099328517914, 0.023399479687213898, -0.01572539284825325, -0.00661315256729722, 0.04413483664393425, 0.012625109404325485, 0.008864689618349075, 0.029588259756565094, 0.008852901868522167, 0.005398973356932402, -0.016656657680869102, 0.002790844766423106, -0.007514946162700653, -0.01749361678957939, -0.028267987072467804, 0.021230459213256836, 0.006677987519651651, 0.002591919619590044, -0.03696764260530472, -0.029965480789542198, 0.0019848300144076347, 0.03593028336763382, -0.014676247723400593, -0.008210447616875172, 0.02252715639770031, -0.02401246316730976, -0.040079712867736816, 0.018778525292873383, 0.019497601315379143, -0.0004295307444408536, 0.012353982776403427, 0.026381881907582283, -0.006342025473713875, -0.024260014295578003, -0.017823684960603714, 0.023953523486852646, 0.03854725509881973, 0.0011861827224493027, 0.03781639039516449, 0.005074799060821533, 0.016185130923986435, 0.055640071630477905, 0.002484352793544531, 0.007703556679189205, -0.015371749177575111, -0.00802183710038662, 0.005136686842888594, 0.007845014333724976, -0.03029554896056652, -0.026829831302165985, -0.024401472881436348, 0.003492239862680435, -0.009937411174178123, -0.00820455327630043, -0.028267987072467804, 0.028503749519586563, -0.004379298072308302, 0.03425636887550354, -0.007974684238433838, 0.03644896298646927, -0.03925454244017601, 0.05469702184200287, 0.003229953348636627, 0.02364703081548214, 0.007196666207164526, -0.016055461019277573, 0.005885234568268061, -0.025556711480021477, 0.01036178506910801, -0.019438661634922028, -0.02720705233514309, -0.027702154591679573, 0.03284179046750069, -0.03166297450661659, -0.01282550860196352, 0.030837804079055786, 0.008316540159285069, 0.026829831302165985, -0.03168655186891556, 0.023199081420898438, 0.017187124118208885, 0.04642174020409584, -0.00792163796722889, 0.011717421934008598, -0.013851077295839787, 0.013898230157792568, -0.021301189437508583, 0.006949115078896284, -0.028480172157287598, -0.046233128756284714, -0.027796460315585136, -0.01940329745411873, -0.05332959443330765, -0.01744646392762661, 0.01801229454576969, 0.006566000171005726, -0.012236100621521473, -0.0003871670924127102, 0.002522664377465844, 0.013921806588768959, 0.015902215614914894, 0.018460243940353394, -0.004623902030289173, 0.00757388724014163, 0.03036627732217312, -0.028550902381539345, -0.03277105838060379, -0.023104775696992874, -0.011257683858275414, -0.0005275197327136993, 0.0020275618880987167, 0.005307614803314209, 0.04960453882813454, -0.010397149249911308, -0.0042732045985758305, 0.03168655186891556, 0.006748716346919537, 0.003483398584648967, -0.01756434515118599, 0.0033655171282589436, 0.031710125505924225, -0.031309328973293304, -0.010927615687251091, -0.014475849457085133, 0.019426872953772545, -0.008416740223765373, -0.021878808736801147, 0.003919560462236404, -0.023599877953529358, -0.0017579080304130912, -0.008693761192262173, 0.001931783277541399, 0.019320780411362648, 0.001998091582208872, -0.0023532097693532705, 0.017375735566020012, 0.014864858239889145, 0.006359707564115524, 0.0013055377639830112, -0.004075753036886454, -0.039042357355356216, -0.026240425184369087, 0.01649162359535694, -0.004025653470307589, -0.017717590555548668, -0.054555561393499374, -0.0005643577314913273, -0.01402790006250143, 0.009023829363286495, 0.006848915945738554, 0.02060568891465664, -0.0007234977674670517, 0.01432260312139988, 0.0019833564292639494, -0.003845884231850505, 0.0792163759469986, -0.03265317901968956, 0.005077746231108904, 0.03336046636104584, -0.013202729634940624, -0.018094811588525772, 0.01544247753918171, 0.06375031918287277, -0.01154649443924427, 0.018354151397943497, -0.011287154629826546, -0.027749307453632355, 0.030342701822519302, 0.010397149249911308, 0.008564092218875885, 0.014841281808912754, 0.016633080318570137, 0.024118557572364807, 0.013957170769572258, -0.004830195102840662, -0.011375566013157368, 0.017623286694288254, 0.0073027596808969975, -0.04038620740175247, -0.005590530578047037, -0.004016812425106764, -0.004108170513063669, 0.015666453167796135, -0.006318449042737484, 0.003722108667716384, 0.012471863999962807, -0.0072732893750071526, 0.001242913189344108, -0.013497432693839073, -0.0031562773510813713, -0.028385868296027184, -0.05573437735438347, -0.007538522593677044, 0.025957508012652397, 0.023588091135025024, -0.02052317187190056, 0.004812512546777725, -0.045879483222961426, -0.013662466779351234, 0.02612254209816456, 0.039395999163389206, -0.001874316018074751, -0.02112436667084694, -0.013320610858500004, -0.022633250802755356, 0.02157231606543064, 0.014558366499841213, -0.005154368933290243, -0.008776278235018253, -0.009088664315640926, 0.010167280212044716, 0.03029554896056652, -0.009135817177593708, 0.012896236963570118, -0.0065542119555175304, 0.011110332794487476, -0.02105363830924034, -0.02344663254916668, 0.0334547720849514, 0.03081422671675682, -0.016031885519623756, -0.024059616029262543, -0.009984564036130905, -0.011399142444133759, 0.02468438819050789, -0.010332314297556877, 0.004989334847778082, -0.007756603416055441, -0.014605519361793995, 0.02145443484187126, 0.027018442749977112, -0.0212540365755558, -0.004376350902020931, -0.0004081647202838212, 0.03906593099236488, -0.049840301275253296, -0.0162440724670887, 0.03748632222414017, -0.003642538795247674, 0.007373488508164883, 0.008151506073772907, -0.013957170769572258, 0.0003131227567791939, 0.042390190064907074, 0.017222488299012184, 0.025674592703580856, -0.022220665588974953, 0.008169189095497131, -0.022149935364723206, 0.008681973442435265, 0.010839205235242844, -0.04474782198667526, -0.001998091582208872, -0.03637823462486267, -0.0036896911915391684, 0.022503580898046494, -0.014098628424108028, -0.03965533897280693, 0.020947543904185295, -0.02229139395058155, -0.0052840388379991055, 0.015713606029748917, -0.031945887953042984, 0.0007179720560088754, -0.029140310361981392, -0.0036867442540824413, -0.0028718882240355015, 0.00930085126310587, 0.0025108761619776487, -0.006230037659406662, -0.010750793851912022, 0.012212524190545082, 0.02685340866446495, -0.010014034807682037, 0.017222488299012184, 0.03937242552638054, -0.01744646392762661, 0.035670943558216095, -0.015112409368157387, -0.023977098986506462, 0.0208060871809721, -0.008823431096971035, 0.05516854673624039, 0.037392016500234604, -0.013179153203964233, 0.00830475240945816, -0.00013445860531646758, -0.014853070490062237, -0.0032387946266680956, -0.0033625701908022165, 0.04545510932803154, -0.030319124460220337, 0.05365966260433197, 0.021466223523020744, -0.020417077466845512, 0.030177665874361992, -0.037557050585746765, 0.04234303906559944, 0.006748716346919537, -0.02120688371360302, -0.0405748151242733, 0.011428612284362316, -0.0015501418383792043, -0.037274133414030075, 0.020676417276263237, -0.01210643071681261, -0.0011441874084994197, -0.028079375624656677, -0.011699739843606949, 0.03163939714431763, -0.009147604927420616, 0.027961494401097298, -0.062241438776254654, -0.01800050586462021, -0.02668837457895279, -0.05450841039419174, 0.01860170252621174, -0.008964888751506805, 0.00792163796722889, -0.008110247552394867, 0.020817873999476433, -0.004276151768863201, 0.04521934688091278, -0.002961772959679365, -0.0048920828849077225, -0.023269809782505035, 0.02020489051938057, 0.019061440601944923, -0.004564961418509483, -0.0029087262228131294, 0.017151759937405586, 0.0019774623215198517, 0.004526650067418814, -0.04316820949316025, -0.009153499267995358, 0.03854725509881973, 0.008758596144616604, -0.022456428036093712, 0.001992197474464774, 0.008687867783010006, -0.020593900233507156, 0.021902384236454964, -0.0022913217544555664, 0.0006616099853999913, -0.014982740394771099, 0.01701030135154724, 0.004202475771307945, 0.024307167157530785, 0.002958826022222638, -0.004573802463710308, -0.061722759157419205, 0.026829831302165985, 0.010715429671108723, 0.013238093815743923, -0.012577957473695278, 0.0037103204522281885, -0.016703810542821884, -0.008564092218875885, 0.005605265963822603, -0.0157607588917017, -0.010450195521116257, 0.002438673749566078, 0.016633080318570137, -0.007420640904456377, 0.01891998201608658, 0.01649162359535694, -0.02456650696694851, 0.02389458194375038, 0.014923798851668835, -0.011069074273109436, -0.01402790006250143, 0.0038959840312600136, 0.029423225671052933, -0.012955178506672382, -0.04717618227005005, -0.04229588434100151, 0.017092818394303322, 0.043592583388090134, -0.005572848487645388, -0.010014034807682037, 0.010921722277998924, 0.020511383190751076, 0.004022706765681505, 0.021513376384973526, 0.001522145001217723, -0.019839458167552948, -0.0013652152847498655, -0.014723400585353374, -0.02449577860534191, 0.00798057857900858, -0.016220495104789734, -0.0012524910271167755, -0.00808077771216631, 0.02145443484187126, -0.012530804611742496, -0.010008140467107296, 0.011652586981654167, 0.0038488314021378756, -0.025179490447044373, 0.0032682649325579405, 0.002239748602733016, -0.0396081879734993, -0.01044430211186409, -0.019037863239645958, -0.05017036944627762, 0.00950124952942133, 0.006011956837028265, -0.023906370624899864, -0.00826349388808012, 0.004520755726844072, 0.004385192412883043, -0.005734935402870178, 0.0010837730951607227, 0.0017490668687969446, -0.0436161607503891, 0.02697128988802433, -0.01801229454576969, 0.012259677052497864, 0.04092846065759659, 0.0026007608976215124, 0.02237391099333763, -0.023151928558945656, 0.020228467881679535, -0.003742737928405404, 0.020641053095459938, -0.018707795068621635, 0.022114571183919907, 0.027843613177537918, -0.030861379578709602, -0.028998851776123047, -0.006607258692383766, 0.0034215108025819063, -0.005787982139736414, 0.01514777448028326, 0.013733196072280407, -0.0009622078505344689, -0.012719415128231049, -0.020959332585334778, 0.015902215614914894, 0.012660474516451359, 0.0016002415213733912, 0.02244463935494423, 0.01916753314435482, -0.005407814402133226, -0.008334223181009293, 0.006890174467116594, -0.018177328631281853, -0.015477842651307583, 0.005970698315650225, 0.006032586097717285, -0.021819867193698883, -0.017458252608776093, -0.02200847864151001, 0.02252715639770031, -0.05743187293410301, 0.027018442749977112, -0.0031769066117703915, 0.047718435525894165, -0.013756772503256798, 0.00812203623354435, 0.03340762108564377, -0.016385529190301895, 0.024637235328555107, 0.023953523486852646, -0.005033540539443493, -0.027159899473190308, 0.04408768564462662, -0.008175082504749298, -0.0042378404177725315, -0.00023005313414614648, 0.007420640904456377, -0.006884280126541853, -0.012566168792545795, -0.0007316021365113556, 0.02040528878569603, 0.021218672394752502, 0.013544585555791855, 0.004399927332997322, 0.005039434414356947, 0.011463976465165615, -0.00710236094892025, 0.003232900518923998, -0.004305622074753046, -0.04689326509833336, 0.012295041233301163, -0.01652698777616024, -0.021147942170500755, 0.026711950078606606, -0.006483483128249645, 0.06158130243420601, -0.00808077771216631, -0.04319178685545921, -0.010904040187597275, 0.0038046257104724646, -0.010538606904447079, -0.0017932724440470338, 0.019662635400891304, -0.005446125753223896, -0.008634820580482483, -0.0003523552149999887, 0.01520671509206295, -0.0006034059915691614, 0.002569817006587982, -0.0011441874084994197, 0.0029897699132561684, 0.007827332243323326, 0.023434843868017197, 0.008982570841908455, -0.04130567982792854, -0.015371749177575111, -0.010768475942313671, 0.019910186529159546, 0.019863033667206764, 0.0258867796510458, 0.01072721742093563, 0.01072132308036089, 0.006760504562407732, -0.001385107752867043, -0.0030973367393016815, 0.0034892926923930645, -0.029305344447493553, -0.009094558656215668, 0.0003335678484290838, 0.022857224568724632, 0.049840301275253296, 0.014947375282645226, -0.04826068878173828, -0.01184709183871746, -0.02189059741795063, 0.02737208642065525, 0.006324342917650938, -0.020794298499822617, -0.0008141191792674363, -0.038830168545246124, 0.004912712145596743, 0.01580790989100933, 0.006666199304163456, 0.0012657527113333344, -0.059082213789224625, 0.02312835305929184, -0.02444862574338913, 0.022456428036093712, 0.014699824154376984, 0.014982740394771099]], "input": ["HIGH-RISK COUNTRY:A \"HIGH-RISK COUNTRY\" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.", "AIRPORT FACILITIES:Airport facilities in the United States may incur additional charges for inspecting and releasing pets.", "DOCUMENTS AND AUTHORIZATIONS:Documents and authorizations are necessary for transporting pets and must be presented at check-in.", "TRANSPORTING ANIMALS:The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.", "US:The United States has specific regulations regarding the transportation of pets, particularly dogs.", "MINISTRY OF HEALTH:The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.", "BEN GURION AIRPORT:Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.", "RABIES ANTIBODY TEST:A test required to confirm that the animal has been vaccinated against rabies.", "BAGGAGE:Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.", "ANIMAL WEIGHT:The weight of the animal is a critical factor in determining the mode of transport.", "9 KG:The entity \"9 KG\" refers to the weight limit for pets that can be transported as baggage on an aircraft. Specifically, animals weighing up to 9 kg can typically be transported in the aircraft cabin without any additional requirements.", "100 KG:The entity \"100 KG\" refers to the maximum weight limit for transporting pets as baggage. According to the provided descriptions, pets that weigh 100 kg or less can be transported in the cabin as baggage, while those exceeding this weight must be transported as registered cargo. Therefore, any animal weighing more than 100 kg is required to be transported as cargo rather than as baggage.", "DOCUMENTS:The entity \"DOCUMENTS\" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.", "FLIGHT PERMIT:A permit issued by Veterinary Services allowing the transport of an animal.", "AMSTERDAM:Amsterdam is an airport from which animals cannot be transported as registered cargo.", "BOSTON:Boston is an airport from which animals cannot be transported as registered cargo."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-e0c172c01e9a357dc6f313d0a9a637e0 b/cache/text_embedding/embedding-e0c172c01e9a357dc6f313d0a9a637e0 deleted file mode 100644 index 9207c83d803783c2aa4d9630d171f127be276ed7..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-e0c172c01e9a357dc6f313d0a9a637e0 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.03975537046790123, -0.006994214374572039, 0.006421487312763929, 0.04459173232316971, 1.907282967295032e-05, 0.009244627319276333, 0.01933388225734234, 0.04331900551915169, 0.008052892051637173, -0.030036361888051033, -0.01791074313223362, -0.04662809520959854, 0.0025208676233887672, -0.038505781441926956, -0.0194148737937212, 0.020224791020154953, 0.04063470661640167, -0.0181537177413702, -0.03926941752433777, 0.010071899741888046, 0.03987107053399086, 0.03781156614422798, -0.03359999880194664, 0.038343798369169235, 0.0007039772463031113, 0.023765288293361664, 0.02406611293554306, 0.00212024780921638, 0.04864132031798363, 0.0018989668460562825, 0.04403635859489441, -0.03642313927412033, 0.047761980444192886, -0.03515040874481201, 0.03378511965274811, 0.00534256175160408, -0.02739834412932396, -0.040125615894794464, 0.05424131825566292, 0.0005506714223884046, 0.018246280029416084, 0.031077682971954346, 0.010366941802203655, -0.021856196224689484, 0.05840660631656647, 0.04785454273223877, 0.024528924375772476, 0.040287598967552185, 0.043110739439725876, -0.02243470959365368, 0.04669751599431038, 0.016036363318562508, -0.008006610907614231, -0.022295866161584854, 0.00029431816074065864, -0.04979834333062172, -0.005576859228312969, 0.026033055037260056, 0.028740493580698967, 0.013676032423973083, -0.026935534551739693, 0.017644627019762993, -0.0493355318903923, 0.031748756766319275, 0.026704130694270134, 0.008833883330225945, 0.007185123395174742, 0.027097519487142563, -0.039847929030656815, 0.03658512234687805, -0.005672313738614321, 0.035728923976421356, 0.07423470169305801, -0.007069421000778675, -0.04197685793042183, -0.01671900786459446, -0.02672727033495903, -0.022411568090319633, 0.04709090664982796, 0.014914048835635185, -0.036191731691360474, 0.045494209975004196, -0.060905780643224716, 0.040009915828704834, 0.02533884160220623, -0.008469420485198498, -0.053315699100494385, -0.007699999492615461, -0.011928924359381199, -0.014046279713511467, -0.006421487312763929, -0.014879337511956692, 0.06243305280804634, 0.004518181551247835, -0.007682643830776215, -0.030452890321612358, -0.024297518655657768, -0.03665454313158989, -0.05294544994831085, 0.014266114681959152, -0.01084132120013237, -0.021300824359059334, 0.01988925412297249, 0.023464461788535118, 0.021659502759575844, 0.011223139241337776, -0.006780164781957865, -0.010424792766571045, -0.007966115139424801, -0.04151404649019241, -0.0759933814406395, -0.031123964115977287, 0.009869420900940895, 0.039847929030656815, 0.02418181672692299, 0.05799007788300514, 0.07479007542133331, -0.02816198207437992, 0.01072561927139759, -0.03931570053100586, -0.021948758512735367, -0.020780162885785103, 0.0368628054857254, -0.03533553332090378, -0.038066111505031586, 0.008006610907614231, -0.026819832623004913, 0.015041321516036987, -0.0676628053188324, -0.01696198247373104, 0.008700826205313206, -0.036238014698028564, -0.02728264220058918, -0.002042148495092988, 0.029966939240694046, -0.0263338815420866, -0.029295865446329117, -0.047391731292009354, -0.002126032952219248, -0.010951238684356213, 0.014509090222418308, -0.014034709893167019, 0.03378511965274811, -0.025408262386918068, -0.025385122746229172, 0.01533057726919651, -0.01918346993625164, 0.011743800714612007, 0.042555369436740875, 0.002481817966327071, -0.024922311305999756, -0.06386776268482208, 0.02137024700641632, -0.022423138841986656, -0.026310741901397705, 0.053038012236356735, 0.0040033054538071156, -0.04280991479754448, -0.004385123495012522, -0.0057938010431826115, -0.04753057658672333, -0.033900823444128036, 0.03253553435206413, 0.0349421463906765, 0.027583468705415726, -0.0020508263260126114, -0.024806609377264977, -0.016985122114419937, -0.0604429692029953, -0.00915206503123045, 0.007028925232589245, 0.003699586493894458, -0.028023138642311096, -0.021555369719862938, -0.031309086829423904, 0.018454544246196747, 0.0457487553358078, 0.0010102272499352694, -0.09223800897598267, -0.016209915280342102, 0.001423140405677259, 0.010222312994301319, 0.009938842616975307, -0.020722312852740288, -0.028624791651964188, -0.01906776800751686, -0.01026859413832426, 0.0037314046639949083, -0.007931404747068882, 0.0377190038561821, -0.04093553498387337, -0.004226032644510269, -0.0498909056186676, -0.004075619392096996, -0.03394710645079613, 0.03626115247607231, -0.03376198187470436, 0.005354132037609816, -0.0142776845023036, 0.004440082237124443, -0.010112395510077477, -0.05035371333360672, 0.054148755967617035, 0.047276031225919724, -0.05461156740784645, 0.004315702244639397, -0.001079648733139038, -0.008625619113445282, 0.06405288726091385, -0.008677685633301735, 0.02204132080078125, -0.012484296225011349, -0.0010478304466232657, 0.021752065047621727, 0.025084296241402626, 0.03054545260965824, -0.024690907448530197, -0.0010066115064546466, -0.028254542499780655, 0.03609916940331459, -0.016545454040169716, 0.004905784968286753, -0.02922644466161728, 0.023568592965602875, -0.02823140285909176, 0.026310741901397705, 0.01771404780447483, -0.013201652094721794, 0.03167933598160744, -0.0074859499000012875, 0.0010709710186347365, -0.02338346838951111, -0.017424792051315308, 0.0007520660292357206, 0.04054214432835579, -0.025315700098872185, -0.0015041320584714413, -0.023996692150831223, 0.004142148420214653, -0.01795702427625656, 0.0025541321374475956, 0.010528924874961376, 0.0006576962186954916, 0.021752065047621727, 0.008735536597669125, -0.03792726993560791, -0.010152892209589481, -0.009273553267121315, -0.011518181301653385, -0.005128512158989906, -0.0024774791672825813, -0.01993553526699543, 0.03309090808033943, -0.07923305034637451, -0.020838014781475067, -0.015399998985230923, -0.051649581640958786, 0.0005976755637675524, -0.005614462308585644, -0.05178842693567276, 0.02204132080078125, -0.024413220584392548, 0.006531404331326485, 0.03265123814344406, -0.006479338277131319, -0.015515700913965702, -0.0006779441609978676, 0.004064049106091261, -0.0743272677063942, -0.02184462733566761, -0.03947768360376358, -0.012206610292196274, 0.008052892051637173, 0.017575204372406006, 0.007584297098219395, -0.013074379414319992, 0.01527272630482912, -0.030684296041727066, 0.026310741901397705, 0.08353718370199203, -0.030753716826438904, -0.0014759296318516135, -0.006398346740752459, -0.02017851173877716, 0.007075205910950899, 0.020791733637452126, 0.021613221615552902, 0.0063347104005515575, -0.037672724574804306, 0.04919669032096863, 0.09020164608955383, -0.052204955369234085, -0.04098181426525116, 0.0006486569764092565, 0.03653883934020996, -0.032072726637125015, 0.009331404231488705, -0.003184710396453738, 0.02517685666680336, 0.006120660807937384, 0.007937189191579819, 0.004072727169841528, 0.03436363488435745, -0.06979172676801682, -0.02208760194480419, 0.0249454528093338, -0.004260743502527475, 0.024482643231749535, 0.010870247147977352, -0.009360330179333687, 0.017054544761776924, 0.01675371825695038, -0.02374214679002762, -0.014937188476324081, -0.0327206589281559, -0.012958676554262638, -0.0059644621796905994, -0.027352064847946167, 0.028416527435183525, -0.024297518655657768, 0.03725619614124298, 0.05188098922371864, 0.04399007931351662, -0.05794379860162735, -0.01619834639132023, -0.023221485316753387, 0.058082640171051025, 0.03829751908779144, -0.09473717957735062, -0.0008655990823172033, -0.04197685793042183, 0.009366114623844624, -0.006814875639975071, 0.009880990721285343, 0.0005481404368765652, -0.01519173476845026, 0.00020157539984211326, 0.006479338277131319, -0.018477683886885643, -0.02196032926440239, -0.006392561364918947, -0.05660164728760719, 0.023811567574739456, -0.015064462088048458, -0.011194214224815369, 0.009794213809072971, 0.06039668992161751, -0.0013493800070136786, -0.02187933772802353, -0.04734545201063156, -0.04734545201063156, -0.027791732922196388, 0.03808925300836563, -0.0058082640171051025, -0.057527266442775726, -0.028092559427022934, 0.013190081343054771, 0.012889254838228226, -0.022180164232850075, 0.031748756766319275, 0.008203305304050446, 0.011454544961452484, 0.01866280846297741, 0.037904128432273865, 0.011032230220735073, 0.021115701645612717, -0.01572396606206894, -0.013768593780696392, 0.040056195110082626, 0.03406280651688576, 0.024158675223588943, -0.025408262386918068, 0.005197933409363031, -0.0158049575984478, 0.021867766976356506, 0.0034363633021712303, 0.05368594452738762, -0.013051238842308521, 0.003204958513379097, -0.02517685666680336, 0.02362644486129284, -0.0070809912867844105, -0.03924627974629402, 0.04051900655031204, 0.08228759467601776, 0.02089586667716503, -0.05063140019774437, 0.00314710708335042, -0.01962313987314701, -0.054380159825086594, 0.044776856899261475, -0.036561980843544006, -0.03200330212712288, 0.01990082487463951, 0.0035549583844840527, -0.07192065566778183, 0.060535531491041183, -0.018257848918437958, -0.02422809787094593, -0.0037227270659059286, -0.011095866560935974, -0.02843966707587242, 0.004697520285844803, 0.007995041087269783, -0.0171933863312006, 0.04639669135212898, -0.013803305104374886, -0.043828096240758896, -0.011327272281050682, 0.013236362487077713, 0.00802396610379219, -0.023452891036868095, 0.039616525173187256, 0.012623139657080173, 0.03621487319469452, -0.02517685666680336, -0.06150743365287781, 0.011576032266020775, 0.009742148220539093, -0.03350743651390076, 0.05910082161426544, 0.005464049056172371, -0.04535536840558052, 0.0028650823514908552, -0.025084296241402626, 0.004842148162424564, -0.009493387304246426, -0.046998344361782074, -0.0071388422511518, -0.023580163717269897, -0.006647106725722551, -0.019125618040561676, -0.0032743799965828657, -0.009898345917463303, -0.06696859002113342, -0.0249454528093338, -0.033345453441143036, -0.005423553287982941, -0.03709421306848526, -0.04470743611454964, 0.004442974925041199, 0.0054033054038882256, -0.012715701945126057, -0.0010123966494575143, 0.01306280866265297, -0.00284483446739614, 0.03561322018504143, 0.02843966707587242, -0.023279337212443352, 0.023244626820087433, -0.05701817572116852, 0.0014643593458458781, -0.025361981242895126, 0.021914048120379448, 0.004150826018303633, 0.05905454233288765, -0.023996692150831223, -0.017181817442178726, 0.006352065596729517, -0.024876032024621964, 0.01973884180188179, 0.017343800514936447, 0.055814873427152634, 0.0446380116045475, -0.0056867762468755245, 0.027930576354265213, 0.022654544562101364, -0.037672724574804306, 0.021347105503082275, -0.00913470983505249, 0.007352891843765974, -0.047993384301662445, 0.029689254239201546, 0.01413884200155735, 0.023557022213935852, -0.023811567574739456, -0.03644627705216408, -0.015538841485977173, -0.033854544162750244, -0.00851570162922144, -0.028208261355757713, 0.0025136361364275217, -0.05826776474714279, -0.009105784818530083, -0.006161156576126814, -0.06516363471746445, -0.014925618655979633, 0.0012654957827180624, -0.02013223059475422, -0.046280987560749054, -0.05461156740784645, 0.02143966779112816, 0.023719007149338722, -0.009626445360481739, -0.03966280817985535, 0.004185536876320839, 0.003647520439699292, 0.005952891893684864, 0.0009972106199711561, 0.00570702413097024, 0.027421485632658005, -0.04151404649019241, 0.03503470867872238, 0.02823140285909176, 0.03653883934020996, 0.0097074368968606, 0.0034971071872860193, -0.04431404545903206, 0.023059502243995667, 0.02239999733865261, -0.02267768420279026, -0.005811156705021858, -0.01639503985643387, -0.017447931692004204, 0.01070247869938612, -0.05928594619035721, -0.006652892101556063, 0.009348759427666664, -0.017332229763269424, 0.019160328432917595, -0.02001652680337429, 0.01147768460214138, -0.028578510507941246, -0.018361981958150864, -0.004622313659638166, 0.017852891236543655, -0.03711735084652901, -0.008307437412440777, 0.0042173550464212894, -0.003638842608779669, 0.002950412919744849, -0.00448925606906414, -0.016209915280342102, 0.033576857298612595, 0.003757437691092491, -0.0051111564971506596, -0.0056231399066746235, -0.02120826207101345, 0.004769834224134684, -0.012900825589895248, 0.02732892334461212, 0.027074377983808517, -0.008336363360285759, -0.022411568090319633, -0.00010169162123929709, -0.021694213151931763, -0.010957024060189724, 0.022469419986009598, 0.025246279314160347, 0.016904130578041077, 0.024482643231749535, 0.04038016125559807, 0.019993387162685394, -0.004084296990185976, 0.026704130694270134, -0.006508263759315014, 0.01530743669718504, -0.016927272081375122, 0.025824790820479393, 0.031031401827931404, -0.00046136361197568476, 0.020433057099580765, 0.03880660980939865, 0.050816524773836136, 0.04176859185099602, 0.03748759999871254, 0.003971487283706665, 0.030244626104831696, -0.031239667907357216, -0.04607272520661354, 0.014428097754716873, -0.00399173516780138, -0.026218179613351822, 0.003821074031293392, 0.018361981958150864, 0.029203303158283234, -0.017366940155625343, -0.029527271166443825, 0.025963634252548218, 0.004318594932556152, -0.004980991128832102, -0.0225966926664114, -0.0015330577734857798, -0.01530743669718504, 0.014312395825982094, 0.011657023802399635, 0.022168593481183052, 0.01020495779812336, -0.023522311821579933, -0.006693387869745493, -0.01132148690521717, -0.044337186962366104, -0.008238015696406364, 0.012599999085068703, -0.02187933772802353, -0.014266114681959152, 0.011038015596568584, -0.029180163517594337, 3.843943341053091e-05, -0.032905783504247665, 0.004145041108131409, 0.005414875689893961, 0.030753716826438904, -0.025523964315652847, -0.016626445576548576, -0.05479668825864792, -0.028601650148630142, 0.043064460158348083, 0.027629749849438667, 0.007121487054973841, -0.001190289156511426, 0.012831403873860836, 0.045771896839141846, -0.021890906617045403, -0.03991735354065895, 0.03376198187470436, -0.01782975159585476, -0.008128098212182522, 0.010274379514157772, 0.022700823843479156, -0.011471900157630444, 0.02395041100680828, 0.027143798768520355, 0.0184314027428627, -0.025801651179790497, 0.01302809827029705, 0.003994627855718136, -0.03732561692595482, -0.03755702078342438, -0.023765288293361664, 0.029804956167936325, -0.0030719006899744272, 0.0108181806281209, -0.026958676055073738, 0.003251239424571395, 0.03348429501056671, -0.01902148686349392, 0.019114047288894653, 0.007995041087269783, 0.0021115699782967567, 0.03843636065721512, -0.02013223059475422, -0.0074280984699726105, -0.013016527518630028, 0.023973552510142326, 0.03279007971286774, 0.01137933786958456, -0.0124727264046669, -0.008747106418013573, -0.013109089806675911, 0.038112394511699677, 0.021023139357566833, -0.002121694153174758, -0.007190908305346966, -0.0037776855751872063, -0.009638016112148762, 0.004957851022481918, 0.06604296714067459, 0.0396396666765213, 0.009950412437319756, 0.006901652552187443, 0.010789255611598492, -0.03621487319469452, -0.001890289131551981, -0.010118180885910988, 0.0009914255933836102, 0.03167933598160744, -0.003922313917428255, 0.004411156754940748, -0.009817354381084442, 0.03022148460149765, -0.008133883588016033, 0.020641321316361427, -0.019646279513835907, -0.020560329779982567, -0.011020660400390625, -0.02732892334461212, 0.008625619113445282, -0.08395371586084366, -0.025385122746229172, 0.013190081343054771, -0.012403304688632488, -0.007630577776581049, -0.020444625988602638, -0.016568593680858612, 0.0003415030660107732, 0.045447930693626404, 0.0031991733703762293, -0.0014325411757454276, -0.0006978305173106492, 0.004347520414739847, 0.010876032523810863, 0.007237189449369907, 0.0007874999428167939, 0.00964958593249321, 0.020352063700556755, 0.037348758429288864, -0.009481817483901978, 0.021266113966703415, -0.043226443231105804, -0.020190080627799034, -0.009759503416717052, 0.027352064847946167, -0.046211566776037216, -0.0033698345068842173, 0.02081487514078617, -3.0874707590555772e-06, 0.010777684859931469, 0.05951735004782677, 0.015585122630000114, -0.03380826115608215, -0.01711239479482174, -0.01519173476845026, -0.018442973494529724, -0.016290908679366112, 0.01604793220758438, 0.00959173496812582, -0.043781813234090805, -0.0009154957951977849, 0.01898677460849285, -0.010517354123294353, -0.018003303557634354, -0.017922312021255493, -0.02584793232381344, 0.011402478441596031, 0.002402272541075945, 0.0071446276269853115, -0.014844627119600773, 0.021775204688310623, 0.00023212807718664408, 0.06863470375537872, 0.020502477884292603, 0.0006566115189343691, -0.008076032623648643, 0.008307437412440777, -0.027861155569553375, -0.04359669238328934, -0.04385123774409294, -0.026866113767027855, -0.015608263202011585, 0.022851238027215004, -0.009799999184906483, -0.004567354917526245, -0.006496693938970566, -0.03454875946044922, -0.0532231368124485, -0.024135535582900047, -0.02811570093035698, -0.003696694038808346, -0.002104338724166155, -0.002823140239343047, 0.007312396075576544, 0.020467767491936684, -0.005035949870944023, 0.012252891436219215, -0.02445950172841549, 0.017378510907292366, -0.008301652036607265, 0.025361981242895126, 0.0086603295058012, 0.006219008006155491, 0.018882643431425095, 0.022018179297447205, 0.010615701787173748, 0.015608263202011585, -0.01957685872912407, 0.0009907024214044213, -0.004440082237124443, 0.005264462437480688, 0.023013221099972725, 0.020907435566186905, -0.0014983470318838954, 0.0565553680062294, -0.007804131601005793, -0.008284296840429306, -0.0015692147426307201, 0.022550411522388458, 0.003864462487399578, -0.014682643115520477, -0.033299170434474945, 0.022700823843479156, -0.017181817442178726, 0.020942147821187973, 0.026750411838293076, 0.020143799483776093, -0.026634708046913147, 0.029249584302306175, -0.006826445925980806, 0.04174545034766197, 0.0075495862402021885, -0.02049090713262558, -0.03380826115608215, 0.010222312994301319, -0.011576032266020775, 0.023221485316753387, 0.018211569637060165, -0.0020869832951575518, -0.029735535383224487, 0.013965288177132607, 0.015561982057988644, -0.008683470077812672, 0.03232727199792862, 0.003291735192760825, 0.0085966931656003, 0.028902476653456688, -0.018836362287402153, -0.06215536594390869, 0.05035371333360672, 0.01652231253683567, -0.00047474171151407063, 0.01929917186498642, 0.03156363219022751, 0.002846280811354518, 0.0432727225124836, 0.030152063816785812, -0.005811156705021858, -0.004113222938030958, -0.0017789255362004042, -0.024644626304507256, 0.02215702272951603, 0.007266114931553602, -0.0027305784169584513, -0.021254543215036392, -0.027421485632658005, 0.011205784045159817, 0.002619214588776231, 0.0025194212794303894, -0.03730247542262077, 0.0011273759882897139, -0.008828098885715008, -0.013733883388340473, -0.05289917066693306, -0.025408262386918068, -0.013271073810756207, 0.04507768154144287, -0.06456197798252106, 0.0014795453753322363, -0.005605784710496664, -0.004576032515615225, -0.00484504085034132, 0.044938839972019196, 0.012854544445872307, 0.01998181641101837, -0.008313222788274288, -0.00034367249463684857, -0.010453717783093452, -0.013097519986331463, -0.04817850887775421, -0.04625784605741501, 0.060581814497709274, 0.0035404956433922052, 0.0007961775991134346, -0.0044082640670239925, 0.03915371745824814, -0.010320660658180714, -0.0012647726107388735, -0.0032223137095570564, -0.0307768564671278, -0.013814874924719334, -0.03200330212712288, -0.033021483570337296, -0.00964958593249321, -0.016233056783676147, -0.045609913766384125, 0.01577024720609188, 0.0013790287775918841, 0.061692558228969574, -0.013976857997477055, 0.041560325771570206, 0.039570245891809464, 0.009933057241141796, 0.012229750864207745, 0.004145041108131409, -0.025963634252548218, -0.026773551478981972, -0.017343800514936447, 0.0027088841889053583, 0.020224791020154953, 0.03017520345747471, -0.021578511223196983, 0.025246279314160347, -0.005114049185067415, 0.018975205719470978, 0.008475205861032009, -0.01914875954389572, 0.00590661121532321, -0.025963634252548218, 0.02839338593184948, 0.05095536634325981, 0.016186775639653206, 0.015284296125173569, -0.0035404956433922052, 0.013803305104374886, -0.001251756097190082, -0.0316099151968956, 0.02462148480117321, 0.00675123929977417, -0.03089256025850773, 0.02196032926440239, 0.005420660600066185, 0.04790082201361656, 0.012704131193459034, -0.01062148716300726, -0.019252890720963478, -0.018732229247689247, 0.016545454040169716, 0.022909089922904968, -0.03709421306848526, 0.05067768320441246, -0.02434379979968071, 0.03239669278264046, 0.011471900157630444, -0.007775206118822098, -0.07011570036411285, 0.01707768440246582, 0.006901652552187443, -0.028254542499780655, -0.006861156318336725, 0.018176857382059097, -0.006606610957533121, -0.014404957182705402, 0.007931404747068882, 0.05424131825566292, 0.013999998569488525, -0.017309090122580528, -0.020699171349406242, 0.014034709893167019, 0.025755370035767555, 0.04491569846868515, 0.0060859499499201775, -0.003676445921882987, 0.021867766976356506, 0.032026443630456924, 0.029758675023913383, 0.00957437977194786, -0.01711239479482174, 0.0194148737937212, -0.016117354854941368, 0.007167768198996782, 0.029897518455982208, -0.008255370892584324, 0.00212024780921638, 0.041884295642375946, -0.014370246790349483, 0.000404235499445349, -0.0282776840031147, -0.022608263418078423, -0.02878677472472191, -0.008862809278070927, -0.00018186982197221369, -0.004460330121219158, 0.010488429106771946, 0.013363635167479515, -0.008793387562036514, -0.01985454373061657, 0.017285948619246483, 0.0017543387366458774, -0.016938840970396996, 0.005264462437480688, 0.005678098648786545, 0.012727271765470505, -0.01771404780447483, -0.024575205519795418, -0.007289255503565073, 0.06520991027355194, 0.033299170434474945, 0.010384296998381615, 0.006722313351929188, 0.04176859185099602, 0.012715701945126057, -0.005756197962909937, -0.008174379356205463, 0.00759586738422513, 0.012310742400586605, 0.0021144626662135124, -0.019241319969296455, 0.014069420285522938, 0.014971899800002575, 0.00118884292896837, 0.018014874309301376, -0.011066941544413567, 0.031910739839076996, 0.06289586424827576, 0.034965287894010544, -0.041606608778238297, 0.04551735147833824, -0.0010362602770328522, 0.010980164632201195, -0.028092559427022934, -0.05789751559495926, -0.0012380164116621017, 0.022110741585493088, 0.02772231213748455, 0.008272727020084858, -0.018882643431425095, -0.000786053657066077, 0.028185121715068817, 0.0346413180232048, 0.009504958055913448, 0.02017851173877716, -0.028879337012767792, -0.013490907847881317, 0.025801651179790497, 0.016290908679366112, -0.022064460441470146, 0.004558677319437265, 0.058314044028520584, -0.0009617767645977437, -0.009886776097118855, -0.022851238027215004, 0.041838012635707855, -0.028902476653456688, 0.023765288293361664, -0.00047871898277662694, 0.020224791020154953, -0.02140495739877224, -0.04262479022145271, -0.007584297098219395, 0.0015764461131766438, 0.03478016331791878, -0.023719007149338722, -0.009799999184906483, -0.009765288792550564, -0.0041739665903151035, -0.040171898901462555, -0.025361981242895126, 0.006057024467736483, -0.004576032515615225, 0.017332229763269424, 0.017285948619246483, -0.0021115699782967567, -0.011350411921739578, -0.009047932922840118, 0.009638016112148762, -0.014393387362360954, 0.020201651379466057, -0.0033958675339818, -0.01794545352458954, 0.0013754131505265832, -0.0018411155324429274, -0.0026061981916427612, -0.00646198308095336, 0.02955041080713272, 0.011847932823002338, -0.011518181301653385, -0.006907437462359667, 0.03422478958964348, 0.0062768589705228806, -0.007948759943246841, 0.01763305626809597, 0.005322313867509365, -0.02057189866900444, -0.03644627705216408, 0.003349586622789502, -0.004211570136249065, -0.025130577385425568, -0.03054545260965824, 0.0321652851998806, -0.012322313152253628, 0.004923140164464712, 0.02943470887839794, 0.018408263102173805, 0.01771404780447483, 0.0033235533628612757, 0.02732892334461212, -0.028347104787826538, 0.01810743659734726, 0.004098759964108467, 2.1536026906687766e-05, -0.023661155253648758, -0.013074379414319992, -0.004821900278329849, -0.0004374999552965164, 0.02323305606842041, 0.009799999184906483, -0.019750412553548813, 0.012981817126274109, -0.01519173476845026, 0.011755370534956455, 0.0009690081933513284, -0.013629751279950142, 0.001974173355847597, 0.02223801426589489, -0.03924627974629402, -0.011610742658376694, -0.039014872163534164, 0.00035108468728139997, 0.02478346973657608, 0.021185122430324554, 0.04324958473443985, -0.014312395825982094, -0.007248759735375643, 0.009383470751345158, 0.0424165241420269, -0.010233883745968342, -0.00254690065048635, 0.043180160224437714, -0.005993388127535582, 0.009695867076516151, 0.00650247884914279, -0.024991733953356743, 0.046211566776037216, 0.01585123874247074, 0.009204131551086903, 0.017297519370913506, -0.014960329048335552, 0.0027059915009886026, -0.0368628054857254, 0.0030776856001466513, 0.031031401827931404, -0.008128098212182522, 0.034247931092977524, -0.013352065347135067, 0.02156694047152996, 0.024158675223588943, 0.018917353823781013, -0.009857850149273872, 0.03471074253320694, -0.025824790820479393, 0.015099172480404377, -0.0382743775844574, 0.011680164374411106, -0.017181817442178726, -0.033183466643095016, 0.01988925412297249, 0.03653883934020996, -0.02248099073767662, 0.027768593281507492, 0.020421486347913742, 0.02168264240026474, 0.009799999184906483, 0.0001179622850031592, -0.06275702267885208, -0.01851239614188671, 0.009834709577262402, -0.01898677460849285, 0.018685948103666306, -0.005756197962909937, 0.010442147962749004, 0.002956198062747717, 0.02164793200790882, 0.00560867739841342, -3.8371639675460756e-05, -0.025986775755882263, -0.0016979337669909, 0.030591733753681183, -0.02982809767127037, 0.05937850847840309, 0.008197519928216934, 0.011026445776224136, -0.009030577726662159, 0.007028925232589245, -0.025963634252548218, 0.013942147605121136, 0.03105454333126545, -0.029319005087018013, 0.023695865646004677, 0.022723965346813202, -0.007786776404827833, 0.013849585317075253, 0.038343798369169235, 0.0002069989568553865, -0.02251570113003254, 0.03154049441218376, 0.026819832623004913, -0.005860330071300268, 0.01938016340136528, -0.0002870867610909045, -0.031586773693561554, 0.012623139657080173, -0.032026443630456924, -0.01696198247373104, -0.0027363633271306753, -0.015747105702757835, -0.005556611344218254, -0.03700165078043938, 0.05650908499956131, 0.014995040372014046, 0.018639668822288513, 0.018119007349014282, -0.0033727269619703293, -0.003913635853677988, 0.019426444545388222, -0.00041725204209797084, -0.023765288293361664, 0.05785123631358147, 0.005816941615194082, 0.007740495260804892, 0.03785784915089607, 0.01957685872912407, 0.016811568289995193, 0.020548759028315544, 0.00483636325225234, -0.0042954543605446815, -0.0036706607788801193, 0.0332760289311409, 0.006340495310723782, 0.032188426703214645, 0.00453842943534255, 0.012842974625527859, -0.019808262586593628, 0.03133222833275795, 0.005764875560998917, 0.0038413219153881073, 0.036076031625270844, -0.03142479062080383, 0.012750412337481976, 0.01577024720609188, -0.021428097039461136, -0.023013221099972725, -0.01314380019903183, 0.02450578287243843, -0.009146280586719513, -0.015076031908392906, 0.004894214682281017, 0.004150826018303633, -0.035960327833890915, -0.028092559427022934, -0.0026018593925982714, -0.010309089906513691, 0.007052065338939428, -0.01933388225734234, 0.02318677492439747, 0.004659917205572128, 0.03105454333126545, -0.0304991714656353, -0.01946115493774414, -0.002056611469015479, -0.002162189921364188, 0.0101239662617445, 0.0171933863312006, -0.011506610549986362, 0.013363635167479515, -0.0029880162328481674, 0.021890906617045403, -0.007931404747068882, -0.0038066112902015448, -0.005628925282508135, -0.01191735453903675, -0.006161156576126814, -0.02906445972621441, 0.019009916111826897, 0.02600991539657116, -0.01921818032860756, -0.0097710732370615, 0.024806609377264977, 0.001721074222587049, 0.030638014897704124, 0.0014506197767332196, -0.012484296225011349, 0.01683470979332924, -0.02132396586239338, -0.02927272580564022, 0.0026221072766929865, -0.017494212836027145, -0.0007412189734168351, -0.049705781042575836, -0.013363635167479515, -0.008081817999482155, 0.018408263102173805, 0.0124727264046669, 0.0060917348600924015, -0.016904130578041077, 0.03232727199792862, -0.038343798369169235, 0.039454542100429535, 0.018998345360159874, 0.014185123145580292, 0.012229750864207745, -0.01627933792769909, 0.012565288692712784, 0.014393387362360954, 0.0216363612562418, -0.03454875946044922, 0.01533057726919651, 0.02772231213748455, -0.011066941544413567, -0.0014325411757454276, 0.04785454273223877, 0.025246279314160347, 0.008076032623648643, 0.026195039972662926, -0.012310742400586605, -0.043666113168001175, -0.020317353308200836, 0.0006555268191732466, -0.010679338127374649, 0.04850247502326965, 0.003907850943505764, -0.004226032644510269, 0.018697518855333328, -0.009933057241141796, 0.01949586533010006, -0.03200330212712288, -0.013999998569488525, 0.02649586647748947, 0.022492559626698494, -0.04850247502326965, 0.003242561826482415, -0.007219834253191948, -0.00161549577023834, 0.03820495679974556, 0.04334214702248573, 0.048595037311315536, -0.017135536298155785, -0.006467767991125584, -0.015434709377586842, -0.01078347023576498, -0.020676031708717346, -0.042833056300878525, -0.005504544824361801, -0.0005908057210035622, -0.0181537177413702, -0.02978181652724743, 0.006641321815550327, -0.02196032926440239, 3.4100590710295364e-05, 0.039061155170202255, -0.008909090422093868, -0.011361982673406601, 0.009377685375511646, -0.02208760194480419, 0.004092975053936243, 0.016661155968904495, 0.040403302758932114, 0.016186775639653206, -0.01743636280298233, 0.00786198303103447, 0.005825619213283062, 0.018952064216136932, 0.010158676654100418, 0.026773551478981972, -0.04331900551915169, 0.008776032365858555, 0.004411156754940748, -0.00568966893479228, -0.0077347103506326675, 0.01668429560959339, -0.005223966669291258, 0.010019834153354168, -0.02999008074402809, -0.05118677392601967, -0.019565287977457047, -0.022376857697963715, 0.009776858612895012, 0.04470743611454964, 0.004674379713833332, 0.029157022014260292, 0.02506115473806858, -0.003523140214383602, -0.01663801446557045, 0.0036706607788801193, -0.04253222793340683, -0.002649586647748947, 0.010233883745968342, 0.025315700098872185, -0.009904131293296814, 0.002214255975559354, 0.023082643747329712, -0.0013038222678005695, 0.0029258262366056442, -0.0036677683237940073, -0.011639668606221676, 0.020004957914352417, 0.010251238942146301, 0.004549999721348286, -0.03498842567205429, -0.017818180844187737, -0.005299173295497894, 0.0018150825053453445, -0.012345453724265099, 0.04901156574487686, -0.00573884230107069, 0.03434049338102341, 0.009614875540137291, 0.016267767176032066, -0.02104627899825573, -0.004706197883933783, 0.010141321457922459, 0.02267768420279026, -0.034571897238492966, -0.026796692982316017, 0.003228098852559924, -0.012854544445872307, 0.026935534551739693, -0.002935950178653002, -0.008307437412440777, -0.0060280985198915005, 0.000723140430636704, -0.0006877065752632916, -0.012009916827082634, -0.00148677674587816, 0.01177272666245699, -0.0396396666765213, -0.007214048877358437, -0.010812396183609962, 0.0029243798926472664, -0.02160165086388588, 0.021254543215036392, 0.03140164911746979, -0.01885950192809105, 0.006843801122158766, -0.025871071964502335, 0.03017520345747471, 0.023221485316753387, -0.005611569620668888, -0.012854544445872307, -0.02978181652724743, -0.022307436913251877, 0.0024369831662625074, -0.0032859500497579575, 0.006895867176353931, 0.00027822828269563615, -0.00565785076469183, 0.009204131551086903, 0.0022417353466153145, -0.04709090664982796, 0.002016115467995405, -0.004714875482022762, 0.0401950366795063, -0.047276031225919724, 0.0018555783899500966, 0.0019640494138002396, -0.028254542499780655, -0.002588842762634158, 0.012171899899840355, 0.007786776404827833, 0.023406609892845154, 0.012183469720184803, 0.01933388225734234, -0.007179338485002518, 0.00035849687992595136, -0.05058512091636658, -0.014046279713511467, 0.0007491735159419477, 0.02109256014227867, 0.03133222833275795, 0.01627933792769909, 0.0005325929378159344, 0.004923140164464712, 0.02101156860589981, 0.005119834095239639, -0.011431404389441013, 0.014740495011210442, 0.012252891436219215, 0.0018816114170476794, 0.0027508263010531664, 0.00623636320233345, -0.013919007033109665, -0.020166940987110138, 0.013224792666733265, -0.006057024467736483, 0.004445867612957954, -0.002526652766391635, 0.0038123964332044125, 0.026588426902890205, -0.006866941694170237, -0.0169157013297081, 0.0170429740101099, -0.008695040829479694, -0.005900825839489698, -0.006976859178394079, -0.00106012390460819, 0.0018035122193396091, 0.020676031708717346, 0.004639668855816126, 0.009516527876257896, 0.012935535982251167, 0.01072561927139759, 0.014323965646326542, 0.0048132226802408695, -0.0274446252733469, -0.030013220384716988, -0.017135536298155785, 0.0010861569317057729, 0.015527271665632725, 0.03380826115608215, -0.009961982257664204, -0.030082643032073975, -0.010465288534760475, -0.015909088775515556, -0.01187107339501381, 0.002533884020522237, 0.02374214679002762, -0.010957024060189724, 0.012842974625527859, -0.008353718556463718, 0.015596693381667137, -0.01879008114337921, -0.009123140014708042, 0.0468594990670681, 0.005675205960869789, 0.024829750880599022, -0.01471735443919897, 0.0051690079271793365, 0.017494212836027145, -0.009065288119018078, 0.025662807747721672, 0.013780164532363415, 0.0020739666651934385, 0.016730576753616333, 0.0016646692529320717, 0.014428097754716873, 0.004040908999741077, 0.019484296441078186, 0.01774875819683075, -0.037626441568136215, -0.03649256005883217, 0.009834709577262402, -0.00042882226989604533, 0.00284483446739614, 0.024320660158991814, 0.004292561672627926, -0.0435272678732872, 0.028971899300813675, 0.0021578511223196983, 0.0017760329646989703, -0.0038413219153881073, 0.009782643988728523, 0.040449582040309906, 0.016892559826374054, 0.03887603059411049, -0.05289917066693306, 0.001974173355847597, -0.004312809556722641, -0.014995040372014046, -0.036076031625270844, 0.0067917350679636, -0.03621487319469452, -0.01203305646777153, 0.00921570137143135, 0.015214874409139156, -0.032304130494594574, 0.004986776504665613, -0.024876032024621964, -0.03017520345747471], [-0.015245553106069565, 0.04109175503253937, 0.020845089107751846, 0.0483868233859539, -0.0161004438996315, -0.0305480994284153, 0.027926433831453323, 0.04311499372124672, -0.03670331463217735, -0.045622676610946655, -0.0258034560829401, 0.006447301711887121, 0.00485506746917963, -0.055140458047389984, -0.04887126013636589, 0.0208878330886364, 0.038356103003025055, -0.010080588050186634, -0.02644462324678898, 0.029180273413658142, 0.007277258206158876, 0.0026875631883740425, -0.0041889650747179985, 0.009154455736279488, 0.0034320305567234755, -0.004488177131861448, 0.03271382302045822, -0.03356871381402016, 0.05784761533141136, -0.039609942585229874, 0.03271382302045822, -0.0298071950674057, 0.03527849540114403, -0.01847989112138748, 0.001919942325912416, 0.005335943773388863, -0.041063256561756134, 0.0010463508078828454, 0.045109741389751434, 0.015473524108529091, -0.04835832491517067, 0.02056012488901615, -0.013977465219795704, -0.0019698110409080982, 0.01415556762367487, 0.013094077818095684, -0.0009323653066530824, 0.009902485646307468, -0.0034676510840654373, 0.013614136725664139, 0.008499040268361568, 0.043399959802627563, -0.034053150564432144, -0.013749494217336178, -0.0301776472479105, -0.0027267455589026213, 0.023338520899415016, 0.001710672164335847, 0.017995452508330345, 0.005585286766290665, 0.009047594852745533, -0.021258285269141197, -0.005624469369649887, 0.022084679454565048, 0.0008633506949990988, 0.025903193280100822, 0.010550778359174728, 0.08241147547960281, -0.05038156732916832, -0.022740095853805542, 0.006408119108527899, 0.024734841659665108, 0.0245211198925972, -0.017738984897732735, -0.023965440690517426, 0.03225788101553917, -0.01989046111702919, -0.009624646045267582, -0.009909609332680702, 0.004644907079637051, -0.037159256637096405, 0.03573443740606308, -0.0269575584679842, 0.03878354653716087, -0.012210691347718239, -0.037843167781829834, -0.03536398336291313, 0.0025735776871442795, -0.036532334983348846, 0.04436883330345154, -0.03878354653716087, -0.040635813027620316, 0.00942517165094614, 0.0693601444363594, 0.010344179347157478, -0.01483235601335764, -0.0032824247609823942, -0.034195635467767715, -0.04311499372124672, -0.016641875728964806, -0.0596143901348114, 0.004160468932241201, 0.054770007729530334, 0.027869442477822304, 0.03661782294511795, -0.006304820068180561, 0.05006810650229454, -0.016542138531804085, -0.030206143856048584, -0.015331042930483818, -0.07973282039165497, 0.011484033428132534, -0.0009938105940818787, 0.015231305733323097, 0.008149959146976471, 0.03695978224277496, 0.0780230388045311, -0.0034676510840654373, -0.007615652866661549, -0.039182499051094055, 0.0122605599462986, 0.0193205326795578, 0.05739167332649231, -0.05052404850721359, -0.014604385010898113, -0.04055032134056091, 0.029835689812898636, 0.002643037587404251, -0.055596400052309036, -0.05086600407958031, 0.04642057418823242, -0.055539410561323166, 0.015060327015817165, -0.017268795520067215, -0.0068141925148665905, 0.006532791070640087, -0.01490359753370285, -0.023253031075000763, -0.058930475264787674, -0.003262833459302783, -0.009453668259084225, -0.012068209238350391, 0.06132417172193527, -0.041832659393548965, -0.035193007439374924, 0.023310024291276932, 0.028795573860406876, 0.0066895210184156895, 0.044226352125406265, -0.028539106249809265, -0.027812449261546135, 0.008919361047446728, 0.03345472738146782, -0.025361761450767517, -0.025618229061365128, 0.03168795257806778, 0.005407184828072786, 0.014946341514587402, 0.028553353622555733, -0.011911478824913502, -0.049840137362480164, -0.004598600324243307, -0.01734003610908985, -0.012381669133901596, 0.03824211657047272, 0.03049110621213913, -0.00452023558318615, 0.02597443386912346, -0.06594058126211166, -0.06394583731889725, -0.034309618175029755, 0.010087711736559868, -0.03579143062233925, -0.001985840266570449, -0.04721847176551819, 0.004605724476277828, 0.05434256047010422, -0.015202809125185013, -0.030405618250370026, -0.00632263021543622, 0.010764501057565212, 0.007914864458143711, 0.018950080499053, 0.012716501019895077, 0.006956674158573151, 0.03599090501666069, -0.018166430294513702, -0.008506163954734802, -0.017012327909469604, 0.03416713699698448, -0.04097776859998703, 0.03106103464961052, 0.025789206847548485, 0.035648949444293976, -0.009254193864762783, -0.016029203310608864, -0.05827505886554718, -0.0225833673030138, 0.0037009650841355324, 0.01661337912082672, -0.017696240916848183, -0.04701899737119675, 0.05593835934996605, 0.033369239419698715, -0.08275343477725983, 0.006842688657343388, 0.01637115888297558, -0.008919361047446728, 0.004698337521404028, 0.006265637464821339, 0.012403041124343872, -0.09358204901218414, -0.012744997628033161, 0.00981699675321579, -0.004634220618754625, 0.021044563502073288, -0.0338536761701107, 0.018722109496593475, -0.03847008943557739, 0.018109437078237534, 0.01880759932100773, -0.0009492850513197482, 0.034566085785627365, -0.012289055623114109, -0.0012654165038838983, 0.03895452618598938, 0.02762722223997116, -0.0024898694828152657, 0.012167946435511112, -0.029978172853589058, 0.020531628280878067, 0.025789206847548485, 0.023295775055885315, -0.010009347461163998, -0.01865086890757084, 0.007173959165811539, -0.02530476823449135, -0.035193007439374924, 0.029009295627474785, -0.05126495286822319, 0.01657063513994217, 0.038099635392427444, -0.019776474684476852, 0.02534751407802105, 0.05058104172348976, -0.013542896136641502, 0.0035388919059187174, -0.027513237670063972, -0.012381669133901596, -0.01425530482083559, -0.011811741627752781, 0.0022565557155758142, 0.013806487433612347, -0.03428112342953682, -0.015288298018276691, 0.0346800722181797, -0.0057990094646811485, 0.03832760825753212, 0.04596463218331337, -0.031345997005701065, 0.015331042930483818, -0.015815481543540955, 0.0033857240341603756, 0.010023594833910465, -0.03453759104013443, -0.007213141769170761, 0.02794068306684494, -0.016057699918746948, -0.020275160670280457, 0.0063546886667609215, -0.04949818179011345, 0.0028193588368594646, 0.0043991259299218655, -0.001365153817459941, 0.019918955862522125, -0.02071685530245304, -0.01303708553314209, -0.02077384851872921, 0.008114338852465153, 0.035136014223098755, -0.03194442018866539, 0.01425530482083559, -0.026815075427293777, -0.03764369338750839, -0.01033705472946167, 0.007401930168271065, 0.006621841806918383, 0.010451040230691433, -0.03704527020454407, 0.059956345707178116, 0.030833063647150993, -0.05522594973444939, -0.0442548505961895, 0.022725848481059074, 0.053316693753004074, -0.004505987279117107, 0.03536398336291313, -0.06582659482955933, 0.02705729566514492, 0.024791834875941277, 0.035079021006822586, 0.014718370512127876, 0.01186873484402895, 0.0161004438996315, -0.024791834875941277, -0.004951242823153734, -0.03334074467420578, 0.03670331463217735, 0.0094750402495265, -0.01645664870738983, -0.030576596036553383, 0.010436792857944965, -0.03656083345413208, -0.04616410657763481, -0.012061084620654583, -0.06252101808786392, 0.009353931061923504, -0.002854979131370783, -0.023651979863643646, -0.044853273779153824, 0.015445028431713581, 0.0402938537299633, 0.037529706954956055, -0.05511196330189705, -5.5016902479110286e-05, -0.009510660544037819, 0.01337191741913557, 0.013770867139101028, -0.051806386560201645, -0.02073110267519951, -0.010237317532300949, 0.006105345673859119, 0.03448059782385826, -0.014048706740140915, -0.013500151224434376, -0.002789081307128072, 0.04872877895832062, 0.04200363531708717, -0.017211802303791046, 0.01337191741913557, -0.019605496898293495, -0.024749090895056725, 0.02430739626288414, -0.009296937845647335, -0.00639030896127224, 0.03063358925282955, 0.06582659482955933, -0.002523709088563919, 0.02831113524734974, 0.0005098177352920175, -0.03505052626132965, -0.05821806564927101, 0.043542440980672836, -0.05428556725382805, -0.0402938537299633, -0.02466360107064247, 0.0036297240294516087, -0.006012732163071632, -0.04502424970269203, 0.010080588050186634, 0.01028718613088131, 0.01735428348183632, 0.07448948919773102, 0.040065884590148926, 0.023708973079919815, 0.003993052523583174, -0.060697250068187714, -0.007665521465241909, 0.031345997005701065, 0.005396498367190361, -0.018608124926686287, -0.033055778592824936, -0.013500151224434376, -0.007601404562592506, 0.008199827745556831, -0.013856356032192707, 0.042773038148880005, 0.01641390472650528, -0.06046928092837334, 0.014077202416956425, 0.012894603423774242, -0.017112065106630325, -0.015388035215437412, 0.006636090110987425, 0.03875505179166794, -0.017368532717227936, -0.057477161288261414, 0.03479405865073204, -0.025774959474802017, -0.021999191492795944, 0.02030365727841854, -0.0180809423327446, 0.00023041979875415564, -0.021899454295635223, 0.016171684488654137, -0.04642057418823242, 0.0305480994284153, -0.01906406506896019, -0.013464530929923058, -0.00615521427243948, 0.0024008185137063265, -0.0411202497780323, 0.0015797670930624008, -0.043285973370075226, -0.008114338852465153, 0.019861964508891106, 0.0008980806451290846, -0.020175423473119736, -0.014148443937301636, 0.0007511462899856269, 0.0022690228652209044, -0.03932498022913933, 0.06525667011737823, 0.0030918552074581385, 0.022725848481059074, -0.01394896861165762, -0.0033554465044289827, -0.005307447165250778, 0.034879546612501144, -0.006529228761792183, 0.044482819736003876, -0.00203927094116807, -0.02935125306248665, -0.035392481833696365, 0.014604385010898113, 0.012623888440430164, -0.008178455755114555, -0.010906982235610485, -0.005934367422014475, -0.05719219893217087, -0.01922079548239708, 0.018251920118927956, -0.009731507860124111, 0.019049817696213722, -0.04502424970269203, -0.007544411811977625, -0.009503536857664585, 0.008149959146976471, -0.0482158437371254, -0.027869442477822304, -0.048700280487537384, -0.008214076049625874, -0.05172089487314224, -0.017582254484295845, -0.00485506746917963, -0.00132419029250741, -0.030092157423496246, 0.0022868330124765635, -0.03237186744809151, 0.013094077818095684, -0.01064339093863964, -0.05636580288410187, -0.05485549569129944, 0.05280375853180885, -0.004951242823153734, 0.018622372299432755, 0.011334427632391453, -0.03493653982877731, 0.03274231776595116, -0.04636358097195625, 0.04203213378787041, 0.048785772174596786, 0.05163540691137314, 0.03356871381402016, -0.026929061859846115, 0.019178051501512527, -0.05345917493104935, 0.011583770625293255, 0.018992824479937553, -0.07574333250522614, -0.005531856324523687, -0.024179162457585335, -0.009161580353975296, -0.02305355668067932, 0.004181840922683477, 0.007152586709707975, -0.02234114706516266, -0.030006669461727142, -0.021315278485417366, -0.0015014020027592778, 0.01137717254459858, 0.029522230848670006, -0.03695978224277496, -0.0491277277469635, 0.01963399350643158, -0.0032770815305411816, 0.015957962721586227, 0.0064579881727695465, -0.013065582141280174, -0.019548503682017326, -0.013329173438251019, 0.019719481468200684, 0.023908447474241257, -0.016812853515148163, -0.034509092569351196, 0.03906851261854172, -0.01922079548239708, -0.04761742055416107, 0.033369239419698715, 0.017268795520067215, 0.031032538041472435, -0.029166026040911674, 0.02628789283335209, 0.041519198566675186, 0.01474686712026596, 0.009304062463343143, -0.041633184999227524, -0.009275565855205059, -0.00898347795009613, -0.009603274054825306, -0.011854486539959908, -0.03382518142461777, 0.01537378691136837, -0.006614718120545149, -0.0008602339075878263, -0.022768592461943626, -0.010180325247347355, 0.050096604973077774, -0.02165723405778408, 0.03901151940226555, -0.019334781914949417, 0.02358073927462101, -0.03023464046418667, -0.01910681091248989, 0.006821316666901112, -0.03188742697238922, -0.049783144146203995, -0.005987797863781452, 0.0058916229754686356, 0.0063440026715397835, 0.023765966296195984, -0.013806487433612347, -0.04140521213412285, 0.022056184709072113, 0.03476556017994881, 0.026302142068743706, 0.0017373875016346574, 0.017382780089974403, 0.036019399762153625, -0.011797493323683739, 0.03351172059774399, 0.0013268617913126945, -0.010942602530121803, 0.0001985840208362788, 0.005236206576228142, -0.020374897867441177, 0.01436216663569212, 0.01205396093428135, 0.03359720855951309, 0.03884053975343704, 0.02893805503845215, 0.014184064231812954, 0.006721579469740391, -0.05750565603375435, -0.009111711755394936, -0.030320128425955772, 0.04909922927618027, 0.002701811259612441, 0.03676030784845352, 0.040692806243896484, -0.003351884428411722, 0.017568007111549377, 0.006956674158573151, 0.029949676245450974, 0.01483235601335764, 0.014497524127364159, 0.002178190741688013, 0.001240482204593718, -0.024293148890137672, -0.008363681845366955, -0.02234114706516266, 0.01885034330189228, -0.013749494217336178, 0.06343290209770203, 0.0017391685396432877, 0.020018694922327995, -0.00459503848105669, -0.04057881981134415, -0.010451040230691433, 0.0018682926893234253, 0.007458922453224659, 0.0009038689895533025, 0.015487772412598133, -0.019192298874258995, 0.0067002070136368275, -0.011633639223873615, 0.03750121220946312, -0.009902485646307468, 0.02207043208181858, 0.028695836663246155, -0.03875505179166794, -0.02960772067308426, 0.011683507822453976, 0.01278061792254448, 0.0051079727709293365, -0.012075332924723625, -0.013585640117526054, -0.00027939790743403137, 0.021671483293175697, 0.02187095768749714, 0.0225833673030138, 0.02352374605834484, -0.026758084073662758, 0.0013259713305160403, 0.012766369618475437, -0.003184468485414982, 0.0014773582806810737, -0.00023464973492082208, 0.021785467863082886, 0.05904446169734001, 0.006429491564631462, 0.012709377333521843, 0.03815662860870361, 0.0007021681522019207, -0.023409761488437653, -0.007330689113587141, -0.022939570248126984, -0.026843572035431862, 0.011113581247627735, 0.03932498022913933, -0.010821493342518806, 0.016342664137482643, 0.06576960533857346, 0.013685377314686775, -0.0036190380342304707, 0.03641834855079651, -0.031402990221977234, -0.0394674614071846, -0.002650161739438772, -0.009809872135519981, -0.009888237342238426, 0.025105293840169907, -0.0009145551011897624, -0.021115804091095924, 0.007523039355874062, 0.02758447825908661, 0.010928355157375336, 0.039866410195827484, -0.012381669133901596, 0.022982316091656685, -0.008320937864482403, -0.004819447174668312, 0.005823943763971329, -0.03963843733072281, 0.034252624958753586, 0.031345997005701065, -0.03408164903521538, 0.046876516193151474, 0.013934721238911152, -0.029778698459267616, -0.00029609500779770315, -0.010971099138259888, 0.0201041828840971, -0.017938459292054176, -0.004174716770648956, -0.014846604317426682, -0.03673180937767029, 0.06143815442919731, 0.037672191858291626, -0.009261317551136017, -2.1093987015774474e-05, 0.025675222277641296, -0.0047446442767977715, -0.044796280562877655, 0.020659862086176872, 0.012488530948758125, 0.01745402067899704, -0.022155921906232834, 0.016741612926125526, 0.01637115888297558, 0.006283447612076998, -0.03567744418978691, 0.06371786445379257, -0.03952445462346077, 0.013350545428693295, 0.029778698459267616, 0.003822074504569173, -0.005977111868560314, -0.06195108965039253, -0.0014417377533391118, 0.05052404850721359, -0.022084679454565048, -0.012816238217055798, 0.0030277385376393795, -0.0269575584679842, 0.00471258582547307, 0.016713116317987442, -0.03382518142461777, -0.00639030896127224, -0.007508791517466307, 0.0005178323481231928, 0.04206062853336334, 0.016955334693193436, -0.02222716249525547, 0.01357851643115282, -0.027242520824074745, -0.0062585133127868176, -0.017938459292054176, -0.024649353697896004, -0.028325382620096207, 0.009289814159274101, -0.008805375546216965, 0.017852971330285072, -0.07141188532114029, 0.017211802303791046, -0.052946239709854126, 0.014632881619036198, 0.045993126928806305, 0.07078496366739273, -0.03667481616139412, -0.04790238291025162, -0.01594371348619461, -0.012303303927183151, 0.013542896136641502, -0.03807114064693451, 0.005325257778167725, -0.0022280593402683735, -0.015758488327264786, 0.046050120145082474, -0.016299918293952942, -0.008263944648206234, -0.010842865332961082, -0.012915976345539093, -0.05810408294200897, 0.04716147854924202, -0.013300676830112934, -0.03579143062233925, -0.007936236448585987, 0.024022432044148445, -0.013842107728123665, 0.02144351229071617, 0.018608124926686287, 0.008242572657763958, 0.007202455308288336, 0.018978577107191086, 0.0063653746619820595, -0.04254506900906563, -0.00536443991586566, -0.012196443043649197, -0.040692806243896484, 0.015416531823575497, -0.03815662860870361, -0.026373382657766342, -0.007615652866661549, 0.0014212559908628464, -0.010244442149996758, 0.007394806016236544, -0.022455133497714996, -0.022668855264782906, -0.0009377084206789732, 0.004381315782666206, 0.013785114511847496, -0.038299109786748886, -0.02762722223997116, 0.00991673395037651, -0.01890733651816845, 0.022768592461943626, -0.03262833505868912, 0.01584397628903389, -0.009211448952555656, 0.01833740808069706, 0.005816819611936808, -0.008527535945177078, 0.028524858877062798, 0.022241409868001938, -0.024264652281999588, -0.03966693580150604, -0.05200586095452309, 0.037729181349277496, 0.004099913872778416, 0.038612570613622665, 0.01677010953426361, 0.05109397694468498, 0.013072705827653408, 0.04154769703745842, 0.013834984041750431, -0.004919184371829033, -0.030605092644691467, -0.005047418177127838, -0.037672191858291626, 0.010899858549237251, -0.013735245913267136, 0.03935347497463226, -0.0053181336261332035, 0.028211398050189018, 0.011277435347437859, 0.024863075464963913, 0.013542896136641502, 0.026971805840730667, -0.01631416752934456, -0.0068141925148665905, -0.016812853515148163, -0.01739702932536602, -0.04727546498179436, 0.008762631565332413, 0.038042642176151276, -0.012908851727843285, -0.02893805503845215, 0.013257931917905807, -0.00054855493362993, 0.03037712164223194, 0.0001926843833643943, -0.017724737524986267, 0.03667481616139412, 0.03661782294511795, -0.05417158454656601, -0.018978577107191086, 0.0506095364689827, 0.025062549859285355, -0.010044967755675316, -0.014604385010898113, 0.03963843733072281, -0.016855597496032715, 0.03516450896859169, 0.011362924240529537, -0.018365904688835144, -0.011156325228512287, 0.014775363728404045, 0.004951242823153734, 0.01205396093428135, 0.021001817658543587, -0.06029830127954483, 0.0026020740624517202, -0.006066163070499897, 0.03798564895987511, 0.005717082414776087, -0.022740095853805542, -0.017425525933504105, 0.04659155011177063, 0.009589025750756264, 0.019021321088075638, -0.017681991681456566, -0.015359538607299328, 0.001640321803279221, 0.0629199668765068, -0.018821846693754196, -0.0051293452270329, 0.016271421685814857, -0.028952304273843765, 0.007227389607578516, 0.0161004438996315, -0.00690680555999279, -0.008791127242147923, 0.004448994528502226, 0.0020268037915229797, 0.01387060433626175, -0.015402283519506454, 0.03188742697238922, -0.019975949078798294, 0.03379668667912483, -0.0015405846061185002, -0.004919184371829033, 0.007615652866661549, 0.008784003555774689, 0.022782841697335243, 0.026829324662685394, 0.021229788661003113, 0.005150717217475176, -0.05459902808070183, -0.04200363531708717, -0.0004038468759972602, -0.024991309270262718, 0.013250808231532574, -0.02685782127082348, 0.021201293915510178, 0.01327218022197485, 0.052376311272382736, -0.022355396300554276, 0.03348322585225105, 0.03989490494132042, 0.022084679454565048, 0.02892380766570568, -0.016057699918746948, -0.030975544825196266, 0.007914864458143711, -0.01387060433626175, 0.01436216663569212, 0.011106456629931927, 0.03448059782385826, 0.007134776562452316, 0.0563943013548851, -0.006066163070499897, -0.0026074170600622892, -0.002217373112216592, -0.015145815908908844, 0.013421786017715931, -0.045223724097013474, 0.007551535964012146, 0.015131567604839802, 0.005966425873339176, 0.007701141759753227, 0.021742723882198334, 0.025874696671962738, -0.01734003610908985, -0.04120573773980141, -0.014191187918186188, 0.012937348335981369, 0.03436661139130592, 0.002302862238138914, 0.00641524326056242, 0.011163449846208096, 0.009453668259084225, -0.0027534610126167536, -0.01900707371532917, -0.029436741024255753, -0.01127031072974205, 0.013941844925284386, -0.04445432499051094, -0.0017934897914528847, -0.039809416979551315, 0.02014692686498165, -0.004392001777887344, -0.0076299007050693035, -0.008413550443947315, 0.027812449261546135, 0.013464530929923058, -0.030063660815358162, -0.02393694408237934, 0.0015370225301012397, -0.006625404115766287, 0.011149201542139053, 0.012182194739580154, 0.03730173781514168, -0.006447301711887121, -0.028140157461166382, 0.0021924388129264116, 0.0037579576019197702, 0.01490359753370285, 0.03314127027988434, -0.01641390472650528, -0.04055032134056091, 0.03106103464961052, 0.030975544825196266, 0.00361547595821321, 0.036532334983348846, 0.024449877440929413, 0.03202991187572479, 0.01890733651816845, 0.01600070670247078, 0.007800878956913948, -0.003107884433120489, 0.0011888325680047274, -0.008855244144797325, -0.04026535898447037, -0.020545877516269684, -0.07135488837957382, -0.015302546322345734, 0.009418047964572906, 0.02103031426668167, -0.006767885759472847, -0.0020303658675402403, 0.00483013316988945, 0.023765966296195984, -0.016014955937862396, -0.01283048652112484, 0.015872472897171974, 0.033682700246572495, -0.00932543445378542, 0.018679365515708923, 0.009432295337319374, -0.026943309232592583, -0.03556345775723457, -0.02238389290869236, -0.021001817658543587, 0.04294401779770851, -0.011455537751317024, 0.03587691858410835, -0.007216703612357378, -0.03174494579434395, 0.036532334983348846, 0.01420543622225523, 0.00976712815463543, 0.018893087282776833, -0.0008958543767221272, -0.0016982050146907568, -0.010429668240249157, -0.0005912994965910912, 0.0507805161178112, -0.016998080536723137, -0.024592360481619835, -0.016698867082595825, 0.032542843371629715, 0.05457053333520889, 0.005756265018135309, -0.04097776859998703, 0.037472713738679886, 0.015972210094332695, -0.006571973208338022, -0.015715744346380234, -0.012574019841849804, 0.001968029886484146, 0.018522635102272034, 0.023381264880299568, 0.014818107709288597, -0.007359185256063938, 0.014547392725944519, 0.014233932830393314, 0.0015352414920926094, -0.02872433327138424, -0.012680880725383759, -0.018722109496593475, -0.03718775138258934, -0.002767709083855152, 0.014226808212697506, -0.0004697447002399713, 0.00916870404034853, 0.0277412086725235, 0.012445786036550999, -0.024863075464963913, -0.05853152647614479, 0.011669260449707508, -0.023096300661563873, -0.019448766484856606, -0.026401879265904427, -0.0361618846654892, -0.03844159096479416, 0.018522635102272034, 0.020275160670280457, -0.022056184709072113, 0.03251434862613678, 0.04730395972728729, 0.00667171087116003, -0.022569118067622185, -0.013265056535601616, -0.008007477968931198, -0.017382780089974403, 0.0046270969323813915, -0.014661378227174282, 0.04060731455683708, -0.0060305423103272915, -0.006472236011177301, 0.01724029891192913, 0.025148039683699608, 0.025276273488998413, 0.02336701564490795, 0.02960772067308426, 0.010386924259364605, -0.018209174275398254, -0.015772735700011253, 0.01969098672270775, -0.0011950661428272724, 0.0028905996587127447, -0.014091450721025467, -0.0016287451144307852, -0.0007043944206088781, -0.002468497259542346, 0.008584529161453247, -0.007594280410557985, 0.01890733651816845, -0.0030865122098475695, 0.022398140281438828, -0.008256820961833, -0.027869442477822304, -0.007473170757293701, -0.018209174275398254, -0.026373382657766342, -0.031089531257748604, 0.007914864458143711, -0.007423302158713341, -0.024578111246228218, 0.023979688063263893, -0.022996563464403152, 0.04701899737119675, 0.022811338305473328, 0.03527849540114403, -0.011847361922264099, 0.024749090895056725, 0.009888237342238426, 0.024905819445848465, -0.007084907963871956, -0.0040642935782670975, 0.01765349693596363, -0.011619391851127148, -0.004242395982146263, -0.0007894382579252124, 0.018294664099812508, -0.011491158045828342, -0.020474635064601898, -0.025205031037330627, 0.03670331463217735, 0.010237317532300949, 0.025148039683699608, -0.01822342351078987, -0.017026575282216072, 0.013557144440710545, 0.004548731725662947, -0.003416001331061125, 0.019434519112110138, 0.03647534176707268, -0.008840995840728283, -0.008784003555774689, 0.022398140281438828, 0.011020967736840248, 0.02960772067308426, -0.0027659281622618437, 0.006016294471919537, 0.009930982254445553, -0.01745402067899704, 0.03978092223405838, 0.004374191630631685, 0.026359135285019875, 0.039495956152677536, -0.007487419061362743, 0.02368047647178173, 0.03735873103141785, -0.008897989057004452, 0.01030855905264616, 0.016185933724045753, 0.038042642176151276, 0.0008112557698041201, -0.006945988163352013, 0.001747183152474463, 0.02591744065284729, 0.03131750226020813, 0.020659862086176872, 0.024421382695436478, -0.02638763003051281, 0.04958366975188255, -0.007872119545936584, -0.017795978114008904, -0.012566895224153996, -0.007971856743097305, 0.014248181134462357, 0.0084420470520854, 0.01070038415491581, -0.0012021902948617935, -0.017325788736343384, 0.05744866654276848, -0.00690680555999279, 0.02633063867688179, -0.027541734278202057, -0.06599757075309753, -0.03490804135799408, 0.01236029714345932, 0.02529052086174488, -0.014369290322065353, 0.007929112762212753, 0.00849191565066576, 0.0060305423103272915, 0.011811741627752781, -0.011633639223873615, 0.04009437933564186, -0.021699979901313782, 0.006126717664301395, 0.024962812662124634, 0.027456244453787804, -0.0176677443087101, 0.07882093638181686, -0.008499040268361568, 0.00981699675321579, -0.01518856082111597, 0.011996968649327755, -0.02882407046854496, -0.009510660544037819, -0.01983346790075302, -0.050296079367399216, 0.01812368631362915, -0.031915925443172455, 0.019876211881637573, 0.026302142068743706, -0.02556123584508896, 0.0018576065776869655, 0.004142658784985542, 0.006693082861602306, 0.025903193280100822, -0.013692501932382584, -0.006062600761651993, -0.004174716770648956, -0.009603274054825306, 0.020317906513810158, -0.026159660890698433, -0.03299878537654877, -0.011939975433051586, 0.007971856743097305, -0.007077783811837435, -0.016228677704930305, 0.024606607854366302, -0.025005556643009186, -0.0037650817539542913, 0.02892380766570568, 0.029892683029174805, -0.032200887799263, 0.021372271701693535, -0.043969884514808655, -0.02566097304224968, 0.02903779223561287, 0.018408650532364845, 0.015017583034932613, 0.03636135905981064, -0.015231305733323097, 0.01615743711590767, 0.023594986647367477, 0.012816238217055798, -0.00620508287101984, -0.00410347618162632, 0.028539106249809265, -0.01708356849849224, -0.002071329392492771, 0.015915218740701675, -0.009460791945457458, -0.009553405456244946, -0.018194926902651787, -0.02289682626724243, 0.008043098263442516, 0.010059216059744358, -0.02556123584508896, -0.017097817733883858, 0.014233932830393314, 0.0031043223571032286, -0.031232012435793877, 0.030605092644691467, 0.027128536254167557, 0.006796382367610931, -0.002995680086314678, 0.00310254143550992, -0.036019399762153625, -0.013635508716106415, -0.013151071034371853, 0.0027463368605822325, 0.0002805110707413405, -0.016855597496032715, -0.0037579576019197702, -0.001503183040767908, 0.004281578119844198, 0.028838317841291428, -0.00510441092774272, -0.008449171669781208, 0.019591249525547028, 0.02487732283771038, 0.030320128425955772, 0.01942026987671852, -0.009752879850566387, -0.03037712164223194, 0.01600070670247078, 0.002247650409117341, 0.018109437078237534, 0.00180150440428406, -0.013749494217336178, 0.0030188332311809063, 0.023609235882759094, 0.009068966843187809, 0.024848828092217445, 0.013300676830112934, 0.0036101327277719975, -0.018209174275398254, 0.014454779215157032, -0.0114769097417593, 0.007971856743097305, -0.044539812952280045, -0.013022837229073048, -0.012723625637590885, 0.01033705472946167, 0.0005436571664176881, -0.02083083987236023, -0.020289409905672073, -0.0005432118778117001, 0.014789612032473087, 0.0076085287146270275, -0.006486484315246344, 0.025675222277641296, -0.017126312479376793, -0.004783826880156994, -0.013029960915446281, 0.02218441665172577, -0.037273239344358444, 0.034822553396224976, -0.009617522358894348, 0.005945053417235613, -0.0034444977063685656, -0.01823767088353634, 0.006066163070499897, 0.0030437675304710865, 0.009653142653405666, -0.02238389290869236, 0.023723220452666283, 0.045309215784072876, 0.001341109978966415, -0.008705638349056244, -0.009738631546497345, 0.0483868233859539, -0.0007680659764446318, 0.017069321125745773, -0.02145775966346264, 0.015986459329724312, 0.005574600771069527, 0.02326727844774723, 0.02420765906572342, 0.014504647813737392, 0.022269906476140022, -0.005200585816055536, -0.03325525298714638, -0.003964556381106377, 0.03411014378070831, -0.018551131710410118, 0.02466360107064247, 0.006108907517045736, 0.024378636851906776, -0.014689874835312366, -0.010942602530121803, -0.06804931163787842, -0.03693128377199173, 0.025888944044709206, 0.024535367265343666, 0.055396925657987595, 0.013200939632952213, 0.00407854188233614, -0.013585640117526054, -0.010522281751036644, -0.0011906136060133576, -0.03735873103141785, -0.028083164244890213, 0.0028122346848249435, -1.53195778693771e-05, -0.007943361066281796, -0.0027214025612920523, -0.011840238235890865, -0.0009261317318305373, -0.012659508734941483, -0.014554516412317753, -0.029009295627474785, 0.020032942295074463, -0.005378688219934702, -0.011904355138540268, 0.021842461079359055, 0.022369643673300743, 0.056223321706056595, -0.012787742540240288, -0.007099156267940998, 0.0027641470078378916, 0.02497706189751625, 0.003626161953434348, -0.007270134054124355, -0.018137933686375618, 0.01724029891192913, -0.012431537732481956, 0.0046484689228236675, -0.013257931917905807, 0.013200939632952213, -0.008092966862022877, -0.007337813265621662, -0.016399655491113663, -0.0029725267086178064, -0.03821362182497978, 0.004213899374008179, 0.011776121333241463, -0.00737343356013298, -0.0008660222520120442, 0.011669260449707508, 0.017154809087514877, -0.034252624958753586, -0.001407007803209126, 0.012167946435511112, -0.033426232635974884, -0.005368002224713564, 0.02955072745680809, 0.016214430332183838, -0.04696200415492058, 0.02705729566514492, -0.007227389607578516, 0.02311054989695549, 0.014369290322065353, -0.004160468932241201, -0.01270225364714861, -0.01761075109243393, 0.011633639223873615, -0.011391420848667622, -0.024905819445848465, 0.02788368985056877, -0.01615743711590767, -0.0066895210184156895, -0.01392047293484211, 0.02992117963731289, 0.01875060610473156, 0.026188155636191368, 0.013300676830112934, 0.007423302158713341, -0.019135307520627975, -0.008862368762493134, 0.0017819131026044488, 0.016898343339562416, -0.028838317841291428, -0.013022837229073048, -0.01231042854487896, -4.8393721954198554e-05, -0.010073463432490826, -0.02161449007689953, -0.011405669152736664, -0.0031292566563934088, 0.0034694320056587458, -0.0023224535398185253, -0.029180273413658142, 0.02420765906572342, 0.005303885322064161, -0.014547392725944519, 0.0006897010025568306, -0.0172972921282053, -0.008762631565332413, -0.036275867372751236, 0.01999019831418991, -0.021828213706612587, -0.00732356496155262, -0.010073463432490826, 0.009703011251986027, 0.01293022371828556, 0.013706750236451626, 0.01859387569129467, -0.02540450729429722, -0.030405618250370026, -0.010743128135800362, 0.02960772067308426, 0.0032183078583329916, 0.02368047647178173, 0.010536530055105686, -0.0006215769099071622, 0.010251565836369991, -0.004488177131861448, -0.014960589818656445, -0.02222716249525547, 0.0036831547040492296, 0.006810630206018686, -0.03382518142461777, -0.03453759104013443, 0.02420765906572342, -0.015316794626414776, 0.0007867667591199279, 0.04228860139846802, 0.016214430332183838, -0.02425040304660797, 0.002546862233430147, 0.014055830426514149, 0.027356507256627083, 0.0068141925148665905, -0.013129699043929577, -0.016684619709849358, -0.002534395083785057, -0.012118077836930752, 0.03131750226020813, 0.023651979863643646, -0.015217057429254055, 0.014248181134462357, 0.004726834129542112, -0.0010659419931471348, -0.004769578576087952, -0.005278951022773981, -0.012958720326423645, -0.006212207023054361, -0.03875505179166794, -0.004114162176847458, -0.04143371060490608, 0.0041675930842757225, 0.0009519566083326936, -0.03433811664581299, 0.0015672999434173107, 0.0217569712549448, 0.005343067925423384, 0.0003989490505773574, -0.013514399528503418, -0.011156325228512287, -0.005524732172489166, 0.0028888187371194363, 0.011811741627752781, -0.013115450739860535, -0.023310024291276932, 0.0009279127698391676, 0.01124181505292654, 0.01480386033654213, 0.026059921830892563, 0.03402465581893921, 0.008556032553315163, 0.011149201542139053, 0.00646511185914278, 0.007829375565052032, -0.029265763238072395, -0.014889349229633808, -0.01776748150587082, 0.011127829551696777, 0.012602515518665314, -0.023352768272161484, 0.0023295774590224028, -0.0017908181762322783, -0.03989490494132042, 0.010550778359174728, 0.0029743078630417585, -0.010280062444508076, 0.0022084680385887623, -0.01947726309299469, -0.025732215493917465, -0.00427089212462306, -0.03733023256063461, -0.03274231776595116, 0.0036582204047590494, 0.0028068916872143745, 0.06320492923259735, -0.025888944044709206, 0.03909700736403465, 0.012923100031912327, 0.011697756126523018, 0.01765349693596363, 0.03764369338750839, -0.017909962683916092, 0.007501667365431786, -0.015915218740701675, -0.004256643820554018, 0.0029547165613621473, 0.015430780127644539, -0.023253031075000763, -0.02809741348028183, -0.015658751130104065, -0.010714631527662277, -0.0030028040055185556, -0.037102263420820236, 0.03328375145792961, 0.004384877625852823, -0.021329525858163834, 0.016955334693193436, 0.004149782471358776, 0.013094077818095684, 0.0014399568317458034, 0.014775363728404045, 0.024492623284459114, 0.007074221968650818, 0.0037579576019197702, -0.04325747862458229, 0.004602162633091211, 0.012688005343079567, -0.013678253628313541, 0.004591476172208786, 0.018878839910030365, -0.03391066938638687, 0.019235044717788696, -0.01900707371532917, 0.00718108331784606, -0.007077783811837435, 0.022768592461943626, 0.005072352476418018, 0.02238389290869236], [-0.020270928740501404, 0.03291931748390198, -0.01800929568707943, -0.047242991626262665, 0.009940015152096748, -0.018511882051825523, -0.019684579223394394, 0.04514888674020767, 0.014295751228928566, -0.04495343938469887, -0.020913120359182358, -0.009974916465580463, 0.005025850143283606, -0.045344337821006775, -0.011503612622618675, 0.01986606977880001, -0.004631460644304752, 0.020927080884575844, -0.024891918525099754, 0.027963271364569664, 0.04654495790600777, 0.020438456907868385, 0.010526363737881184, 0.01693432219326496, 0.008669591508805752, 0.03808477520942688, -0.003348821774125099, -0.04311062768101692, 0.010079621337354183, -0.0467124842107296, 0.018302470445632935, -0.022923460230231285, 0.055005136877298355, 0.006219489499926567, 0.04146326333284378, 0.02007547952234745, 0.007126934826374054, 0.007245600689202547, 0.025171132758259773, -0.02914993092417717, -0.024654587730765343, 0.00819492805749178, 0.019335562363266945, 0.012292391620576382, 0.02732107974588871, 0.0001906507386593148, -0.026329871267080307, -0.036102358251810074, 0.05185002088546753, 0.0010156405624002218, 0.00998887699097395, -0.032891396433115005, -0.028898637741804123, -0.022588403895497322, 0.0077202641405165195, -0.013513952493667603, 0.013688461855053902, -0.004530245438218117, 0.00885108020156622, -0.0012189431581646204, -0.013374345377087593, 0.013688461855053902, -0.023691298440098763, 0.022239387035369873, -0.037665955722332, -0.004896713886409998, -0.0010601403191685677, 0.07577865570783615, -0.025659756734967232, -0.023328321054577827, -0.014435358345508575, 0.022532561793923378, 0.005001418758183718, -0.03132779896259308, -0.053385697305202484, 0.025617875158786774, -0.0627114400267601, 0.048694904893636703, 0.003507624613121152, -0.016962245106697083, -0.04936501756310463, 0.07510853558778763, -0.011803767643868923, 0.005015379749238491, -0.009116333909332752, 0.016473619267344475, -0.008104183711111546, -0.01914011314511299, -0.003381978254765272, -0.009367626160383224, -0.0280749574303627, -0.03283555433154106, 0.054111652076244354, 0.038559440523386, 0.024431215599179268, -0.025157172232866287, -0.007482932414859533, -0.007217679172754288, 0.014477240853011608, 0.06388413906097412, 0.008564886637032032, -0.05115198716521263, 0.038894496858119965, -0.03911786898970604, -0.022016016766428947, 0.005723884794861078, -0.00512357521802187, -0.040681466460227966, 0.0037240153178572655, -0.051487043499946594, -0.09738980978727341, -0.0007534412434324622, -0.014218967407941818, 0.04933709651231766, -0.00019032353884540498, 0.004334795754402876, 0.0010863165371119976, -0.03674454987049103, -0.0217647235840559, -0.03236089274287224, 0.013213797472417355, 0.012431998737156391, 0.0300154946744442, -0.03241673484444618, -0.027195433154702187, -0.021373823285102844, -0.002704884624108672, -0.02141570672392845, -0.05601030960679054, -0.07455011457204819, 0.046377427875995636, -0.039201632142066956, -0.0044639320112764835, -0.02459874376654625, -0.04394826665520668, 0.017297301441431046, -0.017129773274064064, -0.0016054799780249596, -0.010316953994333744, 0.033477745950222015, -0.0119014922529459, -0.02270008996129036, -0.01359073631465435, -0.050928615033626556, -0.021848486736416817, 0.008509043604135513, -0.027376923710107803, 0.07527606934309006, 0.040206801146268845, 0.0056191799230873585, -0.009360645897686481, -0.004645421169698238, -0.002731060842052102, -0.01763235777616501, 0.02928953804075718, 0.030266785994172096, 0.012822898104786873, -0.022155622020363808, -0.008334535174071789, 0.02180660516023636, -0.027349000796675682, 0.01246690098196268, 0.06209716945886612, 0.03350566700100899, 0.0010749734938144684, 0.06516852229833603, 0.03255634009838104, -0.04486967250704765, -0.06505683809518814, 0.00045808529830537736, -0.01065899059176445, -0.008153045549988747, 0.006369567010551691, -0.020187165588140488, -0.06438672542572021, -0.009081431664526463, 0.004237071145325899, -0.0028095899615436792, -0.03769387677311897, 0.007259561214596033, -0.009807388298213482, 0.01041467860341072, -1.3926611245551612e-05, -0.044478774070739746, -0.017255419865250587, -0.03272387012839317, -0.030881056562066078, -0.03719129040837288, 0.06505683809518814, -0.0005998736014589667, 0.023398125544190407, 0.00933272484689951, 0.009060490876436234, 0.0044360109604895115, -0.005203849170356989, -0.009472331963479519, -0.013164935633540154, -0.017059968784451485, 0.015273000113666058, -0.0038915437180548906, -0.022951383143663406, -0.029540831223130226, 0.03417577967047691, 0.0073921880684792995, -0.0838758572936058, 0.022504640743136406, 0.019405366852879524, 0.06516852229833603, 0.046796251088380814, 0.03908994421362877, 0.020717671141028404, 0.023160792887210846, -0.0010610128520056605, -0.00955609604716301, -0.018232667818665504, 0.006578977685421705, -0.013639599084854126, 0.010533344000577927, -0.005751806311309338, 0.024863997474312782, -0.0077063036151230335, -0.0002163907774956897, 0.011461730115115643, -0.018651489168405533, 0.01890278048813343, 0.031886227428913116, 0.04763389006257057, -0.021611155942082405, 0.03562769293785095, -0.02579936385154724, -0.01618044637143612, 0.04202169179916382, -0.01409332174807787, -0.03076937235891819, 0.00927688181400299, -0.015328843146562576, -0.0326959490776062, -0.0435294471681118, 0.02928953804075718, 0.019991714507341385, -0.041239891201257706, -0.002792139071971178, 0.009611938148736954, 0.017646318301558495, 0.012048079632222652, 0.008823159150779247, -0.01735314354300499, 0.0304622370749712, -0.051514964550733566, 0.022714050486683846, 0.01662718690931797, 0.005120085086673498, 0.0424405112862587, -0.03280763328075409, 0.008976726792752743, 0.006348626222461462, -0.04188208654522896, -0.033198531717061996, 0.028312290087342262, -0.02835417166352272, 0.06583863496780396, -0.04858321696519852, -0.018581684678792953, 0.031579092144966125, -0.005748316179960966, -0.01135004498064518, -0.002624610671773553, 0.0276282150298357, -0.016515502706170082, 0.001558362622745335, -0.047410521656274796, 0.01597103476524353, -0.031718697398900986, 0.05358114838600159, -0.0318024642765522, -0.04023472219705582, 0.02162511646747589, -0.024054277688264847, 0.0050188698805868626, 0.07159044593572617, -0.02828436717391014, -0.05846739187836647, 0.024277647957205772, 0.004676832817494869, -0.01714373379945755, -0.009318764321506023, -0.01738106459379196, 0.044757988303899765, 0.012690272182226181, 0.059695933014154434, 0.031439486891031265, -0.014163125306367874, -0.02021508663892746, 0.01107083074748516, 0.02790742926299572, -0.03018302284181118, -0.0014807061525061727, -0.007357286289334297, -0.04001135006546974, 0.008013439364731312, 0.06840740889310837, -0.004788518417626619, 0.00996793620288372, -0.0449255146086216, -0.022993264719843864, 0.02542242594063282, -0.013290581293404102, -0.009325744584202766, 0.009723624214529991, -0.04087691381573677, -0.045623552054166794, 0.008320574648678303, -0.028535660356283188, -0.011587376706302166, -0.018120981752872467, 0.011566435918211937, -0.005437690764665604, 0.03241673484444618, 0.012662350200116634, -0.05157080665230751, 0.034929659217596054, 0.008006458170711994, 0.01925179921090603, -0.010372796095907688, 0.022295229136943817, 0.019586855545639992, 0.01990795135498047, 0.03579522296786308, -0.03241673484444618, -0.008048340678215027, 0.004355737008154392, -0.02180660516023636, 0.018888819962739944, -0.015943113714456558, 0.008076261729001999, 0.01442139782011509, 0.011629259213805199, 0.017199575901031494, -0.03331021964550018, 0.002029536059126258, -0.08102787286043167, -0.02035469375550747, 0.02235107310116291, 0.013660539872944355, 0.0036716628819704056, 0.06304650008678436, 0.04191000759601593, 0.03618612140417099, -0.021499469876289368, -0.05042602866888046, -0.02814476191997528, 0.009395548142492771, 0.002287808805704117, 0.027139591053128242, -0.03336606174707413, -0.016738872975111008, -0.0016255484661087394, 0.013800146989524364, -0.03604651615023613, 0.023021185770630836, 0.03129987791180611, -0.010959145613014698, -0.05695963650941849, -0.007448030635714531, 0.00589839369058609, -0.008913903497159481, -0.028954481706023216, 0.00813908502459526, 0.07594618201255798, -0.040486015379428864, 0.033198531717061996, 0.01202015858143568, 0.008313593454658985, 0.028814874589443207, 0.0031271956395357847, 0.006407958921045065, 0.021401746198534966, -0.0024256708566099405, 0.01019130740314722, 0.022895539179444313, 0.05494929477572441, 0.03453876078128815, -0.023328321054577827, -0.04889035224914551, 0.025129251182079315, 0.019000506028532982, 0.014519122429192066, 0.06639706343412399, -0.0401509590446949, -0.020745592191815376, -0.012976465746760368, -0.05145912244915962, 0.003783348249271512, -0.029959650710225105, -0.0034482916817069054, -0.017032047733664513, 0.09951183199882507, 0.0100866025313735, -0.02239295467734337, -0.054418787360191345, 0.006282312795519829, -0.014923983253538609, -0.004446481354534626, -0.020787475630640984, -0.0030032945796847343, 0.01941932737827301, -0.008404338732361794, -0.005975177511572838, 0.003863622434437275, 0.02148550935089588, 0.05980761721730232, -0.03950876742601395, 0.047522205859422684, -0.011398907750844955, -0.014826257713139057, -0.010791617445647717, 0.047410521656274796, -0.034343309700489044, 0.02769801951944828, 0.022755932062864304, 0.0015522547764703631, 0.04163079336285591, 0.020843317732214928, 0.013255679979920387, -0.002198809524998069, 0.0004153306654188782, 0.028368132188916206, -0.021792644634842873, 0.010093582794070244, -0.0627114400267601, 0.0065231346525251865, -0.023914670571684837, 0.05011889338493347, 0.014351594261825085, -0.06840740889310837, -0.020243007689714432, 0.011971295811235905, -0.0017442143289372325, 0.010009818710386753, -0.07549943774938583, -0.043306075036525726, -0.023090990260243416, -0.017087889835238457, 1.0811358151840977e-05, 0.002429160987958312, 0.025966892018914223, -0.04612613469362259, 0.03900618106126785, -0.009800408035516739, -0.028898637741804123, 0.0127949770539999, -0.06142705678939819, -0.05360906943678856, 0.00772724486887455, -0.033617354929447174, 0.03487381711602211, 0.01314399391412735, -0.02549222856760025, 0.05620575696229935, 0.002287808805704117, 0.01566389948129654, -0.003863622434437275, 0.0034168800339102745, 0.01697620563209057, -0.005985647905617952, 0.008578847162425518, -0.005528435111045837, 0.018944663926959038, 0.01756255514919758, 0.0007870341651141644, -0.0024082199670374393, -0.02256048284471035, -0.030099257826805115, 0.03956460952758789, 0.009339705109596252, -0.005524944979697466, 0.008564886637032032, -0.013332463800907135, -0.0680723488330841, -0.04648911580443382, -0.043166469782590866, 0.04819231852889061, -0.031244035810232162, -0.026539281010627747, 0.016641149297356606, 0.06137121468782425, -0.03805685415863991, 0.05159872770309448, -0.05374867469072342, -0.03336606174707413, 0.0024326511193066835, -0.006948935799300671, 0.024640627205371857, -0.016571344807744026, -0.012173726223409176, -0.0035844084341078997, 0.010931224562227726, -0.030210943892598152, 0.011754904873669147, 0.015133392997086048, 0.023160792887210846, -0.009835309349000454, -0.04715922847390175, 0.03224920481443405, 0.012194667011499405, 0.014407437294721603, -0.006118274759501219, 0.0195310115814209, 0.02124817855656147, -0.04556770995259285, -0.003551251720637083, 0.03928539529442787, 0.01665510982275009, -0.01024715043604374, 0.020326772704720497, -0.004889733623713255, -0.0068302699364721775, 0.015594095923006535, 0.0034046645741909742, -0.00910935364663601, 0.01007264107465744, -0.0032982141710817814, -0.016431737691164017, -0.004474402870982885, 0.010910282842814922, 0.01803721860051155, -0.016138562932610512, -0.021848486736416817, -0.008669591508805752, -0.0015793036436662078, 0.0014013047330081463, -0.011615297757089138, 0.023258518427610397, -0.022672168910503387, -0.015915192663669586, 0.00434526614844799, 0.02549222856760025, -0.008892962709069252, -0.039480846375226974, -0.04380866140127182, 0.02511529065668583, 0.013011367991566658, 0.017464829608798027, -0.013520932756364346, -0.0309089794754982, -0.0003073534171562642, 0.030685607343912125, -0.002661257516592741, 0.03266802802681923, 0.01742294803261757, 0.013925793580710888, 0.0004168576269876212, 0.023258518427610397, -0.05302271991968155, 0.012082981877028942, -0.04163079336285591, -0.0044499714858829975, 0.043138548731803894, 0.02045241743326187, 0.0053190249018371105, -0.02584124729037285, 0.008132104761898518, 0.04777349904179573, 0.018819017335772514, 0.02166699804365635, 0.03853151947259903, -0.025017565116286278, 0.005814629606902599, -0.03344982489943504, -0.01350697223097086, -0.018637528643012047, 0.024640627205371857, -0.021094610914587975, 0.07555527985095978, 0.02928953804075718, 0.015384686179459095, 0.01428179070353508, -0.016166483983397484, 0.0031271956395357847, -0.005315534770488739, 0.020927080884575844, 0.00098335649818182, 0.01920991577208042, 0.02321663498878479, 0.003908994607627392, 0.019670618698000908, -0.01359073631465435, 0.00915821548551321, -0.01259254664182663, 0.023370202630758286, 0.014232928864657879, -0.008020419627428055, 0.009479312226176262, -0.03534847870469093, 0.014937943778932095, 0.023188713937997818, -0.010442599654197693, -0.019000506028532982, -0.016334014013409615, 0.0016665579751133919, 0.012257490307092667, -0.010973106138408184, 0.012557645328342915, -0.002174378139898181, 0.027949310839176178, -0.026748690754175186, -0.006170627195388079, 0.03032262995839119, 0.042691804468631744, 0.04847153276205063, 0.01766027882695198, -0.0026001795195043087, -0.008550926111638546, -0.020759552717208862, -0.015189236029982567, 0.03590690717101097, -0.004589578602463007, 0.02797723188996315, -0.025380544364452362, 0.03576730191707611, -0.03526471555233002, 0.017506711184978485, 0.052659742534160614, 0.0021900839637964964, -0.03674454987049103, 0.04003927484154701, 0.028242485597729683, -0.03266802802681923, -0.0493929386138916, 0.026539281010627747, -0.007859871722757816, 0.02190433070063591, 0.006533605046570301, -0.009416488930583, -0.037414662539958954, 0.018930701538920403, 0.025925010442733765, 0.002999804448336363, -0.016641149297356606, 0.0016307836631312966, 0.005975177511572838, -0.006729055196046829, 0.040653545409440994, -0.006470782216638327, 0.034203704446554184, 0.0641075149178505, -0.00487228250131011, 0.030713528394699097, -0.01442139782011509, 0.015915192663669586, -0.0026926689315587282, -0.007734225131571293, 0.042272984981536865, -0.0433339960873127, -0.001083698938600719, 0.01204109936952591, -0.05467008054256439, 0.018093060702085495, 0.05991930142045021, 0.005322515033185482, -0.008229829370975494, 0.026204224675893784, -0.022002054378390312, -0.027865547686815262, -0.02445913851261139, 0.016920361667871475, 0.011726983822882175, 0.0154544897377491, 0.0016185680869966745, -0.041211970150470734, 0.008097203448414803, 0.039341237396001816, 0.020159242674708366, -0.028298329561948776, -0.019084269180893898, 0.015021707862615585, -0.03208167850971222, -0.02586916834115982, 0.0035687026102095842, -0.020996885374188423, 0.0019073799485340714, -0.006027529947459698, 0.006240430753678083, 0.0012904917821288109, 0.003657702123746276, -0.011706043034791946, 0.009151235222816467, -0.02507340908050537, -0.0012765310239046812, 0.02429160848259926, -0.003594879060983658, -0.004718714859336615, 0.03950876742601395, -0.003149881726130843, 0.029512908309698105, -0.024542901664972305, -0.003050411818549037, 0.017771964892745018, -0.01021224819123745, -0.02884279564023018, 0.0020749082323163748, -0.037889327853918076, -0.02870318852365017, -0.04090483486652374, -0.03839191049337387, -0.019586855545639992, -0.020047558471560478, -0.0068302699364721775, 0.01407238095998764, 0.0011997472029179335, -0.04017888009548187, -0.009730604477226734, -0.05425126105546951, 0.011747924610972404, -0.011838668957352638, 0.02431953139603138, -0.004896713886409998, -0.05550772324204445, 0.01428179070353508, 0.006697643548250198, -0.030797293409705162, -0.030378472059965134, 0.0020452418830245733, 0.01007264107465744, 0.019586855545639992, -0.034929659217596054, 0.014477240853011608, -0.01862356625497341, 0.004655891563743353, 0.03716336935758591, 0.007901753298938274, -0.019279720261693, -0.004970007576048374, 0.0007098140777088702, -0.011336084455251694, -0.02000567503273487, -0.05869076028466225, 0.004013699945062399, 0.001984163885936141, -0.04040225222706795, -0.011733964085578918, -0.027335040271282196, -0.040932755917310715, -0.003587898565456271, -0.007790067698806524, -0.027335040271282196, -0.006784897763282061, -0.0304622370749712, -0.04355736821889877, 0.0016185680869966745, 0.0018009296618402004, 0.012892701663076878, -0.02211374044418335, 0.01517527550458908, 0.010854440741240978, -0.019503090530633926, 0.02563183568418026, -0.018986545503139496, 0.012515762820839882, 0.02397051267325878, 0.007601598277688026, 0.003368017729371786, -0.015021707862615585, 0.013772225938737392, 0.016082720831036568, 0.0017433417961001396, -0.025520149618387222, 0.02152739092707634, -0.023719221353530884, 0.025952931493520737, -0.014993786811828613, -0.01165718026459217, 1.1418048870837083e-06, -0.0026595124509185553, -0.024333491921424866, -0.012599526904523373, -0.0333939827978611, -0.004624480381608009, -0.055005136877298355, -0.004010209813714027, 0.03060184419155121, -0.009709663689136505, 0.026818495243787766, -0.0065161543898284435, 0.037665955722332, -0.04643326997756958, 0.028437934815883636, 0.017827806994318962, 0.008048340678215027, 0.026553241536021233, -0.015594095923006535, 0.013904851861298084, -0.021136492490768433, -0.01338132657110691, -0.007259561214596033, 0.00702920975163579, 0.03967629373073578, -0.06461009383201599, -0.016585305333137512, 0.007762146182358265, -0.035683535039424896, 0.02572956122457981, -0.00816002581268549, 0.0708644911646843, 0.06444256752729416, -0.006229960359632969, -0.0500909723341465, -0.01606876030564308, 0.01576162502169609, -0.06600616872310638, -0.027823664247989655, 0.031690776348114014, -0.01259254664182663, 0.02190433070063591, 0.0518779419362545, -0.029066167771816254, 0.011133654043078423, -0.013046269305050373, 0.0276282150298357, 0.002455337205901742, 0.011364005506038666, -0.037721797823905945, 0.013220777735114098, 0.007887792773544788, 0.055172666907310486, 0.0038915437180548906, -0.03149532899260521, 0.018274549394845963, 0.013060229830443859, 0.03777763992547989, -0.031104428693652153, 0.0017171654617413878, -0.04713130742311478, 0.009821348823606968, -0.02473835088312626, 0.008872021920979023, -0.017883650958538055, -0.019126152619719505, -0.022057898342609406, -0.015426567755639553, 0.02928953804075718, -0.02117837406694889, -0.00783194974064827, -0.0015976270660758018, -0.013318503275513649, 0.02045241743326187, 0.01672491244971752, -0.013234739191830158, -0.022672168910503387, -0.01041467860341072, 0.007126934826374054, 0.01904238760471344, 0.019335562363266945, 0.041965849697589874, 0.002261632587760687, 0.006100823637098074, 0.02656720206141472, 0.005528435111045837, -0.03431538864970207, -0.006990817841142416, -0.004191698506474495, 0.044311244040727615, -0.009870211593806744, -0.04757804796099663, 0.015412607230246067, -0.014826257713139057, 0.02077351324260235, 0.025101330131292343, 0.023747142404317856, 0.002017320366576314, 0.028647346422076225, 0.030071336776018143, -0.003915974870324135, -0.04897411912679672, -0.016683030873537064, 0.006219489499926567, -0.01088236179202795, 0.02680453471839428, 0.031997911632061005, 0.018260588869452477, 0.01486814022064209, -0.009255941025912762, -0.016096681356430054, 0.018930701538920403, 0.03183038532733917, -0.025855207815766335, -0.020675789564847946, 0.03512511029839516, 0.004369697533547878, 0.021024806424975395, -0.008299632929265499, 0.017129773274064064, -0.025813324376940727, 0.00736426655203104, 0.0019562423694878817, 0.012180706486105919, 0.02942914515733719, 0.050007209181785583, 0.007168816868215799, -0.004694283474236727, 0.025199053809046745, -0.006631330121308565, 0.022811776027083397, -0.013395287096500397, 0.005716904532164335, 0.012069020420312881, 0.03791724890470505, -0.019586855545639992, -0.013569795526564121, 0.009912093169987202, 0.040625620633363724, 0.00018105276103597134, -0.0031027644872665405, -0.026162343099713326, 0.0012049825163558125, -0.011370985768735409, 0.005189888179302216, -0.014205006882548332, 0.03546016663312912, 0.023789023980498314, -0.01869337074458599, -0.023412086069583893, -0.025897089391946793, 0.007769126910716295, -0.015482410788536072, -0.012704232707619667, -0.0251432117074728, -8.466397957818117e-06, 0.040960680693387985, 0.025478268042206764, -0.010833499021828175, 0.0028235504869371653, 0.01214580424129963, 0.037414662539958954, 0.03272387012839317, -0.031104428693652153, -0.00908841285854578, 0.029038244858384132, -0.006153176538646221, -0.031104428693652153, 0.013716382905840874, 0.02211374044418335, -0.0024448668118566275, -0.015552214346826077, -0.005699453875422478, -0.021276099607348442, 0.014351594261825085, 0.023789023980498314, 0.03794516995549202, -0.04981175810098648, 0.026553241536021233, 0.005811139475554228, 0.03384072333574295, -0.008215868845582008, -0.035543929785490036, -0.0025391012895852327, -0.0001042144067469053, 0.05740637704730034, -0.00809022318571806, -0.024361412972211838, 0.0019928892143070698, -0.02800515480339527, 0.016138562932610512, -0.030127178877592087, 0.014840219169855118, -0.006798858288675547, -0.0217647235840559, -0.003877582959830761, 0.02676265314221382, 0.0034360759891569614, -0.010393737815320492, 0.04615405574440956, -0.0038601320702582598, -0.014323673211038113, 0.001227668602950871, 0.015398646704852581, 0.013597716577351093, 0.018428117036819458, 0.01625024899840355, -0.01051938347518444, 0.044004108756780624, 0.03152325004339218, 0.04997928813099861, 0.01047052163630724, -0.03649325668811798, -0.012397097423672676, 0.022518601268529892, -0.00492463493719697, 0.014379516243934631, 0.01135004498064518, -0.020885199308395386, 0.023202674463391304, 0.030992742627859116, -0.01638985611498356, 0.0022825736086815596, 0.03532055765390396, 0.011915452778339386, 0.028549620881676674, 0.014030498452484608, -0.006788387894630432, -0.018414156511425972, -0.009912093169987202, 0.005413259379565716, -0.01638985611498356, 0.016571344807744026, -0.00012728227011393756, 0.007636500056833029, 0.008564886637032032, -0.0270837489515543, -0.011510592885315418, 0.047968946397304535, -0.02683245576918125, 0.05182209983468056, -0.011629259213805199, -0.0006849466008134186, -0.011217418126761913, 0.027711980044841766, 0.036549098789691925, -0.03557185083627701, 0.011594356968998909, 0.04484175145626068, -0.02035469375550747, 0.01986606977880001, -0.048108555376529694, 0.005608709063380957, -0.023886749520897865, 0.026790574193000793, -0.021778684109449387, 0.0036681725177913904, 0.028200604021549225, 0.0007041425560601056, 0.05958424508571625, -0.011370985768735409, 0.02204393781721592, -0.03512511029839516, 0.03370111808180809, 0.034203704446554184, -0.03867112472653389, -0.008048340678215027, -0.010128484107553959, -0.0029840986244380474, 0.030713528394699097, -0.0013306287582963705, -0.0015871565556153655, -0.03018302284181118, 0.009339705109596252, 0.06349324434995651, -0.012857800349593163, -0.01976834423840046, 0.014407437294721603, 0.0008729796973057091, 0.027753861621022224, -0.011196477338671684, 0.0005217809812165797, 0.004889733623713255, 0.002279083477333188, 0.001728508505038917, 0.0002399494405835867, 0.005224789958447218, -0.019279720261693, 0.022993264719843864, -0.021722842007875443, -0.0018881839932873845, 0.020703710615634918, 0.013199836947023869, -0.0038112697657197714, 0.009479312226176262, -0.013855990022420883, -0.005217809695750475, -0.017032047733664513, -0.016403816640377045, 0.013520932756364346, 0.011370985768735409, 0.01328360103070736, 0.010100563056766987, -0.003751936834305525, 0.01359073631465435, 0.01110573299229145, -0.002317475387826562, 0.02349584922194481, -0.037582192569971085, 0.02945706620812416, 0.002680453471839428, -0.018888819962739944, -0.020173205062747, 0.027237316593527794, -0.018260588869452477, -0.01285082008689642, -0.03487381711602211, -9.745219722390175e-05, -0.026120459660887718, 0.030964821577072144, -0.006927995011210442, 0.00035817906609736383, -0.012089962139725685, 0.006620859727263451, 0.01641777716577053, -0.0033540569711476564, 0.0020749082323163748, -0.002612394979223609, -0.013150975108146667, -0.0030922938603907824, 0.0047710672952234745, -0.023607535287737846, 0.006729055196046829, -0.022225426509976387, -0.02821456454694271, 0.03280763328075409, 0.02887071669101715, -0.01090330258011818, 0.024850036948919296, 0.01181772816926241, 0.0036611922550946474, 0.012843839824199677, 0.016361935064196587, 0.011308162473142147, 0.02314683236181736, -0.0061112940311431885, -0.015943113714456558, -0.011754904873669147, -0.010351855307817459, 0.0054900432005524635, -0.012885721400380135, 0.010547305457293987, 0.002498964313417673, 0.009751545265316963, -0.007650461047887802, 0.029847966507077217, -0.0032615673262625933, 0.0040311506018042564, -0.005514474585652351, -0.001001679920591414, -0.02145758830010891, 0.0008053575875237584, -0.004645421169698238, -0.04997928813099861, -0.01869337074458599, -0.01796741411089897, -0.01786969043314457, -0.009926053695380688, 0.04112820699810982, -0.005210829433053732, 0.006571996957063675, -0.034817975014448166, 0.003118470311164856, 0.048248160630464554, 0.019000506028532982, 0.07410337030887604, -0.004903694149106741, 0.01848396100103855, -0.024138040840625763, -0.028368132188916206, -0.016878480091691017, 0.02173680253326893, -0.0012992172269150615, -0.005343455821275711, 0.036549098789691925, -0.010617108084261417, 0.024501020088791847, 0.01904238760471344, 0.002397749340161681, -0.005092163570225239, -0.022029977291822433, -0.009472331963479519, -0.004833890590816736, -0.001916105393320322, 0.0038671125657856464, -0.013395287096500397, 0.005455141421407461, 0.0015304412227123976, -0.02666492760181427, -0.007420109584927559, 0.016306091099977493, -0.018260588869452477, 0.02331436052918434, -0.0006832015351392329, 0.029484987258911133, 0.01925179921090603, -0.008529984392225742, 0.00885108020156622, 0.008536964654922485, -0.031579092144966125, -0.019949832931160927, -0.0030957842245697975, 0.0053469459526240826, 0.011154594831168652, 0.01918199472129345, 0.03255634009838104, -0.008543944917619228, -0.0020382613874971867, -0.02356565371155739, -0.003237136173993349, 0.01714373379945755, -0.013897871598601341, -0.041239891201257706, 0.02094104327261448, -0.05344153940677643, -0.029122009873390198, -0.0025076898746192455, 0.03389656916260719, -0.0025146701373159885, 0.014351594261825085, -0.026371752843260765, 0.021932251751422882, -0.003982288297265768, -0.014533083885908127, 0.010665970854461193, -0.01686451956629753, -0.023174753412604332, -0.04992344602942467, 0.03632572665810585, 0.03342190384864807, -0.025925010442733765, -0.016194406896829605, 0.0025513169821351767, -0.019740423187613487, -0.011643219739198685, 0.010728794150054455, -0.021373823285102844, -0.014393476769328117, -0.0038601320702582598, 0.03255634009838104, 0.021499469876289368, 0.0020783983636647463, 0.017227496951818466, -0.05229676514863968, -0.007762146182358265, -0.036409493535757065, 0.01866544969379902, 0.015580135397613049, 0.009723624214529991, -0.0016648129094392061, -0.03459460288286209, -0.0006718584336340427, 0.0006797113455832005, 0.03194206953048706, -0.003074842970818281, 0.020605985075235367, -0.027823664247989655, 0.01976834423840046, 0.008180967532098293, 0.004160287324339151, 0.0251432117074728, -0.024445176124572754, -0.008879002183675766, -0.009695702232420444, 0.004198679234832525, 0.007468971889466047, 0.012718193233013153, -0.02579936385154724, 0.006819799542427063, -0.02028488926589489, -0.03520887345075607, -0.008585827425122261, 0.009570056572556496, -0.018986545503139496, -0.030294708907604218, -0.03590690717101097, 0.025952931493520737, 0.018567724153399467, 0.008858061395585537, 0.013555835001170635, -0.028158722445368767, -0.012278431095182896, -0.004481383133679628, 0.0016569599974900484, -0.03688415512442589, 0.027516528964042664, -0.016822637990117073, -0.005113104358315468, 0.012515762820839882, 0.02901032380759716, 0.018846938386559486, -0.04405995458364487, 0.009646840393543243, 0.04322231188416481, 0.012892701663076878, 0.006634820252656937, 0.018860898911952972, -0.0009118078742176294, -0.02342604659497738, 0.008104183711111546, 0.028591502457857132, -0.0091931177303195, -0.002631590934470296, 0.007308423984795809, 0.03579522296786308, 0.02849377878010273, -0.0030032945796847343, 0.017841767519712448, 0.005455141421407461, 0.01495190430432558, 0.07477348297834396, -0.011706043034791946, 0.005305063910782337, -0.014260849915444851, 0.03621404245495796, 0.0027589823585003614, 0.006020549684762955, 0.016096681356430054, -0.01638985611498356, 0.04847153276205063, -0.030964821577072144, 0.004327815491706133, -0.0262879878282547, 0.009325744584202766, -0.001595882000401616, -0.035878986120224, -0.013493011705577374, -0.03487381711602211, 0.011315143667161465, 0.03183038532733917, 0.025827284902334213, -0.041239891201257706, -0.028926560655236244, -0.049141645431518555, -0.02973628044128418, -0.048862431198358536, -0.005479572806507349, 0.006554546300321817, 0.001051414874382317, -0.014449318870902061, -0.011880551464855671, -0.0016962244408205152, 0.010910282842814922, 0.006610388867557049, 0.011503612622618675, 0.026469478383660316, 0.011747924610972404, -0.00915821548551321, -0.005807648878544569, 0.038615282624959946, -0.004530245438218117, 0.01157341618090868, -0.024431215599179268, -0.016710951924324036, 0.005650591105222702, 0.030518079176545143, -0.0013166680000722408, -0.023844866082072258, -0.045204728841781616, 0.002622865606099367, -0.0018864389276131988, -0.011252320371568203, -0.007622539531439543, -0.020243007689714432, 0.009946995414793491, 0.03233296796679497, 0.03202583268284798, -0.02007547952234745, 0.0026071597822010517, 0.05254805460572243, -0.01866544969379902, -0.020466377958655357, 0.01946120895445347, 0.003730995813384652, 0.01148965209722519, -0.011978276073932648, 0.0025338660925626755, 0.01121043786406517, -0.016166483983397484, 0.01238313689827919, -0.0119014922529459, 0.010589187033474445, 0.012976465746760368, 0.021345902234315872, -0.03562769293785095, 0.0021080649457871914, -0.029792122542858124, -0.02028488926589489, -0.03557185083627701, 0.03864320367574692, 0.0005619179573841393, 0.005825100000947714, 0.013988615944981575, 0.028814874589443207, -0.046209901571273804, 0.008962766267359257, 0.024124080315232277, -0.005193378310650587, -0.03716336935758591, -0.043166469782590866, 0.013995597139000893, -0.009828329086303711, 0.004526755306869745, -0.03936915844678879, -0.03635365143418312, -0.035376399755477905, -0.0008882491965778172, -0.011280241422355175, -0.003450036747381091, 0.007573677226901054, -0.017171654850244522, -0.04288725554943085, 0.026022735983133316, -0.038587361574172974, -0.00011615734547376633, -0.01236917544156313, 0.021862449124455452, 0.009025589562952518, 0.015356764197349548, 0.03367319703102112, -0.009018609300255775, 0.023021185770630836, 0.025520149618387222, -0.01735314354300499, -0.027446726337075233, -0.0024902389850467443, -0.04950462281703949, 0.04397618770599365, 0.009430449455976486, -0.0038357009179890156, -0.005772747565060854, 0.020759552717208862, 0.00697685731574893, -0.015063589438796043, -0.001389961689710617, -0.00809022318571806, -0.024165963754057884, -0.0167947169393301, 0.01731126196682453, -0.041379500180482864, -0.017534632235765457, -0.003895033849403262, 0.003050411818549037, 0.02438933402299881, -0.005919334478676319, 0.013011367991566658, 0.0031969991978257895, 0.013053249567747116, 0.007078072521835566, 0.014519122429192066, -0.014407437294721603, 0.013220777735114098, 0.013688461855053902, 0.028228525072336197, 0.014218967407941818, 0.03035055100917816, 0.0005846041021868587, 0.0015182255301624537, -0.00675348611548543, -0.015719743445515633, 0.010582206770777702, -0.01246690098196268, 0.0016499796183779836, -0.03370111808180809, -0.00631372444331646, 0.006069411989301443, -0.001602862263098359, -0.002788648707792163, -0.03155117109417915, -0.007845910266041756, -0.004390638787299395, 0.007109483703970909, -0.017604436725378036, -0.029094088822603226, -0.004963026847690344, -0.020857278257608414, 0.0008123379666358232, -0.015845388174057007, -0.0010069151176139712, 0.006065921857953072, -0.03155117109417915, -0.006526624783873558, -0.002036516321823001, 0.018469998612999916, 0.012438978999853134, 0.02790742926299572, -0.023886749520897865, -0.003012019908055663, 0.010058680549263954, -0.02028488926589489, -0.006882622838020325, -0.026609085500240326, 0.005957726389169693, 0.026999983936548233, 0.009814368560910225, -0.0024256708566099405, -0.012990426272153854, -0.0300154946744442, -0.03892241790890694, -0.009919073432683945, 0.011943374760448933, -0.006048471201211214, -0.013876930810511112, 0.028228525072336197, -0.021206295117735863, 0.010477501899003983, -0.01700412668287754, -0.02431953139603138, 0.04559563100337982, -0.011391927488148212, 0.00032873073359951377, -0.010002837516367435, 0.018958624452352524, -0.01450516190379858, -0.012864780612289906, 0.05014681816101074, 0.021471548825502396, -0.03660494089126587, 9.318490810983349e-06, -0.00021006482711527497, 0.01553825382143259, 0.04026264324784279, 0.0009597977623343468, -0.011056870222091675, -0.0112313786521554, -0.007217679172754288, -0.023998435586690903, -0.003720525186508894, -0.02839605323970318, 0.03780556097626686, -0.006941955536603928, 0.013241719454526901, 0.011440789327025414, 0.030825214460492134, 0.009116333909332752, -0.029094088822603226, -0.0024012394715100527, 0.01373034343123436, -0.023789023980498314, 0.020815396681427956, -0.004303384106606245, -0.017827806994318962, -0.005668042227625847, -0.022002054378390312, 0.019475169479846954, 0.0011247084476053715, -0.04889035224914551, -0.011426828801631927, -0.004966517444700003, 0.005189888179302216, -0.004474402870982885, -0.022546522319316864, -0.00938158668577671, -0.00572737492620945], [-0.04987294599413872, -0.04035945609211922, -0.007413366809487343, -0.004004808142781258, -0.015939733013510704, 0.012110486626625061, 0.013110860250890255, 0.03789495676755905, -0.0011875299969688058, -0.07886391133069992, -0.001994122751057148, -0.01419073436409235, 0.0727689191699028, -0.018960729241371155, -0.040836453437805176, -0.0011676549911499023, -0.01599273271858692, 0.001114655053243041, -0.0184174794703722, -0.01837773062288761, 0.01157386228442192, 0.012309236451983452, 0.03566896170377731, 0.02084222622215748, 0.011732862330973148, -0.0025423408951610327, -0.0197027288377285, -0.02147822640836239, 0.030474966391921043, -0.07043692469596863, 0.025029221549630165, -0.033495962619781494, 0.061850931495428085, -0.0052304319106042385, 0.014018484391272068, -0.027215469628572464, -0.04369845241308212, 0.04099545627832413, 0.031720466911792755, -0.019119728356599808, -0.02553272247314453, -0.004481807351112366, 0.0021796226501464844, -0.023531973361968994, -0.012812735512852669, 0.019821977242827415, 0.014773733913898468, -0.030713466927409172, 0.010348238982260227, -0.013051236048340797, 0.010050114244222641, 0.03320446237921715, -0.024194473400712013, 0.004422182682901621, -0.0059028686955571175, -0.01030848827213049, 0.03598695993423462, 0.021981725469231606, 0.05549093708395958, 0.03725896030664444, 0.06534893065690994, -0.026128971949219704, -0.01951722800731659, 0.03723245859146118, 0.02126622572541237, 0.0009763583075255156, 0.0201532281935215, 0.05914793536067009, -0.037391457706689835, 0.011076987721025944, 0.014786983840167522, 0.01930522918701172, 0.04414895176887512, -0.030209966003894806, -0.028301969170570374, 0.012998235411942005, 0.02361147478222847, 0.008360740728676319, 0.03882245719432831, -0.03254196420311928, -0.024631723761558533, 0.018152479082345963, -0.011752736754715443, 0.03535095974802971, -0.016774481162428856, -0.03296596184372902, -0.07462392002344131, -0.0010749050416052341, -0.015356733463704586, 0.03839845955371857, -0.04597745090723038, 0.004670619964599609, 0.014323234558105469, 0.042770951986312866, 0.07928790897130966, -0.027692468836903572, 0.00681711733341217, -0.024750972166657448, 0.0070489924401044846, 0.00940748956054449, -0.01474723406136036, -0.019477479159832, 0.030819466337561607, 0.006386492867022753, -0.0008007959695532918, 0.01972922869026661, 0.0019411228131502867, -0.03357546404004097, 0.011898486874997616, -0.013554735109210014, -0.05660393834114075, -0.008433615788817406, -0.036940958350896835, 0.04550044983625412, 0.008705240674316883, -0.0192522294819355, 0.026566220447421074, -0.010593363083899021, -0.02125297673046589, 0.008062615990638733, 0.016164982691407204, -0.0034681835677474737, 0.010142863728106022, 0.031137466430664062, -0.04955494403839111, 0.010765613056719303, 0.0619039312005043, 0.0027576531283557415, -0.05660393834114075, -0.045208949595689774, 0.04573895037174225, -0.11013387888669968, -0.013137360103428364, -0.009281614795327187, 0.01312411017715931, -0.001344045391306281, -0.04613645002245903, -0.007625366561114788, 0.006747554987668991, 0.005396056454628706, -0.01756948046386242, -0.003148527815937996, 0.04531494900584221, -0.01930522918701172, -0.0192522294819355, -5.884856727789156e-05, 0.0016736388206481934, -2.237228909507394e-05, -0.02142522670328617, -0.007631991524249315, -0.010520488023757935, 0.020060477778315544, 0.023690974339842796, -0.016628731042146683, -0.04181695356965065, 0.021080726757645607, -0.03794795647263527, 0.029176468029618263, 0.001020248862914741, 0.03982945531606674, -0.012083986774086952, -0.01996772736310959, -0.018483730033040047, 0.05053544417023659, -0.008751614950597286, 0.031932465732097626, -0.010109738446772099, -0.005167494527995586, -0.0546429380774498, -0.0628049299120903, -0.0015618420438840985, -0.004518244881182909, -0.03633145987987518, 0.0050946194678545, -0.04661344736814499, 0.017026230692863464, 0.017383981496095657, 0.013481860049068928, -0.05474894121289253, -0.012706736102700233, 0.013534859754145145, 0.015648232772946358, 0.056232936680316925, -0.01007661409676075, -0.023505473509430885, 0.00020640992443077266, 0.027162469923496246, 0.023518724367022514, 0.011275737546384335, 0.0096592390909791, -0.020524227991700172, 0.007234491873532534, 0.04857444763183594, 0.04997894540429115, -0.022193726152181625, 0.02039172686636448, -0.04504995048046112, -0.04629544913768768, 0.011878611519932747, -0.00216637272387743, -0.046507447957992554, -0.024737723171710968, 0.01709248125553131, -0.013071110472083092, -0.05559694021940231, -0.04091595485806465, 0.012236361391842365, -0.004309557843953371, 0.007327241823077202, 0.03209146484732628, 0.02208772487938404, -0.03794795647263527, 0.02445947378873825, 0.020961476489901543, -0.03770945966243744, -0.023280223831534386, -0.03882245719432831, 0.021994976326823235, -0.02033872716128826, 0.031031465157866478, -0.022710474207997322, 0.018973978236317635, 0.002799059497192502, -0.013183735311031342, 0.04271795228123665, 0.01506523322314024, 0.005889618303626776, -0.0031269965693354607, -0.0030756527557969093, -0.055384937673807144, -0.022034725174307823, 0.010593363083899021, -0.011534112505614758, -0.032621465623378754, -0.0036801835522055626, 0.010533737950026989, -0.027771970257163048, -0.02685772068798542, -0.011368487030267715, 0.05761093646287918, 0.021517977118492126, 0.016999730840325356, 0.02530747279524803, 0.04155195504426956, 0.042770951986312866, -0.003085590433329344, -0.012269486673176289, 0.006161243189126253, -0.020881976932287216, -0.043433453887701035, 0.015767483040690422, -0.004922369495034218, -0.01605898141860962, -0.09259089827537537, 0.0028504030779004097, 0.007592241745442152, -0.031958963721990585, -0.04727594926953316, -0.006595180369913578, -0.008241490460932255, 0.0715499222278595, -0.049104444682598114, -0.013687235303223133, -0.00013208579912316054, -0.03232996538281441, -0.05458993837237358, 0.04979344457387924, 0.024578722193837166, 0.013700485229492188, -0.008585990406572819, -0.07149691879749298, 0.0037431209348142147, 0.014283483847975731, 0.015674732625484467, -0.02620847150683403, 0.006134743336588144, 0.003267777618020773, -0.029785966500639915, -0.02298872545361519, 0.02404872328042984, -0.07388191670179367, -0.007565741892904043, -0.007963241077959538, -0.035880960524082184, -0.03492696210741997, -0.004478495102375746, 0.025506222620606422, 0.03699395805597305, 0.009036489762365818, 0.04934294521808624, 0.08214990794658661, -0.02494972199201584, -0.07197391986846924, 0.030660465359687805, 0.038053959608078, -0.03529796004295349, 0.008519740775227547, -0.00889074057340622, 0.015727732330560684, -0.0026367472019046545, 0.03376096114516258, -0.0016661856789141893, 0.03776245936751366, -0.032144464552402496, -0.013832984492182732, -0.020471228286623955, 0.005863118451088667, 0.06238093227148056, -0.036728959530591965, -0.03052796609699726, -0.03906095772981644, -0.013567985035479069, -0.03988245502114296, 0.003806058317422867, 0.030156966298818588, -0.03198546543717384, 0.016814231872558594, 0.013673985376954079, -0.005396056454628706, -0.03495346009731293, 0.008884115144610405, -0.029149968177080154, 0.030713466927409172, 0.0019891541451215744, 0.023677723482251167, 0.022644225507974625, -0.02167697623372078, -0.004948869347572327, -0.03288646414875984, 0.004392370115965605, 0.014707483351230621, -0.040597956627607346, 0.02100122720003128, -0.017675479874014854, -0.03293946385383606, 0.024976221844553947, 0.03055446594953537, 0.005710743833333254, 0.006065180990844965, 0.018311480060219765, -0.009831489063799381, -0.0016272638458758593, -0.0016719825798645616, -0.019026979804039, -0.017662230879068375, 0.05005844309926033, 0.0745709165930748, 0.017887480556964874, -0.005624618846923113, 0.0013374204281717539, -0.010149489156901836, -0.031031465157866478, 0.008075865916907787, -0.011050487868487835, -0.00585318123921752, -0.0047004325315356255, -0.023280223831534386, 0.023107973858714104, -0.04269145429134369, 0.008691990748047829, 0.02143847569823265, 0.01258086133748293, 0.010056738741695881, 0.011368487030267715, 0.0489189475774765, 0.050826944410800934, -0.050111446529626846, 0.03190596401691437, 0.031534966081380844, 0.037391457706689835, 0.0036503709852695465, -0.0064659928902983665, 0.03362846374511719, 0.021928725764155388, -0.003228027606382966, 0.002934871707111597, 0.024618472903966904, 0.03487396240234375, -0.05633893609046936, -0.007327241823077202, 0.018457230180501938, -0.016615482047200203, -0.027639469131827354, 0.039511457085609436, 0.040756955742836, -0.023452473804354668, -0.031296465545892715, 0.018112730234861374, -0.027665968984365463, 0.014998983591794968, -0.007598866708576679, -0.03222396597266197, 0.0041803703643381596, -0.024220973253250122, -0.038027457892894745, -0.025930222123861313, 0.01840423047542572, 0.03095196560025215, -0.0005829993751831353, 0.011765986680984497, 0.013673985376954079, -0.028063468635082245, 0.01778148114681244, 0.00962611474096775, -0.0428769513964653, 0.007188117131590843, -0.0015278889331966639, -0.018563229590654373, -0.011898486874997616, 0.009526739828288555, 0.028460968285799026, -0.077909916639328, 0.05506693944334984, -0.013342735357582569, 0.0025290909688919783, 0.0044387453235685825, 0.02622172050178051, 0.03463546186685562, 0.005803493782877922, 0.01621798239648342, 0.0449969507753849, 0.032382965087890625, 0.005634556524455547, -0.0030441840644925833, 0.006724367383867502, 0.04830944538116455, 0.005283431615680456, -0.00216637272387743, 0.004279745277017355, -0.039140455424785614, 0.018311480060219765, -0.04391045123338699, 0.03858395665884018, -0.0047169947065413, -0.06317593157291412, -0.038901958614587784, 0.02163722552359104, -0.0026152159553021193, -0.02904396876692772, -0.03723245859146118, -0.03354896232485771, 0.009573114104568958, -0.03744445741176605, 0.04502344876527786, 0.030660465359687805, 0.0030889029148966074, 0.007817490957677364, 0.03399946168065071, -0.0011684830533340573, 0.04979344457387924, 0.03317796438932419, -0.03876945748925209, -0.04730244725942612, 0.061638932675123215, -0.023028474301099777, -0.025068972259759903, 0.008638990111649036, -0.03447646275162697, 0.04989944398403168, -0.03505946323275566, 0.03945845738053322, 0.022617725655436516, -0.025704972445964813, 0.03134946525096893, 0.027374470606446266, -0.026764970272779465, -0.013276485726237297, -0.027241969481110573, 0.016814231872558594, -0.004256557673215866, -0.02859346941113472, -0.017291231080889702, -0.02253822609782219, -0.01733098179101944, -0.03709995746612549, -0.029335467144846916, 0.03643745929002762, -0.032382965087890625, -0.018523478880524635, 0.02208772487938404, -0.030474966391921043, 9.921961463987827e-05, -0.014707483351230621, 0.020312227308750153, 0.06842292100191116, -0.005290056578814983, 0.026168720796704292, -0.01865598000586033, -0.03755045682191849, 0.02640722133219242, 0.0005291713168844581, 0.028672968968749046, 0.043459951877593994, -0.013872734270989895, -0.029573967680335045, 0.012991610914468765, -0.0029928404837846756, -0.01584698259830475, 0.02125297673046589, -0.016297481954097748, 0.04232045263051987, 0.004296307917684317, -0.0368349589407444, 0.027612969279289246, 0.02101447619497776, 0.0030872465576976538, 0.005485494155436754, -0.00764524145051837, 0.02400897443294525, 0.004952182061970234, -0.002038841601461172, -0.004895869642496109, -0.01309098582714796, -0.018894478678703308, 0.025439972057938576, -0.03166746348142624, -0.021517977118492126, -0.006651492789387703, -0.034317463636398315, 0.015873482450842857, -0.022418975830078125, -0.026804720982909203, -0.04025345668196678, -0.008314365521073341, 0.0303424671292305, 0.02750696986913681, -0.003259496297687292, -0.03972345590591431, -0.0274804700165987, 0.031958963721990585, 0.0062606181018054485, -0.028328469023108482, 0.012030987069010735, -0.0092087397351861, 0.0446789525449276, -0.005399369169026613, 0.01419073436409235, -0.02706971950829029, 0.01363423466682434, -0.020444726571440697, 0.03447646275162697, -0.044758450239896774, 0.001059998874552548, -0.0024893409572541714, 0.01996772736310959, -0.008055991493165493, -0.004634182434529066, -0.0162312313914299, 0.0019974352326244116, 0.008360740728676319, 0.016204731538891792, 0.006969492416828871, 0.03741795942187309, -0.05617993697524071, -0.0027576531283557415, -0.015952982008457184, 0.0303424671292305, 0.03937895596027374, 0.02840796858072281, 0.017251480370759964, 0.009619489312171936, 0.03460896015167236, 0.03235646337270737, -0.0017506543081253767, 0.004783244803547859, 0.016933482140302658, -0.010255488567054272, -0.02121322602033615, -0.015780732035636902, 0.009917614050209522, 0.0022425600327551365, 0.01817898079752922, -0.029838966205716133, 0.048865947872400284, 0.016138482838869095, 0.013422234915196896, -0.031508464366197586, -0.02904396876692772, -0.014879733324050903, -0.022564725950360298, 0.014468983747065067, -0.02379697374999523, -0.0047368695959448814, -0.037815459072589874, -0.00867211539298296, 0.03341646492481232, 0.011640111915767193, 0.04356595128774643, 0.030395466834306717, 0.02033872716128826, -0.017807980999350548, 0.029202967882156372, 0.027003470808267593, 0.015939733013510704, -0.006250680424273014, -0.020921727642416954, 0.0013755140826106071, -0.014071484096348286, 0.033866964280605316, -0.009844738990068436, 0.022445475682616234, -0.0099639892578125, 0.010116363875567913, 0.0005867258878424764, 0.006181118078529835, -0.023531973361968994, -0.02465822361409664, 0.035191960632801056, 0.05973093584179878, 0.02059047669172287, 0.029626967385411263, -0.00046416354598477483, 0.02904396876692772, -0.027824969962239265, -0.02146497555077076, -0.004458620212972164, 0.004302932880818844, 0.005541806574910879, -0.01050061360001564, 0.04250595346093178, -0.011626861989498138, 0.0066084302961826324, 0.03527146205306053, 0.01603248156607151, -0.019331729039549828, 0.014230484142899513, -0.0359339602291584, -0.028672968968749046, -0.026314470916986465, -0.011454612016677856, 0.004541432484984398, 0.030607465654611588, -0.013620984740555286, -0.018761979416012764, -0.028301969170570374, 0.03945845738053322, 0.06174493208527565, -0.003560933517292142, 0.018298229202628136, 0.021584225818514824, 0.04295645281672478, 0.011547362431883812, 0.03399946168065071, -0.010056738741695881, 0.047540947794914246, 0.03492696210741997, 0.0018649353878572583, 0.08691990375518799, 0.039988454431295395, -0.031057965010404587, 0.020047228783369064, -0.03572196140885353, 0.016734732314944267, -0.013846234418451786, -0.04629544913768768, 0.03145546466112137, 0.03230346366763115, 0.05782293528318405, 0.051038943231105804, 0.037364959716796875, -0.0201532281935215, 0.007121867034584284, -0.002444622339680791, 0.00963273923844099, 0.001416092156432569, -0.0036768708378076553, 0.016774481162428856, -0.011646737344563007, -0.01042111311107874, -0.010811988264322281, -0.0026301220059394836, 0.019199229776859283, 0.058882936835289, -0.024538973346352577, 0.004743494559079409, 0.011494362726807594, -0.00596580607816577, -0.01710573025047779, 0.007784366607666016, -0.0006873430102132261, 0.027851469814777374, -0.05358294025063515, 0.005859806202352047, 0.05008494481444359, -0.023213975131511688, -0.0463484488427639, 0.010480738244950771, -0.02537372149527073, -0.019159479066729546, -0.03121696598827839, 0.00802286621183157, 0.031958963721990585, 0.009188865311443806, -0.020113477483391762, 0.02553272247314453, -0.0016380294691771269, -0.011494362726807594, -0.027612969279289246, -0.022485224530100822, -0.020762726664543152, 0.004534807521849871, 0.010546988807618618, -0.011587112210690975, -0.02683122083544731, -0.021703476086258888, -0.012163486331701279, 0.01713223196566105, 0.01298498548567295, 0.031746964901685715, -0.02623497135937214, -0.05474894121289253, -0.011295612901449203, -0.015436233021318913, 0.021146977320313454, -0.030633965507149696, 0.006525618024170399, -0.03100496530532837, -0.03699395805597305, 0.023902973160147667, -0.031958963721990585, -0.010315113700926304, -0.00942736491560936, -0.010970988310873508, -0.03733845800161362, 0.03937895596027374, -0.023094724863767624, -0.046480949968099594, -0.01798023097217083, 0.007406741846352816, 0.01779473014175892, 0.017052730545401573, 0.0027477156836539507, -0.06243393197655678, 0.003600683528929949, 0.013150610961019993, 0.015754232183098793, -0.03924645856022835, 0.049740444868803024, -0.013057860545814037, -0.02080247737467289, 0.014230484142899513, -0.041286952793598175, 0.0023204036988317966, 0.0027344657573848963, 0.012806111015379429, -0.024114973843097687, 0.009188865311443806, -0.03633145987987518, -0.020961476489901543, -0.0005113666411489248, 0.009679114446043968, 0.011626861989498138, 0.023955972865223885, 0.003617245936766267, 0.027559969574213028, -0.02039172686636448, 0.018894478678703308, 0.0014856546185910702, 0.0012314205523580313, 0.02534722164273262, -0.018510229885578156, 0.01323673501610756, -0.017874229699373245, 0.04828294739127159, 0.05106544494628906, -0.009142490103840828, -0.03964395448565483, -0.04889244586229324, -0.0020620289724320173, 0.007751241326332092, 0.030395466834306717, 0.00661505525931716, 0.03073996677994728, 0.00589624373242259, 0.013084360398352146, -0.03182646632194519, -0.008367366157472134, -0.008082491345703602, -0.04073045402765274, 0.00704236701130867, 0.03097846545279026, -0.00764524145051837, 0.0333634614944458, 0.03492696210741997, 0.004392370115965605, 0.006409680470824242, 0.009261739440262318, 0.029997967183589935, 0.04833594709634781, -0.000640968035440892, -0.029944967478513718, -0.0010268738260492682, -0.03508596122264862, 0.0008165303734131157, -0.015648232772946358, 0.016191482543945312, 0.0010136238997802138, -0.032568465918302536, -0.0320119634270668, 0.012998235411942005, 0.002502590883523226, 0.043247953057289124, -0.005737243685871363, 0.028858467936515808, 0.04327445104718208, -0.009221989661455154, -0.03985595703125, -0.020404977723956108, 0.0003295934002380818, -0.025267722085118294, -0.03720596060156822, 0.03307196497917175, -0.005747181363403797, 0.028964467346668243, 0.027665968984365463, 0.0015527326613664627, -0.003772933268919587, 0.023213975131511688, -0.013402360491454601, 0.011368487030267715, 0.02689746953547001, -0.022789975628256798, 0.007598866708576679, 0.005810118746012449, 0.01971597783267498, 0.006267243064939976, -0.007857241667807102, 0.008234865963459015, -0.018563229590654373, 0.007837366312742233, -0.020457977429032326, -0.02904396876692772, -0.04136645421385765, -0.0018102792091667652, 0.008864239789545536, 0.0038458083290606737, 9.052431414602324e-05, 0.013382485136389732, -0.03362846374511719, 0.011428112164139748, 0.00044511668966151774, 0.020709726959466934, -0.046454448252916336, 0.011653361842036247, -0.0372854582965374, 0.007406741846352816, -0.016151731833815575, -0.0005229603848420084, -0.012799485586583614, 0.01996772736310959, 0.006422930397093296, -0.02555922232568264, -0.009447239339351654, -0.00974536407738924, -0.006406367756426334, -0.00737361703068018, -0.01158048678189516, 0.02277672477066517, -0.019106479361653328, -0.003700058441609144, 0.010553613305091858, -0.02403547428548336, 0.01734423078596592, -0.050826944410800934, 0.0031915903091430664, 0.029785966500639915, 0.05692193657159805, 0.006217555608600378, 0.0023469035513699055, 0.012514610774815083, 0.05649793893098831, 0.03272746503353119, -0.014707483351230621, -0.03696746006608009, -0.012945235706865788, -0.013832984492182732, 0.022458724677562714, -0.006161243189126253, 0.037815459072589874, 0.029759466648101807, 0.013223485089838505, -0.021544476971030235, -0.0026996845845133066, 0.011852111667394638, 0.01904022879898548, 0.01539648324251175, -0.013726985082030296, 0.03969695791602135, 0.01951722800731659, -0.018033230677247047, 0.0082282405346632, 0.03675546124577522, 0.027427470311522484, 0.0063169305212795734, -0.039961956441402435, 0.00887086521834135, 0.026751721277832985, 0.041286952793598175, -0.011633487418293953, -0.0010136238997802138, -0.013408984988927841, 0.02513522282242775, 0.018695728853344917, -0.020457977429032326, 0.009460489265620708, -0.0025141846854239702, 0.032409463077783585, -0.04767344892024994, -0.0017175293760374188, -0.018722228705883026, 0.00540930638089776, -0.014667733572423458, -0.02859346941113472, -0.010156113654375076, -0.012044236995279789, -0.02579772099852562, -0.02880546823143959, -0.01713223196566105, 0.013143985532224178, 0.025267722085118294, 0.03829245641827583, -0.00015972442633938044, 0.02468472346663475, -0.04327445104718208, -0.024366723373532295, 0.005184056703001261, -0.007446491625159979, 0.035165462642908096, -0.0006637414335273206, 0.0184174794703722, -0.003885558107867837, 0.04327445104718208, 0.0049720569513738155, 0.01974247768521309, 0.010129613801836967, 0.008069241419434547, 0.027692468836903572, -0.00357418367639184, 0.026552971452474594, -0.03073996677994728, 0.019146228209137917, 0.02277672477066517, -0.0009515145793557167, 0.009029865264892578, -0.0377359576523304, -0.03903445601463318, -0.01884147897362709, 0.02445947378873825, 0.03776245936751366, -0.022206975147128105, 0.024552222341299057, 0.04550044983625412, 0.01862948015332222, -0.027135970070958138, -0.03121696598827839, 0.02251172438263893, -0.019795477390289307, 0.005356306675821543, 0.017874229699373245, -0.017900729551911354, 0.01816572993993759, -0.0347149632871151, -0.0029613717924803495, -0.0162312313914299, 0.006783992517739534, 0.003242933889850974, 0.022432224825024605, -0.04009445756673813, -0.0292824674397707, 0.019782228395342827, -0.015210983343422413, 0.015727732330560684, -0.01580723188817501, -0.026499969884753227, -0.030050966888666153, 0.007201367057859898, 0.0019957791082561016, 0.020683227106928825, -0.012189986184239388, -0.032197464257478714, 0.025612222030758858, 0.04621594771742821, 0.008970240131020546, -0.04722294956445694, -0.02557247132062912, -0.012395361438393593, 0.016628731042146683, -0.021292727440595627, 0.0018549979431554675, -0.026764970272779465, 0.02840796858072281, 0.0008111475617624819, 0.03892845660448074, -0.0037133083678781986, -0.012428486719727516, 0.015104983001947403, 0.014044984243810177, 0.010175989009439945, -0.0329129621386528, 0.01756948046386242, 0.0009780145483091474, 0.0022972163278609514, 0.03158796578645706, -0.00033269886625930667, 0.005197306629270315, -0.0017109044129028916, 0.012878986075520515, 0.00022649193124379963, 0.004362557549029589, -0.07308691740036011, 0.020113477483391762, -0.03397296369075775, -0.006936367135494947, 0.003314152592793107, -0.0044089327566325665, -0.014111234806478024, 0.03813345730304718, -0.022856224328279495, -0.02294897474348545, 0.044493451714515686, 0.02600972168147564, 0.018337979912757874, 0.007744616363197565, 0.008347490802407265, -0.0162312313914299, -0.03898145630955696, -0.0279309693723917, -0.022273225709795952, 0.02235272526741028, 0.02228647470474243, 0.015886733308434486, 0.024406472221016884, 0.003617245936766267, 0.02077597752213478, 0.010222363285720348, 0.029176468029618263, 0.006442805286496878, -0.017887480556964874, -0.016641981899738312, -0.0012090611271560192, -0.02251172438263893, 0.00437912018969655, 0.007790991570800543, -0.0034151836298406124, -0.0006128118257038295, 0.009341239929199219, 0.04637495055794716, 0.0005026713479310274, -0.004806432407349348, 0.020961476489901543, 0.007618741597980261, 0.0016040763584896922, -0.02967996709048748, -0.012315861880779266, -0.012163486331701279, -0.01160036213696003, -0.011587112210690975, 0.004955494310706854, 0.000581757165491581, -0.022392475977540016, 0.0188679788261652, -0.018271729350090027, 0.02647347003221512, 0.0038557457737624645, 0.01994122751057148, -0.0186427291482687, 0.005670993588864803, -0.028646469116210938, -0.0043228077702224255, -0.02126622572541237, -0.024870222434401512, 0.0006993507849983871, 0.017582731321454048, 0.008725115098059177, 0.01474723406136036, -0.017277980223298073, -0.0022524974774569273, -0.024750972166657448, -0.012196611613035202, 0.021345727145671844, 0.020418226718902588, 0.038954958319664, -0.048229947686195374, -0.039140455424785614, -0.016178231686353683, -0.0009838114492595196, -0.000925842730794102, 0.04335395246744156, 0.008877490647137165, -0.02362472377717495, -0.021994976326823235, 0.020073728635907173, 0.023266974836587906, -0.00037865975173190236, 0.02663247101008892, -0.0027460595592856407, 0.017383981496095657, -0.0042035579681396484, -0.008493240922689438, 0.0011129988124594092, 0.02705647051334381, 0.014733984135091305, 0.024101722985506058, 0.0029149968177080154, 0.012189986184239388, -0.0359339602291584, -0.02661922015249729, -0.040200456976890564, 0.00208852905780077, 0.017065981402993202, 0.03858395665884018, -0.01385948434472084, 0.02448597364127636, 0.013448734767735004, 0.03095196560025215, 0.016827480867505074, -0.011434737592935562, 0.02383672446012497, -0.0010475770104676485, -0.013726985082030296, -0.016973230987787247, 0.007413366809487343, 0.022869475185871124, -0.0037828709464520216, 0.023955972865223885, -0.024379972368478775, -0.024631723761558533, 0.034158460795879364, 0.03187946602702141, 0.014707483351230621, 0.006651492789387703, -0.03397296369075775, -0.012262861244380474, 0.03964395448565483, 0.006856867577880621, -0.045182451605796814, -0.005723993759602308, -0.029600467532873154, 0.004667307250201702, -8.001748938113451e-05, 0.02516172267496586, -0.0160059817135334, 0.021743226796388626, -0.027400970458984375, 0.028089968487620354, 0.015277232974767685, -0.004389057867228985, 0.07075492292642593, 0.008956990204751492, -0.0004422182682901621, -0.010831862688064575, 0.004773307126015425, -0.008824490010738373, -0.017079230397939682, 0.021411975845694542, -0.033893462270498276, 0.024817222729325294, -0.01801997981965542, 0.034555960446596146, -0.02098797634243965, -0.0179669801145792, -0.019106479361653328, 0.011500987224280834, 0.055755939334630966, 0.014468983747065067, -0.01837773062288761, -0.028884967789053917, 0.0015096701681613922, -0.029971467331051826, 0.016363732516765594, -0.039564456790685654, -0.01860298030078411, -0.018245229497551918, -0.019450979307293892, 0.021319227293133736, -0.01968947798013687, -0.0030557778663933277, 0.030686967074871063, 0.003733183490112424, 0.02059047669172287, -0.013561359606683254, -0.009645989164710045, -0.04441395029425621, -0.030024467036128044, 0.00810899119824171, 0.003888870822265744, 0.002490997314453125, -0.006412992719560862, 0.028116468340158463, -0.037391457706689835, 0.002752684522420168, 0.0201532281935215, 0.026089221239089966, -0.019013728946447372, -0.027400970458984375, 0.0002500934642739594, 0.01081861276179552, 0.01820548065006733, -0.019132979214191437, -0.0031203716062009335, -0.011527487076818943, -0.03190596401691437, 0.021570976823568344, 0.012859110720455647, -0.020934976637363434, 0.0017224980983883142, -0.003617245936766267, 0.002310466254130006, -0.06105593219399452, -0.026605971157550812, 0.011679861694574356, 0.01624448224902153, -0.014574984088540077, 0.003700058441609144, -0.01709248125553131, -0.046719446778297424, 0.0011933267815038562, -0.004100870341062546, 0.012845860794186592, -0.01906672865152359, -0.01526398304849863, 0.0044917450286448, -0.009447239339351654, -0.007903615944087505, 0.027241969481110573, -0.012037611566483974, 0.01559523306787014, -0.01343548484146595, 0.034317463636398315, 0.04266495257616043, 0.03964395448565483, 0.001422717235982418, -0.031031465157866478, 0.0028835281264036894, 0.019835228100419044, 0.042134951800107956, -0.019384728744626045, -0.010553613305091858, -0.052734941244125366, -0.0019891541451215744, -0.03235646337270737, 0.0010392956901341677, 0.0049720569513738155, 0.0001712146622594446, 0.012812735512852669, -0.033257462084293365, -0.020471228286623955, 0.02337297424674034, -0.045844949781894684, 0.003921995870769024, 0.03625195845961571, -0.02296222560107708, -0.002792434534057975, -0.019437728449702263, -0.012792861089110374, 0.006459367927163839, -0.0005788587150163949, 0.003226371482014656, 0.004100870341062546, 0.01579398289322853, -0.0038159957621246576, 0.007181492168456316, -0.0022657474037259817, -0.0005979056004434824, -0.03397296369075775, -0.0030193403363227844, 0.004912432283163071, 0.020921727642416954, 0.010474113747477531, -0.017026230692863464, -0.004793182015419006, 0.03338996320962906, 0.0021713413298130035, -0.017463481053709984, 0.0017986855236813426, 0.019371477887034416, -0.0016164982225745916, 0.008122241124510765, 0.03248896449804306, 0.024803971871733665, -0.024379972368478775, 0.04963444545865059, 0.026049470528960228, -0.0008687021909281611, 0.033681463450193405, 0.004892556928098202, 0.031110966578125954, 0.004080995451658964, 0.03357546404004097, -0.00023187474289443344, -0.008698615245521069, -0.01580723188817501, 0.05286744236946106, -0.0181922297924757, 0.0014591546496376395, 0.01686723157763481, 0.032382965087890625, -0.011659987270832062, -0.0026152159553021193, 0.017622480168938637, 0.013448734767735004, -0.01733098179101944, 0.0006699523655697703, 0.016999730840325356, -0.022153975442051888, -0.0008943740394897759, 0.023505473509430885, 0.00030040202545933425, -0.002295559970661998, -0.050773944705724716, 0.022630974650382996, -0.022842975333333015, 0.014786983840167522, -0.04393695294857025, -0.008367366157472134, 0.015091733075678349, 0.020100228488445282, -0.04065095633268356, -0.02146497555077076, 0.008884115144610405, 0.036940958350896835, -0.026102472096681595, 0.005654431413859129, -0.009718864224851131, 0.03985595703125, 0.017834480851888657, -0.0030425279401242733, -0.013137360103428364, 0.00013995297194924206, -0.010778862982988358, 0.0023286850191652775, -0.009606239385902882, -0.07022492587566376, -0.005962493363767862, -0.0052635567262768745, 0.016085483133792877, 0.02424747310578823, 0.023902973160147667, 0.031322967261075974, -0.0184174794703722, -0.0059691183269023895, 0.003567558480426669, -0.0320119634270668, 0.011659987270832062, 0.022008225321769714, -0.0039021207485347986, -0.03720596060156822, 0.0047666821628808975, 0.0006488352082669735, -0.028884967789053917, -0.017622480168938637, 0.01798023097217083, -0.028672968968749046, 0.001740716863423586, -0.008089115843176842, 0.014058234170079231, 0.012620611116290092, -0.0021017789840698242, 0.023518724367022514, 0.02320072427392006, -0.021358976140618324, -0.013938984833657742, -0.019450979307293892, 0.017807980999350548, 0.04351295158267021, 0.0029414966702461243, -0.028063468635082245, -0.010480738244950771, -0.01844397932291031, -0.00165376381482929, -0.05220494419336319, 0.0059691183269023895, -0.011746112257242203, 0.008625740185379982, 0.01756948046386242, -0.0111697381362319, 0.0036205584183335304, 0.030156966298818588, -0.0058167437091469765, 0.02946796827018261, -0.04597745090723038, -0.008380616083741188, -0.028434468433260918, -0.015661483630537987, -0.007274242118000984, -0.002388309920206666, -0.019331729039549828, 0.0020785913802683353, -0.004160495474934578, 0.008413740433752537, -0.01625773124396801, 0.025267722085118294, 0.032568465918302536, 4.039692794322036e-05, 0.030395466834306717, -0.026380721479654312, 0.010520488023757935, -0.013938984833657742, 0.033283963799476624, -0.005111181642860174, -0.029070468619465828, -0.009155740030109882, 0.033045463263988495, -0.011282362975180149, 0.018973978236317635, 0.008797990158200264, -0.00799636635929346, -0.012759735807776451, -0.027215469628572464, 0.0017539667896926403, 0.0017125606536865234, 0.011004112660884857, 0.004975369665771723, 0.001534513896331191, 0.018708979710936546, -0.007280867081135511, 0.008016240783035755, -0.019437728449702263, -0.01179248746484518, -0.008956990204751492, 0.00019833572150673717, -0.022789975628256798, 0.02814296819269657, -0.022418975830078125, -0.0011254206765443087, 0.03444996103644371, -0.006184430792927742, 0.011090237647294998, -0.002861996879801154, -0.006648180074989796, 0.03678195923566818, 0.021756475791335106, 0.006416305433958769, -0.004723619669675827, 0.05334443971514702, -0.0005685071810148656, 0.007479616906493902, 0.008751614950597286, -0.01737073063850403, 0.025612222030758858, -0.015860233455896378, -0.016602231189608574, 0.004074370488524437, 0.023492224514484406, -0.02684446983039379, -0.018496979027986526, -0.011004112660884857, 0.009115990251302719, -0.03360196202993393, -0.011964736506342888, -0.008764865808188915, -0.0072278669103980064, 0.021994976326823235, 0.025612222030758858, -0.004365870263427496, -0.009255114942789078, 0.0021862476132810116, -0.035218462347984314, -0.012229736894369125, -0.041445955634117126, 0.015436233021318913, -0.02012672834098339, 0.027586469426751137, -0.018364479765295982, 0.00254896585829556, 0.03505946323275566, 0.018086230382323265, 0.022657474502921104, 0.012454986572265625, -0.002919965423643589, -0.0011726237135007977, -0.003786183428019285, 0.007930116727948189, -0.0007937569171190262, -0.039776455610990524, 0.043830953538417816, -0.005733930971473455, 0.009798363782465458, 0.006956242490559816, 0.00029853874002583325, -0.006422930397093296, 0.029573967680335045, 0.006532242987304926, -0.026367470622062683, -0.026685470715165138, -0.008453491143882275, -0.04200245440006256, -0.028646469116210938, -0.02623497135937214, -0.01904022879898548, 0.003148527815937996, -0.05591493844985962, 0.029997967183589935, -0.01256098598241806, 0.0067276800982654095, 0.004326120018959045, 0.014508734457194805, 0.03839845955371857, 0.025095472112298012, -0.015078483149409294, 0.02100122720003128, -0.0016579044749960303, 0.014044984243810177, 0.0008687021909281611, 0.0032379652839154005, -0.018748728558421135, 0.0030806215945631266, -0.006923117209225893, -0.04314195364713669, 0.0028851842507719994, -0.010434363968670368, 0.013534859754145145, -0.04070395603775978, 0.01301148533821106, 0.010222363285720348, 0.010361488908529282, -0.019861727952957153, 0.00737361703068018, -0.0007999678491614759, 0.030395466834306717, 0.018364479765295982, 0.014508734457194805, -0.04027995467185974, 0.01224298682063818, -0.01839097961783409, -0.009771863929927349, -0.028725968673825264, 0.021332476288080215, 0.012077361345291138, 0.003391996258869767, -0.000941577076446265, 0.03145546466112137, -0.009016615338623524, -0.0031667465809732676, -0.014150984585285187, 0.014230484142899513], [-0.014305716380476952, 0.01297098957002163, 0.008966809138655663, -0.0063151041977107525, -0.03703157231211662, -0.0007436843006871641, 0.045267120003700256, 0.059352751821279526, -0.007518488448113203, -0.04901571571826935, 0.002887766808271408, -0.00945668201893568, 0.05344587564468384, -0.048305753618478775, -0.02105744741857052, -0.017891021445393562, 0.02811446040868759, -0.013425365090370178, -0.046232670545578, 0.06804267317056656, -0.015590746887028217, 0.00016295826935674995, -0.0072416034527122974, -0.008100656792521477, -0.0022275031078606844, -0.002234602579846978, -0.010116945952177048, -0.006002721376717091, 0.07156408578157425, -0.06383970379829407, 0.021866802126169205, -0.035270869731903076, 0.05355946719646454, -0.04685743525624275, 0.01980791613459587, -0.052338335663080215, -0.03828110545873642, -0.008810617960989475, 0.009421184659004211, 0.01982211507856846, 0.02347131446003914, 0.05086161568760872, 0.02626856230199337, 0.03918985277414322, 0.01634330488741398, 0.028142860159277916, 0.008377541787922382, -0.052111148834228516, 0.012048040516674519, 0.0034237876534461975, 0.02773108147084713, 0.008413039147853851, -0.040723372250795364, -0.04441516846418381, -0.03092590719461441, -0.004032579250633717, 0.020248090848326683, 0.014390911906957626, 0.020418481901288033, -0.018160805106163025, 0.029562780633568764, -0.038082316517829895, -0.03564004972577095, -0.002319798106327653, -0.008618928492069244, 0.02526041679084301, -0.004273965954780579, 0.07792533189058304, -0.036633994430303574, 0.005590944085270166, -0.026296960189938545, -0.0025895831640809774, 0.020617270842194557, 0.0032658211421221495, -0.01240302063524723, -0.02930719591677189, -0.022661959752440453, 0.026964323595166206, 0.03206184506416321, 0.006045319139957428, -0.02700692228972912, 0.01706746593117714, -0.008760920725762844, -0.01605932042002678, -0.038195908069610596, -0.01813240721821785, -0.06270376592874527, -0.048958919942379, -0.011913147754967213, 0.06298775225877762, -0.019992506131529808, 0.00012934603728353977, 0.02807186357676983, 0.0495268888771534, 0.01594572700560093, -0.0116433622315526, -0.01400043349713087, -0.02178160659968853, -0.015619144774973392, 0.015150570310652256, -0.03299899399280548, -0.021866802126169205, 0.001876072259619832, 0.0008581654983572662, 0.03220383822917938, -0.004298814572393894, -0.016471099108457565, 0.022519966587424278, -0.002887766808271408, -0.009101701900362968, -0.09984893351793289, -0.009925256483256817, -0.009570276364684105, 0.008405939675867558, -0.03220383822917938, -0.005775533616542816, 0.022321177646517754, -0.02229277975857258, -0.005402804352343082, 0.014994379132986069, -0.0013391642132773995, -0.0478229820728302, 0.021597018465399742, -0.0023428716231137514, -0.007809572387486696, -0.04381880164146423, 0.02503322996199131, 0.01302068680524826, -0.036179620772600174, -0.03725875914096832, 0.06401009857654572, -0.04299524798989296, 0.024891236796975136, 0.03788352757692337, -0.012211331166327, -0.0034149130806326866, -0.01728045381605625, -0.010507424362003803, -0.043705206364393234, -0.005253712181001902, -0.041461728513240814, 0.01316267903894186, 0.042285285890102386, -0.036406807601451874, -0.007291300687938929, 0.012892894446849823, 0.012388821691274643, 0.022264381870627403, 0.020844459533691406, -0.04501153528690338, -0.01953813061118126, 0.03092590719461441, 0.010826907120645046, -0.022022994235157967, -0.05372985824942589, 0.03160747140645981, 0.003929635044187307, 0.01655629277229309, 0.001141262473538518, -0.012758001685142517, -0.06554361432790756, 0.02233537659049034, 0.021639615297317505, 0.022321177646517754, 0.035554852336645126, 0.0247634444385767, 0.004856134299188852, 0.010585520416498184, -0.07548306882381439, -0.00991105753928423, -0.03251621872186661, -0.007901867851614952, -0.05370146036148071, -0.010053049772977829, -0.05145798251032829, -0.0044088587164878845, 0.0001953502360265702, 0.008959709666669369, -0.03541286289691925, -0.0074261934496462345, -0.029988758265972137, -0.009172697551548481, -0.01756443828344345, -0.00411067483946681, 0.005196915473788977, -0.005803932435810566, -0.045096732676029205, -0.025899382308125496, 0.005239513237029314, 0.0028398444410413504, -0.02739030122756958, 0.05265071615576744, 0.019850512966513634, 0.06543001532554626, -0.02520362101495266, 0.006212159991264343, -0.036066025495529175, -0.014483206905424595, 0.02296014316380024, 0.019069556146860123, 0.002614431781694293, -0.04256926849484444, 0.004114224575459957, 0.071848064661026, -0.09604354202747345, 0.00791606679558754, -0.0013941861689090729, 0.000721941702067852, -0.0006269844016060233, 0.008384641259908676, 0.029619578272104263, -0.04398919269442558, -0.021483423188328743, 0.011849251575767994, -0.012083538807928562, 0.047397006303071976, -0.0361512191593647, 0.07167767733335495, 0.011778254993259907, 0.04915770888328552, -0.031408678740262985, 0.03450411185622215, -0.027716882526874542, -0.023755298927426338, 0.011543967761099339, 0.048078566789627075, 0.03938864544034004, 0.0020695365965366364, 0.048419348895549774, -0.010095647536218166, -0.01705326698720455, 0.020077701658010483, 0.007113810628652573, -0.009719368070363998, -0.007972863502800465, 0.036066025495529175, -0.042796455323696136, -0.05091841146349907, 0.012154534459114075, 0.0002928589528892189, 0.03947383910417557, 0.0085834302008152, -0.0015832133358344436, 0.006971818394958973, 0.031181493774056435, -0.01790522038936615, -0.009854260832071304, -0.007092511747032404, -0.01238172221928835, -0.02435166761279106, -0.004401759244501591, 0.025246217846870422, 0.048305753618478775, -0.09110221266746521, -0.028611432760953903, 0.013766146264970303, -0.006861774250864983, 0.017323052510619164, 0.03086910955607891, -0.017763227224349976, 0.05821681395173073, -0.021937798708677292, 0.010408029891550541, 0.02233537659049034, -0.05074802041053772, -0.013176878914237022, 0.050946809351444244, -0.009669670835137367, -0.020020904019474983, -0.014234720729291439, -0.09030705690383911, -0.015860531479120255, -0.010919202119112015, 0.012282327748835087, -0.04432997480034828, -0.002987161511555314, -0.027347702533006668, -0.006907921750098467, -0.0022221782710403204, 0.045891888439655304, -0.04018380120396614, -0.008434338495135307, -0.01130968052893877, -0.038479894399642944, 0.019168950617313385, 0.010088548064231873, 0.029449187219142914, 0.018047211691737175, 0.0016746207838878036, 0.041234541684389114, 0.08082197606563568, -0.03430532291531563, -0.029988758265972137, 0.02115684188902378, 0.02649574913084507, -0.017110062763094902, 0.002919715130701661, -0.06514603644609451, 0.005246612709015608, -0.00526436185464263, 0.029846765100955963, 0.00788766797631979, 0.027234109118580818, -0.03120989166200161, -0.06537321954965591, -0.02896641381084919, 0.01807560957968235, 0.017919419333338737, -0.004082276485860348, -0.00043041392927989364, -0.04580669105052948, 0.0024884138256311417, -0.07133689522743225, -0.06196540594100952, 0.008263947442173958, -0.012140335515141487, -0.021014848724007607, 0.0029179402627050877, 0.00639674998819828, 0.0038941367529332638, 0.038593485951423645, 0.03598083183169365, 0.03995661064982414, 0.0036562997847795486, 0.04458555951714516, 0.004543751012533903, 0.0019009208772331476, 0.018047211691737175, -0.030187547206878662, 0.02531721442937851, -0.0011483621783554554, -0.004366260953247547, 0.05100360885262489, 0.0007561086094938219, 0.00931468978524208, -0.030301140621304512, 0.03686118125915527, -0.0035089829470962286, -0.020915454253554344, 0.04333602637052536, -0.0015335161006078124, -0.046005479991436005, 0.01007434818893671, -0.02229277975857258, 0.005459601059556007, 0.04765259101986885, 0.06673634797334671, 0.034390516579151154, -0.047680988907814026, 0.016755083575844765, 0.0010782534955069423, -0.021142642945051193, -0.014376712962985039, -0.03723036125302315, -0.02710631676018238, -0.022207584232091904, 0.045551106333732605, -0.007206105627119541, -0.022079791873693466, 0.022519966587424278, -0.03277180716395378, 0.019964106380939484, 0.0345609076321125, 0.04580669105052948, 0.03231742978096008, 0.04131973907351494, -0.02335772104561329, 0.017536040395498276, 0.02330092526972294, -0.003936734516173601, 0.03109629824757576, 0.01055002212524414, -0.019949907436966896, -0.033822547644376755, 0.007589484564960003, -0.043250832706689835, 0.08650166541337967, 0.03720196336507797, -0.009421184659004211, 0.01604512147605419, 0.030783914029598236, -0.04237047955393791, -0.0008634902187623084, -0.01245981827378273, 0.057620447129011154, 0.0045969984494149685, -0.029335593804717064, 0.014050130732357502, -0.028086062520742416, -0.0040467786602675915, -0.0016453348798677325, -0.052111148834228516, -0.005814581643790007, -0.019467134028673172, -0.05270751565694809, -0.058018025010824203, 0.005679688882082701, 0.014490306377410889, 0.02676553465425968, 0.008718322962522507, 0.0043982090428471565, -0.03390774503350258, -0.0040361289866268635, -0.007759875152260065, -0.0039012364577502012, 0.02210818976163864, -0.01655629277229309, -0.0002000093663809821, -0.014213422313332558, -0.010124045424163342, 0.007731476798653603, -0.050208453088998795, 0.06440767645835876, -0.002928589703515172, 0.017592836171388626, -0.014163724146783352, 0.03518567234277725, 0.02064567059278488, 0.0188139695674181, -0.024238072335720062, 0.030187547206878662, 0.019609127193689346, -0.026595143601298332, -0.019495531916618347, 0.007152858190238476, 0.05867118760943413, -0.010045950300991535, 0.005353107117116451, 0.024607252329587936, -0.05327548459172249, 0.021937798708677292, -0.016797680407762527, -0.027660084888339043, 0.015107972547411919, -0.05631411820650101, -0.026680339127779007, 0.023712702095508575, 0.013680950738489628, -0.02930719591677189, -0.04631786420941353, -0.016428500413894653, 0.017763227224349976, -0.01471039466559887, 0.0017225431511178613, -0.035668447613716125, 0.026254363358020782, -0.0007148421136662364, 0.0061766617000103, -0.009875559248030186, 0.014135326258838177, -0.01105409488081932, -0.04080856591463089, -0.08246908336877823, 0.015051175840198994, -0.025728991255164146, 0.010060149244964123, -0.031351882964372635, 0.015974124893546104, 0.020134497433900833, -0.03725875914096832, 0.00432366319000721, 0.026296960189938545, 0.04200129956007004, 0.047680988907814026, 0.011160588823258877, -0.013439564034342766, 0.006197960581630468, 0.004114224575459957, 0.031067898496985435, -0.022150786593556404, -0.016414301469922066, -0.01851578615605831, -0.019949907436966896, -0.019168950617313385, -0.014149525202810764, 0.04009860381484032, -0.005530597176402807, -0.04665864631533623, -0.011522669345140457, -0.0048951818607747555, -0.005502198822796345, 0.06525962799787521, -0.050946809351444244, 0.0010897903703153133, 0.0236843042075634, -0.03194824978709221, -0.0018778472440317273, 0.01740824617445469, -0.022704556584358215, -0.014071430079638958, -0.025629596784710884, 0.034390516579151154, 0.019296742975711823, -0.01672668382525444, -0.009172697551548481, 0.0241386778652668, -0.022150786593556404, -0.0239114910364151, 0.027830475941300392, 0.0032232236117124557, 0.01097599882632494, -0.023982487618923187, 0.02210818976163864, 0.05120239779353142, 0.006780128926038742, 0.04052457958459854, -0.016797680407762527, -0.013396966271102428, -0.012218430638313293, 0.019552329555153847, -0.042739659547805786, -0.009030705317854881, 0.0039012364577502012, -0.011139290407299995, -0.005775533616542816, -0.01649949699640274, -5.868272637599148e-05, 0.026481550186872482, -0.022193385288119316, -0.012608909979462624, -0.005864278879016638, -0.024735046550631523, -0.030783914029598236, -0.02100064978003502, 0.03240262717008591, 0.021526021882891655, -0.03723036125302315, -0.04191610589623451, -0.041348136961460114, -0.0008692586561664939, -0.0007987062563188374, -0.018061410635709763, -0.005225313827395439, 0.001211371156387031, 0.037968721240758896, -0.0032800203189253807, 0.015079574659466743, 0.027461295947432518, -0.019069556146860123, -0.03882067650556564, 0.011323880404233932, 0.02509002573788166, -0.04151852801442146, -0.02003510296344757, 0.003260496538132429, -0.01840219274163246, -0.004195870365947485, 0.005981422495096922, 0.013602855615317822, 0.04688583314418793, 0.027858875691890717, 0.0005267024389468133, 0.04367680847644806, -0.036037627607584, 0.026140768080949783, -0.05461021140217781, 0.009520579129457474, -0.009641272015869617, 0.03058512508869171, 0.016882875934243202, -0.02463565208017826, 0.009563176892697811, 0.008192951790988445, 0.006659435573965311, 0.030613524839282036, -0.000570631236769259, -0.007809572387486696, -0.01790522038936615, -0.04069497063755989, 0.017152661457657814, 0.029505984857678413, 0.02195199765264988, -0.008065158501267433, 0.05827360972762108, 0.007525587920099497, 0.027418699115514755, -0.042796455323696136, -0.06281735748052597, 0.024337466806173325, -0.01290709339082241, 0.010088548064231873, -0.009186897426843643, 0.01689707487821579, 0.01459680125117302, 0.005796832498162985, 0.0031770761124789715, 0.017862621694803238, -0.013389866799116135, -0.010060149244964123, 0.029704773798584938, 0.007088962011039257, -0.009811663068830967, 0.022434771060943604, 0.022988541051745415, 0.04438677057623863, 0.008299445733428001, 0.01268700510263443, -0.007646281272172928, -0.005935274995863438, 0.023116335272789, 0.001805963576771319, 0.028824422508478165, -0.01914055272936821, -0.03953063488006592, -0.01695387251675129, -0.017209457233548164, -0.035327665507793427, 0.013063284568488598, 0.018544184044003487, 0.0247066468000412, 0.00116433622315526, 0.018274400383234024, 0.034220125526189804, 0.006180211436003447, -0.026623543351888657, 0.019097954034805298, -0.009158498607575893, -0.06071587651968002, -0.006322203669697046, 0.07974283397197723, -0.01181375328451395, -0.015903130173683167, 0.00945668201893568, -0.005331808235496283, -0.0239682886749506, 0.059182360768318176, -0.01412112731486559, -0.04995286464691162, -0.01540615689009428, 0.0013223026180639863, 0.009059104137122631, 0.03941704332828522, 0.0007565523264929652, 0.004636046011000872, -0.038309503346681595, -0.003533831564709544, 0.010734612122178078, 0.02188100293278694, -0.005537696648389101, 0.010990198701620102, 0.02824225462973118, 0.011174787767231464, 0.0021458575502038, -0.02083025872707367, 0.036463603377342224, 0.01072041317820549, 0.007397795096039772, 0.05035044252872467, 0.014362514019012451, 0.005317608825862408, 0.005736486054956913, -0.012104837223887444, 0.014611000195145607, -0.017422446981072426, 0.013830042444169521, -0.010968899354338646, -0.002925039967522025, 0.029733171686530113, 0.05182716250419617, 0.0346745029091835, 0.007987062446773052, 0.02352811209857464, -0.017266254872083664, 0.018444789573550224, 0.0054454016499221325, 0.021298833191394806, 0.011125090532004833, -0.012332024984061718, -0.0074261934496462345, 0.01969432272017002, 0.02660934254527092, 0.0073055000975728035, 0.05168516933917999, -0.05364466458559036, -0.008015461266040802, 0.004792237654328346, -0.04731180891394615, 0.015505551360547543, -0.011920247226953506, -0.00621570972725749, 0.035611651837825775, -0.044102784246206284, 0.01655629277229309, -0.0036527500487864017, 0.013233675621449947, 0.0030794565100222826, 0.0066878339275717735, -0.038025517016649246, 0.02930719591677189, -0.012672806158661842, -0.016684086993336678, 0.038877472281455994, 0.05912556126713753, 0.004124874249100685, 0.005924625787883997, -0.03052832931280136, 0.013120081275701523, -0.017152661457657814, -0.04915770888328552, -0.0719616636633873, 0.022690357640385628, 0.010514524765312672, -0.023670103400945663, -0.0700305625796318, -0.004685743246227503, -0.029051609337329865, 0.021639615297317505, 0.001231782604008913, 0.069349005818367, -0.005168517120182514, 0.00523241376504302, 0.00472834100946784, -0.020574674010276794, 0.01554814912378788, -0.03680438548326492, 0.024067683145403862, -0.006457096431404352, -0.024380065500736237, 2.493183819751721e-05, -0.021412428468465805, -0.014099827967584133, 0.01993570849299431, -0.013815843500196934, -0.050719622522592545, 0.031124696135520935, -0.00011414843902457505, -0.038934268057346344, -0.04401759058237076, 0.008334944024682045, -0.029051609337329865, 0.04080856591463089, -0.0035586801823228598, -0.02273295633494854, -0.012814798392355442, 0.0475957952439785, 0.02626856230199337, -0.05759204551577568, -0.04007020592689514, -0.006748180370777845, -0.02841264382004738, 0.009392785839736462, -0.03316938504576683, -0.001267280662432313, 0.0018600982148200274, -0.013297571800649166, -0.04356321319937706, 0.03228903189301491, -0.025303015485405922, 0.005924625787883997, 0.0013728872872889042, 0.02121363952755928, 0.013893939554691315, 0.008547931909561157, 0.00810775626450777, 0.03322618082165718, -0.03944544121623039, 0.009896858595311642, -0.05838720500469208, -0.0035515804775059223, 0.016187114641070366, 0.007958664558827877, -0.008150354027748108, -0.01383714284747839, 0.022661959752440453, 0.04069497063755989, -0.006418048404157162, -0.046999428421258926, -0.020958052948117256, 0.004600548185408115, 0.0035924033727496862, 0.020901255309581757, -0.005931725259870291, 0.007901867851614952, 0.011515569873154163, 0.060318298637866974, 0.020816059783101082, -0.024735046550631523, -0.01150847040116787, 0.023215729743242264, -0.0374007523059845, 0.01588892936706543, -0.0003929191152565181, 0.013276273384690285, 0.011856351047754288, -0.0022008796222507954, -0.024720845744013786, -0.008952610194683075, 0.029619578272104263, 0.006496144458651543, 0.0009903957834467292, -0.020730864256620407, 0.017252055928111076, -0.009080402553081512, -0.0236275065690279, 0.022306978702545166, 0.008370441384613514, -0.0001204715299536474, -0.0362648144364357, -0.0242522731423378, -0.025516003370285034, -0.002243477152660489, 0.03674758970737457, 0.0048277354799211025, 0.03248782083392143, 0.08848955482244492, -0.020915454253554344, -0.023954087868332863, -0.0008790206047706306, -0.002628631191328168, -0.026850730180740356, -0.026907527819275856, 0.001955942949280143, 0.011742756702005863, 0.02278975211083889, 0.004124874249100685, -0.02744709700345993, -0.0004253110964782536, -0.03862188383936882, 0.015746938064694405, 0.003950933925807476, 0.035668447613716125, -0.013617054559290409, 0.012282327748835087, -0.01282899733632803, 0.005246612709015608, 0.010912102647125721, 0.023982487618923187, -0.0031770761124789715, 0.01611611805856228, 0.0026978522073477507, 0.014554203487932682, -0.003349241567775607, -0.04129134118556976, -0.009002307429909706, 0.016684086993336678, 0.008313644677400589, 0.007348097860813141, 0.028327448293566704, -0.04944169148802757, -0.0362648144364357, 0.0185867827385664, 0.0119841443374753, -0.03541286289691925, 0.012211331166327, -0.0346745029091835, 0.015136371366679668, -0.02560119889676571, 0.034447312355041504, -0.0025540851056575775, 0.04149013012647629, 0.001379099441692233, -0.006251207552850246, 0.030329540371894836, 0.03402133658528328, 0.009108801372349262, 0.007348097860813141, -0.021582817658782005, -0.011188987642526627, -0.016712484881281853, 0.0032533968333154917, -0.007660480681806803, -0.020702466368675232, 0.012083538807928562, -0.039161454886198044, 0.014582601375877857, 0.017223656177520752, 0.0346745029091835, 0.033708956092596054, 0.03115309402346611, 0.024039283394813538, 0.003549805609509349, -0.007475890684872866, -0.020120298489928246, -0.015193168073892593, -0.0008244423661381006, 0.005289210472255945, -0.023272525519132614, 0.026254363358020782, 0.04168891906738281, 0.021852603182196617, 0.000319704384310171, 0.012736702337861061, -0.03328297659754753, -0.02364170551300049, -0.004504703450948, 0.024820242077112198, -0.0034717100206762552, 0.0353560633957386, 0.04665864631533623, -0.008036759681999683, 0.011217385530471802, 0.01050032489001751, 0.027688484638929367, -0.045039933174848557, -0.01021634042263031, -0.013254974037408829, 0.03493008762598038, 0.016187114641070366, -0.004568600095808506, 0.0019328691996634007, 0.014483206905424595, 0.014894984662532806, 0.029278796166181564, -0.017422446981072426, 0.050038062036037445, 0.002275425475090742, -0.0019719169940799475, -0.03291379660367966, -0.0008887826115824282, -0.039104659110307693, -0.01380874402821064, 0.010067248716950417, -0.0039793322794139385, -0.03882067650556564, -0.054468218237161636, -0.019239947199821472, -0.022420572116971016, 0.014440609142184258, -0.012786399573087692, -0.006237008608877659, 0.022534165531396866, 0.045835088938474655, 0.011394876055419445, -0.011174787767231464, 0.005143668502569199, 0.0073055000975728035, 0.002108584623783827, 0.0236275065690279, 0.0010889029363170266, 0.01818920485675335, -0.0036811484023928642, 0.043591614812612534, 0.018316997215151787, 0.04401759058237076, 0.02744709700345993, -0.010919202119112015, 0.010649416595697403, -0.00530340988188982, -0.004987476859241724, 0.014355414547026157, -0.0010037075262516737, -0.003961583133786917, 0.0017536040395498276, -0.04711301997303963, 0.0015139920869842172, -0.03430532291531563, -0.012119036167860031, -0.007060563657432795, 0.014738793484866619, 0.005725836381316185, 0.011068293824791908, 0.000374282622942701, 0.03379414975643158, -0.03223223611712456, 0.0003529837995301932, 0.023116335272789, 0.023315124213695526, 0.02693592570722103, 0.024152876809239388, 0.005424103233963251, -0.011252883821725845, -0.02761748805642128, 0.011160588823258877, -0.013858441263437271, 0.020745065063238144, 0.007071212865412235, -0.032970596104860306, 0.008924211375415325, 0.012452717870473862, 0.0014030607417225838, -0.01807560957968235, -0.0033297177869826555, 0.028710829094052315, 0.04708462208509445, 0.007461691275238991, 0.018728774040937424, 0.003313743509352207, 0.04776618629693985, -0.025359811261296272, 0.010826907120645046, 0.034163329750299454, -0.0063257538713514805, 0.015420355834066868, -0.0006775691290386021, -0.0052004652097821236, 0.03907626122236252, 0.024493658915162086, -0.019183149561285973, -0.01523576583713293, -0.017663832753896713, 0.024067683145403862, 0.0008142367005348206, 0.04626106843352318, 0.012509515509009361, -0.012296526692807674, 0.008782219141721725, 0.025019031018018723, -0.011046995408833027, -0.020248090848326683, 0.010961799882352352, -0.01666988804936409, 0.01757863722741604, 0.013680950738489628, -0.0024458160623908043, -0.01052872370928526, -0.015278363600373268, 0.020915454253554344, 0.020361686125397682, -0.031067898496985435, -0.019055357202887535, 0.0068653239868581295, -0.00712800957262516, 0.02127043530344963, -0.00756108621135354, -0.023925689980387688, -0.041461728513240814, 0.011352278292179108, 0.014965980313718319, 0.005967223085463047, 0.06435088068246841, 0.024323267862200737, -0.006705583073198795, 0.02318732999265194, -0.007025065366178751, -0.0028629181906580925, -0.013347269035875797, 0.002923264866694808, -0.009350188076496124, 0.0469142310321331, 0.007454591803252697, 0.014376712962985039, -0.0042207189835608006, 0.031011102721095085, 0.02161121740937233, -0.015761137008666992, 0.0018512236420065165, -0.01571854017674923, 0.01378034520894289, -0.009044905193150043, 0.011948646046221256, 0.015164770185947418, -0.003542706137523055, -0.048305753618478775, 0.013652552850544453, 0.004142623394727707, -0.001773127936758101, 0.05696728080511093, 0.019069556146860123, 0.006709132809191942, 0.015533949248492718, -0.01100439764559269, 0.013418265618383884, -0.02565799467265606, 0.019509732723236084, -0.03245942294597626, -0.006964718922972679, -0.035611651837825775, 0.004802886862307787, -0.019183149561285973, 0.011330979876220226, -0.003533831564709544, -0.023144733160734177, -0.0003791636263485998, -0.007873469032347202, 0.035270869731903076, -0.01417082455009222, -0.021824205294251442, 0.008824816904962063, 0.0022718755062669516, 0.015505551360547543, -0.000854171987157315, 0.02064567059278488, -0.004731890745460987, 0.02166801318526268, -0.0026392803993076086, -0.013368568383157253, -0.002081960905343294, -0.040496181696653366, -0.0009406984900124371, 0.0076036835089325905, 0.0009637722396291792, 0.021313033998012543, -0.0017536040395498276, -0.025459205731749535, -0.009399885311722755, -0.03964423015713692, 0.01902695745229721, 0.03564004972577095, -0.026311159133911133, 0.013432464562356472, -0.014994379132986069, 0.06338533014059067, 0.02930719591677189, -0.00487033324316144, -0.014554203487932682, 0.022945944219827652, 0.010060149244964123, -0.004600548185408115, 0.017209457233548164, -0.023556509986519814, 0.01621551252901554, -0.011487171053886414, 0.021540220826864243, 0.029591180384159088, 0.029733171686530113, -0.04052457958459854, -0.01701066829264164, -0.029733171686530113, 0.057336460798978806, 0.008782219141721725, 0.0027883723378181458, 0.016570493578910828, 0.003322618082165718, 0.0068759736604988575, 0.03833790123462677, 0.014852386899292469, -0.031295087188482285, 0.017266254872083664, -0.018089810386300087, 0.031124696135520935, -0.006733981426805258, -0.0247066468000412, 0.006659435573965311, 0.0011874099727720022, -0.00022984991664998233, -0.0023623956367373466, -0.03413493186235428, 0.009357287548482418, 0.006393199786543846, 0.015505551360547543, -0.013006487861275673, 0.009229494258761406, -0.026651941239833832, -0.0021423078142106533, 0.0037556944880634546, -0.013418265618383884, -0.012033841572701931, -0.04032579064369202, 0.009563176892697811, 0.009996253065764904, -0.026737136766314507, 0.031919851899147034, -0.015462953597307205, -0.0019577178172767162, 0.03243102505803108, 0.0013808744261041284, -0.004628946539014578, 0.0737791582942009, -0.00505137350410223, 0.005221764091402292, -0.0010471927234902978, 0.0037272959016263485, -0.0026250812225043774, -0.013148480094969273, 0.023755298927426338, -0.04458555951714516, 0.04041098803281784, -0.018671978265047073, 0.014951781369745731, -0.01471039466559887, -0.007017965894192457, -0.0064996941946446896, -0.0021636064630001783, 0.01712426170706749, 0.04086536169052124, 0.0003305756545159966, 0.033765751868486404, -0.0048383851535618305, 0.000365408108336851, 0.006826276425272226, 0.01105409488081932, -0.021227838471531868, -0.004096475895494223, -0.0010738162091001868, 0.008377541787922382, -0.016371702775359154, 0.002928589703515172, 0.030301140621304512, -0.007930265739560127, 0.011977043934166431, 0.02756069041788578, 0.0004088932473678142, 0.011465872637927532, -0.022250181064009666, -0.02110004425048828, 0.02930719591677189, -0.008611828088760376, 0.02098645083606243, 0.031067898496985435, -0.025530202314257622, -0.03274340555071831, -0.02217918634414673, 0.007039264775812626, -0.011891849339008331, -0.025615397840738297, 0.023102134466171265, -0.00048099865671247244, -0.021810006350278854, 0.017152661457657814, 0.02457885444164276, -0.0030634822323918343, -0.000946910644415766, -0.013034886680543423, 0.04316563531756401, 0.005228863563388586, -0.007958664558827877, -0.012374622747302055, 0.0009797463426366448, -0.01986471191048622, -0.022775553166866302, 0.008498234674334526, 0.007074762601405382, -0.014469007961452007, -0.015746938064694405, -0.009832961484789848, 0.0032888948917388916, -0.022633560001850128, -0.011636262759566307, -0.002248801989480853, 0.0026339557953178883, -0.028540438041090965, -0.0014713944401592016, -0.006936320103704929, -0.007958664558827877, 0.02430906891822815, -0.04546591266989708, 0.013986234553158283, -0.005104620475322008, 0.014653597958385944, 0.03941704332828522, 0.028923816978931427, -0.016740882769227028, 0.03186305612325668, -0.0030954305548220873, 0.03231742978096008, 0.0241386778652668, 0.035441260784864426, -0.009939455427229404, -0.006400299724191427, 0.03194824978709221, -0.019964106380939484, 0.014880785718560219, -0.006332853343337774, -0.011629163287580013, -0.02128463424742222, -0.015434554778039455, 0.029051609337329865, -0.008278146386146545, -0.004160372074693441, -0.014994379132986069, -6.628152914345264e-05, 0.010116945952177048, -0.001596525078639388, -0.00715640839189291, -0.002649929840117693, 0.01593152806162834, -6.29535861662589e-05, -0.02054627425968647, -0.03120989166200161, 0.02801506593823433, -0.004004180897027254, -0.012083538807928562, 0.0034379868302494287, 0.002591358032077551, -0.04682903736829758, 0.02189520187675953, -0.013389866799116135, 0.009648371487855911, 0.008306545205414295, -0.01728045381605625, 0.002087285742163658, 0.021469224244356155, -0.010805608704686165, 0.015647543594241142, 0.02436586655676365, 0.04211489483714104, 0.018544184044003487, 0.006524542812258005, 0.02817125804722309, 0.04688583314418793, -0.0376279391348362, 0.017152661457657814, 0.01728045381605625, -0.017223656177520752, 0.030045555904507637, 0.005970773287117481, 0.025615397840738297, -0.016527894884347916, 0.01534935925155878, 0.020461080595850945, -0.012154534459114075, -0.011231585405766964, 0.02239217422902584, -0.022917544469237328, -0.0017110062763094902, -0.009634172543883324, 0.020390084013342857, -0.025743190199136734, 0.002019839361310005, -0.031238289549946785, -0.003858638694509864, 0.04069497063755989, 0.005434752441942692, 0.024337466806173325, -0.008888713084161282, 0.013006487861275673, -0.0042881653644144535, -0.009101701900362968, 0.003869288135319948, -0.04469915106892586, -0.025189420208334923, 0.02660934254527092, 0.0121261365711689, 0.002486638957634568, 0.0038124911952763796, -0.01145167276263237, -0.005718736909329891, -0.006950519513338804, 0.0034095882438123226, -0.004139073193073273, 0.023769497871398926, -0.012104837223887444, -0.01459680125117302, -0.005438302177935839, -0.0009433608502149582, 0.01993570849299431, 0.030329540371894836, 0.029335593804717064, 0.008803518489003181, 0.008966809138655663, 0.011614964343607426, 0.0053247082978487015, -0.008313644677400589, 0.00767467962577939, 0.0008634902187623084, 0.002646380104124546, -0.004547301214188337, 0.03248782083392143, 0.04427317529916763, 0.02273295633494854, 0.028824422508478165, 0.001096889958716929, -0.01952393166720867, 0.02212238870561123, 0.008633127436041832, 0.010450627654790878, 0.011281282640993595, -0.007454591803252697, 0.001649772166274488, -0.014965980313718319, -0.027773680165410042, 0.03609442338347435, -0.02351391315460205, 0.019580727443099022, -0.009889758192002773, 0.007568185683339834, -0.022363776341080666, 0.002866468159481883, -0.028043463826179504, 0.010599719360470772, 0.0023162481375038624, 0.01993570849299431, -0.017365649342536926, 0.021029049530625343, 0.05299149826169014, -0.002025164198130369, -0.01969432272017002, 0.004160372074693441, -0.045664701610803604, -0.004692843183875084, -0.02879602275788784, 0.0475957952439785, -0.0037308456376194954, -0.0020659868605434895, 0.0011031021131202579, 0.00920109637081623, -0.0495268888771534, 0.02267615869641304, 0.0015716764610260725, 0.010145344771444798, -0.006844025105237961, -0.01959492638707161, -0.004437257070094347, 0.0236843042075634, -0.02474924549460411, -0.028384245932102203, -0.019964106380939484, -0.01330467127263546, -0.0117001598700881, 0.019183149561285973, 0.018657779321074486, 0.013013587333261967, 0.008129054680466652, -0.004763839300721884, 0.0035001083742827177, -0.0036421006079763174, -0.0010667166206985712, -0.018955962732434273, -0.01593152806162834, -0.021810006350278854, -0.0034042636398226023, -0.018104009330272675, -0.004912931006401777, -0.009520579129457474, 0.007738576270639896, 0.022420572116971016, 0.002360620768740773, 0.0011155264219269156, -0.011906048282980919, 0.028029264882206917, 0.030954305082559586, -0.0065138936042785645, -0.003358116140589118, 0.011458772234618664, -0.003734395606443286, 0.009747765958309174, 0.021568618714809418, -0.013851341791450977, 0.02195199765264988, 0.006648785900324583, -0.023002739995718002, -0.020290689542889595, 0.016982270404696465, -0.02077346295118332, 0.023485513404011726, 0.033254578709602356, -0.007901867851614952, -0.05483739823102951, 0.02020549401640892, 0.012367523275315762, 0.014937582425773144, 0.031408678740262985, -0.01997830532491207, -0.042853254824876785, 0.02324412763118744, 0.0050265248864889145, 0.03237422928214073, -0.011600764468312263, -0.005999171640723944, 0.026751335710287094, -0.0023002740927040577, 0.00940698478370905, 0.013943636789917946, -0.007188356481492519, -0.022193385288119316, 0.002864693058654666, -0.02054627425968647, 0.008200051262974739, 0.014014632441103458, -0.0008239986491389573, -0.0012229080311954021, 0.00012269015132915229, 0.007131559774279594, 0.02452205680310726, 0.030499929562211037, -0.006410948932170868, -0.01333307009190321, 0.009158498607575893, -0.004696392919868231, -0.00708541227504611, -0.00043884472688660026, 0.008484035730361938, -0.018331196159124374, 0.0029800618067383766, -0.0023215729743242264, 0.01136647816747427, -0.006709132809191942, 0.009087502025067806, 0.019225748255848885, -0.0065032439306378365, -0.0034592857118695974, 0.005363756325095892, -0.01069201435893774, 0.0343337208032608, -0.030386336147785187, 0.023712702095508575, 0.010479026474058628, 0.00822134967893362, 0.007454591803252697, -0.0033474666997790337, -0.006520993076264858, 0.013418265618383884, 0.02570059336721897, 0.0065671405754983425, 0.00763208232820034, 0.004007730633020401, -0.022860748693346977, -0.019580727443099022, -0.019907310605049133, -0.001734967459924519, 0.02873922698199749, -0.02065986953675747, 0.058955173939466476, -0.05162837356328964, 0.029789969325065613, 0.012587610632181168, -0.023868892341852188, 0.01482398808002472, 0.054695405066013336, -0.02016289532184601, -0.013851341791450977, -0.0010844656499102712, 0.006187311373651028, 0.01238172221928835, 0.01807560957968235, 0.011444573290646076, 0.01841639168560505, -0.03856508806347847, 0.004533101804554462, -0.0017465043347328901, -0.010592619888484478, 0.035952430218458176, -0.003540931036695838, -0.03311258554458618, 0.044102784246206284, 0.010954700410366058, 0.02604137361049652, 0.00704636424779892, 0.01622971147298813, 0.014078529551625252, -0.00498037738725543, 0.006496144458651543, -0.04674383997917175, -0.008640226908028126, -0.01349636074155569, -0.004242017865180969, -0.02014869637787342, -0.0033066440373659134, 0.010145344771444798, -0.001417259918525815, -0.019396137446165085, 0.040950559079647064, -0.04958368465304375, 0.010968899354338646, 0.03765633702278137, -0.015746938064694405], [-0.0027803899720311165, -0.013022157363593578, -0.0021259102504700422, 0.05096053332090378, 0.024070147424936295, -0.030875511467456818, 0.020526451990008354, 0.05512958765029907, -0.04112647473812103, -0.039875760674476624, -0.0017396596958860755, -0.038943853229284286, 0.003942206967622042, -0.013426801189780235, -0.033009085804224014, -0.0026133214123547077, 0.03842885419726372, -0.016786566004157066, 0.015535851009190083, 0.0723453238606453, 0.021225381642580032, -0.028594793751835823, 0.021249905228614807, 0.037938375025987625, -0.004521582741290331, -0.011189000681042671, -0.01654132828116417, -0.019238950684666634, 0.08264533430337906, -0.007731139659881592, 0.045908622443675995, -0.02925693802535534, 0.043456241488456726, 0.010692393407225609, -0.00039276457391679287, -0.027613840997219086, -0.024070147424936295, -0.035853851586580276, 0.018233472481369972, 0.020158594474196434, -0.009907630272209644, 0.004886374808847904, -0.018809784203767776, 0.04080766439437866, 0.03063027374446392, -0.023886218667030334, 0.005612893495708704, -0.017252519726753235, 0.005073369015008211, 0.011072512716054916, 0.041764095425605774, 0.0476498156785965, -0.06278102099895477, -0.035682182759046555, -0.022782644256949425, -0.06454674154520035, 0.03607456386089325, 0.009361974895000458, 0.04031718894839287, 0.02570098266005516, 0.041298143565654755, -0.06258483231067657, -0.04647267237305641, 0.00898185558617115, 0.0181108545511961, 0.02999265305697918, -0.01819668710231781, 0.04409385845065117, -0.020575499162077904, -0.026878125965595245, 0.006143221165984869, 0.023690026253461838, 0.06611626595258713, 0.009968940168619156, -0.019042760133743286, 0.02394752763211727, -0.022145025432109833, 0.02115180902183056, -0.0014568691840395331, 0.020710380747914314, -0.01893240213394165, 0.04980791360139847, -0.019324783235788345, 0.010257095098495483, -0.030115272849798203, -0.043873146176338196, -0.0682743638753891, 0.0005322439246810973, -0.06150578334927559, 0.036099087446928024, -0.07283579558134079, -0.020845262333750725, 0.00010183140693698078, 0.013659777119755745, -0.008773403242230415, -0.03889480605721474, -0.01990109495818615, 0.0032064917031675577, 0.009631737135350704, -0.03313170373439789, -0.03131693974137306, -0.03828170895576477, 0.027564793825149536, 0.005950096063315868, 0.010165130719542503, 0.048900533467531204, 0.08436200022697449, -0.03349956125020981, -0.028398603200912476, -0.013672039844095707, -0.04845910146832466, 0.010152868926525116, 0.004123070277273655, 0.032960038632154465, 0.05096053332090378, 0.010624952614307404, 0.054835300892591476, 0.03315622732043266, -0.04110195115208626, -0.0034731884952634573, -0.0019573087338358164, -0.003678575623780489, 0.05768006667494774, -0.004742296878248453, -0.011599775403738022, -0.041764095425605774, 0.03519170731306076, 0.04679148271679878, -0.0418376661837101, -0.033425990492105484, 0.01961906999349594, -0.0454181469976902, -0.03688385337591171, 0.009447808377444744, 0.014873707666993141, 0.022328954190015793, -0.019557761028409004, -0.025995267555117607, -0.012911800295114517, -0.027074316516518593, -0.00789667572826147, 0.018270259723067284, 0.01494727935642004, -0.003402682486921549, -0.05360911041498184, 0.043971240520477295, -0.022451573982834816, 0.001316623529419303, -0.011293226853013039, -0.024450266733765602, 0.05478625372052193, -0.027344079688191414, 0.04912124574184418, 0.004776017274707556, -0.028398603200912476, -0.012206739746034145, 0.003568218322470784, 0.02790812775492668, 0.0016814155969768763, 0.03580480441451073, 0.007725008763372898, 0.018601329997181892, -0.001518178847618401, 0.029968129470944405, 0.05135291442275047, 0.02078395150601864, 0.012543942779302597, 0.01584239862859249, -0.05964197218418121, -0.007792449556291103, -0.03654051944613457, 0.019153116270899773, 0.0014668320072814822, -0.014898231253027916, -0.043039336800575256, -0.002774259075522423, 0.04196028783917427, -0.005281821358948946, -0.0908362939953804, 0.034333374351263046, 0.0003421841829549521, 0.014456802047789097, 0.01098667923361063, 0.011679477989673615, 0.013524896465241909, -0.010704655200242996, 0.0025443481281399727, 0.018454188480973244, 0.00934971310198307, -0.008049950003623962, -0.061652928590774536, 0.007277448661625385, 0.0217894297093153, 0.007498163264244795, 0.0104839401319623, 0.017841091379523277, -0.00980953499674797, -0.021899787709116936, -0.047747910022735596, -0.008638521656394005, -0.03293551504611969, -0.006140155717730522, 0.05017577111721039, 0.04495219513773918, -0.041984811425209045, 0.031169798225164413, -0.010637214407324791, -0.03283741697669029, 0.02658383920788765, 0.025553839281201363, 0.0338919423520565, -0.011403584852814674, 0.04149433225393295, -0.010171261616051197, 0.00024466359172947705, 0.03541242331266403, -0.0454181469976902, -0.007032210472971201, -0.01662716269493103, 0.05988721176981926, 0.0022056126035749912, 0.00951524917036295, 0.0010920771164819598, 0.044191956520080566, 0.029698368161916733, 0.023150501772761345, 0.02247609756886959, 0.04043980687856674, 0.018920140340924263, -0.01282596681267023, 0.04566338658332825, -0.0014844585675746202, -0.017485495656728745, -0.024854909628629684, 0.026681935414671898, -0.030605750158429146, -0.0030256283935159445, -0.025075623765587807, -0.0021534995175898075, -0.012556204572319984, -0.03732528164982796, 0.002604125067591667, 0.006572388578206301, 0.01787787675857544, 0.029428604990243912, -0.018159901723265648, 0.0029305985663086176, -0.001630835235118866, -0.02925693802535534, 0.0237758606672287, -0.0009449341450817883, -0.004273278638720512, 0.04262242838740349, -0.04698767140507698, -0.060230545699596405, -0.011458762921392918, -0.03430884703993797, 0.003001104574650526, 0.025725506246089935, -0.0034241408575326204, 0.051794346421957016, -0.01594049483537674, -6.059112274670042e-05, 0.029796462506055832, -0.045344576239585876, 0.02528407610952854, -0.007246794179081917, 0.0005736278835684061, -0.014481326565146446, -0.0025504790246486664, -0.003494646865874529, -0.016602637246251106, -0.02663288824260235, -0.003031759522855282, -0.014469063840806484, -0.03759504482150078, -0.05056815221905708, -0.01197989471256733, -0.004159856121987104, 0.00017808521806728095, -0.022230857983231544, 0.013230610638856888, -0.027196936309337616, 0.00050120591185987, 0.016430970281362534, 0.011513941921293736, 0.024523837491869926, 0.018405139446258545, -0.026706459000706673, -0.003617265960201621, 0.01025096420198679, -0.06376197934150696, -0.025578362867236137, 0.005140809342265129, 0.009502987377345562, 0.009202569723129272, 0.026461221277713776, -0.04625195637345314, 0.0027236787136644125, 0.009184177033603191, 0.056453872472047806, 0.028962653130292892, 0.03708004206418991, -0.03298456221818924, -0.011654953472316265, 0.010888583958148956, -0.009539772756397724, 0.04188671335577965, 0.024805862456560135, -0.03560861200094223, -0.01289953850209713, 0.032224323600530624, -0.001592516666278243, -0.04389766976237297, 0.03063027374446392, -0.014591683633625507, 0.028668366372585297, 0.046227432787418365, -0.01585466042160988, -0.0569443516433239, 0.005214381031692028, 0.008767272345721722, 0.021948834881186485, -0.017988234758377075, -0.041715048253536224, 0.024572884663939476, 0.02967384271323681, -0.019226688891649246, -0.0489986278116703, -0.02538217231631279, 0.012237395159900188, -0.057287685573101044, 0.02050192840397358, -0.0010192720219492912, -0.015094421803951263, 0.033597659319639206, 0.03249408304691315, -0.007528818212449551, 0.0455162413418293, 0.00979114230722189, 0.04073409363627434, -0.03764409199357033, 0.011330013163387775, -0.016823353245854378, 0.02155645377933979, 0.0017810437129810452, 0.0641053095459938, -0.002426327206194401, -0.0037306887097656727, -0.014456802047789097, -0.02340800315141678, -0.025455743074417114, 0.024940742179751396, -0.006695007439702749, 0.004527713637799025, 0.008503641001880169, 0.029747415333986282, -0.0012943987967446446, 0.006805364973843098, 0.020109547302126884, 0.005704857874661684, 0.037472423166036606, 0.04814029484987259, 0.022365739569067955, 0.03992480784654617, 0.012703347951173782, -0.0437750518321991, 0.011716263368725777, 0.023567408323287964, -0.0003670911828521639, -0.01234775222837925, -0.004208903759717941, -0.0020492731127887964, -0.0014599347487092018, -0.03717813640832901, 0.02399657480418682, 0.0454181469976902, 0.00923935603350401, -0.03754599392414093, 0.003353634849190712, -0.0025933957658708096, -0.002614854136481881, -0.05159815400838852, 0.006786972284317017, 0.024683242663741112, -0.015143469907343388, -0.015069898217916489, 0.008816319517791271, -0.06140768900513649, -0.04875338822603226, 0.017951449379324913, -0.022304430603981018, -0.008374890312552452, -0.004248755052685738, -0.021495142951607704, -0.034088134765625, -0.0006199932540766895, -0.028987176716327667, -0.003957534208893776, 0.005916375666856766, -0.02115180902183056, 0.008650783449411392, 0.03811004385352135, -0.016663948073983192, -0.05243196338415146, 0.011244179680943489, -0.046178385615348816, -0.008086735382676125, -0.04227909445762634, 0.040513381361961365, -0.0025428154040127993, -0.02538217231631279, 0.03734980523586273, 0.0029873100575059652, 0.02727050706744194, -0.004202772863209248, 0.01999918930232525, -0.013622991740703583, 0.01976621337234974, -0.06940246373414993, 0.04120004549622536, -0.01437096856534481, -0.04818934202194214, -0.006498816888779402, 0.035682182759046555, 0.01865037903189659, 0.006553995423018932, -0.045859575271606445, 0.006167745217680931, -0.01499632652848959, -0.01363525353372097, -0.03771766275167465, 0.007044472265988588, -3.0870338378008455e-05, -0.016872400417923927, -0.006633698008954525, -0.01585466042160988, 0.01851549744606018, -0.025455743074417114, -0.048949580639600754, -0.034529563039541245, 0.03141503781080246, -0.04632553085684776, -0.061751022934913635, -0.03725171089172363, -0.028226936236023903, 0.0010591231985017657, 0.005254232324659824, -0.016001803800463676, 0.018552282825112343, 0.0031727715395390987, -0.0324450358748436, -0.04200933501124382, 0.011158346198499203, 0.0455162413418293, 0.052677202969789505, -0.04740457981824875, 0.0071057821623981, 0.06302626430988312, -0.011710132472217083, -0.013365491293370724, 0.006560126785188913, 0.07440531998872757, 0.0200482364743948, -0.026387648656964302, -0.03749694675207138, -0.044290050864219666, -0.013757873326539993, 0.02906074747443199, -0.019937880337238312, 0.009202569723129272, -0.042916715145111084, -0.03242051228880882, -0.027393126860260963, 0.015057636424899101, -0.006713400594890118, -0.02957574836909771, -0.03578028082847595, 0.004674856550991535, 0.0019864309579133987, -0.044608861207962036, -0.02893812768161297, -0.04232814535498619, -0.025774553418159485, -0.019312521442770958, -0.06871579587459564, 0.004831195808947086, 0.05071529746055603, -0.05444291979074478, -0.003307652659714222, -0.013843705877661705, -0.0008974191732704639, 0.02506336197257042, -0.012065728195011616, -0.03914004564285278, 0.016651686280965805, 0.0014806266408413649, -0.044339098036289215, 0.02658383920788765, 0.01181435864418745, 0.003678575623780489, -0.06341864168643951, 0.011949240230023861, 0.027295030653476715, -0.025970743969082832, 0.03842885419726372, -0.027049792930483818, -0.06552769243717194, -0.017436448484659195, 0.08127199858427048, -0.03183194249868393, 0.03237146511673927, 0.0031298547983169556, -0.011115428991615772, -0.006823757663369179, 0.02357967011630535, -0.008301318623125553, -0.0007472106954082847, 0.0013449792750179768, 0.061701975762844086, -0.011789835058152676, 0.0567481592297554, -0.04887600988149643, -0.0021274429745972157, 0.01773073524236679, 0.03440694510936737, -0.015879184007644653, -0.00023527556913904846, 0.007608520798385143, 0.004772951826453209, 0.014125730842351913, 0.003258605021983385, -0.025235028937458992, 0.03607456386089325, 0.015462279319763184, 0.024388955906033516, -0.026093363761901855, 0.017522281035780907, 0.019557761028409004, -0.014407754875719547, 0.0142115643247962, 0.0028907472733408213, 0.003042488591745496, -0.021115023642778397, -0.023113716393709183, -0.0043161953799426556, 0.019913356751203537, 0.009987332858145237, 0.0035099743399769068, -0.003350569400936365, -0.01602632738649845, 0.015302875079214573, -0.003617265960201621, -0.07038341462612152, -0.003994320053607225, -0.013512634672224522, 0.01791466400027275, -0.0015381044941022992, 0.021397048607468605, 0.026608364656567574, -0.014493588358163834, 0.035535041242837906, 0.02575002983212471, 0.06361483782529831, 0.04610481485724449, -0.0008560352143831551, 0.01570751890540123, -0.00024907023180276155, -0.020465143024921417, -0.011924715712666512, 0.02188752591609955, -0.019189903512597084, -0.033376943320035934, 0.026829078793525696, -0.011838882230222225, -0.010532988235354424, -0.02055097557604313, 0.024303123354911804, 0.00010719599231379107, -0.0062259892001748085, 0.008595605380833149, -0.0042978026904165745, 0.005202119238674641, -0.0076698302291333675, -0.017154423519968987, -0.001119666500017047, 0.02036704681813717, 0.023383479565382004, 0.0007326496415771544, 0.04608029127120972, 0.009785011410713196, -0.044437192380428314, 0.038674090057611465, 0.03781575709581375, 0.0037460161838680506, -0.03555956482887268, 0.0014430745504796505, -0.03651599586009979, 0.03242051228880882, -0.038575995713472366, 0.02404562197625637, 0.006290364544838667, 0.02763836458325386, -0.01690918579697609, 0.013868230395019054, -0.018025020137429237, 0.011930846609175205, 0.02768741175532341, 0.02888908050954342, 0.01916537992656231, -0.0023987379390746355, 0.013843705877661705, 0.06302626430988312, -0.014064420945942402, -0.05056815221905708, 0.032273370772600174, 0.017926925793290138, -0.02967384271323681, 0.023837169632315636, 0.04845910146832466, -0.0035620874259620905, -0.007884413935244083, 0.0436769537627697, -0.001840820536017418, -0.019410617649555206, 0.015928233042359352, -0.014959541149437428, -0.04257338121533394, -0.00255201174877584, -0.024621933698654175, 0.0031635749619454145, 0.003390420461073518, 0.009637868031859398, -0.01089471485465765, 0.006207596510648727, 0.047012194991111755, 0.021482881158590317, 0.0023450918961316347, 0.018858831375837326, 0.053314823657274246, 0.03430884703993797, -0.00728971092030406, 0.024450266733765602, -0.010661737993359566, 0.021298952400684357, 0.030924558639526367, -0.013316444121301174, 0.0437750518321991, -0.012176085263490677, -0.024352170526981354, 0.003353634849190712, 0.01172239426523447, -0.03690837696194649, -0.02357967011630535, -0.010441023856401443, 0.028987176716327667, 0.005646613426506519, 0.03754599392414093, 0.017203472554683685, 0.024989791214466095, -0.02060002274811268, 0.009926022961735725, -0.005523994565010071, 0.02422955073416233, -0.0012461175210773945, -0.0013794659171253443, 0.024119194597005844, 0.009527510963380337, -0.011415846645832062, 0.017718473449349403, 0.03963052108883858, -0.015817875042557716, 0.0398021899163723, -0.03575575351715088, 0.00829518772661686, 0.004248755052685738, -0.03129241615533829, -0.05380529910326004, -0.07102103531360626, -0.02680455520749092, 0.02548026666045189, -0.05895530432462692, -0.002941327868029475, -0.04178861901164055, -0.04573695734143257, -0.024683242663741112, 0.02621598169207573, -0.01052685733884573, -0.008270664140582085, -0.006713400594890118, -0.027932651340961456, 0.009582689963281155, 0.005002862773835659, -0.0338919423520565, 0.009760487824678421, -0.017559068277478218, -0.007884413935244083, -0.02575002983212471, -0.026338601484894753, -0.0990763008594513, 0.002870821626856923, -0.008117389865219593, -0.0003274315386079252, -0.029183367267251015, 0.012022810988128185, -0.006989293731749058, 0.010974417440593243, 0.046129338443279266, 0.02832503244280815, -0.04514838382601738, -0.029183367267251015, -0.029036223888397217, -0.018956925719976425, -0.010005725547671318, -0.005315541755408049, 0.00583667354658246, 0.0012522484175860882, -0.02758931741118431, 0.045908622443675995, -0.013206086121499538, -0.029085271060466766, -0.010416500270366669, -0.022782644256949425, -0.028496699407696724, 0.012985371984541416, -0.03840433061122894, -0.02616693452000618, -0.010931500233709812, 0.04514838382601738, -0.011379060335457325, 0.0076453061774373055, 0.02330990694463253, 0.019888833165168762, 0.019055021926760674, -0.001125031034462154, 0.03928718715906143, -0.000861399807035923, -0.005989947356283665, -0.010919238440692425, -0.051156725734472275, -0.004288605879992247, -0.01787787675857544, 0.02077168971300125, 0.018307045102119446, 0.019459664821624756, -0.017975972965359688, -0.006115632131695747, -0.03261670470237732, -0.024842647835612297, 0.03146408498287201, -0.0141379926353693, 0.009092212654650211, 0.0013526428956538439, 0.010140607133507729, -0.019643593579530716, -0.008975724689662457, 0.022586453706026077, -0.0036877719685435295, 0.016014065593481064, 0.018307045102119446, 0.0024753748439252377, -0.0007142567774280906, -0.00999346375465393, 0.03104717843234539, 0.0435788594186306, -0.026681935414671898, -0.013757873326539993, -0.05056815221905708, 0.007682092022150755, 0.01148941833525896, 0.004803606774657965, 0.016099900007247925, 0.02575002983212471, -0.0041046771220862865, 0.05076434463262558, -0.006051256787031889, 0.0052726250141859055, 0.027147889137268066, -0.009754355996847153, -0.011250310577452183, 0.013463586568832397, -0.015278350561857224, 0.060181498527526855, -0.03943433240056038, 0.02078395150601864, -0.05630673095583916, 0.008331974036991596, -0.0179637111723423, 0.00642524566501379, 0.0005812915624119341, -0.004497058689594269, -0.015621684491634369, -0.007804711349308491, -0.042965762317180634, -0.006321019027382135, 0.05439387261867523, -0.0016814155969768763, -0.03472575545310974, -0.014456802047789097, -0.021568715572357178, 0.00953364185988903, 0.009742094203829765, -0.011011202819645405, 0.02543121948838234, 0.023788122460246086, -0.007369413040578365, -0.016369661316275597, 0.014800135977566242, -0.01976621337234974, 0.042769573628902435, -0.025774553418159485, 0.013169300742447376, -0.014334183186292648, -0.008785665035247803, 0.0003255156334489584, 0.0024937677662819624, 0.010594298131763935, -0.008975724689662457, -0.012519419193267822, 0.01769394800066948, -0.014726564288139343, -0.0377667099237442, 0.015400970354676247, -0.009778880514204502, 0.03156217932701111, 0.0025014313869178295, 0.0018776062643155456, -0.02339574135839939, 0.014420016668736935, -0.01476335059851408, -0.0200482364743948, -0.03528980165719986, -0.05758197233080864, -0.018343830481171608, 0.005278755910694599, -0.06199626252055168, -0.005956226959824562, 0.019226688891649246, -0.0050856308080255985, -0.03320527449250221, 0.006676614750176668, 0.006143221165984869, -0.035902898758649826, -0.0025014313869178295, -0.03472575545310974, -0.0034272063057869673, -0.01990109495818615, 0.02473228983581066, -0.026265030726790428, 0.03293551504611969, 0.028913604095578194, 0.02123764343559742, 0.007694353815168142, 0.01080275047570467, 0.014088944531977177, 0.04223004728555679, -0.01828252151608467, 0.03519170731306076, -0.0009050829103216529, -0.020698118954896927, -0.05787625536322594, -0.03725171089172363, -0.0030578160658478737, -0.055620063096284866, 0.0064375074580311775, 0.013905015774071217, 0.06395816802978516, -0.0009349713218398392, 0.02695169672369957, 0.025995267555117607, 0.01961906999349594, 0.005683399271219969, -0.03727623447775841, 0.0031022655311971903, 0.012875014916062355, -0.0007165558636188507, 0.007964116521179676, -0.002377279568463564, 0.008871498517692089, 0.013046681880950928, 0.0376686155796051, 0.0014752621063962579, -0.007191615179181099, -0.0132183488458395, 0.002181088784709573, 0.01717894896864891, -0.03734980523586273, -0.0046687256544828415, -0.017657162621617317, -0.01676204241812229, 0.020342523232102394, -0.00355289108119905, 0.008417807519435883, -0.0571405403316021, -0.015290612354874611, 0.029820986092090607, 0.022537406533956528, 0.02026895247399807, 0.03197908401489258, 0.017902402207255363, 0.021225381642580032, 0.013610729947686195, 0.0085710808634758, -0.014309659600257874, 0.010005725547671318, -0.030581224709749222, 0.013672039844095707, -0.012801443226635456, 0.018809784203767776, -0.007921199314296246, 0.035584088414907455, 0.01557263731956482, -0.020833000540733337, -0.02501431480050087, 0.0006219092174433172, 0.01842966303229332, -0.02906074747443199, -0.022488359361886978, 0.013009895570576191, 0.011575250886380672, -0.010913107544183731, 0.011618168093264103, 0.06292816996574402, -0.003537563607096672, 0.01567073166370392, -0.027025269344449043, -0.002273053163662553, 0.026681935414671898, 0.025455743074417114, 0.012353883124887943, -0.023506097495555878, 0.019741689786314964, 0.03685932606458664, 0.011458762921392918, 0.04132266715168953, 0.010312274098396301, 0.02473228983581066, 0.007124174851924181, 0.030483130365610123, 0.023604193702340126, -0.03283741697669029, 0.00016917615721467882, -0.002522889757528901, -0.020146332681179047, 0.033009085804224014, -0.06395816802978516, -0.03129241615533829, 0.0009541305480524898, -0.002801848342642188, -0.003801194718107581, -0.011992156505584717, 0.027981698513031006, 0.004282474983483553, -0.0014729630202054977, -0.007240663282573223, -0.0023144371807575226, 0.005248101428151131, -0.03967956826090813, 0.026927173137664795, -0.01861359365284443, -0.03732528164982796, -0.0010277021210640669, 0.012838228605687618, 0.003494646865874529, 0.04279409721493721, 0.01015899982303381, 0.024106932803988457, 0.0217894297093153, -0.011158346198499203, 0.019091807305812836, 0.00031516962917521596, 0.021225381642580032, -0.02947765216231346, 0.0031758369877934456, -0.0059470306150615215, -0.01554811280220747, 0.008540426380932331, 0.009748225100338459, -0.03219980001449585, -0.03874766454100609, -0.032910991460084915, 0.06832341104745865, 0.05512958765029907, 0.012985371984541416, -0.05022481828927994, 0.01787787675857544, 0.033327896147966385, -0.004303933586925268, -0.023420264944434166, -0.02538217231631279, -0.018356092274188995, -0.003169706091284752, -0.0019159248331561685, -0.011250310577452183, 0.021826215088367462, 0.005333934910595417, -0.010042511858046055, 0.0029535896610468626, 0.012286442331969738, -0.01712989993393421, -0.05096053332090378, -0.004159856121987104, 0.03761956840753555, -0.008025425486266613, -0.030090749263763428, 0.018405139446258545, 0.040881238877773285, 0.012022810988128185, -0.03811004385352135, -0.03575575351715088, 0.026338601484894753, -0.013353229500353336, -0.03131693974137306, -0.05311863124370575, -0.005563845857977867, -0.005257297772914171, 0.027834555134177208, 0.04845910146832466, -0.020575499162077904, 0.04718386381864548, 0.047012194991111755, -0.004613547120243311, -0.0038502425886690617, -0.0007142567774280906, -0.020882047712802887, -0.006486555095762014, 0.0012223600642755628, 0.0064375074580311775, -0.004245689604431391, 0.008007032796740532, 0.020992405712604523, 0.012139299884438515, -0.012329359538853168, -0.004684052895754576, -0.004230361897498369, 0.005815214943140745, 0.02483038604259491, 0.0019220557296648622, 0.0018760735401883721, 0.019606808200478554, -0.006744055543094873, 0.007081258110702038, 0.010171261616051197, -0.011280965059995651, 0.0007748000207357109, 0.004733100533485413, -0.018736211583018303, 0.007308103609830141, 0.03639337420463562, 0.010349059477448463, 0.017681686207652092, -0.032175276428461075, 0.01025096420198679, -0.014272873289883137, 0.004803606774657965, 0.014702040702104568, -0.008534295484423637, 0.02409467101097107, -0.020097285509109497, -0.008417807519435883, 0.002656238153576851, 0.010839535854756832, 0.014959541149437428, 0.014910493046045303, 0.02021990343928337, 0.010226440615952015, 0.01289953850209713, 0.002239333000034094, 0.01677430421113968, 0.0004705511382780969, 0.012451978400349617, -0.021090500056743622, 0.003292325185611844, 0.030385034158825874, 0.018540021032094955, -0.002806446747854352, 0.012157692573964596, 0.0002693790302146226, 0.008092866279184818, 0.07862342149019241, 0.018736211583018303, 0.005281821358948946, -0.0006395357195287943, -0.023653240874409676, 0.008528164587914944, -0.01958228461444378, 0.024769075214862823, 0.0025826666969805956, -0.0009426350006833673, -0.00697703193873167, 0.023873955011367798, 0.0033781586680561304, -0.006603043060749769, -0.00042686803499236703, 0.0012507156934589148, -0.002289913361892104, -0.0161244235932827, -0.014898231253027916, 0.02160550095140934, -0.006057387683540583, -0.019655855372548103, -0.0018576807342469692, -0.022696811705827713, 0.014052159152925014, 0.007510425057262182, 0.006958638783544302, 0.014849184080958366, 0.009270010516047478, 0.03509361296892166, 0.008546557277441025, -0.017742997035384178, -0.002466178499162197, 0.04421648010611534, 0.029968129470944405, 0.02483038604259491, 0.04529552906751633, 0.004889440257102251, 0.01602632738649845, -0.020109547302126884, 0.013549420051276684, 0.015241565182805061, -0.025210505351424217, 0.019606808200478554, 0.006127893924713135, 0.015682993456721306, -0.01829478330910206, -0.0284231286495924, -0.01985204592347145, 0.0032555393408983946, 0.032322417944669724, -0.026338601484894753, -0.038992900401353836, -0.03354860842227936, -0.008374890312552452, 0.013120253570377827, -0.04223004728555679, -0.007675961125642061, -0.011789835058152676, 0.03237146511673927, 0.012476501986384392, 0.03644242137670517, -0.027613840997219086, 0.014199301600456238, -0.0043161953799426556, 0.020072761923074722, 0.045393623411655426, -0.009895368479192257, 0.060230545699596405, -0.029232414439320564, -0.007602389436215162, 0.01236614491790533, 0.008374890312552452, 0.03644242137670517, -0.024670980870723724, 0.012936323881149292, -0.027515746653079987, 0.03004170022904873, -0.024119194597005844, 0.009754355996847153, 0.013181562535464764, -0.013843705877661705, -0.0322488471865654, -0.0052051846869289875, -0.0033597657456994057, 0.025357648730278015, -0.0320526547729969, -0.000807753880508244, 0.0015511327655985951, -0.0142115643247962, 0.008405545726418495, -7.388285212073242e-06, -0.03134146332740784, -0.008730486035346985, 0.01814763993024826, 0.01621025614440441, -0.011949240230023861, 0.008693700656294823, -0.0031482477206736803, -0.003077741712331772, 0.07043246179819107, 0.03040955774486065, -0.03286194056272507, 0.006811495870351791, -0.006106435786932707, -0.02018311806023121, -0.00018517413991503417, -0.015523589216172695, 0.009785011410713196, -0.01584239862859249, 0.0074123297818005085, 0.005554649047553539, -0.001914392109028995, -0.0030409558676183224, -0.001764183514751494, -0.0026194523088634014, 0.01842966303229332, 0.02491621859371662, -0.01686013862490654, -0.012120907194912434, -0.025823600590229034, -0.026093363761901855, 0.006970901042222977, 0.023248597979545593, 0.035265278071165085, 0.005079499911516905, -0.013009895570576191, -0.02658383920788765, 0.03313170373439789, -0.004656463861465454, -0.03141503781080246, 0.04681600630283356, 0.02663288824260235, 0.001068319659680128, -0.03578028082847595, 0.01557263731956482, -0.01625930517911911, -0.013022157363593578, -0.01225578784942627, -0.010723047889769077, -0.005821345839649439, 0.026412172242999077, -0.0005065705045126379, -0.004917029291391373, 0.02533312514424324, -0.003586611244827509, -0.0013081934303045273, -0.027074316516518593, 0.01121352519840002, 0.04389766976237297, 0.03440694510936737, -0.008724355138838291, -0.008466854691505432, -0.032910991460084915, -0.005971554666757584, -0.019104069098830223, 0.036687660962343216, 0.0006583117647096515, -0.013524896465241909, -0.0020308801904320717, 0.026780029758810997, -0.025774553418159485, 0.009821796789765358, 0.0034731884952634573, -0.0008361095678992569, 0.028987176716327667, 0.0044357492588460445, 0.006005274597555399, -0.0009602615027688444, -0.02538217231631279, -0.01838061586022377, 0.018576806411147118, -0.02110276184976101, -0.023469312116503716, -0.025357648730278015, -0.03178289532661438, -0.005088696256279945, 0.012678824365139008, 0.0071057821623981, -0.010109951719641685, 0.03202813118696213, 0.019042760133743286, 0.03313170373439789, -0.008896022103726864, 0.015143469907343388, -0.0076514375396072865, 0.003617265960201621, -0.008963462896645069, 0.006130959372967482, -0.018368354067206383, -0.028913604095578194, -0.019606808200478554, 0.015609422698616982, -0.0032218191772699356, -0.0009778880048543215, 0.005815214943140745, 0.018417401239275932, 0.0047361659817397594, 0.010937631130218506, 0.036050040274858475, 0.026927173137664795, -0.010441023856401443, -0.008344235830008984, -0.01911633089184761, 0.0059286379255354404, 0.015192517079412937, 0.01939835585653782, 0.01492275483906269, 0.04075861722230911, 0.021777167916297913, -0.03286194056272507, -0.024940742179751396, 0.0068544126115739346, 0.038625042885541916, -0.015621684491634369, -0.007418460678309202, 0.009319058619439602, 0.04674243554472923, -0.0529714897274971, -0.0142115643247962, -0.03528980165719986, -0.012997633777558804, 0.010073166340589523, 0.0037460161838680506, 0.01926347427070141, 0.004322326276451349, -0.0060144709423184395, 0.004129201173782349, 0.0037919983733445406, -0.010784357786178589, -0.011961502023041248, -0.025038838386535645, 0.004794410429894924, -0.037938375025987625, -0.01402763556689024, -0.02800622209906578, 0.010379713959991932, -0.0009020174038596451, -0.003773605450987816, 0.014873707666993141, -0.04080766439437866, -0.012378406710922718, -0.0012407528702169657, -0.017816567793488503, -0.016602637246251106, 0.01773073524236679, 0.02419276535511017, -0.026657411828637123, 0.003100732807070017, 0.0015266089467331767, 0.030262416228652, 0.00990149937570095, 0.01499632652848959, -0.031071702018380165, 0.004821999464184046, -0.01340227760374546, -0.0019925618544220924, 0.006615305319428444, -0.0057814945466816425, 0.011832751333713531, -0.0018086329801008105, -0.019275736063718796, -0.03126789256930351, -0.026412172242999077, -0.01990109495818615, -0.0052051846869289875, 0.02648574486374855, -0.020845262333750725, 0.0065049477852880955, 0.002722145989537239, -0.03661409020423889, -0.002433990826830268, 0.031022654846310616, -0.00988310668617487, -0.02013407088816166, 0.008865367621183395, 0.007547210901975632, -0.0011388256680220366, 0.018601329997181892, 0.029870035126805305, 0.02967384271323681, 0.00866304524242878, -0.0019051956478506327, -0.001267575891688466, -0.043456241488456726, 0.010827274061739445, 0.027859078720211983, -0.008975724689662457, -0.010017987340688705, -0.013022157363593578, 0.0026056577917188406, -0.010201916098594666, 0.004325391724705696, -0.01579335145652294, -0.03286194056272507, -0.0010323002934455872, 0.007424592040479183, -0.029453128576278687, 0.025921696797013283, 0.0021795560605823994, 0.04075861722230911, -0.02359193190932274, -0.0049200947396457195, -0.01866264082491398, 0.01709311455488205, -0.0049200947396457195, -0.031537655740976334, 0.004898636601865292, -0.009466201066970825, 0.0012714077020063996, -0.004049498587846756, 0.03965504467487335, 0.011176738888025284, 0.021580977365374565, -0.012096382677555084, 0.02869288995862007, 0.018503235653042793, 0.013046681880950928, -0.01966811716556549, 0.03565765917301178, -0.0019159248331561685, -0.024977529421448708, 0.0025305533781647682, -0.0016829483211040497, 0.04252433404326439, 0.01851549744606018, -0.012065728195011616, -0.010244833305478096, 0.011832751333713531, -0.014052159152925014, -0.011826620437204838, 0.002604125067591667, 0.030385034158825874, -0.016896924003958702, -0.009502987377345562, -0.006817626766860485, 0.02100466750562191, -0.007216139230877161, 0.0030148993246257305, -0.004524648189544678, 0.012261918745934963, -0.00979114230722189, -0.025676457211375237, 0.01188793033361435, -0.027049792930483818, -0.0036540518049150705, 7.807393558323383e-05, -0.0057814945466816425, 0.00026765468646772206, 2.33802688853757e-06, 0.03354860842227936, 0.015241565182805061, -0.00870596244931221, -0.0030900035053491592, 0.0003954468702431768, 0.006210661958903074, -0.005796822253614664, 0.02800622209906578, 0.019361570477485657, 0.01958228461444378, 0.014530373737215996, 0.006259709596633911, -0.03283741697669029, 0.013794658705592155, 0.008270664140582085, -0.03811004385352135, -0.0034547955729067326, -0.017387401312589645, 0.023420264944434166, -0.0567481592297554, -0.02321181260049343, 0.03188098967075348, -0.00400964729487896, 0.04644814878702164, 0.015928233042359352, 0.01640644669532776, 0.008276795037090778, -0.02063680998980999, -0.02053871378302574, -0.012053466401994228, -0.025357648730278015, 0.011342274956405163, -0.012194477953016758, -0.0179637111723423, -0.024854909628629684, -0.022733597084879875, 0.02008502371609211, 0.017448710277676582, 0.02464645728468895, -0.010514595545828342, 0.003537563607096672, 0.02967384271323681, -0.04676695913076401, -0.0033934861421585083, -0.030090749263763428, -0.02663288824260235, 0.021200858056545258, -0.00905542727559805, 0.00953364185988903, -0.0025106279645115137, 0.01255007367581129, 0.006560126785188913, 0.03318075090646744, 0.0003301138349343091, -0.011103167198598385, 0.004129201173782349, -0.0028125776443630457, -0.0069279843010008335, 0.013721087016165257, -0.015167993493378162, -0.01492275483906269, -0.008699831552803516, -0.008172568865120411, 0.028619319200515747, -0.025897173210978508, 0.013291919603943825, -0.001226958236657083, 0.0005188324139453471, 0.01630835235118866, 0.03286194056272507, -0.025823600590229034, 0.022905264049768448, 0.015511327423155308, 0.02487943321466446, -0.021115023642778397, 0.008190961554646492, 0.011955371126532555, -0.012151561677455902, -0.012678824365139008, -0.03656504303216934, 0.019876569509506226, -0.0042978026904165745, 0.024168241769075394, 0.007118043955415487, -0.023506097495555878, 0.03210170194506645, -0.008129652589559555, 0.029036223888397217, 0.013659777119755745, 0.01621025614440441, 0.0019833652768284082, 0.02930598519742489, -0.003047086764127016, -0.041396237909793854, 0.008454592898488045, -0.042671479284763336, -0.01926347427070141, -0.015204778872430325, -0.00515000568702817, -0.0014062888221815228, 0.00020059732196386904, 0.019557761028409004, -0.002737473463639617, -0.020514190196990967, -0.01161203719675541, -0.0014039897359907627, -0.027834555134177208], [-0.023225296288728714, 0.014771594665944576, 0.012137006968259811, 0.04013269767165184, -0.03847009316086769, 0.018608372658491135, 0.0033635753206908703, 0.07468927651643753, -0.027113230898976326, -0.06379282474517822, -0.012469528242945671, -0.011299311183393002, 0.07110828161239624, -0.04803645983338356, -0.018020067363977432, 0.028545627370476723, 0.02473442815244198, -0.0039039214607328176, 0.004175693262368441, 0.05893290787935257, -0.01813516952097416, 0.0024267619010061026, -0.01399144995957613, -0.005902243312448263, -0.006148436572402716, 0.022253312170505524, -0.03563087806105614, -0.019222257658839226, 0.034045010805130005, -0.06317894160747528, 0.029850132763385773, -0.044225260615348816, 0.044301994144916534, -0.029875710606575012, -0.004015827551484108, -0.013697297312319279, 0.0077183181419968605, -0.025450626388192177, -0.006580073852092028, 0.02600056491792202, 0.013211305253207684, 0.040644265711307526, -0.0046936580911278725, 0.052129022777080536, -0.009099557995796204, -0.025578519329428673, -0.002901563188061118, -0.013658929616212845, 0.038674719631671906, 0.024593746289610863, -0.011254548095166683, 0.03089885041117668, -0.030387280508875847, -0.01450302079319954, -0.024197278544306755, -0.010365694761276245, 0.029133932664990425, 0.03598897531628609, 0.023775232955813408, -0.005531354807317257, 0.019912878051400185, -0.02762480080127716, -0.008472884073853493, -0.03974901884794235, 0.0013612568145617843, 0.041999928653240204, -0.02933856099843979, 0.02826426364481449, 0.021984737366437912, 0.02300787717103958, -0.007647977210581303, 0.017239922657608986, 0.05489150062203407, 0.0116574103012681, -0.02140922099351883, 0.039314184337854385, -0.010774951428174973, 0.005617682356387377, 0.003334799548611045, -0.006829464808106422, -0.01807122305035591, -0.01202190387994051, 0.0034626920241862535, -0.039288606494665146, -0.026473768055438995, -0.0754566341638565, -0.11428482085466385, -0.04166740924119949, -0.0361936055123806, 0.03698653727769852, 0.003830383298918605, -0.02238120511174202, -0.022636989131569862, 0.04660406336188316, 0.012699734419584274, -0.03555414080619812, -0.008217099122703075, -0.03990248963236809, 0.007436954416334629, -0.00031613450846634805, 0.01974661648273468, -0.014439074322581291, -0.04368811100721359, 0.021242959424853325, 0.05299869179725647, -0.008370570838451385, 0.024504221975803375, -0.01880021207034588, -0.031103478744626045, -0.019529199227690697, -0.06159307435154915, -0.020654654130339622, -0.005592103581875563, 0.05177092179656029, 0.009438473731279373, 0.048880551010370255, 0.02172895148396492, 0.010902843438088894, 0.01085168682038784, -0.011433597654104233, -0.00592142716050148, 0.023851968348026276, 0.03627033904194832, -0.016536513343453407, 0.02928740531206131, -0.010774951428174973, -0.005521762650460005, 0.0013460696209222078, -0.03181967884302139, -0.006637625861912966, 0.03941649943590164, -0.05432877317070961, -0.01463091280311346, 0.0027544868644326925, 0.049852535128593445, 0.033124182373285294, -0.00015117305156309158, -0.01676671952009201, -0.021818477660417557, -0.025079738348722458, 0.033354390412569046, 0.010320932604372501, 0.018518848344683647, 0.0018784224521368742, -0.05059431120753288, -0.017546864226460457, -0.06031414866447449, 0.030464015901088715, 0.01165101584047079, 0.010161066427826881, 0.03854682669043541, -0.04435315355658531, 0.05540307238698006, -0.020808124914765358, -0.004565765615552664, 0.004412294365465641, 0.01872347667813301, 0.007596820127218962, -0.06466249376535416, 0.020884860306978226, -0.03023380972445011, -0.012686945497989655, 0.02867352031171322, 0.043304432183504105, 0.02637145295739174, 0.03133368492126465, -0.03179410099983215, 0.009451262652873993, -0.051182616502046585, -0.009841335006058216, -0.003983854316174984, 0.005803126376122236, -0.04767835885286331, 0.03460773825645447, -0.03494025766849518, -0.011471966281533241, -0.004991008434444666, 0.0343007929623127, -0.06435555219650269, -0.0025290760677307844, -0.022227732464671135, 0.01937572844326496, -0.010883660055696964, 0.006145239342004061, 0.023212505504488945, -0.023813601583242416, 0.02006634883582592, -0.0005978978588245809, -0.01676671952009201, 0.022777670994400978, -0.004476240836083889, -0.020680231973528862, -0.0072067477740347385, 0.022547464817762375, 0.003302826313301921, 0.005812718532979488, 0.011523122899234295, 0.016843454912304878, 0.021511534228920937, -0.011798092164099216, -0.03514488413929939, -0.02798289991915226, 0.010020384564995766, 0.06415092945098877, -0.08220936357975006, -0.005956597626209259, -0.028545627370476723, -0.015935417264699936, 0.005540946498513222, 0.03025938756763935, 0.031026743352413177, -0.024133332073688507, 0.028136370703577995, 0.02731785923242569, -0.013850768096745014, -0.0027416974771767855, -0.05143840238451958, 0.03378922492265701, -0.011241759173572063, 0.06021183356642723, -0.03289397433400154, 0.01780265010893345, -0.014554177410900593, 0.020194241777062416, 0.018263062462210655, 0.041283730417490005, 0.05954679101705551, 0.012770075350999832, -0.007334640249609947, -0.034403108060359955, 0.0018720278749242425, 0.008485673926770687, -0.042332448065280914, -0.03726790100336075, 0.015500582754611969, -0.04417410120368004, 0.01744455099105835, -0.024913476780056953, 0.012968309223651886, 0.029466453939676285, -0.006963751744478941, -0.01681787706911564, -0.006810280494391918, -0.0026441793888807297, 0.039646703749895096, -0.0116574103012681, -0.0005263579660095274, 0.023238085210323334, -0.004562568385154009, -0.02004076912999153, -0.0042268503457307816, 0.032356828451156616, 0.016664404422044754, -0.03061748668551445, -0.02536110207438469, 0.009918070398271084, -0.0019519607303664088, 0.01167019922286272, -0.022278890013694763, -0.0267039742320776, 0.08072580397129059, 0.02170337364077568, 0.006305105052888393, -0.017521286383271217, -0.04077215865254402, 0.004824748262763023, -0.002003117697313428, 0.0638439804315567, -0.0034562973305583, -0.011887616477906704, -0.005831902381032705, 0.011062709614634514, -0.012763680890202522, -0.009412894956767559, -0.046911004930734634, 0.01120339147746563, -0.0021054318640381098, 0.0011941971024498343, 0.011778907850384712, 0.05893290787935257, -0.02859678491950035, 0.0115423072129488, -0.030157074332237244, 0.008600777015089989, -0.008786221034824848, 0.013313619419932365, 0.006982935592532158, 0.023276451975107193, 0.03785621002316475, -0.004632909316569567, 0.05826786532998085, -0.01532153319567442, -0.002004716545343399, -0.024785585701465607, 0.03361017256975174, 0.008421727456152439, 0.07775869965553284, -0.07765638083219528, -0.017713123932480812, -0.02133248560130596, 0.021946368739008904, 0.009604734368622303, -0.011759724467992783, -0.06711803376674652, 0.0010687025496736169, 0.047269102185964584, -0.03550298511981964, -0.013684507459402084, -0.008306624367833138, -0.05724472552537918, 0.003913513384759426, -0.013160147704184055, -0.02798289991915226, -0.06993167102336884, 0.021166224032640457, 0.008396148681640625, 0.0031269739847630262, 0.012846811674535275, -0.0010623078560456634, -0.047550465911626816, 0.01970824971795082, -0.01712481863796711, 0.0280084777623415, -0.033124182373285294, -0.006017346400767565, -0.0046584876254200935, 0.03199872747063637, 0.018608372658491135, -0.019874509423971176, 0.00641701091080904, -0.02046281471848488, -0.03330323100090027, 0.01149754412472248, 0.011638225987553596, 0.0067463344894349575, 0.019171100109815598, 0.0025482599157840014, -0.020833704620599747, -0.006554495543241501, 0.021230170503258705, 0.01813516952097416, -0.056835468858480453, -0.03064306639134884, -0.04573439061641693, -0.042971912771463394, -0.013236884027719498, 0.061030346900224686, -0.011631831526756287, -0.04732026159763336, -0.0027976506389677525, -0.0006682387902401388, -0.03596339747309685, -0.026908602565526962, -0.012060271576046944, -0.0031125859823077917, -0.04706447571516037, 0.04409736767411232, -0.01165101584047079, -0.024593746289610863, 0.037344638258218765, -0.0007833421695977449, 0.009304186329245567, 0.01120339147746563, 0.002326046582311392, 0.05540307238698006, 0.04276728257536888, -0.04059311002492905, 0.04783182963728905, -0.022790459915995598, -0.037421371787786484, -0.023225296288728714, -0.012680551037192345, 0.02759922295808792, 0.008939692750573158, -0.02867352031171322, 0.01104352530092001, 0.052129022777080536, -0.022854406386613846, -0.0009272213210351765, -0.03189641237258911, -0.030719801783561707, -0.026550503447651863, -0.0003824787854682654, -0.06184886023402214, 0.059393320232629776, 0.0036289524286985397, -0.02170337364077568, 0.028392156586050987, -0.05274290591478348, -0.019887298345565796, 0.033124182373285294, -0.01781543903052807, -0.003673714818432927, -0.007264299318194389, -0.04905959963798523, -0.0361936055123806, -0.008383359760046005, -0.04696216061711311, -0.01749570667743683, 0.016894612461328506, -0.03399385139346123, 0.004680869169533253, -0.02275209315121174, 0.005854283459484577, -0.030157074332237244, -0.003000680124387145, 0.004287599120289087, -0.0027337041683495045, 0.009361738339066505, 0.012718918733298779, 0.0077183181419968605, -0.03130810707807541, 0.04535071551799774, 0.03783062845468521, 0.0141832884401083, 0.022867195308208466, 0.030719801783561707, -0.01643419824540615, -0.045913442969322205, -0.03859798610210419, -0.04611806944012642, 0.03744695335626602, -0.004265218041837215, 0.0027113230898976326, 0.02175453118979931, 0.025898249819874763, -0.028545627370476723, -0.02266256883740425, 0.005473803263157606, 0.006413813680410385, 0.014669280499219894, -0.02826426364481449, 0.009591944515705109, 0.027138808742165565, -0.04151393845677376, -0.0389305055141449, 0.0020175056997686625, 0.020974386483430862, -0.03662844002246857, -0.004450662527233362, 0.006887016352266073, 0.04054195433855057, 0.003913513384759426, -0.008172336965799332, -0.015590107068419456, -0.017163187265396118, 0.05264059081673622, -0.013492668978869915, -0.016638826578855515, -0.03225451335310936, -0.017700335010886192, -0.027880586683750153, -0.042332448065280914, 0.03419848158955574, 0.00601414917036891, 0.006397827062755823, 0.008165942505002022, 0.03847009316086769, 0.04379042610526085, -0.032101042568683624, 0.002417169976979494, -0.05092683061957359, -0.003440310712903738, 0.007213142234832048, 0.020641865208745003, -0.053459104150533676, 0.0015251191798597574, 0.0019311781506985426, -0.0062347641214728355, 0.00160425272770226, 0.017904963344335556, 0.006938173435628414, -0.00435474282130599, -0.011906800791621208, 0.0034658892545849085, 0.009304186329245567, -0.05200112983584404, 0.006103673949837685, 0.012846811674535275, -0.048854973167181015, 0.0012317656073719263, -0.06215580180287361, -0.036679595708847046, -0.009777388535439968, -0.01220734789967537, -0.02042444795370102, 0.006624836474657059, 0.0028711888007819653, -0.0026905403938144445, 0.018979260697960854, -0.012680551037192345, 0.028417734429240227, 0.026499345898628235, -0.013211305253207684, 0.020859282463788986, 0.010474403388798237, -0.008396148681640625, -0.0350169911980629, 0.057091254740953445, 0.017623599618673325, -0.0021805688738822937, -0.020232608541846275, 0.0283665768802166, 0.04437873139977455, 0.03760042414069176, 0.041309308260679245, -0.05693778395652771, -0.025552941486239433, 0.007974103093147278, 0.04051637277007103, 0.0012389594921842217, 0.02997802384197712, 0.0018000883283093572, -0.0224323607981205, -0.024133332073688507, -0.014119342900812626, -0.012060271576046944, -0.0010774951661005616, 0.010410456918179989, 0.03496583551168442, 0.005160466302186251, 0.02695976011455059, -0.032356828451156616, -0.02637145295739174, 0.042332448065280914, 0.020667443051934242, 0.009924465790390968, -0.02107669971883297, -0.03550298511981964, 0.043585795909166336, 0.024951845407485962, 0.0014244037447497249, -0.01740618236362934, -0.0008912515477277339, 0.01707366108894348, -0.015922628343105316, -0.037293482571840286, -0.004965430125594139, 0.017303869128227234, -0.044199682772159576, 0.03348228335380554, -0.007967708632349968, -0.041641827672719955, 0.014771594665944576, -0.018237484619021416, 0.016984136775135994, -0.018915314227342606, 0.04312538355588913, 0.014515809714794159, 0.013607772067189217, 0.014349549077451229, 0.026217982172966003, -0.001147036673501134, -0.038393355906009674, 0.03350786119699478, -0.021984737366437912, 0.03064306639134884, 0.0019407701911404729, 0.017598021775484085, 0.010493587702512741, 0.002700132317841053, 0.058421336114406586, 0.02305903472006321, 0.004904680885374546, -0.024913476780056953, 0.016971347853541374, 0.020296555012464523, 0.006739940028637648, -0.052691750228405, -0.0037344638258218765, 0.03655170276761055, -0.021882422268390656, -0.010001201182603836, 0.05560769885778427, 0.020859282463788986, 0.008971665985882282, -0.011280126869678497, 0.018339797854423523, 0.008575198240578175, 0.014349549077451229, 0.009713442996144295, 0.024593746289610863, 0.0204116590321064, 0.000578714010771364, -0.00039766603731550276, -0.015960995107889175, 0.013108991086483002, -0.0019295795354992151, 0.014669280499219894, 0.04320211708545685, 0.02798289991915226, -0.02701091580092907, 0.029798975214362144, 0.0026489754673093557, -0.016242358833551407, -0.04849687218666077, 0.02174174040555954, -0.05335679277777672, -0.016689984127879143, -0.018928105011582375, -0.0016913795843720436, 0.039263028651475906, 0.053510263562202454, -0.0011094682849943638, -0.030157074332237244, -0.013594983145594597, 0.00453379238024354, -0.0005499381804838777, 0.02470885030925274, 0.013415933586657047, 0.005368291866034269, 0.032714925706386566, 0.043969474732875824, -0.0061388444155454636, -0.021511534228920937, 0.0005791136645711958, -0.02302066795527935, -0.03033612295985222, -0.02204868383705616, 0.035349514335393906, 0.013467090204358101, 0.012872389517724514, 0.004578555002808571, 0.014413495548069477, -0.04442988708615303, 0.041616249829530716, -0.024900687858462334, 0.008479279465973377, -0.02202310413122177, -0.01880021207034588, -0.03414732217788696, 0.007507295347750187, 0.012341635301709175, -0.012085850350558758, -0.04586228355765343, -0.026397032663226128, 0.0402350090444088, -0.002043084241449833, 0.0006118861492723227, 0.0038815403822809458, 0.0013164944248273969, 0.004732026252895594, -0.018902525305747986, -0.021920790895819664, 0.001286919228732586, 0.005285161547362804, 0.0361936055123806, 0.04302306845784187, -0.024747217074036598, -0.03465889394283295, 0.018902525305747986, 0.008562409318983555, -0.008217099122703075, -0.03376364707946777, -0.015232007950544357, 0.0020718600135296583, 0.009182688780128956, 0.030489595606923103, -0.011273732408881187, 0.007366613484919071, 0.0044346759095788, 0.006273131817579269, 0.00010211424523731694, 0.020590707659721375, -0.018263062462210655, 0.005851086229085922, 0.03660286217927933, -0.02665281668305397, -0.026729552075266838, 0.02795732207596302, 0.031461577862501144, -0.042997490614652634, 0.052845221012830734, -0.018531637266278267, -0.020923228934407234, -0.043995052576065063, -0.027573643252253532, 0.003676912048831582, -0.026576081290841103, -0.02300787717103958, 0.033379968255758286, -0.027727114036679268, -0.027727114036679268, 0.0041661011055111885, -0.0029751015827059746, -0.011989930644631386, 0.014554177410900593, 0.0015403064899146557, 0.017163187265396118, -0.0009208266856148839, -0.0016993728931993246, 0.024862321093678474, 0.025437837466597557, -0.028059635311365128, 0.035349514335393906, -0.02374965511262417, 0.00923384539783001, -0.01607609912753105, -0.004604133311659098, -0.06563448160886765, -0.03064306639134884, 0.032407984137535095, 0.025527361780405045, -0.015180851332843304, 0.006321091670542955, -0.034684471786022186, 0.04972464218735695, -0.008767037652432919, 0.05524960160255432, -0.03555414080619812, -0.006241158582270145, -0.047166790813207626, -0.037319060415029526, -0.00226689619012177, -0.000901642779354006, 0.027215544134378433, 0.037702735513448715, -0.022202154621481895, -0.007865394465625286, 0.007072460372000933, 0.0009631910943426192, 0.022931141778826714, -0.004668079782277346, -0.04898286238312721, 0.01184924878180027, -0.021869633346796036, -0.01977219618856907, -0.0440206304192543, 0.0030950007494539022, 0.007296272553503513, 0.005672036670148373, -0.01446465216577053, -0.018544426187872887, -0.0022700936533510685, 0.006429800298064947, 0.020334923639893532, -0.0220742616802454, -0.03941649943590164, -0.02500300295650959, -0.02110227756202221, 0.006880621425807476, -0.004146917257457972, 0.008421727456152439, 0.021319694817066193, -0.007149196229875088, 0.00561128742992878, -0.006982935592532158, -0.009598338976502419, -0.03974901884794235, 0.027420172467827797, 0.019874509423971176, 0.009579155594110489, -0.015091326087713242, 0.021511534228920937, 0.03376364707946777, -0.034377530217170715, 0.011465570889413357, -0.036398231983184814, 0.011011552065610886, 0.0061580282635986805, 0.027062073349952698, -0.04645059257745743, -0.013479880057275295, -0.005243596620857716, 0.014925066381692886, 0.0184549018740654, 0.01715039648115635, -0.017943331971764565, -0.00016576079360675067, 0.025770358741283417, 0.0033284048549830914, -0.022521886974573135, -0.011299311183393002, 0.011714961379766464, 0.07325688004493713, 0.009809361770749092, -0.002850406337529421, 0.005326726473867893, -0.004888694267719984, 0.007616003975272179, 0.02569362334907055, -0.04189761355519295, 0.026729552075266838, 0.027036495506763458, 0.02006634883582592, -0.014387916773557663, 0.019145522266626358, -0.024529799818992615, -0.026243560016155243, -0.0027225136291235685, -0.024823952466249466, -0.012124218046665192, 0.016319096088409424, -0.035733189433813095, 0.03135926276445389, 0.012782865203917027, 0.005272372160106897, -0.021575480699539185, 0.02538667991757393, 0.030157074332237244, 0.01039127353578806, 0.003491467796266079, -0.021562691777944565, 0.031052323058247566, 0.030054759234189987, -0.03563087806105614, -0.011139445006847382, 0.04795972257852554, 0.005486592184752226, 0.007603214588016272, -0.009348948486149311, 0.007353824097663164, -0.016178414225578308, -0.006519325077533722, -0.01333919819444418, 0.02234283648431301, 0.022304467856884003, -0.03450542315840721, 0.01236721407622099, 0.034351952373981476, -0.0029703055042773485, -0.049213070422410965, 0.006471365224570036, -0.03391711786389351, 0.008997243829071522, -0.001846449333243072, -0.01167019922286272, -0.03499141335487366, 0.01814795844256878, 0.03202430531382561, -0.002853603567928076, -0.018275851383805275, -0.05893290787935257, -0.008325807750225067, -0.011721356771886349, -0.04041406139731407, 0.0042300475761294365, 0.032433561980724335, -0.05046641826629639, -0.02626913972198963, -0.011925984174013138, 0.035093728452920914, -0.012175374664366245, -0.033073026686906815, -0.0157819464802742, -0.012073061428964138, -0.021933579817414284, -0.028750255703926086, -0.00015496984997298568, -0.008274651132524014, 0.008760643191635609, 0.020974386483430862, 0.025783147662878036, 0.013774032704532146, 0.007967708632349968, -0.01674114167690277, -0.007475322112441063, -0.006404221523553133, 0.039646703749895096, 0.01532153319567442, -0.027420172467827797, -0.03125695139169693, 0.002366013126447797, -0.04586228355765343, 0.011478360742330551, 0.05857481062412262, 0.03519604355096817, -0.00906119029968977, 0.034045010805130005, 0.01640862040221691, 0.0052340044640004635, 0.015960995107889175, -0.00904200691729784, 0.0072387210093438625, 0.004984613973647356, 0.02571920119225979, 0.0033731672447174788, -0.033686909824609756, -0.013211305253207684, -0.03524719923734665, 0.029466453939676285, -0.006982935592532158, -0.02931298315525055, -0.016203992068767548, 0.0062443558126688, 0.027471330016851425, -0.0312057938426733, 0.014413495548069477, 0.03230566903948784, 0.010896448977291584, -0.02795732207596302, -0.007014908827841282, 0.0057295882143080235, -0.05097799003124237, -0.03696095943450928, 0.03908397629857063, 0.014925066381692886, 0.048266664147377014, 0.0031125859823077917, -0.0025610493030399084, -0.005179650150239468, 0.040644265711307526, 0.02143479883670807, -0.004831142723560333, 0.05755166709423065, 0.0034243243280798197, -0.031129058450460434, -0.01876184344291687, 0.03279166296124458, 0.008792615495622158, -0.043636955320835114, 0.017252711579203606, 0.019848931580781937, 0.0051029147580266, -0.0388026125729084, -0.006327486131340265, -0.05046641826629639, -0.033098604530096054, -0.007200353313237429, 0.029747817665338516, 0.010634269565343857, 0.032433561980724335, 0.014682070352137089, -0.02892930433154106, 0.03954439237713814, -0.0028759846463799477, 0.039288606494665146, 0.008619961328804493, 0.0347612090408802, 0.016945768147706985, -0.0018432519864290953, 0.0036992933601140976, 0.031103478744626045, 0.016191203147172928, 0.0571935698390007, -0.004997403360903263, 0.0009240240324288607, -0.01680508628487587, 0.0028168344870209694, -0.003929500002413988, -0.04169298708438873, -0.030131496489048004, 0.014362338930368423, -0.0014595742104575038, 0.021933579817414284, 0.0011430400190874934, -0.028136370703577995, -0.015001801773905754, 0.0011206588242202997, 0.02990128844976425, 0.002613805001601577, 0.020616287365555763, 0.0023915914352983236, -0.01479717344045639, 0.025795936584472656, 0.006580073852092028, 0.024274013936519623, -0.011088288389146328, 0.02101275324821472, -0.019989613443613052, -0.005128493066877127, 0.03744695335626602, -0.01532153319567442, 0.006573679391294718, 0.017649177461862564, 0.007974103093147278, -0.0034658892545849085, 0.017943331971764565, -0.019209468737244606, -0.023468291386961937, 0.018838578835129738, -0.0097006531432271, -0.016907401382923126, 0.03629591688513756, 0.008939692750573158, -0.0115423072129488, 0.027573643252253532, -0.016319096088409424, 0.002484313677996397, -0.04742257297039032, -0.00707885529845953, 0.0367819108068943, 0.015244797803461552, -0.010915633291006088, -0.008140363730490208, 0.03499141335487366, 0.008440911769866943, -0.025066949427127838, -0.008108390495181084, 0.029875710606575012, -0.026576081290841103, -0.020194241777062416, 0.004207666497677565, 0.014554177410900593, -0.0010279366979375482, -0.053203318268060684, 0.013038650155067444, -0.0038591590709984303, 0.02662723883986473, 0.0236729197204113, -0.0013980258954688907, 0.02793174237012863, 0.02303345687687397, -0.02276488207280636, -0.0467575341463089, -0.008594382554292679, 0.03486352041363716, 0.036398231983184814, -0.019516410306096077, -0.023186927661299706, 0.03777947276830673, -0.04315096139907837, 0.04442988708615303, -0.03161504864692688, -0.015462215058505535, 0.023967072367668152, 0.030489595606923103, 0.03320091962814331, -0.040311746299266815, 0.007149196229875088, 0.022509096190333366, 0.014387916773557663, -0.0071428013034164906, -0.013300829567015171, 0.01978498511016369, -0.041590671986341476, -0.008556014858186245, -0.0020798533223569393, 0.0197594054043293, 0.024465853348374367, 0.008376965299248695, 0.015564529225230217, 0.014362338930368423, 0.00690620020031929, -0.02038607932627201, -0.02241957187652588, 0.005019784439355135, -0.004357940051704645, -0.000893649528734386, -0.027906164526939392, -0.0016673997743055224, -0.00748171703889966, -0.007711923681199551, -0.024823952466249466, -0.021191803738474846, 0.01807122305035591, -0.004888694267719984, -0.013505457900464535, 0.015897050499916077, 0.0276503786444664, 0.01836537756025791, -0.009591944515705109, 0.02110227756202221, -0.013249672949314117, 0.016907401382923126, 0.006474562454968691, -0.005157269071787596, 0.025245998054742813, -0.010282564908266068, 0.021127857267856598, 0.0204116590321064, 0.003254866460338235, -0.03184525668621063, -0.0019903285428881645, 0.02143479883670807, 0.02241957187652588, 0.01149754412472248, 0.007404981181025505, -0.011631831526756287, 0.053101006895303726, 0.007417770568281412, -0.022624200209975243, -0.016996925696730614, 0.030515173450112343, 0.03954439237713814, 0.003961473237723112, 0.004114944487810135, -0.014439074322581291, -0.0019743419252336025, 0.04742257297039032, -0.02701091580092907, 0.0024667284451425076, 0.02601335383951664, -0.028852568939328194, -0.01938851736485958, -0.026422610506415367, 0.02502858079969883, -0.017956120893359184, -0.009515209123492241, 0.04302306845784187, -0.03197314962744713, 0.01681787706911564, -0.02341713383793831, -0.012450343929231167, 0.001811278867535293, 0.008293834514915943, -0.01450302079319954, -0.0015778748784214258, 0.01905599609017372, 0.02140922099351883, -0.03956997022032738, 0.005895848851650953, 0.03601455315947533, 0.02101275324821472, -0.018199115991592407, 0.0009416092652827501, -0.014848330058157444, -0.010538349859416485, 0.025412259623408318, 0.0406954251229763, -0.011766118928790092, 0.007392192259430885, 0.046527326107025146, 0.017968909814953804, -0.041232574731111526, 0.0002330043207621202, -0.045580919831991196, 0.0016721957363188267, -0.007002119440585375, -0.013697297312319279, -0.006752728950232267, -0.01167019922286272, 0.005751969292759895, -0.015295954421162605, 0.011887616477906704, 0.0025690426118671894, -0.006541706155985594, -0.001413213205523789, -0.0141832884401083, 0.03954439237713814, -0.015308743342757225, 0.01397866103798151, -0.025079738348722458, -0.02043723687529564, 0.012507895939052105, -0.016344673931598663, 0.018032856285572052, 0.004811958875507116, 0.04680868983268738, 0.002492306986823678, 0.04338116943836212, -0.013224094174802303, -0.010180250741541386, -0.0194013062864542, 0.005656050052493811, 0.0008632750250399113, -0.011625437065958977, 0.082823246717453, -0.03092443011701107, -0.012124218046665192, 0.002110227942466736, -0.016306305304169655, 0.017239922657608986, 0.008498462848365307, 0.03854682669043541, -0.009668679907917976, -0.0012533474946394563, 0.014758805744349957, -0.0021390037145465612, -0.02431238256394863, -0.003027857281267643, -0.013326408341526985, -0.004895089194178581, -0.005422646179795265, 0.022202154621481895, 0.00493025965988636, 0.049264226108789444, 0.01068542618304491, -0.007002119440585375, 0.009285002015531063, 0.01848047971725464, -0.046194806694984436, -0.006887016352266073, 0.015104115940630436, 0.011305705644190311, 0.006362656597048044, 0.0335845947265625, 0.01706087216734886, 0.022905563935637474, 0.01808401383459568, 0.02767595835030079, 0.0004971824819222093, 0.02102554216980934, -0.03714000806212425, -0.021281328052282333, 0.03793294355273247, -0.04338116943836212, -0.020897649228572845, -0.006938173435628414, -0.0138251893222332, -0.009189083240926266, -0.01576915755867958, -0.014311181381344795, -0.006950962357223034, 0.017035294324159622, 0.028238685801625252, -0.004735223483294249, 0.02105112187564373, -0.00924663431942463, -0.0030965993646532297, 0.014221657067537308, 0.014119342900812626, 0.023583395406603813, 0.017521286383271217, 0.020258186385035515, 0.022879986092448235, 0.01264857780188322, 0.03578434884548187, -0.0010958797065541148, -0.008671117946505547, 0.012904362753033638, 0.011695777997374535, -0.024798374623060226, -0.016600459814071655, -0.006474562454968691, -0.04801088199019432, -0.025143684819340706, -0.009911675937473774, -0.0072898780927062035, -0.00690620020031929, -0.006058911792933941, -0.021792897954583168, -0.014132131822407246, 0.03972344100475311, 0.010813319124281406, 0.005873467307537794, -0.01579473540186882, 0.0005243596388027072, 0.02397986128926277, 0.009636706672608852, 0.00042804054100997746, -0.022892775014042854, 0.006931778509169817, -0.017572442069649696, -0.004508214071393013, -0.009796572849154472, 0.01808401383459568, 0.02267535775899887, 0.005595301277935505, 0.038060836493968964, -0.014669280499219894, -0.025834305211901665, 0.0016194400377571583, -0.04749931022524834, 0.009086769074201584, 0.018659530207514763, 0.025898249819874763, 0.01607609912753105, 0.0023356385063380003, -0.005077335983514786, 0.0023004680406302214, -0.01707366108894348, -0.04504377394914627, -0.032740503549575806, -0.0012469528010115027, -0.0017217540880665183, 0.014873908832669258, -0.0019327768823131919, 0.014132131822407246, 0.02238120511174202, 0.009937254711985588, 0.03557971864938736, -0.013863557018339634, -0.008031655102968216, -0.05596579983830452, 0.028213106095790863, 0.017534075304865837, 0.054840344935655594, 0.014196078293025494, 0.013697297312319279, -0.044967036694288254, 0.04934096336364746, -0.0194013062864542, 0.03586108237504959, 0.006183607038110495, 0.027573643252253532, 0.008159548044204712, 0.008479279465973377, 0.028392156586050987, 0.032714925706386566, -0.03798409923911095, 0.00015686826372984797, -0.0015578917227685452, 0.005144479684531689, 0.0194013062864542, 0.0016090486897155643, 0.021549902856349945, 0.03921186923980713, 0.023890336975455284, -0.023481080308556557, -0.024504221975803375, -0.0322800911962986, -0.0031909202225506306, 0.0020063151605427265, -0.016945768147706985, -0.011708566918969154, 0.02762480080127716, -0.06046761944890022, -0.03726790100336075, -0.02006634883582592, 0.004482635296881199, 0.023186927661299706, 0.023519448935985565, 0.0024699256755411625, -0.0018144762143492699, 0.0030774155166000128, 0.014132131822407246, 0.004479438066482544, -0.0382143072783947, -0.019874509423971176, -0.011113866232335567, 0.02496463432908058, -0.061746545135974884, 0.017866594716906548, -0.006215580273419619, 0.055096130818128586, -0.030412858352065086, 0.04107910022139549, 0.009892492555081844, -0.007430559955537319, -0.012437555007636547, -0.02341713383793831, -0.01185564324259758, -0.03023380972445011, 0.01680508628487587, 0.011388835497200489, 0.041283730417490005, 0.005010192282497883, -0.014068185351788998, -0.0036673201248049736, 0.009623917751014233, 0.03056633099913597, -0.0067143612541258335, 0.01218177005648613, -0.006442589685320854, 0.0001859438489191234, -0.0217161625623703, 0.011427203193306923, -0.0026953364722430706, 0.020155873149633408, 0.019017629325389862, -0.038981664925813675, -0.004735223483294249, 0.028903726488351822, 0.005352305248379707, 0.043253276497125626, -0.003071021055802703, 0.017546864226460457, 0.0032804450020194054, 0.004719236865639687, 0.012124218046665192, 0.005131690297275782, -0.008428121916949749, -0.014093764126300812, 0.002023900393396616, -0.010832502506673336, -0.013198516331613064, 0.0028631954919546843, -0.00904840137809515, -0.007507295347750187, 0.016958558931946754, -0.003050238359719515, 0.009093163534998894, 0.016383040696382523, 0.024478642269968987, 0.004377123899757862, -0.00825546681880951, -0.06415092945098877, -0.022163785994052887, -0.030412858352065086, -0.048189930617809296, 0.02441469579935074, -0.024210067465901375, -0.01874905452132225, -0.011049920693039894, -0.004409097135066986, -0.03798409923911095, -0.011734145693480968, 0.01220734789967537, 0.024760005995631218, -0.029850132763385773, -0.01676671952009201, -0.035707611590623856, 0.018633950501680374, -0.012859600596129894, -0.020654654130339622, 0.004466648679226637, -0.02046281471848488, 0.00030074742971919477, 0.021306905895471573, 0.00484393211081624, -0.009975622408092022, 0.0402350090444088, 0.009169898927211761, 0.02046281471848488, 0.008006076328456402, 0.0141832884401083, -0.005796731915324926, 0.0259877759963274, 0.009201872162520885, -0.02496463432908058, 0.02074417844414711, 0.003027857281267643, 0.030847694724798203, -0.006397827062755823, -0.0010103514650836587, 0.039032820612192154, -0.009943649172782898, -0.04169298708438873, -0.00036709170672111213, -0.006448984146118164, 0.04238360747694969, -4.221454946673475e-05, 0.02276488207280636, -0.018173538148403168, -0.009125136770308018, -0.01911994256079197, 0.013543825596570969, 0.0312057938426733, -0.0016642024274915457, 0.0012725313426926732, 0.029389718547463417, 0.02034771256148815, -0.03596339747309685, 0.013096202164888382, -0.011702172458171844, -0.017700335010886192, -0.009847729466855526, 0.015590107068419456, 0.014643702656030655, 0.02244514971971512, 0.019631514325737953, 0.006739940028637648, 0.005141282454133034, -0.004987811204046011, -0.009105952456593513, 0.020219819620251656, 0.0013804406626150012, 0.01265497226268053, 0.0243891179561615, 0.024248436093330383, -0.009368132799863815, 0.0019423688063398004, 0.03204988315701485, -0.05128493160009384, 0.017841016873717308, -0.023468291386961937, 0.008645539171993732, -0.02793174237012863, -0.03125695139169693, 0.013671718537807465, -0.01200272049754858, 0.04972464218735695, -0.004489030223339796, 0.004959035199135542, 0.03396827355027199, -0.03399385139346123, -0.013211305253207684, -0.0033635753206908703, -0.033686909824609756, 0.03279166296124458, 0.006394629832357168, -0.03650054708123207, 0.0021134251728653908, -0.0006994126597419381, 0.014669280499219894, 0.013722875155508518, 0.006493746768683195, 0.026499345898628235, 0.028852568939328194, 0.017687546089291573, 0.008824588730931282, -0.0369098037481308, 0.0038911323063075542, -0.021562691777944565, 0.022636989131569862, 0.0033827591687440872, -0.014451863244175911, 0.030489595606923103, 0.004645698703825474, -0.020616287365555763, 0.021524323150515556, 0.00825546681880951, -0.004351545590907335, 0.007430559955537319, -0.018582794815301895, -0.002764078788459301, -0.01183006539940834, -0.04673195630311966, 0.013531036674976349, -0.0003592982538975775, 0.0010103514650836587, 0.015014590695500374, -0.01874905452132225, 0.0038271858356893063, 0.018032856285572052, 0.0031429606024175882, 0.02036050148308277, 0.02103833109140396, 0.004095760174095631, -0.024823952466249466, -0.0008624757174402475, -0.010704610496759415, -0.008466489613056183, 0.02368570864200592, 0.010608690790832043, 0.01874905452132225, 0.0010559132788330317, -0.011631831526756287, 0.023186927661299706, 0.0024971028324216604, -0.0011070702457800508, -0.00987970270216465, -0.03386595845222473, 0.03384038060903549, -0.003440310712903738, 0.01645977795124054, 0.01576915755867958, 0.021166224032640457, -0.03481236472725868, -0.026729552075266838, -0.020936017856001854, -0.02637145295739174, 0.002322849351912737, -0.04862476512789726, -0.0507989376783371, 0.005953400395810604, -2.2843316401122138e-05, -0.003098198212683201, -0.00036988937063142657, -0.003849567146971822, -0.012629393488168716, -0.04184645786881447, 0.02009192667901516, 0.024120543152093887, -0.027445750311017036], [-0.0015560246538370848, 0.002084175357595086, 0.016829004511237144, 0.02475276216864586, -0.035142216831445694, 0.035501301288604736, -0.01158639881759882, 0.009779016487300396, 0.05448480322957039, 0.02228706143796444, 0.01968969590961933, -0.023759299889206886, 0.0199410542845726, -0.02657211385667324, -0.0148061728104949, 0.03995392471551895, -0.004371830727905035, 0.08062601834535599, 0.005865016020834446, 0.014734356664121151, 0.045220471918582916, 0.04584287852048874, 0.010371502488851547, 0.023400217294692993, -0.022837653756141663, 0.018025947734713554, -0.007409071084111929, 0.012142976745963097, 0.020910577848553658, -0.053048472851514816, 0.07038018852472305, -0.025016088038682938, 0.04256325960159302, 0.007474903017282486, 0.0401693731546402, 0.04759041592478752, -0.039355453103780746, -0.00842647161334753, 0.02695513516664505, 0.02676362358033657, -0.037224896252155304, 0.024633066728711128, -0.006427578628063202, -0.013956343755126, -0.025518804788589478, 0.05295271426439285, 0.035501301288604736, 0.008869340643286705, -0.02846328169107437, 0.020168473944067955, -0.019222889095544815, -0.020479679107666016, 0.019522124901413918, -0.024214137345552444, 0.04455018416047096, 0.018277304247021675, 0.03231743350625038, -0.003047713777050376, -0.007899817079305649, -0.031790781766176224, 0.017307782545685768, 0.010772478766739368, -0.040001802146434784, 0.01760701648890972, -0.040935419499874115, -0.006098419893532991, 0.02575819194316864, 0.04950552433729172, -0.06592756509780884, -0.018851837143301964, 0.002859195228666067, 0.012855157256126404, 0.03353831544518471, -0.02865479327738285, -0.022239182144403458, 0.013968313112854958, 0.03523797541856766, 0.041055113077163696, 0.00045371585292741656, -0.003979832399636507, -0.03969059884548187, 0.009862801991403103, -0.0160988699644804, 0.0287266094237566, 0.009838863275945187, -0.023208705708384514, -0.044669877737760544, -0.012190855108201504, -0.02707482874393463, 0.02980385720729828, 0.028056321665644646, 0.018851837143301964, 0.04110299050807953, 0.07071533799171448, 0.002163472818210721, -0.040193311870098114, 0.034064970910549164, -0.02109011821448803, -0.0277690552175045, 0.05367087945342064, 0.010586951859295368, -0.006182205397635698, -0.0160988699644804, -0.0036207495722919703, 0.039163943380117416, -0.05764472857117653, -0.010251808911561966, -0.01937849074602127, 0.02076694369316101, -0.021628743037581444, -0.016242504119873047, 0.00997651182115078, -0.017906252294778824, 0.02525547705590725, 0.04715951532125473, 0.02784087136387825, -0.015943268314003944, -0.03303559869527817, 0.016302350908517838, -0.024609128013253212, 0.004186304751783609, 0.012783341109752655, 0.015177224762737751, -0.04512471333146095, -0.027601484209299088, -0.00906085129827261, -0.011197392828762531, 0.0032048122957348824, -0.02594970352947712, -0.03255682438611984, 0.03691369295120239, -0.013609230518341064, 0.008336701430380344, -0.028798425570130348, 0.010521120391786098, -0.038924556225538254, -0.005320407450199127, -0.038469716906547546, -0.025159722194075584, 0.005592711735516787, -0.0021859153639525175, 0.033107418566942215, 0.039355453103780746, 0.034304358065128326, -0.019749542698264122, -0.06659785658121109, -0.019581971690058708, 0.044095344841480255, 0.007008095737546682, -0.03284408897161484, -0.04115086793899536, 0.023124920204281807, -0.034304358065128326, 0.028439342975616455, -0.02057543396949768, 0.0287266094237566, -0.019139103591442108, 0.0434250570833683, -0.0037763521540910006, 0.037344589829444885, -0.020743004977703094, -0.017319751903414726, -0.043401118367910385, -0.014889959245920181, 0.0007050736458040774, -0.03255682438611984, 0.012047221884131432, 0.019330613315105438, -0.016745219007134438, -0.056352030485868454, -0.02594970352947712, -0.022741898894309998, -0.044358670711517334, 0.003749420866370201, -0.025111844763159752, -0.02985173463821411, 0.004018732812255621, -0.0028816380072385073, -0.0034471929538995028, -0.06477850675582886, 0.013932405039668083, 0.0021589843090623617, -0.017583077773451805, -0.021628743037581444, -0.004015740472823381, 0.02537517063319683, -0.0059338402934372425, 0.015835542231798172, -0.0038122604601085186, 0.03042626567184925, -0.03124018758535385, -0.02930114045739174, 0.01836109161376953, 0.004422700963914394, -0.03863728791475296, 0.04462200030684471, -0.057740483433008194, 0.01818154938519001, 0.004724928643554449, 0.033083476126194, 0.06530515849590302, -0.03447192907333374, 0.02184419147670269, -0.0010922095971181989, -0.061905842274427414, -0.033610131591558456, -0.007995572872459888, -0.028080260381102562, 0.03578856587409973, 0.006840523798018694, -0.01465057022869587, -0.043664444237947464, -0.039355453103780746, 0.0017280851025134325, -0.012543952092528343, 0.01237638108432293, -0.00010491944703971967, 0.007762168999761343, -0.004614211618900299, -0.006469471845775843, 0.006026603281497955, -0.012304564006626606, 0.010006435215473175, 0.005936832632869482, 0.0024911356158554554, 0.07291770726442337, -0.006158266682177782, -0.029516590759158134, -0.012998790480196476, -0.088621586561203, -0.02480063959956169, 0.030833227559924126, 0.054628435522317886, 0.0038930540904402733, -0.05529872328042984, -0.010455288924276829, -0.007349224295467138, 0.012268655933439732, 0.02088663913309574, -0.029372958466410637, 0.045603491365909576, 0.018420938402414322, 0.003785329172387719, -0.005176774226129055, 0.008163144811987877, -0.014279518276453018, 0.01076649408787489, -0.007277407683432102, 0.03119231015443802, -0.012675615958869457, -0.020168473944067955, -0.018289273604750633, 0.007361193653196096, -0.07579036802053452, 0.03552524000406265, -0.0009044393082149327, 0.06358156353235245, 0.004036686848849058, 0.03320317342877388, -0.005479002371430397, 0.0016921767964959145, -0.012807279825210571, 0.0005505933659151196, -0.011095652356743813, -0.06769904494285583, -0.03195835277438164, 0.03327498957514763, -0.0609961673617363, -0.019175011664628983, 0.0540539026260376, -0.040121495723724365, 0.03832608461380005, 0.027314217761158943, 0.02480063959956169, -0.024920333176851273, 0.00556877302005887, 0.006768707185983658, 0.009767047129571438, 0.03100079856812954, 0.020467709749937057, -0.008264884352684021, -0.04526834934949875, -0.0023908917792141438, -0.02721846103668213, 0.0009208972915075719, 0.03404103219509125, -0.012699554674327374, -0.06066102162003517, -0.0314556360244751, 0.03681793808937073, -0.00039125041803345084, -0.008887294679880142, -0.03258076310157776, -0.02494427189230919, 0.025901826098561287, 0.02626090869307518, 0.04615408554673195, 0.03370588645339012, 0.04739890620112419, 0.03447192907333374, -0.009671291336417198, 0.03868516534566879, -0.025806071236729622, 0.017535200342535973, -0.005502941086888313, 0.008402532897889614, 0.007696337532252073, -0.027936626225709915, 0.019593941047787666, -0.04407140612602234, 0.011867680586874485, -0.008875325322151184, -0.014602692797780037, -0.019103195518255234, 0.01596720702946186, -0.0694226399064064, 0.046178024262189865, 0.016840973868966103, -0.007103851065039635, 0.0008894775528460741, 0.006254022009670734, 0.03262864053249359, 0.0268833190202713, -0.02475276216864586, 0.017020516097545624, -0.06214522942900658, 0.00445262435823679, 0.02506396546959877, -0.023196736350655556, 0.018983500078320503, 0.005024163983762264, -0.0009029431384988129, 0.04893099144101143, -0.03957090526819229, 0.01584751345217228, 0.00664302846416831, 0.01723596453666687, 0.02146117016673088, -0.02227509208023548, -0.05386239290237427, 0.005778237711638212, -0.0026527228765189648, -0.011640260927379131, -0.021317537873983383, -0.02033604495227337, 0.017954129725694656, 0.059942856431007385, 0.023950809612870216, -0.01006628293544054, 0.045364104211330414, 0.012268655933439732, 0.02128162980079651, -0.02216736599802971, -0.027673300355672836, -0.07737033069133759, 0.025087904185056686, -0.01180783286690712, -0.061331309378147125, -0.03490282967686653, -0.009689245373010635, 0.016840973868966103, 0.020359983667731285, -0.0015036584809422493, 0.023436125367879868, -0.05841077119112015, 0.06836932897567749, -0.007295361720025539, 0.016625525429844856, 0.06932688504457474, -0.010467258282005787, -0.0010720111895352602, 0.0382542684674263, 0.0009223934612236917, -0.02494427189230919, -0.01912713423371315, 0.003994794096797705, -0.023472033441066742, 0.033490438014268875, -0.042012665420770645, -0.024657005444169044, 0.022705990821123123, -0.00728937704116106, 0.01212502270936966, -0.021544957533478737, 0.05529872328042984, 0.008576089516282082, -0.06583181023597717, 0.05309635028243065, 0.04993642121553421, -0.043281424790620804, -0.005742329638451338, -0.0023744336795061827, -0.01810973323881626, -0.0005865016137249768, -0.014973744750022888, 0.023843085393309593, 0.005897931754589081, 0.034687381237745285, 0.016326289623975754, 0.004736898001283407, 0.04761435464024544, -0.05098973214626312, 0.0020527555607259274, -0.0143633047118783, -0.006445532664656639, -0.009665306657552719, -0.04423897713422775, -0.03073747083544731, 0.018408969044685364, -0.039283636957407, 0.05352724716067314, -0.02910963073372841, 0.024262014776468277, 0.020407861098647118, -0.0173556599766016, -0.04380808025598526, -0.008923202753067017, 0.06181008741259575, 0.022107519209384918, 0.022741898894309998, 0.029660223051905632, 0.029133569449186325, 0.0031060646288096905, 0.028798425570130348, 0.0032706442289054394, 0.04493320360779762, -0.006188190542161465, 0.019581971690058708, 0.03030657209455967, -0.034447990357875824, -0.0017580086132511497, 0.01596720702946186, 0.014016191475093365, 0.03511827811598778, -0.02834358811378479, -0.038230329751968384, 0.04897886887192726, -0.044598061591386795, 0.02898993529379368, -0.01989317685365677, -0.004587280564010143, 0.010012419894337654, -0.03799093887209892, 0.02834358811378479, 0.02147313952445984, -0.020312106236815453, -0.0013450635597109795, -0.006744768470525742, 0.033418621867895126, 0.02865479327738285, -0.000987477134913206, 0.02537517063319683, -0.06511364877223969, 0.016805065795779228, -0.05702231824398041, -0.02253841795027256, -0.002622799249365926, -0.02657211385667324, 0.0383979007601738, -0.013956343755126, 0.02014453522861004, 0.053623002022504807, 0.02544698864221573, 0.03459162637591362, 0.016134778037667274, -0.016493860632181168, -0.0030222786590456963, -0.03844577819108963, -0.03937939181923866, 0.0015620093327015638, -0.028630852699279785, 0.029396897181868553, 0.057548973709344864, -0.028798425570130348, -0.031599268317222595, -0.0032885982654988766, -0.040696028620004654, -0.03571674972772598, -0.027888748794794083, -0.010784448124468327, 0.013178331777453423, 0.018349122256040573, -0.029205385595560074, 0.01098194345831871, 0.0593683235347271, -0.015440552495419979, 0.05209091678261757, -0.006834539119154215, -0.014351335354149342, -0.019929084926843643, -0.010473242960870266, -0.025734253227710724, 0.04651316627860069, -0.010940049774944782, -0.010479227639734745, -0.02714664489030838, 0.010868233628571033, 0.004165358375757933, 0.008396548219025135, -0.0010278739500790834, -0.010431350208818913, -0.023029165342450142, 0.006493410561233759, 0.0135134756565094, 0.04007361829280853, 0.011299132369458675, 0.015009652823209763, 0.011370949447154999, 0.024130351841449738, -0.018708204850554466, -0.033490438014268875, 0.02834358811378479, 0.00846238061785698, -0.015201163478195667, -0.013298026286065578, -0.010162037797272205, -0.011544506065547466, -0.0049583325162529945, -0.0061103892512619495, 0.001298682065680623, 0.0018432907527312636, 0.017212025821208954, 0.0314556360244751, -0.013944374397397041, -0.0023145866580307484, 0.010347563773393631, -0.032413192093372345, -0.04256325960159302, -0.009449857287108898, -0.01287909597158432, -0.0020392900332808495, -0.051995161920785904, -0.0019555040635168552, 0.013489536941051483, 0.04701588302850723, 0.013333934359252453, 0.028487220406532288, 0.008354655466973782, -0.011299132369458675, 0.005218667443841696, 0.01667340286076069, -0.003937939181923866, 0.020994363352656364, 0.016613556072115898, 0.05683080852031708, 0.00034823533496819437, -0.010946035385131836, 0.0036985508631914854, 1.5592975614708848e-05, 0.009198499843478203, -0.008911233395338058, -0.03492676839232445, 0.034376174211502075, 0.006230083294212818, 0.020862700417637825, -0.003988809417933226, 0.0435686893761158, -0.03463950380682945, 0.0035279865842312574, -0.003483101259917021, -0.019665757194161415, 0.014183763414621353, -0.01449496764689684, -0.025806071236729622, -0.006119366269558668, 0.03693763166666031, 0.0019345575710758567, 0.00890524871647358, -0.008133221417665482, -0.01457875408232212, -0.03578856587409973, 0.03037838824093342, -0.008504273369908333, 0.03164714574813843, 0.03679399937391281, 0.01089217234402895, 0.016613556072115898, -0.05443692207336426, 0.0020931523758918047, 0.007935726083815098, 0.013489536941051483, -0.0066071199253201485, -0.008151175454258919, -0.020300136879086494, -0.011215346865355968, -0.03243713080883026, 0.0003998534521088004, -0.01894759200513363, 0.03978635370731354, 0.01420770213007927, 0.009078805334866047, 0.009300239384174347, 0.01679309643805027, -0.0268833190202713, 0.02764936164021492, 0.01189760398119688, -0.005550818517804146, 0.018229426816105843, 0.008875325322151184, 0.0030940952710807323, 0.00568248238414526, 0.008552150800824165, -0.02051558718085289, 1.9204841009923257e-05, -0.010257793590426445, 0.006978171877563, -0.019210919737815857, -0.03231743350625038, 0.03509433940052986, 0.015177224762737751, 0.03748822584748268, -0.014734356664121151, 0.010221884585916996, -0.012639707885682583, -0.020431799814105034, -0.000896210374776274, -0.047063760459423065, -0.02399868704378605, -0.024345800280570984, 0.0034591625444591045, -0.016565678641200066, -0.00883343257009983, 0.04866766184568405, -0.00912668276578188, 0.026859378442168236, 0.024633066728711128, -0.04273083060979843, -0.019677726551890373, 0.009024943225085735, -0.015691909939050674, -0.017966099083423615, 0.0626240074634552, 0.044215038418769836, -0.01617068611085415, -0.023196736350655556, 0.008306778036057949, 0.014016191475093365, -0.017714742571115494, 0.004530425649136305, 0.016649464145302773, 0.003186858259141445, -0.013142423704266548, -0.005206698086112738, -0.036698244512081146, 0.03990604728460312, 0.036841876804828644, -0.0031748886685818434, 0.022203274071216583, 0.010545059107244015, 0.006816585082560778, 0.03566887229681015, -0.031096553429961205, 0.01281924918293953, -0.023136889562010765, 0.01667340286076069, -0.002139533869922161, -0.006164251361042261, 0.061905842274427414, 0.026859378442168236, 0.01773868128657341, -0.008540181443095207, 0.007570658344775438, -0.006236067973077297, -0.011640260927379131, 0.05098973214626312, -0.00047952489694580436, 0.02733815647661686, -0.009749093092978, 0.06090041249990463, -0.02714664489030838, -0.04411928355693817, -0.015584185719490051, 0.04392777383327484, -0.007492857053875923, 0.014854050241410732, 0.013800742104649544, -0.006780676543712616, -0.002396876458078623, 0.01755913905799389, 0.02930114045739174, -0.03693763166666031, -0.004362853709608316, -0.02355581894516945, 0.050223689526319504, -0.014327396638691425, -0.009665306657552719, -0.0005969748599454761, -0.0007922259974293411, 0.01502162218093872, 0.010760508477687836, 0.007127789780497551, 0.017128240317106247, 0.011023836210370064, -0.02822389267385006, 0.0008333708974532783, 0.005054087843745947, 0.022526448592543602, 0.006577196530997753, -0.009862801991403103, 0.04979278892278671, -0.015296919271349907, 0.0013966817641630769, 0.014088007621467113, -0.05266544967889786, -0.04186903312802315, 0.005039126146584749, 0.006798630580306053, -0.011855711229145527, 0.022813715040683746, 0.005446086172014475, -0.03339468315243721, -0.009252361953258514, -0.029253263026475906, 0.01152056735008955, -0.010179991833865643, 0.03542948514223099, -0.03528585284948349, -0.024704882875084877, 0.04672861844301224, -0.0038062757812440395, -0.03301165997982025, 0.0015620093327015638, -0.03238925337791443, -0.04660892114043236, -0.005685474723577499, 0.023902932181954384, -0.019079256802797318, -0.03806275501847267, 0.018540631979703903, 0.03863728791475296, 0.003201819956302643, 0.011239285580813885, -0.000683005026075989, 0.01411194633692503, 0.03061777725815773, -0.0005663032061420381, -0.041198745369911194, 0.008731692098081112, -0.015871452167630196, -0.001980939181521535, 0.028822364285588264, -0.05860228091478348, 0.01874411292374134, -0.025662437081336975, 0.014339365996420383, -0.027673300355672836, -0.030952921137213707, 0.010975958779454231, -0.007857924327254295, -0.007032034453004599, 0.03523797541856766, 0.007756184320896864, 0.025614559650421143, -0.028271770104765892, 0.0148061728104949, -0.02259826473891735, -0.014614662155508995, -0.012244717217981815, 0.02487245574593544, 0.04703982174396515, -0.025231538340449333, 0.005751306656748056, 0.01190358866006136, 0.048141010105609894, 0.020000901073217392, -0.039858169853687286, -0.04060027375817299, 0.0010084236273542047, -0.0007162949768826365, 0.008187083527445793, -0.007187637034803629, -0.019282735884189606, -0.014040130190551281, 0.03497464582324028, -0.002212846651673317, 0.0032407206017524004, -0.036770060658454895, -0.05668717622756958, -0.009773031808435917, -0.0373685322701931, -0.005823122803121805, -0.03112049214541912, 0.017212025821208954, -0.0026377609465271235, 0.00042154802940785885, 0.04866766184568405, -0.0268833190202713, 0.013812711462378502, 0.034184664487838745, -0.012208809144794941, 0.011400872841477394, 0.0031539422925561666, -0.00476682186126709, -0.03748822584748268, -0.03720095753669739, 0.007977618835866451, 0.009916665032505989, -0.045364104211330414, -0.006101412232965231, 0.028391465544700623, -0.017271874472498894, 0.024142321199178696, -0.023005226626992226, 0.024333830922842026, 0.02153298817574978, 0.022562356665730476, -0.039666660130023956, 0.01259183045476675, 0.03959484398365021, -0.032173801213502884, 0.01518919412046671, 0.03384952247142792, -0.012131007388234138, 0.0005161812296137214, 0.017786558717489243, -0.04780586436390877, -0.05386239290237427, 0.0339692160487175, -0.038350023329257965, -0.010060298256576061, 0.029755979776382446, 0.020048778504133224, 0.027098767459392548, -0.020527556538581848, 0.008546166121959686, 0.006936279125511646, -0.014040130190551281, 0.0013450635597109795, 0.044023528695106506, -0.011939496733248234, 0.011478674598038197, 0.023376278579235077, 0.024010656401515007, 0.001603902317583561, 0.016493860632181168, -0.010814371518790722, -0.00423119030892849, 0.008492304012179375, 0.010634830221533775, -0.0005603184690698981, 0.056543540209531784, 0.009401979856193066, -0.009623413905501366, -0.009671291336417198, -0.020216351374983788, 0.041198745369911194, 0.02088663913309574, -0.04335324093699455, -0.0046501196920871735, 0.005021171644330025, -0.03162320703268051, -0.004305998794734478, -0.008294808678328991, -0.0007234018412418664, -0.02147313952445984, 0.022765837609767914, -0.006822569761425257, -0.026476357132196426, -0.07559885829687119, -0.009288270026445389, -0.01019794587045908, 0.005467032548040152, -0.018420938402414322, -0.00906085129827261, 0.023244613781571388, 0.026931196451187134, 0.04237174987792969, 0.0023998687975108624, -6.251216836972162e-05, -0.02506396546959877, 0.057740483433008194, -0.0143633047118783, 0.001840298413299024, -0.040624212473630905, -0.028750548139214516, -0.0040277098305523396, 0.005227644462138414, 0.03238925337791443, -0.0033933306112885475, 0.0004129449953325093, 0.035190094262361526, 0.003851161105558276, -0.008031480945646763, -0.0025449979584664106, -0.026428479701280594, -0.021317537873983383, 0.016086900606751442, 0.047446783632040024, 0.006619089283049107, 0.0148061728104949, -0.025327293202280998, 0.03420860320329666, 0.015512368641793728, -0.020240290090441704, 0.012555922381579876, 0.019282735884189606, 0.004632165655493736, 0.02846328169107437, -0.018025947734713554, -0.009318193420767784, -0.005709413439035416, 0.00032822394859977067, 0.001713123288936913, 0.005266544874757528, 0.02209554985165596, 0.046991944313049316, 0.005760283675044775, -0.04225205257534981, -0.011484659276902676, 0.0182413961738348, -0.022885531187057495, -0.033227112144231796, -0.03609977290034294, 0.0033035599626600742, 0.07248681038618088, -0.002884630346670747, -0.016529768705368042, 0.010557028464972973, 8.588994387537241e-05, 0.0043239532969892025, 0.04040876403450966, -0.01785837486386299, -0.0053503308445215225, -0.011933512054383755, 0.004407739266753197, 0.007259453646838665, 0.0019973970483988523, 0.00594880199059844, 0.009479780681431293, -0.022574326023459435, 0.022251153364777565, 0.015440552495419979, 0.015943268314003944, 0.006535303313285112, -0.004979278892278671, -0.04960127919912338, -0.026811501011252403, 0.019917115569114685, 0.005685474723577499, -0.03605189546942711, 0.07760972529649734, -0.020946485921740532, -0.03672218322753906, 0.0025943717919290066, -0.0020871676970273256, 0.012603799812495708, -0.008719722740352154, -0.03238925337791443, 0.007917771115899086, -0.023053104057908058, 0.010814371518790722, -0.02013256587088108, -0.0008430960588157177, 0.0004316472331993282, 0.0009478284628130496, -0.017092332243919373, -0.003121026325970888, -0.017762620002031326, 0.028056321665644646, -0.03157532960176468, 0.0003848916676361114, -0.02020438201725483, 0.028582975268363953, -0.02051558718085289, 0.030354449525475502, 0.0005191736272536218, -0.028056321665644646, -0.0056525589898228645, 0.005894939415156841, -0.009773031808435917, -0.0156560018658638, -0.021173903718590736, 0.035142216831445694, 0.03363407030701637, 0.018097763881087303, 0.020659219473600388, -0.004350884351879358, 0.008641921915113926, 0.015165255405008793, 0.0015949252992868423, 0.006702875252813101, 0.045220471918582916, 0.025782130658626556, 0.055394478142261505, -0.04079178348183632, -0.04261113703250885, 0.037967000156641006, 0.015308888629078865, 0.0011370949214324355, 0.01051513571292162, 0.0035998031962662935, 0.01906728744506836, 0.03818245232105255, 0.036339160054922104, 0.007636490277945995, -0.005667520686984062, 0.027050890028476715, 0.002565944567322731, 0.005772253032773733, 0.004491524770855904, 0.009407964535057545, 0.004288044758141041, 0.000597348902374506, -0.011771924793720245, 0.018863806501030922, -0.002200877061113715, -0.038230329751968384, 0.00610739691182971, -0.005464040208607912, -0.019677726551890373, 0.043089915066957474, -0.01584751345217228, 0.018013978376984596, 0.030139001086354256, -0.022322969511151314, 0.01007226761430502, 0.01110762171447277, -0.009036912582814693, 0.007756184320896864, 0.03296378254890442, -0.011706093326210976, 0.03162320703268051, -0.017966099083423615, 0.011089667677879333, 0.0039558932185173035, -0.058362893760204315, 0.026213031262159348, -0.008474349975585938, 0.0222272127866745, -0.003115041647106409, 0.030282633379101753, -0.027170583605766296, -0.01029370166361332, 0.03957090526819229, -0.01559615507721901, 0.045483797788619995, -0.031790781766176224, 0.010257793590426445, 0.0006983408820815384, 0.014602692797780037, -0.0023370294366031885, 0.008091327734291553, -0.03629128262400627, 0.022562356665730476, 0.008288823999464512, -0.011747986078262329, 0.05194728448987007, -0.015404644422233105, 0.02487245574593544, 0.010557028464972973, 0.013465598225593567, 0.028559036552906036, -0.051229119300842285, -0.02556668221950531, -0.009605459868907928, -0.016757188364863396, 0.018971530720591545, -0.0066131046041846275, -0.013585291802883148, 0.020359983667731285, 0.04385595768690109, -0.021257691085338593, 0.008031480945646763, 0.009545613080263138, -0.0046052346006035805, -0.05108548700809479, -0.02058740332722664, -0.029947489500045776, 0.0008064397261478007, 0.017188087105751038, 0.012938943691551685, 0.019845299422740936, -0.003180873580276966, 0.004697997588664293, 0.011101637035608292, 0.000993461930193007, -0.05352724716067314, -0.04988854378461838, -0.023244613781571388, 0.006092434749007225, -0.01249607466161251, 0.006164251361042261, 0.010568997822701931, -0.021413292735815048, 0.00043725789873860776, 0.007002111058682203, -0.019653787836432457, 0.010389456525444984, -0.00020460228552110493, -0.011855711229145527, -0.025901826098561287, 0.010054313577711582, -0.007708306889981031, 0.0035010555293411016, 0.005859031341969967, 0.007157713174819946, 0.048141010105609894, -0.006684921216219664, 0.01881592907011509, -0.01120337750762701, 0.04703982174396515, 0.01066475361585617, 0.024513373151421547, 0.004919431637972593, 0.010814371518790722, -0.024609128013253212, 0.0022831668611615896, 0.006116373930126429, -0.00413543451577425, -0.021389354020357132, 0.022945377975702286, 0.005490971729159355, 0.01496177539229393, -0.014471028931438923, 0.024190198630094528, 0.0016487876418977976, 0.0009829886257648468, 0.031479574739933014, -0.02999536693096161, 0.03806275501847267, -0.04368838295340538, -0.014243610203266144, -0.028822364285588264, 0.005730359815061092, -0.000999446609057486, -0.019593941047787666, -0.005018179304897785, 0.03856547176837921, 0.006074480712413788, -0.014997683465480804, 0.015368735417723656, 0.004635157994925976, 0.02910963073372841, -0.022825684398412704, -0.0029414850287139416, 0.008534196764230728, -0.027314217761158943, -0.028104199096560478, -0.026213031262159348, -0.002353487303480506, 0.03169502690434456, 0.029875673353672028, -0.011921542696654797, -0.004123465158045292, -0.010724600404500961, -0.001780451275408268, -0.03763185814023018, 0.0732528492808342, 0.016817035153508186, -0.0020647249184548855, -0.0135134756565094, 0.03451980650424957, -0.015452521853148937, -0.03138381987810135, -0.00852222740650177, -0.02253841795027256, -0.0034651472233235836, 0.008510258048772812, 0.022514479234814644, -0.0009276300552301109, 0.0033574223052710295, 0.012663646601140499, 0.002890615025535226, -0.007750199642032385, -0.011885634623467922, -0.003925969824194908, -0.0007660429109819233, -0.010958004742860794, 0.001438574749045074, 0.040001802146434784, -0.012190855108201504, 0.007762168999761343, -0.011095652356743813, -0.004413723945617676, -0.0034232542384415865, 0.005371277220547199, 0.009545613080263138, 0.015237072482705116, 0.05888954922556877, -0.019474247470498085, -0.024154290556907654, 0.005380254238843918, -0.0029788895044475794, 0.004165358375757933, -0.03729671239852905, 0.005553810857236385, 0.03193441405892372, -0.004865569528192282, -0.015368735417723656, -0.005553810857236385, 0.024453526362776756, 0.0052844989113509655, 0.03238925337791443, -0.03492676839232445, -0.007750199642032385, 0.05592113360762596, 0.02448943443596363, 0.011622306890785694, 0.012131007388234138, 0.002833760343492031, -0.02544698864221573, -0.021556926891207695, -0.0010076755424961448, -0.024609128013253212, -0.030186878517270088, -0.015703879296779633, -0.017583077773451805, -0.011376934126019478, 0.01158639881759882, 0.010299686342477798, 0.026931196451187134, 0.013489536941051483, -0.019175011664628983, -0.0407678447663784, -0.00039536491385661066, -0.02076694369316101, -0.003659650217741728, 0.012771371752023697, -0.00959947519004345, -0.004461601376533508, -0.009084790013730526, 0.029013875871896744, 0.014889959245920181, -0.0010884691728278995, 0.03126412630081177, -0.014255579560995102, -0.032987721264362335, 0.017882313579320908, 0.02171252854168415, 0.038541533052921295, 0.05371875688433647, -0.027577543631196022, -0.0034801089204847813, 0.007857924327254295, 0.035956140607595444, -0.011598368175327778, -0.022957349196076393, 0.0017355659510940313, -0.017032485455274582, -0.01686491258442402, 0.010413396172225475, 0.024130351841449738, 0.033059537410736084, 0.0012283617397770286, -0.006008649244904518, 0.0080494349822402, -0.037967000156641006, 0.009443872608244419, -0.029013875871896744, -0.03339468315243721, 0.017762620002031326, -0.01584751345217228, -0.031168371438980103, 0.006295915227383375, -0.014291487634181976, 0.006337807979434729, -0.003468139562755823, -0.032796211540699005, 0.0037883215118199587, -0.004141419660300016, -0.007917771115899086, 0.006696890573948622, -0.0031748886685818434, -0.0010405915090814233, -0.011454734951257706, 0.0041474043391644955, -0.012520013377070427, 0.027553604915738106, 0.00606251135468483, 0.018672294914722443, -0.005975733045488596, -0.005655551329255104, 0.018516693264245987, -0.025351231917738914, 0.014794203452765942, 0.036650363355875015, 0.04237174987792969, -0.03214986249804497, -0.0002130182838300243, 0.028271770104765892, 0.01781049743294716, 0.042706891894340515, 0.012077145278453827, -0.03200623020529747, -0.01989317685365677, 0.014243610203266144, 0.005607673432677984, -0.04766223207116127, 0.016146747395396233, -0.0075886123813688755, -0.001303918776102364, -0.036698244512081146, 0.01982136070728302, -0.01303469855338335, 0.002292144112288952, -0.007869893684983253, 0.0069602178409695625, 0.024728821590542793, -0.0009635383612476289, 0.03365800902247429, 0.029779918491840363, 0.012400319799780846, -0.01862441748380661, 0.007486872375011444, 0.00016186770517379045, 0.005104957614094019, 0.012831218540668488, -0.03193441405892372, -0.002634768607094884, -0.06568817794322968, -0.016757188364863396, 0.017966099083423615, 0.015548276714980602, -0.015931298956274986, 0.03100079856812954, -0.002450738800689578, -0.010126129724085331, -0.028774486854672432, -0.05989497900009155, 0.00039274661685340106, 0.01755913905799389, -0.051037609577178955, -0.006714844610542059, 0.0021305568516254425, 0.00953364372253418, -0.022957349196076393, -0.017750650644302368, -0.0001664497540332377, 0.013345903716981411, -0.003964870702475309, -0.02267008274793625, -0.014028160832822323, -0.006900371052324772, -0.0017879321239888668, -0.02190404012799263, -0.029875673353672028, 0.029899612069129944, 0.05075034126639366, -0.02860691398382187, -0.005856039002537727, 0.006086450070142746, -0.00846238061785698, -0.032221678644418716, 0.040241193026304245, -0.0016742226434871554, 0.004820683971047401, -0.020443769171833992, 0.03332286700606346, 0.012208809144794941, -0.018085794523358345, -0.01918698102235794, 0.002120083663612604, -0.044454425573349, -0.010000450536608696, -0.016338258981704712, 0.001719107967801392, 0.009785001166164875, 0.020551495254039764, -0.006978171877563, -0.00579319940879941, -0.015644032508134842, 0.025590620934963226, -0.019988931715488434, 0.010371502488851547, -0.006529318634420633, 0.0026916235219687223, -0.018516693264245987, -0.00536828488111496, -0.004934393335133791, 0.005556803196668625, -0.03933151438832283, 0.010527105070650578, 0.010634830221533775, -0.009838863275945187, 0.02494427189230919, 0.00016673028585501015, -0.036458853632211685, 0.0355970561504364, 0.0017355659510940313, 0.007474903017282486, 0.0006470967782661319, -0.033993154764175415, 0.0453401654958725, 0.013501506298780441, -0.028104199096560478, -0.021102087572216988, -0.005664528347551823, -0.03466344252228737, -0.0012448197230696678, -0.0573095865547657, -0.017535200342535973, 0.007504826411604881, 0.0038870691787451506, -0.010407410562038422, 0.030354449525475502, -0.024273984134197235, -0.032485008239746094, 0.023376278579235077, -0.008312762714922428, -0.012783341109752655, -0.022825684398412704, 0.011724047362804413, 0.012095099315047264, 0.04438260942697525, -0.012089114636182785, 0.02448943443596363, -0.00418032007291913, -0.014315426349639893, -0.021293599158525467, 0.03801487758755684, -0.031910475343465805, 0.02487245574593544, 0.012926974333822727, -0.048452213406562805, -0.022885531187057495, -0.011119591072201729, 0.026524236425757408, -0.022059641778469086, -0.0022233198396861553, -0.005380254238843918, -0.05237818509340286, -0.05108548700809479, -0.0026557152159512043, 0.01237638108432293, 0.0009014469687826931, 0.042012665420770645, 0.02614121325314045, -0.016254473477602005, 0.04443048685789108, 0.006421593949198723, -0.034759197384119034, 0.03878092020750046, -0.005155827850103378, 0.032604701817035675, 0.030162939801812172, -0.005075034219771624, 0.003067163983359933, -0.0060894424095749855, -0.006649013143032789, 0.0049972329288721085, -0.00643954798579216, 0.0031599269714206457, 0.0077202762477099895, 0.007726260926574469, 0.00798360351473093, 0.0026003564707934856, 0.0015590169932693243, 0.020551495254039764, -0.029492652043700218, 0.045220471918582916, 0.006924309767782688, 0.0033245065715163946, 0.005493964068591595, 0.0021170913241803646, -0.001554528484120965, -0.016625525429844856, -0.025734253227710724, 0.01660158671438694, -0.010934065096080303, -0.010682707652449608, -0.008857371285557747, -0.006182205397635698, 0.023005226626992226, 0.000484761520056054, -0.028080260381102562, 0.024357769638299942, 0.011909573338925838, -0.019414400681853294, 0.012136992067098618, -0.022562356665730476, -0.013489536941051483, 0.05233030766248703, -0.0024103419855237007, -0.0013637657975777984, -0.044981081038713455, -0.016829004511237144, 0.009773031808435917, -0.011472688987851143, -0.027170583605766296, -0.010275747627019882, -0.006900371052324772, -0.004443647339940071, 0.010832325555384159, -0.014794203452765942, -0.03562099486589432, 0.006876431871205568, -0.009258346632122993, -0.0036776044871658087, 0.028080260381102562, 0.0023864032700657845, 0.014746326021850109, 0.004404746927320957, 0.03138381987810135, -0.002761943731456995, 0.023244613781571388, 0.0004507234843913466, 0.0002517318644095212, -0.00858207419514656, 0.03358619287610054, 0.006690905895084143, -0.022143427282571793, -0.01894759200513363, 0.015548276714980602, 0.02537517063319683, 0.010658768936991692, -0.013800742104649544, 0.003943923860788345, 0.018157610669732094, -0.010832325555384159, -0.0063856858760118484, 0.03320317342877388, 0.04500501975417137, 0.00043800598359666765, -0.02063528075814247, -0.024728821590542793, -0.00391400046646595, 0.03612371161580086, -0.017475353553891182, -0.0008281342452391982, -0.015009652823209763, -0.007941710762679577, 0.03813457489013672, -0.03969059884548187, 0.017068393528461456, 0.00664302846416831, 0.006206144578754902, 0.007295361720025539, 0.039235759526491165, -0.013142423704266548, 0.02442958764731884, 0.00297589716501534, 0.02707482874393463, 0.011155500076711178, 0.009342133067548275, 0.010676722973585129, 0.007115820422768593], [0.00024154098355211318, 0.042445287108421326, 0.01867341436445713, 0.03576454892754555, -0.04488149285316467, -0.04992971941828728, 0.02581878937780857, -0.026572255417704582, 0.029586121439933777, 0.009336707182228565, -0.030666090548038483, -0.023859776556491852, -0.04535869136452675, -0.015584200620651245, 0.02647179365158081, 0.009933201596140862, 0.0016686145681887865, 0.04965344816446304, -0.034232500940561295, -0.022239822894334793, 0.032173022627830505, 0.07710474729537964, 0.004976019263267517, -0.01903758943080902, -0.019138051196932793, -0.0036072214134037495, -0.01755577139556408, -0.001008546445518732, 0.014654925093054771, -0.04121462255716324, -0.007490714080631733, -0.03935607150197029, 0.05409890413284302, -0.0073211840353906155, 0.02855638414621353, 0.0009724428527988493, -0.025002533569931984, 0.023960238322615623, 0.015521411783993244, 0.01562187448143959, -0.007402809336781502, 0.04390198737382889, 0.017618561163544655, -0.0005391995655372739, -0.0036480340640991926, 0.04623773321509361, -0.0607796385884285, 0.04749351367354393, 0.0051800827495753765, 0.007371414918452501, 0.02782803401350975, 0.0429224818944931, -0.005990059580653906, 0.020494291558861732, -0.04000907763838768, -0.019025031477212906, 0.007716753985732794, -0.02031848207116127, 0.024927187711000443, -0.006800035946071148, 0.009952038526535034, 0.009142061695456505, -0.03526223823428154, -0.0006310282624326646, -0.015056774020195007, -0.015433507971465588, 0.03742217645049095, 0.005440657027065754, -0.06655621528625488, 0.0018208776600658894, -0.026622487232089043, 0.02089614048600197, -0.027250375598669052, -0.01003994233906269, 0.008740212768316269, -0.00869626086205244, 0.019878961145877838, 0.031444672495126724, 0.01319822296500206, -0.008784164674580097, -0.005004274193197489, 0.04355036839842796, -0.0785614550113678, 0.013022414408624172, -0.027325721457600594, -0.026647603139281273, -0.07650197297334671, 0.03664359450340271, -0.009148340672254562, 0.007063749246299267, 0.01324845477938652, 0.03543804585933685, -0.01324845477938652, 0.03460923209786415, 0.02208912931382656, -0.010762014426290989, 0.008131160400807858, -0.008727654814720154, -0.023382579907774925, 0.036266859620809555, 0.02785314805805683, 0.00412836903706193, -0.02712479792535305, 0.015797683969140053, 0.011163863353431225, -0.0816255509853363, -0.008250459097325802, -0.05696207657456398, -0.05440028756856918, 0.032901376485824585, -0.05882062762975693, -0.007377693895250559, -0.03810029476881027, -0.009135782718658447, 0.04390198737382889, -0.012651960365474224, 0.03802494704723358, -0.07213187217712402, -0.005048226099461317, -0.04402756690979004, -0.04729258641600609, -0.012162206694483757, 0.03817564249038696, -0.05359658971428871, 0.023483043536543846, -0.013361474499106407, -0.06414512544870377, 0.00936182215809822, 0.01601116545498371, 0.024939745664596558, 0.055907223373651505, -0.022553768008947372, 0.0539984405040741, -0.03948165103793144, 0.009663209319114685, -0.023520715534687042, 0.009173455648124218, 0.0330771841108799, -0.014454001560807228, -0.005996338557451963, 0.020469175651669502, -0.020017096772789955, 0.0014394351746886969, 0.016124185174703598, -0.01231290027499199, -0.03867795318365097, -0.019728267565369606, -0.01354984100908041, 0.009098108857870102, -0.06394419819116592, -0.05967455357313156, -0.00026292845723219216, 0.01763111911714077, -0.035011082887649536, 0.022729575634002686, 0.06550136208534241, 0.046413544565439224, 0.08212786167860031, -0.02383466064929962, -0.03259998932480812, -0.057866234332323074, -0.03923049569129944, -0.0005074126529507339, -0.047820013016462326, -0.008796722628176212, -0.04176716506481171, -0.011188979260623455, -0.0005819744546897709, -0.01100689172744751, -0.02363373525440693, -0.01017179898917675, -0.015307930298149586, -0.007245837245136499, 0.016726959496736526, -0.02279236540198326, -0.043625716120004654, 0.03521200641989708, -0.019426880404353142, -0.03104282356798649, -0.01862318255007267, 0.024500222876667976, 0.005264848005026579, -0.037597984075546265, -0.018183661624789238, -0.03865283727645874, -0.008168834261596203, -0.0032430458813905716, -0.011647338047623634, -0.03722124919295311, 0.03322787582874298, -0.032173022627830505, 0.024035584181547165, 0.008376036770641804, 0.010247145779430866, -0.011389903724193573, -0.004191157873719931, -0.013122877106070518, -0.027551762759685516, -0.0454842671751976, -0.016676727682352066, 0.017405077815055847, -0.03945653513073921, -0.00037045442149974406, 0.03601570427417755, -0.031520020216703415, -0.015609316527843475, -0.00300601776689291, 0.022264938801527023, 0.0018663995433598757, -0.024249067530035973, 0.008721375837922096, -0.053948208689689636, -0.018836665898561478, 0.018246449530124664, -0.0387030690908432, -0.04134020209312439, -0.032223254442214966, 0.01202407106757164, -0.07775775343179703, -0.007923956960439682, -0.014516790397465229, 0.00355699029751122, 0.002101857913658023, -0.024261625483632088, -0.03262510523200035, 0.03463434800505638, 0.020406387746334076, -0.03998396173119545, 0.007616291753947735, 0.0044454531744122505, 0.0012997299199923873, -0.007584897335618734, -0.0009771520271897316, -0.018949685618281364, 0.05640953406691551, -0.042997829616069794, 0.025492286309599876, 0.03533758223056793, 0.009719719178974628, -0.01253266166895628, 0.006002617534250021, 0.03915514796972275, 0.0066053904592990875, 0.039783038198947906, -0.002693643094971776, 0.0022823759354650974, -0.014893523417413235, -0.024738820269703865, 0.03114328719675541, -0.005983780603855848, 0.05158734694123268, 0.045107536017894745, 0.0330771841108799, -0.060026172548532486, 0.011546875350177288, -0.028681961819529533, -0.002633993746712804, 0.037698447704315186, 0.05761507898569107, 0.02002965472638607, 0.001569722080603242, -0.040888119488954544, -0.03850214555859566, 0.02075800485908985, -0.0227421335875988, -0.047091662883758545, 0.007000960409641266, -0.010058779269456863, -0.05414913222193718, 0.07399041950702667, -0.042395055294036865, 0.03378041833639145, 0.011867099441587925, 0.005337055306881666, -0.006762363016605377, 0.030666090548038483, -0.053847748786211014, -0.047167010605335236, 0.020770562812685966, 0.027375953271985054, -0.0028286392334848642, 0.002348304260522127, -0.02496485970914364, -0.04603680968284607, -0.008846953511238098, 0.008294411934912205, -0.011032006703317165, 0.01419028826057911, -0.03475992754101753, 0.05811738967895508, 0.023771870881319046, -0.0059052943252027035, -0.03810029476881027, -0.031469788402318954, 0.0330771841108799, 0.04608704149723053, 0.013424263335764408, 0.011477808468043804, 0.026220638304948807, 0.004188018385320902, -0.0004889684496447444, -0.018133429810404778, -0.06580275297164917, -0.009066714905202389, -0.058217853307724, -0.0017361126374453306, 0.02983727678656578, -0.015345603227615356, -0.015282814390957355, -0.03882864490151405, -0.046488888561725616, 0.00659911148250103, -0.038351450115442276, -0.03182140737771988, -0.05404867231845856, -0.018171103671193123, 0.0005941397976130247, 0.022679345682263374, -0.015571643598377705, -0.03523712232708931, 0.04601169377565384, -0.005607047118246555, -0.024638358503580093, -0.06972077488899231, -0.018535278737545013, -0.03822587430477142, 0.010793409310281277, 0.018171103671193123, -0.03940630331635475, 0.0005129066994413733, -0.026923874393105507, -0.031394440680742264, 0.053244974464178085, -0.01555908564478159, -0.001562658348120749, -0.0014425746630877256, -0.014642368070781231, 0.02983727678656578, 0.010912708006799221, -0.01485584955662489, 0.03212279453873634, -0.02232772670686245, -0.02213936112821102, -0.052441276609897614, 0.01259545050561428, -0.00040577317122370005, 0.005283684469759464, 0.041641589254140854, 0.034935735166072845, 0.028129419311881065, -0.027225259691476822, 0.014366096816956997, 0.001075259642675519, -0.040938351303339005, -0.028782423585653305, 0.0027485834434628487, 0.03810029476881027, -0.03056562878191471, 0.024927187711000443, 0.01553396973758936, -0.041114162653684616, -0.010881314054131508, 0.023897448554635048, 0.008300690911710262, -0.027275491505861282, 0.037020325660705566, -0.02107194997370243, -0.06047825142741203, 0.011703847907483578, -0.0033529263455420732, 0.026572255417704582, 0.0009473272948525846, 0.003600942436605692, 0.012042907997965813, -0.029385197907686234, -0.04995483532547951, 0.009751114062964916, 0.03209767863154411, -0.00893485825508833, 0.005142409820109606, 0.07645174860954285, 0.005129851866513491, 0.009813902899622917, 0.0058330874890089035, 0.006530044134706259, 0.011741521768271923, -0.043726179748773575, 0.02986239269375801, 0.028229882940649986, -0.01838458515703678, 0.003933723550289869, -0.008564404211938381, 0.00474683940410614, -0.023118866607546806, 0.015157236717641354, 0.007704196032136679, 0.018158545717597008, 0.03938118740916252, -0.01685253717005253, -0.015973491594195366, 0.02477649413049221, -0.055354680866003036, -0.03641755133867264, 0.015345603227615356, 0.006228657439351082, 0.012764980085194111, -0.02971169911324978, -0.029636353254318237, 0.04176716506481171, -0.0036448948085308075, 0.050482261925935745, -0.00442033726722002, 0.03905468434095383, 0.03463434800505638, 0.01152803935110569, -0.02339513786137104, -0.03385576605796814, 0.03335345536470413, 0.031570252031087875, 0.03865283727645874, 0.038401681929826736, 0.03252464160323143, -0.020142674446105957, 0.04191786050796509, -0.0081248814240098, 0.046338196843862534, -0.008357200771570206, -0.05213988944888115, 0.0014567021280527115, -0.05751461908221245, -0.008495336398482323, -0.0038866319227963686, 0.04726747050881386, 0.017932504415512085, -0.022729575634002686, -0.05635930225253105, 0.051160383969545364, 0.031394440680742264, 0.028958233073353767, -0.03335345536470413, -0.05369705334305763, -0.011207816191017628, 0.007095144130289555, 0.004784512799233198, 0.011358508840203285, 0.02509043738245964, -0.016048839315772057, 0.013662860728800297, 0.002437778515741229, 0.003038981929421425, -0.012256390415132046, -0.003065667347982526, -0.032273486256599426, 0.027426185086369514, -0.03862772136926651, -0.04927671700716019, -0.04962833225727081, -0.014868407510221004, 0.009669488295912743, 0.010222029872238636, 0.019125493243336678, -0.0012589171528816223, 0.06098056584596634, 0.037623099982738495, 0.02264167182147503, -0.0034659462980926037, -0.02712479792535305, -0.053194742649793625, -0.008872069418430328, -0.005073342006653547, -0.018083197996020317, 0.034182269126176834, -0.022164475172758102, 0.015847913920879364, -0.007208163850009441, -0.003977675922214985, 0.02146124094724655, -0.009562746621668339, -0.026195522397756577, -0.009242523461580276, -0.009123224765062332, 0.035036198794841766, -0.04937717691063881, 0.013034972362220287, 0.016073955222964287, 0.04191786050796509, 0.036944977939128876, 0.011622222140431404, -0.01797017827630043, -0.029535891488194466, -0.07469365745782852, 0.023407695814967155, 0.0452331118285656, -0.012689633294939995, -0.03259998932480812, -0.0006639924249611795, 0.020117558538913727, 0.01705346070230007, 0.006818872876465321, -0.024324413388967514, -0.02063242718577385, -0.00259789009578526, 0.006573996040970087, 0.011075959540903568, 0.07896330207586288, 0.0018334353808313608, -0.0013750765938311815, 0.018158545717597008, 0.0025727744214236736, -0.023922564461827278, 0.016601381823420525, -0.035538509488105774, 0.019602689892053604, -0.023043520748615265, -0.022892827168107033, -0.005154967308044434, 0.042319707572460175, 0.03842679783701897, -0.02058219537138939, -0.011358508840203285, -0.03528735414147377, 0.028355460613965988, 0.003155141370370984, -0.002995029790326953, -0.005607047118246555, -0.013047530315816402, -0.028129419311881065, -0.09579072147607803, -0.04965344816446304, -0.01969059370458126, -0.0005807972047477961, -0.021272873505949974, -0.0046934690326452255, 0.018083197996020317, -0.0020893001928925514, 0.0015163515927270055, -0.0033623448107391596, -0.022202149033546448, -0.01731717400252819, 0.005010553169995546, 0.0460619255900383, -0.02498997561633587, 0.024374645203351974, 0.0029981692787259817, 0.006693295203149319, -0.0010360166197642684, 0.00915461964905262, 0.006818872876465321, 0.0234453696757555, -0.010755735449492931, 0.014805618673563004, -0.018372027203440666, 0.05912201479077339, 0.022440746426582336, 0.01886177994310856, -0.011885935440659523, -0.01648836024105549, -0.009656930342316628, 0.016764631494879723, -0.01393913198262453, -0.0030154362320899963, 0.03453388437628746, 0.040235117077827454, -0.010353886522352695, -0.013612629845738411, 0.013763323426246643, -0.003412575926631689, 0.022578882053494453, -0.025416940450668335, 0.016438130289316177, -0.009531352669000626, 0.009060435928404331, 0.006555159576237202, 0.0001016395035549067, 0.03594035655260086, 0.020845908671617508, -0.014102383516728878, -0.056710921227931976, -0.0012212437577545643, 0.013436821289360523, 0.009217408485710621, 0.008790443651378155, 0.029108926653862, -0.01840970106422901, -0.007239558268338442, 0.0032147909514606, 0.010492022149264812, -0.009895527735352516, -0.0023074913769960403, 0.006247493904083967, 0.023118866607546806, -0.03041493520140648, 0.030239125713706017, -0.0031990937422960997, 0.00457730982452631, 0.006099940277636051, -0.059373170137405396, 0.016752073541283607, 0.006661900784820318, 0.02780291810631752, 0.002872591372579336, -0.018108313903212547, -0.032901376485824585, 0.008156276308000088, 0.007873726077377796, -0.012934509664773941, -0.01886177994310856, -0.01280893199145794, 0.038250986486673355, 0.02976193092763424, 0.04402756690979004, 0.01804552599787712, -0.01393913198262453, 0.007264673709869385, -0.013650303706526756, 0.011320835910737514, -0.028154535219073296, -0.023596063256263733, 0.04538380354642868, 0.01555908564478159, -0.030113548040390015, -0.0036700102500617504, 0.034910619258880615, -0.00899764709174633, -0.005421820096671581, 0.042470403015613556, -0.020745446905493736, -0.03247440978884697, -0.018949685618281364, -0.001976280240342021, 0.022629113867878914, 0.041089046746492386, 0.01903758943080902, -0.015923261642456055, 0.012601729482412338, 0.019188283011317253, 0.022126803174614906, 0.0051329913549125195, 0.016438130289316177, 0.004596146289259195, 0.008206507191061974, 0.021637048572301865, 0.010228308849036694, -0.01700322888791561, 0.07414111495018005, 0.03388088196516037, -0.012199880555272102, 0.004523938987404108, 0.008263017050921917, 0.003936863038688898, 0.039707690477371216, -0.010762014426290989, 0.021009160205721855, -0.026898758485913277, -0.00523031409829855, -0.02720014378428459, -0.017066018655896187, 0.056660689413547516, 0.013022414408624172, 0.031595367938280106, -0.020155232399702072, 0.006800035946071148, 0.0220388974994421, 0.009926922619342804, 0.001596407382749021, 0.011057122610509396, 0.006442139390856028, -0.04540891945362091, 0.06042802333831787, -0.002560216700658202, -0.01635022461414337, -0.00022388160869013518, 0.000585898756980896, 0.011101074516773224, 0.025869019329547882, 0.00636365357786417, 0.0033717630431056023, -0.03707055747509003, 0.009587862528860569, 0.006680737249553204, -0.020619869232177734, -0.023483043536543846, -0.010014827363193035, 0.016337668523192406, 0.014102383516728878, 0.010818524286150932, 0.031520020216703415, 0.000814685772638768, 0.024085815995931625, -0.002367140958085656, 0.025153227150440216, 0.0364677831530571, 0.019477112218737602, 0.004819046705961227, 0.00801814068108797, 0.0017204154282808304, 0.04412802681326866, 0.030188895761966705, -0.02649690955877304, 0.014303307980298996, 0.01139618270099163, -0.005412401631474495, -0.030816784128546715, -0.02232772670686245, -0.04952787235379219, 0.00021701407968066633, 0.012601729482412338, -0.023357464000582695, 0.04877440631389618, 0.02365885116159916, -0.011188979260623455, 0.007679080590605736, -0.012451035901904106, -0.02094637230038643, -0.046488888561725616, 0.010818524286150932, -0.049829259514808655, -0.02240307442843914, 0.028807539492845535, 0.01267707534134388, 0.0027925355825573206, 0.045861002057790756, -0.023910006508231163, -0.044454529881477356, 0.01648836024105549, -0.023244444280862808, 0.009594141505658627, -0.000511336955241859, -0.007748148404061794, 0.03465946391224861, -0.004247668199241161, -0.007346299476921558, 0.0063197012059390545, -0.015772568061947823, 0.0035318746231496334, 0.015709778293967247, -0.011597107164561749, 0.005035668611526489, -0.0006875382969155908, -0.011948724277317524, 0.01820877566933632, -0.019577573984861374, -0.0021489495411515236, -0.03599058836698532, -0.025102995336055756, -0.010297376662492752, 0.01529537234455347, -0.013888901099562645, -0.052591968327760696, 0.015659548342227936, 0.046388428658246994, 0.00948112178593874, -0.011232931166887283, 0.06479813158512115, -0.006875382736325264, -0.012827768921852112, -0.04596146196126938, -0.022315168753266335, -0.0023231888189911842, 0.015107005834579468, 0.04053650423884392, 0.04679027572274208, 0.023935122415423393, 0.032775796949863434, 0.0071830484084784985, -0.03403157368302345, -0.05208965763449669, 0.01702834479510784, -0.006329119671136141, 0.02707456611096859, 0.001808319822885096, -0.012011513113975525, -0.004495684057474136, 0.014504232443869114, -0.007836053147912025, -0.02326956018805504, -0.036216627806425095, 0.01316055003553629, -0.018761318176984787, -0.020871024578809738, 0.012237553484737873, -0.03511154279112816, -3.1026538636069745e-05, 0.013587514869868755, -0.02063242718577385, -0.003513038158416748, 0.003792448667809367, -0.0058801788836717606, 0.019828729331493378, 0.008759049698710442, -0.002812942024320364, 0.006147031672298908, -0.0019354673568159342, -0.02169983834028244, 0.006071684882044792, 0.02039382979273796, 0.019753383472561836, -0.05148688331246376, 0.011383624747395515, 0.016337668523192406, 0.0023781289346516132, 0.014567021280527115, -0.016739515587687492, -0.052491508424282074, 0.034182269126176834, -0.016136743128299713, -0.011496644467115402, 0.01719159632921219, 0.021850531920790672, -0.013173107989132404, -0.0039556995034217834, 0.04387687146663666, 0.0395318828523159, 0.023169098421931267, 0.013838670216500759, 0.002756431931629777, 0.03654313087463379, 0.0028113722801208496, -0.02772757038474083, 0.007848610170185566, 0.041666705161333084, -0.016576265916228294, -0.003538153599947691, 0.013800996355712414, 0.03571431711316109, 0.038401681929826736, -0.011094795539975166, 0.023520715534687042, 0.02281748130917549, 0.014554463326931, 0.020042212679982185, 0.004172321408987045, -0.005663557443767786, -0.007923956960439682, 0.009600420482456684, -0.021950993686914444, -0.022315168753266335, -0.05505329370498657, 0.01588558778166771, 0.02242818847298622, 0.008576961234211922, -0.03320276364684105, 0.020331040024757385, 0.004709166474640369, 0.025605306029319763, 0.03877841308712959, 0.0025351012591272593, -0.00978250801563263, 0.00186012068297714, 0.034910619258880615, -0.02652202546596527, 0.00899764709174633, 0.0008963113068602979, 0.009945759549736977, 0.008080929517745972, 0.021348221227526665, -0.017254386097192764, 0.004002791363745928, -0.030239125713706017, -0.0044171977788209915, 0.0074216462671756744, -0.00347536476328969, -0.02920938841998577, -0.03596547245979309, -0.0015642280923202634, -0.0003009942010976374, 0.038903992623090744, 0.004815907217562199, 0.0392807275056839, 0.014466558583080769, 0.04596146196126938, 0.046388428658246994, 0.01835946924984455, -0.03797471523284912, -0.01760600320994854, 0.015370719134807587, -0.006190984044224024, 0.00032414760789833963, 0.011509202420711517, -0.011885935440659523, 0.04674004390835762, -0.028355460613965988, -0.008313247933983803, -0.002962065627798438, -0.023985354229807854, -0.010165520012378693, -0.0007809367380104959, 0.03440830856561661, 0.04513264819979668, -0.0065677170641720295, 0.008884627372026443, 0.045861002057790756, -0.0066430638544261456, -0.015119562856853008, -0.04181739687919617, 0.007697917055338621, -0.01104456465691328, -0.000919072306714952, -0.005192640703171492, 0.00926136039197445, 0.007459319196641445, -0.014140056446194649, -0.02298073098063469, 0.009386938065290451, -0.02780291810631752, 0.014378654770553112, -0.03679428622126579, -0.040988583117723465, 0.024324413388967514, 0.02409837394952774, 0.0358901247382164, -0.018108313903212547, -0.014642368070781231, -0.03435807675123215, 0.04128997027873993, -0.03428272902965546, -0.00250056735239923, 0.009707161225378513, 0.025052765384316444, 0.028707077726721764, -0.024500222876667976, -0.008916021324694157, 0.01635022461414337, -0.006426442414522171, 0.007233279291540384, 0.019703151658177376, 0.0028396272100508213, 0.0096757672727108, 0.023872334510087967, -0.01786971651017666, 0.029535891488194466, 0.023307234048843384, 0.021172411739826202, 0.044379182159900665, 0.009581583552062511, -0.027325721457600594, 0.014165172353386879, -0.0210468340665102, 0.009669488295912743, -0.016475802287459373, 0.05229058116674423, -0.007980466820299625, -0.03259998932480812, -0.026622487232089043, 0.01997942291200161, -0.005735764745622873, 0.005764019675552845, -0.015182352624833584, 0.008689981885254383, -0.02566809579730034, 0.025994598865509033, 0.0036260581109672785, 0.043701063841581345, 0.02177518419921398, -0.012011513113975525, 0.0210468340665102, 0.01666416972875595, -0.026974104344844818, 0.02704945206642151, 0.012633123435080051, -0.018773876130580902, -0.0392807275056839, -0.017467867583036423, -0.03666870668530464, 0.017593445256352425, 0.008746491745114326, 0.025894135236740112, -5.5038381105987355e-05, -0.006617948412895203, -0.016337668523192406, -0.006812593899667263, -0.014428885653614998, 0.002045347820967436, 0.006159589625895023, -0.009393217042088509, 0.019941749051213264, 0.0029934600461274385, -0.006153310649096966, -0.00021112762624397874, -0.012520103715360165, 0.012564055621623993, 0.0029934600461274385, 0.012771259061992168, -0.005089038982987404, 0.017518099397420883, 0.012199880555272102, 0.018560394644737244, 0.036342207342386246, -0.022729575634002686, -0.028154535219073296, -0.01104456465691328, -0.004351269453763962, 0.002770559396594763, 0.03061586059629917, 0.007189327385276556, 0.0001428447139915079, 0.005246011074632406, 0.019791055470705032, 0.00442033726722002, 0.021172411739826202, -0.013725650496780872, -0.0005466557340696454, 0.026974104344844818, -0.0494525246322155, 0.028933117166161537, -0.027601992711424828, -0.014843292534351349, 0.0006997036398388445, -0.0007715183892287314, 0.003181826788932085, -0.0030405516736209393, -0.00516438577324152, -0.024299297481775284, 0.007691638078540564, 0.0028066630475223064, -0.021423567086458206, 0.012626844458281994, -0.028355460613965988, -0.028882887214422226, 0.022867711260914803, -0.0012667657574638724, 0.015220025554299355, -0.008049534633755684, -0.013863785192370415, 0.012601729482412338, -0.0065049282275140285, 0.011295720003545284, -0.0018522720783948898, 0.042244359850883484, -0.008576961234211922, 0.05304405093193054, 0.010090173222124577, 0.0016764631727710366, 0.01603628136217594, 0.0027674201410263777, 0.051110152155160904, 0.005246011074632406, -0.002370280446484685, -0.01198639813810587, 0.0014826025580987334, 0.009914364665746689, 0.01685253717005253, -0.014454001560807228, 0.034182269126176834, 0.005274266470223665, 0.013386590406298637, 0.015119562856853008, 0.02915915846824646, -0.010165520012378693, 0.015873029828071594, 0.0069193351082503796, 0.023093750700354576, -0.007986745797097683, -0.04342479258775711, -0.009575304575264454, -0.010579926893115044, 0.006900498177856207, 0.008030698634684086, -0.0016639054520055652, 0.0299377404153347, 0.025517402216792107, -0.046338196843862534, 0.0066053904592990875, 0.0049320668913424015, 0.013788439333438873, -0.010322492569684982, -0.036291975528001785, 0.027225259691476822, 0.01697811484336853, 0.022290054708719254, 0.007723032962530851, 0.009876691736280918, -0.021586818620562553, -0.005679254420101643, 0.03777379170060158, -0.023621177300810814, 0.011119911447167397, -0.04344990849494934, -0.00869626086205244, 0.0007558211800642312, 0.026069944724440575, 0.02913404256105423, -0.015709778293967247, -0.01354984100908041, -0.009732277132570744, 0.0006149386172182858, 0.0037422175519168377, 0.00532763684168458, 0.04902556166052818, -0.00987041275948286, 0.001737682381644845, 0.007754427380859852, -0.015797683969140053, 0.0017753556603565812, -0.0037673329934477806, 0.02785314805805683, 0.02068265900015831, 0.011119911447167397, 0.07067516446113586, 0.003356065833941102, 0.008043255656957626, 0.008633471094071865, 0.0012777537340298295, 0.011440134607255459, 0.04211878404021263, -0.02232772670686245, 0.0012361562112346292, -0.038401681929826736, 0.022603997960686684, 0.017204154282808304, 0.007063749246299267, 0.008570682257413864, 0.01289683673530817, -0.02414860390126705, -0.018685972318053246, 0.0339059978723526, -0.010259703733026981, 0.012469872832298279, 0.02709968201816082, 0.05008041486144066, 0.002404814353212714, -0.005773437675088644, -0.040360692888498306, -0.0006420163554139435, 0.010379002429544926, 0.030892131850123405, -0.02976193092763424, 0.005666696932166815, 0.03061586059629917, -0.025153227150440216, -0.01250754576176405, -0.03059074468910694, 0.004589867312461138, -0.02109706588089466, -0.005302521400153637, -0.0089725311845541, -0.019728267565369606, -0.021034276112914085, -0.0035444325767457485, -0.04535869136452675, -0.0018726785201579332, 0.02905869483947754, -0.020205462351441383, -0.00779837928712368, 0.0021254036109894514, 0.029586121439933777, -0.03440830856561661, 0.06831430643796921, 0.0034251336473971605, -0.003481643507257104, 0.004065580200403929, 0.018585510551929474, -0.03639243543148041, -0.02770245634019375, 0.005971222650259733, -0.031595367938280106, -0.004636959172785282, -0.01485584955662489, -0.0013742917217314243, 0.0364677831530571, 0.018372027203440666, 0.0065049282275140285, -0.004677772056311369, -0.009016484022140503, -0.01241336204111576, -0.013286127708852291, -0.019188283011317253, -0.03722124919295311, -0.03169582784175873, 0.015182352624833584, 0.027978727594017982, -0.017455309629440308, -0.02845592238008976, -0.007346299476921558, -0.0013256303500384092, -0.0023608619812875986, 0.014240519143640995, 0.016362782567739487, 0.016186974942684174, -0.0032304881606251, 0.0015610886039212346, -0.008752770721912384, -0.001309933140873909, -0.04400245100259781, -0.03182140737771988, 0.04724235460162163, 0.0013374031987041235, 0.004140926990658045, 0.0008272435516119003, -0.014567021280527115, 0.04518288001418114, -0.018447374925017357, 0.014554463326931, -0.007107701618224382, -0.05379751697182655, -0.0069193351082503796, -0.01966547779738903, 0.04186762869358063, 0.00984529685229063, -0.004712305963039398, -0.022804923355579376, -0.023407695814967155, -0.016890209168195724, -0.04066208004951477, -0.009148340672254562, -0.0043449909426271915, -0.007842331193387508, -0.0026763761416077614, 0.009700882248580456, 0.02099660225212574, 0.010736899450421333, 0.015257698483765125, 0.00519578019157052, 0.023884890601038933, 0.004781373310834169, 0.005610186606645584, -0.013047530315816402, -0.007132817059755325, 0.011741521768271923, 0.0316707119345665, -0.01797017827630043, 0.003776751458644867, 0.016048839315772057, -0.016086511313915253, 0.00506706302985549, -0.022905385121703148, 0.0006392693030647933, 0.0003135519800707698, -0.015822798013687134, 0.04076254367828369, 0.04809628427028656, 0.0022980731446295977, -0.019238514825701714, 0.002012383658438921, 0.03546316176652908, 0.030691206455230713, -0.006580275017768145, 0.011094795539975166, 0.0217500701546669, 0.0015940527664497495, -0.026069944724440575, 0.024449991062283516, 0.0004501178045757115, 0.025216015055775642, 0.004313596524298191, 0.01425307709723711, -0.041716933250427246, 0.030892131850123405, 0.004203715827316046, -0.027928495779633522, 0.019075263291597366, 0.0010116859339177608, -0.027275491505861282, -0.03712078928947449, -0.015496296808123589, -0.025216015055775642, -0.009525073692202568, -0.03131909668445587, -0.0029793325811624527, 0.04086300730705261, -0.016764631494879723, 0.023897448554635048, -0.02414860390126705, 0.016086511313915253, -0.0016403596382588148, 0.00949367880821228, 0.0015187060926109552, 0.01485584955662489, 0.00026096630608662963, 0.00552228232845664, 0.0017659373115748167, -0.005952386185526848, 0.0016670448239892721, 0.01925107277929783, 0.025241130962967873, 0.03513665869832039, 0.016438130289316177, 0.0169529989361763, 0.016965556889772415, 0.020531965419650078, 0.03408180549740791, -0.014001920819282532, -0.012821489945054054, -0.03445854038000107, -0.0035475720651447773, 0.019050147384405136, -0.039657458662986755, 0.0034219941589981318, 0.04686562344431877, -0.012118254788219929, -0.02642156183719635, -0.01661393791437149, 0.010831082239747047, -0.01663905382156372, 0.004209994804114103, 0.028028957545757294, -0.0012000525603070855, -0.005186361726373434, 0.011955003254115582, 0.02097148634493351, 0.0020657542627304792, 0.011477808468043804, -0.0007891777786426246, 0.032750681042671204, -0.0031802570447325706, 0.030741438269615173, 0.014843292534351349, -0.005045086611062288, -0.01019691489636898, -0.058067161589860916, 0.024876955896615982, -0.0038615164812654257, 0.01901247352361679, 0.01163478009402752, 0.010341329500079155, -0.04601169377565384, -0.031595367938280106, -0.012162206694483757, 0.00396511796861887, -0.025944367051124573, 0.01267707534134388, 0.015571643598377705, -0.0056196050718426704, -0.006963287014514208, 0.0432489849627018, -0.03172094374895096, -0.022390516474843025, -0.001748670474626124, 0.03867795318365097, 0.011245489120483398, 0.0039839548990130424, -0.010950380936264992, 0.00845138356089592, -0.03124374896287918, 0.0018569811945781112, -0.01632511056959629, -0.011816867627203465, 0.047167010605335236, 0.009606699459254742, -0.006693295203149319, -0.007974187843501568, -0.012934509664773941, -0.019489670172333717, -0.0070449127815663815, 0.005924131255596876, -0.02394768036901951, 0.018321797251701355, 0.025630421936511993, 0.005814250558614731, -0.047217242419719696, 0.019527342170476913, 0.015584200620651245, -0.0072583951987326145, -0.0010878173634409904, -0.034960851073265076, 0.021900761872529984, 0.000372024136595428, 0.025467172265052795, 0.008564404211938381, -0.008708817884325981, 0.011609665118157864, 0.04118950664997101, 0.012683354318141937, 0.011841983534395695, 0.003757914761081338, 0.0024471967481076717, -0.06022709608078003, 0.005811111070215702, -0.010222029872238636, 0.016651611775159836, -0.02920938841998577, -0.0051329913549125195, -0.0045553334057331085, 0.007942793890833855, 0.024374645203351974, 0.00036358687793836, -0.01429075002670288, 0.03586500883102417, -0.01354984100908041, -0.010912708006799221, -0.02201378345489502, -0.04623773321509361, 0.0324995256960392, -0.03262510523200035, -0.03536269813776016, 0.012407083064317703, 0.00910438783466816, -0.027225259691476822, 0.02436208724975586, 0.0006608529947698116, -0.046488888561725616, 0.01583535596728325, -0.030239125713706017, 0.0034408308565616608, -0.0034690857864916325, -0.0031425836496055126, -0.013650303706526756, -0.00451138149946928, -0.0041063930839300156, -0.002440917771309614, -0.013034972362220287, -0.034960851073265076, 0.05136130750179291, 0.048447903245687485, -0.023935122415423393, 0.018095755949616432, -0.04018488526344299, 0.024851839989423752, -0.002555507468059659, 0.05005529895424843, -0.040687195956707, -0.02308119460940361, 0.049728795886039734, -0.004373245872557163, -0.015044216997921467, 0.0013829251984134316, 0.028054073452949524, -0.007509550545364618, -0.017153922468423843, 0.0009198571788147092, -0.01886177994310856, -0.028079189360141754, 0.012124533765017986, -0.011258047074079514, 0.029586121439933777, 0.04131508618593216, -0.009744835086166859, -0.017756696790456772, 0.05836854502558708, -0.041742049157619476, -0.04332432895898819, 0.006661900784820318, 0.0002882402332033962, 0.008526730351150036, 0.00300601776689291, 0.020695216953754425, 0.01068038959056139, 0.01318566594272852, 0.034885503351688385, -0.0022195870988070965, 0.023910006508231163, 0.021662164479494095, 0.025705769658088684, 0.0023263280745595694, 0.029987970367074013, -0.020042212679982185, -0.024223951622843742, 0.013687976635992527, -0.022855153307318687, 0.01226894836872816, -0.04540891945362091, 0.01393913198262453, 0.017229270190000534, 0.013122877106070518, 0.04264621064066887, -0.000963809376116842, 0.037497520446777344, 0.0031755478121340275, 0.006197263021022081, 0.0025319617707282305, 0.0026214357931166887, -0.01903758943080902, 0.004404640290886164, -0.012695912271738052, 0.00235772249288857, 0.0023043521214276552, 0.021122179925441742, 0.013009856455028057, 0.019389206543564796, -0.026974104344844818, 0.009738556109368801, 0.021787742152810097, 0.00032709084916859865, -0.010065058246254921, -0.03320276364684105, -0.006228657439351082, 0.03044005110859871, 0.0010038373293355107, 0.006454697344452143, -0.012670796364545822, -0.04123973846435547, -0.019075263291597366, -0.03872818499803543, -0.009342986159026623, -0.004090695641934872, 0.015006543137133121, -0.022390516474843025, -0.025655537843704224, -0.011440134607255459, 0.0021222643554210663, 0.002101857913658023, 0.012074301950633526, 0.054550983011722565, 0.019263628870248795, 0.0185227207839489, 0.011314556933939457, -0.018836665898561478, 0.00886579044163227, 0.02326956018805504, -0.006536322645843029, 0.010228308849036694, -0.007383972872048616, 0.01869853027164936, -0.005051365587860346, -0.007478156127035618, -0.0053715892136096954, -0.006969565991312265, 0.004332432989031076, 0.009273918345570564, 0.03179629147052765, -0.0031378744170069695, 0.03742217645049095, 0.0037233808543533087, -0.04621261730790138, -0.0004246098396833986, -0.005986920092254877, 0.01726694218814373, -0.016400456428527832, 0.003111189231276512, -0.007873726077377796, -0.03172094374895096, 0.024249067530035973, -0.03212279453873634, 0.002367140958085656, 0.009719719178974628, -0.016387898474931717, -0.004203715827316046, 0.026547139510512352, -0.03367995843291283, 0.048498135060071945, 0.003092352533712983, 0.005993199069052935, 0.00023349616094492376, -0.00011959320545429364, -0.010573647916316986, 0.016124185174703598], [0.0054093836806714535, 0.021023105829954147, 0.0076984320767223835, 0.02199896238744259, -0.01802324689924717, -0.006325002759695053, 0.042214877903461456, 0.03144429996609688, -0.006487645674496889, -0.046624306589365005, -0.03337192162871361, -0.0044937641359865665, 0.022721819579601288, -0.04910611733794212, 0.0004499034839682281, 0.04079325869679451, 0.01373429223895073, -0.0029787751846015453, -0.025155439972877502, 0.03826325759291649, 0.026191536337137222, -0.01178860105574131, -0.010951290838420391, 0.024022962898015976, 0.004581109154969454, -0.04002220928668976, 0.012384958565235138, 0.015710102394223213, 0.03011906147003174, -0.05672021582722664, 0.06558726727962494, -0.025902392342686653, 0.044262971729040146, -0.036576587706804276, 0.006144288461655378, 0.004129323177039623, 0.010336861945688725, 0.025613250210881233, 0.032143063843250275, -0.0032799658365547657, -0.079803466796875, 0.01752929389476776, 0.016481149941682816, 0.009571838192641735, 0.020348437130451202, -0.003099251538515091, -0.008945361711084843, 0.03455258905887604, -0.004397382959723473, -0.016517292708158493, 0.030335918068885803, 0.05040726065635681, -0.05961164832115173, -0.025516869500279427, -0.037010304629802704, -0.02763725072145462, -0.01263795793056488, 0.0199267715215683, 0.022360391914844513, 0.022059200331568718, 0.025372296571731567, -0.04643154516816139, -0.0038974066264927387, -3.440161526668817e-05, 0.013782482594251633, 0.004990728572010994, 0.010770576074719429, 0.024769917130470276, -0.023565154522657394, -0.017324484884738922, -0.014071625657379627, 0.015710102394223213, 0.022468820214271545, -0.05064821243286133, -0.023601297289133072, -0.025155439972877502, -0.002426090417429805, 0.010993457399308681, 0.06086460128426552, 0.002944138366729021, -0.042214877903461456, 0.037733159959316254, -0.03146839514374733, 0.0016716079553589225, -0.037010304629802704, -0.03250449150800705, -0.056816596537828445, 0.008469480089843273, -0.009764599613845348, 0.006909312680363655, -0.024769917130470276, -0.004048001952469349, -0.01568600721657276, 0.050600022077560425, 0.02444463036954403, -0.01978220045566559, 0.024047058075666428, -0.011969314888119698, 0.006204526871442795, 0.06293679028749466, 0.014324625954031944, 0.02055324800312519, 0.061394695192575455, 0.04566049575805664, 0.048696499317884445, -0.0032498466316610575, -0.03163706138730049, -0.03970897197723389, -0.015240245498716831, -0.007005693856626749, -0.04370878264307976, -0.0022423642221838236, 0.009065837599337101, 0.044383447617292404, -0.01433667354285717, 0.0014238785952329636, 0.031829822808504105, -0.011457291431725025, -0.015698054805397987, -0.02809506095945835, -0.029034774750471115, -0.03457668423652649, 0.03416706249117851, -0.043082304298877716, -0.04421478137373924, -0.0066261934116482735, 0.0002268341777380556, 0.00036406415165401995, -0.07257489114999771, -0.009204384870827198, -0.016975102946162224, -0.04681706801056862, 0.04684116318821907, 0.05050364136695862, 0.012951196171343327, 0.01491495966911316, -0.048816975206136703, -0.010728409513831139, -0.015288435854017735, 0.04402201995253563, 0.01454148255288601, 0.006355122197419405, 0.011029600165784359, -0.016107674688100815, -0.0435883067548275, 0.02170982025563717, 0.01321624405682087, 0.018264198675751686, 0.01833648420870304, -0.03795001655817032, -0.018661770969629288, 0.011499457992613316, 0.006915336474776268, -0.053298693150281906, 0.0038221089635044336, -0.01249338686466217, -0.039974018931388855, 0.019300295040011406, 0.006698479410260916, -0.014155958779156208, -0.01937258057296276, -0.015625769272446632, 0.005325050093233585, -0.02925163321197033, 0.027685441076755524, 0.005466609727591276, 0.011872934177517891, 0.01905934140086174, -0.062165744602680206, -0.03631154075264931, -0.0210472010076046, -0.03517906367778778, -0.0813455581665039, -0.014553530141711235, -0.036552492529153824, -0.022131485864520073, -0.024059105664491653, 0.05970802903175354, -0.06076821684837341, 0.011210314929485321, -0.019191866740584373, -0.0026866202242672443, -0.018613580614328384, -0.0024441618006676435, -0.023095296695828438, 0.005297943018376827, -0.009553765878081322, 0.039540305733680725, -0.0021595368161797523, 0.027830012142658234, -0.04684116318821907, -0.005532871466130018, 0.001531554269604385, 0.0621175542473793, -0.022902535274624825, 0.00824659876525402, -0.05835869535803795, 0.014830625616014004, 0.020854437723755836, -0.0332755409181118, 0.013710197061300278, -0.007722527254372835, 0.06712936609983444, 0.03799820691347122, -0.08385146409273148, 0.00484314514324069, 0.00449075223878026, 0.018360579386353493, 0.020914675667881966, 0.024565106257796288, 0.019276199862360954, -0.028986584395170212, -0.010065790265798569, -0.0017664829501882195, 0.004421478137373924, -0.016685960814356804, -0.03515496850013733, 0.055178120732307434, -0.031998492777347565, 0.08057451248168945, -0.025757821276783943, 0.008349004201591015, -0.01661367528140545, -0.05113011971116066, -0.01750519871711731, 0.03710668534040451, -0.022649534046649933, -0.02340853400528431, -0.010095909237861633, -0.056238312274217606, 0.00944533757865429, 0.009439313784241676, -0.057105742394924164, -0.037877731025218964, 0.0010285659227520227, 0.02187848649919033, -0.019613532349467278, -0.044262971729040146, 0.06047907471656799, 0.0377090647816658, 0.03161296620965004, 0.002929078647866845, -0.024336202070116997, -0.02864925190806389, -0.013770435005426407, -0.004737728275358677, -0.018300341442227364, 0.011583791114389896, -0.00464134756475687, 0.01609562709927559, -0.00922848004847765, 0.030070871114730835, 0.031998492777347565, -0.03809458762407303, -0.003957644570618868, 0.025830106809735298, -0.005559978540986776, -0.007716503459960222, -0.00280709657818079, -0.02746858447790146, 0.05864783748984337, -0.03720306605100632, -0.015637816861271858, 0.0023026021663099527, -0.05199754610657692, 0.01351743470877409, -0.006602098233997822, -0.00402993056923151, -0.018444912508130074, 0.023227820172905922, -0.06471984088420868, -0.04031135141849518, 0.0280709657818079, 0.005147347692400217, 0.005945502780377865, 0.029781728982925415, -0.023251915350556374, -0.028143251314759254, 0.003105275332927704, 0.03913068398833275, -0.08929699659347534, -0.014095720835030079, -0.026649346575140953, 0.006963526830077171, -0.011704267002642155, -0.006186455022543669, 0.0013094261521473527, 0.03604649379849434, -0.014625816605985165, 0.028866108506917953, 0.0902126133441925, -0.02496267855167389, -0.034938111901283264, -0.004888323601335287, 0.02311939187347889, 0.008324909023940563, -0.03498630225658417, -0.036287445574998856, -0.009180289693176746, -0.00459315674379468, -0.009969409555196762, 0.022384487092494965, 0.024914488196372986, -0.01995086669921875, -0.05199754610657692, -0.011306695640087128, -3.9766571717336774e-05, -0.009222456254065037, -0.004608216229826212, -0.019999057054519653, -0.012264481745660305, 0.0066201696172356606, -0.0050600022077560425, -0.048816975206136703, -0.003900418523699045, 0.003668501740321517, -0.030335918068885803, 0.002426090417429805, 0.02032434195280075, -0.030335918068885803, 0.03852830454707146, 0.033347826451063156, 0.05643107369542122, 0.004764835350215435, -0.028769727796316147, -0.0034426087513566017, -0.015673959627747536, 1.736552076181397e-05, -0.019481008872389793, 0.01075250469148159, 0.01989062875509262, 0.00893933791667223, 0.048238687217235565, 0.0014961643610149622, 0.0354682058095932, -0.01978220045566559, 0.017432913184165955, -0.03698620945215225, 0.012017505243420601, -0.030070871114730835, 0.004114263691008091, -0.02968534640967846, 0.012686148285865784, -0.002114358125254512, 0.051804784685373306, 0.023504916578531265, 0.02908296510577202, 0.07753851264715195, -0.0030540728475898504, -0.03180572763085365, -0.015011340379714966, -0.023890439420938492, 0.02193872444331646, -0.02421572618186474, -0.03134791925549507, -0.04669659212231636, -0.009523646906018257, 0.013999340124428272, -0.024914488196372986, 0.04804592579603195, -0.02248086780309677, 0.0302877277135849, -0.0077948132529854774, 0.010415171273052692, 0.041299257427453995, 0.0097886947914958, -0.020107485353946686, 0.02775772660970688, 0.024890393018722534, -0.012186172418296337, 0.045708686113357544, -0.024131393060088158, -0.036721158772706985, -0.02415548823773861, 0.026046965271234512, -0.02570963092148304, 0.06635831296443939, 0.0251072496175766, -2.1436300812638365e-05, -0.00990314781665802, 0.037034399807453156, -0.009403171017765999, -0.045756880193948746, 0.04982897639274597, 0.03901020810008049, 0.01771000772714615, -0.0406486839056015, -0.013396958820521832, 0.01595105417072773, 0.026408392935991287, 0.019649675115942955, -0.012210267595946789, -0.02585420198738575, 0.008993552066385746, -0.02556505985558033, 0.0049877166748046875, 0.07763489335775375, -0.03831144794821739, -0.004632311873137951, 0.006011764518916607, 0.003493811236694455, -0.016336578875780106, -0.022721819579601288, 0.01493905484676361, -0.008192384615540504, 0.02498677372932434, 0.03460077941417694, 0.015095673501491547, -0.03043230064213276, -0.04580507054924965, 0.008330932818353176, -0.048383262008428574, 0.03513087332248688, 0.014661959372460842, -0.007830956019461155, -0.028890203684568405, -0.03291410952806473, 0.03163706138730049, 0.024336202070116997, -0.005596121773123741, 0.01790277101099491, 0.04534725844860077, -0.026239726692438126, 0.005963574163615704, -0.028456488624215126, 0.053298693150281906, 0.004668454639613628, -0.028263727203011513, 0.00898150447756052, -0.023709725588560104, -0.040407732129096985, 0.0037859659641981125, 0.019758105278015137, 0.01263795793056488, -0.059322502464056015, -0.021866438910365105, -0.0014314084546640515, 0.013613815419375896, -0.027251726016402245, -0.04534725844860077, -0.06828593462705612, -0.009957361966371536, 0.02982991933822632, 0.04479306936264038, 0.001627935329452157, 0.016505245119333267, 0.035853732377290726, -0.019071388989686966, -0.01101152878254652, 0.00916824210435152, 0.007740598637610674, -0.027372203767299652, -0.060960981994867325, 0.054888978600502014, -0.05821412056684494, 0.01173438597470522, -0.06452707946300507, -0.05869602784514427, 0.028745632618665695, -0.07599641382694244, -0.008559837006032467, 0.08481527864933014, 0.10168195515871048, -0.0016580543015152216, 0.03852830454707146, 0.03664887323975563, -0.027516774833202362, -0.005120240617543459, 0.04315458983182907, -0.0005831803428009152, -0.04156430438160896, -0.011385004967451096, -0.05006992816925049, 0.012156053446233273, 0.04920249804854393, 0.005529859568923712, -0.004379311576485634, -0.008915241807699203, -0.046046022325754166, -0.016565483063459396, 0.009842908941209316, 0.033179156482219696, -0.020733961835503578, -0.0062225982546806335, 0.016710055992007256, 0.0420944020152092, -0.017432913184165955, 0.0013463220093399286, -0.03144429996609688, -0.012168101035058498, 0.014674006961286068, 0.03754039853811264, 0.0031956324819475412, -0.010626005008816719, -0.022818200290203094, 0.015384816564619541, -0.02970944158732891, 0.000559461594093591, 0.009234503842890263, -0.0258782971650362, 0.020432772114872932, -0.029661251232028008, 0.03117925301194191, -0.0180834848433733, -0.02196281962096691, 0.010740457102656364, 0.011619933880865574, -0.042648591101169586, 0.036263350397348404, 0.016625722870230675, -0.021167676895856857, 0.012330743484199047, 0.017517246305942535, 0.01715581677854061, 0.04014268517494202, -0.010222409851849079, -0.017481103539466858, 0.012650005519390106, -0.004855192732065916, 0.01960148476064205, -0.009794718585908413, -0.0391547791659832, -0.06886421889066696, -0.03269725292921066, -0.013902958482503891, 0.004487740341573954, -0.019396675750613213, -0.03575735166668892, -0.022059200331568718, 0.0016791376983746886, 0.00912607554346323, -0.04211849719285965, -0.046311069279909134, -0.025902392342686653, 0.0006648782873526216, 0.037178970873355865, -0.009204384870827198, -0.041010115295648575, 0.013228291645646095, -0.025902392342686653, 0.0384078286588192, -0.005831050220876932, -0.013409006409347057, 0.008861027657985687, -0.027372203767299652, 0.0040781209245324135, -0.011397052556276321, -0.007981550879776478, 0.017288342118263245, 0.035516396164894104, 0.033612873405218124, 0.009005599655210972, 0.030480490997433662, -0.015541436150670052, 0.020709866657853127, -0.006331026554107666, 0.007836979813873768, 0.011806672438979149, 0.044118400663137436, 0.02573372609913349, 0.016649818047881126, 0.010589862242341042, 0.006511741317808628, -0.011198267340660095, 0.05199754610657692, 0.01960148476064205, -0.0071141221560537815, -0.006174407433718443, -0.04900973662734032, 0.005758764687925577, 0.021902581676840782, -0.02084239013493061, 0.006704503204673529, 0.037010304629802704, 0.006963526830077171, 0.03313096612691879, 0.0029110072646290064, -0.03999811410903931, -0.007686384487897158, -0.016167912632226944, -0.013119863346219063, 0.022697724401950836, 0.0066201696172356606, -0.008282741531729698, -0.018577437847852707, 0.0005176713457331061, -0.020107485353946686, 0.0011354886228218675, -0.0045660496689379215, 0.019842438399791718, -0.002901971573010087, -0.01684257946908474, 0.033155061304569244, 0.015577578917145729, 0.0064575267024338245, 0.02585420198738575, 0.01899910345673561, -0.051226500421762466, -0.05334688350558281, 0.042214877903461456, 0.020083390176296234, -0.012577719986438751, 0.019758105278015137, -0.027805916965007782, -0.010198314674198627, -0.022504962980747223, -0.012770482338964939, 0.00974652823060751, 0.011722338385879993, 0.013131910935044289, -0.005291919223964214, 0.01937258057296276, 0.04479306936264038, -0.055178120732307434, -0.00798757467418909, -0.051371071487665176, -0.02423982135951519, -0.008108051493763924, -0.0018252151785418391, 0.006050919648259878, -0.05262402445077896, 0.015011340379714966, 0.03498630225658417, -0.006403312552720308, -0.01905934140086174, 0.011150076985359192, 0.028408298268914223, -0.0465761162340641, -0.020589390769600868, 0.0010888040997087955, -0.004770859144628048, 0.026071060448884964, -0.010342885740101337, 0.006644264794886112, 0.0015541436150670052, -0.023601297289133072, 0.02320372499525547, 0.02539639361202717, -0.011192243546247482, 0.06259945780038834, 0.06235850602388382, 0.005891288630664349, 0.0063912649638950825, -0.042504020035266876, 0.0428895428776741, 0.009354980662465096, 0.03573325648903847, 0.03440801426768303, -0.023565154522657394, 0.008855003863573074, 0.01381862536072731, -0.032167159020900726, 0.0042076329700648785, -0.013168053701519966, -0.020203866064548492, 0.032287634909152985, 0.00382512086071074, 0.05729850381612778, 0.004557013977319002, 0.017950961366295815, -0.022264011204242706, 0.0017182924784719944, 0.010077837854623795, 0.020709866657853127, 0.003945596981793642, 0.03146839514374733, -0.007818908430635929, 0.021661629900336266, -0.0028176382184028625, 0.016685960814356804, 0.018095532432198524, 0.0060659791342914104, 0.022962773218750954, -0.021601390093564987, -0.02689029835164547, 0.012505434453487396, -0.020709866657853127, 0.005599133670330048, -0.004550990182906389, 0.0021941736340522766, -0.0008990539936348796, -0.013131910935044289, -0.018661770969629288, -0.011800648644566536, 0.0008019200176931918, -0.005529859568923712, 0.023444676771759987, -0.023095296695828438, 0.011836791411042213, 0.01387886330485344, 0.0009216432808898389, 0.021553199738264084, -0.013963197357952595, -0.03741992264986038, -0.008186360821127892, 0.008156241849064827, 0.011915100738406181, -0.03513087332248688, -0.004087156616151333, -0.0023613343946635723, -0.013143958523869514, -0.022492915391921997, -0.015324578620493412, -0.043371450155973434, -0.03175753727555275, 0.006981598678976297, -0.0009095956338569522, -0.01862562820315361, 0.05647926405072212, -0.022986868396401405, -0.05392516776919365, -0.0034486325457692146, -0.03768496960401535, 0.01796300895512104, -0.051081929355859756, 0.01536072138696909, 0.00392150180414319, -0.03233582526445389, 0.009457385167479515, 0.013240339234471321, -0.05484078824520111, 0.023709725588560104, -0.024541011080145836, -0.03011906147003174, 0.018722008913755417, 0.011613910086452961, 0.038504209369421005, -0.012445196509361267, 0.03713078051805496, -0.006547884084284306, 0.0531541183590889, -0.02542048878967762, -0.045732781291007996, 0.017890723422169685, 0.010421195067465305, 0.02836010791361332, -0.030625062063336372, -0.026986679062247276, -0.003138406202197075, -0.0011761493515223265, -0.03619106486439705, -0.015842625871300697, 0.004228716250509024, -0.005584074184298515, -0.013999340124428272, -0.004909406881779432, -0.018059389665722847, -0.006927384063601494, -0.019312342628836632, 0.028311917558312416, 0.016963055357336998, 0.008830908685922623, -0.019999057054519653, -0.006584026850759983, 0.014927007257938385, -0.024167535826563835, 0.06337050348520279, 0.02674572728574276, -0.015758292749524117, 0.045154497027397156, 0.03778135031461716, 0.02121586725115776, -0.023938629776239395, 0.02432415448129177, 0.005300954915583134, -0.016710055992007256, -0.03913068398833275, -0.015204102732241154, 0.0023809117265045643, -0.008903194218873978, 0.002969739492982626, 0.0024787988513708115, 0.027396298944950104, -0.031155157834291458, 0.0041443826630711555, 0.00524674030020833, 0.002644453663378954, -0.03195029869675636, -0.027420394122600555, -0.004174502100795507, 0.06370783597230911, -0.0014223726466298103, -0.005484681110829115, 0.006824979558587074, -0.009089932776987553, -0.04886516556143761, 0.016577530652284622, 0.02328805811703205, 0.020517105236649513, -0.01583057828247547, -0.02096286602318287, -0.018505152314901352, -0.009101980365812778, -0.01024650502949953, 0.0031835848931223154, 0.003626334946602583, -0.00015294835611712188, -0.004885311704128981, -0.02268567681312561, 0.025203630328178406, -0.008855003863573074, -0.0022017033770680428, 0.0047859190963208675, 0.0020992986392229795, 0.006764741148799658, -0.0399017333984375, 0.002164054661989212, 0.003749823197722435, 0.0017514234641566873, -0.01024650502949953, -0.016914865002036095, 0.020746009424328804, -0.00367452553473413, 0.03913068398833275, 0.00930076651275158, 0.0001699844578979537, 0.01626429334282875, -0.008993552066385746, -0.029010679572820663, 0.03399839624762535, 0.04231125861406326, -0.0041684783063828945, -0.020143628120422363, 0.0001034401502693072, 0.044985830783843994, -0.009722433052957058, 0.032600872218608856, 0.020023152232170105, -0.022348344326019287, 0.03279363363981247, -0.003099251538515091, -0.0310346819460392, -0.009969409555196762, -0.01603538915514946, -0.028311917558312416, 0.0070478604175150394, -0.01249338686466217, -0.02090262807905674, -0.008481527678668499, -0.04879288002848625, 0.02415548823773861, -0.02196281962096691, -0.0014645393239334226, 0.008409242145717144, -0.00968629028648138, -0.01669800840318203, -0.04038363695144653, -0.0027905311435461044, -0.029805824160575867, 0.024263916537165642, -0.020288199186325073, -0.013806577771902084, 0.00860802736133337, 0.008921265602111816, -0.0005462844856083393, 0.015119768679141998, 0.006204526871442795, -0.003560072975233197, 0.0059153838083148, -0.027589060366153717, -0.03264906257390976, -0.027083059772849083, -0.003581156488507986, -0.034070681780576706, 0.004472680855542421, 0.02999858558177948, 0.02999858558177948, 0.02602287009358406, 0.01724015176296234, -0.0017920841928571463, 0.01960148476064205, 0.007005693856626749, 0.005297943018376827, -0.010433242656290531, -0.0006754199275746942, 0.0016851614927873015, 0.010385052300989628, -0.01418005395680666, 0.0479736402630806, 0.04903383180499077, 0.0035781445913016796, 0.009842908941209316, 0.0012823190772905946, -0.014589673839509487, -0.013095768168568611, -0.009632076136767864, -0.014613769017159939, 0.021107438951730728, 0.03501039743423462, 0.004972657188773155, 0.0005093886284157634, -0.005728645715862513, 0.026215631514787674, 0.013710197061300278, -0.016830531880259514, -0.004710621200501919, 0.01225243415683508, -0.01785457879304886, -0.02222786657512188, 0.02896248921751976, -0.018203960731625557, -0.0016565483529120684, 0.0155173409730196, 0.0022122450172901154, 0.010222409851849079, -0.006529812701046467, 0.02657705917954445, -0.041034210473299026, 0.003945596981793642, -0.054310690611600876, 0.03192620351910591, 0.011107909493148327, -0.01640886440873146, -0.05672021582722664, -0.020348437130451202, 0.027420394122600555, -0.007957455702126026, -0.0033462278079241514, 0.004041978158056736, -0.013336720876395702, -0.005770812276750803, 0.028914298862218857, 0.028311917558312416, 0.0243843924254179, -0.043516021221876144, 0.009933266788721085, -0.01609562709927559, 0.02038458175957203, -0.021384533494710922, -0.00570756196975708, 0.02631201222538948, 0.014890864491462708, 0.019854485988616943, 0.04607011750340462, 0.006740645971149206, 0.0015180007321760058, 0.02616744115948677, -0.02674572728574276, 0.018722008913755417, 0.005990681238472462, -0.00801769457757473, 0.02040867693722248, 0.02558915503323078, -0.021095391362905502, 0.008071908727288246, -0.04002220928668976, -0.0266011543571949, 0.017758198082447052, 0.047780878841876984, 0.023529011756181717, 0.002401995239779353, 0.010939243249595165, 0.03409477695822716, -0.022842295467853546, -0.008144194260239601, 0.037468113005161285, 0.010957314632833004, -0.03161296620965004, 0.0057105738669633865, 0.005213609430938959, -0.025227725505828857, -0.003090215614065528, -0.006969550624489784, -0.0340224914252758, 0.002189655788242817, 0.025637345388531685, 0.01107176672667265, 0.007469527423381805, -0.013035530224442482, 0.018697913736104965, -0.004520871210843325, -0.027107154950499535, 0.045877356082201004, 0.007897217757999897, -0.013469244353473186, 0.015673959627747536, 0.016432959586381912, -0.04154020920395851, -0.0059304432943463326, -0.02452896349132061, 0.019131628796458244, 0.013722244650125504, 0.009650147520005703, -0.003171537071466446, -0.03293820470571518, 0.007180384360253811, 0.010373004712164402, 0.0012740363599732518, -0.004659418947994709, -0.014204149134457111, -0.007337003480643034, 0.00672859838232398, 0.02283024787902832, -0.04925068840384483, -0.005210597533732653, -0.0012785542057827115, 0.04317868500947952, 0.034191157668828964, 0.021167676895856857, 0.0021821260452270508, -0.02823963202536106, -0.021758010610938072, 0.015192054212093353, 0.011499457992613316, -0.0034426087513566017, 0.016999198123812675, 0.05103373900055885, 0.019625579938292503, -0.005035907030105591, -0.03958849608898163, 0.03951621055603027, -0.037877731025218964, 0.013951149769127369, -0.030046775937080383, -0.013565625064074993, -0.021167676895856857, -0.027878202497959137, -0.012698196806013584, -0.022324249148368835, 0.041732970625162125, -0.016830531880259514, -0.007577955722808838, 0.03151658549904823, 0.002007435541599989, -0.015758292749524117, -0.0060930862091481686, -0.006818955764174461, -0.01499929279088974, 0.04698573425412178, 0.005608169361948967, 0.008806813508272171, 0.02156524732708931, -0.0107103381305933, 0.03664887323975563, -0.026046965271234512, 0.012890958227217197, -0.0022077271714806557, -0.0206978190690279, -0.00524674030020833, 0.009367028251290321, 0.0035028469283133745, -0.016155865043401718, 0.002596263075247407, 0.020203866064548492, 0.01433667354285717, -0.005126264411956072, 0.01373429223895073, 0.03756449371576309, 0.02498677372932434, 0.02821553684771061, -0.0024787988513708115, 0.0413956381380558, -0.06867145746946335, 0.02432415448129177, -0.011240433901548386, -0.017493151128292084, -0.012830720283091068, -0.03722716122865677, 0.010764552280306816, 0.002252905862405896, -0.025324106216430664, -0.032143063843250275, -0.0003877829294651747, 0.007692408282309771, 0.020649628713726997, 0.0014758340548723936, -0.02262543886899948, 0.013999340124428272, 0.0007597533403895795, -0.014348721131682396, -0.028480583801865578, 0.016938960179686546, 0.031131062656641006, 0.007746622432023287, 0.02674572728574276, -0.04091373458504677, -0.01499929279088974, -0.0347694456577301, 0.02026410400867462, 0.026095155626535416, -0.005159395281225443, 0.022577248513698578, 0.01107176672667265, 0.005945502780377865, 0.0070478604175150394, 0.00013318272249307483, -0.0022318223491311073, 0.017493151128292084, -0.001701726927421987, 0.030552776530385017, -0.02007134258747101, 0.0391547791659832, -0.001980328233912587, 0.01819191314280033, -0.0028040846809744835, -0.005430466961115599, 0.014878815971314907, 0.01131271943449974, 0.0251072496175766, 0.0031173229217529297, 0.021372485905885696, 0.020059294998645782, 0.007162312977015972, 0.0016234173672273755, 0.039540305733680725, -0.022938678041100502, -0.0033944181632250547, -0.015469149686396122, 0.03534772992134094, 0.019107531756162643, 0.022276058793067932, 0.013987292535603046, 0.0018673818558454514, -0.0006317473016679287, 0.03501039743423462, 0.021372485905885696, -0.006668360438197851, 0.036118779331445694, 0.027733631432056427, 0.011607886292040348, -0.04905792698264122, -0.02544458396732807, -0.01860153302550316, -0.008011670783162117, 0.0096019571647048, 0.0009638099581934512, -0.024348249658942223, 0.04860011860728264, -0.022179676219820976, 0.024275964125990868, -0.00826467014849186, 0.0025179535150527954, 0.0010135064367204905, -0.014264388009905815, 0.011650052852928638, 0.008192384615540504, -0.00010249893239233643, -0.01617996022105217, 0.03727535158395767, 0.003969692159444094, 0.021059248596429825, -0.014312578365206718, -0.0034968231339007616, -0.00983086135238409, -0.008487551473081112, 0.002760411938652396, -0.01796300895512104, 0.062310315668582916, -0.0023914535995572805, -0.00902367103844881, 0.01652934029698372, 0.03821506351232529, -0.02346877194941044, -0.029781728982925415, -0.0003859004646074027, -0.03074553795158863, 0.011601862497627735, -0.013143958523869514, 0.012842767871916294, 0.02461329661309719, 8.108616020763293e-05, -0.02075805701315403, -0.028456488624215126, 0.01271024439483881, 0.02720353566110134, -0.008210455998778343, -0.009758575819432735, 0.0166377704590559, -0.004644359461963177, 0.01750519871711731, -0.010854910127818584, 0.0009781165281310678, -0.035829637199640274, 0.014649911783635616, -0.04151611402630806, -0.0487205944955349, 0.016083579510450363, 0.02570963092148304, 0.02119177207350731, 0.014806530438363552, -0.00668643182143569, 0.026866203173995018, -0.01157174352556467, -0.028263727203011513, -0.034528493881225586, 0.05339507386088371, -0.015155911445617676, 0.014023435302078724, 0.012348814867436886, -0.030841918662190437, -0.017336532473564148, -0.025902392342686653, 0.005746717099100351, -0.010427218861877918, -0.02351696416735649, 0.013529482297599316, -0.03534772992134094, 0.0125536248087883, 0.004376299679279327, -0.014975197613239288, -0.03903430327773094, 0.01050552912056446, 0.014890864491462708, 0.015155911445617676, -0.012577719986438751, -0.01715581677854061, 0.02763725072145462, 0.009367028251290321, -0.022553153336048126, -0.05527450144290924, -0.0007100568618625402, 0.022926630452275276, 0.0008952891221269965, -0.004602192435413599, -0.03949211537837982, 0.01986653357744217, -0.01862562820315361, -0.011499457992613316, 0.010885029099881649, 0.026071060448884964, -0.020938770845532417, -0.03505858778953552, 0.014457149431109428, -0.021492961794137955, 0.03187801316380501, -0.012818672694265842, 0.0073008607141673565, -0.03043230064213276, -0.0004581862303894013, 0.0016640780959278345, 0.02156524732708931, -0.01877019926905632, 0.0014351733261719346, 0.003951620776206255, -0.007897217757999897, 0.0016294412780553102, 0.017119674012064934, -0.0032046681735664606, -0.023757915943861008, 0.005379264242947102, -0.02464943937957287, 0.0048973592929542065, 0.0118307676166296, -0.018240103498101234, -0.013710197061300278, 0.010138075798749924, -0.0170112457126379, 0.007222550921142101, -0.0079454081133008, 0.00863814726471901, -0.00898150447756052, 0.0041443826630711555, -0.011770529672503471, -0.01960148476064205, -0.0004890582640655339, -0.006156336050480604, -0.010071814060211182, -0.02643248811364174, -0.014204149134457111, 0.0036383825354278088, -0.0008508634637109935, -0.007385193835943937, -0.024372344836592674, 0.019324390217661858, -0.04407021030783653, 0.008306837640702724, -0.008186360821127892, -0.014083673246204853, 0.0064575267024338245, -0.017252199351787567, 0.0392029695212841, 0.032721348106861115, -0.01263795793056488, 0.001769494847394526, -0.03423934802412987, 0.056961167603731155, 0.024288011714816093, 0.01719195954501629, 0.021529104560613632, 0.01721605472266674, -0.025757821276783943, 0.010077837854623795, -0.013625863008201122, -0.025300011038780212, -0.009620028547942638, 0.015698054805397987, -0.0018990067765116692, -0.0006633723387494683, 0.03455258905887604, 0.008668266236782074, 0.019444866105914116, -0.03739582747220993, 0.047371260821819305, -0.026191536337137222, -0.005159395281225443, 0.006849074736237526, 0.006800883915275335, 0.005957550369203091, -0.008969456888735294, 0.01837262697517872, -0.0310105849057436, 0.018155770376324654, 0.019324390217661858, 0.019300295040011406, -0.02481810748577118, -0.004644359461963177, 0.0005700032343156636, -0.042624495923519135, 0.026866203173995018, -0.025468679144978523, -0.029034774750471115, 0.05011811852455139, -0.0030495550017803907, 0.013999340124428272, 0.02896248921751976, 0.0025390367954969406, 0.0016595602501183748, -0.015902863815426826, 0.006044895853847265, 0.02328805811703205, 0.00627681240439415, -0.009885076433420181, 0.02052915282547474, -0.011625957675278187, 0.054888978600502014, -0.0008470985922031105, -0.017999151721596718, 0.02631201222538948, -0.010210362263023853, -0.022842295467853546, 0.008614051155745983, -0.0071382177993655205, -0.043516021221876144, 0.006981598678976297, -0.004638335667550564, -0.02795048989355564, 9.22396284295246e-05, 0.012397006154060364, 0.012047624215483665, 0.01000555232167244, -0.003165513277053833, -0.024890393018722534, -0.06076821684837341, 0.02038458175957203, -0.007312908302992582, -0.0012747893342748284, 0.02346877194941044, 0.036721158772706985, -5.628499638987705e-05, 0.001192714786157012, -0.03016725182533264, 0.02113153412938118, -0.0048973592929542065, 0.027878202497959137, -0.0015006822068244219, 0.03385382518172264, -0.025685535743832588, 0.022420629858970642, 0.005831050220876932, 0.020938770845532417, 0.012565672397613525, -0.004075109027326107, 0.00024057600239757448, 0.005692502483725548, 0.038769256323575974, -0.005912371911108494, -0.03354058787226677, -0.018878627568483353, -0.01655343547463417, -0.005358180962502956, -0.018553342670202255, 0.029444394633173943, 0.009620028547942638, 0.010077837854623795, 0.009921219199895859, 0.014276435598731041, -0.01387886330485344, -0.003795001655817032, 0.016420911997556686, 0.02643248811364174, -0.011740409769117832, -0.026480678468942642, -0.02484220266342163, -0.03342011198401451, 0.006891241297125816, -0.001529295346699655, -0.02119177207350731, -0.014059578068554401, -0.01307167299091816, 0.005541907157748938, -0.04334735497832298, -0.00709002697840333, 0.03298639506101608, -0.025059059262275696, -0.041299257427453995, 0.003761870786547661, -0.028745632618665695, -0.03623925521969795, -0.010095909237861633, 1.2012328625132795e-05, -0.010475409217178822, -0.00724062230437994, -0.025974677875638008, -0.0011897028889507055, 0.023300105705857277, 0.001509718014858663, -0.009716409258544445, -0.00036914675729349256, -0.019191866740584373, 0.03223944455385208, 0.010312766768038273, 0.008035765960812569, 0.02481810748577118, 0.0009329379536211491, -0.014264388009905815, -0.007011717651039362, 0.002272483194246888, -0.006035860162228346, 0.0062225982546806335, 0.01148741040378809, -0.015180006623268127, 0.003376346779987216, 0.004192573484033346, -0.0391065888106823, -0.02199896238744259, 0.0005925925215706229, -0.020890580490231514, 0.0027167394291609526, 0.002251399913802743, 0.009120051749050617, 0.04775678366422653, 0.02558915503323078, -0.005963574163615704, -0.024107296019792557, 0.011433195322751999, -0.00878271833062172, 0.004632311873137951, 0.018324436619877815, 0.01505953073501587, 0.030673252418637276, 0.036432016640901566, -0.016372721642255783, 0.008614051155745983, -0.010107956826686859, 0.045564115047454834, -0.015457102097570896, -0.018348531797528267, -0.01848105527460575, -0.012433148920536041, -0.006288859993219376, -0.004722668789327145, 0.016914865002036095, 0.051226500421762466, -0.0004860463668592274, 0.0014238785952329636, -0.03382973000407219, 0.0024110309313982725, -0.009879052639007568, -0.014131863601505756, -0.008987528271973133, -0.0280709657818079, -0.0155052924528718, -0.02484220266342163, -0.01499929279088974, 0.013228291645646095, 0.03987763822078705, 0.0031022634357213974, 0.0013199679087847471, -0.010535648092627525, 0.01351743470877409, -0.010559743270277977, -0.00672859838232398, -0.03710668534040451, -0.021842343732714653, -0.033323731273412704, 0.03368515893816948, 0.0028191441670060158, -0.016360674053430557, -0.043829258531332016, 0.00485218083485961, -0.03503449261188507, -0.0009073367109522223, 0.0025601203087717295, -0.0018297330243512988, -0.009595933370292187, 0.0005376252229325473, -0.02823963202536106, -0.024769917130470276, -0.021974867209792137, -0.0032046681735664606, 0.014204149134457111, 0.02939620427787304, 0.02999858558177948, -0.023854296654462814, 0.01225243415683508, -0.0116319814696908, 0.02357720211148262, 0.02384224906563759, -0.010764552280306816, 0.0010345897171646357, 0.0021203819196671247, 0.05570821464061737, 0.0014893875923007727, 0.020565295591950417, 0.014252339489758015, -0.009258599951863289, -0.003538989694789052, 0.003165513277053833, 0.018131675198674202, -0.03905839845538139, 0.010987433604896069, 0.011119957081973553, 0.009499551728367805, -0.019673770293593407, 0.06226212531328201, 0.003713680198416114, 0.015987198799848557, -0.006439455319195986, -0.003153465688228607, 0.006722574587911367, 0.02130020037293434, 0.03946801647543907, -0.034046586602926254, 0.021239962428808212, -0.017288342118263245, -0.03867287561297417, -0.0347694456577301, 0.020649628713726997, -0.00860802736133337, 0.008571884594857693, 0.008975480683147907, 0.0037257280200719833, -0.015878768637776375, 0.009457385167479515, -0.015384816564619541, -0.026095155626535416], [-0.022858876734972, 0.005974338389933109, 0.003718121675774455, 0.005538548808544874, -0.0554349385201931, 0.024725662544369698, 0.014649955555796623, 0.05538548529148102, 0.014526327140629292, -0.07096265256404877, -0.018840955570340157, -0.022339636459946632, 0.027964726090431213, -0.01863078773021698, -0.0014170896029099822, 0.0014626774936914444, -0.015836788341403008, -0.017147246748209, -0.0007831081165932119, 0.04354189336299896, 0.011590154841542244, 0.050366178154945374, -0.013129327446222305, -0.02880539745092392, 0.007572234608232975, -0.026728441938757896, -0.0488579124212265, -0.021078627556562424, 0.013834008947014809, -0.05948994681239128, -0.009167039766907692, -0.021103354170918465, 0.0064966678619384766, -0.04826449602842331, -0.01024260651320219, -0.053654689341783524, -0.009482291527092457, -0.021882211789488792, 0.021165167912840843, 0.0007579961093142629, -0.027593839913606644, -0.006005245726555586, 0.01441506203263998, 0.04398695379495621, 0.018025008961558342, -0.005751807242631912, -0.021053902804851532, -0.009766637347638607, 0.03941270709037781, 0.01027351338416338, -0.022722885012626648, 0.050737060606479645, -0.034789007157087326, -0.057709697633981705, 0.005167663563042879, -0.05108322203159332, 0.03473955765366554, 0.050390902906656265, 0.0617152564227581, 0.008524172939360142, 0.010514588095247746, -0.043764423578977585, 0.0033688717521727085, -0.01617058366537094, 0.00486477417871356, 0.03310766443610191, -0.014192530885338783, -0.0035357698798179626, -0.030783450230956078, -0.007788584101945162, 0.030313663184642792, -0.0047504180110991, 0.0542975552380085, -0.03261315077543259, 0.009822269901633263, 0.015898602083325386, -0.010990557260811329, 0.041019875556230545, -0.016813451424241066, 0.00905577465891838, -0.02168440632522106, -0.006787194404751062, -0.04660787433385849, -0.02492346800863743, -0.013339495286345482, -0.09405642747879028, -0.09736966341733932, -0.015762610360980034, -0.021066265180706978, 0.031154336407780647, -0.03122851252555847, -0.020893186330795288, 0.01180032268166542, 0.07432534545660019, 0.009846995584666729, -0.05108322203159332, -0.04702821373939514, -0.04705293849110603, 0.007745313923805952, 0.01743159256875515, 0.0020970453042536974, -0.037187397480010986, 0.010322964750230312, 0.010601128451526165, 0.07308906316757202, -0.015268097631633282, 0.026308106258511543, 0.0016272576758638024, -0.05924268811941147, -0.008548897691071033, -0.03726157546043396, -0.0385720357298851, -0.0005945749580860138, 0.053308531641960144, 0.009661553427577019, 0.010026256553828716, 0.04843757301568985, -0.0021573142148554325, -0.02028740756213665, -0.04092097282409668, -0.014254344627261162, 0.016281848773360252, 0.016838176175951958, -0.02203056588768959, 0.010038618929684162, -0.011287265457212925, 0.0026981879491358995, 0.040105026215314865, -0.05311072617769241, -0.004821504466235638, 0.02660481445491314, -0.04289902746677399, -0.005591090768575668, -0.01828462816774845, 0.010662942193448544, -0.015762610360980034, -0.014773583970963955, -0.014464513398706913, -0.0167145486921072, 0.022339636459946632, 0.031129609793424606, -0.04994583874940872, 0.012696628458797932, -0.0018621515482664108, -0.05345688387751579, -0.004274448845535517, -0.0405748151242733, -0.00521402433514595, 0.035703856498003006, 0.0036192189436405897, -0.01782720349729061, -0.054396457970142365, 0.03585221245884895, -0.023254485800862312, -0.025368530303239822, 0.01374746859073639, -0.005343833938241005, 0.021016813814640045, 0.0018976946594193578, -0.008919782936573029, -0.03473955765366554, -0.007893668487668037, 0.002335029887035489, -0.014439787715673447, 0.009711003862321377, 0.028211982920765877, -0.07185278087854385, 0.022500352934002876, -0.039387982338666916, -0.0036254003643989563, -0.01837116852402687, 0.013252955861389637, -0.10216644406318665, 0.07081429660320282, -0.02754438854753971, -0.004929678980261087, 0.0020398672204464674, -0.00014410425501409918, -0.03738520294427872, 0.018704963847994804, 0.00014767788525205106, 0.009846995584666729, 0.01791374385356903, 0.010236424393951893, -0.0003419095592107624, -0.026530636474490166, -0.002664190251380205, 0.015700796619057655, -0.008079110644757748, 0.027939999476075172, -0.0002741071511991322, 0.02737130969762802, -0.0480172373354435, 0.0422808863222599, 0.012041398324072361, -0.041736919432878494, -0.03048674389719963, -0.004561884794384241, 0.038250602781772614, -0.05251730978488922, -0.02751966379582882, 0.017357416450977325, 0.02355119399726391, 0.03303348645567894, -0.07907266914844513, 0.025591062381863594, -0.010304420255124569, -0.014612867496907711, 0.035357698798179626, -0.01467468123883009, 0.03632200136780739, -0.021845122799277306, 0.02303195558488369, 0.011911588720977306, -0.025133637711405754, -0.01100292056798935, -0.06186360865831375, 0.07511656731367111, -0.020435761660337448, 0.0725945457816124, -0.06379221379756927, 0.0036779423244297504, 0.02523254044353962, 0.006737743504345417, 0.023699548095464706, 0.05494042485952377, 0.01919947750866413, -0.04260231927037239, 0.032217539846897125, -0.028854848816990852, -0.01577497273683548, -0.007578415796160698, -0.03157467395067215, -0.02037394605576992, 0.018185725435614586, -0.029299911111593246, 0.0036995774134993553, -0.041539113968610764, 0.015354637056589127, 0.029126832261681557, 0.018309352919459343, -0.05469316616654396, -0.0073126149363815784, -0.013586752116680145, 0.021325884386897087, -0.00039599696174263954, -0.009896446950733662, 0.015095017850399017, 0.03506099060177803, -0.06834173202514648, 0.0033256018068641424, 0.006199960131198168, -0.030387841165065765, -0.04611336067318916, -0.01448923908174038, 0.015960415825247765, -0.018618425354361534, 0.007188986521214247, 0.03562968224287033, -0.04702821373939514, 0.04932769760489464, 0.025566335767507553, 0.013314769603312016, 0.021276433020830154, -0.03609946742653847, 0.022426176816225052, -0.017579946666955948, 0.023650096729397774, -0.017851928249001503, 0.04917934536933899, -0.04020392894744873, -0.05118212476372719, 0.030610371381044388, 0.0024292964953929186, -0.0031417047139257193, 0.011942495591938496, -0.0218574870377779, -0.02320503443479538, -0.01971871592104435, 0.02311849594116211, -0.053506337106227875, -0.02826143242418766, 0.024824565276503563, -0.0039004734717309475, 0.008839424699544907, 0.0013753650709986687, 0.02471330016851425, 0.03117906115949154, 0.004339354112744331, 0.018358804285526276, 0.007967844605445862, -0.061764705926179886, 0.005711628124117851, -0.039190176874399185, 0.02974497340619564, -0.0442836619913578, 0.02394680492579937, -0.055682193487882614, -0.010873110964894295, 0.004846230149269104, 0.053506337106227875, 0.039017096161842346, 0.0420089028775692, -0.06730325520038605, -0.010050982236862183, 0.02677789330482483, 0.004459891468286514, -0.012894433923065662, 0.004045736510306597, -0.023155583068728447, -0.013426035642623901, -0.03540714830160141, -0.03135214000940323, -0.056869026273489, -0.010038618929684162, 0.020126689225435257, 0.03436867147684097, 0.03125323727726936, 0.011763234622776508, -0.02863231860101223, 0.01625712402164936, 0.016504380851984024, 0.01688762754201889, -0.028014177456498146, -0.0319950096309185, -0.06166580319404602, 0.00594343151897192, -0.01806209795176983, -0.05177553743124008, -0.002854268765076995, 0.004104460123926401, -0.04898153990507126, 0.028780672699213028, 0.04059953987598419, 0.013969999738037586, 0.006422491278499365, 0.009333938360214233, -0.04537159204483032, 0.03120378777384758, 0.010860747657716274, 0.00428681168705225, -0.05647341534495354, -0.0037212122697383165, -0.030190035700798035, -0.022821787744760513, -0.010217880830168724, 0.010811296291649342, 0.003705758834257722, -0.038102246820926666, -0.02697569876909256, 0.011979583650827408, -0.02165968157351017, 0.010860747657716274, -0.01834644190967083, 0.010156066156923771, -0.010582583956420422, 0.008653982542455196, -0.0033472366631031036, -0.02368718571960926, 0.016764000058174133, -0.03288513422012329, -0.021783309057354927, -0.008944508619606495, -0.005285110790282488, 0.05498987436294556, 0.02860759198665619, -0.0027476393152028322, 0.034418124705553055, -0.013141689822077751, -0.04329463839530945, -0.01902639865875244, 0.02251271717250347, -0.03731102496385574, -0.013438398018479347, -0.02769274264574051, 0.006125783082097769, 0.03283568099141121, -0.014316159300506115, 0.026382282376289368, 0.0030489834025502205, 0.01514446921646595, -0.05395139753818512, -0.007479513064026833, -0.006873734295368195, 0.03523407131433487, -0.0148601233959198, -0.028558140620589256, -0.007924575358629227, -0.030783450230956078, 0.0005211706156842411, -0.01027351338416338, -0.03812697157263756, -0.025912495329976082, -0.0037304845172911882, -0.02625865489244461, 0.012523548677563667, -0.020596478134393692, -0.036396175622940063, -0.044852353632450104, 0.0317230261862278, -0.004537159111350775, -0.015490627847611904, -0.03634672611951828, 0.05212169885635376, -0.06512739509344101, 0.03911599889397621, 0.04843757301568985, -0.022265460342168808, -0.004824595060199499, 0.03132741525769234, 0.04074789211153984, -0.046904582530260086, 0.04181109741330147, 0.0015422633150592446, 0.010576402768492699, 0.010551677085459232, -0.0004694012750405818, 0.018927495926618576, -0.034789007157087326, -0.005204752087593079, -0.0362972728908062, 0.010829840786755085, -0.023711910471320152, 0.013388946652412415, 0.013846371322870255, 0.02865704335272312, 0.002301031956449151, 0.028162531554698944, 0.011361442506313324, -0.0046607875265181065, 0.013722742907702923, -0.019422007724642754, 0.010347690433263779, 0.02006487548351288, -0.016244761645793915, -0.04072316735982895, 0.0033874157816171646, 0.01965690217912197, -0.03244007006287575, -0.04183582216501236, -0.024169335141777992, 0.013982363045215607, -0.03083290159702301, -0.010910199023783207, -0.03595111519098282, -0.005742535460740328, 0.032588426023721695, 0.013426035642623901, -0.044877078384160995, -0.0019904158543795347, -0.019755804911255836, -0.03226698935031891, -0.03320656716823578, 0.08995196223258972, -0.0036903051659464836, 0.006342132575809956, -0.012610088102519512, 0.018321717157959938, 0.03983304277062416, -0.004571157041937113, 0.03226698935031891, -0.010866928845643997, 0.004258995410054922, -0.02174622192978859, 0.04475345090031624, -0.038794565945863724, -0.01294388435781002, -0.0063977655954658985, 0.011880680918693542, -0.0008615348488092422, -0.017592309042811394, -0.03174775093793869, -0.05152828246355057, -0.0032421525102108717, -0.011744690127670765, -0.04618753865361214, 0.006434854120016098, -0.034615930169820786, 0.015391725115478039, 0.012882070615887642, 0.002002778695896268, 0.01971871592104435, -0.03323129191994667, -0.014464513398706913, 0.006546119228005409, 0.01948382332921028, 0.03308293595910072, 0.09464983642101288, -0.03471483290195465, 0.005396375898271799, -0.002435477916151285, 0.0348631851375103, 0.020423397421836853, -0.011967221274971962, 0.012708990834653378, 0.014625229872763157, 0.0036099469289183617, -0.05805585905909538, 0.002994895912706852, 0.015292822383344173, -0.030041681602597237, -0.03785499185323715, 0.00900014117360115, 0.038077522069215775, -0.03117906115949154, 0.03684123978018761, -0.05063815787434578, -0.02203056588768959, 0.03449229896068573, 0.016862902790308, -0.03634672611951828, 0.011590154841542244, -0.032588426023721695, -0.02046048641204834, -0.012239203788340092, 0.009927353821694851, -0.0017539768014103174, 0.00911758840084076, -0.0009480746812187135, 0.07694626599550247, -0.03711321949958801, 0.009167039766907692, -0.017765389755368233, -0.016986530274152756, 0.01688762754201889, 0.024552583694458008, -0.006669747643172741, -0.04613808915019035, -0.012993335723876953, 0.05009419471025467, 0.024255875498056412, -0.008147106505930424, -0.01906348578631878, 0.02566523849964142, 0.03612419590353966, -0.02237672545015812, -0.025022370740771294, 0.005096577573567629, 0.017555221915245056, -0.012882070615887642, 0.03063509613275528, -0.05637451261281967, -0.008969234302639961, 0.011163637042045593, -0.012090849690139294, 0.03011585772037506, 0.008004933595657349, -0.019768167287111282, -0.006713017821311951, 0.016442567110061646, 0.023415204137563705, -0.007318796589970589, 0.012535911053419113, -0.0431462824344635, 0.02388499118387699, -0.010724756866693497, 0.011126548983156681, -0.022216008976101875, 0.02937408909201622, -0.029992230236530304, -0.008672526106238365, 0.03426976874470711, 0.02811308018863201, 0.0034492299892008305, 0.013648565858602524, 0.0013058241456747055, 0.019990699365735054, -0.01777775213122368, -0.027618566527962685, -0.03046201728284359, 0.0220058411359787, -0.02146187610924244, 0.034764282405376434, 0.05647341534495354, -0.0023643914610147476, 0.016071680933237076, 0.004456800874322653, -0.026703717187047005, 0.005393285304307938, 0.008079110644757748, -0.014316159300506115, 0.030041681602597237, 0.0032112456392496824, 0.010421867482364178, 0.01019933633506298, 0.050539255142211914, -0.014229618944227695, -0.0016133495373651385, -0.004370260983705521, 0.06784722208976746, 0.011930132284760475, -0.053308531641960144, -0.0020846824627369642, -0.0014819944044575095, -0.005767261143773794, -0.011213088408112526, 0.030190035700798035, -0.031277965754270554, -0.003517225617542863, -0.025912495329976082, 0.01560189388692379, 0.022265460342168808, 0.027297131717205048, 0.005254203453660011, 0.02525726519525051, -0.030882352963089943, -0.04309683293104172, -0.009995349682867527, 0.015169194899499416, 0.01971871592104435, 0.026209203526377678, 0.04425893723964691, 0.03849785774946213, -0.013055150397121906, -0.013586752116680145, 0.02292069047689438, -0.019224204123020172, -0.03122851252555847, -0.022129468619823456, 0.037360478192567825, -0.042478688061237335, 0.03963523730635643, -5.016363957111025e-06, 0.025937220081686974, -0.04223143309354782, 0.02554161101579666, -2.0451794625842012e-05, -0.006391583941876888, -0.038423679769039154, -0.009939717128872871, -0.013141689822077751, -0.007683499716222286, 0.005550911650061607, 0.017987919971346855, 0.025393256917595863, -0.05063815787434578, 0.04183582216501236, -0.01283261924982071, 0.0030876172240823507, 0.005637451075017452, 0.02554161101579666, 0.029398813843727112, -0.0002468703023623675, 0.007324977777898312, 0.02640700899064541, -0.012869708240032196, -0.0037335751112550497, 0.054248105734586716, -0.014588141813874245, -0.03135214000940323, 0.023069044575095177, 0.005761079490184784, 0.011794141493737698, -0.02094263769686222, -0.02388499118387699, 0.007677318528294563, 0.036074742674827576, 0.04606391116976738, 0.02525726519525051, 0.023155583068728447, -0.014724132604897022, 0.013969999738037586, -0.024107521399855614, 0.029299911111593246, -0.012579181231558323, 0.02342756651341915, 0.014093628153204918, 0.025838319212198257, -0.0024401138070970774, 0.06033061817288399, 0.04317100718617439, -0.02662953920662403, 0.022883601486682892, 0.01054549589753151, -0.017023619264364243, -0.011899225413799286, -0.018395893275737762, 0.020126689225435257, -0.029102105647325516, -0.008153287693858147, 0.02137533575296402, -0.014575778506696224, -0.03763245791196823, 0.0025019280146807432, 0.0062895906157791615, -0.024552583694458008, 0.04369024559855461, 0.013351858593523502, 0.007720588240772486, 0.014736494980752468, -0.026159752160310745, 0.0034306857269257307, 0.0631493479013443, -0.022438539192080498, 0.02606084942817688, -0.0068551902659237385, 0.01980525627732277, -0.04089624807238579, 0.013623840175569057, -0.022710522636771202, 0.0221418309956789, 0.03169830143451691, 0.03508571535348892, 0.011274902150034904, -0.02140006236732006, 0.007188986521214247, 0.0428742989897728, 0.0073064337484538555, 0.021214619278907776, -0.0017230696976184845, -0.025133637711405754, -0.043245185166597366, 9.957874863175675e-05, 0.008493265137076378, -0.04312155768275261, 0.021672043949365616, 0.009599738754332066, -0.01640547811985016, 0.034195590764284134, -0.015935689210891724, -0.034789007157087326, 0.06814392656087875, -0.011905406601727009, -0.03778081387281418, 0.032217539846897125, -0.02174622192978859, -0.017357416450977325, 0.002909901551902294, 0.0015183102805167437, -0.011243995279073715, 0.02531907893717289, -0.00861689355224371, -0.04922879487276077, -0.028508689254522324, -0.015910964459180832, 0.027222955599427223, -0.019471459090709686, -0.028335610404610634, -0.02403334528207779, -0.002923809690400958, -0.006737743504345417, -0.020040150731801987, 0.003953015431761742, -0.0027630929835140705, 0.003860294120386243, -0.02137533575296402, 0.01540408842265606, -0.021672043949365616, -0.035357698798179626, 0.04950077831745148, -0.012585362419486046, 0.009414296597242355, -0.01954563707113266, 0.03498681262135506, 0.0018389711622148752, -0.03523407131433487, 0.011893044225871563, -0.02449076995253563, -0.01651674322783947, 0.015490627847611904, -0.025788867846131325, 0.0020429580472409725, -0.018494796007871628, 0.012226840481162071, 0.02194402553141117, -0.010829840786755085, -0.012894433923065662, -0.018420619890093803, 0.02037394605576992, 0.014340884983539581, -0.0008785337558947504, -0.006997362710535526, 0.0334290973842144, 0.006274137180298567, 0.011447981931269169, 0.026308106258511543, -8.46081311465241e-05, -0.011206907220184803, -0.02571468986570835, 0.01284498255699873, 0.009018685668706894, -0.043962229043245316, 0.0005478279781527817, 0.011250176467001438, 0.01568843424320221, -0.03402251377701759, -0.014390336349606514, 0.0028156349435448647, 0.0374346561729908, -0.004011739045381546, -0.008555079810321331, -0.04710238799452782, -0.0011651968816295266, -0.04383860155940056, 0.009711003862321377, -0.03271205350756645, -0.009142314083874226, -0.027272406965494156, -0.005405648145824671, -0.011379987001419067, -0.010996738448739052, 0.005464371759444475, 0.013191141188144684, 0.015910964459180832, 0.04289902746677399, -0.023959167301654816, -0.012640995904803276, 0.012183570303022861, -0.018531884998083115, -0.010817477479577065, -0.026703717187047005, -0.013339495286345482, -0.00866016373038292, -0.018012646585702896, 0.01065676100552082, -0.0036068561021238565, 0.03417086601257324, -0.05212169885635376, -0.016986530274152756, 0.0035326790530234575, -0.005263475701212883, -0.03775608912110329, -0.036396175622940063, -0.000662956852465868, 0.03832477703690529, 0.0005049444152973592, 0.023674823343753815, 0.005257294047623873, -0.011954857967793941, 0.02754438854753971, 0.02303195558488369, -0.005254203453660011, -0.05968775227665901, -0.014081265777349472, 0.018074460327625275, 0.009778999723494053, -0.0015700795920565724, 6.166928505990654e-05, -0.031673576682806015, 0.0034275951329618692, -0.008406725712120533, 0.005044035147875547, -0.04445674270391464, 3.315267167636193e-05, -0.026209203526377678, 0.0021449513733386993, -0.034220319241285324, -0.021585503593087196, -0.04354189336299896, 0.03335491940379143, -0.008721977472305298, 0.028582867234945297, 0.005881617311388254, 0.03792916610836983, 0.03345382213592529, -0.019446734338998795, -0.02322976104915142, -0.031277965754270554, 0.013710380531847477, -0.004184818360954523, -0.026209203526377678, -0.013722742907702923, -0.0009171675774268806, -0.017221424728631973, -0.0072322566993534565, 0.049278248101472855, 0.06389111280441284, -0.021696770563721657, 0.05078651383519173, 0.0048091416247189045, 0.02525726519525051, 0.01788901723921299, -0.0015422633150592446, 0.02017614059150219, -0.0022840332239866257, 0.017617035657167435, 0.01614585891366005, -0.017307965084910393, 0.013042787089943886, 0.02954716794192791, 0.016022229567170143, 0.00024629078689031303, -0.01649201661348343, -0.021869849413633347, -0.029250459745526314, 0.0302889384329319, -0.01991652138531208, 0.003684123745188117, 0.032959308475255966, 0.02588776871562004, -0.01917475275695324, -0.01734505221247673, 0.0322917178273201, -0.04878373444080353, -0.020670654252171516, 0.03454175218939781, 0.02897847816348076, 0.03174775093793869, -0.011052371934056282, 0.025937220081686974, -0.002041412517428398, 0.045767202973365784, 0.006997362710535526, -0.008623074740171432, -0.00951319932937622, 0.0185689739882946, -0.024169335141777992, -0.018296990543603897, 0.007448606193065643, -0.012276291847229004, -0.004728782922029495, -0.0019641448743641376, 0.02737130969762802, -0.02451549470424652, -0.01897694729268551, -0.00498531199991703, -0.008950689807534218, -0.008777610957622528, 0.021474238485097885, 0.005751807242631912, 0.025937220081686974, 0.04383860155940056, 0.03708849474787712, -0.01745631918311119, 0.01991652138531208, 0.009828451089560986, 0.0022067653480917215, 0.008864150382578373, 0.0034646836575120687, -0.009698641486465931, 0.010075707919895649, -0.02072010561823845, 0.0328604057431221, -0.010106614790856838, 0.025937220081686974, -0.02952244132757187, 0.04069844260811806, -0.01919947750866413, 0.0029052654281258583, 0.0064966678619384766, -0.0388687439262867, -0.004574247635900974, 0.014637593179941177, -0.008777610957622528, 0.011825048364698887, -0.014921938069164753, -0.03449229896068573, 0.024898743256926537, -0.012362831272184849, 0.033330194652080536, 0.008419088087975979, 0.029126832261681557, -0.00650903070345521, -0.037335753440856934, 0.0002124861639458686, 0.016949443146586418, 0.018099185079336166, -0.014427424408495426, 0.020757194608449936, 0.0016612554900348186, -0.0628526359796524, 0.03325601667165756, -0.03337964415550232, 0.016615645959973335, 0.02183276042342186, 0.009469929151237011, 0.012084667570888996, -0.0047875065356493, 0.013772194273769855, 0.01963217742741108, -0.012857344932854176, -0.0005822121165692806, -0.0181486364454031, 0.05271511524915695, -0.004067371599376202, -0.02231491170823574, 0.03676706179976463, -0.009123769588768482, 0.006898459978401661, -0.055336035788059235, 0.010823659598827362, 0.010156066156923771, 0.032761503010988235, -0.028879575431346893, -0.04168746992945671, 0.007522783242166042, 0.03048674389719963, -0.0241446103900671, -0.035530779510736465, -0.00013608773588202894, 0.014823035337030888, -0.018927495926618576, -0.009556468576192856, -0.008752885274589062, 0.008882694877684116, -0.031154336407780647, 0.028879575431346893, -0.016924716532230377, 0.018531884998083115, 0.04893208667635918, 0.01375983189791441, 0.02446604333817959, 0.010551677085459232, 0.004602063912898302, -0.00900014117360115, 0.019508548080921173, 0.03834950551390648, 0.006298862863332033, -0.026654265820980072, -0.04022865369915962, 0.022413814440369606, 0.019681628793478012, 0.005652904976159334, -0.06127019226551056, -0.0167145486921072, 0.00747333187609911, -0.005167663563042879, 0.03152522072196007, -0.02189457416534424, -0.0016519833588972688, 0.027618566527962685, 0.053852494806051254, -0.001304278732277453, 0.00016187582514248788, -0.022611619904637337, -0.02789054811000824, 0.006277227774262428, -0.047448549419641495, 0.014155441895127296, 0.023130858317017555, 0.004079734440892935, -0.013055150397121906, -0.012121756561100483, -6.215220491867512e-05, -0.008511809632182121, 0.0025482887867838144, -0.014996115118265152, -0.058649275451898575, -0.01782720349729061, -0.03268732875585556, -0.013116964139044285, -0.009241216816008091, 0.0002155768743250519, -0.005452008917927742, 0.030956530943512917, 0.0034615928307175636, 0.03377525508403778, 0.015527716837823391, 0.02608557417988777, 0.03555550426244736, 0.008196557871997356, 0.01560189388692379, 0.005971247795969248, -0.014155441895127296, -0.0180002823472023, 0.005813621450215578, -0.00781330931931734, 0.012467916123569012, 0.0012772351037710905, -0.0031988827977329493, 0.02994277887046337, -0.015416450798511505, -8.035840437514707e-05, -0.019298380240797997, 0.017579946666955948, -0.02952244132757187, 0.00905577465891838, -0.003300876123830676, -0.007906030863523483, 0.00016342118033207953, -0.006292681209743023, -0.00121619354467839, 0.010236424393951893, 0.0331571139395237, 0.03473955765366554, -0.01414307951927185, 0.00904341135174036, -0.03483846038579941, 0.011478888802230358, 0.024564946070313454, -0.0028913572896271944, -0.009859357960522175, 0.02054702676832676, -0.015824424102902412, 0.029398813843727112, -0.00884560588747263, 0.02423115074634552, -0.01797555759549141, 0.015416450798511505, 0.022722885012626648, -0.007875123992562294, 0.03590166196227074, -0.015255734324455261, -0.022351998835802078, -0.014254344627261162, -0.002001233398914337, -0.02351410686969757, 0.007120991125702858, -0.009061955846846104, 0.03728630021214485, -0.022191282361745834, 0.003841749858111143, 0.022982504218816757, -0.00013908185064792633, 0.01107091549783945, 0.018878044560551643, 0.009068137034773827, -0.05118212476372719, 0.014649955555796623, 0.03231644257903099, -0.013450761325657368, 0.016702186316251755, 0.008870331570506096, -0.012127937749028206, -0.006805738899856806, 0.00701590720564127, -0.030165309086441994, 0.028706494718790054, -0.02660481445491314, -0.004221906885504723, -0.0297202467918396, -0.030560920014977455, 0.008301641792058945, -0.017851928249001503, 0.024243513122200966, -0.0006969546666368842, -0.00781330931931734, 0.009537925012409687, 0.0021851304918527603, 0.024070434272289276, -0.01891513168811798, 0.03647035360336304, -0.007578415796160698, -0.05251730978488922, 0.009989168494939804, -0.004830776713788509, -0.010582583956420422, 0.005597271956503391, 0.032563697546720505, -0.02586304396390915, 0.015960415825247765, -0.005430373828858137, 0.0013745923060923815, -0.0023473927285522223, 0.013351858593523502, -0.0008059021201916039, -0.013524937443435192, 0.06413836777210236, -0.01806209795176983, -0.008721977472305298, -0.0009001686703413725, 0.007893668487668037, -0.017134884372353554, -0.04008030146360397, 0.01897694729268551, -0.024564946070313454, 0.005146028473973274, 0.03046201728284359, 0.010508406907320023, -0.008734340779483318, 0.0011026100255548954, -0.01180032268166542, -0.017394503578543663, 0.014279070310294628, 0.0212887953966856, -0.003288513282313943, 0.03654453158378601, 0.011454164050519466, 0.020299769937992096, 0.027470212429761887, 0.005597271956503391, -0.0034090508706867695, -0.009352481923997402, 0.02165968157351017, 0.0008793064043857157, 0.02157314121723175, 0.013512575067579746, -0.01769121177494526, 0.019446734338998795, 0.010508406907320023, 0.008394362404942513, 0.012022853828966618, 0.0018420618725940585, 0.010873110964894295, -0.03834950551390648, 0.017876654863357544, -0.04472872614860535, 0.006910822819918394, 0.00358213041909039, 0.006295772269368172, -0.005028581712394953, -0.02097972482442856, 0.00881469901651144, 0.03377525508403778, -0.015082654543220997, -0.007590778637677431, 0.003841749858111143, 0.030214760452508926, 0.008332548663020134, 0.0051522101275622845, 0.0025390165392309427, -0.009018685668706894, 0.0009952079271897674, 0.005294382572174072, 0.021968752145767212, -0.00617214385420084, 0.00675010634586215, 0.008320185355842113, -0.018123911693692207, 0.007875123992562294, 0.01041568536311388, -0.008425270207226276, 0.013104601763188839, -0.04645952209830284, -0.03694014251232147, 0.024762751534581184, -0.015787336975336075, -0.007059176918119192, 0.0024447499308735132, 8.769883424974978e-05, -0.013549663126468658, -0.017567584291100502, 0.017555221915245056, 0.030190035700798035, -0.007454787380993366, 0.016862902790308, -0.010551677085459232, 0.0135002126917243, 0.044333115220069885, 0.03132741525769234, 0.005257294047623873, -0.026678990572690964, -0.01095965038985014, -0.046335894614458084, -0.02603612281382084, 0.00811619870364666, 0.03159939870238304, 0.008610712364315987, -0.010551677085459232, 0.003064436838030815, -0.011169818229973316, 0.01874205283820629, 0.01560189388692379, -0.02020086720585823, 0.027668017894029617, -0.00018689125136006624, 0.0158615130931139, -0.012579181231558323, 0.0008816244662739336, -0.017443954944610596, -0.004234269727021456, 0.02211710624396801, -0.034047238528728485, -0.024651486426591873, 0.013240592554211617, 0.0016658916138112545, 0.010434229858219624, -0.01467468123883009, -0.014575778506696224, 0.04097042605280876, 0.004741145763546228, -0.006682110484689474, -0.00953174289315939, -0.007875123992562294, -0.015540079213678837, 0.018037371337413788, 0.021511327475309372, 0.010409504175186157, 0.02845923788845539, 0.02769274264574051, -0.014921938069164753, 0.038992371410131454, -0.01256063673645258, -0.006416309624910355, 0.013240592554211617, 0.033701080828905106, 0.0053592873737216, 0.0018374258652329445, 0.03874511644244194, 0.01708543300628662, -0.05024254694581032, -0.008394362404942513, 0.01562661863863468, -0.007275526411831379, 0.01413071621209383, 0.017753025516867638, 0.013092238456010818, 0.015960415825247765, 0.05503932759165764, 0.0004516296903602779, -0.010310601443052292, -0.01603459194302559, 0.00770204421132803, -0.017666487023234367, -0.004039555322378874, -0.013240592554211617, 0.04786888509988785, -0.0414402112364769, -0.0015623528743162751, -0.009371026419103146, 0.012406101450324059, -0.003226699074730277, 0.005062579642981291, 0.026505911722779274, -0.004187909420579672, -0.03926435485482216, 0.013042787089943886, -0.006527575198560953, -0.02517072483897209, -0.02789054811000824, -0.011219269596040249, 0.030931804329156876, -0.045396316796541214, -0.008993959985673428, 0.02309376932680607, 0.013562026433646679, -0.03300876170396805, 0.011583973653614521, -0.005745626054704189, 0.0085736233741045, -0.019248928874731064, -0.012671902775764465, -0.022302549332380295, -0.03434394672513008, -0.00536546902731061, -0.005006946623325348, 0.019867070019245148, -0.016009867191314697, 0.019508548080921173, 0.03117906115949154, -0.005745626054704189, 0.034393396228551865, -0.026654265820980072, -0.015045566484332085, -0.00014246231876313686, 0.003183429129421711, -0.007794765289872885, 0.01413071621209383, 0.02826143242418766, 0.026678990572690964, 0.035481326282024384, -0.012047579512000084, -8.533251093467698e-05, 0.030412565916776657, -0.023538831621408463, 0.02915155701339245, 0.03444284945726395, -0.02991805225610733, -0.03577803447842598, -0.03669288381934166, -0.006178325042128563, 0.018853317946195602, 0.014303795993328094, -0.020237956196069717, -0.010335327126085758, 0.009754274040460587, 0.017926106229424477, 0.02026268094778061, -0.02405807003378868, 0.01441506203263998, -0.013450761325657368, 0.0006397765246219933, -0.007120991125702858, -0.011998128145933151, 0.04094569757580757, 0.02388499118387699, -0.007782402448356152, -0.06413836777210236, 0.0018451525829732418, 0.012004309333860874, -0.04235506057739258, -0.003965378273278475, -0.005767261143773794, -0.0067810132168233395, 0.011750871315598488, -0.020559389144182205, -0.008060566149652004, 0.017617035657167435, 0.0440116822719574, -0.0115716103464365, -0.020794283598661423, -0.0015793517231941223, -0.037558283656835556, -0.006898459978401661, -0.029324637725949287, -0.0067006549797952175, 0.006688292138278484, 0.004605154972523451, 0.013401309959590435, 0.01152834016829729, -0.007800946943461895, -0.0014479967067018151, 0.046508971601724625, -0.001240146579220891, 0.009105226024985313, -2.5884679416776635e-05, 0.018531884998083115, -0.028385061770677567, 0.004645334091037512, 0.004453710280358791, -0.028409786522388458, -0.003915926907211542, -0.0066264779306948185, 0.033330194652080536, 0.013574388809502125, 0.004410440102219582, 0.02251271717250347, 0.004867864772677422, -0.010576402768492699, -0.008029659278690815, 0.009364845231175423, 0.03483846038579941, 0.01375983189791441, -0.002124861814081669, 0.012455552816390991, 0.03288513422012329, -0.015428814105689526, -0.010341508314013481, 0.03006640635430813, 0.02054702676832676, -0.03525879606604576, 0.027865823358297348, 0.006824282929301262, -0.005974338389933109, 0.00021808808378409594, -0.008851787075400352, 0.0022144922986626625, 0.021869849413633347, 0.025986671447753906, -0.0003233653260394931, 0.02111571654677391, 0.008789973333477974, -0.014155441895127296, -0.01854424737393856, 0.007695862557739019, -0.008734340779483318, -0.0006065514171496034, 0.029967503622174263, 0.026283379644155502, -0.012387556955218315, 0.022389087826013565, -0.0284345131367445, 0.017270876094698906, -0.007955482229590416, -0.029843876138329506, -0.03488790988922119, -0.01095965038985014, 0.0191500261425972, -0.04191000014543533, -0.023996256291866302, 0.02034922130405903, -0.005575637333095074, 0.05498987436294556, -0.0001838971220422536, 0.027445485815405846, 0.016009867191314697, -0.020015424117445946, -0.013883460313081741, -0.0010137521894648671, -0.022908328101038933, 0.00701590720564127, -0.017110159620642662, -0.03560495376586914, -0.018012646585702896, -0.0012648722622543573, -0.0003241380036342889, 0.0008337184553965926, -0.00041415487066842616, 0.0047689625062048435, 0.009711003862321377, 0.00981608871370554, -0.014897212386131287, 0.006682110484689474, 0.01806209795176983, -0.044852353632450104, 0.028731221333146095, -0.02366245910525322, -0.009791363030672073, -0.01137380488216877, 0.0015584895154461265, 0.026876796036958694, 0.005544729996472597, -0.0020213229581713676, -0.016269486397504807, 0.038448408246040344, -0.013772194273769855, -0.008363455533981323, 0.003931380342692137, -0.039363257586956024, 0.005201661493629217, 0.028508689254522324, -0.0035944932606071234, 0.026505911722779274, -0.02209237962961197, 0.007522783242166042, 0.0032112456392496824, -0.022413814440369606, 0.004456800874322653, -0.012684265151619911, -0.003996285144239664, 0.023983893916010857, 0.011701419949531555, 0.0015183102805167437, -0.020299769937992096, 0.021523689851164818, 0.007603141479194164, 0.018939858302474022, -0.0167145486921072, -0.023909715935587883, -0.0017137975664809346, 0.00302889384329319, 0.022166557610034943, 0.007961663417518139, -0.022413814440369606, 0.017196698114275932, -0.0093586640432477, -0.006104147993028164, -0.011083278805017471, -0.00766495568677783, -0.008944508619606495, -0.006434854120016098, -0.02774219401180744, -0.037879716604948044, -0.0033966880291700363, -0.04208308085799217, -0.05291292071342468, -0.04092097282409668, 0.004840048495680094, -0.001390045857988298, -0.03187137842178345, 0.026184476912021637, 0.019397282972931862, -0.004846230149269104, -0.005625088233500719, -0.016195310279726982, -0.011132730171084404], [0.007481321692466736, 0.01957034505903721, -0.010454032570123672, 0.020288750529289246, -0.014145147986710072, -0.01934739202260971, 0.03349253907799721, 0.056035593152046204, -0.008342169225215912, -0.011073347181081772, -0.02259260043501854, -0.020041024312376976, 0.03745615482330322, -0.005614087916910648, 0.008236886002123356, 0.009190630167722702, -0.007208823226392269, -0.025354744866490364, -0.028538022190332413, 0.06817416101694107, 0.011246754787862301, 0.01599070616066456, 0.023348163813352585, -0.008664213120937347, 0.00791484210640192, -0.0208585187792778, -0.005158891435712576, 0.008305010385811329, 0.07590320706367493, -0.07441685348749161, 0.019520798698067665, -0.041741810739040375, 0.034062307327985764, -0.06980915367603302, -0.008218306116759777, -0.01078846212476492, 0.004022448789328337, 0.008441259153187275, -0.000155118978000246, 0.013463901355862617, -0.03312094882130623, 0.04003250226378441, 0.03819933161139488, 0.029305972158908844, -0.002833364764228463, 0.008899552747607231, -0.015755366533994675, -0.03990864008665085, 0.012918904423713684, 0.016585247591137886, 0.007153084967285395, 0.06792643666267395, -0.055688779801130295, -0.05776967480778694, 0.016919678077101707, -0.023533958941698074, 0.007215016521513462, 0.04496224597096443, 0.01462821289896965, 0.008051090873777866, 0.03480548784136772, -0.06599417328834534, -0.026927802711725235, 0.012627827003598213, -0.0029092307668179274, 0.037332288920879364, -0.01601547747850418, 0.01039829384535551, -0.0658455416560173, -0.027596663683652878, -0.0029340034816414118, -0.006936324760317802, 0.06203056126832962, -0.026184625923633575, -0.0034526793751865625, 0.027720525860786438, 0.016337521374225616, 0.025763491168618202, -0.0325264073908329, -0.008986256085336208, 0.008738530799746513, -0.0401315912604332, 0.0018780718091875315, -0.01756376586854458, -0.08521770685911179, -0.05677877366542816, -0.07625002413988113, -0.03037119284272194, 0.008082056418061256, 0.07392140477895737, -0.004821364767849445, 0.005391134414821863, 0.00402864208444953, 0.057422857731580734, -0.0011294751893728971, -0.06049466133117676, -0.009531253017485142, -0.0008422679966315627, 0.01812114752829075, 0.07263322919607162, 0.001289722858928144, -0.04843040928244591, 0.017761945724487305, 0.04347589239478111, 0.06807507574558258, 0.012188113294541836, -0.01638706773519516, -0.005753433797508478, -0.0008376231417059898, 0.01647377200424671, -0.020908065140247345, -0.027968252077698708, -0.02437622658908367, 0.03178323060274124, -0.002316236961632967, 0.020016251131892204, 0.03478071466088295, -0.0028147853445261717, -0.04015636444091797, -0.03074278123676777, 0.0024370034225285053, -0.04156840220093727, 0.004626280628144741, -0.012640212662518024, -0.011352038942277431, -0.05762103945016861, 0.035077985376119614, 0.02132919803261757, -0.06980915367603302, -0.006849620491266251, -0.000717243819963187, -0.02336055040359497, 0.03656433895230293, 0.020177273079752922, -0.014405259862542152, 0.01919875666499138, -0.03738183528184891, -0.020140113309025764, -0.027423255145549774, 0.014925484545528889, 0.0368616096675396, -0.017241721972823143, 0.00982852466404438, -0.026283716782927513, -0.0519728884100914, 0.00422682287171483, -0.0040936702862381935, -0.02308805286884308, -0.02215908095240593, -0.013575377874076366, -0.014900711365044117, -0.036366160959005356, -0.0020390937570482492, -0.01897580176591873, -0.02503270097076893, -0.00409676693379879, -0.042262036353349686, 0.030420737341046333, 0.005645053461194038, 0.006539963185787201, -0.054549239575862885, -0.02490883693099022, -0.020251590758562088, -0.03812501206994057, 0.04647337645292282, -0.030569374561309814, 0.004781109280884266, 0.05350879207253456, -0.034087080508470535, -0.028686657547950745, -0.009847103618085384, -0.002342557767406106, -0.071592777967453, 0.036712974309921265, -0.016597634181380272, 0.003526997286826372, 0.009029608219861984, 0.05350879207253456, -0.032575953751802444, 0.04003250226378441, 0.0019972899463027716, 0.018492737784981728, 0.0073822312988340855, 0.013055154122412205, -0.010559315793216228, -0.01715501770377159, -0.01067698560655117, 0.01694444939494133, -0.011618344113230705, 0.023707367479801178, -0.05172516405582428, 0.04545769840478897, -0.06361600756645203, 0.05108107626438141, 0.0005198372527956963, -0.006224112585186958, -0.02302611991763115, 0.0034588726703077555, -0.0005635763518512249, -0.01228101085871458, 0.0059949662536382675, 0.02675439603626728, 0.03777819871902466, 0.04129590466618538, -0.08967676758766174, 0.015730593353509903, -0.04632474109530449, 0.0018362681148573756, -0.016188886016607285, 2.9998056561453268e-05, 0.032476864755153656, -0.010751303285360336, 0.003492934862151742, 0.004716081544756889, -0.029850969091057777, 0.00019082633662037551, -0.07174141705036163, 0.0479101836681366, 0.02110624499619007, 0.07823183387517929, -0.03928932547569275, -0.02480974793434143, -0.023868389427661896, -0.029925286769866943, 0.018653759732842445, 0.06455736607313156, 0.022642144933342934, -0.017947740852832794, 0.0006251207669265568, -0.05395469814538956, 0.02280316688120365, -0.0308914165943861, -0.07441685348749161, -0.006787688937038183, 0.0171921756118536, 0.007276947610080242, -0.013847876340150833, -0.030420737341046333, 0.05246834084391594, -0.0028627822175621986, 0.05046176165342331, -0.0035672527737915516, -0.03165936842560768, -0.01101760845631361, 0.04129590466618538, -0.01265259925276041, -0.008385521359741688, 0.016956835985183716, 0.0008662664331495762, -0.052418798208236694, 0.004796592518687248, 0.0038459443021565676, 0.02443815767765045, -0.06886779516935349, -0.022382033988833427, 0.05885966867208481, 0.009760399349033833, 0.0014236497227102518, 0.03817455843091011, 0.0017185983015224338, 0.04466497525572777, 0.0017495640786364675, -0.020969996228814125, 0.011686468496918678, -0.013649696484208107, -0.002026707399636507, -0.0037282744888216257, 0.018381260335445404, 0.02280316688120365, 0.028686657547950745, -0.040602270513772964, -0.04404566064476967, 0.0343843512237072, 0.0013044315855950117, 0.004425003658980131, 0.047513823956251144, 0.011711240746080875, -0.017390357330441475, -0.007660923060029745, 0.03465685248374939, -0.027794843539595604, 0.0023317199666053057, -0.023100437596440315, 0.005626474041491747, 0.037480924278497696, -0.0006247336859814823, 0.019917160272598267, 0.004833751358091831, -0.003081090748310089, 0.01805921643972397, 0.015780137851834297, -0.0312877781689167, -0.016993995755910873, -0.019372163340449333, 0.04193999245762825, -0.02394270710647106, 0.01743990182876587, -0.06842188537120819, -0.0042577884159982204, 0.039611369371414185, 0.011438742280006409, 0.028785746544599533, 0.030916189774870872, -0.00028430414386093616, -0.03990864008665085, -0.008521770127117634, -0.042881350964307785, -0.029603242874145508, -0.01197135355323553, -0.04416952282190323, 0.017415128648281097, 0.01399651262909174, -0.007400810718536377, -0.06292237341403961, 0.04193999245762825, 0.0030934768728911877, -0.008490804582834244, 0.0102310786023736, 0.03294754400849342, -0.02425236441195011, 0.047513823956251144, 0.004589121788740158, 0.03958659619092941, 0.009772785939276218, -0.03299708664417267, -0.010268237441778183, 0.023880774155259132, 0.007958194240927696, -0.014752076007425785, 0.004140118602663279, 0.025107018649578094, -0.013340038247406483, 0.024462930858135223, 0.04709269106388092, 0.0401315912604332, -0.02073465660214424, -0.0050505115650594234, -0.06366555392742157, 0.033071406185626984, 0.013166630640625954, 0.0029324551578611135, -0.054053787142038345, 0.004180374089628458, -0.0255900826305151, 0.004765626508742571, 0.011444935575127602, 0.04580451548099518, 0.050288353115320206, -0.029429834336042404, -0.011785558424890041, 0.036068886518478394, -0.05286470428109169, 0.016040250658988953, -0.01299322210252285, 0.005970193538814783, -0.008509384468197823, 0.023806456476449966, -0.0063417823985219, -0.028785746544599533, 0.03966091200709343, 0.0039047792088240385, 0.009494094178080559, -0.0474642775952816, -0.01841842010617256, 0.055441051721572876, 0.025639628991484642, -0.04528428986668587, 0.05370697006583214, -0.010466418229043484, -0.018814779818058014, 0.007146891672164202, -0.021490219980478287, -0.005806075409054756, -0.004140118602663279, -0.00662047415971756, -0.0060011595487594604, 0.05980102717876434, 0.02425236441195011, 0.0034836451523005962, -0.008546543307602406, 0.005858717020601034, -0.021155789494514465, -0.03168414160609245, 0.006787688937038183, 0.0572742223739624, 0.03113914281129837, -0.02157692424952984, -0.016188886016607285, -0.008515576831996441, 0.014851166866719723, -0.0030656077433377504, -0.029330743476748466, -0.045631106942892075, -0.0008887166040949523, -0.01405844371765852, -0.013364811427891254, -0.03611843287944794, -0.018604213371872902, -0.007153084967285395, 0.02042499929666519, 0.0214778333902359, -0.021118631586432457, -0.05231970548629761, 0.04568065330386162, -0.03829842060804367, 0.07104778289794922, 0.02230771631002426, 0.0016690531047061086, -0.018245011568069458, -0.024970768019557, -0.003084187163040042, -0.016932064667344093, 0.035226620733737946, -0.012646405957639217, 0.010491191409528255, -0.017167404294013977, 0.0350036658346653, 0.030420737341046333, -0.008125408552587032, -0.026531441137194633, -0.02586258202791214, 0.027646208181977272, -0.02120533585548401, -0.03824887424707413, -0.004459065850824118, 0.042881350964307785, 0.015965932980179787, -0.0011465064017102122, 0.006738143973052502, -0.008868586272001266, 0.0073388791643083096, -0.015718206763267517, 0.03854614868760109, 0.030272101983428, -0.019818071275949478, -0.03683684021234512, 0.03990864008665085, 0.039239779114723206, 0.0018254300812259316, -0.031064825132489204, 0.031832776963710785, 0.010039091110229492, -0.027026893571019173, 0.007574218790978193, -0.011872262693941593, -0.029231654480099678, 0.007109732832759619, 0.012553509324789047, -0.05677877366542816, 0.016089795157313347, 0.04283180460333824, 0.007660923060029745, -0.0364157035946846, 0.03153550624847412, -0.05440060421824455, -0.029553698375821114, -0.06539963185787201, -0.009593185037374496, 0.035077985376119614, -0.016894904896616936, -0.016709109768271446, 0.022059990093111992, 0.05122971162199974, -0.0012649502605199814, 0.049000177532434464, 0.010968063026666641, -0.015879228711128235, 0.02197328582406044, 0.010528350248932838, -0.015532412566244602, -0.047266099601984024, 0.0312877781689167, -0.03867001086473465, -0.016795814037322998, -0.008373134769499302, 0.011271527968347073, -0.014591054059565067, -0.03879387304186821, -0.033195268362760544, -0.001532029709778726, -0.007066380698233843, -0.013934580609202385, -0.025713946670293808, -0.008143988437950611, 0.0012912711827084422, -0.017365584149956703, -0.0028039473108947277, 0.03502843901515007, -0.027150755748152733, -0.009543639607727528, 0.0378277413547039, 0.03993341326713562, 0.0011163147864863276, -0.010831814259290695, -0.011116699315607548, 0.036737747490406036, -0.0029479379300028086, -0.00035765423672273755, 0.022691691294312477, 0.026828713715076447, -0.010608861222863197, -0.025664402171969414, -0.0006262820097617805, 0.05088289454579353, -0.029157336801290512, 0.028290295973420143, 0.0006007352494634688, -0.056184228509664536, 0.005604797974228859, 0.045011792331933975, -0.0008848459110595286, -0.005688405595719814, 0.012819814495742321, 0.0006018964922986925, 0.009264947846531868, 0.01273311022669077, -0.0272250734269619, -0.03587070852518082, -0.013909808360040188, 0.02900870144367218, -0.00110160605981946, -0.002961872611194849, -0.014665371738374233, -0.040478408336639404, 0.026011217385530472, 0.012466805055737495, -0.016832973808050156, -0.004877103492617607, -0.005347782280296087, 0.021775104105472565, 0.017551379278302193, -0.03745615482330322, -0.035077985376119614, 0.02292703092098236, 0.03230345621705055, 0.002661505015566945, -0.014219465665519238, 0.017080700024962425, 0.023509185761213303, -0.03324481472373009, 0.04077567905187607, 0.025689173489809036, -0.004781109280884266, 0.010571702383458614, 0.0010776076233014464, 0.002483451971784234, -0.008094443008303642, -0.007772399578243494, 0.013079926371574402, 0.0017340811900794506, -0.009704661555588245, -0.003132184036076069, -0.005598605144768953, -0.055441051721572876, 0.058314673602581024, -0.036589112132787704, -0.0038335579447448254, -0.004403327591717243, 0.04862859100103378, 0.009116312488913536, -0.01481400802731514, 0.0401315912604332, -0.0015026122564449906, -0.014405259862542152, 0.04922313243150711, -0.008949097245931625, 0.0029045860283076763, 0.01076988223940134, -0.09101448953151703, 0.016238432377576828, 0.035325709730386734, -0.033442992717027664, 2.0635759938159026e-05, 0.01601547747850418, 0.015470481477677822, 0.015730593353509903, -0.009797558188438416, -0.0577201321721077, 0.026556214317679405, -0.014380487613379955, -0.024054182693362236, 0.0013779752189293504, 0.013005608692765236, 0.006564735900610685, -0.008298817090690136, 0.0031306357122957706, -0.022332487627863884, -0.02015249989926815, 0.014182306826114655, 0.04102340713143349, 0.03738183528184891, -0.0038676203694194555, 0.04545769840478897, 0.031188689172267914, -0.015371390618383884, 0.007586604915559292, 0.026432352140545845, -0.06728234887123108, -0.03914069011807442, -0.007196436636149883, 0.020202046260237694, 0.011630729772150517, 0.018133534118533134, -0.021502606570720673, -5.899819370824844e-06, -0.019248301163315773, -0.02459917962551117, -0.028587566688656807, 0.006608088035136461, 0.024264749139547348, 0.021316811442375183, 0.05286470428109169, 0.06262510269880295, -0.028686657547950745, -0.0016953740268945694, -0.01888909935951233, -0.014677758328616619, -0.045259516686201096, -0.012677372433245182, 0.05985057353973389, -0.005815364886075258, 0.013426742516458035, 0.02215908095240593, 0.0028612338937819004, -0.008973870426416397, 0.012572088278830051, 0.002961872611194849, -0.025565311312675476, -0.01507411990314722, -0.021552151069045067, -0.0027327260468155146, 0.0026042184326797724, -0.0003561059420462698, -0.009308299981057644, -0.0023890065494924784, -0.027819616720080376, 0.04486315697431564, -0.007660923060029745, 0.002328623319044709, 0.03487980365753174, 0.022704077884554863, 0.012894132174551487, -0.028017796576023102, -0.04969381168484688, 0.030470283702015877, 0.018752848729491234, -0.010999029502272606, 0.04694405570626259, -0.02747279964387417, -0.005954710766673088, 0.010101023130118847, -0.030569374561309814, 0.0014770656125620008, -0.034087080508470535, -0.009710854850709438, 0.004802785348147154, 0.03805069625377655, 0.04486315697431564, -0.007134505547583103, 0.004059608094394207, -0.01592877507209778, 0.03138687089085579, -0.01879000850021839, 0.04682018980383873, -0.003396941116079688, 0.026035990566015244, 0.00017602085426915437, 0.0010791558306664228, 0.016374681144952774, 0.0505608506500721, 0.007927227765321732, -0.013278107158839703, 0.038471829146146774, -0.018554668873548508, -0.04912404343485832, -0.00882523413747549, -0.004654149990528822, -0.002461775904521346, 0.0037127917166799307, -0.01073891669511795, 0.015136050991714, -0.027448028326034546, -0.012541122734546661, -0.019830456003546715, -0.004260885063558817, -0.031312551349401474, 0.04416952282190323, 0.01197754591703415, 0.011692661792039871, 0.0188271664083004, -0.00951886735856533, 0.013079926371574402, 0.03277413547039032, -0.044987019151449203, 0.024277135729789734, 0.013228561729192734, 0.00799535308033228, -0.0270021203905344, 0.003542480058968067, -0.04332725703716278, 0.003406230825930834, -0.0014917743392288685, -0.005806075409054756, -0.050536081194877625, -0.013525833375751972, -0.002769885119050741, -0.004403327591717243, -0.017873423174023628, 0.039338868111371994, -0.014826393686234951, -0.02379407174885273, -0.052171070128679276, -0.055044692009687424, -0.0015947353094816208, -0.01694444939494133, 0.005078380461782217, 0.014070830307900906, -0.015272300690412521, 0.007314106449484825, -0.033220041543245316, -0.04506133869290352, 0.04466497525572777, -0.03468162193894386, -0.03237777203321457, 0.024574408307671547, 0.01934739202260971, 0.0017433708999305964, -0.0018672337755560875, 0.033963218331336975, -0.006025932263582945, 0.053558334708213806, -0.02675439603626728, -0.0429556667804718, 0.0032483055256307125, -0.00802631862461567, 0.05147743970155716, -0.010354941710829735, -0.03049505688250065, -0.026011217385530472, -0.02101954072713852, -0.0046355705708265305, -0.030222557485103607, 0.013984126038849354, 0.028909610584378242, -0.0007691114442422986, 0.0022883678320795298, 0.02623417042195797, 0.015049347653985023, -0.04491270333528519, 0.033220041543245316, -0.00033810711465775967, 0.00910392589867115, -0.030197784304618835, -0.006224112585186958, 0.002805495634675026, -0.022518282756209373, 0.02663053199648857, -0.03701024502515793, -0.030296875163912773, -0.0013183661503717303, 0.007803365122526884, -0.015371390618383884, -0.018876712769269943, 0.0012270172592252493, 0.022047603502869606, -0.015061733312904835, -0.029083019122481346, -0.017477061599493027, -0.009778979234397411, -0.02009056881070137, -0.02873620204627514, -0.008397907018661499, 0.013872649520635605, -0.0102310786023736, 0.024277135729789734, 0.02163885533809662, -0.005700791720300913, -0.0023146886378526688, -0.008261658251285553, 0.01324094831943512, 0.015606730245053768, -0.001085349009372294, 0.01957034505903721, 0.0006549253012053668, 0.0009599378099665046, -0.011395390145480633, -0.0027900126297026873, -0.002844202797859907, 0.027522346004843712, -0.002279078122228384, -0.02663053199648857, -0.0068929726257920265, -0.005381844937801361, -0.02296418882906437, 0.004282561130821705, 0.0017185983015224338, -0.0022543054074048996, 0.024301908910274506, 0.01544570829719305, -0.02261737361550331, 0.020102955400943756, -0.0007571122259832919, 0.023372936993837357, 0.012658792547881603, -0.001391909783706069, -0.04555679112672806, 0.018876712769269943, 0.011475901119410992, 0.004833751358091831, 0.003601314965635538, -0.04835609346628189, 0.024586793035268784, -0.039859093725681305, -0.027274619787931442, -0.01743990182876587, -0.0010288365883752704, -0.007369845174252987, -0.05051130801439285, -0.012367714196443558, 0.025007927790284157, 0.03012346662580967, -0.021007154136896133, -0.006149794906377792, 0.0036570532247424126, 0.0027559504378587008, -0.01470253150910139, 0.019396936520934105, 0.036068886518478394, -0.029850969091057777, 0.030569374561309814, 0.0016675047809258103, -0.005877296440303326, -0.0540042407810688, 0.0002711437118705362, -0.00887477956712246, -0.025961672887206078, -0.0054375831969082355, -0.003756143618375063, 0.013773558661341667, -0.029206881299614906, -0.030272101983428, -0.01885193958878517, -0.01231197640299797, 0.001720146625302732, -0.022134307771921158, -0.010286817327141762, -0.03666343167424202, 0.011785558424890041, 0.018963417038321495, -0.01684536039829254, 0.014975029975175858, -0.003153860103338957, 0.01879000850021839, 0.021056700497865677, 0.015458094887435436, 0.013513446785509586, 0.0050814771093428135, -0.015197983011603355, 0.01613934151828289, -0.012107602320611477, -0.020449770614504814, -0.041122496128082275, 0.0008391714072786272, -0.0468449629843235, 0.01632513478398323, 0.04094908758997917, 0.04558156058192253, 0.014727303758263588, 0.05563923344016075, 0.0018873615190386772, -0.0009653567685745656, -0.00753705995157361, -0.013674468733370304, 0.009822331368923187, 0.0029417448677122593, -0.02092044986784458, -0.004233016166836023, -0.005951614119112492, 0.04134545102715492, 0.038496602326631546, 0.02484690584242344, 0.023633049800992012, -0.0013617181684821844, -0.04290612414479256, -0.03644047677516937, 0.025813037529587746, -0.007735240738838911, 0.04127113148570061, 0.014603440649807453, 0.0016473771538585424, -0.01286935992538929, -0.0027172432746738195, 0.023707367479801178, -0.05420242249965668, -0.022691691294312477, 0.0013648148160427809, 0.03426048904657364, 0.03051982820034027, -0.01512366533279419, 0.015470481477677822, 0.007729047443717718, 0.026580987498164177, -0.0014066185103729367, 0.002923165448009968, 0.04129590466618538, -0.0033659753389656544, -0.019706593826413155, -0.03819933161139488, -0.006911552045494318, -0.03966091200709343, -0.01348867453634739, -0.005406617186963558, 0.0010419969912618399, -0.024462930858135223, -0.023162370547652245, 0.03136209771037102, -0.034087080508470535, 0.0017975609516724944, 0.0038087854627519846, 0.0010768334614112973, 0.0312877781689167, 0.02749757282435894, 0.05113062262535095, -0.001122507848776877, -0.01737797074019909, -0.038595691323280334, -0.008435065858066082, 0.036490023136138916, -0.0025329971686005592, 0.022543055936694145, 0.012225272133946419, 0.016040250658988953, 0.030718009918928146, 0.014516736380755901, 0.005998062901198864, -0.037109337747097015, 0.04545769840478897, -0.019743753597140312, 0.02089567855000496, 0.003821171820163727, -0.010683178901672363, 0.0021056700497865677, -0.01348867453634739, 0.015730593353509903, 0.012578281573951244, -0.010949484072625637, -0.02234487421810627, -0.001564543810673058, -0.004254692234098911, 0.019867615774273872, 0.018777621909976006, -0.003477452090010047, 0.011531639844179153, -0.015210368670523167, -0.0073822312988340855, 0.015160824172198772, 0.001300560892559588, -0.003935744985938072, 0.05251788720488548, 0.0011751496931537986, -0.04144454002380371, 0.016151728108525276, 0.010621246881783009, 0.006849620491266251, 0.041865672916173935, -0.010484998114407063, -0.0055428664200007915, 0.022419191896915436, 0.029058245941996574, -0.0018145920475944877, 0.021490219980478287, -0.011023801751434803, 0.006422293372452259, 0.02305089309811592, 0.007592798210680485, 0.008162567391991615, 0.04429338872432709, -0.02163885533809662, 0.013909808360040188, -0.029974831268191338, 0.001326881698332727, 0.03074278123676777, 0.016275590285658836, -0.02977665141224861, -0.005688405595719814, 0.014330942183732986, 0.028686657547950745, -0.012070443481206894, -0.024450544267892838, 0.002723436336964369, -0.006155988201498985, 0.007741433568298817, 0.017266493290662766, -0.011073347181081772, 0.005381844937801361, -0.0034031341783702374, 0.024500088766217232, 0.003180180909112096, 0.01436810102313757, -0.007431776262819767, -0.019297845661640167, -0.015036961063742638, 0.012095215730369091, -0.005471645388752222, 0.008688985370099545, 0.04107294976711273, 0.04045363515615463, 0.01039829384535551, -0.011116699315607548, -0.05425196886062622, 0.022394420579075813, -0.002214050153270364, 0.0016473771538585424, -0.03713411092758179, -0.029281198978424072, -0.019818071275949478, -0.002170698018744588, 0.022629758343100548, -0.010608861222863197, 0.031585048884153366, 0.028661884367465973, -0.00436616875231266, -0.03185755014419556, -0.002133539179340005, 0.016894904896616936, -0.03725797310471535, 0.013984126038849354, -0.01355060562491417, 0.05881012603640556, -0.004700598772615194, 0.0069239381700754166, -0.004836848005652428, 0.033715493977069855, 0.031560275703668594, -0.014157534576952457, 0.008775689639151096, -0.007239788770675659, -0.020288750529289246, -0.012491577304899693, -0.026927802711725235, -0.021998059004545212, 0.015817297622561455, -0.00882523413747549, 0.017737172544002533, 0.011797945015132427, 0.012076636776328087, 0.019619889557361603, -0.024970768019557, 0.014169920235872269, 0.021936126053333282, 0.0014073926722630858, 0.033963218331336975, -0.028538022190332413, -0.0005840911762788892, -0.01620127260684967, 0.006428486667573452, 0.003740660846233368, -0.019805684685707092, -0.004171084612607956, 0.016795814037322998, -0.007066380698233843, -0.014851166866719723, 0.016956835985183716, 0.013860262930393219, 0.015061733312904835, 0.01678342930972576, -0.000935165211558342, 0.007041607983410358, 0.0036137013230472803, -0.003300947370007634, 0.0074193901382386684, -0.01047880481928587, 0.022443965077400208, 0.008515576831996441, 0.0345577597618103, -0.032600726932287216, -0.02468588389456272, -0.017514219507575035, 0.008837620727717876, 0.04679542034864426, -0.02749757282435894, -0.010410680435597897, 0.0028627822175621986, 0.00985949020832777, 0.02422759123146534, -0.03222913667559624, 0.03589548170566559, 0.021824650466442108, -0.009438356384634972, 0.032328225672245026, 0.010584088042378426, 0.06644008308649063, -0.007276947610080242, -0.004248498938977718, 0.011643116362392902, 0.014913097955286503, 0.01582968421280384, -0.0041091530583798885, 0.002509772777557373, 0.017675241455435753, 0.013042767532169819, 0.009556026197969913, 0.04332725703716278, -0.01774955913424492, 0.0021412805654108524, -0.011259141378104687, -0.008806655183434486, -0.010187726467847824, 0.058314673602581024, 0.033715493977069855, -0.014925484545528889, -0.010571702383458614, -0.012076636776328087, 0.03148595988750458, -0.0019012960838153958, 0.016226045787334442, -0.006301526911556721, 0.010627440176904202, 0.01638706773519516, 0.0020886387210339308, -0.002964969025924802, -0.04909927025437355, 0.015061733312904835, -0.015941159799695015, 0.026283716782927513, -0.02487167902290821, -0.01857944019138813, -0.0012541122268885374, -0.003177084494382143, 0.03440912440419197, -0.01047880481928587, 0.041122496128082275, -0.019458867609500885, -0.027720525860786438, -0.02456202171742916, -0.0013477836037054658, -0.01157499197870493, -0.013166630640625954, 0.03512753173708916, -0.0055119008757174015, 0.022084761410951614, 0.005607894621789455, -0.010323976166546345, 0.00013644277350977063, 0.01768762804567814, -0.014095602557063103, 0.003530093701556325, 0.09284766018390656, -0.019805684685707092, -0.007351265754550695, 0.028438931331038475, 0.0026909224689006805, 0.005939227994531393, -0.03931409865617752, -0.015520026907324791, -0.017662854865193367, 0.03012346662580967, -0.008001546375453472, 0.006725757848471403, -0.007524673826992512, -0.008571315556764603, -0.014491964131593704, 0.007016835734248161, -0.015569571405649185, 0.006948710884898901, -0.027695752680301666, 0.012367714196443558, 0.0063417823985219, 0.03569729998707771, 0.026209399104118347, 0.0026847291737794876, -0.022332487627863884, -0.027943478897213936, 0.01938454993069172, -0.007561832666397095, 0.019669434055685997, 0.015272300690412521, -0.013860262930393219, -0.013055154122412205, -0.0025237074587494135, -0.012472998350858688, 0.01851750910282135, -0.002964969025924802, 0.0041308291256427765, -0.04434293136000633, 0.04327771067619324, -0.0487029068171978, -0.006239595822989941, 0.009203016757965088, -0.03267504274845123, -0.023311005905270576, -0.027200302109122276, -0.011531639844179153, -0.0014584860764443874, -0.03203095495700836, 0.01879000850021839, 0.00484613748267293, 0.011760786175727844, 0.038347966969013214, -0.013030380941927433, -0.010528350248932838, -0.029479380697011948, 0.012020898051559925, 0.02443815767765045, 0.026209399104118347, -0.0022279846016317606, -0.008397907018661499, 0.005598605144768953, -0.01601547747850418, -0.022109534591436386, 0.015197983011603355, 0.020226817578077316, 0.027076438069343567, -0.029677560552954674, -0.021762719377875328, -0.016832973808050156, -0.024388613179326057, -0.010181534104049206, -0.005369458347558975, 0.015854455530643463, -0.023075666278600693, -0.015371390618383884, 0.0010559315560385585, 0.01879000850021839, 0.02687825821340084, -0.013079926371574402, -0.03294754400849342, 0.033839356154203415, 0.02246873825788498, -0.02379407174885273, 0.052567433565855026, -0.0035548664163798094, 0.02836461365222931, -0.001600928488187492, 0.0064780316315591335, 0.008899552747607231, 0.014479577541351318, -0.0456063337624073, -0.024772588163614273, 0.021898968145251274, -0.03153550624847412, -0.00959937833249569, 0.011054767295718193, -0.027670981362462044, 0.022121921181678772, 0.0029479379300028086, 0.0025856387801468372, -0.005375651642680168, -0.02826552279293537, 0.0049916766583919525, 0.01574297994375229, 0.01814592070877552, -0.022258169949054718, -0.014999802224338055, -0.013414356857538223, -0.0037220814265310764, 0.0149378702044487, -0.00774762686342001, -0.023013735190033913, 0.025007927790284157, -0.003976000472903252, -0.008205919526517391, -0.019112052395939827, -0.003455776022747159, -0.008342169225215912, 0.014132761396467686, 0.016040250658988953, -0.0027931092772632837, 0.01234294194728136, 0.0026258942671120167, 0.01947125419974327, 0.041097722947597504, -0.01789819449186325, -0.0051124426536262035, -0.0029154240619391203, 0.02888483740389347, 0.014355714432895184, -0.014281396754086018, 0.02416566014289856, 0.026952575892210007, -0.04934699460864067, -0.012367714196443558, -0.009667502716183662, -0.02145306207239628, 0.003886199789121747, -0.006360361818224192, -0.028017796576023102, -0.022208625450730324, 0.029231654480099678, -0.02385600283741951, 0.005688405595719814, -0.0364157035946846, 0.02811688743531704, -0.020945223048329353, 0.026803940534591675, -0.0017077602678909898, 0.010621246881783009, -0.025540538132190704, -0.008342169225215912, -0.010782268829643726, 0.026209399104118347, 0.01876523531973362, 0.016238432377576828, 0.011779366061091423, -0.014975029975175858, -0.016250817105174065, 0.01750183291733265, -0.01913682371377945, 0.0010365779744461179, 0.005799882113933563, -0.020759427919983864, 0.046894509345293045, -0.007623764220625162, 0.002892199670895934, 0.0368616096675396, 0.03391367197036743, -0.014516736380755901, -0.009178243577480316, 0.028166431933641434, -0.007239788770675659, -0.010565509088337421, 0.0038242682348936796, 0.0042361123487353325, -0.05885966867208481, 0.0023673304822295904, 0.035350482910871506, -0.013154244050383568, -0.001924520474858582, 0.015098892152309418, -0.01777433231472969, -0.01273311022669077, 0.004573639016598463, -0.04332725703716278, 0.00819353386759758, -0.004369265399873257, -0.021031927317380905, -0.0037158881314098835, 0.015272300690412521, 0.02749757282435894, 0.031114371493458748, 0.03237777203321457, -0.012832201085984707, -0.04231157898902893, 0.0474642775952816, -0.0016752462834119797, 0.00031101208878681064, 0.021527379751205444, 0.02002863772213459, -0.010720337741076946, -0.017662854865193367, -0.02561485581099987, 0.024574408307671547, 0.009822331368923187, 0.013216176070272923, 0.0026413772720843554, 0.03795160353183746, -0.021180562674999237, 0.004044124856591225, 0.018715690821409225, 0.00026495056226849556, 0.008887166157364845, 0.028315069153904915, 0.0009088443475775421, -0.01851750910282135, 0.03168414160609245, -0.0017480157548561692, -0.024611566215753555, -0.05306288227438927, -0.0059578074142336845, -0.017724785953760147, -0.03495412319898605, 0.034087080508470535, -0.015408549457788467, -0.01538377720862627, 0.004372361581772566, 0.006112636066973209, -0.007809558417648077, 0.013624923303723335, 0.006434679962694645, -0.0006630538264289498, -0.021552151069045067, -0.014727303758263588, -0.018926257267594337, 0.01928545907139778, -0.014999802224338055, -0.01682058721780777, -0.01783626340329647, -0.02203521691262722, -0.008515576831996441, 0.039363641291856766, -0.01405844371765852, -0.010317782871425152, 0.04243544489145279, -0.0016675047809258103, -0.0022589503787457943, -0.000704470498021692, 0.010268237441778183, -0.053161974996328354, -0.0272250734269619, -0.0010056121973320842, -0.01405844371765852, 0.0028627822175621986, -0.027026893571019173, 0.008230692707002163, 0.013637309893965721, 0.018096376210451126, 0.022728849202394485, 0.019991477951407433, -0.025069858878850937, 0.0159535463899374, -0.011005221866071224, 0.001966324169188738, -0.010249658487737179, 0.0010644471039995551, 0.003285464597865939, 0.013699240982532501, -0.002025159075856209, -0.009556026197969913, 0.029925286769866943, 0.014207079075276852, -0.03569729998707771, 0.007140698377043009, 0.0009266496053896844, -0.03163459524512291, -0.015569571405649185, -0.003595121903344989, -0.01725410670042038, -0.005233209114521742, 0.014888325706124306, -0.014541509561240673, 0.041246358305215836, 0.010689372196793556, 0.004716081544756889, -0.026531441137194633, -0.010131988674402237, -0.026457123458385468, -0.007425583433359861, 0.006626667454838753, 0.009487900882959366, -0.0038397512398660183, 0.024549635127186775, -0.041642721742391586, 0.011321072466671467, -0.01932261884212494, -0.03317049518227577, -0.014355714432895184, -0.0006398294935934246, -0.015284687280654907, -0.018988188356161118, -0.023261459544301033, 0.008298817090690136, 0.012442032806575298, 0.05261697620153427, -0.01802205853164196, -0.001981806941330433, 0.005106249824166298, -0.01399651262909174, -0.015148437581956387, -0.008075864054262638, -0.02280316688120365, 0.01783626340329647, 0.015631502494215965, -0.016349907964468002, -0.009772785939276218, -0.018901484087109566, 0.025317585095763206, -0.007475128397345543, 0.02191135473549366, 0.002988193416967988, 0.008001546375453472, 0.009438356384634972, -0.01160595752298832, 0.004310430493205786, 0.0100328978151083, -0.051675617694854736, 0.01971898041665554, -0.0012827556347474456, -0.009066767059266567, -0.03279890492558479, -0.0041834707371890545, 0.009562218561768532, 0.004214436747133732, -0.021279653534293175, -0.0006309268646873534, -0.003068704390898347, 0.0028116886969655752, -0.008558928966522217, -0.024896450340747833, -0.0017619503196328878, 0.012695951387286186, 0.010639826767146587, 0.029330743476748466, 0.02391793392598629, -0.03463207930326462, 0.025329971686005592, 0.009940001182258129, 0.004301140550523996, 0.0022279846016317606, 0.0362422950565815, 0.02284032665193081, -0.027348937466740608, 0.03141164034605026, 0.00331023707985878, 0.03495412319898605, 0.010063864290714264, -0.014169920235872269, 0.04486315697431564, -0.015730593353509903, 0.008447452448308468, -0.013909808360040188, 0.013575377874076366, 0.0023084955755621195, -0.012095215730369091, -0.011983739212155342, 0.0480835922062397, -0.013340038247406483, 0.0033350095618516207, 0.00969227496534586, -0.014467191882431507, -0.020387839525938034, -0.02243157848715782, -0.0005213855765759945, -0.04141976684331894, 0.02611030824482441, -0.02021443098783493, -0.04956994950771332, -0.034706395119428635, 0.03777819871902466, 0.03941318765282631, 0.009153471328318119, -0.0169692225754261, 0.011890842579305172, -0.0013686855090782046, 0.01814592070877552, 0.011401583440601826, -0.0272250734269619], [0.04550385847687721, 0.06598800420761108, 0.0055916388519108295, 0.06254927814006805, -0.00698862224817276, 0.023596789687871933, -0.022826040163636208, 0.004072373267263174, 0.0367884635925293, -0.016289493069052696, -0.014132875949144363, -0.0710868090391159, 0.016333958134055138, 0.009478735737502575, -0.011516775004565716, 0.015429810620844364, 0.013917955569922924, -0.03601771220564842, 0.008626464754343033, 0.04242086037993431, 0.004702312406152487, 0.004190949723124504, -0.002047303132712841, -0.03246040642261505, -0.008841385133564472, -0.05999987572431564, 0.049061164259910583, 0.01851280778646469, 0.0264426339417696, -0.03832996264100075, 0.04325089976191521, -0.04443666711449623, 0.024678803980350494, -0.03326079994440079, -0.04624496400356293, -0.028176819905638695, -0.010256895795464516, 0.04230228438973427, 0.025330975651741028, 0.022707464173436165, 0.01272477675229311, -0.007007149513810873, -0.03249005228281021, 0.07256902009248734, 0.009189704433083534, 0.008693164214491844, 0.03755921125411987, -0.03758885711431503, -0.007848303765058517, 0.010946123860776424, 0.030681755393743515, 0.049654047936201096, -0.007192425895482302, 0.012887819670140743, -0.0169268436729908, 0.00022267895110417157, -0.04289516806602478, 0.009930809959769249, 0.006077062804251909, -0.018112611025571823, -0.062015682458877563, -0.023152125999331474, 0.014925858937203884, 0.006243811454623938, -0.01796439103782177, 0.0018462783191353083, 0.00795947015285492, 0.019683754071593285, -0.015785541385412216, -0.009723300114274025, -0.005121036898344755, -0.010353239253163338, 0.026709431782364845, -0.013013807125389576, -0.014533072710037231, -0.017149174585938454, 0.011872505769133568, 0.020780589431524277, 0.036195579916238785, -0.011272209696471691, -0.008470832370221615, -0.00870057474821806, -0.04532599449157715, -0.009686244651675224, -0.05922912806272507, 0.01953553408384323, -0.03628451004624367, -0.05344850569963455, -0.02386358752846718, 0.044703464955091476, -0.046689629554748535, 0.016081983223557472, -0.013339893892407417, 0.010382884182035923, 0.02338927984237671, -0.0034350226633250713, 0.026101725175976753, -0.029318122193217278, 0.014770226553082466, 0.0265167448669672, 0.019357668235898018, 0.018542451784014702, 0.008567175827920437, -0.017163995653390884, 0.10025671124458313, -0.030652111396193504, -0.04888330027461052, 0.000792519364040345, -0.014562717638909817, -0.01605233922600746, 0.02043968066573143, -0.024575049057602882, 0.008307789452373981, 0.009878932498395443, 0.011383376084268093, -0.0204989705234766, 0.016319137066602707, -0.049150098115205765, -0.007922414690256119, -0.032163966447114944, -0.03551376238465309, 0.0022418431472033262, 0.0053618960082530975, -0.0369366817176342, 0.024663981050252914, -0.05048408731818199, -0.0014229220105335116, -0.005862141959369183, -0.06527654826641083, -0.037173837423324585, 0.023715365678071976, -0.0379149429500103, 0.03429834917187691, -0.04144260287284851, 0.013777146115899086, 0.009775177575647831, -0.028325041756033897, -0.021091854199767113, -0.04221335053443909, -0.013599280267953873, -0.03249005228281021, 0.017564192414283752, -0.01070897001773119, -0.013110150583088398, -0.021091854199767113, -0.02736160345375538, 0.050691597163677216, -0.03480229899287224, -0.03800387308001518, 0.005354485008865595, -0.004657846409827471, -0.0349801667034626, 0.011257387697696686, 0.026027614250779152, -0.018631385639309883, -0.010419938713312149, -0.022218333557248116, 0.041175805032253265, -0.010286539793014526, -0.035158030688762665, -0.055612534284591675, -0.02450093813240528, -0.03346830978989601, -0.02702069655060768, -0.022707464173436165, 0.025553306564688683, -0.024708447977900505, 0.061600662767887115, -0.03391297534108162, 0.006614363752305508, -0.02051379159092903, -0.011375964619219303, -0.06486152857542038, -0.013169439509510994, 0.014281096868216991, -0.03477265685796738, 0.010108674876391888, 0.01946142315864563, -0.055078938603401184, 0.011101756244897842, -0.022574065253138542, -0.0025327270850539207, -0.018601739779114723, -0.02101774327456951, -0.07535557448863983, 0.005650927312672138, 0.010034564882516861, 0.027821090072393417, -0.034713368862867355, 0.010805313475430012, -0.0008592188241891563, -0.04049398750066757, -0.006577308755367994, -0.0025234632194042206, 0.0328754261136055, -0.003399820066988468, -0.0044355145655572414, -0.012865586206316948, 0.04156117886304855, 0.0235078576952219, -0.007774193771183491, -0.019668933004140854, 0.061067067086696625, 0.01149454154074192, -0.052737046033144, 0.0027495003305375576, -0.08330022543668747, -0.01274700928479433, 0.018290476873517036, -0.03329044580459595, 0.008619053289294243, -0.00848565436899662, 0.037084903568029404, -0.0054656509310007095, 0.0003622151562012732, 0.022855684161186218, -0.029347766190767288, 0.03477265685796738, 0.00923417042940855, 0.01996537484228611, -0.05433783307671547, 0.02149205096065998, -0.00761115038767457, 0.024071097373962402, 0.010649682022631168, 0.03578056022524834, 0.05054337531328201, -0.015815185382962227, -0.0049616992473602295, -0.037233125418424606, 0.03527660667896271, -0.008893262594938278, -0.01839423179626465, -0.014325563795864582, -0.012954519130289555, 0.021640272811055183, 0.06391291320323944, -0.002299278974533081, 0.036225222051143646, 0.011138810776174068, 0.014155109412968159, 0.03130428493022919, 0.019668933004140854, -0.01701577566564083, -0.04348805174231529, -0.012613610364496708, -0.018853716552257538, -0.03148214891552925, 0.01519265677779913, -0.023270703852176666, -0.009664012119174004, 0.049594759941101074, 0.04754931107163429, 0.02346339076757431, -0.037173837423324585, 0.01946142315864563, -0.011613118462264538, -0.03978252783417702, -0.018794428557157516, -0.018097789958119392, 0.04909081012010574, -0.002679095370694995, -0.008559765294194221, -0.019061226397752762, -0.037144191563129425, 0.024189673364162445, 0.01419216487556696, -0.012383867986500263, -0.03945644199848175, 0.03844853863120079, -0.0030348259024322033, 0.014125465415418148, 0.004869061056524515, -0.0036555014085024595, -0.026072081178426743, 0.04031612351536751, 0.022159045562148094, -0.003499869257211685, 0.0038982133846729994, 0.021284541115164757, 0.01689719781279564, 0.0027087396010756493, -0.0179792121052742, 0.011872505769133568, 0.011479719541966915, 0.03658095374703407, -0.010086441412568092, 0.012161536142230034, -0.004013084806501865, -0.019550355151295662, 0.010056797415018082, -0.03646237775683403, -0.03509874269366264, 0.021269720047712326, 0.03999003767967224, 0.031185707077383995, -0.003144138725474477, 0.0046133799478411674, -0.00029574730433523655, 0.005158092360943556, 0.022129401564598083, 0.06610658764839172, -0.03557305037975311, -0.012287524528801441, -0.03391297534108162, 0.04058292135596275, -0.046096742153167725, 0.027124449610710144, -0.01701577566564083, -0.05344850569963455, -0.04004932567477226, 0.010382884182035923, -0.012806298211216927, -0.03151179477572441, -0.024530582129955292, -0.007462929468601942, -0.012798886746168137, -0.01199108175933361, 0.05134376883506775, -0.04829041659832001, 0.06088920310139656, 0.03554340451955795, 0.04245050624012947, -0.05650186166167259, -0.023211415857076645, -0.06669946759939194, -0.006195639725774527, 0.036136288195848465, -0.03936750814318657, 0.004598557949066162, -0.0008638507570140064, 0.02241102047264576, 0.04585959017276764, 0.042154062539339066, 0.008033580146729946, -0.031215351074934006, 6.530989776365459e-05, -0.003499869257211685, 0.025079000741243362, -0.07606703788042068, -0.007618561387062073, -0.04832005873322487, -0.022737108170986176, 0.044673822820186615, -0.026190657168626785, -0.01643771305680275, 0.009612134657800198, 0.02303355000913143, -0.017682770267128944, -0.020869523286819458, -0.03877462446689606, -0.04123509302735329, -0.04840899258852005, 0.013414003886282444, 0.007155370898544788, -0.025242043659090996, 0.025760816410183907, -0.024515759199857712, -0.016274670138955116, 0.02691694162786007, -0.024308251217007637, 0.025775639340281487, -0.017119530588388443, 0.04971333593130112, 0.03586949035525322, 0.05196629837155342, -0.0956915020942688, 0.005669454578310251, 0.0047912453301250935, 0.020306281745433807, 0.005528644658625126, 0.007425874006003141, -0.005043220706284046, 0.018231188878417015, -0.029822073876857758, -0.006002952344715595, 0.007299886085093021, 0.0059621911495924, -0.006547664292156696, -0.030281558632850647, -0.0038500414229929447, 0.022114578634500504, -0.04333983361721039, -0.02346339076757431, 0.029747962951660156, 0.02045450359582901, -0.006380915641784668, 0.045741014182567596, -0.060148097574710846, -0.01199108175933361, -0.04434773698449135, -0.034713368862867355, -0.08442670106887817, -0.029733140021562576, -0.01400688849389553, -0.04052363336086273, 0.011316676624119282, 0.01700095273554325, 0.014577539637684822, -0.02687247470021248, 0.016719333827495575, -0.023685721680521965, -0.05647221580147743, 8.742725185584277e-05, -0.001915756962262094, 0.022336911410093307, -0.012272702530026436, 0.02303355000913143, -0.0450591966509819, -0.01849798671901226, 0.025716351345181465, -0.006569897755980492, 0.019757864996790886, -0.007533334195613861, -0.009930809959769249, -0.05146234482526779, -0.011049878783524036, 0.022188689559698105, -0.04206513240933418, 0.04227264225482941, 0.0328754261136055, 0.016689689829945564, -0.03758885711431503, -0.0027346780989319086, 0.014859159477055073, 0.02143276296555996, -0.022366555407643318, 0.0009921545861288905, -0.0021658800542354584, -0.02940705418586731, 0.018127433955669403, 0.02842879481613636, 0.0024956718552857637, 0.027835911139845848, -0.028043420985341072, -0.0169268436729908, 0.02386358752846718, -0.005258141551166773, -0.005821381229907274, -0.02141794003546238, -0.01597822830080986, 0.0002231421385658905, 0.03942679613828659, 0.006621775217354298, -0.04926867410540581, -0.0649208128452301, 0.030533533543348312, 0.039100710302591324, -0.01250244490802288, -0.012109658680856228, 0.015607675537467003, 0.04052363336086273, -0.02850290574133396, -0.03495052084326744, -0.03426870331168175, -0.02338927984237671, 0.001821266021579504, -0.07588917016983032, -0.003236776916310191, -0.003633268177509308, -0.024115562438964844, 0.05448605492711067, 0.005254435818642378, 0.049150098115205765, 0.06189710646867752, -0.006132645532488823, -0.032608628273010254, -0.02251477539539337, -0.03243076428771019, 0.05528644844889641, -0.032697562128305435, 0.06705519556999207, 0.0016017135931178927, -0.021788492798805237, 0.010316184721887112, 0.02043968066573143, -0.05172914266586304, -0.0032664211466908455, -0.003987146075814962, -0.05291491001844406, -0.0579247809946537, -0.009108182974159718, -0.009760355576872826, -0.02801377698779106, 0.056086841970682144, 0.03859676048159599, 0.025731172412633896, 0.02241102047264576, -0.0707903653383255, -0.051640208810567856, 0.010027153417468071, -0.011005411855876446, 0.03578056022524834, -0.018201543018221855, 0.014140287414193153, 0.012457978911697865, 0.008559765294194221, -0.05685758963227272, 0.019179802387952805, 0.024145208299160004, -0.06026667356491089, 0.023730188608169556, 0.000842080800794065, 0.026042437180876732, 0.04286552593111992, 0.023166948929429054, -0.009048894979059696, 0.021699560806155205, 0.016289493069052696, 0.027524646371603012, -0.015770718455314636, -0.04485168680548668, -0.021655093878507614, 0.005328546278178692, -0.0017953274073079228, 0.0007624119753018022, -0.005995540879666805, -0.026724252849817276, 0.03990110382437706, 0.040078967809677124, -0.004520741757005453, 0.010093852877616882, 0.0029310709796845913, -0.05300384387373924, 0.007488868199288845, -0.014777638018131256, -0.044199515134096146, -0.05196629837155342, -0.007203542627394199, 0.005347074009478092, -0.04289516806602478, -0.03091890923678875, -0.014592361636459827, 0.00472825113683939, -0.036195579916238785, -0.008144746534526348, -0.02645745500922203, 0.01645253598690033, 0.011086934246122837, 0.017667947337031364, -0.008263323456048965, 0.028769703581929207, 0.03251969814300537, 0.03207503259181976, 0.011049878783524036, 0.018779605627059937, -0.0026846535038203, -0.006095590069890022, 0.008574587292969227, 0.04998013377189636, 0.04695642739534378, 0.0020065424032509327, -0.0049098217859864235, -0.006603247486054897, -0.029051324352622032, 0.021669916808605194, 0.008885851129889488, 0.01840905286371708, -0.021047387272119522, -0.021299364045262337, 0.01271736528724432, -0.0024771441239863634, 0.01851280778646469, 0.0089525505900383, 0.021566161885857582, -0.0011218480067327619, 0.010197607800364494, -0.0028402856551110744, -0.008967372588813305, 0.01689719781279564, -0.022188689559698105, 0.003579538082703948, -0.01175392884761095, 0.008389310911297798, -0.013451059348881245, 0.005428595468401909, 0.016067160293459892, -0.004442925564944744, -0.007670438848435879, -0.0049394662491977215, -0.019654110074043274, -0.04651176184415817, -0.00549529492855072, -0.013554814271628857, -0.032223254442214966, 0.014799870550632477, -0.027658045291900635, -0.02539026364684105, 0.021195609122514725, -0.00031149579444900155, 0.022366555407643318, 0.021803315728902817, 0.002958862576633692, 0.007826071232557297, 0.009367569349706173, 0.009552845731377602, 0.027287494391202927, -0.02291497215628624, 0.0026698315050452948, -0.010923890396952629, 0.009056305512785912, -0.017830992117524147, -0.01344364881515503, -0.02487149089574814, -0.017801346257328987, -0.002158468822017312, -0.021240076050162315, 0.025182755663990974, -0.009137826971709728, 0.05949592590332031, 0.048171836882829666, 0.03646237775683403, -0.03299400210380554, -0.0209139883518219, -0.016185738146305084, -0.014525662176311016, -0.02052861452102661, -0.014844337478280067, 0.023211415857076645, 0.009449091739952564, -0.0007864978979341686, 0.0030941141303628683, 0.012769242748618126, 0.006447615101933479, -0.02699105069041252, 0.01400688849389553, -0.002964420709758997, -0.022084934636950493, 0.008174390532076359, -0.03554340451955795, -0.001857394934631884, -0.03388332948088646, -0.00038305873749777675, -0.013102740049362183, 0.011672407388687134, 9.396982204634696e-05, 0.009352747350931168, -0.01474799308925867, 0.024530582129955292, -0.009404624812304974, -0.02251477539539337, -0.011627940461039543, 0.03744063526391983, -0.03201574459671974, 0.02141794003546238, 0.007062732707709074, -0.008196623995900154, -0.007140548434108496, -0.026116548106074333, 0.020321104675531387, 0.03352759778499603, 0.01597822830080986, -0.0025308742187917233, -0.016571111977100372, 0.007722316309809685, -0.00824108999222517, 0.0027457948308438063, 0.011420431546866894, -0.030074048787355423, -0.0048394170589745045, -0.017697591334581375, 0.0012923021567985415, -0.030296381562948227, -0.011805806308984756, 0.01897229254245758, 0.004413281567394733, 0.023819120600819588, -0.017119530588388443, 0.011072111316025257, 0.027035517618060112, 0.01737150549888611, -0.006228989455848932, 0.0034090839326381683, -0.04034576565027237, 0.006929333787411451, 0.02490113489329815, 0.002104738727211952, -0.0027569113299250603, -0.025227220728993416, 0.008433776907622814, -0.004706018138676882, -0.008263323456048965, -0.006043713074177504, 0.015140779316425323, 0.013139795511960983, 0.0119984932243824, 0.003290507011115551, 0.00438734283670783, 0.056531503796577454, -0.001052369363605976, 0.006818167865276337, 0.03237147629261017, -0.013421415351331234, -0.01225046906620264, -0.04090900719165802, 0.018586918711662292, 0.04772717505693436, 0.0027180032338947058, -0.0015887442277744412, -0.04837934672832489, -0.00798911415040493, -0.00292736547999084, 0.03332009166479111, -0.04802361875772476, -0.00399085134267807, -0.013228727504611015, 0.023300347849726677, -0.003942679613828659, -0.01794956810772419, -0.031778592616319656, -0.01754937134683132, -0.02442682720720768, -0.03883391246199608, 0.0009773324709385633, -0.026753898710012436, 0.007789015769958496, -0.010353239253163338, -0.014962914399802685, 0.006992327515035868, -0.03886355832219124, -0.02039521560072899, 0.00844859890639782, -0.07102752476930618, -0.042124420404434204, -0.027569113299250603, -0.0258793942630291, -0.03376475349068642, 0.04992084577679634, 0.01889818347990513, -0.054693564772605896, 0.01342882588505745, -0.044703464955091476, 0.010190196335315704, -0.03127463907003403, -0.0047616008669137955, -0.006243811454623938, -0.01120551023632288, -0.04336947575211525, -0.03094855323433876, -0.05795442685484886, 0.022870507091283798, 0.005839908961206675, 0.0437844954431057, 0.014547894708812237, -0.015563209541141987, 0.021121498197317123, -0.001368265482597053, 0.027539469301700592, 0.00610670680180192, 0.004202066455036402, -0.0055360556580126286, 0.01396242156624794, 0.029095789417624474, 0.0038908023852854967, -0.01894264854490757, -0.02601279318332672, -0.009152648970484734, -0.014162520878016949, 0.013992066495120525, -0.031185707077383995, 0.04239121824502945, 0.019743042066693306, 0.009323103353381157, 0.042717304080724716, 0.012280113063752651, -0.03551376238465309, -0.020306281745433807, -0.009782589040696621, 0.007577800657600164, 0.0199357308447361, -0.008619053289294243, -0.03782600909471512, -0.004646729677915573, -0.011079522781074047, 0.029629385098814964, -0.002030628267675638, -0.004550385754555464, -0.017178818583488464, 0.0022677818778902292, -0.024248961359262466, -0.006958977784961462, 0.00870057474821806, 0.0055619943886995316, 0.00820403452962637, -0.015874473378062248, -0.009145238436758518, 0.04529634863138199, -0.0019046403467655182, 0.023092838004231453, -0.023152125999331474, -0.008078047074377537, -0.042717304080724716, 0.03696632757782936, 0.02295943908393383, 0.0055657001212239265, -0.027524646371603012, -0.0007480530766770244, -0.015029613859951496, -0.003748139599338174, 0.02447129413485527, 0.005569405388087034, -0.020825056359171867, 0.0037536979652941227, 0.020780589431524277, 0.03779636695981026, -0.01636360213160515, -0.01272477675229311, 0.020424859598279, -0.023196592926979065, -0.0046837846748530865, 0.001020872383378446, 0.03296435996890068, -0.052737046033144, -0.014370029792189598, -0.05247024819254875, 0.04855721443891525, -0.024219317361712456, -0.03299400210380554, -0.022366555407643318, 0.01399947702884674, 0.010879424400627613, -0.028769703581929207, -0.02043968066573143, 0.02499006688594818, -0.0005734301521442831, 0.03652166575193405, 0.03658095374703407, 0.014140287414193153, -0.029332943260669708, 0.01943177916109562, 0.015726251527667046, 0.014599772170186043, -0.03382404148578644, -0.0055360556580126286, 0.0025290215853601694, -0.025212399661540985, -0.018305297940969467, 0.014955502934753895, -0.006699590943753719, 0.009071127511560917, 0.014807282015681267, -0.009908576495945454, -0.01594858430325985, 0.015874473378062248, -0.01371785718947649, -0.003207132685929537, -0.026828007772564888, 0.007362880278378725, 0.014295919798314571, 0.015237122774124146, -0.02844361774623394, -0.006380915641784668, 0.00153130863327533, 0.032638274133205414, 0.0008170685032382607, 0.009693656116724014, -0.02347821369767189, 0.028665948659181595, 0.025523662567138672, -0.020765768364071846, -0.0209139883518219, -0.044555243104696274, -0.0032719795126467943, -0.0379149429500103, -0.011872505769133568, -0.035632338374853134, 0.03299400210380554, -0.002310395473614335, -0.0027828500606119633, 0.009034072048962116, 0.013599280267953873, -0.032134320586919785, -0.02490113489329815, -0.010286539793014526, -0.022603709250688553, -0.005576816853135824, 0.01746043935418129, -0.0328754261136055, 0.01599304936826229, -0.037648145109415054, 0.008396722376346588, 0.021195609122514725, 0.016230203211307526, 0.017742058262228966, 0.005576816853135824, 0.02541990764439106, -0.028532549738883972, -0.008641286753118038, -0.014266274869441986, 0.026368523016572, -0.01903158240020275, 0.020039483904838562, 0.021077031269669533, -0.010471816174685955, -0.005547172389924526, 0.03412048518657684, 0.027821090072393417, -0.0010625595459714532, -0.01737150549888611, 0.019194625318050385, -0.012887819670140743, 0.028695592656731606, 0.015037024393677711, 0.013288016431033611, 0.021803315728902817, 0.014281096868216991, -0.008255911991000175, -0.02549401856958866, -0.003579538082703948, -0.052084874361753464, -0.0016044927760958672, 0.0027550586964935064, 0.04449595510959625, -0.045207418501377106, 0.015874473378062248, 0.02791002206504345, -0.032667916268110275, -0.025627417489886284, -0.04606710001826286, -0.032786495983600616, 0.04025683552026749, -0.006966388784348965, -0.014355207793414593, -0.01099800132215023, -0.013821612112224102, 0.03228254243731499, 0.01802367903292179, 0.04689713567495346, 0.016230203211307526, 0.02239619940519333, -0.018112611025571823, -0.019550355151295662, 0.01344364881515503, 0.02500488981604576, 0.007425874006003141, -0.010375472716987133, 0.04808290675282478, -0.011842860840260983, 0.0053137242794036865, -0.0007438843604177237, -0.0388932004570961, 0.023611612617969513, 0.012798886746168137, 0.0030774392653256655, 0.002536432584747672, -0.02402663044631481, -0.0033572064712643623, -0.04704535752534866, -0.021625449880957603, -0.024204496294260025, -0.02297426201403141, 0.029244011268019676, 0.0377667210996151, -0.01046440564095974, 0.018260832875967026, 0.028280574828386307, -0.00046944382484070957, 0.030266735702753067, 0.0479939728975296, -0.023241059854626656, -0.019164981320500374, -0.03844853863120079, 0.00044582108967006207, -0.004098311997950077, -0.005813970230519772, 0.00562128284946084, 0.008507887832820415, -0.0025086412206292152, -0.0034757833927869797, 0.023107660934329033, -0.011390786617994308, 0.027658045291900635, 0.005324841011315584, 0.03945644199848175, 0.010301362723112106, 0.030251914635300636, 0.02590903826057911, -0.04227264225482941, -0.014866570010781288, -0.028680771589279175, 0.023166948929429054, 0.038626402616500854, 0.052648112177848816, -0.003516544122248888, -0.04188726469874382, -0.025523662567138672, 0.03533589467406273, -0.038241028785705566, 0.01375491265207529, 0.010308773256838322, 0.004157599993050098, 0.06171924248337746, -0.01422180887311697, -0.012302346527576447, 0.0369366817176342, 0.01651182398200035, -0.00039533330709673464, 0.03198609873652458, 0.0016860143514350057, 0.009789999574422836, -0.019239090383052826, -0.03681810572743416, 0.019120514392852783, 0.019342845305800438, 0.006336449645459652, -0.018157077953219414, 0.022336911410093307, 0.025138288736343384, -0.06640302389860153, -0.029718318954110146, 0.0400196798145771, -0.002399328164756298, 0.029703496024012566, -0.004598557949066162, -0.04553350433707237, -0.03426870331168175, -0.010872012935578823, 0.03489123284816742, -0.02641298994421959, -0.013036040589213371, -0.02094363234937191, 0.009145238436758518, 0.02688729763031006, -0.07067178934812546, -0.00574727077037096, -0.024130385369062424, 0.02389323152601719, 0.02490113489329815, 0.03376475349068642, -0.01225046906620264, -0.010605215094983578, -0.006962683517485857, 0.005469356197863817, 0.009478735737502575, -0.007885359227657318, 0.0023437452036887407, 0.01175392884761095, -0.006662535946816206, -0.012991574592888355, -0.005862141959369183, -0.013799378648400307, 0.01995055191218853, -0.00020727785886265337, 0.06592871993780136, 0.01099800132215023, -0.0014877687208354473, -0.006247516721487045, 0.00973812211304903, -0.013873489573597908, 0.010412528179585934, 0.015429810620844364, 0.03530625253915787, -0.03981216996908188, -0.010694148018956184, 0.007070143707096577, 0.010116086341440678, -0.010523693636059761, 0.014985146932303905, -0.01740114949643612, 0.003596212947741151, -0.01791992411017418, 0.015592853538691998, 0.027643224224448204, 0.014458962716162205, 0.0119984932243824, 0.047638241201639175, -0.022099757567048073, 0.03930822014808655, 0.013606691733002663, -0.031156063079833984, 0.016304314136505127, -0.04082007333636284, 0.018542451784014702, -0.021744025871157646, 0.04935760796070099, -0.010041975416243076, -0.033616531640291214, -0.022070113569498062, -0.006577308755367994, 0.03830031678080559, 0.0027661751955747604, 0.006996033247560263, 0.023656077682971954, 0.017697591334581375, 0.045711368322372437, -0.01221341360360384, 0.01270995382219553, 0.02737642638385296, 0.01602269522845745, 0.008189212530851364, -0.003794458694756031, 0.005758387502282858, 0.011850272305309772, 0.006488375831395388, -0.008344844914972782, 0.022603709250688553, 0.012398689985275269, -0.0031756358221173286, 0.03503945469856262, 0.014177342876791954, 0.005332252010703087, 0.02748018130660057, -0.014132875949144363, 0.00048588711069896817, 0.004324348643422127, -0.012583966366946697, 0.011546419002115726, -0.006525431293994188, 0.03542482852935791, -0.0017647567437961698, -0.0021065915934741497, 0.03883391246199608, 0.002916248980909586, 0.01691202074289322, 0.012028137221932411, -0.01547427661716938, -0.003820397425442934, -0.009841877035796642, -0.01791992411017418, 0.023211415857076645, -0.023285524919629097, -0.006158584263175726, -0.02401180937886238, 0.004020495805889368, 0.017667947337031364, -0.010145730338990688, -0.01746043935418129, 0.025197576731443405, 0.0013849403476342559, 0.024337895214557648, 0.0027346780989319086, 0.03492087870836258, -0.006210461724549532, -0.027732156217098236, 0.019105691462755203, 0.014281096868216991, -0.007996524684131145, -0.04434773698449135, 0.001995425671339035, 0.00621416699141264, 0.03171930089592934, -0.039130356162786484, -0.012591377831995487, -0.025182755663990974, -0.03299400210380554, -0.008107691071927547, 0.020602725446224213, 0.10974285751581192, -0.0009967865189537406, 0.003820397425442934, 0.024827023968100548, 0.04227264225482941, -0.012272702530026436, 0.015548387542366982, -0.006588425487279892, -0.021343829110264778, 0.03554340451955795, -0.013710446655750275, 0.01642289198935032, -0.02936258725821972, -0.04082007333636284, -0.014244042336940765, -0.025775639340281487, -0.02940705418586731, 0.002564223948866129, -0.03337937965989113, 0.007266536355018616, -0.03246040642261505, -0.04179833456873894, 0.0028847521170973778, -0.023730188608169556, 0.008878440596163273, 0.012532088905572891, 0.03930822014808655, 0.003670323407277465, -0.006436498835682869, 0.06432793289422989, 0.006184522993862629, 0.00798911415040493, -0.0056175775825977325, 0.0037536979652941227, -0.027154095470905304, 0.023641256615519524, -0.008352255448698997, -0.044614534825086594, 0.024575049057602882, 0.03859676048159599, -0.0012042958987876773, 0.004294704645872116, 0.037233125418424606, 0.021655093878507614, -0.02537544257938862, -0.010004919953644276, -0.0233596358448267, -0.015666963532567024, 0.02187742479145527, 0.015037024393677711, 0.050632309168577194, -0.006547664292156696, -0.026620499789714813, 0.0010310625657439232, -0.01121292170137167, -0.005043220706284046, -0.018320120871067047, 0.018349764868617058, -0.007551861926913261, 0.018764784559607506, -0.033231157809495926, -0.013821612112224102, -0.043695561587810516, 0.014266274869441986, 0.003168224822729826, 0.010760847479104996, -0.0002318269689567387, 0.018068144097924232, -0.009730711579322815, -0.026531565934419632, -0.006788523867726326, 0.01754937134683132, 0.0005928841419517994, 0.011605707928538322, 0.0004011231940239668, 0.007455518469214439, 0.011405608616769314, 0.01794956810772419, -0.010523693636059761, -0.013866078108549118, 0.025731172412633896, 0.002547549083828926, 0.012591377831995487, 0.014592361636459827, -0.014384851790964603, -0.004943171516060829, -0.0015674375463277102, 0.0027717335615307093, -0.0008805256220512092, -0.03578056022524834, 0.018824072554707527, -0.014799870550632477, -0.023715365678071976, 0.008092869073152542, -0.013843845576047897, 0.0025345797184854746, -0.01744561642408371, 0.017593838274478912, 0.06308287382125854, -0.014918447472155094, 0.031778592616319656, -0.01845351979136467, -0.0174159724265337, -0.013858667574822903, 0.02401180937886238, -0.013376949355006218, -0.017297394573688507, -0.006532842293381691, 0.033616531640291214, 0.013695623725652695, -0.02303355000913143, -0.009389802813529968, -0.017163995653390884, -0.012732187286019325, -0.015414988622069359, -0.029807250946760178, -0.0007568536675535142, -0.009915987960994244, 0.029066145420074463, -0.00041872443398460746, -0.02948116511106491, -0.007366585545241833, 0.01074602548032999, 0.023700544610619545, -0.009123004972934723, 0.004546680487692356, -0.0029403348453342915, 0.0025438435841351748, 0.039663951843976974, 0.01396242156624794, -0.03246040642261505, 0.01196884922683239, 0.020039483904838562, -0.026798363775014877, 0.012487622909247875, -0.01344364881515503, -0.003562863217666745, 0.028562193736433983, 0.012902641668915749, 0.009093360975384712, -0.027243027463555336, 0.017282573506236076, -0.013843845576047897, 0.0199357308447361, -0.028250930830836296, -0.011020234785974026, -5.9693709772545844e-05, 0.012146714143455029, -0.013488114811480045, -0.0024178556632250547, -7.422631460940465e-05, 0.0327272042632103, -0.0025141993537545204, -0.0030014761723577976, 0.009093360975384712, 0.03038531355559826, -0.023567145690321922, 0.021314185112714767, 0.0037611089646816254, 0.004139072727411985, -0.07458482682704926, -0.02149205096065998, -0.020365571603178978, 0.04239121824502945, 0.050217289477586746, 0.00449480302631855, 0.026590853929519653, 0.03729241341352463, -0.021180786192417145, 0.007900181226432323, -0.0234337467700243, 0.007826071232557297, 2.608342947496567e-05, -0.0049394662491977215, -0.00795205868780613, -0.012828530743718147, -0.004546680487692356, 0.027583936229348183, 0.039159998297691345, 0.010612626560032368, -0.010153140872716904, 0.002441941760480404, -0.021580982953310013, 0.010694148018956184, -0.0038648636545985937, -0.014036532491445541, 0.008544943295419216, -0.004446631297469139, -0.009137826971709728, -0.012828530743718147, 0.0009550993563607335, -0.0057657985016703606, -0.006010363344103098, 0.0033275624737143517, -0.0008328169933520257, -0.02951080910861492, 0.011479719541966915, -0.02598314918577671, -0.00022209995950106531, 0.006814462132751942, -0.005654632579535246, -0.01894264854490757, 0.037203479558229446, 0.02436753921210766, -0.00596960261464119, -0.01250244490802288, -0.01594858430325985, 0.01121292170137167, 0.010390294715762138, -0.05724296718835831, -0.011398198083043098, -0.009382392279803753, 0.025227220728993416, 0.03495052084326744, 0.021195609122514725, 0.023315168917179108, 0.00895996205508709, 0.010375472716987133, -0.00827814545482397, 0.001673971419222653, -0.0026568621397018433, -0.013154617510735989, -0.01124256569892168, -0.02193671464920044, 0.007392524275928736, -0.00798911415040493, 0.0025290215853601694, 0.00011041309335269034, -0.019817152991890907, -0.021314185112714767, 0.011605707928538322, 0.023581966757774353, -0.026635320857167244, -0.017193641513586044, -0.030177803710103035, -0.047193579375743866, -0.018320120871067047, -0.010679326020181179, -0.02201082371175289, -0.031689658761024475, -0.02095845527946949, 0.013110150583088398, -0.009612134657800198, 0.016393247991800308, -0.005821381229907274, 0.024619514122605324, -0.015155601315200329, -0.03148214891552925, -0.012554322369396687, -0.021818136796355247, 0.02398216351866722, 0.010427350178360939, 0.019698577001690865, -0.0009643631638027728, 0.001757345744408667, 0.013614102266728878, -0.002152910688892007, -0.021077031269669533, -0.03696632757782936, 0.039693593978881836, -0.03290507197380066, -0.002089916728436947, 0.057569053024053574, 0.0238487645983696, 0.014836926013231277, 0.023670900613069534, -0.01274700928479433, 0.010605215094983578, 0.011390786617994308, -0.01597822830080986, -0.007336941547691822, 0.028310218825936317, -0.010027153417468071, -0.016793444752693176, -0.004272471647709608, 0.0009018324199132621, -0.011590884998440742, 0.004924644250422716, -0.0013904985971748829, -0.022277621552348137, 0.008011347614228725, 0.02750982530415058, 0.00011880842794198543, 0.03598807007074356, 0.03687739372253418, 0.0009055379196070135, -0.019802331924438477, -0.001132038189098239, -0.009152648970484734, 0.019817152991890907, -0.0239228755235672, -0.02041003666818142, -0.030770687386393547, -0.021077031269669533, 0.015237122774124146, 0.026531565934419632, 9.64015725912759e-06, 0.022322088479995728, -0.006984916515648365, -0.023700544610619545, -0.023152125999331474, -0.054604630917310715, 0.025079000741243362, 0.0010292098158970475, -0.0037018205039203167, -0.0119984932243824, 0.009056305512785912, -0.0003775004588533193, -0.0036091823130846024, 0.020810233429074287, -0.009286047890782356, -0.021566161885857582, 0.0024956718552857637, 0.02404145337641239, 0.015770718455314636, -0.017534548416733742, 0.010101264342665672, -0.020306281745433807, 0.006266044452786446, 0.009100771509110928, -0.0030978198628872633, 0.010834958404302597, 0.012658077292144299, 0.0028458440210670233, 0.033231157809495926, 0.01751972734928131, -0.05291491001844406, -0.005888080690056086, 0.02841397374868393, 0.019076047465205193, -0.03275685012340546, -0.01200590468943119, -0.005647221580147743, 0.0042317109182477, -0.01849798671901226, -0.003016298171132803, 0.011731695383787155, 0.013658569194376469, -0.012828530743718147, -0.00498022697865963, -0.01694166474044323, 0.018142255023121834, -0.011042467318475246, -0.0008675562567077577, 0.049594759941101074, 0.007396230008453131, 0.02946634218096733, 0.01193179376423359, 0.012791476212441921, 0.002215904649347067, -0.0032979182433336973, -0.04138331487774849, 0.02641298994421959, 0.02092881128191948, 0.02739124745130539, 0.02435271628201008, 0.02948116511106491, 0.008344844914972782, -0.0023233648389577866, -0.021077031269669533, -0.013599280267953873, -0.007625972386449575, 0.0022974261082708836, 0.01651182398200035, -0.029851717874407768, 0.011153633706271648, -0.020246993750333786, 0.012821120209991932, -0.023181769996881485, -0.0018768489826470613, 0.020854700356721878, -0.010197607800364494, 0.013332482427358627, -0.03542482852935791, 0.021699560806155205, -0.021610626950860023, 0.022322088479995728, 0.003121905727311969, 0.023596789687871933, 0.008722808212041855, 0.027065161615610123, -0.011413020081818104, 0.03586949035525322, -0.02189224772155285, -0.002104738727211952, 0.019150158390402794, 0.01199108175933361, 0.0049098217859864235, -0.0149332694709301], [0.02431943081319332, 0.006567378994077444, 0.005240063648670912, 0.04755688086152077, -0.029641272500157356, 0.0013218107633292675, 0.0205073319375515, 0.025338508188724518, -0.014556431211531162, -0.04423544928431511, 0.013952534645795822, -0.03817131742835045, 0.015122584998607635, -0.0392029732465744, -0.022847432643175125, 0.07563808560371399, 0.003887586295604706, -0.032484620809555054, -0.03406985104084015, 0.01204648520797491, 0.022054817527532578, 0.02511204592883587, 0.011411135084927082, 0.03137747570872307, -0.012644091621041298, -0.02201707474887371, 0.0238161850720644, 0.02406780794262886, 0.011021118611097336, -0.02140059694647789, 0.06094326078891754, -0.04126628860831261, 0.030622605234384537, -0.040234632790088654, 0.03356660157442093, 0.02609337866306305, -0.04493999481201172, 0.04204632341861725, -0.009549119509756565, 0.021941587328910828, -0.06255365163087845, 0.00244389520958066, 0.010775784961879253, -0.00025476899463683367, 0.03779388219118118, 0.009542829357087612, 0.007221600506454706, -0.021237041801214218, 0.009762999601662159, -0.002621604595333338, -0.007844368927180767, 0.0508279912173748, 0.009731546975672245, -0.0018934684339910746, 0.010807238519191742, -0.0040700132958590984, -0.011128058657050133, 0.029389649629592896, 0.019765041768550873, -0.013185082003474236, -0.051155101507902145, -0.030798742547631264, -0.026697276160120964, 0.012908296659588814, 0.042650219053030014, 0.02007957175374031, 0.01645619049668312, 0.02406780794262886, -0.05636370927095413, 0.004695927258580923, -0.016330378130078316, 0.005925738252699375, -0.009259752929210663, -0.05364617332816124, -0.04662587493658066, 0.039479758590459824, -0.00048240984324365854, -0.02221837267279625, 0.012335852719843388, -0.00968751311302185, -0.0049318247474730015, 0.015801969915628433, -0.03172975033521652, 0.00010458110773470253, -0.018381111323833466, -0.03575572744011879, -0.05757150426506996, 0.00038333298289217055, -0.02589207887649536, 0.025187533348798752, -0.013474449515342712, 0.00547596113756299, -0.006963686086237431, 0.03429631143808365, 0.008253257721662521, -0.04156823828816414, -0.005843960680067539, -0.0362338125705719, 0.028332829475402832, 0.04999763146042824, 0.022922920063138008, -0.07503419369459152, 0.04345541447401047, -0.014229320921003819, 0.0007623411947861314, -0.00577790942043066, -0.021815774962306023, 0.01702234335243702, 0.00808970257639885, 0.019890854135155678, -0.017588498070836067, -0.057672154158353806, -0.03268592059612274, 0.0430779792368412, -0.0019500837661325932, 0.04348057880997658, 0.013587680645287037, -0.048940811306238174, 0.003173604141920805, -0.041945673525333405, -0.0012486826162785292, -0.0018494342220947146, -0.010800947435200214, -0.059584494680166245, -0.014959029853343964, -0.0012534005800262094, 0.007573873735964298, 0.027728931978344917, -0.0658750906586647, 0.0010104264365509152, 0.007190147414803505, 0.004482047166675329, -0.005645806901156902, -0.0355544313788414, 0.01848176121711731, -0.023413585498929024, -0.053293902426958084, -0.060087740421295166, -0.0471794456243515, -0.00419268012046814, 0.01811690628528595, -0.03910232335329056, -0.0263198409229517, -0.033264655619859695, -0.03817131742835045, -0.004277603235095739, 0.0020884769037365913, 0.005488542374223471, -0.015990687534213066, 0.009593154303729534, -0.04176953434944153, -0.023577142506837845, 0.020733794197440147, -0.046500060707330704, -0.05095380172133446, 0.06310722976922989, -0.02502397820353508, -0.019676974043250084, -0.022847432643175125, -0.0007124096155166626, -0.060037415474653244, -0.005085944198071957, 0.016946857795119286, 0.008970385417342186, 0.011801151558756828, -0.001332032959908247, -0.05052604153752327, 0.019110821187496185, -0.04224761947989464, 0.014430619776248932, -0.021023161709308624, -0.007617907598614693, -0.010656263679265976, 0.02903737686574459, -0.01991601660847664, -0.01750042848289013, 0.032283321022987366, 0.00011844006803585216, -0.04199599847197533, 0.006756096612662077, 0.011492912657558918, 0.007209019269794226, -0.05153253674507141, -0.06139618530869484, -0.029439974576234818, 0.011807442642748356, -0.038775213062763214, 0.018431436270475388, -0.01261263806372881, 0.06169813498854637, -0.05852767452597618, -0.02803088165819645, -0.00018203402578365058, -0.013650585897266865, 0.017362035810947418, 0.018997590988874435, 0.004151791334152222, 0.010052367113530636, 0.004412850830703974, -0.023551980033516884, 0.007831787690520287, -0.03069809265434742, 0.04712912067770958, 0.01702234335243702, -0.07906016707420349, -0.01789044588804245, -0.04529226943850517, -0.0032396551687270403, 0.042197294533252716, -0.03958040848374367, 0.03822164237499237, -0.02609337866306305, -0.029339324682950974, 0.045116130262613297, -0.011631306260824203, 0.03094971552491188, -0.04758204519748688, 0.043757364153862, 0.017097830772399902, 0.03766806796193123, -0.045116130262613297, 0.019840529188513756, -0.03837261721491814, -0.03344079107046127, -0.016808463260531425, 0.007001429796218872, 0.026873411610722542, -0.05440104752779007, -0.03022000752389431, -0.03864940255880356, 0.009882520884275436, 0.0024564764462411404, 0.011562109924852848, -0.011178383603692055, 0.03651060163974762, 0.026797926053404808, -0.011568400077521801, -0.02112380973994732, 0.000656580610666424, 0.02263355255126953, 0.01802883855998516, -0.025263020768761635, -0.0002583074674475938, -0.002058596583083272, -0.020318614318966866, 0.014606756158173084, 0.015072260051965714, -0.02342616766691208, 0.047984641045331955, 0.03022000752389431, 0.005762183107435703, -0.03983203321695328, 0.06592541188001633, -0.06340917199850082, -0.021929007023572922, 0.02659662626683712, 0.0004985294654034078, -0.012669254094362259, -0.0176639836281538, -0.01895984634757042, 0.034900207072496414, 0.010423512198030949, 0.024784935638308525, -0.014921286143362522, -0.0243823379278183, 0.03263559564948082, 0.010656263679265976, 0.005847105756402016, -0.06361047178506851, 0.04426060989499092, -0.042448919266462326, -0.032232996076345444, 0.05024925619363785, 0.014216739684343338, 0.006296883337199688, 0.02730117179453373, -0.007806625682860613, -0.02401748299598694, 0.03142780065536499, 0.03308851644396782, -0.07372574508190155, -0.0037303215358406305, -0.0685926228761673, -0.01845659874379635, 0.02830766700208187, 0.049242760986089706, 0.006535925902426243, -0.023413585498929024, -0.07392704486846924, 0.07080691307783127, 0.05555851384997368, -0.09214460104703903, 0.017198480665683746, -0.028408316895365715, 0.01918630860745907, 0.027879906818270683, 0.018745966255664825, -0.007240472361445427, -0.0045386627316474915, 0.004859482869505882, -0.026898574084043503, 0.010719169862568378, 0.01750042848289013, -0.017198480665683746, -0.03625897690653801, 0.00459213275462389, -0.013524774461984634, 0.03215751051902771, -0.005781054962426424, -0.019978921860456467, -0.020180221647024155, 0.04715428501367569, -0.011474041268229485, -0.05047571659088135, -0.02151382714509964, 0.0007391446270048618, -0.055256567895412445, 0.01859499141573906, 0.027225686237215996, -0.005922593176364899, 0.052790652960538864, 0.0017204771284013987, 0.0323588103055954, -0.017097830772399902, -0.053545527160167694, -0.009517666883766651, 0.014719987288117409, 0.005837670061737299, -0.03791969269514084, 0.019626649096608162, -0.007951308973133564, -0.015047097578644753, 0.04272570461034775, -0.0025272455532103777, 0.047280095517635345, 0.0056772599928081036, 0.0023149382323026657, -0.016871370375156403, -0.00027206813683733344, -0.03525248169898987, 0.01729913055896759, -0.028181854635477066, -0.005843960680067539, -0.006425840314477682, -0.006306319031864405, 0.0008987684268504381, 0.04433609917759895, 0.08353906869888306, -0.013537355698645115, 0.06320787966251373, -0.005438217427581549, -0.02949029952287674, -0.013071851804852486, 0.014178995974361897, -0.038599077612161636, -0.0275779590010643, 0.015562926419079304, 0.011480331420898438, -0.00919684674590826, 0.049242760986089706, 0.0025256730150431395, 0.00849859043955803, 0.029792247340083122, 0.019702136516571045, 0.01814206875860691, 0.035453781485557556, -0.042901843786239624, 0.04793431609869003, 0.028181854635477066, -0.03912748768925667, 0.033742740750312805, -0.02297324500977993, 0.03339046612381935, -0.01391479093581438, -0.024608798325061798, -0.03336530551314354, 0.0729205533862114, -0.027879906818270683, -0.020368939265608788, -0.013713492080569267, 0.02039410173892975, -0.04041076824069023, -0.028383154422044754, -0.006004370748996735, 0.06753580272197723, 0.02075895667076111, -0.03434663638472557, -0.003368612378835678, 0.001836853101849556, -0.02075895667076111, 0.009203136898577213, -0.04259989410638809, -0.026244353502988815, -0.006303173955529928, -0.027401821687817574, -0.036158327013254166, 0.009700094349682331, -0.006712062284350395, -0.04224761947989464, 0.02589207887649536, 0.035403456538915634, -0.055457863956689835, -0.03328981623053551, 0.022595809772610664, -0.025992728769779205, 0.014078347012400627, -0.016191985458135605, 0.07900984585285187, 0.017223643139004707, -0.05676630884408951, 0.019651811569929123, 0.014946448616683483, 0.05555851384997368, 0.004434867762029171, -0.0036831421311944723, -0.032308485358953476, -0.0221051424741745, 0.03718998283147812, -0.025690780952572823, -0.029918059706687927, 0.031301990151405334, 0.023375842720270157, -0.027024386450648308, -0.0076053268276154995, -0.016418447718024254, -0.011379682458937168, 0.003953637555241585, 0.012738450430333614, -0.010649973526597023, 0.010870144702494144, -0.01651909574866295, 0.007768881972879171, -0.010322862304747105, 0.02140059694647789, -0.004161227028816938, -0.03142780065536499, 0.005557738710194826, 0.04229794442653656, -0.0006817429675720632, 0.011643887497484684, -0.013386381790041924, 0.046298760920763016, 0.015110003761947155, 0.002012989716604352, -0.02949029952287674, -0.026017891243100166, -0.004862628411501646, 0.03573056682944298, -0.06552281230688095, 0.005696131847798824, -0.0010568195721134543, 0.00021623913198709488, -0.0021765450946986675, 0.007838078774511814, -0.00853633414953947, 0.04788399115204811, -0.02878575213253498, -0.019475674256682396, 0.0401088185608387, -0.042222458869218826, -0.0026074505876749754, 0.020708631724119186, 0.054250072687864304, 0.05681663379073143, 0.06230203062295914, 0.0034818430431187153, -0.04204632341861725, 0.009920264594256878, -0.05656500905752182, 0.008825701661407948, -0.035428617149591446, -0.02112380973994732, -0.015764225274324417, 0.015034516341984272, 0.009234590455889702, 0.031125852838158607, -0.010303990915417671, -0.0009207855327986181, -0.015852292999625206, -0.024055225774645805, 0.014040603302419186, 0.01727396808564663, -0.05203578248620033, -0.015902617946267128, 0.011964707635343075, -0.04134177416563034, -0.011140639893710613, 0.02949029952287674, 0.022319022566080093, -0.05550818890333176, 0.018632736057043076, 0.02101057954132557, 0.02395457774400711, -0.011977288872003555, -0.021476084366440773, 0.03502602130174637, -0.02499881573021412, -0.023526817560195923, -0.02445782534778118, 0.026495976373553276, -0.019060496240854263, -0.06713320314884186, -0.017399780452251434, 0.0183433685451746, 0.03381822630763054, 0.0022237244993448257, 0.015449696220457554, -0.05535721778869629, -0.0035919283982366323, -0.034673746675252914, -0.028911564499139786, 0.02224353514611721, 0.015160328708589077, 0.0006432131049223244, 0.020129896700382233, -0.04760720580816269, 0.008441975340247154, -0.014053184539079666, -0.022281279787421227, 0.0360073521733284, -0.020066991448402405, 0.04036044329404831, -0.03369241580367088, -0.01075691357254982, 0.026219191029667854, 0.0004191107291262597, -0.027125036343932152, -0.04174437373876572, 0.021526409313082695, 0.014782892540097237, -0.01750042848289013, -0.01948825642466545, -0.026495976373553276, 0.02971675992012024, 0.0022614682093262672, -0.0070454636588692665, 0.006875617895275354, -0.006598831620067358, -0.021337689831852913, -0.04405931010842323, 0.00507650850340724, 0.02272162027657032, 0.01388962846249342, 0.02067088708281517, 0.04300249367952347, -0.00254454487003386, 0.002863792236894369, 0.021677382290363312, -0.002750561572611332, 0.0448896698653698, 0.010958212427794933, 0.012839099392294884, 0.010675135999917984, -0.013172500766813755, 0.01656942069530487, -0.015235815197229385, 0.019500836730003357, -0.00946734193712473, 0.02361488528549671, -0.007819206453859806, 0.025263020768761635, 0.0435309000313282, 0.008762795478105545, 0.01263780053704977, 0.06174845993518829, 0.012323271483182907, 0.0013068706030026078, -0.0011779135093092918, -0.04624843969941139, -0.00849859043955803, 0.019626649096608162, 0.0058250888250768185, 0.02288517728447914, 0.021954169496893883, 0.004743107128888369, 0.028207017108798027, -0.016695233061909676, -0.033717576414346695, 0.009033291600644588, -0.00977558083832264, -0.026646951213479042, -0.007341121789067984, -0.021614477038383484, -0.052790652960538864, 0.004614149685949087, 0.0080330865457654, 0.01546227652579546, 0.031553614884614944, 0.019148563966155052, -0.016720395535230637, 0.012738450430333614, -0.014921286143362522, 0.002711245557293296, 0.002033434109762311, -0.011612433940172195, -0.019161146134138107, 0.017575915902853012, -0.011341938748955727, -0.007775172591209412, 0.0008452984038740396, 0.012688125483691692, 0.0063346270471811295, 0.03172975033521652, -0.0024328867439180613, -0.025942403823137283, -0.04008365795016289, -0.03245946019887924, -0.03067293018102646, 0.02413071319460869, -0.01025366596877575, 0.0014161696890369058, 0.029792247340083122, 0.0238161850720644, -0.029590947553515434, -0.011775990016758442, 0.002782014664262533, -0.012178587727248669, -0.01870822347700596, -0.0015238961204886436, 0.03817131742835045, 0.003887586295604706, -0.0177772156894207, -0.00898925680667162, 0.021664801985025406, -0.01693427562713623, -0.005001021083444357, -0.008291001431643963, -0.01841885596513748, -0.04179469868540764, -0.029414812102913857, 0.017739471048116684, -0.01845659874379635, -0.016280053183436394, -0.04280119389295578, -0.006438421551138163, -0.007366284262388945, -0.010272538289427757, -0.00625599455088377, 0.01341154333204031, 0.029666434973478317, -8.738026372157037e-05, 0.023866508156061172, -0.026898574084043503, -0.04428577423095703, 0.042927004396915436, 0.0014232465764507651, -0.010329153388738632, 0.011146930046379566, -0.005821943748742342, -0.005887995008379221, 0.03502602130174637, -0.009089906699955463, 0.012367305345833302, -0.07141081243753433, 0.004334218334406614, -0.01684620790183544, -0.029314162209630013, 0.0028150402940809727, 0.0005771619034931064, 0.008184061385691166, -0.015688737854361534, 0.018179813399910927, -0.0009671786101534963, 0.03022000752389431, 0.0076619419269263744, -0.019878273829817772, 0.007114660460501909, 0.005262081045657396, 0.0057024224661290646, 0.008681017905473709, -0.013814141973853111, -0.0026797924656420946, 0.019790204241871834, -0.053746823221445084, -0.026797926053404808, -0.010335443541407585, -0.04156823828816414, -0.01873338595032692, -0.013084433041512966, -0.0034252277109771967, -0.01923663355410099, 0.012751031666994095, -0.0008909052121452987, -0.00449462840333581, 0.010348024778068066, 0.0017676565330475569, 0.03890102729201317, 0.01864531636238098, 0.027678608894348145, 0.028609616681933403, -0.008070830255746841, 0.0038624240551143885, 0.024332012981176376, -0.008662146516144276, 0.025653038173913956, 0.025539806112647057, 0.022595809772610664, -0.013625424355268478, -0.023753277957439423, -0.06839132308959961, -0.003014766611158848, -0.01331089437007904, 0.04370703920722008, -0.054300397634506226, 0.00888860784471035, -0.0019390751840546727, -0.010605939663946629, 0.011253870092332363, 0.013990278355777264, 0.030421307310461998, -0.03945459797978401, -0.034422121942043304, -0.022432254627346992, -0.009127650409936905, -0.006186797749251127, 0.04355606436729431, 0.008335035294294357, -0.05581013858318329, -0.0003430338983889669, -0.012505698017776012, -0.041920509189367294, 0.012461664155125618, -0.024495568126440048, -0.04491483047604561, 0.004154936410486698, 0.008787957951426506, -0.02570336125791073, -0.006510763429105282, -0.008190351538360119, -0.04478901997208595, 0.025376250967383385, 0.002030288800597191, -0.024420080706477165, -0.02926383726298809, 0.0067435153760015965, 0.0038372615817934275, -0.025074303150177002, -0.0556088387966156, -0.0016591438325121999, -0.037340957671403885, 0.023275192826986313, -0.015512601472437382, 0.03208202123641968, 0.003893876913934946, -0.017034925520420074, -0.021752869710326195, 0.0009058453724719584, -0.002514664549380541, 0.0007143754628486931, 0.002557125873863697, 0.03583121672272682, 0.010272538289427757, -0.0435309000313282, 0.009253461845219135, 0.001202289597131312, -0.035378292202949524, -0.015311302617192268, -0.030043870210647583, 0.008246966637670994, -0.002343245781958103, 0.07045464217662811, 0.01996634155511856, -0.003978800028562546, 0.039303623139858246, 0.015902617946267128, -0.04031011834740639, -0.03666157275438309, -0.0067938403226435184, 0.01699718087911606, -0.01182631403207779, -0.010543033480644226, 0.0035510396119207144, 0.03983203321695328, -0.019815366715192795, 0.003127997275441885, 0.02825734205543995, 0.015084841288626194, -0.024369755759835243, -0.016330378130078316, -0.0010678281541913748, 0.010410930961370468, -0.008077121339738369, 0.027628283947706223, 0.009536538273096085, 0.014808055013418198, -0.015072260051965714, 0.016129080206155777, 0.014053184539079666, -0.01668265275657177, -0.02996838465332985, -0.009159103035926819, 0.010706588625907898, 0.010536742396652699, -0.01475773099809885, 0.0010245803277939558, -0.014581593684852123, 0.0011857767822220922, 0.00028248692979104817, 0.013612843118607998, 0.010826109908521175, 0.01693427562713623, 0.004673910327255726, 0.02005440928041935, -0.004566970281302929, 0.05772247910499573, -0.01670781522989273, -0.000987623119726777, 0.026521138846874237, -0.004938115365803242, -0.002291348297148943, -0.021211879327893257, 0.024810098111629486, -0.01982794888317585, -0.007882112637162209, -0.015500020235776901, -0.015034516341984272, 0.01122241746634245, -0.00371459499001503, -0.014116089791059494, 0.016129080206155777, 0.0065862503834068775, -0.03683771193027496, -0.021312527358531952, 0.008341326378285885, 0.019991504028439522, 0.016758138313889503, -0.011505493894219398, -0.028332829475402832, -0.015537763945758343, 0.009341530501842499, 0.03318916633725166, -0.029943222180008888, -0.05510559305548668, -0.008404231630265713, 0.0033403048291802406, -0.06255365163087845, -0.038800377398729324, -0.01595294289290905, -0.031553614884614944, -0.04187018424272537, 0.030748417600989342, -0.015550345182418823, 0.015185491181910038, -0.006215105764567852, 0.03890102729201317, 0.0183433685451746, 0.021325109526515007, -0.00209634006023407, -0.013461868278682232, -0.013549936935305595, -0.014178995974361897, -0.008209223859012127, -0.021111229434609413, 0.040561743080616, -0.023212287575006485, 0.03535313159227371, -0.028886402025818825, -0.027125036343932152, 0.039303623139858246, -0.022734202444553375, -0.030773580074310303, -0.03266075626015663, -0.011486622504889965, -0.047506555914878845, 0.046802010387182236, 0.0065862503834068775, 0.05140672251582146, 0.0052840979769825935, 0.05339455232024193, 0.012933459132909775, -0.026923736557364464, -0.008649565279483795, 0.012732159346342087, -0.013977697119116783, 0.011115477420389652, 0.022797107696533203, -0.010536742396652699, -0.0071775661781430244, 0.02853412926197052, -0.03774355724453926, 0.03215751051902771, 0.005192884244024754, -0.028609616681933403, 0.002753706881776452, -0.003975654486566782, 0.015009353868663311, -0.01775205321609974, -0.025401413440704346, 0.006806421559303999, 0.042474083602428436, 0.012442792765796185, 0.04544324055314064, 0.026948899030685425, 0.008058249019086361, -0.02238192968070507, 0.025602713227272034, -0.014153833501040936, -0.005016747862100601, 0.011354519985616207, 0.022004492580890656, 0.002250459510833025, 0.03162910044193268, 0.009234590455889702, -0.010706588625907898, 0.0238161850720644, -0.00693852361291647, 0.021312527358531952, -0.015286140143871307, 0.052589356899261475, -0.025376250967383385, 0.0009585290681570768, -0.02053249441087246, -0.0039882357232272625, -0.04720460623502731, -0.014216739684343338, 0.0005417772918008268, -0.025426575914025307, -0.001467280788347125, 0.004695927258580923, 0.017424941062927246, 0.047506555914878845, 0.005664678756147623, -0.005177157931029797, -0.019777623936533928, -0.009825905784964561, -0.02491074800491333, 0.030043870210647583, 9.504692570772022e-05, 0.02898705191910267, 0.005202320404350758, 0.025917241349816322, 0.02092251181602478, 0.03620865195989609, 0.021224459633231163, -0.02559013105928898, -0.04662587493658066, 0.004412850830703974, -0.006932232994586229, 0.02306131273508072, -0.00664915656670928, -0.010725460946559906, -0.040964338928461075, -0.0005535721429623663, 0.02019280195236206, 0.014430619776248932, 0.0011181528680026531, -0.001769229187630117, -0.04093917831778526, -0.03550410643219948, 0.009561700746417046, 0.007485805545002222, 0.0022394510451704264, -0.01143000740557909, -0.005579755641520023, 0.0033780483063310385, -0.00032927319989539683, 0.010970793664455414, -0.005670969374477863, 0.03122650273144245, 0.03819647803902626, -0.049242760986089706, 0.010027204640209675, 0.004425432067364454, -0.03072325512766838, 0.04013398289680481, 0.03799518197774887, 0.0056772599928081036, -0.010354315862059593, 0.010775784961879253, 0.05752117931842804, -0.01823013834655285, 0.007945018820464611, -0.011014827527105808, 0.03724030777812004, 0.047028470784425735, -0.03527764230966568, 0.011788571253418922, -0.02286001481115818, 0.022847432643175125, 0.01887177862226963, 0.030421307310461998, 0.015286140143871307, 0.047733016312122345, -0.02803088165819645, -0.024709448218345642, 0.04617295041680336, 0.029112862423062325, -0.04161856323480606, 0.006278011482208967, -0.0325852707028389, -0.01693427562713623, 0.01862015388906002, 0.03479956090450287, -0.029062539339065552, -0.019928596913814545, -0.0056269350461661816, 0.015625832602381706, -0.026747601106762886, 0.0006801703129895031, 0.012971201911568642, -0.013499611988663673, -0.001747212139889598, 0.016254892572760582, -0.010392059572041035, -0.002207997953519225, 0.02440750040113926, 0.03535313159227371, 0.014443201012909412, -0.044587720185518265, -0.024281688034534454, 0.014053184539079666, -0.005129978526383638, 0.04199599847197533, -0.007001429796218872, -0.0033811936154961586, -0.0176639836281538, -0.03172975033521652, 0.008058249019086361, -0.00489408103749156, -0.007265634834766388, 0.002189126331359148, 0.016732975840568542, 0.026797926053404808, -0.02221837267279625, -0.017601078376173973, -0.020318614318966866, 0.017676565796136856, 0.01046125590801239, 0.046021975576877594, -0.0054067643359303474, 0.0003455894475337118, 0.0278044193983078, 0.01839369349181652, -0.00047336710849776864, 0.01063110213726759, -0.004519790876656771, 0.0008272129343822598, -0.005070217885077, -0.0013265287270769477, 0.011801151558756828, 0.014493525959551334, 0.00647301971912384, -0.0009144949144683778, 0.02584175579249859, 0.0032239288557320833, 0.03887586295604706, 0.013512193225324154, 0.013575099408626556, 0.017349455505609512, 0.0176639836281538, 0.017009763047099113, -0.00011185459879925475, -0.02755279652774334, -0.010907887481153011, -0.0022142885718494654, -0.009278624318540096, -0.04453739523887634, -0.008316163904964924, -0.0028150402940809727, 5.1111066568410024e-05, 0.001529400353319943, 0.000546495255548507, 0.0004529226862359792, 0.0060861483216285706, 0.009926555678248405, -0.024722030386328697, -0.020482169464230537, 0.03512667119503021, 0.02730117179453373, -0.014090927317738533, -0.019928596913814545, -0.03507634624838829, -0.002143519464880228, 0.0053501492366194725, 0.06441567093133926, -0.002074322896078229, -0.03165426105260849, -0.022897757589817047, -0.0031846126075834036, 0.00808970257639885, -0.0019941178616136312, 0.033944036811590195, 0.034950532019138336, -0.006548507139086723, 0.039253298193216324, -0.020985417068004608, 0.035227321088314056, -0.013247988186776638, 0.023551980033516884, -0.025036558508872986, -0.007076916750520468, 0.02538883313536644, 0.021325109526515007, 0.042474083602428436, 0.005633225664496422, 0.007196438033133745, 0.05052604153752327, 0.0061616357415914536, 0.04451223462820053, 0.011587271466851234, -0.016078755259513855, 0.02657146379351616, -0.005938319489359856, 0.011876638978719711, -0.026999223977327347, -0.032258160412311554, -0.0037020137533545494, -0.02019280195236206, 0.08987998962402344, 0.013562518171966076, 0.00742918998003006, 0.03356660157442093, 0.015638412907719612, 0.015072260051965714, 0.023879090324044228, -0.006167926359921694, -0.02089734934270382, 0.0023322373162955046, -0.012700706720352173, 0.019928596913814545, -0.03351627662777901, -0.009649769403040409, -0.0351015068590641, -0.02903737686574459, 0.020230546593666077, -0.005041909869760275, -0.049444060772657394, 0.025237858295440674, 0.03336530551314354, 0.04544324055314064, 0.005174012389034033, 0.017588498070836067, -0.008838282898068428, -0.039983008056879044, 0.005227482412010431, 0.00624970393255353, -0.01816723123192787, -0.02345133014023304, 0.0011527511524036527, 0.001964237540960312, 0.047280095517635345, -0.020821861922740936, -0.03970622271299362, 0.003061946015805006, 0.016946857795119286, 0.0005075722001492977, -0.02609337866306305, 0.0767955556511879, -0.009328949265182018, -0.01828046329319477, 0.016393285244703293, 0.03429631143808365, -0.001420101267285645, -0.006504472810775042, -0.0015506311319768429, -0.009272334165871143, 0.0061521995812654495, -0.015902617946267128, 0.011687921360135078, 0.009750418365001678, 0.024118132889270782, 0.025011396035552025, -0.036183491349220276, 0.03094971552491188, 0.016858788207173347, -0.022482577711343765, -0.01946309395134449, -0.009077325463294983, -0.001726767746731639, 0.015940362587571144, 0.002560271183028817, -0.03316400572657585, -0.021727707237005234, 0.028609616681933403, -0.02634500153362751, -0.020368939265608788, 0.037114497274160385, 0.008913770318031311, 0.04091401398181915, -0.014594174921512604, 0.022004492580890656, -0.0019406478386372328, -0.010285119526088238, -0.023891670629382133, -0.02971675992012024, 0.03379306569695473, 0.017034925520420074, 0.00856778770685196, 0.0091716842725873, 0.003887586295604706, -0.015399371273815632, 0.011392263695597649, 0.0070454636588692665, 0.0033780483063310385, -0.027401821687817574, 0.023325517773628235, -0.0177772156894207, 0.024671705439686775, 0.013977697119116783, -0.04083852842450142, -0.0074983867816627026, -0.0026373309083282948, -0.009549119509756565, -0.00665544718503952, 0.025212695822119713, 0.011669049970805645, -0.010297700762748718, -0.00849859043955803, -0.01597810536623001, -0.005658388137817383, -0.006271720863878727, 0.0074732243083417416, 4.024996451335028e-05, -0.0053658755496144295, -0.00021329040464479476, 0.012744740583002567, -0.0027631428092718124, -0.015198072418570518, 0.025011396035552025, 0.03092455305159092, 0.004003962501883507, -0.006894489750266075, 0.03935394808650017, -0.03288722038269043, 0.017714308574795723, -0.001092204125598073, -0.016166822984814644, 0.01376381702721119, 0.02463396079838276, 0.011455168947577477, -0.015990687534213066, -0.019727298989892006, -0.011033699847757816, 0.02559013105928898, 0.010750623419880867, -0.02322486788034439, -0.012776194140315056, -0.0185698289424181, -0.038045503199100494, 0.00029074333724565804, -0.025917241349816322, 0.0072530535981059074, 0.024357175454497337, -0.03195621073246002, 0.010467546060681343, 0.039806872606277466, 0.005806216970086098, 0.03067293018102646, 0.0024879295378923416, -0.0014727850211784244, 0.004714799113571644, 0.0127069978043437, -0.0263198409229517, -0.03162910044193268, 0.021337689831852913, -0.034925371408462524, -0.019047914072871208, -0.012732159346342087, 0.015147747471928596, -0.015449696220457554, 0.017198480665683746, -0.002137228846549988, -0.01665749028325081, 0.013097014278173447, -0.02148866467177868, 0.018330786377191544, -0.010398349724709988, 0.007913565263152122, 0.009769290685653687, 0.003950492478907108, -0.008926351554691792, 0.029641272500157356, 0.004510355181992054, -0.01436771359294653, -0.0027238265611231327, 0.024583635851740837, 0.016858788207173347, 0.002994322218000889, 0.02126220427453518, 0.02527560107409954, -0.006199378985911608, 0.023212287575006485, 0.00016257251263596117, -0.003123279195278883, -0.03140264004468918, 0.02609337866306305, -4.9046964704757556e-05, -0.0033057064283639193, -0.0018698787316679955, -0.011763408780097961, 0.030849067494273186, -0.0321323461830616, 0.04524194449186325, -0.019513418897986412, 0.005013602320104837, 0.013172500766813755, -0.0029156897217035294, -0.026873411610722542, -0.001817981363274157, -0.013021526858210564, 0.006705771666020155, 0.028886402025818825, 0.04066239297389984, 0.01814206875860691, 0.014103508554399014, 0.019727298989892006, -0.008177770301699638, -0.03188072517514229, 0.018129488453269005, -0.02308647520840168, -0.00712724169716239, 0.00713982293382287, -0.04521678015589714, 0.027452146634459496, -0.01791560836136341, 0.01895984634757042, 0.0020444425754249096, -0.0038844409864395857, -0.009083615615963936, 0.02760312147438526, -0.01729913055896759, -0.010498999617993832, -0.012096810154616833, -0.04667619988322258, 0.012417630292475224, 0.00869359914213419, 0.006837874185293913, 0.0036925780586898327, -0.007479514926671982, 0.01331089437007904, -0.04282635450363159, -0.009618316777050495, -0.030069032683968544, 0.005642661824822426, -0.004633021540939808, 0.0034032107796519995, -0.004831175319850445, 0.005262081045657396, -0.005359584931284189, 0.024898165836930275, 0.01536162756383419, -0.01268183533102274, -0.03188072517514229, 0.01912340149283409, -0.044361259788274765, 0.012260365299880505, -0.016732975840568542, -0.006491891574114561, -0.001970528159290552, -0.01214713416993618, 0.0148709611967206, 0.019475674256682396, -0.02525043860077858, 0.005145704839378595, 0.014216739684343338, -0.009398145601153374, -0.0033151423558592796, 0.03812099248170853, 0.003475552424788475, -0.016103917732834816, 0.01136081013828516, -0.0004226492019370198, -0.013134757988154888, -0.0035541849210858345, 0.011310486122965813, 0.021526409313082695, -0.019702136516571045, 0.0007529053254984319, 0.0004812303523067385, 0.005708713084459305, -0.014241902157664299, 0.009152812883257866, 0.03552926704287529, -0.002333809854462743, -0.0013689902843907475, 0.00023452115419786423, -0.010851272381842136, 0.01182631403207779, -0.005466524977236986, -0.013700910843908787, 0.003393774852156639, -0.042927004396915436, 0.003014766611158848, -0.031830400228500366, -0.02727600932121277, -0.009555410593748093, -0.002464339602738619, -0.017689146101474762, 0.015323883853852749, 0.029666434973478317, -0.009240880608558655, 0.013927372172474861, 0.038825538009405136, -0.010763204656541348, 0.001552203786559403, -0.012027612887322903, 0.002121502300724387, -0.009649769403040409, -0.014329969882965088, 0.013977697119116783, -0.024671705439686775, -0.008605530485510826, 0.007718557491898537, 0.054250072687864304, 0.0014688534429296851, -0.001202289597131312, 0.010750623419880867, -0.027653446421027184, 0.013247988186776638, 0.0221051424741745, 0.010335443541407585, -0.0004812303523067385, 0.0174375232309103, -0.016242310404777527, 0.01473256852477789, 0.028911564499139786, -0.03092455305159092, -0.017940770834684372, 0.03968105837702751, -0.00420526135712862, -0.04733042046427727, 0.003038356313481927, 0.013549936935305595, -0.03633446246385574, 0.020255709066987038, 0.014971611090004444, -0.014191577211022377, 0.04433609917759895, 0.009586863219738007, 0.0072278911247849464, 0.020796699449419975, 0.01991601660847664, -0.0044317226856946945, -0.006287447642534971, -0.03751709684729576, 0.017148155719041824, 0.013247988186776638, 0.007083207368850708, 0.006466729566454887, -0.02999354712665081, 0.04277602955698967, -0.005749601870775223, 0.018519505858421326, -0.0018745966954156756, 0.016632327809929848, 0.02516237087547779, -0.007806625682860613, -0.03505118191242218, -0.02566561847925186, -0.024193620309233665, 0.025539806112647057, 0.017626240849494934, 0.0053910380229353905, 0.01634296029806137, -0.025288183242082596, 0.01595294289290905, -0.006035823840647936, -0.027879906818270683, -0.022168049588799477, -0.007951308973133564, 0.01586487516760826, 0.005906866397708654, 0.00870618037879467, -0.02504914067685604, 0.01105257123708725, 0.014241902157664299, 0.02513720840215683, 0.002365262946113944, 0.006800130940973759, 0.010090110823512077, -0.024030065163969994, 0.02094767428934574, 0.0031594501342624426, -0.00968751311302185, -0.023526817560195923, 0.019928596913814545, 0.014430619776248932, -0.026194028556346893, -0.002272476674988866, -0.012140844017267227, 0.021727707237005234, -0.019790204241871834, 0.0034409542568027973, 0.021828357130289078, -0.021388014778494835, 0.0034912789706140757, -0.012738450430333614, 0.018406273797154427, -0.011228707619011402, -0.013952534645795822, 0.019840529188513756, 0.03560475632548332, 0.03286205604672432, 0.0158397126942873, -0.0006204097298905253, 0.03389371559023857, 0.00011785032256739214, -0.0038152444176375866, 0.004793431609869003, -0.003742902772501111, -0.025564968585968018, 0.016493933275341988, 0.01645619049668312, 0.0019139128271490335, 0.006438421551138163, 0.03449761122465134, -0.015386790037155151, -0.004007107578217983, 0.010373187251389027, -0.010392059572041035, 0.03824680298566818, -0.0199411790817976, 0.02233160473406315, -0.0439838245511055, 0.05923222005367279, -0.00031846127239987254, 0.015638412907719612, 0.00037271762266755104, -0.001402015914209187, 0.02429426833987236, -0.02566561847925186, -0.02114897221326828, -0.06235235556960106, 0.0021969894878566265, -0.017286548390984535, -0.03286205604672432, -0.03120134025812149, 0.007542420644313097, -0.022709039971232414, 0.02474719099700451, -0.015072260051965714, 0.019525999203324318, -0.014971611090004444, 0.020985417068004608, -0.009926555678248405, -0.016921695321798325], [0.019159721210598946, -0.011630594730377197, 0.031358662992715836, 0.04481147974729538, -0.05648308992385864, -0.035741373896598816, 0.015538709238171577, 0.04640519618988037, 0.003887607017531991, -0.066654734313488, -0.0019203665433451533, -0.038670994341373444, 0.038741305470466614, -0.048420775681734085, -0.0053934319876134396, 0.02260495536029339, 0.02831185609102249, 0.0019086480606347322, -0.011536846868693829, 0.04912388324737549, 0.029835259541869164, -0.004391501657664776, 0.003380782436579466, 0.0005621209857054055, 0.03508514165878296, 0.01857379637658596, -0.000452260224847123, -0.032108645886182785, 0.034639839082956314, -0.03585856035351753, 0.01808162033557892, -0.024491630494594574, 0.019710488617420197, -0.03159303218126297, 0.010687257163226604, -0.026554083451628685, -0.002409613225609064, -0.017566006630659103, 0.023964298889040947, 0.014636386185884476, 0.007101401221007109, 0.004075102508068085, -0.009368927218019962, 0.011695046909153461, 0.043967749923467636, 0.04092094302177429, 0.040803760290145874, -0.02048390917479992, -0.013792655430734158, 0.02288619801402092, -0.0006357277161441743, 0.02363618090748787, -0.060889240354299545, -0.08784174919128418, 0.013241886161267757, -0.014812163077294827, 0.001102269859984517, 0.0063689956441521645, 0.03178052604198456, 0.017788657918572426, -0.015023095533251762, -0.02385883219540119, 0.011589580215513706, 0.0062225149013102055, 0.0027084345929324627, 0.023929143324494362, -0.02110498957335949, 0.00962673407047987, -0.053014419972896576, 0.022628391161561012, 0.008243952877819538, -0.0017240819288417697, 0.03817882016301155, -0.010505620390176773, -0.020097199827432632, 0.028968092054128647, 0.029999317601323128, 0.005349487531930208, 0.014073899015784264, 0.004417868331074715, -0.026132218539714813, 0.051842570304870605, -0.024163512513041496, -0.02063624933362007, -0.054795630276203156, -0.022628391161561012, -0.01767147332429886, -0.011226307600736618, -0.022722139954566956, 0.0046903230249881744, 0.03379610553383827, 0.0024843185674399137, 0.0036649557296186686, 0.018890194594860077, 0.019722208380699158, -0.06998278200626373, -0.02788999117910862, -0.033139873296022415, -0.0010737060802057385, 0.014249675907194614, 0.01685117930173874, -0.0660453736782074, -0.026202529668807983, 0.010991937480866909, 0.04565521329641342, 0.054983124136924744, 0.01031226571649313, 0.02582753822207451, -0.0400303415954113, 0.0028695636428892612, -0.060420501977205276, -0.0157613605260849, 0.001345428405329585, 0.026905639097094536, -0.0016552357701584697, 0.03836631402373314, 0.03831944242119789, -0.044788043946027756, -0.009181431494653225, -0.006726409774273634, -0.01651134341955185, -0.016663683578372, 0.03016337752342224, -0.030468057841062546, 0.013441100716590881, -0.007962709292769432, 0.019206594675779343, -0.01048804260790348, -0.035811685025691986, -0.05048322677612305, -0.017226170748472214, -0.024585379287600517, 0.006902186665683985, 0.042186539620161057, 0.030069628730416298, -0.019370652735233307, -0.015796516090631485, -0.01741366647183895, 0.0009404083248227835, -0.01994485966861248, -0.0021723138634115458, -0.01405046135187149, -0.009702904149889946, -0.03253050893545151, -0.0690453052520752, 0.04954575002193451, 0.05296754464507103, -0.00043175288010388613, -0.017366793006658554, 0.0341242253780365, 0.0069959345273673534, -0.013499693013727665, 0.06993591040372849, -0.021503416821360588, -0.02796030230820179, 0.025733789429068565, -0.00887675117701292, 0.015409805811941624, -0.03564762696623802, -0.0003742590779438615, -0.048420775681734085, -0.0027142937760800123, 0.037171028554439545, -0.031475845724344254, 0.023038538172841072, 0.02308541350066662, -0.044436488300561905, -0.0057391272857785225, -0.03623355180025101, 0.02788999117910862, 0.028147798031568527, -0.014495763927698135, -0.02817123383283615, 0.03569450229406357, -0.03365548327565193, 0.0001158115774160251, 0.017870686948299408, -0.008144346065819263, -0.0363272987306118, 0.014308268204331398, 0.03733509033918381, -0.00976735632866621, 0.012327844277024269, 0.007927553728222847, 0.009333772584795952, 0.01864410750567913, 0.01830427162349224, -0.014167646877467632, -0.006814298219978809, 0.024233823642134666, -0.061920467764139175, 0.01219894178211689, -0.03145240992307663, 0.014823881909251213, -0.0030643835198134184, -0.014683259651064873, -0.013769217766821384, -0.025616604834794998, -0.0026117570232599974, -0.02967119961977005, 0.006128767039626837, -0.02828841842710972, 0.0586392916738987, 0.06267044693231583, -0.09721653908491135, 0.016874616965651512, -0.01768319122493267, 0.016136351972818375, 0.02493693307042122, -0.020179228857159615, 0.01624181866645813, -0.03494451940059662, -0.06051424890756607, 0.0207651536911726, -0.012527058832347393, 0.025874411687254906, -0.057936184108257294, 0.02001517079770565, 0.017155859619379044, 0.07284209132194519, -0.03440546616911888, -0.018351145088672638, 0.0039608473889529705, 0.024280697107315063, 0.01740194857120514, 0.0496394969522953, 0.028147798031568527, -0.010962641797959805, 0.004403220023959875, -0.016745712608098984, 0.0017738854512572289, 0.012691117823123932, 0.009146276861429214, -0.0030145798809826374, 0.012773146852850914, 0.028686847537755966, -0.04049907997250557, -0.0548425018787384, 0.03590543195605278, -0.029554015025496483, -0.003518474753946066, -0.017108986154198647, 0.03625698760151863, -0.019897984340786934, 0.016546498984098434, 0.006240092683583498, -0.004414938855916262, 8.079345207079314e-06, -0.01583167165517807, 0.0023993595968931913, 0.0216674767434597, -0.05240505933761597, 0.06295169144868851, -0.04230372607707977, -0.017648035660386086, 0.049311377108097076, -0.009855244308710098, 0.019136283546686172, 0.03339767828583717, -0.04185842350125313, -0.027093134820461273, -0.04652237892150879, 0.006439306773245335, -0.01952299289405346, -0.06065487116575241, -0.02028469555079937, -0.021351076662540436, -0.000501697591971606, -0.03433515504002571, 0.028593100607395172, -0.05662371218204498, -0.04570208489894867, 0.004007721319794655, 0.053201913833618164, -0.0018471259390935302, 0.01253877766430378, -0.04164749011397362, -0.03035087324678898, -0.004034087993204594, 0.006445166189223528, 0.03140553459525108, -0.003152271965518594, -0.023964298889040947, -0.02385883219540119, 0.03583512455224991, 0.046217698603868484, 0.020261257886886597, 0.016487905755639076, 0.011208729818463326, 0.09510721266269684, 0.04987386614084244, -0.03098366968333721, -0.023811958730220795, -0.02267526648938656, -0.011566143482923508, -0.014378579333424568, 0.022311992943286896, -0.04206935688853264, 0.045678649097681046, -0.029507141560316086, 0.016839461401104927, 0.006908046081662178, 0.0024140076711773872, -0.02214793488383293, -0.04206935688853264, -0.025265051051974297, -0.0006723480182699859, 0.005261599086225033, -0.007036949507892132, -0.010681398212909698, -0.048420775681734085, 0.009978288784623146, -0.0471317395567894, -0.05517062172293663, -0.04178811237215996, -0.027655621990561485, -0.027866553515195847, 0.011355211026966572, 0.0024315854534506798, 0.028663411736488342, 0.04467086121439934, 0.021983874961733818, 0.0028930006083101034, 0.02920246124267578, -0.020296413451433182, -0.02938995696604252, 0.009849385358393192, -0.03133522346615791, -0.050201982259750366, -0.0441318079829216, -0.012562214396893978, -0.010271251201629639, -0.0050741033628582954, -0.01517543662339449, 0.02336665615439415, -0.05151445418596268, 0.055545613169670105, -0.016476187855005264, 0.015093406662344933, -0.022054186090826988, 0.004573138430714607, -0.03421797230839729, -0.01394499558955431, -0.034991391003131866, -0.010546634905040264, -0.03084304928779602, 0.013183293864130974, 0.02481974847614765, -0.037241339683532715, 0.002055129036307335, -0.019476119428873062, -0.0008569140918552876, 0.026343151926994324, -0.0192651879042387, 0.0009191685821861029, -0.01830427162349224, 0.03803819790482521, 0.028897780925035477, 0.019288623705506325, 0.03473358601331711, 0.014226239174604416, 0.04178811237215996, -0.004335838835686445, 0.021269047632813454, 0.0031259055249392986, 0.020261257886886597, -0.017788657918572426, 0.07373269647359848, 0.02486662194132805, 0.012175504118204117, 0.0048719593323767185, 0.005182499531656504, 0.0034071491099894047, -0.019429245963692665, -0.021081551909446716, 0.004552630707621574, 0.02363618090748787, 0.023390093818306923, -0.002290963428094983, 0.004262598231434822, -0.007611155044287443, -0.00908182468265295, -0.013745781034231186, 0.012550495564937592, 0.03658510744571686, 0.00505359610542655, -0.03541325777769089, 0.0004819226451218128, -0.03255394846200943, -0.03604605421423912, 0.012245815247297287, -0.01610119640827179, -0.007318193092942238, -0.004980355501174927, -0.04912388324737549, 0.0009067176724784076, 0.044506799429655075, -0.005911975167691708, -0.04000690206885338, 0.014859037473797798, -0.007986146956682205, -0.04031158238649368, -0.037944450974464417, 0.04251465946435928, -0.0069900755770504475, -0.010482183657586575, 0.020132355391979218, -0.017448822036385536, -0.030960233882069588, -0.02678845264017582, 0.020401880145072937, -0.027913426980376244, 0.029647763818502426, -0.03227270394563675, -0.018456611782312393, 0.020870618522167206, -0.0852636843919754, 0.05165507644414902, -0.008753707632422447, -0.0023642040323466063, 0.013171575963497162, -0.003313401248306036, -0.00097629614174366, -0.030866485089063644, -0.01517543662339449, 0.022769013419747353, 0.001124974456615746, -0.02254636213183403, -0.013546567410230637, -0.019417528063058853, 0.003773351665586233, 0.0014640780864283442, -0.038741305470466614, 0.023694774135947227, -0.004394431132823229, -0.03199145942926407, -0.023882269859313965, 0.041014693677425385, -0.040194399654865265, -0.007728340104222298, -0.03241332620382309, 0.015468398109078407, 0.02578066475689411, 0.04167092591524124, -0.04577239602804184, 0.0056307315826416016, -0.0019848181400448084, 0.044038061052560806, -0.02842904068529606, -0.07926382124423981, -0.04624113440513611, 0.024304134771227837, -0.05221756175160408, -0.006591646932065487, -0.016335565596818924, 0.09899774938821793, 0.015655893832445145, -0.03386641666293144, 0.023554151877760887, -0.026671268045902252, 0.022253399714827538, 0.049030136317014694, 0.051701948046684265, 0.05606122687458992, 0.0397256575524807, 0.03520232439041138, -0.01849176734685898, -0.009743918664753437, 0.01905425451695919, 0.0013512875884771347, -0.0385303758084774, -0.04497554153203964, -0.022229963913559914, 0.025335362181067467, 0.051701948046684265, -0.022429177537560463, 0.014777007512748241, 0.0008620409644208848, -0.04856139421463013, -0.05292067304253578, -0.016194945201277733, 0.05432688817381859, -0.02810092270374298, 0.01360515970736742, -0.00901151355355978, 0.0360226184129715, 0.04537396878004074, 0.021140145137906075, -0.026507209986448288, -0.026202529668807983, -0.02639002539217472, 0.03274144232273102, 0.01747225970029831, -0.010868893936276436, -0.006345558911561966, 0.049780119210481644, -0.04103812947869301, -0.035671062767505646, -0.026694705709815025, -0.020050324499607086, 0.008525196462869644, -0.05428001657128334, -0.007406081538647413, 0.0066502392292022705, 0.03686634823679924, 0.0001261567958863452, 0.009820089675486088, -0.012620806694030762, 0.030421182513237, -0.016347285360097885, -0.028007175773382187, -0.02938995696604252, -0.020999522879719734, -0.002602968132123351, 0.016569936648011208, -0.038905367255210876, -0.025522857904434204, -0.006134625989943743, -0.01664024591445923, 0.06623286753892899, -0.06421729177236557, -0.016007449477910995, -0.036561667919158936, -0.012808302417397499, 0.009140416979789734, 0.01707383058965206, -0.030327435582876205, -0.031124291941523552, 0.00619907770305872, 0.008689255453646183, -0.0060174413956701756, -0.02260495536029339, -0.04281933978199959, -0.008706833235919476, -0.03140553459525108, -0.017999591305851936, 0.008267390541732311, 0.04856139421463013, -0.015526990406215191, -0.04879576712846756, -0.008572070859372616, -0.009163853712379932, -0.029624326154589653, 0.04124906286597252, -0.002478459384292364, 0.019159721210598946, -0.015948856249451637, 0.005161991808563471, -0.007564281113445759, 0.06576412916183472, 0.01707383058965206, 0.02863997407257557, 0.028593100607395172, -0.0033954305108636618, 0.03698353469371796, -0.018538640812039375, 0.0029237617272883654, -0.020097199827432632, 0.0016347285127267241, -0.006954920012503862, 0.031358662992715836, 0.02699938602745533, 0.0018573796842247248, 0.006814298219978809, 0.03496795520186424, 0.026975948363542557, 0.013066109269857407, -0.012937205843627453, -0.021292485296726227, -0.006427588406950235, -0.01672227680683136, 0.008964640088379383, 0.00014217816351447254, 0.03590543195605278, 0.00652719521895051, 0.03846006467938423, 0.029155587777495384, -0.04085063189268112, 0.015913700684905052, -0.013089546002447605, 0.006667817011475563, 0.010306406766176224, -0.014202802442014217, -0.011847387067973614, -0.028054049238562584, 0.026975948363542557, 0.00928689818829298, 0.010728271678090096, 0.015749642625451088, 0.021808097139000893, -0.021960437297821045, -0.04237403720617294, 0.027725931257009506, 0.012316126376390457, -0.00048411983880214393, 0.0009184361551888287, -0.020519064739346504, -0.0065037584863603115, -0.005829945672303438, -0.004321190994232893, 0.005126836709678173, -0.04085063189268112, 0.016359003260731697, 0.012667681090533733, -0.03461639955639839, -0.024421319365501404, -0.03440546616911888, -0.010950922966003418, 0.030749300494790077, 0.02831185609102249, 0.022089341655373573, 0.05165507644414902, 0.027186881750822067, -0.023120567202568054, -0.05742057040333748, 0.03288206458091736, -0.04926450550556183, -0.05399877205491066, 0.019241750240325928, 0.030866485089063644, -0.023190878331661224, 0.014612949453294277, -0.047178614884614944, 0.022370584309101105, -0.012140348553657532, 0.03140553459525108, 0.010980218648910522, -0.041225627064704895, -0.032319579273462296, -0.005651238840073347, 0.018245678395032883, -0.026507209986448288, -0.022440895438194275, 0.017495695501565933, 0.006439306773245335, -0.01932377927005291, 0.015937138348817825, 0.03756945952773094, -0.007476392667740583, 0.03810850903391838, 0.021831534802913666, -0.020460471510887146, -0.009990007616579533, -0.04727236181497574, 0.012093475088477135, 0.018515203148126602, -0.0028490563854575157, 0.03370235860347748, -0.038342878222465515, 0.005299684125930071, 0.026835327968001366, 0.010851316154003143, 0.018269116058945656, -0.037803828716278076, -0.02200731262564659, 0.01446060836315155, 0.016054322943091393, 0.049170758575201035, 0.02022610232234001, 0.039842844009399414, -0.019968295469880104, 0.03836631402373314, -0.02564004249870777, -0.014097335748374462, 0.007716621272265911, 0.024069765582680702, 0.00452040508389473, 0.013417663984000683, -0.010540775954723358, 0.021409669890999794, 0.05179569870233536, 0.005261599086225033, -0.02639002539217472, -0.029155587777495384, -0.03473358601331711, 0.015339494682848454, -0.025546293705701828, -0.04687393456697464, -0.04898326098918915, -0.008185360580682755, -0.00437099440023303, 0.02817123383283615, -0.02631971426308155, -0.04544427990913391, 0.033069562166929245, 0.001341033959761262, 0.0026849976275116205, -0.02596816048026085, -0.002793393563479185, -0.015327776782214642, 5.177189450478181e-05, 0.004567279014736414, 0.016944928094744682, 0.0053582764230668545, -0.0020141142886132, 0.003735266625881195, -0.015749642625451088, -0.028663411736488342, 0.004230372607707977, -0.05812367796897888, -0.006128767039626837, 0.002374457661062479, 0.0463348850607872, -0.04347557574510574, -0.008079894818365574, 0.0037792108487337828, 0.012960642576217651, 0.02931964583694935, 0.03838975355029106, 0.03529607132077217, -0.026577521115541458, -0.012269251979887486, -0.04347557574510574, -0.004078032448887825, -0.025452546775341034, 0.02578066475689411, 0.02842904068529606, -0.03857724741101265, 0.01755428873002529, -0.0009543240303173661, -0.058967407792806625, 0.05606122687458992, 0.012831739149987698, -0.017108986154198647, 0.015937138348817825, -0.014003587886691093, 0.01501137763261795, 0.01360515970736742, 0.01285517681390047, -0.03220239281654358, 0.029179023578763008, -0.00033946981420740485, -0.001105199451558292, 0.0034628119319677353, -0.021948719397187233, 0.01836286298930645, -0.007505688816308975, -0.03698353469371796, 0.007406081538647413, -0.014448890462517738, -0.012433310970664024, 0.00041197793325409293, -0.0241166390478611, 0.024304134771227837, -0.013171575963497162, -0.005062384996563196, -0.021433105692267418, -0.00754084438085556, -0.011642313562333584, 0.01686289720237255, 0.05076447129249573, 0.007025230675935745, 0.011712624691426754, -0.00215766578912735, -0.0006346291047520936, -0.032249268144369125, 0.02938995696604252, 0.007294755894690752, -0.016675401479005814, 0.01542152464389801, 0.000322990701533854, 0.014659822918474674, 0.0026249403599649668, 0.010880611836910248, -0.023694774135947227, 0.02308541350066662, -0.01719101518392563, 0.010083755478262901, 0.017155859619379044, 0.056436218321323395, -0.015069969929754734, -0.02234714850783348, -0.006562350783497095, -0.020519064739346504, -0.007230304181575775, 0.02878059633076191, 0.014226239174604416, -0.007933413609862328, 0.0172613263130188, 0.011741920374333858, 0.04809265583753586, -0.004119046963751316, 0.019827675074338913, 0.021140145137906075, 0.0040663136169314384, -0.04085063189268112, 0.020601093769073486, 0.0050096516497433186, -0.013323916122317314, -0.007458814885467291, 0.009913837537169456, -0.031053980812430382, -0.019851110875606537, -0.022089341655373573, 0.01253877766430378, -0.025405673310160637, 0.0006247416604310274, -0.027772806584835052, -0.007042808458209038, 0.02137451432645321, 0.023659618571400642, 0.0001261567958863452, 0.0013124701799824834, 0.022229963913559914, 0.006808438804000616, -0.00037865349440835416, 0.00673226872459054, 0.006439306773245335, -0.028194671496748924, -0.017577724531292915, -0.02178466133773327, 0.014882474206387997, -0.011530987918376923, 0.00928689818829298, -0.0065037584863603115, -0.028124360367655754, -0.019921422004699707, -0.0008898723754100502, -0.001124974456615746, 0.006456884555518627, -0.012913769111037254, -0.05488937720656395, 0.0002933282812591642, 0.004294824320822954, 0.014073899015784264, -0.006843594368547201, 0.009333772584795952, -0.00904081016778946, -0.009468534961342812, -0.0071424157358706, 0.025921285152435303, -0.004265528172254562, -0.03344455361366272, -0.0006338967359624803, 0.002457951894029975, -0.02906183898448944, 0.0016274043591693044, -0.0020331568084657192, -0.006333840545266867, -0.017718346789479256, 0.022311992943286896, 0.009169713594019413, 0.019851110875606537, 0.03234301507472992, 0.0005793325253762305, -0.031077418476343155, -0.023354938253760338, -0.002336372621357441, -0.06023300439119339, 0.021069834008812904, -0.008542774245142937, -0.0021679194178432226, -0.017366793006658554, 0.0019511275459080935, -0.030046191066503525, 0.015913700684905052, 0.0023847115226089954, -0.01487075537443161, 0.028335293754935265, -0.02974151074886322, -0.04982699081301689, -0.014167646877467632, 0.00124655372928828, -0.038881927728652954, -0.014636386185884476, 0.028475916013121605, 0.062201712280511856, -0.011654031462967396, 0.05507687106728554, 0.00652719521895051, -0.011911838315427303, 0.0036151520907878876, -0.0017167578916996717, 0.008167782798409462, -0.02692907489836216, 0.036772601306438446, -0.009515408426523209, 0.004031158518046141, 0.02288619801402092, -0.038905367255210876, 0.008337700739502907, 0.004019439686089754, -0.0038290144875645638, 0.016886334866285324, -0.021901845932006836, 0.054936252534389496, -0.028522789478302002, 0.011636454612016678, 0.016323847696185112, 0.020026888698339462, 0.0025971089489758015, -0.035600751638412476, 0.013581722043454647, -0.04392087459564209, -0.02728063054382801, 0.05338941141963005, 0.01469497848302126, 0.02624940313398838, 0.009691186249256134, -0.007025230675935745, 0.02199559286236763, 0.005378784146159887, 0.012491903267800808, -0.016077758744359016, 0.03049149364233017, -0.017987871542572975, -0.032788317650556564, 0.04370994493365288, 0.02486662194132805, -0.0005405150586739182, 0.04338182508945465, -0.01733163744211197, 0.0003845127357635647, -0.027585310861468315, 0.01562073826789856, -0.010060317814350128, -0.013277041725814342, 0.012339563108980656, -0.022933071479201317, 0.0187144186347723, 0.004124906379729509, 0.03775695338845253, 0.0014421058585867286, 0.02049562707543373, -0.01932377927005291, -0.022323710843920708, 0.006140485405921936, -0.018878476694226265, 0.01212863065302372, -0.019007381051778793, 0.0255697313696146, 0.020882338285446167, 0.029788386076688766, 0.010159925557672977, 0.0015204732771962881, -0.024890059605240822, 0.04591301828622818, -0.033069562166929245, 0.01239815540611744, 0.0036415187641978264, -0.012386437505483627, -0.005062384996563196, 0.01973392628133297, 0.0020521993283182383, 0.023741647601127625, 0.014964503236114979, 0.030608678236603737, -0.03171021491289139, -0.023542433977127075, -0.0025062905624508858, -0.0072713191621005535, 0.014390298165380955, -0.013241886161267757, -0.0019042536150664091, -0.04982699081301689, -0.004417868331074715, -0.0142848314717412, -0.048280153423547745, 0.021878408268094063, 0.03084304928779602, -0.025382235646247864, -0.03768664225935936, 0.03248363733291626, -0.02282760664820671, 0.011753639206290245, 0.040335021913051605, 0.01319501269608736, 0.02015579119324684, 0.012808302417397499, 0.04701455682516098, -0.003149342490360141, 0.004620012361556292, -0.0009111121180467308, 0.04626457393169403, 0.016054322943091393, -0.003785070264711976, 0.01685117930173874, -0.021491698920726776, -0.01719101518392563, -0.019101127982139587, -0.031124291941523552, 0.0066092247143387794, 0.03454608842730522, -0.01476528961211443, -0.012843457981944084, 0.000771222694311291, 0.034710146486759186, 0.012175504118204117, -0.023284627124667168, -0.009105261415243149, -0.020132355391979218, 0.010423591360449791, 0.046006765216588974, -0.0012223842786625028, -0.027796242386102676, 0.013288760557770729, 0.018515203148126602, 0.005865101236850023, 0.0006375587545335293, 0.0192651879042387, -0.006128767039626837, -0.001892535132355988, 0.005715690553188324, 0.02234714850783348, -0.018187087029218674, 0.01952299289405346, 0.052451930940151215, 0.00876542553305626, -0.026202529668807983, -0.017999591305851936, 0.0011938204988837242, -0.06660786271095276, 0.028874343261122704, -0.013277041725814342, -0.051983192563056946, 0.004048736300319433, 0.028968092054128647, 0.034428905695676804, 0.005970567464828491, 0.04959262162446976, -0.007740058470517397, 0.02323775365948677, 0.02173778787255287, 0.015034814365208149, -0.004148343112319708, -0.016265254467725754, -0.00836113840341568, 0.02404632791876793, 0.017425384372472763, 0.023612745106220245, 0.0069314828142523766, 0.04206935688853264, -0.025921285152435303, -0.030374309048056602, -0.0018603092757984996, -0.025100991129875183, 0.020202666521072388, -0.006591646932065487, -0.010347421281039715, 0.015058251097798347, 0.0187144186347723, 0.016769150272011757, -0.018140211701393127, 0.04645206779241562, -0.002736266003921628, 0.026694705709815025, 0.048889514058828354, 0.029694637283682823, -0.0029325506184250116, 0.016827741637825966, 0.0006873622769489884, 0.014519201591610909, -0.04378025606274605, -0.02967119961977005, -0.036561667919158936, -0.016804305836558342, -0.016089478507637978, 0.009304475970566273, -0.0005804311367683113, 0.00785138364881277, 0.0010729735950008035, 0.006445166189223528, 0.019722208380699158, 0.009456816129386425, 0.02920246124267578, -0.02631971426308155, -0.009292757138609886, 0.05367065593600273, 0.007118979003280401, 0.010646242648363113, -0.01665196567773819, -0.021151863038539886, -0.011519269086420536, 0.019968295469880104, 0.03506170213222504, -0.017237888649106026, -0.013570004142820835, -0.02624940313398838, -0.006673676427453756, 0.002929620910435915, -0.003122975816950202, 0.018327707424759865, -0.010880611836910248, -0.014237958006560802, 0.013300478458404541, 0.0001599389943294227, 0.024093201383948326, -0.032788317650556564, -0.0020814957097172737, 0.004696182440966368, -0.022311992943286896, 0.008490040898323059, 0.016429314389824867, 0.020202666521072388, -0.016206663101911545, 0.005290895234793425, 0.03475702181458473, -0.017108986154198647, 0.0031552016735076904, 0.008548634126782417, 0.011835668236017227, 0.01898394338786602, -0.0008027161238715053, 0.06740471720695496, 0.022780731320381165, -0.02521817572414875, -0.016359003260731697, -0.011425521224737167, 0.04949887469410896, 0.016218381002545357, -0.0037762813735753298, 0.017460539937019348, 0.00023546828015241772, 0.017847251147031784, 0.02083546295762062, 0.00659750634804368, -0.04014752432703972, -0.011273181065917015, 0.003260668134316802, 0.022054186090826988, -0.014484046027064323, -0.009978288784623146, -0.007863102480769157, -0.020296413451433182, -0.0018383371643722057, -0.020167510956525803, -0.03803819790482521, -0.016534781083464622, 0.017085548490285873, 0.020038606598973274, -0.02070656046271324, 0.010599368251860142, -0.019499557092785835, -0.04898326098918915, 0.033327367156744, 0.0065037584863603115, -0.011021234095096588, 0.012175504118204117, 0.0098318075761199, -0.012925487011671066, -0.007804510183632374, 0.015515272505581379, 0.0028886061627417803, -0.02472599968314171, -0.020812027156352997, 0.019827675074338913, -0.020437035709619522, 0.06271732598543167, -0.014659822918474674, -0.011454817838966846, -0.001823688973672688, 0.0437333807349205, -0.042866211384534836, 0.006357277277857065, 0.013112982735037804, -0.0211635809391737, 0.04415524750947952, -0.004051665775477886, -0.02281588688492775, 0.01542152464389801, 0.0007521801744587719, -0.01748397760093212, -0.0029896781779825687, 0.0029091136530041695, 0.041014693677425385, -0.020601093769073486, 0.007066245656460524, 0.0006763762212358415, 0.006702972576022148, 0.003263597609475255, 0.004959848243743181, 0.0003222583036404103, -0.003799718338996172, 0.007599436677992344, -0.016159789636731148, 0.00734748924151063, 0.04748329520225525, -0.010031022131443024, 0.0005969102494418621, -0.0007170247263275087, 0.011794653721153736, 0.005575068760663271, 0.018480049446225166, -0.0004643449210561812, -0.026225965470075607, 0.02500724419951439, 0.008296686224639416, 0.014812163077294827, 0.034850768744945526, 0.019382372498512268, 0.038483500480651855, 0.02418695017695427, 0.02295650914311409, 0.015667611733078957, 0.002903254237025976, -0.0008158994023688138, -0.010874752886593342, 0.03241332620382309, 0.02267526648938656, -0.030608678236603737, -0.013007516972720623, 0.015855107456445694, -0.017976153641939163, 0.012140348553657532, -0.006755705922842026, -0.0008708297973498702, -0.026132218539714813, -0.006456884555518627, -0.0014999659033492208, 0.00544909480959177, 0.015984011813998222, 0.025944722816348076, 0.006427588406950235, -0.016569936648011208, 0.007382644806057215, -0.004948129877448082, 0.05048322677612305, 0.0008539845002815127, 0.02309713140130043, 0.0026015033945441246, -0.008577929809689522, 0.016886334866285324, -0.0016552357701584697, 0.013663752004504204, -0.0016508413245901465, 0.006158063188195229, -0.00026897582574747503, 0.03714759275317192, 0.008408011868596077, 0.015550428070127964, -0.005950060207396746, 0.010359139181673527, -0.016335565596818924, 0.009732200764119625, -0.00883573666214943, -0.00706038624048233, -0.007968569174408913, 0.003902255091816187, -0.016956645995378494, 0.008554493077099323, -0.011999727226793766, -0.0018075760453939438, 0.003913973458111286, -0.008021301589906216, 0.0192651879042387, 0.027116570621728897, 0.018726136535406113, 0.05179569870233536, 0.009509549476206303, -0.05765493959188461, 0.014835599809885025, 0.021878408268094063, -0.011484113521873951, -0.03543669357895851, 0.009574000723659992, -0.00952126830816269, -0.003380782436579466, 0.019628459587693214, 0.02117530070245266, 0.04363963380455971, -0.0026849976275116205, 0.021503416821360588, -0.01857379637658596, -0.016569936648011208, 0.0024403741117566824, 0.01822224259376526, -0.030678989365696907, 0.015585582703351974, -0.022101059556007385, -0.01476528961211443, -0.002126904670149088, 0.02274557575583458, -0.019487837329506874, 0.02220652624964714, 0.00019848182273562998, 0.01405046135187149, -0.005873889662325382, 0.01346453744918108, 0.054045647382736206, 0.014261394739151001, -0.017355073243379593, -0.02042531594634056, 8.006104326341301e-05, -0.023472122848033905, 0.02309713140130043, -0.027116570621728897, 0.040264710783958435, 0.02309713140130043, 0.0004383445193525404, -0.02343696728348732, -0.017237888649106026, -0.024585379287600517, 0.009169713594019413, -0.0072713191621005535, -0.009685326367616653, 0.004620012361556292, 0.017495695501565933, -0.026694705709815025, -0.016159789636731148, -0.0037381963338702917, 4.060271385242231e-05, 0.05179569870233536, 0.052733175456523895, 0.020601093769073486, -0.007687325123697519, -0.014273112639784813, 0.014554356224834919, -0.023284627124667168, 0.04551459103822708, -0.04530365765094757, -0.048139531165361404, -0.014226239174604416, -0.04851452261209488, 0.012081756256520748, -0.01085717510432005, 0.019628459587693214, -0.012726273387670517, 0.025335362181067467, -0.025850974023342133, -0.005961778573691845, -0.007201008033007383, -0.02275729551911354, 0.004414938855916262, -0.02528848685324192, 0.04356932267546654, 0.016733994707465172, 0.03323362022638321, -0.02988213300704956, -0.010546634905040264, 0.019312061369419098, -0.031897712498903275, 0.008390434086322784, -0.03159303218126297, -0.006984216161072254, 0.00525866961106658, -0.020659686997532845, 0.020870618522167206, -0.02931964583694935, 0.004602434579282999, 0.03517888858914375, 0.046569254249334335, -0.008132627233862877, -0.03529607132077217, -0.002944268984720111, -0.005182499531656504, 0.03330393135547638, -0.012597369961440563, -0.005929552484303713, 0.0009396758978255093, -0.005577998235821724, 0.0029706356581300497, 0.004031158518046141, -0.035671062767505646, -0.0027450546622276306, 0.02571035362780094, -0.003380782436579466, -0.00283440831117332, 0.03735852614045143, -0.026483772322535515, -0.015515272505581379, 0.019499557092785835, 0.009058387950062752, -0.004997933283448219, -0.023413529619574547, 0.02500724419951439, 0.0057801418006420135, -0.021479981020092964, 0.00592662300914526, -0.042725592851638794, 0.03325705602765083, 0.03515544906258583, 0.003404219402000308, -0.004338768310844898, 0.02138623222708702, 0.010798582807183266, 0.028475916013121605, -0.009380646049976349, 0.0028168305289000273, -0.010822019539773464, 0.005323121324181557, -0.037381961941719055, -0.011530987918376923, -0.03077273815870285, -0.04117875173687935, -0.038202255964279175, 0.002636658726260066, 0.0035155450459569693, 0.03810850903391838, 0.019218312576413155, -0.023413529619574547, -0.03304612264037132, -0.006591646932065487, 0.014167646877467632, -0.015796516090631485, -0.01788240671157837, 0.0023627392947673798, -0.007570140529423952, -0.03410078585147858, 0.008583788760006428, -0.0015746712451800704, 0.03398360311985016, -0.01590198278427124, -0.016628528013825417, 0.04424899443984032, 0.0015043603489175439, 0.011155996471643448, -0.01952299289405346, -0.031616467982530594, -0.003720618551596999, 0.0337257944047451, 0.027468126267194748, -0.006181499920785427, 0.002838802756741643, -0.019312061369419098, 0.011882542632520199, 0.016194945201277733, 0.013640315271914005, 0.00030797638464719057, 0.027374377474188805, 0.011155996471643448, -0.02089405618607998, 0.01476528961211443, 0.001694785663858056, 0.012585651129484177, 0.026694705709815025, -0.000832012330647558, -0.007734199054539204, 0.012210659682750702, 0.011009515263140202, 0.007974428124725819, 0.002534121973440051, 0.014882474206387997, 0.01754257082939148, 0.00275970296934247, 0.020940929651260376, 0.000746687117498368, -0.016429314389824867, 0.0077576362527906895, 0.007927553728222847, -0.004877818748354912, 0.03133522346615791, -0.010687257163226604, 0.016194945201277733, -0.02110498957335949, -0.013570004142820835, 0.0024154724087566137, -0.024983806535601616, 0.014331705868244171, -0.026835327968001366, -0.002230906393378973, 0.005044807214289904, 0.012796584516763687, 0.036702290177345276, 0.02528848685324192, 0.015819953754544258, -0.023729929700493813, -0.008648240938782692, -0.038553811609745026, 0.021479981020092964, -0.04455367475748062, 0.017296481877565384, 0.0017563076689839363, 0.009755637496709824, -0.016804305836558342, 0.03246019780635834, 0.02906183898448944, 0.01760116219520569, 0.014882474206387997, 0.0024828535970300436, 0.0007682931027375162, -0.005624872166663408, -0.05573310703039169, -0.01287861354649067, -0.008548634126782417, -0.020026888698339462, -0.009925555437803268, 0.009937274269759655, -0.0017724205972626805, -0.026413461193442345, -0.0018559148302301764, 0.022851042449474335, -0.011191152036190033, -0.00707210460677743, -0.0037440555170178413, -0.026366587728261948, 0.017788657918572426, -0.013933276757597923, 0.027257192879915237, -0.02946026809513569, -0.03417109698057175, 0.034428905695676804, 0.00667953584343195, 0.035530440509319305, 0.013148138299584389, 0.00411025807261467, 0.03227270394563675, 0.01767147332429886, -0.006415869574993849, 0.02151513658463955, -0.013909840025007725, -0.000404653896111995, 0.008847455494105816, 0.020519064739346504, -0.0023642040323466063, 0.008519337512552738, 0.04225685074925423, -0.004426657222211361, -0.038553811609745026, -0.031100856140255928, 0.0004233302315697074, -0.00846660416573286, 0.027866553515195847, 0.041834987699985504, -0.011027093045413494, 0.01051733922213316, -0.0032694570254534483, 0.031053980812430382, -0.010054458864033222, 0.010101333260536194, -0.007786932401359081, 0.020882338285446167, 0.002643982879817486, -0.03763977065682411, 0.00901151355355978, -0.008993935771286488, -0.010429450310766697, -0.001488979789428413, 0.014273112639784813, -0.01294892467558384, 0.023870551958680153, 0.006310403347015381, -0.031475845724344254, 0.012222378514707088, 0.011548565700650215, -0.025921285152435303, 0.005827015731483698], [0.02526315487921238, 0.02328905276954174, 0.04246984422206879, 0.05033956840634346, -0.030145052820444107, 0.0023275716230273247, -0.03433334827423096, 0.002387594897300005, 0.011257709935307503, -0.012744954787194729, 0.026850437745451927, 0.0007840548059903085, 0.005838936660438776, -0.01863391138613224, -0.0025243146810680628, 0.026076804846525192, 0.03750791400671005, -0.031212134286761284, -0.015566051006317139, 0.05783581733703613, 0.044684037566185, 0.02092813514173031, 0.01816706173121929, -0.03299949690699577, 0.014365584589540958, 0.01731339655816555, 0.06295780837535858, -0.05623519420623779, 0.04644472151994705, -0.011584503576159477, 0.02088811993598938, -0.02427610382437706, 0.0171266570687294, -0.02507641538977623, 0.02822430618107319, -0.00863002147525549, -0.041802916675806046, 0.020634688436985016, 0.03758794441819191, 0.03910853713750839, 0.0017356747994199395, 0.002485966309905052, -0.045804474502801895, 0.028304336592555046, -0.04700493812561035, 0.008009780198335648, 0.018793972209095955, -0.006135718431323767, 0.002230867277830839, 0.03942866250872612, 0.03844160959124565, 0.03086533211171627, 0.027023838832974434, -0.02098149061203003, 0.0006785971345379949, 0.030038343742489815, 0.006522535812109709, -0.0070360684767365456, 0.03993552550673485, 0.003941532224416733, -0.01298504788428545, -0.018847327679395676, -0.012718277983367443, -0.001772355637513101, -0.054794635623693466, -0.022141940891742706, 0.03067859262228012, -0.011204355396330357, -0.029584834352135658, 0.036200739443302155, -0.0008870114688761532, -0.008356582373380661, 0.0003893180110026151, -0.030145052820444107, 0.0003428416093811393, -0.016913240775465965, 0.028117597103118896, -0.018807310611009598, 0.01002389658242464, 0.046498075127601624, 0.0005773077718913555, 0.009330294094979763, -0.031212134286761284, 0.010410713963210583, -0.07016060501337051, 0.0068826754577457905, -0.0260634645819664, -0.012791639193892479, -0.008770075626671314, 0.02042127214372158, 0.01839381642639637, 0.049752674996852875, 0.016913240775465965, 0.03734785318374634, 0.037374529987573624, -0.024262765422463417, 0.0321991853415966, -0.006225753575563431, 0.008643359877169132, 0.03516033664345741, 0.03812148794531822, -0.020434610545635223, -0.0059723216108977795, -0.04751180484890938, 0.02969154343008995, -0.04348357021808624, -0.03062523901462555, -0.020061131566762924, -0.048338793218135834, -0.032866109162569046, 0.020634688436985016, -0.004731839522719383, -0.05260711908340454, 0.040762513875961304, 0.01736675202846527, 0.019314175471663475, -0.036067355424165726, -0.0321991853415966, -0.010470736771821976, 0.0021975210402160883, -0.038094811141490936, 0.008076473139226437, 0.01463235542178154, -0.04964596778154373, 0.015912853181362152, -0.019420882686972618, -0.029051294550299644, -0.01891401968896389, -0.02926471084356308, -0.04564440995454788, 0.017873615026474, -0.004678485449403524, 0.019927747547626495, -0.031025394797325134, 0.016993273049592972, 0.01087089255452156, 0.015886176377534866, -0.03452008590102196, -0.04345689341425896, -0.018500525504350662, -0.007509585935622454, 0.027930857613682747, -0.006069025956094265, 0.014272214844822884, -0.013965428806841373, -0.06066358461976051, 0.06759960949420929, 0.03678763285279274, -0.007576278410851955, 0.027744118124246597, -0.060770291835069656, -0.028010889887809753, 0.007089422550052404, 0.013345187529921532, -0.023182345554232597, -0.009336963295936584, 0.003077863249927759, 0.051353298127651215, -0.009777134284377098, -0.034039899706840515, -0.06466513872146606, -0.013912075199186802, -0.02677040733397007, -0.04332350939512253, 0.013445226475596428, 0.016993273049592972, -0.0067826369777321815, 0.046124596148729324, -0.02502306178212166, -0.015659421682357788, -0.0258767269551754, -0.024302780628204346, -0.019700992852449417, 0.015499358996748924, 0.0008895124774426222, -0.006936029531061649, 0.011237702332437038, 0.011757904663681984, 0.035827260464429855, -0.018140384927392006, 0.04220307245850563, 0.005982325412333012, -0.004778524395078421, -0.004888567142188549, -0.06674594432115555, 0.01509920321404934, -0.025836709886789322, -0.009270270355045795, -0.03326626494526863, 0.01844717189669609, -0.013992106541991234, -0.04551102593541145, 0.005135329905897379, -0.01623297668993473, 0.03561384603381157, -0.035453781485557556, -0.0300650205463171, 0.013698658905923367, 0.01755348965525627, -0.0218751709908247, 0.016152946278452873, -0.01731339655816555, 0.022755512967705727, -0.025663310661911964, -0.026423605158925056, -0.050366245210170746, -0.06882675737142563, 0.0021641745697706938, 0.04529760777950287, -0.008843437768518925, 0.00905685406178236, 0.011571165174245834, -0.035693876445293427, 0.02511643059551716, 0.018847327679395676, 0.014392261393368244, -0.005785582587122917, -0.009370309300720692, 0.046551428735256195, -0.016993273049592972, -0.039775460958480835, 0.005242038052529097, 0.011704550124704838, 0.05463457107543945, 0.018567217513918877, 0.05113987997174263, 0.027370641008019447, 0.014032121747732162, 0.002405935199931264, -0.03382648155093193, -0.03678763285279274, -0.012051351368427277, -0.006582559086382389, 0.0416962094604969, -0.017246704548597336, 0.0021975210402160883, -0.0264369435608387, -0.00863669067621231, 0.00021987713989801705, -0.008109819144010544, 0.0601300410926342, -0.018407156690955162, -0.0007736340630799532, -0.03857499733567238, -0.010063912719488144, 0.006002333480864763, -0.014165506698191166, -0.010450729168951511, 0.00917690061032772, 0.006365808192640543, 0.03966875374317169, -0.014405599795281887, 0.06407824158668518, 0.017233366146683693, 0.004151613917201757, 0.036867666989564896, 0.02014116384088993, -0.05020618438720703, 0.036067355424165726, 0.0010679151164367795, 0.009350301697850227, 0.022288665175437927, -0.02004779316484928, -0.002886122092604637, -0.042043011635541916, -0.021981878206133842, 0.0304384995251894, -0.03801477700471878, -0.009330294094979763, 0.04865891486406326, -0.02347579225897789, 0.02042127214372158, 0.006855998653918505, 0.024756290018558502, -0.03307952731847763, 0.023689208552241325, 0.03307952731847763, -0.011371087282896042, -0.001427221461199224, -0.006142387632280588, 0.02154170721769333, -6.721363024553284e-05, 0.027504025027155876, -0.016819871962070465, -0.024662921205163002, 0.04780524969100952, -0.004315010737627745, -0.022435387596488, -0.03542710468173027, 0.052206963300704956, 0.010964262299239635, -0.010183959268033504, -0.018660588189959526, -0.018460510298609734, 0.025009723380208015, 0.020594673231244087, -0.017139997333288193, -0.014885786920785904, 0.005498804152011871, 0.0024642914067953825, 0.009723779745399952, 0.04332350939512253, -0.03123881109058857, 0.03123881109058857, -0.019834376871585846, -0.015192572958767414, -0.00802311860024929, -0.002861112356185913, -0.026850437745451927, -0.05959650129079819, -0.014378922991454601, 0.029291387647390366, -0.03179902955889702, -0.009003500454127789, -0.040629126131534576, 0.0036947696935385466, -0.0037781354039907455, -0.00832323543727398, 0.0058055901899933815, -0.016486408188939095, 0.014498969539999962, 0.017873615026474, 0.03374645113945007, -0.05570165440440178, 0.07768353074789047, -0.027930857613682747, 0.0175001360476017, 0.05148668214678764, -0.02064802683889866, -0.007869726046919823, -0.033106204122304916, 0.013138440437614918, -0.001870727282948792, 0.007943088188767433, -0.027824150398373604, -0.05644861236214638, 0.026983823627233505, 0.003544711275026202, 0.05052630975842476, -0.07133439928293228, -0.02183515578508377, -0.01783359982073307, -0.006795975379645824, 0.020781412720680237, 0.008129826746881008, -0.0047518471255898476, -0.015872837975621223, -0.014085475355386734, -0.02785082720220089, 0.056662026792764664, -0.006535874214023352, -0.002702717436477542, -0.042789969593286514, 0.0024242757353931665, -0.03363974392414093, 0.05943644046783447, 0.0011154336389154196, 0.017726890742778778, -0.02601011097431183, -0.011197686195373535, 0.008763406425714493, -0.021755123510956764, -0.00598899507895112, 0.000262810499407351, 0.027744118124246597, 0.07144110649824142, -0.06418494880199432, 0.11257709562778473, -0.006535874214023352, -0.010510752908885479, -0.023302393034100533, 0.02785082720220089, -0.0041649523191154, 0.0031128767877817154, -0.06023675203323364, 0.0541810616850853, 0.005348746199160814, 0.0044717383570969105, 0.025516586378216743, -0.048525530844926834, -0.005602177698165178, -0.011891289614140987, -0.0016381368041038513, -0.013885398395359516, 0.05372755229473114, 0.07080085575580597, -0.009650418534874916, 0.029371418058872223, -0.04369698837399483, -0.07597620040178299, -0.04249652102589607, -0.02803756669163704, -0.03486688807606697, 0.01999443955719471, -0.021394984796643257, -0.014112153090536594, -0.014098814688622952, 0.06904017180204391, 0.01848718710243702, -0.05607513338327408, 0.013465235009789467, -0.04732506349682808, -0.04022897407412529, 0.0333196185529232, -0.005325403530150652, -0.0038481627125293016, -0.018473848700523376, -0.010950923897325993, -0.027877504006028175, -0.044070467352867126, 0.0366809256374836, -0.031585611402988434, 0.004858555272221565, -0.01420552283525467, -0.031158778816461563, -0.007209469564259052, -0.020247871056199074, 0.013885398395359516, -0.02464958280324936, 0.013431888073682785, 0.015486020594835281, 0.007082753349095583, -0.04030900448560715, 0.03291946277022362, 0.0002811509766615927, 0.046418044716119766, -0.024996383115649223, -0.009190239012241364, 0.016299670562148094, -0.03203912079334259, 0.0021124877966940403, 0.027370641008019447, 0.02593008056282997, 0.002062468556687236, -0.03110542520880699, -0.053620845079422, 0.022101925686001778, -0.022101925686001778, 0.004128271713852882, -0.028304336592555046, -0.007676317356526852, -0.044870775192976, 0.03433334827423096, 0.03214583173394203, -0.01647306978702545, -0.03193241357803345, 0.009270270355045795, 0.04092257469892502, -0.00889679230749607, -0.0327594019472599, 0.022715497761964798, 0.05223364010453224, -0.01754015125334263, -0.049939412623643875, -0.01910075917840004, -0.04628466069698334, -0.007876395247876644, -0.0525004081428051, -0.004098259843885899, -0.008670036680996418, 0.05580836161971092, 0.06178401783108711, 0.003858166513964534, 0.057142212986946106, 0.03697437420487404, -0.0013105095131322742, -0.01792696863412857, -0.02921135537326336, -0.07176122814416885, 0.003139553824439645, 0.005862278863787651, 0.037854716181755066, 0.02262212708592415, -0.006685932632535696, 0.024009333923459053, -0.0642383024096489, -0.004455065354704857, -0.011697880923748016, -0.030785301700234413, -0.03297281637787819, -0.0608769990503788, 0.021301614120602608, -0.0441238209605217, -0.03150558099150658, 0.05703550577163696, 0.06509196758270264, 0.02395598031580448, 0.028491076081991196, -0.026036787778139114, -0.0074762399308383465, -0.05047295615077019, 0.004928582813590765, 0.045617733150720596, -0.014832432381808758, -0.024596229195594788, -0.01731339655816555, 0.017660198733210564, 0.017233366146683693, -0.0057188901118934155, 0.04332350939512253, -0.03734785318374634, -0.03307952731847763, -0.04116266965866089, 0.004878563340753317, 0.03155893459916115, -0.015045848675072193, -0.015446004457771778, 0.015245926566421986, -0.020541319623589516, -0.0177802462130785, -0.0413227304816246, 0.005982325412333012, 0.005228699184954166, 0.01039737556129694, -0.011857942678034306, -0.02202189527451992, 0.008269881829619408, -0.02691713161766529, 0.000514366605784744, 0.04844550043344498, 0.006625909358263016, 0.017900291830301285, 0.043643634766340256, -0.016219638288021088, 0.012731616385281086, -0.014899125322699547, -0.0329461395740509, -0.05386094003915787, 0.002652697963640094, -0.008016449399292469, -0.015379312448203564, -0.027984213083982468, -0.020407933741807938, 0.015005833469331264, -0.03193241357803345, -0.01413882989436388, 0.037667978554964066, 0.0431901216506958, -0.007789694704115391, -0.0008903461275622249, 0.009763795882463455, 0.022075248882174492, -0.004631800577044487, 0.00568220904096961, 0.0353737510740757, 0.008836768567562103, 0.0014197186101227999, -0.007189461495727301, 0.0022875559516251087, 0.027770796790719032, 0.023209022358059883, -0.0008336573955602944, -0.023489130660891533, -0.0011062633711844683, 0.004748512525111437, 0.008756737224757671, 0.015819482505321503, -0.038041453808546066, -0.01835380122065544, -0.0021641745697706938, 0.00797643419355154, 0.01221141405403614, 0.016126269474625587, -0.02611682005226612, -0.007743010297417641, 0.04148279130458832, 0.004515088628977537, 0.019794361665844917, -0.028437722474336624, -0.03190573677420616, -0.06759960949420929, 0.0009395318920724094, -0.0011871281312778592, 0.007429555058479309, 0.013065079227089882, 0.008523313328623772, 0.06039681285619736, -0.03363974392414093, 0.004088256042450666, -0.010644137859344482, 0.0005522980354726315, -0.01002389658242464, 0.025703325867652893, -0.025476571172475815, -0.03772133216261864, 0.012738285586237907, 0.02055465802550316, -0.018847327679395676, 0.01802033931016922, -0.004761851392686367, 0.024916352704167366, 0.0046651470474898815, 0.01688656397163868, -0.0013221806148067117, 0.04193630442023277, 0.01190462801605463, -0.0327594019472599, 0.011437780223786831, -0.011304394342005253, -0.0035713883116841316, -9.050393418874592e-05, -0.035213690251111984, -0.006425831466913223, -0.00652920501306653, -0.01632634736597538, 0.0030428494792431593, -0.010450729168951511, -0.01567276008427143, 0.016032898798584938, 0.04644472151994705, 0.0452442541718483, 0.024996383115649223, -0.0025309838820248842, 0.015139218419790268, -4.578602784022223e-06, -0.00591563293710351, -0.038414932787418365, -0.0335063599050045, 0.001333851832896471, 0.04108263924717903, -0.02172844670712948, 0.0111243249848485, -0.006342465523630381, -0.02286222018301487, -0.02926471084356308, 0.024862999096512794, 0.01584615930914879, -0.016686486080288887, 0.01021063607186079, 0.003924859222024679, -0.024943029507994652, -0.005398765206336975, -0.01647306978702545, -0.005642193369567394, 0.01589951477944851, 0.017113318666815758, 0.025476571172475815, -0.0350002720952034, -0.023982657119631767, -0.0035280382726341486, -0.0013230142649263144, -0.01081753894686699, 0.004445061553269625, -0.03001166693866253, 0.0019490910926833749, 0.03542710468173027, -0.008783414959907532, 0.012651585042476654, 0.013545265421271324, 0.020114487037062645, 0.03561384603381157, 0.0016348022036254406, -0.04249652102589607, -0.034413378685712814, -0.006202411372214556, 0.0012838324764743447, -0.020207855850458145, 0.04689823091030121, 0.0037081080954521894, 0.03374645113945007, -0.0169399194419384, 0.018433833494782448, -0.02902461588382721, -0.03774800896644592, 0.030918685719370842, 0.01472572423517704, 0.0058689480647444725, -0.01429889164865017, 0.03062523901462555, -0.0018890677019953728, 0.004821874666959047, -0.00392819382250309, -0.003072861349210143, -0.022782189771533012, 0.004901905544102192, 0.024196073412895203, 0.007756348699331284, -0.028971262276172638, -0.009016838856041431, 0.011404433287680149, 0.0021041512954980135, 0.002804423449561, -0.0218751709908247, -0.007803033571690321, 0.027930857613682747, 0.026103481650352478, 0.019394205883145332, 0.010190628468990326, 0.031158778816461563, 0.015179234556853771, 0.00971711054444313, 0.01444561593234539, 0.024729613214731216, 0.022502081468701363, -0.016926581040024757, 0.03828154876828194, 0.012278106063604355, 0.0325726643204689, 0.005888956133276224, -0.023929301649332047, -0.002130828332155943, 0.0037681316025555134, 0.040815867483615875, -0.031212134286761284, -0.0251297689974308, -0.01980770006775856, 0.0018307117279618979, -0.002085810760036111, 0.015659421682357788, 0.0259700957685709, 0.029904959723353386, 0.0023359081242233515, -0.03774800896644592, -0.006929360330104828, -0.013325179927051067, 0.013992106541991234, 0.0210348442196846, -0.004628465976566076, 0.020501302555203438, -0.04105595871806145, -0.02883787825703621, -0.003332962282001972, -0.009770465083420277, 0.015486020594835281, -0.02394264191389084, -0.002716055838391185, -0.005605512298643589, 0.040015555918216705, 0.027277270331978798, -0.004154948517680168, 0.016966596245765686, -0.006085698958486319, -0.007122769020497799, 0.0014097146922722459, -0.014779078774154186, -0.012718277983367443, -0.013111763633787632, 0.02384927123785019, -0.03414660692214966, -0.010657476261258125, 0.046924907714128494, -0.03278607875108719, 0.03990884870290756, 0.022515419870615005, -0.0005343743832781911, 0.032866109162569046, -0.03814816474914551, 0.04823208227753639, 0.007816371507942677, -0.020287886261940002, 0.010537429712712765, 0.011197686195373535, 0.010557437315583229, -0.015912853181362152, -0.0009020173456519842, -0.02963818795979023, 0.029958313331007957, -0.007756348699331284, 0.0030628573149442673, -0.00924359355121851, 0.0418829470872879, 0.02362251654267311, -0.016686486080288887, -0.0065892282873392105, 0.037294499576091766, -0.0029027950949966908, -0.023449115455150604, 0.014859110116958618, -0.0034380031283944845, 0.029744897037744522, 0.0012088032672181726, -0.01986105367541313, 0.008903461508452892, 0.015232588164508343, 0.010504083707928658, -0.017473459243774414, -0.019927747547626495, -0.05199354514479637, -0.013258487917482853, -0.047031618654727936, 0.008389928378164768, 0.016899902373552322, 0.010804200544953346, 0.03217250853776932, -0.023862609639763832, 0.01839381642639637, -0.011764573864638805, 0.021701769903302193, 0.01934085227549076, -0.004485076759010553, -0.04126937687397003, -0.05218028649687767, 0.027957534417510033, -0.020341241732239723, -0.04158950224518776, -0.05618184059858322, 0.027957534417510033, -0.015245926566421986, 0.012471514753997326, 0.022515419870615005, 0.026743730530142784, -0.00941032450646162, 0.02172844670712948, 0.03873505815863609, 0.029611511155962944, 0.024196073412895203, -0.03489356487989426, -0.001964096911251545, 0.046604786068201065, -0.03980214148759842, -0.0013546933187171817, 0.03142555058002472, 0.0009487021598033607, -0.04327015578746796, -0.0007319512078538537, -0.03155893459916115, -0.03740120679140091, 0.016713164746761322, -0.0348135344684124, 0.005498804152011871, 0.029904959723353386, -0.015726113691926003, -0.004801866598427296, -0.01429889164865017, -0.016192961484193802, -0.02172844670712948, -0.002707719337195158, 0.031025394797325134, 0.0076429713517427444, -0.02282220497727394, 0.035747230052948, -0.002804423449561, 0.018620572984218597, 0.013351857662200928, -0.008409935981035233, -0.007509585935622454, -0.0013738673878833652, 0.009403655305504799, 0.0083299046382308, -0.00639915419742465, 0.024022672325372696, -0.0179669838398695, -0.010777522809803486, -0.003317956579849124, -0.04985938221216202, 0.012898347340524197, -0.022435387596488, -0.008990162052214146, -0.011931304819881916, -0.014098814688622952, -0.017913630232214928, -0.010670814663171768, -0.0042783296667039394, 0.03049185313284397, -0.028491076081991196, -0.010070581920444965, 0.015579389408230782, 0.017420105636119843, -0.030945362523198128, -0.003924859222024679, -0.0210348442196846, -0.022328680381178856, -0.008763406425714493, -0.006969376001507044, -0.0065858936868608, -0.012044682167470455, 0.06530538946390152, -0.006055687554180622, 0.01895403489470482, -0.018780633807182312, 0.042363137006759644, -0.008776744827628136, -0.006389150395989418, -0.0018240424105897546, -0.048818979412317276, 0.015005833469331264, 0.01291168574243784, 0.023582501336932182, 0.01286500133574009, -0.03862835094332695, 0.029131324961781502, 0.008149835281074047, 0.02178180031478405, 0.005292057059705257, -0.007042737677693367, 0.012684931047260761, -0.010364028625190258, 0.01727338135242462, 0.01891401968896389, 0.01152447983622551, -0.01768687553703785, -0.004915243946015835, 0.02987828105688095, -0.02427610382437706, 0.0025193127803504467, 0.031185457482933998, 0.027250593528151512, -0.00022842212638352066, -0.003794808639213443, 0.019874392077326775, -0.028117597103118896, 0.021381644532084465, -0.002165841870009899, 0.03846828639507294, -0.004938586615025997, 0.0017406767001375556, 0.00683599105104804, -0.017420105636119843, -0.010290667414665222, 0.0007477906765416265, 0.01900738850235939, 0.0038014778401702642, -0.0006294113700278103, -0.040629126131534576, 0.023395761847496033, -0.017059965059161186, -0.019887730479240417, 0.009450340643525124, -0.0415094718337059, 0.02846439927816391, 0.027397317811846733, -0.013071748428046703, -0.01924748159945011, -0.004818540066480637, -0.0018273770110681653, 0.03457343950867653, 0.028971262276172638, 0.05383426323533058, 0.0437503419816494, -0.0013430221006274223, 0.006745955906808376, 0.006259100046008825, 0.00813649594783783, 0.031078748404979706, -0.024382812902331352, 0.005658866371959448, 0.057462338358163834, 0.006976045202463865, 0.018327124416828156, -0.009030177257955074, -0.007662978954613209, 0.021301614120602608, 0.023395761847496033, -0.030091697350144386, 0.0047285049222409725, 0.014192183502018452, 0.015019171871244907, -0.03137219697237015, 0.013185125775635242, -0.0012338130036368966, 0.02851775288581848, -0.04492413252592087, 0.01195131242275238, 0.0091702314093709, -0.008656698279082775, -0.011344410479068756, -0.013251818716526031, -0.015886176377534866, 0.021915186196565628, -0.03905518352985382, 0.008716722019016743, -0.011197686195373535, 0.02352914772927761, -0.010063912719488144, 0.010250651277601719, 0.04489745572209358, -0.01636636257171631, 0.019087420776486397, -0.010637468658387661, -0.006049018353223801, -0.03908186033368111, 0.0267170537263155, -0.0037147775292396545, 0.0165664404630661, 0.0037481237668544054, 0.024529535323381424, -0.011931304819881916, -0.029611511155962944, 0.007949757389724255, -0.013191794976592064, -0.007402877788990736, 0.0541810616850853, 0.0608769990503788, 0.002919468330219388, -0.013418549671769142, 0.004144944716244936, 0.015646083280444145, 0.010904238559305668, 0.03177235275506973, 0.012498191557824612, 0.017286719754338264, 0.05372755229473114, -0.031132102012634277, 0.028997939079999924, -0.026810422539711, 0.030705269426107407, -0.026130158454179764, 0.026223527267575264, 0.043216802179813385, 0.04049574211239815, -0.0007848884561099112, -0.025996772572398186, 0.002170844003558159, 0.006239091977477074, -0.0054454500786960125, -0.003814816242083907, 0.001048741047270596, 0.024142717942595482, -0.03646751120686531, -0.05692879855632782, 0.029051294550299644, 0.02987828105688095, 0.02747734822332859, 0.026837099343538284, -0.03516033664345741, -0.01986105367541313, -0.003924859222024679, -0.0215016920119524, -0.020808089524507523, 0.000233840910368599, -0.011911297217011452, 0.021008167415857315, -0.006956037599593401, -0.025143107399344444, 0.008016449399292469, -0.044577330350875854, 0.022502081468701363, 0.044817421585321426, -0.006452508270740509, 0.00021424995793495327, 0.016126269474625587, -0.01755348965525627, 0.00182570971082896, 0.010850884951651096, 0.0072428155690431595, 0.01731339655816555, 0.018553879112005234, -0.007909741252660751, -0.012338129803538322, 0.03374645113945007, -0.02211526408791542, 0.01260489970445633, 0.001530595007352531, 0.05308730527758598, -0.0006298281950876117, -0.004024898167699575, 0.02202189527451992, -0.0026893788017332554, -0.018620572984218597, 0.022848881781101227, 0.006662589963525534, 0.004144944716244936, -0.08280552178621292, 0.021061521023511887, -0.009750457480549812, -0.011471126228570938, 0.00754960160702467, 0.0336930975317955, 0.02516978420317173, -0.014285553246736526, 0.035773906856775284, -0.020874781534075737, 0.002617684192955494, 0.005728893913328648, 0.014125491492450237, 0.009296947158873081, -0.02945144847035408, 0.004618462175130844, 0.02018117904663086, -0.014512307941913605, -0.0026193514931946993, -0.028864555060863495, 0.009757126681506634, 0.011857942678034306, 0.021488353610038757, -0.005438780877739191, -0.03393319249153137, -0.01887400448322296, -0.024262765422463417, 0.01589951477944851, 0.0048552206717431545, 0.03195909038186073, -0.04409714415669441, 0.015379312448203564, 0.02046128734946251, -0.018927358090877533, 0.016059575602412224, -0.0007869725814089179, -0.011684542521834373, -0.025663310661911964, -0.011517810635268688, 0.010544098913669586, 0.011084308847784996, 0.03772133216261864, -0.024169396609067917, 0.013018393889069557, 0.030705269426107407, -0.04041571170091629, 0.028624461963772774, -0.0012905016774311662, 0.01608625426888466, 0.02987828105688095, -0.004371699411422014, -0.010304005816578865, -0.009677095338702202, -0.043163444846868515, 0.006449173670262098, 0.0057822479866445065, 0.03473350405693054, 0.005752236116677523, -0.009096870198845863, 0.022755512967705727, -0.015566051006317139, -0.013912075199186802, 0.02168843150138855, 0.003754792967811227, -0.00549213495105505, 0.007309508044272661, 0.0037447891663759947, 0.006265769246965647, -0.052393700927495956, 0.032866109162569046, -0.019540930166840553, -0.033186234533786774, 0.011851273477077484, -0.014579000882804394, -0.017019949853420258, -0.023115653544664383, -0.007843049243092537, -0.028117597103118896, 0.0129383634775877, 0.0057188901118934155, -0.012971709482371807, -0.028917908668518066, -0.024196073412895203, -0.004801866598427296, -0.009837157092988491, -0.007709663826972246, -0.004425053484737873, -0.007723002228885889, 0.016393039375543594, -0.004661812447011471, 0.010644137859344482, -0.03452008590102196, -0.03449340909719467, -0.018127046525478363, -0.0030745286494493484, 0.08755403757095337, 0.00700939167290926, -0.028971262276172638, 0.021755123510956764, 0.060290105640888214, -0.0016423050547018647, 0.00021612568525597453, -0.012838324531912804, -0.01503251027315855, 0.0036147385835647583, -0.01213805191218853, 0.006759294308722019, -0.0109842699021101, 0.0036747618578374386, -0.029904959723353386, -0.004415049683302641, -0.016339685767889023, -0.025289831683039665, -0.0013155114138498902, -0.027183901518583298, -0.012451507151126862, -0.029291387647390366, 0.012951701879501343, -0.01764686033129692, 0.0351870134472847, 0.007449562661349773, 0.017300058156251907, -0.005182014312595129, 0.009697102941572666, 0.05426109582185745, 0.023169007152318954, -0.0021241591311991215, -0.014819093979895115, -0.025063076987862587, 0.00017006610869430006, 0.05386094003915787, -0.017846938222646713, -0.042843323200941086, -0.009396986104547977, 0.026103481650352478, 0.005352080799639225, 0.00792974978685379, 0.008930138312280178, 0.007776356302201748, -0.04177623987197876, 0.00392819382250309, -0.027130547910928726, -0.05396764725446701, 0.012651585042476654, -0.021208245307207108, 0.006592562887817621, 0.022368695586919785, 0.00031804031459614635, -0.005355415400117636, -0.025009723380208015, -0.012851662933826447, -0.0504462793469429, -0.011504472233355045, -0.013778690248727798, 0.011731226928532124, -0.030705269426107407, -0.009563717991113663, -0.02272883616387844, -0.010670814663171768, 0.032012443989515305, 0.019647637382149696, -0.018713941797614098, 0.00997721217572689, -0.01962096057832241, -0.0218751709908247, -0.002821096684783697, -0.0031428884249180555, 0.0174067672342062, -0.003991551697254181, 0.000311996293021366, 0.03086533211171627, -0.004508419428020716, 0.020781412720680237, -0.005598843097686768, -0.017380090430378914, -0.007122769020497799, -0.006592562887817621, 0.02244872786104679, 0.01515255682170391, -0.006112376227974892, -0.028437722474336624, 0.010490745306015015, 0.03468014672398567, 0.004838547669351101, -0.028144273906946182, 0.027130547910928726, 0.0031428884249180555, -0.007089422550052404, -0.004771855194121599, 0.006615905091166496, 0.008616683073341846, -0.00839659757912159, 0.013898736797273159, 0.05772911012172699, -0.020634688436985016, 0.025676649063825607, -0.05129994451999664, -0.04121602326631546, 0.00275273690931499, 0.012424830347299576, 0.016873225569725037, 0.030331792309880257, 0.028250982984900475, -0.03395986929535866, 0.0016823207261040807, -0.005865613464266062, -0.006175734102725983, 0.007576278410851955, -0.03393319249153137, -0.001152114593423903, -0.03174567595124245, 0.010384037159383297, -0.009136885404586792, 0.025329846888780594, 0.004391707479953766, 0.025289831683039665, -0.006252430845052004, 0.011397764086723328, 0.03062523901462555, -0.029798250645399094, 0.020954811945557594, -0.023502469062805176, 0.0308119785040617, 0.02878452278673649, 0.02969154343008995, -0.04372366517782211, 0.017286719754338264, 0.016673147678375244, 0.033799804747104645, 0.00556549709290266, 0.011824596673250198, -0.012905016541481018, -0.010970931500196457, 0.012738285586237907, 0.0024792971089482307, -0.021701769903302193, 0.026783745735883713, -0.012784969992935658, 0.03790806978940964, -0.04687155410647392, 0.013445226475596428, -0.023462453857064247, 0.014952479861676693, -0.007969764992594719, 0.001747345901094377, -0.004101594444364309, 0.012391483411192894, 0.00889679230749607, 0.016619794070720673, 0.02649029903113842, -0.002190851606428623, 0.01044405996799469, 0.0015089198714122176, 0.0152192497625947, -0.01037069782614708, -0.05879618972539902, 0.006956037599593401, -0.012038012966513634, 0.019794361665844917, 0.035773906856775284, 0.013465235009789467, -0.0014088810421526432, 0.022422049194574356, -0.021435000002384186, -0.018033677712082863, -0.04657810553908348, -0.0013055074959993362, 0.00820985808968544, -0.022382033988833427, -0.01774022914469242, -0.01697993464767933, -0.029238032177090645, 0.028117597103118896, 0.0260634645819664, 0.02851775288581848, -0.033052850514650345, 0.0439370796084404, 0.008263212628662586, -0.02328905276954174, 0.0036314118187874556, 0.02343577705323696, 0.00971711054444313, -0.01999443955719471, -0.021288275718688965, -0.01171788852661848, -0.01225809846073389, -0.026290221139788628, -0.015486020594835281, 0.00736286211758852, 0.012684931047260761, -0.014552324078977108, -0.02418273501098156, 0.012038012966513634, -0.03161228820681572, -0.025609955191612244, 0.002322569489479065, -0.011871282011270523, -0.01321847178041935, -0.009143554605543613, 0.03438670188188553, -0.027690764516592026, -0.016539763659238815, 0.0003859833814203739, -0.023969318717718124, -0.003219584934413433, -0.0007607123698107898, 0.0024542873725295067, -0.005065302364528179, 0.02107485942542553, 0.01839381642639637, 0.011224363930523396, -0.020861443132162094, 0.005588839296251535, -0.029984990134835243, -0.0331328809261322, 0.009637080132961273, -0.010237312875688076, -0.012131382711231709, 0.0016773187089711428, -0.005595508497208357, -0.027930857613682747, 0.00682265218347311, -0.0021625072695314884, 0.006069025956094265, -0.026223527267575264, 0.04791196063160896, -0.025289831683039665, -0.021341629326343536, -0.024289442226290703, -0.04436391219496727, 0.00013213469355832785, -0.034600116312503815, 0.0009220251231454313, 0.0006394152296707034, 0.004415049683302641, 0.0025243146810680628, 0.03222586214542389, -0.02639692835509777, 0.0037881392054259777, -0.036814313381910324, 0.028864555060863495, 0.0051419991068542, 0.009603733196854591, -0.022715497761964798, -0.015592728741466999, 0.014392261393368244, -0.009497025050222874, 0.001636469503864646, 0.015659421682357788, 0.0263435747474432, 0.015619405545294285, 0.035933967679739, -0.02822430618107319, 0.004591784905642271, 0.024436166509985924, -0.04110931605100632, -0.020901458337903023, 0.0214083231985569, 0.013311841525137424, 0.01807369291782379, 0.026503637433052063, -0.019167451187968254, 0.011277717538177967, -0.009396986104547977, -0.0013321845326572657, 0.0014088810421526432, 0.033239588141441345, 0.007896402850747108, -0.02418273501098156, -0.030945362523198128, 0.00598566047847271, -0.005305395927280188, -0.003421330126002431, 0.02963818795979023, -0.0016181290848180652, -0.011337741278111935, 0.004611792974174023, -0.009490355849266052, 0.011824596673250198, 0.048018667846918106, 0.005762239918112755, -0.0215950608253479, -0.0020891455933451653, -0.01731339655816555, -0.019274160265922546, -0.031212134286761284, -0.003588061546906829, -0.032866109162569046, -0.0004960261867381632, 0.017913630232214928, 0.04559105634689331, -0.027637410908937454, 0.016526425257325172, 0.03049185313284397, -0.048712268471717834, 0.03419996052980423, -0.026476958766579628, 0.04665813967585564, 0.0183404628187418, -0.01037069782614708, 0.010123935528099537, 0.014765740372240543, -0.03990884870290756, 0.012098036706447601, 0.0008786749094724655, -0.014432277530431747, 0.012764962390065193, 0.004455065354704857, 0.014085475355386734, -0.04140276089310646, 0.02520979940891266, -0.005932306405156851, 0.007809702772647142, 0.04092257469892502, -0.011497803032398224, -0.015045848675072193, -0.008863445371389389, -0.029184678569436073, 0.00985716562718153, 0.06605234742164612, 0.04268325865268707, 0.0042149717919528484, -0.008916799910366535, -0.003908185753971338, -0.0002471794141456485, 0.004525092430412769, -0.018980711698532104, -0.01347857341170311, 0.011804589070379734, -0.030731946229934692, -0.03326626494526863, -0.014645693823695183, -0.02183515578508377, -0.007142776623368263, -0.02574334107339382, 0.015512697398662567, 0.05279385671019554, -0.024822983890771866, 0.031398873776197433, 0.05434112623333931, 0.020434610545635223, -0.0013196796644479036, 0.013752012513577938, 0.009910519234836102, 0.04548434913158417, 0.0049852714873850346, 0.0032812755089253187, 0.0012988382950425148, -0.0003936947032343596, 0.016526425257325172, 0.002032456686720252, 0.01275162398815155, -0.01882064901292324, 0.011751234531402588, -0.02846439927816391, -0.00917690061032772, 0.004274995066225529, -0.027077192440629005, 0.010170620866119862, 0.025796694681048393, -0.007449562661349773, -0.018647249788045883, 0.01580614410340786, -0.011277717538177967, 0.045430995523929596, -0.02352914772927761, 0.01755348965525627, -0.004451730754226446, -0.04625798389315605, 0.02870449237525463, -0.009190239012241364, 0.022221971303224564, -0.004448396153748035, 0.009457009844481945, 0.004451730754226446, 0.0013330181827768683, -0.05263379588723183, 0.014378922991454601, -0.00205246452242136, -0.027770796790719032, -0.006795975379645824, 0.006362473592162132, 0.004405045881867409, 0.0351870134472847]], "input": ["HAAILIYA STREET 24:Haaliya Street 24 is the address of Makor Haziud, a store that sells baggage and outdoor equipment.", "BIALIK 3:Bialik 3 is the address of WeShoes, a store that may provide services related to baggage.", "STEINMAN 20:Steinman 20 is the address of Log In Log Out, an importer of luggage and bags.", "SOKOLOV 59:Sokolov 59 is the address of Shin Tik, a service provider related to baggage handling.", "IZTHAK RABIN 2:Izthak Rabin 2 is the address of Trek Market, a service provider related to baggage handling.", "SHLOMO HA-MELEKH 37:Shlomo Ha-Melekh 37 is the address of WeShoes in Kiryat Ono.", "HAMERETZ 6:Hameretz 6 is the address of ARTY Rimon in Petach Tikva.", "SERVICE:Service refers to the various types of assistance provided to customers regarding baggage handling and claims.", "WHATSAPP:WhatsApp is a communication tool used by various stores for customer service related to baggage.)<|COMPLETE|>", "CARGO TIKIM VE MIZVADOT:Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.", "MOKA:Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.", "RIMON MIZVADOT VE TIKIM:Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.", "GALGAL YAZIV:Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.", "HAGALGAL:Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.", "BUGABOO:Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.", "DAMAGE TO WHEELCHAIRS:Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-e6216d9498c8e7fb2ddcddb472855652 b/cache/text_embedding/embedding-e6216d9498c8e7fb2ddcddb472855652 deleted file mode 100644 index a52ccef4713660b9b98997d503aa6a8ef712c01b..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-e6216d9498c8e7fb2ddcddb472855652 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.018936162814497948, -0.011683276854455471, 0.03213479369878769, 0.004288687836378813, -0.03884400427341461, 0.008565808646380901, -0.021099302917718887, 0.05899476259946823, 0.02873392030596733, 0.02792418748140335, -0.013962093740701675, -0.012018737383186817, -0.03317587822675705, -0.009687865152955055, 0.002706818515434861, 0.003961903043091297, 0.030792953446507454, 0.0024682367220520973, -0.03574388474225998, -0.009028512053191662, 0.00501744681969285, 0.034725937992334366, -0.030422789976000786, 0.003198441583663225, -0.00663401884958148, -0.043818071484565735, -0.010300948284566402, -0.026374129578471184, 0.02595769613981247, -0.02794732339680195, 0.06450094282627106, -0.02702191472053528, 0.03352290764451027, -0.011237923987209797, -0.009508567862212658, -0.044535260647535324, -0.04175903648138046, 0.003825983963906765, -0.0030075761023908854, 0.008889701217412949, 0.02419942058622837, -0.007709805853664875, -0.009011160582304, -0.051730308681726456, 0.026952508836984634, 0.09300351142883301, 0.047427162528038025, -0.011278410442173481, 0.030816087499260902, 0.035905830562114716, -0.031093711033463478, 0.024500178173184395, -0.001515355659648776, -0.014575176872313023, 0.06667564809322357, 0.08597040921449661, 0.0016975454054772854, 0.0721355602145195, 0.019583947956562042, -0.0018276808550581336, -0.015095719136297703, -0.0012876185355708003, 0.04395688325166702, -0.005433880258351564, -0.008837646804749966, 0.030052626505494118, -0.01648383028805256, 0.04853765293955803, -0.009323486126959324, -0.0004124572442378849, 0.018323078751564026, 0.031047439202666283, -0.052100472152233124, -0.04201352596282959, -0.05066609010100365, -0.01665734499692917, -0.0067901816219091415, -0.039167895913124084, 0.030677277594804764, -0.009838243946433067, -0.020601896569132805, -0.0019838435109704733, -0.039630599319934845, 0.015222962014377117, 0.01290944218635559, -0.005789584014564753, -0.00750737264752388, -0.00904008001089096, -0.023031093180179596, -0.006234936881810427, 0.031579550355672836, 0.022961687296628952, 0.02192060276865959, 0.0076982383616268635, 0.045807696878910065, -0.05774546042084694, 0.021839629858732224, -0.0025925885420292616, -0.050203386694192886, 0.0418747141957283, -0.017073778435587883, -2.979447799589252e-06, -0.007380129303783178, 0.015327070839703083, -0.016090532764792442, -0.06274266541004181, -0.008820295333862305, 0.05029592663049698, 0.023563202470541, 0.02018546313047409, 0.006101909093558788, -0.028132405132055283, -0.042198605835437775, 0.0791686549782753, -0.029358569532632828, 0.005572691559791565, 0.004352309741079807, 0.026119641959667206, -0.006524126511067152, 0.0049133384600281715, -0.00023605134629178792, -0.026235317811369896, -0.019965678453445435, -0.06607413291931152, 0.013210199773311615, 0.01715475134551525, -0.0354662649333477, 0.04011644050478935, -0.06237250193953514, 0.01744394190609455, 0.01576663926243782, -0.009213593788444996, 0.03919102996587753, -0.06834138184785843, 0.016506966203451157, -0.04518304765224457, 0.018704809248447418, 0.0012189359404146671, 0.010561219416558743, -0.010595922358334064, 0.031001169234514236, -0.011775817722082138, 0.027623429894447327, 0.0032707389909774065, -0.015639396384358406, 0.025078557431697845, -0.0097572710365057, 0.02408374473452568, 0.009809325449168682, -0.0006253733881749213, -0.0489078164100647, 0.05728275701403618, -0.019051838666200638, -0.020636599510908127, -0.027068184688687325, 0.04388747736811638, 0.010665327310562134, 0.0035136586520820856, -0.036507345736026764, -0.009265648201107979, -0.017027508467435837, -0.03255122900009155, -0.007316507399082184, 0.06653683632612228, 0.010850409045815468, 0.01686556078493595, -0.028664514422416687, -0.0005932010244578123, -0.030677277594804764, -0.04622413218021393, -0.031093711033463478, 0.043008338660001755, -0.020428381860256195, 0.004190363455563784, -0.042291149497032166, -0.0010996450437232852, 0.05876341089606285, 0.00614239601418376, -0.015801342204213142, -0.008056833408772945, 0.029751868918538094, 0.054182641208171844, -0.009005377069115639, 0.004658851306885481, -0.02991381473839283, 0.030191438272595406, -0.03814994543790817, 0.009161539375782013, -0.03421696275472641, 0.0267674271017313, -0.00017893631593324244, -0.03259749710559845, 0.03784918785095215, 0.05973508954048157, 0.00928299967199564, -0.013615066185593605, -0.04923170804977417, 0.02053249068558216, 0.022313902154564857, -0.033939339220523834, 0.0021168708335608244, -0.030283978208899498, 0.01256241463124752, -0.017432374879717827, -0.0034500369802117348, 0.0019780597649514675, -0.005402069538831711, 0.04657116159796715, 0.025564396753907204, 0.002310628304257989, 0.036599889397621155, -0.025633802637457848, 0.02399120293557644, 0.025055423378944397, -0.028548838570713997, -0.009323486126959324, 0.0034760639537125826, 0.01934102736413479, -0.03970000520348549, 0.013927390798926353, -0.04553007706999779, 0.0183115117251873, 0.013476254418492317, -0.0125161437317729, -0.055709563195705414, 0.001265929313376546, -0.03838129714131355, -0.0628352090716362, 0.057097677141427994, -0.04751970246434212, -0.006553045939654112, 0.04506736993789673, 0.02456958405673504, -0.0477510541677475, -0.026096506044268608, 0.01885518804192543, -0.005968881770968437, -0.04273071512579918, -0.025425586849451065, 0.020682869479060173, 0.007403264287859201, -0.010792571119964123, 0.009560622274875641, -0.022892281413078308, -0.023181471973657608, -0.011440357193350792, -0.0019534784369170666, 0.002395939314737916, 0.043471042066812515, 0.03597523644566536, 0.05543194338679314, -0.02561066672205925, 0.029775002971291542, -0.0038693624082952738, 0.005323988385498524, -0.000360945297870785, -0.018230538815259933, -0.028016729280352592, 0.01594015397131443, -0.004927797708660364, -0.001713450881652534, 0.0032476037740707397, -0.020335841923952103, 0.02043995074927807, -0.02942797541618347, -0.006477856542915106, 0.0756058394908905, -0.019815299659967422, -0.03780291974544525, 0.017015939578413963, -0.07158031314611435, 0.030700411647558212, 0.018265241757035255, -0.03479534387588501, -0.06357553601264954, 0.04178217425942421, -0.00451136427000165, 0.0029670896474272013, -0.021781791001558304, 0.014528905972838402, -0.046848781406879425, -0.025749478489160538, 0.004181687720119953, -0.034263234585523605, 0.02269563265144825, 0.007808130234479904, 0.02512482926249504, -0.0005317481118254364, 0.03465653210878372, 0.04317028447985649, 0.0779656246304512, -0.022105684503912926, 0.0407642237842083, 0.02570320852100849, 0.031348198652267456, 0.0159979909658432, -0.020405247807502747, 0.041481416672468185, 0.05159149691462517, -0.030330248177051544, 0.028826460242271423, 0.033245284110307693, -0.0028571973089128733, -0.046594295650720596, -0.0017047751462087035, -0.011561816558241844, 0.005381826311349869, 0.03678496927022934, -0.025772614404559135, -0.02433823235332966, 0.049879495054483414, 0.06926678866147995, -0.06297402083873749, -0.024638989940285683, -0.07949255406856537, 0.06329791247844696, 0.002098073484376073, 0.00689428998157382, 0.024986017495393753, 0.03343036398291588, 0.04210606589913368, 0.0024248582776635885, 0.03747902438044548, -0.06413077563047409, 0.030399654060602188, -0.04166649654507637, -0.015199827030301094, -0.003580172313377261, -0.017536481842398643, -0.0048728515394032, -0.032759442925453186, 0.0273458082228899, -0.025795748457312584, -0.03236614540219307, 0.015720369294285774, 0.012654954567551613, -0.07671632617712021, -0.018323078751564026, -0.023065796121954918, -0.013857985846698284, 0.004956716671586037, 0.005968881770968437, -0.028479432687163353, 0.04756597429513931, -0.02433823235332966, 0.02263779379427433, 0.016032693907618523, 0.029057811945676804, 0.00875088945031166, 0.0489078164100647, 0.012192251160740852, 0.03715513274073601, -0.020659735426306725, -0.0024031689390540123, -0.07417145371437073, -0.058809682726860046, 0.03877459838986397, -0.0008205766789615154, -0.037895459681749344, 0.018288375809788704, -0.04670996963977814, -0.00674969470128417, 0.002541980240494013, 0.03891340643167496, -0.0010107191046699882, -0.010688463225960732, 0.007900671102106571, 0.0015168016543611884, 0.019445136189460754, 0.01064219232648611, 0.04421136900782585, 0.016183072701096535, 0.01798761822283268, -0.06431585550308228, 0.05668124184012413, 0.006107693072408438, 0.03363858163356781, 0.002255682135000825, -0.05385874956846237, -0.013279605656862259, 0.020231733098626137, -0.021214978769421577, 0.053951289504766464, 0.029057811945676804, 0.016125235706567764, -0.0023829257115721703, -0.04622413218021393, 0.004956716671586037, -0.03359231352806091, 0.012666522525250912, 0.01176424976438284, -0.02321617491543293, -0.022765038534998894, -0.01576663926243782, -0.026165911927819252, -0.014043066650629044, -0.009826676920056343, 0.013927390798926353, 0.0003470280207693577, -0.0029873328749090433, -0.02194373868405819, -0.05797681584954262, -0.031834036111831665, 0.006975263357162476, 0.01199560146778822, -0.007223966531455517, 0.006217585410922766, 0.02618904784321785, 0.012238521128892899, -0.04502110183238983, 0.05075863003730774, -0.03144073858857155, 0.03780291974544525, 0.042661309242248535, -0.007287588436156511, -0.0018782891565933824, -0.004948040936142206, -0.0004406532971188426, 0.0020315598230808973, -0.015789775177836418, -0.021353790536522865, 0.02489347569644451, -0.0030075761023908854, 0.03872832655906677, -0.03504982963204384, 0.05075863003730774, 0.011723763309419155, -0.017455508932471275, 0.0026952510233968496, -0.0500645749270916, 4.358184014563449e-05, 0.020717572420835495, -0.009572189301252365, 0.04039406031370163, -0.034725937992334366, 0.0062522878870368, -0.034263234585523605, -0.005818502977490425, 0.023713581264019012, -0.007114074192941189, -0.021411629393696785, -0.0058069354854524136, 0.038126811385154724, 0.001941910944879055, -0.03849697485566139, 0.052193012088537216, -0.017709996551275253, 0.02211725153028965, -0.03470280021429062, 0.018207402899861336, -0.005364474840462208, -0.02286914549767971, -0.019236920401453972, 0.048722732812166214, 0.005199636332690716, -0.01355722825974226, 0.02445390820503235, 0.0007981644594110548, 0.05089744180440903, -0.0064200181514024734, 0.010601705871522427, 0.005511961877346039, 0.007247101981192827, -0.008669916540384293, -0.00965894665569067, 0.029011541977524757, 0.06667564809322357, -0.0008798605995252728, -0.033106472343206406, -0.029543651267886162, 0.01686556078493595, -0.028132405132055283, 0.024130014702677727, -0.025101693347096443, 0.0250091515481472, -0.016958102583885193, 0.025980830192565918, -0.012840036302804947, -0.02344752661883831, -0.006738127209246159, 0.007993211969733238, 0.0002407506835879758, -0.03819621726870537, -0.06084557995200157, 0.06496364623308182, 0.04668683558702469, 0.023401256650686264, 0.030307114124298096, 0.025078557431697845, -0.023193039000034332, -0.05793054401874542, 0.01634502038359642, -0.012689657509326935, -0.010069596581161022, 0.04280012100934982, -0.01721259020268917, -0.012828469276428223, -0.023088930174708366, 0.002511615166440606, 0.0037999567575752735, 0.013094523921608925, -0.020289571955800056, 0.02919662371277809, -0.003522334387525916, -0.02003508433699608, -0.012597116641700268, 0.014170310460031033, -0.01963021792471409, 0.013707607053220272, -0.02850256860256195, -0.055478211492300034, 0.026489805430173874, -0.015604693442583084, 0.01584761217236519, -0.002361236372962594, -0.04247622936964035, 0.0006788735627196729, 0.01732826605439186, -0.024500178173184395, 0.03814994543790817, -0.027045050635933876, -0.019074972718954086, -0.04337850213050842, 0.01792978122830391, -0.04391061142086983, 0.043818071484565735, -0.008438564836978912, -0.06760105490684509, 0.022267630323767662, 0.0019505866803228855, 0.004797662142664194, -0.02030113898217678, -0.02991381473839283, 0.014875934459269047, -0.005957314278930426, -0.0026258453726768494, 0.009508567862212658, 0.022151954472064972, -0.00437544472515583, 0.0018522620666772127, 0.014193445444107056, -0.05270198732614517, -0.010821490548551083, -0.01489906944334507, 0.03791859373450279, -0.0014719772152602673, -0.03972313925623894, -0.0005205420311540365, 0.033129606395959854, -0.0056420969776809216, -0.01135938335210085, -0.001996857114136219, 0.004898878745734692, -0.012122845277190208, -0.004592337645590305, -0.007669319398701191, 0.037085726857185364, -0.029404841363430023, 0.01735140010714531, 0.008363375440239906, 0.006090341601520777, 0.016044262796640396, -0.03192657604813576, -0.0343557745218277, -0.011839439161121845, 0.022880714386701584, -0.01175268180668354, -0.02431509643793106, 0.010405057109892368, -0.026235317811369896, -0.017027508467435837, 0.007137209642678499, 0.030237708240747452, 0.0076461839489638805, 0.02896527200937271, 0.008912836201488972, 0.011006572283804417, -0.0006025996990501881, 0.030422789976000786, 0.027299536392092705, -0.00043089312384836376, -0.0290809478610754, 0.006437369622290134, -0.0255875326693058, 0.007784995250403881, 0.00889548473060131, -0.012307927012443542, -0.003484739689156413, -0.053118422627449036, -0.02956678718328476, 0.0037941730115562677, -0.018646972253918648, 0.028942136093974113, -0.03074668161571026, 0.0029106975998729467, 0.0075189401395618916, 0.02315833605825901, 0.012701225467026234, -0.001498004305176437, 0.01960708387196064, -0.013140793889760971, -0.0007728603086434305, -0.011579168029129505, 0.022186657413840294, -0.042429957538843155, -0.022892281413078308, -0.025286775082349777, -0.022256063297390938, 0.018057024106383324, 0.005708611104637384, 0.01039348915219307, 0.0028080351185053587, -0.029705598950386047, -0.01960708387196064, -0.012863172218203545, -0.03208852559328079, -0.0331990122795105, -0.05205420404672623, -0.024291960522532463, -0.03234301134943962, -0.02979813888669014, 0.013476254418492317, 0.017467075958848, 0.00576066505163908, -0.051036253571510315, 0.00165850471239537, -0.004985635634511709, -0.011081761680543423, -0.0031897658482193947, -0.0250091515481472, -0.016761453822255135, 0.01176424976438284, -0.015095719136297703, -0.019248487427830696, -0.03400874510407448, -0.023540066555142403, 0.0026359669864177704, -0.03336096182465553, 0.005740421824157238, 0.019271623343229294, 0.03400874510407448, 0.03317587822675705, -0.014748690649867058, -0.028363756835460663, 0.04983322322368622, 0.031255654990673065, 0.002170371124520898, 0.0065125590190291405, 0.02806299924850464, 0.0006767046288587153, 0.03715513274073601, 0.00936975609511137, -0.03389307111501694, -0.024592718109488487, -0.018230538815259933, -0.009606892243027687, -0.0018161132466048002, -0.01227322407066822, -0.03280571475625038, 0.04726521670818329, 0.0007634616340510547, 0.005295068956911564, 0.05029592663049698, 0.005477258935570717, 0.022418009117245674, -0.026397263631224632, 0.029404841363430023, 0.01238889992237091, 0.005581367295235395, -0.010231542401015759, 0.050110846757888794, 0.006541477981954813, 0.005587151274085045, 0.0032302525360137224, -0.00293383258394897, -0.010613273829221725, -0.021157141774892807, 0.05409010127186775, 0.023690445348620415, 0.03072354756295681, -0.02572634443640709, 0.03912162408232689, -0.026929374784231186, 0.004242417402565479, 0.019098108634352684, -0.0062522878870368, 0.009242513217031956, -0.013719174079596996, 0.015431178733706474, -0.0032013333402574062, -0.007195047568529844, 0.0100348936393857, 0.0002102049911627546, 0.011822087690234184, -0.0023800337221473455, 0.06274266541004181, -0.034934151917696, 0.0067901816219091415, 0.01703907549381256, -0.018670108169317245, -0.003727659350261092, -0.004196146968752146, -0.006425802130252123, -0.03407815098762512, -0.020463084802031517, -0.017663726583123207, -0.0009058877476491034, 0.015338638797402382, 0.04724207893013954, 0.004459309857338667, 0.011654357425868511, 0.011434572748839855, -0.04296206682920456, -0.0027820079121738672, -0.015639396384358406, 0.028710784390568733, 0.026027102023363113, 0.0012854496017098427, -0.017467075958848, 0.02445390820503235, -0.010416624136269093, 0.0018826270243152976, -0.02817867510020733, -0.004988527856767178, 0.03354604169726372, 0.007183480076491833, -0.023459093645215034, -0.030469059944152832, 0.01088511198759079, -0.007732940837740898, 0.05362739786505699, 0.0031521711498498917, 0.014933772385120392, 0.0021920602302998304, -0.04682564735412598, 0.042314283549785614, -0.0675085186958313, 0.008230348117649555, 0.009994407184422016, -0.017883511260151863, 0.016067396849393845, -0.033800527453422546, -0.00915575586259365, -0.04201352596282959, -0.002406060928478837, 0.016356587409973145, 0.003389307064935565, 0.014980042353272438, 0.02572634443640709, 0.042314283549785614, -0.0006232044543139637, 0.007252885494381189, 0.005040581803768873, 0.00980354193598032, 0.05043473839759827, 0.007796562742441893, 0.012469873763620853, -0.022105684503912926, 0.03713199868798256, 0.023782987147569656, -0.0014864366967231035, -0.01565096341073513, 0.006298558320850134, 0.04689505323767662, -0.010422407649457455, -0.028942136093974113, -0.04256876930594444, -0.006344828754663467, -0.008554240688681602, -0.029844408854842186, -0.02875705435872078, -0.025749478489160538, 0.0038549029268324375, 0.02584202028810978, -0.0100348936393857, -0.03669242933392525, -0.00915575586259365, 0.022302333265542984, -0.012782198376953602, 0.0003979977627750486, 0.006263855844736099, -0.02688310295343399, -0.006171314977109432, 0.028895866125822067, -0.002900575753301382, -0.002064816653728485, 0.0145404739305377, 0.004210606683045626, 0.05843951925635338, 0.012666522525250912, -0.0160211268812418, -0.006217585410922766, 0.02249898388981819, -0.012099710293114185, -0.03537372127175331, -0.011151166632771492, 0.01027781330049038, -0.02792418748140335, -0.02200157567858696, -0.005743313580751419, 0.006460505072027445, 0.013337443582713604, 0.02344752661883831, -0.0056565566919744015, 0.03909849002957344, -0.003085657488554716, -0.012897874228656292, 0.0057693407870829105, 0.008091536350548267, -0.011266842484474182, -0.015581557527184486, -0.006836452055722475, 0.04691818729043007, 0.020393678918480873, 0.02642039954662323, -0.020925790071487427, -0.002599818166345358, 0.010139001533389091, -0.016414424404501915, 0.018496593460440636, 0.02665175125002861, -0.019387299194931984, 0.00824191514402628, -0.005986233241856098, 0.016356587409973145, 0.0354662649333477, 0.002356898505240679, -0.018357781693339348, -0.02512482926249504, 0.02884959615767002, 0.02281130850315094, 0.011469275690615177, 0.011197437532246113, 0.012458305805921555, -0.0075189401395618916, -0.007235534023493528, 0.011064410209655762, -0.01654166914522648, 0.008999593555927277, 0.015546855516731739, 0.021897468715906143, 0.008016346953809261, -0.02896527200937271, -0.0015775315696373582, -0.012065007351338863, 0.03211165964603424, 0.027739105746150017, 0.023898662999272346, -0.043008338660001755, 0.024986017495393753, 0.02873392030596733, -0.033707987517118454, 0.022568387910723686, 0.015384908765554428, 0.012978848069906235, -0.0076635354198515415, 0.015442746691405773, -0.012203818187117577, 0.020856384187936783, -0.03643794357776642, -0.024500178173184395, 0.004687770269811153, -0.003074089763686061, 0.03618345409631729, 0.023031093180179596, 0.004334958270192146, 0.016495399177074432, 0.012874739244580269, 0.005219879560172558, -0.01752491481602192, 0.022036278620362282, 0.0366692952811718, 0.01588231511414051, -0.026674887165427208, -0.014043066650629044, 0.00939867552369833, 0.01204187236726284, 0.02257995679974556, 0.013973661698400974, -0.004742716439068317, -0.03190344199538231, -0.004031308926641941, 0.03127879276871681, -0.0007244209991768003, -0.010081163607537746, 0.00889548473060131, -0.018230538815259933, 0.02526363916695118, 0.04553007706999779, 0.013349010609090328, 0.02136535756289959, 0.005115771200507879, 0.031371332705020905, 0.005159149877727032, 0.007669319398701191, 0.015801342204213142, -0.005980449263006449, 0.025078557431697845, -0.010549651458859444, 0.03285198658704758, -0.03500355780124664, -0.0017047751462087035, -0.035674478858709335, -0.007079371716827154, -0.024176284670829773, 0.04349417984485626, 0.0024957098066806793, -0.02113400585949421, 0.02168925106525421, -0.013441551476716995, 0.030353384092450142, 0.04802867770195007, -0.012816901318728924, -0.023493796586990356, 0.04756597429513931, -0.009930784814059734, -0.02197844162583351, 0.016611075028777122, -0.010775219649076462, 0.0360909141600132, 0.035790156573057175, 0.03340722993016243, 0.018589133396744728, -0.01267809048295021, 0.0331990122795105, 0.019109675660729408, 0.010584354400634766, 0.004184579476714134, 0.02041681483387947, 0.0016238018870353699, -0.0039994977414608, 0.048121217638254166, -0.010110083036124706, 0.0337311215698719, -0.007322291377931833, 0.004398580174893141, -0.02315833605825901, -0.00301046809181571, 0.0033488203771412373, -0.03838129714131355, -0.00936975609511137, -0.01263181958347559, 0.010647976770997047, -0.012539278715848923, -0.008600510656833649, 0.006119260564446449, 0.018265241757035255, 0.009977055713534355, 0.018704809248447418, 0.0013931728899478912, 0.022267630323767662, -0.028433162719011307, 0.047311484813690186, 0.004684878047555685, 0.013372146524488926, 0.015836045145988464, 0.06426958739757538, -0.014818096533417702, -0.023898662999272346, 0.0384044349193573, -0.005558231845498085, 0.01362663321197033, 0.014054634608328342, -0.017490211874246597, 0.04490542411804199, 0.04236055165529251, 0.018947729840874672, -0.009363972581923008, 0.04053287208080292, -0.01267809048295021, -0.018751081079244614, -0.015199827030301094, 0.027160726487636566, 0.013996796682476997, -0.004034200683236122, -0.00866413302719593, 0.006217585410922766, -0.02480093576014042, -0.008560024201869965, 0.03701632097363472, 0.021758656948804855, 0.025171099230647087, 0.009178890846669674, -0.00024852267233654857, 0.0032100090757012367, 0.03620658814907074, 0.036021508276462555, -0.038011133670806885, 0.04992576315999031, -0.03680810332298279, 0.05644989013671875, -0.0160211268812418, -0.024592718109488487, -0.022024711593985558, 0.016472263261675835, 0.026559211313724518, 0.05432145297527313, 0.019688056781888008, 0.02194373868405819, -0.011856790632009506, 0.031718362122774124, 0.029936950653791428, -0.011295761913061142, -0.002572345081716776, 0.018982432782649994, -0.006206017918884754, 0.004326282534748316, 0.0030972249805927277, -0.003467388218268752, -0.028548838570713997, -0.009653162211179733, -0.002498601796105504, -0.008802943862974644, 0.005240123253315687, -0.03442518040537834, -0.005780908279120922, 0.00033256851020269096, -0.030677277594804764, -0.027554024010896683, -0.010219975374639034, -0.012759063392877579, 0.03796486556529999, 0.03535058721899986, 0.009572189301252365, 0.014274419285356998, 0.018184268847107887, 0.022533684968948364, 0.008282401598989964, 0.026327859610319138, 0.00918467529118061, 0.01945670321583748, -0.007709805853664875, -0.003597523784264922, 0.011058625765144825, -0.005043474026024342, 0.017629023641347885, -0.017420805990695953, 0.008583159185945988, -0.012643387541174889, 0.009144187904894352, 0.029150353744626045, -0.04057914391160011, -0.01709691435098648, 0.024731529876589775, 0.027970457449555397, 0.009670513682067394, -0.024361366406083107, -0.0024190745316445827, -0.015234529972076416, 0.02333185076713562, 0.014459501020610332, 0.005740421824157238, -0.04830630123615265, 0.033129606395959854, 0.020682869479060173, 0.020405247807502747, -0.01256241463124752, -0.02537931501865387, 0.01735140010714531, 0.013418416492640972, -0.00700996583327651, 0.0015515044797211885, 0.008999593555927277, -0.023285580798983574, 0.002275925362482667, -0.018438754603266716, -0.03715513274073601, 0.012550846673548222, -0.0056045022793114185, 0.010728949680924416, -0.009641595184803009, 0.011336248368024826, 0.03949178755283356, 0.03285198658704758, 0.00464149983599782, 0.011556033045053482, 0.017073778435587883, -0.024986017495393753, -0.03220419958233833, 0.010052245110273361, -0.013441551476716995, -0.006928992923349142, 0.030769817531108856, -0.0036119832657277584, -0.001037469133734703, -0.0390290841460228, 0.004103606101125479, -0.019445136189460754, 0.02419942058622837, 0.0032302525360137224, -0.00877980887889862, 0.04034779220819473, -0.0010461448691785336, 0.004453526344150305, -0.031163115054368973, -0.0008473267662338912, 0.04226801171898842, 0.029520517215132713, 0.027299536392092705, -0.0076056974940001965, -0.0127937663346529, 0.0032707389909774065, 0.027392078191041946, 0.015986423939466476, 0.010069596581161022, -0.018924593925476074, 0.012597116641700268, 0.018496593460440636, -0.004609688650816679, 0.02468525990843773, 0.03174149617552757, -0.011822087690234184, 0.01986156962811947, -0.022776605561375618, -0.009115269407629967, 0.003221576800569892, -0.005928395316004753, -0.0025810208171606064, -0.010318299755454063, -0.01489906944334507, -0.007050452753901482, -0.03511923551559448, -0.05293333902955055, 0.0001599582319613546, -0.00010609658784233034, -0.013638201169669628, -0.009294566698372364, -0.02093735709786415, 0.04585396870970726, -0.03759470209479332, -0.02072913944721222, -0.016206208616495132, -0.01026624534279108, -0.02257995679974556, 0.016125235706567764, -0.004317606799304485, 0.01607896387577057, -0.036946915090084076, -0.0028514135628938675, 0.0023366552777588367, 0.014748690649867058, 0.002972873393446207, 0.0026128317695111036, -0.002163141267374158, -0.013545660302042961, 0.004953824914991856, -0.02223292738199234, 0.061030659824609756, 0.014239716343581676, -0.007339642383158207, 0.001054820604622364, -0.010665327310562134, -0.012458305805921555, 0.02232546918094158, 0.05404382944107056, -0.029381705448031425, -0.020659735426306725, 0.00563052948564291, 0.009826676920056343, -0.014043066650629044, 0.00876245740801096, -0.03525804728269577, -0.019699623808264732, 0.0366230234503746, 0.009653162211179733, 0.029983220621943474, -0.017432374879717827, -0.012886307202279568, -0.0441882349550724, -0.02043995074927807, -0.04761224240064621, 0.0015601800987496972, -0.007559427060186863, -0.01974589377641678, 0.017686860635876656, -0.02375985123217106, -0.0009781852131709456, 0.014991610310971737, -0.015199827030301094, -0.0038693624082952738, -0.008317104540765285, 0.04048660025000572, -0.013395281508564949, -0.0366230234503746, -0.010514948517084122, 0.030792953446507454, 0.052331823855638504, -0.009416026994585991, -0.008392293937504292, -0.014598311856389046, 0.006952127907425165, -0.018751081079244614, 0.008565808646380901, 0.002017100341618061, -0.03541999310255051, 0.024754665791988373, -0.014228148385882378, 0.015165124088525772, 0.035211775451898575, 0.018346214666962624, 0.005185177084058523, 0.02145789936184883, 0.018010754138231277, 0.009855595417320728, -0.001995411003008485, -0.003221576800569892, 0.0056912596337497234, 0.03002949059009552, -0.005419421009719372, -0.026906238868832588, -0.019479839131236076, 0.011972466483712196, -0.022267630323767662, -0.009930784814059734, -0.013013551011681557, -0.0008147928747348487, -0.010202623903751373, -1.9723662262549624e-05, 0.012007169425487518, 0.021214978769421577, -0.003866470418870449, 0.026165911927819252, 0.009265648201107979, -0.024615854024887085, 0.011041274294257164, -0.006761262658983469, -0.02422255650162697, -0.04458153247833252, -0.004927797708660364, 0.013360578566789627, 0.02783164754509926, -0.017339833080768585, -0.018299944698810577, -0.01351095736026764, -0.014505770988762379, 0.015674099326133728, 0.024060608819127083, -0.011914628557860851, -0.026050236076116562, -0.005459907464683056, 0.0047282567247748375, 0.011324681341648102, 0.04694132134318352, -0.021203411743044853, -0.0065877484157681465, 0.0002317134931217879, 0.013291172683238983, -0.014297554269433022, 0.004991419613361359, -0.0019838435109704733, -0.015199827030301094, 0.015049448236823082, -0.012689657509326935, -0.0013526863185688853, -0.027091320604085922, -0.0005378934438340366, -0.022603090852499008, -0.020636599510908127, 0.012666522525250912, 0.020659735426306725, -0.016009559854865074, -0.02281130850315094, 0.0026634400710463524, 0.046131592243909836, 0.01735140010714531, -0.02512482926249504, 0.025934560224413872, 0.027970457449555397, -0.021504169330000877, 0.010775219649076462, 0.01240046788007021, 0.014725555665791035, 0.012782198376953602, -0.019711190834641457, 0.026790563017129898, 0.03306020423769951, 0.015280799940228462, 0.022603090852499008, 0.006263855844736099, -0.022070981562137604, 0.009751487523317337, -0.023540066555142403, 0.023459093645215034, 0.015257664956152439, 0.0017394779715687037, 0.044766612350940704, 0.028086133301258087, 0.001017225906252861, 0.003088549245148897, -0.03581329062581062, -0.02933543547987938, -0.03690064698457718, -0.02087951824069023, -0.001979505643248558, 0.004971176385879517, 0.0037594700697809458, -0.0028109268750995398, 0.0017105588922277093, -0.003956119529902935, 0.01102970726788044, 0.020544057711958885, 0.03655361756682396, 0.0076635354198515415, -0.035211775451898575, -0.0039098490960896015, 0.006564613431692123, 0.01351095736026764, 0.018762648105621338, -0.007085155230015516, 0.003426901763305068, -0.009901866316795349, 0.02491661161184311, -0.008831863291561604, 0.0056392052210867405, 0.02041681483387947, 0.022151954472064972, -0.01362663321197033, -0.003970578778535128, -0.027739105746150017, 0.010833057574927807, 0.013198631815612316, -0.03710886090993881, -0.03162581846117973, -0.013210199773311615, 0.01594015397131443, -0.055709563195705414, 0.015639396384358406, 0.02335498481988907, 0.03396247699856758, -0.01053808443248272, 0.015893884003162384, 0.022961687296628952, -0.00017730963008943945, 0.022186657413840294, -0.009791973978281021, 0.01937573030591011, 0.010966084897518158, 0.019063405692577362, 0.012053439393639565, 0.024130014702677727, -0.01640285737812519, 0.03236614540219307, -0.02524050511419773, -0.01565096341073513, -0.010081163607537746, 0.028595108538866043, -0.010283596813678741, -0.02783164754509926, -0.014517338946461678, -0.005430988501757383, -0.03791859373450279, -0.011584951542317867, -0.0200697872787714, -0.00513890665024519, 0.013106091879308224, -0.024153150618076324, -0.007102506700903177, 0.020231733098626137, -0.006616667378693819, 0.012550846673548222, 0.03569761663675308, 0.012724360451102257, -0.029960084706544876, 0.008941755630075932, 0.0009977055015042424, -0.007709805853664875, -0.02547185681760311, -0.04212919995188713, 0.010942949913442135, 0.061400823295116425, -0.030075760558247566, 0.019236920401453972, 0.021469466388225555, 0.011712195351719856, 0.015361773781478405, 0.01784880831837654, -0.013857985846698284, 0.01792978122830391, -0.025541262701153755, -0.004499796777963638, 0.0016744101885706186, -0.0412963330745697, -0.04793613776564598, -0.017166318371891975, 0.031232520937919617, 0.004401471931487322, -0.002549209864810109, 0.03657675161957741, -0.027530889958143234, 0.0047109052538871765, -0.03597523644566536, 0.052887070924043655, -0.010908246971666813, -0.010890895500779152, -0.027600295841693878, 0.006315909791737795, -0.029775002971291542, 0.01934102736413479, -0.006824884098023176, -0.00637374771758914, -0.04111125320196152, 0.011469275690615177, -0.006795965135097504, -0.023019524291157722, 0.05432145297527313, -0.008982242085039616, -0.03565134480595589, 0.0010360232554376125, -0.0036293347366154194, 0.021955305710434914, -4.0017798710323405e-06, 0.026119641959667206, 0.0366692952811718, -0.03331468999385834, 0.007374345324933529, -0.016738317906856537, 0.009161539375782013, -0.02116870880126953, 0.012319494970142841, 0.008392293937504292, -0.011949331499636173, -0.025795748457312584, 0.01390425581485033, 0.008912836201488972, 0.02315833605825901, -0.021411629393696785, -0.0014654704136773944, 0.03921416774392128, 0.023146769031882286, -0.026721157133579254, -0.0016700723208487034, 0.008479051291942596, 0.026975644752383232, -0.027160726487636566, -0.0015442746225744486, 0.01228479202836752, -0.03278258070349693, 0.034055016934871674, -0.017339833080768585, 0.023146769031882286, 0.017513347789645195, 0.023806121200323105, 0.017941348254680634, 0.01074051670730114, -0.0033401446416974068, -0.016148369759321213, -0.0032504957634955645, 0.003652469953522086, 0.01752491481602192, -0.00357728055678308, 0.01130732987076044, -0.0007070695864968002, -0.011353599838912487, 0.026350993663072586, 0.06001271307468414, -0.002925157081335783, -0.0197805967181921, -0.01067111175507307, 0.00614239601418376, 0.0032880904618650675, -0.018635405227541924, 0.001668626326136291, 0.0372476726770401, -0.03664615750312805, 0.011914628557860851, 0.05631107836961746, 0.039283569902181625, 0.006240720394998789, 0.0004330620577093214, -0.014216581359505653, -0.006292774807661772, 0.08189861476421356, 0.013950526714324951, 0.04259190708398819, -0.021006762981414795, -0.014517338946461678, 0.008305537514388561, 0.016495399177074432, -0.005023230332881212, 0.03352290764451027, 0.0008111780043691397, -0.014089337550103664, -0.014390095137059689, -0.05483042821288109, 0.01541961170732975, -0.004372552968561649, -0.026813698932528496, -0.004534499254077673, -0.029636193066835403, 0.010977652855217457, -0.007466886192560196, 0.018947729840874672, 0.005477258935570717, 0.003620659001171589, -0.02197844162583351, -0.03412442281842232, -0.005141798406839371, -0.014725555665791035, 0.025865154340863228, 0.01991940848529339, 0.014609879814088345, 0.0413426049053669, -0.008854998275637627, 0.03528118133544922, -0.006367964204400778, 0.006963695399463177, -0.012978848069906235, 0.023632608354091644, 0.015986423939466476, 0.00663401884958148, 0.03701632097363472, -0.002293276833370328, -0.03139446675777435, -0.012342629954218864, 0.023459093645215034, 0.02443077228963375, 0.02746148407459259, -0.03768724203109741, 0.012782198376953602, -0.003473171964287758, -0.012701225467026234, 0.0037797135300934315, -0.028363756835460663, 0.0015963289188221097, 0.026975644752383232, -0.007328074891120195, 0.031232520937919617, -0.006026719696819782, -0.026258453726768494, -0.03611404821276665, -0.010879328474402428, 0.004011065699160099, -0.02873392030596733, -0.006298558320850134, 0.0023221957962960005, 0.029266029596328735], [0.042397983372211456, 0.012879843823611736, 0.05450855568051338, -0.017968041822314262, -0.023188116028904915, 0.03521076962351799, -0.03041929006576538, 0.06277275830507278, 0.026023440062999725, 0.02745209075510502, -0.03415576368570328, -0.007450968027114868, -0.014978863298892975, 0.06998194754123688, -0.018132885918021202, 0.006121222861111164, 0.04853019863367081, -0.006934455130249262, -0.012385310605168343, 0.004192543216049671, -0.014704122208058834, 0.02512229047715664, -0.05503605678677559, -0.010594001039862633, 0.006720157340168953, -0.0477389432489872, 0.01400078646838665, -0.004225512035191059, 0.061190247535705566, -0.06176171079277992, 0.02824334427714348, -0.033100757747888565, 0.013835941441357136, -0.00022648937010671943, -0.03325461596250534, -0.05367334187030792, -0.004285954870283604, -0.003884833538904786, -0.019154921174049377, -0.022484779357910156, 0.010984132997691631, 0.004769498482346535, 0.012132549658417702, -0.022726550698280334, -0.030529186129570007, 0.05688231438398361, -0.0001971264573512599, -0.03329857438802719, 0.030683040618896484, 0.03424368053674698, 0.0005405523115769029, 0.053057923913002014, 0.024858538061380386, 0.0005017452058382332, 0.040090162307024, 0.07824615389108658, -0.017814187332987785, 0.0320017971098423, 0.023715617135167122, -0.019385702908039093, 0.002743285847827792, -0.003013905370607972, 0.03270513191819191, -0.014550267718732357, -0.013319429010152817, 0.034441493451595306, -0.004846425727009773, 0.0439145527780056, -0.02349582500755787, 0.02391343005001545, 0.030529186129570007, 0.014923915266990662, -0.03762848675251007, -0.0321776308119297, -0.028441157191991806, 0.011264368891716003, -0.008511466905474663, 0.001958901295438409, 0.013912868686020374, -0.012824895791709423, -0.010451136156916618, 0.01567121036350727, -0.01912195235490799, 0.034353576600551605, -0.007604822516441345, -0.014967873692512512, -0.01824278198182583, -0.003307878039777279, 0.0003288302686996758, -0.007588338106870651, 0.04545310139656067, 0.025737708434462547, -0.01588001288473606, 0.006901486311107874, 0.017517467960715294, 0.003733726218342781, 0.007214691024273634, -0.03083689697086811, -0.04545310139656067, 0.05187104269862175, 0.01958351768553257, -0.0034150269348174334, -0.0021841884590685368, -0.005615700036287308, 0.0004883516230620444, -0.10022540390491486, -0.03143033757805824, 0.05187104269862175, 0.02433103695511818, 0.009824727661907673, 0.022243008017539978, -0.021693525835871696, -0.03046324849128723, 0.06541026383638382, -0.04494757950305939, 0.005654163658618927, 0.005989347118884325, -0.011072049848735332, 0.01716579869389534, -0.005173367448151112, 0.011638016439974308, -0.030924813821911812, -0.016484441235661507, -0.07521301507949829, 0.0028737876564264297, 0.008132324554026127, -0.049101658165454865, 0.021858369931578636, -0.051431458443403244, -0.009907149709761143, 0.0278696957975626, -0.04725540056824684, 0.1042695939540863, 0.0047063082456588745, -0.00910490658134222, -0.009352173656225204, 0.028858764097094536, 0.0036348195280879736, 0.026638858020305634, -0.019176900386810303, 0.06369588524103165, -0.013572190888226032, 0.005873956251889467, 0.012187497690320015, -0.021220970898866653, 0.020737428218126297, 0.00097532948711887, 0.029979705810546875, -0.04079350084066391, 0.005151388235390186, -0.040265996009111404, 0.003942529205232859, -0.00894006248563528, -0.0401780791580677, -0.006319036241620779, 0.0035551446489989758, 0.009126885794103146, 0.029847830533981323, -0.020023101940751076, 0.01667126640677452, 0.004217269830405712, -0.01520964503288269, 0.010808299295604229, -0.0011133867083117366, 0.015495375730097294, 0.04103527218103409, -0.017396580427885056, 0.038595572113990784, -0.06167379394173622, -0.007088310085237026, -0.005035996902734041, 0.021264929324388504, -0.024089263752102852, 0.0009705215343274176, -0.05503605678677559, -0.021814411506056786, 0.025276144966483116, -0.001410793513059616, 0.015022821724414825, -0.026550941169261932, -0.014495319686830044, 0.03378211706876755, -0.03824390470981598, 0.006731146946549416, -0.03633170947432518, 0.030639082193374634, -0.029759911820292473, -0.01903403550386429, -0.00666520930826664, 0.022484779357910156, 0.007841099984943867, -0.02637510746717453, 0.01720975711941719, 0.02303425967693329, -0.015352509915828705, -0.03061710298061371, -0.03112262673676014, -0.01907799392938614, -0.0002187622885685414, -0.02221003733575344, 0.006258592940866947, -0.052442505955696106, 0.04176058620214462, -0.02345186658203602, 0.006467395927757025, -0.014868966303765774, 0.005365686025470495, -3.8935908378334716e-05, 0.01737460121512413, -0.035232748836278915, 0.03674931451678276, -0.0004533221654128283, -0.01867137849330902, 0.020693469792604446, -0.009159854613244534, 0.0030963276512920856, 0.022352904081344604, -0.004783235490322113, -0.015011832118034363, 0.02283644676208496, -0.07134466618299484, 0.006456406321376562, -0.01924283802509308, -0.026990527287125587, -0.021198991686105728, -0.017220746725797653, -0.04562893509864807, -0.057190023362636566, 0.035100873559713364, -0.060970455408096313, -0.03637566789984703, 0.021605608984827995, -0.006368489470332861, -0.012528175488114357, -0.006352005060762167, -0.010231344029307365, -0.010297281667590141, -0.035188790410757065, -0.015264593064785004, 0.017385590821504593, -0.01962747611105442, 0.009945613332092762, 0.036397647112607956, 0.03290294483304024, 0.012682030908763409, -0.004428820218890905, -0.02483655884861946, -0.031891901046037674, 0.027737820520997047, 0.025429999455809593, 0.04463987052440643, -0.012572134844958782, 0.050728123635053635, -0.019550548866391182, 0.006516849622130394, -0.003101822454482317, -0.025232186540961266, -0.05828898772597313, 0.03962859883904457, -0.009082927368581295, 0.0008949678158387542, -0.022199047729372978, 0.0007665265584364533, 0.04037589207291603, -0.041892461478710175, -0.04057370498776436, 0.0678279846906662, -0.001483599771745503, 0.004241996444761753, 0.029562098905444145, -0.036024000495672226, 0.023605721071362495, 0.0009080180316232145, -0.002347659319639206, -0.045101433992385864, 0.028309281915426254, 0.022814467549324036, -0.02879282459616661, -0.007071825675666332, 0.00355239724740386, -0.06620151549577713, -0.01544042769819498, 0.02316613495349884, -0.03901318088173866, 0.010528063401579857, 0.006824559066444635, 0.04738727584481239, 0.007566358894109726, 0.008714774623513222, 0.028551053255796432, 0.08870827406644821, -0.013297449797391891, 0.03507889434695244, 0.02466072514653206, 0.03387003391981125, 0.010522568598389626, -0.04707956686615944, 0.019638465717434883, 0.02521020732820034, -0.014671153388917446, 0.034771181643009186, 0.0036265773233026266, 0.012154528871178627, 0.011747912503778934, -0.044771745800971985, 0.0358261875808239, 0.021429775282740593, -0.0045579480938613415, -0.028858764097094536, -0.022594675421714783, -0.01607782579958439, 0.060223162174224854, -0.06395963579416275, -0.04650810733437538, -0.028726886957883835, 0.021451754495501518, -0.012495206668972969, -0.025429999455809593, 0.039980266243219376, 0.007599327713251114, 0.026770733296871185, 0.004373871721327305, -0.0002501857525203377, -0.06628943979740143, 0.023715617135167122, -0.012011663056910038, -0.029979705810546875, 0.013242501765489578, 0.0071432581171393394, -0.017891114577651024, -0.04321121796965599, -0.0027322962414473295, 0.007698234636336565, 0.02958407811820507, -0.036265771836042404, -0.0003551023546606302, -0.059695661067962646, 0.016506420448422432, -0.019451642408967018, -0.004805214703083038, -0.019187889993190765, -0.002719932934269309, -0.042024336755275726, 0.02329801209270954, -0.03215565159916878, 0.034397535026073456, 0.05358542501926422, 0.03811202943325043, 0.07376237958669662, 0.037848278880119324, 0.05503605678677559, 0.029715953394770622, -0.047607067972421646, -0.0025660782121121883, -0.038024112582206726, -0.026155315339565277, 0.0519150011241436, 0.007494926452636719, -0.05925607308745384, 0.0028518084436655045, -0.04945332556962967, 0.005365686025470495, 0.0022075416054576635, 0.049980826675891876, 0.021550660952925682, 0.005068965721875429, -0.027012506499886513, -0.00488488981500268, 0.005917914677411318, -3.799148908001371e-05, 0.027012506499886513, -0.0023037006612867117, 0.009676367044448853, -0.01571516878902912, 0.026968548074364662, -0.0031677603255957365, -0.013000729493796825, 0.001435520127415657, -0.05107979103922844, -0.027737820520997047, 0.019363723695278168, 0.010434651747345924, 0.03404586762189865, 0.04769498482346535, -0.018012000247836113, 0.017187777906656265, -0.04492560029029846, 0.009088422171771526, -0.007972975261509418, 0.02828730270266533, -0.01293479185551405, -0.03483711928129196, -0.0033133728429675102, -0.0259575005620718, -0.004241996444761753, 0.035936083644628525, 0.021056126803159714, 0.014022765681147575, -0.008055397309362888, -0.05248646438121796, -0.01825377158820629, -0.041474856436252594, 0.023561762645840645, -0.006500364746898413, -0.00937415286898613, -0.010588506236672401, 0.01106106024235487, 0.01725371554493904, 0.008368602022528648, -0.016440482810139656, 0.01504480093717575, -0.04633226990699768, 0.006549818441271782, 0.03259523585438728, -0.007621306926012039, 0.014275526627898216, -0.02225399762392044, 0.04266173765063286, -0.036024000495672226, -0.018143875524401665, -0.01766033284366131, 0.012110570445656776, 0.0140447448939085, 0.03499097377061844, -0.012682030908763409, 0.02046268805861473, 0.0260893777012825, -0.0011724559590220451, 0.00547008728608489, 0.019297786056995392, 0.006753126624971628, 0.008005944080650806, -0.01073137205094099, 0.031650129705667496, -0.06923465430736542, 0.013110626488924026, -0.04134298115968704, 0.000175404769834131, 0.008802692405879498, -0.002023465232923627, -0.014132661744952202, -0.019099973142147064, 0.03729879856109619, 0.007692739833146334, -0.02270457148551941, -0.005590973421931267, 0.010231344029307365, 0.04101329296827316, -0.029825851321220398, 0.02870490774512291, -0.0015042052837088704, -0.030111581087112427, -0.031276483088731766, -0.01662730798125267, -0.007137763313949108, -0.03712296485900879, -0.007357555907219648, -0.0072916182689368725, 0.055475641041994095, -0.027715841308236122, 0.028682928532361984, 0.0035331654362380505, -0.014638184569776058, 0.02529812417924404, 0.018561482429504395, 0.029650015756487846, 0.03905713930726051, -0.006258592940866947, -0.027056464925408363, -0.041189126670360565, 0.005483824294060469, -0.06404755264520645, 0.012055621482431889, 0.006242108531296253, -0.002729548839852214, -0.013077657669782639, -0.004450799431651831, 0.004184301011264324, -0.008005944080650806, -0.009863191284239292, 0.015088759362697601, 0.028858764097094536, -0.03107866831123829, -0.060179203748703, 0.045189350843429565, 0.012890833429992199, 0.07587239146232605, -0.014308495447039604, -0.0105005893856287, -0.022572696208953857, -0.0279136560857296, 0.011214915663003922, 0.03371617943048477, -0.007923522032797337, 0.014638184569776058, -0.021144043654203415, -0.023935409262776375, -0.022924363613128662, 0.0062640877440571785, 0.007511410862207413, 0.008396076038479805, -0.02866094931960106, 0.01833069883286953, 0.0019231849582865834, -0.0025262406561523676, -0.05921211466193199, -0.012835885398089886, 0.013550211675465107, -0.0019863753113895655, -0.015462406910955906, -0.04112318903207779, 0.010945669375360012, -0.015220634639263153, -0.011846818961203098, -0.0029040093068033457, -0.015099748969078064, -7.96748063294217e-05, 0.01316557452082634, -0.01316557452082634, 0.013923858292400837, -0.014671153388917446, -0.021737484261393547, -0.016649287194013596, -0.013451304286718369, -0.054772306233644485, 0.02079237625002861, 0.021594619378447533, -0.08299367129802704, -0.011363275349140167, -0.0015962434699758887, -0.003838127478957176, -0.039189014583826065, -0.02112206444144249, -0.006033306010067463, -0.02954011969268322, 0.01533053070306778, 0.009632408618927002, 0.04712352529168129, -0.02600145898759365, 0.0031512759160250425, -0.004986543674021959, -0.05129958316683769, -0.01133030652999878, -0.01539646927267313, 0.01903403550386429, -0.0041815536096692085, 0.000627095636446029, 0.009571965783834457, 0.007555369287729263, 0.004005719441920519, -0.034397535026073456, 0.03940880671143532, -0.007577348500490189, -0.0059673679061234, -0.029935747385025024, 0.015847044065594673, 0.03767244517803192, 0.009632408618927002, 0.010050014592707157, 0.019924195483326912, 0.04224412888288498, 0.026880629360675812, 0.021946286782622337, -0.034265659749507904, -0.010912700556218624, 0.008648836985230446, -0.005014017689973116, -0.03294690325856209, 0.01729767397046089, -0.029781891033053398, -0.0359141044318676, 0.036771293729543686, 0.014198599383234978, 0.02024289406836033, 0.06083858013153076, -0.0035661342553794384, 0.013846931047737598, -0.01888018101453781, 0.0074289883486926556, 0.011275358498096466, 0.002531735459342599, 0.0057310909032821655, 0.006308046635240316, -0.006841043476015329, -0.02986980974674225, -0.003854612121358514, -0.026814691722393036, -0.03246336057782173, -0.023803533986210823, 0.024858538061380386, -0.004178806208074093, -0.023232074454426765, 0.011528119444847107, -0.014385422691702843, 0.02362770028412342, 0.04154079407453537, 0.010742361657321453, 0.02600145898759365, -0.02345186658203602, 0.0069454447366297245, 0.015989908948540688, -0.0032776566222310066, -0.004742024466395378, 0.04307934269309044, -0.049892909824848175, -0.012407289817929268, -0.021550660952925682, -0.012231456115841866, 0.02437499538064003, 0.014704122208058834, 0.031891901046037674, -0.0025564623065292835, -0.04442007467150688, -0.030551165342330933, -0.01264906208962202, -0.02158362977206707, -0.04354090616106987, -0.021990245208144188, 0.0013441689079627395, -0.015781106427311897, -0.02925438992679119, 0.023144155740737915, 0.0026457528583705425, -0.05195895954966545, -0.052310630679130554, 0.00426947046071291, -0.0012912813108414412, -0.029715953394770622, 0.019396694377064705, -0.022188058122992516, -0.01081379409879446, 0.0017583405133336782, -0.024682704359292984, -0.0034205217380076647, -0.019726382568478584, 0.008429044857621193, 0.02841917797923088, -0.03041929006576538, 0.0007211943157017231, 0.029935747385025024, 0.026572920382022858, 0.030441269278526306, 0.028595011681318283, -0.06171775236725807, 0.04406840726733208, 0.04066162183880806, 0.01858346164226532, 0.001658060122281313, 0.01867137849330902, -0.03083689697086811, 0.00958295539021492, 0.014297505840659142, -0.02545197866857052, -0.024616766721010208, -0.005280516110360622, -0.014539278112351894, -0.03907911852002144, 0.01646246202290058, -0.010973143391311169, 0.04261777922511101, -0.027100423350930214, 0.03257325664162636, 0.03879338875412941, 0.002314690500497818, 0.015814075246453285, 0.029144493862986565, 0.005972862709313631, -0.010214859619736671, -0.02149571292102337, -0.01029178686439991, 0.0635640099644661, 0.0034727223683148623, -0.015616261400282383, -0.037892237305641174, 0.0021992994006723166, -0.03338649123907089, -0.01966044493019581, 0.031562212854623795, 0.008192767389118671, 0.043431010097265244, -0.016110794618725777, 0.01197869423776865, -0.0030413796193897724, 0.02274852991104126, 0.03932088986039162, -0.024528849869966507, -0.0170888714492321, -0.022473789751529694, 0.010214859619736671, 0.01704491302371025, -0.007088310085237026, 0.015011832118034363, -0.01641850359737873, 0.011561088263988495, 0.04048578813672066, 0.030265435576438904, -0.026309169828891754, -0.005621194839477539, 0.011824839748442173, -0.029430223628878593, -0.013264480978250504, 0.011225905269384384, -0.013297449797391891, -0.04874999076128006, -0.01583605445921421, -0.0238694716244936, -0.024353016167879105, -0.006879507098346949, 0.03470524400472641, -0.0017061397666111588, -0.01671522483229637, -0.005046986509114504, -0.040815480053424835, -0.01356120128184557, -0.015154697000980377, 0.028573032468557358, 0.0032639196142554283, 0.014594226144254208, 0.013945837505161762, 0.007286123465746641, -0.015737148001790047, 0.024990413337945938, -0.016737204045057297, 0.005217325873672962, 0.02954011969268322, -0.01895710825920105, -0.010352229699492455, 0.0010289038764312863, 0.003244687570258975, 0.039145056158304214, 0.053805217146873474, -0.02367165870964527, -0.002887524664402008, 0.018814243376255035, -0.0803561583161354, 0.04406840726733208, -0.04567289352416992, 0.013857920654118061, -0.004503000061959028, -0.009027979336678982, -0.0047227926552295685, -0.05288209021091461, -0.005272273905575275, -0.02221003733575344, -0.00710479449480772, 0.016803141683340073, 0.010907205753028393, 0.007687245029956102, -0.002671853406354785, -0.012901823036372662, 0.0025990470312535763, 0.005621194839477539, 0.002728175139054656, -0.00431342888623476, 0.031694088131189346, -0.01979232020676136, 0.021231960505247116, -0.00688500190153718, -0.006786095444113016, 0.019781330600380898, 0.005035996902734041, -0.009445585310459137, 0.0008956546662375331, 0.0062311189249157906, 0.002294084755703807, -0.01762736402451992, -0.076180100440979, -0.01962747611105442, -0.008077376522123814, -0.03850765526294708, -0.018594451248645782, 0.006269583012908697, 0.002246005227789283, 0.03855161368846893, 0.0159569401293993, -0.04132100194692612, -0.014572246931493282, -0.01841861568391323, 0.009571965783834457, -0.00688500190153718, 0.03103470988571644, -0.004796972498297691, -0.01588001288473606, 0.027320215478539467, -0.009462069720029831, -0.030507206916809082, 0.0026223999448120594, 0.005829997826367617, 0.0067586214281618595, 0.0479147769510746, -0.0319138802587986, 0.01020936481654644, 0.037276819348335266, -0.016055846586823463, -0.043980490416288376, -0.008725764229893684, 0.027320215478539467, -0.0028105974197387695, -0.007203700952231884, -0.0012802917044609785, 0.0034699749667197466, 0.026638858020305634, -0.021133054047822952, 0.015638241544365883, 0.06453109532594681, -0.014253547415137291, -0.027847716584801674, 0.011791870929300785, -0.01671522483229637, -0.007615812122821808, 0.002567451912909746, -0.01520964503288269, 0.03158419206738472, 0.012693020515143871, -0.008121334947645664, -0.00255234120413661, 0.002538603963330388, 0.013693076558411121, -0.018594451248645782, -0.007494926452636719, 0.01971539296209812, -0.019946174696087837, 0.001887468621134758, 0.014792039059102535, 0.06228921189904213, 0.029781891033053398, 0.00966537743806839, -0.007989459671080112, -0.02986980974674225, 0.007731203455477953, 0.03112262673676014, 0.02828730270266533, 0.02479260042309761, -0.009989571757614613, -0.04470580816268921, -0.016011888161301613, -0.030573144555091858, -0.024902496486902237, 0.048398323357105255, 0.0030303900130093098, 0.03061710298061371, 0.018440594896674156, -0.021023157984018326, -0.013055678457021713, 0.002849061042070389, 0.05138750001788139, 0.03674931451678276, 0.01420958898961544, -0.04738727584481239, 0.025847604498267174, 0.00433266069740057, -0.037936195731163025, -0.006253098137676716, 0.012583124451339245, -0.006209139712154865, -0.03046324849128723, 0.008687300607562065, -0.022188058122992516, 0.010808299295604229, -0.012055621482431889, -0.0034067847300320864, -0.013132605701684952, -0.00853894092142582, 0.0476510263979435, -0.005868461448699236, 0.005162377841770649, -0.0015495375264436007, -0.015264593064785004, 0.018012000247836113, 0.036397647112607956, 0.029606057330965996, -0.011747912503778934, 0.011137988418340683, -0.010698403231799603, -0.004159574396908283, -0.013945837505161762, 0.039276931434869766, 0.015583292581140995, 0.0013922485522925854, 0.006313541438430548, -0.049057699739933014, -0.0017899356316775084, 0.03606795892119408, 0.01464917417615652, -0.014297505840659142, 0.013341408222913742, -0.006923465523868799, 0.015506365336477757, 0.039650578051805496, -0.003283151425421238, 0.025012392550706863, -0.012791926972568035, 0.04028797522187233, -0.0027226803358644247, 0.006467395927757025, -0.009275246411561966, -0.017264705151319504, -0.0008736754534766078, 0.020100029185414314, -0.018352678045630455, -0.07688343524932861, 0.0034370061475783587, -0.04642019048333168, -0.005096440203487873, -0.01803397946059704, 0.014868966303765774, -0.011561088263988495, 0.0036677883472293615, 0.01160504762083292, -0.00579153373837471, 0.008198262192308903, 0.017308663576841354, -0.03641962632536888, -0.032727111130952835, 0.06162983551621437, -0.01420958898961544, -0.00479147769510746, 0.037518590688705444, 0.011385254561901093, 0.013341408222913742, 0.04292548820376396, 0.014022765681147575, 0.009319204837083817, 0.0012102327309548855, 0.023759575560688972, 0.027518028393387794, 0.03145231679081917, 0.0140447448939085, 0.015770116820931435, -0.011192936450242996, -0.010692908428609371, 0.030309394001960754, 0.009225793182849884, 0.05011270195245743, 0.0011394870234653354, -0.010280797258019447, -0.0021896834950894117, -0.00994011852890253, 0.01783616654574871, -0.021407796069979668, 0.003181497333571315, 0.006747631821781397, -0.018154865130782127, -0.03828786313533783, 0.004720045253634453, 0.03525472804903984, 0.031188564375042915, 0.01412167213857174, 0.007637791335582733, 0.00818727258592844, 0.02912251465022564, -0.034067846834659576, 0.037188902497291565, 0.00011101241398137063, 0.01064895000308752, -0.01181385014206171, 0.018473565578460693, 0.0006185100064612925, -0.012264424934983253, 0.03949672356247902, 0.003711746772751212, -0.00392879219725728, 0.029320327565073967, -0.018231792375445366, 0.01724272593855858, 0.02795761451125145, 0.01783616654574871, -0.03307877853512764, 0.03569431230425835, 0.018968097865581512, -0.021231960505247116, 0.0021031401120126247, 0.03976047411561012, 0.022319935262203217, -0.03125450387597084, 0.01770429126918316, -0.04024401679635048, -0.016319597139954567, -0.005846482235938311, 0.0029617047403007746, -0.023649679496884346, 0.020781386643648148, 0.007000393234193325, 0.048222485929727554, -0.002663611201569438, 0.04338705167174339, 0.022396862506866455, -0.029056577011942863, 0.005217325873672962, 0.006846538279205561, 0.03995828703045845, -0.004184301011264324, 0.007731203455477953, 0.011203926056623459, 0.009192823432385921, 0.049101658165454865, 0.036639418452978134, 0.016506420448422432, -0.0035798712633550167, 0.008110345341265202, 0.011039081029593945, -0.001150476629845798, -0.012682030908763409, -0.0019382956670597196, -0.007989459671080112, 0.00015291037561837584, -0.008005944080650806, 0.027408132329583168, -0.037606507539749146, -0.008286179974675179, 0.003236445365473628, -0.03837577998638153, -0.009352173656225204, 0.03367222100496292, -0.028551053255796432, -0.013780993409454823, 0.02433103695511818, -0.03470524400472641, 0.005288758315145969, -0.031144605949521065, -0.006027810741215944, 0.019946174696087837, 0.046859774738550186, 0.014682142995297909, 0.020385760813951492, -0.014055734500288963, 0.022100141271948814, 0.008643342182040215, 0.021638577803969383, -0.018737316131591797, 0.03507889434695244, -0.015847044065594673, -0.013308439403772354, -0.010390693321824074, 0.01437443308532238, 0.0278696957975626, -0.021770453080534935, 0.01958351768553257, -0.00702237244695425, 0.0004979675286449492, -0.011159967631101608, -0.016759183257818222, -0.011495150625705719, 0.011083039455115795, 0.00814331416040659, -0.00503050209954381, -0.022199047729372978, -0.008846650831401348, -0.011572077870368958, -0.002166330348700285, -0.008951052092015743, 0.055475641041994095, -0.06154191866517067, 0.020858313888311386, -0.015847044065594673, 0.0034479957539588213, 0.0012864733580499887, -0.012220466509461403, 0.0029864313546568155, -0.01862742006778717, -0.0027886182069778442, -0.010517073795199394, -0.015143707394599915, -0.01456125732511282, 0.020154977217316628, 0.0012912813108414412, -0.02367165870964527, 0.00814880896359682, 0.022902384400367737, 0.015583292581140995, -0.0119347358122468, 0.02470468357205391, 0.01062696985900402, 0.020484667271375656, -0.0019877490121871233, -0.0042145224288105965, 0.014363443478941917, -0.008973031304776669, -0.021561650559306145, 0.016572359949350357, -0.032683152705430984, -0.003978245425969362, -0.011868798173964024, 0.006830053869634867, -0.005294253118336201, -0.025012392550706863, 0.01625365950167179, -0.02912251465022564, 0.02288040518760681, -0.010187385603785515, -0.0009492291137576103, 0.023803533986210823, 0.021473733708262444, -0.02400134690105915, 0.009049958549439907, 0.021023157984018326, 0.04853019863367081, -0.0007266891770996153, 0.01683611050248146, -0.005621194839477539, -0.0007369919330812991, 0.01641850359737873, 0.03936484828591347, 0.007439977955073118, 0.020363781601190567, -0.02016596682369709, 0.00550855090841651, 0.014077713713049889, -0.004783235490322113, 0.03707900643348694, -0.005637679249048233, -0.0023435382172465324, 0.011242389678955078, -0.041233085095882416, 0.007621306926012039, 0.006670704111456871, 0.008159798569977283, -0.014253547415137291, -0.008407065644860268, -0.03125450387597084, -0.01356120128184557, 0.011945725418627262, -0.04945332556962967, 0.0029836839530617, 0.0014004907570779324, 0.013341408222913742, -0.014517298899590969, 0.02024289406836033, 0.006841043476015329, -0.008962041698396206, -0.003975498024374247, -0.0437387190759182, -0.030265435576438904, -0.01172593329101801, 0.02925438992679119, 0.0004107373533770442, -0.033848054707050323, -0.06602568179368973, -0.010665434412658215, -0.016429493203759193, 0.006335520651191473, 0.00021189377002883703, 0.006253098137676716, -0.011802860535681248, -0.017726270481944084, 0.008159798569977283, 0.011440202593803406, 0.061893586069345474, -0.022572696208953857, -0.0035826186649501324, 0.02600145898759365, 0.014187609776854515, -0.010522568598389626, 0.016781162470579147, 0.04690373316407204, 0.006203644908964634, 0.02553989551961422, 0.02266061305999756, 0.029056577011942863, -0.002195178298279643, 0.023056238889694214, -0.02962803654372692, -0.007286123465746641, 0.03024345636367798, -0.012099580839276314, -0.0058794510550796986, -0.013715055771172047, -0.006341015454381704, -0.03874942660331726, 0.01937471330165863, -0.01112699881196022, -0.017594395205378532, -0.013143595308065414, -0.001800925238057971, 0.010445641353726387, -0.04092537611722946, 0.02058357372879982, 0.011692964471876621, -0.011072049848735332, -0.0004811396647710353, 0.003816148266196251, 0.05727794021368027, -0.033276595175266266, -0.022968322038650513, -0.01624266989529133, 0.023693637922406197, 0.03204575553536415, -0.017220746725797653, -0.006352005060762167, 0.010039024986326694, 0.007918027229607105, 0.00018373284547124058, 0.007846594788134098, -0.03103470988571644, -0.033650241792201996, 0.018275750800967216, -0.04813456907868385, 0.022177068516612053, 0.0340898260474205, -0.018891170620918274, -0.00841805525124073, 0.02046268805861473, 0.05534376576542854, -0.0010742361191660166, -0.007593832910060883, -0.05020062252879143, -0.016902048140764236, 0.0007830109680071473, -0.00526952650398016, -0.01364911813288927, 0.008753239177167416, 0.007929016835987568, -0.00997858215123415, 0.016275638714432716, -0.0033271098509430885, -0.006143202073872089, 0.016154753044247627, 0.013495263643562794, 0.022188058122992516, 0.00048423049156554043, 0.0045744325034320354, 0.048310406506061554, 0.016660276800394058, 0.011176452040672302, 0.015858033671975136, -0.013923858292400837, 0.005079955328255892, -0.05653064697980881, 0.005599215626716614, 0.016902048140764236, 0.04655206575989723, 0.03441951423883438, -0.015539334155619144, -0.0057310909032821655, 0.048486240208148956, 0.00941811129450798, 0.006676198914647102, 0.015967929735779762, -0.029386265203356743, 0.019825289025902748, 0.003165012924000621, 0.024550829082727432, 0.01767132245004177, -0.014407401904463768, -0.005211831070482731, -0.006505860015749931, 0.01591298170387745, 0.01320953294634819, -0.010302776470780373, -0.00477224588394165, 0.020176956430077553, -0.0006817003595642745, 0.021770453080534935, -0.01073137205094099, 0.015418448485434055, 0.027144381776452065, -0.028397198766469955, -0.0007562238024547696, 0.01017090119421482, 0.04178256541490555, -0.021473733708262444, -0.028968660160899162, 0.009401626884937286, 0.05354146659374237, -0.0016154752811416984, -0.0008049902389757335, 0.03184794262051582, 0.016110794618725777, -0.017814187332987785, 0.03371617943048477, 0.008429044857621193, -0.020198935642838478, -0.009808243252336979, -0.011044575832784176, 0.03787025809288025, 0.003585366066545248, 0.01481401827186346, 0.017319653183221817, 0.013989796862006187, 0.020143987610936165, 0.0037941690534353256, -0.006071769632399082, 0.02861699089407921, -0.010121447034180164, 0.012462237849831581, 0.025408020243048668, 0.011275358498096466, -0.0015289320144802332, -0.00038841465720906854, -0.013715055771172047, -0.037650465965270996, -0.05169520899653435, -0.009341184049844742, -0.02188034914433956, -0.015803085640072823, 0.006835548672825098, -0.024902496486902237, 0.006379479076713324, 0.03237544372677803, 0.009874180890619755, -0.004846425727009773, 0.01356120128184557, -0.01749548688530922, -0.01441839151084423, -0.020891282707452774, 0.020990189164876938, 0.0006621250649914145, -0.011670985259115696, 0.015550323761999607, 0.0209132619202137, -0.0017913093324750662, 0.02008903957903385, -0.015374490059912205, 0.000495563552249223, 0.016143763437867165, 0.004140342585742474, -0.013945837505161762, -0.012484217062592506, -0.02782573737204075, 0.024243120104074478, 0.011550098657608032, -0.03340847045183182, 0.005346454214304686, 0.014198599383234978, 0.04215621203184128, -0.04259580001235008, -0.014319485053420067, 0.02488051727414131, 0.028529074043035507, -0.012989739887416363, 0.0059673679061234, 0.022319935262203217, -0.03683723136782646, 0.02053961530327797, 0.017484497278928757, 0.01481401827186346, -0.003354583866894245, -0.008720269426703453, -0.003154023317620158, 0.03145231679081917, -0.0189131498336792, 0.03428763896226883, -0.009528007358312607, -0.030353352427482605, 0.014912925660610199, 0.00618716049939394, -0.024221140891313553, -0.03628775104880333, -0.003964508417993784, -0.015737148001790047, -0.028770845383405685, -0.01556131336838007, -0.03736473619937897, -0.0120226526632905, -0.004349145106971264, -0.009692851454019547, 0.01824278198182583, 0.03674931451678276, 0.009242277592420578, 0.00177619862370193, 0.03367222100496292, 0.029188452288508415, -0.04690373316407204, 0.004777740687131882, 0.015473396517336369, -0.022858425974845886, -0.03488107770681381, -0.013242501765489578, 0.02553989551961422, 0.01766033284366131, -0.01707788184285164, 0.005351949017494917, 0.03461732715368271, 0.013748024590313435, -0.017099861055612564, 0.042266108095645905, 0.0010495095048099756, 0.007654275745153427, 0.02833126112818718, 0.015682199969887733, -0.02125393971800804, -0.05327771604061127, -0.032089713960886, -0.002061928855255246, 0.006209139712154865, 0.03334253281354904, -0.03154023364186287, 0.006731146946549416, -0.002751528052613139, 0.002849061042070389, -0.023341970518231392, 0.012802916578948498, -0.013484274037182331, -0.02088029310107231, -0.035650353878736496, -0.02516624890267849, -0.05028853937983513, -0.01674819365143776, 0.014967873692512512, 0.006505860015749931, -0.009126885794103146, 0.02870490774512291, 0.019067004323005676, -0.017902104184031487, 0.031100647523999214, -0.028199385851621628, -0.037232860922813416, 0.03257325664162636, -0.03929891064763069, 0.03283700719475746, 0.011181946843862534, 0.012220466509461403, 0.01472610142081976, -0.01833069883286953, -0.0025495938025414944, 0.0006167928804643452, 0.012967760674655437, -0.015770116820931435, -0.0085004772990942, -0.002967199543491006, -0.007571853697299957, -0.025100311264395714, 0.022902384400367737, 0.0178691353648901, 0.01849554479122162, -0.04074954241514206, -0.0008276563603430986, 0.015088759362697601, 0.020605552941560745, 0.005808018613606691, 0.01495688408613205, 0.004838183522224426, 0.017891114577651024, -0.0008152930531650782, 0.011736922897398472, 0.004013961646705866, -0.014835997484624386, 0.03112262673676014, -0.01862742006778717, 0.03167210891842842, 0.0021841884590685368, -0.007033362053334713, 0.012088591232895851, -0.01017090119421482, 0.0014794786693528295, -0.002849061042070389, -0.04663998261094093, 0.02516624890267849, 0.028133448213338852, 0.006906981114298105, -0.0010110457660630345, 0.004500252660363913, 0.018605440855026245, 0.02241884171962738, 0.049101658165454865, -0.004101878497749567, -0.0071267737075686455, -0.02582562528550625, 0.012286404147744179, -0.012583124451339245, -0.022199047729372978, -0.000578329199925065, 0.057014189660549164, -0.036683376878499985, 0.004156826995313168, 0.03171606734395027, 0.05987149477005005, -0.008648836985230446, 0.0040579200722277164, -0.018264761194586754, -0.02483655884861946, 0.08044407516717911, 0.028968660160899162, 0.03888130560517311, -0.017275694757699966, -0.027100423350930214, -0.0011078919051215053, 0.027144381776452065, -0.012627082876861095, 0.01141822338104248, -0.024594787508249283, 0.008907093666493893, -0.011231400072574615, -0.04444205388426781, 0.01704491302371025, 0.02633114904165268, -0.03424368053674698, 0.016473451629281044, -0.012341352179646492, -0.002237763023003936, -0.02079237625002861, 0.047475192695856094, 0.009000505320727825, -0.020132998004555702, -0.019473621621727943, -0.014077713713049889, 0.0321776308119297, -0.005121166817843914, 0.02216607891023159, 0.008698290213942528, 0.030990751460194588, 0.053805217146873474, -0.014912925660610199, 0.00309358024969697, -0.017440538853406906, -0.011039081029593945, -0.008088366128504276, 0.004942585248500109, -0.003931539598852396, -0.0005563499289564788, 0.028507094830274582, 0.04094735532999039, -0.05899232253432274, 0.00166630232706666, -0.0004533221654128283, 0.03228752687573433, -0.010566527023911476, -0.025386041030287743, 0.001300897216424346, -0.01762736402451992, -0.025605833157896996, 0.038639530539512634, -0.016132773831486702, -0.011341296136379242, 0.01560527179390192, -0.01867137849330902, 0.0129787502810359, -0.0399143286049366, -0.011517129838466644, -0.009725821204483509, -0.030595123767852783, 0.02861699089407921, -0.0300896018743515, 0.02245181053876877, 0.00618716049939394, 0.027386153116822243], [0.04437895119190216, 0.028543733060359955, 0.04165569692850113, 0.05020368844270706, -0.0498758889734745, 0.03247732296586037, -0.008119330741465092, 0.001908484031446278, 0.0299557913094759, 0.033788517117500305, 0.02773684449493885, -0.04634574428200722, -0.0003214952303096652, 0.0316956490278244, -0.026728231459856033, -0.04440416395664215, 0.005181746557354927, 0.016768183559179306, -0.003968259785324335, -0.005462266970425844, 0.007343959994614124, 0.02207600697875023, -0.045740578323602676, 0.03391459584236145, -0.024269739165902138, -0.02587090991437435, 0.036864787340164185, 0.04309296980500221, -0.0031456102151423693, -0.015999116003513336, 0.03953760862350464, -0.026400431990623474, 0.008642548695206642, -0.019151030108332634, 0.001540497993119061, -0.007867177948355675, -0.016465598717331886, -0.008453433401882648, 0.007778923958539963, 0.004671136848628521, -0.013351508416235447, 0.041176605969667435, 0.05143923684954643, -0.027610767632722855, 0.012859809212386608, 0.023198086768388748, 0.004151070956140757, -0.030107082799077034, -0.03086354210972786, 0.027509905397892, -0.008396699093282223, 0.018470216542482376, 0.013830599375069141, 0.004608098417520523, 0.0009550299728289247, 0.036839570850133896, -0.03300684317946434, 0.008251710794866085, 0.02587090991437435, -0.019756197929382324, -0.03154435753822327, -0.008396699093282223, -0.024622753262519836, -0.0023765431251376867, 0.02776205912232399, 0.015936078503727913, 0.0024474612437188625, 0.06354258954524994, -0.0176002886146307, 0.005531609058380127, 0.023929331451654434, 0.00625970121473074, -0.01109473779797554, -0.01675557531416416, -0.019844451919198036, -0.03383895009756088, -0.01524265669286251, 0.03295641392469406, 0.014587058685719967, 0.017486819997429848, -0.00958181917667389, -0.0213321540504694, 0.015507417730987072, -0.025492681190371513, 0.03504928573966026, -0.012714821845293045, -0.020575694739818573, 0.03981497883796692, -0.020500048995018005, 0.005143923684954643, -0.006732488516718149, 0.0410253144800663, -0.04435373470187187, 0.028821103274822235, 0.0056734452955424786, 0.010458051227033138, 0.027308182790875435, -0.06258440762758255, 0.04677440598607063, 0.017310312017798424, -0.0021496054250746965, -0.027862921357154846, 0.0028083554934710264, 0.035326652228832245, 0.016742967069149017, -0.0524478517472744, -0.0181802399456501, 0.005900382995605469, 0.015961293131113052, -0.023361986503005028, -0.021483445540070534, -0.051338378340005875, -0.019680552184581757, 0.07746144384145737, -0.0006863292655907571, -0.024975767359137535, -0.0029801346827298403, -0.017348134890198708, 0.013477584347128868, 0.0410253144800663, 0.012097046710550785, 0.0006579620530828834, -0.00457973126322031, -0.08432000875473022, -0.012172692455351353, 0.005761698819696903, -0.008945132605731487, -0.012393326498568058, -0.026703016832470894, -0.0032118004746735096, -0.005528457462787628, -0.014650097116827965, 0.03230081498622894, -0.06702230125665665, -0.05789435654878616, -0.05219569802284241, -0.05486851930618286, -0.040596652776002884, -0.06429904699325562, 0.017133804038167, 0.005310975015163422, 0.00621872628107667, 0.0673753172159195, 0.021962536498904228, -0.06717359274625778, -0.013464977033436298, -0.04062186926603317, 0.05496938154101372, 0.045538853853940964, 0.0003658190253190696, -0.062483545392751694, 0.06908995658159256, -0.03605789691209793, -0.010357189923524857, -0.04039493203163147, 0.010363493114709854, -0.024912727996706963, 0.005623014643788338, -0.0018265341641381383, 0.007507859263569117, 0.034746699035167694, 0.005443355534225702, -0.008774928748607635, 0.027988996356725693, 0.01836935617029667, -0.01883583888411522, -0.06601368635892868, 0.02515227347612381, -0.03451976180076599, 0.010609342716634274, -0.025530504062771797, -0.012078134343028069, -0.05950813740491867, -0.026324786245822906, -0.027560336515307426, -0.068535216152668, -0.015520025044679642, 0.026652585715055466, 0.0079239122569561, -0.03537708520889282, -0.0022741060238331556, 0.03023315966129303, -0.02438320778310299, -0.009480957873165607, 0.012815682217478752, 0.04064708575606346, 0.009134246967732906, -0.004686896223574877, -0.03270426020026207, 0.008592117577791214, -0.05234698951244354, -0.019188852980732918, 0.03736909478902817, 0.03214952349662781, -0.024395814165472984, 0.00656858878210187, -0.005616710986942053, -0.026703016832470894, 0.03419196233153343, -0.020298326388001442, 0.017587680369615555, -0.06848479062318802, 0.0037034989800304174, -0.027005599811673164, -0.006202966906130314, -0.018243279308080673, -0.024837082251906395, 0.025606149807572365, 0.026022203266620636, -0.0038800062611699104, 0.011416233144700527, -0.03194780275225639, -0.035604022443294525, 0.041453972458839417, -0.005541064776480198, -0.003123546950519085, 0.013843206688761711, 0.003060508519411087, 0.014524020254611969, -0.01558306347578764, -0.035629235208034515, 0.04543799161911011, 0.07050201296806335, -0.02081524021923542, -0.031065264716744423, -0.005531609058380127, -0.013061531819403172, -0.06873694062232971, -0.02372760884463787, -0.06434947997331619, -0.016465598717331886, 0.03081311285495758, -0.007413302082568407, -0.04110096022486687, -0.0243579912930727, 0.018571076914668083, 0.006228181999176741, -0.04808560013771057, 0.03956282511353493, 0.038705505430698395, -0.006451968103647232, -0.020008349791169167, -0.009424223564565182, -0.005843648687005043, 0.0011937874369323254, 0.01633952185511589, 0.0032716868445277214, -0.04990110546350479, 0.03368765860795975, 0.02531617321074009, 0.003092027734965086, 0.008831663057208061, 0.057490911334753036, -0.07135933637619019, 0.0033756999764591455, 0.01418361347168684, 0.041176605969667435, -0.0543137826025486, 0.06722402572631836, -0.02935062348842621, 0.021382585167884827, 0.01128385215997696, -0.024887513369321823, -0.021206077188253403, -0.03421717882156372, -0.014612273313105106, -0.006745096296072006, -0.04596751555800438, -0.028316795825958252, 0.028896749019622803, -0.012721125036478043, 0.049522873014211655, -0.014309690333902836, 0.019516652449965477, -0.047656942158937454, 0.05960899963974953, -0.01738595776259899, -0.0069216033443808556, -0.01570913940668106, 0.016869043931365013, -0.09344794601202011, -0.02748469077050686, 0.03144349530339241, -0.03784818574786186, 0.022731604054570198, 0.005150227807462215, 0.012481579557061195, -0.0008084659348241985, -0.008617333136498928, 0.022857680916786194, 0.057188328355550766, -0.025996986776590347, -0.026400431990623474, -0.0005251877009868622, -0.006574892904609442, 0.03391459584236145, 0.027560336515307426, -0.0034166749101132154, -0.035931821912527084, -0.0069405147805809975, -0.005206962116062641, 0.03880636766552925, -0.021949930116534233, 0.0011339010670781136, -0.037167370319366455, 0.026728231459856033, 0.01633952185511589, -0.015078756958246231, -0.0006989369285292923, 0.0062912204302847385, -0.014675311744213104, 0.03141827881336212, -0.008258014917373657, 0.004731023218482733, -0.04231129586696625, -0.007053983863443136, 0.007343959994614124, -0.023248517885804176, 0.026324786245822906, 0.02004617266356945, 0.05159052833914757, -0.022908112034201622, 0.008371483534574509, -0.030157513916492462, 0.017789402976632118, 0.016906866803765297, -0.011504486203193665, 0.019428398460149765, -0.002278833882883191, -0.025366604328155518, -0.0181802399456501, -0.01372973807156086, 0.026324786245822906, -0.04044536128640175, 0.015179618261754513, 0.011113649234175682, -0.003359940368682146, 0.021155647933483124, -0.011952058412134647, -0.061777517199516296, -0.02048744075000286, 0.022454235702753067, -0.003996626939624548, 0.061525363475084305, -0.02993057668209076, 0.04785866290330887, 0.001304104458540678, 0.005355102010071278, 0.04513540863990784, 0.068989098072052, -0.008592117577791214, 0.026425648480653763, -0.036259621381759644, -0.0035112323239445686, -0.05744048207998276, 0.03419196233153343, -0.010250024497509003, 0.0004184166027698666, -0.04064708575606346, 0.04372335225343704, -0.020058780908584595, -0.02347545698285103, 0.051061008125543594, 0.06540852040052414, 0.00616514403373003, 0.018445001915097237, -0.04596751555800438, -0.01894930750131607, 0.030737465247511864, -0.0372934490442276, 0.008592117577791214, 0.027585551142692566, -0.062433112412691116, -0.029123686254024506, 0.04120182245969772, 0.026753446087241173, 0.011220813728868961, 0.04019320756196976, 0.05421292409300804, 0.01869715377688408, 0.026677800342440605, -0.02493794448673725, 0.0057585472241044044, 0.020575694739818573, 0.03976454958319664, 0.058449093252420425, -0.044757179915905, 0.007873481139540672, -0.02745947614312172, -0.0011748760007321835, -0.012481579557061195, -0.020424403250217438, -0.019567081704735756, 0.017726365476846695, -0.05088450014591217, -0.008762321434915066, 0.07241837680339813, -0.007930215448141098, 0.013061531819403172, 0.010136555880308151, 0.029148900881409645, -0.04473196342587471, -0.01892409287393093, -0.0008699282770976424, -0.019730981439352036, -0.011346890591084957, 0.0124122379347682, 0.01385581400245428, -0.015116579830646515, 0.0007690670317970216, 0.03641091287136078, -0.011851197108626366, 0.0517418198287487, 0.05305301770567894, -0.026425648480653763, -0.006146232597529888, -0.058751679956912994, 0.02771162800490856, -0.035276222974061966, -0.004857099615037441, 0.03275468945503235, -0.016881652176380157, -0.012752644717693329, 0.03056095913052559, -0.00271222204901278, 0.04959851875901222, 0.002472676569595933, 0.032174739986658096, -0.021760815754532814, -0.025744834914803505, -0.007343959994614124, 0.021672561764717102, -0.011208206415176392, 0.04879162833094597, -0.029728854075074196, -0.012387022376060486, -0.01776418834924698, -0.0299557913094759, -0.04846383258700371, 0.04074794426560402, -0.04725349694490433, -0.03494842350482941, 0.006237638182938099, -0.022302944213151932, -0.007659151218831539, 0.013376723043620586, -0.02548007294535637, 0.011460359208285809, -0.02808985859155655, 0.014574450440704823, -0.039663687348365784, -0.017915479838848114, -0.008976651355624199, 0.013427154161036015, -0.020449617877602577, -0.013944067992269993, 0.014990502968430519, -0.0372934490442276, 0.05249828100204468, -0.004154222551733255, 0.03696564957499504, 0.007268313784152269, 0.017940694466233253, 0.05156531557440758, 0.025064021348953247, 0.01578478515148163, -0.035024069249629974, -0.037822969257831573, -0.02158430777490139, -0.02263074368238449, -0.035629235208034515, -0.003709802869707346, 0.032552968710660934, -0.027358613908290863, 0.02710646204650402, 0.022769426926970482, 0.015608278103172779, -0.044278088957071304, -0.028316795825958252, -0.011863804422318935, -0.003826423780992627, 0.0410253144800663, -0.041453972458839417, -0.02065134048461914, 0.03114091046154499, 0.005723875947296619, 0.03298163041472435, -0.004223564639687538, 0.05063234642148018, -0.03792383149266243, -0.011926842853426933, 0.01927710697054863, 0.042386941611766815, -0.013023708947002888, 0.022391198202967644, -0.05088450014591217, -0.03363722562789917, -0.048917707055807114, -0.019050167873501778, 0.01146666333079338, -0.014524020254611969, 0.00899556279182434, 0.035578805953264236, 0.005657685920596123, -0.0066190194338560104, 0.019075384363532066, -0.008724498562514782, 0.04503455013036728, 0.010899319313466549, -0.042386941611766815, 0.009670072235167027, 0.019289713352918625, 0.012563529424369335, 0.012349199503660202, -4.1984480048995465e-05, -0.01801634021103382, 0.024698399007320404, 0.013906245119869709, -0.00810041930526495, -0.005181746557354927, 0.028846317902207375, 0.011126256547868252, 0.02776205912232399, -0.03641091287136078, -0.02573222666978836, -0.015772178769111633, -0.007760012522339821, -0.04107574373483658, 0.010388708673417568, -0.018608901649713516, -0.028543733060359955, -0.005679748952388763, 0.013175000436604023, 0.007671758998185396, -0.01615040749311447, 0.015381340868771076, -0.016906866803765297, 0.030913973227143288, -0.017915479838848114, -0.015810001641511917, -0.018445001915097237, -0.050052396953105927, 0.03141827881336212, -0.04450502619147301, 0.0060579790733754635, 0.01664210669696331, -0.03204866126179695, 0.020310934633016586, 0.021571699529886246, 0.0004152646870352328, -0.010974965058267117, -0.02207600697875023, -0.0006169871776364744, 0.016957297921180725, 0.012834594585001469, -0.006130472756922245, 0.029123686254024506, -0.03199823200702667, -0.012676998041570187, -0.016818612813949585, -0.006341651082038879, 0.04253823310136795, 0.005071429535746574, 0.009783540852367878, -0.0018722369568422437, 0.01664210669696331, -0.017486819997429848, -0.009140551090240479, -0.009644856676459312, -0.06137407198548317, -0.007161148823797703, 0.02009660378098488, 0.0072304909117519855, -0.003429282456636429, 5.368103757064091e-06, 0.038377705961465836, 0.04011756181716919, -0.0041384631767869, -0.005837345030158758, 0.059356845915317535, 0.012651783414185047, 0.006152536254376173, -0.016730360686779022, -0.0324016772210598, -0.019478829577565193, -0.0020251048263162374, -0.0007131205638870597, -0.032502539455890656, -0.025215312838554382, 0.013011101633310318, 0.01638995297253132, -0.009600730612874031, -0.03567966818809509, -0.00035360537003725767, -0.007665454875677824, 0.00855429470539093, 0.002464796882122755, 0.022668566554784775, -0.03441890329122543, 0.043067753314971924, 0.04047057777643204, -0.017587680369615555, -0.03792383149266243, 0.018911484628915787, -0.03361201286315918, -0.04818646237254143, -0.0031077873427420855, 0.009575515054166317, 0.050380196422338486, -0.01694468967616558, 0.009720503352582455, 0.02962799184024334, -0.03114091046154499, -0.033158134669065475, 0.016843829303979874, -0.0007406998192891479, -0.01886105351150036, -0.04561449959874153, -0.04531191661953926, -0.022454235702753067, -0.01374234538525343, 0.005777458660304546, 0.004403223749250174, -0.03293119743466377, -0.01883583888411522, -0.008283230476081371, 0.027509905397892, -0.026627371087670326, -0.05486851930618286, -0.014221436344087124, -0.012676998041570187, -0.026728231459856033, -0.034645840525627136, -0.03298163041472435, -0.012721125036478043, 0.03136784955859184, -0.01834413968026638, 0.005878319963812828, -0.009985263459384441, 0.0005444931448437274, 0.01161795575171709, 0.02155909314751625, 0.012985886074602604, -0.006770311389118433, 0.047959525138139725, 0.002472676569595933, 0.03537708520889282, 0.031897369772195816, 0.040218424052000046, 0.024143662303686142, 0.009752022102475166, 0.0031046352814882994, -0.05239741876721382, -0.05925598368048668, 0.0017508883029222488, -0.024004977196455002, -0.02361414022743702, 0.01831892505288124, 0.011731424368917942, 0.043345123529434204, -0.02139519341289997, 0.00590983871370554, 0.0254044272005558, 0.04047057777643204, -0.04074794426560402, -0.0060485233552753925, 0.044580671936273575, 0.007665454875677824, 0.005872015841305256, -0.008302141912281513, 0.017978517338633537, 0.013654091395437717, 0.004031298216432333, -0.037142153829336166, 0.0014947952004149556, -0.019428398460149765, 0.007665454875677824, 0.036814358085393906, -0.023273734375834465, 0.011554917320609093, -0.014687919989228249, 0.018558470532298088, -0.033183351159095764, 0.02147083915770054, 0.0011063218116760254, 0.004069121088832617, 0.008453433401882648, 0.009739414788782597, 0.027988996356725693, 0.02592134103178978, 0.0012717973440885544, 0.011838588863611221, 0.01125863753259182, 0.02993057668209076, 0.029476700350642204, 0.04011756181716919, 0.012368110939860344, -0.01809198595583439, 0.010703899897634983, -0.027030814439058304, 0.012998493388295174, -0.002896609017625451, -0.008163457736372948, -0.037747323513031006, -0.015040934085845947, -0.05214526504278183, 0.00217639678157866, -0.03578053042292595, 0.02142040804028511, 0.000690269167535007, -0.036234404891729355, -0.0299557913094759, -0.040218424052000046, -0.009197285398840904, -0.020033566281199455, 0.021647345274686813, -0.010218505747616291, -0.019819235429167747, 0.03600746765732765, -0.001315136207267642, -0.026324786245822906, 0.02111782506108284, -0.06934210658073425, -0.03393981233239174, -0.032502539455890656, 0.015860430896282196, -0.020411795005202293, -0.0032401676289737225, -0.026123063638806343, -0.010785849764943123, 0.012910240329802036, 0.015167010948061943, 0.020058780908584595, 0.041176605969667435, -0.01886105351150036, 0.002051896182820201, -0.0666692852973938, -0.011428840458393097, -0.013452369719743729, -0.03678914159536362, -0.003662524279206991, -0.02869502641260624, -0.013351508416235447, -0.03051052801311016, 0.026375217363238335, 0.04042014479637146, 0.0004448138643056154, 0.0020802633371204138, 0.03482234850525856, -0.012922847643494606, 0.041453972458839417, 0.009852883405983448, -0.04170612618327141, -0.011157776229083538, 0.01768854260444641, -0.04785866290330887, 0.01944100670516491, 0.006890084128826857, 0.014750957489013672, 0.049850672483444214, -0.009380096569657326, -0.002329264534637332, -0.026324786245822906, 0.020916102454066277, 0.025240527465939522, -0.003441890235990286, -0.03341028839349747, -0.008075203746557236, -0.0010259480914101005, 0.01463748887181282, 0.010722811333835125, 0.0035427515394985676, -0.011157776229083538, 0.003099907422438264, 0.013338900171220303, 4.8879293899517506e-05, -0.021382585167884827, 0.010540001094341278, 0.0005444931448437274, 0.012676998041570187, 0.030006222426891327, 0.005755395162850618, 0.005654533859342337, 0.02957756258547306, -0.014423158951103687, -0.009745717979967594, 0.015053541399538517, -0.010596735402941704, 0.0031818572897464037, 0.008547990582883358, 0.015167010948061943, 0.03179650753736496, -0.02023528888821602, -0.01294806320220232, -0.03610832616686821, -0.002237858949229121, 0.0015712291933596134, -0.04349641501903534, -0.046421390026807785, 0.012740036472678185, -0.015570455230772495, 0.012821986339986324, -0.0059697250835597515, 0.009783540852367878, 0.03880636766552925, 0.025656580924987793, -0.026703016832470894, -0.0009944288758561015, 0.013036316260695457, -0.00900817010551691, 0.00288715329952538, 0.015040934085845947, 0.05148966982960701, -0.01792808808386326, -0.0331077054142952, -0.01338933128863573, 0.05582670122385025, 0.01685643568634987, -0.009411615319550037, -0.010754331015050411, 0.02372760884463787, 0.005544216837733984, -0.005777458660304546, -0.009600730612874031, 0.02391672320663929, -0.022277729585766792, -0.014322297647595406, -0.014082752168178558, -0.030157513916492462, 0.017285097390413284, 0.003203920554369688, 0.025606149807572365, -0.030308805406093597, -0.007343959994614124, -0.00593820633366704, 0.007041376084089279, 0.010256328620016575, 0.005686053074896336, -0.014095359481871128, 0.01589825376868248, 0.044832825660705566, -0.007747404742985964, 0.013944067992269993, -0.015721747651696205, 0.007860873825848103, -0.010470658540725708, -0.00700985686853528, 0.01355323102325201, -0.031897369772195816, 0.02559354156255722, -0.045463208109140396, -0.025606149807572365, 0.0008218616130761802, 0.020663948729634285, -0.0025514743756502867, 0.017184235155582428, -0.00826431903988123, 0.00036778897629119456, -0.00354590336792171, -0.0185332540422678, 0.0041573746129870415, 0.038730721920728683, -0.019894881173968315, -0.009052297100424767, 0.03457019478082657, 0.004686896223574877, 0.005739635322242975, -0.0018328380538150668, -0.008283230476081371, -0.032174739986658096, 0.030434882268309593, -0.02740904502570629, 0.003051052801311016, -0.02773684449493885, -0.02155909314751625, 0.0035931819584220648, -0.011825981549918652, -0.010722811333835125, 0.008037380874156952, 0.007659151218831539, 0.013439761474728584, -0.010092428885400295, 0.02496315911412239, 0.014498804695904255, -0.023790648207068443, -0.020626125857234, -0.01792808808386326, 0.010268935933709145, 0.0335615798830986, -0.004894922487437725, 0.014612273313105106, -0.012059222906827927, 0.014423158951103687, 0.016843829303979874, -0.01118929497897625, 0.004885466769337654, -0.015948684886097908, 0.03388937935233116, 0.0006875112885609269, 0.005055670160800219, -0.03676392510533333, -0.0036656761076301336, -0.005931902211159468, -0.017032943665981293, -0.0008439249941147864, 0.01525526400655508, 0.04927071928977966, 0.01809198595583439, -0.021067393943667412, 0.0026964624412357807, -0.02326112613081932, -0.0012907087802886963, -0.039588041603565216, -0.028594164177775383, 0.05030454695224762, 0.01024372037500143, 0.0004861827474087477, -0.009304450824856758, 0.013830599375069141, 0.010785849764943123, 0.0251774899661541, 0.0248244758695364, 0.003823271719738841, 0.0026428799610584974, 0.01372973807156086, 0.008232799358665943, -0.010369797237217426, 0.02205079048871994, 0.024572322145104408, -0.03081311285495758, 0.023664571344852448, 0.031317416578531265, 0.007564593572169542, 0.012620263732969761, -0.011832285672426224, -0.011170383542776108, -0.026022203266620636, -0.007867177948355675, 0.014044929295778275, -0.019516652449965477, -0.0400923453271389, -0.0021590611431747675, -0.004516692832112312, -0.05744048207998276, 0.027812490239739418, -0.023135049268603325, 0.05345646291971207, -0.004088032525032759, -0.023765431717038155, 0.00873080175369978, -0.006833349820226431, -0.021029571071267128, 0.034671053290367126, 0.001527102431282401, -0.0017162172589451075, -0.011239725165069103, 0.0060453712940216064, 0.027535121887922287, -0.0030037742108106613, -0.008982955478131771, 0.04538756236433983, 0.006663146428763866, 0.0009747294243425131, -0.049522873014211655, 0.03230081498622894, 0.029174117371439934, 0.03517536073923111, -0.032880768179893494, -0.04221043363213539, 0.028846317902207375, -0.031292203813791275, -0.03910895064473152, 0.052851296961307526, 0.033788517117500305, -0.00026219984283670783, 0.03792383149266243, -0.0045324526727199554, -0.038049906492233276, 0.009531388059258461, 0.005872015841305256, 0.058751679956912994, 0.03885679692029953, -0.00917206984013319, 0.02416887693107128, -0.07468775659799576, 0.001140204956755042, 0.0262239258736372, -0.02748469077050686, 0.017398566007614136, -0.02053787186741829, 0.029174117371439934, 0.018381962552666664, 0.008295837789773941, -0.0006563860806636512, -0.04836297035217285, 0.014284474775195122, 0.003577422583475709, 0.005121860187500715, 0.01524265669286251, 0.02872024103999138, 0.021357370540499687, 0.019567081704735756, 0.025202704593539238, 0.03857942670583725, -0.006180903408676386, -0.00400293106213212, 0.010413924232125282, -0.015217441134154797, 0.0011157775297760963, -0.04619445279240608, 0.012544617988169193, -0.03335985913872719, 0.02687952294945717, 0.03820119798183441, -0.025606149807572365, 0.033132921904325485, 0.007325048558413982, -0.015293086878955364, -0.023374594748020172, -0.025240527465939522, 0.0016973057063296437, 0.01019959431141615, 0.04995153471827507, 0.03207387775182724, 0.011063218116760254, -0.02806464210152626, 0.010867799632251263, 0.002721677767112851, 0.050153255462646484, 0.010130251757800579, -0.013376723043620586, 0.03399024158716202, 0.013439761474728584, 0.033183351159095764, 0.004450502805411816, 0.028821103274822235, 0.009556603617966175, 0.00915946252644062, -0.004608098417520523, 0.022063398733735085, 0.0027374373748898506, -0.03149392455816269, -0.028165504336357117, 0.022782035171985626, 0.043319907039403915, 0.015066149644553661, -0.01894930750131607, 0.029148900881409645, 0.021054785698652267, 0.021483445540070534, -0.01356583833694458, 0.04442938044667244, 0.008207584731280804, 0.012821986339986324, 0.0134019386023283, -0.007406997960060835, -0.031342633068561554, 0.0057490915060043335, 0.03305727615952492, 0.028745455667376518, 0.00017374925664626062, -0.007999558001756668, -0.006839653477072716, -0.016238661482930183, 0.00035084743285551667, -0.01664210669696331, -0.016579067334532738, 0.05017847195267677, 0.01573435589671135, 0.008951435796916485, -0.011542309075593948, 0.01217899564653635, 0.00969528779387474, 0.00723679456859827, -0.0009668496204540133, 0.0007143025286495686, -0.024786652997136116, -0.008793840184807777, -0.011649474501609802, 0.02408062294125557, -0.02713167667388916, 0.006946818437427282, 0.026097849011421204, 0.009027081541717052, 0.0078041390515863895, -0.007255706004798412, 0.01615040749311447, -0.03341028839349747, -0.005648230202496052, -0.01963012106716633, -0.03441890329122543, 0.017827225849032402, 0.0071863639168441296, 0.01696990616619587, -0.0035522072575986385, -0.016276484355330467, 0.018407179042696953, -0.0016941538779065013, 0.0019147878047078848, 0.020310934633016586, 0.011151472106575966, 0.03149392455816269, 0.00264603178948164, -0.019983135163784027, 0.006663146428763866, 0.004393768031150103, -0.010067213326692581, 0.011731424368917942, -0.019264498725533485, 0.03694043308496475, 0.0248244758695364, 0.02866980992257595, 0.00432442594319582, -0.0150913642719388, 0.009127942845225334, 0.003965107724070549, -0.018823230639100075, 0.020285718142986298, 0.02655172348022461, 0.011435144580900669, -0.007753708865493536, -0.014208829030394554, -0.025744834914803505, -0.003514384152367711, -0.015368732623755932, 0.012727429158985615, -0.02086567133665085, 0.021458230912685394, 0.03371287137269974, 0.017675934359431267, 0.015192225575447083, 0.0009833972435444593, 0.002316656755283475, -0.04879162833094597, 0.020941317081451416, 0.02174820750951767, -0.001575957052409649, -0.007671758998185396, -0.019920097663998604, -0.019125815480947495, 0.03204866126179695, 0.0165538527071476, -0.003162945853546262, 0.02114303968846798, -0.019151030108332634, 0.020916102454066277, -0.019680552184581757, 0.07080459594726562, -0.0007143025286495686, -0.0335615798830986, 0.03487277776002884, 0.019819235429167747, -0.025694403797388077, -0.005049366503953934, 0.0372934490442276, -0.01403232105076313, -0.025064021348953247, -0.026324786245822906, 0.006089497823268175, 0.010823672637343407, -0.000797040294855833, -0.02004617266356945, -0.019831843674182892, -0.004680592566728592, 0.009052297100424767, 0.011605347506701946, -0.015129187144339085, 0.010596735402941704, -0.03827684372663498, 0.020588302984833717, 0.01403232105076313, 0.009329665452241898, -0.014889642596244812, 0.00870558712631464, -0.03298163041472435, -0.022618135437369347, 0.031266987323760986, 0.005957117769867182, 0.026476077735424042, -0.0013994498876854777, 0.00036424308200366795, 0.04594229906797409, -0.0025183793623000383, -0.05264957249164581, -0.011933146975934505, -0.014839211478829384, 0.0461440235376358, 0.009619642049074173, -0.009121639654040337, 0.0037539296317845583, -0.015671316534280777, 0.008497560396790504, 0.013717129826545715, -0.002348175970837474, -0.05050627142190933, 0.01058412715792656, -0.006505550816655159, 0.022252513095736504, -0.001586988684721291, -0.002184276469051838, -0.002070807619020343, -0.004860251676291227, 0.0041479188948869705, -0.01727248914539814, 0.004939049482345581, 0.011195599101483822, -0.015343517996370792, 0.014839211478829384, -0.00529206357896328, -0.024736221879720688, 0.0192266758531332, -0.037747323513031006, -0.00779153173789382, 0.008945132605731487, -0.006133624818176031, -0.004223564639687538, -0.00873080175369978, -0.003208648646250367, -0.011346890591084957, 0.01949143595993519, 0.016074761748313904, 0.010590431280434132, 0.05335560068488121, -0.005260544829070568, 0.024231916293501854, -0.048842061311006546, -0.027560336515307426, -0.04188263416290283, 0.005235329270362854, 0.0031660976819694042, 0.0004459958290681243, -0.011491878889501095, 0.004176286049187183, -0.004967416636645794, 0.007167452480643988, 0.0054275961592793465, 0.02268117293715477, 0.022012967616319656, -0.01603693887591362, 0.003924133256077766, 0.03199823200702667, 0.024345384910702705, 0.010287847369909286, -0.007394390646368265, -0.0006496882997453213, 0.0016547548584640026, 0.006329043302685022, 0.01715902052819729, 0.004337033722549677, -0.014372727833688259, -0.007829354144632816, -0.03482234850525856, -0.025391818955540657, -0.008232799358665943, 0.031922586262226105, 0.008119330741465092, 0.012645479291677475, -0.03608311340212822, 0.00845973752439022, -0.011510790325701237, -0.011472967453300953, -0.017789402976632118, -0.020083997398614883, 0.02084045670926571, -0.015545240603387356, -0.0006091073737479746, 0.010697596706449986, 0.024975767359137535, -0.01892409287393093, 0.010451747104525566, 0.0022299792617559433, -0.012065527029335499, 0.024698399007320404, 0.010439139790832996, 0.007419605739414692, 0.016490815207362175, -0.010792153887450695, 0.010508481413125992, 0.015330909751355648, 0.016490815207362175, 0.0054496596567332745, -0.01234289538115263, 0.0023529038298875093, -0.01587303914129734, -0.0003603031800594181, 0.008138242177665234, 0.036259621381759644, 0.012670694850385189, 0.010817369446158409, -0.0014853394823148847, -0.018545862287282944, 0.026602154597640038, -0.006385778076946735, -0.00847234483808279, -0.019516652449965477, -0.019756197929382324, 0.0036530683282762766, 0.0079239122569561, -0.019655335694551468, -0.004882314708083868, 0.016906866803765297, -0.007640239782631397, -0.01587303914129734, -0.036915216594934464, -0.021016962826251984, 0.013502799905836582, -0.05126272886991501, -0.00740069430321455, -0.010262631811201572, -0.0045009334571659565, 0.0048192767426371574, 0.03386416658759117, -0.013868422247469425, 0.016427775844931602, 0.0230720117688179, -0.014070144854485989, -0.04629531502723694, -0.002606632886454463, -0.008321053348481655, 0.027358613908290863, 0.0393863171339035, -0.019239284098148346, -0.04228607937693596, 0.006347954738885164, 0.04042014479637146, -0.013515407219529152, -0.0011110496707260609, 0.019214067608118057, 0.02503880485892296, -0.021521270275115967, -0.025379212573170662, -0.010760635137557983, 0.002699614502489567, 0.018936699256300926, -0.008220192044973373, 0.0038012084551155567, -0.011391017585992813, -0.004595490638166666, -0.025505289435386658, -0.0014096936210989952, 0.01120190229266882, -0.025996986776590347, -0.027560336515307426, 0.016238661482930183, 0.02655172348022461, -0.000806496012955904, -0.023500671610236168, -0.034645840525627136, 0.015028326772153378, 0.010464354418218136, -0.02123129367828369, -0.01916363835334778, -0.041453972458839417, 0.028543733060359955, 0.008901005610823631, -0.014713134616613388, 0.001813926501199603, 0.036284834146499634, -0.02899760939180851, 0.023462848737835884, 0.030359236523509026, -0.019377967342734337, -0.02408062294125557, -0.018608901649713516, -0.01481399592012167, 0.016705144196748734, -0.046749189496040344, -0.003555359086021781, 0.025681795552372932, 0.03956282511353493, -0.025820480659604073, -0.004825580399483442, 0.07120804488658905, -0.0037728410679847, -0.009436830878257751, -0.016793398186564445, 0.012620263732969761, -0.0006587500683963299, 0.006574892904609442, -0.00016045212396420538, -0.010533696971833706, -0.02270638942718506, -0.0011283851927146316, -0.028165504336357117, 0.01776418834924698, -0.004119551740586758, -0.00385479093529284, -0.012361806817352772, 0.016982512548565865, 0.03772210702300072, 0.0028256908990442753, 0.0057175722904503345, -0.01631430722773075, -0.03416674956679344, -0.0419582799077034, -0.028316795825958252, -0.027257753536105156, 0.007873481139540672, 0.021622130647301674, -0.02004617266356945, -0.026047417894005775, -0.030384451150894165, -0.011718816123902798, 0.004418983589857817, -0.023185480386018753, 0.026072632521390915, -0.013364115729928017, -0.036587417125701904, -0.0018816926749423146, 0.018886270001530647, -0.007198971696197987, 0.028770672157406807, 0.0017792554572224617, -0.021735599264502525, -0.0005933478241786361, -0.0053708613850176334, 0.01243745256215334, -0.029476700350642204, -0.020626125857234, -0.035629235208034515, -0.014914857223629951, 0.021042179316282272, 0.03242689371109009, 0.014372727833688259, 0.019642729312181473, 0.024673182517290115, -0.008894701488316059, 0.009058601222932339, -0.019377967342734337, 0.016604283824563026, -0.006253397557884455, 0.006196663249284029, 0.023500671610236168, 0.006231334060430527, 0.0014498804230242968, 0.01683122105896473, 0.013464977033436298, 0.01790287159383297, -0.0352005772292614, 0.002278833882883191, -0.008138242177665234, -0.012298768386244774, 0.007886089384555817, 0.013212824240326881, 0.001415997394360602, 0.03303205966949463, 0.0015885647153481841, -0.012721125036478043, 0.023046795278787613, 0.00917206984013319, 0.018823230639100075, 0.033460721373558044, 0.004686896223574877, -0.009739414788782597, 0.02556832693517208, 0.010287847369909286, -3.174076118739322e-05, -0.009922225959599018, -0.017675934359431267, 0.01799112558364868, -0.05123751610517502, -0.010773242451250553, 0.012897632084786892, -0.008302141912281513, 0.023034188896417618, 0.0003857154806610197, 0.0009148430544883013, 0.004100640304386616, -0.003205496584996581, -0.011327979154884815, -0.03968890383839607, 0.09591905027627945, -0.0009061752934940159, 0.00037724472349509597, 0.005623014643788338, 0.012532010674476624, -0.010149163194000721, -0.004129007458686829, -0.01930232159793377, 0.03820119798183441, 0.005150227807462215, -0.019024953246116638, 0.002866665832698345, 0.006098953541368246, -0.010224808938801289, 0.012097046710550785, 0.0010779546573758125, 0.015116579830646515, -0.005191202275454998, 0.008825359866023064, 0.031594786792993546, 0.013805383816361427, 0.0016563308890908957, 0.025328781455755234, 0.05234698951244354, -0.03338507562875748, -0.009663769043982029, 0.012733733281493187, -0.03290598466992378, 0.03386416658759117, 0.007470036391168833, -0.02773684449493885, -0.022416412830352783, -0.0027453170623630285, -0.017058158293366432, 0.015356125310063362, -0.04384942725300789, 0.013011101633310318, -0.00995374470949173, -0.03802469000220299, 0.014486197382211685, 0.01787765696644783, -0.001144144800491631, -0.01589825376868248, 0.019050167873501778, 0.03174607828259468, 0.06117234751582146, -0.028871532529592514, -0.019920097663998604, -0.004258235916495323, -0.018987130373716354, 0.022290335968136787, -0.03600746765732765, -0.020336149260401726, -0.02587090991437435, -0.018747584894299507, 0.014914857223629951, 0.0010487993713468313, 0.0028162351809442043, 0.0032622311264276505, -0.02092870883643627, 0.03141827881336212, -0.003845335217192769, 0.03547794371843338, -0.03383895009756088, 0.013490192592144012], [0.036171719431877136, 0.007764306850731373, 0.05128376558423042, 0.03045552223920822, 0.0018080073641613126, 0.014209491200745106, 0.0042871469631791115, -0.0053025237284600735, 0.024322761222720146, 0.06378071010112762, -0.03508402034640312, 0.06567839533090591, -0.061049897223711014, 0.014209491200745106, -0.016176603734493256, 0.007700664922595024, 0.021777085959911346, 0.0035292303655296564, -0.035431157797575, -0.012253950349986553, 0.016824593767523766, 0.021360522136092186, -0.04267475754022598, -0.03438974544405937, -0.027192430570721626, -0.036958564072847366, 0.03036295250058174, -0.011953097768127918, 0.08141529560089111, -0.0690109133720398, 0.02504017762839794, -0.02359377220273018, 0.016350172460079193, -0.04723383113741875, 0.007000604644417763, -0.007741164416074753, -0.02582702413201332, -0.02578073740005493, 0.018710706382989883, 0.00814615748822689, -0.04739582911133766, 0.01101582683622837, -0.0035494801122695208, 0.0013379254378378391, -0.025850165635347366, 0.08497923612594604, 0.017090732231736183, -0.0291595421731472, -0.011322464793920517, 0.029182685539126396, 0.011785315349698067, 0.025341030210256577, 0.029923245310783386, 0.0017964361468330026, 0.0499877855181694, 0.038948819041252136, 0.005415343679487705, 0.010581905022263527, 0.0028103666845709085, -0.02962239272892475, -0.00877100508660078, -0.01179688610136509, 0.0047066048718988895, -0.0031010941602289677, -0.0009256997727788985, 0.00941899511963129, 0.01291351206600666, 0.0201339703053236, -0.05563455447554588, -0.023339204490184784, 0.04223505035042763, 0.02860412187874317, 0.015586469322443008, 0.007660165429115295, 0.010651333257555962, 0.0008801379590295255, -0.0012171505950391293, 0.003879260504618287, 0.02712300233542919, 0.030131526291370392, -0.04378559812903404, 0.01150181982666254, -0.006364185828715563, 0.011334036476910114, -0.004747103899717331, -0.02180022932589054, -0.02541045844554901, -0.0340426079928875, -0.03154321759939194, -0.013063937425613403, 0.004353681579232216, -0.013735069893300533, -0.025757595896720886, 0.04390130937099457, -0.004261111840605736, -0.012994510121643543, 0.05757852643728256, -0.03170521557331085, -0.021915942430496216, 0.04471129924058914, 0.009361138567328453, 0.008406510576605797, -0.02851155214011669, 0.05281117185950279, 0.01902312971651554, -0.06924234330654144, -0.04158706218004227, 0.010003343224525452, 0.024137621745467186, -0.01564432680606842, 0.0023793375585228205, 0.003503195010125637, -0.06271615624427795, 0.07303771376609802, -0.04873809218406677, -0.00205244985409081, -0.02855783700942993, 0.0067749652080237865, 0.0187454205006361, 0.01245066151022911, 0.021210094913840294, -0.011692744679749012, 0.0008208353538066149, -0.06197559833526611, 0.016743594780564308, -0.008128801360726357, -0.04214248061180115, 0.014753339812159538, -0.009175999090075493, -0.006213759537786245, 0.07026061415672302, -0.008967716246843338, 0.07137145102024078, -0.04850666597485542, -0.0232697781175375, -0.04702554643154144, -0.0014507450396195054, 0.01865285076200962, -0.010263696312904358, 0.03536172956228256, 0.05271860212087631, 0.017599865794181824, -0.012161380611360073, 0.03237634897232056, -0.05401458218693733, 0.016489027068018913, 0.02254078909754753, 0.05674539506435394, 0.00359865790233016, -0.009424780495464802, -0.008418082259595394, 0.02354748733341694, -0.02355905808508396, -0.03249206021428108, 0.016789879649877548, 0.019925687462091446, 0.04485015198588371, 0.04008280113339424, -0.005013242829591036, -0.004923565778881311, -0.04487329721450806, -0.019775260239839554, -0.010795973241329193, 0.0005546966567635536, 0.05540313199162483, 0.03779169172048569, -0.04744211211800575, -0.0008707363158464432, -0.03584772348403931, -0.0647989809513092, -0.0347137413918972, -0.04110106825828552, -0.02888183295726776, -0.05151519179344177, -0.02855783700942993, -0.02110595442354679, -0.01985625922679901, -0.02485503815114498, 0.03482945263385773, -0.013387932442128658, -0.005921585485339165, -0.0032139138784259558, -0.05780994892120361, -0.02675272338092327, -0.028627265244722366, 0.04961750656366348, 0.0009502886678092182, 0.02962239272892475, -0.04045308008790016, 0.008666863664984703, 0.025989020243287086, 0.02299206703901291, 0.00814615748822689, 0.0071336738765239716, -0.02374419942498207, 0.020145541056990623, -0.03744455426931381, 0.009806632064282894, -0.01840985380113125, -0.007388241123408079, 0.015331902541220188, -0.029969530180096626, 0.05642139911651611, 0.0025774952955543995, -0.03388061001896858, -0.04341531917452812, 0.019080985337495804, 0.004402859602123499, -0.004541714210063219, -0.002390909008681774, -0.025618741288781166, -0.02911325730383396, -0.02971496246755123, 0.011999383568763733, 0.003749083960428834, 0.02601216360926628, -0.0063931141048669815, 0.03198292478919029, 0.009847131557762623, 0.03890253230929375, -0.0005984504241496325, 0.014591342769563198, 0.020099256187677383, -0.04364674538373947, -0.057856235653162, -0.02851155214011669, -0.004258218687027693, -0.04346160218119621, 0.029506679624319077, -0.06725208461284637, -0.009413209743797779, 0.02846526727080345, 0.017484154552221298, -0.010657118633389473, 0.006902248598635197, -0.023767340928316116, -0.02823384292423725, -0.009256997145712376, -0.012161380611360073, -0.003260198747739196, -0.007671736646443605, -0.00899664405733347, -0.008846218697726727, -0.002421283395960927, -0.01314493641257286, 0.0022318041883409023, -0.01529718842357397, -0.021915942430496216, 0.04920094087719917, 0.010483549907803535, 0.024415330961346626, -0.010171125642955303, 0.04177220165729523, -0.0030287739355117083, 0.02564188279211521, -0.0042987181805074215, 0.018305713310837746, -0.0012880244757980108, 0.05665282532572746, 0.0034945164807140827, -0.016037749126553535, -0.013758212327957153, 0.01666259579360485, -0.02271435782313347, -0.03938852623105049, -0.02272592857480049, 0.026127874851226807, -0.014880623668432236, -0.04105478525161743, 0.0402679406106472, -0.0035870864521712065, 0.02276064269244671, -0.02110595442354679, -0.030848944559693336, -0.04084650054574013, 0.07326913625001907, -0.017194872722029686, -0.011270394548773766, -0.02142994850873947, -0.01675516553223133, -0.07076974958181381, -0.021730801090598106, 0.026451870799064636, -0.058781933039426804, -0.005921585485339165, -0.0025210853200405836, -0.016026176512241364, 0.035477444529533386, 0.017437869682908058, -0.001959879882633686, 0.05220946669578552, 0.03927281126379967, 0.01298293936997652, 0.00330359092913568, 0.03762969374656677, -0.0004563410475384444, -0.04966379329562187, 0.004434680566191673, 0.02188122831285, 0.0035813008435070515, 0.03739827126264572, 0.0388793908059597, -0.014151634648442268, -0.006508826278150082, -0.04281361401081085, -0.011496033519506454, 0.026544440537691116, -0.008823076263070107, -0.0541534349322319, 0.00586662208661437, -0.029691819101572037, 0.05239460617303848, -0.04387816786766052, -0.021638231351971626, -0.076833076775074, 0.038254544138908386, -0.003754869569092989, 0.03448231518268585, 0.0011303662322461605, 0.03753712400794029, 0.0189768448472023, 0.02110595442354679, 0.008782576769590378, 0.004411538131535053, 0.055217988789081573, -0.03920338302850723, -0.02587330900132656, 0.0442253053188324, -0.022598644718527794, 0.002740939147770405, -0.02490132302045822, 0.03457488492131233, -0.009361138567328453, 0.019566979259252548, -0.03376489877700806, -0.03152007609605789, -0.0340426079928875, 0.03064066171646118, 0.0052909525111317635, 0.014707054942846298, -0.04984893277287483, -0.05142262205481529, -0.0037288344465196133, 0.0019121485529467463, -0.0015346365980803967, 0.027007291093468666, 0.03633371368050575, 0.007509739138185978, -0.02605844847857952, 0.05901335924863815, 0.04158706218004227, 0.038254544138908386, 0.01670888066291809, -0.02860412187874317, -0.05447743088006973, -0.013897067867219448, 0.013549930416047573, -0.04404016584157944, -0.01934712566435337, -0.00722045823931694, -0.005565769970417023, -0.02490132302045822, 0.016743594780564308, 0.07289885729551315, -0.011195181868970394, -0.01925455406308174, 0.0034250891767442226, 0.0018817740492522717, -0.0034164106473326683, -0.015262474305927753, 0.03735198453068733, 0.011200967244803905, -0.022517645731568336, -0.04980264604091644, 0.013179650530219078, -0.014973193407058716, -0.010547191835939884, 0.03880996257066727, -0.01252008881419897, -0.0018542923498898745, 0.029136400669813156, 0.054523713886737823, 0.04225819557905197, 0.011467105709016323, 0.010599262081086636, 0.03651885688304901, -0.01842142455279827, -0.008348654955625534, -0.011004256084561348, -0.010581905022263527, -0.008319726213812828, -0.0007203101413324475, -0.05035806819796562, 0.008799932897090912, 0.0011629103682935238, 0.005915800109505653, 0.03760655224323273, 0.011287751607596874, -0.0009372709901072085, -0.06586353480815887, -0.01684773527085781, -0.02536417357623577, -0.0232697781175375, -0.03510716184973717, 0.007631237152963877, 0.001748704700730741, -0.012369663454592228, -0.0006118296878412366, 0.013526787981390953, -0.01828256994485855, 0.042605333030223846, 0.027979275211691856, 0.033394619822502136, 0.05341287702322006, -0.003002738580107689, 0.010217411443591118, 0.021950654685497284, 0.02536417357623577, -0.02425333298742771, -0.03438974544405937, 0.005513699259608984, 0.030247239395976067, 0.0013856567675247788, 0.03890253230929375, -0.028256984427571297, 0.03022409789264202, 0.0157368965446949, 0.0038156185764819384, -0.05008035525679588, -0.03716684505343437, -0.06271615624427795, 0.023211920633912086, 0.05026549845933914, 0.05595855042338371, -0.02689157798886299, -0.03189035505056381, 0.00017691351240500808, 0.0065377545543015, 0.013943352736532688, -0.019879402592778206, -0.00950577948242426, -0.02439218945801258, 0.018132144585251808, 0.010466192848980427, 0.006260044407099485, -0.010124840773642063, 0.02781727723777294, 0.05910592898726463, 0.03300119563937187, -0.024461615830659866, 0.006248473189771175, -0.00937271025031805, -0.015412900596857071, 0.028812404721975327, -0.012774656526744366, -0.012797798961400986, -0.004619820509105921, -0.02490132302045822, 0.026729580014944077, -0.018201570957899094, 0.01906941458582878, 0.008285013027489185, 0.059476207941770554, 0.008273441344499588, -0.0006642618682235479, 0.004648748319596052, 0.05207061022520065, -0.04623870179057121, -0.01298293936997652, -0.023767340928316116, 0.010367837734520435, -0.01697501912713051, 0.02832641266286373, -0.028812404721975327, 0.002312802942469716, -0.015493899583816528, -0.0019352911040186882, 0.01768086478114128, -0.005982334725558758, 0.001356005552224815, 0.04054564982652664, 0.03806940093636513, -0.04091592878103256, -0.05896707624197006, 0.020330680534243584, 0.009540492668747902, 0.058781933039426804, 0.019543835893273354, -0.007712236139923334, -0.04640069976449013, -0.056699108332395554, -0.03624114394187927, 0.04603042080998421, -0.009858702309429646, -0.003584193764254451, 0.008435439318418503, -0.02289949730038643, -0.005267810076475143, 0.057300813496112823, 0.010466192848980427, 0.021534090861678123, -0.04170277342200279, 0.009436352178454399, -0.023906195536255836, 0.01925455406308174, -0.0009618598851375282, 0.017842862755060196, 0.009615706279873848, -0.03871739283204079, 0.03860168159008026, -0.03966623544692993, 0.004258218687027693, 0.04353103041648865, 0.03781483694911003, -0.021811800077557564, -0.009384281001985073, 0.04348474740982056, 0.02716928720474243, -0.008661078289151192, -0.0003012140223290771, -0.023813625797629356, 0.007093174383044243, 0.01027526706457138, 0.0004849075630772859, -0.04251275956630707, -0.006919605657458305, -0.00324573484249413, -0.007284100167453289, -0.007376669906079769, -0.018849560990929604, -0.012415948323905468, -0.02336234785616398, -0.04744211211800575, -0.012091953307390213, -0.0263824425637722, -0.0009199141059070826, 0.003543694270774722, -0.01383921131491661, -0.0005593974492512643, 0.018259428441524506, -0.011646459810435772, -0.010327338241040707, 0.017056018114089966, 0.03170521557331085, 0.014984765090048313, 0.030293524265289307, 0.010743902996182442, 0.026914721354842186, 0.022274650633335114, -0.02392933890223503, -0.001031287363730371, 0.006821250077337027, 0.011415035463869572, 0.02109438367187977, -0.020006686449050903, 0.015412900596857071, 0.02230936475098133, -0.003601550590246916, -0.01323750615119934, 0.016049319878220558, 0.02180022932589054, 0.03781483694911003, -0.02248293347656727, 0.01865285076200962, -0.04253590479493141, 0.012207665480673313, 0.00789159070700407, -0.04614613205194473, -0.0057856235653162, -0.01753043942153454, -0.01716015860438347, 0.014128492213785648, 0.0217539444565773, -0.007116316817700863, 0.03432031720876694, 0.021765515208244324, 0.014082207344472408, -0.04600727930665016, 0.017518868669867516, 0.008354440331459045, -0.002500835806131363, 0.043970737606287, -0.022691214457154274, -0.0485992357134819, -0.014695483259856701, 0.02286478318274021, -0.0067286803387105465, -0.0402679406106472, -0.0033759113866835833, 0.05355172976851463, 0.007764306850731373, -0.011386106722056866, 0.002790116937831044, -0.00930328294634819, -0.005583126563578844, 0.06067961826920509, -0.041124213486909866, -0.01805114559829235, -0.03647257015109062, 0.03994394466280937, -0.00516077596694231, 0.010697618126869202, -0.012763085775077343, 0.0414482057094574, -0.04179534316062927, 0.0033701257780194283, -0.000521067704539746, -0.022286221385002136, 0.01221923716366291, 0.008198228664696217, 0.018756991252303123, -0.01439463160932064, -0.04753468185663223, -0.003957366570830345, -0.02254078909754753, -0.04179534316062927, -0.03325576335191727, -0.01869913563132286, 0.01967111974954605, -0.0171254463493824, -0.02994638681411743, 0.04744211211800575, 0.02050424925982952, -0.05257974565029144, -0.018988415598869324, -0.004813638515770435, -0.02703043259680271, -0.0247624684125185, 0.002876901300624013, -0.04434101656079292, -0.020376965403556824, -0.00960413459688425, -0.017426297068595886, -0.02397562377154827, -0.016998162493109703, 0.012693657539784908, 0.019323982298374176, -0.00952892191708088, -0.012230807915329933, 0.015517042018473148, 0.038416538387537, 0.020481107756495476, 0.030015815049409866, -0.04547500237822533, 0.027747850865125656, 0.01726430095732212, -0.03955052047967911, 0.0453592874109745, 0.03790740668773651, 0.003618907416239381, 0.03371861204504967, 0.01161174662411213, 0.0067749652080237865, -0.014660770073533058, -0.004463608376681805, -0.023721056059002876, -0.029784388840198517, 0.009204926900565624, 0.0017125445883721113, 0.00731302797794342, -0.03438974544405937, 0.013850782997906208, -0.011767958290874958, 0.01980997435748577, 0.05128376558423042, 0.010888542979955673, 0.010055413469672203, 0.012751514092087746, 0.01657002605497837, -0.0038532251492142677, -0.034274034202098846, 0.04846038296818733, 0.005947621073573828, -0.0069890329614281654, -0.01532033085823059, -0.013873925432562828, -0.014174777083098888, 0.03202921152114868, -0.01697501912713051, 0.06424356251955032, -0.03367232903838158, -0.006954319309443235, -0.02383676916360855, -0.010014913976192474, 0.030200954526662827, -0.008869361132383347, -0.0006252089515328407, -0.025803880766034126, 0.02740071341395378, 0.01587575115263462, 0.011872099712491035, 0.023165635764598846, -0.009523136541247368, 0.015389758162200451, 0.015007907524704933, 0.05484770983457565, 0.004067293368279934, -0.005438486114144325, -0.02619730308651924, -0.01670888066291809, 0.01036205142736435, 0.0015650111017748713, -0.021811800077557564, -0.0666503831744194, -0.04316075146198273, -0.04151763394474983, -0.02008768543601036, -0.012184523046016693, 0.03716684505343437, -0.00023070174211170524, -0.008551151491701603, 0.008036230690777302, -0.013445788994431496, -0.05202432721853256, -0.007816377095878124, 0.01819000020623207, 0.018988415598869324, 0.002613655524328351, 0.013607786037027836, 0.01606089062988758, -0.00958099216222763, 0.027886705473065376, -0.027238715440034866, 0.017923861742019653, 0.04883066192269325, -0.02425333298742771, -0.013434217311441898, 0.013087079860270023, 0.012566374614834785, 0.014683912508189678, 0.04056879132986069, -0.0039284382946789265, -0.009731418453156948, 0.020191825926303864, -0.023721056059002876, 0.0022419290617108345, -0.018351998180150986, 0.014764911495149136, 0.001549100736156106, -0.0009126820950768888, -0.004171434324234724, -0.0456138551235199, 0.00934956781566143, -0.027747850865125656, 0.0263824425637722, 0.008204014040529728, 0.01896527409553528, -0.00971406139433384, 0.03388061001896858, -0.020423250272870064, 0.0007651487248949707, 0.0071336738765239716, -0.012184523046016693, 0.0020018257200717926, 0.04822895675897598, 0.019034700468182564, -0.0045995707623660564, -0.021453091874718666, 0.021649803966283798, 0.0065377545543015, -0.007833734154701233, -0.005704624578356743, 0.002363427309319377, 0.006954319309443235, 0.004868602380156517, 0.011380321346223354, -0.004142506513744593, -0.0022057690657675266, 0.026151018217206, -0.03582458198070526, -0.002756849629804492, -0.001748704700730741, 0.024183906614780426, 0.02837269753217697, -0.006717108655720949, -0.04524357616901398, -0.02568816766142845, -0.0006418426055461168, -0.0015187261160463095, -0.03228377923369408, 0.04008280113339424, -0.030733231455087662, -0.01753043942153454, 0.018039574846625328, -0.012705229222774506, 0.018074287101626396, 0.010124840773642063, 0.0025673704221844673, 0.019138842821121216, 0.03880996257066727, -0.05008035525679588, -0.00803044531494379, -0.01832885481417179, -0.024554185569286346, -0.03179778531193733, 0.00937271025031805, 0.024739326909184456, -0.03920338302850723, 0.01451034378260374, 0.02698414772748947, -0.016766736283898354, -0.0010963756358250976, -0.013503645546734333, 0.005525270476937294, 0.04957122355699539, 0.005632304586470127, -0.014591342769563198, -0.0161997452378273, 0.006063333246856928, -0.023570630699396133, 0.020434822887182236, 0.010732331313192844, 0.015482328832149506, 0.020099256187677383, -0.016593167558312416, -0.032792914658784866, -0.01980997435748577, 0.021858084946870804, 0.009407423436641693, -0.00878836214542389, 0.022691214457154274, -0.020955529063940048, 0.00791473314166069, -0.0008859235676936805, 0.0073477416299283504, -0.007903161458671093, -0.04677097871899605, 0.019416552037000656, 0.01883799023926258, 0.025248460471630096, 0.01692873425781727, 0.0034250891767442226, 0.03353347256779671, 0.014961622655391693, 0.0012800692347809672, 0.00361022911965847, -0.028673550114035606, 0.003361447248607874, 0.00951156485825777, 0.03508402034640312, 0.05443114414811134, -0.010194269008934498, -0.027377570047974586, -0.014869051985442638, -0.02897440269589424, 0.012392805889248848, 0.03186721354722977, 0.009841345250606537, -0.0013249077601358294, 0.00430450402200222, -0.02689157798886299, -0.024415330961346626, 0.00089966447558254, -0.017380012199282646, -0.007029532454907894, -0.01694030500948429, 0.019775260239839554, -0.021117525175213814, -0.01856028102338314, -0.04135563597083092, -0.012172951363027096, 0.011299322359263897, -0.012184523046016693, 0.029182685539126396, 0.04228133708238602, -0.009685133583843708, 0.026729580014944077, 0.030293524265289307, -0.022506074979901314, 0.009962843731045723, 0.0337880402803421, 0.010541405528783798, 0.01780814863741398, -0.023813625797629356, -0.04295247048139572, -0.04693297669291496, -0.00885778944939375, 0.032700344920158386, -0.00362180033698678, -0.008499081246554852, 0.014521914534270763, 0.009916558861732483, 0.05378315597772598, 0.011397678405046463, -0.02365162968635559, -0.02693786285817623, -0.027932990342378616, 0.03813882917165756, 0.04579899460077286, 0.00786844827234745, 0.02252921834588051, -0.011872099712491035, 0.0007127164863049984, 0.03880996257066727, 0.00823294185101986, 0.010772830806672573, -0.012566374614834785, -0.01795857585966587, -0.013133365660905838, 0.0018832203932106495, -0.04975636303424835, -0.0050653135403990746, -0.03941166773438454, 0.00811722967773676, 0.0002176840789616108, 0.019092557951807976, -0.015482328832149506, 0.004593784920871258, -0.01901155896484852, 0.005716195795685053, 0.06040190905332565, -0.020261254161596298, -0.03274662792682648, -0.00645675603300333, 0.04630813002586365, -0.009181784465909004, 0.0009488422656431794, -0.006196402944624424, -0.003115558298304677, 0.02100181393325329, 0.04195734113454819, 0.02276064269244671, 0.02115223929286003, 0.006358399987220764, 0.014186348766088486, 0.04739582911133766, 0.028349554166197777, 0.020191825926303864, 0.034274034202098846, -0.014718625694513321, 0.002101627644151449, -0.0020871637389063835, 0.031820930540561676, 0.02527160383760929, -0.005218632519245148, -0.0018716491758823395, -0.0043363249860703945, 0.006682395003736019, 0.02323506399989128, -0.016720451414585114, -0.028442125767469406, 0.021175382658839226, 0.0076948790811002254, -0.02670643851161003, -0.021348951384425163, 0.031635791063308716, 0.0071105314418673515, 0.010396765545010567, -0.007920518517494202, 0.002204322488978505, 0.04100849851965904, -0.005444271489977837, 0.05290374159812927, 0.019590120762586594, -0.009962843731045723, 0.013179650530219078, 0.01707915961742401, -0.012635801918804646, -0.010599262081086636, 0.003592872293666005, 0.00328044849447906, 0.008111444301903248, 0.007752735633403063, -0.01009012758731842, 0.04836781322956085, 0.03272348642349243, 0.021221667528152466, -0.02313092350959778, -0.005947621073573828, -0.007272528950124979, 0.004654534161090851, -0.0060691190883517265, 0.05433857440948486, 0.01096375659108162, -0.029090115800499916, 0.0021392342168837786, -0.031635791063308716, 0.008458581753075123, -0.008614793419837952, 0.0005163669120520353, -0.0018383818678557873, 0.043299607932567596, 0.020839815959334373, 0.013804497197270393, -0.00475288974121213, 0.013827640563249588, 0.030663805082440376, 0.005389308091253042, 0.0086784353479743, -0.019728975370526314, 0.04147135093808174, 0.024554185569286346, -0.014221062883734703, 0.015216189436614513, 0.008597436361014843, 0.04563699662685394, 0.03110351227223873, 0.0022318041883409023, 0.011669602245092392, 0.002545674331486225, 0.006271616090089083, 0.020261254161596298, 0.02266807295382023, 0.02457732893526554, -0.005811658687889576, 0.03314005210995674, 0.006971676368266344, 0.004767353646457195, -0.01508890651166439, -0.01033890899270773, 0.02420704811811447, -0.05438486114144325, -0.0018991308752447367, 0.03464431315660477, -0.01464919839054346, 0.009413209743797779, -0.020006686449050903, -0.05822651460766792, -0.029506679624319077, -0.004515679087489843, -0.04001337289810181, 0.004382609855383635, -0.0011723119532689452, 0.04378559812903404, 0.04346160218119621, -0.008105658926069736, 0.006792321801185608, 0.004214826505631208, 0.02929839678108692, -0.007955232635140419, 0.018039574846625328, -0.0004888852126896381, 0.03489888086915016, 0.027886705473065376, 0.01791229099035263, 0.024415330961346626, -0.01453348621726036, -0.01437148917466402, -0.010512477718293667, 0.02160351723432541, -0.027053575962781906, -0.04198048263788223, -0.05290374159812927, 0.031172938644886017, -0.0007499614730477333, -0.002262178808450699, -0.02018025517463684, -0.009390067309141159, 0.0008859235676936805, -0.004755782429128885, -0.029969530180096626, 0.03818511590361595, -0.05225574970245361, 0.014475629664957523, 0.004313182085752487, -0.012045668438076973, -0.01101004146039486, 0.0053140949457883835, -0.005288059823215008, -0.005612054839730263, 0.012022526003420353, -0.019509121775627136, 0.0056728036142885685, -0.025063320994377136, 0.032792914658784866, -0.006653467193245888, -0.055912263691425323, 0.004165648948401213, 0.022182080894708633, 0.0012374002253636718, -0.02429961785674095, 0.01038519386202097, 0.032885484397411346, 0.019219841808080673, 0.0038127258885651827, -0.003607336198911071, 0.001208472065627575, -0.007764306850731373, -0.005380630027502775, 0.05211689695715904, -0.01252008881419897, -0.01448720134794712, 0.0020423249807208776, 0.0053864154033362865, -0.01684773527085781, 0.00475288974121213, -0.005296738352626562, -0.0016648131422698498, 0.013017652556300163, 0.008516437374055386, -0.03675027936697006, 0.028627265244722366, -0.0028132593724876642, -0.004793389234691858, -0.004376824013888836, 0.02286478318274021, 0.04080021753907204, -0.013306934386491776, 0.009742990136146545, 0.0023099102545529604, -0.0003124236536677927, 0.005331452004611492, 0.015956750139594078, -0.034274034202098846, 0.03161264583468437, -0.04061507806181908, 0.012392805889248848, 0.04508157819509506, 0.026313016191124916, -0.007532881572842598, 0.01321436371654272, -0.007179958745837212, 0.010095912963151932, -0.030015815049409866, 0.004209041129797697, 0.0076833078637719154, 0.0002272665296914056, 0.030085241422057152, -0.013943352736532688, -0.024646755307912827, -0.0388793908059597, 0.015054192394018173, -0.058781933039426804, 0.0024863716680556536, -0.02832641266286373, 0.02480875328183174, 0.01460291352123022, 0.01164067443460226, 0.023616915568709373, -0.023906195536255836, 0.003514766227453947, -0.039041388779878616, -0.02578073740005493, 0.0017559367697685957, -0.017090732231736183, 0.01629231497645378, -0.0008381921797990799, -0.057393383234739304, 0.006665038410574198, 0.012855655513703823, 0.013040794990956783, 0.006051762029528618, -0.012323377653956413, -0.04082335904240608, -0.014637627638876438, -0.023200349882245064, 0.02109438367187977, 0.04887694865465164, 0.024183906614780426, 0.019509121775627136, -0.0019569871947169304, 0.001812346512451768, -0.010211625136435032, -0.004003651440143585, -0.00016913909348659217, -0.001320568611845374, -0.02559559792280197, -0.04036051034927368, 0.01096954196691513, 0.017322156578302383, -0.0033527687191963196, -0.015933606773614883, 0.007070031948387623, 0.008574293926358223, 0.018756991252303123, 0.007556024473160505, -0.005545520223677158, -0.03334833309054375, -0.04943236708641052, -0.002677297219634056, -0.001794989686459303, -0.02406819351017475, -0.02230936475098133, 0.002923186169937253, 0.011872099712491035, -0.020805101841688156, 0.017877576872706413, 0.018525566905736923, 0.00657246820628643, -0.0031936641316860914, 0.022413505241274834, -0.003520551836118102, 0.003613121807575226, -0.021360522136092186, 0.014151634648442268, -0.004978529177606106, 0.03189035505056381, 0.026961006224155426, -0.0053632729686796665, -0.004125149454921484, 0.013526787981390953, 0.00723202945664525, 0.019462836906313896, 0.00805358774960041, -0.03168207406997681, 0.028928117826581, -0.01819000020623207, 0.012045668438076973, 0.009742990136146545, -0.0007300733705051243, -0.016917163506150246, 0.0037635480985045433, 0.013920210301876068, 0.007191529963165522, -0.012612659484148026, -0.020573677495121956, -0.023385489359498024, 0.017484154552221298, -0.003480052575469017, -0.04910837113857269, 0.014452487230300903, 0.0076833078637719154, 0.010882757604122162, -0.021591946482658386, -0.0379536896944046, -0.02434590272605419, -0.015065763145685196, 0.000345871812896803, -0.006242687813937664, 0.03045552223920822, 0.02007611282169819, -0.006115403957664967, 0.026775864884257317, -0.04957122355699539, 0.03809254616498947, -0.026868434622883797, -0.022656502202153206, -0.06137389317154884, 0.0018918989226222038, -0.004261111840605736, 0.0356394425034523, 0.01112575363367796, -0.010882757604122162, -0.01437148917466402, 0.05396829545497894, 0.0333251915872097, 0.0221126526594162, 0.00899664405733347, 0.014938480220735073, 0.011559675447642803, 0.015193047001957893, 0.004498322028666735, 0.015528613701462746, -0.011715887114405632, -0.04167963191866875, -0.026451870799064636, -0.007156816311180592, -0.030617520213127136, -0.0018673100275918841, 0.01962483488023281, 0.01022319681942463, 0.0009488422656431794, 0.01891898922622204, 0.010882757604122162, -0.021487805992364883, 0.015308760106563568, -0.006954319309443235, -0.02323506399989128, -0.00022509691189043224, 0.04855295270681381, -0.017970146611332893, -0.0034395530819892883, 0.001498476485721767, 0.014221062883734703, 0.0039400095120072365, -0.03323262184858322, -0.0018615243025124073, 0.015806322917342186, -0.021024955436587334, 0.025479886680841446, 0.016813021153211594, -0.02416076324880123, 0.020052971318364143, -0.015852607786655426, 0.03202921152114868, -0.002403926569968462, 0.018895845860242844, 0.013087079860270023, 0.016546882688999176, -0.017646152526140213, 0.010165340267121792, -0.022332506254315376, 0.0067865364253520966, -0.019636405631899834, -0.008331297896802425, 0.02971496246755123, -0.013607786037027836, 0.01832885481417179, 0.0236053429543972, 0.0012959797168150544, -0.04015222564339638, -0.04563699662685394, -0.019138842821121216, -0.0001692294899839908, -0.0028262771666049957, 0.006074904464185238, 0.0006150840781629086, -0.000447301019448787, 0.015841037034988403, 0.03059437684714794, -0.011316679418087006, -0.007602309342473745, -0.0029347576200962067, -0.01238123420625925, -0.02096709981560707, -0.010356266051530838, -0.015898892655968666, 0.010211625136435032, 0.02345491759479046, 0.00029452439048327506, 0.02188122831285, 0.02184651419520378, -0.0042640045285224915, 0.024322761222720146, 0.016084033995866776, 0.01776186376810074, -0.02814127318561077, -0.030848944559693336, -0.03395003825426102, 0.017565153539180756, 0.020897671580314636, -0.0481363870203495, -0.0033296262845396996, -0.003485838184133172, 0.02698414772748947, -0.0448964387178421, 0.0026396906469017267, 0.02443847432732582, 0.028071844950318336, -0.027747850865125656, 0.01247380394488573, 0.029414109885692596, -0.008036230690777302, 0.014880623668432236, -0.009083428420126438, 0.010633976198732853, 0.00964463409036398, 0.009309068322181702, -0.025294745340943336, 0.022043226286768913, -0.040429938584566116, -0.002814705716446042, -7.259149424498901e-05, -0.01224237959831953, 0.019358696416020393, 0.0014131385833024979, -0.04059193283319473, -0.009783489629626274, 0.005542627070099115, -0.012138238176703453, -0.014903766103088856, -0.0201339703053236, -0.0034655884373933077, 0.01316807884722948, 0.0021493590902537107, 0.014278918504714966, -0.006132761016488075, 0.004220612347126007, -0.02716928720474243, 0.0398050881922245, 0.03779169172048569, 0.007382455747574568, -0.006601396482437849, 0.00089966447558254, -0.014926908537745476, 0.006508826278150082, -0.04623870179057121, -0.023385489359498024, -0.03718998655676842, 0.04496586695313454, -0.03397317975759506, 0.007787449285387993, 0.0177155788987875, -0.00584347965195775, -0.0018470602808520198, 0.0451510064303875, -0.019775260239839554, -0.004851245321333408, 0.02110595442354679, -0.0005246837390586734, -0.023443346843123436, -0.03027038276195526, 0.0006559450412169099, -0.03189035505056381, -0.0015852608485147357, 0.017137017101049423, -0.023489631712436676, -0.02313092350959778, 0.0013292470248416066, -0.011739030480384827, 0.0050508491694927216, -0.009719847701489925, -0.02823384292423725, -0.009615706279873848, -0.04017537087202072, -0.013295362703502178, -0.04734954237937927, 0.030015815049409866, -0.025109605863690376, -0.03276977315545082, -0.014764911495149136, -0.00359865790233016, 0.01948598027229309, 0.014788053929805756, 0.009447922930121422, -0.02605844847857952, -0.01790071837604046, 0.014221062883734703, -0.0333251915872097, 0.012612659484148026, 0.014047494158148766, 0.03679656609892845, 0.024230191484093666, -0.04209619760513306, 0.004903316032141447, -0.05618997663259506, 0.023073066025972366, -0.008198228664696217, -0.004654534161090851, -0.014059064909815788, -0.010356266051530838, -0.017553580924868584, -0.004003651440143585, 0.015100477263331413, 0.01513519138097763, 0.00814037211239338, -0.004935136996209621, -0.004987207241356373, -0.001315506175160408, -0.01022319681942463, 0.01628074422478676, -0.013619357720017433, 0.024415330961346626, 0.01670888066291809, 0.018028002232313156, -0.0008512098575010896, -0.017750293016433716, 0.028164414688944817, -0.012763085775077343, 0.015482328832149506, 0.01224237959831953, -0.020943956449627876, 0.008290798403322697, -0.01731058582663536, 0.022552359849214554, 0.008394939824938774, -0.03846282511949539, 0.03584772348403931, 0.00436236010864377, 0.010367837734520435, 0.0006367801688611507, 0.02004140056669712, 0.01637331396341324, -0.0009126820950768888, 0.04394759610295296, 0.007689093705266714, 0.020978670567274094, -0.029969530180096626, 0.01522776111960411, -0.01638488657772541, -0.01370035670697689, -0.04327646270394325, 0.009222283959388733, -0.019566979259252548, 0.016963448375463486, 0.030015815049409866, 0.02235564962029457, 0.010327338241040707, -0.0043970737606287, -0.024646755307912827, -0.023165635764598846, 0.026498155668377876, 0.01228866446763277, 0.003592872293666005, -0.01381606888025999, -0.025063320994377136, -0.0193355530500412, -0.00897350162267685, -0.012832513079047203, 0.03101094253361225, -0.021580375730991364, -0.002101627644151449, -0.012462233193218708, -0.02966867759823799, 0.028256984427571297, -0.0037866905331611633, -0.029437251389026642, -0.027562709525227547, -0.014880623668432236, -0.03233006224036217, -0.003150271950289607, 0.01842142455279827, -0.0026628333143889904, -0.0009249765425920486, 0.017437869682908058, -0.03524601832032204, 0.01993725821375847, 0.008551151491701603, 0.030478663742542267, 0.005418236367404461, -0.021823372691869736, 0.030779516324400902, -0.02735442854464054, 0.013353219255805016, -0.0157368965446949, 0.014406202360987663, -0.0583190843462944, 0.019740547984838486, 0.010188482701778412, -0.02105966955423355, 0.03644942864775658, 0.02670643851161003, -0.07965646684169769, -0.006612967699766159, -0.033996324986219406, 0.04133249446749687, 0.013596215285360813, -0.007521310355514288, 0.030038956552743912, 0.008447010070085526, -0.03401946648955345, 0.012161380611360073, 5.758503539254889e-05, 0.005970763508230448, -0.032700344920158386, 0.002411158522590995, 0.007671736646443605, -0.02814127318561077, -0.025248460471630096, -0.0003227293200325221, -0.020469535142183304, 0.02351277321577072, -0.030432378873229027, 0.022841641679406166, 0.008672649972140789, 0.06785379350185394], [0.044390056282281876, 0.0015221134526655078, 0.0032606679014861584, 0.046638794243335724, -0.023319397121667862, 0.040409792214632034, 0.0007990041631273925, 0.005450374912470579, 0.037553898990154266, 0.014875391498208046, -0.0033702936489135027, 0.009607726708054543, 0.02511838637292385, 0.025095898658037186, -0.007533267140388489, 0.019406596198678017, 0.028379052877426147, 0.02527579665184021, -0.005652761086821556, 0.0065775541588664055, 0.05001189932227135, 0.037553898990154266, -0.02523082308471203, -0.03822851926088333, -0.010507221333682537, -0.05073149502277374, -0.012514217756688595, -0.021925179287791252, 0.03519272431731224, -0.0802798867225647, 0.031437333673238754, -0.03121246211230755, 0.02912113629281521, -0.05779252573847771, 0.021048173308372498, 0.016741842031478882, 0.019316645339131355, -0.04376041144132614, -0.010153044946491718, -0.007707544136792421, -0.016618162393569946, -0.019080528989434242, -0.0057342778891325, 0.027547020465135574, -0.01675308682024479, 0.060491010546684265, -0.021925179287791252, -0.06831661611795425, 0.027547020465135574, 0.014189526438713074, 0.04659381881356239, 0.05289028212428093, 0.008860021829605103, -0.01694422960281372, 0.005914176814258099, 0.005947907920926809, 0.015167727135121822, 0.03145982325077057, 0.01829347014427185, -0.006099697668105364, -0.038003645837306976, -0.008618282154202461, -0.012997696176171303, -0.027029812335968018, 0.00742645189166069, 0.056758105754852295, 0.02302706055343151, 0.016910497099161148, -0.019305402413010597, 0.0003547030210029334, -0.0021489488426595926, 0.07177966833114624, 0.031189974397420883, -0.022869650274515152, 0.010822043754160404, 0.040702130645513535, -0.03388845920562744, 0.030290478840470314, 0.03285403922200203, 0.010760203935205936, -0.05990633741021156, 0.027591995894908905, -0.01278406661003828, -0.026490114629268646, -0.006493226625025272, -0.026287728920578957, -0.07528769224882126, -0.015594987198710442, 0.00992254912853241, -0.030920125544071198, -0.023499295115470886, 0.01241302490234375, -0.047628238797187805, 0.033326275646686554, -0.010372296907007694, -0.03314637392759323, -0.0012733469484373927, -0.014268232509493828, -0.023015817627310753, 0.0394878126680851, -0.03568744659423828, -0.029840731993317604, -0.0448622927069664, 0.0048628924414515495, 0.01296396553516388, -0.01472922321408987, -0.025050923228263855, 0.017079154029488564, 0.009017433039844036, -0.0011166381882503629, 0.06885630637407303, -0.026085343211889267, 0.02397152967751026, 0.039757661521434784, 0.012705360539257526, 0.01630333997309208, 0.011322387494146824, -0.03526018559932709, 0.023994017392396927, -0.015246433205902576, -0.049472201615571976, -0.004281031899154186, 0.0331013984978199, -0.037104152143001556, 0.0070441667921841145, -0.015089021064341068, -0.0375988744199276, 0.011884571984410286, -0.02916611172258854, -0.023049548268318176, 0.01775377430021763, -0.012278100475668907, 0.07879572361707687, -0.00966956652700901, -0.006139050237834454, -0.009152357466518879, -0.027524534612894058, -0.034023381769657135, 0.011176220141351223, -0.02218378521502018, 0.00648198276758194, 0.012817797251045704, -0.008022367022931576, 0.022611044347286224, -0.03802613168954849, 0.02736712247133255, -0.006127806846052408, -0.010113691911101341, 0.05711790546774864, -0.014965340495109558, -0.001935318810865283, 0.011850841343402863, -0.004882568959146738, -0.04740336537361145, 0.014301964081823826, 0.015606231056153774, -0.006959839258342981, 0.04474985599517822, 0.02183523029088974, 0.0451546274125576, -0.027389610186219215, -0.02392655611038208, 0.009708919562399387, -0.020216140896081924, 0.04495223984122276, -0.016663137823343277, -0.0024581500329077244, 0.02167782001197338, -0.047988034784793854, 0.03161723539233208, -0.033820994198322296, -0.028244130313396454, -0.04690864309668541, -0.013110133819282055, -0.03928542509675026, -0.030470378696918488, 0.027479559183120728, 0.037958670407533646, 0.002313387580215931, -0.005118686240166426, -0.006616906728595495, 0.03134738653898239, -0.0866663008928299, -0.004663316998630762, 0.005217068362981081, 0.004073023796081543, -0.011401093564927578, 0.008455248549580574, -0.044839803129434586, -0.005458807572722435, -0.0054166438058018684, -0.0075501324608922005, -0.002584641333669424, 0.0050821444019675255, 0.021250559017062187, -0.015212701633572578, -0.04207385703921318, -0.02203761786222458, 0.0375988744199276, -0.04780813679099083, 0.005633084569126368, -0.04875260591506958, 0.016573186963796616, 0.03514774888753891, -0.0750628188252449, 4.633626667782664e-05, -0.012469243258237839, -0.01924918405711651, 0.05914176627993584, -0.02478107623755932, 0.02970580756664276, 0.002576208673417568, -0.02179025672376156, 0.021104391664266586, 0.04672874137759209, 0.0027800004463642836, -0.02921108528971672, 0.04726843908429146, 0.012885259464383125, 0.044435031712055206, -0.0387682169675827, 0.0026549145113676786, 0.033618610352277756, -0.021273046731948853, -0.046638794243335724, -0.004244490060955286, 0.02502843551337719, -0.0378912091255188, -0.02437630295753479, -0.07501784712076187, -0.01993504911661148, 0.00892186164855957, 0.006830536760389805, -0.04726843908429146, 0.04465990513563156, -0.0015797372907400131, -0.0031594745814800262, -0.03669937700033188, 0.02756950818002224, -0.022948354482650757, 0.027704432606697083, -0.011727160774171352, -0.022667262703180313, -0.023949043825268745, 0.01789994165301323, -0.002217816188931465, 0.01585359126329422, 0.0041376748122274876, -0.00324099138379097, -0.018124815076589584, 0.028176667168736458, 0.0008545198361389339, 0.06305456906557083, -0.07780627906322479, -0.019215453416109085, 0.044435031712055206, -0.022656019777059555, -0.026692502200603485, -0.018113572150468826, -0.017517656087875366, -0.00722968764603138, 0.019181720912456512, -0.005624651908874512, -0.025950418785214424, -0.02347680740058422, -0.0032747224904596806, -0.0060547227039933205, 0.007184712681919336, -0.017663825303316116, 0.012885259464383125, -0.018810680136084557, 0.014661761932075024, -0.01485290378332138, -0.007235309574753046, -0.09768511354923248, 0.054914142936468124, 0.02662503905594349, 0.012323075905442238, -0.002196734305471182, -0.002202356234192848, -0.03323632478713989, -0.02777189575135708, -0.037711311131715775, -0.06633772701025009, 0.04911240190267563, -0.009984389878809452, -0.036069732159376144, -0.009304147213697433, -0.008084207773208618, 0.0005337235634215176, 0.036114707589149475, 0.003980263601988554, 0.03573242202401161, 0.015594987198710442, 0.02966083399951458, 0.006273974664509296, 0.03793618455529213, -0.04416518285870552, 0.002268412848934531, -0.008084207773208618, 0.031572259962558746, 0.04744833707809448, 0.002730809384956956, -0.05698297917842865, -0.05118124186992645, -0.025793006643652916, -0.02626524120569229, -0.05702795460820198, -0.03933040052652359, -0.02552315779030323, -0.006583176087588072, 0.006279596593230963, -0.07097011804580688, -0.03888065367937088, 0.008444005623459816, -0.010254237800836563, -0.0410844162106514, 0.036024756729602814, 0.03577739745378494, -0.014200770296156406, -0.002455339068546891, 0.036114707589149475, -0.03166220709681511, 0.013132620602846146, 0.016764329746365547, 0.007555754389613867, -0.00992254912853241, 0.02826661616563797, 0.018023623153567314, 0.03285403922200203, -0.002993630478158593, 0.017034178599715233, 0.03334876149892807, -0.004036481957882643, -0.022959599271416664, -0.004826350603252649, -0.0224311463534832, 0.0029795756563544273, 0.011187463998794556, 0.009388474747538567, 0.018226008862257004, -0.04911240190267563, -0.014807929284870625, -0.010310456156730652, -0.0036935496609658003, 0.022093836218118668, 0.030290478840470314, 0.04403026029467583, 0.006796805653721094, 0.0011503691785037518, 0.02343183383345604, -0.005824227351695299, -0.04387284815311432, -0.023319397121667862, -0.05091139301657677, 0.003325318917632103, 0.07110504806041718, -0.0096189696341753, -0.011496664956212044, 0.028648901730775833, 0.04378289729356766, -0.011069404892623425, 0.010687120258808136, 0.02502843551337719, 0.017956160008907318, -0.02372416853904724, -0.03645201772451401, 0.023566758260130882, -0.006139050237834454, -0.041601624339818954, 0.020114947110414505, -0.028154179453849792, 0.005902932956814766, 0.0018383420538157225, 0.031932055950164795, -0.005380101967602968, 0.037868719547986984, 0.0241739172488451, -0.008168535307049751, 0.019305402413010597, -0.023769143968820572, 0.005025926046073437, -0.01308764610439539, 0.0029121136758476496, -0.020373551174998283, 0.011159354820847511, -0.01655069924890995, -0.030537839978933334, -0.008618282154202461, -0.02253233827650547, 0.0579274520277977, 0.009276038035750389, -0.037059176713228226, 0.04614407196640968, -0.03101007454097271, 0.007117250934243202, -0.017416464164853096, -0.011524774134159088, 0.007741275243461132, 0.00415172940120101, -0.025860469788312912, -0.06597792357206345, 0.007134116254746914, -0.00871947593986988, -0.04416518285870552, 0.030650276690721512, -0.008607038296759129, 0.0002881193649955094, 0.0006848105113022029, 0.016910497099161148, -0.0011749648256227374, 0.02267850749194622, 0.01854083128273487, 0.0410844162106514, 0.04969707503914833, -0.01605597883462906, -0.015887323766946793, 0.02970580756664276, -0.0037188478745520115, -0.09327758848667145, 0.05181088671088219, 0.06494350731372833, -0.003884692210704088, 0.016764329746365547, -0.04816793277859688, 0.018810680136084557, 0.03969019651412964, -0.016112197190523148, 0.005070900544524193, -0.03523769974708557, -0.025635594502091408, -0.0060715884901583195, -0.02148667722940445, 0.04198390990495682, -0.039802633225917816, -0.04879758134484291, 0.01655069924890995, -0.0027279984205961227, 0.004314763005822897, -0.0387682169675827, -0.02581549435853958, -0.007398342713713646, 0.05459931865334511, 0.008488980121910572, -0.024038992822170258, -0.007167847361415625, 0.008309081196784973, 0.03105504997074604, -0.036969225853681564, -0.008955593220889568, -0.03663191571831703, -0.0038425284437835217, -0.056803081184625626, 0.003859393997117877, 0.014020871371030807, 0.0027223764918744564, -0.011502286419272423, 0.006369546055793762, 0.007831224240362644, 0.00585795845836401, 0.019822612404823303, 0.02433132752776146, 0.07677186280488968, 0.0010737716220319271, 0.018383421003818512, 0.0011588019551709294, -0.0013000507606193423, -0.02167782001197338, -0.023296909406781197, -0.015055290423333645, 0.014110821299254894, -0.008815046399831772, -0.04686366766691208, -0.013649829663336277, 0.02860392816364765, 0.009579617530107498, -0.02238617092370987, -0.029885707423090935, -0.01027110405266285, -0.060446035116910934, -0.0021644087973982096, 0.033776022493839264, -0.024983461946249008, -0.012806554324924946, 0.050866417586803436, 0.0068024275824427605, 0.055453840643167496, 0.0038762593176215887, -0.05563373863697052, -0.06246989965438843, -0.01933913305401802, 0.013604855164885521, 0.040049996227025986, -0.00904554221779108, 0.006487604696303606, 0.007555754389613867, -0.018428394570946693, -0.02347680740058422, 0.026242753490805626, 0.03141484782099724, -0.002496097469702363, -0.06260482221841812, -0.015426332131028175, 0.002217816188931465, -0.012199395336210728, -0.018675755709409714, -0.01009682659059763, -0.03424825519323349, -0.0012368049938231707, 0.010192397981882095, -0.008837534114718437, 0.004891001619398594, 0.031167486682534218, 0.007465804927051067, -0.013098889961838722, -0.01054657343775034, 0.013121376745402813, 0.009517776779830456, -0.033483684062957764, 0.06206512451171875, -0.00974265020340681, -0.022172540426254272, -0.04627899453043938, -0.01009682659059763, -0.003581112716346979, 0.026692502200603485, -0.013132620602846146, -0.05235058441758156, -0.018563318997621536, 0.031279925256967545, -0.011850841343402863, -0.01919296570122242, -0.05738775432109833, -0.00847773626446724, 0.013975896872580051, 0.0010034986771643162, -0.010777069255709648, 0.005247988738119602, -0.049517177045345306, -0.01378475409001112, 0.030380429700016975, -0.013683561235666275, -0.004519960377365351, 0.009365987032651901, -0.004191082436591387, 0.000720298383384943, 0.03229185566306114, 0.010400406084954739, 0.005498160608112812, 0.0016921741189435124, -0.04175903648138046, 0.0483478344976902, 0.004744833800941706, -0.014796685427427292, 0.007954904809594154, -0.005495349410921335, -0.01764133758842945, -0.05612846091389656, -0.012131933122873306, -0.025253310799598694, 0.009782003238797188, 0.05765760317444801, 0.01570742391049862, -0.029773270711302757, 0.005706168711185455, 0.04081456735730171, -0.009259171783924103, -0.04569432511925697, -0.035215213894844055, -0.004778564907610416, 0.023949043825268745, -0.003620465751737356, 0.014110821299254894, 0.027052300050854683, 0.012030740268528461, 0.027254685759544373, -0.009107382968068123, -0.03301145136356354, 0.010962589643895626, -0.01798989064991474, 0.013987140730023384, 0.05329505354166031, -0.009770759381353855, 0.0007561375969089568, 0.012255613692104816, 0.016977960243821144, -0.04672874137759209, -0.031167486682534218, -0.03957775980234146, 0.026445141062140465, -0.0031763401348143816, -0.00713973818346858, 0.013694805093109608, 0.00626835273578763, 0.02038479596376419, 0.029188599437475204, 0.019777636975049973, 0.000815869658254087, -0.020452257245779037, -0.029076162725687027, 0.016415776684880257, 0.00444968743249774, 0.02123931609094143, 0.01999126747250557, -0.05271038040518761, -0.006206512451171875, 0.02880631387233734, -0.023206960409879684, 0.025500671938061714, -0.00909613911062479, 0.016483237966895103, -0.014751710928976536, 0.0009212791919708252, -0.015055290423333645, -0.005664004944264889, 0.017585119232535362, -0.0325167290866375, -0.011406715959310532, -0.01878819242119789, 0.01198576483875513, -0.04744833707809448, 0.015415088273584843, -0.021947667002677917, -0.00361484382301569, -0.061840251088142395, 0.01445937529206276, -0.013975896872580051, -0.026737475767731667, -0.044345080852508545, -0.012098201550543308, -0.007538889069110155, -0.05617343634366989, -0.01963146962225437, -0.031774647533893585, 0.007195956539362669, -0.028199154883623123, 0.005382912699133158, -0.011524774134159088, -0.0006535390275530517, 0.022093836218118668, 0.007499536033719778, 0.011159354820847511, 0.023094523698091507, -0.049427226185798645, 0.033483684062957764, 0.017326513305306435, -0.0092929033562541, 0.01566244848072529, 0.007156603503972292, 0.020778324455022812, 0.010529708117246628, 0.0032887770794332027, -0.02957088313996792, -0.03532765060663223, 0.02222875878214836, 0.05104631558060646, -0.007117250934243202, 0.02263353206217289, -0.0022782511077821255, 0.005992882419377565, -0.051720939576625824, 0.043490562587976456, -0.007718787994235754, 0.04421015828847885, 0.02224000357091427, -0.0021138121373951435, 0.012795310467481613, 0.012075714766979218, 0.002508746460080147, -0.019226696342229843, -0.0030076850671321154, 0.0034208903089165688, 0.0173490010201931, -0.06498847901821136, -0.007994257844984531, -0.05136113986372948, -0.010979455895721912, 0.016359558328986168, -0.010175532661378384, -0.008387787267565727, 0.0012178312754258513, -0.0013647018931806087, 7.405018550343812e-05, 0.005526269786059856, -0.01614592783153057, -0.009056786075234413, 0.029031187295913696, -0.0018748840084299445, -0.0018523966427892447, 0.01675308682024479, -0.005537513643503189, 0.015932297334074974, 0.047538287937641144, -0.015268919989466667, 0.04027486965060234, 0.03822851926088333, 0.010822043754160404, -0.01869824342429638, 0.0028530843555927277, -0.0036064109299331903, -0.0005358317284844816, -0.030830176547169685, -0.016741842031478882, -0.04351304844021797, -0.01694422960281372, 0.0044440655037760735, -0.03445064276456833, 0.006476360838860273, 0.06696736812591553, 0.027794381603598595, -0.029840731993317604, -0.00464645167812705, -0.05230560898780823, -0.03465302661061287, 0.021407971158623695, -0.011322387494146824, 0.01913674734532833, -0.02846900373697281, 0.003856583032757044, 0.01649448089301586, -0.0260628554970026, 0.008286593481898308, -0.045289549976587296, 0.01191830262541771, -0.003013306763023138, 0.01865326799452305, 0.046638794243335724, -0.00191002048086375, 0.011097514070570469, -0.041444212198257446, 0.03917298838496208, -0.0521257109940052, -0.01710163988173008, 0.012176907621324062, -0.01594354212284088, 0.005959151312708855, -0.022273734211921692, -0.01809108443558216, -0.003929666709154844, -0.023117009550333023, -0.012952721677720547, -0.0130314277485013, -0.002174247056245804, -0.0032606679014861584, -0.005000627599656582, -0.002808109624311328, -0.012559193186461926, -0.008382164873182774, 0.04654884338378906, 0.022352440282702446, -0.012244369834661484, 0.006060344632714987, -0.022105079144239426, 0.03130241110920906, 0.0241739172488451, -0.013267545029520988, -0.01507777813822031, -0.03966771066188812, -0.006982326507568359, 0.026310216635465622, 0.0037216588389128447, 0.023544270545244217, 0.013998384587466717, 0.01989007368683815, 0.010703985579311848, -0.013143864460289478, -0.04780813679099083, -0.01552752498537302, 0.014717980287969112, 0.005551568232476711, -0.00889937486499548, 0.0005579677526839077, 0.00539415655657649, 0.015482550486922264, 0.025703057646751404, 0.010158666409552097, -0.01888938620686531, 0.0029036810155957937, 0.018158545717597008, 0.0021728414576500654, 0.025095898658037186, -0.03667689114809036, -0.026287728920578957, 0.002951466478407383, 0.0015741154784336686, -0.009017433039844036, -0.05927669256925583, -0.004019616171717644, -0.0008186806226149201, 0.008893752470612526, -0.02736712247133255, -0.009163601323962212, -0.013829728588461876, -0.02408396638929844, 0.010439759120345116, 0.0013984329998493195, 0.012424268759787083, -0.02363421954214573, -0.03768882155418396, -0.0026085341814905405, -0.002628210699185729, -0.02218378521502018, -0.014009627513587475, 0.00997314602136612, 0.07254423946142197, -0.07452312856912613, -0.030740227550268173, -0.0053688581101596355, -0.012806554324924946, 0.027052300050854683, -0.025433208793401718, 0.03984760865569115, -0.00784809049218893, -0.009427827782928944, -0.008488980121910572, -0.013627342879772186, -0.015381356701254845, 0.012604167684912682, -0.0029261682648211718, -0.012682873755693436, 0.01099069882184267, -0.0112155731767416, 0.009765137918293476, -0.01323381345719099, 0.008011123165488243, -0.019451569765806198, -0.0056105973199009895, 0.01579737290740013, -0.010451002977788448, 0.053564902395009995, -0.0013647018931806087, 0.0020266736391931772, -0.040454767644405365, -0.017978647723793983, 0.010816422291100025, -0.027726920321583748, -0.013526150025427341, 0.005419455002993345, 0.00032466131960973144, -0.02108190394937992, 0.03597978129982948, -0.010361053049564362, -0.038408417254686356, -0.00672934390604496, 0.0037300914991647005, -0.008359678089618683, 0.0029064917471259832, 0.020002510398626328, -0.04915737733244896, 0.0362946055829525, 0.0045059057883918285, -0.005970395170152187, -0.0075894854962825775, 0.029480934143066406, 0.01963146962225437, 0.017135372385382652, 0.005160850007086992, -0.04133177548646927, 0.00461272057145834, -0.0012958343140780926, -0.034270744770765305, 0.020913248881697655, 0.02871636487543583, -0.02442127838730812, 0.02313949726521969, 0.03627211973071098, 0.036609429866075516, -0.009433449245989323, 0.033618610352277756, 0.009607726708054543, 0.009714541025459766, -0.020024998113512993, 0.0001703242160147056, -0.00626835273578763, -0.029525909572839737, 0.04232122004032135, -0.018979335203766823, 0.009281659498810768, 0.03719409927725792, -0.008382164873182774, 0.01845088228583336, 0.014200770296156406, -0.007735653314739466, -0.007111629005521536, -0.006976704578846693, 0.0032156931702047586, -0.017169103026390076, 0.013121376745402813, 0.03413581848144531, 0.016876766458153725, -0.004682993516325951, -0.0058129834942519665, 0.015347626060247421, -0.04416518285870552, 0.003884692210704088, 0.03163972124457359, -0.00398588553071022, 0.007769384421408176, 0.0006496739806607366, 0.011547261849045753, -0.045941684395074844, 0.015201457776129246, 0.008640769869089127, 0.01191830262541771, 0.03244926780462265, -0.0047532664611935616, 0.001105394447222352, 0.007600728888064623, 0.024398790672421455, 0.0017315270379185677, 0.01938410848379135, 0.01644950732588768, -0.008635147474706173, -0.039600249379873276, 0.013795997947454453, 0.04591919854283333, -0.005402589216828346, 0.0018200710183009505, 0.012491730973124504, -0.01054657343775034, 0.022847162559628487, 0.018878141418099403, 0.014065846800804138, 0.022172540426254272, 0.006167159415781498, -0.022105079144239426, -0.0010217695962637663, 0.0004961274680681527, 0.009630213491618633, -0.04103944078087807, -0.03505780175328255, 0.024398790672421455, 0.006594419479370117, 0.07672688364982605, 0.005245177540928125, -0.023094523698091507, 0.02338685840368271, -0.0017371488502249122, 0.048527732491493225, 0.007831224240362644, -0.006796805653721094, 0.02232995256781578, 0.01984509825706482, -0.027681944891810417, 0.03249423950910568, 0.013818485662341118, 0.01034418772906065, 0.021205583587288857, -0.01969893090426922, 0.020553451031446457, 0.008522710762917995, 0.022195028141140938, 0.0333937369287014, 0.02053096331655979, 0.0027111328672617674, 0.007679434958845377, 0.024848537519574165, -0.0036710621789097786, -0.0012578869936987758, 0.00398869626224041, -0.008033610880374908, -0.017562631517648697, 0.0036626295186579227, -0.022093836218118668, 0.037059176713228226, 0.047583263367414474, 0.02457868866622448, -0.004764510318636894, 0.0039015577640384436, 0.005919798742979765, -0.02691737562417984, -0.017214076593518257, 0.012131933122873306, 0.007859333418309689, 0.007252174895256758, 0.016888011246919632, 0.01059154886752367, -0.02592793107032776, 0.004345682915300131, -0.013548636808991432, -0.014256988652050495, 0.009455936960875988, 0.04074710234999657, -0.01066463254392147, -0.004044914618134499, 0.01660691760480404, 0.027704432606697083, -0.01308764610439539, -0.009602104313671589, -0.003578301751986146, 0.02716473676264286, 0.0014743278734385967, 0.002331658499315381, -0.0015108698280528188, -0.010445380583405495, 0.007004813756793737, 0.01036667451262474, 0.0008235996938310564, 0.02626524120569229, -0.006689990870654583, 0.021509163081645966, 0.011805865913629532, 0.02014867775142193, 0.028401540592312813, -0.022262491285800934, 0.039510298520326614, -0.003097634529694915, 0.020306089892983437, -0.036609429866075516, 0.013447443954646587, 0.008494601584970951, -0.005017492920160294, -0.01029359083622694, -0.03849836811423302, -0.025005949661135674, 0.019091771915555, 0.03483292832970619, -0.008612660691142082, -0.024106454104185104, 0.012682873755693436, -0.022745968773961067, 0.016775574535131454, -0.0068192933686077595, 0.01949654519557953, 0.005515025928616524, -0.00672934390604496, -0.0003608519327826798, 0.04124182462692261, 0.06539325416088104, -0.01604473404586315, -0.007010435685515404, 0.02810920588672161, 0.0010168504668399692, 0.010214884765446186, -0.009000567719340324, 0.03204449266195297, -0.027636971324682236, 0.012053227052092552, -0.013245057314634323, 0.03553003445267677, -0.004103944171220064, -0.023611731827259064, -0.00859579537063837, 0.05181088671088219, 0.033078912645578384, 0.003373104613274336, -0.021823987364768982, -0.03757638484239578, -0.01054657343775034, 0.02044101431965828, -0.004924732726067305, 0.03415830805897713, -0.04609909653663635, -0.0034658650401979685, -0.016415776684880257, -0.03487790375947952, -0.031122511252760887, -0.0007238120306283236, 0.013436200097203255, 0.005099009722471237, -0.0023372804280370474, 0.00018112869292963296, -0.003949343226850033, -0.011446068063378334, 0.044435031712055206, -0.016685623675584793, -0.016719356179237366, 0.08315826952457428, 0.006037857383489609, 0.033168863505125046, -0.02556813322007656, -0.0051271189004182816, -0.01333500724285841, 0.021048173308372498, 0.040364820510149, 0.01595478504896164, -0.004831972531974316, -0.015291407704353333, -0.0031594745814800262, 0.05513901636004448, -0.013503662310540676, -0.021902693435549736, 0.01715785823762417, -0.002371011534705758, -0.03962273523211479, -0.07501784712076187, 0.02462366409599781, 0.020227383822202682, -0.02218378521502018, 0.04047725722193718, -0.026400165632367134, 0.016831792891025543, 0.013717291876673698, 0.022599801421165466, 0.03101007454097271, -0.00619526905938983, -0.010973833501338959, -0.0018425583839416504, -0.002808109624311328, -0.008888131007552147, 0.0008559253183193505, 0.0041376748122274876, 0.02667001448571682, -0.015864836052060127, 0.01679806038737297, -0.003069525118917227, -0.027007324621081352, -0.017618849873542786, 0.028896262869238853, 0.021025685593485832, -0.020227383822202682, -0.00299081951379776, 0.03429323062300682, -0.013222570531070232, -0.002203761599957943, 0.016888011246919632, -0.028176667168736458, -0.028828801587224007, -0.03031296655535698, 0.025388233363628387, -0.007032923400402069, -0.015178970992565155, -0.04540198668837547, -0.02058718167245388, 0.020002510398626328, -0.001251562382094562, -0.029301036149263382, 0.019721418619155884, 0.02343183383345604, 0.017911186441779137, -0.01388594787567854, 0.006808049511164427, -0.028086718171834946, -0.024263866245746613, 0.017776262015104294, 0.005498160608112812, -0.0028207588475197554, -0.03269662708044052, 0.010372296907007694, -0.020857030525803566, 0.018866898491978645, -0.012300588190555573, -0.024016505107283592, -0.004623964428901672, -0.010956968180835247, 0.005756765138357878, -0.029143624007701874, 0.060491010546684265, -0.011260547675192356, -0.013391225598752499, 0.011491043493151665, 0.04789808765053749, -0.013368737883865833, -0.02860392816364765, 0.04380538687109947, 0.020946979522705078, 0.03404586762189865, -0.016831792891025543, 0.012806554324924946, 0.040657155215740204, 0.008280972018837929, 0.027681944891810417, -0.03476546332240105, -0.00046626143739558756, 0.01390843465924263, -0.021767769008874893, 0.036474503576755524, 0.006184025201946497, -0.01919296570122242, -0.004033670760691166, -0.016786817461252213, 0.0002789838763419539, -0.005281719844788313, -0.004820728674530983, -0.0024693936575204134, -0.0049950056709349155, 0.019305402413010597, -0.0020252682734280825, 0.010355431586503983, 0.007954904809594154, 0.014594299718737602, -0.00602099159732461, -0.01191830262541771, 0.014223258011043072, -0.01478544156998396, 0.01665189303457737, 0.01111437939107418, 0.0025958851911127567, -0.03588983416557312, -0.003954965155571699, 0.007269040681421757, -0.008337190374732018, 0.028581440448760986, -0.010214884765446186, -0.02651260234415531, 0.0005762387299910188, -0.01507777813822031, -0.0005010465974919498, 0.015291407704353333, -0.016224633902311325, -0.02198139764368534, -0.0036682512145489454, 0.012221882119774818, 0.017281539738178253, -0.01204198319464922, -0.0048010521568357944, -0.026085343211889267, -0.0015108698280528188, 0.020452257245779037, -0.003134176367893815, 0.02173403836786747, -0.02437630295753479, 0.025343259796500206, -0.021295534446835518, -0.022419901564717293, -0.009748272597789764, -0.029076162725687027, -0.01788869872689247, -0.008528333157300949, 0.007555754389613867, 0.024938486516475677, 0.014616786502301693, 0.014144551940262318, 0.015932297334074974, 0.024016505107283592, -0.026332704350352287, -0.008112316951155663, -0.020002510398626328, 0.022914623841643333, 0.031774647533893585, 0.023161984980106354, 0.002441284479573369, 0.03618216887116432, -0.039015576243400574, 0.00802798941731453, 0.01478544156998396, 0.02033982053399086, 0.017832480370998383, 1.443890823793481e-06, 0.021610356867313385, -0.040949489921331406, 0.021171852946281433, -0.00044728771899826825, -0.014931609854102135, 0.010141801089048386, 0.0032494240440428257, -0.02397152967751026, 0.031482309103012085, -0.004812296014279127, -0.021655332297086716, 0.002801082329824567, 0.007409586571156979, -0.024533715099096298, -0.0021714360918849707, -0.022903380915522575, 0.013975896872580051, -0.02880631387233734, 0.00776376249268651, -0.015100264921784401, 0.0096189696341753, 0.00797177106142044, -0.029076162725687027, -0.035709936171770096, -0.008753206580877304, 0.015729911625385284, 0.016528213396668434, -0.0015839537372812629, -0.009321012534201145, -0.018383421003818512, 0.00461272057145834, 0.001928291516378522, 0.023454321548342705, 0.033978406339883804, 0.0036823058035224676, 0.03121246211230755, 0.027434583753347397, -0.00676869647577405, 0.0025930742267519236, 0.031122511252760887, 0.022611044347286224, -0.01186208426952362, -0.0038762593176215887, 0.034720491617918015, -0.005363236181437969, 0.009635835886001587, -0.002735025715082884, -0.031279925256967545, 0.02626524120569229, -0.024960974231362343, 0.020407283678650856, 0.009714541025459766, -0.019968779757618904, 0.006228999700397253, -0.014110821299254894, -0.024691125378012657, -0.03076271340250969, 0.0023555513471364975, -0.02044101431965828, 0.021228071302175522, -0.0025228012818843126, 0.03460805490612984, 0.015482550486922264, 0.016618162393569946, -0.012064470909535885, 0.009579617530107498, -0.014043359085917473, -0.0021278667263686657, 0.014414400793612003, 0.005515025928616524, -0.004177027847617865, 0.010141801089048386, -0.005914176814258099, -0.039105527102947235, 0.0045115272514522076, -0.017686311155557632, 0.04929230362176895, -0.028131693601608276, 0.007741275243461132, -0.024263866245746613, 0.027884332463145256, -0.009500911459326744, -0.025455696508288383, -0.0065382011234760284, -0.04412020742893219, 0.03593480959534645, -0.02835656702518463, -0.007966148667037487, 0.03283155336976051, 0.012716604396700859, -0.019406596198678017, -0.003316886257380247, 0.0037553899455815554, -0.018630782142281532, 0.019282914698123932, -0.0015403844881802797, -0.027502046898007393, -0.0020871085580438375, 0.02109314687550068, 0.0051046316511929035, 0.025905443355441093, 0.0024679882917553186, -0.013121376745402813, -0.03130241110920906, 0.02087951824069023, -0.021419214084744453, 0.02003624103963375, 0.004500283859670162, 0.0024033370427787304, -0.026107829064130783, -0.00815166998654604, 0.00544756418094039, -0.00319601665250957, -0.004803863354027271, 0.010411649942398071, -0.01216566376388073, -0.002202356234192848, -0.01427947636693716, 0.025950418785214424, -0.026602551341056824, 0.01874321885406971, 0.05334002897143364, -0.014920365996658802, -0.037913694977760315, -0.026107829064130783, -0.02029484696686268, 0.007583863567560911, -0.03319134935736656, -0.038453392684459686, 0.008444005623459816, 0.028738850727677345, -0.030830176547169685, -0.015448818914592266, 0.01689925417304039, -0.018731974065303802, 0.020868273451924324, 0.00037033879198133945, -0.009360365569591522, 0.012480487115681171, 0.010141801089048386, -0.024263866245746613, -0.04479483142495155, -0.025748031213879585, -0.05702795460820198, 0.019721418619155884, -0.006167159415781498, -0.006408898625522852, 0.015325138345360756, -0.002496097469702363, 0.02388158068060875, 0.03627211973071098, -0.009276038035750389, 0.019766394048929214, 0.017281539738178253, -0.029076162725687027, -0.010400406084954739, 0.001561466371640563, -0.016888011246919632, -0.030178042128682137, -0.033123888075351715, -0.0208345428109169, -0.02218378521502018, -0.009433449245989323, 0.00369636039249599, 0.03508028760552406, -0.0070835198275744915, -0.011974521912634373, 0.023589245975017548, 0.028626414015889168, -0.06273974478244781, 0.015460062772035599, 0.016719356179237366, 0.026849912479519844, 0.008444005623459816, -0.008044854737818241, 0.011142488569021225, 0.011474177241325378, -0.021025685593485832, 0.010006876662373543, 0.012030740268528461, 0.00887126475572586, -0.024803562089800835, 0.011659698560833931, -0.029076162725687027, 0.000172959451447241, 0.02961585856974125, 0.01620214618742466, -0.037666335701942444, -0.007364611607044935, 0.010428515262901783, 0.026085343211889267, 0.013998384587466717, -0.021666575223207474, 0.000515101186465472, -0.0065382011234760284, 0.00916922278702259, -0.024038992822170258, 0.012671629898250103, 0.025500671938061714, 0.009928171522915363, 0.013795997947454453, -0.01278406661003828, 0.0005604272591881454, 0.024488739669322968, 0.014920365996658802, 0.0056977360509335995, 0.02128428965806961, -0.018462125211954117, -0.027929306030273438, -0.004193893633782864, 0.018529588356614113, 0.01101880893111229, 0.005326694343239069, 0.046638794243335724, -0.010164288803935051, 0.023499295115470886, 0.0007821386097930372, -0.038858164101839066, -0.020114947110414505, 0.06575305014848709, 0.015842348337173462, -0.018911873921751976, 0.01745019480586052, -2.6176698156632483e-05, -0.04929230362176895, -0.026152804493904114, 0.009011811576783657, 0.03231434151530266, -0.004758888389915228, 0.0060547227039933205, 0.0037272805348038673, -0.003977452404797077, 0.06480858474969864, -0.01585359126329422, -0.0026043178513646126, -0.04376041144132614, -0.005391345359385014, -0.030717739835381508, -0.030987588688731194, -0.003929666709154844, 0.017337758094072342, -0.011333631351590157, 0.04387284815311432, 0.0034293229691684246, -0.01452683750540018, 0.00934350024908781, -0.013751023449003696, -0.0056977360509335995, -0.029593370854854584, -0.021149365231394768, -0.008337190374732018, -0.007943661883473396, 0.014807929284870625, 0.011670942418277264, -0.03768882155418396, 0.017259052023291588, -0.012154420837759972, 0.014515593647956848, 0.0031144998501986265, 0.03220190480351448, 0.0024019316770136356, -0.02552315779030323, 0.00555718969553709, -0.013053914532065392, 0.05459931865334511, 0.01096821203827858, 0.04735838994383812, 0.003145419992506504, 0.020362308248877525, 0.017708798870444298, -0.020227383822202682, 0.0015403844881802797, 0.04567183554172516, 0.00834843423217535, -0.010226128622889519, 0.017922429367899895, -0.017708798870444298, 0.052170686423778534, -0.02502843551337719, 0.025635594502091408, -0.021655332297086716, -0.02437630295753479, 0.0010491760913282633, -0.06121060624718666, -0.0037076042499393225, -0.0132113266736269, -0.04510965198278427, 0.013593611307442188, 0.034720491617918015, 0.013852216303348541, 0.024758588522672653, -0.02552315779030323, 0.000533372163772583, -0.05329505354166031, 0.02691737562417984, -0.03735151141881943, 0.01041727140545845], [-0.006913218181580305, -0.004173120949417353, 0.06560560315847397, 0.016099121421575546, -0.04634935036301613, 0.0712481290102005, -0.023309020325541496, -0.008956396020948887, 0.003680519061163068, 0.043281786143779755, 0.03145934268832207, 0.007165116723626852, -0.02211110293865204, -0.008307057432830334, -0.03087717667222023, 0.0007983787800185382, 0.01906592771410942, 0.07496503740549088, -0.006862838752567768, -0.01280764676630497, 0.0703972727060318, 0.017543340101838112, -0.02993675507605076, -0.017476167529821396, -0.02566007524728775, 0.006023176480084658, -0.00023580511333420873, -0.005793668795377016, 0.021506546065211296, -0.07890585064888, 0.008463794365525246, -0.025212254375219345, 0.02053253911435604, 0.007069955114275217, 0.01853973977267742, -0.0013189692981541157, 0.01808072440326214, -0.020622102543711662, -0.028391776606440544, -0.0076745119877159595, -0.011643314734101295, -0.034795600920915604, -0.0002795375185087323, 0.009118731133639812, -0.033228229731321335, 0.036788396537303925, -0.019983958452939987, -0.07621893286705017, -0.022469358518719673, 0.006470996420830488, -0.0026939159724861383, 0.02092438004910946, 0.03125782310962677, 0.0028002732433378696, 0.024115096777677536, 0.005471798125654459, 0.022469358518719673, -0.0032438947819173336, 0.0351986363530159, -0.052574045956134796, 0.007333049550652504, -0.01731943152844906, -0.04187115281820297, 0.01806952990591526, -0.00709234643727541, -0.0005065961740911007, 0.005701305810362101, 0.04348330199718475, -0.02574963867664337, -0.026958752423524857, 0.017845619469881058, 0.022211862727999687, 0.02148415520787239, -0.02277163788676262, -0.02807830274105072, 0.01670367829501629, -0.007232289761304855, 0.0443117693066597, 0.03457168862223625, 0.02850373089313507, -0.025257037952542305, -0.007864835672080517, -0.03334018588066101, 0.03804229199886322, -0.046170223504304886, 0.010691697709262371, 0.011654510162770748, 0.0049120234325528145, -0.025637684389948845, 0.0040863556787371635, 0.02063329704105854, 0.028279820457100868, -0.013165902346372604, 0.028257429599761963, 0.023443367332220078, 0.0038512502796947956, 0.005838450975716114, -0.04263244569301605, -0.02315228432416916, -0.009493780322372913, -0.07174073159694672, 0.0038344571366906166, -0.029757626354694366, 0.014587730169296265, -0.0030647667590528727, -0.0275633092969656, -0.03282519057393074, 0.003588156308978796, -0.0014470177702605724, -0.014766857959330082, -0.021842410787940025, -0.02552572824060917, 0.055664002895355225, 0.028011128306388855, 0.03049652837216854, 0.0026799216866493225, -0.00023108201276045293, -0.053962286561727524, -0.006202304270118475, -0.02063329704105854, -0.018483761698007584, 0.048633232712745667, 0.013501767069101334, -0.06878512352705002, 0.027630481868982315, 0.016524551436305046, -0.018696477636694908, -0.02935458905994892, -0.028190257027745247, -0.0116657055914402, 0.0362510122358799, 0.0009131325641646981, 0.07532329112291336, -0.03376561403274536, -0.01930103451013565, -0.02057732082903385, -0.015584128908813, -0.014285451732575893, -0.010859630070626736, 0.03363126888871193, 0.03869163244962692, 0.04355047643184662, 0.027496136724948883, 0.013289052993059158, -0.05338012054562569, -0.059604816138744354, -0.04016943648457527, 0.011413807049393654, 0.04778237268328667, 0.010143118910491467, -0.040482912212610245, 0.05830613896250725, -0.047737590968608856, 0.00649898499250412, -0.01579684391617775, 0.06099305674433708, 0.017756056040525436, 0.04702107980847359, 0.021092312410473824, 0.06067958474159241, -0.05517140030860901, -0.0034817990381270647, 0.007047564256936312, -0.017901597544550896, 0.008547760546207428, -0.0379527285695076, -0.008032768033444881, 0.05620138719677925, -0.009661712683737278, -0.010047957301139832, -0.017632905393838882, -0.01546097919344902, 0.004341053310781717, -0.03875880315899849, -0.047737590968608856, -0.019804831594228745, 0.0029835994355380535, 0.024182269349694252, 0.018606912344694138, -0.028302211314439774, -0.016334228217601776, 0.04818541184067726, -0.020476561039686203, -0.002499394351616502, 0.042811572551727295, 0.04207267239689827, -0.02751852758228779, 0.0012468983186408877, -0.049170613288879395, 0.0354001559317112, -0.015416196547448635, -0.03219824284315109, 0.033317793160676956, 0.023085111752152443, 0.0015295845223590732, 0.04733455553650856, -0.06260520964860916, -0.031145866960287094, 0.00025854597333818674, -0.04149050638079643, 0.02086840383708477, -0.06977032870054245, 0.026869188994169235, -0.05790309980511665, -0.0619334802031517, -0.030093491077423096, -0.020241456106305122, -0.003590955166146159, 0.07048683613538742, -0.022379795089364052, 0.01613270863890648, 0.004187115002423525, 0.011867225170135498, 0.04180397838354111, 0.011699292808771133, 0.0024867993779480457, -0.028235038742423058, 0.04970799759030342, 0.0220551248639822, -0.029242632910609245, -0.00259595550596714, 0.014475774951279163, 0.03410147875547409, -0.030003927648067474, -0.038445331156253815, -0.029533715918660164, -0.03201911598443985, -0.05991829186677933, 0.0002910828625317663, -0.07514416426420212, -0.01607673056423664, 0.004856045823544264, 0.029444152489304543, -0.010490179061889648, -0.04854366555809975, -0.02595115825533867, -0.011788856238126755, 0.005158324260264635, 0.021025139838457108, 0.015908798202872276, 0.046931516379117966, 0.016994761303067207, 0.025794420391321182, 0.016468573361635208, 0.019648093730211258, -0.012863623909652233, 0.019860807806253433, -0.05866439640522003, 0.05535052716732025, -0.009762471541762352, -0.013109925203025341, -0.027675263583660126, 0.04334895685315132, -0.0686955600976944, -0.0064765941351652145, 0.029488934203982353, -0.02271565981209278, -0.041624851524829865, -0.003775680670514703, 0.033564094454050064, -0.013703285716474056, 0.003912825603038073, -0.02072286233305931, -0.03215346112847328, -0.03799751028418541, -0.013300248421728611, 0.021428177133202553, -0.05199187994003296, -0.04046051949262619, 0.03960966318845749, -0.008637324906885624, -0.01097718346863985, 0.0018220668425783515, -0.026622887700796127, -0.10658111423254013, 0.02337619476020336, 0.03372083231806755, 0.04520741105079651, 0.00126579066272825, -0.001955013256520033, -0.029332198202610016, 0.003484597895294428, -0.057141806930303574, -0.04265483841300011, 0.03707947954535484, 0.020901989191770554, -0.014666099101305008, -0.009432204999029636, 0.005421418696641922, 0.03672122582793236, 0.059560034424066544, 0.06162000447511673, 0.027585700154304504, 0.01789040118455887, 0.022827614098787308, 0.026152675971388817, 0.02234620787203312, 0.019088318571448326, 0.053335338830947876, -0.029376979917287827, 0.04283396527171135, 0.08934005349874496, -0.031616076827049255, -0.0032858778722584248, -0.025861594825983047, 0.01736421324312687, 0.020174281671643257, -0.027115490287542343, -0.00617991341277957, -0.03651970624923706, 0.023510539904236794, 0.007618534378707409, -0.03770642727613449, 0.00279187667183578, -0.0009551157127134502, -0.00020414285245351493, 0.005463401786983013, -0.019379401579499245, 0.03495233505964279, -0.0351986363530159, 0.030474137514829636, 0.019894395023584366, -0.008866832591593266, -0.02058851532638073, 0.03262367472052574, -0.05508183687925339, 0.001034183893352747, 0.05530574545264244, 0.018864409998059273, 0.03826620429754257, 0.009057155810296535, 0.03311627358198166, -0.007344244979321957, 0.01963689923286438, -0.007523372769355774, 0.005480194929987192, -0.020745253190398216, 0.01972646266222, 0.009616930037736893, -0.007590545807033777, -0.03466125205159187, -0.04796150326728821, -0.012684496119618416, 0.022357404232025146, -0.041714414954185486, 0.021764041855931282, 0.03239976242184639, 0.03049652837216854, 0.013244271278381348, 0.03410147875547409, -0.007489786483347416, -0.023824013769626617, -0.02935458905994892, -0.053245775401592255, -0.05696268007159233, 0.0033558497671037912, 0.016255859285593033, 0.010893217287957668, -0.029085896909236908, 0.003907227888703346, 0.01427425630390644, -0.005617339629679918, 0.026219850406050682, 0.034594081342220306, 0.02832460217177868, -0.009101937524974346, -0.03197433426976204, -0.008458196185529232, -0.01515870075672865, -0.029153069481253624, 0.019278643652796745, -0.0043046679347753525, -0.005460602696985006, 0.013983173295855522, 0.029869580641388893, -0.024406179785728455, -0.0027456951793283224, 0.022066321223974228, 0.010327843949198723, 0.038781195878982544, 0.004187115002423525, 0.035176247358322144, 0.008939603343605995, -0.006017578765749931, 0.012572540901601315, 0.05109624192118645, -0.026981143280863762, -0.001089461613446474, 0.0023762439377605915, -0.021506546065211296, 0.008519771508872509, -0.04355047643184662, -0.014341429807245731, 0.007344244979321957, -0.04097551107406616, 0.02845894917845726, -0.035265810787677765, 0.01874125935137272, 0.005107944831252098, 0.00623589102178812, 0.0265109334141016, -0.03486277163028717, 0.003274682443588972, 0.011732879094779491, -0.0010453793220221996, 0.03804229199886322, -0.012774060480296612, -0.0076409257017076015, 0.003719703294336796, -0.03629579395055771, 0.01612151227891445, -0.035355374217033386, 0.01631183736026287, 0.07433808594942093, -0.005231095012277365, 0.008015974424779415, -0.018942777067422867, 0.023085111752152443, 0.029399370774626732, -0.034459732472896576, -0.011867225170135498, 0.060410890728235245, 0.013154706917703152, 0.002860449021682143, 0.009796058759093285, 0.019368207082152367, 0.011676901951432228, -0.021405786275863647, -0.028951549902558327, 0.009258674457669258, -0.043751996010541916, -0.009712091647088528, -0.00226988666690886, 0.05235013738274574, -0.030653266236186028, -0.019715266302227974, 0.007120335008949041, -0.05691789835691452, 0.0018612510757520795, 0.020319823175668716, -0.02286120131611824, 0.0144197978079319, 0.004355047829449177, 0.0050071850419044495, -0.004584555514156818, 0.00010277114779455587, 0.03396713361144066, 0.0012112125987187028, 0.04178158938884735, 0.010506972670555115, 0.06484431028366089, 0.002842256333678961, -0.00806635431945324, -0.0089619942009449, -0.012046352960169315, -0.04993190988898277, -0.006661319639533758, -0.03566884621977806, 0.013658504001796246, -0.02295076474547386, -0.01486761774867773, 0.04301309213042259, -0.0006150525296106935, 0.040863558650016785, -0.004041573964059353, -0.010518168099224567, -0.004464203491806984, -0.05266360938549042, -0.02888437733054161, -0.0005884632118977606, 0.006000785622745752, 0.041333768516778946, -0.014643707312643528, -0.011021965183317661, -0.00926986988633871, -0.020599711686372757, -0.020778838545084, -0.001337861642241478, -0.015169896185398102, 0.00370011106133461, -0.021092312410473824, -0.006941207218915224, -0.06681471318006516, -0.062157388776540756, 0.06300824880599976, 0.0023524535354226828, 0.022122299298644066, 0.03389995917677879, 0.005611741915345192, -0.0043998295441269875, -0.011676901951432228, 0.016625311225652695, 0.0056089432910084724, -0.008861234411597252, -0.0028688455931842327, 0.017711274325847626, -0.012863623909652233, 0.008413414470851421, 0.009723288007080555, 0.020073523744940758, 0.01726345345377922, 0.0013497568434104323, 0.045274581760168076, -0.022838810458779335, 0.1013864055275917, 0.028257429599761963, -0.004005188588052988, 0.026869188994169235, 0.01168809738010168, -0.0017534944927319884, -0.045946311205625534, 0.022659681737422943, -0.021786434575915337, -0.0017730866093188524, -0.01892038621008396, -0.034706033766269684, 0.040572475641965866, -0.0035153855569660664, -0.051544059067964554, 0.008682106621563435, -0.020051131024956703, -0.026913970708847046, 0.021271441131830215, 0.002156532369554043, -0.017106717452406883, -0.0024070313666015863, -0.029041115194559097, 0.005214301869273186, 0.01255015004426241, 0.00989122036844492, -0.0026253436226397753, -0.017812032252550125, 0.007321853656321764, 0.011777660809457302, 0.010988378897309303, 0.009689700789749622, 0.004620940424501896, 0.01632303185760975, -0.01878604106605053, 0.01299796998500824, -0.021596109494566917, 0.013154706917703152, 0.06179913505911827, -0.0007822852348908782, 0.011486577801406384, 0.00123360357247293, -0.013412203639745712, 0.010882020927965641, 0.01959211751818657, -0.010070348158478737, -0.021808825433254242, 0.013512962497770786, -0.02476443536579609, 0.010663709603250027, -0.020465364679694176, 0.04046051949262619, 0.011038757860660553, -0.04227418825030327, -0.01641259528696537, -0.01731943152844906, 0.026779623702168465, 0.054096631705760956, 0.015673693269491196, -0.005983992014080286, -0.02812308445572853, 0.010103934444487095, -0.006622135639190674, -0.030429355800151825, -0.010255073197185993, -0.012774060480296612, 0.014878813177347183, 0.009017971344292164, -0.006207901984453201, 0.0010488779516890645, 0.03784077242016792, 0.03278040885925293, 0.005748886615037918, -0.0682477355003357, 0.0006713798502460122, 0.03219824284315109, 0.022413382306694984, 0.017050739377737045, 0.014319038018584251, -0.029824798926711082, -0.023309020325541496, 0.02154013328254223, -0.028861986473202705, -0.014296647161245346, 0.01034463755786419, 0.022469358518719673, -0.028257429599761963, 0.03784077242016792, -0.01650216057896614, 0.014912399463355541, 0.036407750099897385, 0.00825667753815651, -0.017196280881762505, -0.005365441087633371, -0.01340100821107626, -0.007635327521711588, 0.009661712683737278, 0.031011521816253662, 0.027966346591711044, 0.04449089616537094, -0.03342974931001663, -0.01846137084066868, 0.003050772473216057, -0.05758962780237198, 0.012057548388838768, -0.01736421324312687, 0.007176312617957592, -0.018629303202033043, -0.004777677357196808, -0.02476443536579609, 0.020219065248966217, 0.020756447687745094, -0.0386020690202713, -0.027832001447677612, -0.004573359619826078, -0.004959604237228632, -0.030653266236186028, 0.03580319508910179, -0.001908831880427897, -0.01670367829501629, 0.007624132093042135, -0.007422613445669413, -0.014475774951279163, -0.011632119305431843, -0.03656448796391487, -0.03266845643520355, -0.008928406983613968, -0.050782766193151474, 0.01853973977267742, -0.059560034424066544, 0.0116657055914402, -0.014699685387313366, -0.012729277834296227, -0.007025173399597406, 0.011553751304745674, -0.010937999002635479, -0.0024322213139384985, 0.023734450340270996, 0.02671245113015175, -0.060590021312236786, 0.03316105529665947, 0.013535353355109692, -0.019088318571448326, 0.009051557630300522, 0.03192955255508423, 0.010876423679292202, -0.02617506869137287, -0.012494172900915146, -0.04419981688261032, -0.03533298149704933, 0.01740899495780468, 0.026488542556762695, -0.015819234773516655, -0.007053161971271038, 0.00408915476873517, 0.044132642447948456, -0.015001963824033737, 0.026398977264761925, 0.022256644442677498, 0.0277872197329998, 0.04500589147210121, 0.0050183809362351894, 0.0351986363530159, -0.014319038018584251, 0.022794028744101524, 0.0097512761130929, -0.026779623702168465, 0.03096674010157585, 0.021383395418524742, -0.013815240934491158, 0.005144330207258463, -0.030698047950863838, -0.02143937349319458, -0.021875998005270958, 0.045140236616134644, 0.03927379846572876, 0.032131072133779526, -0.0032382970675826073, -0.043102655559778214, 0.05069320276379585, -0.012953188270330429, -0.014363820664584637, 0.01052936352789402, -0.005600546486675739, -0.0048336549662053585, 0.02913067862391472, 0.021036336198449135, 0.03302671015262604, 0.027540918439626694, -0.0038120660465210676, 0.004948408808559179, 0.057276152074337006, -0.003607748309150338, -0.01244939025491476, 0.02006232738494873, -0.04585674777626991, 0.031369779258966446, -0.014688489958643913, 0.031235432252287865, -0.043662432581186295, -0.03078761138021946, -0.03002631850540638, -0.008116734214127064, -0.013669699430465698, 0.024585306644439697, -0.00023230652732308954, 0.00011615326366154477, 0.008626129478216171, -0.050111036747694016, -0.02854851260781288, -0.006470996420830488, 0.015875212848186493, 0.007646523416042328, -0.03168325126171112, 0.004013584926724434, -0.005079955793917179, -0.005695708096027374, 0.03616144880652428, -0.024227051064372063, -0.01403915137052536, 0.016020754352211952, -0.0066277333535254, 0.023510539904236794, -0.006454202812165022, 0.0162222720682621, -0.013177097775042057, -0.0022390990052372217, -0.006980391219258308, 0.011234679259359837, 0.005692909471690655, -0.017050739377737045, 0.02124905027449131, -0.02604072168469429, -0.006381432060152292, -0.02922024205327034, -0.022614900022745132, -0.02518986351788044, -0.029578497633337975, 0.010742077603936195, -0.018338222056627274, 0.002950012916699052, 0.001171328709460795, -0.01034463755786419, 0.00018052736413665116, 0.019412988796830177, -0.009930403903126717, 0.030384574085474014, 0.006230293307453394, -0.025883985683321953, -0.020431779325008392, 0.03587036579847336, -0.04180397838354111, 0.013311443850398064, 0.015147505328059196, 0.018226265907287598, 0.0149459857493639, 0.016782047227025032, -0.02234620787203312, 0.0024909977801144123, -0.007288267370313406, 0.036833178251981735, -0.009684103541076183, 0.01560652069747448, 0.011867225170135498, -0.00311234756372869, 1.400530254613841e-05, -0.01418469287455082, 0.0006468897336162627, -0.027115490287542343, 0.03495233505964279, 0.045946311205625534, -0.02680201642215252, -0.017946379259228706, -0.0006731291650794446, 0.012606127187609673, 0.005687311757355928, -0.007433808874338865, -0.04630456864833832, 0.0026897178031504154, 0.010557351633906364, -0.027003534138202667, 0.03681078925728798, 0.021181877702474594, -0.00825667753815651, 0.019771244376897812, -0.0018486561020836234, -0.0037336975801736116, -0.016535745933651924, -0.015169896185398102, 0.02082362025976181, -0.03692274168133736, -0.021596109494566917, 0.032422155141830444, -0.05530574545264244, -0.01815909333527088, -0.00701957568526268, -0.027473745867609978, -0.011553751304745674, 0.009639321826398373, 0.015449783764779568, 0.05199187994003296, 0.004206707235425711, -0.007075552828609943, -0.009241880849003792, 0.003543374128639698, 0.006202304270118475, -0.034414950758218765, 0.026578105986118317, -0.044804371893405914, -0.03410147875547409, -0.005438211839646101, -0.029959145933389664, -0.01906592771410942, -0.00487283943220973, 0.018483761698007584, -0.030675657093524933, 0.02850373089313507, -0.0020403789822012186, 0.023017937317490578, 0.015035550110042095, 0.02433900721371174, 0.010887619107961655, -0.022693268954753876, -0.02010710909962654, -0.013020360842347145, 0.022088712081313133, 0.00923068542033434, -0.014151105657219887, -0.0026547317393124104, -0.003607748309150338, -0.01524826418608427, 0.020095914602279663, -0.029287414625287056, 0.0027191059198230505, -0.043326567858457565, -0.010400614701211452, 0.045520883053541183, -0.0006710300222039223, -0.04435655102133751, -0.014654903672635555, -0.027384180575609207, -0.021562524139881134, 0.008530966937541962, 0.015908798202872276, -0.011021965183317661, -0.01893158257007599, -0.010590938851237297, 0.01673726551234722, -0.005983992014080286, 0.002860449021682143, -0.008564554154872894, -0.005566960200667381, -0.029041115194559097, -0.020812425762414932, -0.02879481390118599, -0.004167523235082626, -0.031280212104320526, 0.003999590873718262, -0.003607748309150338, -0.00937062967568636, 0.023488149046897888, 6.131282862043008e-05, -0.00956095289438963, 0.024115096777677536, 0.03696752339601517, -0.019144296646118164, -3.747866867342964e-05, -0.03206389769911766, 0.012785255908966064, -0.015808038413524628, -0.03571362793445587, -0.014554143883287907, -0.020857207477092743, -0.03696752339601517, 0.008206297643482685, -0.010770066641271114, 0.021428177133202553, 0.038154248148202896, 0.007226692046970129, 0.01768888160586357, -0.0288395956158638, -0.010540558956563473, -0.02574963867664337, 0.03665405139327049, 0.021786434575915337, 0.007814455777406693, 0.014240670017898083, 0.005771277938038111, 0.030720438808202744, -0.0349971167743206, -0.03143694996833801, 0.016043145209550858, -0.03622862324118614, 0.024227051064372063, 0.0077864667400717735, -0.008928406983613968, -0.04970799759030342, 0.01831582933664322, -0.01202396210283041, -0.03826620429754257, -0.004467002581804991, -0.007445004303008318, -0.024406179785728455, 0.011800051666796207, 0.013098729774355888, 0.0040359762497246265, -0.012628518976271152, -0.020196672528982162, -0.04113224893808365, 0.0038512502796947956, 0.06327693909406662, 0.010562949813902378, 0.0049288165755569935, 0.005177916493266821, 0.01811431162059307, -0.03266845643520355, 0.040729209780693054, 0.0054689995013177395, -0.021741650998592377, 0.002423824742436409, 0.00558655196800828, -0.0235329307615757, 0.016199881210923195, -0.0008207697537727654, 0.011268265545368195, -0.031235432252287865, -0.014195888303220272, 0.011268265545368195, 0.02404792420566082, 0.038064684718847275, 0.025973549112677574, -0.011010769754648209, -0.013199488632380962, -0.005334653425961733, 0.03143694996833801, -0.03428060561418533, -0.021069921553134918, 0.006594146601855755, 0.017800837755203247, -0.011307450011372566, 0.01931222900748253, 0.004315863363444805, 0.016871610656380653, -0.005228296387940645, -0.0011230481322854757, -0.0156960841268301, 0.02177523821592331, -0.002176124369725585, 0.03824381157755852, -0.01181124709546566, -0.00908514391630888, 0.003798071760684252, -0.0018052735831588507, 0.006678112782537937, 0.020778838545084, -0.008329448290169239, -0.03837815672159195, 0.019670484587550163, 0.005771277938038111, -0.009281065315008163, 0.040348563343286514, 0.023980751633644104, 0.012348631396889687, -0.009829645045101643, -0.002994794864207506, -0.0024476151447743177, -0.015830431133508682, -0.0018584522185847163, 0.007310658227652311, -0.01446457952260971, 0.013009165413677692, 0.01565130241215229, -0.010534960776567459, 0.03300432115793228, 0.003982797265052795, -0.013949587009847164, -0.016614114865660667, 0.05463401600718498, 0.04585674777626991, 0.0015631710411980748, 0.016054339706897736, 0.018662890419363976, 0.01808072440326214, -0.02048775553703308, 0.013669699430465698, -0.022077515721321106, 0.030675657093524933, -0.033273011445999146, 0.02201034314930439, 0.018562130630016327, 0.016211077570915222, 0.02111470326781273, 0.0189763642847538, 0.00012927298666909337, 0.024227051064372063, 0.005155525635927916, 0.04142333194613457, 0.00865971576422453, -0.009779265150427818, 0.021237853914499283, 0.0020739655010402203, 0.03866923972964287, -0.03654209524393082, -0.012113525532186031, -0.006795665714889765, 0.0013406604994088411, 0.02404792420566082, -0.02769765444099903, -0.01461012102663517, 0.040572475641965866, -0.019983958452939987, 0.017756056040525436, 0.021943170577287674, -0.0064150188118219376, -0.03907227888703346, 0.020790034905076027, -0.01584162563085556, -0.005219899583607912, -0.013311443850398064, 0.005510982591658831, 0.015069136396050453, -0.01607673056423664, 0.022973155602812767, 0.006275075022131205, 0.050155818462371826, -0.006638928782194853, -0.00022058624017518014, -0.008620531298220158, 0.027048315852880478, 0.04182637110352516, 0.014789248816668987, 0.017140302807092667, -0.029376979917287827, 0.019189078360795975, -0.012438194826245308, 0.02366727776825428, -0.002570765558630228, -0.02295076474547386, 0.005636931862682104, 0.04104268550872803, 0.0003705009294208139, -0.021808825433254242, 0.0023902382235974073, -0.029287414625287056, -0.0003197713231202215, 0.004237494897097349, 0.016916392371058464, 0.009454595856368542, -0.03148173168301582, 0.042005497962236404, -0.001575765898451209, -0.03622862324118614, 0.019771244376897812, 0.002584759844467044, -0.019368207082152367, 0.009471388533711433, 0.00016338426212314516, 0.010523765347898006, -0.01636781357228756, -0.0049735987558960915, 0.0219543669372797, 0.021383395418524742, -0.005169519688934088, 0.042475707828998566, 0.0049288165755569935, -0.014666099101305008, -0.0027065109461545944, -0.001614950131624937, 0.02765287272632122, -0.008474989794194698, 0.0049288165755569935, 0.012505368329584599, -0.0077360873110592365, 0.0018444578163325787, 0.0033250621054321527, 0.03940814360976219, -0.0156960841268301, 0.012438194826245308, -0.03723621740937233, -0.018853213638067245, -0.03862445801496506, -0.005292670335620642, -0.026824407279491425, 0.012886014766991138, 0.013927196152508259, 0.0012021162547171116, -0.02253653109073639, -0.008743681944906712, 0.002345456276088953, 0.06569516658782959, -0.001745097804814577, -0.011307450011372566, 0.013904805295169353, 0.028100693598389626, -0.0011020565871149302, 0.004954006522893906, 0.02371205948293209, 0.05208144336938858, 0.005799266509711742, -0.004122741054743528, -0.0017213074024766684, -0.019054733216762543, 0.005079955793917179, 0.02268207259476185, -0.003409028286114335, 0.0019368206849321723, 0.022446967661380768, -0.01650216057896614, 0.047558464109897614, -0.014699685387313366, 0.013524157926440239, -0.0009467190830036998, 0.01827104762196541, -0.014475774951279163, -0.03931858018040657, 0.015472174622118473, -0.008407817222177982, -0.0014931991463527083, -0.04460285231471062, 0.023734450340270996, 0.015304242260754108, 0.02680201642215252, -0.013009165413677692, 0.014050346799194813, 0.036116667091846466, -0.02841416746377945, 0.019133102148771286, 0.008346241898834705, -0.013994368724524975, -0.01607673056423664, -0.01683802530169487, 0.021808825433254242, -0.002978001721203327, -0.019625702872872353, -0.0166477020829916, -0.026578105986118317, 0.02391357719898224, 0.019189078360795975, -0.03036218322813511, 0.011005171574652195, 0.028727641329169273, -0.02875003218650818, 0.02357771247625351, 0.051678404211997986, 0.03466125205159187, 0.00668930821120739, -0.0041311378590762615, 0.03269084542989731, -0.027339398860931396, -0.010131923481822014, 0.017241062596440315, 0.0011237477883696556, -0.016188686713576317, -0.03546733036637306, 0.01027186680585146, -0.02229023166000843, 0.008760474622249603, 0.01612151227891445, -0.011077942326664925, 0.0398559644818306, -0.02561529353260994, -0.018002355471253395, -0.016871610656380653, 0.005810461938381195, -0.026622887700796127, -0.008928406983613968, -0.012057548388838768, -0.009006775915622711, -0.0028884378261864185, 0.007478590589016676, -0.0030199848115444183, 0.04715542495250702, 0.0024714055471122265, 0.008654117584228516, 0.020890794694423676, 0.010367028415203094, -0.022558921948075294, 0.015091527253389359, -0.017353016883134842, -0.0030647667590528727, 0.008642922155559063, -0.024204660207033157, 0.01859571784734726, 0.008027169853448868, -0.0212042685598135, 0.0132554667070508, -0.004360645543783903, 0.020151890814304352, 0.03271323814988136, -0.02760809101164341, -0.01683802530169487, -0.006874034181237221, -0.0010285861790180206, 0.03828859329223633, 0.054096631705760956, 0.016994761303067207, -0.02760809101164341, -0.028190257027745247, -0.00903476495295763, 0.025413773953914642, -0.0038344571366906166, -0.00904036220163107, -0.019267447292804718, 0.007668914273381233, -0.018808431923389435, -0.004640532657504082, 0.018886800855398178, -0.02532421052455902, 0.009874426759779453, -0.019670484587550163, -0.020879598334431648, -0.009241880849003792, -0.020431779325008392, 0.019995154812932014, -0.010467788204550743, 0.0298919714987278, -0.009090742096304893, 0.021752847358584404, 0.03448212519288063, 0.015998363494873047, 0.01731943152844906, -0.027876783162355423, -0.013904805295169353, -0.01422947458922863, 0.020006349310278893, -0.003982797265052795, 0.0004310265649110079, -0.01787920668721199, 0.02751852758228779, -0.016490964218974113, 0.02566007524728775, 0.013356225565075874, 0.011788856238126755, -0.0011650312226265669, 0.01887560449540615, 0.013109925203025341, -0.024876389652490616, -0.010663709603250027, 0.018248656764626503, 0.0030843589920550585, -0.02049895189702511, -0.022178275510668755, -0.03266845643520355, 0.01812550611793995, -0.02196556143462658, -0.0029863982927054167, 0.016099121421575546, -0.017845619469881058, -0.011094735935330391, 0.019760049879550934, -0.015852821990847588, 0.012303849682211876, -0.03385517746210098, 0.01768888160586357, 0.02561529353260994, -0.011676901951432228, -0.019524943083524704, -0.022077515721321106, -0.003168325172737241, -0.01337861642241478, 0.010607731528580189, -0.0021705266553908587, 0.02400314249098301, 0.004710504785180092, -0.015225873328745365, 0.017868010327219963, 0.027809610590338707, 0.006599744316190481, 0.026981143280863762, -0.013613722287118435, 0.05579834803938866, 0.016334228217601776, 0.007450602017343044, 0.008419012650847435, -0.003190716030076146, -0.002358051249757409, 0.028570903465151787, -0.013736872933804989, -0.009309054352343082, -0.002411229768767953, 0.015528151765465736, 0.012718082405626774, 0.02599593997001648, -0.031145866960287094, -0.022424576804041862, -0.010450994595885277, -0.005376636516302824, -0.03537776321172714, -0.03125782310962677, -0.022178275510668755, 0.01401675958186388, -0.00558655196800828, -0.01116750668734312, 0.0010901613859459758, 0.04388634115457535, 0.011934397742152214, -0.0011111529311165214, 0.0077864667400717735, -0.03855728730559349, -0.010882020927965641, -0.014453384093940258, -0.022446967661380768, -0.023420976474881172, -0.0053290557116270065, 0.023779232054948807, -0.008743681944906712, 0.04406546801328659, -0.01095479167997837, -0.019771244376897812, -0.00427947798743844, 0.02063329704105854, 0.051812753081321716, -0.0252346470952034, -0.03320583701133728, -0.031705643981695175, 0.048409320414066315, 0.01944657601416111, -0.07223333418369293, 0.004273880273103714, -0.008307057432830334, 0.027630481868982315, -0.005494189448654652, -0.04137855023145676, 0.027249835431575775, 0.04993190988898277, -0.03781838342547417, -4.222363349981606e-05, 0.007120335008949041, 0.015808038413524628, 0.018047139048576355, -0.00700837979093194, -0.03239976242184639, 0.017632905393838882, 0.015315437689423561, -0.012639714404940605, 0.005228296387940645, 0.012270262464880943, 0.008637324906885624, -0.01323307491838932, 0.029869580641388893, -0.0018458572449162602, 0.0024126293137669563, -0.023420976474881172, -0.037504907697439194, -0.044468507170677185, -0.014285451732575893, -0.0004250789643265307, -0.011189897544682026, -0.00010915607708739117, 0.01157614216208458, -0.03591514751315117, -0.009768069721758366, -0.001030685263685882, 0.028011128306388855, -0.02476443536579609, -0.0006769776227883995, 0.054768361151218414, -0.006319857202470303, -0.01711791194975376, -0.008234286680817604, -0.03163846954703331, 0.007036368828266859, -0.01930103451013565, -0.005147128831595182, 0.006577353458851576, 0.020476561039686203, -0.0144197978079319, 0.020812425762414932, 0.002499394351616502, 0.019334619864821434, -0.009527366608381271, 0.008676508441567421, 0.0031991128344088793, 0.022558921948075294, 0.03351931273937225, -0.02935458905994892, -0.04993190988898277, -0.020028740167617798, -0.02671245113015175, 0.011889616027474403, 0.002685519400984049, 0.015337828546762466, 0.014733271673321724, -0.005357044283300638, -0.007764075882732868, 0.0013168700970709324, -0.001598156988620758, -0.01575206220149994, -0.010887619107961655, -0.03363126888871193, 0.012796451337635517, -0.042945921421051025, -0.042005497962236404, 0.016905197873711586, 0.03141456097364426, -0.030003927648067474, -0.05208144336938858, -0.02011830545961857, 0.014766857959330082, 0.012046352960169315, 0.014386211521923542, 0.015830431133508682, -0.02536899223923683, -0.00740022212266922, -0.05844048410654068, 0.029466543346643448, -0.023085111752152443, 0.032892365008592606, -0.016636505722999573, -0.00480286730453372, 0.026622887700796127, -0.0016821231693029404, 0.00926986988633871, 0.009521768428385258, -0.0077696735970675945, 0.015975970774888992, -0.011010769754648209, -0.041244205087423325, 0.007170714903622866, 0.02111470326781273, 0.0009733083425089717, 0.039296187460422516, -0.009566551074385643, 0.013804045505821705, 0.008015974424779415, 0.01893158257007599, 0.044849153608083725, -0.024294225499033928, 0.0032998721580952406, 0.00877726823091507, 0.02774243801832199, 0.008407817222177982, 0.00923068542033434, 0.008195102214813232, -0.037012308835983276, 0.009404215961694717, 0.018752453848719597, -0.019368207082152367, 0.017229866236448288, 0.00142882508225739, 0.008525369688868523, 0.02391357719898224, -0.015964776277542114, 0.011156311258673668, -0.019614508375525475, -0.014576534740626812, 0.01673726551234722, 0.008536565117537975, 0.031616076827049255, 0.022167081013321877, -0.025055518373847008, -0.00994159933179617, -0.005748886615037918, -0.03728099912405014, 0.01893158257007599, 0.004083557054400444, -0.007943203672766685, -0.019177883863449097, 0.006879631895571947, -0.017912792041897774, 0.004531376529484987, 0.03938575088977814, 0.015091527253389359, 0.009644919075071812, 0.003451011376455426, -0.0021551328245550394, -0.015998363494873047, 0.11374623328447342, 0.0075289704836905, -0.01626705378293991, -0.05364881455898285, -0.025077909231185913, -0.03647492453455925, -0.006862838752567768, -0.0010719686979427934, -0.007058759685605764, 0.01645737886428833, 0.01991678588092327, -0.0031403363682329655, -0.015225873328745365, 0.013121120631694794, -0.029824798926711082, -0.0019004353089258075, -0.02362249419093132, 0.004313064739108086, 0.026869188994169235, -0.0055193789303302765, -0.024204660207033157, 0.009454595856368542, 0.015830431133508682, 0.0009481185115873814, -0.013770459219813347, -0.0029248232021927834, -0.0132554667070508, 0.012326240539550781, 0.010943596251308918, -0.018707672134041786, -0.017330626025795937, -0.021327419206500053, 0.010820446535944939, 0.013132316060364246, -0.005429815035313368, -0.015561738051474094, 0.0031403363682329655, -0.017196280881762505, -0.03651970624923706, 0.05284273624420166, 0.0031263420823961496, -0.003473402466624975, -0.04428938031196594, -0.02154013328254223, -0.0035965528804808855, 0.020140696316957474, -0.022021539509296417, 0.003470603609457612, 0.003078761277720332, -0.013322639279067516, 0.010439799167215824, -0.02760809101164341, 0.004805666394531727, 0.0094881821423769, -0.0349971167743206, -0.0021061524748802185, -0.007047564256936312, 0.04525219276547432, 0.012751668691635132, -0.04122181236743927, 0.023174675181508064, -0.015147505328059196, 0.049215398728847504, -0.03629579395055771, 0.053335338830947876], [0.050382278859615326, 0.017984962090849876, 0.06111229211091995, 0.0077243889681994915, -0.021996522322297096, 0.014595254324376583, -0.018131280317902565, 0.001789351343177259, 0.027654165402054787, 0.03358005732297897, 0.0035939442459493876, 0.02360602468252182, 0.03782328963279724, -0.001307720085605979, 0.001156067242845893, 0.009346083737909794, 0.009815521538257599, 0.002787669189274311, -0.022362319752573967, -0.014192878268659115, 0.04289565980434418, 0.005099803674966097, -0.029458757489919662, 0.03782328963279724, -0.046456072479486465, -0.026142209768295288, 0.007407365832477808, 0.07613430917263031, 0.01743626780807972, -0.0588199719786644, 0.03540903702378273, -0.036043085157871246, 0.040261927992105484, -0.03279969468712807, 0.027142051607370377, -0.00502054812386632, -0.00029816169990226626, 0.022423284128308296, 0.03433603793382645, 0.0034384808968752623, -0.07393953204154968, 0.014765959233045578, -4.315247861086391e-05, -0.004075575154274702, 0.0025514259468764067, 0.0051577212288975716, -0.02787364274263382, -0.013254002667963505, -0.01308329775929451, 0.05491814762353897, -0.02394743449985981, -0.006273398641496897, 0.010919005610048771, 0.028117507696151733, -0.007462235167622566, 0.04228599742054939, -0.010870233178138733, 0.02266714908182621, 0.018192246556282043, -0.050382278859615326, -0.03728678822517395, -0.002988856751471758, -0.05340619385242462, 0.02121615968644619, -0.01019351091235876, 0.006809899117797613, -0.01104703452438116, 0.02738591469824314, -0.06023438274860382, 0.01607063040137291, -0.014839118346571922, -0.010089868679642677, -0.02597150392830372, -0.054479192942380905, 0.018862871453166008, -0.011735949665307999, -0.006184997968375683, 0.03511640056967735, 0.034457966685295105, 0.04231038689613342, 0.010382505133748055, 0.020996680483222008, -0.016790028661489487, -0.021142998710274696, 0.0009693589527159929, -0.007072052918374538, -0.01541219837963581, 0.016972927376627922, 0.0077731614001095295, -0.015278073027729988, -0.02078939788043499, 0.0091570895165205, 0.0029873326420783997, 0.08735204488039017, 0.011565244756639004, -0.006627001333981752, 0.03779890388250351, -0.039944905787706375, 0.027971189469099045, 0.07296407967805862, 0.017253370955586433, 0.033287420868873596, 0.02488631010055542, -0.007571973837912083, 0.015570709481835365, -0.056722741574048996, -0.0506749153137207, -0.010541017167270184, 0.016619324684143066, -0.05511324107646942, -0.03643326461315155, -0.008968094363808632, 0.01019351091235876, 0.07145211845636368, -0.0010105109540745616, 0.0142782311886549, 0.0030482986476272345, -0.00520344590768218, -0.006188046187162399, 0.011894461698830128, 0.0018579380121082067, 0.017984962090849876, 0.017046086490154266, -0.10466638207435608, -0.030556146055459976, -0.012181001715362072, -0.023423127830028534, 0.0064562964253127575, 0.02115519344806671, -0.009199765510857105, -0.0017741097835823894, -0.028775939717888832, 0.01902138441801071, -0.052430737763643265, -0.034823764115571976, -0.027288369834423065, -0.018423916772007942, -0.039579108357429504, -0.034970082342624664, 0.025922732427716255, 0.025873959064483643, -0.01957007683813572, 0.052967239171266556, 0.02224038727581501, -0.052284419536590576, 0.002831869525834918, -0.03353128582239151, 0.03660397231578827, -0.005230880342423916, -0.028605233877897263, -0.05628378689289093, 0.047480300068855286, -0.04118861258029938, -0.00996793620288372, 0.0012162711936980486, 0.02311829663813114, 0.005971617065370083, 0.04706573113799095, -0.0008664788911119103, -0.023057330399751663, -0.005895409733057022, -0.019265247508883476, 0.003801228478550911, 0.00713301869109273, 0.03594553843140602, -0.05306478217244148, -0.05452796816825867, -0.017936188727617264, -0.04957753047347069, -0.03177546709775925, -0.05589360371232033, -0.021338090300559998, -0.07164721190929413, -0.02465463988482952, -0.02085036225616932, -0.038408562541007996, -0.00509675545617938, 0.01839953102171421, -0.0021688644774258137, 1.4396066944755148e-05, 0.029727008193731308, -0.007919480092823505, -0.043676022440195084, -0.031214578077197075, 0.008163344115018845, 0.04550500214099884, -0.019582271575927734, 0.03440919518470764, -0.01626572199165821, 0.02653239108622074, 0.0009061067830771208, -0.002432542387396097, 0.03262899070978165, 0.04243231937289238, -0.045407455414533615, 0.014765959233045578, -0.014497708529233932, 0.009498498402535915, 0.023618217557668686, -0.030385442078113556, 0.025093594565987587, -0.00847426988184452, 0.04118861258029938, 0.014558674767613411, -0.03655519708991051, -0.03219003230333328, 0.018192246556282043, 0.06413620710372925, 0.016972927376627922, -0.006352654658257961, -0.0010806218488141894, -0.045773252844810486, -0.05135773494839668, 0.021008875221014023, -0.031555987894535065, -0.017363108694553375, 0.02755662053823471, 0.0422128401696682, -0.017021698877215385, 0.00924244150519371, 0.006944024469703436, 0.025215527042746544, -0.00427371496334672, -0.041286155581474304, -0.008644974790513515, -0.02042360045015812, -0.02266714908182621, -0.052967239171266556, 0.01624133624136448, -0.05608869716525078, -0.012778468430042267, 0.04877277836203575, -0.00457854475826025, -0.03384830802679062, -0.007102536037564278, 0.008230406790971756, -0.016911961138248444, -0.04448077455163002, 0.0028714973013848066, 0.03399462625384331, -0.015168334357440472, -0.015631675720214844, 0.012863820418715477, -0.05389392003417015, -0.004477950744330883, -0.004032899159938097, 0.0071147289127111435, -0.03643326461315155, 0.06613589078187943, 0.03950595110654831, 0.012961366213858128, -0.020899135619401932, 0.023874275386333466, -0.04801680147647858, 0.01190055813640356, 0.009010771289467812, 0.005480840802192688, -0.04684625566005707, 0.044919729232788086, 0.00211856747046113, 0.0023014654871076345, -0.01446112897247076, -0.009090026840567589, -0.010004516690969467, -0.032946012914180756, -0.012382188811898232, 0.028434529900550842, -0.05862487852573395, -0.03972542658448219, 0.027337143197655678, -0.007291530258953571, 0.0017969721229746938, 0.03679906204342842, -0.02465463988482952, -0.041798271238803864, 0.047114502638578415, -0.016180370002985, -0.04467586427927017, -0.006130128633230925, -0.021691692993044853, -0.06077088415622711, -0.015704834833741188, 0.027507847175002098, -0.025288686156272888, -0.004648655652999878, -0.03457989916205406, -0.0036183304619044065, 0.039237700402736664, -0.0026733579579740763, 0.03723801672458649, 0.09081491082906723, -0.01905796304345131, -0.023935241624712944, -0.018338564783334732, 0.007041569799184799, 0.0009861246217042208, -0.017131438478827477, -0.010376408696174622, 0.003080305876210332, -0.023167070001363754, -0.04189581796526909, 0.05535710230469704, 0.006203287746757269, 0.02619098126888275, -0.04087159037590027, -0.01933840662240982, -0.002437114715576172, -0.027751710265874863, -0.003444577567279339, -0.037213630974292755, -0.019240861758589745, 0.038237858563661575, -0.04787048324942589, -0.007474428508430719, -0.061990201473236084, 0.006032583303749561, -0.018509268760681152, -0.013717344030737877, 0.018387338146567345, 0.038554880768060684, 0.013156456872820854, 0.02414252609014511, 0.02439858205616474, -0.0164120402187109, 0.01908234879374504, -0.0077487751841545105, -0.02738591469824314, 0.02070404402911663, -0.02030166983604431, -0.03194617107510567, -0.05096755549311638, 0.014241651631891727, 0.03409217298030853, -0.010693431831896305, 0.0073463995940983295, 0.02738591469824314, 0.024581480771303177, 0.0117176603525877, 0.022508637979626656, -0.06320951879024506, -0.004929098766297102, 0.026386072859168053, 0.032409511506557465, -0.002534660277888179, 0.0104373749345541, 0.037359949201345444, 0.04589518532156944, 0.06779415905475616, 0.0087303277105093, 0.04109106585383415, 0.008138957433402538, 0.013473480008542538, 0.005172962788492441, 0.005450358148664236, -0.030921941623091698, -0.00436516385525465, -0.032068103551864624, -0.009626527316868305, -0.03238512575626373, 0.038237858563661575, -0.021996522322297096, -0.016143789514899254, 0.012071263045072556, 0.024191297590732574, 0.006773319561034441, -0.012583376839756966, -0.014339196495711803, 0.01360760536044836, 0.06516043096780777, -0.042529862374067307, 0.037042926996946335, 0.030580531805753708, -0.022764693945646286, -0.05111387372016907, 0.02858084812760353, -0.0134247075766325, 0.003712827805429697, 0.04445638880133629, 0.001620170776732266, 0.01052272692322731, 0.04138370230793953, -0.0181190874427557, -0.004505385644733906, 0.045163594186306, 0.03389707952737808, 0.035506583750247955, -0.041286155581474304, -0.007309820037335157, 0.03723801672458649, 0.006340461317449808, -0.007626843173056841, -0.02187459170818329, -0.025020435452461243, 0.014668413437902927, -0.04911419004201889, 0.028458915650844574, 0.10466638207435608, 0.010321538895368576, 0.017875222489237785, 0.0036701515782624483, 0.01454648096114397, -0.039579108357429504, -0.005864926613867283, -0.04070088267326355, 0.027581006288528442, 0.012205387465655804, 0.04440761357545853, 0.02738591469824314, -0.007187888491898775, -0.0277029387652874, 0.05803960561752319, 0.020118771120905876, 0.047992415726184845, 0.028458915650844574, -0.02269153483211994, -0.002098753582686186, 0.001780206453986466, 0.04709011688828468, 0.00996793620288372, 0.009175378829240799, 0.036896608769893646, 0.00046677072532474995, -0.014424549415707588, 0.05643010511994362, -0.028946643695235252, 0.05384514853358269, 0.03765258565545082, 0.01589992642402649, -0.020179737359285355, -0.022679341956973076, -0.01600966416299343, 0.031580373644828796, 0.018789712339639664, 0.01658274419605732, -0.034970082342624664, -0.016399847343564034, -0.009888680651783943, 0.026288527995347977, -0.04160318151116371, -0.004048140719532967, -0.02994648553431034, -0.00978503841906786, 0.004352970514446497, 0.04033508896827698, 0.018704360350966454, 0.04443200305104256, 0.00627949507907033, 0.028312597423791885, 0.00028063400532118976, -0.007224468048661947, -0.0002011877077165991, 0.02417910471558571, -0.050577372312545776, 0.012394382618367672, -0.04826066642999649, 0.026776256039738655, -0.02719082497060299, -0.03865242749452591, 0.03784767538309097, -0.0379452221095562, 0.018021542578935623, 0.0634046122431755, 0.06169756501913071, -0.008492560125887394, 0.010217897593975067, 0.0349213108420372, -0.016704676672816277, -0.025361845269799232, -0.014436742290854454, -0.007791451178491116, -0.017533814534544945, -0.01677783578634262, -0.0014494659844785929, -0.03521394729614258, 0.005334522575139999, 0.017411882057785988, -0.011199449189007282, -0.023167070001363754, -0.01957007683813572, 0.0417494997382164, 0.0302635096013546, 0.06979384273290634, -0.05013841763138771, -0.0028745457530021667, 0.03165353462100029, 0.03160475939512253, 0.04357847943902016, -0.0005768905393779278, 0.009138799272477627, -0.03358005732297897, -0.01991148665547371, -0.015570709481835365, 0.025703255087137222, -0.011431120336055756, -0.01155914831906557, -0.03711608424782753, -0.044749025255441666, -0.0008375200559385121, -0.010784880258142948, -0.003990223165601492, 0.0019341454608365893, -0.03423849120736122, 0.031238965690135956, -0.041310545057058334, 0.007425655610859394, 0.008961997926235199, 0.009821617975831032, 0.0200212262570858, -0.011870075017213821, -0.021289318799972534, -0.03692099452018738, 0.05799083411693573, 0.01865558698773384, 0.023215843364596367, -0.0006820568232797086, -0.00723056448623538, 0.0006378564867191017, 0.012595569714903831, -0.017838643863797188, -0.00876081082969904, 0.008657168596982956, -0.00978503841906786, 0.005883216392248869, -0.014156298711895943, -0.04206652194261551, -0.008248696103692055, -0.003536026459187269, -0.024727798998355865, -0.010967778973281384, -0.03557974100112915, -0.0006744361016899347, -0.043383385986089706, -0.011863978579640388, -0.004423081409186125, 0.01009596511721611, -0.006828188896179199, -0.01891164481639862, -0.009815521538257599, -0.014826924540102482, -0.019618850201368332, -0.02926366776227951, -0.04930927976965904, 0.016972927376627922, 0.01213222835212946, 0.013741730712354183, 0.02431323006749153, 0.03262899070978165, -0.009236345067620277, -0.004368212074041367, -0.016765642911195755, -0.013388128019869328, 0.010016709566116333, 0.006364847533404827, 0.004404791630804539, -0.00022081114002503455, -0.0023106103762984276, 0.03511640056967735, -0.02136247791349888, 0.014961049892008305, -0.009919163770973682, 0.001326772035099566, 0.008577912114560604, -0.01155914831906557, -0.002037787577137351, 0.008876645937561989, 0.0391889289021492, -0.009413146413862705, -0.037701357156038284, 0.00790728721767664, -0.03557974100112915, 0.0066879671066999435, 0.029995258897542953, 0.010284959338605404, 0.036189403384923935, 0.02113080583512783, 0.017667939886450768, 0.02702011913061142, -0.03543342277407646, -0.01630230061709881, 0.02582518570125103, 0.002420349046587944, 0.012235870584845543, 0.011790819466114044, -0.03404339775443077, -0.015278073027729988, 0.016485199332237244, -0.004063382279127836, -0.025410618633031845, -0.008888838812708855, 0.013656377792358398, -0.0006024200120009482, 0.002796814078465104, -0.004413936287164688, -0.0019280489068478346, -0.01341251377016306, 0.03436042368412018, -0.004383453633636236, -0.008986384607851505, -0.047968026250600815, 0.05438164994120598, 0.03901822119951248, -0.022228194400668144, -0.040115609765052795, 0.02841014415025711, -0.034653060138225555, -0.05525955930352211, 0.011571342125535011, -0.024764377623796463, 0.0202528964728117, -0.009315600618720055, 0.028678392991423607, 0.001326772035099566, -0.014692799188196659, -0.05555219575762749, -0.020118771120905876, -0.0232402291148901, -0.017680132761597633, -0.03611624240875244, -0.026117822155356407, -0.011967620812356472, -0.020630884915590286, -0.0009625002858228981, 0.01709485985338688, -0.016509585082530975, 0.010370312258601189, -0.006748933345079422, 0.012065166607499123, -0.006559938658028841, -0.029678236693143845, 0.009772845543920994, -0.005224783904850483, 0.0061941430903971195, -0.017850836738944054, -0.037213630974292755, 0.0006824378506280482, 0.005075417459011078, 0.0015698737697675824, -0.011199449189007282, 0.0008390442235395312, 0.014424549415707588, 0.04928489401936531, 0.03828663006424904, 0.019813941791653633, -0.03682344779372215, 0.05423533171415329, -0.018301986157894135, 0.016107210889458656, 0.03611624240875244, 0.024922890588641167, 0.018070314079523087, 0.02633730135858059, 0.003749407362192869, -0.004282859619706869, -0.05262582749128342, 0.0005605058977380395, -0.032726533710956573, -0.0036701515782624483, 0.02482534386217594, -0.011138482950627804, 0.06462392956018448, -0.010742204263806343, -0.04055456444621086, 0.013595412485301495, -0.005413778591901064, 0.007675616070628166, 0.01583896018564701, 0.02164292149245739, 0.017741098999977112, 0.01436358317732811, 0.014290424063801765, -0.004730959422886372, 0.03848172351717949, 0.009766749106347561, -0.02755662053823471, -0.026751868426799774, -0.004032899159938097, 0.027605392038822174, 0.056381333619356155, 0.014339196495711803, 0.03336058184504509, -0.043359000235795975, -0.017814258113503456, -0.023508479818701744, 0.026434846222400665, 0.018606815487146378, -0.014339196495711803, 0.018753133714199066, 0.01677783578634262, 0.007968252524733543, 0.032946012914180756, 0.016997313126921654, 0.015607289038598537, -0.02499604970216751, 0.007401269394904375, 0.01814347319304943, 0.03677467629313469, -0.017399689182639122, -0.02337435446679592, -0.020447988063097, -0.018045928329229355, 0.006401427090167999, -0.004584641195833683, -0.024666832759976387, -0.05033350735902786, -0.02975139580667019, -0.029117349535226822, -0.0018289792351424694, -0.030165962874889374, 0.049431212246418, 0.007840224541723728, -0.01298575196415186, -0.001603405107744038, -0.04550500214099884, -0.02027728222310543, -0.02755662053823471, 0.05350373685359955, -0.0011865502456203103, -0.002040836028754711, 0.008693748153746128, 0.026629937812685966, 0.004996161442250013, 0.011248222552239895, -0.04033508896827698, -0.02042360045015812, -0.0049260505475103855, 0.011973717249929905, 0.018350757658481598, 0.026264142245054245, -0.02383769489824772, 0.030653690919280052, 0.05457673966884613, -0.003010194981470704, -0.02804434858262539, 0.020069997757673264, -0.00235023838467896, -0.014753765426576138, -0.049870166927576065, 0.021886784583330154, 0.013400320895016193, 0.002429493935778737, -0.006992797367274761, -0.039579108357429504, -0.0003682725946418941, -0.03731117397546768, 0.013973400928080082, -0.0011979814153164625, -0.007309820037335157, -0.004203604068607092, 0.011650597676634789, 0.014839118346571922, 0.016631517559289932, 0.00884616281837225, -0.014424549415707588, -0.015095175243914127, 0.017594780772924423, -0.02269153483211994, 0.02070404402911663, 0.01446112897247076, 0.008913225494325161, 0.02497166208922863, -0.014400162734091282, 0.0018152619013562799, 0.0071147289127111435, 0.03828663006424904, 0.009138799272477627, -0.015497550368309021, -0.0018792761256918311, -0.010693431831896305, -0.0066209048964083195, -0.003764648921787739, 0.0016323638847097754, 0.015119560994207859, 0.009681396186351776, -0.010138641111552715, -0.011784723028540611, 0.000935065618250519, -0.015058595687150955, -0.0007315916591323912, -0.0230085588991642, -0.0277029387652874, 0.018765326589345932, 0.014131912961602211, -0.0068586720153689384, 0.04099351912736893, 0.011851785704493523, -0.007413462270051241, -0.001236847136169672, -0.007224468048661947, -0.0002265266957692802, -0.01837514527142048, -0.01771671138703823, -0.0002850159362424165, -0.025020435452461243, 0.0028257728554308414, -0.03579922020435333, 0.00020423601381480694, 0.025191139429807663, -0.04928489401936531, -0.021082034334540367, 0.007706099189817905, -0.03245828300714493, 0.014644026756286621, -0.008199923671782017, 0.010900716297328472, 0.0681355744600296, 0.03440919518470764, -0.03401901200413704, 0.006773319561034441, -0.010571499355137348, 0.0010181317338719964, 0.014875697903335094, -0.01411971915513277, 0.015851153060793877, 0.025873959064483643, -0.00499006500467658, -0.06057579070329666, -0.0039292569272220135, 0.018936030566692352, -0.015436584129929543, -0.04192020371556282, 0.02081378363072872, -0.011979813687503338, -0.02053334005177021, 0.003362273331731558, -0.011656694114208221, 0.019813941791653633, -0.026605550199747086, 0.03348251432180405, -0.006209384184330702, 0.014339196495711803, 0.004337728954851627, 0.018277598544955254, 0.020947908982634544, -0.0011644500773400068, -0.015204913914203644, 0.05838101729750633, -0.027800483629107475, -9.754555503604934e-05, -0.02243547886610031, 0.018679974600672722, 0.05350373685359955, -0.02456928789615631, -0.0013526825932785869, 0.002885214751586318, 0.003499446902424097, 0.005361957475543022, -0.02283785305917263, -0.005557048600167036, -0.06374602019786835, 0.0007742678862996399, -0.03899383544921875, 0.00256361928768456, -0.012376092374324799, -0.014997629448771477, -0.016143789514899254, 0.00511199701577425, -0.01241267193108797, -0.00911441259086132, -0.023703571408987045, -0.00999841932207346, 0.011845688335597515, 0.019948067143559456, -0.0251423679292202, -0.008565719239413738, 0.039774201810359955, 0.02102106809616089, 0.03557974100112915, 0.020630884915590286, -0.02550816349685192, -0.023898661136627197, 0.03536026552319527, -0.009748458862304688, 0.013058911077678204, -0.02975139580667019, -0.03811592608690262, -0.017765484750270844, -0.03316548839211464, -0.004292004741728306, 0.006370944436639547, 0.0208747498691082, 0.0013412514235824347, -0.007785354740917683, 0.0034963986836373806, -0.02104545384645462, -0.024727798998355865, -0.06398988515138626, -0.012790661305189133, 0.0391889289021492, 0.019887100905179977, 0.03214126080274582, 0.010144737549126148, -0.013729536905884743, 0.002696220064535737, 0.02482534386217594, -0.028654007241129875, -0.001273426809348166, -0.026410460472106934, 0.007395172491669655, -0.010291056707501411, 0.002859304193407297, -0.023386547341942787, -0.015058595687150955, -0.034140944480895996, -0.02394743449985981, -0.02217942103743553, 0.021460022777318954, 0.0033683700021356344, 0.016570551320910454, -0.0221550352871418, 0.009528981521725655, 0.022191613912582397, 0.014387969858944416, -0.03828663006424904, -0.03726240247488022, 0.03028789535164833, -0.0028440626338124275, -0.008754713460803032, 0.010400795377790928, 0.008766907267272472, 0.02823943831026554, 0.03553096950054169, -0.00796215608716011, 0.0031016438733786345, 0.003258631331846118, 0.0002046170411631465, 0.016119403764605522, 0.0005182107561267912, -0.026654323562979698, 0.026434846222400665, -0.01436358317732811, 0.03826224431395531, 0.038213472813367844, 0.025752026587724686, 0.01369295734912157, -0.010608079843223095, -0.02038702182471752, 0.005121141672134399, -0.006309978198260069, 0.0202528964728117, 0.019070155918598175, -0.008486463688313961, 0.02653239108622074, 0.020057804882526398, -0.014644026756286621, -0.008145053870975971, -0.007553684059530497, 0.024069366976618767, 0.003222051775082946, 0.010534919798374176, 0.02138686366379261, -0.005023596342653036, -0.02977578155696392, 0.04928489401936531, -0.007456138730049133, 0.02420349232852459, -0.022020909935235977, 0.024642447009682655, -0.01880190707743168, -0.003304355777800083, 0.0012764750281348825, -0.0014136484824120998, 0.02767855115234852, -0.0019722492434084415, -0.02275250107049942, 0.02294759266078472, 0.01632668823003769, -0.02497166208922863, -0.03094632737338543, -0.0185458492487669, 0.0025148463901132345, -0.01411971915513277, -0.010699528269469738, 0.057356785982847214, 0.037359949201345444, -0.01318084355443716, 0.014351390302181244, 0.001841172343119979, -0.004429177846759558, -0.00553875882178545, -0.004691331647336483, 0.04911419004201889, 0.0016765642212703824, 0.016253529116511345, -0.013314968906342983, -0.05764942616224289, -0.0005178297287784517, 0.01694853976368904, -0.02550816349685192, 0.015912119299173355, -0.015790186822414398, 0.03348251432180405, 0.012522410601377487, 0.005288798362016678, -0.004804118536412716, -0.032263193279504776, -0.0015066216001287103, 0.03572605922818184, -0.0012879061978310347, -0.001982918241992593, 0.03948156535625458, 0.008071894757449627, 0.014436742290854454, 0.018216632306575775, 0.039603497833013535, 0.013022331520915031, 0.014839118346571922, 0.03665274381637573, -0.008992481045424938, 0.005035789217799902, -0.02772732451558113, 0.018131280317902565, -0.02200871706008911, -0.01201639324426651, 0.052089326083660126, 0.007815837860107422, 0.012851627543568611, -0.006870865356177092, -0.033628832548856735, -0.007145212031900883, -0.005313184577971697, -0.04138370230793953, -0.0033165488857775927, 0.02702011913061142, 0.026776256039738655, 0.012205387465655804, -0.020984487608075142, -0.00850475300103426, 0.026044663041830063, 0.021923363208770752, -0.003158037317916751, 0.010022806003689766, 0.015082981437444687, -0.005861878395080566, 0.02102106809616089, 0.016655903309583664, 0.011053130961954594, -0.011839591898024082, -0.013827082701027393, -0.01828979142010212, 0.007803644519299269, -0.027312755584716797, -0.035506583750247955, -0.016594937071204185, -0.019667623564600945, 0.025361845269799232, 0.011577438563108444, 0.00531928101554513, 0.028117507696151733, 0.001450990210287273, 0.01607063040137291, -0.02736152894794941, 0.06530675292015076, 0.0030833540949970484, 0.02565448172390461, 0.003383611561730504, -0.023496286943554878, -0.008358434773981571, -0.03443358093500137, 0.03365321829915047, 0.010693431831896305, -0.009315600618720055, 0.009778941981494427, 0.01318084355443716, 0.006370944436639547, 0.009620430879294872, -0.0208747498691082, -0.03250705823302269, -0.0011271084658801556, 0.012827240861952305, -0.018838485702872276, -0.00617890153080225, 0.04184704273939133, 0.02334996871650219, 0.029214894399046898, -0.014205072075128555, -0.023203648626804352, 0.00466389674693346, -0.03728678822517395, -0.00267030973918736, -0.011485989205539227, -0.02147221565246582, -0.0027739517390727997, 0.013010138645768166, -0.004782780539244413, -0.012187098152935505, 0.025435004383325577, 0.005593628156930208, -0.015168334357440472, 0.014631833881139755, -0.024081559851765633, -0.0383354052901268, 0.03811592608690262, 0.012863820418715477, 0.02602027729153633, -0.028458915650844574, 0.0037433106917887926, 0.0456269346177578, 0.004179217386990786, -0.001165974186733365, 0.010534919798374176, 0.011083614081144333, 0.03711608424782753, -0.0036518617998808622, -0.03440919518470764, 0.03233635053038597, -0.035677287727594376, 0.007596360519528389, 0.015497550368309021, 0.03487253561615944, 0.030751237645745277, 0.030995100736618042, 0.04272495582699776, 0.009791135787963867, -0.03575044497847557, 0.038067154586315155, -0.009035157039761543, 0.023593831807374954, 0.04343216121196747, 0.010632465593516827, 0.031190192326903343, -0.05369883030653, -0.001316864974796772, -0.05643010511994362, -0.03358005732297897, 0.007736581843346357, 0.024276651442050934, -0.03318987414240837, 0.04535868391394615, 0.03160475939512253, -0.00998013000935316, -0.003560412907972932, -0.008961997926235199, 0.013058911077678204, -0.028263825923204422, 0.01030934602022171, 0.0009586899541318417, 0.013375934213399887, -0.015607289038598537, -0.006206335965543985, 0.02093571610748768, 0.004420033190399408, 0.006017341744154692, -0.004484047181904316, 0.008132860995829105, -0.011016551405191422, 0.01999683864414692, -0.023654798045754433, 0.048650845885276794, 0.02755662053823471, -0.04908980056643486, 0.027117665857076645, 0.011809108778834343, -0.026386072859168053, -0.02178923971951008, 0.01948472484946251, -0.021082034334540367, -0.009248537942767143, -0.02132589742541313, 0.028336985036730766, 0.02019193023443222, 0.019643235951662064, 0.005886264611035585, -0.026581164449453354, 0.008455980569124222, 0.007931672967970371, -0.01158963143825531, -0.017058279365301132, 0.016765642911195755, -0.026215368881821632, 0.027629779651761055, -0.012632149271667004, -0.016765642911195755, -0.022228194400668144, 0.02909296192228794, -0.0007994163315743208, -0.03143405541777611, 0.017411882057785988, 0.01666809804737568, 0.03779890388250351, -0.013668571598827839, 0.006233770865947008, 0.02858084812760353, -0.0176923256367445, -0.025898344814777374, -0.04274934157729149, 0.008876645937561989, 0.04860207438468933, -0.007681712508201599, 0.00446575740352273, -0.014631833881139755, -0.01566825434565544, -0.01134576741605997, 0.012309029698371887, 0.03306794539093971, -0.03131212294101715, 0.00911441259086132, -0.01780206337571144, 0.026971345767378807, 0.011760336346924305, -0.00021242832008283585, -0.01814347319304943, 0.0021124710328876972, -0.01177252922207117, -0.007956059649586678, -0.004209700506180525, 0.01068123895674944, 0.022593989968299866, 0.006017341744154692, 0.001984442351385951, -0.030482986941933632, 0.02243547886610031, 0.008797390386462212, -0.020460180938243866, -0.029361212626099586, -0.04738275334239006, 0.024715606123209, -0.013034525327384472, 0.017558200284838676, 0.019301827996969223, 0.02059430629014969, -0.010669045150279999, -0.02200871706008911, 0.045919571071863174, -0.04665116220712662, 0.011120193637907505, -0.02360602468252182, 0.009163185954093933, -0.028605233877897263, -0.02417910471558571, 0.014607447199523449, 0.03253144398331642, -0.012790661305189133, 0.0005502179265022278, -0.003276921110227704, 0.030312281101942062, 0.004676090087741613, 0.019179895520210266, 0.031043874099850655, -0.01771671138703823, 5.0011149141937494e-05, 0.013595412485301495, 0.031190192326903343, 0.03262899070978165, -0.0011377774644643068, -0.028117507696151733, -0.0138514693826437, -0.022764693945646286, 0.021167386323213577, -0.009876487776637077, -0.0038835324812680483, -0.0010356594575569034, -0.011668886989355087, -0.024935083463788033, -0.004660848528146744, 0.018009347841143608, -0.006864768452942371, 0.0030040983110666275, -0.04999209940433502, -0.01985052041709423, -0.01752162165939808, -0.017168018966913223, -0.005191252566874027, -0.01933840662240982, -0.0041182516142725945, -0.01219929102808237, -0.01630230061709881, -0.002446259604766965, 0.031409669667482376, -0.0008527615573257208, 0.019582271575927734, 0.014631833881139755, -0.03477499261498451, 0.019265247508883476, -0.00201187701895833, 0.009663106873631477, 0.040969133377075195, 0.021947750821709633, 0.019435951486229897, 0.023923048749566078, -0.0022115407045930624, 0.011101903393864632, 0.0055174208246171474, -0.00982771534472704, -0.03250705823302269, -0.0198261346668005, 0.03974981606006622, -0.018619008362293243, -0.002810531295835972, 0.01247363816946745, 0.041310545057058334, -0.0011865502456203103, -0.006236819084733725, 0.0053284261375665665, -0.01728994958102703, -0.027654165402054787, 5.0058781198458746e-05, 0.005038837902247906, 0.014412356540560722, -0.008425497449934483, 0.012498024851083755, -0.00817553699016571, -0.009492401964962482, -0.009053447283804417, -0.0104373749345541, -0.056332558393478394, 0.02767855115234852, -0.030995100736618042, -0.0002724416845012456, 0.016960734501481056, -0.02497166208922863, -0.013656377792358398, 0.040457021445035934, 0.002571239834651351, 0.02175265923142433, 0.020899135619401932, -0.04160318151116371, -0.021338090300559998, -0.0277029387652874, -0.03809154033660889, 0.03655519708991051, 0.021655114367604256, -0.04504166170954704, -0.011735949665307999, 0.026386072859168053, 0.03999367728829384, -0.027093278244137764, -0.035311490297317505, -0.000133553592604585, 0.0034171428997069597, -0.028361370787024498, -0.01846049726009369, -0.031873010098934174, 0.008163344115018845, 0.03626256063580513, -0.0036975862458348274, 0.004609027411788702, 0.002280127489939332, 0.026117822155356407, -0.029312439262866974, 0.037920836359262466, -0.023959627375006676, 0.009339987300336361, -0.03557974100112915, 0.030068418011069298, 0.00847426988184452, 0.0026672612875699997, 0.00018346947035752237, 0.012973559089004993, 0.014205072075128555, 0.008791293017566204, -0.007425655610859394, -0.007791451178491116, -0.04738275334239006, 0.03672590106725693, 0.0008733375580050051, 0.01694853976368904, 0.008705941028892994, 0.04118861258029938, -0.028141893446445465, 0.012827240861952305, 0.01226025726646185, -0.015619482845067978, -0.008876645937561989, -0.004407839849591255, 0.035457808524370193, 5.245216925686691e-06, -0.033287420868873596, -0.006364847533404827, 0.013961208052933216, 0.03148282691836357, -0.011217739433050156, -0.005422923248261213, 0.026581164449453354, 0.008785196579992771, -0.021008875221014023, -0.004929098766297102, -0.01933840662240982, -0.032750919461250305, 0.0174606554210186, -0.01626572199165821, 0.00796215608716011, -0.006044776178896427, 0.023471899330615997, -0.014729378744959831, 0.008218212984502316, 0.00468523520976305, -0.02597150392830372, 0.004017657600343227, 0.005255267024040222, -0.005931989289820194, -0.03304355591535568, 0.0024005351588129997, -0.03809154033660889, -0.026654323562979698, -0.025239912793040276, -0.015448777936398983, -0.06086842715740204, -0.0010188937885686755, 0.019972452893853188, -0.027995575219392776, -0.0181190874427557, -0.005529613699764013, -0.03382392227649689, -0.004209700506180525, -0.005999051965773106, -0.004386501852422953, -0.017058279365301132, 0.001327534089796245, -0.013961208052933216, 0.010858040302991867, -0.0054595028050243855, -0.02078939788043499, 0.031214578077197075, -0.015180527232587337, -0.001966152573004365, -0.01241267193108797, 0.003371418220922351, -0.01882629282772541, 0.012668728828430176, -0.012693115510046482, -0.01446112897247076, -0.016046244651079178, 0.028434529900550842, -0.00502054812386632, 0.019460339099168777, 0.012619956396520138, 0.02283785305917263, 0.01116286963224411, 0.003001050092279911, -0.0102239940315485, -0.009199765510857105, 0.01686318777501583, 0.007937769405543804, -0.0062002395279705524, 0.03165353462100029, 0.016741257160902023, -0.007456138730049133, 0.02272811532020569, -0.01351005956530571, 0.013071104884147644, 0.008425497449934483, -0.029556304216384888, 0.016546165570616722, -0.03219003230333328, 0.016655903309583664, -0.006968410685658455, -0.025776414200663567, 0.0011728329118341208, -0.005288798362016678, -0.008480367250740528, -0.007736581843346357, 0.026849415153265, -0.012717502191662788, 0.028654007241129875, 0.006578228436410427, -0.013046718202531338, -0.005489985924214125, -0.016899768263101578, -0.0023380450438708067, 0.027605392038822174, 0.002458452945575118, -0.027654165402054787, 0.005663739051669836, -0.006166708189994097, -0.00015860679559409618, -0.0009373518405482173, 0.0007620746619068086, 0.010772687382996082, -0.013766116462647915, -0.0006298547377809882, -0.023788923397660255, 0.07511007785797119, -0.017070472240447998, 0.0011522568529471755, -0.02682502754032612, -0.027142051607370377, -0.005581434816122055, -0.028678392991423607, 0.002048456808552146, 0.0277029387652874, -0.027824869379401207, -0.004176169168204069, 0.02889787219464779, 0.00574604282155633, -0.017997154965996742, 0.0006732929614372551, -0.02516675367951393, -0.009986226446926594, -0.005078465677797794, 0.025361845269799232, 0.028166279196739197, 0.03762819990515709, 0.021167386323213577, 0.026239754632115364, 0.05833224207162857, -0.014253844507038593, -0.0013130547013133764, 0.013449093326926231, -0.012479734607040882, 0.00010230852058157325, 0.012741888873279095, 0.028483303263783455, -0.019192088395357132, 0.023276807740330696, -0.00032140497933141887, 0.02422787807881832, -0.016619324684143066, 0.0125711839646101, 0.03457989916205406, -0.05340619385242462, 0.033433739095926285, 0.014729378744959831, -0.0104373749345541, -0.008998577482998371, -0.00044695677934214473, 0.03757942467927933, 0.045578163117170334, -0.03699415177106857, -0.021289318799972534, 0.03562851622700691, 0.0013488722033798695, 0.028361370787024498, -0.02443516254425049, -0.00863278191536665, -0.014644026756286621, -0.016960734501481056, -0.027922416105866432, -0.028800325468182564, -0.04467586427927017, -0.012949172407388687, -0.006968410685658455, 0.015326845459640026, -0.006828188896179199, 0.020643077790737152, -0.015375618822872639, 0.005441213026642799], [0.009281960316002369, 0.020060637965798378, 0.032556477934122086, 0.011904114857316017, -0.02306567132472992, 0.038659363985061646, -0.04360200837254524, 0.060750432312488556, -0.00337341264821589, 0.022508755326271057, 0.01286711823195219, -0.0077620395459234715, 0.031651485711336136, 0.035619523376226425, -0.03144264221191406, 0.022195488214492798, 0.015280427411198616, 0.03756873682141304, -0.01815783604979515, -0.020803194493055344, 0.019886599853634834, 0.03274211660027504, -0.026244742795825005, -0.012971539981663227, -0.03968038037419319, -0.02307727374136448, 0.019898202270269394, -0.042905863374471664, 0.07629771530628204, -0.11073379218578339, 0.05123642086982727, -0.04511032998561859, 0.011927319690585136, -0.002406058134511113, -0.05434587970376015, -0.005090575199574232, -0.03088572435081005, 0.013528457842767239, 0.002820845926180482, -0.007286339066922665, -0.023425348103046417, 0.017461689189076424, 0.021742992103099823, 0.028286775574088097, -0.016858361661434174, 0.048405423760414124, -0.027544217184185982, -0.030816109851002693, 0.024365145713090897, -0.013609674759209156, 0.04629378020763397, 0.0650201365351677, 0.02123248390853405, -0.05067950487136841, -0.009618431329727173, 0.010244963690638542, 0.005885343067348003, -0.002101493999361992, 0.05063309520483017, 0.005899846088141203, -0.011770686134696007, 0.005119581241160631, 0.003315400332212448, -0.0027236752212047577, -0.02240433171391487, 0.007071693893522024, 0.008005690760910511, 0.025850260630249977, -0.010285572148859501, -0.03548029437661171, -0.007640213705599308, 0.05610945075750351, 0.031071363016963005, -0.04766286909580231, -0.01347044575959444, 0.030816109851002693, -0.009421190246939659, 0.0009550267131999135, 0.00801149196922779, 0.013540060259401798, -0.05945095792412758, 0.026244742795825005, 0.000966629188042134, -0.0143870385363698, 0.004887532442808151, -0.006537980865687132, -0.08177407085895538, -0.03610682487487793, 0.007176115643233061, -0.03065367415547371, -0.0003226931730750948, 0.04146715998649597, -0.04128152132034302, 0.029795093461871147, -0.006700415164232254, 0.05058668553829193, 0.012356610037386417, -0.022903237491846085, -0.008307354524731636, 0.020861206576228142, -0.012449429370462894, -0.04039973393082619, -0.015338439494371414, -0.00349233765155077, -0.006915060803294182, -0.022949647158384323, -0.03606041520833969, 0.051654111593961716, -0.0014176744734868407, -0.007814250886440277, 0.0151411984115839, -0.034969788044691086, -0.0018665442476049066, 0.043161116540431976, -0.008957091718912125, -0.025362957268953323, -0.01671913079917431, -0.042348943650722504, -0.005258810706436634, -0.013017949648201466, -0.008104312233626842, 0.012170970439910889, 0.011585047468543053, -0.0776900127530098, 0.028959717601537704, -0.0037127842660993338, 0.008144920691847801, 0.010830887593328953, -0.04297547787427902, -0.004023149609565735, 0.016289841383695602, -0.06882573664188385, 0.05703764781355858, -0.029887912794947624, -0.014607485383749008, 0.015547283925116062, 0.014607485383749008, -0.03246365860104561, 0.013157179579138756, -0.010239162482321262, 0.03162828087806702, 0.010076728649437428, -0.022044656798243523, 0.010111535899341106, -0.07690104097127914, 0.01062204409390688, -0.029586249962449074, 0.03821847215294838, 0.02517731860280037, -0.03791680932044983, -0.04938003048300743, 0.006097087636590004, -0.04638659954071045, -0.05374255031347275, 0.042302533984184265, 0.012646671384572983, 0.011265980079770088, 0.046224161982536316, 0.0010717763798311353, 0.009572021663188934, 0.004791812039911747, -0.022624779492616653, -0.0050470661371946335, -0.02761383354663849, 0.019503720104694366, 0.015326837077736855, -0.014038965106010437, 0.04327714070677757, -0.06873291730880737, -0.015558886341750622, -0.030375216156244278, -0.014804727397859097, -0.04346277937293053, -0.03694220259785652, -0.050447456538677216, -0.032208401709795, 0.05040104687213898, 0.031349822878837585, 0.0020362301729619503, -0.016777142882347107, 0.023262914270162582, 0.019016416743397713, -0.04606172814965248, -0.024388350546360016, -0.043741241097450256, 0.0399356372654438, 0.01501357089728117, 0.021638570353388786, -0.04121190682053566, 0.00433351518586278, 0.009212345816195011, -0.03206917271018028, -0.022531960159540176, -0.0020594350062310696, -0.04585288465023041, -0.004179782699793577, -0.02724255435168743, -0.03128020837903023, -0.008957091718912125, 0.000525010924320668, 0.0399356372654438, -0.05764097347855568, 0.0254557766020298, 0.058012254536151886, -0.05040104687213898, 0.005511164199560881, -0.025618210434913635, -0.027961906045675278, -0.0021116461139172316, -0.05313922464847565, 0.021139664575457573, -0.022044656798243523, -0.03276532143354416, 0.0484982430934906, -0.016011381521821022, -0.005360332317650318, 0.006114491727203131, -0.008881676010787487, 0.031164182350039482, 0.03339185193181038, -0.037174250930547714, -0.015199210494756699, 0.012553852051496506, -0.028588438406586647, -0.03494658321142197, 0.01699759066104889, 0.019724166020751, -0.04448379576206207, -0.018088221549987793, -0.0690113753080368, -0.033809542655944824, 0.029795093461871147, 0.019584937021136284, 0.0075299907475709915, -0.0005308121326379478, 0.006207311060279608, 0.04100305959582329, -0.03810244798660278, -0.0062885284423828125, 0.03399518132209778, -0.00469899270683527, -0.014073772355914116, -0.019202055409550667, -0.010981719940900803, 0.03183712437748909, -0.009473401121795177, -0.012368212454020977, 0.007065892685204744, 0.02663922682404518, -0.00024310759908985347, 0.01913244090974331, 0.028982922434806824, 0.06427757441997528, -0.055970221757888794, -0.01226379070430994, 0.042557790875434875, -0.006903458386659622, -0.04420533776283264, 0.03427363932132721, -0.042905863374471664, -0.01605779118835926, 0.012437826953828335, -0.003979640547186136, -0.023471757769584656, -0.0587548092007637, -0.013308010995388031, 0.016452275216579437, -0.00636394415050745, -0.007837455719709396, 0.057687386870384216, -0.07147109508514404, 0.04432136192917824, 0.015280427411198616, 0.025989489629864693, -0.04812696576118469, 0.04427495226264, -0.008690235204994678, -0.022589972242712975, -0.01029137335717678, 0.003179071471095085, -0.03615323826670647, -0.028286775574088097, -0.023216504603624344, -0.035642728209495544, 0.036849383264780045, 0.03218519687652588, -0.007065892685204744, -0.003915827255696058, -0.04225612431764603, 0.027521012350916862, 0.07267775386571884, -0.0004702618170995265, 0.010036120191216469, -0.004037652630358934, 0.049890536814928055, 0.0041072675958275795, 0.014456653967499733, -0.026523202657699585, 0.015535681508481503, 0.015674911439418793, 0.02547898143529892, 0.010685857385396957, 0.01729925349354744, -0.03724386543035507, -0.05810507386922836, 0.03128020837903023, 0.01670752838253975, 0.017682135105133057, -0.02847241424024105, -0.03188353404402733, -0.027776267379522324, 0.010320380330085754, -0.07694745063781738, -0.07509106397628784, 0.018981609493494034, -0.0275674220174551, -0.038334496319293976, -0.023750215768814087, -0.006897657178342342, -0.0032602886203676462, 0.013841724023222923, 0.017728544771671295, -0.007953479886054993, -0.012472634203732014, -0.038079243153333664, -0.00922974944114685, 0.03552670404314995, 0.059590186923742294, -0.012484236620366573, -0.008405975997447968, -0.0019825687631964684, 0.003094953717663884, 0.04766286909580231, 0.022555164992809296, -0.024806039407849312, 0.006648204289376736, -0.0007918672636151314, 0.020141854882240295, -0.0026149023324251175, 0.013435637578368187, 0.06594832986593246, -0.023228107020258904, -0.03093213401734829, 0.01668432354927063, -0.007912871427834034, 0.04281304404139519, 0.04009807109832764, 0.03297416493296623, 0.03271891176700592, 0.045272763818502426, 0.008133318275213242, 0.017983797937631607, -0.01938769593834877, -0.03264929726719856, -0.03972679004073143, -0.00013333754031918943, 0.017067205160856247, 0.03267250210046768, -0.014236207120120525, 0.0008085457957349718, 0.01062784530222416, 0.006578589789569378, 0.009798269718885422, 0.03246365860104561, 0.036849383264780045, -0.00360256084240973, -0.0040869633667171, -0.006230515893548727, 0.00985048059374094, -0.021696582436561584, 0.0036373683251440525, -0.008939688093960285, 0.02025787904858589, 0.020153457298874855, -0.018088221549987793, -0.02789229154586792, 0.00044633177458308637, 0.017705339938402176, -0.021139664575457573, -0.030723288655281067, -0.009601027704775333, 0.020107047632336617, 0.010714863426983356, 0.029214970767498016, -0.0025264336727559566, 0.001300924806855619, -0.06952188163995743, -0.005052867345511913, -0.0127278883010149, -0.009455997496843338, -0.004725098144263029, -0.006903458386659622, -0.011637258343398571, 0.012971539981663227, -0.02513090893626213, 0.02212587371468544, 0.013748903758823872, 0.02277561090886593, 0.01974737085402012, 0.016777142882347107, -0.056480731815099716, -0.03916987404227257, 0.01347044575959444, 0.006236317101866007, -0.04272022470831871, -0.040492553263902664, -0.04000525176525116, -0.004730899352580309, -0.025084499269723892, -0.010540826246142387, 0.006265323609113693, -0.025409366935491562, 0.032881345599889755, 0.02937740460038185, 0.03065367415547371, -0.013818519189953804, -0.03645490109920502, 0.05791943520307541, -0.013888133689761162, -0.05262871831655502, 0.017461689189076424, 0.02571103163063526, 0.007837455719709396, -0.007733033504337072, -0.051654111593961716, -0.0316050760447979, 0.0036460701376199722, 0.0032283819746226072, 0.02025787904858589, -0.01347044575959444, -0.0023117882665246725, -0.02120927907526493, 0.0016910572303459048, 0.016916373744606972, -0.06794395297765732, -0.034088000655174255, 0.014769920147955418, -0.011962126940488815, -0.01516440324485302, -0.04919439181685448, 0.013249998912215233, -0.04490148276090622, 0.03668694943189621, -0.017508098855614662, -0.03970358520746231, -0.020130252465605736, -0.018691547214984894, -0.00031399133149534464, -0.0242491215467453, 0.01914404332637787, -0.013516855426132679, 0.004864327609539032, -0.078896664083004, -0.0001114016558858566, -0.020814796909689903, -0.014700304716825485, 0.004287105519324541, -0.007222525775432587, 0.0028875598218292, 0.015315234661102295, 0.012553852051496506, 0.04033011943101883, 0.04638659954071045, 0.07652976363897324, -0.002933969721198082, 0.0032950961031019688, -0.03554990887641907, 0.00720512168481946, 0.0019521123031154275, -0.04538878798484802, -0.009316767565906048, 0.014711907133460045, 0.0019434104906395078, -0.01606939360499382, 0.04179202765226364, -0.016777142882347107, 0.0002543474838603288, -0.04914798215031624, -0.0155936935916543, -0.014433449134230614, 0.03664053976535797, 0.030398420989513397, -0.042905863374471664, -0.04009807109832764, 0.10005953162908554, 0.04817337542772293, 0.050493866205215454, 0.01814623363316059, -0.012994744814932346, -0.037151046097278595, 0.01512959599494934, 0.00820873398333788, 0.013899736106395721, -0.00999551173299551, 0.021418124437332153, 0.0184594988822937, -0.011985331773757935, 0.022346319630742073, 0.019921407103538513, 0.0035909584257751703, -0.0023204900790005922, -0.017160024493932724, 0.021302100270986557, 0.01852911338210106, -0.012437826953828335, 0.011985331773757935, -0.030723288655281067, -0.05193256959319115, 0.0032051769085228443, -0.007976684719324112, -0.012461031787097454, 0.044762253761291504, 0.016591504216194153, -0.009038309566676617, -0.05309281498193741, -0.013609674759209156, 0.02724255435168743, 0.0009891089284792542, -0.05188615992665291, 0.007785244379192591, 0.01439864095300436, -0.02485244907438755, -0.012008536607027054, 0.017392072826623917, -0.007599605247378349, 0.02392425388097763, -0.006613397039473057, -0.0702180340886116, -0.023727010935544968, 0.03998204693198204, -0.015674911439418793, -0.02212587371468544, -0.030792905017733574, 0.01606939360499382, 0.030560854822397232, 0.02178940176963806, -0.017438484355807304, 0.03981960937380791, -0.01724124141037464, -0.02058274671435356, 0.019503720104694366, -0.007042687386274338, 0.00819133035838604, -0.014189797453582287, -0.0024191110860556364, -0.04272022470831871, 0.021371714770793915, 0.015338439494371414, 0.014154990203678608, 0.01612740568816662, -0.03130341321229935, 0.02882048673927784, -0.014503063634037971, 0.006671409122645855, 0.006189907435327768, 0.011712674051523209, 0.012333405204117298, -0.030189577490091324, 0.010059325024485588, -0.03568913787603378, -0.000995635287836194, 0.03965717554092407, 0.009299363940954208, -0.039448332041502, 0.0021914129611104727, 0.010262367315590382, 0.015825742855668068, -0.020246276631951332, -0.043555598706007004, 0.007100699935108423, -0.03339185193181038, 0.04511032998561859, -0.014584280550479889, -0.0032979967072606087, 0.03213878720998764, 0.005670697893947363, -0.012669876217842102, -0.017415277659893036, 0.0497048981487751, -0.006329136900603771, 0.018297065049409866, 0.03392556682229042, -0.017751749604940414, 0.020153457298874855, -0.012542249634861946, 0.018552318215370178, -0.011567642912268639, -0.042024075984954834, 0.008411777205765247, 0.04309150204062462, -0.006236317101866007, 0.019851792603731155, 0.02211427129805088, 0.008690235204994678, 0.014874341897666454, 0.039541151374578476, -0.021870620548725128, 0.04459981992840767, -0.000207212520763278, 0.009455997496843338, 0.005432847421616316, 0.0026917685754597187, 0.014642292633652687, 0.024782834574580193, -0.03422722965478897, 0.012762695550918579, 0.014746715314686298, -0.0003712784091476351, 0.02849561907351017, 0.015071583911776543, 0.022810418158769608, 0.0022247699089348316, 0.0014017210341989994, -0.03186032921075821, -0.004113068804144859, 0.02065236307680607, -0.039285898208618164, -0.028681257739663124, -0.02844920940697193, 0.007820052094757557, -0.04313791170716286, 0.012646671384572983, -0.004585868678987026, -0.03949474170804024, -0.06372065842151642, -0.002127599436789751, 0.0070600914768874645, -0.054995615035295486, -0.004655483178794384, -0.036199647933244705, 0.006445161532610655, -0.0034633316099643707, -0.0028324483428150415, -0.017763352021574974, 0.012843913398683071, -0.008498795330524445, 0.04327714070677757, -0.00987948663532734, -0.0075299907475709915, 0.0388450063765049, 0.005740312393754721, -0.0020130251068621874, 0.04267381504178047, -0.04508712515234947, 0.00801149196922779, 0.03332223743200302, 0.00999551173299551, 0.0209308210760355, 0.014920751564204693, -0.021452931687235832, 0.022067861631512642, -0.018946802243590355, -0.00034462905023247004, -0.0009796819649636745, 0.004997755866497755, 0.004063758533447981, -0.039448332041502, 0.03912346437573433, 0.053510501980781555, 0.016545094549655914, -0.018691547214984894, 0.03937871754169464, -0.0005688826786354184, 0.04218650981783867, 0.028704462572932243, 0.009792468510568142, 0.0287740770727396, -0.00138141680508852, 0.011294986121356487, -0.018366679549217224, -0.0025713930372148752, 0.0035039400681853294, 0.02879728190600872, -0.06191067770123482, -0.013644482009112835, -0.0275674220174551, -0.036478105932474136, -0.0008179727592505515, -0.03573554754257202, -0.018366679549217224, -0.014329026453197002, -0.034111205488443375, 0.0060796840116381645, 0.036222852766513824, 0.010575633496046066, -0.006091286428272724, 0.005807026755064726, -0.028936512768268585, 0.0027758863288909197, 0.05824430286884308, -0.014955558814108372, 0.030166372656822205, 0.01912083849310875, -0.011294986121356487, -0.010186951607465744, 0.03025919198989868, 0.015512476675212383, -0.026198333129286766, -0.03554990887641907, -0.0626068264245987, 0.01693957857787609, 0.005374835338443518, 0.020095445215702057, -0.025409366935491562, -0.02784588187932968, -0.029191765934228897, -0.021975042298436165, 0.00577221903949976, 0.053556911647319794, 0.0036402689293026924, -0.020141854882240295, -0.018865585327148438, -0.0345056876540184, -0.019318079575896263, 0.026175128296017647, 0.009316767565906048, -0.01606939360499382, -0.007297941483557224, 0.0038375104777514935, -0.02452758140861988, -0.012020139023661613, 0.02090761624276638, -0.013087564148008823, 0.008696036413311958, 0.00015273538883775473, -0.0010144893312826753, 0.029168561100959778, -0.025919875130057335, -0.010094132274389267, -0.011283383704721928, 0.029330994933843613, -0.000940523634199053, -0.0024539183359593153, 0.006224714685231447, -0.020385505631566048, 0.013876531273126602, -0.017426880076527596, -0.019202055409550667, -0.01347044575959444, -0.008591614663600922, -0.007646014913916588, -0.05931172892451286, 0.003965137526392937, -0.0017621221486479044, -0.03603721037507057, -0.012310200370848179, 0.02000262588262558, -0.0007991187740117311, -0.03638528659939766, 0.03130341321229935, 0.005020960699766874, 0.007071693893522024, -0.029539840295910835, -0.006624999456107616, -0.007274736650288105, -0.008144920691847801, -0.010801881551742554, -0.005418344400823116, -0.031326618045568466, 0.0006867200718261302, 0.04128152132034302, -0.032579682767391205, -0.008609018288552761, -0.0055169654078781605, 0.016591504216194153, -0.03575875237584114, -0.036199647933244705, -0.02365739643573761, 0.028866898268461227, -0.010053523816168308, -0.010564031079411507, 0.018111426383256912, 0.01666111871600151, 0.00779684679582715, 0.007843256928026676, -0.0345056876540184, -0.02364579401910305, -0.03508581221103668, 0.012971539981663227, 0.013435637578368187, 0.027822677046060562, -0.028077930212020874, -0.018587125465273857, -0.004136273637413979, 0.008696036413311958, -0.014804727397859097, -0.03158187121152878, 0.007982485927641392, 0.021951837465167046, 0.020153457298874855, -0.0036721755750477314, 0.009450196288526058, 0.024063482880592346, -0.035271450877189636, 0.013841724023222923, 0.013238396495580673, 0.007524189073592424, -0.010256566107273102, -0.033832747489213943, 0.008446584455668926, -0.013598072342574596, -0.0314890518784523, -0.027358578518033028, 0.007907070219516754, 0.09360857307910919, -0.01392294093966484, 0.012704683467745781, 0.015558886341750622, 0.0032602886203676462, -0.009502407163381577, -0.029771888628602028, 0.024736424908041954, 0.008388571441173553, 0.02370380610227585, -0.0013364573242142797, -0.0015271726297214627, 0.004391527734696865, 0.02184741385281086, -0.03645490109920502, -0.016139008104801178, 0.014259411953389645, -0.014468256384134293, 8.833272295305505e-05, -0.02844920940697193, 0.039541151374578476, -0.013017949648201466, 0.02733537368476391, -0.01271628588438034, 0.032324425876140594, 0.012101355940103531, 0.019526924937963486, 0.010070927441120148, 0.0020565344020724297, -0.021116459742188454, -0.02025787904858589, -0.04388047009706497, -0.020524734631180763, -0.02059434913098812, -0.0034720334224402905, -0.023761818185448647, 0.05555253475904465, -0.010616241954267025, -0.017647327855229378, -0.02243913896381855, -0.020559541881084442, 0.0209308210760355, -0.008968694135546684, -0.003289294894784689, -0.06696934252977371, 0.03192994371056557, 0.018563920632004738, -0.04023730009794235, -0.0339023619890213, -0.014688702300190926, -0.00013234045763965696, -0.00940378662198782, 0.002549638506025076, -0.023715408518910408, 0.01849430613219738, 0.023877844214439392, -0.0332990325987339, -0.008440783247351646, 0.0024539183359593153, -0.03868257254362106, 0.02608230896294117, 0.017705339938402176, 0.021383317187428474, -0.037731170654296875, 0.048034146428108215, -0.009659039787948132, 0.001522821607068181, -0.009896890260279179, -0.029029332101345062, 0.001686706324107945, 0.007031084969639778, -0.018575523048639297, 0.03480735048651695, 0.005325525067746639, 0.03524824604392052, -0.002851302269846201, -0.005409642588347197, 0.014885944314301014, 0.006944066844880581, 0.002509030047804117, -0.0077272322960197926, -0.014688702300190926, -0.046850696206092834, 0.04545840248465538, -0.0034227229189127684, 0.024481171742081642, 0.012762695550918579, 0.011144153773784637, 0.04780209809541702, 0.010772875510156155, -0.010848291218280792, 0.035341065376996994, -0.00987948663532734, 0.01089470088481903, -0.011596649885177612, 0.024179507046937943, -0.031024953350424767, -0.006311733275651932, -0.022241897881031036, -0.0008484292193315923, -0.03666374459862709, -0.007837455719709396, -0.00815652310848236, -0.007558996789157391, 0.03485376015305519, 0.010256566107273102, 0.008086908608675003, -0.011759083718061447, -0.02513090893626213, -0.02724255435168743, 0.02268279157578945, 0.005287816748023033, 0.017647327855229378, 0.006787433754652739, 0.008742447011172771, -0.007031084969639778, 0.035317860543727875, -0.007779443170875311, -0.029238175600767136, 0.011724276468157768, 0.006044876761734486, -0.011393606662750244, 0.0011696721194311976, 0.020571144297719002, -0.028147544711828232, -0.04339316487312317, -0.038357701152563095, 0.022033054381608963, 0.015988176688551903, 0.030491240322589874, 0.0013031002599745989, -0.025061294436454773, 0.008922284469008446, 0.016777142882347107, 0.013574867509305477, -0.01044220570474863, 0.011950524523854256, -0.012785900384187698, 0.008400174789130688, -0.0569448284804821, 0.026244742795825005, 0.021023640409111977, 0.007825853303074837, 0.019816985353827477, 0.030816109851002693, -0.022044656798243523, 0.028890103101730347, -0.018018605187535286, 0.01349365059286356, 0.013516855426132679, -0.007344351150095463, -0.0005779470666311681, 0.015199210494756699, 0.008481391705572605, 0.01847110129892826, -0.035967595875263214, 0.027544217184185982, -0.011155756190419197, 0.021917030215263367, -0.024759629741311073, 0.04058537259697914, 0.03494658321142197, 0.0011500929249450564, -0.008864272385835648, 0.011178961023688316, 0.017102012410759926, -0.02821716107428074, -0.014421846717596054, 0.01880757324397564, 0.012774297967553139, 0.005038364324718714, -0.02148773893713951, 0.0012856965186074376, -0.012774297967553139, 0.026917684823274612, 0.00880626030266285, -0.034088000655174255, 0.0031645684503018856, 0.03821847215294838, 0.03278852626681328, -0.001660600770264864, 0.03485376015305519, 0.004231994040310383, -0.017484894022345543, 0.005635890644043684, -0.003512641880661249, 0.023738613352179527, -0.004406030755490065, 0.0320923775434494, 0.017171626910567284, -0.0006562636117450893, 0.01791418343782425, 0.004655483178794384, 0.03186032921075821, 0.018563920632004738, 0.04761645942926407, 0.032022763043642044, 0.033206213265657425, -0.007408164907246828, 0.018900392577052116, -0.02394745871424675, -0.010181150399148464, -0.015431259758770466, 0.04979771748185158, -0.03311339393258095, 0.0035532505717128515, 0.03831129148602486, -0.022903237491846085, -0.0013190535828471184, 0.010836688801646233, -0.01664951629936695, 0.014143387787044048, 0.03875218704342842, -0.012020139023661613, 0.006729421205818653, 0.007077495101839304, 0.003147164825350046, 0.022845225408673286, 0.034714531153440475, -0.0046699861995875835, -0.00431031035259366, -0.01213616319000721, 0.003155866637825966, 0.014978763647377491, 0.03343826159834862, -0.02211427129805088, 0.005464754067361355, 0.006085485219955444, -0.0014220253797248006, 0.013992555439472198, -0.00024763980763964355, 0.022311512380838394, 0.0017766252858564258, 0.015094788745045662, -0.0028933612629771233, 0.04457661509513855, 0.004200087394565344, -0.0068222410045564175, -0.028356390073895454, 0.02243913896381855, 0.02633756399154663, 0.018981609493494034, -0.009647437371313572, -0.009328369982540607, 0.004977451171725988, -0.008498795330524445, -0.0056097847409546375, 0.039587561041116714, -0.021766196936368942, -0.013911338523030281, -0.002324840985238552, -0.023831434547901154, -0.018424691632390022, -0.03640849143266678, -0.0019231062615290284, -0.00276573421433568, 0.01213616319000721, -0.027219349518418312, -0.01612740568816662, -0.0040869633667171, 0.020675567910075188, -0.003915827255696058, -0.017044000327587128, 0.0465722382068634, -0.0006975973374210298, 0.057733796536922455, -0.007663418538868427, 0.0057142069563269615, 0.016011381521821022, 0.03831129148602486, 0.025525391101837158, 0.02759062871336937, -0.02905253693461418, -0.008568409830331802, -0.02217228338122368, 0.017473291605710983, 0.005743212997913361, -0.006004268303513527, -0.007495183032006025, -0.018587125465273857, -0.014468256384134293, -0.02036230079829693, 0.011265980079770088, -0.004487247671931982, -0.027637038379907608, 0.017740147188305855, -0.023274516686797142, -0.007361754775047302, 0.02724255435168743, -0.036199647933244705, 0.023506565019488335, 0.009293562732636929, 0.025896670296788216, 0.030421625822782516, 0.0024553686380386353, 0.006155100185424089, 0.0021769097074866295, 0.014166592620313168, 0.012785900384187698, -0.024411557242274284, 0.04427495226264, -0.008585813455283642, 0.01999102346599102, -0.008069504052400589, 0.013864928856492043, 0.01662631146609783, -0.026128718629479408, -0.0032950961031019688, 0.04933362081646919, -0.015547283925116062, 0.02580385096371174, -0.0031152579467743635, -0.03371672332286835, -0.01333121582865715, -0.00022497876489069313, -0.014259411953389645, -0.03882180154323578, -0.017496496438980103, -0.027497807517647743, 0.032579682767391205, 0.05824430286884308, -0.0054125431925058365, -0.03179071471095085, 0.03002714179456234, 0.030421625822782516, -0.003263189224526286, -0.00936897937208414, -0.03088572435081005, -0.011405209079384804, -0.03251006826758385, -0.001109484350308776, 0.012577056884765625, -0.0073211463168263435, -0.06887214630842209, 0.004130472429096699, -0.02217228338122368, 0.016556696966290474, 0.011138352565467358, 0.0032486862037330866, 0.02399386838078499, -0.030096756294369698, -0.006607595831155777, -0.0024843746796250343, 0.07244570553302765, -0.0064161550253629684, 0.0024800237733870745, -0.0015257223276421428, 0.05726969614624977, -0.015292029827833176, 0.010529223829507828, 0.028240365907549858, 0.018970007076859474, 0.008353764191269875, 0.004902035463601351, 0.01581414043903351, 0.011144153773784637, 0.020478324964642525, -0.014178195036947727, -0.008139119483530521, 0.043485984206199646, 0.023877844214439392, 0.021058447659015656, 0.019933009520173073, 0.026755250990390778, -0.029238175600767136, 0.0014742363709956408, -0.007390761282294989, -0.0006954218843020499, -0.01906282640993595, -0.003968038130551577, 0.015303632244467735, -0.020513132214546204, 0.045644041150808334, 0.0004071735020261258, -0.005505362991243601, -0.016139008104801178, 0.00614349776878953, 0.02147613652050495, -0.029911117628216743, -0.019167248159646988, 0.002677265554666519, 0.022566767409443855, -0.0036112628877162933, -0.009113725274801254, 0.0008730844128876925, -0.0023175894748419523, -0.0015996878501027822, -0.013806916773319244, 0.011735878884792328, -0.047755688428878784, -0.014758317731320858, 0.005470555741339922, -0.0357123427093029, -0.0039709387347102165, 0.018065014854073524, -0.060425564646720886, -0.0175545085221529, -0.023715408518910408, 0.041119083762168884, -0.004617775324732065, -0.01410858053714037, -0.029795093461871147, 0.005847635213285685, -0.0009586524683982134, 0.005644592456519604, 0.002374151488766074, 0.05829071253538132, -0.019933009520173073, 0.027521012350916862, -0.003738889703527093, 0.019318079575896263, -0.023436950519680977, 0.009148532524704933, 0.014804727397859097, -0.006265323609113693, -0.00469609210267663, -0.01669592596590519, -0.006305932067334652, 0.004365422297269106, -0.0036054616793990135, 0.011358799412846565, -0.03128020837903023, -0.0031210591550916433, -0.0018824976868927479, 0.004391527734696865, 0.05726969614624977, 0.03645490109920502, 0.02301926165819168, 0.004487247671931982, -0.002020276617258787, 0.034737735986709595, 0.002897712169215083, 0.025525391101837158, 0.004948445130139589, -0.01753130368888378, 0.02905253693461418, -0.035341065376996994, 0.03206917271018028, 0.007338549941778183, -0.034737735986709595, 0.001524271909147501, -0.01002451777458191, -0.02673204615712166, 0.01692797616124153, -0.026964096352458, -0.016162212938070297, 0.008092709816992283, -0.013830121606588364, -0.01501357089728117, 0.01603458635509014, -0.02032749354839325, 0.04919439181685448, -0.0029542739503085613, -0.007315345108509064, -0.014340628869831562, 0.021998247131705284, 0.002469871658831835, -0.039448332041502, -0.013632879592478275, 0.01849430613219738, -0.00818552915006876, 0.0067584277130663395, 0.027358578518033028, -0.035271450877189636, -0.005125382449477911, 0.03425043448805809, 0.013133973814547062, 0.006915060803294182, 0.027753062546253204, 0.0043074097484350204, 0.035944391041994095, 0.013284806162118912, 0.01728765107691288, 0.009728655219078064, -0.009038309566676617, 0.007106501143425703, -0.013876531273126602, -0.0031442642211914062, 0.008580012246966362, -0.031326618045568466, 0.031697895377874374, -0.007941877469420433, -0.007849058136343956, 0.010082529857754707, -0.012577056884765625, 0.007889666594564915, -0.026523202657699585, -0.027474602684378624, 0.02365739643573761, -0.007541593164205551, -0.015906959772109985, -0.01350525300949812, 0.013830121606588364, -0.007048488594591618, 0.02213747613132, -0.015187608078122139, 0.000995635287836194, 0.03817206248641014, 0.008133318275213242, 0.03271891176700592, 0.0027236752212047577, 0.022798815742135048, -0.000414425041526556, -0.03367031365633011, 0.021336907520890236, -0.009293562732636929, -0.008951290510594845, -0.015373247675597668, -0.02847241424024105, -0.0081739267334342, 0.00204203138127923, 0.025525391101837158, -0.030189577490091324, -0.0011950524058192968, 0.004542359616607428, 0.029864707961678505, -0.016208624467253685, -0.018923597410321236, -0.021116459742188454, -0.010239162482321262, 0.04942644014954567, -0.044414181262254715, -0.003622865304350853, 0.02882048673927784, 0.018343474715948105, -0.007889666594564915, 0.0009463249007239938, 0.02510770410299301, -0.0013901186175644398, 0.013261601328849792, 0.01378371100872755, 0.01883077807724476, 0.002712072804570198, 0.023727010935544968, 0.017960593104362488, 0.00288465921767056, -0.006010069511830807, 0.008463988080620766, -0.032324425876140594, 0.030166372656822205, -0.005192096810787916, 0.01664951629936695, -0.00817972794175148, -0.03432004898786545, -0.005374835338443518, -0.013052756898105145, -0.012843913398683071, -0.036176443099975586, -0.031697895377874374, -0.012669876217842102, -0.02550218626856804, -0.01606939360499382, 0.017183229327201843, 0.031953148543834686, 0.00922974944114685, 0.01517600566148758, 0.02399386838078499, -0.00023621864966116846, -0.03483055531978607, 0.016208624467253685, 0.0014575578970834613, 0.014050567522644997, -0.01729925349354744, -0.028240365907549858, -0.007512586656957865, 0.025362957268953323, -0.02058274671435356, -0.010163746774196625, 0.001548927160911262, 0.0019231062615290284, -0.01605779118835926, 0.019318079575896263, -0.02879728190600872, -0.0038868209812790155, -0.00287450710311532, 0.001410422963090241, -0.019213657826185226, -0.023877844214439392, -0.015187608078122139, -0.0011805493850260973, -0.0352250412106514, -0.006804837379604578, 0.004870128817856312, -0.010221758857369423, 0.01999102346599102, -0.0052762143313884735, -0.03088572435081005, 0.013690891675651073, 0.015941767022013664, -0.03181391954421997, -0.03128020837903023, -0.0068512470461428165, -0.02694089151918888, 0.001357486704364419, -0.005325525067746639, -0.004255198873579502, 0.0035619523841887712, 0.015883754938840866, -0.0047454023733735085, 0.005035463720560074, -0.00030293274903669953, 0.006909259594976902, -0.005679399706423283, 0.03733668476343155, -0.05963659659028053, 0.012437826953828335, 0.019503720104694366, 0.03951794654130936, 0.01612740568816662, 0.009601027704775333, 0.004678688477724791, -0.009751860052347183, -0.024318736046552658, 0.004252298269420862, 0.032927755266427994, 0.016765540465712547, -0.006642403081059456, -0.037731170654296875, -6.467459752457216e-05, -0.019561732187867165, 0.011352998204529285, -0.0030021341517567635, -0.031140977516770363, -0.008458186872303486, 0.037731170654296875, 0.04766286909580231, 0.01334281824529171, 0.02271759882569313, -0.0018114326521754265, 0.009508208371698856, 0.002899162471294403, -0.014178195036947727, -0.014967161230742931, 0.019294874742627144, -0.0005572802037931979, 0.010726465843617916, 0.021104857325553894, -0.00924135185778141, 0.039239488542079926, -0.002987631130963564, -0.003933230880647898, 0.008742447011172771, -0.021917030215263367, 0.005998467095196247, 0.007094898726791143, -0.0009630034328438342, 0.0009775065118446946, 0.0042755031026899815, 0.04118869826197624, 0.01503677573055029, 0.019770575687289238, -0.0006801936542615294, -0.014027362689375877, -0.012948335148394108, 0.017345663160085678, -0.006671409122645855, -0.03144264221191406, -0.014491461217403412, 0.016011381521821022, -0.038914620876312256, -0.02847241424024105, 0.023274516686797142, 0.028426004573702812, 0.011260178871452808, 0.011741680093109608, -0.03664053976535797, -0.044390976428985596, 0.03705822676420212, -0.0015445762546733022, 0.021731389686465263, -0.004765706602483988, 0.006804837379604578, -0.012577056884765625, 0.01395774818956852, 0.001660600770264864, 0.013574867509305477, -0.047129154205322266, 0.03309018909931183, 0.043555598706007004, -0.014839534647762775, 0.01699759066104889, 0.008974495343863964, -0.005154388956725597, -0.007344351150095463, 0.003991242963820696, -0.027521012350916862, 0.005189196206629276, 0.012426224537193775, 0.03299736976623535, -0.0020333295688033104, 0.02847241424024105, 0.0022581268567591906, 0.0082029327750206, 0.007611207664012909, 0.012101355940103531, 0.0030891525093466043, -0.01516440324485302, -0.01907442882657051, -0.0266624316573143, -0.01702079549431801, 0.022044656798243523, 0.03327582776546478, -0.032324425876140594, -0.019944611936807632, 0.021893825381994247, -0.006706216372549534, 0.010221758857369423, 0.01939929835498333, -0.003187773283571005, -0.026569612324237823, -0.011463221162557602, -0.03362390398979187, 0.03675656393170357, 0.0006305206916294992, -0.0004347293288446963, -0.016858361661434174, -0.01813463121652603, 0.024481171742081642, -0.05736251547932625, -0.030746495351195335, -0.021046845242381096, -0.03336864709854126, 0.007535791955888271, 0.02370380610227585, -0.005656194873154163, -0.015257222577929497, -0.035921186208724976, 0.05457792803645134, -0.020849604159593582, 0.004258099477738142, 0.014201399870216846, 0.017774954438209534], [0.021220097318291664, 0.015790853649377823, 0.05986709147691727, 0.03567788004875183, -0.054195474833250046, 0.00147092470433563, -0.019523458555340767, -0.007434911094605923, 0.0021041342988610268, 0.05458327755331993, -0.01745113544166088, 0.018965991213917732, -0.050753720104694366, -0.0034659896045923233, -0.03112119249999523, 0.005547401029616594, 0.005086884833872318, 0.027824867516756058, 0.013027758337557316, 0.031145431101322174, 0.045057862997055054, 0.07421580702066422, -0.05526193231344223, 0.07591244578361511, -0.04888742044568062, -0.024552779272198677, 0.04384598135948181, 0.021753326058387756, 0.02211689203977585, -0.038101647049188614, 0.03315715864300728, -0.016699768602848053, 0.06248476356267929, -0.056328389793634415, 0.04384598135948181, 0.0037235149648040533, 0.01434871181845665, -0.010585810989141464, 0.023219706490635872, 0.03032134845852852, -0.026249418035149574, 0.0016996680060401559, 0.013500392436981201, -0.019147774204611778, -0.006029125303030014, 0.057007044553756714, 0.009180025197565556, -0.014033622108399868, -0.035968732088804245, -0.006665364373475313, 0.0012293052859604359, 0.016178658232092857, 0.02956998161971569, 0.004583952948451042, 0.01554847788065672, 0.002544957445934415, -0.0029433644376695156, 0.015087961219251156, 0.02595856599509716, -0.021207978948950768, -0.015197031199932098, -0.02113526500761509, -0.008610439486801624, 0.002816116437315941, 0.013367085717618465, -0.024698205292224884, -0.008992183022201061, 0.03989523649215698, -0.03945895656943321, -0.013451917096972466, 0.05162627622485161, 0.039555907249450684, 0.004880864638835192, -0.022747071459889412, -0.039652857929468155, 0.026007041335105896, 0.015318219549953938, 0.053662244230508804, 0.02981235831975937, -0.04813605174422264, -0.03703518956899643, 0.00606851140037179, -0.042658332735300064, 0.02569195069372654, -0.018893279135227203, 0.018444880843162537, -0.02637060545384884, -0.025934327393770218, 0.0219472274184227, -0.002685838844627142, -0.029957784339785576, -0.004856626968830824, -0.049881163984537125, 0.03945895656943321, -0.008695270866155624, -0.04067084193229675, 0.04294918477535248, 0.01340344175696373, -0.024892106652259827, 0.04433073475956917, 0.000971779867541045, -0.03393276408314705, -0.05249883607029915, 0.02221384271979332, 0.05123847350478172, -0.06476310640573502, -0.06292103976011276, 0.013367085717618465, 0.014881941489875317, 0.013985146768391132, 0.017475374042987823, -0.02467396669089794, 0.013258015736937523, 0.09806568920612335, 0.0357748307287693, 0.015572715550661087, 0.008295348845422268, -0.02113526500761509, 0.007374316919595003, 0.03315715864300728, -0.01284597534686327, -0.02255317009985447, 0.023813528940081596, -0.09336357563734055, -0.021292809396982193, 0.004099199082702398, -0.028139956295490265, 0.03196951374411583, -0.04142221063375473, -0.04425802081823349, 0.057879600673913956, -0.030733389779925346, 0.016954263672232628, -0.08012980222702026, -0.03412666544318199, -0.03196951374411583, -0.008810400031507015, -0.002204114804044366, -0.01913565583527088, 0.02319546788930893, 0.016396796330809593, 0.019620409235358238, 0.02342572622001171, 0.030612200498580933, -0.03996795043349266, -0.01613018289208412, -0.04956607520580292, 0.040428467094898224, 0.024080144241452217, 0.017548086121678352, -0.02663722075521946, 0.0752822607755661, 0.0035417324397712946, -0.007434911094605923, -0.014166929759085178, 0.0017920741811394691, -0.021995702758431435, 0.027000784873962402, 0.009779907763004303, 0.020432371646165848, -0.054098520427942276, 0.018590306863188744, 0.01310047134757042, 0.012052190490067005, 0.030612200498580933, -0.036065682768821716, -0.015572715550661087, -0.0051141525618731976, -0.016021111980080605, -0.010507037863135338, -0.03778655827045441, 0.007277366239577532, -0.0170512143522501, -0.0275097768753767, -0.0002550638164393604, -0.04338546469807625, 0.013306491076946259, 0.007598515599966049, 0.011185693554580212, 0.013912433758378029, -0.005871579982340336, 0.02002033032476902, -0.07431275397539139, -0.03153323382139206, 4.10904576710891e-05, 0.05860673263669014, 0.006429046858102083, -0.00554437143728137, -0.05060829594731331, -0.0231227558106184, 0.006050333380699158, -0.010525216348469257, 0.024358877912163734, 0.0567161925137043, -0.0008119625854305923, -0.001701182802207768, -0.04110712185502052, -0.038707587867975235, 0.05429242551326752, -0.029836595058441162, 0.0275097768753767, -0.05618296191096306, 0.007895426824688911, -0.0442337840795517, -0.06258171051740646, 0.003511435119435191, 0.0032417909242212772, -0.04297342151403427, 0.0492994599044323, -0.01597263664007187, -0.005792807787656784, -0.01375488843768835, -0.030975766479969025, 0.04510634019970894, -0.04311884939670563, 0.0293760783970356, -0.013051996007561684, 0.0273401141166687, 0.006150313653051853, 0.028600472956895828, -0.004308249335736036, -0.006235145498067141, 0.021583661437034607, -0.024564897641539574, -0.03761689364910126, -0.0091133713722229, -0.022068416699767113, -0.03378733992576599, -0.02005668729543686, -0.03650195896625519, 0.011640150099992752, 0.00484450813382864, 0.015051605179905891, -0.049372173845767975, 0.007628812454640865, -0.01856607012450695, -0.009931392967700958, -0.019026586785912514, -0.01095543522387743, 0.0005392885650508106, 0.030806103721261024, 0.03531431406736374, -0.013245897367596626, -0.05380766838788986, 0.00704710790887475, -0.01792377047240734, -0.0024707294069230556, -0.027776392176747322, 0.05022049322724342, 0.0408405065536499, -0.00530805392190814, -0.008107506670057774, 0.08332917839288712, -0.06282409280538559, -0.019196249544620514, 0.007150118239223957, 0.01280961837619543, -0.046633314341306686, -0.011094802059233189, -0.02811571955680847, -0.02605551667511463, -0.00934968888759613, 0.01188252680003643, -0.03318139538168907, -0.04161611199378967, -0.03320563584566116, -0.02673417143523693, 0.0035811185371130705, 0.006223026663064957, 0.024261927232146263, -0.0183964055031538, -0.019935499876737595, -0.005186865571886301, -0.01694214530289173, -0.05647381395101547, 0.031218143180012703, 0.021559424698352814, 0.0030554637778550386, 0.0140093844383955, -0.03051524981856346, -0.06636279076337814, -0.016517985612154007, 0.00513233058154583, -0.041810013353824615, 0.009810204617679119, -0.001801163307391107, -0.003281177254393697, 0.01168256625533104, 0.01758444309234619, 0.0577341765165329, 0.057200945913791656, 0.006931979209184647, -0.0072228312492370605, 0.03565363958477974, 0.033544961363077164, 0.022625882178544998, 0.0011315970914438367, 0.03487803414463997, -0.016251370310783386, -0.029254890978336334, -0.004720290191471577, 0.033908527344465256, -0.032017987221479416, -0.0025131453294306993, -0.05240188539028168, 0.009761729277670383, -0.012918688356876373, -0.036211106926202774, -0.02166849374771118, -0.015184911899268627, 0.0019011436961591244, 0.0022404713090509176, -0.032017987221479416, -0.012821737676858902, -0.03739875555038452, 0.003938624635338783, -0.028770137578248978, 0.06437530368566513, -0.0140942158177495, 3.775304139708169e-05, 0.016590697690844536, 0.026516031473875046, 0.03247850388288498, 0.02039601467549801, -0.013245897367596626, -0.012833856046199799, -0.014106335118412971, 0.010755474679172039, -0.029715407639741898, -0.002204114804044366, 0.007259187754243612, -0.005665559787303209, 0.019535576924681664, 0.01633620262145996, -0.02765520289540291, -0.02620094269514084, -0.012161260470747948, 0.03873182833194733, -0.011997655965387821, -0.013512511737644672, -0.055989060550928116, -0.008664974011480808, 0.01119175273925066, -0.003247850341722369, -0.030442537739872932, 0.019402269273996353, 0.03133933246135712, 0.014154810458421707, 0.0015034941025078297, 0.06418140232563019, 0.039652857929468155, 0.00933756958693266, -0.02896403893828392, 0.024661848321557045, -0.07489445805549622, 0.010603989474475384, 0.027267400175333023, 0.005953382235020399, -0.01589992456138134, 0.034756846725940704, -0.025134483352303505, -0.06461767852306366, 0.043967168778181076, 0.04854809120297432, -0.013161065056920052, -0.023680223152041435, -0.02022635191679001, -0.029182177037000656, 0.019026586785912514, -0.027800628915429115, 0.003632623702287674, 0.006816850043833256, -0.01836005039513111, -0.013742770068347454, 0.010034403763711452, 0.029594218358397484, -0.019802192226052284, 0.028988275676965714, -0.01426388043910265, -0.013367085717618465, -0.02359539084136486, 0.008246873505413532, 0.0020011242013424635, 0.02066262997686863, 0.03899844363331795, 0.0658295601606369, -0.021244334056973457, -0.006986513733863831, 0.04527600482106209, 0.008416537195444107, -0.007137999404221773, 0.020238470286130905, 0.011518961749970913, 0.03490227088332176, -0.036211106926202774, 0.023074280470609665, 0.024431589990854263, 0.01620289497077465, 0.01994761824607849, -0.04641517624258995, 0.03289054334163666, -0.0194143895059824, 0.0011649238876998425, 0.019426507875323296, 0.004583952948451042, 0.013015639036893845, -0.030781865119934082, 0.013936671428382397, 0.00317816692404449, 0.009446639567613602, -0.018154028803110123, 0.008434715680778027, 0.03807741031050682, 0.009022479876875877, -0.008331705816090107, -0.006689602043479681, -0.0025116305332630873, 0.0017208759672939777, 0.017608681693673134, -0.02947303093969822, 0.046802978962659836, 0.029157940298318863, -0.016057468950748444, 0.0033993360120803118, -0.006062452215701342, 0.005056587979197502, -0.009301213547587395, -0.018747853115200996, 0.003990129567682743, -0.06728382408618927, -0.04806333780288696, 0.006835028529167175, 0.02349844016134739, 0.021086789667606354, -0.029836595058441162, -0.013718532398343086, -0.0029797209426760674, -0.01235516183078289, 0.02501329593360424, 0.004184030927717686, -0.01937803253531456, -0.02400743030011654, 0.030903054401278496, -0.013294372707605362, -0.01799648441374302, 0.0056413221172988415, -0.008319586515426636, 0.04033151641488075, 0.031072717159986496, -0.058315880596637726, -0.026249418035149574, 0.04299766197800636, 0.0006877444102428854, 0.007156177889555693, -0.004820270463824272, 0.03688976168632507, 0.016057468950748444, -0.044306494295597076, -0.00024010460765566677, -0.01788741536438465, 0.021620018407702446, 0.04445192217826843, 0.04365207999944687, 0.033908527344465256, -0.015778735280036926, -0.002790363971143961, -0.002800968009978533, 0.023680223152041435, -0.031072717159986496, -0.07513683289289474, -0.018747853115200996, 0.004341576248407364, -0.015051605179905891, -0.025304147973656654, 0.01812979206442833, -0.01894175447523594, 0.019087180495262146, -0.04021032527089119, 0.0053777373395860195, 0.02629789337515831, 0.017087571322917938, 0.029763882979750633, -0.051093049347400665, -0.05172322690486908, 0.05574668571352959, 0.01631196402013302, 0.05080219730734825, 0.014360831119120121, -0.03301173448562622, -0.03979828581213951, -0.03310868516564369, -0.01603323221206665, 0.008870994672179222, -0.011615912429988384, -0.010876663029193878, 0.01627560891211033, -0.048960130661726, 0.016324084252119064, -0.004738468211144209, 0.029109464958310127, 0.0008134774398058653, -0.02828538417816162, -0.007677288260310888, 0.009755670092999935, 0.03642924502491951, -0.035629402846097946, 0.003256939584389329, 0.003947713412344456, 0.004693022463470697, -0.046948403120040894, -0.06553871184587479, -0.02281978353857994, -0.015027367509901524, 0.003244820749387145, 0.005177776329219341, -0.01691790670156479, 0.014578970149159431, -0.0025176899507641792, -0.04096169397234917, 0.015621190890669823, -0.02079593762755394, -0.002073837211355567, 0.015887804329395294, -0.00013482214126270264, -0.031000005081295967, 0.018238861113786697, 0.03827131167054176, -0.0637935996055603, -0.004483972676098347, -0.0075500402599573135, -0.02680688351392746, -0.02440735325217247, -0.049202509224414825, 0.015754498541355133, 0.015706023201346397, -0.011724982410669327, -0.020686868578195572, -0.005753421690315008, 0.005589817184954882, -0.05085067078471184, 0.004129496403038502, 0.0043900515884160995, 0.016651293262839317, -0.007640931289643049, -0.013270135037600994, -0.018856922164559364, -0.012664192356169224, 0.03987099975347519, 0.026103992015123367, 0.0005919298273511231, 0.008149922825396061, -0.017208758741617203, 0.019838549196720123, 0.006004887633025646, -0.00265857158228755, -0.007743941619992256, 0.03041829913854599, -0.01843276247382164, 0.010706999339163303, 0.0059049068950116634, -0.003859851974993944, -0.0038477331399917603, -0.018990229815244675, -0.00968901626765728, -0.020480846986174583, 0.0292064156383276, -0.0017875295598059893, -0.0019647676963359118, 0.009283035062253475, -0.03669586032629013, -0.006032154895365238, 0.017778344452381134, 0.033302586525678635, -0.0293760783970356, -0.0050232610665261745, 0.019741598516702652, 0.045082103461027145, -0.020565679296851158, -0.004941458813846111, 0.0442337840795517, -0.010464622639119625, 0.02569195069372654, -0.01554847788065672, -0.044209543615579605, -0.04641517624258995, 0.011185693554580212, -0.025401098653674126, 0.0034750786144286394, -0.011755279265344143, 0.007059226743876934, 0.005229281261563301, 0.012688430026173592, -0.03625958412885666, -0.001080849440768361, -0.0012641469947993755, 0.03289054334163666, 0.008646795526146889, 0.024734562262892723, -0.04217357933521271, 0.030878815799951553, 0.012173379771411419, 0.005011142231523991, 0.0009490569937042892, 0.03548397868871689, -0.037956222891807556, -0.03315715864300728, 0.020614154636859894, -0.018081316724419594, 0.012300627306103706, -0.019099298864603043, 0.029279127717018127, 0.012676311656832695, -0.017511731013655663, -0.02845504693686962, 0.004959637299180031, -0.012688430026173592, -0.01913565583527088, 0.015003129839897156, 0.010452503338456154, -0.029885070398449898, -0.016178658232092857, 0.018687257543206215, 0.017499610781669617, -0.03315715864300728, -0.01168256625533104, 0.011034208349883556, -0.01122205052524805, -0.018287336453795433, -0.025667712092399597, -0.04459734633564949, -0.04968726262450218, -0.020165758207440376, -0.008198398165404797, -0.03688976168632507, -0.03451446816325188, 0.04227053001523018, -0.034756846725940704, -0.044912438839673996, 0.00385682238265872, 0.010410087183117867, 0.028721662238240242, 0.0029827505350112915, 0.049614548683166504, -0.03163018450140953, 0.06708992272615433, 0.006598711013793945, -0.015124318189918995, 0.0054201530292630196, 0.009561768732964993, 0.004805122036486864, 0.009010360576212406, 0.0040628425776958466, -0.06626584380865097, -0.029351841658353806, 0.018117671832442284, -0.015500002540647984, -0.02096560038626194, 0.04110712185502052, -0.024310402572155, 0.014191167429089546, -0.07227678596973419, -0.001919322065077722, 0.002408620435744524, 0.008707390166819096, 0.0007778783328831196, 0.03170289844274521, 0.026419080793857574, -0.014712276868522167, -0.026491794735193253, -0.012276389636099339, -0.06229086220264435, 0.008537725545465946, -0.007792416960000992, -0.02423768863081932, -0.0031811967492103577, -0.025473810732364655, -0.014045740477740765, 0.004456704948097467, 0.02376505360007286, 0.03032134845852852, -0.02646755613386631, 0.011046326719224453, -0.03567788004875183, 0.01306411437690258, 0.01722087897360325, 0.0002681294281501323, 0.03412666544318199, -0.0052323113195598125, -0.0024692146107554436, 0.056425340473651886, 0.023571152240037918, 0.031921036541461945, -0.001693608588539064, 0.03015168569982052, 0.027897579595446587, 0.06592651456594467, 0.0177298691123724, 0.013767007738351822, -0.015851449221372604, -0.021413998678326607, -0.018517594784498215, 0.018323693424463272, 0.001094483188353479, -0.0813416838645935, -0.027218924835324287, 0.014894059859216213, -0.022844022139906883, -0.03204222396016121, 0.04190696403384209, 0.008664974011480808, -0.009828383103013039, 0.0038083468098193407, -0.07407037913799286, -0.037519942969083786, 0.0052595785818994045, -0.007792416960000992, 0.011615912429988384, 0.003981040325015783, 0.0012459687422960997, 0.025473810732364655, -0.032187651842832565, 0.018723614513874054, -0.045082103461027145, -0.007265247404575348, 0.013548868708312511, -0.0039568026550114155, 0.013051996007561684, -0.019959736615419388, 0.00013491683057509363, -0.027218924835324287, 0.014784990809857845, 0.0033387416042387486, 0.0013148946454748511, 0.035871781408786774, -0.03427209332585335, 0.012530885636806488, -0.018238861113786697, -0.008986122906208038, 0.021826039999723434, -0.003366009099408984, 0.011312941089272499, 0.014627445489168167, -0.03601720556616783, -0.028721662238240242, 0.04476701095700264, 0.01631196402013302, 0.016820956021547318, 0.021850276738405228, 0.022153247147798538, -0.014300236478447914, 0.009761729277670383, 0.008798280730843544, -0.04195544123649597, -0.009355748072266579, 0.046100083738565445, -0.01691790670156479, -9.619332558941096e-05, 0.02569195069372654, 0.004596071783453226, 0.03839249908924103, 0.008452894166111946, 0.004059812985360622, -0.005041439551860094, 0.015269744209945202, 0.03623534366488457, -0.012318805791437626, -0.03427209332585335, 0.02248045615851879, -0.005226251669228077, 0.009283035062253475, 0.010579750873148441, 0.001813282142393291, -0.00014447934518102556, 0.012918688356876373, 0.015584833920001984, -0.03550821542739868, -0.03633229434490204, 0.024892106652259827, -0.004768765531480312, -0.0024570957757532597, 0.003608386032283306, -0.004296130500733852, -0.019087180495262146, 0.04716654494404793, -0.006404809188097715, -0.004880864638835192, 0.003653831547126174, 0.005214132834225893, 0.040089137852191925, 0.02741282619535923, -0.024661848321557045, 0.004711200948804617, -0.025376860052347183, 0.02181391976773739, -0.04561533033847809, 0.02940031699836254, 0.016590697690844536, -0.04144644737243652, 0.003726544789969921, 0.01353674940764904, 0.005541341844946146, -0.017645036801695824, -0.012397577986121178, -0.003502346109598875, 0.04711806774139404, -0.013391323387622833, -0.0675261989235878, -0.037859272211790085, -0.011373535729944706, -0.012409697286784649, -0.02211689203977585, 0.03926505520939827, -0.013439798727631569, 0.009519352577626705, -0.04709383100271225, 0.015003129839897156, 0.002202600007876754, 0.0015845389571040869, -0.009931392967700958, -0.02238350547850132, -0.0009566312655806541, -0.0007983288960531354, 0.011931002140045166, 0.0055504306219518185, 0.024419471621513367, 0.01678459905087948, -0.005632232874631882, -0.0189053975045681, -0.010234364308416843, 0.010149531997740269, 0.012773262336850166, 0.0010573691688477993, -0.021620018407702446, -0.005698886699974537, 0.008228695020079613, -0.01739054173231125, -0.013488274067640305, 0.017899533733725548, -0.011621971614658833, 0.023268181830644608, 0.05152932554483414, -0.02092924527823925, -0.020735343918204308, 0.0007831803523004055, 0.0003025924088433385, -0.019826428964734077, 0.011791636236011982, 0.005692827049642801, -0.0022813724353909492, -0.0039719510823488235, -0.02765520289540291, -0.02673417143523693, -0.020165758207440376, 0.00815598201006651, -0.0012474835384637117, -0.015003129839897156, -0.01331861037760973, -0.013161065056920052, -0.02032330259680748, -0.040622368454933167, -0.0016133211320266128, -0.0004892983706668019, 0.008349884301424026, 0.017911652103066444, -0.020105162635445595, -0.006326036993414164, 0.010761533863842487, 0.0009036113624460995, 0.0011422011302784085, -0.022225961089134216, 0.04736044630408287, 0.022165367379784584, 0.025037532672286034, -0.017535967752337456, -0.032454267144203186, 0.004493061453104019, -0.024698205292224884, -0.0005294420407153666, 0.024189213290810585, -0.011434129439294338, 0.008646795526146889, 0.037519942969083786, 0.02656450681388378, 0.03015168569982052, -0.03189679980278015, -0.05104457214474678, -0.0025934327859431505, 0.022965209558606148, 0.02174120768904686, -0.01367005705833435, 0.01691790670156479, -0.0146032078191638, -0.011961299926042557, 0.021692732349038124, -0.008386240340769291, -0.020250588655471802, -0.02332877553999424, 0.004235536325722933, -0.008113566786050797, -0.015027367509901524, -0.06830180436372757, 0.007489446084946394, 0.012058250606060028, -0.009240618906915188, -0.017293591052293777, -0.006435106508433819, 0.015536358579993248, -0.003378127934411168, 0.03977404907345772, -0.003978010732680559, 0.010676702484488487, -0.020214233547449112, -0.02940031699836254, 0.005671619437634945, 0.062000010162591934, 0.05182018131017685, -0.019123537465929985, 0.02370445989072323, 0.018832683563232422, -0.0056685893796384335, 0.016118062660098076, 0.0021420058328658342, 0.014894059859216213, -0.012433934956789017, 0.015439407899975777, -0.02181391976773739, 0.006622948683798313, 0.029230652377009392, 0.0034569003619253635, -0.05317749083042145, 0.003514464944601059, 0.02306216210126877, -0.02200782112777233, 0.05618296191096306, 0.03085457906126976, -0.01566966623067856, 0.015015248209238052, -0.0015951428795233369, 0.012082488276064396, -0.004941458813846111, -0.007962080650031567, -0.00364171271212399, -0.01877208985388279, -0.009464818052947521, -0.023886242881417274, 0.006525998003780842, 0.011270525865256786, 0.019232606515288353, -0.017172403633594513, -0.004805122036486864, 0.017075451090931892, -0.005474688019603491, 0.033302586525678635, 0.008537725545465946, -0.009173965081572533, 0.000958146178163588, 0.0030978797003626823, -0.022928854450583458, -0.011464427225291729, -0.010531275533139706, 0.0364534854888916, 0.045324478298425674, 0.004114347510039806, -0.012300627306103706, 0.043433938175439835, 0.01968100294470787, 0.002540412824600935, -0.02039601467549801, -0.012258211150765419, -0.0010141958482563496, -0.0073016039095819, -0.00314786983653903, 0.06384207308292389, -0.012021893635392189, -0.02680688351392746, 0.0165422223508358, 0.00437187310308218, 0.008652854710817337, 0.015281862579286098, -0.03211493790149689, 0.0005298207397572696, 0.04033151641488075, -0.0002626380883157253, 0.021862395107746124, -0.02511024661362171, 0.011773457750678062, 0.03194527328014374, -0.01448201946914196, 0.010779712349176407, 0.0009043687605299056, 0.039240818470716476, 0.008943707682192326, -0.0012883846648037434, 0.00840441882610321, 0.002304095309227705, 0.04260985925793648, 0.0009210322168655694, 0.01805707812309265, 0.03361767530441284, -0.0035477918572723866, 0.05341986566781998, 0.03213917464017868, 0.0011626516934484243, 0.024189213290810585, 0.006477522663772106, 0.016530103981494904, 0.017293591052293777, -0.011718922294676304, 0.0069562168791890144, 0.000608593225479126, 0.006580532528460026, 0.0170512143522501, 0.02355903387069702, 0.022359268739819527, 0.012385459616780281, -0.0015103110345080495, 0.0011066020233556628, 0.008992183022201061, -0.0384894497692585, -0.001323226373642683, -0.03487803414463997, 0.03378733992576599, 0.01576661691069603, -0.0046536363661289215, 0.014300236478447914, -0.018711496144533157, 0.016772480681538582, 0.0584128312766552, 0.050656769424676895, -0.013488274067640305, 0.011119039729237556, 0.0026055516209453344, 0.02663722075521946, 0.054340898990631104, 0.031048480421304703, 0.028648948296904564, 0.0029751763213425875, -0.0023707489017397165, -0.0067198993638157845, 0.010767593048512936, -0.009355748072266579, -0.05191713199019432, -0.009173965081572533, 0.027388589456677437, 0.0146880391985178, -0.021656375378370285, -0.028551997616887093, 0.008143863640725613, -0.01426388043910265, 0.010888781398534775, -0.02862471155822277, 0.010016225278377533, -0.023874124512076378, 0.03851368650794029, 0.009737491607666016, -0.05371071770787239, -0.014772871509194374, 0.01259147934615612, 0.010755474679172039, -0.006453284528106451, 0.008228695020079613, -0.0275097768753767, 0.010004105977714062, -0.005220192484557629, 0.0293760783970356, -0.026516031473875046, -0.03451446816325188, 0.053080540150403976, -0.002170788124203682, -0.012209735810756683, -0.019268963485956192, 0.013524630106985569, -0.0023192439693957567, 0.01644527167081833, 0.012470290996134281, 0.021959345787763596, -0.03306020796298981, -0.046100083738565445, -0.01318530272692442, 0.000958146178163588, -0.007810595445334911, 0.021620018407702446, 0.008907350711524487, -0.002291976474225521, -0.015827210620045662, -0.008695270866155624, 0.028673186898231506, -0.007374316919595003, 0.0029691169038414955, 0.0053504700772464275, -0.02484363131225109, 0.0072228312492370605, -0.015887804329395294, -0.0006226056138984859, -0.012094606645405293, -0.012736905366182327, 0.023449964821338654, 0.02862471155822277, 0.012603598646819592, -0.008416537195444107, -0.020917125046253204, -0.008677092380821705, 0.00018916759290732443, -0.010797890834510326, 0.026612982153892517, 0.002773700514808297, -0.01674824394285679, 0.02058991603553295, -0.0121552012860775, 0.01758444309234619, 0.018711496144533157, 0.022129010409116745, -0.0091982027515769, -0.019693123176693916, -0.0018996288999915123, -0.010046522133052349, 0.005726153962314129, -0.00771364476531744, 0.004983874969184399, 0.00456577492877841, -0.02784910425543785, -0.025376860052347183, -0.04660907760262489, -0.0038477331399917603, 0.0022586495615541935, -0.019293200224637985, -0.006913800723850727, 0.03822283446788788, 0.04144644737243652, -0.03856216371059418, -0.018759971484541893, -0.014760753139853477, -0.022916734218597412, -0.03538702800869942, 0.010646404698491096, 0.045494142919778824, -0.011712863110005856, -0.04442768543958664, -0.004487002268433571, -0.004253714345395565, 0.02835809625685215, 0.028043005615472794, -0.003932564985007048, -0.009034598246216774, -0.004038604907691479, 0.004983874969184399, 0.029424553737044334, 0.0658295601606369, 0.009246678091585636, -0.020505085587501526, 0.016699768602848053, 0.043191563338041306, -0.011076623573899269, 0.018687257543206215, 0.009034598246216774, -0.002046569949015975, -0.024940581992268562, -0.00968901626765728, 0.011022089049220085, 0.023546915501356125, 0.014578970149159431, -0.009919274598360062, -0.003890149062499404, 0.0324057899415493, 0.003511435119435191, 0.024225570261478424, -0.009998046793043613, 0.0021147383376955986, -0.0428764708340168, 0.019899142906069756, -0.030878815799951553, -0.004026486072689295, -0.01065246481448412, -0.005462569184601307, 0.018493356183171272, 0.02484363131225109, 0.027170449495315552, -0.001960223075002432, -0.007574277929961681, -0.015366694889962673, -0.01694214530289173, 0.015015248209238052, -0.003978010732680559, 0.0032084640115499496, 0.02930336631834507, -0.006029125303030014, 0.020735343918204308, 0.0051262713968753815, -0.042415957897901535, 0.0044021704234182835, 0.0019102328224107623, 0.01379124540835619, 0.049541838467121124, 0.016287727281451225, -0.018384287133812904, 0.0023677193094044924, -0.00872556772083044, 0.023486319929361343, 0.020505085587501526, 0.0008021160028874874, 4.7339235607068986e-05, -0.010906959883868694, -0.004114347510039806, -0.008949766866862774, -0.027170449495315552, 0.011246288195252419, -0.015657547861337662, 0.025304147973656654, -0.013997265137732029, -0.015403051860630512, 0.00583219388499856, -0.0013724591117352247, 0.009664778597652912, -0.0033569198567420244, -0.00992533378303051, -0.03092729113996029, -0.027218924835324287, 0.03480532020330429, -0.0442337840795517, 0.025934327393770218, 0.02964269369840622, 0.008683152496814728, 0.012664192356169224, -0.00796814076602459, 0.010282839648425579, -0.033035971224308014, -0.00010177936201216653, -0.011482604779303074, -0.0010725177126005292, 0.010464622639119625, -0.0001695691462373361, -0.014748633839190006, -0.0069562168791890144, -0.012858093716204166, 0.015245506539940834, 0.0006797914393246174, 0.04285223409533501, 0.025643475353717804, -0.003511435119435191, 0.0035659701097756624, 0.0200809258967638, 0.008828578516840935, 0.025328384712338448, -0.007465208414942026, -0.023134874179959297, 0.0023934717755764723, 0.02258952707052231, 0.003720485372468829, 0.0058927880600094795, -0.00807115063071251, 0.032866306602954865, -0.021462474018335342, 0.00862861704081297, -0.020820174366235733, -0.02576466277241707, 0.015645427629351616, -0.008749805390834808, 0.025473810732364655, -0.01036161184310913, -0.006986513733863831, -0.02467396669089794, -0.008046912960708141, -0.004071931820362806, 0.0017329948022961617, -0.03550821542739868, 0.005320172756910324, 0.02234714850783348, 0.021729087457060814, -0.004077991005033255, 0.03451446816325188, 0.007010751403868198, -0.003250880166888237, 0.02045661024749279, -0.015463645569980145, 0.01711180806159973, 0.016421034932136536, -0.016021111980080605, -0.0027055321261286736, 0.009125489741563797, -0.016833074390888214, 0.03325410932302475, -0.029545743018388748, 0.01661493629217148, -0.003538702614605427, -0.0041385856457054615, 0.009307272732257843, -0.001960223075002432, 0.01140989176928997, 0.013936671428382397, -0.0048960130661726, 0.021620018407702446, 0.008004496805369854, -0.015403051860630512, -0.026103992015123367, -0.0214382354170084, 0.0067986720241606236, -0.00775606045499444, -0.02032330259680748, 0.019911261275410652, 0.008343824185431004, 0.0371321402490139, 0.012555123306810856, -0.014057859778404236, -0.021559424698352814, -0.006671424023807049, -0.00032001323415897787, -0.022322911769151688, -0.01098573300987482, 0.01799648441374302, -0.0062472643330693245, 0.03383581340312958, 0.01907506212592125, -0.03524160012602806, 0.0004616522346623242, 0.007859070785343647, 0.03436904400587082, -0.002188966376706958, -0.0039568026550114155, -0.031727135181427, 0.00864073634147644, 0.025231434032320976, -0.04101017117500305, -0.026176704093813896, -0.01866302080452442, 0.013560987077653408, -0.027364350855350494, -0.0027297697961330414, 0.018323693424463272, 0.00629573967307806, 0.012385459616780281, -0.0022389565128833055, -0.00909519288688898, -0.032793592661619186, 0.017705632373690605, -0.01306411437690258, 0.033981241285800934, -0.007671228609979153, 0.04651212692260742, -0.02828538417816162, 0.04925098270177841, -0.01616653800010681, -0.008083269000053406, -0.01613018289208412, 0.013936671428382397, 0.024940581992268562, -0.002664630999788642, 0.003947713412344456, 0.0041658529080450535, -0.017984366044402122, 0.005459539592266083, 0.01661493629217148, -0.008410478010773659, -0.027000784873962402, 0.002404075814411044, -0.024164976552128792, 0.0006669151480309665, -0.008428656496107578, -0.0018753912299871445, -0.003108483739197254, 0.010937257669866085, 0.06578108668327332, 0.0007642446435056627, -0.0122400326654315, -0.0008362002554349601, -0.034078191965818405, 0.010519157163798809, -0.0015981725882738829, -0.014397187158465385, -0.014506257139146328, 0.001333072897978127, -0.014966772869229317, -0.005913996137678623, 0.013464036397635937, -0.007434911094605923, 0.012458172626793385, 0.00365080195479095, 0.02906098961830139, 0.027000784873962402, -0.019826428964734077, -0.02079593762755394, -0.029836595058441162, -0.014978892169892788, 0.014057859778404236, -0.032017987221479416, 0.02605551667511463, -0.01880844682455063, 0.00635633384808898, 0.01554847788065672, 0.0076954662799835205, -0.013476154766976833, -0.018178267404437065, -0.0035902077797800303, 0.03962862119078636, -0.0364534854888916, -0.0550195537507534, -0.041713062673807144, -0.035193122923374176, 0.029109464958310127, -0.01426388043910265, 0.009876858443021774, -0.051093049347400665, -0.002063233405351639, 0.014991010539233685, 0.006677483208477497, -0.009755670092999935, -0.008446834981441498, 0.0013194391503930092, 0.010076818987727165, -0.030103210359811783, -0.004238565918058157, 0.002390442183241248, 0.023171231150627136, 0.020941363647580147, -0.04365207999944687, 0.00461727986112237, 0.009004301391541958, -0.0009566312655806541, -0.022092653438448906, -0.037592656910419464, -0.0034296330995857716, -0.0313878059387207, -0.002170788124203682, 0.010270720347762108, 0.022032059729099274, 0.019499221816658974, 0.05051134526729584, 0.01340344175696373, 0.0036962477024644613, 0.01130688190460205, 0.013367085717618465, 0.02673417143523693, 0.0009422401781193912, -0.009392104111611843, 0.009428461082279682, 0.0025873733684420586, 0.012664192356169224, -0.017463255673646927, 0.014724396169185638, 0.001207339926622808, 0.02342572622001171, -0.014494137838482857, 0.004505180288106203, 0.02461337298154831, 0.03608991950750351, -0.012027952820062637, 0.02042025327682495, -0.004335516598075628, -0.008283230476081371, -0.01616653800010681, 0.021220097318291664, -0.00992533378303051, 0.0012921717716380954, 0.027364350855350494, 0.018008602783083916, 0.029545743018388748, -0.013173184357583523, 0.007810595445334911, -0.004120407160371542, 0.008767983876168728, 0.006931979209184647, -0.02149883098900318, -0.0005286845844238997, 0.0398467592895031, -0.01310047134757042, 0.023183349519968033, 0.010404027998447418, 0.005580727942287922, 0.013258015736937523, -0.004868745803833008, -0.014397187158465385, -0.045833468437194824, 0.10519157350063324, 0.014506257139146328, -0.03335106000304222, -0.03429633006453514, -0.025934327393770218, -0.01328225340694189, 0.01027678046375513, -0.01869937777519226, 0.0033084445167332888, 0.01836005039513111, 0.015378814190626144, 0.01250664796680212, -0.016251370310783386, -0.010131354443728924, 0.021183740347623825, 0.0017269353847950697, -0.0075621590949594975, -0.009616303257644176, -0.014300236478447914, 0.01680883765220642, -0.007404614239931107, -0.015112198889255524, 0.00192841119132936, -0.0028903444763273, -0.011034208349883556, 0.005447420757263899, 0.04917827248573303, 0.010803950019180775, 0.026685696095228195, -0.015657547861337662, 0.04362783953547478, -0.02525567263364792, 0.012312745675444603, -0.03761689364910126, 0.03238155320286751, -0.04474277421832085, -0.0017254204722121358, 0.023389369249343872, -0.017123928293585777, 0.003523553954437375, 0.03482956066727638, -0.029424553737044334, 0.019668884575366974, -0.02714621275663376, 0.051335424184799194, 0.06073964759707451, -0.01779046468436718, -0.001817826647311449, -0.01758444309234619, -0.011349298059940338, 0.04668178781867027, -0.04057389125227928, -0.03133933246135712, -0.013960909098386765, 0.0024722442030906677, 0.06301799416542053, -0.01117357425391674, 0.00678655318915844, -0.013294372707605362, -0.03592025488615036, 0.05104457214474678, -0.009979868307709694, 0.015645427629351616, -0.02058991603553295, 0.0029509386513382196], [0.04789607971906662, 0.0031849814113229513, 0.0521247424185276, 0.04867277294397354, -0.04893167316913605, 0.04530710354447365, -0.03488646820187569, -0.020366622135043144, 0.0033467926550656557, 0.05700065195560455, -0.008840278722345829, 0.009341893717646599, -0.0017448628786951303, 0.055490415543317795, -0.03303103521466255, -0.01388339139521122, 0.006332207005470991, 0.055965058505535126, -0.004422836471349001, -0.025825049728155136, 0.044703010469675064, 0.06321419775485992, -0.05708695203065872, -0.007864018902182579, -0.04064694419503212, -0.0139373280107975, -0.012232918292284012, 0.0114993741735816, 0.043947890400886536, -0.03136977553367615, 0.056051358580589294, -0.027702057734131813, 0.02414221316576004, -0.03538269177079201, -0.00027625871007330716, 0.01895347237586975, -0.008090553805232048, -0.023710718378424644, -0.015328903682529926, 0.011019335128366947, -0.003217343706637621, -0.028651349246501923, -0.009169294498860836, 0.0003362636489327997, -0.015728037804365158, 0.061617661267519, -0.031434498727321625, -0.053289782255887985, -0.027982529252767563, 0.0395897775888443, 0.02358126826584339, 0.024379536509513855, 0.04217875748872757, -0.027313711121678352, 0.03795009106397629, 0.05065765604376793, 0.02558772638440132, 0.0331820584833622, 0.01954677887260914, -0.04444411024451256, -0.03281528875231743, 0.0014225890627130866, -0.01887795887887478, 0.007718388922512531, 0.0032389184925705194, -0.01244866568595171, -0.03033418394625187, -0.011413075029850006, -0.044400960206985474, -0.03844631463289261, 0.03499434515833855, 0.013807878829538822, -0.016871502622961998, 0.03108930215239525, -0.0036623242776840925, 0.015296541154384613, -0.03311733528971672, 0.0476803332567215, 0.056526005268096924, 0.023149771615862846, -0.04457356035709381, 0.009217837825417519, 0.005636419635266066, -0.006763703189790249, -0.015900636091828346, 0.009854295291006565, -0.03471387177705765, -0.011143390089273453, 0.0021466936450451612, -0.002611900679767132, 0.001577658113092184, 0.008031223900616169, -0.04953576624393463, 0.03007528744637966, 0.009676302783191204, -0.01055008266121149, 0.025544576346874237, -0.04056064411997795, -0.0038376194424927235, 0.03663402795791626, -0.02832772769033909, -0.02873764932155609, -0.049276869744062424, 0.029039695858955383, 0.02891024760901928, -0.07874806225299835, 0.006499412003904581, 0.022869300097227097, 0.010199491865932941, -0.011359138414263725, 0.0354042649269104, -0.031240327283740044, 0.020927567034959793, 0.062437504529953, -0.015318116173148155, 0.0010666047455742955, -0.001523721031844616, 0.01052311435341835, 0.0016626089345663786, -0.004099213983863592, 0.01976252719759941, -0.008716223761439323, -0.01392654050141573, -0.07033388316631317, 0.007464884780347347, 0.025134654715657234, -0.028586624190211296, -0.0007895032758824527, -0.03415292501449585, -0.039266157895326614, 0.051563799381256104, -0.03628883138298988, 0.06446553766727448, -0.04522080346941948, -0.02232993021607399, -0.04235135391354561, 0.02088441699743271, 0.02470315806567669, -0.0024784065317362547, 0.011013940908014774, 0.04867277294397354, 0.017745282500982285, -0.023645993322134018, 0.019730165600776672, -0.03838158771395683, -0.005992403719574213, -0.019589928910136223, 0.05277198925614357, 0.0320601686835289, 0.0029988987371325493, 0.013085123151540756, 0.05536096543073654, -0.04733513668179512, 0.015016068704426289, 0.014865044504404068, 0.023451820015907288, 0.014994493685662746, 0.031261902302503586, -0.004638584330677986, 0.004390473943203688, -0.0058791362680494785, -0.0021709653083235025, -0.0056256321258842945, -0.0232792217284441, 0.018770085647702217, -0.01736772246658802, -0.029514342546463013, 0.032880011945962906, -0.012103469111025333, -0.03574946150183678, -0.02375386655330658, -0.025652451440691948, -0.0110786659643054, 0.009654727764427662, -0.034562848508358, -0.047464583069086075, 0.006326813250780106, 0.0061218529008328915, 0.03788536787033081, -0.02330079674720764, 0.019773313775658607, 0.021143315359950066, -0.05898553505539894, -0.031132452189922333, 0.014379611238837242, 0.02957906574010849, -0.011175752617418766, -0.02765890769660473, -0.05208159610629082, -0.026472292840480804, 0.028284577652812004, 0.015674101188778877, -0.008047404699027538, 0.015577013604342937, 0.013441107235848904, -0.00846271961927414, -0.06588947027921677, -0.02500520646572113, 0.03417450189590454, -0.04444411024451256, 0.03825214132666588, -0.05812254175543785, 0.005107836332172155, 0.014185437932610512, -0.04228663071990013, 0.023020323365926743, -0.01392654050141573, 0.047939229756593704, 0.038511037826538086, -0.014153076335787773, 0.0036758084315806627, -0.004768033046275377, -0.020204810425639153, 0.04923371970653534, -0.004509135615080595, -0.03199544548988342, -0.012297642417252064, 0.022653551772236824, 0.004136970266699791, 0.002877540420740843, -0.019859613850712776, -0.01956835389137268, 0.04875907301902771, -0.011704334989190102, -0.06882365047931671, -0.014940557070076466, -0.018252290785312653, -0.06286899745464325, -0.03620253503322601, -0.08871562033891678, 0.0045981318689882755, 0.029535915702581406, 0.044142063707113266, -0.03298788517713547, -0.006040947046130896, -0.03518851846456528, -0.009352680295705795, -0.012815438210964203, -0.005517757963389158, 0.007939530536532402, 0.019838038831949234, -0.003972461912781, -0.018198354169726372, -0.02433638647198677, 0.009465948678553104, -0.013290083967149258, 0.0248110331594944, -0.03700080141425133, 0.002677973359823227, 0.01541520282626152, 0.014401186257600784, 0.003934706095606089, 0.0733112096786499, -0.0476803332567215, 0.010199491865932941, 0.022114181891083717, 0.021110951900482178, -0.055965058505535126, -0.04552285000681877, 0.002189843449741602, -0.03415292501449585, 0.0033656705636531115, -0.0030798043590039015, 0.002156132599338889, -0.034692294895648956, -0.04560915008187294, 0.005566301289945841, -0.0031040760222822428, 0.004528013523668051, 0.05402332544326782, -0.04286915063858032, 0.033743005245923996, 0.012610477395355701, -0.07369955629110336, -0.08565200120210648, 0.028888672590255737, -0.003190375166013837, -0.009665515273809433, 0.01111102756112814, -0.05316033586859703, -0.03751859813928604, -0.022286780178546906, 0.02729213610291481, -0.07201672345399857, 0.015242604538798332, 0.0035193911753594875, 0.008392601273953915, 0.0025606604758650064, 0.037648044526576996, 0.022631976753473282, 0.06075466796755791, -0.006423899903893471, -0.03529639169573784, -0.016871502622961998, 0.02355969324707985, 0.016375280916690826, 0.0016585636185482144, 0.02832772769033909, -0.012491815723478794, -0.02199552021920681, 0.024379536509513855, 0.05216789245605469, -0.025048356503248215, 0.006386144086718559, -0.04409891366958618, -0.007885593920946121, 0.00632141949608922, -0.004110001493245363, -0.023926464840769768, -0.014347249642014503, 0.023904891684651375, -0.01445512380450964, -0.02129433862864971, -0.03247009217739105, -0.03236221522092819, 0.005342462565749884, -0.02093835361301899, 0.036785054951906204, 0.028586624190211296, 0.015706462785601616, 0.0010982927633449435, 0.011725910007953644, 0.005927679594606161, 0.012125044129788876, 9.194577432936057e-05, -0.018133629113435745, -0.026450717821717262, 0.014228587970137596, -0.01745402254164219, -0.012988036498427391, -0.02681748941540718, -0.01049614604562521, -0.003290158696472645, 0.014422761276364326, 0.004279903136193752, -0.02004299871623516, -0.020981503650546074, 0.02919071912765503, -0.018521975725889206, -0.021251188591122627, -0.0501830093562603, -0.010593232698738575, -0.016461580991744995, -0.007205986883491278, -0.04379686713218689, 0.029708515852689743, 0.0032119499519467354, 0.029902689158916473, -0.020647093653678894, 0.028867097571492195, 0.018521975725889206, 0.008975121192634106, -0.017302999272942543, -0.01469244621694088, -0.052728839218616486, 0.0008286075899377465, 0.030657807365059853, 0.004274509381502867, -0.04573860019445419, 0.014940557070076466, 0.028780797496438026, -0.017939455807209015, 0.03292316198348999, 0.044616710394620895, 0.032297492027282715, -0.042696550488471985, -0.07188726961612701, -0.005647206678986549, 0.015879061073064804, -0.025544576346874237, 0.010436815209686756, 0.009444373659789562, -0.016040872782468796, -0.011585673317313194, 0.060840968042612076, 0.01932024396955967, -0.027400009334087372, 0.01803654246032238, 0.016245832666754723, 0.022351505234837532, 0.025825049728155136, 0.03369985520839691, 0.01706567592918873, 0.005717325024306774, -0.003956281114369631, 0.08021514862775803, 0.00011916711810044944, -0.027054812759160995, 0.009741026908159256, 0.01187693327665329, 0.010431420989334583, -0.021812133491039276, -0.0323406420648098, 0.027723632752895355, -0.047076236456632614, 0.02651544287800789, 0.01901819556951523, -0.009654727764427662, -0.0005595966940745711, -0.028284577652812004, 0.012610477395355701, -0.05876978486776352, 0.018716149032115936, 0.012060319073498249, -0.008424963802099228, 0.03139134868979454, -0.0008056843653321266, -0.015674101188778877, -0.00612724618986249, -0.03454127162694931, 0.011618035845458508, -0.022761425003409386, 0.004509135615080595, 0.06485388427972794, -0.007454097270965576, 0.002572796307504177, -0.029406467452645302, 0.0110786659643054, -0.03518851846456528, -0.013710792176425457, 0.030981428921222687, -0.00430687190964818, -0.019449692219495773, 0.019471267238259315, -0.04802552983164787, 0.040409620851278305, 0.0390288345515728, -0.0034654540941119194, -0.015900636091828346, -0.048802223056554794, -0.011154177598655224, 0.01507000532001257, -0.01984882541000843, 0.029147569090127945, 0.004902875982224941, -0.038208991289138794, -0.0011158222332596779, 0.0001177344165625982, 0.004751852247864008, -0.004279903136193752, -0.028392450883984566, -0.034303948283195496, 0.044400960206985474, 0.019557565450668335, -0.008894216269254684, -0.015846699476242065, -0.024271663278341293, 0.042610250413417816, 0.019838038831949234, -0.017745282500982285, -0.017518747597932816, -0.019169218838214874, -0.04038804769515991, -0.021391425281763077, -0.011197326704859734, -0.04496190696954727, 0.0043014781549572945, -0.03911513090133667, 0.012491815723478794, -0.005927679594606161, 0.028457175940275192, 0.041078440845012665, 0.06028002128005028, 0.023451820015907288, 0.009131538681685925, 0.003031261032447219, 0.017551109194755554, -0.021164890378713608, -0.023041898384690285, -0.04483245685696602, 0.0017529533943161368, -0.00981114525347948, -0.007335435599088669, -0.014282524585723877, 0.014821895398199558, -0.03199544548988342, 0.009142326191067696, -0.024962056428194046, 0.0059546479023993015, -0.0008690603426657617, 0.00936886202543974, 0.01706567592918873, -0.0749940425157547, -0.05531781539320946, 0.017292210832238197, 0.006267482880502939, 0.048715922981500626, 0.03132662549614906, -0.0026294300332665443, -0.0027602273039519787, -0.06817640364170074, 0.0006876970874145627, 0.007432522252202034, -0.007950318045914173, -0.001630246639251709, 0.0232792217284441, -0.02642914280295372, -0.03188757225871086, 0.00882409792393446, 0.008371027186512947, 0.01884559728205204, -0.07132632285356522, 0.004506438504904509, 0.006418506149202585, 0.006078702863305807, 0.0004692521470133215, -0.004252934828400612, 0.025328828021883965, 0.00865689292550087, 0.008203822188079357, -0.01652630604803562, 0.029837964102625847, 0.019589928910136223, 0.016040872782468796, 0.003273977665230632, -0.03350568190217018, 0.02155323699116707, 0.0006273550679907203, -0.06261010468006134, 0.007502640597522259, 0.004002127330750227, -0.01942811720073223, 0.03365670517086983, -0.014336462132632732, -0.014109926298260689, 0.020366622135043144, 0.011531736701726913, -0.06903939694166183, -0.027335286140441895, 0.003012383123859763, 0.0004726232145912945, -0.019838038831949234, 0.0038915565237402916, -0.02394803985953331, 0.003163406625390053, 0.0018055420368909836, -0.004759942647069693, 0.026493867859244347, -0.019471267238259315, 0.004751852247864008, -0.014951344579458237, -0.026127096265554428, 0.03719497472047806, -0.02785308100283146, -0.003230828093364835, -0.00021726508566644043, -0.0004257654072716832, 0.043645843863487244, 0.014099138788878918, -0.0018379042157903314, -0.009579216130077839, 0.014012839645147324, -0.008921184577047825, 0.02317134663462639, 0.007508034352213144, 0.02330079674720764, 0.00443901726976037, -0.04522080346941948, -0.021251188591122627, 0.0009081647149287164, -0.0076482705771923065, 0.012750713154673576, -0.011520949192345142, -0.003333308268338442, 0.01106787845492363, 0.05294458568096161, -0.03766962140798569, -0.04716253653168678, 0.003090591635555029, 0.0021723138634115458, -0.007475672289729118, 0.008586774580180645, 0.010199491865932941, -0.01578197441995144, 0.007934137247502804, 0.03760489448904991, 0.013958903029561043, -0.030851980671286583, 0.00034924226929433644, 0.02433638647198677, -0.002572796307504177, 0.0354042649269104, 0.0015614769654348493, -0.025048356503248215, -0.015587801113724709, -0.008171459659934044, -0.02910442091524601, -0.008791735395789146, -0.023430244997143745, 0.017885519191622734, 0.0003278359945397824, 0.004813879728317261, -0.026364419609308243, -0.005361340474337339, -0.020140085369348526, 0.0221573319286108, -0.03557686507701874, 0.002718426287174225, -0.013020399026572704, 0.003187678288668394, 0.02090599201619625, 0.002338170073926449, 0.021391425281763077, 0.050830256193876266, -0.06364569067955017, -0.011984807439148426, -0.010420633479952812, -0.04064694419503212, 0.03186599537730217, -0.0148434704169631, 0.030485209077596664, -0.029147569090127945, -0.0157496128231287, -0.03102457895874977, 0.007432522252202034, -0.01426095049828291, -0.05035560950636864, -0.02632126957178116, -0.01974095217883587, -0.03348410874605179, -0.0543685257434845, 0.06407719105482101, 0.009670909494161606, -0.02994583733379841, -0.0390288345515728, -0.0032065564300864935, 0.008511262945830822, 0.013958903029561043, -0.024573709815740585, -0.012157405726611614, -0.029061270877718925, -0.014972918666899204, -0.04733513668179512, -0.04058222100138664, -0.0062728761695325375, 0.004754548892378807, -0.036677177995443344, -0.008478900417685509, -0.006947088986635208, 0.022459378466010094, 0.0051698642782866955, 0.017346147447824478, 0.022934025153517723, -0.037734344601631165, 0.02271827682852745, -0.006850002333521843, 0.0022275992669165134, 0.0008643408655188978, 0.020808905363082886, 0.0027602273039519787, 0.01937418058514595, 0.014034414663910866, -0.055188365280628204, -0.01222213078290224, -0.0035787217784672976, -0.011477799154818058, -0.02269670180976391, 0.020916778594255447, -0.013818666338920593, 0.04703309014439583, -0.04504820704460144, 0.01733536086976528, 0.03760489448904991, 0.004215178545564413, 0.03999970108270645, 0.021488511934876442, 0.023991189897060394, -0.018058117479085922, 0.008031223900616169, 0.014994493685662746, -0.03111087717115879, 0.0108737051486969, 0.01903977058827877, -0.015717249363660812, 0.016990164294838905, -0.027594182640314102, 0.025307253003120422, 0.03337623178958893, 0.006380750332027674, 0.05113230273127556, 0.014606147073209286, 0.00042745095561258495, -0.038597337901592255, 0.013473469763994217, 0.020496070384979248, -0.0020576976239681244, 0.010922248475253582, 0.008371027186512947, -0.008284727111458778, 0.019309455528855324, 0.027464734390378, 0.04358111694455147, 0.000755118380766362, 0.003646143013611436, 0.03969765082001686, 0.040021274238824844, 0.016580242663621902, -0.016148746013641357, -0.011337563395500183, -0.04750773310661316, -0.0020873630419373512, 0.016008509323000908, -0.006213545799255371, -0.05203844606876373, -0.04051749408245087, -0.018586700782179832, 0.0007928743143565953, -0.009956775233149529, 0.033635132014751434, 0.008748586289584637, 2.0384404706419446e-05, 0.004026398994028568, -0.04772348329424858, -0.047378286719322205, -0.022308355197310448, -0.039460331201553345, 0.004741064738482237, -0.008268546313047409, 0.015717249363660812, 0.0070657506585121155, -0.04105686396360397, 0.03501591831445694, -0.05389387905597687, 0.009568428620696068, 0.02204945683479309, -0.017529534175992012, -0.027270561084151268, -0.0052130138501524925, -0.005814411677420139, 0.0016396855935454369, 0.01426095049828291, -0.02431481145322323, -0.010965397581458092, 0.014045202173292637, -0.025242529809474945, -0.0003192397707607597, -0.029708515852689743, 0.013225358910858631, 0.0013295477256178856, -0.022977173328399658, -0.0070765381678938866, -0.016483156010508537, -0.02701166272163391, -0.028500325977802277, 0.031628672033548355, 0.03389402851462364, 0.007200593128800392, 0.01708725094795227, 0.034562848508358, 0.007977286353707314, 0.010668744333088398, 0.0045873443596065044, -0.07119687646627426, -0.0008973773219622672, 0.010895279236137867, -0.0034115170128643513, 0.005156379658728838, -0.0019322939915582538, -0.01826307736337185, 0.02336551994085312, 0.01937418058514595, -0.01111102756112814, -0.012081894092261791, 0.00629445118829608, -0.0031202570535242558, -0.024185363203287125, -0.008964333683252335, 0.00790177471935749, -0.005137501750141382, 0.018586700782179832, -0.024854183197021484, -0.024638434872031212, -0.021359063684940338, 0.020194023847579956, 0.024940481409430504, -0.015382840298116207, -0.043645843863487244, 0.002788544399663806, 0.004854332655668259, -0.0015452958177775145, 0.0014185438631102443, -0.010248035192489624, -0.008700042963027954, 0.050528209656476974, 0.018241502344608307, -0.004536103922873735, -0.016019297763705254, -0.003228131216019392, 0.005598663352429867, 0.023710718378424644, -0.03389402851462364, -0.007686026394367218, -0.03786379471421242, -0.012125044129788876, -0.05350553244352341, -0.025976072996854782, 0.024962056428194046, -0.04224348068237305, -0.014109926298260689, 0.00787480641156435, -0.004652068484574556, 0.014217800460755825, -0.036029934883117676, 0.017054887488484383, 0.07986994832754135, -0.010663350112736225, -0.03445497527718544, 0.026450717821717262, 0.013117484748363495, -0.030183160677552223, -0.036785054951906204, 0.03769119456410408, 0.016375280916690826, 0.014250162988901138, -0.02873764932155609, -0.021488511934876442, 0.004069548565894365, 0.011909295804798603, 0.00020091542683076113, -0.010479964315891266, 0.028198277577757835, -0.0004699263663496822, 0.007928743027150631, -0.007265317719429731, 0.01169354747980833, -0.017162762582302094, 0.0013322446029633284, 0.01795024238526821, -0.003476241370663047, 0.004026398994028568, 0.017917880788445473, 0.013516618870198727, -0.011013940908014774, 0.015900636091828346, -0.01112181507050991, -0.00546382088214159, -0.045652300119400024, 0.0006512895924970508, 0.0014495576033368707, -0.010506932623684406, 0.04780978336930275, -0.0004975690972059965, -0.037087101489305496, -0.023408669978380203, -0.017270635813474655, 0.01522102952003479, -0.010668744333088398, 0.006116459146142006, -0.020830480381846428, 0.014800320379436016, 0.010167129337787628, -0.012319217436015606, 0.0010173871414735913, -0.01374315470457077, -0.0037189580034464598, -0.029557490721344948, -0.0037351392675191164, 0.004962206352502108, 0.022394653409719467, -0.0114993741735816, 0.008894216269254684, 0.054627422243356705, -0.004242147319018841, -0.004765336401760578, 0.011628823354840279, -0.0006573575083166361, 0.008036617189645767, -0.023236071690917015, -0.0024393021594733, -0.017044100910425186, 0.026256544515490532, -0.01750795915722847, 0.007669845595955849, -0.04150993749499321, -0.062351204454898834, -0.015932997688651085, -0.031240327283740044, 0.011315988376736641, 0.03823056444525719, -0.00356793450191617, 0.0006246581906452775, 0.011574885807931423, 0.02071181870996952, 0.014865044504404068, -0.02938489243388176, 0.011628823354840279, -0.008905003778636456, 0.000569035648368299, 0.03508064150810242, 0.004641281440854073, 0.0029368712566792965, -0.025113079696893692, 0.02642914280295372, -0.02386174164712429, 0.020194023847579956, 0.002677973359823227, -0.022783000022172928, 0.019104495644569397, -0.009584609419107437, -0.011272839270532131, -0.06028002128005028, -0.03827371448278427, -0.03100300393998623, -0.004069548565894365, -0.021617960184812546, 0.011898508295416832, 0.007669845595955849, 0.025026781484484673, -0.015382840298116207, 0.03933088108897209, 0.010814374312758446, -0.0090614203363657, -0.03255638852715492, 0.012383941560983658, 0.04780978336930275, 0.007621302269399166, -0.0010922248475253582, 0.002346260705962777, 0.020830480381846428, 0.0009189521078951657, 0.052340492606163025, -0.025630876421928406, 0.006531774066388607, 0.006413112860172987, 0.03322520852088928, 0.002491890685632825, -0.0026375206653028727, 0.011941658332943916, -0.02079811878502369, -0.052254192531108856, -0.03014001064002514, 0.0221573319286108, 0.018921108916401863, 0.03389402851462364, -0.030010562390089035, -0.021488511934876442, 0.002187146572396159, -0.014196225441992283, 0.019449692219495773, -0.0033494895324110985, -0.03227591887116432, 0.022761425003409386, 0.005493486300110817, -0.037173401564359665, -0.0008104038424789906, 0.009530672803521156, 0.009670909494161606, 0.03743229806423187, -0.0022046759258955717, -0.0024932390078902245, 0.026278119534254074, 0.008975121192634106, 0.016795990988612175, 0.013290083967149258, -0.011402287520468235, -0.04491875693202019, -0.005706537514925003, -0.013300871476531029, 0.01070650015026331, 0.00639693159610033, -0.004981084726750851, 0.03152079880237579, 0.005523151718080044, -0.01664496771991253, 0.032211191952228546, 0.013451894745230675, 0.04673103988170624, -0.0157496128231287, -0.021423786878585815, 0.002888327930122614, -0.02994583733379841, -0.02528567798435688, 0.03749702125787735, 0.01431488711386919, -0.023149771615862846, 0.018942683935165405, -0.02558772638440132, 0.002706290455535054, -0.015566226094961166, -0.024767883121967316, 0.006256695371121168, 0.023149771615862846, 0.028090404346585274, -0.001464390312321484, 0.021952370181679726, 0.02985953912138939, 0.05419592559337616, -0.005391005892306566, -0.006191970780491829, -0.014994493685662746, 0.05229734256863594, -0.009530672803521156, -0.010388271883130074, 0.004409351851791143, -0.00999453105032444, 0.06614837050437927, 0.002358396537601948, -0.006305238697677851, 0.00460622226819396, 0.001770482980646193, 0.02208181843161583, -0.016483156010508537, 0.015684887766838074, 0.03014001064002514, 0.004894785117357969, 0.022178905084729195, 0.013192997314035892, -0.019945912063121796, 0.02567402459681034, -0.010738862678408623, -0.014196225441992283, -0.023430244997143745, -0.019773313775658607, 0.03728127479553223, -0.01736772246658802, 0.022200480103492737, 0.055576711893081665, -0.04302017390727997, -0.04901796951889992, 0.007103506475687027, -0.03620253503322601, 0.00957382284104824, 0.025113079696893692, 0.03585733473300934, 0.021704260259866714, -0.012437879107892513, -0.010636381804943085, 0.03216804191470146, 0.04979466274380684, 0.012340792454779148, 0.010889885947108269, 0.032577965408563614, 0.01427173800766468, 0.017745282500982285, 0.03005371242761612, 0.037842217832803726, -0.010150948539376259, -0.023969614878296852, -0.027982529252767563, 0.015372052788734436, -0.033527255058288574, -0.03523166850209236, -0.03169339895248413, 0.04366741701960564, -0.00197274680249393, -0.003470847848802805, -0.02433638647198677, -0.018867172300815582, -0.01976252719759941, 0.022351505234837532, 0.014239375479519367, 0.0459974966943264, -0.04019387438893318, 0.02662331610918045, 0.01937418058514595, -0.023257646709680557, -0.02043134532868862, -0.002518859226256609, 0.021456150338053703, 0.011369925923645496, 0.0032470091246068478, -0.01583591103553772, 0.0025148140266537666, -0.012340792454779148, 0.018360164016485214, -0.014562997967004776, -0.023063473403453827, 0.016655754297971725, -0.013786304742097855, -0.005275041330605745, -0.007858624681830406, 0.022373078390955925, 0.028133554384112358, 0.02085205540060997, 0.017324574291706085, 0.0029773239511996508, 0.018014967441558838, -0.014293312095105648, -0.005889923311769962, 0.008166066370904446, -0.026191821321845055, -0.028586624190211296, -0.005067383870482445, -0.017971817404031754, -0.03971922770142555, -0.026795916259288788, -0.009115357883274555, 0.008079767227172852, -0.005221104249358177, -0.009956775233149529, -0.036396708339452744, 0.04724883660674095, 0.008619137108325958, 0.00668279780074954, -0.01703331433236599, 0.004627796821296215, 0.016914652660489082, -0.00925559364259243, -0.023020323365926743, 0.0207657553255558, 0.01374315470457077, 0.017993392422795296, 0.0006769096944481134, -0.026752766221761703, -0.005024234298616648, -0.001823071506805718, -0.00031350896460935473, 0.061876557767391205, -0.009147720411419868, 0.02653701789677143, 0.0031256508082151413, -0.0056256321258842945, 0.0037944698706269264, -0.029147569090127945, -0.02213575690984726, -0.0036056903190910816, -0.0021547842770814896, -0.003128347685560584, 0.0008596213883720338, -0.0040911235846579075, -0.025501426309347153, -0.011574885807931423, -0.04330064728856087, -0.017249060794711113, 0.005846773739904165, 0.015145517885684967, -0.0021507390774786472, -0.0013753941748291254, 0.0496220663189888, -0.012189768254756927, -0.013441107235848904, -0.012038744986057281, 0.0016477762255817652, -0.012189768254756927, -0.003403426380828023, 0.03184442222118378, 0.023149771615862846, -0.0501830093562603, -0.015199454501271248, -0.022178905084729195, 0.039546627551317215, 0.006839215289801359, -0.01901819556951523, 0.002160178031772375, -0.016440005972981453, -0.011380712501704693, 0.0011212159879505634, 0.04914741963148117, 0.025048356503248215, -0.009999925270676613, 0.041078440845012665, 0.029061270877718925, -0.03600836172699928, 0.0010666047455742955, 0.03531796485185623, 0.0012614522129297256, -0.025328828021883965, -0.007535002660006285, 0.00334139890037477, 0.0008232138934545219, 0.0033521861769258976, -0.011197326704859734, -0.02701166272163391, 0.007783113047480583, -0.010906066745519638, -0.00403448985889554, -0.00844653882086277, 0.01909370720386505, -0.03598678484559059, 0.015792760998010635, -0.018155204132199287, -0.0152641786262393, -0.014595359563827515, -0.012308429926633835, -0.003063623094931245, 0.029233869165182114, 0.017820794135332108, 0.018824022263288498, -0.00582519918680191, -0.014854257926344872, -0.010140161029994488, 0.015620163641870022, 0.004012914840131998, -0.03259953856468201, -0.02662331610918045, -0.006876971106976271, 0.028414025902748108, 0.0007847837405279279, -0.03672032803297043, -0.005458427127450705, -0.009082995355129242, -0.0032928555738180876, 0.016882289201021194, -0.0014724808279424906, -0.05618080869317055, 0.005679569207131863, -0.02442268654704094, 0.03704395145177841, 0.018586700782179832, -0.013753942213952541, -0.011812209151685238, -0.011229689233005047, 0.02806882932782173, -0.01837095245718956, 0.012556539848446846, 0.012081894092261791, -0.015328903682529926, 0.025976072996854782, -0.01014555525034666, -0.0030798043590039015, 0.008435751311480999, -0.0016545183025300503, 0.010285791009664536, -0.022200480103492737, -0.03482174500823021, 0.0027467431500554085, -0.034778594970703125, 0.022675126791000366, -0.022373078390955925, 0.01483268290758133, 0.010463783517479897, 0.017302999272942543, 0.055576711893081665, -0.009584609419107437, 0.004908269736915827, -0.01909370720386505, 0.028414025902748108, -0.03730284795165062, -0.00362726510502398, 0.018414100632071495, 0.01847882568836212, -0.014153076335787773, 0.01483268290758133, -0.039848677814006805, 0.02891024760901928, 0.006186577025800943, 0.02472473308444023, 0.03203859552741051, 0.006181183271110058, 0.05695750191807747, 0.01111102756112814, 4.1527298890287057e-05, 5.5369731853716075e-05, -0.027551034465432167, -0.018867172300815582, -0.02632126957178116, -0.014606147073209286, 0.02308504842221737, 0.0010989669244736433, -0.023451820015907288, 0.037065524607896805, -0.018058117479085922, 0.017853155732154846, -0.006833821535110474, -0.0010848084930330515, 0.00825236551463604, -0.014012839645147324, -0.0025862804614007473, 0.016073234379291534, 0.005183348432183266, -0.007642876822501421, -0.02517780475318432, -0.017195124179124832, 0.009482129476964474, -0.009120751172304153, -0.02584662474691868, 0.04673103988170624, -0.012362366542220116, -0.04053907096385956, 0.027033237740397453, 0.013829453848302364, -0.004180119838565588, 0.0305283572524786, -0.02737843617796898, 0.03436867520213127, -0.012351579032838345, -0.01594378612935543, -0.007238348945975304, 0.01201716996729374, -0.020506858825683594, -0.0015547348884865642, 0.0034897257573902607, 0.004145060665905476, -0.013559768907725811, 0.00031637438223697245, -0.00020142109133303165, 0.01884559728205204, 0.035555288195610046, 0.0011825693072751164, 0.006456262432038784, -0.006650435738265514, -0.00276966649107635, -0.03266426548361778, 0.009751814417541027, 0.0025674025528132915, -0.005239982157945633, 0.022588826715946198, -0.008236183784902096, -0.0023314279969781637, 0.004479470197111368, 0.019751738756895065, 0.0010457041207700968, 0.007092718966305256, -0.01566331274807453, -0.02199552021920681, 0.02048528380692005, -0.013721579685807228, 0.019687015563249588, 0.005156379658728838, -0.008155278861522675, 0.027443159371614456, 0.03223276883363724, -0.023236071690917015, 0.016407644376158714, 0.013128272257745266, 0.0015021462459117174, -0.017917880788445473, -0.018025754019618034, -0.04302017390727997, 0.03376457840204239, 0.0305283572524786, -0.05544726550579071, -0.030895128846168518, -0.0029827177058905363, 0.05484316870570183, -0.06506963074207306, -0.01887795887887478, 0.011154177598655224, 0.026472292840480804, -0.042049307376146317, 0.007783113047480583, 0.018802447244524956, -0.003729745512828231, 0.00830630213022232, 0.0033198241144418716, -0.011661185882985592, -0.001850040047429502, 0.005442246329039335, -0.025932922959327698, 0.023602843284606934, -0.002056349301710725, 0.0057442933320999146, -0.014908194541931152, 0.011488586664199829, 0.026558592915534973, 0.015523076988756657, -0.0055393329821527, -0.02977323904633522, -0.014066777192056179, 3.510120586724952e-05, 0.0039023440331220627, -0.026580167934298515, -0.005442246329039335, 0.005393703002482653, 0.0217474102973938, -0.012394729070365429, -0.0007497246842831373, 0.004746458493173122, -0.038877811282873154, 0.02129433862864971, 0.03197386860847473, 0.020614732056856155, -0.01673126593232155, -0.030614657327532768, -0.018867172300815582, -0.013484257273375988, -0.013829453848302364, -0.009433586150407791, 0.02032347209751606, 0.039266157895326614, -0.028672924265265465, -0.019730165600776672, 0.036224108189344406, 0.01014555525034666, -0.0027467431500554085, 0.019352605566382408, -0.006612679455429316, 0.01507000532001257, 0.01540441531687975, -0.004099213983863592, -0.024077489972114563, -0.01861906237900257, -0.010469176806509495, 0.008354845456779003, 0.009115357883274555, -0.005183348432183266, -0.0020846661645919085, -0.015652526170015335, -0.014875832013785839, -0.0010888538090512156, 0.00632141949608922, 0.013203784823417664, 0.026601742953062057, -0.013904965482652187, -0.023538118228316307, -0.04345167055726051, -0.009217837825417519, 0.007146656047552824, 0.028867097571492195, -0.008549018763005733, -0.042502377182245255, 0.023904891684651375, -0.014627722091972828, -0.010744255967438221, -0.008532837964594364, -0.007669845595955849, -0.03473544493317604, -1.7803433365770616e-05, -0.035555288195610046, 0.03833843767642975, 0.018629848957061768, 0.033246785402297974, 0.03702237457036972, -0.02330079674720764, 0.012534965761005878, -0.016073234379291534, 0.03605150803923607, -0.029837964102625847, -0.008635317906737328, -0.0007288241176865995, -0.024789458140730858, -0.018608273938298225, -0.010512326844036579, 0.03747544810175896, 0.0016599120572209358, -0.012351579032838345, -0.008101341314613819, 0.034411825239658356, 0.0024514379911124706, -0.010857523418962955, 0.023063473403453827, 0.007049569394439459, -0.012373154051601887, -0.026170246303081512, 0.04897482320666313, -0.008905003778636456, 0.0028343908488750458, 0.04345167055726051, -0.0011805467074736953, -0.012297642417252064, -0.0015830517513677478, 0.002444695681333542, 0.026019223034381866, 0.01202795747667551, 0.012739925645291805, 0.01502685621380806, -0.019503628835082054, 0.008651499636471272, -0.021639535203576088, 0.02071181870996952, -0.0003896950220223516, 0.01431488711386919, 0.055102068930864334, -0.015868274495005608, 0.040237024426460266, 0.005711931269615889, -0.012675201520323753, -0.03803639113903046, 0.022977173328399658, 0.022847725078463554, -0.03147764876484871, -0.014325674623250961, 0.02169347181916237, -0.0068985456600785255, 0.013106698170304298, 0.025738749653100967, 0.024962056428194046, 0.009136932902038097, 0.011995594948530197, -0.022545678541064262, -0.02595449797809124, 0.07572758942842484, -0.002060394501313567, 0.008042010478675365, -0.035727888345718384, -0.037345997989177704, -0.02556615136563778, 0.011348350904881954, -0.013516618870198727, 0.05035560950636864, -0.005442246329039335, 0.046040646731853485, -0.006191970780491829, -0.02199552021920681, 0.004239450208842754, -0.005142895504832268, 0.009482129476964474, -0.014347249642014503, -0.016051659360527992, -2.627323192427866e-05, 0.005110533442348242, -0.02271827682852745, -0.008122916333377361, 0.02190922014415264, -0.0011690850369632244, -0.009433586150407791, 0.005471911281347275, 0.012297642417252064, 0.0050862617790699005, 0.026795916259288788, -0.012556539848446846, 0.02444426156580448, -0.03195229545235634, 0.03950347751379013, -0.027809930965304375, 0.031456075608730316, -0.03538269177079201, 0.002489193808287382, 0.00028485493385232985, -0.03132662549614906, 0.03721654787659645, 0.013074335642158985, -0.033138908445835114, -0.02113252691924572, -0.005051202606409788, 0.010242641903460026, 0.054929468780756, -0.031154027208685875, -0.023818591609597206, -0.015145517885684967, 0.0005717325257137418, -0.0040075210854411125, -0.04332222044467926, -0.011974019929766655, 0.011013940908014774, 0.0007261272403411567, 0.0007530957809649408, 0.0420924574136734, 0.030959853902459145, 0.0026941546238958836, -0.043473243713378906, 0.017324574291706085, -0.03538269177079201, 0.046817339956760406, -0.039158280938863754, 0.040237024426460266], [0.036205556243658066, -0.03046705760061741, 0.07858749479055405, 0.06959947943687439, -0.02583477459847927, 0.02901514805853367, -0.040653470903635025, 0.011782362125813961, -0.009454697370529175, 0.05259139463305473, 0.0063722701743245125, 0.0322185680270195, -0.004920360632240772, 0.034223586320877075, -0.04042300954461098, -0.031273674219846725, -0.017353776842355728, 0.007052132859826088, -0.009777343831956387, 0.00664882455021143, -0.0033676237799227238, 0.09476591646671295, -0.013101756572723389, -0.010359260253608227, -0.010710714384913445, -0.03155022859573364, 0.042105380445718765, -0.01100455317646265, 0.013804664835333824, -0.03864845260977745, 0.00757067184895277, -0.010284360498189926, -0.017111793160438538, -0.03346306085586548, 0.015533128753304482, -0.00020471494644880295, -0.011736270040273666, 0.00540433032438159, -0.022170430049300194, 0.04733686521649361, 0.011384815908968449, -0.035329803824424744, 0.020626336336135864, -0.02975262515246868, -0.013850757852196693, 0.041045255959033966, -0.002634467091411352, -0.03894805163145065, -0.004865625873208046, 0.01567140594124794, 0.009218473918735981, 0.03456927835941315, 0.02433677203953266, 0.004485363606363535, -0.0017860793741419911, 0.02760932967066765, 0.03341696783900261, -0.0012365719303488731, -0.0024933090899139643, -0.02119096741080284, 0.04169055074453354, -0.05014849826693535, -0.03980076313018799, 0.010030852630734444, 0.013816188089549541, -0.007075178902596235, 9.508802349955658e-07, -0.001020513940602541, -0.020545674487948418, -0.017734039574861526, 0.038671497255563736, 0.047198586165905, 0.006533593405038118, 0.0223893690854311, 0.007029086351394653, 0.000723794277291745, -0.028231577947735786, 0.013931418769061565, 0.027171453461050987, 0.015291144140064716, -0.021444475278258324, -0.01644345372915268, -0.02544298954308033, -0.02142142876982689, -0.03240293636918068, 0.011822693049907684, -0.0008411857415921986, -0.00103059655521065, 0.029545210301876068, -0.01871350221335888, 0.035283710807561874, 0.02698708325624466, -0.06692612171173096, -0.010336213745176792, 0.00598624674603343, 0.004263544455170631, 0.038625407963991165, -0.016961991786956787, 0.024843787774443626, -0.019762104377150536, -0.023668432608246803, -0.03468450903892517, -0.05756936967372894, 0.01232970878481865, 0.014184926636517048, -0.01250255573540926, -0.07711253315210342, 0.022020630538463593, 0.0076859029941260815, 0.03364742919802666, 0.07706644386053085, 0.006925378926098347, 0.02491292729973793, 0.05397416651248932, -0.018344763666391373, 0.005363999865949154, 0.005770188756287098, -0.05609441548585892, -0.03851017728447914, 0.01741139218211174, -0.01896701008081436, -0.004347086884081364, -0.01924356445670128, -0.06074974313378334, -0.013136325404047966, 0.023968033492565155, -0.010313168168067932, -0.02707926742732525, -0.04977976158261299, -0.022020630538463593, -0.01322851050645113, -0.03719654306769371, 0.06853935867547989, -0.043027229607105255, -0.038671497255563736, -0.011615277267992496, -0.020637858659029007, -0.008918873965740204, -0.0067525324411690235, 0.01216838601976633, 0.021294675767421722, 0.027747606858611107, 0.0011069370666518807, 0.009126289747655392, -0.03350915387272835, -0.04095306992530823, -0.0062570394948124886, 0.03445404767990112, 0.016339745372533798, 0.018690455704927444, -0.015947960317134857, 0.09891422837972641, 0.007196171209216118, -0.023391878232359886, -0.014449958689510822, -0.009414366446435452, 0.015947960317134857, 0.026526158675551414, 0.014426912181079388, 0.015060681849718094, -0.024498095735907555, -0.012779110111296177, 0.002111606765538454, -0.014081219211220741, 0.020787660032510757, 0.0017904004780575633, -0.0013942942023277283, 0.008964966051280499, -0.019727535545825958, 0.00024180489708669484, -0.00483681820333004, -0.06102629750967026, -0.016604777425527573, 0.008227488026022911, -0.037173498421907425, -0.02853117696940899, -0.011033360846340656, 0.03636687994003296, 0.037219587713479996, -0.022723538801074028, -0.003384908428415656, 0.015705974772572517, -0.0530984103679657, -0.027125360444188118, -0.03604423254728317, 0.005012545268982649, 0.0158096831291914, 0.0011400659568607807, -0.03980076313018799, -0.02205519936978817, -0.019116811454296112, -0.015337236225605011, 0.018125824630260468, -0.01707722246646881, 0.009103243239223957, 0.014115788973867893, -0.029084285721182823, -0.06996821612119675, 0.045931048691272736, -0.05890604853630066, -0.007288356311619282, -0.02229718491435051, -0.0322185680270195, -0.019577734172344208, -0.04572363197803497, -0.03371657058596611, -0.006631539668887854, -0.0027741845697164536, 0.043165504932403564, -0.043027229607105255, -0.032817769795656204, -0.009397082030773163, -0.029913948848843575, 0.07042913883924484, -0.013470495119690895, 0.020972028374671936, -0.012491032481193542, 0.03353219851851463, 0.03438491001725197, 0.02883077785372734, -0.005752903874963522, 0.007945172488689423, 0.06365356594324112, -0.051439084112644196, -0.048489175736904144, -0.03129671886563301, -0.04620760306715965, -0.036643434315919876, -0.022850293666124344, 0.009120527654886246, -0.012629309669137001, 0.014207973144948483, 0.007760802749544382, -0.01008270587772131, -0.011949446983635426, 0.012975002638995647, -0.02002713456749916, -0.030974073335528374, 0.021052690222859383, -0.006510547362267971, 0.03590595722198486, -0.016420407220721245, -0.033877894282341, 0.01146547682583332, 0.01146547682583332, -0.009062912315130234, -0.015325712971389294, -0.06047318875789642, 0.008239011280238628, 0.04337292164564133, 0.014473004266619682, 0.001155190053395927, 0.08149131387472153, -0.054388996213674545, 0.0180797316133976, 0.029130378738045692, 0.008659604005515575, -0.04233584180474281, 0.0031198773067444563, 0.040031224489212036, -0.036297742277383804, -0.010583960451185703, 0.010411114431917667, -0.06342310458421707, -0.05968961864709854, -0.011937923729419708, -0.011263823136687279, -0.021029643714427948, -0.04454827681183815, 0.024728557094931602, -0.0020295046269893646, 0.012375801801681519, -0.0004933323943987489, 0.0008887185249477625, -0.060334913432598114, 0.019036149606108665, -0.005245888140052557, 0.005049995146691799, 0.009195428341627121, -0.05194610357284546, -0.07347124069929123, 0.006504785735160112, 0.02181321382522583, -0.06333091855049133, 0.030651425942778587, 0.013585726730525494, 0.0009384118602611125, 0.02641092799603939, -0.031895920634269714, -0.022896384820342064, 0.05600222945213318, 0.013735526241362095, -0.025765635073184967, -0.022435462102293968, 0.015855776146054268, 0.04913446679711342, 0.000617925834376365, 0.00523436488583684, -0.05120862275362015, -0.010566676035523415, -0.04180578142404556, 0.042981136590242386, -0.04438695311546326, -0.008118018507957458, -0.08716067671775818, 0.030927980318665504, 0.040561284869909286, -0.028646407648921013, -0.022320231422781944, -0.009379797615110874, -0.021997584030032158, 0.001331637380644679, -0.016766099259257317, -0.004485363606363535, -0.003837189869955182, 0.04482483118772507, -0.016892854124307632, -0.008590465411543846, 0.021824738010764122, -0.007766564376652241, 0.028692500665783882, 0.017780132591724396, 0.0006672590970993042, 0.01677762344479561, -0.0051191337406635284, 0.016846761107444763, -0.007490010466426611, 0.004808010533452034, -0.016086237505078316, -0.023737570270895958, 0.012571694329380989, 0.017434438690543175, 0.021444475278258324, -0.005369761027395725, -0.008688411675393581, -0.02505120262503624, -0.037795744836330414, -0.0018638602923601866, -0.010578199289739132, 0.021732551977038383, -0.005580057855695486, 0.007858749479055405, 0.013793141581118107, -0.0027064864989370108, -0.014334727078676224, 0.03784183785319328, -0.019070718437433243, 0.03129671886563301, 0.018632840365171432, 0.03715045005083084, -0.028669454157352448, 0.0128943407908082, -0.01560226734727621, -0.009172381833195686, -0.03500715643167496, 0.04199014976620674, -0.002017981605604291, 0.010272837243974209, 0.0024529783986508846, 0.010491776280105114, 0.020349781960248947, -0.008792120032012463, 0.027240591123700142, 0.04899619147181511, 0.007622526027262211, 0.013643342070281506, -0.06259343773126602, -0.05222265422344208, 0.0005509478505700827, -0.048535265028476715, 0.005243007093667984, -0.02664138935506344, -0.005623269360512495, 0.030559241771697998, 0.009304896928369999, 0.028508130460977554, 0.016478022560477257, 0.03703521937131882, 0.053421057760715485, 0.041229624301195145, 0.03904023766517639, 0.005836446303874254, 0.042727626860141754, 0.01073952205479145, -0.0031861350871622562, 0.0709361582994461, -0.018218008801341057, -0.000642052327748388, -0.026180466637015343, -0.007720472291111946, 0.009258804842829704, -0.02229718491435051, 0.026733575388789177, 0.0032552736811339855, -0.05849121883511543, 0.053374964743852615, 0.010837468318641186, 0.0009837840916588902, -0.016454976052045822, -0.013735526241362095, 0.019854288548231125, -0.03998513147234917, 0.01721549965441227, 0.04332682862877846, -0.024267632514238358, 0.00033056872780434787, -0.04231279715895653, -0.00923575833439827, 0.005145060829818249, -0.005654957611113787, 0.02558126486837864, 0.03839494660496712, 0.02433677203953266, 0.0004918920458294451, -0.012087724171578884, 0.031066257506608963, -0.013677910901606083, 0.016316698864102364, -0.0029355078004300594, -0.022527646273374557, 0.02273506112396717, 0.03143499791622162, -0.03187287598848343, 0.013516588136553764, -0.03159632161259651, 0.025811728090047836, 0.015924913808703423, 0.012744540348649025, 0.011857262812554836, -0.026295697316527367, -0.014207973144948483, -0.005162345711141825, 0.018586749210953712, 0.06328482180833817, -0.03125062584877014, -0.014761081896722317, -0.021686460822820663, -0.00791060272604227, -0.00914357416331768, -0.02878468483686447, -0.04802824929356575, -0.02220499888062477, 0.00625127786770463, -0.009362513199448586, -0.02195149101316929, -0.02326512336730957, 0.03763442113995552, 0.033831801265478134, 0.010802899487316608, 0.030743611976504326, 0.010831707157194614, -0.009466220624744892, -0.0349380187690258, -0.0030046463944017887, -0.0520382858812809, 0.009471981786191463, 0.008601988665759563, -0.05512647703289986, -0.007098224945366383, 0.002310380106791854, 0.01775708608329296, 0.02142142876982689, 0.05761546269059181, 0.041575320065021515, -0.03489192575216293, 0.026226559653878212, -0.010197937488555908, 0.004635164048522711, -0.010301644913852215, -0.025189479812979698, 0.02853117696940899, -0.0054417806677520275, -0.016224514693021774, 0.02321903221309185, 0.0375191904604435, -0.04729077219963074, 0.0340392142534256, -0.010831707157194614, -0.00044111840543337166, 0.034615371376276016, -0.003661462804302573, 0.042105380445718765, -0.0627778097987175, 0.010307406075298786, 0.06637301295995712, 0.009679397568106651, 0.03922460600733757, 0.0011537496466189623, 0.019220517948269844, -0.031411949545145035, -0.021790169179439545, 0.014726512134075165, 0.03042096458375454, -0.010341975837945938, -0.007052132859826088, 0.0035145431756973267, -0.021490568295121193, 0.010169128887355328, -0.017422916367650032, -0.003503020154312253, -0.003958182409405708, -0.03164241090416908, 0.002244122326374054, -0.02452114038169384, 0.027401914820075035, -0.01151156984269619, -0.01145971566438675, 0.006562401074916124, -0.010526345111429691, -0.015971006825566292, -0.028415946289896965, 0.028669454157352448, -0.006003531161695719, 0.01514134369790554, -0.030351826921105385, -0.005896942690014839, 0.017826223745942116, -0.04279676452279091, -0.04332682862877846, 0.017134839668869972, -0.006620016880333424, -0.0032091813627630472, 0.03168850392103195, 0.0023204628378152847, -0.007057894486933947, 0.004226094111800194, 0.014058172702789307, -0.007518818136304617, 0.01871350221335888, 0.0009391320636495948, -0.0190591961145401, -0.028116345405578613, -0.015337236225605011, -0.022896384820342064, -0.004390298388898373, 0.00613028509542346, -0.008538611233234406, 0.012283616699278355, -0.002644549822434783, -0.0013093113666400313, -0.0028534058947116137, 0.013539633713662624, 0.009984759613871574, -0.05420462787151337, 0.02606523595750332, -0.0179990716278553, 0.0031198773067444563, 0.030121363699436188, -0.006729485932737589, -0.018736548721790314, 0.006631539668887854, 0.02350710891187191, -0.008792120032012463, 0.0069772326387465, 0.007000278681516647, 0.035283710807561874, 0.012617786414921284, -0.06614255160093307, 0.016120806336402893, -0.039731621742248535, 0.01993495039641857, 0.02993699535727501, -0.0033215314615517855, 0.011332961730659008, 0.019819719716906548, 0.03157327324151993, 0.005767307709902525, -0.03226466104388237, -0.02509729564189911, -0.006971471011638641, -0.04081479460000992, -0.010088467970490456, 0.020764613524079323, -0.05351324379444122, 0.017203977331519127, 0.02777065336704254, 0.042105380445718765, -0.040699563920497894, 0.0007965337717905641, 0.03072056546807289, 0.008077687583863735, 0.04097611829638481, -0.015325712971389294, -0.0076398104429244995, 0.00836576521396637, 0.04415649175643921, -0.00375364744104445, -0.036251649260520935, -0.007651333697140217, 0.011523093096911907, -0.013044141232967377, 0.05199219286441803, -0.010802899487316608, 0.017860794439911842, 0.022308707237243652, 0.026618344709277153, -0.006769816856831312, 0.004064770881086588, -0.03150413557887077, 0.00950078945606947, -0.018690455704927444, -0.020879844203591347, 0.02562735788524151, 0.010624291375279427, -0.02214738354086876, -0.03164241090416908, 0.003975466825067997, -0.0402386412024498, 0.03201115131378174, 0.00013134525215718895, 0.03318650647997856, 0.013839234597980976, -0.03157327324151993, -0.039593346416950226, 0.03512238711118698, -0.006015054415911436, -0.05655533820390701, -0.04309636726975441, 0.014496050775051117, 0.008290865458548069, -0.020545674487948418, 0.00411086343228817, 0.020096274092793465, -0.007224979344755411, -0.02046501263976097, -0.007271071430295706, -0.008400334976613522, -0.005568534601479769, -0.060288820415735245, -0.031711552292108536, -0.05286794900894165, -0.017203977331519127, -0.011413623578846455, -0.01819496415555477, 0.022527646273374557, 1.3492371181200724e-05, -0.028692500665783882, -0.007098224945366383, -0.029476070776581764, -0.0033445777371525764, 0.01819496415555477, 0.02883077785372734, 0.017630331218242645, -0.041575320065021515, 0.04775169491767883, 0.03595205023884773, 0.018068209290504456, 0.013205463998019695, 0.01756119355559349, 0.017492054030299187, -0.04318854957818985, -0.027240591123700142, -0.045193567872047424, 0.008037357591092587, 0.018736548721790314, -0.006556639913469553, -0.013862280175089836, 0.013216987252235413, 0.013643342070281506, 0.03558330982923508, -0.00540433032438159, 0.025419943034648895, 0.004695660434663296, -0.004790725652128458, 0.033923983573913574, 0.02940693311393261, 0.05162345618009567, 0.011033360846340656, 0.0024731438606977463, 0.03698912635445595, -0.06462150067090988, 0.046898987144231796, -0.0034972585272043943, -0.03076665662229061, -0.004805129487067461, -0.018148871138691902, -0.01388532668352127, 0.007616764400154352, 0.005323668941855431, 0.017664901912212372, -0.015268097631633282, 0.01058972254395485, -0.03454623371362686, 0.028899917379021645, 0.0018048044294118881, -0.026272650808095932, 0.019911903887987137, 0.004954929929226637, -0.01668543741106987, 0.02800111472606659, 0.006239754613488913, 0.009852244518697262, 0.009558405727148056, 0.0335782915353775, 0.013147848658263683, 0.052499208599328995, 0.015705974772572517, -0.01993495039641857, 0.042289748787879944, -0.011223492212593555, -0.008400334976613522, -0.009178142994642258, -0.013724002987146378, -0.05664752423763275, -0.009932905435562134, -0.02795502357184887, -0.015256574377417564, -0.040077317506074905, 0.022723538801074028, 0.021167920902371407, 0.005775950383394957, 0.0019099526107311249, -0.06351528316736221, -0.034177493304014206, 0.006585447583347559, -0.027401914820075035, -0.01779165491461754, 0.013458971865475178, 0.004854102618992329, -0.007927888073027134, -0.030974073335528374, 0.020234551280736923, 0.004952048882842064, -0.010699191130697727, 0.0013078710762783885, 0.014265588484704494, 0.012756063602864742, -0.024982064962387085, -0.011223492212593555, -0.01034773699939251, -0.010791376233100891, -0.009425889700651169, 0.024820741266012192, 0.022020630538463593, -0.05360542610287666, -0.0038055013865232468, -0.02611132711172104, 0.007922125980257988, -0.023437971249222755, -0.0006899451836943626, -0.01243341714143753, -0.010180652141571045, -0.0005156584084033966, 0.014265588484704494, 0.013482018373906612, -0.004165598191320896, -0.015360282734036446, 0.015198959037661552, 0.025857819244265556, -0.034361861646175385, 0.0257886815816164, 0.00652783177793026, -0.04330378398299217, -0.0015440944116562605, 0.0381183922290802, -0.015694452449679375, 0.014726512134075165, 0.003044977318495512, -0.007778087630867958, 0.03701217472553253, 0.012733017094433308, 0.010560914874076843, -0.03413140028715134, 0.015947960317134857, -0.013516588136553764, -0.03212638199329376, -0.03173459693789482, 0.040123410522937775, -0.007265309803187847, 0.01848304085433483, -0.036067280918359756, -0.014864789322018623, -0.02853117696940899, 0.014726512134075165, 0.04634587839245796, -0.001763033214956522, -0.055310845375061035, -0.01199553906917572, -0.003327293088659644, -0.0006568162934854627, 0.01828714832663536, -0.009996282868087292, -0.003275439143180847, 0.032909952104091644, -0.02461332641541958, 0.0014036566717550159, -0.0018566582584753633, 0.0076686181128025055, 0.042197566479444504, 0.014254065230488777, -0.030305733904242516, 0.02162884548306465, -0.0004587631265167147, 0.031089304015040398, -0.03595205023884773, -0.012583217583596706, 0.02786283753812313, -0.03904023766517639, -0.04816652834415436, 0.006378031801432371, -0.011448192410171032, -0.00322358519770205, -0.03032878041267395, 0.01586729846894741, 0.07006040215492249, 0.014738035388290882, -0.033163461834192276, -0.04784388095140457, 0.007138555869460106, 0.0015930675435811281, -0.033347830176353455, 0.028646407648921013, 0.013366787694394588, -0.0361594632267952, -0.05752328038215637, -0.03307127580046654, -0.01945098116993904, 0.014346250332891941, 0.005490753799676895, 0.005911346524953842, 0.019577734172344208, 0.023495586588978767, 0.008653842844069004, -0.012421893887221813, 0.00044003810035064816, -0.010174890980124474, 0.009932905435562134, 0.01591339148581028, -0.011021838523447514, -0.005724096205085516, 0.006452932022511959, 0.03076665662229061, -0.010923892259597778, 0.00993866752833128, 0.002725211437791586, -0.03698912635445595, -0.04369556903839111, 0.006677632220089436, -0.03244902938604355, -0.047129448503255844, 0.03178068995475769, -0.013136325404047966, -0.009961714036762714, -0.046645477414131165, -0.01279063243418932, -0.022596783936023712, -0.017342254519462585, 0.04132181033492088, -0.018540656194090843, 0.010987268760800362, -0.023852800950407982, 0.009316420182585716, 0.008210203610360622, -0.035629402846097946, 0.00598624674603343, 0.015994053333997726, 0.007138555869460106, -0.017100268974900246, 0.00598624674603343, -0.015982529148459435, -6.945364293642342e-05, 0.00770318740978837, -0.01105064619332552, -0.0008894387283362448, -0.0004573227488435805, -0.017157884314656258, -0.003220704384148121, -0.006475978065282106, 0.0032408698461949825, -0.013965988531708717, 0.018206486478447914, -0.03258730471134186, 0.015106774866580963, 0.017906885594129562, -0.03505324944853783, -0.023783663287758827, -0.016616299748420715, -0.013205463998019695, -0.00014475885836873204, -0.03323259949684143, 0.01654716022312641, 0.02157123014330864, 0.038625407963991165, 0.018448472023010254, -0.02066090516746044, -0.0158096831291914, -0.04521661624312401, 0.010647337883710861, 0.03477669507265091, -0.02433677203953266, 0.014277111738920212, -0.021294675767421722, -0.007086702156811953, 0.003943778574466705, -0.03800315782427788, 0.031458042562007904, -0.043603383004665375, 0.0004011476703453809, -0.023011615499854088, -0.014369296841323376, -0.06056537479162216, 0.012272093445062637, -0.0041886442340910435, 0.030881889164447784, -0.005551249720156193, 0.005358238238841295, 0.018390856683254242, 0.029245609417557716, -0.005496515426784754, 0.015452466905117035, 0.009402843192219734, -0.03302518278360367, -0.02196301519870758, -0.03120453469455242, 0.07835703343153, 0.007829941809177399, 0.007075178902596235, 0.02984480932354927, 0.024982064962387085, -0.01232970878481865, 0.061210669577121735, -0.004321159794926643, 0.007420871872454882, 0.007271071430295706, 0.02214738354086876, -0.033601339906454086, -0.017330732196569443, 0.020015612244606018, 0.005744261667132378, -0.023783663287758827, 0.018828732892870903, 0.015095251612365246, 0.008803642354905605, 0.03899414464831352, 0.014807173982262611, -0.007236502133309841, -0.0017803178634494543, -0.024267632514238358, 0.023518631234765053, 0.015222005546092987, -0.023322738707065582, -0.019796673208475113, 0.012364278547465801, -0.06439103931188583, -0.009402843192219734, -2.4216498786699958e-05, 0.024820741266012192, 0.015360282734036446, -0.020856797695159912, -0.020764613524079323, -0.019796673208475113, 0.012721494771540165, 0.01842542551457882, -0.013539633713662624, -0.030789703130722046, -0.008054642006754875, 0.028807731345295906, 0.017814701423048973, -0.0049722143448889256, -0.017353776842355728, -4.798287773155607e-05, 0.0284389927983284, -0.005191153381019831, -0.008135303854942322, 0.023852800950407982, 0.006862001493573189, 0.046069324016571045, 0.0009780224645510316, 0.00045084100565873086, 0.055495213717222214, -0.0284389927983284, 0.0077147106640040874, 0.044617414474487305, 0.008112257346510887, 0.007271071430295706, 0.006879286374896765, -0.0055570113472640514, -0.04922665283083916, 0.014657373540103436, 0.0025610073935240507, -0.023011615499854088, 0.021064212545752525, 0.02804720774292946, 0.01033045258373022, -0.003793978365138173, 0.03560635820031166, 0.015325712971389294, 0.0042549017816782, -0.01131567731499672, -0.0032091813627630472, 0.04367252066731453, 0.02122553624212742, -0.005945915821939707, -0.014081219211220741, -0.002970077097415924, 0.05093206837773323, -0.02104116789996624, 0.01949707232415676, 0.026779666543006897, 0.011062168516218662, 0.05849121883511543, 0.007478487212210894, 0.02509729564189911, 0.06369965523481369, 0.007605241145938635, 0.013931418769061565, 0.02592695876955986, -0.015383328311145306, -0.011574946343898773, 0.004453675355762243, 0.016985038295388222, -0.02456723339855671, -0.016512591391801834, 0.03590595722198486, -0.0031515657901763916, 5.6040040362859145e-05, 0.017906885594129562, -0.0322185680270195, -0.0067525324411690235, 0.039685532450675964, -0.010745284147560596, -0.018436947837471962, 0.0072422637604177, 0.0014346250100061297, 0.030974073335528374, -0.03168850392103195, 0.020591767504811287, 0.03728872910141945, 0.055403031408786774, 0.011718985624611378, 0.0072307405062019825, 0.009546882472932339, -0.005571415182203054, 0.028992101550102234, -0.014196449890732765, 0.008313911035656929, -0.005041352938860655, 0.010687668807804585, -0.0017155003733932972, 0.007253787014633417, -0.009385558776557446, -0.03966248407959938, -0.030605334788560867, 0.026387881487607956, -0.049457114189863205, 0.004390298388898373, -0.036343835294246674, 0.022723538801074028, -0.025673450902104378, 0.02219347655773163, -0.017157884314656258, 0.03892500698566437, -0.02350710891187191, 0.03659734129905701, 0.005758665502071381, -0.012548647820949554, -0.019047671929001808, -0.0014821578515693545, 0.005312145687639713, 0.004237617366015911, 0.0049606915563344955, -0.04323464259505272, -0.03032878041267395, -0.031942013651132584, 0.011736270040273666, -0.025512127205729485, -0.039593346416950226, 0.04867354407906532, 0.041183535009622574, -0.006596970371901989, -0.004568906035274267, 0.028462039306759834, 0.028692500665783882, 0.010555152781307697, -0.013551156967878342, 0.009397082030773163, -0.0059343925677239895, -0.020983552560210228, 0.0001095594052458182, 0.017192455008625984, -0.0014605519827455282, -0.0024961899034678936, -0.006222470197826624, -0.003664343385025859, -0.01683523878455162, -0.007541864179074764, -0.005675123073160648, -0.011765077710151672, -0.028162438422441483, -0.01388532668352127, -0.0062570394948124886, -0.0013013893039897084, 0.012560171075165272, 0.016408884897828102, -0.006821671035140753, 0.0034540470223873854, 0.022550692781805992, 0.0378187894821167, -0.0018148870440199971, -0.008521326817572117, 0.004632283467799425, 0.031066257506608963, -0.0017687947256490588, -0.00328984297811985, 0.03526066243648529, 0.007662856485694647, -0.003644178155809641, 0.01915138028562069, -0.016236037015914917, 0.051392994821071625, 0.01610928401350975, 0.03496106341481209, 0.025419943034648895, -0.03152718022465706, 0.027931977063417435, 0.0049894992262125015, 0.010607006959617138, -0.04090698063373566, -0.0008066165028139949, 0.025765635073184967, 0.005444661248475313, -0.010710714384913445, -0.016178421676158905, 0.00424337899312377, -0.00443927152082324, 0.008884304203093052, -0.0180797316133976, -0.022481553256511688, 0.023391878232359886, -0.02733277529478073, -0.020326735451817513, -0.01900157891213894, -0.013827711343765259, -0.05125471577048302, 0.019842766225337982, 0.024014124646782875, -0.008740265853703022, -0.010624291375279427, -0.015325712971389294, 0.007501533254981041, 0.00868265051394701, 0.025120342150330544, -0.010687668807804585, 0.02225109189748764, -0.004845460411161184, -0.023484062403440475, 0.006971471011638641, 0.06319264322519302, 0.012709971517324448, -0.0225391685962677, 0.02049958147108555, 0.02834680862724781, -0.0180797316133976, 0.008267818950116634, 0.053421057760715485, 0.015959482640028, -0.03376265987753868, -0.027125360444188118, 0.01896701008081436, 0.005761546548455954, 0.006141808349639177, -0.023426447063684464, -0.008014311082661152, 0.046898987144231796, -0.013389833271503448, -0.005182510707527399, -0.021352291107177734, 0.002391041722148657, -0.04867354407906532, -0.006233992986381054, -0.02235480025410652, 0.015959482640028, 0.009201189503073692, -0.005026949103921652, -0.009737012907862663, 0.0018220890779048204, 0.0019128334242850542, -0.005487872753292322, -0.01402360387146473, -0.010779852978885174, -0.02084527537226677, 0.02075308933854103, -0.037749651819467545, -0.015417898073792458, 0.020004088059067726, -0.021548183634877205, 0.00802583433687687, 0.0033503391314297915, -0.043211597949266434, -0.011834216304123402, -0.03249512240290642, 0.013850757852196693, 0.03300213813781738, -0.013620295561850071, -0.01388532668352127, -0.010877799242734909, 0.0018350525060668588, 0.03408530727028847, 0.031942013651132584, 0.02113335207104683, -0.016028622165322304, 0.005992008373141289, -0.015752067789435387, -0.017976025119423866, -0.015521605499088764, 0.02093745954334736, 0.004917479585856199, 0.015325712971389294, 0.02848508581519127, -0.009379797615110874, -0.001876823720522225, -0.01305566355586052, 0.0030536195263266563, -0.02461332641541958, -0.030582288280129433, -0.020130842924118042, -0.011154353618621826, -0.005510919261723757, -0.013666387647390366, 0.026618344709277153, 0.018056686967611313, 0.02167493663728237, 0.02190539985895157, -0.020545674487948418, 0.04436390846967697, -0.04143704101443291, 0.026249604299664497, -0.02883077785372734, 0.005917108152061701, 0.03159632161259651, -0.008515565656125546, -0.0028303596191108227, 0.00375364744104445, 0.009327943436801434, 0.02800111472606659, 0.027747606858611107, 0.035237617790699005, 0.011425146833062172, 0.025466034188866615, 0.008746027015149593, -0.021098783239722252, 0.001966127660125494, 0.008815165609121323, -0.004421986639499664, -0.04494006186723709, -0.001866740989498794, -0.012917387299239635, 0.00873450469225645, 0.014588234946131706, -0.025419943034648895, 0.03777269646525383, -0.01924356445670128, 0.009229997172951698, -0.025811728090047836, -0.003969705197960138, 0.018828732892870903, -0.02089136652648449, -0.01741139218211174, 0.0008692733244970441, -0.02113335207104683, -0.009771582670509815, -0.006424124352633953, -0.021709507331252098, -0.01727311685681343, -0.004603475332260132, -0.02495901845395565, 0.02022302709519863, -0.020534150302410126, -0.018459994345903397, 0.03099711984395981, 0.03698912635445595, 0.002088560489937663, -0.00926456693559885, -0.004151194356381893, 0.028185484930872917, -0.007674379739910364, -0.010958461090922356, -0.004753275774419308, 0.004747514147311449, -0.0030334540642797947, 0.012421893887221813, -0.03592900186777115, 0.00846947357058525, -0.020741567015647888, 0.012053155340254307, 0.01629365235567093, 0.005856611765921116, 0.019842766225337982, -0.009881052188575268, 0.015659883618354797, -0.011477000080049038, 0.02694099023938179, -0.014519096352159977, -0.041621409356594086, -0.014530619606375694, -0.019416410475969315, 0.02320750802755356, 0.020292166620492935, 0.014380820095539093, 0.04530880227684975, 0.027240591123700142, -0.01547551341354847, -0.014127311296761036, -0.0022887743543833494, -0.027125360444188118, -0.011914878152310848, -0.029176469892263412, -0.010998792015016079, 0.02161732129752636, -0.002356472425162792, 0.027701515704393387, 0.0006989475805312395, -0.004663971718400717, -0.01659325323998928, -0.0017572715878486633, 0.01388532668352127, 0.01349354162812233, 0.0009672195883467793, -0.02588086575269699, 0.038763683289289474, 0.009299135766923428, -0.04565449431538582, -0.0289690550416708, -0.049595389515161514, 0.03482278436422348, -0.035283710807561874, -0.005830684676766396, 0.008308149874210358, 0.022089768201112747, -0.007403586991131306, 0.024728557094931602, 0.007605241145938635, 0.003929374739527702, 0.003379147034138441, -0.005974723491817713, -0.01851760968565941, 0.0008015751373022795, -0.015417898073792458, 0.02240089140832424, 0.021744076162576675, 0.02234327606856823, 0.01158646959811449, -0.014265588484704494, -0.004496886860579252, 0.02210129238665104, -0.005761546548455954, -0.0477977879345417, 0.010428398847579956, -0.03588290885090828, 0.01774556189775467, 0.026134373620152473, -0.03072056546807289, -0.01388532668352127, 0.01600557565689087, -0.0378187894821167, 0.008584704250097275, 0.005015426315367222, 0.02152513712644577, 0.0054244957864284515, 0.03565244749188423, 0.04922665283083916, 0.020061705261468887, -0.020810704678297043, -0.004784964025020599, -0.03638992831110954, 0.012491032481193542, -0.033601339906454086, 0.0150145897641778, 0.010088467970490456, 0.030052226036787033, -0.006677632220089436, -0.02742496132850647, 0.04574667662382126, 0.005073041655123234, 0.02070699818432331, 0.014173404313623905, -0.0036240126937627792, 0.007369017694145441, 0.011523093096911907, -0.005807638633996248, -0.005225722678005695, -0.040031224489212036, -0.009944428689777851, -0.013562680222094059, -0.011718985624611378, 0.005194033961743116, -0.024682464078068733, -0.03371657058596611, 0.016800669953227043, -0.01073952205479145, 0.007731995079666376, -0.02654920518398285, 0.010416875593364239, -0.03032878041267395, 0.0008973608491942286, -0.031458042562007904, -0.016950469464063644, -0.041275717318058014, 0.0009528157534077764, -0.03680475801229477, -0.01620146818459034, -0.03217247501015663, 0.02535080350935459, 0.0036412973422557116, 0.0050471145659685135, -0.00815258827060461, -0.013113279826939106, -0.024728557094931602, -0.0384179912507534, 0.012318186461925507, -0.0014447077410295606, 0.030582288280129433, -0.0024645014200359583, -0.01678914576768875, 0.015268097631633282, -0.017641855403780937, 0.044571321457624435, -0.004600594751536846, 0.031365856528282166, 0.0009319301461800933, -0.003955301363021135, 0.008792120032012463, 0.019716011360287666, 0.015752067789435387, 0.0034540470223873854, 0.030974073335528374, -0.024843787774443626, 0.007616764400154352, -0.014380820095539093, 0.03037487156689167, 0.02433677203953266, -0.024290679022669792, 0.010572437196969986, 0.00023730368411634117, 0.01514134369790554, -0.03514543175697327, -0.014703466556966305, 0.0087748346850276, 0.011471238918602467, 0.026779666543006897, 0.014277111738920212, -0.012352755293250084, 0.01895548775792122, 0.04281981289386749, 0.022112814709544182, 0.016766099259257317, -0.006303131580352783, -0.007587956730276346, -0.03496106341481209, -0.010820183902978897, 0.009109004400670528, 0.003719078144058585, 0.018990056589245796, -0.0013719681883230805, -0.012479509226977825, -0.0008613512036390603, 0.0072422637604177, -0.06107239052653313, 0.029038192704319954, 0.02320750802755356, -0.027978068217635155, -0.0241293553262949, 0.019416410475969315, -0.005142180249094963, -0.008901589550077915, 0.029038192704319954, 0.014012080617249012, -0.010140321217477322, 0.00844066496938467, -0.036643434315919876, -0.021801691502332687, 0.06900028139352798, -0.006458693649619818, -0.008619273081421852, -0.028623363003134727, -0.013977511785924435, -0.022377846762537956, 0.017734039574861526, -0.021651891991496086, 0.023242078721523285, -0.0018163274507969618, 0.03804925084114075, -0.027908930554986, -0.010560914874076843, 0.015095251612365246, -0.015878820791840553, -0.0020381470676511526, -0.016224514693021774, 0.012825202196836472, -0.020292166620492935, -0.012491032481193542, -0.033693522214889526, 0.0009376916568726301, -0.010762568563222885, 0.013182418420910835, 0.00030500185675919056, 0.030167456716299057, -0.006585447583347559, 0.009085958823561668, 0.03279472142457962, 0.005822042468935251, 0.009253043681383133, -0.015164390206336975, 0.013274602591991425, 0.0054821111261844635, 0.022988568991422653, -0.023011615499854088, 0.012733017094433308, 0.014346250332891941, -0.05655533820390701, 0.02263135462999344, 0.012686925008893013, -0.03046705760061741, -0.01851760968565941, -0.02601914294064045, 0.0072192177176475525, 0.06499024480581284, -0.038625407963991165, 0.026226559653878212, -0.006625778507441282, 0.011678654700517654, 0.055449120700359344, -0.04701421782374382, -0.025373850017786026, 0.006354985758662224, 0.02229718491435051, 0.004718706477433443, -0.005620388314127922, -0.03399312496185303, -0.008550134487450123, -0.011621039360761642, 0.021144874393939972, -0.01560226734727621, 0.046115417033433914, -0.05185391753911972, 0.01892091892659664], [0.04845185577869415, 0.02493845485150814, 0.027399912476539612, 0.06792759895324707, -0.009878219105303288, -0.011108947917819023, -0.034417226910591125, 0.006461326964199543, 0.04111066460609436, 0.03484906256198883, 0.020155886188149452, -0.00824804324656725, -4.24033023591619e-05, 0.009408598765730858, -0.04173682630062103, 0.027205588296055794, -0.0036247125826776028, -0.002815022598952055, 0.005057864356786013, 0.01185386348515749, 0.01671200431883335, 0.03836851567029953, -0.02153775654733181, -0.021807653829455376, -0.035151347517967224, -0.04819275438785553, 0.008490949869155884, -0.011551578529179096, 0.033553559333086014, -0.03506498038768768, 0.04234139621257782, -0.025931674987077713, 0.01801830343902111, -0.011108947917819023, 0.014466463588178158, 0.03219327703118324, 0.012156147509813309, -0.01571878418326378, 0.005387138109654188, -0.015707988291978836, -0.049401890486478806, -0.0017651243833824992, 0.028263581916689873, 0.004877033177763224, -0.009802647866308689, 0.020911596715450287, 0.046163130551576614, 0.01019669696688652, -0.034417226910591125, 0.03582068905234337, 0.012911858037114143, 0.029062476009130478, 0.028997700661420822, 0.0489700585603714, -0.002806925680488348, 0.011049570515751839, 0.019637683406472206, -0.008156278170645237, 0.008685275912284851, -0.012890266254544258, 0.009694689884781837, 0.023124748840928078, -0.010531369596719742, 0.013116979971528053, 7.169131276896223e-05, -0.02297360636293888, -0.000536757055670023, -0.01571878418326378, -0.03325127437710762, -0.0026409393176436424, 0.021138310432434082, 0.03936173394322395, 0.018191037699580193, -0.023578176274895668, -0.050136011093854904, 0.031351201236248016, -0.013505631126463413, 0.007076691370457411, 0.053245220333337784, 0.012825490906834602, -0.06697756797075272, 0.04832230508327484, 0.0070874872617423534, 0.01258798222988844, 0.0013940164353698492, -0.0006160392076708376, -0.048667773604393005, -0.010450400412082672, -0.04836548864841461, -0.0023373053409159184, 0.029537495225667953, 0.048710957169532776, 0.0039000073447823524, 0.027659013867378235, -0.007292608730494976, -0.04285959526896477, 0.02599645033478737, -0.0023103158455342054, -0.010617735795676708, 0.0032522552646696568, -0.028673825785517693, -0.006169838365167379, -0.0432482473552227, -0.005840564612299204, 0.032733071595430374, 0.004250872880220413, -0.051863349974155426, 0.018007507547736168, -0.006110461428761482, 0.002798828762024641, -0.03156711906194687, -0.006477520801126957, 0.02809084765613079, 0.06533659249544144, -0.01670120842754841, 0.021073535084724426, -0.006472122855484486, -0.07410284131765366, 0.003519452875480056, 0.005381740164011717, 0.03398539125919342, -0.004642223473638296, 0.005136134102940559, -0.06680483371019363, 0.01082825567573309, 0.02043657749891281, -0.035475220531225204, 0.00769745372235775, -0.022628139704465866, -0.023880459368228912, 0.013440855778753757, 0.0016355740372091532, 0.039728794246912, -0.05238155275583267, -0.023513400927186012, -0.02375091053545475, -0.01675518788397312, -0.061925098299980164, -0.012728328816592693, 0.023880459368228912, 0.03774235397577286, -0.0014183071907609701, -0.02182924561202526, 0.013732343912124634, -0.02153775654733181, -0.022584956139326096, -0.008663684129714966, 0.02567257359623909, -0.014250545762479305, 0.019724050536751747, -0.017554081976413727, 0.06460247188806534, -0.05933409184217453, -0.003144296584650874, -0.005559871904551983, 0.02878178469836712, 0.022099141031503677, -0.0020201767329126596, -0.016971103847026825, 0.041045889258384705, -0.02260654792189598, 0.0248520877212286, 0.004245474934577942, 0.029019292443990707, 0.029213618487119675, 0.00451537175104022, 0.0343092679977417, -0.025068005546927452, 0.00022485769295599312, 0.012803899124264717, -0.009284446947276592, -0.003916201181709766, -0.06676165014505386, -0.020317822694778442, -0.004105128813534975, -0.006709631998091936, 0.036835502833127975, 0.008361400105059147, -0.009554343298077583, -0.015092623420059681, 0.013818711042404175, 0.03934014216065407, -0.030811406672000885, -0.027615830302238464, -0.02562939003109932, 0.02023145742714405, 0.0002766441321000457, 0.02366454340517521, -0.03966401889920235, 0.041002705693244934, 0.012501615099608898, -0.020782046020030975, -0.007783820852637291, 0.0014345009112730622, 0.0023696930147707462, -0.02621236816048622, -0.008938978426158428, -0.039815161377191544, 0.03582068905234337, 0.005476204212754965, 0.0023656445555388927, -0.05669989809393883, -0.013548814691603184, -0.028393132612109184, -0.04732908681035042, 0.013073796406388283, 0.02444184571504593, -0.02145138941705227, 0.029386352747678757, -0.03389902412891388, 0.0032549542374908924, 0.009246661327779293, -0.0378287211060524, 0.04372326657176018, 0.00606187991797924, 0.02457139641046524, 0.04087315499782562, 0.041909560561180115, 0.05959319323301315, -0.010450400412082672, -0.022023571655154228, 0.03741847723722458, 0.09215352684259415, -0.04568811506032944, -0.04216866195201874, -0.0376775786280632, -0.028673825785517693, -0.043183472007513046, -0.003789349691942334, -0.08058036118745804, -0.014844318851828575, 0.016150617972016335, 0.009036141447722912, -0.04147772490978241, -0.014326117001473904, -0.021591736003756523, 0.05294293537735939, 0.02910565957427025, 0.0028824966866523027, -0.04033336415886879, -0.0042481739073991776, 0.030897773802280426, -0.03260352090001106, -0.016658024862408638, 0.01461760513484478, -0.014682380482554436, -0.013322100974619389, -0.050136011093854904, 0.07203003019094467, 0.00692015141248703, 0.016560861840844154, 0.028263581916689873, 0.0741892084479332, -0.04948825761675835, 0.0024736032355576754, 0.048581406474113464, 0.008123890496790409, -0.07423239201307297, 0.01690632849931717, 0.0630478709936142, 0.006024094298481941, -0.001283358782529831, -0.00047603031271137297, -0.08096901327371597, -0.04504036158323288, 0.003603121032938361, -0.04022540524601936, -0.03795827180147171, -0.04516991227865219, 0.05989547446370125, 0.005422224756330252, 0.020155886188149452, 0.03722415119409561, -0.01851491443812847, -0.06024094298481941, 0.06542295962572098, -0.028285173699259758, 0.015125011093914509, 0.0013899679761379957, -0.02046896517276764, -0.025823716074228287, 0.014120995067059994, 0.013311305083334446, -0.058038584887981415, 0.04577448219060898, 0.021267859265208244, 0.01208057627081871, -0.027982890605926514, -0.015222174115478992, 0.004558555316179991, 0.07557107508182526, 0.014088607393205166, 0.022099141031503677, 0.012523206882178783, -0.003406096249818802, 0.02768060564994812, -0.025240739807486534, 0.03366151824593544, 0.017964323982596397, -0.02977500483393669, -0.015632417052984238, 0.042643677443265915, -0.04810638725757599, 0.0033656118903309107, -0.02781015634536743, 0.04504036158323288, 0.030962549149990082, -0.03772076219320297, 0.0026463372632861137, 0.02882496826350689, 0.020317822694778442, -0.011006387881934643, -0.0656820610165596, -0.018212629482150078, 0.020209865644574165, -0.00021406181622296572, -0.02854427509009838, 0.01535172387957573, 0.017262592911720276, -0.00402146065607667, 0.03091936558485031, 0.02252018079161644, 0.006898559629917145, 0.005770391318947077, -0.02084682136774063, 0.022369038313627243, -0.0032873419113457203, 0.06499112397432327, -0.026838527992367744, -0.01973484642803669, -0.032409194856882095, 0.017413735389709473, -0.005235996097326279, -0.010617735795676708, -0.03918899968266487, 0.0023103158455342054, -0.03968561068177223, 0.008150880225002766, -0.013462447561323643, 0.004882431123405695, -0.019227441400289536, -0.044694893062114716, -0.02781015634536743, 0.03970720246434212, 0.004760977812111378, 0.03417971730232239, 0.027896523475646973, 0.04180160164833069, -0.009894412942230701, 0.018169445917010307, 0.021019555628299713, 0.04147772490978241, 0.011551578529179096, 0.024700945243239403, -0.044694893062114716, -0.00582437077537179, -0.0027934308163821697, 0.011886250227689743, 0.005068660248070955, 0.03737529367208481, -0.03340241685509682, -0.04845185577869415, -0.0017529791221022606, 0.04983372613787651, 0.03422290086746216, 0.04022540524601936, -0.07410284131765366, 0.015988679602742195, -0.0014493452617898583, 0.029494311660528183, 0.004115924704819918, -0.07587336003780365, 0.02420433610677719, -0.05665671452879906, -0.01005095336586237, 0.020371802151203156, -0.0006187381804920733, 0.024700945243239403, 0.026277143508195877, -0.009937596507370472, -0.004153710324317217, 0.022779282182455063, 0.003017445094883442, 0.0017867161659523845, 0.01870923861861229, 0.050136011093854904, -0.04022540524601936, -0.014520442113280296, -0.004866237286478281, -0.010207492858171463, 0.04385281726717949, -0.027572646737098694, -0.010088738985359669, -0.011162927374243736, -0.007470740471035242, 0.04082997143268585, 0.012210126966238022, 0.04201751947402954, -0.014110199175775051, -0.03407175838947296, -0.007853994145989418, -0.029040884226560593, -0.005343954544514418, 0.01687394082546234, -0.009424792602658272, -0.021969592198729515, -0.029019292443990707, 0.004183399025350809, 0.015621621161699295, 0.003519452875480056, 0.018007507547736168, 0.055706679821014404, 0.006715029943734407, 0.03623093292117119, 0.006272399332374334, -0.014455667696893215, -0.0016180307138711214, 0.0244850292801857, -0.013689160346984863, -0.07077771425247192, 0.023880459368228912, 0.050222378224134445, -0.04577448219060898, 0.038433291018009186, -0.008059115149080753, 0.005791983101516962, 0.021149106323719025, -0.04922915995121002, -0.017176225781440735, -0.01977802999317646, -0.055663496255874634, -0.016647228971123695, -0.01306300051510334, 0.07060497999191284, -0.026514651253819466, 0.027054445818066597, 0.01703587919473648, -0.008620500564575195, -0.007702851668000221, -0.02100875973701477, -0.033229682594537735, -0.022347446531057358, 0.024679353460669518, -0.02927839383482933, -0.025823716074228287, -0.008814826607704163, 0.007119874935597181, 0.003589626168832183, -0.005689422599971294, -0.0057487995363771915, 0.015707988291978836, 0.009818841703236103, 0.00933302752673626, -0.012253310531377792, -0.011357253417372704, 0.010774276219308376, 0.007422159425914288, -0.03454677760601044, 0.005856758449226618, -0.0009048286592587829, -0.016355739906430244, -0.005732605699449778, 0.05082694813609123, 0.03627411648631096, -0.000689923414029181, -0.011951025575399399, 0.02293042279779911, -0.06240011751651764, -0.011907842010259628, -0.05207926779985428, 0.004294056445360184, 0.0019554016180336475, 0.0328410305082798, -0.002662530867382884, 0.02293042279779911, -0.00738977175205946, 0.015945497900247574, 0.008771643042564392, -0.0023265094496309757, 0.028241990134119987, 0.01062853168696165, 0.007136068772524595, -0.0753551572561264, -0.01862287148833275, 0.07319598644971848, -0.011681129224598408, 0.03340241685509682, -0.03243078663945198, 0.0009453131933696568, -0.03644685074687004, -0.023578176274895668, 0.011929433792829514, -0.01496307272464037, -0.007929565384984016, -0.014023832976818085, 0.030163655057549477, 0.02878178469836712, -0.011821475811302662, -0.008113094605505466, 0.015330133028328419, -0.002928379224613309, 0.005370944272726774, -0.027291953563690186, 0.003379106754437089, 0.06080232933163643, -0.0017516296356916428, -0.008302022702991962, 0.011583966203033924, 0.019993947818875313, -0.01592390611767769, 0.006088869646191597, -0.0004112551105208695, -0.005252189934253693, 0.007800014689564705, -0.03877875953912735, -0.035151347517967224, 0.04495399445295334, 0.0244850292801857, -0.03640366718173027, 0.018849585205316544, -0.022736098617315292, 0.030725039541721344, 0.006315582897514105, 0.00021119417215231806, -0.04253571853041649, 0.04007426276803017, -0.006952539086341858, -0.04041973128914833, 0.00937621109187603, -0.020199069753289223, -0.01427213754504919, -0.027205588296055794, -0.014909093268215656, -0.016204597428441048, 0.002176716923713684, -0.031545527279376984, -0.01630176045000553, 0.0062400116585195065, -0.04797683656215668, 0.02301678992807865, -0.02763742208480835, -0.027464687824249268, 0.03934014216065407, -0.03644685074687004, 0.02640669234097004, 0.002863603876903653, 0.010515175759792328, 0.0168631449341774, 0.004720493219792843, -0.02763742208480835, -0.003797446610406041, 0.0015181689523160458, 0.011292478069663048, 0.030940957367420197, -0.03279784694314003, 0.04013903811573982, 0.03307854011654854, -0.01982121355831623, 0.011497599072754383, -0.0030444348230957985, 0.014833522960543633, 0.015837538987398148, 0.0032225665636360645, 0.0012597428867593408, -0.02100875973701477, 0.047804102301597595, -0.005948523059487343, -0.03666276857256889, 0.0014533937210217118, -0.035280898213386536, -0.01427213754504919, 0.019993947818875313, -0.0032009747810661793, -0.04568811506032944, 0.039987895637750626, 0.0254350658506155, 0.006855376064777374, -0.0334240086376667, 0.010660919360816479, 0.03055230714380741, 0.011778292246162891, 0.0210411474108696, -0.02621236816048622, -0.01504943985491991, -0.006952539086341858, 0.03055230714380741, -0.00976486224681139, -0.03968561068177223, 0.00884721428155899, 0.06062959507107735, -0.05471345782279968, 0.014380096457898617, -0.02644987590610981, 0.007907973602414131, -0.005576065741479397, 0.030638674274086952, -0.03506498038768768, 0.02362135984003544, -0.052554287016391754, -0.00711447698995471, 0.02219630405306816, 0.02026384510099888, 0.03458996117115021, 0.04303232952952385, -0.03046594001352787, -0.011314069852232933, -0.0003181407228112221, -0.009214273653924465, 0.012760715559124947, -0.02174287848174572, 0.0035032592713832855, -0.01181067992001772, -0.0269033033400774, -0.020652495324611664, 0.022671323269605637, -0.008965968154370785, -0.03754802793264389, -0.00261125061661005, -0.013224937953054905, -0.007767627015709877, 0.013959057629108429, 0.039167407900094986, 0.007233231794089079, -0.025111189112067223, -0.036015015095472336, 0.02608281746506691, 0.015697192400693893, 0.009343823418021202, -0.07488013803958893, -0.01964847929775715, -0.006369562353938818, -0.035475220531225204, -0.010801265947520733, -0.039037857204675674, -0.0008123890729621053, 0.03009887970983982, -0.006202226039022207, -0.009824239648878574, -0.011238498613238335, -0.003136199666187167, 0.017510898411273956, 0.01324652973562479, 0.01310618408024311, -0.04020381346344948, 0.03810941427946091, -0.007551709655672312, -0.014693176373839378, 0.027054445818066597, 0.05540439486503601, -0.003678692039102316, 0.02649305947124958, 0.0011403135722503066, -0.047113168984651566, -0.015222174115478992, 0.00571101438254118, 0.004850043915212154, -0.02370772697031498, 0.03014206327497959, -0.027464687824249268, 0.025974858552217484, -0.01666882075369358, 0.02424751967191696, 0.03741847723722458, 0.010866041295230389, 0.031264834105968475, 0.04637904837727547, 0.03860602527856827, -0.011389641091227531, -0.01301981694996357, -0.04482444375753403, -0.04504036158323288, 0.006860774010419846, 0.01384030282497406, -0.058168135583400726, 0.03813100606203079, 0.0003183094086125493, -0.03206372633576393, -0.002010730328038335, 0.0052980720065534115, -0.0035032592713832855, -0.01964847929775715, 0.017176225781440735, -0.017456918954849243, 0.0404629148542881, -0.0036597992293536663, -0.01142202876508236, 0.04188796877861023, -0.02493845485150814, -0.023189524188637733, 0.005829768721014261, 0.014120995067059994, 0.028630642220377922, -0.002227997174486518, 0.04352894052863121, 0.004202291835099459, 0.04724271968007088, -0.020728066563606262, -0.022023571655154228, 0.002866302849724889, -0.02955908700823784, 0.002002633409574628, -0.02043657749891281, -0.019443359225988388, -0.05993865802884102, -0.024096377193927765, -0.026341918855905533, -0.015340927988290787, 0.006423541344702244, 0.00966230221092701, -0.0028420123271644115, -0.006779805291444063, 0.0348922461271286, -0.0027556451968848705, -0.02534869872033596, 0.014790339395403862, -0.0064181433990597725, -0.0024007312022149563, 0.02845790795981884, 0.010795868001878262, 0.012782307341694832, 0.0233838502317667, 0.03886512666940689, -0.007907973602414131, -0.001782667706720531, 0.005200909450650215, -0.008539531379938126, 0.0032387604005634785, 0.005894544068723917, -0.030293205752968788, -0.04368008300662041, -0.0008636694401502609, -0.005565269850194454, 0.0015613524010404944, 0.0019405572675168514, -0.025737348943948746, 0.01427213754504919, -0.017780793830752373, -0.010126524604856968, 0.01576196774840355, -0.023858867585659027, -0.018083078786730766, 0.002522184746339917, -0.029515903443098068, -0.037202559411525726, -0.007675861939787865, 0.0029391751158982515, -0.009408598765730858, -0.0024209734983742237, 0.022628139704465866, -0.014196566306054592, 0.04128339886665344, 0.004804161377251148, -0.04201751947402954, -0.03266829624772072, 0.03657640144228935, -0.018201833590865135, -0.007978146895766258, -0.011637945659458637, 0.031048916280269623, 0.024139560759067535, 0.0378287211060524, 0.0208900049328804, -0.0029094864148646593, 0.021300246939063072, 7.907130202511325e-05, 0.01584833487868309, -0.026687385514378548, -0.005424923729151487, -0.015999475494027138, 0.00033652744605205953, -0.004542361479252577, -0.01486591063439846, 0.003775854827836156, -0.00032691238448023796, 0.023556584492325783, -0.0178887527436018, -0.03288421407341957, 0.0013339644065126777, 0.024139560759067535, -0.009786454029381275, 0.005829768721014261, -0.0259532667696476, -0.025845307856798172, 0.005001185927540064, -0.03191258758306503, 0.014099403284490108, 0.006385755725204945, 0.018989931792020798, 0.012210126966238022, 0.004796064458787441, 0.0011922686826437712, -0.011659537442028522, -0.020620107650756836, 0.008577316999435425, -0.028997700661420822, 0.01277151145040989, -0.0033764077816158533, -0.03353196755051613, -0.011886250227689743, 0.01126009039580822, -0.02567257359623909, -0.01859048381447792, 0.0010512477019801736, -0.019313808530569077, 0.06322060525417328, 0.030357981100678444, -0.048667773604393005, -0.02256336435675621, 0.013505631126463413, -0.0030606286600232124, 0.024053193628787994, 0.03731051832437515, 0.016118230298161507, 0.007422159425914288, 0.0005202259053476155, -0.04504036158323288, -0.0034330859780311584, 0.032992172986269, -0.02284405753016472, -0.026255551725625992, 0.013192550279200077, -0.047804102301597595, 0.009932198561728, -0.008879601024091244, -0.022369038313627243, 0.002966164844110608, -0.019313808530569077, 0.0031820822041481733, 7.14804555173032e-05, 0.023103157058358192, -0.011357253417372704, -0.014207362197339535, -0.01776999793946743, -0.001982391346246004, 0.0004460042982827872, -0.0015829441836103797, -0.0208900049328804, 0.016031863167881966, -0.0392969585955143, -0.030962549149990082, 0.02878178469836712, -0.005249490961432457, -0.04987690970301628, -0.0028770987410098314, -0.003910803236067295, -0.0019702459685504436, -0.00420768978074193, -0.03186940401792526, -0.003638207446783781, 0.03828214854001999, 0.03150234371423721, -0.03156711906194687, 0.004153710324317217, -0.0028420123271644115, -0.00016885412333067507, 0.019303012639284134, -0.015578437596559525, -0.02362135984003544, -0.01715463399887085, 0.02398841828107834, -0.012544798664748669, 0.01859048381447792, -0.007303404621779919, -0.0024668558035045862, 0.013149367645382881, -0.010385625064373016, -0.002476302208378911, -0.004134817514568567, -0.025931674987077713, -0.007665066514164209, 0.007011916488409042, -0.01605345495045185, 0.008706867694854736, 0.0014628401258960366, -0.00919268187135458, -0.006909355521202087, 0.010337043553590775, -0.030271613970398903, -0.024873679503798485, -0.0017840171931311488, 0.03143756836652756, 0.015200582332909107, 0.010034759528934956, 0.008712265640497208, 0.0039701806381344795, -0.011659537442028522, -0.023189524188637733, 0.0012766113504767418, -0.009818841703236103, -0.0014722865307703614, 0.023448625579476357, -0.021267859265208244, 0.001234777388162911, 0.014336912892758846, -0.0185473021119833, 0.03705142065882683, -0.022671323269605637, 0.02703285403549671, -0.021300246939063072, 0.010968602262437344, -0.06062959507107735, -0.005273781716823578, -0.04115384817123413, 0.0011821475345641375, 0.015200582332909107, -0.0023845373652875423, -0.03253874555230141, 0.027831748127937317, 0.023167932406067848, 0.0348922461271286, -0.036792319267988205, -0.041456133127212524, -0.05872952193021774, 0.017834773287177086, 0.06170918047428131, 0.03247397020459175, 0.0007354685221798718, 0.030120471492409706, 0.013084592297673225, 0.020501352846622467, 0.0224338136613369, 0.004785268567502499, -0.025910083204507828, 0.03143756836652756, 0.03156711906194687, -0.022584956139326096, 0.01109815202653408, -0.007276414893567562, 0.009629914537072182, -0.034417226910591125, -0.009360017254948616, -0.00786479003727436, -0.013764731585979462, 0.012965837493538857, -0.033316049724817276, -0.0016342245507985353, -0.015330133028328419, 0.003924298100173473, 0.011314069852232933, -0.027853339910507202, -0.029019292443990707, -0.006013298407196999, -0.008717663586139679, -0.026104409247636795, 0.0041726031340658665, 0.0482359379529953, -0.007341190241277218, 0.0006298714433796704, 0.01982121355831623, -0.003273847047239542, 0.004175302106887102, -0.0020066818688064814, 0.04884050786495209, 0.049445074051618576, -0.007729841396212578, 0.002453360939398408, 0.018460934981703758, 0.019195053726434708, 0.008787836879491806, -0.014552829787135124, -0.014919889159500599, 0.0690503716468811, -0.008922784589231014, -0.00837219599634409, 0.050092827528715134, 0.031351201236248016, 0.022800873965024948, -0.004110526759177446, 0.03238760307431221, 0.029623862355947495, -0.03640366718173027, -0.0023076168727129698, 0.008323614485561848, -0.018374567851424217, 0.014736359938979149, 0.024010010063648224, -0.0039863744750618935, -0.006617866922169924, 0.04288118705153465, 0.001040451810695231, 0.008582714945077896, 0.016798371449112892, 0.009484170004725456, 0.005438418593257666, -0.009575935080647469, 0.04922915995121002, 0.019799621775746346, 0.008059115149080753, -0.004585545044392347, -0.007773024961352348, 0.01650688238441944, 0.012879470363259315, -0.01521137822419405, 0.024916863068938255, -0.005217103287577629, 0.013278917409479618, -0.00937621109187603, 0.00332242832519114, 0.02845790795981884, 0.00855572521686554, 0.00464762095361948, 0.030401164665818214, 0.03111369162797928, 0.023124748840928078, -0.006304787006229162, 0.033639926463365555, -0.009494965896010399, -0.017823977395892143, -0.03150234371423721, 0.022304262965917587, 0.04344257339835167, -0.01238286029547453, -0.008787836879491806, 0.007567903492599726, 0.01079047005623579, 0.0369434617459774, -0.012911858037114143, -0.013116979971528053, -0.02722717821598053, 0.0007833751733414829, -0.016236985102295876, -0.015060235746204853, 0.010644725523889065, 0.004574749153107405, 0.01461760513484478, 0.013721548020839691, 0.017381347715854645, 0.02452821284532547, 0.019756438210606575, -0.005155026912689209, -0.001362978364340961, 0.025564614683389664, 0.01924903318285942, 0.021710490807890892, -0.025046413764357567, 0.00664485665038228, 0.017392143607139587, -0.019842805340886116, 0.0013359886361286044, 0.05151788145303726, 0.015125011093914509, -0.02608281746506691, -0.03681391105055809, 0.05289975181221962, -0.04329143092036247, -0.0006248108693398535, -0.04285959526896477, -0.031048916280269623, 0.01675518788397312, -0.0019311108626425266, 0.007222435902804136, 0.03206372633576393, -0.02895451709628105, 0.03297058120369911, 0.012026596814393997, -0.03599342331290245, -0.014336912892758846, -0.032689888030290604, 0.00927365105599165, -0.002782634925097227, -0.027335137128829956, 0.010957806371152401, -0.01504943985491991, 0.005403331946581602, 0.014909093268215656, -0.03424449265003204, 0.013591998256742954, 0.04840867221355438, 0.02080363780260086, 0.041585683822631836, -0.00324415834620595, 0.001597788417711854, 0.002958067925646901, 0.018169445917010307, 0.0038379309698939323, 0.0372457429766655, 0.00013865942310076207, -0.0005823021056130528, 0.008399185724556446, 0.02424751967191696, -0.005141532048583031, -0.0011011785827577114, 0.012728328816592693, -0.020544536411762238, -0.017780793830752373, 0.0013488087570294738, -0.021645715460181236, 0.012987429276108742, -0.004725891165435314, 0.010029361583292484, -0.00537364324554801, 0.02759423851966858, 0.026924895122647285, 0.019713254645466805, 0.009732474572956562, 0.004558555316179991, 0.011108947917819023, 0.024679353460669518, 0.007022711914032698, 0.006536898203194141, -0.0063263787887990475, 0.04188796877861023, 0.015265357680618763, -0.02804766595363617, -0.0004406063526403159, -0.01040181890130043, 0.0023588971234858036, 0.003257653210312128, 0.007227833848446608, 0.008577316999435425, 0.014725564047694206, -0.010585349053144455, 0.0497041754424572, -0.024463437497615814, -0.007735239341855049, -0.003724574577063322, -0.02886815182864666, -0.021634919568896294, 0.016161413863301277, 0.009090120904147625, 0.001750280149281025, -0.01727338880300522, -0.039577651768922806, 0.0012408500770106912, 0.017208613455295563, 0.012987429276108742, -0.019875193014740944, 0.008361400105059147, 0.03132960945367813, 0.003800145583227277, -0.010067147202789783, -0.02914884313941002, 0.025046413764357567, -0.033877432346343994, 0.029839778319001198, 0.01776999793946743, 0.016647228971123695, -0.0582113191485405, -0.015125011093914509, 0.003789349691942334, 0.030617082491517067, -0.014682380482554436, -0.024290703237056732, -0.009899810887873173, -0.015243765898048878, -0.026471467688679695, -0.0007550360169261694, 0.046206314116716385, 0.020414985716342926, -0.009451782330870628, 0.011173723265528679, 0.04948825761675835, -0.029170434921979904, -0.008361400105059147, 0.043464165180921555, 0.030530715361237526, -0.004291357472538948, -0.04672451689839363, 0.008269635029137135, 0.01324652973562479, -0.004499177914112806, -0.019033115357160568, -0.007222435902804136, -0.004774472676217556, -0.02117069810628891, -0.013851098716259003, -0.03074663132429123, 0.008226451463997364, -0.04948825761675835, 0.01070950087159872, 0.0032846429385244846, 0.013278917409479618, -0.021105922758579254, -0.010331645607948303, -0.012015800923109055, -0.010115728713572025, 0.039815161377191544, 0.010148116387426853, 0.015081827528774738, -0.024549804627895355, 0.024744128808379173, 0.02698967047035694, -0.03553999587893486, -0.046940434724092484, 0.012793103232979774, -0.008809428662061691, 0.013419263996183872, 0.01797511987388134, -0.03890830650925636, 0.018612075597047806, -0.014336912892758846, 0.023858867585659027, 0.036425258964300156, 0.014455667696893215, 0.01605345495045185, -0.00504706846550107, -0.04607676342129707, 0.04326983913779259, 0.013030612841248512, -0.010018565692007542, 0.0072656190022826195, 0.018655259162187576, 0.0035275497939437628, -0.0021834643557667732, -0.007260221056640148, 0.009381609037518501, -0.00408353703096509, 0.005932329688221216, -0.00036267368705011904, 0.0045369635336101055, -0.01219933107495308, -0.0055868616327643394, -0.0007145515410229564, 0.018687646836042404, -0.028198806568980217, -0.027572646737098694, 0.0018987233052030206, 0.01998315192759037, -0.004213087260723114, 0.0035545395221561193, 0.014077811501920223, -0.0033521170262247324, 0.008172472007572651, -0.011886250227689743, 0.020576924085617065, -0.020663291215896606, 0.026385100558400154, -0.01687394082546234, -0.011378845199942589, 0.002944573061540723, -0.00014321393973659724, 0.012933449819684029, 0.00653150025755167, -0.00863669440150261, 0.018158650025725365, 0.026341918855905533, 0.01675518788397312, 0.01724100112915039, 0.006666448432952166, 0.024420253932476044, -0.03975038602948189, 0.003414193168282509, 0.020987167954444885, -0.022304262965917587, -0.025456657633185387, -0.02370772697031498, 0.031264834105968475, 0.016960307955741882, -0.011745904572308064, 0.011519190855324268, 0.02521914802491665, -0.013462447561323643, 0.0008002436952665448, -0.011432824656367302, 0.014120995067059994, 0.003975578583776951, -0.023815684020519257, -0.02649305947124958, 0.02112751454114914, -0.03411494195461273, 0.00016868543752934784, -0.03569113835692406, -0.01703587919473648, 0.02158094011247158, -0.010007769800722599, 6.869714707136154e-05, 0.029623862355947495, 0.012069780379533768, -0.004769074730575085, 0.008075308986008167, 0.024420253932476044, 0.006137451156973839, 0.021235471591353416, 0.023642951622605324, 0.01706826686859131, -0.003727273317053914, -0.05039511248469353, 0.015859130769968033, 0.006790601182729006, -0.004091633949428797, 0.01699269562959671, -0.01169192511588335, -0.014585217460989952, 0.012458431534469128, 0.01126009039580822, 0.006795999128371477, -0.018007507547736168, -0.0004891877761110663, -0.016960307955741882, -0.02026384510099888, -0.0134516516700387, -0.0056732287630438805, -0.018925156444311142, -0.0233838502317667, -0.008312818594276905, -0.03074663132429123, -0.018158650025725365, -0.010947010479867458, 0.023556584492325783, 0.02420433610677719, 0.01005095336586237, -0.034697920083999634, -0.03128642588853836, 0.005303469952195883, -0.033639926463365555, -0.021278655156493187, -0.015492070466279984, 0.004482984077185392, 0.017586469650268555, -0.009214273653924465, 0.04905642569065094, -0.016366535797715187, 0.012706737034022808, -0.008393787778913975, 0.011454415507614613, 0.04806320369243622, -0.014542033895850182, 0.026557834818959236, -0.0066988361068069935, 0.007028109859675169, 0.010466594249010086, -0.04508354514837265, 0.011076560243964195, -0.01818024180829525, 0.05242473632097244, 0.0044344025664031506, -0.012577186338603497, 0.0016193802002817392, 0.028997700661420822, -0.05311566963791847, 0.001879830495454371, -0.01756487786769867, 0.013645976781845093, 0.03271147981286049, 0.0037461661268025637, -0.003211770672351122, 0.010099534876644611, 0.010974000208079815, -0.007281812839210033, 0.0248520877212286, -0.022131528705358505, -0.01212375983595848, -0.005033573601394892, -0.0064181433990597725, -0.006990324705839157, -0.00046759602264501154, -0.04922915995121002, -0.0350433886051178, -0.03409335017204285, -0.02461457997560501, 0.01838536374270916, -0.024636169895529747, -0.008631296455860138, -0.004661115817725658, -0.025607798248529434, -0.036835502833127975, 0.01126009039580822, 0.024960046634078026, -0.025154372677206993, 0.01683075912296772, -0.009862025268375874, -0.0012813345529139042, -0.014174974523484707, 0.014401688240468502, -0.02493845485150814, 0.01735975593328476, -0.012998225167393684, -0.02891133539378643, -0.009548945352435112, 0.037116196006536484, -0.026924895122647285, -0.02117069810628891, 0.04357212409377098, -0.007611087057739496, -0.00919268187135458, 0.0018029100028797984, -0.03946969285607338, 0.04685406759381294, -0.004628728609532118, 0.010488186031579971, 0.005581463687121868, -0.026838527992367744, -0.005195511505007744, -0.009095518849790096, -0.021030351519584656, 0.009484170004725456, -0.003829834284260869, -0.02832835726439953, -0.028285173699259758, -0.01928142085671425, 0.0012779608368873596, 0.008728459477424622, -0.018234221264719963, -0.012523206882178783, -0.012868674471974373, -0.02120308391749859, -0.028803376480937004, -0.0024655063170939684, 5.874470298294909e-05, -0.018903564661741257, -0.01870923861861229, -0.00019584379333537072, 0.0018690346041694283, 0.016344944015145302, 0.006661050487309694, 0.011735108681023121, -0.029256802052259445, -0.015232970006763935, -0.05134514719247818, -0.011324865743517876, 0.004887829069048166, 0.028241990134119987, -0.002823119517415762, -0.005651636980473995, 0.01126009039580822, -0.0283715408295393, 0.005235996097326279, -0.003708380740135908, 0.005246791988611221, 0.01842854730784893, -0.02521914802491665, -0.0002835602208506316, 0.037202559411525726, -0.012156147509813309, -0.012911858037114143, -0.0058675543405115604, -0.029710229486227036, 0.0254350658506155, -0.017424531280994415, 0.0433993898332119, 0.023448625579476357, -0.01466078869998455, 0.0011254692217335105, 0.04996327683329582, -0.0024897970724850893, -0.023275891318917274, 0.01199420914053917, 0.0036355084739625454, -0.04668133333325386, -0.0074383532628417015, 0.03243078663945198, -0.03936173394322395, -0.002985057421028614, 0.04085156321525574, 0.018029099330306053, -0.005797381047159433, -0.0129010621458292, -0.00859890878200531, -0.017543286085128784, -0.01961609162390232, -0.001549207023344934, 0.04335620626807213, 0.005427622701972723, -0.009829637594521046, 0.013872690498828888, 0.003878415562212467, -0.0033656118903309107, -0.01633414812386036, 0.024744128808379173, 0.02439866214990616, -0.047847285866737366, -0.0362093411386013, 0.0315239354968071, -0.028479499742388725, -0.013235733844339848, 0.030984140932559967, 0.015146602876484394, 0.010239880532026291, -0.0164205152541399, 0.009700087830424309, -0.04508354514837265, 0.07591654360294342, 0.022800873965024948, -0.049315523356199265, -0.03422290086746216, -0.006175236310809851, -0.02002633549273014, 0.0014385493705049157, 0.009009151719510555, 0.007227833848446608, -0.0007934963214211166, 0.03586387261748314, -0.00851793959736824, -0.023059973493218422, -0.004183399025350809, -0.03702982887625694, 0.0016018368769437075, -0.004820355214178562, 0.0033494180534034967, -0.004796064458787441, 0.00782160647213459, -0.046292681246995926, 0.03672754392027855, 0.04594721272587776, -0.014941480942070484, -0.008275032974779606, 0.01834218017756939, -0.01662563718855381, 0.000185385302756913, 0.032452378422021866, -0.008831020444631577, 0.008998355828225613, -0.01842854730784893, 0.0012610923731699586, 0.021796857938170433, 0.05777948722243309, -0.04793365299701691, 0.0015937399584800005, 0.007961953058838844, -0.031545527279376984, 0.032085318118333817, -0.03640366718173027, -0.019421767443418503, -0.025499839335680008, -0.022045161575078964, 0.023448625579476357, 0.06430018693208694, -0.019551316276192665, -0.011637945659458637, -0.005948523059487343, 0.0028501092456281185, 0.011637945659458637, -0.023167932406067848, -0.006634060759097338, -0.0075301178731024265, -0.010925418697297573, 0.03718096762895584, 0.01090922486037016, -0.027399912476539612, 0.006364164408296347, -0.04238457605242729, 0.019097890704870224, -0.014552829787135124, 0.05112922936677933, -0.03649003431200981, 0.024096377193927765], [0.006668713875114918, 0.029064564034342766, 0.026858679950237274, 0.0212009958922863, -0.006929130759090185, 0.022487761452794075, -0.026368483901023865, 0.010386036708950996, -0.012561283074319363, 0.02759397402405739, 0.0041590104810893536, 0.04987748712301254, 0.006888281088322401, 0.013398702256381512, -0.03819447010755539, 0.004983663558959961, 0.020526975393295288, 0.02348857931792736, -0.02910541370511055, -0.012387672439217567, 0.020220601931214333, 0.028982864692807198, -0.049591537564992905, -0.05171572417020798, -0.017851319164037704, -0.04738565534353256, 0.028717340901494026, -0.02896243892610073, 0.03131129592657089, -0.07340691238641739, 0.013041267171502113, -0.03451799973845482, 0.0038168940227478743, -0.024652795866131783, 0.05972226336598396, 0.020026566460728645, -0.03351718187332153, 0.002946284832432866, -0.01572713628411293, 0.010957933031022549, -0.012591920793056488, -0.0636029839515686, 0.04485297203063965, 0.048202648758888245, -0.024795768782496452, 0.05563729628920555, -0.03729577735066414, -0.0601307637989521, 0.010957933031022549, -0.042933035641908646, 0.0238970760256052, 0.02334560453891754, 0.0022748177871108055, -0.022201813757419586, -7.715168612776324e-05, 0.021241845563054085, 0.03319038450717926, 0.013194453902542591, 0.00810866616666317, -0.014808016829192638, -0.05433010309934616, 0.004766649566590786, -0.015859896317124367, -0.033026985824108124, 0.012694044969975948, -0.011100906878709793, 0.046609509736299515, -0.01039624959230423, 0.015553523786365986, 0.011580890975892544, -0.015543311834335327, 0.04652781039476395, 0.03651963546872139, -0.02061888761818409, 0.002024613320827484, 0.013950173743069172, -0.0405433289706707, 0.07520430535078049, 0.008016753941774368, -0.008307808078825474, -0.08496738225221634, -0.002546723699197173, -0.011519616469740868, -0.0510212779045105, -0.015645436942577362, 0.02203841507434845, -0.04991833493113518, -0.030371753498911858, -0.0013480401830747724, -0.03643793612718582, 0.01824960485100746, 0.03361930698156357, -0.04493467137217522, 0.04975493624806404, -0.0010435822186991572, 0.004955579526722431, 0.006857643835246563, -0.033843979239463806, 0.005233868025243282, 0.020169541239738464, -0.03860297054052353, -0.03623368591070175, -0.05772063136100769, -0.02183416672050953, -0.023651978000998497, -0.02308008261024952, -0.024795768782496452, 0.04068630188703537, 0.002454811707139015, -0.018290454521775246, 0.013643800280988216, -0.011754501610994339, 0.0457516685128212, 0.025040866807103157, 0.015614799223840237, -0.012755319476127625, -0.0007040190976113081, -0.03774512559175491, -0.0018344069831073284, 0.0023143908474594355, 0.017902381718158722, 0.005320673808455467, 0.03882764279842377, -0.01978146843612194, -0.0021931184455752373, -0.0011495361104607582, -0.0038373188581317663, 0.01722836121916771, -0.0351511687040329, -0.0238970760256052, 0.01607435755431652, -0.05841507390141487, 0.06307194381952286, -0.03819447010755539, -0.030861949548125267, -0.016084570437669754, 0.008450781926512718, -0.031107047572731972, 0.01309232972562313, 0.021609492599964142, 0.00582108274102211, 0.002449705498293042, -0.0037939161993563175, 0.07655233889818192, -0.05453435331583023, 0.011080482043325901, -0.039603788405656815, 0.04477127268910408, 0.036968979984521866, -0.013459976762533188, -0.0128165939822793, 0.026736130937933922, -0.032046590000391006, -0.026102960109710693, -0.007021042518317699, -0.00989073421806097, 0.019454671069979668, 0.034068651497364044, 0.03231211379170418, 0.02473449520766735, -0.0038220002315938473, -0.036009013652801514, -0.0016710081836208701, -0.008200577460229397, 0.004570060409605503, -0.010115407407283783, -0.03202616795897484, 0.029983682557940483, -0.04558826982975006, -0.00044902757508680224, -0.03390525281429291, -0.05890526995062828, -0.03325165808200836, -0.0011061333352699876, -0.04399513080716133, -0.02687910385429859, 0.024754919111728668, 0.037806399166584015, 0.029350511729717255, 0.008522269316017628, 0.02064952440559864, 0.052696116268634796, -0.023794950917363167, -0.027001652866601944, -0.001974827842786908, 0.01355188898742199, 0.028043320402503014, 0.049509838223457336, -0.02495916746556759, 0.03604986146092415, 0.03631538525223732, -0.03402780368924141, -0.010442204773426056, -0.011836200952529907, -0.006193836219608784, -0.014869291335344315, -0.048406898975372314, -0.042034342885017395, 0.03382355347275734, -0.04370918124914169, 0.03976718708872795, -0.06446082890033722, 0.0029947939328849316, 0.0048202648758888245, -0.05939546599984169, 0.004889198578894138, -0.021098870784044266, -0.026286782696843147, 0.051307227462530136, 0.001159110339358449, 0.01601308397948742, -0.04428107663989067, -0.02453024685382843, 0.012346822768449783, 0.014440369792282581, -0.01572713628411293, 0.029677309095859528, 0.03075982630252838, 0.03400737792253494, -0.014399520121514797, -0.014940778724849224, -0.021732041612267494, 0.01070262212306261, -0.051797423511743546, -0.06560461968183517, -0.02536766603589058, 0.005734276957809925, -0.04076800495386124, -0.03805149719119072, -0.08529417961835861, -0.028084170073270798, 0.03788809850811958, 0.01755516044795513, -0.0529412142932415, 0.008236321620643139, -0.036907706409692764, 0.05571899563074112, -0.01327615324407816, -0.009267776273190975, 0.014001235365867615, 0.0352737195789814, -0.01766749657690525, -0.002328433096408844, -0.03243466466665268, -0.004804946482181549, -0.014072722755372524, 0.01717730052769184, 0.0020731224212795496, 0.023059656843543053, -0.004284112714231014, 0.021997565403580666, 0.044812124222517014, 0.03255721181631088, -0.033374205231666565, -0.018035143613815308, 0.0403595045208931, 0.024489397183060646, -0.0636029839515686, -0.003326697740703821, -0.02154821716248989, 0.005085787735879421, 0.03782682493329048, -0.003730088472366333, -0.03972633555531502, -0.03555966541171074, -0.031107047572731972, 0.0014565471792593598, 0.01045241765677929, -0.01598244532942772, 0.05155232548713684, -0.020802710205316544, 0.04289218783378601, -0.0018841925775632262, -0.020373789593577385, -0.11609485745429993, 0.03866424411535263, 0.01493056584149599, -0.016544129699468613, 0.007710381411015987, 0.0019658920355141163, -0.023325180634856224, -0.03654005751013756, -0.016717741265892982, -0.056168340146541595, 0.04926474019885063, 0.02085377275943756, -0.009369900450110435, 0.03014708124101162, -0.030514728277921677, 0.02218138799071312, 0.054738599807024, -0.001958232605829835, -0.0008750772103667259, -0.0011163457529619336, 0.03429332375526428, 0.011376641690731049, 0.012826806865632534, -0.024775344878435135, -0.0018752566538751125, -0.0030050063505768776, 0.03602943941950798, 0.0018803628627210855, -0.011315367184579372, -0.05518794804811478, -0.030718976631760597, -0.013122966513037682, 0.002014400903135538, -0.030678126960992813, -0.028431393206119537, -0.002849266864359379, -0.005055150482803583, -0.035804763436317444, -0.0935458168387413, -0.03196489065885544, 0.04828434810042381, -0.021527793258428574, -0.02551063895225525, -0.006295960396528244, 0.00048349451390095055, -0.016268394887447357, -0.03901146724820137, 0.005371735896915197, -0.017156874760985374, -0.025531064718961716, -0.00026073597837239504, 0.0014897375367581844, -0.01737133599817753, 0.03576391562819481, -0.008695880882441998, 0.02965688332915306, -0.01702411286532879, 0.0044960202649235725, 0.01902574859559536, -0.011305155232548714, -0.01989380456507206, 0.008956297300755978, -0.02765524946153164, 0.020261451601982117, 0.011989387683570385, 0.016666678711771965, 0.02134396880865097, -0.03629495948553085, -0.0060151186771690845, 0.02377452701330185, 0.0019288718467578292, 0.015012266114354134, 0.04444447532296181, 0.014103359542787075, 0.01975083164870739, 0.021568642929196358, 0.007659319322556257, 0.022017989307641983, 0.004166669677942991, -0.00897672213613987, -0.08513078093528748, 0.008930766023695469, 0.05085787922143936, 0.022977957502007484, -0.06674841046333313, -0.0036407297011464834, 0.012050662189722061, -0.02612338401377201, -0.02169119194149971, -0.021670768037438393, 0.015063327737152576, -0.013848049566149712, -0.017422398552298546, 0.002708846004679799, -0.016023295000195503, -0.015614799223840237, 0.010518798604607582, -0.035171594470739365, -0.023325180634856224, -0.0019709982443600893, 0.07095593214035034, 0.0030152187682688236, 0.02820671908557415, 0.026225509122014046, 0.010161363519728184, 0.028043320402503014, 0.02847224287688732, 0.026797404512763023, 0.020955897867679596, 0.0101664699614048, 0.0065665896981954575, -0.009395431727170944, -0.04089055210351944, -0.01537991315126419, 0.022426486015319824, -0.05134807527065277, 0.009936690330505371, 0.00119485380128026, -0.01833130419254303, 0.0737745612859726, -0.037663426250219345, 0.02195671573281288, 0.04248369112610817, -0.003906252793967724, 0.005708746146410704, -0.021262269467115402, -0.009318838827311993, -0.021241845563054085, 0.00978861004114151, -0.006872962228953838, -0.036070287227630615, 0.00508834095671773, -0.033496756106615067, 0.008466101251542568, 0.002374388976022601, -0.012918718159198761, 0.005800657905638218, -0.01607435755431652, 0.016666678711771965, 0.038419146090745926, 0.029411785304546356, -0.008501844480633736, -0.00625511072576046, 0.03839872032403946, -0.019618069753050804, -0.07969777286052704, 0.023549852892756462, 0.03735705465078354, -0.022855408489704132, 0.028431393206119537, -0.070424884557724, -0.023366030305624008, 0.0601307637989521, -0.037050679326057434, 0.012040450237691402, 0.01929127238690853, -0.04256539046764374, -0.026593156158924103, -0.033496756106615067, 0.04187094420194626, -0.005221102386713028, -0.0026041686069220304, 0.027736948803067207, -0.008940978907048702, 0.028308844193816185, -0.028574366122484207, -0.00046945243957452476, -0.041135650128126144, 0.017933018505573273, 0.0028518198523670435, -0.01968955621123314, -0.04616016522049904, -0.007455070503056049, 0.041339900344610214, 0.03141342103481293, 0.031147899106144905, 0.005149615462869406, 0.004960685968399048, -0.05044938251376152, 0.0027905453462153673, -0.021650342270731926, -0.00548917893320322, -0.026225509122014046, 0.02038400247693062, -0.00331903831101954, 0.013899111188948154, 0.03402780368924141, 0.025469789281487465, 0.07189548015594482, 0.010028601624071598, -3.6760742659680545e-05, -0.02551063895225525, -0.012653195299208164, -0.033925678580999374, 0.0058976756408810616, -0.03560051694512367, 0.013153604231774807, 0.02154821716248989, -0.031638093292713165, 0.011601315811276436, -0.011243880726397038, 0.0021343969274312258, 0.012755319476127625, -0.030167505145072937, -0.02055761218070984, -0.00478452118113637, 0.03772469982504845, 0.03310868516564369, -0.06564547121524811, -0.02828841842710972, 0.04848859831690788, 0.06102945655584335, 0.06556377559900284, 0.03680558130145073, 0.014287183061242104, -0.05155232548713684, -0.0005897675873711705, 0.0005805125692859292, 0.02655230648815632, -0.005775126628577709, -0.02777779847383499, 0.019597643986344337, -0.010207319632172585, 0.01656455360352993, 0.019393395632505417, 0.01251022145152092, 0.0047206939198076725, -0.0651552751660347, 0.03272061049938202, -0.02689952962100506, -0.02618465945124626, 0.02058825083076954, 0.0047028218396008015, -0.00521344318985939, -0.01691177673637867, 0.025326816365122795, 0.0004563677648548037, 0.013817411847412586, 0.007659319322556257, -0.004769202787429094, -0.033026985824108124, 0.034068651497364044, 0.04195264354348183, 0.03464054688811302, -0.03562093898653984, 0.016380731016397476, -0.0006989128887653351, -0.013950173743069172, 0.002798204543069005, -0.01839257776737213, 0.0034186094999313354, 0.01348040159791708, 0.009553723968565464, -0.045506566762924194, -0.0032756354194134474, 0.02502044290304184, -0.023876650258898735, -0.0036228580866008997, -0.0424019917845726, -0.011049844324588776, 0.018413003534078598, 0.006918918341398239, -0.00035392437712289393, 0.004715587478131056, -0.025939561426639557, 0.035437118262052536, -0.007986117154359818, -0.03564136475324631, 0.024857044219970703, -0.003954761661589146, 0.0005578537238761783, -0.023958351463079453, 0.0493464395403862, 0.005708746146410704, 0.006571695674210787, -0.014389308169484138, -0.029289236292243004, 0.0014808017294853926, 0.012520433403551579, 0.033169958740472794, 0.021466517820954323, 0.026654431596398354, 0.015053115785121918, -0.03055557794868946, -0.024571096524596214, -0.04021653160452843, 0.002384601393714547, 0.03799022361636162, 0.03382355347275734, -0.04103352501988411, -0.011928113177418709, 0.033986952155828476, -0.00549428490921855, -0.033782705664634705, -0.020077629014849663, -0.0047334590926766396, -0.004276453051716089, 0.020659737288951874, -0.011652377434074879, 0.06523697823286057, 0.012316185049712658, 0.0335988812148571, -0.0013225091388449073, -0.038848068565130234, 0.0203023012727499, -0.011213243007659912, -0.0031403207685798407, 0.05747552961111069, -0.017269210889935493, -0.008889916352927685, 0.0013952726731076837, 0.00440155528485775, -0.02814544551074505, -0.026981228962540627, -0.032332539558410645, 0.05232846736907959, -0.008205683901906013, 0.004473042208701372, 0.001108686439692974, -0.0018892987864091992, 0.013817411847412586, 0.028942015022039413, -0.008374189026653767, 0.000971456989645958, -0.016789227724075317, -0.010539223439991474, 0.024632370099425316, 0.031433846801519394, 0.01233660988509655, 0.024489397183060646, -0.016993476077914238, -0.008609075099229813, 0.027879921719431877, -0.02924838662147522, 0.03737747669219971, 0.010232850909233093, 0.005200677551329136, -0.030964074656367302, -0.022834984585642815, 0.010835384018719196, 0.022303937003016472, 0.012867656536400318, -0.07483665645122528, 0.014736530371010303, -0.03006538189947605, 0.004825371317565441, -0.033639729022979736, 0.026736130937933922, -0.00046849503996782005, -0.006326597649604082, -0.06523697823286057, 0.009196288883686066, -0.004092629533261061, -0.017422398552298546, -0.05420755594968796, -0.0018663207301869988, -0.010105195455253124, -0.028533516451716423, 0.01441994495689869, -0.01482844166457653, 0.0011916623916476965, -0.011550253257155418, 0.006719775963574648, -0.02655230648815632, -0.05155232548713684, 0.008695880882441998, -0.032965708523988724, -0.004715587478131056, 0.04448532685637474, -0.05490199849009514, 0.016584979370236397, 0.0424019917845726, -0.020639311522245407, 0.03176064416766167, 0.039951007813215256, -0.020404426380991936, 0.022896258160471916, 0.007965692318975925, -0.018607039004564285, 0.003704557428136468, 0.025612764060497284, 0.02299838326871395, -0.016523703932762146, 0.011652377434074879, 0.02189544029533863, 0.021466517820954323, -0.054575201123952866, 0.03872551769018173, 0.01423612143844366, 0.029881557449698448, 0.037397902458906174, 0.013776562176644802, 0.026225509122014046, 0.02606211043894291, 0.002808416960760951, -0.029330085963010788, -0.006847431417554617, 0.006066180765628815, 0.026634005829691887, -0.06041670963168144, 0.009415856562554836, -0.04885624349117279, 0.02099674753844738, 0.04146244749426842, -0.018208755180239677, -0.016840290278196335, 0.009650742635130882, -0.009390325285494328, 0.004312196746468544, 0.04877454414963722, 0.003492649644613266, 0.006152986548841, 0.03639708459377289, -0.004978557582944632, -0.011131543666124344, 0.038909342139959335, 0.007567407563328743, 0.002859479282051325, 0.01337827742099762, 0.021221419796347618, 0.03190361708402634, 0.05191997066140175, 0.01824960485100746, -0.004901964217424393, -0.014583343639969826, -0.047589901834726334, -0.025102142244577408, -0.01975083164870739, 0.004304537549614906, -0.051879122853279114, -0.017075175419449806, -0.02600083500146866, -0.0407271534204483, -0.020884409546852112, 0.053268011659383774, 0.010896658524870872, -0.022426486015319824, 0.005458541680127382, -0.026041684672236443, -0.02591913565993309, 0.030044956132769585, -0.0061223492957651615, 0.029064564034342766, 0.005969162564724684, 0.002348857931792736, 0.005096000619232655, 0.024162599816918373, 0.009589468128979206, -0.002941178623586893, 0.03084152564406395, -0.023100506514310837, 0.0032935072667896748, 0.013511039316654205, -0.013592738658189774, -0.003329250728711486, 0.0049683451652526855, 0.019281059503555298, -0.0387459434568882, 0.0018790863687172532, 0.0036611545365303755, -0.014879504218697548, -0.00146803620737046, 0.005397267173975706, 0.0026194872334599495, 0.0033522287849336863, -0.012081299908459187, 0.007153803948312998, -0.040788426995277405, -0.012622558511793613, 0.0004199859977234155, 0.00040498649468645453, 0.00902267824858427, -0.015400337986648083, 0.0064695714972913265, 0.002900328952819109, 0.016554342582821846, 0.02050655148923397, 0.0034339281264692545, -0.057352982461452484, -0.010774108581244946, 0.035457540303468704, -0.014562918804585934, 0.02107844687998295, -0.05767977982759476, -0.03006538189947605, 0.017657283693552017, -0.003885827958583832, -0.03921571373939514, -0.024285148829221725, -0.022017989307641983, 0.018637677654623985, 0.003679026383906603, -0.02438727207481861, -0.02759397402405739, -0.018413003534078598, -0.0006752966437488794, -0.0038066816050559282, -0.01653391681611538, -0.001669731573201716, 0.02598041109740734, 0.008032072335481644, -0.027532698586583138, -0.030024532228708267, -0.003949655685573816, 0.018167905509471893, -0.006934237200766802, 0.02785949781537056, -0.023733677342534065, -0.050490234047174454, 0.006331704091280699, 0.005810870323330164, -0.004421980120241642, -0.04178924486041069, 0.005198124796152115, 0.025388089939951897, 0.005611727945506573, -0.026102960109710693, 0.012826806865632534, -0.002348857931792736, -0.0027956515550613403, -0.012224273756146431, 0.022753283381462097, 0.0021382265258580446, -0.025469789281487465, -0.03596816211938858, 0.003926677629351616, -0.018627464771270752, -0.003163298824802041, -0.014838654547929764, 0.02169119194149971, 0.08043306320905685, 0.008798005059361458, -0.03063727729022503, 0.024918317794799805, -0.008353764191269875, -0.007444858085364103, 0.010804746299982071, -0.0020578037947416306, -0.01202002540230751, 0.0005230676615610719, -0.011019207537174225, -0.011315367184579372, -0.015655647963285446, 0.010186894796788692, -0.028737764805555344, -0.02951391041278839, 0.03709153085947037, -0.014613981358706951, -0.0009191182907670736, -0.02600083500146866, 0.034681398421525955, -0.020976321771740913, -0.006076393183320761, 0.01116218138486147, -0.014920353889465332, 0.010146045126020908, 0.028921589255332947, -0.012040450237691402, -0.01510417740792036, -0.012949355877935886, 0.009043103083968163, 0.0006555100553669035, -0.019679343327879906, -0.0030637276358902454, -0.012254910543560982, 0.007695062551647425, 0.05024513229727745, -0.014859079383313656, -0.011713651940226555, -0.018770437687635422, -0.009114589542150497, 0.005591303110122681, 0.008098453283309937, -0.019628282636404037, -0.05371735990047455, 0.012918718159198761, 0.0022186494898051023, -0.0041309259831905365, -0.03944038599729538, 0.007853355258703232, -0.007112954277545214, 0.01243873406201601, -0.007000617682933807, -0.0029079881496727467, -0.01795344427227974, 0.011070269159972668, -0.010508585721254349, 0.01968955621123314, 0.01940360851585865, -0.030126655474305153, 0.026164233684539795, 0.023100506514310837, 0.025326816365122795, -0.03300656005740166, 0.00803717877715826, -0.010411567986011505, -0.008798005059361458, -0.025326816365122795, -0.017647070810198784, 0.010309443809092045, -0.021875016391277313, -0.007026148959994316, -0.0019607858266681433, 0.019475094974040985, 0.018024930730462074, -0.005221102386713028, -0.0033828660380095243, 0.023794950917363167, 0.007618469651788473, 0.013807199895381927, -0.015614799223840237, 0.005775126628577709, -0.030126655474305153, 0.0300041064620018, 0.010069451294839382, 0.014910141006112099, 0.015471824444830418, -0.005126637872308493, 0.021241845563054085, 0.0022505633533000946, -0.0256331879645586, 0.03664218261837959, -0.02771652303636074, 0.03319038450717926, -0.008118878118693829, -0.008226108737289906, -0.05947716534137726, -0.002849266864359379, -0.034191202372312546, 0.0088031105697155, -0.023304754868149757, 0.01423612143844366, -0.013623375445604324, 0.008767367340624332, 0.02757355011999607, 0.02549021504819393, 0.005448329262435436, -0.01385826151818037, 0.002724164631217718, -0.01957722008228302, 0.04097225144505501, 0.026634005829691887, 0.009849884547293186, 0.020057203248143196, -0.007664425298571587, 0.009671167470514774, 0.03417077660560608, -0.0300041064620018, -0.011019207537174225, 0.00030014957883395255, 0.021732041612267494, -0.032455090433359146, -0.010074557736515999, 0.018178118392825127, -0.009385218843817711, -0.04718140512704849, -0.042238593101501465, 0.006045755930244923, -0.011652377434074879, 0.051879122853279114, -0.02348857931792736, -0.03547796607017517, -0.003704557428136468, 0.021609492599964142, 0.028247568756341934, -0.019046174362301826, -0.02446897141635418, 0.0005125360912643373, 0.006229579448699951, -0.038705091923475266, -0.015012266114354134, 0.02896243892610073, 0.021997565403580666, 0.033639729022979736, 0.01746324822306633, -0.021241845563054085, 0.04497552290558815, 0.011887263506650925, 0.02113972045481205, -0.0024305572733283043, 0.032107867300510406, -0.03321080654859543, 0.01735091023147106, -0.013950173743069172, -0.0038398720789700747, -0.04816180095076561, 0.03588646277785301, 0.021323544904589653, 0.0064593590795993805, -0.0038245534524321556, 0.044035978615283966, 0.016952626407146454, 0.017064962536096573, -0.01452206913381815, -0.02093547210097313, 0.022549035027623177, -0.01022263802587986, -0.01732027344405651, 0.00427134707570076, 0.000830397882964462, -0.029473060742020607, 0.008940978907048702, -0.004064545501023531, 0.0003989228862337768, 0.02606211043894291, 0.013725499622523785, -0.02814544551074505, -0.00019196169159840792, -0.0032373389694839716, 0.03104577399790287, -0.0012140021426603198, 0.031985316425561905, 0.009916265495121479, -0.019475094974040985, 0.004184541292488575, -0.00526450527831912, 0.04297388717532158, 0.02502044290304184, -0.01258170884102583, 0.0299428328871727, 0.011427704244852066, 0.019393395632505417, -0.0026577836833894253, -0.003982846159487963, 0.03588646277785301, 0.041748397052288055, -0.0008329509873874485, 0.021997565403580666, 0.014450582675635815, 0.021303119137883186, -0.0050577037036418915, 0.0008316744351759553, -0.011529828421771526, 0.03937911242246628, -0.024101324379444122, -0.01164216548204422, 0.030964074656367302, -0.01184641383588314, -0.01789216883480549, 0.014440369792282581, -0.025183841586112976, 0.01728963665664196, 0.022263087332248688, -0.05559644475579262, -0.012663408182561398, -0.021609492599964142, -0.03388482704758644, 0.007546982727944851, 0.001411867793649435, 0.027471425011754036, -0.017422398552298546, -0.017943231388926506, 0.01737133599817753, 0.02959560975432396, 0.015890534967184067, -0.031719792634248734, 0.007929948158562183, 0.011060057207942009, 0.030718976631760597, 0.02530639059841633, 0.0012510220985859632, 0.018086206167936325, -0.012642983347177505, 0.012704257853329182, -0.010089876130223274, 0.04489382356405258, 0.023529428988695145, -0.01705475151538849, -0.024754919111728668, 0.040155258029699326, -0.012837018817663193, 0.00630617281422019, -0.00864481832832098, -0.056781087070703506, 0.0027113989926874638, 0.006295960396528244, -0.004039014223963022, 0.0421568937599659, -0.041830096393823624, 0.041544146835803986, 0.01792280748486519, -0.04056375473737717, -0.002726717619225383, -0.003896040376275778, 0.011458341963589191, 0.008787792176008224, 0.0193729717284441, -0.0038500844966620207, -0.01070262212306261, -0.008088241331279278, 0.018862349912524223, -0.003117342945188284, 0.029759008437395096, 0.05861932411789894, -0.0005929589387960732, 0.030392179265618324, -0.01549224928021431, -0.01527778897434473, 0.00881842989474535, 0.04489382356405258, 0.011591102927923203, 0.02722632698714733, 0.004347940441220999, 0.006862749811261892, -0.013398702256381512, 0.005759808234870434, -0.0024356634821742773, -0.0031301083508878946, -0.0003982846101280302, 0.00707210460677743, -0.037949372082948685, -0.022773709148168564, 0.0012293207691982388, 0.03686685487627983, -0.0512663759291172, 0.028635641559958458, -0.050000034272670746, 0.007996329106390476, 0.024571096524596214, 0.006147880107164383, 0.03449757397174835, 0.001695262617431581, 0.011999600566923618, 0.021466517820954323, -0.004922389052808285, 0.01842321641743183, 0.011407279409468174, 0.023529428988695145, -0.013255728408694267, -0.017565371468663216, 0.019158510491251945, 0.002736930036917329, -0.004690056666731834, 0.001452717580832541, 0.020894622430205345, 0.008593755774199963, 0.005228762049227953, 0.0006446593906730413, 0.02841096743941307, -0.04309643432497978, -0.007567407563328743, 0.002167587401345372, -0.018178118392825127, -0.021017171442508698, -0.0006644459208473563, 0.011979175731539726, -0.03182191774249077, -0.00951287429779768, -0.03525329381227493, 0.0020641866140067577, 0.01610499434173107, -0.0003344569413457066, -0.012367247603833675, 0.03529414162039757, 0.025449365377426147, 0.003987952135503292, -0.0032118079252541065, -0.01042688637971878, -0.05522879958152771, -0.0040313550271093845, -0.024652795866131783, 0.021527793258428574, -0.009277988225221634, -0.05232846736907959, -0.021507367491722107, -0.031086623668670654, 0.049305591732263565, 0.006893387529999018, -0.0005626408383250237, 0.0005948737962171435, 0.0016569660510867834, 0.014746742323040962, 0.03466097265481949, 0.05220592021942139, -0.0019212125334888697, 0.00750102661550045, 0.03476309776306152, 0.024203449487686157, 0.006653395481407642, -0.015257364138960838, 0.049591537564992905, 0.019495520740747452, 0.003416056279093027, -0.010186894796788692, -0.01254085823893547, 0.014613981358706951, 0.002405026229098439, -0.019035961478948593, -0.009385218843817711, 0.02487746812403202, -0.011008994653820992, -0.0007544429390691221, 0.023263905197381973, 0.03396652638912201, -0.03658090904355049, -0.020659737288951874, -0.029840707778930664, -0.013031055219471455, 0.0014488878659904003, -0.004899410996586084, 0.014174846932291985, 0.029901981353759766, 0.03492649644613266, 0.005785339046269655, 0.005912994500249624, 0.0035998800303786993, -0.0166768915951252, -0.00017377080803271383, -0.02530639059841633, 0.0051751467399299145, -0.011203031055629253, 0.0010429439134895802, 0.03206701576709747, -0.014736530371010303, -0.004856008570641279, 0.00087060930673033, -0.025326816365122795, -0.007383583579212427, 0.02800247073173523, -0.018760226666927338, -0.04901964217424393, -0.005657683592289686, -0.01472631748765707, 0.025326816365122795, 0.03729577735066414, -0.015216514468193054, -0.028799040243029594, 0.00490962341427803, 0.014460794627666473, 0.017269210889935493, -0.02771652303636074, 0.032189566642045975, 0.0016722846776247025, -0.004695162642747164, -0.008343551307916641, -0.0004822179616894573, 0.011427704244852066, -0.008103559724986553, 0.019097235053777695, -0.013511039316654205, -0.017013901844620705, -0.02522469125688076, 0.0015356935327872634, 0.0028211825992912054, -0.010814959183335304, -0.009385218843817711, 0.004054333083331585, 0.012326397933065891, 0.018545765429735184, 0.015226726420223713, 0.03819447010755539, -0.015655647963285446, 0.03484479710459709, -0.008496738038957119, 0.022222237661480904, 0.030678126960992813, 0.004026248585432768, 0.006285747978836298, -0.016237756237387657, -0.014481219463050365, 0.009226926602423191, 0.01940360851585865, 0.010355399921536446, 0.02777779847383499, 0.003354781772941351, 0.006827006582170725, -0.0386233925819397, 0.018750013783574104, 0.0021075892727822065, -0.015165451914072037, -0.025469789281487465, 0.014052297919988632, -0.008956297300755978, 0.021589068695902824, -0.0034900964237749577, -0.01998571678996086, 0.017790045589208603, -0.02209968864917755, -0.007531663868576288, 0.025245117023587227, -0.03202616795897484, 0.035661790519952774, -0.019618069753050804, 0.0014412285527214408, -0.01853555254638195, -0.006285747978836298, 0.018729588016867638, -0.021732041612267494, -0.005463647656142712, 0.006592120975255966, -0.010559648275375366, -0.013031055219471455, 0.009625211358070374, -0.02426472306251526, -0.013541676104068756, 0.060539260506629944, 0.011866838671267033, 0.0018178117461502552, 0.021323544904589653, 0.02847224287688732, 0.06756541132926941, -0.0003395631501916796, -0.004044120665639639, -0.007797187194228172, 0.012857443653047085, -0.002323326887562871, 0.010774108581244946, 0.022426486015319824, 0.029575183987617493, -0.032741036266088486, 0.0319240428507328, 0.0054227979853749275, -0.024979593232274055, 0.00903289020061493, -0.009221820160746574, 0.026776980608701706, 0.006183623801916838, -0.008083134889602661, -0.018933836370706558, 0.006229579448699951, -0.01213236153125763, -0.021670768037438393, 0.018515126779675484, 0.005039832089096308, 0.015829259529709816, 0.0022033308632671833, -0.002984581282362342, -0.01806578040122986, -0.0024382167030125856, -0.00904820952564478, -0.026572732254862785, 0.00044807017548009753, -0.004993875976651907, -0.01749388501048088, -0.000485728494822979, 0.0034594591706991196, 0.014072722755372524, -0.033986952155828476, -0.021732041612267494, -0.0023654531687498093, 0.007582725957036018, 0.04276963695883751, -0.02979985810816288, -0.01885213702917099, -0.021098870784044266, 0.02189544029533863, 0.022814558818936348, -0.02154821716248989, -0.0002216415450675413, -0.010855808854103088, 0.025531064718961716, -0.032128289341926575, -0.007312096655368805, 0.0406046025454998, 0.008195471949875355, -0.030576001852750778, -0.004935154691338539, 0.021997565403580666, 0.010845595970749855, 0.02189544029533863, -0.011182606220245361, -0.009165652096271515, 0.023590702563524246, -0.003477331018075347, 0.001376124331727624, 0.02279413491487503, -0.008282276801764965, 0.0036611545365303755, -0.03445672243833542, 0.010304337367415428, 0.027124201878905296, 0.004833030514419079, -0.029125837609171867, 0.0027650143019855022, -0.016615616157650948, -0.0020858878269791603, -0.009763078764081001, -0.010350293479859829, 0.005073022563010454, -0.004370918031781912, -0.0009172034915536642, -0.00815462227910757, 0.003571795765310526, 0.01441994495689869, -0.014123784378170967, 0.015257364138960838, 0.018351728096604347, -0.027879921719431877, -0.04399513080716133, 0.018954262137413025, 0.005749595817178488, 0.014665042981505394, -0.04509807005524635, -0.026082534343004227, 0.0037428541108965874, 0.017044538632035255, -0.04938729107379913, -0.02618465945124626, 0.0071486979722976685, -0.012632770463824272, -0.01618669554591179, 0.0023309860844165087, -0.001194215496070683, 0.004914729855954647, 0.014358670450747013, 0.018351728096604347, -0.016891352832317352, -5.178018909646198e-05, -0.015655647963285446, 0.004279006272554398, -0.012244698591530323, 0.0038475312758237123, -0.011151968501508236, -0.021732041612267494, 0.0024228980764746666, -0.0030101125594228506, -0.0026450182776898146, -0.000986775616183877, -0.03602943941950798, -0.019832530990242958, -0.021180570125579834, -0.04260623827576637, -0.03604986146092415, 0.005004088394343853, -0.018964475020766258, -0.015042902901768684, -0.03525329381227493, -0.02273285947740078, 0.015145027078688145, -0.013643800280988216, -0.010539223439991474, -0.00918097048997879, -0.012724682688713074, 0.028778616338968277, -0.057965729385614395, -0.017881957814097404, 0.012704257853329182, 0.047508202493190765, 0.002742036245763302, -0.014317820779979229, 0.033639729022979736, 0.01310254167765379, 0.00890523474663496, 0.008292489685118198, 0.013082116842269897, 0.03035132959485054, -0.03312910720705986, -0.017851319164037704, -0.007802293170243502, 0.015053115785121918, 0.0020616333931684494, -0.01052901055663824, -0.03251636400818825, -0.022569460794329643, 0.014011448249220848, 0.025183841586112976, -0.00020791860879398882, -0.02377452701330185, -0.004707928281277418, 0.008517162874341011, 0.019413821399211884, -0.030739400535821915, -0.012837018817663193, 0.028186295181512833, 0.003538605524227023, -0.024101324379444122, -0.013939960859715939, 0.010866020806133747, -0.002551829908043146, 0.0011814499739557505, -0.013500826433300972, 0.028982864692807198, 0.0038092348258942366, 0.008660136722028255, 0.0038654031231999397, 0.014113572426140308, -0.011601315811276436, 0.0114379171282053, 0.031495120376348495, 0.005555559415370226, 0.023937925696372986, -0.008231215178966522, -0.005453435238450766, -0.030616851523518562, 0.04448532685637474, 0.0011967686004936695, -0.02177289128303528, -0.03339463099837303, -0.009870309382677078, -0.013255728408694267, -0.02986113168299198, 0.0065768021158874035, 0.02528596669435501, 0.008986935019493103, 0.028308844193816185, -0.015849685296416283, -0.023243481293320656, 0.08464058488607407, -0.03541669249534607, -0.015318638645112514, -0.020700586959719658, 0.016023295000195503, -0.026286782696843147, 0.004953026305884123, 0.0015803729183971882, -0.009017571806907654, -0.02890116535127163, 0.03764300048351288, -0.00663297064602375, -0.011356216855347157, 0.008496738038957119, -0.026511456817388535, -0.008609075099229813, -0.017504097893834114, -0.009089059196412563, -0.014848866499960423, -0.007439752109348774, 0.02861521579325199, 0.020955897867679596, 0.014379095286130905, 0.012724682688713074, -0.013122966513037682, 0.005713852122426033, 0.015430974774062634, 0.015972234308719635, 0.025653613731265068, -0.035804763436317444, -0.027410149574279785, -0.017187511548399925, 0.0150020532310009, -0.007480601780116558, 0.02585786208510399, -0.0038654031231999397, -0.011836200952529907, 0.029003288596868515, -0.01879086345434189, 0.016115207225084305, 0.02320263162255287, -0.003566689556464553, -0.014613981358706951, -0.005228762049227953, 0.0026807617396116257, 0.040379930287599564, -0.02107844687998295, 0.017851319164037704, -0.03774512559175491, 0.004432192537933588, 0.02502044290304184, -0.014266758225858212, -0.04178924486041069, -0.03747960180044174, -0.051593173295259476, 0.011499191634356976, 0.006321491673588753, 0.010467736050486565, -0.0030279841739684343, -0.04338238388299942, 0.02655230648815632, -0.025592338293790817, 0.0041411384008824825, -0.001163578242994845, -0.0023156674578785896], [0.022587591782212257, 0.025744309648871422, 0.011571074835956097, 0.01429054420441389, 0.013298737816512585, 0.02376069687306881, -0.004031213466078043, 0.023739367723464966, 0.02167043648660183, 0.02220366708934307, 0.040952008217573166, 0.011027181521058083, -0.005060345865786076, -0.023952659219503403, -0.007822473533451557, 0.058058001101017, 0.02254493348300457, 0.006057484541088343, -0.0039059044793248177, 0.019985433667898178, 0.031033942475914955, 0.015229027718305588, -0.025061774998903275, -0.004457796458154917, 0.008696969598531723, -0.03303888440132141, -0.04897177591919899, -0.029882168397307396, 0.028559759259223938, -0.048075951635837555, 0.019964104518294334, -0.029924826696515083, 0.05929509550333023, -0.027109375223517418, 0.016690075397491455, 0.008771621622145176, 0.0337640754878521, -0.03606762737035751, 0.03158850222826004, -0.02422993816435337, -0.02757861837744713, -0.037112757563591, 0.004321823362261057, 0.03715541586279869, 0.0307140052318573, 0.0651392862200737, -0.03728339076042175, -0.008334373123943806, -0.0006778676761314273, 0.024144621565937996, 0.004028547089546919, -0.011827024631202221, 0.020902587100863457, 0.011859019286930561, -0.00019079609774053097, -0.03389205038547516, 0.039608269929885864, -0.025658993050456047, -0.012221614830195904, -0.033636100590229034, -0.013181427493691444, 0.039970867335796356, 0.024763166904449463, 0.007283911574631929, -0.00831837672740221, 0.01326674409210682, -0.05234178528189659, 0.031332552433013916, -0.029370268806815147, 0.006766679231077433, 0.0016983351670205593, -0.006153465714305639, 0.0010158017976209521, -0.002564832800999284, 0.02642684243619442, 0.02885836735367775, -0.015452983789145947, 0.07226323336362839, 0.003927233628928661, 0.01089920662343502, -0.07682767510414124, 0.05204317718744278, -0.0057375468313694, -0.013533358462154865, 0.013437377288937569, 0.012296266853809357, -0.006313434336334467, 0.0028874364215880632, 0.02224632538855076, -0.0546879917383194, -0.017521914094686508, -0.006212120875716209, 0.009411496110260487, 0.04543113335967064, -0.004529782570898533, 0.012989465147256851, -0.0270027294754982, -0.02112654410302639, -0.005582910496741533, 0.05579711124300957, -0.03128989413380623, 0.00830237939953804, -0.04022681713104248, -0.04982494190335274, 0.006116139702498913, 0.02919963374733925, -0.05174456909298897, -0.030905967578291893, -0.00835570227354765, -0.01964416541159153, -0.014674469828605652, 0.005460267886519432, 0.06390219181776047, 0.026810767129063606, 0.034915853291749954, -0.005950838793069124, 0.017703210934996605, -0.05217115208506584, 0.010627259500324726, -0.029540902003645897, -0.00495369965210557, 0.014941084198653698, 0.02190505899488926, -0.05106203258037567, 0.017372610047459602, 0.01593288965523243, 0.003394004190340638, 0.03365743160247803, 0.011923006735742092, -0.03890440613031387, 0.023910000920295715, 0.019665494561195374, 0.07537728548049927, -0.06223851814866066, -0.04568708315491676, 0.03685680776834488, -0.040952008217573166, -0.02065730094909668, -0.007955780252814293, 0.024443229660391808, -0.006212120875716209, -0.011059175245463848, -0.0270027294754982, 0.014610481448471546, -0.05912446230649948, -0.00025311726494692266, -0.03600364178419113, -0.016786057502031326, 0.023270124569535255, -0.004497788846492767, 0.017831185832619667, 0.02521107904613018, -0.04508986696600914, -0.02359006181359291, 0.008382364176213741, 0.0015876900870352983, -0.014333202503621578, -0.00430316012352705, 0.03766731545329094, 0.013170762918889523, -0.017052672803401947, 0.027152033522725105, 0.022097021341323853, 0.028005201369524002, 0.021819742396473885, 0.008078423328697681, 0.007870463654398918, -0.03101261332631111, -0.022118350490927696, 0.02159578539431095, -0.05187254399061203, -0.022587591782212257, -0.03726205974817276, -0.0313752107322216, -0.05315229296684265, -0.018545713275671005, -0.006164130289107561, 0.013959942385554314, -0.014151904731988907, -0.0012857490219175816, 0.01248822920024395, 0.054090775549411774, -0.03918168693780899, -0.0042711663991212845, 0.0012297600042074919, -0.004079204052686691, -0.014365196228027344, -0.008904928341507912, -0.014322537928819656, -0.01718064770102501, -0.018513720482587814, -0.004449798259884119, -0.046625565737485886, -0.01590089686214924, 0.011805695481598377, 0.019761476665735245, -0.04462062567472458, -0.02770659327507019, -0.020945245400071144, -0.060873452574014664, 0.010008713230490685, -0.02045467495918274, 0.019025620073080063, -0.0007245252490974963, -0.04393809288740158, 0.02410196326673031, -0.0032793600112199783, 0.007177265826612711, 0.06509663164615631, 0.0005415609921328723, 0.0062761083245277405, 0.029540902003645897, -0.0011051176115870476, 0.03587566316127777, 0.019622836261987686, -0.00143438670784235, 0.037816617637872696, 0.04306359589099884, 0.053578875958919525, 0.004908375442028046, -0.021617114543914795, -0.0026461503002792597, 0.04457796737551689, -0.040013525635004044, -0.04432201758027077, -0.022161008790135384, 0.0006482067983597517, -0.0786619782447815, -0.025083104148507118, -0.06970372796058655, -0.04174118861556053, 0.04688151553273201, 0.01785251498222351, -0.08019768446683884, -0.006740017794072628, -0.016754062846302986, -0.03935232013463974, -0.018716346472501755, -0.03163116052746773, 0.006649368908256292, -0.008009103126823902, 0.023867342621088028, -0.008547665551304817, -0.10357445478439331, -0.01272284984588623, -0.002256892854347825, 0.02410196326673031, -0.04159188270568848, 0.019196253269910812, -0.000699863419868052, 0.021883729845285416, 0.022118350490927696, 0.0455591082572937, -0.05127532780170441, -0.0038152553606778383, -0.025104433298110962, -0.01849239133298397, -0.039714913815259933, -0.024891141802072525, -0.009267524816095829, -0.006260111462324858, -0.06253712624311447, 0.004895044490695, -0.02757861837744713, -0.014621146023273468, 0.0024941798765212297, -0.02591494284570217, -0.02568032220005989, -0.01964416541159153, 0.02821849286556244, -0.0046257637441158295, -0.012274937704205513, -0.008915592916309834, -0.05055013298988342, -0.09308049827814102, -0.0025848287623375654, 0.02004942111670971, -0.025061774998903275, 0.03988555073738098, -0.024933800101280212, -0.041997138410806656, -0.076955646276474, -0.010456626303493977, -0.04671088233590126, 0.017873844131827354, -0.01640213280916214, 0.04174118861556053, 0.010024710558354855, -0.03250565752387047, -0.007294576149433851, 0.0357690192759037, -0.041634541004896164, 0.02862374670803547, -0.029583560302853584, 0.009411496110260487, 0.028303809463977814, 0.01950552687048912, -0.009678111411631107, 0.011891013011336327, 0.007865131832659245, 0.025424370542168617, 0.03357211500406265, -0.017191311344504356, -0.007497203536331654, -0.03649421036243439, 0.027194691821932793, 0.012477564625442028, -0.022800883278250694, -0.00814774353057146, -0.039970867335796356, 0.05588242784142494, -0.024251267313957214, -0.03436129540205002, -0.01080322451889515, 0.022054363042116165, 0.004313824698328972, -0.03756066784262657, 0.034979838877916336, 0.022502275183796883, -0.018097801133990288, -0.010973858647048473, 0.014322537928819656, -0.025765638798475266, -0.019729482010006905, -0.019153594970703125, -0.00801443587988615, -0.037070099264383316, 0.022971516475081444, -0.03962959721684456, 0.0039059044793248177, -0.009139549918472767, 0.012157627381384373, -0.003660618793219328, -0.030116789042949677, 0.0273439958691597, -0.002006275113672018, -0.03446793928742409, 0.033294834196567535, 0.038392506539821625, -0.015090388245880604, 0.027727922424674034, 0.003993886988610029, -0.015559629537165165, 0.011112498119473457, 0.04389543458819389, 0.006654701195657253, 0.03975757583975792, 0.03800858184695244, 0.014098581857979298, 0.024677850306034088, 0.010600597597658634, 0.01958017796278, -0.022566262632608414, 0.019889451563358307, -0.02636285498738289, -0.026000259444117546, 0.022459616884589195, -0.03320951759815216, -0.010787228122353554, 0.01808713749051094, 0.012456235475838184, -0.018001820892095566, 0.0015290349256247282, 0.015420990064740181, -0.03210040181875229, -0.023398099467158318, -0.018854986876249313, 0.03197242692112923, 0.012637533247470856, -0.003359344322234392, 0.05285368487238884, -0.020742617547512054, -0.02608557604253292, -0.007833138108253479, 0.04867316782474518, -0.008051762357354164, 0.013522693887352943, 0.0026381518691778183, 0.02730133756995201, 0.01606086455285549, 0.01811913028359413, 0.0583992674946785, -0.04764936864376068, -0.008425022475421429, -0.012104304507374763, 0.007806476205587387, -0.014023929834365845, 0.019260240718722343, -0.0037246064748615026, -0.0031620494555681944, -0.007598516996949911, -0.031204575672745705, 0.0029514238703995943, 0.0017236636485904455, -0.00741721922531724, 0.033870723098516464, 0.014994407072663307, 0.035150472074747086, 0.0123175960034132, -0.0411866270005703, -0.00585485715419054, -0.05119001120328903, 0.03489452227950096, -0.018001820892095566, -0.022288983687758446, -0.00814774353057146, 0.006425412837415934, 0.018993627279996872, -0.003988554701209068, 0.00020429346477612853, 0.06757081300020218, 0.02139315754175186, 0.014610481448471546, 0.06257978826761246, 0.015431654639542103, -0.01225360855460167, -0.0014103914145380259, -0.008542332798242569, -0.022758224979043007, -0.023227466270327568, 0.08343971520662308, 0.026341525837779045, 0.021883729845285416, 0.03790193796157837, -0.029178304597735405, -0.00394056411460042, 0.032484326511621475, -0.005993497092276812, -0.01152841653674841, -0.03696345165371895, -0.044833917170763016, 0.011165820993483067, 0.009528807364404202, 0.07371361553668976, -0.03852048143744469, 0.018385745584964752, -0.030692676082253456, 0.0168713741004467, 0.018748341128230095, -0.01530367974191904, -0.03649421036243439, 0.020817270502448082, 0.024549875408411026, -0.01280816737562418, -0.03359344229102135, 0.02450721710920334, -0.06590713560581207, 0.021371828392148018, 0.018140459433197975, 0.050166208297014236, 0.01984679326415062, 0.013234750367701054, -0.04769202694296837, -0.0253177247941494, 0.0014917089138180017, -0.00814774353057146, -0.005340291187167168, -0.007673169020563364, 0.010733905248343945, 0.019153594970703125, -0.01243490632623434, 0.02112654410302639, 0.030223434790968895, 0.007449212949723005, -0.030458055436611176, 0.01225360855460167, 0.04376745969057083, -0.04688151553273201, -0.004833723418414593, 0.025658993050456047, -0.002512842882424593, -0.003703277325257659, 0.03088463842868805, 0.015548964962363243, -8.06925818324089e-05, 0.0175539068877697, -0.007577187847346067, -0.05140330269932747, -0.00249684602022171, 0.0006002162117511034, 0.0015890231588855386, 0.0485878512263298, -0.08787618577480316, -0.07832071185112, 0.02203303389251232, 0.014994407072663307, 0.03412667289376259, -0.018044479191303253, -0.04991025850176811, -0.020465338602662086, 0.008734295144677162, -0.0037006111815571785, 0.02301417477428913, -0.006878657732158899, -0.009795421734452248, 0.028965013101696968, -0.02220366708934307, -0.06257978826761246, 0.025637663900852203, 0.013682662509381771, -0.013458706438541412, -0.05396280065178871, -0.038861747831106186, -0.0037406033370643854, 0.007769150193780661, -0.03020210564136505, -0.009320847690105438, -0.002308882772922516, -0.006164130289107561, 0.0017716542351990938, 0.0027567953802645206, 0.020444009453058243, -0.014418519102036953, -0.0003522645856719464, -0.023547403514385223, -0.03350812569260597, -0.024955129250884056, 0.04427935928106308, -0.03901105374097824, 0.011688385158777237, 0.006622707471251488, -0.019526856020092964, -0.018705682829022408, 0.006740017794072628, -0.013256079517304897, 0.03962959721684456, -0.008238391950726509, -0.032313693314790726, -0.02457120455801487, 0.0053429570980370045, 0.023248795419931412, -0.05246976017951965, -0.011048510670661926, -0.04003485292196274, 0.04991025850176811, -0.00021795746579300612, -0.014333202503621578, 0.016679411754012108, -0.018183117732405663, -0.004756405018270016, -0.005534919910132885, 0.01782052218914032, 0.05037949979305267, 0.0011857686331495643, -0.008393028751015663, -0.01034464780241251, 0.009075562469661236, 0.02659747563302517, 0.02051866240799427, -0.005886850878596306, -0.002678144024685025, 0.011005852371454239, 0.016562100499868393, -0.0043351538479328156, 0.011560410261154175, 0.03802991285920143, 0.01633814536035061, -0.0428503043949604, -0.017393939197063446, -0.004481791984289885, 0.0009244862594641745, 0.024315254762768745, -0.0028314474038779736, -0.011293795891106129, 0.00233287806622684, 0.06326232105493546, -0.03267629072070122, -0.017191311344504356, 0.007726491894572973, -0.02491247095167637, 0.006468071136623621, 0.004553778097033501, -0.03536376357078552, 0.022566262632608414, 0.008744959719479084, 0.03790193796157837, 0.03152451291680336, -0.01775653474032879, 0.016274157911539078, 0.047905318439006805, 0.03148185461759567, 0.04076004400849342, -0.03871244564652443, -0.0027381323743611574, -0.017361944541335106, -0.00855299737304449, -0.02115853689610958, -0.0041191959753632545, -0.0502941831946373, 0.03372141718864441, -0.06663233041763306, -0.010920535773038864, -0.020412016659975052, 0.012477564625442028, 0.008265053853392601, 0.037645984441041946, -0.0036019636318087578, -0.0017983156722038984, 0.006798672955483198, -0.021926388144493103, 0.03431863710284233, -0.010083365254104137, 1.0607304830045905e-05, 0.046625565737485886, 0.02433658391237259, 0.002482182113453746, 0.0008991578361019492, -0.005084340926259756, 0.032718949019908905, -0.0065693845972418785, 0.010136688128113747, -0.040248144418001175, -0.05929509550333023, -0.04560176655650139, 0.005812198854982853, 0.0029247624333947897, -0.023910000920295715, -0.004172518849372864, -0.023376770317554474, -0.01666874624788761, -0.02821849286556244, 0.04931304231286049, -0.007422551512718201, -0.007027961779385805, -0.014813109301030636, 0.02034802921116352, 0.0027567953802645206, 0.014066588133573532, -0.07068487256765366, -0.0042844973504543304, -0.002938093151897192, -0.05221381038427353, -0.0131600983440876, -0.03421198949217796, 0.00029194302624091506, -0.0008538333349861205, -0.03169514611363411, 0.019494861364364624, 0.004535114858299494, 0.023568732663989067, -0.012125633656978607, 0.009651449508965015, 0.01785251498222351, -0.011933671310544014, 0.04327688738703728, -0.005614904221147299, -0.019345557317137718, 0.022352971136569977, 0.0459003746509552, 0.027493301779031754, 0.018012484535574913, 0.010520613752305508, -0.013000129722058773, -0.00496969697996974, 0.03372141718864441, -0.005452269222587347, 0.002244895091280341, 0.05724749341607094, 0.0008871601894497871, 0.007305240724235773, -0.020401351153850555, 0.04221042990684509, 0.0019636168144643307, -0.02203303389251232, 0.024123292416334152, 0.052256468683481216, 0.03732604905962944, 0.032185718417167664, 0.014546493999660015, -0.015271686017513275, -0.011827024631202221, -0.0015210364945232868, -0.013394718989729881, -0.04526050016283989, 0.015367667190730572, -0.055199895054101944, -0.027621276676654816, 0.0029514238703995943, 0.028431784361600876, -0.026981400325894356, 0.01710599474608898, -0.031503185629844666, -0.002770126098766923, 0.027386654168367386, -0.008110417053103447, -0.029604889452457428, -0.0032153725624084473, -0.008744959719479084, -0.026341525837779045, -0.007545194122940302, -0.001795649528503418, -0.007166601251810789, 0.00598283251747489, -0.041293274611234665, 0.0435328371822834, 0.012296266853809357, 0.002588828094303608, 0.00801443587988615, -0.009118220768868923, -0.008217062801122665, -0.027450643479824066, -0.027429312467575073, -0.016583429649472237, -0.010248666629195213, -0.0462416410446167, -0.0381365567445755, -0.055370528250932693, 0.023163478821516037, 0.06654701381921768, -0.012221614830195904, -0.025509687140583992, 0.008931590244174004, -0.04018415883183479, -0.0163701381534338, 0.005812198854982853, -0.01751124858856201, -0.00239153322763741, -0.014546493999660015, 0.03841383755207062, 0.00980608630925417, 0.0035593053326010704, -0.007182598114013672, -0.020966574549674988, 0.030692676082253456, -0.018343087285757065, 0.029455585405230522, 0.019665494561195374, 0.012008323334157467, 0.0035992974881082773, -0.01039797067642212, -0.014098581857979298, -0.010115358978509903, 0.014930419623851776, 0.017937831580638885, -0.008521003648638725, -0.0114750936627388, -0.012872154824435711, 0.016050200909376144, -0.02393133006989956, -0.02777058072388172, 0.004711080342531204, -0.006542723160237074, 0.02757861837744713, -0.016892703250050545, -0.0063454280607402325, -0.022630250081419945, -0.00961945578455925, 0.005732214543968439, 0.06437143683433533, 0.010312654078006744, 0.0313965380191803, 0.004319156985729933, -0.03561971336603165, 0.019484197720885277, 0.04739341884851456, -0.009800753556191921, 0.0023875341285020113, -0.022502275183796883, -0.01585823856294155, -0.0033086875919252634, -0.032207049429416656, 0.04709480702877045, 0.0034953178837895393, 0.026704121381044388, -0.008259721100330353, -0.03122590482234955, -0.025701651349663734, -0.015410325489938259, 0.0061587980017066, -0.026234880089759827, -0.007806476205587387, 0.011272466741502285, 0.010163350030779839, -0.01660475879907608, -0.009496813639998436, -0.02851710096001625, 0.01573026366531849, 0.004604434594511986, -0.004004551563411951, -0.008899596519768238, 0.022182337939739227, -0.05477330833673477, -0.03361477330327034, -0.02184107154607773, -0.006585381459444761, 0.01124047301709652, -0.031844452023506165, 0.008174404501914978, 0.000603548891376704, -0.03065001778304577, 0.013959942385554314, -0.036536868661642075, -0.022459616884589195, -0.014610481448471546, -0.0030074131209403276, 0.03802991285920143, 0.01483443845063448, -0.03852048143744469, -0.024955129250884056, -0.0044044735841453075, -0.01593288965523243, -0.0075078681111335754, -0.010653920471668243, -0.01399193610996008, 0.048246584832668304, 0.012701520696282387, -0.015538300387561321, 0.0005165658658370376, 0.001633014646358788, 0.005828195717185736, 0.004884379915893078, -0.012957471422851086, -0.022395629435777664, -0.013106775470077991, 0.05933775380253792, -0.049696967005729675, 0.01731928624212742, 0.04180517420172691, -0.015676939859986305, -0.023675380274653435, -0.015719598159193993, -0.021862400695681572, 0.02011340856552124, -0.02602158859372139, 0.0007078618509694934, -0.008334373123943806, 0.019281569868326187, -0.01547431293874979, -0.006382754072546959, 0.017020678147673607, -0.029988814145326614, 0.01910027302801609, -0.04263701289892197, 0.009555468335747719, -0.0002774458553176373, -0.033700089901685715, -0.015143711119890213, -0.02153179794549942, -0.03807257115840912, -0.042743656784296036, 0.023376770317554474, -0.020667966455221176, -0.026277538388967514, -0.008595655672252178, 0.041997138410806656, 0.002030270406976342, 0.010984523221850395, 0.0004315824480727315, -0.035491738468408585, 0.021830406039953232, 0.014013265259563923, -0.02781323902308941, -0.037518009543418884, 0.039608269929885864, -0.019654830917716026, 0.007609181571751833, -0.01772454008460045, 0.0037992584984749556, -0.0323990099132061, -0.014770451001822948, -0.027919884771108627, 0.038797762244939804, 0.011315125040709972, -0.023611390963196754, 0.03276160731911659, 0.0012910813093185425, -0.014013265259563923, -0.004220509435981512, -0.013373389840126038, -0.010669917799532413, 0.025083104148507118, -0.004903043154627085, 0.015325008891522884, -0.0032580308616161346, -0.037645984441041946, 0.02764260582625866, 0.012786838226020336, -0.002471517538651824, 0.03291090950369835, -0.010691246949136257, 0.017532577738165855, 0.015506306663155556, 0.01417323388159275, 0.03834984824061394, -0.005897515453398228, -0.004796397406607866, 0.02237430028617382, 0.041527893394231796, 0.00694264518097043, 0.0047670695930719376, 0.019996097311377525, -0.020092079415917397, 0.010941864922642708, -0.015975547954440117, 0.008073091506958008, 0.02440057136118412, -0.045815058052539825, 0.03916035592556, 0.026128234341740608, 0.008323708549141884, -0.05554116144776344, -0.033700089901685715, 0.010019377805292606, 0.020465338602662086, -0.005153660662472248, -0.019430873915553093, 0.031097929924726486, 0.037645984441041946, 0.038051240146160126, 0.04203979671001434, 0.0698743611574173, -0.008931590244174004, -0.017916502431035042, 0.007929119281470776, 0.030095459893345833, 0.05055013298988342, 0.014738457277417183, -0.0031620494555681944, 0.0381365567445755, -0.012936142273247242, 0.018481725826859474, 0.01727662794291973, -0.013927948661148548, 0.03817921504378319, -0.001510371919721365, -0.047734685242176056, 0.005534919910132885, 0.0009991383412852883, -0.0010311320656910539, -0.036600857973098755, -0.041293274611234665, -0.01978280581533909, -0.0106325913220644, 0.02659747563302517, -0.0034339965786784887, -0.0009251527953892946, -0.025573676452040672, 0.012232279404997826, 0.023803355172276497, -0.012264273129403591, -0.006281440611928701, 0.05656496062874794, 0.04327688738703728, -0.03623826056718826, 0.035960979759693146, 0.0014890427701175213, -0.014567823149263859, 0.015538300387561321, 0.009843411855399609, -0.05191520228981972, 0.022523604333400726, 0.02990349754691124, 0.022822212427854538, 0.03421198949217796, -0.0024981792084872723, -0.0273439958691597, 0.03916035592556, -0.002482182113453746, -0.008286383002996445, -0.0015463648596778512, 0.007737156469374895, 0.0016063532093539834, 0.008030432276427746, 0.005068344064056873, 0.02915697544813156, 0.020294705405831337, -0.017393939197063446, 0.008393028751015663, -0.006782676093280315, -0.021115878596901894, -0.00788112822920084, 0.03444661200046539, -0.011688385158777237, -0.0036286250688135624, 0.04491923376917839, -0.015708934515714645, -0.002216900698840618, -0.019718818366527557, 0.03431863710284233, 0.009779424406588078, 0.015378331765532494, 0.00010397970618214458, 0.0045644426718354225, 0.0455591082572937, -0.022288983687758446, 0.01338405441492796, 0.02045467495918274, 0.01333073154091835, 0.02382468432188034, 0.006782676093280315, 0.025872284546494484, 0.01964416541159153, 0.012957471422851086, -0.006670698057860136, 0.006089478265494108, 0.02017739601433277, 0.005334958899766207, 0.002091591712087393, 0.004452464170753956, 0.009662114083766937, -0.012594874948263168, 0.022182337939739227, 0.000457577349152416, -0.006878657732158899, 0.01691403239965439, 0.03188711032271385, 0.04641227424144745, -0.019516190513968468, 0.004711080342531204, 0.02787722647190094, 0.028709063306450844, -0.030799321830272675, -0.039373647421598434, -0.0018103133188560605, -0.019921446219086647, -0.008537000976502895, 0.010365976952016354, -0.02486981265246868, -0.05136064440011978, 0.029690206050872803, -0.026746779680252075, 0.031076600775122643, -0.007609181571751833, 0.025253737345337868, -0.008974248543381691, 0.009299518540501595, 0.019804134964942932, 0.00027361325919628143, 0.03739003464579582, -0.0033673427533358335, 0.004697749856859446, 0.017521914094686508, -0.034105345606803894, 0.017905838787555695, -0.005364286247640848, 0.01674339920282364, 0.016359474509954453, -0.020667966455221176, 0.02004942111670971, 0.018812328577041626, 0.005068344064056873, 0.005334958899766207, -0.0024915137328207493, 0.04884380102157593, 0.02271556667983532, -0.007086616940796375, -0.0026261541061103344, 0.006052152253687382, -0.010253998450934887, -0.01872701197862625, 0.0059081800282001495, 0.004047210328280926, -0.011133827269077301, 0.032654959708452225, 0.012733514420688152, -0.005332292523235083, 0.011261802166700363, -0.013746650889515877, 0.04259435459971428, 0.022736895829439163, -0.011944335885345936, 0.02399531751871109, 0.010915203019976616, -0.022672908380627632, 0.03875510394573212, -0.027962543070316315, 0.008600988425314426, 0.04457796737551689, -0.01297880057245493, 0.030415397137403488, -0.010536610148847103, 0.02561633475124836, 0.026000259444117546, 0.00926219206303358, 0.0017623227322474122, 0.010131356306374073, -0.016252828761935234, 0.012946806848049164, -0.015037065371870995, 0.031439196318387985, -0.007582520134747028, -0.00504701491445303, -0.003649954218417406, -0.012018987908959389, -0.049057092517614365, -0.024933800101280212, 0.023248795419931412, 0.002443523146212101, 0.011805695481598377, 0.005025685764849186, -0.004167186561971903, 0.0050576794892549515, 0.013810638338327408, 0.024272596463561058, 0.008153075352311134, -0.011347118765115738, 0.0015716932248324156, -0.02153179794549942, -0.0432128980755806, -0.0064360774122178555, 0.012669526971876621, 0.022267654538154602, 0.008009103126823902, -0.07239120453596115, 0.029135646298527718, -0.013394718989729881, -0.017063336446881294, -0.005454935599118471, 0.019548185169696808, 0.022416958585381508, -0.006164130289107561, 0.0036072959192097187, 0.015580958686769009, -0.019420210272073746, -0.004967030603438616, -0.00254350365139544, -0.005007022991776466, 0.00011831024312414229, -0.022822212427854538, 0.049398358911275864, -0.013970606960356236, 0.018033813685178757, -0.011784366331994534, 0.011976329609751701, 0.0036339573562145233, -0.005310963373631239, -0.009230198338627815, 0.05046481639146805, 0.008862270042300224, -0.0031113927252590656, -6.9101097324164584e-06, 0.0025115099269896746, 0.01506905909627676, -0.031609829515218735, -0.009747430682182312, -0.018076471984386444, 0.018247105181217194, -0.0303727388381958, -0.007886460982263088, 0.016476783901453018, 0.01095252949744463, 0.022054363042116165, -0.03222837671637535, -0.03933098912239075, -0.01593288965523243, 0.012274937704205513, 0.01220028568059206, 0.04329821467399597, -0.016476783901453018, 0.020763946697115898, 0.003074066713452339, 0.0049190400168299675, -0.015943555161356926, 0.006260111462324858, 0.04003485292196274, 0.02706671692430973, -0.0039778901264071465, -0.024549875408411026, 0.01039797067642212, 0.060532186180353165, -0.014482506550848484, 0.009134217165410519, 0.0019382883328944445, 0.015943555161356926, -0.015751592814922333, -0.022502275183796883, 0.006441409699618816, 0.04231707379221916, -0.013405383564531803, -0.005940174218267202, -0.016444791108369827, -0.006350760348141193, -0.04069605842232704, -0.0027088045608252287, 0.0469241738319397, -0.009102223441004753, -0.004737742245197296, 0.02943425625562668, -0.0026808101683855057, 0.027109375223517418, 0.022182337939739227, -0.023035503923892975, -0.0485878512263298, 0.03391338139772415, -0.011347118765115738, -0.017116660252213478, 0.01382130291312933, 0.014599816873669624, -0.036536868661642075, -0.007609181571751833, 0.006782676093280315, -0.007049290928989649, 0.040717385709285736, 0.0077744824811816216, -0.023099491372704506, -0.031268563121557236, -0.011891013011336327, 0.016327479854226112, -0.007390557788312435, -0.012733514420688152, -0.015399660915136337, 0.010179346427321434, 0.004191182088106871, -0.009240862913429737, -0.012189621105790138, 0.020699959248304367, -0.035086486488580704, -0.003631291212514043, 0.012072310782968998, 0.004001885652542114, 0.036430224776268005, 0.028261151164770126, 0.006596046034246683, 0.014333202503621578, -0.029711535200476646, 0.03088463842868805, 0.0177138764411211, 0.011325789615511894, 0.019356222823262215, -0.03227103501558304, 0.02979685179889202, -0.028239822015166283, 0.0253177247941494, 0.021457144990563393, -0.004228508099913597, -0.028730392456054688, -0.005033684428781271, -0.04206112399697304, 0.011293795891106129, 0.018065808340907097, 0.03557705506682396, -0.0025115099269896746, 0.04248770698904991, -0.035086486488580704, 0.01297880057245493, 0.004041878040879965, 0.0019836127758026123, 0.026106905192136765, -0.006889322306960821, 0.011869683861732483, -0.022587591782212257, 0.0026154895313084126, 0.01799115538597107, 0.007043958641588688, -0.001241757650859654, -0.009694107808172703, -0.003255364717915654, 0.03169514611363411, 0.0002962755097541958, -0.05187254399061203, 0.036366235464811325, 0.004495122469961643, -0.04688151553273201, -0.016178175806999207, 0.020785275846719742, 0.03414800390601158, -0.02450721710920334, -0.022907529026269913, 0.00043491512769833207, -0.003266029292717576, -0.024784496054053307, 0.017628559842705727, 0.02480582520365715, 0.0031327218748629093, -0.005641565658152103, -0.012210950255393982, -0.02062530815601349, -0.006894654594361782, -0.01714865304529667, 0.012616204097867012, 0.028730392456054688, 0.014023929834365845, 0.031076600775122643, -0.008073091506958008, 0.017468590289354324, 0.023248795419931412, 0.0036232927814126015, 0.014482506550848484, 0.03444661200046539, -6.432078225770965e-05, 0.0008911594050005078, -0.004868383053690195, 0.020209388807415962, -0.006548055447638035, -0.04033346101641655, 0.016007542610168457, 0.017703210934996605, 0.0037192741874605417, -0.02248094603419304, 0.024592533707618713, 0.01657276600599289, 0.006094810552895069, 0.009128885343670845, -0.012530887499451637, -0.01816178858280182, -0.01559162326157093, 0.01260553952306509, 0.015570294111967087, 0.004207178950309753, -0.012296266853809357, -0.016476783901453018, 0.006947977468371391, -0.0012177623575553298, -0.002635485725477338, -0.0334014818072319, 0.019548185169696808, -0.034041356295347214, 0.0016570099396631122, -0.002612823387607932, -0.021137207746505737, 0.021254519000649452, 0.006553387735038996, -0.04820392653346062, -0.0028901025652885437, 0.018545713275671005, 0.036430224776268005, 0.012136298231780529, -0.027557289227843285, -0.021414486691355705, 0.02676810882985592, -0.003783261636272073, -0.03732604905962944, -0.014215892180800438, -0.0021395825315266848, 0.018012484535574913, -0.013000129722058773, -0.02838912606239319, 0.021307840943336487, -0.01297880057245493, -0.014215892180800438, 0.0465829074382782, -0.013490700162947178, -0.015890231356024742, 0.03122590482234955, -0.009022239595651627, -0.02642684243619442, 0.019078943878412247, 0.048246584832668304, -0.02072128839790821, 0.0033486797474324703, -0.014087917283177376, -0.01660475879907608, -0.02979685179889202, -0.003255364717915654, 0.024955129250884056, 0.004372479859739542, -0.012541552074253559, 0.008009103126823902, -0.021350499242544174, -0.02440057136118412, -0.0033486797474324703, -0.007411886937916279, 0.03783794865012169, 0.005641565658152103, 0.014045258983969688, -0.05554116144776344, 0.019686823710799217, 0.016274157911539078, -0.009358173236250877, -0.002740798518061638, 0.016594095155596733, -0.000822506146505475, -0.022566262632608414, -0.012861490249633789, -0.003817921504378319, 0.028005201369524002, -0.04794797673821449, -0.037645984441041946, 0.0002861108223441988, 0.04327688738703728, -0.01920691877603531, -0.005012355279177427, 0.027834568172693253, 0.010536610148847103, 0.011368447914719582, -0.018471062183380127, -0.052256468683481216, -0.029924826696515083, 0.029370268806815147, 0.0023302119225263596, -0.006212120875716209, 0.02689608372747898, -0.011837690137326717, -0.025595005601644516, 0.006030823104083538, 0.022352971136569977, -0.006201456300914288, 0.031097929924726486, 0.0010751235531643033, 0.005668227095156908, 0.00872363056987524, 0.05387748405337334, -0.014994407072663307, -0.029860839247703552, -0.02388867177069187, -0.005988164804875851, -0.05165925249457359, 0.009283521212637424, 0.008915592916309834, -0.051957860589027405, -0.03512914478778839, 0.004847053904086351, -0.01674339920282364, 0.009347508661448956, -0.010035375133156776, -0.02879437990486622, 0.00233287806622684, 0.02095591090619564, -0.02706671692430973, -0.019686823710799217, 0.013831967487931252, 0.03269761800765991, -0.010787228122353554, 0.005886850878596306, 0.028495771810412407, 0.01170971430838108, 0.02203303389251232, 0.010584601201117039, -0.008632982149720192, 0.006537390872836113, 0.008499674499034882, -0.021105214953422546, -0.008334373123943806, 0.013352060690522194, 0.004447131883352995, -0.008249056525528431, -0.0031033942941576242, -0.017980489879846573, -0.005700220819562674, 0.02689608372747898, -0.0018196448218077421, -0.03762465715408325, -0.03314553201198578, 0.005036350339651108, 0.04526050016283989, 0.010445961728692055, 0.0017529912292957306, 0.019462868571281433, -0.01906827837228775, 0.010659253224730492, -0.02595760114490986, -0.01074990164488554, 0.0006945311324670911, -0.007918454706668854, -0.0072092595510184765, -0.011283131316304207, -0.019654830917716026, -0.005822863429784775, -0.008931590244174004, -0.0072039272636175156, -0.004524450283497572, 0.035896994173526764, 0.012946806848049164, 0.006393419113010168, -0.010893873870372772, -0.015111717395484447, -0.023206137120723724, 0.0041938479989767075, 0.01005670428276062, -0.004567108582705259, -0.025658993050456047, -0.008099752478301525, -0.03276160731911659, -0.0185563787817955, -0.05008089169859886, 0.012221614830195904, 0.004060540813952684, 0.021659772843122482, 0.003580634482204914, -0.012701520696282387, -0.016818050295114517, 0.056138377636671066, -0.01920691877603531, -0.020102743059396744, -0.03269761800765991, 0.012904148548841476, 0.00038159219548106194, -0.02288619987666607, 0.005100337788462639, -0.011059175245463848, -0.01356535218656063, 0.036366235464811325, 0.013629339635372162, 0.0016236831434071064, 0.008249056525528431, -0.006649368908256292, -0.0023102157283574343, -0.041293274611234665, 0.002070262562483549, -0.003697945037856698, -0.003521979320794344, -0.038051240146160126, -0.006574716884642839, 0.00550825847312808, 0.017084665596485138, -0.007411886937916279, -0.018204446882009506, 0.03480920568108559, 0.015751592814922333, -0.016594095155596733, -0.046156324446201324, -0.0065800491720438, -0.015772921964526176, -0.011773701757192612, 0.007091949228197336, 0.0496116504073143, -0.005103004164993763, 0.01202965248376131, 0.02879437990486622, -0.011752372607588768, 0.016476783901453018, 0.044194042682647705, 0.011560410261154175, -0.012530887499451637, -0.022118350490927696, 0.031204575672745705, 0.014589152298867702, -0.020699959248304367, 0.016786057502031326, -0.020433345809578896, 0.016050200909376144, 0.008227727375924587, -0.026917412877082825, -0.029988814145326614, 0.011837690137326717, -0.016850044950842857, 0.009358173236250877, 0.023718038573861122, -0.020060084760189056, -0.008499674499034882, -0.030692676082253456, 0.012797502800822258, -0.030692676082253456, 0.013362725265324116, -0.033465467393398285, 0.049398358911275864], [0.05213601887226105, 0.02665078453719616, 0.0472944974899292, 0.011100757867097855, -0.030371583998203278, 0.06177423521876335, -0.005567189771682024, -0.06576400995254517, 0.05527404323220253, 0.04529961198568344, -0.010882217437028885, -0.017404822632670403, 0.0018716068007051945, 0.025238674134016037, 0.007839455269277096, -0.048594534397125244, 0.023467931896448135, 0.021506667137145996, -0.004496899899095297, 0.03061814419925213, 0.009307601489126682, 0.028264624997973442, -0.0067019215784966946, -0.02036353014409542, -0.037454552948474884, -0.038059741258621216, 0.06244666874408722, -0.003650753991678357, 0.026023181155323982, -0.05231533572077751, 0.02633698284626007, -0.036849360913038254, -0.025552477687597275, -0.049042824655771255, -0.005152522586286068, 0.004079430364072323, -0.010854198597371578, 0.005822154227644205, -0.0179203562438488, 0.011336109600961208, -0.03220956772565842, 0.01439007930457592, 0.006449759006500244, -0.017135849222540855, -9.079604933504015e-05, -0.005850172135978937, -0.0008909745374694467, -0.05522921308875084, -0.009251565672457218, 0.016743596643209457, 0.0029727169312536716, 0.025664549320936203, 0.003457429353147745, -0.012204669415950775, 0.03610968589782715, 0.03691660612821579, 0.0015858225524425507, 0.0024669908452779055, 0.04532202333211899, -0.026785271242260933, -0.029250862076878548, -0.0427219495177269, 0.005222567822784185, -0.025866279378533363, 0.022537732496857643, 0.007329526357352734, 0.01734878681600094, 0.01835743710398674, -0.036535557359457016, -0.029273275285959244, 0.038664933294057846, 0.004138268530368805, 0.001630651531741023, 0.008792069740593433, 0.005572793539613485, -0.042990922927856445, -0.03752179443836212, 0.05666373670101166, -0.0016614713240414858, 0.0021559903398156166, -0.053570542484521866, -0.02813013829290867, 0.03097677417099476, -0.021461838856339455, 0.008612753823399544, 0.024678314104676247, -0.0029390952549874783, -0.020016107708215714, 0.0005827757995575666, -0.02044198103249073, -0.03149230778217316, 0.02761460654437542, -0.011280073784291744, 0.03965116664767265, -0.023512762039899826, -0.051642902195453644, 0.00298112235032022, -0.060429368168115616, -0.0139866191893816, 0.01390816830098629, 0.0032444922253489494, 0.0024277654010802507, -0.030371583998203278, -0.005267396569252014, 0.026471469551324844, -0.05930864438414574, -0.02180926315486431, -0.01222708448767662, -0.021092001348733902, 0.008651979267597198, 0.061101801693439484, -0.047115180641412735, 0.017012570053339005, 0.0503428615629673, -0.012350363656878471, -0.0214842539280653, 0.010030467994511127, 0.004356809426099062, 0.015421143732964993, 0.039740826934576035, -0.004471683409065008, -0.017023777589201927, -0.005040450021624565, -0.057739630341529846, 0.019735926762223244, -0.02577662095427513, -0.009234754368662834, -0.0089601781219244, -0.05729134380817413, 0.021271316334605217, -0.025395575910806656, -0.047070350497961044, 0.05742583051323891, -0.0462634302675724, -0.0040906378999352455, -0.018379852175712585, -0.04281160607933998, -0.005550378933548927, -0.024073122069239616, -0.00014691973046865314, -0.0007403774070553482, 0.01663152500987053, -0.018985042348504066, 0.059622444212436676, -0.06329841911792755, -0.00897698849439621, -0.04868419095873833, 0.06244666874408722, 0.0630742684006691, -0.0064329481683671474, 0.01631772145628929, 0.01583581045269966, -0.04917731136083603, -0.03702867776155472, -0.006309668533504009, -0.0011382339289411902, 0.01174517348408699, 0.04837039113044739, 0.024386925622820854, 0.02164115384221077, 0.0366252176463604, -0.005984658841043711, -0.014446115121245384, 0.0064329481683671474, 0.03209749609231949, 0.0031324198935180902, -0.046397916972637177, 0.016485830768942833, -0.03911321982741356, 0.03413721174001694, 0.01390816830098629, -0.013717645779252052, -0.009442088194191456, -0.04801175743341446, -0.07006758451461792, -0.03189576789736748, -0.025149017572402954, 0.005766117945313454, 0.01804363541305065, 0.015880640596151352, 0.0006321576074697077, -0.003930934704840183, -0.021652361378073692, 0.005009630229324102, 0.016003919765353203, 0.04139949381351471, 0.008814483880996704, 0.030483657494187355, -0.004009385127574205, -0.02568696439266205, -0.04556858539581299, 0.005939830094575882, -0.0037264027632772923, 0.0013714843662455678, -0.003174446988850832, -0.030393999069929123, -0.05751548707485199, -0.027188731357455254, 0.01975833997130394, -0.034607917070388794, 0.02649388462305069, -0.061460431665182114, 0.01723671518266201, -0.03568381071090698, -0.044873736798763275, -0.03855286166071892, -0.03693901747465134, 0.0014177141711115837, 0.03232164308428764, -0.031088847666978836, 0.0030287529807537794, 0.02324378862977028, -0.033688925206661224, 0.027435291558504105, 0.002744369674474001, 0.03122333437204361, -0.047877270728349686, 0.04648757725954056, -0.02164115384221077, 0.010529189370572567, -0.037095919251441956, 0.04384266957640648, 0.07522290199995041, -0.056618910282850266, -0.07997477054595947, 1.9010696632904e-05, 0.0088985376060009, -0.05213601887226105, -0.02909396030008793, -0.06616746634244919, -0.006091127637773752, 0.035930369049310684, -0.011969317682087421, -0.007223057560622692, -0.01871606893837452, 0.005463522858917713, 0.010327459312975407, -0.03658038750290871, 0.03494413197040558, 0.00906104315072298, 0.02597835101187229, -0.011011100374162197, -0.04364094138145447, -0.0026925362180918455, -0.010024864226579666, 0.0014016038039699197, -0.0029783204663544893, -0.04292367771267891, 0.034607917070388794, 0.021058378741145134, 0.007615310605615377, 0.020979927852749825, 0.03086470253765583, -0.04765312746167183, 0.008719222620129585, 0.018547959625720978, 0.01644100248813629, -0.0036955829709768295, 0.020968720316886902, -0.024835214018821716, 0.007777815219014883, -0.017404822632670403, -0.034092385321855545, -0.01955660991370678, -0.04189261421561241, -0.012092597782611847, 0.015454765409231186, -0.01775224693119526, -0.025911107659339905, 0.01888417638838291, 0.01126326248049736, 0.03025951236486435, -0.024297267198562622, 0.021652361378073692, -0.0864749625325203, 0.022548940032720566, -0.004897558130323887, -0.013314185664057732, 0.012664166279137135, -0.020139386877417564, -0.0411977656185627, -0.0050684683956205845, 0.025238674134016037, -0.04491856321692467, 0.03523552045226097, 0.009436484426259995, 0.04935662820935249, 0.023714492097496986, 0.004749062471091747, 0.013258148916065693, 0.052808452397584915, 0.0026379008777439594, -0.0027387661393731833, -0.023154130205512047, -0.020329909399151802, -0.023311031982302666, 0.00977830495685339, -0.015981504693627357, -0.04074947535991669, -0.020610090345144272, -0.014401285909116268, 0.047115180641412735, 0.02152908220887184, 0.003650753991678357, -0.04590480029582977, 0.005499946419149637, -0.0001266941981157288, -0.015600459650158882, -0.03631141409277916, -0.01439007930457592, -0.030528485774993896, 0.03523552045226097, -0.05500506982207298, -0.011386542581021786, -0.04545651003718376, -0.023961050435900688, 0.009974432177841663, 0.02384897880256176, 0.018581582233309746, -0.010747730731964111, 0.028309455141425133, -0.028712915256619453, 0.017662588506937027, -0.025866279378533363, 0.042027100920677185, 0.01719188503921032, -0.05554301664233208, 0.021417010575532913, 0.007934716530144215, -0.03355443850159645, -0.032971661537885666, 0.02485762909054756, 0.019231600686907768, -0.051642902195453644, 0.02496970072388649, 0.013034004718065262, -0.012159841135144234, 0.02436451055109501, -0.0062368218787014484, 0.03640107065439224, 0.009526142850518227, -0.028399111703038216, -0.014771124348044395, 0.0676019936800003, -0.010075297206640244, 0.017102228477597237, -0.006500191520899534, 0.006488984450697899, 0.03985289856791496, 0.026830101385712624, 0.01771862618625164, 0.018570374697446823, -0.004732251632958651, -0.022358417510986328, -0.04312540963292122, 0.017124641686677933, 0.0394270233809948, 0.032523371279239655, -0.030685387551784515, 0.013840924948453903, -0.02765943482518196, 0.007133399602025747, 0.05177738890051842, 0.03940460830926895, 0.010523585602641106, 0.003970160149037838, -0.03471998870372772, -0.004373620264232159, -0.02031870186328888, -0.01469267439097166, -0.005488739348948002, 0.026471469551324844, -0.054287806153297424, -0.03819422796368599, 0.02597835101187229, -0.00847826711833477, 0.04532202333211899, 0.03906839340925217, 0.035370007157325745, 0.002120967721566558, 0.041220180690288544, 0.014894404448568821, 0.03487689048051834, 0.026964588090777397, 0.011229640804231167, 0.021898921579122543, 0.019971277564764023, 0.0190747007727623, 0.00020715857681352645, 0.0011935696238651872, -0.024342095479369164, 0.01944453828036785, 0.013571951538324356, 0.008029977791011333, -0.04653240367770195, 0.02204461582005024, 0.06688472628593445, 0.030192269012331963, 0.03288200497627258, -0.018648825585842133, 0.007833851501345634, -0.04783244431018829, -0.03467515856027603, 0.022179102525115013, -0.007901094853878021, 0.023378275334835052, 0.025866279378533363, -0.028197381645441055, 0.014894404448568821, 0.0021223686635494232, 0.025597305968403816, -0.01799880526959896, 0.017729831859469414, 0.016889290884137154, -0.005471928510814905, 0.0068644261918962, -0.03261302784085274, 0.05903967097401619, -0.015522008761763573, -0.022537732496857643, 0.0007438796455971897, -0.007480823900550604, -0.007761004380881786, 0.06495708227157593, -0.0137288523837924, 0.0554085299372673, 0.0010800964664667845, 0.04135466739535332, 0.014524566009640694, -0.017449652776122093, -0.021865298971533775, 0.014535772614181042, 0.022997228428721428, 0.021383387967944145, -0.026874929666519165, -0.03250095620751381, 0.016373759135603905, -0.048280730843544006, -0.03442860022187233, 0.043102994561195374, -0.0076881577260792255, -0.0045053050853312016, 0.04059257358312607, -0.04018911346793175, -0.017247922718524933, 0.012765031307935715, -0.04281160607933998, 0.030931945890188217, 0.020531639456748962, -0.0024319682270288467, -0.018783312290906906, -0.0006710326997563243, -0.03664763271808624, -0.0019710708875209093, -0.0472944974899292, -0.027547363191843033, 0.013347807340323925, -0.07307111471891403, 0.023266201838850975, -0.007542463485151529, 0.04115293547511101, 0.018447095528244972, 0.03281475976109505, 0.026561127975583076, 0.01350470818579197, 0.02436451055109501, -0.009570972062647343, -0.036288999021053314, -0.013650402426719666, -0.042340900748968124, -0.01154344342648983, -0.0343165285885334, 0.030393999069929123, -0.01756172440946102, 0.052898108959198, 0.009912791661918163, -0.00455013383179903, -0.03498896211385727, -0.02080061286687851, -0.026874929666519165, -0.007828247733414173, 0.003499456448480487, -0.061505261808633804, -0.031200919300317764, 0.0058781905099749565, 0.04384266957640648, 0.024274852126836777, -0.009649422019720078, -0.006976498756557703, -0.05751548707485199, -0.032007839530706406, 0.008584735915064812, 0.03483206033706665, -0.009133889339864254, 0.007391165941953659, 0.005844568833708763, -0.01867123879492283, -0.0051048919558525085, -0.0005057260859757662, 0.027435291558504105, 0.01136412750929594, -0.010630054399371147, 0.026830101385712624, -0.016205649822950363, -0.006438551936298609, -0.011459389701485634, -0.0559464767575264, 0.023176545277237892, -0.0030427619349211454, -0.01250726543366909, 0.008130842819809914, 0.0236472487449646, 0.008719222620129585, 0.015443558804690838, -0.0015493991086259484, -0.015622873790562153, 0.04608411714434624, -0.00015348647139035165, -0.01642979495227337, 0.02929569035768509, 0.021585118025541306, -0.03671487420797348, 0.04684620723128319, -0.03265785798430443, -0.004765873309224844, -0.031044017523527145, 0.013583159074187279, -0.09216823428869247, 0.011554650962352753, -0.007856265641748905, -0.02324378862977028, -0.017247922718524933, 0.01579098217189312, -0.02842152677476406, 0.005396279506385326, -0.014535772614181042, -0.01441249344497919, 0.026830101385712624, -0.0379028394818306, 0.008965780958533287, -0.014625431038439274, -0.026673199608922005, 0.04998423159122467, -0.05334639921784401, 0.013818510808050632, 0.038216643035411835, -0.026000766083598137, 0.02436451055109501, 0.01751689612865448, -0.012574508786201477, -0.01619444228708744, -0.011790002696216106, 0.02003852091729641, 0.019545404240489006, 0.024723142385482788, 0.009374844841659069, 0.005298216361552477, -0.02156270481646061, 0.009800720028579235, -0.012260706163942814, 0.010994289070367813, 0.049401454627513885, 0.00611354224383831, -0.007413580548018217, -0.016777219250798225, 0.011128775775432587, -0.024543827399611473, -0.038171812891960144, 0.014883196912705898, -0.03207508102059364, -0.029676735401153564, 0.0015578045276924968, 0.0045137107372283936, 0.009486917406320572, 0.004953594412654638, 0.01647462323307991, 0.0032192759681493044, -0.0455237552523613, -0.010904631577432156, 0.033128563314676285, 0.026381811127066612, 0.009240358136594296, -0.010321855545043945, -0.04000980034470558, -0.023759320378303528, 0.014524566009640694, -0.01441249344497919, -0.03207508102059364, -0.027031831443309784, 0.03850803151726723, 0.013246942311525345, -0.009296394884586334, 0.004026195965707302, 0.00596224470064044, 0.0013707838952541351, 0.04160122573375702, -0.03050607070326805, 0.03438377007842064, -0.012574508786201477, 0.0254179909825325, 0.07087450474500656, -0.015028891153633595, -0.01332539226859808, 0.03774593770503998, -0.006225614342838526, -0.0034770420752465725, 0.02709907479584217, -0.012731409631669521, 0.028712915256619453, -0.00661226361989975, 0.015465972945094109, 0.014143520034849644, -0.01566770300269127, -0.0035414835438132286, 0.008932159282267094, -0.012552093714475632, -0.012977968901395798, -0.009918395429849625, -0.013583159074187279, -0.034899305552244186, -0.049760088324546814, 0.03386823832988739, 0.01085980236530304, -0.06809511035680771, -0.04287884756922722, -0.005698874592781067, 0.001755331875756383, -0.022470489144325256, -0.05989141762256622, -0.013796095736324787, -0.03117850422859192, -0.03263544291257858, 0.018379852175712585, -0.05173255875706673, 0.023983465507626534, 0.0185591671615839, -0.00502924295142293, 0.0081980861723423, -0.03259061649441719, 0.04148915410041809, 0.021058378741145134, 0.014165934175252914, 0.026269739493727684, -0.03909080848097801, 0.008741636760532856, 0.012350363656878471, 0.035414837300777435, 0.019870413467288017, 0.023019643500447273, 0.002511819591745734, -0.011890867725014687, 0.0035919160582125187, -0.0379028394818306, 0.00879767257720232, -0.012316741980612278, 0.008618357591331005, -0.03797008469700813, 0.007026931270956993, -0.007699364796280861, 0.034294113516807556, -0.02188771404325962, 0.0493117980659008, 0.022100651636719704, 0.02801806665956974, 0.015981504693627357, 0.011436974629759789, 0.032052669674158096, -0.041265007108449936, 0.03362167999148369, 0.003673168597742915, 0.002458585426211357, 0.033442363142967224, 0.004608971998095512, -0.007749797310680151, -0.006601056549698114, -0.035818297415971756, 0.006158370990306139, 0.029519835487008095, -0.021932542324066162, 0.02786116488277912, 0.0023339048493653536, 0.019298844039440155, -0.015230621211230755, 0.018245365470647812, -0.0030007348395884037, 0.001555002760142088, 0.02425243891775608, 0.022336002439260483, 0.020979927852749825, 0.03570622578263283, 0.006343290209770203, -0.00987916998565197, 0.0163961723446846, 0.008461455814540386, 0.007486427202820778, 0.03335270658135414, 0.000388750690035522, -0.026874929666519165, 0.015970297157764435, -0.035975199192762375, 0.02521626092493534, -0.004034601617604494, -0.03940460830926895, -0.07280214130878448, -0.041265007108449936, -0.0416908822953701, -0.041870199143886566, -0.033823411911726, 0.045277196913957596, 0.02573179267346859, -0.04814624413847923, 0.0025272297207266092, -0.03129057586193085, -0.018066048622131348, 0.00885931309312582, -0.008870519697666168, 0.00442965654656291, 0.01723671518266201, 0.033890653401613235, 0.025081774219870567, -0.03651314601302147, -0.009918395429849625, -0.07132279127836227, -0.012294327840209007, -0.008993799798190594, 0.008629564195871353, 0.010803766548633575, 0.004303575027734041, -0.010013656690716743, -0.007906698621809483, 0.014233177527785301, -0.0070885708555579185, 0.007615310605615377, 0.04509788006544113, -0.0023128914181143045, 0.02561972104012966, -0.026471469551324844, 0.009223547764122486, 0.003877700539305806, -0.014233177527785301, -0.03207508102059364, -0.03983048349618912, 0.009699854999780655, -0.010176162235438824, 0.006124749314039946, 0.03487689048051834, -0.0031520326156169176, -0.006556227803230286, 0.06276047229766846, 0.039382193237543106, 0.017102228477597237, 0.006018280517309904, -0.05554301664233208, -0.00023535176296718419, 0.00581094715744257, -0.011958111077547073, 0.0016180434031412005, 0.006152767688035965, 0.011913281865417957, 0.03886666148900986, 0.004558539483696222, -0.007682553958147764, -0.02095751464366913, 0.0002856091596186161, 6.461666635004804e-05, -0.018648825585842133, -0.03949426859617233, -0.021092001348733902, 0.018256573006510735, 0.0028970681596547365, 0.005533568095415831, -0.012316741980612278, -0.0023549185134470463, 0.03776835277676582, 0.009806323796510696, 0.016665145754814148, -0.0179203562438488, -0.0007375755812972784, -0.004101844970136881, 0.033285465091466904, 0.003429411444813013, -0.01441249344497919, 0.01607116311788559, 0.021540289744734764, -0.009643818251788616, -0.004746260587126017, -0.023781735450029373, 0.011801209300756454, 0.029049132019281387, 0.010702901519834995, -0.01944453828036785, 0.02100234292447567, -0.017651382833719254, -0.012383985333144665, -0.05029803514480591, -0.017864318564534187, 0.005124504212290049, -0.019847998395562172, -0.03218715637922287, 0.01591426134109497, -0.005640036892145872, 0.019870413467288017, -0.005149720702320337, -0.013639194890856743, 0.04184778407216072, -0.008825691416859627, -0.030012954026460648, -0.002196616493165493, 0.024678314104676247, 0.010512378998100758, 0.020307494327425957, 0.012171047739684582, 0.019231600686907768, -0.009845548309385777, 0.0024809997994452715, 0.026000766083598137, 0.029878465458750725, 0.010484360158443451, -0.0047098370268940926, -0.04612894356250763, 0.07208488136529922, 0.024902457371354103, 0.02700941637158394, -0.00576051464304328, 0.0009007808403111994, -0.003622736083343625, -0.0189514197409153, -0.004034601617604494, 0.021304937079548836, 0.05903967097401619, 0.00714460713788867, -0.00149056117516011, -0.03615451231598854, -0.0042727552354335785, -0.008629564195871353, -0.009425277821719646, -0.019735926762223244, -0.0011445380514487624, 0.027435291558504105, 0.021495461463928223, 0.048953164368867874, -0.030887117609381676, -0.0031688434537500143, -0.03626658394932747, -0.017337579280138016, 0.017214300110936165, 0.0044912961311638355, 0.0007599900709465146, -0.04012187197804451, 0.031761281192302704, -0.02501453086733818, 0.0023437112104147673, 0.0017581336433067918, 0.031447477638721466, -0.017046192660927773, -0.00857913214713335, 0.0004297271079849452, -0.013796095736324787, -0.0026280947495251894, -0.0076377252116799355, -0.0028284238651394844, 0.008651979267597198, -0.024992115795612335, -0.0042503406293690205, 0.022436868399381638, -0.00298112235032022, 0.037252821028232574, 0.014132312498986721, 0.019859205931425095, -0.015734946355223656, -0.004334394820034504, -0.04328230768442154, 0.012596922926604748, -0.0027177524752914906, -0.039628755301237106, -0.026224911212921143, 0.0068420120514929295, -0.016642732545733452, 0.024790385738015175, 0.0518670454621315, 0.01114558707922697, 0.010176162235438824, 0.004452070686966181, 0.026762858033180237, -0.01616082154214382, 0.0003880502190440893, -0.03566139563918114, 0.01960144005715847, 0.02653871290385723, 0.00498161232098937, 0.008270933292806149, -0.011588272638618946, 0.0074247876182198524, 0.021977372467517853, -0.012283120304346085, 0.04854970425367355, -0.03131299093365669, 0.0058837938122451305, -0.0017749444814398885, 0.0371183343231678, -0.07549187541007996, -0.033644095063209534, -0.016463415697216988, -0.011509821750223637, -0.027726678177714348, 0.004821909125894308, 0.026068009436130524, -0.007200642954558134, 0.023221373558044434, 0.059936247766017914, 0.017404822632670403, 0.011778795160353184, -0.003661961294710636, -0.00724547216668725, 0.026785271242260933, 0.007648932281881571, -0.01192448940128088, -0.005312225315719843, 0.009890377521514893, -0.014681466855108738, 0.03263544291257858, 0.006746750324964523, 0.003894511377438903, 0.0042503406293690205, 0.01991524174809456, -0.0025902702473104, -0.015891848132014275, 0.018536752089858055, 0.010164954699575901, -0.04130983725190163, 0.01260813046246767, -0.005309423431754112, 0.02909396030008793, 0.048639364540576935, -0.044066816568374634, 0.003653555875644088, 0.0013287567999213934, -0.01240640040487051, 0.023961050435900688, -0.014726296067237854, -0.030573314055800438, 0.010008053854107857, -0.010136936791241169, -0.054242976009845734, 0.011666722595691681, 0.018749689683318138, 0.019366087391972542, 0.02052043192088604, 0.009593386203050613, -0.009324412792921066, 0.021876506507396698, 0.010602036491036415, 0.04514271020889282, -0.01787552610039711, -0.015454765409231186, -0.003342555370181799, -0.005177738610655069, -0.0034322130959481, 0.010697297751903534, -0.030416414141654968, 0.016026334837079048, 0.011196019127964973, 0.004362413194030523, -0.050477348268032074, 0.020498016849160194, 0.030842287465929985, 0.021854091435670853, 0.02416278049349785, -0.01992644928395748, 0.013952997513115406, -0.04590480029582977, -0.03458550199866295, 0.03395789861679077, 0.014815953560173512, 0.03929253667593002, 0.030931945890188217, -0.010590828955173492, -0.0214842539280653, 0.006376911886036396, 0.010798162780702114, 0.027323218062520027, 0.04440303146839142, -0.014221970923244953, 0.012540887109935284, -0.04166846722364426, 0.025193845853209496, 0.06706404685974121, -0.03671487420797348, -0.00025724087026901543, -0.006180785596370697, 0.00987916998565197, 0.006937273312360048, 0.010114521719515324, -0.01212621945887804, -0.008567924611270428, 0.0003806954773608595, 0.003653555875644088, 0.02974397875368595, 0.008646375499665737, -4.8725170927355066e-05, 0.019691096618771553, 0.021473046392202377, 0.012944347225129604, 0.031604379415512085, 0.006998912896960974, 0.004796693101525307, 0.04404440149664879, 0.02833186835050583, -0.004393232986330986, -0.012596922926604748, -0.014065069146454334, -0.02405070886015892, 0.000913388968911022, 0.040659818798303604, -0.008444645442068577, 0.02730080485343933, 0.03294924646615982, -0.013773681595921516, -0.012899518013000488, -0.006281650625169277, 0.002242846181616187, 0.02765943482518196, 0.05038769170641899, 0.008668789640069008, 0.002242846181616187, -0.007391165941953659, 0.009128286503255367, 0.02103596366941929, 0.015096134506165981, 0.004917170852422714, -0.01728154346346855, 0.03203025460243225, 0.007374355103820562, 0.03373375162482262, -0.00551115395501256, 0.046308260411024094, -0.021349767223000526, 0.016026334837079048, -0.0006990507827140391, -0.025104187428951263, 0.028690500184893608, -0.01747206598520279, 0.0014058065135031939, 0.06105697154998779, 0.04801175743341446, 0.02501453086733818, -0.02985605224967003, 0.0068644261918962, 0.004494098015129566, -0.012182255275547504, -0.00899940263479948, 0.0468013770878315, -0.028197381645441055, 0.003493852913379669, 0.008943366818130016, -0.003692781087011099, -0.030752630904316902, 0.003286519320681691, 0.02056526020169258, -0.0010100513463839889, -0.003908520098775625, -0.003406996838748455, -0.019847998395562172, 0.0021756028290838003, 0.01172275934368372, 0.0010366684291511774, -0.01695653423666954, 0.04108569398522377, -0.003939340356737375, 0.003984169103205204, -0.026919757947325706, -0.007469616364687681, -0.004121457692235708, 0.02633698284626007, -0.005572793539613485, 0.019511781632900238, 0.004788287449628115, -0.045747898519039154, -0.003908520098775625, 0.055811990052461624, -0.04249780252575874, 0.0005022238474339247, -0.002672923495993018, 0.006029488053172827, -0.015656495466828346, -0.026964588090777397, -0.010047278366982937, -0.015421143732964993, 0.003059572773054242, -0.016934119164943695, -0.027031831443309784, 0.010803766548633575, 0.007520049344748259, -0.025149017572402954, -0.0007298706332221627, -0.017292750999331474, 0.025081774219870567, -0.002483801683411002, -0.003961754497140646, 0.002525828778743744, -0.0016572686145082116, 0.0001934997708303854, -0.01915314979851246, -0.031806107610464096, 0.03294924646615982, -0.017404822632670403, -0.004017790779471397, 0.021988578140735626, -0.02709907479584217, 0.05123944208025932, 0.024185195565223694, 0.018805725499987602, -0.0021756028290838003, -0.011420164257287979, 0.011577065102756023, 5.6123688409570605e-05, 0.01469267439097166, 0.02095751464366913, 0.013101248070597649, -0.010428324341773987, -0.005309423431754112, -0.02873532846570015, -0.010394702665507793, -0.01807725615799427, -0.006858822889626026, 0.014771124348044395, -0.0008076207595877349, 0.006404930260032415, 0.0503428615629673, -0.0037264027632772923, -0.013975411653518677, -0.01707981340587139, -0.023019643500447273, -0.005544775631278753, -0.0175505168735981, -0.000287535396637395, 0.022156687453389168, -0.0006423142040148377, -0.027031831443309784, -0.021092001348733902, 0.00429797125980258, 0.025664549320936203, 0.010411513969302177, -0.009301997721195221, -0.0050824773497879505, -0.015903053805232048, 0.0189514197409153, 0.05634993687272072, 0.04252021759748459, -0.015903053805232048, 0.052404992282390594, 0.02842152677476406, -0.04072706028819084, -0.007732986472547054, 0.027928408235311508, 0.010366684757173061, -0.007206246722489595, -0.009604593738913536, 0.02108079381287098, 0.023557590320706367, 0.005124504212290049, -0.005020837765187025, -0.01622806489467621, -0.004768675193190575, -0.020419567823410034, 0.0020439180079847574, -0.02593352273106575, 0.005822154227644205, -0.05782929062843323, 0.021988578140735626, 0.019007455557584763, -0.016485830768942833, -0.025081774219870567, -0.026023181155323982, -0.008046789094805717, 0.021977372467517853, 0.038463201373815536, 0.04018911346793175, 0.011168001219630241, 0.01202535443007946, 0.007828247733414173, 0.04135466739535332, -0.02292998507618904, -0.03050607070326805, 0.003729204647243023, -4.132664980716072e-05, 0.0008860713569447398, 0.006332083139568567, 0.001522781909443438, 0.002684130799025297, -0.016452208161354065, 0.00455013383179903, 0.02132735215127468, -0.01113998331129551, -0.057381000369787216, 0.020251458510756493, -0.009688647463917732, 0.0513739287853241, -0.002902671694755554, -0.03010261058807373, -0.03321821987628937, -0.008467059582471848, 0.006091127637773752, 0.0072342646308243275, 0.00011531185737112537, 0.008220501244068146, -0.02485762909054756, 0.016295308247208595, -0.022952400147914886, -0.026987001299858093, 0.0052645946852862835, -0.0028438337612897158, 0.02985605224967003, 0.021394595503807068, -0.012619337067008018, -0.007301507983356714, -0.02633698284626007, -0.010277027264237404, 0.02938534878194332, 0.021775640547275543, 0.02020663022994995, -0.011420164257287979, 0.017606552690267563, 0.016183234751224518, 0.014322835952043533, -0.02709907479584217, -0.045434098690748215, -0.057336170226335526, 0.00887612346559763, -0.010232198052108288, -0.005729694850742817, -0.0074752201326191425, 0.02123769372701645, -0.011969317682087421, 0.01056281104683876, 0.032926831394433975, 0.03767869621515274, 0.010613244026899338, -0.012933139689266682, -0.00869680754840374, 0.023736905306577682, 0.021551497280597687, 0.019534196704626083, -0.023512762039899826, -0.024521412327885628, 0.012787445448338985, -0.0231317151337862, 0.012204669415950775, 0.017539309337735176, -0.005424297880381346, 0.01194690354168415, -0.027031831443309784, -0.002790599362924695, 0.03167162090539932, -0.009531746618449688, 0.03238888457417488, -0.010333063080906868, -0.013336599804461002, -0.00045564380707219243, 0.01548838708549738, -0.007570481859147549, -0.013213320635259151, -0.014468529261648655, 0.011834830977022648, 0.025059359148144722, -0.02878015860915184, 0.004208313766866922, 0.020251458510756493, -0.023467931896448135, 0.004875143524259329, 0.027368048205971718, -0.01899624988436699, -0.0019150348380208015, 0.008517492562532425, 0.04184778407216072, 0.003622736083343625, 0.0014415294863283634, -0.0050684683956205845, 0.005754910875111818, 0.004936783574521542, -0.0004223723663017154, -0.03158196434378624, 0.009985638782382011, -0.006449759006500244, 0.008001959882676601, -0.005253387615084648, 0.023535175248980522, 0.011801209300756454, 0.015622873790562153, -0.04922214150428772, -0.02425243891775608, -5.401138878369238e-06, -0.0012313940096646547, -0.001444331370294094, -0.03655797243118286, -0.00925716944038868, -0.0033509607892483473, -0.00704374210909009, -0.02076699025928974, 0.00333134806714952, 0.015622873790562153, 0.0056876675225794315, -0.040502917021512985, -0.017931561917066574, -0.024835214018821716, 0.014401285909116268, -0.029049132019281387, -0.011347317136824131, 0.025955937802791595, 0.004622980952262878, 0.014883196912705898, 0.02192133478820324, -0.026000766083598137, 0.02280670590698719, 0.0025678558740764856, -0.013818510808050632, -0.03680453076958656, -0.018805725499987602, -0.02557489089667797, 0.051642902195453644, 0.0050460537895560265, -0.028466355055570602, -0.04133225232362747, 0.010036071762442589, 0.016564281657338142, -0.03794766962528229, -0.026874929666519165, 0.04525478184223175, 0.06208803504705429, -0.03122333437204361, 0.003664763178676367, 0.0012271913001313806, -0.03438377007842064, 0.019209187477827072, 0.0002840331580955535, 0.008562320843338966, 0.005343045108020306, -0.01630651392042637, -0.012731409631669521, 0.015297864563763142, 0.01408748421818018, 0.006203200202435255, -0.0351010337471962, -0.030237097293138504, 0.013863339088857174, -0.023826563730835915, 0.0088985376060009, -0.02761460654437542, -0.02036353014409542, 0.005088081117719412, -0.007800229825079441, -0.0018814131617546082, -0.008265329524874687, 0.015040098689496517, 0.01142576802521944, -0.031268160790205, 0.02229117415845394, 0.03411479666829109, -0.02994570881128311, 0.00488074729219079, 0.028488770127296448, -0.0052786036394536495, -0.003919727634638548, 0.00035547922016121447, -0.030685387551784515, 0.00266451807692647, -0.04545651003718376, -0.03507861867547035, -0.00019927849643863738, 0.025709377601742744, -0.02436451055109501, -0.014378871768712997, 0.022974815219640732, -0.014625431038439274, -0.008259725756943226, -0.02416278049349785, -0.01172275934368372, 0.0009575174190104008, -0.016015127301216125, -0.006354497745633125, -0.007032534573227167, -0.04048050194978714, -0.020262666046619415, -0.030237097293138504, 0.00995762087404728, 0.014603015966713428, -0.013695230707526207, -0.018424680456519127, 3.942229523090646e-05, 0.01667635329067707, 0.004339998587965965, 0.007351940497756004, -0.0016726786270737648, -0.008147654123604298, -0.012552093714475632, -0.017124641686677933, -0.04444786161184311, -0.015690118074417114, -0.004415647126734257, -0.02461107075214386, -0.030842287465929985, 0.001350470818579197, 0.0012152836425229907, 0.021730812266469002, -0.01707981340587139, 0.015645287930965424, -0.021551497280597687, -0.019567817449569702, 0.007049345411360264, 0.04036843031644821, 0.020991135388612747, 0.023871392011642456, 0.020217837765812874, 0.0005887296283617616, 0.00412706146016717, 0.01655307412147522, 0.017942769452929497, -0.047563470900058746, -0.047563470900058746, 0.012865896336734295, -0.021372180432081223, 0.014972854405641556, 0.02344551868736744, 0.0351010337471962, -0.008635167963802814, 0.0254179909825325, -0.027076659724116325, 0.00787307694554329, -0.02207823656499386, 0.01113998331129551, -0.006539416965097189, 0.005575595423579216, 0.03478723019361496, 0.01916435733437538, 0.003855285933241248, 0.005564387887716293, 0.005399081390351057, 0.019982485100626945, -0.017729831859469414, 0.01795397698879242, 0.0018575978465378284, 0.00829895120114088, 0.010882217437028885, -0.002451580949127674, -0.015891848132014275, 0.01642979495227337, -0.008590339682996273, 0.008416627533733845, 0.025642134249210358, -0.015544423833489418, -0.004115853924304247, 0.014759917743504047, 0.028152553364634514, -0.003535880008712411, 0.03146989271044731, -0.004014988895505667, 0.008982592262327671, -0.009733476676046848, 0.03173886612057686, -0.00578292878344655, -0.03610968589782715, -0.04180295392870903, 0.00419990811496973, -0.04204951599240303, -0.0018015616806223989, 0.03696143254637718, 0.022313589230179787, 0.007503238506615162, -0.013695230707526207, -0.028668085113167763, -0.024028293788433075, 0.07392286509275436, -0.015096134506165981, 0.0003004937607329339, -0.01840226538479328, 0.004760269541293383, -0.00906104315072298, 0.01683325506746769, 0.00019174865155946463, -0.008803276345133781, 0.018895383924245834, -0.0072342646308243275, -0.0025454412680119276, -0.022907571867108345, -0.008915348909795284, 0.018256573006510735, -0.006858822889626026, 0.00548033369705081, 0.006875633727759123, -0.0325457863509655, 0.01594788394868374, 0.008041185326874256, -3.581058990675956e-05, 0.00927958358079195, -0.004222322721034288, -0.03158196434378624, -0.021540289744734764, 0.009660629555583, 0.0016110388096421957, 0.005174936726689339, 0.003051167353987694, 0.022795498371124268, -0.0089601781219244, -0.02176443487405777, -0.01194690354168415, 0.010876613669097424, -0.0345630869269371, 0.012036561034619808, 0.012832274660468102, 0.001683885813690722, 0.0183126088231802, 0.03512344881892204, -0.0274577047675848, -0.004936783574521542, 0.030797459185123444, 0.011459389701485634, 0.04509788006544113, 0.009072249755263329, 0.0036815740168094635, -0.028959473595023155, -0.019904034212231636, 0.009273979812860489, -0.030416414141654968, -0.03420445695519447, -0.01863761804997921, -0.026807686313986778, 0.008567924611270428, 5.8137487940257415e-05, 0.0036955829709768295, 0.020453188568353653, -0.013695230707526207, 0.023759320378303528, -0.01739361509680748, 0.04249780252575874, -0.028152553364634514, 0.030954360961914062], [0.020575419068336487, -0.007014092057943344, 0.032758679240942, 0.05021797493100166, -0.0154793756082654, 0.032758679240942, -0.04461570084095001, 0.00418483093380928, -0.005298536270856857, 0.02434401772916317, -0.004404197447001934, 0.01139016542583704, -0.00023377963225357234, 0.02468150295317173, -0.030801257118582726, -0.02747139148414135, -0.02996879070997238, 0.0026998911052942276, -0.0020431987941265106, -0.017954275012016296, 0.018269263207912445, 0.07721688598394394, -0.03788847103714943, -0.020147936418652534, 0.0034254868514835835, -0.0063278693705797195, 0.010073968209326267, 0.014815651811659336, 0.006738477852195501, -0.0010061312932521105, -0.010557699017226696, -0.028056368231773376, 0.013206967152655125, -0.06007257476449013, 0.050577957183122635, 0.011812022887170315, -0.026526428759098053, 0.011491411365568638, 0.027966370806097984, 0.04765307530760765, 0.01199201587587595, -0.052377887070178986, 0.03543607145547867, -0.01640183851122856, -0.035953547805547714, 0.0923362746834755, -0.02371404320001602, -0.02639143541455269, -0.0051804156973958015, 0.030733760446310043, 0.0063278693705797195, 0.04666311666369438, 0.004856991581618786, -0.0026998911052942276, 0.018696745857596397, 0.01568186655640602, 0.05611273646354675, 0.018055520951747894, 0.0424782857298851, -0.010225837118923664, -0.002297719707712531, -0.026863915845751762, -0.018584249541163445, 0.017740534618496895, 0.024973992258310318, -0.023511551320552826, -0.027381394058465958, 0.004176394082605839, -0.024771500378847122, -0.005872263107448816, 0.03410862386226654, 0.05629272758960724, 0.00182523881085217, 0.021925365552306175, -0.0034170495346188545, 0.003020503092557192, -0.014680657535791397, 0.028956331312656403, 0.01878674142062664, 0.017448045313358307, -0.04031837359070778, 0.016593080013990402, -0.025198983028531075, -0.03336615487933159, -0.005540401209145784, -0.01549062505364418, -0.01707681082189083, -0.009517115540802479, 0.04011588171124458, -0.026683922857046127, 0.03192621096968651, 0.009460868313908577, -0.06308745592832565, 0.0004464663506951183, 0.008712773211300373, -0.0049301134422421455, 0.016131848096847534, -0.012621990405023098, 0.001212841714732349, -0.011553283780813217, -0.04706810042262077, -0.03440111130475998, -0.06308745592832565, 0.009562114253640175, -0.0070028421469032764, -0.012858230620622635, -0.04319825768470764, 0.00835841242223978, -0.008499031886458397, 0.020361678674817085, 0.0688922181725502, 0.012801983393728733, 0.03433361276984215, 0.049902986735105515, -0.013735695742070675, -0.0012620583875104785, -0.032196201384067535, -0.024141525849699974, 0.002922069514170289, 0.0017943026032298803, -0.0030092536471784115, 0.013814442791044712, 0.0019728890620172024, -0.03543607145547867, -0.00013358835713006556, 0.05521277338266373, -0.006682230159640312, -0.030036287382245064, -0.042635779827833176, -0.01804427243769169, 0.0007161038811318576, -0.04198330640792847, 0.06713729351758957, -0.04355824366211891, -0.02432151883840561, 0.00011820811778306961, -0.010062718763947487, -0.020114189013838768, -0.01664932817220688, 0.021014152094721794, 0.017673036083579063, -0.007345953490585089, 0.023759040981531143, 0.03237619251012802, -0.033613644540309906, -0.04684310778975487, -0.04769807308912277, 0.048148058354854584, -0.013521954417228699, 0.012711986899375916, 0.02778637781739235, 0.054402805864810944, 0.010057094506919384, -0.012824482284486294, 0.010687069036066532, -0.028956331312656403, 0.034311115741729736, 0.024074029177427292, 0.004530754406005144, 0.022409096360206604, -0.0073684523813426495, -0.0199679434299469, -0.016896817833185196, -0.008144671097397804, -0.01794302649796009, 0.0015144700882956386, 0.0073909517377614975, 0.013499455526471138, -0.019709205254912376, -0.008960263803601265, 0.01777428202331066, -0.03336615487933159, -0.021295391023159027, 0.013094471767544746, -0.047113098204135895, -0.04792306572198868, -0.010512700304389, 0.05296286195516586, 0.025041488930583, -0.03577355667948723, 0.009106507524847984, 0.020924154669046402, -0.05588774383068085, -0.0268414169549942, -0.03473859652876854, 0.015276883728802204, 0.011063928715884686, -0.023061569780111313, -0.026638925075531006, -0.029091326519846916, -0.0007009873515926301, -0.007672190200537443, 0.010923309251666069, -0.015254383906722069, 0.004609501454979181, 0.012329502031207085, -0.05908261612057686, -0.06052255630493164, 0.03316366299986839, -0.0646623894572258, 0.012419498525559902, -0.026278939098119736, -0.030058786273002625, -0.012925728224217892, -0.059622593224048615, -0.014545663259923458, -0.014365670271217823, -0.02051917091012001, 0.028686342760920525, -0.04452570155262947, -0.013229466043412685, -0.030486268922686577, -0.04900302365422249, 0.0731220468878746, -0.0013949436834082007, -0.007188459858298302, -0.007959053851664066, 0.011665779165923595, 0.04315325990319252, 0.017279302701354027, -0.0006352477939799428, 0.0027772316243499517, 0.05489778518676758, -0.031228739768266678, -0.08144671469926834, -0.04135333001613617, -0.015063142403960228, -0.06025256961584091, -0.042275793850421906, -0.02888883464038372, -0.042275793850421906, 0.03885593265295029, 0.013308213092386723, -0.03822595626115799, 0.0008732459973543882, 0.025536470115184784, 0.007475323509424925, -0.04666311666369438, -0.009269625879824162, -0.017268052324652672, -0.003138623433187604, -0.012340751476585865, -0.006395366974174976, -0.018966734409332275, 0.019641706719994545, 0.006715978961437941, -0.003653289983049035, -0.038045965135097504, 0.0041342079639434814, 0.05021797493100166, 0.00208116602152586, 0.015715615823864937, 0.07577694207429886, -0.05773267149925232, 0.0010855811415240169, 0.03057626634836197, 0.034671101719141006, -0.00520853977650404, -0.032173700630664825, 0.01874174363911152, -0.03161122277379036, -0.006277246866375208, 0.0012212787987664342, -0.039485905319452286, -0.07361702620983124, -0.0030570640228688717, 0.01254324335604906, -0.03748348727822304, -0.020080439746379852, 0.012408249080181122, -0.025941453874111176, 0.03959840163588524, 0.007362827658653259, -0.034266117960214615, -0.0485980398952961, 0.013454456813633442, -0.0011748744873329997, -0.012217006646096706, -0.009640861302614212, -0.07177210599184036, -0.055482760071754456, -0.01288073044270277, 0.022431595250964165, -0.0369885079562664, 0.03923841565847397, 0.017403047531843185, 0.009022136218845844, -0.0025072426069527864, -0.02330905944108963, 0.0009027760825119913, 0.03608854487538338, 0.010045844130218029, -0.05629272758960724, -0.002972692484036088, 0.016593080013990402, 0.012633239850401878, 0.015276883728802204, -0.0016607142752036452, -0.03311866149306297, -0.0003457477723713964, -0.007779060862958431, 0.016941815614700317, -0.050892945379018784, -0.015704365447163582, -0.07019716501235962, 0.014658158645033836, 0.032893672585487366, -0.0017324300715699792, -0.04344574734568596, -0.009500241838395596, -0.003400175366550684, 0.02506398782134056, -0.0367635153234005, -0.050262972712516785, -0.00791405513882637, 0.016514332965016365, -0.029113825410604477, -0.005081982351839542, 0.031498730182647705, -0.014320671558380127, -0.009258376434445381, 0.011947018094360828, -0.005922886077314615, 0.029023827984929085, -0.015558121725916862, 0.00046298911911435425, 0.006434740498661995, -0.007019716780632734, -0.0009590237750671804, -0.019202975556254387, -0.0046066888608038425, 0.03435611352324486, 0.02119414508342743, 0.021711623296141624, -0.01303822360932827, -0.05170291289687157, -0.020777910947799683, 0.013769444078207016, -0.024861495941877365, 0.019922945648431778, -0.00894901342689991, -0.02542397379875183, 0.00843153428286314, -0.005883512552827597, -0.03800096735358238, 0.027628885582089424, -0.02643643319606781, 0.02140788547694683, -0.03503108769655228, 0.023219062015414238, -0.009202128276228905, 0.009927724488079548, -0.009607112035155296, -0.006474113557487726, -0.030013788491487503, 0.050622954964637756, 0.019540460780262947, 0.013758194632828236, -0.018078019842505455, 0.040205877274274826, 0.0208116602152586, -0.001721180509775877, 0.011255171149969101, 0.054402805864810944, -0.010298958979547024, 0.0014568162150681019, -0.07465198636054993, -0.04931800812482834, 0.015513123944401741, -0.03869843855500221, 0.028348855674266815, 0.01576061360538006, 0.009488992393016815, 0.013375709764659405, 0.051612917333841324, 0.041533324867486954, 0.01198076643049717, 0.044705696403980255, 0.04940800741314888, 0.03422112017869949, 0.018021773546934128, 0.041285835206508636, 0.030711259692907333, 0.003920466639101505, -0.010214587673544884, 0.06259247660636902, -0.0016846194630488753, -0.013341961428523064, -0.0228253286331892, -0.030013788491487503, -0.011913268826901913, -0.036741018295288086, 0.006997217424213886, 0.038428448140621185, -0.05116293579339981, 0.005200102459639311, 0.018539251759648323, 0.008909640833735466, -0.009117756970226765, -0.031813714653253555, -0.0025902078486979008, -0.02681891806423664, -0.00030444085132330656, 0.025986451655626297, -0.004021712578833103, 0.03883343189954758, -0.024051528424024582, -0.02326406165957451, -0.008437159471213818, -0.042050801217556, 0.00774531252682209, -0.008195294067263603, 0.02066541649401188, 0.019157975912094116, -0.010777064599096775, 0.02360154688358307, -0.029338816180825233, 0.01356695219874382, 0.004598252009600401, -0.009005261585116386, 0.031453728675842285, 0.01684056967496872, -0.040205877274274826, -0.0006215373869054019, -0.05354784056544304, 0.025963952764868736, 0.028393853455781937, 0.04513317719101906, 0.010591447353363037, -0.012138260528445244, -0.02085665799677372, 0.003287679748609662, 0.0026323937345296144, 0.041263334453105927, -0.025513969361782074, -0.029676301404833794, -0.04004838317632675, 0.00832466408610344, 0.02438901551067829, -0.01618809625506401, -0.038090962916612625, -0.018606748431921005, 0.03374863788485527, 0.026166444644331932, -0.02037292718887329, -0.05035296827554703, 0.022026611492037773, 0.03278117626905441, 0.05714769288897514, -0.0023314685095101595, 0.007154711056500673, -0.0077059390023350716, -0.07703688740730286, -0.024793999269604683, -0.037730976939201355, -0.012554493732750416, 0.023871537297964096, -0.04841804504394531, -0.012318252585828304, -0.006957844365388155, 0.0665523111820221, 0.021812869235873222, 0.056157734245061874, 0.03131873533129692, -0.016199346631765366, 0.008161545731127262, 0.022364096716046333, -0.0016930566634982824, -0.03750598803162575, -0.04002588614821434, 0.03242119029164314, 0.011969516985118389, -0.01806677132844925, 0.025963952764868736, 0.02643643319606781, -0.010827687568962574, 0.023016570135951042, 0.021104147657752037, 0.0027898873668164015, 0.01578311249613762, -0.005149479489773512, 0.003706725314259529, -0.07393201440572739, 0.00678347609937191, 0.07820684462785721, 0.0008985574822872877, 0.061377521604299545, 0.02823636122047901, -0.008836518041789532, 0.007374077569693327, -0.04342324659228325, 0.010940183885395527, 0.03975589573383331, -0.0092471269890666, 0.006654106546193361, 0.029361315071582794, -0.012970726937055588, -0.007542820647358894, -0.0024074027314782143, -0.002116320887580514, 0.013904438354074955, -0.058587636798620224, -0.010276460088789463, 0.015063142403960228, 0.043355751782655716, 0.01895548403263092, -0.0044998181983828545, 0.02179037034511566, -0.01614309847354889, 0.008684649132192135, -0.009325874038040638, 0.029406312853097916, 0.005861013662070036, 0.034311115741729736, -0.0033776762429624796, -0.048553042113780975, 0.0031667472794651985, -0.034626103937625885, -0.04425571486353874, 0.021846618503332138, -0.0034198618959635496, -0.0042635779827833176, 0.03026127815246582, -0.0012212787987664342, 0.016784323379397392, 0.035301074385643005, 0.008977137506008148, -0.059307605028152466, 0.03959840163588524, 0.016368089243769646, -0.03210620582103729, -0.026998911052942276, -0.015074391849339008, -0.002396153286099434, 0.010433954186737537, -0.013623200356960297, -0.021250391378998756, 0.0046882485039532185, 0.022454094141721725, -0.001536969211883843, -0.016199346631765366, -0.004460445139557123, 0.008600277826189995, -0.02030543051660061, -0.0008605902548879385, -0.012599491514265537, 0.016424337401986122, 0.01720055565237999, -0.01304947305470705, -0.009292124770581722, 0.015085641294717789, 0.0319037139415741, -0.012745735235512257, 0.022487841546535492, 0.006322244647890329, 0.04146582633256912, 0.0030148783698678017, -0.0737520232796669, -0.010158340446650982, -0.020395426079630852, -0.018348010256886482, 0.01717805676162243, 0.009820853359997272, 0.013296963647007942, -0.014545663259923458, 0.046753112226724625, -0.012453247793018818, -0.01462440937757492, -0.019979193806648254, 0.003453610697761178, -0.027403894811868668, -0.018348010256886482, -0.007537195924669504, 0.000515721389092505, -0.01592935621738434, 0.027336396276950836, -0.0014540038537234068, -0.03539106994867325, 0.02001294307410717, 0.012993225827813148, 0.010265210643410683, 0.03363614156842232, -0.015164388343691826, -0.03575105592608452, 0.002524116775020957, 0.02537897601723671, -0.011288919486105442, -0.0513429269194603, 0.005413843784481287, 0.00976460613310337, -0.011530784890055656, 0.03386113420128822, -0.0011347979307174683, 0.03226369619369507, 0.0014793153386563063, 0.0184942539781332, -0.012160759419202805, 0.003858594223856926, -0.038023464381694794, 0.025581467896699905, 0.002978317206725478, -0.02434401772916317, 0.03847344592213631, -0.009657735005021095, -0.040160879492759705, -0.009961472824215889, -0.01034395769238472, -0.060612551867961884, 0.04306326061487198, 0.007413450628519058, 0.03057626634836197, 0.007852182723581791, 0.0013604919658973813, -0.04697810485959053, 0.011913268826901913, -0.021025400608778, -0.08702648431062698, -0.027628885582089424, 0.01410693023353815, -0.016233094036579132, -0.00937087181955576, -0.004345137160271406, 0.028011368587613106, 0.001310572144575417, -0.0005090419435873628, -0.01861799880862236, -0.006057880353182554, -0.0051804156973958015, -0.05971258878707886, -0.0319037139415741, -0.032871171832084656, -0.02785387635231018, -0.0048457421362400055, -0.0073178294114768505, 0.015231885015964508, 0.012138260528445244, -0.06646231561899185, -0.011575782671570778, -0.01950671337544918, 0.03590855002403259, 0.02229660004377365, 0.012295753695070744, 0.034648600965738297, -0.04765307530760765, 0.021081648766994476, 0.027313897386193275, -0.005489778239279985, 0.0059622591361403465, 0.012307003140449524, 0.008127797394990921, 0.00991084985435009, -0.01946171373128891, -0.023579047992825508, 0.036673519760370255, 0.01963045820593834, 0.00835841242223978, -0.036718517541885376, 0.004893552511930466, 0.0005034171626903117, 0.03966590017080307, -0.022161604836583138, 0.013983185403048992, 0.0025438035372644663, -0.023399055004119873, 0.034963589161634445, 0.03446860983967781, 0.03966590017080307, -0.004682623315602541, 0.02645893208682537, 0.028371354565024376, -0.03032877668738365, 0.023556549102067947, 0.0260989461094141, -0.050307970494031906, -0.003456423059105873, -0.030823756009340286, 0.005354783963412046, 0.007030966226011515, -0.007874682545661926, 0.02126164175570011, -2.38393695326522e-05, 0.00028000824386253953, -0.039080921560525894, 0.032466188073158264, 0.01461315993219614, -0.03901342675089836, 0.010383331216871738, 0.0006781367119401693, -0.017043061554431915, 0.03442361205816269, -0.0008626995841041207, 0.006631607189774513, -0.00047845725202932954, 0.013206967152655125, 0.023556549102067947, 0.039125919342041016, 0.02785387635231018, -0.007694689556956291, -0.0033270532730966806, -0.015051892027258873, -0.007345953490585089, 0.003554856637492776, -0.022679084911942482, -0.06484238058328629, -0.024501511827111244, -0.016244344413280487, -0.02645893208682537, -0.02996879070997238, 0.002532554091885686, 0.0008134827949106693, -0.007199709303677082, -0.014658158645033836, -0.035256076604127884, -0.029293818399310112, -0.0073909517377614975, -0.044975683093070984, -0.0012037013657391071, 0.003909217193722725, 0.0018730494193732738, -0.0015510311350226402, -0.02438901551067829, 0.019022982567548752, -0.02994629181921482, 0.010613946244120598, -0.010231462307274342, -0.009449618868529797, -0.011800773441791534, -0.00827404111623764, -0.03653852641582489, -0.004969486966729164, 0.005917261354625225, -0.013161968439817429, -0.00566414650529623, 0.016244344413280487, -0.036381032317876816, 0.024164024740457535, -0.014489415101706982, 0.02206035889685154, -0.023579047992825508, 0.0015144700882956386, -0.013499455526471138, -0.0018477379344403744, -0.018831739202141762, 0.006018507294356823, 0.0208116602152586, -0.008920890279114246, -0.00417920621111989, 0.016975564882159233, 0.025266479700803757, -0.02535647712647915, 0.007852182723581791, 0.006159126292914152, -0.06835224479436874, -0.014196926727890968, 0.04277077317237854, -0.032151203602552414, 0.002863009460270405, -0.0021992861293256283, -0.032173700630664825, 0.014860650524497032, 0.02535647712647915, -0.009685859084129333, -0.04034087061882019, 0.009202128276228905, -0.0019222662085667253, -0.02713390439748764, -0.024141525849699974, 0.01720055565237999, -6.543193012475967e-05, -0.008605903014540672, -0.05732768774032593, -0.014781903475522995, -0.03509858250617981, 0.023466553539037704, 0.03264618292450905, -0.03273617848753929, -0.04904802143573761, -0.0217678714543581, -0.0016930566634982824, 0.005745705682784319, 0.022915324196219444, -0.014556912705302238, -0.014320671558380127, 0.03332115337252617, -0.012037014588713646, 0.004300138913094997, -0.013701947405934334, -0.008442784659564495, 0.01306072250008583, 0.01289197988808155, -0.03093625046312809, 0.014298172667622566, -0.014196926727890968, 0.013735695742070675, -0.04340074956417084, 0.009449618868529797, 0.03374863788485527, -0.05035296827554703, -0.03797846660017967, 0.04207330197095871, -0.0038529695011675358, -0.0013527579139918089, -0.04520067572593689, 0.02369154430925846, 0.060747548937797546, -0.019067980349063873, -0.03883343189954758, -0.046393126249313354, 0.0018364883726462722, -0.01139016542583704, -0.02037292718887329, 0.02470400370657444, 0.024186523631215096, -0.00993334874510765, -0.05174791067838669, -0.03350114822387695, -0.03856344521045685, -0.0036223537754267454, -0.0061197527684271336, -0.000743173121009022, 0.007981552742421627, 0.018707994371652603, 0.03098125010728836, -0.016221845522522926, 0.006063505075871944, -0.002276626881211996, 0.00024327142455149442, 0.008662150241434574, -0.010613946244120598, -0.0017155557870864868, -0.004446383100003004, 0.01982169970870018, -0.03271368145942688, 0.0030176907312124968, -0.010580197907984257, -0.022577838972210884, -0.04596564546227455, 0.021632876247167587, -0.023939033970236778, -0.034536104649305344, 0.0536828339099884, 0.002436932874843478, -0.030868753790855408, -0.03404112532734871, -0.028753839433193207, -0.010237086564302444, 0.005979133769869804, 0.023241562768816948, -0.007582194171845913, 0.017358049750328064, 0.010203338228166103, 0.009871476329863071, 0.009179629385471344, -0.020237933844327927, -0.003771410323679447, -0.012801983393728733, 0.0073178294114768505, -0.021126646548509598, 0.013229466043412685, 0.009725232608616352, 0.01916922628879547, 0.0008050456526689231, -0.01339820958673954, 0.03136373311281204, -0.007402201183140278, 0.01657058112323284, 0.0067441025748848915, 0.0014427542919293046, -0.003239869140088558, -0.016345590353012085, 0.011710776947438717, -0.018674246966838837, -0.019855448976159096, -0.008223418146371841, -0.03649352863430977, -0.011103302240371704, -0.030103784054517746, 0.019855448976159096, -0.007064715027809143, -0.03836095333099365, 0.01749304309487343, 0.024051528424024582, 0.03413112089037895, 0.014669408090412617, 0.007655316032469273, -0.002107883570715785, -0.025918953120708466, 0.018696745857596397, 0.017718035727739334, -0.00036877417005598545, 0.007092838641256094, -0.019911697134375572, -0.0154793756082654, -0.012273254804313183, 0.002571927383542061, 0.005838514305651188, -0.01876424252986908, -0.011002056300640106, -0.00946649257093668, -0.023421553894877434, -0.03098125010728836, -0.0073403287678956985, -0.02104790136218071, -0.00040252282633446157, 0.0004158816591370851, 0.022195354104042053, 0.0029530057217925787, 0.010844562202692032, -0.00414264528080821, 0.019574210047721863, -0.014286923222243786, -0.04661811888217926, 0.012768235057592392, 0.019664205610752106, 0.04011588171124458, 0.005039796698838472, 0.03689851239323616, 0.0058272648602724075, -0.006232248619198799, 0.0018139892490580678, 0.06817224621772766, -0.03093625046312809, 0.025896454229950905, 0.016998063772916794, 0.018393008038401604, -0.04936300590634346, -0.02020418457686901, 0.014129430055618286, 0.00878027081489563, -0.028326356783509254, -0.018797991797327995, -0.01823551394045353, 0.0073684523813426495, 0.03064376302063465, 0.0025283354334533215, 0.0026323937345296144, 0.013825692236423492, -0.019934196025133133, 0.009775855578482151, 0.03437861427664757, -0.02333155833184719, -0.02066541649401188, 0.0022822516039013863, -0.0479680635035038, -0.011277670040726662, -0.018483003601431847, 0.0226115882396698, 0.022431595250964165, -0.02051917091012001, -0.007587818894535303, -0.014421917498111725, 0.014118180610239506, 0.003498608712106943, -0.017740534618496895, -0.026233941316604614, -0.005391344893723726, 0.02193661406636238, 0.017673036083579063, 0.011677028611302376, -0.031431231647729874, 0.004370448645204306, 0.04738308861851692, 0.018483003601431847, 0.009663360193371773, 0.0309587512165308, -0.011491411365568638, 0.07433699816465378, -0.0005382204544730484, -0.007987177930772305, 0.028686342760920525, -0.007953428663313389, 0.0229265745729208, 0.03649352863430977, 0.025198983028531075, -0.01717805676162243, -0.004252328537404537, -0.002815198851749301, -0.00922462809830904, 0.02136288769543171, -0.0037798474077135324, -0.01355570275336504, 0.026571428403258324, 0.012824482284486294, 0.022487841546535492, 0.0024622443597763777, 0.0198666974902153, 0.023894036188721657, 0.010658944956958294, 0.02510898746550083, -0.00022446359798777848, 0.05467279255390167, 0.01094580814242363, -0.02438901551067829, 0.003594229929149151, -0.017448045313358307, 0.05908261612057686, -0.0036786014679819345, 0.0033973627723753452, 0.009353997185826302, 0.022499091923236847, 0.04148832708597183, 0.010349581949412823, 0.018865488469600677, 0.06799225509166718, 0.012262005358934402, -0.0021121022291481495, 0.03968839719891548, -0.007070339750498533, -0.009398995898663998, 0.016896817833185196, -0.022881576791405678, -0.019832950085401535, -0.002398965647444129, 0.0646623894572258, -0.03100374899804592, 0.018797991797327995, 0.04211829975247383, -0.025806458666920662, -0.04351324215531349, 0.011210172437131405, -0.012959476560354233, 0.007559694815427065, 0.021902866661548615, 0.02985629439353943, 0.024411514401435852, -0.017740534618496895, 0.0039260913617908955, 0.040925849229097366, 0.03923841565847397, 0.018348010256886482, 0.003942965995520353, 0.036741018295288086, 0.015906857326626778, 0.044300712645053864, -0.002785668708384037, 0.015918107703328133, -0.019405467435717583, -0.006755352485924959, 0.006884722039103508, 0.006232248619198799, -0.027021409943699837, -0.018336759880185127, -0.027313897386193275, 0.03851844370365143, -0.04756307974457741, 0.006440365221351385, -0.041510824114084244, -0.01093455869704485, -0.02087915688753128, 0.01667182706296444, 3.7297079416021006e-06, 0.044008225202560425, -0.015569371171295643, 0.03644852712750435, 0.0050538587383925915, 0.013004475273191929, -0.020294180139899254, 0.002674579620361328, 0.017988024279475212, -0.0016086851246654987, 0.01042832899838686, -0.02066541649401188, -0.003231432056054473, -0.010203338228166103, 0.027336396276950836, -0.035998545587062836, -0.01897798478603363, 0.04029587283730507, 0.011272044852375984, 0.022139105945825577, 0.0023399055935442448, 0.013218216598033905, 0.04382823035120964, 0.018989233300089836, -0.0013752570375800133, 0.026503929868340492, 0.005233851261436939, -0.008740897290408611, 0.0011868270812556148, 0.031093744561076164, 0.007149086333811283, -0.020935405045747757, -0.024479011073708534, 0.0003986557712778449, -0.009353997185826302, -0.009443993680179119, -0.01741429790854454, -0.0338161364197731, -0.010225837118923664, -0.0018153954297304153, -0.01876424252986908, -0.003973902203142643, 0.011587032116949558, 0.011789523996412754, 0.011722027324140072, -0.01601935364305973, 0.003549231681972742, 0.0073403287678956985, -0.0005825155531056225, -0.010878310538828373, 0.025581467896699905, 0.0369885079562664, 0.0077396878041327, -0.010113341733813286, 0.015378129668533802, 0.018460504710674286, 0.012385750189423561, 0.016413087025284767, -0.023196563124656677, 0.037011004984378815, 0.013375709764659405, 0.015321881510317326, -0.0007277050171978772, -0.060387562960386276, -0.0017872715834528208, -0.007475323509424925, 0.018707994371652603, -0.03413112089037895, 0.004511068109422922, 0.032128702849149704, -0.02645893208682537, -0.0239840317517519, -0.01760553941130638, 0.013611950911581516, 0.02360154688358307, 0.02499649114906788, -0.008364037610590458, -0.016683077439665794, 0.017301801592111588, -0.01914672739803791, -0.007593443617224693, -0.007711563725024462, -0.04130833223462105, -0.02819136157631874, -0.0037742226850241423, 0.02018168568611145, -0.007120962720364332, -0.03327615559101105, -0.006204124540090561, -0.012576992623507977, 0.0268414169549942, 0.02109289914369583, -0.008819644339382648, 0.02037292718887329, -0.014691906981170177, -0.014478165656328201, -0.001993982121348381, 0.053412843495607376, -0.003872656263411045, -0.008639651350677013, 0.04868803545832634, 0.0012578398454934359, -0.031161243095993996, -0.01043957844376564, 0.028258860111236572, 0.012610740959644318, -0.03404112532734871, -0.011227047070860863, 0.015018143691122532, 0.004570127930492163, 0.016030602157115936, -0.0013780693989247084, -0.01303822360932827, 0.05669771134853363, 0.00014747452223673463, -0.02155412919819355, 0.0026380184572190046, 0.04034087061882019, -0.03687601163983345, 0.00412014639005065, -0.012610740959644318, 0.006738477852195501, -0.0036701643839478493, -0.010833312757313251, -0.006159126292914152, -0.00470231007784605, 0.002761763520538807, -0.007435949984937906, -0.0038923427928239107, 0.0033579894807189703, -0.010782689787447453, 0.006884722039103508, -0.0239840317517519, -0.018336759880185127, -0.02003544196486473, -0.014264424331486225, 0.0018955485429614782, -0.016728075221180916, -0.030801257118582726, -0.02823636122047901, -0.007042215671390295, 0.032151203602552414, 0.03971089795231819, 0.008538405410945415, -0.0445932000875473, 0.005571337416768074, 0.002621144289150834, 0.0228253286331892, 0.034266117960214615, 0.037011004984378815, -0.013994434848427773, 0.012858230620622635, 0.0021866303868591785, -0.022431595250964165, -0.019157975912094116, 0.020429175347089767, -0.01199201587587595, 0.027313897386193275, 0.03242119029164314, 0.005315410438925028, -0.008290915749967098, -0.003287679748609662, 1.847825842560269e-05, -0.014748155139386654, -0.032826174050569534, -0.031183741986751556, -0.0011945611331611872, 0.006738477852195501, -0.032466188073158264, 0.0015763426199555397, -0.0033045541495084763, 0.04985798895359039, 0.011092051863670349, 0.010090842843055725, 0.018539251759648323, -0.005540401209145784, 0.05939760431647301, -0.0441657155752182, -0.00024555649724788964, 0.02576146088540554, -0.0004201002302579582, -0.010237086564302444, 0.0014125211164355278, -0.029991289600729942, 0.018831739202141762, 0.015231885015964508, 0.013510704971849918, 0.02850634977221489, -0.0009864445310086012, 0.021250391378998756, -0.011187673546373844, -0.005006047897040844, -0.00182523881085217, -0.013679447583854198, -0.032533686608076096, -0.04250078275799751, -0.017549291253089905, 0.023399055004119873, -0.008032175712287426, -0.02150913141667843, 0.04144332557916641, -0.008999636396765709, 0.01198076643049717, -0.015074391849339008, -0.002770200604572892, 0.017785532400012016, -0.022555340081453323, -0.011688278056681156, 0.008814019151031971, -0.013893188908696175, -0.0055769626051187515, 0.0004970892914570868, 0.010715192183852196, -0.01830301061272621, 0.00721658393740654, -0.01587310992181301, 0.02852884866297245, -0.0023244374897331, -0.0062941210344433784, 0.04322075471282005, 0.04551566392183304, 5.407801836554427e-06, 0.018606748431921005, 0.013341961428523064, 0.030733760446310043, -0.01302697416394949, 0.005067920312285423, -0.0022302225697785616, 0.011069552972912788, -0.003495796350762248, 0.012239505536854267, -0.016581831499934196, 0.01409568078815937, 0.0022133481688797474, -0.0018533626571297646, 0.0016818071017041802, 0.0002283306239405647, 0.031498730182647705, -0.00524510070681572, 0.020777910947799683, -0.020507922396063805, 0.02073291316628456, -0.01673932373523712, -0.022892825305461884, -0.005169166252017021, -0.042253293097019196, 0.039508406072854996, 0.009432744234800339, 0.0032004958484321833, 0.01461315993219614, -0.0006507158977910876, 0.0067891008220613, 0.005270412191748619, 0.009770230390131474, -0.009618361480534077, -0.0038445324171334505, -0.02857384644448757, -0.027291398495435715, 0.0018322698306292295, 0.0054700919426977634, 0.0302162803709507, 0.005413843784481287, 0.012936977669596672, -0.016109349206089973, -0.02371404320001602, 0.013994434848427773, 0.014039433561265469, -0.010102092288434505, -0.0317012220621109, 0.0393059141933918, 0.02051917091012001, -0.03577355667948723, -0.041510824114084244, -0.05314285680651665, 0.024726502597332, -0.05575275048613548, -0.0017338362522423267, 0.0035211078356951475, 0.014804402366280556, -0.029338816180825233, 0.012599491514265537, 0.007413450628519058, -0.009044635109603405, 0.02751638926565647, -0.0028517600148916245, 0.006665355991572142, -0.00721658393740654, -0.008746521547436714, 0.016694325953722, 0.004055461380630732, 0.013184468261897564, 0.00416795676574111, 0.006547235883772373, 0.01994544453918934, 0.03451360762119293, 0.012756984680891037, -0.010552073828876019, -0.008487782441079617, -0.013274463824927807, 0.020080439746379852, 0.022319098934531212, -0.018269263207912445, -0.009292124770581722, 0.0063278693705797195, 0.005382907576858997, 0.009264000691473484, -0.020361678674817085, 0.014500664547085762, 0.002380685182288289, 0.010304584167897701, 0.022094108164310455, 0.027403894811868668, -0.028731340542435646, -0.026211442425847054, -0.014219426549971104, 0.00026489165611565113, -0.035256076604127884, 0.016199346631765366, -0.012025764212012291, 0.030193781480193138, -0.008071549236774445, -0.02675141952931881, 0.016784323379397392, 0.01495064701884985, 0.0094046201556921, 0.0549427829682827, 0.0006208342965692282, 0.0017577415565028787, 0.015546872280538082, 0.01104142889380455, -0.019472964107990265, -0.02603144943714142, 0.008161545731127262, 0.011722027324140072, -0.011620781384408474, 0.0012444810708984733, -0.01700931414961815, -0.02172287367284298, 0.00287144654430449, -0.002986754523590207, 0.00039338256465271115, -0.037033505737781525, -0.00037053192500025034, -0.030148783698678017, -0.014736904762685299, -0.02140788547694683, -0.012205757200717926, -0.01289197988808155, 0.0060128821060061455, -0.02062041684985161, -0.028798837214708328, -0.01709930971264839, 0.03413112089037895, -0.002030543051660061, 0.03435611352324486, -0.03334365412592888, 0.0017099309479817748, -0.021824119612574577, -0.05417781323194504, 0.012363251298666, 0.01830301061272621, 0.006344744004309177, 0.007323454599827528, -0.014714405871927738, 0.007070339750498533, -0.044998183846473694, 0.017358049750328064, -0.021711623296141624, 0.04058836027979851, 0.004018900450319052, -0.023579047992825508, -0.002552240854129195, -0.0029530057217925787, 0.02677392028272152, 0.003040189854800701, 0.0042410786263644695, 0.010619571432471275, -0.004038587212562561, -0.019157975912094116, -0.0008387942798435688, 0.00820091925561428, 0.0023174064699560404, 0.007059090305119753, 0.0015285320114344358, 0.03235369548201561, -0.02571646124124527, -0.00730095524340868, -0.004319825675338507, -0.012486996129155159, -0.01585061103105545, 0.014354420825839043, 0.01893298514187336, 0.03415362164378166, 0.03363614156842232, 0.014298172667622566, -0.009539615362882614, 0.015411878004670143, 0.0015144700882956386, -0.015434376895427704, -0.014748155139386654, 0.009697108529508114, -0.0021950677037239075, 0.04774307459592819, -0.005329472478479147, -0.007284081075340509, -0.017133058980107307, -0.007784685585647821, -0.03935091197490692, 0.03415362164378166, 0.016795571893453598, -0.055482760071754456, -0.021644126623868942, -0.012486996129155159, -0.017763033509254456, 0.013308213092386723, 0.034941088408231735, 0.03365864232182503, -0.008521530777215958, 0.007537195924669504, -0.021475384011864662, -0.004446383100003004, 0.09971597790718079, -0.023399055004119873, -0.020710414275527, -0.019832950085401535, -0.010602696798741817, 0.0023905285634100437, -0.0013429145328700542, -0.02542397379875183, 0.03327615559101105, 0.029496310278773308, 0.04130833223462105, -0.019450465217232704, -0.01304947305470705, 0.02576146088540554, -0.03478359431028366, 0.008662150241434574, -0.010990806855261326, -0.002321625128388405, 0.001515876268967986, -0.023511551320552826, -0.013600701466202736, 0.008662150241434574, 0.0022302225697785616, -2.3619651983608492e-05, 0.01393818762153387, 0.02852884866297245, 0.007649691309779882, 0.003540794597938657, 0.04621313512325287, -0.038405951112508774, 0.01288073044270277, -0.014635658822953701, 0.032151203602552414, -0.015861859545111656, 0.043648239225149155, -0.02362404577434063, 0.010613946244120598, 0.016964314505457878, -0.047833070158958435, 0.019236722961068153, 0.0026830167043954134, -0.004384510684758425, 0.008920890279114246, -0.019619207829236984, -0.006642857100814581, 0.08608152717351913, -0.014230675995349884, 0.01878674142062664, -0.031026247888803482, -0.003251118818297982, 0.04738308861851692, -0.03343364968895912, -0.020271681249141693, -0.0077565619722008705, 0.03498608618974686, 0.016300592571496964, 0.029293818399310112, -0.021486632525920868, -0.0031161243095993996, -0.010073968209326267, 0.03557106480002403, -0.02819136157631874, 0.025558969005942345, -0.043333251029253006, -0.015771863982081413]], "input": ["AIRCRAFT HOLD:The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.", "PASSENGER AIRCRAFT CABIN:The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.", "CAGE:CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.", "WEIGHT:Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.", "PERMIT:A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.", "VETERINARY SERVICES DEPARTMENT:The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.", "CARGO:CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.", "APPROVAL:Approval from the EL AL service center is necessary for transporting pets in the Business cabin.", "GUIDELINES:The term \"GUIDELINES\" refers to the regulations established by the authorities of a destination country regarding the transportation of animals, as well as updated rules concerning the carrying of liquids in carry-on bags. These guidelines are essential for ensuring compliance with safety and welfare standards during travel.", "ANIMAL:Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations. These regulations are designed to ensure the safety and well-being of the animals during transportation.", "CDC:The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.", "CERTIFICATE OF GOOD HEALTH:A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey.", "TRANSPORT AUTHORIZATION:Transport authorization from the destination country authorities is required for transporting pets.", "EXPORT LICENSE:An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.", "MEASUREMENTS OF TRANSPORT CAGE:The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.", "DOGS:Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-ea02021876313d704a1d83822c84e2a4 b/cache/text_embedding/embedding-ea02021876313d704a1d83822c84e2a4 deleted file mode 100644 index 83765978363e4ed2bf821d3012be4b889ccfec53..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-ea02021876313d704a1d83822c84e2a4 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.05151432752609253, -0.013164508156478405, -0.02549506537616253, 0.054468896239995956, -0.014546483755111694, -0.006653735414147377, -0.02119426243007183, -0.0012680519139394164, 0.018787719309329987, 0.021027471870183945, -0.052181489765644073, 0.011508519761264324, -0.025137657299637794, -0.01738191582262516, 0.002081898506730795, 0.009977624751627445, 0.007279198616743088, -0.007267285138368607, 0.013343211263418198, 0.07205334305763245, -0.008196543902158737, 0.061140503734350204, 0.00493817962706089, 0.04410408064723015, -0.03283383324742317, -0.030689386650919914, 0.010674569755792618, 0.025232966989278793, 0.002945633139461279, -0.0582335889339447, 0.043150994926691055, -0.02230222523212433, 0.06047334149479866, -0.01801333576440811, 0.0071004945784807205, 0.01049586571753025, 0.014939631335437298, 0.001533873612061143, 0.02293364517390728, 0.004711821675300598, -0.03488296642899513, 0.00889348890632391, 0.06976593285799026, -0.02682938612997532, -0.05308692157268524, 0.0355977825820446, 0.008559908717870712, -0.047964081168174744, -0.0007937423652037978, 0.02232605218887329, -0.049512844532728195, 0.020396051928400993, 0.001876389142125845, 0.009787007234990597, 0.00832759402692318, -0.023934386670589447, 0.010305248200893402, 0.005298565607517958, 0.027496546506881714, 0.028616422787308693, 0.02118234895169735, -0.009381946176290512, 0.019478706642985344, 0.054659511893987656, -0.02436327561736107, -0.025328274816274643, 0.005003704223781824, 0.017655927687883377, -0.013200248591601849, -0.009244939312338829, 0.014367779716849327, 0.009971668012440205, -0.014355866238474846, -0.030617905780673027, -0.04286506772041321, 0.01688154600560665, 0.010257594287395477, -0.012413952499628067, 0.015344693325459957, 0.013402779586613178, -0.04536692053079605, -0.014510742388665676, 0.013498088344931602, -0.0033477165270596743, -0.01871623657643795, 0.024005867540836334, -0.04758284613490105, -0.0808693915605545, -0.020229261368513107, -0.02293364517390728, -0.023112349212169647, 0.01676240935921669, 0.014165248721837997, 0.06047334149479866, -0.03469235077500343, 0.011246421374380589, 0.005778087303042412, 0.0010729669593274593, 0.00828589592128992, 0.0673355683684349, -0.00022356580302584916, -0.00807145144790411, -0.01516598928719759, 0.012199508026242256, 0.09530865401029587, -0.039338648319244385, -0.010763920843601227, 0.04903630167245865, 0.008107192814350128, 0.040267907083034515, 0.00048361695371568203, -0.017334261909127235, -0.03662234917283058, 0.0787249505519867, -0.01049586571753025, -0.014939631335437298, -0.03335803002119064, -0.03400136157870293, -0.025733336806297302, 0.012723705731332302, -0.001308260252699256, -0.0020163736771792173, 0.01810864359140396, -0.04100655019283295, -0.008232285268604755, -0.01522555761039257, -0.04760667309165001, 0.02344592846930027, -0.004625448025763035, -0.012616483494639397, 0.01777506433427334, -0.01507068146020174, 0.02785395458340645, -0.06385679543018341, -0.02847346104681492, 0.0025092982687056065, 0.03221432492136955, -0.018132472410798073, 0.005042423494160175, -0.005825741682201624, 0.009691698476672173, -0.03319123759865761, -0.031737782061100006, 0.022397533059120178, -0.030808523297309875, -0.04062531515955925, -0.021241916343569756, 0.03860000520944595, 0.032142844051122665, -0.010013365186750889, -0.026400497183203697, 0.033048275858163834, -0.0018004400189965963, -0.033167410641908646, 0.022754941135644913, -0.03678914159536362, -0.0022337965201586485, -0.01738191582262516, -0.0138316685333848, 0.005968704354017973, -0.06871753931045532, -0.01746531017124653, -0.05356346443295479, -0.0474875383079052, -0.0011310456320643425, -0.012533088214695454, -0.036670006811618805, 0.021098952740430832, -0.019359569996595383, 0.02087259478867054, -0.03412050008773804, -0.023946300148963928, -0.006600124295800924, -0.009650001302361488, -0.006090818904340267, -0.010174199007451534, 0.0226358063519001, 0.032738521695137024, 0.0032821916975080967, 0.013938890770077705, 0.05027531459927559, -0.009078149683773518, -0.07071901857852936, 0.014617964625358582, 0.022766854614019394, 0.01667901501059532, -0.028616422787308693, -0.0019285110756754875, -0.02363654598593712, 0.033882226794958115, 0.014212903566658497, 0.007386420853435993, -0.05361111834645271, 0.028116052970290184, -0.06595358997583389, -0.0060104019939899445, -0.01023376639932394, -0.03185691684484482, 0.017322348430752754, -0.01798950880765915, -0.017095990478992462, -0.053849391639232635, 0.003952330909669399, -0.008673087693750858, -0.0837763100862503, -0.048702724277973175, 0.00019378185970708728, -0.01635734736919403, 0.02806839905679226, 0.009125803597271442, 0.01377210021018982, -0.025161484256386757, -0.0010610533645376563, 0.02252858318388462, -0.00532537093386054, 0.018978336825966835, 0.036264944821596146, -0.009000711143016815, 0.005927007179707289, -0.011955279856920242, -0.0008615009137429297, -0.021539755165576935, 0.08091704547405243, -0.013533828780055046, -0.02716296724975109, 0.008190587162971497, -0.008017840795218945, -0.01603568159043789, -0.02007438614964485, -0.05975852534174919, -0.033953707665205, 0.0043305871076881886, -0.032952968031167984, -0.03333420306444168, -0.01984802819788456, 0.021051298826932907, 0.002092322800308466, -0.010293334722518921, -0.035859882831573486, -0.03259555995464325, 0.0719580352306366, 0.033262722194194794, -0.00945938378572464, -0.029021484777331352, -0.006052099633961916, -0.022683460265398026, -0.0014601583825424314, -0.0025643985718488693, 0.039839018136262894, 0.03412050008773804, 0.011711050756275654, -0.033262722194194794, 0.10074124485254288, -0.05213383585214615, -0.011192809790372849, -0.01501111313700676, -0.007029013242572546, -0.01953827403485775, 0.016893459483981133, 0.008256112225353718, -0.02623370662331581, 0.01820395328104496, 0.028926176950335503, 0.006031251046806574, -0.04534309357404709, 0.05437358841300011, -0.022504756227135658, -0.02520914003252983, 0.010263551026582718, 0.010775835253298283, -0.05103778466582298, -0.059091366827487946, 0.020503275096416473, -0.015177903696894646, -0.01883537322282791, 0.04203111678361893, -0.0031928399112075567, -0.020944077521562576, 0.010507779195904732, 0.03469235077500343, -0.00853012502193451, -0.06380914151668549, 0.03157099336385727, -0.056089144200086594, 0.002035733312368393, -0.00711836526170373, 0.02313617616891861, -0.003115401603281498, -0.022993212565779686, 0.036955930292606354, 0.04431852325797081, -0.024291792884469032, -0.022254571318626404, 0.00021593367273453623, -0.027591856196522713, 0.024208398535847664, -0.039958152920007706, -0.0035442905500531197, -0.010597131215035915, 0.017262781038880348, -0.0006623207009397447, 0.022099694237113, 0.025375928729772568, 0.01161574199795723, -0.005602362100034952, 0.02139679342508316, -0.022957472130656242, -0.021825682371854782, -0.013200248591601849, 0.0374324731528759, 0.03860000520944595, 0.04562901705503464, -0.01996716298162937, 0.022135434672236443, -0.027639510110020638, -0.037480127066373825, 0.01536852028220892, -0.036860622465610504, -0.004652253817766905, -0.00384510844014585, 0.03362012654542923, -0.005504074972122908, 0.07734297215938568, 0.0070707108825445175, 0.019192781299352646, -0.03905272111296654, 0.040863584727048874, 0.02335062064230442, -0.02468494139611721, -0.0118718845769763, -0.010734137147665024, 0.0010171220637857914, 0.059091366827487946, -0.007011143025010824, 0.008375247940421104, -0.03240494430065155, -0.006802655290812254, 0.04022025316953659, 0.031928397715091705, 0.018954508006572723, 0.040172599256038666, -0.007440031971782446, -0.0032702782191336155, -0.003529398702085018, -0.06304667890071869, 0.024351362138986588, -0.02806839905679226, 0.001693217782303691, 0.022385619580745697, 0.035025931894779205, 0.011204724200069904, 0.026281362399458885, -0.012062502093613148, -0.041411612182855606, -0.04741605743765831, -0.03014136292040348, 0.044175561517477036, -0.011979106813669205, -0.007952315732836723, 0.022266484797000885, -0.01983611471951008, -0.02685321308672428, 0.01259265560656786, 0.022480929270386696, -0.010454168543219566, 0.020419878885149956, -0.02559037320315838, -0.0027669293340295553, 0.0041340128518640995, -0.04984642565250397, -0.003991049714386463, -0.019180865958333015, -0.039124201983213425, -0.008095279335975647, 0.002801181050017476, 0.03252407908439636, 0.012568828649818897, 0.009703612886369228, 0.0013343212194740772, 0.02262389287352562, 0.024923212826251984, 0.01983611471951008, 0.02425605244934559, 0.014153335243463516, 0.031404200941324234, 0.0717674195766449, -0.0582335889339447, -0.022766854614019394, -0.0015048342756927013, -0.011585958302021027, -0.004357392434030771, -0.0016187579603865743, -0.010966451838612556, 0.016845805570483208, 0.0036098153796046972, 0.046534452587366104, -0.03917185589671135, 0.0675261840224266, 0.03314358368515968, -0.04043469578027725, 0.02271920070052147, -0.038314078003168106, 0.021956730633974075, 0.059091366827487946, -0.025232966989278793, 0.04162605479359627, 0.010787748731672764, -0.0036902320571243763, 0.04701099544763565, 0.0022144371178001165, 0.03881445154547691, -0.011538304388523102, 0.030522596091032028, 0.02426796592772007, 0.000932982366066426, 0.043436918407678604, 0.04353222995996475, 0.016202472150325775, 0.024923212826251984, -0.009358118288218975, 0.03917185589671135, 0.07014717161655426, -0.021110866218805313, 0.008786266669631004, 0.005781065672636032, 0.07415013015270233, -0.03750395402312279, -0.042221732437610626, 0.027687164023518562, -0.06328494846820831, -0.0053998311050236225, 0.012545001693069935, 0.04446148872375488, 0.03002222627401352, 0.006868179887533188, -0.023708028718829155, -0.004214429762214422, 0.01229481678456068, 0.023791423067450523, -0.023517411202192307, -0.017632100731134415, -0.023529324680566788, -0.00786892045289278, 0.02518531121313572, -0.04279358685016632, -0.03443025052547455, -0.021778028458356857, 0.038838278502225876, 0.0014795179013162851, 0.02333870716392994, -0.028425807133316994, 0.022242657840251923, -0.036765314638614655, 0.0006440780125558376, -0.014963459223508835, -0.0436275377869606, -0.0009359607938677073, -0.035621609538793564, 0.02590012736618519, 0.030665559694170952, 0.03900506719946861, 0.05437358841300011, 0.024232225492596626, 0.010996236465871334, 0.04029173403978348, -0.039648398756980896, -0.0015115357236936688, -0.0008696914883330464, -0.043746672570705414, -0.056803956627845764, 0.033167410641908646, -0.020324571058154106, 0.015868891030550003, 0.032142844051122665, 0.030403461307287216, -0.019716978073120117, 0.01706025004386902, -0.01975271850824356, -0.000557704537641257, 0.03443025052547455, 0.007189846597611904, 0.022754941135644913, -0.01963358372449875, -0.038218770176172256, 0.05632741376757622, 0.0009970178361982107, 0.03674148768186569, 0.02952185645699501, -0.006558426655828953, -0.001752785756252706, 0.023171916604042053, 0.00434547895565629, 0.0052032568491995335, -0.010710310190916061, -0.027591856196522713, 0.015499570406973362, 0.016643274575471878, -0.0068741366267204285, 0.0020104169379919767, 0.020550929009914398, -0.008190587162971497, -0.016119075939059258, -0.042745932936668396, 0.03745630010962486, 0.021539755165576935, 0.021849509328603745, 0.008911359123885632, 0.014296297915279865, 0.035859882831573486, -0.0048547848127782345, -0.03478765860199928, -0.02918827533721924, 0.0024139895103871822, -0.020217347890138626, -0.026471978053450584, -0.023160003125667572, -0.002948611509054899, 0.005965725984424353, -0.025995435193181038, 0.0026343907229602337, -0.022969385609030724, 0.03590753674507141, 0.0021116824354976416, 0.032738521695137024, -0.023576978594064713, 0.014975372701883316, -0.0036604481283575296, -0.06924173980951309, 0.0323096327483654, -0.008297809399664402, -0.01676240935921669, -0.01480858214199543, -0.009423643350601196, 0.032142844051122665, 0.013784014619886875, -0.015559137798845768, -0.015106421895325184, 0.006743087433278561, -0.00632611196488142, 0.00277735386043787, -0.016214385628700256, -0.019061731174588203, -0.023183830082416534, -0.01952636055648327, 0.010829445905983448, 0.004985834006220102, -0.0020774309523403645, 0.029021484777331352, 0.005807870998978615, 0.031094448640942574, 0.017429569736123085, -0.008565865457057953, 0.007017099764198065, -0.002128063468262553, 0.008387161418795586, -0.0020491359755396843, 0.02096790447831154, -0.016833892092108727, 0.027329755946993828, 0.0226358063519001, 0.016726668924093246, 0.0027356562204658985, -0.016083335503935814, -0.017429569736123085, -0.014379693195223808, 0.031713955104351044, 0.006439290940761566, 0.028259016573429108, 0.0015964199556037784, -0.012413952499628067, 0.00951299536973238, 0.0025643985718488693, 0.024732595309615135, -0.048893339931964874, 0.009745310060679913, 0.009090063162147999, 0.049417536705732346, -0.07596100121736526, -0.011234507896006107, 0.03602667152881622, 0.004667145665735006, 0.014475001953542233, -0.00013058402691967785, -0.023600805550813675, 0.009024538099765778, 0.011228551156818867, -0.017215125262737274, -0.034096673130989075, -0.01327173039317131, -0.008637347258627415, 0.0012702856911346316, 0.028354324400424957, 0.0025092982687056065, -0.01084135938435793, -0.0038957411888986826, 0.03771840035915375, -0.0023380403872579336, 0.03221432492136955, -0.01605950854718685, 0.039624571800231934, 0.021158521994948387, -0.004786281380802393, -0.006272500846534967, -0.012008890509605408, -0.01901407726109028, 0.027186794206500053, 0.010013365186750889, -0.014379693195223808, 0.01665518805384636, 0.022909818217158318, 0.034716177731752396, -0.03857617825269699, -0.024136917665600777, -0.019895682111382484, 0.0010796684073284268, -0.012985804118216038, 0.009328334592282772, -0.023934386670589447, -0.01522555761039257, -0.00012937404972035438, -0.02345784194767475, -0.007314939051866531, 0.008827963843941689, -0.00854203850030899, 0.006081883329898119, 0.03640790656208992, -0.0063856798224151134, -0.012211421504616737, -0.008214415051043034, -0.003857022151350975, -0.0017989508341997862, 0.014332039281725883, -0.0237437691539526, -0.016369260847568512, -0.027234448119997978, 0.041792843490839005, -0.006546513177454472, -0.03941012918949127, -0.02725827507674694, -0.008589692413806915, 0.02561420015990734, -0.006617994513362646, 0.021098952740430832, -0.028425807133316994, 0.03493062034249306, 0.024732595309615135, -0.0002915104560088366, 0.0020729631651192904, 0.04801173508167267, -0.01882345974445343, 0.003728951094672084, -0.0037468215450644493, -0.01105580385774374, 0.01872815005481243, -0.004530139733105898, -0.0015755712520331144, 0.006367809604853392, 0.07858198881149292, 0.023064695298671722, -0.021432533860206604, -0.034525562077760696, -0.03941012918949127, -0.0011347687104716897, -0.020384138450026512, -0.016107162460684776, 0.014069939963519573, 0.025542719289660454, 0.010513735935091972, 0.004878611769527197, -0.020539015531539917, -0.04994173347949982, -0.07395951449871063, 0.003919568378478289, -0.010090803727507591, -0.004366327542811632, -0.001400590525008738, -0.006772871129214764, 0.007225587498396635, -0.013247903436422348, 0.029593337327241898, 0.007076667621731758, -0.013033458963036537, -0.004038704093545675, -0.0075949085876345634, 0.008410988375544548, -0.014343952760100365, 0.02046753279864788, -0.040672969073057175, 0.015118335373699665, 0.02654346078634262, -0.0069158342666924, 0.0022471994161605835, 0.010162285529077053, -0.0032256022095680237, -0.0161548163741827, -0.0007297068950720131, 0.03798050060868263, -0.009215155616402626, 0.011276205070316792, -0.027687164023518562, -0.00434547895565629, 0.029259756207466125, 8.846765558701009e-05, -0.02778247371315956, -0.008017840795218945, 0.0032553861383348703, -0.026043089106678963, -0.001557700801640749, 0.016905372962355614, -0.0016425851499661803, -0.013664877973496914, 0.006403550039976835, -0.01801333576440811, 0.00366342649795115, 0.009072192944586277, -0.005900201387703419, 0.00812506303191185, 0.050227660685777664, 0.014022286050021648, -0.006969445385038853, -0.03838556259870529, 0.0197288915514946, -0.04224556311964989, -0.006540556438267231, 0.0034847226925194263, 0.02323148399591446, -0.021313397213816643, 0.00023045335547067225, -0.03495445102453232, -0.00307370419614017, -0.020026730373501778, -0.01084135938435793, -0.01645265705883503, 0.01686963252723217, -0.009167501702904701, 0.01244969293475151, -0.044390007853507996, -0.004107207525521517, 0.0308561772108078, -0.006099754013121128, 0.042841240763664246, -0.01801333576440811, -0.011585958302021027, -0.04708247631788254, 0.04310334101319313, -0.0069873156026005745, -0.015678273513913155, 0.0068443529307842255, -0.0013395333662629128, -0.026900867000222206, -0.01667901501059532, 0.008184630423784256, -0.0004329842340666801, -0.017536792904138565, 0.03581222891807556, -0.021039385348558426, 0.0019821221940219402, 0.01187784131616354, -0.03002222627401352, 0.010769877582788467, -0.011139199137687683, 0.03845704346895218, 0.0037229943554848433, 0.020634323358535767, 0.02590012736618519, -0.007815309800207615, -0.04286506772041321, 0.0047922381199896336, -0.024661114439368248, 0.014534570276737213, 0.019109385088086128, 0.004187623970210552, 0.01717938482761383, 0.003448982024565339, 0.02983160875737667, 0.008547995239496231, -0.054659511893987656, 0.0325002521276474, -0.05046593397855759, 0.012866668403148651, 0.005927007179707289, -0.031713955104351044, 0.02139679342508316, 0.022683460265398026, -0.012223334982991219, -0.011121328920125961, -0.04593877121806145, -0.00475351931527257, 0.02086068131029606, -0.009203242138028145, 0.008160803467035294, -0.009548735804855824, 0.011037933640182018, -0.04224556311964989, -0.008387161418795586, -0.003154120873659849, 0.006606081034988165, -0.030617905780673027, 0.03609815239906311, 0.03576457127928734, 0.011663396842777729, -0.023982040584087372, 0.015523397363722324, 0.02211160771548748, 0.036955930292606354, 0.026281362399458885, -0.04472358524799347, -0.024005867540836334, 0.0058048926293849945, 0.0073625934310257435, -0.036765314638614655, 0.006007423624396324, 0.0003853299131151289, 0.019979076460003853, 0.01111537218093872, -0.013819755055010319, -0.02911679446697235, 0.030784696340560913, -0.019693151116371155, -0.029593337327241898, 0.0376230925321579, -0.029164448380470276, 0.03209519013762474, 0.003332824446260929, 0.01686963252723217, 0.034525562077760696, 0.003708102274686098, 0.01623821258544922, 0.0028160728979855776, -0.016988767310976982, 0.031833089888095856, -0.016631361097097397, 0.006796698551625013, -0.018335003405809402, -0.016524137929081917, -0.006671605631709099, -0.023422101512551308, 0.023112349212169647, -0.0029620144050568342, 0.013617224059998989, 0.031833089888095856, 0.00044638701365329325, -0.03643173351883888, -0.0059121148660779, -0.01110941544175148, 0.03190457075834274, 0.029593337327241898, -0.01367679238319397, -0.02837815135717392, 0.003728951094672084, -0.030594078823924065, -0.023910559713840485, -0.009280680678784847, 0.005655973218381405, 0.010466082021594048, -0.03757543861865997, -1.706760303932242e-05, 0.01688154600560665, -0.05103778466582298, -0.003276234958320856, -0.03390605375170708, 0.019419139251112938, -0.0028696840163320303, 0.02294555865228176, -0.01963358372449875, -0.028711732476949692, 0.034597042948007584, 0.022469015792012215, -0.031928397715091705, -0.0035979016683995724, 0.04288889467716217, -0.02344592846930027, 0.024827904999256134, 0.018251607194542885, -0.019716978073120117, -0.029855435714125633, 0.028425807133316994, 0.07067136466503143, -0.01243777945637703, -0.006594167556613684, 0.027401238679885864, 0.033977534621953964, 0.04134012758731842, 0.0068086120299994946, -0.017322348430752754, -0.011091544292867184, -0.038099635392427444, 0.03126123920083046, -0.004434830974787474, 0.005021574907004833, 0.0042829327285289764, 0.008101236075162888, -0.009983581490814686, -0.002204012591391802, 0.021313397213816643, -0.023779509589076042, -0.017632100731134415, 0.007666389923542738, -0.012122069485485554, -0.0063856798224151134, -0.014570310711860657, 0.025423584505915642, -0.020729633048176765, -0.022349879145622253, -0.043770499527454376, 0.03423963487148285, 0.026567287743091583, -0.026877040043473244, 0.006641821935772896, 0.02158741094172001, 0.0006180170457810163, -0.022897904738783836, -0.020014816895127296, 0.014081853441894054, 0.06766914576292038, 0.02570950984954834, -0.0015174924628809094, -0.008935186080634594, -0.017977595329284668, -0.007999970577657223, 0.020002903416752815, -0.0008101235725916922, 0.010501822456717491, -0.022659633308649063, 0.04615321755409241, -0.008601605892181396, 0.005271759815514088, 0.029974572360515594, 0.05365877225995064, -0.027687164023518562, 0.013438520021736622, 0.004029768984764814, 0.003311975859105587, 0.05399235337972641, 0.024541977792978287, -0.025542719289660454, 0.0201696939766407, 0.004405046813189983, 0.025018522515892982, -0.04055383428931236, 0.013009631074965, -0.051990870386362076, -0.044795066118240356, -0.024029694497585297, 0.014749014750123024, 0.0019344678148627281, 0.013700619339942932, 0.02005055919289589, 0.005271759815514088, 0.041387785226106644, 0.0170721635222435, -0.020205434411764145, 0.07419779151678085, 0.02078920044004917, -0.023731855675578117, -0.023779509589076042, 0.04341309145092964, -0.0005900945980101824, 0.025733336806297302, -0.022147348150610924, 0.01809673011302948, 0.021766114979982376, -0.0004854784638155252, -0.023839076980948448, 0.028449634090065956, 0.042531486600637436, -0.008780309930443764, 0.011764662340283394, 0.0454622283577919, 0.0013618713710457087, 0.0015964199556037784, 0.0006921046297065914, 0.028616422787308693, 0.034191980957984924, -0.016095248982310295, 0.004413981921970844, 0.0057185194455087185, 0.0019017055165022612, 0.03740864619612694, -0.0038272382225841284, 0.005244954489171505, 0.035025931894779205, 0.011002193205058575, -0.009393859654664993, -0.03116592951118946, 0.014689446426928043, 0.004393133334815502, 0.003311975859105587, -0.0007419927860610187, 0.017024507746100426, 0.009012624621391296, 0.037384819239377975, -0.017644014209508896, -0.0044229174964129925, -0.007046883460134268, 0.048988647758960724, 0.022766854614019394, 0.02847346104681492, 0.031499508768320084, 0.04555753618478775, 0.007517470046877861, 0.036646176129579544, 0.007940402254462242, 0.05656568706035614, 0.024661114439368248, -0.01389123685657978, 0.0004932967713102698, -0.009286637417972088, 0.012890495359897614, 0.005772130563855171, 0.03147568181157112, 0.02940271981060505, -0.0034936578013002872, -0.0008294831495732069, -0.01480858214199543, -0.02096790447831154, 0.02243327535688877, -0.029688645154237747, -0.019907595589756966, -0.006653735414147377, 0.010388643480837345, 0.014284384436905384, 0.016536051407456398, 0.010871143080294132, 0.03895741328597069, 0.0024646222591400146, 0.012390125542879105, 0.037075065076351166, 0.01688154600560665, 0.00869691465049982, 0.012270988896489143, -0.017953768372535706, 0.02654346078634262, 0.034716177731752396, 0.012199508026242256, -0.008959013968706131, 0.004113164264708757, -0.029640991240739822, 0.009322377853095531, 0.028568768873810768, -0.013879322446882725, -0.02499469555914402, -0.02859259583055973, 0.013009631074965, 0.01646457053720951, -0.04300802946090698, 0.006689476314932108, -0.0007691706414334476, -0.009328334592282772, 0.026591114699840546, -0.014677532948553562, 0.024005867540836334, -0.046534452587366104, -0.018358830362558365, 0.008649260737001896, -0.016095248982310295, -0.0056351241655647755, -0.03023667074739933, -0.01943105272948742, -0.028926176950335503, -0.018072903156280518, -0.026877040043473244, -0.012616483494639397, 0.012413952499628067, 0.014784755185246468, -0.02509000338613987, -0.05399235337972641, -0.003848087042570114, 0.011776575818657875, -0.023874817416071892, -0.0011057293741032481, 0.012926236726343632, 0.02754420042037964, 0.007017099764198065, -0.011168982833623886, -0.0004996258649043739, -0.04112568497657776, -0.009405773133039474, -0.003094552783295512, -0.03774222731590271, 0.0026775775477290154, 0.013498088344931602, 0.02005055919289589, -0.011484692804515362, -0.012902408838272095, -0.014927717857062817, 0.017727410420775414, 0.0019925464875996113, 0.01244969293475151, -0.020955990999937057, -0.05470716953277588, 0.011121328920125961, -0.013355125673115253, 0.0015755712520331144, -0.010317161679267883, 0.02735358476638794, 0.02458963356912136, 0.025971608236432076, 0.04341309145092964, -0.019931422546505928, 0.02623370662331581, 0.006361852865666151, 0.03197605535387993, -0.010466082021594048, 0.036550868302583694, -0.012157809920608997, -0.01770358346402645, 0.0025435497518628836, -0.028306670486927032, 0.02468494139611721, 0.02068197727203369, -0.0031243369448930025, -0.008494383655488491, 0.00016055413288995624, 0.012973890639841557, -0.027949262410402298, -0.021742286160588264, -0.012110156007111073, 0.009298550896346569, 0.010406513698399067, 0.004482485353946686, -0.028235189616680145, -0.015773583203554153, 0.003651512786746025, 0.013784014619886875, -0.02642432413995266, 0.01084731612354517, 0.004232299979776144, 0.0392671674489975, -0.06071161478757858, -0.029569510370492935, 0.01747722551226616, -0.042507659643888474, -0.01008484698832035, 0.018954508006572723, 0.04257914051413536, -0.02324339747428894, -0.06028272584080696, -0.00555172935128212, 0.038504697382450104, 0.018847286701202393, 0.029569510370492935, -0.029974572360515594, 0.012723705731332302, -0.0146537059918046, -0.0020997687242925167, -0.03879062086343765, 0.06928939372301102, 0.006183148827403784, -0.02397012710571289, 0.024017781019210815, 0.050561241805553436, 0.015678273513913155, -0.017870372161269188, 0.03423963487148285, -1.15180137072457e-06, -0.004750540945678949, 0.0228264220058918, 0.03674148768186569, 0.062474824488162994, 0.03535950928926468, -0.01644074358046055, -0.009084106422960758, 0.04298420250415802, -0.023112349212169647, 0.020634323358535767, -0.0034043060149997473, 0.014296297915279865, -0.02285025082528591, 0.040458522737026215, -0.021230002865195274, 0.031737782061100006, -0.014010372571647167, -0.015916544944047928, -0.024125004187226295, -0.010352903045713902, 0.0063856798224151134, 0.01667901501059532, 0.011591915041208267, -0.0012256096815690398, 0.003901698160916567, 0.006052099633961916, -0.041697535663843155, -0.009393859654664993, 0.008005927316844463, 0.00910793337970972, 0.01924043521285057, 0.012390125542879105, -0.04960815608501434, 0.018251607194542885, 0.015785496681928635, 0.023839076980948448, 0.03774222731590271, -0.020550929009914398, -0.015106421895325184, -0.00043968562385998666, -0.004982855636626482, 0.02601926214993, 0.03176160901784897, -0.037694573402404785, -0.001922554220072925, 0.003058812115341425, 0.0011116861132904887, -0.014093766920268536, -0.02302895300090313, 0.009733396582305431, -0.010001451708376408, -0.024732595309615135, 0.004667145665735006, -0.01882345974445343, -0.014475001953542233, 0.014713273383677006, -0.04338926449418068, -0.006075926590710878, -0.0032941054087132215, -0.028211362659931183, 0.001217419165186584, 0.011937408708035946, -0.03207136318087578, 0.026066917926073074, 0.022492842748761177, 0.012270988896489143, 0.0022084801457822323, -0.0090424083173275, 0.004184645600616932, 0.023731855675578117, -0.02106321230530739, 0.03736099228262901, -0.006939661223441362, -0.004431852605193853, 0.037289511412382126, -0.034811485558748245, -0.020908337086439133, -0.018084816634655, 0.013915063813328743, 0.005602362100034952, 0.031952228397130966, -0.010364816524088383, 0.021551670506596565, 0.004318673629313707, -0.014975372701883316, 0.04410408064723015, 0.010757964104413986, 0.005262824706733227, -0.038194943219423294, -0.022480929270386696, 0.0016783258179202676, 0.024113088846206665, -0.014010372571647167, -0.019085558131337166, 0.05637506768107414, -0.018025249242782593, 0.005078164394944906, -0.001864475547336042, -0.008959013968706131, 0.021742286160588264, 0.01965741068124771, -0.018680496141314507, -0.016071422025561333, -0.0013678281102329493, -0.02406543493270874, -0.012425865978002548, -0.031428027898073196, -0.005411744583398104, 0.030498769134283066, 0.023672286421060562, 0.004625448025763035, -0.0021340204402804375, 0.007767655421048403, 0.030212843790650368, -0.013795928098261356, -0.021003644913434982, -0.005313457455486059, 0.01604759506881237, 0.030808523297309875, 0.04157840088009834, 0.02559037320315838, 0.019514447078108788, 0.010781791992485523, -0.022588150575757027, 0.026591114699840546, 0.01183018647134304, 0.004872655030339956, -0.036264944821596146, 0.015916544944047928, 0.017215125262737274, 0.020443705841898918, -0.005474290810525417, 0.027925435453653336, -0.04079210385680199, -0.052896302193403244, -0.01708407700061798, 0.015618706122040749, -0.042197905480861664, 0.009733396582305431, 0.017536792904138565, 0.013950804248452187, -0.0292121022939682, 0.012050587683916092, -6.654852313658921e-06, -0.026900867000222206, 0.035311855375766754, -0.03342951089143753, -0.017727410420775414, 0.01044225413352251, 0.008470556698739529, 0.007314939051866531, -0.017334261909127235, -0.007928488776087761, -0.007166019640862942, -0.019788458943367004, 0.04884568601846695, -0.011848057620227337, -0.002162315184250474, 0.0029039354994893074, 0.026090744882822037, -0.015201730653643608, -0.00472969189286232, 0.0050245532765984535, -0.006546513177454472, 0.0020655172411352396, 0.0002406915882602334, -0.011657440103590488, -0.015916544944047928, 0.0076425629667937756, -0.03733716532588005, -0.0028488351963460445, -0.005834676790982485, 0.02530444785952568, 0.007773612160235643, -0.0010536074405536056, -0.006594167556613684, -0.032333459705114365, -0.028521114960312843, -0.01244969293475151, -0.004464614670723677, 0.014069939963519573, 0.022278398275375366, 0.006796698551625013, 0.02149210125207901, 0.0037229943554848433, -0.019514447078108788, 0.003529398702085018, 0.005873396061360836, 0.01913321204483509, 0.0022144371178001165, -0.009900186210870743, -0.02561420015990734, -0.006647778674960136, -0.0011183874448761344, 0.013164508156478405, -0.008214415051043034, -0.032547906041145325, 0.000932982366066426, -0.020622409880161285, 0.017417656257748604, 0.0025346146430820227, 0.01605950854718685, 0.013736359775066376, 0.005027531646192074, 0.03817111626267433, 0.024029694497585297, -0.005072207655757666, 0.04677272215485573, 0.020908337086439133, 0.029688645154237747, 0.02159932442009449, -0.011395340785384178, -0.039433956146240234, 0.01831117458641529, -0.041101858019828796, -0.019502533599734306, 0.023469755426049232, -0.026305189356207848, -0.019407225772738457, -0.02302895300090313, -0.0007576293428428471, 0.028664078563451767, -0.008416946046054363, 0.016524137929081917, -0.008637347258627415, -0.024851731956005096, 0.014844322577118874, -0.0039374385960400105, -0.010609044693410397, -0.002460154704749584, -0.02150401473045349, -0.0041906023398041725, -0.021218089386820793, -0.03390605375170708, -0.03035580739378929, 0.019097471609711647, 0.016405003145337105, -0.019490620121359825, 0.011925495229661465, -0.016536051407456398, 0.00991805735975504, 0.019192781299352646, -0.029045311734080315, -0.015237471088767052, -0.012020803987979889, 0.03392988070845604, -0.03135654702782631, 0.005250911228358746, 0.013700619339942932, 0.01049586571753025, 0.0040476396679878235, 0.007148148957639933, -0.05718519166111946, 0.006921791005879641, -0.013879322446882725, 0.03404901549220085, 0.013724446296691895, 0.0011839121580123901, 0.007886791601777077, 0.0007989545702002943, -0.016071422025561333, 0.01883537322282791, -0.008113149553537369, -0.019621670246124268, -0.02744889259338379, -0.027806300669908524, 0.007845093496143818, -0.006999229546636343, 0.00904836505651474, 0.01013845857232809, 0.0021325312554836273, -0.00889348890632391, 0.026114571839571, 0.020122040063142776, -0.01626203954219818, -0.03054642304778099, -0.0039076549001038074, -0.004366327542811632, 0.023874817416071892, -0.026305189356207848, -0.016393087804317474, 0.024351362138986588, 0.023708028718829155, 0.017536792904138565, 0.0228264220058918, -0.010996236465871334, 0.02345784194767475, -0.005134753882884979, -0.036646176129579544, -0.007720001041889191, -0.003443025052547455, -0.04060148820281029, -0.003618750488385558, 0.029140621423721313, -0.029164448380470276, 0.024196485057473183, 0.007600865326821804, 0.007171976380050182, 0.00037825622712261975, -0.019204694777727127, -0.02161123789846897, 0.015118335373699665, -0.010144415311515331, -0.013641051016747952, -0.017929941415786743, 0.0009166012168861926, -0.0003186883113812655, -0.00869691465049982, 0.009423643350601196, 0.005304522346705198, 0.0209917314350605, 0.009912099689245224, -0.009888272732496262, -0.030189016833901405, -0.021372966468334198, 0.06900346279144287, 0.02580481767654419, 0.002822029637172818, 0.0009374499786645174, -0.005950834136456251, -0.0006317921215668321, -0.0019955248571932316, 0.0374324731528759, -0.0212776567786932, 0.0075949085876345634, -0.032643213868141174, 0.011651483364403248, 0.0042471918277442455, 0.02150401473045349, 0.01603568159043789, -0.011848057620227337, -0.001626203884370625, 0.03509741276502609, -0.01758444681763649, 0.008148889988660812, 0.062379512935876846, 0.001705131377093494, 0.004324630368500948, -0.0031690127216279507, -0.03619346022605896, 0.00632611196488142, 0.03154716640710831, 0.024220312014222145, 0.027996918186545372, -0.013498088344931602, 0.04686802998185158, 0.0050811427645385265, 0.024399016052484512, -0.014200989156961441, 0.03412050008773804, -0.025542719289660454, 0.024232225492596626, 0.0032226238399744034, 0.035645436495542526, 0.002107214881107211, 0.04143543913960457, -0.0021414663642644882, -0.019478706642985344, -0.018787719309329987, 0.0027252319268882275, 0.003946374170482159, -0.0044229174964129925, 0.025423584505915642, -0.009322377853095531, -0.038004327565431595, 0.05408766120672226, -0.032976794987916946, -0.03936247527599335, -0.021003644913434982, -0.017346175387501717, 0.030212843790650368, 0.005679800175130367, -0.005658951587975025, -0.003901698160916567, -0.024446669965982437, 0.034811485558748245, -0.024446669965982437, 0.016190558671951294, -0.027639510110020638, 0.025256793946027756], [0.07387161254882812, 0.053830210119485855, 0.0645134374499321, 0.009399582631886005, -0.04401654750108719, 0.01685299724340439, 0.020455479621887207, 0.002453415421769023, 0.05039335787296295, 0.054161474108695984, -0.018457550555467606, 0.05159418657422066, -0.056645944714546204, 0.002296841936185956, -0.020207032561302185, 0.014120078645646572, 0.00861283391714096, 0.015579705126583576, -0.004728259518742561, -0.0058643873780965805, 0.006444097496569157, 0.03248446062207222, -0.02571427822113037, 0.006511385086923838, 0.0013101703952997923, -0.01033643539994955, 0.04225671663880348, 0.0012415886158123612, 0.07494821399450302, -0.006392337381839752, 0.00894409604370594, -0.015300202183425426, 0.01608695089817047, 0.005336437374353409, 0.012587987817823887, -0.05163559317588806, -0.01930641196668148, -0.007194614503532648, 0.01732918620109558, -6.215221947059035e-05, -0.04322979971766472, 0.025983428582549095, 0.020786743611097336, 0.000145574493217282, -0.010652170516550541, 0.034699782729148865, 0.016449270769953728, -0.035155266523361206, 0.011811590753495693, 0.050310540944337845, 0.013322977349162102, -0.02908901683986187, -0.00024957937421277165, 0.0452587828040123, 0.03579708933830261, 0.028012413531541824, 0.05196685716509819, 0.03138715401291847, 0.016387159004807472, 0.012939954176545143, 0.010403723455965519, 0.019420282915234566, -0.016532085835933685, 0.01279502734541893, 0.005455484613776207, -0.020289847627282143, 0.037432700395584106, 0.052132487297058105, -0.007738092914223671, 0.008312626741826534, -0.004267597105354071, -0.0014195130206644535, -0.03385091945528984, -0.03815733641386032, -0.027349887415766716, -0.003524843603372574, 0.010859210044145584, -0.032339535653591156, 0.014140781946480274, -0.006858175620436668, -0.02693580836057663, 0.01766045019030571, -0.029358169063925743, 0.016708068549633026, 0.0028286739252507687, 0.003962214104831219, -0.018457550555467606, -0.027453407645225525, -0.020403720438480377, -0.009425463154911995, -0.02194616198539734, -0.06285712122917175, 0.07523807138204575, 0.03194615989923477, 0.016449270769953728, 0.011128360405564308, 0.0032945123966783285, 0.001079839188605547, -0.05366457998752594, 0.06732916831970215, 0.027577631175518036, 0.023602476343512535, 0.018229808658361435, 0.007422357797622681, 0.023747405037283897, -0.06414076685905457, -0.08935815095901489, -0.00964285433292389, 0.024472041055560112, 0.00025718158576637506, -0.04405795782804489, -0.019999993965029716, -0.033333323895931244, 0.09026911854743958, -0.01591096818447113, -0.006257761735469103, -0.040455471724271774, 0.02354036457836628, 0.027536222711205482, -0.0060869543813169, 0.04049688205122948, 0.02173912338912487, -0.0184161439538002, -0.0679088830947876, 0.004239128902554512, 0.038985494524240494, -0.046915099024772644, 0.06281571835279465, -0.05080743879079819, 0.05391302704811096, 0.04530019313097, 0.029171833768486977, 0.03875775262713432, -0.02919253706932068, 0.00989647675305605, 0.0003461437881924212, -0.006371633615344763, -0.021469973027706146, 0.009270183742046356, -0.03217390179634094, 0.00197593099437654, -0.004484988283365965, 0.02207038551568985, 0.02219460904598236, -0.03873704746365547, 0.03710143640637398, 0.01905796490609646, 0.07900618761777878, 0.017981359735131264, 0.014378877356648445, -0.013964799232780933, 0.004492752254009247, 0.03146997094154358, 0.03677017614245415, 0.008964800275862217, -0.03169771283864975, 0.02910972200334072, 0.054492734372615814, -0.005139749962836504, 0.0035196675453335047, -0.003972566220909357, -0.040476176887750626, -0.024534152820706367, -0.002590578980743885, 0.026790881529450417, 0.05175981670618057, -0.005533124320209026, -0.013146993704140186, -0.03068321943283081, -0.044430628418922424, 0.001208591740578413, 0.000770574260968715, -0.03598342463374138, -0.03554864227771759, -0.02016562409698963, -0.024824008345603943, -0.047370586544275284, -0.00865424145013094, -0.032215312123298645, -0.019472043961286545, 0.013467904180288315, -0.002699274569749832, -0.020062105730175972, -0.0011678308947011828, -0.048281557857990265, 0.02853001095354557, 0.025217382237315178, -0.007049687206745148, 0.00965320598334074, -0.011076601222157478, 0.00554865226149559, 0.007598341442644596, -0.010186332277953625, 0.01976189762353897, -0.025155270472168922, 0.01245341170579195, -0.017908897250890732, 0.008519666269421577, 0.032898541539907455, -0.023705996572971344, 0.001871117390692234, -0.025320902466773987, 0.07039335370063782, -0.0026229287032037973, 0.012256724759936333, -0.004440992139279842, 0.03724636510014534, 0.002052276860922575, 0.005766043905168772, 0.025527942925691605, 0.0002141562436008826, -0.002613870892673731, -0.026190467178821564, 0.011356104165315628, -0.021221525967121124, -0.034016553312540054, 0.020403720438480377, -0.01682194136083126, 0.014399581588804722, 0.0713871419429779, -0.02424429915845394, 0.01692545972764492, -0.0052613853476941586, -0.015062106773257256, -0.05917182192206383, -0.03716354817152023, 0.009948236867785454, 0.03859211876988411, 0.03575568273663521, -0.019606618210673332, -0.013229809701442719, -0.0025996367912739515, -0.010025876574218273, -0.03316769003868103, -0.021024838089942932, 0.023064175620675087, -0.01624223031103611, -0.03445133566856384, -0.0065838489681482315, -0.023954443633556366, 0.009192544035613537, 0.02703932859003544, 0.004479811992496252, 0.009430638514459133, -0.025631461292505264, -0.019140779972076416, -0.011552791111171246, 0.0075517576187849045, 0.026335395872592926, -0.02343684621155262, 0.034140776842832565, -0.011625255458056927, 0.0071480306796729565, -0.05039335787296295, 0.030393365770578384, 0.0027510342188179493, -0.007789852563291788, 0.01448239665478468, 0.03341613709926605, -0.023830220103263855, 0.02761903777718544, 0.022132497280836105, -0.029958581551909447, -0.011428567580878735, -0.03467907756567001, 0.022484464570879936, 0.01935817115008831, -0.027101440355181694, -0.007541405502706766, 0.04824015125632286, -0.052256710827350616, 0.053043462336063385, -0.025175975635647774, -6.979487807257101e-05, -0.03258798271417618, 0.03585920110344887, 0.024616969749331474, 0.016024839133024216, -0.043975140899419785, -0.009409935213625431, -0.05933745577931404, -0.0028002061881124973, 0.03942027688026428, -0.03697721287608147, 0.008726704865694046, -0.0243271142244339, 0.004937886726111174, 0.05329190939664841, -0.001521738595329225, 0.002707038540393114, 0.020942023023962975, 0.005781571846455336, 0.014337469823658466, 0.005610764026641846, 0.018913038074970245, 0.013457552529871464, -0.032422348856925964, 0.03824015334248543, 0.024741193279623985, -0.006552793085575104, 0.0007194614736363292, 0.08546581119298935, -0.0062370579689741135, -0.03890267759561539, -0.03387162461876869, 0.041262928396463394, 0.03993787616491318, 0.006262938026338816, -0.05511385202407837, -0.01715320348739624, -0.00924947950989008, 0.0390683114528656, -0.011262936517596245, 0.005072461906820536, -0.029523799195885658, 0.029358169063925743, 0.018385088071227074, 0.05850929766893387, 0.023146990686655045, 0.026915105059742928, 0.06546581536531448, 0.04225671663880348, 0.024534152820706367, -0.030600404366850853, 0.05279501527547836, 0.01284678652882576, -0.018198752775788307, 0.044761888682842255, 0.00035067275166511536, -0.046252574771642685, -0.023126287385821342, 0.026107652112841606, 0.03331261873245239, 0.0038095226045697927, -0.03068321943283081, -0.009736021980643272, -0.0027562102768570185, 0.016935812309384346, 9.00135564734228e-05, 0.005119045730680227, 0.010227739810943604, -0.018581774085760117, -0.0031288808677345514, 0.019627323374152184, -0.026666657999157906, 0.02184264361858368, 0.020973078906536102, 0.020082809031009674, 0.01093167345970869, 0.02399585209786892, -0.005538300611078739, -0.010263971984386444, 0.003092649159952998, -0.0019409931264817715, -0.04554864019155502, -0.028571419417858124, 0.023271214216947556, -0.02592131681740284, -0.019803306087851524, -0.004945650696754456, -0.02366458810865879, 0.017422353848814964, 0.03488611802458763, 0.015527945011854172, -0.055072445422410965, -0.019265003502368927, -0.010714282281696796, -0.024409929290413857, 0.005584884434938431, -0.01844719983637333, -0.01069357804954052, 0.003894926281645894, -0.008255691267549992, -0.005336437374353409, 0.017391297966241837, 0.017898544669151306, -0.02042442373931408, -0.017018627375364304, 0.013312624767422676, -0.027598334476351738, 0.04877845197916031, 0.00021819998801220208, 0.023602476343512535, 0.08803309500217438, 0.037432700395584106, 0.0486956350505352, -0.03428570181131363, -0.0056832279078662395, 0.022919246926903725, -0.006071426440030336, -0.02761903777718544, 0.02772255800664425, 0.0038612824864685535, -0.014668731950223446, -0.01634575054049492, 0.020662520080804825, 0.03192545473575592, 0.015258794650435448, 0.016915109008550644, -0.04225671663880348, 0.0015476185362786055, -0.01563146524131298, -0.01692545972764492, -0.0013781051384285092, 0.04062110558152199, -0.013995855115354061, 0.003910453990101814, -0.0023835396859794855, 0.02648032270371914, 0.0249068234115839, 0.07449273020029068, 0.04608694091439247, 0.002810558071359992, 0.019016556441783905, 0.029503095895051956, 0.017463762313127518, 0.04244305193424225, 0.05739128589630127, -0.020031049847602844, -0.03863352909684181, 0.0243478175252676, 0.0283022690564394, -0.0464182049036026, 0.037763964384794235, -0.002564698923379183, 0.03780537098646164, 0.01351966429501772, -0.03151137754321098, -0.011956517584621906, 0.0003234988544136286, -0.013457552529871464, 0.014958587475121021, 0.09225670248270035, 0.04517596960067749, -0.022712208330631256, -0.0005725930095650256, -0.0069565195590257645, -0.00599896302446723, 0.05105588585138321, -0.009989644400775433, -0.008985504508018494, -0.02592131681740284, 0.011987573467195034, -0.01080744992941618, 0.015072459354996681, -0.01199792604893446, -0.012184261344373226, 0.027577631175518036, 0.03637680038809776, 0.041159406304359436, -0.023830220103263855, -0.029999990016222, -0.011925461702048779, 0.003830226603895426, -0.04935816302895546, -0.019575562328100204, -0.025652166455984116, -0.026356099173426628, 0.022008273750543594, 0.009270183742046356, 0.050641804933547974, -0.005188921932131052, 0.023954443633556366, -0.0215320847928524, 0.005895443260669708, 0.04202897101640701, 0.05511385202407837, 0.002709626452997327, -0.01002070028334856, -0.027018625289201736, 0.02840578742325306, 0.0034342638682574034, 0.012619043700397015, 0.008012419566512108, 0.04447203502058983, -0.026314690709114075, 0.003938922192901373, 0.009301239624619484, 0.014451340772211552, 0.0015734984772279859, 0.02138715609908104, -0.007525877561420202, -0.04099377617239952, -0.07113869488239288, 0.05668735131621361, 0.034223590046167374, 0.047494810074567795, 0.029958581551909447, 0.012536227703094482, -0.02465837635099888, -0.043395429849624634, -0.015766041353344917, 0.036169759929180145, -0.0059213233180344105, 0.028033116832375526, -0.018105585128068924, 0.013654239475727081, -0.015828153118491173, 0.008328154683113098, -0.04209108278155327, 0.02956520766019821, -0.050310540944337845, 0.033022765070199966, -0.021759826689958572, 0.049192529171705246, 0.013012418523430824, 0.02333332598209381, 0.022650096565485, -0.03817804157733917, 0.06973082572221756, -0.038674935698509216, -0.0026229287032037973, 0.022463761270046234, 0.01013457216322422, -0.03869564086198807, 0.0020885085687041283, -0.007914076559245586, 0.01806417666375637, 0.017267074435949326, -0.019089020788669586, -0.023954443633556366, 0.014585916884243488, -0.09747409075498581, 0.015869559720158577, -0.04596271738409996, 0.016656309366226196, -0.0041097295470535755, -0.019068317487835884, 0.0020652166567742825, -0.005121633876115084, -0.010155276395380497, 0.0092080719769001, -0.04832296445965767, -0.02919253706932068, 0.0014648028882220387, 0.017619041725993156, 0.010745338164269924, 0.005967907141894102, 0.038985494524240494, -0.02455485798418522, -0.011149064637720585, -0.014182190410792828, 0.021718420088291168, 0.0007893372094258666, 0.027908893302083015, 0.01680123619735241, 0.057556916028261185, 0.033561065793037415, -0.009197719395160675, -0.03461696580052376, -0.039917171001434326, 0.01092132180929184, 0.001529502565972507, -0.028944090008735657, -0.022670799866318703, 0.020031049847602844, 0.013540368527173996, -0.002529761055484414, -0.00048686578520573676, -0.00534678902477026, 0.03066251613199711, 0.024741193279623985, -0.009311591275036335, -0.015031050890684128, -0.018260864540934563, -0.015269146300852299, -0.022732911631464958, 0.005476188845932484, 0.027681149542331696, -0.019834361970424652, -0.04041406512260437, 0.017670800909399986, 0.03648031875491142, 0.0010397253790870309, 0.03484470769762993, -0.0049611786380410194, 0.024057963863015175, -0.019948232918977737, 0.037349883466959, -0.03747410699725151, 0.016221527010202408, 0.042608682066202164, 0.01722566783428192, -0.02366458810865879, -0.011521735228598118, 0.025652166455984116, -0.019979288801550865, -0.048281557857990265, -0.056314680725336075, 0.04053828865289688, -0.024057963863015175, -0.029730839654803276, 0.03894408792257309, -0.011035192757844925, -0.0243478175252676, 0.05026913434267044, 0.0012991714756935835, 0.01432711724191904, -0.0509316623210907, 0.03428570181131363, -0.00668219244107604, -0.026438914239406586, 0.0006010608631186187, 0.01821945607662201, -0.04554864019155502, 0.006972047500312328, -0.005678052082657814, -0.011614902876317501, 0.006847823970019817, 0.03534160181879997, -0.00716355862095952, 0.01109730452299118, -0.01948239468038082, -0.01240165252238512, -0.020973078906536102, 0.01883022114634514, -0.005983435083180666, -0.012339540757238865, 0.013167697936296463, -0.0047308471985161304, -0.02896479330956936, 0.0021739122457802296, 0.00395186198875308, -0.03687369450926781, -0.014451340772211552, -0.012650099582970142, -0.028674939647316933, -0.03327121213078499, 0.06608693301677704, -0.01963767409324646, -0.02797100506722927, 0.004746375139802694, 0.03103518672287464, -0.02219460904598236, -0.012639747001230717, -0.024430634453892708, 0.011863349936902523, -0.028778458014130592, 0.011780534870922565, -0.013612831942737103, 0.03393373638391495, 0.000534096616320312, -0.023271214216947556, -0.024989640340209007, 0.025279494002461433, 0.018488606438040733, -0.028716346248984337, -0.007101446855813265, -0.014120078645646572, -0.009596270509064198, 0.009492750279605389, 0.024761896580457687, 0.00034743777359835804, -0.021573491394519806, -0.0031055889558047056, -0.04480329900979996, 0.01677018031477928, 0.04293994605541229, -0.003605071222409606, 0.04006209969520569, -0.012028981931507587, -0.01001034863293171, 0.011573495343327522, -0.06393373012542725, 0.016273286193609238, -0.010952377691864967, 0.040227729827165604, 0.008328154683113098, 0.004596272017806768, 0.010838505811989307, -0.023457549512386322, 0.005147513933479786, -0.025879908353090286, -0.0018452374497428536, -0.010310555808246136, -0.008343682624399662, -0.03304346650838852, 0.027763966470956802, -0.002501293085515499, 0.017008276656270027, 0.004899066872894764, -0.009611798450350761, -0.04118011146783829, -0.002369305584579706, -0.01704968325793743, 0.005533124320209026, 0.047370586544275284, 0.003907866310328245, 0.0027639742475003004, 0.009316767565906048, -0.014213246293365955, 0.020993782207369804, -0.020610759034752846, -0.013695647940039635, 0.0003564957296475768, -0.012981362640857697, -0.050683215260505676, 0.008592129684984684, -0.02627328410744667, 0.0032298127189278603, 0.017370594665408134, 0.029523799195885658, -0.06517596542835236, -0.034927524626255035, -0.042732905596494675, -0.0368322879076004, -0.00653726514428854, 0.005263973493129015, 0.03207038342952728, -0.00044513444299809635, -0.0339958481490612, 0.031159410253167152, -0.04372669383883476, -0.05710143223404884, -0.00761386938393116, 0.04269149899482727, 0.01998964138329029, 0.012039333581924438, -0.005936851259320974, -0.012215317226946354, -0.03519667685031891, 0.011366455815732479, -0.03894408792257309, 0.012184261344373226, 0.006381985731422901, -0.024741193279623985, 0.018302271142601967, -0.015548649244010448, -0.007458589505404234, 0.023146990686655045, 0.030289845541119576, -0.023064175620675087, -0.03418218344449997, 0.005103517789393663, -0.02571427822113037, 0.012028981931507587, 0.012577635236084461, -0.006656312383711338, 0.010263971984386444, -0.014285709708929062, 0.03834367170929909, -0.01568322442471981, -0.037846777588129044, -0.04293994605541229, 0.026004131883382797, 0.0005667700315825641, 0.006754656322300434, -0.0037758788093924522, -0.019627323374152184, -0.0005166276823729277, -0.010056932456791401, 0.003625775221735239, 0.010745338164269924, 0.024037258699536324, 0.05184263363480568, 0.020921317860484123, 0.016231879591941833, 0.0020833327434957027, 0.011863349936902523, 0.01900620572268963, -0.03766044229269028, -0.011024841107428074, 0.016004135832190514, 0.04033124819397926, 0.01232918817549944, -0.02217390574514866, -0.04223601147532463, 0.015434777364134789, 0.00984471756964922, -0.0016472561983391643, 0.026915105059742928, 0.014968939125537872, 0.015921320766210556, 0.020807446911931038, -0.003392856102436781, -0.003977742046117783, -0.01392339076846838, -0.030269142240285873, -0.01200827769935131, -0.06057969108223915, 0.018178047612309456, -0.002111800480633974, -0.001983694965019822, 0.02670806646347046, -0.025072455406188965, -0.016583845019340515, -0.012670803815126419, 0.0407867357134819, 0.040579695254564285, 0.028322972357273102, -0.01307453028857708, -0.027826078236103058, 0.0067753600887954235, -0.025776389986276627, -0.011821942403912544, 0.032318830490112305, 0.008913040161132812, -0.02842649258673191, 0.021024838089942932, -0.0017106619197875261, -0.008825048804283142, -0.0059316749684512615, -0.005652172025293112, 0.022008273750543594, 0.020962726324796677, -0.006790888030081987, -0.04438921809196472, -0.024078667163848877, 0.0032971003092825413, -0.0015359725803136826, 0.010910969227552414, -0.016811588779091835, -0.011128360405564308, 0.023064175620675087, -0.013178049586713314, -0.027349887415766716, -0.035610754042863846, -0.0520496740937233, 0.008405794389545918, 0.006066250614821911, 0.039440982043743134, 0.021677011623978615, -0.011459623463451862, -0.0015553825069218874, 0.014451340772211552, 0.028695642948150635, -0.02797100506722927, 0.03393373638391495, 0.014534156769514084, 0.041946157813072205, 0.03875775262713432, 0.028716346248984337, 0.0039285700768232346, 0.0012098856968805194, -0.008198754861950874, 0.030393365770578384, -0.03238094225525856, -0.03461696580052376, -0.03045547753572464, 0.03314698860049248, 0.022008273750543594, -0.003064181189984083, 0.008793992921710014, -0.008716353215277195, 0.023188399150967598, 0.0009840835118666291, 0.005962730851024389, -0.017857136204838753, -0.050890251994132996, 0.043643876910209656, -0.0161180067807436, -0.026645954698324203, -0.007950307801365852, -0.01256728358566761, 0.022836431860923767, -0.020590055733919144, 0.012091093696653843, -0.005414077080786228, -0.02706003189086914, -0.013985502533614635, -0.026977216824889183, 0.023581773042678833, -0.028674939647316933, 0.024596264585852623, -0.0012441766448318958, 0.003059005131945014, 0.012318836525082588, 0.024616969749331474, -0.05312627553939819, 0.018312623724341393, 0.033913031220436096, 0.032650094479322433, 0.009663557633757591, 0.0021829702891409397, -0.028136637061834335, 0.0012377066304907203, -0.01631469465792179, 0.02604554034769535, -0.012246373109519482, 0.028240157291293144, -0.03478259593248367, -0.009591094218194485, 0.025051752105355263, -0.0373912937939167, -0.04082814231514931, -0.013302273117005825, -0.02786748670041561, 0.052919238805770874, 0.039337459951639175, 0.008509313687682152, 0.031987566500902176, -0.004629915580153465, -0.01232918817549944, 0.0189751498401165, 0.008887160569429398, 0.015320906415581703, -0.006506209261715412, -0.03540371358394623, -0.027225663885474205, 0.006004138849675655, -0.027329184114933014, -0.00668219244107604, -0.05900619179010391, 0.0107660423964262, 0.01268115546554327, 0.04542441666126251, 0.0004794253036379814, 0.011966870166361332, 0.019316764548420906, -0.016304342076182365, 0.01951345056295395, 0.019244300201535225, -0.006268113851547241, -0.04451344162225723, 0.021552788093686104, 0.0237888116389513, 0.009068320505321026, -0.003115941071882844, 0.012763971462845802, -0.0027536223642528057, 0.023229805752635002, -0.010119044221937656, -0.007344718091189861, 0.002236024010926485, -0.001397515065036714, -0.0020548647735267878, -0.0288819782435894, 0.03747410699725151, 0.030393365770578384, -0.013902687467634678, -0.004761903081089258, 0.009213247336447239, 0.00614389032125473, 0.02908901683986187, 0.027101440355181694, -0.008074531331658363, -0.017132500186562538, -0.007950307801365852, 0.006030018907040358, 0.01685299724340439, 0.015952376648783684, 0.02966872788965702, 0.016128359362483025, -0.04109729453921318, -0.023126287385821342, 0.015476185828447342, 0.020362311974167824, -0.005476188845932484, 0.0011937108356505632, -0.0035429594572633505, 0.005018114112317562, -0.0385093055665493, 0.0030383013654500246, -0.004497928079217672, 0.03805381804704666, -0.015248442068696022, 0.01363353617489338, 0.005900619085878134, -0.012877842411398888, 0.01816769689321518, 0.0006492622196674347, -0.017577633261680603, 0.018074529245495796, -0.0017792436992749572, 0.047619033604860306, 0.026314690709114075, 0.01760868914425373, -0.010310555808246136, 0.0333954356610775, 0.013498960062861443, 0.015434777364134789, 0.002010868862271309, 0.08227740973234177, 0.006154242437332869, -0.04356106370687485, -0.0064855050295591354, -0.016097303479909897, 0.00172618986107409, 0.007520701270550489, -0.010108692571520805, 0.019699785858392715, -0.009534158743917942, -0.016376806423068047, 0.04509315267205238, -0.000698757532518357, -0.0029037257190793753, 0.010243267752230167, -0.034368518739938736, -0.0028726698365062475, 0.005090577993541956, -0.009684261865913868, 0.015434777364134789, -0.0005224506603553891, 0.017629394307732582, -0.002650102600455284, 0.04196685925126076, 0.049648016691207886, 0.04198756441473961, 0.02739129588007927, -0.04844718798995018, 0.014472045004367828, -0.003765526693314314, 0.0030771212186664343, 0.016490677371621132, 0.0084989620372653, 0.013002065941691399, 0.017298130318522453, 0.008555897511541843, -0.006780535914003849, -0.014513452537357807, 0.0005441250978037715, -0.05821944400668144, -0.021718420088291168, 0.013954446651041508, -0.005292441230267286, -0.0007770442753098905, 0.006009314674884081, -0.039792947471141815, 0.01631469465792179, 0.025734981521964073, -0.027329184114933014, 0.02896479330956936, 0.007225670386105776, 0.016459621489048004, 0.019927529618144035, 0.0014945646980777383, 0.04766044020652771, -0.01448239665478468, -0.0008520960109308362, -0.007034159265458584, 0.04857141152024269, -0.012546579353511333, -0.022484464570879936, 0.05739128589630127, 0.014461693353950977, 0.023623181506991386, 0.020486535504460335, -0.025838501751422882, -0.0028649058658629656, 0.01137680746614933, -0.0175362266600132, -0.004715319257229567, -0.02865423448383808, -0.019275356084108353, 0.017422353848814964, -0.030931666493415833, -0.007318838033825159, -0.006211177911609411, -0.022277425974607468, 0.025859205052256584, -0.04674946889281273, 0.023229805752635002, -0.025507237762212753, 0.011221528053283691, -0.0027484463062137365, -0.011635607108473778, 0.02536231093108654, -0.009756725281476974, -0.00127652648370713, -0.013892334885895252, 0.00817287527024746, 0.019068317487835884, 0.021697714924812317, -0.008581778034567833, 0.012836434878408909, 0.005481364671140909, -0.002560816938057542, 0.025300199165940285, 0.00326863257214427, -0.017463762313127518, 0.0016718420665711164, 0.022650096565485, 0.03341613709926605, 0.016004135832190514, 0.01657349430024624, 0.015848856419324875, -0.00902173575013876, -0.025962725281715393, 0.0019345232285559177, 0.02741199918091297, -0.02681158483028412, 0.016407862305641174, 0.03136644884943962, 0.005543476436287165, -0.011273288168013096, -0.02979295141994953, -0.029958581551909447, -0.03144926577806473, 0.0011471270117908716, 0.0007945132092572749, 0.02548653446137905, 0.028136637061834335, 0.004759315401315689, -0.007950307801365852, -0.012142852880060673, 0.011790886521339417, 0.017701856791973114, -0.006226705852895975, 0.03178052976727486, -0.017018627375364304, 0.004635091871023178, 0.025320902466773987, -0.0042417170479893684, -0.016780532896518707, 0.0026112827472388744, -0.024948231875896454, -0.0027432702481746674, 0.0010332553647458553, 0.004513456020504236, 0.008369562216103077, 0.02726707234978676, 0.025652166455984116, -0.005512420553714037, -0.03600412979722023, 0.040372658520936966, -0.033913031220436096, 0.02054864726960659, 0.021428564563393593, 0.00562629196792841, -0.026542434468865395, -0.0035558994859457016, -0.03863352909684181, -0.035714272409677505, 0.029068313539028168, -0.013447200879454613, -0.001289466512389481, 0.0064596254378557205, -0.01216355711221695, -0.026335395872592926, 0.012536227703094482, 0.008364386856555939, -0.013509312644600868, -0.008400618098676205, -0.02616976387798786, 0.006785712204873562, -0.011915110051631927, -0.022939952090382576, -0.03612835332751274, 0.00614389032125473, 0.01664595678448677, 0.010263971984386444, -0.014492749236524105, -0.015921320766210556, -0.027701854705810547, -0.005274325609207153, -0.026521731168031693, 0.001666666124947369, 0.03857141733169556, 0.0243271142244339, -0.02716355212032795, 0.03917182981967926, 0.032339535653591156, -0.00020348078396636993, -0.013447200879454613, 0.007142854854464531, 0.004342648666352034, 0.007386126089841127, -0.012743267230689526, 0.018105585128068924, -0.008524841628968716, -0.01657349430024624, -0.00167054811026901, -0.0005548005574382842, -0.016935812309384346, 0.006464801263064146, 0.010962729342281818, -0.0018167695961892605, -0.0025595228653401136, -0.05569356307387352, 0.011180120520293713, -0.02126293256878853, -0.013343680649995804, -0.03354036062955856, 0.005150102078914642, 0.02784678153693676, -0.014627324417233467, -0.013209105469286442, -0.002124740509316325, 0.02093167044222355, 0.004032089840620756, 0.00013449465041048825, 0.02571427822113037, -0.006630432792007923, -0.015331258065998554, 0.015341609716415405, 0.030724627897143364, -0.005538300611078739, 0.0036438910756260157, -0.016490677371621132, 0.011708070524036884, 0.04807451739907265, -0.00924947950989008, 0.006350929848849773, -0.0195341557264328, -0.0243271142244339, 0.014730843715369701, -0.019679082557559013, -0.007194614503532648, -0.02718425542116165, 0.004145961254835129, -0.01624223031103611, 0.013291921466588974, 0.01550724171102047, 0.00789337232708931, -0.014813659712672234, -0.05126292258501053, 0.021086949855089188, 0.03509315475821495, -0.002123446436598897, -0.03285713121294975, 0.01256728358566761, 0.008840576745569706, -0.02300206385552883, -0.02716355212032795, 0.009420286864042282, 0.0031806407496333122, -0.0065838489681482315, -0.015093162655830383, -0.004120081663131714, 0.0022010861430317163, -0.01432711724191904, 0.006532088853418827, 0.014306413941085339, -0.018457550555467606, 0.023146990686655045, -0.023498957976698875, 0.01575568877160549, -0.018643885850906372, -0.006578672677278519, -0.024161482229828835, 0.046459611505270004, 0.0038198744878172874, -0.01568322442471981, -0.011697718873620033, 0.04890267550945282, 0.01392339076846838, 1.8702277884585783e-05, 0.0023641297593712807, -0.007008279208093882, -0.012587987817823887, -0.005817803554236889, -0.002047100802883506, 0.018612829968333244, 0.02095237374305725, -0.030993778258562088, -0.020051753148436546, 0.0401863232254982, 0.004875774960964918, 0.0031858168076723814, 0.012691507115960121, -0.027598334476351738, -0.0017119559925049543, 0.008711176924407482, 0.014679084531962872, -0.005569356493651867, 0.026563137769699097, -0.016211174428462982, -0.06811591982841492, -0.011024841107428074, 0.06082813814282417, -0.01551759336143732, 0.015020699240267277, -0.024472041055560112, 0.002149326493963599, 0.004089025780558586, -0.0062370579689741135, -0.029026905074715614, 0.014937883242964745, -0.016283638775348663, 0.043975140899419785, 0.012142852880060673, -0.023726699873805046, 0.02571427822113037, -0.044223587960004807, 0.0107660423964262, 0.02161489985883236, -0.0029321936890482903, 0.009109728038311005, 0.0166770126670599, 0.001525620580650866, -3.380563066457398e-05, 0.01064181886613369, 0.006878879852592945, -0.015973079949617386, 0.0020703927148133516, 0.033809512853622437, 0.012111796997487545, 0.0011775358580052853, 0.021045541390776634, -0.02424429915845394, -0.02341614104807377, -0.028716346248984337, -0.00724119832739234, -0.0248861201107502, -0.01455486100167036, -0.0035791913978755474, 0.0003859341377392411, -0.0345548540353775, 0.007670804858207703, 0.037204958498477936, 0.02275361493229866, -0.01403726264834404, -0.04165630042552948, -0.030144918709993362, 0.011987573467195034, -0.009192544035613537, 0.003612835193052888, 0.018995853140950203, -0.007681156974285841, -0.010755689814686775, 0.022028978914022446, 0.024989640340209007, 0.008317803032696247, -0.015496889129281044, 0.00047845480730757117, -0.013095233589410782, -0.01606624759733677, -0.022608688101172447, -0.04401654750108719, -0.0033669760450720787, 0.023374734446406364, -0.027329184114933014, -0.004133021458983421, 0.018602479249238968, 0.02389233186841011, -0.024824008345603943, -0.011749478988349438, 0.016583845019340515, 0.0009853775845840573, -0.013954446651041508, 0.00257116905413568, 0.03178052976727486, -0.010662522166967392, 0.04459625855088234, -0.008214282803237438, 0.015072459354996681, -0.005729811731725931, 0.01631469465792179, 0.0020341607742011547, 0.019451338797807693, -0.05792958661913872, -0.006149066146463156, -0.0169979240745306, -0.009824013337492943, 0.04910971596837044, 0.004880950786173344, -0.021304341033101082, 0.005015526432543993, 0.0023550717160105705, -0.023685293272137642, -0.030931666493415833, -0.019099373370409012, 0.0008514489745721221, 0.010305379517376423, 0.0027691503055393696, 0.028840569779276848, 0.015538297593593597, 0.009560038335621357, -0.005372669082134962, 0.01925465278327465, 0.033788807690143585, 0.02424429915845394, -0.011149064637720585, 0.025051752105355263, 0.03207038342952728, -0.014161486178636551, -0.021697714924812317, -0.038447193801403046, -0.02726707234978676, 0.057681139558553696, -0.008845753036439419, -0.01228778064250946, 0.014451340772211552, -0.010403723455965519, -0.006076602730900049, 0.023975146934390068, -0.02277432009577751, -0.024409929290413857, 0.0026837466284632683, 0.01935817115008831, 0.007763972505927086, -0.014896475709974766, -0.02077639102935791, -0.014161486178636551, 0.011511383578181267, -0.008136643096804619, -0.019875770434737206, -0.023850923404097557, -0.008550722151994705, -0.058467891067266464, -0.002164854435250163, -0.0002445651334710419, -0.02333332598209381, -0.018592126667499542, -0.04107659310102463, -0.02467908151447773, -0.017391297966241837, 0.022712208330631256, -0.017650097608566284, 0.0075051733292639256, -0.02034160867333412, 0.008669769391417503, -0.0037034149281680584, -0.0028442018665373325, -0.008752585388720036, -0.011625255458056927, -0.023043470457196236, -0.007044511381536722, -0.017515521496534348, 0.02728777565062046, 0.0018620594637468457, 0.00818322692066431, 0.054616957902908325, -0.01804347150027752, -0.02275361493229866, -0.025755684822797775, -0.0004829837998840958, -0.022153202444314957, 0.011532087810337543, 0.005828155670315027, -0.01732918620109558, -0.004862834699451923, 0.00011993720545433462, -0.005905795376747847, -0.009699789807200432, -0.002044512890279293, -0.013033121824264526, 0.00562629196792841, 0.01657349430024624, -0.009839541278779507, -0.021904755383729935, -0.03320910036563873, -0.01431676559150219, 0.025527942925691605, 0.01427535805851221, 0.006878879852592945, -0.042401641607284546, -0.01028467621654272, -0.021325044333934784, 0.023457549512386322, -0.009145960211753845, 0.002524584997445345, -0.006630432792007923, -0.015062106773257256, -0.007950307801365852, -0.0015269146533682942, -0.03149067237973213, 0.011904758401215076, 0.028240157291293144, 0.02310558222234249, -2.6208463168586604e-06, 0.02034160867333412, -0.00668219244107604, 0.036604542285203934, 0.025631461292505264, 0.0029166657477617264, -0.010507242754101753, -0.021200820803642273, 0.004912006668746471, -0.0197929535061121, -0.016076600179076195, -0.006490681320428848, 0.02817804552614689, 0.007463765796273947, 0.013964799232780933, -0.0155590008944273, 0.014399581588804722, -0.017349891364574432, -0.04699791595339775, -0.009761901572346687, -0.0016045543598011136, 0.04225671663880348, 0.009906829334795475, 0.016097303479909897, 0.010538298636674881, -0.029296057298779488, -0.008918216452002525, 0.01763974502682686, -0.008043475449085236, 0.01654243841767311, -0.0390683114528656, -0.01296065840870142, 0.018374735489487648, -0.013498960062861443, 0.004396996460855007, 0.023809516802430153, -0.03631468862295151, -0.04327120631933212, -0.00267339451238513, -0.020062105730175972, 0.018281567841768265, 0.023954443633556366, -0.028053821995854378, 0.031076595187187195, 0.006620080675929785, -0.028716346248984337, 0.029855063185095787, 0.0026526907458901405, 0.0407453291118145, -0.019679082557559013, -0.015869559720158577, 0.05739128589630127, 0.006785712204873562, -0.012763971462845802, -0.0009174427832476795, 0.013726703822612762, -0.01240165252238512, 0.01033643539994955, 0.028571419417858124, -0.002983953570947051, 0.0161180067807436, 0.042277418076992035, -0.06422358006238937, 0.040476176887750626, -0.01730848290026188, 0.04720495268702507, 0.016552789136767387, 0.012743267230689526, 0.01279502734541893, 0.01669771783053875, -0.03509315475821495, 0.028923386707901955, -0.0015243266243487597, 0.006930639501661062, -0.016728773713111877, -0.006946167442947626, 0.0430227592587471, -0.02817804552614689, -0.014917179010808468, -0.01550724171102047, -0.009446166455745697, -0.0019487570971250534, -0.01109730452299118, 0.00427018478512764, 0.0475362166762352, 0.04480329900979996], [0.06796352565288544, 0.012090285308659077, 0.08829669654369354, -0.005483616143465042, -0.05528215691447258, 0.004005914553999901, 0.010773787274956703, -0.03092963621020317, 0.02083827741444111, 0.06723273545503616, -0.03387429192662239, 0.01329394057393074, -0.05876415967941284, 0.003734554862603545, -0.010204200632870197, 0.00987641979008913, 0.028801746666431427, 0.012101031839847565, 0.03118756227195263, -0.018398728221654892, 0.006894149351865053, 0.03690492361783981, 0.00206340872682631, 0.0040086014196276665, 0.020827531814575195, 0.004564754199236631, 0.061343420296907425, 0.019387444481253624, 0.09766800701618195, 0.008377224206924438, 0.015604527667164803, -0.02114993892610073, -0.005706614814698696, -0.027103733271360397, -0.01147771067917347, -0.0131757240742445, -0.013261699117720127, -0.006813547573983669, 0.024073101580142975, 0.016152620315551758, -0.04788827523589134, 0.04840412735939026, 0.025470200926065445, -0.03591620549559593, -0.02001076564192772, 0.03976360335946083, 0.0395701602101326, -0.014024730771780014, -0.00552391679957509, 0.05708764120936394, 0.0008919943938963115, -0.01623859629034996, 0.01910802349448204, 0.042536310851573944, 0.023836668580770493, 0.0198280680924654, 0.01813005469739437, 0.0028882347978651524, 0.035701267421245575, 0.0064535257406532764, -0.009596999734640121, -0.0040193479508161545, -0.02133263647556305, 0.02235359326004982, 0.010542728938162327, -0.0002676654839888215, 0.028651289641857147, 0.04603980481624603, 0.01327244658023119, -0.01336916908621788, 0.021397117525339127, -0.02130039595067501, -0.024825384840369225, -0.04990869760513306, 0.027082238346338272, -0.007839878089725971, 0.03368084877729416, 0.02224612422287464, 0.009161749854683876, 0.012251488864421844, -0.01990329660475254, 0.04539499059319496, -0.01691565290093422, 0.029597017914056778, -0.02794199250638485, 0.04346054419875145, -0.018259016796946526, -0.02718970738351345, -0.0023173047229647636, -0.006969377864152193, -0.00571198808029294, -0.07544337958097458, 0.04573889076709747, 0.022332100197672844, -0.01963462308049202, 0.024825384840369225, -0.005609892308712006, 0.010870509780943394, -0.056356851011514664, 0.06289097666740417, 0.012831822969019413, 0.02809244953095913, -0.0005407044081948698, 0.021848488599061966, 0.0031918352469801903, -0.06099952012300491, -0.07148851454257965, -0.009752830490469933, 0.025169286876916885, 0.012659871950745583, -0.040086012333631516, -0.02133263647556305, -0.002615531673654914, 0.049822721630334854, -0.015024194493889809, -0.031961340457201004, -0.0372273325920105, 0.011982816271483898, 0.02110695093870163, -0.026824312284588814, 0.03772168979048729, -0.014927471987903118, -0.021955957636237144, -0.03720583766698837, 0.0019331022631376982, 0.019247734919190407, -0.0302848219871521, 0.03292856365442276, -0.07406777143478394, 0.022267619147896767, 0.02185923606157303, 0.02344978041946888, 0.07226229459047318, -0.03428267687559128, -0.009494904428720474, -0.007764650043100119, 0.001487105037085712, -0.01342290360480547, 0.0063997907564044, -0.0590650737285614, 0.007528217509388924, 0.00979581754654646, 0.03701239451766014, 0.011617421172559261, -0.042923200875520706, 0.06895224004983902, 0.010870509780943394, 0.0961204543709755, 0.015077929012477398, 0.003116606967523694, -0.028565313667058945, -0.00787211861461401, 0.04058036953210831, -0.005948420148342848, -0.005494363140314817, -0.036346085369586945, 0.04595383256673813, 0.0271467212587595, 0.006281574722379446, 0.02193446457386017, -0.004674910102039576, -0.03780766576528549, -0.049564797431230545, -0.021816248074173927, 0.016625486314296722, 0.011810865253210068, 0.019548647105693817, -0.005529290530830622, -0.06091354414820671, -0.01951640658080578, -0.004752825479954481, -0.00811929814517498, -0.023686211556196213, -0.043825939297676086, -0.01482000295072794, 0.00733477296307683, -0.036045171320438385, 0.004537886939942837, -0.012864063493907452, -0.006754439324140549, 0.0002008330775424838, 0.0034873755648732185, -0.02113919146358967, -0.027361659333109856, -0.024116089567542076, 0.023234842345118523, -0.005026871804147959, -0.02979046292603016, 0.03073619119822979, -0.04152609780430794, 0.0025282129645347595, -0.014583570882678032, 0.003482002066448331, 0.00985492579638958, -0.03273512050509453, -0.0061794789507985115, 0.0029097285587340593, -0.027770042419433594, 0.018269764259457588, -0.019193999469280243, 0.027920499444007874, -0.026179498061537743, 0.0511983260512352, -0.002912415424361825, -0.016174115240573883, -0.038044098764657974, 0.019011301919817924, -0.0016778629506006837, 0.026329955086112022, 0.02304139733314514, -0.007023112382739782, 0.0014212802052497864, -0.016700714826583862, 0.019580889493227005, -0.014078465290367603, -0.01274584699422121, 0.012423439882695675, -0.03127353638410568, 0.004075769335031509, 0.05399252846837044, -0.047372423112392426, -0.0009060996817424893, 0.024223558604717255, -0.03092963621020317, -0.04999467357993126, -0.027404647320508957, -0.002872114535421133, -0.0017410010332241654, 0.005308978725224733, -0.018022585660219193, -0.04591084271669388, 0.008662017993628979, -0.022590026259422302, -0.0255991630256176, -0.003707687370479107, 0.02005375362932682, -0.002088932553306222, -0.04715748503804207, -0.0287372637540102, -0.009344447404146194, 0.037936627864837646, 0.027727054432034492, -0.008855462074279785, 0.020268691703677177, -0.0264374241232872, -0.020515870302915573, -0.021515334025025368, -0.0006051859236322343, 0.013465890660881996, -0.038839370012283325, 0.008447078987956047, -0.01933370903134346, 0.011757130734622478, -0.017839888110756874, 0.028909215703606606, 0.025104805827140808, -0.008264381438493729, 0.010961858555674553, 0.025384224951267242, -0.021461600437760353, 0.003463194938376546, 0.015851708129048347, -0.04255780577659607, 0.009462662972509861, -0.01649652235209942, 0.00042651838157325983, 0.020666327327489853, -0.0013756058178842068, -0.0031354138627648354, 0.02519078180193901, -0.01955939456820488, 0.03406773880124092, -0.025319743901491165, 0.0005662283510901034, -0.05158521607518196, 0.011187544092535973, 0.015808720141649246, 0.0016845797654241323, -0.010537355206906796, -0.014529836364090443, -0.04728644713759422, 0.026458917185664177, 0.043890420347452164, -0.026115015149116516, -0.0002994024835061282, -0.011918334290385246, 0.0404084213078022, 0.024717915803194046, -0.03002689592540264, 0.009940900839865208, 0.028522325679659843, -0.006442778743803501, -0.033057525753974915, -0.010171960107982159, 0.00252015283331275, -0.0005625340854749084, -0.05566904693841934, 0.014626557938754559, 0.010730800218880177, -0.02069856785237789, 0.010601837188005447, 0.05665776506066322, -0.00955401174724102, -0.006152611691504717, -0.03862443193793297, 0.05777544155716896, 0.04505109041929245, 0.060483667999506, -0.020257944241166115, -0.03791513293981552, 0.009274591691792011, 0.02888772077858448, -0.010128972120583057, -0.003197208745405078, -0.03952717408537865, 0.005980661138892174, 0.012573896907269955, 0.020139727741479874, 0.011864599771797657, -0.009145628660917282, 0.0621601864695549, 0.005883938632905483, 0.025104805827140808, -0.04309514909982681, 0.05227302014827728, 0.020945748314261436, 0.012240742333233356, 0.05966690182685852, -0.009204736910760403, -0.06946808844804764, -0.019043542444705963, 0.020494377240538597, 0.017023121938109398, 0.023858163505792618, -0.042041949927806854, -0.02473941072821617, -0.022332100197672844, -0.010295549407601357, 0.007463735993951559, 0.0023831294383853674, -0.007313278969377279, -0.014787762425839901, -0.010671691969037056, 0.007700168527662754, -0.02673833817243576, 0.010671691969037056, 0.016980133950710297, 0.024524472653865814, 0.040386926382780075, 0.02364322356879711, -0.008887702599167824, -0.0071144611574709415, -0.04051588848233223, 0.009027413092553616, -0.06865132600069046, -0.0006266798009164631, 0.02854382060468197, -0.02594306506216526, -0.02594306506216526, 0.00024516411940567195, -0.020741555839776993, -0.0010008069220930338, 0.025405719876289368, -0.024137582629919052, -0.04101024568080902, -0.010096731595695019, -0.04694254696369171, -0.0026289653033018112, 0.01578722521662712, -0.0007878835895098746, 0.02809244953095913, 0.02774854749441147, -0.015604527667164803, -0.0038232167717069387, 0.003492749063298106, -0.00811929814517498, -0.018226776272058487, -0.0005326442187651992, 0.0023938764352351427, -0.0056904940865933895, 0.04629773274064064, 0.0013970995787531137, 0.013852779753506184, 0.0636647567152977, 0.030177351087331772, 0.038087084889411926, -0.004680283833295107, 0.018473956733942032, 0.055454108864068985, 0.013111243024468422, -0.0372273325920105, 0.062246162444353104, 0.04247182980179787, 0.005351966246962547, -0.018903832882642746, -0.005287484731525183, 0.05154222995042801, 0.03477703407406807, -0.00658786203712225, -0.03163893148303032, -0.014712533913552761, -0.034755539149045944, 0.02469642274081707, -0.007501350250095129, 0.023535754531621933, 0.014787762425839901, 0.029854943975806236, 0.010553475469350815, 0.034755539149045944, -0.011950574815273285, 0.034153711050748825, 0.006389044225215912, -0.00578721659258008, -0.006808173842728138, 0.05313277244567871, 0.03193984553217888, 0.012015056796371937, 0.034497614949941635, -0.009279965423047543, -0.0035787243396043777, 0.0011781310895457864, 0.007861372083425522, -0.06951107829809189, 0.004537886939942837, -0.01781839318573475, 0.04386892914772034, 0.0017557780956849456, -0.0044895256869494915, -0.005411074496805668, 0.0050161248072981834, -0.02360023744404316, 0.031123081222176552, 0.10635152459144592, 0.017528226599097252, -0.05463734269142151, -0.010472874157130718, 0.0020956494845449924, -0.027619585394859314, 0.039441198110580444, -0.01180011872202158, 0.019494913518428802, -0.034454625099897385, 0.026523398235440254, 8.807436825009063e-05, -0.013154230080544949, -0.004309515003114939, -0.02450297772884369, 0.043632496148347855, 0.008087057620286942, -0.006426658481359482, -0.0010881256312131882, 0.009473410435020924, -0.036002181470394135, -0.011853853240609169, -0.05227302014827728, -0.01140248216688633, -0.021311143413186073, -0.059194035828113556, 0.034798528999090195, -0.003285870887339115, 0.07892537862062454, 0.007049979642033577, 0.04638370871543884, -0.009473410435020924, 0.0018108560470864177, 0.05493825674057007, 0.026458917185664177, 0.004664163570851088, -0.02499733678996563, -0.039785098284482956, -0.0008228110964410007, 0.005440628156065941, 0.022031186148524284, 0.02390114963054657, 0.0466846227645874, -0.0033342319075018167, 0.008473946712911129, -0.046727608889341354, -0.0024919421412050724, -0.02624397911131382, 0.0131757240742445, 0.0022031187545508146, -0.03561529517173767, -0.03623861446976662, 0.053605638444423676, 0.04775931313633919, 0.030650217086076736, 0.011972068808972836, 0.00810317788273096, -0.03705538064241409, -0.03690492361783981, -0.015346601605415344, 0.014734027907252312, -0.007404628209769726, 0.007286411710083485, -0.017721671611070633, 0.03163893148303032, -0.010977978818118572, -0.005223003216087818, -0.015583034604787827, 0.05468032881617546, -0.00840409193187952, 0.05274588614702225, -0.02163355052471161, 0.039742112159729004, -0.001540839672088623, 0.009580879472196102, -0.01466954592615366, -0.02923162281513214, 0.05377759039402008, -0.013637841679155827, 0.0007281038560904562, 0.0232993233948946, 0.013670082204043865, 0.011166050098836422, -0.002596724545583129, -0.027469128370285034, 0.016023658215999603, -0.0024677615147083998, 0.004819993861019611, -0.016679219901561737, 0.009935528039932251, -0.06091354414820671, 0.02364322356879711, 0.0006347399903461337, 0.017248807474970818, 0.001193579868413508, -0.06138640642166138, -0.014529836364090443, -0.01865665428340435, -0.01744225062429905, -0.01459431741386652, -0.07097265869379044, 0.0012714950134977698, 0.025728126987814903, -0.005319725722074509, 0.014132199808955193, 0.010252561420202255, 0.04806022718548775, -0.03703388571739197, 0.013680829666554928, -0.009849552065134048, 0.024610446766018867, -0.021912969648838043, 0.012047297321259975, 0.008430958725512028, 0.051757168024778366, 0.04591084271669388, -0.0081784063950181, -0.014250416308641434, -0.02284795232117176, 0.01344439759850502, 0.0132187120616436, -0.009011292830109596, 0.0002026801957981661, 0.01921549253165722, 0.01695864088833332, 0.03058573417365551, -0.013207964599132538, -0.010784534737467766, 0.01638905331492424, 0.032756611704826355, 0.020870519801974297, -0.016367560252547264, 0.010333163663744926, 0.01778615266084671, -0.011316507123410702, -0.016561003401875496, 0.041096221655607224, -0.025470200926065445, -0.04973674565553665, 0.022976916283369064, 0.03950567916035652, -0.013605601154267788, 0.02753360942006111, -0.004003227688372135, 0.013551866635680199, -0.016894157975912094, 0.008887702599167824, -0.028608301654458046, 0.004392803646624088, 0.007823757827281952, 0.03402474895119667, -0.03058573417365551, -0.009811937808990479, 0.03617413341999054, -0.016593243926763535, -0.04535200446844101, -0.026072029024362564, 0.04225689172744751, -0.04120369255542755, -0.004352502524852753, 0.021698031574487686, -0.002329394919797778, -0.04146161675453186, 0.056012947112321854, 0.007807637564837933, 0.03462657704949379, -0.04939284548163414, -0.0015274060424417257, -0.00371574773453176, -0.025427212938666344, 0.008430958725512028, 0.018259016796946526, -0.032950058579444885, -0.019613130018115044, 0.0008758740150369704, -0.023922644555568695, -0.00285599404014647, 0.022590026259422302, 0.0046937172301113605, 0.0016053211875259876, 0.012735100463032722, -0.011542192660272121, -0.0294895488768816, 0.0036378325894474983, -0.023062890395522118, -0.007426121737807989, 0.010112851858139038, -0.018151547759771347, -0.042772743850946426, -0.01457282342016697, 0.01140248216688633, 0.018516942858695984, -0.0034712553024291992, -0.016174115240573883, -0.01446535438299179, -0.050768449902534485, 0.04934985935688019, -0.027168214321136475, -0.01888233795762062, 0.009768950752913952, 0.0481891892850399, -0.01805482618510723, 0.0008684854838065803, -0.030263327062129974, 0.023664718493819237, -0.025233767926692963, -0.015206892043352127, 0.0022474497091025114, 0.04010750725865364, 0.019279975444078445, 0.009446542710065842, -0.03903281316161156, 0.031402502208948135, 0.018678147345781326, 0.00561526557430625, -0.026179498061537743, -0.022289112210273743, -0.009865672327578068, -0.0008966961759142578, 0.03322947770357132, -0.008592162281274796, 0.0012654497986659408, 0.01174638420343399, -0.021235914900898933, 0.05068247392773628, 0.015959177166223526, -0.01110156811773777, 0.048017241060733795, -0.010182706639170647, 0.005459435284137726, 0.00025557519984431565, -0.04973674565553665, -0.002388502936810255, -0.006577115040272474, 0.04073082655668259, -0.017506733536720276, 0.01623859629034996, -0.003516929689794779, 5.7890636526281014e-05, -0.0022098354529589415, -0.014809256419539452, 0.0011438752990216017, -0.00849544070661068, -0.022332100197672844, -0.02504032477736473, 0.021912969648838043, 0.01922623999416828, 0.031209055334329605, 0.008737246505916119, 0.0022434196434915066, -0.029575524851679802, 0.02001076564192772, -0.020225703716278076, -0.00014239668962545693, 0.029253115877509117, 0.012563149444758892, -0.008597536012530327, 0.0333799347281456, -0.004586248192936182, 0.049521807581186295, -0.008070937357842922, -0.029661498963832855, 0.01327244658023119, -0.015486312098801136, -0.003831277135759592, -0.0008906510192900896, -0.01883935183286667, -0.03318648785352707, 0.0363890714943409, 0.016475029289722443, -0.046125780791044235, -0.0634928047657013, -0.028414856642484665, -0.010956484824419022, -0.01816229522228241, -0.011767877265810966, 0.025814102962613106, -0.017420757561922073, -0.020268691703677177, 0.01497045997530222, -0.06753364950418472, -0.03830202296376228, 0.006716825067996979, -0.00979581754654646, 0.03840949386358261, 0.021579815074801445, -0.026523398235440254, -0.01756046712398529, -0.0573885552585125, -0.013186471536755562, -0.04840412735939026, 0.013476638123393059, 0.010069863870739937, -0.006114997435361147, 0.03995705023407936, -0.03931223228573799, 0.019473418593406677, 0.015088675543665886, 0.01915101148188114, -0.011757130734622478, -0.00983343180269003, 0.029919425025582314, -0.010983352549374104, 0.025169286876916885, 0.007130581419914961, 0.01314348354935646, -0.01117679663002491, 0.00825363490730524, 0.022869445383548737, -0.043976396322250366, -0.0333799347281456, -0.03436864912509918, 0.010069863870739937, -0.0047125243581831455, -0.01756046712398529, -0.008559921756386757, -0.030005401000380516, 0.026781324297189713, -0.013519625179469585, 0.0047259582206606865, -0.0071896896697580814, -0.011961322277784348, 0.041440125554800034, 0.0066308495588600636, 0.005513170268386602, 0.016141874715685844, 0.0004234958323650062, 0.010392271913588047, 0.005241810344159603, -0.0019263854483142495, -0.02504032477736473, 0.025577669963240623, 0.018420221284031868, -0.01796885021030903, -0.04406237229704857, 0.00955401174724102, -0.00853305496275425, 0.0028640541713684797, 0.008205273188650608, -0.016872664913535118, -0.0035733510740101337, 0.014164441265165806, 0.018903832882642746, 0.002126546809449792, -0.025169286876916885, -0.02435252070426941, 0.0016886098310351372, -0.036195628345012665, 0.02299840934574604, 0.01134874764829874, -0.00212386017665267, 0.05717361718416214, -0.0016832363326102495, -0.03204731643199921, -0.003197208745405078, 0.019967777654528618, 0.034497614949941635, -0.001276196795515716, -0.0003286206629127264, -0.00649651326239109, 0.0013010490220040083, -0.004462658427655697, -0.0233423113822937, 0.006098877172917128, 0.0256421510130167, -0.04750138893723488, 0.0163138248026371, 0.013154230080544949, 0.007232677191495895, -0.016475029289722443, -0.0014360572677105665, -0.0006605997332371771, 0.024030113592743874, -0.012498668394982815, -0.027211202308535576, -0.0348845012485981, -0.005351966246962547, 0.014927471987903118, -0.009140255860984325, 0.006029022391885519, -0.018334245309233665, 0.014400873333215714, -0.007995708845555782, 0.011585179716348648, -0.04995168372988701, 0.002682700054720044, 0.005085980053991079, -0.010499740950763226, 0.08227842301130295, 0.0255991630256176, 0.002556423656642437, 0.012251488864421844, 0.010628703981637955, 0.025814102962613106, -0.02768406644463539, 0.019623875617980957, 0.025921571999788284, 0.04530901461839676, 0.03920476511120796, 0.01937669701874256, -0.01172489020973444, 0.006346056237816811, -0.011284266598522663, 0.012251488864421844, -0.015722744166851044, -0.014712533913552761, -0.015325108543038368, 0.03961314633488655, 0.015830213204026222, -0.016249343752861023, -0.006689957808703184, -2.5397994249942712e-05, 0.02764107845723629, 0.03408923000097275, 0.012154766358435154, -0.019161758944392204, -0.04930686950683594, 0.02968299388885498, -0.01297153253108263, -0.0232993233948946, -0.027512116357684135, -0.0059322998858988285, -0.004363249521702528, -0.010096731595695019, 0.031209055334329605, 0.004677596967667341, -0.019720599055290222, -0.014336391352117062, -0.019462672993540764, -0.00847932044416666, -0.04058036953210831, 0.003422894049435854, -0.015507806092500687, 0.010526608675718307, 0.027125226333737373, -0.004357876256108284, -0.0059322998858988285, -0.003707687370479107, 0.030542748048901558, 0.007813011296093464, 0.006152611691504717, 0.001977433217689395, -0.016335317865014076, 0.010612583719193935, 0.0010733486851677299, 0.023019902408123016, 0.015378843061625957, 0.0558839850127697, -0.02798498049378395, 0.0233423113822937, 0.006523380521684885, 0.006636223290115595, -0.03441163897514343, -0.022633014246821404, -0.03817306086421013, 0.029425067827105522, 0.03133801743388176, -0.00484417425468564, 0.02394413761794567, -0.03840949386358261, 0.0013292597141116858, 0.023385297507047653, 0.0044599720276892185, 0.008817847818136215, 0.0023629791103303432, -0.03546483814716339, -0.03129503130912781, 0.0002968836633954197, -0.024932855740189552, -0.018302004784345627, -0.03267063573002815, 0.000694519723765552, -0.01104783359915018, 0.030757686123251915, 0.007313278969377279, -0.0318753644824028, 0.036689985543489456, 0.019774332642555237, 0.00013735907850787044, 0.00037278380477800965, 0.010365404188632965, -0.025061817839741707, 0.010854389518499374, 0.057259589433670044, -0.03206881135702133, 0.003936059307307005, 0.006163358688354492, -0.012068791314959526, 0.023428285494446754, -0.030413784086704254, -0.0010108822025358677, 0.0194519255310297, 0.0022461062762886286, -0.026953276246786118, -0.042342863976955414, 0.03557230532169342, 0.005502423271536827, -0.022869445383548737, 0.022525545209646225, 0.027920499444007874, 0.006055889651179314, 0.04763035103678703, 0.0225470382720232, -0.028715770691633224, -0.02899518981575966, -0.007748529314994812, 0.028952203691005707, 0.021955957636237144, 0.012391199357807636, 0.03716285154223442, -0.005609892308712006, -0.06031171604990959, -0.012197754345834255, 0.0009343103738501668, 0.014293404296040535, 0.0005682433838956058, 0.011090821586549282, 0.0013359765289351344, 0.02409459464251995, -0.014013984240591526, -0.008506187237799168, -0.007141328416764736, 0.008866209536790848, -0.0005084636504761875, 0.0045217666774988174, 0.023213347420096397, 0.0018847411265596747, -0.036539528518915176, 0.010467500425875187, 0.010021503083407879, 0.02349276840686798, -0.0363890714943409, 0.04449224844574928, 0.023234842345118523, -0.0006310457247309387, 0.0029365960508584976, 0.049865711480379105, 0.0029258490540087223, -0.0026034414768218994, -0.002573887351900339, 0.057904407382011414, 0.015163904055953026, -0.02092425338923931, -0.0034873755648732185, -0.025169286876916885, 0.0014777014730498195, -0.0003721121174748987, -0.012885557487607002, 0.013508878648281097, 0.005083293188363314, -0.03077917918562889, 0.0380655899643898, 0.00643740501254797, 0.02628696709871292, 0.00824826117604971, -0.02768406644463539, 0.004876415245234966, 0.012466427870094776, -0.033895786851644516, 0.027877511456608772, 0.009887166321277618, 0.013960249722003937, -0.0030386915896087885, 0.04526602849364281, 0.020107487216591835, 0.05313277244567871, 0.028522325679659843, -0.04995168372988701, 0.013433650135993958, -0.012326717376708984, -0.017614202573895454, 0.013390662148594856, 0.01813005469739437, -0.006362176965922117, 0.014304150827229023, 0.014734027907252312, 0.008602909743785858, -0.016711460426449776, -0.0068726553581655025, -0.0233423113822937, -0.012573896907269955, 0.02628696709871292, 0.00499463127925992, -0.027469128370285034, 0.026673855260014534, -0.020569605752825737, -0.005013438407331705, 0.02424505166709423, -0.023686211556196213, 0.03690492361783981, 0.028049461543560028, 0.03073619119822979, 0.014228922314941883, -0.005483616143465042, 0.03851696103811264, 0.017839888110756874, 0.02340679243206978, 0.0012594047002494335, 0.04197746887803078, -0.00244492432102561, -0.0009940901072695851, 0.054809294641017914, 0.014658799394965172, 0.03471255302429199, 0.012831822969019413, -0.030456772074103355, -0.028780251741409302, -0.003511556191369891, -0.022826459258794785, -0.005056425929069519, -0.03905430808663368, -0.014680293388664722, -0.004365936387330294, -0.01653951033949852, -0.007829131558537483, 0.005583025049418211, -0.003793662879616022, 0.006582488771528006, -0.031402502208948135, 0.045824866741895676, -0.013627095147967339, -0.00398442056030035, 0.005061799194663763, -0.01766793616116047, 0.022826459258794785, -0.019623875617980957, 0.008635150268673897, -0.026523398235440254, 0.008538427762687206, -0.005056425929069519, 0.011821611784398556, -0.013874273747205734, -0.010317043401300907, -0.00027740487712435424, 0.026222486048936844, 0.016528762876987457, -0.009414302185177803, -0.018645906820893288, -0.007168195676058531, 0.01642129383981228, 0.0412466786801815, 0.006711451802402735, 0.02133263647556305, -0.005472869146615267, -0.021665791049599648, -0.03447612002491951, 0.021773260086774826, 0.015153157524764538, -0.01596992276608944, 0.028199918568134308, 0.00552391679957509, 0.010365404188632965, -0.005663626827299595, -0.013584107160568237, -0.011058581061661243, -0.026351448148489, -0.0022434196434915066, -0.0039011319167912006, 0.025233767926692963, 0.023277828469872475, 0.013766804710030556, 0.01327244658023119, -0.0017127904575318098, -0.008592162281274796, 0.01729179546236992, -3.8201942516025156e-05, 0.001296347239986062, -0.040043026208877563, -0.024288039654493332, 0.02718970738351345, -0.014153693802654743, -0.013594853691756725, -0.011681902222335339, -0.013283193111419678, 0.028457844629883766, -0.0033207982778549194, -0.00361096509732306, 0.03224075958132744, 0.007700168527662754, 0.05940897390246391, -0.01986030861735344, -0.031552959233522415, 0.04021497443318367, -0.017839888110756874, 0.04225689172744751, 0.002070125425234437, 0.04167655482888222, 0.00026245994376949966, -0.007254171185195446, -0.04096725955605507, -0.031058600172400475, 0.02469642274081707, 0.02098873443901539, -0.009457290172576904, -0.024223558604717255, 0.014905977994203568, -0.014787762425839901, 0.015776479616761208, -0.01174638420343399, -0.0511983260512352, -0.013605601154267788, -0.007023112382739782, -0.00296883680857718, -0.018344992771744728, -0.012541655451059341, -0.006088130176067352, 0.02224612422287464, 0.015518552623689175, 0.03047826513648033, 0.004755512345582247, -0.00651263352483511, -0.026458917185664177, 0.0036620129831135273, -0.021053217351436615, 0.018420221284031868, 0.04453523829579353, 0.036346085369586945, -0.011090821586549282, 0.052702896296978, 0.03750675171613693, 0.020322425290942192, 0.00959162600338459, -0.0069102696143090725, 0.0010961858788505197, 0.015346601605415344, 0.0028855481650680304, 0.028027968481183052, -0.009709842503070831, -0.007555084768682718, 0.01642129383981228, 0.0116496616974473, -0.00733477296307683, 0.0025282129645347595, 0.016518015414476395, 0.0057227350771427155, 0.016184862703084946, -0.04591084271669388, 0.02983345091342926, -0.023729199543595314, -0.013154230080544949, -0.026974769309163094, -0.01310049556195736, 0.01287481002509594, 0.0034094604197889566, 0.01274584699422121, -0.002706880448386073, 0.020741555839776993, 0.002724344376474619, 0.0030360049568116665, 0.03651803359389305, -0.032197773456573486, 0.0034067737869918346, 0.033057525753974915, 0.049263883382081985, -0.010548101738095284, -0.02062333934009075, -0.026781324297189713, 0.022181643173098564, 0.053605638444423676, -0.011338001117110252, 0.017205819487571716, -0.018366485834121704, -0.030005401000380516, 0.03782916069030762, -0.0271467212587595, 0.010284802876412868, -0.008785607293248177, -0.015077929012477398, -0.01157443318516016, -0.00326706375926733, 0.01469103991985321, 0.01132725365459919, -0.0022393895778805017, -0.04720047488808632, 0.028973696753382683, 0.013670082204043865, -0.0038823250215500593, -0.04380444809794426, 0.0012029834324494004, -0.02125740796327591, -0.017377769574522972, -0.019322961568832397, -0.007049979642033577, -0.026115015149116516, 0.00399248069152236, -0.0031058599706739187, 0.0017987657338380814, 0.0036002183333039284, -0.035099443048238754, 0.006926389876753092, 0.01811930723488331, -0.011316507123410702, 0.01970985159277916, -0.03666849061846733, 0.005142401438206434, -0.025556176900863647, -0.00372380786575377, -0.02140786498785019, 0.041440125554800034, 0.007651807274669409, -0.00825363490730524, -0.010016129352152348, 0.0317893885076046, 0.01329394057393074, 0.0287372637540102, 0.008033323101699352, -0.01714133843779564, -0.013820539228618145, 0.0034470746759325266, -0.0012466427870094776, 0.018774868920445442, 0.037700194865465164, -0.0481891892850399, -0.013240206055343151, 0.028264399617910385, 0.012240742333233356, -0.006813547573983669, -0.023772187530994415, -0.03583023324608803, -0.0014374005841091275, 0.01287481002509594, 0.005857071373611689, -0.003705000737681985, 0.03746376559138298, -0.01748523861169815, -0.05678672716021538, -0.006254707463085651, 0.05059650167822838, -0.0019210119498893619, 0.021289648488163948, -0.02235359326004982, -0.0031622813548892736, -0.007898986339569092, 0.0036915671080350876, -0.006673837546259165, 0.01155293919146061, -0.004304141737520695, 0.04629773274064064, 0.006969377864152193, -0.006732945330440998, 0.03918327018618584, -0.03077917918562889, -0.011391735635697842, 0.014325644820928574, -7.103042298695073e-05, 0.014003236778080463, 0.014271910302340984, 0.009865672327578068, 0.016378305852413177, -0.0023025276605039835, 9.311198664363474e-05, -0.01187534723430872, 0.011284266598522663, 0.030306315049529076, -0.0040086014196276665, 0.010300923138856888, 0.028672782704234123, -0.03632459044456482, -0.03742077574133873, -0.0205373652279377, -0.018785616382956505, -0.034948986023664474, -0.02465343475341797, -0.010370777919888496, 0.010918870568275452, -0.050209611654281616, -0.0197850801050663, 0.018968313932418823, 0.01789362169802189, -0.02749062143266201, -0.010333163663744926, -0.026458917185664177, 0.027426140382885933, 0.006711451802402735, -0.0018901146249845624, -0.008506187237799168, 0.005061799194663763, -0.015959177166223526, 0.0076464335434138775, 0.01918325200676918, -0.013036014512181282, -0.006738319061696529, -0.02375069446861744, -0.04470718652009964, -0.024567458778619766, -0.02114993892610073, -0.03567977622151375, -0.0018860844429582357, -0.011832359246909618, -0.015486312098801136, -0.00672219879925251, 0.014701786451041698, 0.028608301654458046, -0.01459431741386652, -0.002318647922948003, 0.009322953410446644, 0.016367560252547264, -0.02499733678996563, 0.004578188061714172, 0.009032786823809147, -0.007135955151170492, 0.03980659320950508, -0.005846324376761913, 0.011531445197761059, -0.009091894142329693, -0.003949493169784546, -0.010580343194305897, 0.019763587042689323, -0.0342181921005249, -0.02235359326004982, -0.02899518981575966, -0.00993015430867672, 0.03610965237021446, 0.015206892043352127, -0.0009329669992439449, 0.01801183819770813, -0.010574969463050365, -0.025384224951267242, -0.022933928295969963, 0.0006374266813509166, -0.021085457876324654, 0.0021655044984072447, 0.022138655185699463, 0.017023121938109398, 0.02488986775279045, -0.006679210811853409, 0.0008409465081058443, 0.011456216685473919, 0.012111779302358627, 0.025728126987814903, -0.02458895370364189, 0.01482000295072794, 0.023836668580770493, -0.03727031871676445, -0.018065573647618294, -0.034497614949941635, -0.016217103227972984, 0.03417520597577095, 0.002185654826462269, -0.01914026401937008, 0.003705000737681985, -0.002051318297162652, 0.02069856785237789, 0.03118756227195263, -0.0411607027053833, -0.052058082073926926, -0.017925862222909927, -0.003914565779268742, -0.005131654441356659, -0.016603991389274597, -0.03282109275460243, -0.033745329827070236, 0.03204731643199921, -0.029360586777329445, -0.004674910102039576, -0.0232993233948946, 0.00559914531186223, -0.03591620549559593, -0.0198280680924654, 0.017345529049634933, -0.0064642722718417645, 0.00416443170979619, -0.030908143147826195, -0.025405719876289368, -0.023729199543595314, 0.020558858290314674, 0.013713070191442966, 0.018452461808919907, -0.008893076330423355, 0.03892534598708153, 0.008275128901004791, 0.003981734160333872, -0.025706633925437927, -0.035056453198194504, -0.024030113592743874, -0.021612055599689484, -0.025663645938038826, 0.036797456443309784, -0.015174651518464088, -0.0004490197461564094, 0.05584099888801575, -0.023836668580770493, -0.04479316249489784, -0.014132199808955193, -0.018441714346408844, -0.004094576463103294, -0.021010229364037514, 0.003347665537148714, -0.015497058629989624, -0.02220313623547554, -0.013594853691756725, 0.01816229522228241, -0.024116089567542076, 0.012176260352134705, 5.8268458815291524e-05, -0.0023737261071801186, 0.01766793616116047, 0.006200972944498062, -0.025083310902118683, -0.012219248339533806, -0.004129503853619099, 0.010032249614596367, -0.015314361080527306, 0.02454596571624279, -0.037141356617212296, 0.011316507123410702, -0.010128972120583057, 0.030972624197602272, -0.0032428831327706575, 0.03209030255675316, 0.012713606469333172, -0.01813005469739437, 0.0071574486792087555, 0.009548638947308064, -0.016711460426449776, 0.028823239728808403, 0.04337456822395325, -0.0015771104954183102, 0.007463735993951559, 0.010999472811818123, 0.015088675543665886, 0.030370796099305153, 0.03716285154223442, 0.004709837958216667, -0.014099959284067154, -0.02590007707476616, 0.0427512489259243, -0.02420206367969513, 0.012358957901597023, 0.004691030830144882, 0.009134882129728794, -0.0005991408252157271, -0.019656116142868996, -0.0023817862384021282, 0.050209611654281616, -0.006969377864152193, -0.027555102482438087, -0.031123081222176552, 0.002215208951383829, 0.0636647567152977, 0.0030171978287398815, 0.017624950036406517, 0.006523380521684885, -0.022482557222247124, -0.014110705815255642, 0.055712033063173294, -0.03757123276591301, 0.025384224951267242, -0.058850135654211044, -0.012144019827246666, 0.0030763058457523584, 0.0015421831049025059, 0.0009484157199040055, -0.0028801746666431427, -0.021472346037626266, -0.020171968266367912, -0.007684047799557447, -0.004357876256108284, 0.020720062777400017, 0.021160686388611794, 0.01952715404331684, 0.022826459258794785, -0.0024758216459304094, -0.021805500611662865, 0.014927471987903118, 0.02465343475341797, 0.043181125074625015, -0.02858680859208107, 0.006002155132591724, 0.06671687960624695, -0.01767868362367153, -0.00790973287075758, -0.017775405198335648, -0.0007583295810036361, -0.009070401079952717, -0.004113383591175079, 0.0197850801050663, -0.007200436666607857, 0.02972598187625408, 0.047415412962436676, -0.04939284548163414, 0.06332085281610489, 0.028952203691005707, 0.023707706481218338, 0.011993562802672386, 0.012197754345834255, -0.01461581140756607, -0.007033859379589558, -0.028414856642484665, 0.04694254696369171, -0.0045029595494270325, -0.012595390900969505, 0.0029607764445245266, -0.0159376822412014, 0.049822721630334854, -0.009296085685491562, -0.0029580898117274046, -0.009661480784416199, -0.01578722521662712, -0.0031810884829610586, 0.00206340872682631, -0.018001090735197067, 0.03916177898645401, 0.017495986074209213], [0.06477976590394974, 0.015099400654435158, 0.015182756818830967, 0.024482939392328262, -0.04263079911470413, -0.0391298346221447, -0.006034401711076498, 0.0062576774507761, 0.06940008699893951, 0.013313193805515766, -0.06301736831665039, -0.0029383099172264338, -0.03305673226714134, -0.018552733585238457, -0.005823033861815929, 0.0358908474445343, -0.006269585341215134, 0.03224698454141617, 0.009907493367791176, -0.02018413506448269, 0.02710270881652832, 0.028055353090167046, -0.01901714690029621, 0.023446939885616302, 0.01769535429775715, -0.00972887221723795, 0.03639098256826401, 0.016302112489938736, 0.012991677038371563, -0.05701571702957153, 0.03329489380121231, -0.022565744817256927, 0.042583167552948, -0.026245329529047012, 0.023065881803631783, 0.02177981287240982, -0.01876707747578621, -0.0178382508456707, 0.04794178903102875, -0.0058319647796452045, -0.05687282234430313, 0.016504550352692604, 0.023387400433421135, 3.0525993679475505e-06, -0.025530846789479256, 0.06911429017782211, 0.006728045176714659, -0.005465792492032051, -0.018124043941497803, 0.04098748788237572, -0.03415227308869362, 0.026745468378067017, 0.015813883394002914, 0.05425305292010307, 0.08030785620212555, 0.004039803985506296, -0.0389154888689518, -0.009967033751308918, -0.0007126220152713358, 0.03007972054183483, -0.014944596216082573, 0.013563263230025768, -0.027531398460268974, 0.05001378804445267, -0.004402999300509691, -0.028531674295663834, 0.02198225073516369, 0.03381884843111038, -0.06687557697296143, 0.033104363828897476, 0.016063952818512917, 0.016992779448628426, -0.03131815791130066, -0.05101406201720238, -0.008960803970694542, 0.024363858625292778, 0.003099068533629179, 0.0007561608217656612, 0.02977011166512966, 0.02074381336569786, -0.017611997202038765, 0.045965053141117096, -0.01290831994265318, -0.009056068025529385, 0.00292044784873724, -0.0017162469448521733, -0.039248913526535034, 0.010877998545765877, -0.027579031884670258, -0.02796008810400963, -0.0025751146022230387, -0.028436411172151566, 0.015492365695536137, 0.06435107439756393, 0.01994597539305687, 0.040392085909843445, -0.022208502516150475, -0.01465880312025547, -0.01658790558576584, 0.10926821827888489, 0.029579583555459976, 0.04372633993625641, 0.035795580595731735, 0.008669055998325348, 0.0059718843549489975, -0.041154202073812485, -0.027388501912355423, 0.004757263697683811, -0.0067101833410561085, 0.018302664160728455, -0.0466795340180397, 0.0002891422191169113, -0.02036275714635849, 0.057396773248910904, -0.04539346694946289, -0.02018413506448269, 0.01752864196896553, -0.010068251751363277, 0.04760836064815521, -0.03024643287062645, 0.0248163640499115, 0.007299631368368864, 0.02408997341990471, -0.07335355132818222, 0.0024738963693380356, 0.030960915610194206, -0.03867732733488083, 0.029841559007763863, -0.03305673226714134, -0.014134848490357399, 0.03651006519794464, -0.00010363719775341451, 0.0427260622382164, -0.039391811937093735, -0.013991951942443848, -0.0391298346221447, -0.02177981287240982, -0.00698406808078289, -0.02347075566649437, -0.012777332216501236, 0.021291583776474, -0.002709080232307315, 0.05058537423610687, -0.023566020652651787, -0.0024530570954084396, 0.020267492160201073, 0.009996803477406502, 0.0785454586148262, 0.021315399557352066, 0.0038701144512742758, -0.06535135209560394, 0.027983903884887695, -0.02336358278989792, -0.017326204106211662, 0.01963636465370655, -0.027436135336756706, -0.04067787900567055, 0.04163052514195442, -0.010883952490985394, -0.013122664764523506, -0.02212514728307724, -0.03412845730781555, -0.0056384592317044735, -0.0178025271743536, 0.017123768106102943, 0.01807641237974167, -0.022256135940551758, -0.008091515861451626, -0.05787309631705284, -0.04815613105893135, -0.05787309631705284, -0.0027820169925689697, -0.06439870595932007, -0.026888364925980568, -0.025387950241565704, -0.004679861478507519, -0.010115884244441986, 0.006769723258912563, -0.020993882790207863, -0.030103536322712898, 0.00472749350592494, 0.013170297257602215, -0.004840620327740908, -0.024768732488155365, -0.033413972705602646, 0.021565468981862068, 0.006442252080887556, 0.008538068272173405, -0.03658151254057884, -0.03100854903459549, 0.0025646951980888844, 0.03781994804739952, 0.0015703734243288636, 0.03753415495157242, -0.01838602125644684, -0.012348642572760582, -0.043440546840429306, -0.007698550820350647, 0.021946527063846588, 0.01880280300974846, 0.021803630515933037, -0.03191355988383293, 0.0015138101298362017, 0.006227907259017229, -0.04196394979953766, -0.05415778607130051, 0.05949259176850319, 0.039082203060388565, 0.07016219943761826, -0.017516734078526497, -0.0013634711503982544, -0.05763493478298187, -0.03136578947305679, 0.024744916707277298, -0.007775953039526939, 0.006019516382366419, 0.04148762673139572, 0.029960639774799347, -0.05029958114027977, 0.017481008544564247, -0.011175699532032013, 0.011610343120992184, 0.049632728099823, -0.0006047053611837327, -0.0535861998796463, -0.025673743337392807, 0.00916323997080326, -0.0178739745169878, -0.005179999396204948, -0.06292210519313812, -0.031961191445589066, 0.04725112020969391, 0.001676057232543826, -0.024840181693434715, 0.04158288985490799, 0.017850158736109734, 0.023327859118580818, -0.029150893911719322, -0.021767904981970787, -0.018588457256555557, 0.01680225133895874, 0.011265010572969913, 0.03474767506122589, 0.006126688793301582, -0.018278848379850388, -0.021720273420214653, 0.003995148930698633, -0.004992447793483734, 0.04051116853952408, 0.03515254706144333, 0.04432174190878868, -0.02181553840637207, 0.013337009586393833, -0.022649100050330162, 0.03217553719878197, 0.019207675009965897, 0.024042341858148575, 0.036033742129802704, 0.02672165259718895, -0.030960915610194206, -0.0016805228078737855, -0.022375216707587242, 0.01415866520255804, 0.018755169585347176, -0.029127076268196106, -0.012229561805725098, 0.06311263889074326, -0.04982325807213783, -0.020696181803941727, 0.013408457860350609, -0.061207350343465805, 0.037629421800374985, 0.012301010079681873, -0.04563162848353386, -0.026292962953448296, 0.00960979238152504, -0.011348366737365723, -0.005230608396232128, -0.02326831966638565, 0.0071626887656748295, -0.039701420813798904, -0.01662363111972809, 0.0681140124797821, 0.0021255859173834324, 0.012860688380897045, -0.017504826188087463, 0.03491438552737236, 0.003649815684184432, -0.01807641237974167, 0.026935996487736702, 0.03308054804801941, -0.004593528341501951, -0.02081526257097721, 0.0004565990820992738, -0.005242516752332449, -0.026912180706858635, -0.04591742157936096, -0.0013433762360364199, 0.020517561584711075, -0.011312642134726048, 0.01707613654434681, 0.04067787900567055, -0.0018978446023538709, 0.00838326383382082, -0.04036827012896538, 0.027126526460051537, 0.0006214510649442673, 0.021684549748897552, -0.03348542004823685, -0.0010873533319681883, -0.010651745833456516, 0.05558675155043602, -0.009508573450148106, -0.012360550463199615, -0.09783649444580078, 0.004763217642903328, -0.026364410296082497, 0.015147033147513866, 0.010193286463618279, 0.027197973802685738, -6.721533281961456e-05, 0.015111308544874191, 0.03315199539065361, -0.04527438431978226, 0.02174408920109272, 0.03046077862381935, 0.011544848792254925, 0.05120459198951721, -0.02955576591193676, -0.008008159697055817, -0.02150592766702175, 0.030055904760956764, -0.013729975558817387, -0.01127096451818943, -0.020660458132624626, -0.04670334979891777, 0.025673743337392807, 0.031508684158325195, -0.051395121961832047, -0.01374188344925642, 0.006882849615067244, -0.006442252080887556, 0.010752963833510876, -0.01704041101038456, 0.01573052629828453, 0.04579833894968033, 0.043988317251205444, 0.04148762673139572, -0.00654942449182272, 0.017814435064792633, 0.04925167188048363, 0.0069483439438045025, -7.084356184350327e-05, -0.027983903884887695, -0.07273433357477188, -0.04422647878527641, -0.004903137218207121, -0.015004136599600315, -0.03324726223945618, 0.019267216324806213, -0.009669331833720207, -0.0322946161031723, 0.029746295884251595, 0.025316502898931503, -0.046274662017822266, -0.006114780902862549, 0.007787860929965973, 0.01680225133895874, -0.001210155081935227, -0.03903457149863243, 0.03198500722646713, -0.004111252259463072, -0.02579282410442829, -0.053633831441402435, 0.01355135440826416, -0.0028073214925825596, 0.008942941203713417, 0.006251723505556583, -0.0231968704611063, -0.009580021724104881, 0.018814710900187492, -0.011777056381106377, -0.010675561614334583, 0.0428689606487751, 0.0673995316028595, 0.009067975915968418, 0.002012459561228752, 0.059302061796188354, 0.020696181803941727, 0.01496841199696064, -0.0006292657344602048, 0.014301561750471592, -0.0077164131216704845, 0.01320602186024189, -0.018540825694799423, 0.022303767502307892, 0.049346935003995895, 0.012384366244077682, -0.02243475615978241, -0.044512271881103516, 0.01006229780614376, -0.0080022057518363, 0.005656321067363024, -0.05334803834557533, 0.037010204046964645, 0.01374188344925642, 0.03767705336213112, 0.010764872655272484, 0.055539119988679886, -0.018338387832045555, 0.022101331502199173, -0.03389029577374458, 0.01811213605105877, 0.0011044711573049426, 0.04155907407402992, 0.03429516777396202, -0.01546854991465807, 0.01424202136695385, -0.0036408845335245132, -0.009395447559654713, 0.02472110092639923, -0.008829815313220024, -0.058539945632219315, 0.01890997402369976, -0.0079664820805192, 0.02343503199517727, -0.0020050168968737125, 0.021755997091531754, -0.010223056189715862, -0.041463810950517654, -0.008031976409256458, 0.0037212639581412077, 0.034866753965616226, 0.013527538627386093, -0.045607808977365494, -0.011348366737365723, -0.010747009888291359, -0.009222780354321003, -0.0116162970662117, 0.017957331612706184, -0.015873422846198082, -0.006341033615171909, -0.0027328962460160255, 0.05277645215392113, -0.05534859001636505, 0.015111308544874191, -0.011431722901761532, 0.02441149204969406, 0.02526887133717537, -0.028293514624238014, -0.02595953643321991, -0.024673467501997948, -0.05858758091926575, 0.02060091681778431, -0.036486249417066574, 0.010687470436096191, -0.00022718316176906228, -0.05077590048313141, 0.0535861998796463, -0.022530021145939827, 0.06154077500104904, 0.024673467501997948, 0.0533004067838192, 0.03339015692472458, 0.02557848021388054, 0.05001378804445267, 0.011175699532032013, -0.012455814518034458, -0.015944872051477432, -0.03896312043070793, -0.027841007336974144, 0.001419290085323155, 0.04234500601887703, 0.009978941641747952, 0.034271351993083954, -0.010550527833402157, 0.01745719276368618, -0.022530021145939827, -0.01825503259897232, 0.0020347870886325836, 0.04491714388132095, 0.0303178820759058, -0.05220486596226692, -0.04196394979953766, 0.03408082202076912, 0.04887061566114426, 0.04127328097820282, 0.03138960525393486, 0.014611170627176762, -0.048584822565317154, -0.060445234179496765, -0.015504274517297745, 0.02910326048731804, -0.010288550518453121, 0.01814785972237587, 0.0064005739986896515, -0.01836220547556877, -0.02254192903637886, 0.03653388097882271, -0.027841007336974144, 0.027436135336756706, -0.008335631340742111, 0.007597332354635, -0.014480181969702244, 0.002971057081595063, -0.02195843495428562, 0.040011029690504074, 0.023065881803631783, -0.028984179720282555, -0.007246044930070639, -0.022625284269452095, -0.031961191445589066, 0.034271351993083954, -0.006388666108250618, 0.00993726309388876, -0.027317054569721222, 0.015480457805097103, 0.04746546596288681, -0.005171068478375673, 0.010306412354111671, -0.003816528245806694, 0.01211643498390913, -0.0461793951690197, -0.010675561614334583, 0.00023592813522554934, -0.006668504793196917, 0.0077164131216704845, -0.0358193963766098, 0.01149721723049879, -0.0007926292018964887, 0.009824137203395367, -0.039487075060606, -0.07983153313398361, -0.006555378437042236, 0.021303491666913033, 0.006626826710999012, 0.012074757367372513, 0.0007085286779329181, 0.055396221578121185, 0.004748332779854536, -0.01118165347725153, -0.031437236815690994, 0.007650918792933226, -0.03879640996456146, 0.004757263697683811, 0.0056831142865121365, 0.008615470491349697, 0.019957883283495903, 0.016325928270816803, -0.004453608766198158, 0.010020619258284569, 0.03300910070538521, 0.0389154888689518, -0.020922433584928513, -0.011401952244341373, -0.009443079121410847, 0.02755521610379219, 0.003227079985663295, -0.011241193860769272, -0.012967860326170921, 0.016087768599390984, 0.02831733040511608, 0.016433101147413254, -0.006936436053365469, 0.008466619998216629, 0.01838602125644684, -0.0038016431499272585, -0.018243124708533287, 0.015873422846198082, -0.04584597051143646, -0.021732181310653687, 0.03177066147327423, 0.025602295994758606, 0.01890997402369976, 0.015039860270917416, 0.020446112379431725, 0.02741231955587864, -0.02392326109111309, -0.03146105259656906, 0.004745355807244778, 0.014646895229816437, 0.032794754952192307, -0.01569480262696743, -0.04944220185279846, 0.005108551122248173, -0.01756436564028263, 0.025840457528829575, -0.040153928101062775, -0.01147935539484024, 0.019040962681174278, -0.02550703100860119, -0.04556017741560936, -0.006882849615067244, -0.0037034018896520138, -0.02122013457119465, 0.028079168871045113, -0.023065881803631783, 0.001945476746186614, -0.030889468267560005, 0.03665295988321304, -0.0050847348757088184, -0.030032088980078697, -0.007400849834084511, 0.013801423832774162, -0.023792272433638573, -0.0634460598230362, 0.005742654670029879, -0.02779337577521801, 0.004084459505975246, 0.0051651145331561565, 0.039558522403240204, -0.010741055943071842, 0.018552733585238457, -0.025697560980916023, -0.03691493719816208, 0.0019916205201298, -0.03622427210211754, -0.028603123500943184, -0.02063664048910141, -0.013801423832774162, -0.020922433584928513, -0.003712332807481289, 0.005266332533210516, 0.021767904981970787, -0.01631402038037777, 0.030722755938768387, -0.033104363828897476, -0.02626914717257023, -0.0004867413081228733, -0.011652021668851376, 0.0031973100267350674, 0.03277093917131424, -0.020315123721957207, 0.004334527999162674, -0.029508134350180626, 0.000198901558178477, -0.018338387832045555, 0.009026297368109226, -0.02419714629650116, -0.008496389724314213, 0.03389029577374458, -0.0005086967721581459, 0.006525608245283365, -0.019648274406790733, 0.028841283172369003, 0.0032151720952242613, -0.009538344107568264, -0.00921087246388197, -0.022256135940551758, -0.014837423339486122, 0.02672165259718895, 0.010199240408837795, 0.02247047983109951, -0.018719445914030075, 0.010359998792409897, -0.017302388325333595, -0.019410112872719765, 0.04541728273034096, 0.0317230299115181, 0.013086941093206406, -0.01887425035238266, 0.005022217985242605, 0.012634435668587685, -0.015718618407845497, -0.003304482437670231, 0.01488505583256483, 0.008413033559918404, 0.0011565688764676452, -0.007781906984746456, -0.007436573971062899, 0.02412569895386696, -0.030865652486681938, -0.019279124215245247, -0.007400849834084511, -0.009847952984273434, 0.023423124104738235, -0.02803153730928898, 0.029651030898094177, -0.00945498701184988, 0.040011029690504074, -0.027888640761375427, -0.006364849861711264, -0.009681240655481815, 0.024042341858148575, 0.022315675392746925, 0.007019792217761278, 0.029817743226885796, -0.007353217341005802, 0.019374389201402664, 0.012872596271336079, -0.024066157639026642, 0.02579282410442829, -0.032437514513731, 0.03550978749990463, 0.02108914777636528, 0.03312817960977554, 0.031199077144265175, 0.019886434078216553, -0.03107999637722969, -0.004459562711417675, -0.003465241054072976, 0.03162776678800583, -0.018790895119309425, -0.0751635804772377, -0.05029958114027977, -0.02931760624051094, -0.003637907560914755, 0.013063125312328339, 0.04086840897798538, -0.01474215928465128, -0.014301561750471592, -0.009693148545920849, -0.053729098290205, 0.002085396321490407, -0.02762666344642639, -0.0018978446023538709, 0.01656408980488777, 0.017326204106211662, -0.00627553928643465, 0.014837423339486122, -0.036248087882995605, 0.012848780490458012, -0.03374739736318588, -0.02381609007716179, 0.02288726158440113, -0.03253277763724327, 0.00441788462921977, 0.0034860800951719284, 0.010175423696637154, -0.004831688944250345, 0.04043972119688988, 0.019743537530303, 0.0017802526708692312, 0.0059510450810194016, 1.64433349709725e-05, -0.017469100654125214, -0.05987364798784256, -0.010639837943017483, 0.008168919011950493, -0.01638546958565712, -0.008621424436569214, -0.02077953703701496, -0.037081651389598846, -0.01773107796907425, -0.017540549859404564, 0.010830366984009743, 0.014873147942125797, -0.006745907478034496, -0.015718618407845497, 0.03412845730781555, -0.027698110789060593, 0.00872859638184309, -0.007299631368368864, -0.0231611467897892, 0.022934893146157265, 0.02163691632449627, -0.002289321506395936, 0.014503998681902885, 0.013265561312437057, -0.004316666163504124, -0.0026197698898613453, 0.01998169906437397, -0.005977838300168514, 0.03389029577374458, 0.009847952984273434, -0.016671262681484222, -0.03400937467813492, -0.005162137560546398, 0.008258229121565819, -0.006132642738521099, 0.026626387611031532, 0.020172227174043655, 0.015444734133780003, 0.006567286793142557, 0.026150066405534744, 0.04372633993625641, -0.0077164131216704845, -0.01147935539484024, -0.018469376489520073, 0.0013537958730012178, 0.01943392865359783, 0.014801699668169022, -0.019826894626021385, 0.05244302749633789, 0.008115332573652267, -0.013980044052004814, -0.0002908167662099004, 0.025364134460687637, -0.011157837696373463, 0.015885330736637115, 0.0018636089516803622, 0.0035366893280297518, -0.020839078351855278, -0.02472110092639923, 0.010925631038844585, 0.015135124325752258, 0.02695981226861477, -0.03246133029460907, -0.00685307988896966, 0.02796008810400963, -0.01062793005257845, -0.005093666259199381, -0.022720549255609512, -0.0012146205408498645, 0.039915766566991806, -0.007115056738257408, -0.02724560536444187, -0.007841447368264198, 0.006215999368578196, -0.033652134239673615, -0.006489884108304977, 0.004126137588173151, -0.004117206204682589, 0.027007445693016052, 0.019695905968546867, -0.012693975120782852, -0.03643861785531044, 0.02278008870780468, -0.003063344396650791, -0.022339491173624992, 0.08388026803731918, 0.005174045450985432, 0.06115971878170967, -0.006019516382366419, 0.0707814171910286, 0.03374739736318588, -0.02101769857108593, 0.028150618076324463, 0.006073102820664644, -0.03203263878822327, 0.021613100543618202, -0.00972887221723795, 0.001945476746186614, -0.0016403330955654383, 0.02094625122845173, 0.023256411775946617, -0.032723307609558105, 0.004516126122325659, 0.0005072082858532667, 0.019886434078216553, 0.026078617200255394, 0.006668504793196917, -0.022220410406589508, -0.006034401711076498, 0.010181378573179245, 0.019934067502617836, 0.004915045574307442, -0.016099676489830017, -0.028222065418958664, 0.020041238516569138, -0.027459951117634773, -0.016718894243240356, -0.04870390146970749, 0.0012391809141263366, -0.026816915720701218, -0.017552457749843597, 0.013587079010903835, -0.004992447793483734, 0.02008887194097042, -0.022899169474840164, 0.025387950241565704, -0.0027701088692992926, -0.000838028616271913, 0.015444734133780003, 0.010717240162193775, -0.0017862067325040698, 0.022756272926926613, -0.028769835829734802, -0.011038756929337978, -0.004798941779881716, 0.04303567484021187, 0.037843767553567886, 0.032818570733070374, -0.03529544547200203, -0.01658790558576584, 0.008145102299749851, -0.024744916707277298, 0.0460365004837513, 0.007936711423099041, 0.03024643287062645, 0.02655494026839733, 0.0017058274243026972, 0.01704041101038456, 0.01883852668106556, -0.005823033861815929, 0.015587630681693554, -0.019493468105793, 0.04532201588153839, 0.031056180596351624, 0.027269423007965088, 0.006995975971221924, 0.00010317204578313977, 0.009258504956960678, 0.022458571940660477, 0.038248639553785324, 0.0046858154237270355, -0.0035039421636611223, -0.01756436564028263, -0.018612273037433624, 0.006656596902757883, 0.013086941093206406, -0.04572689160704613, -0.04072551429271698, 0.032413698732852936, -0.05449121072888374, 0.04706059396266937, 0.008746459148824215, -0.007436573971062899, -0.008704780600965023, 0.01589723862707615, 0.027579031884670258, -0.009818182326853275, 0.0037004249170422554, 0.013765699230134487, 0.03834390267729759, -0.01756436564028263, -0.05572964996099472, 0.02236330695450306, 0.012872596271336079, 0.0462508462369442, 0.026602571830153465, 0.0162187572568655, 0.0030469708144664764, 0.030484594404697418, -0.007877171039581299, 0.0125153549015522, 0.00248431577347219, 0.004066597204655409, -0.00011321945203235373, -0.0461793951690197, -0.01083632092922926, 0.02301825024187565, -0.00914537813514471, 0.019422020763158798, 0.03177066147327423, -0.003396769752725959, -0.019934067502617836, 0.0133251016959548, 0.006882849615067244, -0.02005314640700817, 0.012491539120674133, 0.018397929146885872, -0.02094625122845173, -0.023625560104846954, -0.02619769796729088, -0.0034592868760228157, 0.014730251394212246, -0.005239539779722691, -0.0027626664377748966, 0.02786482498049736, 0.004694746807217598, -0.016861790791153908, 0.005956999491900206, 0.012777332216501236, 0.04277369752526283, 0.0029264020267874002, 0.05001378804445267, -0.015992503613233566, 0.01565907895565033, -0.003637907560914755, -0.017469100654125214, 0.028674570843577385, 0.016718894243240356, -0.04027300700545311, 0.032890018075704575, 0.023637467995285988, 0.012443906627595425, -0.013920503668487072, 0.028150618076324463, 0.015944872051477432, 0.01811213605105877, -0.015956779941916466, 0.05029958114027977, 0.045965053141117096, -0.059826016426086426, -0.002381608821451664, 0.002950218040496111, 0.003947516903281212, -0.0322231687605381, 0.00342653994448483, 0.009246597066521645, 0.014361102133989334, 0.027983903884887695, 0.009574067778885365, -0.03972523659467697, 0.015170848928391933, 0.022351399064064026, -0.003614091547206044, -0.0035366893280297518, -0.005489608738571405, -0.026531122624874115, 0.023863721638917923, 0.014170573092997074, 0.009377584792673588, 0.006704228930175304, 0.027293238788843155, 0.01832647994160652, -0.00791884958744049, 0.023411216214299202, -0.016980871558189392, -0.016480734571814537, -0.006745907478034496, -0.00166563771199435, 0.014896963723003864, 0.02434004284441471, -0.006864987779408693, 0.028198249638080597, -0.007633056491613388, 0.0033580686431378126, -0.021243952214717865, 0.02403043396770954, -0.020386572927236557, -0.01274160761386156, -0.0019246377050876617, -0.0002597442362457514, -0.030675122514367104, -0.009067975915968418, -0.03062749095261097, -0.006210045423358679, 0.012693975120782852, -0.045369651168584824, 0.02793627232313156, 0.03124670870602131, 0.04748928174376488, 0.019755445420742035, -0.02374464087188244, 0.022446664050221443, -0.012527262791991234, 0.018540825694799423, 0.004474447574466467, 0.0251021571457386, 0.015849607065320015, 0.022803904488682747, 0.005510447546839714, 0.029746295884251595, 0.041916318237781525, -0.009312090463936329, -0.016433101147413254, -0.02223232015967369, 0.03000827319920063, -0.020553285256028175, -0.0323660634458065, -0.03577176481485367, 0.015016044490039349, 0.012944044545292854, -0.030984731391072273, -0.0010121838422492146, 0.020422296598553658, -0.011008987203240395, -0.007013838272541761, 0.0029933846089988947, 0.04767981171607971, -0.03489056974649429, -0.01209857314825058, 0.011425768956542015, -0.012479630298912525, -0.02081526257097721, -0.020612824708223343, -0.005614642985165119, -0.008341585285961628, 0.02063664048910141, -0.018647998571395874, 0.011628205887973309, 0.019862618297338486, 0.022065605968236923, -0.04534583538770676, 0.013289378024637699, -0.0035992064513266087, 0.006019516382366419, 0.0037450799718499184, 0.00503114890307188, 0.027293238788843155, 0.028531674295663834, 0.0015063676983118057, -0.0007554165786132216, -0.011068527586758137, -0.012301010079681873, -0.0004413418937474489, 0.003658746602013707, 0.011151883751153946, -0.040320638567209244, 0.0002852348843589425, 0.02962721511721611, -0.01507558487355709, -0.006114780902862549, -0.016814159229397774, -0.010032527148723602, -0.018993331119418144, 0.02056519314646721, 0.008716688491404057, -0.019207675009965897, 0.047274935990571976, 0.0016805228078737855, 0.03491438552737236, 0.020338939502835274, -0.008496389724314213, 0.0250307098031044, -0.004602459259331226, 0.024292411282658577, -0.025745192542672157, 0.015182756818830967, 0.03720073029398918, 0.013789515942335129, -0.012586803175508976, 0.028722204267978668, -0.038105741143226624, 0.005010309629142284, -0.009550251998007298, 0.015682894736528397, 0.05068063735961914, 0.019886434078216553, 0.010169469751417637, -0.005575941875576973, -0.022244228050112724, 0.01673080213367939, -0.004170792642980814, 0.0047602406702935696, 0.01583769917488098, 0.00921087246388197, -0.030532225966453552, -0.030365513637661934, 0.010639837943017483, -0.05115696042776108, -0.01168179139494896, 0.004790010862052441, -0.02056519314646721, 0.00036821907269768417, 0.036176640540361404, -0.026126250624656677, 0.004060643259435892, -0.0010136723285540938, -0.022982526570558548, -0.004105298314243555, -0.027007445693016052, 0.02385181374847889, 0.027507582679390907, 0.008942941203713417, -0.014611170627176762, 0.008615470491349697, 0.022029882296919823, 0.05277645215392113, 0.008663102053105831, -0.002159821568056941, 0.009204918518662453, -0.03798666223883629, -0.0018963561160489917, -0.005037102848291397, 0.05620596930384636, -0.0133251016959548, -0.008567837998270988, 0.010699378326535225, -0.0048555051907896996, -0.03131815791130066, 0.007126964628696442, -0.007490159943699837, -0.010300458408892155, 0.013813331723213196, 0.0074068037793040276, 0.04098748788237572, 0.03038932941854, 0.00737107964232564, -0.007823585532605648, -0.008585699833929539, -0.006626826710999012, -0.0035485972184687853, 0.051347486674785614, 0.003173493780195713, 0.008782182820141315, -0.025602295994758606, 0.011378136463463306, -0.032890018075704575, -0.03477149084210396, -0.032413698732852936, -0.008264183066785336, 0.012836871668696404, 0.007948619313538074, -0.004593528341501951, 0.007537792436778545, 0.031508684158325195, -0.017481008544564247, -0.004638183396309614, 0.03753415495157242, -0.02772192843258381, -0.018302664160728455, -0.00972887221723795, 0.02550703100860119, 0.001926126191392541, 0.028388777747750282, 0.021315399557352066, -0.00409636739641428, 0.03286620229482651, 0.009347815066576004, 0.03641480207443237, 0.01690942421555519, -0.028222065418958664, 0.019791170954704285, -0.048132315278053284, 0.007186505012214184, 0.024744916707277298, -0.022208502516150475, 0.015147033147513866, -0.005087711848318577, -0.009847952984273434, 0.004289872944355011, -0.021172503009438515, -0.02910326048731804, -0.002226804383099079, 0.04548873007297516, 0.023137331008911133, -0.04784652218222618, -0.007912895642220974, 0.007174596656113863, -0.018814710900187492, -0.008788136765360832, -0.04034445434808731, -0.02216087095439434, 0.02441149204969406, -0.004379183519631624, -0.012431998737156391, 0.030413145199418068, -0.021684549748897552, 0.014718343503773212, 0.020827170461416245, -0.018433652818202972, -0.007329401560127735, 0.011342412792146206, 0.0007033188594505191, -0.0022580630611628294, -0.008276090957224369, -0.008859585039317608, 0.04196394979953766, -0.02357792854309082, -0.03424753621220589, 0.005787309724837542, 0.021291583776474, -0.0031050227116793394, 0.003233034163713455, 0.0043077352456748486, -0.0007345774793066084, -0.00645415997132659, 0.028722204267978668, 0.027126526460051537, 0.0159329641610384, -0.006995975971221924, -0.038462985306978226, -0.007990297861397266, -0.015992503613233566, 0.005242516752332449, -0.005239539779722691, -0.030889468267560005, -0.019243400543928146, 0.004263080190867186, 0.031961191445589066, 0.011723469942808151, 0.01662363111972809, 0.019648274406790733, 0.007335355505347252, -0.04548873007297516, -0.0036051603965461254, 0.023482663556933403, -0.04089222475886345, -0.006472022272646427, -0.02012459561228752, 0.043226201087236404, -0.008514251559972763, 0.0033282984513789415, -0.013217929750680923, 0.02368510141968727, -0.004584596958011389, 0.03217553719878197, -0.024066157639026642, -0.03191355988383293, 0.027269423007965088, 0.006525608245283365, 0.006442252080887556, 0.03148486837744713, -0.022875353693962097, 0.006995975971221924, 0.024280503392219543, 0.02762666344642639, 0.014920779503881931, 0.005954022519290447, 0.0049001602455973625, -0.0051889303140342236, -0.0212558601051569, -0.008121286518871784, 0.007799769286066294, 0.0015465572942048311, -0.009514527395367622, 0.013229837641119957, -0.05987364798784256, -0.01527802087366581, 0.0009161751950159669, -0.010639837943017483, 0.006793539505451918, -0.02347075566649437, 0.029722480103373528, 0.011646067723631859, -0.006739953067153692, -0.021625008434057236, -0.021863169968128204, -0.0159329641610384, 0.011818733997642994, -0.0012942556058987975, -0.016599813476204872, 0.03703401982784271, -0.021041514351963997, -0.00848448183387518, 0.018517009913921356, -0.036343351006507874, -0.027602847665548325, 0.029222341254353523, -0.017338111996650696, 0.03474767506122589, -0.01929103210568428, -0.03522399440407753, -0.004120183642953634, -0.02005314640700817, -0.02679309993982315, -0.015885330736637115, 0.005793263670057058, -0.0007717901607975364, -0.006805447395890951, 0.04296422377228737, -0.0009131981641985476, 0.009984895586967468, -0.007115056738257408, -0.015980595722794533, 0.015575721859931946, -0.013253653421998024, 0.0004499008064158261, -0.021267767995595932, -0.009532389231026173, 0.01752864196896553, -0.03107999637722969, 0.005811125971376896, -0.006739953067153692, 0.031127627938985825, -0.037796132266521454, 0.019445836544036865, -0.029579583555459976, -0.038248639553785324, -0.011205470189452171, 0.026840733364224434, -0.019779261201620102, -0.0016254481161013246, -0.005438999272882938, -0.00012838360271416605, 0.030960915610194206, 0.0024500801227986813, -0.020648550242185593, -0.0006571752019226551, -0.056539393961429596, 0.015182756818830967, 0.013908595778048038, 0.043893054127693176, -0.005102597177028656, 0.014218205586075783, -0.01130668818950653, -0.01088990643620491, -0.008657148107886314, -0.0038879765197634697, -0.016504550352692604, 0.008115332573652267, 0.007251999340951443, -0.013622802682220936, -0.030722755938768387, -0.013527538627386093, -0.010199240408837795, 0.03986813500523567, -0.02695981226861477, -0.0016641492256894708, 0.028746020048856735, -0.0050400798209011555, 0.03331870958209038, 0.024459123611450195, -0.02410188317298889, -0.024768732488155365, 0.0062576774507761, 0.011908045038580894, -0.0003034690744243562, -0.010240918025374413, -0.004742378834635019, -0.04996615648269653, 0.023042066022753716, -0.011318596079945564, -0.005569987930357456, 0.0040427809581160545, -0.010490987449884415, -0.016599813476204872, -0.029198525473475456, 0.022351399064064026, -0.010223056189715862, -0.023589836433529854, -0.05172854661941528, -0.0033104363828897476, -0.025626111775636673, 0.014670711010694504, 0.003992171958088875, 0.00604928657412529, -0.021351123228669167, 0.040463536977767944, -0.002122608944773674, -0.0026941951364278793, 0.020839078351855278, -0.04041590169072151, -0.014765975065529346, -0.05663466081023216, -0.023661283776164055, 0.05873047560453415, 0.0014058934757485986, -0.0019067756365984678, 0.04770362749695778, -0.027531398460268974, -0.036319535225629807, -0.04163052514195442, -0.00016606140707153827, -0.004941838327795267, -0.0026748445816338062, -0.02046992816030979, -0.03329489380121231, -0.018124043941497803, -0.0056622750125825405, 0.00564441317692399, -0.017088044434785843, -0.0010293015511706471, 0.0055938041768968105, 0.0027611779514700174, -0.01109829731285572, -0.010723194107413292, -0.00943712517619133, -0.005769447423517704, 0.00935376901179552, -0.004120183642953634, 0.008276090957224369, 0.00941926334053278, -0.013980044052004814, 0.01983880251646042, -0.018171675503253937, -0.0020347870886325836, -0.010080159641802311, 0.03329489380121231, 0.010997079312801361, 0.012574895285069942, 0.021386848762631416, -0.01960064098238945, -0.025673743337392807, -0.007650918792933226, 0.012944044545292854, -0.00025769753847271204, -0.0005961465067230165, 0.02056519314646721, 0.012348642572760582, 0.005492585711181164, 0.04615557938814163, -0.004402999300509691, 0.006573240738362074, 0.0003311924810986966, 0.000547397939953953, 0.0010501407086849213, -0.04058261588215828, -0.004852528218179941, -0.006739953067153692, -0.007186505012214184, 0.008430895395576954, -0.018207401037216187, 0.018159767612814903, 0.013491814956068993, -0.005724792368710041, 0.0006192183354869485, -0.03500965237617493, 0.07101957499980927, -0.005129390396177769, -0.0045369649305939674, 0.016754617914557457, -0.006174321286380291, 0.022065605968236923, 0.004959700629115105, 0.018993331119418144, 0.038986936211586, -0.04165434092283249, -0.00519488425925374, 0.015444734133780003, -0.030198801308870316, 0.0062814936973154545, -0.006102873012423515, -0.03184211254119873, -0.0160401351749897, -0.037700869143009186, 0.030818019062280655, -0.0064958385191857815, 0.026364410296082497, 0.0461079478263855, 0.02085098624229431, 0.02464965172111988, -0.01680225133895874, -0.010913723148405552, 0.026578756049275398, 0.014908871613442898, -0.030794203281402588, -0.009151332080364227, 0.01624257303774357, -0.0027864824514836073, 0.023423124104738235, -0.003998125903308392, 0.014349193312227726, -0.03758179023861885, -0.006034401711076498, 0.01631402038037777, -0.013777608051896095, 0.01707613654434681, 0.052871719002723694, -0.01583769917488098, 0.005751585587859154, 0.007037654519081116, 0.008407079614698887, -0.01066365372389555, -0.016480734571814537, -0.01956491731107235, 0.02361365221440792, -0.03691493719816208, 0.01987452618777752, -0.03741507604718208, -0.01118165347725153, -0.017469100654125214, -0.009984895586967468, 0.01025282684713602, -0.015230389311909676, -0.034652408212423325, 0.003759965067729354, -0.023732732981443405, 0.023411216214299202, -0.01035404484719038, -0.012646343559026718, 0.011652021668851376, 0.014563538134098053], [0.04456121847033501, -0.0005148969939909875, 0.0045296684838831425, 0.03990897163748741, -0.0011887172004207969, -0.05582695081830025, -0.018768619745969772, 0.04638562723994255, 0.07899695634841919, -0.012326170690357685, -0.020593030378222466, 0.006442448124289513, 0.007354653440415859, -0.033500730991363525, -0.00470070680603385, 0.00439568841829896, 0.007075290661305189, 0.010057060979306698, 0.0012770871398970485, -0.002433022018522024, 0.051767636090517044, 0.050125669687986374, -0.026157479733228683, 0.0075770034454762936, -0.016123224049806595, 0.015587303787469864, 0.014173386618494987, 0.013762894086539745, -0.0008929632604122162, -0.024059409275650978, 0.02672760933637619, -0.0180046483874321, 0.027913475409150124, 0.009623763151466846, 0.03112899884581566, 0.036100514233112335, 0.004752018488943577, -0.013261181302368641, 0.05286228284239769, 0.0005401964299380779, -0.03787931427359581, -0.011351251974701881, 0.03516550734639168, -0.03092375211417675, -0.011003473773598671, 0.046887341886758804, 0.03023959882557392, 0.02976069040596485, -0.008688753470778465, 0.03523392230272293, 0.0033979639410972595, 0.014629488810896873, 0.028871290385723114, 0.0722922533750534, 0.031174607574939728, 0.009509737603366375, -0.04875735938549042, -0.031949982047080994, -0.0016776021802797914, 0.007759444415569305, 0.0184379443526268, 0.004233201500028372, -0.004466954153031111, 0.0792706236243248, 0.004800479393452406, -0.020307965576648712, 0.0035718530416488647, 0.005946436896920204, -0.031790345907211304, 0.023375254124403, 0.05678476393222809, 0.01848355494439602, -0.04451560601592064, -0.04132289066910744, -0.008620337583124638, 0.039817750453948975, 0.004127727821469307, 0.005151107907295227, 0.023557696491479874, 0.00749148428440094, 0.017924830317497253, 0.05468669533729553, 0.005664223339408636, 0.024994419887661934, -0.025108445435762405, 0.007759444415569305, -0.049487125128507614, 0.007388860918581486, -0.006031956057995558, -0.0136830760166049, -0.004335824865847826, -0.04171057790517807, 0.0061687869019806385, 0.03502867370843887, -0.004113474860787392, 0.015062786638736725, -0.010421942919492722, -0.014458450488746166, -0.05368326976895332, 0.09724105894565582, 0.0357128269970417, 0.027708228677511215, 0.00043757338426075876, 0.02019394002854824, 0.009760593995451927, -0.043010469526052475, -0.04875735938549042, 0.03156229481101036, -0.030992167070508003, 0.0018942508613690734, -0.04424194619059563, 0.014880345202982426, -0.008090118877589703, 0.06978368759155273, -0.00818704068660736, -0.03778809681534767, 0.03603209927678108, -0.031790345907211304, 0.013831309042870998, -0.06066163629293442, 0.023922577500343323, 0.03858627378940582, 0.02492600306868553, -0.07274835556745529, -0.0012521439930424094, 0.03315865620970726, -0.07407104969024658, 0.016339873895049095, -0.019943082705140114, -0.06047919765114784, 0.027822254225611687, -0.022018350660800934, 0.0224288422614336, -0.026659192517399788, -0.009099246002733707, 0.002738040639087558, 0.026317115873098373, -0.020752664655447006, -0.024082213640213013, -0.0737517774105072, 0.03995458036661148, -0.051722027361392975, 0.02848360314965248, -0.021710481494665146, -0.030786920338869095, 0.023876966908574104, 0.023398060351610184, 0.06248604878783226, -0.008055911399424076, -0.00030234610312618315, -0.0245383158326149, 0.031174607574939728, -0.011442472226917744, -0.010513163171708584, 0.014891747385263443, -0.008928206749260426, -0.012246353551745415, -0.00677312258630991, -0.024948809295892715, 0.007383159827440977, 0.004478356800973415, -0.05350082740187645, -0.039612505584955215, -0.03703552484512329, 0.02677321806550026, 0.012200742959976196, 0.01482333242893219, -0.0032554317731410265, -0.04647684842348099, -0.020764067769050598, -0.0361461266875267, -0.0136830760166049, -0.04360340163111687, -0.017616961151361465, -0.0373091883957386, 0.007058186922222376, -0.0012393160723149776, 0.03153948858380318, -0.03553038835525513, -0.01001145038753748, 0.0035661517176777124, 0.01913350075483322, 0.0028207090217620134, -0.02980630099773407, -0.03651100769639015, -0.011835861019790173, 0.01182445790618658, -0.011436770670115948, -0.0071437060832977295, -0.03432171419262886, 0.012485806830227375, 0.0277310349047184, 0.0156785249710083, 0.035416360944509506, -0.022622685879468918, -0.01060438435524702, -0.03888273984193802, -0.004039357881993055, -0.014948760159313679, 0.01710384525358677, 0.026066260412335396, -0.03712674602866173, -0.01198409404605627, 0.02119736559689045, -0.03304462879896164, -0.047161001712083817, 0.05149397626519203, 0.021265780553221703, 0.07320445775985718, 0.01663633994758129, 0.02194993384182453, -0.021664870902895927, -0.034184884279966354, 0.05573572963476181, -0.017708180472254753, -0.0014566774480044842, 0.04998883977532387, 0.010775422677397728, -0.022006947547197342, 0.04086678847670555, -0.009709282778203487, 0.022508660331368446, 0.04729783162474632, 0.015712732449173927, -0.0506729930639267, -0.04729783162474632, -0.019464176148176193, -0.01710384525358677, -0.0006613486912101507, -0.07712694257497787, -0.03580404818058014, 0.03172193095088005, -0.014481255784630775, -0.027434566989541054, 0.02161926031112671, 0.021060533821582794, 0.011117499321699142, -0.042052652686834335, 0.010439046658575535, -0.018130075186491013, 0.019897473976016045, 0.021014925092458725, -0.006961265113204718, -0.004318720661103725, -0.00530219217762351, -0.02836957760155201, -0.0007258444093167782, 0.025040028616786003, 0.033979639410972595, 0.006265708710998297, 0.01354624517261982, -0.01779940165579319, 0.000858755549415946, -0.02083248272538185, 0.03197278827428818, 0.005667074117809534, 0.03272535651922226, 0.0050370823591947556, -0.014971565455198288, -0.04659087583422661, 0.024401485919952393, 0.03938445448875427, 0.01992027834057808, 0.058472346514463425, -0.026681998744606972, -0.02964666485786438, 0.04638562723994255, -0.0364425927400589, -0.016727561131119728, 0.029144952073693275, -0.060707248747348785, 0.024880392476916313, -0.007634016219526529, -0.016704754903912544, -0.029327392578125, 0.01997729018330574, -0.012314768508076668, -0.014754917472600937, -0.012497209943830967, -9.727811993798241e-05, -0.059475772082805634, -0.027388956397771835, 0.06508582830429077, -0.01630566641688347, 0.016134627163410187, -0.008534818887710571, 0.06545071303844452, -0.03564441204071045, -0.03648820146918297, 0.015917979180812836, 0.019258929416537285, 0.00219784420914948, -0.028301162645220757, -0.014629488810896873, 0.031425464898347855, -0.04027385264635086, -0.05003444850444794, -0.005091244354844093, 0.0017089592292904854, -0.009407115168869495, 0.016818780452013016, 0.014378632418811321, -0.0004464816302061081, 0.04145972058176994, -0.025861013680696487, -0.017195066437125206, 0.02045619860291481, 0.02067284658551216, -0.023557696491479874, -0.0373091883957386, -0.0296922754496336, 0.024994419887661934, -0.0329534076154232, -0.01572413556277752, -0.040342267602682114, -0.007981793954968452, -0.050718601793050766, 0.02252006344497204, 0.022770918905735016, 0.010387735441327095, -0.02151663787662983, -0.015108396299183369, 0.024150628596544266, -0.016009198501706123, 0.009771997109055519, 0.0012264882680028677, 0.02066144533455372, 0.06166506186127663, -0.027639813721179962, 0.011362654156982899, -0.020946508273482323, 0.006676200777292252, 0.001827260828576982, -0.004945862106978893, -0.02428746037185192, -0.05993187427520752, 0.004623739514499903, 0.029943130910396576, -0.041094839572906494, -0.021014925092458725, 0.035735633224248886, -0.025268079712986946, -0.0364425927400589, -0.017787998542189598, 0.025746988132596016, 0.011949886567890644, 0.023717332631349564, 0.06549632549285889, -0.025427715852856636, 0.03023959882557392, 0.025427715852856636, -0.018027452751994133, -0.0046066357754170895, -0.059430159628391266, -0.08155113458633423, -0.030741311609745026, -0.0066305906511843204, -0.00037735357182100415, -0.04668209329247475, 0.007639717310667038, 0.00467505119740963, -0.026659192517399788, 0.013968139886856079, 0.011573601514101028, -0.008836986497044563, 0.01540486328303814, -0.005373457912355661, -0.017651168629527092, 0.046294406056404114, -0.022542867809534073, 0.0538657084107399, -0.0040621631778776646, 0.005370607133954763, -0.016066212207078934, 0.01511979941278696, -0.01094075944274664, -0.01897386461496353, 0.020000096410512924, -0.032862186431884766, -0.005105497781187296, 0.007947586476802826, 0.026978464797139168, 0.001964091556146741, 0.029874715954065323, 0.05888283625245094, 0.01939576119184494, -0.02088949643075466, 0.005108348559588194, 0.030034352093935013, 0.04743466526269913, -0.020330769941210747, -0.01748012937605381, -0.0014980117557570338, 0.02768542431294918, -0.015632914379239082, 0.020057108253240585, 0.03256572037935257, 0.020307965576648712, -0.015530291013419628, -0.05500596761703491, -0.0246067326515913, 0.006545071490108967, 0.028871290385723114, -0.03233766928315163, 0.039931777864694595, 0.04015982896089554, 0.0026054857298731804, -0.009395712055265903, 0.04871175065636635, -0.039566896855831146, 0.04095800593495369, -0.04839247837662697, 0.0075998082756996155, 0.026818828657269478, 0.046887341886758804, 0.010188190266489983, -0.009287388063967228, 0.015199616551399231, 0.016761768609285355, -0.025861013680696487, 0.026978464797139168, -0.021026326343417168, -0.046750508248806, 0.01137405727058649, 0.006208695936948061, 0.027936279773712158, 0.0034407235216349363, -0.003155659418553114, -0.021767493337392807, -0.032383281737565994, -0.0277310349047184, -0.014310217462480068, 0.04228070378303528, -0.004361480474472046, -0.062029946595430374, -0.03580404818058014, -0.011995497159659863, -0.015142603777348995, -0.01298751961439848, 0.04531378671526909, 0.02820994146168232, -0.046043552458286285, -0.00884268805384636, 0.06326141953468323, -0.008836986497044563, -0.012919104658067226, -0.0194527730345726, 0.01338660903275013, -0.0016177386278286576, -0.028757264837622643, -0.03153948858380318, 0.023671722039580345, -0.03885993734002113, -0.011858666315674782, -0.017833609133958817, 0.010758318938314915, -0.023443670943379402, -0.044447191059589386, -0.006140280514955521, -0.012736663222312927, 0.06280531734228134, 0.040889590978622437, 0.05696720629930496, 0.02173328585922718, 0.0009407114703208208, 0.03496025875210762, 0.008010300807654858, -0.028073111549019814, -0.019543994218111038, -0.04086678847670555, -0.020421991124749184, 0.01626005582511425, 0.021003521978855133, 0.00523377675563097, 0.009811906144022942, -0.007269134279340506, 0.0003424332244321704, 0.027274930849671364, -0.014618086628615856, 7.331492088269442e-05, 0.030627286061644554, 0.028460798785090446, -0.03575843945145607, -0.03765126317739487, 0.04490329325199127, 0.07475520670413971, 0.05213252082467079, 0.04177899286150932, -0.022622685879468918, -0.03204120323061943, -0.02704687975347042, -0.024059409275650978, 0.04218948632478714, -0.008973817341029644, -0.011356953531503677, -0.006995472591370344, -0.015473278239369392, -0.009264582768082619, 0.04383145272731781, -0.01538205798715353, 0.04697856307029724, -0.007548497058451176, -0.009247479028999805, -0.005478931590914726, 0.026339922100305557, -0.004401389509439468, -0.007827859371900558, 0.007337549701333046, -0.027183711528778076, 0.003928183112293482, -0.03808456286787987, -0.007947586476802826, 0.015370655804872513, -0.01711524836719036, 0.005889424122869968, -0.04670489951968193, -1.8985712813446298e-05, 0.01736610382795334, -0.02317000925540924, -0.009509737603366375, 0.0037343394942581654, 0.017514336854219437, 0.0017930531175807118, -0.022941958159208298, 0.005761145148426294, -0.018768619745969772, -0.024264654144644737, -0.06444729119539261, -0.0017445922130718827, -0.01014828123152256, -0.006208695936948061, -0.015051383525133133, -0.03256572037935257, -0.0017445922130718827, 0.009287388063967228, 0.04225790128111839, 0.021231573075056076, -0.01126573234796524, 0.03767406940460205, -0.014116373844444752, -0.015621512196958065, 0.008751467801630497, -0.010062762536108494, -0.018346725031733513, 0.012713857926428318, 0.029076537117362022, 0.029327392578125, -6.667827256023884e-05, -0.0079133789986372, -0.0035861062351614237, 0.0156785249710083, 0.031904373317956924, 0.045199763029813766, -0.005647119600325823, 0.02247445285320282, -0.017240675166249275, 0.01779940165579319, -0.0003167774702887982, -0.007206419948488474, 0.00020488981681410223, 0.010553072206676006, 0.02051321230828762, 0.024629537016153336, 0.0024658043403178453, 0.0037371900398284197, 0.04599794000387192, 0.0194527730345726, -0.037172358483076096, 0.008221248164772987, -0.02556454762816429, -0.037582848221063614, 0.043375350534915924, -0.00956675037741661, -0.0026881543453782797, 0.02428746037185192, 0.005390561651438475, 0.04622599110007286, -0.02937300316989422, -0.01630566641688347, -0.0017759492620825768, 0.02800469659268856, 0.031471073627471924, 0.017445921897888184, -0.030148377642035484, 0.011892873793840408, -0.0028734460938721895, 0.0033694575540721416, -0.06047919765114784, -0.006624889560043812, 0.02565576694905758, -0.030536064878106117, -0.026431141421198845, -0.015074188821017742, -0.00977769773453474, 0.005923631601035595, 0.05185885727405548, -0.019258929416537285, 0.009321595542132854, -0.009977242909371853, 0.0034663793630898, -0.013933932408690453, -0.028552018105983734, -0.018529165536165237, 0.006311318837106228, -0.01017108652740717, -0.05582695081830025, 0.005801054183393717, -0.02342086471617222, -0.0164767038077116, 0.011790250428020954, 0.026157479733228683, -0.019566798582673073, 0.02921336703002453, -0.017069637775421143, -0.04159655049443245, 0.0032981913536787033, -0.030672894790768623, -0.01540486328303814, -0.0277310349047184, -0.008152833208441734, -0.01572413556277752, 0.01442424301058054, 0.040501903742551804, -0.0008045933791436255, -0.029578249901533127, 0.00953824445605278, -0.03407086059451103, -0.04330693557858467, -0.006066163536161184, -0.020148329436779022, 0.02905373089015484, 0.02912214770913124, -0.025632962584495544, -0.011134603060781956, -0.0066819023340940475, 0.030946556478738785, -0.012930506840348244, 0.024105019867420197, 0.0046836030669510365, -0.03521111607551575, 0.014504061080515385, 0.003759995335713029, 0.01630566641688347, -0.033774394541978836, 0.020228147506713867, 0.02273671142756939, 0.01144817378371954, -0.01752573996782303, 0.008808480575680733, -0.028027500957250595, 0.0194527730345726, 0.008990921080112457, 0.03149387985467911, -0.023238424211740494, 0.007229225244373083, -0.0041448320262134075, -0.01839233562350273, 0.06887148320674896, 0.03151668608188629, 0.025701377540826797, -0.024675147607922554, 0.015051383525133133, 0.03858627378940582, -0.030695701017975807, -0.00900232419371605, 0.03185876086354256, -0.0016476704040542245, 0.004019403830170631, -0.013238376006484032, -0.020912300795316696, 0.003899676725268364, -0.025746988132596016, 0.01230336632579565, -0.006710408721119165, 0.002194993430748582, -0.00553879514336586, 0.004771973006427288, 0.01583816111087799, -0.0019583902321755886, 0.02661358378827572, -0.005287938751280308, -0.018107270821928978, -0.0006157384486868978, 0.03518830984830856, 0.022497257217764854, 0.016271457076072693, 0.025222470983862877, -0.027548592537641525, -0.009053635410964489, -0.0058096060529351234, -0.010501760989427567, 0.007519990671426058, 0.004846089519560337, 0.010342124849557877, -0.017879219725728035, 0.018312517553567886, 0.03427610546350479, 0.02820994146168232, -0.01464089099317789, 0.025678573176264763, -0.021607857197523117, -0.00024426428717561066, -0.020490406081080437, -0.06841538101434708, -0.04339815676212311, 0.018209893256425858, -0.0027750988956540823, 0.026362726464867592, 0.029897520318627357, -0.01524522714316845, -0.02045619860291481, -0.012371781282126904, -0.03459537774324417, -0.008916804566979408, -0.018665995448827744, -0.014447047375142574, 0.004997173324227333, 0.013671673834323883, -0.0037058331072330475, 0.008671649731695652, -0.032862186431884766, 0.0015735537745058537, 0.01033072266727686, -0.019486980512738228, -0.00012622993381228298, -0.02884848602116108, -0.012520014308393002, 0.009903126396238804, -0.010399137623608112, 0.005872320383787155, 0.027981890365481377, 0.00755989970639348, 0.01592938043177128, 0.010592981241643429, -0.007343250792473555, -0.002105198334902525, -0.016932806000113487, -0.0008758594049140811, 0.0021479579154402018, -0.014435645192861557, -0.00019758504640776664, -0.017993245273828506, -0.01816428266465664, -0.047799546271562576, -0.007736639119684696, 0.0051910169422626495, 0.0092189721763134, 0.02549613267183304, -0.03678467124700546, 0.0063170199282467365, -0.030855337157845497, 0.0070638880133628845, 0.010558773763477802, -0.031220218166708946, 0.021539442241191864, 0.012634039856493473, 0.004578129388391972, 0.024880392476916313, -0.0019754942040890455, -0.011573601514101028, 0.017092442139983177, 0.019954485818743706, -0.00884268805384636, 0.0420982651412487, -0.01480052713304758, -0.04027385264635086, -0.02269110083580017, 0.013580452650785446, -0.011146006174385548, -0.01700122281908989, 0.009880321100354195, 0.03012557327747345, 0.007736639119684696, 0.01171043235808611, 0.02289634756743908, 0.0373091883957386, -0.02900812216103077, -0.015553096309304237, -0.011961288750171661, -0.009943035431206226, 0.009087842889130116, 0.001687579439021647, 0.008757168427109718, 0.03315865620970726, 0.014549670740962029, -0.04047910124063492, -0.016248652711510658, 0.037172358483076096, -0.0016476704040542245, 0.008403689600527287, 0.009692179039120674, -0.02342086471617222, -0.020273758098483086, -0.017833609133958817, 0.007269134279340506, 0.012326170690357685, 0.03188156709074974, -0.03448135033249855, 0.005997748579829931, 0.02327263168990612, -0.013899724930524826, 0.0273661520332098, -0.04027385264635086, 0.04376303777098656, 0.02976069040596485, 0.003420769004151225, -0.044606827199459076, -0.0016077614855021238, 0.013648868538439274, 0.012018301524221897, -0.01906508579850197, 0.015439070761203766, 0.007405965123325586, 0.03204120323061943, 0.00932729709893465, -0.01700122281908989, -0.038973961025476456, 0.003965241368860006, -0.018951060250401497, -0.03124302439391613, 0.04310169070959091, -0.010986370034515858, 0.04627160355448723, -0.02672760933637619, 0.07685327529907227, 0.02517686039209366, -0.017035430297255516, 0.023306839168071747, 0.014766319654881954, -0.03491465002298355, -0.0013854114804416895, 0.005313594359904528, 0.0538657084107399, -0.007012576330453157, -0.023181410506367683, 0.026203090324997902, -0.02497161366045475, 0.005008575972169638, 0.004495460540056229, -0.0006367618916556239, 0.03443574160337448, -0.007537094410508871, -0.014298814348876476, -0.007594107184559107, 0.006624889560043812, 0.03683027997612953, 0.005946436896920204, -0.03646539896726608, -0.03172193095088005, 0.03240608423948288, -0.0007169361924752593, -0.0099088279530406, -0.040935203433036804, -0.007337549701333046, -0.02018253691494465, -0.028027500957250595, 0.03664783760905266, 0.00124501739628613, -0.005162510555237532, -0.006100371479988098, 0.012976117432117462, -0.02928178198635578, 0.023398060351610184, 0.026681998744606972, 0.0004781949974130839, -0.005929333157837391, 0.013500635512173176, -0.011516588740050793, -0.003765696659684181, 0.0017873517936095595, 0.029304588213562965, 0.005091244354844093, 0.02752578817307949, -0.01769677922129631, -0.04866614192724228, 0.010114073753356934, -0.018255503848195076, 0.057879410684108734, 0.000766109733376652, 0.007012576330453157, 0.0005662085604853928, 0.0054219188168644905, 0.01806166023015976, 0.02517686039209366, -0.016590729355812073, 0.005992047023028135, -0.01410497073084116, 0.05614622309803963, 0.0032383280340582132, -0.012417391873896122, 0.008905402384698391, -0.010895149782299995, 0.021756090223789215, -0.010929357260465622, 0.05245179310441017, 0.024583926424384117, -0.004287363961338997, -0.03813017159700394, -0.0198176559060812, -0.016716158017516136, 0.009732088074088097, -0.03860908001661301, -0.026180285960435867, 0.002397388918325305, -0.019543994218111038, 0.05920210853219032, -0.007383159827440977, -0.010860941372811794, -0.0026696252170950174, 0.01917911134660244, 0.0032696849666535854, -0.016282860189676285, -0.0058837225660681725, 0.025632962584495544, 0.02980630099773407, -0.00021629237744491547, -0.04378584399819374, -0.0029418612830340862, 0.0030843934509903193, 0.015359252691268921, 0.03256572037935257, 0.027457373216748238, -0.008700155653059483, 0.002568427473306656, 0.0022477302700281143, 0.010992070659995079, -0.03646539896726608, 0.014161983504891396, -0.005587256047874689, -0.0420982651412487, -0.026066260412335396, 0.04821003973484039, 0.006431045942008495, 0.02597503922879696, 0.01631706766784191, -0.033546339720487595, -0.001781650586053729, 0.02385416254401207, 0.01592938043177128, -0.04266839101910591, 0.017400311306118965, 0.021585052832961082, -0.04095800593495369, -0.008512013591825962, -0.007879171520471573, -0.0065507725812494755, 0.011242927052080631, 0.003392262617126107, 0.03511989489197731, -0.02237182855606079, 0.008740064688026905, -0.019886070862412453, 0.01657932810485363, 0.01254281960427761, 0.014481255784630775, 0.004706407897174358, 0.033614758402109146, -0.0012571326224133372, 0.031904373317956924, -0.025952234864234924, -0.02741176262497902, 0.018472151830792427, 0.018244100734591484, -0.03404805436730385, 0.04310169070959091, 0.04047910124063492, -0.01522242184728384, -0.026910049840807915, 0.03128863498568535, 0.03635137155652046, -0.003477781778201461, -0.011539394035935402, 0.049806397408246994, 0.047525882720947266, -0.0065564741380512714, -0.01716085709631443, -0.003668774850666523, 0.021402612328529358, -0.0053478023037314415, 0.0013697328977286816, 0.02119736559689045, 0.03092375211417675, 0.01641969196498394, 0.027024075388908386, -0.03733199089765549, 0.021106144413352013, -0.007092394400388002, -0.002785076154395938, -0.02326122857630253, -0.009657971560955048, 0.0017559947445988655, 0.025154054164886475, -0.004843238741159439, 0.02513124980032444, 0.0025598753709346056, 0.023740136995911598, -0.005290789529681206, 0.02572418376803398, 0.035575997084379196, 0.006687603425234556, -0.019213318824768066, -0.021847311407327652, 0.010450449772179127, 0.035461973398923874, 0.018517762422561646, 0.024675147607922554, 0.03395683318376541, 0.015256630256772041, 0.009458426386117935, -0.01636267825961113, 0.024196239188313484, -0.037263575941324234, -0.006031956057995558, 0.01790202409029007, 0.018369529396295547, -0.044127918779850006, 0.04830125719308853, 0.0050370823591947556, 0.006413941737264395, 0.02592942863702774, -0.016830183565616608, -0.006202994380146265, 0.0011630614753812551, 0.04182460159063339, 0.015439070761203766, -0.026955660432577133, 0.021756090223789215, -0.015325045213103294, 0.0050370823591947556, 0.022611282765865326, 0.042805224657058716, -0.00042973412200808525, -0.004204695113003254, 0.022542867809534073, 0.03320426493883133, 0.024150628596544266, -0.00635122787207365, -0.05309033393859863, -0.0049544139765203, 0.030536064878106117, -0.022964762523770332, -0.013432219624519348, -0.057195257395505905, -0.01028511207550764, -0.029715079814195633, -0.022702503949403763, 0.0028207090217620134, 0.005387711338698864, -0.00961236096918583, -0.009207569994032383, -0.01338660903275013, 0.042007043957710266, -0.034663792699575424, -0.0010240927804261446, 0.00579250231385231, -0.022759515792131424, 0.002243454335257411, -0.00844929926097393, -0.01736610382795334, -0.03475501388311386, 0.012930506840348244, -0.018141478300094604, 0.010906551964581013, 0.009652270004153252, 0.03256572037935257, -0.039338842034339905, -0.009851815178990364, -0.006818732712417841, 0.009304491803050041, -0.016431093215942383, -0.005182465072721243, 0.0273661520332098, 0.03443574160337448, 0.020650042220950127, 0.0017260630847886205, -0.0017574201337993145, 0.0016376931453123689, -0.002939010737463832, -0.03459537774324417, -0.0019598156213760376, 0.031106192618608475, 0.01710384525358677, 0.02624870091676712, -0.03220083937048912, -0.015473278239369392, -0.00810152105987072, 0.0016305665485560894, 0.01226915791630745, -0.010364930145442486, -0.0005056324298493564, -0.02533649653196335, 0.014971565455198288, -0.01604340597987175, 0.04898541420698166, 0.019486980512738228, -0.0184379443526268, 0.00761121092364192, 0.004868894349783659, 0.03457257151603699, -0.0012400287669152021, 0.035575997084379196, 0.033865612000226974, -0.028141526505351067, 0.0053478023037314415, 0.012120924890041351, 0.002628290792927146, -0.010615786537528038, 0.014173386618494987, 0.010684201493859291, 0.021425416693091393, 0.016328470781445503, 0.01987466774880886, 0.010199593380093575, -0.021128950640559196, 0.013340999372303486, -0.001392538077197969, 0.03133424371480942, -0.00637403316795826, 0.02805030532181263, -0.02497161366045475, -0.017502935603260994, 0.00029058719519525766, -0.04862052947282791, 0.004997173324227333, 0.0063227214850485325, -0.006362630520015955, -0.037012722343206406, 0.03443574160337448, -0.026704803109169006, -0.0009706431883387268, 0.015325045213103294, -0.02912214770913124, -0.009304491803050041, -0.0146636962890625, 0.031060582026839256, 0.009954437613487244, 0.016830183565616608, -0.02263408899307251, -0.00665339594706893, 0.04998883977532387, 0.038061756640672684, 0.007924781180918217, -0.012109522707760334, 0.007029680535197258, -0.03575843945145607, -0.009424218907952309, 0.0058067552745342255, 0.0675031766295433, 0.00783926248550415, -0.030718505382537842, 0.017936231568455696, -0.002910504350438714, -0.0004079979844391346, 0.022303413599729538, 0.005801054183393717, 0.030011547729372978, 0.018312517553567886, -0.01592938043177128, 0.038335416465997696, 0.010393436998128891, 0.017309091985225677, -0.00932729709893465, 0.009965840727090836, -0.012770870700478554, -0.02087809331715107, 0.05418498069047928, 0.008808480575680733, 0.004350077826529741, -0.00863174069672823, 0.02800469659268856, -0.023603307083249092, -0.010803928598761559, -0.03480062261223793, -0.010558773763477802, -0.0006823721341788769, -0.02364891581237316, 0.01426460687071085, 0.016727561131119728, 0.040091414004564285, -0.008574727922677994, -0.023580500856041908, 0.02661358378827572, -0.037377603352069855, -0.016670547425746918, -0.001532219466753304, 0.028985315933823586, -0.0008224098710343242, 0.016647743061184883, -0.0029789197724312544, -0.009042233228683472, 0.008483506739139557, 0.013819906860589981, 0.04830125719308853, -0.008437897078692913, 0.0019070787820965052, 0.021653467789292336, -0.029783494770526886, 0.012474404647946358, 0.05436742305755615, -0.04506292939186096, -0.006391136907041073, 0.008700155653059483, 0.00897951889783144, -0.0033837107475847006, -0.0329534076154232, -0.04654526337981224, -0.0025470475666224957, 0.009122050367295742, 0.032976213842630386, -0.031744737178087234, -0.01775379106402397, 0.014549670740962029, -0.025108445435762405, -0.0018286861013621092, -0.0361461266875267, -0.023044580593705177, 0.009144855663180351, 0.002132279332727194, -0.005339250434190035, 0.016237249597907066, -0.027229322120547295, 0.03580404818058014, 0.013569050468504429, -0.05295350402593613, -0.004104922991245985, -0.012930506840348244, -0.009863217361271381, 0.009977242909371853, -0.0007575578056275845, 0.00402510492131114, 0.02545052208006382, 0.0013198467204347253, -0.05277106165885925, -0.02299897000193596, 0.025359300896525383, 0.008848389610648155, -0.004076416604220867, -0.005535944364964962, 0.023375254124403, -0.03233766928315163, 0.015393460169434547, 0.015416265465319157, 0.008500611409544945, 0.02768542431294918, -0.019726434722542763, -0.004657946992665529, -0.007907677441835403, -0.01424180157482624, -0.004287363961338997, -0.004618037957698107, -0.008301066234707832, -0.00700117414817214, 0.006197293289005756, -0.008038807660341263, 0.023671722039580345, 0.020364977419376373, -0.014298814348876476, -0.032269254326820374, -0.0006984070059843361, 0.016111822798848152, -0.02597503922879696, 0.009213271550834179, -0.02247445285320282, 0.02437867969274521, 0.008734363131225109, 0.014207594096660614, 0.007428769953548908, 0.01044474821537733, -0.023626111447811127, 0.03201839700341225, -0.018996670842170715, -0.0368758887052536, 0.02199554443359375, 0.006818732712417841, 0.00328108761459589, 0.019749239087104797, -0.005558749660849571, -0.01720646768808365, -0.003030231222510338, 0.022029751911759377, -0.00805020984262228, 0.003420769004151225, 0.00205958797596395, 0.0016305665485560894, -0.017400311306118965, -0.0062486049719154835, 0.017514336854219437, 0.015792550519108772, -0.0015593005809932947, -0.008586130104959011, -0.05258862301707268, -0.015974991023540497, 0.0072178225964307785, -0.028187137097120285, -0.0030444844160228968, -0.006254306063055992, 0.017571350559592247, 0.009395712055265903, 0.014093568548560143, -0.004655096679925919, -0.005082692485302687, -0.010239501483738422, 0.00042617079452611506, 0.0061630853451788425, 0.016191640868782997, 0.05003444850444794, -0.025838209316134453, 0.01626005582511425, 0.005131153389811516, -0.016602132469415665, -0.03664783760905266, -0.008483506739139557, -0.006174487993121147, 0.0361461266875267, -0.019144903868436813, -0.05806185305118561, -0.004723512101918459, -0.025199664756655693, -0.05961260199546814, -0.021767493337392807, -0.005812456831336021, -0.01870020478963852, 0.014469852671027184, 0.021128950640559196, 0.022177984938025475, -0.007565600797533989, -0.03172193095088005, -0.025678573176264763, 0.019589604809880257, -0.036898694932460785, -0.010974966920912266, -0.0062429034151136875, -0.022554270923137665, -0.004384285770356655, -0.03204120323061943, -0.002786501543596387, -0.028666043654084206, 0.032064009457826614, -0.027115296572446823, 0.012360379099845886, -0.04150532931089401, -0.005441873334348202, 0.011419666931033134, -0.0012471553636714816, -0.0023246975615620613, 0.03197278827428818, 0.006254306063055992, -0.022964762523770332, 0.0455874502658844, -0.010553072206676006, 0.0049629658460617065, -0.02953263930976391, -0.039133597165346146, 0.03224644809961319, -0.023785747587680817, 0.016271457076072693, -0.005225224886089563, 0.020946508273482323, 0.0019541142974048853, -0.00900802481919527, -0.030193988233804703, 0.02077547088265419, -0.008512013591825962, 0.03315865620970726, 0.01200689934194088, -0.02035357616841793, -0.033021822571754456, 0.02019394002854824, 5.304864316713065e-05, 0.0042217993177473545, -0.019943082705140114, 0.012919104658067226, 0.03144827112555504, 0.009133453480899334, 0.026978464797139168, 0.03591807559132576, -0.045245371758937836, -0.017411714419722557, 0.01171043235808611, 0.020125525072216988, 0.011949886567890644, -0.01296471431851387, 0.01242879405617714, -0.019372954964637756, 0.013774296268820763, -0.030581675469875336, -0.023443670943379402, -0.015359252691268921, -0.0032696849666535854, -0.03776529058814049, -0.01784501224756241, -0.013968139886856079, -0.015974991023540497, -0.0043671815656125546, -0.04072995483875275, -0.011146006174385548, -0.011567900888621807, 0.0285292137414217, 0.0043700323440134525, 0.009321595542132854, -0.011419666931033134, 0.052041299641132355, -0.024219045415520668, 0.008494909852743149, 0.009549646638333797, -0.039817750453948975, -0.004951563198119402, -0.02002290077507496, -0.061437010765075684, 0.05350082740187645, -0.00221067201346159, 0.0033409511670470238, 0.05049055069684982, -0.060433585196733475, -0.020444795489311218, -0.057195257395505905, -0.019201917573809624, -0.0028563421219587326, 0.010558773763477802, -0.019099293276667595, -0.02889409475028515, -0.02752578817307949, -0.0008060187101364136, -0.02077547088265419, -0.021687675267457962, 0.01046755351126194, -0.0007411666447296739, 0.004167636856436729, 0.02976069040596485, -0.005324997007846832, -0.018403736874461174, 0.01538205798715353, -0.003112899838015437, 0.021756090223789215, 0.03475501388311386, 0.0013868367532268167, -0.021391209214925766, -0.007628315128386021, 0.0017745238728821278, 0.009275984950363636, 0.0007860641926527023, 0.05213252082467079, -0.0007767996285110712, -0.0013540544314309955, 0.0341164693236351, -0.03215523064136505, -0.027183711528778076, -0.00038626184687018394, -0.002753718988969922, -0.002909078961238265, 0.0020709906239062548, 0.016716158017516136, 0.016408288851380348, 0.0345497652888298, 0.022394634783267975, 0.012873494066298008, -0.012189339846372604, 0.003386561293154955, 0.01663633994758129, -0.001485183835029602, -0.026796024292707443, 0.0015350701287388802, -0.003606060752645135, 0.0036602227482944727, 0.010473254136741161, 0.02253146469593048, 0.016830183565616608, 0.01870020478963852, 0.0034606780391186476, 0.015279434621334076, -0.0011751767015084624, 0.05892844870686531, -0.019897473976016045, 0.0065279677510261536, 0.023101594299077988, -0.01720646768808365, 0.01035922858864069, 0.018631787970662117, 0.01986326463520527, 0.00908214133232832, -0.044652439653873444, 0.009019427932798862, 0.027160905301570892, -0.04456121847033501, -0.009572451934218407, 0.006887148134410381, -0.03112899884581566, -0.027776643633842468, -0.020307965576648712, 0.017195066437125206, 0.0068586417473852634, 0.008112924173474312, 0.027434566989541054, 0.017970439046621323, 0.012451599352061749, -0.010530266910791397, -0.0008452149922959507, 0.01779940165579319, 0.0341164693236351, -0.04339815676212311, 0.028255552053451538, 0.042645588517189026, -0.02115175500512123, 0.020593030378222466, -0.024424290284514427, -0.005769697017967701, -0.022440245375037193, 0.012291963212192059, -0.0028064558282494545, -0.03787931427359581, 0.026704803109169006, 0.02369452640414238, -0.03256572037935257, -0.0001515293843112886, 0.003785650944337249, 0.00572408689185977, 0.006185890641063452, -0.037103939801454544, -0.023352449759840965, 0.010667097754776478, -0.02469795197248459, 0.0034321716520935297, -0.03516550734639168, -0.021505234763026237, -0.041231669485569, 0.007149407174438238, 0.017502935603260994, -0.02103772945702076, -0.05600939318537712, -0.0006510150851681828, -0.026385530829429626, 0.01779940165579319, -0.023831358179450035, -0.013671673834323883, 0.00025655768695287406, 0.0034663793630898], [0.06916562467813492, 0.011373545043170452, 0.001005358062684536, 0.0019202905241400003, -0.025419672951102257, -0.021340468898415565, 0.0030694506131112576, 0.0036220522597432137, 0.06478500366210938, 0.03162890672683716, -0.0501561313867569, 0.004101810976862907, -0.00011350311251590028, 0.004820193164050579, -0.0185975544154644, 0.0052396678365767, -0.01818561553955078, 0.028875945135951042, 0.05128142610192299, 0.015181472525000572, 0.03884286805987358, 0.018456893041729927, 0.007168749812990427, -0.003172435564920306, -0.0008094357326626778, -0.007892155088484287, 0.03004143200814724, 0.03144805505871773, 0.0016326864715665579, -0.06795994937419891, 0.016628284007310867, -0.01587473601102829, -0.022827468812465668, -0.04573531821370125, 0.0324728786945343, 0.02821282297372818, 0.036511894315481186, -0.05566205084323883, 0.03434167802333832, -0.010052325204014778, -0.055742427706718445, 0.014759485609829426, 0.021822739392518997, -0.044891342520713806, -0.028936227783560753, 0.06783938407897949, 0.005626488942652941, -0.004953319672495127, -0.04119393602013588, 0.049955181777477264, -0.0113634979352355, -9.599882469046861e-05, 0.019803231582045555, 0.01753254048526287, 0.025761282071471214, -0.002838362706825137, 0.017020128667354584, -0.007485239766538143, 0.01021308172494173, -0.013202154077589512, 0.015402513556182384, -0.006274539977312088, -0.040631286799907684, 0.020345786586403847, -0.032070986926555634, 0.020757725462317467, 0.014819770120084286, 0.04119393602013588, -0.06856278330087662, 0.06534764915704727, 0.02479674108326435, 0.03347760811448097, -0.0430828295648098, -0.03548707067966461, -0.019913751631975174, 0.010027207434177399, 0.03074474260210991, -0.022164346650242805, 0.0036622413899749517, 0.027770740911364555, -0.00046971134725026786, 0.035205744206905365, -0.025781376287341118, 0.028996512293815613, 0.02967972867190838, 0.002545735100284219, -0.038682110607624054, -0.000884790497366339, 0.00016546649567317218, -0.009816213510930538, 0.009750906378030777, 0.002677605953067541, 0.012106998823583126, 0.0572696179151535, 0.018095189705491066, 0.005656630732119083, 0.006495580542832613, -0.004948296118527651, -0.039686840027570724, 0.08327203243970871, 0.03323647379875183, 0.02909698523581028, -0.00164901337120682, 0.02702724188566208, 0.025982322171330452, -0.04296226054430008, -0.0643027275800705, 0.013684424571692944, -0.0022606428246945143, -0.0019793184474110603, -0.020757725462317467, 0.002245571929961443, 0.01012265682220459, 0.08254863321781158, -0.00926361232995987, -0.04119393602013588, 0.038742393255233765, -0.005144218448549509, -0.03665255755186081, -0.042881883680820465, 0.015101094730198383, -0.033196285367012024, 0.02089838683605194, -0.07752498239278793, -0.00032810718403197825, 0.019280772656202316, -0.03938542306423187, 0.033135998994112015, -0.04059109836816788, -0.014437972567975521, 0.02708752453327179, -0.0017206004122272134, 0.018858784809708595, -0.004621758591383696, -0.009665504097938538, 0.007806753274053335, -0.011202741414308548, -0.0013538738712668419, -0.017140695825219154, -0.02525891549885273, 0.019270723685622215, -0.03010171465575695, 0.05538072809576988, -0.014237026683986187, -0.016186201944947243, 0.035024892538785934, 0.010388909839093685, 0.05216559022665024, 0.003117175307124853, 0.01514128316193819, -0.0342412032186985, 0.0244953203946352, -0.0104793356731534, 0.022445671260356903, 0.0049759261310100555, -0.025700997561216354, -0.03283458203077316, 0.046780236065387726, -0.024535510689020157, 0.04115374758839607, -0.011745295487344265, -0.033738840371370316, -0.02437475323677063, -0.049955181777477264, 0.03643151745200157, -0.009544936940073967, -0.0034085470251739025, 0.01271988358348608, -0.03092559427022934, -0.02318917214870453, -0.01764306239783764, 0.01454849261790514, -0.05630507692694664, 0.008741152472794056, 0.002961442107334733, -0.005581276025623083, -0.01988361030817032, 0.002130027860403061, -0.010398956947028637, -0.025660809129476547, 0.02963954024016857, 0.023892482742667198, -0.03178966045379639, -0.028674999251961708, -0.02130027860403061, 0.02833339013159275, -0.0067668575793504715, 0.009288730099797249, -0.022526049986481667, -0.016859371215105057, -0.011021889746189117, 0.006952732801437378, 0.006219279486685991, 0.05457694083452225, -0.014015985652804375, 0.004147023893892765, -0.025520145893096924, 0.007872060872614384, 0.030443323776125908, -0.010459240525960922, 0.033497702330350876, -0.04726250842213631, 0.005907813552767038, -0.0015234220772981644, -0.022686807438731194, -0.030001241713762283, 0.045453991740942, 0.018627697601914406, 0.05638545751571655, -0.011614680290222168, -0.007701256778091192, -0.03086530975997448, -0.02845395728945732, 0.06591030210256577, -0.032312121242284775, -0.02479674108326435, 0.06060532480478287, -0.019441528245806694, 0.014940337277948856, 0.02367144264280796, -0.009077737107872963, -0.006259468849748373, 0.0191802978515625, -0.01227780245244503, -0.030322756618261337, -0.03856154531240463, -0.04268093779683113, -0.030362945050001144, 0.03104616142809391, -0.038340501487255096, -0.027589891105890274, 0.037556812167167664, 0.02769036404788494, -0.029880674555897713, 0.05554148182272911, 0.02018502913415432, 0.010700375773012638, -0.04517266899347305, -0.03046341799199581, -0.027107620611786842, 0.0034010116942226887, 0.018607603386044502, -0.0022631546016782522, -0.03327666223049164, 0.003413570811972022, -0.01646752655506134, 0.010820943862199783, 0.009117926470935345, 0.0348038524389267, -0.005174360238015652, 0.009132997132837772, -0.010358767583966255, 0.0029915841296315193, -0.01092141680419445, 0.022686807438731194, 0.0038405810482800007, 0.06269516050815582, -0.0075455233454704285, 0.06414197385311127, -0.07760535925626755, 0.003079497953876853, -0.03104616142809391, 0.0036521940492093563, -0.01982332579791546, -0.05337126553058624, -0.01168501190841198, 0.04420812800526619, -0.04549418017268181, -0.0017934433417394757, 0.022325104102492332, -0.04123412445187569, 0.04107337072491646, 2.843464790203143e-05, -0.023209266364574432, -0.020617062225937843, 0.031488243490457535, 0.018446845933794975, 0.0020797913894057274, -0.019109968096017838, 0.009077737107872963, -0.03233221545815468, -0.01930086687207222, 0.029137175530195236, 0.0006876122206449509, 0.0212399959564209, -0.026826296001672745, -0.006264492403715849, -0.005998238921165466, -0.005269809626042843, -0.0030367968138307333, 0.028373580425977707, -0.018255947157740593, -0.051964644342660904, 0.011875910684466362, -0.003792856354266405, -0.0031121517531573772, -0.04316320642828941, 0.02833339013159275, -0.011564443819224834, -0.0033834287896752357, -0.019963989034295082, 0.024696268141269684, 0.005076399073004723, 0.0065458170138299465, -0.0330355279147625, 0.026806199923157692, 0.010152798146009445, 0.019320961087942123, -0.056988295167684555, -0.006118806544691324, -0.04203791171312332, 0.0708535686135292, -0.018135379999876022, -0.006254445295780897, -0.01275002583861351, 0.05566205084323883, -0.025580430403351784, -0.026544971391558647, 0.026866484433412552, 0.01610582508146763, 0.02891613356769085, 0.03701426088809967, 0.03884286805987358, -0.008123243227601051, 0.02443503774702549, 0.03383931145071983, 0.038742393255233765, 0.07169754058122635, -0.026806199923157692, -0.027589891105890274, -0.028494147583842278, 0.0062243035063147545, -0.0054305666126310825, -0.023470496758818626, -0.04002844914793968, -0.028052065521478653, -0.010047301650047302, 0.0017570218769833446, -0.019612332805991173, -0.016065634787082672, 0.04786534607410431, 0.008786365389823914, -0.019974036142230034, 0.009479628875851631, -0.023229360580444336, 0.01698998734354973, 0.031307391822338104, 0.02620336227118969, -0.004229913931339979, -0.007836895063519478, 0.05891737714409828, -0.013875323347747326, -0.017381832003593445, -0.024696268141269684, -0.03705444931983948, 0.008339260704815388, 0.011524255387485027, -0.021039050072431564, 0.010529572144150734, -0.0013061491772532463, -0.003182482672855258, -0.020566826686263084, 0.032894864678382874, 0.030242377892136574, -0.038862962275743484, 0.01623643934726715, 0.004935736767947674, -0.003910912200808525, 0.05216559022665024, -0.01044919341802597, 0.07402852177619934, -0.004461002070456743, -0.020315643399953842, -0.012910782359540462, 0.04061119258403778, 0.029137175530195236, -0.021923212334513664, -0.008218692615628242, 0.007344577461481094, -0.01410641148686409, 0.02030559629201889, 0.008299071341753006, 0.02602251060307026, 0.05883699655532837, 0.04079204425215721, 0.05457694083452225, -0.02437475323677063, 0.005179383791983128, 0.009087784215807915, 0.02550005167722702, -0.030644269660115242, -0.02726837620139122, 0.00985640287399292, 0.017844008281826973, -0.026987051591277122, 0.045654937624931335, 0.0708535686135292, 0.028052065521478653, -0.015091046690940857, -0.04103317856788635, 0.009163139387965202, -0.0489906407892704, 0.0032101129181683064, -0.019672617316246033, 0.0312872976064682, 0.04770458862185478, 0.06534764915704727, -0.0015560758765786886, 0.05968097224831581, 0.001946664648130536, 0.034743569791316986, -0.01322224922478199, 0.009434415958821774, 0.010760660283267498, 0.03936532884836197, 0.010127680376172066, -0.002161425771191716, 0.008258881978690624, 0.018396608531475067, -0.029318025335669518, 0.026585159823298454, -0.002765519777312875, -0.05831453949213028, -0.016135966405272484, 0.0006194789311848581, 0.006525722332298756, -0.011353450827300549, -0.004855358507484198, 0.016537858173251152, -0.02117971144616604, -0.026122983545064926, 0.010630045086145401, 0.03705444931983948, 0.0037727616727352142, -0.06036418676376343, -0.04127431660890579, -0.01334281638264656, -0.01858750730752945, 0.0101779168471694, 0.006555864121764898, -0.005480803083628416, -0.014789627864956856, 0.02071753516793251, 0.04392680153250694, -0.0057671512477099895, 0.0019403850892558694, -0.0022895289584994316, 0.00012025364412693307, 0.002589691895991564, 0.005922884214669466, -0.0643831118941307, -0.004355505108833313, -0.02732866071164608, 0.0062243035063147545, -0.048548560589551926, 0.023349929600954056, -0.03022228367626667, -0.07776611298322678, 0.05260767042636871, 0.007279269862920046, 0.02373172715306282, 0.016628284007310867, 0.05393391475081444, -0.00246410071849823, 0.0045740338973701, 0.06060532480478287, 0.0034462243784219027, -0.02821282297372818, -0.015101094730198383, -0.05457694083452225, -0.015382418408989906, 0.003516555530950427, 0.047664400190114975, -0.006455391179770231, -0.0016427338123321533, 0.009806166402995586, 0.031247107312083244, -0.018577460199594498, -0.0312672033905983, -0.022988226264715195, 0.025158442556858063, 0.035205744206905365, -0.0489906407892704, -0.02839367464184761, 0.04983461648225784, 0.01972285285592079, 0.06068570166826248, -0.007831871509552002, 0.029358215630054474, -0.047825153917074203, -0.05172351002693176, -0.023269550874829292, -0.015151331201195717, -0.0044082533568143845, 0.012498843483626842, -0.01824590004980564, -0.02702724188566208, -0.02059696801006794, 0.011122362688183784, -0.006234350614249706, 0.031026067212224007, 0.004312804434448481, 0.010238200426101685, -0.029237648472189903, 0.025600524619221687, -0.02885585092008114, 0.018336325883865356, 0.009836308658123016, -0.008042864501476288, -0.0006580982590094209, -0.0318901352584362, 0.021159617230296135, 0.029900768771767616, -0.03253316134214401, -0.02584165893495083, -0.05063840001821518, -0.010162845253944397, -0.0019027077360078692, -0.006239374168217182, -0.033618271350860596, 0.013573904521763325, 0.0069878981448709965, -0.033497702330350876, -0.016206298023462296, -0.01543265487998724, -0.004197260364890099, 0.04589607194066048, -0.029297931119799614, -0.004800098482519388, -0.005958050023764372, -0.004790050908923149, -0.06213251128792763, -0.07013016194105148, -0.025459861382842064, 0.03263363614678383, 0.02479674108326435, 0.005006067920476198, 0.018748264759778976, 0.011192694306373596, -0.05759113281965256, -0.020506542176008224, -0.028132444247603416, -0.0039058884140104055, -0.017683250829577446, -0.012448607012629509, 0.018617650493979454, 0.03168918937444687, -0.031729377806186676, 0.004044038709253073, -0.010172893293201923, 0.005390377249568701, -0.0033733814489096403, 0.030644269660115242, -0.02455560490489006, 0.0016879466129466891, -0.012609363533556461, 0.05216559022665024, -0.013624140992760658, -0.0430828295648098, -0.023450402542948723, 0.021400751546025276, 0.038400787860155106, -0.013172012753784657, -0.016216345131397247, 0.02562061883509159, 0.028072159737348557, -0.007309412118047476, -0.027308566495776176, 0.02278728038072586, -0.02927783690392971, -0.025881849229335785, 0.02632392942905426, 0.023631254211068153, 0.002682629507035017, 0.025660809129476547, -0.003672288730740547, 0.036451611667871475, -0.013322722166776657, -0.015291992574930191, 0.01413655374199152, 0.01675889827311039, 0.03397997468709946, 0.012036667205393314, -0.05091972276568413, -0.0027353777550160885, 0.030543796718120575, 0.008545230142772198, -0.024294374510645866, -0.02531920000910759, 0.032492972910404205, -0.009831284172832966, -0.013654283247888088, -0.007962486706674099, 0.0029765130020678043, -0.056104131042957306, 0.04215847700834274, -0.014005938544869423, 0.01616610772907734, -0.04167620837688446, 0.01858750730752945, -0.019552048295736313, -0.018778406083583832, 0.023169077932834625, 0.026042604818940163, -0.04657929018139839, -0.06249421462416649, 0.0034035234712064266, -0.0018562389304861426, -0.025399578735232353, 0.009615267626941204, 0.02224472537636757, -0.0027102595195174217, 0.03494451567530632, -0.01027336623519659, -0.033316850662231445, 0.012880641035735607, -0.0318700410425663, -0.026042604818940163, -0.01740192621946335, -0.022586334496736526, -0.009796119295060635, 0.0006486789206974208, -0.000441767304437235, -0.007364672143012285, -0.015080999583005905, -0.012317991815507412, -0.013593998737633228, -0.01924058236181736, 0.011041984893381596, -0.009419345296919346, 0.021320374682545662, 0.0021978472359478474, -0.003220160258933902, -0.03625066578388214, -0.009037547744810581, -0.007721351459622383, -0.027650173753499985, -0.019320961087942123, 0.008213669061660767, 0.027469322085380554, 0.02644449844956398, 0.0025670856703072786, 0.011906052008271217, -0.062293268740177155, 0.01050947792828083, 0.0019567119888961315, 0.015161378309130669, 0.0066513135097920895, -0.012729930691421032, -0.020516589283943176, 0.024515416473150253, 0.02117971144616604, -0.002685141284018755, -0.04444926232099533, 0.0012534009292721748, -0.0218428336083889, -0.027710458263754845, 0.05694810673594475, 0.02738894335925579, 0.03406035155057907, -0.014669060707092285, 0.0013978307833895087, -0.005500897765159607, -0.04231923446059227, -0.008922004140913486, 0.009022477082908154, 0.031950417906045914, -0.004204795695841312, 0.004345458000898361, -0.0044208127073943615, 0.019752994179725647, 0.014970479533076286, -0.03564782440662384, -0.0495934821665287, -0.015975208953022957, -0.004491143859922886, -0.000213505161809735, 0.0024728921707719564, 0.008138313889503479, 0.0666738897562027, -0.03988778591156006, -0.02857452630996704, 0.009876497089862823, 0.01758277788758278, 0.010419052094221115, 0.010192987509071827, 0.018336325883865356, -0.010388909839093685, 0.020265407860279083, 0.0112127885222435, -0.002032066695392132, 0.021099332720041275, -0.04260055720806122, 0.007947415113449097, 0.020456306636333466, 0.024897214025259018, 0.027549700811505318, -0.004054086282849312, 0.0008785109384916723, 0.028474053367972374, -0.011112315580248833, -0.013091634027659893, -0.043766044080257416, -0.06390083581209183, -0.04332396388053894, -0.01570393331348896, 0.012207471765577793, 0.009580101817846298, -0.00029247067868709564, 0.0011893493356183171, -0.0336383655667305, -0.005154265556484461, -0.03257335349917412, -0.013744708150625229, -0.025580430403351784, -0.02236529253423214, 0.03677312284708023, -0.018788453191518784, 0.01960228569805622, 0.03932513669133186, -0.04103317856788635, 0.030322756618261337, -0.011896004900336266, 0.00176706921774894, 0.013654283247888088, -0.012106998823583126, 0.013684424571692944, 0.03653198853135109, -0.04113365337252617, 0.02668563276529312, 0.04268093779683113, -0.044851154088974, 0.0061087594367563725, 0.017321547493338585, -0.036632463335990906, -0.013945654965937138, -0.04882988706231117, 0.007771587930619717, 0.003082009730860591, -0.026886578649282455, -0.0035517211072146893, -0.04774477705359459, -0.01570393331348896, -0.025158442556858063, 0.008419638499617577, 0.020506542176008224, 0.013905465602874756, 0.026364119723439217, 0.0015033275121822953, 0.03731567785143852, -0.0075455233454704285, 0.003182482672855258, -0.02077781967818737, -0.011544349603354931, 0.04850837215781212, -0.01275002583861351, -0.03205089271068573, 0.0061941612511873245, 0.001125925686210394, -0.016799088567495346, -0.0044233244843780994, 0.010419052094221115, 0.007771587930619717, 0.053210508078336716, 0.025982322171330452, -0.030423229560256004, -0.03747643530368805, 0.004285173956304789, -0.007234056945890188, -0.03418092057108879, 0.01593502052128315, 0.00888683833181858, 0.01598525606095791, -0.01183572132140398, -0.007651020307093859, 0.0020986301824450493, -0.02172226645052433, -0.011041984893381596, 0.011323308572173119, -0.03741615265607834, 0.014709249138832092, -0.0025746210012584925, -0.01183572132140398, 0.046137209981679916, 0.009424368850886822, -0.03570811077952385, -0.014468113891780376, 0.024937402456998825, -0.003039308823645115, 0.016186201944947243, -0.02678610570728779, -0.022767186164855957, 0.017783723771572113, -0.03182985261082649, -0.03606981411576271, 0.02537948451936245, 0.017904290929436684, -0.02708752453327179, -0.0036245640367269516, 0.017261264845728874, -0.004104322753846645, -0.0030242376960814, -0.01924058236181736, 0.02343030646443367, 0.03215136379003525, 0.006842212285846472, -0.03699416294693947, -0.038862962275743484, 0.004275126848369837, -0.012579221278429031, 0.006113782990723848, 0.005711890757083893, 0.015904879197478294, 0.007862013764679432, -0.016799088567495346, -0.027007145807147026, -0.010810896754264832, 0.03400006890296936, -0.04762420803308487, -0.03518564999103546, 0.06619162112474442, 0.014749438501894474, 0.01747225783765316, -0.019401339814066887, 0.05453675240278244, 0.007319459225982428, -0.03110644593834877, -0.017984669655561447, 0.008148361928761005, -0.019994130358099937, 0.0006040940061211586, 0.02550005167722702, 0.01982332579791546, -6.208918057382107e-05, -0.02431447058916092, 0.007234056945890188, -0.016658425331115723, -0.01858750730752945, -0.017723439261317253, 0.01640724390745163, 0.04686061292886734, -0.018306182697415352, -0.025057969614863396, 0.027127714827656746, 0.004332898650318384, 0.03558754175901413, 0.0054305666126310825, -0.012528984807431698, -0.0430828295648098, 0.04123412445187569, -0.02945868857204914, -0.023892482742667198, -0.008047888986766338, 0.005204502027481794, -0.007043158635497093, -0.007138607557862997, 0.0011924890568479896, -0.010077443905174732, -0.0017494864296168089, -0.0028559453785419464, 0.022526049986481667, -0.005581276025623083, -0.01581445336341858, 0.0066663846373558044, 0.00016311166109517217, -0.020104650408029556, 0.013644235208630562, -0.0017369273118674755, -0.02897641807794571, 0.0009833796648308635, 0.05646583437919617, -0.0010888762772083282, 0.0041847010143101215, -0.03864192217588425, -0.03747643530368805, -0.02431447058916092, 0.0012220030184835196, 0.0690450593829155, 0.002278225729241967, 0.0110620791092515, 0.007178796920925379, 0.009409298188984394, 0.016547905281186104, 0.004591616801917553, -0.010549666360020638, -0.025158442556858063, -0.013995891436934471, 0.03675302863121033, 0.02403314597904682, 0.006294634658843279, 0.0029865603428333998, -0.03655208274722099, 0.013242343440651894, 0.03359817713499069, 0.046780236065387726, -0.015924973413348198, -0.005380330141633749, -0.018205709755420685, 0.013985843397676945, -0.002677605953067541, -0.012177329510450363, -0.0212399959564209, -0.030001241713762283, 0.00997697003185749, -0.0035215793177485466, 0.024173807352781296, -0.011273072101175785, -0.010841038078069687, -0.049312155693769455, -0.02491730824112892, 0.020275454968214035, -0.024334564805030823, -0.02495749667286873, -0.0009413065854460001, 0.0655084028840065, -0.004267591517418623, -0.031247107312083244, 0.01865783892571926, 0.0236111581325531, 0.029016606509685516, 0.024696268141269684, 0.009921710006892681, -0.008871767669916153, 0.02586175501346588, -0.02224472537636757, 0.0022166860289871693, -0.031146634370088577, 0.006716621108353138, 0.01913006231188774, -0.009394226595759392, 0.010097538121044636, 0.04000835493206978, 0.004785027354955673, 0.025399578735232353, 0.017984669655561447, 0.00035134158679284155, -0.04055090993642807, 0.005405448377132416, 0.03315609693527222, -0.023751821368932724, 0.011996477842330933, 0.04083223268389702, -0.023450402542948723, -0.02939840406179428, -0.008329212665557861, 0.021219901740550995, 0.009961899369955063, -0.01080084964632988, 0.013061491772532463, 0.017311500385403633, -0.015302040614187717, -0.024696268141269684, 0.01628667674958706, 0.024234091863036156, 0.00015840199193917215, 0.024053240194916725, 0.01770334504544735, -0.008474898524582386, 0.010057348757982254, 0.011192694306373596, 0.027067430317401886, 0.03799889609217644, 0.022686807438731194, -0.00635994179174304, 0.046418532729148865, 0.016487622633576393, -0.007801729720085859, -0.010529572144150734, 0.03988778591156006, -0.02312888763844967, 0.00479758670553565, 0.014980526641011238, 0.035868868231773376, 0.016146013513207436, -0.0006292122416198254, -0.005581276025623083, -0.006952732801437378, -0.010559714399278164, -0.010609950870275497, -0.001769580994732678, -0.0013149406295269728, -0.005706867203116417, 0.004144512116909027, 0.03625066578388214, -0.015131236054003239, 0.0045539396815001965, 0.004476072732359171, 0.009876497089862823, 0.005541086662560701, -0.02367144264280796, -0.015372371301054955, 0.027609985321760178, -0.01994389295578003, 0.0009582613711245358, -0.009987018071115017, 0.02980029582977295, 0.023892482742667198, 0.010112608782947063, 0.031206918880343437, -0.0003117803134955466, 0.02769036404788494, 0.016738804057240486, -0.02568090334534645, 0.06747768074274063, 0.026544971391558647, -0.007867037318646908, 0.022586334496736526, 0.0020169958006590605, -0.030483512207865715, 0.00473479088395834, 0.013975796289741993, -0.04006863757967949, -0.0005802316591143608, 0.014357593841850758, 5.526015957002528e-05, -0.021199805662035942, 0.02018502913415432, -0.014679107815027237, 0.014669060707092285, 0.0009758441592566669, -0.014598729088902473, 0.023329833522439003, 0.024515416473150253, 0.062413837760686874, 0.020637158304452896, -0.004476072732359171, 0.013413148000836372, -0.0011190181830897927, 0.027107620611786842, 0.024836929515004158, 0.03826012462377548, -0.011453923769295216, 0.022224631160497665, 0.040048543363809586, -0.009424368850886822, 0.009454511106014252, -0.01168501190841198, -0.020566826686263084, 0.009529865346848965, 0.028132444247603416, -0.02650478109717369, -0.0036622413899749517, -0.040812138468027115, 0.010830990970134735, -0.0049759261310100555, -0.007344577461481094, 0.017954528331756592, 0.01124293077737093, 0.003174947341904044, 0.0057571036741137505, 0.0005193199031054974, 0.06820107996463776, -0.046900805085897446, 0.017904290929436684, -0.01669861562550068, -0.005510944873094559, 0.0084146149456501, -0.04227904602885246, 0.000953237758949399, -0.026122983545064926, -0.010599902831017971, -0.018929116427898407, 0.0120969507843256, 0.008052912540733814, 0.014980526641011238, -0.03687359765172005, -0.0008841625531204045, 0.01617615483701229, 0.0015271898591890931, 0.03229202702641487, -0.003516555530950427, 0.0008408335270360112, 0.017562683671712875, 0.023591063916683197, 0.020285502076148987, -0.0031322462018579245, -0.0009614011505618691, -0.00492820143699646, -0.004687066189944744, 0.01600535213947296, -0.0009224678506143391, -0.018276041373610497, 0.017612919211387634, -0.005219573155045509, -0.011202741414308548, -0.04525304585695267, -0.017723439261317253, -0.016336912289261818, 0.011232882738113403, 0.007073300424963236, 0.006937661673873663, 0.013252390548586845, -0.02407333441078663, 0.03870220482349396, 0.011896004900336266, -0.01846694014966488, 0.007445050403475761, 0.003752667224034667, 0.029137175530195236, -0.020556779578328133, -0.014809723012149334, 0.02785111963748932, -0.016246486455202103, -0.004350481554865837, 0.01817556843161583, -0.028614714741706848, -0.013855229131877422, -0.016306770965456963, 0.0014091340126469731, 0.027951592579483986, 0.002722818637266755, 0.034261297434568405, 0.01528194546699524, -0.047664400190114975, 0.013312675058841705, -0.0025105695240199566, 0.018748264759778976, 0.006495580542832613, 0.006098711863160133, -0.01256917417049408, -0.029197458177804947, -0.0003792856296058744, -0.04509228840470314, 0.011142457835376263, 0.023992955684661865, -0.009364085271954536, -0.038039084523916245, 0.014317404478788376, -0.006098711863160133, -0.006410178262740374, -0.011102268472313881, -0.047784965485334396, -0.010439146310091019, 0.006219279486685991, 0.01812533289194107, 0.011745295487344265, 0.005998238921165466, 0.004473560955375433, 0.014478161931037903, 0.045132480561733246, 0.0548984557390213, 0.009338966570794582, 0.014659012667834759, -0.011514207348227501, -0.04412774741649628, -0.00774646969512105, -0.0011403687531128526, 0.0472223162651062, 0.010419052094221115, -0.034442149102687836, 0.03146814927458763, -0.008876791223883629, -0.028835754841566086, 0.0036898714024573565, 0.001051198923960328, -0.008248834870755672, 0.01278016809374094, -0.026585159823298454, 0.02821282297372818, 0.02939840406179428, 0.024213997647166252, 0.002860969165340066, 0.014458066783845425, 0.018818596377968788, -0.028433863073587418, 0.03217145800590515, 0.018105236813426018, 0.0026575112715363503, -0.02574118599295616, 0.013975796289741993, -0.055581673979759216, -0.019742947071790695, -0.0365721769630909, -0.017442114651203156, 0.04159582778811455, -0.019331008195877075, 0.03613009676337242, 0.02851424179971218, 0.03016199916601181, -0.019381245598196983, -0.005862600635737181, 0.04874950647354126, -0.0318901352584362, -0.01517142541706562, -0.02190311811864376, 0.029378309845924377, 0.025520145893096924, -0.019331008195877075, -0.035266026854515076, -0.0039812433533370495, 0.024213997647166252, -0.007856990210711956, 0.00022198256920091808, 0.00988654512912035, -0.04396698996424675, 0.03787832707166672, -0.046900805085897446, -0.011825674213469028, -0.005832458380609751, -0.009504747577011585, 0.001887636841274798, 0.019572144374251366, 0.0013563857646659017, -0.031247107312083244, -0.06333819031715393, -0.042761314660310745, -0.02006446197628975, 0.014880053699016571, -0.006822117604315281, -0.027228187769651413, -0.013433242216706276, -0.021400751546025276, -0.030704554170370102, 0.01457863487303257, -0.01242851186543703, -0.007445050403475761, -0.007505334448069334, 0.009504747577011585, -0.012971065938472748, 0.001848703483119607, -0.01882864348590374, 0.02525891549885273, 0.02230500988662243, -0.04113365337252617, -0.009283706545829773, -0.012488795444369316, -0.02208396978676319, -0.030021337792277336, -0.02531920000910759, -0.021199805662035942, 0.032613541930913925, -0.02750951237976551, -0.03010171465575695, -0.014628871344029903, 0.025781376287341118, -0.012187376618385315, 0.02650478109717369, -0.009484652429819107, 0.01871812343597412, 0.010650139302015305, -0.01770334504544735, 0.02437475323677063, 0.025520145893096924, -0.00017315895820502192, -0.04473058506846428, -0.03677312284708023, 0.002130027860403061, 0.024334564805030823, -0.004609199706465006, -0.036270759999752045, -0.03387949988245964, 0.00042826624121516943, 0.013583951629698277, -0.004694601520895958, -0.008937074802815914, -0.003059403272345662, -0.010670234449207783, -0.058877188712358475, 0.010278389789164066, 0.034844040870666504, -0.031005972996354103, 0.006606100592762232, -0.012890688143670559, 0.03383931145071983, -0.018225805833935738, 0.022425577044487, -0.005691796541213989, 0.03197051212191582, -0.047905534505844116, 0.024816835299134254, 0.020114697515964508, -0.0061238300986588, 0.027750646695494652, -0.015010668896138668, 0.005807340145111084, 0.03641141951084137, 0.008032817393541336, 0.022144252434372902, 0.010358767583966255, 0.016718709841370583, 0.02678610570728779, -0.006892448756843805, 0.019632427021861076, -0.024093428626656532, -0.01912001520395279, 0.01693974994122982, 0.002441494259983301, 0.0165278110653162, 0.004312804434448481, -0.005500897765159607, -0.023631254211068153, -0.026303835213184357, 0.01794448122382164, 0.019692711532115936, 0.008947121910750866, 0.004400718025863171, 0.006771881133317947, -0.025037875398993492, -0.002500522183254361, 0.016507716849446297, -0.00028572013252414763, -0.01378489751368761, -0.009866449981927872, -0.0004813285486306995, 0.008590443059802055, 0.03235230967402458, 0.00016122779925353825, 0.0014179254649206996, 0.0012534009292721748, -0.006817094050347805, -0.022104064002633095, 0.02294803597033024, 0.01322224922478199, 0.04159582778811455, -0.02266671322286129, -0.046539101749658585, -0.0009683087118901312, -0.022003591060638428, -0.01994389295578003, -0.007429979741573334, -0.00017739766917657107, 0.007249128073453903, -0.0022907848469913006, 0.03353789448738098, 0.024153713136911392, -0.016186201944947243, -0.018919069319963455, -0.03912419080734253, 0.016959846019744873, -0.010830990970134735, -0.010192987509071827, 0.0009519818122498691, -0.01995394006371498, -0.0011284375796094537, -0.021822739392518997, 0.021581603214144707, -0.01724116876721382, 0.014046127907931805, -0.01103193685412407, 0.013704519718885422, -0.0233097393065691, -0.031950417906045914, -0.0407317616045475, 0.0010700376005843282, 0.02178254909813404, 0.0034939490724354982, -0.019742947071790695, -0.004965879023075104, 0.050075750797986984, 0.007756516803056002, -0.03472347557544708, -0.0004345458000898361, -0.04316320642828941, 0.04127431660890579, 0.03259344771504402, 0.004785027354955673, -0.0011648590443655849, 0.021923212334513664, 0.003973707556724548, -0.02662535011768341, -0.005028674378991127, 0.031669095158576965, -0.02821282297372818, 0.01186586357653141, 0.014327452518045902, 0.012237613089382648, -0.017311500385403633, -0.0244953203946352, -0.011313261464238167, 0.03948589414358139, -0.007485239766538143, 0.0019893657881766558, 0.014046127907931805, -0.001865030382759869, 0.012438558973371983, 0.03793860971927643, -0.00408925162628293, -0.02684639021754265, 0.004277638625353575, 0.007429979741573334, 0.024113524705171585, -0.016547905281186104, -0.008389497175812721, -0.021762454882264137, 0.0006725412677042186, -0.014819770120084286, 0.0028308271430432796, -0.024977590888738632, -0.01517142541706562, -0.02218444272875786, -0.015482891350984573, 0.004094275180250406, -0.02373172715306282, -0.04396698996424675, -0.04002844914793968, -0.0004370576061774045, -0.031367674469947815, -0.01157449185848236, -0.005596347153186798, 0.005998238921165466, -0.009906639344990253, 0.009906639344990253, -0.002602251013740897, -0.008384473621845245, 0.0016351983649656177, -0.015211614780128002, 0.005576252471655607, -0.028112350031733513, -0.014056175015866756, 0.021621793508529663, -0.005066351965069771, -0.004403229802846909, 0.059238892048597336, -0.041877154260873795, -0.015332181937992573, -0.027228187769651413, 0.012468701228499413, 0.01395570207387209, 0.015030763112008572, -0.012056762352585793, -0.026946863159537315, -0.010549666360020638, 0.009851379320025444, -0.008580395951867104, -0.006118806544691324, 0.0008395776385441422, 0.006349894683808088, 0.022686807438731194, 0.0025369436480104923, -0.016196250915527344, -0.015975208953022957, 0.021621793508529663, -0.012076856568455696, 0.04726250842213631, 0.030905500054359436, -0.003021725919097662, -0.035969339311122894, 0.03197051212191582, -0.017391879111528397, 0.0069878981448709965, 0.002189055783674121, 0.004707160871475935, -0.004229913931339979, 0.0008734872681088746, 0.035868868231773376, -0.02218444272875786, -0.02290784753859043, 0.03239250183105469, 0.023932673037052155, -0.002246827818453312, -0.001968015218153596, -0.00873612891882658, 0.011484066024422646, 0.006018333602696657, 0.04079204425215721, -0.015573317185044289, -0.018818596377968788, -0.0013149406295269728, 0.019160203635692596, 0.003172435564920306, -0.04846818372607231, -0.030443323776125908, 0.0091480677947402, -0.016246486455202103, 0.002923764754086733, -0.00023736749426461756, 0.0042876857332885265, 0.015794357284903526, 0.007600783836096525, -0.0023900019004940987, -0.010439146310091019, 0.05176369845867157, 0.006691502872854471, -0.011614680290222168, 0.009680574759840965, -0.013272485695779324, 0.013212201185524464, 0.0038079272489994764, -0.0033658461179584265, 0.042761314660310745, -0.027891309931874275, -0.017552636563777924, 0.006912543438374996, -0.013423195108771324, -0.033196285367012024, -0.0033080740831792355, -0.018044954165816307, -0.02385229431092739, 0.015070952475070953, 0.018014810979366302, 0.011745295487344265, 0.023088699206709862, 0.013322722166776657, 0.0025972274597734213, 0.01823585294187069, -0.05694810673594475, 0.03116673044860363, -0.0033156094141304493, 0.00703813461586833, -0.014146600849926472, 0.021682076156139374, 0.027308566495776176, 0.03528612479567528, 0.019210441038012505, -0.010881227441132069, 0.00785196665674448, -0.026283740997314453, 0.012348134070634842, 0.027007145807147026, -0.009268635883927345, 0.004438395611941814, 0.04569512605667114, -0.030021337792277336, 0.029961053282022476, 0.008309118449687958, 0.040631286799907684, 0.02284756302833557, -0.01259931642562151, -0.022747090086340904, 0.01746221072971821, -0.008540206588804722, 0.03369864821434021, -0.023048510774970055, 0.017281359061598778, -0.019903704524040222, -0.029840486124157906, 0.00926361232995987, -0.02254614420235157, -0.018034907057881355, 0.0076459962874650955, -0.024053240194916725, 0.02318917214870453, -0.009811189956963062, -0.019160203635692596, 0.005571228917688131, 0.0020584408193826675], [0.05110068619251251, -0.023706946521997452, 0.04908581078052521, -0.03360984846949577, -0.06040341407060623, 0.03971878066658974, -0.024071339517831802, 0.0066823153756558895, 0.006982403341680765, 0.061732374131679535, -0.029794445261359215, -0.05474461242556572, 0.019784368574619293, 0.02239941991865635, -0.012592975981533527, 0.0223565511405468, -0.0026338074821978807, 0.019001996144652367, -0.0064197382889688015, -0.029301444068551064, -0.009763575159013271, 0.022206507623195648, 0.000413960573496297, -0.008986561559140682, 0.00882044155150652, 0.0011333677684888244, 0.007577220443636179, -0.026086214929819107, 0.05367286875844002, -0.05354426056146622, 0.053201302886009216, -0.033781327307224274, -0.003852914785966277, -0.04248387739062309, -0.015379506163299084, -0.03221658244729042, -0.004120850469917059, -0.019902260974049568, 0.025164516642689705, 0.013750458136200905, -0.033717021346092224, 0.044413015246391296, 0.0028427971992641687, -0.04990033805370331, 0.02289242297410965, 0.011928495019674301, 0.030437489971518517, -0.011971364729106426, 0.0071538821794092655, 0.018294647336006165, 0.06863439828157425, 0.04111204668879509, -0.00460849329829216, 0.013257456012070179, 0.03566759452223778, 0.008048786781728268, 0.04164791852235794, 0.015229462645947933, 0.05431591719388962, 0.007930895313620567, -0.0057606166228652, -0.03618203103542328, -0.04053330421447754, 0.02233511582016945, 0.021820679306983948, 0.003201831132173538, 0.0450560599565506, 0.029794445261359215, -0.02114548161625862, -0.026000475510954857, -0.03547468036413193, 0.003129488555714488, -0.01346108689904213, -0.07313571870326996, -0.008729343302547932, 0.0033036465756595135, 0.0007401722250506282, -0.05427304655313492, 0.05671662092208862, 0.026514912024140358, -0.024049904197454453, 0.02080252394080162, -0.014843635261058807, -0.0006832359358668327, 0.03682507574558258, 0.019612889736890793, -0.04239813983440399, -0.025721821933984756, 0.0041422853246331215, -0.008075580932199955, -0.031037665903568268, -0.05551626905798912, 0.02015947923064232, 0.02250659465789795, 0.009843955747783184, 0.005063984077423811, 0.03219514712691307, -0.0032982879783958197, -0.0444987528026104, 0.06421881914138794, 0.02045956626534462, 0.03210940957069397, 0.048271287232637405, 0.029172834008932114, 0.021456286311149597, -0.014811483211815357, 0.006296487990766764, 0.025528909638524055, 0.015540268272161484, -0.0030223142821341753, 0.052301038056612015, -0.030630404129624367, -0.02325681410729885, 0.06824856996536255, 0.016076140105724335, -0.02312820591032505, -0.0022305643651634455, 0.010969285853207111, -0.003175037447363138, 0.01351467426866293, -0.0028803083114326, -0.01604398712515831, 0.024564340710639954, -0.07485050708055496, -0.009377747774124146, -0.00441022077575326, -0.014211307279765606, 0.013085977174341679, -0.07562215626239777, 0.007186034228652716, 0.00295265088789165, -0.03620346635580063, 0.019001996144652367, 0.018080297857522964, -0.0043244813568890095, 0.0229352917522192, 0.034853070974349976, -0.021263374015688896, -0.008932975120842457, -0.05337278172373772, -0.002490461803972721, 0.010379827581346035, 0.01600111648440361, 0.0037725339643657207, -0.03787538409233093, 0.06902022659778595, 0.000592472730204463, 0.05358713120222092, 0.006323281675577164, 0.02216363698244095, -0.024049904197454453, -0.005578420124948025, 0.009731423109769821, 0.010653121396899223, 0.019130606204271317, 0.001789810135960579, -0.00705742510035634, 0.021927854046225548, -0.0051363264210522175, -0.0013932654401287436, 0.014147002249956131, -0.03129488602280617, -0.08153817802667618, -0.01789810135960579, 0.020491719245910645, 0.03292393311858177, 0.024457165971398354, 0.017490839585661888, -0.04154074564576149, -0.028658397495746613, -0.014425655826926231, 0.03174501657485962, -0.011542667634785175, -0.019377106800675392, 0.012035669758915901, -0.019730782136321068, 0.0235569030046463, 0.013032389804720879, -0.019870107993483543, 0.057273924350738525, -0.015990400686860085, 0.0229995958507061, -0.05161512270569801, 0.0057070292532444, -0.04925728961825371, 0.05002894625067711, 0.025657517835497856, -0.034274328500032425, 0.02722226269543171, -0.04220522567629814, -0.00210195523686707, 0.019505714997649193, -0.020448848605155945, 0.015165157616138458, -0.0473281554877758, -0.01619403064250946, 0.012935933656990528, -0.007373589091002941, 0.03796112537384033, -0.021434852853417397, 0.02737230621278286, -0.003309005405753851, 0.033888500183820724, -0.010417338460683823, -0.04121921956539154, -0.012785889208316803, 0.005412300117313862, 0.004975565243512392, 0.008188113570213318, -0.0016491439891979098, 0.00020011444576084614, -0.013096694834530354, -0.012978803366422653, 0.029987357556819916, -0.0450989305973053, 0.029430052265524864, 0.0236640777438879, -0.015240180306136608, -0.021574178710579872, 0.043469879776239395, -0.04977172613143921, -0.009961847215890884, 0.021831396967172623, -0.01877693086862564, -0.0441557951271534, -0.03545324504375458, 0.026300564408302307, 0.02325681410729885, -0.008697191253304482, -0.05110068619251251, -0.013814762234687805, 0.0023618529085069895, -0.021574178710579872, -0.024907298386096954, 0.0226566381752491, 0.012785889208316803, -0.024564340710639954, -0.02685786969959736, -0.0232782494276762, -0.0023618529085069895, 0.007963047362864017, -0.012110691517591476, 0.043448444455862045, 0.042912572622299194, 0.01879836618900299, -0.02765095978975296, -0.010642403736710548, -0.00999400019645691, 0.04139069840312004, -0.01600111648440361, 0.009951130487024784, 0.007019914221018553, 0.0465564988553524, -0.07712259888648987, 0.02756522037088871, 0.06387586146593094, -0.043791402131319046, -0.015861790627241135, 0.03283819556236267, -0.06447603553533554, -0.00991897750645876, -0.02833687514066696, -0.01911988854408264, 0.021156199276447296, -0.05187234282493591, -0.0013825480127707124, 0.013246738351881504, -0.002447592094540596, 0.0029580097179859877, 0.008257776498794556, -0.029708705842494965, 0.02685786969959736, 0.024757254868745804, 0.0034804842434823513, -0.010428056120872498, 0.01065848022699356, 0.02720082737505436, -0.028765572234988213, 0.01576533354818821, 0.008713267743587494, -0.03753242641687393, 0.04096200317144394, -0.033802762627601624, -0.011885625310242176, -0.00036707185790874064, -0.004930016119033098, 0.043276965618133545, -0.004211948718875647, 0.013043107464909554, -0.018230341374874115, 0.05976036936044693, 0.009768933989107609, 0.0021193709690123796, -0.0009297367068938911, -0.001914400258101523, 0.021852832287549973, -0.012185713276267052, 0.0466851070523262, -0.021306242793798447, -0.008038070052862167, -0.030801882967352867, 0.06610508263111115, 0.05920306220650673, -0.06524769216775894, -0.03654642403125763, 0.0455704964697361, 0.021799243986606598, 0.042805399745702744, -0.009870749898254871, 0.00947420485317707, -0.0006524233031086624, 0.07485050708055496, -0.042976878583431244, -0.03270958364009857, -0.012496518902480602, -0.002762416610494256, -0.0439414456486702, 0.030566100031137466, 0.05410156771540642, -0.0002476730151101947, 0.07759416848421097, 0.004517395049333572, 0.025293126702308655, -0.015797486528754234, -0.010937133803963661, 0.015015114098787308, 0.06113220006227493, 0.061646636575460434, -0.020513154566287994, -0.04968598857522011, -0.030780447646975517, -0.0034536905586719513, 0.009656401351094246, -0.02765095978975296, 0.010529871098697186, -0.018123168498277664, 0.00037845910992473364, 0.01132831908762455, 0.04175509139895439, 0.03511028736829758, 0.0459563247859478, -0.010744219645857811, 0.005235462915152311, 0.021049024537205696, -0.00013781939924228936, 0.004782651551067829, 0.0236640777438879, 0.03577476739883423, 0.017587296664714813, -0.01363256573677063, 0.0005603204481303692, 0.03622490167617798, -0.057574015110731125, 0.008697191253304482, -0.016762055456638336, -0.017544426023960114, 0.02810109220445156, -0.010170837864279747, 0.026193389669060707, -0.0005506077432073653, 0.021906418725848198, -0.01851971261203289, 0.057531144469976425, 0.039611607789993286, -0.011081818491220474, -0.015111571177840233, -0.00811845064163208, 0.005200630985200405, 0.021520592272281647, -0.017019271850585938, 0.011842755600810051, 0.019902260974049568, 0.03742525354027748, -0.029301444068551064, -0.01625833474099636, -0.025421734899282455, 0.012282170355319977, 0.022120768204331398, -0.025957606732845306, -0.01636550948023796, -0.001997460378333926, -0.0029204986058175564, 0.0023457766510546207, 0.034445807337760925, -0.007228903938084841, 0.030651839450001717, -0.0457419753074646, 0.025228820741176605, -0.014682874083518982, 0.03234519064426422, -0.04235526919364929, 0.047713980078697205, 0.011478363536298275, 0.043662793934345245, -0.028486918658018112, 0.003590337699279189, 0.06571925431489944, -0.001240542042069137, -0.03701798990368843, 0.0001644455041969195, -0.029301444068551064, -0.05002894625067711, 0.03626776859164238, 0.01334319543093443, -0.00818275474011898, 0.003826121101155877, -0.009586737491190434, 0.019398542121052742, -0.0016638804227113724, 0.00452275387942791, -0.0009906920604407787, 0.012303605675697327, 0.03763959929347038, -0.001154802623204887, 0.016633445397019386, 0.017480121925473213, -0.03590337932109833, 0.03243093192577362, 0.007486122194677591, -0.05187234282493591, 0.04166935384273529, 0.008595375344157219, -0.038368385285139084, -0.015465245582163334, -0.026321997866034508, 0.014800765551626682, -0.0117462994530797, 0.007352154236286879, 0.006580499466508627, -0.028744136914610863, 0.029194269329309464, -0.013128846883773804, 0.11617690324783325, 0.0005998409469611943, -0.07776564359664917, -0.035174593329429626, 0.002147504361346364, -0.008070222102105618, -0.017115728929638863, -0.043984316289424896, 0.005133647006005049, 0.015165157616138458, 0.014554264955222607, -0.03536750748753548, -0.0075718616135418415, 0.02782243862748146, -0.020448848605155945, 0.021895701065659523, -0.018358951434493065, 0.016676316037774086, -0.03129488602280617, -0.04263392090797424, -0.05405869707465172, 0.005669518373906612, -0.05500183254480362, 0.018187472596764565, -0.01828392967581749, -0.061518024653196335, 0.05577348545193672, 0.0045334710739552975, -0.0073896655812859535, 0.03277388960123062, 0.03798255696892738, 0.020448848605155945, 0.019955847412347794, 0.034703027456998825, -0.017233621329069138, 0.00711101246997714, 0.000886866997461766, -0.015883225947618484, 0.021220503374934196, -0.024049904197454453, 0.015615290030837059, -0.005599854979664087, 0.06083210930228233, 0.021574178710579872, -0.0011534630320966244, -0.05954601988196373, 0.00899192038923502, -0.0453990176320076, 0.03249523788690567, 0.003201831132173538, 0.00014041502436157316, -0.0031857548747211695, 0.04016891494393349, -0.008070222102105618, 0.03714659810066223, -0.0028160037472844124, 0.03592481091618538, -0.02760808914899826, -0.02250659465789795, -0.0015754617052152753, 0.0029446128755807877, -0.00688594626262784, 0.01992369443178177, -0.005117570981383324, -0.024435732513666153, 0.0006614661542698741, 0.006548347417265177, -0.007432535290718079, 0.007368230726569891, -0.030823318287730217, 0.048314157873392105, -0.006580499466508627, 0.03318115323781967, -0.02222794108092785, -0.007266414817422628, -0.0459563247859478, -0.016612010076642036, 0.00446916650980711, -0.0458705835044384, 0.023985600098967552, 0.013246738351881504, -0.018144601956009865, -0.02769382856786251, -0.024650080129504204, -0.009790368378162384, -0.002404722385108471, -0.02000943385064602, -0.00579276867210865, -0.006542988587170839, -0.014500677585601807, -0.047842592000961304, 0.01126401498913765, -0.0045602647587656975, 0.006671597715467215, 0.026707826182246208, -0.02807965688407421, -0.0231710746884346, 0.02784387394785881, 0.006751978304237127, -0.053415652364492416, -0.06974901258945465, 0.013921936973929405, -9.189355296257418e-06, -0.026557782664895058, -0.0022238658275455236, 0.02687930501997471, 0.03163784369826317, -0.08243843913078308, 0.03718946874141693, -0.01098536141216755, 0.02237798646092415, -0.006639445666223764, -0.005350674968212843, -0.0024207986425608397, 0.03309541195631027, 0.009377747774124146, 0.008740060962736607, 0.0027892100624740124, 0.00938846543431282, 0.021595614030957222, -0.05410156771540642, -0.010208348743617535, -0.026000475510954857, 0.016333358362317085, 0.029280008748173714, 0.000896914629265666, 0.0006159170879982412, -0.011596255004405975, -0.008488201536238194, 0.024328557774424553, 0.010872828774154186, 0.006821641698479652, 0.04241957142949104, -0.0077808513306081295, -0.001492401584982872, -0.015197310596704483, 0.0016826358623802662, -0.02039526216685772, -0.01149979792535305, 0.011081818491220474, -0.0007642864366061985, -0.03695368394255638, 0.019205627962946892, 0.011982082389295101, -0.0232782494276762, 0.042569614946842194, 0.02239941991865635, 0.003400103421881795, 0.007743340451270342, 0.07146380096673965, -0.01402911078184843, -0.047628242522478104, -0.01662272773683071, 0.02818683162331581, -0.038968563079833984, -0.03170214593410492, -0.03568902984261513, 0.028958486393094063, 0.0236212071031332, -0.02009517326951027, 0.030115967616438866, 0.02679356560111046, -0.03240949660539627, 0.034788765013217926, -0.01000471692532301, 0.01172486413270235, 0.011049666441977024, -0.03326689079403877, -0.004171757958829403, -0.02696504443883896, 0.01593681238591671, 0.0117570161819458, -0.029622966423630714, -0.06974901258945465, 0.017019271850585938, 0.018551865592598915, -0.02097400277853012, 0.029301444068551064, 0.016901381313800812, 0.03753242641687393, 0.0023350592236965895, -0.016976403072476387, -0.0470280647277832, 0.024950169026851654, -0.005991041194647551, -0.048614244908094406, -0.01746940426528454, -0.0008527052123099566, -0.02144557051360607, -0.018894823268055916, -0.009667118079960346, 0.008445331826806068, -0.02805822156369686, -0.020084457471966743, -0.0032741737086325884, -0.039482999593019485, 0.013407500460743904, -0.009640324860811234, -0.015754615887999535, 0.00828992947936058, -0.03646068274974823, -0.018680473789572716, 0.007491481024771929, -0.020963285118341446, 0.0453990176320076, 0.00415032310411334, -0.006425097119063139, 0.012410779483616352, 0.030630404129624367, -0.01813388429582119, -0.016697749495506287, -0.030266011133790016, 0.035174593329429626, 0.0010824600467458367, 0.01683707721531391, -0.015315202064812183, -0.020877545699477196, 0.011081818491220474, 0.0031830756925046444, 0.0027865308802574873, -0.007175317034125328, -0.0021689392160624266, 7.966899283928797e-05, -0.005171158351004124, 0.010342316702008247, 0.03650355339050293, 0.034767329692840576, 0.02108117751777172, -0.00794697180390358, -0.000952511269133538, -0.006151802837848663, 0.01744796894490719, 0.028979919850826263, -0.04001886770129204, 0.039161473512649536, 0.0034831634256988764, -0.003512636525556445, 0.006955609656870365, -0.017072860151529312, -0.015861790627241135, -0.0015392903005704284, -0.01166056003421545, -0.03296680375933647, -0.016762055456638336, -0.06361864507198334, 0.014843635261058807, -0.026129085570573807, 0.017287207767367363, -0.021574178710579872, -0.034638721495866776, 0.02325681410729885, -0.016290487721562386, -0.03315971791744232, -0.0020898981019854546, 0.007823721505701542, 0.01373974047601223, -0.002810644917190075, 0.0029901620000600815, -0.03281676024198532, 0.031101970002055168, -0.024564340710639954, -0.006082139443606138, 0.016226183623075485, 0.03699655458331108, -0.01360041368752718, 0.007630807347595692, -0.006269694305956364, -0.02732943743467331, 0.03176645189523697, 0.02357833832502365, -0.04111204668879509, -0.05067199096083641, -0.03191649541258812, -0.01348252221941948, -0.03320258483290672, -0.0009545207722112536, 0.05020042508840561, 0.007748699281364679, -0.052686866372823715, 0.00279456889256835, -0.04224809259176254, -0.053029824048280716, 0.010733501985669136, -0.012946650385856628, 0.007041349075734615, -0.00928129069507122, -0.025293126702308655, -0.024049904197454453, -0.05847427621483803, -0.00026693090330809355, -0.05071486160159111, 0.017501557245850563, 0.038582734763622284, -0.0007884006481617689, -0.007845155894756317, -0.005326560698449612, 0.0118641909211874, -0.034638721495866776, 0.03821834176778793, 0.0015205348609015346, 0.02105974219739437, 0.02347116358578205, -0.0068377177231013775, 0.0228066835552454, -0.01559385471045971, -0.017823079600930214, -0.02026665210723877, -0.03592481091618538, 0.02028808742761612, -0.03740381821990013, -0.02261376939713955, -0.012903780676424503, -0.0009371049236506224, 0.0033652717247605324, 0.029601531103253365, 0.03168071061372757, -0.008627528324723244, 0.02728656679391861, -0.008332799188792706, 0.004980923607945442, 0.015208027325570583, -0.020041586831212044, -0.028294004499912262, 0.03551755100488663, -0.014811483211815357, 0.006848435383290052, -0.020384544506669044, 0.002337738638743758, 0.047799721360206604, -0.011628407053649426, -0.009200910106301308, 0.05071486160159111, -0.0017911498434841633, -0.004544188734143972, -0.04985746741294861, -0.00026173965306952596, 0.013439652509987354, -0.006960968486964703, 0.010208348743617535, 0.00803271122276783, 0.030673272907733917, 0.010208348743617535, 0.01183203887194395, -0.0005489331670105457, 0.01864832080900669, 0.021788528189063072, -0.008670398034155369, -0.03491737321019173, 0.024842994287610054, -0.02103830687701702, 0.004185155034065247, 0.034831635653972626, 0.034874506294727325, -0.038539864122867584, 0.005007717292755842, -0.006569782271981239, 0.029322877526283264, -0.016569141298532486, -0.021049024537205696, -0.021852832287549973, -0.010578099638223648, -0.029987357556819916, 0.0031268091406673193, 0.02105974219739437, 0.028486918658018112, -0.007105653639882803, -0.03168071061372757, -0.006671597715467215, 0.009908260777592659, -0.016612010076642036, 0.005088097881525755, -0.025614649057388306, 0.06696248054504395, -0.0004966857377439737, -0.006478684023022652, -0.02657921612262726, -0.012850194238126278, 0.004278932232409716, -0.03755386173725128, 0.0018072259845212102, -0.02237798646092415, 0.015411659143865108, -0.007330719381570816, 0.01600111648440361, 0.015400941483676434, 0.043105486780405045, 0.016954967752099037, 0.012003517709672451, 0.03984738886356354, -0.004394144751131535, 0.0029338954482227564, -0.006248259451240301, 0.019741499796509743, 0.01387906726449728, -0.007116370834410191, -0.02302103117108345, 0.03772534057497978, 0.021499156951904297, 0.024049904197454453, -0.009329519234597683, -0.0224851593375206, -0.0071270884945988655, -0.014907939359545708, -0.01890553906559944, -0.023985600098967552, -0.01879836618900299, 0.0023846272379159927, 0.020020151510834694, 0.015068701468408108, -0.01166056003421545, -0.04891433194279671, -0.024542905390262604, 0.00016251971828751266, 0.007314643356949091, -0.017319360747933388, 0.02054530568420887, -0.04994320496916771, 0.03159497305750847, -0.003954730462282896, -0.0224851593375206, -0.020513154566287994, -0.010395903140306473, 0.005487322341650724, 0.016740620136260986, 0.024221383035182953, -0.006467966828495264, 0.017308643087744713, -0.021799243986606598, -0.015604572370648384, 0.0001175567667814903, 0.029730141162872314, -0.03491737321019173, 0.002909781178459525, -0.0005328570259734988, 0.015090135857462883, -0.011960648000240326, -0.009533151052892208, -0.010915698483586311, 0.021992158144712448, 0.012121409177780151, 0.02015947923064232, -0.005883866921067238, -0.0030089174397289753, -0.006296487990766764, 0.014372068457305431, -0.004592417273670435, 0.03823977708816528, -0.0029767651576548815, -0.02747948095202446, 0.02325681410729885, 0.006660880520939827, -0.025614649057388306, -0.008756137453019619, -0.034981679171323776, -0.038175471127033234, 0.05607357248663902, 0.05577348545193672, 0.031037665903568268, 0.013471804559230804, 0.00354210939258337, -0.025378866121172905, 0.0231067705899477, 0.004067263100296259, 0.0232782494276762, -0.004656721837818623, -0.019452128559350967, 0.009651042520999908, 0.011992800049483776, -0.01559385471045971, 0.01059417612850666, -0.0054498109966516495, -0.0010020793415606022, -0.0023806083481758833, 0.012228582985699177, -0.001312884734943509, -0.01657985895872116, 0.021134763956069946, -0.02735087089240551, 0.052686866372823715, -0.014382786117494106, -0.009704628959298134, -0.03348124027252197, 0.0235140323638916, 0.04130496084690094, -0.019709346815943718, 0.02754378505051136, 0.057359665632247925, 0.020534588024020195, 0.013503956608474255, 0.0075182742439210415, 0.016858510673046112, -0.004447731655091047, 0.002285491209477186, -0.024414297193288803, -0.023921296000480652, 0.03808973357081413, 0.018144601956009865, -0.0002496825472917408, -0.00043439067667350173, 0.05633079260587692, 0.011371188797056675, 0.04985746741294861, 0.009956489317119122, 0.007255697622895241, -0.010888905264437199, 0.007711187936365604, 0.034617286175489426, 0.009120529517531395, 0.017190750688314438, 0.026514912024140358, 0.0035394299775362015, -0.04053330421447754, 0.0018246418330818415, 0.013932653702795506, 0.0029874825850129128, -0.0014468525769189, 0.0019947809632867575, 0.006135726347565651, 0.03153066709637642, -0.015154440887272358, -0.03262384608387947, 0.013225303962826729, -0.020534588024020195, 0.02732943743467331, -0.004391465336084366, 0.010219065472483635, 0.00441022077575326, 0.007019914221018553, 0.043234098702669144, 0.03823977708816528, 0.030051663517951965, -0.03802542760968208, 0.0465564988553524, -0.0015821600100025535, 0.015015114098787308, 0.016933534294366837, 0.019430693238973618, -0.009040148928761482, -0.033802762627601624, -0.024349993094801903, 0.034317199140787125, 0.014897222630679607, 0.010010075755417347, -0.014104132540524006, 0.024500036612153053, -0.00521134864538908, 0.04087626188993454, 0.01391121931374073, -0.01841253787279129, -0.005749898962676525, 0.011167557910084724, 0.02101687341928482, 0.005439093802124262, -0.007695111911743879, -0.006055345758795738, -0.018916256725788116, -0.030201707035303116, 0.024821558967232704, -0.008643603883683681, 0.0005482633132487535, 0.024821558967232704, -0.014532829634845257, -0.01638694480061531, 0.00890618097037077, 0.0026003154926002026, 0.03219514712691307, 0.03770390525460243, -0.01864832080900669, 0.062289681285619736, 0.008027352392673492, 0.02257089875638485, 0.0034590493887662888, 0.014929374679923058, -0.021391982212662697, 0.014489959925413132, 0.03695368394255638, -0.03367415443062782, 0.007234262768179178, 0.017865950241684914, 0.013900501653552055, -0.008723984472453594, 0.030780447646975517, 0.010663839057087898, -0.004319122526794672, 0.009774292819201946, 0.005964247509837151, 0.018959127366542816, 0.030930491164326668, 0.024199947714805603, 0.019044866785407066, 0.04151931032538414, 0.015143723227083683, -0.007019914221018553, 0.019291367381811142, 0.04136926680803299, 0.031209144741296768, 0.008482842706143856, 0.016547705978155136, -0.006875229068100452, -0.001832679845392704, -0.028937051072716713, 0.05560200661420822, -0.0026552423369139433, -0.004798727575689554, -0.011135405860841274, -0.0469423271715641, 0.009618889540433884, 0.019602172076702118, -0.009538508951663971, -0.026429172605276108, -0.013311043381690979, 0.015133005566895008, -0.014436373487114906, -0.02254946529865265, -0.003030352294445038, 0.0462992824614048, -8.318564505316317e-05, 0.010733501985669136, 0.008311363868415356, 0.019044866785407066, -0.023814121261239052, -0.02833687514066696, 0.0004132907488383353, -0.01610829122364521, -0.01657985895872116, -0.030244575813412666, -0.010428056120872498, -0.0111246882006526, 0.01828392967581749, -0.01576533354818821, 0.0011367170372977853, 0.011960648000240326, -0.008445331826806068, 0.01048700138926506, 0.01766231842339039, 0.0015178554458543658, 0.0219707228243351, 0.010637045837938786, -0.018809083849191666, 0.012764454819262028, 0.017115728929638863, 0.03785394877195358, 0.026257693767547607, -0.003858273383229971, -0.03202366828918457, -0.03245236724615097, -0.017029989510774612, 0.028636962175369263, -0.02741517685353756, 0.01881979964673519, 0.02728656679391861, -0.014607852324843407, 0.0004772603861056268, -0.026429172605276108, -0.03534607216715813, 0.012089257128536701, 0.004804086405783892, -0.021681353449821472, 0.03176645189523697, 0.005824921187013388, 0.010953209362924099, 0.014972244389355183, -0.006092856638133526, 0.007068142760545015, 0.0116927120834589, 0.018401820212602615, 0.002104634651914239, -0.008525712415575981, -0.0222922470420599, 0.03789681941270828, -0.008584658615291119, -0.029794445261359215, 0.043405577540397644, -0.000598836166318506, 0.0013343195896595716, -0.012378627434372902, 0.01600111648440361, 0.004938053898513317, 0.0002615721896290779, 0.04109061136841774, -0.012785889208316803, -0.013053825125098228, 0.05963175743818283, 0.03365271911025047, -6.426269101211801e-05, 0.011821321211755276, 0.039290085434913635, -0.014532829634845257, -0.0051095327362418175, -0.019173474982380867, -0.023942729458212852, 0.018809083849191666, 0.039825957268476486, -0.0013959447387605906, -0.03367415443062782, 0.02284955233335495, -0.0049166190437972546, 0.0030919774435460567, -0.01617259532213211, -0.04267679154872894, 0.011306884698569775, 0.0059749651700258255, 0.008439972996711731, -0.016890663653612137, 0.026536347344517708, -0.021842114627361298, 0.0232782494276762, 0.01002615224570036, 0.014329198747873306, 0.013696870766580105, 0.010460208170115948, 0.004061904735863209, -0.04994320496916771, 0.02015947923064232, 0.02278524823486805, 0.05834566801786423, -0.0018005275633186102, -0.02724369801580906, 0.026729261502623558, 0.04096200317144394, 0.015100853517651558, -0.013268173672258854, -0.013010955415666103, 0.012239300645887852, 0.04942876845598221, -0.0220778975635767, 0.03778964653611183, -0.009141964837908745, -0.0024623286444693804, -0.017930254340171814, 0.0221850723028183, 0.014436373487114906, 0.025764692574739456, 0.008161320351064205, 0.0234925989061594, 0.007314643356949091, -0.06614795327186584, 0.012346475385129452, 0.004798727575689554, 0.014243459329009056, -0.0230424664914608, -0.0005258237360976636, 0.017512274906039238, -0.02075965516269207, 0.006634086836129427, -0.01640838012099266, 0.005272973794490099, 0.0005328570259734988, 0.022035028785467148, 0.024092774838209152, -0.0446702316403389, -0.00693953363224864, 0.030201707035303116, 0.023814121261239052, -0.014661438763141632, -0.029923053458333015, 0.006221465766429901, 0.010160120204091072, 0.0452275387942791, 0.00564808351919055, 0.0015098174335435033, 0.0013892463175579906, -0.023599771782755852, 0.03191649541258812, -0.04081195965409279, -0.011799885891377926, -0.04874285310506821, -0.034638721495866776, -0.01587250828742981, 0.01798384077847004, 0.03590337932109833, 0.028808441013097763, -0.02739374153316021, -0.0442844033241272, -0.007823721505701542, 0.033781327307224274, 0.006821641698479652, -0.08278139680624008, 0.0021850152406841516, -0.019666476175189018, -0.03251666948199272, -0.006162520032376051, -0.0027249054983258247, -0.013407500460743904, 0.00033341243397444487, 0.009206268936395645, -0.00809701532125473, -0.011017514392733574, -0.03781107813119888, -0.017522992566227913, 0.0119177782908082, -0.030030228197574615, -0.0043512750416994095, -0.03725377470254898, -0.002268075244501233, -0.006751978304237127, -0.02357833832502365, 0.02807965688407421, 0.030266011133790016, 0.017930254340171814, 0.01572246477007866, -0.00795768853276968, 0.030437489971518517, -0.000923038343898952, 0.03543180972337723, -0.00997256487607956, -0.005556985270231962, 0.002186354948207736, -0.02788674272596836, 0.01373974047601223, -0.004198551643639803, -0.018230341374874115, -0.021595614030957222, 0.007287849672138691, 0.009286649525165558, 0.031166275963187218, 0.005364071577787399, -0.026407737284898758, -0.030351750552654266, 0.01625833474099636, 0.015711747109889984, -0.019409257918596268, -0.016011834144592285, 0.011649842374026775, -0.0226995088160038, -0.02278524823486805, 0.006301846820861101, 0.03210940957069397, -0.006923457141965628, -0.015990400686860085, -0.03710373118519783, 0.00955994427204132, -0.010224424302577972, -0.007936254143714905, 0.006709108594805002, -0.010513795539736748, -0.0062107485719025135, 0.019430693238973618, 0.0028294005896896124, -0.003309005405753851, 0.008338158018887043, -0.017908819019794464, 0.0009705969132483006, 0.0231710746884346, 0.008638245053589344, 0.008584658615291119, 0.017297925427556038, 0.024178514257073402, -0.00043840971193276346, -0.008252418600022793, -0.017480121925473213, -0.011188993230462074, -0.001888946397230029, 0.015025831758975983, 0.034145720303058624, 0.008943691849708557, 0.013246738351881504, -0.04908581078052521, -0.019130606204271317, -0.02775813452899456, 0.03255954012274742, -0.00882044155150652, -0.028594093397259712, 0.017255056649446487, 0.025528909638524055, -0.06850578635931015, -0.003692153375595808, 0.002530652331188321, -0.01692281663417816, 0.016987120732665062, 0.006735902279615402, -0.0057338229380548, 0.04029752314090729, 0.025314560160040855, 0.026536347344517708, -0.0038180830888450146, -0.000984663492999971, 0.013921936973929405, -0.019795086234807968, -0.0031268091406673193, -0.007732622791081667, 0.029194269329309464, 0.006403662264347076, -0.013418217189610004, -0.014457807876169682, 0.0012901101727038622, -0.02685786969959736, 0.04938590154051781, -0.0231067705899477, -0.008793648332357407, -0.0018179434118792415, 0.001619671005755663, 0.03802542760968208, -0.03727521002292633, -0.011510515585541725, 0.007421817630529404, 0.016976403072476387, 0.01591537706553936, -0.012914498336613178, 0.0006919438019394875, -0.019291367381811142, 0.025443170219659805, 0.0011246599024161696, 0.02805822156369686, 0.009849314577877522, 0.0015620648628100753, -0.0013658020179718733, 0.015776051208376884, -0.04096200317144394, -0.038475558161735535, -0.05954601988196373, 0.014779331162571907, 0.008557864464819431, 0.03699655458331108, -0.01368615310639143, 0.006403662264347076, -0.007019914221018553, 0.0006812263745814562, -0.024585776031017303, 0.0221422016620636, -0.05448739603161812, 0.021692071110010147, 0.007443252485245466, -0.004206589888781309, 0.0056159314699471, 0.021895701065659523, 0.02765095978975296, 0.008863311260938644, 0.025400299578905106, 0.009988641366362572, -0.05144364386796951, -0.007019914221018553, -0.0019117208430543542, 0.005010396707803011, -0.02690074034035206, -0.024907298386096954, 0.0006092186667956412, 0.03731807693839073, -0.0236640777438879, 0.0008125148597173393, 0.011371188797056675, -0.030523229390382767, 0.01098536141216755, 0.023814121261239052, -0.04269822686910629, -0.012678715400397778, -0.043791402131319046, 0.01042269729077816, 0.010674556717276573, -0.018701909109950066, -0.02374981716275215, -0.008965127170085907, -0.03125201538205147, -0.016890663653612137, 0.0033036465756595135, -0.024135643616318703, 0.010824600234627724, -0.020577458664774895, -0.01328960806131363, 0.0225923340767622, 0.05032903328537941, -0.022120768204331398, 0.005626648664474487, 0.012250018306076527, -0.02257089875638485, 0.006521553732454777, -0.008252418600022793, 0.006484042853116989, 0.011971364729106426, 0.005289049819111824, -0.011703429743647575, -0.02698647975921631, -0.00446916650980711, -0.005985682364553213, -0.0059320954605937, -0.015272332355380058, -0.02754378505051136, 0.026021910831332207, 0.02050243690609932, -0.004651363007724285, 0.02741517685353756, 0.003014276036992669, -0.034853070974349976, -0.006082139443606138, 0.01922706328332424, 0.007169958204030991, 0.006023193709552288, -0.0034349351190030575, -0.017383664846420288, -0.026450607925653458, -0.012764454819262028, -0.024157078936696053, -0.0007535690092481673, 0.006634086836129427, -0.003842197358608246, 0.024135643616318703, 0.020063022151589394, 0.00935631338506937, -0.019066302105784416, -0.0016705788439139724, 0.0025413697585463524, 0.0009156701271422207, -0.0034670874010771513, -0.009715346619486809, -0.007700470741838217, 0.025786127895116806, -0.010996079072356224, 0.03796112537384033, 0.021820679306983948, 0.004742461256682873, 0.04147643968462944, 0.015486680902540684, 0.018080297857522964, 0.0224637258797884, -0.03352411091327667, -0.034210022538900375, 0.02696504443883896, -0.000985333346761763, 0.022206507623195648, -0.007604013662785292, 0.033717021346092224, 0.008198831230401993, 0.018466126173734665, 0.017651600763201714, -0.03195936605334282, 0.005331919528543949, 0.012239300645887852, -0.012421497143805027, 0.007791568990796804, 0.03663216158747673, 0.03588194400072098, -0.031037665903568268, -0.014618569053709507, 0.009929695166647434, 0.01683707721531391, -0.00039353049942292273, -0.02302103117108345, -0.042805399745702744, -0.01860545203089714, -0.004994320683181286, 0.011628407053649426, 0.007534350734204054, 0.01860545203089714, -0.029322877526283264, -0.00685379421338439, 0.019312802702188492, -0.021831396967172623, 7.184024434536695e-05, -0.048271287232637405, -0.016547705978155136, 0.007593296468257904, 0.0047692544758319855, -0.009409899823367596, -0.0018407179741188884, -0.031144840642809868, 0.0033893859945237637, -0.004077980760484934, -0.031209144741296768, 0.021091895177960396, -0.013589696027338505, 0.024650080129504204, -0.0038368385285139084, -0.0064465319737792015, -0.02110261283814907, 0.011285449378192425, 0.026493476703763008, 0.008573940955102444, -0.01354682631790638, 0.01653698831796646, 0.030115967616438866, 0.0008232322870753706, 0.01768375374376774, 0.005744540598243475, 0.016890663653612137, 0.008386385627090931, 0.0013658020179718733, 0.015529550611972809, 0.009935053996741772, 0.03609628975391388, 0.013311043381690979, -0.005680236034095287, 0.020255936309695244, 0.0450131893157959, -0.009677835740149021, 0.012357192113995552, 0.01098536141216755, -0.007137805689126253, 0.009774292819201946, -0.015304484404623508, -0.007373589091002941, -0.034853070974349976, -0.008498919196426868, -0.008863311260938644, -0.03633207455277443, 0.00521134864538908, 0.011306884698569775, -0.009286649525165558, 0.008155961520969868, -0.008831159211695194, -0.0010871489066630602, -0.004182475619018078, -0.0004732413508463651, 0.02009517326951027, 0.025271691381931305], [0.04714743420481682, -0.015351821668446064, 0.03607785329222679, -0.02129342593252659, -0.055626265704631805, 0.02571483701467514, -0.023038437590003014, -0.002836982486769557, -0.00014703464694321156, 0.048560574650764465, -0.03363697603344917, -0.047233082354068756, 0.014409729279577732, 0.04344329982995987, -0.03552116081118584, 0.040231622755527496, 0.0003472627140581608, 0.022053522989153862, -0.010475424118340015, -0.030275419354438782, 0.016690021380782127, 0.02243892475962639, -0.00438394071534276, -0.011487102136015892, -0.003107298631221056, -0.011433574371039867, 0.007279803976416588, -0.02926909364759922, 0.04791823774576187, -0.0165722593665123, 0.04603405296802521, -0.032116781920194626, -0.008623355999588966, -0.05609731376171112, -0.01975182071328163, -0.032073959708213806, -0.02004087157547474, -0.03515717014670372, 0.024344520643353462, 0.012140143662691116, -0.007729439064860344, 0.06003697216510773, 0.012161554768681526, -0.0401245653629303, 0.017974691465497017, 0.025136735290288925, 0.036934297531843185, 0.0013295009266585112, -0.015105593018233776, 0.02933332696557045, 0.06765935570001602, 0.03954646363854408, 0.003294646507129073, -0.0013970800209790468, 0.03601361811161041, -0.002557298867031932, 0.027149386703968048, 0.02451580949127674, 0.06491871923208237, 0.010389778763055801, -0.009329925291240215, -0.03438636660575867, -0.02828417904675007, 0.017824813723564148, 0.02453722059726715, 0.0035248168278485537, 0.039139650762081146, 0.014495374634861946, -0.016015568748116493, -0.03057517670094967, -0.019163012504577637, 0.005178831052035093, 0.00944768637418747, -0.07095667719841003, -0.009233574382960796, -0.005673964973539114, -0.005834548734128475, -0.038176149129867554, 0.043785881251096725, 0.016722137108445168, -0.012696834281086922, 0.030832109972834587, -0.025243790820240974, 0.0040333326905965805, 0.009972261264920235, 0.02112213708460331, -0.027577610686421394, -0.009843793697655201, 0.007483210414648056, -0.011636980809271336, -0.03256641700863838, -0.041816048324108124, 0.017225300893187523, 0.02479415573179722, -0.0005382906529121101, 0.005130656063556671, 0.029654495418071747, -0.002936009084805846, -0.04671921208500862, 0.05733916163444519, 0.022610213607549667, 0.026399994269013405, 0.0721985250711441, 0.0519007183611393, 0.008436008356511593, -0.020276395604014397, -0.002612164942547679, 0.005722139962017536, 0.01656155474483967, -0.008805351331830025, 0.05117274075746536, -0.03605644032359123, -0.03036106377840042, 0.07121361047029495, 0.021796589717268944, -0.030168363824486732, 0.011326518841087818, 0.011583453044295311, -0.0046355221420526505, -0.02329537272453308, -0.012686128728091717, -0.02099367044866085, 0.023745007812976837, -0.06222091242671013, -0.005957663059234619, 0.011562041938304901, -0.01120875682681799, 0.003257177071645856, -0.0674024224281311, 0.023552305996418, 0.007884670048952103, -0.01875620149075985, 0.02911921590566635, 0.005620436742901802, 0.018477855250239372, 0.011958148330450058, 0.031046222895383835, -0.015887102112174034, -0.013671043328940868, -0.042651087045669556, 0.005979074165225029, 0.016657903790473938, 0.02706374228000641, 0.00496471906080842, -0.03417225554585457, 0.0584525428712368, -0.00650364812463522, 0.061535753309726715, 0.010255958884954453, 0.01767493598163128, -0.03663454204797745, -0.011540629900991917, -0.0010116785997524858, 8.74847755767405e-05, 0.015630166977643967, 0.0035836976021528244, 0.010678829625248909, 0.012118732556700706, 0.022053522989153862, 0.0038218970876187086, -0.002004622481763363, -0.029568850994110107, -0.06676008552312851, -0.028369823470711708, 0.032309483736753464, 0.02933332696557045, 0.019002430140972137, 0.01296447403728962, -0.04911726340651512, 0.011369341053068638, -0.015052065253257751, 0.023787830024957657, -0.014291968196630478, -0.034364957362413406, 0.008505593985319138, -0.014174206182360649, 0.038283202797174454, 0.02001946046948433, -0.01650802604854107, 0.04218003898859024, -0.020436979830265045, 0.037940625101327896, -0.03406520187854767, -0.0013388684019446373, -0.03654889762401581, 0.04586276412010193, 0.0165187306702137, -0.03196690231561661, 0.013199997134506702, -0.027663255110383034, -0.0041457414627075195, 0.003961069975048304, -0.021892940625548363, 0.009704620577394962, -0.04945984482765198, -0.009324572049081326, -0.008821409195661545, -0.007563502062112093, 0.009570800699293613, -0.01994452252984047, 0.03400096669793129, -0.02213916927576065, 0.04183746129274368, 0.005797079298645258, -0.030211186036467552, -0.01850997284054756, 0.006771288346499205, 0.008543063886463642, 0.017118245363235474, -0.0049834540113806725, 0.008082723245024681, -0.008398538455367088, -0.009800971485674381, 0.04813234880566597, -0.036891475319862366, 0.019034545868635178, 0.03759804740548134, -0.022032111883163452, -0.0018493913812562823, 0.040317267179489136, -0.040531378239393234, -0.017321651801466942, 0.02092943713068962, -0.0256291925907135, -0.06200680136680603, -0.028755225241184235, 0.03048953227698803, 0.022653037682175636, -0.019312892109155655, -0.04616251960396767, -0.005002188961952925, -0.004057419952005148, -0.03162432461977005, -0.014987831935286522, 0.024044763296842575, 0.009260338731110096, -0.012632600963115692, -0.048603396862745285, -0.03198831528425217, -0.015801455825567245, 0.0027366175781935453, -0.0029065688140690327, 0.0395892858505249, 0.03301605209708214, 0.007493915967643261, -0.018981019034981728, -0.0063323588110506535, -0.01641167514026165, 0.017963986843824387, -0.010769827291369438, 0.020265689119696617, -0.010882236063480377, 0.04483502730727196, -0.07626665383577347, 0.044963493943214417, 0.0767805203795433, -0.040381502360105515, -0.017856931313872337, 0.025029677897691727, -0.06200680136680603, -0.011433574371039867, -0.03614208474755287, -0.01624038629233837, 0.01861702837049961, -0.004496349487453699, -0.00028921832563355565, 0.017814109101891518, -0.003182237735018134, -0.010716299526393414, 0.017942575737833977, -0.026721162721514702, 0.02102578617632389, 0.014291968196630478, 0.0087250592187047, -0.0009327248553745449, 0.01750364527106285, 0.015030654147267342, -0.01862773299217224, 0.003407055279240012, 0.019644765183329582, -0.041644759476184845, 0.03661313280463219, -0.0233381949365139, 0.0010752431116998196, -0.006048660725355148, -0.004030656069517136, 0.010325545445084572, -0.002836982486769557, -0.005518733523786068, -0.016036979854106903, 0.061407286673784256, -0.007044280879199505, 0.0036827244330197573, -0.008585886098444462, -0.003974451683461666, 0.017182478681206703, 0.005946957506239414, 0.03549974784255028, -0.01647590845823288, 0.0021598536986857653, -0.015630166977643967, 0.061707042157649994, 0.0442783385515213, -0.061535753309726715, -0.048689041286706924, 0.05121556296944618, 0.021507538855075836, 0.03901118412613869, -0.012589778751134872, 0.0063216532580554485, -0.02117566578090191, 0.09977613389492035, -0.040445733815431595, -0.03890412673354149, -0.03710559010505676, 0.0033615564461797476, -0.04200875014066696, 0.017353767529129982, 0.04091678187251091, -0.0024944033939391375, 0.07412553578615189, 0.005882723722606897, 0.0199016984552145, -0.01753576286137104, 0.00038172132917679846, 0.011594158597290516, 0.06663161516189575, 0.05417030677199364, -0.03481459245085716, -0.06885837763547897, -0.04205157235264778, -0.015019948594272137, 0.007381507195532322, -0.03254500404000282, -0.0024663012009114027, -0.011829681694507599, 0.003032359527423978, 0.007242334540933371, 0.047532837837934494, 0.02220340259373188, 0.03860437124967575, -0.004424086771905422, -0.0006215935572981834, 0.0292262714356184, 0.004857663065195084, 0.02344525046646595, 0.0256291925907135, 0.02798442356288433, 0.04594840854406357, 0.005162772722542286, -0.002181264804676175, 0.02466568909585476, -0.04355035722255707, 0.01636885292828083, -0.0292262714356184, -0.00044863129733130336, 0.01856349967420101, -0.0063323588110506535, 0.0007708027842454612, 0.002262894995510578, 0.024301698431372643, -0.015662284567952156, 0.05661118030548096, 0.04331483319401741, -0.000889233429916203, -0.004892456345260143, 0.0070335753262043, -0.015640873461961746, 0.03288758546113968, -0.012654012069106102, 0.006359122693538666, 0.0123756667599082, 0.033529918640851974, -0.03173138201236725, -0.023552305996418, -0.029504617676138878, -0.009271044284105301, 0.01518053188920021, -0.024237465113401413, -0.00936739519238472, -0.01754646934568882, 0.005395619198679924, 0.0028798046987503767, 0.042736731469631195, -0.0037924565840512514, 0.033315807580947876, -0.03136739134788513, 0.019612647593021393, -0.01868126168847084, 0.03526422753930092, -0.03190267086029053, 0.040317267179489136, 0.014324084855616093, 0.032266661524772644, -0.02468710020184517, -0.0027205590158700943, 0.0793926864862442, -0.009795618243515491, -0.027877366170287132, -0.004003892187029123, -0.020693913102149963, -0.037084177136421204, 0.03631337359547615, -0.011487102136015892, -0.02909780479967594, 0.013435520231723785, 0.004367882385849953, 0.02241751365363598, -0.01104817260056734, 0.00019554435857571661, -0.017321651801466942, 0.003380291396752, 0.026678340509533882, 0.0073065678589046, 0.02586471475660801, 0.008532358333468437, -0.05202918499708176, 0.028519703075289726, 0.015009243041276932, -0.050958625972270966, 0.042715318500995636, 0.0258433036506176, -0.02924768254160881, -0.041708994656801224, -0.03541410341858864, 0.007172747980803251, -0.004533818922936916, -0.011583453044295311, 0.022824326530098915, -0.04312213137745857, 0.03603503108024597, -0.019452063366770744, 0.09309584647417068, -0.0056364950723946095, -0.07185594737529755, -0.034557659178972244, 0.004354500211775303, -0.016818488016724586, 0.005366179160773754, -0.04342189058661461, -0.013349875807762146, 0.01518053188920021, 0.03263065218925476, -0.03038247488439083, -0.0018038925481960177, 0.03265206143260002, -0.01624038629233837, 0.022610213607549667, -0.026635518297553062, 0.017889047041535378, -0.035992205142974854, -0.0442783385515213, -0.040231622755527496, -0.003851337358355522, -0.04322918877005577, 0.0304252989590168, -0.04213721677660942, -0.0684729814529419, 0.04479220509529114, 0.018445737659931183, -0.016582965850830078, 0.02830559015274048, 0.030746465548872948, 0.03438636660575867, 0.01298588514328003, 0.05618295818567276, -0.0185956172645092, 0.004151094239205122, 0.015341116115450859, -0.028905102983117104, 0.015105593018233776, -0.02335960604250431, 0.013553282245993614, 0.016904132440686226, 0.05703940615057945, -0.001292031374759972, -0.00467834435403347, -0.08581604063510895, -0.006963988766074181, -0.054512884467840195, 0.03200972452759743, -0.0035114348866045475, -0.015865691006183624, -0.022567391395568848, 0.05074451491236687, 0.010293428786098957, 0.015405349433422089, -0.010293428786098957, 0.026399994269013405, -0.04361458867788315, -0.035992205142974854, -0.012589778751134872, 0.003503405721858144, -0.00671240733936429, 0.022567391395568848, -0.019527003169059753, -0.03380826488137245, 0.025436490774154663, -0.005711434409022331, -8.451564644929022e-05, 0.016957661136984825, -0.02348807267844677, 0.030061308294534683, -0.013242819346487522, 0.028412645682692528, -0.013638926669955254, -0.007065691985189915, -0.06115035340189934, -0.019409241154789925, 0.015876395627856255, -0.04301507771015167, 0.017032600939273834, 0.02918344922363758, -0.005502675194293261, -0.034643303602933884, -0.015801455825567245, -0.013510460034012794, 0.00026211977819912136, -0.023059848695993423, 0.014142089523375034, -0.011058878153562546, -0.011294401250779629, -0.037962038069963455, 0.006621409673243761, -0.01344622578471899, 0.010432600975036621, 0.026335760951042175, -0.0069853998720645905, -0.028455469757318497, 0.026635518297553062, 0.010127492249011993, -0.041816048324108124, -0.06611774861812592, 0.01281459629535675, 0.00728515675291419, -0.03141021355986595, -0.009105107747018337, 0.0449206717312336, 0.0346861258149147, -0.08110558241605759, 0.029868606477975845, -0.014902186580002308, 0.02239610254764557, -0.020768852904438972, -0.008869584649801254, 0.0024743303656578064, 0.035778094083070755, 0.017257416620850563, 0.02006228268146515, 0.0015255471225827932, -0.007167395204305649, 0.02575765922665596, -0.04663356766104698, -0.018178097903728485, -0.018081748858094215, 0.014388318173587322, 0.040617022663354874, -0.003947687800973654, 0.012043793685734272, -0.006953283213078976, -0.007311920635402203, 0.017236005514860153, 0.022610213607549667, -0.004825546406209469, 0.04800388216972351, -0.008960582315921783, -0.012846712954342365, -0.024986855685710907, 0.006364475470036268, -0.03530704975128174, -0.009661798365414143, 0.014077856205403805, 0.0050851572304964066, -0.0306394100189209, 0.026549873873591423, 0.015822868794202805, -0.01624038629233837, 0.028498291969299316, 0.024173231795430183, 0.0025318730622529984, 0.015394643880426884, 0.07810801267623901, -0.0037335758097469807, -0.04543454200029373, -0.0042153275571763515, 0.028562525287270546, -0.03310169652104378, -0.024922622367739677, -0.027556199580430984, 0.032159604132175446, 0.026507049798965454, -0.014206322841346264, 0.0224603358656168, 0.017086127772927284, -0.0354355163872242, 0.03372262045741081, -0.007440387737005949, 0.027556199580430984, 0.004137712065130472, -0.03509293869137764, -0.0016540142241865396, -0.03731970116496086, 0.026057416573166847, 0.00881070364266634, -0.017921164631843567, -0.06474743038415909, 0.0074885631911456585, 0.005909488070756197, -0.02571483701467514, 0.014666663482785225, 0.008377127349376678, 0.018124571070075035, 0.005414354149252176, -0.016026273369789124, -0.03881848230957985, 0.020715324208140373, -0.005237712059170008, -0.03614208474755287, -0.01404573954641819, 0.01759999617934227, -0.036955710500478745, -0.01895960606634617, -0.0071299257688224316, -0.00473454874008894, -0.025372257456183434, -0.01868126168847084, 0.0032732354011386633, -0.05014500394463539, -0.00015757295477669686, -0.014463257044553757, 0.0005807784618809819, 0.015919217839837074, -0.02005157805979252, -0.011315813288092613, 0.026507049798965454, -0.020736735314130783, 0.03513576090335846, -0.01749294064939022, -0.01984817162156105, 0.019195130094885826, 0.019280774518847466, -0.0006041969754733145, -0.019612647593021393, -0.010892941616475582, 0.027256442233920097, 0.015105593018233776, 0.02914062701165676, -0.012621895410120487, -0.02453722059726715, -0.0036961063742637634, 0.014816542156040668, 0.00473454874008894, -0.004702432081103325, 0.01118734572082758, 0.0012893549865111709, 0.007884670048952103, 0.004549877252429724, 0.03832602500915527, 0.016722137108445168, 0.014581019058823586, -0.016636492684483528, 0.014891481027007103, -0.007317273411899805, 0.017910458147525787, 0.017064716666936874, -0.040509968996047974, 0.03305887430906296, 0.00616642227396369, -0.002127736806869507, 0.009163988754153252, -0.020436979830265045, -0.001386374467983842, -0.018178097903728485, -0.012322138994932175, -0.017835520207881927, -0.004774694796651602, -0.05978003516793251, 0.019280774518847466, -0.020115811377763748, 0.016186857596039772, -0.03036106377840042, -0.03663454204797745, 0.012172260321676731, 0.011433574371039867, -0.05057322606444359, 0.009062285535037518, 0.02096155285835266, -0.0023097319062799215, -0.0019711675122380257, 9.670580766396597e-06, -0.03472894802689552, 0.03858296200633049, -0.018306566402316093, -0.009329925291240215, 0.025308024138212204, 0.03485741466283798, -0.0028637463692575693, -0.012075910344719887, -0.00013373629190027714, -0.004766665864735842, 0.03498588129878044, 0.033465687185525894, -0.02571483701467514, -0.027427731081843376, -0.027898777276277542, -0.00929245539009571, -0.016914838925004005, -0.000992274726741016, 0.05515522137284279, 0.020158633589744568, -0.0347931794822216, -0.0010966543341055512, -0.027235031127929688, -0.049888066947460175, 0.00871970597654581, -0.013114352710545063, -0.001973843900486827, -0.0018975664861500263, -0.035606805235147476, 0.00038573594065383077, -0.054298773407936096, -9.947629223461263e-06, -0.05258587747812271, 0.007183453533798456, 0.032416537404060364, 9.752126788953319e-05, 3.9393238694174215e-05, -0.0023806565441191196, 0.019312892109155655, -0.02235328033566475, 0.05040193721652031, 0.0008163015590980649, 0.026399994269013405, 0.024986855685710907, -0.026507049798965454, 0.015758633613586426, -0.013531871140003204, -0.026699751615524292, -0.015105593018233776, -0.032031137496232986, 0.025051090866327286, -0.0350072905421257, -0.007820436730980873, -0.01989099383354187, -0.015672989189624786, 0.01171191968023777, 0.008414597250521183, 0.02907639369368553, -0.01761070266366005, 0.028412645682692528, -0.019537709653377533, 0.004980777390301228, 0.025286613032221794, -0.008039901033043861, -0.03162432461977005, 0.02601459249854088, -0.019302185624837875, 0.02325255051255226, -0.01523406058549881, -0.010036494582891464, 0.06059366092085838, 0.001973843900486827, -0.0002733271976467222, 0.05481263995170593, -0.0129216518253088, 0.0011789535637944937, -0.0468905009329319, 0.0019203159026801586, 0.00993479136377573, -0.002387347398325801, 0.004608758259564638, 0.017193183302879333, 0.04577711969614029, -0.00022281018027570099, 0.008778586983680725, -0.001932359766215086, 0.021411187946796417, 0.0140671506524086, -0.019291481003165245, -0.04301507771015167, 0.01984817162156105, -0.01872408390045166, -0.0015509729273617268, 0.02802724577486515, 0.03275911882519722, -0.04462091624736786, -0.0051467143930494785, -0.010957175865769386, 0.03755522519350052, -0.01870267279446125, -0.0258433036506176, -0.019152307882905006, 0.014987831935286522, -0.034643303602933884, 0.0002756690373644233, 0.020768852904438972, 0.030082719400525093, -0.015223355032503605, -0.043785881251096725, -0.013671043328940868, 0.00874647032469511, -0.029761550948023796, 0.008136251010000706, -0.01746082305908203, 0.07498198002576828, 0.006637468468397856, -0.003356203669682145, -0.026528462767601013, -0.012364961206912994, -0.009565448388457298, -0.027920188382267952, 0.008072017692029476, -0.026635518297553062, 0.015116298571228981, -0.0033508508931845427, 0.030853521078824997, 0.029954252764582634, 0.041773226112127304, 0.002151824301108718, 0.012739656493067741, 0.05130120739340782, -0.012482722289860249, 0.014281262643635273, 0.009651092812418938, 0.022781504318118095, 0.01108029019087553, -0.021967878565192223, -0.01860632188618183, 0.0374053455889225, 0.012033087201416492, 0.023637952283024788, -0.01048077642917633, -0.021828705444931984, -0.0020367391407489777, -0.009260338731110096, -0.020511917769908905, -0.016946954652667046, -0.03151726722717285, 0.009640387259423733, 0.01885255053639412, 0.011818976141512394, -0.027042331174016, -0.03836884722113609, -0.024044763296842575, -0.013510460034012794, 0.013692454434931278, -0.017214594408869743, 0.0004078162310179323, -0.05733916163444519, 0.019184423610568047, -0.0075581492856144905, -0.027855955064296722, -0.028605347499251366, -0.018402915447950363, 0.012675423175096512, 0.010743063874542713, 0.02222481369972229, -0.015405349433422089, 0.01979464292526245, -0.016722137108445168, -0.017899753525853157, -0.0008925789152272046, 0.02119707688689232, -0.024858389049768448, 0.022888559848070145, -0.0032491476740688086, 0.030725054442882538, -0.01872408390045166, -0.006648174021393061, -0.0025171528104692698, 0.015608755871653557, 0.01294306293129921, -0.004057419952005148, -0.0018025543540716171, -0.0020648413337767124, -0.0026817512698471546, 0.007825789041817188, 0.017203889787197113, 0.03592797368764877, -0.009372747503221035, -0.021743061020970345, 0.033337220549583435, 0.023959118872880936, -0.021582476794719696, -0.010100727900862694, -0.024044763296842575, -0.04232991859316826, 0.03624914214015007, 0.04564865306019783, 0.033422864973545074, 0.01876690611243248, -0.005968368612229824, -0.019484180957078934, 0.013585398904979229, 0.013157174922525883, 0.021475421264767647, 0.0007286494947038591, -0.02807006798684597, -0.008425302803516388, 0.002139780670404434, -0.009522626176476479, 0.008473477326333523, -0.0014265204081311822, 0.007167395204305649, -0.0050343056209385395, 0.023959118872880936, -0.010164961218833923, -0.019591236487030983, 0.023916296660900116, -0.013146469369530678, 0.065860815346241, -0.00290121603757143, -0.004729195963591337, -0.042758140712976456, 0.032459359616041183, 0.040531378239393234, -0.02241751365363598, 0.0330374613404274, 0.052243299782276154, 0.010368367657065392, 0.027170797809958458, 0.012386372312903404, 0.007750850170850754, 0.0038031623698771, -0.009667151607573032, -0.013563987798988819, -0.0323951281607151, 0.03483600169420242, 0.01290024071931839, -0.014859364368021488, 0.016754254698753357, 0.056739646941423416, 0.01985887624323368, 0.05528368800878525, 0.01342481467872858, 0.0027098534628748894, -0.010111433453857899, 0.011251579038798809, 0.03044671006500721, -0.00020792271243408322, 0.021496832370758057, 0.03721264377236366, 0.00555085064843297, -0.03387250006198883, -0.009442334063351154, 0.021571772173047066, 0.006696349009871483, -0.0013368610525503755, -0.006824816111475229, 0.0059844269417226315, 0.02350948378443718, -0.014934303238987923, -0.026656929403543472, 0.00990802701562643, -0.025479312986135483, 0.011133817955851555, 0.008928465656936169, 0.013253524899482727, 0.02567201480269432, 0.0057917265221476555, 0.04937420040369034, 0.01992310956120491, 0.036955710500478745, -0.04078831151127815, 0.05738198384642601, 0.008296835236251354, 0.014366907067596912, 0.01404573954641819, 0.02121848799288273, 0.0076063247397542, -0.04083113372325897, -0.016861310228705406, 0.03267347440123558, 0.01754646934568882, -0.005446470808237791, -0.015887102112174034, 0.01755717396736145, -0.021807294338941574, 0.02689245156943798, 0.005989779718220234, -0.0152126494795084, 0.0029547440353780985, 0.015565933659672737, 0.023745007812976837, -0.006749877240508795, -0.0043384418822824955, -0.015897806733846664, -0.006599998567253351, -0.029054982587695122, 0.016925543546676636, -0.014420434832572937, 0.011958148330450058, 0.025522135198116302, -0.016582965850830078, -0.007911434397101402, 0.011069584637880325, 0.013199997134506702, 0.009372747503221035, 0.04132359102368355, -0.03839026018977165, 0.05772456154227257, -0.00705498643219471, 0.031196100637316704, 0.015084181912243366, 0.017054012045264244, -0.01643308624625206, 0.027470553293824196, 0.020233573392033577, -0.024194642901420593, 0.0037201938685029745, 0.009099754504859447, 0.021389776840806007, -0.022674448788166046, 0.01413138397037983, 0.005620436742901802, -0.00650364812463522, 0.025522135198116302, -0.0014639899600297213, 0.011583453044295311, 0.038197558373212814, 0.013960094191133976, 0.01862773299217224, 0.039139650762081146, 0.02115425281226635, -0.00823795422911644, 0.024858389049768448, 0.041452061384916306, 0.03432213515043259, 0.03421507775783539, 0.021379070356488228, -0.003428466385230422, -0.00525109376758337, -0.019527003169059753, 0.04787541553378105, 0.0005981750437058508, 0.007841847836971283, -0.00878929253667593, -0.048774685710668564, 0.003490023547783494, 0.015490994788706303, -0.007713380269706249, -0.03136739134788513, 4.07523475587368e-05, 0.022074934095144272, -0.025436490774154663, -0.017193183302879333, -0.0066695851273834705, 0.0444924496114254, -0.004814840853214264, 0.006599998567253351, 0.024836977943778038, 0.02462286688387394, -0.039332352578639984, -0.02209634520113468, -0.004970071837306023, -0.027127975597977638, -0.011016055941581726, -0.02102578617632389, -0.0008785278187133372, -0.009656446054577827, 0.027941599488258362, -0.02121848799288273, 0.006701701786369085, 0.013082236051559448, 0.006926519330590963, 0.016251090914011, 0.013820922002196312, 0.014473963528871536, 0.024365931749343872, -0.012108027003705502, -0.02113284170627594, 0.010491481982171535, 0.020554739981889725, 0.02569342590868473, 0.023873474448919296, -0.001073904917575419, -0.019173718988895416, -0.02798442356288433, -0.016700726002454758, 0.015876395627856255, -0.026464227586984634, 0.019088074564933777, 0.02800583466887474, -0.015790751203894615, 0.0036827244330197573, -0.024301698431372643, -0.01877761259675026, -0.0026442816015332937, 0.006316300481557846, -0.012450605630874634, 0.022952793166041374, 0.00616642227396369, 0.021368365734815598, 0.015448172576725483, -0.007515327073633671, 0.0017677611904218793, 0.004929926246404648, 0.025308024138212204, 0.002139780670404434, -0.013810216449201107, -0.04237274080514908, 0.027320675551891327, -0.013210702687501907, -0.03736252337694168, 0.02323113940656185, 0.0071299257688224316, 0.008436008356511593, -0.013210702687501907, 0.02241751365363598, 0.01621897518634796, 0.0014399023493751884, 0.03618490695953369, -0.01233284454792738, -0.005893429275602102, 0.0778510794043541, 0.036998532712459564, -0.002311070216819644, 0.015983451157808304, 0.034514833241701126, -0.003241118509322405, 0.0007701336871832609, -0.034536246210336685, -0.020758146420121193, 0.008275424130260944, 0.03158150240778923, -0.015041359700262547, -0.043828703463077545, 0.02470851130783558, -0.005797079298645258, 0.005133332218974829, -0.0011903282720595598, -0.032202426344156265, -0.002046106616035104, 0.007499268744140863, 0.010373720899224281, -0.003827249864116311, 0.015576639212667942, -0.007879316806793213, 0.03873283788561821, 0.007975667715072632, 0.02228904701769352, 0.012011676095426083, 0.007890022359788418, 0.004723843187093735, -0.04243697598576546, 0.0036051087081432343, 0.013842333108186722, 0.048389285802841187, -0.005430412478744984, -0.03290899470448494, 0.014902186580002308, 0.04945984482765198, 0.00580243207514286, -0.010951822623610497, -0.021989289671182632, 0.01052895188331604, 0.060508016496896744, -0.028947927057743073, 0.032116781920194626, 0.002400729339569807, 0.012707539834082127, -0.008960582315921783, 0.024173231795430183, 0.028776636347174644, 0.020715324208140373, 0.023102670907974243, 0.020865201950073242, 0.003024330362677574, -0.05708222836256027, 0.021593183279037476, 0.008227248676121235, 0.027042331174016, -0.02702092006802559, -0.0058880764991045, 0.00734939007088542, -0.006316300481557846, 0.01624038629233837, -0.015469583682715893, 0.01654014363884926, 0.0062092444859445095, 0.014945008791983128, 0.02325255051255226, -0.026485638692975044, 0.006509001366794109, 0.030125541612505913, 0.02811289019882679, -0.017846224829554558, -0.023102670907974243, -0.0014867393765598536, 0.013018002733588219, 0.04093819111585617, -0.004231385886669159, 0.008441360667347908, -0.012172260321676731, -0.028348412364721298, 0.01048612967133522, -0.061578575521707535, -0.010427248664200306, -0.021496832370758057, -0.03044671006500721, -0.015469583682715893, 0.012493427842855453, 0.03644184023141861, 0.029526028782129288, -0.026292938739061356, -0.04924573376774788, -0.0010558392386883497, 0.043785881251096725, 0.007750850170850754, -0.06791628897190094, 0.0076009719632565975, -0.019302185624837875, -0.019323596730828285, -0.00874111708253622, 0.001239172532223165, -0.015041359700262547, 0.00582384318113327, 0.011508513242006302, -0.008136251010000706, 0.005366179160773754, -0.017075423151254654, 0.009271044284105301, 0.01633673720061779, -0.03646325320005417, -0.0051467143930494785, -0.03847590461373329, -0.013649632222950459, -0.01650802604854107, -0.026271527633070946, 0.024344520643353462, 0.03856154903769493, 0.0015014595119282603, 0.0033722619991749525, 0.006337711587548256, 0.024879800155758858, -0.024922622367739677, 0.04205157235264778, -0.0152126494795084, -0.0072102174162864685, 0.0032036490738391876, -0.027877366170287132, 0.013735276646912098, -0.004804135300219059, -0.021657416597008705, -0.027384908869862556, 0.012086615897715092, 0.005599025636911392, 0.03894695267081261, -0.01404573954641819, -0.039353761821985245, -0.02929050475358963, 0.011904620565474033, 0.01875620149075985, -0.02586471475660801, -0.023787830024957657, 0.017375178635120392, -0.024879800155758858, -0.033380042761564255, 0.0007627735612913966, 0.046376634389162064, -0.0021531626116484404, -0.026699751615524292, -0.0188097283244133, 0.034600481390953064, 0.00014427459973376244, -0.010577126406133175, 0.005995132494717836, -0.023102670907974243, 0.003554257098585367, 0.03036106377840042, 0.011926031671464443, -0.015469583682715893, 0.008077370934188366, -0.012429194524884224, 0.0021290751174092293, 0.026036005467176437, 0.01753576286137104, 0.008783940225839615, 0.014302673749625683, 0.02099367044866085, -0.002250851131975651, -0.010930411517620087, -0.025115324184298515, -0.0013602795079350471, -0.007986373268067837, 0.011615569703280926, 0.020351333543658257, 0.009308514185249805, 0.008039901033043861, -0.03749099001288414, -0.02592894807457924, -0.024023352190852165, 0.03380826488137245, -0.012504133395850658, -0.03061799891293049, 0.020233573392033577, 0.0224603358656168, -0.06294889003038406, -0.003886130638420582, 0.010652066208422184, -0.02807006798684597, 0.019163012504577637, 0.0037576635368168354, -0.01348904799669981, 0.033251576125621796, 0.036784421652555466, 0.015844279900193214, -0.005631142295897007, 0.012728950940072536, 0.02091873064637184, -0.01626179739832878, 0.001116058207117021, -0.008393186144530773, 0.02101508155465126, 0.012247199192643166, -0.015084181912243366, -0.015994157642126083, 0.00821654312312603, -0.019676880910992622, 0.032202426344156265, -0.017814109101891518, -0.009570800699293613, -0.016946954652667046, 0.0011073598871007562, 0.04119512438774109, -0.03779074549674988, -0.014281262643635273, 0.013885155320167542, 0.013521165587008, 0.020865201950073242, -0.004806811921298504, 0.005387590266764164, -0.012707539834082127, 0.01892749033868313, -0.012065204791724682, 0.014741603285074234, 0.013478342443704605, -0.0012177613098174334, 0.012472016736865044, 0.0008102796273306012, -0.04526325315237045, -0.04817517474293709, -0.047233082354068756, 0.007997078821063042, 0.0020982965361326933, 0.04462091624736786, -0.01283600740134716, -0.008532358333468437, 0.0036532839294523, 0.004038685467094183, -0.03235230594873428, 0.010405837558209896, -0.06376251578330994, 0.010309486649930477, -0.0022789533250033855, 0.007071044761687517, 0.001085279625840485, 0.03194549307227135, 0.029012160375714302, -0.0024301698431372643, 0.03657031059265137, 0.019002430140972137, -0.05005935579538345, -0.012643306516110897, 0.0039048653561621904, -0.005582967307418585, -0.008462771773338318, -0.012953768484294415, 0.008585886098444462, 0.03759804740548134, -0.026485638692975044, -0.011615569703280926, 0.023038437590003014, -0.032288070768117905, 0.014837953262031078, 0.03284476324915886, -0.03770510107278824, -0.014399023726582527, -0.04611969739198685, 0.011401457712054253, 0.0007754864636808634, -0.019430652260780334, -0.02226763591170311, -0.018285155296325684, -0.025029677897691727, -0.02569342590868473, -0.003241118509322405, -0.028969338163733482, 0.030874932184815407, -0.018370799720287323, -0.0074457405135035515, 0.00528588704764843, 0.03524281457066536, -0.024879800155758858, -0.013820922002196312, 0.01164768636226654, -0.014709485694766045, 0.007301215082406998, -0.0055669089779257774, 0.009019463323056698, 0.011872503906488419, 0.0069853998720645905, 0.007386859972029924, -0.025372257456183434, -0.006835521664470434, -0.005023600067943335, -0.00931921973824501, -0.024194642901420593, -0.03631337359547615, 0.028519703075289726, 0.027941599488258362, -0.012054499238729477, 0.04466373845934868, 0.009742090478539467, -0.022074934095144272, -0.00878929253667593, 0.015929924324154854, -0.0011588805355131626, 0.013456931337714195, -0.00011090326006524265, -0.01971970498561859, -0.030725054442882538, -0.012632600963115692, -0.018981019034981728, -0.005334062036126852, 0.0066695851273834705, -0.015533817000687122, 0.04303648695349693, 0.033529918640851974, 0.007847200147807598, -0.014206322841346264, -0.010202431119978428, 0.012803890742361546, 0.011765447445213795, -0.0146131357178092, -0.026549873873591423, -0.009442334063351154, 0.05044475942850113, -0.0013683087890967727, 0.04327201098203659, 0.017278829589486122, 0.01277177408337593, 0.047532837837934494, 0.003902188967913389, 0.01277177408337593, 0.01977323181927204, -0.02796301059424877, -0.01999804936349392, 0.029740139842033386, 0.009704620577394962, 0.030703643336892128, 0.0004697079421021044, 0.01659367047250271, 0.0039102183654904366, 0.029890017583966255, 0.015972746536135674, -0.02931191585958004, -0.0032625298481434584, 0.027213620021939278, -0.009667151607573032, -0.00881070364266634, 0.027342086657881737, 0.035671040415763855, -0.03496446833014488, -0.022867148742079735, 0.02114354819059372, 0.015287588350474834, 0.006562529131770134, -0.016893427819013596, -0.0303182415664196, -0.014217028394341469, -0.004659609869122505, -2.6931260435958393e-05, -0.00014837284106761217, 0.019644765183329582, -0.01857420615851879, -0.01743941195309162, 0.018253037706017494, -0.01856349967420101, 0.0070871030911803246, -0.04560583084821701, -0.015940628945827484, 0.006369828246533871, 0.014870069921016693, -0.006578587461262941, -0.00044930039439350367, -0.019441358745098114, -0.021925056353211403, -0.007124572992324829, -0.0375124029815197, 0.012664717622101307, 0.003182237735018134, 0.014837953262031078, 0.0016245738370344043, 0.006300242152065039, -0.02103649266064167, 0.014666663482785225, 0.02588612586259842, 0.010346956551074982, -0.011497807689011097, 0.017931869253516197, 0.0401245653629303, 0.00023017027706373483, 0.010100727900862694, 0.003773721866309643, 0.01277177408337593, -0.005807784851640463, 0.011380046606063843, 0.02556495927274227, -0.008564474992454052, 0.030939167365431786, 0.01882043480873108, -0.003045741468667984, 0.01619756408035755, 0.039417997002601624, -0.02348807267844677, -0.0006496957503259182, 0.008072017692029476, -0.014249145984649658, 0.015052065253257751, -0.026271527633070946, 0.0021906322799623013, -0.044963493943214417, -0.008896348997950554, -0.020704619586467743, -0.038026269525289536, 0.017161067575216293, 0.002820923924446106, -0.01756788045167923, 0.02122919261455536, -0.012889535166323185, 0.009875910356640816, -0.007659852504730225, -0.00042855829815380275, 0.012846712954342365, 0.009372747503221035], [0.047735001891851425, -0.01295447163283825, 0.04856026917695999, -0.02547459490597248, -0.048907745629549026, 0.01615779846906662, -0.018112370744347572, 0.01182516384869814, 0.007470810320228338, 0.03826618567109108, -0.029970111325383186, -0.03820103406906128, -0.0016030209371820092, 0.012715579941868782, 0.0018405558075755835, 0.029383739456534386, -0.0024744344409555197, 0.006135185714811087, -0.021369991824030876, -0.02560489997267723, 0.026386728510260582, 0.025887226685881615, -0.025887226685881615, 0.0008775215828791261, 0.005144326016306877, -0.030860528349876404, 0.02603924833238125, 0.00017832079902291298, 0.06224227324128151, -0.033705517649650574, 0.05933213233947754, -0.03424845263361931, -0.03820103406906128, -0.033966127783060074, 0.014322672970592976, -0.020957360044121742, 0.005738841835409403, -0.01648356206715107, 0.017732316628098488, -0.008122334256768227, -0.0048239934258162975, 0.046822868287563324, 0.010641560889780521, -0.046562258154153824, 0.02404124103486538, 0.008714135736227036, 0.017406553030014038, 0.006895297206938267, -0.017417412251234055, 0.026256423443555832, 0.048386529088020325, 0.04660569503903389, -0.002125597558915615, -0.004134463611990213, 0.03348834067583084, -0.009441670961678028, 0.02093564346432686, 0.0139317587018013, 0.04756126180291176, 0.0010845162905752659, -0.003672967432066798, -0.034357041120529175, -0.06536959111690521, 0.018796471878886223, 0.032880254089832306, -0.016298962756991386, 0.03574695810675621, 0.012552699074149132, -0.025843791663646698, -0.029427174478769302, -0.0287756510078907, 0.024584177881479263, -0.011836022138595581, -0.06289380043745041, -0.011260509490966797, -0.012009762227535248, -0.003482939675450325, -0.04634508490562439, 0.028428170830011368, 0.020783619955182076, -0.019089657813310623, 0.01978461630642414, -0.026842795312404633, 0.004954298492521048, 0.01108676940202713, 0.014637576416134834, -0.028102409094572067, -0.01247668731957674, -0.015625720843672752, -0.011390813626348972, -0.04245765879750252, -0.04082884639501572, 0.024410437792539597, 0.028688780963420868, 0.001095375046133995, -0.001664101262576878, 0.036224741488695145, -0.008002888411283493, -0.06684637814760208, 0.05212193354964256, 0.0023834926541894674, 0.024388721212744713, 0.05042796954512596, 0.021272264420986176, 0.007856295444071293, -0.020924784243106842, -0.006824715528637171, 0.01801464334130287, 0.010961893945932388, -0.006227484904229641, 0.05815938860177994, -0.04006873443722725, -0.033184297382831573, 0.08304761350154877, 0.014952479861676693, -0.01720023714005947, -0.010033472441136837, 0.019860628992319107, 0.0030187286902219057, -0.010408098809421062, -0.009295077994465828, -0.014539847150444984, 0.014941620640456676, -0.06180792674422264, 0.005269201472401619, -0.0034666515421122313, 0.002578949788585305, 0.012997906655073166, -0.06841003894805908, 0.020392706617712975, -0.007720561232417822, -0.014887327328324318, 0.021663177758455276, 0.007503386586904526, 0.024909939616918564, -0.0021364563144743443, -0.007020172663033009, 0.0004160253156442195, -0.003925432916730642, -0.07535962760448456, -0.0013301951112225652, 0.015582285821437836, 0.027559472247958183, 0.016635583713650703, -0.022586170583963394, 0.05681290850043297, -0.013323669321835041, 0.09494879096746445, 0.024605896323919296, -0.00577141810208559, -0.04032934457063675, -0.019708605483174324, -0.026104401797056198, 0.00017458811635151505, 0.023758914321660995, 0.010272364132106304, 0.01061441469937563, 0.017048215493559837, 0.02158716693520546, -0.018362121656537056, -0.025952378287911415, -0.03943892940878868, -0.048125918954610825, -0.03943892940878868, 0.04421677440404892, 0.04504203796386719, 0.0021228829864412546, 0.006678122561424971, -0.04947240278124809, 0.007443663664162159, -0.01900278776884079, 0.03559493646025658, -0.009490535594522953, -0.06167761981487274, 0.0036023857537657022, -0.026473598554730415, 0.028406454250216484, 0.02986152470111847, -0.024214981123805046, 0.03774496540427208, -0.014822174794971943, 0.020066944882273674, -0.03854851424694061, 0.004693688824772835, -0.03348834067583084, 0.04252281039953232, 0.015137078240513802, -0.026907946914434433, 0.002162245800718665, -0.002684822538867593, 0.01890505850315094, -0.006955020595341921, -0.024736201390624046, -0.00426748301833868, -0.04358696565032005, 0.00757939787581563, 0.010869594290852547, -0.013139070942997932, 0.035073716193437576, -0.016168657690286636, 0.029057977721095085, -0.013736301101744175, 0.025170549750328064, 0.021413426846265793, -0.02475791797041893, -0.013301951810717583, 0.01489818561822176, 0.018590155988931656, 0.03387925773859024, -0.01134737953543663, 0.0002923375286627561, -0.004096458200365305, -0.03457421436905861, 0.02844988740980625, -0.038809120655059814, 0.049559272825717926, 0.026126118376851082, -0.020761903375387192, -0.011586271226406097, 0.05060170963406563, -0.023063955828547478, -0.010071477852761745, 0.02295536734163761, -0.029448892921209335, -0.05915839225053787, -0.04808248206973076, 0.02436700277030468, 0.0020088660530745983, 0.02037098817527294, -0.03672424331307411, -0.00410460215061903, -0.003309199819341302, -0.029166564345359802, -0.02360689267516136, 0.02289021573960781, 0.033575210720300674, -0.013334527611732483, -0.04087228327989578, -0.008252639323472977, 0.00804632343351841, -0.0010702641448006034, 0.007959453389048576, 0.03774496540427208, 0.0554664246737957, -0.004452081862837076, -0.01994749717414379, -0.01883990690112114, -0.002986152423545718, 0.027190275490283966, 0.006493524182587862, 0.03116457164287567, -0.01016920618712902, 0.051426973193883896, -0.0839163139462471, 0.02586550824344158, 0.029492326080799103, -0.029427174478769302, -0.024801352992653847, 0.034943412989377975, -0.05477146431803703, 0.008491531945765018, -0.010587267577648163, -0.013692866079509258, 0.014138074591755867, -0.006450089160352945, -0.014029487036168575, 0.030491329729557037, 0.00861640740185976, 0.011162780225276947, 0.02688623033463955, -0.017667163163423538, 0.0053750742226839066, 0.02430185116827488, -0.007503386586904526, 0.007362223230302334, -0.008659841492772102, 0.0032766235526651144, -0.05398963391780853, 0.007753137499094009, 0.028428170830011368, -0.03948236256837845, 0.03754951059818268, -0.02001265063881874, -0.01962173543870449, 0.010158347897231579, 0.007964882999658585, 0.033444907516241074, -0.017156802117824554, -0.0001415028964402154, -0.024475591257214546, 0.06441402435302734, -0.016212092712521553, 0.00636864872649312, -0.0066889813169837, 0.005125323310494423, -0.0023115533404052258, -0.03463936597108841, 0.04382585734128952, -0.030078697949647903, -0.010397239588201046, -0.022846780717372894, 0.059636179357767105, 0.05055827647447586, -0.0540330708026886, -0.04565012454986572, 0.0540330708026886, 0.011097628623247147, 0.03852679580450058, -0.02495337463915348, -0.005320780444890261, -0.00759568577632308, 0.09269016981124878, -0.043804142624139786, -0.024453872814774513, -0.03607271984219551, -0.0022206115536391735, -0.028862521052360535, 0.013682007789611816, 0.024584177881479263, -0.011966327205300331, 0.0759677141904831, -0.012085773050785065, 0.04115460813045502, -0.013823171146214008, -0.008524107746779919, 0.012530981563031673, 0.057116951793432236, 0.05555329471826553, -0.044564250856637955, -0.059636179357767105, -0.03796214237809181, 0.0017238243017345667, 0.02603924833238125, -0.03982984274625778, -0.007367652375251055, -0.014800457283854485, 0.01316078845411539, 0.008263498544692993, 0.0525997169315815, 0.012878460809588432, 0.04228391870856285, 0.022151822224259377, 0.02204323373734951, 0.0264953151345253, 0.012726438231766224, 0.060287702828645706, 0.01796034909784794, 0.015375969931483269, 0.04947240278124809, 0.011683999560773373, -0.012042338028550148, 0.013747159391641617, -0.035269174724817276, 0.014648434706032276, -0.027103405445814133, -0.0005442941328510642, 0.012042338028550148, -0.013204222545027733, 0.0029237146954983473, -3.132490746793337e-05, 0.02378063090145588, -0.021543731912970543, 0.03800557553768158, 0.03548634797334671, 0.0014048489974811673, 0.006927873473614454, -0.01697220467031002, -0.029622631147503853, 0.03168579190969467, -0.016114363446831703, -0.0001066361801349558, 0.005684548057615757, 0.04436879605054855, -0.025995813310146332, -0.01110305730253458, -0.01939370296895504, 0.0016342398012056947, 0.018720461055636406, -0.011293085291981697, -0.02282506227493286, -0.021478580310940742, -0.0051741874776780605, -0.010011754930019379, 0.05086231976747513, 0.015723450109362602, 0.025952378287911415, -0.03885255753993988, -0.00040550591074861586, -0.03018728643655777, 0.027038251981139183, -0.023802349343895912, 0.03070850484073162, 0.014355248771607876, 0.029579196125268936, -0.035898979753255844, 0.0018106942297890782, 0.07101613283157349, 0.01154283620417118, -0.021695755422115326, 0.0013322312152013183, -0.02059902250766754, -0.05759473517537117, 0.01929597370326519, -0.015875471755862236, -0.014778739772737026, 0.024453872814774513, 0.010549262166023254, 0.0044167907908558846, -0.0007465381058864295, -0.013367104344069958, -0.002732329536229372, 0.01726539060473442, 0.032554492354393005, -0.0057822768576443195, 0.00455523980781436, 0.0142900962382555, -0.026104401797056198, 0.030491329729557037, 0.015723450109362602, -0.06011396273970604, 0.03201155364513397, 0.006558676715940237, -0.030621634796261787, -0.04052480310201645, -0.013595137745141983, 0.006775851361453533, 0.014637576416134834, 0.007525104098021984, 0.030795374885201454, -0.06198166683316231, 0.02004522643983364, -0.018687885254621506, 0.11892487853765488, 0.0034476486034691334, -0.07679297775030136, -0.03954751789569855, 0.00019732359214685857, -0.03044789656996727, -0.01079358346760273, -0.030534764751791954, -0.01765630394220352, 0.010989041067659855, 0.026408445090055466, -0.05464116111397743, -0.011760011315345764, 0.04041621461510658, -0.020262401551008224, -0.008844440802931786, -0.02636501006782055, 0.009528541006147861, -0.026343293488025665, -0.04356524720788002, -0.047344088554382324, 0.01276987325400114, -0.022651324048638344, 0.006547817960381508, -0.02132655680179596, -0.05555329471826553, 0.03852679580450058, 0.012530981563031673, 0.002549088327214122, 0.03672424331307411, 0.02289021573960781, 0.02747260220348835, 0.02888423763215542, 0.042957160621881485, 0.009018179960548878, 0.0062600611709058285, 0.02838473580777645, -0.036876268684864044, 0.02417154610157013, -0.035269174724817276, 0.006884438451379538, -0.000318805716233328, 0.06988682597875595, -0.007763996254652739, -0.0008089758339338005, -0.05081888288259506, -0.02934030443429947, -0.04551982134580612, 0.047995612025260925, 0.009604551829397678, -0.028558475896716118, -0.041067738085985184, 0.06250288337469101, 0.012639569118618965, 0.01645098440349102, 0.006716128438711166, 0.017634587362408638, -0.04319605231285095, -0.023389717563986778, -0.014355248771607876, 0.024736201390624046, -0.007269923575222492, 0.029231717810034752, -0.005035738926380873, -0.05798564851284027, 0.04260968044400215, 0.011738293804228306, 0.027581188827753067, 0.029883241280913353, -0.019893204793334007, 0.06267662346363068, 0.00439778808504343, 0.02037098817527294, -0.017504282295703888, -0.008605548180639744, -0.05203506350517273, -0.00562482513487339, 0.019828051328659058, -0.037592943757772446, 0.037332333624362946, 0.022651324048638344, -0.00028979251510463655, -0.02779836393892765, -0.012997906655073166, -0.009919455274939537, 0.027038251981139183, -0.015908047556877136, 0.01045153383165598, 0.006444660015404224, -0.02890595607459545, -0.016407549381256104, 0.020381847396492958, -0.020132096484303474, 0.015343394130468369, 0.012617851607501507, -0.025691770017147064, -0.007606544531881809, 0.020761903375387192, -0.0005578675772994757, -0.050645142793655396, -0.04964613914489746, 0.021804342046380043, -0.00442493474110961, -0.028145844116806984, -0.009539399296045303, 0.05372902750968933, 0.023563457652926445, -0.060070525854825974, 0.03896114602684975, -0.00394172128289938, 0.02430185116827488, -0.012411534786224365, -0.010326658375561237, 0.018036359921097755, 0.03943892940878868, 0.015267382375895977, 0.03702829033136368, -0.00953397061675787, 0.004270197823643684, 0.030795374885201454, -0.054728031158447266, -0.029123129323124886, -0.0003269497537985444, 0.011738293804228306, 0.03813588246703148, 0.0024554317351430655, 0.0033499200362712145, -0.009941172786056995, -0.015093643218278885, 0.00892588123679161, 0.018829047679901123, -0.0026183126028627157, 0.04026419296860695, -0.011901174671947956, -0.019806334748864174, -0.034357041120529175, 0.006194909103214741, -0.025322571396827698, -0.0052311960607767105, 0.01785176247358322, 0.008274356834590435, -0.05042796954512596, 0.02992667630314827, 0.017352260649204254, -0.014659293927252293, 0.0267559252679348, 0.030404461547732353, -0.001301690936088562, 0.019708605483174324, 0.07266665995121002, -0.004699117969721556, -0.02636501006782055, -0.003480224870145321, 0.042826853692531586, -0.0267559252679348, -0.025691770017147064, -0.016624724492430687, 0.015462839975953102, 0.031577203422784805, -0.004976015537977219, 0.014561564661562443, 0.009262502193450928, -0.028406454250216484, 0.036615658551454544, -0.002956290962174535, 0.01693962886929512, 0.01202062051743269, -0.018818190321326256, -0.0034014990087598562, -0.03096911497414112, 0.019371984526515007, -0.015571427531540394, -0.013779736123979092, -0.060070525854825974, 0.007709702476859093, 0.0036838261876255274, -0.02901454269886017, 0.025061963126063347, 0.01211834978312254, 0.029101412743330002, -0.0059180110692977905, -0.025235703215003014, -0.026147836819291115, 0.006650975905358791, -0.0039362916722893715, -0.041024304926395416, -0.011184497736394405, 0.02688623033463955, -0.03833133727312088, -0.01971946470439434, -0.013019624166190624, -0.0023997805546969175, -0.02001265063881874, -0.01684189960360527, -0.010804442688822746, -0.061634186655282974, -0.00651524169370532, -0.011271367780864239, -0.000160505689564161, 0.028493322432041168, -0.04234907031059265, -0.010418957099318504, 0.02947060950100422, -0.020479576662182808, 0.03031759150326252, -0.01066327840089798, -0.021804342046380043, 0.005429368000477552, 0.018329545855522156, 0.007313358597457409, -0.005193190649151802, -0.019371984526515007, 0.025822075083851814, 0.03516058623790741, 0.0142575204372406, -0.007367652375251055, -0.03342318907380104, -0.011944609694182873, 0.008410090580582619, -0.002641387516632676, 0.0006393080693669617, -0.00455523980781436, 0.010266934521496296, -0.01295447163283825, -0.018405556678771973, 0.022933650761842728, 0.013052200898528099, 0.021446002647280693, -0.010576409287750721, 0.01592976599931717, -0.0018242676742374897, 0.022911932319402695, 0.016505278646945953, -0.05750786513090134, 0.03353177756071091, -0.005556958261877298, 0.002198894042521715, 0.00062437733868137, -0.007020172663033009, -0.011792587116360664, -0.030230721458792686, -0.011445107869803905, 0.0009372446220368147, -0.01615779846906662, -0.04803904891014099, 0.010538402944803238, -0.0274074487388134, 0.004785988014191389, -0.018948493525385857, -0.026799360290169716, 0.010098624043166637, -0.0064609479159116745, -0.049993619322776794, 0.0012195718009024858, 0.008589260280132294, 0.007248206064105034, -0.004867428448051214, 0.011195356957614422, -0.022184398025274277, 0.027255427092313766, -0.006249202415347099, -0.0008035464561544359, 0.0010329373180866241, 0.024453872814774513, 0.002967149717733264, -0.013790594413876534, 0.001491718809120357, -0.01897021196782589, 0.024410437792539597, 0.015104501508176327, -0.03824446722865105, -0.03518230468034744, -0.03859194740653038, -0.00699845515191555, -0.026690773665905, 0.01785176247358322, 0.05294719710946083, -0.00019918993348255754, -0.03839648887515068, -0.002006151480600238, -0.03711516037583351, -0.026690773665905, 0.00728621194139123, -0.008991033770143986, 0.004734409041702747, -0.007356793619692326, -0.025822075083851814, -0.001854129135608673, -0.0563785582780838, 0.01042981632053852, -0.05876747891306877, 0.004237621556967497, 0.039721257984638214, 0.006857291795313358, -0.007117901463061571, -0.019600018858909607, 0.0139969103038311, -0.019762899726629257, 0.0561179481446743, -0.01654871366918087, -0.005977733992040157, 0.008697847835719585, -0.023194260895252228, 0.008002888411283493, -0.02417154610157013, -0.015006773173809052, -0.001590804778970778, -0.027820082381367683, 0.027776647359132767, -0.037658095359802246, -0.007047319784760475, -0.03127316012978554, -0.025995813310146332, -0.017971208319067955, 0.008953027427196503, 0.016722453758120537, -0.026451880112290382, 0.03524745628237724, -0.02007780224084854, 0.005470088217407465, 0.03283681720495224, -0.011998903006315231, -0.010701284743845463, 0.021185394376516342, -0.028992824256420135, 0.01988234557211399, 0.00037598374183289707, 0.0015446551842615008, 0.052469413727521896, -0.009778291918337345, 0.002063159830868244, 0.053034067153930664, -0.009430812671780586, -0.015495416708290577, -0.0527300201356411, 0.009675133973360062, 0.014670152217149734, -0.002940002828836441, 0.00021395103249233216, 0.003634961787611246, 0.04769156873226166, 0.003045875346288085, 0.008833581581711769, 0.014007769525051117, 0.008106046356260777, 0.02586550824344158, -0.023281129077076912, -0.0529906302690506, 0.010782725177705288, -0.014985055662691593, 0.009588263928890228, 0.01835126429796219, 0.024671047925949097, -0.0537724606692791, -0.0027255427557975054, -0.019904062151908875, 0.02449730783700943, -0.0052366252057254314, -0.02083791419863701, -0.015213089063763618, 0.00014048490265849978, -0.05107949301600456, -0.0013349459040910006, 0.006113468203693628, 0.02085963264107704, -0.01870960183441639, -0.03961266949772835, -0.01736311800777912, -0.004210474900901318, -0.026408445090055466, 0.010576409287750721, -0.01769973896443844, 0.05776847526431084, -0.00039905853918753564, 0.0007730062934570014, -0.005592248868197203, -0.022651324048638344, 0.006341501604765654, -0.03459593281149864, -0.008230921812355518, -0.030035262927412987, 0.01818838343024254, -0.0028096979949623346, 0.02844988740980625, 0.029188282787799835, 0.019241679459810257, 0.0005178259452804923, 0.021087665110826492, 0.03961266949772835, -0.016081787645816803, 0.012683003209531307, 0.006737845484167337, 0.009430812671780586, 0.022064952179789543, 0.005147040821611881, -0.025518029928207397, 0.031077701598405838, -0.008974744938313961, 0.03911316767334938, -0.02514883317053318, -0.02747260220348835, -0.0016505278181284666, -0.009973748587071896, -0.03407471254467964, -0.03188125044107437, -0.022412430495023727, 0.019122233614325523, 0.009751144796609879, 0.018861625343561172, -0.026864513754844666, -0.04964613914489746, -0.02534428983926773, -0.01211834978312254, 0.012107490561902523, -0.008431808091700077, 0.0012100704479962587, -0.019795475527644157, 0.026929665356874466, -0.010402669198811054, -0.0024880077689886093, -0.028471605852246284, 0.0006969951209612191, 0.018405556678771973, 0.012422394007444382, 0.0037109730765223503, -0.007954023778438568, 0.021739188581705093, -0.020653316751122475, -0.013106494210660458, -0.009930314496159554, 0.009322225116193295, -0.025366006419062614, 0.015419404953718185, -0.0033607787918299437, 0.01994749717414379, -0.04504203796386719, -0.0006623828667216003, 0.01796034909784794, 0.020751044154167175, 0.013562561012804508, 0.003906430210918188, -0.012683003209531307, -0.009381948038935661, 0.003561665304005146, -0.01260699238628149, 0.006151474080979824, 0.03561665490269661, 0.007362223230302334, -0.029166564345359802, 0.027581188827753067, 0.02155459113419056, -0.02462761290371418, -0.023063955828547478, -0.024540742859244347, -0.04174097999930382, 0.03885255753993988, 0.05029766634106636, 0.03542119637131691, 0.02940545789897442, -0.009968319907784462, -0.018926776945590973, 0.01615779846906662, 0.0005066278972662985, 0.03025243803858757, 0.001356663298793137, -0.013812311924993992, -0.011092199012637138, 0.019708605483174324, -0.002801553811877966, -0.0010417599696666002, -0.008382944390177727, 0.0017333257710561156, -0.02020810730755329, 0.020642457529902458, 0.00441407598555088, -0.006846433039754629, 0.04026419296860695, 0.003010584507137537, 0.04725721850991249, 0.00974571518599987, 0.005787706468254328, -0.044955167919397354, 0.04578043147921562, 0.03503028303384781, -0.03802729398012161, 0.025995813310146332, 0.046258214861154556, 0.011738293804228306, 0.02145686186850071, 0.0012691147858276963, 0.017569435760378838, -0.0008829509606584907, -0.007248206064105034, -0.022086668759584427, -0.03503028303384781, 0.03437875956296921, 0.03266307711601257, -0.017156802117824554, 0.010093195363879204, 0.04699660837650299, 0.016852758824825287, 0.059896789491176605, 0.005831141024827957, -0.00499501870945096, -0.0027364015113562346, -0.014757022261619568, 0.02090306766331196, -0.003425931092351675, 0.04135006666183472, 0.017906054854393005, -0.0014333531726151705, -0.02397608943283558, -0.013920899480581284, 0.024062959477305412, -0.006580394227057695, -0.008431808091700077, -0.007878012955188751, 0.003149033524096012, 0.019187387079000473, -0.007584827020764351, -0.017015639692544937, 0.011944609694182873, -0.03476967290043831, 0.01769973896443844, 0.021598026156425476, 0.0287756510078907, 0.01324765756726265, 0.0035752388648688793, 0.028341300785541534, 0.017764892429113388, 0.03689798340201378, -0.018264394253492355, 0.0554664246737957, -0.011792587116360664, 0.01532167661935091, 0.02901454269886017, 0.03650707006454468, 0.01752600073814392, -0.04080713167786598, -0.016961345449090004, 0.04873400554060936, 0.010592697188258171, 0.006270919926464558, -0.01625552773475647, 0.022521018981933594, 0.009371088817715645, 0.013204222545027733, 0.012161783874034882, -0.023237695917487144, 0.009137626737356186, 0.014040345326066017, 0.013595137745141983, 0.008882446214556694, 0.008708706125617027, -0.01295447163283825, -0.01772145740687847, -0.03576867654919624, -0.002456788904964924, -0.0279938206076622, 0.01818838343024254, 0.012965330854058266, -0.04350009560585022, 0.004612247925251722, 0.013464832678437233, 0.013453973457217216, 0.04426020756363869, 0.017091650515794754, -0.018199240788817406, 0.053294677287340164, -0.0017401124350726604, -0.007590256631374359, -0.006412083748728037, 0.00968056358397007, -0.014214085415005684, 0.0274074487388134, 0.01733054220676422, -0.011059622280299664, 0.007188483141362667, 0.008182057179510593, 0.016668159514665604, -0.001954572508111596, -0.002568091033026576, 0.023997806012630463, -0.009571976028382778, 0.020360130816698074, 0.010641560889780521, -0.0032060418743640184, 0.03911316767334938, 0.0025450163520872593, 0.025170549750328064, 0.02688623033463955, 0.01825353503227234, -0.01913309283554554, 0.02230384387075901, 0.03898286074399948, 0.03283681720495224, 0.028558475896716118, 0.016407549381256104, 0.0011768154799938202, -0.004460225813090801, -0.016103506088256836, 0.02934030443429947, -0.01628810353577137, 0.021478580310940742, -0.00924078468233347, -0.032098423689603806, 0.0017591152573004365, 0.02527913823723793, -0.01606007106602192, -0.03413986414670944, -0.00235091638751328, -0.010071477852761745, -0.023042237386107445, -0.009441670961678028, 0.003064878284931183, 0.035138871520757675, -0.017178520560264587, 0.010701284743845463, 0.016950486227869987, 0.04504203796386719, -0.028688780963420868, -0.02090306766331196, -0.004503660835325718, -0.02527913823723793, -0.019274257123470306, -0.011846881359815598, -0.00155551393982023, -0.019600018858909607, 0.016755029559135437, -0.028341300785541534, 0.010961893945932388, 0.01729796640574932, 0.02495337463915348, -0.01218350138515234, -2.7358924853615463e-05, 0.015723450109362602, 0.03576867654919624, -0.008496960625052452, -0.010033472441136837, 0.022673040628433228, 0.014887327328324318, 0.0281892791390419, 0.013627713546156883, 0.0008184772450476885, -0.03969953954219818, -0.03835305571556091, -0.017113367095589638, 0.03270651400089264, -0.03522573783993721, 0.008220063522458076, 0.015886330977082253, -0.03194640204310417, -0.004929866176098585, -0.016396692022681236, -0.03678939864039421, -0.01431181374937296, 0.012976189143955708, -0.00685186218470335, 0.017221955582499504, 0.020327553153038025, 0.021217970177531242, 0.016765888780355453, 0.012411534786224365, -0.0004099172947462648, 0.0029807230457663536, 0.02041442319750786, 0.0021296695340424776, -0.010066048242151737, -0.026256423443555832, 0.010462392121553421, -0.009821726940572262, -0.019437137991189957, 0.03353177756071091, 0.0005388647550716996, 0.009620839729905128, 0.005014021415263414, 0.03240246698260307, 0.011027046479284763, 0.001002397038973868, 0.022412430495023727, 0.00020631597726605833, -0.006070033647119999, 0.061112966388463974, 0.04730065539479256, -0.009539399296045303, 0.008448096923530102, 0.03705000877380371, -0.004929866176098585, 0.008458955213427544, -0.03457421436905861, -0.022542735561728477, 0.020533869042992592, 0.014224943704903126, -0.005749700590968132, -0.03529089316725731, 0.01473530475050211, -0.013812311924993992, -0.0042783417738974094, -0.004685544408857822, -0.02126140519976616, 0.00806261133402586, 0.007856295444071293, 0.018134089186787605, -0.02256445400416851, 0.008154910989105701, -0.01247668731957674, 0.012693862430751324, 0.009083332493901253, 0.024540742859244347, 0.0007994744228199124, 0.011760011315345764, 0.01723281480371952, -0.03140346333384514, 0.02275991067290306, -0.0023088387679308653, 0.053294677287340164, 0.003971582744270563, -0.04643195495009422, 0.01799292489886284, 0.04330464079976082, 0.017059074714779854, -0.012997906655073166, -0.019643453881144524, 0.01680932380259037, 0.06046144291758537, -0.036094438284635544, 0.06437058746814728, 0.015560568310320377, 0.018459850922226906, -0.027450883761048317, 0.018177524209022522, 0.03296712413430214, 0.013888323679566383, 0.02103337086737156, 0.03381410241127014, -0.0046882592141628265, -0.04167582839727402, 0.016896193847060204, -0.008659841492772102, 0.009137626737356186, -0.008290644735097885, -0.006135185714811087, 0.012389818206429482, -0.011151921935379505, 0.021011654287576675, -0.013117353431880474, 0.01720023714005947, -0.01697220467031002, 0.01548455748707056, 0.02207580953836441, -0.04032934457063675, 0.005556958261877298, 0.03168579190969467, 0.032619643956422806, -0.010929318144917488, -0.03891770914196968, -0.008475243113934994, 0.012530981563031673, 0.031902965158224106, -0.008757570758461952, 0.001980361994355917, -0.006346931215375662, -0.035833828151226044, 0.026712490245699883, -0.03887427598237991, -0.012911037541925907, -0.023824065923690796, -0.04189300164580345, -0.018296970054507256, 0.02236899547278881, 0.017710598185658455, 0.017840903252363205, -0.01897021196782589, -0.04538951814174652, -0.00803003553301096, 0.035204023122787476, -0.006216626148670912, -0.06471806764602661, 0.02462761290371418, -0.033966127783060074, -0.022542735561728477, 0.0037299757823348045, -0.007780284155160189, -0.013758018612861633, -0.008551254868507385, 0.012541839852929115, -0.022911932319402695, 0.03279338404536247, -0.027125122025609016, 0.01749342307448387, 0.013475690968334675, -0.03353177756071091, 0.0017468990990892053, -0.01968688890337944, -0.03741920366883278, -0.02871049754321575, -0.029166564345359802, 0.018753036856651306, 0.023498304188251495, 0.0030784516129642725, -0.011282227002084255, 0.010864165611565113, 0.024214981123805046, -0.02662562020123005, 0.042826853692531586, -0.024475591257214546, -0.007096183951944113, 0.01693962886929512, -0.008898734115064144, 0.016505278646945953, 0.00038582447450608015, -0.015473699197173119, -0.03366208076477051, 0.0018296970520168543, 0.009924884885549545, 0.03427017107605934, -0.013073918409645557, -0.022998802363872528, -0.02606096677482128, 0.00325762084685266, 0.009202778339385986, -0.038483358919620514, -0.02116367593407631, 0.013280234299600124, -0.019219962880015373, -0.026386728510260582, 0.0028884238563477993, 0.045215778052806854, -0.0020387277472764254, -0.02295536734163761, -0.013258516788482666, 0.017482565715909004, -0.004357067868113518, 0.0009664274984970689, -0.01134737953543663, -0.01548455748707056, 0.002585736569017172, 0.0037326905876398087, 0.013236799277365208, -0.018590155988931656, 0.011130204424262047, -0.016755029559135437, 0.013367104344069958, 0.02753775380551815, 0.008898734115064144, -0.008057181723415852, 0.0037462639156728983, 0.011075911112129688, -0.0006688302964903414, -0.013269375078380108, -0.029774654656648636, 0.0030078699346631765, -0.0013071203138679266, 0.0009046684135682881, 0.01247668731957674, 0.006862720940262079, 0.009604551829397678, -0.04271826893091202, -0.019665170460939407, -0.012140067294239998, 0.03374895080924034, -0.020512152463197708, -0.03387925773859024, 0.006955020595341921, 0.026669055223464966, -0.06549989432096481, -0.001710250973701477, 0.009246213361620903, -0.01984976977109909, 0.024258416146039963, -0.003138174768537283, -0.007487098686397076, 0.039851561188697815, 0.023824065923690796, 0.01783004403114319, 0.003955294378101826, 0.01874217763543129, 0.01111934520304203, -0.007454522419720888, 0.00035765962093137205, 0.0012684360845014453, 0.011607988737523556, 0.014681011438369751, -0.010543832555413246, -0.031055985018610954, 0.010066048242151737, -0.01788433827459812, 0.04234907031059265, -0.027906950563192368, -0.016950486227869987, -0.025952378287911415, 0.01077729556709528, 0.044694557785987854, -0.029101412743330002, -0.010418957099318504, 0.008122334256768227, 0.0029264292679727077, 0.03633332997560501, -0.02501852810382843, 0.004935295321047306, -0.004514519590884447, 0.0272771455347538, -0.0014442119281738997, 0.019773758947849274, 0.004490087274461985, 0.011358237825334072, -0.0011679928284138441, 0.022195257246494293, -0.03285853564739227, -0.03826618567109108, -0.05268658697605133, 0.005361500661820173, -0.006477235816419125, 0.03572523966431618, -0.01077729556709528, -0.008230921812355518, -0.0018324117409065366, -0.004530807491391897, -0.044238489121198654, 0.008366656489670277, -0.050514839589595795, 0.02175004780292511, -0.012997906655073166, 0.009381948038935661, 0.010228929109871387, 0.025387724861502647, 0.022738192230463028, 0.008306932635605335, 0.013627713546156883, 0.015332534909248352, -0.05359872058033943, 0.004148037172853947, -0.0008449453744105995, 0.0018419130938127637, -0.029644349589943886, -0.025300854817032814, -0.0075468216091394424, 0.05564016476273537, -0.025995813310146332, -0.016429267823696136, 0.023737197741866112, -0.027190275490283966, 0.019274257123470306, 0.04313090071082115, -0.027298862114548683, -0.013139070942997932, -0.032098423689603806, 0.023259412497282028, 0.007438234053552151, -0.012042338028550148, -0.03057819977402687, -0.020186390727758408, -0.013942616991698742, -0.02054472826421261, -0.0029617203399538994, -0.020457858219742775, 0.009029039181768894, -0.0139969103038311, -0.010538402944803238, 0.002739116083830595, 0.026126118376851082, -0.028428170830011368, -0.02560489997267723, 0.03103426657617092, -0.03159892186522484, -0.029644349589943886, -0.0007641835254617035, 0.010875023901462555, 0.013399680145084858, 0.007796572521328926, -0.007823719643056393, -0.04530264809727669, 0.006374077871441841, 0.0013817742001265287, -0.01742827147245407, -0.019741181284189224, -0.027885233983397484, 0.03611615672707558, 0.005383218172937632, -0.006450089160352945, 0.03776668384671211, -0.007802001666277647, -0.011749152094125748, -0.03172922506928444, -0.003862995421513915, 0.010288652032613754, 0.003672967432066798, 0.002629171358421445, -0.03057819977402687, -0.03214185684919357, -0.009175632148981094, -0.025713486596941948, -0.005999451503157616, 0.002128312364220619, -0.002820556750521064, 0.038418207317590714, 0.030230721458792686, 0.019317692145705223, -0.013432256877422333, -0.013682007789611816, 0.0022314703091979027, 0.006379507482051849, -0.02155459113419056, -0.004063881933689117, -0.011303944513201714, 0.05385933071374893, 0.00930593628436327, 0.03989499434828758, 0.015908047556877136, 0.012552699074149132, 0.03387925773859024, 0.00017730280524119735, 0.011781728826463223, -0.003643105970695615, -0.025713486596941948, -0.021608885377645493, 0.015180513262748718, 0.018633591011166573, 0.01573430933058262, -0.002334628254175186, 0.014995913952589035, 0.012346383184194565, 0.021674036979675293, 0.01883990690112114, -0.02508367970585823, -0.02593066170811653, 0.03896114602684975, -0.006466377060860395, -0.007096183951944113, 0.02449730783700943, 0.05203506350517273, -0.03340147063136101, -0.012487546540796757, 0.010266934521496296, 0.014963338151574135, 0.012487546540796757, -0.01316078845411539, -0.016070928424596786, -0.019209103658795357, -0.015462839975953102, -0.003273908980190754, -0.015886330977082253, 0.0017957634991034865, -0.03511715307831764, -0.008133193477988243, 0.019697746261954308, -0.014561564661562443, 0.006520670838654041, -0.04326120391488075, -0.0022083953954279423, 0.028667062520980835, 0.013595137745141983, -0.009208207949995995, 0.002684822538867593, -0.01841641589999199, -0.0015120790340006351, -0.0021595312282443047, -0.020609881728887558, 0.018535861745476723, 0.022781627252697945, 0.0070744664408266544, 0.004620392341166735, 0.0022382568567991257, -0.028276149183511734, 0.007622832432389259, 0.02262960560619831, 0.013768876902759075, -0.01700478047132492, -0.001410278375260532, 0.027255427092313766, 0.0034693661145865917, 0.030339308083057404, 0.002124240156263113, 0.019415419548749924, -0.00853496603667736, 0.006151474080979824, 0.020609881728887558, -0.015473699197173119, 0.04452081769704819, 0.013519125990569592, 0.014941620640456676, 0.02404124103486538, 0.034813106060028076, -0.022607889026403427, 0.007508815731853247, 0.00159216218162328, -0.014507271349430084, 0.006862720940262079, -0.028102409094572067, 0.013073918409645557, -0.04408646747469902, -0.02100079506635666, -0.0136711485683918, -0.028276149183511734, 0.02004522643983364, 0.0024377861991524696, -0.03822275251150131, 0.017471706494688988, -0.007503386586904526, -0.0020292263943701982, -0.0027364015113562346, -0.005122608505189419, 0.019350267946720123, 0.007997458800673485], [0.05017384514212608, -0.0003520203463267535, 0.08807111531496048, 0.0009604977676644921, -0.06187218055129051, -0.03716334328055382, 0.002418619580566883, -0.005629545543342829, 0.05244234576821327, 0.03843103349208832, -0.03907599672675133, -0.02844518981873989, -0.043612994253635406, -0.023619070649147034, 0.010647485964000225, 0.04521428793668747, -0.0008868271834217012, 0.0034805883187800646, -0.01323290728032589, -0.033315788954496384, 0.024041635915637016, 0.03811967000365257, -0.0008020364912226796, -0.010803167708218098, 0.008573589846491814, 0.014444997534155846, 0.0522199422121048, 0.008351188153028488, 0.05662349984049797, 0.0028147727716714144, -0.006216130219399929, -0.014778600074350834, 0.00933531578630209, -0.04995144531130791, -0.02628789283335209, 0.02646581456065178, 0.006505252793431282, 0.01813686639070511, 0.03318234905600548, 0.019237756729125977, -0.049417681992053986, 0.04559237137436867, 0.01623533107340336, -0.0011050589382648468, 0.00856802985072136, 0.04746054485440254, 0.045347727835178375, 0.05066313222050667, -0.037363503128290176, 0.03260410577058792, 0.023307709023356438, 0.01567932777106762, 0.03178121894598007, 0.015979569405317307, 0.05337643250823021, 0.01586836948990822, -0.0181257463991642, -0.019337836652994156, 0.019237756729125977, -0.002372749149799347, 0.009657798334956169, -0.05733518674969673, -0.003619589377194643, 0.013833392411470413, 0.0313141755759716, -0.013766671530902386, 0.03373835235834122, 0.016346532851457596, 0.00493732001632452, -0.05502220615744591, 0.010247163474559784, -0.010174882598221302, -0.026132211089134216, -0.03424987941980362, 0.03920943662524223, 0.02247370220720768, 0.007155777886509895, 0.0014734119176864624, 0.0183815099298954, 0.030202165246009827, -0.015201163478195667, 0.04143345728516579, 0.0038892515003681183, 0.03389403596520424, -0.028200548142194748, 0.039454080164432526, 0.0014914821367710829, 0.0078285438939929, -0.0328265056014061, -0.01650221459567547, -0.029334798455238342, -0.0716133788228035, 0.040543850511312485, -0.007250298745930195, -0.01368883065879345, 0.005001260433346033, -0.010747566819190979, -0.019371196627616882, -0.06245042756199837, 0.08718150854110718, 0.018648391589522362, 0.04883943498134613, 0.04568133130669594, 0.035851169377565384, 0.0036918700207024813, -0.017525261268019676, -0.04285682737827301, -0.01526788342744112, -0.001191239687614143, -0.004136673640459776, -0.05626765638589859, -0.022251300513744354, -0.016368772834539413, 0.039009276777505875, -0.0046898978762328625, -0.02528708428144455, 0.002852303208783269, 0.014567318372428417, 0.01177617534995079, -0.021973298862576485, 0.04279010742902756, -0.006710974499583244, -0.028489671647548676, -0.04528100788593292, -0.015056601725518703, 0.0008791821310296655, -0.025754129514098167, 0.03545084595680237, -0.03209257870912552, -0.02183985710144043, 0.00750050088390708, 0.003038564696907997, 0.036295972764492035, -0.024264037609100342, 0.0025534506421536207, -0.03378283232450485, 0.043524034321308136, 0.02375251241028309, -0.010397284291684628, -0.0775737464427948, 0.032648585736751556, -0.01720277965068817, 0.0009097623988054693, 0.012632422149181366, -0.028600871562957764, 0.06529717147350311, -0.032403942197561264, 0.11173466593027115, -0.027755744755268097, 0.024775560945272446, -0.03754142299294472, -0.013555389828979969, 0.006293971091508865, -0.025843089446425438, 0.01676909625530243, -0.011175690218806267, 0.028022626414895058, 0.025576207786798477, 0.0015220623463392258, 0.005034620873630047, 0.0003589703992474824, -0.032759785652160645, -0.04777190834283829, -0.029112396761775017, 0.018637271597981453, 0.035028282552957535, -0.0044480361975729465, -0.016101891174912453, -0.04674885794520378, -0.01195409707725048, -0.020994730293750763, -0.015879489481449127, -0.018904153257608414, -0.035851169377565384, -0.042367544025182724, 0.009129594080150127, 0.0018375949002802372, 0.03622925281524658, -0.016557814553380013, -0.010135962627828121, -0.030824890360236168, -0.0026173912920057774, 0.02390819415450096, -0.029023434966802597, -0.016068531200289726, 0.0027869725599884987, 0.009179634042084217, -0.03253738209605217, 0.0020099563989788294, -0.009807919152081013, 0.003333247033879161, 0.012632422149181366, -0.005026280879974365, 0.0044619361869990826, -0.021239371970295906, -0.02808934822678566, -0.013933473266661167, -0.008000904694199562, 0.0019154355395585299, -0.0035890091676265, 0.029735121876001358, -0.020327525213360786, -0.00019164780678693205, 0.018792953342199326, -0.05524460971355438, -0.042634427547454834, 0.04585925117135048, -0.012954904697835445, 0.041099853813648224, 0.023174267262220383, 0.02039424516260624, -0.04087745025753975, 0.0007693712250329554, 0.0075338613241910934, -0.01245450135320425, 0.01821470819413662, -0.004367415327578783, 0.007378180045634508, -0.046526458114385605, 0.010180442593991756, -0.024686601012945175, 0.00946875661611557, 0.05608973652124405, -0.035473085939884186, -0.03776382654905319, -0.05066313222050667, 0.005023500882089138, 0.010208242572844028, -0.011359171941876411, -0.03987664356827736, -0.01713605970144272, 0.037007659673690796, -0.055511489510536194, -0.031758978962898254, 0.046704377979040146, -0.006888895761221647, -0.018348148092627525, -0.010541845113039017, -0.033760592341423035, -0.020049521699547768, 0.027155259624123573, 0.040188007056713104, 0.011209051124751568, 0.046704377979040146, -0.03771934658288956, -0.04790534824132919, -0.020772328600287437, -0.00933531578630209, 0.004734378308057785, 0.007350379601120949, 0.01612413115799427, 0.002985744271427393, 0.021628575399518013, -0.008579149842262268, 0.059025440365076065, 0.05871407687664032, -0.052308905869722366, 0.03869791328907013, -0.012966025620698929, -0.039187196642160416, 0.011542653664946556, 0.01857054978609085, -0.026176692917943, 0.02156185545027256, 0.016913658007979393, -0.014066914096474648, 0.04494740441441536, 0.013966833241283894, 0.0066998545080423355, -0.03098057210445404, -0.017347341403365135, 0.006132729817181826, -0.02419731579720974, -0.014578438363969326, -0.012209858745336533, -0.011353611946105957, 0.01273250300437212, 0.007506060879677534, -0.005131921730935574, -0.013522029854357243, -0.06196114420890808, 0.017236139625310898, 0.03418315574526787, -0.0009264425025321543, -0.01273250300437212, 0.012343300506472588, 0.07534973323345184, 0.010124841704964638, -0.020138483494520187, -0.008128785528242588, 0.019882721826434135, 0.006166089791804552, -0.04065505042672157, -0.012376660481095314, -0.00545718427747488, -0.03200361877679825, -0.10239379107952118, 0.04519204795360565, 0.01385563239455223, -0.019816000014543533, -0.0038086308632045984, 0.03645165637135506, 0.006755454931408167, 0.0032887666020542383, -0.06627573817968369, 0.00557116512209177, 0.055867332965135574, 0.020538806915283203, -0.01513444259762764, -0.038542233407497406, -0.013155066408216953, 0.07201370596885681, -0.035562049597501755, -0.023063067346811295, -0.08348963409662247, -0.0038058508653193712, -0.015468045137822628, 0.026688216254115105, -0.02673269622027874, 0.007127977907657623, 0.04754950478672981, -0.034116435796022415, 0.028689833357930183, -0.018737351521849632, 0.03754142299294472, 0.033204589039087296, 0.012154258787631989, 0.01940455660223961, -0.0059158881194889545, -0.044547080993652344, -0.042545463889837265, -0.014100274071097374, 0.008356748148798943, -0.003333247033879161, 0.014511717483401299, -0.046081654727458954, 0.006388491950929165, -0.007289219181984663, 0.013210667297244072, 0.018514949828386307, -0.032581865787506104, -0.03527292609214783, 0.0052959430031478405, 0.005348763428628445, 0.005429383832961321, 0.044547080993652344, 0.015123322606086731, 0.058402713388204575, 0.0231965072453022, 0.005223662592470646, -0.006683174055069685, 0.007650622166693211, 0.02546500600874424, -0.008923872373998165, -0.045436687767505646, -0.014422756619751453, -0.005604525562375784, 0.0130883464589715, -0.04510308429598808, 0.012209858745336533, -0.042011700570583344, -0.02381923235952854, 0.02844518981873989, 0.0001341360912192613, -0.00303578469902277, -0.011842896230518818, -0.0249090027064085, -0.0023060287348926067, 0.005526684690266848, -0.0004368110385257751, 0.010636365972459316, 0.02882327325642109, -0.051775138825178146, -0.024864520877599716, -0.020138483494520187, -0.0221178587526083, -0.0015290124574676156, 0.018325908109545708, -0.027422143146395683, -0.0060938093811273575, 0.043902117758989334, 0.01649109460413456, 0.023307709023356438, 0.06614229828119278, 0.005081881303340197, 0.022796185687184334, 0.012031937949359417, 0.05346539244055748, 0.05497772619128227, 0.016201971098780632, -0.03247066214680672, 0.02275170385837555, 0.029579440131783485, 0.00960775837302208, -0.003152545541524887, -0.017725422978401184, 0.07672861963510513, 0.012877064757049084, -0.025509487837553024, -0.06511925160884857, 0.0031970259733498096, -0.014356036670506, 0.03453899919986725, 0.001891805324703455, -0.011242411099374294, 0.029601680114865303, 0.02346339076757431, 0.030246645212173462, 0.03860895335674286, -0.03533964604139328, -0.009841280058026314, -0.033582672476768494, -0.021862097084522247, 0.01385563239455223, 0.04648197814822197, 0.032292742282152176, -0.019337836652994156, 0.019537998363375664, 0.028111588209867477, -0.03805295005440712, -0.022596023976802826, -0.010269403457641602, -0.04025472700595856, -0.016513334587216377, 0.0014289316022768617, -0.008423468098044395, 0.00824554730206728, 0.024864520877599716, -0.0378972664475441, -0.017892224714159966, -0.02773350477218628, -0.035828929394483566, 0.06707638502120972, -0.015301244333386421, -0.07276987284421921, -0.021005850285291672, 0.004292354919016361, -0.0130883464589715, 0.015890609472990036, 0.010397284291684628, 0.01291042473167181, -0.01566820777952671, 0.023152027279138565, 0.02962392009794712, 0.005301502998918295, 0.003964312374591827, -0.009757879190146923, 0.021161532029509544, 0.030313365161418915, -0.040632810443639755, 0.030135445296764374, -0.005782446824014187, -0.024308517575263977, -0.003733570221811533, -0.028400709852576256, 0.04192274063825607, -0.036918699741363525, -0.04857255518436432, 0.04772742837667465, -0.012676903046667576, 0.07232506573200226, 0.0016735736280679703, 0.04919527843594551, 0.046971261501312256, 0.015101082623004913, 0.02408611588180065, -0.015201163478195667, -0.00423675449565053, 0.007411540020257235, -0.023708032444119453, -0.012788103893399239, -0.014589558355510235, 0.030824890360236168, 0.04928423836827278, 0.04594821110367775, -0.018414869904518127, -0.028934475034475327, -0.010714206844568253, 0.0023296589497476816, 0.0015637626638635993, 0.023796992376446724, -0.018881913274526596, -0.002682721707969904, -0.04603717476129532, 0.03607357293367386, 0.04321267083287239, 0.0018028445774689317, -0.014800840057432652, 0.023307709023356438, -0.043524034321308136, -0.01273250300437212, 0.010030321776866913, -0.0010849038371816278, -0.007961984723806381, 0.009185194037854671, -0.018603911623358727, -0.00015759252710267901, -0.004737158305943012, -0.012610182166099548, -0.002332438947632909, 0.05315403267741203, 0.033582672476768494, 0.046348534524440765, -0.01041396427899599, 0.029490478336811066, 0.014189234934747219, 0.0008360917563550174, -0.02202889882028103, -0.036918699741363525, 0.044280197471380234, -0.007711782585829496, -0.011676094494760036, 0.026688216254115105, 0.02281842567026615, 0.037296783179044724, 0.005081881303340197, -0.012521221302449703, 0.0405660904943943, -0.026176692917943, -0.00057233712868765, -0.01794782467186451, 0.007344819605350494, -0.035851169377565384, -0.011442572809755802, 0.014645159244537354, -0.03431659936904907, 0.006583093199878931, -0.05288714915513992, -0.011520413681864738, -0.012966025620698929, 0.011609374545514584, -0.024708840996026993, -0.049506641924381256, 0.020705608651041985, -0.01865951158106327, -0.01847046986222267, 0.03026888519525528, 0.006277291104197502, 0.023040827363729477, -0.03269306570291519, -0.014478357508778572, -0.0015387424500659108, 0.033204589039087296, -0.01731397956609726, -0.008434588089585304, 0.04410227760672569, 0.02844518981873989, 0.03618477284908295, 0.0011849845759570599, -0.02408611588180065, 0.005095781292766333, 0.024575399234890938, 0.034294359385967255, -0.02065000683069229, -0.01693589799106121, 0.0015331824542954564, 0.00815102644264698, 0.014144754968583584, -0.0168580561876297, -0.006149409804493189, 0.024686601012945175, 0.010758686810731888, 0.037296783179044724, 0.01436715666204691, 0.02019408345222473, 0.0028300629928708076, -0.024419717490673065, -0.06258387118577957, 0.010997769422829151, -0.03342699259519577, -0.0020308063831180334, 0.026777178049087524, 0.010325003415346146, -0.022862905636429787, 0.048617035150527954, 0.007255858741700649, 0.000507354096043855, -0.010113721713423729, -0.02381923235952854, -0.026665976271033287, 0.019282236695289612, 0.03589564934372902, 0.01517892349511385, -0.06053777039051056, -0.0024644900113344193, 0.031936898827552795, 0.01323290728032589, -0.0333380289375782, 0.014622918330132961, 0.06720982491970062, 0.0006811055354773998, -0.009541037492454052, 0.01385563239455223, 0.015301244333386421, -0.011420332826673985, 0.042812347412109375, -0.030135445296764374, 0.01391123328357935, -0.018337028101086617, -0.013900112360715866, -0.006166089791804552, 0.0034750280901789665, -0.006655374076217413, 0.012332179583609104, -0.0010522385127842426, -0.043457310646772385, 0.007033457048237324, -0.03180345892906189, -0.0429680272936821, 0.011553773656487465, 0.003402747679501772, -0.014923160895705223, 0.0027536123525351286, -0.00860694982111454, -0.027800224721431732, 0.012287699617445469, -0.04514756798744202, -0.013699951581656933, -0.0005612170789390802, 0.03433883935213089, -0.010097041726112366, -0.01115345023572445, 0.015156682580709457, 0.014923160895705223, 0.016513334587216377, -0.003316566813737154, -0.008517988957464695, -0.04568133130669594, 0.02310754731297493, -0.008262227289378643, 0.005440504290163517, 0.008529108949005604, 0.0003690479788929224, -0.004934540018439293, 0.025932051241397858, 0.013421948999166489, 0.015823887661099434, -0.0027077419217675924, -0.021105932071805, -0.00430347491055727, 0.030847130343317986, 0.03109177201986313, 0.011765055358409882, -0.03849775344133377, 0.021962178871035576, 0.03398299589753151, 0.010386164300143719, -0.039187196642160416, -0.03778606653213501, -0.013444188982248306, 0.02220682054758072, 0.021072570234537125, 0.0026507514994591475, 0.026577016338706017, -0.008951672352850437, -0.02582084946334362, 0.03260410577058792, 0.004359075333923101, -0.005059640854597092, 0.0299130417406559, -0.011081170290708542, 0.02637685462832451, 0.045547887682914734, -0.003316566813737154, 0.003058024914935231, -0.004083853214979172, -0.0434795543551445, -0.030246645212173462, 0.007133537903428078, 0.01713605970144272, 0.014400516636669636, 0.009001713246107101, -0.010981089435517788, 0.013377468101680279, 0.00750050088390708, 0.009151834063231945, -0.005468304269015789, 0.015534766018390656, 0.0012989655369892716, 0.021183772012591362, 0.02028304524719715, 0.006060448940843344, 0.0022837885189801455, -0.005487764719873667, -0.02220682054758072, 0.006694294512271881, 0.017958946526050568, 0.005076321307569742, -0.00022778809943702072, 0.012198738753795624, -0.015145562589168549, 0.018325908109545708, -0.016802456229925156, 0.004881719592958689, -0.0011015839409083128, -0.022518182173371315, -0.02628789283335209, -0.004500856623053551, -0.004650977905839682, -0.013622110709547997, 0.03694093972444534, 0.02619893290102482, -0.03796398639678955, -0.06863319873809814, -0.051241375505924225, -0.002278228523209691, -0.02537604607641697, -0.012676903046667576, 0.03353819251060486, 0.006199450232088566, -0.024619879201054573, 2.8039134122082032e-05, -0.03142537549138069, -0.0038781315088272095, 0.005876967683434486, -0.040365926921367645, 0.013355228118598461, 0.01322178728878498, -0.019782640039920807, -0.022507062181830406, -0.01631317287683487, -0.010847647674381733, -0.033115629106760025, -0.02328546904027462, 0.015479165129363537, -0.009713399223983288, 0.006538613233715296, -0.027399903163313866, 0.0157794076949358, 0.00869035068899393, 0.024130595847964287, 0.007784062996506691, 0.0008680620230734348, 0.023263229057192802, -0.003455568104982376, -0.0008548569167032838, -0.02002728171646595, 0.01566820777952671, -0.024441957473754883, -0.004242314491420984, -0.009046193212270737, -0.05257578566670418, -0.03476140275597572, -0.028245029971003532, -0.0013100856449455023, -0.00874039065092802, -0.00029659364372491837, -0.004389655776321888, -0.04303474724292755, 0.009485436603426933, -0.05004040524363518, 0.0064607723616063595, -0.027110779657959938, -0.04777190834283829, 0.014611798338592052, -0.0010348634095862508, 0.0007078632479533553, 0.008401228114962578, 0.020460965111851692, -3.173134973621927e-05, 0.03427211940288544, -0.0033471472561359406, -0.02092801034450531, 0.0011780345812439919, -0.015423565171658993, -0.00038781313924118876, -0.03195913881063461, 0.023708032444119453, -0.027866946533322334, 0.005943688098341227, 0.008012024685740471, -0.018103506416082382, 0.025331566110253334, 0.011220171116292477, 0.016891416162252426, 0.018337028101086617, -0.024041635915637016, -0.018870793282985687, 0.005490544717758894, -0.010647485964000225, 0.013877872377634048, 0.0052459025755524635, 0.01794782467186451, 0.02608773112297058, 0.01893751323223114, -0.053242992609739304, -0.016446612775325775, -9.738766675582156e-05, 0.042990267276763916, 0.019526878371834755, -0.0033805074635893106, -0.01417811494320631, -0.015323484316468239, -0.012176498770713806, -0.028978955000638962, 0.025843089446425438, 0.03251514211297035, -0.013811152428388596, 0.01109229028224945, 0.020527686923742294, 0.0038892515003681183, -0.026577016338706017, -0.02075008861720562, -0.009251914918422699, 0.018159106373786926, -0.027310941368341446, -0.00566568598151207, -0.0324484221637249, -0.005307062994688749, 0.012020817957818508, -0.008256667293608189, -0.013210667297244072, 0.012265459634363651, 0.014400516636669636, -0.0029829642735421658, 0.009413156658411026, -0.0010056731989607215, 0.0025200904347002506, 0.011731695383787155, 0.023485630750656128, 0.07904160022735596, -0.008012024685740471, 0.025665167719125748, 0.015468045137822628, 0.016001809388399124, 0.033115629106760025, -0.023485630750656128, 0.02073896862566471, 0.03807519003748894, 0.014244835823774338, 0.00763394171372056, 0.015723807737231255, 0.00865698978304863, -0.003016324480995536, 0.015334604308009148, 0.007183578331023455, -0.03860895335674286, 0.02682165801525116, 0.01622421108186245, 0.03445003926753998, 0.021617455407977104, -0.017614223062992096, -0.005081881303340197, -0.03182569891214371, 0.03887583687901497, 0.011359171941876411, -0.009257474914193153, -0.003905931720510125, -0.01768094301223755, 0.0156237268820405, -0.006660934071987867, 0.004517536610364914, -0.05479980632662773, 0.01115345023572445, -0.041188813745975494, 0.0063328915275633335, 0.03453899919986725, -0.01190961617976427, -0.020138483494520187, -0.028400709852576256, 0.004712138324975967, -0.010808727703988552, 0.006399611942470074, 0.005821367260068655, -0.019248876720666885, 0.008951672352850437, 0.017258379608392715, -0.01177617534995079, 0.007906383834779263, 0.03369387239217758, 0.00833450723439455, 0.006538613233715296, 0.024953482672572136, -0.021784257143735886, -0.006560853216797113, -0.0009702278766781092, -0.01901535503566265, -0.01092548854649067, -0.02635461464524269, 0.04441364109516144, 0.005498884711414576, -0.006627573631703854, 0.012665783055126667, 0.0324484221637249, -0.02328546904027462, -0.02466435916721821, -0.025309326127171516, 0.03925391659140587, 0.03811967000365257, 0.01822582818567753, 0.005432163830846548, -0.01431155577301979, -0.005462744273245335, 0.019893841817975044, -0.0015999029856175184, 0.05782447010278702, -0.0027744625695049763, -0.044991884380578995, -0.0404326468706131, -0.012309939600527287, -0.017191659659147263, -0.03413867577910423, -0.028467431664466858, 0.02129497192800045, -0.04746054485440254, 0.050529688596725464, -0.0035139485262334347, -0.01649109460413456, 0.02238474227488041, 0.02646581456065178, 0.02590980939567089, 0.0091907549649477, 0.01730285957455635, 0.011720575392246246, 0.022773943841457367, 0.04572581127285957, -0.02637685462832451, 0.0008201066520996392, 0.021628575399518013, 0.027600063011050224, 0.010274963453412056, -0.005496104713529348, 0.024975722655653954, 0.0008465168648399413, 0.00021110796660650522, 0.02101697027683258, -0.02502020262181759, 0.030024243518710136, -0.003424987895414233, -0.03289322555065155, 0.001584612880833447, 0.01874847151339054, 0.006883335765451193, 0.014133634977042675, 0.0019807659555226564, 0.0027174721471965313, -0.021128172054886818, 0.007873023860156536, 0.008640309795737267, 0.020505446940660477, 0.015012121759355068, 0.03580668941140175, -0.013488668948411942, -0.02401939406991005, -0.031202973797917366, -0.011898496188223362, -0.008412348106503487, -0.023085307329893112, 0.015890609472990036, -0.02375251241028309, 0.03287098556756973, -0.0011120090493932366, 0.0018459350103512406, 0.00412277365103364, 0.01621309109032154, 0.008445708081126213, -0.00391427194699645, 0.013622110709547997, 0.017714302986860275, 0.00498458044603467, 0.003630709368735552, 0.02120601199567318, 0.02381923235952854, -0.03725230321288109, 0.040832970291376114, -0.023040827363729477, 0.02817830815911293, 0.004603717476129532, 0.024797800928354263, 0.027044059708714485, -0.012665783055126667, -0.024708840996026993, 0.05533356964588165, 0.031758978962898254, -0.02082792855799198, -0.02646581456065178, -0.016446612775325775, 0.006710974499583244, 0.0038086308632045984, -0.015979569405317307, -0.01177617534995079, 0.011342491954565048, -0.0017069338355213404, 0.01783662475645542, -0.0103305634111166, 0.03260410577058792, 0.019371196627616882, -0.03307114914059639, -0.004506416618824005, 0.013844512403011322, -0.028111588209867477, 0.04161137714982033, 0.010174882598221302, -0.012788103893399239, 0.0017708743689581752, 0.021728655323386192, -0.013977953232824802, 0.0505741685628891, 0.00875151064246893, -0.061382897198200226, 0.007678422145545483, -0.018503829836845398, 7.723250018898398e-05, -0.016691256314516068, 0.02482004091143608, -0.0156237268820405, 0.0278224665671587, 0.016279812902212143, -0.00875151064246893, -0.03705213963985443, 0.017147179692983627, -0.03640717640519142, 0.003305446822196245, 0.0037307902239263058, 0.025264844298362732, -0.004773298744112253, 0.05502220615744591, 0.012476741336286068, 0.02862311154603958, 0.007789622992277145, -0.0017708743689581752, 0.025064682587981224, 0.0221178587526083, 0.03734126314520836, 0.0006216825568117201, -0.019426798447966576, 0.05119689553976059, 0.02519812434911728, 0.004164473619312048, 0.015290124341845512, 0.03160329535603523, 0.0105529660359025, -0.012076417915523052, 0.0303578469902277, 0.0018125746864825487, 0.02691061794757843, -0.0104584451764822, -0.023307709023356438, 0.023507870733737946, -0.004214514046907425, -0.0025909810792654753, -0.05266474559903145, -0.01659117452800274, -0.003447227878496051, -0.037363503128290176, -0.011231291107833385, -0.026399094611406326, 0.00955215748399496, -0.022318020462989807, -0.010881008580327034, -0.012865944765508175, 0.024775560945272446, -0.017703182995319366, 0.0008555519161745906, -0.0018167446833103895, -0.021139292046427727, 0.0012656052131205797, 0.0027049619238823652, 0.0006015273975208402, -0.03431659936904907, 0.03522844612598419, -0.0104584451764822, 0.023974914103746414, 0.02038312517106533, 0.0012336350046098232, -0.023152027279138565, 0.06133841723203659, -0.010525165125727654, -0.004653757903724909, -0.04343507066369057, -0.013977953232824802, 0.015501406043767929, 0.02753334306180477, 0.014022434130311012, -0.004267334472388029, -0.006688734050840139, -0.006060448940843344, -0.014967641793191433, 0.017914464697241783, 0.009913560003042221, -0.01684693619608879, 0.02537604607641697, -0.0009028123458847404, -0.02408611588180065, -0.004406335763633251, -0.003355487249791622, 0.012754743918776512, -0.005643445998430252, -0.02437523752450943, -0.027133019641041756, 0.03987664356827736, 0.029223596677184105, 0.014433876611292362, 0.03923167660832405, 0.02165081538259983, -0.03378283232450485, 0.012387780472636223, -0.005017940886318684, 0.007767383009195328, -0.008862711489200592, -0.02873431332409382, 0.02644357457756996, -0.006199450232088566, -0.02011624351143837, -0.007506060879677534, -0.0001757495483616367, 0.003680749796330929, -0.002507580444216728, 0.020182963460683823, 0.017714302986860275, 0.0221845805644989, 0.05889199674129486, -0.03825310990214348, -0.023685792461037636, 0.022329140454530716, -0.0006692904280498624, 0.03507276624441147, -0.002311588730663061, 0.027110779657959938, -0.003652949584648013, -0.008846031501889229, -0.021517373621463776, -0.0496845617890358, 0.023218749091029167, -0.004781638737767935, -0.015990689396858215, -0.030335605144500732, 0.035473085939884186, 0.013666590675711632, 0.004726038314402103, -0.03811967000365257, -0.05773550644516945, -0.005204202141612768, -0.003925391938537359, -0.005568385124206543, -0.015512526035308838, 0.02381923235952854, 0.019537998363375664, -0.00607156939804554, 0.02120601199567318, 0.03947632014751434, -0.0075616613030433655, -0.0034778083208948374, -0.015301244333386421, -0.001958525972440839, -0.024753320962190628, 0.023485630750656128, 0.05546700954437256, -0.003402747679501772, -0.011409212835133076, 0.04414675757288933, 0.04223410412669182, 0.008390108123421669, -0.02166193537414074, 0.006738774478435516, 0.004119993187487125, 0.01531236432492733, -0.010708646848797798, 0.019860481843352318, -0.029735121876001358, 0.00969671830534935, -0.011398092843592167, -0.022329140454530716, -0.029490478336811066, 0.0020030061714351177, 0.0353618860244751, -0.009585517458617687, -0.005643445998430252, -0.03958752006292343, 0.03467244282364845, -0.007239178754389286, -0.034294359385967255, -0.026777178049087524, -0.0006818005349487066, -0.016702376306056976, 0.0056267655454576015, 0.02010512351989746, 0.00037912558764219284, 0.0456368513405323, 0.019082074984908104, 0.0059103281237185, 0.04185602068901062, -0.02644357457756996, -0.009819040074944496, 0.05444396287202835, 0.028689833357930183, -0.012999385595321655, 0.002625731285661459, 0.00407551322132349, 0.03251514211297035, 0.025843089446425438, -0.00214200746268034, 0.02682165801525116, -0.009830160066485405, -0.01875959150493145, 0.035384126007556915, -0.03424987941980362, 0.013021625578403473, 0.014711879193782806, -0.01801454648375511, -0.008668110705912113, 0.02092801034450531, 0.007127977907657623, 0.019248876720666885, 0.0020599965937435627, -0.05942576378583908, 0.012699143029749393, 0.027689024806022644, 0.0003249151341151446, -0.06494132429361343, 0.00435073534026742, 0.007183578331023455, -0.0235745906829834, 0.004306254908442497, -0.018503829836845398, -0.03133641555905342, 0.008401228114962578, 0.012654663063585758, 0.009685598313808441, 0.03044680692255497, -0.034383319318294525, 0.0027967027854174376, 0.018726231530308723, -0.03923167660832405, 0.013244027271866798, -0.0248422808945179, -0.007795183453708887, -0.008484628982841969, -0.022762823849916458, -0.015612606890499592, 0.022907385602593422, 0.013332988135516644, -0.030936090275645256, 0.013844512403011322, 0.028156068176031113, 0.05457740277051926, 0.04078849032521248, -0.0019126555416733027, 0.021083690226078033, -0.013421948999166489, 0.0021837076637893915, -0.00887939240783453, 0.021639695391058922, 0.01849270984530449, -0.04808327183127403, 0.0012572652194648981, 0.016791336238384247, -0.004314594902098179, 0.001307305647060275, -0.035651009529829025, -0.01802566647529602, -0.007656182162463665, 0.011336931958794594, -0.006844415329396725, 0.027133019641041756, 0.021261611953377724, -0.04058833047747612, -0.023418910801410675, 0.00823998637497425, 0.0425899438560009, 0.013800031505525112, 0.021083690226078033, 0.0026160012930631638, -0.008395668119192123, 0.004731598310172558, -0.018815193325281143, -0.0074838208965957165, 0.011709455400705338, -0.010786487720906734, 0.02057216688990593, 0.00156793266069144, -0.01894863322377205, 0.04937320202589035, -0.013610990718007088, -0.007456020452082157, 0.011270211078226566, -0.016880296170711517, -0.021239371970295906, 0.0010584936244413257, 0.013466428965330124, 0.020594406872987747, 0.006338451523333788, -0.011753935366868973, -0.007556101307272911, -0.004281234927475452, 0.011108970269560814, -0.007978664711117744, 0.004506416618824005, 0.02673269622027874, -0.02419731579720974, -0.025398286059498787, -0.025487245991826057, -0.007333699613809586, -0.01967144012451172, -0.01417811494320631, 0.007945304736495018, 0.02119489200413227, -0.017436301335692406, -0.0033276870381087065, -0.0009292225586250424, 0.0013788911746814847, -0.04261218383908272, 0.017147179692983627, -0.015634845942258835, 0.010158202610909939, 0.021417293697595596, -0.011181251145899296, 0.021717535331845284, 0.010108161717653275, 0.013010505586862564, -0.00366962980479002, 0.01848158985376358, -0.033938515931367874, 0.010725326836109161, -0.01984936185181141, -0.040810730308294296, -0.011014449410140514, 0.0005942298448644578, -0.05044072866439819, 0.02673269622027874, -0.01566820777952671, -0.0037613704334944487, 0.0018195247976109385, 0.01482308004051447, 0.02628789283335209, -0.010341684333980083, -0.018092386424541473, 0.011342491954565048, 0.04370195418596268, -0.030469046905636787, -0.008323387242853642, 0.013177307322621346, -0.04089969024062157, 0.019960561767220497, -0.025887569412589073, 0.018348148092627525, -0.007822983898222446, -0.024152835831046104, -0.00787858385592699, 0.00960219744592905, -0.05328747257590294, -0.0037808306515216827, 0.006833295337855816, -0.016446612775325775, -0.014111394062638283, -0.00412277365103364, -0.003121965331956744, 0.007361499592661858, -0.0051819621585309505, -0.005704606417566538, -0.004042152781039476, 0.010981089435517788, -0.03920943662524223, 0.0064607723616063595, 0.006849975790828466, 0.011542653664946556, 0.014689639210700989, 0.010113721713423729, -0.009051753208041191, 0.014845320023596287, -0.006516372784972191, 0.004278454929590225, 0.006766574922949076, 0.004545337054878473, 0.005498884711414576, -0.034850362688302994, -0.030224405229091644, 0.002269888296723366, -0.003936511930078268, 0.010097041726112366, -0.016824696213006973, 0.002499240217730403, 0.016168611124157906, -0.013744431547820568, 0.015190043486654758, 0.018915273249149323, -0.04594821110367775, -0.041366737335920334, -0.019816000014543533, 0.011014449410140514, 0.020794568583369255, -0.018337028101086617, -0.04665989801287651, -0.029045674949884415, 0.03380507603287697, -0.02003840170800686, -0.01531236432492733, -0.018281428143382072, 0.02056104689836502, -0.01702485792338848, -0.01436715666204691, -0.005143041722476482, -0.03825310990214348, 0.004108873195946217, -4.934539902023971e-05, 0.0017208339413627982, -0.04621509462594986, 0.0143226757645607, 0.025665167719125748, 0.019159914925694466, 0.02582084946334362, 0.03287098556756973, 0.004945660009980202, -0.012020817957818508, -0.012832583859562874, -0.03017992526292801, -0.023596830666065216, -0.038920316845178604, -0.001197494682855904, 0.04496964439749718, -0.01304386556148529, -0.00924079492688179, 0.05689037963747978, -0.024419717490673065, -0.03823086991906166, -0.029401518404483795, 0.011131210252642632, -0.01241002045571804, -0.03400523588061333, 0.003933731932193041, -0.015746047720313072, -0.03614029288291931, -0.002938483841717243, 0.025754129514098167, -0.024619879201054573, 0.03198137879371643, -0.0018487150082364678, 0.02219570055603981, 0.02236250229179859, 0.003994892351329327, -0.025420526042580605, -0.005371003411710262, 0.007606141734868288, 0.006849975790828466, -0.010769807733595371, -0.005540585145354271, -0.030491286888718605, 0.03589564934372902, -0.001661063521169126, -0.00020172538643237203, 0.0010098431957885623, 0.06792151182889938, 0.01603516936302185, -0.026688216254115105, -0.00120096979662776, -0.01273250300437212, -0.025665167719125748, 0.054488442838191986, 0.03182569891214371, -0.02355235069990158, -0.012009697034955025, 0.021684175357222557, 0.002725812140852213, 0.023063067346811295, 0.043546274304389954, 0.012521221302449703, 0.011359171941876411, -0.01993832178413868, 0.006922256201505661, -0.023129787296056747, 0.0010035880841314793, 0.0020460966043174267, -0.0018806852167472243, -0.008517988957464695, -0.014533957466483116, -0.007361499592661858, 0.038008470088243484, 0.007077937480062246, -0.020349765196442604, -0.008645869791507721, 0.004973460454493761, 0.022273540496826172, -0.028133828192949295, 0.006038208957761526, 0.02728870138525963, -0.015190043486654758, -0.018103506416082382, 0.0514637790620327, -0.014400516636669636, -0.00855690985918045, -0.05266474559903145, -0.011698334477841854, -0.004047712776809931, 0.019271116703748703, 0.009390915744006634, -0.010002520866692066, -0.025598447769880295, 0.013922353275120258, -0.03778606653213501, 0.017180539667606354, -0.0013656860683113337, -0.011676094494760036, 0.039454080164432526, 0.04519204795360565, 0.0090628731995821, -0.01513444259762764, -0.01594620943069458, 0.02401939406991005, 0.027310941368341446, -0.04866151511669159, 0.0027883625589311123, 0.06685398519039154, -0.024486439302563667, 0.014267075806856155, -0.029290318489074707, -0.01803678646683693, -0.006027088966220617, -0.004670437891036272, 0.015279004350304604, -0.01712493970990181, 0.012676903046667576, 0.019182154908776283, -0.009774559177458286, 0.038653433322906494, 0.030758170410990715, 0.011676094494760036, 0.016379892826080322, -4.982321843272075e-05, -0.021795377135276794, -0.0009764829301275313, -0.030936090275645256, 0.012165378779172897, -0.013622110709547997, -0.028689833357930183, -0.03994336351752281, -0.01064192596822977, 0.01731397956609726, -0.012954904697835445, -0.03771934658288956, -0.012532341293990612, -0.00041318085277453065, -0.0009750929311849177, 0.003121965331956744, -0.014845320023596287, 0.01877071149647236, 0.014845320023596287], [0.05111934244632721, -0.021534781903028488, 0.04764774069190025, -0.002685067243874073, -0.05233440175652504, 0.02208806946873665, -0.02088385634124279, -0.000306985923089087, 0.017705170437693596, 0.05519847571849823, -0.04756094887852669, -0.05354946479201317, 0.014526485465466976, 0.02508232556283474, -0.00599936256185174, 0.029052970930933952, -0.003186822170391679, 0.005253510549664497, 0.0040954058058559895, -0.023086154833436012, 0.017553288489580154, 0.013376517221331596, -0.0007058472256176174, -0.012031271122395992, 0.0014605139149352908, -0.0028966180980205536, 0.016924060881137848, -0.007317486219108105, 0.06669815629720688, -0.039250802248716354, 0.0545041523873806, -0.03076707385480404, -0.018399491906166077, -0.04825526848435402, -0.011044034734368324, -0.052551377564668655, -0.007333759684115648, -0.024171030148863792, 0.03200383111834526, 0.008109445683658123, -0.03606126829981804, 0.06292279064655304, -0.005522017367184162, -0.036256544291973114, 0.000587527989409864, 0.010208680294454098, 0.048342060297727585, 0.025971923023462296, -0.02874920517206192, 0.048906195908784866, 0.05875686556100845, 0.044414810836315155, -0.0009865588508546352, 0.010984365828335285, 0.0134307611733675, 0.006932355463504791, 0.026687942445278168, 0.03729802742600441, 0.045911937952041626, 0.004328654147684574, -0.009042439050972462, -0.03606126829981804, -0.033305682241916656, 0.03475941717624664, 0.025038929656147957, 0.00024375799694098532, 0.03230759873986244, 0.01612125337123871, -0.010767390951514244, -0.042223360389471054, -0.018670709803700447, 0.024756863713264465, -0.006216337438672781, -0.0777638852596283, 0.01791129820048809, 0.003639757866039872, -0.002596921054646373, -0.05467773228883743, 0.038838550448417664, 0.033848121762275696, -0.02319464273750782, 0.031135931611061096, -0.03089725971221924, 0.004076420329511166, 0.025820041075348854, 0.014493938535451889, -0.018518827855587006, -0.015665603801608086, -0.008022655732929707, -0.014732611365616322, -0.017390556633472443, -0.027230380102992058, 0.02453988790512085, 0.025971923023462296, 0.005367422476410866, 0.015687301754951477, 0.02916145883500576, 0.006200064439326525, -0.06240204721689224, 0.05832291767001152, 0.01737970858812332, 0.017857054248452187, 0.05519847571849823, 0.048342060297727585, 0.005435226950794458, -0.015828335657715797, -0.025147417560219765, 0.012389279901981354, 0.01113082468509674, 0.009443842805922031, 0.049296751618385315, -0.047821320593357086, -0.0320255309343338, 0.0645717978477478, 0.0059342700988054276, -0.04187620058655739, 0.0021697513293474913, 0.010512445122003555, 0.0051721446216106415, -0.012931717559695244, -0.00936790183186531, -0.02699170634150505, 0.025711553171277046, -0.06183791160583496, -0.011922783218324184, 0.0015323868719860911, -0.015155713073909283, 0.013712828047573566, -0.08540141582489014, 0.030463308095932007, 0.02101404219865799, -0.019440971314907074, 0.03200383111834526, -0.008044352754950523, -0.0016693524084985256, 0.005077218171209097, 0.012552011758089066, -0.002733886707574129, -0.010648055002093315, -0.06982259452342987, -0.004892789293080568, 0.027447354048490524, 0.014461392536759377, 0.019733889028429985, -0.030289728194475174, 0.06114359200000763, 0.0014428846770897508, 0.06695852428674698, 0.0030403640121221542, 0.010490748099982738, -0.03428206965327263, -0.006189215928316116, -0.006742502097040415, -0.005394544452428818, 0.0298340804874897, -0.0010055440943688154, 0.006954052951186895, 0.029248248785734177, 0.0012604899238795042, -0.020439058542251587, 0.012324187904596329, -0.033045314252376556, -0.05194384604692459, -0.007773134391754866, 0.02007020078599453, 0.04447990283370018, -0.0015608648536726832, 0.011749203316867352, -0.04517422243952751, -0.027056798338890076, -0.02114422619342804, 0.0392724983394146, -0.030268032103776932, -0.023021060973405838, 0.033045314252376556, -0.020829612389206886, 0.022153161466121674, 0.009850671514868736, -0.022717297077178955, 0.04085641726851463, -0.022012127563357353, 0.03076707385480404, -0.06357371807098389, 0.0016313818050548434, -0.0404224693775177, 0.047387368977069855, 0.025711553171277046, -0.014895343221724033, 0.02942182868719101, -0.023650290444493294, -0.01445054356008768, -0.003276324598118663, -0.015535419806838036, 0.01995086297392845, -0.04461008682847023, -0.006661136634647846, -0.0005719328764826059, 0.011195916682481766, 0.03037651814520359, -0.017791960388422012, 0.039814937859773636, -0.012009574100375175, 0.04461008682847023, -0.007198150269687176, -0.041420552879571915, -0.025169115513563156, 0.002084317384287715, -0.00902074109762907, 0.009763880632817745, 0.003555679926648736, 0.005608807317912579, 0.002713545225560665, -0.005310466513037682, 0.02360689453780651, -0.028423743322491646, 0.039945121854543686, 0.035323552787303925, -0.03443395346403122, -0.02699170634150505, 0.03295852243900299, -0.05046841502189636, -0.004087269306182861, 0.003891991451382637, -0.012356733903288841, -0.04582514986395836, -0.038296110928058624, 0.015350990928709507, 0.028119977563619614, -0.00355839217081666, -0.051032550632953644, -0.01886598765850067, 0.004315093159675598, -0.024778559803962708, -0.016652841120958328, 0.028271859511733055, -0.0032139441464096308, -0.00935162790119648, -0.053766436874866486, -0.027555841952562332, -0.011629867367446423, 0.020091896876692772, -0.005164008121937513, 0.04395916312932968, 0.04003191366791725, 0.022738993167877197, -0.04107339307665825, -0.012812381610274315, -0.017574986442923546, 0.02076452039182186, -0.022305043414235115, 0.006579771172255278, 0.007420549634844065, 0.045217618346214294, -0.05849649757146835, 0.029812384396791458, 0.05155329033732414, -0.028293557465076447, -0.025950226932764053, 0.02590683102607727, -0.04144224897027016, -0.002765076933428645, -0.0007119496585801244, -0.021404597908258438, 0.018963627517223358, -0.031114233657717705, -4.316194826969877e-05, -0.0016910498961806297, -0.006579771172255278, -0.01642501726746559, 0.02276069112122059, -0.04461008682847023, 0.023368222638964653, 0.01910466141998768, -0.00873867329210043, 0.0010679245460778475, 0.012627952732145786, 0.003547543426975608, -0.02209891751408577, 0.0032058076467365026, 0.015047225169837475, -0.0325462706387043, 0.04053095355629921, -0.023628592491149902, -0.017292918637394905, -0.004361200146377087, 0.004217454232275486, 0.0325462706387043, -0.0058095091953873634, 0.004258137196302414, -0.02226164937019348, 0.055936191231012344, -0.013192088343203068, 0.010615508072078228, -0.007735163439065218, 0.005128749646246433, 0.03935929015278816, -0.038317807018756866, 0.047387368977069855, -0.019972560927271843, -0.012432674877345562, -0.022077219560742378, 0.0550248958170414, 0.05723803862929344, -0.054764524102211, -0.029638802632689476, 0.056630510836839676, 0.025537973269820213, 0.048602428287267685, -0.00711678434163332, 0.01261710375547409, -0.0005495573277585208, 0.07689598947763443, -0.03402170166373253, -0.02642757073044777, -0.02209891751408577, -0.014276963658630848, -0.03497639298439026, 0.02510402351617813, 0.038730062544345856, 0.011402043513953686, 0.08262412995100021, 0.010729419998824596, 0.0056359292939305305, -0.03677728399634361, 0.011705808341503143, 0.02005935087800026, 0.05775878205895424, 0.0661340206861496, -0.04625909775495529, -0.09425400197505951, -0.03321889415383339, 0.00023121412959881127, 0.03337077423930168, -0.02440970204770565, 0.0022362000308930874, -0.008348118513822556, -0.0052887690253555775, 0.015546268783509731, 0.03597447648644447, 0.027751119807362556, 0.04487045854330063, -0.0034932997077703476, -0.012432674877345562, 0.020167838782072067, 0.011629867367446423, 0.025429485365748405, 0.010203255340456963, 0.024930443614721298, 0.034781113266944885, 0.005722719244658947, 0.0047409068793058395, 0.03794895112514496, -0.044002559036016464, 0.015416082926094532, -0.04109508916735649, -0.0222182534635067, 0.019419275224208832, 0.011119975708425045, -0.00467581395059824, -0.007143906317651272, -0.00046378435217775404, -0.021339504048228264, 0.04367709532380104, 0.022283345460891724, -0.002179244067519903, 0.0017371571157127619, -0.014059988781809807, 0.008277601562440395, 0.032741546630859375, -0.02469176985323429, 0.0034770264755934477, 0.004426292609423399, 0.03643012419342995, -0.041962992399930954, -0.004328654147684574, -0.03554052859544754, -0.011629867367446423, 0.01037683617323637, -0.02562476322054863, -0.020807916298508644, -0.013799618929624557, 0.0007668714970350266, 0.008136567659676075, 0.05927760526537895, 0.016359925270080566, 0.035301852971315384, -0.03024633415043354, 0.01131525356322527, -0.012519464828073978, 0.03983663395047188, -0.014569880440831184, 0.04189789667725563, 0.017672624439001083, 0.05723803862929344, -0.03593108057975769, -0.009188896976411343, 0.06292279064655304, 0.018269306048750877, -0.023433314636349678, -0.0016585036646574736, -0.016717934980988503, -0.052681561559438705, 0.025190813466906548, -0.012204851023852825, 0.008679005317389965, -0.0037862160243093967, -0.030853863805532455, 0.03239438682794571, -0.001784620457328856, -0.007040842901915312, -0.008033504709601402, 0.021263564005494118, 0.013777920976281166, -0.00873867329210043, 0.03716783970594406, 0.015806637704372406, -0.04165922477841377, 0.012725591659545898, -0.010154436342418194, -0.03319719433784485, 0.016175495460629463, 0.03373963385820389, -0.043308235704898834, -0.015372687950730324, -0.03812253102660179, 0.019017869606614113, -0.003995054867118597, 0.002032785676419735, 0.0033387048169970512, -0.012714742682874203, 0.034216977655887604, -0.00031613954342901707, 0.08631271123886108, 0.01261710375547409, -0.06821697950363159, -0.019061265513300896, -0.0019120933720842004, -0.011195916682481766, 0.00769176846370101, -0.03475941717624664, 0.03163497522473335, 0.008434908464550972, 0.013333122245967388, -0.043047867715358734, -0.009850671514868736, 0.03866497054696083, -0.016728783026337624, 0.02089470624923706, -0.015665603801608086, 0.027555841952562332, -0.02697000838816166, -0.04202808439731598, -0.057151250541210175, 0.002137205097824335, -0.041832804679870605, 0.008494576439261436, -0.03768857941031456, -0.058930445462465286, 0.06444161385297775, -0.0011445438722148538, 0.0046785264275968075, 0.03230759873986244, 0.038187623023986816, 0.007713465951383114, 0.03143969550728798, 0.04465348273515701, -0.006899809464812279, -0.014407148584723473, 0.0003215639153495431, -0.04011870175600052, 0.0011675974819809198, -0.014526485465466976, 0.029660500586032867, -0.003582801902666688, 0.07008296996355057, -0.0003332602500449866, -0.0012428606860339642, -0.07403191924095154, 0.0003637723857536912, -0.04704020917415619, 0.03881685063242912, 0.009308232925832272, -0.013354819267988205, -0.03575750067830086, 0.043980859220027924, -0.0013649092288687825, 0.027490749955177307, -0.014103383757174015, 0.04298277571797371, -0.035301852971315384, -0.02076452039182186, -0.010984365828335285, 0.005223676562309265, -0.007100511342287064, -0.007230696268379688, -0.0034146462567150593, -0.011054882779717445, 0.02075367234647274, -0.0055599878542125225, -0.011282706633210182, 0.026622848585247993, -0.01017070934176445, 0.040617745369672775, -0.00647128326818347, 0.009937461465597153, -0.011803447268903255, 0.005576260853558779, -0.05059860274195671, -0.02384556643664837, 0.010067646391689777, -0.04569496214389801, 0.021881941705942154, 0.018095726147294044, -0.004363912157714367, -0.021860245615243912, -0.014559031464159489, -0.0011418316280469298, 0.004323229659348726, -0.023541802540421486, 0.010702298954129219, 0.0025074188597500324, -0.017314616590738297, -0.04024888575077057, 0.018269306048750877, -0.01092469785362482, -0.0013994895853102207, 0.019733889028429985, -0.016598597168922424, -0.022977666929364204, 0.027599237859249115, 0.006617741659283638, -0.06214167922735214, -0.05762859433889389, 0.02642757073044777, 0.008250479586422443, -0.013333122245967388, 0.0072469692677259445, 0.042353544384241104, 0.025190813466906548, -0.061881307512521744, 0.04691002517938614, -0.004268985707312822, 0.021491387858986855, 0.003797064768150449, -0.007463944610208273, -0.007425974123179913, 0.016316529363393784, 0.0248002577573061, 0.027230380102992058, 0.008038928732275963, 0.005071793682873249, 0.029118062928318977, -0.05506828799843788, -0.01587173156440258, -0.025407787412405014, 0.0164033193141222, 0.0392724983394146, 0.007442247122526169, 0.010691449977457523, -0.024105938151478767, -0.0012943922774866223, 0.04421953111886978, 0.011770901270210743, -0.007474793586879969, 0.04105169698596001, -0.0060698795132339, -0.012508616782724857, -0.01261710375547409, 0.014255266636610031, -0.038968734443187714, -0.004209317732602358, 0.00976930558681488, 0.022033825516700745, -0.028922785073518753, 0.034802813082933426, 0.021914487704634666, -0.012725591659545898, 0.0328066386282444, 0.027186984196305275, -0.01897447556257248, 0.014244417659938335, 0.06704531610012054, 0.005348437000066042, -0.04432801902294159, -0.025386091321706772, 0.025950226932764053, -0.038860246539115906, -0.02900957502424717, -0.029074668884277344, 0.04825526848435402, 0.010002553462982178, 0.0018605617806315422, 0.009302808903157711, 0.019148055464029312, -0.03441225737333298, 0.04552138224244118, -0.00178868870716542, 0.017846204340457916, -0.0007702617440372705, -0.028553927317261696, 0.0067533510737121105, -0.02655775658786297, 0.01458072941750288, 0.02547288127243519, -0.033305682241916656, -0.06101340800523758, -0.004350351635366678, 0.01749904453754425, -0.029183154925704002, 0.020536696538329124, 0.0030268030241131783, 0.01899617351591587, -0.002961710561066866, -0.03380472585558891, -0.04634588956832886, 0.035063181072473526, -0.01063720602542162, -0.038165926933288574, -0.015307595953345299, 0.02223995141685009, -0.04228845238685608, -0.024236122146248817, 0.006731653586030006, 0.008575942367315292, -0.03278494253754616, -0.0325462706387043, -0.01024665031582117, -0.05706445872783661, 0.014754309318959713, -0.018746651709079742, -0.012758137658238411, 0.0076754954643547535, -0.01843203790485859, -0.009319081902503967, 0.01570899970829487, -0.02440970204770565, 0.03278494253754616, 0.00413337629288435, -0.007073389366269112, 0.006259732414036989, 0.026904916390776634, -0.0003180041676387191, -0.004974154755473137, -0.03161327540874481, 0.03050670400261879, 0.010865029878914356, 0.015557116828858852, -0.0028694961220026016, -0.027186984196305275, 0.0011269146343693137, 0.005814933683723211, 0.009986280463635921, -0.007529037073254585, 0.002687779488041997, 0.0072469692677259445, -0.004038449842482805, 0.0022999364882707596, 0.03211231902241707, 0.011727506294846535, 0.021740907803177834, -0.0073500326834619045, 0.006899809464812279, -0.0025277603417634964, 0.019289089366793633, 0.015774091705679893, -0.044111043214797974, 0.04001021385192871, -0.01615379936993122, -0.00040276008076034486, -0.0034770264755934477, -0.010658903047442436, -0.011694959364831448, -0.018497129902243614, -0.00916177500039339, -0.012985961511731148, -0.010219529271125793, -0.06600383669137955, 0.021654117852449417, -0.03363114595413208, 0.006097001489251852, -0.017130186781287193, -0.015036377124488354, 0.0073771546594798565, -0.012421826831996441, -0.030745375901460648, 0.0009736759238876402, 0.015307595953345299, -0.009785578586161137, -0.011879388242959976, 0.007312062196433544, -0.022456927224993706, 0.04239694029092789, -0.03688577190041542, -0.008467454463243484, 0.019885770976543427, 0.021079134196043015, -0.02334652468562126, -0.003498723963275552, -0.012768986634910107, -0.02181684970855713, 0.015188259072601795, 0.015188259072601795, -0.040335677564144135, -0.04176771268248558, -0.03632163628935814, 0.002652521012350917, -0.03146139532327652, 0.004361200146377087, 0.05068539083003998, 0.019093811511993408, -0.04135546088218689, -0.00841321051120758, -0.04873261600732803, -0.03862157464027405, 0.016717934980988503, 0.005465061403810978, 0.009237715974450111, 0.011966179125010967, -0.02020038478076458, -0.012779835611581802, -0.04773452877998352, 0.009791002608835697, -0.037927255034446716, 0.011044034734368324, 0.034520745277404785, -0.0034499047324061394, 0.002044990658760071, -0.013474156148731709, 0.029204852879047394, -0.02644926868379116, 0.03671219199895859, -0.005343012511730194, 0.025190813466906548, 0.029356734827160835, -0.028966180980205536, 0.011293555609881878, -0.010371411219239235, -0.020580090582370758, -0.010827058926224709, -0.027230380102992058, 0.0034092217683792114, -0.0315047912299633, -0.023932358250021935, -0.03445564955472946, -0.0014252554392442107, -0.012790684588253498, 0.020851310342550278, 0.02425782009959221, -0.0072740912437438965, 0.007892470806837082, -0.02388896234333515, 0.005432514939457178, -0.015665603801608086, -0.026058712974190712, -0.03102744370698929, 0.032090622931718826, -0.025841739028692245, 0.009796427562832832, -0.01669623702764511, -0.00556541234254837, 0.027013404294848442, -0.0045754630118608475, -0.007626676000654697, 0.0439157672226429, -0.002888481365516782, -0.014352905564010143, -0.035605620592832565, -0.011092853732407093, 0.002400287427008152, 0.0007607690640725195, -0.011966179125010967, 0.011890237219631672, 0.039511170238256454, 0.008060626685619354, 0.0013004947686567903, -0.007805680390447378, 0.009845246560871601, 0.013419912196695805, -0.0028423741459846497, -0.053636252880096436, 0.03866497054696083, -0.021589025855064392, 0.0025413213297724724, 0.0267313364893198, 0.03308870643377304, -0.038296110928058624, -0.005907148122787476, -0.012573708780109882, 0.03705935180187225, -0.015502873808145523, -0.017412254586815834, -0.019365031272172928, 0.01899617351591587, -0.028705811128020287, 0.0005187061615288258, 0.004662253428250551, 0.032068923115730286, -0.02155647985637188, -0.034781113266944885, -0.014179324731230736, 0.00873867329210043, -0.024908745661377907, -0.000445138051873073, -0.019451821222901344, 0.0764620378613472, -0.005193842109292746, 0.002723037963733077, -0.027555841952562332, -0.003238353878259659, 0.00298340804874897, -0.039380986243486404, 0.006097001489251852, -0.023281432688236237, 0.007122208829969168, 0.011564774438738823, 0.0033956607803702354, 0.012432674877345562, 0.03091895580291748, -0.0075453100726008415, 0.018540525808930397, 0.03243778273463249, -0.0242795180529356, -0.007501915097236633, -0.009357052855193615, 0.006525527220219374, 0.016457563266158104, 0.0033875242806971073, -0.02642757073044777, 0.028987877070903778, 0.00592884561046958, 0.01626228541135788, -0.019050417467951775, -0.020775368437170982, -0.006916082464158535, -0.013799618929624557, -0.015155713073909283, -0.006151244975626469, -0.030940653756260872, 0.009872368536889553, 0.017716020345687866, 0.013951500877737999, -0.028640717267990112, -0.05003446713089943, -0.00902074109762907, -0.005117901135236025, 0.025668159127235413, -0.009389598853886127, -0.00654180021956563, -0.05645693093538284, 0.030745375901460648, 0.005679324269294739, -0.03376132994890213, -0.02263050712645054, -0.028987877070903778, -0.011423740535974503, 0.006823868025094271, 0.026753034442663193, -0.0022375560365617275, 0.007176452782005072, -0.01587173156440258, -0.018117424100637436, -0.011575623415410519, 0.025928528979420662, -0.050511810928583145, 0.0001329820224782452, -0.002400287427008152, 0.017574986442923546, -0.026622848585247993, -0.0005502353888005018, -0.013658585026860237, 0.013213785365223885, 0.0074042766354978085, 0.008250479586422443, -0.013506702147424221, 0.002130424603819847, 0.0013438897440209985, 0.011293555609881878, 0.009926612488925457, 0.049687307327985764, -0.005256222561001778, -0.03148309141397476, 0.022022975608706474, 0.02807658165693283, -0.009644544683396816, -0.006492980755865574, -0.026253990828990936, -0.04081302136182785, 0.040335677564144135, 0.040899813175201416, 0.025950226932764053, 0.027599237859249115, 0.007686343975365162, -0.015047225169837475, 0.028857693076133728, 0.0046920874156057835, 0.03549713268876076, -0.007295788731426001, -0.03564901277422905, -0.0028179646469652653, 0.007198150269687176, -0.01375622395426035, -0.006091577000916004, 0.00043056003050878644, -0.0005837987409904599, -0.009194320999085903, 0.016045311465859413, -0.01683727093040943, -0.028966180980205536, 0.007529037073254585, 0.0039652204141020775, 0.05124952644109726, 0.006330249365419149, 0.0013438897440209985, -0.0404224693775177, 0.010507021099328995, 0.030853863805532455, -0.01830185204744339, 0.029899174347519875, 0.05806254595518112, 0.0065092542208731174, 0.018659861758351326, 0.0027772816829383373, 0.022847481071949005, -0.0020015956833958626, -0.0013316848780959845, -0.01627313531935215, -0.035583920776844025, 0.025581369176506996, 0.018800895661115646, -0.006330249365419149, 0.023238036781549454, 0.04682323336601257, 0.02683982439339161, 0.058236125856637955, 0.008706127293407917, -0.02401914820075035, -0.02195788361132145, 0.025733251124620438, 0.03170006722211838, 0.014504787512123585, 0.0034336315002292395, 0.029074668884277344, -0.01199872512370348, -0.03807913511991501, -0.0004498843918554485, 0.01369113102555275, 0.003588226391002536, -0.0018822592683136463, -0.000295628618914634, 0.013951500877737999, 0.044002559036016464, -0.025971923023462296, -0.012204851023852825, 0.022164009511470795, -0.011087429709732533, 0.021480537950992584, 0.011261009611189365, 0.023238036781549454, 0.016641993075609207, 0.016349077224731445, 0.05454754829406738, 0.020298024639487267, 0.02890108712017536, -0.03731972351670265, 0.053766436874866486, 0.018757499754428864, 0.0062109134159982204, 0.024062542244791985, 0.025169115513563156, -0.011879388242959976, -0.03983663395047188, -0.024626677855849266, 0.024431400001049042, 0.017976390197873116, 0.005467773415148258, -0.03347926214337349, 0.02195788361132145, -0.007740587927401066, 0.026514360681176186, 0.008017230778932571, -0.013452458195388317, 0.00020358369511086494, -0.0069486284628510475, 0.011738354340195656, 0.005939694121479988, 0.002122288104146719, -0.008114869706332684, -0.00434492714703083, -0.023628592491149902, 0.028662415221333504, -0.015828335657715797, 0.0018361520487815142, 0.025581369176506996, 0.004298819694668055, -0.017802810296416283, 0.008353542536497116, 0.009975431486964226, 0.02252201922237873, 0.05723803862929344, -0.031396303325891495, 0.04029228165745735, -0.005481334403157234, 0.003317007329314947, -0.017032548785209656, 0.006981174927204847, -0.013897256925702095, 0.023259734734892845, 0.03078877180814743, -0.03888194262981415, 0.008418635465204716, 0.011022336781024933, 0.019592855125665665, -0.025689855217933655, 0.023954054340720177, 0.002095166128128767, 0.00045293557923287153, 0.008358967490494251, -0.0063790688291192055, -0.0023243462201207876, 0.02371538244187832, 0.01057211309671402, 0.024756863713264465, 0.023107850924134254, 0.03673389181494713, 0.009584876708686352, 0.02048245258629322, 0.044262927025556564, 0.027772817760705948, 0.02536439336836338, 0.02536439336836338, 0.0083318455144763, -0.008207084611058235, -0.0029156033415347338, 0.04951372742652893, -0.006238034926354885, 0.006368220318108797, -0.0037102748174220324, -0.03610466420650482, 0.003262763610109687, 0.01627313531935215, -0.003344129305332899, -0.03475941717624664, -0.028380347415804863, 0.01979898102581501, -0.002432833658531308, -0.014808553270995617, -9.018029231810942e-05, 0.048342060297727585, -0.015329292975366116, 0.013788769952952862, 0.009671666659414768, 0.035518828779459, -0.03198213502764702, -0.036278244107961655, 0.0011587828630581498, -0.01964709907770157, -0.014493938535451889, -0.03295852243900299, -0.002996969036757946, -0.02753414399921894, 0.018638163805007935, -0.018551373854279518, 0.002672862494364381, 0.008320996537804604, -0.015904277563095093, 0.018811743706464767, 0.008928527124226093, 0.006265156902372837, 0.0203414186835289, -0.015340141952037811, -0.0222182534635067, 0.0028423741459846497, 0.011434589512646198, 0.02276069112122059, 0.026470966637134552, 0.0015581527259200811, -0.03143969550728798, -0.03239438682794571, -0.006015635561197996, 0.016457563266158104, -0.03120102360844612, 0.024735165759921074, 0.020775368437170982, -0.015329292975366116, -0.011228463612496853, -0.01693490892648697, -0.02603701688349247, -0.016880664974451065, -0.008592215366661549, -0.019017869606614113, 0.022435229271650314, 0.0010238514514639974, 0.015481175854802132, 0.008537971414625645, 0.01185769122093916, 0.011901086196303368, 0.01667453907430172, 0.024214424192905426, -0.012291640974581242, -0.0067533510737121105, -0.03170006722211838, 0.024930443614721298, -0.012183154001832008, -0.030419914051890373, 0.0185947697609663, -0.005869177170097828, 0.020254628732800484, -0.020395662635564804, 0.01308360043913126, 0.005961391609162092, 0.01254116278141737, 0.02740396000444889, 0.012421826831996441, -0.006498405244201422, 0.061230383813381195, 0.027338866144418716, 0.0006824546144343913, 0.006172942463308573, 0.03608296439051628, 0.0018754787743091583, -0.003604499390348792, -0.0273822620511055, -0.03293682634830475, 0.0033875242806971073, 0.026492664590477943, -0.0050039892084896564, -0.038968734443187714, 0.02412763424217701, -0.008071474730968475, 0.012465221807360649, -0.008820039220154285, -0.044827062636613846, -0.005359285976737738, -0.00244232639670372, -7.416142034344375e-05, -0.004570038989186287, 0.00040547229582443833, -0.03426037356257439, 0.021263564005494118, 0.023086154833436012, 0.01429866161197424, 0.012660498730838299, 0.0003864869649987668, -0.004960594233125448, -0.04024888575077057, 0.0034716022200882435, 0.008521698415279388, 0.05220421776175499, -0.00031376638798974454, -0.020807916298508644, 0.021534781903028488, 0.0414639487862587, 0.01857307180762291, -0.0007105935364961624, -0.013333122245967388, 0.007925016805529594, 0.04226675629615784, -0.02642757073044777, 0.04163752868771553, 0.00037360406713560224, 0.0033875242806971073, -0.008104021660983562, 0.02399745024740696, 0.011738354340195656, 0.010127314366400242, 0.00427169818431139, 0.02031972073018551, -0.002420628909021616, -0.07112444937229156, 0.023107850924134254, -0.015209957025945187, 0.009259413927793503, -0.02276069112122059, 0.004070995841175318, 0.01721697673201561, -0.019365031272172928, 0.013126995414495468, -0.016067009419202805, 0.015188259072601795, -0.003222080646082759, 0.022890876978635788, 0.03658200800418854, -0.027881305664777756, -0.0003174956364091486, 0.022543717175722122, 0.03371793404221535, 0.0006590619450435042, -0.03386981785297394, -0.010523294098675251, 0.02345501258969307, 0.048992983996868134, 0.0016205330612137914, 0.013658585026860237, -0.020276326686143875, -0.04285258799791336, 0.02644926868379116, -0.04838545620441437, -0.023693684488534927, -0.030853863805532455, -0.02384556643664837, -0.007708041463047266, 0.010604660026729107, 0.033956609666347504, 0.023541802540421486, -0.0032193686347454786, -0.03482450917363167, 0.0019609127193689346, 0.01994001492857933, 0.006308551877737045, -0.07685258984565735, 0.013647736050188541, -0.044111043214797974, -0.03760179132223129, 0.003300734329968691, -0.0008285737712867558, -0.014504787512123585, 0.006563497707247734, 0.01063720602542162, -0.01376707199960947, 0.0028098279144614935, -0.03241608664393425, 0.006433312781155109, 0.009926612488925457, -0.03089725971221924, -0.004928047768771648, -0.03239438682794571, 0.009753032587468624, -0.009834397584199905, -0.022847481071949005, 0.025277603417634964, 0.030181240290403366, 0.02616720087826252, 0.0022375560365617275, 0.015003830194473267, 0.024236122146248817, 0.0034282070118933916, 0.03562731668353081, -0.006943204440176487, -0.00090315897250548, -0.006883535999804735, -0.02087300829589367, 0.020634334534406662, 0.0005142988520674407, -0.023758776485919952, -0.024062542244791985, 0.0076754954643547535, 0.005413529463112354, 0.02588513307273388, 0.014786855317652225, -0.013777920976281166, -0.009904914535582066, 0.01737970858812332, 0.027013404294848442, -0.016370773315429688, -0.01002425141632557, 0.022044673562049866, -0.027447354048490524, -0.03716783970594406, 0.009514359757304192, 0.028250163421034813, -0.002358248457312584, -0.010414806194603443, -0.03484620526432991, 0.014548182487487793, -0.0016408744268119335, 0.012259094975888729, -0.00021816171647515148, -0.005177569109946489, 0.0016734207747504115, 0.03419528156518936, 0.009145502001047134, 0.007436822634190321, 0.03365284204483032, -0.02223995141685009, -0.0018849715124815702, 0.030940653756260872, -0.006823868025094271, 0.0076212515123188496, 0.015350990928709507, 0.030853863805532455, 0.0010401245672255754, -0.01747734658420086, -0.02727377414703369, -0.0030268030241131783, -0.0034661777317523956, 0.00819623563438654, 0.028402045369148254, 0.0002466397127136588, 0.01375622395426035, -0.052681561559438705, -0.03311040624976158, -0.04040076956152916, 0.029899174347519875, -0.008212508633732796, -0.031396303325891495, 0.012703893706202507, 0.023932358250021935, -0.0645717978477478, -0.008570517413318157, 0.002667438006028533, -0.006216337438672781, -0.003056637244299054, 0.01165156438946724, -0.010669752024114132, 0.04011870175600052, 0.029400130733847618, 0.01734716258943081, -0.003292597597464919, 0.0011194561375305057, 0.015220806002616882, -0.020645184442400932, 0.0015920550795271993, 0.00119539734441787, 0.021784303709864616, 0.008716976270079613, -0.008852585218846798, -0.02818506956100464, 0.0031624126713722944, -0.02848883531987667, 0.04354691132903099, -0.020797066390514374, -0.00868985429406166, -0.011564774438738823, 0.017954692244529724, 0.03942438215017319, -0.038014043122529984, -0.0022809510119259357, -0.002106014871969819, 0.01445054356008768, 0.002484365366399288, -0.008163689635694027, 0.007990109734237194, -0.009953734464943409, 0.009682515636086464, -0.00807689968496561, 0.008445757441222668, 0.009904914535582066, -0.0006275327759794891, 0.006004787050187588, 0.021198470145463943, -0.04573835805058479, -0.04276579990983009, -0.04717039316892624, 0.015774091705679893, -0.0059342700988054276, 0.05203063786029816, -0.005028398707509041, 0.002466736128553748, -0.007637524511665106, -0.016099555417895317, -0.04066114127635956, 0.009237715974450111, -0.0539834126830101, 0.005597958341240883, 0.0010875879088416696, 0.00941672082990408, 0.004694799426943064, 0.029855778440833092, 0.017650926485657692, -0.010328016243875027, 0.040617745369672775, 0.013940652832388878, -0.04704020917415619, -0.002070756396278739, 0.004749043378978968, 0.0029074668418616056, -0.03512827306985855, -0.03104914166033268, -0.011445438489317894, 0.047821320593357086, -0.01681557297706604, 0.0011106415186077356, 0.013452458195388317, -0.017987238243222237, 0.0028939058538526297, 0.023498406633734703, -0.03237269073724747, -0.014895343221724033, -0.03959796205163002, 0.022348439320921898, 0.0037618062924593687, -0.019169753417372704, -0.04024888575077057, -0.014331207610666752, -0.03324059024453163, -0.0134307611733675, 0.007740587927401066, -0.02373708039522171, 0.007946714758872986, -0.03024633415043354, -0.020514998584985733, 0.016848118975758553, 0.026058712974190712, -0.019017869606614113, -0.005212827585637569, 0.012736440636217594, -0.02358519658446312, 0.007686343975365162, -0.0003834357485175133, 0.014819401316344738, -0.0034797387197613716, 0.01599106751382351, -0.006308551877737045, -0.0293133407831192, -0.01980982907116413, -0.010485323145985603, -0.007718890439718962, -0.015481175854802132, -0.04912317171692848, 0.013235483318567276, 0.024583281949162483, 0.010203255340456963, 0.0417243167757988, -0.011049458757042885, -0.041550736874341965, -0.020666882395744324, 0.01145628746598959, -0.0067533510737121105, 0.00873867329210043, 0.0038296112325042486, -0.021534781903028488, -0.03738481551408768, -0.007474793586879969, -0.013886408880352974, -0.013419912196695805, -0.002961710561066866, -0.003883854951709509, 0.030853863805532455, 0.034520745277404785, 0.02306445688009262, -0.02929164282977581, 0.002645740518346429, 0.007165603805333376, 0.018486281856894493, -0.018605617806315422, -0.005950543098151684, -0.01573069766163826, 0.04022718966007233, -0.018008936196565628, 0.04083472117781639, 0.018366945907473564, 0.03942438215017319, 0.045781753957271576, -0.004876516293734312, 0.016479261219501495, 0.02766432985663414, -0.03224250674247742, -0.02075367234647274, 0.01966879516839981, -0.00043835758697241545, 0.021881941705942154, -0.002926452085375786, 0.009677090682089329, 0.014244417659938335, 0.025950226932764053, 0.014548182487487793, -0.03636503219604492, -0.0034688899759203196, 0.017943844199180603, -0.026492664590477943, -0.0006844887393526733, 0.027425656095147133, 0.031114233657717705, -0.045477986335754395, -0.024713467806577682, 0.017802810296416283, 0.029096364974975586, 0.013712828047573566, -0.027620933949947357, -0.03402170166373253, 0.003249202622100711, -0.014070837758481503, -0.0018402204150334, 0.008283025585114956, 0.011271858587861061, -0.03699425980448723, -0.010767390951514244, 0.022999364882707596, -0.02859732322394848, 0.0036234846338629723, -0.05584939941763878, 0.004879228305071592, -0.008744098246097565, -0.0030864712316542864, 0.006563497707247734, -0.0025481018237769604, -0.01683727093040943, -0.005950543098151684, -0.004979579243808985, -0.0426139160990715, 0.008641034364700317, -0.008917678147554398, 0.013343971222639084, -3.737206043297192e-06, -0.007165603805333376, -0.025169115513563156, 0.023151246830821037, 0.025950226932764053, 0.019582005217671394, -0.0349980890750885, 0.002011088188737631, 0.03582259640097618, 0.004323229659348726, 0.005296905525028706, -0.0003925893979612738, -1.0340220796933863e-05, -0.007670070976018906, 0.0054840464144945145, 0.02100319229066372, -0.00981812458485365, 0.03076707385480404, 0.024040844291448593, -0.007073389366269112, 0.027186984196305275, 0.04447990283370018, -0.006335673853754997, 0.01280153263360262, 0.019560309126973152, -0.004895501304417849, 0.015253352001309395, -0.022164009511470795, -0.006747926585376263, -0.02291257493197918, -0.012660498730838299, 0.010837907902896404, -0.03434716537594795, 0.017585834488272667, 0.0076212515123188496, -0.019495215266942978, 0.005576260853558779, -0.008315571583807468, 0.0012415045639500022, -6.42873565084301e-05, -0.007604978512972593, 0.026470966637134552, 0.009861519560217857], [0.0451003722846508, 0.01669488102197647, 0.0018615396693348885, 0.03113958239555359, -0.002283448353409767, -0.02835710160434246, -0.03873696178197861, 0.07181218266487122, 0.041325878351926804, 0.039390239864587784, 0.015291542746126652, 0.01846115104854107, 0.007470353972166777, -0.011892077513039112, -0.016295654699206352, 0.0007466573733836412, -0.033752694725990295, -0.006266628857702017, -0.0033782937098294497, 0.07969991117715836, 0.03597867861390114, 0.04778607189655304, -0.019888684153556824, 0.008426075801253319, 0.029010379686951637, 0.003913618624210358, 0.004052742850035429, -0.008401880040764809, 0.01898135244846344, -0.0339946486055851, 0.016283556818962097, -0.021763833239674568, 0.07447368651628494, 0.022792141884565353, 0.036438390612602234, 0.010476642288267612, -0.03392206132411957, 0.03880954906344414, 0.010264932177960873, -0.06542457640171051, -0.04195496067404747, 0.0030244349036365747, -0.015714963898062706, -0.08870062977075577, -0.020275810733437538, 0.07098953425884247, 0.00463948305696249, -0.013634152710437775, 0.007682064548134804, 0.03341395780444145, 0.002874725265428424, 0.01050688698887825, 0.0051173437386751175, -0.0073675233870744705, -0.02401401288807392, 0.014444701373577118, -0.019767707213759422, -0.008389782160520554, -0.02342122420668602, -0.02210257016122341, 0.01364625059068203, 0.0018600274343043566, -0.0006370216142386198, 0.06731182336807251, -0.019779803231358528, -0.006206140387803316, -0.02830871008336544, -0.004500359296798706, -0.06295663863420486, 0.023880938068032265, 0.028574861586093903, 0.02838129736483097, 0.03496246784925461, -0.08555521070957184, -0.010887965559959412, -0.0029246285557746887, 0.06368250399827957, -0.022513892501592636, 0.004424748010933399, -0.003154485486447811, -0.031720273196697235, 0.023977719247341156, -0.03106699511408806, 0.037430405616760254, -0.0044822124764323235, -0.00898257177323103, -0.04464066028594971, 0.020130638033151627, -0.008565199561417103, -0.055117301642894745, -0.04105972871184349, -0.0219573974609375, -0.011716661043465137, 0.00406181626021862, -0.04096294566988945, 0.011353728361427784, 0.019985465332865715, 0.026977960020303726, -0.03789012134075165, 0.04316473379731178, 0.03496246784925461, -0.005323005374521017, 0.01612628623843193, 0.03997093066573143, 0.037430405616760254, -0.052165452390909195, -0.0741349458694458, -0.0044822124764323235, 0.013779325410723686, 0.016755368560552597, -0.0007818164303898811, -0.0076639181934297085, -0.013803521171212196, 0.09929824620485306, 0.010367763228714466, -0.004110206849873066, 0.004790704697370529, 0.010881916619837284, -0.00011691331019392237, -0.016731174662709236, -0.0220783744007349, 0.023711569607257843, 0.017154594883322716, -0.07819978892803192, -0.0017103179125115275, 0.03130894899368286, -0.04589882493019104, 0.006804978474974632, -0.02934911660850048, -0.06223077327013016, 0.058020759373903275, -0.024159185588359833, 0.0398983433842659, -0.037599775940179825, -0.0021428121253848076, -0.008020801469683647, 0.001286140875890851, -0.015835940837860107, -0.019017646089196205, 0.008710372261703014, 0.03997093066573143, -0.031623490154743195, 0.03786592558026314, 0.017819970846176147, 0.00825065840035677, 0.0051173437386751175, -0.016368241980671883, 0.03188963979482651, 0.028623251244425774, 0.029760438948869705, -0.017832068726420403, 0.0014766802778467536, 0.021146848797798157, -0.01945316605269909, 0.00835953839123249, 0.004500359296798706, 0.02741347812116146, 0.01719088852405548, 0.014468896202743053, 0.042342089116573334, -0.028647447004914284, -0.009049109183251858, -0.027486063539981842, -0.057875584810972214, 0.024401141330599785, -0.03931765258312225, 0.020360495895147324, -0.006647707894444466, -0.0436728410422802, -0.03689810633659363, -0.032639700919389725, 0.014553580433130264, -0.009871755726635456, 0.02398981712758541, -0.009980634786188602, -0.03496246784925461, 0.03513183444738388, 0.03687391057610512, -0.015412520617246628, -0.02134041301906109, 0.007766748778522015, -0.013247025199234486, -0.0006287043797783554, -0.006641658954322338, 0.0007084738463163376, -0.02146138995885849, -0.018787790089845657, -0.01848534680902958, -0.04611658304929733, 0.011256946250796318, -0.004122304730117321, -0.017299767583608627, -0.014952805824577808, 0.056133512407541275, -0.0111541161313653, 0.015714963898062706, -0.03503505513072014, 0.017807872965931892, 0.024050306528806686, -0.0003290963068138808, 0.017578015103936195, -0.04771348461508751, -0.017275571823120117, -0.022465502843260765, -0.026034334674477577, -0.00831114687025547, 0.019247503951191902, 0.04974590614438057, 0.054101090878248215, 0.0023817424662411213, 0.021449292078614235, -0.027800604701042175, -0.05864984169602394, 0.0060791140422225, -0.01106338296085596, 0.007948215119540691, 0.07611897587776184, -0.026034334674477577, 0.030849235132336617, 0.03897891566157341, -0.017904654145240784, -0.010573424398899078, 0.027631236240267754, 0.017057811841368675, -0.010966600850224495, -0.035543158650398254, -0.0646987110376358, 0.0016997323837131262, -0.002687210449948907, -0.03888213634490967, -0.0644567534327507, -0.005525642540305853, -0.012061445973813534, -0.015787549316883087, -0.015134272165596485, 0.04495520144701004, -0.0015893405070528388, -0.052068669348955154, -0.01271472405642271, -0.013948693871498108, 0.006629561074078083, -0.00511129479855299, 0.0020762744825333357, -0.006962249055504799, -0.005298810079693794, -0.03285745903849602, 0.011075480841100216, 0.03150251507759094, 0.05448821932077408, 0.009889901615679264, 0.017287669703364372, -0.009744728915393353, 0.03922087326645851, -0.03984995558857918, 0.009315259754657745, -0.015267346985638142, 0.009248721413314342, -0.0213646087795496, 0.03491407632827759, -0.009557214565575123, -0.004569921176880598, -0.005153636913746595, -0.005020562093704939, -0.020275810733437538, -0.02823612466454506, -0.01883617974817753, 0.04897164925932884, 0.018896669149398804, -0.012605844996869564, 0.03864017874002457, -0.02813934162259102, 0.024679388850927353, 0.012509062886238098, -0.00377449463121593, -0.017239278182387352, 0.0013360441662371159, -0.010125808417797089, -0.025114906951785088, 0.018666811287403107, -0.0058734524063766, -0.08289371430873871, -0.037454601377248764, 0.02382044866681099, -0.0892329290509224, -0.01987658627331257, -0.03109119087457657, -0.004597140941768885, -0.0030773624312132597, 0.024098698049783707, 0.019513653591275215, 0.052213843911886215, -0.008365587331354618, -0.007270741276443005, -0.04778607189655304, 0.053181663155555725, -0.00013127937563695014, -0.033559128642082214, -0.01503749005496502, -0.009424138814210892, -0.03007498010993004, -0.0010222590062767267, 0.054101090878248215, 0.002036956837400794, 0.006100285332649946, -0.0126300398260355, -0.0007614014903083444, 0.02719571813941002, 0.009738679975271225, -0.001967394957318902, 0.01323492731899023, 0.025042321532964706, 0.036389999091625214, -0.016791662201285362, -0.023336539044976234, -0.006714245304465294, 0.01935638301074505, -0.008607541210949421, 0.0061184316873550415, 0.050278205424547195, 0.01321073155850172, 0.042366284877061844, -0.011892077513039112, 0.04091455414891243, -0.002150373300537467, 0.04301956295967102, -0.040479037910699844, 0.02637307159602642, 0.042535651475191116, -0.03406723588705063, -0.01697312854230404, -0.06460192799568176, 0.054004307836294174, 0.003021410433575511, -0.048342566937208176, -0.05632707476615906, -0.014142257161438465, 0.016259361058473587, -0.01517056580632925, -0.029542680829763412, -0.010240736417472363, 0.028453882783651352, 0.00490563316270709, -0.03145412355661392, 0.02245340496301651, 0.006659805774688721, 0.01662229374051094, 0.02382044866681099, 0.04984268546104431, -0.02721991389989853, 0.025647208094596863, 0.03428499400615692, 0.006956200115382671, -0.007730455603450537, -0.031792860478162766, -0.04880228266119957, -0.03917248174548149, 0.015267346985638142, -0.009895950555801392, -0.014759242534637451, 0.021243629977107048, -0.03295424208045006, -0.03009917587041855, 0.034599535167217255, 0.014021280221641064, 0.006006527692079544, -0.015388324856758118, 0.00377147039398551, 0.006321068853139877, 0.03815627098083496, 0.004778607282787561, 0.03150251507759094, -0.008909985423088074, -0.01069440133869648, -0.019779803231358528, 0.024739878252148628, -0.021497683599591255, -0.018074022606015205, 0.019937073811888695, 0.012992972508072853, -0.018666811287403107, -0.012285254895687103, -0.012388085015118122, 0.004699971992522478, 0.03789012134075165, 0.09581409394741058, 0.010591571219265461, -0.022296134382486343, -0.018969256430864334, 0.04974590614438057, -0.00631501991301775, -0.002820285502821207, -0.011892077513039112, 0.0358818955719471, 0.05550443008542061, -0.012545355595648289, 0.0014706314541399479, 0.027486063539981842, 0.06227916479110718, 5.254955613054335e-05, -0.04389059916138649, -0.011051285080611706, -0.014275332912802696, 0.02922813780605793, -0.02717152237892151, 0.03721264749765396, 0.037406209856271744, -0.011704563163220882, -0.016259361058473587, 0.03418821096420288, -0.012811506167054176, 0.014505189843475819, -0.04364864528179169, 0.030026588588953018, 0.01321073155850172, -0.00297150737605989, 0.024159185588359833, 0.015799647197127342, 0.024546314030885696, 0.019937073811888695, -0.06150490790605545, 0.017795775085687637, 0.006792880594730377, -0.035615745931863785, 0.02108635939657688, -0.0021110556554049253, 0.0012710187584161758, -0.017130399122834206, 0.0039287409745156765, 0.02523588389158249, -0.04558428376913071, -0.040333863347768784, -0.01992497779428959, 0.04326151683926582, 0.04413255304098129, -0.04594721645116806, -0.054004307836294174, -0.001819197554141283, -0.01612628623843193, -0.00340551370754838, -0.010053221136331558, -0.00230461941100657, -0.017360256984829903, 0.0014615581603720784, 0.06600526720285416, -0.04618917033076286, 0.023711569607257843, -0.03815627098083496, 0.010875867679715157, 0.04130168259143829, -0.006212189327925444, -0.0037775191012769938, -0.0024271090514957905, -0.025211689993739128, -0.03684971481561661, 0.013343806378543377, -0.014420505613088608, -0.013077656738460064, -0.014904415234923363, -0.02920394390821457, -0.025937553495168686, 0.020166931673884392, 0.044858418405056, 0.03496246784925461, -0.002038469072431326, -0.0016135360347107053, 0.05061694234609604, -0.0032482431270182133, -0.005440958309918642, 0.005126417148858309, -0.017650602385401726, -0.038591790944337845, -0.017505429685115814, 0.015509301796555519, 0.006266628857702017, -0.0019386627245694399, -0.03017176315188408, 0.027969973161816597, -0.02818773314356804, -7.263369479915127e-05, -0.03133314475417137, -0.021945299580693245, 0.011517047882080078, -0.04127748683094978, -0.010385909117758274, 0.004820949397981167, 0.04616497457027435, 0.07994186133146286, -0.004830022342503071, -0.020154833793640137, -0.02448582462966442, -0.03968058526515961, -0.007561087142676115, 0.006925955880433321, -0.011293239891529083, -0.018194999545812607, -0.022465502843260765, -0.03711586445569992, 0.05177832394838333, 0.034502752125263214, -0.03394625708460808, 0.036656152456998825, -0.05952087789773941, 0.04819739609956741, -0.017832068726420403, 0.06416641175746918, 0.007264692801982164, 0.021207338199019432, -0.018207097426056862, -0.004458017181605101, -0.02063874341547489, -0.03017176315188408, 0.0010925771202892065, -0.02630048617720604, -0.04122909530997276, -0.018098218366503716, -0.016876347362995148, 0.008674079552292824, 0.012920386157929897, -0.04889906197786331, 0.0002752235741354525, 0.01619887351989746, 0.021122653037309647, 0.004624360706657171, -0.015110076405107975, -0.011734806932508945, 0.008516808971762657, 0.00429772213101387, -0.06842481344938278, -0.0244374331086874, -0.0323493555188179, -0.011813442222774029, -0.02622789889574051, -0.03392206132411957, 0.03005078434944153, 0.019610436633229256, -0.010851671919226646, 0.03438177704811096, 0.02913135662674904, 0.020263712853193283, 0.012496965005993843, 0.03813207522034645, -0.006417850963771343, -0.021352510899305344, -0.04171300679445267, 0.011329533532261848, 0.004724167287349701, 0.0027174546848982573, -0.0026584782171994448, -0.03019595704972744, -0.05187510699033737, 0.02079601399600506, -0.003018385963514447, 0.009702387265861034, 0.012061445973813534, 0.023009900003671646, 0.05105246230959892, 0.030558889731764793, -0.034647926688194275, 0.010113710537552834, -0.040575817227363586, -0.008268805220723152, 0.007796993013471365, -0.011571487411856651, 0.014057572931051254, -0.004488261416554451, 0.03769655525684357, -0.004476163536310196, -0.0032270720694214106, -0.017832068726420403, 0.00011842553067253903, -0.02934911660850048, 0.03314780816435814, -0.024643095210194588, -0.004086011555045843, 0.02339702844619751, 0.015388324856758118, 0.05976283177733421, -0.042366284877061844, -0.0024074502289295197, 0.04563267529010773, 0.022344524040818214, 0.02426806464791298, 0.02538105845451355, 0.013162340968847275, -0.026566635817289352, -0.008776909671723843, 0.00183431978803128, -0.03130894899368286, -0.0061063338071107864, -0.0010139418300241232, -0.0059309168718755245, 0.0008642322500236332, 0.00403762049973011, 0.0008589394856244326, -0.0038017146289348602, 0.03527700901031494, 0.030486304312944412, 0.05056855082511902, -0.0036293219309300184, 0.01888457126915455, 0.014081768691539764, -0.02386884018778801, -0.026711808517575264, -0.0037140059284865856, -0.0332929790019989, -0.03718845173716545, 0.010331469587981701, -0.02106216363608837, -0.013113949447870255, 0.005353249609470367, 0.020058052614331245, -0.0005719962646253407, 0.009496725164353848, -0.011704563163220882, -0.02535686269402504, 0.00754294078797102, -0.05153637006878853, -0.009829413145780563, -0.015775451436638832, -0.01938057877123356, 0.0022138862404972315, -0.008141778409481049, 0.006581170484423637, -0.035639941692352295, -0.022150961682200432, 0.025889161974191666, -0.02330024540424347, -0.039341848343610764, 0.02915555238723755, -0.040430646389722824, -0.02434065192937851, -0.0003476209822110832, 0.009049109183251858, -0.00267360033467412, -0.014045475982129574, 0.01759011298418045, -0.0055437893606722355, -0.0056617422960698605, 0.0016589025035500526, 0.011160165071487427, 0.02193320170044899, 0.01714249700307846, 0.03380108252167702, -0.011129920370876789, 0.03380108252167702, 0.020662939175963402, 0.011184359900653362, -0.0112750930711627, 0.004231184255331755, 0.0037805435713380575, -0.001920516137033701, 0.028768423944711685, -7.603617996210232e-05, -0.043430883437395096, 0.008661981672048569, 0.020808111876249313, 0.009829413145780563, 0.06416641175746918, 0.0035264911130070686, 0.029833026230335236, -0.01617467775940895, -0.0106823043897748, -0.004092060495167971, -0.02724410966038704, 0.009212428703904152, 0.015206858515739441, 0.06300503015518188, 0.01273891981691122, 0.01843695528805256, -0.0034085381776094437, -0.02649405039846897, -0.045366521924734116, -0.008619639091193676, -0.025913357734680176, 0.004645531997084618, -0.04914101958274841, 0.014771340414881706, 0.03152671083807945, -0.028986183926463127, 0.04998786002397537, -0.03404304012656212, -0.011262995190918446, -0.018243391066789627, 0.035664137452840805, -0.01997336745262146, -0.026929568499326706, -0.008716421201825142, -0.023675275966525078, -0.009551165625452995, -0.0035809308756142855, 0.010906112380325794, 0.036365803331136703, 0.03501085937023163, 0.019537849351763725, -0.025719793513417244, 0.029833026230335236, 0.020082248374819756, -0.015860136598348618, -0.04522135108709335, 0.034478556364774704, 6.351312913466245e-05, 0.014662460424005985, -0.019320089370012283, -0.043358299881219864, -0.04894745349884033, -0.0005689717945642769, 0.009914097376167774, -0.007972409948706627, 0.011262995190918446, 0.010367763228714466, 0.007609478197991848, 0.00010566619312157854, -0.016755368560552597, -0.024425335228443146, -0.036389999091625214, -0.013368002139031887, 0.01312604732811451, 0.00780909089371562, 0.022247742861509323, 0.023409126326441765, -0.03902730718255043, 0.04662468656897545, 0.030534693971276283, 0.034454360604286194, -0.005722230765968561, -0.009526969864964485, -0.004400552716106176, 0.0009988195961341262, -0.03440597280859947, 0.038567595183849335, 0.005939990282058716, -0.0017178789712488651, 0.003943862859159708, 0.02925233356654644, -0.021171044558286667, -0.004470114596188068, 0.01312604732811451, -0.011293239891529083, 0.009817315265536308, -0.03484148904681206, 0.01553349755704403, -0.004107182379812002, 0.004379381891340017, -0.030897626653313637, -0.021546073257923126, -0.011069431900978088, -0.02228403650224209, -0.0032179986592382193, -0.02158236689865589, 0.00874666590243578, -0.002200276358053088, 0.008553101681172848, -0.01097869873046875, 0.0030425814911723137, 0.02833290584385395, -0.01462616678327322, 0.024183381348848343, 0.001770806615240872, -0.0016226093284785748, 0.017880458384752274, -0.014843926765024662, -0.001365532400086522, 0.018920864909887314, 0.021715441718697548, 0.02391723170876503, -0.027098936960101128, -0.039438631385564804, -0.009115646593272686, -0.01189812645316124, -0.006762636359781027, 0.01957414299249649, 0.002537500811740756, 0.011589634232223034, -0.007258643861860037, -0.007361474446952343, -0.014057572931051254, -0.011892077513039112, -0.03709166869521141, -0.03389786556363106, -0.05163315311074257, -0.00995039101690054, -0.005168759264051914, -0.001367800636216998, 0.032591309398412704, 0.003505320055410266, -0.050133030861616135, 0.007040884345769882, 0.030558889731764793, 0.011716661043465137, -0.00038467030390165746, 0.011492852121591568, -0.026179509237408638, -0.03905150294303894, -0.016840053722262383, 0.005658717826008797, 0.0010411617113277316, 0.024630997329950333, -0.04425353184342384, 0.006986444350332022, 0.016537610441446304, -0.02212676592171192, 0.022163059562444687, -0.003019898198544979, 0.036510977894067764, 0.06077904254198074, 0.022743750363588333, -0.040454842150211334, -0.015860136598348618, 0.009188232943415642, 0.0009776485385373235, -0.011468657292425632, 0.026010140776634216, 0.021751735359430313, 0.04909262806177139, 0.007403816562145948, -0.021594464778900146, -0.03571252524852753, 0.019791901111602783, -0.04357605800032616, -0.02717152237892151, -0.0010381372412666678, 0.011335581541061401, 0.01147470623254776, -0.02311878092586994, 0.02359059266746044, 0.004276550840586424, -0.020856503397226334, -0.004690898582339287, -0.024739878252148628, -0.03341395780444145, -0.0029110186733305454, 0.05085889622569084, 0.019791901111602783, -0.002566233044490218, -0.002904969733208418, 0.01853373646736145, 0.01595691777765751, 0.01756591722369194, 0.018824081867933273, 0.0011666757054626942, 0.032736483961343765, -0.026929568499326706, -0.045439109206199646, -0.01642872951924801, -0.019283797591924667, 0.03438177704811096, -0.009145891293883324, -0.02818773314356804, -0.004016449674963951, 0.012944580987095833, -0.007192105986177921, -0.0023590591736137867, 0.004049718379974365, 0.01945316605269909, -7.891884888522327e-05, -0.004554798826575279, -0.022864727303385735, -0.0018282708479091525, 0.00416767131537199, -0.0019250528421252966, -0.013259122148156166, -0.000984453596174717, 0.006696098949760199, 0.026010140776634216, 0.006974346935749054, -0.003184729954227805, -0.025066515430808067, 0.03295424208045006, 0.006907809060066938, -0.000534946913830936, 0.007421963382512331, -0.01947735995054245, 0.004367284011095762, 0.001819197554141283, -0.03917248174548149, -0.010337518528103828, -0.011105724610388279, 0.047398943454027176, 0.04028547182679176, -0.0025072565767914057, -0.00777884665876627, 0.054294653236866, 0.03578511252999306, -0.006290824618190527, 0.013283317908644676, -0.007591331377625465, -0.014347919262945652, 0.07127988338470459, 0.03624482825398445, -0.03590609133243561, 0.028671642765402794, -0.002387791406363249, 0.009635849855840206, -0.020929088816046715, -0.016283556818962097, -0.053133271634578705, -0.00022097276814747602, -0.015460911206901073, 0.017251376062631607, -0.001233213348314166, -0.043430883437395096, 0.00014347162505146116, 0.012557453475892544, -0.021570269018411636, -0.04130168259143829, 0.014009182341396809, -0.009865706786513329, -0.025018125772476196, -0.011958615854382515, -0.011371875181794167, 0.025792380794882774, -0.037575580179691315, -0.001285384874790907, -0.02046937495470047, 0.018993450328707695, 0.0022622772958129644, -0.020977480337023735, -0.009702387265861034, 0.031550902873277664, -0.005002415273338556, 0.04880228266119957, 0.004863291513174772, -0.008704323321580887, -0.008976522833108902, -0.015327836386859417, -0.015896430239081383, -0.029591070488095284, 0.0054953983053565025, -0.004890511278063059, 0.0027325768023729324, -0.010041124187409878, 0.06508583575487137, 0.006393655203282833, 0.05293970927596092, 0.03239774703979492, -0.03438177704811096, 0.004833046812564135, 0.008002654649317265, 0.029034575447440147, -0.001386703341268003, 0.0067807831801474094, 0.011529145762324333, -0.03914828598499298, -0.0030093127861618996, 0.01697312854230404, 0.008813203312456608, 0.005879501346498728, 0.01761430874466896, 0.01838856376707554, -0.0018993450794368982, -0.005534715950489044, -0.012460671365261078, 0.029566874727606773, 0.0025133052840828896, -0.011087578721344471, 0.004388454835861921, 0.0220783744007349, -0.03205901011824608, 0.023409126326441765, 0.03772075101733208, 0.004001327324658632, 0.04497939720749855, 0.03147831931710243, -0.008032899349927902, 0.021025871858000755, 0.04519715532660484, -0.012049349024891853, 0.018896669149398804, 0.025598816573619843, -0.0031333144288510084, -0.03029274009168148, 0.007198154926300049, 0.061988815665245056, 0.0039015209767967463, -0.0014910463942214847, 0.014480994082987309, 0.024195479229092598, 0.012920386157929897, 0.012055397033691406, 0.020771818235516548, -0.020457277074456215, 0.02297360822558403, 0.029494289308786392, 0.02294941246509552, -0.03972897678613663, 0.002505744341760874, -0.02915555238723755, 0.03963219374418259, 0.0396563895046711, 0.00874666590243578, -0.007464305497705936, 0.015848038718104362, 0.03319619596004486, 0.029058771207928658, -0.015860136598348618, 0.0004892023280262947, 0.02082020975649357, 0.04193076491355896, -0.005313931964337826, 0.03244613856077194, -0.029663657769560814, -0.01794094778597355, -0.012605844996869564, 0.02238081768155098, 0.010633912868797779, 0.02925233356654644, 0.0479312427341938, 0.015073783695697784, 0.013960791751742363, 0.01947735995054245, 0.023554299026727676, 0.006015601102262735, 0.019441068172454834, 0.004161622375249863, -0.02530847117304802, -0.06663434952497482, 0.025550425052642822, -0.0024407189339399338, -0.021146848797798157, 0.04865710809826851, 0.002983605023473501, 0.004436845891177654, 0.016295654699206352, 0.01458987407386303, 0.030413717031478882, -0.014468896202743053, 0.02634887583553791, 0.01607789658010006, 0.008770860731601715, 0.012388085015118122, 0.02646985463798046, -0.003004776081070304, 0.0018040754366666079, 0.04589882493019104, 0.0396563895046711, 0.0216065626591444, 0.009871755726635456, -0.055165693163871765, -0.03728523477911949, -0.00977497361600399, -0.029542680829763412, 0.005952087696641684, -0.01517056580632925, -0.017747383564710617, 0.0035597598180174828, -0.013779325410723686, 0.016440827399492264, 0.05279453471302986, 0.023505907505750656, -0.002492134226486087, 0.010785134509205818, 0.01508588157594204, 0.0026902349200099707, 0.02134041301906109, -0.005837159231305122, -0.01607789658010006, 0.0029594094958156347, -0.01559398602694273, -0.018267586827278137, -0.023638982325792313, -0.002469451166689396, -0.028792619705200195, -0.006448095198720694, -0.01101499143987894, 0.009164038114249706, -0.05850466713309288, -0.04207593947649002, 0.01890876702964306, -0.003420635825023055, 0.03389786556363106, -0.016803760081529617, 0.013694641180336475, 0.043334104120731354, 0.030002394691109657, 0.003962009679526091, -0.01069440133869648, -0.0017481233226135373, -0.03501085937023163, -0.01018629688769579, 0.01900554820895195, 0.03491407632827759, -0.012484867125749588, -0.013464784249663353, -0.0036656151060014963, -0.011438412591814995, 0.004923779983073473, 0.018170805647969246, 0.01895715855062008, 0.004076938144862652, 0.006266628857702017, -0.017251376062631607, 0.026542440056800842, -0.013984986580908298, 0.03152671083807945, -0.03142992779612541, -0.018691007047891617, 0.008504711091518402, -0.008541003800928593, 0.05381074547767639, 0.01669488102197647, 0.03036532551050186, 0.034744709730148315, -0.02377205900847912, -0.003686786163598299, 0.04906843230128288, -0.00028618716169148684, -0.004557823296636343, 0.016065798699855804, -0.04703601077198982, 0.002650917274877429, 0.01942897029221058, 0.03106699511408806, 0.024280162528157234, -0.04263243451714516, 0.007972409948706627, -0.03038952127099037, 0.03716425597667694, 0.007034835405647755, 0.005770621821284294, 0.012351792305707932, -0.0107427928596735, -0.002856578677892685, -0.00780909089371562, -0.005828085821121931, 0.006194042507559061, 0.02042098343372345, -0.04676986113190651, 0.007482451852411032, -0.02448582462966442, -0.020106442272663116, -0.0018615396693348885, -0.02037259377539158, -0.008843448013067245, -0.03486568480730057, 0.013295415788888931, 0.017275571823120117, 0.004957048688083887, -0.022150961682200432, 0.011976761743426323, 0.016634391620755196, 0.004866315517574549, -0.014807633124291897, 5.836214040755294e-05, 0.0016664635622873902, -0.009980634786188602, 0.009593507274985313, -0.011293239891529083, 0.07142505049705505, -0.0010895526502281427, -0.005652668885886669, -0.003505320055410266, 0.0043158684857189655, -0.011843686923384666, 0.00786353088915348, 0.005589155480265617, 0.019985465332865715, 0.017215082421898842, -0.025671403855085373, 0.016743270680308342, 0.026929568499326706, 0.029591070488095284, -0.01508588157594204, 0.018521638587117195, 0.024050306528806686, 0.014904415234923363, 0.009272917173802853, 0.01417855080217123, 0.030946018174290657, -0.019017646089196205, -0.013440588489174843, -0.019707217812538147, 0.018449053168296814, -0.054149482399225235, -0.014130160212516785, 0.013355904258787632, -0.008450270630419254, -0.017009422183036804, 0.037599775940179825, -0.0021428121253848076, -0.005453056190162897, -0.00799055676907301, 0.019840292632579803, -0.017057811841368675, 0.013331708498299122, -0.03295424208045006, 0.014432603493332863, -0.018315978348255157, -0.018255488947033882, 0.01056737545877695, -0.02351800538599491, 0.014529385603964329, 0.03590609133243561, 0.03769655525684357, 0.005691986531019211, -0.021763833239674568, 0.008178072050213814, -0.02330024540424347, 0.027703823521733284, 0.024655193090438843, -0.006351313088089228, -0.017953045666217804, 0.01600530929863453, 0.004146500024944544, 0.0002481926931068301, -0.01365834753960371, -0.04403577372431755, -0.004588067531585693, 0.0027976022101938725, -0.028792619705200195, 0.012164277024567127, -0.02138880267739296, 0.03382527828216553, -0.03380108252167702, 0.023167170584201813, -0.019695119932293892, -0.0005924112047068775, -0.004288648720830679, 0.011813442222774029, -0.03404304012656212, 0.011142018251121044, -0.009448334574699402, -0.003453904530033469, 0.012835701927542686, -0.038470812141895294, -0.008752714842557907, 0.0016089993296191096, -0.006191018037497997, 0.009248721413314342, 0.0008423051331192255, 0.023179268464446068, 0.035664137452840805, -0.02014273591339588, -0.02046937495470047, -0.036607760936021805, 0.008159925229847431, 0.0020792989525943995, -0.009212428703904152, -0.005676864180713892, 0.002002175897359848, -0.026058530434966087, -0.015134272165596485, -0.004237233195453882, 0.007700211368501186, 0.016936834901571274, -0.028792619705200195, -0.013065558858215809, -0.006254531443119049, 0.005244370084255934, -0.0042463066056370735, 0.013948693871498108, 0.026542440056800842, 0.00013411478721536696, -0.005725255236029625, -0.0021987641230225563, 0.009526969864964485, 0.004775582812726498, -0.02721991389989853, -0.036389999091625214, 0.0013126047560945153, 0.0037533235736191273, 0.014686656184494495, -0.006033747456967831, -0.005353249609470367, 0.010107661597430706, 0.02632468193769455, 0.010633912868797779, 0.027510259300470352, 0.02542944811284542, -0.009412040933966637, 0.018727300688624382, 0.027848996222019196, -0.012581649236381054, 0.028526470065116882, 0.02339702844619751, 0.004391479305922985, 0.02108635939657688, -0.008909985423088074, -0.014517287723720074, 0.01938057877123356, -0.006302922498434782, 0.011904175393283367, -0.03152671083807945, -0.014722948893904686, -0.01045849546790123, -0.012460671365261078, 0.007966361939907074, 0.00799055676907301, -0.002649405039846897, -0.0020974455401301384, 0.014843926765024662, 0.0006593267899006605, -0.0033420005347579718, 0.0008521345444023609, -0.0028338953852653503, 0.012121935375034809, 0.02540525235235691, -0.004690898582339287, 0.007591331377625465, -0.0009080866002477705, 0.011994908563792706, -0.007954264059662819, -0.012569551356136799, -0.01716669276356697, 0.022767946124076843, -0.03411562368273735, 0.014517287723720074, 0.015291542746126652, -0.0037351769860833883, 0.011547292582690716, -0.02351800538599491, 0.0003071691608056426, -0.012363890185952187, 0.0071195196360349655, 0.0005893867346458137, -0.0016710002673789859, -0.03022015281021595, 0.0032996584195643663, 0.005852281581610441, -0.00427352637052536, 0.013113949447870255, 0.007476402912288904, -0.04292277991771698, 0.01607789658010006, 0.01836436800658703, 0.006115407217293978, -0.017215082421898842, -0.009871755726635456, -0.01042220275849104, 0.02649405039846897, 0.014105964452028275, -0.005834134761244059, -0.0135736633092165, -0.030800845474004745, 0.03977736830711365, -0.0211347509175539, 0.007954264059662819, -0.021727539598941803, 0.04183398187160492, -0.031817056238651276, 0.04858452081680298, -0.0038984965067356825, -0.013368002139031887, -0.009599556215107441, -0.021896908059716225, 0.04197915643453598, 0.004158597905188799, 0.020626645535230637, 0.007591331377625465, 0.02359059266746044, -0.021896908059716225, 0.036656152456998825, -0.03038952127099037, -0.04899584501981735, -0.014614068903028965, -0.009405992925167084, 0.009182184003293514, -0.007651820313185453, 0.03019595704972744, -0.024122891947627068, -0.002300082705914974, -0.00550749571993947, 0.039511218667030334, 0.044422898441553116, 0.016586000099778175, 0.025768185034394264, -0.00883135013282299, -0.025598816573619843, -0.03929345682263374, 0.014928610995411873, 0.01751752756536007, -0.012799408286809921, 0.006387606263160706, 0.002601013984531164, -0.005958136636763811, 0.036462586373090744, 0.021848518401384354, -0.0314057320356369, 0.03406723588705063, -0.010210491716861725, -0.00990199949592352, -0.03029274009168148, 0.017215082421898842, 0.01749333180487156, -0.03017176315188408, -0.000834744016174227, -0.02346961386501789, -0.03343815356492996, -0.012956678867340088, -0.0116864163428545, -0.05279453471302986, 0.005356274079531431, -0.04282599687576294, -0.004228159785270691, -0.007821188308298588, -0.029034575447440147, 0.014251137152314186, -0.046479515731334686, -0.022235644981265068, -0.039341848343610764, -0.006641658954322338, -0.018170805647969246, 0.023457517847418785, -0.013815618120133877, 0.002017298014834523, 0.00377449463121593, -0.03019595704972744, -0.049310386180877686, -0.01654970832169056, -0.056181903928518295, 2.8968415790586732e-05, 0.008668030612170696, 0.020203225314617157, 0.04277760535478592, -0.030413717031478882, 0.010797232389450073, -0.021679149940609932, 0.00947857927531004, 0.013283317908644676, 0.0007390962564386427, -0.0001693683589110151, -0.043358299881219864, -0.02346961386501789, 0.001283116522245109, 0.020856503397226334, -0.011650122702121735, -0.01749333180487156, 0.015255249105393887, -0.007040884345769882, 0.012484867125749588, -0.018896669149398804, -0.0030350203160196543, -0.011523096822202206, 0.033655911684036255, 0.028090951964259148, 0.012170325964689255, 0.019961269572377205, -0.0053865183144807816, -0.0031605344265699387, 0.01883617974817753, 0.00953906774520874, -0.01188602950423956, 0.010331469587981701, 0.0030818991363048553, -0.030534693971276283, 0.026566635817289352, -0.025840772315859795, -0.017323963344097137, 0.01030727382749319, -0.011680367402732372, 0.020058052614331245, 0.021848518401384354, 0.005374420899897814, 0.012291302904486656, 0.022163059562444687, 0.0036111753433942795, 0.006647707894444466, -0.04292277991771698, -0.009629800915718079, 0.04422933608293533, 0.0049177310429513454, -0.022017886862158775, -0.012279205955564976, 0.028768423944711685, -0.010627863928675652, 0.0005799353821203113, 0.02044517919421196, 0.021872712299227715, 0.011777149513363838, 0.015569791197776794, 0.030825041234493256, -0.012944580987095833, 0.050520159304142, -0.0342366024851799, -0.010210491716861725, 0.003704932751134038, -0.029687853530049324, 0.01786836050450802, -0.00034478557063266635, -0.015013294294476509, 0.001401069457642734, -0.012605844996869564, -0.005313931964337826, 0.003338976064696908, 0.005586131010204554, -0.005794817116111517, 0.00812363252043724, -0.014904415234923363, 0.010047173127532005, 0.024872953072190285, 0.010863769799470901, 0.019767707213759422, 0.016416631639003754, -0.0012490915833041072, -0.0023998890537768602, 4.257837281329557e-05, -0.027582846581935883, -0.004004351794719696, -0.007881677709519863, 0.04577784612774849, -0.0036928351037204266, -0.0060791140422225, 0.0387127660214901, 0.03222837671637535, 0.03336556628346443, -0.034526947885751724, 0.029881415888667107, -0.017009422183036804, 0.002976043848320842, 0.011184359900653362, -0.0019250528421252966, 0.02835710160434246, 0.06755378097295761, 0.0005077270325273275, -0.010555277578532696, 0.010264932177960873, 0.014952805824577808, 0.006284775678068399, 0.0002020700485445559, -0.01312604732811451, -0.00427352637052536, 0.03968058526515961, 0.020650841295719147, -0.026760200038552284, -0.004554798826575279, 0.023735765367746353, 0.00757318502292037, 0.037551384419202805, -0.0005995942046865821, -0.05153637006878853, -0.0003935545973945409, -0.034430164843797684, 0.057004548609256744, -0.012013055384159088, 0.002238081768155098, -0.005855306051671505, 0.030002394691109657], [0.06931912153959274, 0.019634725525975227, 0.07227855175733566, 0.01626267470419407, -0.025069845840334892, 0.048887621611356735, 0.0014014641055837274, -0.02588084526360035, -0.027815861627459526, -0.0029309808742254972, 0.009554143995046616, 0.007711609825491905, 0.011026748456060886, 0.010699503123760223, 0.0016362271271646023, 0.0391271710395813, 0.0366799421608448, -0.02319174073636532, -0.03457419201731682, 0.02145591750741005, 0.019321708008646965, 0.02411656454205513, -0.003576579038053751, -0.02094370685517788, -0.013666053302586079, -0.0366230309009552, 0.03619619086384773, 0.02588084526360035, 0.08451468497514725, -0.028399212285876274, 0.03707832843065262, -0.048916079103946686, 0.04072071239352226, -0.05913182720541954, -0.07518108189105988, -0.0018567621009424329, -0.0208156555891037, 0.05284302309155464, -0.0006833915831521153, -0.0021199812181293964, -0.014612219296395779, 0.04780628904700279, 0.018638761714100838, 0.004983378574252129, 0.026350371539592743, 0.08821398764848709, -7.580889359815046e-05, -0.04999741166830063, -0.05281456559896469, 0.04917218163609505, 0.0705711841583252, 0.024386897683143616, -0.020403040573000908, -0.025852389633655548, 0.009988099336624146, 0.03335057571530342, 0.002379643265157938, 0.002578836167231202, 0.06044080853462219, -0.004698817618191242, -0.02930980734527111, -0.03554169833660126, 0.01815500669181347, 0.0012031605001538992, -0.05500568822026253, -0.005065190140157938, -0.02125672437250614, 0.014654903672635555, -0.032212331891059875, -0.009433205239474773, -0.03932636231184006, -0.002772693522274494, 0.026762984693050385, -0.01856762170791626, -0.022523021325469017, 0.03935481980443001, 0.023035231977701187, 0.024899108335375786, -0.013552228920161724, 0.013530886732041836, -0.04259881749749184, -0.042798012495040894, 0.0029967855662107468, -0.02309214510023594, -0.025439774617552757, 0.007298995740711689, -0.07034353911876678, 0.002815377665683627, 0.012321501970291138, -0.013865246437489986, -0.0340619795024395, -0.007039333693683147, -0.04345250129699707, 0.05338368937373161, -0.04120446741580963, 0.0013605584390461445, 0.033435944467782974, -0.02542554773390293, -0.019165199249982834, 0.06687188893556595, 0.008337643928825855, -0.012022712267935276, 0.005029620137065649, -0.056912247091531754, 0.006811684928834438, -0.041517484933137894, -0.07774212956428528, 0.00420083524659276, -0.00796771515160799, -0.04604201018810272, -0.012435326352715492, -0.02000465616583824, -0.005157672334462404, 0.0265211071819067, -0.006427526939660311, -5.9580008382909e-05, -0.021527057513594627, -0.02048840932548046, -0.01943553239107132, -0.003973186481744051, 0.024415355175733566, -0.02186853066086769, -0.036509208381175995, -0.042570360004901886, -0.024329986423254013, -0.012008484452962875, -0.02135632187128067, 0.01079198531806469, -0.02603735402226448, -0.04521678015589714, 0.026634931564331055, -0.06442466378211975, 0.06021315976977348, -0.06351406872272491, -0.06089610606431961, 0.039781659841537476, -0.02225268818438053, 0.007953486405313015, 0.013317465782165527, -0.01930748112499714, 0.03127327933907509, -0.014121351763606071, 0.004037212580442429, 0.014448597095906734, -0.033492859452962875, 0.03887106478214264, 0.017528971657156944, 0.05403817817568779, -0.001052876585163176, 0.02639305591583252, -0.01141801942139864, -0.04453383386135101, -0.02546823024749756, -0.04718025401234627, -0.02818579040467739, -0.012129423208534718, 0.018809497356414795, 0.05076572671532631, 0.0023173955269157887, -0.01590697281062603, 0.030191946774721146, -0.011745265685021877, 0.012534922920167446, -0.03130173683166504, 0.026208089664578438, -0.02815733477473259, -0.03204159438610077, 0.055916283279657364, -0.029096387326717377, 0.003870032960548997, -0.045359060168266296, -0.009084617719054222, -0.006242562085390091, 0.0529853031039238, -0.0005135441315360367, -0.02757398411631584, 0.0023725293576717377, 0.010656818747520447, 0.03554169833660126, -0.0041368091478943825, 0.026151178404688835, 0.03337903320789337, -0.004332445096224546, -0.003155072685331106, -0.04393625631928444, 0.04857460409402847, 0.004606334958225489, -0.004175936337560415, -0.007654697168618441, 0.023647038266062737, 0.03127327933907509, -0.03312292695045471, -0.01230015978217125, 0.04655421897768974, -0.006719202268868685, -0.06334333121776581, -0.008536837063729763, -0.044277727603912354, -0.003338258946314454, 0.0065164524130523205, 0.008693345822393894, -0.023590127006173134, 0.008053082972764969, -0.0077685220167040825, -0.03335057571530342, -0.03892797604203224, -0.00011082326818723232, 0.062489647418260574, 0.0630018562078476, -0.0017349342815577984, 0.02440112642943859, -0.03488720953464508, -0.042285799980163574, 0.021569741889834404, 0.003252890659496188, -0.049143727868795395, 0.011453590355813503, -0.0013623369159176946, -0.012065396644175053, 0.03360668197274208, -0.04976976290345192, 0.01119037065654993, -0.02864108979701996, -0.026378827169537544, -0.0007025105878710747, 0.032980646938085556, 0.011745265685021877, -0.01603502593934536, -0.023974284529685974, -0.0707988366484642, -0.037732820957899094, 0.01194445788860321, -0.008750258013606071, -0.011581642553210258, -0.029423631727695465, 0.021911215037107468, -0.025354405865073204, -0.06635968387126923, 0.0002958992263302207, 0.026023125275969505, 0.046355027705430984, -0.04350941255688667, 0.03383433073759079, 0.0018763256957754493, -0.005541830323636532, -0.000574013392906636, -0.0030732613522559404, -0.03631001338362694, 0.028328072279691696, 0.018866410478949547, -0.012193448841571808, 0.009120187722146511, 0.025197897106409073, -0.001720706233754754, -0.02414502203464508, 0.02876914106309414, 0.024315757676959038, -0.013829676434397697, -0.012527808547019958, -0.041802044957876205, 0.006566250696778297, 0.008885424584150314, -0.0429687462747097, -0.01210808102041483, -0.04146057367324829, -0.04365169256925583, 0.035712435841560364, -0.0117025813087821, 0.002055954886600375, 0.0756932869553566, -0.04012313485145569, 0.018112322315573692, -0.001100896275602281, 0.023917371407151222, -0.06180670112371445, -0.005036734044551849, -0.004279089625924826, -0.012008484452962875, 0.03653766214847565, -0.0009568371460773051, -0.03608236461877823, -0.03263917565345764, 0.001240509212948382, -0.05503414571285248, 0.024685688316822052, -0.0032724542543292046, -0.004759286530315876, 0.00580504909157753, -0.01930748112499714, 0.04794856905937195, 0.06402628123760223, -0.02546823024749756, -0.017841989174485207, -0.002633969997987151, -0.03004966676235199, -0.03110254369676113, -0.07745756953954697, -0.029907386749982834, -0.013587798923254013, -0.03229770064353943, -0.0037526513915508986, 0.05585937201976776, 0.007697381544858217, 0.006054040510207415, -0.02094370685517788, -0.0074270484037697315, -0.032952193170785904, 0.014854096807539463, -0.04370860755443573, -0.03841576725244522, 0.02434421330690384, 0.06658732891082764, -0.03821657598018646, 0.0183115154504776, -0.0003110165416728705, -0.022437654435634613, -0.051135655492544174, -0.006459540221840143, 0.07483960688114166, -0.005250154994428158, 0.03332212194800377, -0.008287846110761166, -0.034488823264837265, 0.00022853825066704303, 0.06294494867324829, -0.0018745472189038992, 0.024287302047014236, 0.028498807922005653, -0.010607019998133183, 0.007010877598077059, -0.049086812883615494, 0.008814284577965736, 0.011837747879326344, 0.02129940874874592, -0.0011631441302597523, -0.008515494875609875, 0.0005829058936797082, -0.02283603884279728, 0.05901800096035004, -0.024827968329191208, 0.0074768466874957085, -0.023775091394782066, 0.0004010534903500229, 0.04601355269551277, -0.03261071816086769, -0.01876681298017502, 0.006829469930380583, 0.048859164118766785, -0.0061394087970256805, -0.0030803754925727844, 0.01777084916830063, -0.012236133217811584, -0.030675701797008514, 0.026834124699234962, 0.029139071702957153, 0.022153092548251152, 0.0101019237190485, -0.035740893334150314, -0.04550134390592575, 0.021057531237602234, 0.023134829476475716, -0.02895410545170307, -0.023675495758652687, 0.0072314124554395676, 0.037761278450489044, 0.011005406267940998, -0.025183670222759247, 0.05307067185640335, 0.0036992961540818214, 0.007010877598077059, 0.0454159751534462, 0.04564362391829491, -0.023433618247509003, -0.02357589825987816, -0.015181342139840126, 0.0145126236602664, -0.0283849835395813, 0.04581436142325401, -0.02225268818438053, 0.019350163638591766, 0.017130587249994278, -0.014306316152215004, 0.013040019199252129, 0.0029220881406217813, -0.002002599649131298, 0.04638348147273064, -0.047891657799482346, 0.029964298009872437, 0.015167114324867725, -0.048346955329179764, -0.0031657437793910503, 0.02933826483786106, -0.0002681100449990481, 0.04097681865096092, -0.0011489159660413861, -0.0022320272400975227, 0.08457159996032715, 0.03665148839354515, -0.0049727074801921844, -0.05477803945541382, 0.022651074454188347, -0.032980646938085556, 0.018994463607668877, 0.056229300796985626, -0.014626448042690754, -0.0028313843067735434, 0.01872413046658039, -0.038017380982637405, -0.01910828799009323, -0.022949863225221634, 0.005925987847149372, -0.03130173683166504, 0.0467534102499485, 0.01138244941830635, 0.029195982962846756, 0.0201753918081522, -0.017614340409636497, 0.041830502450466156, -0.010308231227099895, -0.03181394562125206, 0.011823519133031368, -0.013075589202344418, -0.011923115700483322, 0.01289062388241291, -0.07096957415342331, -0.011524730361998081, -0.028271159157156944, 0.006961079314351082, -0.01927902363240719, -0.024870652705430984, -0.03653766214847565, 0.05600165203213692, 0.02129940874874592, 0.03258226066827774, -0.06522143632173538, -0.001384568284265697, -0.01269854512065649, 0.018837954849004745, 0.02319174073636532, -0.026947949081659317, -0.012627405114471912, -0.02616540528833866, 0.047920111566782, 0.03312292695045471, 0.0023689724039286375, -0.000763424439355731, 0.011403791606426239, 0.07273385673761368, -0.0013214312493801117, 0.02181161940097809, 0.019606269896030426, 0.01949244551360607, -0.05665614455938339, 0.015636639669537544, 0.028555721044540405, -0.02171202190220356, -0.009589713998138905, -0.036452293395996094, 0.016333814710378647, 0.0013089816784486175, -0.004994049668312073, 0.020118480548262596, 0.06994515657424927, -0.003053697757422924, 0.010692388750612736, 0.06738410145044327, -0.013993298634886742, -0.02048840932548046, -0.026819897815585136, -0.03733443468809128, -0.00041483694803901017, -0.020090023055672646, 0.027830088511109352, -0.004670361522585154, 0.036253102123737335, -0.03002121113240719, 0.0008656886639073491, -0.02055954933166504, -0.04322485253214836, -0.024941792711615562, -0.033435944467782974, -0.0018549836240708828, -0.04376551881432533, -0.005093646235764027, -0.00448183948174119, 0.009340723045170307, 0.00035659081186167896, -0.010414941236376762, -0.036224644631147385, -0.029765106737613678, -0.03238306939601898, 0.025126757100224495, 0.03855804726481438, -0.016760656610131264, -0.008792942389845848, -0.020445724949240685, 0.017344007268548012, -0.014128465205430984, -0.01966318115592003, -0.014299202710390091, 0.018837954849004745, -0.07939258962869644, -0.0006487107020802796, -0.031415559351444244, 0.00716027244925499, 0.01590697281062603, -0.028271159157156944, 0.009077503345906734, -0.006804570555686951, 0.03306601569056511, 0.02536863461136818, 0.023106371983885765, 0.03133019432425499, 0.03608236461877823, 0.022551478818058968, -0.012847940437495708, 0.011432248167693615, -0.0007011767011135817, -0.022409196943044662, -0.006751215551048517, 0.00037459819577634335, 0.029708193615078926, -0.017528971657156944, -0.039753206074237823, 0.02516944147646427, 0.0014423697721213102, 0.013089817017316818, -0.06237582489848137, -0.016661060974001884, -0.0009150422411039472, -0.019705865532159805, -0.06015624478459358, -0.04089144989848137, -0.015864288434386253, -0.006594706792384386, 0.011403791606426239, 0.021342093124985695, 0.04211506247520447, 0.02232383005321026, -0.008102881722152233, -0.00627101818099618, -0.01872413046658039, 0.02828538790345192, -0.006331487558782101, 0.021242497488856316, 0.024031197652220726, 0.03756208345293999, 0.04057843238115311, 0.010336686857044697, 0.001190710929222405, -0.012349957600235939, 0.00841589830815792, -0.013217869214713573, 0.0170594472438097, -0.01616307906806469, 0.038273487240076065, 0.008622205816209316, -0.008892538957297802, -0.003183528780937195, -0.0052430410869419575, 0.0246287751942873, -0.0035107743460685015, 0.0019261238630861044, -0.0015846503665670753, 0.011916002258658409, 0.03568397834897041, -0.023462073877453804, -0.022935636341571808, -0.008444354869425297, -0.0004123914986848831, -0.03352131322026253, 0.03696450591087341, 0.021014846861362457, 0.027531299740076065, 0.009753336198627949, 0.02818579040467739, 0.031244823709130287, -0.019705865532159805, -0.008252276107668877, -0.008095767349004745, -0.0026997746899724007, 0.009753336198627949, 0.022679530084133148, -0.03958246856927872, -0.015081745572388172, -0.01230015978217125, -0.025567827746272087, -0.0009114852291531861, -0.029850473627448082, 0.031956225633621216, -0.029850473627448082, -0.014220948331058025, 0.016632605344057083, 0.0189517792314291, -0.02110021561384201, 0.020886795595288277, -0.04097681865096092, 0.0011115673696622252, 0.008202477358281612, -0.00953991524875164, 0.004350230097770691, -0.024329986423254013, 0.030362684279680252, 0.00505096185952425, -0.03998085483908653, -0.03855804726481438, 0.015110202133655548, 0.008892538957297802, -0.0035996995866298676, 0.03218387812376022, 0.03872878476977348, -0.004022984765470028, 0.022153092548251152, -0.030988719314336777, -0.0041368091478943825, -0.025638967752456665, -0.02514098584651947, 0.005260826088488102, -0.03189931437373161, -0.020161163061857224, 0.003642383962869644, 0.010912923142313957, -0.0007385253557004035, 0.012200563214719296, -0.025738563388586044, 0.008373214863240719, 0.039240993559360504, -0.025695880874991417, -0.009511459618806839, 0.013160957023501396, 0.00933360867202282, -0.030448053032159805, 0.009547029621899128, -0.014882553368806839, -0.009113073348999023, 0.009739108383655548, 0.007277653552591801, -0.024771055206656456, -0.014854096807539463, 0.03588317334651947, -0.007483960594981909, -0.007619127165526152, 0.01289062388241291, -0.04100527614355087, 0.0020612904336303473, 0.03309447318315506, 0.012791028246283531, 0.03252534940838814, 0.013367264531552792, 0.013111159205436707, 0.004894453566521406, 0.005950886756181717, 0.00689349602907896, -0.012421098537743092, 0.01141801942139864, -0.0071851713582873344, -0.016276903450489044, 0.018396884202957153, -0.0018603191711008549, 0.0208725668489933, -0.04905835911631584, -0.0006495999405160546, 0.00038371304981410503, -0.020772971212863922, 0.05429428443312645, 0.022850267589092255, 0.012670089490711689, 0.030248859897255898, 0.030248859897255898, -0.023718180134892464, 0.05147712677717209, 0.013815448619425297, 0.04265572875738144, 0.005289282184094191, 0.006303031463176012, -0.030419597402215004, -0.004552979953587055, 0.022238461300730705, -0.029992755502462387, 0.009134415537118912, -0.03332212194800377, -0.02639305591583252, 0.028740685433149338, -0.01789890229701996, -0.021797390654683113, -0.022366514429450035, -0.021043304353952408, -0.017614340409636497, 0.014967921189963818, 0.008586635813117027, 0.010642590001225471, -0.0067583294585347176, 0.012236133217811584, -0.006157193798571825, 0.03056187741458416, 0.00238142185844481, -0.001579314935952425, -0.03554169833660126, -0.015821605920791626, -0.04137520492076874, 0.004727273713797331, -0.013139615766704082, -0.011538958176970482, -0.04049306362867355, -0.0455297976732254, -0.018482252955436707, -0.033435944467782974, -0.00859374925494194, 0.018254604190587997, 0.01680334098637104, -0.015010605566203594, -0.01244244072586298, -0.0315009281039238, -0.01984814740717411, 0.004375129006803036, -0.00897790677845478, 0.010927151888608932, -0.013032904826104641, 0.01687448099255562, -0.018610306084156036, -0.022935636341571808, 0.01043628342449665, -0.021726250648498535, 0.032724544405937195, 0.01859607733786106, -0.03152938559651375, -0.006455983035266399, 0.011695466935634613, -0.034232717007398605, 0.04641193896532059, 0.031984683126211166, 0.013865246437489986, -0.004022984765470028, 0.002418770454823971, -0.019122514873743057, 0.0315578430891037, -0.022309601306915283, 0.010941379703581333, -0.03616773337125778, -0.009376293048262596, 0.02319174073636532, -0.06237582489848137, 0.013886588625609875, 0.010215748101472855, 0.02000465616583824, -0.008686231449246407, -0.016120394691824913, -0.010557222180068493, -0.04060688987374306, 0.034204259514808655, -0.016589920967817307, 0.013637597672641277, -0.043310221284627914, -0.02812887914478779, 0.0182830598205328, -0.052928391844034195, 0.006182093173265457, 0.03921253979206085, 0.00372775224968791, -0.0059793428517878056, 0.011069431900978088, -0.019748549908399582, -0.004862440284341574, 0.0065520224161446095, 0.03739134594798088, 0.008928108960390091, -0.034488823264837265, -0.018482252955436707, -0.026279231533408165, -0.025695880874991417, -0.009561257436871529, -0.014626448042690754, 0.006690746173262596, -0.0038913749158382416, 0.0072812107391655445, -0.015579728409647942, -0.009511459618806839, -0.028840281069278717, -0.0004735277034342289, 0.007868118584156036, 0.026321914047002792, 0.0208725668489933, -0.02263684757053852, 0.033948156982660294, 0.008245161734521389, 0.004663247149437666, -0.01491100899875164, -0.019748549908399582, 0.02654956467449665, 0.008109995163977146, -0.03596854209899902, -0.023077916353940964, -0.005794378463178873, -0.03764745220541954, -0.043082572519779205, -0.0031283951830118895, 0.0265211071819067, -0.02851303666830063, -0.04703797399997711, 0.022807583212852478, 0.010023669339716434, -0.030903350561857224, -0.0013249883195385337, -0.014868324622511864, 0.05901800096035004, -0.01254203636199236, -0.032724544405937195, 0.016348043456673622, -0.014028869569301605, -0.023675495758652687, 0.0182830598205328, 0.010272661224007607, -0.009127302095293999, -0.025254810228943825, 0.039070259779691696, -0.017002534121274948, -0.015167114324867725, 0.039041802287101746, -0.01670374535024166, -0.012556265108287334, 0.03963937982916832, -0.012904852628707886, -0.026962177827954292, 0.009226898662745953, -0.005257268901914358, -0.00909173209220171, -0.03537096083164215, 0.054692670702934265, 0.012278817594051361, 0.04288337752223015, 0.02097216434776783, 0.05503414571285248, 0.011517615988850594, 0.012919080443680286, -0.026065809652209282, -0.020801426842808723, -0.0157504640519619, -0.031415559351444244, 0.006103838793933392, 0.041574396193027496, 0.007740065921097994, -0.025439774617552757, 0.0033542655874043703, 0.007313224021345377, -0.006815241649746895, 0.01933593675494194, -0.00030390251777134836, 0.0040727825835347176, -0.010372256860136986, -0.0029932286124676466, -0.008615091443061829, 0.0227648988366127, -0.0068579260259866714, -0.007195842452347279, -0.013495316728949547, -0.035001032054424286, 0.009596827439963818, 0.032667629420757294, -0.02690526470541954, 0.012385527603328228, -0.0007714277599006891, 0.005598742514848709, -0.0016415626741945744, -0.04220043122768402, 0.007540872786194086, 0.0011151243234053254, 0.0352855920791626, 0.04641193896532059, -0.004716602619737387, -0.0480339378118515, -0.027588212862610817, 0.004090568050742149, 0.015864288434386253, -0.019321708008646965, -0.03670839965343475, 0.007583557162433863, 0.019094059243798256, 0.0379604697227478, 0.035996995866298676, 0.002827827353030443, 0.03764745220541954, 0.02575279213488102, 0.03872878476977348, -0.0492575503885746, 0.010642590001225471, -0.02174047939479351, -0.023945828899741173, 0.044846851378679276, -0.01542321965098381, 0.02071605809032917, -0.025667423382401466, 0.00400875648483634, 0.013971957378089428, -0.036992959678173065, 0.005271497182548046, 0.008337643928825855, -0.013409948907792568, 0.028370756655931473, 0.01338860671967268, 0.030419597402215004, -0.03559860959649086, -0.01159587036818266, -0.014868324622511864, 0.006068268325179815, -0.03983857482671738, 0.030618788674473763, -0.025254810228943825, -0.041261378675699234, -0.0208725668489933, 0.019634725525975227, 0.038472678512334824, -0.03585471585392952, 0.023846231400966644, -0.03696450591087341, 0.0012707437854260206, 0.028043510392308235, -0.0037988924887031317, -0.02447226643562317, -0.023035231977701187, 0.017372462898492813, 0.007896574214100838, -0.007249197456985712, 0.008814284577965736, 0.026350371539592743, -0.0020933037158101797, 0.0074412766844034195, -0.00344674801453948, 0.002630413044244051, 0.012855053879320621, 0.020218076184391975, -0.012869281694293022, 0.032468438148498535, 0.026720300316810608, 0.008935223333537579, -0.022494565695524216, -0.03465956076979637, -0.0024490051437169313, 0.009269582107663155, 0.01194445788860321, 0.005783707369118929, -0.022181548178195953, 0.05326986312866211, 0.03491566330194473, -0.035484787076711655, 0.001383678987622261, -0.013338807970285416, 0.021085988730192184, 0.028342299163341522, -0.010813327506184578, -0.01319652795791626, 0.04237116873264313, 0.01930748112499714, 0.008131337352097034, -0.008102881722152233, -0.0208156555891037, -0.007683153729885817, -0.022295372560620308, 0.0015099530573934317, -0.01079198531806469, -0.016917165368795395, -0.05073726922273636, 0.006356386933475733, 0.02854149229824543, -0.02751707285642624, -0.0021342092659324408, 0.03110254369676113, 0.00872180238366127, -0.030163491144776344, -0.0026962177362293005, -0.02427307330071926, -0.016305359080433846, -0.03713524341583252, 0.0027531299274414778, -0.012186335399746895, -0.006313702557235956, -0.011745265685021877, 0.02851303666830063, -0.01747206039726734, -0.015465903095901012, -0.0011204598704352975, 0.013481088913977146, 0.0001359446905553341, 0.008835626766085625, 0.002584171714261174, -0.03081798180937767, -0.00372419529594481, 0.06038389354944229, -0.01725863851606846, 0.009611056186258793, -0.00717450026422739, -0.014740272425115108, 0.029167527332901955, -0.03300910443067551, 0.025283265858888626, -0.01609193906188011, 0.017144814133644104, 0.008287846110761166, 0.019961971789598465, -0.01084178313612938, -0.003336480585858226, 0.0008572407532483339, -0.035484787076711655, 0.03110254369676113, 0.011147686280310154, -0.007740065921097994, -0.015608184039592743, -0.010827555321156979, 0.0042826468124985695, 0.02690526470541954, -0.015394763089716434, 0.025055617094039917, -0.02414502203464508, -0.011389563791453838, 0.0157504640519619, -0.013552228920161724, -0.0037099672481417656, 0.025197897106409073, -0.047094885259866714, -0.005022505763918161, 0.009824477136135101, -0.003119502682238817, 0.024614546447992325, 0.038301944732666016, 0.009483003057539463, 0.010358029045164585, -0.009788907133042812, 0.020246531814336777, 0.049086812883615494, 0.0032404412049800158, 0.02030344493687153, 0.011538958176970482, 0.034232717007398605, 0.0011551408097147942, 0.004908681381493807, 0.007469732780009508, -0.000766536861192435, -0.007533758878707886, -0.02263684757053852, -0.04698106274008751, -0.0015437447000294924, -0.03690759465098381, -0.0215128306299448, -0.014640675857663155, 0.02805773913860321, 0.014854096807539463, 0.023618582636117935, 0.01777084916830063, -0.02219577692449093, -0.010386485606431961, 0.038273487240076065, -0.0077542937360703945, 0.01616307906806469, -0.019122514873743057, 0.009397635236382484, -0.012549150735139847, -0.01680334098637104, -0.0183399710804224, -0.029935842379927635, 0.0052786110900342464, -0.017841989174485207, 0.01657569222152233, -0.021157128736376762, 0.0028420554008334875, -0.00411190977320075, 0.014683360233902931, -0.004620563238859177, -0.007597784977406263, -0.0006833915831521153, -0.016333814710378647, -0.003916274290531874, -0.008636433631181717, 0.01747206039726734, 0.044106993824243546, 0.026606475934386253, -0.005342637188732624, -0.001239619916304946, -0.015480131842195988, 0.005289282184094191, 0.028598405420780182, 0.016561463475227356, -0.005342637188732624, -0.004563651047646999, -0.023490531370043755, 0.019150972366333008, 0.007576443254947662, -0.017486289143562317, -0.0044142561964690685, 0.007156715262681246, -0.00934783648699522, -0.0015650867717340589, -0.016219990327954292, 0.03767590969800949, 0.02802928164601326, -1.9799794245045632e-05, 0.006822355557233095, -0.0005806827684864402, 0.029366720467805862, 0.0037917785812169313, 0.010400713421404362, 0.007576443254947662, 0.009980985894799232, 0.004873111378401518, 0.007668925449252129, -0.02516944147646427, 0.005997128318995237, 0.015579728409647942, -0.0057161240838468075, 0.0014450375456362963, 0.04498913139104843, 0.04629811272025108, 0.007057118695229292, 0.02623654715716839, -0.015608184039592743, -0.018226146697998047, 0.03241152688860893, -0.010727958753705025, -0.0045707649551332, 0.008366100490093231, 0.019008690491318703, 0.0015882074367254972, -0.035484787076711655, -0.017998497933149338, -0.04572899267077446, 0.017016762867569923, 0.010621248744428158, 0.01375853642821312, -0.03081798180937767, 0.04473302885890007, 0.0284134391695261, 0.009753336198627949, 0.00547424703836441, -0.028726456686854362, -0.004108353052288294, -0.023262880742549896, -0.025098301470279694, 0.0005446680006571114, 0.005111431237310171, 0.034175805747509, -0.003830905770882964, 0.0029238667339086533, -0.0018087424105033278, -0.03258226066827774, 0.006562693510204554, -0.014925236813724041, -0.018197691068053246, -0.007868118584156036, 0.045615166425704956, 0.08969370275735855, -0.001002189121209085, -0.03261071816086769, 0.025724336504936218, 0.02401696890592575, 0.013111159205436707, -0.014128465205430984, 0.02286449633538723, 0.024230388924479485, 0.016148850321769714, 0.009831590577960014, 0.019520901143550873, 0.0007389699458144605, 0.012933308258652687, 0.024956021457910538, -0.03494412079453468, -0.010500309988856316, -0.0022249130997806787, 0.0007363022305071354, 0.010727958753705025, 0.0006927287904545665, -0.005559615325182676, -0.010976949706673622, -0.009461660869419575, 0.010222862474620342, -0.03454573452472687, -0.008117109537124634, 0.0033062458969652653, -0.024643003940582275, 0.043566327542066574, 0.01856762170791626, 0.022110408172011375, 0.005723237991333008, -0.009006363339722157, 0.0028527264948934317, -0.02119981311261654, -0.01984814740717411, -0.026208089664578438, 0.020858338102698326, 0.007654697168618441, -0.034716472029685974, 0.012961764819920063, -0.012499352917075157, 0.013843904249370098, 0.0227648988366127, 0.020829882472753525, -0.013872360810637474, -0.019577814266085625, 0.013744307681918144, -0.015622411854565144, 0.0107564153149724, 0.012214791029691696, -0.018197691068053246, -0.006776114460080862, -0.03480184078216553, 0.012819483876228333, 0.02879759669303894, 0.02138477750122547, 0.0004873111320193857, 0.01885218173265457, 0.005356865469366312, 0.001436145044863224, -0.011674124747514725, 0.005413777660578489, 0.01212230883538723, 0.026307687163352966, -0.0327814556658268, -0.028071966022253036, 0.003260004799813032, -0.004659690428525209, 0.005054519046097994, 0.020602233707904816, 0.001145359012298286, 0.0025983997620642185, -0.014612219296395779, 0.01178794912993908, 0.01936439238488674, 0.004161708056926727, -0.04538751766085625, -0.0003970518591813743, 0.01866721734404564, -0.015067517757415771, -0.008380328305065632, 0.018268831074237823, -0.030220404267311096, 0.019748549908399582, -0.0234051626175642, 0.005008277948945761, -0.016348043456673622, -0.023931600153446198, 0.0466964989900589, -0.013929273001849651, 0.023490531370043755, -0.028043510392308235, 0.01324632577598095, -0.0010359807638451457, 0.014654903672635555, -0.03568397834897041, 0.025439774617552757, -0.03537096083164215, 0.0026535335928201675, 0.008494152687489986, -0.03605391085147858, 0.028171563521027565, 0.02478528395295143, 0.008174021728336811, 0.02260839007794857, 0.029224438592791557, -0.054436564445495605, -0.006345715839415789, -0.032468438148498535, -0.010564335621893406, 0.03010657988488674, -0.0030910465866327286, 0.018709901720285416, 0.002774472115561366, 0.013886588625609875, 0.019634725525975227, 0.0164191834628582, 0.005854847375303507, 0.010706616565585136, -0.027346335351467133, 0.0189802348613739, 0.015309394337236881, 0.0003125727525912225, 0.024486495181918144, -0.008053082972764969, 0.007089131977409124, -0.013281895779073238, -0.0007354129338636994, 0.02030344493687153, 0.007298995740711689, -0.0052786110900342464, 0.014782956801354885, 0.0074626184068620205, 0.024002740159630775, -0.012093853205442429, -0.005577400326728821, 0.0352855920791626, -0.023106371983885765, 0.00041417000466026366, 0.009191327728331089, -0.04723716527223587, 0.008373214863240719, -0.053412143141031265, 0.004424927290529013, -0.020374584943056107, -0.025055617094039917, 0.0091699855402112, 0.016077710315585136, 0.019520901143550873, 0.01513865776360035, -0.0008141119033098221, -0.0365661196410656, -0.005687667988240719, 0.002925645327195525, -0.002578836167231202, -0.018453797325491905, 0.023675495758652687, -0.054379653185606, -0.042826466262340546, -0.019905058667063713, -0.014100009575486183, 0.015081745572388172, 0.01695984974503517, -0.014953693374991417, 0.006135851610451937, -0.0007225187728181481, -0.017344007268548012, -0.022266916930675507, -0.018041182309389114, -0.02613694965839386, 0.008856968954205513, 0.03184240311384201, -0.005723237991333008, 0.012961764819920063, 0.019961971789598465, 0.040777627378702164, -0.01157452818006277, -0.006616048980504274, -0.009454547427594662, -0.006142965983599424, -0.006786785554140806, -0.003583693178370595, 0.021128671243786812, -0.00017062558617908508, 0.04373706132173538, -0.0028349412605166435, -0.011432248167693615, 0.014654903672635555, -0.024813739582896233, 0.007334566209465265, 0.0082095917314291, -0.0378466434776783, -0.014242290519177914, -0.062261998653411865, 0.01936439238488674, 0.05295684561133385, 0.0016397841973230243, -0.015593956224620342, -0.030931806191802025, -0.04370860755443573, 0.00022498122416436672, -0.012115194462239742, 0.018837954849004745, -0.007547986693680286, 0.02959436923265457, 0.007082018069922924, -0.0003741535765584558, 0.036736857146024704, 0.0059580011293292046, -0.02430153079330921, 0.0189802348613739, 0.02357589825987816, 0.00037993371370248497, -0.009447433054447174, 0.007612013258039951, 0.03713524341583252, -0.009369178675115108, -0.007661811541765928, -0.01760011352598667, 0.005232369992882013, 0.02770203724503517, -0.016533007845282555, -0.04649730771780014, 0.0035001032520085573, -0.004656133241951466, 0.005154115613549948, 0.05509105697274208, 0.009611056186258793, -0.02693372219800949, 0.006491553504019976, -0.011460703797638416, -0.027275195345282555, -0.009020591154694557, -0.026080038398504257, -0.0220677237957716, -0.0025539370253682137, -0.022807583212852478, -0.0007011767011135817, 0.0072705396451056, 0.005221698898822069, 0.02248033881187439, 0.015110202133655548, 0.018752586096525192, 0.006651618983596563, -0.002715781331062317, -0.012527808547019958, -0.023817775771021843, -0.008081539534032345, -0.005114988423883915, 0.01590697281062603, -0.0057018958032131195, -0.01818346418440342, 0.00025477123563177884, -0.02296409197151661, -0.019506672397255898, -0.00965374056249857, -0.010158835910260677, -0.013986185193061829, 0.00968219619244337, -0.022907180711627007, 0.012470896355807781, 0.010215748101472855, -0.0004497401532717049, 0.005879746749997139, 0.001292085857130587, -0.004239962436258793, -0.006623162887990475, 0.023049460723996162, -0.0036672831047326326, 0.050367340445518494, -0.024571863934397697, -0.019990427419543266, -0.03480184078216553, -0.008871196769177914, -0.004044326487928629, -0.00012293935287743807, 0.010528765618801117, 0.007202956359833479, 0.012577607296407223, -6.808350008213893e-06, 0.0003243553510401398, 0.010194406844675541, 0.014697588048875332, 0.03252534940838814, 0.002182228956371546, 0.0018407555762678385, -0.006395514123141766, -0.01695984974503517, 0.01920788362622261, 0.012997334823012352, 0.006064711604267359, 0.004873111378401518, -0.01282659824937582, 0.021085988730192184, -0.027204055339097977, 0.005527602043002844, 0.008266503922641277, -0.04467611387372017, -0.004094124771654606, 0.004190164152532816, -0.010251319035887718, -0.03611082211136818, -0.0027495729736983776, 0.021242497488856316, -0.0044782827608287334, 0.045615166425704956, -0.05147712677717209, -0.020758742466568947, 0.009511459618806839, 0.03864341601729393, -0.02257993444800377, 0.00032813468715175986, -0.044277727603912354, 0.0290537029504776, -0.01098406407982111, -0.014064439572393894, 0.012798141688108444, 0.04729407653212547, -0.009426090866327286, 0.01513865776360035, -0.030874894931912422, -0.003573022084310651, 0.02792968600988388, 0.005449347663670778, 0.012862168252468109, -0.0065022241324186325, -0.0065520224161446095, 0.00020708500233013183, 0.014171149581670761, -0.04843232408165932, -0.004382242914289236, -0.009483003057539463, -0.009433205239474773, -0.028328072279691696, -0.007597784977406263, -0.020915251225233078, -0.019350163638591766, -0.013915044255554676, 5.427227733889595e-05, 0.008358986116945744, -0.002722895471379161, 0.012164993211627007, 0.014420140534639359, 0.04422081634402275, 0.0005909092142246664, -0.018482252955436707, -0.014405912719666958, 0.01161009818315506, -0.0005700117326341569, 0.027758948504924774, -0.013502431102097034, -0.006399070844054222, 0.027189826592803, -0.007434162311255932, 0.009817362762987614, -0.03226924315094948, -0.03275299817323685, -0.025838160887360573, -0.02892564982175827, 0.04757864028215408, 0.016120394691824913, -0.03340749070048332, 0.02603735402226448, -0.015850061550736427, 0.004898010287433863, 5.752361175836995e-05, 0.027758948504924774, 0.0018567621009424329, 0.0018389769829809666, -0.02058800496160984, -0.005093646235764027, -0.04086299240589142, 0.0018140779575333, -0.02296409197151661, -0.017913131043314934, 0.029907386749982834, -0.03557015582919121, 0.03608236461877823, 0.010272661224007607, -0.010877353139221668, -0.0017322665080428123, -0.03454573452472687, -0.005438676569610834, -0.0034503049682825804, -0.004652576521039009, 0.001712702913209796, -0.0055702864192426205], [-0.0049203429371118546, 0.0156038086861372, 0.032397422939538956, 0.011290762573480606, -0.046799030154943466, 0.023077277466654778, -0.026944145560264587, 0.07119005173444748, 0.018603110685944557, -0.012003405950963497, -0.019495464861392975, -0.017301760613918304, 0.023312758654356003, 0.028778430074453354, -0.01745048724114895, 0.007374317850917578, 0.04256035014986992, -0.022841794416308403, 0.0030519759748131037, 0.04414675757288933, -0.026770632714033127, 0.01530635729432106, -0.002091455738991499, 0.011358927935361862, -0.014265276491641998, 0.031158041208982468, 0.036735255271196365, 0.01147666946053505, 0.036264292895793915, 0.0018993515986949205, 0.0251966193318367, -0.03780112415552139, 0.022209709510207176, 0.010850781574845314, 0.039536260068416595, 0.007392908446490765, -0.03326499089598656, -0.0089421346783638, 0.00705207884311676, -0.009462675079703331, 0.02751426212489605, 0.021205810829997063, -0.02119341678917408, 0.0022417306900024414, -0.002063569612801075, 0.03963540866971016, 0.026721056550741196, -0.04298173636198044, 0.051359955221414566, 0.015442688949406147, 0.03177773207426071, -0.01873944327235222, 0.003814195515587926, -0.02845619060099125, -0.05572257563471794, -0.015008905902504921, -0.028109164908528328, 0.002675513969734311, 0.05403701961040497, -0.002788607496768236, 0.018045390024781227, -0.02356063574552536, 0.017735544592142105, 0.04702211916446686, 0.025630401447415352, 0.021466081961989403, 0.00818611215800047, 0.0320008210837841, 0.0220485907047987, 0.011774120852351189, 0.006636885926127434, -0.011042886413633823, -0.029075881466269493, -0.06851299107074738, 0.031876884400844574, -0.003030286869034171, 0.020920753479003906, -0.0440971814095974, -0.035619813948869705, -0.021701563149690628, 0.01766118034720421, -0.000683208869304508, 0.01938392035663128, 0.020363032817840576, -0.029175031930208206, 0.007764722686260939, -0.040478188544511795, -0.027241596952080727, 0.008700455538928509, 0.00782669149339199, -0.04801362380385399, -0.008074568584561348, -0.0072937579825520515, 0.000890030583832413, -0.035793326795101166, 0.04037903621792793, -0.00901030097156763, -0.05021972209215164, -0.026497969403862953, 0.059093691408634186, -0.025332950055599213, -0.00982209574431181, -0.012344236485660076, -0.037032708525657654, 0.02458932250738144, -0.06013477221131325, -0.04449378326535225, 0.025605615228414536, -0.004749928135424852, -0.024093570187687874, -0.02875364199280739, -0.037578035145998, -0.0030628207605332136, 0.05269848555326462, 0.02166438288986683, -0.02351105958223343, 0.024490172043442726, -0.008948331698775291, 0.03589247912168503, -0.022122953087091446, 0.0047034514136612415, -0.00840300414711237, -0.024961136281490326, -0.07064472138881683, -0.005701153073459864, 0.03133155405521393, -0.014451184310019016, -0.004811897408217192, -0.01986728049814701, -0.006736036390066147, 0.04573316499590874, -0.008632289245724678, 0.03728058561682701, -0.030240898951888084, -0.039660196751356125, 0.07545352727174759, 0.035570237785577774, -0.0028970534913241863, 0.008328640833497047, -0.05155825614929199, -0.004325440153479576, -0.03874305635690689, 0.016049986705183983, -0.030240898951888084, -0.058102186769247055, 0.01433963980525732, 0.016049986705183983, 0.046799030154943466, -0.008632289245724678, 0.012480568140745163, 0.008303853683173656, 0.005227089859545231, 0.001025587902404368, -0.01165018230676651, 0.004588808864355087, -0.01201579999178648, -0.019879672676324844, -0.00047057753545232117, 0.01844199188053608, 0.05024451017379761, -0.012672672048211098, -0.022259285673499107, 0.009784914553165436, 0.0270432960242033, 0.009128042496740818, 0.011662576347589493, -0.040602125227451324, 0.018863381817936897, -0.05835006386041641, -0.01425288338214159, -0.05150867998600006, 0.00885537825524807, -0.024068782106041908, 0.026795420795679092, -0.03202560916543007, -0.024514958262443542, -0.026547543704509735, 0.04548528790473938, -0.02051175758242607, -0.056218329817056656, 0.010795009322464466, -0.0006150428671389818, -0.002105398802086711, 0.019148439168930054, -0.025779128074645996, 0.017512455582618713, 0.009877867996692657, -0.03043920174241066, -0.04320482537150383, 0.010119547136127949, 0.02359781786799431, 0.02850576676428318, -0.03861911594867706, 0.030067386105656624, -0.001719641382806003, -0.01857832260429859, -0.06350588798522949, -0.01758681796491146, 0.02269306778907776, -0.0021115955896675587, -0.012338039465248585, -0.02188747189939022, 0.04987269639968872, -0.013744737021625042, -0.01021250057965517, 0.01029305998235941, -0.03113325498998165, 0.03232305869460106, 0.06340673565864563, -0.009890261106193066, 0.026944145560264587, 0.0018869577907025814, -0.04917864501476288, -0.019755735993385315, -0.02197422832250595, 0.0009860825957730412, 0.04635285586118698, 0.053937867283821106, 0.01334813516587019, 0.0004918794147670269, -0.014699060469865799, -0.03247178718447685, -0.0012021997245028615, 0.01727697253227234, -0.011470472440123558, 0.01645898073911667, -0.020276276394724846, -0.0403294637799263, 0.0595894455909729, -0.0028087475802749395, -0.07069429755210876, 0.016273073852062225, 0.014265276491641998, -0.031876884400844574, 0.008099355734884739, 0.021701563149690628, 0.020400213077664375, -0.07941954582929611, -0.008217097260057926, 0.07158665359020233, 0.050715476274490356, 0.036561742424964905, -0.00038885584217496216, 0.02532055601477623, 0.03192645683884621, 0.010286863893270493, -0.005924242082983255, -0.03601641580462456, 0.021850289776921272, 0.04444420710206032, -0.015938442200422287, 0.01673164591193199, 0.04769138619303703, -0.056466203182935715, 0.028133951127529144, 0.0022680675610899925, 0.017995813861489296, -0.017215004190802574, 0.021899864077568054, -0.05205400660634041, -0.004929638467729092, -0.01313744019716978, 0.024775229394435883, 0.028431402519345284, -0.024353839457035065, -0.015231993980705738, 0.04203980788588524, -0.029125457629561424, -0.03410777077078819, -0.0029698670841753483, -0.038148149847984314, -0.012201706878840923, 0.03542151302099228, -0.02106948010623455, -0.04203980788588524, 0.017909057438373566, 0.052599336951971054, -0.02699372172355652, 0.021937046200037003, 0.011055279523134232, 0.022383224219083786, -0.0055307382717728615, 0.031281981617212296, -0.04365100339055061, -0.0027948045171797276, 0.006165921222418547, -0.0006173667497932911, 0.0068847620859742165, 0.009989411570131779, 0.03611556813120842, 0.028951942920684814, -0.008266672492027283, 0.0008265122887678444, -0.01766118034720421, -0.02390766143798828, -0.0411970280110836, 0.003346329089254141, -0.02850576676428318, -0.025209011510014534, 0.008979316800832748, -0.014699060469865799, 0.025630401447415352, -0.04719563573598862, -0.013063076883554459, -0.04015594720840454, -0.0039598229341208935, -0.028133951127529144, 0.030587926506996155, -0.03886699303984642, -0.010280666872859001, -0.04412196949124336, 0.06499315053224564, -0.012939139269292355, 0.00044424066436477005, -0.05150867998600006, 0.007256576791405678, -0.029051093384623528, 0.0049234414473176, 0.030166536569595337, -0.02828267775475979, 0.032099973410367966, -0.03232305869460106, 0.03150506690144539, -0.06771978735923767, 0.04977354779839516, 0.0075044529512524605, 0.037206221371889114, 0.04357663914561272, -0.018974924460053444, 0.005050478037446737, -0.03259572386741638, -0.08219575881958008, 0.03279402479529381, -0.007913448847830296, 0.004241781774908304, -0.02962120994925499, -0.009964624419808388, 0.030290475115180016, 0.018503960222005844, -0.03812336549162865, 0.06439824402332306, 0.006004801485687494, -0.0071388352662324905, 0.012059178203344345, -0.03048877604305744, 0.004285160452127457, -0.02131735533475876, 0.01793384552001953, 0.023808510974049568, 0.035570237785577774, -0.04751787334680557, 0.018727049231529236, -0.07951869070529938, -0.01328616589307785, -0.07267730683088303, -0.07431329041719437, 0.028059588745236397, -0.01809496432542801, 0.005140333436429501, 0.02751426212489605, -0.031455494463443756, -0.023287972435355186, 0.01802060194313526, 0.05894496664404869, 0.0220485907047987, 0.013893462717533112, -0.0019132946617901325, 0.015046087093651295, 0.05706110596656799, 0.01229466125369072, 0.015070874243974686, -0.0084897605702281, -0.02167677693068981, 0.004300652537494898, -0.008210900239646435, 0.04099872708320618, -0.0059397341683506966, 0.031405918300151825, 0.009791110642254353, -0.005323141813278198, 0.013075470924377441, 0.017909057438373566, -0.028431402519345284, -0.014475971460342407, 0.038024213165044785, 0.06276226043701172, -0.030216112732887268, -0.013769524171948433, 0.0023966531734913588, -0.003972216509282589, -0.04035424813628197, -0.018218902871012688, 0.01638461835682392, -0.027068084105849266, -0.021986622363328934, 0.007237985730171204, 0.0029249393846839666, 0.058746665716171265, -0.02915024384856224, -0.07416456937789917, -0.01767357438802719, -0.06915746629238129, 0.01565338298678398, 0.01753724366426468, 0.028604917228221893, -0.03319062665104866, 0.039015717804431915, -0.05254976078867912, 0.042585134506225586, -0.0357685387134552, 0.024143144488334656, -0.015789715573191643, 0.00900410395115614, 0.01960700936615467, 0.009877867996692657, 0.016223499551415443, 0.012839988805353642, -0.005000902805477381, -0.05562342703342438, 0.011185415089130402, -0.006636885926127434, -0.024180326610803604, -0.028704067692160606, 0.08512070029973984, -0.0043316371738910675, 0.05512767285108566, -0.03180252015590668, -0.008917347528040409, 0.039709772914648056, -0.05319423973560333, 0.04831107705831528, -0.002161170821636915, 0.0014981019776314497, 0.03680961951613426, -0.0393875315785408, -0.018169326707720757, 0.0014268375234678388, -0.016917552798986435, 0.0033525258768349886, -0.0010069971904158592, -0.016099561005830765, 0.01715303584933281, 0.05661493167281151, 0.009809701703488827, -0.0247628353536129, 0.005809599068015814, -0.05532597377896309, 0.012158328667283058, -0.034752245992422104, 0.033686380833387375, -0.0040589733980596066, -0.006048180162906647, -0.04823671281337738, -0.0003042293537873775, -0.017735544592142105, -0.0265723317861557, 0.02617572993040085, -0.030290475115180016, 0.017128247767686844, 0.0021797616500407457, 0.01319940946996212, 0.02403159998357296, 0.006088459864258766, 0.06410079449415207, 0.020573727786540985, 0.042932163923978806, -0.03143070638179779, -0.016446588560938835, 0.021181024610996246, 0.010206303559243679, -0.024738047271966934, -0.04283301159739494, 0.05443362146615982, -0.011135839857161045, 0.04707169532775879, 0.004402901511639357, -0.021937046200037003, -0.03195124492049217, -0.011637789197266102, 0.010460376739501953, -0.0055958060547709465, 0.011408503167331219, -0.035917267203330994, -0.04657594487071037, 0.06534017622470856, 0.044221118092536926, 0.028109164908528328, -0.009450281038880348, -0.024068782106041908, -0.008966922760009766, -0.025246193632483482, 0.04295695200562477, 0.015108056366443634, -0.011910452507436275, 0.010850781574845314, -0.009753929451107979, 0.017909057438373566, -0.024576928466558456, 0.03752846270799637, -0.02803480066359043, 0.056763656437397, 0.01072684396058321, 0.0013850084505975246, -0.02739032357931137, 0.03534714877605438, -0.006463372614234686, -0.022122953087091446, 0.016012804582715034, 0.0523514598608017, -0.0320008210837841, -0.004635285586118698, -0.008012599311769009, -0.01192904356867075, -0.029943447560071945, -0.011600607074797153, -0.026597119867801666, -0.015727747231721878, -0.012728444300591946, -0.0018590716645121574, -0.036264292895793915, 0.019359134137630463, 0.019916854798793793, 0.03133155405521393, 0.022854188457131386, -0.023015307262539864, 0.03138113021850586, -0.010404604487121105, -0.075156070291996, 0.005725940689444542, -0.009617597796022892, -0.012629293836653233, 0.0012928294017910957, 0.002833535196259618, 0.05029408633708954, 0.040949154645204544, 0.003271966241300106, -0.0022153938189148903, 0.050318874418735504, -0.020276276394724846, -0.02025148831307888, 0.01896253228187561, 0.032050397247076035, -0.0010860076872631907, -0.02209816500544548, -0.0009349581669084728, 0.027291173115372658, -0.01720261014997959, -0.009654778987169266, 0.02957163378596306, 0.017958633601665497, -0.047790538519620895, -0.009530841372907162, 0.01642180047929287, -0.038544751703739166, -0.01373234298080206, 0.03197603300213814, -0.027439897879958153, -0.029993023723363876, 0.021937046200037003, 0.02437862753868103, -0.0022851089015603065, 0.05978774651885033, 0.028530552983283997, -0.007820495404303074, -0.0035787131637334824, 0.04151926934719086, 0.003854475449770689, -0.020561333745718002, 0.02411835640668869, -0.029373332858085632, -0.01866508089005947, -0.004988509230315685, 0.03056313842535019, -0.0096114007756114, 0.017301760613918304, -0.006754627451300621, 0.018429597839713097, -0.005527639761567116, -0.017723150551319122, 0.0019582221284508705, 0.001330010942183435, 0.007145032286643982, 0.003513645613566041, 0.008929741568863392, -0.03324020281434059, -0.0007281363941729069, -0.006878565531224012, -0.042585134506225586, -0.03289317712187767, -0.015802109614014626, 0.028431402519345284, -0.01124118734151125, 0.01671925187110901, 0.0006235636537894607, 0.029348544776439667, 0.027539048343896866, 0.013038289733231068, 0.003814195515587926, -0.007560224737972021, 0.01668206974864006, -0.00319140637293458, -0.027588624507188797, 0.012864775955677032, 0.008533138781785965, -0.018367627635598183, -0.01381909940391779, -0.02867927961051464, -0.0038049002178013325, 0.0024555239360779524, 0.012573521584272385, 0.0016158431535586715, 0.002672415692359209, -0.004861472640186548, -0.02063569612801075, -0.00567326694726944, 0.001549226464703679, -0.04818714037537575, -0.007330939639359713, -0.055524274706840515, 0.0042046005837619305, -0.001564718666486442, 0.0312076173722744, 0.0018978023435920477, -0.01581450365483761, -0.03998243436217308, 0.015021299012005329, 0.026770632714033127, -0.03249657526612282, 0.00674843043088913, -0.029522059485316277, -0.00038169065373949707, -0.017549637705087662, -0.02850576676428318, -0.0019024501089006662, -0.05914326757192612, 0.022593917325139046, -0.023362334817647934, 0.00243383483029902, -0.0440971814095974, 0.023957237601280212, -0.005639184266328812, -0.00020043116819579154, 0.030042598024010658, -0.01621110551059246, 0.011135839857161045, 0.052004434168338776, 0.018850987777113914, 0.00960520375519991, 0.0016406307695433497, 0.023585423827171326, 0.028828006237745285, -0.00585917429998517, 0.006562523078173399, -0.004557824227958918, 0.01141470018774271, -0.03985849767923355, -0.0017382320947945118, 0.029695572331547737, 0.028109164908528328, 0.03438043221831322, -0.01706627756357193, 0.02296573296189308, 0.011594410985708237, -0.00969196017831564, 0.0025949543341994286, 0.0056577748619019985, 0.030687076970934868, 0.0001348795194644481, 0.018070176243782043, -0.008954528719186783, -0.01676882617175579, -0.030984528362751007, 0.0007424667710438371, -0.0029946547001600266, 0.00013797797146253288, -0.03443000838160515, -0.04501432180404663, 0.017215004190802574, -0.028357040137052536, -0.014959330670535564, 0.009679567068815231, -0.012877169996500015, 0.0010534740285947919, 0.029298970475792885, 0.013273771852254868, -0.011005704291164875, -0.022346042096614838, -0.06920704245567322, -0.0015275372425094247, 0.0084711704403162, 0.019755735993385315, 0.013943037949502468, 0.06291098892688751, -0.005732137709856033, -0.0070396848022937775, 0.004827389493584633, 0.0026879077777266502, 0.010330242104828358, -0.002361021004617214, -0.0039009521715343, 0.015504658222198486, 0.04429548233747482, -0.018466778099536896, 0.002529886784031987, -0.04769138619303703, 0.005691858008503914, -0.020177124068140984, 0.013298559933900833, 0.02915024384856224, -0.023139245808124542, -0.03346329182386398, -0.007237985730171204, -0.02828267775475979, -5.4319752962328494e-05, -0.04630327969789505, 0.0025841097813099623, 0.006401403807103634, -0.011668773368000984, 0.0037956046871840954, -0.003019442316144705, -0.03232305869460106, -0.013856281526386738, -0.0476418100297451, -0.016867976635694504, -0.01719021610915661, -0.008266672492027283, -0.021949440240859985, -0.019619403406977654, -0.02260631136596203, 0.0042138961143791676, 0.04558444023132324, 0.007008700165897608, 0.003059722250327468, -0.014228095300495625, 0.02716723456978798, 0.03048877604305744, -0.030116962268948555, 0.026646694168448448, -0.00555552588775754, -0.01042939256876707, 0.0270432960242033, -0.062316082417964935, -0.00765317864716053, -0.01840480975806713, -0.00982209574431181, 0.010925144888460636, -0.010020396672189236, 0.07352008670568466, -0.009574219584465027, -0.013385316357016563, -0.014562728814780712, 0.00907227024435997, -0.003485759487375617, -0.006144232116639614, 0.02845619060099125, -0.03408298268914223, 0.02502310462296009, 0.014240489341318607, 0.010912750847637653, 0.024056388065218925, 0.019235195592045784, 0.0013687415048480034, -0.0007560225203633308, 0.017636394128203392, 0.0020016005728393793, -0.01899971254169941, -0.0084897605702281, 0.03180252015590668, -0.01956982910633087, 0.023114457726478577, -0.039660196751356125, 0.03646259382367134, 0.01478581689298153, 0.010231091640889645, 0.01472384762018919, 0.025779128074645996, 0.015318751335144043, -0.02033824473619461, -0.02300291322171688, -0.012877169996500015, 0.0055958060547709465, 0.007399105466902256, -0.019445890560746193, 0.020784420892596245, 0.005896355956792831, -0.024527352303266525, 0.01591365411877632, 0.0393875315785408, 0.022519554942846298, -0.013236590661108494, -0.004588808864355087, -0.06514187157154083, 0.0385199673473835, -0.028109164908528328, -0.005034985952079296, -0.0011425544507801533, -0.012939139269292355, -0.031034104526042938, -0.016991915181279182, -0.008440185338258743, 0.004988509230315685, 0.043923668563365936, -0.019445890560746193, -0.01216452568769455, -0.01186707429587841, 0.02627488039433956, -0.015318751335144043, -0.016843190416693687, -0.00788866076618433, -0.01065867766737938, -0.04875725507736206, 0.02763819880783558, 0.02910066954791546, 0.0467742457985878, 0.051954858005046844, -0.02377133071422577, 0.0019659684039652348, -0.011061476543545723, -0.027662986889481544, -0.028059588745236397, -0.010466573759913445, -0.015293963253498077, 0.006358025129884481, -0.00022521879873238504, 0.02343669719994068, 0.006237185560166836, 0.006574917118996382, -0.007572618778795004, 0.04345270246267319, -0.004709648434072733, 0.009413099847733974, 0.005945931188762188, -0.0029249393846839666, -0.009214798919856548, -0.00728756096214056, 0.013918249867856503, -0.00855792686343193, 0.008545532822608948, -0.0036902574356645346, 0.01728936657309532, 0.022259285673499107, 0.009784914553165436, -0.024192720651626587, -0.026621906086802483, -0.010367423295974731, 0.049029916524887085, -0.0016019000904634595, -0.0036096975672990084, -0.026597119867801666, -0.015492264181375504, 0.0013377569848671556, -0.0205985140055418, 0.005394406616687775, 0.008297656662762165, 0.021255386993288994, -0.01826847717165947, -0.0330171138048172, -0.013831493444740772, -0.04303131252527237, 0.009208601899445057, -0.014364427886903286, 0.00566397188231349, -0.013558830134570599, -0.0007300729630514979, -0.017252186313271523, 0.02605179138481617, 0.01865268684923649, 0.023845693096518517, 0.022160135209560394, -0.04898034408688545, 0.01072684396058321, -0.002731286222115159, 0.004430787637829781, -0.0027142446488142014, -0.020784420892596245, -0.0006072967662476003, -0.005645381286740303, 0.006556326057761908, -0.010218697600066662, 0.03988328576087952, -0.0448903851211071, 0.026473181322216988, -0.015504658222198486, -0.004737534560263157, -0.0061132474802434444, 0.023709360510110855, 0.00011745072697522119, 0.0393875315785408, -0.002703400095924735, -0.006773218046873808, -0.00015879570855759084, 0.03482661023736, -0.004784011282026768, 0.025853490456938744, -0.00012790800246875733, 0.00019694540242198855, 0.004663171712309122, -0.016558131203055382, 0.028357040137052536, 0.003656174289062619, 0.0021286371629685163, 0.0035229409113526344, -0.034975335001945496, -0.01515763159841299, -0.01899971254169941, 0.014537940733134747, 0.0057755159214138985, 0.0006491258973255754, 0.02850576676428318, -0.004288258962333202, 0.012623096816241741, 0.036388229578733444, 0.00011057603842345998, 0.0038947551511228085, 0.036313869059085846, -0.011724545620381832, -0.042163748294115067, -0.014438790269196033, 0.04895555600523949, 0.006364222150295973, 0.023796118795871735, 0.045981042087078094, -0.01261689979583025, 0.005818894598633051, 0.0007463398505933583, -0.013633192516863346, -0.011705954559147358, 0.03985849767923355, 0.02709287218749523, -0.006698855198919773, -0.0031092974822968245, -0.006181413307785988, 0.021949440240859985, 0.015467477031052113, 0.04429548233747482, 0.0026863585226237774, -0.00204807729460299, 0.01633504405617714, 0.022680675610899925, -0.04018073529005051, 0.01852874830365181, -0.02167677693068981, 0.010472770780324936, -0.004285160452127457, 0.06048179790377617, -0.007157426327466965, 0.006138035096228123, -0.010801206342875957, 0.05592087656259537, -0.02768777497112751, -0.03911487013101578, -0.009555628523230553, 0.042188532650470734, -0.01986728049814701, 0.014438790269196033, 0.023052489385008812, -0.00034547748509794474, 0.030984528362751007, 0.01457512192428112, 0.01134653389453888, -0.01472384762018919, 0.011984815821051598, 0.0036220913752913475, -0.04357663914561272, 0.04987269639968872, 0.015132843516767025, 0.0009744634153321385, 0.01313744019716978, 0.05205400660634041, 0.0031821110751479864, -0.010441785678267479, -0.0028412812389433384, 0.03470267355442047, 0.027291173115372658, 0.008712849579751492, -0.004508248995989561, 0.0017971026245504618, -0.023634998127818108, 0.01673164591193199, 0.025159437209367752, 0.05081462860107422, 0.00818611215800047, 0.015963228419423103, 0.026200518012046814, -0.042932163923978806, 0.05800303816795349, 0.007832888513803482, 0.007733738515526056, 0.01723979227244854, -0.018627898767590523, 0.01776033267378807, 0.008539335802197456, 0.012090163305401802, 0.0018451287178322673, -0.04746829718351364, 0.028555341064929962, 0.0412713922560215, 0.06796766072511673, -0.0014857081696391106, 0.04506389796733856, -0.011724545620381832, -0.004492756444960833, -0.0622665099799633, 0.0038947551511228085, 0.002946628723293543, -0.017165428027510643, 0.05433446913957596, 0.048385441303253174, 0.0006863073213025928, 0.016273073852062225, 0.009586612693965435, -0.014798210933804512, 0.01612434908747673, -0.0015306357527151704, -0.0550285242497921, -0.014513153582811356, 0.06727360934019089, -0.007677966263145208, -0.01240620482712984, 0.011898059397935867, -0.01616152934730053, 0.022333648055791855, 0.033983830362558365, -0.0033556243870407343, -0.006358025129884481, -0.02545688860118389, 0.03522321209311485, -0.012827594764530659, 0.018156934529542923, -0.006965321954339743, -0.004904850851744413, -0.019706159830093384, -0.02514704316854477, 0.002959022531285882, 0.009729142300784588, 0.002218492329120636, -0.015132843516767025, -0.015839291736483574, -0.0010612200712785125, 0.019160833209753036, 0.008818197064101696, -0.003203800180926919, -0.030290475115180016, 0.005382012575864792, 0.004328538663685322, -0.017016703262925148, 0.030587926506996155, 0.011774120852351189, -0.027068084105849266, -0.03150506690144539, 0.03195124492049217, 0.004015594720840454, -0.006206200923770666, 0.014327245764434338, -0.00010544422548264265, 0.004601202439516783, 0.010609102435410023, 0.004077563993632793, -0.025171831250190735, 0.0005867694853805006, 0.031876884400844574, 0.0008683414198458195, -0.0035973037593066692, 0.00999560859054327, 0.013149834237992764, -0.013087864965200424, -0.010590512305498123, 0.0016747137997299433, 0.00461979303508997, 0.008099355734884739, -0.0014826096594333649, 0.016273073852062225, 0.00720080453902483, 0.017004309222102165, 0.02902630716562271, 0.013608405366539955, -0.024564534425735474, 0.01163159217685461, -0.04883161559700966, -0.009258177131414413, 0.005769319366663694, 0.029893873259425163, 0.052896786481142044, 0.009190010838210583, -0.0375036746263504, 0.014352033846080303, 0.007591209374368191, 0.023312758654356003, 0.020102761685848236, -0.030934954062104225, -0.0054749660193920135, 0.044989533722400665, -0.017785118892788887, 0.011018098331987858, 0.0012912802631035447, 0.012672672048211098, 0.003928838297724724, 0.0016003509517759085, 0.034801822155714035, -0.012889564037322998, -0.004077563993632793, -0.013558830134570599, -0.015926048159599304, -0.0052859606221318245, 0.01710345968604088, -0.013261377811431885, -0.026968933641910553, 0.006965321954339743, -0.021949440240859985, 0.016793614253401756, 0.015566627494990826, 0.00518061313778162, -0.01126597449183464, -0.007671769242733717, 0.01762400008738041, -0.015058481134474277, 0.033636804670095444, 0.00249270536005497, 0.02867927961051464, 0.0018559732707217336, 0.013261377811431885, -0.013596011325716972, -0.0010991761228069663, 0.006159724202007055, 0.015504658222198486, -0.007337136194109917, 0.0007397556328214705, 0.014922148548066616, 0.040775638073682785, -0.018206508830189705, 0.002203000010922551, -0.013744737021625042, -0.046104978770017624, 0.02915024384856224, 0.00982209574431181, -0.006965321954339743, -0.005025690421462059, -0.037850700318813324, -0.0033680181950330734, -0.00683518685400486, 0.0009210151038132608, 0.03943710774183273, 0.024403413757681847, 0.02124299295246601, -0.019929248839616776, 0.014587515965104103, 0.023535847663879395, 0.0850711241364479, -0.0015073972754180431, -0.034454796463251114, -0.010069971904158592, -0.008006402291357517, -0.017723150551319122, 0.018727049231529236, 0.03091016598045826, 0.0010426293592900038, -0.0060574752278625965, -0.005140333436429501, 0.02686978317797184, 0.014525546692311764, 0.0028552243020385504, 0.0019117454066872597, -0.010516148991882801, -0.024267083033919334, -0.0014601459261029959, 0.039610620588064194, 0.014054582454264164, 0.014376820996403694, 0.011104854755103588, 0.002120890887454152, 0.004598103929311037, -0.010001805610954762, -0.004074465483427048, -0.00563298724591732, 0.012573521584272385, -0.004074465483427048, 0.017995813861489296, 0.022073378786444664, -0.01582689769566059, -0.000333858304657042, -0.014352033846080303, -0.005797205492854118, -0.015058481134474277, 0.0030938051640987396, -0.013174621388316154, 0.012052981182932854, 0.023610210046172142, -0.05433446913957596, 0.017958633601665497, -0.009952230378985405, 0.011067673563957214, 0.00967337004840374, -0.01431485265493393, -0.04642721638083458, -0.02333754673600197, 0.006785611622035503, -0.0066492799669504166, 0.00885537825524807, -0.014984117820858955, -0.03804900124669075, -0.013472072780132294, -0.006816596258431673, -0.02218492329120636, -0.022383224219083786, 0.0023021504748612642, -0.015764927491545677, -0.02154044434428215, -0.02291615679860115, 0.00603888463228941, -0.018243690952658653, 0.014996511861681938, 0.005326240323483944, -0.00540680019184947, 0.017016703262925148, 0.004567119292914867, 0.032694876194000244, -0.008935937657952309, 0.033983830362558365, -0.011966224759817123, -0.0019411806715652347, -0.017400911077857018, 0.014761029742658138, 0.03809857740998268, -0.017822301015257835, 0.02558082714676857, 0.01096232607960701, 0.0010403055930510163, -0.00909086037427187, -0.02957163378596306, 0.025655189529061317, 0.018727049231529236, -0.0005255750729702413, -0.021354537457227707, -0.002233984414488077, 0.010237288661301136, 0.004883161745965481, -0.022246891632676125, 0.016545739024877548, -0.0062123979441821575, -0.012108753435313702, -0.023275578394532204, 0.021304961293935776, 0.023634998127818108, -0.020016005262732506, 0.01728936657309532, -0.029645996168255806, -0.015046087093651295, -0.0012850833591073751, 0.0007138060755096376, -0.041370540857315063, -0.013335741125047207, 0.007430090103298426, -0.04521262273192406, -0.00469725439324975, 0.020623302087187767, -0.012864775955677032, -0.016793614253401756, -0.029993023723363876, -0.01633504405617714, 0.013868674635887146, 0.018417203798890114, 0.005459473934024572, -0.0039009521715343, 0.037726763635873795, -0.012976320460438728, 0.0403294637799263, 0.023374728858470917, 0.03705749660730362, -0.005756925325840712, 0.005914946552366018, -0.012536340393126011, -0.04863331466913223, -0.010008002631366253, -0.017772724851965904, 0.04285779967904091, 0.035099275410175323, -0.007392908446490765, -0.014884967356920242, 0.029224608093500137, 0.021503262221813202, -0.003216193988919258, -0.01767357438802719, -5.054351277067326e-05, -0.01840480975806713, 0.01478581689298153, 0.023523453623056412, 0.018801411613821983, -0.008898756466805935, -0.004811897408217192, -0.03438043221831322, -0.003984610550105572, -0.02106948010623455, 0.03182730823755264, -0.028431402519345284, -0.04278343543410301, 0.03202560916543007, -0.0006913422839716077, 0.013967825099825859, 0.002873815130442381, -0.01883859373629093, 0.013149834237992764, -0.007126441691070795, -0.0015864078886806965, 0.008514548651874065, -0.012350433506071568, 0.030687076970934868, -0.015876471996307373, 0.017016703262925148, -0.0049761151894927025, -0.01313744019716978, -0.01904928870499134, 0.007516846526414156, 0.006481963209807873, -0.0242918711155653, 0.030240898951888084, -0.023622604086995125, 0.02317642793059349, -0.03237263485789299, -0.00716981990262866, -0.008328640833497047, -0.02850576676428318, 0.011005704291164875, 0.009648581966757774, 0.006237185560166836, 0.026968933641910553, -0.0522027350962162, -0.0032750647515058517, -0.0005766995600424707, 0.05854836478829384, 0.007275167386978865, -0.014265276491641998, 0.015120449475944042, -0.003070566803216934, 0.03259572386741638, -0.02455214038491249, 0.03190166875720024, -0.010113350115716457, 0.005887060426175594, -0.00211779261007905, 0.016657281666994095, -0.029769934713840485, -0.03594205155968666, -0.03276923671364784, -0.005316945258527994, -0.001161145162768662, 0.0494513064622879, 0.018516354262828827, -0.008049780502915382, -0.020189518108963966, -0.00982209574431181, -0.03212475776672363, -0.01244958397001028, -0.05111207813024521, -0.01883859373629093, 0.01442639622837305, 0.007907251827418804, 0.004269667901098728, 0.017896663397550583, -0.026126153767108917, 0.026027003303170204, -0.0027932552620768547, 0.013806706294417381, -0.0013671923661604524, 0.0018854085355997086, 0.00041093231993727386, -0.03502491116523743, -0.03921401873230934, -0.055524274706840515, -0.005679463967680931, -0.012610702775418758, 0.030711865052580833, 0.01352164801210165, 0.024093570187687874, -0.005986210890114307, 0.013546436093747616, 0.027737349271774292, -0.056466203182935715, -0.021689169108867645, -0.054235320538282394, -0.0006913422839716077, -0.03160421922802925, -0.03777633607387543, 0.011358927935361862, 0.037206221371889114, 0.004083761014044285, -0.0031619712244719267, -0.005942832678556442, 0.012988714501261711, 0.020486969500780106, -0.027439897879958153, 0.006674067582935095, 0.020090367645025253, 0.02815873920917511, -0.03373595327138901, 0.004539233632385731, -0.0026414310559630394, -0.011588213965296745, 0.0013199409004300833, 0.007634588051587343, 0.012375220656394958, -0.009710551239550114, -0.0035756146535277367, -0.039362743496894836, -0.0066492799669504166, -0.009084663353860378, -0.024452989920973778, -0.04243640974164009, -0.005282862111926079, -0.009853079915046692, 0.015355932526290417, 0.005124840885400772, -0.032868389040231705, 0.0270432960242033, -0.0005573342205025256, -0.002898602746427059, 0.020016005262732506, 0.029422909021377563, -0.006543932482600212, 0.0037925064098089933, -0.005896355956792831, -0.00552454125136137, -0.046104978770017624, 0.007101654075086117, -0.015331144444644451, 0.018516354262828827, -0.020883571356534958, 0.020883571356534958, -0.004653876181691885, 0.00840300414711237, 0.023139245808124542, -0.017871875315904617, 0.009016497991979122, 0.011805105023086071, -0.013769524171948433, -0.0016995014157146215, 0.01134653389453888, -0.04548528790473938, 0.031529854983091354, 0.038544751703739166, 0.008427792228758335, -0.010980917140841484, 0.04023031145334244, -0.008452579379081726, -0.023659786209464073, -0.019755735993385315, 0.029175031930208206, 0.0008729890687391162, -0.002144129481166601, 0.027836499735713005, 0.02075963467359543, -0.002703400095924735, -0.03249657526612282, -0.04278343543410301, 0.014624697156250477, 0.014116550795733929, 0.008161325007677078, -0.005639184266328812, 0.018107358366250992, -0.04062691330909729, 0.010286863893270493, -0.02235843613743782, -0.006413797382265329, -0.004706549923866987, -0.007696556858718395, -0.012282267212867737, 0.015851683914661407, 0.03745409846305847, -0.004827389493584633, -0.004802601877599955, -0.044568147510290146, 0.02484959177672863, 0.06013477221131325, -0.03921401873230934, 0.001635983120650053, -0.01463709119707346, -0.008880166336894035, 0.034801822155714035, 0.03695834428071976, -0.008526942692697048, -0.033116262406110764, -0.039015717804431915, -0.013422497548162937, 0.03177773207426071, -0.019768130034208298, -0.02446538396179676, 0.01710345968604088, -0.014711454510688782, -0.0019179423106834292, 0.010237288661301136, 0.0005468769231811166, 0.04513826221227646, -0.015529445372521877, 0.008378216065466404, 0.028133951127529144, -0.01478581689298153, 0.004749928135424852, 0.0029063487891107798, 0.022259285673499107, -0.00010931729048024863, -0.003445479553192854, -0.0009791110642254353, 0.04265949875116348, -0.006872368510812521, 0.006196905858814716, 0.0004961397498846054, 0.007715147454291582, 0.0053758155554533005, 0.017078671604394913, 0.030240898951888084, -0.001041080104187131, -0.023523453623056412, 0.010491360910236835, -0.017611606046557426, -0.028902368620038033, 0.0035353347193449736, 0.036561742424964905, -0.015802109614014626, 0.02462650276720524, -0.01823129691183567, -0.004046579357236624, 0.007330939639359713, 0.009047482162714005, -0.025828702375292778, -0.01381909940391779, 0.002977613126859069, 0.005481163039803505, -0.009493659250438213, -0.0074114990420639515, -0.040428612381219864, -0.020920753479003906, -0.013868674635887146, 0.00563298724591732, -0.018888168036937714, 0.0005116320098750293, 0.015467477031052113, -0.01702909730374813], [0.005347926169633865, -0.0026827072724699974, 0.04686867818236351, 0.023896031081676483, -0.04935901612043381, 0.03631972894072533, -0.05327639728784561, 0.06306985020637512, 0.005568278953433037, -0.00034058489836752415, -0.023196497932076454, 4.7355071728816256e-05, 0.055011238902807236, -0.010017305612564087, -0.04085269942879677, 0.034277092665433884, 0.004889732226729393, 0.03343765437602997, -0.019838742911815643, -0.01141637098044157, 0.03413718566298485, 0.037075225263834, -0.017138546332716942, -0.006460182834416628, -0.02946431003510952, 0.0182997714728117, 0.013200178742408752, -0.008779133670032024, 0.03279408439993858, -0.05280071496963501, 0.10621701925992966, -0.048883333802223206, 0.04272744804620743, -0.002665218897163868, -0.00702330656349659, 0.015403706580400467, -0.011339422315359116, 0.004123744089156389, -0.0027963812462985516, -0.009828431531786919, -0.004025809466838837, 0.015935350209474564, 0.03696329891681671, 0.019405031576752663, 0.02364419959485531, 0.03794264420866966, 0.004260153044015169, -0.02423180639743805, 0.02361621893942356, 0.010465006344020367, 0.043650828301906586, 0.04628107324242592, 0.022161191329360008, -0.026568245142698288, 0.01572549156844616, 0.01748831383883953, 0.016439015045762062, -0.009520637802779675, 0.059264395385980606, 0.0036060900893062353, -0.02411988191306591, 0.0020391372963786125, -0.035760100930929184, 0.01231177244335413, -0.0029327902011573315, -0.02204926498234272, 0.014704173430800438, 0.06390929222106934, -0.07924304157495499, 0.018019957467913628, -0.028736796230077744, 0.01760023832321167, 0.032878030091524124, -0.08690991997718811, -0.04362284764647484, 0.036235783249139786, -0.04292331635951996, -0.012101912871003151, -0.019027285277843475, -0.027057917788624763, -0.023742133751511574, -0.002306708600372076, -0.039705466479063034, 0.0291565153747797, 0.01681676134467125, -0.006481168791651726, -0.06995325535535812, -0.002269983058795333, -0.0025567912962287664, -0.014256472699344158, 0.011304445564746857, 0.004739332944154739, 0.010947683826088905, 0.08931631594896317, 0.02770148776471615, 0.017432350665330887, -0.00048180302837863564, -0.020384378731250763, -0.01659291237592697, 0.031506944447755814, -0.0135989123955369, -0.0563543401658535, -0.019488975405693054, -0.009044955484569073, 0.015711501240730286, -0.04949892312288284, -0.010325100272893906, 0.04521778225898743, -0.004337101709097624, -0.010548950172960758, 0.004578440450131893, -0.07107250392436981, -0.013493982143700123, 0.039789408445358276, -0.0029187994077801704, 0.02122381702065468, -0.01620117388665676, -0.0662037581205368, 0.028079235926270485, 0.0011734658619388938, -0.02512720786035061, 0.020244471728801727, 0.010702847503125668, -0.046225108206272125, -0.030499618500471115, -0.04768013581633568, 0.01087073516100645, -0.01635507121682167, -0.06888996064662933, 0.007026804145425558, 0.017880050465464592, -0.07594124972820282, 0.035452309995889664, -0.027337731793522835, 0.017082585021853447, 0.017656201496720314, -0.020160527899861336, -0.034165170043706894, -0.020006630569696426, -0.020846068859100342, -0.0026722142938524485, -0.008681198582053185, 0.003983837552368641, 0.014326426200568676, -0.013864734210073948, -0.018943341448903084, -0.005704687908291817, 0.02861087955534458, 0.018663527444005013, -0.01389271579682827, -0.04356688633561134, -0.04261552169919014, -0.018467659130692482, -0.02099996618926525, -0.02080409787595272, 0.03500460833311081, -0.009982328861951828, 0.004865248687565327, -0.004987666849046946, 0.019614892080426216, -0.026246460154652596, -0.02181142382323742, -0.0405169241130352, -0.03035971149802208, -0.006271309219300747, 0.001050173188559711, -0.0025952656287699938, 0.048799388110637665, -0.04074077308177948, -0.02314053662121296, -0.02938036620616913, -0.05212916433811188, -0.06116712465882301, 0.026274440810084343, -0.050086528062820435, -0.04071279242634773, 0.015165865421295166, -0.016606902703642845, -0.002792883664369583, 0.006134900264441967, -0.003513402072712779, 0.020748134702444077, -0.01502595841884613, -0.01045801118016243, -0.030191823840141296, 0.006089430768042803, -0.011892053298652172, -0.0044875009916722775, -0.020272452384233475, 0.03615184128284454, -0.010451016016304493, -0.001956942258402705, 0.010604913346469402, 0.017320426180958748, -0.048995256423950195, 0.011360407806932926, -0.027337731793522835, -0.017852069810032845, -0.014410370029509068, 0.0003379616537131369, 0.007890726439654827, -0.027337731793522835, 0.07291927188634872, 0.03005191683769226, -0.06900189071893692, -0.010360077023506165, -0.009842422790825367, 0.014277459122240543, 0.06351755559444427, -0.031982626765966415, 0.011948015540838242, -0.019293107092380524, -0.032094553112983704, 0.05282869562506676, 0.0039803399704396725, 0.019964657723903656, -0.0351165346801281, 0.012738487683236599, -0.024833405390381813, 0.02361621893942356, -0.04874342679977417, 0.005550790578126907, -0.010828763246536255, -0.0011612239759415388, -0.007170208264142275, 0.00791870802640915, 0.033969298005104065, -0.04065683111548424, -0.015627557411789894, -0.05459151789546013, -0.003277309937402606, 0.03203858807682991, 0.018159864470362663, -0.018859397619962692, -0.017586247995495796, 0.02010456472635269, -0.03620780259370804, -0.039397671818733215, 0.01807592064142227, 0.015361734665930271, 0.050953950732946396, -0.058201104402542114, 0.0276735071092844, 0.012094917707145214, 0.023965984582901, -0.015641547739505768, 0.0014663951005786657, -0.014235487207770348, 0.047008585184812546, 0.016802771016955376, 0.03231840208172798, 0.010108244605362415, 0.022958656772971153, -0.07694857567548752, 0.026568245142698288, 0.04222378507256508, 0.014179524034261703, -0.05691396817564964, 0.05741763114929199, -0.07235964387655258, 0.0017785615054890513, -0.00010935660975519568, -0.017614228650927544, 0.023742133751511574, -0.0469806045293808, -0.002959022531285882, 0.02403593808412552, -0.02525312453508377, -0.032878030091524124, 0.05780936777591705, -0.07426237314939499, 0.017082585021853447, 0.034640852361917496, 0.017614228650927544, -0.03189868479967117, -0.016145210713148117, 0.011031627655029297, -0.025001293048262596, 0.010178198106586933, 0.020398369058966637, -0.034165170043706894, 0.00023040852101985365, -0.025826741009950638, -0.04949892312288284, -0.024483637884259224, 0.03964950516819954, 0.03872612118721008, -0.00020876673806924373, -0.06167078763246536, 0.035144515335559845, 0.05705387145280838, -0.008016643114387989, -0.005620744079351425, 0.022846732288599014, 0.032682158052921295, -0.02403593808412552, -0.012668534182012081, -0.000688602332957089, 0.014144547283649445, -0.004319613333791494, 0.015711501240730286, 0.03340967372059822, 0.04891131445765495, -0.03995729610323906, -0.026358386501669884, 0.011486324481666088, -0.025476975366473198, 0.03648761659860611, 0.006792461033910513, -0.05593461915850639, 0.005554288160055876, 0.02770148776471615, -0.02037038654088974, -0.06418910622596741, 0.009247819893062115, -0.0780678316950798, -0.018859397619962692, 0.0016815012786537409, 0.011682192794978619, -0.034361038357019424, 0.050366342067718506, 0.018537612631917, 0.03934171050786972, -0.012332758866250515, 0.006844925694167614, -0.05014249309897423, 0.05022643506526947, 0.07498988509178162, -0.07129635661840439, -0.021209826692938805, -0.022510956972837448, -0.023951994255185127, 0.05075807869434357, 0.009471670724451542, 0.016047276556491852, 0.008282464928925037, 0.01055594626814127, 0.006026472896337509, 0.023042600601911545, -0.010646885260939598, 0.04202791303396225, -0.01258459035307169, 0.006295792758464813, 0.00959758646786213, -0.03637569025158882, 0.0018047939520329237, 0.056410301476716995, 0.03175877779722214, 0.00010143221879843622, 0.05573875084519386, -0.02728176862001419, 0.020510293543338776, -0.058480918407440186, 0.009366740472614765, -0.04748426750302315, -0.003196863690391183, -0.016718827188014984, 0.020930012688040733, -0.0215036291629076, -0.00872317049652338, 0.03083539381623268, 0.04020912945270538, 0.01541769690811634, 0.02302861027419567, 0.07521373778581619, 0.0017671940149739385, -0.02161555550992489, 0.01899930275976658, 0.0341092050075531, -0.027883365750312805, -0.01705460250377655, 0.0030132364481687546, 0.06189463660120964, 0.025393031537532806, -0.004931704141199589, -0.014032622799277306, 0.01849563978612423, 0.017963996157050133, -0.04149626940488815, 0.03497662767767906, 0.02693200297653675, -0.025770777836441994, 0.029688160866498947, -0.00788373127579689, 0.04818379878997803, 0.020552266389131546, -0.04728839918971062, 0.029100552201271057, -0.01635507121682167, -0.03581606596708298, 0.0019307098118588328, -0.033549580723047256, 0.0005023517878726125, 0.0008997737313620746, -0.005319945048540831, 0.04222378507256508, 0.0548713319003582, 0.03962152078747749, -0.017656201496720314, 0.004592431243509054, 0.01153529155999422, -0.06318178027868271, 0.0062188440933823586, 0.053444284945726395, -0.01627112738788128, 0.00590405473485589, -0.04560951888561249, 0.029212478548288345, 0.007897722534835339, -0.025966648012399673, 0.033773429691791534, 0.002450112719088793, 0.05050624907016754, 0.016802771016955376, -0.008107582107186317, -0.003425960661843419, -0.02470748871564865, 0.045637503266334534, 0.005277973134070635, -0.007722839247435331, 0.04421045631170273, 0.05568278953433037, 0.03472479432821274, 0.021377714350819588, -0.037215132266283035, 0.008464343845844269, -0.01356393564492464, 0.002642484148964286, 0.007897722534835339, -0.019488975405693054, 0.015991313382983208, 0.009002983570098877, -0.0016229155007749796, -0.006106919143348932, -0.03220647573471069, -0.018635546788573265, 0.006890395190566778, 0.004319613333791494, 0.005120578221976757, -0.008751152083277702, -0.03570413962006569, 0.023042600601911545, -0.0038509266451001167, 0.020188508555293083, -0.015389715321362019, 0.006519643124192953, 0.02361621893942356, 0.03290601074695587, -0.006813446991145611, 0.029632197692990303, 0.022664854303002357, -0.015375724993646145, -0.0691697746515274, 0.015095911920070648, -0.031171169131994247, -0.02861087955534458, -0.03620780259370804, -0.03520047664642334, 0.029939992353320122, 0.0020846070256084204, 0.010178198106586933, 0.03640367090702057, 0.03925776481628418, 0.06575606018304825, 0.024007955566048622, 0.038110531866550446, -0.058872658759355545, -0.007617908995598555, -0.022608891129493713, 0.02606458216905594, -0.0066245729103684425, 0.01736239716410637, 0.02368617057800293, -0.0002765339449979365, 0.017194509506225586, -0.03318582475185394, 0.00858326442539692, -0.03497662767767906, -0.041776083409786224, -0.030611542984843254, 0.01659291237592697, 0.01716652885079384, -0.03799860551953316, -0.010590922087430954, 0.053947947919368744, 0.007645890582352877, 0.02786937542259693, 0.008352418430149555, -0.018831415101885796, -0.013102244585752487, -0.005893561523407698, 0.020734144374728203, -0.0013500978238880634, -0.01587938889861107, 0.020356396213173866, 0.01825779862701893, 0.0036760433577001095, 0.017810098826885223, 0.0158374160528183, 0.021643536165356636, -0.004102758131921291, -0.0760531798005104, -0.006120909471064806, -0.013780790381133556, 0.051149819046258926, 0.03430507332086563, -0.006834432948380709, -0.024007955566048622, -0.006187365390360355, 0.015711501240730286, -0.021769452840089798, 0.039593540132045746, -0.011108576320111752, -0.02861087955534458, -0.009576600044965744, -0.03508855029940605, 0.037047240883111954, -0.015207837335765362, -0.01951695792376995, 0.014550276100635529, 0.014928024262189865, -0.0021300765220075846, -0.0009469921351410449, 0.016984649002552032, -0.01951695792376995, 0.030527599155902863, -0.009009978733956814, -0.015445678494870663, 0.012787454761564732, 0.016439015045762062, 0.007939694449305534, -0.039789408445358276, -0.01270351093262434, 0.03480874001979828, 0.031031262129545212, -0.015053940005600452, 0.012647547759115696, 0.028708815574645996, 0.019111229106783867, -0.03243032842874527, 0.045721445232629776, 0.020230481401085854, 0.012836421839892864, 0.0059005566872656345, 0.028149189427495003, -0.029324403032660484, -0.010087259113788605, 0.024483637884259224, 0.01646699570119381, 0.03536836430430412, -0.002894315868616104, -0.008016643114387989, -0.011850081384181976, -0.011262473650276661, 0.008436362259089947, 0.02072015404701233, 0.01810390129685402, -0.037327054888010025, 0.03699127957224846, -0.009345754981040955, -0.0018327751895412803, 0.04054490476846695, -0.01666286401450634, -0.010465006344020367, 0.012654543854296207, 0.01541769690811634, -0.010374067351222038, 7.711253419984132e-05, -0.040377017110586166, -0.016984649002552032, -0.03452892601490021, 0.05814514309167862, -0.015459668822586536, 0.002666967688128352, 0.053444284945726395, 0.018439676612615585, -0.013067267835140228, -0.031506944447755814, 0.011703179217875004, 0.0291565153747797, 0.01639704219996929, 0.027603553608059883, 0.006068444810807705, -0.013479991815984249, 0.003144398797303438, -0.005445860791951418, -0.007750820368528366, -0.024833405390381813, -0.0014541532145813107, 0.023658189922571182, -0.0006396350800059736, 0.015263799577951431, 0.02595265582203865, -0.0074500213377177715, -0.0015206087846308947, 0.02279076911509037, -0.015557602979242802, 0.011906043626368046, 0.05803321674466133, 0.008324436843395233, -0.006705019157379866, 0.0014366649556905031, -0.030023936182260513, 0.017656201496720314, -0.0284429918974638, -0.043454959988594055, -0.0004385194624774158, 0.004235669504851103, 0.007547955960035324, 0.02505725435912609, 0.0212657880038023, 0.014312435872852802, 0.034165170043706894, -0.03847428783774376, -0.03105924464762211, 0.01997864805161953, -0.0440145879983902, -0.014179524034261703, -0.01899930275976658, 0.040377017110586166, -0.04230772703886032, 0.0009531130781397223, 0.0400412417948246, 0.004442031495273113, -0.05322043597698212, 0.006348257884383202, 0.005029638763517141, -0.03173079714179039, 0.006453187670558691, -0.00845035258680582, -0.03145098313689232, 0.03131107613444328, 0.007729834411293268, 0.004256655462086201, -0.016676856204867363, 0.0029013112653046846, 0.002394150011241436, -0.02220316231250763, 0.022888705134391785, 0.01790803298354149, 0.013396047987043858, -0.008639226667582989, 0.005012150388211012, -0.043175145983695984, 0.020440340042114258, 0.02178344316780567, 0.0002106248721247539, 0.012871398590505123, 0.008163544349372387, 0.005620744079351425, 0.020594237372279167, -0.02220316231250763, 0.020440340042114258, -0.02010456472635269, 0.010171202942728996, 0.006271309219300747, -0.015333753079175949, 0.016536949202418327, 0.032878030091524124, 0.025421012192964554, -0.022273115813732147, 0.0341092050075531, -0.04202791303396225, 0.035844046622514725, 0.047512248158454895, -0.020230481401085854, 0.05576673150062561, -0.01666286401450634, 0.03391333669424057, -0.0220072939991951, 0.0042986273765563965, -0.025504956021904945, 0.01568351872265339, -0.03637569025158882, -0.016522958874702454, -0.0012679026694968343, -0.02477744221687317, -0.016327088698744774, -0.03813851252198219, -0.025393031537532806, 0.0012801445554941893, -0.03461286798119545, -0.03520047664642334, 0.014144547283649445, 0.0072471569292247295, -0.0036760433577001095, -0.0014865066623315215, 0.011899048462510109, -0.012416702695190907, 0.02111189253628254, 0.007128236349672079, 0.042363688349723816, 0.013794781640172005, -0.0046169147826731205, 0.032094553112983704, 0.03055558167397976, -0.008177535608410835, -0.005813115276396275, -0.016844743862748146, -0.05369611829519272, 0.02178344316780567, -0.007170208264142275, 0.025504956021904945, -0.021251797676086426, -0.046420980244874954, -0.029520273208618164, 0.006593094207346439, -0.003548378823325038, 0.05585067719221115, 0.025113217532634735, -0.014494313858449459, 0.00051940290722996, -0.03668348491191864, -0.009345754981040955, -0.02111189253628254, 0.03312985971570015, 0.004064283799380064, -0.012885388918220997, 0.0030796919018030167, -0.03226244077086449, -0.03690733760595322, 0.06094327196478844, -0.010199184529483318, -0.01225581020116806, -0.017502304166555405, -0.006309783551841974, -0.024021947756409645, 0.021993301808834076, -0.010975665412843227, 0.01729244366288185, 0.0449659526348114, 0.011052614077925682, -0.008730165660381317, -0.01517985574901104, 0.010891721583902836, 0.004900225438177586, -0.026316413655877113, 0.011563272215425968, -0.0508979856967926, -0.019894704222679138, 0.03265417739748955, -0.039705466479063034, -0.011675197631120682, -0.008128567598760128, -0.022385040298104286, -0.02802327275276184, 0.016411032527685165, -0.008016643114387989, -0.04172011837363243, 0.022608891129493713, -0.011934025213122368, 0.013046281412243843, -0.017922023311257362, -0.013780790381133556, 0.004092265386134386, -0.02938036620616913, 0.019558928906917572, 0.01646699570119381, 0.0026145027950406075, -0.006197858136147261, 0.020860059186816216, -0.00016111107834149152, 0.015669528394937515, 0.04213983938097954, 0.02259490080177784, -0.026568245142698288, -0.02985604852437973, -0.002883822889998555, 0.0316748321056366, -0.014382388442754745, -0.012696515768766403, 0.0014392881421372294, 0.000734509143512696, 0.017236482352018356, -1.766592868079897e-05, -0.03279408439993858, -0.021433677524328232, -0.04980671405792236, -0.016494976356625557, -0.035536251962184906, 0.012234823778271675, -0.007631899788975716, -0.0016989896539598703, -0.004246162250638008, 0.03749494254589081, 0.01084974966943264, 0.0019954165909439325, -0.0031129196286201477, 0.03883804753422737, -0.00015203902148641646, -0.012164870277047157, -0.0015074926195666194, -0.009065941907465458, -0.041776083409786224, -0.00985641311854124, -0.023196497932076454, 0.023350395262241364, -0.007743825204670429, -0.042251765727996826, 0.021279780194163322, -0.014802108518779278, 0.025784768164157867, -0.019488975405693054, 0.005372409708797932, 0.09743089228868484, 0.009128899313509464, 0.004739332944154739, 0.030331730842590332, 0.013864734210073948, -0.012164870277047157, -0.036823391914367676, 0.044434305280447006, -0.010353080928325653, 0.015641547739505768, 0.01541769690811634, -0.05685800313949585, 0.002429126761853695, 0.028820740059018135, -0.019922686740756035, 0.017306433990597725, -0.005365414544939995, -0.03340967372059822, 0.00875814724713564, -0.008800119161605835, 0.014997977763414383, -0.022566920146346092, -0.009058945812284946, -0.012395716272294521, -0.009688525460660458, -0.017726154997944832, 0.02896064706146717, 0.0031129196286201477, 0.020538274198770523, 0.006701521575450897, -0.015319762751460075, -0.03536836430430412, -0.006428704131394625, -0.028345057740807533, -0.009520637802779675, -0.0055962600745260715, 0.05417180061340332, -0.004623909946531057, -0.012024964205920696, -0.050366342067718506, -0.014648211188614368, 0.015739481896162033, 0.011164539493620396, -0.020552266389131546, -0.026008618995547295, 0.009842422790825367, -0.009352750144898891, -0.030191823840141296, -0.007813778705894947, 0.0039943307638168335, 0.02392401173710823, -0.004015316721051931, -0.03125511482357979, 0.001920216833241284, -0.03254225477576256, 0.008940025232732296, -0.04172011837363243, -0.006393727380782366, 0.010583926923573017, -0.05322043597698212, -0.014858070760965347, 0.005173042882233858, 0.02763153426349163, -0.02786937542259693, 0.067267045378685, -0.016047276556491852, 0.023406358435750008, 0.012045949697494507, -0.00013542512897402048, -0.010653880424797535, -0.018215827643871307, -0.024945329874753952, 0.0028331067878752947, -0.005187033675611019, 0.04675675556063652, -0.03156290575861931, -0.02279076911509037, 0.02896064706146717, 0.011059609241783619, 0.004354590084403753, 0.015361734665930271, -0.021909357979893684, -0.02322448045015335, 0.04670079052448273, 0.004641398321837187, 0.006596591789275408, -0.008632231503725052, 0.028554918244481087, 0.0291565153747797, -0.014137552119791508, -0.0008884062990546227, -0.010206179693341255, -0.01344501506537199, 0.0017925520660355687, 0.02403593808412552, 6.448815838666633e-05, -0.01845366880297661, 0.011073599569499493, 0.02353227511048317, -0.010381062515079975, -0.015249809250235558, -0.0041971951723098755, -0.006264313589781523, -0.030191823840141296, 0.0331578403711319, -0.007226170971989632, 0.02630242332816124, 0.007750820368528366, -0.03136703744530678, -0.0316188707947731, 0.02630242332816124, 0.0007843508501537144, 0.0028505949303507805, -0.008905049413442612, -0.003920879680663347, 0.02204926498234272, 0.016383051872253418, -0.018593573942780495, 0.017502304166555405, -0.025784768164157867, 0.02977210469543934, -0.007289128843694925, -0.01748831383883953, 0.03329774737358093, 0.021335741505026817, 0.017152536660432816, -0.014760136604309082, 0.0469806045293808, 0.047820042818784714, 0.043958622962236404, 0.005222010426223278, -0.031199149787425995, 0.010723833926022053, 0.0017689429223537445, 0.025882704183459282, -0.00525698671117425, 0.023364385589957237, -0.011696184054017067, -0.010485992766916752, -0.010919703170657158, -0.002168550854548812, -0.004239167086780071, -0.01659291237592697, 0.02041235938668251, 0.01457825768738985, -0.009142890572547913, 0.005897059105336666, -0.030527599155902863, 0.005330437794327736, 0.0008110204944387078, -0.03867015987634659, 0.002834855578839779, -0.000507598277181387, -0.01810390129685402, 0.01147233322262764, 0.01275947317481041, 0.0004387380613479763, -0.008282464928925037, 0.00038955218042247, -0.024091899394989014, 0.03203858807682991, 0.017376387491822243, 0.017026621848344803, -0.025658853352069855, -0.011913038790225983, 0.02067818120121956, -0.03133905678987503, -0.00842936709523201, 0.013130225241184235, 0.033073898404836655, -0.006516145542263985, -0.006561615038663149, 0.06122308596968651, 0.0031898682937026024, 0.006670042872428894, -0.01434041652828455, -0.014746145345270634, 0.013382057659327984, 0.02977210469543934, 0.006680535618215799, 0.003130408003926277, -0.0011481078108772635, 0.023910021409392357, 0.0009443688904866576, 0.020636210218071938, -0.008044623769819736, 0.0019184679258614779, -0.03590000793337822, 0.023392368108034134, 0.024791432544589043, 0.005012150388211012, -0.0041832043789327145, 0.026918010786175728, -0.00700581818819046, 0.015319762751460075, 0.0247354693710804, 0.01666286401450634, 0.012444683350622654, -0.02178344316780567, -0.033549580723047256, 0.004889732226729393, -0.03542432561516762, -0.01990869641304016, 0.0018047939520329237, -0.03853025287389755, -0.006099923513829708, 0.02852693572640419, -0.00944368913769722, -0.006953353527933359, 0.007869740948081017, -0.021909357979893684, -0.01145134773105383, 0.022161191329360008, -0.011948015540838242, -0.03480874001979828, -4.36661321145948e-05, 0.016243144869804382, 0.05039432272315025, 0.0076528857462108135, -0.05960017070174217, -0.014816098846495152, -0.03321380540728569, 0.02377011440694332, -0.007191194221377373, 0.012066936120390892, 0.011759141460061073, 0.0008731040288694203, 0.009184862487018108, -0.001998914172872901, 0.021713489666581154, -0.005449358373880386, 0.027029937133193016, -0.0032143520656973124, -0.018523620441555977, -0.0021615554578602314, 0.03522845730185509, 0.021293770521879196, 0.011892053298652172, -0.025141198188066483, 0.027421675622463226, -0.014746145345270634, 0.01842568628489971, 0.04714849218726158, 0.0019744306337088346, -0.012801445089280605, -0.010122235864400864, 0.012143884785473347, 0.019223153591156006, -0.035144515335559845, -0.02841501124203205, -0.010744819417595863, -0.04580539092421532, -0.004987666849046946, -0.03380141034722328, -0.026722142472863197, -0.009814441204071045, 0.019684845581650734, -0.015627557411789894, -0.014718164689838886, -0.005015648435801268, -0.030919337645173073, -0.01168918889015913, -0.04569346457719803, -0.008639226667582989, -0.0037879685405641794, 0.0009058946161530912, 0.003581606550142169, 0.028037263080477715, -0.016061266884207726, 0.043147165328264236, 0.027407685294747353, 0.018943341448903084, -0.03556423261761665, -0.017348406836390495, -0.013976659625768661, 0.011479328386485577, 0.005620744079351425, 0.02274879813194275, 0.010122235864400864, -0.03749494254589081, 0.0025113217998296022, -0.029995955526828766, -0.015165865421295166, 0.012927360832691193, -0.006691028829663992, -0.01904127560555935, -0.020426349714398384, 0.010094254277646542, 0.0037599874194711447, 0.01416553370654583, -0.007121241185814142, 0.019726816564798355, 0.021951330825686455, 0.011996982619166374, 0.006082435138523579, 0.013689851388335228, 0.014872061088681221, -0.0019412027904763818, -0.0003941428440157324, -0.021027946844697, 0.03777475655078888, 0.015669528394937515, 0.01751629449427128, 0.003172379918396473, 0.027771441265940666, 0.02466551773250103, 0.009079932235181332, 0.023280441761016846, 0.023476311936974525, 0.0022105227690190077, 0.03231840208172798, -0.003277309937402606, 0.0008337553590536118, 0.007904717698693275, -0.007799787446856499, 0.029016608372330666, -0.03131107613444328, -0.025686834007501602, -0.04160819575190544, 0.010569936595857143, 0.02141968533396721, 0.009058945812284946, -0.03360554203391075, 0.04600125923752785, 0.015431687235832214, 0.007443026173859835, 0.01317219715565443, -0.03749494254589081, -0.007359082344919443, -0.017320426180958748, -0.00875814724713564, 0.006085933186113834, -0.0026687164790928364, -0.03184271976351738, -0.005166047718375921, -0.006844925694167614, 0.022077245637774467, 0.00995434820652008, -0.001594059751369059, 0.001796049764379859, 0.00027806416619569063, 0.04807187616825104, 0.010213174857199192, 0.09105115383863449, 0.006453187670558691, 0.005547292996197939, -0.022692834958434105, 0.026666179299354553, 0.020594237372279167, -0.029912011697888374, -0.01580943539738655, 0.03388535603880882, -0.0035623693838715553, -0.0052919634617865086, 0.03539634495973587, -0.012066936120390892, 0.005739664193242788, 0.02302861027419567, -0.01246566977351904, 0.008863077498972416, -0.001367586082778871, 0.011633225716650486, -0.022427013143897057, -0.003457439597696066, 0.004546961281448603, 0.007226170971989632, -0.019209163263440132, 0.009394722059369087, 0.0038369358517229557, -0.008387395180761814, 0.0013588418951258063, -0.03450094535946846, 0.036235783249139786, -0.03897795081138611, -0.0024431173224002123, -0.01838371530175209, -0.008590259589254856, -0.011395384557545185, -0.0222451351583004, 0.005963514558970928, -0.024637535214424133, 0.02841501124203205, 0.008499320596456528, -0.026330403983592987, 0.012010973878204823, -0.01733441650867462, 0.02665218897163868, -0.005662715993821621, 0.02584073133766651, -0.01958691142499447, -0.04026509076356888, -0.00825448427349329, -0.00029948735027574003, 0.029828066006302834, 0.0037005271296948195, -0.03321380540728569, -0.02602260932326317, -0.0380825512111187, -0.0026459817308932543, 0.005837598815560341, -0.010451016016304493, -0.030667506158351898, 0.01659291237592697, -0.007715843617916107, -0.007422040216624737, -0.01869150996208191, 0.030387692153453827, 0.0015643296064808965, 0.016830751672387123, -0.033549580723047256, -0.0016439014580100775, 0.004337101709097624, 0.018131883814930916, -0.014144547283649445, -0.006617577746510506, -0.0018467658665031195, -0.009058945812284946, -0.010737824253737926, 0.001729594194330275, -0.010681862011551857, 0.0060369656421244144, -0.01229078695178032, -0.013221165165305138, 0.009485661052167416, 0.039397671818733215, 0.058872658759355545, 0.00870218500494957, -0.01760023832321167, -0.004176209215074778, 0.0005841096863150597, 0.06318178027868271, 0.0008805365650914609, -0.005040131974965334, 0.0003569801920093596, -0.01627112738788128, -0.022259125486016273, -0.017082585021853447, 0.013577925972640514, 0.01090571191161871, -0.03153492510318756, -0.02614852599799633, 0.032094553112983704, -0.0234903022646904, 0.01899930275976658, -0.0012941351160407066, -0.032486289739608765, 0.02435772307217121, -0.0012950096279382706, -0.026834066957235336, 0.006334267091006041, -0.01512389350682497, -0.02754759043455124, 0.003342016600072384, -0.0068764048628509045, -0.007198189850896597, 0.022524947300553322, -0.017418360337615013, -0.02446964755654335, -0.03444498032331467, -0.008107582107186317, 0.017698172479867935, 0.021125882863998413, 0.02119583636522293, -0.014508304186165333, -0.00831044651567936, 0.03371746838092804, 0.016243144869804382, -0.008086595684289932, 0.010527964681386948, -0.024539601057767868, 0.03312985971570015, 0.02037038654088974, 0.006830934900790453, 0.0036900341510772705, 0.001207567984238267, 0.04804389551281929, -0.006446192041039467, -0.009247819893062115, 0.0006763605051673949, -0.023560255765914917, -0.004316115751862526, 0.025421012192964554, 0.005274475086480379, -0.018355732783675194, 0.01430543977767229, -0.03136703744530678, -0.011703179217875004, -0.030275767669081688, 0.006453187670558691, 0.004763816483318806, -0.007082766853272915, -0.005522809457033873, -0.007855750620365143, -0.016634883359074593, 0.02161555550992489, -0.007117743603885174, 0.00024330615997314453, 0.027575572952628136, -0.01849563978612423, 0.015291781164705753, -2.198335641878657e-05, 0.010003315284848213, 0.008177535608410835, -0.030023936182260513, -0.006607084535062313, -0.035340383648872375, -0.015529622323811054, -0.0291565153747797, 0.0036970293149352074, -0.015795445069670677, 0.008576268330216408, -0.005666213575750589, -0.015935350209474564, -0.02802327275276184, -0.009366740472614765, 0.01293435599654913, 0.018019957467913628, -0.016494976356625557, -0.0015573343262076378, 0.001434916048310697, 0.03187070041894913, -0.030611542984843254, -0.02307058311998844, -0.0029572737403213978, 0.010157212615013123, 0.01600530371069908, -0.02087405137717724, 0.019950667396187782, 0.010681862011551857, -0.01755826734006405, -0.007457016501575708, -0.0022874714341014624, -0.0039033915381878614, 0.009205847978591919, 0.01434041652828455, -0.0033385190181434155, -0.002857590327039361, -0.006767977029085159, -0.07012113928794861, 0.016257135197520256, 0.020384378731250763, 0.007736829575151205, -0.005505321081727743, 0.005295461043715477, -0.0023416851181536913, -0.02231508679687977, -0.02435772307217121, -0.0029310411773622036, -0.02161555550992489, -0.030415674671530724, -0.017782116308808327, -0.0011979494011029601, -0.0018222822109237313, 0.04882736876606941, 0.0030219804029911757, -0.014606239274144173, 0.024007955566048622, 0.00242038257420063, -0.05993594601750374, 0.004837267566472292, 0.014928024262189865, -0.009128899313509464, -0.015627557411789894, -0.0010519219795241952, 0.015039949677884579, 0.01818784512579441, -0.03864217549562454, 0.00400132592767477, -0.000835941347759217, 0.0008897179504856467, -0.01478811725974083, 0.024651525542140007, -0.04639299586415291, 0.01371783297508955, 0.012094917707145214, -0.0013938185293227434, -0.02017451822757721, -0.03055558167397976, -0.007533965166658163, 0.012402711436152458, -0.024063918739557266, -0.029800085350871086, -0.006561615038663149, 0.0019237144151702523, 0.03136703744530678, -0.011989987455308437, -0.028932664543390274, -0.013780790381133556, 0.04765215516090393, -0.03189868479967117, 0.004522477742284536, -0.005939031019806862, -0.019111229106783867, -0.0009592339629307389, -0.006358750630170107, -0.007289128843694925, -0.0004765565390698612, 0.010136226192116737, -0.012045949697494507, 0.005830603651702404, 0.006075439974665642, 0.013193183578550816, -0.014207505621016026, 0.013787786476314068, -0.05257686600089073, 0.01943301409482956, -0.0022000297904014587, 0.009632563218474388, 0.020790107548236847, 0.002983506303280592, 0.002394150011241436, 0.007806783076375723, -0.0158374160528183, 0.0020478814840316772, 0.03906189650297165, 0.005627739243209362, 0.013955674134194851, -0.022413022816181183, -0.004148228093981743, -0.027687497437000275, 0.002642484148964286, 0.02712787128984928, 0.0012932607205584645, 0.004186701960861683, 0.041888006031513214, 0.026987964287400246, -0.010087259113788605, 0.02856890857219696, 0.0010903963120654225, 0.012899380177259445, 0.010478997603058815, -0.003536136820912361, -0.03285004571080208, 0.04015316814184189, 0.00791870802640915, 0.013102244585752487, 0.021167853847146034, -0.0052394988015294075, 0.03679541125893593, -0.035452309995889664, -0.009849417954683304, 0.02431575022637844, -0.02985604852437973, -0.015193846076726913, -0.018397705629467964, -0.011752146296203136, -0.019880713894963264, -0.00614539347589016, 0.022077245637774467, 0.0033070400822907686, -0.006736498326063156, -0.010087259113788605, -0.003558871801942587, -0.0020653698593378067, -0.0063552530482411385, -0.014830089174211025, 0.019614892080426216, 0.008226502686738968, 0.026050591841340065, 0.0025393031537532806, -0.020944003015756607, 0.02342034876346588, 0.06256619095802307, 0.013123230077326298, 0.01045801118016243, -0.0036480622366070747, -0.01947498507797718, 0.010653880424797535, 0.009807446040213108, 0.037718795239925385, -0.014606239274144173, -0.006071942392736673, 0.009821436367928982, 0.011010642163455486, -0.004760318901389837, -0.03438901901245117, -0.018803434446454048, -0.01399065088480711, 0.003997828345745802, -0.03578808531165123, -0.012801445089280605, -0.03945363312959671, -0.010080263949930668, 0.009177866391837597, 0.012409706600010395, -0.021209826692938805, 0.024805422872304916, -0.013186188414692879, 0.03279408439993858, -0.01157026831060648, 0.020552266389131546, 0.011549281887710094, -0.004214683547616005, 0.018943341448903084, 0.03047163598239422, 0.004560952074825764, -0.012297782115638256, 0.005309451837092638, -0.003448695410043001, -0.03548029065132141, 0.022021284326910973, -0.0017925520660355687, -0.008506315760314465, -0.008191525936126709, 0.009317773394286633, 0.0062538208439946175, 0.013850743882358074, -0.004470012616366148, -0.014494313858449459, -0.011402379721403122, -0.00047480768989771605, 0.006565112620592117, 0.020300433039665222, -0.00410625571385026, -0.011374399065971375, 0.0010038291802629828, -0.0018799937097355723, 0.0016745059983804822, -0.05201723799109459, -0.014466332271695137, 0.002770148916170001, -0.04784802347421646, -0.017236482352018356, 0.048687465488910675, -0.043846700340509415, 0.022622881457209587, -0.026554254814982414, 0.023014619946479797, -0.007040794938802719, 0.005564781371504068, -0.030695486813783646, 0.020230481401085854], [-0.0023947807494550943, 0.02347702719271183, -0.030423160642385483, -0.012696989811956882, -0.018436569720506668, 0.03200182691216469, -0.0029628188349306583, 0.028709178790450096, 0.06490574777126312, 0.023522131145000458, -0.029047464951872826, 0.022259198129177094, 0.0120655233040452, -0.0003682380774989724, -0.012403808534145355, 0.05908723548054695, -0.029408302158117294, 0.01125363726168871, 0.010887160897254944, 0.0015998093876987696, 0.041361063718795776, 0.03245287388563156, 0.02981424517929554, 0.017771275714039803, -0.04068449139595032, -0.012054246850311756, 0.005705751944333315, -0.03775268420577049, 0.04199253022670746, -0.028596417978405952, 0.030445711687207222, -0.017703618854284286, 0.028190474957227707, 0.016451960429549217, 0.03166354075074196, 0.0058185141533613205, 0.0015998093876987696, 0.014027579687535763, 0.025348875671625137, -0.05881660431623459, -0.0556141696870327, 0.02945340797305107, 0.04027855023741722, -0.02895725518465042, -0.01596708409488201, 0.050878167152404785, 0.008468418382108212, 0.030175084248185158, -0.035903386771678925, 0.027220722287893295, -0.03294902667403221, 0.04115809127688408, -0.002452571177855134, 0.008163961581885815, 0.04533028230071068, -0.005330818705260754, -0.03182140737771988, -0.027761979028582573, 0.030400607734918594, 0.024379123002290726, -0.010419199243187904, 0.04242102429270744, -0.020488837733864784, 0.057553671300411224, 0.0006099714082665741, -0.043683961033821106, 0.0026301713660359383, 0.03195672109723091, -0.038203731179237366, 0.011473523452877998, 0.009415618143975735, 0.04201508313417435, -0.055208224803209305, -0.04081980884075165, 0.004727542400360107, -0.012381256558001041, 0.03928624466061592, -0.012042970396578312, 0.049389712512493134, 0.03511405363678932, -0.024266360327601433, 0.046683426946401596, 0.000506723765283823, -0.007306971121579409, 0.04118064418435097, -0.01940632238984108, -0.030581027269363403, 0.026386283338069916, -0.03511405363678932, -0.01583177037537098, 0.0004034761805087328, 0.027604112401604652, 0.027265826240181923, 0.05011138692498207, 0.020252037793397903, 0.010689827613532543, -0.022112607955932617, -0.01912441849708557, -0.024514436721801758, 0.06941622495651245, 0.04580388218164444, 0.057598777115345, 0.01901165582239628, -0.01870719902217388, 0.020026512444019318, -0.05078795924782753, -0.022574931383132935, 0.007724190130829811, 0.002097371267154813, -0.009962514042854309, 0.012843579985201359, 0.003611199790611863, -0.02961127460002899, 0.0669354647397995, 0.0041750092059373856, -0.0152454087510705, 0.03364815190434456, 0.0058185141533613205, 0.012629332952201366, -0.011270551942288876, 0.003918475937098265, -0.002411695197224617, 0.006089142523705959, -0.08258681744337082, -0.002906437963247299, 0.03766247257590294, -0.035745520144701004, -0.008615009486675262, -0.03267839923501015, 0.007459199521690607, -0.02295832335948944, -0.004019961692392826, 0.007058894727379084, -0.03367070108652115, 0.009302856400609016, 0.007295694667845964, 0.015211580321192741, -0.03031039796769619, -0.01880868524312973, -0.001378514221869409, 0.001957828411832452, -0.026070550084114075, 0.03477577120065689, -0.0002898333186749369, -0.03362559899687767, 0.029408302158117294, 0.025506742298603058, 0.07234803587198257, 0.035722970962524414, 0.0008147046901285648, -0.05250193923711777, 0.026025446131825447, 0.011715961620211601, 0.004135542549192905, 0.003464609384536743, 0.032700952142477036, -0.018526779487729073, 0.017466818913817406, -0.001172723714262247, 0.004507656674832106, -0.020094171166419983, -0.038880303502082825, 0.008299275301396847, -0.019473979249596596, 0.02331916056573391, -0.018616989254951477, -0.0010444570798426867, -0.018786132335662842, -0.03978239744901657, -0.04690894857048988, -0.04785614833235741, 0.025010589510202408, 0.013847161084413528, -0.0032278094440698624, -0.027175618335604668, -0.016948113217949867, -0.013091656379401684, 0.003915656823664904, -0.0032588187605142593, -0.03168609365820885, -0.0046796188689768314, -0.03549744561314583, -0.01676769368350506, -0.03046826459467411, -0.02830323576927185, 0.02665691263973713, 0.03842925652861595, -0.0026795046869665384, -0.027423692867159843, 0.003120685461908579, -0.0043836189433932304, 0.02431146614253521, -0.04695405438542366, 0.02449188381433487, -0.012899961322546005, 0.0005426666466519237, -0.0379331037402153, 0.02000396139919758, 0.0615679956972599, -0.003763428423553705, 0.002525866497308016, -0.010723656974732876, -0.028235578909516335, 0.024762513116002083, -0.00031538092298433185, 0.003833904629573226, 0.0202633123844862, 0.01330590434372425, 0.03459535166621208, -0.010819504037499428, -0.005406932905316353, -0.06116205453872681, -0.07076936960220337, 0.030445711687207222, -0.014625217765569687, 0.006861561443656683, 0.05723793804645538, 0.03328731283545494, -0.03567786514759064, -0.01314803771674633, -0.028100265190005302, -0.04490178823471069, 0.05493759736418724, -0.010103465989232063, -0.05980890989303589, 0.0036196568980813026, -0.0015983999473974109, 0.009066056460142136, -0.014512456022202969, -0.06400365382432938, -0.04296228289604187, 0.02246217057108879, 0.03159588575363159, -0.03031039796769619, 0.03303923457860947, 0.025551846250891685, 0.015290513634681702, -0.016316646710038185, -0.011095770634710789, 0.02449188381433487, -0.025777369737625122, 0.007504304405301809, -0.0028387808706611395, -0.03031039796769619, -0.03466300666332245, -0.011214170604944229, -0.008248533122241497, 0.009534018114209175, 0.043886929750442505, 0.05890681594610214, 0.012967618182301521, 0.0003180237836204469, 0.028190474957227707, -0.044067349284887314, 0.023364264518022537, 0.025596950203180313, 0.05394529178738594, -0.002634399803355336, 0.0047331806272268295, -0.04451839625835419, -0.016034742817282677, -0.011298742145299911, -0.04781104624271393, 0.0170834269374609, -0.08772875368595123, -0.026386283338069916, 0.1024780124425888, -0.07122041285037994, -0.0212556179612875, 0.02613820880651474, -0.05656136944890022, 0.05272746458649635, 0.0526372529566288, -0.01147916167974472, -0.005229332949966192, -0.021661560982465744, -0.0084909712895751, -0.01857188530266285, -0.03229500725865364, 0.015087542124092579, -0.016203884035348892, -0.02141348458826542, 0.03164098784327507, 0.021323274821043015, 0.001111409510485828, -0.007120913825929165, 0.02848365530371666, -0.021514970809221268, -0.0036563044413924217, 0.038226284086704254, 0.043368227779865265, -0.027874741703271866, -0.03116738796234131, 0.03475321829319, -0.0163843035697937, -0.007938438095152378, -0.02305980771780014, 0.015741560608148575, -0.026904989033937454, -0.02963382750749588, 0.011670856736600399, 0.01972205564379692, -0.009962514042854309, 0.017850209027528763, -0.021503694355487823, -0.0014673141995444894, 0.019789712503552437, 0.020748188719153404, -0.032903920859098434, 0.009049142710864544, -0.02154879830777645, 0.05863618850708008, -0.015042437240481377, -0.028055159375071526, -0.047720834612846375, 0.008124494925141335, -0.05583969131112099, 0.006449980661273003, 0.0035040760412812233, 0.009646780788898468, 0.005285713821649551, 0.015200303867459297, 0.03098697029054165, -0.01505371369421482, -0.00035801902413368225, 0.01172723714262247, 0.0266118086874485, 0.046863846480846405, -0.02136838063597679, 0.023725103586912155, -0.019913751631975174, 0.01570773310959339, 0.028235578909516335, -0.035880837589502335, -0.011761065572500229, -0.024063389748334885, -0.0022270474582910538, 0.03412175178527832, -0.058861710131168365, -0.0297916941344738, 0.03946666419506073, -0.01044738944619894, 0.009511466138064861, 0.009370514191687107, 0.004552761558443308, 0.01314803771674633, -0.0008471237379126251, 0.04124830290675163, -0.009556571021676064, 0.0022608761209994555, 0.03732419013977051, 0.011546818539500237, 0.014692875556647778, -0.006652952171862125, -0.04645790159702301, -0.027874741703271866, -0.012031694874167442, 0.023567236959934235, -0.0034843427129089832, 0.03648975118994713, 0.032746054232120514, -0.01408396102488041, 0.029769141227006912, 0.07347565144300461, -0.028010055422782898, 0.02172921784222126, -0.0092351995408535, -0.01870719902217388, 0.035722970962524414, -0.029927007853984833, 0.05723793804645538, 0.03234011307358742, -0.013880989514291286, -0.04341332986950874, 0.011885103769600391, 0.002462437842041254, 0.01857188530266285, 0.028551312163472176, -0.013982475735247135, 0.012866132892668247, 0.002046628389507532, -0.016350476071238518, 0.02329660765826702, 0.009753904305398464, 0.06007954105734825, 0.047224681824445724, -0.02013927511870861, 0.004902323707938194, -0.010548875667154789, 0.019101865589618683, -0.03851946443319321, -0.007865142077207565, -0.002501904731616378, 0.010176761075854301, -0.001260819029994309, -0.006517637521028519, 0.0339638851583004, 0.038880303502082825, 0.006528913974761963, -0.02931809425354004, -0.007707275915890932, -0.048216987401247025, -0.005841066129505634, -0.036579959094524384, 0.0399177111685276, 0.01773744635283947, -0.00766217103227973, -0.010836418718099594, 0.026070550084114075, -0.038068417459726334, 0.061387576162815094, 0.009635504335165024, 0.035204265266656876, -0.014568837359547615, 0.01867336966097355, 0.015256685204803944, -0.0008069523610174656, 0.04081980884075165, -0.001515237963758409, -0.02431146614253521, 0.023341713473200798, -0.03010742738842964, -0.04695405438542366, 0.044383082538843155, -0.019180798903107643, 0.006331580691039562, 0.007431009318679571, 0.03748205676674843, 0.027739426121115685, -0.07144594192504883, 0.005181409418582916, -0.026724569499492645, -0.00982156116515398, 0.030017217621207237, 0.0007963809184730053, -0.024875273928046227, -0.00011364284728188068, -0.03994026407599449, -0.02764921821653843, -0.014940951950848103, -0.042872074991464615, -0.0058692567981779575, -0.004724723752588034, 0.04142872244119644, -0.04275931045413017, 0.022653864696621895, -0.03098697029054165, -0.008592456579208374, 0.01365546602755785, -0.012753371149301529, -0.02136838063597679, -0.05579458549618721, -0.060530588030815125, 0.009426894597709179, -0.033400073647499084, 0.01300144661217928, -0.013102932833135128, -0.03576807305216789, 0.05683199688792229, -0.01474925596266985, 0.03367070108652115, 0.05196068435907364, 0.029070017859339714, 0.032407768070697784, 0.036895692348480225, 0.07645256817340851, 0.026183312758803368, -0.012099351733922958, 0.010954818688333035, -0.03592593967914581, -0.0008703808998689055, -0.021481141448020935, 0.0482620932161808, 0.0018394284415990114, 0.011366399005055428, -0.006624761503189802, 0.008947656489908695, -0.0169819425791502, -0.02498803660273552, 0.004352609161287546, 0.010802590288221836, 0.01498605590313673, -0.03168609365820885, -0.036196570843458176, 0.053674664348363876, -0.011355123482644558, 0.03227245435118675, 0.033219654113054276, -0.0032249903306365013, -0.030220188200473785, -0.08294764906167984, 0.016835350543260574, 0.0036337522324174643, -0.009133713319897652, -0.002097371267154813, -0.03775268420577049, 0.004392075818032026, 0.006038399878889322, 0.05209599807858467, -0.014794360846281052, 0.02629607543349266, -0.0011924570426344872, 0.024424226954579353, -0.012257218360900879, 0.06247009336948395, -0.013553979806602001, -0.029227884486317635, 0.012674437835812569, 0.029092568904161453, -0.04476647451519966, -0.026544149965047836, -0.003887466387823224, 0.020703084766864777, 1.0097915946971625e-05, -0.013926094397902489, -0.07956479489803314, 0.008259808644652367, 0.03353538736701012, -0.0321822464466095, -0.018357636407017708, 0.018267426639795303, -0.022856837138533592, -0.044879235327243805, -0.02446933276951313, -0.032700952142477036, 0.024379123002290726, -0.0015927618369460106, -0.06612357497215271, -0.0033631236292421818, 0.0016040380578488111, -0.0005504190339706838, -0.0430975966155529, -0.011366399005055428, -0.016079846769571304, 0.019541636109352112, 0.008147046901285648, 0.004834666382521391, 0.01322697103023529, -0.005452037788927555, -0.030738893896341324, 0.03227245435118675, -0.03310689330101013, 0.00027538571157492697, -0.026769675314426422, 0.021402208134531975, 0.00661912327632308, 0.011772342026233673, -0.02697264589369297, 0.026025446131825447, -0.019158245995640755, 0.035880837589502335, -0.021086474880576134, 0.02121051214635372, 0.002369409427046776, -0.002166437916457653, -0.006590933073312044, 0.025912683457136154, -0.032385218888521194, -0.0047472757287323475, -0.018357636407017708, -0.016373027116060257, 0.0022073141299188137, -0.023274056613445282, -0.0032024378888309, -0.0005222285399213433, 0.03682803735136986, -0.023409370332956314, -0.01732022687792778, 0.040323656052351, -0.01381333265453577, -0.004606323316693306, 0.01573028415441513, 0.00838384684175253, 0.0070363422855734825, 0.0430975966155529, 0.021165408194065094, -0.0018478856654837728, -0.04129340872168541, -0.008603733032941818, 0.03617401793599129, 0.03502384573221207, 0.027694322168827057, 0.018177218735218048, -0.011090132407844067, -0.02598034217953682, 0.026025446131825447, 0.02611565589904785, -0.05146453157067299, -0.009404342621564865, 0.006940494757145643, 0.01373439934104681, -0.03261074051260948, -0.020026512444019318, -0.009004037827253342, -0.020173104479908943, 0.06044037640094757, -0.03540723770856857, 0.014794360846281052, -0.01940632238984108, 0.01322697103023529, -0.010531960986554623, 0.03078399784862995, 0.008118856698274612, 0.007712913677096367, -0.014839465729892254, -0.025732265785336494, -0.0063935997895896435, -0.0238378643989563, 0.022371960803866386, 0.019575465470552444, 0.007769295014441013, -0.004707809071987867, 0.03342262655496597, -0.020590322092175484, -0.010188037529587746, -0.003664761781692505, -0.05241173133254051, -0.04478902742266655, -0.03533957898616791, -0.021278170868754387, -0.016395580023527145, -0.018098285421729088, 0.006173714064061642, -0.008677028119564056, -0.02175177074968815, 0.013711846433579922, 0.011659580282866955, -0.00858118012547493, 0.003808533074334264, -0.01904548518359661, -0.003185523673892021, 0.03718887269496918, -0.014873294159770012, 0.0030163808260113, -0.03883519768714905, -0.01789531297981739, -0.003532266477122903, 0.0028824759647250175, -0.003422323614358902, 0.04699916020035744, 0.01821104623377323, -0.010374094359576702, -0.005795961711555719, -0.04514986276626587, 0.03800075873732567, 0.010092189535498619, 0.045375388115644455, 0.022360684350132942, 0.016373027116060257, 0.021864531561732292, 0.03432472050189972, -0.013756951317191124, 0.02566460892558098, -0.011546818539500237, 0.0003588999679777771, -0.037369292229413986, -0.011873828247189522, 0.052682358771562576, 0.03182140737771988, 0.02961127460002899, 0.00314323790371418, 0.0009070285013876855, 0.011873828247189522, -0.024446779862046242, -0.04659321531653404, 0.02961127460002899, -0.0016998855862766504, -0.005088380537927151, 0.0019888379611074924, -0.007228037808090448, 0.01506498921662569, -0.0415189303457737, -0.022845560684800148, -0.021109027788043022, -0.02008289471268654, 0.022574931383132935, -0.030716340988874435, 0.02897980809211731, -0.006991237867623568, 0.04584898799657822, -0.04943481460213661, -0.029769141227006912, -0.02498803660273552, 0.028731731697916985, -0.005322361830621958, -0.019857369363307953, 0.021774321794509888, -0.01732022687792778, 0.005965104326605797, -0.004299047403037548, 0.006822094786912203, 0.04713447391986847, -0.02832578867673874, 0.004496380686759949, -0.021300721913576126, 0.020545218139886856, -0.0016773332608863711, -0.007244952023029327, -0.031392913311719894, 0.020443731918931007, -0.0019691046327352524, 0.018741028383374214, -0.006585294846445322, -0.08781896531581879, -0.03664761781692505, -0.016632379963994026, 0.011242360807955265, 0.02647649310529232, 0.011219808831810951, 0.009658056311309338, -0.011512990109622478, -0.019552912563085556, -0.019541636109352112, -0.013012723065912724, -0.04907397925853729, -0.022428341209888458, -0.03642209246754646, -0.022789180278778076, 0.02480761706829071, 0.03328731283545494, -0.05579458549618721, 0.014918399043381214, 0.01040792278945446, -0.02029714174568653, 0.018684646114706993, -0.02345447428524494, 0.001277733244933188, -0.017940418794751167, -0.03824883699417114, 0.019338665530085564, 0.011794894933700562, 0.00031326664611697197, 0.03430217131972313, -0.006044037640094757, 0.009956875815987587, 0.026521598920226097, -0.07185187935829163, -0.0022030856925994158, 0.040188342332839966, 0.006038399878889322, -0.014952227473258972, -0.005404113791882992, -0.007532494608312845, -0.012099351733922958, -0.003551999805495143, 0.024559540674090385, -0.004259580746293068, 0.010734932497143745, -0.05141942575573921, 0.009962514042854309, 0.0016054474981501698, 0.00607222830876708, -0.0124150849878788, -0.023612340912222862, 0.005350552033632994, -0.011236723512411118, 0.0012319236993789673, 0.02861896902322769, 0.02681477926671505, 0.017308952286839485, 0.0030755808111280203, 0.01174979005008936, 0.004693713970482349, 0.0526372529566288, -0.0038169901818037033, -0.03229500725865364, -0.030738893896341324, -0.008299275301396847, 0.02611565589904785, -0.04066194221377373, 0.0001999761734623462, 0.003814171301200986, 0.03685058653354645, 0.019767161458730698, 0.0012664570240303874, 0.023364264518022537, -0.008823618292808533, -0.03599359840154648, -0.0075775994919240475, -0.0037493330892175436, 0.019778436049818993, 0.0034335998352617025, -0.027694322168827057, 0.036219120025634766, 0.008851809427142143, -0.0009042094461619854, 0.0010465714149177074, 0.04916418716311455, -0.003551999805495143, 0.01888761855661869, 0.012212113477289677, -0.023386817425489426, -0.009398704394698143, -0.02764921821653843, 0.005063009448349476, -0.006754437927156687, 0.007087085396051407, -0.044383082538843155, -0.009725714102387428, 0.026093102991580963, -0.012426361441612244, 0.03975984454154968, -0.004876952152699232, 0.012121903710067272, 0.05511801689863205, 0.01389226596802473, -0.05259215086698532, -0.017681065946817398, 0.026228416711091995, -0.030400607734918594, -0.028551312163472176, 0.021402208134531975, 0.03680548444390297, 0.055208224803209305, 0.01966567523777485, -0.03315199911594391, -0.029521064832806587, 0.03664761781692505, -0.02981424517929554, -0.017929142341017723, 0.051374319940805435, -0.008225980214774609, 0.028709178790450096, -0.0273109320551157, 0.064364492893219, 0.019789712503552437, -0.01938376948237419, 0.014715427532792091, 0.007650894578546286, -0.002721790224313736, 0.013328456319868565, -0.027716875076293945, 0.002675276016816497, -0.016418132930994034, -0.016451960429549217, 0.03116738796234131, 0.006342856679111719, 0.028754284605383873, 0.013587809167802334, 0.017173636704683304, 0.018797408789396286, -0.002821866422891617, 0.005745218601077795, 0.008045561611652374, -0.025732265785336494, 0.024582093581557274, -0.007357713766396046, 0.00842331349849701, -0.04546559602022171, 0.06477043777704239, 0.016215160489082336, -0.0024046474136412144, 8.360237552551553e-05, 0.004135542549192905, 0.024852722883224487, -0.01040792278945446, 0.011738513596355915, -0.0007738285348750651, -0.021379655227065086, 0.005133485421538353, -0.009415618143975735, 0.003529447363689542, -0.010740570724010468, 0.01458011381328106, 0.01765851303935051, -0.018684646114706993, 0.00031538092298433185, 0.02764921821653843, -0.008186513558030128, 0.0032306283246725798, 0.03685058653354645, 0.017590856179594994, -0.009849751368165016, -0.04048152267932892, -0.02713051252067089, -0.0010980189545080066, 0.012505294755101204, 0.0329715795814991, 0.004569675773382187, 0.0033941331785172224, 0.014230551198124886, 0.006094780750572681, 0.00873904675245285, 0.008834894746541977, 0.002611847361549735, -0.0065796566195786, -0.029746588319540024, 0.048036567866802216, 0.015797942876815796, -0.016553446650505066, 0.032903920859098434, 0.03403154015541077, 0.000722380937077105, -0.007718551903963089, 0.00982156116515398, -0.00162518082652241, -0.008366933092474937, -0.014940951950848103, -0.023228950798511505, 0.041203197091817856, -0.01233615167438984, -0.008062475360929966, -0.023251503705978394, 0.009534018114209175, -0.03842925652861595, 0.03326475992798805, -0.01044738944619894, -0.005237790290266275, 0.006309028249233961, 0.003050209255889058, 0.024717407301068306, 0.0030953141395002604, 0.00962422788143158, 0.008434589952230453, 0.04411245509982109, -0.009652418084442616, -0.02029714174568653, 0.02154879830777645, 0.017726169899106026, 0.04708936810493469, 0.03211458772420883, 0.029408302158117294, -0.020252037793397903, -0.0018422475550323725, -0.02079329453408718, -0.026047999039292336, -0.02246217057108879, 0.010430475696921349, -0.009951237589120865, -0.019440151751041412, -0.01532434206455946, 0.00143982854206115, -0.0015645712846890092, 0.02999466471374035, 0.017230018973350525, 0.05444144457578659, -0.005198323633521795, 0.011964037083089352, -0.0013848571106791496, -0.03168609365820885, 0.0180757325142622, 0.00748739019036293, -0.019158245995640755, -0.009364875964820385, -0.041203197091817856, -0.006839009001851082, 0.011039390228688717, 0.022732798010110855, 0.005694475956261158, 0.03385112062096596, 0.016000913456082344, -0.013328456319868565, 0.014715427532792091, -0.003399771172553301, 0.012257218360900879, -0.005074285436421633, 0.06386833637952805, 0.0009126666118390858, 0.002415923634544015, -0.0019691046327352524, 0.029363198205828667, 0.025867579504847527, 0.04808167368173599, -0.047720834612846375, 0.05480228364467621, 0.0004450571141205728, -0.003140418790280819, -0.02478506602346897, -0.046728529036045074, 0.016970666125416756, 0.009066056460142136, -0.016373027116060257, 0.05480228364467621, 0.04929950088262558, -0.02564205601811409, 0.012155733071267605, -0.005020723678171635, -0.0075437710620462894, 0.00811321847140789, -8.94607073860243e-05, 0.0026992380153387785, 0.035858284682035446, 0.019789712503552437, -0.007679085247218609, 0.0023708189837634563, 0.0419023223221302, -0.0075606852769851685, -0.02399573288857937, 0.008925104513764381, 0.001079695182852447, -0.03842925652861595, 0.006624761503189802, 0.007989180274307728, 0.016000913456082344, -0.005161676090210676, 0.019473979249596596, 0.02256365492939949, -0.003808533074334264, 0.017590856179594994, 0.006511999759823084, 0.008631923235952854, 0.036399539560079575, -0.009026589803397655, 0.045217521488666534, 0.011591923423111439, -0.012640608474612236, 0.021266894415020943, 0.002680914243683219, -0.0028021330945193768, -0.01940632238984108, -0.0041552758775651455, -0.0075945137068629265, -0.026363732293248177, 0.012031694874167442, -0.022371960803866386, -0.03876753896474838, 0.001336228451691568, -0.024582093581557274, -0.014264380559325218, -0.02882194146513939, -0.04244357720017433, 0.014873294159770012, 0.05200578644871712, 0.0381360724568367, 0.019552912563085556, -0.018120836466550827, 0.019417598843574524, 0.01946270279586315, 0.00508556142449379, 0.026837332174181938, 0.008400761522352695, -0.029385751113295555, 0.01640685647726059, 0.05656136944890022, -0.008767237886786461, 0.04226315766572952, 0.005392837803810835, -0.024536989629268646, -0.005897447466850281, 0.019654398784041405, -0.01849295198917389, -0.004487923346459866, -0.032227352261543274, 0.0034561522770673037, -0.0021607999224215746, -0.010588342323899269, 0.0031967998947948217, 0.01125363726168871, 0.0018619808834046125, -0.014117789454758167, -0.009708799421787262, 0.02767176926136017, -0.055884797126054764, -0.00316297123208642, -0.0052406094036996365, -0.021920913830399513, 0.010701104067265987, -0.015313065610826015, -0.01532434206455946, 0.003053028369322419, 0.0227440744638443, -0.02798750251531601, 0.02190963737666607, -0.005497142672538757, 0.03696335107088089, -0.0072505902498960495, -0.02316129393875599, -0.019947579130530357, -0.004053790122270584, 0.016598550602793694, 0.0012530665844678879, 0.01389226596802473, 0.035384684801101685, 0.021030094474554062, 0.0024807618465274572, 0.01017112284898758, -0.008355656638741493, -0.03863222524523735, -0.026566702872514725, 0.02298087440431118, 0.00157161895185709, 0.004719085525721312, 0.020105445757508278, -0.024604646489024162, -0.02496548369526863, -0.013463770970702171, 0.011084494180977345, -0.016124950721859932, 0.01849295198917389, 0.004411809146404266, 0.009173179976642132, 0.016079846769571304, -0.004967161454260349, 0.015933256596326828, 0.004118628334254026, -0.026747122406959534, 0.02365744672715664, -0.006337218917906284, 0.025055693462491035, -0.009285942651331425, 0.0036703997757285833, 0.021187961101531982, -0.012967618182301521, -0.006748799700289965, 0.04424776881933212, 0.002757028443738818, -0.03301668539643288, -0.012313599698245525, 0.015155198983848095, 0.012381256558001041, 0.008615009486675262, 0.005674742627888918, 0.0030614854767918587, -0.008603733032941818, -0.0028655617497861385, 0.0023130285553634167, -0.011603198945522308, 0.012629332952201366, 0.01174979005008936, -0.00858118012547493, -0.018695922568440437, -0.0019846095237880945, -0.023183846846222878, -0.011862551793456078, -0.002442704513669014, -0.009212646633386612, 0.0013531427830457687, 0.010176761075854301, -0.011163427494466305, -0.015121370553970337, -0.026837332174181938, -0.0256195031106472, -0.009144989773631096, -0.00819215178489685, 0.0007435237639583647, 0.012245941907167435, 0.034054093062877655, -0.014061409048736095, -0.0027626664377748966, -0.0015307427383959293, 0.026047999039292336, 0.026386283338069916, 0.01729767583310604, 0.02216898836195469, -0.043864376842975616, -0.015448380261659622, -0.035722970962524414, 0.06490574777126312, 0.0007456380408257246, 0.005919999442994595, 0.00496998056769371, 0.02431146614253521, -0.04907397925853729, 7.49690443626605e-05, 0.011941485106945038, -0.008276723325252533, 0.001194571377709508, -0.013926094397902489, 0.023702550679445267, 0.014129065908491611, 0.007656532805413008, 0.0070363422855734825, -0.008564266376197338, -0.023770207539200783, -0.005003809463232756, 0.053223617374897, -0.00308403791859746, 0.008389485068619251, -0.011033752001821995, 0.02087222784757614, -0.02929554134607315, -0.05281767249107361, -0.025055693462491035, -0.002239733235910535, -0.008158323355019093, -0.017534475773572922, 0.016451960429549217, 0.024424226954579353, 0.007132190279662609, -0.03845180571079254, -0.009477637708187103, 0.034572798758745193, -0.03680548444390297, -0.054666969925165176, 0.0061455233953893185, 0.03380601853132248, 0.0012481332523748279, 0.009150628000497818, 0.005998933222144842, 0.0015391999622806907, 0.012471466325223446, 0.007932799868285656, 0.02516845613718033, 0.0050263614393770695, -0.013508875854313374, 0.017196189612150192, -0.004307504743337631, 0.018470399081707, 0.012358703650534153, -0.012945066206157207, 0.011591923423111439, 0.004290590062737465, 0.006850285455584526, 0.0003795142692979425, -0.0430975966155529, -0.010853332467377186, 0.0006166666280478239, 0.02146986499428749, 0.0248301699757576, -0.04413500800728798, -0.006466894876211882, 0.006038399878889322, -0.0266118086874485, 0.019519085064530373, -0.01821104623377323, -0.007058894727379084, -0.0022256379015743732, 0.01682407595217228, -0.004059428349137306, 0.01516647543758154, -0.022890664637088776, 0.03434727340936661, 0.005218056961894035, -0.03281371295452118, 0.006731885485351086, -0.008671389892697334, 0.03349028527736664, -0.016609827056527138, -0.007261866237968206, 0.013689294457435608, 0.037549711763858795, -0.029927007853984833, -0.016260266304016113, 0.012821028009057045, 0.01465904712677002, 0.012324875220656395, 0.015313065610826015, 0.012347428128123283, -0.01330590434372425, -0.004307504743337631, -0.001265752362087369, 0.05272746458649635, -0.00428495230153203, -0.026589255779981613, -0.032858818769454956, 0.007853866554796696, -0.02629607543349266, 0.00827108509838581, -0.023206397891044617, -0.03915093094110489, -0.015211580321192741, 0.019034208729863167, -0.005153218749910593, -0.007340799551457167, 0.020770741626620293, 0.019857369363307953, -0.022439617663621902, -0.0673414021730423, 0.026363732293248177, -0.0034927998203784227, -0.02514590322971344, -0.043187808245420456, 0.005015085451304913, 0.02762666530907154, 0.00030762856476940215, 0.0021650283597409725, 0.013926094397902489, 0.0180757325142622, -0.03427961841225624, -0.005000990349799395, 0.019992684945464134, -0.015335618518292904, -0.02042117901146412, -0.0033884949516505003, 0.031032074242830276, 0.004034056793898344, -0.016000913456082344, -0.010334627702832222, -0.0003971333208028227, 0.0015885332832112908, 0.00966369453817606, 0.013249523006379604, 0.0065796566195786, -0.04124830290675163, -0.01580921746790409, -0.0008407809073105454, 0.012708266265690327, 0.013328456319868565, 0.003853637957945466, -0.020906055346131325, -0.06707077473402023, 0.003481523599475622, 0.015594970434904099, 0.011349485255777836, 0.0023835045285522938, -0.0014799998607486486, 0.03874498978257179, -0.01851550303399563, -0.015313065610826015, -0.0010099237551912665, 0.0012439046986401081, 0.002883885521441698, -0.01183999888598919, 0.012200837023556232, -0.028844494372606277, 0.03403154015541077, -0.022157713770866394, -0.011011199094355106, 0.03098697029054165, -0.029904454946517944, -0.0010042856447398663, 0.012268494814634323, -0.009139351546764374, 0.0230372566729784, 0.006230094935745001, -0.03646719828248024, 0.013125484809279442, 0.003444876056164503, -0.011242360807955265, 0.03098697029054165, 0.008124494925141335, -0.007882056757807732, -0.023702550679445267, 0.029340645298361778, 0.013362284749746323, -0.043345674872398376, 0.008214704692363739, 0.026025446131825447, 0.012245941907167435, -0.023905523121356964, -0.004589409101754427, -0.035204265266656876, -0.01408396102488041, 0.008163961581885815, -0.0337609127163887, 0.029250435531139374, 0.003253180766478181, 0.051870472729206085, -0.026047999039292336, 0.02516845613718033, -0.034211959689855576, -0.014354589395225048, -0.01190765667706728, 0.0009993523126468062, -0.016700036823749542, 0.003399771172553301, -0.020906055346131325, -0.01591070368885994, 0.0030614854767918587, -0.0030953141395002604, -0.01198658999055624, -0.014704151079058647, -0.014726703986525536, 0.01646323688328266, 0.005748037714511156, 0.02997211180627346, 0.005251885391771793, 0.01666620932519436, 0.0002353904565097764, -0.004502018913626671, -0.001231218921020627, 0.016440683975815773, -0.03292647376656532, 0.02029714174568653, -0.00148845708463341, 0.016339199617505074, -0.030220188200473785, -0.01763596013188362, -0.004561218898743391, 0.03418940678238869, -0.005970742553472519, 0.007160380482673645, 0.06468022614717484, 0.015290513634681702, 0.0007163904374465346, 0.016203884035348892, -0.013835884630680084, 0.01567390374839306, -0.018120836466550827, 0.01896655187010765, -0.019034208729863167, -0.05096837878227234, -0.0029684570617973804, -0.02812281809747219, 0.01813211292028427, 0.006602209061384201, -0.00025688568712212145, -0.009652418084442616, -0.029521064832806587, -0.0019395046401768923, -0.009060418233275414, 0.029205331578850746, 0.031866513192653656, -0.029002360999584198, -0.022473447024822235, 0.009460723027586937, -0.03592593967914581, -0.0008421904058195651, 0.022360684350132942, 0.0015941713936626911, -0.017184913158416748, 0.00023856188636273146, -0.03874498978257179, 0.012877408415079117, -0.0002660476020537317, -0.03667017072439194, -0.021932188421487808, -0.010949180461466312, -0.01155809499323368, 0.03448258712887764, 0.023567236959934235, -0.0008132951916195452, 0.043210361152887344, -0.053404033184051514, -0.0031122283544391394, -0.03369325399398804, 0.008175238035619259, -0.02830323576927185, -0.02546163648366928, -0.014264380559325218, -0.021639008074998856, -0.019868645817041397, 0.01439969427883625, -0.02530376985669136, -0.02516845613718033, -0.015640074387192726, 0.02139093168079853, -0.006545828189700842, -0.01924845576286316, -0.0037690664175897837, -0.019417598843574524, 0.00012368570605758578, -0.017985522747039795, -0.0035435426980257034, 0.03443748503923416, 0.03143801540136337, -0.004048152361065149, 0.0015941713936626911, 0.011783618479967117, -0.00729005690664053, 0.006686780601739883, 0.03599359840154648, -0.02963382750749588, 0.0009112571133300662, 0.018865065649151802, -0.04623237997293472, 0.0052406094036996365, -0.008000456728041172, 0.005418209359049797, -0.0035632760263979435, 0.003740875981748104, -0.0022679236717522144, -0.006449980661273003, 0.0165872760117054, 0.015155198983848095, 0.0020254855044186115, 0.0015758475055918097, -0.012460189871490002, 0.01932738907635212, 0.007273142226040363, -0.05710262432694435, -0.00577904749661684, -0.020105445757508278, -0.0266118086874485, -0.004096075892448425, 0.005542247090488672, 0.03779779002070427, -0.008840532973408699, 0.0011614476097747684, -0.026589255779981613, -0.04884845390915871, 0.00752685684710741, -0.006263923365622759, -0.011123960837721825, 0.004000228364020586, -0.001136076170951128, 0.03518171235918999, -0.0058805327862501144, -0.01713980920612812, 0.03897051140666008, -0.03716632351279259, -0.04183466359972954, 0.005023542791604996, -0.02295832335948944, -0.010949180461466312, 0.0035209902562201023, -0.0076114279218018055, -0.03159588575363159, -0.00986102782189846, 0.029024912044405937, 0.017726169899106026, 0.014704151079058647, 0.027243275195360184, 0.0019691046327352524, 0.01601218990981579, -0.022349407896399498, 0.01666620932519436, 0.0020283046178519726, -0.004623237997293472, -0.005618361756205559, 0.013170589692890644, 0.018380189314484596, -0.008197790011763573, 0.03403154015541077, -0.0036027426831424236, 0.04817188158631325, -0.025732265785336494, 0.019936304539442062, 0.01920335181057453, -0.009483275935053825, 0.026769675314426422, 0.01773744635283947, -0.0058523425832390785, 0.013260799460113049, 0.0101316561922431, 0.025890132412314415, 0.04907397925853729, -0.012200837023556232, 0.0069686854258179665, 0.017568303272128105, -0.010768760927021503, -0.004036875907331705, -0.027017751708626747, 0.01684662699699402, 0.014072684571146965, 0.0017280761385336518, 0.007171656936407089, -0.007380266208201647, -0.07442285120487213, 0.01692556031048298, -0.0201618280261755, 0.0381360724568367, -0.01875230297446251, -0.0124150849878788, -0.001534971292130649, 0.0030051046051084995]], "input": ["RECOMMENDATION:A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.", "MAXIMUM WEIGHT:The term \"Maximum Weight\" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.", "MAXIMUM DIMENSIONS:Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.", "BAG:A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.", "PERSONAL BAG:A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.", "CARRY-ON BAG:A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.", "56 CM:The maximum length for a carry-on bag on El Al flights is 56 cm.", "45 CM:The maximum width for a carry-on bag on El Al flights is 45 cm.", "25 CM:The maximum depth for a carry-on bag on El Al flights is 25 cm.", "18X38X30 CM:The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.", "115 CM:The total maximum dimension for a carry-on bag on El Al flights is 115 cm.", "DUTY-FREE ITEMS:Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.", "OVERSIZED ITEMS:Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.", "EMERGENCY EXIT ROW:The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.", "SERVICE CENTER:El Al's service center is where passengers can coordinate the transport of unusual items.", "CHECKED BAG:A checked bag is a type of luggage that is stored in the aircraft's cargo hold during the flight."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-f43361a5a65d8a45cedc59b7e54b5019 b/cache/text_embedding/embedding-f43361a5a65d8a45cedc59b7e54b5019 deleted file mode 100644 index 95a3897ef15fda4e75f4247b80b9ee59593eaf81..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-f43361a5a65d8a45cedc59b7e54b5019 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.04746547341346741, 0.04167912155389786, 0.056732334196567535, 0.03946029767394066, -0.06926217675209045, -0.010419780388474464, -0.019806284457445145, 0.05255572125315666, 0.018533721566200256, 0.03308660909533501, -0.041265811771154404, -0.011888121254742146, 0.021241994574666023, 0.05059793218970299, -0.042027171701192856, -0.018566351383924484, 0.016206130385398865, -0.012692989781498909, -0.017717977985739708, -0.012214419431984425, 0.05842908099293709, 0.045333657413721085, -0.04659534618258476, -0.01832706667482853, 0.007069788407534361, -0.015216359868645668, 0.024059034883975983, 0.014900938607752323, 0.05177260562777519, 0.004190209321677685, 0.03628433123230934, -0.031563885509967804, 0.05655830726027489, 0.024668123573064804, -0.02521195262670517, -0.001169914030469954, -0.03289083018898964, -0.004456685855984688, -0.014520257711410522, -0.017761483788490295, -0.019175441935658455, -0.0209809560328722, 0.046073269098997116, -0.01941472664475441, -0.021785825490951538, 0.09780236333608627, -0.05303429067134857, -0.018392326310276985, 0.018370574340224266, 0.01274737250059843, 0.012323184870183468, 0.014509381726384163, 0.026408379897475243, -0.08744784444570541, -0.002243298338726163, 0.002202511066570878, 0.011931627988815308, 0.023580463603138924, 0.013302079401910305, -0.018849143758416176, -0.04790053516626358, -0.01345435157418251, 0.001978181302547455, 0.008913371711969376, -0.009691048413515091, -0.005644954275339842, 0.028387919068336487, 0.01907755248248577, -0.03160739317536354, -0.031672652810811996, 0.018751254305243492, 0.009506146423518658, 0.0025600790977478027, -0.006803311873227358, -0.03223823383450508, -0.006776120513677597, -0.023254165425896645, 0.002290883334353566, 0.04990183189511299, -0.015858080238103867, -0.03556647524237633, 0.07100243121385574, -0.003804089967161417, -0.01164883654564619, -0.013508734293282032, 0.06843554973602295, -0.02832266129553318, 0.017609212547540665, -0.00822270754724741, -0.0233194250613451, -0.0027844090946018696, 0.01723940670490265, -0.017739729955792427, 0.0469869002699852, 0.009908580221235752, -0.0038829452823847532, 0.011442180722951889, -0.02895350381731987, -0.020067322999238968, 0.05795051157474518, -0.007075226865708828, -0.009739993140101433, -0.00010791623935801908, 0.04537716507911682, 0.021013585850596428, -0.06934918463230133, 0.02597331441938877, -0.007907286286354065, 0.05181610956788063, -0.0013670523185282946, 0.050815463066101074, -0.07178554683923721, 0.037633027881383896, 0.057384930551052094, -0.03721971809864044, 0.004929817747324705, 0.0063301799818873405, -0.031194081529974937, -0.003023694269359112, 0.004290817771106958, -0.0014697002479806542, 0.00954965315759182, 0.019632259383797646, -0.044224247336387634, 0.01299753412604332, 0.026082081720232964, 0.02329767309129238, 0.031085316091775894, -0.03097655065357685, -0.02736552059650421, 0.01922982558608055, -0.04794404283165932, 0.055035583674907684, -0.01337821502238512, 0.0406784750521183, 0.0025668770540505648, -0.009207040071487427, -0.01095273345708847, 0.01751132309436798, -0.0016899514012038708, 0.0037415495608001947, 0.0028714218642562628, 0.006471575703471899, -0.007488537579774857, -0.041070032864809036, 0.0140851940959692, -0.01877300813794136, 0.01782674342393875, 0.05242520198225975, -0.020078198984265327, -0.0056830220855772495, -0.01517285406589508, -0.010196810588240623, 0.01783761940896511, -0.006313865073025227, -0.0016831534449011087, 0.00014224550977814943, 0.04659534618258476, 0.015749312937259674, -0.01752219907939434, 0.006341056432574987, 0.0167717132717371, -0.016249636188149452, -0.026495391502976418, 0.06730438768863678, -0.019523492082953453, -0.020437126979231834, 0.025864548981189728, -0.04929273948073387, -0.029954150319099426, -0.006351932883262634, 0.013769772835075855, -0.002443155739456415, -0.021176734939217567, -0.07226411253213882, -0.04598625376820564, 0.02801811508834362, -0.014280973002314568, -0.00395636260509491, 0.0007566033164039254, 0.015074964612722397, 0.07822448760271072, -0.025168446823954582, 0.024059034883975983, -0.002781689865514636, 0.033282388001680374, -0.009870512410998344, -0.028997009620070457, 0.016543304547667503, 0.06321478635072708, 0.01244282815605402, -0.007706069387495518, -0.00032918702345341444, 0.045638203620910645, -0.02209036983549595, -0.00014003619435243309, -0.030280448496341705, -0.023841502144932747, 0.04842261224985123, -0.05729791522026062, 0.01831619068980217, -0.040482696145772934, 0.026973962783813477, 0.003940047696232796, -0.05520961061120033, 0.010854844935238361, -0.0022147472482174635, -0.0013126693665981293, 0.04333236441016197, 0.017489569261670113, 0.03674114868044853, -0.02236228436231613, -0.0029720303136855364, -0.03582751378417015, 0.01676083728671074, -0.02501617558300495, -0.008880741894245148, 0.01831619068980217, 0.02616909332573414, -0.013900292105972767, -0.023536957800388336, 0.010044538415968418, -0.01615174673497677, -0.02819214202463627, -0.015781942754983902, -0.027517791837453842, -0.027322012931108475, -0.016532428562641144, -0.032499272376298904, -0.02880123071372509, -0.02536422573029995, -0.003080796217545867, 0.008831797167658806, -0.026691170409321785, 0.008532690815627575, 0.03125934302806854, 0.020415373146533966, -0.04004763439297676, -0.04785703122615814, 0.039373282343149185, 0.025472991168498993, -0.03678465262055397, 0.021100599318742752, -0.00838585663586855, -0.00379321351647377, 0.009957524947822094, -0.011540070176124573, 0.037023939192295074, 0.008771976456046104, 0.01720677688717842, 0.022732088342308998, 0.028409672901034355, 0.01723940670490265, -0.05616674944758415, -0.030106421560049057, 0.017250284552574158, -0.02301488071680069, 0.02867071144282818, 0.024972667917609215, -0.042962562292814255, -0.015085840597748756, 0.008445678278803825, -0.03038921393454075, -0.019164565950632095, -0.027104482054710388, -0.08936212956905365, -0.0012521683238446712, -0.03948204964399338, 0.025908054783940315, 0.06512906402349472, -0.030628498643636703, 0.055166102945804596, 0.007977984845638275, -0.042179446667432785, -0.0629972517490387, 0.006558588240295649, -0.00266340677626431, -0.011202896013855934, -0.043593402951955795, -0.02240579202771187, -0.03493563085794449, 0.0023670196533203125, 0.016010351479053497, -0.019599629566073418, -0.016401909291744232, -0.0013554960023611784, 0.034370049834251404, 0.012268802151083946, -0.0024390770122408867, 0.04833560064435005, 0.05803752690553665, 0.013606623746454716, -0.029040515422821045, 0.0181747954338789, 0.049988843500614166, -0.023863255977630615, -0.015847202390432358, -0.018827389925718307, -0.024820396676659584, -0.006765243597328663, 0.014585517346858978, 0.0031786856707185507, -0.0054464563727378845, -0.07787644118070602, -0.0432453528046608, -0.01844670996069908, 0.007156801410019398, -0.01580369658768177, 0.020415373146533966, -0.009669295512139797, -0.047030407935380936, 0.009745431132614613, -0.09893353283405304, -0.06634724885225296, -0.02301488071680069, -0.009674733504652977, 0.004568171221762896, -0.022133875638246536, 0.04215769097208977, 0.019947679713368416, 0.025385979562997818, 0.010854844935238361, -0.013399967923760414, -0.0034669155720621347, -0.030302200466394424, -0.012595100328326225, -0.04481158405542374, 0.015064087696373463, 0.007722384296357632, 0.04431125894188881, -0.03276031091809273, -0.0060419500805437565, -0.030584992840886116, 0.03130284696817398, -0.04065672308206558, -0.012073023244738579, -0.01912105828523636, 0.025320719927549362, -0.01307367067784071, -0.00046871337690390646, 0.002532887738198042, -0.03972133621573448, 0.007553797215223312, 0.006944707594811916, 0.01880563795566559, -0.007488537579774857, 0.006710860878229141, 0.041548602283000946, -0.007613618392497301, -0.015760190784931183, 0.019610505551099777, 0.004187490325421095, 0.01644541509449482, 0.004127668682485819, -0.056123245507478714, -0.018751254305243492, 0.050162866711616516, 0.04598625376820564, -0.022427543997764587, 0.026495391502976418, -0.043462883681058884, -0.05342584848403931, -0.005797226447612047, 0.028409672901034355, 0.04650833085179329, -0.009544214233756065, -0.03476160764694214, -0.056123245507478714, 0.01612999476492405, 0.019947679713368416, 0.007706069387495518, -0.02877947688102722, 0.02412429451942444, -0.029475579038262367, 0.06378036737442017, -0.029997656121850014, 0.0027925665490329266, 0.008619703352451324, 0.0165976881980896, 0.0007124171243049204, 0.03832913190126419, -0.005764596629887819, 0.001142042805440724, 0.038437895476818085, -0.012790879234671593, 0.03397849202156067, -0.01767447032034397, -0.04450703784823418, 0.051598578691482544, 0.006156154442578554, -0.0146399000659585, -0.019838914275169373, 0.014650776982307434, 0.0559927262365818, -0.02176407165825367, -0.022579817101359367, 0.04785703122615814, -0.01831619068980217, -0.010365397669374943, 0.020567646250128746, -0.03023694083094597, -0.07222060859203339, -0.004943413659930229, 0.02895350381731987, 0.002420042874291539, 0.049684297293424606, 0.03204245865345001, -0.006830503232777119, -0.028561946004629135, -0.02736552059650421, 0.015412138774991035, -0.013595746830105782, 0.031563885509967804, 0.026234352961182594, -0.01755482889711857, 0.007825711742043495, 0.0023425472900271416, 0.027757076546549797, -0.01438973844051361, -0.031977199018001556, 0.024211306124925613, 0.012812632136046886, -0.058951158076524734, 0.08318421989679337, -0.04413723200559616, 0.010006469674408436, 0.024537604302167892, -0.004671498667448759, 0.027322012931108475, 0.009348435327410698, -0.00633561797440052, -0.00984875950962305, -0.022318778559565544, 0.057994019240140915, -0.039199259132146835, 0.0025695962831377983, -0.029366813600063324, 0.0035919963847845793, -0.04433301091194153, -0.010414342395961285, -0.006536835338920355, -0.03758952021598816, 0.0038883837405592203, -0.010387150570750237, -0.04035217687487602, -0.009799814783036709, -0.013345585204660892, 0.07291670888662338, 0.04011289402842522, 0.02616909332573414, 0.0035892771556973457, -0.021644430235028267, -0.02801811508834362, -0.016826096922159195, 0.00184902164619416, -0.04085250198841095, 0.0015580726321786642, -0.060343362390995026, 0.017446063458919525, -0.021067969501018524, 0.037154458463191986, 0.035609979182481766, 0.05568818002939224, 0.02832266129553318, 0.004782984033226967, -0.0034614771138876677, 0.026038574054837227, 0.011398673988878727, -0.001487374771386385, -0.03134635463356972, 0.005612324457615614, -0.026082081720232964, -0.010392589494585991, 0.03349992260336876, -0.028366167098283768, -0.02236228436231613, 0.013595746830105782, -0.05233818665146828, -0.05242520198225975, -0.043615154922008514, 0.0231453999876976, 0.02960609830915928, -0.060343362390995026, -0.0285184383392334, 0.025560004636645317, -0.0056830220855772495, 0.061431024223566055, 0.0026987558230757713, -0.005693899001926184, -0.021078845486044884, -0.006112647708505392, -0.0010122034000232816, -0.0011114523513242602, -0.007303635124117136, 0.03208596259355545, -0.008005175739526749, -0.04707391560077667, -0.010620997287333012, 0.018283560872077942, 0.01039802748709917, -0.02112235315144062, -0.05838557705283165, 0.010550299659371376, 0.004513788037002087, -0.007744137663394213, 0.007727822754532099, 0.03239050880074501, 0.007580988574773073, 0.006118086166679859, -0.019284207373857498, 0.024646369740366936, 0.01282350905239582, 0.012584223411977291, -0.006515081971883774, 0.017641842365264893, -0.01323681976646185, 0.014476751908659935, 0.018598981201648712, -0.052381694316864014, 0.017032751813530922, 0.019349467009305954, -0.01850109174847603, -0.013356462121009827, -0.010680818930268288, -0.02895350381731987, 0.005253396462649107, 0.013106300495564938, -0.04176613688468933, -0.009141780436038971, -0.03117232955992222, 0.011463933624327183, -0.013530487194657326, 0.007385209668427706, 0.0028442302718758583, 0.010256631299853325, -0.03711095079779625, -0.00497060501947999, 0.01970839500427246, 0.012018640525639057, -0.0019741025753319263, 0.0231453999876976, -0.03567523881793022, 0.012018640525639057, -0.02020871825516224, -0.014150453731417656, -0.028213893994688988, 0.027670064941048622, -0.003994430415332317, -0.012149159796535969, -0.0032466643024235964, -0.0011787512339651585, 0.01206214725971222, 0.018424956128001213, 0.008946001529693604, 0.013051916845142841, 0.041374579071998596, 0.026799935847520828, -0.02819214202463627, 0.040286917239427567, 0.011398673988878727, -0.02175319567322731, 0.037502508610486984, 0.004690532572567463, -0.0009313086629845202, -0.018131287768483162, 0.0075211673974990845, -0.025799289345741272, -0.05403493717312813, -0.023210659623146057, -0.003088953671976924, 0.02362396940588951, -0.004573609214276075, -0.002549202647060156, 0.008347788825631142, 0.023863255977630615, 0.0034125326201319695, 0.01111588254570961, -0.049379754811525345, 0.021524786949157715, 0.022449297830462456, -0.0035756814759224653, 0.023885007947683334, -0.008092188276350498, -0.025233706459403038, -0.021100599318742752, 0.024189554154872894, -0.03352167457342148, 0.0045464178547263145, 0.012682112865149975, 0.0013595747295767069, -0.0015947811771184206, -0.02941031940281391, 0.03426128253340721, -0.020741671323776245, -0.005174541380256414, 0.04167912155389786, -0.02584279701113701, 0.00939738005399704, -0.02971486561000347, 0.03611030429601669, 0.018250931054353714, 0.006841380149126053, -0.022427543997764587, 0.036219071596860886, -0.021078845486044884, -0.037502508610486984, -0.0062703583389520645, -0.0017388960113748908, 0.05886414647102356, -0.022732088342308998, 0.052686240524053574, 0.03597978502511978, 0.011050622910261154, -0.04694339632987976, 0.0039672390557825565, 0.008423925377428532, -0.030802525579929352, 0.0027871280908584595, 0.017902879044413567, -0.008097627200186253, -0.028105128556489944, 0.0225580632686615, -0.017783237621188164, -0.014890062622725964, -0.04803105443716049, 0.0068957628682255745, 0.024015527218580246, -0.013128053396940231, 0.000747766112908721, -0.010300138033926487, -0.014705159701406956, -0.03743724897503853, -0.015412138774991035, -0.024515850469470024, 0.037350237369537354, 0.011996887624263763, -0.026386626064777374, -0.00158390449360013, -0.028279153630137444, 0.03630608320236206, 0.035131409764289856, 0.03023694083094597, 0.01509671751409769, -0.020121706649661064, 0.021568292751908302, 0.0021263747476041317, 0.010066291317343712, 0.017761483788490295, 0.045464176684617996, -0.02616909332573414, 0.05681934580206871, 0.03537069633603096, -0.02551649883389473, 0.014607270248234272, 0.01064818911254406, -0.00022263036225922406, 0.023080140352249146, 0.020284853875637054, -0.007080665323883295, 0.0469869002699852, 0.01337821502238512, 0.03917750343680382, 0.014607270248234272, -0.003282013349235058, -0.028866490349173546, 0.02725675329566002, 0.02925804816186428, -0.00963666569441557, 0.018109535798430443, -0.016499798744916916, 0.04365866258740425, 0.0030264132656157017, 0.019338591024279594, -0.04004763439297676, -0.027952855452895164, -0.002636215416714549, 0.008260776288807392, 0.031215835362672806, -0.0242548119276762, 0.0013534566387534142, 0.0013888055691495538, -0.004804736934602261, 0.0011372842127457261, 0.005147350020706654, -0.01126815564930439, 0.006525958422571421, -0.009038452990353107, -0.022579817101359367, -0.049075208604335785, 0.0077713290229439735, 0.006825065240263939, 0.006259481888264418, 0.02347169816493988, 0.020741671323776245, -0.01924070157110691, 0.03182492405176163, -0.004347919952124357, 0.010958172380924225, 0.004736758302897215, -0.015325126238167286, 0.007842026650905609, -0.001335102366283536, -0.004834647756069899, -0.03761127591133118, -0.025168446823954582, 0.02662591077387333, -0.007934478111565113, -0.02020871825516224, 0.023689229041337967, -0.0108113382011652, -0.01198601070791483, 0.0027844090946018696, 0.018044276162981987, -0.00939738005399704, -0.016630318015813828, -0.015477398410439491, 0.042353469878435135, 0.0010169618763029575, -0.007260128855705261, 0.039656076580286026, 0.01671733148396015, 0.034174270927906036, -0.04054795578122139, 0.012508087791502476, 0.005780911538749933, -0.03352167457342148, 0.0051718223839998245, 0.012595100328326225, 0.005305060651153326, -0.03276031091809273, 0.02381974831223488, 0.0009727756842039526, -0.02584279701113701, 0.019055798649787903, -0.006661916151642799, 0.030084669589996338, -0.028561946004629135, -0.007194869220256805, -0.014966198243200779, -0.010136988945305347, 0.022427543997764587, -0.011376921087503433, -0.009152657352387905, -0.016695577651262283, -0.018087781965732574, 0.03850315511226654, -0.0024540324229747057, 0.02599506825208664, -0.0060419500805437565, 0.032151222229003906, 0.007091541774570942, 0.005334971006959677, -0.030280448496341705, 0.008744784630835056, 0.0017756045563146472, -0.016641194000840187, -0.02141602151095867, -0.01768534816801548, -0.038111597299575806, 0.004448528401553631, -0.0375242605805397, -0.019610505551099777, -0.004818332847207785, -0.006890324410051107, 0.02569052390754223, -0.03347816690802574, 0.023384684696793556, -0.02035011351108551, 0.011300785467028618, -0.031846679747104645, 0.0020067321602255106, -0.0038312815595418215, 0.0005390713922679424, 0.03663238137960434, 0.0035267367493361235, -0.017315544188022614, 0.007096979767084122, -0.004029779229313135, -0.014944445341825485, -0.005889677442610264, -0.0010856203734874725, 0.012605976313352585, -0.011132197454571724, 0.01244282815605402, -0.006014758720993996, 0.001305871526710689, -0.05194662883877754, -0.01674996130168438, 0.0038666303735226393, 0.035153165459632874, -0.03526192903518677, -0.0026919578667730093, 0.006101771257817745, -0.004410460591316223, -0.015042334794998169, -0.0045708902180194855, 0.024798642843961716, -0.005998443812131882, -0.018903527408838272, 0.01785937324166298, 0.0285184383392334, 0.030628498643636703, -0.02377624250948429, 0.02458111010491848, 0.0726991817355156, 0.02736552059650421, -0.009903142228722572, -0.008064997382462025, 0.005090247839689255, 0.008146571926772594, -0.02614734135568142, -0.0023778961040079594, 0.015575287863612175, 0.03558822721242905, 0.01656505838036537, -0.03208596259355545, 0.03415251523256302, -0.014694283716380596, -0.0011875885538756847, 0.017598334699869156, 0.031542133539915085, 0.01644541509449482, -0.03019343502819538, -0.015912462025880814, 0.061300504952669144, -0.03099830262362957, -0.017108887434005737, 0.015270743519067764, -0.01860985904932022, -0.03269505128264427, 0.02503792755305767, 0.038916464895009995, 0.0063084266148507595, 0.001197785371914506, -0.010126112028956413, -0.006210537161678076, 0.006792435422539711, -0.018740378320217133, -4.155200076638721e-05, 0.017315544188022614, 0.03149862587451935, -0.014607270248234272, -0.058951158076524734, 0.021405143663287163, 0.008320597000420094, -0.011366044171154499, -0.027909349650144577, 0.01149656344205141, -0.011202896013855934, 0.004995077382773161, 0.005024988204240799, -0.003529455978423357, 0.014215713366866112, 0.013976427726447582, 0.01862073503434658, -0.006080017890781164, -0.005030426662415266, 0.007602741941809654, -0.044398270547389984, -0.04524664580821991, -0.01291052158921957, -0.0072220610454678535, 0.020719919353723526, 0.009141780436038971, -0.016478044912219048, -0.003208596259355545, 0.006504205521196127, -0.016706453636288643, -0.01912105828523636, 0.004682375118136406, 0.03219472989439964, 0.019218947738409042, 0.010708010755479336, -0.014498504810035229, 0.018849143758416176, 0.004497473128139973, -0.01127903163433075, -0.016391033306717873, 0.021492157131433487, 0.028366167098283768, -0.030889537185430527, 0.010311014950275421, 0.051598578691482544, 0.004823771305382252, -0.018033398315310478, -0.01671733148396015, -0.02364572323858738, -0.010381712578237057, 0.04283204302191734, -0.011627082712948322, 0.007336264941841364, -0.025255460292100906, 0.05460052192211151, -0.011289908550679684, -0.01676083728671074, 0.006955584045499563, 0.007961669936776161, 0.01190987415611744, 0.015858080238103867, -0.001696749241091311, -0.027191493660211563, -0.02174231968820095, -0.008070435374975204, -0.024167800322175026, -0.014117823913693428, -0.011431303806602955, 0.0175330750644207, 0.012856138870120049, -0.004059690050780773, -0.01986066810786724, 0.011453057639300823, 0.029627852141857147, -0.02629961259663105, -0.03898172453045845, 0.01704362779855728, -0.025233706459403038, 0.022819101810455322, -0.003923732787370682, -0.030302200466394424, 0.03772003948688507, 0.03426128253340721, -0.002466268604621291, 0.0403304249048233, 0.009250545874238014, 0.03872068598866463, 0.0013962832745164633, -0.034652840346097946, 0.020904820412397385, -0.009973839856684208, -0.028844736516475677, -0.01974102482199669, 0.023689229041337967, 0.022949621081352234, 0.039199259132146835, -0.03036746010184288, 0.0066292863339185715, -0.0021195770241320133, 0.007896410301327705, 0.01986066810786724, 0.006047388538718224, -0.021024463698267937, 0.016021229326725006, -0.009892265312373638, -0.06086543947458267, 0.017913756892085075, -0.023449944332242012, 0.01797901652753353, 0.04146159067749977, 0.03491387888789177, 0.021981604397296906, 0.018066028133034706, -0.027757076546549797, 0.005927745718508959, -0.004206524230539799, -0.019371220842003822, -0.05760246142745018, 0.006977337412536144, -0.017587458714842796, -0.011583576910197735, -0.009538776241242886, -0.01802252233028412, 0.004758511669933796, 0.020099952816963196, -0.029671357944607735, 0.013661006465554237, 0.0068957628682255745, 0.019610505551099777, -0.03758952021598816, 0.0005812181625515223, 0.037176210433244705, -0.03563173487782478, -0.02660415880382061, 0.015248989686369896, -0.0025614388287067413, -0.04742196574807167, 0.008902494795620441, 0.01111588254570961, 0.007341703400015831, 0.007635371759533882, -0.01454201154410839, 0.01643453910946846, 0.00013383313489612192, 0.006014758720993996, 0.010898350737988949, 0.014150453731417656, -0.001050271443091333, 0.029954150319099426, -0.011953380890190601, 0.019664889201521873, -0.02064378187060356, 0.027017468586564064, -0.02205774001777172, 0.025320719927549362, 0.0002464229182805866, -0.026212600991129875, -0.005508996546268463, 0.04307132586836815, 0.027800584211945534, -0.012257925234735012, 0.017315544188022614, -0.020578522235155106, 0.016641194000840187, 0.0022854451090097427, 0.0051799798384308815, -0.002961153630167246, -0.0019170003943145275, -0.018229177221655846, 0.013563117012381554, -0.018751254305243492, -0.03271680697798729, -0.03023694083094597, -0.025864548981189728, -0.0019251578487455845, 0.07400436699390411, -0.06391088664531708, -0.036219071596860886, 0.018990539014339447, -0.017435185611248016, -0.014346232637763023, -0.012073023244738579, 0.02224264293909073, -0.02094832807779312, 0.03963432088494301, 0.007374333217740059, -0.005731966812163591, -0.0025600790977478027, -0.025081433355808258, 0.022927867248654366, 0.03193369135260582, 0.00822270754724741, 0.013041040860116482, -0.015064087696373463, 0.015129347331821918, 0.03724147006869316, 0.016021229326725006, 0.024385331198573112, -0.028540192171931267, -0.0009870512876659632, -0.02141602151095867, -0.010604682378470898, -0.04602976143360138, -0.027452532202005386, -0.015357756055891514, 0.017119765281677246, -0.008092188276350498, 0.009141780436038971, -0.03595803305506706, 0.01565142348408699, -0.00595493707805872, 0.008652333170175552, -0.03567523881793022, 0.03674114868044853, -0.02721324749290943, 0.05607973784208298, -0.017902879044413567, 0.007309073582291603, -0.011964257806539536, 0.021089723333716393, -0.020719919353723526, -0.026212600991129875, 0.0015336002688854933, 0.0018136727157980204, -0.01057205256074667, -0.026995714753866196, 0.023667477071285248, -0.013595746830105782, -0.01860985904932022, 0.054078444838523865, 0.01362837664783001, -0.002982906997203827, -0.03430479019880295, 0.03584926575422287, 0.0048835924826562405, 0.018218301236629486, -0.0036953240633010864, 0.003578400705009699, -0.029214540496468544, 0.0234934501349926, -0.026103833690285683, 0.02334117889404297, -0.045159634202718735, -0.03739374130964279, -0.006623847875744104, -0.02960609830915928, -0.035000890493392944, -0.03400024399161339, 0.006672792602330446, 0.014074317179620266, -0.013867662288248539, 0.013867662288248539, 0.0030209750402718782, 0.028409672901034355, 0.009729116223752499, 0.01783761940896511, 0.011920751072466373, -0.004385988228023052, 0.009576844051480293, -0.023275919258594513, -0.04241872951388359, -0.0028659834060817957, -0.015553534962236881, 0.005340409465134144, -0.00045919636613689363, -0.02002381719648838, 0.07417839765548706, 0.006830503232777119, 0.01734817400574684, 0.003015536814928055, 0.013595746830105782, 0.0016206130385398865, -0.01048504002392292, 0.010387150570750237, 0.024146046489477158, -0.005971251986920834, -0.0054709287360310555, -0.01149656344205141, -0.008195516653358936, 0.003537613432854414, -0.014357108622789383, 0.002025766298174858, -0.025799289345741272, 0.004948852118104696, -0.03180317208170891, -0.0039971498772501945, 0.01768534816801548, 0.005451894365251064, -0.002192994114011526, 0.02083956077694893, 0.008657772094011307, 0.008891618810594082, -0.00859795045107603, 0.006373686250299215, -0.027322012931108475, -0.04117880016565323, -0.0019727428443729877, 0.010425219312310219, -0.013095423579216003, -0.05729791522026062, 0.009875950403511524, -0.02677818387746811, -0.0026579685509204865, 0.008918809704482555, 0.04304957389831543, 0.013715390115976334, 0.01612999476492405, 0.01111588254570961, -0.004736758302897215, 0.06882710754871368, -0.025864548981189728, 0.03115057572722435, 0.03219472989439964, -0.004984200932085514, -0.022884361445903778, -0.0331953763961792, 0.06447646766901016, -0.02223176509141922, 0.03141161426901817, -0.009114588610827923, -0.0039835539646446705, 0.02032836154103279, 0.0051283156499266624, -0.02960609830915928, 0.014890062622725964, 0.005927745718508959, 0.01534687913954258, 0.007869218476116657, -0.0010856203734874725, -0.0016056577442213893, -0.018272684887051582, 0.022177383303642273, -0.022645076736807823, -0.010332767851650715, -0.0033228006213903427, -0.009680171497166157, 0.01912105828523636, -0.01674996130168438, -0.029867136850953102, 0.011920751072466373, -0.0038394390139728785, 0.017783237621188164, -0.00622141407802701, 0.007662563119083643, -0.00938650406897068, -0.022144753485918045, 0.000965298037044704, 0.04006938636302948, 0.013758895918726921, -0.008875303901731968, 0.0038856645114719868, -0.01942560262978077, -0.012323184870183468, 0.030759017914533615, 0.009038452990353107, 0.0027218686882406473, -0.017902879044413567, -0.015129347331821918, -0.02769181691110134, 0.03391323238611221, -0.001664119423367083, -0.013356462121009827, -0.017957262694835663, -0.013867662288248539, 0.02975837141275406, 0.0008585714385844767, -0.018424956128001213, -0.007662563119083643, -0.01307367067784071, 0.030737265944480896, -0.019284207373857498, 0.005835294723510742, 0.012736495584249496, 0.03628433123230934, 0.029845384880900383, -0.005299622192978859, 0.015064087696373463, 0.013584870845079422, 0.019795408472418785, -0.01940385065972805, -0.0015104875201359391, -0.010501354932785034, -0.001021040603518486, 0.0043044136837124825, 0.019936803728342056, -0.025081433355808258, 0.001921079121530056, -0.0011835098266601562, 0.020872190594673157, -0.05464402586221695, -0.008728469721972942, 0.04224470630288124, 0.023123646154999733, 0.009810690768063068, 0.0033228006213903427, -0.024472344666719437, -0.016086487099528313, 0.017446063458919525, 0.017728853970766068, 0.02081780880689621, -0.01954524591565132, -0.02643013186752796, -0.029801877215504646, 0.014096071012318134, 0.011605329811573029, -0.022601570934057236, 0.01323681976646185, -0.002428200328722596, 0.022797347977757454, 0.0012039034627377987, -0.0319119393825531, -0.021666182205080986, 0.015847202390432358, -0.0014411491574719548, 0.01198601070791483, -0.014074317179620266, -0.011181142181158066, -0.010539422743022442, -0.03822036460042, -0.007901848293840885, -0.02877947688102722, 0.02788759581744671, 0.0008368182461708784, -0.01719590090215206, 0.008820921182632446, 0.004176613409072161, 0.00875566154718399, -0.010637312196195126, 0.03128109499812126, 0.015999475494027138, 0.01329120248556137, 0.05194662883877754, 0.015455645509064198, -0.021176734939217567, 0.008103065192699432, -0.021546540781855583, 0.055166102945804596, 0.02501617558300495, -0.007695192936807871, 0.014498504810035229, 0.018087781965732574, -0.021666182205080986, 0.009158095344901085, -0.0057428437285125256, 0.019327713176608086, -0.04120055213570595, 0.017435185611248016, 0.025124941021203995, -0.008994946256279945, 0.03708919882774353, 0.01971927098929882, 0.04402846843004227, -0.005818979814648628, -0.022819101810455322, -0.004307132679969072, -0.007542920298874378, 0.00035484900581650436, -0.023754488676786423, 0.051250528544187546, -0.0005044022109359503, 0.02880123071372509, -0.010593806393444538, -0.009321244433522224, 0.013389091938734055, 0.012584223411977291, 0.028431426733732224, -0.0500323511660099, -0.007858341559767723, -0.022753842175006866, -0.03180317208170891, 0.014509381726384163, 0.00045103891170583665, -0.0010563895339146256, -0.0011964257573708892, 0.00740152457728982, -0.013399967923760414, 0.03778529912233353, -0.029323307797312737, -0.03772003948688507, -0.033760957419872284, 0.025734029710292816, 0.01579282060265541, 0.02224264293909073, -0.02253631129860878, -0.01525986660271883, 0.0045165070332586765, 0.023906761780381203, -0.03349992260336876, 0.0021182172931730747, 0.04742196574807167, 0.042984314262866974, -0.004059690050780773, 0.017609212547540665, -0.0022881643380969763, -0.028257401660084724, 0.01940385065972805, 0.006656477693468332, -0.0004887671093456447, -0.0016015790170058608, 0.007580988574773073, 0.012551593594253063, 0.014357108622789383, 0.0009686969569884241, -0.0014302725903689861, -0.04194016009569168, -0.005568818189203739, 0.023515203967690468, 0.028300907462835312, -0.024472344666719437, -0.00469597103074193, 0.005193575285375118, -0.003836719784885645, -0.004734039306640625, -0.008793729357421398, -0.027191493660211563, -0.0020312045235186815, 0.010604682378470898, 0.005808103363960981, 0.008701277896761894, 0.01189899817109108, -0.042331717908382416, 0.01384590845555067, 0.01988242007791996, -0.018588105216622353, -0.007901848293840885, -0.00641719251871109, 0.01454201154410839, -0.02862720564007759, -0.04659534618258476, -0.04463755711913109, 0.03460933268070221, 0.021883714944124222, -0.005808103363960981, 0.013737143017351627, 0.023515203967690468, 0.0048591201193630695, -0.008423925377428532, 0.042788535356521606, 0.0029230855870991945, 0.03584926575422287, -0.0016586811980232596, -0.019915049895644188, -0.03478335961699486, 0.0034995453897863626, -0.005226205103099346, -0.006694545969367027, 0.006297550164163113, 0.03587101772427559, -0.013661006465554237, 0.02224264293909073, 0.009794375859200954, 0.01612999476492405, -0.020089076831936836, -0.011398673988878727, 0.00805955845862627, -0.0397430881857872, -0.026734676212072372, -0.034217774868011475, -0.05246870592236519, -0.016521552577614784, 0.011061499826610088, 0.0019768215715885162, 0.018348820507526398, -0.012616853229701519, 4.17219489463605e-05, -0.005024988204240799, 0.00892424862831831, 0.03189018368721008, -0.03299959748983383, 0.031085316091775894, -0.002460830146446824, 0.015531781129539013, 0.03239050880074501, 0.012323184870183468, 0.0024635493755340576, -0.010996240191161633, 0.003912855871021748, -0.003809528425335884, 0.02988889068365097, -0.010849406011402607, -0.009462639689445496, 0.044398270547389984, -0.05555766075849533, -0.016314895823597908, 0.016978368163108826, 0.01752219907939434, 0.0021671620197594166, 0.005541626363992691, 0.000129669439047575, -0.004807456396520138, 0.01039802748709917, -0.021883714944124222, 0.041396331042051315, -0.020458880811929703, -0.0015145662473514676, 0.0029638728592544794, 0.016652071848511696, 0.009642103686928749, -0.015912462025880814, 0.012301431968808174, -0.02658240497112274, 0.0013520970242097974, -0.005220767110586166, 0.016412785276770592, -0.02079605497419834, -0.02501617558300495, -0.02738727256655693, 0.03219472989439964, -0.028583697974681854, 0.03193369135260582, 0.016314895823597908, 0.044855087995529175, -0.007390648126602173, 0.017021875828504562, 0.02912752889096737, -0.013204189948737621, 0.020872190594673157, 0.024798642843961716, -0.013443474657833576, -0.02566877007484436, 0.04911871626973152, 0.00047789051313884556, 0.0054165455512702465, -0.0072166225872933865, 0.034522321075201035, -0.012475457973778248, -0.0024730663280934095, 0.005938622169196606, 0.02271033637225628, 0.009544214233756065, -0.004062409047037363, 0.002146768383681774, 0.016369279474020004, 0.027474286034703255, -0.019479986280202866, 0.023689229041337967, -0.024950915947556496, -0.029388567432761192, 0.021644430235028267, -0.002176679205149412, -0.04074373468756676, 0.02784409001469612, 0.016521552577614784, 0.028257401660084724, -0.022949621081352234, -0.02551649883389473, 0.015901586040854454, 0.011409550905227661, -0.019305961206555367, 0.014052564278244972, 0.00876653753221035, -0.02867071144282818, 0.01594509184360504, 0.01227967906743288, -0.013410844840109348, 0.004535541404038668, 0.025712277740240097, 0.005215328652411699, -0.012856138870120049, 0.004793860483914614, 0.017750607803463936, 0.016782591119408607, -0.0025750345084816217, -0.0019496300956234336, 0.0005812181625515223, 0.007918163202702999, 0.003763302695006132, -0.0012052629608660936, 0.03661062940955162, -0.0055960095487535, -0.007814835757017136, -0.02756129764020443, 0.022025110200047493, 0.03145512193441391, -0.03552296757698059, -0.021981604397296906, -0.013367338106036186, -0.010512231849133968, 0.0384596511721611, -0.013552241027355194, -0.05242520198225975, -0.010871159844100475, 0.001471059862524271, 0.036719392985105515, -0.016706453636288643, -0.021187612786889076, 0.01517285406589508, -0.024146046489477158, 0.016325773671269417, -0.000540770823135972, 0.04291905462741852, 0.0027300259098410606, -0.03900348022580147, 0.02001293934881687, -0.01580369658768177, 0.0363495908677578, 0.025625264272093773, 0.023515203967690468], [0.006588531658053398, 0.029362978413701057, 0.06884082406759262, -0.0017805040115490556, -0.06470098346471786, 0.0005221478058956563, -0.041419725865125656, 0.05979292467236519, 0.023067863658070564, 0.032649241387844086, -0.04366036131978035, 0.0028834829572588205, 0.02143540047109127, 0.02680225484073162, -0.0425507128238678, -0.021061962470412254, 0.000689528533257544, 0.026631539687514305, -0.0006125067011453211, -0.023131880909204483, 0.01942949928343296, 0.01847989857196808, -0.050659675151109695, -0.00355567317456007, 0.00620975811034441, -0.009464012458920479, 0.039904627948999405, -0.03719452768564224, 0.030131196603178978, -0.004633311647921801, 0.06926760822534561, -0.03841087222099304, 0.03608488291501999, 0.03162495419383049, -0.03378022834658623, -0.0071326857432723045, -0.03610622137784958, -0.004574628546833992, 0.007495454978197813, 0.015599082224071026, -0.00690328748896718, -0.00899454578757286, -0.004342562519013882, -0.062310971319675446, -0.03958453983068466, 0.09491753578186035, -0.026994308456778526, -0.008322356268763542, -0.014734838157892227, -0.0026874274481087923, 0.021328704431653023, 0.06589598953723907, 0.02323857881128788, -0.10370935499668121, -0.04090758040547371, -0.000950935878790915, -0.032713260501623154, -0.015343010425567627, 0.03478318080306053, -0.003014186630025506, 0.022555718198418617, 0.00117900047916919, 0.023515990003943443, -0.007922242395579815, -0.010509641841053963, -0.02091258578002453, 0.07357816398143768, 0.002244635485112667, -0.04442857578396797, -0.05334843695163727, 0.019952313974499702, 0.043510984629392624, 0.03286263719201088, -0.012334158644080162, -0.011267189867794514, 0.003937114495784044, -0.006535183172672987, 0.04237999767065048, 0.019162757322192192, -0.005574911367148161, -0.0632072240114212, 0.012280809693038464, -0.018693292513489723, -0.017327571287751198, -0.01089908555150032, 0.01604720950126648, -0.05569576472043991, 0.02098727412521839, 0.03232915326952934, -0.0007782203028909862, -0.0028541414067149162, -0.010125532746315002, 0.0041798497550189495, 0.03292665258049965, -0.004409248009324074, 0.015556403435766697, -0.0005011418834328651, -0.05240950360894203, -0.01742359809577465, 0.055909160524606705, 0.02727171964943409, -0.03354549780488014, 0.001668472308665514, 0.010045510716736317, -0.019738921895623207, -0.06542652100324631, 0.030280571430921555, 0.008919858373701572, 0.027442434802651405, -0.010264239273965359, 0.01059499941766262, -0.016207255423069, 0.01879998855292797, 0.04686126485466957, -0.035081930458545685, -0.03928578644990921, -0.04605036973953247, 0.007522129453718662, 0.005841653794050217, -0.03804810345172882, 0.023153221234679222, 0.04013936221599579, 0.004587965551763773, -0.034249696880578995, 0.021776830777525902, 0.014532113447785378, -0.009810777381062508, 0.03209441900253296, -0.018703961744904518, -0.043468303978443146, 0.022619737312197685, -0.03713051229715347, 0.02801859751343727, 0.0006875279359519482, 0.014468095265328884, -0.011181832291185856, 0.020976604893803596, -0.01706082932651043, 0.00972541980445385, -0.011224511079490185, -0.014361399225890636, 0.00784222036600113, 0.033524155616760254, 0.005478884093463421, -0.09517361223697662, 0.011512592434883118, -0.029405657202005386, 0.05723220109939575, 0.01218478288501501, 0.011363216675817966, 0.0070526632480323315, -0.00499341357499361, 0.020613836124539375, -0.0033449470065534115, 0.003998465370386839, -0.0260340366512537, 0.025372516363859177, 0.09978291392326355, 0.011693976819515228, -0.02848806418478489, 0.010653682984411716, 0.021446071565151215, -0.01695413328707218, -0.007639496121555567, 0.0010929760755971074, 0.006759246811270714, -0.0122594702988863, 0.059110067784786224, -0.02319590002298355, -0.025906000286340714, -0.011725986376404762, -0.008066283538937569, 0.01677274890244007, 0.006028373260051012, -0.09594182670116425, -0.01539635844528675, 0.009149257093667984, 0.0170181505382061, 0.032307811081409454, 0.0010422950144857168, 0.017999762669205666, 0.03644765168428421, 0.013497154228389263, -0.015577742829918861, 0.028936190530657768, 0.061115968972444534, -0.04182517156004906, -0.03531666472554207, -0.03247852623462677, 0.015257652848958969, 0.0038277502171695232, -0.026759576052427292, 0.040672846138477325, 0.02445492334663868, 0.001064301235601306, 0.017754359170794487, 0.00030658679315820336, -0.02125401608645916, 0.036298274993896484, -0.025863321498036385, 0.0061884187161922455, -0.02637546695768833, -0.006167079322040081, -0.018383871763944626, -0.042721427977085114, 0.010893750935792923, 0.019365482032299042, 0.00164980033878237, 0.026588860899209976, -0.0029955145437270403, -0.0007528797723352909, -0.005745626520365477, -0.04613572731614113, -0.00531350402161479, -0.02287580817937851, -0.012291479855775833, 0.05659202113747597, 0.029512355104088783, 0.05339111387729645, -0.0055108931846916676, -0.04716001823544502, -0.011629958637058735, 0.0031822342425584793, -0.02609805390238762, -0.046263761818408966, -0.046349119395017624, -0.03194504231214523, -0.04246535524725914, -0.040651507675647736, -0.007948917336761951, -0.02643948420882225, 0.018949363380670547, 0.0062684412114322186, -0.039861951023340225, -0.020560486242175102, 0.042700089514255524, -0.00998682714998722, -0.04120633006095886, -0.013785235583782196, 0.04728805273771286, 0.021851519122719765, -0.03337478265166283, 0.035508718341588974, -0.02251303941011429, -0.016196584329009056, -0.006748577114194632, -0.02366536669433117, 0.02407081425189972, 0.010130868293344975, 0.020571157336235046, 0.03885899856686592, 0.05484219267964363, 0.03482585772871971, -0.020069681107997894, -0.02141406200826168, 0.042209282517433167, -0.025777963921427727, -0.024775013327598572, 0.009832116775214672, -0.033822908997535706, 0.009901469573378563, -0.010856406763195992, -0.035892825573682785, -0.01624993421137333, -0.04400178790092468, -0.05040360242128372, 0.02008035033941269, -0.02650350332260132, 0.019845617935061455, 0.03634095564484596, -0.03324674442410469, 0.04703198000788689, 0.0002110597415594384, -0.055951837450265884, -0.06892617791891098, 0.024284208193421364, 0.006023038178682327, -0.008525080047547817, -0.015108277089893818, -0.024156171828508377, -0.03902971372008324, -0.012334158644080162, 0.005084105767309666, -0.06905421614646912, -0.018117127940058708, 0.027975918725132942, 0.035444699227809906, 0.020357763394713402, -0.00013203737034928054, 0.020752541720867157, 0.06303650885820389, 0.013966619968414307, -0.021040622144937515, 0.03442041203379631, 0.05535433813929558, 0.0036730398423969746, 0.02887217327952385, 0.020901916548609734, -0.011597950011491776, -0.023942777886986732, 0.015599082224071026, 0.008471731096506119, 0.004374571610242128, -0.044641971588134766, -0.07733388990163803, -0.0280612763017416, -0.02319590002298355, 0.007041993550956249, -0.020773880183696747, 0.0035743452608585358, -0.04378839582204819, 0.01756230555474758, -0.11130617558956146, -0.052324146032333374, -0.012974339537322521, -0.005134786944836378, 0.0009129251120612025, 0.008738473989069462, 0.051086463034152985, 0.021723482757806778, 0.012152773328125477, 0.023387953639030457, -0.020795220509171486, 0.0029314965941011906, -0.05006217211484909, -0.014585462398827076, -0.024113493040204048, 0.02688761055469513, 0.025415195152163506, 0.008338360115885735, -0.022128930315375328, 0.006081721745431423, 0.017210206016898155, 0.02441224455833435, -0.031390219926834106, -0.03277727961540222, -0.02285446971654892, 0.04114231467247009, -0.01942949928343296, -0.024625638499855995, -0.0010703030275180936, 0.00329960067756474, 0.0389016792178154, 0.007927577942609787, -0.018703961744904518, 0.05087306722998619, 0.04570893943309784, 0.00405181385576725, -0.015375019051134586, 0.007063332945108414, 0.0188426673412323, 0.009223944507539272, -0.007340744603425264, -0.0064338212832808495, -0.06862742453813553, -0.017711680382490158, 0.039413824677467346, 0.03924310952425003, -0.046306442469358444, 0.027143683284521103, 0.015236313454806805, 0.013262420892715454, -0.00018788651505019516, 0.03602086380124092, 0.03392960503697395, -0.024775013327598572, -0.03256388381123543, 0.013443805277347565, 0.016239263117313385, -0.011149822734296322, -0.011971388943493366, 0.0038917683996260166, 0.03416433930397034, -0.020304415374994278, 0.08130301535129547, -0.022683754563331604, 0.02400679513812065, 0.029064226895570755, 0.001564442878589034, -0.008263672702014446, -0.00020022335229441524, -0.02400679513812065, 0.00335561647079885, -0.012355498038232327, -0.011661968193948269, 0.006759246811270714, 0.002048579975962639, -0.014350729063153267, 0.017498286440968513, 0.001511094393208623, -0.03845355287194252, 0.020560486242175102, 0.013294430449604988, 0.0419318713247776, -0.02441224455833435, -0.005078771151602268, 0.016036540269851685, -0.0008702463237568736, -0.045495547354221344, 0.004601302556693554, -0.020923256874084473, -0.04677590727806091, 0.0035876822657883167, -0.011629958637058735, 0.0007488786359317601, -0.011341877281665802, -0.01539635844528675, 0.03367353230714798, -0.013347778469324112, -0.04886716604232788, -0.009245283901691437, -0.029917802661657333, 0.007234047632664442, 0.013529162853956223, -0.02402813546359539, -5.497389429365285e-05, -0.014542783610522747, -0.002912824507802725, -0.020731201395392418, -0.029021548107266426, -0.0005921676056459546, 0.021510088816285133, -0.030750038102269173, 0.05185467749834061, -0.04673323035240173, -0.011587279848754406, 0.011693976819515228, -0.021286025643348694, -0.014083987101912498, 0.007436771877110004, -0.012846303172409534, -0.019717581570148468, -0.01819181628525257, 0.0601770356297493, -0.009165260940790176, -0.003174231853336096, -0.03474050015211105, 0.0104829678311944, -0.00912791769951582, -0.03375888988375664, -0.0049373977817595005, -0.035380683839321136, -0.00011619956057984382, 0.028957530856132507, -0.031411558389663696, 0.010803057812154293, -0.0022366330958902836, 0.047458767890930176, 0.030750038102269173, 0.005761630833148956, 0.002200623042881489, -0.04609304666519165, -0.024988407269120216, -0.02887217327952385, 0.021691473200917244, -0.07280994206666946, 0.02287580817937851, 0.0007348746876232326, 0.019418830052018166, 0.01918409764766693, 0.03328942507505417, 0.04037409648299217, 0.024582959711551666, 0.03992597013711929, 0.008493070490658283, 0.05889667198061943, -0.018650613725185394, 0.025009745731949806, -0.02530849725008011, -0.055098265409469604, 0.021936876699328423, -0.005745626520365477, 0.01949351839721203, 0.017412928864359856, -0.012462194077670574, 0.017679670825600624, 0.03124084323644638, -0.015705779194831848, -0.02932029962539673, -0.05561041086912155, 0.0397125743329525, 0.03879498317837715, -0.04694662243127823, -0.05582380294799805, 0.025095103308558464, 0.0245189405977726, 0.05603719502687454, 0.016377970576286316, -0.012494203634560108, -0.051513250917196274, -0.001455078599974513, 0.023110542446374893, 0.00325158704072237, -0.006940631661564112, 0.0017031488241627812, 0.003179566701874137, -0.00571361742913723, -0.0134224658831954, 0.02564992755651474, -0.023942777886986732, -0.032286472618579865, -0.0634206235408783, 0.017615653574466705, 0.006561857648193836, 0.025948679074645042, -0.030750038102269173, -0.02488170936703682, 0.01521497406065464, 0.011555271223187447, 0.010093524120748043, 0.030131196603178978, -0.027933239936828613, 0.0061457399278879166, -0.004147840663790703, 0.018117127940058708, 0.008290346711874008, -0.019056061282753944, 0.017252884805202484, -0.05800041928887367, 0.01608988828957081, 0.03755730018019676, -0.02436956577003002, 1.8401042325422168e-05, 0.02017637901008129, -0.062268294394016266, 0.03360951319336891, 0.003550338326022029, -0.0743463784456253, 0.005388191901147366, -0.02129669487476349, 0.028530742973089218, -0.012814294546842575, -0.023942777886986732, -0.00991747435182333, 0.005916341673582792, -0.025564569979906082, -0.013294430449604988, 0.035039253532886505, -0.0047026644460856915, -0.003606354119256139, 0.016687391325831413, -0.02840270660817623, 0.01588716357946396, 0.0212753564119339, -0.01667672023177147, -0.027911901473999023, 0.019781600683927536, -0.03721586987376213, -0.0003907772770617157, 0.01502291951328516, -0.023900099098682404, -0.005873662885278463, 0.01999499276280403, -0.01014153752475977, 0.028957530856132507, 0.030259232968091965, 0.01918409764766693, -0.027101004496216774, 0.003670372301712632, -0.016751408576965332, 0.003432971891015768, 0.038666944950819016, 0.027079666033387184, -0.011320537887513638, -0.026247430592775345, -0.0035396686289459467, -0.03217977657914162, -0.010130868293344975, -0.0064071472734212875, -0.006844604387879372, -0.009586714208126068, 0.0018391873454675078, 0.000691529072355479, 0.016527345404028893, 0.02050713822245598, 0.006812595296651125, 0.044215183705091476, -0.035252645611763, -0.0017564971931278706, 0.039456501603126526, 0.008802492171525955, 0.022790452465415, 0.01070703100413084, -0.012547551654279232, -0.03981927037239075, -0.007426102180033922, -0.026290109381079674, -0.038688287138938904, 4.4470922148320824e-05, -0.004545286763459444, 0.02283313125371933, -0.011320537887513638, 0.012014067731797695, -0.0449834018945694, -0.005388191901147366, 0.008450391702353954, -0.011576610617339611, 0.0168154276907444, -0.015140285715460777, 0.006332459393888712, 0.005268157925456762, 0.004454594571143389, -0.017636992037296295, 0.03856024891138077, -0.039904627948999405, -0.007559473160654306, 0.013038357719779015, -0.03881632164120674, 0.07400494813919067, 0.01622859388589859, 0.03770667314529419, 0.003593017114326358, -0.015855155885219574, -0.028530742973089218, 0.013913271948695183, 0.011565940454602242, -0.07741925120353699, -0.015535064041614532, 0.03311870992183685, -0.009325306862592697, -0.014009298756718636, 0.0020085684955120087, 0.006471164990216494, 0.001968557247892022, -0.0632072240114212, 0.027165023609995842, -0.007047328166663647, 0.00013078702613711357, 0.0008915857179090381, -0.002662086859345436, -0.031518254429101944, -0.03089941293001175, -0.003056865418329835, -0.03700247406959534, 0.010477632284164429, 0.004587965551763773, -0.02050713822245598, -0.015588412992656231, -7.239549449877813e-05, 0.03800542652606964, 0.03089941293001175, 0.024710996076464653, 0.06367669254541397, -0.06184150651097298, 0.01010952889919281, 0.0070153190754354, 0.030600663274526596, 0.023067863658070564, 0.03177432715892792, 0.0037770692724734545, 0.027783865109086037, 0.024177510291337967, -0.03328942507505417, 0.017775699496269226, -0.019397491589188576, 0.003176899394020438, -0.00035410025157034397, 0.04677590727806091, -0.0038810987025499344, 0.08117497712373734, 0.013795905746519566, 0.010024171322584152, 0.02921360358595848, 0.01805311068892479, 0.01586582511663437, 0.010088189505040646, 0.035828810185194016, 0.0024180179461836815, 0.03042994812130928, 0.005318839102983475, 0.020901916548609734, -0.01089908555150032, 0.010856406763195992, 0.0017711680848151445, 0.02163812518119812, -0.0019765596371144056, 0.015833815559744835, 0.02319590002298355, -0.005014752969145775, 0.022278307005763054, -0.025329837575554848, 0.01304902695119381, -0.00044946058187633753, 0.023558668792247772, -0.009277292527258396, -0.01142723485827446, -0.03482585772871971, -0.027911901473999023, -0.005406863987445831, 0.04489804431796074, 0.00580964470282197, 0.0376853346824646, 0.039499182254076004, 0.03653300926089287, -0.00847706664353609, 0.06141471862792969, -0.001036293338984251, -5.805810360470787e-05, -0.020432449877262115, -0.016367299482226372, 0.013059697113931179, 0.007287396118044853, -0.008562424220144749, -0.04020338132977486, -0.051897358149290085, 0.009287962689995766, 0.013977290131151676, -0.0019512190483510494, 0.040608830749988556, -0.010723035782575607, -0.013038357719779015, 0.013337109237909317, -0.051513250917196274, -0.0016217924421653152, -0.012536882422864437, -0.00485737482085824, 0.01264357939362526, 0.013283760286867619, -0.03674640133976936, 0.004499940667301416, -0.003950451500713825, 0.02690895088016987, -0.045879654586315155, 0.0032249130308628082, 0.006065716966986656, 0.011053795926272869, 0.021776830777525902, 0.006097726058214903, 0.017135517671704292, 0.008967871777713299, -0.002851473866030574, -0.02609805390238762, -0.006732572335749865, 0.018992042168974876, -0.033033352345228195, 0.010344261303544044, -7.222878048196435e-05, 0.007436771877110004, -0.017690341919660568, -0.0206671841442585, 0.007559473160654306, -0.019578875973820686, 0.00464931596070528, -0.017476947978138924, -0.04116365313529968, 0.06764581799507141, -0.011416565626859665, 0.013166394084692001, -0.005332176107913256, -0.031155485659837723, -0.01199272833764553, 0.004643981344997883, -0.038709625601768494, -0.0033636188600212336, 0.011544601060450077, -0.00922927912324667, 0.03555139899253845, 0.02720770239830017, -0.0002877481165342033, 0.011437904089689255, -0.016335291787981987, -0.030600663274526596, -0.00659920135512948, -0.008007599972188473, 0.039051055908203125, -0.02244902215898037, -0.031432896852493286, -0.029469676315784454, 0.016356630250811577, 0.005606920458376408, -0.01922677643597126, -0.04334026947617531, -0.00032459187787026167, 0.03612755984067917, 0.013721217401325703, -0.029917802661657333, 0.00230998732149601, -0.026674218475818634, -0.016890114173293114, -0.02639680542051792, 0.014510774053633213, 0.013166394084692001, -0.04127034917473793, 0.02678091451525688, 0.013059697113931179, -0.038282837718725204, -0.040694188326597214, 0.0015150955878198147, 0.0077355229295790195, 0.020528478547930717, -0.06389008462429047, 0.010349596850574017, 0.013881263323128223, -0.048355020582675934, -0.025927338749170303, -0.0027394420467317104, 0.0026260768063366413, -0.007863559760153294, -0.029533693566918373, 0.006353798788040876, -0.010659017600119114, 0.008167645893990993, -0.01564176194369793, 0.013721217401325703, 0.07904104143381119, 0.009938813745975494, -0.006284445524215698, 0.004886716604232788, -0.009277292527258396, -0.004201189149171114, -2.5507220925646834e-05, 0.01661270298063755, 0.017050160095095634, 0.040288738906383514, 0.0472026951611042, -0.03371621295809746, -0.015513724647462368, 0.008242333307862282, 0.019920306280255318, 0.008130301721394062, 0.012985008768737316, 0.0057082828134298325, -0.019504187628626823, -0.02803993783891201, 0.037535957992076874, -0.027399756014347076, 0.004942732397466898, 0.01841587945818901, -0.006641880143433809, -0.03045128658413887, 0.022555718198418617, 0.01863994263112545, -0.005702947732061148, 0.021115310490131378, -0.013177063316106796, -0.0028914851136505604, -0.005937681067734957, -0.00730340089648962, -0.012238130904734135, 0.0015564406057819724, 0.04054481163620949, -0.00960271805524826, -0.008007599972188473, -0.024284208193421364, 0.0011423233663663268, 0.034271035343408585, -0.004273209720849991, 0.011939379386603832, -0.028936190530657768, -0.019621554762125015, -0.005204139743000269, -0.008834500797092915, -0.016986140981316566, 0.030216554179787636, 0.0011636627605184913, 0.0011423233663663268, 0.007196703925728798, 0.012067415751516819, -0.014873543754220009, -0.03164629265666008, -0.021019283682107925, 0.014617471024394035, -0.006161744240671396, -0.026119394227862358, 0.018021101132035255, 0.00034976567258127034, 0.004990746267139912, -0.029128246009349823, 0.0010462962090969086, -0.023067863658070564, 0.025137782096862793, -0.00035710108932107687, -0.002348664915189147, 0.0008075619116425514, 0.018629273399710655, 0.017615653574466705, -0.01218478288501501, -0.0022846467327326536, 0.016079219058156013, 0.00572962174192071, -0.019120078533887863, 0.030323250219225883, 0.049507349729537964, 0.011736655607819557, -0.0024313549511134624, -0.022128930315375328, -0.013486484065651894, 0.02121133729815483, 0.04566626250743866, 0.0026087386067956686, -0.004729338921606541, 0.003235582495108247, 0.03299067169427872, 0.011629958637058735, -0.010968438349664211, 0.003398295259103179, -0.00813563633710146, 0.0005048095481470227, 0.01340112742036581, -0.030515305697917938, -0.024668317288160324, 0.0028968199621886015, -0.016079219058156013, -0.009266623295843601, 0.02520180121064186, -0.004355899523943663, 0.006273775827139616, 0.03392960503697395, 0.023857420310378075, -0.0032675915863364935, -0.005428203381597996, 0.0034142998047173023, -0.0036010195035487413, -0.028573421761393547, 0.03171031177043915, -0.008647781796753407, 0.032585225999355316, 0.02163812518119812, -0.037109170109033585, 0.030237892642617226, 0.05680541321635246, 0.026588860899209976, 0.017935743555426598, 0.04240133613348007, -0.002031241776421666, 0.004764015320688486, -0.02247036062180996, 0.002249970333650708, -0.018586594611406326, -0.0224917009472847, -0.03888034075498581, 0.03439906984567642, 0.013742556795477867, 0.0004074486787430942, -0.02929896116256714, -0.01582314632833004, -0.007084672339260578, -0.014958901330828667, 0.041483744978904724, -0.030686020851135254, 0.013070366345345974, 0.03040860779583454, 0.0006441823788918555, -0.057915061712265015, 0.002272643381729722, -0.0332254059612751, 0.013753226958215237, 0.0284667257219553, 0.04609304666519165, -0.023345274850726128, 0.018159806728363037, -0.0140306381508708, 0.01789306476712227, -0.008658451028168201, 0.00943200383335352, -0.056293267756700516, -0.011790004558861256, -0.011822013184428215, 0.019642893224954605, -0.005126784555613995, 0.005380189511924982, 0.00979477260261774, 0.011277859099209309, -0.03894435614347458, -0.008130301721394062, -0.0063911424949765205, 0.026588860899209976, -0.02763449028134346, -0.027485113590955734, 0.03156093508005142, -0.02690895088016987, -0.026951629668474197, 0.01180067379027605, 0.0036730398423969746, -0.046349119395017624, -0.025735285133123398, -0.0005341512151062489, 0.02646082453429699, -0.01419068407267332, -0.019909635186195374, 0.00023106540902517736, 0.009464012458920479, 0.02639680542051792, 0.014254702255129814, -0.005969689693301916, 0.03192370384931564, 0.012504872865974903, -0.0014097323874011636, 0.03405763953924179, -0.0033769558649510145, 0.024582959711551666, 0.002371337963268161, 0.022577058523893356, -0.010472297668457031, -0.003870429005473852, 0.002803460229188204, 0.04195320978760719, 0.004844037815928459, -0.0021312700118869543, 0.028658779338002205, -0.003537001321092248, 0.010808393359184265, -0.02358000911772251, 0.018085120245814323, 0.006097726058214903, -0.029939141124486923, -0.01809578947722912, 0.00790090300142765, 0.011672637425363064, -0.004670655354857445, -0.0194508396089077, -0.029341639950871468, 0.01184335257858038, 0.04103561490774155, -0.02765582874417305, 0.0021926206536591053, 0.03407898172736168, -0.009752093814313412, -0.03162495419383049, 0.021243346855044365, -0.0017805040115490556, -0.0014577460242435336, 0.02366536669433117, 0.004126501269638538, 0.021744823083281517, -0.013593181036412716, -0.006759246811270714, 0.014201353304088116, 0.027143683284521103, 0.010755044408142567, 0.027143683284521103, -0.0013277091784402728, -0.0110431257635355, 0.03203039988875389, 0.018757309764623642, 0.008983876556158066, 0.005590916145592928, -0.01843721978366375, -0.01920543611049652, 0.02530849725008011, -0.02404947392642498, -0.02520180121064186, -0.008546419441699982, -0.00930930208414793, -0.027506453916430473, -0.015097606927156448, -0.028680119663476944, 0.014564123004674911, -0.0038144132122397423, 0.011277859099209309, -0.005548237357288599, 0.05415933206677437, -0.04043811559677124, 0.04007534310221672, 0.014734838157892227, 0.01101111713796854, -0.004638646263629198, -0.006636545527726412, 0.00892519298940897, -0.011085804551839828, -0.004454594571143389, -0.021648794412612915, -0.015716448426246643, -0.01263290923088789, 0.034633804112672806, -0.018853336572647095, -0.012718266807496548, 0.03920042887330055, 0.010354931466281414, 0.009784103371202946, -0.029747087508440018, 0.0336308553814888, 0.023067863658070564, 0.03813346102833748, -0.011725986376404762, 0.026332788169384003, -0.03527398407459259, 0.016345961019396782, -0.04878180846571922, 0.0035209967754781246, -0.02449760213494301, -0.021670134738087654, -0.010653682984411716, -0.027101004496216774, -0.03802676498889923, -0.026119394227862358, 0.0164099782705307, 0.014404078014194965, -0.008978541940450668, -0.0036143565084785223, -0.00416384544223547, 0.02921360358595848, 0.025906000286340714, 0.00851974543184042, -0.020048342645168304, 0.006972640287131071, 0.026247430592775345, -0.019696243107318878, -0.01699681207537651, -0.016911454498767853, -0.00611373083665967, 0.0005268158274702728, -0.018469227477908134, -0.0012870309874415398, 0.03888034075498581, -0.014009298756718636, -0.00464931596070528, 0.0223850030452013, -0.016345961019396782, 0.012131433933973312, -0.009058563970029354, -0.007367419078946114, 0.042700089514255524, -0.032713260501623154, -0.002880815416574478, 0.00044912713929079473, 0.00015571074618492275, -0.020123029127717018, 0.001687144278548658, 0.006759246811270714, -0.014692159369587898, -0.0188426673412323, -0.027762526646256447, -0.017135517671704292, 0.01706082932651043, -0.0004201189149171114, -0.0018912020605057478, 0.02637546695768833, 0.00934131070971489, -0.010643012821674347, 0.020112359896302223, -0.00016046209202613682, -0.025713946670293808, -0.017498286440968513, 0.005670938640832901, 0.00017254884005524218, -0.0065138437785208225, -0.04180383309721947, 0.014702828601002693, -0.011320537887513638, 0.0028968199621886015, 0.025564569979906082, 0.02445492334663868, 0.012696927413344383, 0.04331893101334572, 0.0047986917197704315, -0.005086773540824652, 0.06555455923080444, -0.02885083295404911, 0.03559407591819763, 0.008493070490658283, -0.005793639924377203, -0.001588449697010219, -0.013177063316106796, 0.05360450968146324, 0.004171847831457853, 0.011768665164709091, -0.001164329587481916, 0.0012783618876710534, 0.04861109331250191, -0.005273493006825447, -0.0134224658831954, -0.003537001321092248, 0.02042178064584732, -0.0005534900119528174, 0.0168154276907444, -0.015919173136353493, -0.015876494348049164, 0.00882383156567812, 0.0018738637445494533, -0.03124084323644638, -0.0036917116958647966, 0.0017805040115490556, 0.00839704368263483, 0.02970440872013569, -0.017476947978138924, -0.03292665258049965, 0.01319840271025896, 0.006647215224802494, -0.0072713918052613735, 0.0031635621562600136, -0.0168154276907444, -0.024540280923247337, -0.03966989740729332, -0.005113447550684214, 0.011448574252426624, 0.014158674515783787, -0.04519679397344589, 0.008034273982048035, -0.040651507675647736, -0.008007599972188473, 0.016751408576965332, 0.012814294546842575, -0.0107870539650321, -0.042700089514255524, -0.015097606927156448, -0.018202485516667366, 0.03331076353788376, 0.04289214313030243, -0.011491253040730953, -0.009890800341963768, -0.0073940930888056755, 0.017818378284573555, -0.00022789784998167306, -0.027122344821691513, 0.008162310346961021, -0.024134831503033638, -0.0003235916083212942, -0.008188985288143158, -0.012099425308406353, 0.03279861807823181, 0.04088624194264412, 0.006663219537585974, -0.018309183418750763, -0.014062647707760334, -0.004617306869477034, -0.0017671668902039528, 0.00850907526910305, -0.002200623042881489, -0.020112359896302223, -0.015097606927156448, 0.01687944494187832, 0.04003266617655754, -0.016751408576965332, 0.003998465370386839, 0.0021792836487293243, 0.04400178790092468, -0.061158645898103714, 0.0018005097517743707, 0.03928578644990921, 0.019621554762125015, 0.018757309764623642, -0.006567192263901234, -0.0035156619269400835, 0.01041361503303051, 0.015588412992656231, 0.027165023609995842, 0.014809525571763515, -0.00912791769951582, -0.012291479855775833, -0.042700089514255524, 0.008119631558656693, -0.0023033185862004757, -0.02251303941011429, 3.9844613638706505e-05, -0.014062647707760334, 0.008055613376200199, 0.019280124455690384, -0.0010749709326773882, -0.01958954520523548, 0.023921437561511993, -0.020187048241496086, 0.025948679074645042, 0.016484666615724564, -0.026759576052427292, 0.021755492314696312, -0.014051977545022964, -0.03836819529533386, -0.022214287891983986, -0.007335409987717867, 0.010664352215826511, -0.022662416100502014, -0.033396121114492416, 0.03399362415075302, 0.013369117863476276, -0.016335291787981987, 0.003550338326022029, 0.018447889015078545, -0.0069299619644880295, 0.023836081847548485, 0.0021939543075859547, -0.03213709592819214, 0.017476947978138924, -0.003488987684249878, 0.06316454708576202, 0.01444675587117672, -0.005028089974075556, -0.004062483552843332, 0.02064584381878376, -0.020123029127717018, 0.008663785643875599, -0.015716448426246643, 0.027741186320781708, -0.04135570675134659, 0.051897358149290085, 0.011704646982252598, -0.015257652848958969, 0.03092075325548649, -0.02923494204878807, 0.03333210200071335, 0.0026887611020356417, -0.005142789334058762, -0.03721586987376213, 0.0045506213791668415, -0.011277859099209309, -0.0005271492409519851, 0.030771378427743912, -0.020752541720867157, -0.009351980872452259, 0.008514409884810448, -0.015513724647462368, 0.02404947392642498, -0.008466396480798721, 0.029533693566918373, -0.0496353842318058, 0.007826215587556362, -0.024198850616812706, -0.033033352345228195, 0.004425252787768841, -0.004089157562702894, 0.009736089035868645, -0.010643012821674347, 0.016986140981316566, 0.004097159951925278, 0.0025647259317338467, -0.006764581426978111, -0.009021220728754997, 0.008002265356481075, 0.00391577510163188, 0.027442434802651405, 0.0037290556356310844, -0.001455078599974513, -0.001501758466474712, 0.00039144413312897086, -0.0021045957691967487, -0.05211075022816658, 0.007996930740773678, 0.04767216369509697, -0.0010189551394432783, -0.018543915823101997, -0.014873543754220009, 0.006412481889128685, -0.028573421761393547, 0.02727171964943409, 0.004793357104063034, 0.012910321354866028, 0.010082853958010674, 0.01081906259059906, -0.012953000143170357, 0.04967806488275528, -0.008647781796753407, -0.003003516932949424, -0.0457942970097065, 0.0031155485194176435, 0.007196703925728798, 0.018607934936881065, -0.006545852869749069, 0.014852204360067844, -0.010989777743816376, 0.017925074324011803, -0.0036196913570165634, 0.006945966277271509, -0.00349965738132596, -0.011501922272145748, 0.03717318922281265, -0.021264687180519104, 0.013529162853956223, 0.031838346272706985, -0.04600768908858299, 0.021872857585549355, 0.03454844653606415, -0.012099425308406353, -0.0002985845203511417, -0.008877179585397243, 0.018789319321513176, -0.029149584472179413, -0.030301911756396294, -0.03333210200071335, 0.02328125759959221, 0.02285446971654892, -0.005740291438996792, 0.009282628074288368, 0.01748761720955372, -0.013145054690539837, 0.0026220756117254496, 0.01606854796409607, -0.006124400533735752, -0.0049507347866892815, 0.02200089395046234, -0.015193634666502476, -0.04442857578396797, 0.011128483340144157, -0.011523261666297913, -0.005846988409757614, -0.0011116480454802513, 0.013539833016693592, -0.03480451926589012, -0.002686093794181943, 0.033033352345228195, 0.0035583407152444124, -0.0008982542785815895, -0.0008195653208531439, -0.008567758835852146, -0.03365219384431839, -0.02366536669433117, -0.02720770239830017, -0.03456978499889374, -0.0012270139995962381, 0.014180013909935951, -0.018159806728363037, 0.009031889960169792, -0.023900099098682404, 0.008653116412460804, -0.0049373977817595005, -0.013305099681019783, -0.014062647707760334, -0.04244401678442955, 0.029789766296744347, -0.022534379735589027, 0.033865585923194885, 0.04878180846571922, -0.0024260201025754213, 0.027186362072825432, -0.012206122279167175, 0.025777963921427727, 0.004526614677160978, 0.013603851199150085, -0.003328942460939288, 0.005975024774670601, 0.025329837575554848, -0.035487379878759384, -0.028658779338002205, 0.029939141124486923, 0.009960153140127659, -0.003384958254173398, -0.005358850117772818, -0.00034543112269602716, 0.01021089032292366, -0.02139272168278694, -0.034612465649843216, 0.014958901330828667, 0.0015991193940863013, 0.009554704651236534, 0.012494203634560108, 0.013955950736999512, 0.002313988283276558, -0.01805311068892479, 0.008028939366340637, -0.016538014635443687, -0.004131836351007223, -0.007025988772511482, 0.006177749019116163, 0.010989777743816376, -0.0020325754303485155, -0.0038357526063919067, -0.004361234605312347, -0.032265134155750275, 0.023473311215639114, 0.015044258907437325, 0.03851757198572159, -0.007596817333251238, 0.019237445667386055, 0.0158018060028553, -0.0043478976003825665, 0.029747087508440018, 0.023089202120900154, -0.0009409330086782575, -0.025543231517076492, 0.018330521881580353, -0.0007228712784126401, -0.025713946670293808, -0.008359699510037899, 0.013539833016693592, -0.02050713822245598, -0.01687944494187832, -0.0025780631694942713, 0.03674640133976936, 0.010200221091508865, 0.01717819646000862, 0.008130301721394062, -0.0003285930142737925, 0.018245164304971695, 0.004267874639481306, -0.00354767101816833, -0.02680225484073162, -0.050275564193725586, 0.01002950593829155, 0.00929863192141056, -0.03045128658413887, 0.02364402636885643, -0.02407081425189972, 0.049080561846494675, -0.010077519342303276, -0.03836819529533386, -0.002864810870960355, 0.0036570352967828512, -0.010365600697696209, 0.007154025137424469, -0.0013670535990968347, 0.008039609529078007, -0.011075135320425034, -0.006300450302660465, 0.03311870992183685, -0.004222528543323278, 0.004673323128372431, 0.0009162593632936478, -0.0076288264244794846, 0.03437773138284683, 0.030365929007530212, 0.006001698784530163, -0.035423360764980316, -0.004694662522524595, -0.00964539684355259, -0.008674455806612968, 0.013955950736999512, -0.0023446637205779552, 0.019034720957279205, -0.01787172630429268, -0.015535064041614532, -0.01817047782242298, -0.0006568526150658727, -0.0010809727245941758, -0.02838136814534664, 0.001002950593829155, -0.008717134594917297, 0.01760498434305191, 0.02921360358595848, 0.014564123004674911, -0.046349119395017624, -0.03617024049162865, -0.018607934936881065, 0.009367985650897026, 0.0073940930888056755, -0.04293482005596161, -0.005457545164972544, -0.06167079135775566, 0.020528478547930717, 0.015577742829918861, 2.581980879767798e-05, -0.0004944733227603137, -0.05859792232513428, 0.014094656333327293, -0.023131880909204483, 0.00397179089486599, -0.0007968922727741301, 0.02364402636885643], [0.02728351019322872, 0.011218410916626453, 0.00658063217997551, -0.016963407397270203, -0.01516679022461176, -0.0016425466164946556, -0.013558191247284412, -0.01158400159329176, 0.00957847572863102, 0.022833749651908875, -0.07529078423976898, 0.005556978285312653, 0.03578610345721245, 0.009766493923962116, -0.049344293773174286, -0.02776399999856949, 0.0061837052926421165, 0.0005973490187898278, -0.013276164419949055, -0.026970146223902702, 0.06413505226373672, 0.02799380011856556, -0.030354471877217293, -0.056739673018455505, 0.013223936781287193, -0.035180266946554184, 0.04696273431181908, -0.042993463575839996, 0.030981197953224182, -0.02511085569858551, 0.04955320432782173, -0.03716490417718887, 0.05348069220781326, 0.04040299355983734, -0.0063769458793103695, -0.007489386014640331, 0.04270099103450775, 0.011113956570625305, -0.030646944418549538, -0.0001097588028642349, -0.007337926886975765, -0.002047307789325714, -0.00980827584862709, -0.04604353383183479, -0.05176763981580734, 0.07537434995174408, 0.0011104816803708673, -0.00034600545768626034, 0.007024563383311033, 0.004616887774318457, -0.006956668104976416, 0.042617425322532654, 0.012837455607950687, -0.07783947885036469, -0.04951142147183418, -0.017725924029946327, 0.018989823758602142, -0.006773872766643763, 0.01704697124660015, -0.009176325984299183, -0.016535144299268723, -0.006204595789313316, 0.024630365893244743, -0.021538512781262398, 0.0016020705224946141, -0.02141316793859005, 0.02822360023856163, 0.04959498718380928, -0.05544443801045418, -0.02172653190791607, 0.029560616239905357, -0.010727474465966225, 0.02444234862923622, -0.006361277773976326, 0.004217349458485842, -0.020692432299256325, -0.028369836509227753, 0.011009502224624157, 0.05686501786112785, 0.020608868449926376, -0.015271244570612907, 0.04779836907982826, -0.009912730194628239, -0.019710559397935867, 0.025236202403903008, -0.0135895274579525, -0.05076487734913826, 0.015866635367274284, 0.028369836509227753, 0.01082148402929306, 0.025549564510583878, 0.004684783518314362, -0.013902890495955944, 0.004368808586150408, -0.006220264360308647, -0.029560616239905357, 0.03440730646252632, -0.037666283547878265, -0.012377855367958546, 0.04153110086917877, 0.013244828209280968, -0.003635015804320574, -0.0070350090973079205, 0.0061837052926421165, -0.044163353741168976, -0.01603376306593418, -0.004716119728982449, 0.028432508930563927, 0.01580396294593811, 0.014592290855944157, 0.014916099607944489, -0.018906259909272194, 0.03386414051055908, 0.06739402562379837, -0.00557786924764514, -0.0042747994884848595, -0.030542489141225815, 0.008654053322970867, 0.012356964871287346, -0.02199811302125454, 0.03106476180255413, 0.028202708810567856, 0.021360941231250763, -0.04374553635716438, 0.05180942267179489, 0.015532380901277065, -0.007891535758972168, 0.047673024237155914, -0.027199946343898773, -0.022102568298578262, 0.04909360408782959, -0.019762787967920303, 0.05381494760513306, 0.002679257420822978, -0.022833749651908875, -0.0008656664867885411, 0.037624504417181015, -0.013505963608622551, -0.011197520419955254, -0.01600242592394352, 0.02511085569858551, 0.018321314826607704, -0.00658063217997551, 0.008737617172300816, -0.07056944817304611, 0.024818383157253265, -0.034825123846530914, 0.026803018525242805, 0.04123862832784653, -0.0042199608869850636, 0.01323438249528408, -0.012336073443293571, 0.0003910514642484486, -0.021789204329252243, -0.05456702038645744, 0.025403328239917755, 0.009662039577960968, 0.029560616239905357, -0.010017184540629387, 0.0033059841953217983, 0.0014819479547441006, 0.017506569623947144, 0.021037131547927856, 0.029059235006570816, 0.045709278434515, -0.023021766915917397, 0.005943459924310446, 0.03891973942518234, -0.04332771897315979, 0.018895814195275307, -0.012691219337284565, -0.03309118002653122, -0.0004968115827068686, 0.00658063217997551, -0.1198301762342453, -0.026531437411904335, 0.04458117112517357, 0.026698565110564232, 0.01241963729262352, -0.009019643999636173, 0.020232832059264183, 0.05761709064245224, -0.039692699909210205, 0.01798706129193306, 0.02226969413459301, 0.03156614303588867, -0.0014127468457445502, -0.037436485290527344, -0.028056472539901733, 0.019992586225271225, -0.010424557141959667, -0.027701327577233315, 0.03465799614787102, 0.07056944817304611, -0.0005480595864355564, 0.016994742676615715, -0.02335602045059204, -0.024233438074588776, 0.0372275747358799, -0.05185120180249214, 0.018780915066599846, -0.041510209441185, 0.01911516860127449, -0.009155434556305408, -0.021747421473264694, 0.0062150415033102036, 0.013380618765950203, 0.010361883789300919, 0.016482915729284286, -0.01539659034460783, 0.05126625671982765, -0.02659410983324051, -0.044205136597156525, -0.02289642207324505, 0.014863871969282627, -0.007102904375642538, 0.03729024901986122, 0.014686299487948418, 0.00025134359020739794, 0.019553877413272858, -0.05247792974114418, -0.024964619427919388, 0.011124402284622192, -0.03979715704917908, -0.02222791314125061, -0.0513080395758152, -0.01704697124660015, -0.04157288372516632, -0.022750185802578926, -0.02686569094657898, -0.036621738225221634, 0.054483454674482346, -0.02308443933725357, -0.03497136011719704, 0.02830716408789158, 0.033070288598537445, -0.014759417623281479, -0.07278387993574142, -0.0032380889169871807, 0.07825729250907898, 0.03070961683988571, -0.029518835246562958, -0.01681717112660408, -0.01222117431461811, -0.030438033863902092, -0.01747523434460163, 0.013098591938614845, 0.021496731787919998, 0.03737381100654602, -0.011479547247290611, 0.013756654225289822, 0.03891973942518234, 0.03912864625453949, -0.06359188258647919, -0.01023653894662857, 0.0686056986451149, -0.040006063878536224, -0.05431632697582245, 0.007071568164974451, -0.009876171126961708, 0.07056944817304611, -0.0011927395826205611, -0.010079856961965561, -0.01551148947328329, -0.03741559386253357, -0.0744551494717598, 0.013756654225289822, 0.002893388969823718, 0.004723953548818827, 0.03818855807185173, 0.0016373239923268557, 0.03664262965321541, -0.016879843547940254, -0.040194083005189896, -0.05607116222381592, 0.038794394582509995, -0.014738527126610279, 0.015104117803275585, 0.018018396571278572, -0.003384325187653303, -0.04102971777319908, -0.03449086844921112, 0.019606105983257294, -0.07504009455442429, -0.0028254936914891005, 0.028516072779893875, -0.023502256721258163, 0.011354201473295689, 0.03344632312655449, 0.00881595816463232, 0.07065300643444061, -0.026385201141238213, 0.004021497443318367, 0.03522204980254173, 0.06108497828245163, 0.004389699548482895, 0.0010856736917048693, 0.0285369623452425, -0.02048352360725403, -0.01422670017927885, -0.03292405232787132, 0.024672146886587143, 0.005755441728979349, -0.08310398459434509, -0.07884223759174347, -0.00883684866130352, -0.0008310659322887659, -0.014884763397276402, -0.008544376119971275, -0.014122244901955128, -0.04433048143982887, 0.06421861052513123, -0.08974728733301163, -0.054525237530469894, -0.012294292449951172, -0.03501313924789429, 0.03858548402786255, -0.03348810598254204, 0.06710155308246613, 0.006726868450641632, 0.03047981671988964, 0.0010145141277462244, 0.01767369732260704, -0.013453736901283264, -0.03716490417718887, 0.009740379638969898, -0.01167801022529602, -0.0027549867518246174, 0.045918188989162445, 0.024233438074588776, -0.03864815831184387, -0.02090134099125862, -0.008241457864642143, 0.03783341124653816, -0.011145292781293392, -0.022123457863926888, -0.005462969187647104, 1.1720527254510671e-05, -0.00973515771329403, -0.022165240719914436, 0.015741290524601936, 0.012054046615958214, 0.02912190742790699, 0.06417682766914368, -0.041907135397195816, 0.03325830399990082, 0.0599568709731102, 0.012315182946622372, -0.01853022351861, 0.014728081412613392, -0.02343958429992199, -0.005426410119980574, -0.029372598975896835, 0.007849753834307194, -0.057073924690485, 0.005395073909312487, 0.02862052619457245, 0.011281083337962627, -0.0008180091390386224, 0.08189231157302856, 0.016023317351937294, -0.007452826946973801, -0.01216894667595625, -0.0006378251709975302, 0.044790081679821014, -0.030438033863902092, -0.011448211036622524, -0.028432508930563927, 0.006679863668978214, -0.041865356266498566, 0.023147111758589745, -0.027304399758577347, 0.02172653190791607, -0.021810095757246017, 0.061461012810468674, -0.02511085569858551, 0.029518835246562958, 0.01442516315728426, -0.0031362457666546106, -0.0007187773589976132, 0.015626389533281326, -0.017590133473277092, 0.016650043427944183, -0.006716422736644745, 0.002130871405825019, 0.01802884228527546, -0.030855853110551834, -0.042262282222509384, 0.04462295398116112, 0.0011346368119120598, 0.03967181220650673, -0.014101354405283928, 0.006173259578645229, 0.02199811302125454, -0.02939349040389061, -0.0006035510450601578, 0.010335770435631275, 0.0014427774585783482, -0.023272458463907242, -0.0036689634434878826, -0.04784015193581581, -0.028390726074576378, 0.0025930823758244514, 0.016691826283931732, -0.03210930526256561, 0.012294292449951172, 0.0030422366689890623, 0.016409797593951225, 0.02021194063127041, -0.011824246495962143, 0.012816564179956913, -0.014111800119280815, 0.03777074068784714, 0.025131747126579285, 0.007792303804308176, 0.016639597713947296, 0.015480153262615204, 0.025089966133236885, -0.03344632312655449, -0.05377316474914551, -0.007515499833971262, 0.001526341075077653, -0.05640541762113571, 0.014299818314611912, -0.0284951813519001, 0.0018984600901603699, 0.015459262765944004, 0.006058359518647194, -0.02316800318658352, 0.015532380901277065, -0.0024050644133239985, -0.017694588750600815, -0.028244489803910255, 0.02398274838924408, -0.025591347366571426, -0.0030370140448212624, -0.04345306381583214, 0.00943746231496334, -0.03954646363854408, -0.036538176238536835, -0.029247254133224487, 0.0013840218307450414, -0.00583900511264801, 0.022395040839910507, 0.0018854032969102263, 0.0120853828266263, -0.004530712962150574, 0.02448412962257862, 0.01099905651062727, 0.036851540207862854, -0.013798436149954796, -0.01845710538327694, -0.0031440798193216324, 0.003629793180152774, 0.012910573743283749, -0.039922501891851425, 0.01728721521794796, -0.0372275747358799, 0.006497068330645561, -0.00531412148848176, 0.05297931283712387, 0.039650920778512955, 0.028390726074576378, 0.009688152931630611, 0.04268009960651398, 0.031628817319869995, 0.012544983066618443, 0.01526079885661602, 0.009797830134630203, -0.03584877774119377, 0.0034339409321546555, -0.022603949531912804, -0.00558831449598074, 0.0031075207516551018, -0.015532380901277065, 0.01016342081129551, -0.006909663788974285, -0.029184581711888313, -0.02020149677991867, -0.04092526435852051, 0.0057502188719809055, 0.0457928441464901, -0.015250354073941708, -0.059622615575790405, 0.07767234742641449, 0.0035096704959869385, 0.05260327458381653, 0.01267032790929079, -0.055695127695798874, -0.04441404342651367, 0.01325527299195528, 0.02335602045059204, 0.03323741629719734, -0.006638082209974527, -0.0016738830599933863, 0.0018279533833265305, -0.057909563183784485, 0.004917194601148367, 0.007719185668975115, -0.022603949531912804, -0.017767706885933876, -0.0854019820690155, 0.024149876087903976, 0.01877046935260296, 0.021434059366583824, -0.0005131326033733785, 0.022165240719914436, -0.015386144630610943, 0.007181245367974043, -0.0005878828815184534, 0.003914431668817997, 0.03639193996787071, -0.00580244604498148, 0.003742081578820944, 0.014686299487948418, -0.0038569816388189793, -0.010330547578632832, 0.006982781924307346, -0.07303456962108612, 0.004084169864654541, 0.0387108288705349, -0.036621738225221634, -0.002149150939658284, -0.01767369732260704, -0.013537300750613213, 0.02308443933725357, -0.008810735307633877, -0.04516611620783806, 0.009416570886969566, -0.000736404093913734, 0.01323438249528408, -0.016409797593951225, -0.030981197953224182, -0.003125800285488367, 0.00042075570672750473, -0.016754498705267906, -0.004841465037316084, 0.015427926555275917, -0.024275220930576324, -0.0024324837140738964, 0.0092442212626338, -0.02389918453991413, 0.019553877413272858, -0.01830042526125908, -0.02371116727590561, -0.036726195365190506, 0.04758945852518082, -0.016670934855937958, 0.0048780241049826145, 0.009191993623971939, 0.01731855235993862, -0.015553271397948265, -0.001444083172827959, 0.004363585729151964, -0.0013043752405792475, 0.020431295037269592, 0.015333916991949081, -0.03169148787856102, 0.0063456096686422825, 0.010988610796630383, -0.009202439337968826, 0.031900398433208466, 2.0146249880781397e-05, -0.008131780661642551, -0.00661719124764204, -0.01273300126194954, -0.01264943741261959, -0.026531437411904335, 0.02862052619457245, 0.017433451488614082, -0.010064189322292805, -0.011270638555288315, -0.012095828540623188, 0.05059774965047836, 0.014466945081949234, 0.026635892689228058, 0.023773839697241783, -0.04324415326118469, 0.020431295037269592, 0.017140978947281837, 0.005891232751309872, 0.0199716966599226, -0.014999662525951862, -0.02479749359190464, -0.043118808418512344, 0.007661736104637384, -0.011009502224624157, -0.02051485888659954, 0.008356357924640179, -0.02059842273592949, 0.029059235006570816, -0.0005072570638731122, -0.019324079155921936, -0.03580699488520622, -0.015991980209946632, -0.0025669687893241644, 0.031795941293239594, 0.024066312238574028, -0.02862052619457245, 0.02452591061592102, 0.01911516860127449, 0.03891973942518234, 0.010455893352627754, 0.036997776478528976, -0.037352919578552246, -0.02791023626923561, -0.004538547247648239, -0.035138487815856934, 0.07270031422376633, 0.0023776451125741005, 0.012722555547952652, 0.01650380715727806, 0.016482915729284286, -0.04909360408782959, 0.005076487548649311, -0.001843621488660574, -0.05097378417849541, -0.007760967593640089, -0.004883246961981058, -0.027387963607907295, -0.019125614315271378, -0.0011398594360798597, -0.02830716408789158, 0.013829772360622883, -0.04240851849317551, -0.0015707341954112053, -0.008967417292296886, -0.01775726117193699, -0.029414379969239235, -0.01817507855594158, -0.020807331427931786, -0.010314879938960075, 0.013171710073947906, -0.009682930074632168, 0.028745872899889946, -0.014707189984619617, -0.021496731787919998, -0.026364309713244438, -0.027179054915905, 0.04061190038919449, 0.02008659578859806, 0.05586225539445877, 0.060207560658454895, -0.04575106129050255, 0.016691826283931732, 0.023606711998581886, 0.01526079885661602, -0.0013324473984539509, 0.05866163596510887, 0.005055596586316824, 0.03612035885453224, 0.02316800318658352, -0.011792910285294056, -0.004146842751652002, -0.03083496168255806, 0.010988610796630383, -0.005854673683643341, 0.023021766915917397, 0.028641417622566223, 0.04683738946914673, -0.028599636629223824, 0.0184466615319252, -0.0053741829469799995, 0.02569580078125, -0.011385537683963776, -0.018018396571278572, 0.034010376781225204, -0.013599973171949387, -0.0010876322630792856, -0.014508727006614208, 0.01264943741261959, -0.013443291187286377, 0.013088146224617958, -0.021037131547927856, -0.030960306525230408, -0.016838062554597855, 0.006470954976975918, 0.03403126820921898, -0.03520115837454796, -0.004152065608650446, -0.0045646606013178825, 0.0009812192292883992, 0.023000875487923622, 0.013923781923949718, -0.031231889501214027, -0.010387998074293137, 0.008455590344965458, -0.02172653190791607, -0.013620863668620586, 0.06760293990373611, 0.0036167362704873085, 0.011960037983953953, 0.00842947605997324, -0.00410767225548625, 0.013516409322619438, 0.05260327458381653, -0.02090134099125862, 0.0038073656614869833, 0.039107754826545715, -0.01109306514263153, 0.008612271398305893, 0.008152672089636326, -0.02047307789325714, 0.005473414435982704, -0.025507783517241478, 0.008356357924640179, 0.00482579693198204, 0.00541074201464653, 0.03181683272123337, -0.007734854239970446, -0.01798706129193306, -0.03572343289852142, -0.002765432232990861, 0.010158197954297066, -0.02339780330657959, -0.012001819908618927, 0.027471527457237244, -0.016054652631282806, -0.011333310976624489, 0.007677404209971428, -0.02690747380256653, 0.0513916015625, -0.011260192841291428, -0.005541310179978609, 0.009097984991967678, 0.0014388604322448373, 0.007306590676307678, -0.004327026661485434, 0.025236202403903008, -0.004086781293153763, -0.010011961683630943, -0.0427427738904953, 0.0007559892837889493, 0.0514751672744751, -0.03812588378787041, -0.016263561323285103, -0.03196306899189949, -0.018791360780596733, 0.0243378933519125, -0.029414379969239235, -0.0020721156615763903, -0.0341775044798851, 0.0019389361841604114, -0.011103510856628418, -0.022332366555929184, 0.029330817982554436, 0.004987701307982206, 0.0023241122253239155, 0.019825460389256477, 0.0010295294923707843, -0.009035312570631504, 0.003742081578820944, -0.03296583145856857, -0.0021713473834097385, 0.029957544058561325, -0.02939349040389061, 0.006486623082309961, -0.010967720299959183, -0.009280780330300331, -0.014070018194615841, -0.015824852511286736, -0.03484601527452469, 0.02646876499056816, 0.021705640479922295, 0.03839746490120888, -0.016639597713947296, -0.037436485290527344, -0.0340939424932003, 0.007478940766304731, 0.010210425592958927, -0.012795673683285713, -0.039024192839860916, -0.00600613234564662, 0.007912426255643368, -0.014122244901955128, -0.031795941293239594, 0.0009250749717466533, -0.010863265953958035, 0.026949254795908928, -0.016326235607266426, 0.01384021807461977, -0.0074005997739732265, -0.0036402384284883738, 0.0009015726973302662, 0.014665408991277218, -0.051725856959819794, -0.03935844823718071, -0.00758339511230588, -0.004838853608816862, 0.022833749651908875, -0.039024192839860916, -0.0065597412176430225, 0.036767974495887756, -0.026656782254576683, 0.005308898631483316, 0.008925635367631912, -0.003368656849488616, -0.002950838999822736, -0.03747826814651489, 0.006021800450980663, -0.0008069108589552343, 0.007792303804308176, -0.0018788749584928155, 0.00241812109015882, 0.06325763463973999, -0.006497068330645561, -0.013443291187286377, 0.023272458463907242, -0.010121638886630535, -0.009411348029971123, -0.019710559397935867, 0.017140978947281837, 0.01592930778861046, 0.05001280456781387, 0.004687394481152296, -0.00047037156764417887, 0.01884358748793602, -0.008142226375639439, 0.008878630585968494, 0.006893995683640242, 0.03321652486920357, 0.006632859352976084, -0.032882269471883774, -0.03192128986120224, 0.03781251981854439, -0.00957847572863102, -0.01460273563861847, -0.010105970315635204, -0.012283846735954285, 0.00022212897602003068, 0.005363737232983112, 0.023544039577245712, -0.008826402947306633, -0.017496125772595406, -0.029142798855900764, -0.02272929437458515, 0.04042388126254082, 0.021204259246587753, -0.010946828871965408, 0.0030657388269901276, 0.05719927325844765, 0.0036402384284883738, -0.015448817051947117, 0.016148662194609642, 0.020504413172602654, 0.00583900511264801, -0.0272208359092474, 0.0457928441464901, -0.0034391635563224554, 0.031169215217232704, -0.011636229231953621, -0.029289035126566887, 0.009291226044297218, 0.0005940848495811224, 0.017579687759280205, 0.00034633188624866307, 0.006251600570976734, -0.0024768768344074488, 0.008126558735966682, -0.05494305491447449, -0.02872498147189617, 0.006262045819312334, -0.021068468689918518, -0.01588752679526806, 0.014205808751285076, -0.002104757819324732, -0.0026675062254071236, -0.015521935187280178, -0.006465732119977474, -0.023648492991924286, 0.02444234862923622, 0.002653143834322691, 0.026343420147895813, 0.012074938043951988, 0.012900128029286861, 0.03919132053852081, -0.0005549144116230309, -0.026113620027899742, 0.024379674345254898, 0.012210728600621223, -0.029289035126566887, 0.016085989773273468, 0.033153850585222244, 0.002260133856907487, -0.0009884005412459373, -0.012252510525286198, -0.028745872899889946, 0.002663589082658291, 0.018133297562599182, 0.040110521018505096, -0.008246680721640587, -0.014080463908612728, 0.03637104853987694, -0.015501044690608978, -0.014080463908612728, -0.02903834544122219, -0.007802749518305063, 0.01199137419462204, 0.0016477693570777774, -0.02908012643456459, -0.04004784673452377, -0.000603224616497755, -0.0136104179546237, -0.009782161563634872, -0.001369659323245287, 0.011051284149289131, 0.01724543422460556, 0.02962329052388668, 0.0009753436897881329, -0.026134509593248367, 0.007264808751642704, 0.023188894614577293, -0.045709278434515, -0.02331423945724964, 0.05490127205848694, 0.022290585562586784, 0.032213762402534485, 0.014540063217282295, 0.008163117803633213, 0.01442516315728426, 0.06008221581578255, 0.005113046616315842, 0.022395040839910507, 0.024066312238574028, 0.002342391759157181, 0.0015119785675778985, 0.007353594992309809, -0.02632252871990204, -0.041447535157203674, -0.016984298825263977, -0.04165644571185112, 0.0340939424932003, 0.004295690450817347, 0.03624570369720459, 0.014132690615952015, -0.00903008971363306, 0.015824852511286736, -0.01039322093129158, 0.04470651596784592, -0.0015563716879114509, -0.022415930405259132, 0.01577262580394745, 0.009155434556305408, -0.06409326940774918, 0.01541748084127903, 0.0029273368418216705, 0.010461116209626198, 0.020953567698597908, 0.04251297190785408, -0.0030892412178218365, -0.010925938375294209, -0.02379472926259041, 0.017412561923265457, 0.02366938441991806, 0.006256823427975178, -0.036266595125198364, -0.006324718706309795, -0.005933014210313559, -0.00042238779133185744, 0.010011961683630943, 0.0020695042330771685, 0.008810735307633877, 0.003577565774321556, -0.02506907470524311, 0.0015211183344945312, 0.007285699713975191, -0.011145292781293392, -0.045375026762485504, -0.014205808751285076, 0.03981804847717285, -0.015856189653277397, -0.028662309050559998, 0.01895848847925663, 0.029873980209231377, -0.01872868835926056, -0.011291529051959515, -0.00604269141331315, -0.0163889080286026, 0.019324079155921936, -0.009991071186959743, 0.01222117431461811, 0.015198126435279846, 0.03352988883852959, 0.010314879938960075, -0.026531437411904335, 0.013223936781287193, 0.053355347365140915, -0.03210930526256561, 0.003465277375653386, 0.012555427849292755, 0.02596738375723362, -0.015939753502607346, 0.021162476390600204, 0.03800053894519806, -0.01701563410460949, 0.0032720365561544895, 0.04399622604250908, -0.027492418885231018, 0.014143136329948902, 0.03833479434251785, 0.00231627793982625, 0.015668172389268875, 0.011960037983953953, 0.04458117112517357, -0.016138216480612755, 0.016942515969276428, -0.03265247121453285, 0.014007345773279667, -0.016127770766615868, -0.004042388405650854, -0.02502729371190071, -0.01122885663062334, 0.016409797593951225, 0.02371116727590561, -0.03206752613186836, -0.006220264360308647, 0.006382168736308813, -0.027847563847899437, -0.01779904216527939, 0.013046364299952984, -0.007635622285306454, -0.01630534417927265, 0.034281957894563675, 0.013485073111951351, 0.020953567698597908, 0.015657726675271988, -0.0020133601501584053, -0.005468192044645548, 0.03187950700521469, 0.0073797088116407394, 0.00680520897731185, 0.00684176804497838, -0.026050947606563568, 0.05189298465847969, 0.004329638089984655, 0.011239301413297653, 0.011886919848620892, -0.012691219337284565, -0.02623896487057209, -0.012137610465288162, -0.028787653893232346, -0.04967854917049408, 0.003232866059988737, 0.0032250320073217154, 0.001578568248078227, 0.02862052619457245, -0.023376911878585815, 0.002231408841907978, -0.004295690450817347, 0.020191051065921783, -0.02375294826924801, 0.055026616901159286, -0.031942177563905716, 0.05318821966648102, -0.004703063052147627, 0.0032485341653227806, -0.01124974712729454, 0.000972732319496572, 0.017767706885933876, -0.0016908568795770407, -0.024149876087903976, 0.0023071381729096174, -0.01174068357795477, -0.043703753501176834, 0.031983960419893265, -0.0050164260901510715, -0.02529887482523918, 0.04332771897315979, 0.016482915729284286, 0.01877046935260296, -0.04625244438648224, 0.02573758363723755, 0.010905047878623009, 0.045416805893182755, -0.022959094494581223, 0.01316126435995102, 0.006643304601311684, -0.012127164751291275, -0.036141250282526016, 0.0120853828266263, -0.026259856298565865, 0.0023789508268237114, -0.007661736104637384, 0.01323438249528408, -0.03313295915722847, -0.028474289923906326, -0.0037708065938204527, -0.012430083006620407, 0.004086781293153763, 0.003423495450988412, -0.016566479578614235, 0.013286609202623367, 0.007181245367974043, 0.05540265515446663, -0.01814374327659607, -0.00658063217997551, 0.030500708147883415, -0.004044999834150076, -0.0077139632776379585, -0.003867427119985223, 0.0002552606165409088, -0.009594143368303776, 0.003911820240318775, -0.0327778160572052, 0.023878293111920357, 0.016482915729284286, -0.009552362374961376, 0.011594447307288647, -0.013109036721289158, 0.019491204991936684, -0.009505357593297958, 0.006951445247977972, 0.026385201141238213, -0.03265247121453285, -0.00977171678096056, -0.014623627066612244, -0.024943729862570763, -0.004240851849317551, -0.024505021050572395, -0.0156472809612751, -0.048801131546497345, 0.004747455939650536, -0.007332704495638609, 0.0025121301878243685, -0.0029821754433214664, 0.01399690005928278, -0.024191657081246376, 0.02012837864458561, 0.029059235006570816, -0.0184884425252676, 0.0013983843382447958, 0.012941909953951836, -0.03777074068784714, -0.010497675277292728, 0.010967720299959183, -0.014299818314611912, -0.02145494893193245, -0.029853088781237602, 0.016096435487270355, -0.02444234862923622, 0.01267032790929079, 0.014936990104615688, 0.03559808433055878, -0.013955118134617805, -0.016211334615945816, 0.007572949398308992, -0.00940090324729681, 0.05594581738114357, -0.004468040075153112, 0.019250961020588875, 0.004196458496153355, -0.002420732518658042, 0.017767706885933876, -0.04169822856783867, 0.041280411183834076, 0.010325324721634388, 0.015104117803275585, -0.011960037983953953, -0.008533930405974388, 0.01339106447994709, -0.010523788630962372, -0.002236631466075778, -0.01821686141192913, -0.00901442114263773, 0.018812252208590508, 0.005692768841981888, -0.002177875954657793, 0.015125008299946785, -0.014038681983947754, 0.006121032405644655, -0.04675382375717163, -0.007760967593640089, -0.016869397833943367, -0.02047307789325714, 0.028160927817225456, -0.028202708810567856, -0.02195633202791214, 0.021089358255267143, -0.017924388870596886, -0.022248804569244385, 0.001737861311994493, 0.010455893352627754, -0.003932711202651262, -0.03952557593584061, -0.029226362705230713, 0.010884156450629234, 0.01460273563861847, -0.010085079818964005, -0.0386272668838501, -0.035639867186546326, -0.019574768841266632, -0.013965563848614693, 0.012356964871287346, -0.0015824853908270597, -0.032171979546546936, -0.0035070590674877167, -0.025800256058573723, 0.03461621329188347, 0.0082153445109725, -0.02989487163722515, -0.011124402284622192, 0.014487835578620434, 0.03204663470387459, 0.01440427266061306, -0.030458925291895866, -0.01516679022461176, -0.007322258781641722, -0.01690073497593403, 0.002838550368323922, -0.031712379306554794, 0.0030944638419896364, 0.014289372600615025, 0.010095525532960892, -0.0092442212626338, 0.016420243307948112, -0.008131780661642551, 0.0016778000863268971, -0.021110249683260918, -0.0030866297893226147, -0.0018566782819107175, -0.01704697124660015, 0.00558831449598074, 0.03238088637590408, -0.013693981803953648, 0.01002240739762783, -0.03741559386253357, 0.01140642911195755, -0.038543701171875, 0.01787216030061245, 0.02339780330657959, 0.0029795640148222446, -0.010758811607956886, 0.008356357924640179, -0.006852213758975267, -0.0015302581014111638, 0.011270638555288315, 0.03492957726120949, 0.011166183277964592, -0.023272458463907242, 0.013495518825948238, -0.04316059127449989, -0.008554821833968163, 0.0011927395826205611, -0.028160927817225456, 0.01181380171328783, -0.030960306525230408, 0.01760057918727398, 0.031712379306554794, -0.017140978947281837, -0.01224206481128931, -0.0021700416691601276, 0.011792910285294056, 0.0038334792479872704, 0.007170799653977156, 0.00020172771473880857, -0.0011026476277038455, -0.053438909351825714, -0.006836545653641224, -0.019532987847924232, 0.025842037051916122, -0.008486926555633545, -0.0013709650374948978, -0.013328391127288342, 0.004347917623817921, -0.034010376781225204, 0.02226969413459301, 0.004475874360650778, 0.010189534164965153, -0.0228128582239151, 0.059079453349113464, -0.006972336210310459, 0.007442381698638201, 0.008909966796636581, -0.009369567036628723, 0.04575106129050255, 0.0228546392172575, -0.0036767974961549044, -0.010748365893959999, -0.014446054585278034, -0.017193207517266273, -0.03833479434251785, -0.01199137419462204, 0.011573555879294872, -0.022060785442590714, 0.03323741629719734, 0.029101017862558365, -0.030124671757221222, 0.06906530261039734, -0.006047914270311594, 0.03894063085317612, 0.0033791023306548595, 0.014759417623281479, -0.0049850898794829845, 0.01647247187793255, -0.018749577924609184, -0.020577531307935715, 0.0017835601465776563, 0.0016177387442439795, 0.010142529383301735, -0.003178027458488941, 0.03156614303588867, 0.018164632841944695, 0.007489386014640331, 0.02993665263056755, -0.05703214555978775, 0.014205808751285076, -0.00802210345864296, -0.006742536555975676, -0.00290122302249074, 0.0027758777141571045, 0.011301974765956402, 0.010001515969634056, 0.013401509262621403, 0.011761574074625969, 0.018718242645263672, -0.014895208179950714, -0.02989487163722515, -0.018467551097273827, -0.009787384420633316, 0.047088079154491425, 0.010779702104628086, 0.0025682745035737753, -0.0171723160892725, -0.0017456954810768366, 0.008272795006632805, -0.03413572162389755, -0.004851910285651684, 0.029226362705230713, 0.0027445415034890175, -0.03919132053852081, -0.002604833571240306, -0.02600916475057602, -0.04084170237183571, 0.04098793864250183, -0.0041442313231527805, 0.025257091969251633, -0.001787477289326489, -0.007969876751303673, 0.03940022736787796, 0.010173866525292397, -0.004387088119983673, 1.5311148672481067e-05, -0.043620191514492035, 0.011803355999290943, 0.00942179374396801, 0.03219287097454071, -0.03438641503453255, 0.024985510855913162, 0.012941909953951836, -0.027429746463894844, 0.0005180289153940976, 0.02145494893193245, 0.0025682745035737753, 0.006711200345307589, 0.019721005111932755, -0.014801199547946453, -0.005776332691311836, 0.009677707217633724, -0.0429098978638649, 0.013714873231947422, 0.0369768850505352, -0.027429746463894844, 0.001841010176576674, -0.008685389533638954, -0.00025493421708233654, -0.0025669687893241644, -0.04236673563718796, -0.026635892689228058, 0.028244489803910255, 0.01004329789429903, 0.0027706550899893045, 0.016535144299268723, -0.0064135049469769, 0.006303827743977308, 0.008048217743635178, 0.010523788630962372, -0.010382775217294693, 0.013422400690615177, 0.005797223653644323, -0.013171710073947906, -0.031002089381217957, 0.0005500180996023118, -0.017652805894613266, -0.010957274585962296, -0.002502990420907736, 0.015824852511286736, -0.02235325798392296, 0.01417447254061699, 0.03666352108120918, 0.02600916475057602, 0.007724408525973558, -0.012325628660619259, 0.013923781923949718, -0.043578408658504486, -0.04088348150253296, -0.026426982134580612, -0.044790081679821014, -0.03678886592388153, 0.01307770051062107, -0.016336679458618164, -0.005640541668981314, -0.01573084481060505, -0.019282296299934387, -0.001603376236744225, 0.005739773623645306, 0.006815654691308737, -0.05247792974114418, 0.034010376781225204, -0.015615944750607014, 0.010340993292629719, 0.025716692209243774, 0.01783037930727005, 0.04042388126254082, -0.016608262434601784, -0.005593537352979183, -0.0128270098939538, 0.008810735307633877, 0.013349282555282116, 0.016838062554597855, 0.0354936309158802, -0.029247254133224487, -0.013422400690615177, -0.030855853110551834, 0.016576925292611122, -0.00840858556330204, 0.0046952287666499615, -0.020838668569922447, -0.005656209774315357, 0.015835298225283623, 0.010100748389959335, 0.012837455607950687, 0.0057502188719809055, -0.0023815620224922895, -0.012356964871287346, 0.025486892089247704, -0.026259856298565865, 0.0011725014774128795, -0.004152065608650446, -0.010273098014295101, 0.013307500630617142, 0.0037185794208198786, -0.0015158955939114094, -0.002523881383240223, -0.014550508931279182, 0.022102568298578262, 0.03921221196651459, -0.00636650063097477, 0.02231147699058056, -0.004423647187650204, 0.030500708147883415, 0.03950468450784683, 0.0010928550036624074, 0.03499225154519081, -0.0035827886313199997, 0.03357166796922684, 0.0012208117404952645, 0.012952355667948723, -0.03772895783185959, 0.03729024901986122, -0.01559505332261324, -0.013599973171949387, -0.0028098253533244133, 0.019083833321928978, -0.004598608240485191, 0.007525945082306862, -0.0006867881747893989, 0.03242266923189163, 0.010142529383301735, -0.009959734044969082, 0.012450973503291607, 0.008554821833968163, 0.04395444318652153, -0.0016895511653274298, 0.004804905969649553, -0.021381830796599388, -0.016294898465275764, -0.004815351217985153, -0.00197027251124382, -0.03839746490120888, 0.012659883126616478, -0.0017992283683270216, 0.02912190742790699, 0.012064492329955101, -0.02632252871990204, -0.031231889501214027, 0.01677538827061653, -0.02362760342657566, -0.018624233081936836, -0.011312419548630714, -0.01935541443526745, 0.00865927617996931, 0.014926544390618801, 0.017078306525945663, -0.020619314163923264, 0.021308712661266327, -0.03415661305189133, 0.01485342625528574, 0.014456499367952347, 0.043077025562524796, 0.009505357593297958, 0.0070559000596404076, -0.0025317154359072447, -0.0022666621953248978, 0.0037446930073201656, -0.006361277773976326, -0.0192718505859375, 0.01259720977395773, -0.01004329789429903, -0.014362490735948086, -0.014352045021951199, 0.013317946344614029, 0.02226969413459301, -0.04328593611717224, -0.018007952719926834, -0.012440528720617294, 0.008883853442966938, 0.043703753501176834, -0.012189837172627449, -0.018018396571278572, -0.018812252208590508, -0.013056810013949871, -0.00981349777430296, -0.007515499833971262, -0.007353594992309809, 0.0013761877780780196, -0.05260327458381653, 0.012210728600621223, 0.004528101533651352, 0.018509333953261375, 0.017767706885933876, -0.0429098978638649, 0.02199811302125454, -0.010769256390631199, 0.03866904601454735, 0.010894602164626122, 0.008894299156963825], [-0.007505695801228285, 0.03197639808058739, 0.05658744275569916, 0.008381453342735767, -0.02809162437915802, 0.0004329669172875583, -0.029753318056464195, 0.06619832664728165, 0.008224266581237316, 0.028832649812102318, -0.03754531964659691, 0.004103712271898985, 0.034132108092308044, 0.03595099225640297, -0.03698393702507019, -0.047740042209625244, -0.00934141967445612, 0.04385526850819588, 0.00885301548987627, 0.018716521561145782, 0.06678216904401779, -0.03269496560096741, -0.04192411154508591, -0.02530716173350811, -0.02685658074915409, -0.023151449859142303, 0.025688903406262398, -0.037927061319351196, 0.04311424121260643, 0.004519136156886816, 0.05245566368103027, -0.03509768843650818, 0.06579413264989853, 0.025015242397785187, -0.018828798085451126, -0.00990841630846262, -0.02878773957490921, 0.02651975117623806, -0.024813145399093628, 0.00143994833342731, -0.010946976020932198, -0.010728036053478718, 0.026654481887817383, -0.042171116918325424, -0.050704143941402435, 0.0746864452958107, -0.028405997902154922, -0.019828060641884804, -0.0010750491637736559, -0.02214095927774906, 0.003940911032259464, 0.041272904723882675, 0.005498750135302544, -0.07338403165340424, -0.035165052860975266, 0.009689477272331715, -0.005358404014259577, -0.019760694354772568, 0.010441730730235577, -0.00495420815423131, 0.004535977728664875, -0.010632600635290146, 0.04010522738099098, -0.013708981685340405, -0.021321339532732964, -0.005434190854430199, 0.04742566868662834, 0.034828223288059235, -0.041070807725191116, -0.0051815686747431755, 0.029416488483548164, 0.02031085081398487, 0.014326503500342369, -0.004269320517778397, -0.024655956774950027, -0.013147598132491112, -0.002359213540330529, 0.04374299198389053, 0.027126044034957886, -0.016482215374708176, -0.03974594175815582, 0.05510539188981056, -0.039004918187856674, -0.018963530659675598, 0.00828601885586977, 0.00559979910030961, -0.020479265600442886, 0.026923947036266327, 0.022051138803362846, -0.02806916832923889, 0.009667021222412586, 0.009987009689211845, -0.005408928729593754, 0.043226517736911774, -0.026834124699234962, -0.036894116550683975, -0.006147148087620735, -0.019322816282510757, -0.0235781017690897, 0.03303179889917374, 0.009526675567030907, -0.016605719923973083, 0.016190296038985252, 0.02280339226126671, 0.009526675567030907, -0.04814423620700836, -0.029214389622211456, 0.006214513909071684, 0.0610785111784935, 8.097296813502908e-06, 0.004061608575284481, -0.0586533360183239, 0.015426814556121826, 0.04607834666967392, -0.04136272519826889, -0.012709719128906727, -0.03435666114091873, -0.01659449189901352, 0.022590067237615585, -0.03309916332364082, 0.05447664111852646, 0.033795278519392014, -0.012810768559575081, -0.027193410322070122, 0.050030484795570374, 0.0018483547028154135, 0.009992623701691628, 0.05074905604124069, -0.03053925558924675, -0.028900016099214554, 0.02530716173350811, -0.07176724821329117, 0.02035576105117798, 0.012687264010310173, -0.003006207989528775, -0.00838706735521555, 0.02425176091492176, 0.00649520568549633, 0.023847565054893494, -0.005142271518707275, -0.022634977474808693, 0.021557120606303215, 0.022926896810531616, 0.03803933784365654, -0.052635304629802704, 0.039184559136629105, -0.03994803875684738, 0.020894689485430717, 0.042822323739528656, -0.0235781017690897, -0.005243320483714342, -0.01754884421825409, -0.006315562874078751, -0.01760498248040676, -0.026452384889125824, 0.008398295380175114, 0.0014385448303073645, 0.06902769953012466, 0.016280118376016617, 0.00506367813795805, -0.013596705161035061, 0.029012292623519897, -0.03089854121208191, -0.013753892853856087, 0.04131781682372093, -0.012653580866754055, 0.003017435548827052, 0.03242550417780876, -0.034648582339286804, -0.01955859735608101, -0.00057892658514902, -0.017694802954792976, 0.002001331653445959, 0.006871332414448261, -0.09224651753902435, -0.02860809676349163, -0.0036939026322215796, 0.03817407041788101, -0.0013845117064192891, 0.0079772574827075, 0.012878134846687317, 0.05878806486725807, -0.022994263097643852, 0.023151449859142303, 0.018357235938310623, 0.04922209307551384, -0.0076516554690897465, -0.013518111780285835, 0.006686076056212187, 0.07001573592424393, 0.007056588772684336, -0.019727012142539024, 0.025082608684897423, 0.01571873389184475, 0.001411879202350974, 0.00843759160488844, -0.007797615136951208, -0.049805931746959686, 0.05321914330124855, -0.027956891804933548, 0.02497033216059208, -0.03505277633666992, -0.01169922947883606, 0.004898069892078638, -0.051422715187072754, 0.014539829455316067, 0.011396082118153572, 0.0021823777351528406, 0.011732912622392178, -0.011822734028100967, 0.027687428519129753, -0.03089854121208191, -0.020378217101097107, -0.009223529137670994, -0.011025569401681423, 0.005585764534771442, 0.0306964423507452, 0.03705130144953728, 0.010671897791326046, -0.017515162006020546, -0.02860809676349163, 0.003999856300652027, -0.016403622925281525, -0.037410587072372437, -0.041969019919633865, -0.049805931746959686, 0.008544255048036575, -0.029191935434937477, -0.02881019376218319, -0.02618291974067688, -0.03785969316959381, 0.014528601430356503, -0.020625224336981773, -0.07059957087039948, -0.018110226839780807, 0.02667693793773651, -0.042305849492549896, -0.05308441072702408, 0.002228691941127181, 0.05788985267281532, 0.002700254088267684, -0.032200951129198074, 0.038488443940877914, -0.04760530963540077, -0.034289296716451645, -0.0317518450319767, -0.003107256954535842, 0.005060871131718159, 0.03197639808058739, -0.007140796631574631, 0.025060152634978294, 0.03177429735660553, 0.019468775019049644, -0.020535403862595558, -0.008785650134086609, 0.02131011337041855, -0.027867069467902184, -0.014955253340303898, 0.009515448473393917, -0.029394032433629036, 0.015426814556121826, -0.009975782595574856, -0.029528765007853508, -0.004886842332780361, -0.06148270517587662, -0.04836878925561905, 0.032582689076662064, -0.0247906893491745, 0.00711834104731679, 0.02584609016776085, -0.00903265830129385, 0.043518438935279846, 0.003441279986873269, -0.00893160980194807, -0.08856383711099625, 0.012417799793183804, 0.0054903291165828705, -0.018334779888391495, 0.004861579742282629, -0.050704143941402435, -0.044775936752557755, -0.03172938898205757, 0.006483978126198053, -0.07041992992162704, -0.029775774106383324, -0.003651798702776432, 0.029932960867881775, 0.0337054580450058, 0.01327110268175602, 0.05115325376391411, 0.04174446687102318, -0.0043928250670433044, 0.006315562874078751, 0.009784911759197712, 0.06857859343290329, -0.020883461460471153, -0.011064866557717323, -0.007904278114438057, -0.04026241600513458, -0.025576626881957054, -0.004462997894734144, 0.014551056548953056, -0.004535977728664875, -0.029416488483548164, -0.05128798633813858, -0.024902965873479843, 0.019154399633407593, 0.022275691851973534, -0.0018020406132563949, -0.03368300199508667, -0.04482084885239601, 0.006388542708009481, -0.0477849505841732, -0.05259039252996445, -0.006613096222281456, 0.00884178839623928, 0.03559170663356781, -0.0046426402404904366, 0.07324930280447006, 0.02224200963973999, 0.019592279568314552, 0.0008869857410900295, -0.018828798085451126, 0.022949352860450745, -0.03361563757061958, 0.014865431934595108, -0.03476085886359215, 0.026093099266290665, 0.003980208188295364, 0.03467103838920593, -0.06543484330177307, -0.02930421195924282, -0.026564661413431168, -0.018177593126893044, -0.03714112192392349, -0.030292246490716934, -0.029955416917800903, 0.03595099225640297, -0.006674848031252623, -0.011081707663834095, -0.00663555134087801, -0.023420915007591248, 0.02847336418926716, 0.03485067933797836, 0.0027606026269495487, 0.034132108092308044, 0.017795853316783905, 0.023690378293395042, -0.01290058996528387, -0.012855678796768188, 0.009683863259851933, 0.01894107460975647, -0.01119959820061922, -0.011901327408850193, -0.03229077160358429, -0.024655956774950027, 0.02757515013217926, 0.04187919944524765, -0.027956891804933548, 0.022893214598298073, 0.0009150548721663654, -0.016426077112555504, 0.013372152112424374, 0.00838706735521555, 0.03770250827074051, -0.04468611627817154, -0.035524338483810425, -0.025531714782118797, -0.008330929093062878, 0.0075225369073450565, 0.010902064852416515, 0.007432715967297554, 0.01760498248040676, -0.0294838547706604, 0.0583389587700367, 0.001643449766561389, 0.04985084384679794, 0.02339845895767212, 0.011283805593848228, -0.019524913281202316, 0.014820520766079426, 0.01945754699409008, -0.0007354122353717685, 0.008050237782299519, -0.02986559458076954, 0.03642255440354347, -0.021995000541210175, -0.0034047900699079037, 0.008875470608472824, 0.016897639259696007, -0.014629650861024857, -0.01711096428334713, 0.011530814692378044, 0.03945402428507805, -0.03896000608801842, 0.0075393784791231155, 0.04116062819957733, 0.03821897879242897, -0.036040812730789185, -0.0005255951546132565, -0.00802778173238039, -0.028001802042126656, 0.002145887818187475, 0.024027207866311073, -0.029259301722049713, 0.028877560049295425, 0.0004855966253671795, 0.04383281245827675, -0.010492254979908466, -0.030247336253523827, 0.011923782527446747, -0.0261604655534029, 0.02669939212501049, 0.04765022173523903, -0.03294197469949722, 0.04237321764230728, 0.010026306845247746, 0.0022539542987942696, -0.047874774783849716, -0.03754531964659691, 0.03375036641955376, 0.021040648221969604, -0.0364450067281723, 0.01086276862770319, -0.03145992383360863, -0.023241272196173668, 0.011732912622392178, -0.020557858049869537, -0.024902965873479843, -0.03332371637225151, -0.013046549633145332, -0.025576626881957054, -0.012103425338864326, 0.026474839076399803, -0.02422930672764778, -0.0009066341444849968, 0.0007726038456894457, 0.00423844438046217, -0.0042496719397604465, -0.04367562755942345, -0.015685051679611206, -0.04430437460541725, 0.016021881252527237, 0.00327286496758461, -0.05640780180692673, -0.008083920925855637, -0.023870021104812622, 0.08901294320821762, 0.013641615398228168, 0.03860072046518326, 0.0015452076913788915, -0.03345844894647598, -0.0260032769292593, -0.04760530963540077, 0.006304335314780474, -0.04729093611240387, 0.002823758404701948, 0.0015971356770023704, 0.06583904474973679, 0.017402883619070053, 0.03610817715525627, 0.03000032715499401, -0.009088796563446522, 0.04046451300382614, 0.001101714908145368, 0.030112603679299355, 0.0068151941522955894, 0.03363808989524841, 0.010211563669145107, -0.044034913182258606, -0.019581051543354988, 0.0034244386479258537, -0.014876659028232098, 0.014551056548953056, -0.04064415767788887, 0.015123668126761913, -0.008364612236618996, -0.01995156519114971, -0.0076179723255336285, -0.026407472789287567, 0.008549869060516357, 0.06763546913862228, -0.03606326878070831, -0.08654285967350006, 0.009268439374864101, 0.016538353636860847, 0.06296475976705551, -0.0034637353383004665, -0.03909473866224289, -0.02280339226126671, 0.019682100042700768, -0.0018904585158452392, 0.018907392397522926, -0.008465660735964775, 0.025868546217679977, 0.01377634797245264, -0.005234899930655956, -0.02180412970483303, 0.03139255940914154, 0.017436567693948746, -0.03002278320491314, -0.03680429235100746, 0.027709882706403732, 0.016347482800483704, 0.01961473561823368, -0.00899336114525795, 0.001560645760037005, 0.019053351134061813, 0.010509097017347813, 0.003559170523658395, 0.03572643920779228, 0.03541206195950508, -0.0025978016201406717, 0.010509097017347813, 0.004909297451376915, 0.01325987558811903, 0.018952302634716034, 0.0361306332051754, -0.06417734920978546, 0.0064222258515655994, 0.04084625467658043, -0.013293557800352573, -0.014708244241774082, 0.0071969348937273026, -0.025891000404953957, 0.030112603679299355, -0.00038419675547629595, -0.058877889066934586, -0.03334617242217064, -0.022118505090475082, 0.031100638210773468, 0.0039212629199028015, -0.024745779111981392, -0.01695377752184868, 0.011440993286669254, -0.02649729512631893, 0.018491968512535095, 0.05025503784418106, -0.01525839976966381, 0.007690952159464359, 0.017874445766210556, -0.041452549397945404, 0.02824881114065647, -0.00011192580859642476, -0.003469349117949605, -0.0312802828848362, 0.0015788907185196877, -0.014719472266733646, 0.002442017663270235, 0.005742951761931181, -0.004196340683847666, -0.0007641831180080771, 0.01700991578400135, -0.008257949724793434, -0.007724635303020477, 0.01940140873193741, 0.015887148678302765, -0.017638664692640305, 0.004252478946000338, 0.002277812920510769, -0.01695377752184868, 0.03215603902935982, -0.002273602643981576, -0.0012638142798095942, -0.023308636620640755, -0.0047408826649188995, 0.002986559411510825, -0.03309916332364082, -0.023937387391924858, 0.008111990056931973, 0.014629650861024857, -0.01456228457391262, 0.010121742263436317, 0.024835599586367607, 0.021534666419029236, 0.03298688679933548, 0.026048189029097557, -0.03992558643221855, 0.04080134257674217, 0.06884805858135223, 0.024745779111981392, 0.031100638210773468, -0.0021557121071964502, -0.024004753679037094, -0.02984314039349556, -0.0046594818122684956, -0.01221570186316967, -0.018200049176812172, 0.0013683720026165247, -0.02532961778342724, -0.003334617242217064, -0.0006968171219341457, 0.02239919640123844, -0.024880511686205864, 0.0075842891819775105, 0.036018356680870056, -0.022309375926852226, 0.011867644265294075, -0.0359734445810318, 0.02759760618209839, -0.0017416918417438865, 0.020995737984776497, -0.01876143179833889, 0.017638664692640305, -0.034805767238140106, 0.012619897723197937, 0.0003268303698860109, -0.012878134846687317, 0.07333911955356598, -0.0171671025454998, 0.054701194167137146, 0.010262087918817997, -0.021343795582652092, -0.030471889302134514, -0.009027044288814068, 0.009734387509524822, -0.051916733384132385, -0.008111990056931973, 0.024139484390616417, -0.008544255048036575, -0.03590608015656471, 0.017582526430487633, -0.01858178898692131, -0.00233535491861403, -0.05214128643274307, 0.020658908411860466, 0.005748565774410963, 0.0004315634723752737, 0.0019985248800367117, -0.011811506003141403, 0.0016925708623602986, -0.03983576223254204, 0.0051956032402813435, -0.02265743352472782, 0.016863957047462463, -0.02172553725540638, -0.0020027351565659046, -0.033593181520700455, -0.0038903867825865746, 0.02239919640123844, 0.03451384976506233, 0.03992558643221855, 0.05604851618409157, -0.04046451300382614, 0.030965907499194145, 0.013753892853856087, 0.015539092011749744, 0.010340681299567223, 0.04080134257674217, -0.0011101355776190758, 0.062066543847322464, 0.010952589102089405, -0.01786321960389614, 0.020759956911206245, -0.028001802042126656, 0.021119242534041405, 0.0042637065052986145, 0.033435992896556854, -0.022994263097643852, 0.052096378058195114, 0.022769710049033165, 0.042979512363672256, 0.02335354872047901, 0.016684314236044884, 0.006203286349773407, 0.0201761182397604, 0.015123668126761913, -0.0067366003058850765, 0.006983608938753605, -0.00693869823589921, 0.034828223288059235, 0.020366989076137543, 0.00456123985350132, -0.040217503905296326, 0.020838551223278046, -0.026946401223540306, 0.026048189029097557, -0.009156162850558758, -0.01930036023259163, -0.009363874793052673, -0.014517374336719513, -0.004791406914591789, 0.004872807767242193, -0.01266480889171362, -0.0022399197332561016, -0.010357523337006569, -0.02013120800256729, -0.027799705043435097, -0.015516635961830616, 0.01937895454466343, 0.00663555134087801, 0.017234468832612038, 0.0030146287754178047, 0.020804867148399353, 0.008319701068103313, 0.034828223288059235, -0.00559979910030961, -0.02375774458050728, -0.0036293435841798782, -0.03489559143781662, -0.005883297882974148, -0.0006161182536743581, -0.023308636620640755, -0.07553974539041519, -0.025509260594844818, -0.0043759834952652454, -0.006293107755482197, 0.006124692503362894, 0.03440157324075699, -0.03276233375072479, 0.0046903579495847225, -0.008561096154153347, -0.009352646768093109, -0.0005792774609290063, -0.016605719923973083, 0.00806707888841629, 0.01742533966898918, 0.010379978455603123, 0.008162514306604862, 0.016437305137515068, 0.007028519641608, 0.02015366218984127, 0.013563022017478943, 0.027956891804933548, 0.02407211810350418, 0.012193246744573116, 0.016369938850402832, -0.009942099452018738, 0.00495420815423131, -0.027350597083568573, 0.014764382503926754, -0.004735268652439117, -0.005001925863325596, 0.01796426810324192, -0.026991311460733414, 0.0022441300097852945, -0.0161117035895586, -0.004454576876014471, 0.023106539621949196, -0.017481477931141853, 0.021512210369110107, -0.012170791625976562, -0.0035647843033075333, -0.036714471876621246, -0.021332567557692528, 0.03208867460489273, 0.01290058996528387, 0.013214964419603348, -0.009504220448434353, -0.010986272245645523, 0.0003257777716498822, 0.005706462077796459, -0.025531714782118797, -0.001468017464503646, 0.01886248029768467, -0.005611026659607887, 0.016145385801792145, 0.0282712671905756, -0.0193564984947443, -0.0018736169440671802, -0.013102687895298004, 0.0024195623118430376, 0.004726848099380732, -0.00663555134087801, 0.032380592077970505, -0.017953040078282356, -0.019581051543354988, -0.02337600290775299, -0.024004753679037094, 0.003789337817579508, 0.017245696857571602, -0.02773233875632286, -0.021332567557692528, 0.021220291033387184, 0.0022343057207763195, -0.038668084889650345, 0.008302859961986542, -0.004550012294203043, -0.03945402428507805, -0.009942099452018738, 0.02566644735634327, -0.004928946029394865, -0.030965907499194145, 0.024161940440535545, -0.0031156777404248714, -0.026564661413431168, -0.005310686770826578, 0.008639690466225147, 0.0015171385603025556, 0.034805767238140106, -0.0282712671905756, -0.021119242534041405, 0.006826421711593866, -0.003879158990457654, -0.034468937665224075, 0.007696566171944141, 0.019592279568314552, 0.00467070983722806, -0.01824495941400528, 0.013619160279631615, -0.008611620403826237, 0.017301835119724274, -0.05339878425002098, 0.018795115873217583, 0.09197705239057541, -0.021489756181836128, -0.02244410663843155, -0.010015078820288181, 0.001054698950611055, 0.010705580934882164, 0.004260899964720011, 0.008735124953091145, 0.009274053387343884, 0.027979347854852676, 0.0007312018424272537, -0.03527732938528061, 0.022769710049033165, 0.0017543230205774307, 0.004305810201913118, 0.013282330706715584, 0.007707793731242418, 0.01649344339966774, -0.003124098526313901, -0.029034748673439026, 0.01904212310910225, -0.014539829455316067, 0.017223240807652473, 0.011188370175659657, -0.008128831163048744, 0.00481386249884963, 0.013158826157450676, 0.04010522738099098, 0.003744427114725113, 0.017672348767518997, -0.024902965873479843, 0.011676774360239506, 0.013035321608185768, 0.014090722426772118, -0.02964104153215885, 0.014068267308175564, 0.028136534616351128, 0.0019929108675569296, -0.04264267906546593, -0.0021781674586236477, -0.00545664643868804, 0.004252478946000338, -0.01840214617550373, 0.022118505090475082, -0.04412473365664482, 0.012429027818143368, 0.0114185381680727, -0.013293557800352573, 0.0004164762794971466, 0.0010673301294445992, 0.028540730476379395, -0.012148336507380009, 0.00024069311621133238, 0.02950630895793438, -0.03125782683491707, -0.008796877227723598, -0.02239919640123844, 0.002858844818547368, 0.011957465671002865, -0.025711357593536377, 0.017313063144683838, -0.0017936198273673654, -0.03765759617090225, 0.00522647937759757, -0.0060292575508356094, -0.029932960867881775, 0.026923947036266327, 0.004811055492609739, 0.037612684071063995, 0.01659449189901352, -0.011575724929571152, -0.0034075970761477947, -0.018548106774687767, -0.02741796337068081, 0.007775159552693367, 0.015336993150413036, -0.05065923556685448, 0.019861742854118347, 0.05321914330124855, 0.02337600290775299, -0.004791406914591789, -0.02407211810350418, -0.05964136868715286, 0.026115553453564644, 0.04015013948082924, 0.0047577242366969585, -0.002624467248097062, -0.009195460006594658, 0.026407472789287567, -0.030224880203604698, 0.007690952159464359, -0.005102974828332663, -0.0005284021026454866, 0.06049467250704765, 0.008858629502356052, -0.01308023277670145, -0.04257531464099884, -0.037096213549375534, 0.016358710825443268, -0.0021922020241618156, -0.0025753462687134743, 0.03294197469949722, -0.005658744368702173, 0.01695377752184868, 0.000169204460689798, -0.004945787601172924, 0.013248647563159466, 0.03366054594516754, -0.02669939212501049, -0.057665299624204636, 0.04556187242269516, -0.030292246490716934, 0.03487313538789749, 0.01782953552901745, -0.02476823329925537, 0.03451384976506233, 0.026048189029097557, 0.00916177686303854, 0.015741189941763878, 0.024678412824869156, 0.03765759617090225, 0.01752638816833496, -0.031168004497885704, 0.01569627970457077, -0.021175380796194077, -0.031123094260692596, -0.02497033216059208, 0.04156482592225075, 0.01788567379117012, 0.02214095927774906, -0.0075393784791231155, -0.0038145999424159527, 0.0013894238509237766, -0.029461398720741272, 0.027822159230709076, -0.0024897351395338774, 0.02172553725540638, 0.0032054991461336613, 0.012619897723197937, -0.06552466750144958, 0.01665063016116619, -0.015651367604732513, 0.015471725724637508, 0.03983576223254204, 0.05223110690712929, -6.894489342812449e-05, -0.01909826137125492, -0.0023535997606813908, 0.0261604655534029, 0.00011982025898760185, 0.018750203773379326, -0.06251565366983414, 0.01211465336382389, 0.00023139521363191307, 0.004434928763657808, -0.008184969425201416, -0.009285280480980873, 0.0028602483216673136, -0.005251741502434015, -0.03563661500811577, 0.015134895220398903, -0.0029837526381015778, -0.002725516213104129, -0.03330126032233238, -0.012103425338864326, 0.06112341955304146, -0.02335354872047901, -0.006236969027668238, 0.004653868265450001, -0.009195460006594658, -0.03087608516216278, -0.01151958666741848, 0.016538353636860847, 0.022230781614780426, 0.005821545608341694, 0.012945500202476978, -0.010806629434227943, 0.015235944651067257, 0.008785650134086609, -0.0005473488126881421, -0.009644566103816032, 0.016302572563290596, 0.026115553453564644, -0.00954913068562746, 0.026744304224848747, -0.007084657903760672, 0.010065604001283646, 0.02033330500125885, 0.02620537579059601, 0.013518111780285835, -0.01579732820391655, -0.023959841579198837, 0.024521226063370705, -0.02721586637198925, -0.004533170722424984, 0.027507785707712173, -0.011968693695962429, 0.00688817398622632, -0.02301671728491783, 0.017391657456755638, -0.006714145187288523, 0.007079044356942177, -0.013293557800352573, 0.005810318049043417, 0.008005326613783836, -0.009004589170217514, -0.009504220448434353, -0.02102942019701004, 0.013069004751741886, 0.026654481887817383, -0.036916568875312805, -0.004937366582453251, 0.03599590063095093, -0.015920832753181458, -0.006163989193737507, 0.009038272313773632, 0.011991148814558983, 0.0012897782726213336, 0.04796459525823593, -0.016437305137515068, 0.03873545303940773, 0.002882703673094511, -0.002484121359884739, 0.01971578411757946, 0.0033739139325916767, -0.01317005418241024, 0.014101950451731682, -0.013394607231020927, -0.00263850181363523, 0.06143779680132866, 0.020389443263411522, 0.008072692900896072, 0.01925544999539852, -0.013024094514548779, -0.00545664643868804, 0.019030896946787834, -0.01778462529182434, -0.007831297814846039, -0.02530716173350811, 0.017279380932450294, 0.018548106774687767, 0.008650917559862137, -0.013282330706715584, 0.019008440896868706, -0.022949352860450745, 0.003472156124189496, -0.009347032755613327, 0.02371283434331417, -0.015471725724637508, 0.07181216031312943, -0.008600393310189247, -0.0018862481229007244, -0.02074872888624668, 0.004684744402766228, 0.010879609733819962, 0.009453696198761463, 0.005799090024083853, -0.005470681004226208, -0.02226446382701397, -0.032200951129198074, 0.017638664692640305, -0.02224200963973999, -0.01780708134174347, 0.04538223147392273, -7.179567182902247e-05, -0.0031774297822266817, -0.028877560049295425, 0.027844615280628204, -0.007533764932304621, 0.054880838841199875, 0.010890837758779526, 0.035322241485118866, -0.017436567693948746, 0.03471594676375389, -0.011508358642458916, 0.02755269594490528, -0.04181183502078056, -0.003671447280794382, -0.003020242555066943, 0.005633482243865728, -0.0383986234664917, -0.01041366159915924, 0.047021470963954926, 0.026115553453564644, -0.0020546631421893835, -0.005215251352638006, -0.022219553589820862, 0.055374857038259506, 0.00981859490275383, 0.015134895220398903, -0.029798228293657303, -0.00027420069091022015, -0.011165915057063103, -0.022994263097643852, -0.02102942019701004, -0.006601868197321892, 0.007943574339151382, 0.0023788621183484793, -0.028316177427768707, -0.020086297765374184, 0.06354859471321106, 0.004965435713529587, -0.00033858433016575873, 0.03880281746387482, -0.005260162055492401, 0.030090147629380226, -0.012417799793183804, -0.001639239490032196, 0.047560397535562515, -0.009891575202345848, -0.025576626881957054, -0.0063436320051550865, -0.03125782683491707, -0.030584165826439857, -0.002015366218984127, 0.003320582676678896, -0.015988199040293694, -0.013428290374577045, -0.03559170663356781, -0.0011627653148025274, 0.029775774106383324, -0.002500962931662798, 0.008078306913375854, 0.007898664101958275, 0.009880347177386284, -0.008201811462640762, -0.015269627794623375, 0.012271840125322342, -0.02564399316906929, -0.0039072283543646336, 0.016066791489720345, 0.0019957178737968206, -0.026811670511960983, -0.05797967314720154, 0.019704556092619896, -0.017380429431796074, -0.00495420815423131, 0.012934273108839989, 0.03878036141395569, -0.007842525839805603, 0.011575724929571152, 0.008864243514835835, -0.00458088843151927, 0.07706671208143234, -0.044416651129722595, 0.027822159230709076, 0.024161940440535545, -0.030988361686468124, 0.005799090024083853, -0.010722422040998936, 0.05501557141542435, 0.01087399572134018, 0.049132272601127625, -0.02102942019701004, 0.01930036023259163, 0.033930011093616486, -0.0013353907270357013, -0.007999712601304054, -0.005717689637094736, 0.004931753035634756, 0.009734387509524822, -0.019131945446133614, 0.010020692832767963, -0.0007627796730957925, -0.022634977474808693, 0.009347032755613327, -0.02649729512631893, -0.0027858649846166372, -0.01987297087907791, -0.0141356335952878, 0.05955154821276665, -0.009167389944195747, -0.03678184002637863, 0.03312161937355995, -0.003079187823459506, -0.01752638816833496, -0.002569732256233692, 0.03213358297944069, -0.03285215422511101, -0.04630289971828461, -0.01788567379117012, 0.016448533162474632, 0.026452384889125824, -0.02532961778342724, 0.014270365238189697, -0.029798228293657303, -0.0063099488615989685, -0.01850319653749466, 0.03507523238658905, -0.02934912219643593, -0.049985576421022415, -0.010509097017347813, -0.0409809872508049, 0.017066054046154022, 0.0312802828848362, -0.037927061319351196, 0.0039521390572190285, -0.01021717768162489, 0.035524338483810425, -0.012619897723197937, -0.006203286349773407, -0.007073430344462395, -0.015954514965415, 0.0012483762111514807, -0.04192411154508591, -0.003744427114725113, 0.014191771857440472, 0.03494049981236458, -0.006708531174808741, -0.008881084620952606, 4.776144487550482e-05, 0.0013999497750774026, -0.013158826157450676, -0.002652536379173398, -0.018873708322644234, -0.019760694354772568, -0.0033233894500881433, 0.01860424503684044, 0.029551221057772636, -0.015303310938179493, 0.003278478980064392, -0.03390755504369736, 0.008813719265162945, -0.06826421618461609, 0.023847565054893494, 0.020894689485430717, 0.005453839432448149, 0.0031297123059630394, 0.004872807767242193, 0.007848139852285385, 0.002001331653445959, 0.03381773456931114, 0.030247336253523827, -0.00013306540495250374, 0.006876946426928043, -0.024992788210511208, -0.03296443074941635, 0.01178905088454485, -0.0028532310388982296, -0.013899852521717548, 0.00986911915242672, -0.03038206696510315, 0.026609571650624275, 0.006528888363391161, 0.003528294386342168, -0.02667693793773651, 0.026250286027789116, -0.007073430344462395, 0.008370226249098778, 0.0010392609983682632, 0.007898664101958275, -0.00036139055737294257, -0.03170693293213844, -0.012956728227436543, -0.035501882433891296, 0.006702917627990246, -0.0067366003058850765, -0.028361087664961815, -0.016201524063944817, 0.014202998951077461, -0.024543680250644684, 0.009751229546964169, 0.0009431240614503622, 0.027328142896294594, 0.0023620205465704203, 0.03262760117650032, -0.013113915920257568, 0.0003596362075768411, -0.004013890866190195, -0.008330929093062878, 0.03350336104631424, 0.0071744793094694614, -0.0019381761085242033, -0.00837584026157856, 0.01317005418241024, 0.0024434211663901806, 0.0010778560535982251, -0.024476313963532448, 0.019929109141230583, -0.02912456914782524, 0.04304687678813934, 0.00967824924737215, -0.018278641626238823, 0.025374528020620346, -0.0161117035895586, 0.033772822469472885, -0.004255285952240229, 0.001044173026457429, -0.01510121300816536, 0.0036798680666834116, -0.005156306084245443, -0.03318898379802704, 0.04383281245827675, -0.021590804681181908, 0.02262374944984913, 0.015157351270318031, 0.020479265600442886, -0.005400508176535368, 0.014494918286800385, 0.028203900903463364, -0.05065923556685448, 0.01096381712704897, -0.012945500202476978, -0.02829372137784958, 0.00971754640340805, -0.006860104855149984, -0.003960559610277414, -0.018828798085451126, 0.01220447476953268, -0.024184394627809525, 0.013978445902466774, -0.0240496639162302, -0.027013767510652542, -0.008611620403826237, 0.02218587137758732, 0.0063604735769331455, 0.0011564497835934162, -0.02492542192339897, 0.0017851991578936577, 0.011530814692378044, 0.0027648131363093853, -0.03949893265962601, 0.01396721787750721, 0.040374692529439926, 0.01770603097975254, 0.0025065767113119364, 0.01257498748600483, 0.0009831226198002696, 0.003469349117949605, 0.014988935552537441, 0.004521943163126707, -0.004667902830988169, 0.0029584902804344893, 0.004555625841021538, -0.019805604591965675, 0.04174446687102318, -0.004965435713529587, 0.02013120800256729, -0.04102589562535286, -0.010031920857727528, 0.00954913068562746, 0.015089984983205795, -0.023465825244784355, -0.01119959820061922, 0.010234018787741661, 0.028697917237877846, -0.0005606816266663373, 0.01309145987033844, -0.02216341532766819, -0.01999647542834282, 0.02371283434331417, -0.011564497835934162, 0.016201524063944817, 0.018413374200463295, -0.03994803875684738, 0.016426077112555504, 0.022825848311185837, 0.011351171880960464, -0.003926876466721296, -0.005349983461201191, 0.015280854888260365, -0.005810318049043417, -0.04863825440406799, -0.02964104153215885, 0.0167741347104311, 0.014382641762495041, -0.008241107687354088, 0.020468037575483322, 0.015460497699677944, 0.010986272245645523, 0.0033739139325916767, 0.040397148579359055, -0.017459021881222725, 0.028653007000684738, -0.0017585334135219455, -0.006871332414448261, -0.03608572110533714, -0.012541304342448711, -0.02321881614625454, -0.01721201464533806, -0.00811760313808918, 0.021175380796194077, -0.03696148097515106, -0.00981859490275383, 0.0523209311068058, 0.020894689485430717, -0.02409457415342331, -0.014674561098217964, -0.000357355602318421, -0.03455876186490059, -0.03121291473507881, -0.060449760407209396, -0.04729093611240387, -0.025396984070539474, 0.0027367440052330494, -0.027283230796456337, 0.0017276572762057185, -0.0075393784791231155, -0.0269014909863472, -0.0012420606799423695, 0.019075807183980942, -0.002218867652118206, -0.042665135115385056, 0.006944312248378992, -0.02860809676349163, 0.010632600635290146, 0.03231322765350342, -0.009386329911649227, 0.013506883755326271, 0.0007438329630531371, 0.015965742990374565, 0.009178617969155312, 0.03819652274250984, -0.024341583251953125, 0.024902965873479843, 0.024678412824869156, -0.033278804272413254, -0.024184394627809525, 0.016527125611901283, 0.05447664111852646, -0.004075643140822649, 0.00824672169983387, 0.022197097539901733, -0.001023121178150177, -0.007404646836221218, 0.004634219687432051, 0.024521226063370705, 0.0012904800241813064, -0.019513685256242752, 0.018155138939619064, 0.01203605905175209, 0.0001620994444238022, -0.01309145987033844, 0.02206236682832241, -0.022556383162736893, -0.002714288653805852, -0.008903540670871735, -0.010099287144839764, -0.013911079615354538, -0.022051138803362846, -0.010026306845247746, 0.012934273108839989, -0.04500048980116844, 0.02847336418926716, -0.00867337267845869, 0.03384019061923027, -0.00907195545732975, 0.0029949801973998547, 0.03314407542347908, -0.008533027023077011, -0.008819332346320152, 0.03051679953932762, -0.008302859961986542, -0.026227831840515137, 0.03853335604071617, -0.018963530659675598, -0.012788313440978527, -0.0120248319581151, 0.05465628579258919, -0.0359734445810318, -0.015325766056776047, -0.013832486234605312, 0.056452710181474686, 0.002235709223896265, 0.010537166148424149, -0.008600393310189247, -0.012058515101671219, 0.011098548769950867, -0.004176692105829716, 0.007657269015908241, -0.021512210369110107, -0.031527288258075714, -0.01989542692899704, 0.019929109141230583, -0.0107729472219944, 0.018851254135370255, 0.010329454205930233, 0.024161940440535545, -0.003441279986873269, -0.04288968816399574, -0.00980736780911684, 0.0035675913095474243, -0.017335519194602966, -0.009015817195177078, -0.0016715190140530467, -0.011031183414161205, 0.01317005418241024, -0.00575979333370924, 0.013664071448147297, -4.8770180001156405e-05, -0.008443205617368221, -0.0080165546387434, -0.002652536379173398, 0.025756269693374634, 0.03444648161530495, 0.0007410260732285678, 0.005397701170295477, -0.009487379342317581, 0.0020237870048731565, 0.007320438977330923, 0.022994263097643852, -0.019625961780548096, 0.024386493489146233, 0.0006231355364434421, -0.0213887058198452, -0.027283230796456337, 0.0260032769292593, 0.009453696198761463, -0.03280724585056305, 0.004662288818508387, -0.007219390012323856, 0.017919357866048813, 0.03139255940914154, -0.015247172676026821, -0.047021470963954926, -0.018469512462615967, -0.019704556092619896, 0.01510121300816536, 0.018929846584796906, -0.03920701518654823, 0.01961473561823368, -0.04342861846089363, 0.00038489847793243825, -0.0028013030532747507, 0.031168004497885704, 0.01107047963887453, -0.05510539188981056, 0.01266480889171362, -0.020108751952648163, 0.025396984070539474, 0.010548393242061138, 0.030224880203604698], [0.01717940717935562, 0.004345316905528307, 0.05826336890459061, 0.024754494428634644, -0.05885832756757736, -0.012982829473912716, -0.04508930444717407, 0.03937345743179321, 0.01839057169854641, 0.010741113685071468, -0.05210130661725998, 0.004549833480268717, 0.050783898681402206, 0.03221271559596062, -0.04202951863408089, -0.017243152484297752, -0.03036409616470337, 0.027580544352531433, 0.005336028058081865, -0.023883307352662086, 0.036674898117780685, 0.04073336347937584, -0.05541606992483139, -0.03280767425894737, -0.02103600837290287, -0.023628324270248413, 0.038289785385131836, 0.021726584061980247, 0.059963248670101166, -0.00880218856036663, 0.03958594426512718, -0.03805605322122574, 0.033572617918252945, 0.007739763706922531, -0.018252456560730934, -0.02766553871333599, -0.030810315161943436, -0.013142192736268044, 0.00725104846060276, -0.001335998997092247, -0.011176707223057747, 0.00995491910725832, 0.007649457547813654, -0.02766553871333599, -0.012122265063226223, 0.07411474734544754, -0.019144892692565918, -0.02942916378378868, 0.013832769356667995, -0.023543329909443855, -0.012047896161675453, 0.02626313827931881, 0.02021794207394123, -0.08265663683414459, 0.006937633268535137, 0.011952277272939682, 0.005561793223023415, 0.006108941975980997, 0.011208579875528812, -0.004842000547796488, 0.0069323210045695305, -0.00916341319680214, 0.016180727630853653, -0.00633736327290535, 0.011059841141104698, 0.0031235285568982363, 0.06718773394823074, 0.019867341965436935, -0.06710274517536163, -0.017869982868433, 0.02724056877195835, 0.032510194927453995, 0.04823407903313637, -0.014162120409309864, -0.027431804686784744, -0.008610951714217663, -0.031086545437574387, 0.01781686209142208, 0.045344285666942596, -0.01220725942403078, -0.056096021085977554, 0.040839605033397675, -0.010374576784670353, -0.02167346328496933, -0.019081147387623787, 0.03268018364906311, -0.024754494428634644, 0.00538914930075407, 0.04517429694533348, -0.01605323702096939, -0.008520646020770073, 0.020037328824400902, 0.011835411190986633, 0.03869350627064705, -0.00011445966083556414, -0.00921122170984745, -0.013620284385979176, -0.016616322100162506, -0.01235599908977747, 0.04776661470532417, -0.00414876826107502, -0.035272497683763504, 0.0024369366001337767, 0.031384024769067764, 0.003027910366654396, -0.05171883478760719, 0.020685408264398575, -0.003843321232125163, 0.042114514857530594, -0.023118359968066216, 0.0672302320599556, -0.06098317727446556, 0.004321412183344364, 0.057073451578617096, -0.014576466754078865, -0.019081147387623787, -0.022927124053239822, -0.009338713251054287, -0.003896442474797368, -0.022502154111862183, 0.01284471433609724, 0.01450209692120552, 0.00819129403680563, -0.05788089707493782, 0.02562568336725235, 0.008796876296401024, 0.010433009825646877, 0.03304140642285347, -0.031745247542858124, -0.004103615414351225, 0.004297507926821709, -0.04993395879864693, 0.034273818135261536, -0.03559122607111931, 0.026305634528398514, 0.0032589875627309084, 0.008504709228873253, -0.04307069629430771, 0.020982887595891953, -0.0050093322061002254, -0.016212601214647293, -0.0015471559017896652, 0.014300236478447914, 0.02371331863105297, -0.061875611543655396, 0.0012815498048439622, -0.05086889490485191, 0.03627117723226547, 0.038438525050878525, -0.02088726870715618, 0.02237466350197792, -0.03563372418284416, 0.0057742781937122345, 0.027984265238046646, -0.0016321499133482575, 0.013354677706956863, 0.01744501292705536, 0.06221558898687363, 0.02386205829679966, -0.0027357435319572687, 0.01702004298567772, 0.01981421932578087, -0.01997358351945877, -0.007660082075744867, 0.03163900598883629, 0.016159478574991226, -0.0030916559044271708, 0.04177453741431236, -0.04504680633544922, -0.023989548906683922, -0.008164733648300171, -0.010055849328637123, -0.03423132374882698, 0.003274924121797085, -0.08261413872241974, -0.03280767425894737, 0.01951674185693264, 0.007197927217930555, 0.005144791677594185, 0.01835869811475277, 0.02435077354311943, 0.054523635655641556, -0.0016454302240163088, 0.015479527413845062, 0.01602136343717575, 0.04009590670466423, -0.00931746419519186, -0.02167346328496933, 0.0064170449040830135, 0.027431804686784744, 0.012557859532535076, -0.0030013497453182936, 0.014799575321376324, 0.01866680197417736, -0.010879228822886944, 0.005673347972333431, -0.03937345743179321, -0.047256648540496826, 0.028430484235286713, -0.05295124650001526, 0.006693275645375252, -0.04984896630048752, 0.011102337390184402, -0.038863494992256165, -0.04925400763750076, 0.022119682282209396, 0.0016520703211426735, 0.0012237804476171732, 0.04993395879864693, 0.008982800878584385, 0.025434447452425957, -0.016000116243958473, -0.01129357423633337, -0.0072351121343672276, 0.01669069193303585, -0.003750359173864126, 0.00362552423030138, 0.025030724704265594, -0.012026647105813026, 0.024032045155763626, -0.0416470468044281, 0.0021673464216291904, -0.013790272176265717, -0.01638258807361126, -0.027793029323220253, -0.054948605597019196, -0.021514099091291428, -0.033721357583999634, -0.054183658212423325, 0.005290874745696783, -0.02760179340839386, 0.015341412276029587, 0.036122437566518784, -0.04143456369638443, -0.014916442334651947, 0.034762535244226456, 0.02894044853746891, -0.06349049508571625, -0.04001091420650482, 0.05061390995979309, 0.03376385569572449, -0.02823924832046032, 0.015883248299360275, 0.007952248677611351, -0.010401137173175812, -0.007654769811779261, -0.011941653676331043, -0.00788850337266922, 0.001288189901970327, -0.022055936977267265, 0.00984867662191391, 0.04827657714486122, 0.01881554163992405, -0.024860737845301628, -0.02617814391851425, 0.03431631624698639, -0.030406594276428223, -0.004815439693629742, 0.011984149925410748, -0.05970826745033264, -0.0054369582794606686, 0.00516869593411684, -0.03248894587159157, -0.012196634896099567, -0.032000232487916946, -0.05788089707493782, 0.018475564196705818, -0.027155574411153793, 0.023607077077031136, 0.039713434875011444, -0.026518119499087334, 0.05647849664092064, 0.009407770819962025, -0.042050767689943314, -0.06459542363882065, 0.041625797748565674, 0.0017463605618104339, -0.015617642551660538, -0.03253144398331642, -0.021684087812900543, -0.0662103071808815, -0.032935164868831635, 0.011580429039895535, -0.05278125777840614, -0.03678114339709282, 0.006071757059544325, 0.026496870443224907, 0.03648366406559944, 0.017710618674755096, -0.0003323397249914706, 0.051633838564157486, -0.011782289482653141, -0.012366623617708683, 0.05592603608965874, 0.054396141320466995, -0.018124964088201523, -0.015150175429880619, 0.005843335762619972, -0.024818239733576775, -0.00931746419519186, 0.019495492801070213, 0.004950899165123701, 0.030534084886312485, -0.07704703509807587, -0.05316372960805893, -0.006725148297846317, 0.016520703211426735, 0.010618934407830238, 0.0005262322374619544, -0.014587090350687504, -0.04107333719730377, 0.0017609689384698868, -0.11134210228919983, -0.03331763669848442, 0.010321456007659435, -0.018858037889003754, 0.03367886319756508, -0.0029641648288816214, 0.028749210759997368, 0.017944352701306343, 0.011516683734953403, 0.010491443797945976, -0.009912421926856041, -0.009221846237778664, -0.07292483001947403, -0.046704187989234924, -0.021864699199795723, 0.016255097463726997, 0.004988083615899086, 0.02386205829679966, -0.034953773021698, 0.01025770977139473, 0.007383851334452629, 0.028430484235286713, -0.03899098560214043, -0.023054614663124084, -0.024860737845301628, 0.016403837129473686, -0.010921726003289223, -0.029110435396432877, -0.0009475499973632395, -0.015298915095627308, 0.023692069575190544, 0.0026122366543859243, -0.03650491312146187, 0.022969622164964676, 0.02051541954278946, 0.0007549855508841574, -0.004111583344638348, 0.002873858669772744, 0.036037445068359375, 0.022565899416804314, 0.018741171807050705, 4.6232074964791536e-05, -0.05346120893955231, -0.027686787769198418, 0.050783898681402206, 0.07122495025396347, -0.005933641921728849, 0.022905874997377396, 0.019399873912334442, -0.02082352340221405, 0.008015993982553482, 0.032021477818489075, 0.04640670865774155, -0.01305719930678606, -0.03658990561962128, 0.003357261884957552, 0.0074475971050560474, 0.007633521221578121, 0.01182478666305542, -0.0026706699281930923, 0.01760437712073326, -0.027474302798509598, 0.052058808505535126, -0.04381439462304115, 0.012058519758284092, 0.031150290742516518, 0.02477574348449707, -0.004366565495729446, 0.00014633240061812103, -0.008812813088297844, -0.019463619217276573, 0.015150175429880619, -0.021970942616462708, 0.015362660400569439, -0.026008155196905136, -0.043941885232925415, 0.005561793223023415, 0.022820882499217987, -0.01610635779798031, -0.005057141650468111, 0.029174180701375008, 0.041052088141441345, -0.03136277571320534, -0.0055883536115288734, 0.01754063181579113, -0.0003130832628812641, -0.024796992540359497, -0.007904439233243465, -0.04657669737935066, -0.04610922932624817, 0.019612358883023262, 0.0076760184019804, -0.0298753809183836, 0.015490151941776276, 0.0061301905661821365, 0.02023918926715851, -0.01598949171602726, -0.00161090143956244, 0.03006661869585514, -0.027198070660233498, 0.023330844938755035, 0.04623671993613243, -0.00591239333152771, -0.01460833940654993, 0.012228507548570633, 0.0012523330515250564, -0.04024464637041092, -0.057200945913791656, 0.015309539623558521, 0.04283696413040161, -0.04734164476394653, 0.069907546043396, -0.034762535244226456, -0.0034077272284775972, 0.03726985678076744, -0.013726526871323586, 0.0075113424099981785, -0.006427669432014227, -0.03714236617088318, -0.030512835830450058, 0.002648093504831195, 0.02471199817955494, -0.04194452613592148, -0.006151438690721989, -0.039415955543518066, 0.01979297213256359, -0.016010738909244537, -0.027623040601611137, -0.004111583344638348, -0.022395912557840347, -0.03590995445847511, -0.0006859279237687588, -0.00019522053480613977, -0.004031901713460684, -0.03280767425894737, 0.07649457454681396, 0.05783839896321297, 0.03754608705639839, 0.021014759317040443, -0.026496870443224907, -0.020802274346351624, -0.034953773021698, 0.03225521370768547, -0.05554356053471565, 0.019622983410954475, -0.030087865889072418, 0.032510194927453995, -0.05252627655863762, 0.013715902343392372, 0.040138404816389084, 0.016584448516368866, 0.02605065330862999, 0.012164762243628502, -0.004924338310956955, 0.018656177446246147, 0.03195773437619209, 0.007654769811779261, -0.03499626740813255, 0.013567162677645683, -0.013312181457877159, -0.027261817827820778, 0.03480503335595131, -0.009301528334617615, -0.05907081067562103, 0.04508930444717407, -0.02872796356678009, 0.0024329524021595716, -0.021992189809679985, 0.03189398720860481, 0.017699994146823883, -0.033912595361471176, -0.05295124650001526, 0.017381267622113228, -0.0005421685636974871, 0.029832884669303894, -0.034975018352270126, -0.006544535979628563, -0.0016533983871340752, -0.014363981783390045, 0.009822116233408451, -0.015330787748098373, -0.006571096368134022, 0.017317522317171097, 0.0033253892324864864, -0.006921696942299604, -0.020706657320261, 0.021843452006578445, -0.024478264153003693, -0.006544535979628563, -0.052823755890131, 0.015511400066316128, -0.0031049360986799, -0.01507580652832985, -0.01568138785660267, 0.024818239733576775, -0.000351928174495697, 0.01920863799750805, -0.0027144949417561293, 0.03404008597135544, 0.011484811082482338, -0.0030730634462088346, -0.0044382791966199875, 0.024180784821510315, 0.010842043906450272, -0.0013426392106339335, 0.019952334463596344, -0.052823755890131, 0.03142652288079262, 0.025583185255527496, -0.020037328824400902, -0.00746353343129158, 0.018135588616132736, -0.04028714448213577, 0.01033739186823368, 0.00362552423030138, -0.0614081472158432, -0.01638258807361126, 0.013312181457877159, 0.0173600185662508, -0.002532554790377617, -0.013684029690921307, -0.010013352148234844, 0.02796301804482937, -0.00506245344877243, -0.01422586664557457, -0.010714552365243435, -0.017476886510849, 0.02316085807979107, 0.04273071885108948, -0.05129386484622955, 0.016095733270049095, -0.01869867369532585, -0.0050279246643185616, -0.014778327196836472, 0.03021535836160183, -0.003535218071192503, -0.0021925789769738913, -0.013790272176265717, -0.027006834745407104, 0.016488831490278244, 0.005620226729661226, -0.03818354383111, 0.01461896300315857, 0.04615172743797302, 0.052908748388290405, -0.058985818177461624, 0.012717223726212978, -0.021567221730947495, -0.010889852419495583, 0.03622868284583092, -0.001548483967781067, -0.01039582584053278, -0.00841971579939127, 0.008823436684906483, -0.01171854417771101, -0.04955148696899414, -0.018826164305210114, -0.016148855909705162, -0.0016958953347057104, -0.018369322642683983, -0.0018101059831678867, 0.009030609391629696, 0.013067823834717274, 0.008690633811056614, 0.029535405337810516, -0.03996841609477997, 0.02407454326748848, 0.01920863799750805, 0.01927238330245018, 0.02441451884806156, -0.0095458859577775, 0.0015059870202094316, -0.02711307816207409, 0.04311319440603256, -0.03937345743179321, -0.011984149925410748, 0.008366594091057777, 0.01486332155764103, 0.0071554300375282764, 0.012079768814146519, 0.006108941975980997, -0.03374260663986206, -0.0253494530916214, 0.02328834868967533, -0.0038512893952429295, 0.013312181457877159, -0.004953554831445217, 0.0221621785312891, 0.017976226285099983, -0.008913743309676647, -0.009200597181916237, 0.014693332836031914, 0.0153520368039608, -0.01775311678647995, -0.020228566601872444, -0.008382530882954597, 0.07934187352657318, -0.0053041549399495125, 0.04071211442351341, 0.008982800878584385, 0.0032430512364953756, -0.028260495513677597, -0.010438322089612484, 0.020951014012098312, -0.03650491312146187, -0.0030358785297721624, 0.007123557385057211, -0.012876586988568306, -0.02203468792140484, 0.01750875823199749, 0.004610923118889332, -0.00889249425381422, -0.04891403019428253, 0.0397559329867363, -0.019707977771759033, 0.00023539346875622869, -0.00016816190327517688, -0.03578246384859085, -0.0248394887894392, -0.05431114882230759, -0.0029482285026460886, -0.03431631624698639, 0.04496181383728981, 0.0005152759840711951, -0.020345432683825493, -0.025795670226216316, -0.014735830016434193, 0.052143801003694534, 0.03438006341457367, 0.03163900598883629, 0.04009590670466423, -0.029535405337810516, 0.034635044634342194, 0.022927124053239822, 0.013811520300805569, 0.032510194927453995, 0.02568942867219448, -0.015383909456431866, 0.055458568036556244, 0.0034794406965374947, -0.020377304404973984, 0.011537931859493256, -0.015883248299360275, 0.00373442261479795, 0.009200597181916237, 0.017636248841881752, 0.008398466743528843, 0.061323150992393494, 0.002185938647016883, 0.03803480416536331, 0.002565755508840084, 0.022927124053239822, 0.0024462328292429447, 0.014406478963792324, 0.028409235179424286, 0.007033251225948334, -0.014002757146954536, 0.005200568586587906, 0.012005398981273174, -0.013025326654314995, 0.04024464637041092, -0.03155401349067688, -0.010985471308231354, -0.00025498191826045513, 0.0011321463389322162, 0.029110435396432877, -0.012175386771559715, -0.012834089808166027, 0.003062439151108265, -0.046704187989234924, 0.004650764167308807, -0.0019442371558398008, -0.0008751723216846585, -0.013673405162990093, -0.015288290567696095, -0.0301516130566597, -0.03034284897148609, 0.020749153569340706, 0.002430296503007412, 0.011729168705642223, 0.03376385569572449, 0.0221621785312891, -0.00038844902883283794, 0.04491931572556496, -0.010693304240703583, 0.016393212601542473, -0.016000116243958473, -0.015213921666145325, 0.019644232466816902, 0.021694712340831757, -0.002414360176771879, -0.024244530126452446, -0.027283065021038055, 0.012706599198281765, 0.009221846237778664, -0.011431689374148846, 0.041540805250406265, -0.03986217454075813, -0.030406594276428223, -0.012016022577881813, 0.021025383844971657, -0.023054614663124084, -0.022480906918644905, -0.008286911994218826, 0.029344169422984123, -0.016308218240737915, -0.010433009825646877, 0.008956239558756351, -0.009567134082317352, 0.015437030233442783, -0.023755814880132675, 0.009232470765709877, 0.022544652223587036, -0.03996841609477997, 0.01059237401932478, -0.013790272176265717, 0.015755757689476013, -0.030024120584130287, -0.0058380234986543655, 0.001774249249137938, -0.037163615226745605, 0.017646873369812965, -0.018167462199926376, 0.006597657222300768, -0.005572417285293341, 0.021726584061980247, -0.006321426946669817, -0.009004049003124237, 0.026454374194145203, -0.012026647105813026, -0.011272326111793518, -0.030470339581370354, -0.02724056877195835, 0.04047837853431702, -0.005768965929746628, 0.001770265051163733, 0.014172744937241077, 0.014778327196836472, -0.02781427837908268, 0.004419686738401651, -0.03580371290445328, 0.009264343418180943, 0.027070580050349236, 0.01059237401932478, 0.003808792447671294, -0.014470224268734455, -0.020175443962216377, 0.0037609832361340523, -0.047681618481874466, -0.02131223864853382, -0.022629644721746445, 0.002521930495277047, 0.03333888575434685, -0.02653936855494976, -0.002261636545881629, -0.035697467625141144, -0.01754063181579113, -0.008664073422551155, 0.001981422072276473, -0.016818182542920113, 0.012749096378684044, 0.029747890308499336, -0.028260495513677597, -0.015734508633613586, 0.003333357395604253, -0.011357319541275501, 0.005158071871846914, 0.004706541076302528, 0.03055533394217491, 0.004895121790468693, -0.02617814391851425, 0.04177453741431236, 0.039989665150642395, -0.015819502994418144, -0.06995003670454025, -0.010587061755359173, 0.022608397528529167, 0.02337334305047989, -0.05422615632414818, 0.01811434142291546, 0.017678746953606606, -0.021864699199795723, -0.031872741878032684, 0.009816803969442844, 0.019952334463596344, -0.002884482964873314, -0.03529374673962593, 0.01422586664557457, 0.01850743778049946, 0.011569804511964321, 0.00394425168633461, 0.02030293457210064, 0.05261126905679703, 0.021174123510718346, -0.03926721587777138, -0.029407914727926254, -0.020600413903594017, -0.018974903970956802, -0.024372022598981857, 0.0339338444173336, 0.006491414736956358, 0.029832884669303894, 0.009551198221743107, -0.009168724529445171, 0.006262993440032005, -0.009508701041340828, -0.017285648733377457, 0.011410441249608994, -0.0005786894471384585, 0.009737121872603893, -0.010294894687831402, 0.00038645698805339634, 0.05018894001841545, -0.0053014992736279964, 0.018464941531419754, -0.0009880549041554332, -0.006347987335175276, 0.006411733105778694, 0.03268018364906311, 0.027091829106211662, 0.00016326479089912027, 0.02301211841404438, -0.023054614663124084, -0.011952277272939682, 0.0012257724301889539, -0.0038831622805446386, -0.025094470009207726, 0.01016740407794714, 0.026135647669434547, -0.006560472305864096, -0.04517429694533348, 0.0008174029644578695, -0.005864584352821112, 0.0205472931265831, -0.021375983953475952, 0.029131684452295303, -0.008058491162955761, 0.002391783520579338, -0.011431689374148846, -0.004119551740586758, -0.0017901855753734708, -0.000762289681006223, 0.026560617610812187, -0.017168782651424408, -0.007686642464250326, 0.010178028605878353, -0.03777982294559479, -0.0506989061832428, -0.012334750033915043, -0.0015737165231257677, -0.004409062210470438, -0.004069086629897356, 0.014406478963792324, 0.009838052093982697, 0.039075978100299835, -0.012812841683626175, -0.005174008198082447, -0.0397559329867363, 0.04096709564328194, 0.0012363967252895236, -0.013333429582417011, 0.014151496812701225, 0.0016454302240163088, 0.008435651659965515, 0.010507379658520222, -0.03714236617088318, 0.01610635779798031, 0.04759662598371506, -0.015224545262753963, 0.03548498451709747, 0.035761214792728424, 0.011644174344837666, -0.014810199849307537, 0.004916370380669832, -0.01869867369532585, 0.00995491910725832, 0.04759662598371506, 0.011591053567826748, 0.0013200626708567142, 0.007399787660688162, 0.04071211442351341, -0.006921696942299604, -0.023097112774848938, 0.02118474803864956, 0.005981450900435448, 0.01626572199165821, -0.00466670049354434, -0.0064064208418130875, -0.058688338845968246, -0.004937618505209684, 0.00904123391956091, -0.022565899416804314, 0.006820766255259514, -0.0004511984880082309, 0.03155401349067688, 0.0035856831818819046, 0.002926979912444949, -0.00746353343129158, 0.035187505185604095, 0.023054614663124084, -0.0037981681525707245, -0.01927238330245018, 0.019038649275898933, -0.01687130331993103, 0.023670822381973267, 0.00016193675401154906, -0.011091713793575764, 0.05435364693403244, 0.04742663726210594, -0.0026148927863687277, 0.010427698493003845, 0.03076781891286373, 0.0242870282381773, 0.019506117329001427, -0.010316143743693829, 0.034061335027217865, -0.03911847621202469, -0.025923162698745728, -0.01631884276866913, 0.016733188182115555, 0.01482082437723875, 0.01817808672785759, -0.010852668434381485, 0.01036395225673914, 0.01933612860739231, -0.02103600837290287, 0.051208868622779846, -0.004427654668688774, -0.004916370380669832, 0.012451617047190666, 0.0019269727636128664, -0.04806409031152725, 0.0045020245015621185, -0.027835525572299957, 0.0008220510790124536, 0.023267099633812904, 0.05613851919770241, 0.015107679180800915, 0.004122207872569561, -0.002855266211554408, 0.01568138785660267, 0.00674108462408185, -0.012260381132364273, -0.05775340646505356, 0.003452880075201392, 0.007861942984163761, 0.013174066320061684, -0.01651007868349552, -0.010810171253979206, -0.011027968488633633, 0.011580429039895535, -0.025944409891963005, 9.910429798765108e-05, 0.004201889503747225, 0.03658990561962128, -0.015097054652869701, -0.04742663726210594, 0.03344512730836868, -0.005513984244316816, -0.038651008158922195, 0.009694624692201614, -0.004711853340268135, -0.0496789775788784, -0.029684145003557205, -0.009938983246684074, 0.024329524487257004, 0.004610923118889332, -0.022119682282209396, 0.0168075580149889, 0.009577758610248566, 0.012727847322821617, -0.007553839590400457, 0.002725119236856699, 0.016244472935795784, 0.009726498275995255, -0.011049216613173485, 0.018677426502108574, -0.023904554545879364, 0.04419686645269394, 0.0068791997618973255, 0.007043875753879547, 0.011070464737713337, -0.012472865171730518, 0.01545827928930521, 0.026369379833340645, -0.00017081796249840409, -0.0067092119716107845, 0.036823637783527374, -0.010002728551626205, 0.018762419000267982, 0.006964193657040596, 0.009216533973813057, -0.006597657222300768, -0.028260495513677597, -0.016892552375793457, 0.03563372418284416, -0.02194969356060028, -0.002363894833251834, -0.022778384387493134, -0.02942916378378868, 0.0036919256672263145, 0.059835758060216904, -0.04364440590143204, -0.005423678085207939, 0.02146097831428051, -0.012387871742248535, -0.01122982893139124, -0.004005340859293938, 0.021970942616462708, 0.013248435221612453, 0.05086889490485191, 0.015638891607522964, 0.005314779467880726, -0.012377247214317322, -0.024903234094381332, 0.018581807613372803, 0.01873054727911949, 0.013110320083796978, 0.003139464883133769, 0.019442372024059296, -0.0006938960868865252, 0.03374260663986206, 0.028430484235286713, 0.020324183627963066, -0.014565842226147652, -0.032722678035497665, -0.010666743852198124, 0.0006952241528779268, -0.049296505749225616, -0.030895309522747993, -0.015341412276029587, 0.024818239733576775, -0.0019402530742809176, -0.0072351121343672276, -0.00703856348991394, 0.008557830937206745, -0.024520762264728546, 0.012324126437306404, -0.023097112774848938, 0.037312354892492294, -0.024605754762887955, 0.054396141320466995, -0.015787631273269653, 0.01316344179213047, -0.004395782016217709, 0.0173600185662508, -0.005322747398167849, -0.01620197668671608, 0.02343708835542202, 0.004111583344638348, -0.018103716894984245, -0.009466203860938549, 0.02364957332611084, -0.032085224986076355, -0.00238248729147017, 0.042050767689943314, 0.007633521221578121, -0.007027939427644014, -0.02787802368402481, 0.03382760286331177, 0.010889852419495583, 0.03380635380744934, 0.005545856896787882, 0.019431747496128082, -0.005073077976703644, 0.0033014847431331873, -0.025646932423114777, 0.031808994710445404, -0.041328318417072296, -0.03814104571938515, -0.017923103645443916, -0.027984265238046646, -0.02817550301551819, -0.019283007830381393, 0.02222592383623123, 0.007415723986923695, -0.013652157038450241, -0.00548742339015007, -0.002183282747864723, 0.01651007868349552, 0.02781427837908268, 0.018231207504868507, -0.025944409891963005, -0.017487509176135063, 0.01675443723797798, -0.018156837671995163, -0.04491931572556496, -0.0086800092831254, -0.004741069860756397, 0.00517666433006525, -0.011378568597137928, -0.0024781054817140102, 0.05945328623056412, -0.003997372929006815, 0.010820794850587845, 0.011452937498688698, -0.019378626719117165, 0.0064701661467552185, 0.0010690648341551423, -0.002743711695075035, 0.04177453741431236, -0.03280767425894737, 0.011495434679090977, -0.0036733332090079784, 0.004632171709090471, -0.01726440154016018, -0.006916384678333998, -0.005112918559461832, -0.030619079247117043, -0.0018924439791589975, -0.01571326144039631, -0.009259031154215336, 0.023054614663124084, 0.007336042355746031, -0.02043042704463005, 0.030682824552059174, 0.012334750033915043, 0.006751708686351776, 0.001548483967781067, 0.006587033160030842, -0.015660138800740242, -0.005907081067562103, 0.005938953720033169, -0.0004153416375629604, -0.0022974933963268995, -0.0512513667345047, 0.010544564574956894, -0.019654856994748116, 0.02456325851380825, 0.02142910473048687, 0.04207201674580574, 0.0024435766972601414, 0.02477574348449707, 0.02583816833794117, -0.02681559883058071, 0.06276804953813553, -0.02951415814459324, 0.04100959375500679, 0.017498133704066277, 0.003681301372125745, 0.00610362971201539, -0.02471199817955494, 0.054396141320466995, 0.00904123391956091, 0.009089043363928795, -0.0025617715436965227, 0.021588468924164772, 0.02328834868967533, -0.003856601659208536, -0.02526445873081684, -0.0009847348555922508, 0.016244472935795784, 0.012069144286215305, 0.000336489814799279, -0.010857979767024517, -0.0011228501098230481, -0.008127548731863499, 0.011654798872768879, -0.03633492439985275, -0.00352990604005754, -0.01951674185693264, -0.002217811532318592, 0.02930167317390442, -0.0007317449781112373, -0.03134152665734291, 0.017275026068091393, -0.01875179633498192, -0.003925659228116274, 0.0008160749566741288, -0.0022018752060830593, -0.02258714847266674, -0.0314902663230896, 0.004826064221560955, 0.022268421947956085, 0.00895092822611332, -0.007606960833072662, -0.009290903806686401, -0.0523562878370285, 0.010518004186451435, 0.026220640167593956, 0.015107679180800915, -0.03367886319756508, -0.044366855174303055, 0.01422586664557457, -0.04047837853431702, 0.04343191906809807, 0.002058447804301977, -0.02273588813841343, -0.01799747347831726, 0.01326968427747488, 0.04283696413040161, 0.021057257428765297, -0.0087384432554245, 0.015490151941776276, -0.015012060292065144, 0.035676222294569016, -0.0314902663230896, 0.0023718629963696003, 0.019888589158654213, 0.022778384387493134, 0.02900419384241104, 0.01620197668671608, -0.012345374561846256, 0.008026618510484695, 0.0005657411529682577, -0.011389192193746567, -0.0067092119716107845, -0.013981509022414684, 0.0019615015480667353, 0.007904439233243465, 0.03969218581914902, -0.034762535244226456, -0.004321412183344364, -0.00222710776142776, 0.04717165604233742, -0.057200945913791656, 0.014385229907929897, 0.011856659315526485, 0.0387360043823719, 0.017923103645443916, 0.008834061212837696, -0.003877850016579032, 0.009205909445881844, 0.0018008098704740405, 0.0232246033847332, 0.01705191656947136, -0.02900419384241104, -0.017221903428435326, -0.061663128435611725, -0.002116881078109145, 0.011994774453341961, -0.011431689374148846, 0.0242870282381773, -0.027368059381842613, 0.025498192757368088, 0.011877907440066338, -0.02668810822069645, -0.0248394887894392, 0.008180669508874416, -0.005928329657763243, 0.006640154402703047, 0.00497745955362916, 0.0035378742031753063, 0.012791592627763748, -0.02072790451347828, -0.029386665672063828, -0.0314902663230896, 0.019591111689805984, 0.011484811082482338, -0.006730460096150637, -0.025795670226216316, 0.004587018396705389, -0.004865904804319143, -0.004549833480268717, -0.031745247542858124, 0.0003728446608874947, -0.00036952458322048187, 0.04602423682808876, 0.004834032151848078, -0.04043588414788246, 0.024733247235417366, -0.027410555630922318, 0.0608556866645813, 0.03425257280468941, -0.033700112253427505, 0.010964222252368927, 0.02113162726163864, -0.00444624712690711, -0.022119682282209396, 0.0038751938845962286, 0.022884627804160118, -0.028281744569540024, 0.04942399635910988, 0.012972204945981503, -0.001200539874844253, 0.04776661470532417, 0.019070522859692574, 0.019113019108772278, -0.006714523769915104, -0.02243840880692005, -0.007351978681981564, 0.0025445071514695883, -0.0016441021580249071, -0.0296416487544775, 0.030449090525507927, -0.022417159751057625, 0.016361339017748833, -0.007506030146032572, 0.024754494428634644, -0.0048924656584858894, 0.017349394038319588, 0.027920519933104515, -0.04602423682808876, -0.004297507926821709, -0.023245852440595627, -0.030534084886312485, -0.010008040815591812, 0.016042612493038177, 0.0013718558475375175, -0.03994716703891754, 0.0060770693235099316, -0.012440992519259453, 0.02009044960141182, -0.020632287487387657, -0.02286337874829769, 0.005853959824889898, 0.016244472935795784, 0.01850743778049946, 0.0221621785312891, -0.024180784821510315, -0.01631884276866913, 0.006401108577847481, -0.004180640913546085, -0.04623671993613243, 0.0043240683153271675, 0.03833228349685669, 0.025285707786679268, -0.016786308959126472, 0.015054557472467422, 0.010725176893174648, -0.03106529824435711, 0.01486332155764103, -2.3365042579825968e-05, 0.011686671525239944, 0.013832769356667995, 0.009614943526685238, 0.0209403894841671, 0.026305634528398514, 0.0017822174122557044, 0.009673376567661762, -0.033976342529058456, -0.0013771679950878024, 0.00527493841946125, 0.022502154111862183, -0.01768937148153782, -0.023458337411284447, -0.025434447452425957, -0.011973526328802109, -0.007617584895342588, 0.0033546059858053923, -0.004488744307309389, 0.005832711234688759, 0.013407799415290356, 0.001041840179823339, 0.008610951714217663, 0.012366623617708683, -0.03523000329732895, 0.030321599915623665, 0.019591111689805984, -0.008499396964907646, -0.006013323552906513, -0.006757020950317383, 0.010587061755359173, -0.015755757689476013, -0.048106588423252106, -0.056223515421152115, 0.008749066852033138, 0.024542009457945824, 0.0068154544569551945, -0.004177985247224569, 0.008536581881344318, -0.0097424341365695, 0.0064701661467552185, 0.031384024769067764, 0.02401079796254635, 0.00011445966083556414, 0.022204674780368805, -0.006257681176066399, -0.043176937848329544, 0.0068154544569551945, -0.021089129149913788, -0.0002929968177340925, -0.008026618510484695, 0.019569862633943558, -0.020356057211756706, 0.010013352148234844, 0.0173600185662508, 0.006863263435661793, -0.00016152174794115126, 0.020409177988767624, 0.01568138785660267, -0.034337565302848816, -0.02237466350197792, -0.027686787769198418, -0.05533107742667198, -0.005779589992016554, 0.009774306789040565, -0.032850172370672226, -0.024584507569670677, -0.013014702126383781, 0.012451617047190666, -0.02598690800368786, -0.005768965929746628, 0.009386521764099598, -0.053121235221624374, 0.04882903769612312, -0.019612358883023262, -0.0008818124770186841, 0.06684776395559311, 0.010985471308231354, 0.013992132619023323, -0.01122982893139124, 0.005853959824889898, 0.005726468749344349, 0.0002475117507856339, 0.0010577765060588717, -0.029471660032868385, 0.03559122607111931, -0.05171883478760719, -0.020961638540029526, 0.02209843322634697, 0.033423881977796555, -0.018156837671995163, -0.008106300607323647, 0.0005723813083022833, 0.0007470173295587301, -0.03478378430008888, -0.018804917111992836, 0.05469362065196037, -0.017009418457746506, -0.007325418293476105, -0.0015830127522349358, 0.03423132374882698, -0.008015993982553482, -0.008791564032435417, 0.012451617047190666, -0.025498192757368088, 0.014767702668905258, -0.007229799870401621, -0.01305719930678606, -0.009880549274384975, 0.001721128006465733, -0.021620342507958412, 0.02134411223232746, -0.012122265063226223, 0.017476886510849, 0.014204617589712143, 0.0416470468044281, -0.027771780267357826, 0.0010571125894784927, 0.016913801431655884, 0.0016162135871127248, 0.007808821275830269, 0.022778384387493134, 0.011314822360873222, -0.031384024769067764, 0.028982944786548615, -0.011357319541275501, -0.0019269727636128664, -0.02449951320886612, 0.04581174999475479, -0.011622926220297813, -0.004276259336620569, 0.005609602201730013, 0.0512513667345047, 0.023607077077031136, 0.00852595828473568, -0.029832884669303894, 0.024542009457945824, 0.022395912557840347, -0.005970826838165522, 0.004855280742049217, -0.05766841024160385, -0.021928444504737854, 0.015500775538384914, 0.005139479413628578, -0.029981624335050583, 0.04009590670466423, 0.00840377900749445, 0.02128036692738533, -0.021333487704396248, -0.032935164868831635, 0.017062541097402573, 0.010820794850587845, -0.011197956278920174, -0.0036706773098558187, -0.010799546726047993, -0.03792855888605118, 0.011707919649779797, 0.006565784569829702, 0.0005471486947499216, 0.008653448894619942, 0.014363981783390045, -0.01577700674533844, 0.0035378742031753063, -0.0021394577343016863, 0.010140843689441681, 0.003678645472973585, 0.015692012384533882, 0.004969491623342037, -0.01482082437723875, -0.0064701661467552185, 0.001837994670495391, 0.0013838080922141671, 0.01620197668671608, 0.004119551740586758, -0.00631611468270421, -0.023139609023928642, -0.006703899707645178, 0.014236490242183208, -0.04602423682808876, 0.0010093034943565726, -0.01316344179213047, -0.0020039984956383705, 0.06021822988986969, -0.004007996991276741, -0.0533762164413929, -0.009370585903525352, -0.011155459098517895, 0.008871246129274368, -0.0013027982786297798, -0.025328204035758972, 0.001302134245634079, -0.052823755890131, 0.021864699199795723, 0.016648193821310997, 0.031320277601480484, 0.0011673391563817859, -0.04636421427130699, 0.030172860249876976, -0.007070436142385006, 0.04045713320374489, -0.00829753652215004, 0.032170217484235764], [0.019302774220705032, 0.0475282147526741, 0.055449582636356354, 0.005165021866559982, -0.05869823321700096, -0.004419612232595682, -0.012538459151983261, 0.06670860946178436, 0.011470409110188484, 0.02376410737633705, -0.06087883561849594, -0.0056712329387664795, 0.03653620183467865, 0.0424104742705822, -0.04846275597810745, -0.023519346490502357, -0.009901711717247963, -0.014340792782604694, -0.011826425790786743, 0.012938978150486946, 0.058297716081142426, 0.025477437302470207, -0.041364677250385284, -0.015219708904623985, 0.008944916538894176, -0.020103812217712402, 0.025410683825612068, -0.0037103602662682533, 0.06305943429470062, -0.0032458698842674494, 0.046816181391477585, -0.036002177745103836, 0.04298900440335274, 0.03399958461523056, -0.031863484531641006, 0.007209335919469595, -0.02527717687189579, 0.032931532710790634, -0.04330051690340042, -0.01597624458372593, -0.018969008699059486, -0.016276633366942406, 0.04298900440335274, -0.01751156523823738, -0.056473132222890854, 0.07445196807384491, -0.02941587008535862, -0.004024656023830175, -0.00478675402700901, -0.014363043941557407, -0.010485800914466381, 0.03473386913537979, 0.02877059020102024, -0.0654180496931076, -0.011826425790786743, -0.011603915132582188, 0.021216362714767456, -0.003999623935669661, -0.008205070160329342, -0.01113108079880476, -0.01709992066025734, -0.025076918303966522, 0.014251789078116417, -0.0024142374750226736, 0.0025004602503031492, -0.030016647651791573, 0.04708319157361984, 0.03384382650256157, -0.02578895166516304, -0.021383246406912804, 0.037804510444402695, -0.012594087049365044, 0.022061903029680252, -0.019881300628185272, -0.04338952153921127, -0.004444644320756197, -0.05745217576622963, 0.020960476249456406, 0.02265155501663685, 0.016432389616966248, -0.031551968306303024, 0.04970881715416908, -0.010446861386299133, -0.02752453275024891, -0.012349325232207775, 0.02934911660850048, -0.026790248230099678, 0.0182235985994339, 0.018757624551653862, -0.018590740859508514, 0.004096972290426493, 0.027769293636083603, 0.0020470954477787018, 0.0439457967877388, 0.00023572192003484815, -0.014652307145297527, 0.006703124847263098, -0.009178552776575089, -0.01172629650682211, 0.05375850573182106, -0.012582961469888687, -0.029215611517429352, 0.011153331957757473, 0.013239366933703423, 0.0040274374186992645, -0.08348588645458221, -0.0062247272580862045, 0.025766700506210327, 0.05874273553490639, 0.025188174098730087, 0.03471161797642708, -0.03929533064365387, 0.02318558096885681, 0.040051866322755814, -0.05718516558408737, -0.009300933219492435, -0.01757831871509552, -0.007615417242050171, 0.003971809986978769, 0.0032375259324908257, 0.008600025437772274, 0.015119579620659351, 0.03597992658615112, -0.06252541393041611, 0.04009636864066124, 0.019625414162874222, -0.0012794346548616886, 0.042321473360061646, -0.016732780262827873, -0.00790468044579029, 0.033309802412986755, -0.04499159753322601, 0.023786358535289764, -0.010886319912970066, 0.030417166650295258, 0.00964026153087616, 0.029015351086854935, -0.003960684407502413, -0.003857773495838046, -0.009134050458669662, 0.0032430884893983603, 0.010146472603082657, 0.030394915491342545, 0.024787655100226402, -0.07342842221260071, 0.03277577832341194, -0.018245849758386612, 0.050376348197460175, 0.033465560525655746, -0.008828098885715008, -0.008816973306238651, -0.02347484417259693, -0.005445941351354122, -0.011075453832745552, -0.04668267443776131, 0.01629888452589512, -0.0034322224091738462, 0.08059325069189072, 0.024787655100226402, -0.03602442890405655, -0.0066530597396194935, 0.03108469769358635, -0.018034465610980988, -0.002207024721428752, 0.019035762175917625, 0.006597432307898998, 0.013395124115049839, 0.04654916748404503, -0.0424104742705822, -0.06078983098268509, -0.015286462381482124, 0.013606509193778038, -0.007114768959581852, 0.007098080590367317, -0.0986165925860405, -0.02161688171327114, -0.004508616402745247, 0.012660839594900608, -0.027836047112941742, 0.0005128168850205839, 0.01841273345053196, 0.055227071046829224, -0.03776000812649727, 0.029883142560720444, 0.003034485038369894, 0.0701797679066658, -0.007565352600067854, -0.032664522528648376, -0.023563846945762634, 0.060611821711063385, -0.006397172808647156, -0.014051529578864574, 0.01786758191883564, 0.023875361308455467, -0.0013294994132593274, 0.0067476266995072365, 0.0009387155878357589, -0.056695640087127686, 0.05442603677511215, -0.048418253660202026, 0.032442010939121246, -0.03353231027722359, 0.021483376622200012, -0.0040190936997532845, -0.03811602666974068, 0.011826425790786743, -0.002756347181275487, -0.011537162587046623, 0.004494709428399801, -0.00299554574303329, 0.01347300224006176, -0.019447406753897667, -0.0361134335398674, -0.03342105820775032, -0.02848132699728012, -0.02592245675623417, 0.013806767761707306, 0.024587394669651985, 0.013161487877368927, 0.014919320121407509, -0.04281099513173103, -0.0030873313080519438, -0.003148521762341261, -0.0465046651661396, -0.03544590249657631, -0.06270342320203781, -0.009228616952896118, -0.03197474032640457, -0.0439457967877388, -0.0189912598580122, -0.04089740663766861, 0.004575369413942099, -0.00439457967877388, -0.043189261108636856, -0.009406625293195248, 0.024387136101722717, 0.012115688994526863, -0.027546783909201622, -0.0261449683457613, 0.06550705432891846, 0.04140917956829071, -0.03239750862121582, 0.010446861386299133, -0.017489314079284668, -0.022785061970353127, -0.012449454516172409, -0.021082857623696327, 0.02425362914800644, 0.01940290443599224, 0.006680873688310385, 0.007159270811825991, 0.04350077733397484, 0.027324272319674492, -0.026767997071146965, -0.011681794188916683, 0.06230290234088898, -0.01578710973262787, 0.015397717244923115, 0.02074909210205078, -0.02977188676595688, -0.014485424384474754, 0.024943411350250244, -0.048996783792972565, -0.014641182497143745, -0.04583713412284851, -0.06697562336921692, 0.017622821033000946, -0.02658998779952526, 0.011537162587046623, 0.04641566053032875, -0.031774479895830154, 0.03742624446749687, 0.017144422978162766, -0.010897445492446423, -0.08878163248300552, 0.025099169462919235, -0.0027424402069300413, 0.0041220043785870075, 0.012026685290038586, -0.0371369794011116, -0.04218796640634537, -0.014140533283352852, 0.011459283530712128, -0.0453031100332737, -0.008271822705864906, 0.01827922649681568, 0.04198770597577095, 0.03669195994734764, -0.00039704193477518857, 0.020103812217712402, 0.05237894132733345, -0.03166322410106659, 0.0022654335480183363, 0.02819206379354, 0.03789351508021355, -0.007671044673770666, -0.053491491824388504, 0.014641182497143745, -0.042254719883203506, 0.011292400769889355, 0.0030066713225096464, 0.008310762234032154, 0.0010346731869503856, -0.07049128413200378, -0.06078983098268509, -0.01953640952706337, 0.009289807640016079, 0.015052826143801212, 0.017010917887091637, -0.006513990927487612, -0.07124781608581543, 0.002775816712528467, -0.08188381791114807, -0.04454657435417175, -0.002707673003897071, -0.0018106780480593443, -0.005935464054346085, -0.004742252174764872, 0.059810787439346313, 0.0066029950976371765, 0.05273495614528656, -0.01703316904604435, -0.0361134335398674, -0.001122982008382678, -0.04966431483626366, 0.02098272740840912, -0.010802878066897392, 0.028792841359972954, 0.017845330759882927, 0.01735580898821354, -0.050732363015413284, -0.010797315277159214, -0.029660630971193314, 0.02687925286591053, -0.04040788114070892, -0.008722405880689621, -0.03566841036081314, 0.02556644007563591, -0.021305367350578308, -0.006920072250068188, 0.014229537919163704, -0.015353214927017689, 0.03880580887198448, 0.007353967521339655, 0.014618931338191032, 0.007520850282162428, 0.02848132699728012, 0.019391778856515884, 0.0071759591810405254, -0.016855159774422646, 0.022829564288258553, 0.009200803935527802, -0.020381949841976166, 0.014440922997891903, -0.04583713412284851, -0.0041887578554451466, 0.02309657633304596, 0.04356753081083298, -0.006920072250068188, 0.0361134335398674, 0.0026854220777750015, -0.02672349475324154, 0.019525283947587013, 0.02345259301364422, 0.056028109043836594, -0.020971601828932762, -0.059677280485630035, -0.010157598182559013, -0.022829564288258553, 0.017823079600930214, -0.006480614189058542, -0.011375842615962029, 0.005562759004533291, -0.024654148146510124, 0.04281099513173103, -0.005003701895475388, 0.03210824728012085, 0.024364884942770004, 0.0018760404782369733, -0.0160986240953207, 0.028370071202516556, -0.0010277196997776628, 0.006202476564794779, 0.029393618926405907, -0.00975151639431715, 0.005089924670755863, -0.006619683466851711, -0.03282028064131737, 0.007559789810329676, 0.002200071234256029, -0.012705341912806034, -0.039517842233181, -0.003017796901986003, 0.04419055953621864, -0.03994061052799225, 0.005345811601728201, 0.025811202824115753, 0.0027215799782425165, -0.04323376342654228, 0.011386968195438385, -0.05540508031845093, -0.04372328519821167, 0.03108469769358635, 0.018167970702052116, -0.03820503130555153, 0.018101219087839127, 0.009773767553269863, 0.03262002021074295, -0.023563846945762634, -0.018201347440481186, 0.02383086085319519, -0.0045503368601202965, 0.03351006284356117, 0.03891706466674805, -0.017689574509859085, -0.0032903719693422318, 0.0028036306612193584, 0.01445204857736826, -0.020771343261003494, -0.0681326761841774, 0.02970513328909874, 0.017622821033000946, -0.05794169753789902, 0.056606635451316833, -0.027791544795036316, -0.03166322410106659, 0.04488034173846245, 0.004555899649858475, 0.004580932203680277, -0.020927099511027336, -0.031040195375680923, -0.00697570014744997, -0.020893722772598267, 0.023274583742022514, -0.02658998779952526, -0.012827722355723381, -0.028881845995783806, -0.006703124847263098, -0.0070090764202177525, -0.018334854394197464, -0.017923209816217422, -0.06261441856622696, 0.0012377139646559954, 0.026834750548005104, -0.04336727038025856, 0.016888536512851715, -0.01889112964272499, 0.06488402187824249, 0.031930238008499146, 0.020126063376665115, 0.029883142560720444, -0.02790280058979988, -0.0052206492982804775, -0.06470601260662079, 0.011314651928842068, -0.053803008049726486, 0.016910787671804428, 0.011158894747495651, 0.0400296151638031, -0.01395140029489994, 0.04301125183701515, 0.037737756967544556, 0.025610942393541336, 0.046015143394470215, -0.017088796943426132, 0.021928396075963974, -0.007782300002872944, 0.035045381635427475, -0.0035824168007820845, -0.03893931210041046, 0.02977188676595688, -0.005440378561615944, -0.014518801122903824, 0.023052074015140533, -0.038894813507795334, 0.004706094041466713, 0.01198218297213316, -0.039762601256370544, 0.018045591190457344, -0.019647665321826935, 0.020025933161377907, 0.06167987361550331, -0.019291648641228676, -0.06261441856622696, 0.004491928033530712, 0.03152971714735031, 0.05264595150947571, 0.004736689385026693, -0.02514367178082466, -0.026857001706957817, 0.004984232131391764, 0.006597432307898998, -0.010819566436111927, -0.008277385495603085, 0.026211721822619438, 0.03586867079138756, -0.005518257152289152, -0.020760217681527138, 0.023363588377833366, 0.01286109909415245, -0.023942114785313606, -0.056250620633363724, 0.0321972481906414, 0.023875361308455467, 0.009862772189080715, -0.0071759591810405254, -0.005929901264607906, 0.008972730487585068, 0.005712953861802816, -0.025410683825612068, 0.0069367606192827225, 0.019291648641228676, -0.006113472394645214, 0.005874273832887411, 0.014285165816545486, 0.0068199425004422665, 0.019258271902799606, 0.018935631960630417, -0.039918359369039536, 0.0195030327886343, 0.03108469769358635, -0.020760217681527138, -0.000617118610534817, 0.004116441588848829, -0.026411980390548706, 0.02434263378381729, 0.001960872672498226, -0.027057260274887085, -0.0028175374027341604, -0.020871471613645554, 0.03442235291004181, 0.00028161468799225986, -0.002233447739854455, -0.03442235291004181, -0.018323728814721107, -0.02897084876894951, 0.012916726991534233, 0.03958459571003914, 0.005473754834383726, -0.009395500645041466, 0.0403633788228035, -0.05113288015127182, -0.004767284728586674, -0.006163537036627531, -0.0008093814831227064, -0.013228241354227066, 0.03284252807497978, -0.013128111138939857, 0.01613200083374977, 0.0041220043785870075, -0.012082313187420368, 0.029104355722665787, 0.014663432724773884, -0.02745777927339077, 0.0008406720007769763, 0.04120891913771629, 0.012082313187420368, -0.00772110978141427, 0.015208583325147629, 0.011926556006073952, -0.012082313187420368, 0.03540140017867088, 0.0023502656258642673, 0.018290352076292038, -0.034311097115278244, -0.003688109340146184, -0.018357105553150177, -0.04810674116015434, -0.027635786682367325, 0.0070535787381231785, 0.011526037007570267, -0.0025032416451722383, 0.0071258945390582085, 0.0463266596198082, 0.025455186143517494, 0.00935099832713604, 0.02745777927339077, -0.04512510076165199, 0.028303317725658417, 0.030328162014484406, 0.022607052698731422, 0.018902255222201347, 0.001546447048895061, -0.026055963709950447, -0.02434263378381729, 0.012671965174376965, -0.02476540394127369, -0.01770070008933544, -0.006046719383448362, -0.012683090753853321, 0.011759673245251179, -0.0006431940128095448, 0.03673646226525307, -0.020804719999432564, -0.007392907049506903, 0.04312250763177872, -0.019091390073299408, 0.025833453983068466, -0.019936928525567055, 0.018579615280032158, 0.025811202824115753, 0.007203773129731417, 0.0013058576732873917, 0.019069138914346695, -0.005857585463672876, 0.005098268855363131, 0.0036380444653332233, -0.01116445753723383, 0.047038692981004715, -0.012950103729963303, 0.03880580887198448, 0.02037082426249981, -0.015497846528887749, -0.03415534272789955, -0.009456690400838852, 0.007214898709207773, -0.02309657633304596, -0.020448703318834305, -0.011342465877532959, 0.011064328253269196, -0.01703316904604435, 0.02294081822037697, 0.00020929881429765373, 0.016432389616966248, -0.06466151028871536, -0.006208039354532957, 0.011503785848617554, -0.022440170869231224, 0.004917479120194912, -0.022251036018133163, -0.02687925286591053, -0.029171109199523926, 0.0030622989870607853, -0.04301125183701515, 0.025811202824115753, -0.006992388051003218, -0.018523987382650375, -0.035112135112285614, 0.0028175374027341604, 0.024231377989053726, 0.02957162819802761, 0.03698122128844261, 0.04051913693547249, -0.02868158556520939, 0.03851654380559921, 0.013139236718416214, -0.0008142488659359515, 0.027925051748752594, 0.025655444711446762, -0.007570915389806032, 0.04423506185412407, 0.02207302860915661, -0.029393618926405907, -0.005785269662737846, -0.020037058740854263, -0.004567025229334831, 0.006035593803972006, 0.027947301045060158, -0.012071187607944012, 0.06452800333499908, 0.00942887645214796, 0.03101794421672821, 0.0133283706381917, 0.005156677681952715, -0.007671044673770666, 0.014541052281856537, 0.006714250426739454, -0.008956042118370533, -0.005448722746223211, -0.006408298388123512, 0.04472458362579346, 0.020960476249456406, 0.02187276817858219, -0.041297923773527145, 0.008205070160329342, -0.006892258767038584, 0.012538459151983261, 0.020348573103547096, -0.030483920127153397, -0.00485072610899806, -0.006469489075243473, -0.031996991485357285, -0.006925635039806366, -0.002543571637943387, -0.00474781496450305, -0.00970145221799612, -0.007760048843920231, -0.0231633298099041, -0.017022043466567993, 0.03213049843907356, -0.002059611491858959, 0.01544221956282854, 0.02209527976810932, 0.02492116019129753, -0.0028731650672852993, 0.04314475879073143, -0.013762266375124454, -0.013083609752357006, -0.0045503368601202965, -0.027279770001769066, 0.013272743672132492, 0.024008868262171745, -0.02062671072781086, -0.06394948065280914, -0.012215819209814072, 0.001188344438560307, -0.01946965605020523, -0.00389671279117465, 0.019647665321826935, -0.028303317725658417, -0.015998495742678642, -0.015464470721781254, -0.009045046754181385, -0.019914677366614342, 0.004636559635400772, -0.00539031345397234, 0.02877059020102024, 0.007142582908272743, 0.013450752012431622, 0.02084922045469284, 0.007726672571152449, 0.036135684698820114, -0.014663432724773884, 0.019669916480779648, 0.0026144967414438725, -0.0070313275791704655, 0.0016257163370028138, 0.02100497856736183, 0.0025157579220831394, -0.03326530009508133, 0.008277385495603085, 0.008622276596724987, -0.011348028667271137, 0.038828060030937195, -0.016855159774422646, 0.019358402118086815, 0.002485162578523159, -0.0016090280842036009, 0.022640429437160492, -0.022061903029680252, -0.000912292511202395, -0.009985152631998062, -0.011848676949739456, -0.01928052306175232, -0.043411772698163986, 0.0369589701294899, -0.004066376946866512, 0.03909507021307945, -0.01441867183893919, 0.025076918303966522, 0.0028370071668177843, 0.005835334304720163, -0.04160943999886513, -0.009729266166687012, 0.0005069064209237695, -0.027702540159225464, -0.006052281707525253, 0.009478941559791565, 0.007615417242050171, -0.006541804876178503, -0.030061149969697, -0.016443515196442604, -0.004058032762259245, 0.004152599722146988, 0.02527717687189579, -0.03333205357193947, -0.005329123232513666, -0.03909507021307945, 0.0005611433298327029, -0.004795098211616278, -0.004135911352932453, -0.03437785059213638, -0.00651955371722579, 0.04886327683925629, 0.009974027052521706, -0.024743152782320976, 0.026189470663666725, 0.0032458698842674494, -0.013339496217668056, -0.016399014741182327, 0.030417166650295258, 0.022406794130802155, -0.02636747807264328, 0.05122188478708267, -0.0004509311693254858, -0.0012648323317989707, -0.0374707467854023, -0.013539755716919899, -0.0013941664947196841, 0.024943411350250244, -0.04770622402429581, 0.010396797209978104, 0.012327074073255062, -0.004547555465251207, -0.03873905539512634, 0.0016159815713763237, 0.03079543448984623, -0.001304466975852847, -0.0415649376809597, 0.01604299806058407, 0.01452992670238018, 0.008182819001376629, -0.03328755125403404, 0.028459075838327408, 0.07854615896940231, -0.006647496949881315, -0.04545886814594269, 0.007242712192237377, -0.000861532345879823, -0.011492660269141197, -0.012694216333329678, 0.03101794421672821, 0.012327074073255062, 0.031551968306303024, 0.017745202407240868, -0.037381742149591446, -0.005612824112176895, 0.006441675126552582, -0.00719264755025506, 0.014663432724773884, 0.01140365656465292, 0.017667323350906372, -0.038449790328741074, -0.01825697533786297, 0.04690518602728844, -0.028058556839823723, -0.011603915132582188, 0.000871267169713974, -0.010391234420239925, -0.00241006538271904, 0.03239750862121582, 0.011492660269141197, 0.0019636540673673153, 0.01109770406037569, -0.02848132699728012, -0.004605964757502079, 0.021093983203172684, 0.02890409715473652, -0.018301477655768394, 0.014796939678490162, 0.00556554039940238, -0.00772110978141427, -0.05237894132733345, 0.005048203747719526, -0.013306119479238987, -0.004987013526260853, -0.011459283530712128, -0.00559613574296236, -0.034044086933135986, -0.0034739430993795395, 0.013717764057219028, -0.015775984153151512, -0.006491739768534899, -0.017177799716591835, 0.03442235291004181, -0.025766700506210327, 0.02636747807264328, 0.03115145117044449, -0.04619315266609192, -0.0291266068816185, -0.00697570014744997, -0.021260865032672882, 0.010190974920988083, 0.0004745728801935911, 0.018579615280032158, -0.0007349795778281987, 0.0034099712502211332, -0.014018152840435505, 0.018935631960630417, -0.03938433527946472, 0.04154268652200699, -0.0050760176964104176, 0.014774688519537449, 0.004558681044727564, 0.008650090545415878, -0.005902087315917015, -0.0022348384372889996, -0.027947301045060158, 0.008972730487585068, -0.01764507219195366, -0.043411772698163986, 0.019391778856515884, 0.029749635607004166, 0.006452800706028938, -0.01194880623370409, -0.029883142560720444, -0.050821367651224136, -0.0006004302995279431, 0.043634284287691116, 0.006180225405842066, -0.0065306792967021465, -0.006085658445954323, 0.02839232236146927, -0.032508764415979385, 4.350251401774585e-05, -0.0013392342953011394, 0.0009338482050225139, 0.028748339042067528, 0.015520097687840462, -0.010919695720076561, -0.0381605289876461, -0.02139437198638916, 0.010190974920988083, -0.021283116191625595, -0.03217499703168869, -0.004625434055924416, 0.017366934567689896, 0.014485424384474754, 0.007921368815004826, -0.023697353899478912, 0.015386591665446758, 0.029082104563713074, -0.03448910638689995, -0.07044678181409836, 0.025699947029352188, -0.009801581501960754, 0.014685683883726597, 0.015609102323651314, -0.03204149380326271, 0.03275352716445923, 0.04532536119222641, 0.006920072250068188, 0.0022417919244617224, 0.009534569457173347, 0.03095119260251522, 0.0035490402951836586, -0.02440938726067543, 0.009595759212970734, -0.024565143510699272, -0.0023071542382240295, -0.02636747807264328, 0.021416623145341873, -0.01010197028517723, 0.025677695870399475, -0.0021569598466157913, -0.0002315498422831297, 0.001971998019143939, 0.007743360940366983, 0.02919336035847664, -0.0068421936593949795, 0.013395124115049839, 0.018713122233748436, 0.018245849758386612, -0.06092333793640137, 0.039473339915275574, -0.00407472113147378, 0.030839936807751656, 0.03651395067572594, 0.03782676160335541, 0.00938437506556511, -0.007509724702686071, -0.02819206379354, -0.0003421096771489829, 0.011503785848617554, -0.011386968195438385, -0.051622405648231506, 0.0010562288807705045, 0.005345811601728201, 0.014351918362081051, 0.013762266375124454, -0.0030066713225096464, -0.02175038866698742, 0.016376763582229614, -0.03813827782869339, 0.035846419632434845, -0.021661384031176567, 0.03620243817567825, -0.021438874304294586, -0.0165213942527771, 0.04801773652434349, -0.03021690808236599, -0.020159438252449036, 0.019847923889756203, -0.0037159230560064316, -0.0434340238571167, -0.009796018712222576, 0.0019511377904564142, 0.012983479537069798, 0.015208583325147629, -0.002020672196522355, -0.011893179267644882, 0.03335430473089218, 0.014084906317293644, 0.01427404023706913, 0.012282571755349636, 0.015041700564324856, 0.0003000413125846535, -0.005543289706110954, 0.04263298586010933, -0.019681042060256004, 0.03226400166749954, 0.010713874362409115, 0.008750219829380512, 0.01133690308779478, -0.0010882148053497076, -0.019091390073299408, 0.026278473436832428, -0.026278473436832428, -0.012760969810187817, 0.020582208409905434, -0.013851270079612732, 0.005415346007794142, -0.014173910021781921, 0.004516960587352514, -0.012538459151983261, -0.025521939620375633, -0.007810113951563835, 0.019992556422948837, 0.00044467305997386575, -0.0033793761394917965, -0.017144422978162766, -0.00432226387783885, 0.017567193135619164, 0.043678782880306244, -0.04654916748404503, -0.01300573069602251, 0.04432406648993492, -0.004764503333717585, -0.025010164827108383, 0.012449454516172409, 0.027925051748752594, -0.001057619578205049, 0.05224543437361717, -0.014574429020285606, 0.017122171819210052, -0.0008573602535761893, -0.0002715321897994727, 0.03448910638689995, 0.03702572360634804, 0.0048562888987362385, 0.014340792782604694, 0.005952152423560619, -0.005957715213298798, 0.05780819430947304, 0.01667715236544609, 0.005540508311241865, 0.006452800706028938, -0.00034471723483875394, -0.009267556481063366, -0.008872601203620434, -0.04316700994968414, -0.02149450220167637, -0.02212865650653839, 0.014118283055722713, -0.01747818849980831, 0.007565352600067854, -0.03201924264431, 0.009061734192073345, -0.011648417450487614, 0.008855912834405899, -0.01040792278945446, 0.02957162819802761, -0.010185412131249905, 0.0749414935708046, -0.012082313187420368, 0.004683843348175287, 0.004589276388287544, 0.016276633366942406, 0.005398657638579607, -0.0165213942527771, -0.011904304847121239, -0.0035685100592672825, -0.01902463659644127, -0.029905393719673157, 0.02623397298157215, -0.009373249486088753, 0.0016382326139137149, 0.03987385705113411, 0.02970513328909874, -0.020381949841976166, -0.024075621739029884, 0.04160943999886513, 0.010257727466523647, 0.041720692068338394, 0.0068421936593949795, 0.023430341854691505, -0.015419968403875828, 0.034622613340616226, -0.02781379595398903, 0.02376410737633705, -0.04917478933930397, -0.0008149442146532238, -0.006308168638497591, -0.008961604908108711, -0.03437785059213638, -0.01648801751434803, 0.007543101441115141, 0.0029148857574909925, -0.012393827550113201, -0.011648417450487614, -0.006586306728422642, 0.03379932418465614, 0.01412940863519907, 0.006753189489245415, -0.05108838155865669, -0.017111046239733696, 0.0025908551178872585, -0.03758200258016586, -0.04425731301307678, -0.007242712192237377, -0.0036046679597347975, 0.012215819209814072, -0.02055995725095272, 0.01194880623370409, 0.06470601260662079, -0.01459668017923832, 0.007871304638683796, 0.022284412756562233, 0.0172890555113554, 0.021605756133794785, -0.00896716769784689, -0.004461332689970732, 0.033243048936128616, -0.01568698137998581, 0.0006821333663538098, -0.02004818432033062, 0.003393283113837242, -0.020226191729307175, 0.004945293068885803, -0.017533816397190094, -0.008950479328632355, -0.02354159578680992, -0.021449999883770943, -0.01623213104903698, 0.013495253399014473, -0.01815684512257576, -0.012226944789290428, 0.015230834484100342, 0.02623397298157215, -0.0029121043626219034, -0.006536242086440325, 0.009478941559791565, -0.0023141077253967524, -0.020381949841976166, 0.021283116191625595, 0.0034044086933135986, -0.01194880623370409, -0.04298900440335274, 0.033020537346601486, -0.029393618926405907, -0.005941026844084263, 0.02110510878264904, 0.03958459571003914, 0.009117362089455128, 0.023430341854691505, 0.01892450638115406, -0.00034471723483875394, 0.07106981426477432, -0.027257518842816353, 0.031551968306303024, 0.014196161180734634, -0.01732243224978447, -0.00364917004480958, -0.010769501328468323, 0.05665113776922226, 0.004391798283904791, 0.029260113835334778, -0.003073424333706498, 0.008299636654555798, 0.017622821033000946, -0.004605964757502079, -0.011503785848617554, 0.00023902481188997626, -0.00025171483866870403, 0.01158166490495205, 0.015286462381482124, 0.00011212436220375821, 0.0109864491969347, -0.007899117656052113, 0.010163160972297192, -0.01953640952706337, -0.005123300943523645, -0.0116261662915349, -0.008127191103994846, 0.03351006284356117, -0.006669748108834028, -0.03493412584066391, 0.011425907723605633, -0.003354343818500638, -0.0005917384987697005, 0.0054598478600382805, 0.03213049843907356, -0.022106405347585678, -0.04338952153921127, -0.008672341704368591, 0.041653938591480255, 0.007682170253247023, -0.008928228169679642, 0.0034322224091738462, -0.03698122128844261, -0.003707578871399164, 0.013995901681482792, 0.0012787393061444163, -0.016276633366942406, -0.034845124930143356, -0.0032709024380892515, -0.03362131491303444, 0.0189912598580122, 0.013094735331833363, -0.00975151639431715, -0.0034016272984445095, -0.0011994699016213417, 0.04810674116015434, 0.009490067139267921, -0.01699979230761528, -0.014908194541931152, -0.004845163319259882, 0.011715170927345753, -0.024498391896486282, -0.019480781629681587, 0.012193568050861359, 0.025165922939777374, 0.01172629650682211, -0.02839232236146927, 0.004102535080164671, 0.002900978783145547, 0.0021194112487137318, 0.001139670261181891, -0.023296834900975227, -0.004283324349671602, -0.012471705675125122, 0.00726496335119009, 0.03415534272789955, -0.008783596567809582, 0.010196537710726261, 0.001713329809717834, -0.00027431355556473136, -0.06087883561849594, -0.018212473019957542, 0.011848676949739456, 0.018301477655768394, -0.0016535301692783833, 0.00016644818242639303, -0.012293697334825993, -0.019480781629681587, 0.025455186143517494, 0.04508059844374657, 0.002219540998339653, 0.0018621336203068495, -0.02309657633304596, -0.03137396275997162, 0.00012733503535855561, -0.011448157951235771, -0.004386235494166613, 0.005601698532700539, -0.018690871074795723, 0.04338952153921127, -0.001224502339027822, -0.0049508558586239815, -0.0024434418883174658, 0.0010270243510603905, -0.022918567061424255, 0.004247166682034731, -0.009211929515004158, -0.01292785257101059, 0.006163537036627531, -0.043411772698163986, -0.015208583325147629, -0.029015351086854935, 0.017711825668811798, -0.010641558095812798, -0.011793049052357674, -0.01148153468966484, 0.009540132246911526, -0.016532519832253456, -0.007932494394481182, 0.009323184378445148, 0.014552177861332893, -0.006775440648198128, 0.04183194786310196, 0.02418687753379345, -0.031218204647302628, 0.010936384089291096, -0.027858298271894455, 0.041453681886196136, 0.005929901264607906, -0.002640919992700219, -0.04312250763177872, 0.020248442888259888, 0.009234179742634296, -0.010480238124728203, -0.009707015007734299, -0.005610042717307806, -0.03088443912565708, 0.03184123337268829, 0.007943619973957539, -0.01289447583258152, 0.022896315902471542, -0.0049591995775699615, 0.03638044372200966, 0.0036825465504080057, -0.0155868511646986, 0.011859802529215813, -0.003910619765520096, -0.003852210706099868, -0.043100256472826004, 0.041075412184000015, -0.019669916480779648, 0.008855912834405899, -0.013684387318789959, 0.008244008757174015, 0.01626550778746605, 0.002887072041630745, 0.029438121244311333, -0.043256014585494995, -0.007042453158646822, -0.03137396275997162, -0.028592582792043686, -0.003059517592191696, -0.0116261662915349, -0.0020262349862605333, -0.000332722527673468, 0.021817142143845558, -6.305908755166456e-05, 0.030239159241318703, -0.02037082426249981, -0.030995693057775497, -0.008127191103994846, 0.028281066566705704, 0.014374169521033764, 0.009540132246911526, -0.013684387318789959, -0.04298900440335274, -0.00417763227596879, 0.013751140795648098, -0.040852904319763184, 0.010085281915962696, 0.04619315266609192, 0.023586098104715347, 0.009267556481063366, 0.001410854747518897, 0.024809906259179115, -0.007715546991676092, 0.0025352274533361197, 0.0021861642599105835, 0.008944916538894176, -0.004274980165064335, 0.007665481884032488, 0.016332261264324188, 0.04345627501606941, -0.008088251575827599, 0.04583713412284851, -0.04766172170639038, -0.002998327137902379, 0.011993308551609516, 0.03146296739578247, -0.020760217681527138, 0.0014032060280442238, -0.0036380444653332233, 0.011320214718580246, -0.002531055361032486, 0.026033712550997734, -0.008027061820030212, -0.00942887645214796, 0.014318541623651981, -0.004770066123455763, 0.020938225090503693, 0.01172629650682211, -0.02970513328909874, 0.02171701192855835, 0.026122717186808586, -0.014685683883726597, -0.002766082063317299, -0.011592790484428406, 0.018535112962126732, -0.03531239554286003, -0.04468008130788803, -0.04619315266609192, 0.023430341854691505, 0.024498391896486282, 0.0015408842591568828, -0.0118375513702631, 0.01812346838414669, 1.2630288210857543e-06, -0.009885023348033428, 0.05598360672593117, 0.008778033778071404, 0.03862779960036278, -0.0061746626161038876, -0.011158894747495651, -0.037871263921260834, -0.02819206379354, -0.018179096281528473, -0.008433142676949501, -0.026745745912194252, 0.016020746901631355, -0.017689574509859085, 0.010402359999716282, 0.022829564288258553, 0.02899309992790222, -0.020615585148334503, 0.0011549678165465593, 0.026411980390548706, -0.03384382650256157, -0.015520097687840462, -0.04281099513173103, -0.046237654983997345, -0.004664373584091663, 0.033465560525655746, 0.00299554574303329, -0.004247166682034731, -0.00637492211535573, 0.0016757812118157744, 0.005890961736440659, 0.0028397885616868734, 0.024142375215888023, -0.04730570316314697, 0.032442010939121246, -0.018980134278535843, 0.024565143510699272, 0.03996286168694496, 0.005134426523000002, 0.01242720428854227, 0.0022904661018401384, 0.01544221956282854, -0.0028105841483920813, 0.03408858925104141, -0.029037602245807648, 0.004678280558437109, 0.032931532710790634, -0.029838640242815018, -0.04022987559437752, 0.010797315277159214, 0.035623908042907715, -0.0035295707639306784, 0.010196537710726261, 0.006686436478048563, 0.013973650522530079, -0.017889833077788353, -0.0042388224974274635, 0.016009621322155, -0.020470954477787018, -0.01956978626549244, 0.0071036433801054955, 0.0080048106610775, 0.004903572145849466, -0.01790095865726471, -0.0022014619316905737, -0.02123861387372017, -0.007470785640180111, 0.011670668609440327, -0.009395500645041466, 0.0011501004919409752, -0.02839232236146927, -0.005498787388205528, 0.0429222509264946, -0.03128495812416077, -0.0014393639285117388, 0.010001841001212597, 0.016009621322155, -0.0068199425004422665, 0.011915430426597595, 0.03344330936670303, 0.004878539592027664, 0.018334854394197464, 0.03784901276230812, -0.02957162819802761, -0.01445204857736826, 0.03397733345627785, -0.007593166083097458, -0.019102515652775764, -0.029371367767453194, 0.05482655391097069, -0.014474298804998398, -0.00722602428868413, -0.006202476564794779, 0.0562061183154583, 0.011681794188916683, -0.012805471196770668, -0.003785457694903016, 0.012193568050861359, 0.005618386901915073, 0.010941946879029274, 0.010402359999716282, -0.02839232236146927, -0.03368806838989258, 0.013617634773254395, 0.008511021733283997, -0.03264227136969566, 0.023052074015140533, 0.010480238124728203, 0.01667715236544609, -0.00226960564032197, -0.0408751554787159, -0.009957338683307171, 0.014863692224025726, -0.016031872481107712, -0.01642126403748989, 0.0027883329894393682, -0.017589444294571877, 0.011136643588542938, 0.012182442471385002, 0.009551257826387882, -0.004447425715625286, -0.0031735540833324194, -0.011448157951235771, -0.021383246406912804, 0.017778577283024788, 0.02255142480134964, 0.006107909604907036, -0.023007571697235107, -0.008216194808483124, 0.007854616269469261, -0.0004547555581666529, 0.0018690871074795723, -0.002928792731836438, 0.03190798684954643, -0.00539031345397234, -0.019714418798685074, -0.02203965187072754, 0.015141830779612064, 0.051177382469177246, -0.025076918303966522, -0.005320779047906399, -0.014073780737817287, 0.007637668401002884, 0.03793801739811897, -0.003320967312902212, -0.038828060030937195, -0.013239366933703423, -0.023719605058431625, 0.0049591995775699615, 0.013784517534077168, -0.01165954302996397, 0.02037082426249981, -0.045280858874320984, 0.022729434072971344, 0.005763018503785133, 0.04178744554519653, -0.0036964535247534513, -0.04792873188853264, 0.03375482186675072, -0.03259776905179024, 0.023296834900975227, 0.01336174737662077, 0.027791544795036316], [0.04169118404388428, 0.023092806339263916, 0.04973835125565529, -0.0008366861729882658, -0.07897354662418365, 0.008983508683741093, -0.010449548251926899, 0.031054366379976273, 0.008737384341657162, 0.014339369721710682, -0.047812167555093765, 0.030883150175213814, 0.01917623169720173, 0.05136490613222122, -0.027137791737914085, -0.040599677711725235, -0.011664113961160183, -0.004604114685207605, 0.004363341722637415, -0.026238907128572464, 0.037860218435525894, 0.028871357440948486, -0.017656687647104263, -0.018919408321380615, 0.007298097014427185, -0.013665205799043179, 0.012787722051143646, 0.01930464431643486, 0.057528696954250336, 0.013708009384572506, 0.029770243912935257, -0.023007197305560112, 0.050080783665180206, 0.03430747613310814, -0.03593403473496437, -0.020160725340247154, -0.05063723772764206, 0.004689723253250122, -0.011428691446781158, -0.02127363160252571, 0.007351602427661419, -0.012937535531818867, -0.010824084281921387, -0.031910449266433716, -0.03666170313954353, 0.07820307463407516, -0.006918211001902819, -0.020000210031867027, 0.0172821506857872, -0.013697308488190174, -0.019850395619869232, 0.04222623258829117, 0.019229736179113388, -0.06206592917442322, 0.017710192129015923, 0.015602090395987034, 0.0007189749157987535, -0.022065507248044014, 0.015120544470846653, -0.027201998978853226, -0.03276652842760086, -0.0004434236034285277, 0.02765144221484661, -0.00914402399212122, 0.011664113961160183, -0.038031432777643204, 0.046142809092998505, 0.04999517649412155, -0.027565833181142807, -0.014210958033800125, 0.007806395646184683, 0.005896263290196657, 0.029877254739403725, -0.02382047474384308, -0.014542689546942711, 0.00421352731063962, -0.032916344702243805, 0.028314905241131783, 0.014692503958940506, -0.01459619402885437, -0.04205501824617386, 0.04699888825416565, -0.026410123333334923, -0.004954573232680559, -0.013055247254669666, 0.02769424580037594, -0.03563440591096878, 0.02341383695602417, 0.04040706157684326, -0.008892549201846123, -0.007078726310282946, 0.027972472831606865, -0.009154724888503551, 0.034821126610040665, -0.01935814879834652, 0.01871608756482601, 0.032145872712135315, -0.026773957535624504, -0.0034805075265467167, 0.07114039361476898, 0.02347804233431816, -0.020578065887093544, -0.0007009169785305858, 0.020567364990711212, -0.024804970249533653, -0.06129545718431473, 0.022086910903453827, -0.007993663661181927, 0.03323737531900406, 0.020096519961953163, 0.07918756455183029, -0.08667828142642975, 0.0396793894469738, 0.04391699656844139, -0.002402379410341382, -0.018384356051683426, -0.019818292930722237, -0.005933716893196106, 0.016286956146359444, -0.015291760675609112, 0.0008172905654646456, 0.03143960237503052, -0.004312511999160051, -0.03396504372358322, 0.004711125046014786, -0.006982416845858097, 0.018245242536067963, 0.0426756776869297, -0.028250698000192642, 0.007025221362709999, 0.01846996508538723, -0.04181959480047226, 0.029213791713118553, -0.016244152560830116, 0.03443589061498642, 0.016190646216273308, 0.01462829764932394, -0.033515602350234985, -0.01549508050084114, -0.025575444102287292, -0.013568895868957043, -0.0012460002908483148, -0.008860446512699127, 0.02555404044687748, -0.06069619953632355, 0.0020652972161769867, -0.015880316495895386, 0.04235464707016945, 0.020460354164242744, -0.00595511868596077, 0.007651230785995722, 0.001053381827659905, 0.0013817695435136557, 0.0008915289072319865, -0.022001301869750023, 0.01626555435359478, 0.007790344301611185, 0.05260622501373291, 0.026260308921337128, -0.026410123333334923, 0.0006721579702571034, 0.013140855357050896, -0.003758734092116356, -0.0017723568016663194, 0.010203424841165543, -0.003721280489116907, -0.001435274607501924, 0.039229948073625565, -0.0403856597840786, -0.01942235603928566, 0.006522273179143667, -0.009202878922224045, -0.006356407422572374, -0.00854476634413004, -0.06608951091766357, 0.0022284879814833403, 0.004427548032253981, 0.0313325934112072, 0.013183659873902798, -0.01054585725069046, 0.0041225687600672245, 0.044002603739500046, -0.02788686379790306, -0.0017870707670226693, 0.040835101157426834, 0.05157892778515816, -0.03818124905228615, -0.022600559517741203, -0.00018442542932461947, 0.010299733839929104, 0.001134308404289186, -0.029277997091412544, 0.032980550080537796, 0.05204977095127106, -0.0066185821779072285, 0.02818649262189865, -0.02495478466153145, -0.020717179402709007, 0.011353784240782261, -0.045714765787124634, 0.005149866919964552, -0.03794582560658455, -0.014874421060085297, -0.003568790853023529, -0.015141946263611317, 0.007335550617426634, -0.006779097486287355, -0.020877694711089134, 0.033151768147945404, -0.019144129008054733, 0.04295390471816063, -0.03424327075481415, -0.006131685804575682, -0.023606454953551292, 0.010347888804972172, 0.01805262453854084, 0.03188904747366905, 0.01698252186179161, 0.02334963157773018, 0.021616065874695778, -0.04271848127245903, -0.026495730504393578, -0.017645984888076782, -0.04717010632157326, -0.030604923143982887, -0.04532952979207039, -0.024804970249533653, -0.030005667358636856, -0.03730376437306404, 0.0019248464377596974, -0.0032049561850726604, 0.011867433786392212, 0.012980340048670769, -0.03616945445537567, 0.011664113961160183, 0.027244802564382553, 0.010968548245728016, -0.05534568801522255, -0.012948237359523773, 0.08552256971597672, 0.030540717765688896, -0.0359768383204937, 0.013429783284664154, -0.014050442725419998, -0.034821126610040665, -0.003031064523383975, -0.012348979711532593, -0.009689775295555592, 0.04064248129725456, -0.0075602722354233265, 0.04259007051587105, 0.05397595465183258, 0.02145555056631565, -0.0059872218407690525, -0.037924423813819885, 0.05273463949561119, -0.030840346589684486, -0.015623492188751698, 0.024804970249533653, -0.037731803953647614, -0.005500325467437506, 0.02681676112115383, -0.06711681187152863, -0.02001091092824936, -0.022900188341736794, -0.07816026359796524, -0.003975429572165012, -0.013183659873902798, 0.0198396947234869, 0.07280975580215454, -0.024334125220775604, 0.06168069317936897, -0.012659309431910515, -0.035720013082027435, -0.04141295701265335, 0.046613652259111404, 0.004042311105877161, 0.013258567079901695, -0.030519315972924232, -0.02548983506858349, -0.0269237719476223, -0.019689880311489105, 0.04986676573753357, -0.022065507248044014, -0.02632451429963112, 0.04051407054066658, 0.05521727353334427, 0.04169118404388428, -0.025340020656585693, 0.031246984377503395, 0.05089406296610832, -0.021006107330322266, 0.000739708193577826, 0.034286074340343475, 0.059968527406454086, -0.03073333576321602, -0.010315785184502602, 0.015891017392277718, -0.0014272488187998533, -0.01220986619591713, 0.04169118404388428, 0.0039460021071136, 0.008020415902137756, -0.05470362678170204, -0.06249396875500679, -0.002449196530506015, 0.0019810267258435488, 0.027030782774090767, 0.022429343312978745, -0.004938521888107061, -0.04729851707816124, 0.027844060212373734, -0.08509452641010284, -0.04032145068049431, -0.023756269365549088, -0.009277786128222942, 0.0031139974016696215, -0.0007390393293462694, 0.08980298042297363, 0.03334438428282738, 0.010594012215733528, 0.00021301722154021263, -0.02852892503142357, 0.003448404371738434, -0.0499095693230629, -0.041134729981422424, -0.019390251487493515, 0.052220989018678665, 0.027073586359620094, 0.039465371519327164, -0.013322772458195686, -0.011696217581629753, -0.00774754025042057, 0.0156662967056036, -0.03610524907708168, -0.016169244423508644, -0.0181061290204525, 0.020652972161769867, -0.01280912384390831, -0.005489624571055174, 0.028272101655602455, -0.002752837957814336, 0.028100885450839996, 0.017645984888076782, 0.009037013165652752, -0.009261734783649445, 0.03781741112470627, 0.007030571810901165, 0.017068130895495415, -0.009095869027078152, 0.0017643310129642487, 0.016308357939124107, -0.014317967928946018, 0.0074051073752343655, -0.07079796493053436, -0.004962598904967308, 0.03629786893725395, 0.04271848127245903, -0.015591389499604702, 0.028314905241131783, -0.0022472147829830647, 0.009957301430404186, 0.042397450655698776, 0.013344175182282925, 0.04276128485798836, -0.02002161182463169, -0.04695608466863632, -0.009165425784885883, -0.009732579812407494, -0.03360120952129364, 0.017549676820635796, -0.004539908841252327, -0.02812228724360466, -0.013419082388281822, 0.04511551186442375, -0.04605719819664955, 0.04235464707016945, 0.01558068860322237, -0.0018379006069153547, -0.00821838527917862, -0.002439833013340831, 0.010010805912315845, -0.049952372908592224, 0.012348979711532593, 0.011846031993627548, 0.008303993381559849, -0.027180597186088562, -0.037731803953647614, 0.024997588247060776, 0.040235843509435654, -0.03666170313954353, 0.0024451836943626404, 0.018074026331305504, 0.04378858208656311, -0.050252001732587814, -0.005460196640342474, 0.04186239838600159, 0.0004273720842320472, -0.018812397494912148, 0.012027949094772339, -0.059540487825870514, -0.040300048887729645, -0.012359680607914925, -0.02079208567738533, -0.018202438950538635, 0.015527183189988136, 0.015955224633216858, 0.029641831293702126, -0.004264357499778271, 0.005307707004249096, 0.02829350344836712, -0.03730376437306404, 0.027373215183615685, 0.02758723497390747, 0.010476300492882729, 0.003603569231927395, -0.013697308488190174, 0.010128517635166645, -0.018726788461208344, -0.027137791737914085, 0.0327451266348362, 0.04115613177418709, -0.03146100416779518, 0.035891227424144745, -0.05123649537563324, -0.012477392330765724, 0.026645544916391373, 0.011803227476775646, -0.044773075729608536, -0.005794603377580643, -0.020224932581186295, -0.01191023737192154, -0.003154126228764653, 0.03653328865766525, -0.027480226010084152, 0.011236073449254036, -0.04819740355014801, 0.03586982563138008, -0.004226903896778822, -0.024334125220775604, -0.008855096064507961, -0.0192511398345232, 0.0023140960838645697, 0.05307707190513611, -0.03197465464472771, -0.010198074392974377, -0.005864160135388374, 0.06711681187152863, 0.009582765400409698, 0.014189555309712887, 0.022472146898508072, -0.022151116281747818, -0.03199605643749237, -0.01692901737987995, -0.009202878922224045, -0.051450517028570175, -0.002969533670693636, -0.012455989606678486, 0.011321681551635265, -0.004499780014157295, 0.021712373942136765, 0.02848612144589424, 0.038459472358226776, 0.033451396971940994, 0.014992131851613522, 0.028935564681887627, 0.019700581207871437, 0.03681151568889618, 0.0002021489926846698, -0.03143960237503052, -0.004697748925536871, -0.013172958046197891, 0.006666736677289009, 0.048283014446496964, -0.0408565029501915, -0.002093387534841895, 0.028036678209900856, -0.050551630556583405, 0.003130048979073763, -0.03700413554906845, 0.051921360194683075, 0.04678487032651901, -0.023520847782492638, -0.045543551445007324, 0.03210306540131569, 0.007019870448857546, 0.050423216074705124, 0.010214125737547874, 0.003828290617093444, -0.028550326824188232, 0.005933716893196106, 0.028849955648183823, -0.03439308702945709, -0.006763046141713858, 0.00785990059375763, 0.02628171071410179, -0.008025766350328922, -0.03636207431554794, 0.0042991358786821365, -0.014949328266084194, -0.00560198538005352, -0.034714117646217346, -0.021476952359080315, 0.008507312275469303, -0.00012607141979970038, 0.019647076725959778, -0.0014473132323473692, -0.010797331109642982, 0.026838164776563644, -0.005115088541060686, 0.015602090395987034, 0.03182484209537506, 0.011899536475539207, -0.013611700385808945, 0.02822929620742798, -0.007030571810901165, -0.000732351210899651, 0.015056338161230087, -0.05881281942129135, 0.008496611379086971, 0.03700413554906845, -0.013386978767812252, -0.02145555056631565, -0.010112466290593147, -0.04342474788427353, 0.019261840730905533, 0.016522377729415894, -0.03948677331209183, -0.01804192364215851, 0.013205061666667461, -0.0035152859054505825, -0.0009804811561480165, -0.03627646714448929, 0.002245877170935273, 0.014692503958940506, -0.02067437581717968, 0.00592836644500494, 0.04111332818865776, 0.01704672910273075, 0.006137036252766848, 0.0394439697265625, -0.02872154302895069, 0.03790302202105522, -0.02038544788956642, -0.029534822329878807, -0.02139134332537651, -0.010561908595263958, -0.02061016857624054, 0.002027843613177538, 0.006404561921954155, -0.012466691434383392, 0.011835331097245216, -0.0016653465572744608, -0.026538535952568054, 0.007522818632423878, 0.02822929620742798, 0.015891017392277718, -0.04425942897796631, 0.040663883090019226, 0.008384251035749912, -0.015024235472083092, 0.02902117185294628, 0.009743280708789825, 0.01603013090789318, -0.0035420383792370558, -0.0038470174185931683, -0.032552510499954224, -0.02848612144589424, -0.02407729998230934, -0.007613777182996273, -0.0069342623464763165, 0.010936444625258446, -0.007287396118044853, 0.05277744308114052, 0.024269917979836464, 0.023392435163259506, 0.011310980655252934, -0.04883946478366852, 0.023692063987255096, 0.015891017392277718, 0.03760339319705963, 0.053719133138656616, 0.023692063987255096, -0.01269141212105751, -0.02461235038936138, 0.014360771514475346, -0.007522818632423878, -0.03700413554906845, -3.1914962164592e-05, -0.0058267065323889256, 0.03244549781084061, 0.012134958989918232, 0.02043895237147808, -0.03980780392885208, -0.01608363725244999, 0.01943305693566799, 0.0078920042142272, 0.02281457930803299, -0.0038416669704020023, 0.04383138567209244, 0.02859313227236271, 0.013408380560576916, -0.02102750912308693, 0.016233451664447784, -0.0073783546686172485, -0.003410950768738985, -0.00932594109326601, 0.00213619158603251, 0.07995803654193878, -0.007100128103047609, 0.015152647159993649, -0.004529207479208708, -0.005741098430007696, -0.039401162415742874, 0.0024532093666493893, 0.04325353354215622, -0.05230659618973732, 0.006104933097958565, -0.007881303317844868, -0.01597662642598152, -0.016661491245031357, 0.024334125220775604, 0.005288980435580015, -0.015955224633216858, -0.06155227869749069, -0.01272351574152708, -0.011236073449254036, -0.01372941117733717, -0.0002391009620623663, -0.017121635377407074, -0.030840346589684486, -0.018919408321380615, -0.0032638118136674166, -0.03927275165915489, 0.016222748905420303, 0.011835331097245216, -0.028807152062654495, -0.02705218456685543, -0.018138233572244644, 0.03325877711176872, 0.038395266979932785, 0.039529576897621155, 0.02508319541811943, -0.020642271265387535, 0.039165742695331573, 0.02949201688170433, 0.023670662194490433, 0.01930464431643486, 0.020096519961953163, 0.011749722063541412, 0.04094211012125015, 0.031139975413680077, -0.02822929620742798, -0.009481105953454971, -0.009957301430404186, -0.01528105977922678, 0.015024235472083092, 0.02418431080877781, 0.001334283733740449, 0.035720013082027435, -0.006666736677289009, 0.03366541489958763, 0.016586584970355034, 0.008229086175560951, -0.0052194236777722836, 0.013215762563049793, 0.020299838855862617, -0.002049245871603489, -6.867882621008903e-05, -0.012702113017439842, 0.02758723497390747, -0.008555467240512371, 0.004095816053450108, -0.046613652259111404, 0.0005002727848477662, -0.013504690490663052, 0.024526743218302727, 0.01272351574152708, -0.018277345225214958, -0.006939612794667482, 0.002742137061432004, -0.0021509055513888597, 0.004708449821919203, 0.03486393019556999, 0.0010079025523737073, 0.009090518578886986, -0.017442665994167328, -0.010529805906116962, -0.030883150175213814, 0.04939591884613037, -0.005650139879435301, 0.008790889754891396, 0.0242485161870718, 0.023970289155840874, -0.008362849242985249, 0.02049245685338974, 0.013772215694189072, 0.0056982943788170815, 0.016062233597040176, -0.03616945445537567, 0.013889926485717297, 0.013151556253433228, 0.014082545414566994, -0.019465159624814987, 0.009202878922224045, 0.011043455451726913, 0.005128465127199888, 0.00017305559595115483, 0.040300048887729645, -0.018373655155301094, -0.007854550145566463, -0.03342999517917633, -0.0007263318984769285, -0.015248957090079784, -0.007496065925806761, 0.017827903851866722, 0.041434358805418015, 0.011610609479248524, -0.017785098403692245, 0.028036678209900856, -0.0019676503725349903, 0.014521286822855473, -0.039122939109802246, -0.012370381504297256, -0.005181970074772835, -0.0031032965052872896, 0.002958832774311304, 0.011664113961160183, 0.01432866882532835, -0.0139755355194211, 0.0022699544206261635, -0.02698797732591629, -0.01787070743739605, 0.00932594109326601, -0.016158543527126312, -0.0036838268861174583, 0.015313162468373775, 0.015002833679318428, 0.003311966313049197, 4.9868434871314093e-05, 0.022857382893562317, -0.024334125220775604, -0.020524561405181885, -0.02662414312362671, -0.04922470077872276, 0.03890891745686531, -0.0037025536876171827, -0.009256384335458279, -0.0028866007924079895, 0.008689230307936668, -0.008646425791084766, 0.004529207479208708, -0.025661051273345947, -0.005366562865674496, 0.023499444127082825, -0.0025562066584825516, 0.018512768670916557, 0.03302335366606712, -0.032852139323949814, -0.028978368267416954, -0.03073333576321602, -0.02002161182463169, 0.0075602722354233265, -0.00019612968026194721, 0.0559021420776844, -0.03424327075481415, -0.0006544343777932227, -0.04027864709496498, 0.016233451664447784, -0.0017629934009164572, -0.0006490838713943958, -0.029513418674468994, -0.01355819497257471, 0.03931555524468422, -0.0007209813920781016, -0.01746406778693199, 0.024398330599069595, -0.028400512412190437, -0.014735307544469833, -0.04248305782675743, 0.013172958046197891, 0.008138127624988556, -0.038159847259521484, 0.04021444171667099, 0.036554690450429916, -0.02108101360499859, -0.046314023435115814, -0.017603181302547455, -0.016126440837979317, 0.018491366878151894, -0.04768375679850578, -0.011878134682774544, 0.006340355612337589, -0.018812397494912148, -0.02544703148305416, -0.007458612322807312, 0.01871608756482601, 0.014649699442088604, -0.04297530651092529, 0.03818124905228615, 0.01858767494559288, 0.01698252186179161, 0.011931640096008778, 0.02848612144589424, 0.08381040394306183, 0.010781279765069485, -0.04040706157684326, -0.009871693328022957, 0.017367759719491005, -0.01638326421380043, -0.018662583082914352, 0.02698797732591629, 0.008764137513935566, 0.006490170024335384, 0.02072788029909134, -0.007142932154238224, 0.005010753870010376, -0.023970289155840874, 0.004978650715202093, 0.008951405063271523, -0.025275815278291702, 0.014253761619329453, -0.03146100416779518, -0.009609517641365528, 0.04413101449608803, -0.0014392874436452985, 0.0052488516084849834, 0.008774838410317898, -0.029170986264944077, -0.014499885030090809, 0.017239347100257874, 0.006896808743476868, -0.011139764450490475, 0.004914444405585527, -0.0387376993894577, -0.018138233572244644, 0.01451058592647314, -0.00014939630636945367, 0.006896808743476868, 0.029834449291229248, 0.06108143553137779, -0.03349420055747032, -0.020160725340247154, 0.005880211945623159, 0.004331238567829132, -0.018609078601002693, -0.022964393720030785, 0.005462871864438057, -0.033215973526239395, 0.0016947743715718389, -0.002215111628174782, -0.018362954258918762, -0.0014580142451450229, -0.021198725327849388, 0.06022535264492035, -0.005906964186578989, -0.0004932502633892, 0.019764788448810577, -0.003060492454096675, -0.013600999489426613, -0.020342644304037094, -0.019968107342720032, 0.0026551911141723394, 0.006709541194140911, 0.012573701329529285, -0.00183522526640445, -0.0003514616983011365, -0.025104599073529243, 0.016062233597040176, -0.014531988650560379, 0.01573050208389759, -0.02210831269621849, 0.024141507223248482, 0.0039031978230923414, 0.027137791737914085, 0.004071739036589861, -0.029170986264944077, -0.011096959933638573, -0.0011543728178367019, 0.0024866501335054636, -0.05200696736574173, 0.03116137720644474, 0.06810130923986435, 0.01952936500310898, -0.005767851136624813, -0.012466691434383392, -0.030840346589684486, 0.008796240203082561, 0.023028599098324776, 0.002253902843222022, -0.003282538615167141, -0.011343083344399929, 0.024762164801359177, -0.0182238407433033, -0.03533477708697319, 0.021305736154317856, 0.00649552047252655, -0.0026725803036242723, 0.014382174238562584, -0.005805304739624262, -0.06326444447040558, -0.01003755908459425, -0.014917224645614624, -0.013868524692952633, -0.01128957886248827, -0.00837355013936758, 0.02234373427927494, 0.025425629690289497, -0.01451058592647314, -0.01509914267808199, 0.03713254630565643, 0.03390083834528923, -0.03182484209537506, -0.04485868662595749, 0.03961518406867981, 0.004010207951068878, -0.012670010328292847, 0.004652269650250673, -0.005783902481198311, 0.03687572106719017, 0.03948677331209183, 0.011000650934875011, 0.01852346956729889, 0.032017458230257034, 0.02495478466153145, 0.017678089439868927, -0.007469313684850931, 0.015773307532072067, -0.034585703164339066, -0.006966365501284599, -0.026880968362092972, 0.021883590146899223, 0.02311420813202858, 0.0543183907866478, -0.00658112857490778, -0.023927485570311546, 0.015323864296078682, -0.02461235038936138, 0.05264902859926224, -0.014617596752941608, -0.001882042270153761, 0.016714997589588165, -0.006998468656092882, -0.05962609499692917, 0.034756921231746674, 0.0037908372469246387, 0.028015276417136192, 0.018780294805765152, 0.05093686655163765, -0.024034496396780014, 0.028700141236186028, -0.017613882198929787, 0.0315680168569088, -0.017185842618346214, -0.012926834635436535, -0.053890347480773926, -0.0025214282795786858, -0.005757149774581194, -0.008068570867180824, -0.010540506802499294, -0.010898991487920284, 0.02221532166004181, -0.001558336429297924, -0.04211922362446785, 0.019283242523670197, -0.013322772458195686, 0.031375396996736526, -0.03544178605079651, -0.02072788029909134, 0.03781741112470627, -0.020631570369005203, -0.044601861387491226, 0.04079229757189751, -0.005949768237769604, -0.04545794427394867, -0.02145555056631565, 0.007966911420226097, 0.022022703662514687, 0.021701673045754433, -0.0023114208597689867, 0.0049090939573943615, 0.00636175787076354, 0.005187320522964001, 0.0048127849586308, -0.00813277717679739, 0.01917623169720173, 0.020588766783475876, 0.0028384460601955652, 0.014531988650560379, -0.022129714488983154, 0.03143960237503052, 0.023092806339263916, 0.023392435163259506, 0.044302232563495636, -0.023092806339263916, 0.009946600534021854, 0.04211922362446785, -0.04348895326256752, -0.008935353718698025, 0.020471055060625076, -0.009165425784885883, 0.008261188864707947, 0.022193919867277145, 0.02102750912308693, 0.0026097118388861418, -0.023799072951078415, -0.017742294818162918, 0.013001741841435432, -0.02217251807451248, 0.011492897756397724, -0.022193919867277145, -0.019796891137957573, 0.01621204800903797, 0.028935564681887627, -0.06056778505444527, -0.007201788015663624, 0.014788812957704067, -0.047041695564985275, -0.02328542433679104, 0.0050856610760092735, 0.007726137991994619, 0.012167062610387802, 0.039593782275915146, 0.014585493132472038, 0.030069872736930847, -0.004400795325636864, -0.016768502071499825, 0.022151116281747818, 0.032210078090429306, -0.0018017846159636974, 0.027565833181142807, -0.008683879859745502, -0.01355819497257471, 0.060439374297857285, 0.020267736166715622, 0.020877694711089134, -0.004887692164629698, -0.0022017352748662233, -0.042932502925395966, 0.008897899650037289, -0.023692063987255096, -0.022686166688799858, -0.026538535952568054, 0.031139975413680077, 0.00935269333422184, 0.008721332997083664, -0.026773957535624504, 0.016458172351121902, -0.03379382938146591, 0.006270798854529858, -0.025275815278291702, 0.04139155521988869, -0.05958329141139984, 0.04301811009645462, 0.007094777654856443, 0.012905432842671871, -0.014039740897715092, 0.010267631150782108, 0.019861096516251564, -0.012081454508006573, 0.009422250092029572, -0.005559180863201618, -0.03417906537652016, -0.021840786561369896, 0.026731153950095177, -0.009336641989648342, 0.006816551089286804, 0.05204977095127106, 0.014778112061321735, -0.009047714062035084, -0.016907615587115288, 0.03537758067250252, 0.02675255574285984, 0.04282549023628235, 0.0066399844363331795, 0.009812837466597557, -0.022236723452806473, -0.01865188218653202, -0.03963658586144447, 0.04926750808954239, -0.021830085664987564, 0.007389056030660868, 0.013247865252196789, -0.01203864999115467, -0.03176063299179077, -0.016725698485970497, 0.033322982490062714, 0.010428146459162235, -0.018480665981769562, -0.011813928373157978, 0.012498794123530388, 0.01674710027873516, 0.022686166688799858, 0.024334125220775604, -0.023221218958497047, -0.006570427678525448, 0.015869615599513054, -0.03507795184850693, -0.027330411598086357, -0.03002706915140152, -0.017592480406165123, 0.0016800605226308107, -0.012370381504297256, -0.03524916619062424, 0.04169118404388428, 0.0002544836897868663, -0.010230177082121372, 0.005618036724627018, -0.009197528474032879, 0.01372941117733717, 0.005912314634770155, -0.004194800741970539, 0.022129714488983154, -0.030241088941693306, -0.004893042612820864, -0.014788812957704067, -0.02025703527033329, -0.016404667869210243, 0.003822940168902278, -0.004732527304440737, -0.014617596752941608, -0.005799954291433096, -0.035356178879737854, -0.021230828016996384, 0.02848612144589424, -0.00011428357538534328, 0.012402485124766827, 0.024890577420592308, 0.013665205799043179, -0.009577414952218533, 0.006832602899521589, 0.0013817695435136557, -0.04027864709496498, -0.031054366379976273, 0.00127743452321738, -0.0027394616045057774, -0.015623492188751698, -0.05645859241485596, 0.015430874191224575, -0.015602090395987034, 0.02675255574285984, 0.0028866007924079895, 0.039401162415742874, -0.014735307544469833, 0.0200751181691885, -0.011300279758870602, -0.003694528015330434, 0.07233890891075134, -0.011225372552871704, 0.027244802564382553, -0.0011878134682774544, 0.01316225714981556, -0.013547494076192379, -0.031482405960559845, 0.03908013179898262, -0.0012439938727766275, 0.026303112506866455, 0.004368692170828581, 0.006944963242858648, 0.01027833204716444, -0.011321681551635265, -0.005521727725863457, -0.003221007762476802, 0.010438847355544567, 0.01871608756482601, -0.010599362663924694, -0.011813928373157978, -0.0322742834687233, -0.01763528399169445, 0.016586584970355034, -0.021198725327849388, -0.010588661767542362, -0.016308357939124107, -0.005596634466201067, -0.0012694087345153093, 0.004844887647777796, -0.035356178879737854, 0.015227554365992546, -0.023199817165732384, -0.0052247741259634495, 0.0060353768058121204, -0.0191334281116724, -0.014885121956467628, -0.029920058324933052, -0.009427600540220737, 0.01471390575170517, -0.02109171450138092, -0.0024532093666493893, -0.002932080067694187, -0.0459715910255909, -0.002172307576984167, -0.0023863280657678843, 0.03520636260509491, -0.01357959769666195, -0.08346797525882721, -0.007308798376470804, -0.02859313227236271, 0.0399148128926754, 0.017314253374934196, -0.03693993017077446, -0.0027086962945759296, -0.01033718790858984, 0.04404540732502937, 0.006452716421335936, -0.018362954258918762, 0.007966911420226097, -0.009898445568978786, 0.01680060476064682, -0.01703602820634842, -0.008539415895938873, 0.026067690923810005, 0.04235464707016945, 0.010021507740020752, 0.0013362901518121362, 0.00178038259036839, 0.00815952941775322, 0.0039674038998782635, -0.009775384329259396, -0.0038603937719017267, -0.027266204357147217, 0.0011068870080634952, 0.006816551089286804, 0.042269039899110794, -0.012905432842671871, -0.0047699809074401855, -0.0129910409450531, 0.02227952890098095, -0.05491764470934868, -0.0015422848518937826, 0.02495478466153145, 0.018662583082914352, -0.0017228645738214254, 0.0050696092657744884, -0.005965820048004389, -0.004117218311876059, 0.01793491281569004, 0.03390083834528923, 0.017967017367482185, -0.04395980015397072, -0.025126000866293907, -0.054018761962652206, 0.0009436964173801243, 0.0010192723711952567, -0.018801696598529816, 0.017774397507309914, -0.02514740265905857, 0.023456640541553497, 0.000771811231970787, -0.017603181302547455, -0.03349420055747032, 0.009283136576414108, -0.00989309512078762, 0.006645334884524345, 0.0015101818135008216, -0.01661868765950203, -0.0006587816751562059, -0.05316267907619476, -0.033387187868356705, -0.024590948596596718, 0.0029213791713118553, 0.013590298593044281, -0.0020358695182949305, -0.028079481795430183, 0.034350279718637466, -0.01394343189895153, -0.012884031049907207, 0.004815460182726383, 0.0006755020585842431, -0.00022539027850143611, 0.04699888825416565, -0.004058362916111946, -0.026474328711628914, 0.025596845895051956, -0.023863280192017555, 0.03854508325457573, 0.018373655155301094, -0.005334459710866213, -0.030904551967978477, 0.02324262075126171, -0.012370381504297256, 0.002318108920007944, -0.008951405063271523, 0.019390251487493515, -0.047341324388980865, 0.03683291748166084, 0.01787070743739605, -0.020342644304037094, 0.0573146753013134, -0.014724606648087502, 0.02966323308646679, 0.010208775289356709, -0.00908516813069582, -0.010583311319351196, 0.009058414958417416, 0.009283136576414108, -0.02287878654897213, 0.0171644389629364, -0.02187288925051689, 0.01692901737987995, -0.017731593921780586, 0.005363887641578913, 0.007142932154238224, 0.01536666788160801, 0.0011115686502307653, -0.027180597186088562, -0.0009951951215043664, -0.0017576429527252913, -0.048882268369197845, 0.007142932154238224, -0.004802083596587181, 0.01432866882532835, -0.0069503141567111015, 0.002084024017676711, -0.014788812957704067, 0.013205061666667461, -0.01613714173436165, -0.02418431080877781, 0.010182023048400879, 0.016190646216273308, 0.019871799275279045, 0.009716528467833996, -0.00791875645518303, -0.031139975413680077, 0.01549508050084114, -0.014285864308476448, -0.05333389341831207, 0.013001741841435432, 0.05273463949561119, 0.026559937745332718, -0.008699931204319, 0.015206152573227882, 0.008261188864707947, -0.016415368765592575, 0.017538975924253464, 0.009015611372888088, 0.025340020656585693, -0.002422443823888898, 0.00840030238032341, 0.00638851011171937, 0.015409472398459911, -0.0006668074638582766, -0.0023716141004115343, -0.0262175053358078, 0.014007638208568096, 0.016811305657029152, 0.035120755434036255, 0.007752890698611736, 0.004713800270110369, 0.015345266088843346, 0.0007698048138990998, -0.019101325422525406, 0.00854476634413004, 0.00720713846385479, 0.005858809687197208, 0.012862629257142544, 0.011450094170868397, 0.017357058823108673, 0.01888730376958847, -0.026260308921337128, 0.01549508050084114, 0.039122939109802246, -0.01805262453854084, -0.008320044726133347, 0.0033039406407624483, 0.025939278304576874, 0.011535702273249626, -0.028100885450839996, -0.032552510499954224, 0.01758177950978279, 0.014949328266084194, 0.0020733231212943792, -0.007485365029424429, 0.019850395619869232, -0.0052247741259634495, -0.005949768237769604, 0.015623492188751698, 0.012199165299534798, 0.036319270730018616, 0.015388069674372673, -0.007635179441422224, -0.05059443414211273, -0.014788812957704067, -0.025939278304576874, 0.005655490327626467, 0.007940158247947693, 0.0017175141256302595, -0.02013932354748249, -0.013344175182282925, 0.02431272342801094, 0.014264462515711784, -0.011214671656489372, 0.012477392330765724, 0.028336307033896446, -0.038159847259521484, -0.013098050840198994, -0.016575884073972702, -0.03659749776124954, -0.0008139465353451669, -0.008742734789848328, -0.0070840767584741116, 0.004852913785725832, -0.0029561573173850775, 0.009529259987175465, 0.013440484181046486, -0.017838604748249054, 0.005444145295768976, -0.032680921256542206, 0.01828804798424244, -0.022921590134501457, 0.011236073449254036, 0.05581653118133545, 0.018031222745776176, 0.030583521351218224, 0.00821838527917862, 0.010075012221932411, 0.0021616064477711916, 0.019572170451283455, -0.014050442725419998, -0.01164271216839552, 0.039529576897621155, -0.03985060751438141, -0.020717179402709007, 0.007603076286613941, 0.02645292691886425, -0.009277786128222942, 0.009604167193174362, 0.006591829936951399, -0.008143478073179722, -0.005350511055439711, -0.01098995003849268, 0.045843180269002914, -0.029706038534641266, -0.00023441927623935044, 0.02073858119547367, 0.010016157291829586, 0.03225288167595863, -0.02538282424211502, 0.00818628165870905, -0.013590298593044281, 0.0005223436746746302, -0.015612791292369366, 0.014938627369701862, 0.005072284489870071, -0.007517468184232712, 0.00022154460020828992, 0.01489582285284996, -0.027480226010084152, 0.01864118129014969, 0.02792966738343239, 0.02775845117866993, -0.009598816744983196, 0.017549676820635796, 0.029770243912935257, -0.002752837957814336, 0.022728972136974335, 0.016939718276262283, 0.0033039406407624483, -0.005395990330725908, 0.009780734777450562, -0.028079481795430183, -0.01019272394478321, -0.020043015480041504, 0.03544178605079651, -0.013600999489426613, -0.02114522084593773, -0.00989309512078762, 0.06369248777627945, 0.008651776239275932, 0.00280099269002676, -0.02062086947262287, 0.004791382700204849, 0.052520617842674255, -0.0005945755401626229, 0.013055247254669666, -0.022536352276802063, -0.013301370665431023, 0.015034936368465424, 0.008052519522607327, -0.02632451429963112, -0.019936004653573036, -0.00979678612202406, 0.019015716388821602, -0.01451058592647314, -0.05119369179010391, 0.007683333940804005, -0.005489624571055174, -0.00837355013936758, -0.009069116786122322, 0.0019957406911998987, -0.029063977301120758, 0.0044328984804451466, -0.010026858188211918, 0.011161166243255138, 0.019711283966898918, 0.009962651878595352, -0.007298097014427185, -0.014863720163702965, 0.014317967928946018, 0.04712730273604393, 0.03835246339440346, -0.01673639938235283, 0.006977066397666931, 0.0061637889593839645, 0.0026351267006248236, 0.008245137520134449, -2.742136894084979e-05, 0.023456640541553497, 0.00843240600079298, -0.019144129008054733, -0.0050910115242004395, -0.009732579812407494, 0.009770032949745655, -0.042269039899110794, 0.0009945263154804707, -0.0201928298920393, -0.008196983486413956, 0.054489605128765106, 0.01459619402885437, -0.0320388600230217, -0.010722423903644085, -0.021348539739847183, 0.023392435163259506, -0.013419082388281822, -0.02705218456685543, -0.005093686748296022, -0.058598797768354416, 0.014853019267320633, -0.011535702273249626, 0.04079229757189751, 0.018566273152828217, -0.03304475545883179, 0.017132336273789406, -0.03794582560658455, 0.03997901827096939, 0.01947586052119732, 0.03730376437306404], [0.021826254203915596, 0.040035706013441086, 0.03156862407922745, -0.0008800277137197554, -0.04083015024662018, 0.01712232083082199, -0.022098038345575333, 0.0614229291677475, 0.011362615041434765, 0.03165224939584732, -0.04984079673886299, -0.00653846887871623, 0.04783378541469574, 0.02878807857632637, -0.03572899475693703, -0.0344955176115036, 0.008764997124671936, 0.01017095148563385, -0.004408631939440966, 0.00444521801546216, 0.04603583738207817, 0.012083884328603745, -0.045492272824048996, -0.01940111629664898, 0.0014843526296317577, -0.002809294033795595, 0.036481622606515884, -0.02868354693055153, 0.036607060581445694, -0.0280772615224123, 0.04912998154759407, -0.04043292999267578, 0.05356213077902794, 0.03276028856635094, -0.017718153074383736, -0.00621964642778039, -0.026362938806414604, 0.013902738690376282, -0.026739252731204033, 0.011519412510097027, 0.012878326699137688, -0.019944680854678154, 0.005811972077935934, -0.041352808475494385, -0.0694509744644165, 0.09006465971469879, -0.029791584238409996, -0.011143097653985023, -0.015125761739909649, 0.008608199656009674, 0.02333151362836361, 0.04720659554004669, 0.030251523479819298, -0.08471263200044632, 0.014320866204798222, 0.014613555744290352, -0.03250941261649132, -0.007228379137814045, 0.018711205571889877, 0.0012093031546100974, 0.019233863800764084, 0.005759706255048513, 0.016725100576877594, 0.01701778918504715, -0.02830723114311695, -0.024230487644672394, 0.05582002177834511, 0.02130359597504139, -0.030878715217113495, -0.04453057795763016, 0.0490463562309742, 0.010521133430302143, 0.020049212500452995, -0.01303512416779995, -0.03292753919959068, 0.0009708397556096315, -0.0402238629758358, 0.019777430221438408, 0.04271172359585762, -0.008764997124671936, -0.03127593547105789, 0.049297232180833817, -0.009402642026543617, -0.02535943314433098, 0.00797578226774931, 0.008754543960094452, -0.018293077126145363, 0.018063107505440712, 0.024355925619602203, -0.0072754183784127235, -0.0025192182511091232, -0.009271977469325066, -0.004280580207705498, 0.035394493490457535, -0.007599467411637306, -0.01772860623896122, -0.00827892404049635, -0.015136214904487133, -0.011101284995675087, 0.05653083696961403, 0.01595156453549862, -0.016683286055922508, 0.02653018943965435, 0.02107362635433674, -0.009428774937987328, -0.07329774647951126, 0.0016790431691333652, 0.03901129588484764, 0.05021711066365242, 0.014122256077826023, 0.03428645431995392, -0.02236982062458992, 0.02949889376759529, 0.02962433360517025, -0.052182309329509735, -0.008848623372614384, -0.0049025448970496655, 0.005440883804112673, -0.002099784091114998, -0.0025505777448415756, 0.02437683194875717, 0.03069055825471878, 0.005082862451672554, -0.02416776865720749, 0.017644980922341347, -0.005707440432161093, -0.01290968619287014, 0.043736137449741364, -0.013003764674067497, -0.013003764674067497, 0.025965716689825058, -0.03842591494321823, 0.032300349324941635, -0.02972886525094509, 0.0016542169032618403, 0.00113025086466223, 0.024962211027741432, 0.0037265613209456205, 0.02092728018760681, -0.023247888311743736, 0.00859774649143219, 0.015512529760599136, 0.0014621395384892821, 0.008937475271522999, -0.0928243026137352, 0.035394493490457535, -0.01927567832171917, 0.04164549708366394, 0.03104596585035324, -0.017843591049313545, 0.0035279507283121347, -0.005785839166492224, -0.011582131497561932, 0.0037108815740793943, -0.01730002462863922, -0.01367276906967163, 0.009339923039078712, 0.07384131848812103, 0.026007529348134995, -0.01874256506562233, -0.00234020734205842, 0.015941111370921135, -0.01950564794242382, -0.004003570880740881, 0.022181663662195206, 0.0005827652057632804, -0.020279183983802795, 0.034934550523757935, -0.026843784376978874, -0.03000064752995968, -0.012700622901320457, -0.0012217162875458598, 0.0025427378714084625, -0.007536747958511114, -0.10578625649213791, -0.02135586179792881, 0.02402142435312271, 0.03863498196005821, 0.016955070197582245, 0.009392188861966133, 0.02270432375371456, 0.05736709386110306, -0.020739123225212097, 0.004071516450494528, 0.02487858571112156, 0.07187611609697342, -0.013171016238629818, -0.019892415031790733, -0.019996946677565575, 0.05009167268872261, -0.007897382602095604, -0.047415658831596375, 0.03821685165166855, 0.00043609392014332116, -0.008670918643474579, 0.027930917218327522, 0.0069775027222931385, -0.0737995058298111, 0.05201505869626999, -0.03263485059142113, 0.034202829003334045, -0.059415917843580246, -0.009773730300366879, -0.004892091732472181, -0.06021035835146904, 0.017540447413921356, 0.014049083925783634, -0.006658680271357298, 0.008069860748946667, 0.00042270077392458916, 0.014665821567177773, -0.018178092315793037, -0.056572649627923965, -0.008242337964475155, -0.012167509645223618, -0.01607700251042843, 0.03545721247792244, 0.025192180648446083, 0.021261783316731453, 0.01261699665337801, -0.022934293374419212, -0.002499618334695697, -0.0032979806419461966, -0.04875366389751434, -0.014968964271247387, -0.055527329444885254, -0.009590798988938332, -0.03784053772687912, -0.049924422055482864, -0.03117140382528305, -0.03949214145541191, 0.018115373328328133, 0.022286195307970047, -0.042523566633462906, -0.008900889195501804, 0.03664887323975563, -0.016620567068457603, -0.03715062886476517, -0.011456693522632122, 0.046830277889966965, 0.021575378254055977, -0.027052849531173706, 0.039220359176397324, -0.024084143340587616, -0.02535943314433098, -0.019798336550593376, -0.002947798930108547, 0.02569393441081047, 0.02820269949734211, 0.012219776399433613, -0.0003031424421351403, 0.04072561860084534, 0.026488376781344414, -0.03276028856635094, -0.00948626734316349, 0.02059277892112732, -0.033011164516210556, 0.004105489235371351, 0.02772185206413269, -0.021219970658421516, 0.0022134624887257814, 0.0047562001273036, -0.03761056810617447, -0.0018698138883337379, -0.053353067487478256, -0.05151330679655075, 0.0047718798741698265, -0.012407933361828327, -0.01409089658409357, 0.02901804819703102, -0.030314242467284203, 0.05188962072134018, -0.0009682264644652605, -0.017258211970329285, -0.08889390528202057, 0.016014283522963524, 0.009669198654592037, -0.005623814649879932, -0.0010492387227714062, -0.03370107710361481, -0.04699752852320671, 0.0028641733806580305, 0.008184845559298992, -0.06522788852453232, -0.004364205524325371, 0.017038695514202118, -0.006240552756935358, 0.01915023848414421, 0.014195428229868412, 0.04770834743976593, 0.06890740990638733, 0.00011327008542139083, -0.0002928525791503489, 0.03424464166164398, 0.06251005828380585, -0.00018864736193791032, 0.018888909369707108, 0.009454907849431038, -0.058119721710681915, -0.008190072141587734, 0.004455671180039644, -0.002919052494689822, 0.014864432625472546, -0.0587887242436409, -0.05151330679655075, -0.011906180530786514, -0.008409589529037476, 0.027930917218327522, 0.016212893649935722, -0.01142533402889967, -0.04427970200777054, 0.010568172670900822, -0.0888102799654007, -0.04235631600022316, -0.014571743085980415, 7.386646757367998e-05, 0.010155271738767624, -0.011665756814181805, 0.05485832691192627, 0.007442669477313757, 0.0033084338065236807, -0.004053223412483931, -0.03520633652806282, 0.0214290339499712, -0.04912998154759407, 0.024794960394501686, -0.004803239367902279, 0.01261699665337801, 0.04089286923408508, 0.034558236598968506, -0.03652343526482582, -0.012711076065897942, -0.005372938234359026, 0.03855135664343834, -0.02903895452618599, -0.037903256714344025, -0.023164262995123863, 0.023624204099178314, -0.0048215328715741634, -0.02569393441081047, 0.001668590004555881, 0.004429538268595934, 0.02521308697760105, 0.010416600853204727, 0.003000064752995968, 0.04072561860084534, 0.035269055515527725, 0.01577385887503624, -0.009392188861966133, -0.0031803823076188564, 0.012052524834871292, 0.028035448864102364, -0.01593065820634365, 0.010745876468718052, -0.03533177450299263, -0.0028197471983730793, 0.024585897102952003, 0.04014023765921593, -0.020070118829607964, 0.014247694052755833, 0.028223605826497078, -0.0015758179361000657, 0.02688559703528881, 0.028767172247171402, 0.04227269068360329, -0.019725164398550987, -0.043359819799661636, -0.00015932944370433688, 0.0016829631058499217, 0.000484766555018723, -0.0058433315716683865, -0.013191922567784786, 0.03961757943034172, -0.01950564794242382, 0.07869159430265427, -0.016975976526737213, 0.05021711066365242, 0.026342032477259636, -0.00823188479989767, -0.010526360012590885, 0.01689235121011734, 0.004892091732472181, -0.015679780393838882, -0.005895597860217094, -0.018857549875974655, 0.008822490461170673, -0.01851259544491768, -0.038614075630903244, -0.0010302922455593944, 0.008759770542383194, -0.016620567068457603, 0.006266685668379068, -0.0026446564588695765, 0.0587887242436409, -0.048377349972724915, -0.008947928436100483, 0.008007141761481762, 0.006444389931857586, -0.05452382564544678, 0.008932248689234257, -0.03702519088983536, -0.049924422055482864, 0.021115439012646675, 0.008482761681079865, -0.030063366517424583, 0.007447896059602499, 0.015606608241796494, 0.040182050317525864, -0.01726866513490677, -0.018606673926115036, 0.005247500259429216, -0.008435722440481186, 0.022746136412024498, 0.036586154252290726, -0.022348914295434952, 0.023749642074108124, -0.04507414251565933, 0.016495129093527794, -0.02473224140703678, -0.04917179420590401, 0.0331156961619854, 0.02239072695374489, -0.05887234956026077, 0.028829891234636307, -0.025882091373205185, -0.01770769990980625, 0.020937733352184296, 0.003799733705818653, -0.023707829415798187, -0.0037945068906992674, 0.006679586600512266, -0.028160886839032173, -0.01747772842645645, 0.04210544005036354, -0.027031943202018738, -0.01726866513490677, -0.010155271738767624, 0.021679909899830818, -0.027554601430892944, -0.03572899475693703, -0.015794765204191208, -0.042189065366983414, 0.020634591579437256, 0.022892480716109276, -0.05703258886933327, 0.015606608241796494, -0.024209581315517426, 0.06058667227625847, 0.04275353625416756, 0.021449940279126167, -0.002048824680969119, -0.04189637303352356, -0.024314112961292267, -0.0313386544585228, 0.012878326699137688, -0.04578496143221855, 0.03280210122466087, 0.001446459791623056, 0.03637709096074104, -0.0165578480809927, 0.03428645431995392, 0.04879547655582428, 0.019516101107001305, 0.04775016009807587, 0.0015732046449556947, 0.03424464166164398, -0.015815671533346176, 0.02176353521645069, -0.001850214204750955, -0.05184780806303024, 0.021826254203915596, 0.003885972313582897, -0.012219776399433613, -0.001266795676201582, -0.021512659266591072, 0.02343604527413845, 0.011519412510097027, -0.03284391388297081, 0.006752759218215942, -0.0597086064517498, 0.008095993660390377, 0.05556914210319519, -0.03441189229488373, -0.07438488304615021, 0.01739410310983658, -0.008320736698806286, 0.05987585708498955, -0.034934550523757935, -0.03209128603339195, -0.062300994992256165, 0.010160498321056366, 0.014195428229868412, 0.029812490567564964, -0.006141247693449259, 0.015334825962781906, 0.013515971601009369, -0.019160691648721695, -0.022997012361884117, 0.015303466469049454, 0.012805154547095299, -0.02901804819703102, -0.053603943437337875, 0.04340163245797157, 0.02594481036067009, 0.022871574386954308, -0.019672898575663567, -0.00985212903469801, 0.015637967735528946, 0.01582612469792366, -0.041833654046058655, 0.0318613164126873, 0.02140812762081623, 0.0017051761969923973, -0.007118620444089174, 0.01927567832171917, -0.008655238896608353, 0.020310543477535248, 0.02487858571112156, -0.06710946559906006, 0.028850797563791275, 0.041708216071128845, -0.028871703892946243, 0.007839890196919441, 0.01014481857419014, -0.032530318945646286, 0.02855810709297657, -0.02077048271894455, -0.05364575609564781, 0.004667348228394985, -0.02701103687286377, 0.01648467592895031, -0.011080378666520119, -0.027303725481033325, -0.04225178435444832, -0.004967877175658941, -0.02247435227036476, -0.0019469060935080051, 0.04152005910873413, -0.02414686232805252, -0.0037082682829350233, 0.02213985100388527, -0.015125761739909649, 0.00023078678350429982, 0.009799863211810589, -0.009789410047233105, -0.01851259544491768, 0.023352419957518578, -0.006203966680914164, 0.01123717613518238, 0.0039094919338822365, -0.015303466469049454, 0.00734336394816637, 0.003585443366318941, -0.017749512568116188, 0.008974061347544193, 0.027512788772583008, 0.037046097218990326, -0.020530059933662415, 0.008336416445672512, 0.0020958641543984413, 0.0016542169032618403, 0.0442378893494606, 0.005503603257238865, -0.0020318382885307074, -0.015115308575332165, 0.025526683777570724, -0.022160757333040237, -0.03138046711683273, -0.022516164928674698, -0.018878456205129623, -0.007594240363687277, -0.0026368165854364634, -0.0024146863725036383, 0.04034930467605591, 0.02094818651676178, 0.025756653398275375, 0.03842591494321823, -0.043025318533182144, 0.02473224140703678, 0.05757615715265274, 0.0025806305930018425, 0.036460716277360916, 0.0008081620326265693, 0.0005360525101423264, -0.018449876457452774, -0.0005425857380032539, -0.02140812762081623, -0.03081599622964859, 0.002206929260864854, -0.02734553813934326, 0.021261783316731453, -0.018888909369707108, 0.03725516051054001, -0.03399376571178436, -0.017205946147441864, 0.03938760980963707, -0.024314112961292267, 0.006909556686878204, -0.027157381176948547, 0.024230487644672394, 0.01986105553805828, 0.013400985859334469, -0.0026185233145952225, 0.02795182354748249, -0.01194799318909645, -0.009961887262761593, 0.001936452928930521, -0.017028242349624634, 0.05076067894697189, -0.01468672789633274, 0.03292753919959068, 0.003446938470005989, -0.005602908320724964, -0.029457081109285355, -0.025171274319291115, 0.022516164928674698, -0.0632626861333847, -0.01904570683836937, -0.0021651163697242737, -0.006146474275738001, -0.014299959875643253, 0.009287657216191292, -0.0106152119114995, -0.007416536565870047, -0.054900139570236206, 0.004298873245716095, -0.006203966680914164, -0.01770769990980625, -0.006595961283892393, 0.0077771712094545364, -0.015941111370921135, -0.023477857932448387, 0.009000194258987904, -0.03485092520713806, 0.03522724285721779, -0.012826060876250267, -0.016097908839583397, -0.03947123512625694, -0.006789345294237137, 0.01780177839100361, 0.015115308575332165, 0.02594481036067009, 0.04570133611559868, -0.045868586748838425, 0.026258407160639763, 0.025902997702360153, 0.011331254616379738, 0.037067003548145294, 0.023582391440868378, 0.004466124344617128, 0.03855135664343834, 0.001716936007142067, -0.014550836756825447, 0.002809294033795595, -0.019955134019255638, 0.015585701912641525, -0.005278859753161669, 0.033847421407699585, -0.01027025654911995, 0.055987272411584854, 0.010724970139563084, 0.03411920368671417, 0.028474481776356697, -0.005811972077935934, 0.010484546422958374, 0.023937799036502838, 0.029833396896719933, -0.021930787712335587, -0.00881203729659319, -0.021930787712335587, 0.030272429808974266, 0.008832943625748158, 0.020990001037716866, -0.046830277889966965, 0.020760029554367065, -0.026237500831484795, 0.0015980310272425413, 0.014111802913248539, -0.03558265045285225, 0.0052579534240067005, -0.035059988498687744, -0.015679780393838882, 0.0033032072242349386, 0.009679651819169521, -0.004277966916561127, -0.01717458665370941, -0.007390403654426336, -0.03296935185790062, -0.014707634225487709, 0.039429422467947006, -0.010437507182359695, 0.034098297357559204, 0.011937540024518967, 0.026718346402049065, 0.008514121174812317, 0.04879547655582428, -0.0008447482250630856, -0.016421956941485405, -0.02213985100388527, -0.024084143340587616, -0.004170821513980627, -0.010369561612606049, -0.003593283239752054, -0.06639864295721054, -0.019484741613268852, 0.005210913717746735, -0.004800626076757908, 0.00869705155491829, 0.04120646417140961, -0.01755090244114399, -0.011634397320449352, -0.0024917784612625837, -0.017080508172512054, -0.008744090795516968, -0.00977895688265562, -0.0071395267732441425, 0.05498376488685608, 0.008921795524656773, -0.020017853006720543, 0.014017724432051182, -0.0005367058329284191, 0.028620826080441475, -0.02368692308664322, 0.016505582258105278, 0.011278988793492317, 0.008613426238298416, 0.017080508172512054, 0.0003149022813886404, -0.002890306292101741, -0.02726191282272339, 0.029122579842805862, -0.0047692665830254555, -0.032070379704236984, 0.029248017817735672, -0.006292818579822779, 0.01760316826403141, -0.008921795524656773, -0.0020984774455428123, -0.011916633695363998, -0.009643065743148327, 0.0006572441780008376, -0.017101414501667023, 0.0061987400986254215, 0.004973103757947683, -0.03997298702597618, 0.03700428456068039, -0.006616867613047361, 0.008900889195501804, -0.016421956941485405, -0.003648162353783846, 0.009637839160859585, 0.0037291746120899916, -0.04867003858089447, -0.017822684720158577, 0.01256473083049059, 0.002230448881164193, 0.01973561756312847, 0.003538403892889619, -0.0051246751099824905, 0.00026655627880245447, -0.03250941261649132, -0.03566627576947212, 0.006611641030758619, 0.005482696928083897, 0.030983246862888336, -0.027052849531173706, -0.034077391028404236, -0.02832813747227192, 0.02163809724152088, -0.0006141247577033937, -0.0006565908552147448, -0.030021553859114647, -0.0022892479319125414, 0.01778087206184864, 0.022307101637125015, -0.034683674573898315, 0.020226918160915375, 0.0038154134526848793, -0.03033514879643917, -0.02270432375371456, 0.014467211440205574, 0.004620308987796307, -0.031150497496128082, 0.03913673385977745, 0.014791260473430157, -0.02450227178633213, -0.0389067642390728, -0.0051220618188381195, 0.010829501785337925, 0.014948057942092419, -0.05494195222854614, -0.006465296261012554, 0.013630956411361694, -0.03033514879643917, -0.023854173719882965, 0.004975717049092054, 0.02297610603272915, 0.007719678804278374, -0.04829372465610504, 0.026948316022753716, 0.005853784736245871, 0.002456499030813575, -0.028641732409596443, 0.014279053546488285, 0.0756392627954483, -0.026760159060359, -0.01552298292517662, 0.002788387704640627, -0.020969092845916748, -0.013191922567784786, -0.011373068206012249, 0.025024930015206337, -0.009742370806634426, 0.030857808887958527, 0.020247824490070343, -0.028641732409596443, -0.0005399724468588829, -0.015627514570951462, -0.0035305640194565058, 0.025631215423345566, 0.018941175192594528, -0.007944422774016857, -0.02016419917345047, -0.010934034362435341, 0.032718475908041, -0.03633527830243111, -0.0029817717149853706, -0.0011452772887423635, -0.012637903913855553, -0.012972405180335045, 0.019317490980029106, 0.01256473083049059, 0.006298045162111521, 0.02331060729920864, -0.01765543408691883, -0.0036141895689070225, 0.002945185638964176, 0.02535943314433098, -0.01450902409851551, 0.023707829415798187, 0.022683415561914444, -0.001660750131122768, -0.033011164516210556, -0.02282976172864437, -0.012993311509490013, 0.006914783269166946, -0.00603671558201313, 0.011718022637069225, -0.04478145390748978, -0.00805418100208044, 0.008325963281095028, -0.021721722558140755, -0.012972405180335045, 0.003117663087323308, 0.025087649002671242, -0.021470846608281136, 0.014655368402600288, 0.015198934823274612, -0.03614712134003639, -0.03786144405603409, -0.01739410310983658, 0.0004501403891481459, 0.005644720979034901, -0.008947928436100483, 0.025631215423345566, 0.011049019172787666, 0.00788692943751812, -0.014414945617318153, 0.004518390167504549, -0.042189065366983414, 0.014237240888178349, -0.009418321773409843, 0.028369950130581856, 0.008634332567453384, 0.010437507182359695, 0.012115243822336197, -0.00925629772245884, -0.03978483006358147, 0.030983246862888336, -0.0004233540967106819, -0.032906632870435715, 0.03305297717452049, 0.036586154252290726, 0.009099499322474003, -0.012502011843025684, -0.04227269068360329, -0.04448876529932022, 0.008994967676699162, 0.04933904483914375, 0.01231385488063097, -0.03411920368671417, -0.004659508354961872, 0.036230746656656265, -0.008540254086256027, 0.006768438965082169, 0.0008519347757101059, 0.002195169450715184, 0.009345149621367455, 0.012052524834871292, 0.00377621385268867, -0.03351292014122009, -0.016505582258105278, 0.011676209978759289, -0.007876476272940636, 0.011979352682828903, 0.015387091785669327, -0.009261524304747581, 0.037296973168849945, 0.012533371336758137, 0.004510550294071436, -0.011571678332984447, 0.02726191282272339, -0.013610050082206726, -0.04080924391746521, 0.0318613164126873, 0.007181339897215366, 0.01529301330447197, 0.011164003983139992, -0.02546396479010582, 0.03227944299578667, 0.03978483006358147, 0.005649947561323643, -0.006716172676533461, 0.043025318533182144, 0.017822684720158577, -0.012083884328603745, -0.02295519970357418, 0.004447831306606531, -0.037903256714344025, -0.01529301330447197, -0.02569393441081047, 0.035164523869752884, 0.014049083925783634, 0.016808725893497467, 0.0016398438019677997, -0.009005420841276646, -0.012230229564011097, -0.004743133671581745, 0.029457081109285355, -0.007050674874335527, 0.007740585133433342, 0.0026289767120033503, 0.008299830369651318, -0.054900139570236206, 0.006522788666188717, -0.010578625835478306, 0.027282819151878357, 0.032655756920576096, 0.05719983950257301, 0.0016986429691314697, -0.009130858816206455, -0.03058602660894394, 0.026969224214553833, -0.006940916180610657, 0.0024956983979791403, -0.06627320498228073, 0.00333195342682302, 0.006700492929667234, 0.021805347874760628, 0.018449876457452774, 0.0047562001273036, -0.004659508354961872, -0.006533242296427488, -0.03855135664343834, 0.014111802913248539, -0.018606673926115036, 0.007808530703186989, -0.03978483006358147, -0.02226528897881508, 0.05686533823609352, -0.024105049669742584, -0.016317425295710564, -0.028390856459736824, 0.005362485069781542, -0.03656524792313576, -0.017258211970329285, -0.00729109812527895, 0.021972600370645523, 0.005869464483112097, 0.004994010087102652, -0.003757920814678073, 0.02318516932427883, 0.025066742673516273, -0.006433936767280102, 0.015366185456514359, 0.030063366517424583, -0.006595961283892393, 0.012177962809801102, 0.022035319358110428, -0.010871314443647861, 0.00896360818296671, 0.012658810243010521, 0.01105947233736515, -0.006533242296427488, 0.006716172676533461, -0.004304099828004837, 0.022328007966279984, -0.027429163455963135, -0.01034865528345108, 0.0433180071413517, -0.0015157121233642101, -0.011101284995675087, -0.011467146687209606, 0.015564795583486557, -0.015157121233642101, -0.030376961454749107, -0.023854173719882965, 0.027052849531173706, 0.005129901692271233, 0.022181663662195206, -0.0053337388671934605, -0.004243994131684303, 0.028265418484807014, 0.046579401940107346, -0.051095180213451385, 0.006825931370258331, 0.04011933133006096, 0.014791260473430157, -0.04060018062591553, 0.016516035422682762, 0.030397869646549225, -0.002892919583246112, 0.034223735332489014, 0.0005187393981032073, 0.03104596585035324, 0.00797578226774931, 0.0006539775058627129, 0.018125826492905617, 0.026383845135569572, 0.0030314242467284203, 0.007087260950356722, 0.006068075075745583, -0.01463446207344532, 0.04582677409052849, 0.03478820621967316, 0.032070379704236984, 0.0183348897844553, -0.01236612070351839, 0.00014781460049562156, 0.02000739984214306, -0.03284391388297081, -0.02690650336444378, -0.0062457793392241, -0.012219776399433613, -0.005660400725901127, 0.009768503718078136, -0.017634527757763863, 0.025484871119260788, -0.011749382130801678, 0.010542039759457111, 0.0009499334264546633, 0.0433180071413517, -0.031819503754377365, 0.0640571340918541, -0.031484998762607574, -0.006878197193145752, 0.0018162413034588099, 0.011467146687209606, 0.003125502960756421, -0.01184346154332161, -0.008723184466362, -0.009862582199275494, -0.02107362635433674, -0.02295519970357418, 0.029310736805200577, -0.020707763731479645, -0.009773730300366879, 0.04720659554004669, 0.013923645950853825, -0.008116899989545345, -0.039680298417806625, 0.03924126550555229, 0.012083884328603745, 0.05903960019350052, 0.006386897526681423, 0.04912998154759407, -0.0214290339499712, 0.027763664722442627, -0.02857901342213154, 0.003972211387008429, -0.05126243084669113, 0.0033998992294073105, -0.011393974535167217, -0.026697440072894096, -0.036105308681726456, -0.03299025818705559, 0.014833073131740093, 0.0022186890710145235, -0.005004463251680136, -0.0011635704431682825, -0.0064914291724562645, 0.042774442583322525, 0.023749642074108124, 0.010160498321056366, -0.03763147443532944, -0.0049025448970496655, 0.007369496859610081, -0.02655109576880932, -0.027408257126808167, -0.018679846078157425, -0.0116030378267169, 0.008927022106945515, -0.016651926562190056, 0.013515971601009369, 0.05460745096206665, -0.012648357078433037, -0.0003808879991993308, 0.03138046711683273, 0.01610836200416088, 0.00802804809063673, 0.006371217779815197, -0.019422022625803947, 0.04511595517396927, -0.0196519922465086, 0.004588949028402567, -0.004170821513980627, -0.009569892659783363, -0.03008427284657955, -0.0031490225810557604, -0.007583787199109793, -0.015042136423289776, -0.008085540495812893, -0.029561614617705345, -0.012543824501335621, 0.024230487644672394, 0.0007193099590949714, -0.012700622901320457, 0.03033514879643917, 0.015334825962781906, -0.002898146165534854, -0.012982858344912529, 0.00044262714800424874, -0.006141247693449259, -0.021805347874760628, 0.03020971082150936, 0.007641280069947243, -0.027220100164413452, -0.04057927429676056, 0.018240811303257942, -0.006099434569478035, -0.013421892188489437, 0.0034051258116960526, 0.03056512027978897, 0.006005356088280678, 0.02809816785156727, 0.013003764674067497, -0.015439357608556747, 0.06552057713270187, -0.03995208069682121, 0.02272523008286953, 0.010484546422958374, 0.004217861220240593, 0.007881702855229378, -0.013526424765586853, 0.04887910559773445, 0.0013915805611759424, 0.05101155489683151, 0.01034865528345108, 0.0030288109555840492, 0.02581937238574028, 0.0019207731820642948, 0.003000064752995968, -0.013421892188489437, 0.0061935135163366795, -0.0041263955645263195, 0.017383649945259094, 0.01189572736620903, -0.00970055814832449, -0.014529930427670479, 0.001229556160978973, -0.018366249278187752, 0.0010263723088428378, -0.010542039759457111, -0.006737079005688429, 0.01772860623896122, 0.009836449287831783, -0.03585443273186684, 0.026948316022753716, -0.002010931959375739, -0.00839390978217125, 0.011090831831097603, 0.01505258958786726, -0.0263002198189497, -0.07099805027246475, -0.014529930427670479, 0.020833201706409454, 0.013317360542714596, -0.017969029024243355, -0.006392124108970165, -0.040370211005210876, -0.0098259961232543, 0.0007643893477506936, 0.0269901305437088, -0.019923774525523186, -0.037067003548145294, 0.001961279194802046, -0.023477857932448387, 0.0036324826069176197, 0.025777559727430344, -0.011143097653985023, 0.003927784971892834, 0.0020749575924128294, 0.03119231015443802, -0.0006477709393948317, -0.01760316826403141, 0.006946142762899399, -0.014414945617318153, 0.006073301658034325, -0.00770922563970089, -0.013421892188489437, 0.021345408633351326, 0.03508089482784271, 0.012230229564011097, -0.025882091373205185, -0.0029373455327004194, 0.007144753355532885, -0.017435915768146515, -0.012878326699137688, -0.01625470630824566, -0.002099784091114998, -0.028119074180722237, 0.00886430311948061, 0.03280210122466087, -0.030188804492354393, 0.0035723766777664423, 0.011571678332984447, 0.012449746020138264, -0.05381300672888756, 0.008634332567453384, 0.008681371808052063, 0.02178444154560566, -0.006355538032948971, 0.016024736687541008, 0.0029608653858304024, 0.0039068786427378654, 0.018909815698862076, 0.03430736064910889, 0.002405539620667696, 0.005785839166492224, -0.016547394916415215, -0.04041202366352081, 0.02544305846095085, -0.020404621958732605, -0.011916633695363998, 0.009470587596297264, -0.013819113373756409, 0.010249350219964981, 0.007693545892834663, -0.01505258958786726, -0.017101414501667023, -0.008937475271522999, 0.009737144224345684, 0.03257213160395622, 0.01749863475561142, -0.004008797463029623, -0.0008552013896405697, -0.03460004925727844, -0.016348784789443016, -0.04365250840783119, 0.002214769134297967, -0.0053389654494822025, -0.022223476320505142, -0.03727606683969498, 0.03748513013124466, -0.010756329633295536, 0.0039669848047196865, 0.003457391634583473, 0.011404427699744701, 0.002890306292101741, 0.04210544005036354, -0.011299895122647285, -0.006799798458814621, -0.005095928907394409, -0.009130858816206455, 0.04386157542467117, 0.015554342418909073, -0.016798272728919983, -0.013463704846799374, 0.005749253090471029, -0.008425269275903702, -0.0078346636146307, -0.020916827023029327, 0.0029660919681191444, -0.0232060756534338, 0.03731787949800491, 0.007155206520110369, -0.028516294434666634, 0.042063627392053604, -0.02830723114311695, 0.03353382647037506, -0.004014024045318365, -0.013348720036447048, 0.0007343363831751049, 0.004944357555359602, -0.022098038345575333, -0.029331643134355545, 0.03892767056822777, 0.0005180860753171146, 0.005106382071971893, -0.002365033607929945, 0.005210913717746735, 0.018826190382242203, -0.010317295789718628, 0.03117140382528305, -0.07041267305612564, -0.02310154400765896, -0.044196076691150665, -0.03261394426226616, 0.0022944745142012835, -0.010735423304140568, -0.009616931900382042, -0.01742546260356903, 0.008122126571834087, 0.000725843186955899, 0.0022944745142012835, -0.027408257126808167, -0.027094662189483643, -0.005323285702615976, 0.015240747481584549, 0.006203966680914164, 0.01480171363800764, 0.009789410047233105, -0.007991462014615536, 0.01762407459318638, -0.007149979937821627, -0.041582778096199036, 0.00645484309643507, 0.047290220856666565, 0.01889936253428459, -0.013254641555249691, 0.007312004454433918, 0.017059601843357086, 0.005404297728091478, 0.00648097600787878, -0.007897382602095604, 0.020101478323340416, -0.004792786203324795, 0.00791306234896183, 0.005947863683104515, 0.037422411143779755, 0.0005514056538231671, 0.014613555744290352, -0.04294169321656227, 0.0030915301758795977, -0.008566386997699738, 0.02201441302895546, -0.014195428229868412, 0.0058485581539571285, 0.007463575806468725, 0.005670853890478611, 0.011111738160252571, 0.0192234106361866, 0.0009662664961069822, -0.0018005615565925837, 0.02726191282272339, -0.01612926833331585, -0.003987891133874655, 0.008116899989545345, -0.027429163455963135, 0.019265225157141685, 0.028244512155652046, -0.01938020996749401, -0.0022213023621588945, -0.006292818579822779, 0.025254899635910988, -0.006904330104589462, -0.03405648469924927, -0.03583352640271187, 0.0027204419020563364, 0.026216594502329826, -0.0009845595341175795, 0.010735423304140568, 0.012177962809801102, -0.0044007920660078526, -0.0010557719506323338, 0.04628671333193779, 0.00197173235937953, 0.034704580903053284, -8.68921197252348e-05, -0.007442669477313757, -0.04478145390748978, -0.02247435227036476, -0.0214290339499712, -0.019139785319566727, -0.02774275839328766, 0.016275612637400627, -0.03899038955569267, 0.011017659679055214, 0.04365250840783119, 0.029331643134355545, -0.03196584805846214, -0.010683157481253147, 0.006313724908977747, -0.04340163245797157, -0.006240552756935358, -0.027805477380752563, -0.04553408548235893, -0.009005420841276646, 0.03913673385977745, -0.013171016238629818, 0.0007193099590949714, -0.001020492403768003, -0.008414816111326218, 0.011373068206012249, 0.01587839238345623, 0.0004354405973572284, -0.044572390615940094, -0.0005631654639728367, -0.02112589217722416, 0.029206205159425735, 0.04381976276636124, -0.0017574421362951398, 0.020331449806690216, 0.006528015248477459, 0.018240811303257942, -0.009784183464944363, 0.03662796691060066, -0.015836577862501144, 0.00567608093842864, 0.012993311509490013, -0.024564990773797035, -0.02345695160329342, 0.014414945617318153, 0.022328007966279984, -0.009637839160859585, -0.0014425398549064994, 0.02107362635433674, 0.032070379704236984, -0.012177962809801102, -0.015240747481584549, 0.015303466469049454, -0.0033685395028442144, -0.0049887835048139095, 0.009972340427339077, 0.011174457147717476, -0.013735488057136536, -0.01841851696372032, 0.00663777394220233, -0.03434917330741882, -0.005284086335450411, 0.005278859753161669, -0.01017095148563385, 0.0028563335072249174, 0.0018933335086330771, -0.0018332276958972216, 0.04465601593255997, -0.03750603646039963, 0.012428839690983295, 0.015136214904487133, 0.025777559727430344, -0.0033528597559779882, 0.01118491031229496, 0.02556849643588066, -0.012982858344912529, -0.0030889168847352266, 0.01886800304055214, -0.011101284995675087, -0.029582520946860313, 0.033157508820295334, 0.003018357791006565, -0.02427230030298233, -0.009773730300366879, 0.04591039940714836, -0.02711556851863861, -0.01818854548037052, -0.004160368349403143, 0.061590179800987244, -0.016212893649935722, -0.006961822975426912, 0.006188286934047937, 0.0010479320771992207, 0.016693739220499992, 0.00815348606556654, 0.005947863683104515, -0.031359560787677765, -0.02857901342213154, 0.005791065748780966, -0.0003255187766626477, -0.023164262995123863, 0.03010517917573452, -0.015042136423289776, 0.050049860030412674, -0.009888715110719204, -0.0393039844930172, -0.01671464741230011, 0.005430430639535189, -0.01053681317716837, -0.00645484309643507, -0.009005420841276646, -0.027073755860328674, 0.002480018651112914, -0.0012360893888399005, 0.022432539612054825, -0.012805154547095299, 0.01934885047376156, 0.0012556890724226832, -0.0005843985127285123, 0.015355732291936874, 0.04271172359585762, 0.002400313038378954, -0.028160886839032173, -0.024794960394501686, 0.012303401716053486, 0.012115243822336197, 0.020937733352184296, -0.0018737338250502944, 0.007641280069947243, 0.0037892803084105253, -0.020488247275352478, -0.028223605826497078, -0.0009434001403860748, 0.008038501255214214, -0.029540708288550377, -0.0022382887545973063, 0.00018260411161463708, 0.007672639563679695, 0.05945773050189018, 0.0013001151382923126, -0.04758290946483612, -0.033951953053474426, -0.023707829415798187, 0.011080378666520119, -0.005237046629190445, -0.01737319678068161, -0.006993182469159365, -0.0680711567401886, 0.029770677909255028, 0.023937799036502838, 0.027868198230862617, 0.005372938234359026, -0.05055161565542221, 0.016881898045539856, -0.04129008948802948, 0.025045836344361305, 0.008069860748946667, 0.02535943314433098], [0.02120751515030861, 0.06094370037317276, 0.03033790923655033, -0.0137737225741148, -0.06764081120491028, 0.018774231895804405, -0.03500356152653694, 0.053755469620227814, 0.0053297835402190685, 0.02361847460269928, -0.038820914924144745, 0.010587015189230442, 0.04607611522078514, 0.05978287011384964, -0.02368544600903988, -0.02828412875533104, -0.0019393714610487223, 0.025627607479691505, 0.010341454297304153, 0.004718672018498182, 0.0233282670378685, 0.002090056426823139, -0.03411061316728592, -0.036767132580280304, 0.008739728480577469, -0.028172509744763374, 0.034512441605329514, 0.004746576771140099, 0.0329497829079628, -0.02368544600903988, 0.028998486697673798, -0.028909191489219666, 0.047772716730833054, 0.02705632522702217, -0.0030416040681302547, -0.03002537600696087, -0.028462717309594154, 0.006312026176601648, -0.011998988687992096, -0.002523973351344466, -0.012478948570787907, -0.00987265631556511, 0.01631862483918667, -0.025984786450862885, -0.03786099702119827, 0.12403047829866409, 0.015514971688389778, -0.009576867334544659, 0.005859971046447754, -0.018629128113389015, -0.009135974571108818, 0.044133953750133514, 0.024846278131008148, -0.06411366909742355, -0.02602943405508995, -0.018138006329536438, 0.008276511915028095, -8.772516594035551e-05, 0.006892442237585783, -0.009565705433487892, 0.0151243070140481, -0.012278035283088684, 0.03134247660636902, -0.001711948774755001, 0.009649419225752354, -0.00784119963645935, 0.0491567887365818, 0.022145111113786697, -0.04250432550907135, -0.025404371321201324, 0.025828521698713303, 0.0206270981580019, 0.019789960235357285, -0.03395434841513634, -0.06130088120698929, 0.007428211160004139, -0.01250127237290144, 0.027614416554570198, 0.03442314639687538, 0.019075602293014526, -0.0409863144159317, 0.02631964161992073, 0.011385086923837662, -0.01359513308852911, -0.014800612814724445, 0.01282496564090252, -0.030583469197154045, -0.0033820406533777714, 0.05714867264032364, -0.00046042632311582565, -0.006791985593736172, 0.015436838380992413, -0.005820904858410358, 0.057416558265686035, 0.006072046235203743, 0.033061400055885315, 0.019700665026903152, -0.05228210613131523, -0.019008630886673927, 0.038530707359313965, -0.0002607338537927717, -0.016061902046203613, -0.013148658908903599, 0.02915475144982338, 0.014744804240763187, -0.02995840646326542, -0.0069482517428696156, 0.04234806075692177, 0.07567734271287918, -0.004012685269117355, 0.014867584221065044, -0.043062418699264526, -0.007852361537516117, 0.04431254416704178, -0.055586013942956924, 0.002549087395891547, -0.0332176648080349, -0.014532729052007198, 0.012121769599616528, -0.014387624338269234, 0.0059660086408257484, 0.03431152552366257, 0.02268087863922119, -0.05540742352604866, 0.030851352959871292, 0.029779816046357155, 0.027324208989739418, 0.001603120705112815, -0.011011164635419846, -0.02815018594264984, 0.010748861357569695, -0.042035527527332306, 0.03960224241018295, 0.008421615697443485, 0.027904625982046127, -0.013941151089966297, 0.006228312384337187, -0.008455101400613785, 0.020906144753098488, -0.019298838451504707, -0.019053278490900993, 0.038374438881874084, -0.00012923328904435039, 0.015727046877145767, -0.06380113214254379, 0.010006598196923733, 0.0005399545188993216, 0.026989353820681572, 0.0031950795091688633, -0.0025128114502876997, 0.005770676303654909, 0.0015919589204713702, -0.01749061979353428, -0.009459667839109898, -0.03926738724112511, 0.03002537600696087, 0.01327143982052803, 0.05978287011384964, 0.00369178201071918, 0.005226536188274622, -0.013706752099096775, 0.014041607268154621, 0.01016844529658556, -0.018629128113389015, 0.0354500375688076, -0.007863523438572884, -0.026989353820681572, 0.020359214395284653, -0.03377575799822807, 0.001073630410246551, -0.004079656209796667, -0.0011412991443648934, -0.006791985593736172, 0.019008630886673927, -0.09661697596311569, -0.01858448050916195, 0.011786913499236107, 0.027815330773591995, 0.004001523368060589, -0.034222234040498734, 0.0045568253844976425, 0.06518520414829254, -0.001373605220578611, -0.0039736186154186726, 0.045339435338974, 0.055452071130275726, -0.02931101806461811, -0.015336382202804089, -0.0302486140280962, 0.026341965422034264, 0.0037280579563230276, -0.03600812703371048, 0.039334360510110855, 0.03877626731991768, 0.007495182100683451, -0.0021891179494559765, -0.01757991313934326, -0.020091330632567406, 0.03397667035460472, -0.05313040688633919, -0.00885692797601223, -0.01933232508599758, 0.008806699886918068, -0.03471335396170616, -0.03645460307598114, -0.03431152552366257, 0.015448000282049179, -0.0009738714434206486, 0.005625572521239519, 0.013383057899773121, 0.011708781123161316, -0.06621209532022476, -0.023797065019607544, -0.03212380409240723, 0.024288184940814972, -0.03221309930086136, 0.04565196856856346, 0.055228833109140396, 0.02828412875533104, 0.0019156525377184153, -0.04330797865986824, -0.007684933952987194, -0.0027360485401004553, -0.029355665668845177, -0.015001526102423668, -0.059157803654670715, -0.011764589697122574, -0.017178086563944817, -0.02982446365058422, 0.002865805057808757, -0.05254999175667763, 0.015336382202804089, 0.02944496087729931, -0.0398031584918499, 0.006870118901133537, 0.02564993128180504, 0.02564993128180504, -0.02149772271513939, -0.00030712527222931385, 0.05723796784877777, 0.009783361107110977, -0.048442430794239044, -0.012345005758106709, -0.020247595384716988, 0.01312633603811264, -0.013583971187472343, -0.011279049329459667, 0.007696095388382673, 0.02564993128180504, 0.0046991389244794846, 0.020448509603738785, 0.060988347977399826, 0.01213293056935072, -0.06067581847310066, -0.010676309466362, 0.047638777643442154, -0.033351607620716095, -0.027212589979171753, 0.019365809857845306, -0.03315069526433945, 0.018975144252181053, 0.01279147993773222, -0.03082902915775776, -8.288545359391719e-05, -0.027525121346116066, -0.049826499074697495, 0.01198782678693533, -0.009381534531712532, 0.03076205961406231, 0.04455810412764549, 0.005826485808938742, 0.04754948243498802, 0.008700662292540073, -0.03317301720380783, -0.06139017641544342, -0.009755456820130348, 0.01589447446167469, -0.01414206437766552, 0.03353019803762436, -0.02368544600903988, -0.05862203612923622, -0.00801978912204504, -0.0005992518272250891, -0.06322071701288223, -0.03341858088970184, 0.02551598846912384, 0.04839778319001198, 0.0469244159758091, 0.017445972189307213, 0.0029830043204128742, 0.040138013660907745, -0.01881887950003147, -0.028752924874424934, 0.036476925015449524, 0.05969357490539551, 0.006328769028186798, -0.005530696827918291, -0.028172509744763374, -0.04031660407781601, -0.025783874094486237, -0.0053102499805390835, 0.009772200137376785, 0.015280572697520256, -0.03169965371489525, -0.0935809537768364, -0.018986307084560394, 0.018316596746444702, 0.01341654360294342, -0.03674481064081192, -0.02902081049978733, -0.03504820913076401, 0.05518418550491333, -0.07451651245355606, -0.08094573765993118, -0.012601728551089764, -0.027815330773591995, -0.0029634712263941765, -0.013706752099096775, 0.053398292511701584, 0.030092347413301468, 0.02026991918683052, 0.011831561103463173, 0.007997465319931507, 0.003655505832284689, -0.018472861498594284, -0.013137497939169407, -0.042548973113298416, 0.006289702374488115, 0.028529688715934753, 0.03832979127764702, -0.059514984488487244, 4.242375143803656e-05, -0.007333335466682911, 0.0014496452640742064, -0.04804060235619545, -0.008466263301670551, -0.009984275326132774, 0.04612076282501221, 0.01596144586801529, -0.0061055319383740425, -0.006312026176601648, -0.022346023470163345, 0.03826282173395157, 0.0369010753929615, 0.013996959663927555, 0.022792497649788857, 0.024734659120440483, -0.022725526243448257, -0.005145613104104996, 0.026498232036828995, 0.0016728822374716401, -0.003008118597790599, 0.01064840517938137, 0.02413192018866539, -0.0463886484503746, -0.029690520837903023, 0.04629935324192047, 0.026810763403773308, -0.040271956473588943, 0.04045054316520691, 0.0038647905457764864, -0.030962971970438957, -0.025783874094486237, 0.025493664667010307, 0.06447084248065948, -0.00102549500297755, -0.010151702910661697, -0.027324208989739418, -0.0008266745135188103, 0.001995180733501911, -0.016084225848317146, -0.004174531903117895, 0.019845768809318542, -0.06116693839430809, 0.063533253967762, -0.011033488437533379, 6.858433334855363e-05, 0.022346023470163345, 0.0007129631703719497, -0.006602234207093716, -0.009554543532431126, -0.020392699167132378, 0.02866363152861595, 0.009381534531712532, -0.007227297872304916, 0.020682908594608307, -0.01034703478217125, 0.0017747341189533472, 0.003940132912248373, -2.6465793780516833e-05, 0.028462717309594154, -0.025315076112747192, 0.016140034422278404, 0.035249121487140656, -0.026230348274111748, 0.006133436691015959, 0.00025410650414414704, 0.017088793218135834, -0.03826282173395157, 0.01013495959341526, -0.019923903048038483, -0.044066984206438065, 0.014778289012610912, 0.00882344227284193, -0.036409955471754074, -0.010882804170250893, -0.008081179112195969, 0.028395745903253555, 0.0038145622238516808, -0.03484729677438736, 0.014789450913667679, -0.03205683454871178, 0.04759413003921509, 0.027569768950343132, -0.016374433413147926, -0.015927959233522415, 0.002722096163779497, 0.012992393225431442, -0.013751399703323841, -0.039334360510110855, 0.02085033617913723, -0.017881283536553383, -0.03069508820772171, 0.04754948243498802, -0.045384082943201065, 0.0030443945433944464, 0.030003052204847336, -0.00484703341498971, 0.02864130772650242, -0.0019589047878980637, -0.014923393726348877, -0.03373111039400101, -0.034155260771512985, 0.016932526603341103, -0.03091832436621189, -0.0026383823715150356, -0.02237951010465622, -0.017367837950587273, 0.029266370460391045, -0.03781634941697121, -0.0025825730990618467, -0.059023864567279816, 0.006401320919394493, 0.0021667941473424435, -0.010107055306434631, 0.01567123830318451, -0.007110098376870155, 0.03326231241226196, 0.034802649170160294, 0.0054274494759738445, 0.006027399096637964, -0.03111923858523369, -0.012523596175014973, -0.007517505902796984, 0.028038566932082176, -0.07273061573505402, 0.031811270862817764, 0.022033492103219032, 0.02596246264874935, 0.0010722351726144552, 0.06656927615404129, 0.011279049329459667, 0.021464237943291664, 0.05924709886312485, 0.011764589697122574, 0.012389653362333775, -0.012802641838788986, 0.036342982202768326, -0.010631661862134933, -0.05272857844829559, -0.004205226898193359, -0.013662104494869709, -0.018629128113389015, -0.003384831128641963, -0.03471335396170616, -0.007377983070909977, 0.029578901827335358, -0.008829023689031601, -0.00033677395549602807, -0.0520588681101799, 0.03745916858315468, 0.03879858925938606, -0.03156571090221405, -0.047415539622306824, 0.03623136505484581, 0.03315069526433945, 0.06491731852293015, 0.017379000782966614, -0.013260277919471264, -0.01031913049519062, 0.005061898846179247, 0.006674786563962698, 0.0009501524618826807, -0.008449520915746689, -0.019209543243050575, 0.01727854460477829, -0.021631665527820587, 0.004844242706894875, 0.05156774818897247, -0.011217659339308739, -0.01414206437766552, -0.05429123714566231, 0.0042721983045339584, -0.014276006259024143, 0.004637748468667269, 0.025828521698713303, 0.015403352677822113, 0.034668706357479095, 0.018204977735877037, 0.004394978284835815, 0.002381659811362624, 0.0012557081645354629, 0.0024904878810048103, 0.008985289372503757, 0.011865046806633472, -0.004827500320971012, -0.014711318537592888, 0.01787012256681919, -0.060184694826602936, 0.022323699668049812, 0.037660080939531326, -0.031007619574666023, -0.006791985593736172, 0.01939929462969303, -0.027234913781285286, 0.03330696001648903, -0.014041607268154621, -0.08840185403823853, -0.00279604340903461, -0.03748149424791336, -0.001081304275430739, 0.001200596452690661, -0.004953071009367704, -0.01734551414847374, -0.0004192669875919819, -0.010430748574435711, -0.0006135529256425798, 0.045607320964336395, -0.0014705737121403217, -0.024846278131008148, 0.004350331146270037, -0.04368748143315315, -0.008840185590088367, 0.014476919546723366, 0.004196855705231428, -0.028194833546876907, 0.020459670573472977, -0.013918827287852764, 0.00225887936539948, -0.0010310759535059333, 0.01330492552369833, 0.010882804170250893, 0.00835464522242546, -0.01953323744237423, 0.02274785004556179, 0.039111122488975525, 0.009314564056694508, -0.005926942452788353, -0.007539829704910517, 0.014599699527025223, -0.01669812761247158, 0.025404371321201324, -0.011340439319610596, 0.0020481995306909084, -0.033128369599580765, -0.0054274494759738445, -0.01414206437766552, -0.03625369071960449, -0.023283619433641434, 0.038530707359313965, 0.00900761317461729, 0.0005832066526636481, -0.014030445367097855, 0.038084231317043304, 0.03395434841513634, 0.01675393618643284, 0.02390868216753006, -0.039334360510110855, 0.011519028805196285, 0.020158302038908005, 0.027569768950343132, 0.044580429792404175, 0.010760023258626461, 0.0009613143629394472, -0.0313647985458374, 0.000155917092342861, -0.02390868216753006, -0.029779816046357155, -0.008042112924158573, -0.008131408132612705, 0.01362861879169941, 0.0038313050754368305, 0.019053278490900993, -0.04317403584718704, -0.0035717920400202274, 0.012021312490105629, -0.01611771062016487, 0.0037308484315872192, -0.019086763262748718, 0.021899549290537834, 0.03187824413180351, 0.00428056949749589, -0.005089803598821163, 0.03864232450723648, -0.0015375448856502771, -0.006345511879771948, -0.020236434414982796, -0.04366515576839447, 0.07491833716630936, -0.024087272584438324, 0.04449113458395004, 0.0012061774032190442, -0.026565203443169594, -0.04469204694032669, -0.014789450913667679, -0.008516491390764713, -0.054068002849817276, -0.015012688003480434, 0.017836635932326317, -0.021698636934161186, -0.03891021013259888, 0.01625165343284607, 0.01005682721734047, -0.015302896499633789, -0.06639068573713303, -0.013505838811397552, -8.092341158771887e-05, -0.0036248108372092247, -0.0068756998516619205, -0.015771694481372833, 0.0005022832774557173, -0.02799391932785511, 0.004330798052251339, -0.013494676910340786, 0.0232612956315279, 0.011708781123161316, 0.0029802140779793262, -0.042682915925979614, 0.0158163420855999, 0.023372914642095566, 0.06246171146631241, 0.03040487878024578, 0.03236936405301094, -0.03326231241226196, 0.027391180396080017, -0.011530190706253052, 0.033865053206682205, 0.04004871845245361, 0.05920245125889778, -0.012032474391162395, 0.05071944743394852, 0.008784376084804535, -0.007249621674418449, -0.005385592579841614, -0.026408936828374863, 0.005681381560862064, -0.029355665668845177, 0.03212380409240723, -0.00995637010782957, 0.06835517287254333, 0.01169761922210455, 0.022848306223750114, 0.029132429510354996, 0.024957897141575813, -0.015358706004917622, -0.002603501547127962, 0.035896509885787964, 0.021118219941854477, 0.0023021316155791283, 0.008276511915028095, 0.04259362071752548, 0.011223239824175835, 0.00588787579908967, -0.022770173847675323, -0.008829023689031601, 0.014733642339706421, 0.0033039075788110495, 0.02004668302834034, 0.01684323139488697, 0.023506855592131615, -0.004269407596439123, -0.029065458104014397, -0.002943937899544835, 0.01728970557451248, 0.0014015097403898835, -0.024913249537348747, -0.028016243129968643, -0.0031867080833762884, -0.02734653279185295, 0.014063931070268154, 0.00033468109904788435, 0.01676509901881218, 0.03239168971776962, 0.023305943235754967, 0.008784376084804535, 0.04862101748585701, -0.014030445367097855, -0.045093875378370285, -0.007098936475813389, -0.032994430512189865, -0.002433283254504204, 0.007305430714040995, -0.03346322476863861, -0.03406596556305885, -0.04076307639479637, 0.010994422249495983, -0.016441404819488525, -0.042013201862573624, 0.030047699809074402, -0.0021193563006818295, -0.008739728480577469, -0.015035011805593967, -0.016497215256094933, -0.010475396178662777, -0.012177578173577785, -0.0028853381518274546, 0.00639573996886611, 0.00258815404959023, -0.011212077923119068, 0.008014208637177944, 0.00269837724044919, 0.027458151802420616, -0.01991274021565914, 0.005056317895650864, 0.02281482145190239, -0.007132422178983688, -0.0012459415011107922, 9.696857159724459e-05, 0.006451549474149942, 0.005664638709276915, 0.01422019675374031, -0.005207003094255924, 0.001333841122686863, 0.0316326841711998, -0.0036415536887943745, -0.0034992399159818888, -0.010933032259345055, 0.027949271723628044, 0.013226792216300964, -0.004548453725874424, 0.01002334151417017, -0.05268393084406853, -0.002843481255695224, 0.0017496199579909444, -0.01822730153799057, 0.06255100667476654, -0.009275496937334538, 0.014030445367097855, -0.007813295349478722, 0.015872150659561157, -0.017992902547121048, 0.005809742957353592, -0.036499250680208206, 0.009085745550692081, 0.014867584221065044, -0.03359716758131981, 0.02282598428428173, 0.014298330061137676, -0.023305943235754967, -0.030806705355644226, -0.03274886682629585, -0.015715884044766426, -0.002352359937503934, -0.008427197113633156, 0.023640798404812813, 0.014744804240763187, 0.007902589626610279, -0.03527144715189934, -0.002335617085918784, -0.028752924874424934, -0.012456624768674374, -0.007980722934007645, -0.0302486140280962, 0.020537804812192917, 0.02660985104739666, -0.034445468336343765, 0.00904109887778759, -0.027167942374944687, -0.022926440462470055, -0.010084731504321098, 0.009922884404659271, -0.004838662222027779, -0.05237140133976936, 0.04576358571648598, 0.01618468202650547, -0.01685439422726631, -0.04096398875117302, -0.01822730153799057, 0.03683410584926605, 0.025047192350029945, -0.02573922649025917, 0.009403858333826065, -0.015336382202804089, -0.006099950987845659, -0.01755758933722973, -0.015135468915104866, 0.010698633268475533, 0.015392190776765347, -0.009883818216621876, 0.002673263195902109, 0.0034936589654535055, 0.033351607620716095, 0.0017663628095760942, 0.018930498510599136, 0.07000712305307388, 0.02683308720588684, -0.01996855065226555, 0.01596144586801529, -0.0013610480818897486, 0.01793709211051464, -0.013360734097659588, 0.011055812239646912, 0.016061902046203613, 0.027324208989739418, 0.02696703001856804, -0.03600812703371048, -0.0053046690300107, 0.015593104064464569, -0.010955356061458588, 0.013215630315244198, 0.010726537555456161, 0.007221716921776533, 0.003250888781622052, -0.023350590839982033, 0.03355251997709274, -0.0454733781516552, 0.002137494273483753, 0.00903551746159792, -0.021754445508122444, 0.005112127400934696, 0.029511932283639908, 0.027659064158797264, -0.023997977375984192, 0.014454595744609833, -0.01180923730134964, -0.014008121564984322, -0.014566214755177498, 0.03353019803762436, 0.01903095468878746, 0.0024583975318819284, 0.035896509885787964, -0.0002992771042045206, -0.045093875378370285, 0.02049315720796585, 0.013494676910340786, 0.007031965535134077, -0.013807208277285099, 0.027748359367251396, -0.02982446365058422, 0.006451549474149942, -0.00015565549256280065, -0.02288179285824299, 0.007802132982760668, 0.019845768809318542, 0.027592092752456665, -0.031766626983881, 0.01757991313934326, 0.030739735811948776, -0.02551598846912384, -0.022859469056129456, -0.015615427866578102, 0.00018294970504939556, 0.01557078119367361, -0.01264637615531683, 0.01677625998854637, 0.004615425132215023, 0.010402844287455082, -0.019589046016335487, 0.015068497508764267, -0.00033834358328022063, 0.030784381553530693, -0.0036834105849266052, 0.005220955237746239, 0.016240492463111877, 0.016742775216698647, 0.008935061283409595, -0.008583462797105312, -0.014264844357967377, 0.026297317817807198, 0.008756471797823906, -0.037436846643686295, 0.00045484540169127285, 0.049290731549263, 0.012813803739845753, -0.012333843857049942, -0.021631665527820587, -0.03549468144774437, 0.0036024870350956917, 0.030873676761984825, 0.01118417363613844, -0.011212077923119068, -0.007807713933289051, 0.037570785731077194, -0.008064436726272106, -0.017736179754137993, -0.0023565455339848995, 0.002486302051693201, 0.004353121388703585, 0.007880265824496746, -0.026230348274111748, -0.04310706630349159, -0.004467530641704798, 0.015872150659561157, 0.016084225848317146, -0.006328769028186798, -0.008443939499557018, 0.012233387678861618, 0.02222324348986149, 0.00047089054714888334, -0.010743280872702599, 0.0030276519246399403, 0.015291734598577023, -0.012981231324374676, -0.02515880949795246, 0.016419081017374992, -0.02144191414117813, 0.018774231895804405, 0.013796046376228333, -0.016564184799790382, 0.029467284679412842, 0.06719433516263962, 0.01356164738535881, 0.02158701792359352, 0.022848306223750114, 0.0328158400952816, 0.00399315170943737, 0.010787928476929665, 0.007372402120381594, -0.030494173988699913, -0.03781634941697121, -0.02799391932785511, 0.03607510030269623, 0.0046293772757053375, 0.02609640546143055, -0.02835109829902649, -0.0046070534735918045, 0.00079737463966012, 0.009532219730317593, 0.0409863144159317, -0.004595891572535038, -0.009777780622243881, 0.006312026176601648, -0.0016212586779147387, -0.07518622279167175, 0.0008364411187358201, -0.021118219941854477, 0.0044898539781570435, 0.05451447516679764, 0.04118722677230835, -0.018126845359802246, -0.03368646278977394, -0.0328158400952816, 0.001428716816008091, 0.00981126632541418, -0.008940641768276691, -0.04469204694032669, -0.004545663483440876, -0.01909792609512806, 0.008750890381634235, -0.013137497939169407, 6.592467980226502e-05, -0.019868092611432076, -0.003150432137772441, -0.03841908648610115, -0.006189245730638504, 0.014845260418951511, 0.0344008207321167, -0.02616337686777115, -0.022803660482168198, 0.03462405875325203, -0.010034503415226936, -0.041946232318878174, 0.021531209349632263, 0.0023788693360984325, -0.03319534286856651, -0.004612634424120188, 0.010849318467080593, 0.024690011516213417, -0.012557080946862698, 0.004989346954971552, 0.02567225508391857, 0.015704723075032234, 0.04024963080883026, 0.030806705355644226, -0.01013495959341526, 0.022669717669487, -0.007004060782492161, -0.022401833906769753, 0.025560636073350906, -0.037950288504362106, 0.01997971162199974, -0.01938813365995884, 0.028083214536309242, 0.0169994980096817, -0.02115170657634735, 0.004333588294684887, 0.03542771190404892, 0.0022519032936543226, 0.00641248282045126, 0.023305943235754967, 0.007138003129512072, -0.01778082735836506, 0.007372402120381594, 0.02551598846912384, -0.005273974034935236, 0.0027988338842988014, -0.03297210484743118, 0.019957387819886208, -0.0003924087795894593, -0.009454087354242802, -0.015492647886276245, -0.026699146255850792, 0.026007110252976418, -0.0031922890339046717, -0.018640289083123207, -0.018394729122519493, 0.03915577009320259, -0.01407509297132492, -0.020671745762228966, 0.012378491461277008, -0.00048205238999798894, -0.008884832262992859, 0.02033689059317112, 0.01742364838719368, -0.006144598592072725, 0.0006285517010837793, 0.011496705934405327, -0.009242012165486813, 0.04344192147254944, -0.006747338455170393, 0.038753941655159, -0.013784884475171566, -0.025136485695838928, 0.05286252126097679, 0.017512943595647812, 0.017524104565382004, -0.004618215374648571, -0.00295230932533741, -0.011273468844592571, 0.018037550151348114, -0.028172509744763374, -0.013226792216300964, -0.014644347131252289, -0.0008510910556651652, 0.004208017606288195, -0.0005790209979750216, -0.024556070566177368, -0.012423139065504074, -0.027904625982046127, 0.00790817104279995, -0.013137497939169407, 0.044513456523418427, -0.04228108748793602, 0.05714867264032364, -0.01250127237290144, -0.015113145112991333, -0.022792497649788857, -0.025716902688145638, -0.007115679327398539, -0.02361847460269928, -0.0022463223431259394, -0.025024868547916412, 0.007004060782492161, -0.03846373409032822, 0.026810763403773308, -0.027837654575705528, -0.007779809646308422, 0.04328565299510956, 0.024957897141575813, -0.0005019344389438629, -0.03388737514615059, 0.02268087863922119, 0.04083004593849182, 0.03719128295779228, 0.0075454106554389, 0.031387120485305786, -0.020080167800188065, 0.014521567150950432, -0.0288645438849926, 0.038240499794483185, -0.004989346954971552, 0.013226792216300964, -0.0226027462631464, -0.0038006098475307226, -0.026520555838942528, -0.04674582928419113, 0.022770173847675323, -0.0060832081362605095, -0.007980722934007645, 0.01741248555481434, -0.017903607338666916, 0.029556578025221825, 0.012010150589048862, -0.005971589591354132, -0.004436835180968046, -0.0015528923831880093, 0.016363272443413734, -0.009816846810281277, -0.041589051485061646, -0.011998988687992096, 0.0027737198397517204, 0.017367837950587273, -0.012010150589048862, 0.008287673816084862, 0.03580721467733383, 0.007004060782492161, -0.001388255157507956, 0.020158302038908005, -0.001571030355989933, 0.023640798404812813, 0.0025365303736180067, 0.011217659339308739, 0.0465225912630558, -0.02625267207622528, 0.0039261807687580585, -0.011998988687992096, -0.009247592650353909, -0.006367835681885481, 0.016084225848317146, 0.005597667768597603, -0.025538312271237373, -0.0076068006455898285, -0.05589854344725609, -0.009816846810281277, 0.02806089073419571, -0.014086254872381687, -0.01843937672674656, 0.011641809716820717, 0.029578901827335358, 0.012657538056373596, -0.01035261619836092, 0.017111117020249367, -0.024913249537348747, -0.0022756222169846296, 0.0050702705048024654, -0.011379506438970566, -0.02989143505692482, -0.05152310058474541, -0.00040287303272634745, -0.023997977375984192, -0.010765604674816132, 0.016419081017374992, 0.04004871845245361, 0.03165500611066818, 0.015593104064464569, -0.02054896578192711, -0.015224763192236423, 0.07299850136041641, -0.03105226717889309, 0.01683207042515278, 0.03797261416912079, -0.01793709211051464, 0.01526941079646349, 0.005765095353126526, 0.05049620941281319, -0.006490615662187338, 0.018573317676782608, -0.02120751515030861, 0.008683918975293636, 0.02902081049978733, 0.00867833849042654, -0.01954440027475357, 0.009141555055975914, 0.022993411868810654, 0.020716393366456032, 0.027502799406647682, -0.018707260489463806, 0.028261804953217506, 0.0068756998516619205, 0.014588537625968456, -0.018026387318968773, -0.004992137663066387, -0.03156571090221405, -0.002643963322043419, 0.013003555126488209, 0.0014231358654797077, -0.01661999523639679, 0.007634705398231745, 0.012668699957430363, -0.00336250732652843, -0.010603757575154305, 0.00572602916508913, -0.032257746905088425, -0.04009336605668068, -0.015604265965521336, 0.008455101400613785, -0.004294521640986204, -0.04067378118634224, 0.0231943242251873, -0.03636530786752701, -0.018897011876106262, 0.02792694792151451, 0.013025878928601742, -0.007433792110532522, -0.023506855592131615, -0.00023684051120653749, -0.030516497790813446, 0.0328158400952816, 0.01910908706486225, -0.00670827180147171, -0.003172755939885974, -0.009850332513451576, 0.03355251997709274, 0.0065687489695847034, -0.007076613139361143, 0.002038432750850916, -0.01476712804287672, 0.0025211828760802746, -0.007936075329780579, -0.004456368740648031, 0.020660584792494774, 0.02348453179001808, -0.0011496705701574683, -0.004662862978875637, -0.015023849904537201, -0.015481485985219479, -0.005301878787577152, -0.006752919405698776, 0.011396248824894428, -0.0028546431567519903, 0.014309491962194443, 0.01159716211259365, 0.02895383909344673, -0.023596150800585747, 0.013360734097659588, -0.003931761719286442, 0.03449011594057083, -0.05683613941073418, -0.007082194089889526, 0.030047699809074402, 0.003694572253152728, 0.020303405821323395, -0.009063422679901123, 0.00621715048328042, -0.0067585003562271595, 0.030136995017528534, 0.019555561244487762, 0.016430243849754333, -0.012400815263390541, -0.014867584221065044, -0.036789458245038986, 0.0044173020869493484, -0.019153734669089317, -0.009710809215903282, 0.015314058400690556, -0.027659064158797264, 0.03228006884455681, 0.005064689554274082, -0.0020300615578889847, -0.0012905888725072145, 0.026587527245283127, -0.028239481151103973, 0.04091934114694595, -0.007338916417211294, -0.01461086142808199, 0.0169994980096817, -0.040562164038419724, -0.00572602916508913, -0.0100177600979805, 0.012099445797502995, 0.006535263266414404, -0.042325735092163086, -0.03062811680138111, -0.005073060747236013, 0.008566719479858875, -0.00020701743778772652, -0.01757991313934326, 0.02297108806669712, -0.019153734669089317, 0.03228006884455681, -0.00031357823172584176, -0.011675295419991016, 0.02522578090429306, 0.0029076619539409876, 0.054068002849817276, 0.010547948069870472, -0.01243430096656084, -0.02413192018866539, -0.0024193311110138893, 0.01111720222979784, -0.012880775146186352, -0.0019644855055958033, 0.012601728551089764, -0.047504834830760956, 0.0520588681101799, -0.005053527653217316, -0.028708279132843018, 0.023439884185791016, -0.008633690886199474, 0.042816855013370514, 0.01198782678693533, -0.03221309930086136, -0.03674481064081192, -0.0069984798319637775, -0.01829427294433117, -0.03937900811433792, 0.04404465854167938, -0.012166416272521019, 0.026855411008000374, -0.0003011955413967371, 0.0066636246629059315, 0.013762560673058033, 0.008633690886199474, 0.04315171390771866, -0.061211585998535156, -0.017914770171046257, -0.03710198774933815, -0.013293763622641563, 0.022491127252578735, 0.0044173020869493484, 0.019276514649391174, -0.019566722214221954, 0.021252162754535675, -0.0027011677157133818, 0.012211063876748085, 0.01660883240401745, -0.012490110471844673, 0.00424708379432559, 0.016240492463111877, 0.019187219440937042, 0.0017468294827267528, 0.02515880949795246, -0.01932116225361824, -0.01991274021565914, 0.008734147995710373, -0.041455112397670746, 0.007104517426341772, 0.05647896230220795, -2.0263554688426666e-05, -0.011920856311917305, 0.00819837860763073, -0.008583462797105312, -0.030092347413301468, 0.011619485914707184, -0.003884323872625828, 0.0060329800471663475, 0.01618468202650547, 0.01821613870561123, -0.005639524664729834, 0.045674290508031845, 0.007255202624946833, 0.013639780692756176, -0.04621005803346634, 0.0326818972826004, 0.0014901070389896631, 0.03768240660429001, -0.04033892601728439, -0.0019240238470956683, -0.017914770171046257, 0.006658043712377548, -0.004972604103386402, -0.014543890953063965, -0.0038480476941913366, 0.011943179182708263, 0.015626590698957443, -0.043330300599336624, 0.01975647546350956, 0.010559109970927238, -0.04127652198076248, 0.02173212170600891, 0.03924506530165672, -0.03368646278977394, -0.005606038961559534, -0.006485034711658955, 0.024890925735235214, -0.03259260207414627, -0.0469244159758091, -0.028775248676538467, 0.03303907439112663, 0.036566220223903656, -0.025315076112747192, 0.009214106947183609, 0.028797572478652, -0.006524101365357637, 0.00921968836337328, 0.014365301467478275, 0.006658043712377548, -0.005435821134597063, -0.012735671363770962, -0.018975144252181053, -0.04991579428315163, -0.011279049329459667, -0.03114156238734722, -0.002094242023304105, -0.004788433667272329, 0.009582447819411755, -0.013818370178341866, 0.00451775873079896, 0.017021821811795235, 0.026810763403773308, -0.0060832081362605095, 0.006764081306755543, 0.009761038236320019, -0.05031761899590492, -0.02150888554751873, -0.03185591846704483, -0.031744301319122314, -0.0011719942558556795, 0.008801118470728397, -0.02471233531832695, 0.0066413008607923985, -0.03897717967629433, -0.01801522634923458, -0.010670728981494904, 0.001428716816008091, 0.002217022469267249, -0.04489295929670334, 0.031186208128929138, -0.03761543333530426, 0.010363778099417686, 0.050987329334020615, 0.006658043712377548, 0.03326231241226196, -0.009096907451748848, 0.03652157261967659, -0.004752157721668482, 0.021520046517252922, -0.021899549290537834, 0.0137737225741148, 0.03353019803762436, -0.031096914783120155, -0.03946830332279205, 0.013807208277285099, 0.034891944378614426, 0.04279453307390213, 0.022781336680054665, 0.004166160710155964, 0.0012738461373373866, -0.027368856593966484, -0.023082705214619637, 0.03884323686361313, -0.011239983141422272, 0.009124812670052052, 0.015872150659561157, 0.02222324348986149, 0.027502799406647682, -0.028708279132843018, 0.015168954618275166, 0.005999494343996048, 0.01034703478217125, 0.002762557938694954, -0.0002949170011561364, -0.013740237802267075, 0.0015082450117915869, -0.007004060782492161, 0.008304416202008724, -0.03587418422102928, 0.02471233531832695, -0.0288645438849926, 0.02041502296924591, -0.0033122790046036243, 0.00639573996886611, 0.028239481151103973, 0.025471342727541924, 0.010380520485341549, 0.02348453179001808, 0.0016854393761605024, -0.027368856593966484, 0.020459670573472977, -0.007059870287775993, -0.006769662257283926, -0.007863523438572884, 0.0245783943682909, -0.01184272300451994, -0.030962971970438957, -0.015068497508764267, 0.038240499794483185, -0.014633185230195522, 0.031096914783120155, -0.00841603521257639, 0.00287138600833714, -0.004261036403477192, -0.011652971617877483, 0.002896500052884221, -0.030561145395040512, -0.041745319962501526, 0.011753427796065807, 0.013517000712454319, -0.01714460179209709, 0.011474382132291794, 0.02149772271513939, 0.02944496087729931, -0.005098174791783094, -0.03719128295779228, -0.023707769811153412, 0.025850845500826836, -0.027324208989739418, -0.007288687862455845, -0.00265233451500535, -0.0015417304821312428, -0.011764589697122574, 0.006155760493129492, 0.035249121487140656, -0.0076514482498168945, -0.0060106562450528145, -0.020660584792494774, -0.009359211660921574, 0.009398277848958969, 0.026208024471998215, 0.001838914817199111, -0.013249116018414497, -0.01526941079646349, -0.019923903048038483, 0.012545919045805931, -0.0021486561745405197, 0.013104012235999107, 0.036923401057720184, 0.01312633603811264, -0.005949266254901886, -0.004065704066306353, 0.00900203175842762, 0.0060329800471663475, -0.03158803656697273, 0.007076613139361143, -0.009465249255299568, 0.026074081659317017, 0.041231874376535416, 0.005366059485822916, -0.03949062526226044, -0.01916489563882351, -0.022625070065259933, -0.0012584986397996545, -0.005056317895650864, -0.036990370601415634, -0.016296301037073135, -0.04105328395962715, 0.011586000211536884, -0.0038396765012294054, 0.011965502984821796, -0.0016924155643209815, -0.03920041769742966, 0.018383566290140152, -0.020292242988944054, 0.015548457391560078, 0.02705632522702217, 0.003591325366869569], [0.014734799973666668, 0.04854067042469978, 0.04191374033689499, 0.025847161188721657, -0.07517624646425247, -0.002141500124707818, -0.06047340855002403, 0.014138163067400455, 0.03287895396351814, 0.010574323125183582, -0.037012793123722076, -0.01108039915561676, 0.02635856345295906, 0.03296418488025665, -0.020690513774752617, -0.021031448617577553, 0.012326943688094616, 0.04504608362913132, -0.02138303965330124, -0.017163963988423347, 0.05020273104310036, 0.016205083578824997, -0.07389773428440094, -0.022906593978405, -0.017515553161501884, -0.028212400153279305, 0.028340250253677368, -0.004607954528182745, 0.04018775373697281, 0.0029805207159370184, 0.023375378921628, -0.026294639334082603, 0.028894269838929176, 0.02348192222416401, -0.017931068316102028, -0.015427324920892715, -0.02646510675549507, 0.02013649418950081, -0.0009775256039574742, -0.013978349044919014, -0.010153480805456638, -0.006935903336852789, 0.012433486059308052, -0.03991074487566948, -0.004285663831979036, 0.1079060360789299, 0.016460785642266273, -0.0016087886178866029, -0.007122352719306946, -0.02329014614224434, -0.008768430911004543, 0.07692353427410126, 0.019689016044139862, -0.12188438326120377, -0.006424500606954098, 0.02531445026397705, 0.01786714233458042, -0.0013217903906479478, 0.015118352137506008, -0.011677036061882973, -0.0010028294054791331, 0.012199092656373978, 0.028872963041067123, -0.0162477008998394, 0.025143982842564583, -0.021510889753699303, 0.07594335079193115, 0.025847161188721657, -0.05719190463423729, -0.04917992278933525, 0.032047923654317856, 0.013243207708001137, 0.031067732721567154, -0.030982499942183495, -0.037971675395965576, 0.0068559967912733555, -0.021798552945256233, 0.03179221972823143, 0.01767536625266075, 0.034434471279382706, -0.05450703948736191, 0.039015788584947586, -0.02663557417690754, 0.001340435235761106, -0.01370133925229311, 0.023226220160722733, -0.04323486238718033, 0.004466785583645105, 0.06277471780776978, 0.01427666749805212, 0.009013478644192219, 0.02331145480275154, -0.0034413160756230354, 0.016961533576250076, -0.022459115833044052, 0.009583479724824429, 0.006887959316372871, -0.02157481573522091, -0.014095545746386051, 0.032815027981996536, -0.0025383702013641596, -0.018783407285809517, 0.00047378026647493243, 0.02940567396581173, -0.03055633045732975, -0.05702143535017967, 0.0162263922393322, 0.004075242672115564, 0.04423636198043823, 0.008645907044410706, 0.04726216197013855, -0.06081434339284897, -0.009418338537216187, 0.03055633045732975, -0.05220572650432587, -0.03588344529271126, -0.01332844141870737, -0.0026768750976771116, 0.016961533576250076, -0.005763938184827566, 0.024888280779123306, 0.03982551023364067, 0.012614607810974121, -0.042915236204862595, 0.05079936608672142, 0.015629755333065987, -0.0012418836122378707, 0.022224722430109978, 0.012433486059308052, -0.02309837006032467, 0.02329014614224434, -0.039953362196683884, 0.04061392322182655, -0.027658380568027496, 0.03321988880634308, -0.015224894508719444, 0.010100210085511208, -0.01698284223675728, -0.009237216785550117, 0.015214240178465843, -0.002237388165667653, 0.04525916650891304, 0.00450940290465951, 0.00739936251193285, -0.09733704477548599, -0.003404026385396719, -0.015896109864115715, 0.027722304686903954, -0.0009395699016749859, -0.0033587459474802017, 0.02921389788389206, 0.008752449415624142, 0.012476102448999882, -0.01682302914559841, -0.03876008838415146, 0.005929078906774521, 0.020605280995368958, 0.0630304217338562, 0.008443476632237434, 0.003116362262517214, -0.011293482966721058, 0.03160044550895691, -0.03982551023364067, 0.0031323435250669718, 0.045131318271160126, -0.033198580145835876, 0.031941380351781845, 0.03705541044473648, -0.02836155891418457, -0.007148988079279661, -0.012838346883654594, 0.005454965401440859, 0.00960478838533163, 0.010126844979822636, -0.07764802873134613, -0.019635744392871857, 0.00959413405507803, 0.045131318271160126, -0.007234221789985895, -0.02968268282711506, 0.00047045081737451255, 0.036224380135536194, -0.03763074055314064, -0.011677036061882973, 0.04470514878630638, 0.07185212522745132, -0.012486756779253483, -0.010089555755257607, -0.014479097910225391, 0.02444080263376236, 0.004205757286399603, -0.024227717891335487, 0.038824014365673065, 0.04080570116639137, 0.024035941809415817, 0.009050767868757248, -0.020051259547472, -0.045216549187898636, 0.037098027765750885, -0.025825852528214455, -0.010009648278355598, -0.06332874298095703, -0.009162637405097485, -0.007750952150672674, -0.05898181349039078, 0.017451629042625427, -0.005497582256793976, -0.01423405110836029, 0.0035478584468364716, 0.005561507772654295, 0.030236704275012016, -0.05088460072875023, -0.022309957072138786, -0.033560823649168015, 0.042169440537691116, -0.013339095748960972, 0.021180609241127968, 0.041018784046173096, 0.0295974500477314, -0.0035878117196261883, -0.06158144772052765, -0.01241217739880085, -0.01756882481276989, -0.026720808818936348, -0.04142364487051964, -0.05463488772511482, -0.006999828852713108, -0.007809550501406193, -0.0496487095952034, 0.014883958734571934, -0.05787377431988716, 0.018783407285809517, 0.02311967872083187, -0.04496084898710251, -0.009173291735351086, 0.0353294238448143, 0.026592956855893135, -0.04734739661216736, 0.01370133925229311, 0.09034786373376846, 0.01985948346555233, -0.027423987165093422, 0.018357237800955772, 0.0018831350607797503, -0.022885285317897797, -0.0017979012336581945, 0.015778914093971252, 0.00959413405507803, 0.0011986008612439036, -0.011485259979963303, 0.031110350042581558, 0.046921227127313614, 0.019113687798380852, -0.035585127770900726, -0.01870882697403431, 0.03703410178422928, -0.0262520220130682, -0.0056094517931342125, 0.027530528604984283, -0.011549185030162334, 0.009157310239970684, 0.013232553377747536, -0.01565106399357319, -0.03066287375986576, -0.05616910010576248, -0.04547225311398506, 0.022480424493551254, -0.021947713568806648, 0.033560823649168015, 0.0429365448653698, -0.013541526161134243, 0.08148355036973953, 0.006957211997359991, -0.019635744392871857, -0.06285995244979858, 0.03315596282482147, 0.015118352137506008, -0.022224722430109978, -0.010009648278355598, -0.026507724076509476, -0.04709169641137123, -0.041402336210012436, -0.0012685192050412297, -0.05710666999220848, -0.0150437718257308, 0.023545848205685616, 0.0028073894791305065, 0.03083334118127823, -0.002708837855607271, 0.026017628610134125, 0.04496084898710251, -0.013743956573307514, -0.003947392106056213, 0.05889658257365227, 0.06021770462393761, 0.004362907260656357, 0.011197594925761223, 0.006557678338140249, -0.0029006139375269413, -0.025804543867707253, 0.02635856345295906, -0.01909237913787365, -0.007750952150672674, -0.04059261456131935, -0.076412133872509, -0.024781737476587296, 0.006642912048846483, -0.014052928425371647, -0.02808455005288124, -0.0004804391646757722, -0.042425140738487244, 0.0195718202739954, -0.09537666290998459, -0.03865354508161545, -0.01756882481276989, -0.0214895810931921, 0.025655385106801987, -0.0045839822851121426, 0.06452201306819916, 0.000757782079745084, 0.015107697807252407, -0.003158979117870331, 0.0021454954985529184, -0.021223224699497223, -0.01317928172647953, -0.019348081201314926, -0.02166004851460457, 0.0281697828322649, 0.0372684970498085, -0.002775426721200347, -0.04973394423723221, -0.023247528821229935, 0.021947713568806648, 0.004972861614078283, -0.037012793123722076, -0.044534679502248764, -0.011634418740868568, 0.008805721066892147, 0.016258355230093002, -0.02510136552155018, -0.0022586965933442116, -0.018687518313527107, 0.039101023226976395, -0.013861152343451977, -0.011986007913947105, 0.007649736944586039, 0.044534679502248764, 0.013626759871840477, -0.0013877133606001735, 0.014308630488812923, 0.010041611269116402, 0.004410851281136274, -0.01936938986182213, 0.0022959865164011717, -0.0515664704144001, -0.016258355230093002, 0.04785880073904991, 0.011730306781828403, -0.03839784488081932, 0.03360344097018242, 0.032410167157649994, -0.017526207491755486, 0.006712164729833603, 0.04182850569486618, 0.04061392322182655, -0.011325445957481861, -0.025570150464773178, -0.005779919680207968, 0.011368063278496265, 0.005545526742935181, 0.01202862523496151, -0.003246876411139965, 0.006547024007886648, -0.04221205785870552, 0.055231526494026184, -0.014138163067400455, 0.015714988112449646, 0.0281697828322649, 0.005215245299041271, -0.011059090495109558, -0.0047411322593688965, -0.002531711244955659, -0.0068666511215269566, 0.02367369830608368, -0.021819861605763435, 0.03198399767279625, -0.025442300364375114, 0.004874309990555048, 0.013882461003959179, 0.007729643490165472, 0.01863424852490425, -0.0017193263629451394, 0.01870882697403431, 0.029192589223384857, -0.034519702196121216, 0.0011433319887146354, 0.00701581034809351, 0.01260395348072052, -0.03648008406162262, -0.00016680528642609715, -0.04849805310368538, -0.01832527481019497, 0.004322953522205353, -0.011101706884801388, -0.03790774941444397, 0.015544520691037178, 0.02998100221157074, 0.023460613563656807, -0.002951221540570259, -0.019891446456313133, 0.016300970688462257, -0.027189593762159348, 0.03351820632815361, 0.028766419738531113, -0.015587138012051582, -0.004687861073762178, 0.0017859152285382152, 0.009535535238683224, -0.04325617104768753, -0.04018775373697281, 0.05165170505642891, 0.033859141170978546, -0.03415745869278908, 0.0391436405479908, -0.03592606261372566, -0.019710324704647064, 0.003065754659473896, 0.016567327082157135, 0.025165289640426636, 0.02989576756954193, -0.01605592481791973, -0.014574985951185226, -0.03083334118127823, 0.0381634496152401, -0.03812083229422569, 0.010521051473915577, -0.02729613706469536, 0.026017628610134125, 0.016940224915742874, -0.01556582935154438, 0.008986842818558216, -0.011794231832027435, 0.001602129777893424, 0.03541465848684311, -0.01208189595490694, -0.023077061399817467, 0.011922082863748074, 0.06822969019412994, 0.019539857283234596, 0.04248906672000885, 0.02531445026397705, -0.03477540612220764, -0.0262733306735754, -0.021265842020511627, 0.03754550591111183, -0.07406820356845856, -0.034711480140686035, -0.011368063278496265, 0.006642912048846483, -0.01870882697403431, 0.03946326673030853, 0.026486415416002274, 0.0014969193143770099, 0.03162175416946411, 0.002881969092413783, 0.02367369830608368, -0.014873304404318333, 0.02032827027142048, -0.008832355961203575, -0.015288819558918476, -0.0067174918949604034, -0.0053031425923109055, -0.02032827027142048, -0.007916092872619629, -0.02663557417690754, 0.0011999326525256038, 0.01842116378247738, -0.04423636198043823, -0.003366736462339759, -0.026038937270641327, -0.0023758932948112488, 0.024866972118616104, -0.02463257871568203, -0.05463488772511482, 0.0477309487760067, 0.00792142003774643, 0.0553593784570694, 0.0034146804828196764, -0.0014263349585235119, -0.016471438109874725, -0.030492404475808144, 0.015555175021290779, 0.017249198630452156, -0.0069945016875863075, 0.006152817513793707, 0.008768430911004543, -0.040059901773929596, -0.0036544008180499077, 0.029341747984290123, -0.027466604486107826, -0.005071413237601519, -0.04542963579297066, 0.009365067817270756, 0.006999828852713108, 0.02424902655184269, 0.008134504780173302, -0.015693679451942444, 0.03044978901743889, 0.008182448334991932, -0.023034444078803062, 0.005497582256793976, 0.0167164858430624, -0.0200406052172184, 0.004860992077738047, 0.030790723860263824, 0.0010680864797905087, 0.0012864982709288597, 0.031557828187942505, -0.04802926629781723, -0.010206751525402069, 0.03238885849714279, -0.022032946348190308, -0.02216079831123352, -0.019880792126059532, -0.033454280346632004, 0.019997989758849144, 0.000878973922226578, -0.09818938374519348, 0.014148817397654057, -0.004501412156969309, 0.0013264515437185764, 0.018293311819434166, -0.015619101002812386, -0.011559839360415936, 0.0021188599057495594, -0.010382547043263912, -0.008869646117091179, 0.035670362412929535, -0.029384365305304527, -0.006621603854000568, 0.01642882265150547, -0.05621171370148659, 0.0027993987314403057, -0.037204571068286896, -0.003926083445549011, -0.04270215332508087, 0.014745453372597694, -0.020211074501276016, 0.0038008964620530605, -0.017121346667408943, 0.006008985452353954, -0.0009595465380698442, 0.007884129881858826, -0.011154978536069393, 0.002142831915989518, 0.03867485374212265, 0.038333918899297714, -0.014170125126838684, -0.01423405110836029, 0.010707500390708447, -0.035840827971696854, 0.0439380444586277, -0.013200590386986732, -0.02885165438055992, -0.01552321296185255, 0.0021281824447214603, -0.029640067368745804, -0.02885165438055992, -0.010776753537356853, 0.022885285317897797, -0.025612767785787582, -0.010643575340509415, -0.011410679668188095, 0.019987335428595543, 0.02158547006547451, 0.020008644089102745, 0.025420991703867912, -0.0467933751642704, 0.005977022927254438, 0.030108852311968803, 0.012390868738293648, 0.04819973558187485, 0.014212742447853088, -0.012699841521680355, -0.04496084898710251, 0.0133710578083992, -0.034604936838150024, -0.023055752739310265, 0.00998301338404417, -0.015267510898411274, 0.022224722430109978, 0.022650891914963722, 0.004903609398752451, -0.04611150547862053, -0.00849674828350544, -0.011932737194001675, 0.003939401358366013, 0.018559668213129044, 0.005790574010461569, 0.038525693118572235, 0.01776060089468956, 0.004693188238888979, -0.014383209869265556, 0.01795237697660923, -0.03669316694140434, -0.018549013882875443, -0.009274506941437721, -0.03230362385511398, 0.09989405423402786, 0.001418344327248633, 0.029576141387224197, -0.010984511114656925, -0.025612767785787582, -0.027828847989439964, -0.007196932099759579, 0.037588123232126236, -0.05135338753461838, -0.009956377558410168, 0.007607120089232922, -0.03264455869793892, -0.028766419738531113, 0.0028766419272869825, 0.014212742447853088, -0.0032362223137170076, -0.07057362049818039, 0.01965705305337906, -0.013754610903561115, -0.002682202262803912, -0.03134474530816078, -0.008752449415624142, -0.01567237265408039, -0.03196268901228905, -0.011900774203240871, -0.036245688796043396, 0.03505241498351097, 0.009013478644192219, -0.00648842565715313, -0.020669205114245415, 0.012667879462242126, 0.04917992278933525, 0.013711993582546711, 0.030194086953997612, 0.042425140738487244, -0.03865354508161545, 0.03869616240262985, -0.00033410999458283186, 0.0195718202739954, 0.028979504480957985, 0.04261691868305206, -0.00874179508537054, 0.06477771699428558, 0.018410509452223778, -0.022288648411631584, -0.013903769664466381, -0.04020906239748001, 0.00946095585823059, 0.0081185232847929, 0.023716315627098083, 0.005763938184827566, 0.04534440115094185, -0.0029272495303303003, 0.01423405110836029, 0.03332643210887909, -0.0035292136017233133, 0.008422168903052807, -0.0039713638834655285, 0.023439304903149605, 0.0035585127770900726, 0.022608274593949318, 0.011197594925761223, 0.032324932515621185, -0.014883958734571934, 0.021883787587285042, -0.005875807721167803, -0.019539857283234596, -0.008635252714157104, 0.018410509452223778, 0.02646510675549507, -0.018740789964795113, 0.017611442133784294, -0.005151320248842239, -0.008416841737926006, 0.014724145643413067, 0.017259851098060608, -0.01604527048766613, -0.006925249472260475, -0.009466283023357391, -0.01189011987298727, -0.006536369677633047, 0.03025801293551922, -0.012966197915375233, 0.031856145709753036, 0.0243555698543787, 0.021510889753699303, -0.002037621336057782, 0.051055070012807846, -0.002230729442089796, -0.0012725145788863301, -0.015448632650077343, -0.029874460771679878, 0.0005440316163003445, 0.014766762033104897, -0.004410851281136274, -0.04080570116639137, -0.023567156866192818, 0.001594139146618545, 0.010014975443482399, -0.028127165511250496, 0.03782251477241516, -0.013445638120174408, 0.0022680191323161125, -0.009679367765784264, -0.022757435217499733, 0.016194429248571396, -0.030108852311968803, -0.013680030591785908, 0.01585349440574646, -0.018261348828673363, -0.010531705804169178, 0.021265842020511627, -0.005865153390914202, 0.013914423994719982, -0.022650891914963722, -0.0007657727692276239, -0.016599290072917938, -0.010057592764496803, -0.02127649635076523, 0.007063754368573427, 0.021819861605763435, -0.01766471192240715, 0.011421333998441696, -0.017504898831248283, -0.03125951066613197, 0.03209054097533226, -0.01747293584048748, -0.013083393685519695, 0.005508236587047577, 0.019134996458888054, 0.011133669875562191, -0.012849001213908195, 0.01523554790765047, -0.027828847989439964, -0.024611270055174828, -0.004661225248128176, -0.03611783683300018, 0.03121689334511757, -0.003939401358366013, 0.018101535737514496, -0.003534540766850114, -0.013115356676280499, -0.012731804512441158, 0.004594636615365744, -0.024483419954776764, 0.010350584052503109, 0.016737794503569603, -0.03620307147502899, 0.012593299150466919, 0.010126844979822636, 0.007607120089232922, 0.0041737942956388, -0.04461991414427757, -0.019625090062618256, 0.011431988328695297, -0.026315947994589806, 0.011868812143802643, 0.007196932099759579, -0.00853936467319727, -0.04016644507646561, -0.01776060089468956, -0.005588143598288298, 0.00023988663451746106, -0.02119126357138157, -0.01987013779580593, 0.01422339677810669, -0.007905438542366028, -0.014511060900986195, 0.012912926264107227, -0.026038937270641327, -0.00960478838533163, -0.013978349044919014, -0.002786081051453948, 0.001227234024554491, -0.036522697657346725, 0.052461426705121994, 0.011037781834602356, -0.03735372796654701, -0.03200530633330345, -0.004472112748771906, 0.006120854988694191, 0.004325617104768753, -0.057234521955251694, 0.01650340110063553, 0.0077243163250386715, -0.022501733154058456, -0.001114032929763198, 0.00015298808284569532, 0.01919892244040966, 0.005891789216548204, -0.02827632613480091, 0.0055135637521743774, -0.0043922062031924725, -0.0005989674828015268, -0.010142826475203037, 0.009375722147524357, 0.07142595201730728, -0.007154315244406462, -0.018570322543382645, 0.025527535006403923, -0.013051431626081467, 0.0012831687927246094, -0.0012312293983995914, 0.030108852311968803, -0.0029006139375269413, 0.03984681889414787, 0.017163963988423347, -0.03066287375986576, 0.03302811086177826, 0.011602455750107765, 0.0009415675303898752, 0.007713662460446358, 0.004314962774515152, 0.014766762033104897, -0.020200420171022415, -0.023737624287605286, 0.050458431243896484, -0.025080056861042976, 0.004461458884179592, -0.0015129005769267678, -0.00406192522495985, 0.020775748416781425, 0.037289801985025406, 0.014820033684372902, -0.03296418488025665, 0.006285995710641146, 0.0044454773887991905, -0.008203756995499134, -0.001297152484767139, 0.0007391371764242649, 0.00618478050455451, 0.008299645036458969, 0.03458362817764282, -0.03189876303076744, -0.03741765394806862, 0.008640579879283905, 0.012774420902132988, 0.00892824400216341, -0.01774994656443596, 0.014202088117599487, -0.010515724308788776, 0.0019097706535831094, -0.012273672968149185, -0.012721150182187557, 0.010068247094750404, 0.02196902222931385, 0.023354072123765945, -0.015086389146745205, 0.0034146804828196764, -0.020189765840768814, -0.02548491768538952, -0.019454622641205788, -0.01605592481791973, -0.0033427644520998, 0.000904943619389087, -0.017643405124545097, -0.00022140820510685444, 0.022075563669204712, 0.013339095748960972, -0.0028420158196240664, -0.011357408948242664, -0.026614265516400337, 0.0243555698543787, 0.01298750564455986, 0.0011906101135537028, 0.01551255863159895, 0.026955200359225273, 0.024611270055174828, -0.001696686027571559, -0.023908091709017754, 0.014436481520533562, 0.01427666749805212, -0.03292157128453255, 0.02586846984922886, 0.04054999724030495, 0.005244544707238674, -0.001514232368208468, -0.022757435217499733, -0.03971896693110466, 0.0010214742505922914, 0.02512267418205738, 0.0014329939149320126, -0.0029006139375269413, 0.0027461277786642313, 0.029256515204906464, -0.0015208913246169686, -0.014351246878504753, 0.001088063232600689, -0.008832355961203575, 0.017632750794291496, 0.015299473889172077, -0.017781909555196762, -0.05131077021360397, -0.005460292566567659, -0.0016847000224515796, 0.016013307496905327, 0.03564905375242233, -0.00739936251193285, 0.01719592697918415, 0.0233966875821352, -0.008901609107851982, -0.03160044550895691, 0.020019296556711197, 0.03665054962038994, -0.013626759871840477, -0.029341747984290123, 0.026486415416002274, -0.007937401533126831, 0.008677870035171509, -0.0037662701215595007, -0.008832355961203575, 0.0324527844786644, 0.05757545679807663, 0.013360404409468174, -0.0029911750461906195, 0.02932043932378292, 0.03641615808010101, 0.01594938151538372, -0.0015781577676534653, 0.014926576055586338, -0.04210551455616951, -0.024121176451444626, -0.02388678304851055, 0.018836677074432373, 0.030535021796822548, 0.05416610464453697, -0.03268717601895332, -0.016258355230093002, 0.008278336375951767, -0.007463288027793169, 0.053612083196640015, -0.0343492366373539, 0.004328280687332153, 0.015885455533862114, -0.00482103880494833, -0.06098480895161629, 0.005247208289802074, -0.010057592764496803, 0.018666209653019905, 0.0010740795405581594, 0.027807539328932762, -0.03390175849199295, -0.02061593346297741, -0.029363056644797325, 0.018495742231607437, -0.0037609429564327, 0.021063411608338356, -0.06354182213544846, -0.02176659181714058, -0.01551255863159895, 0.014106200076639652, -0.01202862523496151, 0.017259851098060608, -0.02320491150021553, 0.011527876369655132, -0.04658029228448868, -0.007053100038319826, 0.005710666999220848, 0.0014782743528485298, -0.01910303346812725, -0.047986648976802826, 0.019806213676929474, -0.021223224699497223, -0.03230362385511398, 0.009759274311363697, -0.005148656666278839, -0.03754550591111183, -0.030236704275012016, -0.00035025778925046325, 0.020690513774752617, 0.005383049603551626, -0.003699681255966425, 0.006547024007886648, 0.016780411824584007, 0.04432159662246704, 0.01586414873600006, -0.014564331620931625, 0.007292820140719414, 0.018080227077007294, -0.013072739355266094, 0.009769928641617298, -0.04278738796710968, 0.007271511945873499, 0.00868852436542511, 0.009306469932198524, 0.014479097910225391, -0.04357580095529556, 0.024227717891335487, 0.032516710460186005, 0.004956880118697882, -0.017227889969944954, 0.04402327537536621, -0.009583479724824429, -0.0018671537982299924, 0.006408519111573696, 0.022650891914963722, 0.0195718202739954, 0.0062646870501339436, -0.0343918539583683, 0.022182106971740723, -0.005404357798397541, -0.011176287196576595, -0.02196902222931385, -0.00997235905379057, -0.006930576171725988, 0.027551837265491486, -0.045898422598838806, -0.014777416363358498, 0.026720808818936348, -0.009034786373376846, -0.01717461831867695, 0.005678704474121332, -0.013445638120174408, 0.005779919680207968, 0.023609772324562073, 0.005833190865814686, 0.020775748416781425, -0.006035621277987957, 0.0063925376161932945, 0.004485430661588907, 0.011218903586268425, -0.007340764161199331, 0.037673354148864746, 0.014564331620931625, -0.009333104826509953, 0.04338402301073074, 0.027914080768823624, 0.04067784920334816, -0.00893357116729021, -0.0044880942441523075, -0.03170698881149292, 0.010446472093462944, -0.03392306715250015, -0.010680865496397018, 0.01446844357997179, 0.0069838473573327065, -0.012294980697333813, -0.0042670187540352345, -0.0016127839917317033, -0.0021015468519181013, -0.020701168105006218, 0.009668713435530663, -0.016865644603967667, 0.03956981003284454, -0.036437466740608215, 0.05710666999220848, -0.015928072854876518, -0.014788070693612099, -0.0032948204316198826, 0.003931410610675812, -0.022459115833044052, -0.01364806853234768, -0.009082730859518051, -0.03486064076423645, 0.020978178828954697, -0.03658662363886833, 0.025143982842564583, -0.02034957893192768, -0.030492404475808144, 0.05339900031685829, 0.02196902222931385, 0.014521715231239796, -0.03731111064553261, 0.01585349440574646, 0.017036113888025284, 0.027807539328932762, 0.015991998836398125, 0.0381634496152401, -0.036522697657346725, 0.013594796881079674, -0.04555748775601387, 0.051140300929546356, -0.03684232756495476, 0.0020416167099028826, -0.03017277829349041, 0.014915921725332737, -0.020669205114245415, -0.03888793662190437, 0.030535021796822548, -0.0031669698655605316, 0.0038541676476597786, -0.005646741483360529, -0.0024145147763192654, 0.01202862523496151, 0.009008151479065418, 0.015427324920892715, -0.019731633365154266, -0.0005716659943573177, 0.020775748416781425, -0.01719592697918415, -0.020967524498701096, -0.016013307496905327, -0.017515553161501884, -0.001026801415719092, -0.0011939395917579532, -0.004839683882892132, 0.04327747970819473, 0.007234221789985895, 0.011708998121321201, 0.027764922007918358, -0.0019284156151115894, 0.020189765840768814, 0.006456463132053614, -0.005476274061948061, 0.045514870434999466, -0.02712566778063774, -0.025825852528214455, -0.0041924393735826015, -0.015342090278863907, 0.009807218797504902, -0.011900774203240871, 0.02684865891933441, -0.026592956855893135, -0.004229729063808918, -0.05267450958490372, -0.010595631785690784, 0.005620106123387814, -0.0024824354331940413, 0.00649375282227993, 0.01069684699177742, 0.020466774702072144, 0.0010221401462331414, -0.020860981196165085, -0.0069838473573327065, -0.03697017580270767, -0.017238544300198555, 0.016769757494330406, 0.007495250552892685, -0.033475589007139206, -0.056595269590616226, 0.020488083362579346, -0.033667366951704025, 0.001844513462856412, 0.028574643656611443, 0.015022464096546173, -0.00084434769814834, 0.02320491150021553, -0.0014929239405319095, -0.0005703342030756176, 0.06571529060602188, -0.01364806853234768, 0.014670873992145061, 0.00982852652668953, 0.00676010875031352, -0.02054135501384735, -0.029363056644797325, 0.028233708813786507, 0.004517393186688423, 0.015448632650077343, -0.009668713435530663, -0.004757113754749298, 0.020562663674354553, -0.008416841737926006, -0.015054426155984402, -0.007298147305846214, 0.010041611269116402, 0.005225899629294872, 0.011549185030162334, -0.01574695110321045, -0.007948054932057858, 0.016162466257810593, 0.013307132758200169, -0.018676863983273506, -0.011005818843841553, -0.02608155459165573, -0.01920957677066326, 0.019348081201314926, -0.007239548955112696, -0.01976359635591507, -0.0005686695221811533, -0.019241537898778915, -0.014479097910225391, -0.015832185745239258, 0.01757947914302349, -0.01533143687993288, -0.024781737476587296, -0.01737704873085022, 0.01236956100910902, -0.0013617437798529863, -0.034818023443222046, -0.0071756234392523766, -0.03895186260342598, 0.011623764410614967, 0.017494244500994682, 0.006259359885007143, -0.0014995827805250883, -0.040720466524362564, 0.008395533077418804, -0.024462111294269562, 0.05501844361424446, 0.029661376029253006, -0.015278165228664875, -0.00983918085694313, 0.014958538115024567, 0.002526384312659502, 0.006845342461019754, -0.010622266680002213, -0.01594938151538372, -0.053526848554611206, 0.01445778924971819, -0.0057479566894471645, 0.006019639782607555, 0.01900714635848999, 0.011378717608749866, 0.005454965401440859, 0.008725814521312714, -0.0022959865164011717, 0.005891789216548204, -0.025719311088323593, -0.011400025337934494, -0.010686192661523819, -0.002583650639280677, 0.010291986167430878, 0.016450131312012672, 0.041977666318416595, -0.033177271485328674, 0.006461790297180414, -0.007069081533700228, 0.026699500158429146, -0.043405331671237946, -0.008981515653431416, 0.02789277397096157, 0.03803560137748718, 0.012966197915375233, -0.0023985335137695074, 0.012774420902132988, 0.00702113751322031, 0.013584142550826073, 0.016290316358208656, 0.022757435217499733, -0.013062085956335068, -0.020775748416781425, -0.04018775373697281, -0.001114032929763198, 0.009514227509498596, -0.004285663831979036, 0.020754439756274223, -0.03711933642625809, 0.02416379190981388, 0.019699670374393463, -0.0031722967978566885, -0.012348252348601818, 0.022032946348190308, -0.010984511114656925, 0.02665688283741474, -0.0046265991404652596, -0.0012332270853221416, 0.020552009344100952, -0.03486064076423645, -0.03462624549865723, -0.02693389169871807, 0.020882289856672287, -0.004386879038065672, -0.019230883568525314, -0.017973685637116432, 0.028787728399038315, -0.026379872113466263, 0.0012032620143145323, -0.013232553377747536, 0.02949090674519539, 0.006594968028366566, 0.039974670857191086, 0.002056266414001584, -0.02254435047507286, 0.016098540276288986, 0.008800393901765347, 0.04542963579297066, 0.002905941102653742, -0.016279662027955055, -0.000810387369710952, -0.0017393029993399978, -0.0010154813062399626, -0.013743956573307514, -0.006195434369146824, 0.006989174522459507, -0.030044928193092346, 0.05766069144010544, 0.025271832942962646, -0.04756047949194908, 0.047901418060064316, -0.01217778492718935, 0.028318941593170166, -0.005502909421920776, -0.035840827971696854, -0.01728115975856781, 0.014553677290678024, -0.026614265516400337, -0.01784583553671837, 0.015597792342305183, -0.010963202454149723, 0.018687518313527107, -0.01112301554530859, 0.004165804013609886, 0.008512729778885841, 0.01073946338146925, 0.02168135717511177, -0.04952085763216019, -0.011133669875562191, -0.0419989749789238, -0.024398185312747955, -0.002169467508792877, 0.0035025780089199543, 0.020019296556711197, -0.01615181192755699, 0.011037781834602356, -0.002663557417690754, 0.00444015022367239, -0.0029911750461906195, -0.017025459557771683, -0.005518890917301178, 0.020317615941166878, 0.017781909555196762, 0.02608155459165573, 0.015459286980330944, -0.0133710578083992, 0.01880471594631672, 0.0014636247651651502, -0.03209054097533226, -0.01055301446467638, 0.04623935744166374, 0.02701912634074688, -0.01786714233458042, -0.011964700184762478, -0.010371892713010311, 0.0033986992202699184, 0.02444080263376236, -0.004754450172185898, 0.022501733154058456, 0.011527876369655132, -0.012348252348601818, -0.004464122001081705, -0.00470117898657918, 0.010489089414477348, 0.00045213886187411845, -0.02827632613480091, 0.005066086072474718, 0.0024864308070391417, 0.010489089414477348, -0.027828847989439964, -0.016876298934221268, -0.014958538115024567, -0.001602129777893424, -0.012199092656373978, 0.001550190383568406, -0.01584284007549286, 0.012721150182187557, 0.02949090674519539, 0.002343930536881089, 0.022778743878006935, -0.0035212228540331125, -0.034221384674310684, 0.020200420171022415, 0.03686363622546196, -0.014020966365933418, 0.0024251691065728664, 0.0008083896827884018, 0.004472112748771906, -0.0267421156167984, -0.028489410877227783, -0.0133710578083992, 0.014979846775531769, 0.047517865896224976, -0.0003858828858938068, -0.01022273302078247, 0.030982499942183495, -0.02704043500125408, 0.010952548123896122, 0.018847331404685974, 0.02138303965330124, 0.0114639513194561, 0.0081238504499197, -0.011400025337934494, -0.05271712690591812, -0.03445577993988991, -0.020083222538232803, -0.012294980697333813, -0.0008150485809892416, 0.005790574010461569, -0.008677870035171509, -0.003806223627179861, 0.023716315627098083, 0.03211184963583946, 0.009290488436818123, 0.008789739571511745, 0.0019963362719863653, -0.03675709292292595, -0.023716315627098083, -0.022693509235978127, -0.03326250612735748, -0.01871948130428791, 0.02311967872083187, -0.026912584900856018, -0.011442642658948898, -0.03177091106772423, 0.03562774509191513, 0.0034786059986799955, 0.015299473889172077, 0.013680030591785908, -0.04419374465942383, 0.023524539545178413, -0.03268717601895332, 0.017249198630452156, 0.03782251477241516, 0.011421333998441696, 0.021905096247792244, -0.0025623422116041183, 0.0195718202739954, 0.00793207436800003, 0.0012025961186736822, -0.023354072123765945, 0.008033289574086666, 0.02367369830608368, -0.029384365305304527, -0.03829130157828331, -0.006275341380387545, 0.037375036627054214, 0.028382867574691772, 0.022863976657390594, 0.009812545031309128, -0.0027234875597059727, -0.014244705438613892, -0.0037742608692497015, 0.04538701847195625, -0.014372555539011955, -0.0018498406279832125, 0.003212250303477049, 0.01518227718770504, -0.010606285184621811, -0.006610949523746967, 0.0011626428458839655, -0.02348192222416401, -0.0027261509094387293, -0.005529545247554779, 0.014564331620931625, 0.005039450712502003, -0.00907740369439125, 0.003947392106056213, 0.025761926546692848, -0.0419989749789238, 0.05851303040981293, -0.009050767868757248, 0.0243555698543787, -0.013264515437185764, 6.359242979669943e-05, 0.005388376768678427, 0.02053070068359375, 0.02932043932378292, 0.038824014365673065, -0.006381883751600981, -0.028510717675089836, 0.04089093208312988, -0.02740267850458622, -0.001967037096619606, -0.008379551582038403, 0.04538701847195625, -0.008432822301983833, -0.016737794503569603, -0.025548841804265976, 0.045301783829927444, 0.010057592764496803, 0.026763424277305603, -0.0008949553011916578, 0.019731633365154266, 0.015054426155984402, -0.01995537243783474, -0.002619608771055937, -0.035862136632204056, -0.02224603109061718, 0.018953874707221985, -0.003960710018873215, -0.03017277829349041, 0.009737965650856495, -0.001130680087953806, 0.05403825268149376, -0.015800222754478455, -0.04061392322182655, -0.01784583553671837, 0.0046026273630559444, -0.025357065722346306, -0.010270677506923676, 0.020562663674354553, -0.008960206992924213, -0.020765094086527824, 0.012422831729054451, 0.024419493973255157, -0.012454794719815254, -0.012593299150466919, -0.014489752240478992, -0.028191091492772102, -0.005891789216548204, 0.02806324139237404, 0.009860489517450333, -0.014308630488812923, -0.013104702346026897, -0.012806383892893791, -0.007005156017839909, 0.00850740261375904, -0.007580484263598919, 0.011016473174095154, 0.004280336666852236, -0.00946095585823059, -0.009993667714297771, 0.008827028796076775, 0.03942064940929413, -0.05450703948736191, -0.01427666749805212, -0.0066855289041996, 0.021702665835618973, 0.05220572650432587, 0.022949211299419403, -0.02614547871053219, -0.01427666749805212, -0.012689187191426754, -0.002672879956662655, 0.007687026634812355, -0.005993003956973553, -0.022800050675868988, -0.047603096812963486, 0.02033892460167408, -0.011570493690669537, 0.025037439540028572, 0.016194429248571396, -0.03807821497321129, 0.02013649418950081, -0.044151127338409424, 0.02872380241751671, 8.914593490771949e-05, 0.023140987381339073], [0.01361947413533926, 0.012567424215376377, 0.045352503657341, 0.028794152662158012, -0.04233357682824135, 0.00038165401201695204, -0.0407555028796196, 0.032682161778211594, -0.013756697997450829, 0.01682136580348015, -0.040046513080596924, 0.04935486987233162, 0.02996055595576763, 0.009382685646414757, -0.018742499873042107, 0.0006510989041998982, 0.04894319549202919, 0.011766950599849224, -0.04432332515716553, 0.0015366219449788332, 0.04130439832806587, 0.03156150132417679, -0.03453468531370163, -0.052373796701431274, -0.03309383615851402, 0.00509443785995245, 0.03487774729728699, 0.0011185178300365806, 0.03114982880651951, 0.00948560331016779, 0.02650708705186844, -0.03512932360172272, 0.023991314694285393, 0.01962302066385746, -0.029091469943523407, -0.018490923568606377, -0.0062265354208648205, 0.0020454940386116505, 0.012338717468082905, -0.03055519238114357, 0.030578063800930977, 0.02311079390347004, 0.03236197307705879, -0.055941615253686905, -0.028931375592947006, 0.06957252323627472, -0.03236197307705879, -0.056856442242860794, 0.015391949564218521, -0.018010638654232025, -0.012475941330194473, 0.04164746031165123, -0.013470814563333988, -0.08892109990119934, -0.028954247012734413, -0.02524919994175434, 0.002681584097445011, -0.021967262029647827, 0.03533515706658363, -0.042264968156814575, -0.025134848430752754, -0.014305593445897102, 0.01830795779824257, -0.021658508107066154, 0.039223168045282364, 0.019828855991363525, 0.04857726767659187, 0.016912847757339478, -0.061064641922712326, -0.023202277719974518, 0.0009820086415857077, 0.014008275233209133, 0.022150227800011635, -0.0220358744263649, 0.01895977184176445, -0.0034363155718892813, -0.056581996381282806, 0.0259124506264925, 0.0473879911005497, 0.004085270222276449, -0.02954888343811035, 0.06408356875181198, -0.007118490524590015, 0.0013679509283974767, -0.00457413075491786, 0.01714155450463295, -0.06092742085456848, -0.009056778624653816, 0.03201891481876373, 0.02369399555027485, 0.008719436824321747, 0.02036631666123867, -0.00927976705133915, 0.014774441719055176, -0.008833789266645908, -0.025569390505552292, 0.008965295739471912, -0.03828547149896622, 0.037553612142801285, 0.01945148967206478, -0.014225546270608902, -0.039383262395858765, -0.01267034187912941, 0.03798815608024597, -0.013425073586404324, -0.054020483046770096, -0.00034002229222096503, 0.027696359902620316, 0.042699508368968964, -0.006289429496973753, 0.04054966941475868, -0.055026791989803314, -0.01121805515140295, 0.03650156036019325, -0.019497230648994446, -0.027604877948760986, -0.04176181182265282, -0.02996055595576763, 0.010903583839535713, -0.00997160468250513, 0.007192820310592651, 0.005877757910639048, 0.00038093930925242603, -0.03336828202009201, 0.026529956609010696, 0.005348873790353537, 0.014934536069631577, 0.055255498737096786, -0.04670187458395958, -0.05447789654135704, 0.015540608204901218, -0.035815443843603134, 0.029526012018322945, -0.023831220343708992, 0.012807565741240978, -0.03442033380270004, -0.03405440226197243, -0.028999987989664078, 0.018731065094470978, -0.008439270779490471, 0.02733043022453785, -0.009680003859102726, 0.004605577792972326, 0.002297071274369955, -0.07263719290494919, -0.027467655017971992, -0.030761027708649635, 0.02929730713367462, 0.014042580500245094, -0.0025014777202159166, 0.01325354352593422, -0.0008219141163863242, -0.04830281808972359, -0.021098177880048752, -0.00495149614289403, -0.017038635909557343, 0.02369399555027485, 0.06133909150958061, 0.0038336932193487883, -0.005263109225779772, -0.00451123621314764, 0.005703369155526161, -0.013024836778640747, -0.0005456794751808047, 0.06312300264835358, -0.025020495057106018, 0.025043364614248276, 0.03501496836543083, -0.03732490539550781, -0.0010827825171872973, -0.023716866970062256, -0.006432371214032173, -0.0014094039797782898, -0.00449122441932559, -0.07853782176971436, -0.03538089990615845, 0.019165607169270515, 0.030669545754790306, 0.003785093082115054, -0.027970807626843452, 0.01109798438847065, 0.052968431264162064, 0.003928034566342831, -0.013848179951310158, 0.030989734455943108, 0.04697632044553757, -0.03121844120323658, -0.00045526892063207924, -0.00935981422662735, 0.009965887293219566, 0.017427437007427216, -0.03881149739027023, 0.018285086378455162, 0.054294928908348083, -0.007084184791892767, 0.013802438974380493, -0.024814657866954803, -0.01861671172082424, 0.020983824506402016, -0.00944557972252369, 0.06746842712163925, -0.029594624415040016, 0.020320575684309006, 0.0038193990476429462, -0.05681070312857628, 0.01631821133196354, 0.005651910323649645, -0.01723303645849228, 0.0287484098225832, 0.0008798054186627269, 0.03883436694741249, -0.03483200445771217, -0.04949209466576576, 0.027856456115841866, 0.010629136115312576, 0.0012750389287248254, 0.042516544461250305, 0.015952279791235924, 0.04073263332247734, 0.00969143956899643, -0.04032096266746521, 0.006340888328850269, -0.04336275905370712, -0.029914813116192818, -0.04183042421936989, -0.015506302937865257, -0.03263642266392708, -0.042608026415109634, -0.032339103519916534, -0.02186434343457222, -0.03972632437944412, -0.011040807701647282, 0.018525227904319763, -0.059326473623514175, -0.010183158330619335, 0.02244754508137703, 0.007970422506332397, -0.06536432355642319, -0.001508033717982471, 0.047891147434711456, 0.02335093729197979, -0.032179009169340134, 0.01077207736670971, 0.0011328120017424226, -0.015540608204901218, -0.058182939887046814, -0.005889193154871464, 0.03055519238114357, 0.04903468117117882, -0.0020111880730837584, 0.03810250759124756, 0.029182953760027885, 0.024448728188872337, -0.022710558027029037, 0.012967660091817379, 0.04009225592017174, -0.024082796648144722, -0.017781931906938553, 0.00674684252589941, -0.020652199164032936, -0.0023485301062464714, 0.005586157087236643, -0.020926646888256073, -0.03238484263420105, -0.06111038476228714, -0.059006284922361374, 0.009422709234058857, -0.01870819367468357, 0.03361985832452774, 0.09376967698335648, 0.0023985598236322403, 0.06261985003948212, -0.002924584783613682, -0.04564982280135155, -0.08933276683092117, 0.04761669784784317, -0.0143742049112916, 0.006129335146397352, 0.010943607427179813, -0.012658906169235706, -0.016626965254545212, 0.0205378457903862, 0.00807334017008543, -0.05324288085103035, -0.017095813527703285, 0.039543360471725464, 0.005600451026111841, 0.021418366581201553, 0.03778231889009476, 0.03876575827598572, 0.07103624939918518, -0.0015980869065970182, 0.015208983793854713, 0.021315447986125946, 0.03185882046818733, 0.01690141297876835, 0.011755515821278095, 0.013390767388045788, -0.018776806071400642, -0.017701884731650352, -0.002177000278607011, 0.005912063643336296, -0.015346207655966282, -0.07917819917201996, -0.043934524059295654, -0.00457413075491786, -0.004070976283401251, -0.014877359382808208, 0.0034477508161216974, -0.0036107043270021677, -0.047982629388570786, 0.026369862258434296, -0.08059617877006531, -0.06138483062386513, 0.014477123506367207, -0.008016163483262062, 0.0221959687769413, -0.016626965254545212, 0.045672692358493805, 0.022481851279735565, -0.010611983016133308, -0.025157717987895012, -0.018570970743894577, 0.009165413677692413, -0.01196135114878416, -0.025157717987895012, -0.00021423368889372796, 0.04564982280135155, 0.04048105701804161, 0.051550451666116714, -0.03670739755034447, -0.04073263332247734, -0.004191047046333551, 0.02128114178776741, -0.018925465643405914, -0.0010098823113366961, -0.04571843519806862, -0.010446170344948769, -0.015780750662088394, -0.0035563865676522255, 0.011789822019636631, -0.01377956848591566, 0.028542574495077133, -0.00878233090043068, -0.011120854876935482, 0.008056187070906162, 0.01779336854815483, 0.026621440425515175, -0.008176258765161037, 0.023579644039273262, -0.02600393258035183, 0.017095813527703285, 0.013836745172739029, 0.0042196353897452354, -0.07634223997592926, 0.003642151365056634, 0.04382017254829407, 0.027696359902620316, 0.0060206991620361805, 0.015369079075753689, 0.004928625654429197, 0.027284689247608185, 0.009960168972611427, 0.00803331658244133, 0.050727106630802155, -0.00787322223186493, -0.047067802399396896, -0.033253930509090424, -0.0010556235210970044, -0.004611295182257891, 0.010886430740356445, 0.012098575010895729, 0.011212337762117386, -0.028451092541217804, 0.03430597856640816, -0.0008254876011051238, -0.00371648115105927, 0.028954247012734413, 0.01237302366644144, 0.011778386309742928, 0.025866707786917686, -0.006157923489809036, -0.017496049404144287, 0.008530753664672375, -0.0010263205040246248, 0.006804019212722778, -0.018936900421977043, -0.03583831340074539, 0.04606149345636368, 0.004585565999150276, 0.0184794869273901, -0.0038308342918753624, -0.024723175913095474, 0.06138483062386513, -0.02088090591132641, -0.012258670292794704, 0.022504722699522972, -0.00517734419554472, 0.007404373958706856, 0.008713718503713608, -0.02625550888478756, -0.023385243490338326, 0.006718254182487726, 0.00380796380341053, -0.026598569005727768, 0.0379195436835289, 0.016169551759958267, 0.04587852954864502, -0.010223181918263435, -0.00523737957701087, 0.001851093489676714, -0.027879325672984123, 0.019828855991363525, 0.024197150021791458, 0.003233338473364711, 0.01830795779824257, -0.016695575788617134, 0.012430199421942234, -0.02451734058558941, -0.0013122037053108215, -0.006964114028960466, 0.03677600994706154, -0.04473499581217766, 0.0515047088265419, -0.05333436280488968, 0.0014515717048197985, -0.00017224460316356272, 0.019325701519846916, -0.017907721921801567, 0.03483200445771217, 0.025203458964824677, 0.021555589511990547, -0.043934524059295654, 0.06358041614294052, -0.04985802248120308, 0.009542779996991158, -0.01531190238893032, 0.03462616726756096, -0.004093846771866083, -0.03190455958247185, 0.01730164885520935, -0.003747928189113736, 0.04247080162167549, -0.030189262703061104, -0.020251963287591934, -0.009439862333238125, -0.014534300193190575, 0.06943529844284058, 0.04903468117117882, 0.0222760159522295, 0.026598569005727768, -0.0042196353897452354, -0.03828547149896622, -0.02220740355551243, -0.0060206991620361805, -0.055026791989803314, -0.01605519838631153, -0.026529956609010696, 0.02799367904663086, -0.021818602457642555, 0.012201493605971336, -0.003247632645070553, 0.040023643523454666, 0.017907721921801567, 0.021589895710349083, -0.015346207655966282, 0.03096686489880085, 0.035723958164453506, -0.010640570893883705, -0.02277917042374611, 0.03156150132417679, 0.002891708165407181, -0.02790219709277153, 0.00878233090043068, -0.0005824869149364531, -0.006014981772750616, 0.025111977010965347, -0.05397474020719528, 0.0032276208512485027, -0.04233357682824135, 0.004156741313636303, 0.007787457201629877, -0.06111038476228714, -0.034488946199417114, 0.040046513080596924, 0.0017810520948842168, 0.024814657866954803, 0.02110961265861988, -0.02451734058558941, -0.01723303645849228, -0.013905356638133526, -0.0020769410766661167, 0.002581524895504117, -0.009199719876050949, -0.00513446144759655, -0.0005281691555865109, -0.03748499974608421, -0.0224361103028059, 0.03993216156959534, -0.004622730892151594, 0.004556977655738592, -0.0382397323846817, 0.0017481754766777158, 0.0304865799844265, -0.02781071327626705, 0.0031218440271914005, 0.024860398843884468, -0.00519735598936677, 0.016100939363241196, 0.0009998762980103493, 0.024654563516378403, 0.011995657347142696, -0.01598658598959446, -0.005326003301888704, 0.004891460761427879, -0.0031904561910778284, -0.0027659195475280285, 0.022824911400675774, -0.05045266076922417, -0.0036164219491183758, 0.027879325672984123, -0.008170540444552898, -0.0339629203081131, 0.0002549720520619303, -0.03798815608024597, 0.03583831340074539, 0.011869869194924831, -0.06655360013246536, 0.008233435451984406, 0.004679907113313675, 0.011103701777756214, -0.008473576977849007, -0.04233357682824135, 0.026186898350715637, 0.014454253017902374, 0.0006753989728167653, -0.01295622531324625, 0.0241742804646492, -0.029343048110604286, -0.040366701781749725, 0.029091469943523407, -0.024654563516378403, 0.016043763607740402, -0.03426023945212364, -0.01682136580348015, -0.03371134400367737, 0.009794357232749462, -0.0045140949077904224, -0.0028759846463799477, -0.008244870230555534, -0.016512611880898476, -0.019565843045711517, 0.013059142976999283, 0.013928228057920933, 0.02913721092045307, 0.06229965761303902, 0.05026969686150551, -0.057908494025468826, -0.01897120662033558, -0.019474361091852188, -0.028542574495077133, 0.03485487401485443, -0.00025461468612775207, -0.0019768821075558662, 0.002205588622018695, 0.030600933358073235, -0.0202977042645216, -0.042425062507390976, 0.001308630220592022, -0.029114341363310814, -0.02717033587396145, -0.017759062349796295, -0.001872534747235477, 0.022504722699522972, 0.013951098546385765, 0.018753934651613235, 0.048805974423885345, -0.04489509016275406, 0.009868687018752098, 0.006832607556134462, 0.021395495161414146, 0.042768120765686035, 8.375483594136313e-05, 0.00465417793020606, -0.04050392657518387, 0.009131108410656452, -0.007947552017867565, 0.005214509088546038, -0.01486592460423708, -0.004900037311017513, 0.01399683952331543, 0.014763006009161472, 0.008067622780799866, -0.05653625354170799, -0.041944775730371475, 0.0223560631275177, -0.010017345659434795, 0.024494469165802002, -0.019988950341939926, 0.03766796365380287, 0.018353698775172234, 0.0005749824922531843, -0.013527991250157356, 0.04743373394012451, -0.023831220343708992, -0.020686505362391472, -0.004831425379961729, -0.01544912625104189, 0.0751987099647522, 0.00219558272510767, 0.023419547826051712, -0.007558750919997692, -0.0005185205955058336, -0.04116717353463173, 0.00370504567399621, 0.014339899644255638, -0.04962931573390961, 0.013219237327575684, 0.012727518565952778, -0.009559933096170425, 0.009125390090048313, 0.00994301587343216, -0.030921122059226036, 0.005085861310362816, -0.04272237792611122, 0.025203458964824677, 0.01722160167992115, -0.023831220343708992, 0.014534300193190575, 0.004782825242727995, -0.01755322515964508, -0.03453468531370163, -0.023831220343708992, -0.006260841153562069, 0.03281938657164574, 0.003007490886375308, -0.04233357682824135, -0.01599802076816559, -0.009491320699453354, 0.0380796380341053, -0.002294212346896529, 0.014877359382808208, 0.0223560631275177, -0.037873800843954086, 0.0346032977104187, 0.01150393858551979, -0.003404868533834815, 0.015174678526818752, 0.03942900523543358, -0.0001504460087744519, 0.03199604153633118, 0.0068440428003668785, -0.022710558027029037, 0.002594389719888568, -0.01715298928320408, 0.01605519838631153, -0.0035478100180625916, 0.045992884784936905, 0.009382685646414757, 0.05488956719636917, -0.013653779402375221, 0.02682727575302124, 0.029594624415040016, 0.020514976233243942, -0.0015780749963596463, 0.007438679691404104, 0.04917190223932266, -0.01763327419757843, 0.00739293871447444, -0.026278380304574966, 0.015380513854324818, -0.028359608724713326, 0.002555795479565859, -0.02982333116233349, 0.02458595111966133, -0.023419547826051712, -0.00455411896109581, 0.018833981826901436, -0.02168137952685356, -0.005634757224470377, -0.01746174320578575, -0.016180986538529396, -0.016123810783028603, 0.01043473556637764, -0.01796489767730236, -0.012498811818659306, 0.007152796722948551, -0.006037852261215448, -0.00439116545021534, 0.04349998012185097, 0.00025050510885193944, 0.03908594697713852, 0.0225962046533823, -0.0015494867693632841, -0.03700471669435501, 0.0012350152246654034, -0.03055519238114357, -0.0057348161935806274, 0.009977322071790695, -0.049812283366918564, 2.2457463273894973e-05, 0.018250780180096626, 0.014042580500245094, -0.045329634100198746, -0.03227049112319946, 0.0306466743350029, 0.007970422506332397, 0.0004320409207139164, 0.04114430397748947, -0.0020855176262557507, -0.020972387865185738, -0.03089825250208378, 0.004631306976079941, -0.0029102906119078398, -0.014888795092701912, -0.005326003301888704, 0.033414024859666824, 0.012201493605971336, -0.005417485721409321, 0.006781148724257946, -0.013745262287557125, 0.03707332909107208, -0.019988950341939926, 0.013059142976999283, 0.009502756409347057, -0.018250780180096626, -0.02755913697183132, -0.015414820052683353, 0.010600547306239605, -0.0020297705195844173, -0.008084775879979134, 0.0016638400265946984, -0.011984222568571568, 0.01254455279558897, 0.0014129775809124112, 0.006981266662478447, -0.013322154991328716, 0.031767338514328, -0.009794357232749462, -0.011275231838226318, 0.008913837373256683, 0.003327680053189397, 0.023625385016202927, -0.006009263917803764, -0.0035106451250612736, 0.036730267107486725, 0.009085366502404213, 0.050544142723083496, 0.009039625525474548, 0.00020637190027628094, 0.026850147172808647, 0.006518136244267225, -0.044186100363731384, 0.014225546270608902, 0.018330827355384827, -0.0031847383361309767, 0.018685324117541313, 0.010263205505907536, -0.019154172390699387, 0.034740522503852844, -0.03963484242558479, -0.03403153270483017, -0.01466008834540844, -0.0002481823321431875, 0.02600393258035183, -0.01713011972606182, -0.004905755165964365, -0.018090685829520226, -0.013836745172739029, -0.030943993479013443, -0.005551850888878107, -0.007209973409771919, -0.013596602715551853, 0.026804404333233833, -0.019977515563368797, -0.011469632387161255, 0.005531839095056057, -0.03318531811237335, 0.007890375331044197, -0.012281540781259537, 0.009845815598964691, 0.017667578533291817, -0.005520403850823641, 0.009199719876050949, 0.022001568228006363, -0.040778372436761856, -0.051047299057245255, 0.012921919114887714, -0.0021326884161680937, 0.02890850603580475, -0.05219082906842232, -0.007587339263409376, 0.0019797408021986485, -0.0066439248621463776, -0.002903143409639597, 0.024082796648144722, -0.002953173127025366, -0.00819912925362587, -0.04228783771395683, 0.03352837637066841, 0.015277596190571785, 0.021235400810837746, -0.01466008834540844, 0.0612933486700058, 0.0521450899541378, -0.02226458117365837, -0.02036631666123867, -0.018365133553743362, 0.0042024822905659676, -0.012132881209254265, -0.013630908913910389, 0.021406931802630424, 0.003276220988482237, 0.04363720491528511, 0.00819912925362587, -0.04544398561120033, 0.0019497231114655733, -0.02575235441327095, -0.008507883176207542, 0.012315846979618073, 0.00852503627538681, -0.010154569521546364, -0.002967467298731208, -0.015574914403259754, 0.036890361458063126, -0.046404555439949036, -0.023385243490338326, 0.011252361349761486, -0.022721992805600166, -0.005520403850823641, 0.04606149345636368, 0.027307558804750443, -0.0065124183893203735, 0.00823915284126997, -0.017690449953079224, -0.0036335750482976437, -0.0017095813527703285, -0.009296920150518417, -0.007644515950232744, 0.012064269743859768, 0.026804404333233833, -0.009994475170969963, -0.03741638734936714, -0.0013636626536026597, -0.019348572939634323, 0.01466008834540844, -0.006403782870620489, 0.032750774174928665, -0.01795346289873123, 0.021830039098858833, -0.013585167936980724, -0.015872232615947723, 0.004885743372142315, -0.018330827355384827, 0.02129257842898369, -0.00020029688312206417, -0.004591283388435841, -0.010371841490268707, -0.01788485050201416, -0.025683743879199028, -0.017507484182715416, -0.005480380263179541, -0.0005685501382686198, 0.003384856740012765, -0.0015680690994486213, -0.008181976154446602, -0.0071871024556458, -0.01615811698138714, -0.009199719876050949, -0.048897456377744675, 0.011635445058345795, 0.010743489488959312, -0.00216413545422256, 0.010714900679886341, -0.009988757781684399, 0.00043525712681002915, -0.0221159216016531, -0.03352837637066841, -0.019508667290210724, 0.015563479624688625, -0.020640764385461807, 0.0073357620276510715, 0.05511827394366264, -0.017255907878279686, -0.00536030950024724, -0.02027483470737934, -0.03039509803056717, 0.000371648115105927, 0.0377594493329525, -7.995795021997765e-05, -0.012716082856059074, 0.0011942768469452858, 0.0238540917634964, -0.012418764643371105, -0.01911986619234085, -0.0119270458817482, 0.007884657941758633, 0.01275038905441761, -0.013059142976999283, -0.02733043022453785, -0.03778231889009476, -0.033734213560819626, -0.019165607169270515, -0.01804494485259056, 0.02096095308661461, 0.012738953344523907, 7.493265457014786e-06, 0.009537062607705593, 0.015860797837376595, -0.012121446430683136, -0.005912063643336296, 0.026301251724362373, -0.028130903840065002, -0.024791788309812546, 0.02932017669081688, 0.01105796080082655, 0.03485487401485443, 0.017095813527703285, -0.01093217171728611, 0.03295661136507988, 0.03114982880651951, -0.023716866970062256, 0.024288633838295937, 0.0187196284532547, 0.03698184713721275, -0.0024557362776249647, -0.026438474655151367, 0.012658906169235706, -0.0473879911005497, -0.02566087245941162, -0.007558750919997692, 0.031264182180166245, 0.016078069806098938, 0.05516401305794716, -0.003384856740012765, -0.01829652301967144, -0.016524046659469604, -0.006638207007199526, 0.021338319405913353, -0.01371095608919859, -0.026598569005727768, 0.024357246235013008, -0.014591476880013943, -0.03254494071006775, 0.013287849724292755, -0.007124208379536867, -0.0023656832054257393, 0.039040204137563705, 0.032659292221069336, 0.007575903553515673, 0.026598569005727768, -0.01979454979300499, 0.004331130068749189, 0.007724563125520945, 0.01105796080082655, -0.062162432819604874, -0.00038451285217888653, -0.018010638654232025, 0.0405954085290432, 0.01129810232669115, 0.02847396209836006, 0.027193205431103706, -0.016741318628191948, -0.013242107816040516, 0.02295069955289364, 0.023785479366779327, -0.003959481604397297, -0.023945573717355728, -0.008633671328425407, 0.025935320183634758, -0.01320780161768198, -0.028999987989664078, -0.004062399733811617, -0.0371190682053566, -0.04953783378005028, -0.00029035008628852665, -0.004914331715553999, 0.0121671874076128, 0.011538244783878326, -0.02228745073080063, 0.003733634017407894, 0.016215292736887932, 0.00048207049258053303, -0.007970422506332397, -0.0007968993159011006, 0.008027599193155766, 0.02292782999575138, -0.009005319327116013, 0.007793175056576729, -0.003693610429763794, 0.028428221121430397, -0.001458004117012024, 0.0120871402323246, 0.03650156036019325, -0.025866707786917686, 0.02749052457511425, 0.02774210274219513, 0.012704648077487946, 0.01237302366644144, 0.014328463934361935, 0.011869869194924831, 0.027970807626843452, 0.01196135114878416, 0.017930591478943825, -0.008296329528093338, -0.011458196677267551, -0.04436906799674034, 0.012864742428064346, -0.00931979063898325, 0.013310720212757587, -0.00036325029213912785, -0.013299284502863884, 0.02566087245941162, 0.03483200445771217, -0.0483485609292984, -0.0121671874076128, 0.016947153955698013, -0.04635881260037422, -0.031607240438461304, 0.01994320936501026, -0.004162458702921867, 0.00993158109486103, 0.0304865799844265, 0.005417485721409321, 0.00927976705133915, -0.008919554762542248, -0.001498027821071446, 0.024082796648144722, 0.021841473877429962, 0.008725154213607311, 0.044254712760448456, 0.01283043622970581, -0.0009083937620744109, 0.02755913697183132, 0.027673490345478058, 0.03718768060207367, -0.01671844720840454, -0.027307558804750443, -0.03247632831335068, 0.02749052457511425, -0.015346207655966282, -0.018994078040122986, -0.012636035680770874, 0.02011473849415779, -0.010817819274961948, -0.005248814821243286, -0.011732645332813263, 0.0072328438982367516, -0.0014415658079087734, 0.010274641215801239, -0.014339899644255638, 0.044597774744033813, -0.038216859102249146, 0.07295738160610199, -0.015860797837376595, -0.007964705117046833, -0.0017010048031806946, 0.002621548483148217, -0.006598183419555426, -0.0024971894454210997, 0.00898244883865118, -0.010520500130951405, -0.027055982500314713, -0.020149044692516327, 0.00016259604308288544, -0.0068726311437785625, -0.014511429704725742, 0.0549810491502285, 0.012819000519812107, -0.007575903553515673, -0.018067816272377968, 0.016947153955698013, -0.0016109516145661473, 0.030669545754790306, -0.001856811111792922, 0.03503784164786339, -0.009948734194040298, -0.0005145897157490253, -0.02110961265861988, 0.03901733458042145, -0.020686505362391472, -0.01707294210791588, -0.009634262882173061, -0.003390574362128973, -0.04034383222460747, -0.040046513080596924, 0.01715298928320408, 0.0004023805377073586, -0.02799367904663086, -0.01945148967206478, -0.00033037373214028776, 0.040206607431173325, -0.007707410026341677, 0.017759062349796295, -0.023076489567756653, -0.0259124506264925, 0.02367112599313259, -0.019108429551124573, -0.012292975559830666, -0.04132727161049843, -0.011972786858677864, -0.00985153391957283, -0.0034134448505938053, -0.015792185440659523, 0.03993216156959534, 0.006992701906710863, -0.003750787116587162, 0.03750786930322647, 0.014751571230590343, -0.007838916033506393, 0.00020547852909658104, -0.004831425379961729, 0.037896670401096344, -0.020423492416739464, -0.004662754479795694, -0.01464865356683731, -0.0032076090574264526, -0.009245461784303188, -0.02657569944858551, 0.027444783598184586, -0.018811112269759178, -0.0019940349739044905, -0.023225147277116776, 0.0009948733495548368, 0.01986316218972206, 0.03446607291698456, -0.012876177206635475, 0.04038957133889198, -0.012315846979618073, -0.006718254182487726, 0.0011792680015787482, -0.01937144249677658, -0.05896054208278656, -0.03339115157723427, 0.011658315546810627, 0.006855478044599295, -0.02559226006269455, -0.05735959857702255, 0.013573732227087021, -0.03195030242204666, 0.0004238217952661216, 0.003304809331893921, 0.037645094096660614, 0.004191047046333551, 0.03185882046818733, -0.0020211939699947834, -0.021589895710349083, 0.07739429175853729, -0.03595266491174698, 0.008759460411965847, 0.03554099425673485, 0.0055261217057704926, -0.010943607427179813, 0.006369476672261953, 0.054615117609500885, -0.0014044010313227773, 0.04130439832806587, -0.009542779996991158, -0.04354572296142578, 0.011778386309742928, -0.010206028819084167, 0.017919156700372696, -0.008302046917378902, -0.0060835937038064, 0.027947938069701195, 0.011629726737737656, -5.664060154231265e-05, -0.010251769796013832, 0.010343252681195736, 0.010726336389780045, -0.016787059605121613, -0.023556772619485855, -0.03542664274573326, -0.03313957527279854, -0.014614347368478775, 0.02128114178776741, -0.002673007547855377, 0.0038165401201695204, -0.01812499202787876, -0.027970807626843452, -0.00428824732080102, 0.002317083068192005, -0.015128936618566513, -0.040526796132326126, 0.014808747917413712, 0.030921122059226036, -0.01482018269598484, -0.0016180987004190683, -0.014419946819543839, -0.008759460411965847, -0.018856853246688843, 0.018925465643405914, 0.016581222414970398, -0.03236197307705879, -0.04349998012185097, -0.013848179951310158, -0.035060711205005646, 0.05479808524250984, 0.029686108231544495, -0.039863549172878265, -0.020400622859597206, 0.012910483404994011, 0.05273972451686859, 0.016992894932627678, 0.0040195174515247345, 0.004942920058965683, -0.0021527002099901438, 0.022710558027029037, -0.033002350479364395, -0.005163049791008234, 0.023465290665626526, 0.026186898350715637, -0.026690052822232246, -0.004485506564378738, 0.013459378853440285, 0.0073071736842393875, 0.01671844720840454, 0.0013222096022218466, -0.003973776008933783, -0.012784695252776146, -0.013482250273227692, 0.0038594226352870464, 0.05026969686150551, 0.0006907652132213116, 0.018147863447666168, -0.022996442392468452, 0.015163242816925049, -0.04999524727463722, -0.01059482991695404, 0.036067020148038864, 0.009708591736853123, -0.02194439060986042, 0.009056778624653816, -0.01238445844501257, -0.020743682980537415, 0.011532526463270187, 0.025455037131905556, 0.024128539487719536, -0.04725077003240585, 0.007358632516115904, -0.027536265552043915, 0.008010446093976498, 0.010754924267530441, -0.02260764129459858, -0.022230274975299835, -0.01870819367468357, 0.01598658598959446, 0.01598658598959446, 0.0034420331940054893, -0.02088090591132641, 0.008799483999609947, -0.014259852468967438, 0.004445482976734638, 0.017175860702991486, -0.01713011972606182, 0.004871448967605829, -0.04324840381741524, -0.017598967999219894, -0.03174446523189545, -0.01125807873904705, 0.011080831289291382, -0.002317083068192005, 0.006009263917803764, 0.0006435944815166295, 0.002911719959229231, -0.008959578350186348, 0.01756466180086136, 0.03828547149896622, -0.010583394207060337, 0.03892585262656212, -0.012613165192306042, -0.011972786858677864, 0.006277994252741337, 0.013573732227087021, 0.0710819885134697, 0.02758200652897358, -0.02293926477432251, 0.0054403566755354404, -0.013802438974380493, 0.0004248938348609954, -0.024082796648144722, 0.00020011821470689029, 0.013722391799092293, -0.05804571881890297, 0.027787843719124794, 0.03661591559648514, -0.037050455808639526, 0.04006938263773918, 0.0019025524379685521, 0.007415809202939272, 0.0010527647100389004, -0.00737006776034832, -0.03842269629240036, 0.00906249601393938, -0.04054966941475868, -0.03213326632976532, -0.013082013465464115, 0.005917781498283148, -0.003790810704231262, 0.00022727710893377662, 0.013379331678152084, 0.018925465643405914, 0.00302178505808115, 0.0005328147672116756, -0.06431227922439575, -0.012899048626422882, -0.014019710011780262, -0.03503784164786339, -0.010943607427179813, 0.00755303306505084, 0.021486978977918625, -0.01988603174686432, 0.03329966962337494, -0.004705636762082577, 0.04436906799674034, 0.0032590681221336126, -0.02632412128150463, -0.019520102068781853, 0.04752521589398384, 0.017770497128367424, 0.0034506097435951233, 0.027147464454174042, -0.01059482991695404, 0.018948335200548172, 0.003387715434655547, -0.035060711205005646, 0.002541501307860017, 0.06435801833868027, 0.025455037131905556, -0.020057562738656998, 0.004354000557214022, -0.0032790799159556627, 0.004719931166619062, 0.0065581598319113255, -0.026278380304574966, -0.010543370619416237, -0.0005392471211962402, -0.011778386309742928, -0.007124208379536867, 0.024380115792155266, 0.006026417016983032, 0.006243688054382801, -0.0553012378513813, 0.007284302730113268, 0.04057253897190094, -0.005251673515886068, -0.0187196284532547, -0.030074909329414368, 0.0015709280269220471, -0.02426576241850853, 0.003453468671068549, 0.011286667548120022, 0.005560427438467741, -0.014477123506367207, 0.01861671172082424, 0.00035931941238231957, -0.007169949822127819, 0.010371841490268707, -0.01423698104918003, 0.023716866970062256, 0.014179804362356663, -0.006318017840385437, 0.004688483662903309, -0.010777794755995274, 0.02317940630018711, -0.018193604424595833, -0.045238152146339417, -0.03169872611761093, 0.0007100622751750052, 0.038628533482551575, -0.011326691135764122, 0.035152193158864975, 0.03329966962337494, -0.0009720027446746826, 0.020332010462880135, 0.0021241118665784597, 0.02508910559117794, -0.006312299985438585, 0.00377651653252542, 0.013196366839110851, -0.01911986619234085, -0.005814863368868828, -0.02881702221930027, -0.013242107816040516, 0.011029371991753578, 0.025363553315401077, 0.00043168358388356864, -0.016947153955698013, 0.02178429625928402, 0.019268525764346123, 0.019348572939634323, 0.017335955053567886, -0.0021312590688467026, -0.041853293776512146, -0.03195030242204666, -0.010823536664247513, -0.03602127730846405, -0.02344241924583912, -0.006781148724257946, -0.03487774729728699, -0.020240528509020805, 0.0011792680015787482, 0.0020597882103174925, -0.010028781369328499, 0.003339115297421813, 0.00886237807571888, -0.056581996381282806, 0.012899048626422882, 0.007061314303427935, 0.012944789603352547, 0.018776806071400642, 0.008896684274077415, 0.010680594481527805, -0.002560083754360676, 0.01172120962291956, 0.01121805515140295, 0.02781071327626705, 0.01458004117012024, 0.00737006776034832, 0.019165607169270515, -0.035563863813877106, -0.0007718845154158771, 0.0046827662736177444, 0.027307558804750443, -0.00297032599337399, 0.0009191143908537924, 0.005883475299924612, -0.009394120424985886, -0.024814657866954803, -0.0338028259575367, 0.024311503395438194, 0.00020029688312206417, -0.02062932960689068, 0.010160287842154503, 0.010714900679886341, -0.024631693959236145, 0.013596602715551853, 0.01995464414358139, -0.015094631351530552, 0.004576989449560642, -0.011704056523740292, -0.014134063385426998, -0.01055480632930994, -0.02442585676908493, -0.027216076850891113, 0.04066402092576027, 0.001307200756855309, 0.045352503657341, 0.02758200652897358, 0.04256228357553482, -0.011995657347142696, -0.004588424693793058, 0.019325701519846916, -0.0016066633397713304, 0.03293374180793762, 0.031035475432872772, -0.01987459696829319, -0.027101723477244377, 0.030257873237133026, -0.02300787717103958, 0.0006146488012745976, -0.010531935840845108, 0.01638682186603546, 0.0036021277774125338, -0.031081216409802437, -0.0030103495810180902, 0.018742499873042107, 0.02499762363731861, 0.015494867227971554, -0.013082013465464115, 0.008216282352805138, 0.0515047088265419, 0.005923498887568712, 0.013962533324956894, -0.009702874347567558, -0.02691875770688057, -0.0017081518890336156, -0.0013450803235173225, -0.019725937396287918, 0.022710558027029037, 0.014499993994832039, 0.0701671615242958, 0.0036107043270021677, -0.03686749190092087, -0.02954888343811035, 0.015414820052683353, -0.0045798481442034245, 0.0011728357058018446, 0.008936707861721516, -0.000932693830691278, 0.0018911170773208141, 0.004376871045678854, 0.018182169646024704, -0.03297948092222214, 0.024608822539448738, -0.02096095308661461, -0.02739904262125492, -0.015471996739506721, 0.0024157126899808645, 0.030257873237133026, -0.023042183369398117, -0.004148164764046669, 0.0005288838292472064, 0.01371095608919859, 0.022790605202317238, -0.0004220350238028914, 0.034168753772974014, 0.012773259542882442, -0.0003446678747422993, -0.016112374141812325, -0.012304411269724369, 0.006912654731422663, -0.03430597856640816, -0.008959578350186348, 0.0008369229617528617, 0.018925465643405914, 0.02957175485789776, 0.0027959372382611036, -0.04514667019248009, -0.023122230544686317, -0.018090685829520226, 0.015872232615947723, -0.012979095801711082, -0.004639883525669575, -0.025798097252845764, -0.0628942921757698, 0.010045934468507767, -8.02259601186961e-05, 0.004516954068094492, 0.001818216871470213, -0.03849130868911743, 0.00184823467861861, -0.022619076073169708, 0.02584383822977543, 0.023385243490338326, 0.025638001039624214], [-0.02194891683757305, 0.010447206906974316, 0.03817959502339363, -0.0045686145313084126, -0.03515740483999252, 0.01555666234344244, -0.034396421164274216, 0.03900580480694771, 0.0015083765611052513, 0.012741026468575, -0.04013640433549881, 0.03730989992618561, 0.046659115701913834, 0.02709098719060421, -0.02730841003358364, -0.015045716427266598, 0.00619113864377141, 0.04831153526902199, 0.003106440417468548, -0.014002082869410515, 0.0294826477766037, 0.0368315652012825, -0.05722590535879135, -0.024568872526288033, 0.010213475674390793, -0.025242885574698448, 0.007071704138070345, -0.004889314528554678, 0.0433325320482254, -0.029091285541653633, 0.03691853582859039, -0.027851969003677368, 0.04931168258190155, 0.021144449710845947, -0.025873415172100067, -0.0013969469582661986, -0.004150073975324631, -0.019796423614025116, -0.004633841570466757, 0.0005914602661505342, 0.014339089393615723, 0.02350349724292755, 0.03204824775457382, -0.030569765716791153, -0.05687802657485008, 0.079881452023983, -0.017883095890283585, -0.0042044296860694885, -0.021459713578224182, -0.017415635287761688, 0.01450215745717287, 0.021535811945796013, 0.012893222272396088, -0.06622724235057831, -0.015850184485316277, -0.007615263573825359, 0.03130900487303734, -0.03441816568374634, 0.0019010980613529682, -0.0024596049915999174, -0.013317198492586613, -0.016959045082330704, 0.0342877097427845, 0.007560907397419214, 0.004913774318993092, 0.02272077091038227, 0.048572443425655365, 0.04726790264248848, -0.018926728516817093, -0.0413539782166481, 0.01150171086192131, 0.023177361115813255, 0.02272077091038227, 0.022525090724229813, -0.02517765946686268, 0.023960085585713387, -0.043419502675533295, 0.02045956626534462, 0.045267604291439056, -0.010246089659631252, -0.0430498830974102, 0.02075308747589588, 0.016611166298389435, -0.010670065879821777, 0.014621740207076073, 0.016263289377093315, -0.021264033392071724, 0.01707862876355648, 0.04178882762789726, -0.03931019455194473, 0.022807741537690163, 0.01714385487139225, 0.009126357734203339, 0.01450215745717287, 0.004834958352148533, 0.0030846979934722185, -0.003296686103567481, -0.02463410049676895, -0.03054802305996418, 0.0600958988070488, 0.0025846236385405064, -0.019448544830083847, 0.0016130117001011968, 0.031091582030057907, 0.0028835812117904425, -0.073663130402565, -0.008734995499253273, 0.04509366676211357, 0.05722590535879135, 0.00963186752051115, 0.044615332037210464, -0.045311089605093, 0.014545642770826817, 0.035657480359077454, -0.05687802657485008, -0.020622633397579193, -0.04439790919423103, -0.0067129554226994514, 0.021427100524306297, -0.008289276622235775, 0.006283543538302183, 0.039679817855358124, 0.017383020371198654, -0.018176617100834846, 0.010034101083874702, 0.016567682847380638, 0.0071151889860630035, 0.03111332468688488, -0.005696499720215797, -0.020220398902893066, 0.03322233259677887, -0.02448190376162529, 0.0527469776570797, -0.003995159640908241, 0.0007623416604474187, -0.009968874044716358, 0.02159016951918602, 0.014980489388108253, 0.01121906004846096, -0.015991508960723877, 0.0013996647903695703, 0.013001934625208378, 0.013491137884557247, 0.012567087076604366, -0.03461384400725365, 0.011371256783604622, -0.026482200250029564, 0.0277867428958416, 0.027960682287812233, 0.004930081311613321, 0.010110199451446533, -0.005199143197387457, 0.014676096849143505, -0.011316901072859764, -0.05587787926197052, 0.0226555448025465, -0.007169544696807861, 0.07853342592716217, 0.029874010011553764, 0.006539016496390104, -0.017524346709251404, 0.017372149974107742, -0.01368681900203228, -0.012827995233237743, 0.009387265890836716, -0.025155916810035706, -0.0067129554226994514, 0.03648369014263153, -0.021481456235051155, -0.02404705621302128, -0.0023169207852333784, -0.013925984501838684, 0.0002819712972268462, 0.02709098719060421, -0.0788378193974495, -0.048224564641714096, 0.017469990998506546, 0.02489500865340233, -0.0034760606940835714, 0.01263231411576271, 0.012447504326701164, 0.07983796298503876, 0.0016388307558372617, -0.020133430138230324, 0.010055843740701675, 0.0646183118224144, -0.0277867428958416, -0.029656585305929184, -0.023894859477877617, 0.021057480946183205, 0.008588233962655067, -0.05587787926197052, 0.03611406683921814, 0.04072345048189163, -0.002153852954506874, 0.04070170596241951, -0.03413551300764084, -0.022546833381056786, 0.04372389614582062, -0.05257304012775421, 0.0283520445227623, -0.051181528717279434, -0.00920245610177517, -0.04252806678414345, -0.039832014590501785, -0.03391809016466141, 0.024177510291337967, 0.015382722951471806, 0.022101113572716713, 0.011306029744446278, 0.014871777966618538, -0.02617780677974224, -0.05100758746266365, -0.007310870103538036, 0.0074848090298473835, -0.008626283146440983, 0.04111481085419655, 0.043071623891592026, 0.03539657220244408, -0.006886894349008799, -0.042571552097797394, -0.002261206042021513, -0.017404763028025627, -0.023938344791531563, -0.009751451201736927, -0.05518212169408798, -0.03461384400725365, -0.05165985971689224, -0.04198450595140457, -0.01673074997961521, -0.06087862327694893, 0.027004018425941467, 0.005604094825685024, -0.04718093201518059, -0.031917791813611984, 0.014436930418014526, -0.002702847821637988, -0.020416080951690674, -0.03337452933192253, 0.05452985316514969, 0.0069956062361598015, -0.03098287060856819, 0.031939536333084106, 0.007664183620363474, -0.03874489665031433, -0.019992105662822723, 0.014871777966618538, 0.016056736931204796, 0.03661414235830307, 0.025090688839554787, 0.002780304988846183, 0.014241249300539494, -0.008283841423690319, -0.023655693978071213, -0.00388916558586061, 0.02970007061958313, -0.05596484988927841, -0.0030412133783102036, 0.03278748691082001, -0.02539508230984211, 0.008501265197992325, 0.013773788698017597, -0.03187430649995804, -0.00825666356831789, -0.06948859989643097, -0.056051816791296005, 0.018437525257468224, -0.009506849572062492, 0.02109009400010109, 0.03776649013161659, -0.032548319548368454, 0.04378912225365639, 0.022612059488892555, -0.021122707054018974, -0.08557794988155365, 0.020655246451497078, 0.015360981225967407, -0.011034250259399414, 0.016535067930817604, -0.019220251590013504, -0.05087713524699211, -0.00952859129756689, 0.0068325381726026535, -0.03702724725008011, -0.03307013586163521, 0.018567979335784912, 0.024721069261431694, 0.028199847787618637, 0.01361072063446045, 0.03217869997024536, 0.06213967874646187, -0.0002870671742130071, -0.004628405906260014, 0.015567533671855927, 0.05113804340362549, 0.019698582589626312, 0.016415486112236977, -0.0008608617936260998, -0.0260908380150795, -0.02687356248497963, 0.034874752163887024, -0.002785740653052926, 0.025286370888352394, -0.02752583473920822, -0.0703582912683487, -0.0028156363405287266, 0.0008330043638125062, 0.02709098719060421, -0.0138933714479208, -0.014904391020536423, -0.005093148909509182, 0.03974504396319389, -0.09331823140382767, -0.04450662061572075, -0.009131792932748795, -0.011039686389267445, -0.02843901328742504, -0.04246284067630768, 0.06005241349339485, 0.0034570361021906137, 0.03083067387342453, 0.03491823747754097, -0.018894115462899208, 0.01065919455140829, -0.037353385239839554, -0.009963438846170902, 0.009028516709804535, 0.03667936846613884, 0.028873860836029053, 0.04089738801121712, -0.04726790264248848, -0.002730025677010417, -0.011860460042953491, 0.03209172934293747, -0.05722590535879135, -0.017872223630547523, -0.07427191734313965, 0.0359836146235466, 0.006299850530922413, -0.009686224162578583, -0.007289127912372351, -0.020416080951690674, 0.054355911910533905, 0.040614739060401917, 0.0011713699204847217, 0.05635621026158333, 0.018796274438500404, -0.007810944691300392, -0.014882649295032024, 0.022829484194517136, 0.008316454477608204, 0.0002872370241675526, -0.025221142917871475, 0.0006332463817670941, -0.04202799126505852, -0.007669619284570217, 0.03398331627249718, 0.02179672196507454, -0.04231064394116402, 0.027743257582187653, 0.0052208853885531425, -0.006033506244421005, 0.02143797278404236, 0.027699774131178856, 0.04252806678414345, -0.03704899176955223, -0.03172210976481438, 0.00043552674469538033, -0.018720176070928574, -0.005003461614251137, 0.02173149399459362, -0.0005530714406631887, 0.009419879876077175, -0.01827445812523365, 0.06748830527067184, 0.009751451201736927, 0.054008036851882935, -0.0049626948311924934, -0.009849291294813156, -0.01178436167538166, 0.007267385721206665, -0.001136038568802178, -0.0022421814501285553, 0.019144153222441673, -0.010392850264906883, 0.009479670785367489, -0.04905077442526817, -0.007952270098030567, 0.02194891683757305, 0.008870884776115417, -0.006751004606485367, -0.01432821899652481, 0.019774680957198143, 0.06727087497711182, -0.0328744575381279, -0.0167198795825243, 0.011186446994543076, -0.00295424391515553, -0.038331788033246994, -0.0015409900806844234, -0.0168612040579319, -0.03328756242990494, -0.007892478257417679, 0.017589572817087173, -0.027351895347237587, 0.018796274438500404, 0.005071406718343496, 0.04183230921626091, 0.006729261949658394, -0.0023821478243917227, -0.005038793198764324, -0.03717944398522377, 0.033135365694761276, 0.04246284067630768, 0.016002381220459938, 0.017176467925310135, 0.011175575666129589, 0.012893222272396088, -0.021546684205532074, -0.03457036241889, 0.01361072063446045, 0.012208337895572186, -0.06492270529270172, 0.01357810664921999, -0.028525983914732933, -0.029113026335835457, 0.02278599888086319, 0.0038755766581743956, -0.02850424125790596, 0.00924594048410654, -0.021753236651420593, -0.02730841003358364, -0.014882649295032024, 0.04905077442526817, -0.015926282852888107, -0.018937600776553154, -0.015893669798970222, -0.00267159310169518, -0.006169395986944437, -0.011838718317449093, 0.002193261170759797, -0.04450662061572075, -0.029178254306316376, 0.0046773264184594154, -0.027047501876950264, 0.01009389292448759, -0.0038592698983848095, 0.06187877058982849, 0.06783618032932281, 0.00976775772869587, 0.030308857560157776, 0.004120178055018187, -0.022829484194517136, -0.05013789236545563, 0.047224417328834534, -0.07318480312824249, 0.012164853513240814, -0.032983168959617615, 0.02809113636612892, 0.0030194709543138742, 0.02680833637714386, 0.03189605101943016, 0.03620103746652603, 0.05248606950044632, 0.004924645647406578, 0.011969172395765781, -0.004932798910886049, 0.033265817910432816, 0.008620847947895527, -0.04605032876133919, 0.014621740207076073, -0.02743886411190033, -0.0019228403689339757, 0.00617483165115118, -0.0390927717089653, 0.0029325014911592007, 0.035092178732156754, -0.0012658133637160063, 0.011083170771598816, -0.03126551955938339, -0.0009002698352560401, 0.026982275769114494, -0.04318033903837204, -0.05970453470945358, 0.015437079593539238, 0.004636559169739485, 0.06448785215616226, 0.01121906004846096, -0.006593372207134962, -0.020579148083925247, 0.0016836744034662843, 0.0043674977496266365, -0.020209528505802155, -0.0072836922481656075, 0.017154725268483162, 0.04015814885497093, -0.011414742097258568, -0.01308890338987112, 0.06053074449300766, -0.015437079593539238, 0.0012236875481903553, -0.054355911910533905, 0.017328664660453796, -0.008104466833174229, 0.042723748832941055, -0.031069839373230934, 0.03170036897063255, 0.037288155406713486, 0.013284585438668728, -0.0001814128627302125, 0.0038864477537572384, 0.013393296860158443, -2.7262887670076452e-05, 0.01778525486588478, 0.011023378930985928, 0.01601325161755085, 0.025938641279935837, 0.01548056397587061, -0.037114217877388, 0.018557108938694, 0.023873116821050644, -0.005598659161478281, 0.010458077304065228, 0.009968874044716358, -0.02630826272070408, 0.03280922770500183, -0.00018243203521706164, -0.0509641058743, 0.0016918277833610773, -0.02130751870572567, 0.02589515782892704, 0.009648174978792667, -0.02419925294816494, -0.02863469533622265, -0.0030846979934722185, -0.0174265056848526, 0.019937748089432716, 0.04570244997739792, 0.01340416818857193, 0.0037913250271230936, 0.03365718200802803, -0.03944065049290657, -0.003973417449742556, 0.005218167789280415, -0.0059791505336761475, -0.02793893963098526, 0.0226555448025465, -0.010235218331217766, 0.012284436263144016, 0.005272523500025272, -0.0300479494035244, -0.009283989667892456, 0.029591359198093414, -0.013980341143906116, 0.015045716427266598, 0.03348324075341225, 0.018807146698236465, -0.022046757861971855, -0.01308890338987112, 0.015752343460917473, -0.00938183069229126, 0.03126551955938339, -0.0052453456446528435, 0.002378071192651987, -0.02094876952469349, 0.012295307591557503, -0.03189605101943016, -0.029439162462949753, -0.025851672515273094, -0.005593223497271538, -0.006104168947786093, -0.007463066838681698, 0.015263140201568604, 0.043071623891592026, 0.02117706462740898, 0.03011317551136017, 0.03070021979510784, -0.04065822437405586, -0.005631272681057453, 0.03415725752711296, 0.02237289398908615, 0.04513714835047722, 0.0167198795825243, -0.0306132510304451, -0.0037831715308129787, 0.016208933666348457, -0.02793893963098526, -0.03617929667234421, 0.013208487071096897, -0.007930527441203594, 0.02759106084704399, 0.00355487666092813, 0.015078330412507057, -0.035527024418115616, 0.007615263573825359, 0.007234772201627493, 0.000834363279864192, 0.016839461401104927, -0.0433325320482254, 0.02696053311228752, 0.03363543748855591, 0.022699030116200447, -0.014730452559888363, 0.04761578142642975, -0.03748383745551109, 0.008419730700552464, -0.013132388703525066, -0.0249167513102293, 0.07279343903064728, -0.008321890607476234, 0.040462542325258255, -0.021546684205532074, 0.0050197686068713665, -0.026221292093396187, 0.000367242144420743, 0.023242589086294174, -0.051529403775930405, -0.01990513503551483, -0.014480414800345898, -0.022981680929660797, -0.0024745529517531395, -0.008403424173593521, -0.030634991824626923, 0.007185851689428091, -0.06022635102272034, 0.00025734127848409116, -0.007800073362886906, -0.014686967246234417, -0.02696053311228752, -0.014969618059694767, -0.022264182567596436, -0.021351002156734467, 0.01238227728754282, -0.04944213852286339, 0.041093070060014725, -0.00721302954480052, -0.022916452959179878, -0.04939865320920944, 0.007843558676540852, 0.03391809016466141, 0.02413402497768402, 0.02998272143304348, 0.053094856441020966, -0.03991898149251938, 0.059791505336761475, 0.028678178787231445, 0.028112879022955894, 0.04104958474636078, 0.016817718744277954, -0.013512879610061646, 0.03789694234728813, 0.005881309974938631, -0.013588977977633476, -0.00786530040204525, -0.015393594279885292, -0.002229951322078705, -0.02869992144405842, 0.010501562617719173, -0.022253310307860374, 0.0544428825378418, 0.024307964369654655, 0.0019907853566110134, 0.034874752163887024, 0.018731048330664635, 0.014404317364096642, 0.0007161391549743712, 0.022807741537690163, 0.009300297126173973, 0.00965904537588358, 0.001202624524012208, 0.048007141798734665, 0.011675650253891945, -0.00036860103136859834, -0.035527024418115616, 0.005941101349890232, -0.026482200250029564, 0.00417725183069706, 0.025916898623108864, -0.014599998481571674, 0.006207445170730352, -0.02306864969432354, -0.02341652661561966, 0.00682710250839591, 0.026134323328733444, -0.003940803464502096, -0.011316901072859764, -0.014002082869410515, -0.0436151847243309, -0.012251823209226131, 0.028547724708914757, 0.0003354779037181288, 0.0464416928589344, 0.0373968668282032, 0.024851523339748383, -0.005329597275704145, 0.06200922653079033, -0.0004195597139187157, -0.025373339653015137, -0.03148294612765312, -0.033331044018268585, -0.011094042100012302, 0.0022394636180251837, 0.01315413136035204, -0.04235412925481796, -0.051529403775930405, 0.014154279604554176, -0.001434996142052114, 0.0010314034298062325, 0.038897089660167694, -0.004761578049510717, -0.0277867428958416, -0.008392552845180035, -0.012719283811748028, -0.0040739756077528, -0.007658747956156731, -0.0015844748122617602, 0.040049437433481216, -0.00906656589359045, -0.0007392404368147254, -0.010528740473091602, 0.0011706905206665397, 0.03924496844410896, -0.03704899176955223, 0.0053024194203317165, 0.014752195216715336, 0.007925092242658138, 0.006685777101665735, 0.02060089074075222, 0.018078776076436043, 0.014969618059694767, 0.028460755944252014, -0.010463513433933258, -0.02159016951918602, 0.022177211940288544, -0.007473938167095184, 0.00328853284008801, -0.006669470574706793, 0.013458523899316788, -0.009968874044716358, -0.0209596399217844, 0.003003164194524288, -0.02448190376162529, 0.02074221707880497, -0.007468502502888441, -0.04324556514620781, 0.04565896838903427, 0.014306476339697838, 0.018100518733263016, -0.012132239528000355, 0.01121906004846096, -0.0009974309941753745, 0.005413848906755447, -0.04365867003798485, -0.005647579208016396, 0.028917346149683, -0.025786444544792175, 0.03837527334690094, 0.016904689371585846, 0.0024895009119063616, -0.025438567623496056, -0.03476604074239731, -0.03857095539569855, 0.005707371048629284, 0.007859865203499794, 0.022198954597115517, -0.020579148083925247, -0.015784956514835358, -0.017415635287761688, 0.003239612327888608, 3.176423706463538e-05, -0.007805509027093649, -0.010577660985291004, -0.017730899155139923, 0.01953551545739174, -0.004889314528554678, -0.03874489665031433, -0.012436632998287678, -0.022590316832065582, -0.02806939370930195, -0.009550333954393864, 0.028830375522375107, 0.008392552845180035, -0.03528785705566406, 0.02976529859006405, 0.016567682847380638, -0.03831004723906517, -0.0487028993666172, 0.0010463512735441327, -0.027482349425554276, 0.022307666018605232, -0.03807087987661362, -0.0025180375669151545, -0.003285815007984638, -0.034396421164274216, -0.02696053311228752, 0.01022978313267231, 0.030787188559770584, 0.02517765946686268, -0.024220995604991913, 0.028547724708914757, 0.010153684765100479, 0.025308113545179367, -0.03189605101943016, 0.01997036300599575, 0.06683602929115295, -0.0018345121061429381, -0.022481605410575867, -0.019231121987104416, -0.01555666234344244, -0.02089441381394863, -0.027460606768727303, 0.015415336936712265, -3.5522440157365054e-05, 0.020220398902893066, 0.007952270098030567, -0.030091432854533195, -0.0007127419230528176, -0.0017149290069937706, 0.005155658349394798, 0.01258882973343134, 0.017393892630934715, 0.011306029744446278, 0.0025832648389041424, -0.022177211940288544, 0.0697060227394104, -0.028047651052474976, -0.0040386444889009, -0.017546089366078377, -0.014447801746428013, -0.017187340185046196, 0.04207147657871246, 0.030004464089870453, -0.00973514374345541, 0.01791570894420147, -0.02385137416422367, 0.012980191968381405, 0.012480117380619049, 0.037788230925798416, -0.008272970095276833, 0.027069244533777237, 0.03350498527288437, -0.005653014872223139, -0.016545940190553665, 0.00647378945723176, 0.002212285762652755, 0.013491137884557247, 0.002970550674945116, 0.02611258067190647, -0.037114217877388, -0.01877453178167343, 0.003840245306491852, 0.002095420379191637, -0.01798093691468239, 0.012317050248384476, 0.0342877097427845, -0.025134174153208733, 0.007838122546672821, 0.02526462823152542, -0.04796365648508072, -0.0294826477766037, -0.03491823747754097, 0.019644226878881454, 0.011316901072859764, 0.007653312757611275, 0.02548205293715, 0.006212880834937096, -0.008311019279062748, -0.004256067797541618, 0.015578405000269413, -0.04735487326979637, 0.02504720538854599, 0.010882053524255753, 0.0056149656884372234, 0.007963141426444054, -0.0069738635793328285, -0.009262247942388058, -0.013665076345205307, -0.02004646137356758, -0.005903052166104317, 0.016817718744277954, -0.020416080951690674, 0.018785404041409492, 0.03452687710523605, 0.024373190477490425, -0.03307013586163521, -0.016198061406612396, -0.04120178148150444, 0.00328853284008801, 0.020426951348781586, 0.016187191009521484, -0.013012805953621864, 0.0011496276129037142, 0.0133280698210001, -0.01911153830587864, 0.0036853309720754623, -4.55177678304608e-06, -0.0057291132397949696, 0.026895305141806602, 0.014404317364096642, -0.007827251218259335, -0.0690537542104721, -0.018307071179151535, 0.0116104232147336, -0.015719730406999588, -0.012219209223985672, 0.021220548078417778, 0.009120922535657883, 0.025438567623496056, 0.007289127912372351, -0.01623067632317543, -0.001493428717367351, 0.008870884776115417, -0.007310870103538036, -0.031787339597940445, 0.0325918048620224, -0.0208183154463768, 0.017459118738770485, 0.008164257742464542, -0.03520089015364647, 0.025851672515273094, 0.05870438739657402, -0.00110206613317132, -0.011110348626971245, 0.03415725752711296, -0.006484660319983959, -0.0013140542432665825, -0.026069095358252525, 0.015763213858008385, -0.01826358586549759, -0.027612803503870964, -0.015784956514835358, 0.03124377876520157, 0.014393446035683155, 0.019241992384195328, -0.02772151492536068, -0.0010395568097010255, 0.008033803664147854, -0.002869992284104228, 0.03517914563417435, -0.026982275769114494, -0.013599849306046963, 0.001877996837720275, 0.013925984501838684, -0.05496469885110855, 0.013795530423521996, -0.00730543490499258, 0.019861649721860886, 0.017817867919802666, 0.03641846030950546, -0.017883095890283585, 0.001676879939623177, -0.02243812009692192, 0.036440204828977585, -0.0002653248084243387, -0.00041446383693255484, -0.03422248363494873, 0.005234474316239357, 0.015784956514835358, 0.011643036268651485, -0.0020492179319262505, 0.020057331770658493, 0.010180862620472908, -0.005212732125073671, -0.022959938272833824, 0.009990616701543331, 0.012404019013047218, 0.0419192798435688, -0.01798093691468239, -0.052094705402851105, 0.03228741139173508, 0.002176954410970211, -0.027699774131178856, 0.023025164380669594, -0.012240951880812645, -0.045963361859321594, 0.01616544835269451, -0.011164704337716103, 0.03196127712726593, -0.00835993979126215, -0.020307369530200958, -0.02659091353416443, 0.03291793912649155, 0.024655841290950775, 0.016382873058319092, -0.00881652906537056, 0.021905433386564255, -0.013208487071096897, -0.019274607300758362, 0.040679965168237686, -0.016339387744665146, 0.008283841423690319, 0.021633652970194817, 0.007995754480361938, 0.00657706568017602, -0.013502009212970734, 0.0004946388071402907, 0.03398331627249718, -0.030526280403137207, -0.016806848347187042, 0.01565450243651867, -0.0011890355963259935, -0.007093446794897318, -0.004359344020485878, 0.021285776048898697, 0.006142218131572008, -0.010822262614965439, -0.03780997171998024, 0.008283841423690319, -0.005253498908132315, -0.01040372159332037, -0.009061130695044994, -0.025221142917871475, 0.0013459882466122508, 0.057747721672058105, -0.0538775809109211, -0.03196127712726593, 0.02659091353416443, -0.013273714110255241, -0.0009525873465463519, 0.021427100524306297, 0.02872166410088539, -0.014958747662603855, 0.027069244533777237, 0.016121963039040565, 0.016132835298776627, 0.017372149974107742, 0.008686074987053871, 0.031004613265395164, 0.031504686921834946, -0.0006393614457920194, 0.020426951348781586, 0.027460606768727303, -0.013067161664366722, 0.03089590184390545, 0.022699030116200447, 0.013512879610061646, -0.011523453518748283, -0.007289127912372351, -0.019078925251960754, 0.01574147306382656, -0.018654949963092804, -0.03067847713828087, -0.02328607253730297, 0.01840491220355034, -0.0004226172168273479, 0.006207445170730352, -0.0009634585585445166, 0.0045957923866808414, -0.01798093691468239, 0.012295307591557503, -0.0033999623265117407, 0.04513714835047722, -0.02674310840666294, 0.08457779884338379, 0.0034760606940835714, -0.0021062917076051235, 0.008990468457341194, 0.01121906004846096, 0.011871331371366978, -0.009642738848924637, 0.0019975798204541206, -0.022894710302352905, -0.024438418447971344, -0.035527024418115616, 0.024460161104798317, -0.0030085998587310314, 0.004541436675935984, 0.05505166947841644, 0.012447504326701164, -0.006903200875967741, -0.021503198891878128, 0.0017720027826726437, 0.01755695976316929, 0.047093961387872696, -0.007620698772370815, 0.03780997171998024, -0.02313387580215931, 0.026851821690797806, -0.024177510291337967, 0.03759254887700081, -0.015958895906805992, -0.004266939125955105, -0.0010470307897776365, 0.0014417906058952212, -0.02589515782892704, -0.027612803503870964, 0.032004762440919876, -0.013534622266888618, -0.0073652262799441814, -0.007419581990689039, -0.02489500865340233, 0.028243333101272583, 0.005264370236545801, 0.02011168748140335, -0.041245266795158386, -0.011208189651370049, 0.014773936942219734, -0.032548319548368454, -0.005951972678303719, -0.0025017308071255684, -0.005653014872223139, -0.0023223564494401217, -0.019731195643544197, 0.006250930018723011, 0.044267456978559494, -0.012153982184827328, -0.0005085674929432571, 0.04557199776172638, 0.018937600776553154, 0.007805509027093649, -0.00589218083769083, 0.006539016496390104, 0.023873116821050644, -0.03896231949329376, -0.01461086980998516, -0.002303331857547164, -0.002162006450816989, -0.03404854238033295, -0.025242885574698448, 0.013904242776334286, -0.008501265197992325, -0.019492030143737793, -0.05279046297073364, -0.006897765211760998, 0.01961161382496357, 0.01903543993830681, -0.031069839373230934, 0.01805703341960907, 0.015719730406999588, -0.005576916504651308, 0.000246300216531381, -0.009338346309959888, -0.03839701786637306, -0.026221292093396187, 0.004764295648783445, -0.010735292918980122, -0.024590615183115005, -0.042375870048999786, 0.01891585811972618, -0.000484107353258878, 0.0011129373451694846, 0.03363543748855591, 0.029721813276410103, 0.0014920698013156652, 0.03817959502339363, -0.01962248422205448, -0.0056693218648433685, 0.06509663909673691, -0.028134619817137718, 0.024808038026094437, 0.018437525257468224, -0.013317198492586613, -0.004223454277962446, -0.007272821385413408, 0.050485771149396896, -0.003690766403451562, 0.021981531754136086, -0.0077076684683561325, -0.011849588714540005, 0.026634396985173225, 0.00562583701685071, -0.01954638585448265, 0.0035358520690351725, 0.016002381220459938, -0.011436483822762966, 0.011860460042953491, -0.010463513433933258, 0.007680490612983704, -0.009360088035464287, -0.0025071664713323116, -0.02602561190724373, -0.013436781242489815, -0.02548205293715, -0.023590466007590294, 0.044202227145433426, 0.01202352810651064, -0.018361426889896393, 0.014752195216715336, 0.005973714869469404, -0.011164704337716103, -0.004163662903010845, 0.0007548677385784686, -0.01376291736960411, -0.03283097222447395, 0.011849588714540005, 0.005745420232415199, 0.0036608707159757614, -0.019307220354676247, -0.013915114104747772, -0.04189753904938698, -0.02117706462740898, 0.012360534630715847, 0.012230080552399158, -0.0362662635743618, -0.034178998321294785, 0.01083313301205635, -0.016469841822981834, 0.01947028748691082, 0.046180784702301025, -0.012599701061844826, 0.006696648430079222, -0.011556067503988743, 0.017513474449515343, 0.00906656589359045, -0.03776649013161659, -0.011469097808003426, -0.026764851063489914, 0.01506745908409357, -0.038353532552719116, -0.009197020903229713, 0.0385274700820446, 0.03272226080298424, 0.008653461001813412, -0.0053051370196044445, 0.019492030143737793, -0.004166380502283573, -0.02137274481356144, -0.01189307402819395, -0.0174265056848526, 0.014034696854650974, -0.018437525257468224, 0.028417270630598068, 0.032352641224861145, -0.012534473091363907, 0.011349515058100224, -0.011566937901079655, 0.024960234761238098, -0.054138489067554474, 0.004995308350771666, 0.00776202417910099, 0.022916452959179878, 0.008908933959901333, 0.021503198891878128, 0.004473491571843624, 0.0009063848410733044, 0.028917346149683, 0.02159016951918602, -0.005147505085915327, 0.0004165021819062531, -0.00721302954480052, -0.046746086329221725, -0.0056149656884372234, -0.020763957872986794, -0.005215449724346399, 0.007174980361014605, -0.011262545362114906, 0.026612654328346252, 0.008734995499253273, 0.004109307192265987, 0.032548319548368454, 0.002965115010738373, -0.00712606031447649, 0.0023903013207018375, 0.009620996192097664, -0.012447504326701164, 0.006674906238913536, -0.019415931776165962, -0.006609679199755192, -0.025242885574698448, 0.0020152453798800707, 0.013849887065589428, -0.018078776076436043, -0.028243333101272583, 0.02639523148536682, -0.02998272143304348, -0.018372299149632454, 0.018567979335784912, 0.010028665885329247, -0.015708858147263527, 0.032004762440919876, -0.0011469097808003426, -0.022612059488892555, 0.024590615183115005, -0.015056587755680084, 0.05270349234342575, 0.0029080412350594997, -0.010398286394774914, -0.008941547945141792, -0.008854578249156475, -0.02101399563252926, 0.0021416230592876673, -0.0002654946583788842, 0.004473491571843624, -0.04965956136584282, 0.025308113545179367, 0.025525536388158798, -0.010561353527009487, 0.03339627385139465, -0.017372149974107742, 0.03476604074239731, 0.0017801561625674367, -0.02652568556368351, -0.045398060232400894, -0.014719581231474876, -0.001710852375254035, -0.013697690330445766, 0.03380937874317169, -0.00976775772869587, 0.03013491816818714, 0.009582947008311749, 0.006729261949658394, 0.02419925294816494, -0.016111092641949654, 0.021883690729737282, -0.0538775809109211, 0.00140238250605762, -0.029026057571172714, -0.011164704337716103, 0.0010456718737259507, 0.015328367240726948, 0.0013337582349777222, -0.02250334806740284, 0.0037695826031267643, 0.002394377952441573, -0.006386819761246443, -0.004209865350276232, -0.0348530113697052, -0.005055099725723267, 0.020285626873373985, 0.02780848555266857, 0.031504686921834946, -2.8690792532870546e-06, -0.02724318392574787, 0.01586105488240719, -0.005968279205262661, -0.020546535030007362, 0.018176617100834846, 0.04939865320920944, 0.022101113572716713, -0.016828591004014015, 0.0008275687578134239, 0.0029895752668380737, -0.034831270575523376, -0.008577362634241581, -0.00730543490499258, -0.01833968423306942, -0.003546723397448659, 0.01263231411576271, 0.02356872335076332, 0.04613729938864708, -0.007740281987935305, 0.022590316832065582, -0.03228741139173508, 0.03089590184390545, 0.002420197008177638, 0.000659405195619911, -0.020437823608517647, -0.016034994274377823, -0.0040875645354390144, 0.006941250059753656, 0.01417602226138115, 0.001044312957674265, -0.015980638563632965, -0.009017646312713623, 0.02088354155421257, -0.025525536388158798, 0.0014064592542126775, 0.0047941915690898895, -0.017970064654946327, 0.021568426862359047, 0.031222036108374596, -0.0208183154463768, -0.008631719276309013, -0.019459417089819908, 0.0029787039384245872, -0.0024650406558066607, -0.03630974888801575, -0.03698376193642616, 0.03737512603402138, 0.03041756898164749, -0.0029080412350594997, 0.012327920645475388, -0.007935963571071625, 0.0029352193232625723, -0.004688197281211615, 0.03585315868258476, 0.01961161382496357, 0.013186744414269924, 0.027199698612093925, -0.014382574707269669, -0.050268348306417465, -0.01835055649280548, -0.01642635650932789, -0.015447950921952724, -0.004315859638154507, 0.010186297819018364, -0.017100369557738304, -0.009039388038218021, 0.025634247809648514, 0.013752046041190624, 0.0066042435355484486, -0.005832389462739229, 0.012121368199586868, -0.05561697110533714, -0.014904391020536423, -0.03448339179158211, -0.02985226735472679, -0.008169693872332573, 0.00529154809191823, -0.029591359198093414, -0.016274159774184227, -0.023677436634898186, 0.020307369530200958, -0.016034994274377823, -0.006870587356388569, 0.0070553976111114025, -0.047876689583063126, 0.030243629589676857, -0.02250334806740284, 0.013186744414269924, 0.03183082118630409, 0.04346298798918724, 0.016263289377093315, -0.00963186752051115, 0.036374978721141815, -0.0017597726546227932, 0.010941845364868641, -0.015632759779691696, 0.0035575944930315018, 0.009691659361124039, -0.020133430138230324, -0.02350349724292755, 0.023177361115813255, 0.045745935291051865, 0.003353759879246354, 0.00015474448446184397, 0.003579336917027831, 0.0076261344365775585, -0.016480712220072746, -0.029178254306316376, 0.0215249415487051, -0.0034461647737771273, -0.009436186403036118, 0.00796857662498951, 0.014230377972126007, 0.0001394568826071918, -0.01040372159332037, 0.01125167403370142, -0.0161545779556036, 0.017154725268483162, 0.005750855430960655, -0.01499136071652174, 0.013752046041190624, -0.00265392754226923, 0.0008601823356002569, 0.032570064067840576, -0.0503988042473793, 0.029460905119776726, 0.011838718317449093, 0.030243629589676857, -0.012295307591557503, -0.0138933714479208, 0.026438716799020767, -0.0074250176548957825, 0.019916007295250893, 0.028330301865935326, -0.0032314590644091368, -0.03133074939250946, 0.023960085585713387, -0.012708412483334541, 0.015013103373348713, -0.017263438552618027, 0.04213670268654823, -0.014523900113999844, -0.008262098766863346, -0.024373190477490425, 0.039049286395311356, 0.010115635581314564, -0.001910610357299447, -0.0011788439005613327, -0.009055695496499538, 0.015165300108492374, 0.0010083022061735392, 0.005924794357270002, -0.03663588687777519, -0.04254980757832527, 0.022307666018605232, 0.0062400586903095245, -0.03130900487303734, 0.015752343460917473, 0.0012957090511918068, 0.02385137416422367, -0.00889262743294239, -0.06087862327694893, -0.01287148054689169, 0.012436632998287678, 0.0019758373964577913, 7.554622425232083e-05, -0.0040250555612146854, -0.007713104132562876, -0.020992252975702286, 0.021329259499907494, 0.01396946981549263, -0.005180118605494499, 0.00843060202896595, -0.0133280698210001, -0.008012061938643456, 0.02419925294816494, 0.023720920085906982, -0.001068093697540462, 0.005990021396428347, 0.010952716693282127, 0.0005272523849271238, 6.858187407488003e-05, -0.01340416818857193, -0.004095718264579773, 0.02532985620200634, 0.009778629057109356, -0.030634991824626923, -0.021057480946183205, -0.015056587755680084, 0.009751451201736927, -0.0013915114104747772, -0.0116104232147336, -0.014556513167917728, -0.007441324647516012, 0.037788230925798416, -0.0023413810413330793, -0.055356062948703766, -0.032548319548368454, -0.025634247809648514, 0.010920102708041668, -0.0005123044829815626, -0.02463410049676895, -0.011697392910718918, -0.06683602929115295, 0.02752583473920822, 0.002231310121715069, 0.03970155864953995, -0.00327222584746778, -0.05844347923994064, 0.02624303475022316, -0.02730841003358364, 0.024851523339748383, 0.03702724725008011, 0.03378763422369957], [-0.015014810487627983, 0.03869662061333656, 0.008051814511418343, 0.001129649463109672, -0.08523273468017578, -0.007278753444552422, -0.030029620975255966, 0.06498070806264877, 0.015940306708216667, -0.0006948024965822697, -0.05191487818956375, 0.03442845121026039, 0.043422091752290726, 0.021569499745965004, -0.02175459824502468, 0.004142955411225557, 0.02062222734093666, 0.026218757033348083, -0.028897250071167946, -0.008917425759136677, 0.02765599638223648, 0.021449729800224304, -0.023278946056962013, -0.036410100758075714, -0.002385874046012759, -0.02050245739519596, 0.03151041641831398, 0.004439658485352993, 0.03900148719549179, -0.03477687016129494, 0.04664499685168266, -0.03965478017926216, 0.061583589762449265, 0.01351224072277546, -0.02288697101175785, -0.011127728037536144, -0.03597457334399223, 0.028744814917445183, -0.016604486852884293, -0.02404111810028553, -0.0027438232209533453, -0.009048083797097206, 0.025021055713295937, -0.021787263453006744, -0.062019117176532745, 0.08275022357702255, -0.021123085170984268, 0.005261716898530722, -0.0094563914462924, 0.001057515270076692, -0.0011786463437601924, 0.04270347207784653, 0.028461722657084465, -0.07791586965322495, -0.01081741414964199, 0.003663875162601471, 0.01652826927602291, -0.0017638864228501916, 0.017214225605130196, -0.01587497815489769, 0.006641794461756945, 0.01770419254899025, 0.02014314755797386, -0.004426048137247562, -0.012869837693870068, -0.006233487278223038, 0.04019919037818909, 0.01043088361620903, -0.05012921616435051, -0.0099354712292552, 0.03599634766578674, 0.02336605079472065, 0.022734535858035088, -0.016735143959522247, -0.002297407714650035, -0.003473331918939948, 0.004671032540500164, 0.02360559068620205, 0.03294765576720238, 0.03194594383239746, -0.03159752115607262, 0.04061293974518776, 0.0023504875134676695, -0.019239427521824837, -0.0003521648177411407, 0.042246170341968536, -0.04825644940137863, -0.012281876057386398, 0.028701262548565865, -0.01919587515294552, -0.006015723571181297, -0.011552367359399796, -0.009445502422749996, 0.021613052114844322, 0.013348918408155441, 0.021885257214307785, 0.007828607223927975, -0.07133940607309341, -0.018988998606801033, 0.03192416578531265, 0.024345988407731056, -0.0005590404034592211, 0.011258386075496674, 0.04374874010682106, -0.00030401861295104027, -0.05696699768304825, -0.027503563091158867, 0.059710822999477386, 0.07020703703165054, 0.014252637512981892, 0.009113413281738758, -0.05261172354221344, 0.024781515821814537, 0.04790802672505379, -0.05039053410291672, -0.01350135263055563, -0.012270987965166569, -0.006728900130838156, 0.026392966508865356, -0.025500135496258736, 0.027830207720398903, 0.02425888180732727, 0.0037509805988520384, -0.014503066428005695, 0.028940802440047264, 0.03360094875097275, 0.009870141744613647, 0.02608809806406498, 0.007387635298073292, -0.04777736961841583, 0.013534017838537693, -0.028701262548565865, 0.02539125457406044, -0.0022021359764039516, 0.0199907124042511, -0.046862758696079254, -0.01567899063229561, 0.012270987965166569, 0.015450338833034039, -0.018847452476620674, -0.011312827467918396, 0.016854913905262947, 0.01247786357998848, 0.020241141319274902, -0.0756511315703392, 0.037520695477724075, -0.015069251880049706, 0.047298286110162735, 0.007344082463532686, 0.011225721798837185, 0.021700158715248108, 0.008911981247365475, -0.004390661604702473, -0.04213728755712509, -0.03037804365158081, 0.019555184990167618, -0.005689078010618687, 0.06772452592849731, -0.006783341057598591, -0.004905128385871649, -0.008318575099110603, 0.011672137305140495, 0.015820536762475967, 0.001972123049199581, 0.03880549967288971, -0.008324019610881805, -0.023191839456558228, 0.05413607135415077, -0.03586569055914879, -0.03839175030589104, 0.010354666970670223, -0.026392966508865356, 0.031423311680555344, 0.007354971021413803, -0.10740108042955399, -0.014590171165764332, 0.005607416853308678, 0.007529181893914938, 0.034559108316898346, -0.02189614623785019, 0.011454373598098755, 0.045033544301986694, -0.001640033326111734, -0.0035168847534805536, 0.009271292015910149, 0.04634012654423714, -0.028069747611880302, -0.02054600976407528, -0.030225608497858047, 0.0134904645383358, -0.008324019610881805, -0.016386723145842552, 0.038892608135938644, 0.0421590618789196, -0.004357997328042984, 0.002912590280175209, -0.004475045017898083, -0.022342560812830925, 0.0426381416618824, -0.015265239402651787, 0.009739483706653118, -0.04599170386791229, 0.032337918877601624, -0.030269162729382515, -0.05370054021477699, -0.030966006219387054, -0.0011248858645558357, -0.017551759257912636, 0.014797046780586243, 0.02763422019779682, 0.012837173417210579, -0.03418891131877899, -0.060189902782440186, -0.027851983904838562, 0.03381871059536934, -0.006424030754715204, 0.05640081316232681, 0.05126158893108368, -0.005046674981713295, 0.00923862773925066, -0.07360415160655975, -0.021743711084127426, -0.015461226925253868, -0.02242966741323471, 0.0006696235504932702, -0.056313708424568176, -0.03780378773808479, -0.029594093561172485, -0.0493888184428215, 0.00950538832694292, -0.040678270161151886, 0.025739675387740135, 0.014023985713720322, -0.03486397862434387, 0.01857524737715721, 0.05261172354221344, 0.011497925966978073, -0.047298286110162735, -0.010692200623452663, 0.058404240757226944, 0.021144861355423927, -0.04172353446483612, 0.026654284447431564, -0.020948873832821846, -0.005014010239392519, -0.016049189493060112, -0.0042817797511816025, 0.024629080668091774, 0.02201591618359089, 0.019424527883529663, 0.019598737359046936, 0.036366548389196396, 0.02404111810028553, -0.03490753099322319, -0.018303044140338898, 0.027372904121875763, -0.012314540334045887, -0.014622836373746395, 0.05574752017855644, -0.032316140830516815, 0.02018669992685318, 0.0351688452064991, -0.042050182819366455, -0.023758025839924812, -0.049780793488025665, -0.06567754596471786, 0.021090419963002205, -0.026218757033348083, 0.004935070872306824, 0.03338318318128586, -0.026697836816310883, 0.03808687999844551, 0.009554385207593441, -0.04925816133618355, -0.06728900223970413, 0.025783227756619453, 0.0008002818212844431, -0.009450946934521198, 0.017094455659389496, -0.04440202936530113, -0.03621411323547363, -0.007774165831506252, 0.03497285768389702, -0.022560324519872665, -0.026392966508865356, 0.02242966741323471, 0.041832417249679565, 0.013632010668516159, 0.03357917070388794, 0.014884152449667454, 0.059972137212753296, -0.015308791771531105, -0.0039360797964036465, 0.03137975558638573, 0.07151361554861069, 0.007093654479831457, -0.004458712879568338, -0.001073166960850358, -0.03066113591194153, -0.019664067775011063, -0.00530526926741004, -0.005493090953677893, 0.0032229034695774317, -0.04244215413928032, -0.06175779923796654, -0.006952107883989811, -0.0020456183701753616, 0.016713367775082588, -5.222927575232461e-05, -0.0038843608926981688, -0.050913166254758835, 0.017813075333833694, -0.0997357964515686, -0.04803868383169174, 0.0044832113198935986, -0.018422814086079597, -0.025957439094781876, -0.018172385171055794, 0.046383678913116455, -0.0007472019060514867, 0.029528765007853508, 0.018651464954018593, -0.01064864732325077, 0.005512144882231951, -0.03906681761145592, -0.011519703082740307, -0.009570716880261898, 0.008144364692270756, 0.031118441373109818, 0.038674842566251755, -0.04485933482646942, -0.004363441374152899, -0.01628872938454151, 0.007382191251963377, -0.04782092198729515, -0.0017815796891227365, -0.011225721798837185, 0.025979215279221535, 0.01748642884194851, -0.001256224699318409, 0.04194130003452301, -0.011454373598098755, 0.04030806943774223, 0.022821642458438873, -0.000655332813039422, 0.030552254989743233, 0.014524842612445354, 0.010349222458899021, -0.01941363885998726, 0.010937185026705265, 0.004001408815383911, -0.002634941367432475, 0.015537443570792675, -0.009113413281738758, -0.03225081041455269, -0.03719405084848404, 0.0387837253510952, 0.031118441373109818, -0.051130928099155426, 0.026850270107388496, -0.0037537026219069958, -0.03693273290991783, 0.0035059964284300804, 0.0057271867990493774, 0.05509423092007637, -0.048909738659858704, -0.030574031174182892, -0.07207980006933212, -0.026588954031467438, -0.0034406674094498158, 0.009401950053870678, -0.008128032088279724, -0.0008506396552547812, -0.04912750422954559, 0.061583589762449265, 0.006413142662495375, 0.01941363885998726, 0.007670728489756584, -0.011258386075496674, -0.0026839382480829954, -0.015809647738933563, -0.020154034718871117, 0.024106448516249657, 0.028701262548565865, 0.003832641988992691, 0.0267413891851902, -0.0016550045693293214, -0.011410821229219437, 0.05627015605568886, -0.007322306279093027, 0.008345795795321465, -0.008993643335998058, 0.03895793482661247, 0.04146222025156021, -0.01358845829963684, -0.0063859219662845135, 0.03736826032400131, 0.01305493712425232, -0.03590924292802811, -0.00530526926741004, -0.052742380648851395, -0.03965478017926216, -0.007207980379462242, 0.011813683435320854, -0.022734535858035088, 0.002852705307304859, 0.012869837693870068, 0.03451555594801903, 0.02813507802784443, -0.03249035403132439, 0.008552671410143375, -0.013860663399100304, 0.03893616050481796, 0.011944342404603958, -0.023649143055081367, -0.01589675433933735, 0.012848061509430408, 0.008117143996059895, -0.040460504591464996, -0.034145355224609375, 0.01635405793786049, -0.014132867567241192, -0.04803868383169174, 0.03423246368765831, -0.047080524265766144, -0.011911677196621895, 0.031118441373109818, 0.026436520740389824, -0.009559828788042068, -0.006070164497941732, -0.025696123018860817, -0.05692344531416893, -0.008841208182275295, 0.06763742119073868, -0.046601444482803345, 0.021188413724303246, -0.04107024520635605, -0.014579283073544502, -0.024128224700689316, -0.018760347738862038, -0.015385009348392487, -0.04348742216825485, 0.005732630845159292, 0.013697340153157711, -0.01722511276602745, -0.018107056617736816, 0.0038435303140431643, 0.05783805251121521, 0.05944950506091118, -0.00465470040217042, 0.022320784628391266, -0.007899380289018154, -0.008373016491532326, -0.03784734010696411, 0.04516420140862465, -0.023431379348039627, 0.014960370026528835, -0.032533906400203705, 0.020633116364479065, -0.019337421283125877, 0.030465150251984596, 0.03719405084848404, 0.017758633941411972, 0.03786911815404892, 0.0057816277258098125, 0.03558259829878807, -0.012325428426265717, 0.046557892113924026, -0.01382799819111824, -0.04361807927489281, -0.018673241138458252, -0.005367876496165991, 0.0007662562420591712, -0.0023872351739555597, -0.040264517068862915, -0.007011992856860161, 0.021504171192646027, -0.0285488273948431, 0.007616287562996149, -0.0269809290766716, 0.03826109319925308, 0.04960658401250839, -0.03464621305465698, -0.04607881233096123, 0.05979792773723602, 0.009810256771743298, 0.070816770195961, 0.00613004993647337, -0.03599634766578674, -0.022364336997270584, -0.03558259829878807, 0.01579876057803631, 0.013305365107953548, -0.007235200610011816, 0.005591084249317646, 0.03943701460957527, -0.041614655405282974, -0.010017132386565208, 0.039328135550022125, -0.013468688353896141, 0.006843226030468941, -0.060886744409799576, -0.0040504056960344315, -0.015210798010230064, 0.039153922349214554, -0.007757833693176508, -0.006200823001563549, 0.015287015587091446, -0.005934062413871288, -0.03214193135499954, 0.0006665612454526126, 0.006091941148042679, -0.01813971996307373, 0.025129936635494232, 0.020948873832821846, -0.004325332585722208, 0.0067670089192688465, 0.0192720927298069, -0.0534827783703804, -0.008890205062925816, 0.01744287647306919, -0.02789553627371788, -0.014230861328542233, -0.005841512698680162, -0.019936271011829376, 0.035952795296907425, 0.0007478824118152261, -0.08610378950834274, 0.019903607666492462, -0.008803099393844604, 0.007556402124464512, -0.0026784942019730806, -0.005386930890381336, -0.03196771815419197, 0.013087601400911808, -0.03634477034211159, 0.012303652241826057, 0.0402209646999836, -0.014034873805940151, -0.024912172928452492, 0.0030160280875861645, -0.032795220613479614, 0.008705106563866138, 0.018825676292181015, 0.0027587944641709328, -0.031118441373109818, 0.029572317376732826, -0.0029860856011509895, -0.010267561301589012, -0.005169167183339596, 0.002841816982254386, 0.017747746780514717, 0.020698444917798042, -0.0025110882706940174, 0.008612556383013725, -0.005846956744790077, 0.013784445822238922, -0.01563543826341629, -0.008743214420974255, 0.018629688769578934, -0.02314828708767891, 0.02765599638223648, 0.01754087023437023, 0.008373016491532326, -0.011078731156885624, -0.016854913905262947, -0.03259923309087753, -0.042289722710847855, -0.00669623538851738, 0.0011480232933536172, -0.035277727991342545, 0.021427953615784645, -0.0038843608926981688, 0.030922453850507736, 0.0346897654235363, 0.03333963081240654, 0.023017628118395805, -0.04174531251192093, -0.006826893892139196, -0.005427761469036341, 0.02288697101175785, 0.018651464954018593, -0.007033769506961107, 0.0006655404577031732, -0.027155140414834023, 0.023736249655485153, -0.026196978986263275, -0.05086961388587952, -0.00249611702747643, 0.0013814388075843453, 0.010975292883813381, 0.018368372693657875, 0.0024757017381489277, -0.030966006219387054, 0.0136102344840765, 0.015842312946915627, 0.00923862773925066, 0.027046257629990578, -0.03283877298235893, 0.01690935529768467, 0.018107056617736816, -0.00645669549703598, -0.002655356889590621, 0.027525339275598526, -0.02408467046916485, -0.00964693445712328, -0.005520311184227467, -0.02452019974589348, 0.08453588932752609, 0.0017148895421996713, 0.05844779312610626, 0.019598737359046936, 0.0004365482891444117, -0.04030806943774223, 0.0014944038121029735, 0.014905928634107113, -0.051305141299963, -0.017617087811231613, -0.025021055713295937, -0.01710534282028675, -0.012314540334045887, 0.0005593806272372603, -0.0346897654235363, 0.002170832362025976, -0.06193201243877411, 0.013000495731830597, -0.00963604636490345, -0.006113717332482338, 0.024629080668091774, -0.011672137305140495, -0.007981041446328163, -0.05448449030518532, -0.0016509214183315635, -0.05017276853322983, 0.024367764592170715, -0.006282484158873558, -0.012608521617949009, -0.03869662061333656, -0.009058971889317036, 0.01690935529768467, 0.052045539021492004, 0.021395288407802582, 0.03508174046874046, -0.03858773782849312, 0.034820426255464554, -0.00952716451138258, 0.020230252295732498, 0.022799864411354065, 0.04699341952800751, -0.019065216183662415, 0.054310280829668045, 0.00487246410921216, -0.002406289568170905, 0.02336605079472065, -0.015885865315794945, 0.0018496308475732803, -0.022299008443951607, -0.006053832359611988, -0.006990216672420502, 0.05535554513335228, 0.002817318541929126, 0.03784734010696411, 0.028069747611880302, 0.020698444917798042, 0.027830207720398903, -0.013762669637799263, 0.030312715098261833, 0.007262421306222677, 0.04324788227677345, -0.005370598752051592, 0.04699341952800751, -0.007197092287242413, 0.020535122603178024, -0.013958657160401344, -0.004262725356966257, -0.004643811844289303, 0.007844938896596432, 0.014655500650405884, -0.020850880071520805, 0.005901397671550512, -0.012042335234582424, 0.011704801581799984, 0.013403358869254589, 0.0008737770840525627, -0.01031111367046833, -0.0009016780531965196, -0.02515171281993389, -0.04490288719534874, -0.017431989312171936, 0.03743359073996544, 0.015341456979513168, 0.03018205612897873, 0.03582213819026947, 0.017312219366431236, -0.0044832113198935986, 0.05483291298151016, -0.020633116364479065, -0.014993034303188324, -0.03399292379617691, -0.026697836816310883, -0.0023872351739555597, 0.010997069999575615, 0.01693113148212433, -0.04357452690601349, -0.04581749439239502, 0.01416553184390068, -0.002150417072698474, 0.011247497983276844, 0.01736665889620781, 0.0037809230852872133, -0.022821642458438873, -0.01666981540620327, 0.007131762802600861, -0.007904823869466782, -0.03538661077618599, 0.014579283073544502, 0.019380973652005196, 0.007158983498811722, 0.0006284525734372437, 0.01383888628333807, 0.006070164497941732, 0.02086176723241806, -0.01849903166294098, -0.008177028968930244, -0.004477767273783684, -0.003933358006179333, -0.014437736943364143, -0.025957439094781876, 0.021645717322826385, -0.017954621464014053, 0.019685843959450722, 0.004303556401282549, -0.021504171192646027, 0.043443869799375534, -0.007556402124464512, 0.006162714213132858, 0.005082061514258385, 0.012390757910907269, -0.009265847504138947, -0.027307575568556786, -0.015504779294133186, -0.02902790904045105, 0.003402558621019125, -0.014590171165764332, -0.04030806943774223, 0.04444558173418045, -0.0005845595733262599, 0.01859702542424202, -0.0057271867990493774, 0.008705106563866138, -0.010458104312419891, 0.0054685925133526325, -0.03673674538731575, -0.0033698941115289927, 0.028439946472644806, -0.0014617391861975193, 0.021602164953947067, 0.01869501918554306, 0.0018060781294479966, 0.0031058555468916893, -0.015864089131355286, -0.025260595604777336, -0.006707123480737209, 0.016713367775082588, 0.007387635298073292, -0.004916016943752766, -0.01885834150016308, -0.0399814248085022, -0.004913294687867165, -0.001762525411322713, 0.025304147973656654, -0.03238147124648094, -0.013414246961474419, 0.05370054021477699, 0.019315645098686218, -0.023649143055081367, -0.0038435303140431643, -0.019772948697209358, 0.006211711093783379, -0.003995964769273996, 0.00663635041564703, 0.015319679863750935, -0.017747746780514717, 0.030312715098261833, 0.007186203729361296, 0.012499639764428139, -0.03725937753915787, -0.007523737847805023, 0.005678189918398857, 0.011476149782538414, -0.041353337466716766, 0.016103629022836685, 0.00530526926741004, -0.007267865352332592, -0.014884152449667454, -0.011078731156885624, 0.02560901828110218, -0.009385617449879646, -0.034384895116090775, 0.019435415044426918, -0.00935839768499136, 0.01291339099407196, -0.027220468968153, 0.007137206848710775, 0.09085103869438171, 0.029071461409330368, 0.0029044239781796932, 0.014546618796885014, -0.01782396249473095, 0.0040830704383552074, -0.007605399005115032, 0.01849903166294098, 0.029790081083774567, 0.046601444482803345, 0.030312715098261833, -0.024803292006254196, 0.019337421283125877, 0.011846348643302917, 0.0035713256802409887, -0.0021694714669138193, 0.029202120378613472, 0.003987798932939768, 0.00044709621579386294, -0.015385009348392487, 0.04912750422954559, -0.036649640649557114, 0.008187917061150074, 0.004153843503445387, -0.008530895225703716, -0.022342560812830925, 0.025739675387740135, 0.019892718642950058, 0.007066433783620596, 0.009167853742837906, -0.005501256790012121, 0.011835460551083088, 0.015308791771531105, 0.020818214863538742, -0.007262421306222677, 0.007883047685027122, 0.016539156436920166, 0.017421100288629532, -0.028657710179686546, 0.005574752110987902, 0.0053515443578362465, 0.009053528308868408, 0.00998446810990572, 0.02380157820880413, -0.010975292883813381, -0.025478359311819077, 0.012630297802388668, -0.011323715560138226, -0.0017339439364150167, 0.01917409896850586, 0.025347700342535973, -0.01712711900472641, 0.0007853105198591948, 0.008574447594583035, -0.013348918408155441, -0.03264278545975685, -0.01014234684407711, 0.010496213100850582, 0.0055801961570978165, -0.019359197467565536, 0.02989896386861801, 0.02153683453798294, 0.025521911680698395, -0.02086176723241806, 0.015003922395408154, -0.0010139624355360866, 0.04154932498931885, 0.02269098348915577, 0.018052615225315094, 0.011966118589043617, 0.01734488271176815, 0.011476149782538414, 0.004333498887717724, -0.010964404791593552, 0.019435415044426918, -0.006222599186003208, -0.02336605079472065, 0.018466366454958916, 0.03897971287369728, 0.014241749420762062, 0.00086424988694489, -0.02560901828110218, -0.015885865315794945, 0.015483003109693527, 0.05078250914812088, 0.005030342843383551, -0.015297903679311275, 0.003326341276988387, 0.022320784628391266, -0.008100811392068863, -0.0009942275937646627, 0.00030010566115379333, -0.0037537026219069958, 0.018553471192717552, 0.01736665889620781, -0.0058142924681305885, -0.03747714310884476, -0.005803403910249472, -0.014176420867443085, 0.004183785989880562, 1.606645673746243e-05, -0.006151826120913029, 0.007229756563901901, 0.032555680721998215, -0.004464156925678253, -0.008612556383013725, -0.0003967383527196944, 0.008247802034020424, -0.02495572715997696, -0.03408002853393555, 0.013925991952419281, -0.01861880160868168, 0.02630586177110672, 0.015330567955970764, -0.012325428426265717, 0.030530478805303574, 0.06236753985285759, -0.003688373602926731, 0.009135189466178417, 0.02006692998111248, 0.012390757910907269, -0.006837781984359026, -0.002415816765278578, -0.001037099864333868, -0.030290938913822174, -0.017072677612304688, -0.02992074005305767, 0.05060829594731331, 0.012075000442564487, 0.02191792242228985, -0.03534305840730667, -0.009265847504138947, -0.002820040564984083, -0.002432148903608322, 0.040024977177381516, -0.03401469811797142, -0.010458104312419891, 0.014949481934309006, -0.004341664724051952, -0.05100027099251747, 0.004107568878680468, -0.023649143055081367, -0.001475349417887628, 0.02881014533340931, 0.042507484555244446, -0.024759739637374878, -0.006739788223057985, -0.011868124827742577, 0.011900789104402065, -0.002353209536522627, -0.011301938444375992, -0.04634012654423714, 0.007915712893009186, 0.008879316970705986, 0.008775879628956318, 0.008057259023189545, 0.0033208972308784723, 0.0068160053342580795, -0.0021055033430457115, -0.06079963967204094, -0.004562150686979294, 0.007567290682345629, 0.03244679793715477, -0.055703967809677124, -0.02044801600277424, 0.02883192151784897, -0.028875473886728287, -0.04451091215014458, 0.0337316058576107, 0.02146061882376671, -0.040939584374427795, 0.02245144359767437, 0.0017053624615073204, 0.006015723571181297, -0.020001601427793503, -0.0008234191918745637, 0.012521415948867798, -0.00237634708173573, 0.04189774766564369, 0.025892110541462898, 0.021841704845428467, 0.03691095486283302, 0.008492786437273026, -0.016854913905262947, 0.03566970303654671, 0.00040048116352409124, 0.030290938913822174, 0.019021663814783096, 0.02563079446554184, 0.009799368679523468, -0.024454869329929352, -0.006353257689625025, 0.04586104676127434, -0.009821145795285702, -0.014317966997623444, 0.01587497815489769, 0.01996893621981144, -0.016920244321227074, 0.014089315198361874, 0.033927593380212784, 0.0021572222467511892, -0.009870141744613647, -0.01754087023437023, 0.02271275967359543, -0.0012113108532503247, -0.007060989737510681, -0.009412838146090508, -0.0018278545467182994, 0.019958049058914185, 0.03172817826271057, -0.04777736961841583, -0.025456583127379417, 0.059536609798669815, -0.01427441369742155, -0.011432597413659096, 0.028875473886728287, 0.020393576472997665, -0.0010684034787118435, 0.04348742216825485, 0.005226329900324345, 0.0031521304044872522, 0.008579892106354237, -0.005868733394891024, 0.02382335439324379, 0.024999279528856277, 0.006669015157967806, 0.021166637539863586, 0.0034678878728300333, -0.008269578218460083, 0.045904599130153656, 0.02165660634636879, 0.0030949674546718597, 0.007115430664271116, 0.01043088361620903, -0.008313131518661976, 0.021133972331881523, -0.035713255405426025, -0.024759739637374878, -0.024781515821814537, 0.02587033435702324, -0.014317966997623444, 0.017181560397148132, -0.032773446291685104, 0.020513346418738365, 0.0020837269257754087, 0.001652282546274364, -0.01919587515294552, 0.034319568425416946, -0.033688053488731384, 0.039371687918901443, 0.0003036783600691706, -0.00133856653701514, -0.010713976807892323, -0.003495108336210251, 0.0022402445320039988, -0.021406177431344986, -0.0008846652344800532, -0.015820536762475967, 0.018194161355495453, -0.03580036014318466, 0.028439946472644806, -0.004984067752957344, -0.018292155116796494, 0.03205482289195061, 0.0005280771292746067, 0.002739740302786231, -0.05235040560364723, 0.021852592006325722, 0.020154034718871117, 0.045948151499032974, 0.012270987965166569, 0.02898435667157173, -0.002048340393230319, 0.026175202801823616, -0.03336140885949135, 0.01726866513490677, -0.026218757033348083, -0.0006121203186921775, -0.033905815333127975, -0.019631402567029, -0.02129729464650154, -0.05008566379547119, 0.04059116542339325, -0.0008111699717119336, -0.022799864411354065, 0.014078427106142044, -0.02076377347111702, 0.01972939632833004, 0.01628872938454151, 0.008786767721176147, -0.03375338017940521, -0.0027383791748434305, 0.027394680306315422, -0.037564247846603394, -0.028897250071167946, -0.006293372716754675, -0.00923862773925066, 0.021841704845428467, -0.022756312042474747, -0.0035468272399157286, 0.04472867399454117, -0.00013865427172277123, 0.000498474866617471, 0.03475509583950043, 0.02789553627371788, 0.00691399909555912, -0.002056506462395191, -0.005830624606460333, 0.0665050521492958, -0.02110130712389946, -0.006674459204077721, -0.005912285763770342, -0.023496709764003754, -0.01052887737751007, 0.002229356439784169, -0.011650361120700836, -0.026697836816310883, -0.003032360225915909, -0.04089603200554848, -0.009233183227479458, 0.02040446363389492, 0.009663267061114311, -0.011301938444375992, 0.0052099977619946, 0.033034760504961014, -0.004850687459111214, -0.01587497815489769, -0.010953516699373722, -0.0530036985874176, -0.013882439583539963, 0.021362625062465668, -0.00029244992765598, -0.016266953200101852, -0.04427137225866318, 0.02240789122879505, -0.04379229247570038, -0.01381711009889841, 0.024607304483652115, 0.0039360797964036465, 0.015929419547319412, 0.04141866788268089, -0.015134581364691257, -0.022821642458438873, 0.06994571536779404, -0.030443372204899788, 0.014154643751680851, 0.020480681210756302, -0.012641185894608498, 0.0014522119890898466, -0.00032324306084774435, 0.03386226296424866, 0.021275518462061882, 0.0065873535349965096, -0.015940306708216667, 0.012162106111645699, 0.015940306708216667, -0.007180759683251381, -0.003549549262970686, 0.005313435569405556, 0.02563079446554184, 0.007921156473457813, 0.00980481319129467, -0.029093237593770027, 0.027764879167079926, -0.007039213553071022, -0.003258290234953165, -0.00963604636490345, -0.027046257629990578, 0.001965317875146866, -0.011639473028481007, 0.015700766816735268, -0.016049189493060112, -0.003519606776535511, -0.0028635933995246887, 0.024454869329929352, -0.0064185867086052895, 0.018488142639398575, -0.008634332567453384, -0.009712263941764832, -0.05012921616435051, -0.00999535620212555, 0.013109378516674042, -0.014187308959662914, -0.03327430039644241, 0.017878403887152672, -0.028287511318922043, -0.01647382788360119, 0.019555184990167618, 0.015820536762475967, 0.0015270683215931058, -0.05330856889486313, -0.005286215338855982, -0.02835284173488617, 0.010855522938072681, 0.03168462589383125, -0.010017132386565208, -0.0065002478659152985, 0.02358381450176239, 0.020752886310219765, -0.004733639769256115, -0.03425423800945282, -0.001049349084496498, -0.02563079446554184, 0.011029734276235104, -0.013697340153157711, -0.012652073986828327, 0.016615374013781548, 0.02837461791932583, 0.01007157377898693, -0.023017628118395805, 0.004227338824421167, 0.009320288896560669, 0.006511136423796415, -0.011476149782538414, -0.0027329351287335157, 0.0022252732887864113, -0.0015678990166634321, 0.0014154644450172782, 0.01746465265750885, -0.01847725547850132, -0.002610442927107215, 0.009004531428217888, 0.035735033452510834, -0.042529262602329254, -0.0012269626604393125, 0.03808687999844551, 0.02859238162636757, -0.0067670089192688465, -0.003802699502557516, -6.900814241816988e-06, -0.006810561288148165, 0.008672441355884075, 0.016343168914318085, 0.019860055297613144, -0.024411316961050034, -0.019304756075143814, -0.023191839456558228, 0.0006352576892822981, 0.0027179638855159283, -0.01702912524342537, -0.017791299149394035, -0.022364336997270584, 0.03013850376009941, 0.013675563968718052, -0.01736665889620781, 0.01859702542424202, 0.014938593842089176, -0.01281539723277092, 0.012662962079048157, 0.003478775965049863, 0.005710854660719633, 0.04194130003452301, -0.036192335188388824, -0.022756312042474747, -0.025696123018860817, 0.007033769506961107, 0.014982146210968494, -0.019457191228866577, -0.0195116326212883, 0.012412534095346928, -0.015199909918010235, -0.013414246961474419, 0.021406177431344986, 0.01291339099407196, 0.011672137305140495, 0.03919747471809387, 0.002124557737261057, -0.005759851541370153, 0.030443372204899788, -0.023039406165480614, 0.05143579840660095, 0.009037195704877377, -0.02052423357963562, -0.007578178774565458, 0.012347204610705376, -0.0036366546992212534, -0.018880117684602737, 0.019860055297613144, 0.012532304041087627, -0.03654075786471367, 0.04677565395832062, -0.014786158688366413, -0.029136789962649345, 0.029419884085655212, 0.003051414620131254, 0.03066113591194153, 0.010931740514934063, -0.020197588950395584, -0.021133972331881523, 0.008960978128015995, -0.01984916627407074, -0.021155748516321182, 0.032533906400203705, -0.004524041898548603, 0.016680704429745674, -0.007970153354108334, 0.012281876057386398, -0.0017979120602831244, 0.024825068190693855, 0.02902790904045105, -0.041614655405282974, 0.0009234544122591615, -0.020796438679099083, 0.002263382077217102, 0.028461722657084465, 0.014002209529280663, 0.014339743182063103, -0.001459017163142562, 2.851769568223972e-05, 0.012456086464226246, 0.01394776813685894, 0.006979328580200672, -0.007289641536772251, 0.010327446274459362, -0.015700766816735268, 0.031031334772706032, 0.01585320197045803, 0.009886474348604679, -0.019261203706264496, -0.00645669549703598, 0.0013555793557316065, -0.04281235486268997, 0.014209085144102573, 0.050477638840675354, 0.01640849933028221, -0.01662626303732395, 0.014753494411706924, -0.010365555062890053, -0.03919747471809387, 0.019718507304787636, 0.0011282884515821934, 0.01371911633759737, 0.00045492209028452635, -0.008857540786266327, 0.003952411934733391, 0.06933598220348358, 0.017845740541815758, 0.015461226925253868, -0.033448513597249985, 0.013425135053694248, 0.006690791342407465, 0.011389044113457203, -0.02356203831732273, -0.007659839931875467, -0.02382335439324379, 0.002693465445190668, 0.0069956607185304165, -0.01840103790163994, -0.034842200577259064, -0.01609274186193943, 0.012978719547390938, -0.015036587603390217, -0.0011065120343118906, 0.0018509919755160809, -0.04808223620057106, 0.019522519782185555, 0.03577858582139015, -0.027960866689682007, -0.006728900130838156, -0.0032065713312476873, 0.024215329438447952, -0.029398106038570404, -0.025979215279221535, -0.02748178504407406, 0.04668854922056198, 0.04032984748482704, -0.012183882296085358, -0.012434310279786587, 0.01280450914055109, 0.005484924651682377, 0.008166140876710415, 0.017159784212708473, 0.0048887962475419044, 0.004978623706847429, -0.01014234684407711, -0.008057259023189545, -0.03447200357913971, 0.0007744223694317043, -0.0549200177192688, -0.02189614623785019, -0.01070853229612112, 0.025064608082175255, -0.013305365107953548, -0.0014807935804128647, 0.027764879167079926, 0.021427953615784645, -0.002820040564984083, 0.003013306064531207, -0.0022906025405973196, -0.03360094875097275, -0.01282628532499075, -0.021613052114844322, -0.046862758696079254, -0.02362736687064171, -0.0015910364454612136, -0.020513346418738365, 0.017072677612304688, -0.015014810487627983, 0.025500135496258736, -0.028026195243000984, 0.0009772148914635181, -0.01756264641880989, -0.04860486835241318, 0.03190239146351814, -0.027982642874121666, 0.014807935804128647, 0.026806717738509178, 0.005250828340649605, 0.022516772150993347, -0.013120266608893871, 0.01702912524342537, 0.011160392314195633, 0.0013773557730019093, 0.008296798914670944, 0.025347700342535973, 0.018390148878097534, -0.032795220613479614, -0.016375834122300148, -0.004126623272895813, 0.039132148027420044, 0.025042831897735596, 0.007910268381237984, -0.011312827467918396, 0.020992426201701164, -0.02360559068620205, -0.010752085596323013, 0.026218757033348083, -0.01659359782934189, -0.008128032088279724, -0.01972939632833004, 0.01705090142786503, -0.003301842836663127, -0.013425135053694248, -0.0038299199659377337, -0.02110130712389946, 0.026414742693305016, 0.008813988417387009, -0.003802699502557516, -0.007632619701325893, 0.0053216018714010715, -0.007910268381237984, 0.020295582711696625, -0.05335212126374245, 0.008133476600050926, -0.015395897440612316, 0.026131650432944298, -0.011606807820498943, 0.00266488385386765, 0.023736249655485153, 0.021188413724303246, 0.017638863995671272, 0.03061758354306221, 0.004126623272895813, -0.01061053853482008, 0.04237682744860649, -0.026806717738509178, 0.01664803922176361, -0.024759739637374878, 0.023518485948443413, 0.0015855923993512988, 0.020872656255960464, -0.021613052114844322, 0.018346596509218216, -0.0029996957164257765, 0.017791299149394035, 0.010006244294345379, -0.005422317422926426, 0.038870830088853836, -0.04146222025156021, -0.006380477920174599, -0.032076600939035416, -0.030508702620863914, 0.018531695008277893, 0.011133171617984772, -0.01405664999037981, -0.008901093155145645, 0.007289641536772251, 0.053656987845897675, 0.007148095406591892, -0.021830815821886063, -0.0041701761074364185, 0.015962082892656326, 2.1840172848897055e-05, 0.01236898172646761, -0.017987286671996117, -0.007262421306222677, -0.014307078905403614, 0.02404111810028553, 0.01726866513490677, -0.012662962079048157, 0.004910572897642851, -0.02452019974589348, 0.0066472385078668594, 0.008770435117185116, 0.014230861328542233, 0.0018428257899358869, -0.0254130307585001, -0.006184490863233805, -0.00495684752240777, 0.03249035403132439, -0.007316862232983112, 0.010621427558362484, 0.013642899692058563, -0.005944950506091118, -0.04063471779227257, -0.027982642874121666, 0.012869837693870068, 0.019065216183662415, -0.0027070757932960987, 0.008803099393844604, -0.0026608009357005358, 0.014927705749869347, 0.03087889961898327, -0.005376042798161507, -0.045469071716070175, -0.02809152379631996, -0.023975789546966553, 0.013544905930757523, -0.015907641500234604, -0.02695915289223194, -0.013980433344841003, -0.03514707088470459, 0.020948873832821846, 0.001961234724149108, 0.0016223399434238672, -0.01328358892351389, -0.05078250914812088, 0.023039406165480614, -0.005944950506091118, 0.015276127494871616, 0.037738457322120667, 0.022342560812830925], [-0.003564100479707122, 0.03379605710506439, 0.004371264483779669, 0.02735971100628376, -0.04633330553770065, -0.03115442954003811, -0.03019002638757229, 0.008019225671887398, 0.02564055658876896, 0.02216031774878502, -0.03866000473499298, 0.01202359702438116, 0.01569252461194992, 0.05459363013505936, -0.03046257607638836, -0.031447943300008774, 0.0025433525443077087, 0.030693193897604942, -0.031783390790224075, -0.012107458896934986, 0.03492818400263786, -0.00748461065813899, -0.016635961830615997, -0.006672205403447151, -0.012537247501313686, -0.041469357907772064, 0.0254938006401062, -0.006252899765968323, 0.02815639227628708, -0.0039938888512551785, 0.01868007890880108, -0.029099831357598305, 0.044194843620061874, -0.00635772617533803, -0.043398164212703705, -0.026814613491296768, -0.018858283758163452, 0.025577660650014877, 0.017317334190011024, -0.0072959233075380325, 0.013899991288781166, -0.010288719087839127, 0.002058529993519187, -0.07056918740272522, -0.04149032011628151, 0.08285485208034515, -0.003734443336725235, -0.026688821613788605, 0.0011321259662508965, -0.005917455069720745, -0.004622847773134708, 0.030609332025051117, -0.008721563033759594, -0.08046481013298035, -0.00023929920280352235, -0.0010377821745350957, 0.007799090351909399, -0.04063074290752411, -0.010508854873478413, -0.03601837903261185, -0.01111160684376955, -0.018931662663817406, 0.034131500869989395, 0.021007226780056953, -0.0012729865266010165, -0.0013915715971961617, 0.07136587053537369, 0.03052547201514244, -0.055012937635183334, -0.032957445830106735, 0.050945669412612915, 0.018512357026338577, 0.03597644716501236, 0.009041284210979939, -0.005975109525024891, 0.006672205403447151, -0.025661522522568703, 0.041574183851480484, 0.044194843620061874, -0.0012192630674690008, -0.04771701619029045, 0.030106166377663612, -0.027129093185067177, -0.0035483764950186014, -0.01154139544814825, 0.009895619936287403, -0.028345080092549324, 0.002686178544536233, 0.07669105380773544, 0.0069395131431519985, -0.04318850859999657, 0.024026229977607727, -0.002449008636176586, -0.004882293287664652, -0.0048141563311219215, 0.04102908447384834, 0.02553573064506054, -0.03673119843006134, -0.014738603495061398, 0.004874431528151035, -0.02243286743760109, -0.0069604781456291676, -0.009408176876604557, 0.034299224615097046, -0.010571750812232494, -0.055977340787649155, -0.005351392086595297, 0.04935230687260628, 0.055180661380290985, 0.0052989786490798, 0.047465432435274124, -0.0571933276951313, 0.02478097938001156, 0.041951559484004974, -0.020902400836348534, -0.043817467987537384, -0.02853376790881157, -0.03190918266773224, 0.0029901752714067698, -0.030546436086297035, 0.022265145555138588, 0.020745160058140755, -0.01676175370812416, -0.03438308462500572, 0.012725934386253357, 0.02184583805501461, 0.004528503865003586, 0.03746498376131058, -0.05899634212255478, -0.017810018733143806, 0.042224105447530746, -0.07220447808504105, 0.04624944180250168, -0.006436346098780632, 0.020954813808202744, -0.006514966022223234, 0.00726971635594964, -0.01750602200627327, 0.011625256389379501, -0.042328931391239166, -0.021489428356289864, 0.0006224072421900928, 0.0017139129340648651, 0.019843652844429016, -0.07052725553512573, -0.007804331369698048, -0.019717860966920853, 0.03299937769770622, 0.05002319812774658, 0.010912436991930008, 0.026835579425096512, -0.004541607107967138, -0.016038451343774796, -0.0044813319109380245, -0.041091982275247574, 0.03658444061875343, 0.00601179851219058, 0.045326970517635345, 0.019141316413879395, 0.008150259032845497, 0.02017909847199917, 0.033754125237464905, -0.012275180779397488, -0.006027522496879101, 0.033439647406339645, -0.04897493124008179, 0.005215117242187262, 0.020053306594491005, -0.03125925734639168, -0.006043246481567621, -0.024382639676332474, -0.022915069013834, -0.01938241720199585, 0.033439647406339645, -0.08520296216011047, -0.03448791056871414, 0.01853332109749317, 0.0263533778488636, -0.019476760178804398, 0.006598826963454485, 0.023376304656267166, 0.04180480167269707, -0.0025682488922029734, -0.019256625324487686, 0.04771701619029045, 0.04679454118013382, -0.020221028476953506, -0.015095013193786144, -0.04423677548766136, 0.03614417091012001, 0.01410964410752058, -0.008003502152860165, 0.015703007578849792, 0.0344669483602047, 0.047842804342508316, 0.03417343273758888, -0.04654295742511749, -0.03073512390255928, 0.0351378358900547, -0.02478097938001156, 0.00859577115625143, -0.03234945237636566, -0.00824460294097662, -0.018554287031292915, -0.032894548028707504, -0.03945668786764145, 0.00746888667345047, 0.01054554432630539, 0.009355763904750347, 0.02515835501253605, 0.02178294211626053, -0.045326970517635345, -0.037024714052677155, 0.004287403076887131, 0.05199393630027771, 0.008045432157814503, 0.016311001032590866, 0.05639664828777313, 0.011950219050049782, -0.015136944130063057, -0.050148990005254745, -0.02029440738260746, -0.015053083188831806, -0.03444598242640495, -0.04696226492524147, -0.06038005277514458, -0.0008490944746881723, -0.028345080092549324, -0.051700420677661896, -0.012117940932512283, -0.013239584863185883, 0.03817780315876007, 0.025032563135027885, -0.0408194325864315, -0.00299803726375103, -0.012086492963135242, 0.022202249616384506, -0.04406905174255371, -0.01523128803819418, 0.08159693330526352, 0.014172540046274662, -0.026248550042510033, -0.009167076088488102, 0.007379784248769283, -0.023585958406329155, -0.023544028401374817, -0.014099162071943283, 0.03153180703520775, 0.03396378085017204, -0.012086492963135242, -0.003980785608291626, 0.0503167100250721, -0.02178294211626053, -0.054845213890075684, -0.013732269406318665, 0.00726971635594964, -0.02543090470135212, -0.00953396875411272, 0.03452984243631363, -0.018239807337522507, 0.03260103613138199, -0.003320378717035055, -0.02859666384756565, -0.0012349869357421994, -0.03591355308890343, -0.052664823830127716, 0.00720157939940691, -0.016803685575723648, 0.027862878516316414, 0.033229995518922806, -0.01996944472193718, 0.036856990307569504, 0.018491391092538834, -0.055390313267707825, -0.07086270302534103, 0.013271032832562923, 0.0029220380820333958, -0.010744714178144932, -0.01862766593694687, -0.026227585971355438, -0.07690070569515228, -0.018763940781354904, -0.00019098074699286371, -0.06612454354763031, 0.003564100479707122, 0.002058529993519187, 0.0075632305815815926, 0.04033723101019859, 0.018606700003147125, 0.018774423748254776, 0.05975109338760376, -0.017904363572597504, 0.0029534860514104366, 0.03387991711497307, 0.05882862210273743, 0.005146980285644531, -0.0028879696037620306, -0.003946716897189617, 7.632678170921281e-05, -0.009135628119111061, 0.010194375179708004, 0.012306628748774529, -0.0006007867632433772, -0.05392274260520935, -0.09400838613510132, 0.008763493970036507, 0.028198324143886566, 0.011048710905015469, -0.01912035048007965, -0.024760015308856964, -0.03035774827003479, 0.03167856112122536, -0.10306539386510849, -0.0028565216343849897, -0.009706932120025158, -0.028198324143886566, 0.010582232847809792, -0.055012937635183334, 0.05706753581762314, 0.021174948662519455, 0.002239355817437172, -0.02066130004823208, 0.013941922225058079, -0.015189357101917267, -0.022579623386263847, 0.004027957562357187, 0.00010777472925838083, 0.027904808521270752, 0.010870506055653095, 0.020053306594491005, -0.06784369796514511, -0.04092425853013992, -0.006546413991600275, -0.0019864619243890047, -0.06864038109779358, -0.02645820379257202, -0.022684451192617416, 0.00859053060412407, 0.005175807513296604, -0.05157462880015373, 0.015703007578849792, -0.023145686835050583, 0.04144839197397232, -0.0004206162702757865, -0.004434159956872463, 0.016048934310674667, 0.02130074054002762, 0.02398429811000824, -0.031825318932533264, 0.014665224589407444, -0.0020113580394536257, -0.013239584863185883, -0.02880631759762764, 0.01150994747877121, -0.03662637248635292, 0.004035819321870804, 0.04406905174255371, 0.03369123116135597, -0.014770051464438438, 0.03601837903261185, 0.014235435985028744, 0.00827605091035366, 0.04180480167269707, 0.01443460676819086, 0.06147024780511856, -0.030001338571310043, -0.03245427832007408, -0.019665447995066643, -0.008454255759716034, 0.025682488456368446, 0.011782496236264706, -0.012117940932512283, -0.01574493758380413, -0.0367102324962616, 0.07279150933027267, -0.028261220082640648, 0.039917923510074615, 0.019413864240050316, 0.0004599261737894267, -0.0046176062896847725, 0.007264475338160992, 0.005207255482673645, -0.0022537694312632084, 0.009224730543792248, -0.0002347130503039807, 0.022307075560092926, -0.056145064532756805, -0.012946070171892643, 0.029917478561401367, 0.05081987753510475, 0.033271923661231995, 0.0107656791806221, 0.01755843497812748, 0.03442501649260521, -0.028345080092549324, -0.007390266750007868, 0.002785763703286648, 0.027779018506407738, -0.014675707556307316, 0.014864395372569561, -0.02660496160387993, -0.027988670393824577, 0.0012369524920359254, -0.0014190884539857507, -0.049603890627622604, 0.017694709822535515, 0.026646891608834267, -0.0012631590943783522, 0.006305312737822533, -0.02301989495754242, 0.03056740202009678, -0.03989695757627487, 0.02708716318011284, 0.010660853236913681, 0.013365376740694046, 0.015881212428212166, -0.0018069464713335037, 0.022789277136325836, -0.05778035521507263, -0.028722455725073814, 0.005665871314704418, -0.002489628968760371, -0.04314658045768738, 0.016562584787607193, -0.0379052571952343, -0.014707155525684357, -0.00014110626943875104, -0.0006905444315634668, 0.010026653297245502, 0.006766549311578274, -0.020891917869448662, -0.03415246680378914, -0.015252253040671349, 0.030777055770158768, -0.012893657200038433, -0.0023612165823578835, -0.014214470982551575, 0.00259052449837327, -0.012243732810020447, -0.031720492988824844, -0.01148898247629404, -0.04654295742511749, 0.012725934386253357, 0.007500334642827511, -0.02580828033387661, -0.004746018908917904, -0.011698635295033455, 0.060254260897636414, 0.03545231744647026, 0.02870148979127407, 0.020042823627591133, 0.005613457877188921, -0.02103867568075657, -0.01777857169508934, 0.044152915477752686, -0.07643947005271912, -0.005613457877188921, -0.03197207674384117, 0.012631591409444809, 0.00034461705945432186, 0.029519136995077133, 0.05337764322757721, 0.033062271773815155, 0.04352395609021187, 0.011688152328133583, 0.03245427832007408, -0.021510394290089607, 0.050945669412612915, -0.010954366996884346, -0.034089572727680206, -0.012296146713197231, -0.02977072075009346, -0.02815639227628708, 0.01906793750822544, -0.025305112823843956, -0.014224953949451447, 0.041637077927589417, -0.009906102903187275, -0.007987777702510357, -0.0330832377076149, -0.00010376183490734547, 0.028785351663827896, -0.03476046025753021, -0.06746632605791092, 0.027003301307559013, -0.029477206990122795, 0.03543135151267052, 0.007662815973162651, -0.0246342234313488, -0.020388750359416008, -0.022768311202526093, 0.029225623235106468, 0.00958638172596693, -0.0059803505428135395, -0.0026665236800909042, 0.036060310900211334, -0.013019449077546597, -0.0029587275348603725, 0.043440092355012894, -0.03503300994634628, -0.018617182970046997, -0.017149612307548523, 0.023040860891342163, -0.008716321550309658, -0.007290681824088097, -0.005359253846108913, 0.04335623234510422, 0.008412324823439121, -0.000596200639847666, -0.007353577762842178, 0.027317781001329422, 0.02260058932006359, 0.008784458972513676, 0.0015986037906259298, 0.02966589480638504, 0.020304890349507332, 0.011321259662508965, 0.00824460294097662, -0.06675350666046143, 0.02838701196014881, 0.020745160058140755, -0.04224507138133049, -0.014948256313800812, -0.016342448070645332, -0.022956999018788338, 0.022244179621338844, -0.008642943575978279, -0.054425910115242004, -0.009523485787212849, -0.009654519148170948, -0.004607123788446188, 0.00558200990781188, -0.031343117356300354, -0.007694263942539692, 0.012568695470690727, -0.00286438362672925, 0.007385025732219219, 0.01595459133386612, -0.013082345016300678, 0.002413629787042737, 0.008145017549395561, -0.06188955530524254, 0.020682264119386673, -0.015147426165640354, 0.0021908734925091267, -0.038198769092559814, 0.03331385552883148, 0.0020480474922806025, -0.01719154231250286, 0.004038440063595772, 0.004331954289227724, 0.009953274391591549, 0.013407306745648384, -0.02907886542379856, 0.014183023013174534, 0.07505576312541962, 0.03083995170891285, -0.03025292232632637, 0.010839058086276054, 0.006756066810339689, -0.011698635295033455, 0.02570345252752304, 0.009916584938764572, 0.007599920034408569, -0.007605161052197218, -0.005144359543919563, -0.018397048115730286, -0.013333928771317005, -0.01948724314570427, 0.02429877780377865, -0.0044865733943879604, -0.002861762885004282, -0.0048639485612511635, -0.005865041632205248, 0.009308591485023499, 0.027883844450116158, 0.013166205957531929, -0.02232803963124752, 0.03851325064897537, 0.028932109475135803, 0.015126461163163185, 0.026583995670080185, 0.00592793757095933, -0.01183491013944149, -0.04182576760649681, 0.0018580494215711951, -0.029833616688847542, -0.013805647380650043, 0.029036935418844223, 0.0052465652115643024, -0.003391136648133397, 0.010309684090316296, 0.02436167374253273, -0.02045164629817009, -0.0027805224526673555, 0.0022170799784362316, -0.008265567943453789, 0.0004445298109203577, -0.004945189226418734, 0.014602328650653362, 0.016992373391985893, 0.014424123801290989, -0.03159470111131668, 0.00447084940969944, -0.01847042515873909, 0.0054667009972035885, -0.018931662663817406, -0.017338300123810768, 0.08021322637796402, -0.014906325377523899, 0.0444464273750782, -0.010141962207853794, 0.008040190674364567, -0.016562584787607193, 0.004428918939083815, 0.0030478299595415592, -0.04209831357002258, 0.0016156381461769342, 0.016845615580677986, -0.04364974796772003, 0.01536756195127964, -0.005461459513753653, -0.007479369640350342, 0.00453636609017849, -0.06713087856769562, 0.01011575572192669, -0.01638437993824482, -0.028261220082640648, -0.008863079361617565, -0.030420644208788872, -0.023481132462620735, -0.0220554918050766, -0.013218618929386139, -0.020577438175678253, 0.02597600221633911, -0.013260549865663052, -0.009361004456877708, -0.05526452139019966, 0.000873990764375776, 0.04796859622001648, -0.005283254664391279, 0.023166652768850327, 0.04149032011628151, -0.0032391382846981287, 0.03310420364141464, 0.007930123247206211, 0.015755420550704002, 0.0391002781689167, 0.05564189702272415, 0.00763136800378561, 0.03870193660259247, 0.02842894196510315, -0.021112052723765373, -0.027548398822546005, -0.022474797442555428, 0.014172540046274662, -0.019392898306250572, 0.02478097938001156, 0.0013994334731251001, 0.04023240506649017, 0.007196337915956974, 0.036542512476444244, 0.02870148979127407, 0.0010318856220692396, -0.02013716660439968, -0.02060888707637787, 0.03601837903261185, 0.0004510814615059644, -0.0008196120616048574, 0.012998484075069427, 0.023376304656267166, 0.006242416799068451, -0.006745584309101105, -0.02784191258251667, -0.03352350741624832, -0.006509724538773298, 0.0236069243401289, 0.027611294761300087, 0.010880989022552967, -0.0006479587173089385, -0.009041284210979939, -0.034089572727680206, 0.012296146713197231, 0.01991703175008297, -0.010105272755026817, -0.02970782481133938, -0.011174502782523632, -0.021992595866322517, -0.02110157161951065, 0.01857525296509266, 0.015021635219454765, 0.018554287031292915, 0.010891471058130264, 0.006614550948143005, -0.02832411602139473, 0.0696047842502594, -0.012883174233138561, -0.006321036722511053, 0.0018331530736759305, -0.01868007890880108, 0.007301164325326681, 0.006006557494401932, 0.004793190862983465, -0.027401642873883247, -0.03304130584001541, 0.012778348289430141, -0.011908288113772869, -0.014675707556307316, 0.046081721782684326, -0.0034461705945432186, -0.03662637248635292, -0.02677268348634243, -0.005005464423447847, -0.0032705862540751696, -0.04276920482516289, -0.025682488456368446, 0.008679633028805256, -0.03132215142250061, -0.02135315351188183, 0.004489194136112928, -0.010514096356928349, 0.032307520508766174, -0.004326712805777788, -0.005697319284081459, 0.021185431629419327, -0.013271032832562923, -0.01621665619313717, -0.0011314707808196545, 0.026583995670080185, -0.019340485334396362, -0.012652556411921978, -0.012044562958180904, -0.005306840408593416, 0.01719154231250286, -0.012621108442544937, -0.008024467155337334, -0.021059639751911163, 0.028449907898902893, -0.030001338571310043, -0.015828799456357956, 0.014298331923782825, -0.0373811237514019, 0.0004255299863871187, -0.012600143440067768, -0.024214917793869972, 0.03845035284757614, 0.013669373467564583, 0.02034682035446167, 0.017631813883781433, -0.0006240451475605369, 0.004334575030952692, 0.0041039567440748215, -0.04696226492524147, 0.0005454252823255956, 0.026835579425096512, -0.026793649420142174, 0.03352350741624832, 0.013271032832562923, -0.03972923755645752, -0.009696449153125286, -0.055222589522600174, -0.01488536037504673, 0.020849987864494324, 0.0013365376507863402, 0.027799982577562332, -0.032370418310165405, -0.019665447995066643, -0.048262111842632294, -0.022076457738876343, -0.018376082181930542, -0.008695356547832489, -0.0017283266643062234, -0.01367985550314188, 0.021824873983860016, -0.02880631759762764, -0.025787314400076866, 0.006148073356598616, -0.03404764086008072, 0.004559951834380627, 0.003587686223909259, 0.03205593675374985, 0.005770697724074125, -0.032894548028707504, 0.02939334511756897, 0.039435721933841705, -0.03352350741624832, -0.04035819694399834, -0.01612231321632862, -0.003569341730326414, 0.008826389908790588, -0.03811490908265114, 0.008679633028805256, -0.006923789158463478, -0.01239048969000578, -0.016531135886907578, -0.01239048969000578, -0.02055647224187851, 0.013585511595010757, -0.014371710829436779, -0.0033701714128255844, 0.014979704283177853, 0.007799090351909399, -0.0012408834882080555, 0.009093697182834148, 0.05572575703263283, 0.00010392563126515597, -0.02912079729139805, -0.00851191021502018, -0.005508631467819214, 0.010634646750986576, -0.005613457877188921, 0.03511686995625496, 0.0107656791806221, 0.0192146934568882, 0.006598826963454485, -0.017002854496240616, 0.013396824710071087, 0.0019379795994609594, 0.0069395131431519985, 0.004895396530628204, 0.002515835454687476, 0.01938241720199585, -0.02232803963124752, -0.02174101211130619, 0.01933000236749649, -0.01767374388873577, 0.003771132556721568, -0.009958515875041485, -0.016772236675024033, 0.00599607452750206, 0.036815058439970016, 0.03090284764766693, 0.008548599667847157, 0.0034461705945432186, -0.005734008736908436, -0.01033065002411604, -0.008527634665369987, 0.02098626084625721, -0.004182576667517424, 0.0051076700910925865, 0.03073512390255928, -0.019392898306250572, -0.026416273787617683, 0.039708271622657776, 0.010335891507565975, 0.024068159982562065, -0.008270809426903725, 0.02960299886763096, -0.012956553138792515, -0.004693605937063694, 0.0030661746859550476, -0.006881858687847853, 0.02425684779882431, -0.014665224589407444, 0.039708271622657776, -0.022663485258817673, 0.0006800618139095604, 0.024927737191319466, -0.034404050558805466, -0.03331385552883148, -0.016426309943199158, -0.015021635219454765, 0.007505576126277447, -0.016468239948153496, 0.021657150238752365, 0.009989963844418526, 0.01488536037504673, 0.014350744895637035, 0.01202359702438116, -0.02939334511756897, 0.013187170960009098, 0.027129093185067177, 0.013103310018777847, 0.008391359820961952, 0.005477183498442173, 0.016321483999490738, -0.011719600297510624, -0.030169060453772545, 0.02012668363749981, 0.02515835501253605, -0.008873561397194862, 0.016426309943199158, 0.04578820616006851, 0.023585958406329155, -0.023229548707604408, 0.01858573593199253, -0.015021635219454765, -0.005118153057992458, 0.01266303937882185, 0.006735101342201233, 0.009313832968473434, -0.01793581061065197, 0.033754125237464905, 0.0031343118753284216, -0.02473904937505722, 0.00797729566693306, 5.884205165784806e-05, -0.003050450701266527, -0.0015330873429775238, -0.007259233854711056, -0.05664823204278946, -0.006509724538773298, 0.0059593855403363705, 0.004861328285187483, -0.01526273600757122, 0.012600143440067768, 0.010744714178144932, 0.0029167968314141035, -0.020797573029994965, -0.034508876502513885, 0.0010168168228119612, 0.0342782586812973, 0.00300589925609529, -0.043230440467596054, 0.01762133091688156, -0.013753234408795834, 0.02178294211626053, 0.0014112264616414905, -0.014245918951928616, 0.014224953949451447, 0.03501204401254654, 0.0031290703918784857, 0.035473279654979706, 0.02677268348634243, 0.005545320920646191, 0.005571527406573296, -0.0012867450714111328, 0.015241770073771477, -0.04671068117022514, -0.020095236599445343, -0.04448835924267769, 0.02457132749259472, 0.00160253478679806, 0.01266303937882185, -0.03128022328019142, -0.004732915665954351, 0.010351615026593208, -0.00677179079502821, 0.040085647255182266, -0.029540102928876877, -0.038408420979976654, -0.003558858996257186, -0.005985592026263475, -0.05438397824764252, -0.0008477841620333493, -0.012296146713197231, 0.022998930886387825, 0.032475244253873825, 0.045326970517635345, -0.018805870786309242, 0.00014544674195349216, -0.015870729461312294, 0.016677893698215485, -0.00031054846476763487, -0.01583928056061268, -0.0261856559664011, 0.021824873983860016, 0.010786645114421844, 0.010136720724403858, -0.008260326460003853, -0.010042376816272736, -0.017065750434994698, 0.0012061597080901265, -0.012998484075069427, 0.0031919663306325674, 0.01450798474252224, 0.016143277287483215, -0.04562048614025116, -0.0008608874632045627, 0.040127575397491455, -0.007856744341552258, 0.0014557777903974056, 0.052497100085020065, -0.012547729536890984, -0.032789722084999084, -0.0010377821745350957, 0.006991926115006208, 0.008480462245643139, 0.006593585480004549, -0.035682935267686844, -0.017443126067519188, 0.009051766246557236, 0.03281068801879883, 0.025368008762598038, -0.006179520860314369, 0.016426309943199158, 0.005131256300956011, -0.010398786514997482, 0.02601793222129345, -0.033817023038864136, 0.016824649646878242, 0.009539210237562656, 0.030504506081342697, 0.021269293501973152, -0.02002185769379139, 0.028890177607536316, 0.06268623471260071, 0.012159871868789196, -0.010922919027507305, 0.018407529219985008, -0.004573055077344179, 0.005173186771571636, 0.012830761261284351, 0.03494914993643761, 0.013700821436941624, 0.014948256313800812, -0.002621972467750311, 0.012096975930035114, 0.004664778243750334, -0.003364930162206292, -0.011226915754377842, -0.0408194325864315, 0.03476046025753021, 0.02163618616759777, -0.0747622475028038, -0.013983852230012417, 0.01638437993824482, -0.029141761362552643, -0.006845169235020876, 0.010818093083798885, -0.00370823685079813, 0.0021188051905483007, 0.021510394290089607, 0.03111249953508377, 0.004892776254564524, 0.015923142433166504, 0.008118811063468456, 0.009644036181271076, 0.04931037873029709, -0.014067714102566242, 0.008186948485672474, 0.001046299352310598, 0.015912659466266632, 0.05446783825755119, 0.01328151486814022, 0.009628312662243843, -0.009245695546269417, -0.00440533272922039, -0.016719823703169823, 0.020545991137623787, -0.018931662663817406, -0.016751272603869438, -0.0006050453521311283, 0.017065750434994698, 0.035850655287504196, -0.007825297303497791, -0.032475244253873825, -0.009172317571938038, -0.032097868621349335, -0.005828352179378271, -0.005912213586270809, 0.0699402317404747, -0.015461905859410763, 0.05757070332765579, 0.002311423886567354, -0.01097533293068409, -0.0022105283569544554, 0.0034828598145395517, -0.005207255482673645, -0.010440717451274395, -0.00746888667345047, -0.01325006689876318, -0.006284347735345364, -0.03318806365132332, 0.03759077563881874, -0.004253334365785122, -0.0009571968112140894, 0.03346061334013939, 0.023523062467575073, -0.0022917690221220255, -0.03813587501645088, 0.003391136648133397, 0.020221028476953506, 0.01895262859761715, 0.007757159415632486, 0.041741903871297836, -0.0051076700910925865, 0.0007134752231650054, -0.026835579425096512, 0.02436167374253273, -0.01159380842000246, -0.0005369081627577543, -0.009617829695343971, 0.006022281479090452, -0.037716567516326904, -0.04402712360024452, 0.02501159906387329, 6.346916052279994e-05, 0.01605941727757454, 0.004549469333142042, -0.012725934386253357, 0.014633776620030403, 0.017474574968218803, 0.017285887151956558, -0.009848447516560555, -0.0236069243401289, -0.005073601845651865, -0.017055269330739975, -0.01523128803819418, -0.011048710905015469, 0.017925327643752098, -0.010880989022552967, -0.00832846388220787, 0.001888187020085752, 0.03780042752623558, 0.028764385730028152, -0.0008785769459791481, 0.02281024307012558, -0.034781426191329956, 0.015944108366966248, -0.004746018908917904, 0.002725488506257534, 0.02935141511261463, -0.013239584863185883, -0.014287849888205528, -0.00405678479000926, -0.019791239872574806, 0.0034697565715759993, 0.006268623750656843, 0.013271032832562923, -0.01531514897942543, -0.0019864619243890047, -0.0382407009601593, -0.00370823685079813, 0.016090864315629005, 0.02735971100628376, -0.007961571216583252, -0.0018108774675056338, 0.035368453711271286, -0.002159425523132086, -0.009004594758152962, -0.0015933625400066376, -0.06503435224294662, 0.005346150603145361, 0.015409492887556553, 0.009172317571938038, -0.014916808344423771, -0.04440449923276901, -0.018669595941901207, -0.03251717612147331, -0.0004255299863871187, 0.01793581061065197, 0.01105919387191534, 0.004418435972183943, 0.027988670393824577, -0.0016497067408636212, -0.013271032832562923, 0.06692122668027878, -0.028680525720119476, 0.013218618929386139, 0.00840708427131176, -0.007070546038448811, -0.004628089256584644, -0.010755197145044804, 0.05077794939279556, 0.00721730338409543, 0.011646222323179245, -0.02408912591636181, 0.016730306670069695, 0.038953520357608795, 0.012411455623805523, -0.01319765392690897, 0.0019353588577359915, 0.01148898247629404, 0.029686858877539635, -0.011048710905015469, -0.0021083226893097162, 0.01578686758875847, 0.00019327382324263453, 0.005047394894063473, -0.053838882595300674, -0.027212955057621002, -0.03125925734639168, -0.02408912591636181, 0.011897806078195572, -0.0005473907804116607, -0.021070122718811035, 0.01626906916499138, -0.040882326662540436, -0.012600143440067768, -0.02013716660439968, 0.0026429377030581236, -0.0065831029787659645, -0.021279776468873024, -0.016635961830615997, 0.015210322104394436, 0.017202025279402733, -0.014141092076897621, -0.021887769922614098, -0.02763226069509983, -0.00721730338409543, 0.01349116861820221, 0.013858061283826828, -0.02970782481133938, -0.05354536697268486, 0.030923811718821526, -0.03576679527759552, 0.05253903195261955, 0.027611294761300087, -0.012055044993758202, -0.008401842787861824, -0.004787949379533529, 0.019581586122512817, 0.017118165269494057, 0.012442903593182564, -0.0064730350859463215, -0.025829244405031204, -0.007222544401884079, -0.027779018506407738, 0.00614283187314868, 0.04310464859008789, 0.038366492837667465, 0.026730753481388092, 0.006038005463778973, 0.009418658912181854, 0.006499242037534714, -0.03362833708524704, -0.004531124606728554, -0.007730952929705381, -0.022076457738876343, 0.0022131490986794233, 0.0058231111615896225, 0.04620751366019249, -0.01698189042508602, 0.0059541440568864346, -0.01648920588195324, 0.03251717612147331, -0.06633419543504715, 0.0012788830790668726, 0.0024739049840718508, 0.02366982027888298, 0.014046748168766499, -0.010985814966261387, 0.01746409200131893, -0.009968998841941357, 0.004248093347996473, 0.013690338470041752, 0.00834942888468504, -0.03941475600004196, -0.010566509328782558, -0.05899634212255478, 0.01750602200627327, -0.001291986438445747, -0.02046212926506996, 0.02591310627758503, -0.04520117864012718, 0.022139353677630424, 0.002793625695630908, -0.026751717552542686, 0.011226915754377842, 0.03497011587023735, 0.002408388303592801, 0.01159380842000246, 0.001364054623991251, 0.0017309472896158695, 0.01611183024942875, -0.02821928821504116, -0.010734232142567635, -0.02918369323015213, 0.012788830325007439, 0.018963109701871872, -0.009093697182834148, -0.028932109475135803, 0.009518244303762913, -0.033334821462631226, -0.011122089810669422, 0.011845392175018787, 0.009948032908141613, -0.020304890349507332, 0.041532251983881, 0.01648920588195324, -0.018407529219985008, 0.03482335805892944, 0.00023160100681707263, 0.05736105144023895, 0.018763940781354904, -0.03153180703520775, 0.0038261665031313896, 0.00819218996912241, -0.01180346217006445, -0.011719600297510624, -0.0024359053932130337, 0.011321259662508965, -0.04203541949391365, 0.04335623234510422, 0.02398429811000824, -0.02970782481133938, 0.04228700324892998, -0.011216433718800545, 0.017338300123810768, 0.007709987927228212, -0.012589660473167896, -0.01703430339694023, 0.0053304266184568405, -0.004177335184067488, -0.03094477765262127, 0.03329288959503174, -0.012704969383776188, 0.04733964055776596, 0.008621977642178535, 0.016143277287483215, 0.01354358159005642, 0.0045887790620327, 0.03083995170891285, -0.055767688900232315, -0.013260549865663052, -0.010210099630057812, -0.005676353815943003, 0.02608082816004753, 0.010393545962870121, 0.002236735075712204, -0.014445088803768158, 0.02060888707637787, -0.022244179621338844, 0.02335534058511257, 0.013994335196912289, -0.014791016466915607, -0.005149601027369499, 0.02356499247252941, 0.006934271659702063, 0.018491391092538834, -0.01611183024942875, -0.00851191021502018, 0.01140512153506279, 0.0027123852632939816, -0.016803685575723648, 0.017600366845726967, 0.052497100085020065, 0.02907886542379856, -0.04276920482516289, -0.00907273218035698, 0.003454032586887479, -0.03494914993643761, 0.013166205957531929, -0.005076222587376833, -0.009665001183748245, 0.00942390039563179, -0.0022563899401575327, -0.0020781850907951593, 0.024005264043807983, -0.0032967927400022745, -0.00044616771629080176, -0.053838882595300674, 0.010797127149999142, 0.011751048266887665, 0.03253813832998276, -0.006708894856274128, -0.013742751441895962, 0.008449014276266098, -0.007783366367220879, -0.013931439258158207, 0.009691208600997925, -0.002559076528996229, 0.018763940781354904, 0.03608127310872078, -0.005141738802194595, 0.010267754085361958, 0.01724395528435707, -0.03683602437376976, 0.028659559786319733, 0.03608127310872078, -0.017851950600743294, 0.010162927210330963, -0.0105979572981596, 0.019518690183758736, -0.02013716660439968, -0.04712998494505882, -0.023627888411283493, 0.03639575466513634, 0.021720046177506447, -0.016520652920007706, 0.032894548028707504, 0.022453831508755684, 0.003351826686412096, 0.011530913412570953, 0.018910696730017662, 0.025850210338830948, -0.00040390953654423356, 0.003357068169862032, -0.005372357089072466, -0.05165848881006241, -0.03331385552883148, -0.022621555253863335, -0.02039923332631588, -0.015765903517603874, 0.016562584787607193, -0.035473279654979706, -0.0034068606328219175, 0.014591846615076065, 0.009670242667198181, -2.6697995053837076e-05, 0.023648854345083237, 0.007940606214106083, -0.04624944180250168, -0.024906771257519722, -0.029162727296352386, -0.036437686532735825, -0.015587697736918926, -0.015493353828787804, -0.03813587501645088, -0.007930123247206211, -0.013658890500664711, -0.009885136969387531, -0.02211838774383068, -0.0035247905179858208, -0.007495093625038862, -0.05040057376027107, 0.02002185769379139, -0.008711080998182297, -0.0015265356050804257, 0.04297885671257973, 0.023166652768850327, 0.025514764711260796, -0.020336337387561798, 0.025766348466277122, -0.028093496337532997, -0.004494435619562864, 0.014686189591884613, 0.009067490696907043, 0.03763270750641823, -0.03993888944387436, -0.016908511519432068, -0.0073430947959423065, 0.03889062628149986, 0.00039735788595862687, 0.014424123801290989, -0.005629181861877441, -0.011478499509394169, -0.02767419070005417, 0.0037108573596924543, 0.04905879497528076, -0.011247881688177586, -0.027401642873883247, 0.020388750359416008, 0.01062940526753664, -0.01669885776937008, -0.008071638643741608, -0.008312740363180637, 0.005312081892043352, 0.022956999018788338, 0.010744714178144932, -0.0035929277073591948, -0.010713266208767891, 0.007227785885334015, -0.019571105018258095, 0.03731822595000267, -0.03251717612147331, 0.0427272729575634, -0.028932109475135803, 0.03748594969511032, -0.019885582849383354, -0.012149388901889324, 0.030336784198880196, 0.012495316565036774, 0.00635772617533803, -0.012076010927557945, 0.00574449123814702, -0.03891158849000931, 0.01933000236749649, -0.025368008762598038, -0.010592715814709663, -0.011090641841292381, 0.04010661318898201, 0.0034776185639202595, -0.018648631870746613, -0.03125925734639168, 0.051323045045137405, 0.0025446629151701927, 0.0230827908962965, -0.001960255205631256, 0.011761531233787537, 0.011468017473816872, -0.020472612231969833, 0.005498148966580629, -0.022390935570001602, -0.02484387531876564, 0.0028434183914214373, 0.00210177106782794, -0.010870506055653095, 0.017275404185056686, -0.004929465241730213, 0.04935230687260628, -0.012055044993758202, -0.014602328650653362, -0.02945624105632305, 0.024235881865024567, -0.0013692958746105433, -0.0045704348012804985, -0.020640334114432335, -0.031133465468883514, -0.025619592517614365, -0.012893657200038433, 0.02040971629321575, -0.005152221769094467, 0.016992373391985893, -0.020357303321361542, -0.00574449123814702, 0.0104669239372015, 0.017317334190011024, 0.008653425611555576, 0.00496615469455719, -0.01397337019443512, -0.02794674038887024, 0.005367116071283817, -0.015923142433166504, 0.00797729566693306, 0.01660451479256153, 0.01011575572192669, -0.007070546038448811, -0.02977072075009346, -0.01750602200627327, 0.017254438251256943, -0.04855562746524811, -0.017044786363840103, -0.02543090470135212, -0.0003076002176385373, 0.027443572878837585, 0.01528370101004839, -0.04562048614025116, -0.00033446200541220605, -0.010063341818749905, 0.01858573593199253, -0.031238291412591934, -0.011090641841292381, 0.010508854873478413, -0.041532251983881, 0.008773976936936378, 0.021489428356289864, 0.043440092355012894, 0.004756501410156488, -0.0422031432390213, 0.012149388901889324, -0.02184583805501461, 0.02729681506752968, -0.012516281567513943, 0.006252899765968323], [0.03315296024084091, 0.031538866460323334, 0.05549405515193939, 0.0012193768052384257, -0.042709413915872574, 0.0033338707871735096, -0.039814293384552, 0.042068902403116226, 0.010357096791267395, 0.005463576875627041, -0.05380310118198395, 0.019599702209234238, -0.0051785483956336975, 0.03297361359000206, -0.009037639945745468, -0.03205127641558647, 0.014001616276800632, 0.026414761319756508, -0.018856706097722054, 0.017524437978863716, 0.04752607271075249, 0.03661172837018967, -0.022456388920545578, -0.01610250025987625, -0.006350687704980373, 0.004925545770674944, 0.007308254484087229, 0.004342678934335709, 0.05815859138965607, -0.01746038720011711, 0.05646763741970062, -0.041505251079797745, 0.06041319668292999, -0.004554048180580139, -0.03648362681269646, -0.012118508107960224, 0.014321872964501381, -0.020073680207133293, -0.020227404311299324, 0.017396336421370506, 0.03228186070919037, -0.029233017936348915, 0.00402242224663496, -0.03507449850440025, -0.04214576259255409, 0.08434277027845383, 0.014309062622487545, -0.03517698124051094, 0.0408647358417511, -0.026773449033498764, 0.0006853490485809743, 0.03307609632611275, 0.012682159431278706, -0.08926190435886383, -0.022943180054426193, -0.017524437978863716, -0.0057646180503070354, 0.027285858988761902, 0.01606406830251217, -0.04511774331331253, -0.0077758291736245155, -0.02877184934914112, 0.04181269556283951, -0.02468537539243698, 0.012291446328163147, 0.011657338589429855, 0.012707780115306377, 0.01769097149372101, -0.039225023239851, -0.030488424003124237, 0.011100091971457005, -0.0006505211349576712, 0.037303484976291656, -0.013233001343905926, 0.0037470017559826374, -0.02396799996495247, -0.02208489179611206, 0.03335792198777199, 0.030590906739234924, 0.008755814284086227, -0.008845485746860504, 0.04527146741747856, 0.00736590102314949, -0.03656048700213432, 0.017921557649970055, 0.027362721040844917, -0.04429788887500763, -0.011798251420259476, 0.025992022827267647, -0.020240213721990585, -0.01008167676627636, 0.0016397135332226753, 0.0019215393112972379, 0.027183376252651215, -0.026670966297388077, -0.021982410922646523, -0.004979989491403103, -0.04732110723853111, 0.002345879329368472, 0.07665660977363586, -0.008121706545352936, -0.05013936758041382, 0.006523625925183296, 0.031128937378525734, 0.005188156384974718, -0.02604326233267784, 0.015359504148364067, 0.03650924935936928, 0.055135369300842285, -0.025402750819921494, 0.006661336403340101, -0.04842279106378555, -0.008518824353814125, -0.001576462876982987, -0.013092088513076305, -0.01145877968519926, 0.001553244306705892, -0.004662935622036457, -0.018357105553150177, -0.03443398326635361, 0.007116100750863552, 0.007526028901338577, -0.030872732400894165, -0.04214576259255409, 0.04457971453666687, 0.0020896741189062595, 0.013886324129998684, 0.04527146741747856, -0.0014035243075340986, -0.055955227464437485, 0.05380310118198395, -0.02726023830473423, 0.06538357585668564, -0.011740605346858501, -0.006590879987925291, 0.017639731988310814, 0.006590879987925291, -0.03704727813601494, -0.0054603745229542255, -0.005168940871953964, -0.017127320170402527, 0.019535649567842484, -0.0007025628001429141, 0.009703774005174637, -0.050113745033741, 0.0005476386868394911, -0.043401170521974564, 0.040249843150377274, 0.05467420071363449, -0.023007230833172798, 0.023404348641633987, 0.0042241839691996574, -0.018741413950920105, -0.0005388316349126399, -0.024326687678694725, -0.006392321083694696, 0.013591688126325607, 0.05441799387335777, 0.010094487108290195, -0.015871914103627205, -0.027055274695158005, 0.05088236182928085, -0.0017646136693656445, -0.018626121804118156, 0.031000833958387375, 0.011343487538397312, -0.028976812958717346, 0.026747828349471092, -0.0636926218867302, -0.0003686953568831086, -0.01963813230395317, -0.012451575137674809, -0.02372460626065731, 0.0128807183355093, -0.12144128978252411, -0.03151324391365051, 0.010036840103566647, 0.045476432889699936, 0.01799841783940792, 0.012682159431278706, 0.021867116913199425, 0.07071264833211899, -0.025184975937008858, 0.009261819534003735, 0.0279263723641634, 0.022174563258886337, -0.051599737256765366, -0.01620498113334179, -0.0521121472120285, 0.028976812958717346, 0.025415560230612755, -0.005124105140566826, 0.041351526975631714, 0.03858451172709465, -0.0015324276173487306, 0.0061457231640815735, -0.0038943197578191757, -0.022033650428056717, 0.01492395531386137, -0.02410891279578209, 0.011202574707567692, -0.025582093745470047, 0.013668550178408623, -0.03092397376894951, -0.04483591765165329, -0.01649961806833744, -0.00159247568808496, 0.010715784505009651, 0.03297361359000206, 0.014129719696938992, 0.024557271972298622, -0.0248262882232666, -0.05118980631232262, 0.004550845827907324, -0.011273031122982502, -0.016653340309858322, 0.04217138513922691, 0.05641639605164528, 0.046373151242733, 0.006955972407013178, -0.0509336031973362, -0.006936756893992424, -0.015039248391985893, -0.012925554998219013, -0.06466620415449142, -0.02550523169338703, -0.01593596674501896, -0.008659737184643745, -0.028823090717196465, 0.0029543668497353792, -9.282436076318845e-05, 0.018984809517860413, -0.01784469559788704, -0.057185009121894836, -0.0013875114964321256, 0.03445960581302643, 0.001450762152671814, -0.09136278927326202, -0.030898353084921837, 0.07619544118642807, 0.019676562398672104, -0.04288875684142113, 0.0018030444625765085, -0.029745429754257202, -0.008307455107569695, -0.009466784074902534, 0.005578869022428989, -0.003194559132680297, 0.011151333339512348, 0.014078478328883648, 0.013309862464666367, 0.03612494096159935, 0.050241850316524506, -0.034818291664123535, -0.028541265055537224, 0.036739833652973175, -0.0359455943107605, -0.0223667174577713, 0.01975342445075512, -0.013425154611468315, 0.008557255379855633, 0.007711777929216623, -0.020060870796442032, 0.0027077691629529, -0.011823872104287148, -0.09351491183042526, -0.0037790273781865835, -0.03420339897274971, 0.03492077440023422, 0.017345095053315163, -0.021482810378074646, 0.022161753848195076, -0.01118335872888565, -0.032384343445301056, -0.09243885427713394, 0.014885525219142437, 0.013130518607795238, 0.00981266051530838, -0.0014939968241378665, -0.028797470033168793, -0.015449176542460918, -0.02754206396639347, 0.002720579504966736, -0.044784676283597946, -0.05060053616762161, 0.012349092401564121, 0.02889995090663433, 0.04896082356572151, 0.019599702209234238, 0.031564485281705856, 0.05646763741970062, 0.00047598130186088383, 0.007647726684808731, 0.012771831825375557, 0.04593760147690773, -0.028438782319426537, 0.012208179570734501, -0.0011465185089036822, -0.0033018451649695635, 0.011650933884084225, -0.006113697774708271, 0.03494639694690704, 0.0192025825381279, -0.046014461666345596, -0.07255732268095016, 0.01648680679500103, -0.02574862726032734, -0.0332554392516613, 0.0034555683378130198, -0.02782388962805271, -0.012701375409960747, 0.026619724929332733, -0.06799687445163727, -0.025044063106179237, 0.009485999122262001, -0.03679107502102852, -0.008301050402224064, -0.01315613929182291, 0.07870624959468842, 0.04606570303440094, 0.022136133164167404, -0.03343478590250015, 0.002867897506803274, 0.014270632527768612, -0.049293890595436096, -0.013373914174735546, -0.013809463009238243, 0.007769424002617598, 0.03627866134047508, 0.03353726491332054, -0.05426426976919174, -0.020547660067677498, 0.005319461226463318, 0.01947159878909588, 0.007583675440400839, -0.02547961100935936, -0.014065667986869812, 0.03328106179833412, 0.02521059662103653, 0.007590080611407757, 0.02071419358253479, -0.02563333511352539, 0.059132169932127, 0.017883125692605972, -0.03799523785710335, 0.022571682929992676, 0.04493840038776398, -0.0029895950574427843, -0.011747010983526707, 0.011964784935116768, -0.008826270699501038, 0.01757567934691906, -0.01907448098063469, 0.004464376252144575, -0.04065977409482002, -0.009985599666833878, 0.04855089262127876, 0.022648543119430542, -0.016550859436392784, 0.0322050005197525, 0.005018420051783323, 0.009088881313800812, 0.0042241839691996574, 0.014834283851087093, 0.02399362064898014, -0.012086482718586922, -0.0029607717879116535, 0.008262619376182556, 0.02168777398765087, -0.02738834172487259, -0.010997610166668892, 0.006584474816918373, -0.010670948773622513, -0.02508249320089817, 0.06845804303884506, 0.014424355700612068, 0.005591679364442825, 0.055801503360271454, -0.007698967587202787, 0.012438764795660973, 0.022110512480139732, -0.006763818673789501, 0.024070482701063156, 0.01438592467457056, 0.009626911953091621, 0.023058472201228142, -0.025927970185875893, -0.0022610113956034184, 0.021200984716415405, -0.004393919836729765, -0.004518819972872734, 0.01473180204629898, 0.022738216444849968, 0.04596322029829025, -0.030360322445631027, -0.013975996524095535, 0.010401933453977108, -0.00013821071479469538, -0.008710978552699089, 0.014373114332556725, -0.02902805432677269, -0.07040520012378693, -0.010875912383198738, 0.019868716597557068, -0.0034139349590986967, 0.010472389869391918, 0.006661336403340101, 0.004291438031941652, -0.03012973628938198, -0.02047079987823963, -0.0008222587057389319, -0.028797470033168793, 0.042837515473365784, 0.055955227464437485, -0.020253024995326996, -0.008512419648468494, 0.011324271559715271, -0.02400643192231655, -0.02519778534770012, -0.04591197893023491, 0.001721378997899592, 0.02604326233267784, -0.03159010782837868, 0.031538866460323334, -0.05180469900369644, 0.03312733769416809, 0.02604326233267784, -0.00041953608160838485, -0.0227766465395689, -0.003445960581302643, -0.009453973732888699, -0.021598102524876595, 0.03025783970952034, 0.04921702668070793, -0.05136915296316147, 0.022738216444849968, -0.016730202361941338, 0.008128111250698566, 0.010856697335839272, -0.03343478590250015, 0.020368317142128944, -0.05657012015581131, 0.021431569010019302, 0.005726187024265528, -0.005598084535449743, -0.028643745929002762, -0.016704581677913666, 0.06036195531487465, 0.01389913447201252, 0.025428371503949165, 0.003955168649554253, -0.020534850656986237, -0.04985754191875458, -0.001611691084690392, 0.01730666495859623, -0.05626267194747925, 0.008217783644795418, 0.004150525201112032, 0.018459588289260864, -0.006501208059489727, 0.028387540951371193, 0.00017193773237522691, 0.025838298723101616, 0.02805447392165661, 0.002635711571201682, -0.0009663741802796721, 0.02222580462694168, 0.012592487968504429, 0.001137711456976831, -0.07250608503818512, -0.014885525219142437, 0.003245800267904997, 0.004669340793043375, 0.03164134919643402, 0.002182548400014639, -0.01592315547168255, 0.0030312282033264637, -0.027080895379185677, -0.013771031983196735, 0.004422742873430252, 0.023263435810804367, 0.04855089262127876, -0.025325888767838478, -0.07363338768482208, 0.011606097221374512, 0.014001616276800632, 0.030488424003124237, 0.0031721412669867277, -0.03171820938587189, -0.02084229700267315, 0.026389140635728836, 0.0022482010535895824, -0.023788657039403915, -0.01295117475092411, 0.019458787515759468, 0.006321864668279886, 0.004768620245158672, -0.04042918607592583, 0.012118508107960224, -0.039814293384552, -0.02032988704741001, -0.06400007009506226, -0.015231401659548283, 0.015513227321207523, 0.013117708265781403, -0.043964821845293045, -0.0069175418466329575, 0.02044517919421196, 0.0332554392516613, -0.01506486814469099, 0.024070482701063156, 0.03451084718108177, -0.0032409962732344866, -0.01533388439565897, 0.007730993442237377, 0.0028086500242352486, 0.0028214603662490845, 0.019817475229501724, -0.06968782842159271, 0.01947159878909588, 0.03451084718108177, -0.02056047134101391, -0.008954373188316822, -0.004541237838566303, -0.0196125116199255, 0.026747828349471092, 0.00640192860737443, -0.050344329327344894, -0.0023698986042290926, 0.012483600527048111, -0.000219976223888807, -0.003958371002227068, -0.022968800738453865, 0.00419536093249917, 0.028310678899288177, -0.013694170862436295, -0.001785430358722806, 0.036714211106300354, -0.0015036045806482434, -0.012675754725933075, 0.014257822185754776, -0.0381745807826519, 0.029642947018146515, -0.0019599702209234238, -0.00705204950645566, -0.01459088921546936, 0.019292255863547325, -0.009716584347188473, 0.009652532637119293, 0.022008029744029045, -0.017550058662891388, 0.016448376700282097, 0.01879265531897545, -0.02669658698141575, 0.015859104692935944, 0.029412362724542618, 0.019253823906183243, -0.021175364032387733, -0.004518819972872734, 0.02194397896528244, -0.05031871050596237, 0.034843914210796356, -0.007269823923707008, -0.009223388507962227, -0.006738197989761829, 0.007993604056537151, -0.04119780287146568, -0.04890958219766617, -0.03363974764943123, -0.0019391534151509404, -0.023135334253311157, -0.013630119152367115, -0.002621299820020795, 0.00318495137616992, 0.006059254053980112, 0.020765434950590134, 0.04324744641780853, -0.03732910379767418, 0.013143328949809074, 0.026261037215590477, 0.017550058662891388, 0.025530852377414703, 0.0158078633248806, -0.010427553206682205, -0.051727838814258575, 0.0018558867741376162, -0.02795199304819107, -0.02902805432677269, -0.024903150275349617, 0.023122522979974747, 0.02682468853890896, 0.012976795434951782, 0.008973589166998863, -0.05359813570976257, -0.005969582125544548, 0.00354524003341794, -0.008019223809242249, 0.016550859436392784, -0.03248682618141174, 0.04580949619412422, 0.009594886563718319, 0.017357906326651573, 0.0043554892763495445, 0.03435712307691574, -0.010446769185364246, 0.022046461701393127, -0.0027670166455209255, -0.024365119636058807, 0.07322345674037933, 0.00497038196772337, 0.041633352637290955, 0.03135952353477478, -0.009229794144630432, -0.04130028560757637, -0.005162535700947046, 0.020278645679354668, -0.03463894873857498, -0.024903150275349617, -0.009453973732888699, -0.02342996932566166, -0.024506032466888428, 0.00920417346060276, -0.008467582985758781, -0.016947977244853973, -0.054981645196676254, 0.03422902151942253, -0.021764636039733887, 0.00398399168625474, 0.010094487108290195, 0.00017654143448453397, 0.0039039275143295527, -0.03996801748871803, 0.009364301338791847, -0.022533250972628593, 0.01336110383272171, -0.0008510818006470799, -0.012361902743577957, -0.05682632327079773, 0.001137711456976831, 0.026081694290041924, 0.049421992152929306, 0.04632190987467766, 0.03771341219544411, -0.030642148107290268, 0.018293054774403572, 0.028720607981085777, 0.02820819802582264, 0.00906326062977314, 0.020803866907954216, -0.00797438807785511, 0.04937075078487396, 0.0025988819543272257, -0.031000833958387375, 0.01702483929693699, -0.022955989465117455, 0.016409946605563164, 0.01649961806833744, 0.040685392916202545, -0.0054123359732329845, 0.04949885234236717, 0.006465979851782322, 0.0006301047978922725, 0.0030056077521294355, 0.01664053089916706, -0.0022017639130353928, 0.01561571005731821, 0.021572481840848923, 0.024749426171183586, 0.01341234426945448, -0.018741413950920105, 0.052393972873687744, -0.017101699486374855, 0.0077758291736245155, -0.022264236584305763, 0.02833629958331585, -0.022110512480139732, -0.004198563285171986, 0.0018863111035898328, -0.009537240490317345, 0.008192162960767746, -0.025415560230612755, -0.029335500672459602, -0.017114510759711266, 0.0359455943107605, -0.02659410424530506, -0.01452683750540018, -0.032384343445301056, -0.033460404723882675, -0.014116909354925156, 0.05631391331553459, 0.0279263723641634, -0.005697363987565041, 0.026389140635728836, 0.03343478590250015, -0.0008662939653731883, 0.029130537062883377, 0.0013626916334033012, -0.025313077494502068, 0.001257007010281086, -0.05088236182928085, 0.004589276388287544, -0.0008710978436283767, -0.006635715719312429, -0.03953246772289276, -0.0346645712852478, 0.004496402107179165, -0.016666151583194733, -0.010779835283756256, 0.040249843150377274, 0.033204201608896255, 0.00694956723600626, -0.0324355848133564, -0.038507647812366486, -0.001456366735510528, -0.010638922452926636, 0.0007077669724822044, 0.028438782319426537, 0.0023714997805655003, -0.010453173890709877, 0.010145727545022964, 0.019791854545474052, 0.047474831342697144, -0.02550523169338703, 0.00044075309415347874, 0.013463585637509823, 0.012586082331836224, 0.0023971202317625284, -0.015218591317534447, 0.02328905649483204, 0.020688572898507118, 0.006270623300224543, -0.016845494508743286, -0.0004179348179604858, 0.023955190554261208, -0.03725224360823631, 0.0073402803391218185, -0.013694170862436295, 0.017755024135112762, 0.022661354392766953, -0.011144928634166718, 0.013540447689592838, -0.015308263711631298, -0.010536440648138523, -0.028541265055537224, -0.009614101611077785, 0.049678198993206024, -0.003564455546438694, 0.02032988704741001, -0.012963985092937946, 0.0066293105483055115, -0.020086491480469704, 0.010581276379525661, -0.026952791959047318, -0.024185774847865105, 0.018369916826486588, -0.017076078802347183, 0.013911944814026356, 0.032768651843070984, -0.021418757736682892, 0.01921539381146431, -0.03661172837018967, -0.04217138513922691, -0.0006693361792713404, -0.006449967157095671, 0.025274647399783134, -0.02045798860490322, -0.021777445450425148, -0.02437792904675007, -0.018562069162726402, 0.018638931214809418, -0.022289857268333435, -0.031000833958387375, -0.031282659620046616, 0.03704727813601494, 0.016051258891820908, -0.005168940871953964, 0.01266934908926487, -0.02563333511352539, -0.020099300891160965, -0.011606097221374512, 0.018024038523435593, 0.010478794574737549, -0.023737415671348572, 0.016576480120420456, 0.04563015326857567, -0.020534850656986237, -0.05142039433121681, -0.015769433230161667, 0.016999218612909317, 0.021431569010019302, -0.04401605948805809, -0.01825462467968464, -0.010843886993825436, -0.01582067459821701, 0.014462785795331001, 0.014270632527768612, 0.015346693806350231, -0.03858451172709465, -0.030898353084921837, 0.004493199288845062, 0.00024539660080336034, 0.022405149415135384, -0.017370715737342834, 0.03233310207724571, 0.06794562935829163, 0.003602886339649558, -0.037969619035720825, -0.01043395884335041, -0.014770232141017914, -0.007116100750863552, -0.031436383724212646, 0.031666968017816544, 0.026107314974069595, 0.021713394671678543, 0.030052876099944115, -0.019445978105068207, -0.0015916750999167562, -0.018229003995656967, -0.0029303475748747587, 0.005031230393797159, -0.0004267418698873371, 0.015397935174405575, -0.009761420078575611, -0.026389140635728836, 0.02154686115682125, -0.019817475229501724, 0.0037117735482752323, 0.008807055652141571, -0.012931959703564644, -0.01811370998620987, 0.025799868628382683, 0.032076895236968994, -0.024172965437173843, 0.015167350880801678, -0.01459088921546936, 0.01341234426945448, 0.0033819093368947506, 0.017345095053315163, -0.026389140635728836, 0.006155331153422594, 0.05810735002160072, 0.0021265035029500723, -0.012393929064273834, -0.000364091683877632, -0.005940759088844061, -0.007321064826101065, -0.012867908924818039, 0.023199385032057762, -0.029617326334118843, -0.010004814714193344, -0.0007085676188580692, 0.01701202802360058, 0.007916742004454136, 0.001540434081107378, 0.0026933576446026564, -0.03351164609193802, -0.025735817849636078, 0.011759820394217968, -0.027875130996108055, -0.0332554392516613, -0.03533070161938667, 0.007891121320426464, 0.0038334710989147425, -0.00962050724774599, 0.009787040762603283, 0.00702002365142107, 0.0030280258506536484, -0.00031465207575820386, 0.006305851507931948, -0.026670966297388077, 0.011529236100614071, -0.01213772315531969, 0.009607696905732155, 0.0010464383522048593, -0.022456388920545578, 0.0013979198411107063, -0.009998410008847713, -0.012829477898776531, 0.010850292630493641, -0.0031993628945201635, -0.0400448814034462, 0.017076078802347183, 0.05134353041648865, 0.027157755568623543, -2.81225293292664e-05, -0.012220989912748337, -0.04796162247657776, 0.02918177843093872, 0.02754206396639347, -0.014116909354925156, -0.004874304868280888, -0.014437166042625904, 0.020919159054756165, 0.0028855116106569767, -0.02316095493733883, -0.00873659923672676, -0.002140915021300316, 0.028592504560947418, 0.006590879987925291, -0.04855089262127876, -0.041351526975631714, -0.0007602089899592102, -0.010273830033838749, 0.025261837989091873, 0.03366537019610405, 0.015628520399332047, -0.0064339544624090195, 0.007506813853979111, 0.010145727545022964, -0.023891139775514603, 0.020931968465447426, 0.020662952214479446, 0.015039248391985893, -0.016947977244853973, 0.03159010782837868, 0.005223384592682123, 0.02194397896528244, 0.007199367508292198, 0.003548442618921399, 0.03589435666799545, 0.045604534447193146, -0.0009471587836742401, 0.013937565498054028, 0.02205927111208439, 0.04411854222416878, 0.0001209969341289252, -0.025684576481580734, 0.003064855234697461, -0.02820819802582264, -0.026094503700733185, -0.0012233800953254104, 0.03174382820725441, -0.0007177750230766833, 0.0558527447283268, -0.008903132751584053, -0.0006269022123888135, -0.022392338141798973, -0.00892875250428915, 0.04565577581524849, -0.012464385479688644, -0.017076078802347183, 0.02058609202504158, 0.005857492331415415, -0.06635715812444687, 0.018779844045639038, -0.03281989321112633, 0.0034043272025883198, 0.04265817254781723, 0.019791854545474052, 0.0008943164139054716, 0.014155339449644089, -0.006494802888482809, 0.01853645034134388, 0.024608513340353966, -0.01799841783940792, -0.029412362724542618, -0.018754223361611366, 0.013822273351252079, 0.024454791098833084, -0.017409145832061768, -0.020765434950590134, 0.0414540097117424, -0.0030632540583610535, -0.04419540613889694, 0.0029607717879116535, 0.00199199584312737, 0.014872714877128601, -0.02004806138575077, -0.030975215137004852, 0.021290656179189682, -0.004518819972872734, -0.034562088549137115, 0.010203373618423939, 0.025979211553931236, -0.025658955797553062, -0.013540447689592838, -0.0042113736271858215, 0.008954373188316822, -0.0023602908477187157, -0.016717392951250076, 0.006693362258374691, 0.015052057802677155, 0.013796652667224407, 0.011753415688872337, -0.027772648259997368, 0.02123941481113434, 0.04498964175581932, -0.009492404758930206, 0.02631227858364582, -0.02032988704741001, 0.021367518231272697, 0.023122522979974747, 0.032076895236968994, 0.022853508591651917, -0.00797438807785511, 0.015090488828718662, 0.024762237444519997, 0.0008342683431692421, 0.012285041622817516, 0.02222580462694168, 0.01234268769621849, 0.0037341914139688015, -0.0004135312919970602, 0.028003232553601265, 0.007487598340958357, -0.023237815126776695, -0.027567684650421143, 0.01022258959710598, -0.0026341101620346308, 0.004781430587172508, -0.014693371020257473, -0.0054187411442399025, -0.0014219391159713268, -0.0012962383916601539, -0.05964457988739014, -0.013309862464666367, 0.026491621509194374, -0.019804665818810463, -0.02480066753923893, 0.017883125692605972, 0.01596158742904663, 0.012124912813305855, 0.030642148107290268, 0.01702483929693699, 0.01329705212265253, -0.006834275089204311, 0.0030280258506536484, 0.01991995796561241, 0.03763655200600624, -0.003188153961673379, 0.013437964953482151, 0.01566695049405098, -0.003013614099472761, 0.05872224271297455, 0.022251425310969353, 0.0338447131216526, 0.002839074470102787, -0.00654284143820405, -0.01259889267385006, -0.0028871127869933844, -0.03955809026956558, -0.02522340603172779, -0.01089512836188078, 0.02697841264307499, -0.005383512936532497, -0.011055256240069866, 0.0130856828764081, 0.008166542276740074, -0.010094487108290195, 0.011125712655484676, -0.01594877615571022, 0.05400806665420532, -0.028669366613030434, 0.06118181347846985, 0.006552448961883783, 0.03328106179833412, 0.017959987744688988, -0.0016605302225798368, -0.0054251463152468204, -0.01880546472966671, 0.02481347881257534, -0.007711777929216623, -0.020086491480469704, -0.01828024350106716, 0.02726023830473423, -0.0026533256750553846, 0.005357892252504826, 0.04404168203473091, 0.017959987744688988, -0.006417941302061081, -0.01541074551641941, 0.02889995090663433, 0.02877184934914112, 0.045988842844963074, -0.006008013151586056, 0.022392338141798973, 0.008832675404846668, 0.006885515991598368, -0.03638114407658577, 0.02454446256160736, -0.02287912927567959, -0.01459088921546936, -0.01069016382098198, 0.011004014872014523, -0.04621942713856697, -0.019112911075353622, 0.039301883429288864, -0.012080077081918716, -0.011125712655484676, -0.01976623386144638, -0.010741405189037323, 0.05272703990340233, -0.008160136640071869, 0.010869507677853107, -0.02741396054625511, 0.002075262600556016, 0.04445160925388336, -0.026773449033498764, -0.01610250025987625, -0.013207380659878254, 0.003538834862411022, -0.00859568640589714, 0.0020224200561642647, -0.010120106860995293, 0.018971998244524002, -0.006834275089204311, -0.008698168210685253, 0.024582892656326294, -0.0006437156698666513, 0.018638931214809418, -0.013796652667224407, -0.02205927111208439, 0.025172164663672447, -0.04931950941681862, -0.005793441087007523, -0.03379347175359726, -0.020368317142128944, -0.00962050724774599, -0.01705045998096466, -0.018728602677583694, -0.019996820017695427, -0.03379347175359726, 0.008070465177297592, -0.031154558062553406, 0.007948767393827438, 0.006866300478577614, -0.0110360411927104, 0.019855907186865807, 0.011791846714913845, -0.0036509246565401554, 0.007045644335448742, 0.013822273351252079, -0.04009612277150154, 0.0044451612047851086, 0.01744757778942585, -0.014693371020257473, -0.006341079715639353, -0.03294799476861954, 0.017524437978863716, -0.0032057680655270815, 0.01661491021513939, 0.021982410922646523, 0.03187193349003792, -0.013988806866109371, 0.02591516077518463, 0.004794240463525057, -0.0048935203813016415, 0.0759904757142067, -0.020957589149475098, 0.03010411560535431, 0.0359455943107605, -0.010683759115636349, 0.0252362173050642, -0.009594886563718319, 0.05106170475482941, 0.01824181340634823, 0.0037854325491935015, 0.004717378877103329, -0.010568466037511826, 0.01976623386144638, -0.009825470857322216, -0.02016335353255272, -0.015577279031276703, 0.00804484449326992, 0.022994421422481537, 0.0037437991704791784, -0.00640192860737443, -0.01315613929182291, -0.0081088962033391, 0.004506009630858898, -0.012144128791987896, -0.003993599209934473, -0.006523625925183296, -0.001556446892209351, 0.014629319310188293, 0.007756613660603762, -0.018305864185094833, 0.010888722725212574, -0.01350201666355133, -0.017652541399002075, 0.02741396054625511, -0.008903132751584053, -0.0275164432823658, -0.025453990325331688, -0.01811370998620987, 0.005341879557818174, 0.008147327229380608, -0.019561270251870155, -0.006437156815081835, -0.03192317485809326, -0.008986398577690125, 0.01747319847345352, 0.02291755937039852, -0.02223861590027809, -0.058517277240753174, 0.00789752695709467, -0.00782707054167986, 0.056057706475257874, 0.03389595448970795, -0.016935165971517563, -0.010203373618423939, -0.0004847883537877351, 0.036842312663793564, 0.013040847145020962, -0.022417958825826645, 0.013527637347579002, -0.01690954715013504, 0.00015992812404874712, -0.006783033721148968, -0.034843914210796356, 0.03527946397662163, 0.03845640644431114, 0.02372460626065731, -0.016678960993885994, -0.03133390098810196, -0.018702983856201172, 0.0054123359732329845, -0.004326666239649057, -0.004768620245158672, -0.015026438049972057, -0.014578078873455524, -0.008877512067556381, 0.03643238544464111, -0.004083271138370037, -0.002781428163871169, -0.00736590102314949, 0.030232219025492668, -0.02208489179611206, 0.0006881512817926705, 0.0019295457750558853, 0.03504887595772743, -0.0038622941356152296, -0.005873505491763353, 0.0076925624161958694, -0.005819061771035194, 0.024903150275349617, 0.015769433230161667, 0.046680595725774765, -0.03187193349003792, -0.010100891813635826, -0.04060853272676468, 0.018754223361611366, 0.019407548010349274, -0.022136133164167404, 0.03274302929639816, -0.030155356973409653, 0.02097039856016636, 0.0200224407017231, 0.004281830042600632, -0.027055274695158005, 0.010959179140627384, -0.018702983856201172, -0.0030248232651501894, 0.022123323753476143, -0.017511628568172455, -0.003112893784418702, -0.03205127641558647, -0.02659410424530506, -0.0038430786225944757, 0.006642120890319347, 0.015077678486704826, -0.014373114332556725, -0.0340752974152565, 0.02045798860490322, 0.012227395549416542, -0.002800643676891923, 0.007231392897665501, -0.0016293051885440946, 0.009313060902059078, 0.05111294612288475, -0.010818266309797764, -0.00789752695709467, 0.025325888767838478, -0.014680560678243637, 0.02982228994369507, 0.026414761319756508, -0.020752625539898872, -0.020381126552820206, 0.019843095913529396, -0.004144120030105114, -0.006100887432694435, -0.015731001272797585, 0.022699784487485886, -0.04785913974046707, 0.04501526057720184, 0.02127784490585327, -0.04124904423952103, 0.05590398609638214, -0.015436366200447083, 0.030232219025492668, -0.014975196681916714, -0.006376307923346758, -0.04196641966700554, 0.0016541251679882407, -0.008032034151256084, -0.02043236792087555, -0.007980793714523315, -0.006943162064999342, 0.014014426618814468, -0.007743803784251213, 0.03135952353477478, 0.013143328949809074, 0.004096081480383873, 0.008006414398550987, -0.06123305484652519, -0.010280235670506954, -0.035100117325782776, -0.031154558062553406, -0.00630905432626605, 0.018741413950920105, 0.039327505975961685, -0.006392321083694696, 0.019984008744359016, 0.006943162064999342, 0.025402750819921494, -0.026094503700733185, -0.030898353084921837, -0.012816667556762695, 0.001521218684501946, 0.005569261498749256, -0.0034235427156090736, 0.01069016382098198, -0.020496420562267303, 0.00013500815839506686, -0.00934508629143238, -0.03230748325586319, 0.004470781423151493, 0.025005631148815155, 0.0036733427550643682, -0.010562061332166195, 0.01838272623717785, 0.0016445174114778638, -0.04373423382639885, 0.037124138325452805, -0.008915942162275314, -0.002621299820020795, 0.004060853272676468, 0.023519640788435936, -0.012861503288149834, 0.03284551203250885, 0.01233628299087286, 0.009652532637119293, -0.06712577491998672, 0.017063269391655922, 0.02235390804708004, 0.04030108451843262, -0.009191363118588924, -0.012899934314191341, -0.017626920714974403, 0.006164938677102327, 0.011311461217701435, -0.008032034151256084, -0.013847893103957176, 0.008582876063883305, 0.036842312663793564, 0.007519624195992947, 0.0063795107416808605, 0.020137732848525047, -0.012592487968504429, 0.004278627689927816, 0.05861975997686386, -0.007397926412522793, 0.011215385049581528, -0.02018897421658039, 0.009934358298778534, -0.019176961854100227, -0.012566867284476757, -0.053341932594776154, 0.021623723208904266, 0.027208996936678886, 0.004947963636368513, -0.0021152945701032877, 0.027285858988761902, -0.013630119152367115, 0.006315459497272968, 0.01813933067023754, 0.0068086544051766396, 0.009364301338791847, 0.011125712655484676, -0.016038447618484497, -0.02697841264307499, 0.0026180974673479795, -0.02168777398765087, 0.012682159431278706, -0.00041433190926909447, -0.018754223361611366, -0.048320308327674866, -0.015538848005235195, 0.0351257398724556, 0.020816676318645477, 0.01294477004557848, -0.009787040762603283, -3.415235914872028e-05, -0.044502850621938705, -0.022789455950260162, -0.03663735091686249, -0.028951192274689674, -0.016935165971517563, -0.031282659620046616, -0.03422902151942253, -0.010024030692875385, 0.0063314721919596195, -0.015833484008908272, -0.004522022791206837, -0.014667750336229801, 0.006872705649584532, -0.03217937797307968, 0.029335500672459602, -0.015244212001562119, -0.00017544053844176233, 0.028643745929002762, -0.0017838290659710765, 0.025979211553931236, -0.01582067459821701, 0.01607687957584858, 0.0216621533036232, 0.02943798340857029, -0.022008029744029045, 0.022648543119430542, 0.03520260006189346, -0.03492077440023422, -0.01623060181736946, -0.006962377578020096, 0.023763036355376244, -0.01438592467457056, 0.0009663741802796721, 0.007859095931053162, -0.005780630744993687, 0.005095281638205051, -0.02018897421658039, 0.010491604916751385, -0.009165742434561253, 0.008871106430888176, 0.0016589289298281074, 0.007615700829774141, -0.0036156964488327503, 0.003490796545520425, 0.010773430578410625, -0.010773430578410625, 0.008973589166998863, -0.039865534752607346, -0.020662952214479446, -0.004269019700586796, -0.003631709376350045, -0.03212813660502434, 0.019023239612579346, -0.04739797115325928, 0.0173322856426239, 0.003080868162214756, 0.04693680256605148, -0.00987671222537756, 0.007212177850306034, 0.0007161737303249538, -0.010978395119309425, 0.013924755156040192, 0.03051404468715191, -0.009325871244072914, -0.008730193600058556, 0.027618926018476486, -0.018229003995656967, -0.0025956793688237667, -0.012630918994545937, 0.04990878328680992, -0.005325866397470236, -0.013034441508352757, -0.008153731934726238, 0.020893538370728493, 0.028694987297058105, 0.027747027575969696, -0.01341234426945448, -0.0024067279882729053, 0.0441441647708416, -0.01280385721474886, 0.010171348229050636, -0.005245802458375692, -0.020214593037962914, 0.015231401659548283, 0.007301849313080311, -0.0425044521689415, -0.0030088103376328945, -0.006334674544632435, 0.025172164663672447, -0.015718191862106323, -0.0351257398724556, -0.014898334629833698, 0.024160154163837433, -0.0178575050085783, -0.0027798269875347614, 0.007205772679299116, -0.008768624626100063, 0.018049659207463264, -0.016115309670567513, 0.006962377578020096, 0.011004014872014523, 0.013092088513076305, 0.0037790273781865835, -0.006827869918197393, 0.014936765655875206, 0.028797470033168793, 0.024903150275349617, -0.02289193868637085, 0.005332271568477154, -0.014962386339902878, 0.020624522119760513, 0.015231401659548283, 0.008960778824985027, 0.012253016233444214, -0.008102490566670895, -0.0038558889646083117, -0.01022258959710598, 0.011625313200056553, 0.016858305782079697, -0.038507647812366486, 0.02559490315616131, 0.006517220754176378, 0.01157407183200121, 0.05380310118198395, -0.0054123359732329845, -0.04998564347624779, -0.015884725376963615, -0.038763854652643204, 0.01976623386144638, -0.007871906273066998, -0.009108096361160278, 0.00712250592187047, -0.04486154019832611, -0.0033018451649695635, 0.007526028901338577, 0.024890339002013206, -0.008941562846302986, -0.06123305484652519, 0.0021184971556067467, -0.01473180204629898, 0.034715812653303146, -0.008954373188316822, 0.03568939119577408], [0.0217316672205925, -0.03723040595650673, 0.03142733499407768, 0.0109852384775877, -0.03990507498383522, -0.010973297990858555, -0.032048240303993225, 0.023391393944621086, 0.0001908610574901104, 0.00446275295689702, -0.034412454813718796, 0.005080672912299633, 0.013385274447500706, -0.06328452378511429, 0.016525620594620705, 0.02400035783648491, -0.01952267996966839, 0.016776369884610176, 0.015367393381893635, 0.0037433395627886057, 0.038663264364004135, 0.00034515440347604454, -0.034102000296115875, 0.0388781912624836, 0.042866311967372894, 0.056024715304374695, -0.036490097641944885, 0.015892773866653442, 0.04193495586514473, -0.0031015388667583466, -0.010209107771515846, -0.030090000480413437, 0.04205435886979103, -0.03940357267856598, -0.0011597188422456384, 0.002767205471172929, 0.014794250950217247, -0.012585262767970562, 0.024669025093317032, -0.05530828982591629, 0.009779250249266624, -0.02634069137275219, 0.05100971832871437, 0.03276466950774193, -0.011415095999836922, 0.043296169489622116, -0.06423976272344589, 0.02865714393556118, 0.004220958333462477, 0.038496095687150955, 0.0288481917232275, 0.00869863759726286, 0.04446633532643318, 0.03355273976922035, -0.02863326296210289, 0.013946476392447948, -0.0018224152736365795, 0.011725547723472118, 0.03262138366699219, -0.016955476254224777, 0.023761548101902008, 0.005080672912299633, -0.004665741231292486, 0.043463334441185, -0.021337632089853287, -0.016203226521611214, -0.0024940671864897013, 0.0013373333495110273, -0.02454962022602558, 0.03809012100100517, 0.0016089791897684336, 0.0006503828335553408, -0.007265780121088028, 0.013444976881146431, 0.020334631204605103, 0.02667502500116825, -0.018388334661722183, 0.05062762275338173, -0.02201823890209198, -0.011355393566191196, -0.02853773906826973, -0.002432872075587511, 0.004152300767600536, 0.04152897745370865, -0.004710518289357424, -0.03691995516419411, -0.10354781150817871, 0.024740668013691902, 0.025313811376690865, -0.012167345732450485, -0.024501858279109, 0.025600381195545197, -0.019295809790492058, 0.06242481246590614, 0.02205406129360199, 0.007140405010432005, -0.0028746698517352343, 0.007683696690946817, 0.032191526144742966, 0.02199435792863369, 0.03355273976922035, 0.004268720280379057, -0.03462738171219826, 0.003400050802156329, 0.045254405587911606, 0.021015239879488945, 0.01751668006181717, -0.002713473280891776, 0.008000119589269161, -0.002995567163452506, -0.022722726687788963, -0.07961910218000412, -0.023260049521923065, 0.02218540571630001, 0.045469336211681366, 0.0016806221101433039, 0.027940714731812477, -0.0533500500023365, 0.0014231555396690965, -0.029469097033143044, 0.0008791175787337124, 0.0031672115437686443, 0.003931401763111353, -0.01953461952507496, -0.04594695568084717, 0.03243033587932587, -0.009021029807627201, -0.011241958476603031, 0.018603263422846794, -0.036466214805841446, -0.020322691649198532, -0.02394065633416176, -0.03326616808772087, 0.01425692904740572, 0.05320676416158676, 0.005797101650387049, -0.03221540525555611, -0.0031552710570394993, -0.010406125336885452, -0.07245481014251709, 0.02619740553200245, 0.006020985543727875, 0.028012357652187347, 0.0038836400490254164, -0.044896192848682404, -0.01972566731274128, -0.007068762090057135, 0.020489858463406563, 0.01980925165116787, 0.028060119599103928, -0.017062941566109657, -0.018782369792461395, -0.009289691224694252, -0.00878819078207016, 0.05024552717804909, -0.008680726401507854, -0.021671965718269348, 0.03515276312828064, -0.004865744151175022, 0.04587531089782715, -0.01451961975544691, -0.014268869534134865, 0.006155315786600113, 0.008471768349409103, 0.016382334753870964, 0.025576500222086906, -0.06146957352757454, -0.044991716742515564, -0.06361886113882065, -0.03300347924232483, 0.040955834090709686, -0.04702159762382507, 0.05306347832083702, 0.0007067269762046635, -0.0025880984030663967, -0.04121852666139603, 0.0304243341088295, -0.02216152474284172, -0.03909312188625336, -0.0002697801392059773, 0.04568426311016083, 0.0032806459348648787, 0.043057359755039215, -0.015092762187123299, 0.01763608492910862, 0.03329005092382431, -0.030185524374246597, 0.01545097678899765, 0.013695727102458477, 0.02848997712135315, 0.003973193466663361, 0.004788130987435579, 0.002398543292656541, 0.023415274918079376, -0.0044866339303553104, -0.006065762136131525, -0.014865893870592117, 0.0391170009970665, -0.002388095250353217, -0.01758832298219204, 0.022877953946590424, 0.01763608492910862, 0.0006570993573404849, -0.03713488206267357, -0.005241869483143091, 0.009038941003382206, -0.008501619100570679, 0.023845132440328598, 0.08277138322591782, -0.011552411131560802, 0.05788743123412132, -0.03247809782624245, -0.004128419794142246, 0.044824548065662384, -0.01413752418011427, -0.05296795442700386, -0.005322467535734177, 0.02410782314836979, 0.009164315648376942, 0.0017865938134491444, 0.005782175809144974, 0.010059851221740246, 0.008262810297310352, 0.010931506752967834, 0.029684025794267654, 0.025409335270524025, -0.03701547905802727, 0.005355303641408682, -0.02832281030714512, -0.046949952840805054, -0.017027119174599648, -0.027295930311083794, 0.008053851313889027, -0.010197167284786701, 0.034197524189949036, 0.007444887422025204, 0.01451961975544691, 0.034340810030698776, -0.011235988698899746, -0.0029403422959148884, 0.012262869626283646, -0.00869863759726286, 0.015606203116476536, 0.016931595280766487, -0.03254973888397217, -0.010041940957307816, -0.0004059761995449662, 0.023188406601548195, -0.02665114402770996, 0.0620427168905735, 0.027486978098750114, 0.03071090579032898, -0.04000059887766838, -0.0707353875041008, -0.025528740137815475, -0.010901655070483685, -0.03312288224697113, -0.023845132440328598, -0.008029970340430737, -0.032382573932409286, -0.03092583455145359, 0.018459977582097054, -0.0020149555057287216, -0.0283705722540617, -0.02208988182246685, -0.03992895409464836, 0.005904565565288067, 0.02194659598171711, 0.015856953337788582, -0.01742115616798401, -0.031498976051807404, -0.015749488025903702, -0.0011970327468588948, -0.05053209885954857, -0.0283705722540617, 0.0016119643114507198, -0.007450857665389776, -0.002265705494210124, -0.045302167534828186, 0.018973417580127716, -0.04205435886979103, 0.010244929231703281, 0.014388274401426315, -0.034245286136865616, -0.0120121194049716, 0.01313452422618866, -0.0066090538166463375, -0.005644860211759806, -0.0526336207985878, 0.0023940654937177896, 0.03152285888791084, -0.051869429647922516, -0.049290288239717484, -0.013588262721896172, 0.001749279792420566, 0.012262869626283646, -0.007588172797113657, -0.0741264820098877, 0.022770488634705544, -0.005083657801151276, 0.013564381748437881, -0.0012455410324037075, -0.04881266877055168, 0.0143046909943223, -0.02007194049656391, 0.021600322797894478, -0.07264585793018341, 0.008973267860710621, -0.054209765046834946, -0.01204197108745575, -0.021671965718269348, -0.0143046909943223, -0.0024806340225040913, -0.08320124447345734, -0.0019701786804944277, -0.0345318578183651, 0.03338557109236717, 0.027104882523417473, 0.025863071903586388, 0.03345721587538719, -0.022543620318174362, -0.012465857900679111, -0.0028448186349123716, -0.010567321442067623, -0.0037194585893303156, -0.021158523857593536, 0.018483858555555344, 0.057696383446455, 0.03324228897690773, 0.005865759216248989, -0.0265556201338768, -0.0012261377414688468, -0.01795847713947296, -0.022388393059372902, 0.0003459006838966161, 0.018101762980222702, 0.0047493246383965015, 0.04575590789318085, 0.008638935163617134, 0.02605411969125271, -0.023403333500027657, -0.016465917229652405, 0.012047940865159035, -0.02851385809481144, 0.05559485778212547, -0.01757638156414032, 0.04706935957074165, -0.006406065542250872, -0.0075941430404782295, 0.008829982951283455, 0.006441887002438307, 0.011277779936790466, 0.006626964546740055, 0.03601247817277908, -0.015462917275726795, -0.04790519177913666, 0.034078121185302734, 0.005546351429075003, -0.018686845898628235, 0.027272049337625504, -0.054162003099918365, -0.036585621535778046, 0.008316542021930218, 0.009313572198152542, -0.021074941381812096, 0.04666338488459587, -0.06729652732610703, -0.04183943197131157, -0.016955476254224777, 0.051869429647922516, 0.016024120151996613, 0.009552381001412868, -0.02882431074976921, 0.012740489095449448, 0.02234063111245632, 0.02207794226706028, 0.02624516747891903, 0.027821309864521027, 0.0061612860299646854, -0.015140524134039879, -0.012621084228157997, -0.0654338151216507, 0.06433528661727905, -0.01208376232534647, 0.02193465642631054, 0.019451037049293518, -0.012053911574184895, -0.040478214621543884, 0.01788683421909809, -0.029110882431268692, 0.026961596682667732, 0.02218540571630001, 0.016179345548152924, 0.03574978560209274, 0.01787489280104637, -0.03746921569108963, 0.045158881694078445, 0.011612113565206528, -0.0153315719217062, 0.029182525351643562, -0.00013265122834127396, -0.04814400151371956, 0.023797370493412018, 0.041170764714479446, 0.00659114308655262, -0.004235884174704552, -0.03295571729540825, -0.009827012196183205, 0.005376199726015329, -0.036537859588861465, -0.012800190597772598, -0.049863431602716446, -0.004098568577319384, 0.01755250059068203, 0.0031552710570394993, -0.016728607937693596, 0.009098643437027931, 0.012358393520116806, 0.006913536228239536, -0.002703025471419096, -0.009289691224694252, 0.018961476162075996, -0.05478290840983391, 0.0755593404173851, -0.04413200169801712, 0.05115300044417381, 0.014077821746468544, -0.027057120576500893, -0.03976178914308548, -0.021039120852947235, 0.02439439482986927, -0.06361886113882065, -0.054305288940668106, 0.02868102490901947, -0.029827311635017395, -0.03570202365517616, -0.04002447798848152, 0.029087001457810402, 0.025695905089378357, 0.004009014926850796, -0.023892894387245178, -0.0401916429400444, -0.008316542021930218, -0.005292616318911314, -0.023379452526569366, -0.029469097033143044, -0.02406006120145321, 0.058603860437870026, 0.017015179619193077, 0.007415036205202341, -0.013839012943208218, -0.040740907192230225, 0.01428081002086401, 0.010453887283802032, -0.02223316766321659, 0.022531678900122643, 0.009683726355433464, -0.029206406325101852, 0.0097195478156209, -0.011737488210201263, 0.04618576541543007, -0.018627144396305084, -0.012465857900679111, 0.06299795210361481, 0.03775578737258911, -0.02409588173031807, 0.0012992731062695384, -0.00556127680465579, 0.04601859673857689, -0.021218227222561836, 0.009677756577730179, 0.020262988284230232, -0.0033134822733700275, 0.06266362220048904, -0.056072477251291275, -0.016931595280766487, 0.05034105107188225, -0.04327228665351868, -0.03718264400959015, 0.007635934744030237, -0.002534366212785244, -0.018519679084420204, -0.032239288091659546, -0.024788429960608482, -0.011444946750998497, 0.011827042326331139, 0.09423424303531647, 0.05296795442700386, -0.022913774475455284, -0.02825116738677025, -0.05912924185395241, 0.012931535951793194, 0.009271780028939247, -0.010095672681927681, -0.0013022582279518247, 0.0034925893414765596, -0.0054239616729319096, 0.02207794226706028, 0.03952297940850258, 0.00877028051763773, -0.022615263238549232, -0.041123002767562866, -0.02681831084191799, -0.07536829262971878, 0.018651025369763374, 0.05506948009133339, -0.021445095539093018, 0.012525560334324837, 0.01227481011301279, -0.04355885833501816, -0.04176778718829155, -0.02641233429312706, -0.025743667036294937, -0.02396453730762005, 0.04845445603132248, -0.01313452422618866, -0.010489708743989468, 0.03723040595650673, -0.007343393284827471, -0.0032239286229014397, 0.024740668013691902, 0.054400812834501266, -0.0010582247050479054, -0.006919506471604109, -0.005304556805640459, 0.02605411969125271, -0.019451037049293518, -0.08434753119945526, -0.001894058077596128, -0.021361513063311577, 0.0038508037105202675, -0.03094971552491188, 0.00595829775556922, 0.009474768303334713, -0.0014403200475499034, -0.03797071427106857, 0.027558621019124985, -0.018018178641796112, 0.047355931252241135, -0.027510859072208405, 0.008167286403477192, 0.0357259064912796, 0.009612083435058594, -0.04771414399147034, -0.020501798018813133, -0.015582322143018246, 0.004665741231292486, -0.005182167049497366, 0.00437319977208972, -0.0025970537681132555, 0.023821251466870308, -0.020657025277614594, 0.005220973398536444, 0.01566590555012226, 0.02020328678190708, -0.009373274631798267, 0.01222704816609621, 0.026078000664711, 0.014042000286281109, -0.014913655817508698, 0.004767235368490219, -0.0042985714972019196, -0.003119449596852064, -0.01985701359808445, -0.02427498996257782, -0.008985208347439766, -0.005740384105592966, 0.018507739529013634, -0.00043470796663314104, -0.010621054098010063, -0.006376214791089296, -0.0178629532456398, 0.016442036256194115, 0.036036357283592224, 0.01525992900133133, 0.020274929702281952, 0.03340945392847061, -0.0008112061186693609, -0.03075866773724556, -0.00994044728577137, 0.008603113703429699, -0.023486917838454247, 0.004423946607857943, 0.0002514962980058044, 0.01748085767030716, 0.01743309572339058, 0.01566590555012226, -0.03689607232809067, -0.017946535721421242, 0.031713906675577164, -0.025337692350149155, -0.032000478357076645, 0.022698845714330673, -0.0050627621822059155, 0.01988089457154274, -0.025027239695191383, -0.022448096424341202, -0.015940535813570023, -0.03283631056547165, 0.006268750410526991, 0.014710667543113232, -0.02409588173031807, -0.013934535905718803, 0.019176404923200607, -0.016967417672276497, -0.0016865923535078764, -0.020525678992271423, -0.006489648949354887, 0.03574978560209274, -0.02853773906826973, 0.054305288940668106, -0.003701547859236598, -0.011874804273247719, -0.005292616318911314, -0.03457961976528168, 0.00776130985468626, -0.05755309760570526, -0.006794131360948086, 0.007940417155623436, 0.012812131084501743, -0.025600381195545197, -0.01220913790166378, 0.04140957444906235, 0.007009059656411409, -0.02231675013899803, 0.03300347924232483, 0.023451095446944237, -0.00886580441147089, -0.021624203771352768, 0.009731488302350044, -0.011158375069499016, 0.021063001826405525, 0.009731488302350044, -0.018662964925169945, -0.0021686891559511423, 0.033910952508449554, 0.00490753585472703, -0.06380990892648697, -0.010597173124551773, -0.02447797730565071, 0.02004805952310562, -0.0022254062350839376, -0.016812190413475037, -0.08033552765846252, 0.032143764197826385, -0.01444797683507204, 0.014877834357321262, -0.0020149555057287216, 0.009301631711423397, -0.03109300136566162, 0.03696771711111069, 0.004268720280379057, -0.016215167939662933, 0.00654338113963604, 0.013313631527125835, -0.028155643492937088, 0.004328422714024782, 0.016453977674245834, -0.018722668290138245, 0.028203405439853668, -0.014292750507593155, 0.025648143142461777, -0.043033476918935776, -0.021397333592176437, -0.032239288091659546, 0.02210182324051857, 0.006513529922813177, -0.011098673567175865, 0.02180331014096737, 0.045302167534828186, 0.051917191594839096, 0.006197107490152121, -0.0024373498745262623, 0.003910506144165993, 0.02863326296210289, 0.04105135798454285, 0.015845011919736862, -0.051869429647922516, -0.027678025886416435, -0.006889655254781246, 0.014412155374884605, -0.020931655541062355, -0.0354870967566967, 0.014053940773010254, 0.010280750691890717, -0.03474678844213486, 0.019295809790492058, 0.04766638204455376, -0.03243033587932587, 0.020573440939188004, -0.0067344289273023605, 0.004701562691479921, 0.022758549079298973, 0.0046239495277404785, -0.001244794693775475, -0.0007753847166895866, -0.00044739473378285766, 0.0352482870221138, -0.011671815998852253, -0.06447857618331909, -0.012000178918242455, 0.009170286357402802, -0.007504589390009642, -0.017994297668337822, -0.060418810695409775, 0.011486738920211792, 0.036179643124341965, -0.012967357411980629, 0.047403693199157715, 0.0015776355285197496, -0.040979716926813126, 0.011092702858150005, 0.006155315786600113, 0.001375393709167838, -0.025672024115920067, 0.00717622647061944, -0.031833309680223465, 0.008358333259820938, 0.008179226890206337, 0.001705995644442737, 0.004268720280379057, -0.027200406417250633, 0.007534440606832504, -0.014901715330779552, -0.005167241208255291, 0.002310482319444418, 0.003340348368510604, -0.011570322327315807, -0.018639083951711655, 0.030400453135371208, 0.02643621526658535, 0.02433469146490097, 0.008483708836138248, -0.033958714455366135, 0.0010171793401241302, -0.010704637505114079, 0.009653875604271889, 0.01554650068283081, 0.007259809877723455, 0.016931595280766487, 0.03343333303928375, -0.01989283412694931, 0.005844863131642342, 0.032119881361722946, -0.042746905237436295, 0.042699143290519714, -0.01217928621917963, 0.0036478156689554453, -0.02863326296210289, 0.02420334704220295, 0.020573440939188004, 0.006841893307864666, -0.008513559587299824, 0.03266914561390877, 0.03140345215797424, -0.04145733639597893, 0.03555874153971672, -0.013468857854604721, -0.04647233709692955, -0.04427528753876686, 0.01330169104039669, -0.0025612323079258204, 0.015415155328810215, 0.027081001549959183, 0.03806623816490173, -0.02192271500825882, -0.018782369792461395, 0.0010112090967595577, -0.04814400151371956, -0.029349692165851593, 0.006889655254781246, -0.005179181694984436, 0.01313452422618866, 0.012883774004876614, 0.04886043071746826, 0.006352333817631006, -0.03274078667163849, 0.02421528659760952, 0.013898714445531368, 0.03734981268644333, 0.03254973888397217, -0.004125434905290604, -0.018245048820972443, 0.023021239787340164, -0.005695607513189316, -0.012812131084501743, 0.0037582649383693933, -0.033958714455366135, -0.005659786053001881, 0.006913536228239536, -0.013265869580209255, 0.0022000328171998262, 0.017134584486484528, -0.02677054889500141, 0.040311049669981, 0.01088971458375454, -0.010041940957307816, -0.05678890645503998, -0.000621651066467166, 0.033767666667699814, -0.0011425543343648314, 0.01196435745805502, -0.016059940680861473, 0.016991298645734787, 0.02171972766518593, 0.009170286357402802, -0.02210182324051857, 0.03111688233911991, 0.034149762243032455, -0.04143345355987549, 0.029851192608475685, 0.0031940776389092207, 0.0028537739999592304, 0.021289870142936707, 0.05535605177283287, -0.033887073397636414, 0.0007828475208953023, -0.01108076237142086, 0.034173645079135895, -0.03245421499013901, 0.021695846691727638, 0.018018178641796112, -0.025839190930128098, 0.01101509016007185, -0.010674785822629929, -0.018197286874055862, -0.034173645079135895, 0.03075866773724556, 0.016239048913121223, -0.022567501291632652, -0.0032537798397243023, -0.004456782713532448, -0.01733757182955742, -0.010238958522677422, -0.0034388573840260506, 5.765011519542895e-05, -0.004158271010965109, 0.013898714445531368, -0.012215107679367065, 0.009928506799042225, 0.012394214980304241, 0.04176778718829155, -0.003623934695497155, -0.0007656830712221563, 0.023033179342746735, 0.016250988468527794, -0.007444887422025204, -0.007098613306879997, -0.044824548065662384, 0.02825116738677025, 0.02429887093603611, -0.005113509017974138, 0.011140464805066586, 0.03118852525949478, 0.02217346616089344, -0.004501559771597385, -0.009170286357402802, 0.040597621351480484, -0.011570322327315807, -0.029063120484352112, -0.05120076239109039, -0.024883953854441643, -0.002108986722305417, -0.020824192091822624, -0.012262869626283646, -0.016406215727329254, 0.05325452610850334, -0.010728518478572369, -0.007116524036973715, 0.02198241837322712, 0.047284286469221115, -0.02665114402770996, 0.012382274493575096, -0.014543500728905201, 0.016489798203110695, -0.015140524134039879, -0.02226898819208145, 0.005238884128630161, -0.010686726309359074, -0.015510679222643375, 0.022782430052757263, 0.012394214980304241, 0.03355273976922035, -0.0024507828056812286, -0.03718264400959015, -0.021122703328728676, -0.020597321912646294, 0.004552306607365608, -0.025672024115920067, -0.040334928780794144, 0.019033119082450867, 0.02674666792154312, 0.003052284475415945, 0.021492857486009598, -0.024907834827899933, 0.01986895315349102, -0.018471917137503624, 0.01211361400783062, -0.004919476341456175, -0.02667502500116825, -0.027152644470334053, -0.00722398841753602, -0.021373452618718147, 0.03539157286286354, -0.015319631434977055, -0.022591382265090942, -0.013540500774979591, -0.007749369367957115, 0.007964298129081726, -0.010495679453015327, -0.014077821746468544, -0.010519560426473618, 0.03250197693705559, -0.005898595321923494, 0.045230526477098465, -0.018615202978253365, -0.02677054889500141, 0.02180331014096737, 0.005361273884773254, 0.005674711428582668, 0.009027000516653061, 0.0046239495277404785, -0.004083643201738596, -0.020680906251072884, -0.004692607559263706, -0.0004772459215018898, -0.010710607282817364, 0.04224540665745735, 0.006788161117583513, 0.012573322281241417, -0.004791116341948509, 0.005994119215756655, 0.006561291869729757, 0.01948685757815838, -0.006513529922813177, 0.028012357652187347, 0.040502097457647324, 0.021051060408353806, 0.014340512454509735, 0.013003178872168064, 0.0034030359238386154, 0.007725488394498825, -0.03338557109236717, 0.002508992562070489, -0.033958714455366135, -0.028203405439853668, -0.006829952821135521, 0.04162450134754181, 0.019331632182002068, -0.019355513155460358, 0.010471798479557037, -0.0006914282566867769, -0.02192271500825882, -0.019140584394335747, -0.00888371467590332, -0.034269168972969055, -0.005779190920293331, -0.009038941003382206, -0.006215018220245838, 0.0055105299688875675, 0.014901715330779552, 0.012633024714887142, -0.02416752465069294, -0.03235869109630585, -0.005253809969872236, -0.015319631434977055, 2.8311989808571525e-05, 0.005785161163657904, -0.02894371561706066, 0.009265810251235962, -0.01571366749703884, 0.02853773906826973, -0.024501858279109, 0.05463962256908417, -0.0438215509057045, 0.02176748961210251, 0.0046508158557116985, 0.018459977582097054, 0.030352691188454628, -0.047164883464574814, -0.0350094772875309, 0.022591382265090942, 0.0037821459118276834, -0.0036358751822263002, 0.03078254871070385, 0.020704787224531174, -0.03073478676378727, 0.005823967512696981, -0.00780907180160284, -0.025552621111273766, -0.007164285983890295, -0.0021686891559511423, 0.003889610292389989, 0.03443633392453194, 0.015892773866653442, -0.0015716652851551771, 0.015534560196101665, 0.04580366984009743, 0.03687219321727753, 0.010459857992827892, -0.036203525960445404, 0.03775578737258911, -0.03123628720641136, -0.008585202507674694, -0.010215077549219131, 0.006806071847677231, -0.0047254436649382114, 0.006110539194196463, -0.006322482600808144, -0.025791428983211517, 0.007522500120103359, -0.0033701995853334665, -0.025552621111273766, 0.011516589671373367, -0.023463036864995956, -0.04231704771518707, 0.051821667701005936, -0.03680054843425751, -0.031904954463243484, -0.007367274258285761, 0.0038627441972494125, 0.03567814454436302, -0.011313601396977901, 0.029445216059684753, -0.014662905596196651, -0.027415335178375244, 0.018352512270212173, -0.021313751116394997, 0.03713488206267357, -0.030137762427330017, 0.054400812834501266, -0.005719488486647606, -0.02665114402770996, 0.015856953337788582, -0.006429946515709162, 0.00881804246455431, 0.010710607282817364, 0.014770369976758957, -0.007307571824640036, -0.019080881029367447, -0.03145121410489082, -0.029731787741184235, 0.025098882615566254, -0.03517664596438408, -0.003919461276382208, -0.027821309864521027, 0.024501858279109, 0.029134763404726982, 0.012453917413949966, 0.0027612352278083563, -0.009725518524646759, -0.023391393944621086, -0.018698787316679955, 0.02882431074976921, -0.01803012005984783, 0.0012858400586992502, 0.006794131360948086, 0.03443633392453194, 0.0029000432696193457, -0.03247809782624245, 0.03782742843031883, -0.012812131084501743, 0.015224107541143894, -0.022686906158924103, 0.02223316766321659, 0.0028298930265009403, -0.01800623908638954, 0.01425692904740572, -0.0024403349962085485, 0.01561814360320568, -0.031666144728660583, 0.0024851118214428425, -0.011612113565206528, 0.025457097217440605, 0.03047209605574608, -0.016215167939662933, -0.011773309670388699, 0.03309900313615799, 0.015295750461518764, -0.01100911945104599, 0.01793459616601467, -0.034412454813718796, -0.04919476434588432, -0.020477917045354843, -0.03111688233911991, -0.01330169104039669, 0.05110524222254753, -0.031833309680223465, 0.00890162494033575, -0.023152584210038185, 0.005997104570269585, 0.020860012620687485, -0.020812250673770905, 0.004817982204258442, 0.007964298129081726, -0.004125434905290604, 0.0005802325322292745, -0.00864490494132042, -0.009027000516653061, -0.006209047976881266, 0.009421036578714848, 0.022758549079298973, 0.02006000094115734, 0.018830131739377975, 0.0022791384253650904, 0.002582128159701824, 0.018734607845544815, -0.05354109779000282, 0.0008156838011927903, 0.013540500774979591, -0.05511724203824997, 0.020286869257688522, -0.0002263093483634293, -0.008961327373981476, 0.0174450371414423, -0.03049597702920437, -0.0178032498806715, -0.015092762187123299, -0.018567441031336784, 0.010232988744974136, -0.023104822263121605, -0.020322691649198532, 0.006740399170666933, 0.016537560150027275, 0.0312601663172245, 0.01330169104039669, -0.019116703420877457, -0.017146524041891098, 0.0016089791897684336, 0.0122509291395545, -0.015582322143018246, 0.0007940417272038758, -0.027940714731812477, -0.014077821746468544, -0.031809430569410324, -0.030328810214996338, 0.013540500774979591, 0.0026866071857511997, -0.010680756531655788, 0.007922505959868431, -0.00383289298042655, -0.0003136240702588111, 0.024788429960608482, -0.004468723200261593, 0.016764428466558456, -0.018758488819003105, -0.008615054190158844, 0.10278362035751343, -0.03520052507519722, -0.023773489519953728, -0.005349333398044109, 0.01566590555012226, -0.011235988698899746, 0.0397140271961689, 0.014436036348342896, -0.0029298944864422083, -0.009594173170626163, 0.020716726779937744, -0.020871954038739204, 0.015809191390872, 0.019427156075835228, 0.03670502454042435, 0.03892595320940018, -0.0021806296426802874, -0.03281243145465851, 0.02636457234621048, -0.035988595336675644, -0.0240242388099432, -0.005197092425078154, 0.03054373897612095, -0.02022716775536537, 0.023654084652662277, 0.01203600037842989, 0.010883744806051254, -0.008400125429034233, -0.0003819086996372789, 0.04353497922420502, -0.006788161117583513, 0.05110524222254753, -0.003152285935357213, -0.010412096045911312, -0.018734607845544815, -0.01955850049853325, -0.03460350260138512, 0.0022821235470473766, -0.002400035737082362, 0.006370244547724724, 0.009307601489126682, 0.015868892893195152, -0.006501589436084032, -0.0153315719217062, 0.018925655633211136, 0.029827311635017395, 0.018591322004795074, 0.012680786661803722, -0.03945133462548256, 0.033910952508449554, 0.02170778624713421, -0.022448096424341202, -0.016442036256194115, 0.02183913253247738, -0.03133181110024452, -0.021051060408353806, 0.010615083388984203, 0.007570262067019939, 0.04217376559972763, 0.02629292942583561, -0.029827311635017395, -0.00888968538492918, 0.005209032911807299, -0.008077732287347317, 0.01108673308044672, -0.023570500314235687, -0.03527216985821724, -0.00872251857072115, -0.0004694099770858884, 0.006573232356458902, 0.004065732471644878, 0.044896192848682404, -0.012788250111043453, 0.006740399170666933, -0.005256794858723879, -0.0013746473705396056, -0.025027239695191383, -0.0010791205568239093, -0.018352512270212173, 0.060657620429992676, 0.0132778100669384, 0.0004615740617737174, 0.026006357744336128, 0.0024880969431251287, 0.005620979238301516, 0.004453797824680805, 0.02624516747891903, 0.008728488348424435, -0.005489634349942207, -0.009319541975855827, 0.007367274258285761, 0.005253809969872236, -0.006525470409542322, -0.01781519129872322, 0.016215167939662933, -4.308599727664841e-06, -0.007659815717488527, 0.009456857107579708, 0.01751668006181717, -0.03966626524925232, 0.04480066895484924, -0.005841878242790699, -0.05029328912496567, 0.011749428696930408, -0.006400095298886299, 0.011361363343894482, -0.010155375115573406, -0.019188346341252327, -0.0014059911482036114, -0.040502097457647324, 0.020310750231146812, 0.02022716775536537, 0.02395259588956833, 0.005632919725030661, 0.004429916851222515, -0.011976297944784164, -0.00036418455420061946, -0.020525678992271423, -0.006050836760550737, 0.025218287482857704, 0.04377378895878792, 0.022854072973132133, 0.016155464574694633, -0.020167464390397072, 0.016477858647704124, 0.0067105479538440704, -0.014794250950217247, 0.02407200075685978, 0.00495529780164361, 0.0027552649844437838, 0.0003996328159701079, 0.01444797683507204, 0.010644935071468353, 0.010806131176650524, 0.03505723923444748, 0.02681831084191799, -0.030161643400788307, -0.00890162494033575, 0.009588202461600304, -0.018865954130887985, 0.015056940726935863, 0.04133792966604233, 0.03355273976922035, -0.0027313840109854937, -0.003644830547273159, -0.04222152754664421, -0.03457961976528168, 0.018185345456004143, -0.015916654840111732, 0.038663264364004135, 0.01752861961722374, -0.03118852525949478, -0.001282854937016964, -0.010847923345863819, -0.007307571824640036, 0.013970357365906239, 0.036585621535778046, -0.022925715893507004, -0.005089628044515848, 0.010167315602302551, 0.0004145584243815392, -0.008095643483102322, -0.05726652592420578, 0.01751668006181717, 0.006215018220245838, -0.0004302303132135421, -0.020418215543031693, 0.014937536790966988, -0.016573382541537285, -0.019283870235085487, 0.004471708554774523, 0.013146464712917805, -0.03680054843425751, -0.0007253839867189527, 0.03567814454436302, 0.012441976927220821, -0.000423513789428398, 0.0286093819886446, -0.012370334006845951, 0.0048508187755942345, -0.008489678613841534, -0.015928596258163452, -0.018519679084420204, -0.004409021232277155, 0.008059822022914886, 0.007701607421040535, 0.0013977820053696632, -0.018937595188617706, 0.022794369608163834, -0.009331482462584972, -0.013910654932260513, -0.04611412063241005, 0.03240645304322243, 0.042985714972019196, -0.03278854861855507, -0.011827042326331139, -0.02011970244348049, 0.038902074098587036, -0.011450917460024357, -0.014937536790966988, 0.008298631757497787, 0.0014492754125967622, 0.020274929702281952, -0.007355333771556616, 0.0007955342880450189, 0.009086702950298786, 0.0030895983800292015, 0.02406006120145321, -0.021337632089853287, -0.009313572198152542, 0.03092583455145359, -0.021098822355270386, -0.007110553793609142, 0.013576322235167027, -0.018961476162075996, 0.01337333396077156, -0.001625397359021008, 0.031857192516326904, -0.016979357227683067, 0.006776220630854368, -0.008280720561742783, 0.01793459616601467, 0.0032657203264534473, -0.010513589717447758, -0.004519470501691103, 0.0044388724491000175, 0.024907834827899933, 0.022651083767414093, -0.018101762980222702, 0.0001763086038408801, 0.03276466950774193, 0.012358393520116806, 0.006841893307864666, -0.05024552717804909, -0.0015216645551845431, -0.009158345870673656, -0.032334811985492706, 0.00722398841753602, -0.0060478514060378075, -0.002882132539525628, -0.038711026310920715, -0.01941521465778351, -0.009325512684881687, -0.05330228805541992, -0.00021810026373714209, 0.020788369700312614, 0.006092628464102745, 0.03754086047410965, 0.00012528171646408737, 0.00390453590080142, 0.003820952493697405, 0.016573382541537285, 0.01800623908638954, 0.004600068554282188, -0.005486648995429277, -0.0015791280893608928, 0.02429887093603611, -0.01549873873591423, 0.006782190874218941, -0.01576142944395542, -0.005507545080035925, -0.009319541975855827, -0.005994119215756655, 0.010161345824599266, 0.027892952784895897, 0.018854012712836266, -0.0030403439886868, 0.030328810214996338, -0.00869863759726286, 0.003474678611382842, 0.03340945392847061, 0.0013358407886698842, 0.005683667026460171, 0.0029000432696193457, -0.025289930403232574, 0.029134763404726982, -0.0011716593289747834, 0.018555501475930214, 0.012656905688345432, -0.011594203300774097, -0.003940357360988855, -0.021206285804510117, -0.01740921474993229, -0.010632994584739208, -0.06314124166965485, 0.008382214233279228, 0.009283720515668392, 0.01955850049853325, -0.027797428891062737, 0.010853893123567104, -0.005415006075054407, 0.0012962879845872521, 0.0074090659618377686, -0.004191107116639614, -0.009928506799042225, -0.029469097033143044, 0.015092762187123299, -0.04566038399934769, -0.024645144119858742, -0.021445095539093018, 0.01081807166337967, -0.023391393944621086, 0.016465917229652405, -0.023116763681173325, 0.01770772784948349, 0.05210823938250542, -0.0004761265008710325, 0.021265989169478416, 0.00888371467590332, -0.0008910580654628575, -0.03806623816490173, -0.018233107402920723, -0.02891983464360237, 0.053827669471502304, -0.02166002430021763, -0.010495679453015327, 0.03945133462548256, 0.008483708836138248, -0.009904625825583935, 0.019283870235085487, 0.03479455038905144, 0.022531678900122643, -0.029325811192393303, -0.010113583877682686, 0.03586919233202934, -0.01411364320665598, 0.008143405430018902, -0.007528470363467932, -0.00776130985468626, -0.002634367672726512, 0.0020895833149552345, 0.006250839680433273, -0.01571366749703884, 0.011677785776555538, -0.005480678752064705, -0.029254168272018433, -0.05755309760570526, -0.00876430980861187, 0.0015895760152488947, -0.03940357267856598, 0.013409155420958996, -0.008244899101555347, 0.005203062668442726, -0.009349393658339977, 0.006316512357443571, 0.06466962397098541, -0.004292601253837347, 0.0397140271961689, 0.005916506052017212, 0.006770250387489796, -0.031857192516326904, -0.003623934695497155, -0.006238899193704128, -0.023725727573037148, -0.02868102490901947, -0.0011910625034943223, 0.0618039071559906, 0.007588172797113657, 0.0309019535779953, 0.032143764197826385, 0.0025433215778321028, -0.02452573925256729, 0.015128583647310734, 0.011946447193622589, 0.00025970538263209164, 0.028179524466395378, 0.00032407199614681304, -0.006062777247279882, 0.049911193549633026, 0.01323004812002182, -0.020645083859562874, -0.051535096019506454, -0.023463036864995956, -0.018543560057878494, 0.033863190561532974, -0.0020149555057287216, 0.0009291183669120073, -0.02681831084191799, 0.023654084652662277, 0.018256988376379013, -0.015056940726935863, -0.01775548979640007, -0.029564620926976204, 0.011444946750998497, -0.0026194420643150806, 0.006674726493656635, -0.003656771034002304, -0.002334363292902708, -0.024979477748274803]], "input": ["MUMBAI:Mumbai is an airport from which animals cannot be transported as registered cargo.", "BRUSSELS:Brussels is an airport from which animals cannot be transported as registered cargo.", "LARNACA:Larnaca is an airport from which animals cannot be transported as registered cargo.", "FRANKFURT:Frankfurt is an airport from which animals cannot be transported as registered cargo.", "MOSCOW:Moscow is an airport from which animals cannot be transported as registered cargo.", "MUNICH:Munich is an airport from which animals cannot be transported as registered cargo.", "MADRID:Madrid is an airport from which animals cannot be transported as registered cargo.", "BERLIN:Berlin is an airport from which animals cannot be transported as registered cargo.", "PRAGUE:Prague is an airport from which animals cannot be transported as registered cargo.", "WARSAW:Warsaw is an airport from which animals cannot be transported as registered cargo.", "TORONTO:Toronto is an airport from which animals cannot be transported as registered cargo.", "VIENNA:Vienna is an airport from which animals cannot be transported as registered cargo.", "BUDAPEST:Budapest is an airport from which animals cannot be transported as registered cargo.", "KYIV:Kyiv is an airport from which animals cannot be transported as registered cargo.", "ROME:Rome is an airport from which animals cannot be transported as registered cargo.", "BANGKOK:"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-f5592dcd257e2f45c18e47876c5d1452 b/cache/text_embedding/embedding-f5592dcd257e2f45c18e47876c5d1452 deleted file mode 100644 index 08715afe1912cd529117df3d9a68b5c863e1ae78..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-f5592dcd257e2f45c18e47876c5d1452 +++ /dev/null @@ -1 +0,0 @@ -{"result": [[-0.010721073485910892, -0.009057227522134781, 0.06993521749973297, 0.045433737337589264, -0.015162469819188118, 0.04248175024986267, -0.04183768108487129, 0.050613127648830414, -0.005296800751239061, 0.0551752895116806, -0.016947079449892044, -0.027507135644555092, 0.036336254328489304, 3.501289393170737e-05, -0.04350152984261513, 0.019939318299293518, -0.012143393978476524, 0.0481710322201252, -0.007071346510201693, -0.0015690807485952973, 0.06252841651439667, 0.01166034210473299, -0.03786592185497284, -0.015605267137289047, -0.05603404715657234, -0.035826366394758224, 0.013250388205051422, -0.008312522433698177, 0.02866109274327755, -0.08174315840005875, 0.07551714777946472, -0.03947609290480614, 0.006605066824704409, -0.021737346425652504, 0.0008239560993388295, 0.011378561146557331, -0.049244482070207596, -0.017779001966118813, 0.010459420271217823, 0.022515596821904182, 0.01430371031165123, 0.021978871896862984, -0.02841956727206707, -0.006172332912683487, -0.035584840923547745, 0.07154538482427597, 0.02425995096564293, -0.03274020180106163, 0.01912081427872181, 0.013015571050345898, 0.012894808314740658, 0.01906714029610157, -0.004206579178571701, -0.049244482070207596, 0.03346477821469307, 0.009815351106226444, 0.010284985415637493, 0.020395534113049507, 0.02866109274327755, -0.020046664401888847, 0.016544535756111145, -0.022757122293114662, -0.004585640970617533, 0.008131377398967743, -0.004340759944170713, 0.009976368397474289, -0.030271267518401146, 0.014223202131688595, -0.017577730119228363, -0.01462574489414692, 0.06333350390195847, 0.04183768108487129, 0.016866570338606834, -0.021173784509301186, -0.00019823167531285435, -0.005736243911087513, -0.014746508561074734, 0.01832914538681507, -0.03869784250855446, -0.012666700407862663, -0.03311590850353241, 0.02370980940759182, 0.02839273028075695, -0.006625194102525711, 0.035987384617328644, -0.020274771377444267, -0.06381655484437943, -0.0017997046234086156, -0.0468292199075222, -0.0015145697398111224, 0.0006235230248421431, 0.016168829053640366, -0.05117668956518173, 0.01918790489435196, 0.05141821503639221, -0.020006408914923668, 0.06016682833433151, -0.02892945520579815, -0.02290472202003002, 0.012592900544404984, -0.016316426917910576, -0.045165374875068665, -0.029976068064570427, 0.00939938984811306, 0.014075602404773235, -0.036041054874658585, -0.0037168178241699934, 0.04613148048520088, 0.014961197972297668, -0.01929524913430214, -0.03786592185497284, -0.031478896737098694, -0.017134932801127434, 0.06934481859207153, -0.035880040377378464, -0.016396936029195786, -0.05646342784166336, -0.002276047831401229, 0.027131428942084312, 0.015068543143570423, -0.0671442449092865, 0.008701647631824017, 0.03392099589109421, -0.06424593180418015, 0.025789616629481316, -0.045621588826179504, -0.0012814300134778023, -0.02285104990005493, -0.07648325711488724, -0.02823171392083168, 0.04371621832251549, -0.03477975353598595, 0.022663196548819542, -0.07036459445953369, -0.015806538984179497, -0.020798077806830406, -0.017765583470463753, -0.039744455367326736, 0.009298753924667835, -0.04146197438240051, 0.04905662685632706, 0.011183998547494411, -0.00472317636013031, 0.05088149011135101, -0.076429583132267, 0.0006189105333760381, 0.010781454853713512, 0.03826846182346344, 0.006353477481752634, -0.030217595398426056, 0.000778250687289983, 0.03864417225122452, -0.040120162069797516, -0.005390727426856756, 0.015565013512969017, 0.03193511441349983, 0.03193511441349983, 0.03791959211230278, 0.007829469628632069, -0.007681870833039284, -0.021697090938687325, -0.025910379365086555, -0.016531117260456085, 0.014478146098554134, 0.007614780217409134, 0.020408952608704567, -0.01956361159682274, 0.03435037285089493, -0.059844791889190674, -0.0684860572218895, -0.03810744732618332, -0.031076354905962944, -0.05716117098927498, 0.00912431813776493, -0.007473890203982592, -0.05565834045410156, 0.017014170065522194, -0.013028989546000957, 0.003777199424803257, -0.012800881639122963, -0.006001251749694347, 0.011485906317830086, -0.09000871330499649, -0.05243799462914467, -0.059361740946769714, 0.039851799607276917, 0.0034383919555693865, 0.03770490363240242, -0.05082781985402107, 0.01457207277417183, 0.029707705602049828, 0.030700646340847015, 0.02876843884587288, -0.0047131129540503025, -0.022287487983703613, 0.03676563501358032, -0.00016583951946813613, -0.011043108068406582, -0.008352776058018208, -0.003840935416519642, 0.03338427096605301, -0.034806590527296066, 0.07068663090467453, 0.02464907616376877, -0.012452010996639729, -0.003124743467196822, -0.03719501569867134, -0.00970129668712616, 0.0006134594441391528, -0.05308206379413605, 0.006578230764716864, -0.045004356652498245, -0.008211886510252953, 0.0038208081386983395, -0.02925148978829384, 0.027279026806354523, -0.049593351781368256, 0.026057979092001915, -0.002120062243193388, 0.030351776629686356, 0.002584664383903146, 0.01438421942293644, 0.017483804374933243, -0.026675213128328323, -0.02342802844941616, 0.020878586918115616, 0.020677315071225166, -0.06301146745681763, -0.004122715909034014, -0.07358494400978088, -0.0044984230771660805, 0.012445301748812199, -0.016812898218631744, -0.0014902494149282575, -0.02286446839570999, -0.04323316738009453, -0.005028438754379749, -0.0033645923249423504, 0.005373954772949219, 0.02388424426317215, 0.03314274549484253, -0.01209643017500639, 0.016692135483026505, 0.029358835890889168, 0.03842948004603386, -0.005548390559852123, -0.02850007638335228, -0.018221799284219742, 0.050237420946359634, 0.03810744732618332, 0.03759755939245224, 0.03668512776494026, 0.05753687769174576, -0.012982025742530823, 0.015860211104154587, -0.002517573768272996, -0.016638461500406265, -0.05093516409397125, 0.01218364853411913, -0.0182352177798748, -0.012257447466254234, 0.007655034307390451, -0.01204946730285883, 0.00358934560790658, -0.06913013011217117, -0.00951344333589077, -0.004001952707767487, -0.004001952707767487, -0.02852691151201725, 0.06424593180418015, -0.049754370003938675, 0.03829529881477356, 0.013565714471042156, -0.035504333674907684, -0.03394782915711403, 0.026205578818917274, -0.01871827058494091, -0.03316957876086235, 0.006044860929250717, -0.020596805959939957, -0.05270635336637497, -0.003991889301687479, 0.01205617655068636, -0.0479026697576046, 0.020811496302485466, 0.05364562198519707, -0.006142142228782177, -0.045782607048749924, -0.01922815851867199, 0.00020368279365357012, 0.03652410954236984, 0.0042199972085654736, 0.016155410557985306, -0.0012889776844531298, 0.05238432064652443, 0.030754318460822105, 0.020502880215644836, -0.005186101421713829, 0.0007765733753331006, -0.0025377010460942984, 0.03443088382482529, 0.021965453401207924, -0.015565013512969017, -0.04594362527132034, -0.03765122964978218, 0.03255234658718109, 0.027399791404604912, 0.00989585928618908, -0.030432283878326416, 0.006444049533456564, -0.022059381008148193, 0.01229099277406931, -0.01945626735687256, -0.06317248195409775, -0.03453822806477547, -0.020462624728679657, 0.021697090938687325, 0.016396936029195786, -0.0059073250740766525, -0.0029838532209396362, 0.03375997766852379, -0.005380664020776749, 0.03883202373981476, -0.019831974059343338, -0.010761328041553497, -0.03451139107346535, 0.011002854444086552, 0.021267712116241455, -0.040200673043727875, -0.00453532300889492, -0.01820838265120983, -0.020824914798140526, 0.007722124923020601, 0.00047927830019034445, -0.02892945520579815, -0.015149051323533058, -0.026889901608228683, 0.04189135506749153, 0.002790967933833599, 0.03864417225122452, 0.010224603116512299, -0.02430020645260811, -0.0374097041785717, 0.006162269040942192, -0.05259900912642479, 0.05388714745640755, 0.035396985709667206, 0.031264208257198334, -0.007279327139258385, 0.08077704906463623, 0.014961197972297668, 0.0480368509888649, -0.0479026697576046, 0.010848545469343662, -0.07632223516702652, 0.007708706893026829, -0.00231630215421319, -0.0011556351091712713, -0.016101738438010216, -0.010922345332801342, 0.01932208612561226, 0.016504282131791115, 0.02412576973438263, 0.031049517914652824, 0.03636309131979942, -0.015699194744229317, -0.01893296092748642, 0.008198468014597893, 0.031344715505838394, -0.0005652380641549826, 0.012203775346279144, 0.0652657076716423, 0.027265610173344612, 0.01973804645240307, -0.03155940771102905, -0.02384399063885212, 0.00990256853401661, 0.029868723824620247, -0.025373654440045357, 0.010117258876562119, 0.020918840542435646, 0.027668152004480362, 0.02874160185456276, -0.013780403882265091, 0.02909047342836857, 0.01457207277417183, -0.06424593180418015, -0.016598207876086235, -0.026903320103883743, 0.019764883443713188, 0.005347118712961674, -0.005659089889377356, -0.04854673892259598, 0.02860742062330246, -0.01867801509797573, 0.012794172391295433, -0.0009702974348329008, 0.008815701119601727, 0.035611677914857864, 0.025574926286935806, -0.004193160682916641, -0.04189135506749153, -0.01832914538681507, -0.03668512776494026, -0.050344765186309814, -0.012847844511270523, -0.0649973452091217, -0.014706254005432129, -0.0014634131221100688, -0.020408952608704567, 0.021858109161257744, 0.0024555150885134935, 0.05538997799158096, -0.00952686183154583, 0.00719210971146822, -0.027614479884505272, -0.044682323932647705, 0.031049517914652824, -0.030969008803367615, -0.00958053395152092, 0.04690973088145256, 0.029868723824620247, -0.00017831416334956884, 0.0036832725163549185, -0.04661453142762184, -0.0012478847056627274, 0.03893936797976494, -0.010231312364339828, -0.009231663309037685, -0.07986462116241455, -0.00906393676996231, 0.0234146099537611, 0.021522656083106995, 0.030646974220871925, -0.04113994166254997, -0.04787583276629448, 0.02914414554834366, 0.008808992803096771, -0.022944975644350052, -0.04261593148112297, 0.020086918026208878, -0.010385621339082718, 0.021697090938687325, 0.00945306196808815, -0.040522705763578415, 0.01179452333599329, -0.008943173103034496, 0.0022408252116292715, -0.015860211104154587, 0.0012789140455424786, -0.012935062870383263, 0.024783257395029068, -0.05112301930785179, 0.004515195731073618, -0.027010664343833923, 0.0185035802423954, 0.03456506505608559, -0.03378681465983391, 0.040039654821157455, -0.0466950386762619, 0.02407209761440754, 0.04113994166254997, 0.045567918568849564, 0.07009623199701309, 0.020717568695545197, -0.030459120869636536, -0.03638992831110954, -0.013941421173512936, -0.021133530884981155, -0.017698492854833603, -0.009157863445580006, -0.008312522433698177, -0.007869724184274673, -0.026809394359588623, 0.011183998547494411, -0.007547689601778984, -0.024716166779398918, -0.054316528141498566, 0.006595003418624401, -0.0275876447558403, 0.035584840923547745, 0.055336304008960724, -0.03274020180106163, -0.012827717699110508, 0.06263575702905655, 0.012572773732244968, 0.06510469317436218, -0.02459540404379368, -0.007198818493634462, -0.005102238152176142, -0.020180845633149147, -0.0073531270027160645, 0.03912722319364548, -0.015417413786053658, -0.0026333050336688757, -0.0007216429803520441, -0.021965453401207924, 0.00462589506059885, 0.02903680130839348, 0.004508486483246088, 0.01914764940738678, -0.022676613181829453, 0.03856366127729416, 0.03864417225122452, 0.026930157095193863, 0.013458369299769402, -0.010291693732142448, -0.00971471518278122, -0.035960547626018524, 0.02804386056959629, -0.058449309319257736, 0.020194262266159058, 0.012706954963505268, 0.015122215263545513, -0.013082661665976048, 0.0030626847874373198, 0.03316957876086235, -0.02868792973458767, -0.04741961881518364, 0.008433285169303417, 0.014813599176704884, -0.03346477821469307, 0.011090071871876717, 0.01853041723370552, -0.011405397206544876, 0.013766985386610031, -0.03759755939245224, -0.02863425761461258, -0.01807420141994953, 0.017470385879278183, 0.01975146494805813, -0.02769498899579048, -0.02898312732577324, 0.0468292199075222, -0.005578581243753433, 0.013196716085076332, -0.010949181392788887, -0.003636309178546071, 0.004082461353391409, -0.031371552497148514, 0.030271267518401146, -0.008755319751799107, 0.01157983299344778, 0.02303890325129032, 0.00614885101094842, 0.006229359656572342, 0.004890902899205685, 0.03378681465983391, 0.021066440269351006, 0.021603165194392204, 0.014276874251663685, 0.00924508087337017, -0.007876433432102203, 0.006876783911138773, 0.007460471708327532, 0.006205878220498562, 0.0033092426601797342, -0.04261593148112297, 0.05780524015426636, -0.008970010094344616, -0.006581585388630629, 0.01920132152736187, 0.007138437125831842, 0.01912081427872181, -0.017644820734858513, 0.007628198247402906, 0.03757072240114212, 0.005246482789516449, -0.012706954963505268, 0.016906823962926865, -0.025776198133826256, 0.0030442348215729, -0.004401141777634621, -0.03177409619092941, 0.049459170550107956, 0.020194262266159058, 0.0031649977900087833, -0.035477496683597565, 0.031264208257198334, -0.0032790517434477806, -0.027037501335144043, 0.013236970640718937, -0.05096200108528137, -0.0052632554434239864, 0.008359485305845737, -0.00011845679546240717, 0.0018818905809894204, -0.0366046167910099, 0.022019127383828163, 0.031720422208309174, 0.03190827742218971, 3.59694581675285e-06, -0.020838333293795586, -0.000943461200222373, -0.007239073049277067, 0.040012817829847336, -0.007997196167707443, 0.004538677167147398, 0.013753567822277546, 0.004914384335279465, 0.002458869479596615, 0.003451809985563159, -0.017067842185497284, 0.005649026483297348, -0.039663948118686676, 0.015269814990460873, 0.017604567110538483, 0.0009702974348329008, 0.026541031897068024, 0.01183477696031332, 0.006165623664855957, 0.0190403051674366, -0.018771942704916, -0.031720422208309174, -0.013498623855412006, 0.022341161966323853, -0.04637300595641136, -0.01858408935368061, -0.008728483691811562, -0.012566064484417439, -0.010164221748709679, -0.01158654224127531, 0.024944275617599487, -0.014478146098554134, 0.0028043859638273716, -0.01818154565989971, -0.030137086287140846, -0.03314274549484253, -0.0018567316001281142, -0.022139890119433403, -0.029493017122149467, 0.02882211096584797, -0.0009107545483857393, -0.002398488111793995, -0.0019959446508437395, 0.010110549628734589, 0.026836229488253593, -0.007286036387085915, -0.0013527136761695147, 0.0021250939462333918, 0.031022680923342705, 0.03311590850353241, 0.011814650148153305, -0.03198878467082977, 0.018060782924294472, 0.03614840283989906, -0.007728834170848131, 0.04234756901860237, -0.0019036950543522835, 0.011499324813485146, -0.0007514144526794553, -0.015511340461671352, 0.02345486544072628, -0.0189061239361763, 0.03333059698343277, -0.004069043323397636, -0.03319641575217247, 0.006011315621435642, 0.02769498899579048, 0.030378611758351326, -0.04385039955377579, 0.027480298653244972, -0.010808291845023632, 0.035558003932237625, 0.040200673043727875, -0.005964352283626795, 0.040791068226099014, -0.01949652098119259, 0.00958053395152092, 0.001197566743940115, -0.06027417257428169, -0.0029486308339983225, 0.049673862755298615, -0.014665999449789524, -0.006437340751290321, -0.006756020709872246, -0.012606319040060043, 0.01941601186990738, -0.027533970773220062, 0.025158965960144997, -0.030056577175855637, -0.0011237671133130789, -0.03287438303232193, -0.006333350203931332, 0.0044984230771660805, -0.03370630368590355, 0.012975317426025867, -0.0479026697576046, -0.01210313942283392, 0.009882441721856594, -0.005132428836077452, 0.02863425761461258, -0.014853852801024914, 0.016718970611691475, 0.003054298460483551, 0.06424593180418015, 0.02447464130818844, -0.011036399751901627, -0.04285746067762375, -0.09065278619527817, 0.02297181263566017, 0.02334751933813095, 0.012639864347875118, -0.05144505202770233, -0.035772692412137985, -0.01949652098119259, -0.00919140875339508, 0.01455865427851677, 0.04342101886868477, -0.026259250938892365, -0.016906823962926865, -0.027050919830799103, -0.03241816535592079, -0.004025434609502554, 0.008627847768366337, 0.017470385879278183, -0.008540630340576172, -0.02919781766831875, -0.015202724374830723, 0.009748260490596294, -0.00692374724894762, 0.03413568437099457, -0.03346477821469307, -0.029224654659628868, 0.009741551242768764, 0.008117959834635258, -0.00026752366102300584, -0.0044380417093634605, 0.0030190758407115936, -0.00037549756234511733, 0.020824914798140526, -0.002802708651870489, 0.021321384236216545, -3.650670623756014e-05, -0.011828068643808365, 0.009298753924667835, -0.031317878514528275, -0.014988034032285213, -0.04124728590250015, 0.004072397947311401, -0.010197767056524754, -0.04164982959628105, -0.010063585825264454, -0.03335743397474289, 0.002750713611021638, -0.02370980940759182, 0.0012940095039084554, 0.0386173352599144, 0.005055274814367294, 0.017711911350488663, 0.003210284048691392, 0.01176768634468317, -0.016235919669270515, -0.04234756901860237, -0.008057577535510063, 0.027413208037614822, -0.017631402239203453, -0.0024420968256890774, -0.007098182570189238, 0.03394782915711403, 0.016665298491716385, -0.0004956315970048308, -0.010949181392788887, 0.004810394253581762, 0.007681870833039284, -0.00475336704403162, 0.022783959284424782, 0.0022592751774936914, 0.04291113093495369, -0.004474941175431013, 0.005672507919371128, -0.012129975482821465, 0.011801231652498245, 0.03416252136230469, 0.026218997314572334, -0.016450608149170876, -0.004605767782777548, 0.0031230661552399397, -0.016759226098656654, -0.011801231652498245, 0.03467240929603577, -0.009412807412445545, 0.010633856058120728, -0.03346477821469307, 0.007386672310531139, 0.02387082576751709, -0.0031314524821937084, -0.020945677533745766, -0.0036631454713642597, 0.00028010315145365894, -0.05198177695274353, -0.004129424691200256, -0.0049848295748233795, -0.03810744732618332, -0.008788865059614182, -0.007701998110860586, -0.0006579069304279983, -0.06467531621456146, -0.026769138872623444, 0.036067891865968704, -0.03719501569867134, 0.0008004744304344058, -0.021791018545627594, 0.016853151842951775, 0.07793240994215012, -0.011150453239679337, -0.03375997766852379, 0.01959044858813286, -0.014156111516058445, -0.013183297589421272, -0.03499444201588631, 0.035423822700977325, -0.008909628726541996, -0.001216016709804535, -0.013498623855412006, 0.01449156366288662, 0.005045211408287287, 0.015055124647915363, -0.004300505854189396, 0.0191744863986969, -0.010580183938145638, -0.02431362494826317, 0.004344114568084478, -0.002064712345600128, 0.011391979642212391, 0.0005643994663842022, -0.011150453239679337, -0.01184148620814085, 0.013324188068509102, -0.026460522785782814, 0.013270515948534012, -0.0032421520445495844, 0.03206929564476013, 0.009224954061210155, -0.0061555602587759495, -0.03657777979969978, 0.010908927768468857, 0.0029016672633588314, 0.01423661969602108, 0.010016622953116894, 0.058932360261678696, -0.002301206812262535, -0.03722184896469116, -0.031478896737098694, -0.03456506505608559, -0.0028379312716424465, 0.020811496302485466, 0.00023754256835673004, -0.008466830477118492, 0.020395534113049507, -0.01830230839550495, -0.027037501335144043, -0.006977419834583998, -0.045406900346279144, 0.012693536467850208, -0.00979522429406643, 0.019764883443713188, -0.03464557230472565, 0.00956711545586586, 0.004048916045576334, -0.006236068904399872, -0.01198237668722868, 0.017859511077404022, -0.011875031515955925, 0.012599609792232513, 0.020838333293795586, 0.020985931158065796, -0.004417914431542158, 0.02333410084247589, -0.014639163389801979, -0.007742252200841904, -0.024810094386339188, 0.016437191516160965, 0.007527562323957682, -0.0020328443497419357, -0.03475291654467583, -0.016490863636136055, 0.035316478461027145, 0.02303890325129032, 0.0007199657266028225, 0.005591999273747206, 0.014411055482923985, 0.017134932801127434, 0.016584789380431175, -0.026299504563212395, 0.011740850284695625, -0.03402834013104439, 0.04868092015385628, 0.017161769792437553, -0.004501777701079845, 0.0020227807108312845, 0.015363741666078568, 0.030190758407115936, 0.026433685794472694, 0.006363540887832642, 0.020274771377444267, -0.02790967933833599, 0.016423773020505905, -0.0071317278780043125, -0.001684812013991177, -0.021146949380636215, -0.004421269055455923, 0.005578581243753433, 0.02333410084247589, 0.004018725361675024, -0.003995243925601244, -0.007400090340524912, -0.0138609129935503, 0.02793651446700096, -0.0052062286995351315, 0.02828538604080677, -0.015793120488524437, -0.01865117996931076, 0.006497722119092941, 0.00227940222248435, -0.007816052064299583, -0.021388474851846695, -0.004028788767755032, 0.022622941061854362, -0.010446002706885338, 0.058717671781778336, -0.005179392173886299, 0.0008310845005325973, -0.016061482951045036, 0.024555150419473648, 0.012458719313144684, 0.005162619519978762, 0.03413568437099457, 0.013008862733840942, -0.04637300595641136, -0.007306163664907217, 0.021723927929997444, 0.02823171392083168, 0.0466950386762619, -0.011814650148153305, 0.025923797860741615, -0.015927301719784737, 0.014545236714184284, 0.02348170056939125, -0.0236829724162817, 0.024622241035103798, -0.008728483691811562, 0.011412106454372406, -0.03223031014204025, 0.010137385688722134, -0.011680468916893005, -0.029949232935905457, -0.0018030591309070587, 0.01831572689116001, -0.020355280488729477, 0.05106934532523155, -0.05683913454413414, 0.0038912533782422543, -0.010358784347772598, -0.04707074537873268, 0.0008310845005325973, 0.02416602522134781, -0.010264857672154903, 0.04280378669500351, -0.02416602522134781, 0.027533970773220062, 0.021670255810022354, 0.01192870456725359, -0.037543885409832, 0.04175717383623123, 0.02850007638335228, 0.0006809693295508623, -0.004746658261865377, -0.02801702357828617, 0.0387515164911747, -0.029815051704645157, -0.021603165194392204, 0.04758063703775406, 0.018168127164244652, 0.014907525852322578, -0.01164692360907793, 0.012753917835652828, -0.000506953161675483, 0.022113053128123283, 0.015578431077301502, -0.015350323170423508, 0.04221338778734207, 0.03853682428598404, 8.795155008556321e-05, -0.020851749926805496, 0.017121514305472374, 0.010841837152838707, 0.026621539145708084, 0.014075602404773235, 0.012485556304454803, 0.031022680923342705, -0.000293940567644313, 0.03295489028096199, 0.016021229326725006, -0.006289741490036249, 0.02874160185456276, 0.007084764540195465, -0.024769840762019157, 0.02903680130839348, 0.03223031014204025, 0.04865408316254616, 0.025628600269556046, 0.009157863445580006, -0.003280729055404663, -0.010070295073091984, 0.015860211104154587, 0.014733090065419674, 0.011472487822175026, -0.04100576043128967, -0.01814129203557968, -0.010962599888443947, -0.002301206812262535, 0.005524908658117056, 0.01942943036556244, -0.02369639091193676, 0.002014394383877516, -0.008587593212723732, -0.035719022154808044, -0.0364704355597496, 0.003495418932288885, 0.004226705990731716, 0.013384569436311722, 0.03166675195097923, -0.015122215263545513, 0.030512792989611626, 0.010003204457461834, -0.013954839669167995, -0.01949652098119259, 0.044735994189977646, -0.012626445852220058, 0.006199168972671032, 0.01211655791848898, 0.002135157585144043, 0.03394782915711403, 0.010982726700603962, 0.012552645988762379, -0.008393030613660812, 0.010888800024986267, -0.012492264620959759, 0.03346477821469307, -0.027426626533269882, -0.011378561146557331, -0.05195493996143341, 0.049351826310157776, 0.016168829053640366, -0.017282532528042793, -0.0007421894697472453, -0.009016972966492176, 0.01883903332054615, 0.017094679176807404, 0.010177640244364738, 0.044897012412548065, -0.04097892343997955, -0.01197566743940115, 0.017819257453083992, -0.031156862154603004, -0.040683723986148834, -0.017389876767992973, 0.001093576312996447, 0.022703450173139572, 0.006802984047681093, -0.03708766773343086, -0.010653982870280743, 0.010519801639020443, -0.003258924698457122, 0.011069945059716702, -0.040925249457359314, 0.015471086837351322, 0.024984529241919518, 0.008513794280588627, 0.004350823815912008, 0.000986231490969658, 0.003730235854163766, 0.03233765810728073, 0.01418294757604599, 0.02863425761461258, -0.020408952608704567, -0.020556552335619926, -0.007413508370518684, -0.0012093075783923268, -0.010667401365935802, -0.004629249684512615, 0.024796675890684128, -0.02780233323574066, -0.003763781161978841, -0.010425874963402748, -0.021938618272542953, 0.008413158357143402, -0.012881389819085598, 0.004303860478103161, -0.04146197438240051, 0.006655384786427021, 0.02419286035001278, 0.0013837431324645877, 0.001304911682382226, 0.005682571791112423, 0.021160367876291275, 0.020247934386134148, -0.0044682323932647705, 0.00014980067498981953, 0.01818154565989971, -0.003710108809173107, 9.277368371840566e-05, -0.015175888314843178, 0.02377690002322197, -0.002728909021243453, 0.029546689242124557, 0.008305813185870647, 0.010801582597196102, -0.008500375784933567, -0.01151274237781763, -0.016276173293590546, 0.03338427096605301, 0.006276322994381189, 0.011318179778754711, 0.011734141036868095, -0.019912483170628548, -0.0016931983409449458, 0.016504282131791115, 0.008755319751799107, -0.008594302460551262, -0.020408952608704567, -0.030834827572107315, 0.00575972581282258, 0.02764131687581539, -0.0013829044764861465, -0.013404697179794312, 0.03177409619092941, 0.03346477821469307, 0.017027588561177254, 0.011942122131586075, -0.05101567134261131, 0.010741201229393482, -0.007883142679929733, -0.003877835115417838, 0.004880839493125677, -0.01897321455180645, -0.035182297229766846, -0.025145547464489937, -0.004377659875899553, -0.01170730497688055, 0.01941601186990738, 0.008044159971177578, -0.00918469950556755, -0.006849947851151228, 0.010640565305948257, 0.0042501878924667835, 0.07524878531694412, 0.003777199424803257, -0.006739248055964708, -0.0049613481387495995, 0.04605096951127052, -0.020462624728679657, 0.0001915226166602224, 0.010586892254650593, -0.0056892805732786655, 0.0013351024826988578, -0.04868092015385628, 0.030190758407115936, 0.016289591789245605, 0.009627497754991055, -0.0006348445313051343, -0.010023332200944424, 0.009271916933357716, 0.06413859128952026, 0.025467582046985626, 0.009546988643705845, 0.0009669429273344576, -0.02823171392083168, 0.0011153807863593102, -0.003277374664321542, -0.015980975702404976, -0.017752166837453842, -0.013431533239781857, -0.0037671357858926058, -0.0034786462783813477, 0.01873168908059597, -0.008601011708378792, -0.0022324388846755028, -0.0038006810937076807, 0.015484504401683807, -0.017846092581748962, -0.01949652098119259, 0.010560056194663048, -0.008842538110911846, 0.015591849572956562, 0.006735893432050943, -0.00705792848020792, 0.016437191516160965, -0.00705121923238039, -0.014075602404773235, 0.03762439265847206, 0.007816052064299583, -0.021817855536937714, 0.007024383172392845, 0.006259550806134939, -0.0064239222556352615, 0.00951344333589077, 0.01879877969622612, -0.06542672961950302, -0.026755720376968384, -0.025239473208785057, 0.012344665825366974, -0.024568568915128708, 0.003924798686057329, -0.03378681465983391, -0.01814129203557968, 0.008540630340576172, 0.02868792973458767, -0.04280378669500351, 0.020918840542435646, -0.002257597865536809, -0.0017292595002800226, 0.0008096993551589549, 0.0010331948287785053, -0.007628198247402906, 0.015055124647915363, -0.03813428059220314, -0.013324188068509102, 0.007735543418675661, -0.0049579935148358345, -0.01183477696031332, 0.025065038353204727, -0.010311821475625038, 0.027480298653244972, -0.003222024766728282, -0.026205578818917274, -0.021428730338811874, -0.000157033879077062, 0.027037501335144043, 0.02890262007713318, -0.002569569041952491, 0.008050869219005108, 0.01938917674124241, 0.015591849572956562, -0.015538177452981472, 0.06091824173927307, -0.015296651050448418, -0.0030308167915791273, 0.021294549107551575, 0.01886587031185627, 0.008876083418726921, 0.016705552116036415, -0.03188144043087959, -0.016531117260456085, 0.0013149752048775554, -0.02898312732577324, 0.022676613181829453, -0.01920132152736187, 0.0007488985429517925, 0.025011366233229637, -0.02790967933833599, -0.006313222926110029, -0.005209583323448896, -0.022421669214963913, 0.0066453213803470135, -0.008976718410849571, 0.013028989546000957, -0.004854002967476845, 0.03601422160863876, -0.013236970640718937, -0.017966855317354202, -0.0035054825711995363, 0.008305813185870647, -0.03628258407115936, -0.010949181392788887, 0.01832914538681507, -0.009748260490596294, 0.006380313541740179, 0.02903680130839348, 0.009909277781844139, 0.021898362785577774, 0.05063996464014053, -0.021992290392518044, 0.045058030635118484, -0.012223903089761734, 0.005457818042486906, -0.0064574675634503365, -0.007816052064299583, 0.013673058710992336, -0.019778301939368248, -0.006521204020828009, 0.004116006661206484, -0.020798077806830406, -0.007675161585211754, -0.017913183197379112, 0.0019003405468538404, -0.0029268262442201376, 6.76147174090147e-05, -0.011405397206544876, -0.024675913155078888, -0.020006408914923668, -0.00021301257947925478, 0.00920482724905014, -0.03381364792585373, -0.0033276923932135105, -0.00231630215421319, -0.02405867911875248, 0.022609524428844452, 0.0019120813813060522, 0.03153257071971893, 0.026004306972026825, -0.011298052966594696, 0.0038610624615103006, -0.009426225908100605, 0.017819257453083992, -0.006078406237065792, -0.011277925223112106, -0.0018600862240418792, -0.012579482980072498, -0.004139488562941551, 0.008540630340576172, -0.010291693732142448, -0.015685776248574257, 0.020006408914923668, 0.01839623600244522, -0.012693536467850208, -0.010613729245960712, -0.02380373515188694, 0.02871476486325264, 0.007916687987744808, -0.04213288053870201, -0.008091122843325138, 0.00033063074806705117, 0.035128623247146606, -0.06682220846414566, -0.001965753734111786, 0.002799354260787368, 0.01973804645240307, -0.021562909707427025, -0.015833375975489616, -0.010586892254650593, -0.006541330832988024, 0.007265909109264612, -0.013082661665976048, 0.021455565467476845, -0.003632954554632306, 0.025132128968834877, -0.0028077405877411366, 0.021187203004956245, -0.012545937672257423, 0.007212236523628235, -0.03719501569867134, 0.025601763278245926, -0.00014288195234257728, 0.03459189832210541, 0.008426575921475887, 0.009110899642109871, -0.016598207876086235, -0.020757824182510376, -0.014290292747318745, -0.013585841283202171, -0.020985931158065796, -0.021844690665602684, 0.0019825263880193233, -0.007037801202386618, 0.005038502160459757, 0.029439343139529228, -0.0006935488199815154, 0.02366955392062664, 0.039851799607276917, 0.0009384293807670474, -0.040093328803777695, -0.006091824267059565, -0.011197417043149471, -0.006413858849555254, -0.03950292989611626, -0.017953436821699142, -0.02389766275882721, 0.03695348650217056, -0.031613077968358994, 0.011888450011610985, 0.012794172391295433, 0.012821008451282978, 0.0009837155230343342, 0.02425995096564293, -0.04229389876127243, 0.02400500699877739, -0.007225655019283295, 0.016343263909220695, -0.013330897316336632, -0.02302548475563526, -0.010996145196259022, 0.001730936812236905, -0.030754318460822105, -0.015162469819188118, -0.020221099257469177, -0.010781454853713512, 0.017175186425447464, 0.020704152062535286, 0.001727582304738462, -0.0036497272085398436, 0.03346477821469307, -0.013418114744126797, -0.010888800024986267, -0.02370980940759182, -0.020167427137494087, -0.0049881841987371445, -0.00919811800122261, -0.01139868889003992, -0.01443789154291153, 0.030888499692082405, -0.012009212747216225, 0.021992290392518044, -0.007715416140854359, 0.002688654698431492, -0.02860742062330246, 0.0030123668257147074, -0.04704391211271286, 0.016504282131791115, 0.003344465047121048, 0.025360237807035446, 0.04747328907251358, -0.004303860478103161, -0.017913183197379112, -0.05214279517531395, 0.015900466591119766, -0.013954839669167995, 0.017591148614883423, -0.011391979642212391, -0.020046664401888847, -0.04688289389014244, -0.005994542967528105, -0.0052599008195102215, -0.004552095662802458, 0.004055625293403864, -0.006719121243804693, 0.0005560131394304335, 0.040710560977458954, 0.0026785912923514843, 0.008560757152736187, 0.021214039996266365, 0.013163170777261257, -0.020583387464284897, -0.008211886510252953, -0.00011751333659049124, 0.0068600112572312355, 0.048761431127786636, 0.01410243846476078, 0.013277224265038967, 0.0186377614736557, 0.00034111362765543163, 0.035906873643398285, -0.003310919739305973, 0.02336093783378601, 0.024877185001969337, -0.013082661665976048, -0.0014281906187534332, 0.005830171052366495, 0.02895629219710827, 0.020999349653720856, 0.0018835678929463029, 0.026876484975218773, -0.006390377413481474, 0.03440404683351517, -0.017725329846143723, -0.026916738599538803, 0.002324688481166959, -0.0010583538096398115, -0.025373654440045357, -0.020811496302485466, 0.013679767958819866, 0.0010499674826860428, -0.02815120480954647, -0.020180845633149147, 0.015028288587927818, 0.03260602056980133, 0.01416952908039093, 0.00023754256835673004, -0.010586892254650593, -0.02790967933833599, 0.03939558565616608, -0.01159325148910284, 0.01152616087347269, -0.0038208081386983395, -0.007977069355547428, -0.01445131003856659, 0.012619736604392529, -0.007037801202386618, 0.0383489727973938, -0.035262804478406906, 0.020140590146183968, 0.035826366394758224, -0.006316577550023794, 0.015860211104154587, 0.003908026032149792, -0.00957382470369339, -0.008882791735231876, 0.017966855317354202, -0.024675913155078888, 0.013766985386610031, -0.016262754797935486, 0.035933710634708405, 0.01455865427851677, 0.022206980735063553, 0.0029972714837640524, 0.00711830984801054, 0.030459120869636536, 0.0382147915661335, 0.008802283555269241, -0.008346067741513252, -0.015712613239884377, -0.020757824182510376, -0.006480949465185404, 0.014853852801024914, 0.025534672662615776, -0.015001452527940273, -0.02399158850312233, 0.025682272389531136, -0.015766285359859467, 0.026178741827607155, 0.0025712463539093733, 0.010768037289381027, -0.020060081034898758, -0.013250388205051422, -0.00958724319934845, 0.016759226098656654, 0.008661393076181412, -0.0009442998562008142, -0.00978180579841137, 0.005840234458446503, -0.015913885086774826, -0.05721484124660492, -0.03869784250855446, 0.0001704519963823259, -0.034940771758556366, -0.012733791023492813, 0.03910038620233536, -0.008225304074585438, 0.017108095809817314, -0.024783257395029068, 0.04707074537873268, -0.014827016741037369, 0.012666700407862663, -0.0004876645980402827, 0.026997247710824013], [0.03831164166331291, 0.0063009015284478664, 0.07478734850883484, 0.062151793390512466, 0.0020704891066998243, 0.053701095283031464, -0.038716625422239304, 0.040039580315351486, -0.005322186276316643, 0.04039056599140167, 0.012507306411862373, -0.016374919563531876, 0.022800691425800323, 0.02270619384944439, 0.0011651774402707815, 0.03172387555241585, 0.012676049955189228, 0.02934795804321766, -0.014066500589251518, -0.0010048706317320466, 0.07025150954723358, -0.013519770465791225, -0.013452272862195969, -0.025568092241883278, -0.06582366675138474, -0.03766366466879845, 0.007120997179299593, 0.012804295867681503, 0.02415064349770546, -0.09374067187309265, 0.08445300161838531, -0.041416529566049576, 0.011258600279688835, -0.014633480459451675, -0.015861937776207924, 0.0018831831403076649, -0.0060545350424945354, 0.005531428847461939, -0.00550105469301343, 0.02289518713951111, 0.02425863966345787, 2.889741153921932e-05, -0.018521342426538467, 0.019520306959748268, -0.013695264235138893, 0.015024966560304165, -0.01873733475804329, -0.04295547679066658, 0.02967194654047489, 0.006068034563213587, 0.032776836305856705, 0.03887861967086792, 0.0036414957139641047, -0.0366646982729435, 0.008052464574575424, 0.016266923397779465, 0.01691490039229393, 0.03104889765381813, 0.03995858132839203, -0.02867298200726509, -0.013789760880172253, -0.0005319655174389482, -0.002089050831273198, 0.029428955167531967, 0.02466362528502941, -0.010077392682433128, -0.03925660625100136, 0.014390489086508751, -0.007262742146849632, -0.0023927900474518538, 0.03561173751950264, 0.023826655000448227, 0.008599194698035717, -0.012230565771460533, 0.022841189056634903, -0.02047877386212349, -0.06155781447887421, 0.023435167968273163, -0.04503440111875534, -0.0030947651248425245, -0.045088399201631546, 0.03256084397435188, 0.020559770986437798, -0.012973039411008358, 0.04144353047013283, -0.02926696091890335, -0.044386424124240875, -0.00860594492405653, -0.028645982965826988, -0.010880613699555397, -0.026958543807268143, 0.018926328048110008, -0.04395443946123123, 0.03588172793388367, 0.03777166083455086, -0.026432061567902565, 0.02644556201994419, -0.025608591735363007, -0.006800383795052767, 0.024123644456267357, -0.028645982965826988, -0.016590911895036697, -0.026850547641515732, -0.018966827541589737, -0.010225887410342693, -0.016860902309417725, 0.012520805932581425, 0.02604057639837265, -0.0026340940967202187, -0.05167616531252861, -0.047167327255010605, -0.04919225350022316, 4.21860022470355e-05, 0.07278941571712494, -0.02525760419666767, -0.024380134418606758, -0.02514960803091526, -0.005528053734451532, 0.020492272451519966, 0.026202570647001266, -0.04228049889206886, 0.002406289568170905, 0.022503701969981194, -0.057291965931653976, -0.010279885493218899, -0.04327946528792381, 0.006932003889232874, -0.04165952280163765, -0.0391756109893322, -0.03223685547709465, 0.024393634870648384, -0.043306462466716766, 0.03642170876264572, -0.0664176419377327, -0.021909723058342934, -0.029428955167531967, -0.025014612823724747, -0.04781530424952507, -0.015240958891808987, -0.006358274258673191, 0.02905096858739853, 0.013722263276576996, 0.00540655804798007, 0.04919225350022316, -0.06900954991579056, -0.005602301098406315, -0.002181860152631998, 0.03253384679555893, 0.011272099800407887, -0.029320959001779556, -0.017684372141957283, 0.02317867800593376, -0.0664176419377327, -0.023340672254562378, 0.00739098759368062, 0.03488276153802872, 0.023030182346701622, 0.03979658707976341, 0.003735992358997464, -0.019385311752557755, -0.005625925492495298, -0.02096475660800934, -0.02994193695485592, 0.019898293539881706, -0.01071861945092678, -0.01655041240155697, -0.044980403035879135, 0.03690769150853157, -0.06171980872750282, -0.028996970504522324, -0.04322546720504761, -0.030670911073684692, -0.07095348089933395, 0.0029918313957750797, -0.04028256982564926, -0.05494305118918419, -0.012223816476762295, -0.010867114178836346, 0.0026340940967202187, 0.010205637663602829, 0.005332310684025288, 0.015146462246775627, -0.06393373012542725, -0.039688590914011, -0.03083290532231331, 0.04057956114411354, -0.023165177553892136, 0.038338638842105865, -0.035665735602378845, 0.025797585025429726, 0.011879578232765198, 0.052513137459754944, 0.041200537234544754, 0.028645982965826988, 0.003985733725130558, 0.0267830491065979, -0.003418753622099757, 0.0015853500226512551, -0.0008268456440418959, -0.03131888806819916, 0.023583663627505302, -0.030481917783617973, 0.06755160540342331, -0.010617373511195183, -0.0036077469121664762, -0.010725369676947594, -0.0257840845733881, 0.010833365842700005, -0.016739405691623688, -0.06879355758428574, 0.008619444444775581, -0.02986093983054161, -0.0054605561308562756, 0.025622090324759483, -0.023691659793257713, -0.003214573487639427, -0.05178416147828102, 0.03628671169281006, -0.009449664503335953, 0.019425811246037483, 0.01168383564800024, 0.015861937776207924, 0.010968361049890518, -0.057669952511787415, -0.02763351984322071, 0.005413307808339596, 0.0053694345988333225, -0.0941726565361023, -0.007040000054985285, -0.06317775696516037, 0.009368667379021645, 0.0148764718323946, -0.0037123681977391243, -0.03909461200237274, -0.026175571605563164, -0.03960759565234184, 0.002413039328530431, -0.006736260838806629, 0.015119463205337524, 0.02956395037472248, 0.027836011722683907, -0.013135033659636974, 0.035260748118162155, -0.015510949306190014, 0.007080498617142439, 0.001975992461666465, -0.005028571467846632, -0.03601672127842903, 0.04932725057005882, 0.0297529436647892, 0.04036356881260872, 0.02010078728199005, 0.05610400810837746, -0.032992828637361526, -0.02726903185248375, 0.006128782406449318, -0.01507896464318037, -0.053026117384433746, 0.017778869718313217, -0.003008705796673894, -0.018278351053595543, -0.0068071335554122925, -0.02077576331794262, -0.006317775696516037, -0.05669798702001572, -0.01943930983543396, 0.008585695177316666, -0.0062435283325612545, -0.036259714514017105, 0.05605001002550125, -0.059451889246702194, 0.0336948037147522, 0.015821438282728195, -0.05761595442891121, -0.053620096296072006, 0.03439677879214287, -0.016118427738547325, -0.04273948445916176, -0.005136567633599043, -0.029779942706227303, -0.04268548637628555, -0.0036448705941438675, -0.0014090124750509858, -0.03661070019006729, 0.023921150714159012, 0.03463977202773094, 0.014066500589251518, -0.014619980938732624, -0.01359401736408472, -0.00506232026964426, 0.05216214805841446, -0.002434976166114211, 0.027728015556931496, -0.02510910853743553, 0.016752906143665314, 0.01498446799814701, -0.013020288199186325, 0.008221208117902279, -0.003185886889696121, -0.00812671147286892, 0.027282532304525375, 0.02404264733195305, 0.012723298743367195, -0.052108149975538254, -0.014349990524351597, -0.008288705721497536, 0.006375148892402649, 0.010009895078837872, -0.03571973368525505, 0.004407593514770269, -0.008848936296999454, 0.05108218640089035, -0.028942972421646118, -0.03831164166331291, -0.05723796784877777, -0.013702013529837132, 0.014147497713565826, -0.004691083449870348, 0.019911793991923332, 0.007357238791882992, 0.0042084758169949055, -0.012426309287548065, 0.019817296415567398, -0.026945043355226517, -0.013999002985656261, -0.04789629951119423, -0.022017719224095345, 0.026877546682953835, -0.04244249314069748, -0.02659405581653118, -0.0255545936524868, 0.00509269442409277, 0.011150604113936424, 0.01159608829766512, -0.010050393640995026, -0.008862435817718506, -0.023097680881619453, 0.05046121031045914, 0.03310082480311394, 0.021639732643961906, 0.012946040369570255, -0.020195282995700836, -0.0198442954570055, 0.00021419943368528038, -0.012318313121795654, 0.059667881578207016, 0.036934688687324524, 0.048571277409791946, 0.005696797743439674, 0.052027154713869095, 0.0019186193821951747, 0.049543242901563644, -0.022341707721352577, -0.008410201407968998, -0.07311340421438217, -0.009078428149223328, -0.027498524636030197, 0.01598343253135681, -0.02073526382446289, 0.006402147933840752, 0.025716587901115417, 0.0004944199463352561, 0.01448498573154211, 0.01398550346493721, 0.05275612697005272, -0.00650001922622323, -0.019452810287475586, 0.012851543724536896, 0.05891190841794014, -0.015240958891808987, -0.0005096069071441889, 0.06425771862268448, 0.01740088313817978, 0.030427919700741768, -0.008869185112416744, -0.017076894640922546, 0.03474776819348335, 0.014349990524351597, -0.023327171802520752, 0.030589913949370384, 0.024326136335730553, 0.033181823790073395, 0.013270028866827488, -0.0030964526813477278, 0.021302243694663048, 0.018183855339884758, -0.06792958825826645, -0.017049895599484444, -0.04525039345026016, 0.01918281987309456, 0.016482915729284286, -0.018642839044332504, -0.0225846990942955, 0.03212885931134224, -0.057561956346035004, 0.03990458324551582, 0.03490976244211197, -0.007465234957635403, 0.04870627075433731, 0.036340709775686264, 0.009665656834840775, -0.038635630160570145, -0.017684372141957283, 0.012493806891143322, -0.04284748062491417, -0.0004195398068986833, -0.04217250272631645, 0.03463977202773094, -0.018899329006671906, -0.007964717224240303, 0.043981440365314484, 0.0013372963294386864, 0.0635017454624176, 0.02317867800593376, -0.0017920613754540682, -0.01602393202483654, -0.06798359006643295, 0.027606520801782608, -0.010853614658117294, -0.019655302166938782, 0.03771766275167465, 0.02440713346004486, 0.021275244653224945, 0.010995360091328621, -0.023462167009711266, 0.0446024164557457, 0.05456506460905075, 0.007154745981097221, -0.015011467039585114, -0.07311340421438217, -0.010205637663602829, 0.042982473969459534, 0.026472561061382294, 0.02440713346004486, -0.038446635007858276, -0.03126488998532295, 0.033073827624320984, 0.011785081587731838, -0.02956395037472248, -0.01098186057060957, 0.0012967977672815323, -0.009773653000593185, 0.01862933859229088, -0.007060249336063862, -0.005339060444384813, 0.0476263090968132, 0.015213959850370884, -0.006766634993255138, -0.020559770986437798, 0.015159961767494678, 0.0015482263406738639, 0.00604778528213501, -0.059073902666568756, -0.00023961649276316166, -0.034774765372276306, 0.017130892723798752, 0.00821445882320404, -0.02537909895181656, 0.01988479495048523, -0.03250684589147568, 0.006894880440086126, 0.05089319497346878, 0.0376906618475914, 0.05901990458369255, 0.0008884372073225677, -0.05445706844329834, -0.04573637619614601, -0.024474631994962692, 0.0006568360840901732, 0.008518197573721409, 0.0037731160409748554, -0.008788187988102436, -0.029806941747665405, -0.008646443486213684, 0.01498446799814701, -0.0063920230604708195, 0.00545380637049675, -0.04344145953655243, 0.019452810287475586, -0.013722263276576996, 0.030724909156560898, 0.059073902666568756, -0.06323175877332687, -0.01731988601386547, 0.0644197165966034, 0.024771621450781822, 0.042982473969459534, -0.009429415687918663, -0.007870220579206944, 0.006496644578874111, -0.023921150714159012, -0.0018781208200380206, 0.03453177586197853, -0.015443451702594757, 0.009348418563604355, 0.00739098759368062, -0.02047877386212349, -0.014417488127946854, 0.009537411853671074, 0.005254688672721386, 0.03682669252157211, -0.04222650080919266, 0.021680230274796486, 0.016820402815937996, 0.00960490945726633, 0.007897219620645046, -0.0014739789767190814, -0.010475628077983856, -0.04897626116871834, 0.011879578232765198, -0.048571277409791946, 0.05189215764403343, -6.312080950010568e-05, 0.00882868655025959, -0.004670834168791771, -0.004070105496793985, 0.029536951333284378, -0.024501631036400795, -0.0446564145386219, -0.009152675047516823, 0.007978216744959354, -0.042307499796152115, 0.011785081587731838, 0.017859866842627525, -0.017157891765236855, -0.01296629011631012, -0.027593020349740982, -0.04719432443380356, -0.014849472790956497, 0.021005254238843918, 0.01803535968065262, -0.031480882316827774, -0.0026340940967202187, 0.028699981048703194, -0.001277392148040235, 0.012338561937212944, -0.008639693260192871, -0.010941362008452415, -0.00940241664648056, -0.017373884096741676, 0.009726405143737793, -0.00013594439951702952, 0.025568092241883278, 0.030211927369236946, -0.008767939172685146, 0.006324525456875563, 0.0057575455866754055, 0.02745802514255047, 0.008666692301630974, 0.01246680784970522, 0.013357776217162609, -0.0012444871244952083, 0.007998466491699219, -0.020721765235066414, 0.0027015917003154755, 0.005551678128540516, -0.011731083504855633, -0.052810125052928925, 0.02069476619362831, -0.01346577238291502, -0.024555629119277, 0.030724909156560898, 0.016415417194366455, -0.0007053499575704336, -0.010914362967014313, 0.011913327500224113, 0.02937495708465576, 0.0029783318750560284, -0.019655302166938782, 0.0027370278257876635, -0.02114024944603443, 0.000794362451415509, -0.007249242626130581, -0.00801196601241827, 0.0480852946639061, 0.03409979119896889, 0.009368667379021645, -0.030400920659303665, 0.039688590914011, 0.010252886451780796, -0.015024966560304165, 0.03180487081408501, -0.04473741352558136, -0.00579804414883256, -0.018872329965233803, 0.007451735436916351, -0.006176030728965998, -0.01839984767138958, 0.001900057541206479, 0.024798620492219925, 0.010394630953669548, 0.010529626160860062, -0.010489127598702908, 0.014660479500889778, -0.015200460329651833, 0.037042684853076935, -0.011285599321126938, 0.0011854267213493586, 0.014957468956708908, 0.005224314518272877, 0.004613461438566446, 0.002767401747405529, -0.01710389368236065, 0.006277277134358883, -0.030886903405189514, 0.014471486210823059, 0.020951256155967712, 0.00036469800397753716, 0.039823587983846664, 0.0198442954570055, 0.00981415156275034, 0.02037077769637108, -0.03234485164284706, -0.04144353047013283, -0.0017346884123981, 0.020802762359380722, -0.019371813163161278, -0.00739098759368062, -0.0034086289815604687, -0.02597307786345482, -0.04109254106879234, -0.0005745733506046236, 0.009969396516680717, -0.02054627053439617, -0.0027539022266864777, -0.009429415687918663, -0.011157354339957237, -0.013027037493884563, -0.02315167896449566, 0.011528590694069862, -0.020060287788510323, 0.005393058527261019, -0.009172924794256687, -0.03231785446405411, 0.011494842357933521, 0.007816222496330738, 0.023867152631282806, 0.00474845664575696, 0.019682301208376884, 0.015524448826909065, 0.011994324624538422, 0.048058293759822845, 0.024123644456267357, -0.017481880262494087, 0.019047824665904045, 0.029509952291846275, -0.0006804602453485131, 0.04198351129889488, -1.9721956050489098e-05, 0.0036043720319867134, 0.0070265005342662334, 0.002706653904169798, -0.007822972722351551, -0.0006543049239553511, 0.020492272451519966, -0.0005981975118629634, -0.03463977202773094, 0.01111010555177927, 0.01557844690978527, 0.041011545807123184, -0.043900441378355026, 0.032776836305856705, 0.0017068457091227174, 0.035071756690740585, 0.04886826500296593, -0.01598343253135681, 0.037447672337293625, -0.016091428697109222, 0.004738331772387028, 0.022314708679914474, -0.04306347295641899, 0.029536951333284378, 0.05934389308094978, -0.007910719141364098, -0.01606442965567112, -0.020316779613494873, -0.001364295370876789, 0.03204786404967308, -0.017481880262494087, 0.0073639885522425175, -0.017346885055303574, -0.004178101662546396, -0.008227958343923092, -0.0006564141949638724, 0.009321419522166252, -0.019749799743294716, 0.039526596665382385, -0.016739405691623688, -0.0016958772903308272, 0.011528590694069862, -0.0001754937693476677, 0.01776536926627159, -0.006959002930670977, 0.008491198532283306, 0.01925031654536724, 0.04589837044477463, 0.007809472735971212, -0.012331812642514706, -0.052324142307043076, -0.10378431528806686, 0.021383240818977356, -0.003317507216706872, -0.022935686632990837, -0.03301982954144478, -0.053620096296072006, -0.034558773040771484, -0.02319217659533024, 0.012223816476762295, 0.048436280339956284, -0.01159608829766512, -0.01929081603884697, -0.01061062328517437, -0.047248322516679764, -0.01613192819058895, 0.004991448018699884, 0.00903117936104536, -0.010306884534657001, -0.01765737310051918, -0.030319923534989357, 0.021653231233358383, 0.0004906232352368534, 0.02523060515522957, -0.049111258238554, -0.023435167968273163, -0.0063616493716835976, 0.01999279111623764, 0.023840153589844704, 0.035260748118162155, 0.008275206200778484, 0.008977181278169155, 0.03787965700030327, -0.014822473749518394, 0.0021244871895760298, -0.013249780051410198, -0.015888936817646027, 0.011346347630023956, -0.03391079604625702, 0.02533860132098198, -0.04400843754410744, -0.008005215786397457, -0.015605445951223373, -0.049435246735811234, -0.02018178440630436, -0.02716103568673134, 0.006793634034693241, -0.03731267526745796, -0.001030182233080268, 0.03520675003528595, 0.020451774820685387, 0.01825135201215744, 0.0053491853177547455, 0.012196817435324192, -0.03331681713461876, -0.025284603238105774, -0.01389100681990385, 0.017184890806674957, 0.0027657144237309694, 0.007708226330578327, -0.013769511133432388, 0.04090354964137077, 0.00534243555739522, 0.006672138348221779, -0.0012900480069220066, 0.027944007888436317, 0.020951256155967712, -0.013492771424353123, 0.02088375948369503, -0.010995360091328621, 0.026432061567902565, -0.028402991592884064, 0.006439271382987499, 0.002546347212046385, 0.010860364884138107, 0.03145388513803482, 0.006311025936156511, -0.015402953140437603, -0.0011044295970350504, 0.00456283800303936, -0.01209557056427002, 0.01081311609596014, 0.04225350171327591, -0.003212885931134224, -0.013904506340622902, -0.03023892641067505, 0.02330017276108265, 0.024731121957302094, -0.0036246213130652905, -0.020505772903561592, 0.008079463616013527, -0.014997967518866062, -0.043387461453676224, 0.004049856215715408, -0.028699981048703194, -0.004886826500296593, -0.02514960803091526, -0.015348955057561398, 0.016347920522093773, -0.06279977411031723, -0.05464605987071991, 0.03034692257642746, -0.0624757818877697, -0.012082071043550968, -0.01131259836256504, 0.015497449785470963, 0.09935647249221802, 0.0075327325612306595, -0.032776836305856705, 0.019965792074799538, -0.01880483329296112, 0.003081265604123473, -0.019601304084062576, 0.029482953250408173, -0.022490201517939568, -0.005112943705171347, 0.0027370278257876635, -0.014916970394551754, 0.02994193695485592, 0.012946040369570255, -0.016293922439217567, 0.012770546600222588, -0.008578945882618427, -0.021005254238843918, -0.005069070030003786, -0.01018538884818554, 0.005318811163306236, -0.0018325599376112223, 0.003931735642254353, -0.00604778528213501, 0.007370738312602043, -0.0075124832801520824, 0.008356203325092793, -0.012601803056895733, 0.02663455531001091, 0.0036246213130652905, -0.014498485252261162, -0.021761227399110794, -0.0017448130529373884, -0.02485261857509613, 0.013573768548667431, -0.0018764333799481392, 0.04009357839822769, -0.012952790595591068, -0.052108149975538254, -0.04654634743928909, -0.03094090148806572, -0.002743777586147189, 0.001204832224175334, 0.016496414318680763, -0.04273948445916176, 0.020505772903561592, -0.029104966670274734, -0.029914937913417816, -0.01309453509747982, -0.033586807548999786, 0.016455916687846184, -0.0060039120726287365, 8.716683078091592e-05, -0.04074155539274216, 0.0038169894833117723, 0.01081311609596014, 0.007411236874759197, -0.002807900309562683, 0.01266930066049099, -0.020087286829948425, 0.014160997234284878, 0.013769511133432388, 0.030076932162046432, 0.00748548423871398, 0.03310082480311394, -0.021045753732323647, 0.0034001918975263834, -0.03291183337569237, 0.02433963678777218, 0.0040397318080067635, -0.014916970394551754, -0.048571277409791946, -0.03296583145856857, 0.0007272866787388921, 0.03688069060444832, 0.023678159341216087, 0.0068071335554122925, 0.013627766631543636, -0.002932770876213908, 0.007255992386490107, -0.03850063309073448, -0.0017920613754540682, -0.03499075770378113, 0.04768030717968941, 0.02537909895181656, -0.014592981897294521, -0.005764295347034931, 0.007505733519792557, 0.018494343385100365, 0.02340816892683506, -0.01999279111623764, 0.018561841920018196, -0.04481840878725052, 0.020640768110752106, -0.007168245501816273, -0.0029378333128988743, -0.047950297594070435, -0.03434278070926666, -0.0011187727795913815, -0.009166174568235874, -0.020019790157675743, -0.0007893001311458647, 0.0009348418097943068, 0.0117783322930336, 0.03534174710512161, -0.006527018267661333, 0.052027154713869095, -0.010165139101445675, -0.009827651083469391, -0.017792368307709694, 0.010914362967014313, -0.005760920699685812, -0.0070265005342662334, -0.020802762359380722, 0.030103931203484535, -0.012021323665976524, 0.06198979914188385, -0.004680959042161703, 0.026391563937067986, 0.007708226330578327, 0.050731200724840164, 0.011920076794922352, -0.002200421877205372, 0.012439808808267117, 0.03237185254693031, -0.025797585025429726, -0.018980326130986214, 0.012534305453300476, 0.024029146879911423, 0.054403070360422134, -0.04049856215715408, 0.0016131927259266376, -0.015861937776207924, 0.012136069126427174, 0.02385365404188633, -0.02136974222958088, -0.005028571467846632, 0.011791831813752651, 0.030724909156560898, -0.02686404623091221, 0.016374919563531876, -0.0026357814203947783, -0.03631371259689331, 0.009503662586212158, 0.024920115247368813, -0.013918005861341953, 0.04514239728450775, -0.04292847588658333, 0.016887901350855827, -0.015605445951223373, -0.03720467910170555, -0.005683298222720623, 0.03431578353047371, 0.007053499575704336, 0.03391079604625702, -0.019304314628243446, 0.008322454988956451, 0.013823509216308594, 0.004407593514770269, -0.035260748118162155, 0.031291890889406204, 0.01910182274878025, -0.01891282945871353, -0.015227459371089935, -0.0540790818631649, 0.04017457365989685, -0.023570163175463676, -0.023016683757305145, 0.03720467910170555, 0.013567018322646618, 0.011373346671462059, -0.02415064349770546, 0.024717623367905617, -0.003509875386953354, 0.021383240818977356, 0.012453308328986168, -0.008059213869273663, 0.024771621450781822, 0.025797585025429726, -0.0017017833888530731, -0.016631409525871277, 0.008335954509675503, 0.0012200191849842668, 0.013918005861341953, 0.020451774820685387, -0.009874899871647358, 0.03936460241675377, -0.013600767590105534, 0.00823470763862133, -0.002490661572664976, -0.0029547077137976885, 0.019155820831656456, 0.005160192027688026, -0.026054074987769127, 0.02211221493780613, 0.05912790074944496, 0.035071756690740585, 0.03253384679555893, 0.017157891765236855, 0.018224352970719337, -0.0036178715527057648, 0.012649050913751125, 0.03112989477813244, 0.014592981897294521, -0.02597307786345482, -0.017778869718313217, -0.012608552351593971, -0.01220356673002243, 0.0004868264659307897, 0.010489127598702908, -0.01918281987309456, 0.03274983912706375, -0.007451735436916351, -0.028807977214455605, -0.0426584854722023, 0.013708763755857944, -0.012939291074872017, 0.014754976145923138, 0.030022934079170227, -0.004535838961601257, 0.015510949306190014, 0.0008243144839070737, -0.01695539802312851, -0.012696299701929092, 0.03126488998532295, 0.0019169319421052933, 0.0054403068497776985, 0.019898293539881706, -0.020829761400818825, 0.03796065226197243, 0.0029631447978317738, 0.006624890025705099, -0.010448629036545753, -0.00999639555811882, 0.0030188304372131824, 0.052702128887176514, -0.014403988607227802, -0.019979290664196014, -0.02745802514255047, 0.05240514129400253, 0.018872329965233803, -0.021248245611786842, -0.0030593289993703365, -0.016779905185103416, 0.011636586859822273, 0.002016491023823619, -0.015348955057561398, 0.033262819051742554, -0.03004993312060833, 0.020424775779247284, 0.020208783447742462, -0.02674255147576332, -0.03469377011060715, -0.01497096847742796, 0.001466385438106954, 0.021464237943291664, -0.009928897954523563, -0.021950220689177513, -0.008248207159340382, 0.0039418600499629974, -0.016118427738547325, 0.033181823790073395, -0.029185963794589043, 0.02436663582921028, 0.02964494749903679, -0.0017465004930272698, 0.011879578232765198, -0.00264759361743927, -0.004853077698498964, 0.03361380845308304, 0.011744583025574684, 0.01799486204981804, -0.0107793677598238, -0.009955896995961666, -0.010414880700409412, 6.544103962369263e-05, -0.010286634787917137, -0.004286097828298807, 0.00326519669033587, -0.024326136335730553, -0.01829185150563717, -0.014619980938732624, -0.02296268567442894, 0.0064696455374360085, -0.007208744063973427, -0.011029108427464962, -0.044278427958488464, 0.02493361569941044, 0.020600268617272377, -0.011859329417347908, -0.007876970805227757, -0.0013904506340622902, 0.0011052732588723302, 0.012993289157748222, -0.016563912853598595, 0.02047877386212349, 0.007309990469366312, 0.0322098582983017, -0.012433058582246304, -0.0366646982729435, 0.021248245611786842, -0.015443451702594757, 0.017454881221055984, 0.027809012681245804, 0.020640768110752106, 0.026850547641515732, 0.009274170733988285, -0.009287670254707336, 0.030994899570941925, 0.011454343795776367, 0.004454841837286949, 0.001641035545617342, -0.017940863966941833, 0.011103356257081032, 0.017333384603261948, 0.02570308744907379, -0.02317867800593376, -0.024690624326467514, -0.016388418152928352, -0.004799079615622759, 0.025163106620311737, 0.0019456184236332774, -0.026837047189474106, 0.04919225350022316, 0.018075859174132347, 0.006527018267661333, 0.009449664503335953, -0.036367710679769516, 0.003550373949110508, 0.0052715628407895565, -0.009091927669942379, 0.00901093054562807, -0.017481880262494087, -0.035773731768131256, -0.03156188130378723, -0.019088322296738625, -0.008018715307116508, 0.02336767129600048, 0.011251850984990597, -0.008167210035026073, 0.001964180264621973, 0.027296030893921852, 0.017940863966941833, 0.07160145789384842, 0.010927862487733364, -0.008464199490845203, 0.010381131432950497, 0.025136107578873634, -0.0215857345610857, -0.023907652124762535, 0.01839984767138958, 0.007789223454892635, -0.0024805369321256876, -0.04446742311120033, 0.028510987758636475, 0.028429990634322166, 0.004772080574184656, -0.003334381617605686, -0.0275255236774683, 0.012473557144403458, 0.04770730808377266, 0.024326136335730553, 0.005258063320070505, 0.011697335168719292, -0.03126488998532295, -0.0016629722667858005, -0.011083106510341167, -0.01160958781838417, -0.031588878482580185, 0.00515681691467762, -0.034666769206523895, 0.009989645332098007, 0.0215857345610857, -0.004711332730948925, -0.009429415687918663, 0.01478197518736124, 0.02667505294084549, -0.0022712943609803915, -0.02404264733195305, -0.01068487111479044, -0.033991795033216476, 0.017819367349147797, 0.004775455687195063, -0.02043827436864376, 0.009982896037399769, -0.007708226330578327, -0.02128874510526657, -0.0030998275615274906, -0.011467843316495419, -0.0012647364055737853, -0.038716625422239304, -0.0017616874538362026, -0.006479769945144653, 0.007296490948647261, 0.01910182274878025, -0.05027221515774727, -0.03310082480311394, -0.022247210144996643, 0.008524947799742222, -0.005146692506968975, 0.0022729819174855947, -0.03023892641067505, -0.009166174568235874, 0.010968361049890518, 0.03145388513803482, -0.02934795804321766, 0.03264184296131134, 0.016887901350855827, 0.01250055618584156, 0.00803221482783556, -0.02389415167272091, -0.0006357430829666555, 0.0006201342330314219, -0.02514960803091526, -0.002475474728271365, 0.019317815080285072, -0.010306884534657001, -0.01988479495048523, 0.03461277112364769, 0.0008357047336176038, 0.006267152726650238, -0.017117392271757126, -0.009645408019423485, -0.02370515838265419, 0.02319217659533024, 0.026432061567902565, 0.019911793991923332, -0.02270619384944439, 0.014633480459451675, 0.005963413510471582, 0.022719694301486015, -0.013357776217162609, 0.06873956322669983, -0.001044525415636599, -0.002499098889529705, 0.016415417194366455, 0.028510987758636475, 0.006044410634785891, 0.01977679878473282, -0.02934795804321766, -0.018156856298446655, -0.0005598082789219916, -0.030751908197999, 0.030130930244922638, -0.0008648130460642278, 0.00048092042561620474, 0.021450739353895187, -0.031885869801044464, -0.018197353929281235, 0.011231601238250732, -0.017198389396071434, 0.010509377345442772, -0.01358051784336567, -0.007262742146849632, -0.009935647249221802, 0.0228141900151968, 0.0028686481527984142, -0.01031363382935524, -0.005146692506968975, 0.0016174113843590021, -0.012743547558784485, -0.021936722099781036, 0.026985542848706245, -0.03304682672023773, 0.0024316012859344482, 0.016455916687846184, 0.04284748062491417, 0.024326136335730553, 0.03345181420445442, -0.020235782489180565, 0.03661070019006729, 0.0052006905898451805, 0.020802762359380722, 0.00022274209186434746, -0.0006943815969862044, 0.004269223660230637, -0.0166179109364748, -0.012838044203817844, 0.0069185043685138226, -0.014444487169384956, -0.004481840878725052, -0.008410201407968998, 0.014943969435989857, -0.0009694343316368759, -0.017117392271757126, 0.009658907540142536, -0.0018055608961731195, -0.00529518723487854, -0.007006251253187656, 0.02325967513024807, -0.02945595420897007, -0.011056107468903065, -0.00367186963558197, -0.005484180524945259, -0.00264759361743927, 0.001524602179415524, 0.017292886972427368, 0.0107793677598238, -0.01725238747894764, 0.008518197573721409, -0.014106999151408672, 0.013324026949703693, -0.01802186109125614, -0.008497948758304119, 0.0023269800003618, -0.0005711984704248607, -0.023691659793257713, 0.012824544683098793, 0.0004914669552817941, -0.008059213869273663, 0.013249780051410198, 0.015780940651893616, -0.01825135201215744, -0.0030964526813477278, -0.020856760442256927, 0.050947193056344986, -0.002627344336360693, -0.052729129791259766, -0.020303279161453247, -0.004188226535916328, 0.032290853559970856, -0.04206450656056404, -0.019560806453227997, 0.01992529258131981, 0.016671909019351006, -0.021680230274796486, -0.007910719141364098, -0.0010613998165354133, 0.011008859612047672, 0.01497096847742796, -0.003152138087898493, 0.016388418152928352, 0.009321419522166252, 0.008356203325092793, 0.012068571522831917, 0.019020825624465942, -0.010948111303150654, 0.019533807411789894, -0.048166289925575256, 0.02321917563676834, 0.0033934421371668577, 0.03353280946612358, 0.01621292531490326, 0.01246680784970522, -0.01198082510381937, -0.00870044156908989, -0.021612733602523804, -0.010624122805893421, -0.0176168754696846, -0.004535838961601257, 0.004890201613306999, 0.003253384493291378, -0.00912567600607872, 0.041605524718761444, 0.005322186276316643, 0.023718658834695816, 0.05027221515774727, -0.01051612664014101, -0.03998558223247528, -0.018872329965233803, 0.004880076739937067, -0.017981361597776413, -0.040228571742773056, -0.011521841399371624, -0.008376453071832657, 0.05804793909192085, -0.051622167229652405, 0.0031875744462013245, 0.019493307918310165, 0.0005176222766749561, -0.014997967518866062, 0.012784046120941639, -0.0525401346385479, 0.022274209186434746, 0.012271064333617687, 0.012426309287548065, -0.025514094159007072, -0.006628264673054218, -0.003064391203224659, -0.01048237830400467, -0.034369781613349915, -0.005960038397461176, -0.013405024074018002, -0.010921112261712551, 0.004471716471016407, 0.027890009805560112, -0.0033276318572461605, 0.005862167105078697, 0.013864007778465748, -0.017630374059081078, -0.033073827624320984, -0.022976184263825417, -0.012750297784805298, -0.006854381877928972, 0.013958504423499107, -0.010239386931061745, -0.002242607995867729, -0.002880460349842906, -0.012412809766829014, 0.003089702920988202, 0.001146615599282086, 0.018183855339884758, -0.015591946430504322, 0.0037258677184581757, -0.03064391203224659, 0.016563912853598595, -0.006979252211749554, 0.015213959850370884, 0.03920260816812515, -0.008086212910711765, 0.0002714669390115887, -0.010698370635509491, 0.004853077698498964, -0.02459612675011158, 0.019263816997408867, 0.008983931504189968, -0.0122778145596385, -0.03839263692498207, 0.014714477583765984, -0.01418799627572298, -0.008815187029540539, -0.007525982800871134, -0.016752906143665314, -0.004664084408432245, 0.03291183337569237, 0.012338561937212944, 0.013101285323500633, 0.023799655959010124, 0.003783240681514144, -0.03817664459347725, 0.02039777673780918, 0.002220671158283949, 0.008038965053856373, 0.04522339627146721, 0.022463202476501465, 0.0012200191849842668, 0.023016683757305145, -0.017157891765236855, 0.05386308953166008, -0.010725369676947594, 0.02240920439362526, 0.023651160299777985, -0.007417986635118723, 0.0014714477583765984, -0.002666155342012644, 0.007647478487342596, -0.0030070182401686907, 0.013337526470422745, 0.03909461200237274, 0.0037461169995367527, 0.02627006731927395, -0.0007129434379749, -0.01706339418888092, -0.010671371594071388, 0.004846327938139439, 0.0025935955345630646, -0.02466362528502941, -0.011272099800407887, -0.006007286719977856, -0.011636586859822273, -0.03987758606672287, 0.026202570647001266, 0.027431026101112366, 0.013249780051410198, 0.00929442048072815, -0.01702289655804634, -0.03264184296131134, 0.03512575477361679, -0.005163566675037146, 0.019128821790218353, -0.010948111303150654, 0.002904084511101246, -0.013526519760489464, 0.015753941610455513, -0.005717047024518251, 0.03480176627635956, -0.026162071153521538, 0.046762339770793915, 0.03045491874217987, 0.009382166899740696, 0.03261484205722809, -1.9286913811811246e-05, 0.000750910839997232, -0.014093499630689621, 0.010347383096814156, -0.009861400350928307, 0.02489311620593071, -0.00410722941160202, 0.017373884096741676, 0.01309453509747982, 0.02956395037472248, 0.0026205945760011673, -0.010502627119421959, 0.01947980932891369, 0.008045714348554611, 0.007073748856782913, 0.0033107574563473463, -0.016712406650185585, -0.03828464075922966, -0.009368667379021645, 0.01962830312550068, 0.020910758525133133, -0.007255992386490107, -0.023030182346701622, 0.01802186109125614, -0.02682354860007763, 0.03401879221200943, 0.0034390029031783342, 0.02240920439362526, -0.02496061474084854, -0.007876970805227757, 0.014538983814418316, 0.02656705677509308, -0.013135033659636974, 0.014754976145923138, 0.011920076794922352, 0.007080498617142439, -0.006456146016716957, -0.07014351338148117, -0.02300318330526352, -0.0017363758524879813, -0.03949959948658943, -0.028321994468569756, 0.02415064349770546, 0.009321419522166252, -0.008221208117902279, -0.024501631036400795, 0.02540609799325466, -0.016347920522093773, 0.025365600362420082, -0.02767401747405529, 0.04573637619614601], [0.008744483813643456, 0.03854767978191376, 0.05426561087369919, 0.011823040433228016, 0.015759442001581192, 0.028129013255238533, -0.019605908542871475, -0.002737839939072728, 0.030162936076521873, 0.012334980070590973, 0.007471552584320307, 0.008350152522325516, 0.005198955535888672, -0.015800951048731804, -0.006471886765211821, 0.015745606273412704, -0.012085928581655025, 0.02584603801369667, -0.00963691994547844, 0.026136599481105804, 0.06336984038352966, 0.03566974774003029, 0.009595410898327827, -0.030688710510730743, -0.05492974817752838, -0.026247289031744003, 0.04444190114736557, 0.045244403183460236, 0.029166728258132935, -0.028115175664424896, 0.08700208365917206, -0.019176986068487167, 0.028530262410640717, -0.029332762584090233, 0.0276724174618721, -0.0029350058175623417, -0.016672631725668907, 0.053131043910980225, 0.05263293907046318, 0.014500346966087818, 0.0075268978253006935, 0.0037945802323520184, -0.025652332231402397, -0.025458624586462975, -0.07775949686765671, 0.044303540140390396, -0.019384529441595078, -0.07914311438798904, -0.03038431517779827, 0.014818579889833927, 0.0030993109103292227, -0.0012651483993977308, 0.0110205402597785, -0.06929173320531845, 0.028474917635321617, 0.01979961432516575, -0.026496339589357376, 0.04101052135229111, 0.042698539793491364, -0.041702333837747574, 0.005302727222442627, -0.006565281189978123, -0.0003973586135543883, 0.019979486241936684, -0.0034694294445216656, 0.02172284759581089, 0.005894225090742111, 0.021127890795469284, -0.04239414259791374, 0.00417853519320488, 0.047707248479127884, -0.0015634916489943862, 0.044663283973932266, -0.028073668479919434, 0.011968321166932583, -0.05457000806927681, -0.037468452006578445, 0.027658581733703613, 0.00139313330873847, -0.011767695657908916, -0.009643837809562683, 0.04333500564098358, -0.002371180336922407, 0.05921897292137146, -0.020643623545765877, -0.018817244097590446, -0.0321553498506546, -0.0005136692780070007, -0.032708797603845596, -0.0011994263622909784, -0.0348949171602726, -0.012563277967274189, 0.013684011064469814, 0.027381857857108116, 0.03661060705780983, -0.023300176486372948, 0.021390778943896294, -0.03649991750717163, -0.016741812229156494, 0.028862331062555313, -0.021999571472406387, -0.014777070842683315, -0.046600352972745895, 0.005520647391676903, 0.08478828519582748, -0.013594075106084347, -0.04737517982721329, 0.026966771110892296, -0.03315155580639839, -0.024047331884503365, -0.06818483769893646, 0.02245616726577282, 0.0029350058175623417, 0.06392328441143036, -0.04203440248966217, 0.011636251583695412, -0.06209690496325493, -0.0023175650276243687, 0.021086381748318672, 0.020353063941001892, -0.025666167959570885, -0.004157780669629574, 0.009443212300539017, -0.07161621749401093, -0.008294806815683842, -0.020795822143554688, -0.028751641511917114, 0.005641714204102755, -0.025818366557359695, -0.0732765644788742, 0.059606388211250305, -0.019550563767552376, 0.027243494987487793, -0.05476371571421623, -0.03409241884946823, -0.010626208037137985, -0.062428973615169525, -0.007236337289214134, -0.027423366904258728, -0.04045707359910011, 0.01765500195324421, -0.0042165848426520824, 0.03810491785407066, 0.036112505942583084, -0.023521555587649345, -0.004323815461248159, 0.021542977541685104, 0.043833110481500626, -0.04222811013460159, -0.008018082939088345, -0.02877931483089924, -0.02098952978849411, -0.028073668479919434, -0.018872588872909546, 0.013504140079021454, -0.04267086833715439, 0.03481190279126167, 0.056839145720005035, 0.004676638636738062, -0.012348816730082035, 0.01874806359410286, -0.024268710985779762, -0.02418569289147854, 0.009242587722837925, 0.023618409410119057, -0.006724397651851177, -0.07742742449045181, -0.01409909687936306, -0.06458742171525955, -0.05144302546977997, -0.01775185577571392, -0.05728190392255783, -0.003059531794860959, 0.036472246050834656, 0.023991987109184265, -0.029747849330306053, -0.018194613978266716, -0.029775520786643028, 0.016520433127880096, -0.032930176705121994, 0.01308213546872139, -0.02814284898340702, -0.08705742657184601, -0.03342828154563904, -0.04967198893427849, 0.07172690331935883, -0.023161813616752625, 0.037413109093904495, 0.017558149993419647, 0.016202200204133987, 0.03733009099960327, -0.004133567214012146, 0.03171259164810181, 0.03055034950375557, -0.04557647183537483, 0.018831079825758934, -0.02324483171105385, -0.021653667092323303, 0.017738020047545433, -0.0016404555644840002, 0.031518884003162384, -0.04009733349084854, 0.05575992166996002, 0.015039958991110325, -0.019564399495720863, -0.0436394028365612, -0.005710895173251629, 0.05520647391676903, 0.02804599516093731, 0.017101554200053215, -0.004424127750098705, -0.04779026657342911, -0.01957823522388935, 0.048537421971559525, -0.0264686681330204, -0.017530476674437523, -0.030827073380351067, 0.03594646975398064, 0.01305446308106184, 0.04485698789358139, -0.010923687368631363, 0.023300176486372948, 0.013607911765575409, -0.032708797603845596, -6.118198507465422e-05, 0.011248838156461716, 0.012044419534504414, -0.06591569632291794, -0.018499011173844337, -0.08096949756145477, 0.014161359518766403, 0.022110261023044586, -0.008156444877386093, -0.041342593729496, 0.006343901623040438, -0.027451038360595703, 0.003912188112735748, -0.023853624239563942, -0.023853624239563942, -0.012590950354933739, -0.0025493213906884193, -0.017060045152902603, 0.027534056454896927, 0.030522676184773445, -0.0059737833216786385, -0.008516186848282814, -0.0277831070125103, -0.057835351675748825, 0.02004866674542427, 0.0348949171602726, 0.06320380419492722, 0.01206517405807972, 0.014168278314173222, -0.0026565520092844963, -0.023742934688925743, -0.029332762584090233, -0.010349484160542488, -0.017821036279201508, 0.016575777903199196, -0.006105227395892143, 0.008308643475174904, -0.040125004947185516, -0.016368234530091286, -0.0071879103779792786, -0.00838474277406931, -0.0265793576836586, 0.0019664710853248835, -0.014292803592979908, -0.013068299740552902, 0.019329184666275978, -0.013123644515872002, 0.021127890795469284, -0.004597080405801535, -0.06469811499118805, -0.03727474808692932, 0.0031840575393289328, 0.013296596705913544, -0.019343020394444466, 0.015219829976558685, -0.025624658912420273, -0.0173921138048172, 0.011823040433228016, 0.02731267549097538, -0.04377776384353638, -0.013504140079021454, -0.0008941650157794356, 0.007381617557257414, 0.02381211519241333, -0.06602638959884644, -0.007547651883214712, 0.03580810874700546, -0.008191036060452461, 0.008578449487686157, -0.041121214628219604, 0.046600352972745895, 0.0023677211720496416, -0.018249958753585815, -0.05396121367812157, 0.007104893215000629, -0.013684011064469814, 0.008806747384369373, 0.007907393388450146, 0.02230396866798401, 0.037883538752794266, -0.01948138140141964, 0.031574226915836334, 0.02390896901488304, -0.003312042448669672, -0.030273625627160072, 0.001263418816961348, -0.03638922795653343, 0.036942679435014725, -0.029526470229029655, -0.02877931483089924, -0.059772420674562454, 0.01203750167042017, 0.011532479897141457, 0.009567738510668278, -0.010480928234755993, 0.016783321276307106, 0.01125575602054596, -0.00274129887111485, 0.03918414190411568, -0.02354922704398632, 0.04455259442329407, -0.0037219400983303785, -0.03196164220571518, 0.006731315515935421, -0.03691500425338745, -0.028391901403665543, -0.040125004947185516, -0.011096639558672905, -0.019135477021336555, 0.016797157004475594, 0.010204204358160496, 0.0348949171602726, 0.026399485766887665, 0.021017201244831085, 0.011573988944292068, 0.01355256699025631, 0.007374699227511883, -0.02944345213472843, -0.004365324042737484, 0.033871039748191833, -0.03533767908811569, 0.032404400408267975, 0.02119707129895687, 0.030052246525883675, -0.05196880176663399, 0.025264916941523552, -0.006925022695213556, 0.05390587076544762, -0.032874833792448044, 0.031574226915836334, -0.08191035687923431, -0.020712804049253464, 0.00919416081160307, 0.0006066312780603766, -0.06303776800632477, -0.036167848855257034, -0.01953672617673874, 0.02740952931344509, -0.005617500748485327, 0.006610248703509569, 0.02047758921980858, 0.006426919251680374, -0.011449462734162807, 0.08622725307941437, 0.012667049653828144, -0.05728190392255783, 0.011601661331951618, 0.07587777078151703, 0.022995779290795326, -0.0321553498506546, 0.002660011174157262, -0.009104225784540176, 0.012639377266168594, 0.04568716138601303, -0.018983278423547745, 0.022788235917687416, 0.05296500772237778, 0.015856295824050903, 0.029388107359409332, -0.003488454269245267, 0.051249317824840546, 0.03257043659687042, -0.021058710291981697, -0.01812543347477913, -0.004220043774694204, 0.002632338786497712, -0.019854959100484848, -0.007810540031641722, -0.035891126841306686, -0.004590162076056004, -0.008571531623601913, 0.034701213240623474, 0.08755552768707275, 0.021058710291981697, 0.04460793733596802, -0.003946778364479542, 0.0038430069107562304, -0.02590138278901577, -0.01984112337231636, -0.03431379795074463, -0.007865884341299534, -0.01581478677690029, -0.02230396866798401, -0.016465088352560997, -0.026717718690633774, 0.021902719512581825, 0.05296500772237778, -0.0011302452767267823, 0.03979293629527092, -0.00019813883409369737, 0.011753859929740429, 0.0031650327146053314, -0.00432035606354475, 0.016008494421839714, 0.00464550731703639, -0.026773063465952873, 0.0437500923871994, -0.012667049653828144, 0.007865884341299534, 0.005160905886441469, -0.013075217604637146, 0.03143586590886116, 0.04001431539654732, -0.02662086673080921, -0.021335434168577194, -0.05562156066298485, -0.06204156205058098, 0.02115556411445141, 0.05932966247200966, 0.026067417114973068, -0.037108711898326874, -0.009484721347689629, 0.024310218170285225, -0.0039018108509480953, 0.0230787955224514, -0.033289916813373566, 0.03218302130699158, -0.033289916813373566, -0.020380735397338867, 0.02966483123600483, 0.009353277273476124, 0.03079940192401409, 0.0015479258727282286, 0.030052246525883675, 0.002194768749177456, 0.0069976625964045525, 0.013296596705913544, 0.054182592779397964, -0.059606388211250305, 0.008523104712367058, -0.029305091127753258, -0.0019215034553781152, -0.0019059377955272794, -0.027437202632427216, 0.019038623198866844, -0.03807724639773369, 0.03649991750717163, 0.04839905723929405, 0.055234145373106, 0.0161883644759655, -0.0005711760022677481, -0.006862759590148926, 0.008910518139600754, -0.029277417808771133, 0.0007929877028800547, -0.04314129799604416, -0.009041962213814259, -0.032238367944955826, 0.007997328415513039, 3.0509921998600475e-05, 0.031214486807584763, -0.010141940787434578, -0.029692504554986954, -0.006575658451765776, 0.01331735122948885, 0.02168133854866028, -0.006534149870276451, 0.03807724639773369, -0.060547251254320145, -0.007374699227511883, -0.005617500748485327, 0.035531383007764816, 0.03672129660844803, -0.02584603801369667, -0.038658369332551956, -0.01609151065349579, -0.022829744964838028, -0.015704097226262093, 0.05144302546977997, -0.016478924080729485, -0.020878838375210762, -0.013102889992296696, -0.027741597965359688, -0.029111383482813835, 0.04538276419043541, -0.01984112337231636, 0.059661731123924255, -0.05722656100988388, -0.005292349960654974, -0.031933970749378204, -0.0024593861307948828, -0.020062502473592758, 0.0062643433921039104, -0.015745606273412704, -0.009360195137560368, 0.010204204358160496, -0.043058283627033234, -0.00253894436173141, 0.024614615365862846, 0.02673155628144741, 0.015026123262941837, -0.007782867643982172, -0.019854959100484848, -0.0005789588904008269, -0.03367733210325241, 0.025984400883316994, -0.00791431125253439, -0.004081681836396456, 0.009553901851177216, 0.014735562726855278, -0.027008280158042908, -0.0024541974999010563, 0.00012884970055893064, -0.04557647183537483, -0.01425129547715187, -0.026648538187146187, -0.011995993554592133, -0.02027004584670067, -0.02057444304227829, -0.002824316034093499, -0.018402157351374626, 0.0056520914658904076, 0.004268470220267773, -0.008128772489726543, -0.014292803592979908, -0.010979032143950462, -0.003770367009565234, 0.0008405497064813972, 0.0023296717554330826, 0.012743148021399975, 0.007492307107895613, 0.03019060753285885, 0.040235694497823715, 0.03326224535703659, 0.0029367352835834026, 0.00018030309001915157, 0.009256423451006413, -0.013012954033911228, 0.023784443736076355, 0.005873470567166805, 0.000619602738879621, 0.02972017601132393, 0.03345595300197601, -0.017793364822864532, -0.0008660602034069598, -0.009982824325561523, -0.014956941828131676, -0.00994823407381773, 0.012251962907612324, 0.015565735287964344, -0.016271382570266724, 0.045770179480314255, 0.018263796344399452, -0.018249958753585815, -0.00968534592539072, -0.0007839077152311802, 0.021764356642961502, 0.03677664324641228, 0.023009615018963814, 0.003012834582477808, 0.0486757829785347, 0.026510177180171013, 0.031823281198740005, -0.08096949756145477, 0.02051909826695919, 0.014292803592979908, -0.01566258817911148, -0.004548653494566679, -0.00391564704477787, -0.010474010370671749, -0.02955414168536663, 0.012514851056039333, 0.01910780370235443, -0.017641166225075722, -0.02136310562491417, 0.00835707038640976, 0.009941316209733486, -0.00997590646147728, 0.0009296202915720642, 0.031933970749378204, 0.0104463379830122, 0.02454543486237526, 0.0002918575191870332, 0.030301297083497047, -0.011989074759185314, 0.04496767744421959, 0.02787996083498001, -0.043418023735284805, -0.03378802165389061, -0.007845130749046803, -0.021805865690112114, -0.006257425528019667, 0.04585319757461548, 0.011151984333992004, 0.008606121875345707, 0.04610224813222885, 0.010605454444885254, 0.004040172789245844, -0.021390778943896294, -0.022843580693006516, -0.020020993426442146, 0.007519979495555162, -0.034590523689985275, -0.005991078447550535, 0.017738020047545433, -0.018997114151716232, 0.004199289251118898, -0.015289010480046272, 0.019758107140660286, 0.019343020394444466, 0.02224862389266491, 0.025417115539312363, -0.0002585641632322222, -0.031103797256946564, 0.048841819167137146, 0.007755195256322622, -0.003357010195031762, 0.008433169685304165, 0.010584699921309948, -0.028890004381537437, -0.030633365735411644, 0.005918438546359539, -0.002941923914477229, 0.0061640311032533646, 0.005897684022784233, 0.000803797272965312, 0.0325981080532074, 0.043584056198596954, 0.0277831070125103, -0.01837448589503765, 0.02825353853404522, 0.04001431539654732, -0.009789117611944675, 0.004074763506650925, 0.022414658218622208, -0.0010541462106630206, 0.01901095174252987, 0.02323099412024021, -0.009692264720797539, -0.022234788164496422, 0.017198408022522926, 0.006541067734360695, 0.002563157584518194, 0.0004643777501769364, -0.01415444165468216, 0.04244948923587799, -0.05102793872356415, 0.01968892477452755, -0.025472460314631462, -0.001200291095301509, 0.03932250663638115, 0.015496553853154182, 0.028834659606218338, 0.01952289044857025, -0.021127890795469284, 0.01916314847767353, -0.05044681951403618, 0.023037288337945938, 0.032349057495594025, 0.0016983946552500129, 0.014887760393321514, -0.015607243403792381, 0.01433431264013052, 0.031574226915836334, -0.026856081560254097, 0.038243282586336136, -0.04303060844540596, -0.00859228614717722, -0.0029920802917331457, -0.0004306519986130297, -0.002727462677285075, -0.050004057586193085, 0.0006840275600552559, -0.0037772851064801216, 0.01582862250506878, 0.027132805436849594, -0.007443880196660757, -0.00010831157123902813, -0.014666381292045116, 0.000162467360496521, 0.02731267549097538, 0.04316897317767143, 0.009249505586922169, 0.0072086649015545845, -0.05617500841617584, -0.08921587467193604, 0.003808416426181793, 0.02313414216041565, -0.049533627927303314, -0.05058518052101135, -0.05368449166417122, -0.021446123719215393, -0.019356856122612953, 0.0029505714774131775, 0.06768673658370972, -0.010985950008034706, -0.01771034672856331, 0.005610582884401083, -0.035476040095090866, 0.02662086673080921, 0.02015935629606247, 0.02104487456381321, -0.0030560726299881935, 0.0009460508008487523, 0.0005651226383633912, 0.006247048266232014, -0.022483838722109795, 0.02119707129895687, -0.017087718471884727, 0.003004186786711216, -0.018609700724482536, -0.006769365165382624, 0.005825044121593237, 0.04114888608455658, -0.030245952308177948, 0.05202414467930794, 0.027478711679577827, 0.0005940922419540584, -0.004766574129462242, 0.010557027533650398, -0.016963191330432892, -0.011816122569143772, -0.030633365735411644, 0.013684011064469814, -0.03863069415092468, 0.023161813616752625, 0.02318948693573475, -0.032515089958906174, -0.004866886418312788, -0.03749612718820572, 0.0208926759660244, -0.022220950573682785, -0.010148859582841396, 0.03243207186460495, 0.005731649696826935, 0.025389444082975388, -0.0172260794788599, 0.012660130858421326, -0.019149312749505043, -0.05158138647675514, 0.054431647062301636, -0.015759442001581192, 0.021169399842619896, 0.03768983483314514, -0.0054514664225280285, 0.005707436241209507, -0.00603258702903986, -0.0008565477910451591, 0.02068513259291649, -0.0110205402597785, 0.015358191914856434, -0.01239724364131689, -0.01671414077281952, -0.013538730330765247, 0.01842983067035675, -0.011193493381142616, -0.005382285453379154, 0.02836422808468342, -0.0009287555003538728, -0.009927479550242424, 0.007215582765638828, -0.008336315862834454, -0.011670841835439205, -0.008191036060452461, -0.018526684492826462, -0.011394117958843708, 0.05111095681786537, -0.004171616863459349, -0.010460173711180687, -0.014119851402938366, 0.011781532317399979, 0.019702762365341187, 0.026440994814038277, 0.0030301297083497047, 0.005171283148229122, -0.011096639558672905, -0.005703977309167385, -0.009816789999604225, -0.019024787470698357, -0.009325604885816574, -0.02793530561029911, -0.0073055182583630085, -0.0037565308157354593, -0.07145018130540848, -0.007748276926577091, 0.04928457736968994, -0.011421790346503258, 0.014500346966087818, -0.017239917069673538, 0.007997328415513039, 0.057835351675748825, 0.006354278884828091, -0.07510294020175934, -0.01801474392414093, -0.024033494293689728, -0.05210716277360916, -0.0006217646296136081, 0.016644958406686783, 0.01355256699025631, 0.006624084897339344, 0.026081254705786705, 0.015621080063283443, -0.012708557769656181, 0.018941769376397133, -0.007637587375938892, -0.022580692544579506, 0.001793518546037376, -0.008523104712367058, 0.0347842276096344, 0.018983278423547745, -0.0030318591743707657, -0.014666381292045116, 0.000824119197204709, -0.004161239601671696, 0.035060953348875046, -0.024047331884503365, 0.025154227390885353, 0.0036493001971393824, 0.04139793664216995, 0.019550563767552376, -0.0034728883765637875, 0.05451466143131256, -0.010640044696629047, 0.01963357999920845, 0.030301297083497047, 0.02507121115922928, 0.005067511461675167, -0.01346954982727766, -0.006855841726064682, -0.01854052022099495, -0.012404161505401134, -0.017475131899118423, -0.007056466769427061, 0.021390778943896294, -0.02746487408876419, 0.010930605232715607, -0.024420909583568573, -0.0023642622400075197, -0.016686467453837395, -0.017793364822864532, -0.012729312293231487, -0.03636155650019646, 0.004233879968523979, -0.01863737404346466, -0.0320446603000164, -0.00452789943665266, 0.011311100795865059, -0.0033881417475640774, -0.005409957841038704, -0.02027004584670067, 0.0161330197006464, 0.006181326229125261, 0.04917388781905174, 0.02486366778612137, -0.0007631534244865179, 0.007630669046193361, 0.020297719165682793, -0.04585319757461548, 0.012459506280720234, -0.016008494421839714, -0.04892483353614807, -0.02219327911734581, -0.022691382095217705, 0.032930176705121994, -0.010031251236796379, 0.027506383135914803, 0.03439681604504585, 0.014057587832212448, 0.007367781363427639, -0.024766813963651657, 0.004534817300736904, -0.025984400883316994, -0.012314225547015667, 0.029277417808771133, 0.039820607751607895, 0.010135022923350334, -0.029415780678391457, -0.016050001606345177, -0.014057587832212448, 0.018609700724482536, -0.006561822257936001, 0.008280971087515354, -0.04787328466773033, 0.013441876508295536, 0.014832415618002415, 0.01326200645416975, -0.031823281198740005, -0.020491424947977066, -0.016368234530091286, 0.010072760283946991, -0.011318018659949303, -0.027603236958384514, 0.0018834539223462343, -0.011657006107270718, 0.013690928928554058, 0.02328633889555931, 0.04402681812644005, -0.023839788511395454, -0.016050001606345177, 0.008702975697815418, 0.014237458817660809, -0.008440087549388409, 0.002599477767944336, 0.011103557422757149, 0.022912761196494102, -0.005786994472146034, 0.01827763207256794, -0.00785896647721529, 0.012417997233569622, -0.017821036279201508, -0.011843794956803322, -0.01409909687936306, 0.01869271881878376, -0.009533148258924484, 0.020865002647042274, -0.02516806311905384, -0.025251081213355064, 0.03356664255261421, -0.01656194217503071, 0.0035628238692879677, -0.027243494987487793, 0.03395405784249306, -0.009574656374752522, 0.010169613175094128, -0.0017001241212710738, 0.00643729604780674, 0.0023175650276243687, 0.04958897456526756, 0.03337293490767479, -0.027326513081789017, -0.003676972584798932, -0.021266253665089607, -0.0012781197438016534, 0.008045755326747894, 0.016437416896224022, -0.013268924318253994, 0.023729098960757256, -0.012750066816806793, 0.008855173364281654, -0.0024403613060712814, -0.0438607819378376, -0.009955151937901974, 0.0004946444532833993, 0.016465088352560997, 0.04693242162466049, 0.001316169393248856, 0.01963357999920845, 0.03331759199500084, 0.03497793525457382, -0.02454543486237526, 0.010944440960884094, 0.0265793576836586, -0.0208373311907053, -0.004168157931417227, -0.03298552334308624, 0.003960615023970604, -0.005153988022357225, 0.011912975460290909, 0.030882418155670166, 0.040235694497823715, 0.011442544870078564, -0.02830888330936432, 0.016880175098776817, -0.0007648829487152398, -0.03342828154563904, 0.009041962213814259, 0.02104487456381321, 0.026440994814038277, 0.029775520786643028, -0.0005110749625600874, -0.01365633774548769, 0.032459747046232224, 0.016354398801922798, 0.027478711679577827, 0.035642072558403015, 0.007291682064533234, 0.0086407121270895, 0.014514182694256306, -0.014147523790597916, -0.0011916435323655605, -0.01959207095205784, 0.03890741989016533, 0.009014289826154709, -0.02740952931344509, -0.021321598440408707, 0.00919416081160307, -0.0014545314479619265, -0.0004782139731105417, -0.0007579647935926914, 0.027008280158042908, 0.005908061284571886, -0.0014156170655041933, 0.014106014743447304, 0.02548629604279995, 0.00489801773801446, -0.029388107359409332, -0.01874806359410286, -0.039350178092718124, -0.02460077963769436, -0.033926382660865784, 0.0016689926851540804, -0.023051124066114426, 0.03143586590886116, -0.040069662034511566, -0.004223502706736326, 0.0109098507091403, -0.017530476674437523, 0.014943105168640614, 0.002301999367773533, 0.025237245485186577, 0.029415780678391457, 0.008855173364281654, -0.01863737404346466, -0.0218750461935997, 0.021487632766366005, -0.026302633807063103, 0.031048452481627464, 0.01665879599750042, -0.005475679878145456, 0.0348949171602726, 0.0278384517878294, -0.0031598443165421486, -0.016990864649415016, 0.0031736805103719234, -0.01692168414592743, 0.01759965717792511, -0.028751641511917114, -0.009470884688198566, -0.040484748780727386, 0.02972017601132393, 0.016741812229156494, 0.007969656027853489, 0.02621961571276188, 0.023272503167390823, 0.015399700962007046, 0.015067631378769875, 0.0011579177808016539, 0.021114055067300797, -0.020657459273934364, -0.008232544176280499, 0.007935065776109695, 0.0115393977612257, -0.005620959680527449, 0.012528686784207821, -0.012203535996377468, 0.018872588872909546, 0.008073427714407444, -0.0109651954844594, -0.021003365516662598, -0.010093514807522297, 0.009962070733308792, 0.005506811197847128, -0.002599477767944336, 0.0035559057723730803, 0.034756556153297424, -0.019135477021336555, 0.02240082249045372, 0.017419787123799324, 0.014133687131106853, 0.003739235457032919, -0.0013498951448127627, -0.028917675837874413, -0.01281924732029438, -0.019121641293168068, -0.000338122365064919, 0.035476040095090866, -0.0010256089735776186, 0.004517522174865007, 0.01430664025247097, 0.020076338201761246, -0.02292659878730774, 0.003018022980540991, -0.02433789148926735, 0.01023879460990429, -0.01916314847767353, -0.004704311024397612, -0.043888453394174576, 0.030356641858816147, 0.011843794956803322, 0.04599155858159065, 0.0026202320586889982, -0.0006412218208424747, 0.017309097573161125, 0.007409289944916964, 0.005870011635124683, 0.01427896786481142, 0.062484320253133774, 0.0075268978253006935, 0.0324874185025692, -0.022968105971813202, 0.021944226697087288, -0.03049500472843647, 0.0013473008293658495, 0.01427896786481142, -0.0010359861189499497, -0.006724397651851177, -0.01021112222224474, -0.0010472281137481332, 0.018208451569080353, -0.015081468038260937, 0.013690928928554058, -0.03638922795653343, 0.010058923624455929, 0.038520004600286484, -0.0023798278998583555, -0.0017866004491224885, -8.150391659000888e-05, 0.02208258956670761, -0.02563849464058876, -0.0138638811185956, 0.009297932498157024, 0.016589613631367683, -0.026648538187146187, 0.037523798644542694, 0.03312388435006142, -0.016990864649415016, 0.015067631378769875, -0.05468069761991501, -0.013365778140723705, 0.020034831017255783, -0.03221069276332855, -0.015551898628473282, -0.004617834929376841, -0.026717718690633774, -0.021446123719215393, 0.005544860847294331, -0.01415444165468216, 0.015690261498093605, 0.00626780278980732, -0.006537608802318573, 0.022470002993941307, -0.0021757439244538546, -0.012362652458250523, 0.08700208365917206, 0.0172260794788599, -0.0027499464340507984, 0.025624658912420273, 0.01656194217503071, -0.007367781363427639, 7.604510028613731e-05, 0.03342828154563904, 0.017309097573161125, 0.02548629604279995, -0.027907634153962135, 0.014133687131106853, 0.06010449305176735, -0.0048322961665689945, -0.00895894505083561, 0.0033794939517974854, 0.004925690591335297, 0.0033310672733932734, 0.013732437044382095, 0.012687803246080875, 0.007118729408830404, -0.04319664463400841, 0.00278626661747694, 0.008184117265045643, -0.01869271881878376, -0.01692168414592743, 0.022732891142368317, -0.02130776084959507, -0.002540673827752471, 0.004271929617971182, 0.014611036516726017, 0.016534268856048584, 0.020920347422361374, 0.01582862250506878, -0.008377824909985065, 0.003801498329266906, -0.004009041469544172, -0.01959207095205784, 0.018000908195972443, 0.01462487317621708, -0.01811159774661064, 0.0104463379830122, -0.022539183497428894, -0.014970778487622738, 0.007053007371723652, 0.011006704531610012, 0.00246630422770977, -0.0035040199290961027, 0.007146401796489954, -0.028004486113786697, -0.0023953935597091913, -0.0086960569024086, -0.02313414216041565, -0.02114172652363777, -0.026330305263400078, -0.0051401518285274506, 0.009574656374752522, 0.02168133854866028, -0.0029038742650300264, -0.015012286603450775, 0.01692168414592743, -0.010162695311009884, -0.04344569519162178, -0.001591164036653936, -0.005676304921507835, -0.002621961524710059, -0.01795939914882183, -0.032404400408267975, -0.02234547771513462, 0.010072760283946991, -0.022594528272747993, 0.0030214821454137564, 0.010930605232715607, 0.007118729408830404, -0.0218197014182806, 0.013960734941065311, -0.014445002190768719, 0.0014994991943240166, -0.0320446603000164, -0.016326727345585823, -0.007132565602660179, -0.02479448728263378, -0.0174474585801363, 0.0644213855266571, -0.027492547407746315, 0.002884849440306425, -0.008031919598579407, 0.029526470229029655, 0.004576325882226229, 0.052356213331222534, 0.020283881574869156, -0.037883538752794266, 0.016575777903199196, -0.0033743055537343025, -0.010031251236796379, 0.018457502126693726, -0.0036631363909691572, -0.02725733071565628, 0.008267134428024292, -0.004275388550013304, 0.014445002190768719, -0.0020442998502403498, -0.007907393388450146, 0.018097762018442154, -0.028391901403665543, 0.010397911071777344, -0.019384529441595078, 0.003478077007457614, -0.011643169447779655, 0.02062978781759739, 0.020491424947977066, -0.007035712245851755, 0.01811159774661064, -0.02861328050494194, -0.007132565602660179, -0.008952027186751366, -0.027866125106811523, -0.023687589913606644, 0.011636251583695412, -0.010875260457396507, -0.001186454901471734, -0.015731768682599068, 0.013268924318253994, 0.0003082880284637213, 8.823285497783218e-06, 0.04225578159093857, -0.01937069185078144, -0.009962070733308792, -0.005032921209931374, 0.023632245138287544, 0.019467545673251152, -0.003249779576435685, -0.014528019353747368, 0.02104487456381321, 0.031408194452524185, 0.020740477368235588, 0.004299602005630732, -0.015994656831026077, 0.018720390275120735, -0.005676304921507835, 0.0008677897276356816, 0.022483838722109795, -0.00031931375269778073, -0.0007225095178000629, 0.005320022348314524, -0.00545492535457015, -0.005167824216187, -0.02343853749334812, -0.024739140644669533, -0.017627330496907234, 0.009180324152112007, -0.0035904962569475174, 0.02136310562491417, 0.02413034811615944, -0.011394117958843708, -0.003433109261095524, 0.015648752450942993, -0.02710513398051262, -0.0139192258939147, -0.019882632419466972, 0.016174528747797012, 0.011601661331951618, -0.035891126841306686, -0.01660345122218132, 0.0347842276096344, -0.007679095957428217, 0.011560152284801006, 0.01890026219189167, -0.01952289044857025, 0.02219327911734581, -0.03796655684709549, -0.003548987675458193, 0.020076338201761246, 0.03744078055024147, -0.03400940075516701, -0.011470217257738113, 0.023175649344921112, 0.024241037666797638, -0.054127249866724014, -0.010384074412286282, -0.01989646814763546, 0.010425583459436893, -0.04563181847333908, -0.022207114845514297, -0.013877717778086662, -0.021916555240750313, 0.021556813269853592, -0.007845130749046803, 0.016423579305410385, 0.01999332197010517, 0.009124979376792908, -0.020034831017255783, 0.021017201244831085, -0.031823281198740005, 0.02704978920519352, -0.03002457320690155, 0.012127436697483063, 0.014804743230342865, 0.01357332058250904, 0.00621245801448822, 0.018042417243123055, -0.022802071645855904, -0.026095090433955193, -0.016797157004475594, 0.005665927659720182, -0.016160691156983376, -0.006520313676446676, 0.038409315049648285, 0.03348362445831299, 0.005347694735974073, 0.00835707038640976, 0.017087718471884727, 0.024061167612671852, -0.012971445918083191, -0.00824638083577156, 0.003417543601244688, -0.022151770070195198, 0.022995779290795326, 0.0014208056963980198, -0.024739140644669533, 0.01433431264013052, -0.019232330843806267, 0.03162957355380058, -0.03644457459449768, -0.01827763207256794, 0.028447246178984642, 0.019605908542871475, 0.021639831364154816, 0.023355521261692047, -0.00814952701330185, -0.012916101142764091, 0.014500346966087818, -0.012805411592125893, -0.007582242600619793, 0.03066103905439377, 0.007782867643982172, -0.041121214628219604, 0.002504353877156973, -0.01177461352199316, -0.0016456440789625049, -0.0160776749253273, 0.019038623198866844, -0.0007631534244865179, -0.018042417243123055, 0.010045087896287441, -0.003407166339457035, 0.014763235114514828, -0.009996660985052586, -0.0003283937694504857, -0.03907345235347748, 0.030301297083497047, 0.009436294436454773, -0.006350819952785969, 0.009941316209733486, 0.027644746005535126, 0.002492247149348259, 0.0007670448394492269, -0.017253752797842026, -0.008114936761558056, -0.01587013155221939, -0.005738567560911179, 0.0071879103779792786, 0.016949355602264404, -0.021086381748318672, 0.009816789999604225, 0.03439681604504585, -0.014292803592979908, -0.02397814951837063, -0.049422938376665115, 0.0025579691864550114, -0.008004247210919857, -0.011186574585735798, 0.012833083979785442, -0.022483838722109795, -0.028973020613193512, 0.024199528619647026, -0.0009028126369230449, 0.007630669046193361, 0.03608483448624611, 0.031186815351247787, -0.009609246626496315, -0.010868341661989689, -0.00931868702173233, -0.021058710291981697, 0.026039745658636093, 0.003995205275714397, -0.018969442695379257, 0.04740285128355026, 0.023064959794282913, 0.0206159520894289, 0.04596388712525368, 0.011235001496970654, 0.00021673123410437256, -0.0035524466075003147, -0.006447673309594393, 0.020754313096404076, -0.027658581733703613, 0.020076338201761246, -0.01901095174252987, -0.016478924080729485, 0.022746726870536804, 0.0069976625964045525, -0.0012513120891526341, -0.02554164081811905, 0.014915432780981064, 0.0002559698768891394, 0.017322933301329613, 0.033649660646915436, -0.006599871441721916, 0.009014289826154709, 0.003382953116670251, 0.0014164819149300456, -0.026510177180171013, -0.011712350882589817, -0.00965767353773117, 0.010266466997563839, 0.003680431516841054, 0.010349484160542488, 0.010985950008034706, 0.05700518190860748, 0.021529141813516617, 0.0025614281184971333, 0.03002457320690155, -0.0394885390996933, 0.02047758921980858, 0.02114172652363777, 0.005925356410443783, -0.012923019006848335, -0.012279635295271873, -0.0022829745430499315, 0.002135964808985591, -0.002957489574328065, 0.03990362584590912, -0.03912879899144173, -0.010563945397734642, 0.008765238337218761, 0.031989313662052155, 0.021169399842619896, 0.00016300783318001777, -0.027506383135914803, 0.017627330496907234, -0.013248169794678688, 0.008889764547348022, 0.026067417114973068, 0.010723061859607697, 0.04981035366654396, 0.022414658218622208, 0.012653212994337082, 0.013089053332805634, -0.0039917463436722755, 0.008730648085474968, 0.008405497297644615, -0.01748896762728691, -0.01754431240260601, 0.010951359756290913, -0.023037288337945938, -0.001613647909834981, -0.022124098613858223, 0.003559364704415202, -0.027741597965359688, -0.004202748648822308, 0.06309311091899872, 0.013462631031870842, 0.007011498790234327, -0.0006070636445656419, -0.03619552403688431, -0.032238367944955826, -0.010833751410245895, 0.010944440960884094, 0.008087264373898506, 0.015039958991110325, -0.006928481627255678, -0.0009979365859180689, 0.000670191366225481, 0.003891433821991086, -0.021266253665089607, -0.01456952840089798, 0.0033016654197126627, -0.009201078675687313, 0.008045755326747894, -0.007032253313809633, -0.07067535817623138, 0.011726186610758305, -0.03196164220571518, 0.024988193064928055, -0.010501682758331299, 0.028834659606218338, 0.015178320929408073, 0.03126983344554901], [0.0036436282098293304, 0.02007686160504818, 0.05937168002128601, 0.001469529583118856, 0.02065393701195717, 0.024371376261115074, -0.022774353623390198, 0.020412370562553406, 0.03639601916074753, 0.01615811511874199, -0.024559261277318, -0.010367229580879211, -0.032208867371082306, 0.021418897435069084, 0.008005245588719845, 0.03322881460189819, 0.0010602085385471582, 0.020600255578756332, -0.007931433618068695, 0.021566521376371384, 0.05647288262844086, 0.022371742874383926, 0.005569450091570616, -0.036986514925956726, -0.03481241688132286, -0.05899590998888016, 0.03795278072357178, -0.0021959065925329924, -0.00848837848752737, -0.048528026789426804, 0.07289940118789673, -0.01964741013944149, 0.02215701714158058, -0.01697675697505474, 0.040234245359897614, -0.020452631637454033, -0.004314646124839783, 0.032638318836688995, 0.06178734451532364, 0.004391813185065985, -0.010051851160824299, 0.001379780936986208, -0.030249495059251785, -0.040932103991508484, -0.06903433799743652, 0.0516415499150753, 0.02973952144384384, -0.04281095415353775, -0.025243699550628662, 0.009689501486718655, 0.0010887267999351025, 0.002630390925332904, 0.03019581362605095, -0.07043005526065826, 0.017634354531764984, 0.019003231078386307, -0.021808087825775146, 0.04197889193892479, 0.034195080399513245, -0.022398583590984344, 0.01935216225683689, 0.0020717682782560587, 0.009058743715286255, 0.05894222855567932, -0.0065290057100355625, 0.0286390520632267, 0.016399681568145752, 0.03593972697854042, -0.03878484666347504, 0.05491612106561661, 0.03513450548052788, -0.018707983195781708, 0.012883546762168407, -0.04138839617371559, 0.008186420425772667, -0.04111998900771141, -0.007273836061358452, -0.01767461560666561, 0.001172604039311409, 0.01672177016735077, -0.01256145816296339, 0.04855486750602722, -0.03983163461089134, 0.02666625939309597, 0.023244066163897514, -0.030383698642253876, -0.039804793894290924, 0.0015953454421833158, -0.040905263274908066, 0.003794607240706682, -0.035188186913728714, -0.03274568170309067, 0.0005556868272833526, 0.0018369120080024004, 0.03736228495836258, -0.024599522352218628, 0.0065793320536613464, -0.040073201060295105, -0.04745439812541008, 0.05851277709007263, 0.021096808835864067, -0.009414383210241795, -0.02736411802470684, -0.014426888898015022, 0.07311412692070007, -0.001145763322710991, -0.05872750282287598, 0.030142132192850113, 0.015245530754327774, -0.011769657023251057, -0.08594399690628052, 0.00221435958519578, -0.005881473422050476, 0.06629658490419388, -0.016346000134944916, 0.014923442155122757, -0.046944424510002136, 0.04474348574876785, 0.029793202877044678, 0.002556578954681754, -0.040932103991508484, -0.03261147812008858, 0.03030317649245262, -0.05038003623485565, -0.026344168931245804, -0.016372840851545334, -0.025230279192328453, 0.012829865328967571, -0.04409930855035782, -0.03840907663106918, 0.08809125423431396, -0.022519366815686226, 0.05403037741780281, -0.03537607192993164, -0.041764166206121445, 0.003118556458503008, -0.026760201901197433, 0.0046837059780955315, -0.010018300265073776, -0.053976695984601974, 0.010508143343031406, 0.01115232054144144, 0.06699444353580475, 0.03776489570736885, -0.004952113609761, 0.018506677821278572, 0.007951564155519009, 0.05641920119524002, -0.02400902658700943, 0.021163910627365112, -0.004536082036793232, -0.02693466655910015, -0.012534617446362972, -0.04130787402391434, -0.024800827726721764, -0.044985052198171616, 0.04187152907252312, 0.044287193566560745, 0.0004349036025814712, 0.008817177265882492, 0.02356615476310253, -0.0023921795655041933, -0.03663758561015129, 0.0029994507785886526, 0.026424691081047058, -0.009635820053517818, -0.06726285070180893, -0.027122551575303078, -0.07638870179653168, -0.02371377870440483, -0.024747146293520927, -0.032101504504680634, 0.004905142355710268, 0.016681509092450142, -0.011400597169995308, -0.03580552339553833, -0.029310069978237152, -0.012132006697356701, 0.009166106581687927, -0.031001035124063492, 0.019593728706240654, -0.022962238639593124, -0.07134263962507248, -0.029417432844638824, -0.051051054149866104, 0.05472823604941368, -0.010702738538384438, 0.02093576453626156, -0.0032426947727799416, -0.0024039223790168762, -0.00785091146826744, 0.012232659384608269, 0.017862500622868538, 0.03846275806427002, -0.036449700593948364, 0.031940460205078125, -0.011246263049542904, -0.016641248017549515, 0.01837247423827648, 0.03596656769514084, 0.021137069910764694, -0.01313853356987238, 0.06715548783540726, -0.008434697054326534, 0.010836942121386528, -0.022143596783280373, -0.004693771246820688, 0.05403037741780281, 0.0024441834539175034, 0.021821508184075356, -0.020398950204253197, 0.008669553324580193, -0.012386993505060673, 0.02917586639523506, -0.034731894731521606, 0.003975782077759504, -0.00032334684510715306, 0.00919965747743845, 0.013688769191503525, 0.06731653213500977, -0.023418530821800232, 0.01740620844066143, 0.03379246965050697, -0.0062975045293569565, 0.012467515654861927, -0.004193862900137901, -0.010971145704388618, -0.051748912781476974, -0.005156774073839188, -0.03634233772754669, 0.006958457641303539, 0.00245424872264266, -0.06393460184335709, -0.0185469388961792, 0.014802658930420876, 0.003995912615209818, -0.007824070751667023, -0.03988531604409218, -0.04420667141675949, -0.03661074489355087, 0.013420362025499344, -0.019902396947145462, 0.010387360118329525, 0.016507044434547424, 0.019311901181936264, -0.010581955313682556, -0.02147257886826992, -0.04409930855035782, 0.015178428962826729, 0.016050752252340317, 0.08712498843669891, -0.004985664505511522, 0.013460623100399971, -0.0024089550133794546, -0.010702738538384438, -0.022975658997893333, 0.011474409140646458, -0.014977123588323593, 0.025861036032438278, -0.012326601892709732, -0.005623131524771452, -0.022801194339990616, 0.003955651540309191, 0.011172451078891754, -0.0308668315410614, -0.05754651129245758, -0.004787714220583439, -0.0019409197848290205, -0.025324221700429916, 0.011487829498946667, -0.017943022772669792, 0.020882083103060722, -0.01362166740000248, -0.05113157629966736, -0.024961872026324272, -0.01571524329483509, 0.026719940826296806, -0.0015928291250020266, -0.005955285392701626, 0.035188186913728714, -0.044421397149562836, -0.015688402578234673, 0.027283595874905586, -0.012890256941318512, -0.009085584431886673, 0.013957176357507706, 0.014936862513422966, 0.01978161372244358, -0.006294149439781904, 0.010642346926033497, 0.055077165365219116, -0.014118220657110214, 0.032101504504680634, -0.035456594079732895, 0.05808332562446594, -0.014145061373710632, -0.008186420425772667, -0.044421397149562836, 0.007421460002660751, 0.00869639404118061, 0.0365033820271492, -0.021647043526172638, 0.01699017733335495, -0.009877386502921581, -0.0008630970260128379, 0.02019764482975006, 0.06447141617536545, 0.006176721304655075, -0.025887876749038696, 0.005888183601200581, -0.025485266000032425, 0.060874760150909424, -0.04656865447759628, -0.028263282030820847, -0.05483559891581535, 0.017097540199756622, -0.008978221565485, 0.0066061727702617645, -0.005119868088513613, 0.018305372446775436, 0.03414139896631241, -0.013131823390722275, 0.046273406594991684, -0.026290487498044968, 0.05043371766805649, 0.0035765264183282852, -0.019016651436686516, -0.014963703230023384, -0.048635389655828476, -0.04605868086218834, -0.02176782675087452, -0.0052842674776911736, -0.01682913303375244, 0.004083144944161177, -0.009602269157767296, 0.029846884310245514, 4.710232315119356e-05, 0.020036600530147552, -0.0022764287423342466, 0.04825961962342262, 0.03355090320110321, -0.03513450548052788, -0.034758735448122025, 0.028880618512630463, -0.02384798228740692, 0.008421276696026325, 0.018184589222073555, -0.003831513226032257, -0.018198009580373764, 0.06779966503381729, -0.01699017733335495, 0.014118220657110214, -0.0553455725312233, -0.0076026348397135735, -0.09528456628322601, -0.045011892914772034, 0.041039466857910156, -0.015124747529625893, -0.05695601552724838, -0.01866772212088108, -0.01699017733335495, -0.012970779091119766, 0.0007263770676217973, 0.006904776208102703, -0.012105165980756283, -0.007173183374106884, 0.0016171535244211555, 0.023056181147694588, -0.015956809744238853, -0.04487768933176994, 0.0463002473115921, 0.03725492209196091, 0.022210698574781418, -0.027310436591506004, 0.016359420493245125, -0.012668821029365063, -0.0005875601782463491, 0.040341608226299286, -0.0370938777923584, 0.014936862513422966, 0.02035868912935257, 0.030222654342651367, 0.013098272494971752, 0.02708229050040245, 0.04087842255830765, 0.02880009636282921, -0.02880009636282921, -0.025042394176125526, -0.012527907267212868, 0.004744097590446472, -0.0008261909824796021, 0.024747146293520927, -0.029685840010643005, -0.007059110328555107, 0.010910754092037678, 0.011816628277301788, 0.06570608913898468, 0.02402244694530964, 0.05064844340085983, -0.017030438408255577, 0.03183309733867645, -0.012903677299618721, -0.013648508116602898, -0.0528225414454937, -0.013628377579152584, -0.04222045838832855, -0.007381198927760124, -0.01866772212088108, 0.0028820226434618235, 0.026854144409298897, 0.04925272613763809, 0.004160312004387379, 0.02877325564622879, -0.007260415703058243, 0.014936862513422966, 0.004942048341035843, -0.010521563701331615, 0.02274751290678978, 0.004485755693167448, -0.025337642058730125, 0.03988531604409218, -0.03776489570736885, -0.006012321915477514, -0.00948148500174284, 0.012165557593107224, 0.020036600530147552, 0.011333495378494263, -0.011286524124443531, -0.02497529238462448, -0.07456352561712265, -0.041629962623119354, 0.005448666866868734, 0.04509241506457329, 0.0308668315410614, -0.025243699550628662, -0.003485938999801874, 0.03443664684891701, -0.0317525751888752, 0.010206185281276703, -0.04366985708475113, 0.018855607137084007, -0.022009393200278282, -0.0009855577955022454, 0.054110899567604065, 0.012319891713559628, 0.01486976072192192, -0.009058743715286255, 0.02106996811926365, 0.01837247423827648, -0.006300859618932009, -0.0018721404485404491, 0.060284264385700226, -0.04171048477292061, -0.004613249097019434, -0.03258463740348816, -0.0154334157705307, 0.022277800366282463, -0.015218690037727356, 0.033899832516908646, -0.02654547430574894, 0.015674982219934464, 0.05856645852327347, 0.06055267155170441, 0.007663026452064514, 0.030142132192850113, 0.03132312372326851, 0.0248545091599226, -0.03567131981253624, 0.01178978756070137, -0.022237539291381836, -0.016654668375849724, -0.014145061373710632, 0.022291220724582672, 0.0057975961826741695, 0.04098578542470932, 0.008287073113024235, 0.0033215393777936697, -0.02009028196334839, 0.020533153787255287, -0.0020835110917687416, 0.02047947235405445, 0.06329042464494705, -0.04726651310920715, -0.016802292317152023, 0.01011224277317524, 0.03440980613231659, 0.06092844158411026, -0.05408405885100365, -0.05099737271666527, -0.007132922299206257, -0.03918745741248131, -0.03314829245209694, 0.0336851067841053, -0.015205269679427147, 0.002242877846583724, -0.04995058476924896, -0.026464952155947685, -0.03465137258172035, 0.05448666960000992, -0.03859696164727211, 0.04324040561914444, -0.03593972697854042, -0.015634721145033836, -0.012608429417014122, 0.008622582070529461, -0.003251082496717572, 0.007743548601865768, -0.036879152059555054, -0.030678946524858475, 0.025096075609326363, -0.05260781571269035, -0.013849813491106033, 0.015809185802936554, 0.011615322902798653, 0.010434331372380257, 0.01852009817957878, -0.02553894743323326, 0.0002658909070305526, -0.010011590085923672, 0.00484810583293438, -0.0059250895865261555, 0.010347099043428898, 0.00807234738022089, 0.02721649408340454, -0.01474897749722004, 0.008830597624182701, 0.001597861759364605, -0.02302934043109417, -0.001508113113231957, -0.02133837528526783, -0.004492465872317553, -0.038516439497470856, -0.05185627564787865, 0.006971877999603748, -0.023915084078907967, 0.003854998853057623, 0.003727505449205637, -0.014077959582209587, 0.007173183374106884, -0.021539680659770966, 0.02117733098566532, -0.006384736858308315, -0.010803391225636005, 0.022828035056591034, 0.01908375509083271, 0.03500030189752579, 0.018842186778783798, 0.03537607192993164, 0.009796864353120327, -0.029551636427640915, 0.02791435271501541, -0.013151953928172588, 0.019540047273039818, -0.014681875705718994, -0.02273409254848957, 0.03704019635915756, 0.008642712607979774, -0.01756725274026394, -0.01615811511874199, 0.028719574213027954, -0.01586286723613739, -0.001945952419191599, 0.013185504823923111, 0.0068846456706523895, -0.02357957512140274, 0.007293966598808765, 0.005790886003524065, 0.010159214027225971, -0.015124747529625893, -0.0005179420695640147, -0.0023418529890477657, 0.015581039711833, 0.011843468993902206, -0.014762397855520248, 0.04168364405632019, -0.005374854896217585, 0.02145915850996971, -0.04656865447759628, 0.02553894743323326, -0.0029491244349628687, -0.011601902544498444, -0.01841273531317711, 0.0024693466257303953, -0.017580673098564148, -0.033363018184900284, 0.005660037510097027, 0.016909655183553696, 0.0034423228353261948, -0.01865430176258087, 0.020586835220456123, -0.0040294635109603405, -0.013567985966801643, 0.004143536556512117, 0.02936375141143799, -0.013178794644773006, 0.009582138620316982, 0.03451716899871826, 0.042300980538129807, -0.006173366215080023, 0.02543158456683159, 0.02737753838300705, -0.01486976072192192, -0.032772522419691086, -0.0025767094921320677, -0.04211309552192688, 0.00968279130756855, 0.03655706346035004, 0.01614469476044178, 0.016091013327240944, 0.026424691081047058, -0.014024278149008751, 0.016319159418344498, 0.005542609374970198, -0.026156283915042877, -0.056097112596035004, 0.0036838892847299576, -0.008508509024977684, -0.010125663131475449, 0.01503080502152443, -0.042596228420734406, 0.004791069310158491, -0.015419995412230492, -0.006445128470659256, 0.014910021796822548, 0.026733361184597015, 0.002544836141169071, -0.012883546762168407, -0.047508079558610916, 0.0712352767586708, -0.0002723913930822164, -0.016480203717947006, 0.03878484666347504, 0.022009393200278282, -0.0022462329361587763, -0.04326724633574486, 0.004858171101659536, 0.023982185870409012, -0.002023119479417801, -0.007548953406512737, -0.004747452680021524, 0.030491061508655548, 0.03033001720905304, 0.026773622259497643, -0.03548343479633331, 0.013245896436274052, 0.020184224471449852, -0.015836026519536972, -0.012735922820866108, -0.0033869638573378325, -0.006653144024312496, 0.018023544922471046, 0.022975658997893333, 0.013319708406925201, -0.011628743261098862, 0.020117122679948807, 0.010427621193230152, 0.007052400149405003, 0.01896297000348568, 0.0001849493564805016, 0.022385163232684135, -0.03945586457848549, 0.008924540132284164, 0.00013965563266538084, 0.007871042005717754, 0.030571583658456802, 0.00926004908978939, 0.029927406460046768, 0.023136703297495842, -0.03365826606750488, 0.009152686223387718, -0.014829499647021294, 0.0071530528366565704, 0.007367778569459915, -0.013930335640907288, 0.0033651557750999928, -0.0027914352249354124, -0.0047105466946959496, 0.03840907663106918, -0.03481241688132286, 0.034060876816511154, -0.04069053754210472, 0.00338360876776278, 0.01614469476044178, -0.0035295551642775536, 0.002950801979750395, -0.04587079584598541, -0.006096199154853821, -0.007267125882208347, 0.02947111427783966, 0.04141523689031601, -0.0016456717858090997, 0.01101811695843935, 0.0027796924114227295, -0.010977855883538723, 0.007676446810364723, 0.040475811809301376, 0.017634354531764984, -0.01570182293653488, -0.04686390236020088, -0.08422619104385376, -0.008058927021920681, 0.036154452711343765, -0.04085158184170723, -0.028692733496427536, -0.034490328282117844, 0.006458548828959465, -0.03285304456949234, 0.01516500860452652, 0.06452509760856628, -0.02412980981171131, -0.017164641991257668, -0.005921734496951103, -0.0409589447081089, 0.010716158896684647, 0.0030464220326393843, 0.03191361948847771, -0.008112608455121517, -0.007220154628157616, 0.001999633852392435, -0.005811016540974379, -0.019177697598934174, 0.0286390520632267, -0.012514486908912659, -0.0008329011616297066, 0.006693405564874411, -0.004599828738719225, 0.030383698642253876, 0.03430244326591492, -0.027619104832410812, 0.02384798228740692, 0.043294087052345276, -0.010058561339974403, 0.019553467631340027, 0.013178794644773006, -0.03975111246109009, -0.0007704126182943583, -0.017634354531764984, 0.02412980981171131, -0.044287193566560745, 0.016184955835342407, 0.04294515773653984, -0.04004636034369469, 0.0008589031640440226, -0.0333898589015007, 0.02317696437239647, -0.020264746621251106, -0.022707251831889153, 0.016184955835342407, 0.003408771939575672, 0.02061367593705654, -0.03033001720905304, 0.012111876159906387, -0.01058866549283266, -0.014225583523511887, 0.03610077127814293, -0.00906545389443636, 0.019620569422841072, 0.019888976588845253, 0.012286340817809105, -0.0027444639708846807, -0.018332213163375854, 0.006757152266800404, -0.0016473493305966258, -0.020466051995754242, 0.023941924795508385, -0.002061703009530902, -0.01894954964518547, -0.05239308997988701, 0.026142863556742668, -0.014440309256315231, -0.006586042232811451, 0.03599340841174126, -0.0008555480744689703, -0.011890440247952938, -0.0063880919478833675, -0.012360152788460255, -0.019191117957234383, -0.030088450759649277, -0.02204965427517891, -0.028853777796030045, 0.04549502581357956, -0.01682913303375244, -0.01446714997291565, -0.005562739912420511, -0.0020801560021936893, 0.04313304275274277, 0.033336177468299866, 0.006196851842105389, 0.0018486548215150833, -0.004522661678493023, -0.006227047648280859, -0.03046422079205513, -0.015621300786733627, -0.01642652228474617, -0.04439455643296242, 0.00040575623279437423, -0.00014290587569121271, -0.06345146894454956, -0.005764045286923647, 0.023539314046502113, -0.020734459161758423, 0.00877020601183176, 0.0097566032782197, 0.04079790040850639, 0.0465954951941967, 0.020721038803458214, -0.07724760472774506, -0.019808454439044, -0.03577868267893791, -0.029256388545036316, 0.0060794237069785595, 0.02191545069217682, 0.036315497010946274, 0.014024278149008751, 0.022935397922992706, 0.025337642058730125, -0.007676446810364723, 0.013279447332024574, 0.0057707554660737514, -0.011420727707445621, 0.009011772461235523, 0.002217714674770832, 0.03848959878087044, 0.004831330385059118, 0.03733544424176216, -0.008099188096821308, -0.02973952144384384, 0.0009369089966639876, 0.007220154628157616, -0.023539314046502113, 0.0008052216726355255, -0.008441407233476639, 0.05631183832883835, 0.02005002088844776, -0.010971145704388618, 0.029793202877044678, -0.0008966479217633605, 0.0037207952700555325, 0.034463487565517426, 0.03639601916074753, 0.030974194407463074, -0.02724333480000496, -0.021445738151669502, -0.03059842437505722, 0.012064904905855656, -0.006334410514682531, -0.0005267491796985269, 0.022009393200278282, -0.010649057105183601, 0.03271884098649025, -0.01767461560666561, -0.028826937079429626, 0.008729944936931133, -0.03016897290945053, 0.017513571307063103, -0.01964741013944149, 0.004160312004387379, -0.037442807108163834, -0.015258951112627983, -0.013172084465622902, -0.010179344564676285, -0.010836942121386528, -0.0035060695372521877, 0.011266393586993217, 0.03169889375567436, 0.0006148203392513096, 0.038248032331466675, 0.04965533688664436, 0.0015064355684444308, -0.0008454828057438135, 0.028451167047023773, -0.015124747529625893, -0.0008966479217633605, -0.0076294755563139915, -0.015554198995232582, -0.018721403554081917, -0.002023119479417801, 0.02708229050040245, -0.007548953406512737, 0.032343070954084396, 0.008052216842770576, 0.01586286723613739, 0.026854144409298897, 0.004653510171920061, 0.0160239115357399, -0.01682913303375244, 0.00013661508273798972, 0.044555600732564926, 0.059049591422080994, -0.01626547798514366, -0.029444273561239243, -0.026907825842499733, 0.00048061669804155827, 0.0333898589015007, -0.0028937654569745064, -0.03172573447227478, -0.02764594554901123, 0.002257975749671459, 0.007837491109967232, 0.03016897290945053, -0.0017480021342635155, -0.0021858413238078356, -0.011856889352202415, 0.03062526509165764, 0.00047768099466338754, -0.010085402056574821, -0.011172451078891754, -0.007273836061358452, -0.025887876749038696, 0.03822119161486626, 0.08540718257427216, -0.03381931036710739, -0.0317525751888752, -0.011367046274244785, 0.015648141503334045, -0.017607513815164566, -0.01325931679457426, 0.011206001974642277, 0.03118892014026642, -0.009689501486718655, 0.012393703684210777, 0.023686937987804413, -0.017084119841456413, 0.01418532244861126, -0.016507044434547424, 0.00828036293387413, -0.0012883547460660338, 0.0032192091457545757, 0.02949795499444008, -0.025203438475728035, 0.003276245668530464, 0.026371009647846222, -0.01866772212088108, -0.0005699459579773247, -0.007488561794161797, 0.03886536881327629, -0.01446714997291565, 0.007065820507705212, 0.0008756786119192839, -0.004801134578883648, 0.025230279192328453, 0.030786309391260147, 0.03242359310388565, -0.024505579844117165, 0.003868419211357832, -0.013104982674121857, -0.010756419971585274, 0.00010290690988767892, 0.024505579844117165, -0.009877386502921581, 0.005522478837519884, -0.018614040687680244, 0.011648873798549175, 0.017245164141058922, -0.03465137258172035, 0.006069358438253403, 0.010776550509035587, 0.017661195248365402, 0.04015372321009636, -0.007649606093764305, 0.007495271973311901, 0.03717439994215965, 0.019285060465335846, -0.019754773005843163, 0.02655889466404915, 0.05840541422367096, -0.029256388545036316, -0.010501433163881302, -0.026330748572945595, 0.019741352647542953, 0.02654547430574894, 0.01248764619231224, 0.050326354801654816, 0.029658999294042587, -0.0006294988561421633, -0.01699017733335495, -0.01837247423827648, 0.018050385639071465, -0.005364789627492428, 0.017043858766555786, 0.007293966598808765, 0.03387299180030823, 0.011910570785403252, 0.014480570331215858, -0.010628926567733288, 0.02215701714158058, 0.012534617446362972, 0.026048921048641205, 0.03467821329832077, 0.016668088734149933, 0.008085767738521099, 0.027256755158305168, -0.02653205394744873, 0.0196608304977417, -0.03827487304806709, 0.032101504504680634, 0.04423351213335991, -0.033497221767902374, 0.008099188096821308, 0.006052582990378141, -0.010769840329885483, -0.012266210280358791, 0.011501249857246876, 0.011957542039453983, 0.03312145173549652, 0.03424876183271408, 0.004348197020590305, 0.014842920005321503, 0.0006831802893429995, -0.017204903066158295, -0.010682608000934124, -0.0044790455140173435, -0.01771487668156624, -0.019714511930942535, -0.016668088734149933, -0.019566887989640236, -0.0112395528703928, -0.05276886001229286, -0.017473310232162476, 0.01403769850730896, -0.014064539223909378, 0.005059476476162672, 0.012910387478768826, 0.0460049994289875, 0.02917586639523506, 0.006817543879151344, -0.011836758814752102, -0.02245226502418518, 0.023834561929106712, -0.001779875485226512, 0.034490328282117844, -0.006106264423578978, 0.032638318836688995, 0.03033001720905304, 0.008173000067472458, -0.003935521002858877, -0.002878667553886771, 0.008830597624182701, -0.03016897290945053, 0.007032269611954689, -0.0342756025493145, -0.015111327171325684, -0.03763069212436676, 0.027753308415412903, 0.00010841136099770665, -0.017875920981168747, 0.0220362339168787, 0.02820960059762001, 0.02949795499444008, 0.001870462903752923, -0.007575794123113155, 0.030571583658456802, -0.009676081128418446, -0.010716158896684647, -0.0003877226263284683, 0.016600986942648888, -0.00034830032382160425, 0.018788505345582962, 0.013192215003073215, 0.01446714997291565, 0.0029222837183624506, -0.024317694827914238, 0.0013219056418165565, -0.014990543946623802, 0.0250021331012249, 0.0034356126561760902, -0.012407124042510986, -0.016802292317152023, 0.0477764867246151, 0.019580308347940445, 0.02007686160504818, 0.016211796551942825, 0.01739278808236122, 0.0016574145993217826, -0.029014822095632553, -0.01658756658434868, -0.02360641583800316, -0.034060876816511154, 3.9396101783495396e-05, 0.01431952603161335, -0.001508113113231957, 0.02498871274292469, 0.035295549780130386, 0.00162386370357126, -0.03999267891049385, 0.003391996491700411, -0.018305372446775436, 0.009421093389391899, -0.01208503544330597, 0.013729030266404152, -0.03840907663106918, 0.02920270711183548, -0.010783260688185692, 0.024371376261115074, 0.015929969027638435, 0.0015307599678635597, 0.02360641583800316, -0.00913926586508751, 0.020023180171847343, 0.014614773914217949, 0.031001035124063492, 0.007099371403455734, 0.031806256622076035, -0.017379367724061012, 0.03577868267893791, -0.030920512974262238, 0.03132312372326851, 0.006958457641303539, -0.001818459015339613, 0.0012422222644090652, -0.028102237731218338, 0.0021975841373205185, -0.01143414806574583, -0.02062709629535675, 0.0046971263363957405, -0.0186945628374815, 0.006700115744024515, 0.03953638672828674, 0.011541510932147503, -0.004858171101659536, -0.018761664628982544, 0.007441590540111065, -0.012923807837069035, -0.004928627982735634, 0.0029826753307133913, 0.0025498687755316496, -0.020130543038249016, 0.053386200219392776, 0.03003476932644844, -0.0004216929373797029, 0.026048921048641205, -0.047105468809604645, -0.019419264048337936, 0.04291831701993942, -0.01614469476044178, -0.035188186913728714, -0.005559384822845459, -0.026344168931245804, -0.003626852761954069, 0.011414017528295517, -0.0028451166581362486, -0.0005376532208174467, 0.0028987980913370848, -0.0012682242086157203, 0.0006194335874170065, -0.005841212347149849, -0.0041066305711865425, 0.06941010802984238, -0.01390349492430687, 0.010575245134532452, 0.0044891107827425, 0.026317328214645386, 0.011138900183141232, 0.014440309256315231, 0.008300493471324444, 0.02527054026722908, 0.04305252060294151, -0.033201973885297775, 0.03287988528609276, 0.053144630044698715, 0.008830597624182701, -0.0029206061735749245, -0.012058194726705551, -0.0003143300418742001, 0.004757517948746681, 0.03795278072357178, 0.006076068617403507, -0.0027931127697229385, -0.04310620203614235, -0.008112608455121517, 0.0019157566130161285, -0.011830048635601997, -0.03143048658967018, 0.006800768431276083, -0.02458610199391842, -0.0001799167221179232, 0.006263953633606434, -0.00676721753552556, 0.00918623711913824, 0.016091013327240944, 0.00933386106044054, -0.015272371470928192, -0.014655034989118576, 0.0026907825376838446, -0.017352527007460594, 0.03988531604409218, 0.006998718716204166, -0.028692733496427536, 0.013004329986870289, -0.04291831701993942, -0.038086988031864166, -0.009555297903716564, 0.027538582682609558, 0.010890623554587364, -0.013742450624704361, 0.022680411115288734, -0.013715609908103943, -0.02820960059762001, -0.014520831406116486, -0.007676446810364723, 0.004972244147211313, -0.025606049224734306, 0.010045140981674194, 0.017084119841456413, 0.02272067219018936, -0.031779415905475616, -0.028451167047023773, 0.009944488294422626, -0.017312265932559967, -0.050755806267261505, -0.006307569798082113, 0.020170804113149643, -0.00926004908978939, -0.014077959582209587, -0.013427072204649448, -0.019446104764938354, -0.00856219045817852, -0.009192947298288345, -0.026907825842499733, 0.04168364405632019, 0.011970962397754192, -0.022559627890586853, 0.017231743782758713, -0.0220362339168787, 0.005093027371913195, -0.016802292317152023, -0.03304092958569527, -0.019030071794986725, -0.01713780127465725, -0.015178428962826729, 0.048071734607219696, -0.01866772212088108, -0.00425089942291379, -0.011353625915944576, 0.027015188708901405, 0.0028602145612239838, 0.05711705982685089, -0.0011356980539858341, -0.003343347692862153, 0.024196911603212357, 0.007636185735464096, 0.0028216310311108828, 0.03430244326591492, 0.013970596715807915, -0.03328249603509903, -0.00554596446454525, 0.00792472343891859, 0.010729579254984856, -0.01103153731673956, -0.003536265343427658, 0.000638725352473557, -0.02093576453626156, 0.011380466632544994, -0.0068578049540519714, -0.01711096055805683, -0.004271029960364103, 0.015057645738124847, -0.00801195576786995, -0.017325686290860176, 0.021808087825775146, -0.030222654342651367, -0.019030071794986725, -0.02599523961544037, -0.027860671281814575, -0.035859204828739166, 0.03191361948847771, -0.02706887014210224, 0.004193862900137901, -0.004519306588917971, 0.028048556298017502, 0.007106081582605839, 0.012527907267212868, 0.03304092958569527, -0.01024644635617733, 0.006468614097684622, -0.008830597624182701, 0.008052216842770576, 0.006565911695361137, 6.752119224984199e-05, -0.024800827726721764, 0.02880009636282921, 0.009320440702140331, 0.009434513747692108, -0.004049594048410654, -0.01501738466322422, 0.029417432844638824, -0.00252806069329381, 0.002090221270918846, 0.01312511321157217, -0.007200024090707302, 0.004032818600535393, -0.023646676912903786, 0.002368693705648184, 0.01445372961461544, -0.014722136780619621, -0.015674982219934464, -0.0038147377781569958, -0.0195132065564394, 0.006307569798082113, 0.03073262795805931, 0.03226254880428314, 0.007958274334669113, 0.001987891038879752, 0.009951198473572731, -0.029685840010643005, 0.0014728846726939082, 0.02415665052831173, -0.004723967052996159, 0.018171168863773346, -0.04004636034369469, -0.00954858772456646, 0.039106935262680054, 0.022371742874383926, -0.001974470680579543, 0.03736228495836258, -0.025941558182239532, 0.039509546011686325, -0.0160239115357399, -0.017607513815164566, 0.015661561861634254, 0.028880618512630463, -0.0076160551980137825, -0.0076026348397135735, 0.01796986348927021, 0.015339473262429237, -0.04004636034369469, -0.00940767303109169, -0.037120718508958817, 0.011762946844100952, -0.023821141570806503, 0.007045689970254898, -0.0035396204330027103, -0.04729335382580757, 0.0065793320536613464, -0.012621849775314331, 0.013453912921249866, 0.004432074259966612, -0.0020180868450552225, -0.01488318108022213, 0.022277800366282463, -0.029149025678634644, 0.019056914374232292, -0.02019764482975006, -0.010373939760029316, 0.02005002088844776, 0.028263282030820847, -0.001945952419191599, 0.007663026452064514, -0.012494356371462345, -0.01654730550944805, -0.030007928609848022, -0.008662843145430088, 0.004052949137985706, 0.0045293718576431274, 0.042032573372125626, 0.012809734791517258, 0.011206001974642277, 0.014775818213820457, 0.00890440959483385, -0.0011885407147929072, -0.006367961410433054, 0.025726832449436188, 0.013058011420071125, 0.0014644969487562776, 0.021821508184075356, 0.013178794644773006, -0.027484901249408722, 0.0005502348067238927, -0.014655034989118576, 0.019754773005843163, -0.03690599277615547, 0.01741962879896164, 0.007649606093764305, 0.04380406066775322, 0.016117854043841362, 0.032799363136291504, -0.018332213163375854, 0.006505520083010197, 0.011575061827898026, -0.013916915282607079, -0.003210821421816945, 0.013359970413148403, -0.004378392826765776, -0.022250959649682045, 0.004167022183537483, 0.010682608000934124, -0.014842920005321503, -0.025793934240937233, 0.00568016804754734, -0.012172267772257328, 0.00575398001819849, -0.00043700053356587887, 0.009676081128418446, 0.036718107759952545, -0.021244432777166367, -0.016346000134944916, -0.026371009647846222, 0.020278166979551315, -0.03840907663106918, 0.0020684131886810064, 0.015218690037727356, 0.014104800298810005, -0.01743304915726185, -0.018010124564170837, -0.010065271519124508, -0.009367411956191063, -0.0038784844800829887, -0.0008391920127905905, -0.006099554244428873, 0.0017463245894759893, -0.029658999294042587, 0.026840724050998688, 0.035295549780130386, -0.005559384822845459, -0.02344537153840065, -0.04208625480532646, 0.013722320087254047, -0.018345633521676064, -0.018627461045980453, -0.0024089550133794546, 0.0023418529890477657, -0.035456594079732895, 0.012776183895766735, -0.0016431554686278105, -0.006904776208102703, 0.017929602414369583, 0.025928137823939323, -0.013326418586075306, 0.00946806464344263, 0.0011625387705862522, -0.025498686358332634, 0.017862500622868538, -0.009998169727623463, -0.007273836061358452, 0.039214298129081726, 0.025780513882637024, -0.01686939410865307, 0.033336177468299866, 0.0370938777923584, 0.020600255578756332, -0.0012942261528223753, 0.0010300127323716879, 0.01799670420587063, -0.010071981698274612, 0.006159945856779814, -0.006488744635134935, -0.019325321540236473, 0.03253095597028732, -0.004717256873846054, 0.013071431778371334, 0.015970230102539062, -0.0020315072033554316, -0.010253156535327435, 0.015768924728035927, 0.02709571085870266, 0.005888183601200581, 0.0092734694480896, 0.02596839889883995, -0.003345025237649679, -0.030142132192850113, -0.02850484848022461, -0.0007297321571968496, 0.034490328282117844, 0.00435490719974041, 0.005800951272249222, 0.010910754092037678, 0.03373878821730614, -0.013286157511174679, 0.03913377597928047, 0.0217409860342741, -0.03690599277615547, 0.01952662691473961, 0.02021106518805027, 0.007515402510762215, -0.025941558182239532, -0.016815712675452232, 0.01865430176258087, 0.02234490215778351, 0.00021975842537358403, 0.035725001245737076, -0.01474897749722004, -0.040475811809301376, 0.007481851615011692, 0.010145793668925762, 0.012192398309707642, 0.011554931290447712, -0.037577010691165924, 0.007575794123113155, -0.02219727821648121, 0.03438296541571617, 0.02612944319844246, -0.0023150122724473476, 0.03352406248450279, 0.014681875705718994, 0.021928871050477028, 0.012460805475711823, 0.008253522217273712, 0.04420667141675949, 0.022546207532286644, -0.004935338161885738, -0.0218886099755764, 0.007676446810364723, -0.021593362092971802, 0.00023129154578782618, -0.039241138845682144, 0.007642895914614201, -0.038113828748464584, 0.005035990849137306, 0.05674128979444504, 0.012950648553669453, 0.02501555345952511, 0.016923075541853905, -0.05292990431189537, -0.012722502462565899, -0.026867564767599106, 0.016627827659249306, 0.012407124042510986, 0.027458060532808304, 0.004754162859171629, 0.0009436191758140922, -0.025874456390738487, 0.014426888898015022, 0.021593362092971802, -0.010776550509035587, 0.0003300570242572576, -0.009971329011023045, -0.025887876749038696, -0.0066061727702617645, -0.05711705982685089, 0.0035262000747025013, -0.0251497570425272, 0.02092234417796135, -0.018063805997371674, 0.012789604254066944, 0.014386627823114395, 0.021647043526172638], [0.031211884692311287, 0.05773063004016876, 0.03908424451947212, 0.012565495446324348, 0.0006895410479046404, 0.03300334885716438, -0.013625236228108406, -0.005983118899166584, 0.012748426757752895, 0.05884083732962608, -0.024159561842679977, 0.031716521829366684, -0.038327284157276154, 0.012508723884820938, -0.013511693105101585, 0.034441571682691574, 0.021661601960659027, 0.02778034284710884, -0.013486460782587528, 0.020122455433011055, 0.057982951402664185, 0.030177375301718712, -0.004119110759347677, -0.038781460374593735, -0.03623303771018982, -0.03224639222025871, 0.05990057811141014, 0.006553991232067347, 0.0379740372300148, -0.040749549865722656, 0.06373582780361176, -0.009625976905226707, 0.008698703721165657, -0.033785540610551834, 0.035198528319597244, -0.02722524106502533, -0.032498713582754135, 0.028259750455617905, 0.05164973810315132, 0.024979600682854652, 0.009272729977965355, -0.006730614695698023, -0.03267533704638481, -0.015580710023641586, -0.08235698193311691, 0.07367720454931259, -0.0037122461944818497, -0.0466790497303009, -0.015530246309936047, 0.007102785166352987, -0.0009036181145347655, 0.014634513296186924, 0.021510211750864983, -0.05727645754814148, 0.04037107154726982, 0.039538417011499405, -0.007720967289060354, 0.064240463078022, 0.006692766677588224, -0.02081633359193802, 0.012918742373585701, -0.030984796583652496, -0.015202231705188751, 0.02344045229256153, -0.013536924496293068, 0.0054027847945690155, 0.02256995253264904, 0.03015214391052723, -0.042566247284412384, 0.015252695418894291, 0.0384029820561409, 0.03343229368329048, 0.014937296509742737, -0.019605200737714767, -0.0038667917251586914, -0.04705752804875374, -0.019895369186997414, 0.0026698524598032236, -0.012647499330341816, 0.014155106619000435, -0.03633396327495575, 0.039538417011499405, -0.009569205343723297, 0.05833619832992554, -0.00905195064842701, -0.021207427605986595, -0.03822635859251022, -0.004056030884385109, -0.06045567989349365, 0.0033779232762753963, -0.04090094193816185, -0.0354003831744194, 0.0056897979229688644, 0.024172179400920868, 0.037696488201618195, -0.04546791687607765, 0.0425410158932209, -0.02386939525604248, -0.03406308963894844, 0.0429699569940567, 0.0002308326365891844, -0.002789704129099846, -0.026215964928269386, 0.02732616849243641, 0.05545976012945175, -0.015656406059861183, -0.040295373648405075, 0.01042078249156475, 0.004144342616200447, -0.014243418350815773, -0.05480372905731201, -0.011108352802693844, -0.02441188134253025, 0.08962377905845642, -0.03590502217411995, 0.002419110154733062, -0.07206235826015472, 0.019239338114857674, 0.03429017961025238, 0.02341522090137005, -0.019163642078638077, -0.025004832074046135, 0.022721342742443085, -0.06691505014896393, 0.00593580910935998, 0.008105753920972347, -0.03686383366584778, 0.03507236763834953, -0.03772171959280968, -0.027956966310739517, 0.08558666706085205, -2.000812310143374e-05, 0.04619964584708214, -0.05662042647600174, -0.015227463096380234, -0.0179903581738472, -0.03376030921936035, 0.003573470516130328, -0.006497219204902649, -0.04196068271994591, 0.030227839946746826, 0.01648905873298645, 0.02441188134253025, 0.03333136439323425, -0.04327274113893509, 0.023680156096816063, 0.02386939525604248, 0.07241560518741608, -0.022317633032798767, 0.015164383687078953, -0.01617366075515747, -0.00647829519584775, -0.015416702255606651, -0.027578487992286682, 0.012552879750728607, -0.05003489553928375, 0.061767738312482834, 0.07382859289646149, 0.010729873552918434, -0.013574772514402866, 0.0027786651626229286, -0.00282124406658113, -0.022191472351551056, -0.005352321080863476, 0.017271248623728752, 0.018633771687746048, -0.04360075667500496, -0.007948054932057858, -0.051599275320768356, -0.05359259620308876, -0.01595918834209442, -0.04998443275690079, -0.004440817981958389, 0.01090018916875124, -0.023389989510178566, 0.007260484620928764, -0.02299889363348484, -0.03317997232079506, 0.011076812632381916, -0.04218776896595955, 0.014180338941514492, -0.024777743965387344, -0.0967896431684494, -0.03789834305644035, -0.049757346510887146, 0.07039705663919449, -0.014949912205338478, 0.02626642771065235, -0.017056778073310852, 0.00840222928673029, 0.03146420419216156, 0.03277626261115074, 0.02485344000160694, 0.028612997382879257, -0.018583308905363083, 0.016110580414533615, -0.013461229391396046, 0.010647869668900967, 0.0070081655867397785, 0.008124678395688534, 0.022481640800833702, -0.023289062082767487, 0.06302933394908905, -0.004125418607145548, -0.015176999382674694, -0.04130465164780617, 0.015366238541901112, 0.022368095815181732, 0.002966327592730522, 0.009241190738976002, -0.010679409839212894, -0.02515622414648533, -0.003614472458139062, 0.019996296614408493, -0.0075064958073198795, 0.01737217605113983, -0.005235623102635145, 0.013625236228108406, 0.012073473073542118, 0.05283563956618309, 0.013082750141620636, 0.04165789857506752, 0.0200593750923872, -0.023263828828930855, -0.031060492619872093, -0.00786605104804039, 0.0019160488154739141, -0.03915993869304657, 0.030656781047582626, -0.04847051575779915, 0.017170321196317673, 0.0032044537365436554, -0.014331730082631111, -0.014924679882824421, 0.01280519925057888, -0.025130990892648697, -0.011808537878096104, -0.014886832796037197, -0.03731800988316536, -0.018709467723965645, 0.014470505528151989, -0.008067905902862549, 0.02995028905570507, 0.04342413321137428, -0.0004770409723278135, -0.01595918834209442, -0.02656921185553074, -0.017170321196317673, 0.013852323405444622, 0.048773299902677536, 0.0525328554213047, -0.008963638916611671, 0.03317997232079506, -0.012779966928064823, -0.018923940137028694, -0.028663460165262222, -0.004384045954793692, -0.005998888984322548, 0.03275103121995926, 0.014722825028002262, 0.01744787208735943, -0.046275340020656586, -0.010660486295819283, -0.006137664429843426, -0.019567353650927544, -0.02712431363761425, 0.04609871655702591, -0.004115956835448742, -0.022305017337203026, 0.018696852028369904, -0.011209280230104923, 0.046603355556726456, 0.005554176401346922, -0.05313842371106148, -0.039992593228816986, 0.03025307133793831, 0.005308165214955807, -0.014899448491632938, -0.02235548011958599, -0.01854545995593071, -0.034668657928705215, -0.0023102976847440004, 0.02722524106502533, -0.02873915620148182, -0.0010589520679786801, 0.005948424804955721, -0.03804973512887955, 0.05934547260403633, -0.011896849609911442, -0.0036207803059369326, 0.05783155933022499, 0.03285196051001549, 0.006812618114054203, -0.004160112701356411, 0.047764021903276443, -0.000489262689370662, -0.037494633346796036, -0.020437855273485184, -0.001677922671660781, -0.01241410430520773, 0.03492097556591034, 0.02656921185553074, 0.000849211763124913, 0.007575883995741606, -0.037595558911561966, 0.010673101991415024, 0.051473114639520645, 0.008212990127503872, -0.05323934927582741, 0.014445274136960506, -0.029269026592373848, 0.06888314336538315, -0.017410025000572205, -0.015240078791975975, -0.08710058778524399, 0.048420052975416183, 0.03691429644823074, 0.04132988303899765, -0.006282747723162174, 0.03643489256501198, 0.030732477083802223, -0.008036366663873196, 0.049429330974817276, -0.023036742582917213, 0.04852098226547241, -0.005103155504912138, -0.029243795201182365, 0.007834510877728462, -0.03885715454816818, -0.04466049745678902, -0.02841114066541195, 0.03186791390180588, -0.00295844255015254, 0.015467166900634766, -0.002919017570093274, 0.0020122455898672342, 0.004535437561571598, 0.05177589878439903, 0.006610762793570757, 0.058083876967430115, 0.00982152484357357, -0.025799637660384178, -0.009070875123143196, 0.005040076095610857, -0.021333588287234306, 0.026972921565175056, 0.015000375919044018, -0.003740631975233555, -0.029798896983265877, 0.041834522038698196, 0.024979600682854652, 0.030631549656391144, -0.03514806181192398, -0.0018529690569266677, -0.07029612362384796, -0.030303535982966423, 0.019579969346523285, -0.014659744687378407, -0.01974397711455822, -0.024273106828331947, -0.05349167063832283, 0.007935438305139542, 0.021623754873871803, 0.031968843191862106, -0.0014169299975037575, -0.007752506993710995, -0.00890055950731039, 0.0312623493373394, 0.012231172993779182, -0.04342413321137428, 0.015568094328045845, 0.04198591411113739, 0.014129875227808952, -0.029647504910826683, -0.004743600729852915, -0.0017961972625926137, -0.01241410430520773, 0.04122895747423172, 0.005150465294718742, -0.0056204102002084255, 0.0312623493373394, 0.04143081232905388, 0.03714138641953468, 0.03741893544793129, 0.03418925032019615, 0.041153259575366974, -0.02808312699198723, -0.0028732847422361374, -0.013473845086991787, 0.00427996413782239, -0.025004832074046135, 0.015757333487272263, -0.03348275646567345, 0.007929130457341671, 0.025421159341931343, 0.02148497849702835, 0.060707997530698776, 0.011102044023573399, 0.05344120413064957, -0.03277626261115074, -0.00013552300515584648, -0.011102044023573399, -0.017006313428282738, -0.01918887533247471, -0.017182936891913414, -0.021775146946310997, -0.03070724569261074, -0.010925421491265297, -0.008080522529780865, 0.02268349565565586, 0.031842682510614395, 0.020425239577889442, 0.0379740372300148, 0.008376996964216232, 0.023352140560746193, -0.017094625160098076, 0.009676440618932247, 0.038882385939359665, -0.024361418560147285, -0.027628950774669647, 0.023074589669704437, 0.011120968498289585, 0.003816327778622508, -0.01888609118759632, -0.010143231600522995, 0.026771066710352898, 0.02116958051919937, -0.025572549551725388, -0.0038951775059103966, -0.05964825674891472, -0.05323934927582741, -0.006654918659478426, 0.09386274218559265, 0.01714508980512619, -0.03320520743727684, 0.008528389036655426, 0.019819673150777817, 0.010685717687010765, 0.03153989836573601, -0.041380345821380615, -0.00231975968927145, -0.02689722552895546, -0.001164610730484128, 0.032044537365436554, 0.01952950470149517, 0.021636370569467545, 0.006077738478779793, 0.028360677883028984, 0.04905085265636444, 0.005686643999069929, 0.017649726942181587, 0.030984796583652496, -0.032473478466272354, -0.009594437666237354, -0.047890182584524155, 0.0023544535506516695, 0.024273106828331947, -0.05677181854844093, 0.02841114066541195, -0.0296222735196352, 0.02450019307434559, 0.035627469420433044, 0.06641041487455368, 0.015429318882524967, -0.0035072367172688246, 0.006717998534440994, 0.033684611320495605, -0.025623014196753502, -0.012641191482543945, -0.02873915620148182, -0.00013916980242356658, -0.03446680307388306, 0.010168463923037052, 0.001957050757482648, 0.03181745111942291, 0.00345992692746222, 0.00885009579360485, -0.011701302602887154, 0.011903157457709312, -0.008976255543529987, 0.01907533034682274, 0.06030428782105446, -0.06191913038492203, -0.03323043882846832, 0.027603719383478165, 0.029899824410676956, 0.04748647287487984, -0.0023923013359308243, -0.01768757589161396, -0.005368090700358152, -0.06186866760253906, -0.02092987671494484, 0.031312812119722366, -0.01334768533706665, 0.00212736614048481, -0.015101303346455097, 0.0008634047117084265, -0.03323043882846832, 0.04087571054697037, -0.018520228564739227, 0.05727645754814148, -0.07281932234764099, 0.010155847296118736, -0.004456587601453066, 0.013688316568732262, -0.010635253973305225, 0.003016791306436062, -0.0029615964740514755, -0.03605641424655914, 0.016022268682718277, -0.04016921669244766, -0.020564014092087746, 0.03804973512887955, 0.02919333055615425, -0.016135811805725098, 0.020778484642505646, 0.006591838784515858, 0.006787386257201433, -0.01658998616039753, 0.022380711510777473, -0.03774695098400116, -0.000671405578032136, -0.018709467723965645, 0.03456772863864899, -0.034340642392635345, 0.004056030884385109, 0.007550651673227549, -0.011455290950834751, -1.5646746760467067e-05, -0.011783306486904621, -0.006386829540133476, -0.015580710023641586, -0.03623303771018982, 0.02040000632405281, -0.03565270081162453, 0.0005767858820036054, 0.0017000006046146154, -0.014470505528151989, 0.013234141282737255, -0.00014961739361751825, -0.0037753258366137743, -0.006598147097975016, -0.0010195272043347359, 0.028789618983864784, 0.006304825656116009, 0.04049723222851753, 0.05177589878439903, 0.03317997232079506, 0.0019270877819508314, -0.015542862005531788, 0.003598702372983098, -0.01930241845548153, 0.016110580414533615, -0.012773659080266953, -0.01994583196938038, 0.014584049582481384, 0.016526907682418823, -0.021396666765213013, 0.00420426856726408, 0.01583302952349186, -0.0016109003918245435, 0.008055290207266808, 0.006084046326577663, 0.023566612973809242, -0.03678813949227333, 0.009897219948470592, 0.00845269300043583, 0.010155847296118736, -0.006951393559575081, 0.00014025399286765605, -0.016249356791377068, 0.022519487887620926, 0.025433775037527084, -0.019176257774233818, 0.054955121129751205, -0.00040016247658059, 0.017611879855394363, -0.07186050713062286, 0.02702338621020317, -0.009663824923336506, -0.025673476979136467, 0.015618558041751385, 0.005118925590068102, -0.023617075756192207, -0.028688691556453705, 0.014987760223448277, 0.014584049582481384, -0.019706128165125847, -0.032044537365436554, 0.01758664846420288, 0.0235539972782135, -0.028032662346959114, 0.011146199889481068, 0.02593841217458248, 0.01383970770984888, 0.03757032752037048, -0.011594067327678204, 0.01035770308226347, -0.02453804202377796, 0.0351228304207325, -0.005503712221980095, -0.015555478632450104, -0.01187792606651783, 0.003933025524020195, -0.013234141282737255, 0.01746048778295517, 0.035627469420433044, 0.0037027841899544, 0.022380711510777473, 0.03751986473798752, 0.0010983769316226244, 0.02593841217458248, -0.017939895391464233, 0.008370689116418362, -0.03895808383822441, -0.0030372922774404287, -0.015908725559711456, -0.010509094223380089, 0.03905900940299034, -0.02279703877866268, -0.008875327184796333, -0.0007250234484672546, -0.00691985385492444, -0.022166240960359573, 0.00992245227098465, 0.001766234403476119, -0.018368836492300034, -0.04178405925631523, 0.03946272283792496, -0.013789243996143341, -0.018141750246286392, 0.0036365503910928965, -0.003188683884218335, -0.03398739546537399, -0.010035996325314045, 0.00791651476174593, -0.0033179973252117634, 0.004459741525352001, 0.01144267525523901, -0.012325792573392391, 0.050060126930475235, 0.02843637391924858, 0.025862718001008034, -0.0342649482190609, 0.030025983229279518, 0.029597042128443718, -0.03461819142103195, 0.002792858052998781, -0.011171432211995125, -0.004065493121743202, 0.03275103121995926, 0.017826350405812263, -0.008162525482475758, -0.001726809423416853, 0.003245455678552389, -0.012918742373585701, -0.021977001801133156, 0.010439706966280937, -0.010774029418826103, 0.0329781174659729, -0.04178405925631523, 0.020740637555718422, -0.00594211695715785, -0.005440632812678814, 0.033911701291799545, 0.0077398912981152534, 0.03565270081162453, -0.012540264055132866, -0.008326533250510693, 0.018696852028369904, -0.0429699569940567, 0.011253436096012592, 0.020854180678725243, -0.005002228077501059, -0.005320780910551548, -0.01074879802763462, -0.024462345987558365, 0.03734324127435684, -0.03603117913007736, 0.060253825038671494, -0.037923574447631836, -0.023730620741844177, -0.0046395193785429, -0.0351228304207325, -0.001864008023403585, -0.029369954019784927, 0.017334328964352608, -0.007575883995741606, 0.017548799514770508, 0.024273106828331947, 0.0029931364115327597, 0.003346383338794112, -0.009682749398052692, 0.010351395234465599, -0.0006761365802958608, 0.04413062706589699, 0.005074769724160433, 0.012067165225744247, -0.051674969494342804, -0.0959317535161972, 0.009108723141252995, 0.03709091991186142, -0.05757923796772957, -0.04569500684738159, -0.057882022112607956, -0.013852323405444622, -0.017712807282805443, 0.0006611551507376134, 0.06888314336538315, -0.022935815155506134, -0.009272729977965355, 0.02181299403309822, -0.045821163803339005, 0.0034441570751369, -0.00023733773559797555, 0.011676070280373096, 0.01725863292813301, -0.0026793144643306732, -0.00444712582975626, 0.020576629787683487, -0.029546577483415604, 0.020097224041819572, -0.017195552587509155, 0.0010818184819072485, 0.017624495550990105, -0.009304270148277283, 0.009808908216655254, 0.0296222735196352, -0.01725863292813301, 0.01647644303739071, 0.040320608764886856, 0.003646012395620346, -0.003289611544460058, 0.011171432211995125, -0.026720602065324783, 0.0033053813967853785, -0.022910581901669502, 0.01824267767369747, -0.02158590778708458, 0.013044902123510838, -0.004910762421786785, -0.051826361566782, -0.0074055683799088, -0.03416401892900467, 0.03265010192990303, -0.004015028942376375, 0.00013808562653139234, 0.015896109864115715, 0.0179146621376276, 0.00080032495316118, -0.018091285601258278, 0.009966608136892319, -0.014584049582481384, -0.008686088025569916, 0.06661226600408554, -0.0041916524060070515, -0.006371059454977512, 0.011959929950535297, 0.0044692037627100945, 0.012943974696099758, -0.006837849970906973, 0.003004175378009677, 0.01800297386944294, -0.00026532940682955086, 0.01930241845548153, -0.0038352517876774073, -0.02428572252392769, -0.012010393664240837, 0.0479658767580986, -0.008862711489200592, 0.019024867564439774, 0.018595924600958824, 0.007386644370853901, 0.021396666765213013, 0.009916144423186779, -0.01853284426033497, -0.013764011673629284, -0.011266051791608334, -0.005200929474085569, -0.025799637660384178, 0.05616625398397446, 0.00807421375066042, -0.010597405955195427, -0.010136923752725124, 0.009115030989050865, 0.0009801023406907916, 0.020980341359972954, -0.003841559635475278, 0.00615343451499939, 0.013057517819106579, -0.04100186750292778, -0.0034756967797875404, -0.006043044850230217, -0.01693061739206314, -0.033785540610551834, 0.015189615078270435, -0.0058474973775446415, -0.04970688000321388, 0.015883492305874825, 0.036510586738586426, -0.011057889088988304, 0.001923933858051896, -0.009531357325613499, 0.002911132760345936, 0.06151542067527771, -0.007695735432207584, -0.06287794560194016, -0.02256995253264904, -0.022305017337203026, -0.042364392429590225, 0.004308350384235382, 0.025433775037527084, 0.010168463923037052, 0.010528018698096275, -0.005702413618564606, 0.01046493835747242, -0.0065098353661596775, 0.01275473553687334, -0.001714193494990468, 0.008553620427846909, 0.020526167005300522, 0.0014263918856158853, 0.022822270169854164, 0.01954212225973606, 0.012533956207334995, -0.0010865494841709733, -0.03343229368329048, 0.012761043384671211, 0.03429017961025238, -0.019668281078338623, 0.037999268621206284, -0.010250466875731945, 0.027704646810889244, 0.014256034046411514, -0.005532098468393087, 0.019365498796105385, -0.012597035616636276, 0.006844158284366131, 0.03166605904698372, 0.04218776896595955, 0.0246263537555933, -0.01574471779167652, -0.021295739337801933, -0.024588504806160927, -0.02450019307434559, -0.0041916524060070515, 0.008862711489200592, 0.02050093375146389, -0.00039917684625834227, 0.01973136141896248, -0.04708276316523552, -0.02952134609222412, 0.0024995370768010616, -0.023049358278512955, 0.008294993080198765, -0.030555853620171547, -0.000767996534705162, -0.033255670219659805, -0.005913731176406145, -0.026644906029105186, 0.007847126573324203, 0.0028717077802866697, -0.004828758537769318, 0.013070134446024895, 0.02995028905570507, -0.010206311009824276, 0.0429699569940567, 0.037040457129478455, -0.012174401432275772, 0.017094625160098076, 0.03567793220281601, -0.030833404511213303, 0.015795180574059486, -0.0118842339143157, -0.035955484956502914, -0.04132988303899765, -0.028562532737851143, 0.047133225947618484, -0.0024553812108933926, 0.012899818830192089, 0.03265010192990303, 0.015315774828195572, 0.04175882786512375, -0.005286087282001972, -0.010458630509674549, -0.036838602274656296, -0.013625236228108406, 0.040850479155778885, 0.07125493884086609, 0.017750654369592667, -0.01486160047352314, -0.001670037629082799, 0.0007794297416694462, 0.0409766361117363, -0.01040816679596901, 0.008667164482176304, -0.027200009673833847, -0.02624119631946087, -0.001289193402044475, 0.011070504784584045, -0.027956966310739517, -0.005383860785514116, -0.03663674741983414, 0.019718745723366737, 0.0033936931286007166, 0.0028354369569569826, 0.011619298718869686, 0.004894992336630821, -0.0017410024302080274, 0.024386649951338768, 0.07014473527669907, -0.005784417502582073, -0.027931734919548035, 0.002158906077966094, 0.02526976726949215, -0.025774406269192696, 0.005563638173043728, 0.012843047268688679, 0.025761788710951805, -0.005595177877694368, 0.03807496652007103, 0.0041222646832466125, 0.04498851299285889, 0.005437478423118591, -0.00615343451499939, 0.013663084246218204, 0.022393329069018364, 0.007828203029930592, 0.03794880583882332, -0.020639710128307343, 0.0030215224251151085, 0.013713547959923744, -0.0007266004104167223, 0.01964304968714714, -0.0113859036937356, 0.03381077200174332, -0.020198151469230652, 0.005913731176406145, -7.73220308474265e-05, -0.004882376175373793, -0.0024348802398890257, 0.036838602274656296, 0.016186276450753212, -0.03224639222025871, -0.030505390837788582, -0.004081262741237879, 0.007594807539135218, 0.01824267767369747, 0.013246757909655571, -0.004891838412731886, 0.02778034284710884, -0.02395770698785782, 0.030076447874307632, 0.00477198651060462, -0.03320520743727684, -0.004298888146877289, 0.022090544924139977, -0.015530246309936047, 0.027830807492136955, 0.010244159027934074, 0.032599639147520065, 0.008963638916611671, 0.025219302624464035, -0.012943974696099758, 0.04047199711203575, 0.034542497247457504, 0.003873099572956562, -0.02081633359193802, -0.028284981846809387, 0.01681707426905632, 0.009998148307204247, -0.0027077002450823784, 0.06721783429384232, 0.03229685500264168, -0.022431176155805588, -0.021724682301282883, -0.0014429503353312612, -0.010054919868707657, -0.018255293369293213, 0.009342118166387081, -0.0011086274171248078, 0.037267543375492096, 0.026493515819311142, 0.01095065288245678, 0.0055699460208415985, 0.018267909064888954, 0.02040000632405281, 0.026493515819311142, 0.029849359765648842, 0.0016826536739245057, 0.002830705838277936, 0.027805574238300323, -0.025988876819610596, 0.011953622102737427, -0.0055699460208415985, 0.05707460269331932, 0.028814852237701416, -0.029798896983265877, -0.004737292882055044, -0.020917261019349098, -0.0057276454754173756, 0.0015020876890048385, 0.014748056419193745, 0.03005121648311615, 0.024601120501756668, 0.0017410024302080274, 0.023377373814582825, 0.007519111968576908, 0.007550651673227549, -0.012786274775862694, -0.014571432955563068, -0.04786495119333267, -0.017485719174146652, -0.014155106619000435, -0.012395180761814117, -0.012748426757752895, -0.00943042989820242, -0.04730984941124916, -0.011890541762113571, 0.008534696884453297, -0.02494175173342228, 0.010010764002799988, 0.009140262380242348, 0.02135881967842579, 0.032927654683589935, 0.019933216273784637, -0.008597776293754578, -0.014306498691439629, 0.03767125681042671, -0.02603934146463871, 0.01661521941423416, 0.0027282012160867453, -0.01042078249156475, 0.04912654682993889, 0.024033403024077415, 0.001233210088685155, -2.5108716727118008e-05, -0.0026635443791747093, -0.013133213855326176, 0.006238591857254505, -0.04014398530125618, -0.038579605519771576, -0.04766309633851051, 0.022267168387770653, 0.007449724245816469, -0.01436957810074091, 0.0050716158002614975, 0.0022219859529286623, 0.009796292521059513, -0.0029947133734822273, -0.010155847296118736, 0.0287643875926733, -0.02699815295636654, 0.01594657264649868, -0.005137849599123001, 0.013183677569031715, -0.011959929950535297, 0.007828203029930592, -0.018179597333073616, 0.0050148437730968, 0.01711985655128956, -0.022292399778962135, -0.005311319138854742, -0.014823752455413342, 0.020702790468931198, -0.010155847296118736, -0.02428572252392769, 0.0012434605741873384, 0.03918517008423805, -0.032397784292697906, 0.00786605104804039, -0.007266792934387922, 0.002926902612671256, 0.012887203134596348, 0.003087756223976612, -0.011846385896205902, -0.015971804037690163, -0.015441934578120708, -0.011941005475819111, 0.034441571682691574, -0.0092790387570858, 0.0047309850342571735, 0.0028795928228646517, 0.020892029628157616, -0.010944345034658909, -0.009890912100672722, -0.02692245878279209, -0.0076263477094471455, -0.003299073548987508, 0.007437108084559441, -0.0355517752468586, 0.017384791746735573, 0.008055290207266808, 0.018911322578787804, -0.007146941032260656, 0.009417814202606678, 0.006121894344687462, -0.02692245878279209, 0.021674219518899918, -0.007241560611873865, 0.018797779455780983, -0.0016179968370124698, 0.02147236280143261, -0.028587764129042625, 0.035299453884363174, -0.026392588391900063, 0.028032662346959114, 0.02451280876994133, 0.012193324975669384, -0.009247498586773872, -0.009859372861683369, -0.0041222646832466125, 0.013082750141620636, -0.013574772514402866, 0.01607273332774639, -0.019012251868844032, 0.007720967289060354, 0.03676290810108185, -0.007266792934387922, -0.023882010951638222, -0.014117258600890636, 0.0051946211606264114, -0.04589686170220375, 0.0014295459259301424, -0.00787235889583826, 0.017498336732387543, -0.0019192028557881713, -0.0006016235565766692, 0.023579228669404984, -0.023516148328781128, 0.014281266368925571, -0.04741077497601509, -0.017864199355244637, 0.029218561947345734, -0.03782264515757561, -0.007802971173077822, -0.010919112712144852, -0.03580409288406372, -0.027300937101244926, -0.009827832691371441, -0.0033306132536381483, 0.014256034046411514, -0.00017258238221984357, -0.022860119119286537, -0.0040781088173389435, -0.009108723141252995, 0.0098152169957757, 0.07059890776872635, 0.0003392510407138616, -0.007531728129833937, 0.022393329069018364, 0.028587764129042625, -0.002450650092214346, 0.0027423943392932415, 0.01647644303739071, 0.006330057978630066, 0.0017599263228476048, -0.03815066069364548, 0.020475702360272408, 0.03822635859251022, -0.001398794469423592, -0.029470881447196007, -0.00450389739125967, 0.006522451061755419, 0.020412622019648552, 0.01954212225973606, 0.016690915450453758, -0.0041821906343102455, -0.05773063004016876, -0.008118369616568089, 0.004488127771764994, -0.03522375971078873, -0.03429017961025238, 0.021232660859823227, -0.0062102060765028, 0.0037217081990092993, -0.003746940055862069, 0.005159927532076836, 0.020210767164826393, 0.0200593750923872, 0.030328767374157906, -0.01790204644203186, 0.01046493835747242, -0.0053428588435053825, 0.0009603899088688195, 0.01616104505956173, 0.01713247410953045, 0.0007435531006194651, 0.005705567542463541, -0.014975144527852535, -0.008383304812014103, 0.00447235768660903, 0.00450389739125967, 0.024210026487708092, -0.015580710023641586, 0.019605200737714767, -0.022935815155506134, -0.01574471779167652, -0.00786605104804039, -0.010578482411801815, -0.014596665278077126, -0.01758664846420288, 0.0167035311460495, 0.01177699863910675, 0.01285566296428442, -0.03464342653751373, -0.024210026487708092, 0.03060631826519966, -0.004185344558209181, -0.045064207166433334, -0.0019018559250980616, -0.004983304068446159, 0.004951764363795519, -0.03153989836573601, -0.017094625160098076, -0.009960300289094448, -0.012401488609611988, -0.014697592705488205, -0.017649726942181587, 0.02060186117887497, 0.017738038673996925, -0.006046198774129152, 0.0046363649889826775, -0.03956364840269089, 0.01637551560997963, -0.025294998660683632, -0.029142865911126137, -0.04021967947483063, -0.019819673150777817, -0.015971804037690163, 0.0658048465847969, -0.02308720536530018, 0.017977742478251457, 0.004305196460336447, 0.03209500014781952, 0.01231317687779665, 0.04748647287487984, 0.012060857377946377, -0.017498336732387543, 0.011102044023573399, 0.007569575682282448, -0.015176999382674694, 0.031287580728530884, -0.002244063885882497, -0.037923574447631836, -0.013965867459774017, -0.006166050210595131, -0.002825974952429533, -0.015076071955263615, 0.013928019441664219, 0.014293882064521313, -0.01671614684164524, 0.026644906029105186, -0.015076071955263615, -0.021396666765213013, -0.006207052152603865, 0.002732932334765792, 0.005882191006094217, 0.003627088386565447, 0.03418925032019615, -0.025913180783391, -0.006140818353742361, 0.004816142376512289, -0.021093884482979774, -0.02125789225101471, -0.0006556356674991548, -0.012231172993779182, 0.014508353546261787, -0.016198892146348953, -0.0018103901529684663, 0.012224865145981312, -0.003056216286495328, 0.033053815364837646, -0.013965867459774017, -0.00425473228096962, 0.002020130632445216, 0.017485719174146652, 0.004563823342323303, 0.010572174564003944, -0.012243788689374924, 0.031842682510614395, 0.01800297386944294, 0.008244529366493225, -0.006989241577684879, -0.016943233087658882, 0.016400747001171112, -0.01177069079130888, 0.01854545995593071, 0.02778034284710884, -0.0027833960484713316, -0.018394069746136665, -0.035097599029541016, 0.0018845089944079518, -5.2730767492903396e-05, 0.005260854959487915, -0.0018056592671200633, -0.01394063513725996, -0.00807421375066042, 0.0037185540422797203, 0.017410025000572205, 0.028284981846809387, -0.016943233087658882, -0.027477560564875603, 0.012067165225744247, -0.014508353546261787, -0.011272359639406204, -0.007765123154968023, 0.007172172889113426, 0.018898706883192062, -0.017611879855394363, -0.002624119631946087, 0.06479556858539581, -0.0046174414455890656, 0.006528758909553289, 0.029016707092523575, -0.0027849730104207993, 0.0256987102329731, -0.03320520743727684, -0.02345306985080242, 0.024878673255443573, 0.027704646810889244, -0.033028583973646164, -0.018507612869143486, 0.021838225424289703, -0.002445919206365943, -0.048117268830537796, 0.012609651312232018, -0.009903528727591038, 0.010811877436935902, -0.01758664846420288, -0.016678297892212868, 0.00262885051779449, -0.02431095391511917, 0.015568094328045845, -0.01100742444396019, 0.04044676572084427, 0.008616700768470764, -0.007468648254871368, -0.011638223193585873, 0.02008460834622383, -0.03133804351091385, 0.0179903581738472, -0.02482820861041546, -0.009178110398352146, 0.014457889832556248, 0.02245640754699707, 0.0033779232762753963, 0.031615596264600754, -0.004532283637672663, -0.029269026592373848, -0.031060492619872093, 0.011959929950535297, -0.009827832691371441, 0.003314843401312828, 0.020803717896342278, 0.04130465164780617, -0.017082009464502335, 0.010282007046043873, 0.00564248813316226, 0.02820928581058979, 0.022961046546697617, -0.002538961824029684, -6.909209332661703e-05, -0.012161784805357456, 0.0015990728279575706, -0.0036176263820379972, -0.03915993869304657, 0.0007407933590002358, -0.015555478632450104, 0.03681337088346481, -0.03676290810108185, -0.005405938718467951, 0.029798896983265877, -0.001944434829056263, 0.011057889088988304, 0.040093518793582916, -0.013637851923704147, -0.0016227278392761946, 0.01693061739206314, -0.01867162063717842, -0.014394809491932392, 0.007172172889113426, -0.005295549053698778, -0.04314658045768738, 0.02808312699198723, -0.003097217995673418, -0.03855437412858009, -0.02873915620148182, 0.007140633184462786, -0.003141373861581087, 0.004390353802591562, -0.0018592770211398602, -0.008036366663873196, 0.012552879750728607, -0.024210026487708092, -0.003131912089884281, -0.023061973974108696, 0.014092027209699154, -0.021648986265063286, 0.0024884981103241444, -0.00518200546503067, 0.0002479824470356107, 0.007884974591434002, -0.0051567736081779, -0.017082009464502335, -0.0024916520342230797, -0.017283864319324493, -0.021333588287234306, -0.005383860785514116, 0.030959565192461014, -0.009657517075538635, 0.01952950470149517, 0.040825244039297104, -0.023793699219822884, -0.018709467723965645, -0.03201930597424507, 0.011070504784584045, 0.013183677569031715, -0.008156217634677887, 0.004131726920604706, -0.005957887042313814, -0.02178776264190674, 0.031413737684488297, 0.025547318160533905, 0.0026446206029504538, 0.021737297996878624, 0.007834510877728462, -0.008976255543529987, -0.014129875227808952, -0.018633771687746048, 0.0008082099375315011, 0.0034063090570271015, 0.012622267939150333, -0.011221895925700665, 0.020677557215094566, 0.015328390523791313, -0.012761043384671211, 0.03676290810108185, 0.00954397302120924, 0.015618558041751385, 0.006270132027566433, -0.002627273555845022, 0.02461373805999756, -0.022405944764614105, 0.031615596264600754, -0.0011251858668401837, -0.014672361314296722, 0.012067165225744247, 0.017384791746735573, 0.031186651438474655, -0.010439706966280937, -0.008667164482176304, -0.0024869211483746767, 0.014596665278077126, 0.04607348516583443, 0.025459006428718567, 0.004456587601453066, -0.012464568018913269, 0.0074434163980185986, -0.025471622124314308, -0.04799111187458038, -0.012300560250878334, 0.024374034255743027, -0.003352691186591983, 0.0067810784094035625, 0.0036807062570005655, 0.0346938893198967, 0.011562527157366276, 0.0016968465643003583, 0.013562156818807125, -0.028385909274220467, 0.04299519211053848, 0.01471020933240652, 7.086621189955622e-05, -0.0073929522186517715, -0.026670139282941818, -0.009651209227740765, 0.0068946219980716705, -0.012111321091651917, 0.04461003467440605, -0.03706568852066994, -0.020967725664377213, 0.010824493132531643, -0.0008539427653886378, 0.028234517201781273, 0.015076071955263615, -0.02255733497440815, -0.010534326545894146, -0.014066794887185097, -0.0034378489945083857, 0.02333952486515045, 0.0160601157695055, 0.01724601723253727, 0.03958887979388237, 0.013221525587141514, -0.002078479388728738, 0.016678297892212868, 0.01030723936855793, 0.02526976726949215, -0.012338408268988132, -0.01886085979640484, 0.02582486905157566, -0.0066233789548277855, 0.001083395560272038, -0.0287643875926733, 0.014924679882824421, -0.03136327490210533, 0.0003577807219699025, 0.046603355556726456, 0.018608540296554565, 0.009121338836848736, 0.0316912904381752, -0.0719614326953888, -0.005153619684278965, -0.01682968996465206, 0.021775146946310997, 0.002934787655249238, 0.013019670732319355, 0.010874956846237183, 0.005235623102635145, -0.008099446073174477, 0.010622638277709484, -0.027250472456216812, 0.007046013604849577, -0.03532468527555466, -0.01334768533706665, 0.015189615078270435, -0.006635994650423527, -0.056569963693618774, 0.007329872343689203, -0.027982197701931, 0.008490541018545628, -0.01714508980512619, 0.020740637555718422, 0.02942041866481304, 0.040850479155778885], [-0.012504789978265762, 0.004112313501536846, 0.017736101523041725, 0.0068713403306901455, -0.017820024862885475, -0.01172848604619503, -0.007102133706212044, 0.0282266978174448, 0.018827123567461967, 0.03891311585903168, -0.01726052723824978, 0.012945395894348621, 0.005556519143283367, -0.024212295189499855, -0.021191004663705826, 0.009959072805941105, -0.023051336407661438, 0.06529346853494644, -0.0071825613267719746, 0.020477643236517906, 0.05007511004805565, 0.014588922262191772, 0.056117694824934006, 0.015847792848944664, -0.06277572363615036, -0.03552815318107605, 0.03228306025266647, 0.03947261720895767, 0.0069482713006436825, -0.03687094897031784, 0.04243795946240425, -0.009777235798537731, -0.024813756346702576, -0.007958865724503994, 0.028982019051909447, 0.02990519255399704, -0.027611248195171356, 0.03860539197921753, 0.03541625291109085, -0.004070351365953684, -0.023177223280072212, 0.041850484907627106, -0.06367092579603195, -0.05818783864378929, -0.0352204293012619, 0.047417495399713516, 0.005553022027015686, -0.010742370039224625, -0.019022947177290916, 0.0032136193476617336, -0.04092731326818466, -0.018239649012684822, 0.02362482249736786, -0.03723462298512459, 0.028982019051909447, 0.017428377643227577, -0.017484325915575027, -0.011203956790268421, 0.013910530135035515, -0.05259285494685173, 0.014630884863436222, -0.03709474578499794, -0.04123503714799881, 0.04081541299819946, -0.018239649012684822, -0.01149769313633442, -0.03832564502954483, 0.02425425872206688, -0.03796197101473808, 0.0055984812788665295, 0.06165672838687897, 0.041878458112478256, -0.012525771744549274, -0.024953631684184074, 0.013127232901751995, -0.04529140144586563, 0.02562502957880497, 0.005455109756439924, -0.03807387128472328, -0.002173301763832569, 0.0106864208355546, -0.010469614528119564, 0.021960314363241196, 0.028870120644569397, -0.00430813804268837, 0.01491063367575407, -0.023610834032297134, 0.04162668436765671, -0.049068015068769455, -0.014064392074942589, -0.014162304811179638, 0.03936071693897247, -0.004948064219206572, 0.04103920981287956, 0.04372480511665344, -0.017414389178156853, 0.01378464326262474, -0.015735894441604614, -0.037682220339775085, 0.03264673426747322, 0.02288348600268364, 0.009035900235176086, 0.011141013354063034, -0.008378488942980766, 0.023135261610150337, -0.044564053416252136, -0.026240477338433266, 0.007525254040956497, -0.01914883404970169, -0.05863543972373009, -0.036283474415540695, -0.0012859721900895238, -0.011539655737578869, 0.09086254984140396, 0.0429135300219059, 0.010049991309642792, -0.020449668169021606, -0.025205405429005623, 0.023526910692453384, 0.007581204175949097, -0.006238407921046019, -0.009588404558598995, -0.00015615689335390925, -0.09304459393024445, -0.04573899880051613, -0.007441329304128885, -0.015386207029223442, -0.0030440213158726692, -0.032227110117673874, -0.024953631684184074, 0.02037973143160343, -0.008658238686621189, 0.01920478418469429, -0.036143600940704346, 0.0052033355459570885, -0.00146431231405586, -0.057460490614175797, -0.016715016216039658, -0.01686887815594673, -0.0044724908657372, 0.009938091039657593, -0.020925242453813553, 0.011805417016148567, 0.005657928064465523, -0.018855098634958267, 0.0067069875076413155, 0.023834634572267532, 0.06092938035726547, 0.005797802936285734, -0.009000930935144424, -0.04666217043995857, -0.01802983693778515, -0.013218151405453682, 0.009560429491102695, -0.012833495624363422, 0.002603416331112385, 0.025163443759083748, 0.06512562185525894, -3.526916407281533e-05, -0.002077138051390648, -0.002610409865155816, -0.054690971970558167, -0.009574417024850845, 0.002472283784300089, 0.017987875267863274, -0.019638394936919212, -0.05997823551297188, 0.039164893329143524, -0.05270475521683693, -0.04800496622920036, -0.039192866533994675, -0.011875354684889317, -0.01488265860825777, 0.03228306025266647, -0.002145326929166913, 0.010504583828151226, -0.020337767899036407, -0.05586592108011246, 0.030968239530920982, -0.025904778391122818, 0.0042591821402311325, -0.02556907944381237, -0.03888514265418053, -0.052117280662059784, -0.050746507942676544, 0.018337562680244446, -0.013686730526387691, 0.020995179191231728, -0.023834634572267532, 0.06216027960181236, 0.0013926266692578793, 0.06646841764450073, -0.011413768865168095, 0.03426928073167801, -0.029457593336701393, 0.025834841653704643, -0.011672536842525005, -0.028212709352374077, 0.08957570046186447, -0.01637931726872921, 0.029317719861865044, 0.012050198391079903, 0.0424099825322628, 0.0075951917096972466, -0.02754131145775318, -0.03163963928818703, 0.000405854923883453, 0.009994041174650192, 0.027988910675048828, -0.0143231600522995, -0.014588922262191772, -0.0994228720664978, -0.009903122670948505, 0.025303317233920097, -0.02505154348909855, 0.00023407142725773156, -0.011127025820314884, 0.0858830139040947, -0.011329843662679195, 0.002921631094068289, 0.017540276050567627, 0.029457593336701393, 0.02288348600268364, -0.005955161526799202, -0.023834634572267532, 0.034856755286455154, 0.033374082297086716, -0.05852353945374489, 0.021260941401124, -0.021358853206038475, -0.0073434170335531235, 0.005626456346362829, 0.005486581940203905, -0.009644354693591595, 0.02299538627266884, -0.003468890441581607, -0.04646634683012962, -0.010518571361899376, 0.011924310587346554, 0.025876803323626518, -0.009434542618691921, -0.0014188530622050166, -0.0018725714180618525, 0.009196755476295948, 0.009539448656141758, -0.0014940357068553567, -0.04092731326818466, 0.02548515424132347, 0.06607677042484283, 0.027890997007489204, 0.023442985489964485, -0.0066300565376877785, 0.0106024956330657, 0.01706470362842083, -0.00864425115287304, 0.004741749260574579, -0.009980053640902042, -0.02556907944381237, 0.039025016129016876, -0.0032922986429184675, -0.006451716646552086, 0.004441019147634506, -0.04431227594614029, 0.03457700461149216, -0.053404126316308975, -0.06859450787305832, 0.03312230855226517, -0.04724964499473572, -0.0702170580625534, 0.02685592509806156, -0.01940060965716839, 0.010546545498073101, 0.044955700635910034, -0.03966844081878662, -0.04294150695204735, -0.04962751269340515, -0.011364812031388283, -0.00924571231007576, 0.017931925132870674, 0.004640340339392424, -0.039304766803979874, -0.01351188775151968, 0.040423762053251266, 0.008784125559031963, -0.031024189665913582, 0.018757184967398643, -0.040787436068058014, 0.007930890657007694, -0.012232035398483276, 0.03163963928818703, 0.037542346864938736, 0.015470132231712341, -0.013323056511580944, -0.004304641392081976, 0.03980831429362297, 0.024128369987010956, -0.005636946763843298, -0.023708747699856758, -0.007902915589511395, -0.004192741587758064, 0.027443399652838707, 0.01975029520690441, -0.019568458199501038, 0.06120913103222847, -0.05947468429803848, -0.020099982619285583, -0.0011653304100036621, -0.01232994720339775, -0.030604565516114235, 0.0025020071770995855, -0.05785214155912399, 0.03709474578499794, 0.02328912355005741, 7.753205863991752e-05, -0.05385172739624977, -0.008993937633931637, 0.029177844524383545, 0.0043291193433105946, -0.026380352675914764, 0.009819197468459606, 0.03247888386249542, -0.03412940725684166, 0.03891311585903168, -0.015218357555568218, 0.0352204293012619, 0.026548201218247414, 0.0018883072771131992, 0.013588818721473217, -0.04406050220131874, -0.01493860874325037, 0.002989819971844554, 0.0061509860679507256, 0.024464070796966553, -0.02647826448082924, -0.040507689118385315, -0.02268766239285469, 0.006825881078839302, 0.04792104288935661, -0.03135988861322403, 0.05941873416304588, 0.025555090978741646, -0.007399367168545723, 0.024547994136810303, -0.013644768856465816, -0.003211870789527893, 0.026044653728604317, 0.04288555681705475, 0.02189037762582302, -0.015442157164216042, 0.015987668186426163, -0.019736308604478836, 0.019904157146811485, -0.03564004972577095, -0.016826916486024857, -0.08280576765537262, -0.0029251277446746826, -0.020841317251324654, 0.028380559757351875, -0.006626559887081385, -0.007060171104967594, 0.006934283766895533, 0.020044032484292984, 0.025639016181230545, 0.046298496425151825, -0.023219184949994087, 0.00895896926522255, 0.0035493182949721813, -0.008469407446682453, 0.02642231434583664, -0.009756254032254219, 0.04702584445476532, 0.05813188850879669, -0.012791533023118973, -0.0039025016594678164, -0.010182871483266354, -0.005525047425180674, 0.005500569008290768, 0.028240684419870377, -0.028128784149885178, 0.010987150482833385, 0.028352584689855576, 0.010133915580809116, 0.03301040828227997, -0.013980467803776264, 0.08375691622495651, 0.05013106018304825, -0.07715483754873276, -0.005738356150686741, -0.014560947194695473, 0.010784332640469074, -0.012427859008312225, -0.014588922262191772, 0.01028777752071619, -0.01028777752071619, 0.026688076555728912, 0.03418535366654396, 0.05790809169411659, 0.04836864024400711, 0.030940264463424683, -0.009812204167246819, 0.04733356833457947, -0.05852353945374489, -0.020505618304014206, -0.03835361823439598, -0.040423762053251266, -0.014644872397184372, -0.03421333059668541, -0.037486396729946136, 0.030492665246129036, 0.027387449517846107, 0.05281665548682213, 0.03012899123132229, 0.04411645233631134, -0.01700875349342823, 0.0066475411877036095, -0.005815287120640278, -0.0005721746128983796, 0.05936278775334358, 0.018841110169887543, -0.014435060322284698, 0.03737449645996094, 0.010203853249549866, -0.006014608312398195, 0.012420865707099438, -0.026030665263533592, 0.03155571222305298, 0.019554471597075462, -0.013274100609123707, 0.008168677799403667, -0.07586798816919327, -0.01928870938718319, 0.01485468354076147, -0.003944464027881622, 0.05659326910972595, -0.050270937383174896, -0.004475987516343594, 0.0570688433945179, -0.00322760664857924, -0.015078483149409294, -0.047893065959215164, 0.04254985600709915, -0.05133398249745369, 0.009574417024850845, 0.037682220339775085, -0.01495259627699852, 0.04512355104088783, 0.007483291905373335, 0.009840179234743118, -0.0075951917096972466, 0.012861470691859722, -0.007420348469167948, -0.040619589388370514, -0.05077448487281799, 0.02582085318863392, -0.08207841962575912, 0.014106354676187038, -0.021722527220845222, -0.04730559512972832, 0.023610834032297134, -0.0426337830722332, 0.008658238686621189, 0.04011603817343712, 0.04573899880051613, 0.04448012635111809, 0.015568044036626816, 0.05575402081012726, -0.006829378195106983, -0.03250686079263687, 0.010091952979564667, -0.030324816703796387, 0.013358025811612606, -0.037878043949604034, 0.024799769744277, 0.005238304380327463, -0.011175981722772121, -0.037542346864938736, 0.0016015643486753106, 0.008637256920337677, -0.043501004576683044, -0.016756977885961533, -0.010889238677918911, 0.04576697200536728, -0.02859037183225155, -0.0178060382604599, 0.03964046388864517, 0.05494274944067001, 0.010840282775461674, -0.00809174682945013, -0.020365742966532707, -0.017498314380645752, -0.034856755286455154, 0.006126508116722107, 0.016742991283535957, -0.01689685322344303, -0.015945706516504288, -0.037570320069789886, 0.009560429491102695, -0.036395374685525894, 0.02856239676475525, -0.022925449535250664, 0.037542346864938736, -0.01920478418469429, 0.03734652325510979, 0.012280991300940514, 0.04873231425881386, 0.015148420818150043, 0.022421900182962418, 0.024016471579670906, 0.007581204175949097, -0.006060067564249039, -0.06104128062725067, -0.007315442431718111, 0.04422835260629654, 0.015931718051433563, -0.005962155293673277, -0.004332615993916988, 0.010777339339256287, -0.0003105653449892998, -0.02982126735150814, 0.0015561050968244672, -0.0028342092409729958, -0.04467594996094704, -0.015568044036626816, 0.015120445750653744, -0.0048011960461735725, 0.015651969239115715, -0.012721596285700798, -0.01618349365890026, -0.03247888386249542, 0.018841110169887543, 0.0011504687136039138, -0.02077138051390648, -0.00949049275368452, 0.023932546377182007, 0.01829559914767742, 0.01212712936103344, 0.015623994171619415, -0.048872191458940506, -0.03001709282398224, -0.04744546860456467, 0.0211490411311388, -0.02859037183225155, 0.008000828325748444, -0.010889238677918911, -0.009616379626095295, 0.029373668134212494, 0.010308759286999702, -0.0021995282731950283, 0.011238925158977509, 0.014141323044896126, 0.016197480261325836, -0.02425425872206688, 0.03158368915319443, -0.0048011960461735725, -0.01319716963917017, -0.012211053632199764, 0.03122001327574253, -0.06070558354258537, 0.029457593336701393, -0.009966066107153893, -0.005304744932800531, 0.003563305828720331, 0.017400402575731277, 0.005423638038337231, -0.018267624080181122, 0.056061744689941406, 0.01174247357994318, 0.03947261720895767, 0.021722527220845222, -0.005874733906239271, -0.013959486037492752, 0.005706884432584047, 0.03446510434150696, -0.013330050744116306, 0.0356680266559124, 0.003773117670789361, 0.008609282784163952, -0.06249597668647766, -0.002989819971844554, -0.005664921831339598, -0.020169919356703758, -0.019512508064508438, -0.004682302474975586, -0.019512508064508438, -0.020127957686781883, -0.004133294802159071, 0.00014216943236533552, -0.02428223378956318, 0.016533179208636284, 0.0049795364029705524, 0.02724757418036461, -0.024701856076717377, 0.016966789960861206, 0.01318318210542202, 0.007238511461764574, 0.0499352365732193, -0.010112934745848179, 0.022365950047969818, -0.01926073431968689, 0.008231621235609055, -0.016561154276132584, 0.03698284924030304, -0.041906435042619705, -0.03147178888320923, 0.010630470700562, -0.021694552153348923, -1.5879320471867686e-06, 0.006091539282351732, 0.006542635150253773, 0.04383670538663864, -0.018169712275266647, -0.0052802665159106255, 0.007392373401671648, -0.009854166768491268, -0.01498057134449482, 0.013847586698830128, -0.036367397755384445, -0.010182871483266354, 0.010448633693158627, -0.029065944254398346, 0.0014826708938926458, -0.02499559335410595, 0.0178060382604599, -0.023163236677646637, 0.015274307690560818, 0.0061509860679507256, -0.0017248288495466113, -0.049263838678598404, 0.010308759286999702, -0.02180645242333412, 0.00661956612020731, 0.051753606647253036, 0.02965341880917549, -0.021037142723798752, -0.004217219538986683, 0.015190383419394493, 0.004850152414292097, 0.040619589388370514, 0.010630470700562, 0.014316166751086712, 0.024953631684184074, 0.016533179208636284, -0.007063667755573988, -0.036171574145555496, 0.033569905906915665, 0.03261876106262207, 0.03603170067071915, 0.03301040828227997, 0.01972232013940811, 0.004997020587325096, -0.00474524637684226, -0.01923275925219059, 0.029009994119405746, -0.02348494715988636, 0.009224730543792248, -0.010798320174217224, -0.023876596242189407, -0.007937883958220482, 0.03790602087974548, 0.032087236642837524, -0.007098636589944363, -0.012714602053165436, -0.027527322992682457, -0.003094725776463747, -0.02482774294912815, 0.01563798263669014, 0.028926070779561996, -0.00644122576341033, 0.02556907944381237, -0.0089729567989707, -0.04688597097992897, 0.02400248311460018, 0.012980364263057709, 0.009014918468892574, -0.013588818721473217, 0.05295652896165848, -0.018281612545251846, 0.021107079461216927, -0.03284255787730217, 0.044815827161073685, -0.032003313302993774, -0.01654716767370701, -0.01692482829093933, 0.006416747812181711, -0.0006093287956900895, -0.013092263601720333, 0.03857741877436638, -0.036479298025369644, 0.012938401661813259, -0.009938091039657593, -0.021358853206038475, 0.033346109092235565, -0.0060111116617918015, 0.01493860874325037, -0.013532868586480618, 0.02230999991297722, -0.008427445776760578, -0.0013856329023838043, -0.012917420826852322, -0.03818576782941818, 0.003475884208455682, 0.0027240579947829247, 0.01208516675978899, -0.0702170580625534, -0.03790602087974548, -0.021932339295744896, 0.05147385597229004, 0.03829766809940338, 0.023205198347568512, -0.03810184448957443, -0.02046365663409233, 0.021624615415930748, -0.02727554924786091, 0.0011417265050113201, -0.04011603817343712, 0.011854373849928379, -0.02545717917382717, -0.025694966316223145, 0.006497175898402929, 0.029093919321894646, -0.03289850801229477, 0.03882919251918793, 0.0045843906700611115, -0.013351031579077244, 0.013630781322717667, -0.01709267683327198, -0.009441536851227283, -0.003881520591676235, -0.03141583874821663, 0.022351963445544243, 0.0010237073292955756, 0.0054376255720853806, 0.037738170474767685, -0.0019407602958381176, -0.007224523928016424, 0.009938091039657593, -0.02847847156226635, 0.013490906916558743, -0.01914883404970169, 0.013323056511580944, -0.04557114839553833, -0.0052907573990523815, -0.020072007551789284, -0.016253430396318436, 0.019960107281804085, 0.009413561783730984, 0.0033902109134942293, 0.022813549265265465, -0.00881909392774105, -0.01177044864743948, -0.014239235781133175, 0.012973370030522346, -0.004556415602564812, -0.02833859622478485, -0.000563869543839246, -0.029177844524383545, 0.006672019138932228, 0.03326218202710152, 0.030408740043640137, 0.05600579455494881, -0.009434542618691921, 0.02965341880917549, -0.0027887499891221523, 0.01849142462015152, 0.017512300983071327, -0.027457386255264282, 0.0028079829644411802, -0.0014704319182783365, 0.050746507942676544, -0.01709267683327198, 0.06411851942539215, 0.02633838914334774, 0.043333154171705246, -0.004671812057495117, 0.022435888648033142, 0.0003164663212373853, 0.013672742992639542, -0.008441433310508728, -0.01752628944814205, -0.015232345089316368, 0.0053571974858641624, 0.020505618304014206, -0.010735376738011837, -0.01900896057486534, 0.023792671039700508, 0.017736101523041725, -0.009301661513745785, 0.022547787055373192, 0.0032346004154533148, 0.008756150491535664, -0.03281458467245102, -0.02391855977475643, -0.00018664519302546978, -0.022547787055373192, -0.006294357590377331, -0.01039967779070139, -0.012812514789402485, -0.09007924795150757, -0.02342899702489376, 0.043193280696868896, -0.013344038277864456, 0.020813342183828354, 0.019582446664571762, 0.0494876392185688, 0.0712241530418396, -0.03105216473340988, -0.05234108120203018, -0.016533179208636284, -0.012148110195994377, -0.03751436993479729, -0.004147282335907221, 0.05301247909665108, 0.016169505193829536, 0.017302488908171654, 0.02433818206191063, -0.00953245535492897, -0.01495259627699852, 0.007217530161142349, -0.03656322509050369, -0.0044165407307446, 0.0015762120019644499, -0.012952389195561409, -0.01001502200961113, 0.008098740130662918, 0.002685592509806156, -0.0008112727664411068, -0.020617518573999405, -0.0032765627838671207, -0.0018131246324628592, -0.03387762978672981, 0.029205819591879845, -0.01037170272320509, 0.04277365654706955, 0.006825881078839302, 0.0019914647564291954, 0.02263171225786209, 0.011231931857764721, 0.013931511901319027, 0.02299538627266884, 0.02071543037891388, -0.009812204167246819, -0.011099050752818584, 0.010840282775461674, 0.030408740043640137, -0.01835154928267002, 0.007944878190755844, 0.017987875267863274, 0.0014109851326793432, -0.011511680670082569, 0.034884728491306305, -0.01709267683327198, 0.011238925158977509, 0.010497589595615864, 0.003185644280165434, 0.009301661513745785, -0.005045976489782333, -0.02003004401922226, -0.003926979843527079, -0.03007304109632969, 0.004766227677464485, 0.011448737233877182, -0.018281612545251846, -0.010889238677918911, 0.010777339339256287, 0.020127957686781883, 0.004902604967355728, -0.012246022000908852, 0.024408120661973953, -0.010490596294403076, 0.007406360935419798, 0.02505154348909855, 0.023177223280072212, 0.03135988861322403, -0.005797802936285734, -0.02776511013507843, -0.0026278942823410034, -0.002542220987379551, 0.03536030277609825, 0.025303317233920097, -0.019218772649765015, 0.016687041148543358, 0.013693724758923054, -0.003073744708672166, 0.004199735354632139, -0.043640878051519394, -0.002982826204970479, 0.0010254557710140944, 0.04087136313319206, 0.04548722505569458, -0.019876182079315186, 0.002531730569899082, 0.02965341880917549, 0.0429694801568985, 0.0029128887690603733, -0.0033657329622656107, 0.011127025820314884, -0.028128784149885178, -0.01657514087855816, -0.018505411222577095, -0.01923275925219059, -0.007888928055763245, -0.004031885880976915, -0.017568251118063927, 0.027555298060178757, -0.023037347942590714, 0.016840903088450432, 0.00011539655679371208, -0.0015027779154479504, 0.019582446664571762, -0.005731362383812666, 0.011644561775028706, -0.02277158759534359, 0.006220923271030188, 0.026869913563132286, 0.01805781200528145, -0.012602702714502811, -0.024156345054507256, -0.0009083107579499483, 0.00201244605705142, 0.01500854641199112, 0.04806091636419296, 0.007315442431718111, -0.0019022946944460273, -0.020099982619285583, -0.03172356262803078, -0.0040178983472287655, -0.025750916451215744, 0.0011609592474997044, 0.004199735354632139, -0.044871777296066284, -0.010154897347092628, 0.01381261833012104, 0.008665231987833977, 0.023149248212575912, 0.011280887760221958, 0.0026191521901637316, -0.006720975041389465, -0.003262575250118971, 0.02214215137064457, -0.03141583874821663, 0.019582446664571762, 0.02702377550303936, 0.019568458199501038, -0.028058847412467003, -0.019988082349300385, -0.03664714843034744, -0.0021593142300844193, 0.003661218099296093, 0.011315856128931046, 0.01800186187028885, 0.05024296045303345, -0.03166761249303818, 0.001471306080929935, -0.01651919260621071, -0.04694192111492157, 0.03105216473340988, 0.06663626432418823, -0.011651555076241493, 0.036367397755384445, 0.006283867172896862, 0.03552815318107605, 0.027317512780427933, 0.0212889164686203, -0.0022467360831797123, 0.046186596155166626, 0.037598296999931335, -0.039080966264009476, -0.016854891553521156, -0.07396569848060608, 0.03603170067071915, 0.014714809134602547, 0.004304641392081976, 0.040423762053251266, 0.041710611432790756, -0.012791533023118973, -0.0011137515539303422, 0.021274928003549576, -0.012476815842092037, 0.02351292222738266, -0.01854737289249897, 0.008322539739310741, 0.03958451375365257, 0.04106718674302101, -0.01321115717291832, -0.0033080345019698143, 0.0019390118541195989, -0.0123998848721385, 0.039164893329143524, 0.01612754352390766, 0.025904778391122818, -0.011406774632632732, -0.007651141379028559, 0.010966169647872448, 0.028072834014892578, -0.021764490753412247, 0.002977580763399601, 0.04680204391479492, -0.0501030869781971, 0.003881520591676235, 0.01895301043987274, 0.027499349787831306, 0.02077138051390648, -0.011889342218637466, 0.04115111008286476, 0.01903693564236164, 0.0029041466768831015, 0.006839868612587452, 0.003822073806077242, 0.004507459234446287, -0.02417033351957798, -0.03530435264110565, -0.02691187523305416, -0.000764939293731004, 0.0025859319139271975, -0.03737449645996094, -0.011588611640036106, -0.0029461090452969074, -0.02079935558140278, -0.01034372765570879, 0.03225508704781532, -0.03829766809940338, -0.01007097214460373, 0.03390560671687126, 0.006787415593862534, 0.0428575798869133, -0.030828364193439484, -0.008056777529418468, -0.030520640313625336, 0.03846551850438118, 0.02625446580350399, 0.001890055718831718, -0.005525047425180674, 0.01761021465063095, 0.06434231996536255, 0.009812204167246819, 0.04738951846957207, -0.018113762140274048, -0.010875251144170761, -0.025233380496501923, 0.02268766239285469, -0.021624615415930748, 0.008868050761520863, -0.0429135300219059, 0.01846344955265522, 0.015218357555568218, -0.009294668212532997, -0.006693000439554453, 0.0247158445417881, 0.03326218202710152, -0.02142878994345665, -0.004465497098863125, 0.0497114360332489, -0.05111018195748329, -0.008735169656574726, -0.009413561783730984, -0.006203439086675644, -0.003871029941365123, 0.0035335824359208345, 0.00034750098711811006, -0.007231517694890499, 0.00776304118335247, -0.03122001327574253, -0.033346109092235565, -0.03326218202710152, 0.014407085254788399, -0.004983033053576946, -0.041878458112478256, 0.012630677781999111, 0.02705175057053566, -0.02782106027007103, 0.005689399782568216, 0.021848414093255997, 0.0024250762071460485, 0.02570895478129387, 0.01038569025695324, 0.010476608760654926, -0.04000413790345192, -0.008742162957787514, 0.009441536851227283, 0.022505825385451317, 0.004930580034852028, 0.02014194428920746, 0.025527117773890495, 0.001027204212732613, 0.006343313492834568, -0.013889549300074577, -0.030940264463424683, 0.0052977511659264565, 0.011658549308776855, 0.020673468708992004, -0.012162097729742527, 0.01646324247121811, -0.0014896646607667208, 0.018855098634958267, 0.004671812057495117, -0.015791844576597214, -0.007098636589944363, -0.020561568439006805, 0.013113245368003845, 0.01863129809498787, 0.004052866715937853, 0.02422628365457058, -0.023275135084986687, 0.007518260274082422, 0.023303110152482986, -0.03435320407152176, 0.0016426524380221963, 0.003787105204537511, -0.0015692183515056968, 0.008504376746714115, 0.02647826448082924, -0.007091642823070288, 0.005339713301509619, 0.004108816850930452, 0.018337562680244446, 0.0033762233797460794, -0.002615655306726694, -0.007811997085809708, -0.003009052714332938, 0.011350824497640133, 0.0017012249445542693, 0.0007325932965613902, -0.03703879937529564, -0.0010674181394279003, -0.018589336425065994, -0.01800186187028885, 0.00032848678529262543, -0.011308862827718258, 0.005972646176815033, 0.002610409865155816, 0.0023638808634132147, -0.06221622973680496, -0.027988910675048828, 0.012735583819448948, 0.003731155302375555, -0.0013576579513028264, -0.014518984593451023, -0.0006220049108378589, -0.020393718034029007, 0.01032974012196064, 0.012700614519417286, 0.026016678661108017, -0.007294461131095886, -0.004902604967355728, 0.01208516675978899, 0.006287363823503256, 0.004080841783434153, 0.07424544543027878, 0.005476091057062149, 0.004517950117588043, 0.019330671057105064, 0.023191211745142937, -0.03175153583288193, 0.014742784202098846, 0.010966169647872448, -0.0088890315964818, -0.001106757903471589, -0.056341495364904404, 0.04106718674302101, 0.026184527203440666, -0.00606356468051672, -0.006217426620423794, -0.0035772931296378374, 0.0013471674174070358, 0.018841110169887543, 0.0352763757109642, 0.012504789978265762, 0.00011168113996973261, 0.00039164890768006444, 0.01906491070985794, -0.006797906011343002, -0.02293943613767624, -0.015316270291805267, 0.009021912701427937, -0.023219184949994087, -0.020183905959129333, 0.023932546377182007, -0.013868567533791065, -0.005962155293673277, -0.002615655306726694, -0.00925969984382391, -0.007084649056196213, -0.0008099614060483873, 0.02285551093518734, -0.004063357599079609, 0.021051129326224327, -0.00017702880722936243, 0.007364398334175348, -0.0016986023401841521, -0.017358439043164253, -0.012665646150708199, 0.010008028708398342, 0.02365279756486416, 0.00971429143100977, 0.0007531373994424939, -0.0019827226642519236, -0.009861160069704056, 0.00828757043927908, 0.008175671100616455, -0.04249390587210655, -0.002769517246633768, -0.014274204149842262, -0.012658652849495411, -0.01064445823431015, -0.022897474467754364, 0.0009118076413869858, -0.003968941979110241, -0.00806377176195383, 0.027303524315357208, -0.05925088748335838, -0.0028831653762608767, 0.008189658634364605, -0.02345697209239006, -0.009854166768491268, -0.0018078794237226248, -0.015358232893049717, -0.015917731449007988, -0.03382167965173721, 0.0010394431883469224, 0.012211053632199764, 0.0031384367030113935, 0.02186240255832672, 0.023009374737739563, 0.005035486072301865, 0.01689685322344303, -0.016225455328822136, -0.002701328368857503, -0.00953245535492897, 0.018365535885095596, -0.006612572353333235, 0.049599539488554, -0.03247888386249542, -0.014602909795939922, 0.024128369987010956, 0.010168883949518204, -0.01286846399307251, 0.0286183450371027, 0.0018166215158998966, -0.012833495624363422, 0.025974715128540993, 0.014365122653543949, 0.023554885759949684, -0.0016242939746007323, 0.0005721746128983796, -0.04168263450264931, -0.015092470683157444, -0.022729624062776566, 0.006696497090160847, -0.011099050752818584, -0.011588611640036106, -0.012225041165947914, 0.0022886984515935183, 0.002823718823492527, 0.003661218099296093, 0.0106024956330657, -0.00858830101788044, -0.005420141387730837, -0.014218254014849663, -0.00804978422820568, 0.006825881078839302, -0.01663109101355076, -0.023037347942590714, 0.008567320182919502, 0.009462517686188221, -0.026240477338433266, -0.005402656737715006, 0.015917731449007988, -0.018925035372376442, -0.011210950091481209, -0.010819301009178162, 0.024813756346702576, 0.013910530135035515, -0.013204163871705532, -0.021191004663705826, 0.03119203820824623, 0.0041717602871358395, -0.012574727647006512, 0.006420244928449392, 0.030772414058446884, -0.007098636589944363, 0.010168883949518204, -0.021470753476023674, 0.002379616955295205, -0.015204370021820068, -0.023820646107196808, -0.009567423723638058, 0.0029810776468366385, 0.01857534795999527, -0.007095139939337969, -0.0022467360831797123, -0.00921773724257946, 0.011546649038791656, 0.03161166235804558, 0.003461896674707532, 0.0014914131024852395, 0.0028359577991068363, 0.000362581224180758, 0.012756564654409885, 0.0076721226796507835, 0.013875561766326427, 0.015931718051433563, -0.013316063210368156, -0.028814170509576797, 0.01720457710325718, -0.029373668134212494, 0.006458710413426161, -0.013735687360167503, 0.0019652382470667362, 0.0247158445417881, -0.029093919321894646, -0.00689232163131237, 0.03410143032670021, -0.007231517694890499, -0.006944774650037289, -0.004269672557711601, -0.03591980040073395, 0.01692482829093933, -0.020673468708992004, -0.005549525376409292, 0.010266796685755253, 0.0501590371131897, -0.007742059882730246, -0.0038745268248021603, 0.023079311475157738, -0.0038745268248021603, -0.030156966298818588, 0.00672796880826354, -0.009385586716234684, -0.001111128949560225, -0.03659119829535484, -0.02713567577302456, -0.04515152424573898, 0.006448219530284405, -0.024506032466888428, -0.02263171225786209, 0.03720664605498314, -0.007378385867923498, 0.010952182114124298, -0.036395374685525894, 0.024589957669377327, -0.021750502288341522, -0.00781899131834507, -0.016365330666303635, 0.0039409673772752285, 0.01572190597653389, 0.02391855977475643, -0.018855098634958267, 0.015945706516504288, -0.01931668445467949, -0.04733356833457947, -0.012581721879541874, 0.015078483149409294, -0.03289850801229477, 0.007392373401671648, 0.011616586707532406, 0.040339838713407516, 0.017484325915575027, 0.0017160866409540176, -0.0005896589136682451, 0.01945655792951584, 0.0016207970911636949, 0.010147903114557266, 0.0008899522363208234, 0.004371081478893757, 0.03530435264110565, 0.009686317294836044, -0.03687094897031784, -0.0023446481209248304, -0.0016461493214592338, 0.017316477373242378, -0.018617311492562294, -0.00804978422820568, 0.040535662323236465, 0.003495116950944066, 0.005518053658306599, 0.0214008167386055, -0.019512508064508438, 0.009511473588645458, -0.005070454906672239, -0.01994612067937851, -0.0005739229964092374, -0.01728850230574608, 0.011106044054031372, -0.045011650770902634, 0.00854633841663599, -0.0071196178905665874, -0.015428169630467892, -0.008098740130662918, 0.018757184967398643, 0.0089729567989707, 0.029373668134212494, 0.012392890639603138, 0.015036520548164845, 0.0010263299336656928, -0.05236905440688133, -0.011217944324016571, -0.039052993059158325, 0.0036437336821109056, 0.011693517677485943, -0.0179459135979414, -0.0008576062391512096, 0.004224213305860758, -0.0015150168910622597, 0.014379110187292099, -0.02856239676475525, -0.0034374187234789133, -0.028730245307087898, -0.009770241566002369, -0.004073848016560078, 0.01657514087855816, -0.015889756381511688, 0.009980053640902042, 0.04392062872648239, -0.016938814893364906, -0.01267264038324356, -0.039220839738845825, 0.027205612510442734, -0.01989017054438591, -0.019876182079315186, 0.0005546902539208531, -0.015973681584000587, -0.040451738983392715, 0.029037969186902046, -0.014078379608690739, -0.0020736411679536104, 0.013707712292671204, 0.010154897347092628, -0.01934465952217579, 0.010154897347092628, -0.006867843680083752, -0.011099050752818584, 0.02642231434583664, -0.002019439823925495, -0.02414235845208168, 0.020813342183828354, 0.017330463975667953, 0.015931718051433563, 0.013162201270461082, 0.018589336425065994, 0.01654716767370701, 0.02548515424132347, 0.014700821600854397, 0.013714705593883991, -0.018085787072777748, 0.032227110117673874, -0.028254671022295952, 0.0247717946767807, -0.004556415602564812, 0.02482774294912815, 0.027289537712931633, -0.007888928055763245, 0.009665335528552532, 0.0042591821402311325, -0.001952999271452427, 0.028100809082388878, 0.01345593761652708, -0.0011015125783160329, -0.013106251135468483, 0.0014966583112254739, -0.0212889164686203, -0.021065115928649902, 0.013693724758923054, -0.01618349365890026, -0.01612754352390766, -0.024589957669377327, 0.017736101523041725, 0.016966789960861206, -0.004633346572518349, 0.012239028699696064, -0.01651919260621071, -0.03250686079263687, -0.010098947212100029, -0.007441329304128885, -0.019694345071911812, -0.02376469597220421, -0.015274307690560818, -0.013588818721473217, 0.007238511461764574, -0.03379370644688606, 0.03801792114973068, -0.04576697200536728, -0.030464690178632736, 0.03835361823439598, 0.016477229073643684, 0.0036682116333395243, 0.0212049912661314, -0.00388851435855031, -0.011574624106287956, -0.002337654586881399, -0.0035755448043346405, 0.042018335312604904, 0.013896542601287365, 0.03992021456360817, 0.000727347971405834, 0.02063150517642498, -0.019904157146811485, 0.002255478175356984, 0.013924517668783665, 0.010483602061867714, -0.03396155685186386, 0.017330463975667953, 0.009616379626095295, -0.005539034493267536, 0.04148681089282036, -0.006951768416911364, 0.0018743198597803712, -0.013148213736712933, -0.012994351796805859, -0.005325725767761469, 0.005294254049658775, -0.01178443618118763, 0.05284462869167328, -0.005846758838742971, -0.026604151353240013, 0.0017571748467162251, 0.008329533040523529, 0.018141737207770348, -0.0005813538446091115, 0.003605268197134137, 0.021163029596209526, 0.024631919339299202, -0.002341151237487793, -0.031919386237859726, -0.00672796880826354, -0.020449668169021606, -0.02222607657313347, 0.0016968538984656334, 0.006511163432151079, -0.05125005915760994, 0.04420037940144539, -0.0361156240105629, 0.024100396782159805, -0.010063978843390942, -0.0004465059901122004, -0.012875458225607872, 0.01871522329747677], [0.021354781463742256, 0.026370735839009285, 0.07503758370876312, 0.02286091260612011, -0.013824128545820713, 0.03351140767335892, -0.03265076130628586, -0.019781414419412613, 0.04717416688799858, 0.08719421178102493, -0.0022793675307184458, 0.004740277770906687, -0.012217140756547451, 0.013575348071753979, -0.0397241972386837, 0.02027897536754608, 0.0036611079704016447, 0.039320770651102066, 0.03821806609630585, 0.006175808608531952, 0.04499565437436104, 0.035663023591041565, 0.0001354214909952134, -0.017750825732946396, -0.022161638364195824, -0.03531338647007942, 0.03644298389554024, 0.04870719090104103, 0.00917126052081585, -0.06691523641347885, 0.08428952842950821, -0.02126064896583557, -0.02608833648264408, -0.016029534861445427, 0.0045990776270627975, 0.0034560321364551783, -0.02848200872540474, -0.003886355319991708, 0.03585129231214523, 0.02151615358889103, -0.005950561258941889, 0.015020964667201042, -0.017495322972536087, -0.04233303293585777, -0.050267115235328674, 0.06148240715265274, 0.017333950847387314, -0.06298854202032089, -0.005933751817792654, 0.027970999479293823, -0.030579833313822746, -0.0060783131048083305, -0.004800791852176189, -0.057179179042577744, 0.024286357685923576, 0.019539356231689453, 0.0039535933174192905, 0.022578513249754906, 0.06384918838739395, -0.011020304635167122, 0.02743309549987316, -0.05728675797581673, -0.015316811390221119, 0.0427633561193943, -0.009601583704352379, 0.024783918634057045, 0.012062493711709976, 0.021475810557603836, -0.02091101184487343, 0.01127580925822258, 0.044215694069862366, 0.02432670071721077, -0.010852210223674774, -0.04652868211269379, -0.011746474541723728, -0.057232968509197235, 0.008445090614259243, 0.02273988537490368, -0.007900462485849857, -0.004004021640866995, 0.003202208783477545, 0.0317632220685482, 0.0152764692902565, 0.039266981184482574, 0.007987871766090393, 0.02329123578965664, -0.02474357560276985, -0.007315492257475853, -0.036147136241197586, 0.0007362558972090483, -0.03394173085689545, -0.012916415929794312, -0.02910059690475464, 0.03813738375902176, 0.03127910941839218, -0.046421099454164505, 0.0046595921739935875, -0.008317338302731514, -0.048545822501182556, 0.04187581315636635, 0.0077861580066382885, -0.016957418993115425, -0.01698431372642517, 0.025523537769913673, 0.044161904603242874, -0.04160686209797859, -0.04526460915803909, 0.05911562964320183, -0.006431312765926123, -0.021475810557603836, -0.06713040173053741, -0.04504944756627083, -0.02486460469663143, 0.07326250523328781, -0.0354478619992733, -0.020036917179822922, -0.06282716989517212, 0.005086553283035755, 0.027285171672701836, 0.03447963669896126, -0.0495140478014946, -0.03856770321726799, 0.042817145586013794, -0.06675386428833008, 0.0018271921435371041, -0.0366581454873085, -0.02829374186694622, 0.018772844225168228, -0.07735057175159454, -0.035044435411691666, 0.059438373893499374, -0.008492156863212585, 0.05462413281202316, -0.06605459004640579, -0.05005195364356041, 0.00310975662432611, 0.0029265331104397774, -0.015410944819450378, -0.008989717811346054, -0.04808860272169113, 0.015061307698488235, 0.0201579462736845, 0.04851892590522766, 0.009151089005172253, -0.06497878581285477, 0.007295320741832256, 0.020090708509087563, 0.06196652352809906, -0.021354781463742256, 0.02163718268275261, -0.00014035927597433329, 0.013904813677072525, 0.015330259688198566, -0.014012394472956657, 0.012829006649553776, -0.025631118565797806, 0.035905081778764725, 0.062235474586486816, 0.022686094045639038, -0.00757772009819746, 0.0007455010781995952, 0.002938299672678113, -0.061697568744421005, -0.028831645846366882, 0.018167702481150627, -0.01338035799562931, -0.00968226883560419, -0.012075941078364849, -0.05933079123497009, -0.07783468812704086, -0.019767966121435165, -0.05830877646803856, -0.010986685752868652, -0.0037754124496132135, -0.01307778712362051, -0.024165330454707146, -0.004108240362256765, -0.013118130154907703, 0.007362558972090483, 0.001666661468334496, -0.006054779980331659, 0.0029853663872927427, -0.08762453496456146, -0.06621596217155457, -0.06879790127277374, 0.04908372461795807, -0.01381068117916584, -0.0010522743687033653, -0.022807123139500618, -0.032543182373046875, 0.031574953347444534, 0.026868296787142754, 0.021247200667858124, 0.05830877646803856, -0.03520580753684044, 0.011585104279220104, -0.005829532630741596, -0.03418378904461861, 0.01913592964410782, -0.017818065360188484, 0.028132369741797447, -0.029235074296593666, 0.045614246279001236, 0.0034358608536422253, 0.011174952611327171, -0.04443085566163063, 0.0006043013418093324, 0.022524723783135414, -0.0031383326277136803, -0.024407386779785156, 0.009695716202259064, -0.0501057431101799, -0.020332764834165573, 0.041472386568784714, -0.049056828022003174, 0.013178643770515919, -0.005100000649690628, 0.027056563645601273, 0.006350627169013023, 0.07756572961807251, 0.014442717656493187, 0.0012506264029070735, 0.01767014153301716, -0.026236260309815407, -0.02775583788752556, -3.2542131521040574e-05, 0.00394014548510313, -0.032973505556583405, 0.03577060624957085, -0.04375847801566124, 0.009695716202259064, 0.009883983060717583, -0.016150562092661858, 0.009292288683354855, 0.013467767275869846, -0.02078998275101185, 0.0063069225288927555, -0.03819117322564125, -0.0034274559002369642, 0.00612537981942296, 0.03380725532770157, 0.021193411201238632, 0.003708174452185631, 0.04747001454234123, 0.005900132469832897, -0.00810217671096325, -0.023129865527153015, -0.0008824984543025494, 0.03582439571619034, 0.021489258855581284, 0.03832564875483513, 0.004639420658349991, 0.04187581315636635, -0.021058935672044754, 0.008909032680094242, 0.007826500572264194, 0.03092947043478489, -0.04534529149532318, 0.04496876150369644, -0.027392752468585968, -0.035474758595228195, -0.017387742176651955, -0.0031887611839920282, 0.0045721824280917645, -0.056695062667131424, -0.01582781970500946, 0.021166516467928886, -0.014684774912893772, -0.0064481222070753574, 0.00917126052081585, 0.005809361580759287, 0.02249782718718052, 0.0012699572835117579, -0.010838761925697327, -0.019646937027573586, 0.0013640904799103737, 0.0032845751848071814, 0.010267239063978195, 0.004410811234265566, -0.007228082977235317, -0.03703467920422554, -0.004491496831178665, 0.024716680869460106, -0.006044694222509861, -0.002447462407872081, 0.012976930476725101, -0.013918261975049973, -0.0007387772784568369, -0.03012261539697647, 0.020453793928027153, 0.042628880590200424, -0.007893738336861134, -0.017186027020215988, -0.03558233752846718, 0.039320770651102066, 0.018261834979057312, 0.00023176090326160192, -0.02389637753367424, -0.02255161851644516, -0.0029551091138273478, -0.006501912605017424, 0.017508769407868385, 0.004931905772536993, -0.006175808608531952, -0.028320636600255966, 0.004407449625432491, 0.03203217312693596, 0.015128545463085175, -0.007779434323310852, -0.011349771171808243, -0.07896428555250168, 0.04389295354485512, 0.006320369895547628, -0.03507132828235626, -0.06825999915599823, 0.033161770552396774, 0.015841268002986908, 0.007893738336861134, -0.016338828951120377, 0.01686328463256359, 0.01869215816259384, -0.020978249609470367, 0.05707159638404846, -0.014778907410800457, 0.06686144322156906, 0.019041795283555984, -0.003906526602804661, 0.01925695687532425, -0.03819117322564125, -0.054731715470552444, -0.02910059690475464, -0.02622281201183796, 0.014025842770934105, -0.009083851240575314, 0.0028307188767939806, -0.02420567348599434, -0.014079633168876171, 0.032973505556583405, -0.009366250596940517, 0.03222043812274933, 0.04015452042222023, -0.025079766288399696, 0.03012261539697647, 0.010953066870570183, -0.04362400248646736, 0.0073894537054002285, 0.01624469645321369, 0.021664077416062355, 0.02988055720925331, 0.03821806609630585, -0.028347531333565712, 0.04539908468723297, -0.045990776270627975, 0.04467291384935379, -0.07648992538452148, 0.0054328287951648235, 0.020682401955127716, -0.028347531333565712, -0.020803431048989296, -0.03127910941839218, -0.0059404755011200905, -0.004373830743134022, 0.021986819803714752, 0.017858406528830528, -0.01308451034128666, -0.009924326092004776, -0.0023701388854533434, 0.0021045487374067307, 0.02553698420524597, -0.021341335028409958, 0.0556192547082901, 0.03751879185438156, -0.017992883920669556, -0.018046673387289047, -0.0372767373919487, 0.011000133119523525, -0.03512512147426605, 0.017858406528830528, 0.023869482800364494, -0.0009329269523732364, 0.003617403330281377, 0.03880976140499115, 0.025752145797014236, 0.040907587856054306, 0.05432828888297081, 0.0427902489900589, -0.019351091235876083, -0.01344759576022625, 0.0004925181856378913, 0.018060121685266495, -0.03213975578546524, 0.03867528587579727, 0.025012528523802757, 0.02780962735414505, -0.014711669646203518, 0.017333950847387314, 0.06863652914762497, 0.04351641982793808, 0.05115465447306633, -0.025025976821780205, 0.014093080535531044, -0.0317632220685482, -0.0013548452407121658, -0.017145683988928795, -0.01936453767120838, -0.014792355708777905, -0.010132763534784317, -0.012546607293188572, 0.003566974774003029, -0.008969546295702457, 0.03587818518280983, -0.013998947106301785, 0.028858540579676628, -0.013676204718649387, 0.014415822923183441, 0.010529467836022377, 0.00047570871538482606, 0.025227690115571022, 0.010388268157839775, -0.01624469645321369, 0.058523938059806824, 0.009050232358276844, -0.006878445390611887, -0.02243058942258358, -0.014335136860609055, 0.01992933638393879, 0.020763088017702103, -0.03262386843562126, -0.002792057115584612, -0.08262202888727188, -0.020332764834165573, 0.02616902068257332, 0.0519615113735199, 0.012398683466017246, -0.058577727526426315, -0.01717258058488369, -0.010388268157839775, 0.0029853663872927427, 0.027271725237369537, -0.04846513643860817, 0.007328939624130726, -0.03189769759774208, 0.01534370705485344, 0.02591351792216301, -0.014752012677490711, 0.01722637005150318, 0.01163889467716217, 0.014657879248261452, 0.026747267693281174, -0.003304746700450778, -0.00417211651802063, 0.006088398862630129, -0.04136480391025543, -0.014066184870898724, -0.04816928878426552, 0.032005276530981064, 0.039213187992572784, -0.04964852333068848, 0.04357020929455757, -0.03905181959271431, 0.009917601943016052, 0.04077311232686043, 0.037061575800180435, 0.03410310298204422, 0.01979486085474491, 0.011141332797706127, -0.012506264261901379, -0.025254584848880768, 0.0018103825859725475, -0.03568992018699646, 0.017629798501729965, -0.007887015119194984, 0.0028374427929520607, -0.008895584382116795, 0.028024788945913315, 0.00441753538325429, -0.002064205938950181, -0.03453342616558075, -0.009453659877181053, -0.021677523851394653, 0.01777772232890129, 0.06271958351135254, -0.027110353112220764, 0.02194647677242756, 0.046232834458351135, 0.0005698418826796114, 0.04927198961377144, -0.013837575912475586, 0.01561265904456377, -0.011174952611327171, -0.05508135259151459, -0.011679236777126789, 0.02969229221343994, -0.015222678892314434, 0.008989717811346054, -0.054919980466365814, -0.011733027175068855, -0.02731206640601158, 0.0501326359808445, -0.005893408786505461, 0.06578563898801804, -0.04045036807656288, 0.0253621656447649, -0.013071062974631786, 0.030472252517938614, 0.0025214243214577436, 0.013918261975049973, -0.012082665227353573, -0.03999314829707146, 0.012943310663104057, -0.08122348040342331, 0.0015969020314514637, 0.01577403023838997, 0.01421410869807005, -0.003190442221239209, -0.0005505109438672662, 0.0012506264029070735, -0.020131051540374756, -0.03265076130628586, -0.0015498354332521558, -0.0009127555531449616, -0.030337776988744736, -0.02584628015756607, 0.02396361529827118, -0.018772844225168228, 0.00637079868465662, 0.010092420503497124, -0.05873909965157509, -0.02567145973443985, -0.0012439026031643152, 0.02170442044734955, -0.024541862308979034, -0.042171660810709, 0.03246249631047249, 0.0018036587862297893, -0.0031719517428427935, 0.01274159736931324, -0.002156658098101616, -0.0039670406840741634, -0.032543182373046875, 0.02634384110569954, -0.031117737293243408, -0.012634016573429108, -0.015921954065561295, -0.002923171268776059, -0.015424392186105251, 0.024958737194538116, 0.02010415494441986, 0.013212262652814388, -0.007187739945948124, 0.010610152967274189, 0.0016204352723434567, 0.01784496009349823, 0.012129731476306915, -0.011020304635167122, -0.009359526447951794, 0.027702048420906067, -0.04117653891444206, 0.02058826945722103, 0.01949901320040226, -0.005002505611628294, 0.002210448496043682, 0.012761768884956837, -0.0014279666356742382, -0.01151786558330059, 0.004397363867610693, 0.02267264574766159, 0.002307943534106016, -0.0007429796969518065, -0.004679763223975897, -0.0060110753402113914, 0.019082138314843178, 0.024353595450520515, -0.014617537148296833, 0.04919130727648735, -0.00840474758297205, -0.0007623105775564909, -0.04437706619501114, 0.0023987148888409138, -0.002086058259010315, -0.026612792164087296, 0.021166516467928886, -0.002671028720214963, -0.02786341868340969, -0.022780226543545723, 0.02365432120859623, 0.011208571493625641, -0.03031088039278984, -0.02029242180287838, 0.03308108448982239, 0.01667501963675022, -0.020332764834165573, 0.006666645873337984, 0.007799605838954449, -0.018409758806228638, 0.040181417018175125, 0.007470139302313328, 0.02982676774263382, -0.03343072161078453, 0.031440477818250656, -0.0022188532166182995, -0.04386605694890022, -0.032408706843853, 0.009823468513786793, -0.014792355708777905, -0.022753331810235977, 0.03006882406771183, 0.006737245712429285, -0.0060682278126478195, 0.034076206386089325, -0.004387278109788895, 0.011336322873830795, 0.013440871611237526, 0.006670007482171059, -0.03821806609630585, 0.029477130621671677, -0.02370811067521572, -0.017750825732946396, -0.006182532291859388, -0.014173765666782856, -0.009130917489528656, -0.016782600432634354, 0.014752012677490711, -0.02720448561012745, 0.023076074197888374, -0.022013714537024498, -0.011417008936405182, -0.013945156708359718, 0.04994437098503113, 0.0006946523790247738, -0.006162360776215792, 0.018907319754362106, 0.018261834979057312, 0.010979961603879929, 0.012970206327736378, -0.00797442439943552, 0.007833224721252918, -0.0017313780263066292, -0.02127409726381302, 0.0015145355137065053, 0.038890447467565536, 0.009729336015880108, 0.006535531487315893, -0.04572182521224022, 0.008048386313021183, 0.004817601293325424, -0.005258009769022465, 0.024730129167437553, -0.010058801621198654, -0.00868042279034853, -0.004508306737989187, -0.0007396177970804274, -0.011921294033527374, -0.023129865527153015, 0.02218853309750557, -0.033269353210926056, 0.0031047137454152107, 0.029665395617485046, 0.028697170317173004, 0.03819117322564125, -0.030768100172281265, 0.011383390054106712, -0.03165563941001892, -0.012096112594008446, 0.013340014964342117, -0.010267239063978195, 0.05349453538656235, -0.008176138624548912, -0.016849838197231293, 0.001515375915914774, -0.04628662392497063, 0.017508769407868385, 0.027459990233182907, -0.01301727257668972, -0.028024788945913315, -0.00767185352742672, -0.012963482178747654, 0.038594599813222885, -0.007860119454562664, 0.05578062683343887, -0.042198557406663895, -0.01011259201914072, -0.012795387767255306, 0.0001510753354523331, -0.01020672544836998, -0.025442851707339287, 0.00763823464512825, -0.02646486833691597, 0.004394001793116331, 0.01791219785809517, 0.012976930476725101, 0.01968728005886078, -0.026061439886689186, 0.01201542653143406, 0.010744629427790642, 0.037007782608270645, 0.01047567743808031, 0.003378708381205797, -0.02853579819202423, -0.09257324784994125, 0.011450627818703651, 0.02969229221343994, -0.04491497203707695, -0.04865340143442154, -0.04798102378845215, 0.004726829938590527, -0.014402375556528568, -0.0019146014237776399, 0.029934348538517952, -0.03404931351542473, -0.019942784681916237, 0.015209230594336987, -0.06261200457811356, 0.007530653849244118, -0.021986819803714752, -0.016338828951120377, 0.014160318300127983, -0.029315758496522903, -0.0025163814425468445, 0.015531972981989384, -0.055834416300058365, 0.02780962735414505, -0.017186027020215988, -0.000922841252759099, 0.005039486568421125, 0.003882993245497346, 0.007833224721252918, 0.024407386779785156, -0.028159266337752342, 0.016970865428447723, 0.013326567597687244, -0.02132788673043251, 0.030956365168094635, 0.02799789421260357, -0.018840081989765167, 0.01931074820458889, -0.020749639719724655, 0.022390246391296387, -0.021596839651465416, 0.009897430427372456, -0.003040837589651346, -0.058147404342889786, -0.03404931351542473, -0.019028348848223686, 0.02286091260612011, 0.0019549443386495113, 0.004773896653205156, 0.030552938580513, 0.014160318300127983, 0.04553356021642685, -0.02615557424724102, 0.012109559960663319, -0.012573502026498318, -0.027459990233182907, 0.03770706057548523, -0.00039292193832807243, -0.024219119921326637, 0.025819383561611176, -0.010085697285830975, 0.03259697183966637, 0.0018120635068044066, 0.02786341868340969, -0.01307778712362051, 0.022834017872810364, 0.00597409438341856, -0.01127580925822258, -0.016513647511601448, -0.009944497607648373, 0.027782732620835304, -0.008626632392406464, 0.01625814288854599, 0.009527621790766716, 0.011121162213385105, -0.0014262855984270573, 0.018100464716553688, 0.008935927413403988, -0.015195783227682114, -0.011343047022819519, -0.016029534861445427, -0.030418461188673973, 0.03555544465780258, 0.002840804634615779, -0.0034324987791478634, 0.0032358276657760143, 0.007987871766090393, -0.019351091235876083, 0.004999143537133932, -0.0023398816119879484, 0.007611339446157217, -0.008525775745511055, -0.03644298389554024, -0.0025483195204287767, 0.009729336015880108, -0.027271725237369537, -0.031494271010160446, -0.012943310663104057, 0.00013678726099897176, -0.07240185886621475, -0.0038325649220496416, 0.04246750846505165, -0.002507976721972227, 0.01057653408497572, 0.001141364686191082, 0.014590641483664513, 0.06470983475446701, -0.030714308843016624, -0.051800139248371124, -0.011188399977982044, -0.011780094355344772, -0.03560923412442207, -0.026881743222475052, 0.012768492102622986, -0.024098092690110207, 0.04429638013243675, -0.01932419463992119, -0.00834423303604126, 0.005765656940639019, 0.011127885431051254, -0.003990574274212122, -0.021717866882681847, 0.05298352614045143, -0.0034375416580587626, 0.0033669418189674616, 0.02065550722181797, 0.0029265331104397774, -0.0009606626117601991, -0.029046807438135147, -0.01796598732471466, 0.012210416607558727, -0.02315676026046276, 0.010200001299381256, -0.011813713237643242, 0.041768234223127365, 0.018853530287742615, -0.0010136124910786748, -0.017710484564304352, -0.01777772232890129, 0.0005774061428382993, 0.029799873009324074, 0.029315758496522903, 0.01561265904456377, -0.02103203907608986, -0.016231248155236244, 0.012096112594008446, -0.017818065360188484, 0.004000659566372633, 0.013864471577107906, 0.025805937126278877, -0.008882137015461922, 0.021785104647278786, -0.037733953446149826, -0.03208596259355545, -0.004044364672154188, -0.02958471141755581, 0.001822149264626205, 0.0021768296137452126, 0.009641925804316998, -0.0152764692902565, 0.0023348387330770493, 0.023129865527153015, -0.0009883983293548226, -0.03103705123066902, 0.009621755219995975, -0.003768688766285777, 0.015505078248679638, -0.017939092591404915, 0.020252078771591187, 0.017320504412055016, -0.009090574458241463, 0.0043334877118468285, 0.041714441031217575, -0.010650495998561382, 0.021300991997122765, -0.006495188921689987, -0.02237679995596409, -0.027338963001966476, -0.02969229221343994, 0.03641609102487564, 0.02512010931968689, -0.00470665842294693, -0.006074951495975256, 0.034614112228155136, 0.0336189903318882, 0.012519711628556252, -0.02329123578965664, -0.011739751324057579, -0.03415689244866371, 0.04577561467885971, 0.06530152261257172, -0.0051067243330180645, -0.005621095187962055, -0.00977640226483345, 0.0027012857608497143, 0.019082138314843178, 0.015464735217392445, -0.011497694067656994, -0.017616350203752518, -0.021502705290913582, -0.02091101184487343, 0.012109559960663319, -0.040611740201711655, -0.007497034501284361, -0.004296506755053997, 0.0003691785386763513, -0.029477130621671677, -0.009520897641777992, 0.02022518403828144, -0.02034621313214302, 0.021623734384775162, 0.010556362569332123, 0.01201542653143406, -0.01048240065574646, -0.003846012521535158, 0.0010245387675240636, 0.021973371505737305, -0.002765161916613579, -0.035367175936698914, 0.03679262101650238, 0.0427902489900589, -0.0238291397690773, 0.06895927339792252, -0.018503891304135323, 0.001201038365252316, -0.021435467526316643, -0.014563746750354767, 0.018678709864616394, -0.022780226543545723, 0.01563955470919609, -0.007207911461591721, -0.032731447368860245, -0.015020964667201042, 0.03160184994339943, 0.005291629116982222, 0.05760950222611427, 0.02775583788752556, 0.01851733960211277, -0.029799873009324074, 0.00035993329947814345, 0.02370811067521572, -0.009702440351247787, 0.05024021863937378, 0.05578062683343887, 0.008014767430722713, -0.033269353210926056, -0.00907712709158659, -0.022201981395483017, 0.01121529471129179, 0.010536191053688526, 0.012533158995211124, 0.003741793567314744, 0.029235074296593666, -0.02780962735414505, 0.004921820014715195, -0.004353659227490425, -0.02910059690475464, 0.017024656757712364, 0.04787344112992287, -0.01779116876423359, 0.03880976140499115, -0.0009093936532735825, 0.05916942283511162, 0.04020830988883972, 0.02982676774263382, -0.016957418993115425, 0.03958972170948982, 0.05890047177672386, -0.00894937478005886, 0.0028979568742215633, -0.0385139137506485, 0.009090574458241463, 0.004891563206911087, -0.015384050086140633, 0.06567806005477905, 0.026922086253762245, -0.001995287137106061, 0.008909032680094242, 0.011470799334347248, -0.017441531643271446, 0.006317008286714554, 0.003429136937484145, 0.01881318725645542, 0.018745949491858482, 0.021731315180659294, 0.02982676774263382, -0.004605801776051521, 0.015128545463085175, 0.0033921559806913137, 0.03146737441420555, 0.02060171775519848, 0.011995255947113037, 0.03410310298204422, 0.009433488361537457, -0.001466628396883607, 0.015787476673722267, -0.011995255947113037, 0.04515702649950981, 0.013763613998889923, -0.006821292918175459, -0.002425610087811947, -0.014173765666782856, 0.025765594094991684, 0.005170600488781929, 0.00911074597388506, 0.014469613321125507, 0.005237838719040155, 0.016500199213624, 0.04784654453396797, 0.014711669646203518, 0.006599407643079758, -0.02481081523001194, -0.03232802078127861, -0.028213055804371834, -0.014536851085722446, -0.0024188864044845104, -0.014281346462666988, -0.030149510130286217, 0.01563955470919609, -0.03735741972923279, -0.002160020172595978, 0.014106527902185917, -0.018678709864616394, 0.004649506416171789, 0.031494271010160446, 0.0039031647611409426, 0.0427902489900589, 0.006169084459543228, -0.014039290137588978, 0.0007749177166260779, 0.04375847801566124, 0.0058127231895923615, 0.03265076130628586, 0.009897430427372456, -0.021596839651465416, 0.03525959700345993, 0.0002391150628682226, 0.01624469645321369, 0.0017028017900884151, -0.009628478437662125, -0.012183521874248981, 0.0030963090248405933, -0.03335003927350044, 0.0052042193710803986, -0.05782466381788254, 0.013245881535112858, 0.0037249841261655092, -0.003785498207435012, 0.014133423566818237, 0.01411997526884079, 0.017186027020215988, 0.02127409726381302, -0.013945156708359718, 0.04946025833487511, -0.03568992018699646, -0.0037317078094929457, -0.014980621635913849, -0.0011724622454494238, -0.029799873009324074, -0.01317192055284977, -0.013272777199745178, -0.014805803075432777, 0.00950745027512312, -0.009729336015880108, -0.017737379297614098, -0.002097825054079294, 0.02542940340936184, -0.013218986801803112, -0.025779040530323982, 0.006828016601502895, 0.017979435622692108, -0.015222678892314434, 0.006548979319632053, -0.008545947261154652, 0.0011581742437556386, -0.0001610559702385217, 0.022470932453870773, -0.02339881658554077, -0.025563878938555717, -0.037545688450336456, 0.019956232979893684, 0.005059658084064722, -0.008256823755800724, -0.007456691935658455, 0.01979486085474491, 0.016917075961828232, -0.014604088850319386, -0.027594467625021935, -0.049164410680532455, 0.0024172053672373295, -0.014590641483664513, 0.0035098225343972445, -0.014321689493954182, -0.0004815920256078243, 0.0029584711883217096, 0.007779434323310852, 0.016500199213624, 0.004114964511245489, 0.008229929022490978, -0.0014599045971408486, 0.0007127225981093943, -0.0062766652554273605, 0.017212923616170883, -0.00506974384188652, -5.4210620874073356e-05, -0.004726829938590527, 0.012802110984921455, -0.002746671438217163, 0.019149376079440117, 0.014308242127299309, 0.005469809751957655, 0.014025842770934105, 0.0016019449103623629, 0.018181148916482925, -0.000539164524525404, -0.03905181959271431, 0.017831511795520782, -0.005002505611628294, 0.008082005195319653, -0.0038594601210206747, 0.04227923974394798, 0.0011808669660240412, 0.019566252827644348, -0.016782600432634354, -0.02872406505048275, 0.008552671410143375, 0.0158816110342741, -0.011423733085393906, -0.025752145797014236, -0.004027554765343666, 0.018611472100019455, 0.007698748726397753, -0.02175820991396904, -0.03534028306603432, -0.008767832070589066, 0.01534370705485344, -0.010381544008851051, 0.007456691935658455, -0.004747001454234123, -0.048303764313459396, -0.011383390054106712, 0.004407449625432491, 0.01455029845237732, 0.01992933638393879, 0.0060783131048083305, 0.003956954926252365, -0.00843836646527052, -0.014644431881606579, 0.008142519742250443, 0.07659750431776047, 0.010462229140102863, -0.028374427929520607, 0.024124987423419952, 0.04954094439744949, -0.017710484564304352, 0.009783126413822174, -0.009359526447951794, 0.0009421721915714443, 0.0020339488983154297, -0.04106895625591278, 0.04924509674310684, 0.018934214487671852, -0.000363925559213385, 0.006199341733008623, 0.014684774912893772, 0.00971588771790266, 0.02450151927769184, 0.02518734708428383, 0.014725117944180965, 0.03593197464942932, -0.037061575800180435, 0.017011208459734917, -0.005268095526844263, -0.015854716300964355, -0.029907453805208206, -0.021906133741140366, -0.011692685075104237, -0.0068818069994449615, 0.017266713082790375, -0.012660911306738853, -0.009151089005172253, -0.02450151927769184, 0.005953922867774963, -0.007765986490994692, -0.010818591341376305, 0.01796598732471466, 0.001638085232116282, 0.031386688351631165, 0.0145099563524127, -0.018355967476963997, -0.01515544019639492, 0.0008673699339851737, -0.006461570039391518, -0.012398683466017246, 0.012371787801384926, -0.0038527362048625946, 0.011665789410471916, 0.004437706433236599, -0.031144632026553154, -0.015357154421508312, -0.016164010390639305, -0.03757258132100105, -0.018624920397996902, -0.02377535030245781, -0.002307943534106016, 0.02248438075184822, -0.005284904967993498, -0.034936852753162384, 0.002430652966722846, 0.025523537769913673, 0.03267765790224075, -0.03531338647007942, -0.004299868829548359, -0.005567304790019989, -0.02181200124323368, 0.0013514833990484476, -0.0077861580066382885, -0.009016613475978374, 0.0019095586612820625, -0.006313646212220192, -0.02029242180287838, 0.019337642937898636, 0.00944021251052618, 0.0032627228647470474, 0.020023470744490623, -0.04026210308074951, 0.01699776202440262, -0.031198423355817795, -0.04381226748228073, -0.02095135487616062, -0.019095586612820625, -0.01582781970500946, 0.04835755378007889, 0.0062094274908304214, -0.0024188864044845104, 0.022080952301621437, 0.018624920397996902, -0.01606987789273262, 0.04946025833487511, -0.02200026623904705, -0.01901490055024624, 0.008203033357858658, 0.016459858044981956, -0.006848188117146492, 0.015074755065143108, -0.006333817727863789, -0.054919980466365814, -0.0010379862505942583, 0.0020339488983154297, 0.014496508054435253, -0.017576007172465324, -0.013998947106301785, 0.0005971572827547789, -0.02541595697402954, -0.0016044662334024906, -0.010858933441340923, -0.0033854322973638773, 0.010253791697323322, -0.005086553283035755, -0.00026769121177494526, 0.005180686246603727, 0.03429136797785759, -0.012580226175487041, -0.016271591186523438, -0.017374293878674507, 0.0008182021556422114, -0.02823995053768158, -0.014415822923183441, -0.013736719265580177, -0.0068414644338190556, -0.01198180764913559, 0.023089522495865822, 0.006243046373128891, 0.01201542653143406, 0.023667769506573677, -0.027459990233182907, 0.017979435622692108, -0.006337179336696863, 0.023735007271170616, 0.0034140083007514477, -0.0012312955223023891, 0.010307582095265388, 0.002304581692442298, -0.020991697907447815, 0.0017885302659124136, -0.011094266548752785, -0.010966514237225056, -0.009231774136424065, 0.0004198171372991055, 0.006229599006474018, 0.01625814288854599, -0.02982676774263382, -0.014375479891896248, -0.017589455470442772, 0.012882797047495842, -0.005345419514924288, -0.013548452407121658, 0.00026138764224015176, 0.011685960926115513, -0.017804617062211037, 0.007893738336861134, 0.015666449442505836, 0.03195148706436157, -0.013851024210453033, -0.009030060842633247, 0.017159132286906242, -0.0027281809598207474, 0.00983691681176424, -0.0013119811192154884, 0.010119316168129444, 0.0004004862275905907, -0.009857087396085262, -0.024353595450520515, 0.018127359449863434, 0.013958604075014591, 0.006925512105226517, 0.0014330093981698155, -0.030579833313822746, 0.00911074597388506, -0.041230328381061554, -0.022511275485157967, 0.03133289888501167, 0.02029242180287838, -0.019082138314843178, 0.0019364538602530956, 0.030606728047132492, 0.008384576067328453, -0.06019143760204315, 0.0010337838903069496, -0.017145683988928795, 0.014429270289838314, 0.0060379705391824245, -0.014375479891896248, -0.015935400500893593, -0.007382730022072792, 0.004098155070096254, -0.00578919006511569, 0.03305419161915779, -0.011470799334347248, 0.004686487372964621, 0.003617403330281377, 0.015800924971699715, -0.03560923412442207, 0.0008606461342424154, -0.03213975578546524, 0.017038103193044662, 0.012701254338026047, 0.015572316013276577, -0.0028508903924375772, 0.01900145225226879, -0.0054731713607907295, -0.010072248987853527, -0.031198423355817795, -0.010778248310089111, -0.03103705123066902, 0.002860975917428732, 0.03539407253265381, 0.03184390813112259, 0.02248438075184822, 0.014362032525241375, 0.015424392186105251, 0.02969229221343994, -0.0009774721693247557, 0.0296385008841753, 0.0025197432842105627, 0.0018372777849435806, 0.023210549727082253, 0.002020501298829913, -0.015236126258969307, -0.024111539125442505, -0.029746081680059433, 0.06191273033618927, -0.019767966121435165, -0.01662122830748558, 0.02572525106370449, 0.002573533682152629, 0.017508769407868385, 0.02138167805969715, -0.029934348538517952, -0.010226896964013577, -0.010838761925697327, -0.025039423257112503, 0.0017347398679703474, 0.00047570871538482606, -0.005611009430140257, -0.030337776988744736, 0.005271457601338625, -0.009608306922018528, -0.012560054659843445, -0.012876072898507118, 0.01808701641857624, 0.008593013510107994, -0.0023701388854533434, 0.017159132286906242, 0.027486886829137802, -0.007537377532571554, -0.0342375785112381, -0.015020964667201042, -0.026935534551739693, 0.004962163046002388, -0.01387791894376278, 0.011988531798124313, -0.007725643925368786, 0.032247334718704224, -0.013998947106301785, 0.008424919098615646, -0.025590775534510612, -0.017871854826807976, -0.00934607908129692, -0.03259697183966637, -0.01656743884086609, 0.00797442439943552, -0.005805999506264925, -0.000333248230163008, 0.0592770017683506, -0.010018458589911461, -0.0323818102478981, -0.056748855859041214, 0.009420040994882584, -0.0031164803076535463, -0.00021579189342446625, 0.021852342411875725, -0.01047567743808031, -0.0008341711945831776, -0.0008362723747268319, 0.009164536371827126, -0.007779434323310852, 0.035474758595228195, 0.019055243581533432, 0.0019028348615393043, 0.01888042502105236, 0.009615031071007252, -0.02286091260612011, 0.023923272266983986, 0.013528281822800636, -0.017212923616170883, 0.011968360282480717, 0.009877258911728859, -0.029611606150865555, 0.05110086500644684, 0.021717866882681847, 0.020373107865452766, 0.022403694689273834, 0.022955046966671944, 0.012976930476725101, -0.005005867686122656, 0.029235074296593666, 0.008155967108905315, -0.012862625531852245, 0.0027550761587917805, 0.027702048420906067, 0.025079766288399696, 0.001433849916793406, 7.406684017041698e-05, -0.00874093733727932, 0.017401188611984253, 0.04413500800728798, 0.0046696774661540985, -0.015921954065561295, 0.0028777855914086103, 0.011269085109233856, -0.028643378987908363, -0.017885303124785423, -0.006333817727863789, 0.011511142365634441, -0.044699810445308685, 0.0018389587057754397, 0.02518734708428383, 0.029181282967329025, -0.021798552945256233, -0.008505604229867458, 0.0004832729755435139, -0.018302178010344505, 0.06245063617825508, -0.010838761925697327, -0.00849888101220131, 0.003212294541299343, -0.022323008626699448, -0.02486460469663143, 0.011282532475888729, -0.028643378987908363, 0.06374160200357437, -0.026182468980550766, -0.00042864211718551815, 0.02867027372121811, 0.010556362569332123, 0.008398023433983326, -0.0029029997531324625, -0.014953726902604103, -0.01705155149102211, -0.009258669801056385, 0.0037720506079494953, 0.03515201434493065, -0.002156658098101616, 0.028804751113057137, 0.009339354932308197, 0.016123667359352112, -0.00944021251052618, 0.02284746617078781, 0.03324245661497116, 0.02591351792216301, -0.01789874956011772, 0.004202373791486025, 0.021973371505737305, -0.005842980463057756, 0.016029534861445427, -0.029746081680059433, 0.009359526447951794, -0.03152116388082504, -0.006300198845565319, 0.05760950222611427, -0.013279501348733902, 0.010260515846312046, 0.03679262101650238, -0.013689653016626835, 0.005634542554616928, 0.0012808835599571466, 0.025456298142671585, 0.007503758650273085, 0.028213055804371834, -0.005644628312438726, 0.013037444092333317, -0.003573698690161109, 0.0018406397430226207, -0.01820804551243782, -0.00907712709158659, 0.008828346617519855, -0.004693211056292057, 0.018436653539538383, 0.014738565310835838, -0.047523804008960724, 0.013649309985339642, -0.0226188562810421, 0.035178910940885544, -0.019149376079440117, -0.0028307188767939806, 0.030768100172281265, 0.011067371815443039], [0.004848603159189224, 0.02712397836148739, 0.0581960566341877, 0.004704394843429327, -0.047402869910001755, 0.01936877705156803, 0.01095983013510704, 0.019907154142856598, -0.0029146098531782627, 0.028175096958875656, -0.04858217388391495, -0.0029194168746471405, -0.0044416156597435474, -0.04596719518303871, -0.04437769949436188, 0.047454141080379486, 0.005056904163211584, 0.06901488453149796, 0.012151951901614666, 0.030405517667531967, 0.047454141080379486, -0.008928095921874046, -0.009325469844043255, 0.026585599407553673, -0.024509001523256302, -0.01906113140285015, 0.016407698392868042, 0.02707270346581936, -0.008191031403839588, 0.002054166980087757, 0.08752482384443283, -0.006085589993745089, -0.00010845665383385494, -0.011511026881635189, 0.049069274216890335, 0.045992832630872726, -0.043916232883930206, 0.031251538544893265, 0.010376587510108948, 0.018535573035478592, -0.013318437151610851, 0.032917946577072144, -0.06563079357147217, -0.016869165003299713, -0.06270817667245865, 0.05563235655426979, 0.0031213085167109966, -0.02332969754934311, 0.03937847912311554, 0.05773459002375603, -0.006787403952330351, 0.02021479792892933, 2.981806937896181e-05, -0.010030488483607769, 0.022816956043243408, -0.0013595637865364552, 0.01171612273901701, 7.980276677699294e-06, 0.02904675528407097, -0.01285697054117918, 0.006367597263306379, -0.00973566249012947, -0.06829705089330673, 0.02940567396581173, 0.008460219949483871, -0.04596719518303871, -0.033738330006599426, 0.02395780384540558, -0.009331879206001759, -0.002959474688395858, 0.041634537279605865, 0.053683940321207047, 0.022586222738027573, -0.06952762603759766, -0.016715344041585922, -0.010882919654250145, -0.0004923110827803612, -0.011684076860547066, -0.01579241082072258, 0.009389562532305717, -0.023022053763270378, 0.012119906023144722, -0.04037832096219063, 0.03612257540225983, -0.002485189586877823, -0.024765370413661003, -0.04622356593608856, 0.018086925148963928, -0.03740442544221878, 0.010709869675338268, -0.010120217688381672, 0.024034716188907623, -0.007428329437971115, 0.08224359154701233, 0.05460687354207039, -0.009742071852087975, 0.01283133402466774, -0.019868697971105576, -0.0171896293759346, 0.04266001656651497, 0.016612796112895012, 0.015356580726802349, 0.0029065983835607767, -0.0021535104606300592, 0.0029706908389925957, -0.04342912882566452, -0.030584976077079773, 0.029174940660595894, -0.00038615777157247066, -0.03450744226574898, -0.011389250867068768, -0.00919728446751833, -0.0045505729503929615, 0.03932720422744751, -0.019407231360673904, -0.01477974746376276, -0.030200421810150146, -0.02930312603712082, 0.06598971784114838, 0.018612483516335487, -0.035148367285728455, 0.0501973032951355, -0.03678913787007332, -0.07091202586889267, 0.008223077282309532, 0.0020285299979150295, 0.00022232111950870603, -0.0479925200343132, -0.029636407271027565, -0.02385525591671467, 0.019240591675043106, 0.0023329698015004396, 0.041173070669174194, -0.038045354187488556, 0.01465156301856041, -0.015241214074194431, -0.003948102705180645, -0.023778345435857773, -0.038840100169181824, -0.05624764412641525, 0.0036660952027887106, 0.022317035123705864, 0.02426544949412346, 0.02727779932320118, -0.02343224547803402, 0.0019131633453071117, 0.01301720179617405, 0.057324398308992386, 0.016753798350691795, -0.007537286728620529, -0.04307021200656891, 0.010434270836412907, -0.020804449915885925, -0.027662355452775955, 0.02098390832543373, -0.016817891970276833, 0.020189160481095314, 0.08111556619405746, -0.010639367625117302, -0.011222610250115395, -0.025598574429750443, -0.05081259459257126, -0.001900344854220748, -0.01776646263897419, 0.028354555368423462, -0.017984377220273018, -0.051607340574264526, 0.03296922147274017, -0.0767572671175003, -0.030354242771863937, -0.03563547134399414, -0.05435050278902054, -0.03432798385620117, 0.008069255389273167, 0.001265828381292522, -0.013433803804218769, -0.0024130854289978743, -0.020753175020217896, 0.05168425291776657, -0.009287014603614807, -0.01249805185943842, 0.01781773567199707, -0.05804223567247391, -0.02702143043279648, -0.043916232883930206, 0.0017016578931361437, -0.003010748652741313, 0.027303436771035194, -0.007627016399055719, 0.049069274216890335, 0.013677355833351612, 0.07239897549152374, 0.016664069145917892, 0.004470457322895527, -0.06040084362030029, 0.03425107151269913, -0.0028056525625288486, 0.0030860574916005135, -0.00429740734398365, 0.01503611821681261, 0.03230265900492668, 0.003794280346482992, 0.05112023651599884, -0.01844584383070469, -0.016433335840702057, -0.03796844184398651, 0.0298671405762434, -0.014907932840287685, 0.01833047717809677, 0.002541270572692156, -0.004758873488754034, -0.06768175959587097, 0.0074026924557983875, 0.011985311284661293, -0.04660812020301819, 0.0116135748103261, -0.03230265900492668, 0.046531207859516144, 0.00037434068508446217, -0.03619948774576187, 0.01595905050635338, 0.0035122730769217014, 0.004281383939087391, 0.0014188493369147182, -0.027662355452775955, 0.04691576585173607, 0.002369822934269905, -0.05645273998379707, 0.006444508675485849, -0.040019404143095016, -0.006274662911891937, 0.01730499602854252, 0.045069899410009384, -0.03807098791003227, 0.030918259173631668, -0.009966395795345306, 0.0025028150994330645, -0.002212796127423644, 0.005752308759838343, 0.01739472523331642, 0.05901644378900528, -0.0078064757399261, 0.016805073246359825, -0.016343606635928154, 0.011107243597507477, -0.007505240384489298, -0.028226369991898537, -0.0376095250248909, 0.051453519612550735, 0.04199345409870148, 0.018151016905903816, 0.018099743872880936, 0.033481962978839874, -0.013677355833351612, 0.0068130409345030785, -0.020227616652846336, 0.011132880114018917, -0.03458435460925102, 0.007216823752969503, -0.018638120964169502, -0.003579570446163416, -0.021330008283257484, -0.012472415342926979, 0.04204472899436951, -0.044864803552627563, -0.027149615809321404, 0.053119927644729614, -0.0660409927368164, -0.05440177768468857, 0.05927281454205513, -0.04950510337948799, 0.011728941462934017, 0.04919746145606041, 0.004239724017679691, -0.03932720422744751, 0.019445687532424927, -0.011241837404668331, -0.009492110460996628, 0.0376095250248909, 0.007639835122972727, -0.023932168260216713, -0.0036596860736608505, 0.023355334997177124, -0.005008834879845381, -0.022932322695851326, 0.02395780384540558, -0.031405363231897354, -0.02227857895195484, -0.019984064623713493, 0.01792028360068798, 0.04691576585173607, -0.03396906331181526, -0.01407472975552082, -0.030584976077079773, 0.012248091399669647, -0.01916367933154106, -0.000738666916731745, -0.02925185114145279, -0.012824924662709236, 0.014049092307686806, 0.0020285299979150295, 0.026841970160603523, -0.03427670896053314, -0.008126938715577126, -0.030636250972747803, -0.001263424870558083, 0.006111226975917816, -0.0173562690615654, -0.022047845646739006, -0.010427862405776978, -0.057016756385564804, 0.0004935128381475806, -0.007627016399055719, -0.020637808367609978, -0.023521974682807922, -0.008543540723621845, 0.05614509433507919, -0.007524468470364809, -0.030431155115365982, 0.027508532628417015, 0.04904363676905632, -0.035814929753541946, 0.025829307734966278, -0.03299485892057419, 0.0031389337964355946, -0.02093263529241085, 0.05063313618302345, 0.008902458474040031, -0.061785243451595306, -0.014343918301165104, -0.0069219982251524925, 0.05053058639168739, 0.02425263077020645, 0.0005359741626307368, -0.014100366272032261, -0.007575742434710264, -0.014638744294643402, 0.014549014158546925, 0.007671881467103958, 0.03450744226574898, 0.01392090693116188, -0.016651250422000885, -0.001108000404201448, -0.009927939623594284, 0.002594146877527237, 0.07414229214191437, 0.006242617033421993, 0.05752949416637421, -0.014177277684211731, 0.019099587574601173, -0.01457465160638094, 0.03184119239449501, -0.018471479415893555, -0.006614353973418474, -0.09413917362689972, 0.022252941504120827, -0.026431778445839882, 0.027098340913653374, 0.0017160787247121334, -0.008787091821432114, -0.020714720711112022, 0.0050472901202738285, 0.01447210367769003, 0.029738955199718475, -0.012190408073365688, 0.013908089138567448, -0.004444819875061512, -0.0054414598271250725, 0.057324398308992386, -0.007473194506019354, 0.015177121385931969, 0.0432240329682827, -0.009889484383165836, 0.025790851563215256, -0.05137660726904869, -0.0328410342335701, -0.003260709811002016, 0.009633113630115986, -0.015600132755935192, 0.040609054267406464, 0.035917479544878006, -0.04196781665086746, 0.026765059679746628, -0.01900985836982727, 0.09331879019737244, 0.05506834015250206, -0.06614353507757187, -0.015266851522028446, 0.025906218215823174, 0.018535573035478592, -0.02321433089673519, 0.0011224212357774377, -0.00893450528383255, -0.008248714730143547, -0.026944518089294434, 0.02176583930850029, 0.01636924408376217, 0.03455871716141701, 0.04181399568915367, -0.020086612552404404, 0.028585288673639297, -0.028021274134516716, -0.008421764709055424, -0.06255435198545456, -0.029174940660595894, -0.005633737426251173, -0.047402869910001755, 0.01112006139010191, 0.031610459089279175, -0.007851340807974339, 0.03660967946052551, -0.02222730591893196, 0.047454141080379486, -0.015651406720280647, 0.017625458538532257, 0.015484766103327274, -0.04104488343000412, 0.08034645020961761, -0.041531987488269806, -0.015600132755935192, 0.04071160405874252, 0.022868230938911438, 0.030687525868415833, -0.009761299006640911, -0.012722375802695751, 0.0054414598271250725, 0.0019948813132941723, -0.00992153026163578, 0.03807098791003227, -0.08285888284444809, -0.004598642233759165, 0.0028713473584502935, 0.016035962849855423, 0.029174940660595894, -0.030149146914482117, -0.021637653931975365, 0.040019404143095016, -0.007537286728620529, -0.002888972871005535, -0.03407161310315132, 0.022624678909778595, -0.01947132498025894, -0.01672816276550293, 0.042993299663066864, -0.011607165448367596, 0.03102080710232258, -0.0048806495033204556, -0.015074573457241058, -0.009863846935331821, 0.017112717032432556, 0.006136863958090544, 0.018086925148963928, -0.045531366020441055, 0.007671881467103958, -0.06537442654371262, 0.027200888842344284, 0.019907154142856598, -0.046531207859516144, 0.03650712966918945, -0.0507100448012352, 0.021330008283257484, 0.04530063271522522, 0.0602470226585865, 0.08788374066352844, 0.012844151817262173, 0.022381126880645752, -0.05027421563863754, 0.010197129100561142, -0.05199189856648445, 0.008966551162302494, -0.016484610736370087, 0.016535883769392967, 0.012171179987490177, -0.01485665887594223, -0.0032943582627922297, -0.029021117836236954, -0.002203182317316532, -0.030149146914482117, -0.026508688926696777, -0.019766150042414665, 0.00422049593180418, 0.05486324429512024, 0.009684388525784016, -0.034994546324014664, 0.07347572594881058, 0.045480091124773026, 0.025226837024092674, -0.0085948146879673, -0.012645465321838856, 0.02150946855545044, -0.005040881223976612, -0.003752620192244649, 0.030482428148388863, -0.013472259044647217, -0.02961076982319355, -0.017740825191140175, -0.02707270346581936, 0.0030844551511108875, 0.04830016568303108, -0.009517746977508068, 0.003166173119097948, -0.011504617519676685, 0.02773926593363285, 0.0076782903634011745, 0.047249045222997665, 0.0009621898061595857, 0.020381439477205276, 0.04499298706650734, 0.004114743322134018, 0.002161522163078189, -0.02996968850493431, -0.019612327218055725, 0.03427670896053314, -0.010286858305335045, 0.0060471342876553535, 0.005544007755815983, -0.014536196365952492, -0.019984064623713493, -0.013254344463348389, 0.01734345033764839, 0.037378791719675064, -0.02697015553712845, -0.029841503128409386, 0.014907932840287685, 0.018368931487202644, 0.022355489432811737, -0.006053543649613857, 0.017804916948080063, -0.022688772529363632, 0.0055504171177744865, 0.04681321606040001, -0.03117462806403637, -0.0048101479187607765, 0.05201753228902817, 0.017228083685040474, -0.005364548414945602, -0.004162812605500221, -0.018984220921993256, -0.011504617519676685, -0.02809818461537361, 0.027867451310157776, -0.035763658583164215, 0.010229174979031086, -0.007787248119711876, 0.0036020027473568916, -0.0029049960430711508, 0.017471635714173317, -0.001373183447867632, 0.003595593385398388, 0.02930312603712082, 0.015651406720280647, -0.0031982194632291794, 0.041685812175273895, -0.0018538777949288487, -0.01551040355116129, -0.017112717032432556, 0.007742383051663637, -0.04571082442998886, 0.030277332291007042, -0.03399470075964928, 0.0036468675825744867, 0.039301566779613495, 0.014907932840287685, -0.01943286880850792, -0.03453307971358299, 0.027200888842344284, 0.020586535334587097, 0.008921686559915543, -0.00805643666535616, -0.016548702493309975, -0.005165861453860998, 0.039199020713567734, 0.013279981911182404, -0.029380036517977715, 0.05614509433507919, 0.0011688882950693369, -0.0028264825232326984, -0.05578617751598358, 0.02503455989062786, 0.0018346499418839812, -0.013344074599444866, -0.010030488483607769, -0.01113928947597742, -0.030251694843173027, 0.0036116165574640036, 0.004041037056595087, 0.003364860313013196, -0.016535883769392967, 0.043557312339544296, 0.03191810101270676, 0.0020798039622604847, -0.025995949283242226, 0.02809818461537361, -0.002307332819327712, 0.0272265262901783, -0.0012345832074061036, -0.02285541221499443, 0.019048312678933144, 0.010248403064906597, 0.01817665435373783, -0.027611080557107925, 0.010459908284246922, -0.03558419644832611, -0.057016756385564804, 0.030559340491890907, 0.011985311284661293, 0.015971869230270386, 0.0038391451817005873, 0.010671413503587246, 0.009319060482084751, -0.0028232778422534466, 0.026611236855387688, 0.016702525317668915, -0.028764747083187103, -0.02613695152103901, 0.01953541673719883, -0.013933725655078888, -0.015061755664646626, -0.01693325862288475, -0.018381750211119652, 0.0029738955199718475, -0.0090626897290349, -0.007864158600568771, -0.04876163229346275, 0.026008766144514084, 0.010524000972509384, -0.00999844167381525, -0.032071925699710846, -0.008953732438385487, -0.013382529839873314, 0.015164303593337536, 0.031456634402275085, -0.022688772529363632, -0.011337976902723312, -0.008735817857086658, 0.014087548479437828, 0.027457259595394135, 0.03319995477795601, 0.03537910059094429, -0.04155762493610382, 0.015830866992473602, 0.01797155849635601, 0.0009269388974644244, -0.019625145941972733, 0.05481196939945221, 0.033276863396167755, 0.030713161453604698, 0.014523377642035484, 0.0015406252350658178, 0.009761299006640911, -0.005527984816581011, -0.04248055815696716, -0.006704083178192377, -0.016458973288536072, 0.017228083685040474, -0.011619984172284603, -0.03645585849881172, 0.035148367285728455, 0.040865425020456314, 0.04437769949436188, 0.004505707882344723, -0.00020569711341522634, -0.03455871716141701, -0.0004426393425092101, 0.009190875105559826, 0.020342983305454254, 0.022791320458054543, -0.042736928910017014, 0.013042839244008064, -0.004319839645177126, -0.0639900267124176, -0.02545757032930851, 0.03240520507097244, -0.008332034572958946, -0.008184622041881084, 0.022534949705004692, -0.03214883431792259, -0.008831956423819065, -0.03640458360314369, 0.002272081794217229, -0.019407231360673904, -0.004105129279196262, 0.0018731055315583944, 0.00913960114121437, -0.003653276711702347, -0.022842593491077423, 0.036225125193595886, -0.032020650804042816, 0.00026017578784376383, -0.027713630348443985, -0.010241993702948093, -0.000264381873421371, 0.01111365295946598, -0.0013956158654764295, -0.013933725655078888, 0.014061911031603813, 0.024355178698897362, -0.0171896293759346, -0.012728785164654255, -0.07783402502536774, 0.02181711234152317, -0.011389250867068768, -0.008389717899262905, -0.020599354058504105, 0.006120841018855572, -0.007107866462320089, 0.015933414921164513, 0.006639990955591202, 0.05363266542553902, -0.030149146914482117, 0.007755201775580645, -0.008267941884696484, -0.05050494894385338, -0.006274662911891937, -0.03412288799881935, 0.019830243661999702, -0.026841970160603523, 0.006966862827539444, 0.01467719953507185, 0.00044063644600100815, -0.011440524831414223, 0.061323776841163635, -0.006563079543411732, -0.037942804396152496, 0.029021117836236954, -0.017702369019389153, 0.006361187901347876, 0.006335550919175148, 0.0010655390797182918, 0.010549637489020824, 0.01117133628576994, 0.006313118617981672, 0.041839633136987686, -0.011825080029666424, 0.002472371095791459, -0.0032014241442084312, -0.014843840152025223, 0.01511302962899208, -0.03460999205708504, 0.02140692062675953, -0.007710336707532406, -0.025214018300175667, -0.03258466348052025, -0.029174940660595894, -0.0054190270602703094, -0.0068130409345030785, -0.010357360355556011, 0.05983682721853256, 0.0037205740809440613, 0.0057555134408175945, -0.025944674387574196, 0.010479136370122433, -0.010376587510108948, -0.04399314522743225, 0.020458349958062172, -0.02270158939063549, 0.014061911031603813, 0.022611860185861588, 0.006165705621242523, 0.026790697127580643, -0.027559807524085045, 0.020381439477205276, 0.006438099313527346, 0.0260344035923481, 0.027508532628417015, -0.04660812020301819, 0.010985467582941055, 0.01065218634903431, 0.012004539370536804, -0.023868074640631676, 0.024842282757163048, -0.0060471342876553535, 0.016561521217226982, 0.006463736295700073, 0.03627639636397362, 0.006515010260045528, -0.01551040355116129, -0.0054190270602703094, -0.01595905050635338, -0.029072392731904984, -0.007030955515801907, -0.00126262370031327, 0.004694781266152859, 0.008274351246654987, 0.018202291801571846, 0.024855101481080055, -0.014766929671168327, 0.016805073246359825, -0.03594311699271202, -0.00676817586645484, -0.021483831107616425, -0.0035058639477938414, -0.012408322654664516, -0.013933725655078888, 0.0031918103341013193, -0.025534482672810555, -0.008761455304920673, -0.06588716804981232, -0.025842126458883286, 0.026559963822364807, -0.010767553001642227, -0.004098720382899046, 0.02400907874107361, 0.030995169654488564, 0.03991685435175896, 0.005547212436795235, -0.03276412561535835, -0.016497429460287094, 0.006351574324071407, -0.033840879797935486, -0.007524468470364809, 0.02840583026409149, 0.011190563440322876, 0.006265049334615469, 0.010171491652727127, -0.014318281784653664, -0.0028280848637223244, -0.0033552462700754404, -0.03012351132929325, 0.0026502280961722136, -0.012421141378581524, -0.0009149215184152126, 0.018202291801571846, -0.008953732438385487, -0.0008067652815952897, 0.01275442261248827, -0.026559963822364807, 0.012536508031189442, 0.0023025257978588343, -0.05429923161864281, 0.016125692054629326, 0.006229798309504986, 0.03589184209704399, 0.0013635695213451982, -0.004906286485493183, 0.012658284045755863, 0.014561832882463932, 0.010447089560329914, 0.025803670287132263, 0.03243084251880646, 0.008344853296875954, -0.007953888736665249, 0.010088171809911728, 0.02270158939063549, -0.03350759670138359, -0.005021653138101101, -0.005486324429512024, -0.01979178749024868, 0.0019083564402535558, 0.006332346238195896, -0.043608587235212326, -0.0044736615382134914, -0.023239968344569206, 0.021432558074593544, -0.016651250422000885, -0.009517746977508068, 0.0018843216821551323, -0.003531500929966569, 0.01859966479241848, -0.033071767538785934, 0.003057215828448534, -0.0051818848587572575, 0.001991676865145564, 0.008152575232088566, -0.0017064647981896996, 0.00026338043971918523, 0.010998286306858063, -0.0015061754966154695, 0.006473350338637829, -0.02940567396581173, 0.024688459932804108, 0.02156074158847332, 0.0587087981402874, 0.01563858799636364, -0.02920057810842991, -0.012164770625531673, -0.006168910302221775, 0.009370334446430206, 0.035045821219682693, -0.006973272189497948, 0.015984687954187393, 0.009915121830999851, 0.011466161347925663, 0.009030643850564957, -0.008306398056447506, 0.01353635173290968, 0.010870100930333138, 0.04835144057869911, 0.010735506191849709, -0.025701122358441353, 0.017445998266339302, 0.03017478436231613, 0.028713474050164223, 0.028559651225805283, 0.010882919654250145, 0.025393478572368622, -0.003890419378876686, -0.028200732544064522, 0.0007482808432541788, -0.02940567396581173, -0.006780994590371847, -0.013472259044647217, -0.04258310794830322, 0.009056281298398972, -0.001163280219770968, -0.0003853566013276577, 0.013228707946836948, -0.0030171580146998167, 0.027918726205825806, -0.00849867518991232, -0.00746678514406085, -0.016766617074608803, -0.0061592962592840195, 0.004906286485493183, 0.021676108241081238, -0.006210570689290762, -0.03168736770749092, 0.00505049480125308, 0.04378804564476013, 0.008299988694489002, 0.07347572594881058, -0.007562923710793257, 0.023342516273260117, 0.0036596860736608505, -0.002786424709483981, -0.004111538641154766, -0.002363413805142045, 0.028559651225805283, 0.014549014158546925, -0.02789308875799179, -0.030354242771863937, 0.01968923956155777, 0.020496806129813194, 0.03684041276574135, -0.01672816276550293, 0.01693325862288475, -0.0063387556001544, 0.017471635714173317, 0.034045975655317307, -0.051094602793455124, 0.03022605925798416, -0.013420985080301762, 0.0022993211168795824, -0.02581648901104927, -0.02779054082930088, -0.039506662636995316, -0.013023611158132553, -0.0029626793693751097, 0.007056592497974634, 0.0075693330727517605, 0.022996416315436363, -0.051607340574264526, -0.006684855557978153, -0.03096953220665455, -0.009261377155780792, 0.02809818461537361, 0.026457415893673897, -0.020304527133703232, 0.03532782569527626, -0.021073639392852783, 0.03330250084400177, 0.06352856010198593, -0.0041243573650717735, -0.027303436771035194, 0.024714097380638123, 0.013882451690733433, -0.026765059679746628, -0.017984377220273018, -0.02623949944972992, 0.019099587574601173, 0.006434894632548094, -0.03755825012922287, 0.06260562688112259, 0.030687525868415833, -0.01189558207988739, -0.026995792984962463, 0.015266851522028446, -0.0030283741652965546, 0.02758544497191906, 0.018612483516335487, 0.005611305125057697, 0.025778034701943398, 0.016241058707237244, 0.008357672020792961, -0.024534637108445168, -0.028790384531021118, -0.019407231360673904, 0.020765993744134903, 0.027457259595394135, 0.02224012278020382, 0.012331411242485046, -0.00789620541036129, 0.03225138410925865, 0.03663531690835953, 0.006194547284394503, 0.022304216399788857, 0.013055657967925072, -0.02727779932320118, 0.013408166356384754, -0.010562456212937832, 0.01974051259458065, 0.01621542125940323, 0.015074573457241058, 0.02804691158235073, 0.020842906087636948, 0.001732101896777749, 0.002688683569431305, 0.022816956043243408, -0.0007847334491088986, -0.06850214302539825, 0.0040314230136573315, -0.025444751605391502, 0.023727070540189743, -0.0040474459528923035, -0.02477818913757801, -0.008767864666879177, -0.016407698392868042, -0.05993937700986862, -0.022163212299346924, 0.04519808292388916, 0.010947011411190033, 0.005188293755054474, 0.013318437151610851, -0.01381835900247097, 0.012267318554222584, -0.029636407271027565, 0.005072927568107843, -0.020855724811553955, 0.01688198372721672, 0.01361326314508915, -0.009389562532305717, -0.00305881816893816, 0.0012914653634652495, 0.020009702071547508, 0.016702525317668915, 0.030533703044056892, -0.021214641630649567, -0.008748636581003666, -0.021599197760224342, 0.00992153026163578, -0.03953230008482933, 0.004073082935065031, -0.04840271174907684, 0.01818947307765484, 0.021599197760224342, -0.023765526711940765, 0.028226369991898537, 0.017638277262449265, 0.020765993744134903, 0.004624279215931892, -0.002587737748399377, 0.028277644887566566, -0.01834329590201378, -0.015830866992473602, -0.0003290753229521215, -0.011254656128585339, -0.021586379036307335, -0.010306086391210556, -0.01117133628576994, -0.0017849782016128302, 0.03448180481791496, -0.06675882637500763, -0.04312148317694664, -0.013600444421172142, 0.0077359736897051334, -0.02789308875799179, -0.04078851640224457, 0.0029851116705685854, 0.01807410642504692, -0.013702992349863052, -0.02373988926410675, 0.0018106153002008796, -0.011690485291182995, -0.007069411221891642, -0.010107398964464664, 0.01610005460679531, -0.039250291883945465, -0.009915121830999851, 0.004412773996591568, -0.017830554395914078, -0.016715344041585922, 0.01103674154728651, 0.009633113630115986, -0.011209791526198387, 0.016869165003299713, 0.00032106373691931367, -0.01677943579852581, 0.006723311264067888, 0.02265031635761261, -0.004460843279957771, -0.03253339231014252, 0.026893245056271553, 0.016894802451133728, 0.031559184193611145, 0.010818826965987682, 0.01647179201245308, 0.002573316916823387, -0.043916232883930206, 0.04301893711090088, -0.010427862405776978, 0.001109602744691074, 0.019086768850684166, -0.021701745688915253, -0.004098720382899046, 0.01197890192270279, -0.03663531690835953, 0.016638431698083878, -0.009677979163825512, 0.028354555368423462, -0.03427670896053314, 0.02431672252714634, -0.0018666962860152125, 0.00696045346558094, 0.012824924662709236, 0.014215732924640179, -0.015600132755935192, 0.0006200956413522363, -0.013305618427693844, 0.0032943582627922297, 0.00973566249012947, -0.001893935608677566, 0.00037914764834567904, -0.01911240629851818, 0.0026566372253000736, 0.013677355833351612, -0.004489684943109751, -0.012728785164654255, 0.011370022781193256, 0.014254189096391201, -0.007319372147321701, 0.016715344041585922, -0.04099361225962639, 0.0035571379121392965, -0.014254189096391201, 0.009767708368599415, -0.01381835900247097, -0.006973272189497948, -0.01495920680463314, -0.01979178749024868, -0.00630991393700242, -0.005931767635047436, 0.03814790025353432, -0.024457726627588272, 0.031148992478847504, -0.02622668258845806, 0.016920439898967743, 0.005271614529192448, 0.07111711800098419, -0.023727070540189743, 0.017215264961123466, 0.01936877705156803, -0.003057215828448534, -0.0314822718501091, 0.0009013018570840359, -0.007486012764275074, -0.006941225845366716, 0.008280760608613491, -0.042993299663066864, 0.030687525868415833, 0.05409413203597069, 0.0040154000744223595, -0.004762078169733286, -0.028841659426689148, 0.015728317201137543, 0.04278820380568504, 0.03781462088227272, -0.017535729333758354, 0.02930312603712082, -0.013728629797697067, -0.003464203793555498, -0.015407854691147804, -0.025752397254109383, -0.017984377220273018, 0.015254032798111439, -0.02140692062675953, -0.013408166356384754, 0.01301720179617405, -0.007511649746447802, 0.00911396462470293, -0.013908089138567448, 0.022163212299346924, -0.014766929671168327, -0.010306086391210556, 0.0246756412088871, -0.02181711234152317, 0.0325077548623085, 0.0053292978554964066, 0.018061287701129913, 0.006729720626026392, 6.930009840289131e-05, -0.003257505130022764, 0.02120182476937771, 0.04565954953432083, -0.02727779932320118, -0.03602002561092377, 0.021701745688915253, -0.022304216399788857, -0.008607632480561733, -0.019035493955016136, -0.027252163738012314, -0.039301566779613495, -0.015254032798111439, -0.011696894653141499, -0.001004651072435081, -0.017420362681150436, -0.018215110525488853, 0.0002291309501742944, 0.0024595526047050953, 0.015830866992473602, -0.02991841360926628, -0.03453307971358299, 0.05076131969690323, -0.007870567962527275, 0.015933414921164513, 0.0027175252325832844, -0.017574183642864227, -0.009178056381642818, -0.041634537279605865, -0.02523965574800968, 0.026867607608437538, -0.03476381301879883, 0.00771674606949091, 0.04089106246829033, -0.025380659848451614, 0.016330787912011147, -0.00893450528383255, -0.024957649409770966, -0.01611287333071232, 0.02115054987370968, 0.015125847421586514, 0.02794436365365982, -0.03481508791446686, -0.015907777473330498, 0.03635330870747566, 0.0022993211168795824, -0.023560430854558945, 0.010036896914243698, -0.005749104078859091, 0.0024483364541083574, -0.010165082290768623, 0.013754266314208508, 0.012042994610965252, 0.01708708144724369, -0.011126470752060413, -0.044967349618673325, -0.0001745521294651553, -0.02488073706626892, 0.002896984340623021, -0.025790851563215256, -0.002328162780031562, 0.014010637067258358, -0.017843373119831085, -0.012126315385103226, 0.012613418512046337, -0.005399799440056086, -0.015138666145503521, -0.006761766504496336, 0.0037622342351824045, -0.027200888842344284, 0.007261688821017742, -0.020971091464161873, -0.00599906500428915, -0.016958896070718765, 0.01938159391283989, -0.02462436817586422, 0.012286546640098095, -0.0019243796123191714, -0.003477022284641862, 0.03263593837618828, -4.493991218623705e-05, 0.007159140892326832, -0.0043294536881148815, 0.008402536623179913, 0.0010975853074342012, -0.0008476243237964809, 0.009357515722513199, 0.0039769443683326244, -0.007165549788624048, 0.0319950133562088, 0.020394258201122284, 0.02966204471886158, -0.007582151796668768, 0.005303660407662392, -0.03112335503101349, -0.024188537150621414, 0.008844775147736073, -0.001950016594491899, -0.008139757439494133, -0.00073706463444978, -0.001533414819277823, -0.00630991393700242, -0.026790697127580643, 0.018381750211119652, -0.0057170577347278595, -0.01642051711678505, 0.017958739772439003, 0.029021117836236954, 0.01911240629851818, 0.0037173693999648094, -0.005406208802014589, 0.01943286880850792, -0.005829219706356525, -0.016894802451133728, 0.05081259459257126, -0.004223700612783432, 0.011780215427279472, -0.023445064201951027, -0.02020197920501232, 0.00431022560223937, -0.03276412561535835, -0.012760831974446774, 0.01693325862288475, -0.03189246729016304, -0.009024234488606453, 0.024611549451947212, -0.01912522502243519, 0.00327993743121624, -0.026841970160603523, -0.01241473201662302, -0.00201410916633904, 0.03789152950048447, -0.02409880794584751, 0.0009381550480611622, -0.011222610250115395, -0.009126782417297363, -0.006011883728206158, 0.02966204471886158, -0.018099743872880936, -0.0034545897506177425, 0.004746055230498314, -0.011132880114018917, -0.039404116570949554, 0.019022677093744278, -0.01822792924940586, -0.02363734133541584, 0.0007438744651153684, -0.002802447881549597, 0.02618822641670704, -0.0298671405762434, 0.012273727916181087, 0.01610005460679531, -0.0125941913574934, 0.000708623556420207, 0.027611080557107925, -0.003996171988546848, 0.0071270945481956005, -0.016535883769392967, 0.026662511751055717, 0.015087392181158066, -0.030379880219697952, 0.01379272248595953, 0.007928251288831234, -0.04204472899436951, 0.01807410642504692, -0.02098390832543373, 0.03445616737008095, -0.034097250550985336, 0.01477974746376276, -0.00921651255339384, -0.004182040691375732, 0.022663135081529617, -0.0014340713387355208, 0.005188293755054474, 0.01594623364508152, 0.004758873488754034, 0.006473350338637829, -0.04019886255264282, -0.0090626897290349, -0.01822792924940586, 0.026508688926696777, -0.023470701649785042, -0.007832112722098827, -0.0006986090447753668, 0.009940758347511292, 0.014715655706822872, -0.007024546153843403, -0.04255747050046921, 0.02275286428630352, -0.0005343718221411109, -0.013382529839873314, 0.013908089138567448, -0.025060197338461876, 0.0046755531802773476, -0.03132845088839531, 0.003848759224638343, -0.0049383328296244144, -0.009293423034250736, -0.00485821720212698, 0.005255591124296188, -0.024752551689743996, -0.026636874303221703, -0.00158148433547467, 0.009126782417297363, -0.023765526711940765, -0.014536196365952492, -0.050786957144737244, -0.03932720422744751, -0.0125941913574934, -0.011517436243593693, 0.024547455832362175, -0.003225458785891533, 0.0165102481842041, 0.0007426727097481489, 0.04337785392999649, -0.019561054185032845, -0.007345009129494429, -0.021227460354566574, -0.008376899175345898, -0.012581372633576393, 0.004896672908216715, -0.0030203626956790686, 0.016433335840702057, 0.01730499602854252, 0.019753331318497658, -0.025906218215823174, -0.023496337234973907, 0.0333537757396698, -0.0005592076922766864, -0.0030203626956790686, -0.021317191421985626, -0.03827608749270439, -0.028277644887566566, 0.026688149198889732, 0.013030020520091057, -0.012972337193787098, 0.024239812046289444, 0.0002599754952825606, -0.020817268639802933, 0.021445374935865402, 0.020689083263278008, -0.003630844410508871, -0.00676817586645484, 0.005864470731467009, -0.03168736770749092, 0.008690953254699707, 0.0015758761437609792, 0.02504737861454487, 0.02707270346581936, 0.015279670245945454, 0.02208630181849003, 0.004364704247564077, 0.020291710272431374, 0.0035475241020321846, -0.011587937362492085, 0.04381368309259415, 0.002483587246388197, 0.006691264919936657, -0.02321433089673519, 0.01379272248595953, 0.03096953220665455, 0.03660967946052551, 0.007024546153843403, 0.012748013250529766, -0.0019756536930799484, 0.007659062743186951, 0.01026122085750103, -0.03602002561092377, -0.0029754978604614735, 0.0008924891008064151, -0.02623949944972992, -0.03455871716141701, 0.031815554946660995, 0.003733392572030425, -0.026944518089294434, -0.045172445476055145, 0.01839456893503666, 0.010818826965987682, -0.008831956423819065, 0.004464047960937023, 0.0064957826398313046, -0.04266001656651497, 0.03253339231014252, 0.008844775147736073, 0.016971714794635773, 0.021637653931975365, -0.022688772529363632, -0.022842593491077423, 0.03163609653711319, -0.0077359736897051334, 0.04235237464308739, -0.04055778309702873, 0.004489684943109751, 0.04845398664474487, 0.0171896293759346, 0.023714253678917885, 0.024291086941957474, -0.018766306340694427, -0.021381283178925514, 0.004223700612783432, 0.0016423722263425589, 0.03886573761701584, -0.007800066377967596, 0.025701122358441353, -0.008601224049925804, 0.026277955621480942, -0.007755201775580645, -0.0075693330727517605, 0.026841970160603523, 0.0018811171175912023, -0.03345632553100586, 0.01503611821681261, -0.019676420837640762, -0.007902614772319794, 0.005172270815819502, 0.007261688821017742, -0.002155112801119685, -0.019599510356783867, -0.013030020520091057, 0.019753331318497658, -0.015548858791589737, -0.006091999355703592, 0.029585132375359535, 0.03266157582402229, -0.018099743872880936, -0.0009061087621375918, 0.0017192832892760634, 0.016164148226380348, -0.011280293576419353, -0.011652030050754547, 0.019804606214165688, 0.007139912806451321, -0.0014036274515092373, -0.04445461183786392, -0.004595437552779913, -0.015677044168114662, -0.0001196728553622961, -0.03325122967362404, 0.031148992478847504, -0.025944674387574196, 0.003207833506166935, -0.01635642535984516, 0.023816801607608795, -0.0258677639067173, 0.0010262823197990656, 0.022317035123705864, 0.02753417007625103], [0.007736419327557087, 0.022031227126717567, 0.06657591462135315, 0.05571875348687172, -0.032571494579315186, 0.0002981673169415444, 0.006148490123450756, 0.022651243954896927, 0.01321322564035654, 0.023050809279084206, -0.0016413195990025997, 0.00045726163079962134, 0.004315998870879412, -0.017236439511179924, -0.024580180644989014, 0.05428582802414894, 0.0005433749756775796, 0.05874994024634361, 0.005731701385229826, -0.003010521177202463, 0.04017702490091324, 0.008259988389909267, 0.010898499749600887, 0.006045153830200434, -0.056821003556251526, -0.004236774519085884, 0.007164626847952604, 0.021879667416214943, -0.006878730840981007, -0.05026261508464813, 0.08917205035686493, -0.005249467212706804, -0.014384366571903229, -0.01512838527560234, 0.018683142960071564, 0.032461270689964294, -0.03736628592014313, 0.01558306347578764, -0.0037855408154428005, 0.017484445124864578, -0.03213059529662132, 0.032681722193956375, -0.07059913128614426, -0.004543337970972061, -0.06393051892518997, 0.04524737596511841, 0.02931985817849636, -0.006086488254368305, 0.0006213074666447937, 0.017787564545869827, -0.017484445124864578, -2.4246277462225407e-05, 0.013971022330224514, -0.011952526867389679, 0.011015613563358784, 0.019606277346611023, 0.0029002961236983538, 0.005538807716220617, -0.0007457411848008633, -0.015031938441097736, 0.015293722972273827, -0.023147257044911385, -0.03700805455446243, 0.005838482175022364, -0.019537385553121567, 0.0027935155667364597, 0.00031323713483288884, 0.0068305074237287045, -0.05053817480802536, 0.014549704268574715, 0.0210392028093338, 0.04174773022532463, 0.006568722892552614, -0.03676004707813263, 0.002736680908128619, -0.00979624968022108, 0.028300276026129723, 0.007660639472305775, -0.04174773022532463, -0.01762222684919834, -0.01989561691880226, 0.00182560202665627, -0.007412633392959833, 0.02215523086488247, -0.019909396767616272, -0.02940252609550953, -0.02434595301747322, 0.02152143605053425, -0.08448748290538788, 0.02143876813352108, 0.014136360026896, 0.03510667011141777, -0.00881111342459917, 0.01490793563425541, 0.041582390666007996, -0.027294473722577095, 0.03554757311940193, -0.024387286975979805, -0.005015238653868437, 0.03472088277339935, 0.0036477595567703247, 0.0007483246154151857, -0.0002723333309404552, -0.005769591312855482, 0.034224871546030045, -0.03116612695157528, -0.038992103189229965, 0.01419147290289402, 0.0017170993378385901, -0.02652289718389511, -0.06762305647134781, -0.014053691178560257, -0.042822424322366714, 0.037118278443813324, -0.01657508872449398, -0.011291176080703735, -0.006289715878665447, -0.007929312996566296, 0.0694417655467987, 0.0053183576092123985, -0.027997156605124474, 0.019551165401935577, -0.0194547176361084, -0.05232933163642883, -0.00624493695795536, -0.021576549857854843, 0.0046397848054766655, -0.031414132565259933, -0.05323868989944458, -0.02506241574883461, 0.027074022218585014, -0.004226441029459238, 0.025544650852680206, -0.04378689453005791, -0.019440939649939537, -0.01709865778684616, -0.037228502333164215, -0.0007621027179993689, -0.03673249110579491, -0.0694417655467987, 0.0086044417694211, 0.006716837640851736, 0.02785937674343586, 0.02774915099143982, -0.03926766663789749, -0.03207548335194588, 0.004023213405162096, 0.08118073642253876, 0.0015552062541246414, 0.0015999851748347282, -0.019440939649939537, 0.01966138929128647, -0.033177733421325684, -0.01906893029808998, -0.006227714009582996, -0.012097196653485298, -0.0021976116113364697, 0.08118073642253876, 0.008390880189836025, -0.01749822311103344, 0.016850652173161507, -0.026081997901201248, -0.019744059070944786, -0.0005317496252246201, 0.027211803942918777, -0.009162455797195435, -0.07170138508081436, 0.0456056073307991, -0.07120537012815475, -0.07236272841691971, -0.02846561372280121, -0.06811907142400742, -0.04866435006260872, 0.03218570724129677, -0.022554796189069748, -0.0185453612357378, -0.03127635270357132, -0.02143876813352108, 0.02920963242650032, -0.03560268506407738, -0.004553671460598707, -0.021397434175014496, -0.04340110346674919, -0.059797078371047974, -0.07396099716424942, 0.036704935133457184, -0.012248756363987923, 0.028121160343289375, -0.032984841614961624, 0.054313383996486664, 0.014439478516578674, 0.031111015006899834, 0.03427998349070549, 0.015197276137769222, -0.05064840242266655, 0.03458310291171074, -0.012234978377819061, -0.009121120907366276, -0.006038264837116003, 0.018269797787070274, 0.0232850369066, -0.029292302206158638, 0.07506324350833893, -0.02557220682501793, -0.03067011386156082, -0.052026212215423584, -0.012248756363987923, -0.012703434564173222, 0.003592647146433592, 0.008067094720900059, -0.016134189441800117, -0.08327501267194748, 0.013550789095461369, 0.01719510369002819, -0.023643268272280693, 0.010912277735769749, -0.04527493193745613, 0.0701582282781601, -0.01904137432575226, -0.02920963242650032, 0.011945637874305248, 0.023767272010445595, 0.01295144110918045, 0.003937100060284138, 0.012255645357072353, 0.053789813071489334, 0.011924969963729382, -0.06100955232977867, 0.014425700530409813, -0.023560600355267525, 0.00828754436224699, 0.0050393505953252316, 0.014301697723567486, -0.020267628133296967, 0.0032878059428185225, -0.03673249110579491, -0.009320903569459915, 0.029154520481824875, 0.029374970123171806, 0.009775582700967789, 0.037228502333164215, 0.018380023539066315, 0.026261113584041595, 0.002738403156399727, 0.01832491159439087, -0.0021907223854213953, -0.027694039046764374, -0.020060954615473747, 0.027487367391586304, 0.039295222610235214, 0.018393801525235176, 0.012600098736584187, 0.00994780845940113, -0.016092853620648384, 0.01511460728943348, -0.005779924802482128, 0.03262661024928093, -0.016823094338178635, 0.03948811814188957, 0.008859336376190186, 0.004271219950169325, -0.02725313790142536, -0.023050809279084206, -0.0007534914184361696, -0.06260781735181808, -0.0482785627245903, 0.0438971184194088, -0.06558389216661453, -0.04794788733124733, 0.039405446499586105, -0.05552585795521736, 0.010946723632514477, 0.03554757311940193, -0.0007543525425717235, -0.04185795411467552, -0.0057075899094343185, -7.841692422516644e-05, -0.0017317385645583272, 0.04309798777103424, -0.015596841461956501, -0.017856454476714134, -0.0025610097218304873, 0.03844098001718521, -0.0036822049878537655, -0.02525530941784382, 0.03265416622161865, -0.018145795911550522, -0.014246584847569466, -0.0272393599152565, 0.03524445369839668, 0.008962673135101795, -0.031414132565259933, -0.02951275184750557, -0.013633457943797112, 0.010182037018239498, 0.033177733421325684, -0.012606987729668617, -0.014880378730595112, 0.0009317459771409631, 0.010147592052817345, 0.008218653500080109, 0.042601972818374634, -0.02992609515786171, 0.008983340114355087, -0.020556967705488205, -0.00019170973973814398, 0.025778878480196, -0.006971733178943396, -0.0013562844833359122, -0.017222661525011063, -0.03664982318878174, -0.016506198793649673, 0.00823243148624897, -0.03306750953197479, -0.04615673050284386, -0.011277398094534874, 0.05530541017651558, -0.013681681826710701, -0.028630951419472694, 0.016630200669169426, 0.034968890249729156, -0.012062751688063145, 0.0695519968867302, -0.044999368488788605, 0.025806434452533722, -0.036098696291446686, 0.02413928136229515, -0.005566364154219627, -0.03725605830550194, -0.014632372185587883, -0.016134189441800117, 0.016230635344982147, 0.006744394078850746, -0.010154481045901775, -0.020749861374497414, -0.011043170467019081, 0.01071249507367611, 0.004236774519085884, 0.01242787204682827, 0.002344004111364484, 0.028851401060819626, -0.03447287902235985, 0.0017059046076610684, -0.02806604839861393, -0.02072230540215969, 0.05830904096364975, 0.016850652173161507, 0.02962297573685646, 0.02661934494972229, 0.03802763670682907, -0.03822052851319313, 0.03777962923049927, -0.039515674114227295, 0.006785728503018618, -0.08988851308822632, 0.021149426698684692, -0.03408709168434143, 0.0020667193457484245, -0.010085590183734894, -0.029016738757491112, -0.015899959951639175, -0.005907372571527958, 0.018049348145723343, 0.008886893279850483, -0.006430941633880138, 0.03714583441615105, -0.01977161504328251, 0.0054113599471747875, 0.03904721513390541, 0.0024662851355969906, -0.010905388742685318, 0.042409081012010574, -0.016010185703635216, 0.0016843762714415789, -0.06211180239915848, -0.033921752125024796, -0.010306039825081825, 0.023037031292915344, -0.028713619336485863, -0.004484781064093113, 0.08007848262786865, -0.035685352981090546, 0.04756209999322891, -0.01741555519402027, 0.09016407281160355, 0.016754204407334328, -0.0695519968867302, 0.01191119197756052, 0.010581602342426777, -0.0037373173981904984, 0.0016025685472413898, 0.0031810253858566284, -0.015045716427266598, -0.003193081356585026, 0.0020408853888511658, 0.02774915099143982, 0.03303995355963707, 0.029760757461190224, 0.03695294260978699, 0.003909544087946415, 0.04114149138331413, -0.007281741127371788, -0.02102542482316494, -0.05450627580285072, -0.02391883172094822, -0.021493880078196526, -0.03673249110579491, -0.01873825490474701, 0.01678176037967205, 0.000634224503301084, 0.061891354620456696, -0.015610619448125362, 0.039515674114227295, 0.0064619421027600765, 0.0015853459481149912, -0.006327605806291103, -0.03265416622161865, 0.054010264575481415, -0.008769778534770012, -0.00849421601742506, 0.017677338793873787, 0.031331464648246765, 0.009954698383808136, -0.004498559050261974, -0.038688983768224716, 0.0006600584601983428, 0.018724476918578148, -0.021397434175014496, 0.01627196930348873, -0.060017529875040054, -0.036704935133457184, 0.036319147795438766, 0.029485195875167847, 0.0347759984433651, -0.026178443804383278, -0.02704646624624729, 0.059907302260398865, -0.012806770391762257, -0.026440229266881943, -0.03800007700920105, 0.016506198793649673, -0.04783766344189644, -0.002147665712982416, 0.030615001916885376, 0.014770153909921646, 0.04566071927547455, 0.008425326086580753, -0.008921338245272636, 0.008873115293681622, 0.021176984533667564, 0.015238610096275806, 0.007598638068884611, -0.032047927379608154, 0.012758547440171242, -0.0806296095252037, 0.02795582264661789, 0.005190909840166569, -0.034748438745737076, 0.049491036683321, -0.07396099716424942, 0.017525779083371162, 0.05221910774707794, 0.036401815712451935, 0.07434678077697754, 0.009114231914281845, -0.024084169417619705, -0.050896406173706055, -0.0329572819173336, -0.02287169359624386, 0.02029518410563469, -0.004515781532973051, -0.0019737170077860355, 0.0370907224714756, 0.013757461681962013, 0.005314913112670183, -0.05952151492238045, -0.026261113584041595, -0.011105171404778957, -0.025916660204529762, -0.013165001757442951, 0.0058832610957324505, 0.05186087638139725, -0.039708565920591354, 0.013275226578116417, 0.06382029503583908, 0.022857915610074997, 0.024469956755638123, -0.0011108616599813104, -0.018931148573756218, 0.025709988549351692, -0.02310592122375965, -0.015018160454928875, 0.04009435325860977, -0.015899959951639175, -0.01481148786842823, -0.023340150713920593, -0.027377141639590263, -0.007619305048137903, 0.022554796189069748, -0.015775958076119423, 0.03574046492576599, -0.007653750479221344, 0.042409081012010574, 0.0003786832676269114, 0.0438971184194088, 0.0164786409586668, -0.0023198924027383327, 0.04373177886009216, -0.01584484800696373, -0.01460481621325016, -0.05968685448169708, 0.005569808650761843, 0.01625819131731987, 0.013454342260956764, 0.018600473180413246, 0.003596091642975807, 0.009334682486951351, -0.002373282564803958, -0.0172088835388422, 0.008163541555404663, 0.01697465404868126, -0.005328691098839045, 0.013557679019868374, 0.015279944986104965, -0.007626194041222334, -0.004188551101833582, -0.03946056216955185, -0.020253848284482956, -0.01862802915275097, 0.009975365363061428, 0.02663312293589115, -0.017994236201047897, -0.006127822678536177, 0.04814078286290169, -0.0018187130335718393, 0.009568910114467144, 0.03932277858257294, -0.019496051594614983, -0.023684602230787277, 0.005177131853997707, 0.015045716427266598, -0.017787564545869827, 0.011539182625710964, 0.019000038504600525, 0.01118095126003027, 0.013240781612694263, 0.015789736062288284, 0.024993525817990303, 0.0031638029031455517, 0.012469206005334854, 0.024304619058966637, -0.030587445944547653, 0.05698633939027786, 0.0007186155417002738, -0.00016372291429433972, -0.02962297573685646, 0.021287208423018456, -0.044889144599437714, 0.03700805455446243, -0.017263995483517647, 0.011208507232367992, 0.025613540783524513, 0.019730281084775925, -0.00199266173876822, -0.05249467119574547, 0.028823845088481903, 0.04262952879071236, 0.014480813406407833, -0.012331425212323666, -0.006527388468384743, -0.023588156327605247, 0.024097947403788567, 0.017277773469686508, -0.06123000383377075, 0.07153604179620743, 0.009803138673305511, -0.001820435281842947, -0.05558096989989281, -0.007584859617054462, -0.0037993190344423056, -0.022251678630709648, -0.012875661253929138, -0.004019768908619881, -0.018090682104229927, -0.006892508827149868, -0.014053691178560257, 0.009555132128298283, -0.01320633664727211, 0.0612851157784462, 0.01956494338810444, 0.009858250617980957, -0.00704062357544899, 0.021066758781671524, 0.01143584679812193, 0.01738799922168255, 0.020860087126493454, -0.027170469984412193, 0.024717962369322777, 0.013709237799048424, 0.015886181965470314, -0.009252013638615608, -0.005438916385173798, -0.026013106107711792, -0.04397978633642197, 0.017939124256372452, 0.016010185703635216, 0.015390169806778431, 0.005218466278165579, 0.018256019800901413, 0.02269257791340351, 0.008728444576263428, 0.004195440094918013, 0.018917370587587357, -0.0034152537118643522, 0.00034875888377428055, 0.009458685293793678, -0.04202329367399216, -0.01594129391014576, -0.004253997001796961, -0.016313305124640465, -0.010326707735657692, -0.025337979197502136, 0.014439478516578674, -0.023133477196097374, 0.030945677310228348, 0.007274852134287357, -0.01729155145585537, -0.031827475875616074, 0.016712870448827744, -0.02164543978869915, -0.0013166724238544703, 0.04797544330358505, -0.008514883928000927, -0.009486241266131401, -0.006234603002667427, 0.004253997001796961, 0.022224120795726776, 0.02496596984565258, 0.02621977962553501, -0.030918121337890625, 0.016960876062512398, 0.022086340934038162, 0.008687109686434269, -0.036512039601802826, 0.018256019800901413, 0.055884089320898056, 0.006771950051188469, 0.0040542143397033215, -0.00404043635353446, -0.004677674733102322, 0.01025092788040638, -0.04420023784041405, 0.02362949028611183, -0.01935826987028122, 0.018517805263400078, -0.019606277346611023, -0.032874614000320435, 0.0009704969124868512, 0.030615001916885376, 0.03389419615268707, -0.0009412184008397162, 0.026853572577238083, -0.022031227126717567, 0.010554046370089054, 0.03262661024928093, -6.420823046937585e-05, 0.010182037018239498, -0.033095065504312515, 0.011463402770459652, 0.012021416798233986, -0.06723726540803909, 0.002636789344251156, 0.046349626034498215, 0.02029518410563469, -0.002617844380438328, 0.05150264501571655, -0.01741555519402027, -0.014260362833738327, -0.01558306347578764, 0.014356809668242931, -0.017057323828339577, -0.00634482828900218, -0.012338314205408096, 0.012751658447086811, 0.006744394078850746, -0.015403947792947292, 0.02682601660490036, -0.02204500511288643, 0.028010936453938484, -0.01895870454609394, -0.0008262571645900607, 0.00398532347753644, 0.014122582040727139, 0.011842301115393639, -0.008397769182920456, 0.036098696291446686, 0.011690742336213589, -0.004994571674615145, -0.036704935133457184, -0.06685148179531097, -0.005128908436745405, 0.006434386130422354, -0.0007237823447212577, -0.04805811122059822, -0.03408709168434143, -0.021714331582188606, 0.022031227126717567, 0.020529411733150482, 0.049463480710983276, -0.025820212438702583, -0.007956868968904018, 0.005321802105754614, -0.04296020418405533, 0.006506721023470163, -0.03596091642975807, 0.023877497762441635, -0.01408813614398241, -0.001963383285328746, 0.0060795992612838745, -0.0006462803576141596, -0.009086675941944122, 0.042216185480356216, -0.017236439511179924, -0.035354677587747574, 0.014033024199306965, 0.029760757461190224, 0.015624397434294224, 0.003246471518650651, 0.010788274928927422, 0.030835451558232307, 0.0033894197549670935, 0.011525404639542103, 0.03912988677620888, -0.009107342921197414, 0.009513798169791698, 0.023023253306746483, -0.0297332014888525, -0.0034100867342203856, -0.04017702490091324, 0.028438057750463486, -0.023643268272280693, -0.06415096670389175, -0.011380733922123909, -0.03483111038804054, -0.022857915610074997, -0.017939124256372452, -0.005325246602296829, 0.023367706686258316, -0.01864180713891983, 0.006041709333658218, -0.006510165985673666, 0.012345203198492527, -0.008328878320753574, -0.031744807958602905, 0.028272720053792, -0.009562021121382713, -0.0028451834805309772, -0.0013158112997189164, 0.0109742796048522, 0.03075278364121914, -0.014563482254743576, 0.03138657659292221, 0.01636841706931591, 0.006262159440666437, 0.023849939927458763, -0.02920963242650032, 0.019633833318948746, 0.02163166180253029, 0.03097323328256607, 0.012469206005334854, 0.027804262936115265, -0.0010187203297391534, -0.009878918528556824, 0.03232349082827568, 0.02890651300549507, -0.015307500958442688, -0.019289379939436913, -0.055884089320898056, -0.023326370865106583, -0.04235396906733513, 0.012806770391762257, -0.002958853030577302, 0.0020718860905617476, -0.01367479283362627, -0.0017791008576750755, 0.030532333999872208, 0.005190909840166569, -0.010547157377004623, -0.0019788837525993586, -0.01507327239960432, -0.027776706963777542, 0.016643978655338287, -0.0028813511598855257, 0.001200419501401484, -0.017236439511179924, -0.0164786409586668, -0.010430043563246727, -0.06718215346336365, -0.008776667527854443, 0.043952230364084244, -0.042601972818374634, 0.0026075108908116817, 0.0164786409586668, 0.027087800204753876, 0.04869190603494644, 0.004719009157270193, -0.03637425974011421, -0.005862593650817871, 0.036291591823101044, -0.03863387182354927, 0.02342281863093376, 0.030008764937520027, 0.01665775664150715, -0.008618219755589962, 0.015500394627451897, -0.011518515646457672, -0.0025610097218304873, 0.013302783481776714, -0.02061207965016365, 0.00041743423207663, -0.002411172492429614, 0.002709124470129609, 0.004436557646840811, 0.00188415904995054, 0.008294433355331421, 0.0026712347753345966, -0.02131476439535618, 0.014618594199419022, 0.027942044660449028, -0.041169047355651855, 0.039515674114227295, 0.006021042354404926, 0.05726190283894539, 0.016409751027822495, -0.01283432636409998, -0.006534277461469173, 0.013743683695793152, 0.014480813406407833, 0.014287919737398624, 0.029044294729828835, 0.016947098076343536, -0.0033790860325098038, -0.005077240522950888, -0.0010566102573648095, -0.025751322507858276, 0.005166798364371061, 0.01283432636409998, -0.0232850369066, 0.01164940744638443, 0.023450374603271484, -0.0480305552482605, -0.015183498151600361, -0.020171180367469788, -0.006703059654682875, 0.006086488254368305, -0.00022012712724972516, 0.0022682244889438152, -0.0022096673492342234, -0.004185106605291367, -0.0053080241195857525, 0.014260362833738327, -0.004512337036430836, 0.0039887684397399426, -0.04039747267961502, 0.006751283071935177, 0.026026884093880653, 0.03596091642975807, 0.0064412751235067844, 0.0022957806941121817, -0.013688570819795132, 0.02663312293589115, -0.01098116859793663, 0.07010311633348465, -0.0012098918668925762, -0.016395973041653633, -0.014453256502747536, -0.0060899327509105206, 0.023367706686258316, 0.010436932556331158, 0.003098356770351529, 0.02641267329454422, -0.006465387064963579, 0.012930774129927158, 0.0019203267293050885, -0.011766522191464901, 0.0044537801295518875, 0.01171140931546688, 0.04453091323375702, 0.01321322564035654, -0.018572917208075523, -0.009844472631812096, 0.03615380823612213, 0.014494591392576694, 0.016919542104005814, 0.0068408409133553505, 0.024208171293139458, -0.0223756805062294, 0.005445805378258228, -0.01718132570385933, 0.006389607209712267, -0.016905764117836952, 0.010960501618683338, -0.024731740355491638, -0.004309109877794981, -0.00631727185100317, 0.009899585507810116, 0.0025523982476443052, -0.006362050771713257, 0.0210392028093338, -0.0018479914870113134, -0.011463402770459652, -0.0234090406447649, -0.03177236393094063, 0.009134898893535137, 0.03877165541052818, -0.019496051594614983, -0.024717962369322777, 0.004956681746989489, 0.011015613563358784, 0.0066376132890582085, 0.05012483149766922, -0.00776397529989481, -0.015004382468760014, -0.004953237250447273, 0.01217297650873661, 0.02320236898958683, 0.015169719234108925, -0.0026075108908116817, 0.008976451121270657, -0.039295222610235214, -0.00401287991553545, -0.000800853711552918, 0.014060580171644688, 0.015459060668945312, -0.013709237799048424, 0.00833576824516058, -0.023877497762441635, 0.01335789542645216, 0.03678760305047035, -0.03755917772650719, 0.03472088277339935, -0.010478266514837742, 0.010064923204481602, -0.017429333180189133, -0.020364074036478996, -0.040452584624290466, -0.021411212161183357, -2.4663388103363104e-05, 0.023877497762441635, 0.01051271241158247, 0.0476723238825798, -0.04227129742503166, -0.012923884205520153, -0.028934070840477943, -0.027390919625759125, 0.029650533571839333, 0.0259028822183609, 0.0003407933982089162, 0.03055988997220993, 0.004367666784673929, 0.0001311075029661879, 0.023684602230787277, -0.003060466842725873, -0.04017702490091324, 0.033921752125024796, 0.023353928700089455, -0.014894156716763973, -0.02733580768108368, -0.03488622233271599, 0.022348124533891678, -0.0032878059428185225, -0.016313305124640465, 0.048113226890563965, 0.023271258920431137, 0.005101351998746395, 0.004050769843161106, -9.397114627063274e-05, 0.007467745803296566, 0.018820922821760178, -0.0018514359835535288, -0.0032395825255662203, 0.04508203640580177, 0.050290171056985855, 0.015348834916949272, -0.02183833345770836, -0.01979917101562023, -0.012028306722640991, 0.050593286752700806, 0.04067303612828255, -0.006913176272064447, 0.022940583527088165, -0.010781385935842991, 0.01262765470892191, 0.02174188755452633, 0.006651391740888357, -0.012696545571088791, 0.028961626812815666, -0.02320236898958683, 0.007874200120568275, 0.012386538088321686, 0.001274476875551045, 0.019523607566952705, 0.006138156168162823, -0.01822846382856369, 0.030366996303200722, -0.0023112811613827944, -0.018820922821760178, 0.010691828094422817, -0.007943090982735157, -0.05177820846438408, -0.0039818789809942245, -0.03995657339692116, 0.017484445124864578, 0.0038475424516946077, -0.04483402892947197, -0.0007164626731537282, -0.010485155507922173, -0.0329572819173336, 1.1497471859911457e-05, 0.01741555519402027, 0.01144273579120636, 0.0040817707777023315, 0.02579265646636486, -0.04017702490091324, 0.018269797787070274, -0.0503452830016613, 0.013757461681962013, -0.0347759984433651, 0.014783931896090508, 0.026467785239219666, 0.009128009900450706, 0.009424240328371525, 0.002142498968169093, 0.040865927934646606, -0.0020908310543745756, 0.021921003237366676, -0.008790446445345879, 0.017884010449051857, -0.006610057316720486, 0.01388146448880434, -0.036291591823101044, 0.00569381145760417, -0.04279486835002899, 0.0016120410291478038, 0.012283201329410076, -0.015472838655114174, 0.009410461410880089, 0.0006083904881961644, 0.03742139786481857, 0.02649534121155739, -0.028203830122947693, 0.012200532481074333, -0.02205878309905529, -0.00808776170015335, -0.003685649484395981, -0.010216481983661652, -0.02072230540215969, -0.0007130181766115129, -0.009424240328371525, -0.00292785232886672, 0.03984634950757027, -0.0462118424475193, -0.02566865272819996, -0.0038682096637785435, -0.0043332213535904884, -0.01905515231192112, -0.04194062203168869, -0.0076950849033892155, 0.026247335597872734, -0.0248695220798254, -0.003764873603358865, 0.00582814821973443, -0.017222661525011063, -0.0027694038581103086, 0.004195440094918013, -0.020791195333003998, -0.046762969344854355, -0.021480102092027664, 0.009589577093720436, -0.015004382468760014, -0.02391883172094822, 0.016809316352009773, 0.012806770391762257, -0.0017007377464324236, 0.0002426242281217128, -0.004450335633009672, -0.03086300753057003, 0.002313003409653902, 0.019289379939436913, -0.020322740077972412, -0.024676628410816193, 0.019812949001789093, 0.013592123985290527, 0.02372593805193901, -0.006506721023470163, 0.0032774724531918764, 0.010684939101338387, -0.022113896906375885, 0.03011898882687092, 0.017580892890691757, 0.0037407618947327137, 0.0026454005856066942, 0.00025360367726534605, -0.004849901422858238, 0.010760718025267124, -0.01340611930936575, 0.024056613445281982, -0.0010807219659909606, 0.0025213975459337234, -0.017787564545869827, 0.01895870454609394, -0.0011745854280889034, 0.015279944986104965, 0.024993525817990303, 0.008170430548489094, -0.009672245942056179, -0.021287208423018456, 0.00926579162478447, 0.004622562322765589, 0.027928266674280167, -0.004615672864019871, -0.017636004835367203, -0.03044966422021389, 0.020763639360666275, -0.003954323008656502, -0.01833868958055973, -0.0019168821163475513, 0.02287169359624386, 0.018256019800901413, 0.00641716318204999, 0.01905515231192112, -0.04990438371896744, 0.04461358115077019, 0.004967015236616135, 0.006410274188965559, -0.018380023539066315, -0.03276439011096954, 0.0030432441271841526, -0.010058034211397171, -0.015431503765285015, -0.00020387324912007898, 0.04792033135890961, -0.002533453516662121, 0.01624441333115101, -0.01195941586047411, 0.011635629460215569, -0.018876036629080772, 0.09027429670095444, -0.002195889363065362, 0.0006480026058852673, 0.01718132570385933, 0.02579265646636486, -0.030284326523542404, 0.002826238749548793, 0.010436932556331158, 0.001757572521455586, -0.01977161504328251, -0.048113226890563965, 0.02310592122375965, 0.03337062895298004, 0.003065633587539196, -0.0004865401715505868, -0.01573462225496769, -0.005738590378314257, 0.021617883816361427, 0.024318397045135498, -0.021507658064365387, 0.014019246213138103, -0.020281406119465828, 0.007164626847952604, -0.008005092851817608, -0.025971772149205208, -0.0200058426707983, 0.02174188755452633, -0.03425242751836777, -0.01191119197756052, 0.01948227360844612, -0.008211764506995678, 0.017649782821536064, -0.0018962149042636156, -0.004491670057177544, -0.006120933685451746, 0.021810777485370636, -0.0022906139492988586, -0.02515886351466179, 0.038275640457868576, 0.0067340605892241, 0.004388333763927221, 0.010147592052817345, -0.007309297099709511, -0.02599932812154293, 0.030504776164889336, 0.023119699209928513, -0.03213059529662132, -0.028438057750463486, 0.024387286975979805, 0.005118574947118759, -0.0014139804989099503, -0.012310758233070374, -0.048829689621925354, -0.04249174892902374, -0.030477220192551613, -0.012014527805149555, 0.005294246133416891, -0.0006109739188104868, -0.0086044417694211, -0.014797709882259369, 0.017346663400530815, 0.023753494024276733, -0.04990438371896744, -0.017939124256372452, 0.015486616641283035, -0.039929017424583435, 0.0172088835388422, 0.010526490397751331, -0.010788274928927422, 0.01005114521831274, -0.03885432332754135, -0.009252013638615608, 0.04797544330358505, -0.01067116018384695, 0.025393091142177582, 0.03725605830550194, -0.027115358039736748, 0.010746940039098263, -0.01294455211609602, -0.04144461080431938, 0.004505448043346405, 0.033508408814668655, 0.00082496547838673, 0.03863387182354927, -0.03345329686999321, -0.030091432854533195, 0.05365203320980072, 0.017525779083371162, -0.014177693985402584, 0.02287169359624386, 0.0038544314447790384, -0.007109514437615871, -0.004484781064093113, 0.028630951419472694, 0.011752743273973465, 0.03097323328256607, -0.015500394627451897, -0.05020749941468239, -0.01616174541413784, -0.03312262147665024, 0.000437025009887293, -0.02610955387353897, -0.013254559598863125, 0.007247295696288347, -0.05260489508509636, -0.011559849604964256, -0.006703059654682875, 0.006668614223599434, -0.0164786409586668, -0.0047224536538124084, -0.011263620108366013, -0.0056800334714353085, 0.008452882058918476, -0.00582814821973443, -0.027390919625759125, -0.018917370587587357, 0.02269257791340351, -0.040755704045295715, -0.015362613834440708, -0.008880004286766052, -0.005235688760876656, 0.013543900102376938, 0.020446743816137314, -0.005066907033324242, -4.566696225083433e-05, 0.015445281751453876, -0.020529411733150482, 0.00834265723824501, -0.002734958427026868, 0.011952526867389679, -0.005301135126501322, 0.010905388742685318, 0.01959249936044216, 0.03510667011141777, 0.0021648884285241365, 0.02030896209180355, -0.005001460667699575, -0.01687820814549923, -0.0008576884865760803, 0.013778128661215305, -0.019633833318948746, 0.014591038227081299, -0.009169344790279865, 0.004129994194954634, -0.03315017744898796, 0.02477307617664337, 0.0002572634839452803, -0.021617883816361427, 0.0036580930463969707, 0.008597551845014095, 0.015996407717466354, 0.003950878512114286, 0.011980082839727402, 0.019509829580783844, -0.017332885414361954, -0.031414132565259933, 0.0420784056186676, -0.005972818937152624, 0.007943090982735157, -0.02630244754254818, -0.020446743816137314, 0.005576697643846273, -0.04659762978553772, -0.022334346547722816, 0.009341571480035782, -0.00683395192027092, -0.003534090006724, 0.004322887863963842, -0.011800967156887054, -0.0006785728619433939, -0.04486158862709999, -0.03601602837443352, 0.003427309449762106, 0.015789736062288284, -0.038385868072509766, -0.004315998870879412, 0.017443111166357994, 0.0175120010972023, -0.029430082067847252, -0.022251678630709648, -0.01986806094646454, 0.0005132352816872299, 0.005835037678480148, -0.018820922821760178, -0.014246584847569466, -0.002629900351166725, -0.030091432854533195, -0.01505949441343546, 0.01802179217338562, 0.002430117456242442, 0.002192444633692503, -0.015624397434294224, 0.009906474500894547, 0.004725898150354624, -0.003881987649947405, 0.0005872927140444517, 0.017787564545869827, -0.026454007253050804, -0.007757086306810379, -0.009803138673305511, 0.017057323828339577, -0.007984425872564316, -0.0368427149951458, -0.012786103412508965, 0.019840504974126816, -0.03924011066555977, 0.005645588040351868, -0.009892696514725685, 0.03822052851319313, -0.00808087270706892, 0.024828188121318817, -0.0195787213742733, 0.011670075356960297, 0.03998412936925888, -0.015720844268798828, 0.005914261564612389, 0.0031173015013337135, 0.014439478516578674, 0.0023698380682617426, -0.029457639902830124, 0.00018998747691512108, -0.006964844185858965, 0.018490249291062355, -0.04568827524781227, -0.01821468584239483, 0.01262765470892191, 0.018683142960071564, 0.006682392209768295, 0.0072128502652049065, -0.04039747267961502, 0.04172017425298691, -0.0013743683230131865, -0.0053183576092123985, 0.012792992405593395, -0.019344491884112358, 0.008411547169089317, -0.03348085284233093, -0.01077449694275856, -0.0074264113791286945, -0.012779214419424534, -0.026963798329234123, 0.011732076294720173, -0.015169719234108925, -0.021810777485370636, 0.009885807521641254, -0.0033498075790703297, -0.013633457943797112, 0.00033648774842731655, -0.03552001714706421, -0.03157947212457657, -0.014990603551268578, 0.011380733922123909, 0.00416788412258029, 0.0011513348435983062, 0.02360193431377411, -0.014177693985402584, 0.02401527762413025, -0.0376969613134861, 0.010884721763432026, -0.04232640936970711, -0.0465700738132, 0.004787899553775787, 0.019509829580783844, -0.02072230540215969, 0.013550789095461369, 0.03700805455446243, -0.004570894408971071, -0.028121160343289375, -0.03499644622206688, 0.04290509223937988, 0.010788274928927422, 0.0017601558938622475, -0.015279944986104965, -0.023657046258449554, -0.02183833345770836, 0.028768733143806458, 0.018517805263400078, -0.01408124715089798, 0.03800007700920105, -0.014935491606593132, -0.015624397434294224, 0.045715831220149994, -0.0039612120017409325, -0.01283432636409998, 0.03022921457886696, -0.0017291551921516657, 0.0013829796807840466, -0.0029743534978479147, 0.006306938361376524, 0.0027952378150075674, 0.023450374603271484, 0.012765436433255672, -0.004877457395195961, 0.007336853537708521, 0.02931985817849636, 0.020240070298314095, -0.007460856810212135, 0.05414804443717003, 0.0026712347753345966, -0.01434303168207407, 0.012586320750415325, 0.000483095645904541, 0.04348377510905266, 0.003353252075612545, 0.027184247970581055, 0.010106257162988186, 0.029154520481824875, 0.02018495835363865, -0.0052046882919967175, -0.008611330762505531, 0.00026974992942996323, -0.005108240991830826, -0.010092479176819324, -0.027831820771098137, 0.008880004286766052, -0.00034811304067261517, 0.009072897955775261, -0.020543189719319344, -0.009320903569459915, 0.011174062266945839, -0.00037179418723098934, 0.0043607777915894985, -0.002244112780317664, -0.03405953571200371, 0.014439478516578674, -0.0052253552712500095, -0.0032137485686689615, -0.02477307617664337, -0.027983378618955612, -0.041058823466300964, 0.02641267329454422, -0.028520725667476654, 0.02920963242650032, -0.03772451728582382, 0.011366955935955048, 0.03105590119957924, 0.009155566804111004, 0.009658467955887318, 0.026578010991215706, -0.00797064695507288, 0.007757086306810379, -0.002786626573652029, 0.021080536767840385, 0.03405953571200371, -0.023960165679454803, 0.03326040133833885, 0.007150848861783743, 0.03543734550476074, -0.004236774519085884, 0.0006376689998432994, -0.00036834966158494353, 0.005373470019549131, -0.028121160343289375, -0.01419147290289402, -0.014039913192391396, -0.013261448591947556, 0.010347374714910984, -0.0013037554454058409, -0.016010185703635216, -0.02495219185948372, -0.0040748813189566135, 0.007405743934214115, -0.010547157377004623, 0.024318397045135498, 0.027735373005270958, 0.014315475709736347, -0.020639637485146523, -0.016947098076343536, -0.009382905438542366, 0.02196233719587326, -0.01492171362042427, -0.014990603551268578, 0.02135610021650791, 0.012303869239985943, 0.010133814066648483, -0.01738799922168255, 0.002538620261475444, 0.006520499475300312, -0.009968476369976997, -0.02722558192908764, 0.04367666691541672, -0.026743346825242043, 0.00978247169405222, -0.0209151990711689, 0.01143584679812193, 0.0055215852335095406, -0.01676798239350319, 0.020694749429821968, 0.02755625732243061], [0.010579649358987808, 0.003773184958845377, 0.07456643879413605, 0.04588085785508156, -0.008852086029946804, 0.052603621035814285, -0.04081869497895241, 0.03773854672908783, -0.010218066163361073, 0.06433498114347458, -0.010191282257437706, -0.024252841249108315, 0.029997991397976875, 0.006568756885826588, -0.04847889766097069, 0.02698480151593685, 0.000487551063997671, 0.04440774396061897, -0.00842354353517294, -0.005972814746201038, 0.06160302087664604, 0.01671316660940647, -0.02714550495147705, -0.00991005077958107, -0.049443118274211884, -0.04349708929657936, 0.008303015492856503, -0.0011525456793606281, 0.028792716562747955, -0.08501216769218445, 0.0848514661192894, -0.04213110730051994, 0.011845189146697521, -0.01894962415099144, 0.0069906036369502544, 0.011436734348535538, -0.03203357011079788, -0.014757940545678139, 0.013833895325660706, 0.02450728788971901, 0.023007389158010483, 0.01120907161384821, -0.017275629565119743, -0.005671495571732521, -0.03597080707550049, 0.05490703880786896, 0.008256143890321255, -0.03414950147271156, 0.021708369255065918, 0.00315380678512156, 0.024815304204821587, 0.037310004234313965, -0.0023837690241634846, -0.0435238741338253, 0.01963261514902115, -0.0033848180901259184, 0.01459723711013794, 0.02382429875433445, 0.04403276741504669, -0.02054326795041561, 0.011630917899310589, -0.014798116870224476, -0.015012388117611408, 0.011302814818918705, 0.004790973849594593, 0.005202776752412319, -0.02679731324315071, 0.002639890182763338, -0.01112871989607811, -0.019163895398378372, 0.05672834441065788, 0.04537196457386017, 0.0028809455689042807, -0.02871236391365528, 0.0023050913587212563, -0.005299868527799845, -0.019404951483011246, 0.024413544684648514, -0.040791913866996765, -0.01562841795384884, -0.039211660623550415, 0.028042765334248543, 0.029783720150589943, -0.0030684329103678465, 0.031712163239717484, -0.020248644053936005, -0.06412070989608765, 0.0034099279437214136, -0.04122045636177063, -0.010405553504824638, -0.00824944768100977, 0.016565855592489243, -0.061120908707380295, 0.02541794255375862, 0.05220186337828636, -0.020744146779179573, 0.05769256874918938, -0.03393523022532463, -0.014583845622837543, 0.009856482967734337, -0.027908846735954285, -0.03374774008989334, -0.039238445460796356, 0.00729861855506897, 0.0044762627221643925, -0.02628841996192932, -0.007961520925164223, 0.04778251796960831, 0.016565855592489243, -0.03773854672908783, -0.03235497698187828, -0.04207754135131836, -0.012139812111854553, 0.074405737221241, -0.03859563171863556, -0.019779926165938377, -0.05463920161128044, 0.004707274027168751, 0.03337276726961136, 0.009086444973945618, -0.0664776936173439, 0.005658103618770838, 0.02539115771651268, -0.05838894844055176, 0.021708369255065918, -0.03232819214463234, 0.0020556659437716007, -0.029114123433828354, -0.07033457607030869, -0.03473874554038048, 0.04746110737323761, -0.037845682352781296, 0.0319800041615963, -0.07933397591114044, -0.023395756259560585, -0.011885365471243858, -0.012186684645712376, -0.03969377279281616, 0.006535276770591736, -0.039211660623550415, 0.04952347278594971, 0.018534474074840546, -0.004951677285134792, 0.04411311820149422, -0.0832444280385971, 0.0005946867750026286, 0.006140213925391436, 0.03618507832288742, 0.0030684329103678465, -0.03093542903661728, 0.008149008266627789, 0.03618507832288742, -0.04387206211686134, -0.012253643944859505, 0.011409950442612171, 0.03385487571358681, 0.032435327768325806, 0.03771176189184189, 0.006736156065016985, -0.022177087143063545, -0.02402517758309841, -0.019565654918551445, -0.013941030949354172, 0.011342991143465042, -0.0009583621867932379, 0.007894560694694519, -0.021092338487505913, 0.039559852331876755, -0.0563533715903759, -0.07253085821866989, -0.031765732914209366, -0.030480103567242622, -0.056621208786964417, -0.004854585975408554, -0.01164431031793356, -0.049657389521598816, 0.014731156639754772, -0.00386692862957716, -0.0009148383396677673, -0.011349686421453953, -0.009381068870425224, 0.015293619595468044, -0.09170814603567123, -0.051210857927799225, -0.05619266629219055, 0.036774326115846634, -0.005236256867647171, 0.03618507832288742, -0.053835682570934296, 0.004780930001288652, 0.03114970028400421, 0.03618507832288742, 0.03583688661456108, 0.004851237870752811, -0.027614222839474678, 0.027614222839474678, 0.0033982100430876017, -0.00818248838186264, 0.0006394661031663418, -0.011316207237541676, 0.023757338523864746, -0.02435997687280178, 0.05790683999657631, 0.014677588827908039, -0.008785126730799675, -0.009093141183257103, -0.035569049417972565, 0.008242751471698284, -0.007539674174040556, -0.06219226494431496, 0.002385443076491356, -0.04255964979529381, -0.013043769635260105, 0.010405553504824638, -0.026502691209316254, 0.011865276843309402, -0.03929201140999794, 0.029274826869368553, -0.0003789506445173174, 0.0351405069231987, -0.0022933732252568007, 0.013941030949354172, 0.011282727122306824, -0.03495301678776741, -0.0313371866941452, 0.009448028169572353, 0.016378367319703102, -0.07017387449741364, -0.011142111383378506, -0.0706024169921875, -0.00948820449411869, 0.01016449835151434, -0.01688726246356964, -0.012568355537950993, -0.01862821727991104, -0.04612191393971443, 0.004248599521815777, 0.0007407428347505629, -0.0036660493351519108, 0.039908044040203094, 0.037845682352781296, -0.007512889802455902, 0.01880231313407421, 0.02470816858112812, 0.029274826869368553, -0.007740553468465805, -0.018159499391913414, -0.021694976836442947, 0.04783608391880989, 0.03736357018351555, 0.034872666001319885, 0.023261835798621178, 0.07119166105985641, -0.029997991397976875, 0.0058087632060050964, 0.010981407947838306, -0.01617748849093914, -0.056460507214069366, 0.006063210312277079, -0.008142312057316303, -0.018052363768219948, 0.01122915931046009, -0.019592437893152237, -0.010325201787054539, -0.0642814114689827, -0.006829900201410055, -0.003699529217556119, -0.007854385301470757, -0.03840814530849457, 0.05565698817372322, -0.05426422506570816, 0.03996160998940468, 0.012675491161644459, -0.023944826796650887, -0.03763141110539436, 0.030533671379089355, -0.016110528260469437, -0.03950628265738487, 0.0025712563656270504, -0.022324398159980774, -0.05876392498612404, 0.0005134979728609324, 0.0011918845120817423, -0.0417829193174839, 0.029864072799682617, 0.048586033284664154, -0.003140414832159877, -0.04440774396061897, -0.014543669298291206, -0.005768587347120047, 0.06021025404334068, 0.0038736246060580015, 0.013258040882647038, -0.006598888896405697, 0.038006383925676346, 0.02852487564086914, 0.02748030424118042, 0.0017610428621992469, -0.0022481754422187805, -0.011195679195225239, 0.021467313170433044, 0.02052987553179264, -0.01303037814795971, -0.06219226494431496, -0.03977412357926369, 0.016806911677122116, 0.01459723711013794, 0.012494699098169804, -0.037149298936128616, 0.010820704512298107, -0.01329152099788189, 0.03200678527355194, -0.03023904748260975, -0.06947749108076096, -0.03583688661456108, -0.013197777792811394, 0.011898756958544254, 0.018668392673134804, 0.0055040959268808365, 0.002089145826175809, 0.02906055562198162, -0.0013659800169989467, 0.02887306734919548, -0.01806575432419777, -0.016565855592489243, -0.026569649577140808, 0.010157802142202854, 0.029248042032122612, -0.03897060453891754, -0.021293217316269875, -0.015039172023534775, -0.02158784121274948, 0.012300516478717327, 0.006039774511009455, -0.00992344319820404, -0.01530701108276844, -0.022016383707523346, 0.05517487972974777, 0.01615070551633835, 0.04084547981619835, 0.010626520961523056, -0.01669977605342865, -0.030533671379089355, 0.012066156603395939, -0.0508091002702713, 0.04422025382518768, 0.02624824270606041, 0.029515881091356277, 0.0052161687053740025, 0.08217307180166245, 0.010586344636976719, 0.04839854687452316, -0.03779211267828941, 0.00798830483108759, -0.0762806087732315, 0.010144410654902458, -0.0021561055909842253, 0.012782626785337925, -0.01998080499470234, -0.009012789465487003, 0.01651228778064251, 0.011704573407769203, 0.02192264050245285, 0.026542866602540016, 0.04028301686048508, -0.017248844727873802, -0.01775773987174034, -1.067171888280427e-05, 0.04871995374560356, -0.009307412430644035, 0.014503493905067444, 0.057103320956230164, 0.02417248860001564, 0.02453407272696495, -0.02521706186234951, -0.022993996739387512, 0.009575252421200275, 0.02588666044175625, -0.022900253534317017, 0.016592638567090034, 0.01562841795384884, 0.03361382335424423, 0.026877665892243385, 0.003863580757752061, 0.023717163130640984, 0.03543512895703316, -0.06969176232814789, -0.023904649540781975, -0.02227083034813404, 0.01532040350139141, 0.011289423331618309, -0.003572305664420128, -0.03846171125769615, 0.03913130983710289, -0.030855078250169754, 0.02402517758309841, 0.01042564120143652, 0.004995201248675585, 0.03891703858971596, 0.014731156639754772, -0.004151507746428251, -0.04960382357239723, -0.008872173726558685, -0.012849586084485054, -0.049443118274211884, -0.02154766581952572, -0.06953106075525284, -0.010593040846288204, 0.003719617146998644, -0.028658796101808548, 0.02536437287926674, 0.009950227104127407, 0.059031762182712555, 0.00568823516368866, 0.003349664155393839, -0.027426736429333687, -0.05094302073121071, 0.0386224165558815, -0.016646206378936768, -0.02035577967762947, 0.042345378547906876, 0.030694374814629555, 0.003133718855679035, 0.0033814702183008194, -0.045104123651981354, 0.010077450424432755, 0.03380130976438522, -0.015949824824929237, -0.010191282257437706, -0.06974533200263977, -0.015146307647228241, 0.021507488563656807, 0.01983349397778511, 0.022364575415849686, -0.04542553052306175, -0.03473874554038048, 0.015199875459074974, 0.01707475073635578, -0.02399839460849762, -0.04298819601535797, 0.012333995662629604, -0.015186483971774578, 0.029703369364142418, 0.0016430262476205826, -0.036774326115846634, 0.01443653367459774, 0.005751847289502621, -0.003379796165972948, -0.01121576689183712, 0.0020506440196186304, -0.0034919537138193846, 0.013077249750494957, -0.046684376895427704, -0.006578800734132528, -0.024574248120188713, 0.02434658445417881, 0.03645291551947594, -0.038327790796756744, 0.04258643463253975, -0.04140794277191162, 0.01736937277019024, 0.04641653597354889, 0.049469903111457825, 0.06910251826047897, 0.015708770602941513, -0.031712163239717484, -0.04057764261960983, -0.009615427814424038, -0.01648550294339657, -0.017489900812506676, -0.006408053450286388, -0.009722563438117504, -0.01191884558647871, -0.026502691209316254, 0.005028681363910437, -0.00465705431997776, -0.021078946068882942, -0.056406937539577484, 0.005638015456497669, -0.02172175981104374, 0.041274022310972214, 0.05683548003435135, -0.04596120864152908, -0.011262639425694942, 0.06304935365915298, 0.007620025891810656, 0.061817292124032974, -0.017811307683587074, -0.006063210312277079, 0.0009516662103123963, -0.01845412142574787, -0.007198179140686989, 0.04073834419250488, -0.015065955929458141, 0.005778631195425987, -0.008048568852245808, -0.019431734457612038, -0.0030684329103678465, 0.02524384669959545, 0.00038250788929872215, 0.02381090633571148, -0.03768497705459595, 0.03476553037762642, 0.015896257013082504, 0.023690378293395042, 0.014249046333134174, -0.005638015456497669, -0.011396558955311775, -0.03589045628905296, 0.016445327550172806, -0.056942615658044815, 0.034336987882852554, 0.018387163057923317, 0.006364529486745596, -0.011068455874919891, -0.007948128506541252, 0.03093542903661728, -0.030480103567242622, -0.05413030460476875, 0.00964890792965889, 0.02121286652982235, -0.033292412757873535, 0.016726559028029442, 0.013284824788570404, -0.014007991179823875, 0.02050309255719185, -0.02576613239943981, -0.03739035502076149, -0.01443653367459774, 0.019712965935468674, 0.020583443343639374, -0.026328595355153084, -0.023422539234161377, 0.040765129029750824, 0.0015425864839926362, 0.015065955929458141, -0.013673191890120506, -0.013559360057115555, 0.007305314764380455, -0.025632213801145554, 0.023395756259560585, -0.013284824788570404, 0.008309711702167988, 0.02205655910074711, 0.004395911004394293, -0.0037798809353262186, 0.006056514102965593, 0.04073834419250488, 0.016405152156949043, 0.012936634011566639, 0.014088342897593975, 0.014503493905067444, -0.002964645391330123, 0.004824453964829445, -0.0008294645813293755, 0.007901256904006004, 0.0010370399104431272, -0.059728145599365234, 0.045157693326473236, -0.008021784946322441, -0.01880231313407421, 0.02227083034813404, 0.0053634801879525185, 0.01303707342594862, -0.014838292263448238, 0.003423319896683097, 0.027507087215781212, 0.005162600893527269, -0.01347231213003397, 0.014637413434684277, -0.024801911786198616, 0.006806463934481144, -0.0028139858040958643, -0.03613150864839554, 0.042345378547906876, 0.021802112460136414, 0.008671294897794724, -0.03998839482665062, 0.038890253752470016, 0.005842242855578661, -0.01915050484240055, 0.017449725419282913, -0.05040733888745308, -0.01444992609322071, -0.00023310381220653653, 0.011001495644450188, -0.006799768190830946, -0.04368457570672035, 0.016552463173866272, 0.02660982683300972, 0.03093542903661728, -0.0008771734428592026, -0.013780327513813972, -0.0002858346560969949, -0.004405955318361521, 0.040068745613098145, 0.0004385867214296013, 0.006414749193936586, 0.005008593201637268, 0.01156395860016346, 0.00012764212442561984, -0.000303830107441172, -0.015588242560625076, 0.009655604138970375, -0.039747338742017746, 0.009622124023735523, 0.027399951592087746, -0.0033111623488366604, 0.025431333109736443, 0.012822802178561687, 0.00464701047167182, 0.01704796589910984, -0.012213468551635742, -0.04411311820149422, -0.01286967471241951, 0.021333392709493637, -0.03621186316013336, -0.023610027506947517, -0.010131018236279488, -0.009180189110338688, -0.01505256351083517, -0.011162199079990387, 0.02119947411119938, -0.022833293303847313, -0.011416646651923656, -0.02642233856022358, -0.029623016715049744, -0.027172287926077843, -0.007271834649145603, -0.007198179140686989, -0.027962414547801018, 0.018748745322227478, 0.001941834343597293, -0.004362431354820728, 0.007974912412464619, 0.009220365434885025, 0.024065352976322174, -0.01192554086446762, -0.004553266800940037, 0.008965917862951756, 0.03302457556128502, 0.03811351954936981, 0.019029976800084114, -0.027239248156547546, 0.01707475073635578, 0.025136711075901985, -0.006190434098243713, 0.04298819601535797, 0.003501997794955969, 0.005631319712847471, 0.007104435004293919, -0.017302412539720535, 0.008677990175783634, -0.010820704512298107, 0.033292412757873535, 0.0012630292912945151, -0.036104727536439896, 0.009414548054337502, 0.01738276518881321, 0.043416738510131836, -0.03597080707550049, 0.025605428963899612, -0.0025109925772994757, 0.03412271663546562, 0.04156864807009697, -0.006585496943444014, 0.0403633713722229, -0.019927237182855606, 0.007412450388073921, 0.013264737091958523, -0.058710355311632156, -0.0018648304976522923, 0.04716648533940315, -0.02675713784992695, -0.0025026227813214064, -0.008048568852245808, -0.013847287744283676, 0.030131911858916283, -0.019712965935468674, 0.03064080700278282, -0.03152467682957649, -0.008222663775086403, -0.030855078250169754, -0.004241903778165579, -0.0034953018184751272, -0.031042564660310745, 0.03042653575539589, -0.04039015248417854, -0.014798116870224476, 0.019525479525327682, 0.0022230655886232853, 0.02397160977125168, -0.018922841176390648, 0.013619624078273773, 0.0018665045499801636, 0.06128161400556564, 0.013512488454580307, -0.01505256351083517, -0.03934558108448982, -0.09722563624382019, 0.02310113236308098, 0.012113028205931187, 0.006488405168056488, -0.034336987882852554, -0.04154186323285103, -0.018989799544215202, -0.01372675970196724, 0.000819420616608113, 0.04673794284462929, -0.018172889947891235, -0.01967279054224491, -0.019766533747315407, -0.042184676975011826, -0.014382965862751007, 0.007091043051332235, 0.006806463934481144, -0.013619624078273773, -0.02575273998081684, -0.017530076205730438, 0.017463117837905884, 0.003465169807896018, 0.03045331872999668, -0.03530120849609375, -0.025431333109736443, 0.00887886993587017, 0.0075664580799639225, 0.01095462404191494, -0.0022180434316396713, -0.0022699374239891768, -0.0016949200071394444, 0.021132513880729675, -0.012233556248247623, 0.022190479561686516, -0.004449478816241026, -0.01703457348048687, 0.005812110844999552, -0.027011584490537643, -0.007245050743222237, -0.038006383925676346, 0.000450723193353042, -0.014731156639754772, -0.035060152411460876, -0.01912372000515461, -0.02279311791062355, 0.003100238973274827, -0.02539115771651268, -0.0008922393899410963, 0.03950628265738487, 0.005972814746201038, 0.013124121353030205, 0.0024524028412997723, 0.011979108676314354, -0.025618821382522583, -0.040095530450344086, -0.008771734312176704, 0.02330201119184494, -0.015923041850328445, 0.006950427778065205, -0.009387764148414135, 0.0392652302980423, 0.024734951555728912, -0.0021745197009295225, -0.013673191890120506, 0.004971765447407961, 0.012963417917490005, -0.013043769635260105, 0.02379751391708851, -0.0055810995399951935, 0.03508693724870682, -0.016646206378936768, -0.007070955354720354, -0.005524183623492718, 0.013793719932436943, 0.038167089223861694, 0.013438832946121693, -0.011818405240774155, -0.008303015492856503, 0.003371426137164235, -0.009983707219362259, -0.0030282570514827967, 0.04202397167682648, -0.0032308106310665607, -0.001653070212341845, -0.029703369364142418, 0.007874472998082638, 0.016927437856793404, -0.004948329646140337, -0.015454323031008244, -0.0038602326530963182, -0.0022063255310058594, -0.05375533178448677, 0.005825502797961235, -0.009354284964501858, -0.022685982286930084, -0.013264737091958523, -0.011316207237541676, 0.009715867228806019, -0.06551346927881241, -0.025350982323288918, 0.03508693724870682, -0.041488293558359146, -0.007204874884337187, -0.023422539234161377, 0.011075151152908802, 0.08913689106702805, -0.0025193626061081886, -0.036935027688741684, 0.016070352867245674, -0.015427539125084877, -0.005771934986114502, -0.03447090834379196, 0.04419346898794174, -0.011751445941627026, -0.0018665045499801636, -0.016123920679092407, 0.00543713616207242, 0.009682388044893742, 0.012186684645712376, -0.007151307072490454, 0.009146708995103836, -0.010840792208909988, -0.018721960484981537, 0.0017242149915546179, -0.006230609957128763, 0.010532776825129986, 0.00021165575890336186, -0.007800817023962736, -0.01339196041226387, 0.009983707219362259, -0.016123920679092407, 0.012809410691261292, -0.003399884095415473, 0.02540455013513565, 0.0070508671924471855, -0.01105506345629692, -0.04033658653497696, -0.0007712932419963181, -0.002179541625082493, 0.019016584381461143, 0.0022565454710274935, 0.04767538234591484, -0.003863580757752061, -0.032944224774837494, -0.03639934957027435, -0.02698480151593685, -0.009126621298491955, 0.01652568019926548, 0.006170345935970545, -0.016043569892644882, 0.02434658445417881, -0.009628820233047009, -0.024252841249108315, -0.00860433466732502, -0.04644332081079483, 0.015414146706461906, -0.011584046296775341, 0.0158292967826128, -0.03447090834379196, 0.012273731641471386, 0.0060330783016979694, -0.005899158772081137, -0.007968217134475708, 0.010626520961523056, -0.01459723711013794, 0.007887864485383034, 0.015347187407314777, 0.021360177546739578, -0.008637814782559872, 0.025471510365605354, -0.018681785091757774, -0.0011751445708796382, -0.029703369364142418, 0.015588242560625076, 0.0068968599662184715, -0.006193781737238169, -0.03639934957027435, -0.021132513880729675, 0.02000758983194828, 0.017610428854823112, 0.0003021561133209616, 0.004338995087891817, 0.012387563474476337, 0.023020781576633453, 0.007881169207394123, -0.03058723919093609, 0.00017869897419586778, -0.03725643455982208, 0.047916434705257416, 0.01932459883391857, -0.008329799398779869, -0.001503247651271522, 0.016552463173866272, 0.030346183106303215, 0.02814990095794201, -0.0031303707510232925, 0.02019507624208927, -0.034363772720098495, 0.014101734384894371, -0.006552016828209162, -0.007024083286523819, -0.02433319203555584, -0.007894560694694519, -0.0010077450424432755, 0.01738276518881321, -0.0023302012123167515, -0.0054170479997992516, -0.0032693124376237392, -0.007861080579459667, 0.030747942626476288, 0.002762091811746359, 0.033131711184978485, -0.02138696052134037, -0.012829498387873173, 0.0031789166387170553, 0.0007185623981058598, -0.007546369917690754, -0.018842488527297974, -0.009602036327123642, 0.03080151043832302, -0.00591255072504282, 0.07231658697128296, -0.009682388044893742, 0.00921366922557354, -0.009963618591427803, 0.026154499500989914, 0.013874071650207043, -0.0008160726283676922, 0.02833738923072815, 0.017610428854823112, -0.04081869497895241, -0.014570453204214573, 0.01522665936499834, 0.02015490084886551, 0.04925563186407089, -0.01738276518881321, 0.016659598797559738, -0.018909448757767677, 0.010311810299754143, 0.024788519367575645, -0.03203357011079788, 0.021601233631372452, -0.013914247043430805, 0.021494098007678986, -0.03380130976438522, 0.017972011119127274, -0.019029976800084114, -0.022699372842907906, 0.008544070646166801, 0.012829498387873173, -0.011496998369693756, 0.055014174431562424, -0.0473271906375885, -0.0015325425192713737, -0.013559360057115555, -0.05059482902288437, -0.0015953173860907555, 0.029462313279509544, -0.006317657418549061, 0.03597080707550049, -0.025779524818062782, 0.025658996775746346, 0.019712965935468674, 0.011711269617080688, -0.036426134407520294, 0.03822065517306328, 0.03232819214463234, -0.0043055154383182526, -0.013157601468265057, -0.04030980169773102, 0.04802357032895088, -0.029355177655816078, -0.02241814322769642, 0.052764326333999634, 0.026542866602540016, 0.004405955318361521, -0.018373770639300346, 0.013586143963038921, -0.0042352075688540936, 0.02678392082452774, 0.005554315634071827, -0.014757940545678139, 0.02989085577428341, 0.02836417220532894, -0.0032375066075474024, -0.009930139407515526, 0.015173091553151608, -0.00011979527334915474, 0.022123519331216812, 0.011255943216383457, 0.00725844269618392, 0.0435238741338253, -0.007532977964729071, 0.028096333146095276, 0.014905252493917942, -0.0034266680013388395, 0.029328394681215286, 0.004241903778165579, -0.021333392709493637, 0.030480103567242622, 0.03650648519396782, 0.04430060461163521, 0.027239248156547546, 0.01155056618154049, 0.005959422793239355, -0.00717809097841382, 0.009012789465487003, 0.018213067203760147, 0.016619423404335976, -0.03439055383205414, -0.01603017747402191, -0.015856081619858742, -0.0043925633653998375, 0.003910452593117952, 0.016043569892644882, -0.02350289188325405, 0.006910251919180155, -0.00844363123178482, -0.03297100588679314, -0.03760462626814842, 0.011717965826392174, -0.009983707219362259, 0.010117626748979092, 0.03026583231985569, -0.018012186512351036, 0.02694462426006794, 0.012648707255721092, -0.016780126839876175, -0.00948820449411869, 0.045613016933202744, -0.005407004151493311, -0.0001826747175073251, 0.021534273400902748, 0.0015953173860907555, 0.04119367152452469, 0.011483605951070786, 0.013592840172350407, -0.003625873476266861, 0.004225163720548153, -0.015173091553151608, 0.03637256473302841, -0.027533872053027153, -0.015454323031008244, -0.047380756586790085, 0.047059349715709686, 0.01079392060637474, -0.015173091553151608, -0.013499096967279911, -0.012628618627786636, 0.013954423367977142, 0.017771132290363312, 0.005296520423144102, 0.0487467385828495, -0.031712163239717484, -0.0022197174839675426, 0.012427739799022675, -0.035408344119787216, -0.03897060453891754, -0.019954022020101547, -0.002462446689605713, 0.02019507624208927, 0.011430038139224052, -0.03125683590769768, -0.011691181920468807, 0.004201727919280529, 0.0006859194836579263, 0.020449524745345116, -0.03739035502076149, 0.02277972549200058, 0.020235253497958183, 0.006709372159093618, 0.00895922165364027, 0.0014095038641244173, 0.007499497849494219, 0.034497689455747604, 0.016298016533255577, 0.026904448866844177, -0.01862821727991104, -0.01860143430531025, -0.0005758543265983462, -0.006063210312277079, -0.010593040846288204, -0.007238354999572039, 0.013753543607890606, -0.017878267914056778, -0.01043903362005949, -0.01893623173236847, -0.036104727536439896, 0.0024038569536060095, -0.017302412539720535, 0.0037597930058836937, -0.04156864807009697, 0.015079348348081112, 0.020904850214719772, -0.007345490623265505, 0.00596277043223381, 0.008577550761401653, 0.01755686104297638, 0.01584268920123577, -0.016927437856793404, 0.003182264743372798, 0.012280427850782871, 0.0006771309999749064, -0.012039372697472572, -0.02450728788971901, 0.01980670914053917, -0.009876570664346218, 0.02852487564086914, 0.012528179213404655, 0.01877552829682827, -0.00036388469743542373, -0.013887463137507439, -0.00634778942912817, 0.03463160991668701, 0.005691583268344402, 0.015722161158919334, 0.004161551594734192, -0.019043369218707085, -0.0026700221933424473, 0.02154766581952572, 0.007305314764380455, -0.009561860002577305, -0.023087739944458008, -0.024909047409892082, 0.004245251417160034, 0.029997991397976875, 0.005453876219689846, -0.022136911749839783, 0.03843492642045021, 0.028444524854421616, 0.016940830275416374, 0.00972925964742899, -0.04239894822239876, 0.009441331960260868, -0.010767136700451374, -0.00761332968249917, 0.007097739260643721, -0.013378568924963474, -0.04119367152452469, -0.027065152302384377, -0.011202375404536724, -0.013184385374188423, 0.023904649540781975, 0.00465705431997776, -9.175585728371516e-05, -0.01165100559592247, 0.01443653367459774, 0.001868178485892713, 0.07113809883594513, -0.0015476085245609283, -0.01789166033267975, 0.0021778675727546215, 0.04663080722093582, -0.017878267914056778, 0.0008780104108154774, 0.01269557885825634, -0.0011065107537433505, -0.0019100283971056342, -0.04716648533940315, 0.031551457941532135, 0.021694976836442947, 0.011041671968996525, 0.007171395234763622, -0.016405152156949043, 0.020985202863812447, 0.07456643879413605, 0.027239248156547546, 0.0045465705916285515, 0.010432337410748005, -0.03077472560107708, -0.0024457068648189306, -0.008992701768875122, -0.025310805067420006, -0.020583443343639374, -0.011168895289301872, -0.019378166645765305, -0.007231658790260553, 0.02381090633571148, -0.011684485711157322, -0.003977412357926369, -0.012106332927942276, 0.016753343865275383, -0.01546771451830864, -0.026837488636374474, 0.01965939812362194, -0.01739615760743618, 0.01667299121618271, 0.007265138905495405, -0.009233756922185421, 0.01418208610266447, -0.003441734006628394, -0.022565454244613647, 0.027694575488567352, 0.0025679084938019514, -0.021628016605973244, -0.0024825348518788815, 0.0036894851364195347, -0.005470615811645985, 0.00448630703613162, 0.01149030216038227, -0.056085530668497086, -0.02659643441438675, -0.024922439828515053, 0.005979510489851236, -0.020757539197802544, 0.00869807880371809, -0.04143472760915756, -0.009227060712873936, 0.007680289447307587, 0.04630940034985542, -0.030346183106303215, 0.02624824270606041, -0.005413700360804796, 0.01156395860016346, -0.00045825616689398885, 0.0034383859019726515, -0.0027336340863257647, 0.010787224397063255, -0.029489098116755486, -0.00808874424546957, 0.003997500520199537, -0.0066859363578259945, -0.015775728970766068, 0.02466799132525921, -0.012474611401557922, 0.027426736429333687, -0.002644912339746952, -0.01636497676372528, -0.022324398159980774, -0.0009759391541592777, 0.02782849408686161, 0.024721559137105942, -0.0011634265538305044, 0.005718367174267769, 0.013807111419737339, 0.01931120827794075, -0.019512087106704712, 0.06240653619170189, -0.004000848159193993, -0.0040878960862755775, 0.024989398196339607, 0.026194674894213676, 0.0032910744193941355, 0.016110528260469437, -0.030399750918149948, -0.02225743979215622, -0.0025813004467636347, -0.029355177655816078, 0.02292703650891781, -0.015454323031008244, 0.0023084392305463552, 0.018869273364543915, -0.031015781685709953, -0.013633016496896744, 0.0038937125355005264, -0.01984688639640808, 0.003900408511981368, -0.013010289520025253, 0.00409124419093132, -0.00674285227432847, 0.03149789199233055, -0.00028227741131559014, -0.022699372842907906, -0.005986206699162722, 0.011450126767158508, -0.03195321932435036, -0.017797915264964104, 0.03058723919093609, -0.014570453204214573, 0.001802892773412168, 0.027386559173464775, 0.020596835762262344, 0.031738948076963425, 0.04638975113630295, -0.023047564551234245, 0.03942593187093735, -0.012400955893099308, 0.0064515769481658936, -0.007439234293997288, -0.008282927796244621, 0.005407004151493311, -0.023275228217244148, -0.008068656548857689, 0.0032827043905854225, -0.013345088809728622, -0.0027486998587846756, -0.02437336929142475, -0.0039640204049646854, 0.003428342053666711, -0.00422181561589241, -0.002032230142503977, -0.01671316660940647, -0.020248644053936005, -0.0060866461135447025, 0.00551748787984252, -0.028283821418881416, -0.009160101413726807, 0.0005055465153418481, -0.022712765261530876, 0.02158784121274948, -0.004148159641772509, 0.028792716562747955, 0.019525479525327682, -0.016445327550172806, 0.005654755514115095, -0.011289423331618309, 0.015681985765695572, -0.007104435004293919, -0.011858581565320492, -0.00020841238438151777, -0.005152557045221329, -0.004901457577943802, 0.0003174313169438392, 0.002410552930086851, -0.012400955893099308, 0.012836194597184658, 0.024400152266025543, -0.0056514074094593525, -0.01112871989607811, -0.01862821727991104, 0.04226502776145935, 0.009273933246731758, -0.047728948295116425, -0.012226860038936138, -0.007666897494345903, 0.03476553037762642, -0.06004955247044563, -0.004506394732743502, -0.00039799234946258366, 0.024132313206791878, -0.015748945996165276, -0.010278330184519291, -0.011758141219615936, -0.006237305700778961, 0.019592437893152237, -0.008631118573248386, 0.01842733845114708, -0.004000848159193993, 0.013104033656418324, 0.006672544404864311, 0.024078745394945145, -0.011818405240774155, 0.01982010155916214, -0.04028301686048508, 0.01929781585931778, -0.0031019130256026983, 0.038006383925676346, 0.015173091553151608, 0.004536526743322611, -0.014476709999144077, -0.014851684682071209, -0.01686047948896885, -0.02018168568611145, -0.02606075629591942, -0.019552262499928474, -0.003960672300308943, -0.0014932036865502596, -0.000491736049298197, 0.03409593179821968, 0.004506394732743502, 0.022337790578603745, 0.04523804411292076, -0.00647836085408926, -0.03428341820836067, -0.012414347380399704, -0.01051938533782959, -0.0071379151195287704, -0.03564940020442009, -0.014851684682071209, -0.019565654918551445, 0.04451487958431244, -0.030185479670763016, 0.006247349549084902, 0.016097137704491615, -0.006377921439707279, -0.00291609950363636, 0.019579047337174416, -0.049443118274211884, 0.020221861079335213, -0.0033111623488366604, 0.017302412539720535, -0.01190545316785574, -0.020128117874264717, -0.0022280875127762556, -0.0032174186781048775, -0.02798919752240181, -0.003371426137164235, -0.028123117983341217, -0.010231457650661469, 0.022578846663236618, 0.025083143264055252, -0.0029629713390022516, -0.006659152451902628, 0.024226056411862373, -0.025123318657279015, -0.013505792245268822, -0.02469477616250515, -0.013612927868962288, -0.007325402460992336, -0.004593442659825087, -0.0010470839915797114, -0.008771734312176704, 0.029783720150589943, -0.009843091480433941, 0.011329598724842072, -0.0034919537138193846, 0.0033931881189346313, -0.03256924822926521, 0.002849139738827944, -0.04264000430703163, 0.01826663501560688, 0.005383568350225687, 0.027225855737924576, 0.04312211275100708, -9.871339716482908e-05, -0.022552061825990677, -0.049443118274211884, 0.013780327513813972, -0.009776131249964237, 0.017181886360049248, -0.006870076060295105, -0.01268218643963337, -0.04676472768187523, -0.0017878267681226134, -0.010947927832603455, -0.0031638506334275007, 0.005366828292608261, -0.016110528260469437, -0.004372475203126669, 0.028578445315361023, 0.0035120416432619095, 0.01050599291920662, 0.023743946105241776, 0.00992344319820404, -0.029810504987835884, -0.006414749193936586, 0.001689898082986474, 0.009561860002577305, 0.04483628645539284, 0.01844073086977005, 0.005088944919407368, 0.020904850214719772, -0.008691382594406605, 0.0397205576300621, 0.00040489755338057876, 0.028980202972888947, 0.022163694724440575, -0.011101935990154743, -0.008149008266627789, 0.004593442659825087, 0.02016829326748848, 0.014316006563603878, 0.006977211683988571, 0.03064080700278282, -0.0046101827174425125, 0.022337790578603745, -0.009823002852499485, -0.026489298790693283, -0.004747449886053801, 0.003806664841249585, -0.021253041923046112, -0.03305136039853096, 0.0074325380846858025, -0.005895810667425394, -0.03441733866930008, -0.028230253607034683, 0.01530701108276844, 0.029649801552295685, 0.005631319712847471, -0.0035321295727044344, -0.005922594573348761, -0.03286387026309967, 0.046014778316020966, -0.009113228879868984, 0.007753945421427488, -0.007405754178762436, 0.0011265986831858754, -0.025190278887748718, 0.012113028205931187, -0.01347231213003397, 0.03385487571358681, -0.037658192217350006, 0.03527442365884781, 0.03211392089724541, 0.0007964031537994742, 0.02731960080564022, -0.0018296766793355346, -0.0013157601933926344, -0.018695177510380745, 0.010117626748979092, -0.01845412142574787, 0.013793719932436943, -0.017289021983742714, 0.030319400131702423, 0.013874071650207043, 0.02660982683300972, 0.003296096343547106, 0.012662098743021488, 0.025284022092819214, 0.026341987773776054, 0.010392162017524242, -0.009327501058578491, -0.018052363768219948, -0.027065152302384377, -0.0054170479997992516, 0.014369574375450611, 0.024922439828515053, -0.012621923349797726, -0.02504296600818634, 0.026315202936530113, -0.01754346862435341, 0.028953419998288155, 0.0005691583501175046, 0.01810593158006668, -0.013325001113116741, -0.0061736940406262875, -0.00604312215000391, 0.017824700102210045, 0.003789925016462803, 0.009936834685504436, -0.0030316051561385393, 0.005289824679493904, -0.0014747896930202842, -0.06529919803142548, -0.038006383925676346, 0.002554516540840268, -0.031390756368637085, -0.008236056193709373, 0.03848849609494209, -0.008765038102865219, 0.004891413729637861, -0.030908646062016487, 0.03425663709640503, -0.02015490084886551, 0.015936434268951416, -0.013284824788570404, 0.03045331872999668], [0.01728198304772377, 0.008467012085020542, 0.05742618814110756, 0.02184411883354187, -0.029177039861679077, 0.05979746952652931, -0.055621955543756485, -0.005702667869627476, -6.564512295881286e-05, 0.0786130502820015, -0.007165386341512203, -0.013274007476866245, 0.026651112362742424, 0.021766794845461845, -0.02598096989095211, -0.005612456239759922, -0.002469545230269432, 0.04082723706960678, -0.010992939583957195, -0.0031767406035214663, 0.0350794643163681, 0.052065037190914154, -0.020349182188510895, 0.007255597971379757, -0.03422889485955238, -0.02543969824910164, 0.039925120770931244, -0.00878275278955698, 0.054487865418195724, -0.04569866880774498, 0.05170419067144394, -0.01743663288652897, 0.009324023500084877, -0.02426694706082344, 0.004935868550091982, 0.00257103331387043, -0.036909472197294235, 0.007120280526578426, 0.007487570866942406, 0.03260508552193642, 0.03938385099172592, -0.028042951598763466, -0.001755906268954277, -0.0011389226419851184, -0.03353297710418701, 0.041909776628017426, 0.009433566592633724, -0.05897267535328865, 0.021045099943876266, 0.0031590203288942575, 0.03873948007822037, 0.0399508960545063, 0.011108926497399807, -0.04131695628166199, 0.0055254665203392506, -0.017307758331298828, 0.022617362439632416, 0.052193909883499146, 0.03636820241808891, -0.030027607455849648, 0.020387843251228333, -0.04366246238350868, -0.017617056146264076, 0.02270757406949997, 0.005087295547127724, -0.027063509449362755, -0.03623932972550392, 0.0006983351777307689, -0.027888301759958267, -0.00942712277173996, 0.068560890853405, 0.02984718419611454, 0.012926047667860985, -0.011669527739286423, 0.021947218105196953, -0.03242466226220131, 0.005309602711349726, 0.018686708062887192, -0.028945067897439003, -0.0031686858274042606, -0.036780599504709244, 0.05495181307196617, 0.0033281673677265644, 0.012101255357265472, 0.009324023500084877, 0.0062600476667284966, -0.07995334267616272, 0.0010414618300274014, 0.012971153482794762, -0.022101866081357002, -0.009220924228429794, 4.281531801098026e-05, -0.05108559504151344, 0.026934634894132614, 0.024769555777311325, -0.022643135860562325, 0.042631469666957855, 0.001436943537555635, 0.008544337004423141, 0.010251915082335472, -0.04384288564324379, -0.030079158022999763, -0.002965709660202265, -0.006279378663748503, -0.006108620669692755, -0.03969314694404602, -0.0011928885942324996, 0.05152376741170883, 0.007255597971379757, -0.045466694980859756, 0.014794718474149704, -0.019769249483942986, -0.007584226317703724, 0.06995272636413574, -0.03544031083583832, -0.025529909878969193, -0.05041545256972313, 0.004452591761946678, 0.03211536630988121, 0.023596802726387978, -0.07283950597047806, -0.013673515990376472, 0.03229578956961632, -0.03688369691371918, 0.023918988183140755, -0.012571644969284534, 0.007120280526578426, -0.03384227305650711, -0.06747835129499435, -0.040930334478616714, 0.05294137820601463, -0.020671365782618523, 0.030182257294654846, -0.05023502930998802, -0.061601702123880386, 0.0070622870698571205, -0.01043233834207058, -0.02515617571771145, 0.009014726616442204, -0.006759433541446924, 0.00958177074790001, 0.01614789478480816, 0.0020716472063213587, 0.03044000454246998, -0.05928197503089905, 0.008827858604490757, 0.0007273318478837609, 0.011688858270645142, 0.02340349182486534, -0.02028474397957325, 0.014833380468189716, 0.0345897413790226, -0.019756361842155457, 0.017333533614873886, 0.024176735430955887, 0.0025114291347563267, 0.034048471599817276, 0.05959127098321915, 0.018184101209044456, -0.0309812743216753, -0.027914077043533325, 0.007526233326643705, -0.013493092730641365, -0.0012637692270800471, -0.0003459457657299936, 0.035904254764318466, 0.002047483343631029, 0.03198648989200592, -0.03201226517558098, -0.05126601830124855, -0.017101559787988663, -0.020503830164670944, -0.03724454343318939, -0.009736419655382633, -0.03373917564749718, -0.05355997383594513, 0.009356241673231125, -0.0029898735228925943, -0.009478672407567501, -0.0238287765532732, 0.00016854284331202507, 0.04113653302192688, -0.10980052500963211, -0.031651418656110764, -0.06990117579698563, 0.03170296922326088, 0.008112609386444092, 0.002838446758687496, -0.024627793580293655, 2.8795251637347974e-05, 0.018312973901629448, 0.026019630953669548, 0.025323713198304176, 0.012520095333456993, -0.013190238736569881, 0.007030068896710873, -0.01786191575229168, 0.009053388610482216, 0.024060748517513275, -0.011295793578028679, 0.044616129249334335, -0.026496464386582375, 0.013982812874019146, -0.007874192669987679, -0.020168758928775787, 0.002790119033306837, -0.03232156112790108, 0.014214785769581795, -0.002121585886925459, -0.06252959370613098, 0.00614083930850029, -0.04866276681423187, -0.0023422823287546635, -0.004075635690242052, -0.010593431070446968, -0.011411779560148716, -0.019176429137587547, -0.0065274606458842754, 0.015194227918982506, 0.036058906465768814, 0.004249615594744682, 0.0011622810270637274, 0.012391220778226852, -0.015915920957922935, -0.06015831604599953, 0.00456535629928112, 0.012481432408094406, -0.029331689700484276, 0.010825403966009617, -0.0363166518509388, 0.010548325255513191, -0.004951978102326393, -0.009459340944886208, -0.021470384672284126, 0.013673515990376472, -0.03239888697862625, 0.0013813666300848126, 0.008976063691079617, 0.02625160478055477, 0.0294090136885643, 0.04464190453290939, -0.008582998998463154, -0.0030945835169404745, 0.05044122785329819, 0.031625643372535706, 0.004423595033586025, -0.0004011198761872947, -0.01219791080802679, -0.006256825756281614, 0.04381711035966873, 0.044358380138874054, 0.0353887602686882, 0.06639581173658371, -0.060312964022159576, -0.02956366166472435, 0.007365140598267317, -0.030311129987239838, -0.06639581173658371, -0.00721049215644598, -0.0074682398699223995, -0.010419451631605625, 0.016225218772888184, -0.013866826891899109, -0.012668299488723278, -0.08675787597894669, -0.020813127979636192, -0.003879103111103177, 0.009246699512004852, -0.010264802724123001, 0.05541575700044632, -0.017887691035866737, 0.03966737166047096, -0.010206809267401695, -0.034641291946172714, -0.06608651578426361, 0.007365140598267317, 0.02612273022532463, -0.013957038521766663, -0.00914360024034977, -0.03930652514100075, -0.023197293281555176, 0.019073329865932465, 0.006595119368284941, -0.05959127098321915, 0.03953849896788597, 0.03227001428604126, -0.02430560812354088, -0.03739919140934944, -0.03783736377954483, -0.0012831003405153751, 0.06515862047672272, -0.0074811275117099285, 0.006485576741397381, -0.020632704719901085, 0.03567228466272354, 0.028352247551083565, 0.016830924898386, 0.012378334067761898, -0.029640987515449524, 0.0005783214000985026, 0.0061988322995603085, 0.02055538073182106, -0.03358452767133713, -0.06969498097896576, -0.04742557927966118, 0.029022391885519028, 0.04170357808470726, 0.027501679956912994, -0.04368823766708374, 0.0012283289106562734, -0.03013070672750473, 0.025620121508836746, -0.02953788824379444, -0.0462399385869503, -0.04941023513674736, -0.010941389948129654, 0.0020055994391441345, 0.0454409196972847, -0.004945534281432629, -0.028455346822738647, 0.01192083116620779, 0.0031203581020236015, 0.0242927223443985, -0.02742435596883297, -0.02071002870798111, -0.024730892851948738, 0.024666456505656242, 0.019021781161427498, -0.016650501638650894, -0.0399508960545063, -0.014214785769581795, -0.01725620962679386, 0.0011800011852756143, 0.012036818079650402, -0.04216752573847771, -0.04567289352416992, -0.04922981187701225, 0.059488169848918915, -0.013261119835078716, 0.03523411229252815, 0.00023438932839781046, -0.00957532785832882, -0.0021747462451457977, 0.007281372789293528, -0.04257992282509804, 0.045183174312114716, -0.011972380802035332, 0.0011212024837732315, 0.01471739448606968, 0.04459035396575928, 0.0031864061020314693, 0.01699846237897873, -0.032038040459156036, 0.012951822020113468, -0.05984902009367943, 0.01098649576306343, 0.01165019627660513, 0.01256520114839077, 0.00467489892616868, -0.012333228252828121, -0.005093738902360201, 0.01742374524474144, 0.008544337004423141, 0.03799201175570488, 0.04139428213238716, -0.014536971226334572, -0.03252775967121124, -0.012526539154350758, 0.055209558457136154, -0.03843018412590027, 0.015297326259315014, 0.0408787876367569, 0.007332922425121069, 0.02300398238003254, -0.017513956874608994, -0.00445581367239356, -0.00792574230581522, 0.01782325468957424, 0.02056826651096344, 0.014730281196534634, 0.004478366579860449, 0.03812088444828987, 0.0019508280092850327, -0.0005461029359139502, 0.002498541958630085, 0.03623932972550392, -0.055312659591436386, -0.04335316643118858, -0.008273701183497906, 0.017526844516396523, 0.02229517698287964, 0.005287049803882837, -0.046755433082580566, 0.05541575700044632, -0.061034657061100006, 0.019485726952552795, 0.01940840296447277, -0.0031702967826277018, 0.04172935336828232, 0.01725620962679386, -0.013248232193291187, -0.053920820355415344, -0.023674126714468002, 0.002084534615278244, -0.0588180273771286, 0.000790560559835285, -0.019795024767518044, -0.0010704584419727325, -0.039177652448415756, 0.0006177890463732183, 0.023171519860625267, 0.028455346822738647, 0.0482761450111866, -0.012249459512531757, 0.03435777127742767, -0.025220613926649094, -0.033610302954912186, 0.03623932972550392, -0.022527148947119713, -0.014730281196534634, 0.04598219320178032, -0.00578321423381567, -0.0031139145139604807, -0.003004371654242277, -0.039048779755830765, 0.03515678644180298, 0.04701318219304085, 0.00010914004815276712, 0.034486643970012665, -0.0899539515376091, -0.001403919537551701, 0.01786191575229168, 0.029305914416909218, 0.003566583851352334, -0.04224484786391258, -0.03716722130775452, -0.011179806664586067, 0.005660783965140581, -0.013737953267991543, -0.03502791374921799, 0.016946911811828613, -0.020748689770698547, 0.021083762869238853, 0.017604168504476547, -0.013441543094813824, 0.015168452635407448, 0.020349182188510895, 0.021586371585726738, -0.012223685160279274, -0.012880941852927208, -0.021947218105196953, 0.02011720836162567, -0.04180667921900749, -0.029769860208034515, -0.0265737883746624, -0.022320952266454697, 0.013892601244151592, -0.07995334267616272, 0.02430560812354088, -0.0314452201128006, 0.021599257364869118, 0.025916531682014465, 0.0031300238333642483, 0.04007976874709129, -0.013866826891899109, -0.032785508781671524, -0.01772015541791916, -0.00321218091994524, -0.004784442018717527, -0.025671672075986862, -0.01014881581068039, -0.01929241605103016, -0.021341510117053986, -0.014176123775541782, 0.02311996929347515, -0.006849645171314478, 0.017346421256661415, -0.0701589286327362, 0.02997605875134468, -0.01783614233136177, 0.009684870019555092, 0.07041667401790619, -0.02997605875134468, -0.02529793791472912, 0.0713961124420166, -0.0029141600243747234, 0.04987418279051781, 0.006427583284676075, -0.0037051234394311905, -0.008460568264126778, -0.03324945643544197, -0.01668916456401348, 0.03971892222762108, -0.013982812874019146, 0.010657867416739464, 0.007564895320683718, -0.024344271048903465, -0.002562978770583868, 0.0613439567387104, -0.012603863142430782, 0.022797785699367523, -0.04384288564324379, 0.0014586909674108028, 0.00035561129334382713, 0.029073942452669144, 0.004861766006797552, -0.01940840296447277, -0.014279223047196865, -0.05541575700044632, 0.03010493330657482, -0.034924816340208054, 0.017591280862689018, 0.019318191334605217, 0.0030849180184304714, -0.025942306965589523, -0.022243628278374672, 0.03930652514100075, -0.030208030715584755, -0.055054910480976105, 0.021779680624604225, 0.02726970799267292, -0.05237433314323425, 0.0006351064657792449, 0.018029453232884407, 0.0019766027107834816, 0.023197293281555176, -0.01842896081507206, -0.052168138325214386, -0.027089284732937813, 0.02229517698287964, -0.002430883003398776, -0.013750839978456497, -0.007204048335552216, 0.04611106589436531, -0.010464557446539402, -0.002187633654102683, -0.0140730245038867, -0.0001481042563682422, -0.010535437613725662, -0.04031174257397652, 0.041471607983112335, 0.012887385673820972, 0.018635159358382225, 0.014369434677064419, 0.0003376897657290101, -0.009800856932997704, 0.013248232193291187, 0.043043866753578186, 0.012623193673789501, 0.0015231278957799077, 0.024885540828108788, 0.014085912145674229, -0.013815277256071568, -0.01857072301208973, -0.007442465052008629, 0.03544031083583832, 0.005029302090406418, -0.05825098231434822, 0.02368701435625553, -0.0030011499766260386, -0.031470995396375656, -0.0023873881436884403, 0.009175818413496017, 0.0032411774154752493, -0.0038436627946794033, 0.008840746246278286, 0.013544642366468906, 0.01069653034210205, -0.00484887883067131, 0.021328622475266457, -0.013583304360508919, -0.012597419321537018, 0.01614789478480816, -0.035491861402988434, 0.06180790066719055, -0.013725065626204014, 0.02371278963983059, -0.04095610976219177, 0.033919598907232285, 0.014588519930839539, -0.036058906465768814, 0.01549063716083765, -0.04536359757184982, -0.005834763869643211, -0.014330772683024406, 0.01505246665328741, 0.00964620802551508, -0.01913776807487011, -0.014124574139714241, -0.005064742639660835, 0.04142005741596222, 0.009555996395647526, 0.01413746178150177, 0.005283827893435955, -0.003051088424399495, 0.04373978450894356, 0.009485115297138691, -0.009813743643462658, 0.007906410843133926, 0.027682103216648102, 0.003718010615557432, -0.026496464386582375, 0.011946606449782848, 0.014124574139714241, -0.04299231618642807, 0.013074252754449844, 0.020916227251291275, -0.004694230388849974, 0.05685914307832718, 0.012139917351305485, -0.006463023833930492, 0.015348875895142555, -0.006888307631015778, -0.03768271580338478, 0.00367934862151742, 0.012320340611040592, -0.040337517857551575, -0.018068114295601845, 0.006727215368300676, -0.013480205088853836, -0.0394611731171608, -0.008634548634290695, 0.03456396609544754, -0.027037734165787697, -0.0016213941853493452, -0.013222457841038704, -0.022772010415792465, -0.04425528272986412, 0.0050840736366808414, -0.013054921291768551, -0.044203732162714005, 0.008744090795516968, -0.030491553246974945, -0.029177039861679077, 0.02739858068525791, 0.01357041671872139, 0.0018380633555352688, -0.004575022030621767, -0.015245776623487473, 0.006388921290636063, 0.028764644637703896, 0.036033131182193756, 0.043327391147613525, -0.0192666407674551, 0.009974836371839046, 0.011469773016870022, -0.016766488552093506, 0.013596192002296448, -0.008595885708928108, 0.01027769036591053, 0.014279223047196865, -0.003911321517080069, -0.026496464386582375, 0.00021948828361928463, 0.026960410177707672, 0.020387843251228333, -0.03613622859120369, 0.015116902999579906, -0.0013257898390293121, 0.05309602990746498, -0.026303153485059738, 0.035208337008953094, 0.001812288537621498, 0.024073636159300804, 0.018196988850831985, -0.00418195640668273, 0.037321869283914566, -0.039744697511196136, 0.0014200287405401468, -0.0015513190301135182, -0.041213858872652054, -0.01248787622898817, 0.04696163162589073, -0.023635465651750565, 0.01435654703527689, -0.011579316109418869, -0.021367285400629044, 0.008351026102900505, -0.019756361842155457, 0.03845595940947533, -0.0059571941383183, -0.020503830164670944, -0.024627793580293655, -0.016934024170041084, -0.0098652932792902, -0.0025597568601369858, 0.013596192002296448, -0.023635465651750565, -0.021057987585663795, 0.026496464386582375, -0.00607640203088522, 0.025787658989429474, -0.019653262570500374, 0.025452585890889168, 0.02028474397957325, 0.05840563029050827, 0.01470450684428215, 0.0031574093736708164, -0.02300398238003254, -0.0927891731262207, 0.037218768149614334, 0.027656329795718193, -0.01192083116620779, -0.04002821817994118, -0.02868732064962387, -0.01114758849143982, -0.0265737883746624, -0.014588519930839539, 0.046497687697410583, -0.019472839310765266, -0.010123041458427906, -0.0003844065358862281, -0.05245165899395943, 0.006881863810122013, 0.01470450684428215, -0.018248537555336952, -0.004107854329049587, -0.01985946111381054, -0.03371340036392212, -0.0002241196925751865, -0.031780291348695755, 0.00969775766134262, -0.047502901405096054, -0.0350794643163681, 0.008550779893994331, 0.0192666407674551, 0.0010301853762939572, 0.027527455240488052, -0.018235649913549423, -0.005834763869643211, 0.019331078976392746, -0.007610001135617495, 0.025104627013206482, 0.006082845851778984, -0.041780903935432434, -0.016959799453616142, -0.0030945835169404745, -0.002629026537761092, -0.010625649243593216, 0.007133167702704668, 0.00834458228200674, -0.019343964755535126, -0.02328750491142273, -0.01640564203262329, 0.01668916456401348, 0.0037502292543649673, -0.020813127979636192, 0.022772010415792465, 0.02371278963983059, 0.009530221112072468, -0.029357464984059334, 0.010464557446539402, -0.023171519860625267, -0.03567228466272354, -0.001332233427092433, 0.0006987379165366292, -0.023455042392015457, 0.02799140103161335, -0.010818960145115852, 0.026934634894132614, 0.01811966486275196, -0.006098955404013395, -0.025452585890889168, 0.006115064490586519, 0.009839518927037716, -0.03309480473399162, -0.005763883236795664, 0.023390604183077812, 0.03510523959994316, 0.00251626200042665, -0.017771704122424126, -0.0006632976001128554, -0.003081696107983589, 0.03237311169505119, 0.017165997996926308, -0.011340899392962456, -0.016212331131100655, 0.019227979704737663, -0.007519789505749941, -0.021186862140893936, 0.02112242393195629, 0.002139305928722024, -0.013493092730641365, -0.01220435369759798, 0.01277139876037836, 0.006881863810122013, 0.011637309566140175, -0.030646203085780144, 0.005470694974064827, 0.006156948395073414, -0.03979624807834625, -0.007558451499789953, 0.0005658367881551385, -0.013505980372428894, 0.0024631016422063112, -0.023390604183077812, -0.0030011499766260386, -0.06020986661314964, -0.03587847948074341, 0.03984779492020607, -0.007803312037140131, 0.0025662006810307503, -0.02685731090605259, 0.013802389614284039, 0.07809755951166153, -0.029666760936379433, -0.038069337606430054, -0.005435254890471697, -0.021818343549966812, 0.0012283289106562734, -0.02596808224916458, 0.04044061526656151, -0.005248387809842825, 0.000391857058275491, -0.023596802726387978, 0.01872537098824978, 0.0038597718812525272, -0.021341510117053986, -0.0010309908539056778, 0.010355014353990555, -0.0013878103345632553, 0.009162930771708488, 0.010045716539025307, -0.0005646285717375576, 0.005741330329328775, -0.006398587021976709, 0.026019630953669548, 0.0014707728987559676, -0.017797479405999184, -0.014279223047196865, 0.014794718474149704, -0.007178273517638445, 0.0003783655702136457, 0.014562745578587055, -0.01391837652772665, -0.040621038526296616, -0.026754211634397507, 0.006562901195138693, 0.016186555847525597, 0.004336605314165354, 0.03188339248299599, -0.004027307964861393, -0.04585331678390503, -0.020387843251228333, -0.038765255361795425, -0.008769866079092026, -0.007700212765485048, 0.01341576874256134, -0.011005827225744724, 0.04216752573847771, -0.022243628278374672, -0.02755323052406311, 0.00210386561229825, -0.03283705934882164, 0.022875109687447548, -0.033636074513196945, 0.017810367047786713, -0.03345565125346184, 0.013035590760409832, 0.013016259297728539, -0.004652346018701792, 0.003689014120027423, 0.014330772683024406, 0.0026805761735886335, 0.0084927873685956, -0.018093889579176903, 0.0045975749380886555, -0.0031106926035135984, 0.00285455584526062, -0.012507207691669464, 0.009903956204652786, -0.02984718419611454, 0.004513806663453579, 0.00978152547031641, -0.015671061351895332, -0.03208959102630615, -0.03966737166047096, 0.05214236304163933, 0.024382933974266052, -0.002171524567529559, 0.009678426198661327, 0.027011960744857788, 0.0422963984310627, 0.027810977771878242, -0.029589436948299408, -0.008982507511973381, -0.02082601562142372, 0.0422963984310627, 0.030311129987239838, -0.01442098431289196, 0.003930652514100075, -0.009620433673262596, 0.0068109831772744656, 0.025078851729631424, 0.010425894521176815, -0.007635775953531265, -0.02943478897213936, 0.001390226767398417, -0.0010293798986822367, -0.018738258630037308, -0.01753973215818405, 0.003937096334993839, 0.01148266065865755, 0.008595885708928108, -0.014214785769581795, -0.011353787034749985, 0.018055226653814316, 0.026380477473139763, 0.04899783805012703, -0.019769249483942986, 0.03252775967121124, -0.009330467320978642, -0.024086523801088333, -0.017939239740371704, 0.012036818079650402, -0.010464557446539402, -0.01527155190706253, 0.003966093063354492, 0.0322442390024662, -0.024228284135460854, 0.09155198931694031, -0.016457190737128258, 0.017088674008846283, 0.009375573135912418, 0.013467317447066307, -0.0027707878034561872, -0.015194227918982506, 0.03188339248299599, 0.0100650480017066, -0.02426694706082344, -0.04160048067569733, 0.040053993463516235, 0.02484687976539135, 0.05294137820601463, 0.007081618532538414, 0.007945072837173939, 0.020104320719838142, -0.005177507176995277, 0.01940840296447277, 0.015825709328055382, 0.013518867082893848, -0.024821104481816292, 0.020387843251228333, -0.04350781440734863, -0.02083890326321125, -0.004262502770870924, -0.007713100407272577, 0.029357464984059334, 0.01915065571665764, 0.005038967821747065, 0.026303153485059738, -0.012887385673820972, -0.013686403632164001, 0.003982202149927616, -0.06222029775381088, -0.028068725019693375, 0.024756668135523796, 0.005744552239775658, 0.023893212899565697, -0.0328628346323967, 0.04273457080125809, 0.04227062314748764, 0.002815893618389964, -0.03044000454246998, 0.03693524748086929, 0.01741085760295391, 0.024640681222081184, -0.009510890580713749, -0.05067319795489311, 0.040904562920331955, -0.04616261646151543, -0.010561211965978146, 0.056343648582696915, 0.00032842697692103684, -0.008969619870185852, 0.0016914693405851722, 0.021818343549966812, -0.015735497698187828, 0.026096954941749573, 0.004552469123154879, -0.018648047000169754, 0.015606624074280262, 0.02368701435625553, 0.009523778222501278, -0.008383244276046753, 0.014949367381632328, 0.014163237065076828, 0.013905488885939121, 0.004471922758966684, 0.0153359891846776, 0.0459306426346302, -0.0125007638707757, -0.003692236030474305, 0.008885852061212063, 0.017050011083483696, 0.04974530637264252, -0.006765877362340689, -0.01271984912455082, 0.013776615262031555, 0.030517328530550003, 0.04440993070602417, 0.011978824622929096, 0.03693524748086929, 0.034770164638757706, -0.007610001135617495, 0.011946606449782848, 0.05794168636202812, -0.015671061351895332, -0.010825403966009617, -0.02487265318632126, -0.0314452201128006, 0.0074038030579686165, 0.01858361065387726, 0.03641975298523903, -0.017733043059706688, -0.007790424395352602, -0.004007976967841387, -0.03922920301556587, -0.042347948998212814, 0.03296593204140663, -9.25777421798557e-05, 0.010535437613725662, 0.03154832124710083, 0.003946761600673199, 0.0197305865585804, 0.007919298484921455, -0.022243628278374672, 0.02799140103161335, 0.03783736377954483, -0.002551702316850424, 0.009852406568825245, 0.017771704122424126, -0.0033926041796803474, 0.037785813212394714, 0.026019630953669548, 0.010226140730082989, 0.02328750491142273, -0.006572566460818052, -0.023790113627910614, 0.03495058789849281, -0.03672904893755913, -0.01814543828368187, -0.034486643970012665, 0.044616129249334335, -0.023893212899565697, -0.00435593631118536, -0.015310213901102543, -0.006830314174294472, 0.004752223379909992, 0.008067503571510315, 0.01640564203262329, 0.04044061526656151, -0.04183245450258255, 0.02243693731725216, 0.02641914039850235, -0.015915920957922935, -0.04242527484893799, -0.004262502770870924, 0.0016278378898277879, 0.0006286627613008022, 0.023210180923342705, -0.04801839962601662, -0.01613500714302063, 0.009401347488164902, 0.010135929100215435, 0.025349486619234085, -0.023351943120360374, 0.03801778703927994, 0.027321256697177887, -0.02371278963983059, 0.012288122437894344, -0.005689780693501234, 0.015619510784745216, 0.0157226100564003, -0.01091561559587717, 0.030079158022999763, -0.022320952266454697, -0.007165386341512203, -0.025607235729694366, 0.006540348287671804, -0.014459646306931973, 0.0024888762272894382, 0.009040500968694687, -0.018918681889772415, 0.007345809601247311, -0.03000183403491974, -0.02997605875134468, 0.00610217684879899, -0.021186862140893936, 0.005841207690536976, -0.033069029450416565, -0.00012957863509655, 0.00681742699816823, -0.0014168069465085864, 0.02827492356300354, 0.011070264503359795, 0.009356241673231125, -0.0027546787168830633, -0.014833380468189716, -0.007371584419161081, 0.026238717138767242, 0.014627182856202126, -0.00814482755959034, -0.01476894412189722, 0.014163237065076828, 0.009762194938957691, 0.026470689103007317, 0.015529299154877663, 0.006649890914559364, 0.018016565591096878, -0.016676276922225952, -0.00893095787614584, 0.019588826224207878, 0.01520711462944746, 0.006907638628035784, 0.015735497698187828, -0.021612145006656647, 0.0035279218573123217, 0.018673822283744812, 0.010032829828560352, -0.016611840575933456, -0.00316224223934114, -0.02925436571240425, 0.004951978102326393, 0.04469345137476921, -0.014601407572627068, -0.009188706055283546, -0.0008892295882105827, 0.0016979130450636148, -0.0008082807180471718, 0.005332155618816614, -0.034331995993852615, -0.008963176980614662, -0.013531754724681377, 0.011315124109387398, -0.0030655867885798216, -0.02412518486380577, -0.04350781440734863, -0.024357158690690994, -0.012868054211139679, -0.009742863476276398, 0.025955194607377052, 0.015928808599710464, -0.010477444157004356, -0.013042034581303596, -0.0034119354095309973, -0.0010607929434627295, 0.07773671299219131, -0.020168758928775787, -0.011392449028789997, 0.008821415714919567, 0.028893519192934036, -0.0062761567533016205, -0.001746240770444274, 0.027527455240488052, -0.012552313506603241, -0.002142527839168906, -0.031496770679950714, 0.02385454997420311, 0.015632398426532745, 0.011733964085578918, 0.007790424395352602, -0.0019363296451047063, 0.03938385099172592, 0.058921124786138535, 0.02355813980102539, 0.01686958782374859, 0.006086067762225866, -0.03683214634656906, -0.019614601507782936, -0.011154032312333584, -0.007674437947571278, -0.017088674008846283, -0.005393370985984802, 0.010902727954089642, -0.007887080311775208, -0.003930652514100075, -0.0281460490077734, 0.003747007343918085, -0.0047393362037837505, 0.008402575738728046, -0.01685670018196106, -0.016637613996863365, 0.013712177984416485, -0.004513806663453579, 0.007461796049028635, 0.01341576874256134, -0.02168946899473667, -0.0032524538692086935, -0.004707117564976215, -0.00878275278955698, 0.027501679956912994, 0.01149554830044508, -0.021586371585726738, -0.019305303692817688, -0.004716783296316862, -0.0006125535583123565, 0.006382477469742298, 0.0018896128749474883, -0.03644552454352379, -0.02000122144818306, -0.007713100407272577, 0.009652651846408844, -0.006901194807142019, -0.025607235729694366, -0.022359613329172134, -0.002467934275045991, -0.0068109831772744656, 0.06067381054162979, -0.022900883108377457, 0.030646203085780144, -0.03054310381412506, 0.016740713268518448, -0.01020036544650793, -0.006002299953252077, -0.0018573944689705968, -0.0038243315648287535, -0.011772627010941505, -0.014614295214414597, 0.024524694308638573, -0.0010052160359919071, -0.004136850591748953, 0.02596808224916458, -0.021753907203674316, 0.012539425864815712, -0.015400425530970097, -0.006553235463798046, -0.03551763296127319, -0.02484687976539135, 0.033507201820611954, 0.02629026584327221, 0.020748689770698547, 0.0018412851495668292, 0.011605090461671352, 0.02556857280433178, 0.0004965670523233712, 0.06407608091831207, 0.00560923432931304, 0.0061988322995603085, 0.0306719783693552, 0.014962255023419857, -0.0027095729019492865, 0.0020797017496079206, -0.014536971226334572, -0.015026691369712353, 0.004684564657509327, -0.018480511382222176, 0.03456396609544754, -0.007674437947571278, -0.02215341478586197, 0.023506591096520424, -0.016611840575933456, 0.01086406596004963, -0.006485576741397381, -0.00836391281336546, 0.005580238066613674, -0.04059526324272156, 0.0026354703586548567, -0.008834302425384521, 0.03425467014312744, -0.02171524427831173, -0.034795939922332764, -0.01128290593624115, -0.01900889351963997, -0.016650501638650894, -0.0009182262001559138, 0.01782325468957424, -0.024344271048903465, -0.022192077711224556, 0.010973609052598476, 0.02326173149049282, 0.022346725687384605, 0.045775994658470154, -0.031780291348695755, 0.02969253621995449, -0.01121202576905489, 0.013815277256071568, -0.015078241005539894, -0.02487265318632126, 0.01858361065387726, -0.0140730245038867, -0.006939857266843319, -0.0007188744493760169, -0.0076679945923388, 0.005454585887491703, -0.0026709106750786304, 0.0017913465853780508, 0.003041422925889492, -0.007049399893730879, -0.0007752567762508988, -0.006115064490586519, -0.012687630951404572, 0.009871737100183964, 0.016830924898386, -0.016354091465473175, -0.0185578353703022, -0.019936785101890564, -0.02354525402188301, 0.021354397758841515, -0.019511502236127853, 0.032785508781671524, 0.02487265318632126, 0.006466245744377375, 0.006617672275751829, -0.006472689565271139, 0.005325712263584137, -0.016921136528253555, 0.012906716205179691, 0.0031203581020236015, -0.007126724347472191, -0.0008602329762652516, 0.011121814139187336, -0.007822643034160137, -0.01587725803256035, 0.010387232527136803, 0.01600613258779049, 0.0119143882766366, -0.023480815812945366, -0.018325861543416977, 0.07036512345075607, 0.012584531679749489, -0.027759429067373276, -0.02225651405751705, -0.0013161242241039872, 0.014859155751764774, -0.048069946467876434, 0.02128996141254902, -0.007906410843133926, 0.011192694306373596, 0.011514878831803799, -0.016959799453616142, -0.01128290593624115, -0.015065353363752365, 0.006356703117489815, -0.01528443954885006, 0.021882779896259308, -0.035337209701538086, 0.006440470926463604, 0.017397969961166382, 0.027888301759958267, -0.004046638961881399, 0.015078241005539894, -0.042347948998212814, 0.015155564993619919, 0.01686958782374859, 0.031470995396375656, 0.007436021231114864, -0.0035375873558223248, -0.014627182856202126, 0.013093583285808563, -0.0035698057617992163, -0.023803001269698143, -0.025594348087906837, -0.020181646570563316, -0.0042560589499771595, 0.012011043727397919, -0.012481432408094406, 0.018248537555336952, -0.006305153481662273, 0.023313280194997787, 0.03858483210206032, -0.007977291941642761, -0.012507207691669464, -0.01570972241461277, -0.028042951598763466, -0.00593141932040453, -0.0377342663705349, -0.0007176662911660969, -0.00732003478333354, 0.04350781440734863, -0.011166919954121113, -0.007680881768465042, 0.01627676747739315, 0.022024542093276978, 0.009659095667302608, 0.03827553614974022, -0.04252837225794792, 0.032940156757831573, 0.00784841738641262, 0.009961948730051517, -0.0045975749380886555, -0.01215280406177044, 0.002076480071991682, 0.0013483427464962006, 0.004536359570920467, -0.033043257892131805, -0.023158632218837738, -0.01596747152507305, 0.02670266292989254, 0.011289349757134914, -0.0033764950931072235, -0.019331078976392746, 0.037064120173454285, -0.022501375526189804, -0.009652651846408844, -0.03582693263888359, -0.0001872698194347322, -0.013402881100773811, -0.0026403029914945364, 0.007146055344492197, -0.030646203085780144, -0.002543647773563862, -0.02197299152612686, -0.019807912409305573, -0.00677876453846693, -0.007867748849093914, 0.008956733159720898, -0.02842957153916359, -0.037347644567489624, 0.04028596729040146, 0.025181951001286507, 0.013035590760409832, 0.023248843848705292, 0.0008650657255202532, -0.02098066359758377, -0.03466706722974777, 0.017230434343218803, -0.010071491822600365, -0.002374500734731555, -0.01742374524474144, -0.020671365782618523, -0.0422963984310627, 0.01000061072409153, 0.005154954269528389, -0.00029842351796105504, -0.002993095200508833, 0.00355047476477921, 0.012938935309648514, 0.008634548634290695, 0.008164159022271633, 0.008640991523861885, 0.016019020229578018, 0.01291960384696722, -0.028171824291348457, 0.00557379424571991, -0.009208036586642265, -0.0014635237166658044, 0.016740713268518448, 0.02144460938870907, 0.02384166233241558, 0.011521322652697563, 0.0038178879767656326, 0.05193616449832916, 0.017668604850769043, 0.04781220108270645, 0.01984657347202301, -0.010947833769023418, -0.014588519930839539, 0.007854861207306385, 0.01471739448606968, 0.020246082916855812, -0.00806105975061655, 0.021199749782681465, 0.008976063691079617, 0.006285822484642267, -0.008724760264158249, -0.03943539783358574, -0.009285361506044865, 0.007429577875882387, -0.017359308898448944, -0.026354704052209854, 0.010767410509288311, 0.017178885638713837, -0.020800240337848663, -0.03440931811928749, 0.02770787850022316, -0.0015795101644471288, 0.0010511273285374045, -0.002732125809416175, -0.008325250819325447, -0.030903950333595276, 0.058766476809978485, 0.006218163296580315, 0.0018654490122571588, 0.010735192336142063, -0.017591280862689018, 0.009220924228429794, 0.0026789652183651924, -0.012107698246836662, 0.05809633433818817, -0.018751146271824837, 0.02186989225447178, 0.05250320956110954, -0.000790560559835285, 0.028017176315188408, 0.017952127382159233, -0.013505980372428894, -0.016044795513153076, 0.0014748001703992486, 0.009459340944886208, 0.02014298364520073, -0.0056962245143949986, 0.02956366166472435, -0.002656412310898304, 0.022926658391952515, 0.00735869724303484, -0.005138845182955265, 0.025169063359498978, 0.0037727821618318558, 0.018209876492619514, -0.0066047850996255875, -0.0002823142858687788, -0.028378022834658623, -0.005129179451614618, 0.005596347153186798, 0.02899661660194397, -0.007945072837173939, -0.01357041671872139, 0.029924510046839714, -0.023493703454732895, 0.025078851729631424, -0.0009480282897129655, -4.160712705925107e-05, -0.00439137639477849, -0.023094194009900093, -0.0030994161497801542, 0.0241380725055933, 0.015374651178717613, 0.011830619536340237, -0.014395209960639477, -0.003181573236361146, 0.0003622563381213695, -0.07887079566717148, -0.02884196862578392, -0.0020410397555679083, -0.01492359209805727, -0.020078547298908234, 0.03580115735530853, -0.011476216837763786, 0.008905183523893356, -0.04286344349384308, 0.03129057213664055, -0.02072291634976864, 0.03044000454246998, -0.018957344815135002, 0.01983368583023548], [-0.0021310262382030487, 0.02247757650911808, 0.039118584245443344, 0.042159028351306915, -0.01045153010636568, 0.03979725390672684, -0.010241142474114895, 0.011897099204361439, 0.002105576219037175, 0.026821069419384003, -0.010899453423917294, -0.03523658961057663, 0.027377579361200333, 0.02444572187960148, -0.02676677703857422, 0.05356070026755333, -0.012358595617115498, 0.029535753652453423, -0.01328158751130104, 0.010078261606395245, 0.007553605828434229, 0.048212774097919464, -0.029454313218593597, 0.01793048158288002, -0.05803992599248886, -0.014089205302298069, 0.04240335151553154, -0.0027469201013445854, 0.0634692907333374, -0.024228546768426895, 0.11445104330778122, -0.029291432350873947, -0.01161205768585205, -0.0014896823558956385, 0.00996288750320673, -0.006118217017501593, -0.03431359678506851, 0.02983436919748783, 0.009419950656592846, 0.024364281445741653, -0.0029318579472601414, -0.02581663802266121, -0.021174529567360878, 0.0070446026511490345, -0.025382287800312042, 0.0448194183409214, -0.007078536320477724, -0.04533521085977554, 0.006647580303251743, 0.01960001327097416, 0.01756400056183338, 0.04688257724046707, -0.015324386768043041, -0.06357788294553757, 0.013600562699139118, -0.041344624012708664, 0.011971753090620041, 0.051578979939222336, 0.034992266446352005, -0.02064516581594944, 0.020170096307992935, -0.027988383546471596, -0.0657496303319931, 0.014971477910876274, 0.031327445060014725, -0.026549601927399635, -0.021120235323905945, 0.003469704417511821, -0.01962715946137905, 0.007200696971267462, 0.040068723261356354, 0.01763186790049076, 0.04511803388595581, -0.04164323955774307, -0.038982849568128586, -0.013437681831419468, -0.02790694311261177, -0.03678395599126816, -0.057334110140800476, -0.00581620866432786, -0.041371770203113556, 0.030051542446017265, -0.002505991840735078, 0.02094378136098385, 0.019192809239029884, -0.02597951889038086, -0.08431805670261383, -0.018215524032711983, -0.0314088836312294, -0.029752926900982857, -0.08068038523197174, 0.011618844233453274, -0.03279337286949158, 0.03127314895391464, -0.005683867726475, -0.03254904970526695, 0.007356791291385889, -0.004048271104693413, -0.024513589218258858, 0.008938094601035118, -0.009772859513759613, -0.025246553122997284, -0.007254990749061108, 0.011937819421291351, 0.03078450821340084, 0.0014150285860523582, -0.06450087577104568, 0.0523390918970108, -0.029915809631347656, -0.025599462911486626, 0.013254440389573574, -0.020848767831921577, -0.007119256537407637, 0.08822720497846603, -0.05217621102929115, 0.033227723091840744, -0.05217621102929115, 0.007200696971267462, 0.016545994207262993, 0.04894573614001274, -0.053777873516082764, -0.01841912604868412, 0.038819968700408936, -0.04604102671146393, -0.014089205302298069, -0.03311913460493088, 0.027662621811032295, -0.023482009768486023, -0.06265489012002945, -0.027472594752907753, 0.03952578827738762, -0.03396068513393402, 0.04479227215051651, -0.08361224085092545, -0.011035187169909477, 0.04370639845728874, 0.0029318579472601414, -0.03059447929263115, 0.010526183992624283, -0.01698034256696701, -0.0012877777917310596, 0.030811654403805733, 0.04560667648911476, 0.04300058260560036, -0.0670526772737503, -0.027798356488347054, 0.012433248572051525, 0.020889487117528915, 0.016871755942702293, -0.002590825781226158, 0.010370089672505856, 0.007804714143276215, -0.007987955585122108, -0.015623001381754875, 0.007573965936899185, -0.029074257239699364, 0.039281465113162994, 0.06270918250083923, 0.014211366884410381, -0.03216899558901787, -0.018147656694054604, -0.008313717320561409, -0.016152365133166313, -0.02692965790629387, 0.020007215440273285, -0.011964966543018818, -0.007506099063903093, 0.020129375159740448, -0.032901961356401443, -0.05961444228887558, -0.058094222098588943, -0.012338235042989254, -0.034666504710912704, 0.022884778678417206, -0.0011664654593914747, -0.0179983489215374, 0.011924246326088905, -0.019450705498456955, -0.018772033974528313, 0.02444572187960148, 0.02162245102226734, 0.030350157991051674, -0.05461942404508591, -0.04036733880639076, -0.03781553730368614, 0.037842683494091034, 0.013729509897530079, -0.001551611116155982, -0.002505991840735078, -0.0034493443090468645, 0.013899178244173527, 0.07774852961301804, 0.021961787715554237, 0.0022582770325243473, 0.00041589795728214085, 0.009990033693611622, 0.01459142193198204, 0.017183944582939148, 0.03974296152591705, 0.007926874794065952, 0.026101678609848022, -0.0310831218957901, 0.017781175673007965, -0.0003030689258594066, -0.04867427051067352, 0.008883800357580185, -0.0029437346383929253, 0.02607453241944313, 0.023862065747380257, -0.02126954309642315, 0.006593286991119385, -0.016803888604044914, -0.005863715894520283, 0.019817186519503593, -0.005602427292615175, 0.024975085631012917, -0.014890037477016449, -0.007770780473947525, 0.024513589218258858, 0.0677042007446289, -0.021649599075317383, 0.012996545992791653, 0.007119256537407637, -0.009494604542851448, -0.020360123366117477, -0.02192106656730175, 0.00765540637075901, -0.04207758978009224, 0.024595029652118683, -0.015514414757490158, 0.030648773536086082, -0.010763718746602535, -0.03773409500718117, -0.02839558571577072, -0.0047439089976251125, -0.020332977175712585, -0.007275350857526064, -0.01655956730246544, 0.01295582577586174, 0.03591525927186012, 0.025545168668031693, 0.01383809745311737, -0.03773409500718117, 0.023251261562108994, 0.041073158383369446, -0.0032168994657695293, -0.008897374384105206, -0.07568536698818207, 0.018079789355397224, 0.007506099063903093, 0.041507504880428314, -0.010478677228093147, 0.05084601789712906, -0.04172468185424805, -0.03778839111328125, -0.016478126868605614, -0.00010604230919852853, -0.05421222373843193, 0.012243221513926983, -0.015405827201902866, -0.019952921196818352, -0.0011630720691755414, -0.01195817906409502, -0.00749931251630187, -0.040258750319480896, 0.0025619822554290295, -0.011707071214914322, 3.0089506253716536e-05, -0.05339781939983368, 0.03385210037231445, -0.017821894958615303, 0.024228546768426895, 0.025735195726156235, -0.03385210037231445, -0.04737121984362602, -0.00042353299795649946, 0.0301058366894722, -0.004791415762156248, -0.02159530483186245, 0.012114273384213448, -0.00597908953204751, 0.0001957541098818183, 0.011815658770501614, -0.04305487498641014, -0.012602916918694973, 0.058094222098588943, -0.022721897810697556, -0.0068885087966918945, -0.028721347451210022, -0.02074017934501171, 0.05559671297669411, 0.006600073538720608, 0.020332977175712585, -0.022952646017074585, 0.01019363570958376, 0.004072024952620268, -0.010471890680491924, 0.0030947388149797916, -0.039308611303567886, -0.03219614177942276, -0.02055015228688717, 0.03219614177942276, 0.008748066611588001, -0.036729663610458374, -0.023549877107143402, 0.00591461593285203, 0.03843991458415985, 0.013417321257293224, -0.039770107716321945, -0.002782550174742937, -0.013111920095980167, 0.00030052391230128706, 0.005123964510858059, -0.03268478438258171, -0.026264559477567673, -0.015039345249533653, 0.014645716175436974, 0.06070031598210335, 0.01028864923864603, -0.0227354709059, 0.03941719979047775, -0.011985326185822487, 0.03349918872117996, -0.06254629790782928, -0.010003607720136642, -0.01318657398223877, 0.0227354709059, 0.042321909219026566, -0.05033022537827492, -0.060483142733573914, -0.051714714616537094, 0.02918284386396408, 0.04074739292263985, 0.008042248897254467, 0.012216074392199516, -0.012623276561498642, 0.008666626177728176, 0.023183394223451614, -0.03504655882716179, 0.02303408645093441, 0.03900999575853348, -0.022749045863747597, 0.007003882434219122, 0.0017866009147837758, -0.058257102966308594, 0.029590046033263206, -0.005056097637861967, 0.0005874744383618236, -0.027757635340094566, 0.04082883521914482, -0.02820555865764618, 0.017387546598911285, -0.07470808178186417, 0.0395800806581974, -0.07921445369720459, 0.005673687905073166, -0.011476323008537292, 0.007859007455408573, -0.004044877830892801, -0.016532421112060547, 0.002254883758723736, 0.014645716175436974, 0.005867109168320894, 0.03518229350447655, 0.07313356548547745, 0.008483384735882282, -0.037679802626371384, 0.013498762622475624, 0.05084601789712906, -0.03526373580098152, 0.0015804546419531107, 0.040394484996795654, 0.0490814708173275, -0.013967044651508331, -0.06564103811979294, -0.01539225410670042, -0.017129650339484215, -0.02247757650911808, 0.030865948647260666, -0.004594601225107908, 0.008042248897254467, 0.01976289413869381, -0.015568708069622517, 0.004957690369337797, 0.03805985674262047, 0.027526887133717537, -0.03385210037231445, -0.026983950287103653, -0.023346275091171265, -0.013505549170076847, 0.03939005360007286, 0.004333313088864088, -0.05339781939983368, 0.045199476182460785, -0.039145730435848236, 0.039444345980882645, 0.0065797134302556515, 0.01600305736064911, 0.044385071843862534, -0.007200696971267462, 0.015595855191349983, -0.04533521085977554, -0.014713582582771778, 0.0024381247349083424, -0.005877288989722729, -0.0008597910637035966, -0.025110820308327675, 0.006657760590314865, -0.011313442140817642, -0.01274543721228838, -0.0021106661297380924, 0.025775916874408722, 0.05350640416145325, -0.0327119342982769, 0.018962062895298004, -0.02486649714410305, -0.028178410604596138, 0.02296621911227703, 0.0007380545139312744, -0.0224097091704607, 0.034042127430438995, -0.00047167620505206287, 0.0150529183447361, -0.009725352749228477, -0.027526887133717537, 0.02479863166809082, 0.02683464251458645, -0.022491149604320526, 0.0304315984249115, -0.11293081939220428, -0.006189477629959583, 0.042457643896341324, 0.03920002654194832, 0.016084497794508934, -0.019124943763017654, -0.02607453241944313, -0.01681746169924736, 0.007478952407836914, -0.009284216910600662, 0.0074518052861094475, 0.01554156094789505, 0.012847238220274448, -0.0013200147077441216, -3.950076279579662e-05, 0.03477509319782257, -0.0008547010365873575, 0.019029928371310234, -0.01904350332915783, -0.024432148784399033, -0.011869952082633972, -0.008313717320561409, 0.022436857223510742, -0.04986872896552086, -0.005907829385250807, -0.03624102100729942, 0.0020987894386053085, 0.015989484265446663, -0.05782275274395943, -0.0031490325927734375, -0.03488367795944214, 0.0057517350651323795, 0.041670385748147964, 0.01674959436058998, 0.037082571536302567, -0.045036595314741135, -0.016464553773403168, -0.029209991917014122, -0.023319128900766373, 0.002706199884414673, -0.02460860274732113, -0.022830486297607422, -0.036892544478178024, -0.006925835274159908, -0.02855846658349037, 0.053017761558294296, -0.012840451672673225, 0.003630888881161809, -0.03667537122964859, 0.002373651135712862, -0.0005480266408994794, 0.0055854604579508305, 0.08106043934822083, -0.049814436584711075, -0.025110820308327675, 0.05290917679667473, 0.01839197799563408, 0.004652288276702166, -0.006552566774189472, -0.0017730274703353643, 0.011035187169909477, -0.011116627603769302, -0.021934639662504196, 0.01186316553503275, -0.015758736059069633, 0.008334076963365078, -0.019545719027519226, -0.04148035869002342, 0.0008054974023252726, 0.03824988752603531, -0.005378466099500656, 0.028775641694664955, -0.03219614177942276, -0.0032185963355004787, 0.012100700289011002, 0.016437407582998276, 0.025070099160075188, 0.007234630640596151, -0.037381187081336975, -0.01222286093980074, 0.017944056540727615, 0.0004377426521386951, -0.0028012136463075876, 0.013804163783788681, -0.012501115910708904, -0.02126954309642315, -0.03013298287987709, 0.02790694311261177, -0.012535049580037594, -0.042023297399282455, 0.006566139869391918, 0.015120785683393478, -0.025205833837389946, -0.00039129614015109837, 0.029780074954032898, -0.018500566482543945, 0.02502937987446785, -0.006311638280749321, -0.05689975991845131, 0.007641833275556564, 0.016315246000885963, 0.009155268780887127, -0.012304301373660564, 0.00857161171734333, 0.0680299624800682, -0.006091070361435413, 0.0010095228208228946, -0.022124668583273888, -0.0007448411779478192, -0.0015261609805747867, -0.05771416425704956, 0.054755158722400665, 0.013797377236187458, 0.0023006941191852093, 0.009915380738675594, 0.015989484265446663, -0.005490446928888559, 0.02238256298005581, 0.043597813695669174, 0.009582831524312496, -0.004635321442037821, 0.007363578304648399, -0.0036716090980917215, -0.025314420461654663, -0.03496512025594711, 0.005059490911662579, 0.015568708069622517, -0.016939623281359673, -0.05163327604532242, 0.008463025093078613, -0.022993367165327072, -0.03852135315537453, 0.00654238648712635, -0.01176136452704668, 0.005154504906386137, 0.02359059639275074, 0.005246125161647797, 0.0013836401049047709, 0.04061166197061539, -0.01730610616505146, 0.0150529183447361, -0.01272507756948471, -0.01867702044546604, 0.02312909997999668, -0.06982164829969406, 0.04509088769555092, -6.882146408315748e-05, 0.019654305651783943, -0.026685336604714394, 0.005568494088947773, 0.0232241153717041, -0.0228983536362648, 0.02319696731865406, -0.04017731174826622, 0.0016949803102761507, -0.013668430037796497, 0.018894195556640625, 0.023400569334626198, -0.007743633817881346, -0.019057076424360275, -0.051388952881097794, -0.0013242564164102077, -0.0014379337662830949, 0.010349730029702187, 0.020794473588466644, -0.0028724742587655783, 0.03168035298585892, 0.03233187645673752, -0.0043367063626646996, 0.017360398545861244, 0.03222328796982765, 0.006162330973893404, -0.024852924048900604, -0.015093638561666012, -0.027540460228919983, -0.0073160710744559765, 0.01793048158288002, 0.030078690499067307, -5.1377501222305e-05, 0.009080614894628525, -0.0008284025243483484, -0.012182140722870827, 0.041996147483587265, 0.0051714712753891945, -0.03922717273235321, -0.019029928371310234, 0.017659014090895653, -0.013715936802327633, -0.003120189066976309, 0.00582299567759037, -0.006820641458034515, -0.008035462349653244, -0.010044327937066555, 0.021486718207597733, -0.026508880779147148, 0.0007647771271876991, -0.008666626177728176, -0.010885879397392273, -0.014374247752130032, -0.020930208265781403, 0.019491424784064293, -0.02997010201215744, 0.01714322343468666, -0.010499036870896816, -0.044086456298828125, 0.004482620395720005, -0.0012979578459635377, 0.009331723675131798, 0.0061725107952952385, -0.0010137645294889808, -0.015066491439938545, 0.01723823882639408, 0.014319953508675098, 0.034042127430438995, 0.0007944690296426415, 0.02120167575776577, 0.027771208435297012, -0.022368989884853363, 0.03900999575853348, -0.005690654739737511, 0.004815169144421816, 0.0060367765836417675, 0.02444572187960148, -0.022260401397943497, -0.01159848365932703, 0.024092813953757286, 0.0013539482606574893, -0.01711607724428177, 0.0097321392968297, 0.01563657447695732, 0.01665458083152771, -0.010383662767708302, 0.005694048013538122, -0.032929107546806335, 0.050384521484375, 0.013729509897530079, -0.010023967362940311, 0.06156901642680168, -0.013586989603936672, -0.016247378662228584, -0.0019308184273540974, -0.046773992478847504, -0.0481041856110096, 0.05225764960050583, -0.0217581856995821, 0.001186825567856431, 0.011550976894795895, -0.009576044976711273, 0.0020546759478747845, -0.0654238685965538, 0.006094463635236025, -0.0005611759261228144, -0.026454588398337364, 0.018364831805229187, -0.023970652371644974, -0.025708049535751343, -0.028449879959225655, 0.06439228355884552, -0.03732689470052719, -0.030648773536086082, 0.024595029652118683, 0.010675491765141487, 0.009684632532298565, 0.008327290415763855, 0.011537403799593449, 0.01776760071516037, 0.04400501400232315, 0.012039619497954845, -0.007159976754337549, -0.04275625944137573, -0.11542832851409912, -0.002161566400900483, 0.02182605303823948, -0.04541664943099022, -0.02500223182141781, -0.0188127551227808, -0.022301122546195984, -0.001922335010021925, 0.04462939128279686, 0.054755158722400665, -0.011815658770501614, 0.020563725382089615, -0.014713582582771778, -0.04623105376958847, 0.0037700163666158915, 0.0026536027435213327, 0.003495154669508338, -0.008727706037461758, -0.020102228969335556, -0.015785882249474525, 0.006942802108824253, -0.02254544384777546, 0.02901996299624443, -0.056519705802202225, -0.028286999091506004, 0.003993977792561054, 0.00897881481796503, -0.023549877107143402, 0.014252087101340294, -0.0010502430377528071, -0.00261288252659142, 0.025409433990716934, -0.0008351892465725541, 0.008490171283483505, -0.004234905820339918, -0.0013810950331389904, 0.006016416475176811, -0.013396961614489555, -0.0014574455562978983, -0.013797377236187458, -0.0015117392176762223, 0.005001803860068321, -0.03843991458415985, 0.004665861837565899, -0.006735807750374079, 0.0071803368628025055, -0.012080340646207333, -0.009481031447649002, 0.031191710382699966, 0.014224939979612827, 0.017360398545861244, -0.05098174884915352, 0.01200568675994873, -0.04291914030909538, -0.03168035298585892, 0.020265109837055206, 0.016478126868605614, -0.010363303124904633, 0.03586096316576004, -0.004017731174826622, 0.005965516436845064, 0.0059858765453100204, 0.0217581856995821, -0.005962123163044453, 0.024092813953757286, 0.013240867294371128, -0.01609807088971138, -0.006430405657738447, 0.018106937408447266, 0.017821894958615303, 0.0035969552118331194, -0.008177983574569225, -0.004340099636465311, -0.008612332865595818, 0.004665861837565899, 0.04905432462692261, -0.014700009487569332, -0.017292531207203865, 0.01127272192388773, -0.021649599075317383, -0.007139616645872593, -0.009820366278290749, -0.02741830050945282, 0.010838372632861137, 0.006620433647185564, 0.021948212757706642, -0.015432974323630333, 0.00618269108235836, -0.03757121413946152, 0.0020054723136126995, -0.024133533239364624, -0.050601694732904434, 0.0002648936933837831, 0.000781743903644383, -0.017944056540727615, -0.001568577834405005, -0.028259852901101112, 0.026223840191960335, -0.07383938133716583, -0.038032710552215576, 0.02820555865764618, -0.020115802064538002, -0.012182140722870827, -0.025110820308327675, -0.0009603191865608096, 0.07959450781345367, 0.013132279738783836, -0.06124325096607208, 0.008686985820531845, -0.020170096307992935, 0.0017832075245678425, -0.01459142193198204, 0.02205680124461651, -0.015975911170244217, 0.03216899558901787, -0.008089755661785603, 0.020034361630678177, 0.013926324434578419, -0.030323011800646782, -0.006287884898483753, 0.0032966434955596924, 0.0010417596204206347, 0.008388371206820011, -0.01051939744502306, -0.007092109881341457, 0.002911497838795185, -0.010342942550778389, 0.005388645920902491, 0.002640029415488243, -0.004686221946030855, -0.0330376960337162, 0.003980404231697321, -0.01110984105616808, -0.007438231725245714, 0.002957307966426015, 0.019640732556581497, -0.043462079018354416, -0.012602916918694973, 0.007506099063903093, 0.0310831218957901, 0.0045640612952411175, 0.031028829514980316, -0.018731314688920975, -0.017821894958615303, -0.023468436673283577, -0.03648534044623375, 0.004625141620635986, 0.0015337959630414844, 0.0028334506787359715, 0.010139341466128826, 0.046149615198373795, -0.017360398545861244, -0.03890141099691391, 0.012121060863137245, -0.03157176449894905, 0.010702638886868954, -0.04061166197061539, 0.015256519429385662, -0.020061509683728218, 0.021948212757706642, 0.005276665557175875, 0.03670251742005348, -0.004068631213158369, 0.011279508471488953, -0.02126954309642315, 0.01298975944519043, -0.031788941472768784, 0.03947149217128754, 0.013037266209721565, 0.014930757693946362, -0.03111026994884014, 0.031028829514980316, -0.02211109548807144, 0.030703067779541016, -0.0012640244094654918, -0.026101678609848022, -0.011931032873690128, -0.004659074824303389, 0.013071199879050255, 0.03474794328212738, 0.011700284667313099, 0.015080065466463566, 0.02572162263095379, 0.0103904502466321, 0.004665861837565899, -0.011164134368300438, -0.019980067387223244, -0.023088380694389343, 0.04115459695458412, 0.0028758675325661898, 0.0067595611326396465, -0.012378955259919167, 0.018541285768151283, 0.01254862267524004, 0.0019528751727193594, 0.0023889211006462574, -0.0019189417362213135, -0.02899281680583954, -0.01818837784230709, -0.013715936802327633, 0.004462260287255049, -0.002117452910169959, 0.01822909712791443, -0.0019393018446862698, -0.0022735472302883863, -0.004234905820339918, 0.0016474733129143715, 0.02417425438761711, 0.007662193384021521, 0.057279814034700394, -0.027554035186767578, 0.04074739292263985, -0.010315796360373497, -0.005446332972496748, -0.01698034256696701, 0.018731314688920975, -0.015066491439938545, -0.041670385748147964, 0.007621473167091608, 0.036756809800863266, -0.01586732268333435, 0.05434795841574669, 0.0004644653236027807, 0.01822909712791443, -0.0030082082375884056, 0.02375347726047039, -0.0030896489042788744, -0.026997525244951248, 0.0006634006858803332, 0.009474243968725204, -0.02997010201215744, -0.013098346069455147, 0.030703067779541016, -7.041209755698219e-05, 0.023441288620233536, -0.01475430279970169, 0.010668705217540264, -0.012521476484835148, -0.015039345249533653, 0.006267524790018797, -0.01482217013835907, 0.020631592720746994, -0.02192106656730175, 0.03311913460493088, -0.019247103482484818, -0.0013649766333401203, -0.005310598760843277, -0.020672312006354332, -0.006949589122086763, 0.0191385168582201, -9.252191375708207e-05, 0.027988383546471596, -0.017971202731132507, 0.0038853902369737625, 0.018473418429493904, -0.0624920055270195, -0.02948145940899849, 0.016803888604044914, 0.03645819425582886, 0.03700113296508789, -0.017523279413580894, 0.01593519002199173, 0.010539757087826729, 0.020984500646591187, -0.01668172888457775, 0.03507370501756668, 0.01930139772593975, -0.01449640840291977, -0.002041102387011051, -0.020672312006354332, 0.01567729562520981, -0.010465104132890701, -0.02882993593811989, 0.07367650419473648, 0.020075082778930664, -0.0026536027435213327, 0.003593561938032508, 0.04538950324058533, -0.028124118223786354, 0.03461221233010292, 0.03124600276350975, -0.03857564926147461, 0.03241331875324249, 0.026590321213006973, 0.006321818567812443, -0.016111643984913826, 0.022260401397943497, 0.030404452234506607, 0.021934639662504196, 0.008463025093078613, 0.005734768230468035, 0.002063159132376313, 0.007859007455408573, -0.014618569053709507, 0.009630338288843632, -0.018079789355397224, 0.028314145281910896, 0.023278407752513885, -0.008788786828517914, 0.021473143249750137, 0.037679802626371384, 0.032304730266332626, 0.028015529736876488, 0.017034636810421944, 0.027391154319047928, 0.009474243968725204, 0.020631592720746994, 0.04213188216090202, -0.019314970821142197, -0.007675766944885254, -0.02097092755138874, -0.009257069788873196, -0.0036614290438592434, 0.008388371206820011, -0.017061783000826836, -0.007838647812604904, 0.005809422116726637, -0.010655131191015244, -0.01672244817018509, -0.019423557445406914, -0.003576595103368163, 0.026576748117804527, -0.008361224085092545, 0.018174804747104645, -0.017781175673007965, 0.0228983536362648, 0.017944056540727615, -0.030078690499067307, -0.02342771552503109, 0.0014472655020654202, 0.031001681461930275, -0.020767325535416603, 0.012609703466296196, -0.01370915025472641, 0.02401137351989746, 0.018500566482543945, 0.01199211273342371, 0.012304301373660564, -0.03246761113405228, 0.00012057011190336198, 0.016898902133107185, -0.02676677703857422, -0.01871773973107338, -0.04015016555786133, 0.045199476182460785, 0.004245085641741753, -0.02333270199596882, 0.01064834464341402, -0.011130200698971748, 0.01521579921245575, 0.01779474876821041, 0.008252636529505253, 0.0033679038751870394, -0.019002782180905342, 0.01936926506459713, 0.01259613037109375, -0.020930208265781403, -0.05111748352646828, -0.009460670873522758, 0.007750420365482569, 0.0019206383731216192, -0.0010307312477380037, -0.025599462911486626, -0.03176179155707359, 0.006440585944801569, 0.007248204201459885, 0.026590321213006973, -0.038819968700408936, 0.01746898703277111, 0.03412356600165367, -0.022816911339759827, -0.0017246721545234323, -0.03406927362084389, 0.01531081274151802, -0.010234355926513672, 0.007200696971267462, 0.019586438313126564, -0.07411085069179535, -0.006335392128676176, -0.014564275741577148, -0.023210540413856506, -0.019247103482484818, 0.019871480762958527, 0.02931857854127884, -0.021649599075317383, -0.006949589122086763, -0.02709253877401352, -0.021649599075317383, 0.011293082498013973, 0.0014565972378477454, 0.0070446026511490345, -0.040720246732234955, -0.002042799023911357, 0.021948212757706642, -0.0003149456751998514, 0.014442114159464836, 0.010743359103798866, 0.010017180815339088, 0.002716379938647151, 0.012535049580037594, -0.0023532910272479057, 0.028965668752789497, -0.00994931347668171, -0.007546819280833006, -0.01410277932882309, -0.007662193384021521, -0.009053468704223633, 0.035453762859106064, 0.020265109837055206, 0.010933386161923409, 0.02778478153049946, -0.01459142193198204, -0.0025246553122997284, -0.009745712392032146, 0.03520943969488144, 0.021961787715554237, 0.005524380132555962, -0.022844059392809868, 0.015012198127806187, 0.029942955821752548, 0.025232980027794838, -0.005755128338932991, -0.03265763819217682, -0.023373423144221306, 0.01351233571767807, 0.022626884281635284, -0.0013641283148899674, 0.009677845984697342, 0.0031490325927734375, 0.017414692789316177, 0.00664079375565052, -0.00516129145398736, -0.010756932199001312, 0.009100975468754768, -0.016138792037963867, 0.015270092524588108, -0.01186316553503275, 0.0004305317997932434, -0.04400501400232315, -0.02581663802266121, -0.013037266209721565, -0.007261777762323618, -0.010587264783680439, -0.007424658630043268, 6.988188397372141e-05, -0.03605099394917488, 0.009005961939692497, -0.02735043317079544, 0.08610974997282028, 0.011265935376286507, -0.008130475878715515, -0.007770780473947525, 0.012358595617115498, -0.020034361630678177, -0.0032033261377364397, 0.004659074824303389, -0.006620433647185564, 0.004889823030680418, 0.010492250323295593, 0.0317346453666687, 0.010268289595842361, 0.008076182566583157, 0.006087677087634802, -0.02319696731865406, -0.003613922046497464, 0.045199476182460785, 0.022721897810697556, -0.00027358916122466326, 0.011374522931873798, -0.06515239924192429, -0.026807496324181557, -0.027051817625761032, 0.007288924418389797, -0.004316346254199743, 0.008748066611588001, 0.00749931251630187, -0.010431170463562012, 0.0027452234644442797, -0.019002782180905342, 0.0067290207371115685, 0.015921616926789284, -0.0008678502636030316, -0.020441563799977303, -0.01616593822836876, 0.018527712672948837, -0.030811654403805733, 0.004618354607373476, 0.006813854910433292, -0.01688532903790474, 0.00860554538667202, -0.014672862365841866, 0.003532481612637639, 0.02804267778992653, -0.0070378161035478115, -0.0017136437818408012, -0.020129375159740448, 0.010851945728063583, 0.011184494942426682, 0.013661643490195274, -0.030404452234506607, -0.025572314858436584, -0.014374247752130032, -0.023644890636205673, -0.009813579730689526, 0.004061844665557146, 0.01130665559321642, -0.004587814677506685, 0.02254544384777546, -0.009542111307382584, 0.029047111049294472, -0.04148035869002342, 0.005439546424895525, -0.017360398545861244, 0.020998073741793633, 0.021445997059345245, -0.021554583683609962, -0.021568158641457558, 0.012752224691212177, -0.026875363662838936, -0.013729509897530079, 0.01825624518096447, 0.00845623854547739, -0.010594051331281662, 0.03773409500718117, -0.023631317541003227, 0.008720919489860535, -0.00225318712182343, -0.0026603895239531994, -0.008666626177728176, -0.016464553773403168, 0.012521476484835148, 0.031490325927734375, 0.008917734026908875, 0.021703891456127167, 0.008334076963365078, 0.0037259026430547237, 0.010940173640847206, 0.030703067779541016, -0.009460670873522758, 0.0003514242125675082, 0.004258659202605486, -0.008327290415763855, 0.0010247929021716118, 0.017251811921596527, -0.010349730029702187, -0.01573158986866474, 0.02899281680583954, -0.020604444667696953, 0.01186316553503275, -0.01600305736064911, 0.004967870190739632, 0.010532970540225506, -0.0382770337164402, 0.00010434563591843471, -0.0150529183447361, -0.018378404900431633, -0.03111026994884014, 0.0064371926710009575, 0.006213231012225151, -0.01802549697458744, 0.009528538212180138, 0.0008186466293409467, 0.0048796432092785835, -0.039444345980882645, 0.012887958437204361, -0.029535753652453423, -0.005317385774105787, -0.0070310295559465885, -0.03710971772670746, -0.005052703898400068, 0.007621473167091608, 0.006223411299288273, 0.017984775826334953, 0.03854850307106972, -0.02672605589032173, -0.009168842807412148, 0.007322858087718487, -0.01639668643474579, -0.00384467002004385, 0.016736021265387535, 0.0020444958936423063, -0.013172999955713749, -0.019966494292020798, -0.021513864398002625, 0.004550487734377384, 0.013817737810313702, -0.008910947479307652, -0.008198343217372894, -0.02558588981628418, 0.00903310813009739, -0.00667472742497921, -0.0019342118175700307, -0.00490000331774354, 0.04381498694419861, -0.010906239971518517, -0.001089266617782414, 0.0023057840298861265, 0.0006163179059512913, -0.018609153106808662, 0.008157623000442982, -0.02725541964173317, 0.044873714447021484, 0.003532481612637639, -0.011483109556138515, 0.007146403659135103, -0.006298065185546875, 0.045660972595214844, -0.014455688185989857, -0.009616765193641186, -0.007838647812604904, -0.003576595103368163, -0.036105286329984665, 0.04034019261598587, 0.006915655452758074, -0.023305555805563927, 0.0024024946615099907, -0.01315264031291008, 0.0007800472667440772, -0.03523658961057663, -0.04047592729330063, 0.0457967072725296, 0.013553055934607983, -0.011001253500580788, -0.01163241732865572, 0.008503745310008526, 0.020984500646591187, -0.05320779234170914, 0.005833175498992205, -0.00840873084962368, -0.002787640318274498, 0.009291003458201885, -0.022355416789650917, -0.03151747211813927, -0.00857161171734333, 0.02238256298005581, -0.018989209085702896, 0.03477509319782257, -0.0382770337164402, -0.007085323333740234, 0.0179983489215374, 0.028585614636540413, -0.015242946334183216, 0.009609978646039963, -0.027852648869156837, 0.017754027619957924, 0.015297239646315575, 0.025830211117863655, 0.028259852901101112, 0.01911136880517006, -0.017740454524755478, -0.021310262382030487, -0.01783546805381775, -0.014849317260086536, -0.009820366278290749, -0.008483384735882282, -0.005907829385250807, 0.014550701715052128, -0.020170096307992935, 0.00430955970659852, 0.007981169037520885, 0.0030998289585113525, 0.042349059134721756, 0.014157072640955448, 0.009501391090452671, 0.008130475878715515, 0.014808597043156624, 0.04381498694419861, -0.023767052218317986, -0.013614135794341564, -0.004374033305794001, 0.054266516119241714, -0.040068723261356354, 0.0026536027435213327, -0.0046013882383704185, -0.010444743558764458, 0.005419186316430569, 0.03740833327174187, -0.036105286329984665, 0.002008865587413311, -0.006532206200063229, 0.0032644064631313086, 0.002945431275293231, -0.008123689331114292, -0.016736021265387535, 0.0032474398612976074, 0.011897099204361439, -0.01786261610686779, -0.023862065747380257, -0.017102504149079323, 0.0015431276988238096, 0.004920363426208496, 0.001301351236179471, -0.03333630785346031, 0.04015016555786133, -0.01953214593231678, -0.012507902458310127, -0.0010544847464188933, -0.005738161504268646, -0.018758460879325867, -0.003191449446603656, 0.004010944627225399, -0.0224097091704607, 0.00975249893963337, -0.021391702815890312, -0.016926050186157227, -0.027554035186767578, 0.019491424784064293, 0.011218428611755371, -0.023237688466906548, -0.03349918872117996, 0.029752926900982857, 0.027594754472374916, -0.0012512992834672332, 0.003912537358701229, -7.274502422660589e-05, -0.019952921196818352, -0.018283391371369362, -0.019545719027519226, -0.00480159604921937, 0.005537953693419695, -0.014129926450550556, -0.03257619962096214, -0.045850999653339386, 0.018853474408388138, -0.0018850081833079457, -0.015487267635762691, 0.01616593822836876, -0.00983394030481577, 0.0071803368628025055, -0.009861086495220661, 0.024133533239364624, 0.01014612801373005, 0.021554583683609962, 0.009318149648606777, -0.029128551483154297, -0.003423894289880991, 0.0011511953780427575, -0.013295160606503487, 0.009419950656592846, 0.027472594752907753, 0.03320057690143585, 0.016301672905683517, -0.0004890671698376536, 0.057008348405361176, 0.017740454524755478, 0.014930757693946362, 0.030513038858771324, -0.01744183897972107, -0.0523390918970108, 0.004811775870621204, 0.015202226117253304, 0.011924246326088905, -0.015718014910817146, -0.009447097778320312, 0.0015974213602021337, 0.008252636529505253, 0.00048058375250548124, -0.037381187081336975, -0.002836843952536583, -0.021215248852968216, -0.00038875112659297884, -0.032114703208208084, 0.0012241523945704103, 0.01806621626019478, -0.015270092524588108, -0.0552980974316597, 0.054130781441926956, 0.010756932199001312, 0.028802787885069847, -0.002972578164190054, 0.025395860895514488, -0.026943231001496315, 0.04766983538866043, -0.0012640244094654918, 0.01707535795867443, 0.016220232471823692, -0.00844266451895237, 0.011998899281024933, 0.006338785402476788, -0.036268167197704315, 0.03510085493326187, -0.021093089133501053, 0.010152915492653847, 0.012195713818073273, -0.008435877971351147, 0.01028864923864603, 0.0028928343672305346, -0.011822445318102837, 0.005860322155058384, 0.0028775641694664955, 0.0027587967924773693, 0.016043778508901596, -0.021907493472099304, 0.01858200691640377, 0.0179983489215374, 0.01294225174933672, -0.0035528417211025953, -0.0014235120033845305, 0.02238256298005581, 0.030024396255612373, 0.003227079752832651, -0.013756657019257545, -0.019708599895238876, -0.029861515387892723, 0.01855485886335373, 0.012148207053542137, 0.02094378136098385, -0.02983436919748783, -0.02169031836092472, 0.051090337336063385, -0.030513038858771324, 0.024595029652118683, 0.007811500690877438, 0.0010638164822012186, 0.011754577979445457, -0.01917923614382744, 0.02277619205415249, 0.028314145281910896, 0.0005599033902399242, -0.002112362766638398, -0.00046785868471488357, -0.019749321043491364, 0.0033509370405226946, -0.08610974997282028, -0.020835192874073982, 0.005453119985759258, -0.03862994164228439, -0.024649323895573616, 0.02270832471549511, -0.055108070373535156, 0.015514414757490158, -0.025952370837330818, 0.01612521894276142, -0.02479863166809082, 0.011136988177895546, -0.020753752440214157, 0.016057351604104042], [0.014659510925412178, -0.021950621157884598, 0.05910179018974304, 0.018536938354372978, 0.007909437641501427, 0.03637826070189476, -0.049723826348781586, 0.05106353387236595, -0.012418074533343315, 0.05400058999657631, -0.029834294691681862, -0.019966822117567062, 0.02926749549806118, 0.027386749163269997, -0.04596233367919922, 0.023702548816800117, 0.00982882920652628, 0.013004197739064693, -0.016359912231564522, -0.004537621047347784, 0.032256077975034714, -0.0008300722693093121, -0.035862985998392105, -0.026059921830892563, -0.030323805287480354, -0.03295169770717621, 0.0083603011444211, -0.005964282900094986, 0.06090524420142174, -0.07064390182495117, 0.05693764612078667, -0.041144534945487976, 0.003442666493356228, -0.055185716599226, -0.002305845730006695, -0.022684885188937187, -0.04552435129880905, -0.003043330041691661, 0.014749684371054173, 0.015625648200511932, 0.009738655760884285, 0.010118669830262661, -0.013384210877120495, 0.02088143117725849, -0.047224752604961395, 0.07785771787166595, 0.01550971157848835, -0.062451064586639404, 0.012147556059062481, 0.02410188503563404, 0.03490973263978958, 0.07548746466636658, 0.0019000684842467308, -0.05343379080295563, 0.023882893845438957, 0.008283010683953762, 0.018691521137952805, 0.031895387917757034, 0.03709964081645012, -0.016501611098647118, -0.0010997854406014085, -0.0332350954413414, -0.0012624183436855674, 0.021461112424731255, -0.0035489413421601057, 0.025969749316573143, -0.011941446922719479, 0.03210149705410004, -0.022865230217576027, -0.007902996614575386, 0.024887677282094955, 0.04992993548512459, 0.012418074533343315, -0.02262047678232193, -0.017300285398960114, 0.0012414854718372226, -0.045189425349235535, -0.01607651077210903, -0.027567096054553986, -0.0022092321887612343, -0.03637826070189476, 0.02307133935391903, 0.016269739717245102, -0.006234800908714533, 0.02353508584201336, -0.01937425695359707, -0.0622449554502964, -0.010002733208239079, -0.020701084285974503, -0.01901356689631939, 0.017429102212190628, -0.003568264190107584, -0.05935942754149437, 0.03970177099108696, 0.030581440776586533, -0.02077837660908699, 0.054412808269262314, -0.01865287497639656, -0.02844305895268917, 0.028829513117671013, -0.038825806230306625, -0.042226605117321014, -0.03534771502017975, 0.025544648990035057, 0.004814580082893372, -0.038284771144390106, -0.021911976858973503, 0.04495755210518837, 0.024694448336958885, -0.01790573075413704, 0.01570293866097927, -0.05616473779082298, -0.02473309449851513, 0.06631561368703842, -0.03279711306095123, -0.03377613425254822, -0.05273817107081413, 0.01361608412116766, 0.009751537814736366, 0.020443448796868324, -0.03962447866797447, -0.02408900298178196, 0.022826585918664932, -0.06904655694961548, 0.02244012989103794, -0.018691521137952805, -0.013345565646886826, -0.01205094251781702, -0.08208295702934265, 0.0022349958308041096, 0.052866991609334946, -0.026085685938596725, 0.05786513537168503, -0.06054455414414406, -0.009526105597615242, 0.002426612889394164, 0.005613252986222506, -0.032925933599472046, 0.011574315838515759, -0.029473604634404182, 0.0709015354514122, 0.002159315161406994, -0.011799747124314308, 0.04220084473490715, -0.06765531748533249, 0.015921929851174355, 0.027438277378678322, 0.02456563152372837, -0.016411438584327698, 0.0019596468191593885, -0.004299307707697153, 0.01826642081141472, -0.03990788012742996, -0.02253030426800251, 0.027026059105992317, 0.0054425690323114395, 0.045653171837329865, 0.04176286235451698, -0.010743438266217709, -0.003468430135399103, -0.034394461661577225, -0.032281842082738876, -0.015252075158059597, 0.009262029081583023, 0.010865814983844757, 0.04941466078162193, -0.005130184814333916, 0.041196059435606, -0.06111135333776474, -0.06837670505046844, -0.021486876532435417, -0.026716895401477814, -0.060132335871458054, -0.00514950742945075, 0.00030473555671051145, -0.04506060853600502, 0.017673857510089874, -0.004170489497482777, 0.004395921248942614, -0.002925783395767212, -0.005738850682973862, 0.027541331946849823, -0.0839894711971283, -0.02260759472846985, -0.061523571610450745, 0.04346325993537903, -0.003333170898258686, 0.004489314276725054, -0.04181438684463501, 0.01287537906318903, 0.01976071298122406, 0.022646239027380943, 0.02317439392209053, 0.009416610933840275, -0.021203475072979927, 0.024037476629018784, 0.011522788554430008, 0.007142969407141209, -0.01938713900744915, -0.007741973735392094, 0.010910901241004467, -0.03094213269650936, 0.06956183165311813, 0.017789794132113457, -0.006048014387488365, -0.01541953906416893, -0.031792331486940384, -0.005713087040930986, -0.02307133935391903, -0.05232595279812813, -0.005970723461359739, -0.0066341375932097435, -0.022118085995316505, 0.010711233131587505, -0.00298697198741138, 0.012946229428052902, -0.026845714077353477, 0.009899678640067577, 0.012302137911319733, 0.049053970724344254, -0.02539006806910038, -0.002323558321222663, 0.012914024293422699, -0.011922124773263931, -0.03174080327153206, -0.013384210877120495, -0.0018759150989353657, -0.03351849690079689, -0.005246121436357498, -0.06549117714166641, -0.016128038987517357, -0.004763052798807621, -0.01375778391957283, 0.0016875184373930097, -0.01715858466923237, -0.02823694981634617, -0.01554835680872202, -0.00447643268853426, -0.015651412308216095, 0.011464820243418217, 0.013487265445291996, -0.019889529794454575, 0.02326456643640995, 0.03588875010609627, 0.02398594841361046, -0.014414756558835506, -0.0239215400069952, -0.028674932196736336, 0.03606909513473511, 0.029499368742108345, 0.0485386997461319, 0.0222597848623991, 0.06884044408798218, -0.0276959128677845, 0.008070460520684719, 0.026794185861945152, -0.0014145849272608757, -0.04606539011001587, 0.04062926024198532, -0.022208258509635925, 0.0015498439315706491, 0.013332683593034744, -0.009397287853062153, -0.029885822907090187, -0.0711076483130455, -0.016566021367907524, -0.001142456429079175, -0.0008912609191611409, -0.024900557473301888, 0.055907100439071655, -0.046580661088228226, 0.03581146150827408, -0.0017970139160752296, -0.020559385418891907, -0.03083907812833786, 0.0496465340256691, -0.011381087824702263, -0.04578198865056038, -0.015355129726231098, -0.02539006806910038, -0.055082663893699646, -0.0035553823690861464, -0.017467748373746872, -0.04552435129880905, 0.0474308617413044, 0.025132430717349052, 0.012147556059062481, -0.020327512174844742, 2.78770639852155e-05, -0.02362525835633278, 0.04969806224107742, 0.01882033981382847, 0.01625685766339302, 0.007973846979439259, 0.05384600907564163, 0.02834000438451767, -0.005861228331923485, 0.014079829677939415, 0.012134674936532974, 0.01108480617403984, 0.027309458702802658, 0.00041342590702697635, -0.0011722455965355039, -0.06409993767738342, -0.04413311555981636, 0.022015031427145004, 0.04194320738315582, 0.02187333069741726, -0.05657695233821869, 0.01763521134853363, -0.028185421600937843, 0.04730204492807388, -0.06219342723488808, -0.0644606277346611, -0.032178785651922226, -0.016102274879813194, -0.016746366396546364, 0.013171660713851452, 0.018330829218029976, -0.00023469065490644425, 0.029576659202575684, -0.008978628553450108, 0.015535474754869938, -0.004138284828513861, -0.0052396804094314575, -0.04117029905319214, 0.01928408443927765, 0.03362154960632324, -0.036507077515125275, -0.01992817595601082, -0.03449751436710358, -0.014930029399693012, 0.018704403191804886, 0.027180640026926994, -0.01808607578277588, -0.034471750259399414, -0.04488025978207588, 0.04781731590628624, 0.022749293595552444, 0.03341544046998024, 0.012572656385600567, 0.003487752750515938, -0.05642237141728401, 0.007252464536577463, -0.03573416918516159, 0.03722846135497093, 0.018253538757562637, 0.04158251732587814, 0.011690251529216766, 0.05853499099612236, 0.033466968685388565, 0.02952513098716736, -0.03297745808959007, -0.00996408797800541, -0.04155675321817398, 0.006447351071983576, 0.015754466876387596, 0.021203475072979927, -0.022749293595552444, -0.009500342421233654, 3.8066784327384084e-05, 0.022478776052594185, 0.00032868768903426826, 0.036507077515125275, 0.04683829843997955, -0.02401171252131462, -0.009693569503724575, 0.013487265445291996, 0.025312775745987892, -0.0016553138848394156, 0.01011222880333662, 0.024320876225829124, 0.05822582542896271, 0.01790573075413704, -0.0038226800970733166, -0.03140587732195854, 0.008553528226912022, 0.032642532140016556, -0.008295891806483269, -0.010511565022170544, 0.008985069580376148, 0.03176656737923622, 0.014878502115607262, 0.006801601033657789, 0.005996487103402615, 0.03820747882127762, -0.0620388463139534, -0.01264994777739048, -0.05925637111067772, 0.015084611251950264, -0.0019676981028169394, 0.010704792104661465, -0.04266458749771118, 0.030246512964367867, -0.018691521137952805, 0.02834000438451767, 0.010505123995244503, 0.011593637987971306, 0.00923626497387886, 0.0014902655966579914, -0.011471261270344257, -0.057092227041721344, 0.002589245792478323, -0.02214384824037552, -0.05160457268357277, -0.021190594881772995, -0.060699135065078735, -0.00588699197396636, -0.029653949663043022, -0.0030401095282286406, 0.031148241832852364, 0.015844639390707016, 0.049363136291503906, -0.005944959819316864, 0.004202693700790405, -0.027206404134631157, -0.027902022004127502, 0.0642545223236084, -0.048512935638427734, -0.0311224777251482, 0.014144238084554672, 0.03735727816820145, 0.013835075311362743, -0.0006235606269910932, -0.032745588570833206, 0.03127706050872803, 0.025712113827466965, 0.011290915310382843, -0.0074456920847296715, -0.04931160807609558, 0.008907778188586235, -0.0013091149739921093, 0.031431641429662704, 0.006447351071983576, -0.046194206923246384, -0.0465291328728199, 0.00821216031908989, 0.019683420658111572, -0.014917147345840931, -0.04145369678735733, 0.015715820714831352, -0.010955988429486752, 0.03575993329286575, -0.012153997085988522, -0.023058457300066948, -0.0022366060875356197, 0.020250221714377403, 0.017892848700284958, -0.0008131649228744209, 0.01306860614567995, -0.024114767089486122, -0.0021464333403855562, -0.057298336178064346, -0.016115156933665276, -0.023238804191350937, -0.011806188151240349, 0.012798088602721691, -0.049337372183799744, 0.052197135984897614, -0.0334412045776844, 0.015587002038955688, 0.03849088028073311, 0.030684495344758034, 0.0478430800139904, 0.0319211520254612, -0.011741778813302517, -0.019644776359200478, -0.006482775788754225, -0.023754077032208443, -0.019232558086514473, -0.011471261270344257, -0.005265444051474333, -0.02197638526558876, -0.02705182321369648, 0.0006151068955659866, -0.004202693700790405, 0.00408353703096509, -0.024784622713923454, -0.0030352789908647537, -0.020997367799282074, 0.03315780684351921, 0.03630096837878227, -0.04797189682722092, -0.03408529609441757, 0.0733233168721199, -0.01283029280602932, 0.08089783042669296, 0.001627134857699275, -0.010234606452286243, -0.0009645262616686523, -0.052197135984897614, -0.019515957683324814, 0.024398166686296463, -0.013963893055915833, 0.010788524523377419, 0.008070460520684719, -0.025596177205443382, -0.0018437105463817716, 0.021860448643565178, 0.00923626497387886, 0.005800039507448673, -0.04802342504262924, 0.011052601970732212, 0.022942522540688515, 0.011393969878554344, 0.023419149219989777, -0.014517811127007008, -0.024140531197190285, -0.06363619118928909, 0.035141605883836746, -0.05152728036046028, 0.009835269302129745, 0.037614915519952774, 0.01010578777641058, -0.03073602356016636, -0.005281546153128147, 0.0332350954413414, -0.03758915141224861, -0.03444598615169525, -0.004022348206490278, 0.011329560540616512, -0.030761785805225372, -0.006566507741808891, 0.014350347220897675, -0.008373183198273182, 0.026459258049726486, -0.010614619590342045, -0.039547186344861984, -0.013004197739064693, 0.02648502215743065, -0.00729755125939846, -0.03460057079792023, -0.04516366124153137, 0.032462187111377716, -0.0050142486579716206, -0.015625648200511932, 0.003574704984202981, 0.024166295304894447, 0.014195765368640423, -0.03547653183341026, 0.022414367645978928, -0.00904947891831398, -0.0016875184373930097, 0.04730204492807388, 0.003957939334213734, 0.008418269455432892, 0.017841320484876633, 0.0334412045776844, 0.0064344690181314945, 0.00342656415887177, -0.00942305102944374, 0.023857131600379944, -0.0198380034416914, 0.0008542257128283381, 0.004788816440850496, 0.01006714254617691, 0.013049283996224403, -0.027747441083192825, 0.026819949969649315, 0.011393969878554344, 0.003793695941567421, 0.027438277378678322, -0.004112521186470985, 0.02612433210015297, -0.01024748757481575, -0.0035199574194848537, 0.027773205190896988, -0.00942305102944374, -0.027386749163269997, 0.0003705536073539406, -0.040938425809144974, 0.018807457759976387, 0.00802537426352501, -0.03653284162282944, 0.057762082666158676, 0.026819949969649315, -0.009571192786097527, -0.017493512481451035, 0.04737933352589607, 0.008869132958352566, -0.010698352009057999, 0.04598809778690338, -0.03166351467370987, -0.013500147499144077, -0.015020201914012432, 0.017944375053048134, -0.018021665513515472, -0.059307899326086044, -0.001588489394634962, 0.02576364018023014, 0.03290016949176788, 0.013409974984824657, -0.0056680007837712765, 0.0033235095907002687, 0.006547185126692057, 0.04348902404308319, -0.010646824724972248, -0.009365083649754524, 0.0010128330904990435, -0.005693764425814152, -0.0070527964271605015, -0.01597345620393753, -0.007535864599049091, 0.03140587732195854, -0.05796819180250168, 0.0102990148589015, 0.002292963908985257, -0.006076998542994261, 0.009487460367381573, 0.015007320791482925, 0.019065093249082565, 0.03509007766842842, -0.004399141762405634, -0.04910549893975258, -0.03666165843605995, -0.004395921248942614, -0.0330289863049984, -0.02365102246403694, -0.02068820409476757, -0.00125114677939564, -0.0016553138848394156, -0.005732410121709108, 0.017107056453824043, -0.039366841316223145, -0.027798967435956, -0.004672880284488201, -0.02805660478770733, -0.062348008155822754, 0.0015176394954323769, -0.025506004691123962, -0.018408121541142464, 0.010356983169913292, -0.024488341063261032, -0.015767347067594528, 0.010080024600028992, 0.010047819465398788, 0.022504540160298347, -0.026253148913383484, -0.0021190594416111708, 0.01567717455327511, 0.03838782384991646, 0.0021947401110082865, 0.026536550372838974, -0.035785697400569916, -0.006138187367469072, 0.03186962381005287, 0.0012197473552078009, 0.035862985998392105, 0.00830877386033535, -0.0037196255289018154, 0.03083907812833786, -0.01690094731748104, 0.010601737536489964, -0.013435738161206245, 0.03403376787900925, 0.00320918345823884, -0.05199102684855461, 0.003065873170271516, 0.028133895248174667, 0.021757394075393677, -0.02335474081337452, 0.03331238776445389, -0.0022333855740725994, 0.026162976399064064, 0.05601015314459801, -0.003191470867022872, 0.029396314173936844, -0.010215283371508121, -0.020327512174844742, -0.0019290525233373046, -0.03534771502017975, -0.006270226091146469, 0.037795260548591614, -0.035321950912475586, -0.002568312920629978, -0.015058848075568676, -0.013835075311362743, 0.037331514060497284, -0.0374603345990181, 0.018704403191804886, -0.03045262210071087, -0.011793306097388268, -0.024333758279681206, -0.00403845077380538, 0.008978628553450108, -0.0321272611618042, 0.0044635506346821785, -0.03210149705410004, -0.005774275865405798, 0.02880374900996685, -0.013165220618247986, 0.02980853244662285, -0.014904266223311424, 0.012559774331748486, 0.0007568069268018007, 0.04779155179858208, 0.018987802788615227, -0.009693569503724575, -0.03385342285037041, -0.07043778896331787, 0.026433495804667473, 0.009358642622828484, -0.006157509982585907, -0.03501278907060623, -0.03959871456027031, -0.015934811905026436, -0.023663904517889023, -0.019773593172430992, 0.0400882251560688, -0.018884748220443726, -0.015187665820121765, -0.02121635712683201, -0.029963113367557526, -0.029937349259853363, 0.013190983794629574, 0.006930419243872166, -0.013976775109767914, -0.012540452182292938, -0.0033202890772372484, 0.0024201718624681234, -0.006769396364688873, 0.03351849690079689, -0.04109300673007965, -0.009538987651467323, 0.016669075936079025, -0.009468138217926025, -0.006930419243872166, -0.0003536462318152189, -0.007091442123055458, 0.006189714651554823, 0.0487448088824749, -0.012959111481904984, -0.010711233131587505, -0.001103810966014862, -0.01579311117529869, -0.0013099201023578644, -0.022478776052594185, 0.015805993229150772, -0.035321950912475586, -0.013963893055915833, 0.007085001096129417, -0.03204996883869171, 0.000860666623339057, -0.014054065570235252, 0.016140921041369438, -0.011181419715285301, 0.02465580403804779, 0.029241731390357018, 0.0009838490514084697, -0.00027796553331427276, -0.007355519104748964, 0.010279692709445953, -0.011013955809175968, -0.014698157086968422, -0.00927491020411253, 0.021924857050180435, -0.014324584044516087, -0.0035811460111290216, -0.0024233923759311438, 0.023766959086060524, 0.019129503518342972, -0.006440910045057535, -0.011625843122601509, 0.013590320013463497, 0.0058161416091024876, -0.0032220652792602777, -0.013538792729377747, -0.010904461145401001, 0.03913496807217598, -0.02733522281050682, -0.009809506125748158, -0.001792183262296021, 0.026974530890583992, 0.049543481320142746, 0.014556456357240677, -0.0259311031550169, -0.011696692556142807, 0.0037743733264505863, -0.007922319695353508, -0.00228491285815835, 0.03758915141224861, 0.001556284842081368, 0.01550971157848835, -0.032359130680561066, -0.005903094075620174, 0.0004967551794834435, -0.009757978841662407, -0.027567096054553986, 0.0015039525460451841, -0.001885576406493783, -0.03730574995279312, -0.019683420658111572, 0.007587391883134842, -0.05114082619547844, -0.020263103768229485, 0.008856250904500484, 0.012250610627233982, -0.044004298746585846, -0.01015731506049633, 0.017467748373746872, -0.01006714254617691, -0.008109105750918388, -0.005725969094783068, 0.011490583419799805, 0.09635601192712784, -0.010833610780537128, -0.022195376455783844, 0.007085001096129417, -0.0102990148589015, -0.00831521488726139, -0.019992584362626076, 0.03359578549861908, -0.0033685960806906223, 0.004511857405304909, -0.028752222657203674, -0.003916073124855757, 0.0058934325352311134, 0.015625648200511932, -9.917995339492336e-05, 0.009944764897227287, -0.006566507741808891, -0.02216961234807968, 0.011406851932406425, -0.0072331419214606285, 0.025506004691123962, -0.008192837238311768, -0.017699621617794037, -0.0011786865070462227, -0.008617937564849854, -0.015664292499423027, 0.02705182321369648, -0.0017728605307638645, 0.02269776724278927, 0.008753197267651558, -0.026716895401477814, -0.036429788917303085, -0.00553596206009388, -0.01015087403357029, 0.029679713770747185, 0.005471553187817335, 0.03619791567325592, -0.010537329129874706, -0.03163775056600571, -0.024694448336958885, -0.030993659049272537, 0.0068144830875098705, 0.031972676515579224, -0.0029547675512731075, -0.008321655914187431, 0.02318727597594261, -0.020288866013288498, -0.03519313409924507, -0.015161902643740177, -0.023702548816800117, 0.012804529629647732, -0.005954621359705925, 0.021718747913837433, -0.04080960527062416, 0.02374119497835636, 0.008057578466832638, -0.02104889415204525, -0.01856270246207714, 0.022491658106446266, -0.010034938342869282, -0.0023332196287810802, 0.004792036954313517, 0.009551869705319405, -0.024526985362172127, 0.03202420473098755, 0.00010345711780246347, -0.006347517017275095, -0.02808236889541149, -0.010137992911040783, 0.014659510925412178, 0.008502000942826271, -0.03637826070189476, -0.007168733049184084, 0.037614915519952774, 0.014556456357240677, -0.008283010683953762, -0.0021866890601813793, 0.027489803731441498, 0.045369770377874374, 0.003793695941567421, -0.013120133429765701, 0.0083603011444211, -0.030581440776586533, 0.04627149924635887, 0.028752222657203674, 0.0004210745100863278, 0.006289548706263304, -0.010666146874427795, 0.026639604941010475, 0.032642532140016556, 0.025042258203029633, 0.008424710482358932, -0.020739730447530746, -0.005626135040074587, -0.010910901241004467, -0.008849810808897018, -0.0456274077296257, -0.008656582795083523, -0.023960186168551445, 0.02934478595852852, 0.016785012558102608, 0.004218796268105507, -0.02844305895268917, -0.00690465560182929, 0.02446257695555687, -0.00905591994524002, 0.041118770837783813, -0.01736469380557537, -0.0036326732952147722, -0.003152825403958559, 0.019412903115153313, -0.008920660242438316, -0.008688787929713726, 0.004656778182834387, 0.02648502215743065, 0.015947693958878517, 0.06590339541435242, -0.0028774766251444817, 0.027670150622725487, -0.016411438584327698, 0.03452327847480774, 0.029499368742108345, 0.0048564462922513485, 0.04194320738315582, 0.04238118976354599, -0.029009858146309853, -0.0077290921472013, 0.018949156627058983, 0.03622367978096008, 0.06600644439458847, -0.003349273232743144, 0.001713282079435885, -0.004157607443630695, -0.00024072901578620076, 0.02502937614917755, -0.012437397614121437, -0.0012189422268420458, 0.001595735433511436, 0.01624397560954094, -0.03210149705410004, 0.013409974984824657, 0.03606909513473511, -0.012456719763576984, 0.018665757030248642, 0.009790183044970036, -0.011110570281744003, 0.062090374529361725, -0.046941351145505905, -0.006363619118928909, 0.002106177620589733, -0.03934107720851898, 0.004164048470556736, 0.03691929578781128, -0.010485801845788956, 0.02077837660908699, -0.02097160369157791, 0.04044891521334648, 0.022504540160298347, 0.01259842049330473, -0.026562312617897987, 0.02870069444179535, 0.03813018649816513, 0.022762175649404526, -0.010930224321782589, -0.002825949341058731, 0.030787549912929535, -0.0343429334461689, 0.011065483093261719, 0.03277134895324707, 0.011348883621394634, -0.004940178245306015, -0.008663023822009563, 0.022221140563488007, 0.012070265598595142, 0.0181762482970953, 0.005516639444977045, -0.03243642300367355, 0.029860058799386024, 0.00982882920652628, 0.0003160071501042694, -0.008675905875861645, 0.01660466566681862, -0.005558505188673735, 0.01024748757481575, 0.016772130504250526, 0.019593248143792152, 0.028185421600937843, 0.006295989733189344, 0.019052211195230484, 0.010479360818862915, -0.0079802880063653, 0.043823953717947006, 0.015110375359654427, -0.002692300360649824, 0.04987840726971626, 0.03331238776445389, 0.03001464158296585, 0.006183273624628782, 0.017854202538728714, -0.006911096628755331, -0.008154192008078098, 0.02269776724278927, 0.030220750719308853, 0.018871866166591644, -0.035141605883836746, 0.006212257780134678, -0.0028291698545217514, -0.01458222046494484, 0.009732214733958244, 0.022762175649404526, -0.02327744849026203, 0.007812824100255966, -0.014427638612687588, -0.04091266170144081, -0.033003222197294235, -0.00602547125890851, -0.0014459843514487147, -0.0008276569424197078, 0.02419205754995346, 0.012559774331748486, 0.03905767947435379, 0.01292046532034874, -0.007207378279417753, -0.003288084641098976, 0.04245847836136818, 0.0016537036281079054, 0.00904303789138794, 0.017004001885652542, 0.018614230677485466, 0.028288476169109344, 0.014195765368640423, 0.013203865848481655, -0.01669483818113804, 0.015767347067594528, -0.01660466566681862, 0.035115841776132584, -0.028958331793546677, -0.018253538757562637, -0.06028691679239273, 0.042329661548137665, -0.011194301769137383, -0.007033473812043667, -0.012527570128440857, -0.003507075598463416, 0.010311896912753582, 0.0008679126622155309, 0.0013284377055242658, 0.046864062547683716, -0.05065131559967995, -0.024256467819213867, 0.007271787617355585, -0.029576659202575684, -0.028494585305452347, -0.01791861094534397, -0.01011222880333662, 0.003748609684407711, 0.01116853766143322, -0.04225236922502518, -0.008469796739518642, -0.0009129989775829017, -0.003980482462793589, 0.018021665513515472, -0.04524095356464386, 0.02631755918264389, 0.02380560338497162, 0.018021665513515472, 0.009680687449872494, 7.1831241257314105e-06, 0.01679789274930954, 0.031251296401023865, 0.00942305102944374, 0.018240656703710556, -0.014285938814282417, -0.0054425690323114395, -0.010221724398434162, 0.028185421600937843, -0.0005100395646877587, -0.008901338092982769, -0.016488729044795036, -0.02934478595852852, -0.0003721638349816203, -0.016462966799736023, -0.02206655777990818, 0.01302351988852024, -0.017776912078261375, 0.008231483399868011, -0.03712540492415428, 0.006692105438560247, 0.029988877475261688, -0.011761101894080639, 0.0033202890772372484, 0.011271592229604721, 0.010608178563416004, 0.008946424350142479, -0.014711038209497929, -0.00028662048862315714, 0.013487265445291996, 0.016488729044795036, 0.014324584044516087, -0.03186962381005287, 0.038465116173028946, -0.01718434877693653, 0.021280767396092415, 0.014247292652726173, 0.01463374774903059, -0.00905591994524002, -0.020649557933211327, -0.01352591160684824, 0.03130282461643219, -0.006473114714026451, 0.020842785015702248, 0.021680103614926338, -0.008882015012204647, -0.0066019329242408276, 0.010228165425360203, -0.003011125372722745, -0.022040793672204018, -0.019799357280135155, -0.023857131600379944, 0.022414367645978928, 0.03369884192943573, 0.00038021497312001884, -0.011567874811589718, 0.023200158029794693, 0.02362525835633278, 0.02058514952659607, 0.007761296816170216, -0.03684200718998909, -0.021203475072979927, -0.004647116642445326, -0.015200547873973846, 0.015393774956464767, -0.012798088602721691, -0.061987318098545074, -0.019606130197644234, -0.00680804206058383, -0.010917342267930508, 0.02482326701283455, 0.004138284828513861, -0.005426466930657625, -0.009538987651467323, 0.023882893845438957, 0.024050358682870865, 0.07126222550868988, -0.016024984419345856, -0.0198380034416914, -0.008540647104382515, 0.03880004212260246, 0.005796818993985653, -0.008328096941113472, 0.0037067437078803778, 0.01111701037734747, -6.063513137632981e-05, -0.04091266170144081, 0.019451549276709557, 0.0022655900102108717, 0.019503075629472733, -0.014273056760430336, 0.0037969164550304413, 0.018227774649858475, 0.0618327371776104, 0.010820728726685047, 0.013190983794629574, 0.011806188151240349, -0.03470362350344658, -0.012018738314509392, -0.00045126627082936466, -0.0099190017208457, -0.019902411848306656, -0.009197619743645191, -0.0022720310371369123, -0.010955988429486752, 0.023019813001155853, -0.02088143117725849, -0.028752222657203674, -0.0015772178303450346, 0.008740315213799477, -0.0054747737012803555, -0.030066167935729027, 0.0018131161341443658, 0.0017567581962794065, 0.003922514151781797, -0.010711233131587505, -0.017300285398960114, 0.0009339319658465683, -0.004415243864059448, -0.010137992911040783, 0.015921929851174355, 0.0028839174192398787, -0.021757394075393677, -0.01587040163576603, 0.018060311675071716, -0.01820201240479946, -0.0031592664308845997, 0.0036970824003219604, -0.04580775275826454, -0.01724875718355179, -0.018614230677485466, 0.022285548970103264, -0.0017776911845430732, -0.005748512223362923, -0.05771055445075035, -0.02808236889541149, 0.018124720081686974, 0.03230760619044304, -0.04449380561709404, 0.031818095594644547, -0.016398556530475616, 0.003584366524592042, -0.014144238084554672, 0.008637260645627975, -0.01884610205888748, 0.017764030024409294, -0.011877038516104221, -0.008617937564849854, 0.005819362122565508, -0.0015466235345229506, 0.005954621359705925, 0.020572267472743988, -0.0199410580098629, 0.014118474908173084, -0.003458768827840686, -0.03702235221862793, -0.03537347912788391, -0.010840051807463169, 0.04369513317942619, 0.023290330544114113, 0.021087540313601494, -0.004788816440850496, -0.0034974142909049988, 0.03823324292898178, -0.0064119258895516396, 0.060441501438617706, -0.01681077480316162, -0.0066470191814005375, 0.02916444092988968, 0.01103971991688013, 0.005159168969839811, 0.0050722165033221245, -0.02410188503563404, -0.028958331793546677, -0.015754466876387596, -0.013680493459105492, 0.013590320013463497, -0.02079125866293907, 0.00917829666286707, 0.022478776052594185, -0.007194496691226959, 0.022646239027380943, -0.00028984094387851655, -0.027927786111831665, 0.016089392825961113, -0.00646023266017437, 0.009687128476798534, 0.0007938421913422644, 0.03702235221862793, -0.01652737520635128, -0.025918222963809967, -0.01098175160586834, -0.0072782281786203384, -0.028417294844985008, 0.0046438961289823055, 0.034574806690216064, 0.0032735925633460283, 0.001425051363185048, 0.04797189682722092, 0.015999220311641693, 0.012914024293422699, 0.046864062547683716, -0.0012004246236756444, 0.048796333372592926, -0.014054065570235252, 0.014414756558835506, -0.00029306139913387597, -0.012237729504704475, 0.02437240444123745, -0.008888456039130688, -0.009455256164073944, -0.00549409631639719, -0.01615380309522152, -0.00417370954528451, -0.005323412362486124, 0.00992544274777174, 0.0007439251057803631, 0.017326047644019127, -0.011381087824702263, -0.028855277225375175, -0.033647313714027405, -0.0037421686574816704, 0.0013469553086906672, -0.03174080327153206, -0.017776912078261375, -0.0026407730765640736, -0.028597639873623848, 0.023019813001155853, 0.011213624849915504, 0.023303212597966194, 0.03331238776445389, -0.013358447700738907, -0.0077290921472013, 0.0019419343443587422, 0.02336762100458145, 0.012508247047662735, -0.015986338257789612, 0.014517811127007008, 0.017776912078261375, -0.008630819618701935, 0.012823851779103279, -0.0015675565227866173, -0.007645360194146633, 0.02666536718606949, 0.021100422367453575, 0.004366937093436718, -0.0259311031550169, -0.011851274408400059, 0.0343429334461689, 0.013384210877120495, -0.03408529609441757, -0.01920679397881031, -0.014170002192258835, 0.04044891521334648, -0.05920484662055969, -0.0035231777001172304, 0.00690465560182929, 0.027953550219535828, 0.0025344982277601957, -0.005874109920114279, 0.005661559756845236, -0.0011472870828583837, 0.029963113367557526, -0.00685312831774354, 0.0221567302942276, -0.001472553121857345, 0.001080462709069252, 0.013409974984824657, 0.02031463012099266, -0.02715487778186798, 0.003948277793824673, -0.03952142596244812, 0.017016883939504623, 0.009796624071896076, 0.03256523981690407, 0.013938129879534245, -0.006067337468266487, -0.004505416378378868, -0.027360986918210983, -0.03184385970234871, -0.024398166686296463, -0.017583684995770454, 0.009345760568976402, -0.01361608412116766, -0.007207378279417753, -0.00904303789138794, 0.028211185708642006, 0.03423987701535225, 0.015574120916426182, 0.035218894481658936, -0.0001907113182824105, -0.04753391817212105, -0.0018517615972086787, -0.011593637987971306, -0.00510120065882802, -0.04578198865056038, -0.002276861807331443, -0.01172889769077301, 0.03501278907060623, -0.024617157876491547, 0.016578903421759605, 0.006279887165874243, 0.002106177620589733, -0.0018340491224080324, 0.03351849690079689, -0.05134693533182144, 0.011484142392873764, 0.012637065723538399, 0.022543184459209442, -0.032745588570833206, -0.04034586250782013, -0.013976775109767914, 0.0027116232085973024, -0.026278913021087646, 0.014414756558835506, -0.025274131447076797, -0.022929640486836433, 0.001784132095053792, 0.025312775745987892, 0.014440520666539669, -0.020804138854146004, 0.027438277378678322, -0.022453011944890022, -0.008431151509284973, -0.0102990148589015, -0.0066148145124316216, -0.009848151355981827, -0.020340394228696823, -0.003189860610291362, -0.010524447076022625, 0.015355129726231098, -0.0010112228337675333, -0.0032027424313127995, 0.02104889415204525, 0.0021190594416111708, -0.028365768492221832, 0.014337466098368168, -0.051269643008708954, 0.0345490425825119, 0.003271982306614518, 0.03892885893583298, 0.02067532204091549, -0.00680804206058383, -0.005468332674354315, -0.06353313475847244, 0.011310238391160965, -0.017776912078261375, 0.021770276129245758, 0.007529424037784338, -0.010659705847501755, -0.03815595060586929, 0.005323412362486124, -0.004598809871822596, 0.012450278736650944, -0.01292690634727478, -0.017390457913279533, -0.012566215358674526, 0.037434570491313934, 0.010582415387034416, 0.00932643748819828, 0.007407046388834715, 0.01541953906416893, -0.025982631370425224, -0.002871035598218441, -0.015342247672379017, -0.00988035649061203, 0.035605352371931076, 0.002083634492009878, 0.017583684995770454, 0.02345779538154602, 0.004724407568573952, 0.041505225002765656, 0.00777417840436101, 0.026897240430116653, 0.02354796789586544, -0.020636675879359245, -0.00025723385624587536, 0.022105203941464424, 0.00919117871671915, 0.013938129879534245, -0.006975505501031876, 0.026716895401477814, 0.001964477589353919, 0.022672003135085106, -0.007741973735392094, -0.018330829218029976, -0.0035972483456134796, -0.003755050478503108, -0.02510666660964489, -0.016488729044795036, 0.006089880596846342, 0.011007515713572502, -0.023766959086060524, -0.007452133111655712, 0.029009858146309853, 0.028649168089032173, 0.011651606298983097, 0.003941836766898632, -0.005867668893188238, -0.031045187264680862, 0.015741584822535515, -0.0003846430918201804, 0.029602423310279846, -0.008978628553450108, -0.004595589358359575, -0.015007320791482925, 0.019335612654685974, -0.010234606452286243, 0.032719824463129044, -0.03756338730454445, 0.032925933599472046, 0.021937739104032516, -0.01486562006175518, 0.02955089509487152, 0.004804919008165598, -0.014479165896773338, -0.019683420658111572, 0.011020396836102009, -0.031611986458301544, -0.0005973944207653403, -0.004511857405304909, 0.01274656131863594, 0.0028130675200372934, 0.026253148913383484, 0.006885332986712456, 0.00917829666286707, 0.030761785805225372, 0.037537623196840286, 0.01476256549358368, -0.01791861094534397, 0.010717674158513546, -0.02566058561205864, -0.016411438584327698, -0.006579389795660973, 0.03186962381005287, -0.03135434910655022, -0.010331219993531704, 0.021473994478583336, -0.026021277531981468, 0.018305066972970963, 0.013925247825682163, -0.005175271071493626, -0.011278033256530762, 0.0012930127559229732, -0.010479360818862915, 0.004109300673007965, 0.0010788524523377419, 0.025235485285520554, -0.011748219840228558, -0.008495560847222805, 0.0006565702497027814, -0.047327809035778046, -0.029112912714481354, -0.0006932029500603676, -0.01352591160684824, 0.000598602055106312, 0.02826271392405033, -0.006440910045057535, 0.005957841873168945, -0.0259311031550169, 0.04284493252635002, -0.027953550219535828, 0.01352591160684824, 0.002824339084327221, 0.0420977883040905], [0.008042377419769764, -0.005675639025866985, 0.07195401936769485, 0.047166403383016586, 0.005546132102608681, 0.04299628362059593, -0.03779010847210884, 0.013403961434960365, -0.007861067540943623, 0.06003938987851143, -0.025046629831194878, 0.0010878577595576644, 0.008521552197635174, 0.002481675473973155, -0.047295913100242615, 0.01018571574240923, -0.006909192074090242, 0.03825633227825165, 0.0024314916227012873, 0.00032214834936894476, 0.06532327085733414, 0.017522281035780907, -0.02353139966726303, -0.023453695699572563, -0.07060714811086655, -0.019361278042197227, 0.010140388272702694, 0.031858690083026886, 0.03162558004260063, -0.05563615262508392, 0.08019065856933594, -0.025901375338435173, 0.000768947065807879, -0.0345524363219738, 0.0016309772618114948, 0.024955974891781807, -0.04395463317632675, -0.0023052224423736334, 0.023855166509747505, 0.028828231617808342, 0.02173125371336937, -0.023427793756127357, -0.01806620880961418, -0.006336124148219824, -0.03356818109750748, 0.07278286665678024, -0.004694624338299036, -0.0463634617626667, 0.008476224727928638, 0.010969232767820358, -0.009913751855492592, 0.04299628362059593, 0.0025755679234862328, -0.07278286665678024, 0.03219540789723396, 0.005614123307168484, 0.02169240266084671, 0.01753523200750351, 0.007349515333771706, -0.02478761598467827, 0.01208946667611599, -0.02007356658577919, -0.001816333970054984, 0.008035901933908463, 0.00747902225703001, 0.025305643677711487, -0.04822836071252823, 0.004769090563058853, -0.028698723763227463, 0.003163205459713936, 0.07190221548080444, 0.06744717806577682, 0.0015872686635702848, -0.00839204527437687, 0.028154795989394188, -0.00779631407931447, -0.03276523947715759, 0.04063925892114639, -0.01486738957464695, -0.013144947588443756, -0.039862215518951416, 0.013585271313786507, 0.04053565114736557, -0.00892302393913269, 0.008715813048183918, -0.01161029189825058, -0.046415265649557114, 0.012173646129667759, -0.020500939339399338, -0.02204206958413124, 0.0011768937110900879, 0.001532228197902441, -0.06200789287686348, 0.019257672131061554, 0.05224307253956795, -0.020138319581747055, 0.034966856241226196, -0.025525804609060287, -0.007854592055082321, 0.013034867122769356, -0.04524970427155495, -0.04574183002114296, -0.0564131960272789, 0.009965553879737854, 0.018959807232022285, -0.04610444977879524, -0.01145488303154707, 0.05138833075761795, -0.0003249813162256032, -0.03380129486322403, -0.026652514934539795, -0.027092838659882545, -0.0004020783817395568, 0.07164320349693298, -0.031211158260703087, 0.0030191291589289904, -0.07583922892808914, 0.0020526840817183256, 0.004830606747418642, 0.02430844120681286, -0.038644853979349136, -0.02594022825360298, 0.014970994554460049, -0.029890187084674835, 0.03328326717019081, -0.005141423083841801, -0.0341121107339859, -0.0022388501092791557, -0.042918577790260315, -0.03178098797798157, 0.05063718929886818, -0.02934625931084156, 0.051802750676870346, -0.06356197595596313, -0.038541246205568314, -0.015087551437318325, -0.03175508603453636, -0.023932870477437973, 0.001392198959365487, -0.03786781057715416, 0.06480523943901062, 0.01867489144206047, 0.00409889267757535, 0.0463375598192215, -0.06837963312864304, 0.015385417267680168, 0.011862830258905888, 0.06511605530977249, 0.0002030627365456894, -0.001223030616529286, 0.016123605892062187, 0.03633962944149971, -0.055998772382736206, -0.014621326699852943, 0.024502702057361603, -0.00804885197430849, 0.049005404114723206, 0.05532533675432205, 0.003137304214760661, 0.0025286218151450157, -0.01362412329763174, -0.015126403421163559, -0.024761714041233063, 0.008890647441148758, -0.0016269301995635033, -0.0018179528415203094, -0.02794758416712284, 0.028154795989394188, -0.050533585250377655, -0.06319935619831085, -0.052450284361839294, -0.055998772382736206, -0.02693743072450161, 0.010898003354668617, -0.012206023558974266, -0.05563615262508392, 0.005115521606057882, -0.0033040442503988743, 0.017353922128677368, -0.019050462171435356, -0.0020008813589811325, 0.023518448695540428, -0.09826982021331787, -0.04758082702755928, -0.0424005500972271, 0.02890593558549881, 0.016719337552785873, 0.012737001292407513, -0.04390283301472664, 0.017768343910574913, 0.03918877989053726, 0.033645886927843094, 0.036495037376880646, 0.011157017201185226, -0.009285642765462399, 0.03722027689218521, -0.016188358888030052, -0.030848538503050804, 0.0019927870016545057, -0.04517199844121933, 0.02732595056295395, -0.027843978255987167, 0.05087030306458473, 0.012594543397426605, -0.01362412329763174, -0.024917123839259148, -0.04517199844121933, -0.004467987455427647, -0.006621039006859064, -0.05340863764286041, -0.006073872558772564, -0.04312578961253166, -0.020228974521160126, 0.02654890902340412, -0.010962757281959057, -0.012283727526664734, -0.03126296028494835, 0.025616459548473358, 0.04006942734122276, 0.01278880424797535, 0.003639143193140626, 0.011118165217339993, 0.039680905640125275, -0.034215718507766724, -0.03418981656432152, 0.004597493913024664, 0.0025480478070676327, -0.07314548641443253, -0.016071803867816925, -0.07936181128025055, -0.014970994554460049, 0.03393080085515976, 0.003091976745054126, -0.02601793222129345, -0.012821180745959282, -0.027144640684127808, 0.006009119097143412, -0.0017289167735725641, -0.021614698693156242, 0.036443233489990234, 0.029579371213912964, -0.01626606285572052, -0.002862101886421442, 0.0238292645663023, 0.01394789107143879, -0.0123549560084939, -0.010749070905148983, -0.03356818109750748, 0.018092110753059387, 0.05558435246348381, 0.0585889108479023, 0.04193432629108429, 0.05776006728410721, 0.006475343834608793, 0.002779541304334998, -0.006349074654281139, -0.010839725844562054, -0.03734978288412094, 0.00804885197430849, 0.02408827841281891, -0.017081957310438156, 0.005474903155118227, -0.013805433176457882, -0.016369668766856194, -0.04315169155597687, -0.03403440862894058, -0.028258400037884712, 0.007349515333771706, -0.02487827092409134, 0.0323508195579052, -0.02947576530277729, 0.05646499991416931, 0.017328020185232162, -0.05610238015651703, -0.08096770197153091, 0.023544350638985634, -0.03043411672115326, -0.03131476417183876, 0.017030155286192894, -0.05304601788520813, -0.016900647431612015, 0.004542453680187464, 0.027843978255987167, -0.029682977125048637, 0.014025595039129257, 0.03525177016854286, 0.007135828956961632, -0.009188513271510601, -0.01714671030640602, -0.0037038966547697783, 0.06071282550692558, 0.02003471367061138, 0.008204260841012001, -0.01718556322157383, 0.048254262655973434, 0.02335008978843689, 0.02789578214287758, -0.033386871218681335, 0.011325376108288765, -0.0036812329199165106, 0.006103011779487133, 0.0019927870016545057, -0.03545898199081421, -0.033516380935907364, -0.03970680758357048, 0.03178098797798157, 0.017457526177167892, -0.010587187483906746, -0.04975654184818268, 0.010256944224238396, -0.010412353090941906, -0.00023675475677009672, -0.02632874809205532, -0.07350810617208481, -0.042918577790260315, 0.016110654920339584, 0.002847532508894801, 0.04470577463507652, 0.0028200121596455574, 0.0041895476169884205, 0.005387485958635807, -0.006251944694668055, 0.021187325939536095, -0.014776734635233879, 0.005733917001634836, -0.02601793222129345, -0.025305643677711487, 0.01827342063188553, -0.02999379299581051, -0.012801755219697952, -0.0207729022949934, -0.02916494943201542, -0.003171299584209919, -0.004115080926567316, -0.02120027504861355, -0.022663703188300133, -0.03525177016854286, 0.06003938987851143, 0.005189988296478987, 0.046726081520318985, 0.006498007569462061, -0.020319629460573196, -0.025305643677711487, 0.02916494943201542, -0.03773830458521843, 0.03519997000694275, 0.014401164837181568, 0.016939500346779823, -0.01832522265613079, 0.06599670648574829, -0.002423397498205304, 0.06247411668300629, -0.0358734056353569, 0.020306678488850594, -0.07003732025623322, 0.02570711448788643, 0.013662975281476974, 0.002776303794234991, -0.016460323706269264, -0.007414268795400858, 0.009920226410031319, 0.015890493988990784, 0.009965553879737854, 0.028439709916710854, 0.018441779538989067, -0.022184528410434723, -0.032428521662950516, 0.010153339244425297, 0.011234721168875694, -0.01506164949387312, -0.007932296022772789, 0.05662040784955025, 0.021394535899162292, 0.02116142399609089, 0.004380570258945227, -0.00762147968634963, -0.02016422152519226, 0.030097398906946182, 0.0017791007412597537, 0.030978044494986534, 0.0286469217389822, 0.040820568799972534, 0.020086517557501793, -0.003826928324997425, 0.008379095233976841, 0.03356818109750748, -0.03810092434287071, -0.03812682628631592, -0.04302218556404114, 0.001994405873119831, 0.005811620969325304, -0.017833096906542778, -0.030071496963500977, 0.012031189166009426, -0.026251044124364853, 0.047036897391080856, 0.01305429358035326, 0.013021916151046753, 0.04175301641225815, 0.003215008182451129, -0.01574803702533245, -0.062422316521406174, -0.0013072100700810552, -0.0032409096602350473, -0.04400643706321716, -0.018985707312822342, -0.0419861301779747, -0.010587187483906746, -0.011150541715323925, -0.022495344281196594, 0.034397028386592865, 0.022715507075190544, 0.03996582329273224, 0.011856354773044586, -0.00036524987081065774, -0.02191256359219551, -0.02151109278202057, 0.02903544157743454, -0.025901375338435173, -0.017340971156954765, 0.05827809497714043, 0.007103451993316412, 0.021977316588163376, -0.010483581572771072, -0.050533585250377655, 0.03908517584204674, 0.0537712536752224, -0.01779424585402012, -0.010898003354668617, -0.06641113013029099, -0.011700945906341076, -0.0037038966547697783, 0.002862101886421442, 0.03786781057715416, -0.022106824442744255, -0.04133859649300575, 0.022314034402370453, 0.017548181116580963, 0.012031189166009426, -0.04936802014708519, 0.024981876835227013, -0.03727208077907562, 0.0393700897693634, 0.010515958070755005, -0.030278708785772324, -0.025694165378808975, 0.021718302741646767, 0.005232078023254871, 0.007835166528820992, -0.011144067160785198, -0.01218012161552906, 0.016602782532572746, -0.048435572534799576, -0.007019272539764643, -0.029682977125048637, -0.006374976132065058, 0.05304601788520813, -0.036184221506118774, 0.02401057444512844, -0.06594490259885788, 0.04395463317632675, 0.04872048646211624, 0.05325322970747948, 0.04061335697770119, 0.008534503169357777, -0.03113345243036747, -0.038282234221696854, -0.010807349346578121, -0.02706693671643734, -0.04006942734122276, 0.002766590565443039, -0.002755258698016405, -0.012063565663993359, -0.022223379462957382, -0.014219854958355427, -0.02654890902340412, -0.008916548453271389, -0.028232499957084656, 0.022145675495266914, -0.01652507670223713, 0.026911528781056404, 0.05864071473479271, -0.05050768330693245, -0.012866508215665817, 0.02890593558549881, 0.0037362733855843544, 0.057345643639564514, 0.009745392948389053, -0.0029673264361917973, 0.0042575388215482235, -0.034656040370464325, -0.003998524975031614, 0.028180696070194244, -0.0143234608694911, 0.006235755980014801, 0.017263267189264297, -0.03996582329273224, -0.024334343150258064, 0.029268553480505943, 0.00973244197666645, 0.03292064741253853, -0.07920640707015991, 0.00975186750292778, 0.005031342152506113, 0.014206903986632824, 0.0070322235114872456, -0.004791754297912121, 0.00017625075997784734, -0.03898157179355621, 0.038541246205568314, -0.039292387664318085, 0.01928357407450676, 0.03742748871445656, 0.026380550116300583, -0.009130234830081463, -0.0002978658303618431, 0.02046208642423153, -0.028102992102503777, -0.05672401189804077, -0.0037524618674069643, -0.0015629861736670136, -0.02357025258243084, 0.027170542627573013, 0.01652507670223713, 0.00037435581907629967, 0.010373501107096672, -0.00617747800424695, -0.06527146697044373, -0.017237365245819092, 0.01489329058676958, 0.00730418786406517, -0.023466646671295166, -0.015540825203061104, 0.01915406621992588, 0.004338480532169342, -0.003231196664273739, -0.025344496592879295, -0.01797555387020111, -0.0027487834449857473, -0.006595137529075146, 0.003203676315024495, -0.015022797510027885, 0.0113707035779953, 0.016214260831475258, -0.0012044139439240098, -0.00038629473419860005, 0.03794551640748978, 0.04006942734122276, -0.0018422353314235806, 0.010593662969768047, 0.026043832302093506, 0.004548929166048765, -0.004924498964101076, 0.003389842575415969, -0.004976301919668913, 0.016214260831475258, 0.019581438973546028, -0.04581953212618828, 0.019257672131061554, -0.01451772078871727, -0.018558336421847343, 0.015476072207093239, 0.0133392084389925, 0.011157017201185226, -0.020578643307089806, 0.03747928887605667, 0.024515651166439056, -0.00404385244473815, -0.01550197321921587, 0.01954258792102337, -0.00804885197430849, -0.006238993722945452, 0.008935974910855293, -0.02693743072450161, 0.03724617883563042, 0.010671366937458515, 0.02562941052019596, -0.0660485103726387, 0.021744204685091972, 0.02397172339260578, -0.020267825573682785, 0.03271343559026718, -0.026082685217261314, -0.009311544708907604, -0.0054425266571342945, 0.012361431494355202, 0.0009761580731719732, -0.031599678099155426, 0.0011412793537601829, 0.009661213494837284, 0.016822943463921547, 0.011953485198318958, -0.017211463302373886, 0.0030790260061621666, 0.002671079244464636, 0.0384894423186779, -0.0037038966547697783, -0.002081823069602251, -0.013002490624785423, -0.008644583635032177, -0.005695065017789602, -0.012147745117545128, -0.02584957331418991, 0.01876554638147354, -0.03330916911363602, 0.01705605536699295, 0.018959807232022285, -0.018260469660162926, 0.02443794719874859, 0.00857335515320301, 0.00395643524825573, 0.016408521682024002, -0.016214260831475258, -0.028232499957084656, -0.01394789107143879, 0.02296156994998455, -0.06014299392700195, -0.011746273376047611, -0.008968351408839226, -0.03201410174369812, -0.009454001672565937, 0.001939365523867309, 0.011318900622427464, -0.014349361881613731, -0.001108093187212944, 0.0008235828136093915, -0.013507567346096039, -0.015579677186906338, -0.010528909042477608, -0.017328020185232162, -0.028983639553189278, 0.0037880761083215475, 0.007815740071237087, -0.02042323537170887, 0.007958197966217995, 0.025266792625188828, -0.004885646980255842, 0.002308460185304284, -0.011008084751665592, 0.0049018352292478085, 0.025253841653466225, 0.017263267189264297, 0.023272385820746422, -0.02807709015905857, 0.003794551594182849, 0.019827503710985184, -0.015022797510027885, 0.026652514934539795, 0.01696540042757988, 0.0053745354525744915, 0.008625158108770847, -0.00946695264428854, -0.0011817502090707421, 0.0032554790377616882, 0.034474730491638184, -0.005756580736488104, -0.018428828567266464, 0.007595578208565712, 0.00197983649559319, 0.038774359971284866, -0.03825633227825165, 0.04258185997605324, -0.023233532905578613, 0.01823456771671772, 0.04421364888548851, 0.014491819776594639, 0.05698302760720253, -0.007142304442822933, -0.004383808001875877, 0.00522560253739357, -0.08122671395540237, 0.02235288731753826, 0.06392459571361542, -0.009790719486773014, -0.007984098978340626, -0.02099306508898735, 0.0017612935043871403, 0.02575891837477684, -0.03317966312170029, 0.034474730491638184, -0.020889459177851677, -0.009648262523114681, -0.03315376117825508, 0.009745392948389053, 0.01324855349957943, -0.05260569229722023, 0.020928312093019485, -0.03359408304095268, -0.008806467987596989, 0.01423280593007803, 0.010982182808220387, 0.031729184091091156, -0.001135613420046866, 0.030408214777708054, 0.0022258993703871965, 0.05889972671866417, 0.012620445340871811, -0.008404996246099472, -0.03504456207156181, -0.08946335315704346, 0.02549990452826023, 0.013921989127993584, -0.01565738208591938, -0.04975654184818268, -0.04403233900666237, -0.03387900069355965, -0.022197479382157326, -0.0038010268472135067, 0.036443233489990234, -0.039473697543144226, -0.01828637160360813, 0.0048824092373251915, -0.038541246205568314, -0.003124353475868702, 0.0075437757186591625, 0.0122448755428195, -0.017483428120613098, -0.017081957310438156, -0.014595424756407738, 0.013378060422837734, -0.00643972959369421, 0.028983639553189278, -0.021575845777988434, -0.007265335880219936, -0.006229280959814787, -0.006948044057935476, -0.0049989656545221806, 0.0028005861677229404, -0.011765699833631516, -0.02527974173426628, 0.002734213834628463, -0.003461071290075779, 0.00846327468752861, 0.0006362025160342455, -0.01626606285572052, -0.0022501819767057896, -0.042789071798324585, 0.013546419329941273, -0.045275602489709854, 0.012316104024648666, -0.010211617685854435, -0.01998291164636612, -0.030149200931191444, -0.01990520767867565, 0.01626606285572052, -0.0012189834378659725, -0.010056208819150925, 0.03918877989053726, 0.012808229774236679, 0.009421625174582005, 8.579830318922177e-05, 0.010813823901116848, -0.04600084200501442, -0.047295913100242615, 0.023065173998475075, 0.011908157728612423, -0.01630491577088833, 0.008780566044151783, -0.010781447403132915, 0.0358734056353569, 0.010606613010168076, 0.006433254107832909, -0.0163955707103014, 0.002760115312412381, 0.011934058740735054, -0.011241196654736996, 0.027041036635637283, -0.014647227711975574, 0.027740372344851494, -0.003674757666885853, -0.025072531774640083, -0.0020316392183303833, 0.002153051784262061, 0.020669298246502876, 0.023764511570334435, -0.02344074472784996, -0.017807194963097572, 0.010988658294081688, 0.005546132102608681, -0.0011849879520013928, 0.04657067358493805, -0.007692708633840084, -0.008139506913721561, -0.036495037376880646, -0.00011503852874739096, 0.017081957310438156, -0.030278708785772324, -0.03538127988576889, 0.0011995574459433556, -0.010503008030354977, -0.04522380232810974, -0.00021550753444898874, -0.026030883193016052, -0.02680792286992073, -0.009803670458495617, -0.013753630220890045, -0.0050183916464447975, -0.06511605530977249, -0.025810720399022102, 0.035433080047369, -0.019218821078538895, 0.01128004863858223, -0.012840607203543186, 0.03263573348522186, 0.07858477532863617, -0.00903310440480709, -0.037841908633708954, -0.0016026475932449102, -0.011843403801321983, -0.008592781610786915, -0.03558849170804024, 0.01841587759554386, 0.010133912786841393, -0.020798804238438606, -0.006773209664970636, 0.008599257096648216, -0.011823978275060654, 0.0016212642658501863, -0.0013371584936976433, -0.003025604411959648, 0.004610444884747267, -0.008851795457303524, 0.013650025241076946, -0.020151270553469658, -0.006701980717480183, -0.012380857020616531, -0.0053065442480146885, 0.0013120665680617094, -0.0027212633285671473, -0.01867489144206047, 0.01307371910661459, -0.003901394782587886, 0.03403440862894058, 0.018389975652098656, -0.00946695264428854, -0.015255910344421864, -0.011008084751665592, 0.012905360199511051, 0.0008041567634791136, -0.0004654153308365494, 0.04343660548329353, 0.008605731651186943, -0.015450170263648033, -0.036443233489990234, -0.033645886927843094, -0.002858864376321435, -0.005594697315245867, 0.015333614312112331, 0.003898157039657235, 0.0216535497456789, -0.016913598403334618, -0.00854745414108038, 0.0017159661510959268, -0.03833403438329697, 0.020669298246502876, -0.01955553889274597, 0.01985340379178524, -0.009369822219014168, 0.014789685606956482, 0.00902662891894579, 0.010127438232302666, -0.011668569408357143, 0.0015370846958830953, 0.003982336260378361, -0.008903597481548786, 0.00973244197666645, 0.00964178703725338, -0.006164527498185635, 0.0074077933095395565, 0.005332445725798607, -0.00603502057492733, -0.03918877989053726, 0.02404942736029625, 0.00903310440480709, -0.02461925707757473, -0.02614743821322918, -0.03507046401500702, 0.014349361881613731, 0.005413387436419725, -0.012659297324717045, 0.01876554638147354, 0.0319363959133625, 0.03346457704901695, 0.012801755219697952, -0.03753109276294708, 0.022663703188300133, -0.01797555387020111, 0.03742748871445656, 0.01889505423605442, -0.021899612620472908, -0.0073883673176169395, -0.0030272232834249735, 0.044317252933979034, 0.0027973486576229334, 0.016991302371025085, 0.02872462570667267, -0.03610651567578316, 0.020151270553469658, -0.022326985374093056, -0.030952144414186478, -0.031729184091091156, -0.013714778237044811, -0.0030385551508516073, 0.010528909042477608, 0.0009704921394586563, -0.005235315300524235, 0.0011801314540207386, -0.008715813048183918, 0.01757408306002617, 0.021925514563918114, 0.02807709015905857, -0.030382312834262848, -0.00779631407931447, 0.027610866352915764, 0.0070905014872550964, -0.014064447022974491, 0.0005087191821075976, -0.017599985003471375, 0.015255910344421864, -0.001231124741025269, 0.06319935619831085, -0.026186291128396988, 0.01591639593243599, -0.01574803702533245, 0.014621326699852943, 0.003266810905188322, 0.00032376719173043966, 0.040250737220048904, 0.010464156046509743, -0.0393441878259182, -0.023725660517811775, 0.01631786674261093, 0.010651940479874611, 0.04623395577073097, -0.02908724546432495, 0.02213272452354431, 0.006384688895195723, -0.0009146422962658107, 0.027429556474089622, -0.0067343576811254025, -0.014103299006819725, 0.01884325034916401, 0.01550197321921587, -0.036184221506118774, -0.0015038986457511783, -0.012730525806546211, -0.006799111142754555, 0.020125368610024452, 0.018791448324918747, -0.015294762328267097, 0.03696126118302345, -0.03711667284369469, -0.012108893133699894, -0.007168205454945564, -0.05011916160583496, -0.01298953965306282, 0.026225142180919647, 0.0052191270515322685, 0.047995246946811676, -0.029320357367396355, 0.026911528781056404, 0.026963332667946815, 0.005348633974790573, -0.01713375933468342, 0.015579677186906338, 0.01630491577088833, 0.03641733527183533, -0.008120081387460232, -0.04053565114736557, 0.041001878678798676, -0.016563929617404938, -0.0007147160940803587, 0.044887084513902664, 0.0277662742882967, 0.009240315295755863, -0.013119046576321125, 0.01097570825368166, -0.01806620880961418, 0.013015441596508026, 0.005180275067687035, -0.017483428120613098, 0.02833610400557518, 0.031288862228393555, -0.0005487853777594864, 0.006397639866918325, 0.02675612084567547, 0.0030628377571702003, 0.03957730159163475, 0.01569623313844204, 0.001712728408165276, 0.03988811746239662, -0.010490057058632374, 0.005128472112119198, 0.013818384148180485, -0.008281964808702469, 0.04434315487742424, 0.00684443861246109, -1.634012551221531e-05, 0.0031308287288993597, 0.04032844305038452, 0.045897237956523895, 0.015994099900126457, 0.015566726215183735, 0.0288541316986084, -0.019581438973546028, 0.005928177386522293, 0.01880439929664135, 0.006760259158909321, -0.02353139966726303, -0.005361584946513176, -0.02465810999274254, -0.029009539633989334, 0.009039579890668392, 0.01665458455681801, -0.013986743055284023, -0.00023715947463642806, 0.007135828956961632, -0.046415265649557114, -0.04439495876431465, -0.006630752235651016, -0.008346717804670334, -0.010878577828407288, 0.02588842436671257, -0.007673282641917467, 0.039033371955156326, 0.009130234830081463, -0.02366090565919876, -0.027662668377161026, 0.04359201341867447, -0.0196720939129591, 0.023298287764191628, 0.035536687821149826, 0.013766581192612648, 0.023078124970197678, 0.026859726756811142, 0.012121844105422497, -0.0059994058683514595, 0.003830165835097432, -0.018169814720749855, 0.025823671370744705, -0.03494095429778099, -0.00698689604178071, -0.060505613684654236, 0.06231870874762535, 0.001863280194811523, -0.0012214117450639606, -0.012361431494355202, -0.009939652867615223, 0.019231772050261497, 0.014841488562524319, 0.011403081007301807, 0.04835786670446396, -0.03486325219273567, 0.008437372744083405, 0.013106095604598522, -0.021096671000123024, -0.03833403438329697, 0.005290355999022722, 0.006960994563996792, 0.019568489864468575, -0.0028928599786013365, -0.03012329898774624, -0.01823456771671772, -0.0122448755428195, 0.004694624338299036, 0.014906241558492184, -0.024217786267399788, 0.031547874212265015, 0.025461051613092422, 0.0005123615846969187, 0.008767616003751755, 0.007498448248952627, 0.015566726215183735, 0.02243059128522873, 0.012147745117545128, 0.01648622564971447, 0.014452967792749405, 0.001294259331189096, 0.004801467526704073, 0.02195141650736332, -0.01377953216433525, -0.012296677567064762, 0.0023894018959254026, -0.009266217239201069, -0.012827656231820583, -0.022067971527576447, -0.02999379299581051, 0.011953485198318958, -0.01832522265613079, 0.018428828567266464, -0.06040200591087341, 0.00839204527437687, 0.026160389184951782, 0.014556572772562504, 0.008443848229944706, -0.0003545250801835209, 0.009389248676598072, 0.0021303880494087934, -0.010120962746441364, 0.007025748025625944, 0.013300356455147266, 0.023233532905578613, -0.0027941109146922827, -0.027144640684127808, 0.014932142570614815, -0.014776734635233879, 0.027481358498334885, 0.038411740213632584, 0.0049018352292478085, -0.008521552197635174, -0.014401164837181568, -0.015605579130351543, 0.040432047098875046, -0.01331330742686987, -0.0022145675029605627, -0.0022744645830243826, -0.010334649123251438, -0.003778363112360239, 0.015553776174783707, 0.010127438232302666, -0.003639143193140626, -0.021316831931471825, -0.02549990452826023, -0.0010481963399797678, 0.02706693671643734, 0.016058852896094322, -0.01910226419568062, 0.02325943484902382, 0.029372159391641617, -0.011532586999237537, 0.009635311551392078, -0.04146810248494148, 0.0025707115419209003, -0.0011963198194280267, -0.026212191209197044, 0.008741714060306549, -0.003297568764537573, -0.046596575528383255, -0.022456493228673935, -0.01565738208591938, -0.005031342152506113, 0.02654890902340412, -0.000683958176523447, 0.0011040461249649525, 0.007084026001393795, 0.0024768190924078226, 0.02711874060332775, 0.07112517952919006, 0.007971148006618023, -0.008327292278409004, 0.0393700897693634, 0.03742748871445656, -0.006553047802299261, 0.0007936343317851424, 0.023505497723817825, 0.014362312853336334, -0.026134487241506577, -0.05040407553315163, 0.010289321653544903, 0.03165148198604584, -0.0030871201306581497, -0.013481666333973408, 0.004924498964101076, 0.024593355134129524, 0.04664837568998337, 0.006213092245161533, 0.0004407280939631164, 0.026082685217261314, -0.03157377615571022, -0.010477106086909771, -0.008411471731960773, -0.02369975857436657, -0.008812942542135715, 0.007168205454945564, -0.02436024323105812, 0.0012578355381265283, 0.004399996250867844, -0.0024768190924078226, -0.009615886025130749, 0.0026824111118912697, 0.021109620109200478, -0.020397333428263664, -0.013559370301663876, 0.013611173257231712, -0.003940246533602476, -0.0015880780993029475, 0.0008199404110200703, -0.009952603839337826, 0.00631993543356657, 0.0022097111213952303, -0.02929445542395115, 0.024865319952368736, 0.020630445331335068, -0.00811360590159893, -0.0066080885007977486, -0.00505076814442873, -0.02570711448788643, -0.01630491577088833, 0.019879305735230446, -0.040380243211984634, -0.01897275820374489, -0.0288541316986084, -0.008171884343028069, -0.006193666253238916, -0.005371297709643841, -0.008068278431892395, -0.01082029938697815, 0.0008855032501742244, 0.03983631730079651, -0.024295490235090256, 0.03035641275346279, -0.004675198346376419, -0.009078431874513626, -0.004374094773083925, -0.015605579130351543, -0.007925820536911488, -0.0011445169802755117, -0.03245442360639572, -0.019296525046229362, 0.006831487640738487, 0.02103191614151001, 0.0027487834449857473, 0.030589524656534195, -0.013119046576321125, 0.028880033642053604, -0.02138158492743969, -0.006193666253238916, -0.02619924210011959, -0.013041342608630657, 0.022585999220609665, 0.0297347791492939, -0.021303880959749222, 0.004474462475627661, -0.006682554725557566, 0.03136656433343887, 0.0011121403658762574, 0.05998758599162102, 0.008845319971442223, -0.014103299006819725, 0.042607761919498444, 0.014711981639266014, -0.0023635004181414843, -0.0014877102803438902, -0.021044867113232613, -0.030978044494986534, -0.01793670281767845, -0.020630445331335068, 0.018480630591511726, -0.0029511379543691874, 0.0051511358469724655, 0.02820659801363945, -0.01753523200750351, -0.002802205039188266, -0.010574236512184143, -0.011752748861908913, -0.0018924192991107702, -0.000302317610476166, 0.009479903616011143, -0.01327445451170206, 0.023816315457224846, -0.018856201320886612, -0.023544350638985634, 0.005413387436419725, 0.0005767103284597397, -0.025214988738298416, -0.024256637319922447, 0.040121231228113174, -0.019710946828126907, -0.006161289755254984, 0.033904898911714554, 0.01208946667611599, 0.03372358903288841, 0.04828016459941864, -0.0006260848022066057, 0.029760681092739105, -0.01692654937505722, 0.0003749628667719662, 0.006740833166986704, -0.009441051632165909, -0.014349361881613731, -0.0028847656212747097, -0.003250622656196356, 0.010069159790873528, -0.012665772810578346, -0.0007220008410513401, -0.006818537134677172, -0.0010214855428785086, 0.022378789260983467, 0.01600705087184906, 0.011428982019424438, -0.016253113746643066, 0.002606326015666127, -0.01521705836057663, 0.009628836065530777, -0.018661940470337868, -0.027843978255987167, -0.010852675884962082, -0.008139506913721561, 0.018130963668227196, 0.0011048555606976151, 0.035795699805021286, -0.0018341412069275975, -0.022508295252919197, -0.004231637343764305, -0.015514924190938473, 0.0043028658255934715, -0.02230108343064785, 0.010956281796097755, 0.0070516495034098625, -0.004179834388196468, -0.0012651203433051705, 0.03494095429778099, -0.012957163155078888, -0.027041036635637283, -0.00028349863714538515, 0.031288862228393555, 0.015942296013236046, -0.012257825583219528, -0.01814391277730465, 0.04019893333315849, 0.029423963278532028, -0.038023218512535095, -0.026082685217261314, -0.009123759344220161, 0.029268553480505943, -0.04903130233287811, -0.0005528324982151389, -0.009123759344220161, 0.008009999990463257, -0.03589930757880211, -0.0004148267034906894, -0.0040341392159461975, 0.00854745414108038, 0.0024250163696706295, -0.01600705087184906, 0.017897849902510643, -0.00791934598237276, -0.0024250163696706295, -0.010878577828407288, 0.024684010073542595, -0.00563031155616045, 0.01972389779984951, -0.027170542627573013, 0.016732288524508476, 0.023363040760159492, 0.027274148538708687, -0.004652534611523151, -0.004655772354453802, -0.026315797120332718, 0.0015508448705077171, -0.007220008410513401, -0.03214360773563385, -0.012277252040803432, -0.01362412329763174, 0.012387332506477833, -0.003104927483946085, -0.013352159410715103, 0.022845013067126274, -0.01524295937269926, 0.04791754484176636, 0.01666753552854061, -0.008845319971442223, -0.027999386191368103, -0.030330510810017586, 0.0028960974887013435, -0.011111689731478691, -0.03766059875488281, 0.004830606747418642, -0.021006016060709953, 0.05177684873342514, -0.030641326680779457, -0.01261396985501051, 0.02768857032060623, 0.008851795457303524, 0.005594697315245867, 0.01819571666419506, -0.033904898911714554, 0.01779424585402012, 0.007731560617685318, 0.013960841111838818, -0.016900647431612015, 0.0004763424803968519, -0.010515958070755005, 0.001496613840572536, 0.005620598327368498, 0.0004204926372040063, -0.025694165378808975, -0.013002490624785423, 0.0014407640555873513, 0.029423963278532028, 0.00964178703725338, -0.012678722850978374, 0.027170542627573013, -0.007615004200488329, -0.00730418786406517, -0.023764511570334435, -0.013255028985440731, -0.0010660034604370594, 0.003223102306947112, -0.010658415965735912, -0.02872462570667267, 0.010833250358700752, -0.02173125371336937, 0.0009292118484154344, -0.009227365255355835, -0.018882103264331818, -0.023272385820746422, -0.004778803791850805, -0.04141629859805107, 0.011221771128475666, 0.014996896497905254, 0.0376087985932827, 0.031858690083026886, -0.017198514193296432, -0.02331123873591423, -0.05144013091921806, 0.012626920826733112, -0.0051252348348498344, 0.0036294301971793175, 0.0022048545069992542, -0.01871374435722828, -0.022365838289260864, 0.006151576526463032, 0.016861794516444206, -0.003927296027541161, -0.012885934673249722, -0.006682554725557566, 0.016732288524508476, -0.005073431879281998, 0.015735086053609848, 0.004202498123049736, 0.00909785833209753, 0.022055020555853844, -0.042607761919498444, 0.025111382827162743, -0.004548929166048765, 0.007647381164133549, 0.04734771326184273, 0.0203325804322958, -0.01670638658106327, 0.005270930007100105, -0.00964178703725338, 0.045146096497774124, 0.0022113299928605556, 0.020436184480786324, 0.014504769816994667, 0.0006997418240644038, -0.001214936375617981, 0.022314034402370453, 0.022275183349847794, -0.0024509176146239042, 0.009071956388652325, 0.03677995130419731, -0.0035905782133340836, 0.012782328762114048, -0.01622721180319786, -0.033645886927843094, -0.020980114117264748, -0.0006086823414079845, -0.01696540042757988, -0.023505497723817825, 0.014569523744285107, -0.01064546499401331, -0.02859511785209179, -0.01801440678536892, 0.02182190865278244, 0.04203793406486511, 0.011254147626459599, 0.008184834383428097, 0.001534656505100429, -0.02960527129471302, 0.0572938434779644, -0.008974826894700527, 0.00927269272506237, -0.00793877150863409, -0.005834284704178572, -0.013986743055284023, 0.02846561186015606, -0.0011153779923915863, 0.04727001115679741, -0.029139047488570213, 0.032558027654886246, 0.01793670281767845, 0.02042323537170887, 0.04338480532169342, -0.012115368619561195, -0.0013590127928182483, -0.009324494749307632, 0.0034707842860370874, -0.019257672131061554, -0.000842604145873338, -0.01928357407450676, 0.031288862228393555, 0.024541553109884262, 0.016550978645682335, 0.0005665926146320999, 0.013675926253199577, 0.008806467987596989, 0.018441779538989067, 0.010392926633358002, -0.035925209522247314, -0.009311544708907604, -0.021446339786052704, 0.005617360584437847, 0.007155254948884249, 0.035795699805021286, -0.024023525416851044, -0.02675612084567547, 0.027222346514463425, -0.014569523744285107, 0.01390903815627098, 0.005983217619359493, -0.004293153062462807, -0.03779010847210884, -0.018998658284544945, -0.0036650446709245443, 0.02947576530277729, 0.010859151370823383, 0.0011477547232061625, -0.029268553480505943, -4.239326517563313e-05, -0.006442967336624861, -0.04822836071252823, -0.029682977125048637, -0.0004289915377739817, -0.01191463228315115, 0.01134480256587267, 0.041131384670734406, -0.008379095233976841, 0.007880493067204952, -0.028569217771291733, 0.028413807973265648, -0.02605678327381611, 0.02408827841281891, -0.02248239330947399, 0.032117705792188644], [0.0258583165705204, -0.002290955977514386, 0.058482568711042404, 0.05192401632666588, -0.0068113007582724094, 0.026908202096819878, -0.029396822676062584, 0.0016396376304328442, 0.035255447030067444, 0.02206057868897915, -0.03631829842925072, 0.012838426977396011, -0.009494343772530556, 0.014050332829356194, -0.030822593718767166, 0.006053049582988024, -0.009513786062598228, 0.013363370671868324, 0.025910163298249245, 0.007822303101420403, 0.0729476734995842, 0.0169666837900877, 0.019040534272789955, -0.011989444494247437, -0.05031678453087807, -0.05604579299688339, 0.002465937053784728, 0.02466585300862789, 0.03789960592985153, -0.03808106854557991, 0.07595475018024445, -0.01233940664678812, -0.010103537701070309, -0.0458061583340168, 0.018301725387573242, -0.011762617155909538, -0.03214467316865921, -0.0050031631253659725, 0.013687409460544586, 0.014542872086167336, 0.012371811084449291, -0.012533830478787422, -0.02401777356863022, -0.006603915710002184, -0.07087381929159164, 0.002571249846369028, 0.015839029103517532, -0.022021694108843803, 0.021010691300034523, 0.01917015016078949, 0.022695694118738174, 0.022747540846467018, 0.007012205198407173, -0.013000446371734142, -0.031418826431035995, 0.028126589953899384, 0.03408890962600708, 0.036266449838876724, 0.0150613347068429, 0.00028272406780160964, -0.007666763849556446, 0.000384998886147514, 0.006085453554987907, 0.0054957023821771145, -0.0027948368806391954, 0.014387333765625954, 0.011075654998421669, -0.005479500163346529, -0.04637647047638893, -0.019818227738142014, 0.048061471432447433, 0.049487244337797165, 0.001902109244838357, -0.00729735940694809, -0.029448669403791428, -0.02002561278641224, -0.0014435939956456423, 0.0027365097776055336, -0.01975342072546482, -0.015903836116194725, -0.04277315363287926, 0.0067335315980017185, 0.014555834233760834, -0.00946194026619196, -0.007744533475488424, 0.04570246860384941, -0.05537179112434387, -0.02025892212986946, -0.055942103266716, -0.009643401950597763, -0.06797043234109879, 0.02476954460144043, -0.046013545244932175, 0.019027572125196457, 0.028645051643252373, -0.00230229739099741, 0.015074296854436398, -0.04419892653822899, -0.01747218519449234, 0.04510623589158058, -0.03069297969341278, -0.013175427913665771, -0.004786056932061911, 0.007446417585015297, 0.04469146579504013, -0.020919961854815483, -0.012520869262516499, 0.01251438818871975, -0.035592447966337204, -0.01874241791665554, 0.005071211140602827, -0.008327803574502468, 0.004014843609184027, 0.08404276520013809, -0.03131513297557831, -0.02002561278641224, -0.04658385366201401, 0.011607078835368156, 0.05324609577655792, -0.002679802943021059, -0.04531361907720566, -0.029241284355521202, 0.042876847088336945, -0.028022896498441696, 0.029811592772603035, -0.048891011625528336, -0.006480780895799398, -0.025041738525032997, -0.041425153613090515, -0.04697269946336746, 0.0619044192135334, -0.014089217409491539, 0.05640871822834015, -0.06351165473461151, -0.01026555709540844, -0.02265680953860283, -0.04051784425973892, -0.03367413952946663, -0.0237585436552763, -0.028022896498441696, 0.008457419462502003, 0.014452141709625721, 0.03382967785000801, 0.0381847620010376, -0.049228012561798096, -0.04095853492617607, 0.028359897434711456, 0.02833397500216961, -0.007744533475488424, 0.012397734448313713, 0.0026052738539874554, -0.000767162477131933, -0.05309055745601654, -0.007180705200880766, 0.024562159553170204, -0.028385819867253304, -0.0006456478149630129, 0.08046537637710571, 0.032015059143304825, -0.011801501736044884, -0.030822593718767166, -0.013045812025666237, -0.05184624716639519, -0.020505191758275032, -0.02213834784924984, 0.0057257697917521, -0.026091624051332474, 0.017536994069814682, -0.04912431910634041, -0.026260124519467354, -0.040232688188552856, -0.06854073703289032, -0.03613683581352234, 0.016085298731923103, 0.013253197073936462, -0.04064745828509331, 0.0212051160633564, 0.004892989527434111, -0.008619438856840134, -0.00659095449373126, 0.01679818518459797, -0.0011422376846894622, -0.09830048680305481, -0.03618868067860603, -0.05213140323758125, 0.03504806384444237, -0.024484390392899513, 0.026156432926654816, -0.04868362843990326, -0.01722591556608677, 0.01840541884303093, 0.03325936943292618, 0.023304888978600502, 0.026273086667060852, 0.005774375982582569, 0.02476954460144043, -0.026700817048549652, 0.0013399014715105295, 0.0364738367497921, -0.020881077274680138, 0.030148593708872795, -0.0636153444647789, 0.0542830228805542, -0.01323375478386879, -0.020647767931222916, -0.025236161425709724, -0.04204730689525604, 0.0060595301911234856, 0.03530729562044144, -0.05140555649995804, -0.001531894551590085, -0.04098445922136307, 0.019299766048789024, 0.015424259006977081, 0.015126142650842667, 6.435212708311155e-05, 0.010622000321745872, -0.004649960435926914, 0.01958492025732994, 0.0112376743927598, -0.030667055398225784, 0.0013318004785105586, 0.017420338466763496, -0.015514989383518696, -0.027089664712548256, 0.0063057998195290565, 0.0026927643921226263, -0.04933170601725578, 0.01592976041138172, -0.02535281516611576, -0.009559151716530323, -0.031055903062224388, -0.023965928703546524, -0.010738654062151909, -0.006927954964339733, -0.03857360780239105, 0.0026279566809535027, -0.0347629077732563, -0.014439180493354797, 0.02867097593843937, 0.05708272010087967, 0.034062985330820084, 0.018975727260112762, 0.007913033477962017, -0.013253197073936462, -0.02449735254049301, -0.003386208089068532, -0.021010691300034523, 0.019027572125196457, 0.030485594645142555, 0.023382658138871193, 0.0022844753693789244, 0.06325241923332214, -0.009760056622326374, -0.01745922490954399, -0.013687409460544586, -0.008334284648299217, -0.029033899307250977, 0.038884684443473816, 0.021645808592438698, -0.0364738367497921, 0.04285092279314995, 0.007686206139624119, -0.04199546203017235, -0.03351859748363495, -0.007401051931083202, 0.009507305920124054, -0.0038884684909135103, -0.05531994625926018, 0.020595921203494072, -0.03688860684633255, 0.03162620961666107, 0.019364573061466217, -0.04375823214650154, -0.03157436475157738, 0.0466616228222847, -0.030978133901953697, -0.012877311557531357, -0.013583716936409473, 0.011542270891368389, -0.017109261825680733, 0.0028871879912912846, 0.017575878649950027, -0.027763666585087776, -0.022617924958467484, 0.025132467970252037, 0.0054827407002449036, 0.011717252433300018, -0.034296292811632156, -0.03486660122871399, 0.020077459514141083, 0.01832764782011509, 0.020997731015086174, -0.020971806719899178, 0.031004056334495544, 0.008146341890096664, 0.0066492813639342785, -0.017848070710897446, -0.016059374436736107, 0.004419892560690641, 0.012741215527057648, 0.019960805773735046, -0.005106855649501085, -0.04964278265833855, -0.033103831112384796, 0.01670745387673378, -0.02018115110695362, 0.010907154530286789, -0.024976929649710655, 0.013518908992409706, 0.0003939099551644176, 0.021347692236304283, 0.01195704098790884, -0.04671346768736839, -0.062371037900447845, 0.03766629844903946, -0.00027178775053471327, 0.018120262771844864, 0.0038819878827780485, -0.006791858468204737, 0.024549199268221855, -0.017679570242762566, 0.04233246296644211, -0.04528769850730896, 0.0029114908538758755, 0.0021678211633116007, 0.004183344077318907, 0.03857360780239105, -0.05811964347958565, -0.0517166331410408, -0.03797737509012222, 0.028515435755252838, 0.050757475197315216, -0.0016396376304328442, -0.02085515297949314, -0.0036195162683725357, -0.009397132322192192, 0.039662379771471024, -0.029837515205144882, 0.04782816395163536, 0.0122940419241786, -0.022501271218061447, -0.005427653901278973, 0.028800589963793755, -0.017796223983168602, 0.010246114805340767, -0.05231286585330963, -0.03349267691373825, -0.019053496420383453, 0.0373292975127697, 0.018599841743707657, 0.030174516141414642, -0.03178175166249275, -0.017251839861273766, -0.0874127745628357, -0.013544832356274128, 0.011315443553030491, -0.03367413952946663, -0.011023808270692825, -0.008463899604976177, -0.00020353702711872756, -0.013492985628545284, 0.003251731861382723, 0.041762154549360275, 0.029500514268875122, -0.008334284648299217, -0.04196953773498535, 0.04196953773498535, -0.009591556154191494, -0.0373292975127697, 0.007958399131894112, 0.04759485647082329, 0.03170397877693176, 0.008444457314908504, -0.0576530285179615, 0.005690125748515129, -0.0271415114402771, -0.007913033477962017, 0.03325936943292618, 0.006344684399664402, 0.009941518306732178, 0.00341213122010231, -0.0024383938871324062, 0.03183359652757645, 0.030589286237955093, 0.0491761676967144, -0.022099463269114494, -0.03629237413406372, -0.022345732897520065, 0.02238461747765541, -0.014918757602572441, 0.008003764785826206, -0.04173623025417328, 0.01841837912797928, -0.046428315341472626, 0.03595537319779396, 0.013298562727868557, 0.019818227738142014, 0.05205363407731056, -0.041269611567258835, 0.023291926831007004, -0.03546283394098282, -0.01687595434486866, 0.0347888320684433, -0.02680451050400734, -0.04487292841076851, -0.04510623589158058, -0.033544521778821945, 0.01976638287305832, 0.03289644420146942, -0.009222151711583138, 0.009507305920124054, 0.04383600130677223, -0.010051690973341465, 0.02833397500216961, -0.027608126401901245, -0.0364997573196888, 0.04215100035071373, -0.0026263364125043154, -0.013194870203733444, 0.030226362869143486, -0.0347629077732563, 0.005566990934312344, -0.04938355088233948, -0.030070824548602104, 0.043810080736875534, 0.023473389446735382, -0.04824293404817581, 0.024536237120628357, -0.10561081022024155, -0.008846266195178032, 0.017174068838357925, 0.03916984051465988, 0.017316646873950958, -0.03323344513773918, -0.03185952082276344, 0.027348896488547325, -0.009533229283988476, 0.0005188675131648779, -0.02740074135363102, -0.0022131868172436953, -0.031392902135849, 0.03442590683698654, -0.007083493750542402, 0.010161864571273327, -0.010550711303949356, -0.010317402891814709, 0.009390651248395443, 0.01370037067681551, 0.020116344094276428, -0.01883314922451973, 0.032274290919303894, -0.009053651243448257, -0.03349267691373825, -0.02799697406589985, 0.028437666594982147, 0.02085515297949314, -0.07958398759365082, 0.0073945713229477406, -0.0551125630736351, 0.02256608009338379, 0.05578656122088432, 0.055423639714717865, 0.031937289983034134, 0.01093307789415121, -0.02018115110695362, -0.03035597875714302, 0.006244232412427664, -0.02010338194668293, -0.04277315363287926, 0.009999845176935196, -0.046687547117471695, -0.014166987501084805, -0.012650484219193459, 0.0695258155465126, 0.0007987562566995621, 0.03543690964579582, -0.023266004398465157, -0.019312728196382523, -0.027452588081359863, -0.036940451711416245, 0.07424382865428925, -0.058638107031583786, -0.02467881329357624, 0.04489884898066521, 0.025754623115062714, 0.05459409952163696, -0.005187865346670151, -0.04044007509946823, 0.0028531637508422136, -0.03927353397011757, -0.01849614828824997, 0.017498109489679337, -0.014296602457761765, 0.012546791695058346, -0.0022763742599636316, -0.015437220223248005, -0.027245203033089638, 0.027530357241630554, 0.003081611357629299, 0.019299766048789024, -0.027919204905629158, -0.010084095411002636, 0.02934497594833374, 0.0066071562469005585, 0.02104957588016987, -0.01874241791665554, 0.012352368794381618, -0.02688227966427803, -0.003541746875271201, -0.00323228957131505, -0.029293129220604897, 0.0190794188529253, -0.00038661909638904035, -0.019870074465870857, -0.004931874107569456, 0.04671346768736839, -0.0037685742136090994, -0.02145138569176197, 0.008969401009380817, -0.01285138912498951, -0.020414460450410843, 0.048813242465257645, 0.004361565690487623, -0.001243499806150794, 0.017005570232868195, -0.008645362220704556, -0.029993053525686264, -0.025132467970252037, -0.012307003140449524, 0.002984399674460292, 0.0014136203099042177, -0.02562500722706318, 0.040491919964551926, -0.0006922284374013543, -0.014413257129490376, -0.011853348463773727, 0.010362768545746803, 0.010135941207408905, 0.0011519588297232985, 0.03849583864212036, -0.0025615287013351917, 0.005200826562941074, 0.014231795445084572, -0.012637523002922535, -0.0021888837218284607, 0.016085298731923103, 0.00937120895832777, 0.0034056503791362047, 0.0347888320684433, 0.03717375919222832, 0.01578718237578869, 0.019779343158006668, -0.035229526460170746, -0.01568349078297615, 0.006902031600475311, 0.01788695529103279, -0.06859258562326431, 0.005871587432920933, 0.002856404287740588, -0.012702330946922302, 0.0035125832073390484, -0.00932584423571825, -0.0033991695381700993, -0.020544076338410378, 0.03953276574611664, 0.007867667824029922, 0.03935130313038826, -0.022695694118738174, 0.016642645001411438, -0.0010620380053296685, 0.005019364878535271, 0.011438578367233276, -0.032429829239845276, 0.03849583864212036, -0.0106025580316782, 0.013661486096680164, -0.05775672197341919, 0.006228030659258366, 0.05233878642320633, -0.0056447600945830345, 0.020660730078816414, -0.018094340339303017, 0.009734133258461952, -0.02859320491552353, 0.005839183460921049, 0.008658323436975479, -0.02426404319703579, -0.02706374228000641, -0.013687409460544586, 0.020829230546951294, 0.009870229288935661, -0.001172211254015565, 0.027504434809088707, 0.0013318004785105586, 0.054749637842178345, -0.006111376453191042, -0.009319363161921501, -0.0190794188529253, 0.02161988615989685, -0.0009964200435206294, -0.059830568730831146, -0.007018685806542635, 0.000865184236317873, -0.010492384433746338, 0.020595921203494072, 0.004928634036332369, 0.010790500789880753, 0.007563071325421333, 0.035592447966337204, -0.005683645140379667, 0.01906645856797695, -0.008392611518502235, -0.015592759475111961, -0.001036925008520484, 0.0199219211935997, -0.031237363815307617, -0.01713518425822258, -0.004176863469183445, 0.001134946825914085, -0.004530065692961216, -0.021101422607898712, -0.017666608095169067, -0.0057840971276164055, -0.0032290490344166756, 0.00521702878177166, -0.017783263698220253, -0.031107747927308083, 0.007997283712029457, 0.006902031600475311, -0.016590800136327744, 0.009896152652800083, -0.011095097288489342, -0.029215360060334206, 0.005583192687481642, -0.003561189165338874, 0.0029908805154263973, 0.017368493601679802, -0.005764654837548733, -0.02316231094300747, 0.013726294040679932, 0.01106269285082817, 0.040673382580280304, 0.00046337585081346333, -0.016422299668192863, 0.025663891807198524, 0.00024201667110901326, -0.008729612454771996, -0.002328220522031188, 0.013259678147733212, 0.02605273947119713, 0.006662243045866489, -0.00971469096839428, 0.028956130146980286, 0.013557793572545052, 0.011594117619097233, -0.021062538027763367, 0.01799064874649048, 0.011030289344489574, 0.03375190868973732, -0.030926287174224854, -0.008334284648299217, -0.006364127155393362, -0.018029533326625824, 0.009235112927854061, -0.014244756661355495, 0.05244247987866402, -0.04018084332346916, 0.01840541884303093, -0.004769854713231325, -0.05319425091147423, 0.003658400848507881, 0.042021382600069046, -0.026830432936549187, 0.006843704730272293, -0.006231270730495453, -0.033544521778821945, 0.004954556934535503, -0.02526208385825157, 0.015981605276465416, -0.006477540824562311, 0.0002962932048831135, -0.03745891526341438, -0.010058172047138214, 0.006587713956832886, 0.005148980300873518, 0.05122409388422966, -0.0381329171359539, -0.03180767223238945, -0.011302482336759567, 0.0322483666241169, 0.0007120757945813239, 0.007789898663759232, 0.04562469944357872, -0.01646118424832821, 0.030070824548602104, 0.03569614142179489, -0.001087151002138853, -0.04393969476222992, -0.09394539892673492, -0.00244973530061543, 0.031341057270765305, 0.00453978730365634, -0.03284459933638573, -0.03717375919222832, -0.006237751804292202, -0.007900072261691093, -0.0022342491429299116, 0.05749749019742012, -0.017536994069814682, -0.01808137819170952, -0.018107302486896515, -0.0508611686527729, 0.04528769850730896, 0.0042999982833862305, -0.009280478581786156, 0.008664804510772228, 0.0007234171498566866, -0.019390497356653214, 0.019364573061466217, -0.01900164969265461, 0.017524031922221184, -0.039558686316013336, 0.0018032772932201624, -0.014257717877626419, -0.001685003051534295, -0.022527195513248444, 0.04272130876779556, -0.010822904296219349, -0.004889749456197023, 0.025663891807198524, 0.007368647959083319, 0.010453499853610992, 0.011970002204179764, 0.0018859072588384151, -0.015877913683652878, -0.027348896488547325, -0.037536684423685074, -0.02765997312963009, 0.013091177679598331, -0.01687595434486866, -0.014957642182707787, -0.014568795450031757, -0.04018084332346916, 0.023278964683413506, 0.005498942453414202, -0.023978888988494873, 0.06325241923332214, 0.02680451050400734, -0.023732619360089302, -0.03172990307211876, 0.010414615273475647, -0.007550109643489122, -0.034218523651361465, 0.023045657202601433, 0.018262840807437897, 0.0031804433092474937, 0.04233246296644211, -0.013622601516544819, 0.01612418331205845, 0.002875846577808261, 0.02204761654138565, 0.0008481722325086594, 0.0003517848963383585, 0.012650484219193459, -0.0004105169791728258, -0.02654527872800827, 0.011853348463773727, 0.05267578735947609, 0.023201195523142815, -0.009850786998867989, 0.02195688523352146, 0.01933865062892437, 0.017912879586219788, 0.03621460497379303, 0.016487106680870056, -0.018470225855708122, -0.009092535823583603, 0.015657566487789154, -0.010719211772084236, 0.009617478586733341, 0.010181306861341, -0.02028484456241131, 0.008392611518502235, 0.029837515205144882, -0.013130062259733677, -0.019895996898412704, -0.010583115741610527, 0.009280478581786156, -0.015877913683652878, -0.02729704976081848, -0.014322525821626186, -0.0043421234004199505, -0.017588838934898376, 0.006863147020339966, -0.03045967034995556, 0.018807226791977882, -0.06988874077796936, -0.006927954964339733, 0.019558997824788094, -0.02509358339011669, -0.03172990307211876, 0.016564875841140747, 0.005907231941819191, 0.09228631854057312, -0.004666162189096212, -0.05360902100801468, -0.00329547724686563, 0.014620642177760601, -0.023097503930330276, 0.001156009268015623, 0.024652890861034393, 0.013778140768408775, 0.010051690973341465, -0.045261774212121964, 0.04648016020655632, 0.016603760421276093, -0.022773465141654015, -0.005473019555211067, -0.0038139396347105503, -0.004180103540420532, 0.020634805783629417, 0.010323883965611458, -0.00690851267427206, -0.007245513144880533, 0.00746585987508297, 0.007938956841826439, 0.010544230230152607, 0.010920115746557713, -0.03942907229065895, 0.010459980927407742, -0.0017660128651186824, 0.02874874509871006, 0.010414615273475647, 0.009675806388258934, -0.005268875043839216, -0.008250034414231777, -0.00394031498581171, 0.028126589953899384, 0.008159303106367588, 0.02077738381922245, -0.0035968334414064884, -0.04132146015763283, -0.018638726323843002, -0.010148903355002403, 0.013998487032949924, -0.003891709027811885, 0.004465258214622736, -0.01771845482289791, 0.022164270281791687, -0.017277762293815613, -0.019960805773735046, 0.0016688010655343533, -0.015631644055247307, 0.003975959029048681, -0.016007529571652412, 0.03745891526341438, 0.013337447308003902, 0.023473389446735382, 0.0018907678313553333, 0.0037394105456769466, -0.004601354710757732, 0.02213834784924984, -0.01411514077335596, 0.024575121700763702, -0.026674894616007805, 0.03909207135438919, -0.017925839871168137, 0.016759298741817474, -0.009721171110868454, 0.026324931532144547, -0.012203310616314411, 0.03408890962600708, 0.009785979054868221, -0.04966870695352554, -0.026013854891061783, -0.028100665658712387, 0.06309688091278076, 0.023291926831007004, 0.020414460450410843, 0.022527195513248444, 0.03471106290817261, 0.03585167974233627, 0.014698411338031292, -0.025404661893844604, -0.00697332015261054, -0.027582203969359398, 0.03953276574611664, 0.03579983487725258, -0.01314950454980135, -0.021490270271897316, 0.005719289183616638, 0.013765178620815277, 0.024976929649710655, 0.04692085459828377, 0.016176030039787292, -0.015022450126707554, 0.023175273090600967, -0.009526748210191727, 0.02348634973168373, -0.03849583864212036, -0.017627723515033722, -0.012553272768855095, 0.0015586278168484569, -0.04181399941444397, 0.001780594582669437, 0.015437220223248005, -0.013557793572545052, 0.01695372350513935, 0.0032679338473826647, 0.045676544308662415, 0.009312882088124752, 0.02009042166173458, -0.0078028603456914425, -0.0015003008302301168, -0.0017822147347033024, 0.0026814232114702463, 0.004432854242622852, 0.011671886779367924, -0.020673692226409912, 0.020297806710004807, -0.01034980732947588, 0.003933833912014961, 0.0019345131004229188, 0.014218833297491074, 0.012021848931908607, -0.028619129210710526, 0.07061459124088287, 0.020038574934005737, -0.054490406066179276, -0.04344715550541878, 0.03442590683698654, -0.017355531454086304, 0.022838272154331207, -0.026908202096819878, 0.027348896488547325, -0.008774977177381516, -0.012060733512043953, 0.003674602834507823, -0.009740613400936127, 0.009254555217921734, -0.001492199837230146, 0.005447096191346645, -0.030900362879037857, 0.00848334189504385, -0.043136078864336014, -0.014128102920949459, 0.0006395720993168652, 0.02028484456241131, -0.0077056484296917915, 0.03165213391184807, -0.051690708845853806, 0.02281234972178936, -0.018262840807437897, -0.019895996898412704, 0.024821391329169273, 0.0440693125128746, 0.010330365039408207, 0.03206690400838852, -0.010064653120934963, 0.05469779297709465, 0.009416574612259865, 0.015800144523382187, -0.028541360050439835, 0.018094340339303017, 0.022604964673519135, 0.005178144201636314, 0.017316646873950958, -0.036007218062877655, 0.028696898370981216, -0.02339562028646469, -0.04098445922136307, 0.041425153613090515, 0.04469146579504013, -0.020816268399357796, 0.014789142645895481, 0.016850030049681664, -0.007025166414678097, 0.02467881329357624, -0.007096454966813326, -0.018379494547843933, 0.027348896488547325, 0.035825759172439575, -0.01034332625567913, -0.011302482336759567, 0.010583115741610527, -0.016176030039787292, 0.01459471881389618, 0.037536684423685074, -0.009254555217921734, 0.003788016503676772, 0.021995769813656807, 0.0007675674860365689, 0.04590985178947449, 0.012235714122653008, 0.033466752618551254, 0.003055688226595521, -0.022916041314601898, 0.011438578367233276, 0.022604964673519135, 0.029111668467521667, -0.006425694562494755, 0.004008363001048565, 0.019209034740924835, -0.00810097623616457, -0.00865184236317873, 0.0398697629570961, 0.03338898345828056, -0.009099016897380352, -0.0288524366915226, -0.006869627628475428, -0.02603977732360363, -0.008360207080841064, 0.0009453839156776667, -0.026934126392006874, -0.00929343979805708, 0.011244155466556549, -0.022255001589655876, -0.034555524587631226, 0.014439180493354797, -0.03494437038898468, 0.037614453583955765, 0.03144475072622299, -0.007187186274677515, 0.023110464215278625, 0.006289598066359758, -0.0330779068171978, -0.015826066955924034, 0.02848951332271099, -3.055587148992345e-05, 0.003587112296372652, 0.02272161841392517, 0.00286288489587605, 0.014750257134437561, -0.002148378873243928, 0.0035061025992035866, 0.0009794080397114158, -0.005045287776738405, 0.02028484456241131, 0.04111407324671745, -0.021088460460305214, 0.00654882937669754, -0.03670714423060417, 0.06340795755386353, 0.012384772300720215, 0.001960436347872019, 9.533836418995634e-05, 0.0029779188334941864, 0.0019345131004229188, 0.013726294040679932, 0.009727652184665203, 0.05350532755255699, -0.04334346204996109, 0.03605906665325165, 0.009811902418732643, -0.011607078835368156, -0.0423843078315258, -0.003502862062305212, 0.01381702534854412, 0.010284999385476112, 0.007239032536745071, -0.027504434809088707, -0.005615596659481525, -0.007809340953826904, 0.009086054749786854, 0.010310922749340534, -0.025469468906521797, 0.009144381619989872, 0.01771845482289791, -0.021438423544168472, 0.009034208953380585, -0.020220037549734116, -0.004267594311386347, 0.004543027374893427, 0.038469914346933365, -0.009436016902327538, -0.03699229657649994, -0.0237585436552763, 0.0014889594167470932, 0.011425617150962353, -0.019818227738142014, -0.0035125832073390484, 0.0024675573222339153, 0.002708966378122568, -0.02103661559522152, -0.019481226801872253, -0.03185952082276344, 0.025495393201708794, -0.01738145388662815, 0.011658924631774426, -0.04759485647082329, 0.004993441980332136, 0.029137590900063515, 0.0043842485174536705, 0.009500824846327305, 0.004870306700468063, 0.003034625668078661, -0.025884239003062248, 0.046350546181201935, -0.0069927629083395, 0.05454225465655327, 0.02484731376171112, -0.019040534272789955, -0.021438423544168472, -0.0017886955756694078, -0.03217059746384621, 0.020971806719899178, -0.018210994079709053, 0.007563071325421333, 0.014685450121760368, -0.026260124519467354, 0.003340842667967081, -0.027348896488547325, 0.02325304225087166, 0.0009640161879360676, 0.007102936040610075, -0.012456061318516731, 0.018172109499573708, 0.02986343950033188, 0.008159303106367588, 0.0013496226165443659, -0.0042157480493187904, -0.008645362220704556, -0.004264353774487972, 0.011730213649570942, -0.012728254310786724, -0.008126899600028992, 0.002655500080436468, -0.004536546766757965, -0.01967565156519413, 0.009228631854057312, -0.03157436475157738, -0.004909191746264696, 0.02544354647397995, 0.015592759475111961, 0.006642800290137529, -0.008839785121381283, -0.046169083565473557, -0.036758989095687866, -0.01068680826574564, 0.0026992452330887318, 0.031237363815307617, 0.014607680030167103, -0.006432175170630217, -0.01635749079287052, 0.016551915556192398, 0.011801501736044884, 0.08046537637710571, -0.016655607149004936, -0.0035968334414064884, 0.025171352550387383, 0.054075635969638824, -0.025249123573303223, 0.0258583165705204, -0.01822395622730255, -0.017018530517816544, -0.0005601824959740043, -0.03061520867049694, 0.020155228674411774, 0.03618868067860603, -0.02688227966427803, -0.03655160591006279, -0.007789898663759232, 0.027348896488547325, 0.04640239104628563, 0.014957642182707787, 0.013596678152680397, 0.019883036613464355, -0.030822593718767166, -0.007763975765556097, -0.01924791932106018, 0.0038981898687779903, -0.01933865062892437, 0.006765935570001602, 0.00287260627374053, 0.019196072593331337, 0.031937289983034134, -0.016435259953141212, -0.010544230230152607, -0.01713518425822258, 0.024821391329169273, 0.013389293104410172, 0.01170429028570652, 0.01386887114495039, -0.024704737588763237, 0.008075052872300148, 0.006137299817055464, 0.01089419238269329, 0.01242365688085556, -0.009423055686056614, -0.02238461747765541, 0.012086656875908375, 0.007776936981827021, -0.02002561278641224, -0.01576125994324684, 0.0016785223269835114, 0.017627723515033722, -0.005051768850535154, 0.012378291226923466, -0.024315889924764633, -0.006419213488698006, -0.01745922490954399, -0.017679570242762566, -0.007977841421961784, 0.0067983390763401985, -0.026415662840008736, -0.00801672600209713, -0.011114539578557014, 0.01534648984670639, -0.03598129749298096, -0.014646564610302448, 0.007148301228880882, -0.007239032536745071, 0.022164270281791687, -0.005178144201636314, -0.014802103862166405, -0.01892388053238392, -0.04272130876779556, -0.015877913683652878, 0.025599084794521332, 0.011652444489300251, 0.00396299734711647, 0.010272038169205189, -0.011717252433300018, 0.007485302165150642, 0.002964957384392619, 0.010148903355002403, -0.00473097013309598, -0.01484098844230175, -0.0036000737454742193, 0.0347629077732563, -0.06848889589309692, -0.003894949331879616, 0.03411483019590378, 0.014076256193220615, 0.01001280639320612, 0.027374818921089172, 0.02383631281554699, -0.0006460528820753098, -0.004892989527434111, 0.008710169233381748, -0.011769098229706287, 0.0013236994855105877, -0.02102365344762802, -0.029215360060334206, 0.005949357058852911, 0.009500824846327305, 0.05010939761996269, -0.003499621758237481, -0.024277005344629288, 0.013467063196003437, -0.023628927767276764, 0.014296602457761765, -0.01968861185014248, -0.046609777957201004, 0.013389293104410172, 0.029111668467521667, 0.009721171110868454, -0.011133981868624687, 0.02475658245384693, 0.0002432318142382428, 0.0021921242587268353, -0.03170397877693176, 0.011140462942421436, -0.020634805783629417, -0.011289520189166069, 0.031159594655036926, -0.0356442965567112, -0.010784019716084003, -0.013052293099462986, 0.014828027226030827, 0.00890459306538105, 0.03232613578438759, -0.001151148695498705, 0.013544832356274128, -0.0004204406577628106, -0.015022450126707554, -0.016409337520599365, -0.024652890861034393, -0.005142499692738056, 0.019209034740924835, 0.012449580244719982, -0.028359897434711456, 0.0029293131083250046, 0.0010839105816558003, -0.006577992811799049, 0.009306401945650578, 0.0024464947637170553, 0.014102179557085037, -0.01841837912797928, -0.003920872695744038, -0.009902633726596832, 0.012572715058922768, -0.020492229610681534, 0.034814756363630295, -0.02019411325454712, -0.014789142645895481, -0.010946039110422134, 0.025754623115062714, -0.01484098844230175, 0.04383600130677223, -0.01788695529103279, 0.0047795758582651615, 0.0019247919553890824, 0.02893020585179329, 0.01620195247232914, -0.002483759308233857, -0.02282531000673771, 0.01967565156519413, 0.0077056484296917915, 0.0031804433092474937, 0.047698549926280975, -0.012106099165976048, -0.014491026289761066, 0.017614763230085373, -0.005842423997819424, -0.005955837666988373, -0.029500514268875122, -0.021593961864709854, 0.023512274026870728, 0.01687595434486866, -0.02333081141114235, -0.02229388616979122, -0.009053651243448257, 0.017588838934898376, -0.0034510158002376556, -0.001772493589669466, -0.02178838476538658, 0.0356442965567112, 0.009053651243448257, -0.026908202096819878, -0.013596678152680397, -0.03569614142179489, 0.020207075402140617, -0.018288763239979744, 0.029241284355521202, -0.007763975765556097, -0.007245513144880533, -0.008139860816299915, 0.016396375373005867, -0.003762093372642994, 0.019221996888518333, -0.03183359652757645, -0.009760056622326374, -0.005751693155616522, 0.02483435347676277, 0.012501426972448826, 0.0007614917703904212, -0.009060131385922432, 0.00010399628081358969, 0.011671886779367924, 0.010077614337205887, -0.0015181229682639241, 0.0049189128912985325, 0.013084696605801582, 0.01281250361353159, -0.016992608085274696, -0.009922076016664505, -0.001232968526892364, 0.013350408524274826, 0.028282128274440765, -0.01815914921462536, -0.0014865291304886341, -0.008723131380975246, -0.012579196132719517, 0.016603760421276093, -0.03367413952946663, -0.007977841421961784, -0.016940761357545853, 0.04121776670217514, -0.03432221710681915, -0.016811145469546318, -0.005226749926805496, 0.006299319211393595, 0.019390497356653214, 0.006568271666765213, -0.03424444794654846, 0.038625456392765045, 0.032870519906282425, -0.02229388616979122, -0.002486999612301588, 0.01450398750603199, -0.0025534278247505426, -0.015126142650842667, 0.019831189885735512, -0.026091624051332474, -0.020466307178139687, -0.02620827779173851, -0.005780856590718031, 0.004957797471433878, -0.0027899763081222773, -0.03595537319779396, 0.02128288522362709, 0.004364806227385998, -0.03494437038898468, -0.01831468753516674, -0.0008145531755872071, -0.02238461747765541, -0.018936842679977417, 0.014050332829356194, -0.02086811512708664, 0.021684693172574043, -0.00834724586457014, 0.007426974829286337, -0.010323883965611458, 0.003386208089068532, 0.004462017677724361, -0.0301226694136858, -0.018353572115302086, 0.03232613578438759, 0.01187927182763815, 0.02492508292198181, 0.021736539900302887, -0.008204668760299683, -0.03427036851644516, -0.04365454241633415, -0.00929343979805708, 0.009099016897380352, -0.009066612459719181, -0.016383415088057518, -0.014050332829356194, -0.020751461386680603, 0.023201195523142815, 0.006195626687258482, -0.028982052579522133, 0.017199993133544922, 0.0014322525821626186, -0.030718902125954628, 0.0019442342454567552, 0.00018328458827454597, 0.010019287467002869, 0.006620117928832769, -0.01517798937857151, -0.04386192560195923, 0.0018745658453553915, 0.014802103862166405, 0.005573471542447805, 0.012365330010652542, 0.020906999707221985, -0.00638032890856266, 0.02001265250146389, 0.011004365980625153, 0.047880008816719055, 0.020660730078816414, 0.05495702102780342, 0.02975974604487419, -0.0288524366915226, -0.01822395622730255, -0.003081611357629299, 0.04222876951098442, 0.00314803933724761, -0.01034980732947588, -0.0026781826745718718, -0.00464671989902854, 0.029241284355521202, 0.00826947670429945, -0.021840231493115425, 0.010693288408219814, 0.003428333206102252, -0.028437666594982147, -0.03942907229065895, 0.022501271218061447, 0.017951764166355133, 0.004261113703250885, -0.032352060079574585, 0.017238877713680267, 0.0381847620010376, 0.023628927767276764, -0.011769098229706287, -0.00404724758118391, -0.022073540836572647, 0.07725091278553009, -0.019455304369330406, -0.014400294981896877, 0.011697810143232346, -0.007627879269421101, 0.016811145469546318, 0.03087444044649601, -0.0016088539268821478, 0.05192401632666588, -0.0347888320684433, 0.0071288589388132095, 0.01318190898746252, 0.0018032772932201624, 0.02305861935019493, 0.019883036613464355, 0.008172265253961086, -0.014491026289761066, 0.018016571179032326, 0.0013164086267352104, 0.022073540836572647, -0.013467063196003437, 0.0423843078315258, 0.01586495153605938, 0.014465102925896645, -0.01644822210073471, 0.014128102920949459, 0.027374818921089172, 0.02942274510860443, 0.044484078884124756, 0.03113367222249508, 0.007174224592745304, -0.006574752274900675, 0.014983565546572208, -0.012572715058922768, 0.04103630408644676, -0.0008546530152671039, -0.004500902257859707, 0.02466585300862789, -0.012903234921395779, 0.004500902257859707, 0.011587636545300484, 0.014568795450031757, -0.013091177679598331, -0.002997361123561859, -0.01848318800330162, 0.025650931522250175, 0.015100219286978245, -0.010388691909611225, 0.012955081649124622, -0.01730368472635746, 0.0027186875231564045, -0.05837887525558472, 0.0012912956299260259, 0.005210547707974911, -0.017018530517816544, 0.02018115110695362, 0.03616275638341904, -0.05096486210823059, -0.0007278727134689689, -0.023019734770059586, 0.02960420772433281, -0.016487106680870056, 0.014491026289761066, -0.024302929639816284, 0.024043697863817215], [0.022591549903154373, 0.01354389637708664, 0.03072892129421234, 0.044410739094018936, -0.01672988384962082, 0.03836977481842041, -0.024536244571208954, 0.024039726704359055, -0.03301842138171196, 0.027032624930143356, 0.0030739265494048595, -0.007378803100436926, 0.027722232043743134, -0.029294537380337715, -0.03301842138171196, 0.04267292842268944, -0.014895527623593807, 0.032908082008361816, -0.03456314280629158, 0.006934006232768297, 0.019240057095885277, 0.030342740938067436, -0.031308192759752274, -0.031142687425017357, -0.06603684276342392, -0.058202896267175674, 0.03293566778302193, 0.011930214241147041, 0.04893456771969795, -0.0532928891479969, 0.11342668533325195, -0.025612032040953636, 0.0532928891479969, 0.003734226105734706, -0.029846223071217537, 0.03070133738219738, -0.016702299937605858, 0.044134896248579025, 0.030535832047462463, -0.001865388941951096, 0.007785671856254339, 0.01997104100883007, 0.011337151750922203, 0.016123030334711075, 0.0050582727417349815, 0.051334403455257416, 0.04424523562192917, -0.030508248135447502, -0.017709126695990562, 0.019750365987420082, 0.043638378381729126, 0.03881112486124039, -0.023984558880329132, -0.037790507078170776, 0.02263292670249939, 0.01623336598277092, -0.010213091038167477, 0.04609338194131851, 0.014702437445521355, -0.03787325695157051, -0.016316119581460953, -0.01808151602745056, -0.02819116599857807, 0.046424396336078644, -0.02350183203816414, -0.0004213072534184903, -0.04468658193945885, 0.069236621260643, -0.01063375174999237, -0.0035894084721803665, 0.04173506051301956, -0.036245785653591156, 0.04245225340127945, -0.02405351959168911, -0.027211923152208328, -0.018467696383595467, -0.047996699810028076, 5.2663406677311286e-05, -0.015529966913163662, 0.0018602169584482908, -0.02477071061730385, 0.02460520528256893, -0.006171989254653454, 0.005820289719849825, -0.0013050826964899898, 0.0010904422961175442, -0.07878079265356064, 0.01168885175138712, -0.024715542793273926, -0.014730021357536316, -0.03988691419363022, -0.022853601723909378, -0.0010016552405431867, 0.04578995704650879, 0.030784090980887413, -0.01820564456284046, 0.04449349269270897, 0.012895665131509304, -0.03428729623556137, 0.02266051061451435, -0.014509347267448902, -0.0175574142485857, -0.020977867767214775, -0.008558032102882862, 0.04736226052045822, 0.004161783028393984, -0.002541204681620002, 0.03268740698695183, -0.0433349534869194, -0.011081996373832226, -0.029515212401747704, -0.003399766283109784, -0.0380939319729805, 0.08275292813777924, -0.03497690707445145, 0.026108549907803535, -0.08369079977273941, -0.02186056599020958, 0.024260401725769043, 0.04198332130908966, -0.03574926778674126, -0.011385424062609673, 0.048796646296978, -0.03608027845621109, 0.003761810250580311, -0.056409914046525955, 0.01484035886824131, -0.012647406198084354, -0.07999449968338013, -0.04046618193387985, 0.0689607784152031, -0.04711400344967842, 0.023612169548869133, -0.06785740703344345, 0.009626924060285091, 0.024370737373828888, -0.008461487479507923, -0.026977455243468285, -0.010130338370800018, -0.00611337274312973, -0.025377565994858742, -0.008295981213450432, 0.013364598155021667, 0.023363910615444183, -0.021405424922704697, 0.005241019185632467, 0.021253710612654686, 0.019681405276060104, 0.03525274991989136, -0.02517068386077881, -0.025529278442263603, -0.0035894084721803665, -0.03398387134075165, -0.021198542788624763, -0.012916353531181812, -0.021474385634064674, 0.024412114173173904, 0.03839736059308052, 0.01777808740735054, -0.03141852840781212, -0.04245225340127945, 0.002799807582050562, -0.06857459247112274, -0.027349844574928284, 0.013378391042351723, 8.356106263818219e-05, -0.025956835597753525, 0.04402456060051918, -0.04330736771225929, -0.024012142792344093, -0.07580168545246124, -0.017488453537225723, -0.050010353326797485, 0.033873531967401505, -0.012557757087051868, -0.07166403532028198, 0.016922974959015846, -0.054589349776506424, 0.01700572669506073, 0.045872706919908524, -0.013419766910374165, 0.016922974959015846, -0.06068548187613487, -0.015240331180393696, -0.055940981954336166, 0.007916697300970554, -0.022936353459954262, -0.006702987477183342, 0.0049513839185237885, 0.018743539229035378, 0.00992345530539751, 0.004796221852302551, 0.0043203928507864475, 0.031170271337032318, -0.0361078642308712, 0.01246121246367693, -0.0060444120317697525, 0.020702024921774864, 0.02741880528628826, 0.021157165989279747, 0.028177373111248016, -0.012861184775829315, 0.04272809624671936, 0.031032349914312363, -0.02303289994597435, 0.007116752211004496, -0.011606099084019661, 0.03525274991989136, -0.023474248126149178, -0.012599133886396885, 0.015433421358466148, -0.03842494264245033, 0.014495555311441422, 0.023584585636854172, 0.00044738303404301405, 0.01114406157284975, 0.0068064285442233086, -0.018495280295610428, 0.003061858471482992, 0.02788773737847805, -0.01431625708937645, -0.004310048650950193, 0.019708989188075066, -0.011323359794914722, -0.019184887409210205, 0.004472106229513884, 0.04325219988822937, -0.0390869677066803, -0.027184337377548218, -0.06217503547668457, 0.0004896215396001935, -0.006444384343922138, -0.020853739231824875, -0.02591545879840851, -0.014192127622663975, -0.02012275531888008, -0.03679747134447098, -0.01433004904538393, 0.009461418725550175, 0.01253706868737936, 0.03268740698695183, -0.002455003559589386, 0.004527274984866381, -0.024467283859848976, 0.015847185626626015, -0.026660235598683357, -0.026012005284428596, -0.01935039460659027, 0.031308192759752274, 0.028080828487873077, 0.04510034620761871, -0.015419629402458668, 0.06702987104654312, -0.01827460527420044, -0.02081236243247986, -0.007144336588680744, 0.0025618928484618664, -0.027970490977168083, 0.0037100897170603275, -0.033404599875211716, -0.0015878218691796064, -0.019184887409210205, -0.010482038371264935, -0.01907454989850521, -0.06327840685844421, -0.027198130264878273, -0.00779946381226182, 0.006606442388147116, 0.008971797302365303, 0.03304600343108177, -0.03246673196554184, 0.029735887423157692, -0.004127302672713995, -0.025612032040953636, -0.0351148284971714, 0.006382319610565901, 0.00626163836568594, -0.05340322479605675, 0.01253706868737936, 0.0010275155073031783, -0.03988691419363022, -0.04860355332493782, -0.013964557088911533, -0.0664781853556633, 0.015447214245796204, 0.03252190351486206, 0.01293704193085432, -0.03434246778488159, -0.05599614977836609, 0.009378665126860142, 0.05660300329327583, -0.03119785524904728, 0.030066898092627525, -0.009502794593572617, -0.008406318724155426, 0.005113441497087479, -0.014178335666656494, -0.003170471638441086, -0.04300393909215927, -0.0056237513199448586, 0.0073167383670806885, 0.05605131760239601, 0.023915596306324005, 0.032908082008361816, -0.007378803100436926, -0.015143786557018757, -0.02009516954421997, 0.010654440149664879, -0.040300678461790085, 0.010461349971592426, -0.00728915398940444, 0.010047584772109985, -0.007675334345549345, -0.04788636416196823, -0.04145921766757965, 0.020398598164319992, -0.026384392753243446, 0.0031273711938410997, -0.0021412321366369724, -0.0012421560240909457, 0.03045307844877243, 0.0019222816918045282, 0.05472727119922638, -0.003054962493479252, -0.022522589191794395, -0.03147369995713234, 0.02350183203816414, 0.0227846410125494, -0.04256259277462959, -0.0380939319729805, -0.06432661414146423, 0.009295912459492683, 0.02186056599020958, -0.03765258565545082, -0.015405837446451187, 0.010571686550974846, -0.0059237307868897915, 0.027653271332383156, 0.024163855239748955, -0.025336189195513725, 0.03249431774020195, -0.029266953468322754, -0.001274050329811871, 0.026439562439918518, -0.01715744100511074, 0.02569478563964367, 0.03097718022763729, 0.029515212401747704, -0.02547411061823368, 0.02591545879840851, 0.012323291040956974, 0.016191991046071053, -0.05930626764893532, 0.014978280290961266, -0.07337426394224167, -0.0053582522086799145, 0.04148680344223976, -0.014440386556088924, -0.03345976769924164, -0.026756782084703445, 0.02083994634449482, -0.003472174983471632, 0.00831666961312294, 0.023474248126149178, 0.03299083560705185, -0.0013309429632499814, -0.018881460651755333, 0.027653271332383156, -0.01168885175138712, -0.036218199878931046, -0.017198817804455757, 0.05243777483701706, 0.032108139246702194, 0.010716504417359829, -0.04443832486867905, -0.011019932106137276, -0.009164887480437756, -0.007985658012330532, 0.008661473169922829, -0.009302808903157711, 0.023667339235544205, 0.024315569549798965, -0.0063995602540671825, 0.021226126700639725, 0.040024835616350174, 0.028204957023262978, -0.04121096059679985, 0.01648162491619587, -0.01069581601768732, -0.01124060619622469, 0.009226951748132706, 0.026660235598683357, -0.03539067134261131, 0.057706378400325775, -0.014440386556088924, 0.056134071201086044, 0.02843942493200302, 0.027846360579133034, 0.0630025640130043, 0.013943868689239025, 0.010054481215775013, -0.013674922287464142, -0.011826773174107075, 0.010199299082159996, -0.03197021409869194, 0.020522726699709892, -0.009144199080765247, 0.015254124067723751, -0.023888012394309044, -0.0222881231456995, -0.007261569611728191, 0.0039962767623364925, 0.06620234251022339, -0.023915596306324005, 0.02201228030025959, 0.0025584448594599962, -0.020770985633134842, 0.01195090264081955, -0.01113026961684227, -0.019005589187145233, 0.06840909272432327, -0.00806841067969799, 0.01608165353536606, -0.005982347298413515, -0.010592374950647354, 0.055361710488796234, 0.014385217800736427, -0.011937110684812069, 0.0019602100364863873, -0.0946141853928566, 0.034149374812841415, 0.0542859211564064, 0.0383421927690506, 0.01712985709309578, 0.0019171095918864012, -0.031032349914312363, 0.07000897824764252, 0.00110337242949754, -0.0373491570353508, -0.0550306998193264, 0.004161783028393984, -0.026356808841228485, -0.03318392485380173, 0.015626512467861176, -0.015929939225316048, 0.028770435601472855, 0.017447076737880707, 0.01434384100139141, -0.015874771401286125, 0.0175574142485857, -0.0021360600367188454, 0.022522589191794395, -0.06609200686216354, -0.027405012398958206, -0.04096269980072975, 0.02248121239244938, -0.014895527623593807, -0.06559549272060394, 0.05842357128858566, -0.010544102638959885, 0.017516037449240685, 0.024370737373828888, 0.04162472486495972, 0.06460245698690414, 0.027294674888253212, -0.009564859792590141, -0.03395628556609154, -0.055637553334236145, -0.007233985234051943, 0.017736712470650673, 0.005906490609049797, -0.045927878469228745, -0.021419217810034752, -0.005727192386984825, 0.06609200686216354, 0.01485415082424879, -0.022922562435269356, -0.01832977496087551, 0.039804160594940186, -0.028094619512557983, -0.02081236243247986, 0.07502932101488113, -0.05522378906607628, -0.03831460699439049, 0.01508861780166626, 0.011316463351249695, 0.05172058194875717, 0.0024360395036637783, -0.005609959363937378, -0.01601269282400608, -3.604278026614338e-05, -0.03856286779046059, 0.025556864216923714, -0.01623336598277092, -0.004985864274203777, -0.0009223503875546157, -0.022095032036304474, 0.01650921069085598, 0.05020344629883766, 0.0004719503049273044, 0.010288948193192482, -0.031142687425017357, 0.017240194603800774, -0.006582306232303381, -0.005065169185400009, 0.013936973176896572, 0.002503276104107499, -0.020205507054924965, -0.03988691419363022, 0.02522585168480873, -0.02637060172855854, 0.025405149906873703, 0.02068823203444481, -0.01722640171647072, -0.023612169548869133, -0.008213228546082973, 0.03881112486124039, 0.005113441497087479, -0.01752982847392559, 0.007778775412589312, -0.002470519859343767, -0.021570930257439613, -0.017212608829140663, 0.01385421957820654, 0.01715744100511074, 0.01932280883193016, -0.0286325141787529, -0.024067310616374016, -0.009420041926205158, -0.00477553391829133, 0.006816772744059563, -0.050065524876117706, -0.032632239162921906, 0.03768016770482063, -0.008709746412932873, -0.007702918723225594, 0.00012639217311516404, -0.0037411220837384462, 0.029046278446912766, -0.007937385700643063, 0.03892146050930023, 0.011040620505809784, 0.009557963348925114, 0.005258259363472462, 0.005099649541079998, 0.0025670649483799934, 0.019212471321225166, 0.030839258804917336, 0.00543410936370492, 0.024591412395238876, 0.02201228030025959, 0.015129994601011276, -0.00959934014827013, -0.023819051682949066, 0.015157578513026237, 0.010557894594967365, 0.008668369613587856, -0.006809876766055822, 0.023322533816099167, -0.018881460651755333, -0.012799120508134365, -0.00826839730143547, 0.019281433895230293, -0.0026429216377437115, -0.030094482004642487, -0.005041032563894987, 0.02786015346646309, 0.0348665677011013, -0.021143373101949692, 0.028467008844017982, -0.032356396317481995, -0.005241019185632467, 0.011461281217634678, -0.004216951318085194, 0.04523826763033867, 0.016426457092165947, 0.02532239630818367, -0.04065927490592003, 0.026922287419438362, 0.0026084412820637226, -0.02866009809076786, 0.009557963348925114, -0.02668781951069832, -0.01762637495994568, -0.010957866907119751, 0.020605480298399925, 0.004747949540615082, -0.017667751759290695, -0.021681267768144608, -0.03070133738219738, -0.012688782997429371, 0.010544102638959885, 0.0008227882790379226, 0.01377146691083908, 0.007964969612658024, 0.05569272115826607, -0.015681680291891098, 0.023819051682949066, 0.020136546343564987, 0.013123235665261745, 0.0023170821368694305, -0.016922974959015846, -0.015929939225316048, -0.008902836591005325, -0.007082271855324507, 0.027777399867773056, 0.0187987070530653, 0.01433004904538393, -0.0029066966380923986, 0.03605269268155098, 0.01792980171740055, 0.03428729623556137, -0.005972003098577261, -0.018109099939465523, -0.013330117799341679, 0.02343287132680416, 0.01485415082424879, 0.00955106783658266, 0.015254124067723751, -0.011233710683882236, -0.041045453399419785, -0.01852286420762539, 0.003989380784332752, -0.015212747268378735, 0.005685816053301096, 0.03042549453675747, -0.0014714505523443222, -0.01725398562848568, 0.027818776667118073, -0.007378803100436926, -0.019929664209485054, 0.020384805276989937, -0.01150265708565712, 0.008923524059355259, 0.00031484905048273504, 0.026536107063293457, 0.006813324522227049, -0.002725674770772457, 0.00292221293784678, -0.011937110684812069, 0.014040414243936539, 0.01561271958053112, 0.013378391042351723, -0.022674303501844406, 0.01573684997856617, 0.0192952249199152, -0.0011671611573547125, 0.050782714039087296, 0.008820082992315292, 0.0019429698586463928, -0.0007128820288926363, 0.021157165989279747, -0.004196263384073973, -0.010330324061214924, 0.030784090980887413, 0.012874976731836796, -0.022867392748594284, 0.028135996311903, 0.012502588331699371, -0.01140611246228218, -0.023474248126149178, 0.03216330707073212, -0.012309498153626919, 0.024894841015338898, 0.035142410546541214, -0.012750847265124321, 0.05809255689382553, 0.009013173170387745, 0.015750641003251076, -0.003106683026999235, -0.00862699281424284, -0.05042412132024765, 0.03403903916478157, -0.028494592756032944, -0.01221295353025198, -0.010937179438769817, 0.01040618121623993, -0.013964557088911533, -0.050286196172237396, 0.006051308009773493, -0.021998487412929535, -0.014178335666656494, -0.014536931179463863, -0.02995656058192253, -0.036962974816560745, -0.020150339230895042, 0.010013104416429996, -0.014633476734161377, 0.0034256265498697758, -0.011378527618944645, -0.017640165984630585, 0.02043997496366501, 0.01377146691083908, 0.019888287410140038, 0.024246608838438988, 0.036962974816560745, 0.01935039460659027, -0.015819601714611053, -0.0582580640912056, -0.08711124956607819, 0.014440386556088924, -0.005747880786657333, -0.03596993908286095, -0.013392182998359203, -0.04394180700182915, -0.01715744100511074, -0.024260401725769043, 0.036714717745780945, 0.058975256979465485, -0.007158128544688225, 0.016674716025590897, 0.025501694530248642, -0.01434384100139141, -0.013109443709254265, -0.017833257094025612, 0.014798983000218868, -0.011281982995569706, 0.01845390349626541, -0.0112061258405447, -0.017143648117780685, -0.01715744100511074, 0.04063168913125992, -0.023667339235544205, 0.01303358655422926, 0.028577346354722977, -0.007785671856254339, -0.002025722758844495, 0.013323222286999226, -0.0016240263357758522, 0.012626717798411846, 0.025556864216923714, -0.01802634634077549, 0.014288673177361488, 0.014619684778153896, -0.0072408816777169704, 0.0009171783458441496, -0.01954348385334015, 0.023570792749524117, -0.031142687425017357, -0.006923662032932043, 0.031004764139652252, -0.02866009809076786, 0.02350183203816414, -0.012440524064004421, 0.031584035605192184, -0.017322946339845657, -0.01485415082424879, 0.01032342854887247, 0.007847736589610577, 0.04344528913497925, -0.0012456040130928159, 0.012633614242076874, -0.010068273171782494, -0.018109099939465523, -0.010233779437839985, 0.01626095175743103, 0.0033790781162679195, 0.02649473026394844, -0.05326530337333679, -0.009123510681092739, 0.01434384100139141, 0.01972278207540512, -0.015971316024661064, 0.025087930262088776, 0.018743539229035378, -0.04201090335845947, -0.017640165984630585, 0.020205507054924965, 0.037983596324920654, -0.03279774636030197, 0.016302326694130898, 0.007192608900368214, 0.0012533621629700065, 0.003430798649787903, 0.023722507059574127, -0.02467416599392891, -0.02677057310938835, -0.007323634345084429, -0.059526942670345306, -0.02992897666990757, 0.02921178564429283, -0.0032928769942373037, 0.003185987938195467, -0.01459209993481636, 0.021529553458094597, 0.02415006421506405, 0.016647132113575935, -0.025060346350073814, -0.005678920075297356, 0.006716779433190823, -0.025032762438058853, -0.032108139246702194, -0.036990560591220856, -0.03141852840781212, -0.04658989980816841, -0.0021757124923169613, -0.01586097851395607, -0.06918144971132278, -0.03177712485194206, 0.00272050267085433, -0.023970765992999077, -0.026811949908733368, -0.020633064210414886, 0.023239782080054283, 0.0702296569943428, 0.010550999082624912, -0.03067375347018242, 0.017860841006040573, -0.004858286585658789, -0.009406249970197678, -0.0008495105430483818, 0.020536519587039948, 0.001736087491735816, 0.016674716025590897, 0.02383284457027912, -0.002289497759193182, 0.00523412274196744, 0.0015343772247433662, 0.01433004904538393, -0.0012016415130347013, 0.023612169548869133, -0.045155517756938934, -0.0001294092071475461, -0.015143786557018757, 0.0019843464251607656, -0.014061102643609047, 0.023363910615444183, -0.0013240468688309193, -0.010282051749527454, -0.020826155319809914, -0.0074063874781131744, 0.025391357019543648, 0.04504517838358879, 0.007737399078905582, 0.006989174522459507, -0.0036376810166984797, 0.014688645489513874, 0.011550930328667164, 0.0039204200729727745, 0.022522589191794395, 0.03996966406702995, -0.018467696383595467, -0.031087517738342285, -0.031556449830532074, -0.009199367836117744, -0.0023205301258713007, 0.008606304414570332, -0.02133646421134472, -0.014702437445521355, 0.015750641003251076, -0.04501759633421898, -0.006192677654325962, -0.004127302672713995, 0.0018343566916882992, -0.00021119238226674497, -0.026853326708078384, 0.0268947035074234, 0.006602994166314602, -0.014950696378946304, 0.03045307844877243, 0.01061995979398489, 0.005196194630116224, 0.010268259793519974, -0.04024551063776016, 0.002289497759193182, -0.008571824058890343, 0.020205507054924965, 0.024991385638713837, -0.02485346421599388, -0.010571686550974846, 0.03017723560333252, -0.03448038920760155, 0.013040482997894287, -0.004620371852070093, -0.046645067632198334, -0.046451978385448456, -0.015295499935746193, 0.04352804273366928, 0.035169996321201324, -0.013516312465071678, 0.0035101035609841347, 0.04937591403722763, 0.03550100699067116, -0.011785396374762058, -0.011585410684347153, 0.002329150214791298, -0.03707331418991089, 0.02492242492735386, 0.018605617806315422, -0.0008964900625869632, -0.0053375642746686935, 0.009268328547477722, -0.006306462921202183, 0.013674922287464142, 0.0351148284971714, -0.0037790504284203053, -0.0216674767434597, 0.02779119275510311, -0.012116407975554466, 0.022577758878469467, -0.019405562430620193, -0.023446664214134216, 0.00391007587313652, 0.004499690607190132, 0.004558307118713856, 0.011895733885467052, 0.035694096237421036, -0.012281914241611958, 0.03094959631562233, 0.025060346350073814, 0.04510034620761871, 0.001250776113010943, -0.00014104634465184063, -0.014536931179463863, -0.002839460037648678, -0.005892698187381029, -0.014412802644073963, 0.0024463834706693888, -0.002508448204025626, -0.01113026961684227, 0.015529966913163662, -0.014467970468103886, 0.019157303497195244, 0.003384249983355403, 0.032328810542821884, 0.0032997732050716877, -0.0059547629207372665, 0.017736712470650673, 0.025584448128938675, -0.04672782123088837, -0.034397635608911514, 0.03944556415081024, 0.004351424984633923, 0.03889387845993042, -0.04454866051673889, 0.0117026437073946, 0.001277498435229063, -0.00913730263710022, -0.0029946216382086277, 0.01608165353536606, 0.00753741292282939, -0.007468452211469412, -0.0010275155073031783, -0.03555617481470108, 0.0020670993253588676, -0.01226122584193945, -0.01904696598649025, 0.029763471335172653, 0.03688022494316101, -0.018343565985560417, 0.02126750349998474, -0.028798019513487816, -0.004106614273041487, 0.011061308905482292, -0.0234052874147892, -0.01018550619482994, 0.0458175390958786, 0.011254399083554745, 0.04700366407632828, -0.013219781219959259, 0.02083994634449482, 0.022936353459954262, 0.012854288332164288, -0.016274742782115936, 0.012399147264659405, 0.04060410335659981, -0.01586097851395607, -0.015185163356363773, -0.018040139228105545, 0.0358596034348011, -0.015792017802596092, -0.04126612842082977, 0.06184402480721474, -0.0014654165133833885, 0.01510240975767374, 0.007130544167011976, 0.03304600343108177, -0.011888837441802025, 0.018605617806315422, 0.034149374812841415, 0.008923524059355259, 0.03395628556609154, 0.0385904498398304, -0.022867392748594284, -0.011675059795379639, -0.006661611143499613, 0.01892283745110035, 0.03351493552327156, 0.01653679460287094, 0.00990966334939003, -0.01743328385055065, 0.017143648117780685, -0.0021308879368007183, -0.008178748190402985, -0.009302808903157711, 0.02708779275417328, -0.0020188267808407545, -0.04990001767873764, 0.04421764984726906, 0.013619753532111645, 0.016798844560980797, 0.004710020963102579, 0.019915871322155, 0.010475141927599907, 0.002368802670389414, 0.042286746203899384, 0.018867667764425278, -0.015281707979738712, -0.00010037025640485808, -0.002756707137450576, -0.0037031937390565872, 0.019929664209485054, 0.003520447527989745, -0.028067035600543022, -0.0038859397172927856, -0.02479829452931881, -0.005978899076581001, -0.027101585641503334, -0.013357702642679214, 0.014647268690168858, 0.0013723194133490324, -0.015267916023731232, 0.021846773102879524, -0.02012275531888008, 0.03180471062660217, 0.016495417803525925, -0.02395697310566902, -0.013378391042351723, 0.018633201718330383, -0.00575132854282856, 0.0007215021178126335, -0.010861322283744812, 0.00313081918284297, 0.03448038920760155, 0.022081241011619568, -0.015116201713681221, 0.01638508029282093, -0.020826155319809914, -0.045403774827718735, 0.03842494264245033, -0.030618583783507347, 0.005675471853464842, -0.06620234251022339, 0.05494794622063637, 0.018536657094955444, -0.026922287419438362, 0.02791532129049301, -0.013626649044454098, 0.045955460518598557, 0.026177510619163513, -0.012109512463212013, -0.000669350556563586, -0.04041101410984993, 0.007254673633724451, 0.02943245880305767, -0.022315707057714462, -0.046948496252298355, -0.0017688438529148698, -0.01922626420855522, 0.008489071391522884, -0.005468589719384909, -0.03583201766014099, -0.009123510681092739, 0.026908494532108307, 0.008882148191332817, -0.009357977658510208, -0.0366043783724308, 0.0181780606508255, 0.026480937376618385, -0.041045453399419785, -0.002211916958913207, -0.03577684983611107, 0.027046415954828262, 0.015433421358466148, 0.009240743704140186, 0.0048617348074913025, -0.028494592756032944, -0.012764639221131802, -0.014357633888721466, 0.009944143705070019, 0.019088342785835266, 0.019309017807245255, 0.01728157140314579, -0.01297152228653431, -0.012606030330061913, -0.015129994601011276, -0.005554790608584881, 0.0395834855735302, -0.009316600859165192, -0.019088342785835266, -0.04956900700926781, 0.03552859276533127, 0.010785465128719807, 0.02723950706422329, 0.012406043708324432, 0.008275292813777924, -0.005654783453792334, -0.009489002637565136, 0.017488453537225723, 0.02056410349905491, 0.059747617691755295, -0.0008038240484893322, -0.021046828478574753, -0.039252474904060364, 0.026025796309113503, 0.004989312030375004, 0.02161230705678463, 0.03574926778674126, 0.005068616941571236, 0.012109512463212013, 0.012502588331699371, -0.0017533277859911323, 0.004099718295037746, 0.01086821872740984, 0.027956698089838028, 0.01765395887196064, -0.04192815348505974, -0.004510034807026386, 0.045872706919908524, 0.03525274991989136, -0.0268947035074234, -0.02330874279141426, -0.04198332130908966, 0.009068341925740242, 0.03230122849345207, 0.01799876242876053, -0.027432596310973167, -0.000753827509470284, 0.023294949904084206, 0.0197917427867651, 0.01510240975767374, -0.006899525877088308, 0.023391494527459145, 0.009268328547477722, 0.0024308674037456512, 0.001592131913639605, -0.018743539229035378, -0.033928703516721725, -0.02965313382446766, 0.013592168688774109, 0.012950833886861801, -0.002287773648276925, -0.01885387673974037, -0.0035101035609841347, -0.014674853533506393, 0.01895042136311531, 0.005761672742664814, 0.08247708529233932, 0.0021343359258025885, 0.00024136272259056568, -0.003727329894900322, 0.03552859276533127, -0.009992416016757488, -0.024494867771863937, 0.005847873631864786, 0.0007391733233816922, 0.004044549539685249, -0.041541971266269684, 0.061292339116334915, 0.045872706919908524, -0.000344588392181322, -0.017516037449240685, 0.004013517405837774, 0.0024584517814219, 0.020329637452960014, 0.022398460656404495, 0.011544033885002136, -0.0036238888278603554, -0.03321151062846184, -0.000644352228846401, -0.014233504422008991, 0.005427212920039892, -0.016095444560050964, 0.019764158874750137, -0.014150750823318958, -0.005820289719849825, 0.00882697943598032, -0.0028946285601705313, -0.020826155319809914, -0.0181780606508255, -9.212728764396161e-05, -0.0062995669431984425, -0.022398460656404495, -0.009240743704140186, -0.004796221852302551, 0.013302533887326717, 0.024370737373828888, -0.04176264628767967, -0.016426457092165947, -0.04476933553814888, 0.013261157087981701, 0.0093372892588377, -0.00024416425731033087, -0.008427007123827934, -0.016454041004180908, 0.011771604418754578, 0.002382594859227538, 0.021722644567489624, -0.01743328385055065, -0.08462866395711899, -0.020398598164319992, -0.0063754236325621605, 0.015654096379876137, -0.0050582727417349815, -0.0058030495420098305, -0.030287573114037514, -0.011730227619409561, 0.014440386556088924, 0.006182333454489708, -0.03983174264431, 0.0014050757745280862, -0.00651679327711463, 0.024881048128008842, 0.020798569545149803, -0.033432185649871826, -0.006571962032467127, 0.001444728230126202, -0.015185163356363773, -0.005272051319479942, 0.0186745785176754, 0.008571824058890343, -0.00928901694715023, 0.016219574958086014, 0.008199436590075493, 0.013461143709719181, -0.024687957018613815, -0.022619133815169334, -0.014150750823318958, 0.010675128549337387, 0.02235708385705948, 0.040273092687129974, -0.018536657094955444, -0.005730640608817339, 0.017571205273270607, -0.0008021000539883971, -0.004820358473807573, 0.03704572841525078, -0.014647268690168858, 0.0005297049647197127, 0.028467008844017982, 0.008171851746737957, 0.010351012460887432, -8.668585360283032e-05, -0.006413352210074663, -0.03856286779046059, 0.02965313382446766, -0.01043376512825489, 0.015474798157811165, -0.01613682135939598, -0.002286049770191312, 0.0071374401450157166, -0.01852286420762539, 0.0006784016150049865, 0.00626853434368968, 0.024936215952038765, -0.018040139228105545, 0.003189435927197337, -0.0015352392802014947, -0.012095720507204533, 0.006409903988242149, -0.02659127488732338, -0.009537274949252605, -0.008220124058425426, -0.019984832033514977, -0.02415006421506405, -0.02173643745481968, 0.003185987938195467, -0.03345976769924164, -0.01653679460287094, 0.000444797013187781, 0.013088755309581757, 0.0006615924648940563, 0.030784090980887413, -0.039252474904060364, 0.03395628556609154, 0.0063305990770459175, -2.3489765226258896e-05, 0.007054687477648258, -0.01653679460287094, 0.0121991615742445, -0.013392182998359203, -0.01066823210567236, -0.034149374812841415, 0.011109581217169762, -0.008675266057252884, 0.010785465128719807, -0.003727329894900322, -0.015405837446451187, -0.00958554819226265, -0.048741474747657776, -0.025956835597753525, -0.024963801726698875, -0.0009826910682022572, 0.0027756711933761835, -0.018040139228105545, -0.011068204417824745, 0.004375561140477657, -0.011026828549802303, 0.003437694627791643, -0.004723813384771347, 0.01273705530911684, 0.03094959631562233, 0.014978280290961266, 0.01355768833309412, -0.015571343712508678, 0.03528033196926117, -0.015405837446451187, -0.031611621379852295, 0.006158197298645973, -0.011971591040492058, -5.5815129599068314e-05, 0.023888012394309044, 0.016026483848690987, -0.007171920500695705, 0.029846223071217537, 0.014288673177361488, -0.0028601482044905424, -0.02485346421599388, -0.014481763355433941, 0.01914351060986519, 0.023074274882674217, -0.010482038371264935, -0.005585822742432356, 0.014688645489513874, 0.026177510619163513, -0.0368526391685009, -0.017364323139190674, 0.007523620501160622, -0.012440524064004421, -0.001699883141554892, -0.0045617553405463696, -0.012095720507204533, 0.0016490245470777154, 0.018881460651755333, -0.014467970468103886, 0.011812981218099594, -0.009751053526997566, 0.003434246638789773, -0.015433421358466148, 0.00825460534542799, -0.03293566778302193, -0.012288810685276985, -0.019157303497195244, 0.020826155319809914, 0.02736363559961319, 0.0005322910146787763, 0.01221295353025198, 0.03174954280257225, -0.025032762438058853, -0.003482519183307886, 3.41840714099817e-05, -0.0006296981009654701, -0.03017723560333252, -0.006485761143267155, -0.005558238364756107, -0.03379078209400177, 0.000518498825840652, 0.013647337444126606, 0.021970903500914574, 0.008089099079370499, 0.01994345709681511, 0.014978280290961266, -0.016771260648965836, 0.013916284777224064, 0.0039204200729727745, -0.0013309429632499814, -0.02343287132680416, 0.02562582492828369, 0.006699539255350828, 0.036466456949710846, -0.039280056953430176, -0.017916008830070496, -0.0006490933010354638, -0.0017067792359739542, 0.01535066869109869, 0.002753258915618062, -0.044658999890089035, 0.044383157044649124, -0.021170958876609802, -0.0033980421721935272, -0.033652856945991516, -0.009309704415500164, 0.0042307437397539616, -0.016067860648036003, -0.03274257481098175, 0.010923386551439762, -0.0353630855679512, 0.006434040609747171, -0.006189229432493448, 0.013123235665261745, 0.005630647297948599, -0.006320255342870951, 0.03348735347390175, -0.02081236243247986, -0.018936628475785255, -0.02841183915734291, -0.00833046156913042, -0.01919868029654026, -0.014702437445521355, 0.008123579435050488, -0.012061240151524544, 0.013730090111494064, -0.02634301595389843, -0.02965313382446766, -0.012978417798876762, 0.00466174865141511, -0.007592581678181887, -0.03707331418991089, -0.031887464225292206, 0.008447695523500443, 0.009130407124757767, 0.01653679460287094, 0.007433971855789423, -0.0011999175185337663, -0.025156890973448753, -0.007723607122898102, -0.008930420503020287, -0.014467970468103886, 0.022095032036304474, -0.01535066869109869, -0.028122205287218094, -0.0470588319003582, 0.006930558010935783, -0.0009189023403450847, -0.012150888331234455, 0.014785190112888813, 0.004799670074135065, -0.0017093652859330177, 0.042314331978559494, -0.007037447299808264, -0.020536519587039948, 0.06018896400928497, 0.006296118721365929, -0.015529966913163662, 0.0033687339164316654, -0.001956762047484517, -0.006140957120805979, 0.010806153528392315, -8.075953519437462e-05, 0.020798569545149803, 0.017474660649895668, 0.01459209993481636, 0.05351356416940689, -0.010309635661542416, 0.016550585627555847, 0.0038376671727746725, -0.04402456060051918, -0.021681267768144608, -0.010378596372902393, 0.009068341925740242, -0.014702437445521355, 0.0014955868246033788, 0.029018694534897804, -0.00989587139338255, -0.005982347298413515, -0.002413627225905657, -0.02497759275138378, 0.01663333922624588, -0.027529140934348106, 0.005261707119643688, -0.005754776764661074, 0.03445280343294144, 0.023667339235544205, -0.02148817852139473, -0.048051867634058, 0.026811949908733368, 0.0014490382745862007, -0.01150265708565712, 0.01063375174999237, 0.013874907977879047, -0.04534860700368881, 0.0009249364375136793, 0.020108962431550026, 0.0066305785439908504, -0.02315702848136425, -0.0117026437073946, 0.032604653388261795, -0.016440248116850853, -0.010054481215775013, 0.018633201718330383, -0.006085788365453482, -0.0036169926170259714, 0.0018119444139301777, -0.0011137165129184723, 0.012578445486724377, -0.009482107125222683, -0.012868081219494343, 0.014047309756278992, 0.009164887480437756, -0.012033655308187008, 0.02009516954421997, 0.00130853068549186, 0.03552859276533127, 0.012564653530716896, 0.002417075214907527, -0.024384530261158943, -0.00027002455317415297, 0.060023460537195206, 0.03630095347762108, -0.00533411605283618, -0.00800634641200304, 0.0012869804631918669, -0.027556726709008217, 0.008440799079835415, 0.004551411140710115, 0.014950696378946304, -0.016274742782115936, -0.021101998165249825, 0.039307642728090286, -0.00989587139338255, 0.024067310616374016, 0.014757606200873852, 0.03125302493572235, -0.01601269282400608, -0.00028554070740938187, 0.0002267085510538891, 0.009799325838685036, 0.01348183210939169, -0.03583201766014099, -0.00989587139338255, 0.014136958867311478, -0.01901938207447529, -0.05141715332865715, -0.010213091038167477, 0.010447558015584946, -0.024936215952038765, -0.005792705342173576, 0.026784365996718407, -0.03552859276533127, 0.003565272083505988, -0.026260264217853546, 0.014674853533506393, -0.01969519816339016, -0.0020912354812026024, -0.010475141927599907, 0.049734510481357574]], "input": ["# EL AL Airline and Pet Transportation\n\nThe community centers around EL AL, an airline with specific policies regarding baggage, pet transportation, and passenger services. Key entities include the Arrivals Hall, which facilitates pet retrieval, and various claims related to baggage policies and pet transport regulations. The relationships among these entities highlight the operational framework of EL AL in managing both passenger and pet travel.\n\n## EL AL's comprehensive baggage and pet transport policies\n\nEL AL has established detailed regulations concerning baggage and the transportation of pets, which are crucial for ensuring compliance and customer satisfaction. The airline's policies cover various aspects, including weight limits for pets, specific guidelines for transporting service animals, and the handling of valuable items. For instance, pets can be transported in the cabin if they meet weight restrictions, while larger animals must be checked as baggage or handled by the Cargo Division. This structured approach helps mitigate risks associated with baggage issues and ensures that passengers are well-informed about their responsibilities [Data: Entities (1), Claims (2, 3, 4, 5, 11); Relationships (10, 15, 20)]\n\n## The role of the Arrivals Hall in pet transportation\n\nThe Arrivals Hall at Ben Gurion Airport serves as a critical point for pet owners to retrieve their animals after travel. This designated area ensures that the process of reuniting with pets is organized and efficient, reflecting EL AL's commitment to customer service. The existence of a specific location for pet retrieval highlights the airline's focus on accommodating pet owners and managing the logistics of animal transport effectively [Data: Entities (11); Relationships (9)]\n\n## Claims regarding baggage measurements and weight limits\n\nEL AL has several claims related to baggage measurements and weight limits, emphasizing the airline's policies on transporting animals and the associated costs. For example, animals weighing up to 9 kg can be transported in the cabin for a fee, while larger animals incur higher costs and may require special handling. These claims are essential for passengers to understand the financial implications of traveling with pets and the airline's liability regarding baggage issues [Data: Claims (2, 3, 11); Relationships (8, 15)]\n\n## Additional fees and discounts for baggage handling\n\nEL AL implements additional handling fees and offers discounts for baggage checked through their service center. Passengers can benefit from a 50% discount on baggage fees if purchased online before their flight, which encourages early planning and can enhance customer satisfaction. These financial policies are crucial for managing passenger expectations and ensuring transparency in the airline's pricing structure [Data: Entities (353, 354); Relationships (41, 42, 38)]\n\n## The importance of safety and security regulations\n\nSafety and security regulations play a vital role in the transportation of animals on EL AL flights. The airline must adhere to these regulations to ensure the safety of all passengers and crew, particularly when transporting pets. Compliance with these regulations not only protects the animals but also enhances the overall travel experience for pet owners, reinforcing EL AL's reputation as a responsible airline [Data: Entities (108); Relationships (23)]", "# EL AL Cargo Division and Animal Transport\n\nThe community centers around EL AL's Cargo Division, which specializes in the transportation of animals, particularly pets. The division is responsible for ensuring compliance with transport regulations, including obtaining necessary authorizations and adhering to specific guidelines for animal transport.\n\n## EL AL's Cargo Division as a key player\n\nThe Cargo Division of EL AL is a crucial entity in this community, tasked with managing the transport of various types of cargo, including animals. This division ensures that all necessary documentation is provided for transporting animals, particularly pets, which requires adherence to strict regulations. The division's expertise in handling special requests for oversized or unaccompanied animals highlights its capability to manage complex transport needs effectively. [Data: Entities (12); Relationships (10)]\n\n## Importance of transport authorization\n\nTransport authorization from destination country authorities is a critical requirement for transporting pets. The Cargo Division mandates this authorization to ensure compliance with international transport regulations, which is essential for the safe and legal movement of animals across borders. Failure to obtain the necessary authorization could result in significant legal repercussions and impact the reputation of EL AL's Cargo Division. [Data: Entities (44); Relationships (116)]\n\n## Compliance with transport cage measurements\n\nThe Cargo Division requires specific measurements of transport cages to ensure the safety and compliance of animals during transport. This requirement is vital for preventing injuries and ensuring that animals are housed in appropriate conditions throughout their journey. The emphasis on cage measurements reflects the division's commitment to animal welfare and regulatory compliance, which is crucial for maintaining trust with customers. [Data: Entities (46); Relationships (118)]\n\n## Specialization in transporting animals\n\nThe Cargo Division specializes in transporting animals, including pets, which involves a detailed understanding of the unique requirements associated with animal transport. This specialization allows the division to provide tailored services that meet the needs of pet owners and ensure the safe transit of animals. The division's focus on animal transport underscores its role as a leader in this niche market, enhancing its reputation among customers seeking reliable transport solutions. [Data: Entities (51); Relationships (119)]", "# Travel Classes and Sporting Equipment Transport\n\nThis community focuses on the relationships between various travel classes, specifically Business Class and Premium Class, and their provisions for transporting sporting equipment. The entities are interconnected through specific baggage allowances and fees associated with transporting sports gear, highlighting the importance of these travel classes for athletes and sports enthusiasts.\n\n## Business Class offers superior baggage allowances\n\nBusiness Class provides enhanced baggage allowances compared to other travel classes, allowing passengers to check up to two pieces of baggage weighing up to 32 kg each. This is particularly beneficial for travelers with sporting equipment, as it accommodates larger and heavier items that are essential for athletes. The relationship between Business Class and sporting equipment transport is significant, as it enables a more accommodating experience for those needing to travel with sports gear. [Data: Entities (165); Relationships (37, 313)]\n\n## Premium Class provides additional services for sports equipment\n\nPremium Class also offers specific provisions for transporting sporting equipment, allowing passengers to check up to two pieces of baggage weighing up to 23 kg each. This class is designed for travelers who require enhanced services compared to Economy Class, making it a viable option for those carrying sports gear. The relationship between Premium Class and sporting equipment is crucial for understanding how different travel classes cater to the needs of sports enthusiasts. [Data: Entities (164); Relationships (36, 296)]\n\n## Sporting equipment transport regulations\n\nSporting equipment encompasses a variety of items that can be transported under specific conditions. The regulations for transporting these items vary by travel class, with Economy Class, Premium Class, and Business Class each having distinct size and weight restrictions. Understanding these regulations is essential for travelers to ensure compliance and avoid additional fees. The relationship between sporting equipment and the various travel classes highlights the importance of adhering to these guidelines. [Data: Entities (162); Relationships (295, 297, 296)]\n\n## Cargo services for oversized sporting equipment\n\nCARGO services provide specialized transport for sporting equipment that exceeds standard baggage limits. This is particularly important for athletes who may need to transport larger items, such as bicycles or skis, which cannot be accommodated within the regular baggage allowances. The relationship between CARGO and sporting equipment ensures that travelers have options for transporting their gear efficiently, especially when it surpasses the typical limits set by airlines. [Data: Entities (38); Relationships (155, 299)]\n\n## Fees associated with transporting sporting equipment\n\nThere are specific fees associated with transporting sporting equipment, such as the 150 USD fee for one-way transport to the Far East and North America. This fee structure is important for travelers to consider when planning their trips, as it can significantly impact the overall cost of travel. The relationship between sporting equipment and these fees underscores the financial considerations that athletes and sports enthusiasts must account for when traveling. [Data: Entities (181); Relationships (303)]", "# Economy Class and Lite Fares\n\nThe community focuses on Economy Class travel options, including Lite Fares, which offer basic services at lower costs. The entities are interconnected through baggage allowances and restrictions, particularly regarding sporting equipment.\n\n## Economy Class as a primary travel option\n\nEconomy Class is a widely utilized travel class that provides essential services at lower fares, making it accessible to a broad range of travelers. This class allows passengers to bring one carry-on bag weighing up to 8 kg, which is a significant consideration for budget-conscious travelers. The structure of Economy Class is designed to cater to those seeking affordable travel options while still offering standard services, thus playing a crucial role in the airline industry. [Data: Entities (163)]\n\n## Lite Fares and their limitations\n\nLite Fares represent a specific subset of Economy Class fares that come with notable restrictions, particularly regarding the transport of sporting equipment. These fares do not allow for the complimentary transport of sports gear, which can be a disadvantage for travelers who wish to bring such items. The limitations associated with Lite Fares make them a more basic option, appealing primarily to those prioritizing cost over additional services. [Data: Entities (175), Relationships (307)]\n\n## Baggage allowances in Economy Class\n\nEconomy Class passengers are entitled to specific carry-on baggage allowances, which are essential for travelers to understand when planning their trips. The allowance of one carry-on bag weighing up to 8 kg is a standard feature that helps manage passenger expectations and compliance with airline policies. This baggage policy is crucial for ensuring a smooth travel experience and minimizing potential disputes at check-in. [Data: Relationships (308)]\n\n## Transport of sporting equipment in Economy Class\n\nEconomy Class permits the transport of sporting equipment under specific conditions, which is an important aspect for travelers who engage in sports. The allowance is subject to size and weight restrictions, ensuring that passengers can bring their gear while adhering to airline regulations. This policy enhances the appeal of Economy Class for active travelers, although it is important to note that Lite Fares do not include this benefit. [Data: Relationships (295)]\n\n## Weight limits for sports equipment\n\nThe maximum weight limit for sports equipment in Economy Class is set at 30 kg, which is a critical factor for travelers planning to bring such items. This weight category indicates the relationship between the travel class and the specific allowances for sporting gear, ensuring that passengers are aware of the limitations they must adhere to. Understanding these limits is essential for avoiding additional fees or complications during travel. [Data: Relationships (306)]", "# Weight Regulations in Air Travel\n\nThis community focuses on the regulations surrounding weight limits for baggage and sporting equipment in air travel. The entities are interconnected through their implications on transportation logistics, particularly concerning the maximum allowable weights for different travel classes.\n\n## Weight as a critical factor in transportation logistics\n\nWeight is a significant consideration in the logistics of transporting both animals and personal belongings. It influences whether pets can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation. Additionally, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. This multifaceted role of weight in transportation logistics underscores its importance in the community. [Data: Entities (35); Relationships (143, 144, 145)]\n\n## 30 KG limit for Economy Class\n\nThe entity '30 KG' refers to the maximum weight limit for sports equipment allowed in Economy Class. This limit is crucial for passengers as it directly impacts their ability to transport sporting equipment without incurring additional fees. The relationship between this weight limit and the Economy Class indicates a structured approach to managing baggage allowances, which is essential for both airlines and travelers. [Data: Entities (172); Relationships (306, 144)]\n\n## 32 KG limit for Business Class\n\nThe entity '32 KG' refers to the maximum weight limit applicable in Business Class for checked baggage and sports equipment. This higher limit compared to Economy Class reflects the different service levels and expectations associated with Business Class travel. Understanding this distinction is vital for passengers who may need to transport heavier items, as it can influence their choice of travel class. [Data: Entities (171); Relationships (313, 145)]\n\n## Impact of weight on carry-on baggage eligibility\n\nWeight is a crucial factor in determining the eligibility of carry-on baggage. The weight limits set by airlines play an essential role in assessing whether carry-on items meet the requirements for boarding. This relationship highlights the importance of weight regulations in ensuring compliance with airline policies, which can affect the travel experience of passengers. [Data: Relationships (146)]\n\n## Weight restrictions on sporting equipment\n\nWeight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. The established weight limits for sporting equipment in different travel classes serve as key restrictions that determine whether items can be transported without incurring additional costs. This aspect is particularly relevant for athletes and travelers who engage in sports activities. [Data: Relationships (143)]", "# Checked Luggage and Baggage Conveyor Belt\n\nThe community centers around the concepts of checked luggage and the baggage conveyor belt, which are integral to the air travel experience. The relationship between these entities highlights the process of luggage handling at airports, emphasizing their distinct roles in passenger travel.\n\n## Distinct roles of checked luggage and carry-on baggage\n\nChecked luggage and carry-on baggage serve different purposes for air travelers, with checked luggage designed for larger items that cannot fit in the cabin. This distinction is crucial for understanding passenger needs and the logistics of air travel. The relationship between these two types of luggage indicates that while they both cater to the same demographic, they fulfill different requirements and restrictions regarding size and accessibility. This differentiation is essential for airlines and airports in managing passenger expectations and operational efficiency. [Data: Relationships (370)]\n\n## Baggage conveyor belt as a retrieval point\n\nThe baggage conveyor belt is a critical component of the luggage retrieval process at airports, where checked luggage is collected after a flight. This entity plays a vital role in the passenger experience, as it directly impacts the efficiency and satisfaction of travelers upon arrival. Delays or issues with the baggage conveyor belt can lead to significant frustration among passengers, highlighting the importance of this system in airport operations. Understanding the relationship between the baggage conveyor belt and checked luggage is essential for improving service delivery in air travel. [Data: Entities (275), Relationships (378)]", "# Carry-On Baggage and Airline Policies\n\nThe community focuses on the regulations and policies surrounding carry-on baggage in air travel, particularly as they relate to various airlines and passenger classes. Key entities include airlines like Sun Dor and EL AL, as well as concepts like personal bags and booking management, which are interconnected through specific baggage policies.\n\n## Importance of Carry-On Baggage Policies\n\nCarry-on baggage policies are essential for regulating what passengers can bring into the cabin of an aircraft. These policies help maintain safety and order during flights, as they dictate the size, weight, and number of items allowed. Airlines like EL AL and Sun Dor have specific guidelines that passengers must adhere to, which can vary significantly between carriers. This variability can lead to confusion among travelers, making it crucial for airlines to communicate their policies clearly. [Data: Relationships (29, 368, 375)]\n\n## Role of Passenger Classes in Baggage Allowances\n\nDifferent passenger classes, such as Economy, Business, and Premium, have distinct carry-on baggage allowances. For instance, Economy Class passengers are entitled to specific allowances that differ from those in Business or Premium classes. This tiered approach to baggage policies can affect passenger satisfaction and operational efficiency, as airlines must manage varying expectations and compliance levels among different classes. [Data: Relationships (308, 314, 312)]\n\n## Impact of Frequent Flyer Programs\n\nMembership in frequent flyer programs, such as the Matmid Frequent Flyer Club, can significantly influence a passenger's carry-on baggage privileges. Members may enjoy enhanced allowances or exemptions from certain restrictions, which can incentivize loyalty to an airline. This dynamic creates a competitive landscape where airlines must balance the benefits offered to frequent flyers with the need to maintain standard policies for all passengers. [Data: Relationships (369)]\n\n## Connection Between Carry-On and Checked Luggage\n\nCarry-on baggage and checked luggage serve different purposes for air travelers. While carry-on items are intended for easy access during the flight, checked luggage is designed for larger items that cannot fit in the cabin. Understanding the distinctions between these two types of luggage is vital for passengers to ensure compliance with airline policies and to optimize their travel experience. [Data: Relationships (370)]\n\n## Significance of Booking Management Systems\n\nBooking management systems play a crucial role in informing passengers about their carry-on baggage allowances and policies. These systems enable travelers to manage their bookings effectively while ensuring they are aware of the specific regulations governing their carry-on items. This functionality is essential for a smooth travel experience, as it helps prevent misunderstandings and potential conflicts at the airport. [Data: Relationships (373)]\n\n## Regulatory Framework for North America\n\nCarry-on baggage policies are particularly relevant for flights to and from North America, where specific regulations dictate the size, weight, and number of carry-on items allowed. Airlines operating in this region must ensure that their policies align with these regulations to avoid compliance issues and enhance passenger safety. This regional focus highlights the importance of understanding local regulations in the global airline industry. [Data: Relationships (375)]\n\n## Maximum Dimensions for Carry-On Items\n\nMaximum dimensions for carry-on bags are critical for determining what items passengers can bring on board. These specifications help airlines manage cabin space effectively and ensure that all passengers can store their belongings safely. Clear communication of these dimensions is essential for compliance and to minimize delays during boarding. [Data: Relationships (376)]", "# Delayed Baggage and Baggage Reporting\n\nThe community focuses on the processes and entities involved in managing delayed baggage at airports, specifically highlighting the roles of the Delayed Baggage and Baggage Report. The Baggage Service Center is crucial in facilitating the reporting and retrieval of delayed items.\n\n## Role of Delayed Baggage in passenger experience\n\nDelayed baggage refers to personal belongings that have not arrived with the passenger upon landing, which can significantly affect the travel experience. Passengers must report delayed baggage immediately to ensure that the airline can assist in locating and returning the items. The timely reporting of delayed baggage is essential for minimizing inconvenience and ensuring customer satisfaction. [Data: Entities (115)]\n\n## Baggage Report issuance process\n\nA baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area. This report serves as an official document that initiates the process of locating and returning the delayed items to the passenger. The issuance of a baggage report is a critical step in the management of delayed baggage, as it formalizes the claim and allows the airline to track the status of the missing items. [Data: Entities (120)]\n\n## Baggage Service Center's responsibilities\n\nThe Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance. This center plays a vital role in coordinating the efforts to locate and return delayed items, making it a key entity in the community. [Data: Relationships (223)]\n\n## Connection between Delayed Baggage and Baggage Report\n\nThere is a direct relationship between Delayed Baggage and Baggage Report, as a baggage report is issued specifically for delayed baggage at the airport. This connection highlights the procedural aspect of handling delayed items, where the report serves as a formal mechanism for addressing the issue. Understanding this relationship is crucial for improving the efficiency of baggage handling processes. [Data: Relationships (249)]", "# Baggage Service Community\n\nThe Baggage Service Community is centered around the Baggage Service Center, which manages various aspects of baggage handling, including delayed and damaged baggage, forgotten items, and the claims process. The community's entities are interconnected, with the Baggage Service Center serving as the primary hub for assistance and coordination among various processes and departments.\n\n## Central role of the Baggage Service Center\n\nThe Baggage Service Center is the focal point of the community, responsible for managing issues related to baggage, including delays, damages, and forgotten items. This center plays a crucial role in ensuring that travelers receive timely assistance and support for their baggage-related concerns. The effectiveness of the Baggage Service Center directly impacts passenger experiences and the overall reputation of the airline or travel service involved. [Data: Entities (113), Relationships (223, 228, 227, 225, 226, +more)]\n\n## Importance of contact details for assistance\n\nThe contact details associated with the Baggage Service Center are essential for travelers seeking help with baggage issues. These details provide necessary information, such as phone numbers and chat options, enabling passengers to report problems efficiently. The availability and clarity of these contact details can significantly influence the speed and effectiveness of the response to baggage-related concerns. [Data: Entities (118), Relationships (233)]\n\n## Baggage claims process as a critical function\n\nThe baggage claims process is a vital function within the community, allowing passengers to report and seek compensation for lost or damaged baggage. The Baggage Service Center facilitates this process, ensuring that travelers can navigate the claims efficiently. A well-structured claims process is essential for maintaining customer trust and satisfaction, especially in the travel industry where baggage issues are common. [Data: Entities (123, 127), Relationships (228, 231)]\n\n## Handling of delayed baggage\n\nDelayed baggage is a frequent issue faced by travelers, and the Baggage Service Center is responsible for managing reports related to this problem. The center's ability to address delayed baggage effectively can mitigate passenger frustration and enhance their travel experience. This aspect of baggage handling is critical, as it directly affects the perception of the airline's reliability and customer service. [Data: Entities (122), Relationships (223, 227)]\n\n## Support for damaged baggage claims\n\nThe Baggage Service Center also plays a significant role in assisting travelers with claims related to damaged baggage. By effectively managing these claims, the center ensures that passengers receive the necessary support and compensation for their losses. This function is crucial for maintaining a positive relationship with customers and upholding the airline's reputation in the face of baggage mishaps. [Data: Entities (128), Relationships (225)]\n\n## Recovery of forgotten items\n\nThe Baggage Service Center is dedicated to helping passengers recover items that have been forgotten on board aircraft. This service is essential for enhancing customer satisfaction, as forgotten items can often hold significant personal value. The center's efficiency in managing these cases reflects its commitment to passenger care and can influence travelers' future choices regarding airlines. [Data: Entities (121), Relationships (226)]\n\n## Coordination with the Claims Department\n\nThe Baggage Service Center coordinates closely with the Claims Department to process claims related to baggage issues. This collaboration is vital for ensuring that claims are handled promptly and accurately, which is essential for maintaining passenger trust. The effectiveness of this coordination can significantly impact the overall efficiency of the baggage claims process. [Data: Entities (202), Relationships (232)]", "# EL AL Airline and Pet Transportation Community\n\nThe community centers around EL AL, an airline with specific policies and regulations regarding the transportation of pets and baggage. Key entities include the Cargo Division, Arrivals Hall, and various baggage policies that govern how pets and valuable items are handled during air travel. The relationships among these entities highlight the airline's commitment to compliance and customer service in pet transportation.\n\n## EL AL's comprehensive pet transportation policies\n\nEL AL has established detailed policies for transporting pets, including specific weight limits and conditions for cabin transport. Only certain pets, such as dogs, cats, and exotic birds, can be transported in the cabin, provided their combined weight with the cage does not exceed 9 kg. For larger animals, EL AL requires them to be transported as checked baggage or through the Cargo Division, which manages special requests and documentation for oversized or unaccompanied animals. This structured approach ensures that pet owners are well-informed about the requirements and limitations of traveling with their pets [Data: Entities (1, 12); Claims (3, 4, 5); Relationships (7, 10, 14)].\n\n## Role of the Cargo Division in pet transportation\n\nThe Cargo Division of EL AL plays a crucial role in managing the transport of pets, particularly those that are extra-large or flying unaccompanied. This division is responsible for ensuring that all necessary documentation is provided, including health certificates and transport authorizations. The Cargo Division's expertise in handling special requests for oversized items further emphasizes its importance in the safe and compliant transport of animals. This division's operations are vital for maintaining the airline's reputation and ensuring customer satisfaction [Data: Entities (12); Relationships (10, 114, 115, 116)].\n\n## Arrivals Hall as a key location for pet owners\n\nThe Arrivals Hall at Ben Gurion Airport serves as the designated area where pet owners can retrieve their animals after transportation as checked baggage. This facility is essential for ensuring a smooth transition for pet owners reuniting with their pets, highlighting the importance of customer service in the airline's operations. The effective management of this area can significantly impact customer satisfaction and the overall perception of EL AL's pet transportation services [Data: Entities (11); Relationships (19, 9)].\n\n## Baggage policies and their implications\n\nEL AL has specific baggage policies that dictate the rules for checked baggage, including weight limits and fees. Passengers are allowed a maximum of five pieces of checked baggage, with additional pieces requiring prior arrangements with the Cargo Division. The airline's policies also state that it is not responsible for valuable items or liquids confiscated at the airport, which can lead to customer dissatisfaction if not properly communicated. These policies are crucial for managing expectations and ensuring compliance with regulations [Data: Entities (1, 197); Claims (47, 43); Relationships (24, 44)].\n\n## Legal compliance and regulatory oversight\n\nEL AL must comply with various regulations regarding the transport of pets, including those set by the Ministry of Agriculture and the CDC for transporting dogs to the US. This compliance is essential for maintaining the airline's operational integrity and avoiding legal issues. The relationship with regulatory bodies ensures that EL AL adheres to safety and security regulations, which is critical for the safe transport of animals and the protection of passengers [Data: Entities (1); Relationships (0, 16)].", "# EL AL Airline and Dangerous Dog Regulations\n\nThis community focuses on the regulations surrounding the transportation of dangerous dogs by EL AL airline, highlighting the legal framework and the airline's compliance with these regulations. The relationship between dangerous dogs and luggage compartments is also significant in understanding the transportation policies.\n\n## EL AL's strict policy on dangerous dogs\n\nEL AL has implemented a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy reflects the airline's commitment to safety and compliance with legal regulations. By ensuring that dangerous dogs are not allowed on their flights, EL AL mitigates potential risks associated with these animals, which could pose a threat to passengers and crew. The airline's adherence to the Israeli Law for the Regulation of Dog Supervision is crucial in maintaining safety standards and avoiding legal repercussions. [Data: Entities (3); Relationships (6)]\n\n## Legal framework governing dangerous dogs\n\nThe classification of dangerous dogs is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported. This legal framework is essential for understanding the restrictions placed on the transportation of certain dog breeds, particularly in the context of air travel. The law aims to protect public safety by preventing potentially aggressive dogs from being transported in environments where they could cause harm. This legal backing reinforces the policies adopted by airlines like EL AL, ensuring that they operate within the bounds of the law. [Data: Entities (3)]\n\n## Restrictions on luggage compartments\n\nDangerous dogs are explicitly prohibited from being transported in the luggage compartment during flights. This restriction is significant as it highlights the airline's efforts to ensure that these animals are not placed in confined spaces where they could become agitated or pose a risk to other animals and personnel. The policy reflects a broader commitment to animal welfare and safety, ensuring that dangerous dogs are not subjected to stressful conditions that could lead to incidents during transport. [Data: Entities (21); Relationships (68)]\n\n## Impact of dangerous dog regulations on air travel\n\nThe regulations surrounding dangerous dogs have a considerable impact on air travel, particularly for pet owners and airlines. These regulations necessitate clear communication between airlines and passengers regarding what constitutes a dangerous dog and the associated transportation policies. Failure to comply with these regulations could result in legal issues for airlines and safety risks for passengers. Therefore, understanding these regulations is crucial for both airlines and travelers to ensure compliance and safety during air travel. [Data: Entities (3, 21); Relationships (6, 68)]", "# Hazardous Materials and EL AL Travel Regulations\n\nThis community focuses on the regulations surrounding the transportation of hazardous materials, particularly dry ice, on EL AL flights. The key entities include hazardous materials, the Declaration Form required for travel, and dry ice, which is classified as a hazardous material.\n\n## Regulatory requirements for hazardous materials\n\nEL AL has specific regulations regarding the transportation of hazardous materials, which necessitate advance notice and the completion of a Declaration Form. This requirement is crucial for ensuring safety during air travel, as hazardous materials can pose significant risks if not handled properly. The relationship between EL AL and hazardous materials highlights the airline's commitment to safety and compliance with aviation regulations. [Data: Entities (421), Relationships (49)]\n\n## Importance of the Declaration Form\n\nThe Declaration Form is a critical document required for traveling with hazardous materials on EL AL flights. This form serves as a formal declaration of the materials being transported, ensuring that the airline is aware of any potential hazards. The relationship between hazardous materials and the Declaration Form underscores the importance of proper documentation in mitigating risks associated with air travel. [Data: Entities (422), Relationships (450)]\n\n## Classification of dry ice as a hazardous material\n\nDry ice is classified as a hazardous material that requires special handling during air travel. This classification is significant because it necessitates adherence to specific regulations to prevent accidents or incidents related to its transportation. The relationship between dry ice and hazardous materials emphasizes the need for awareness and compliance when transporting such items. [Data: Entities (423), Relationships (451)]\n\n## Potential risks of mishandling hazardous materials\n\nThe mishandling of hazardous materials, including dry ice, can lead to serious safety concerns during air travel. These risks include potential leaks, chemical reactions, or other hazardous situations that could endanger passengers and crew. The community's focus on regulations and documentation is essential for minimizing these risks and ensuring safe travel practices. [Data: Entities (421, 423), Relationships (49, 451)]", "# Pet Transportation in EL AL Cabin\n\nThe community focuses on the transportation of pets in the cabin of EL AL flights, governed by specific weight restrictions. The key entities include the cabin itself and the weight limit of 9 kilograms for pets, which are interrelated through the airline's policies.\n\n## EL AL's pet transportation policy\n\nEL AL allows pets to be transported in the cabin under specific conditions, which is crucial for pet owners planning to travel. This policy indicates that the airline recognizes the importance of accommodating pets, which can enhance customer satisfaction and loyalty. However, the specific conditions that must be met, such as the weight limit, can also create challenges for pet owners who may not be aware of these restrictions. [Data: Relationships (13)]\n\n## Weight limit for pets in the cabin\n\nThe weight limit of 9 kilograms for pets transported in the cabin is a significant factor that affects how pets can be transported. This limit includes both the pet and its cage, which means that owners must carefully consider the total weight when preparing for travel. The restriction does not apply to service dogs, which highlights the airline's commitment to accommodating individuals with disabilities. This distinction is important for understanding the broader implications of the weight policy. [Data: Entities (7), Relationships (71, 111)]\n\n## Impact on pet owners\n\nThe policies regarding pet transportation in the cabin can significantly impact pet owners' travel plans. Owners must ensure that their pets meet the weight requirements, which may limit their choices of pets or necessitate additional arrangements for travel. This can lead to frustration or confusion among travelers who may not be fully informed about the airline's policies. [Data: Relationships (71)]\n\n## Exemptions for service dogs\n\nThe exemption of service dogs from the 9-kilogram weight limit is a critical aspect of EL AL's pet transportation policy. This provision ensures that individuals who rely on service animals can travel without the same restrictions as other pet owners. It reflects a broader commitment to accessibility and support for individuals with disabilities, which can enhance the airline's reputation among these travelers. [Data: Entities (7)]", "# Pet Transportation Regulations and Entities\n\nThe community focuses on the transportation of pets, particularly dogs and exotic birds, highlighting the regulations and requirements set by various entities, including airlines and the United States government. Key relationships among these entities illustrate the complexities involved in pet travel.\n\n## Regulatory framework for pet transportation\n\nThe transportation of pets, especially dogs, is governed by specific regulations established by the United States and various airlines. These regulations are crucial for ensuring the safe and compliant travel of pets. For instance, the CDC outlines specific requirements for transporting dogs to the US, which must be adhered to by pet owners and airlines alike. Non-compliance with these regulations can lead to significant issues, including fines or the denial of entry for pets. [Data: Entities (52), Relationships (181)]\n\n## Role of EL AL in pet transportation\n\nEL AL has established specific policies for transporting pets, which include weight limits and documentation requirements. The airline's policies are designed to ensure that pets are transported safely and in compliance with regulations. This includes offering services for transporting pets as cargo and requiring specific documentation at check-in. The relationship between EL AL and the broader pet transportation community highlights the importance of airline policies in facilitating pet travel. [Data: Entities (24), Relationships (14)]\n\n## Special regulations for dogs\n\nDogs are classified as pets that require special regulations for transportation, which are more stringent compared to other types of pets. The relationship between dogs and the regulations set forth by the US government indicates the heightened scrutiny and requirements for their travel. This includes specific documentation and adherence to weight limits, which are critical for ensuring compliance and the safety of the animals during transit. [Data: Entities (47), Relationships (134, 181)]\n\n## Importance of documents and authorizations\n\nDocuments and authorizations are essential for transporting pets, as they must be presented at check-in to ensure compliance with regulations. This requirement underscores the administrative burden placed on pet owners and the importance of proper documentation in facilitating smooth travel. The relationship between documents and the broader pet transportation framework highlights the critical role of paperwork in ensuring that pets can travel without issues. [Data: Entities (50), Relationships (135)]\n\n## Exotic birds as a unique category\n\nExotic birds are classified as pets that can be transported under specific conditions, which differ from those for dogs. This distinction is important as it reflects the varying regulations that apply to different types of pets. The relationship between exotic birds and the general category of pets indicates the need for tailored regulations that address the unique needs and risks associated with transporting these animals. [Data: Entities (17), Relationships (129)]\n\n## Airport facilities and additional charges\n\nAirport facilities may impose additional charges for inspecting and releasing pets, particularly dogs. This aspect of pet transportation adds another layer of complexity and potential cost for pet owners. Understanding the financial implications of these charges is crucial for pet owners planning to travel with their animals, as it can significantly affect the overall cost of travel. [Data: Entities (49), Relationships (182)]", "# Battery-Powered Mobility Aids and IATA Regulations\n\nThis community focuses on battery-powered mobility aids and their compliance with IATA regulations for air travel. Key entities include battery-powered mobility aids, battery-powered devices, IATA regulations, and flight-approved batteries, all interconnected through specific safety and compliance requirements for air travel.\n\n## Compliance with IATA regulations is essential\n\nBattery-powered mobility aids must comply with IATA regulations to ensure safe transport on flights. These regulations provide guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel. Non-compliance could lead to safety hazards and travel disruptions, affecting many individuals who rely on these aids for mobility. [Data: Entities (410); Relationships (444)]\n\n## EL AL's specific regulations for battery-powered devices\n\nEL AL has established specific regulations for traveling with battery-powered devices, ensuring they are safe for transport on their flights. This highlights the airline's commitment to safety and compliance, which is crucial for passengers who depend on these devices. The relationship between EL AL and battery-powered devices emphasizes the importance of adhering to airline-specific guidelines to avoid potential issues during travel. [Data: Entities (409); Relationships (47)]\n\n## Battery-powered mobility aids require flight-approved batteries\n\nBattery-powered mobility aids must utilize flight-approved batteries to be transported on EL AL flights. This requirement underscores the importance of using compliant equipment to ensure safety during air travel. The relationship between battery-powered mobility aids and flight-approved batteries illustrates the critical nature of adhering to safety standards, which can significantly impact the travel experience for users of these aids. [Data: Entities (419, 420); Relationships (449)]\n\n## Interconnectedness of battery-powered devices and IATA regulations\n\nBattery-powered devices are required to comply with IATA regulations for safe transport on flights. This interconnectedness highlights the broader implications of safety regulations that govern various types of battery-powered equipment, ensuring that all devices meet the necessary safety standards to prevent accidents or malfunctions during air travel. [Data: Entities (409); Relationships (443)]\n\n## Potential impact on travelers with mobility needs\n\nThe regulations surrounding battery-powered mobility aids and devices have a significant impact on travelers with mobility needs. Ensuring compliance with IATA regulations and airline-specific guidelines is crucial for these individuals to travel safely and without disruption. The community's focus on these regulations reflects the importance of accessibility and safety in air travel for those who rely on mobility aids. [Data: Entities (419, 410); Relationships (444, 443)]", "# EL AL and Fragile Item Transport\n\nThe community focuses on the transport of fragile items, highlighting the relationship between EL AL, fragile items, and special travel insurance. EL AL does not assume responsibility for fragile items, which necessitates the recommendation of special travel insurance for passengers.\n\n## EL AL's liability regarding fragile items\n\nEL AL explicitly states that it does not bear responsibility for fragile items transported by the airline. This lack of liability places the onus on passengers to ensure that their fragile items are adequately protected during transit. The airline's policy could lead to significant financial losses for passengers if their fragile items are damaged, emphasizing the importance of understanding this liability when shipping delicate goods. [Data: Entities (196); Relationships (25)]\n\n## Importance of special travel insurance\n\nSpecial travel insurance is recommended for passengers transporting fragile or valuable items. This insurance serves as a safeguard against potential damages that could occur during transport, providing financial protection for the insured items. The relationship between fragile items and special travel insurance highlights the necessity for passengers to consider additional coverage when traveling with delicate goods, as the standard airline policies may not offer sufficient protection. [Data: Entities (198); Relationships (338)]\n\n## Connection between fragile and valuable items\n\nThere is a notable connection between fragile items and valuable items in the context of special travel insurance. Both categories of items are susceptible to damage during transport, and the recommendation for special insurance applies to both. This relationship underscores the broader implications for passengers who may be transporting items that are not only fragile but also hold significant monetary value, necessitating careful consideration of their insurance options. [Data: Relationships (338, 339)]"], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/cache/text_embedding/embedding-f75270ea610d111da1fccb24eff1257a b/cache/text_embedding/embedding-f75270ea610d111da1fccb24eff1257a deleted file mode 100644 index 3c565ac4397aa104d1c6f6635bb6987210e76b50..0000000000000000000000000000000000000000 --- a/cache/text_embedding/embedding-f75270ea610d111da1fccb24eff1257a +++ /dev/null @@ -1 +0,0 @@ -{"result": [[0.03979475423693657, 0.010241804644465446, -0.021690554916858673, -0.007712963502854109, 0.00304035609588027, 0.018598472699522972, 0.01844904199242592, 0.01086826715618372, 0.03551871329545975, -0.01131656114012003, -0.008115279488265514, 0.029587434604763985, -0.030116191133856773, 0.0006300548557192087, -0.038093533366918564, 0.00894289929419756, 0.05637015402317047, -0.008701510727405548, -0.011920034885406494, 0.023794090375304222, 0.018851356580853462, 0.02313889190554619, 0.052645862102508545, -0.01758693717420101, -0.015322474762797356, 0.031725455075502396, 0.0600944459438324, 0.06929022818803787, 0.058347247540950775, -0.024391816928982735, 0.030070213600993156, -0.04002464935183525, 0.026437878608703613, -0.031219685450196266, 0.07002589106559753, -0.023299816995859146, -0.04027753323316574, 0.014874179847538471, 0.029196614399552345, -0.004117987118661404, 0.042369574308395386, -0.02519644796848297, -0.02381707914173603, -0.03321976959705353, -0.050117023289203644, 0.004232934210449457, -0.03535778820514679, -0.04446161538362503, -0.0674050971865654, 0.046162836253643036, 0.002270209137350321, 0.00029437284683808684, -0.005517470184713602, 0.0006437048432417214, 0.007276163902133703, -0.000227020907914266, -0.04473748803138733, 0.0224721971899271, 0.03864528238773346, 0.03956485912203789, -0.043886877596378326, -0.021977923810482025, -0.04218565672636032, 0.05361142009496689, 0.010690098628401756, -0.01969047263264656, 0.030621960759162903, 0.010897004045546055, -0.09393493086099625, -0.0007780495216138661, 0.006241638213396072, -0.006471532862633467, 0.05103660002350807, -0.06832467019557953, -0.01831110380589962, 0.008557826280593872, -0.013253423385322094, 0.016839779913425446, -0.005965764634311199, 0.0036438293755054474, -0.0024512510281056166, -0.004227187018841505, 0.0023248090874403715, -0.0034943977370858192, -0.051358453929424286, 0.004166839644312859, -0.011655655689537525, -0.003744408255442977, -0.010644120164215565, 0.025012532249093056, -0.00543413357809186, 0.003347839927300811, 0.033012863248586655, 0.015667317435145378, -0.002954145660623908, -0.0006117351585999131, 0.01982840895652771, -0.005664028227329254, -0.06988795846700668, 0.03938094526529312, -0.0033938188571482897, -0.04540418088436127, -0.02940351888537407, -0.07489965856075287, 0.06662345677614212, -0.017035190016031265, -0.09172794222831726, -0.0029512718319892883, -0.05273782089352608, -0.004652491770684719, -0.011287824250757694, -0.02712756209075451, 0.011707382276654243, 0.04243854060769081, -0.014184496365487576, 0.010908498428761959, 0.013264917768537998, 0.0006232298910617828, -0.017448998987674713, 0.03459913656115532, 0.02519644796848297, 0.0064945220947265625, -0.03308183327317238, -0.06014042720198631, -0.0036007240414619446, 0.028943728655576706, -0.012345340102910995, -0.05333554744720459, -0.04151896387338638, -0.02735745720565319, 0.04165690019726753, -0.028047140687704086, 0.001276633469387889, -0.050622791051864624, 0.007241679821163416, -0.036806125193834305, -0.035035938024520874, -0.042898330837488174, -0.004250176250934601, -0.02687467820942402, -0.02252967096865177, -0.003942692186683416, 0.046323761343955994, 0.01183957140892744, -0.056048303842544556, -0.03305884450674057, -0.00994294136762619, 0.010523425415158272, -0.0029024193063378334, 0.020069798454642296, -0.006408311892300844, -0.07131330668926239, -0.019219188019633293, -0.005224354565143585, -0.013092497363686562, -0.025150468572974205, -0.0021610092371702194, 0.019552534446120262, 0.05908291041851044, 0.0005014576017856598, -0.03243812918663025, -0.03232318162918091, 0.01685127429664135, 0.0019124356331303716, 0.02611602656543255, -0.05374935641884804, -0.02926558256149292, 0.022759564220905304, -0.04901352897286415, -0.033265747129917145, -0.005310565233230591, -0.03381749615073204, -0.04030052199959755, 0.03685210272669792, 0.0002846741699613631, 0.038714248687028885, 0.006241638213396072, 0.0103912353515625, -0.014701759442687035, -0.04115113243460655, 0.028575899079442024, -0.039725784212350845, -0.022483691573143005, -0.035035938024520874, 0.01918470486998558, 0.03092082217335701, -0.012264876626431942, 0.034139346331357956, 0.022989459335803986, -0.003043229691684246, 0.0056496597826480865, -0.020621545612812042, 0.014874179847538471, 0.04131205752491951, 0.03496696799993515, -0.002350672148168087, -0.022058386355638504, 0.006707174703478813, 0.022644618526101112, 0.004413976334035397, 0.015230516903102398, -0.03494397923350334, 0.03699003905057907, 0.038070544600486755, -0.07306050509214401, 0.0300472229719162, -0.020242219790816307, 0.07034774869680405, 0.04280637204647064, -0.011655655689537525, 0.0066899326629936695, 0.015920201316475868, -0.007695721462368965, 0.047174371778964996, -0.025564279407262802, -0.0035231346264481544, -0.03448418900370598, -0.0054542492143809795, -0.008304942399263382, 0.02648385800421238, -0.0516803041100502, -0.024897584691643715, -0.032484106719493866, -0.008218731731176376, 0.006971553433686495, 0.020747987553477287, -0.006454290822148323, -0.02278255484998226, -0.023207860067486763, -0.0994064211845398, -0.0600944459438324, 0.048231884837150574, 0.001355659682303667, 0.008310689590871334, 0.0061956592835485935, 0.012172918766736984, -0.034162335097789764, -0.04827786609530449, -0.0051525128073990345, -0.022460702806711197, 0.017265083268284798, 0.01355228666216135, 0.0032328928355127573, 0.04207070916891098, -0.0013470386620610952, -0.02031118795275688, 0.007954352535307407, -0.022035397589206696, -0.025426343083381653, -0.002396651078015566, 0.01260971836745739, -0.007241679821163416, -0.011454498395323753, -0.003977176267653704, 0.007097995840013027, -0.04777209833264351, -0.009281993843615055, 0.01017858274281025, 0.032622043043375015, -0.037036020308732986, -0.05103660002350807, -0.0052042389288544655, -0.02763332985341549, -0.010075130499899387, -0.06230143457651138, -0.0034943977370858192, -0.007925616577267647, -0.01887434534728527, -0.00756927952170372, 0.04611685499548912, -0.0012500518932938576, 0.020564071834087372, 0.02685168944299221, -0.005017449613660574, 0.005224354565143585, 0.01572479121387005, 0.034897997975349426, -0.021828491240739822, 0.006500269751995802, 0.00829919520765543, 0.00859231036156416, -0.0328519381582737, 0.015207527205348015, -0.0058249542489647865, -0.006184164434671402, -0.0032300190068781376, -0.0032185243908315897, 0.0025604511611163616, -0.0036754398606717587, 0.01712714694440365, 0.04282936453819275, -0.009408436715602875, -0.03788663074374199, 0.013678728602826595, 0.01318445522338152, -0.01482820138335228, -0.05439306050539017, -0.008034816011786461, 0.0012809439795091748, -0.0426914244890213, -0.042415551841259, 0.029058676213026047, 0.005580691155046225, 0.058853015303611755, -0.010442961938679218, -0.00756927952170372, 0.021518133580684662, -0.01940310373902321, -0.02903568744659424, -0.03471408411860466, -0.0018578356830403209, 0.013713212683796883, -0.07039372622966766, -0.02154112420976162, 0.02173653431236744, -0.010092373006045818, -0.017138641327619553, -0.023978006094694138, 0.03386347368359566, -0.04556510969996452, -0.0075003113597631454, 0.011954518966376781, 0.009230268187820911, -0.03611643984913826, 0.009454415179789066, -0.009149804711341858, 0.015874221920967102, 0.03995567932724953, -0.04673757031559944, 0.0019569776486605406, 0.004991586320102215, -0.0025360246654599905, -0.025426343083381653, 0.04648468643426895, 0.04818590730428696, -0.02393202669918537, 0.02356419526040554, -0.0008290573605336249, -0.011379782110452652, -0.047312308102846146, 0.004299028776586056, -0.004730081185698509, 0.016379989683628082, 0.02097788266837597, -0.02954145520925522, -0.030185161158442497, -0.04181782528758049, -0.010511930100619793, -0.051266495138406754, 0.03092082217335701, -0.012747655622661114, -0.012287866324186325, 0.0015072464011609554, 0.008006079122424126, -0.02825404517352581, -0.03607046231627464, 0.020046807825565338, 0.015207527205348015, -0.00196990929543972, -0.012678686529397964, 0.053289566189050674, 0.009080836549401283, -0.01912723109126091, 0.016081126406788826, -0.03308183327317238, -0.0037127977702766657, -0.021219270303845406, 0.05374935641884804, 0.020518092438578606, -0.008793468587100506, 0.016299527138471603, 0.024414805695414543, -0.06230143457651138, -0.02418491058051586, 0.031725455075502396, 0.001273759757168591, -0.00959235243499279, 0.01131656114012003, -0.036783136427402496, 0.011247592978179455, 0.00855207908898592, -0.05627819523215294, -0.006051975302398205, 0.00576460687443614, 0.06257730722427368, 0.020460618659853935, 0.001854961970821023, 0.007017532363533974, 0.031725455075502396, -0.038852185010910034, -0.012690181843936443, -0.07545140385627747, -0.022621627897024155, 0.002553266938775778, -0.005244470667093992, 0.04000166058540344, 0.05002506449818611, 0.04905950650572777, -0.012437297962605953, -0.029196614399552345, -0.03508191555738449, -0.028070129454135895, 0.013563781045377254, -0.030001245439052582, -0.0029800087213516235, 0.021127313375473022, -0.004253049846738577, 0.03586355596780777, -0.021127313375473022, 0.005373786203563213, 0.026460867375135422, -0.023035438731312752, 0.019793923944234848, 0.026690762490034103, 0.08749788254499435, -0.030323097482323647, -0.03156452625989914, 0.01451784372329712, 0.005781848914921284, -0.011310813948512077, 0.05425512418150902, -0.04395584762096405, -0.05089866369962692, -0.008931404910981655, 0.00973028875887394, 0.015563864260911942, -0.017736367881298065, -0.0595427006483078, 0.01174186635762453, 0.025656236335635185, 0.007086500991135836, -0.02912764437496662, 0.04443862661719322, -0.023012448102235794, -0.031840402632951736, -0.03839239850640297, -0.019931862130761147, 0.039334964007139206, 0.051634326577186584, 0.03954187035560608, 0.044783465564250946, 0.03138061240315437, 0.038829196244478226, 0.028414972126483917, -0.06492223590612411, -0.01875939965248108, -0.048875592648983, 0.04386388882994652, -0.006661195773631334, -0.011931529268622398, -0.006477280054241419, 0.0592668280005455, -0.02261013351380825, -0.004554786719381809, 0.004097871016710997, -0.03839239850640297, 0.018012242391705513, -0.0005176220438443124, -0.0032271454110741615, 0.010960225015878677, 0.039587847888469696, 0.01648344285786152, 0.023035438731312752, 0.011172877624630928, -0.006005996372550726, 0.0724627748131752, 0.0005650378298014402, 0.03016217052936554, -0.010465951636433601, -0.048231884837150574, -0.0026150511112064123, 0.03476006165146828, 0.020828450098633766, 0.017701884731650352, 0.025909120216965675, 0.01019582524895668, 0.00543413357809186, 0.03512789309024811, 0.013448833487927914, 0.0544850192964077, -0.040093615651130676, -0.017288073897361755, -0.024299858137965202, 0.007212942931801081, 0.01673632673919201, 0.00543413357809186, 0.004057639744132757, 0.0373578704893589, -0.03303585201501846, -0.040967218577861786, -0.05158834531903267, 0.0002800044312607497, 0.04216266795992851, -0.00946590956300497, -0.036415304988622665, 0.00039764581015333533, -0.01082803588360548, 0.001315428176894784, 0.016839779913425446, 0.02887476049363613, 0.04924342408776283, -0.018609967082738876, 0.026713751256465912, 0.008517595008015633, 0.05526665970683098, 0.0036409555468708277, -0.004632376134395599, -0.012908581644296646, -0.014874179847538471, 0.006350838113576174, 0.01912723109126091, 0.03459913656115532, -0.020345671102404594, -0.01620756834745407, -0.005551954265683889, -0.04397883638739586, -0.03501294553279877, 0.018690431490540504, -0.02772528864443302, 0.015828242525458336, 0.01578226312994957, -0.021046850830316544, -0.0031495559960603714, -0.012943065725266933, 0.04142700508236885, 0.01601215824484825, 0.007149721961468458, -0.09710747748613358, -0.025426343083381653, -0.035403769463300705, -0.06501419097185135, -0.016828283667564392, -0.029242591932415962, -0.02198941819369793, -0.012241886928677559, 0.01648344285786152, 0.002643787767738104, 0.006425553932785988, -0.016357000917196274, -0.02266760729253292, 0.026024067774415016, 0.0351049043238163, 0.013655738905072212, -0.02494356408715248, 0.02533438429236412, 0.0014052307233214378, -0.009052099660038948, 0.006425553932785988, -0.008402647450566292, -0.00953487865626812, -0.02272508107125759, 0.012713171541690826, -0.009075089357793331, 0.02508150041103363, 0.028460951521992683, 0.028851771727204323, 0.024759648367762566, -0.008057805709540844, -0.04154195263981819, 0.00468984991312027, 0.04951929673552513, -0.0027314352337270975, -0.01183957140892744, 0.04476047679781914, 0.024506764486432076, 0.07742849737405777, -0.0064427959732711315, -0.00756927952170372, -0.019529545679688454, 0.024529753252863884, -0.06027836352586746, 0.0012565176002681255, 0.008224478922784328, 0.02148365043103695, -0.005543333478271961, 0.04434666782617569, 0.015219022519886494, -0.059864550828933716, -0.006126691121608019, 0.019426092505455017, 0.019920365884900093, -0.017391525208950043, -0.0010718835983425379, -0.02788621373474598, -0.028346003964543343, 0.009839489124715328, -0.0044111027382314205, 0.00915555190294981, -0.024621712043881416, -0.025380363687872887, 0.010557909496128559, -0.01595468446612358, -0.015483400784432888, 0.005528965033590794, 0.006994543131440878, 0.010224562138319016, 0.012264876626431942, 0.004784681368619204, -0.010494688525795937, 0.026070047169923782, 0.014184496365487576, -0.043128225952386856, 0.0063163540326058865, -0.0061956592835485935, -0.008540583774447441, -0.031587518751621246, -0.011517719365656376, -0.0031236927025020123, 0.02041463926434517, 0.02190895564854145, 0.01702369563281536, 0.012747655622661114, 0.025817163288593292, 0.004899628460407257, -0.03901311382651329, 0.003155303420498967, -0.012874097563326359, 0.0025618879590183496, -0.0396108403801918, -0.003298987401649356, -0.019667482003569603, 0.00026922812685370445, 0.031725455075502396, 0.028093120083212852, -0.007735953200608492, 0.0216215867549181, 0.007362374570220709, -0.014276454225182533, 0.015161548741161823, 0.0038392397109419107, -0.016219064593315125, 0.0113740349188447, 0.0572897344827652, -0.02979433909058571, -0.023219354450702667, 0.014333928003907204, 0.005112281069159508, 0.00412086071446538, 0.016862768679857254, 0.023863058537244797, -0.0271045733243227, -0.015552368946373463, 0.02786322496831417, -0.03561067208647728, 0.06271524727344513, 0.039334964007139206, -0.043013278394937515, 0.045795004814863205, 0.008448625914752483, -0.013322391547262669, 0.022058386355638504, 0.028437960892915726, 0.006465785671025515, -0.02039165049791336, -0.01634550653398037, 0.007224437780678272, 0.02813909761607647, 0.028024151921272278, -0.012172918766736984, -0.0022817037533968687, -0.06266926974058151, -0.007925616577267647, -0.024046974256634712, -0.0009756151703186333, 0.05894497409462929, 0.017540957778692245, 0.020518092438578606, 3.4663793485378847e-05, 0.007942858152091503, -0.014069548808038235, 0.009707299061119556, -0.026644783094525337, 0.00901761557906866, 0.008224478922784328, 0.015242011286318302, 0.015460411086678505, 0.029817329719662666, -0.005721501540392637, -0.009080836549401283, 0.03963382914662361, -0.012506266124546528, -0.015368453226983547, -0.03404739126563072, -0.01241430826485157, -0.00814401637762785, -0.012000497430562973, -0.00551172299310565, 0.0002536024840082973, 0.00045044973376207054, -0.012586728669703007, 0.0031782928854227066, 0.00437374459579587, -0.0030978296417742968, -0.021690554916858673, -0.0003464583423919976, 0.013195949606597424, -0.013575275428593159, 0.01108091976493597, -0.03611643984913826, -0.033380694687366486, -0.016069632023572922, 0.0522320531308651, 0.0075003113597631454, -0.041610922664403915, -0.0036409555468708277, -0.024115942418575287, 0.0029052929021418095, 0.02278255484998226, 0.013391359709203243, -0.010580899193882942, -0.01508108526468277, -0.03494397923350334, -0.017897294834256172, -0.017035190016031265, 0.017426010221242905, 0.0384843535721302, 0.007327890023589134, 0.00855207908898592, 0.0379096195101738, 0.01996634528040886, 0.0013685912126675248, -0.01634550653398037, -0.03561067208647728, 0.005480112507939339, 0.004322018474340439, -0.013851149007678032, 0.025886131450533867, -0.009862477891147137, 0.014621295966207981, 0.027334466576576233, 0.05866910144686699, 0.007339384872466326, -0.011615424416959286, 0.026024067774415016, -0.02623097412288189, 0.015805253759026527, -0.011609677225351334, 0.030598970130085945, -0.018862850964069366, -0.036668188869953156, 0.039840731769800186, -0.038829196244478226, 0.00393981859087944, -0.005520343780517578, 0.015471906401216984, -0.026391899213194847, -0.007758942432701588, 0.03027711808681488, -0.022426217794418335, -0.0006785482401028275, 0.00937969982624054, 0.007166964001953602, -0.022138848900794983, -0.017448998987674713, 0.009506141766905785, -0.011540709063410759, -0.01667885296046734, -0.002270209137350321, -0.005313438829034567, -0.0637727603316307, 0.0005934154032729566, -0.032254211604595184, -0.0073796166107058525, -0.0010424283100292087, 0.01792028360068798, -0.03080587647855282, -0.05338152498006821, -0.027679309248924255, -0.017506472766399384, 0.03462212532758713, 0.0012701676459982991, -0.019334135577082634, 0.004592144396156073, -0.018322600051760674, -0.0018707672134041786, -0.003508766181766987, -0.025771183893084526, 0.026162004098296165, 0.0041438499465584755, -0.008701510727405548, 0.012805129401385784, -0.02965640276670456, -0.010201572440564632, 0.03294389694929123, -0.005184123292565346, -0.008937152102589607, -0.0012529254890978336, 0.032392147928476334, 0.019115734845399857, -0.020679019391536713, -0.01990887150168419, -0.0362313874065876, -0.003586355596780777, -0.03551871329545975, 0.012264876626431942, -0.0013362623285502195, 0.01463279128074646, -0.04768013954162598, 0.03979475423693657, -0.012621213681995869, -0.0058967964723706245, 0.013667233288288116, -0.02249518595635891, -0.050852686166763306, 0.007609511259943247, 0.019724955782294273, -0.043036267161369324, 0.003833492286503315, 0.015828242525458336, -0.03103576973080635, 0.008615300059318542, 0.032001327723264694, -0.03855332359671593, 0.011569445952773094, 0.017115652561187744, -0.03163349628448486, -0.038461364805698395, 0.018012242391705513, -0.002853566547855735, -0.010477446019649506, 0.04036949202418327, -0.038691259920597076, 0.027426425367593765, -0.023437753319740295, 0.021104324609041214, -0.010276288725435734, 0.00504043884575367, 0.017598431557416916, 0.0031811664812266827, -0.032759979367256165, -0.014012075960636139, 0.025909120216965675, 0.02459872141480446, 0.01957552507519722, -0.015058095566928387, 0.006643953733146191, -0.0244377963244915, 0.039472900331020355, 0.03142658993601799, 0.008523342199623585, 0.0051525128073990345, -0.009552120231091976, -0.010690098628401756, -0.03462212532758713, 0.013253423385322094, 0.007902626879513264, 0.039978671818971634, 0.009069342166185379, -0.0494273379445076, -0.005908291321247816, 0.023495227098464966, 0.01141426619142294, -0.03535778820514679, -0.016242053359746933, -0.028185077011585236, -0.03328873589634895, 0.02370213344693184, 0.03195535019040108, -0.030208149924874306, 0.035150881856679916, -0.002379409037530422, -0.014759233221411705, -0.010816540569067001, 0.013506307266652584, 0.000824028451461345, 0.004916870500892401, 0.06363482028245926, -0.029679391533136368, -0.019793923944234848, -0.019161714240908623, -0.0019497935427352786, -0.01724209450185299, 0.0019239303655922413, -0.036047473549842834, -0.06409461051225662, -0.010167088359594345, -0.009172794409096241, 0.03581757843494415, 0.02763332985341549, -0.002916787751019001, -0.0036438293755054474, 0.005615175701677799, 0.0013621255056932569, -0.03078288584947586, -0.0073049007914960384, -0.011977508664131165, -0.018345588818192482, 0.018150178715586662, 0.0005653970292769372, 0.0438179112970829, -0.011632666923105717, -0.021943438798189163, 0.027058593928813934, -0.0623474158346653, -0.01488567516207695, 0.004241555463522673, -0.005497354548424482, 0.01974794641137123, 0.03685210272669792, -0.010690098628401756, -0.04956527426838875, -0.0362313874065876, -0.006919827312231064, -0.008115279488265514, 0.0285069290548563, -0.009011868387460709, 0.0074313427321612835, -0.004367997404187918, 0.005198491737246513, 0.012747655622661114, 0.04154195263981819, -0.012632708065211773, -0.041725870221853256, 0.028966719284653664, 0.038599301129579544, 0.027081582695245743, -0.034783050417900085, 0.0176903884857893, 0.02064453437924385, 0.0005118746776133776, 0.04395584762096405, -0.0052588386461138725, -0.014012075960636139, 0.0013786491472274065, 0.010161341167986393, -0.0023276826832443476, -0.007781932130455971, -0.022954976186156273, 0.013908622786402702, -9.501112799625844e-05, -0.042231637984514236, 0.0320243164896965, 0.01735704205930233, 0.027403436601161957, 0.0071324799209833145, -0.022656112909317017, 0.036162421107292175, -0.01679380051791668, 0.021380197256803513, 0.0063163540326058865, -0.021839985623955727, 0.01881687343120575, -0.0021538250148296356, -0.008402647450566292, -0.02179400809109211, -0.0009368204628117383, 0.024023985490202904, 0.0008103784639388323, 0.0020302566699683666, -0.015874221920967102, 0.026139015331864357, -0.019035272300243378, 0.02272508107125759, -0.03064494952559471, 0.010747572407126427, -0.008873931132256985, -0.009362457320094109, 0.0008419889491051435, 0.013701718300580978, -0.043404098600149155, -0.0057531120255589485, -0.0025776932016015053, 0.016862768679857254, -0.043128225952386856, 0.0015345463762059808, 0.028437960892915726, -0.008580815978348255, -0.002832014113664627, 0.0020087040029466152, -0.023725122213363647, 0.00047523522516712546, 0.003735787235200405, 0.023541206493973732, 0.03280595690011978, -0.026897666975855827, 0.005850817542523146, -0.02263312228024006, 0.029932275414466858, -0.03501294553279877, -0.021219270303845406, -0.0032300190068781376, 0.04151896387338638, 0.04131205752491951, 0.005494480952620506, -0.01974794641137123, -0.013276413083076477, 0.029219603165984154, -0.0027443666476756334, -0.027679309248924255, 0.010736078023910522, -0.0012881282018497586, 0.00313806114718318, 0.004322018474340439, -0.0078049213625490665, -0.02249518595635891, 0.03319678083062172, -0.0034656610805541277, -0.0044628288596868515, 0.014276454225182533, 0.0056266700848937035, -0.021575607359409332, 0.016138600185513496, 0.006115196272730827, 0.011644161306321621, -0.01086826715618372, -0.017115652561187744, 0.0320243164896965, 0.027058593928813934, -0.013678728602826595, -0.00511802826076746, 0.010557909496128559, 0.012586728669703007, -0.018345588818192482, -0.0231733750551939, 0.005086417775601149, -0.026391899213194847, 0.02261013351380825, -0.028346003964543343, 0.011943024583160877, -0.0038162502460181713, -0.039725784212350845, 0.015000622719526291, 0.01828811503946781, 0.018357083201408386, 0.017173126339912415, -0.031242676079273224, 0.00295989285223186, -0.01272466592490673, 0.019989335909485817, 0.004891007672995329, -0.009253257885575294, 0.02469068020582199, -0.029449498280882835, 0.023771101608872414, 0.0185409989207983, 0.027334466576576233, -0.014218980446457863, -0.0034857767168432474, -0.024391816928982735, -0.010948729701340199, 0.0058738067746162415, -0.003773145144805312, -0.014241970144212246, 0.01081079337745905, 0.02039165049791336, 0.013667233288288116, 0.029219603165984154, 0.020989377051591873, -0.013989086262881756, 0.021414682269096375, 0.0063910698518157005, 0.024000994861125946, -0.05347348377108574, -0.0024512510281056166, -0.006712922360748053, 0.0018736409256234765, 0.003043229691684246, -0.009626836515963078, 0.008316436782479286, -0.008310689590871334, -0.023460743948817253, 0.01803523115813732, 0.014448875561356544, 0.021058345213532448, 0.022173333913087845, -0.012851107865571976, -0.013529296964406967, 0.007166964001953602, 0.008626794442534447, -0.030507013201713562, 0.029748359695076942, 0.00845437403768301, 0.049473315477371216, -0.033909451216459274, 0.008017574436962605, -0.012655697762966156, -0.037679724395275116, 0.0018190409755334258, -0.009259005077183247, -0.0018750778399407864, -0.01836857758462429, 0.006258880253881216, -0.007166964001953602, -0.0007916995091363788, -0.008713005110621452, 0.004842154681682587, 0.018380071967840195, 0.006925574503839016, 0.012966055423021317, -0.0058967964723706245, -0.02235724963247776, -0.0025805667974054813, 0.03588654473423958, 0.010736078023910522, -0.011724624782800674, 0.02659880556166172, 0.01292007602751255, -0.027196530252695084, -0.01716163195669651, -0.014598307199776173, 0.05103660002350807, 0.0379096195101738, 0.025288404896855354, -0.01803523115813732, -0.013483317568898201, -0.04195576533675194, -0.01451784372329712, 0.022713586688041687, 0.0004770312807522714, 0.03381749615073204, 0.012207402847707272, 0.013356875628232956, 0.006954311393201351, -0.004477197304368019, 0.04062237590551376, 0.02912764437496662, -0.006253133062273264, 0.026966635137796402, -0.016575399786233902, 0.03436924144625664, 0.007138227112591267, -0.0004403918283060193, -0.01760992594063282, 0.0037127977702766657, 0.00329611380584538, -0.024506764486432076, -0.0123568344861269, 0.026667773723602295, 0.020483609288930893, -0.004066260531544685, -0.010690098628401756, -0.012632708065211773, -0.04625479131937027, -0.03418532758951187, -0.007781932130455971, -0.0055260914377868176, -0.017069673165678978, -0.032116275280714035, 0.006270375102758408, 0.017575440928339958, 0.020046807825565338, 0.011546456255018711, 0.019311146810650826, 0.0015747779980301857, 0.00013766734628006816, 0.036024484783411026, -0.004166839644312859, 0.05489882826805115, 0.004727207589894533, -0.013954602181911469, 0.01210395060479641, 0.02862187661230564, 0.0223227646201849, -0.00725892186164856, 0.014345422387123108, 0.012954560108482838, -0.008856689557433128, 0.027311477810144424, 0.02903568744659424, 0.011736119166016579, -0.01712714694440365, -0.023909037932753563, -0.024897584691643715, -0.025633247569203377, -0.03080587647855282, -0.01318445522338152, 0.0004414694558363408, 0.030369076877832413, -0.014069548808038235, 0.0017960515106096864, -0.003951313439756632, 0.001728520030155778, -0.019104240462183952, 0.008713005110621452, 0.011724624782800674, -0.01035100407898426, 0.0387602299451828, 0.01940310373902321, -0.005293323192745447, 0.004293281584978104, 0.0036265873350203037, 0.018518010154366493, 0.02721952088177204, -0.029564445838332176, -0.07241679728031158, -0.0049571022391319275, -0.009293489158153534, 0.017828326672315598, -0.010023403912782669, 0.0023636037949472666, 0.022368744015693665, 0.009253257885575294, 0.013644244521856308, 0.026690762490034103, -0.02685168944299221, 0.04119710996747017, -0.021081333979964256, 0.03841538727283478, 0.018943315371870995, -0.016357000917196274, -0.016885757446289062, -0.008891173638403416, -0.027150550857186317, 0.023794090375304222, 0.03027711808681488, -0.01721910573542118, -0.012954560108482838, -0.009603846818208694, -0.011874055489897728, -0.02257564850151539, 0.010282035917043686, -0.022403229027986526, 0.011764856055378914, -0.0063910698518157005, -0.036553241312503815, 0.00855207908898592, -0.014494854025542736, 0.006856606341898441, 0.017770852893590927, 0.03266802057623863, -0.016667358577251434, -0.0015029358910396695, 0.05940476432442665, 0.03193235769867897, -0.0090578468516469, -0.011040687561035156, 0.011115403845906258, 0.0693821907043457, -0.008546331897377968, -0.000577610160689801, 0.05489882826805115, -0.013540791347622871, 0.005299070384353399, -0.0516803041100502, 0.010816540569067001, 0.023035438731312752, 0.013138475827872753, 0.01685127429664135, -0.018391568213701248, -0.014494854025542736, -0.032645031809806824, -0.0015891464427113533, 0.006281869951635599, 0.01044870913028717, -0.02171354368329048, 0.013667233288288116, -0.04524325579404831, 0.010126857087016106, -0.006908332463353872, -0.02185148186981678, 0.011569445952773094, -0.03259905427694321, -0.00172564631793648, 0.04036949202418327, -0.01317295990884304, 0.03689808398485184, 0.0028923614881932735, -0.012034982442855835, -0.016609884798526764, 0.018046725541353226, -0.044921405613422394, 0.022460702806711197, -0.0064427959732711315, -0.012782139703631401, -0.02597808837890625, 0.033771514892578125, -0.003135187551379204, 0.022288281470537186, -0.019678978249430656, 0.0034685346763581038, 0.0018032357329502702, -0.013655738905072212, -0.006149680353701115, -0.019449083134531975, -0.009471657685935497, -0.011730371974408627, -0.018598472699522972, 0.03632334619760513, 0.021885965019464493, 0.01803523115813732, -0.017138641327619553, -0.0009353836067020893, 0.015345464460551739, -0.008988878689706326, -0.003776018740609288, -0.0007758942665532231, 0.0020087040029466152, -0.025403352454304695, 0.004557660315185785, -0.014586811885237694, -0.003991544712334871, -0.00813252106308937, 0.0027687931433320045, -0.03990970179438591, 3.396782267373055e-05, -0.017391525208950043, 0.02648385800421238, -0.005994501523673534, 0.02747240476310253, -0.018345588818192482, -0.010103867389261723, -0.0050835441797971725, 0.03899012506008148, -0.006626711692661047, -0.008896920830011368, 0.02494356408715248, 0.009293489158153534, -0.011425761505961418, 0.014977633021771908, -0.012126940302550793, -0.026047058403491974, 0.02508150041103363, -0.03430027514696121, 0.02813909761607647, 0.0034829031210392714, -0.01539144292473793, 0.018357083201408386, -0.006856606341898441, 0.01901228353381157, 0.02070200815796852, 0.033633578568696976, -0.022345755249261856, -0.018380071967840195, -0.005221480969339609, 0.02117329277098179, -0.00425592390820384, -0.045036349445581436, -0.0031323139555752277, 0.029564445838332176, 0.009724541567265987, -0.012540750205516815, 0.009144057519733906, -0.04266843572258949, 0.017368536442518234, -0.00591978570446372, 0.016609884798526764, 0.004132355563342571, 0.0036783134564757347, 0.009483152069151402, 0.0012098202714696527, -0.0017816830659285188, -0.03407038003206253, -0.053795333951711655, 0.006770395673811436, 0.005675522610545158, 0.016104117035865784, 0.001643746392801404, 0.017253588885068893, 0.021334217861294746, 0.010172835551202297, -0.018138684332370758, 0.021529627963900566, 0.00012159268953837454, 0.012264876626431942, -0.004100744612514973, 0.0227480698376894, 0.0031035770662128925, -0.034024398773908615, 0.0066152168437838554, -0.02025371417403221, -0.014954643324017525, 0.014127022586762905, 0.01355228666216135, -0.002919661346822977, 0.014667275361716747, 0.02751838229596615, 0.014494854025542736, -0.0514044314622879, -0.033495642244815826, 0.03765673562884331, -0.00016371009405702353, -0.006218648981302977, 0.011155635118484497, -0.006051975302398205, -0.008391153067350388, 0.07637098431587219, -0.023081418126821518, 0.014655780047178268, 0.01355228666216135, -0.018276620656251907, -0.001643746392801404, 0.012897086329758167, -0.012782139703631401, -0.024736657738685608, -0.032874926924705505, 0.007362374570220709, -0.02570221573114395, 0.028736824169754982, -0.039105068892240524, 0.0066899326629936695, 0.011253340169787407, -0.005376659799367189, 0.036806125193834305, 0.002852129749953747, 0.0011279203463345766, 0.006879595573991537, -0.013644244521856308, 0.02370213344693184, -0.0023808458354324102, 0.03496696799993515, -0.015012117102742195, 0.026001079007983208, -0.014150012284517288, 0.008350920863449574, 0.005661154631525278, -0.03563366085290909, -0.03935795649886131, -0.023748110979795456, -0.038967132568359375, 0.028047140687704086, -0.0052042389288544655, -0.0008326494717039168, 0.009988919831812382, -0.009649825282394886, -0.0018017989350482821, -0.005218607373535633, -0.02367914281785488, 0.023633165284991264, 0.02747240476310253, -0.03282894939184189, -0.025886131450533867, -0.03721993416547775, -0.015437422320246696, -0.007965847849845886, 0.044024813920259476, 0.01260971836745739, 0.0017471988685429096, -0.011190119199454784, -0.012540750205516815, -0.0062646279111504555, -0.021115818992257118, 0.006304859183728695, -0.0040921238251030445, -0.006551995873451233, 0.04039248079061508, -0.010517677292227745, -0.021127313375473022, -0.008540583774447441, 0.009638330899178982, -0.010011909529566765, -0.013575275428593159, 0.011385530233383179, 0.012954560108482838, -0.01729956828057766, -0.026828698813915253, -0.0036409555468708277, -0.011299319565296173, 0.03053000196814537, 0.0012170044938102365, -0.008810710161924362, -0.005043312907218933, 0.019253673031926155, 0.0216215867549181, -0.008029068820178509, -0.01828811503946781, -0.012322350405156612, -0.019173208624124527, 0.015265000984072685, 0.012460286729037762, -0.010362498462200165, -0.02381707914173603, -0.008316436782479286, -0.000411295797675848, 0.015092580579221249, 0.007563532330095768, 0.006184164434671402, 0.02623097412288189, 0.029495475813746452, -0.02673674188554287, -0.010960225015878677, 0.017265083268284798, 0.06574985384941101, 0.009356710128486156, -0.01425346452742815, -0.0042875343933701515, -0.012563739903271198, 0.006063470151275396, 0.020736493170261383, 0.021782513707876205, -0.03234617039561272, 0.01533396914601326, -0.03533479943871498, -0.010580899193882942, -0.022541165351867676, 0.03151854872703552, -0.0023679144214838743, -0.014747737906873226, 0.012069466523826122, -0.014046560041606426, -0.012517760507762432, 0.011103908531367779, 0.013931612484157085, 0.05039289593696594, -0.0008261837065219879, 0.003735787235200405, -0.00808654259890318, 0.013874138705432415, -0.0001786173233995214, -0.001763004227541387, 0.0077531952410936356, -0.018207652494311333, 0.004477197304368019, 0.03064494952559471, 0.04878363385796547, -0.018805377185344696, 0.01887434534728527, -0.005741617642343044, -0.0022486564703285694, 0.020184746012091637, -0.0345531590282917, 0.008402647450566292, -0.004026029258966446, -0.06984198093414307, -0.013598265126347542, -0.02889775112271309, 0.016000663861632347, 0.018782388418912888, 0.010190078057348728, 0.003077714005485177, -0.015747779980301857, 0.009011868387460709, 0.005804838612675667, -0.006063470151275396, 0.006379575002938509, 0.03570263087749481, -0.0308978334069252, 0.022000912576913834, 0.01000041514635086, -0.032759979367256165, -0.01881687343120575, -0.011828077025711536, -0.006954311393201351, -0.012253382243216038, -0.006155428010970354, 0.024023985490202904, 0.0013024965301156044], [0.047448862344026566, -0.015326857566833496, -0.02314484305679798, 0.039721034467220306, 0.013085788115859032, 0.006030925549566746, -0.03990134969353676, 0.011617500334978104, 0.05821629986166954, 0.0162670761346817, 0.009833660908043385, 0.03523889183998108, 0.04917474091053009, -0.023518355563282967, 0.0018997576553374529, -0.009337791241705418, -0.021470481529831886, 0.0179028008133173, 0.007747147232294083, 0.060740724205970764, 0.05780414864420891, 0.05600098893046379, -0.02995821088552475, -0.0251283198595047, -0.011591740883886814, -0.03802091255784035, 0.011926613748073578, 0.014244962483644485, 0.0019416166469454765, -0.05481605604290962, 0.051596127450466156, -0.01642163284122944, 0.04296671971678734, -0.07866928726434708, 0.0916520357131958, 0.0599164217710495, -0.0031973887234926224, 0.04296671971678734, 0.007753586862236261, -0.00792746338993311, 0.001589839463122189, 0.0019126372644677758, 0.00821081642061472, -0.009582506492733955, -0.04178178682923317, 0.05087486281991005, -0.00606956472620368, -0.04165298864245415, -0.03711933270096779, 0.04760341718792915, 0.0006713549955748022, 0.0014368928968906403, -0.023441076278686523, -0.026815561577677727, 0.02484496496617794, 0.024342656135559082, -0.01159818097949028, 0.028721759095788002, 0.010451886802911758, -0.07341436296701431, -0.058989085257053375, 0.0015294658951461315, -0.006639491766691208, 0.04623816907405853, -0.03387364372611046, 0.0382012277841568, 0.014747271314263344, 0.01478591002523899, -0.06264692544937134, 0.026686765253543854, -0.0011889584129676223, 0.013227464631199837, -0.01598372310400009, -0.056258585304021835, 0.007038762792944908, 0.003322965931147337, 0.0070838420651853085, 0.03575408086180687, 0.012776674702763557, -0.005960086826235056, 0.005196963902562857, -0.004971568938344717, 0.03315237909555435, 0.024123702198266983, -0.011578861624002457, -0.026132937520742416, -0.07702068239450455, -0.009563186205923557, -0.02143184095621109, -0.003863913705572486, 0.03521313518285751, -0.015507173724472523, -0.01224860642105341, 0.030550677329301834, -0.011411425657570362, -0.029417263343930244, 0.01875286176800728, -0.04077716916799545, -0.03683597967028618, 0.06991107761859894, -0.026300372555851936, -0.045285068452358246, -0.0474231019616127, -0.007882383652031422, 0.10396503657102585, 0.01119890995323658, -0.028052013367414474, -0.009518107399344444, 0.020568901672959328, 0.018508147448301315, -0.025424553081393242, -0.011578861624002457, 0.03583136200904846, 0.09639176726341248, 0.027304990217089653, -0.0030492718797177076, -0.027098914608359337, -0.015842046588659286, 0.002538913395255804, -0.006903525907546282, -0.04216817766427994, 0.00430504372343421, 0.003158749546855688, -0.05950427055358887, 0.004507899284362793, -0.061822619289159775, -0.04064837098121643, -0.0139616085216403, -0.030653715133666992, -0.04381678253412247, 0.07738131284713745, -0.025424553081393242, -0.0072770374827086926, -0.03070523403584957, -0.016743626445531845, -0.003342285519465804, -0.005908567924052477, -0.051879480481147766, -0.009704863652586937, -0.0627499595284462, 0.004759053699672222, 0.014090405777096748, 0.021586397662758827, 0.02461313083767891, -0.02193414978682995, -0.039308883249759674, -0.007573271170258522, 0.025089679285883904, -0.01921653188765049, 0.003467862494289875, -0.016962582245469093, -0.02684132009744644, -0.02779441885650158, 0.010683721862733364, -0.02121288701891899, -0.03505857661366463, 0.016988340765237808, 0.059555791318416595, 0.0014481627149507403, -0.008687365800142288, -0.0249480027705431, -0.015532933175563812, -0.03201896697282791, -0.007019443437457085, 0.03778907656669617, -0.014682872220873833, -0.03320389986038208, 0.009878739714622498, -0.05558883771300316, 0.005235603079199791, -0.023119084537029266, -0.013691134750843048, -0.06671690940856934, 0.025141198188066483, 0.016073880717158318, -0.043456148356199265, -0.002191161038354039, -0.018508147448301315, 0.004147267434746027, -0.010960635729134083, 0.029494542628526688, 0.018443748354911804, 0.019126372411847115, 0.01733609288930893, -0.01060000341385603, 0.015494294464588165, -0.0421939380466938, 0.03758300095796585, 0.015069263987243176, 0.06511982530355453, 0.005093926098197699, -0.02887631580233574, -0.005953647196292877, 0.019808998331427574, -0.044872917234897614, -0.0131630664691329, -0.021367443725466728, 0.009427949786186218, 0.005908567924052477, -0.015030624344944954, 0.014695752412080765, -0.05759807303547859, 0.028618721291422844, 0.03348725289106369, -0.06522286683320999, 0.016228437423706055, 0.00812709890305996, 0.04276064410805702, 0.039489198476076126, 0.011617500334978104, -0.017658086493611336, 0.01723305508494377, -0.0034968419931828976, 0.03240535780787468, -0.046985190361738205, -0.03310086205601692, -0.03075675293803215, 0.0239305067807436, -0.0033133060205727816, 0.0429924800992012, -0.043172795325517654, -0.01432223990559578, 0.03310086205601692, 0.0057314722798764706, -0.017761124297976494, 0.04428045079112053, -0.04927777871489525, -0.02797473594546318, -0.054558463394641876, -0.09886467456817627, 0.010432567447423935, 0.005570475477725267, -0.018211914226412773, -0.05316745489835739, -0.008223696611821651, 0.011076552793383598, 0.0015294658951461315, 0.01204897090792656, 0.012712276540696621, -0.026789801195263863, 0.03588287904858589, 0.010129894129931927, 0.029314225539565086, 0.011533782817423344, -0.0031764591112732887, -0.023866107687354088, -0.017155777662992477, -0.030267324298620224, 0.06821095943450928, -0.013027829118072987, 0.0028142172377556562, 0.023801708593964577, -0.009814340621232986, -0.033178139477968216, 0.02201142907142639, 0.03042188100516796, 0.01733609288930893, -0.01642163284122944, -0.01211337000131607, -0.009331352077424526, 0.024432815611362457, -0.0031764591112732887, -0.024754807353019714, -0.05311593413352966, -0.021792473271489143, 0.005853829439729452, 0.01921653188765049, -0.032946303486824036, -0.0003809577610809356, 0.07784498482942581, -0.0013724943855777383, 0.011385666206479073, -0.01284751296043396, 0.014541195705533028, -0.03719661012291908, 0.026815561577677727, 0.0020462642423808575, -0.011701218783855438, 0.042606089264154434, 0.012409603223204613, -0.00812709890305996, -0.029546059668064117, -0.02655796706676483, -0.06450159847736359, 0.020762097090482712, -0.041421156376600266, -0.0008790403953753412, 0.02188263088464737, -0.03662990406155586, -0.008693805895745754, 0.005251702852547169, 0.017580807209014893, 0.019229410216212273, -0.019074853509664536, 0.050900623202323914, 0.01262211799621582, -0.026867080479860306, -0.03263719007372856, 0.03583136200904846, -0.036191992461681366, -0.009852980263531208, 0.04976721107959747, 0.0022346300538629293, 0.024935122579336166, 0.01384569052606821, 0.003387364326044917, -0.01481166947633028, -0.022423580288887024, -0.01032308954745531, -0.052446190267801285, -0.012467561289668083, 0.041859064251184464, -0.06305906921625137, -0.0179028008133173, -0.0036417387891560793, 0.014090405777096748, -0.014695752412080765, 0.0026580507401376963, 0.0036481786519289017, 0.0013523697853088379, 0.022475099191069603, -0.00294301426038146, 0.04240001365542412, 0.008152858354151249, 0.03191592916846275, 0.002171841450035572, -0.03758300095796585, -0.008197937160730362, -0.01438663899898529, -0.0060921041294932365, -0.038922492414712906, -0.04214242100715637, 0.025617748498916626, -0.005428798962384462, 0.021006811410188675, 0.0035612406209111214, 0.02001507394015789, 0.014979105442762375, -0.014798789285123348, -0.00693572498857975, -0.03415699675679207, 0.008680926635861397, -0.03019004687666893, 0.006742529571056366, -0.01763232611119747, 0.006304619368165731, 0.03825274482369423, 0.08727293461561203, -0.023608513176441193, 0.04046805575489998, 0.03194168582558632, 0.0038091749884188175, 0.03178713098168373, 0.025591988116502762, -0.014270721934735775, 0.017709605395793915, 0.01791568100452423, 0.01655043102800846, -0.04997328296303749, 0.013169505633413792, 0.004881410859525204, 0.018327830359339714, -0.004559418186545372, 0.03423427417874336, -0.034311555325984955, 0.023402437567710876, -0.012667197734117508, 0.054094791412353516, 0.013304742984473705, -0.03250839561223984, -0.03194168582558632, 0.05651617795228958, 0.0035451408475637436, -0.010806079022586346, 0.033461492508649826, 0.004778373520821333, 0.029185429215431213, 0.020079471170902252, 0.0015753498300909996, -0.013884330168366432, 0.04294096305966377, 0.008732445538043976, 0.009608265943825245, 0.016305716708302498, 0.04036501795053482, 0.03207048401236534, -0.03688749670982361, -0.011417864821851254, -0.003102400805801153, -0.01122466940432787, -0.014901827089488506, -0.03992711007595062, -0.02324788086116314, -0.006375457625836134, -0.0034646426793187857, 0.063471220433712, 0.05267802253365517, 0.057958707213401794, 0.028232330456376076, -0.017181536182761192, 0.01253840047866106, -0.023466836661100388, 0.0026789801195263863, -0.0008126293541863561, -0.020736336708068848, 0.0038091749884188175, -0.004968348890542984, 0.011308387853205204, -0.02081361599266529, 0.03070523403584957, 0.07933902740478516, -0.028515683487057686, 0.028438406065106392, 0.017709605395793915, -0.003092740895226598, -0.03717084974050522, -0.005444898270070553, 0.014966226182878017, 0.002204040763899684, -0.02507680095732212, 0.010001096874475479, 0.030730994418263435, -0.004137607757002115, 0.006166162434965372, -0.005341860931366682, 0.02058178000152111, 0.00858432799577713, -0.014566955156624317, -0.0037898554001003504, -0.037892114371061325, -0.05172492563724518, -0.020440103486180305, 0.027614103630185127, 0.025089679285883904, 0.01613827981054783, -0.034646425396203995, 0.04435772821307182, 0.0007236788515001535, 0.004691435489803553, -0.04008166491985321, -0.00430504372343421, -0.004298604093492031, -0.020968172699213028, -0.01722017489373684, -0.0206976979970932, -0.003139429958537221, 0.027485307306051254, 0.053579602390527725, -0.023853227496147156, 0.047835253179073334, -0.025836702436208725, 0.07259006053209305, -0.04154995083808899, 0.022384939715266228, -0.025617748498916626, -0.010876917280256748, 0.013755532912909985, -0.03742844611406326, 0.04497595503926277, 0.004913610406219959, 0.001759690698236227, 0.03807242959737778, 0.03621775284409523, -0.03505857661366463, 0.027098914608359337, 0.01342066004872322, 0.0008041770779527724, -0.006288519594818354, -0.019744599238038063, -0.0011479044333100319, -0.03212200477719307, 0.013755532912909985, 0.0013789342483505607, 0.008655167184770107, -0.0049458094872534275, 0.00821081642061472, -0.006410876754671335, 0.010484086349606514, 0.006633052136749029, -0.025901101529598236, -0.01173985842615366, -0.010934876278042793, -0.04291520267724991, -0.02666100487112999, -5.383317329687998e-05, 0.05641314014792442, 0.05236891284584999, -0.013575216755270958, -0.033564530313014984, -0.04847923666238785, 0.006108203902840614, -0.0126736368983984, -0.0026564407162368298, -0.013755532912909985, -0.030344603583216667, 0.00019923305080737919, -0.008822603151202202, 0.008365373127162457, 0.031735610216856, 0.006021265406161547, -0.01928092911839485, -0.05342504754662514, -0.035110097378492355, -0.027948975563049316, 0.03196744620800018, 0.008036940358579159, -0.01819903403520584, -0.018430868163704872, -0.012918351218104362, -0.03449187055230141, 0.02324788086116314, 0.0067360894754529, 0.019358208402991295, -0.008249456062912941, -0.01653755083680153, -0.012899031862616539, -0.014257841743528843, -6.822223076596856e-05, -0.010529165156185627, 0.02820657007396221, -0.013755532912909985, -0.004990888759493828, -0.025218477472662926, -0.020839374512434006, -0.014515436254441738, 0.001293606124818325, -0.01733609288930893, -0.11313539743423462, -0.005647753830999136, -0.031581055372953415, -0.013085788115859032, -0.039540719240903854, 0.009118836373090744, -0.01875286176800728, 0.020968172699213028, -0.03189016878604889, -0.008996479213237762, 0.011192469857633114, 0.009994656778872013, -0.012615678831934929, -0.021058330312371254, -0.01603524200618267, 0.04497595503926277, 0.011643259786069393, 0.009891618974506855, 0.03330693766474724, 0.019293809309601784, -0.018392229452729225, -0.006852007005363703, -0.013729773461818695, -0.013794172555208206, -0.006327158771455288, 0.007882383652031422, 0.017361853271722794, 0.013755532912909985, 0.006185481790453196, 0.023389557376503944, -0.009408630430698395, 0.000510761106852442, -0.023518355563282967, -0.047448862344026566, -0.016164038330316544, -0.004601277410984039, -0.0075925905257463455, 0.017310334369540215, 0.0937643051147461, 0.0007751976954750717, 6.090820988902124e-06, 0.016988340765237808, -0.017426250502467155, -0.03389940410852432, 0.05236891284584999, 0.006291739642620087, -0.0009394140215590596, -0.017014101147651672, 0.027356509119272232, 0.060689207166433334, -0.04683063551783562, 0.00606956472620368, 0.006916405633091927, 0.010683721862733364, 0.041807547211647034, 0.020594660192728043, -0.0019931355491280556, 0.007380075287073851, 0.05311593413352966, -0.029649097472429276, -0.0014385029207915068, -0.042657606303691864, 0.02489648386836052, 0.02217886410653591, 0.00909951701760292, -0.028155051171779633, 0.036604143679142, -0.04657303914427757, 0.038123950362205505, -0.0037415565457195044, 0.01637011393904686, -0.0024004564620554447, 0.010381048545241356, 0.03263719007372856, -0.028386887162923813, -0.012029651552438736, -0.003092740895226598, -0.03227655962109566, -0.001247722189873457, 0.04136963561177254, -0.022307662293314934, -0.005032747518271208, 0.012577039189636707, 0.03966951370239258, 0.002732109045609832, -0.00626920023933053, -0.023737309500575066, -0.031168904155492783, -0.008687365800142288, -0.04162723198533058, -0.002772358013316989, -0.01620267890393734, -0.010464766062796116, 0.009408630430698395, -0.015017745085060596, -0.026789801195263863, -0.006343258544802666, -0.0007281062426045537, 0.030215805396437645, -0.012332324869930744, -0.02627461403608322, 0.009852980263531208, -0.007051642518490553, -0.017812643200159073, -0.02972637675702572, 0.021277284249663353, -0.011404985561966896, -0.024754807353019714, 0.015468535013496876, -0.013343382626771927, -0.024432815611362457, 0.011681899428367615, 0.00804982054978609, -0.025154078379273415, -0.005116465967148542, 0.03292054682970047, -0.018688462674617767, 0.032096244394779205, -0.010529165156185627, 0.01168833952397108, 0.008848362602293491, 0.056773774325847626, -0.006613732315599918, 0.03183864802122116, -0.004923270083963871, 0.006575093138962984, -0.004498239606618881, 0.0006564628565683961, 0.003654618514701724, -0.015880685299634933, 0.045671459287405014, -0.02297740802168846, 0.02449721284210682, -0.03330693766474724, -0.022822851315140724, -0.020942412316799164, -0.019255170598626137, -0.0022410699166357517, 0.018521025776863098, 0.04013318568468094, 0.02501240186393261, -0.008371813222765923, 0.0130729079246521, -0.00810133945196867, 0.004836332052946091, 0.022423580288887024, -0.016511792317032814, 0.00818505696952343, -0.017645206302404404, 0.014991985633969307, 0.016795145347714424, 0.0018546786159276962, 0.02655796706676483, -0.010522725060582161, -0.03145225718617439, -0.02161215804517269, 0.011437185108661652, 0.0029092051554471254, -0.025373034179210663, -0.011095872148871422, 0.017142897471785545, 0.0034968419931828976, -0.0013394900597631931, 0.003483962267637253, 0.016511792317032814, 0.03644958510994911, -0.04044229909777641, 0.01807023584842682, 0.014463917352259159, 0.014605593867599964, -0.014901827089488506, -0.03207048401236534, -0.029185429215431213, 0.011617500334978104, -0.006130743306130171, -0.021959910169243813, -0.06785032898187637, -0.03961799666285515, -0.03183864802122116, 0.018804380670189857, -0.010451886802911758, 0.02257813699543476, 0.026004139333963394, -0.018289191648364067, -0.035110097378492355, -0.028103532269597054, -0.033693328499794006, 0.026867080479860306, 0.02217886410653591, 0.009608265943825245, 0.0064978147856891155, 0.006027705501765013, 0.01481166947633028, -0.0011036304058507085, -0.014360879547894001, -0.017039859667420387, 0.045336589217185974, -0.018443748354911804, 0.01151446346193552, 0.005818410310894251, 0.008217256516218185, -0.030087009072303772, 0.01615116000175476, 0.03225079923868179, -0.038845211267471313, -0.03281750902533531, 0.030834032222628593, 0.003182898974046111, 0.0030106327030807734, 0.014657112769782543, -0.0038091749884188175, -0.024175221100449562, -0.033126622438430786, 0.03410547971725464, -0.02246221899986267, 0.05775263160467148, -0.027330750599503517, 0.03933464363217354, 0.015816286206245422, -0.029133910313248634, -0.009157476015388966, -0.012886152602732182, 0.015945084393024445, -0.009962457232177258, 0.010754560120403767, 0.005821629893034697, -0.010194292291998863, 0.03320389986038208, -0.008249456062912941, 0.02183111198246479, -0.004208446014672518, 0.027614103630185127, -0.014721511863172054, -0.005699272733181715, 0.013182385824620724, 0.013407780788838863, 0.02251373790204525, 0.01284751296043396, -0.013704014010727406, -0.0510551817715168, -0.04044229909777641, 0.016061002388596535, -0.015043504536151886, 0.012145568616688251, 0.01403888687491417, 0.0042664045467972755, -0.003195778699591756, 0.0015584451612085104, 0.0044370610266923904, -0.03853610157966614, 0.011804256588220596, -0.00454975850880146, -0.013343382626771927, -0.025901101529598236, 0.021534878760576248, -0.028850555419921875, -0.04958689212799072, -0.017078498378396034, -0.01733609288930893, 0.0243297778069973, -0.013240344822406769, -0.0007321311859413981, -0.025166958570480347, 0.007141800597310066, -0.039308883249759674, -0.007457353640347719, -0.03307510167360306, -0.008281655609607697, 0.014129044488072395, -0.0022764892783015966, -0.04373950511217117, 0.016576189547777176, -0.0008420111844316125, 0.01563597097992897, 0.007824425585567951, -0.022075828164815903, -0.012853953056037426, 0.0710960105061531, 0.019744599238038063, -0.04075140878558159, -0.016331475228071213, 0.000517603475600481, -0.017297454178333282, -0.012235727161169052, 0.024471454322338104, 0.01973171904683113, -0.01173985842615366, -0.008017621003091335, -0.017825521528720856, -0.02376306988298893, 0.035161614418029785, -0.032096244394779205, -0.020079471170902252, 0.029030872508883476, -0.04595481604337692, 0.05440390482544899, -0.010593563318252563, 0.03093707002699375, -0.02427825890481472, -0.002311908407136798, 0.015507173724472523, 0.02326076105237007, -0.0013290253700688481, -0.006539674010127783, 0.013652495108544827, 0.025231357663869858, -0.007013003341853619, -0.03145225718617439, 0.02421385981142521, -0.011565981432795525, 0.0007345461053773761, -0.01202321145683527, 0.013510818593204021, 0.039025530219078064, -0.0010545264231041074, -0.0259268619120121, 0.0078115458600223064, -0.006227341014891863, 0.026235975325107574, 0.012757355347275734, -0.015275338664650917, -0.02779441885650158, 0.01682090386748314, -0.009820780716836452, 0.010902676731348038, 0.010129894129931927, -0.010864037089049816, 0.005747571587562561, -0.0253472737967968, 0.010059055872261524, -0.022655414417386055, -0.045285068452358246, -0.0015206111129373312, 0.004736514296382666, -0.016357235610485077, 0.0027610883116722107, -0.015906445682048798, 0.03199320659041405, 0.00698080426082015, 0.03250839561223984, 0.02354411408305168, 0.013182385824620724, -0.00021352148905862123, 0.031143145635724068, -0.044538047164678574, -0.01481166947633028, -0.04129235818982124, -0.035728324204683304, -0.027150433510541916, -0.0007256913231685758, 0.026918599382042885, 0.013755532912909985, -0.03570256382226944, 0.0478610135614872, 0.010490525513887405, 0.01168833952397108, -0.030344603583216667, -0.017593687400221825, -0.02939150482416153, -0.015223819762468338, 0.03052491880953312, 0.0028641261160373688, 0.011643259786069393, -0.02138032205402851, -0.01711713708937168, 0.007199759129434824, -0.06661387532949448, 0.021225765347480774, -0.013935849070549011, -0.03191592916846275, 0.04845348000526428, 0.0009506837814114988, 0.005947207100689411, -0.04054533690214157, 0.008191497065126896, -0.027536826208233833, -0.03683597967028618, 0.021625038236379623, -0.0037383364979177713, -0.011231109499931335, 0.005338640883564949, -0.023891866207122803, 0.04628968611359596, 0.03098858892917633, -0.052446190267801285, -0.014399518258869648, -0.014167684130370617, 0.03052491880953312, 0.02784593775868416, -0.022101586684584618, 0.009183235466480255, 0.023106204345822334, 0.01242248248308897, 0.027536826208233833, -0.00041074209730140865, -0.021303044632077217, -0.02910814993083477, 0.006578313186764717, -0.01984763704240322, 0.0123645244166255, -0.0038284945767372847, -0.003619199153035879, -0.02171519584953785, 0.007895263843238354, 0.03441459313035011, 0.011984572745859623, -0.00014650673256255686, -0.0027965076733380556, 0.0010086424881592393, 0.03338421508669853, 0.023621393367648125, 0.03348725289106369, -0.006066344678401947, -0.017374731600284576, 0.03449187055230141, -0.0028399766888469458, 0.02501240186393261, 0.02967485785484314, -0.005908567924052477, 0.004807352554053068, -0.012602798640727997, 0.013935849070549011, 0.00010635825310600922, 0.02006659284234047, -0.03843306377530098, 0.0028979352209717035, 0.0024342655669897795, -0.006365797948092222, -0.0382012277841568, 0.019242290407419205, -0.018211914226412773, 0.010677281767129898, -0.025849582627415657, 0.018263433128595352, 0.017555048689246178, 0.01818615384399891, -0.034878261387348175, 0.01801871694624424, 0.02745954692363739, -0.005116465967148542, 0.007399394642561674, -0.03827850520610809, -0.017992958426475525, -0.009331352077424526, 0.0018369690515100956, -0.003812394803389907, 0.03070523403584957, 0.01199745200574398, 0.025038160383701324, -0.017310334369540215, 0.01199745200574398, 0.006121083162724972, -0.028386887162923813, 0.029314225539565086, 0.012602798640727997, 0.0030460520647466183, 0.023969145491719246, -0.01763232611119747, -0.02985517308115959, -0.0010327919153496623, -0.026004139333963394, 0.012815314345061779, -0.014373758807778358, -0.0015994992572814226, 0.022140225395560265, 0.0007462183712050319, -0.027742899954319, 0.010812519118189812, -0.003928312100470066, -0.03292054682970047, -0.028232330456376076, 0.012834633700549603, 0.013536578044295311, 0.006552553735673428, -0.01585492677986622, 0.03080827184021473, 0.014824548736214638, 0.027356509119272232, 0.004784813150763512, 0.0019094173330813646, 0.03768603876233101, -0.00838469248265028, -0.02666100487112999, 0.02353123389184475, 0.00935067143291235, -0.04252881184220314, -0.016975460574030876, 0.03781483694911003, -0.01637011393904686, 0.056825291365385056, -0.01983475685119629, -0.005383719690144062, 0.02484496496617794, -0.03807242959737778, 0.03382212668657303, -0.03400244191288948, 0.03227655962109566, 0.033229656517505646, 0.007940342649817467, 0.016911063343286514, -0.0006242635427042842, 0.02319636195898056, 0.004433840978890657, 0.02171519584953785, -0.003570900298655033, 0.027742899954319, 0.04214242100715637, 0.00047252446529455483, -0.009569626301527023, -0.019860517233610153, -0.020774975419044495, 0.00528712198138237, 0.026738284155726433, -0.006320719141513109, 0.01349793840199709, -0.03513585403561592, 0.0369647741317749, 0.003954071551561356, 0.014476796612143517, 0.006639491766691208, -0.00790170393884182, 0.04201362282037735, 0.023569874465465546, 0.023969145491719246, -0.004230985417962074, -0.0442289337515831, 0.012499760836362839, 0.022269023582339287, -0.008056260645389557, 0.012551279738545418, -0.04106052219867706, 0.02257813699543476, 0.01665346883237362, -0.0008935300866141915, -0.021058330312371254, -0.0023521576076745987, 0.021393202245235443, -0.016511792317032814, -0.010709481313824654, 0.004411301575601101, -0.004044229630380869, 0.02957182005047798, 0.025965500622987747, 0.025669267401099205, 0.010780319571495056, 0.019693080335855484, 0.05383719876408577, -0.005802310537546873, -0.0018611184787005186, -0.01224860642105341, -0.015378376469016075, -0.013819932006299496, 0.022372061386704445, -0.0107481200248003, -0.008365373127162457, 0.032997824251651764, 0.009807901456952095, -0.010619322769343853, -0.033461492508649826, -0.0008911151089705527, 0.020156750455498695, -0.01561021152883768, 0.008841922506690025, -0.008230136707425117, 0.016923941671848297, -0.022191744297742844, 0.02910814993083477, -0.007721387781202793, 0.001915857195854187, 0.03523889183998108, 0.03268871083855629, 0.0171042587608099, 0.004891071002930403, 0.019641561433672905, 0.017181536182761192, 0.01767096482217312, -0.018508147448301315, 0.025888221338391304, -0.014360879547894001, -0.044254694133996964, 0.009827220812439919, 0.004379102494567633, -0.0002324385568499565, 0.02586246281862259, 0.014103285036981106, 0.05175068601965904, -0.05205979943275452, 0.0041762469336390495, -0.0008118244004435837, 0.03742844611406326, -0.012267925776541233, 0.0016679228283464909, 0.040339261293411255, -0.0074959928169846535, -0.007553951349109411, -0.03286902606487274, 0.0009023848688229918, 0.007792226038873196, 0.02602989971637726, -0.029829414561390877, 0.026068538427352905, 0.04162723198533058, -0.0017130017513409257, -0.03279174864292145, -0.02244933880865574, 0.01162394043058157, -0.009292712435126305, -0.012725155800580978, 0.023157723248004913, 0.002571112709119916, -0.002918864833191037, -0.013832811266183853, 0.0067360894754529, 0.028052013367414474, -0.030627956613898277, -0.003179678926244378, 0.0040764291770756245, -0.00827521551400423, 0.021805353462696075, -0.005348300561308861, 0.06656235456466675, -0.00015868208720348775, -0.02001507394015789, 0.026454929262399673, 0.03570256382226944, 0.02131592482328415, -0.008964279666543007, 0.008307414129376411, 0.003583780024200678, 0.03199320659041405, -0.035728324204683304, 0.03956647589802742, 0.05481605604290962, -0.00014690922398585826, -0.005715372506529093, 0.028979353606700897, 0.02404642291367054, -0.01676938496530056, 0.02108408883213997, -0.008191497065126896, 0.023183481767773628, -0.008661606349050999, 0.018855899572372437, 0.0035869998391717672, -0.013330502435564995, -0.00649459520354867, -0.0052162837237119675, 0.02546319179236889, -0.009466588497161865, 0.013858570717275143, 0.032714471220970154, 0.005567255895584822, -0.030087009072303772, 0.005187304224818945, 0.008745324797928333, -0.02051738277077675, -0.04072565212845802, -0.033126622438430786, -0.008661606349050999, -0.006439856253564358, -0.038690656423568726, -0.018057357519865036, -0.023737309500575066, 0.006146842613816261, -0.008197937160730362, 0.021972790360450745, -0.012628558091819286, -0.03196744620800018, 0.017877040430903435, -0.011842895299196243, 0.04108628258109093, -0.0047300742007792, -0.015107902698218822, -0.010194292291998863, 0.016666347160935402, 0.014219203032553196, 0.03717084974050522, 0.0057282522320747375, -0.027897456660866737, -0.036578383296728134, 0.024690408259630203, -0.0191006138920784, 0.003063761629164219, -0.02995821088552475, 0.03433731198310852, -0.002287758979946375, -0.030293084681034088, -0.03080827184021473, -0.008880562148988247, 0.018971815705299377, 0.001010252395644784, -0.0024229958653450012, 0.00419234624132514, 0.011482263915240765, -0.035496488213539124, -0.004836332052946091, 0.005303221754729748, 0.017155777662992477, 0.014644233509898186, -0.02489648386836052, 0.028386887162923813, 0.011694778688251972, 0.004247085191309452, 0.04992176592350006, -0.02336379885673523, -0.008912760764360428, -0.03691325709223747, 0.00790170393884182, 0.02484496496617794, 0.03052491880953312, 0.01278955489397049, -0.051261257380247116, 0.0016888523241505027, -0.025450311601161957, 0.011166710406541824, 0.015339737758040428, -0.011037914082407951, -0.03330693766474724, 0.008036940358579159, -0.0094601484015584, 0.01768384501338005, -0.012776674702763557, -0.005460998043417931, 0.025373034179210663, -0.043404631316661835, 0.004195566289126873, -0.022500857710838318, 0.00937643088400364, -0.009060877375304699, 0.02046586386859417, -0.027382269501686096, -0.03858761861920357, 0.016164038330316544, -0.03320389986038208, -0.01728457398712635, 0.015030624344944954, 0.012068290263414383, 0.019512765109539032, 0.003722236957401037, 0.011450064368546009, 0.016988340765237808, -0.023801708593964577, 0.05087486281991005, 0.039257362484931946, 0.04100900515913963, 0.00486209150403738, 0.027588345110416412, 0.03773755952715874, 0.012692956253886223, 0.01944836601614952, -0.0026017019990831614, -0.005518957041203976, -0.010104134678840637, -0.0003968561359215528, 0.018108876422047615, 0.01251264102756977, 0.00867448654025793, -0.014631353318691254, 0.041421156376600266, 0.011115191504359245, -0.022526618093252182, 0.017130017280578613, -0.03446611016988754, 0.027304990217089653, 0.01392296887934208, -0.013098667375743389, -0.026867080479860306, -0.0012903861934319139, 0.011945933103561401, -0.009485907852649689, -0.00863584689795971, 0.039308883249759674, 0.016305716708302498, 0.009170355275273323, 0.01358809694647789, -0.017142897471785545, -0.013407780788838863, -0.02341531775891781, 0.004797692876309156, 0.03258567303419113, -0.005238823127001524, 0.012287246063351631, -0.01768384501338005, 0.016331475228071213, 0.02018250897526741, -0.012628558091819286, 0.012776674702763557, 0.016331475228071213, -0.006475275382399559, -0.006594412960112095, -0.0377633161842823, -0.011617500334978104, 0.003735116682946682, 0.015352617017924786, -0.07671156525611877, -0.023338038474321365, 0.008391132578253746, 0.02944302372634411, -0.03201896697282791, -0.004466040525585413, -0.006558993831276894, 0.007682748604565859, -0.021509120240807533, -0.019023334607481956, 0.0162670761346817, -0.03565104305744171, 0.05017935857176781, -0.025991259142756462, 0.00234410772100091, 0.02114848792552948, 0.03302358463406563, -0.017542168498039246, -0.006005166098475456, 0.0042664045467972755, -0.00038679386489093304, -0.054713018238544464, 0.003454983001574874, 0.00937643088400364, 0.00785018503665924, -0.00111570511944592, 0.020504502579569817, -0.030293084681034088, 0.019306689500808716, 0.011611061170697212, -0.02336379885673523, 0.004185906611382961, 0.009266952984035015, -0.004095748532563448, -0.008507050573825836, -0.018031597137451172, 0.03098858892917633, 0.013098667375743389, -0.01625419780611992, -0.020105231553316116, 0.010612882673740387, -0.009047998115420341, 0.01700122095644474, 0.019796118140220642, -0.00997533742338419, -0.03498129919171333, 0.002170231658965349, -0.02797473594546318, -0.004733294248580933, -0.0271246749907732, -0.02411082200706005, 0.016911063343286514, -0.009730623103678226, 0.0013435150031000376, -0.00466245599091053, 0.0007776126731187105, 0.021251525729894638, -0.002055924152955413, -0.006658811587840319, 0.026351891458034515, -0.00812709890305996, 0.005370839964598417, -0.0007949197315610945, -0.05636162310838699, 0.0056284344755113125, -0.01251264102756977, -0.02381458878517151, 0.0026210215874016285, -0.013974487781524658, -0.00863584689795971, -0.013085788115859032, 0.0024052863009274006, 0.004939369857311249, -0.01401312742382288, -0.023389557376503944, -0.030370362102985382, 0.002975213574245572, -0.009930258616805077, -0.008706686086952686, 0.011095872148871422, 0.02148335985839367, -0.005802310537546873, 0.03472370654344559, -0.019139252603054047, 0.005457777995616198, -0.0044885799288749695, 0.012570599094033241, 0.00012376598897390068, 0.011720538139343262, -0.023917626589536667, 0.001331440289504826, 0.03199320659041405, -0.029829414561390877, -0.010735240764915943, -0.023969145491719246, 0.018958937376737595, -0.021418962627649307, 0.013227464631199837, 0.0009225094108842313, -0.03325541689991951, -0.03480098396539688, 0.020221149548888206, -0.026055658236145973, 0.00832673441618681, 0.008017621003091335, -0.012519080191850662, 0.027768660336732864, 3.2796729101391975e-06, -0.021843992173671722, -0.008030501194298267, 0.0035580205731093884, 0.001671142759732902, 0.01983475685119629, 0.038742173463106155, -0.011636820621788502, 0.018804380670189857, 0.01751640997827053, -0.010471206158399582, 0.004253525286912918, -0.0175035297870636, -0.028283849358558655, -0.0005413503968156874, -0.02302892692387104, -0.0041247280314564705, -0.014064646326005459, -0.002946234308183193, -0.016627708449959755, -0.007676308508962393, -0.010535605251789093, -0.0064495159313082695, 0.03204472362995148, -0.0251283198595047, -0.007817985489964485, 0.02199854888021946, -0.008320294320583344, 0.0025373033713549376, 0.012956990860402584, -0.012853953056037426, -0.012660757638514042, -0.00895140040665865, -0.008829043246805668, 0.017490649595856667, 0.033332694321870804, -0.005377280060201883, 0.01239672303199768, 0.048298921436071396, 0.018289191648364067, 0.02159927785396576, 0.03279174864292145, 0.0019045874942094088, 0.059040602296590805, -0.015249579213559628, -0.018211914226412773, -0.018224792554974556, -0.02028554677963257, 0.00548675749450922, -0.0022330202627927065, 0.02353123389184475, -0.03426003456115723, 0.014000247232615948, -0.00528712198138237, 0.01637011393904686, -0.006594412960112095, -0.024419935420155525, 0.002199210925027728, -0.015391256660223007, 0.004920050036162138, 0.007019443437457085, -0.030962828546762466, 0.018340710550546646, 0.010612882673740387, 0.026454929262399673, 0.007785786408931017, 0.022088706493377686, 0.004659235943108797, 0.0037995153106749058, 0.00023827467521186918, 0.014502556063234806, -0.00034292234340682626, -0.019744599238038063, 0.0001605939178261906, 0.0194998849183321, 0.0018208693945780396, -0.019770359620451927, 0.027356509119272232, -0.012261486612260342, 0.021753834560513496, 0.04451228678226471, 0.013729773461818695, 0.015288218855857849, 0.011321267113089561, -0.021728074178099632, -0.035110097378492355, -0.021174248307943344, 0.00426318496465683, 0.017477769404649734, -0.007193319499492645, -0.03274022787809372, 0.008964279666543007, -0.008706686086952686, 0.017323212698101997, -0.03400244191288948, -0.016923941671848297, -0.004733294248580933, -0.02910814993083477, 0.01933244802057743, 0.00036827928852289915, -0.041240841150283813, 0.009286272339522839, -0.04680487513542175, 0.01615116000175476, 0.01361385639756918, -0.0004119495570193976, 0.022436458617448807, 0.03418275713920593], [0.04032447934150696, 0.010699301958084106, 0.03290629759430885, 0.025226576253771782, -0.031075526028871536, 0.007608392275869846, -0.014039861038327217, 0.011376923881471157, 0.0268433578312397, 0.07018741965293884, 0.03338181972503662, 0.03946853429079056, -0.025725876912474632, 0.03138461709022522, -0.03200279921293259, 0.016845455393195152, 0.049406997859478, 0.011067832820117474, -0.003203846514225006, -0.020055245608091354, -0.017427973449230194, 0.04836084321141243, -0.0259160865098238, -0.0007823863998055458, -0.017986714839935303, -0.0273426603525877, 0.043795809149742126, -0.00801853183656931, 0.03887413069605827, -0.09077762812376022, 0.0555412620306015, -0.024394407868385315, -0.009195455349981785, -0.0147769246250391, -0.006110489834100008, -0.00410139886662364, 0.0034624128602445126, 0.00015380246622953564, 0.005420979578047991, -0.011121329851448536, -0.03471329063177109, 0.01551398728042841, 0.05587413161993027, 0.013718882575631142, -0.04039580747485161, 0.06505175679922104, 0.025963637977838516, -0.03644895553588867, -0.0011739510810002685, 0.00512972055003047, 0.004041958134621382, 0.023407693952322006, 0.03345314785838127, 0.0032662590965628624, 0.024037763476371765, 0.04146573692560196, 0.012173427268862724, -0.019722379744052887, 0.03785175085067749, -0.007923427037894726, -0.026153847575187683, -0.01960349828004837, -0.0329776257276535, -0.007721329107880592, -0.013623776845633984, -0.023823777213692665, 0.025250351056456566, 0.015311889350414276, -0.0018560315947979689, -0.0009161276975646615, 0.0051951054483652115, 0.04767133295536041, 0.02358601614832878, -0.04127552732825279, -0.017439860850572586, 0.03571189194917679, 0.012981818988919258, 0.035402800887823105, 0.021993009373545647, -0.02250419743359089, -0.043272729963064194, -0.011495805345475674, -0.006687063258141279, 0.02237342856824398, -0.003512937342748046, 0.021065736189484596, -0.06367272883653641, -0.01980559527873993, -0.020293008536100388, -0.014539161697030067, 0.005917307920753956, 0.04301119223237038, -0.012577623128890991, 0.04731468856334686, 0.015418882481753826, 0.00851783249527216, 0.027152448892593384, 0.0010691871866583824, 0.004588811658322811, 0.007013986352831125, -0.01583496667444706, -0.0032216785475611687, 0.019211189821362495, 0.009575874544680119, 0.05287832394242287, -0.016774127259850502, -0.03566433861851692, 0.026819583028554916, 0.019437065348029137, 0.008684266358613968, -0.025297904387116432, -0.03578322008252144, -0.03552168235182762, 0.07684475928544998, 0.006152098532766104, -0.007079371251165867, 0.017523078247904778, -0.01733286865055561, 0.009641259908676147, -0.014158742502331734, 0.012839161790907383, -0.0035188812762498856, -0.006889161188155413, -0.06999720633029938, 0.00717447604984045, 0.010419931262731552, -0.005596328992396593, -0.006187762599438429, -0.03388112038373947, -0.0070199305191636086, 0.01796293817460537, -0.03438042104244232, 0.07998321950435638, -0.043367836624383926, -0.03559301048517227, 0.014146854169666767, 0.0076916092075407505, -0.007275525014847517, 0.014277623035013676, -0.010699301958084106, 0.018200701102614403, 0.012375525198876858, -0.014444056898355484, 0.013148252852261066, -0.029102100059390068, -0.01924685388803482, -0.008773427456617355, 0.04184615612030029, 0.04441399127244949, 0.022040560841560364, -0.0491216816008091, 0.03164615482091904, -0.010818182490766048, -0.03288251906633377, 0.0018307693535462022, -0.01363566517829895, 0.012470629997551441, 0.036544058471918106, 0.013588112778961658, 0.011133217252790928, -0.0268433578312397, -0.01826014183461666, -6.29698479315266e-05, -0.027818184345960617, 0.03668671473860741, -0.007840210571885109, -0.013695105910301208, 0.025820981711149216, -0.053448956459760666, -0.0012950613163411617, -0.002037325408309698, -0.01648881286382675, -0.03495104983448982, -0.035402800887823105, -0.06728671491146088, -0.041513290256261826, 0.03896923363208771, -0.001963024726137519, 0.00798881147056818, -0.019116085022687912, 0.0244895126670599, -0.00269711553119123, -0.030790211632847786, -0.05420979484915733, -0.06476643681526184, 0.01590629480779171, 0.011620630510151386, 0.026248952373862267, -0.005863811820745468, 0.03416643664240837, 0.036972030997276306, -0.01903286948800087, -0.009177623316645622, 0.019496504217386246, -0.05825175344944, -0.007186364382505417, -0.032763637602329254, -0.0248461551964283, -0.045341260731220245, -0.020506994798779488, 0.013718882575631142, -0.05249790474772453, 0.045127276331186295, 0.014634266495704651, -0.06448112428188324, -0.035688113421201706, 0.0329776257276535, 0.006877273321151733, 0.03257342800498009, -0.01168601494282484, 0.012185315601527691, -0.04743357002735138, -0.01582307741045952, 0.07090070843696594, -0.018557343631982803, -0.010645804926753044, 0.02755664475262165, 0.017772728577256203, 0.025749651715159416, 0.04431888461112976, -0.009480769746005535, -0.001897640060633421, 0.0009205857058987021, -0.027675526216626167, -0.027009792625904083, -0.0034505247604101896, 0.04203636571764946, -0.03045734576880932, 0.0007303759339265525, -0.04878881573677063, -0.014967134222388268, 0.021993009373545647, 0.03038601577281952, -0.009682867676019669, 0.03628252074122429, -0.017297204583883286, 0.02223077043890953, -0.02243286930024624, -0.0035515737254172564, -0.0127440569922328, 0.0295538492500782, -0.0020536715164780617, -0.012672727927565575, -0.045769233256578445, -0.013267134316265583, 0.00859510526061058, 0.01584685407578945, -0.018913988023996353, 0.03238321840763092, -0.008690210059285164, 0.011703846976161003, -0.018497902899980545, 0.02620140090584755, -0.04707692563533783, -0.01245874259620905, 0.008577273227274418, 0.04481818526983261, -0.03464196249842644, 0.05378182232379913, -0.04614965245127678, 0.020578322932124138, -0.02229021117091179, -0.0014191435184329748, 0.0021027098409831524, -0.011412587948143482, -0.03416643664240837, 0.04686294123530388, -0.015288112685084343, -0.04579301178455353, 0.0519748292863369, -0.057205598801374435, 0.024727273732423782, 0.03502238169312477, 0.03963496908545494, -0.04034825414419174, 0.014646154828369617, 0.03585454821586609, -0.03147972375154495, 0.03247832506895065, 0.007418182212859392, -0.06257902830839157, -0.03164615482091904, 0.010354545898735523, -0.03963496908545494, 0.02030489593744278, -0.006187762599438429, -0.06148532032966614, 0.012565734796226025, -0.030124478042125702, 0.03861258924007416, 0.046339862048625946, -0.0157755259424448, -0.015050350688397884, -0.025749651715159416, 0.010693357326090336, -0.02257552556693554, -0.02016223967075348, -0.037400003522634506, 0.02244475670158863, -0.031788814812898636, -0.009558042511343956, 0.09172867983579636, 0.019009092822670937, 0.014610490761697292, 0.0015424826415255666, 0.03723356872797012, 0.005001923535019159, -0.01445594523102045, -0.05287832394242287, -0.03806573897600174, -0.00257377652451396, 0.053020983934402466, -0.020328672602772713, -0.024751050397753716, -0.012256644666194916, -0.02798461727797985, -0.023764338344335556, -0.006651399191468954, 0.0018887239275500178, 0.000353114097379148, 0.04213147237896919, 0.023027274757623672, 0.002530681900680065, -0.00798881147056818, 0.03718601539731026, -0.010907343588769436, 0.025868533179163933, 0.04170349985361099, 0.011584965512156487, -0.012815386056900024, -0.023609792813658714, 0.034261539578437805, 0.058061543852090836, -0.01445594523102045, 0.03963496908545494, 0.03231189027428627, -0.03785175085067749, -0.01558531541377306, 0.0072576929815113544, -0.01058042049407959, 0.011382867582142353, -0.025226576253771782, 0.011775176040828228, 0.004716608673334122, -0.009118182584643364, 0.01522867288440466, 0.030409792438149452, 0.03164615482091904, 0.017808392643928528, 0.07375384867191315, -0.02421608567237854, -0.015811190009117126, 0.007626224309206009, 0.016108393669128418, -0.04774266108870506, 0.009468881413340569, -0.05730070546269417, -0.03742377832531929, -0.043415386229753494, -0.007412238512188196, -0.015739861875772476, 0.03152727335691452, -0.012399301864206791, 0.04852727800607681, 0.013088812120258808, 0.01625104993581772, -0.002333042211830616, -0.0536867156624794, 0.0062531474977731705, 0.004850349854677916, -0.012173427268862724, -0.01746363751590252, -0.03452308103442192, -0.011882169172167778, -0.029981819912791252, 0.005789510905742645, -0.02905454859137535, -0.004095454700291157, 0.0028709792532026768, -0.014099301770329475, 0.039373431354761124, -0.0028516610618680716, 0.029791610315442085, 0.027746854349970818, 0.0121377632021904, 0.054970633238554, -0.054019585251808167, 0.009183567017316818, 0.01683356799185276, -0.04127552732825279, 0.008636713959276676, 0.02988671511411667, 0.015145455487072468, -0.0023820805363357067, -0.015739861875772476, 0.04120419919490814, 0.06386294215917587, 0.020542658865451813, 0.011834615841507912, -0.013433567248284817, 0.025369232520461082, -0.0026896854396909475, -0.02229021117091179, 0.025963637977838516, -0.02938741445541382, -0.06333986669778824, -0.02577342838048935, -0.03699580579996109, 0.01058042049407959, 0.0038874128367751837, 0.05235524848103523, -0.03428531810641289, 0.039872732013463974, 0.03466573730111122, -0.0030701051000505686, 0.010075175203382969, -0.02229021117091179, 0.05501818656921387, -0.03209790587425232, -0.05287832394242287, 0.046268533915281296, 0.03870769590139389, 0.010746854357421398, 0.015133567154407501, -0.07175664603710175, -0.025939861312508583, -0.014408392831683159, -0.020281121134757996, -0.013790210708975792, -0.02023356780409813, -0.023740561679005623, -0.000676136405672878, 0.03528391942381859, 0.033120281994342804, -0.04348671808838844, -0.01025944110006094, 0.012934266589581966, -0.029981819912791252, -0.005777623038738966, -0.04617343097925186, -0.043415386229753494, -0.034903500229120255, 0.025321681052446365, 0.014919581823050976, 0.009361889213323593, -0.006401748862117529, -0.01285105012357235, 0.043914686888456345, 0.011050000786781311, 0.04536503925919533, -0.021814687177538872, -0.020649651065468788, -0.01846223883330822, 0.0260587427765131, -0.06400559842586517, -0.0123160844668746, 0.0032335666473954916, -0.010622029192745686, 0.01924685388803482, 0.009611539542675018, 0.013683217577636242, 0.00011340145283611491, 0.059916090220212936, 0.025868533179163933, 0.011139161884784698, 0.01089545525610447, -0.03892168030142784, 0.01988881267607212, -0.008262238465249538, 0.003896328853443265, 0.03407132998108864, -0.03904056176543236, 0.02477482706308365, 0.010847902856767178, 0.03380979225039482, -0.04565035179257393, -0.004068706650286913, -0.012434965930879116, -0.039730072021484375, -0.036615386605262756, 0.021339163184165955, 0.0029497379437088966, -0.009635315276682377, -0.012720280326902866, 0.07589371502399445, 0.010723077692091465, 0.03124196082353592, 0.030695106834173203, -0.05149930343031883, -0.024751050397753716, -0.03316783532500267, -0.0033762240782380104, 0.05078601837158203, -0.011156993918120861, -0.006597902625799179, -0.03506993129849434, -0.021041959524154663, 0.0026332170236855745, 0.011067832820117474, -0.005780594889074564, 0.01200699433684349, -0.0562545508146286, 0.0137426583096385, -0.036330074071884155, 0.027865735813975334, -0.0028278848621994257, -0.013944756239652634, 0.017427973449230194, 0.01540699414908886, -0.01724965125322342, 0.003144405782222748, 0.029910491779446602, -0.0017208043718710542, 0.01466993149369955, -0.04488951340317726, -0.003893357003107667, 0.03495104983448982, 0.007418182212859392, -0.01490769349038601, -0.008327622897922993, -0.016013287007808685, 0.0042500002309679985, -0.02321748435497284, 0.013659441843628883, -0.020328672602772713, -0.001679195906035602, -0.009795804508030415, -0.0499776266515255, -0.007768881507217884, 0.003958741668611765, 0.002304807770997286, -0.036330074071884155, -0.00781049020588398, 0.0012556819710880518, 0.04170349985361099, 0.021648254245519638, -0.006936713587492704, 0.03832727670669556, -0.029244758188724518, -0.007976924069225788, 0.00012733283801935613, -0.024227973073720932, 0.018010491505265236, -0.019139861688017845, 0.026082519441843033, -0.03656783327460289, 0.027318883687257767, 0.02258741483092308, 0.003471328876912594, -0.020400000736117363, -0.015502098947763443, -0.028793008998036385, 0.0033435316290706396, -0.005230769515037537, -0.024655945599079132, 0.013076923787593842, 0.010063287802040577, -0.03138461709022522, 0.011269930750131607, -0.04465175047516823, 0.03899300843477249, 0.009029021486639977, -0.015644757077097893, -0.018022378906607628, -0.024239862337708473, 0.024394407868385315, -0.017844056710600853, -0.013576224446296692, 0.0312657356262207, -0.008898252621293068, -0.06029650941491127, 0.07042518258094788, -0.006811888422816992, -0.01859300769865513, 0.06462378054857254, 0.0019986890256404877, 0.03502238169312477, -0.04227412864565849, 0.04550769552588463, -0.02898321859538555, 0.017213987186551094, -0.00477604940533638, -0.0014629808720201254, -0.01661958172917366, -0.004211363848298788, 0.02160070091485977, -0.008470280095934868, -0.005837063305079937, -0.03335804492235184, 0.05444755777716637, 0.0143489520996809, -0.006389860529452562, 0.007441958412528038, 0.02408531680703163, -0.02336014248430729, 0.046767834573984146, -0.04127552732825279, 0.03371468931436539, -0.0031830421648919582, 0.029530072584748268, 0.0268433578312397, -0.0016628497978672385, 0.005845979321748018, -0.013160141184926033, -0.02451328933238983, 0.0068000005558133125, -0.020197903737425804, 0.009908742271363735, 0.029720282182097435, 0.002083391882479191, 0.024156644940376282, -0.016560140997171402, 0.020495105534791946, -0.005730070173740387, 0.022825175896286964, -0.0248461551964283, -0.0139566445723176, -0.0030136366840451956, -0.02108951285481453, 0.02229021117091179, 0.006984266452491283, -0.0032662590965628624, 0.006110489834100008, -0.03188391774892807, -0.04003916308283806, -0.002783304313197732, 0.017095105722546577, -0.02378811314702034, 0.01974615454673767, 0.003569405758753419, -0.010776573792099953, -0.011192657984793186, 0.013290910050272942, 0.0037923080381006002, -0.006015385035425425, -0.030980421230196953, 0.03716224059462547, -0.016144057735800743, -0.008672378025949001, 0.0267007015645504, -0.002368706511333585, -0.024608394131064415, 0.033904898911714554, -0.05834685638546944, 0.0525454580783844, 0.022397205233573914, -0.009147902950644493, -0.02321748435497284, 0.013183916918933392, -0.01583496667444706, 0.013088812120258808, -0.04018182307481766, -0.031289514154195786, -0.007144755683839321, -0.0015944931656122208, -0.025868533179163933, -0.056492313742637634, 0.029482519254088402, 0.02278951182961464, 0.039944060146808624, -0.04443776607513428, -0.008428672328591347, 0.011656294576823711, 0.011911888606846333, 0.03564056381583214, -0.005985664669424295, 0.006336363963782787, 0.01263706386089325, 0.03642517700791359, -0.022848952561616898, -0.03302517905831337, 0.0016777098644524813, -0.0009451049845665693, -0.035759441554546356, 0.0008611451485194266, -0.017273427918553352, -0.03281119093298912, 0.02230210043489933, -0.02477482706308365, 0.035188812762498856, -0.0035931821912527084, -0.023978322744369507, -0.03257342800498009, 0.02917342819273472, -0.010841959156095982, -0.008535664528608322, 0.04774266108870506, 0.004591783508658409, 0.013837763108313084, 0.03946853429079056, -0.0013062063371762633, -0.018688112497329712, -0.02053077146410942, 0.004178671631962061, 0.016239162534475327, 0.05915524810552597, 0.012084267102181911, -0.02981538698077202, -0.013790210708975792, -0.023324476554989815, -0.010063287802040577, -0.013683217577636242, 0.0017460666131228209, -0.03756643459200859, -0.043415386229753494, -0.01960349828004837, 0.008892307989299297, -0.011246155016124249, 0.039658743888139725, 0.02655804343521595, -0.009682867676019669, -0.0009168707183562219, -0.027033569291234016, -0.035331472754478455, 0.009278671815991402, 0.0015915210824459791, -0.02193356864154339, -0.0007248033653013408, 0.029934268444776535, 0.002945279935374856, -0.010586364194750786, 0.045983221381902695, 0.001315865432843566, 0.0319790244102478, 0.020007694140076637, 0.033191610127687454, 0.01846223883330822, 0.010431818664073944, -0.022349651902914047, 0.024037763476371765, 0.022313987836241722, 0.008791259489953518, -0.016096504405140877, 0.019710490480065346, -0.008250350132584572, 0.022266434505581856, -0.05373426899313927, -0.027152448892593384, 0.003361363895237446, -0.009397553279995918, -0.013100700452923775, -0.04660140350461006, 0.029102100059390068, -0.03316783532500267, 0.012839161790907383, -0.009034966118633747, 0.013932867906987667, -0.009064685553312302, -0.013909092172980309, 0.009100350551307201, 0.005073252134025097, 0.0076975529082119465, -0.012910490855574608, 0.03580699488520622, 0.04474685713648796, -0.029530072584748268, 0.009254896081984043, -0.00129208923317492, 0.0033375876955688, -0.022741960361599922, -0.002802622504532337, -0.019710490480065346, 0.02884056232869625, 0.001647989614866674, 0.0028620632365345955, -0.02214755490422249, -0.05178461968898773, -0.006663287058472633, 0.03571189194917679, 0.017213987186551094, -0.030338464304804802, 0.0011137676192447543, 0.03166993334889412, 0.002401398727670312, -0.013873427174985409, -0.0282699316740036, -0.042155247181653976, -0.04120419919490814, 0.002456381218507886, -0.04053846374154091, 0.008547552861273289, -0.0007853584247641265, -0.011234266683459282, 0.020982518792152405, -0.0018069931538775563, -0.015537763014435768, -0.018628673627972603, 0.029696505516767502, 0.0502629391849041, 0.014111190102994442, -0.00728146918118, 0.015038462355732918, 0.010063287802040577, -0.009433217346668243, 0.01168601494282484, 0.028222380205988884, 0.009361889213323593, -0.027009792625904083, -0.009480769746005535, 0.03849370777606964, 0.001226704684086144, -0.004752273205667734, -0.011121329851448536, -0.007590560242533684, 0.05221259221434593, 0.0070674829185009, -0.017368532717227936, -0.005162412766367197, 0.04467552900314331, -0.01653636433184147, -0.01817692443728447, 0.00564685370773077, 0.04629231244325638, -0.01168601494282484, -0.023051051422953606, -0.031360842287540436, 0.005536888726055622, 0.0496923103928566, -0.03328671678900719, -0.015288112685084343, 0.03067133016884327, -0.0053080422803759575, 0.0025604022666811943, -0.008571329526603222, 0.02301538549363613, -0.018735665827989578, -0.03630629554390907, 0.006490909494459629, 0.008826923556625843, 0.0031889863312244415, 0.015918182209134102, 0.013766434974968433, 0.00486521003767848, -0.001789161004126072, 0.0006311844917945564, -0.02905454859137535, -0.013647553510963917, -0.026439161971211433, 0.008749650791287422, 0.046482522040605545, 0.04474685713648796, -0.036330074071884155, 0.024751050397753716, 0.0034832169767469168, -0.034261539578437805, -0.00032320807804353535, -0.0024459792766720057, -0.008363286964595318, -0.031004197895526886, 0.02620140090584755, 0.004252972546964884, -0.02328881248831749, 0.005284266080707312, 0.000406053353799507, 0.005453671794384718, 0.002685227431356907, 0.0021562064066529274, -0.03388112038373947, -0.005548776593059301, -0.0040835668332874775, -0.010966784320771694, 0.004505594726651907, -0.017844056710600853, -0.044342659413814545, 0.0534014031291008, 0.003144405782222748, 0.023776225745677948, -0.01719021052122116, -0.002694143448024988, 0.0061461543664336205, 0.04127552732825279, 0.003227622713893652, 0.0039438814856112, -0.02045944146811962, -0.02200489677488804, -0.01894965209066868, 0.03147972375154495, 0.01833146996796131, 0.02087552659213543, -0.006924825720489025, 0.015668531879782677, -0.004987063352018595, 0.040871333330869675, 0.006383916363120079, 0.0006701923557557166, -0.0544000044465065, -0.013362239114940166, 0.02387133054435253, 0.02271818369626999, -0.0006635052850469947, 0.01853356696665287, 0.016809791326522827, 0.012327972799539566, -0.0034089162945747375, -0.0009644231759011745, 0.022813288494944572, -0.015359441749751568, 0.007578671909868717, 0.003227622713893652, 0.013255245983600616, -0.027818184345960617, 0.009314336813986301, -0.03942098096013069, 0.005183217115700245, -0.012036713771522045, 0.02273007109761238, -0.006770280189812183, 0.002683741506189108, 0.009777972474694252, 0.006651399191468954, 0.013932867906987667, -0.01916363835334778, -0.034974828362464905, -0.008006643503904343, 0.08887553215026855, 0.02024545520544052, 0.0030166085343807936, 0.016512589529156685, 0.013576224446296692, -0.013255245983600616, 0.009575874544680119, 0.0019511365098878741, -0.020067134872078896, -0.017867833375930786, -0.026819583028554916, 0.006003497168421745, -0.005536888726055622, 0.0283412616699934, 0.005111888516694307, -0.027485316619277, -0.018295805901288986, 0.016072727739810944, 0.06600280106067657, 0.004377797711640596, 0.006740559823811054, -0.02387133054435253, -0.012256644666194916, 0.003732867306098342, 0.007899651303887367, -0.006770280189812183, 0.011275875382125378, -0.008612937293946743, -0.0038903849199414253, -0.021481819450855255, -0.020554546266794205, 0.011638462543487549, 0.032692309468984604, 0.016310490667819977, -0.008565384894609451, -0.008452448062598705, 0.033120281994342804, -0.027889512479305267, 0.03331049159169197, 0.008696154691278934, 0.012482518330216408, 0.022623078897595406, 0.032692309468984604, -0.021410491317510605, 0.009433217346668243, 0.020863637328147888, 0.018937762826681137, -0.03844615817070007, 0.006918881554156542, -0.016298603266477585, 0.05977343022823334, 0.053924478590488434, 0.009926574304699898, -0.01654825359582901, -0.017725177109241486, 0.006223427131772041, -0.020400000736117363, -0.035046156495809555, 0.03759021311998367, -0.0010104895336553454, 0.009427273645997047, 0.01881888322532177, -0.015395105816423893, -0.02364545688033104, 0.04581678658723831, 0.016215385869145393, -0.009736364707350731, 0.008470280095934868, 0.02060209959745407, 0.03366713598370552, 0.010734966024756432, 0.00024500658037140965, 0.02074475772678852, -0.014313288033008575, 0.03934965282678604, -0.013766434974968433, -0.006758392322808504, -0.0011843532556667924, -0.00738846231251955, 0.013766434974968433, 0.04660140350461006, 0.012102099135518074, 0.013195805251598358, -0.02945874258875847, 0.02641538716852665, 0.018581120297312737, 0.026320282369852066, 0.022670630365610123, 0.0011531469644978642, 0.002747640013694763, 0.0010996503988280892, -0.04177482798695564, 0.0050316439010202885, 0.03692447766661644, -0.01937762461602688, -0.05363916605710983, 0.028032170608639717, -0.05264056473970413, -0.054495107382535934, 0.019484616816043854, -0.04724336043000221, 0.0123160844668746, 0.014943357557058334, -0.024584617465734482, 0.017011890187859535, 0.02116084098815918, 0.003272203030064702, 0.051879722625017166, 0.0013463287614285946, -0.023062938824295998, -0.0013767920900136232, -0.003893357003107667, 0.0289118904620409, -0.0033375876955688, 0.028246156871318817, 0.008749650791287422, -0.0066395108588039875, -0.016988113522529602, -0.012060490436851978, 0.048741262406110764, -0.014848252758383751, 0.0281272754073143, 0.024679722264409065, -0.007947203703224659, 0.011680071242153645, 0.02960140071809292, 0.018854547291994095, 0.004431294277310371, -0.022409092634916306, 0.0037477274890989065, 0.028650352731347084, -0.00027862764545716345, 0.017808392643928528, -0.0027357519138604403, 0.0034743009600788355, 0.02777063101530075, -0.01603706367313862, 0.009118182584643364, -0.03485594689846039, -0.005444755777716637, -0.014051749370992184, -0.002049213508144021, -0.019769931212067604, -0.013683217577636242, -0.0045174830593168736, -0.018010491505265236, 0.043700702488422394, -0.027960840612649918, -0.02144615538418293, -0.018700001761317253, 0.009492658078670502, -0.027295107021927834, -0.014218183234333992, 0.02264685556292534, -0.0024370630271732807, 0.012506294995546341, -0.022313987836241722, 0.005370454862713814, -0.003242482664063573, 0.02988671511411667, 0.051689513027668, -0.02001958154141903, -0.021255945786833763, -0.032692309468984604, 0.009593706578016281, 0.00600052485242486, 0.0030730771832168102, 0.011234266683459282, 0.03402378037571907, 0.031051751226186752, -0.03259720653295517, -0.04557902365922928, 0.003084965283051133, 0.002637675032019615, 0.022706296294927597, -0.015953848138451576, 0.014051749370992184, 0.012161538936197758, 0.004187587648630142, -0.023704897612333298, 0.03616363927721977, 0.009320280514657497, 0.04638741537928581, 0.027366435155272484, 0.021137064322829247, 0.0010327798081561923, -0.00841678399592638, 0.02160070091485977, 0.001068444107659161, -0.04082378000020981, 0.04398601874709129, -0.007340909447520971, -0.01746363751590252, -0.027960840612649918, 0.0077510494738817215, 0.01917552575469017, 0.013445455580949783, 0.03956364095211029, 0.025606995448470116, -0.03594965487718582, -0.0014808130217716098, -0.016072727739810944, -0.006627622991800308, -0.037400003522634506, -0.01285105012357235, 0.013017483055591583, -0.01406363770365715, -0.011989161372184753, -0.03380979225039482, 0.04517482966184616, 0.021565036848187447, 0.010943007655441761, -0.017511190846562386, 0.007382518146187067, 0.026106296107172966, -0.00276993028819561, -0.01367133017629385, -0.042012590914964676, -0.0028694933280348778, -0.020566435530781746, 0.0022201051469892263, 0.002358304336667061, -0.014218183234333992, -0.022741960361599922, -0.0013715910026803613, -0.012969930656254292, 0.03685314953327179, 0.01696433685719967, -0.0036169583909213543, -0.0028709792532026768, -0.044200003147125244, 0.0002617242280393839, -0.011466084979474545, 0.060391612350940704, 0.0049276226200163364, 0.023669231683015823, 0.027937065809965134, 0.011602798476815224, -0.046696506440639496, 0.014539161697030067, 0.04824196174740791, 0.005388286896049976, 0.02798461727797985, -0.018771329894661903, 0.016286714002490044, 0.015537763014435768, -0.00523671368137002, -0.015276225283741951, -0.010306993499398232, 0.028602799400687218, 0.003652622690424323, 0.02087552659213543, 0.01909230835735798, 0.019579721614718437, -0.05306853726506233, 0.00292150373570621, -0.02917342819273472, 0.012119931168854237, -0.014313288033008575, 0.0032662590965628624, 0.018628673627972603, -0.025250351056456566, 0.06876084208488464, 0.006425525061786175, 0.006330420263111591, -0.035545457154512405, 0.011840560473501682, 0.006901049520820379, -0.00687132915481925, 0.0010208917083218694, -0.01200699433684349, 0.02577342838048935, 0.03744755685329437, -0.03428531810641289, 0.021208392456173897, 0.0012854022206738591, -0.0013671329943463206, -0.026177624240517616, 0.025012589991092682, -0.04246433824300766, -0.010675525292754173, 0.0014748689718544483, -0.0013292395742610097, -0.001777272904291749, -0.04089510813355446, -0.02094685472548008, -0.03257342800498009, -0.025678323581814766, 0.01683356799185276, -0.025226576253771782, -0.009379721246659756, -0.024370631203055382, -0.0027015735395252705, 0.03238321840763092, 0.0021071680821478367, -0.021196505054831505, 0.005792482756078243, 0.02208811417222023, 0.004621503874659538, -0.01171573530882597, 0.0006192963919602334, -0.03885035216808319, -0.020720981061458588, 0.008107692934572697, 0.005206993315368891, 0.029220981523394585, 0.0021235141903162003, 0.014360840432345867, -0.0021532343234866858, -0.04546014219522476, 0.0276993028819561, -0.026082519441843033, 0.00866049062460661, -0.004823601804673672, 0.0063660843297839165, 0.03637762367725372, 0.04189370945096016, 0.00390524510294199, -0.02103007212281227, 0.021541260182857513, 0.034261539578437805, -0.03074266016483307, -0.008226574398577213, 0.02009091153740883, -0.024584617465734482, -0.014146854169666767, -0.015204896219074726, 0.01675035059452057, 0.017439860850572586, -0.02365734428167343, -0.043914686888456345, -0.005296154413372278, -0.028103498741984367, 0.0008418270153924823, -0.01530000101774931, -0.025297904387116432, 0.01128776278346777, -0.021137064322829247, -0.01118671428412199, 0.0013292395742610097, -0.018854547291994095, 0.026819583028554916, 0.007471678778529167, -0.03017202951014042, -0.013076923787593842, 0.03671049326658249, -0.0017505246214568615, -0.012096154503524303, -0.015264336951076984, 0.039373431354761124, 0.0280559454113245, 0.005049475934356451, -0.02244475670158863, -0.004954371135681868, -0.007733217440545559, 0.021125176921486855, 0.018283916637301445, 0.002673339331522584, 0.002979458309710026, -1.7646418200456537e-05, 0.044057346880435944, 6.487380596809089e-05, 0.009332168847322464, 0.02045944146811962, 0.0025440561585128307, 0.010509091429412365, 0.026581820100545883, -0.030909093096852303, 0.039516087621450424, -0.03523636609315872, 0.005385315045714378, 0.04550769552588463, -0.011917833238840103, -0.0038993009366095066, 0.03224056214094162, 0.0015870630741119385, -0.007156644016504288, -0.02337202988564968, 0.003010664600878954, -0.021981120109558105, -0.02221888303756714, 0.021648254245519638, 0.014681818895041943, 0.011483917012810707, 0.004270804580301046, -0.003301923396065831, -0.014253847301006317, 0.011162937618792057, -0.015870630741119385, 0.015109791420400143, -0.0289118904620409, -0.03133706375956535, -0.01632237806916237, -0.025749651715159416, 0.010853846557438374, -0.026795806363224983, 0.03074266016483307, -0.019686715677380562, -0.02407342754304409, 0.015133567154407501, -0.002824912779033184, -0.00930839218199253, -0.0133503507822752, -0.034118883311748505, -0.03331049159169197, 0.014812588691711426, -0.004811713472008705, -0.0011070804903283715, -0.006990210153162479, 0.01683356799185276, 0.0010885053779929876, -0.03259720653295517, -0.011763287708163261, 0.009272728115320206, 0.01186433620750904, -0.02214755490422249, -0.004125175066292286, 0.03896923363208771, 0.014111190102994442, 0.01704755425453186, 0.0010082605294883251, 0.010853846557438374, 0.014360840432345867, 0.0018040210707113147, 0.003284091129899025, -0.005563636776059866, -0.01597762294113636, 0.002291433745995164, -0.021683918312191963, 0.006770280189812183, 0.01626293919980526, -0.021291609853506088, -0.04859860613942146, 0.011852448806166649, 0.008297902531921864, -0.006484965328127146, -0.017130769789218903, -0.016155945137143135, -0.014848252758383751, 0.011305594816803932, 0.004568007308989763, 0.018212588503956795, 0.012363636866211891, 0.038660142570734024, 0.009332168847322464, -0.011246155016124249, 0.04372447729110718, -0.002138374373316765, -0.00024723558453843, 0.010907343588769436, 0.0002944165316876024, -0.008601049892604351, -0.012446854263544083, -0.02074475772678852, 0.020851749926805496, 0.05135664716362953, -0.027104897424578667, -0.015941958874464035, 0.009801749140024185, 0.0011984703596681356, 0.012161538936197758, 0.0283412616699934, -0.0267007015645504, -0.005123776383697987, 0.003988462034612894, -0.0293398629873991, -0.011495805345475674, -0.051023781299591064, -0.011038112454116344, -0.021826574578881264, 0.020506994798779488, -0.0004409746907185763, -0.014218183234333992, -0.02534545585513115, -0.0037447556387633085, -0.018878323957324028, -0.03216923400759697, 0.010889511555433273, -0.034689512103796005, -0.0058519234880805016, -0.02912587672472, -0.000982255325652659, -0.02250419743359089, 0.008797203190624714, -0.011775176040828228, -0.015466434881091118, -0.011168882250785828, 0.024679722264409065, -0.0065800705924630165, 0.017725177109241486, -0.007233916781842709, 0.02243286930024624, 0.025725876912474632, -0.002659965306520462, -0.019865036010742188, -0.007941259071230888, 0.0036674828734248877, 0.005489335861057043, 0.023039162158966064, -0.018165037035942078, 0.01570419780910015, 0.003988462034612894, -0.004654196090996265, 0.0008173077367246151, 0.0508335717022419, -0.017701400443911552, 0.0016316435066983104, -0.0029958044178783894, 0.02158881351351738, -0.020197903737425804, 0.005507168360054493, 0.011804896406829357, -0.02250419743359089, 0.02762797474861145, 0.02967272885143757, 0.014646154828369617, 0.009439161978662014, -0.023609792813658714, 0.01076468639075756, 0.046339862048625946, -0.004728497005999088, 0.017653847113251686, -0.038374826312065125, 0.01910419762134552, 0.0014273165725171566, 0.007721329107880592, 0.006758392322808504, -0.012399301864206791, 0.006003497168421745, -0.02328881248831749, 0.004047902300953865, -0.003688286989927292, -0.019270630553364754, -0.014004196971654892, 0.002203758805990219, 0.017439860850572586, 0.01079440675675869, 0.02174335904419422, 0.0011115384986624122, 0.02983916364610195, 0.033904898911714554, 0.009278671815991402, 0.0055220285430550575, -0.027723079547286034, 0.03138461709022522, 0.020792309194803238, -0.02037622593343258, -0.013766434974968433, 0.042297907173633575, -0.018509792163968086, -0.011210490018129349, -0.012791609391570091, 0.0271286740899086, -0.024025876075029373, 0.012827273458242416, -0.04020559787750244, -0.04565035179257393, 0.06828531622886658, -0.007120979484170675, -0.006318531930446625, 0.02067342773079872, 0.003622902324423194, -0.01660769432783127, 0.0034832169767469168, -0.031218184158205986, 0.007144755683839321, -0.027485316619277, -0.019579721614718437, 0.026510491967201233, 0.004226224031299353, -0.010693357326090336, 0.03613986447453499, -0.01190000120550394, -0.033262938261032104, -0.008820979855954647, -0.03685314953327179, 0.050548255443573, -0.005278321914374828, 0.03478461876511574, -0.02898321859538555, 0.031051751226186752, -0.003949825651943684, 0.03395244851708412, -0.01033671386539936, 0.027081120759248734, -0.010675525292754173, 0.009451049380004406, -0.004021154250949621, 0.00873181875795126, 0.0017371504800394177, 0.00941538531333208, 0.038731470704078674, -0.04355804622173309, 7.430070400005206e-05, 0.04025315120816231, -0.007192308083176613, 0.013469232246279716, 0.04118042439222336, -0.01953217014670372, -0.00902307778596878, -0.00873181875795126, 0.005881643854081631, 0.02371678501367569, -0.02577342838048935, 0.0017505246214568615, 0.015537763014435768, -0.011733567342162132, 0.042297907173633575, -0.03949230909347534, 0.008815035223960876, -0.023704897612333298, -0.01125804241746664, 0.025440560653805733, 0.00862482562661171, -0.02300349809229374, -0.0031919581815600395, -0.04688671603798866, 0.027390211820602417, -0.009742308408021927, -0.012803497724235058, 0.005637937691062689, 0.03342937305569649], [0.043565746396780014, 0.03269541636109352, -0.007044606376439333, -0.02676422707736492, 0.0021661503706127405, 0.0068915775045752525, -0.0036463092546910048, 0.0004762364842463285, 0.044621117413043976, -0.022542739287018776, 0.015957221388816833, -0.05707450211048126, -0.00958805251866579, 0.010543163865804672, 0.01321325358003378, 0.023218177258968353, 0.0056620691902935505, -0.002902272157371044, -0.029276011511683464, 0.025919929146766663, 0.014870187267661095, -0.005503763444721699, 0.011028634384274483, -0.01836346834897995, 0.013202700763940811, 0.03423625975847244, 0.03689579665660858, 0.05040455237030983, 0.014321394264698029, -0.017255328595638275, -0.01973545178771019, -0.03651586174964905, 0.023745864629745483, -0.054583825170993805, 0.11254484206438065, -0.02017870731651783, -0.04677407443523407, 0.00198805658146739, 0.03797227516770363, -0.03704354912042618, 0.020210368558764458, -0.026046574115753174, -0.059185247868299484, -0.018880600109696388, -0.03805670514702797, -0.03022584691643715, 0.035333845764398575, -0.0441567525267601, -0.03793006017804146, 0.01755083166062832, 0.03394075483083725, -0.005487932823598385, 0.03991415724158287, 0.03651586174964905, -0.01539787370711565, 0.01932385563850403, -0.02788292057812214, 0.004242594353854656, 0.017540277913212776, 0.025919929146766663, 0.013814816251397133, 0.006121155805885792, -0.018574543297290802, 0.04225708544254303, 0.020199814811348915, -0.02046365849673748, 0.015988880768418312, 0.006020895671099424, -0.059143032878637314, 0.03731794282793999, 0.008537957444787025, -0.026405401527881622, 0.028389498591423035, -0.03216772899031639, -0.01735031045973301, 0.03560824319720268, 0.023070426657795906, 0.03438401222229004, 0.024970095604658127, 0.008648770861327648, 0.0180046409368515, 0.015323997475206852, -0.0018139200983569026, -0.006759656127542257, -0.061084914952516556, -0.0004323726170696318, -0.0274396650493145, 0.0016147186979651451, -0.012094560079276562, 0.007899457588791847, -0.04240483418107033, -0.01787799783051014, 0.015039047226309776, 0.02809399552643299, 0.06606627255678177, 0.010791175998747349, -0.006121155805885792, 0.007477308623492718, -0.08662491291761398, 0.0397241935133934, 0.00287061114795506, -0.01909167505800724, -0.04295362904667854, -0.03932315111160278, 0.05521705001592636, 0.012833320535719395, -0.06707942485809326, -0.004503798671066761, -0.026785334572196007, -0.029930341988801956, -0.015883345156908035, 0.007609230000525713, 0.01706536114215851, 0.026257649064064026, -0.0034273196943104267, 0.029107151553034782, 0.031302325427532196, -0.02171955071389675, -0.03991415724158287, 0.007994440384209156, 0.044578902423381805, 0.004218848422169685, -0.020484765991568565, -0.0700344666838646, 0.010986419394612312, 0.004102757666260004, -0.025603318586945534, -0.04690071940422058, -0.01420530304312706, -0.02623654156923294, 0.0033719127532094717, -0.04491662234067917, 0.002027632901445031, -0.04795609042048454, -0.015165691263973713, -0.00984661839902401, -0.0478716604411602, 0.011820163577795029, -0.009936325252056122, 0.021656228229403496, -0.02073805406689644, -0.014965170994400978, 0.00912368856370449, 0.022289451211690903, -0.0036489476915448904, -0.05779215693473816, 0.023471467196941376, 0.02146626077592373, -0.023154854774475098, -0.003957644104957581, -0.008501019328832626, -0.042193762958049774, 0.004849432967603207, 0.01739252544939518, -0.00490220170468092, 0.0022189191076904535, -0.022331666201353073, 0.0005880399257875979, 0.038204457610845566, 0.00934531632810831, -0.05943853408098221, 0.002786181401461363, -0.020125938579440117, 0.014775204472243786, 0.00653802789747715, -0.048124950379133224, -0.06070498004555702, -0.010923096910119057, -0.011651303619146347, -0.02099134400486946, -0.01329768355935812, -0.008801800198853016, -0.030732424929738045, 0.04947582632303238, -0.005651515442878008, -0.003559241071343422, 0.0009551114053465426, 0.03419404476881027, -0.02288045920431614, -0.052768588066101074, -0.018553435802459717, -0.011556320823729038, 0.008532680571079254, -0.010801729746162891, 0.0009683035314083099, 0.05796101689338684, 0.010215998627245426, 0.026447614654898643, -0.02340814471244812, -0.0001079282519640401, -0.024231335148215294, -0.04160275310277939, -0.027714060619473457, 0.012221205048263073, 0.016537675634026527, 0.0008878314401954412, -0.01002603117376566, 0.004179271869361401, -0.002373267197981477, 0.07569126039743423, 0.018511220812797546, -0.04854710027575493, 0.059311892837285995, 0.019914863631129265, -0.05720114707946777, 0.0009683035314083099, -0.03239991143345833, 0.06771264970302582, 0.011851824820041656, 0.006063110660761595, -0.02575107105076313, 0.021212970837950706, 0.0033745511900633574, 0.05952296406030655, -0.01285442803055048, 0.02720748260617256, -0.013012733310461044, -0.031260110437870026, -0.014184195548295975, 0.016284385696053505, -0.06678391993045807, -0.01622106321156025, 0.01384647749364376, 0.0052161747589707375, -0.021782873198390007, 0.0059470199048519135, 0.02663758210837841, 0.0009742400143295527, -0.0017717053415253758, -0.07396045327186584, -0.05221979320049286, 0.039808619767427444, 0.002728136023506522, 0.01792021282017231, -0.017899105325341225, -0.003630478633567691, -0.029001615941524506, -0.009208118543028831, -0.025772176682949066, -0.043206918984651566, 0.004936501383781433, 0.015017939731478691, -0.04261590912938118, 0.0560191310942173, 0.004474776331335306, -0.013149932026863098, 0.02490677312016487, -0.02026313729584217, -0.02478012815117836, 0.01106029562652111, 0.007239850237965584, 0.0016991484444588423, -0.016252724453806877, 0.005118553061038256, 0.01570393145084381, -0.03341306746006012, 0.03337085247039795, -0.012337295338511467, 0.014163088984787464, -0.005052592139691114, -0.06049390882253647, -0.019482161849737167, -0.03619924932718277, 0.007983887568116188, -0.08472524583339691, 0.05154435336589813, 0.005340180825442076, -0.029318226501345634, 0.023112641647458076, -0.01637936942279339, -0.014901848509907722, 0.030331382527947426, 0.049940191209316254, -0.0028758880216628313, 0.017403079196810722, 0.025160061195492744, 0.027587417513132095, -0.00767782935872674, -4.934172011417104e-06, 0.01360374130308628, 0.03398296982049942, -0.038879893720149994, 0.04419896751642227, -0.017054807394742966, 0.021054666489362717, -0.019756559282541275, -0.0034932803828269243, -0.01716034486889839, 0.013814816251397133, 0.012706675566732883, 0.05310630425810814, -0.004477414768189192, -0.002200450049713254, 0.014363609254360199, 0.024970095604658127, -0.021698443219065666, -0.048124950379133224, 0.023872507736086845, -0.0008258283487521112, -0.03539716824889183, 0.008785969577729702, 0.036093711853027344, 0.06184478476643562, 0.026785334572196007, -0.001151014817878604, 0.030943499878048897, 0.014595790766179562, -0.012337295338511467, -0.02323928475379944, -0.023661434650421143, 0.012558923102915287, 0.010226552374660969, -0.03607260435819626, -0.015176245011389256, 0.027249697595834732, -0.037191297858953476, -0.05483711510896683, 0.0007836135337129235, 0.004482691176235676, -0.06176035478711128, -0.02805178053677082, 0.03457397595047951, 0.0058942511677742004, -0.01816294714808464, 0.005487932823598385, 0.011028634384274483, -0.00113518419675529, 0.015418981201946735, -0.02135016955435276, -0.012295080348849297, -0.014163088984787464, 0.010606485418975353, -0.0410117469727993, 0.025012310594320297, 0.03689579665660858, -0.00539822643622756, 0.033603034913539886, 0.0032584602013230324, 0.008121085353195667, -0.04571870341897011, -0.016316046938300133, 0.0061158789321780205, 0.0009267483255825937, 0.04390346258878708, 0.002168788807466626, -0.002551361219957471, -0.04369238764047623, -0.01493350975215435, -0.021086327731609344, 0.05124885216355324, -0.0007249084301292896, -0.012073452584445477, -0.04592977836728096, 0.016643211245536804, -0.040737349539995193, -0.0417293980717659, 0.011450783349573612, -0.034405119717121124, -0.016759302467107773, -0.018996691331267357, 0.020252583548426628, -0.02171955071389675, -0.00946668442338705, 0.03849995881319046, -0.0005451654433272779, 0.029888126999139786, -0.005556532181799412, 0.03689579665660858, -0.017181452363729477, 0.02126573957502842, 0.023344822227954865, -0.00825300719588995, -0.029233796522021294, -0.004422007594257593, 0.02283824421465397, 0.044874407351017, 0.018901707604527473, 0.034405119717121124, -0.03366635739803314, 0.0010362431639805436, 0.010284597054123878, -0.02323928475379944, -0.030458027496933937, -0.012949410825967789, 0.04833602532744408, -0.005545978434383869, -0.015672270208597183, 0.06214028596878052, -0.017571939155459404, -0.03168226033449173, -0.024083582684397697, -0.042721446603536606, 0.014785758219659328, 0.005609300918877125, 0.02925490401685238, -0.0009406000608578324, 0.015450642444193363, 0.02748188003897667, -0.031175680458545685, -0.038964323699474335, 0.006759656127542257, -0.07092098146677017, 0.008231899701058865, -0.039893049746751785, -0.02416801266372204, -0.033560819923877716, 0.008749031461775303, 0.011915146373212337, 0.020442551001906395, 0.016495460644364357, 0.013867584057152271, 0.0073453872464597225, 0.014532468281686306, 0.02437908761203289, 0.03442622721195221, -0.04749172925949097, 0.044874407351017, -0.009624989703297615, 0.013825369998812675, -0.013002179563045502, 0.05475268512964249, -0.03322310373187065, -0.0307957474142313, 0.0015461195725947618, -0.004487968049943447, 0.011250262148678303, -0.015471749939024448, -0.037149086594581604, -0.011155279353260994, 0.011556320823729038, 0.01402589026838541, -0.03402518481016159, 0.07324279844760895, 0.0011655261041596532, -0.03717019036412239, -0.016717087477445602, -0.021740658208727837, -0.002327094553038478, 0.012801659293472767, 0.018173500895500183, 0.044536687433719635, 0.014901848509907722, 0.0007024818332865834, 0.038204457610845566, 0.005772883538156748, 0.003189861075952649, -0.04884260520339012, 0.024062475189566612, -0.03474283590912819, -0.015039047226309776, 0.004482691176235676, 0.05504819005727768, -0.036705829203128815, 0.00516604445874691, 0.02082248404622078, -0.01484907977283001, 0.0215084757655859, 0.01489129476249218, -0.030162524431943893, 0.042637016624212265, 0.016326600685715675, 0.03554492071270943, 0.02328149974346161, 0.02421022765338421, -0.010295150801539421, 0.06847251951694489, 0.02309153415262699, -0.006796593777835369, -0.01812073215842247, -0.05711671710014343, -0.021930623799562454, -0.015366212464869022, 0.012580030597746372, -0.004461584147065878, 0.010427072644233704, -0.023070426657795906, -0.018785616382956505, 0.022943781688809395, -0.002145043108612299, 0.06636177748441696, -0.04411453753709793, -0.020833037793636322, -0.030415812507271767, 0.0010388816008344293, 0.022099483758211136, -0.00699183763936162, 0.02558221109211445, -0.013318791054189205, -0.032505448907613754, -0.011461337096989155, -0.043607961386442184, -0.03748680278658867, -0.006664672400802374, -0.006031449418514967, -0.031175680458545685, 0.025856606662273407, 0.014089212752878666, 0.025941036641597748, -0.01711812987923622, 0.05589248612523079, 0.05040455237030983, 0.03596706688404083, -0.02535002864897251, 0.038478851318359375, 0.03164004534482956, -0.028199533000588417, -0.026257649064064026, -0.016252724453806877, 0.01466966699808836, -0.0348694808781147, -0.006812424398958683, 0.01637936942279339, 0.013044394552707672, -0.027798490598797798, -0.018585095182061195, -0.0335819274187088, -0.04147610813379288, 0.011777948588132858, -0.0330120287835598, -0.0075617386028170586, -0.03062688745558262, -0.02070639282464981, 0.012368956580758095, -0.02627875655889511, 0.036093711853027344, -0.022015053778886795, -0.007440370507538319, -0.09228170663118362, -0.03261098638176918, -0.024062475189566612, -0.042721446603536606, -0.021782873198390007, -0.029001615941524506, -0.011165833100676537, -0.021371277049183846, 0.012326741591095924, 0.03579821065068245, 0.025539996102452278, -0.010516779497265816, 0.0013851753901690245, 0.030246954411268234, 0.02752409502863884, -0.003356082132086158, -0.02235277369618416, 0.024632375687360764, 0.02252163179218769, 0.011693518608808517, 0.0013000860344618559, 0.006596073508262634, -0.010136845521628857, -0.028431713581085205, 0.018658971413969994, -0.008464081212878227, -0.007551184855401516, -0.007683106232434511, 0.031217895448207855, 0.007213465869426727, -0.009851895272731781, -0.047196224331855774, 0.015492856502532959, 0.023154854774475098, 0.016126079484820366, 0.026827549561858177, 0.016442691907286644, 0.0164321381598711, 0.06986560672521591, -0.004324385430663824, -0.0003360699338372797, 0.011366353370249271, 0.04782944545149803, -0.05580805614590645, 0.023703649640083313, -0.014036444015800953, -0.01638992317020893, 0.013434882275760174, 0.04647856950759888, 0.00484151765704155, -0.024547945708036423, -0.03149229288101196, -0.0004323726170696318, 0.011028634384274483, -0.007139589637517929, 0.009994369931519032, -0.013424328528344631, -0.06593962758779526, 0.029149366542696953, -0.020843591541051865, 0.0387321412563324, -0.012886088341474533, -0.010010200552642345, -0.010965311899781227, -0.006342784035950899, 0.026848657056689262, -0.01613663323223591, 0.023070426657795906, 0.00722401961684227, 0.0036067329347133636, 0.0011800375068560243, -0.030162524431943893, -0.008411312475800514, 0.0295081939548254, 0.006506366655230522, 0.011577427387237549, 0.0025632341857999563, -0.05800323188304901, -0.024146905168890953, -0.00924505665898323, -0.004118588287383318, 0.011028634384274483, 0.027988458052277565, 0.012527262791991234, 0.004392984788864851, 0.03748680278658867, -0.007403432857245207, -0.03309645876288414, -0.017867444083094597, -0.013287129811942577, -0.0044642225839197636, -0.026911979541182518, -0.0001234290248248726, -0.024526838213205338, -0.008179130963981152, 0.008442973718047142, 0.02328149974346161, -0.0017967703752219677, 0.013930906541645527, 0.030415812507271767, -0.013202700763940811, 0.03296981379389763, 0.015925560146570206, 0.02841060608625412, 0.039133183658123016, 0.04381903260946274, -0.050826702266931534, -0.044536687433719635, 0.02570885606110096, 0.02513895370066166, -0.015788361430168152, 0.019703790545463562, 0.04424118250608444, -0.0064008296467363834, 0.0025460843462496996, 0.021054666489362717, -0.04419896751642227, 0.09253499656915665, 0.03305424377322197, -0.05935410410165787, 0.0597340390086174, -0.001616037916392088, 0.008564341813325882, 0.02313374914228916, 0.008347989991307259, 0.00410539610311389, -0.031977761536836624, 0.00722401961684227, 0.03698022663593292, 0.01577780768275261, 0.015672270208597183, 0.0056620691902935505, -0.018732847645878792, -0.05948074907064438, -0.004664742853492498, 0.018300145864486694, -0.045254338532686234, 0.016759302467107773, 0.02610989660024643, 0.02389361523091793, 0.008110531605780125, -0.016959823668003082, 0.002057974925264716, 0.0024695699103176594, -0.02513895370066166, -0.021297400817275047, -0.0011523340363055468, 0.039133183658123016, 0.040863994508981705, -0.0047016809694468975, -0.016653764992952347, 0.002121297176927328, 0.03628367930650711, -0.04010412469506264, -0.021740658208727837, -0.046351924538612366, 0.013572080060839653, -0.015809468924999237, -0.016780409961938858, -0.004081650171428919, -0.0022690491750836372, -0.0009960071183741093, -0.03379300236701965, -0.005210897885262966, -0.013730386272072792, 0.021698443219065666, -0.02663758210837841, 0.00023465530830435455, 0.005577639676630497, -0.0024616545997560024, 0.018067963421344757, -0.01577780768275261, 0.018796170130372047, -0.0372968353331089, 0.028178425505757332, -0.00813163910061121, -0.03142897039651871, -0.03277984634041786, -0.02336592972278595, -0.026173219084739685, 0.014690774492919445, 0.0005131745128892362, -0.018257930874824524, -0.002652940573170781, -0.0227960292249918, -0.009920494630932808, -0.028220640495419502, 0.024400195106863976, 0.005862589925527573, 0.013857030309736729, 0.0028653342742472887, 0.032990921288728714, -0.003862660611048341, -0.010284597054123878, -0.016242170706391335, -0.0030236400198191404, 0.019946524873375893, 0.0011153960367664695, -0.006205585785210133, -0.015756700187921524, 0.0054826559498906136, -0.007044606376439333, 0.028558358550071716, 0.027904028072953224, -0.00029649349744431674, -0.00942446943372488, 0.03216772899031639, -0.01067508477717638, -0.01561950147151947, -0.014690774492919445, 0.02748188003897667, -0.009086750447750092, -0.051037777215242386, 0.021846193820238113, -0.035819318145513535, 0.01820516213774681, -0.0009709419682621956, 0.019271086901426315, -0.04265812411904335, -0.027334127575159073, 0.04614085331559181, 0.00455920584499836, -0.014310840517282486, -0.008342713117599487, 0.004625166766345501, -0.023682542145252228, -0.01303384080529213, 0.025223383679986, -0.029888126999139786, -0.020548086613416672, -0.010996973142027855, -0.008158023469150066, -0.012442832812666893, 0.010089353658258915, -0.007139589637517929, -0.013128824532032013, 0.008068316616117954, 0.023387037217617035, -0.02239498868584633, -0.026257649064064026, 0.002941848710179329, -0.030542457476258278, 0.018817277625203133, -0.004527544602751732, 0.017023146152496338, 0.01824737712740898, -0.011260815896093845, -0.013128824532032013, 0.007514246739447117, 0.011492998339235783, -0.006939068902283907, -0.03624146431684494, -0.023956937715411186, 0.012886088341474533, -0.04964468628168106, 0.0021898963022977114, 0.0285794660449028, -0.01750861667096615, 0.02788292057812214, 0.002481442876160145, 0.0455920584499836, 0.020843591541051865, -0.017339756712317467, -0.011957361362874508, -0.06349116563796997, -0.014648559503257275, -0.029318226501345634, -0.01710757613182068, -0.025328921154141426, -0.004406176973134279, -0.04274255409836769, 0.024927880614995956, -0.01719200611114502, -0.012337295338511467, 0.03991415724158287, -0.05348623916506767, -0.056356851011514664, 0.0047544497065246105, 0.03370857238769531, -0.048251595348119736, -0.021782873198390007, 0.027777383103966713, -0.04411453753709793, 0.0024629738181829453, 0.04799830541014671, -0.009535283781588078, -0.01281221304088831, 0.03425736725330353, -0.032632093876600266, -0.06315344572067261, 0.02526559866964817, -0.003197776386514306, -0.016358261927962303, -0.021529583260416985, -0.03138675540685654, 0.012147328816354275, 0.007651444990187883, 0.005076338071376085, -0.026911979541182518, 0.008453527465462685, -0.04048405960202217, -0.00787307322025299, -0.054710470139980316, 0.021402938291430473, 0.004714873153716326, 0.028832755982875824, 0.007999717257916927, -0.010084076784551144, 0.01756138540804386, 0.0007935076137073338, 0.02147681452333927, 0.04875817522406578, -0.013192147016525269, 0.003923344425857067, 0.00829522218555212, -0.01544008869677782, -0.008326882496476173, 0.055428121238946915, 0.015366212464869022, 0.03233658894896507, 0.009471961297094822, -0.019988739863038063, -0.015566732734441757, 0.014680220745503902, -0.014922956004738808, -0.022057268768548965, -0.004928586073219776, -0.03632589429616928, -0.02461126819252968, 0.003026278456673026, -0.011492998339235783, -0.05711671710014343, 0.041877150535583496, 0.00843769684433937, -0.010020754300057888, 0.0075248004868626595, -0.024632375687360764, -0.022416096180677414, 0.011894039809703827, 0.04508547857403755, -0.006063110660761595, -0.03548159822821617, -0.014057551510632038, 0.004477414768189192, -0.010727853514254093, 0.011851824820041656, -0.07298950850963593, -0.041919365525245667, -0.012970518320798874, 0.022141698747873306, 0.05496376007795334, 0.02433687262237072, 0.0038362762425094843, -0.001825793064199388, -0.001022391370497644, -0.014004782773554325, -0.04411453753709793, 0.027418557554483414, -0.0009254291071556509, -0.0005421972018666565, 0.03881657123565674, -0.012601138092577457, 0.006068387534469366, 0.01243227906525135, -0.0003459640429355204, 0.020843591541051865, 0.01493350975215435, -0.02566664107143879, 0.004759726580232382, 0.001998610096052289, 0.0248645581305027, 0.011355799622833729, 0.02739745005965233, -0.027946243062615395, -0.01892281509935856, -0.0023442443925887346, 0.0025724684819579124, 0.027334127575159073, -0.010817560367286205, 0.003854745300486684, -0.0017347672255709767, -0.020695839077234268, 0.017783014103770256, 0.029655946418642998, -0.013223807327449322, -0.012189543806016445, 0.017772460356354713, 0.02252163179218769, 0.008601279929280281, -0.07379159331321716, 0.017097022384405136, 0.03180890530347824, -0.024674590677022934, 0.025983251631259918, 0.022015053778886795, 0.0013719832058995962, 0.015007385984063148, -0.010157953016459942, -0.033117566257715225, 0.03638921678066254, -0.00346161937341094, 0.004677935037761927, 0.03138675540685654, -0.039576441049575806, 0.006685779895633459, -0.01325546856969595, -0.006136986427009106, -0.009667204692959785, 0.0328642763197422, 0.011767394840717316, 0.01285442803055048, 0.007482585497200489, 0.01535565871745348, -0.02849503606557846, -0.0017756628803908825, 0.010611762292683125, 0.002621279563754797, 0.0023547981400042772, 0.01642158441245556, 0.008749031461775303, 0.030774639919400215, 0.014680220745503902, -0.025054525583982468, 0.03231548145413399, 0.009134242311120033, -0.009788572788238525, -0.013065502047538757, -0.02332371473312378, 0.002514423104003072, -0.02425244264304638, -0.0027677123434841633, -0.02046365849673748, -0.026827549561858177, 0.004978715907782316, -0.018046855926513672, -0.0061158789321780205, -0.03313867375254631, -0.010326812043786049, 0.04880039021372795, -0.0035697948187589645, 0.022057268768548965, 0.014353055506944656, -0.03757123276591301, -0.018141839653253555, 0.017255328595638275, 0.01161964237689972, 0.017223667353391647, -0.005390311125665903, -0.020168153569102287, -0.010558994486927986, -0.002825757721439004, -0.05390838906168938, -0.009672481566667557, 0.01699148491024971, 0.04270033910870552, 0.00664884177967906, 0.004662104416638613, -0.029233796522021294, 0.026131004095077515, 0.039090968668460846, -0.011345245875418186, -0.03406739979982376, -0.009208118543028831, -0.0037122699432075024, 0.01783578284084797, 0.005725391674786806, -0.007202912122011185, -0.03503834083676338, 0.029888126999139786, 0.026088789105415344, 0.009387531317770481, 0.029191581532359123, -0.009403361938893795, -0.020875252783298492, -0.025202276185154915, -0.03231548145413399, -0.00020365376258268952, -0.007915288209915161, 0.0051475754007697105, 0.005429887678474188, -0.0031555613968521357, -0.016073310747742653, 0.03514387831091881, 0.0037069933023303747, -0.019144443795084953, -0.02562442608177662, 0.010807006619870663, 0.016928162425756454, -0.0075828456319868565, 0.009746357798576355, 0.018732847645878792, -0.0023059872910380363, 0.009208118543028831, -0.028685003519058228, 0.009735804051160812, 0.02429465763270855, 0.030690209940075874, -0.015503410249948502, -0.017529724165797234, 0.03505944833159447, 0.002316541038453579, 0.022183913737535477, -0.016041649505496025, -0.03142897039651871, 0.0031239003874361515, 0.008479911834001541, 0.033075351268053055, 0.008342713117599487, 0.013793708756566048, -0.01735031045973301, -0.01577780768275261, -0.013107717037200928, -0.001138482242822647, -0.010601208545267582, 0.011830717325210571, -0.010601208545267582, 0.02619432657957077, 0.009493068791925907, 0.014806865714490414, 0.036135926842689514, 0.0037914228159934282, 0.005158129148185253, 0.023175962269306183, 0.01371983252465725, -0.009820234030485153, -0.033961862325668335, -0.012675014324486256, -0.0037782308645546436, -0.004757088143378496, -0.005820374935865402, -0.003846829989925027, -0.00152105453889817, -0.017614154145121574, -0.007371771614998579, 0.03332863748073578, 0.012580030597746372, 0.015651162713766098, 0.02526559866964817, -0.00787307322025299, -0.020284244790673256, 0.020125938579440117, -0.004506437107920647, -0.01795187219977379, 0.020009847357869148, 0.025286706164479256, 0.07041440159082413, -0.04111728072166443, 0.000725568039342761, 0.0014630090445280075, -0.025223383679986, -0.011535213328897953, -0.011123618111014366, 0.03071131743490696, 0.018384575843811035, 0.020368674769997597, 0.008442973718047142, 0.014574683271348476, 0.000893767923116684, -0.005229366943240166, -0.018374022096395493, 0.02876943349838257, 0.0261521115899086, -0.0318722277879715, -0.026890872046351433, 0.04846267029643059, 0.008374374359846115, 0.028241747990250587, 0.0014379440108314157, 0.02142404578626156, 0.0005013015470467508, -0.014680220745503902, -0.0007486543036065996, -0.016759302467107773, 0.05525926500558853, 0.04698514938354492, 0.03963976353406906, 0.01049567200243473, 0.001802047248929739, -0.024801235646009445, -0.04284809157252312, 0.02376697212457657, 0.01969323679804802, 0.04080067202448845, 0.036093711853027344, 0.007303172256797552, -0.03180890530347824, 0.009097304195165634, 0.020643070340156555, 0.02332371473312378, 0.013455989770591259, 0.050995562225580215, 0.00479138782247901, 0.0180046409368515, -0.008949552662670612, 0.02889607846736908, -0.017002038657665253, 0.001794131938368082, -0.002229472855105996, -0.015176245011389256, -0.006638288032263517, 0.03567156568169594, 0.02703862451016903, 0.020484765991568565, -0.013751493766903877, -0.0012149966787546873, -0.01977766677737236, -0.02323928475379944, 0.0050974455662071705, -0.013424328528344631, 0.011471890844404697, -0.04922253638505936, -0.008543234318494797, 0.025371136143803596, 0.009350593201816082, 0.007709490600973368, -0.01586223766207695, 0.009915217757225037, -0.028262855485081673, -0.00669105676934123, -0.01243227906525135, 0.043080274015665054, 0.030479134991765022, -0.030415812507271767, 0.01876450888812542, 0.027270805090665817, 0.035819318145513535, 0.010870329104363918, -0.0052082594484090805, 0.008865122683346272, -0.003197776386514306, -0.000862106797285378, 0.021603459492325783, 0.04563427343964577, 0.0012915111146867275, -0.008057762868702412, -0.011250262148678303, -0.036135926842689514, -0.006068387534469366, 0.0011292477138340473, -0.025033418089151382, 0.01513403095304966, -0.015830576419830322, -0.003994581755250692, 0.01626327820122242, -0.02752409502863884, -0.05897417291998863, -0.00207380554638803, -0.012337295338511467, -0.009978539310395718, 0.03928093612194061, 0.0015751422615721822, -0.0021081049926579, -0.004168718121945858, -0.009471961297094822, 0.0318722277879715, 0.019798774272203445, -0.05070005729794502, -0.050826702266931534, -0.0059522963128983974, 0.023598112165927887, 0.020970236510038376, 0.020516427233815193, 0.009635543450713158, -0.016695979982614517, 0.016780409961938858, -0.006543304771184921, 0.022985996678471565, -0.005189790390431881, 0.02385140024125576, -0.018342360854148865, 0.012896642088890076, 0.028832755982875824, 0.021371277049183846, -0.015566732734441757, -0.021001897752285004, -0.023598112165927887, 0.0006998433964326978, 0.002214961452409625, -0.0077464282512664795, -0.01462745200842619, -0.035376060754060745, -0.005709561053663492, -0.022057268768548965, 0.021888408809900284, -0.0006081579485908151, 0.0020619325805455446, 0.00569900730624795, -0.054879330098629, 0.00908147357404232, -0.01682262495160103, 0.03039470501244068, 0.012991625815629959, 0.010696192272007465, -0.022416096180677414, -0.009102581068873405, 0.029043829068541527, 0.00022129826538730413, 0.009778019040822983, -0.04563427343964577, -0.011091956868767738, 0.03797227516770363, -0.017603600397706032, -0.00477291876450181, 0.022584954276680946, 0.030943499878048897, 0.037761200219392776, -0.02748188003897667, 0.03655807673931122, 0.021803980693221092, 0.015345104970037937, 0.010664531029760838, -0.007783366367220879, -0.0017901742830872536, -0.048124950379133224, -0.002171427244320512, 0.03288538381457329, 0.022774921730160713, 0.008564341813325882, -0.02328149974346161, -0.014004782773554325, -0.003957644104957581, -0.024885665625333786, 0.004039435181766748, 0.011851824820041656, -0.042193762958049774, -0.002514423104003072, -0.0005840822705067694, 0.01610497198998928, 0.03548159822821617, 0.016622105613350868, 0.030246954411268234, 0.03145007789134979, 0.008722647093236446, -0.04989797621965408, 0.02332371473312378, 0.003738654311746359, 0.0032162454444915056, -0.0038336378056555986, 0.03227326646447182, 0.012981072068214417, 0.022247236222028732, -0.04753394424915314, -0.020833037793636322, -0.023175962269306183, -0.02328149974346161, 0.015883345156908035, -0.014638005755841732, -0.009065642952919006, 0.0014722435735166073, -0.007097374647855759, -0.00020761140331160277, 0.010479841381311417, 0.0015144584467634559, -0.0018376660300418735, 0.0006094771670177579, -0.019767113029956818, -0.02376697212457657, -0.013698725029826164, 0.0003842212609015405, -0.006543304771184921, -0.047322869300842285, -0.014363609254360199, -0.05023569241166115, 0.011144725605845451, -0.0023521597031503916, 0.012558923102915287, -0.045380983501672745, 0.0192921943962574, -0.022205021232366562, 0.005793990567326546, 0.006527474150061607, -0.0002913815260399133, -0.0024379086680710316, -0.017582492902874947, 0.004546013660728931, 0.02494898810982704, -0.015207906253635883, 0.003184584202244878, 0.03282206133008003, 0.009899387136101723, -0.021054666489362717, 0.009873002767562866, -0.002676686504855752, -0.0024867195170372725, 0.005403503309935331, -0.012358402833342552, 0.011820163577795029, 0.020938575267791748, -0.0015012662624940276, 0.04884260520339012, -0.014553575776517391, -0.0006701610400341451, 0.018658971413969994, 0.014986278489232063, -0.04584534838795662, -0.0019840989261865616, -0.007836135104298592, 0.04766058549284935, 0.010791175998747349, -0.026088789105415344, 0.015260674990713596, 0.03552381321787834, 0.019883204251527786, -0.03514387831091881, 0.00030968565260991454, -0.010041861794888973, 0.005672622937709093, -0.00984661839902401, 0.002778266090899706, 0.028790540993213654, 0.0012123582419008017, 0.0011186940828338265, 0.005793990567326546, -0.017265882343053818, -0.0261521115899086, -0.04782944545149803, 0.01613663323223591, -0.03849995881319046, 0.031618937849998474, -0.007113205268979073, 0.01606275700032711, 0.01739252544939518, 0.007619783747941256, -0.009297824464738369, 0.0018706463743001223, 0.0020988704636693, -0.018395129591226578, 0.004862625151872635, -0.0025962144136428833, 0.013920352794229984, -0.03159783035516739, 0.028706111013889313, -0.021297400817275047, -0.008099977858364582, 0.031830012798309326, 0.011313584633171558, -0.010094630531966686, 0.011271369643509388, 0.023619219660758972, -0.022183913737535477, -0.033391959965229034, -0.018912261351943016, 0.046351924538612366, -0.0033666358795017004, 0.014194749295711517, 0.0002869291929528117, 0.012105113826692104, -0.03833110257983208, 0.06163370981812477, -0.029634838923811913, 0.035734888166189194, -0.012622245587408543, -0.0026094065979123116, -0.01863786391913891, 0.011039188131690025, 0.0009293867042288184, -0.026342079043388367, -0.014796311967074871, 0.003588263876736164, -0.013065502047538757, 0.011091956868767738, -0.023302607238292694, -0.009128965437412262, 0.01420530304312706, 0.007450924254953861, 0.026848657056689262, 0.014131427742540836, 0.004406176973134279, 0.013540418818593025, -0.029634838923811913, 0.017202559858560562, -0.01170407235622406, 0.015630055218935013, -0.028874970972537994, 0.023197069764137268, 0.008601279929280281, 0.029972556978464127, 0.021603459492325783, -0.04478997737169266, -0.011239709332585335, -0.015967775136232376, -0.017487509176135063, 0.010511502623558044, -0.0043745157308876514, 0.0032267989590764046, -0.008960106410086155, -0.009044535458087921, 0.02482234314084053, -0.02676422707736492, -0.006395552773028612, -0.0025474035646766424, 0.012643353082239628, -0.027101945132017136, -0.025603318586945534, -0.02765073999762535, -0.023513682186603546, 0.0012394022196531296, 0.011830717325210571, 0.015471749939024448, 0.00013299332931637764, 0.017403079196810722, -0.007303172256797552, 0.016622105613350868, -0.027587417513132095, -0.0010626274161040783, 0.0027571585960686207, -0.021117988973855972, 0.05783437192440033, 0.0023178602568805218, -0.030120309442281723, 0.02119186334311962, -0.006031449418514967, 0.0029286565259099007, 0.025962144136428833, -0.034405119717121124, 0.008063039742410183, 0.018616756424307823, -0.013857030309736729, 0.0011556320823729038, -0.024400195106863976, 0.016780409961938858, -0.0295081939548254, -0.01544008869677782, -0.013529865071177483, 0.0330120287835598, 0.019028352573513985, 0.006136986427009106, -0.04685850441455841, -0.033033136278390884, 0.012643353082239628, 0.018711740151047707, -0.0012380830012261868, -0.0031318156979978085, -0.045296553522348404, 0.0004356706340331584, 0.0009880918078124523, 0.03465840592980385, -0.009603883139789104, 0.013529865071177483, 0.012516709044575691, 0.013044394552707672, -0.01622106321156025, 0.0017123406287282705, 0.023872507736086845, 0.032589878886938095, 0.014764650724828243, -0.03516498580574989, -0.025434458628296852, -0.02309153415262699, 0.015471749939024448, 0.0018614118453115225, -0.0028732495848089457, -0.02982480451464653, -0.004952332004904747, -0.04795609042048454, -0.01338211353868246, -0.004699042532593012, -0.031175680458545685, 0.006701610516756773, -0.00911841168999672, 0.04711179435253143, -0.010416518896818161, 0.022753814235329628, 0.005031484644860029, 0.004408815409988165, 0.02809399552643299, 0.03833110257983208, 0.01586223766207695, 0.023175962269306183, -0.013392667286098003, -0.005830928683280945, -0.0010692235082387924, -0.008749031461775303, -0.011630196124315262, 0.022205021232366562, 0.0031318156979978085, 0.034447334706783295, -0.015229013748466969, 0.03123900294303894, -0.018395129591226578, -0.0019840989261865616, 0.03318088874220848, -0.014469146728515625, 0.019566591829061508, 0.016928162425756454, -0.05411946028470993, -0.013202700763940811, -0.0033376130741089582, 0.02247941866517067, 0.016769856214523315, -0.0035909023135900497, 0.006184478290379047, 0.006717441137880087, -0.0075775692239403725, 0.013614295050501823, -0.0006358614773489535, 0.01687539368867874, 0.034405119717121124, -0.0003835616516880691, 0.016484906896948814, 0.009260887280106544, -0.04795609042048454, 0.0020461019594222307, -0.02667979709804058, 0.004910117015242577, -0.01682262495160103, 0.004957608878612518, 0.0008792565786279738, 0.011271369643509388], [-0.01394143421202898, 0.002200981369242072, 0.0349893793463707, 0.021398743614554405, -0.026321247220039368, 0.022767992690205574, 0.025506488978862762, 0.05445307120680809, 0.04438174143433571, 0.051329828798770905, -0.0025786561891436577, 0.017732327803969383, -0.006082403473556042, 0.00418695667758584, -0.008096668869256973, 0.04748235270380974, -0.037094175815582275, 0.022575618699193, -0.03879158943891525, 0.0022038104943931103, 0.03906317427754402, 0.08478021621704102, 0.019622117280960083, 0.004175640642642975, -0.008577603846788406, 0.03229614719748497, 0.03806735947728157, -0.04024004936218262, 0.022620882838964462, -0.05893424525856972, 0.015457792207598686, -0.016215970739722252, 0.02421645261347294, -0.04988136515021324, 0.02573280967772007, -0.02677389234304428, -0.05997532606124878, 0.05205405876040459, 0.031911399215459824, 0.01391880214214325, -0.002981792204082012, -0.010563578456640244, -0.0010679569095373154, -0.010258044116199017, 0.014020646922290325, 0.03682258725166321, 0.023831704631447792, -0.036845218390226364, 0.0433632917702198, -0.00832299143075943, 0.0783526748418808, 0.013613267801702023, 0.04311433807015419, -0.006093719508498907, 0.053955163806676865, 0.0064558349549770355, 0.0393800251185894, 0.006659524515271187, 0.04143955558538437, 0.03302037715911865, -0.037320494651794434, -0.05454359948635101, 0.009115118533372879, -0.05119403451681137, 0.024533303454518318, 0.014461975544691086, 0.017053361982107162, 0.015446475706994534, -0.00968658085912466, 0.04417805373668671, -0.01344352588057518, 0.004815000109374523, 0.09931009262800217, -0.037094175815582275, -0.024714361876249313, 0.02090083621442318, 0.004198272712528706, -0.0008925573201850057, 0.05413622036576271, 0.025981765240430832, -0.031481388956308365, -0.03650573641061783, -0.016985464841127396, 0.05028874799609184, 0.008153249509632587, -0.018366029486060143, -0.003618322778493166, -0.00835128128528595, 0.03286195173859596, 0.002184007316827774, -0.03345039114356041, -0.05893424525856972, 0.00450380751863122, 0.040036361664533615, 0.01181400753557682, -0.026027029380202293, -0.016770459711551666, -0.016102809458971024, 0.00196900125592947, 0.0338125042617321, -0.002748397644609213, -0.032001931220293045, -0.01197243295609951, 0.030915584415197372, 0.035215701907873154, 0.009867638349533081, -0.027950765565037727, 0.017630483955144882, 0.02946712262928486, 0.009997773915529251, -0.012187439016997814, 0.02421645261347294, -0.013194572180509567, 0.02489541843533516, 0.04417805373668671, 0.04879502207040787, 0.0021415718365460634, -0.026072293519973755, -0.004945135675370693, 0.018501821905374527, -0.019508956000208855, -0.014620400965213776, -0.0023834535386413336, -0.04992663115262985, -0.031594548374414444, -0.027022846043109894, -0.0668102502822876, 0.03632467985153198, -0.018841305747628212, -0.0831506997346878, 0.03150402009487152, -0.014846722595393658, 0.03134559467434883, -0.01276456005871296, 0.004653745796531439, -0.005199747625738382, 0.042820122092962265, -0.020572669804096222, 0.02421645261347294, -0.003335420275107026, -0.010495682246983051, -0.006987691391259432, 0.009692239575088024, 0.041982728987932205, -0.008272068575024605, 0.029897134751081467, -0.016725195571780205, 0.08020851016044617, -0.03775050863623619, -0.0017808711854740977, -0.00381352542899549, -0.08124959468841553, -0.0031741659622639418, -0.007508231792598963, 0.039470553398132324, 0.002688988111913204, -0.02661546692252159, 0.04071532562375069, 0.014767509885132313, -0.0097940843552351, -0.043612249195575714, 0.0003667123382911086, -0.0023622356820851564, -0.022032445296645164, 0.038248416036367416, 0.004809342324733734, -0.06341542303562164, -0.03885948657989502, -0.04463069513440132, -0.004902699962258339, -0.05762157961726189, -0.03130033239722252, 0.004973425529897213, 0.0061050355434417725, 0.015446475706994534, -0.05218984931707382, -0.012956934049725533, -0.019610799849033356, 0.049700308591127396, 0.02268877997994423, -0.016204655170440674, -0.006925452966243029, -0.023446958512067795, 0.034219883382320404, -0.02903711050748825, 0.04929292947053909, -0.009850664995610714, 0.03220561891794205, -0.026638098061084747, 0.01680440828204155, 0.042458005249500275, -0.004676378332078457, 0.0010707859182730317, -0.00356457126326859, -0.007915611378848553, 0.00012297417561057955, 0.004639600869268179, -0.03157191723585129, -0.012560870498418808, -0.016555452719330788, 0.019463691860437393, -0.018524454906582832, 0.0020651882514357567, 0.018716828897595406, -0.06264592707157135, 0.013771693222224712, -0.015661481767892838, -0.0009463088354095817, 0.11171253770589828, 0.07455046474933624, 0.004925332497805357, 0.01664598286151886, -0.06341542303562164, -0.00384747376665473, -0.02152322046458721, -0.013160623610019684, 0.021070577204227448, 0.02998766303062439, 0.017992598935961723, 0.010218437761068344, -0.03066662885248661, -0.013635899871587753, 0.023967498913407326, -0.016136758029460907, -0.042978547513484955, -0.02847130596637726, 0.015050412155687809, -0.010099618695676327, 0.009737503714859486, -0.1149715706706047, 0.00688018836081028, 0.03449147194623947, -0.021047944203019142, -0.032318778336048126, -0.00897932518273592, 0.044721223413944244, -0.034265149384737015, -0.06943558901548386, -0.03345039114356041, -0.01849050633609295, 0.011961117386817932, -0.06889241188764572, 0.048025526106357574, -0.011610317975282669, -0.03926686570048332, 0.0057627237401902676, 0.010014748200774193, -0.016759144142270088, 0.047074973583221436, -0.013930118642747402, 0.015333314426243305, 0.000481287861475721, 0.018728144466876984, -0.030123457312583923, 0.03220561891794205, 0.03449147194623947, -0.01774364337325096, -0.0043001179583370686, -0.018366029486060143, -0.013703796081244946, 0.033631447702646255, 0.006308725569397211, -0.036890484392642975, 0.05205405876040459, -0.01864893175661564, 0.0036522711161524057, -0.01622728630900383, 0.00020651881641242653, -0.02022187039256096, 0.0070895361714065075, 0.013251152820885181, 0.01774364337325096, -0.008577603846788406, 0.005205405876040459, -0.040104255080223083, 0.02394486591219902, 0.03548728674650192, 0.005355344153940678, -0.035102542489767075, -0.027633914723992348, -0.0026578688994050026, -0.00832299143075943, -0.009601710364222527, -0.06735342741012573, 0.01774364337325096, -0.020459508523344994, 0.04438174143433571, 0.08070642501115799, -0.02752075344324112, -0.019452374428510666, 0.015276734717190266, 0.011666898615658283, 0.025257533416152, -0.021330848336219788, 0.025823339819908142, -0.039561085402965546, -0.005482650361955166, 0.0026734285056591034, 0.02116110548377037, -0.0520993210375309, 0.047708675265312195, -0.0028686311561614275, 0.046758122742176056, -0.01753995381295681, -0.03245457261800766, 0.043612249195575714, -0.004673548974096775, -0.016464924439787865, -0.011893220245838165, 0.015265418216586113, 0.004914015997201204, 0.05119403451681137, -0.04401962831616402, -0.03632467985153198, -0.045558616518974304, 0.012922985479235649, -0.033903032541275024, -0.000753935135435313, 0.05902477353811264, -0.030100824311375618, 0.032635629177093506, 0.0314134918153286, -0.018818672746419907, -0.005097902845591307, 0.01990501955151558, -0.00900195725262165, 0.008741687051951885, 0.006450176704674959, 0.014790141955018044, 0.01843392662703991, 0.0005548425251618028, 0.04100954532623291, -0.019463691860437393, -0.023446958512067795, -0.007389413192868233, 0.044336479157209396, 0.019135523587465286, -0.0043793306685984135, -0.03034977801144123, -0.031119273975491524, 0.02537069469690323, -0.052959345281124115, -0.03324669972062111, 0.03695838153362274, -0.002312727738171816, 0.010048696771264076, 0.04352171719074249, 0.013330365531146526, -0.013522738590836525, 0.003901225281879306, 0.006687814835458994, 0.03670942783355713, -0.0019421256147325039, 0.03376724198460579, -0.0016479069599881768, -0.02672862634062767, 0.022134291008114815, -0.0015191863058134913, -0.05381936952471733, -0.02026713453233242, 0.03014608845114708, 0.028018662706017494, 0.001605471596121788, 0.01780022494494915, -0.0011457550572231412, 0.06264592707157135, -0.0004749225627165288, 0.07658736407756805, 0.02273404411971569, -0.06187643110752106, 0.008854847401380539, -0.001068664132617414, -0.0373883917927742, -0.03544202446937561, 0.03598519787192345, -0.02967081218957901, 0.07183460146188736, 0.057214200496673584, -0.0029761341866105795, 0.004769735969603062, 0.016102809458971024, 0.03990056738257408, 0.01586517132818699, 0.014869354665279388, 0.004611310549080372, -0.01853577047586441, 0.009788425639271736, 0.004645258653908968, 0.033586181700229645, -0.04349908605217934, 0.009675265289843082, -0.014360129833221436, -0.020357662811875343, -0.026321247220039368, 0.049700308591127396, 0.026502305641770363, 0.12284757941961288, -0.009646974503993988, -0.041349027305841446, -0.013341681100428104, -0.03675469011068344, -0.029693445190787315, 0.009126434102654457, -2.3228945792652667e-05, -0.022654831409454346, 0.012323232367634773, -0.034695159643888474, -0.022439824417233467, -0.056535232812166214, -0.026162821799516678, 0.023356430232524872, -0.024804890155792236, 0.028810789808630943, 0.041145339608192444, -0.01110675185918808, -0.031798239797353745, 0.003309959080070257, 0.011961117386817932, 0.008096668869256973, -0.023198004812002182, 0.03854263573884964, 0.03066662885248661, 0.005225209053605795, 0.007027297746390104, 0.008996299467980862, 0.006993349641561508, -0.0035447680857032537, -0.0206858292222023, -0.023809073492884636, -0.02962554804980755, -0.03372197598218918, -0.042344845831394196, -0.019203420728445053, -0.0009420652640983462, 0.0020001207012683153, -0.044562797993421555, -0.017562586814165115, -0.005097902845591307, 0.02346958965063095, 0.004523610696196556, 0.007406387012451887, -0.011350047774612904, -0.06780606508255005, 0.032273516058921814, -0.006772685330361128, 0.008289042860269547, 0.026004396378993988, 0.07183460146188736, -0.013488790951669216, 0.006314383354038, -0.020346347242593765, 0.03790893405675888, -0.04021741822361946, -0.011836640536785126, -0.035736240446567535, -0.018569719046354294, 0.029263433068990707, 0.024488039314746857, 0.003663587151095271, 0.045603882521390915, 0.023220635950565338, 0.05748578533530235, 0.06685551255941391, -0.018207604065537453, -0.018875254318118095, 0.061514317989349365, -0.014507239684462547, -0.021364795044064522, -0.02661546692252159, -0.03750155493617058, -0.017075994983315468, 0.024239085614681244, 0.023379061371088028, 0.020753726363182068, 0.03055346943438053, -0.006037138868123293, -0.0004982620012015104, -0.007881663739681244, 0.009901586920022964, 0.004438740201294422, 0.0012242605444043875, 0.03304301202297211, -0.05309513956308365, -0.0278376042842865, 0.004512294661253691, 0.05630891025066376, -0.00025867894873954356, -0.007683631498366594, -0.06554284691810608, -0.035057276487350464, 0.027905501425266266, 0.009771452285349369, 0.028946582227945328, -0.009330123662948608, -0.01837734505534172, 0.013160623610019684, -0.021704278886318207, 0.008730370551347733, 0.037094175815582275, -0.008243778720498085, -0.03485358506441116, -0.024488039314746857, -0.021387428045272827, 0.00866247434169054, 0.051329828798770905, -0.0029082375112921, 0.0054345568642020226, -0.03944792225956917, 0.012096910737454891, 0.019814489409327507, -0.018728144466876984, 0.02074241079390049, 0.027656547725200653, -0.012221387587487698, -0.021036628633737564, -0.004761248826980591, 0.009946851059794426, 0.02142137661576271, -0.03854263573884964, 0.05780263617634773, -0.018083127215504646, 0.03118717111647129, 0.0009257983765564859, 0.031911399215459824, -0.00712914252653718, -0.008000482805073261, -0.00078929791925475, -0.060880616307258606, 0.017992598935961723, 0.0024456919636577368, -0.008521023206412792, 0.010444759391248226, -0.017313633114099503, 0.017788907513022423, -0.013036146759986877, 0.01964474841952324, -0.00277668796479702, 8.120185520965606e-05, 0.02032371424138546, 0.020312398672103882, 0.0017129745101556182, -0.005445872899144888, 0.029897134751081467, -0.00028148796991445124, 0.03145875781774521, -0.002669184934347868, 0.014371446333825588, 0.013454842381179333, -0.007247961591929197, -0.025280166417360306, -0.0014611913356930017, 0.03607572615146637, -0.01833208091557026, -0.0057995012030005455, 0.03335986286401749, 0.022700095549225807, 0.037003643810749054, -0.00262533500790596, 0.008328649215400219, -0.023198004812002182, 0.0028997506015002728, 0.03750155493617058, 0.02342432551085949, -0.003292985027655959, 0.003646613098680973, 0.03449147194623947, -0.0039436607621610165, -0.04232221096754074, -0.04132639616727829, -0.002580070635303855, -0.002872874727472663, 0.03675469011068344, 0.011576369404792786, 0.020074760541319847, 0.0021514734253287315, 0.02274535968899727, 0.008413519710302353, -0.013579319231212139, 0.023175371810793877, -0.003024227684363723, 0.007932585664093494, 0.031006112694740295, -0.0009731845348142087, 0.0009229693678207695, -0.011961117386817932, 0.017709694802761078, -0.005239353980869055, -0.02279062382876873, -0.02414855547249317, 0.02241719327867031, 0.008990640752017498, 0.015344630926847458, 0.05146561935544014, 0.011327415704727173, -0.00409642793238163, 0.014484607614576817, 0.03213772177696228, 0.025031212717294693, 0.011870588175952435, 0.03591730073094368, 0.0025871433317661285, -0.04490228369832039, 0.016668614000082016, -0.004602823406457901, 0.008147591724991798, -0.011768743395805359, 0.03949318826198578, 0.016883620992302895, 0.019124208018183708, 0.022247452288866043, 0.04148482158780098, 0.0066482084803283215, 0.008945376612246037, 0.010953984223306179, -0.020821623504161835, 0.0387689583003521, -0.04100954532623291, -0.011689530685544014, -0.003236404387280345, 0.03607572615146637, -0.05834580957889557, -0.014088544063270092, 0.039515819400548935, 0.011338731274008751, -0.017132574692368507, 0.025981765240430832, 0.011678215116262436, 0.003725825808942318, 0.055946797132492065, -0.0025051014963537455, -0.031164538115262985, -0.026162821799516678, 0.02394486591219902, -0.02887868508696556, -0.050062425434589386, -0.0026041173841804266, -0.029014479368925095, 0.009409336373209953, 0.008515364490449429, -0.02482752315700054, 0.045513350516557693, -0.0026295785792171955, 0.029738709330558777, -0.021715594455599785, 0.003977608866989613, 0.03861053287982941, -0.03444620594382286, -0.010835165157914162, 0.022858520969748497, 0.013635899871587753, 0.011344389989972115, -0.0074177030473947525, -0.02872025966644287, -0.0032166012097150087, 0.0006556265288963914, 0.023220635950565338, 0.016000965610146523, 0.011915852315723896, -0.014971199445426464, 0.008045746944844723, -0.030802423134446144, -0.017573902383446693, -0.03087032027542591, 0.009267885237932205, 0.04211852326989174, 0.029535019770264626, -0.019022364169359207, 0.08134012669324875, -0.019565535709261894, 0.013850905932486057, -0.028448674827814102, 0.004065308719873428, 0.0011118067195639014, -0.007185723166912794, 0.0340161956846714, -0.028946582227945328, 0.009041563607752323, 0.019678696990013123, -0.007100852206349373, 0.01979185827076435, -0.04094164818525314, -0.033269330859184265, -0.001792187220416963, 0.002193908905610442, -0.0039068832993507385, -0.0231640562415123, -0.01879604160785675, -0.0264570415019989, -0.0004968474968336523, -0.0012412347132340074, -0.0061333258636295795, 0.0019053482683375478, 0.022575618699193, -0.005372318439185619, 0.03623415157198906, 0.0007801036117598414, 0.003035543719306588, 0.029172904789447784, 0.007479941938072443, -0.05553941801190376, 0.026434408500790596, 0.006416228599846363, -0.013296416960656643, -0.05535835772752762, -0.07165354490280151, -0.013409578241407871, -0.011361364275217056, -0.0023650648072361946, 0.04331802949309349, 0.027384961023926735, -0.030055560171604156, -0.012244019657373428, -0.013692480511963367, -0.02641177549958229, -0.006891504395753145, 0.005400608293712139, -0.0029421858489513397, -0.002341018058359623, -0.002437204821035266, -0.02273404411971569, 0.01585385575890541, 0.026117557659745216, -0.003468384500592947, 0.009013272821903229, -0.04205062612891197, -0.026977581903338432, 0.018071811646223068, 0.014382762834429741, -0.02126295119524002, 0.0016153731849044561, 0.018513139337301254, 0.014631716534495354, -0.029263433068990707, -0.009494207799434662, -0.024963315576314926, -0.004328408278524876, -0.011389654129743576, -0.013398261740803719, -0.0308250542730093, -0.02856183424592018, 1.2189118933747523e-05, -0.012368496507406235, -0.032635629177093506, -0.036618899554014206, -0.02962554804980755, -0.012232703156769276, 0.009646974503993988, -0.042299579828977585, -0.011847956106066704, 0.03329196572303772, -0.022439824417233467, 0.0069763753563165665, -0.004744274541735649, 0.01215349044650793, 0.036528367549180984, -0.012821140699088573, 0.010835165157914162, -0.0010297650005668402, -0.0065689957700669765, 0.021127156913280487, 0.0023919404484331608, 0.027498122304677963, 0.006093719508498907, 0.012277968227863312, 0.011253860779106617, 0.01523146964609623, -0.04553598538041115, 0.003618322778493166, 0.005242182873189449, -0.009873297065496445, -0.014179072342813015, 0.02955765277147293, 0.004396304488182068, 0.004085111897438765, -0.007508231792598963, -0.02414855547249317, -0.024804890155792236, -0.01722310297191143, 0.0076327091082930565, -0.027384961023926735, 0.003626809921115637, -0.03965161368250847, -0.02903711050748825, -0.004461372271180153, -0.009714871644973755, -0.03014608845114708, -0.021025313064455986, -0.008260753005743027, 0.029648181051015854, 0.006365305744111538, 0.011327415704727173, -0.02036897838115692, 0.005151654127985239, -0.015288050286471844, -0.04404225945472717, 0.007264935877174139, 0.023922234773635864, -0.016204655170440674, -0.0037852353416383266, 0.05784790217876434, 0.004486833233386278, 0.019667381420731544, -0.04143955558538437, -0.025845970958471298, 0.04053426906466484, 0.02776970900595188, -0.001507870270870626, -0.005861739628016949, -0.01538989506661892, -0.010427786037325859, 0.045603882521390915, -0.026547569781541824, -0.001622445764951408, -0.0032703527249395847, 0.046192318201065063, -0.026660731062293053, -0.024442775174975395, -0.02919553592801094, 0.018207604065537453, 0.009856322780251503, 0.0005505989538505673, -0.02389960177242756, 0.038565266877412796, -0.0028813618700951338, 0.011768743395805359, -0.016046229749917984, -0.018931834027171135, 0.013013514690101147, 0.02514437399804592, -0.028290249407291412, -0.008289042860269547, -0.03197929635643959, 0.045603882521390915, -0.0008727542008273304, 0.0002951026544906199, 0.03125506639480591, -0.006891504395753145, 0.006269119214266539, 0.020731093361973763, 0.003261865582317114, 0.03417462110519409, -0.04383856803178787, 0.014382762834429741, -0.011836640536785126, -0.025506488978862762, -0.021330848336219788, -0.025280166417360306, 0.018241552636027336, -0.0375920832157135, 0.0008699251338839531, -0.01346615795046091, 0.008492732420563698, -0.037003643810749054, 0.022394560277462006, -0.031752973794937134, -0.03548728674650192, -0.02792813442647457, -0.0030185694340616465, -0.025234902277588844, -0.006891504395753145, -0.022224819287657738, 0.006331357639282942, 0.009924218989908695, -0.018230237066745758, 0.03154928609728813, 0.003776748199015856, 0.02677389234304428, -0.007072562351822853, 0.026185454800724983, 0.040149521082639694, 0.007214013487100601, -0.02577807381749153, -0.0015319170197471976, -0.011089777573943138, -0.027430225163698196, 0.05667102709412575, -0.0017228760989382863, 0.007904295809566975, 0.00480651343241334, -0.0066764988005161285, -0.021172422915697098, 0.01142360270023346, -0.00900761503726244, -0.02987450361251831, 0.02200981415808201, -0.025800706818699837, -0.005502453539520502, 0.02924080193042755, 0.020040811970829964, 0.020029496401548386, -0.009279201738536358, 0.008153249509632587, -0.023967498913407326, -0.01244770921766758, 0.0009406507597304881, -0.00034726280136965215, -0.040670063346624374, -1.0161282261833549e-05, 0.01916947215795517, 0.02761128358542919, -0.008289042860269547, 0.02283588796854019, 0.005539230536669493, 0.014688297174870968, -0.022507721558213234, -0.0025857286527752876, -0.012244019657373428, 0.005867397412657738, -0.009884612634778023, 0.049700308591127396, 0.04960978031158447, -0.02247377298772335, -0.0014095616061240435, -0.0004126839921809733, 0.034740425646305084, 0.0005131143843755126, 0.017551271244883537, 0.0029676470439881086, -0.007587444502860308, 0.013579319231212139, -0.004682036116719246, -0.0004006606468465179, 0.0616501085460186, -0.031798239797353745, -0.004854606464505196, -0.04417805373668671, -0.008436151780188084, -0.023356430232524872, 0.04684865102171898, 0.01618202216923237, -0.015616217628121376, 0.04044374078512192, 0.011016222648322582, 0.017030728980898857, 0.007683631498366594, 0.036528367549180984, 0.007926927879452705, -0.021828755736351013, 0.029580283910036087, 0.020731093361973763, -0.006965059321373701, 0.03854263573884964, 0.008984982967376709, 0.010897403582930565, 0.01032028254121542, 0.0049649388529360294, 0.015718061476945877, 0.032160356640815735, 0.009924218989908695, -0.005561863072216511, -0.003256207564845681, 0.022881153970956802, 0.027814973145723343, -0.0008968008914962411, -0.028493938967585564, -0.024963315576314926, 0.0083003593608737, 0.03960634768009186, 0.018037863075733185, -0.01906762830913067, 0.02478225715458393, 0.01541252713650465, 0.03530623018741608, -0.0052987635135650635, 0.004481175448745489, 0.019078943878412247, 0.040149521082639694, 0.01523146964609623, 0.009199989028275013, -0.01617070659995079, -0.010461733676493168, 0.004679207224398851, 0.01328510046005249, 0.049338195472955704, -0.01099924836307764, 0.0024258887860924006, -0.00784771516919136, 0.009256569668650627, -0.0010516899637877941, 0.015684114769101143, -0.026547569781541824, 0.0010912963189184666, 0.023854337632656097, -0.007259277626872063, -0.049700308591127396, -0.0017525808652862906, 0.032952480018138885, -0.01780022494494915, 0.029489755630493164, -0.012334548868238926, 0.03435567766427994, 0.011225570924580097, 0.0014852380845695734, -0.02756601758301258, -0.006082403473556042, 0.015118309296667576, 0.016238601878285408, 0.026751259341835976, -0.002990279346704483, -0.003669245168566704, 0.016408344730734825, -0.03707154095172882, -0.007474283687770367, 0.0216816458851099, 0.0067896596156060696, 0.0062408288940787315, 0.030734525993466377, 0.026819156482815742, 0.005349685903638601, 0.016668614000082016, 0.019022364169359207, -0.031843505799770355, -0.07830740511417389, -0.04666759446263313, 0.009013272821903229, 0.014654348604381084, 0.037682611495256424, -0.01197243295609951, 0.028810789808630943, 0.042344845831394196, -0.034785691648721695, 0.04784446954727173, -0.022462457418441772, -0.005940952338278294, 0.0032335754949599504, 0.0031741659622639418, 0.04012688994407654, 0.012277968227863312, 0.01031462475657463, -0.012594819068908691, 0.015118309296667576, -0.014971199445426464, -0.013850905932486057, 0.02752075344324112, -0.013432210311293602, -0.024171188473701477, -0.009109459817409515, -0.030440308153629303, -0.018762093037366867, -0.02346958965063095, 0.021195054054260254, 0.0071970392018556595, -0.02856183424592018, 0.031526654958724976, 0.01864893175661564, -0.00834562350064516, 0.034898851066827774, 0.007321516517549753, 0.0019124208483844995, -0.015310682356357574, 0.015876486897468567, -0.009301833808422089, -0.03229614719748497, -0.009132091887295246, 0.03188876807689667, -0.004390646703541279, 0.015684114769101143, -0.02573280967772007, -0.02358275093138218, -0.006851898040622473, 0.024963315576314926, 0.0006404205341823399, 0.005301592405885458, -0.003969121724367142, -0.001561621786095202, -0.031911399215459824, 0.007734553888440132, -0.042412739247083664, 0.00801179837435484, 0.027792340144515038, 0.0020793331786990166, 0.023446958512067795, 0.04793499782681465, 0.019678696990013123, -0.006116351578384638, -0.007559154648333788, 0.023854337632656097, -0.010371205396950245, -0.006806633900851011, 0.02908237650990486, -0.0016012280248105526, 0.007134800776839256, 0.04304644092917442, -9.158968168776482e-05, -0.031164538115262985, -0.005861739628016949, 0.013749061152338982, -0.0007426190422847867, -0.04546808823943138, -0.005058296490460634, 0.011599002406001091, 0.02062924951314926, 0.003372197737917304, 0.02919553592801094, -0.005918320268392563, -0.003298643045127392, 0.05214458703994751, 0.00093074917094782, 0.009409336373209953, -0.0018643273506313562, -0.007887321524322033, 0.005120534915477037, 0.03019135259091854, -0.018026545643806458, 0.01890920288860798, -0.03842947259545326, 0.007808108814060688, 0.007496915757656097, 0.008068379014730453, 0.013251152820885181, -0.007796792779117823, 0.0017865292029455304, 0.011457550339400768, -0.043453823775053024, 0.03087032027542591, 0.02094610035419464, -0.006421886384487152, 0.02268877997994423, -0.01441671047359705, 0.007576128467917442, -0.004543413873761892, 0.006552021484822035, -0.017890753224492073, -0.027294432744383812, 0.015129624865949154, 0.021647699177265167, -0.00737809669226408, 0.022858520969748497, 0.008407861925661564, -0.021647699177265167, -0.019293949007987976, -0.0039068832993507385, -0.005377976223826408, -0.011881904676556587, -0.01832076534628868, -0.013635899871587753, 0.00045547299669124186, -0.00209347833879292, 0.019576851278543472, 0.01307009533047676, 0.00505546759814024, -0.006750053260475397, 0.022281398996710777, -0.00044486415572464466, 0.0049338191747665405, 0.012911669909954071, -0.011712162755429745, 0.045875467360019684, 0.012357180938124657, 0.02808655984699726, -0.0024951999075710773, -0.004467030055820942, 0.021659014746546745, -0.0161141250282526, 0.009199989028275013, 0.04175640642642975, 0.009279201738536358, -0.0034627264831215143, 0.012651399709284306, 0.025348063558340073, -0.010365546680986881, -0.02178349159657955, 0.022869836539030075, 0.024442775174975395, 0.011734794825315475, -0.018184971064329147, 0.034536734223365784, 0.011027539148926735, -0.034627266228199005, 0.020278450101614, 0.008153249509632587, 0.030576100572943687, 0.005754236597567797, -0.004410449881106615, -0.005049809347838163, -0.0022377585992217064, 0.0019633432384580374, -0.0058843716979026794, 0.023967498913407326, 0.004285972565412521, -0.006331357639282942, 0.009839348495006561, -0.017936017364263535, 0.01322852075099945, 0.01454118825495243, -0.022122975438833237, -0.00769494753330946, -0.009488549083471298, -0.012096910737454891, 0.01404327992349863, -0.0026210914365947247, -0.021772176027297974, 0.035260967910289764, 0.024669097736477852, -0.00900195725262165, 0.017551271244883537, -0.014790141955018044, 0.027339696884155273, 0.007049929816275835, 0.00947723351418972, -0.015604901127517223, 0.010823849588632584, 0.011700847186148167, 0.023831704631447792, 0.009211304597556591, -0.0013635900104418397, 0.004741445649415255, 0.0369810126721859, -0.008226804435253143, -0.02987450361251831, 0.012277968227863312, -0.03324669972062111, -0.007338490337133408, -0.05476992204785347, -0.046712860465049744, -0.012617451138794422, 0.024193821474909782, 0.01215349044650793, 0.004631113726645708, 0.004840461537241936, 0.0030808080919086933, -0.012832457199692726, -0.005301592405885458, -0.00196192879229784, 0.002349505200982094, -0.018264183774590492, -0.009047221392393112, 0.011027539148926735, 0.020187921822071075, 0.0007489843410439789, 0.04884028434753418, 0.013341681100428104, -0.004721642471849918, -0.04331802949309349, 0.026434408500790596, -0.0026324077043682337, 0.029580283910036087, 0.031074009835720062, -0.04469859227538109, -0.024691728875041008, -0.04721076786518097, -0.011440576985478401, 0.03345039114356041, -0.019203420728445053, -0.00622385460883379, 0.0017242906615138054, 0.002377795521169901, -0.05119403451681137, -0.03467252850532532, -0.0034089749678969383, 0.0069763753563165665, 0.04383856803178787, 0.004905529320240021, 0.009680923074483871, 0.006682156585156918, 0.017573902383446693, 0.011802691966295242, -0.007751528173685074, -0.011746111325919628, -0.0015757668297737837, -0.014371446333825588, -0.01806049421429634, -0.03014608845114708, -0.007383754942566156, 0.03249983862042427, 0.021545853465795517, 0.017551271244883537, -0.016872303560376167, -0.0038531317841261625, 0.014303550124168396, -0.004308605100959539, 0.013613267801702023, 0.045762307941913605, -0.012164806947112083, 0.01257218699902296, 0.003779577324166894, 0.03679995611310005, 0.02446540631353855, 0.03517043590545654, 0.011723479256033897, 5.86580608796794e-05, 0.036302048712968826, 0.017257051542401314, 0.020074760541319847, -0.00393800251185894, 0.022937733680009842, 0.0034825296606868505, -0.006953743286430836, 0.005861739628016949, 0.03186613693833351, -0.009748819284141064, 0.0034457521978765726, -0.0031883111223578453, -0.006252144929021597, 0.026117557659745216, -0.014246969483792782, -0.044970180839300156, -0.0027526412159204483, 0.020991364493966103, 0.02078767493367195, -0.003669245168566704, 0.015525688417255878, -0.011514130979776382, -0.007496915757656097, -0.029014479368925095, -0.037252601236104965, -0.015933068469166756, -0.017042046412825584, -0.01165558211505413, -0.02661546692252159, -0.0028672167100012302, -0.023831704631447792, -0.004155837465077639, -0.0029478438664227724, 0.03433304652571678, -0.02215692214667797, -0.013805641792714596, 0.005810817237943411, -0.005782526917755604, 0.0050780996680259705, 0.026321247220039368, -0.012255336157977581, 0.007146116811782122, 0.0054062665440142155, -0.004993228707462549, -0.03949318826198578, -0.008136275224387646, 0.02131953090429306, -0.0004049041890539229, -0.010693714022636414, -0.01485803909599781, 0.02867499552667141, -0.03281668946146965, 0.02299431338906288, -0.0031883111223578453, 0.03150402009487152, 0.02915027178823948, 0.0023042408283799887, -0.021862704306840897, 0.03204719349741936, -0.02788286842405796, 0.026004396378993988, -0.013737744651734829, -0.008272068575024605, -0.011434918269515038, -0.0018303791293874383, 0.01197243295609951, 0.03019135259091854, -0.011406628414988518, -0.007994824089109898, 0.003360881470143795, 0.022122975438833237, -0.02693231590092182, -0.038882117718458176, 0.015616217628121376, 0.017687063664197922, 0.007032955996692181, 0.024284349754452705, -0.002092063892632723, 0.002076504286378622, 0.0047074975445866585, 0.029806606471538544, -0.02668336220085621, -0.008317332714796066, -0.0019081772770732641, 0.01732494868338108, -0.03754681721329689, -0.00104673916939646, 0.017721012234687805, 0.017777591943740845, -0.018524454906582832, 0.007904295809566975, 0.06232907623052597, -0.025076476857066154, 0.012979566119611263, 0.019146841019392014, -0.021659014746546745, -0.002104794606566429, 0.0044274237006902695, 0.005259157158434391, 0.008792608976364136, 0.0003396598040126264, -0.025664914399385452, -0.041982728987932205, -0.01145189255475998, -0.03861053287982941, 0.005205405876040459, 0.001104026916436851, 0.01047870796173811, -0.005550547037273645, 0.0008536582463420928, -0.007021639961749315, -0.005793842952698469, 0.006716105155646801, -0.010026063770055771, 0.013137991540133953, -0.029331330209970474, 0.010852139443159103, -0.014360129833221436, 0.006653866730630398, -0.00564390467479825, -0.010897403582930565, 0.027384961023926735, 0.02505384385585785, -0.01901104673743248, -0.030055560171604156, 0.015005148015916348, 0.012560870498418808, -0.04662232846021652, 0.01407722756266594, 0.019395794719457626, 0.017211787402629852, 0.015152256935834885, -0.03519307076931, 0.007779818493872881, -0.017053361982107162, 9.10592352738604e-05, -0.019576851278543472, -0.012798508629202843, 0.005895687732845545, -0.005737262312322855, -0.0071970392018556595, 0.011417943984270096, 0.02074241079390049, 0.0005265522631816566, 0.007423361297696829, 0.028584467247128487, -0.0006421886500902474, 0.022507721558213234, -0.01602359674870968, -0.028765525668859482, -0.01775496080517769, 0.03910844027996063, -0.0028785327449440956, 0.016634665429592133, 0.013398261740803719, -0.02537069469690323, 0.023243268951773643, -0.003904054407030344, -0.02799602970480919, -0.04666759446263313, 0.024804890155792236, 0.03632467985153198, 0.0030751500744372606, 0.0018643273506313562, -0.018083127215504646, 0.00459433626383543, 0.011836640536785126, 0.01175742782652378, -0.021398743614554405, -0.012221387587487698, 0.008673789910972118, 0.0031741659622639418, -0.014846722595393658, -0.006280435249209404, -0.009630000218749046, 0.015503056347370148, -0.00785337295383215, 0.03261299803853035, -0.014767509885132313, -0.012719295918941498, 0.015208837576210499, 0.005615614354610443, 0.01142360270023346, -0.02205507829785347, 0.006642550230026245, 0.0215798020362854, 0.016204655170440674, -0.004274656530469656, 0.022598249837756157, 0.024488039314746857, 0.022609567269682884, 0.0032420624047517776, -0.02137611247599125, 0.009856322780251503, -0.022643515840172768, -0.00663123419508338, -0.010874771513044834, -0.0042293923906981945, 0.009239595383405685, -0.03517043590545654, -0.01523146964609623, -0.026185454800724983, -0.010778584517538548, 0.019248684868216515, -0.005259157158434391, -0.03607572615146637, 0.025393327698111534, -0.0469391793012619, -0.0463281124830246, 0.014326182194054127, -0.0016210312023758888, 0.023718545213341713, -0.001659223111346364, -0.0015814249636605382, 0.007281910162419081, -0.012753244489431381, 0.023922234773635864, 0.0232659000903368, -0.010772926732897758, -0.022383244708180428, 0.017132574692368507, 0.0006786123267374933, 0.006088061723858118, 0.017200471833348274, 0.05354778468608856, 0.023967498913407326, 0.005375147331506014, 0.015469107776880264, 0.02561964839696884, 0.02131953090429306, 0.020708462223410606, -0.015208837576210499, -0.011915852315723896, 0.001686098868958652, 0.005539230536669493, 0.032160356640815735, -0.002732838038355112, 0.004758419934660196, -0.008317332714796066, -0.01443934254348278, 0.017155207693576813, -0.025189638137817383, -0.0058164750225842, 0.026072293519973755, -0.05056033283472061, 0.01947500742971897, 0.022926418110728264, -0.024691728875041008, 0.008424836210906506, 0.0002984621387440711, 0.011321757920086384, -0.011095435358583927, -0.007496915757656097, -0.0011118067195639014, 0.01092569436877966], [-0.016216468065977097, -0.018429400399327278, 0.04020747169852257, 0.03360379859805107, 0.008816606365144253, -0.007552073337137699, -0.01725853607058525, 0.008763917721807957, 0.04240869730710983, 0.024869153276085854, 0.013406394049525261, 0.0419403538107872, -0.0004046799149364233, -0.00445221085101366, -0.02978678233921528, 0.020794546231627464, -0.037467651069164276, 0.004226819612085819, -0.03856826201081276, 0.0021338998340070248, 0.05254838243126869, 0.07493530213832855, 0.02019740641117096, 0.0011269566603004932, -0.011105646379292011, 0.007440841291099787, 0.086550273001194, -0.023979296907782555, 0.008459493517875671, -0.0708138644695282, 0.001214771531522274, -0.015502240508794785, 0.016029128804802895, -0.06477220356464386, 0.03360379859805107, 0.013242472894489765, -0.05315722897648811, 0.04746682941913605, -0.009700609371066093, 0.010256769135594368, 0.015502240508794785, -0.011392507702112198, 0.014928516931831837, -0.0036238243337720633, 0.005781141575425863, 0.06931515783071518, -0.028967177495360374, -0.021344853565096855, -0.005874810740351677, 0.003963374998420477, 0.0502534881234169, 0.01085976418107748, 0.02512674406170845, -0.008254592306911945, 0.05034715682268143, 0.01620475947856903, 0.040488481521606445, 0.037467651069164276, 0.054234426468610764, -0.000791065045632422, -0.016556018963456154, -0.051986366510391235, -0.02800706960260868, -0.02660203166306019, -0.0019421707838773727, 0.015970585867762566, -0.005863102152943611, 0.02437739074230194, -0.0406055673956871, 0.023089440539479256, -0.023066023364663124, 0.010215789079666138, 0.06950249522924423, -0.032620273530483246, 0.012130152434110641, 0.0009805987356230617, -0.032924700528383255, 0.029318436980247498, 0.04814593121409416, 0.02601660043001175, -0.029295019805431366, -0.008658540435135365, -0.02604001760482788, 0.04294729605317116, -0.0013808878138661385, -0.031706999987363815, -0.0013128314167261124, -0.009068342857062817, 0.02238692156970501, 0.0005905546131543815, -0.033978477120399475, -0.06449119746685028, 0.023194817826151848, 0.0336272157728672, 0.014951935037970543, 0.017586378380656242, -0.01248141098767519, 0.018429400399327278, 0.037608154118061066, 0.006088493391871452, 0.002578828250989318, -0.025454586371779442, -0.009706463664770126, 0.036390457302331924, 0.023616328835487366, 0.008260446600615978, -0.05718500167131424, 0.0255716722458601, -0.007932604290544987, 0.027655810117721558, 0.015010477975010872, 0.017363915219902992, -0.016193050891160965, 0.027421636506915092, -0.01855819672346115, 0.05512428283691406, -0.03856826201081276, -0.037303730845451355, 0.014647509902715683, 0.03887268900871277, -0.022843558341264725, -0.00436439597979188, -0.016684813424944878, -0.05142435058951378, -0.058215364813804626, -0.044867511838674545, -0.05189269781112671, 0.04086315631866455, -0.033650632947683334, -0.0672544315457344, 0.047302909195423126, -0.008518036454916, 0.023873919621109962, -0.02966969646513462, -0.014811431057751179, 0.00843607634305954, -0.016942404210567474, -0.02125118300318718, -0.006433898117393255, -0.013500062748789787, -0.00313791586086154, 0.025922931730747223, 0.022457173094153404, 0.031074732542037964, 0.00872879195958376, 0.027117213234305382, 0.010268478654325008, 0.06051025539636612, -0.02368658035993576, -0.03149624541401863, -0.005362557712942362, -0.06055709347128868, -0.011655951850116253, -0.036249954253435135, 0.02660203166306019, 0.011427633464336395, -0.007827227003872395, 0.02047841250896454, 0.021520482376217842, -0.011755475774407387, -0.03196458891034126, -0.027023544535040855, -0.0004859086184296757, -0.02041986957192421, 0.07587199658155441, 5.3466410463443026e-05, -0.05296989157795906, -0.05156485363841057, -0.05451543256640434, -0.022948935627937317, -0.0642101913690567, -0.029271602630615234, -0.004592714365571737, -0.043040964752435684, 0.029177933931350708, -0.06280515342950821, -0.020700877532362938, -0.01999835856258869, 0.011328110471367836, 0.022504007443785667, -0.0029095972422510386, -0.029107682406902313, -0.03163674846291542, 0.020923340693116188, -0.04507826641201973, 0.03749106824398041, 0.014530424028635025, 0.04407132416963577, -0.01628671959042549, 0.01784396916627884, 0.029997538775205612, -0.003547718282788992, -0.02027936652302742, -0.006995913106948137, -0.02493940480053425, 0.01468263566493988, 0.015396863222122192, -0.05165852606296539, 0.04475042596459389, -0.028662754222750664, 0.04535927623510361, -0.04116758331656456, 0.00890442170202732, 0.025524837896227837, -0.06959616392850876, -0.010959288105368614, 0.0007852107519283891, 0.005043497309088707, 0.0961981937289238, 0.0786820650100708, 0.019459761679172516, 0.011714495718479156, -0.07390493899583817, 0.023557785898447037, -0.04992564395070076, -0.022129330784082413, 0.04400107264518738, 0.025548255071043968, -0.005567458923906088, -0.010608028620481491, -0.007961875759065151, -0.020899923518300056, 0.024096382781863213, -0.010935870930552483, -0.05493694543838501, -0.026133686304092407, -0.012750710360705853, -7.688369078096002e-05, -0.011140772141516209, -0.10790683329105377, -0.013792779296636581, 0.011784747242927551, -0.030512718483805656, -0.04058215022087097, -0.007546219043433666, 0.04376690089702606, -0.006457315757870674, -0.07324925810098648, -0.012071608565747738, -0.021098971366882324, 0.004434647969901562, -0.06271148473024368, 0.055920470505952835, -0.002256840467453003, -0.02155560813844204, -0.01436650287359953, -0.009993324987590313, -0.008781480602920055, 0.039598625153303146, 0.018886037170886993, 0.03180066868662834, -0.00876977201551199, 0.0061528910882771015, -0.03135574236512184, 0.012902922928333282, -0.005005443934351206, -0.009636211208999157, -0.02421347051858902, 0.031074732542037964, -0.009811840951442719, 0.01438992004841566, 0.023171400651335716, -0.017188284546136856, 0.025641923770308495, 0.0029564318247139454, 0.0008342406945303082, -0.014378211461007595, 0.021649276837706566, 0.0046834563836455345, 0.03662462905049324, 0.007031038869172335, 0.010982705280184746, -0.010502651333808899, -0.0017855677288025618, -0.03931761533021927, 0.002641762141138315, 0.030840560793876648, 0.0078096636570990086, -0.0020651116501539946, -0.013991826213896275, -0.03660121187567711, -0.006029949989169836, -0.025829263031482697, -0.07193788886070251, 0.0006882485467940569, -0.005134239327162504, 0.02216445840895176, 0.04772442206740379, -0.06495954096317291, -0.02498623915016651, 0.007054456043988466, 0.0013391758548095822, 0.018464526161551476, -0.035922110080718994, 0.03283102810382843, -0.0003229023714084178, -0.006147036794573069, 0.016907278448343277, -0.002893497934564948, -0.03636704012751579, 0.028194407001137733, 0.012294073589146137, 0.0028700807597488165, -0.0005276206647977233, -0.02892034314572811, 0.02756214141845703, -0.012212112545967102, 0.0020168134942650795, 0.00809067115187645, 0.012059899978339672, 0.01753954403102398, 0.041401755064725876, -0.04355614632368088, -0.033955059945583344, -0.012996591627597809, 0.02510332688689232, -0.02845199778676033, -0.03646070882678032, -0.0027339677326381207, 0.004490263760089874, 0.013804487884044647, -0.002820319030433893, -0.0026988417375832796, -0.008166776970028877, 0.04191693663597107, -0.012469702400267124, 0.007868207059800625, 0.006890535354614258, -0.0038697058334946632, 0.02784314937889576, -0.02113409712910652, 0.020384743809700012, -0.015314902178943157, -0.04428207874298096, 0.01361714955419302, 0.039130277931690216, 0.005166437942534685, -0.02437739074230194, -0.009969907812774181, -0.0034745391458272934, 0.025852680206298828, -0.04617888107895851, -0.015712996944785118, 0.029014011844992638, -0.004112659953534603, 0.013359559699892998, 0.03779549524188042, 0.009302515536546707, -0.02082967199385166, 0.007920895703136921, -0.0150690209120512, 0.02903742901980877, 0.01400353480130434, 0.03315887227654457, -0.015994003042578697, -0.0332525409758091, 0.01999835856258869, -0.0255716722458601, -0.054093923419713974, -0.028241241350769997, 0.02906084805727005, 0.013582023791968822, 0.005743088666349649, 0.01964709907770157, -0.003588698571547866, 0.03765498846769333, 0.012504829093813896, 0.07193788886070251, 0.02781973034143448, -0.05414075776934624, 0.002116336952894926, 0.002682742429897189, -0.051705360412597656, -0.03510250523686409, 0.058355867862701416, 0.0181483943015337, 0.05671665817499161, 0.035360097885131836, -0.014940226450562477, 0.014261124655604362, 0.030489301308989525, 0.015420280396938324, 0.01798447221517563, 0.013980117626488209, 0.002777875168249011, 0.02171952836215496, 0.02255084179341793, 0.013148804195225239, 0.034142397344112396, -0.07343659549951553, 0.0103914188221097, -0.03219876438379288, -0.017680048942565918, -0.0024105163756757975, 0.05343823879957199, 0.007153979502618313, 0.13825564086437225, 0.010894890874624252, -0.01997494138777256, -0.018792368471622467, -0.005579167511314154, -0.02177807316184044, 0.026391277089715004, -0.0450548492372036, -0.018031306564807892, 0.0196705162525177, -0.03070005774497986, 0.005438663996756077, -0.0380062498152256, -0.024915987625718117, 0.023112857714295387, -0.025454586371779442, 0.02238692156970501, 0.04557003080844879, 0.0063577922992408276, -0.016801899299025536, 0.02781973034143448, 7.642632408533245e-05, 0.0019685153383761644, -0.02202395349740982, 0.04285362735390663, 0.05400025099515915, 0.013687401078641415, 0.02047841250896454, -0.03891952335834503, 0.013640566729009151, -0.02255084179341793, 0.021813198924064636, -0.008389241062104702, -0.029458940029144287, -0.034399986267089844, -0.02662545070052147, -0.009325932711362839, 0.02692987397313118, -0.018335731700062752, -0.0063402289524674416, 0.0024997948203235865, 0.03257343918085098, 0.025946348905563354, -0.02407296560704708, 0.050768665969371796, -0.022117622196674347, -0.058355867862701416, 0.009454728104174137, 0.004680529236793518, 0.008026273921132088, -0.0007156906649470329, 0.08336552232503891, -0.020244240760803223, 0.03341646119952202, 0.02232837863266468, 0.01165009755641222, -0.0493636317551136, 0.011234440840780735, -0.017246827483177185, -0.028405163437128067, 0.014670927077531815, 0.020958468317985535, 0.0013706427998840809, 0.03690563514828682, 0.05306356027722359, 0.04030114412307739, 0.06449119746685028, -0.022340087220072746, -0.041401755064725876, 0.03137915953993797, 0.015525657683610916, -0.027772895991802216, -0.03269052505493164, -0.022199584171175957, -0.021122388541698456, -0.0009096150752156973, 0.014741179533302784, 0.0168487336486578, 0.014015243388712406, -0.000252650526817888, -0.0022539133206009865, -0.0036326060071587563, 0.009302515536546707, 0.0019816874992102385, 4.745201351852302e-07, 0.016392096877098083, -0.05816853046417236, -0.029927287250757217, 0.008998090401291847, 0.054234426468610764, 0.0048883575946092606, 0.004174130503088236, -0.04718582332134247, -0.023803668096661568, 0.027655810117721558, 0.026906456798315048, 0.029763365164399147, -0.01066657155752182, -0.03491516783833504, 0.002675424562767148, -0.032901279628276825, -0.00861755944788456, 0.018043015152215958, 0.007072019390761852, -0.025033075362443924, -0.0168487336486578, -0.016673104837536812, -0.0532977357506752, -0.0168487336486578, -0.026812788099050522, 0.010836347006261349, -0.040488481521606445, 0.0005005443817935884, 0.026414694264531136, -0.011562283150851727, 0.05128384754061699, 0.023791959509253502, -0.007271066308021545, -0.005268888548016548, -0.0029432596638798714, -0.005705035291612148, -0.0010749995708465576, -0.02767922729253769, 0.0393410325050354, -0.0010464597726240754, 0.041097331792116165, -0.012528246268630028, -0.0038872689474374056, -0.011480323038995266, -0.009513271041214466, 0.00459856865927577, -0.05994824320077896, 0.007066165097057819, 0.00012184304796392098, -0.023885628208518028, 0.003096935572102666, -0.023124566301703453, -0.011111500672996044, -0.002530530095100403, 0.032292433083057404, 0.031121568754315376, 0.005254252813756466, 0.003369161393493414, 0.01778542622923851, 0.009097614325582981, -0.0061528910882771015, 0.032901279628276825, -0.004092169925570488, 0.04203402251005173, -0.011240295134484768, 0.010514359921216965, 0.04692823439836502, -0.005055205896496773, -0.026531780138611794, -0.02587609738111496, 0.015783248469233513, 0.010449961759150028, -0.018967999145388603, 0.053344570100307465, 0.03250318765640259, 0.0454997792840004, -0.027515307068824768, -0.00440537603572011, -0.027608975768089294, 0.020291075110435486, 0.023393865674734116, 0.02174294739961624, -0.012750710360705853, 0.02263280376791954, 0.02291380986571312, -0.019167045131325722, -0.03571135550737381, -0.028241241350769997, -0.022340087220072746, -0.009144448675215244, 0.03571135550737381, -0.0015909116482362151, 0.03660121187567711, -0.016392096877098083, 0.04620229825377464, 0.012235529720783234, -0.012984883040189743, 0.018160102888941765, -0.00553525984287262, 0.006949078291654587, 0.025033075362443924, -0.0014028415316715837, 0.013254181481897831, 0.004077534191310406, 0.023955879732966423, -0.02543116919696331, -0.02964627929031849, -0.014635801315307617, 0.017961055040359497, -0.013160512782633305, 0.018124977126717567, 0.03721006214618683, 0.016239885240793228, -0.03432973474264145, 0.016450639814138412, 0.038076501339673996, 0.004422939382493496, 0.00577528728172183, 0.03983279690146446, -0.0007376443827524781, -0.05086233839392662, 0.00048517680261284113, 0.01869869977235794, -0.005737233906984329, -0.025805845856666565, 0.02997412160038948, 0.014823139645159245, 0.016087673604488373, 0.016825316473841667, 0.029997538775205612, 0.010010887868702412, -0.009841112419962883, 0.018886037170886993, 0.022562552243471146, 0.00926738977432251, -0.024260304868221283, -0.0033808702137321234, 0.007950167171657085, 0.030489301308989525, -0.042572617530822754, -0.04081632196903229, 0.040184054523706436, 0.023171400651335716, -0.011193460784852505, 0.01077780406922102, -0.011860853061079979, -0.006375355180352926, 0.026672285050153732, 0.01018066331744194, -0.02056037448346615, -0.010338730178773403, 0.02798365242779255, -0.03554743528366089, -0.06214946508407593, -0.005017152521759272, -0.009320078417658806, -0.0032842739019542933, 0.016052547842264175, -0.00867024902254343, 0.0246818158775568, -0.017199993133544922, 0.023616328835487366, -0.042596034705638885, -0.0054064649157226086, 0.005924572236835957, -0.044094741344451904, 0.0006216556648723781, 0.028943760320544243, 0.013687401078641415, 0.017059490084648132, 0.002530530095100403, 0.007733557373285294, -0.01695411279797554, 0.005994824226945639, 0.03423606604337692, 0.0016655542422086, 0.004721509292721748, -0.006322666071355343, -0.013488354161381721, -0.0246818158775568, 0.0063402289524674416, -0.04917629435658455, 0.023557785898447037, 0.03250318765640259, 0.007370589766651392, 0.00017416603805031627, 0.05371924489736557, 0.0012777054216712713, 0.0003452219534665346, -0.018124977126717567, 0.05451543256640434, -0.020080318674445152, -0.011597408913075924, 0.010853909887373447, -0.011825727298855782, -0.010104557499289513, 0.014963643625378609, -0.004182911943644285, 0.015888625755906105, -0.040488481521606445, -0.03690563514828682, -0.006410480942577124, 0.01071926113218069, -0.020630626007914543, -0.022866975516080856, -0.0012813643552362919, -0.01711803302168846, -0.0004679797566495836, 0.02573559246957302, -0.009284952655434608, 0.013476645573973656, 0.025360915809869766, -0.020010067149996758, 0.022059079259634018, -0.01662627048790455, -0.00554111460223794, 0.023311903700232506, -0.012598497793078423, -0.050300322473049164, -0.002224641852080822, 1.0405139619251713e-05, 0.005523551255464554, -0.05554579198360443, -0.05830903351306915, -0.015490531921386719, -0.03074689209461212, -0.0007566709537059069, 0.04992564395070076, 0.033065203577280045, -0.026672285050153732, -0.02385050244629383, -0.0038843415677547455, -0.024845736101269722, -0.02831149473786354, -0.0022524497471749783, 0.013453228399157524, 0.0006586110685020685, -0.008676103316247463, -0.012165278196334839, 0.0006227533449418843, 0.027046961709856987, 0.018862619996070862, 0.03177725151181221, -0.022539133206009865, -0.038334090262651443, 0.008822460658848286, 0.009302515536546707, -0.02257426083087921, -0.0007343513425439596, 0.009507416747510433, -0.004481482319533825, -0.009981616400182247, -0.0008898567175492644, -0.04496118053793907, -0.023651454597711563, 0.014553841203451157, -0.012212112545967102, -0.05208003520965576, 0.0006604405352845788, 0.006381209474056959, -0.018019597977399826, 0.0008298499160446227, -0.03070005774497986, -0.033955059945583344, -0.022667929530143738, -0.007212522905319929, -0.023347029462456703, -0.011462759226560593, 0.03454049304127693, 0.010350438766181469, 0.0077394116669893265, -0.017141450196504593, 0.0067734490148723125, 0.03554743528366089, -0.021379979327321053, -0.0021660986822098494, -0.01475288812071085, -0.0018587467493489385, 0.018768951296806335, -0.013745944947004318, 0.008178485557436943, 0.005608438979834318, 0.021508773788809776, 0.017879094928503036, 0.010092848911881447, -0.03906002640724182, -0.008523890748620033, -0.017352206632494926, -0.02482231892645359, -0.012235529720783234, 0.0349620021879673, -0.003342817071825266, 0.012832670472562313, -0.009665483608841896, -0.03767840564250946, -0.0207477118819952, -0.015619327314198017, -0.01535002887248993, -0.01928413100540638, 0.003582844277843833, -0.05629514530301094, -0.022902101278305054, -0.011199315078556538, -0.007019330281764269, -0.020291075110435486, -0.02529066428542137, 0.018300605937838554, 0.03119182027876377, -0.00012541053001768887, 0.00896296463906765, -0.019600264728069305, -0.009882093407213688, 0.00289203436113894, -0.04348589479923248, 0.014132330194115639, 0.019178753718733788, -0.03041904978454113, -0.013148804195225239, 0.046225715428590775, 0.004744926933199167, 0.019096793606877327, -0.051705360412597656, -0.018335731700062752, 0.03222218155860901, 0.024400807917118073, -0.027304550632834435, 0.013055134564638138, 0.004768344108015299, -0.03009120747447014, 0.03055955283343792, -0.023616328835487366, 0.004443429410457611, 0.007142270915210247, 0.060135580599308014, -0.039715711027383804, -0.03863851726055145, -0.027210881933569908, -0.007821371778845787, -0.0017460511298850179, 0.009759152308106422, -0.017000947147607803, 0.05128384754061699, -0.012364325113594532, -0.003070591017603874, -0.024728650227189064, -0.002079747384414077, 0.01725853607058525, 0.00956010539084673, -0.025922931730747223, 0.00915615726262331, -0.026227356866002083, 0.055171117186546326, -0.023557785898447037, -0.00960108544677496, 0.032292433083057404, -0.011076374910771847, -0.008178485557436943, 0.007329609245061874, 0.018347440287470818, 0.012294073589146137, -0.04294729605317116, -0.00032582951826043427, 0.005306941457092762, -0.022293252870440483, 0.02230496145784855, -0.009162011556327343, 0.019213879480957985, -0.03662462905049324, -0.0187806598842144, -0.0007530119619332254, 0.0016055473824962974, -0.030981063842773438, 0.008834169246256351, -0.03980937972664833, -0.015841791406273842, -0.013101968914270401, -0.027491889894008636, -0.02232837863266468, -0.013195638544857502, 0.006480732932686806, 0.0015748122241348028, 0.012083317153155804, -0.022035662084817886, 0.030910812318325043, 0.01116418931633234, 0.01620475947856903, 0.02108726277947426, 0.03632020577788353, 0.014460171572864056, 0.010935870930552483, -0.013488354161381721, 0.01052606850862503, -0.02139168791472912, -0.03299495205283165, 0.05161169171333313, -0.019869564101099968, 0.011099792085587978, -0.0076633053831756115, -0.028498832136392593, -0.019576847553253174, 0.0002339898783247918, 0.014085494913160801, -0.014015243388712406, 0.018417691811919212, -0.02305431477725506, 0.004680529236793518, 0.039598625153303146, 0.0033106182236224413, 0.007165688555687666, 0.019319258630275726, 0.015150981955230236, -0.02222300134599209, 0.010321167297661304, -0.0007625252474099398, -0.005184000823646784, -0.05367241054773331, 0.0027647027745842934, -0.0015499313594773412, 0.031425993889570236, -0.020267657935619354, 0.021063845604658127, 0.008400949649512768, 0.022656220942735672, -0.036226537078619, -0.001097685075365007, -0.008652686141431332, -0.006679779849946499, 0.0037438380531966686, 0.0415656752884388, 0.054702769964933395, -0.009923073463141918, 0.040628984570503235, -0.011638388969004154, 0.04196377098560333, 0.013336142525076866, 0.030629804357886314, 0.00222610542550683, -0.006556839216500521, -0.007329609245061874, 0.00577528728172183, -0.01598229445517063, 0.05905838683247566, -0.04449283704161644, -0.011773038655519485, -0.027304550632834435, -0.010654862970113754, 0.003588698571547866, 0.028030486777424812, 0.018160102888941765, -0.03798283264040947, 0.052267372608184814, 0.007505238987505436, 0.03554743528366089, -0.022070787847042084, 0.004838596098124981, 0.0034745391458272934, 0.005605511832982302, 0.021813198924064636, 0.0049381195567548275, -0.010186517611145973, 0.052407875657081604, 0.02241033874452114, -0.011989648453891277, -0.006480732932686806, 0.010730969719588757, 0.013113678433001041, 0.037467651069164276, 0.01018066331744194, -0.02615710347890854, 0.007546219043433666, 0.03484491631388664, 0.016497476026415825, 0.016450639814138412, -0.02889692597091198, -0.017527835443615913, 0.022316670045256615, 0.050768665969371796, 0.012575080618262291, -0.010824638418853283, 0.050628162920475006, 0.0216375682502985, 0.0449845977127552, -0.016497476026415825, -0.0014547986211255193, -0.004279508255422115, -0.009448873810470104, -0.005421100649982691, 0.024892570450901985, -0.02191857621073723, -0.0002118532283930108, 0.03646070882678032, -0.0012396523961797357, 0.0532977357506752, 0.022422047331929207, 0.016497476026415825, -0.010924162343144417, 0.005394756328314543, -0.02344070002436638, 0.014167455956339836, -0.023288486525416374, -0.0003540034522302449, 0.026297608390450478, -0.002826173324137926, -0.049269963055849075, 0.002994484966620803, 0.031238654628396034, 0.015326610766351223, 0.029388688504695892, -0.019600264728069305, 0.052595216780900955, 0.03240951895713806, 0.006814429070800543, -0.010344584472477436, -0.002893497934564948, -0.002966676838696003, 0.0009001017897389829, 0.053812913596630096, 0.008799043484032154, -0.004305852577090263, 0.02036132663488388, -0.021321434527635574, -0.03343987837433815, 0.004973245318979025, 0.01609938219189644, 0.0010413372656330466, 0.01800788938999176, 0.015291485004127026, 0.01278583612293005, 0.008278009481728077, 0.009138594381511211, -0.026508362963795662, -0.07989976555109024, -0.019740769639611244, 0.0218600332736969, 0.019108502194285393, 0.033088620752096176, -0.043813735246658325, 0.0218600332736969, 0.014858265407383442, -0.0225274246186018, 0.04763075336813927, -0.0414954237639904, 0.005078623071312904, 0.010420690290629864, -0.020080318674445152, 0.030348798260092735, 0.010368001647293568, 0.019190462306141853, -0.014249416068196297, 0.02041986957192421, -0.0021939065773040056, 0.003980937879532576, 0.03128548711538315, -0.010303604416549206, 0.007505238987505436, -0.0084243668243289, -0.017691757529973984, -0.01513927336782217, -0.000982794095762074, -3.626934631029144e-05, 0.0031057170126587152, -0.038989774882793427, -0.012914631515741348, 0.026672285050153732, -0.007973584346473217, 0.03657779470086098, 0.008114088326692581, -0.023709997534751892, 0.018804077059030533, 0.021567316725850105, -0.01912021078169346, -0.013008300215005875, -0.006931515410542488, 0.017890803515911102, 0.021988827735185623, 0.023756831884384155, -0.03243293613195419, -0.012528246268630028, -0.008313135243952274, 0.02981019951403141, -0.011404216289520264, 0.004013136960566044, -0.012774127535521984, 0.0016860442701727152, -0.02465839870274067, 0.012809253297746181, -0.03044246695935726, 0.0037496923469007015, 0.013101968914270401, -0.0113749448210001, 0.009372767060995102, 0.03055955283343792, 0.003205240471288562, -0.02725771628320217, -0.0019743696320801973, -0.005184000823646784, 0.003951666411012411, 0.012961465865373611, 0.030208293348550797, -0.023428991436958313, 0.015232942067086697, 0.0015645672101527452, 0.006228996906429529, -0.021005302667617798, -0.008957110345363617, 0.01693069562315941, 8.543649164494127e-05, -0.06069759652018547, -0.009683046489953995, 0.002128045540302992, 0.00533914053812623, 0.03128548711538315, 0.05437492951750755, 0.0012242847587913275, -0.002313920296728611, 0.059995077550411224, 0.016743356361985207, 0.012504829093813896, 0.004393667448312044, 0.0005634783301502466, -0.010643154382705688, 0.021813198924064636, 0.01097099669277668, 0.012902922928333282, -0.04271312430500984, 0.010297750122845173, 0.01385132223367691, 0.003656023181974888, 0.015947168692946434, -0.011901834048330784, 0.021895159035921097, 0.01983443833887577, -0.03779549524188042, 0.02086479775607586, -0.0037672552280128, 0.03915369510650635, 0.0026520071551203728, -0.025548255071043968, 0.02047841250896454, -0.020408160984516144, 0.013757653534412384, -0.007961875759065151, -0.011351527646183968, -0.0025276029482483864, 0.035008836537599564, -0.009524979628622532, 0.041097331792116165, 0.017445875331759453, -0.01454213261604309, -0.003890196094289422, -0.03299495205283165, -0.03144941106438637, -0.016684813424944878, -0.01817181147634983, -0.016673104837536812, 0.0028832529205828905, 0.009478145278990269, -0.0031730416230857372, 0.03135574236512184, -0.004900066182017326, -0.010994413867592812, 5.9869573306059465e-05, -0.011211023665964603, 0.007926749996840954, 0.015232942067086697, 0.001268923981115222, 0.05704449862241745, 0.008799043484032154, 0.010953433811664581, 0.017387332394719124, -0.007692577317357063, 0.021450230851769447, -0.012750710360705853, 0.023030897602438927, 0.0599014088511467, 0.016579436138272285, -0.009548396803438663, 0.021040428429841995, 0.032620273530483246, 0.013101968914270401, -0.006041658576577902, 0.031847503036260605, 0.039270780980587006, -0.030981063842773438, -0.0362967886030674, 0.018183520063757896, -0.004259018227458, -0.02739821933209896, 0.016673104837536812, -0.0026929874438792467, 0.019682224839925766, -0.010619737207889557, -0.006802720483392477, 0.0064163352362811565, 0.0070427474565804005, 0.012048191390931606, -0.0012506291968747973, 0.010801221244037151, 0.015841791406273842, -0.005377193447202444, 0.007294483482837677, -0.02385050244629383, 0.0007822836050763726, 0.008916130289435387, 0.00797943864017725, 0.013301015831530094, -0.001145983231253922, 0.008002855814993382, -0.005005443934351206, -0.006878826767206192, -0.020677460357546806, 0.040769487619400024, -0.0005298160249367356, -0.00876977201551199, 0.02800706960260868, -0.013687401078641415, 0.0053040143102407455, -0.006726614199578762, 0.004001427907496691, -0.013043425977230072, 0.01537344604730606, -0.00803212821483612, 0.024283722043037415, 0.030325381085276604, 0.009279098361730576, -0.0034833208192139864, 0.03526642546057701, -0.016193050891160965, -0.02141510508954525, -0.0017065344145521522, -0.017211701720952988, -6.480915908468887e-05, -0.06964299827814102, -0.051237013190984726, 0.013546898029744625, 0.030957646667957306, 0.0010201153345406055, 0.0021792708430439234, -0.009162011556327343, -0.0054825711995363235, -0.014331377111375332, 0.013347851112484932, -0.01069584395736456, -0.013008300215005875, -0.019799312576651573, -0.005924572236835957, 0.008359969593584538, 0.005716743879020214, 0.01859332248568535, 0.040933407843112946, 0.01861673966050148, 0.00035089332959614694, -0.01953001320362091, 0.033814556896686554, -0.002258304040879011, 0.018195228651165962, 0.016497476026415825, -0.06805062294006348, -0.000989380176179111, -0.037022724747657776, 0.006428043823689222, 0.01293804869055748, -0.018874328583478928, -0.003989719320088625, 0.03437656909227371, -0.01066657155752182, -0.023873919621109962, -0.0142142903059721, -0.005927499383687973, 0.02133314311504364, 0.03011462464928627, 0.0003572964924387634, 0.01922558806836605, 0.0458744540810585, 0.01734049804508686, 0.004095097072422504, -0.011620826087892056, -0.013980117626488209, 0.0142142903059721, -0.004864940419793129, -0.005184000823646784, 0.009337641298770905, 0.001855819602496922, 0.028686171397566795, 0.0055908760987222195, 0.02041986957192421, -0.011755475774407387, -0.008008710108697414, 0.045312441885471344, 0.00930836983025074, 0.002694451017305255, 0.04779467359185219, -0.0198929812759161, -0.0028188552241772413, 0.014670927077531815, 0.03313545510172844, 0.0371163934469223, 0.012727293185889721, 0.008635123260319233, 0.009829403832554817, 0.02662545070052147, 0.02340557426214218, 0.0003999232721980661, -0.030325381085276604, 0.03648412600159645, -0.015666162595152855, -0.01632184535264969, 0.007212522905319929, 0.013254181481897831, -0.00011964767327299342, 0.012961465865373611, 0.007013475988060236, -0.001870455453172326, 0.005611366126686335, -0.008722937665879726, -0.043181467801332474, -0.0012440431164577603, 0.005128384567797184, 0.03402531147003174, -0.015595910139381886, -0.017879094928503036, 0.0006955664721317589, -0.015748122707009315, -0.03255002200603485, -0.045452944934368134, -0.0006794671062380075, -0.01498706080019474, -0.003975083585828543, -0.022585969418287277, 0.0010559731163084507, -0.031051315367221832, 0.007932604290544987, 0.003023756667971611, 0.0314728282392025, -0.02224641852080822, 0.019131919369101524, -0.01756296120584011, 0.008506327867507935, 0.00012778883683495224, 0.03997329995036125, -0.0012777054216712713, 0.009677192196249962, 0.013101968914270401, -0.0004182180273346603, -0.02529066428542137, -0.020396452397108078, 0.029833616688847542, -0.005552823189646006, -0.030817143619060516, -0.01892116479575634, 0.03166016563773155, -0.017516126856207848, 0.028545666486024857, -0.007411569822579622, 0.008699520491063595, 0.0019158263457939029, 0.006433898117393255, -0.03692905232310295, 0.013301015831530094, -0.022890392690896988, 0.02676595374941826, -0.019986649975180626, -0.009583522565662861, -0.00015852402430027723, -0.008845878764986992, -0.013219055719673634, 0.02241033874452114, -0.020899923518300056, -0.0207477118819952, 0.022644512355327606, 0.008834169246256351, -0.03461074456572533, -0.02465839870274067, 0.026086851954460144, 0.01563103497028351, 0.010649008676409721, 0.02241033874452114, 0.013101968914270401, -0.010830492712557316, -0.0044200122356414795, 0.03786574676632881, -0.041097331792116165, 0.00804969109594822, 0.010204080492258072, 0.013090260326862335, -0.05549895763397217, -0.009255681186914444, -0.009454728104174137, 0.0023417281918227673, -0.026086851954460144, -0.0007786246133036911, 0.06350766867399216, 0.007382298354059458, 0.012809253297746181, 0.0014862656826153398, -0.012762418948113918, -0.03444682061672211, -0.0009915755363181233, 0.00994649063795805, 0.005336213391274214, 0.004671747796237469, -0.029271602630615234, -0.03196458891034126, -0.015420280396938324, -0.028334911912679672, 0.005383047740906477, -0.016673104837536812, 0.0058718835934996605, -0.008330698125064373, -0.02571217529475689, -0.0047098007053136826, -0.03311203792691231, 0.010508505627512932, 0.0015060239238664508, -0.0032520750537514687, -0.026836205273866653, 0.003793599782511592, -0.007786246482282877, -0.021543899551033974, -0.006867118179798126, -0.0037965269293636084, 0.01670823059976101, 0.01152715738862753, -0.014307959005236626, -0.028264660388231277, 0.006949078291654587, 0.015748122707009315, -0.03742081671953201, -0.00023691703972872347, -0.000914005795493722, -0.008605850860476494, 0.01429625041782856, -0.06397601217031479, 0.0011020757956430316, 0.0061528910882771015, -0.0035243008751422167, -0.01914362795650959, 0.022585969418287277, -0.008026273921132088, -0.018956290557980537, 0.010578757151961327, -0.026133686304092407, -0.0016640906687825918, 0.013546898029744625, 0.02041986957192421, 0.023557785898447037, -0.01415574736893177, 0.018031306564807892, 0.007353026419878006, -0.02906084805727005, 0.005479644052684307, -0.012539954856038094, 0.004639549180865288, 0.03203484043478966, 0.004127296153455973, -0.021988827735185623, 0.007616471033543348, -0.009782569482922554, -0.021368270739912987, -0.023147983476519585, 0.01798447221517563, -0.0028905707877129316, -0.014998769387602806, 0.010280187241733074, -0.014413337223231792, -0.0018119121668860316, 0.01033287588506937, 0.004282435402274132, -0.011603263206779957, 0.0008466811268590391, 0.031683582812547684, -0.009981616400182247, -0.006744177080690861, -0.008506327867507935, -0.002640298567712307, 0.017527835443615913, -0.002810073783621192, 0.03301836922764778, -0.025314081460237503, 0.004744926933199167, -0.00533328577876091, -0.013500062748789787, -0.002212933264672756, -0.0004584664711728692, 0.0027339677326381207, 0.006574402097612619, 0.0332525409758091, 0.01883920282125473, 0.01875724270939827, 0.01687215268611908, 0.01369910966604948, -0.011749621480703354, -0.004080461338162422, -0.0035330825485289097, 0.0007500848150812089, -0.033955059945583344, -0.015701288357377052, -0.0005239616730250418, -0.014108912087976933, -0.021567316725850105, 0.010063577443361282, -0.03271394222974777, 0.01620475947856903, -0.0047859069891273975, -0.020736003294587135, -0.026133686304092407, 0.026508362963795662, -0.010426544584333897, -0.059105221182107925, 0.005025933962315321, 0.008125796914100647, 0.010104557499289513, 0.006217288319021463, -0.0001313563116127625, -0.024775484576821327, -0.016837025061249733, 0.01701265573501587, 0.01543198898434639, -0.029927287250757217, -0.04006696864962578, -0.028803257271647453, -0.00886344164609909, 0.015150981955230236, 0.016075965017080307, 0.04219794273376465, -0.022621095180511475, -0.0005795777542516589, 0.03250318765640259, 0.03222218155860901, -0.006685634143650532, 0.0008561943541280925, -0.0005407928838394582, -0.009355204179883003, 0.007083727978169918, 0.024775484576821327, 0.010906599462032318, 0.01784396916627884, 0.0053537762723863125, -0.007622325327247381, -0.01558420155197382, 0.01673164777457714, -0.023171400651335716, 0.018487943336367607, 0.03130890801548958, -0.031144985929131508, 0.018932873383164406, -0.0075286561623215675, -0.048661112785339355, 0.006586110685020685, -0.0009432773804292083, 0.04011380299925804, -0.0025217486545443535, -0.008635123260319233, 0.00983525812625885, 0.015853499993681908], [-0.02165248431265354, 0.0003617953334469348, 0.047105200588703156, 0.0454702191054821, -0.026226019486784935, -0.0156870037317276, 0.004951901268213987, 0.03992453217506409, 0.032368253916502, 0.016062607988715172, -0.019818652421236038, 0.023375846445560455, -0.007556275464594364, -0.02481197938323021, -0.012019338086247444, -0.022481024265289307, -0.02342003397643566, 0.04228862747550011, -0.039747774600982666, -0.04277470335364342, 0.0026844663079828024, 0.019166868180036545, -0.03194846212863922, 0.0470610111951828, 0.03473235294222832, 0.019774463027715683, 0.028391268104314804, -0.014946842566132545, 0.002110012574121356, 0.0016916004242375493, -0.01844879984855652, -0.012726358138024807, 0.03541727736592293, -0.03806860372424126, 0.00568930059671402, -0.017995866015553474, -0.08404698967933655, 0.03972567990422249, 0.022911863401532173, -0.023287467658519745, -0.01883545145392418, 0.005584352649748325, -0.004336020443588495, -0.07896528393030167, -0.03265548124909401, 0.07666747272014618, 0.039173323661088943, -0.05033097788691521, -0.0007456850726157427, 0.02403867617249489, 0.00588262639939785, 0.015421872027218342, 0.02275720238685608, 0.014880559407174587, 0.008832225576043129, 0.00010598394146654755, 0.016316693276166916, -0.02951808087527752, 0.06500164419412613, -0.045735351741313934, 0.014836370944976807, -0.014493907801806927, -0.03634524345397949, 0.037494149059057236, 0.014946842566132545, 0.025806225836277008, -0.0196087546646595, 0.03243453800678253, -0.0388198122382164, 0.037582527846097946, 0.02892153337597847, 0.014880559407174587, 0.043194498866796494, -0.010964332148432732, 0.010864907875657082, 0.006457080133259296, 0.011787347495555878, 0.013886312954127789, 0.004134409595280886, 0.005576067138463259, -0.02923085354268551, 0.0006925204652361572, -0.053468380123376846, 0.0321694053709507, 0.0063631790690124035, 0.024347998201847076, -0.0015976992435753345, 0.03086583875119686, -0.006943156477063894, -0.003700807224959135, -0.008313007652759552, -0.019641896709799767, -0.005556734744459391, -0.005959956906735897, -0.015941089019179344, 0.05086124315857887, -0.009964562021195889, -0.018294140696525574, 0.005498737096786499, 0.01882440596818924, -0.0299820639193058, 0.002667895518243313, -0.0062361364252865314, 0.03939426690340042, 0.028965722769498825, -0.04918207228183746, -0.016228316351771355, 0.013455472886562347, 0.015709098428487778, 0.018979065120220184, 0.02018320932984352, 0.055235929787158966, -0.04829829931259155, 0.02069137990474701, 0.019641896709799767, 0.033671822398900986, -0.039571020752191544, -0.003963178023695946, 0.013212434947490692, -0.011787347495555878, -0.029473893344402313, -0.008655469864606857, -0.009478485211730003, -0.025629471987485886, -0.01617307960987091, -0.019663991406559944, -0.06098046526312828, 0.017321987077593803, -0.039460547268390656, -0.018062150105834007, 0.02931923232972622, -0.013135104440152645, 0.01309091504663229, -0.025253867730498314, -0.012428084388375282, -0.040631551295518875, -0.017432458698749542, 0.026712095364928246, -0.017797017470002174, 0.025629471987485886, 0.05912454053759575, 0.001719218329526484, 0.04065364599227905, 0.03329622000455856, -0.07569532096385956, 0.0014057544758543372, -0.01862555555999279, 0.08378186076879501, -0.011052710004150867, -0.0006510935490950942, -0.0196087546646595, 0.005266746040433645, 0.03893028199672699, -0.027330737560987473, 0.004521060734987259, 0.0036676658783107996, 0.014151445589959621, 0.021144313737750053, 0.009031075052917004, 0.06376435607671738, -0.03968149051070213, 0.018968017771840096, -0.018990112468600273, -0.0319705568253994, 0.04184674099087715, -0.02547481097280979, -0.01704580895602703, -0.06526677310466766, -0.04723776876926422, -0.04648656025528908, -0.06544353067874908, -0.014438671991229057, -0.0034660545643419027, -0.0615549199283123, -0.01567595638334751, -0.10004331916570663, -0.007269048597663641, 0.021586202085018158, 0.05824076384305954, 0.013322906568646431, -0.029341327026486397, -0.03214731067419052, -0.005244651809334755, -0.006512316409498453, 0.00347986351698637, 0.02980530820786953, -0.00038734194822609425, -0.0017785970121622086, 0.004380209371447563, 0.013256623409688473, 0.055456873029470444, -0.025850415229797363, 0.0005319910706020892, 0.01108585111796856, -0.01851508393883705, 0.02047043666243553, -0.019741320982575417, -0.04312821477651596, -0.011599545367062092, 0.005056849215179682, 0.012770547531545162, -0.018747074529528618, 0.03548356145620346, 0.041117627173662186, -0.0639411136507988, -0.02136525698006153, 0.0231328085064888, -0.029672741889953613, 0.029540175572037697, 0.015167786739766598, -0.0006569623365066946, 0.0034522456116974354, -0.09421040117740631, 0.018747074529528618, -0.0013056392781436443, 0.015819570049643517, 0.018581366166472435, 0.007655699737370014, 0.003993557766079903, -0.002966169500723481, 0.02900991030037403, 0.03068908303976059, 0.03126353770494461, -0.0039604161866009235, -0.04125019162893295, -0.027419116348028183, 0.028678495436906815, -0.0012752595357596874, 0.0030462616123259068, -0.051921773701906204, -0.02147573046386242, 0.04763546586036682, -0.005275031551718712, -0.013400237075984478, -0.04332706332206726, 0.049270451068878174, -0.05267298221588135, -0.05775468796491623, -0.022911863401532173, 0.006556504871696234, -0.0025891843251883984, -0.013941548764705658, -0.004482395946979523, 0.032191500067710876, 0.0014513240894302726, -0.014151445589959621, -0.006086999550461769, -0.0009321063407696784, 0.05165664106607437, 0.0470610111951828, 0.017310939729213715, -0.03325203061103821, 0.03320784121751785, -0.042796798050403595, 0.05134731903672218, 0.005031993146985769, 0.030512327328324318, 0.03440093621611595, 0.03999081254005432, -0.020901275798678398, -0.011632686480879784, -0.043857328593730927, -0.0040543172508478165, 0.04551440477371216, -0.015134644694626331, -0.04432130977511406, -0.0005506331799551845, -0.006700118537992239, -0.024856168776750565, -0.0003352130588609725, -0.020238444209098816, -0.018106337636709213, 0.008605757728219032, 0.0243259035050869, -0.024944545701146126, -0.025629471987485886, 0.012030385434627533, 0.012218187563121319, 0.0011275034630671144, 0.038377925753593445, -0.062482886016368866, 0.0025781369768083096, 0.03340668976306915, 0.00038665151805616915, -0.010958808474242687, -0.012096668593585491, -0.005305411294102669, 0.03999081254005432, -0.033870670944452286, 0.011455931700766087, 0.06522258371114731, -0.008760418742895126, 0.04085249453783035, -0.010677105747163296, 0.013941548764705658, 0.015311399474740028, 0.005410359241068363, -0.040432702749967575, 0.0030628324020653963, -0.013742699287831783, -0.00882117822766304, 0.017211515456438065, -0.019376764073967934, 0.014007831923663616, -0.07423709332942963, 0.041714172810316086, 0.04772384464740753, 0.04900531843304634, 0.001433372381143272, 0.03040185570716858, -0.0016916004242375493, 0.03548356145620346, -0.01103061530739069, -0.0004919450148008764, -0.011444884352385998, 0.0191116314381361, -0.006042810622602701, 0.010610822588205338, -0.027397021651268005, -0.016327740624547005, 0.04266423359513283, 0.02498873509466648, 0.018172621726989746, -0.03694178909063339, 0.04732614383101463, -0.014880559407174587, 0.035638220608234406, 0.032788049429655075, -0.014372388832271099, -0.013101962395012379, -0.018459847196936607, 0.0164824016392231, 0.004482395946979523, -0.03718482702970505, -0.030932120978832245, 0.01030150055885315, 0.00517008313909173, -0.017498742789030075, -0.03287642449140549, 0.0028087471146136522, 0.03840002045035362, -0.06049438938498497, 0.010500350035727024, -0.04630980268120766, 0.0008844653493724763, 0.023685166612267494, 0.03526261821389198, 0.031219348311424255, -0.0016432689735665917, 0.052982304245233536, -0.033583447337150574, 0.03689759969711304, 0.011455931700766087, -0.015830617398023605, -0.04036641865968704, -0.007915308699011803, 0.02863430604338646, -0.04164789244532585, -0.002955122385174036, -0.0001766686764312908, -0.005366170778870583, 0.0117652527987957, 0.004355353303253651, 0.0269551333039999, 0.01912267878651619, -0.003606906160712242, -0.02971693128347397, -0.030247194692492485, 0.035638220608234406, -0.038201168179512024, -0.008749371394515038, -0.012660074979066849, -0.02746330387890339, -0.016206221655011177, 0.03775928169488907, 0.004396779928356409, 0.02481197938323021, 0.038179073482751846, -0.004261452239006758, 0.015642816200852394, 0.03247872740030289, 0.04178045690059662, 0.02666790783405304, -0.0025159965734928846, 0.01773073337972164, 0.00651783961802721, -0.00730219017714262, -0.01684695854783058, 0.05598713830113411, -0.03596963733434677, 0.028170324862003326, 0.007368473336100578, 0.005971004255115986, -0.04016757011413574, 0.0077551244758069515, -0.0062361364252865314, 0.07768381386995316, 0.038179073482751846, -0.004476872272789478, -0.034842826426029205, -0.008810130879282951, -0.014725899323821068, 0.021232692524790764, -0.07556275278329849, 0.008677564561367035, 0.04301774129271507, -0.03539518266916275, -0.027684248983860016, 0.03893028199672699, -0.037582527846097946, 0.0265574362128973, -0.032412443310022354, 0.009136022999882698, -0.011152134276926517, -0.00434154411777854, 0.026933040469884872, 0.037383679300546646, 0.009500579908490181, 0.02177400328218937, 0.0331636518239975, 0.02666790783405304, 0.007329808082431555, 0.013831077143549919, 0.02558528259396553, -0.04133857041597366, 0.009064216166734695, -0.0376267172396183, -0.007351902313530445, -0.012461225502192974, -0.057003479450941086, -0.017509790137410164, -0.030158817768096924, 0.018492989242076874, 0.0313740074634552, -0.05223109573125839, -0.023464223369956017, 0.028081946074962616, 0.01303567923605442, -0.016692297533154488, -0.03806860372424126, 0.01694638282060623, -0.01416249293833971, 0.007710936013609171, 0.022569401189684868, -0.052584607154130936, 0.007175147533416748, -0.0022011518012732267, 0.02794938161969185, 0.009119451977312565, -0.0006214042077772319, 0.014295058324933052, 0.017598167061805725, -0.03060070611536503, -0.0020948227029293776, -0.032611291855573654, -0.012483320198953152, 0.052982304245233536, -0.01470380462706089, -0.024259621277451515, -0.025143396109342575, 0.041824646294116974, 0.06168748810887337, 0.01764235645532608, 0.04164789244532585, -0.021718768402934074, 0.005625779274851084, 0.005051326006650925, 0.022867675870656967, -0.015863759443163872, -0.022624637931585312, -0.006434985902160406, -0.011008520610630512, -0.006898967549204826, 0.01309091504663229, 0.01629459857940674, -0.04401198774576187, -0.010892525315284729, -0.03139610216021538, -0.007837978191673756, -0.041625797748565674, 0.007020486518740654, 0.04281889274716377, -0.03519633412361145, -0.013002538122236729, -0.013245576061308384, 0.04882856085896492, 0.036720845848321915, -0.004858000203967094, -0.03208102658390999, -0.000896202982403338, -0.02439218759536743, -0.01250541489571333, 0.0446748211979866, -0.008373767137527466, -0.04684006795287132, 0.014272964559495449, -0.03126353770494461, 0.04023385047912598, 0.020514624193310738, -0.02196180634200573, 0.01607365533709526, -0.029429703950881958, 0.03851049020886421, -0.03459978848695755, 0.06455975770950317, 0.028081946074962616, 0.0034771019127219915, -0.010555585846304893, -0.020326822996139526, -0.0019567329436540604, -0.017509790137410164, -0.02783890813589096, 0.0005223247571848333, 0.02304442971944809, -0.014571238309144974, -0.024370092898607254, 0.008489762432873249, -0.005810820031911135, -0.03400323912501335, 0.02971693128347397, 0.004394018091261387, 0.024789884686470032, 0.026049265637993813, -0.040145475417375565, -0.005827390588819981, 0.0011827393900603056, -0.01704580895602703, -0.026712095364928246, 0.009180211462080479, -0.013831077143549919, -0.013300811871886253, -0.030225101858377457, -0.045138802379369736, 0.014250869862735271, 0.011588498018682003, -0.009312777779996395, -0.0015107026556506753, 0.005866055842489004, -0.0015866521280258894, -0.02470150776207447, 0.012626933865249157, -0.03791394084692001, 0.004714386537671089, -0.030644893646240234, 0.02567365951836109, 0.02049252949655056, 0.010732341557741165, 0.02068033255636692, -0.0006131188129074872, -0.02056986093521118, 0.034467220306396484, 0.030048346146941185, -0.02079080417752266, -0.002426238264888525, 0.04918207228183746, 0.028965722769498825, 0.007804837077856064, -0.014416578225791454, 0.033583447337150574, -0.033760201185941696, 0.012914160266518593, 0.04129438102245331, 0.013002538122236729, -0.01338918972760439, 0.014085162431001663, -0.002826698822900653, 0.006749830674380064, -0.015930041670799255, -0.01824995130300522, -0.021420493721961975, -0.0002269851538585499, 0.00436363834887743, 0.02501082979142666, -0.051612451672554016, -0.017708638682961464, 0.04257585480809212, 0.014902654103934765, -0.01579747535288334, 0.012615886516869068, 0.03499748557806015, -0.0002130035572918132, 0.04555859416723251, 0.017023714259266853, -0.01922210305929184, -0.019851792603731155, 0.027794720605015755, 0.014284011907875538, -0.029429703950881958, 0.004866285249590874, 0.022624637931585312, -0.008649947121739388, 0.029849497601389885, 0.020348915830254555, 0.009776759892702103, 0.0075341807678341866, 0.046530745923519135, -0.018979065120220184, 0.03665456175804138, -0.006992868613451719, 0.05223109573125839, -0.010434066876769066, -0.02764005959033966, -0.024657320231199265, 0.022094372659921646, -0.033583447337150574, 0.010516921058297157, 0.02812613546848297, -0.009572386741638184, 0.019851792603731155, 0.031153064221143723, 0.023022335022687912, -0.013521756045520306, -0.02235950529575348, -0.009235447272658348, -0.016979524865746498, 0.013002538122236729, -0.047900598496198654, -0.01509045623242855, -0.01629459857940674, -0.004385733045637608, -0.024966640397906303, -0.022028088569641113, 0.0197081808000803, -0.009461915120482445, 0.028258701786398888, -0.005015422590076923, -0.0072303833439946175, -0.02735283225774765, 0.022127512842416763, -0.037295300513505936, -0.03462187945842743, 0.052407849580049515, 0.015720145776867867, -0.02547481097280979, -0.005551211070269346, 0.00519217737019062, 0.010063986293971539, -0.016217269003391266, -0.019575614482164383, -0.037803471088409424, 0.03610220551490784, -0.005816343240439892, 0.007948450744152069, -0.014626474119722843, -0.003057308727875352, 0.005562258418649435, 0.011174228973686695, -0.009202306158840656, 0.021321069449186325, 0.023994488641619682, -0.0032533963676542044, 0.029076194390654564, 0.013311859220266342, -0.02234845794737339, 0.019343622028827667, -0.000638665456790477, -0.005653397645801306, 0.027993569150567055, -0.010041892528533936, 0.022282173857092857, -0.01333395391702652, 0.026248114183545113, -0.05333581566810608, -0.016780676320195198, 0.03826745226979256, -0.0009452248341403902, 0.000268584699369967, 0.011919913813471794, 0.0014154206728562713, -0.02058090828359127, -0.07799313217401505, 0.057312801480293274, -0.005976527463644743, -0.014295058324933052, -0.007081246469169855, -0.011908866465091705, -0.031241443008184433, -0.00961105152964592, -0.013808982446789742, 0.028280796483159065, -0.04058736190199852, 0.031130969524383545, -0.006998392287641764, 0.011422790586948395, -0.00032088623265735805, -0.0008547760080546141, -0.007103340700268745, -0.03389276564121246, 0.023972393944859505, -0.027308644726872444, 0.020437294617295265, 0.012748452834784985, 0.028015663847327232, 0.013201387599110603, -0.004628770984709263, 0.00803682766854763, 0.026822566986083984, 0.011897819116711617, -0.027397021651268005, -0.007909785024821758, 0.016924289986491203, 0.0301809124648571, -0.023685166612267494, -0.08603548258543015, -0.014427624642848969, -0.012394942343235016, -0.00347986351698637, -0.024193337187170982, 0.0025394719559699297, 0.0016819341108202934, -0.014714851975440979, 0.010875954292714596, -0.026623718440532684, -0.02724236063659191, -0.04834248498082161, 0.031219348311424255, -0.010086080990731716, 0.027131889015436172, 0.009837519377470016, 0.010925667360424995, -0.04138275980949402, 0.03424627706408501, 0.0002785962133202702, 0.019277339801192284, -0.02439218759536743, -0.026446962729096413, -0.017973771318793297, -0.03258919715881348, -0.031705424189567566, 0.010655011050403118, 0.0019484474323689938, 0.010461685247719288, 0.018260998651385307, 0.013654322363436222, -0.012284470722079277, -0.009682858362793922, -0.0020699664019048214, 0.012881019152700901, -0.041228096932172775, 0.005592638161033392, 0.0004805525823030621, -0.004725433886051178, -0.006633835379034281, -0.03784766048192978, -0.011240512132644653, 0.004253166727721691, 0.027794720605015755, -0.0009528197697363794, -0.01695743016898632, 0.02940760925412178, 0.012383895926177502, 0.0056368266232311726, 0.03870933875441551, 0.019277339801192284, 0.044277120381593704, 0.007075722794979811, 0.028965722769498825, 0.012196093797683716, -0.008329578675329685, 0.02439218759536743, -0.005283316597342491, 0.01753188483417034, -0.01657077856361866, 0.02490035817027092, 0.04398989677429199, -0.010561109520494938, -0.029164571315050125, 0.006169853266328573, 0.010235218331217766, 0.016250411048531532, -0.05744536593556404, 0.039350077509880066, 0.019166868180036545, -0.0008133490919135511, -0.00365109508857131, -0.04496204853057861, -0.029628552496433258, -0.04869599640369415, -0.047900598496198654, -0.03252291679382324, 0.009892755188047886, -0.02783890813589096, -0.00912497565150261, -0.0003462602326180786, -0.005393788684159517, -0.020558813586831093, 0.024259621277451515, 0.01657077856361866, 0.03815698251128197, 0.03462187945842743, -0.01416249293833971, -0.0024497134145349264, -0.017200468108057976, -0.01127917692065239, -0.027905192226171494, -0.00483038229867816, -0.005379979498684406, -0.035616129636764526, -0.0064902217127382755, 0.01765340380370617, -0.014328200370073318, -0.0033914861269295216, -0.018802311271429062, 0.028899438679218292, 0.0474587120115757, 0.024281714111566544, -0.0003617953334469348, -0.022481024265289307, 0.022668825462460518, -0.05214271694421768, 0.0023047192953526974, -0.005338552873581648, -0.011489073745906353, 0.01171001698821783, 0.028545929118990898, -0.03373810648918152, -0.03360553830862045, -0.023000242188572884, 0.014372388832271099, -0.00011927508603548631, 0.006766401696950197, 0.03506376966834068, 0.03159495070576668, -0.016427164897322655, 0.007473421283066273, -0.04164789244532585, -0.05678253620862961, 0.015753287822008133, -0.006274801678955555, -0.006655929610133171, 0.028545929118990898, 0.019785510376095772, 0.028965722769498825, -0.002888839226216078, 0.0029468368738889694, 0.015289305709302425, -0.011522214859724045, 0.02587250992655754, 0.005620256066322327, 0.009732570499181747, 0.03311946243047714, -0.015267211012542248, 0.02903200499713421, 0.004429921507835388, -0.04312821477651596, -0.004684006795287132, 0.001260069664567709, -0.010423020459711552, -0.0005930957850068808, -0.02223798632621765, -0.019244197756052017, 0.018780216574668884, -0.011002996936440468, 0.010577680543065071, -0.019984358921647072, -0.03011462837457657, -0.0023502889089286327, 0.0267562847584486, -0.03840002045035362, -0.029540175572037697, 0.028744777664542198, -0.00303797610104084, 0.011118993163108826, 0.016051560640335083, 0.0009127737721428275, 0.029098287224769592, -0.01554339099675417, 0.008064446039497852, 0.022326363250613213, 0.0006144997314549983, 0.04560278356075287, 0.018780216574668884, 0.008025780320167542, -0.0021017270628362894, -0.014339247718453407, 0.011930961161851883, -0.026005076244473457, 0.030070440843701363, -0.006970774382352829, -0.019001159816980362, 0.012030385434627533, 0.017487695440649986, 0.023640979081392288, 0.025541095063090324, 0.020514624193310738, -0.024458469823002815, 0.03265548124909401, 0.04032222926616669, 0.01299149077385664, -0.030468139797449112, 0.04277470335364342, 0.04204558953642845, -0.0032340637408196926, 0.01509045623242855, 0.019177915528416634, -0.030622798949480057, -0.008042351342737675, 0.008688611909747124, -0.027772625908255577, -0.005810820031911135, 0.0033611063845455647, 0.03011462837457657, -0.022492071613669395, -0.002224627183750272, -0.04931464046239853, 0.02155306003987789, 0.0018407374154776335, -0.03775928169488907, -0.018371470272541046, 0.04016757011413574, 0.06027344614267349, -0.03550565615296364, 0.06566447764635086, -0.031241443008184433, 0.015256163664162159, -0.015024173073470592, 0.013764793984591961, -0.019818652421236038, -0.01578642800450325, -0.016880100592970848, 0.029385514557361603, -0.02254730649292469, -0.012229234911501408, -0.031528670340776443, -0.03420208767056465, -0.02030472829937935, -0.023486318066716194, 0.03126353770494461, -0.0394163616001606, -0.0012497128918766975, -0.014626474119722843, 0.01289206650108099, 0.0006158806500025094, 0.04237700626254082, -0.003408056916669011, 0.037803471088409424, 0.0032975850626826286, -0.016990572214126587, 0.005413121078163385, 0.0036538566928356886, 0.010356737300753593, 0.0007298047421500087, -0.004753051791340113, -0.019056396558880806, -0.014195634052157402, -0.02324328012764454, -0.004034984856843948, 0.023066524416208267, -0.002699656179174781, -0.007373996544629335, -0.016626015305519104, 0.02538643404841423, -0.027087699621915817, -0.039062850177288055, -0.001406444818712771, 0.057003479450941086, 0.02549690566956997, 0.028104040771722794, 0.014504955150187016, 0.023640979081392288, 0.02569575421512127, 0.03009253554046154, 0.005705871619284153, -0.018780216574668884, 0.01822785660624504, 0.011118993163108826, 0.03616848587989807, 0.019752368330955505, 0.0303797610104084, -0.004184121731668711, -0.013786887750029564, 0.05002165958285332, 0.06385273486375809, 0.02450265921652317, -0.023397939279675484, 0.029054099693894386, -0.03382648527622223, 0.018548225983977318, 0.008329578675329685, 0.04237700626254082, -0.01863660290837288, 0.012074574828147888, 0.023199090734124184, 0.02450265921652317, -0.04193511977791786, 0.023972393944859505, -0.022005993872880936, 0.030954215675592422, 0.048386674374341965, 0.028391268104314804, 0.01569805108010769, 0.03135191276669502, 0.003416342195123434, 0.04273051396012306, -0.02578413300216198, 0.025960886850953102, 0.04469691589474678, 0.035837072879076004, 0.019089536741375923, 0.005772154778242111, 0.03767090290784836, -0.043393347412347794, -0.019166868180036545, -0.001793786883354187, 0.0011130040511488914, 0.018691839650273323, 0.026402775198221207, -0.007965020835399628, 0.0058881500735878944, 0.011820489540696144, 0.012958349660038948, -0.030821649357676506, 0.009892755188047886, 0.011411743238568306, -0.0194099061191082, 0.0016059846384450793, -0.006291372235864401, -0.013345000334084034, 0.0012207140680402517, 0.0466633141040802, -0.001498274621553719, 0.024657320231199265, 0.004261452239006758, 0.012140857055783272, 0.03510795906186104, 0.032500822097063065, 0.035814978182315826, 0.016537638381123543, 0.037980224937200546, 0.0020050641614943743, 0.03345087915658951, 0.009572386741638184, 0.05055192485451698, 0.0033279648050665855, -0.0026968943420797586, 0.033671822398900986, -0.030755365267395973, -0.02940760925412178, -0.03413580358028412, 0.001982969930395484, -0.01883545145392418, 0.012715310789644718, -0.01289206650108099, 0.0048138112761080265, 0.014836370944976807, 0.02058090828359127, 0.0036013827193528414, 0.06332246959209442, -0.00448791915550828, 0.030335573479533195, 0.01902325451374054, 0.03148448094725609, -0.01577538251876831, -0.008086539804935455, 0.006628311704844236, -0.00580529635772109, 0.01524511631578207, 0.00955581571906805, 0.005570543464273214, -0.012118763290345669, 0.028104040771722794, 0.0018324520206078887, 0.0017316463636234403, 0.00740161444991827, 0.0075010391883552074, -0.022039135918021202, -0.04315030947327614, 0.008997933007776737, 0.00586053216829896, 0.006987345404922962, -0.02764005959033966, 0.01377584133297205, 0.0539102666079998, 0.023707261309027672, -0.0021044888999313116, 0.017001619562506676, -0.013499661348760128, -0.045426029711961746, 0.005277792923152447, 0.014140398241579533, -0.026888851076364517, 0.04988909140229225, -0.016239363700151443, 0.029959969222545624, -0.011511167511343956, -0.003957654349505901, 0.018481941893696785, -0.019763415679335594, -0.006992868613451719, 0.02011692523956299, -0.0017523599090054631, 0.03775928169488907, -0.011036138981580734, 0.042111873626708984, -0.011632686480879784, -0.01754293218255043, 0.02361888438463211, 0.029252948239445686, 0.07185089588165283, 0.026049265637993813, 0.004407827276736498, 0.033274125307798386, -0.007147529162466526, 0.008081017062067986, 0.04882856085896492, -0.031307727098464966, 0.006136711686849594, 0.0265574362128973, -0.04471901059150696, -0.0032644434832036495, 0.017476648092269897, 0.004824858624488115, -0.0009880326688289642, -0.02235950529575348, 0.021983901038765907, -0.0154881551861763, 0.0325671061873436, 0.0023047192953526974, 0.014571238309144974, 0.01072681788355112, -0.007175147533416748, 0.04310612007975578, 0.003979748580604792, 0.03442303091287613, -0.027308644726872444, 0.049358826130628586, -0.0023364799562841654, 0.0120635274797678, 0.002118297852575779, -0.04089668393135071, -0.01161059271544218, -0.03380439057946205, -0.015300353057682514, -0.046530745923519135, 0.013367095030844212, -0.0026430392172187567, -0.012881019152700901, -0.013101962395012379, -0.01210771594196558, 0.052098531275987625, -0.010815194807946682, 0.005592638161033392, -0.006357655394822359, 0.027220265939831734, 0.01122394111007452, -0.010909096337854862, -0.0027990806847810745, 0.04913788288831711, 0.02030472829937935, 0.030711177736520767, 0.00730219017714262, 0.015731193125247955, -0.00818596500903368, 0.01010265201330185, 0.019045349210500717, -0.009368013590574265, 0.005788725335150957, -0.028943628072738647, 0.017675498500466347, 0.01912267878651619, 0.021928664296865463, -0.0048138112761080265, 0.042200252413749695, 0.05178920924663544, 0.018581366166472435, 0.019188962876796722, -0.002076870994642377, -2.2418020307668485e-05, -0.041029248386621475, 0.019465140998363495, 0.013698510825634003, 0.020812898874282837, -0.017520837485790253, -0.006180900614708662, -0.017918536439538002, -0.0007601844845339656, -0.016714392229914665, 0.009064216166734695, -0.0068823969922959805, -0.005866055842489004, 0.000727733364328742, -0.012516462244093418, -0.028258701786398888, -0.02029368095099926, 0.012394942343235016, 0.02609345316886902, 0.010765482671558857, -0.012361801229417324, 7.836597796995193e-05, -0.005051326006650925, -0.004051555413752794, -0.017134185880422592, 0.03910703957080841, 0.004819334950298071, -0.013588039204478264, 0.039151228964328766, -0.00897583831101656, -0.006512316409498453, -0.005838437937200069, 0.031197253614664078, -0.023552600294351578, -0.004137170966714621, 0.008219106122851372, 0.013698510825634003, 0.006407367996871471, 0.0012787118321284652, -0.006611740682274103, 0.03166123479604721, 0.009368013590574265, -0.011997244320809841, 0.0015907947672531009, 0.010097128339111805, -0.005976527463644743, -0.0037090927362442017, -0.0231328085064888, -0.033981144428253174, 0.022580448538064957, 0.011853630654513836, -0.03608011081814766, 0.01420668140053749, 0.0033914861269295216, 0.025541095063090324, 0.027883097529411316, -0.027397021651268005, -0.01475904043763876, -0.015819570049643517, -0.019763415679335594, -0.01608470268547535, -0.024723602458834648, 0.02598298154771328, 0.003924512770026922, -0.025055017322301865, -0.057224422693252563, -0.0021293452009558678, 0.04273051396012306, -0.044564347714185715, 0.0009252018062397838, -0.0016225554281845689, -0.02135421149432659, 0.006368702743202448, 0.010152364149689674, 0.014516002498567104, -0.006064905319362879, 0.002933027921244502, -0.02567365951836109, 0.023751450702548027, -0.005429692100733519, -0.049270451068878174, -0.0026029932778328657, -0.01161059271544218, 0.016493448987603188, 0.024149149656295776, -0.0072800954803824425, 0.003430151380598545, 0.014549143612384796, 0.023663071915507317, 0.002899886341765523, -0.003985272254794836, -0.01587480679154396, -0.000228020828217268, 0.0015562723856419325, 0.0030959739815443754, -0.019641896709799767, -0.00732428440824151, -0.011152134276926517, -0.01304672658443451, -0.003841659054160118, -0.0081417765468359, 0.0102020762860775, 0.011643733829259872, 0.04186883568763733, -0.006197471171617508, 0.02461313083767891, 0.0031374008394777775, 0.023508412763476372, -0.011743159033358097, 0.01753188483417034, 0.038687244057655334, 0.025651566684246063, 0.02087918110191822, 0.05227528512477875, -0.005838437937200069, 0.027971474453806877, -0.014460766687989235, -0.02008378505706787, 0.03163914009928703, 0.01038435474038124, -0.008511857129633427, 0.012383895926177502, -0.009008980356156826, -0.02715398371219635, -0.004396779928356409, 0.00012108751252526417, -0.028678495436906815, 0.006545457523316145, 2.3140833036450204e-06, -0.018294140696525574, 0.015123597346246243, 0.03705226257443428, 0.019376764073967934, -0.023110713809728622, 0.013521756045520306, -0.008743847720324993, 0.007373996544629335, -0.03627895936369896, 0.0005623708129860461, -0.0038250882644206285, -0.014770087786018848, 0.015753287822008133, -0.017476648092269897, -0.017288846895098686, -0.035726599395275116, 0.006954203825443983, -0.022414740175008774, -0.01377584133297205, -0.029562270268797874, -0.018481941893696785, -0.012980443425476551, -0.029142476618289948, -0.010235218331217766, 0.018006913363933563, -0.04363638535141945, 0.02892153337597847, 0.006202994845807552, -0.00897583831101656, -0.03473235294222832, -0.01873602718114853, -0.0039217509329319, -0.03285432979464531, -0.029363419860601425, 0.01348861400038004, 0.0002779057831503451, -0.01716732792556286, 0.021928664296865463, -0.011257082223892212, 0.04067574068903923, -0.005125894211232662, 0.009616575203835964, -0.0448736697435379, -0.005244651809334755, -0.0309763103723526, 0.0075010391883552074, -0.024657320231199265, -0.003626238787546754, 0.008307483978569508, -0.0032451108563691378, -0.014173539355397224, 0.02841336280107498, -0.01391945406794548, 0.013135104440152645, 0.005020946264266968, 0.010224170982837677, -0.0486518070101738, 0.007600463926792145, 0.0015438442351296544, 0.008738324046134949, -0.007782742381095886, 0.03281014412641525, 0.0017744542565196753, 0.030534422025084496, 0.0186145082116127, 0.06049438938498497, 0.013621180318295956, 0.03331831470131874, 0.008578140288591385, 0.0041178385727107525, -0.04215606302022934, 0.009323825128376484, 0.014239822514355183, 0.013135104440152645, 0.01053349208086729, -0.002180438255891204, 0.009279636666178703, 0.04173626750707626, 0.02803775854408741, 0.02146468311548233, -0.016902195289731026, 0.010704723186790943, -0.0243259035050869, 0.0031898750457912683, 0.02254730649292469, -0.027131889015436172, 0.02147573046386242, -0.03349506855010986, 0.00118204893078655, -0.007037057541310787, 0.0017385509563609958, 0.017664451152086258, -0.003513005096465349, -0.0017896441277116537, -0.008992409333586693, -0.00666697695851326, -0.01746560074388981, 0.013808982446789742, -0.06725526601076126, -0.0007125434931367636, -0.033959049731492996, -0.0159852784126997, -0.03263338655233383, -0.040631551295518875, 0.004902188666164875, 0.017708638682961464, -0.006468127481639385, 0.0026609909255057573, 0.0032451108563691378, -0.010472732596099377, 0.003985272254794836, 0.006214042194187641, -0.01792958378791809, 0.0313740074634552, 0.0019691609777510166, 0.017001619562506676, 0.027286550030112267, -0.03077745996415615, 0.008180441334843636, -0.02538643404841423, 0.035350997000932693, -0.017333034425973892, -0.0014023021794855595, -0.01872497983276844, -0.017896441742777824, -0.023795638233423233, -0.008556045591831207, 0.039769869297742844, -0.00112197978887707, 0.02609345316886902, 0.033075276762247086, 0.006523363292217255, 0.03311946243047714, -0.028258701786398888, -0.004101268015801907, -0.03128563240170479, 0.005258460529148579, -0.00737952021881938, 0.01543291937559843, 0.0026319921016693115, 0.021818192675709724, -0.0033058703411370516, 0.010743388906121254, -0.020823946222662926, -0.00901450403034687, 0.00882117822766304, 0.006672500167042017, 0.022690920159220695, 0.006976298056542873, -0.0068382080644369125, -0.015311399474740028, -0.017984818667173386, 0.0011040281970053911, 0.017874347046017647, 0.0032036839984357357, -0.008014733903110027, -0.004498966503888369, 0.001107480376958847, 0.013632227666676044, -0.012925207614898682, -0.007865596562623978, -0.03263338655233383, 0.009843043051660061, -0.0233316570520401, -0.0034743400756269693, 0.012958349660038948, -0.03519633412361145, -0.010218647308647633, 0.02096755988895893, 0.021497823297977448, 0.027087699621915817, 0.01107480376958847, -0.008318531326949596, -0.016592873260378838, -0.015642816200852394, 0.03128563240170479, -0.030666988343000412, -0.0329648032784462, -0.021442588418722153, -0.04657493531703949, -0.0072800954803824425, 0.023309562355279922, -0.014935795217752457, 0.005683777388185263, -0.03689759969711304, -0.012726358138024807, -0.012461225502192974, 0.006705641746520996, 0.010179981589317322, -0.008462144993245602, -0.02410496026277542, 0.011102422140538692, -0.0016197937075048685, -0.03736158460378647, 0.007252477575093508, -0.00946743879467249, -0.005437977146357298, 0.01971922628581524, 0.005998622160404921, -0.010478256270289421, 0.013356047682464123, 0.01773073337972164, -0.001730265561491251, -0.03464397415518761, -0.042399100959300995, 0.005451786331832409, -0.0011875724885612726, 0.010759958997368813, -0.010157887823879719, 0.014781135134398937, -0.04538184031844139, -0.02421543188393116, -0.0031677805818617344, -0.0075783696956932545, 0.0051617976278066635, 0.02832498587667942, 0.027662154287099838, 0.005526355002075434, -0.02372935600578785, -0.00036248579272069037, 0.032500822097063065, -0.0041813598945736885, 0.011809442192316055, -0.0005544306477531791, 0.009682858362793922, 0.06120141223073006, 0.007738553918898106, -0.003438436659052968, 0.018183669075369835, 0.010527968406677246, 0.006672500167042017, 0.020857086405158043, -0.031793802976608276, 0.01853717863559723, 0.011654781177639961, 0.05099381133913994, -0.01299149077385664, -0.021983901038765907, -0.003996319603174925, 0.005639588460326195], [0.03494241088628769, -0.03128669038414955, 0.06925684213638306, 0.010541034862399101, -0.060644593089818954, 0.023279987275600433, -0.01242496445775032, -0.02091386169195175, 0.0033445358276367188, 0.009268260560929775, -0.01133161224424839, 0.019366348162293434, -0.025163916870951653, 0.0010548043064773083, -0.005842424463480711, 0.03747674450278282, -0.01140450220555067, 0.029694318771362305, -0.03130911663174629, 0.0031539001502096653, 0.013692131265997887, 0.04550587013363838, 0.014791090041399002, 0.04597685486078262, -0.05091095715761185, 0.010434502735733986, 0.030142873525619507, 0.02038680948317051, 0.03047928959131241, -0.009985948912799358, 0.02257351391017437, -0.007317048031836748, 0.056473035365343094, -0.044362057000398636, 0.025253627449274063, 0.008472076617181301, -0.05082124471664429, 0.029425187036395073, 0.02293235808610916, 0.00130361202172935, -0.05920921638607979, 0.01835709996521473, -0.013131437823176384, 0.007350689731538296, -0.028146805241703987, 0.04655997455120087, 0.03947281092405319, -0.020162532106041908, -0.03260992467403412, 0.04911673814058304, 0.0019652300979942083, 0.015542419627308846, -0.019927041605114937, 0.04283697158098221, 0.03523397073149681, 0.012088548392057419, -0.011477393098175526, -0.0011732508428394794, -0.002999709453433752, -0.026083454489707947, 0.005679823458194733, -0.01613675430417061, -0.0024067761842161417, 0.021003572270274162, -0.000972802983596921, 0.004816355649381876, 0.00462291669100523, 0.03489755466580391, -0.04893731698393822, 0.025724610313773155, 0.002354911994189024, -0.0018783226842060685, -0.0038351425901055336, -0.04113246500492096, 0.029896169900894165, 0.010731671005487442, 0.06683464348316193, 0.0043145352974534035, 0.05974748358130455, 0.001714319922029972, -0.03099512867629528, 0.024020103737711906, -0.0018460828578099608, 0.04741222783923149, 0.015452709048986435, 0.0163834597915411, -0.025904033333063126, 0.033776167780160904, -0.03913639485836029, -0.00405100965872407, -0.0002580941654741764, -0.03063628450036049, -0.0060723088681697845, 0.06158655881881714, -0.007160054054111242, 0.03527882695198059, 0.023279987275600433, -0.015519991517066956, -0.0024838715326040983, 0.0610034354031086, -0.0020661549642682076, -0.006178840529173613, 0.03148853778839111, 0.0494307242333889, 0.03720761090517044, -0.08325174450874329, -0.05521707981824875, 0.0153069281950593, 0.046649686992168427, -0.04925130307674408, 0.03245292976498604, 0.029739174991846085, -0.050372689962387085, 0.037970151752233505, 0.013064155355095863, -0.010535428300499916, -0.03978680074214935, 0.01022143941372633, 0.0035015300381928682, -0.013299645856022835, 0.015744268894195557, 0.021160567179322243, 0.011398895643651485, -0.1083708107471466, 0.014589240774512291, 0.002954853931441903, -0.06284251064062119, 0.013680917210876942, -0.000624822627287358, -0.011785774491727352, 0.007928203791379929, 0.011012017726898193, 0.041782867163419724, -0.06181083619594574, -0.035996511578559875, -0.007502077147364616, 0.007731961086392403, -0.021609121933579445, -0.04164830222725868, -0.056876733899116516, 0.002659088233485818, -0.004465922713279724, 0.019669122993946075, 0.02496206760406494, -0.04566286504268646, 0.031555820256471634, 0.02286507375538349, 0.038485992699861526, 0.012324039824306965, -0.01822253316640854, -0.044272348284721375, 0.02242773398756981, -0.01141010969877243, 0.013905194588005543, 0.003694969229400158, -0.0026731055695563555, -0.011942768469452858, 0.05983719229698181, 0.007647857069969177, 0.005068667698651552, -0.04732251912355423, -0.01220068708062172, 0.03884483501315117, -0.02043166570365429, 0.07759995758533478, -0.0054583498276770115, -0.032049231231212616, -0.00021569171804003417, -0.03978680074214935, -0.04321824386715889, -0.05503765866160393, -0.017033863812685013, -0.019175712019205093, -0.03269963711500168, -8.414780313614756e-05, -0.03915882483124733, -0.025881605222821236, 0.013781842775642872, 0.04131188616156578, -0.04525916650891304, 0.011494213715195656, -0.014297679997980595, 0.006487221922725439, -0.017291782423853874, -0.02646472677588463, 0.02711513079702854, 0.027743106707930565, -0.006963811349123716, -0.014970512129366398, 0.032295938581228256, 0.007945024408400059, 0.008444041945040226, 0.03110726736485958, 0.028371082618832588, -0.02247259020805359, -0.012043693102896214, -0.01827860251069069, 0.013669704087078571, -0.02091386169195175, -0.01547513622790575, 0.04496760666370392, -0.052615463733673096, 0.06490585952997208, 0.021014787256717682, -0.033865876495838165, -0.038485992699861526, 0.027294551953673363, 0.023863108828663826, 0.07235187292098999, 0.005654592532664537, 0.011494213715195656, -0.029335476458072662, -0.038216859102249146, 0.026307731866836548, -0.009088839404284954, -0.0007975862827152014, 0.03507697582244873, -0.0026352587155997753, -0.0204092375934124, 0.022080104798078537, 0.021384844556450844, -0.023750970140099525, -0.005166789051145315, -0.0046285237185657024, -0.024334091693162918, -0.026195593178272247, -0.005172396078705788, -0.0032856629695743322, -0.01822253316640854, -0.02284264750778675, -0.05472366884350777, 0.03252021223306656, -0.027227269485592842, -0.04330795258283615, 0.012144617736339569, 0.03866541385650635, 0.0012335253413766623, 0.011342826299369335, -0.0028048683889210224, 0.009615890681743622, -0.004541615955531597, 0.03895697370171547, -0.0410427525639534, 0.0011900715762749314, -0.032004375010728836, 0.005391066428273916, -0.01833467185497284, -0.013905194588005543, 0.040347494184970856, -0.008561787195503712, 0.02446865849196911, 0.01648438349366188, 0.034269578754901886, -0.03830656781792641, 0.03115212172269821, -0.005424708127975464, 0.014892015606164932, 0.008219764567911625, 0.048623327165842056, -0.012682883068919182, 0.01449953019618988, -0.02288750186562538, -0.011157797649502754, 0.011382075026631355, 0.008612249977886677, -0.03065871261060238, 0.07010909914970398, -0.029604608193039894, -0.008696353994309902, 0.015811553224921227, -0.016932938247919083, -0.012167045846581459, 0.029425187036395073, -0.03074842318892479, -0.06181083619594574, 0.04366679862141609, 0.013411784544587135, -0.030187729746103287, 0.011651207692921162, -0.024311663582921028, -0.050372689962387085, 0.01430889405310154, -0.0061508058570325375, -0.04254541173577309, 0.001473221811465919, -0.0365123525261879, 0.016921725124120712, 0.009408433921635151, 0.021014787256717682, 0.010883057489991188, 0.006442366633564234, -0.02904391475021839, -0.03557038679718971, -0.0051023093983531, 0.04279211536049843, 0.008483290672302246, -0.0072161233983933926, -0.020050393417477608, 0.03494241088628769, 5.295923983794637e-05, -0.02262958325445652, 0.06409846246242523, 0.007440400775521994, 0.02231559529900551, -0.025747038424015045, -0.0013253388460725546, 0.030142873525619507, 0.029582180082798004, -0.029627036303281784, -0.028326228260993958, -0.007322655059397221, 0.007434793747961521, -0.02644229866564274, -0.02449108473956585, -0.011006410233676434, 0.008029128424823284, -0.05768413096666336, 0.05109037831425667, -0.0024586403742432594, -0.009509359486401081, 0.02686842530965805, 0.04339766502380371, 0.0012643635272979736, -0.03500969335436821, 0.03927096351981163, -0.001347766607068479, 0.00776560278609395, 0.06517499685287476, -0.0329911969602108, -0.0011038649827241898, -0.04326310008764267, 0.002462845528498292, 0.031892236322164536, -0.03530125319957733, -0.017258141189813614, -0.0027530044317245483, -0.004558437038213015, 0.01631617546081543, 0.010961554944515228, 0.003602454671636224, 0.01658530905842781, -0.009470110759139061, 0.03467327728867531, -0.019456058740615845, 0.048354193568229675, 0.032206226140260696, 0.046201132237911224, 0.040123216807842255, 0.025455478578805923, 0.05970262736082077, 0.005368638783693314, 0.01138768158853054, -0.021093282848596573, -0.0070030600763857365, -0.012795021757483482, -0.014824732206761837, 0.023257559165358543, -0.019029932096600533, -0.011023230850696564, 0.008758029900491238, -0.010255081579089165, 0.007995487190783024, 0.052660319954156876, 0.061900544911623, -0.008853347972035408, 0.0018418775871396065, -0.004673379007726908, 0.045124601572752, 0.01141010969877243, -0.017863690853118896, 0.012952016666531563, 2.6304402126697823e-05, -0.03749917075037956, -0.046694543212652206, 0.019960682839155197, -0.004875228740274906, -0.010025196708738804, 0.03469570353627205, -0.005200430750846863, -0.0024502298329025507, 0.05167349800467491, 0.023885536938905716, 0.00924583338201046, 0.042388416826725006, 0.07854192703962326, 0.040257781744003296, -0.044025640934705734, -0.015161148272454739, 0.010445716790854931, 0.0164955984801054, -0.023392125964164734, 0.03480784222483635, -0.011651207692921162, -0.031600676476955414, -0.02469293586909771, 0.02444623038172722, 0.056831877678632736, 0.03904668614268303, 0.00167787482496351, -0.04682910814881325, 0.007995487190783024, -0.03702818974852562, 0.007821672596037388, -0.06414332240819931, 0.01667501963675022, -0.013636061921715736, 0.025657327845692635, 0.005520026199519634, 0.011617566458880901, -0.01350149605423212, 0.05817754194140434, 0.028079522773623466, 0.007922597229480743, -0.01239132322371006, 0.0008893998456187546, 0.015295714139938354, 0.02850564941763878, 0.04142402485013008, -0.015206003561615944, 0.0032800561748445034, 0.04718795046210289, 0.013602420687675476, -0.048219628632068634, 0.06284251064062119, -0.04938587173819542, -0.0006185148376971483, 0.009273868054151535, 0.005948956590145826, 0.026016172021627426, -0.05423026159405708, -0.03933824598789215, 0.0036108652129769325, 0.03841870650649071, 0.001516675460152328, -0.04140159487724304, -0.023302415385842323, 0.027518829330801964, -0.020106462761759758, -0.028034666553139687, -0.0371851809322834, -0.025836749002337456, -0.014241610653698444, 0.05086610093712807, 0.03139882907271385, -0.046425409615039825, -0.008948666043579578, -0.021710045635700226, 0.013905194588005543, 0.041782867163419724, 0.023952819406986237, -0.03527882695198059, 0.0010050428099930286, -0.054454538971185684, -0.006347048562020063, -0.0325426422059536, 0.004034188576042652, -0.010692422278225422, -0.030322296544909477, 0.027294551953673363, -0.06216967850923538, 0.04537130519747734, 0.05701129883527756, 0.046201132237911224, 0.012873519212007523, 0.020869005471467972, 0.0612277127802372, -0.012402537278831005, 0.03090541809797287, -0.008819706737995148, -0.024087386205792427, -0.005220055114477873, 0.015901263803243637, 0.026240449398756027, -0.011028838343918324, -0.0007103284006007016, -0.0372973196208477, -0.03346217796206474, -0.03507697582244873, -0.03532367944717407, 0.009128088131546974, 0.007894562557339668, 0.019399989396333694, -0.03314819186925888, -0.05961291491985321, 0.023324843496084213, 0.06943626701831818, 0.03471813350915909, -0.04651511833071709, -0.029245764017105103, -0.025253627449274063, -0.035861946642398834, -0.01890658028423786, 0.0027782355900853872, -0.008758029900491238, -0.028393510729074478, 0.032183799892663956, -0.02090264856815338, 0.015968546271324158, 0.0582672543823719, -0.033865876495838165, 0.0202970989048481, -0.04272483289241791, 0.00205213762819767, -0.0691671296954155, 0.021093282848596573, -0.02881963737308979, -0.003201558953151107, 0.03135397285223007, -0.014712593518197536, -0.005982597824186087, -0.054275114089250565, -0.028258943930268288, 0.023683687672019005, 0.04088575765490532, -0.023750970140099525, -0.04687396436929703, -0.0045388126745820045, 0.02498449571430683, -0.015676986426115036, 0.012234329245984554, 0.014690165407955647, 0.006408724933862686, -0.038104720413684845, 0.006868493277579546, -0.016932938247919083, -0.01841316930949688, -0.00941404141485691, -0.07356296479701996, 0.005119130481034517, 0.0003721601970028132, -0.0017115164082497358, -0.058446675539016724, -0.011247508227825165, 0.004589274991303682, 0.030232585966587067, -0.02285386063158512, 0.005909707862883806, 0.016977794468402863, -0.013950050808489323, -0.015430280938744545, 0.007474042475223541, -0.003232397139072418, 0.017695482820272446, 0.02711513079702854, 0.019142070785164833, 0.01148299966007471, 0.060734301805496216, 0.01822253316640854, -7.437947351718321e-05, 0.01842438243329525, -0.021665191277861595, 0.007911383174359798, 0.025993743911385536, -0.015957333147525787, -0.02047652192413807, 0.02279779128730297, 0.03267720714211464, -0.006879707332700491, 0.023302415385842323, -0.01425282470881939, 0.02464807964861393, 0.004922887776046991, -0.013950050808489323, -0.004729448352009058, 0.01038964744657278, 0.01861501857638359, -0.017482418566942215, -0.009492537938058376, 0.040100786834955215, 0.002381545025855303, -0.0027712269220501184, 0.05158378928899765, 0.015194789506494999, -0.029559753835201263, 0.039921365678310394, 0.0020633514504879713, 0.04709824174642563, -0.034157440066337585, -0.02296599932014942, -0.003678148379549384, 0.00469861039891839, 0.05405084043741226, 0.025769466534256935, -0.0007506282418034971, -0.03359674662351608, 0.013568778522312641, -0.021979179233312607, -0.040033504366874695, -0.007103984709829092, 0.03653477877378464, -0.02273050881922245, 0.004536009393632412, 0.002260996028780937, -0.0009139301255345345, -0.011253115721046925, 0.07629915326833725, -0.0370730422437191, -0.0001615497749298811, -0.023840680718421936, 0.02239409275352955, 0.02093628980219364, -0.02093628980219364, -0.025477904826402664, 0.023414554074406624, -0.023773398250341415, -0.017437562346458435, -0.003232397139072418, -0.028191661462187767, 0.001579753472469747, 0.00809641182422638, 0.046380553394556046, 0.02239409275352955, -0.0005624454934149981, -0.00945329014211893, -0.007272192742675543, 0.011012017726898193, -0.01839074119925499, -0.0454610176384449, -0.011931554414331913, 0.005548060871660709, 0.015912476927042007, 0.007025487720966339, -0.020005539059638977, 0.005009795073419809, -0.00820855051279068, 0.010524214245378971, 0.013849125243723392, -0.040392350405454636, 0.05382656306028366, -0.0027796372305601835, 0.009217798709869385, -0.0031707207672297955, -0.007199302781373262, 0.00508268503472209, -0.016035830602049828, 0.007591787725687027, 0.002345099812373519, -0.006324620917439461, 0.0027095505502074957, -0.01038964744657278, 0.04992413520812988, -0.05109037831425667, 0.010058838874101639, -0.021171780303120613, 0.02072322554886341, -0.02028588578104973, -0.007832885719835758, 0.0052536968141794205, 0.012267970480024815, 0.031959522515535355, 0.021440913900732994, 0.02227073907852173, 0.019556984305381775, -0.02051016315817833, -0.0038603737484663725, -0.03530125319957733, -0.013658490031957626, 0.025836749002337456, 0.002193712629377842, 0.032094087451696396, -0.013748200610280037, -0.006038667168468237, -0.01626010611653328, -0.023504264652729034, 0.028348656371235847, 0.004056616220623255, 0.02482750080525875, -0.00613959226757288, 0.0049397083930671215, -0.010126122273504734, -0.006425545550882816, 0.024109814316034317, 0.0075188977643847466, -0.010647566989064217, -0.0015054616378620267, -0.02451351284980774, -0.03142125532031059, 0.000571206328459084, -0.017437562346458435, 0.023706113919615746, -0.0011115745874121785, -0.012929588556289673, -0.028415938839316368, 0.04754679650068283, 0.00331930466927588, 0.008662711828947067, 0.021115710958838463, -0.023279987275600433, 0.014174328185617924, -0.010563462972640991, 0.010602710768580437, 0.025343339890241623, -0.018872937187552452, -0.00280206510797143, 0.03290148451924324, 0.03424714878201485, -0.04252298176288605, 0.000838236534036696, -0.009862596169114113, 0.03469570353627205, 0.019994324073195457, 0.03101755678653717, -0.00941404141485691, -0.07970816642045975, -0.038172002881765366, -0.023863108828663826, -0.014735020697116852, 0.01455559954047203, 0.02879721112549305, 0.0007632438209839165, -0.019893400371074677, 0.0037426280323415995, -0.021934323012828827, -0.013692131265997887, -0.03491998091340065, 0.01350149605423212, -0.008920631371438503, 0.0020983947906643152, 0.02684599719941616, -0.023414554074406624, -0.028326228260993958, 0.027944955974817276, -0.026195593178272247, -0.005074274726212025, -0.0023661258164793253, -0.014107044786214828, -0.012649241834878922, 0.0003861775330733508, -0.02500692382454872, 0.034022871404886246, 0.03940552845597267, -0.00915612280368805, -0.008438434451818466, 0.029963452368974686, 0.003184738103300333, 0.03301362320780754, -0.0015391032211482525, 0.0012839877745136619, 0.018177678808569908, 0.00016610539751127362, 0.028079522773623466, -0.028393510729074478, 0.0204092375934124, -0.0404820591211319, 0.004987367428839207, 0.02487235702574253, 0.0016554470639675856, 0.009683174081146717, -0.008124446496367455, -0.006644216366112232, 0.002490880200639367, 0.006419938988983631, -0.018951434642076492, -0.009997162036597729, 0.0226744394749403, -0.009823347441852093, 0.024064958095550537, 0.01618161052465439, 0.019994324073195457, -0.019041145220398903, -0.027227269485592842, 0.021306347101926804, -0.006733926944434643, 0.04310610517859459, -0.015777910128235817, 0.0015965743223205209, -0.036018941551446915, -0.03146611154079437, 0.018009470775723457, -0.002153062494471669, -0.010916699655354023, 0.03534610942006111, 0.05602448061108589, 0.01825617626309395, 0.005068667698651552, 0.004516385030001402, 0.0017451579915359616, -0.048309337347745895, -0.029806457459926605, -0.0456852950155735, 0.02850564941763878, -0.0115054277703166, -0.01879444159567356, 0.02908877097070217, -0.03879997879266739, -0.01673108898103237, 0.02061108686029911, 0.013019299134612083, 0.015295714139938354, -0.003728610696271062, 0.0074796490371227264, -0.05122494325041771, -0.018704729154706, -0.028371082618832588, 0.00012308971781749278, -0.01125872228294611, 0.0031707207672297955, -0.021295133978128433, 0.030098019167780876, 0.019366348162293434, 0.01447710208594799, 0.007047915365546942, -0.01849166676402092, 0.013916408643126488, 0.06252852082252502, -0.0019231782061979175, -0.02250623144209385, -0.00833750981837511, 0.022001607343554497, -0.027630968019366264, 0.030367150902748108, 0.003599651390686631, -0.0025749842170625925, 0.002489478560164571, 0.0707370713353157, -0.023257559165358543, -0.030232585966587067, 0.02861778810620308, 0.01886172406375408, -0.05512737110257149, 0.004892049357295036, 0.014163114130496979, 0.031667958945035934, -0.014858373440802097, -0.003650113707408309, 0.02227073907852173, -0.046335697174072266, 0.03420229256153107, 0.013266004621982574, 0.012626813724637032, 0.0008872972102835774, 0.002935229567810893, 0.012357681058347225, 0.008943058550357819, -0.015183575451374054, 0.025679755955934525, -0.025657327845692635, 0.006683464627712965, -0.018065540120005608, 0.021070856600999832, 0.08334145694971085, -0.027608539909124374, 0.03951766714453697, 0.006464794278144836, -0.012559531256556511, 0.011494213715195656, -0.009851382113993168, -0.037633735686540604, -0.001169746508821845, 0.037745874375104904, 0.032251082360744476, 0.01447710208594799, -0.039809226989746094, 0.010905485600233078, 0.007558146491646767, -0.01336692925542593, 0.015755483880639076, -0.010821381583809853, -0.010922306217253208, -0.00669467868283391, -0.024266807362437248, -0.007160054054111242, -0.0023605190217494965, 0.0029660677537322044, -0.00043313560308888555, 0.00911126658320427, 0.02237166464328766, -0.005435922183096409, -0.02055501751601696, -0.0004524094401858747, 0.05333315208554268, -0.01033357810229063, 0.032318364828825, -0.020947502925992012, -0.0447881855070591, -0.0023128599859774113, -0.0067956033162772655, 0.04283697158098221, 0.02680114284157753, 0.03249778598546982, 0.015744268894195557, 0.004356587305665016, 0.016888083890080452, -0.02056623250246048, 0.013512710109353065, -0.0075188977643847466, 0.015766697004437447, 0.05095580965280533, 0.013523923233151436, -0.0001562056568218395, 0.02287628874182701, 0.04245569929480553, -0.015374211594462395, -0.006341441534459591, -0.01538542564958334, 0.013736986555159092, -0.011976409703493118, -0.008421613834798336, -0.025769466534256935, 0.00015681891818530858, -0.011763346381485462, -0.013680917210876942, -0.019388776272535324, -0.023347271606326103, -0.01640588790178299, -0.00287635694257915, -0.0166077371686697, -0.01222311519086361, 0.009862596169114113, 0.013938836753368378, 0.03702818974852562, -0.007524504791945219, -0.0011290962575003505, -0.02062230184674263, 0.008999127894639969, 0.015856407582759857, -0.007558146491646767, -0.0028693482745438814, 0.005382656119763851, -0.006532077677547932, 0.04348737746477127, 0.0061508058570325375, 0.006218089256435633, -0.0043229456059634686, -0.027765534818172455, -0.01444346085190773, -0.01863744668662548, 0.007244158070534468, -0.017291782423853874, -0.001293799839913845, -0.007434793747961521, 0.02686842530965805, 0.004286500625312328, 0.005371442064642906, 0.0019932647701352835, 0.05728043243288994, -0.0025623685214668512, 0.0017101146513596177, 0.010322364047169685, 0.03240807726979256, 0.022124959155917168, 0.023055709898471832, 0.002596010221168399, -0.015744268894195557, -0.04306124895811081, 0.0033136976417154074, 0.01222311519086361, -0.010608318261802197, -0.003277252661064267, -1.7324548025499098e-05, 0.0012132002739235759, -0.002213336993008852, -0.014667738229036331, 0.011965195648372173, 0.03453870862722397, -0.00726658571511507, 0.018144037574529648, -0.007799244485795498, 0.006206875201314688, 0.023616403341293335, 0.006918956059962511, 0.01433132216334343, 0.04095304384827614, -0.020151318982243538, 0.03489755466580391, 0.020128890872001648, 0.02668900415301323, -0.0030754029285162687, -0.02704784646630287, 0.004813552368432283, -0.0103167574852705, -0.007849707268178463, 0.06158655881881714, 0.02298842743039131, 0.005592916160821915, 0.021070856600999832, -0.021407272666692734, 0.008573001250624657, -0.003372570499777794, 0.015564847737550735, 0.006274158600717783, -0.01877201348543167, 0.01827860251069069, 0.007103984709829092, -0.023235132917761803, 0.021687619388103485, 0.003731414210051298, -0.03554795682430267, 0.022080104798078537, 0.02258472889661789, -0.015755483880639076, 0.006313406862318516, 0.011527854949235916, -0.007406759075820446, -0.017101146280765533, -0.005999418906867504, 0.01679837331175804, 0.020869005471467972, -0.01453317143023014, 0.010815775021910667, 0.017975829541683197, -0.025859177112579346, 0.015206003561615944, 0.004987367428839207, -0.010871844366192818, 0.010103694163262844, 0.0541854053735733, -0.02077929489314556, -0.003964101895689964, -0.03350703418254852, 0.0016049847472459078, -0.0366244912147522, -0.015946118161082268, 0.004690199624747038, 0.0041967895813286304, -0.02487235702574253, 0.01871594414114952, -0.02904391475021839, -0.033776167780160904, 0.00922901276499033, -0.0009419647976756096, 0.026262875646352768, 0.0014325714437291026, 0.02248380333185196, 0.013467853888869286, 0.009599070064723492, 0.037902869284152985, 0.021239064633846283, 0.0014451871393248439, -0.0009286483400501311, 0.01849166676402092, -0.01890658028423786, 0.038127146661281586, 0.033641599118709564, 0.026330159977078438, 0.01827860251069069, -0.006604967638850212, -0.03956252336502075, -0.017033863812685013, 0.004398639313876629, -0.014835946261882782, -0.009935486130416393, -0.03312576189637184, -0.008483290672302246, 0.011763346381485462, 0.008976700715720654, 0.00810201931744814, 0.027832817286252975, 0.0033249114640057087, 0.017471205443143845, -0.004014564212411642, 0.033439751714468, -0.037858013063669205, 0.0021082069724798203, 0.0336640290915966, 0.007973059080541134, 0.010361612774431705, -0.017639413475990295, -0.023504264652729034, -0.014006120152771473, 0.012525889091193676, -0.012682883068919182, 0.022158600389957428, 0.008505717851221561, 0.004552830010652542, -0.03144368156790733, -0.009638318791985512, 0.02064472809433937, 0.006240516901016235, -0.03130911663174629, -0.015116292983293533, 0.017246928066015244, 0.029716746881604195, 0.04362194240093231, 0.017123574391007423, -0.03281177580356598, -0.0007183883571997285, -0.02449108473956585, -0.00811323244124651, -0.015217217616736889, -0.024177096784114838, -0.0007702524890191853, 0.021732473745942116, 0.010384040884673595, 0.0034482639748603106, -0.03124183416366577, 0.019994324073195457, 0.008640284650027752, 0.011662421748042107, 0.015777910128235817, 0.011516640894114971, 0.032318364828825, 0.012638027779757977, 0.009184157475829124, 0.016876868903636932, -0.020162532106041908, 0.0447881855070591, 0.003955691587179899, 0.017605770379304886, -0.009571035392582417, -0.0004468024999368936, 0.0494307242333889, 0.006218089256435633, -0.025298483669757843, 0.044249918311834335, -0.025791894644498825, -0.008455256000161171, 0.000900613667909056, 0.013209935277700424, 0.010490572080016136, 0.0017689875094220042, 0.013512710109353065, 0.0023605190217494965, -0.023750970140099525, 0.009200978092849255, -0.010871844366192818, -0.0025777877308428288, 0.013916408643126488, 0.019938254728913307, -0.0006907040951773524, -0.007008666638284922, 0.0005291543202474713, -0.03453870862722397, 0.013938836753368378, -0.008629070594906807, -0.003462281310930848, 0.0026366603560745716, 0.05795326456427574, -0.005051847081631422, -0.017930973321199417, 0.007244158070534468, -0.041984718292951584, 0.019983110949397087, -0.033439751714468, -0.005853638518601656, 0.0018194499425590038, 0.03471813350915909, -0.0016680627595633268, -0.0046761822886765, 0.06539927423000336, 0.0025819928850978613, 0.021160567179322243, -0.02064472809433937, -0.011651207692921162, -0.02498449571430683, -0.019332706928253174, -0.0007113796891644597, 0.06454701721668243, 0.021182995289564133, 0.010939126834273338, 0.011617566458880901, 0.030210157856345177, -0.0040313852950930595, 0.042052000761032104, 0.02255108579993248, -0.01338935736566782, 0.01536299753934145, -0.025029350072145462, 0.0208577923476696, 0.046694543212652206, 0.008786064572632313, -0.002525923540815711, 0.020016752183437347, 0.0012741755926981568, 0.005379852838814259, -0.0009118275484070182, -0.012234329245984554, -0.015699414536356926, -0.037745874375104904, 0.035660095512866974, -0.0031398828141391277, -0.04276968911290169, -0.025567617267370224, 0.012593172490596771, 0.014185541309416294, -0.00463973730802536, 0.021407272666692734, -0.010423289611935616, 0.03675905615091324, -0.024132242426276207, 0.037858013063669205, 0.008982307277619839, -0.03130911663174629, -0.017773978412151337, 0.01611432619392872, 0.04241084307432175, 0.008567394688725471, -0.02033074013888836, 0.02890934981405735, 0.0071768746711313725, 0.00833750981837511, 0.0038071079179644585, 0.014981726184487343, -0.006285372190177441, -0.023638831451535225, -0.003061385592445731, -0.023863108828663826, -0.0025932067073881626, -0.014611668884754181, -0.01146617904305458, -0.017538487911224365, -0.005147164687514305, -0.00015357740630861372, -0.011752132326364517, -0.008561787195503712, -0.002943640109151602, 0.0030838134698569775, 0.009705602191388607, 0.017056291922926903, -0.028012240305542946, 0.01126432977616787, 0.024199524894356728, -0.015295714139938354, 0.005803176201879978, -0.023616403341293335, 0.0041182925924658775, -0.008926237933337688, -0.001116480678319931, -0.028348656371235847, -0.008556180633604527, 0.0054471357725560665, -0.014723807573318481, 0.017078720033168793, -0.05701129883527756, 0.0311745498329401, -0.017560916021466255, -0.0009510761010460556, -0.00619566161185503, -0.05135951191186905, -0.013624847866594791, 0.03348460793495178, -0.0073058344423770905, -0.0021390451584011316, -0.01657409593462944, 0.03711789846420288, -0.014073402620851994, -0.01035600621253252, 0.02673385851085186, -0.0115054277703166, -0.007008666638284922, -0.001411545556038618, 0.023638831451535225, -0.0015026581240817904, 0.030187729746103287, -0.029739174991846085, -0.009778492152690887, -0.027541257441043854, -0.014320108108222485, -0.008382365107536316, -0.040145643055438995, -0.009952306747436523, 0.01038964744657278, 0.009184157475829124, 0.0019315886311233044, 0.033978015184402466, -0.025948887690901756, 0.001970837125554681, -0.045842286199331284, -0.005116326734423637, 0.013692131265997887, -0.01844681054353714, -0.019994324073195457, 0.0035211541689932346, 0.016910512000322342, -0.01029432937502861, -0.015632130205631256, 0.011382075026631355, 0.02866264432668686, 0.017729124054312706, 0.010647566989064217, 0.00780485151335597, -0.015990974381566048, 0.001357578788883984, 0.0025483511853963137, 0.04651511833071709, 0.020162532106041908, 0.012671669945120811, 0.03081570565700531, 0.02467050775885582, 0.015744268894195557, 0.02852807752788067, 0.0017591753276064992, -0.009066411294043064, 0.0011879689991474152, 0.007367510348558426, 0.02644229866564274, 0.014970512129366398, -0.018054325133562088, 0.03059142827987671, -0.017258141189813614, 8.059966785367578e-05, -0.026330159977078438, 0.00819172989577055, -0.019882185384631157, -0.021979179233312607, 0.03236322104930878, -0.007883348502218723, 0.0032632353249937296, 0.02049894817173481, -0.026307731866836548, 0.010692422278225422, -0.014802304096519947, 0.022136174142360687, 0.005876066163182259, -0.007888955064117908, 0.01617039553821087, -0.031757671386003494, -0.008466469123959541, 0.007395545020699501, 0.0038856049068272114, -0.009268260560929775, -0.017381493002176285, -0.0069918460212647915, -0.005982597824186087, -0.015890048816800117, -0.060779158025979996, 0.017841262742877007, -0.03292391449213028, -0.0460217110812664, 0.01536299753934145, 0.01124190166592598, -0.038216859102249146, 0.04691882058978081, 0.03234079107642174, 0.01248103380203247, -0.0076086088083684444, -0.012929588556289673, 0.006027453579008579, -0.00011494213686091825, -0.029851313680410385, -0.003694969229400158, -0.010378433391451836, -0.0010562060633674264, 0.025253627449274063, -0.019893400371074677, 0.02890934981405735, -0.0049593327566981316, 0.029402758926153183, -0.027294551953673363, 0.02277536317706108, -0.031780097633600235, -0.003383784322068095, -0.032251082360744476, -0.006829245015978813, -0.009733636863529682, -0.003731414210051298, -0.009582249447703362, 0.02067837119102478, -0.01879444159567356, -0.00926265399903059, 0.012963229790329933, -0.02906634286046028, -0.05301916226744652, -0.03211651369929314, -0.011965195648372173, 0.013097796589136124, -0.018144037574529648, 0.02231559529900551, -0.0371851809322834, 0.007255372125655413, -0.01331085991114378, 0.007356296759098768, -0.013961263932287693, -0.000499717949423939, -0.010092480108141899, -0.021496983245015144, -0.05189777538180351, -0.00945329014211893, -0.014521957375109196, 0.03341732174158096, 0.0309502724558115, 0.009694388136267662, 0.02684599719941616, 0.008617856539785862, 0.010826988145709038, 0.005876066163182259, -0.015452709048986435, 0.0029324262868613005, 0.0012153028510510921, -0.0041295066475868225, 0.013849125243723392, -0.019108429551124573, -0.005323783494532108, -0.05723557621240616, 0.009066411294043064, -0.03709547221660614, 0.019613053649663925, 0.0005333595327101648, -0.006554505322128534, -0.015452709048986435, -0.03453870862722397, 0.0010218636598438025, -0.013591206632554531, -0.0022007212974131107, -0.044519051909446716, -0.009565428830683231, -0.060554880648851395, 0.00519482372328639, 0.0155312055721879, -0.013714559376239777, -0.0004765893390867859, 0.025388194248080254, -0.04346494749188423, -0.013613634742796421, -0.015172362327575684, -0.025096634402871132, -0.018020683899521828, -0.03110726736485958, -0.04714309796690941, 0.02449108473956585, 0.004712627734988928, -0.006532077677547932, 0.07078193128108978, -0.01865987479686737, -0.012839877977967262, -0.02668900415301323, 0.01844681054353714, -0.0372973196208477, -0.00769271282479167, -0.018200106918811798, -0.009369186125695705, -0.009873810224235058, -0.009812133386731148, 0.0021993196569383144, -0.00817490927875042, -0.025590043514966965, 0.011213866993784904, 0.025724610313773155, 0.006924562621861696, 0.004317338578402996, -0.010255081579089165, -0.02664414793252945, 0.006918956059962511, 0.019826116040349007, 0.0418277233839035, 0.02673385851085186, -0.00414352398365736, 0.019613053649663925, -0.01673108898103237, -0.0015405049780383706, -0.04079604893922806, 0.02467050775885582, 0.002419391879811883, -0.030165301635861397, 0.019893400371074677, -0.02293235808610916, -0.03424714878201485, 0.00917294342070818, -0.007115198764950037, 0.006397510878741741, -0.013322073966264725, 0.012682883068919182, 0.017684267833828926, 0.03485269844532013, -0.0036360963713377714, 0.006341441534459591, -0.006717106327414513, -0.021014787256717682, -0.0013365527847781777, 0.003731414210051298, -0.00020990957273170352, 0.0010814373381435871, -0.02051016315817833, -0.0022974410094320774, -0.006128378212451935, 0.008516931906342506, 0.019018718972802162, 0.008449648506939411, -0.006644216366112232, -0.014690165407955647, -0.021889468654990196, 0.04063905403017998, -0.05535164847970009, -0.03480784222483635, -0.01127554289996624, -0.05472366884350777, 0.000659865967463702, -0.009974734857678413, -0.033821024000644684, 0.03146611154079437, -0.05723557621240616, -0.037745874375104904, -0.003097830805927515, -0.007866527885198593, -0.031892236322164536, 0.02064472809433937, -0.021014787256717682, 0.009739243425428867, -0.0025805910117924213, -0.007328262086957693, 0.03153339400887489, -0.01355756539851427, 0.012234329245984554, 0.04245569929480553, 0.034224722534418106, 0.0037706627044826746, -0.020117677748203278, -0.0037061830516904593, 0.010288722813129425, -0.030030734837055206, -0.019063573330640793, 0.032049231231212616, 0.0004268278134986758, 0.013826698064804077, 0.012133403681218624, 0.06149684637784958, -0.0062573375180363655, 0.001311321510002017, 0.027159985154867172, 0.0025553598534315825, 0.012839877977967262, 0.02848322130739689, 1.2462285667425022e-05, -0.007810458540916443, 0.0023661258164793253, 0.019590625539422035, 0.014634096063673496, -0.008253405801951885, -0.007025487720966339, -0.011342826299369335, 0.021474555134773254, 0.03462842106819153, 0.001053402666002512, 0.01114658359438181, 0.001473221811465919, 0.017280569300055504, -4.5687746023759246e-05, -0.019074788317084312, -0.048309337347745895, 0.021519411355257034, -0.027900101616978645, 0.015149934217333794, 0.0042164139449596405, -0.013770628720521927, 0.013209935277700424, 0.00924583338201046], [-0.018498064950108528, -0.03463380038738251, 0.029333967715501785, -0.010764004662632942, -0.01409180834889412, -0.003083866788074374, -0.01986410841345787, 0.003561468329280615, 0.047493088990449905, 0.05883227288722992, -0.01166785228997469, -0.0020952834747731686, 0.019299203529953957, -0.03068973869085312, -0.04313818737864494, -0.0050918469205498695, -0.04683574661612511, 0.024527141824364662, 0.01502646878361702, -0.041700247675180435, 0.025759659707546234, 0.01235600933432579, -0.04634273797273636, 0.019442997872829437, 0.0046091098338365555, -0.011780833825469017, 0.013013353571295738, 0.011102947406470776, 0.0019065538654103875, -0.04363119602203369, 0.05587422475218773, -0.012653868645429611, 0.0613383948802948, 0.011791104450821877, 0.029025837779045105, -0.005808248650282621, 0.018569963052868843, -0.03177846595644951, 0.0766216367483139, -0.023048117756843567, -0.024670934304594994, -0.0228632390499115, 0.029292883351445198, -0.04036501795053482, -0.01625898852944374, 0.061749234795570374, -0.01580706425011158, -0.01564272865653038, -0.017912618815898895, -0.012109505943953991, -0.04987596347928047, 0.006886703427881002, 0.006783993449062109, 0.007071581669151783, 0.03835190460085869, 0.047657426446676254, 0.006938058417290449, -0.009238761849701405, -0.0070818522945046425, 0.0014738880563527346, -0.02988860197365284, 0.020213322713971138, -0.014451293274760246, 0.036236077547073364, -0.012972269207239151, -0.005310105625540018, 0.0030479184351861477, 0.02271944470703602, -0.05784625560045242, 0.0021671804133802652, 0.04728766903281212, 0.006393695715814829, -0.036051198840141296, -0.010075848549604416, -0.000751708575990051, -0.04901319742202759, 0.010039899498224258, 0.014512918889522552, -0.03223038837313652, 0.005068737082183361, -0.0006223582313396037, 0.019001344218850136, 0.004603974521160126, -0.012243028730154037, 0.04367227852344513, 0.004021095111966133, -0.03705775737762451, -0.006188275758177042, -0.05073872581124306, 0.020572807639837265, 0.008617366664111614, -0.006588844582438469, 0.02941613644361496, 0.0347365103662014, 0.04227542504668236, 0.0020426444243639708, 0.03670854493975639, -0.010019357316195965, -0.030463777482509613, 0.010461010038852692, 0.012756578624248505, -0.005854468327015638, 0.010045034810900688, 0.05525796487927437, -0.007610808592289686, -0.09219247102737427, -0.02222643792629242, 0.028368493542075157, 0.028512287884950638, -0.012931184843182564, -0.061420563608407974, -0.011441891081631184, -0.045315638184547424, 0.04942403733730316, -0.00735403411090374, 0.023253537714481354, 0.006183140445500612, 0.014307498931884766, 0.02130204811692238, 0.00735403411090374, -0.01486213319003582, -0.00774946715682745, 0.03876274451613426, -0.04778067767620087, -0.0017833018209785223, -0.008874141611158848, -0.029703723266720772, 0.01831318810582161, -0.039974719285964966, -0.010502094402909279, 0.06992495059967041, -0.023993048816919327, -0.03414079546928406, -0.0396871343255043, -0.02740301936864853, -0.04872560873627663, 0.025246109813451767, 0.004110966343432665, 0.009202813729643822, -0.020305762067437172, 0.025574782863259315, -0.003512680996209383, 0.059859368950128555, -0.02832740917801857, -0.03360670059919357, -0.017748283222317696, -0.0056952680461108685, -0.00023623292509000748, 0.030135104432702065, -0.031223831698298454, -0.010753734037280083, 0.04720550402998924, -0.03366832807660103, 0.03305206820368767, -0.010214506648480892, 0.03005293756723404, 0.014163704589009285, 0.015540018677711487, -0.0009308091248385608, -0.02222643792629242, -0.029785891994833946, -0.0025754524394869804, -0.03192225843667984, -0.008391404524445534, -0.030874617397785187, -0.027012722566723824, -0.04695899784564972, 0.012931184843182564, -0.03525006026029587, -0.06429643929004669, -0.08578336983919144, -0.03650312498211861, -0.07349925488233566, 0.007133207283914089, -0.03210713714361191, -0.07325275242328644, 0.043097104877233505, 0.04192620888352394, -0.02487635426223278, -0.028204157948493958, 0.021651262417435646, 0.02409575879573822, -0.050286803394556046, -0.05316267907619476, -0.008576282300055027, 0.028039822354912758, -0.05180690810084343, 0.0015136882429942489, -0.008617366664111614, -0.0033252353314310312, -0.019607333466410637, 0.023705461993813515, -8.076374069787562e-05, 0.03695504739880562, -0.032004427164793015, 0.0501224659383297, -0.0366058349609375, 0.014286956749856472, 0.0308335330337286, -0.030956784263253212, 0.04412420466542244, -0.05722999572753906, 0.017717469483613968, -0.02031603269279003, -0.03972821682691574, -0.0011349451960995793, 0.0230275746434927, 0.009454452432692051, 0.03703721612691879, -0.01704985462129116, 0.023828713223338127, -0.013465276919305325, -0.007189698051661253, 0.03691396489739418, -0.03553764894604683, -0.03350399062037468, -0.005536067299544811, 0.016526034101843834, 0.05410761386156082, 0.038125939667224884, -0.0024958522990345955, -0.010733191855251789, -0.010989966802299023, -0.04063206538558006, -0.03399699926376343, 0.012253299355506897, -0.0037694559432566166, -0.05197124555706978, -0.005284428130835295, -0.04975270852446556, -0.00445761252194643, 0.024013591930270195, -0.013033894822001457, -0.019915463402867317, 0.019278662279248238, -0.026848386973142624, -0.020120883360505104, -0.024198468774557114, -0.011462432332336903, 0.030915701761841774, -0.005556609481573105, 0.0018308052094653249, 0.010127203539013863, 0.020778227597475052, 0.04128940775990486, -0.013732323423027992, 0.01892944797873497, -0.012160860933363438, 0.0018231020076200366, 0.03500355780124664, 0.049670543521642685, -0.01845698244869709, -0.006224224343895912, -0.027423562481999397, 0.03999526426196098, -0.03142924979329109, 0.03798214718699455, -0.03525006026029587, 0.07099313288927078, -0.028286326676607132, -0.005222802050411701, 0.041679706424474716, 0.013680968433618546, 0.04449395835399628, -0.03333965688943863, -0.026396462693810463, 0.038125939667224884, -0.00413921196013689, 0.009110374376177788, 0.03344236686825752, -0.0675009936094284, 0.029231257736682892, -0.028080906718969345, -0.043097104877233505, -0.004868452437222004, 0.013157146982848644, 0.02736193686723709, -0.018118038773536682, 0.015293514356017113, 0.017779095098376274, -0.014060994610190392, -0.027875486761331558, 0.0022031287662684917, -0.025430988520383835, -0.010029628872871399, -0.0328671894967556, 0.009942324832081795, -0.052340999245643616, -0.033236946910619736, 0.02799873799085617, 0.04663032665848732, -0.02785494364798069, 0.0020888641010969877, -0.015088094398379326, 0.0350651852786541, 0.028512287884950638, 0.018076954409480095, -0.0035999845713377, 0.019186222925782204, -0.024198468774557114, 0.02411630190908909, -0.01065102405846119, -0.030628113076090813, 0.012397093698382378, -0.02783440239727497, 0.04161807894706726, -0.024958522990345955, 0.015211346559226513, 0.04391878470778465, -0.009012799710035324, 0.03362724557518959, 0.06162598356604576, 0.006835348438471556, -0.00827842392027378, -0.04334360733628273, -0.0026807303074747324, -0.007112665567547083, -0.013722051866352558, 0.014173976145684719, 0.013989098370075226, 0.0044447737745940685, 0.025081774219870567, 0.04350794479250908, -0.03677016869187355, 0.0038490560837090015, 0.03442838042974472, 0.02974480763077736, 0.005027653183788061, -0.06429643929004669, 0.013444734737277031, -0.03787943720817566, -0.023746544495224953, 0.004218812100589275, -0.02173342928290367, 0.004660464823246002, -0.0012659004423767328, -0.03085407428443432, 0.008545469492673874, -0.03835190460085869, -0.03909141570329666, -0.017409339547157288, -0.00410839868709445, 0.013567986898124218, 0.023869797587394714, -0.0347365103662014, 0.012561429291963577, 0.01702931337058544, 0.020213322713971138, -0.02345895767211914, 0.047000084072351456, -0.017614759504795074, 0.03315477818250656, -0.04317926988005638, 0.01486213319003582, -0.08253773301839828, -0.025739118456840515, 0.020747413858771324, -0.020696058869361877, -0.027444103732705116, 0.0379205197095871, -0.015355140902101994, -0.018415898084640503, -0.024999607354402542, 0.045931898057460785, -0.02584182843565941, 0.017132023349404335, -0.013732323423027992, 0.017337443307042122, 0.05151931941509247, -0.027608439326286316, 0.03750967979431152, -0.004557754844427109, -0.05928419530391693, -0.016207633540034294, 0.037489138543605804, -0.005572015885263681, -0.019833294674754143, -0.009649601764976978, -0.023500042036175728, 0.010122067295014858, 0.038249194622039795, 0.018241290003061295, 0.019319744780659676, -0.01118511613458395, 0.007934344932436943, 0.034962475299835205, -0.05542229861021042, -0.014194518327713013, 0.035270605236291885, 0.036564748734235764, 0.0569424070417881, -0.020531723275780678, 0.014286956749856472, 0.028820417821407318, -0.006717232055962086, 0.021343132480978966, 0.014728609472513199, 0.030936243012547493, 0.012448448687791824, 0.0011638323776423931, -0.023438414558768272, -0.04502804949879646, -0.006568302400410175, -0.04679466411471367, 0.010835901834070683, 0.012417635880410671, 0.020911749452352524, -0.016680099070072174, 0.01704985462129116, -0.0015573399141430855, 0.02315082773566246, -0.024177927523851395, 0.016228174790740013, 0.017265545204281807, 0.017748283222317696, -0.018498064950108528, -0.03537331521511078, 0.01470806822180748, -0.002803982235491276, -0.00845303013920784, 0.05460061877965927, -0.008622501976788044, -0.0027603304479271173, 0.011544601060450077, -0.0153345987200737, -0.012397093698382378, 0.008591689169406891, 0.010060441680252552, -0.05303942784667015, -0.005597693379968405, 0.00778541574254632, 0.019617604091763496, 3.935878339689225e-05, -0.017768824473023415, -0.03336019814014435, -0.03863948956131935, 0.0228632390499115, -0.014256143942475319, -0.011164573952555656, -0.02520502731204033, 0.013229044154286385, -0.010183693841099739, -0.012345738708972931, -0.0002867855073418468, -0.05160148814320564, 0.03553764894604683, -0.05262858793139458, 0.03144979476928711, -0.02536936290562153, 0.011452161706984043, -0.020593348890542984, 0.004033933859318495, -0.0179742444306612, 0.05090305954217911, -0.029190173372626305, -0.00813976489007473, -0.0003171170246787369, -0.03738642856478691, 0.05180690810084343, 0.003874733578413725, -0.03409970924258232, -0.004701548721641302, 0.021795054897665977, 0.022103184834122658, 0.05086197704076767, 0.02298649214208126, 0.0024303747341036797, -0.04535672441124916, -0.017912618815898895, -0.028697166591882706, -0.04338468983769417, -0.019299203529953957, 0.04354902729392052, -0.010461010038852692, 0.002298135543242097, -0.032312557101249695, 0.01087698619812727, -0.05069763958454132, -0.017491508275270462, -0.027793318033218384, 0.018395354971289635, 0.01204787939786911, -0.019617604091763496, -0.0006798116373829544, 0.028820417821407318, -0.052834007889032364, 0.023869797587394714, 0.03181954845786095, 0.028409577906131744, -0.06499487161636353, 0.00805759709328413, 0.013763136230409145, 0.04038555920124054, -0.005638777278363705, -0.012992811389267445, -0.03391483053565025, -0.08352375030517578, -0.020141424611210823, 0.0014315202133730054, -0.031080037355422974, 0.00789839681237936, -0.003938927315175533, -0.0289642121642828, -0.01526270154863596, 0.03736588731408119, -0.029929684475064278, 0.03648258000612259, -0.007287272252142429, -0.021076085045933723, -0.009130916558206081, -0.025739118456840515, 0.010034764185547829, 0.015272972173988819, -0.036564748734235764, -0.025882912799715996, -0.03360670059919357, -0.006778858136385679, 0.027485188096761703, 0.013526903465390205, -0.03210713714361191, 0.021671803668141365, -0.013280399143695831, 0.010589397512376308, -0.009824208915233612, 0.002504839329048991, 0.026067789644002914, 0.0023212453816086054, -0.002242929069325328, 0.0154989343136549, 0.009012799710035324, -0.002452200511470437, -0.05649048462510109, -0.018272103741765022, 0.01862131804227829, -0.0011895098723471165, 0.028060363605618477, 0.002647349378094077, 0.02458876743912697, 0.001755056669935584, 0.00827842392027378, 0.015509205870330334, -0.0039748759008944035, 0.002678162418305874, -0.017748283222317696, 0.012766849249601364, -0.010846172459423542, -0.02191830798983574, -0.00045898518874309957, 0.0061266496777534485, 0.023109743371605873, 0.0014456427888944745, 0.02553369849920273, -0.002832227386534214, -0.017645573243498802, -0.0322098471224308, -0.010928341187536716, 0.025780202820897102, 0.00016313232481479645, 0.006491269916296005, -0.006599115673452616, -0.012736036442220211, 0.010743462480604649, -0.017933160066604614, 0.0030658927280455828, 0.02958047203719616, 0.01625898852944374, -0.011852730996906757, 0.026807302609086037, -0.0037412105593830347, 0.009552027098834515, -0.02191830798983574, 0.015673542395234108, -0.01227384153753519, 0.046260569244623184, 0.014512918889522552, 0.028820417821407318, 0.032312557101249695, -0.0410018190741539, 0.006850754842162132, 0.04005688801407814, 9.019219578476623e-05, 0.013835033401846886, -0.012160860933363438, -0.04145374521613121, 0.03851623833179474, 0.020120883360505104, 0.003951766062527895, -0.006886703427881002, -0.01259224209934473, 0.025903454050421715, 0.014584816060960293, -0.006876432336866856, 0.0005135498358868062, -0.021712888032197952, -0.029518846422433853, -0.009557162411510944, 0.043877698481082916, 0.018816467374563217, 0.01290037203580141, 0.03970767557621002, 0.045726478099823, -0.015673542395234108, -0.005428222008049488, 0.04163862019777298, -0.022431857883930206, -0.04930078610777855, -0.021199338138103485, 0.02080903947353363, 0.045767564326524734, -0.006419373210519552, 0.04745200648903847, -0.016238445416092873, 0.029005296528339386, -0.01470806822180748, -0.0001374548301100731, 0.00827842392027378, -0.02239077351987362, -0.018261833116412163, -0.007764873560518026, -0.012849017046391964, -0.02849174663424492, 0.0009911512024700642, 0.012078692205250263, -0.0024842973798513412, 0.011308367364108562, -0.019833294674754143, -0.049382954835891724, 0.010764004662632942, -0.0022031287662684917, 0.03344236686825752, -0.017255274578928947, 0.03391483053565025, -0.015519476495683193, -0.002592142904177308, 0.011637039482593536, -0.046712495386600494, -0.007384846918284893, -0.011945169419050217, -0.000611445284448564, -0.02156909368932247, 0.007425930816680193, -0.0026730268727988005, 0.008073003962635994, -0.025246109813451767, 0.04135103523731232, -0.021384214982390404, -0.014163704589009285, 0.027937112376093864, 0.026088332757353783, 0.0014584815362468362, 0.030155647546052933, 0.004799123387783766, -0.03276447951793671, -0.02801927924156189, 0.014338311739265919, -0.016628744080662727, 0.0013750296784564853, 0.03541439771652222, 0.026663508266210556, 0.031203288584947586, -7.029213884379715e-05, -0.0029426405671983957, 0.004239353816956282, 0.008550604805350304, -0.0008743186481297016, -0.02549261413514614, 0.0667203962802887, -0.0012864423915743828, 0.0016022755298763514, -0.013598799705505371, -0.021651262417435646, 0.010907799005508423, -0.01656711846590042, 0.0038490560837090015, -0.052957259118556976, -0.025451529771089554, -0.003443351713940501, 0.02329462207853794, 0.018878092989325523, 0.007847041822969913, -0.02189776487648487, 0.010188829153776169, -0.023746544495224953, 0.04346685856580734, 0.008971716277301311, -0.005040491931140423, 0.014810778200626373, -0.025698034092783928, -0.004819665569812059, -0.005577151197940111, -0.027279768139123917, 0.056079644709825516, -0.044042035937309265, -0.0030094021931290627, 0.02534881979227066, 0.009793396107852459, -0.010276132263243198, 0.017296358942985535, -0.014071266166865826, -0.002716678660362959, -0.00806273240596056, 0.052340999245643616, -0.026663508266210556, -0.04786284640431404, -0.036051198840141296, -0.0003315606154501438, 0.024629851803183556, -0.004616813268512487, 0.008324642665684223, 0.007918938994407654, -0.012448448687791824, -0.01274630706757307, -0.013609071262180805, 0.003425377421081066, -0.0225345678627491, 0.024937981739640236, 0.014235601760447025, -0.02534881979227066, -0.000985373742878437, 0.02144584245979786, -0.020090069621801376, 0.012653868645429611, -0.013475548475980759, 0.008350320160388947, 0.043877698481082916, -0.005926365498453379, -0.021815598011016846, 0.021158253774046898, -0.01228411216288805, -0.00806273240596056, -0.011452161706984043, -0.021343132480978966, 0.020603619515895844, 0.005325512029230595, -0.02660188265144825, 0.029765348881483078, -0.013095521368086338, -0.006537489593029022, -0.005202259868383408, 0.011482974514365196, 0.009531484916806221, -0.057353246957063675, 0.008191119879484177, -0.03584577888250351, -0.04289168491959572, 0.015848148614168167, 0.009408233687281609, 0.006013668607920408, 0.026684049516916275, 0.027300309389829636, -0.009043612517416477, 0.0030787314753979445, 0.026848386973142624, -0.018374813720583916, -0.0064861346036195755, -0.012294383719563484, -0.009362014010548592, 0.013835033401846886, 0.0058441972360014915, 0.016310343518853188, 0.0021017028484493494, 0.02031603269279003, -0.004275302402675152, 0.014779964461922646, -0.030751364305615425, -0.0067993998527526855, -0.0029246665071696043, -0.011308367364108562, 0.037448056042194366, -0.0022686065640300512, -0.027957653626799583, 0.0033509128261357546, 0.0418851263821125, -0.016782809048891068, 0.0024547684006392956, 0.01879592426121235, -0.016474679112434387, 0.02298649214208126, -0.023048117756843567, -0.05973611772060394, -0.020562537014484406, 0.009023071266710758, -0.0011054161004722118, 0.016474679112434387, 0.033565618097782135, -0.0037720235995948315, -0.012972269207239151, 0.003969740588217974, -0.02709488943219185, 0.019175952300429344, -0.03428458794951439, 0.0036025522276759148, 0.023068659007549286, -0.037776727229356766, -0.019134867936372757, -0.04317926988005638, 0.014225331135094166, -0.03446946665644646, -0.0077237896621227264, 0.026889469474554062, 0.010856444016098976, 0.02471201866865158, -0.020778227597475052, 0.026848386973142624, 0.05225883424282074, 0.018569963052868843, -0.005479576997458935, 0.016669828444719315, 0.03570198640227318, -0.06425535678863525, -0.05004029721021652, -0.02489689737558365, 0.01455400325357914, -0.01844670996069908, 0.01266413927078247, -0.03317531943321228, 0.011924627237021923, 0.017594218254089355, -0.018528878688812256, 0.011678123846650124, 0.0313265398144722, -0.037016674876213074, 0.008483843877911568, -0.02567749284207821, 0.037324804812669754, -0.0025035555008798838, -0.00852492731064558, 0.012838746421039104, -0.012099234387278557, -0.020613892003893852, -0.039481714367866516, 0.03738642856478691, 0.01597139984369278, 0.022123727947473526, 0.012489532120525837, -0.003053053980693221, -0.025122858583927155, -0.019340287894010544, 0.007025361992418766, 0.015324327163398266, 0.04778067767620087, -0.003433080855756998, -0.007102394476532936, 0.011154302395880222, -0.006665877066552639, 0.028738249093294144, 0.0013300940627232194, -0.01876511238515377, -0.025759659707546234, 0.016228174790740013, 0.004637354984879494, -0.0569424070417881, 0.003969740588217974, -0.022431857883930206, -0.003104408970102668, 0.011945169419050217, -0.027033263817429543, -0.010466146282851696, -0.0025703171268105507, -0.019905192777514458, 0.024280637502670288, 0.011780833825469017, 0.018518608063459396, -0.012479261495172977, 0.051231734454631805, -0.017912618815898895, 0.0159405879676342, 0.019309474155306816, -0.057517584413290024, -0.03845461457967758, 0.05151931941509247, 0.03730425983667374, 0.009531484916806221, -0.0394611693918705, -0.05332701653242111, -0.007312949746847153, -0.025246109813451767, 0.02662242390215397, 0.032620687037706375, -0.008108952082693577, 0.006147191859781742, -0.004871020559221506, 0.011708936654031277, 0.001907837693579495, -0.05349135398864746, -0.01672118343412876, 0.02471201866865158, 0.05776408687233925, 0.03021727316081524, 0.015005926601588726, -0.010045034810900688, -0.009326064959168434, 0.0340791679918766, -0.011318638920783997, 0.0413304902613163, -0.01972031407058239, -0.004485858138650656, 0.042316507548093796, -0.022411314770579338, 0.031038952991366386, 0.0068918392062187195, 0.001131735509261489, -0.05525796487927437, 0.020880937576293945, -0.017440153285861015, 0.0002633547701407224, 0.02378762885928154, -0.0044447737745940685, -0.00224678055383265, 0.012879829853773117, 0.030956784263253212, -0.020069528371095657, -0.038269735872745514, -0.02208264358341694, 0.06536462157964706, -0.05106739699840546, -0.027197599411010742, -0.00731808552518487, -0.005587422288954258, -0.005179150030016899, 0.05143715441226959, 0.026026707142591476, -0.02865608222782612, -0.014697796665132046, -0.034818679094314575, -0.003286719089373946, 0.007379711605608463, 0.007739196065813303, -0.010009086690843105, -0.030299441888928413, -0.012643597088754177, 0.06824050098657608, 0.030915701761841774, 0.007795686833560467, 0.020891208201646805, 0.028758792206645012, -0.021836139261722565, 0.010378842242062092, 0.00425732834264636, -0.03711938485503197, -0.007287272252142429, 0.054230865091085434, -0.02364383451640606, -0.02861499786376953, -0.010430197231471539, -0.01612546481192112, -0.0005494983633980155, -0.006255037151277065, 0.0067275031469762325, 0.015776252374053, 0.060475628823041916, -0.038413528352975845, 0.04334360733628273, 0.013639884069561958, -0.010070712305605412, -0.020726872608065605, 0.02239077351987362, -0.004236786160618067, 0.013835033401846886, -0.017553133890032768, 0.029765348881483078, 0.01833372935652733, 0.012684681452810764, -0.03181954845786095, 0.04054989665746689, -0.006018804386258125, -0.025923997163772583, -0.022411314770579338, -0.009736904874444008, -0.006676148157566786, -0.03601011633872986, -0.004003121051937342, 0.020932292565703392, 0.032476890832185745, 0.021507468074560165, 0.02892312780022621, -0.019134867936372757, 0.005269021261483431, 0.003438216168433428, -0.014533461071550846, 0.03274393826723099, -0.00021264173847157508, 0.03038160875439644, 0.02004898712038994, -0.01542703714221716, 0.010481552220880985, 0.013639884069561958, 0.022801613435149193, -0.02333570457994938, -0.00844789482653141, -0.009911512024700642, 0.04823260381817818, 0.03251797705888748, 0.04007742926478386, 0.0074875568971037865, 0.01010152604430914, 0.03504464030265808, -0.003019673051312566, -0.02052145265042782, 0.0019553410820662975, 0.02079876884818077, 0.005664454773068428, -0.02584182843565941, 0.006480999290943146, 0.004704116843640804, 0.013680968433618546, 0.018220748752355576, -0.0044832900166511536, 0.0012492099776864052, -0.003279015887528658, -0.0058133844286203384, -0.0057260808534920216, -0.03995417803525925, 0.047000084072351456, -0.016146007925271988, 0.002176167443394661, 0.014625899493694305, -0.03144979476928711, -0.011770562268793583, 0.0009237477788701653, -0.009356878697872162, 0.012612784281373024, 0.026848386973142624, 0.013927471823990345, 0.009541756473481655, -0.02189776487648487, 0.006100972183048725, 0.011174844577908516, 0.05788733810186386, 0.00256389775313437, 0.024917438626289368, -0.005982855800539255, 0.0031018410809338093, 0.04083748534321785, 0.012612784281373024, 0.020274948328733444, -0.012407364323735237, -0.019504623487591743, 0.0029837246984243393, 0.013619341887533665, -0.029929684475064278, 0.005130363162606955, -0.027628982439637184, -0.0063628824427723885, 0.036523666232824326, 0.017902348190546036, 0.004321522079408169, 0.010928341187536716, 0.04276842996478081, 0.03163466975092888, 0.025923997163772583, 0.03816702589392662, -0.0440831184387207, -0.005158608313649893, -0.014215059578418732, -0.020593348890542984, -0.03364778682589531, -0.02458876743912697, 0.017316900193691254, -0.008637908846139908, 0.005623370874673128, -0.014030181802809238, 0.030443234369158745, -0.0027269497513771057, 0.01628980040550232, -0.017132023349404335, 0.006188275758177042, -0.01875483989715576, 0.006414237432181835, 0.02534881979227066, -0.02126096375286579, 0.027197599411010742, -0.0026884335093200207, -0.0035280873998999596, 0.03767401725053787, -0.004198269918560982, -0.024917438626289368, -0.03317531943321228, -0.012325196526944637, -0.028204157948493958, -0.02723868377506733, 0.011328909546136856, 0.052217748016119, -0.0016998499631881714, -0.02081931009888649, -0.013783678412437439, -0.019432727247476578, 0.009130916558206081, 0.028758792206645012, 5.432394391391426e-05, -0.002456052228808403, 0.023808171972632408, 0.021404758095741272, 0.029190173372626305, -0.009762582369148731, 0.02705380693078041, 0.05591530725359917, 0.004580864682793617, 0.013167418539524078, -0.008391404524445534, 0.054230865091085434, 0.06852809339761734, 0.019175952300429344, -0.009700956754386425, 0.006819942034780979, -0.025923997163772583, 0.007389982230961323, -0.026889469474554062, -0.011092676781117916, 0.01737852767109871, 0.0017396501498296857, 0.01494430098682642, -0.0034484872594475746, -0.037139926105737686, 0.006044481880962849, 0.005905823316425085, -0.01673145405948162, 0.004357470665127039, 0.022123727947473526, 0.018559692427515984, 0.010301809757947922, 0.006753180641680956, -0.06762424111366272, 0.0143999382853508, 0.0033534804824739695, -0.0026345106307417154, -0.003931224346160889, 0.03377103805541992, 0.020398199558258057, -0.014677254483103752, -0.0026730268727988005, -0.014102078974246979, -0.00011891888425452635, -0.010753734037280083, 0.03457217663526535, -0.005346053745597601, -0.004390851128846407, -0.01891917735338211, 0.005382002331316471, 0.01526270154863596, 0.015047010965645313, 0.010435332544147968, -0.001963044283911586, 0.005459034815430641, 0.0003886930353473872, -0.000640011508949101, -0.02204155921936035, 0.04102236405014992, 0.01080508902668953, -0.021856682375073433, 0.00712293665856123, 0.0610097236931324, -0.037324804812669754, 0.004526942037045956, -0.0014982817228883505, -0.04663032665848732, -0.04096073657274246, -0.010979696176946163, 0.009526349604129791, 0.03613336756825447, 0.004550051875412464, -0.01593031734228134, 0.024999607354402542, 0.03970767557621002, -0.019956547766923904, 0.04478154703974724, -0.0031275185756385326, -0.006029075477272272, 6.258888606680557e-05, 0.029292883351445198, -0.013321483507752419, -0.022739987820386887, -0.03405862674117088, -0.011452161706984043, 0.011462432332336903, 0.011904085986316204, 0.002466323086991906, 0.013886388391256332, 0.007030497305095196, -0.0031814412213861942, -0.010609939694404602, 0.014060994610190392, 0.010137474164366722, 0.008329778909683228, -0.029005296528339386, 0.009238761849701405, 0.05160148814320564, -0.0005902613629586995, 0.004568025935441256, -0.02801927924156189, 0.008971716277301311, -0.010630481876432896, 0.021795054897665977, -0.02818361669778824, -0.038885995745658875, 0.015149720944464207, 0.0006454679532907903, 0.0021440705750137568, 0.018980802968144417, 0.006696689873933792, 0.0014315202133730054, -0.01722446270287037, -0.00017733518325258046, -0.010430197231471539, -0.018097497522830963, -0.008981986902654171, -0.03227147087454796, 0.037797268480062485, -0.0009943608893081546, -0.01768665760755539, 0.0037874302361160517, 0.015118907205760479, -0.030422693118453026, -0.02818361669778824, 0.00385162397287786, 0.008946038782596588, 0.0035203841980546713, 0.04383661597967148, -0.0039004110731184483, 0.014821048825979233, -0.01893971860408783, -0.003569171531125903, 0.03225092962384224, -0.042809516191482544, -0.014143163338303566, 0.0032584737055003643, -0.024609308689832687, -0.005117524415254593, -0.0038695980329066515, 0.01690606027841568, 0.03344236686825752, -0.03551710769534111, -0.013547444716095924, 0.021486924961209297, 0.01831318810582161, -0.022781072184443474, 0.0347365103662014, -0.010527771897614002, -0.01166785228997469, 0.014923758804798126, 0.028389036655426025, 0.0381464846432209, 0.010455874726176262, -0.02986805886030197, -0.010918069630861282, 0.012725764885544777, 0.0056490483693778515, 0.005905823316425085, -0.021384214982390404, -0.03551710769534111, 0.0050533306784927845, 0.021507468074560165, -0.011996524408459663, -0.040734775364398956, 0.0053357831202447414, 0.02347949892282486, 0.005905823316425085, -0.01704985462129116, -0.006665877066552639, 0.001023889984935522, -0.04987596347928047, -0.005346053745597601, 0.001814114861190319, 0.08422217518091202, 0.0004567384021356702, 0.01861104741692543, -0.014307498931884766, 0.0018436439568176866, -0.029333967715501785, 0.026951096951961517, 0.0026832979638129473, -0.00759026687592268, 0.006178004667162895, -0.019977089017629623, 0.01734771393239498, 0.00867899227887392, -0.018847279250621796, -0.02204155921936035, 0.01480050664395094, 0.02845066227018833, -0.011154302395880222, -0.014574544504284859, -0.02113771252334118, -0.010281268507242203, 0.0032764479983597994, 0.0242395531386137, 0.014666983857750893, -0.01766611449420452, 0.01799478754401207, 0.01133918110281229, -0.011852730996906757, -0.0006650470313616097, -0.01985383778810501, -0.0011888679582625628, 0.03722209483385086, 0.034839220345020294, -0.0008576282416470349, -0.02925179898738861, -0.007508098613470793, -0.013403651304543018, 0.0034099710173904896, 0.018272103741765022, -0.028039822354912758, -0.015396224334836006, -0.03344236686825752, 0.028738249093294144, -0.021466383710503578, 0.004778581205755472, 0.01864185929298401, -0.009541756473481655, -0.025903454050421715, 0.008745754137635231, 0.020141424611210823, 0.008817651309072971, -0.008745754137635231, -0.02816307358443737, 0.005017382092773914, -0.020880937576293945, -0.04363119602203369, 0.010086119174957275, 0.019042428582906723, -0.006588844582438469, -0.035434938967227936, 0.006917516700923443, 0.027033263817429543, -0.013958284631371498, 0.005566880572587252, 0.0003858043346554041, 0.0074464729987084866, -0.007056174799799919, -0.0074875568971037865, -0.024301178753376007, 0.01737852767109871, 0.01832345873117447, -0.02062416262924671, -0.01910405419766903, -0.012530616484582424, 0.035619817674160004, -0.020110612735152245, -0.005515525583177805, -0.00882792193442583, -0.000152861321112141, -0.0440831184387207, 0.002445781137794256, 0.0008762444485910237, 0.010055306367576122, -0.012109505943953991, -0.0007850893307477236, 0.030278898775577545, -0.007425930816680193, -0.012448448687791824, -0.03987200930714607, -0.006224224343895912, -0.015478392131626606, 0.02113771252334118, -0.025739118456840515, 0.009279846213757992, -0.00899225752800703, -0.01494430098682642, 0.006927787326276302, -0.01164731103926897, 0.004632219672203064, -0.01578652299940586, -0.005433357320725918, 0.013855574652552605, 0.009274709969758987, -0.022144269198179245, 0.02442443184554577, -0.005096982233226299, 0.013259856961667538, -0.02126096375286579, 0.015468121506273746, 0.011236471123993397, -0.008334914222359657, 0.010938611812889576, 0.03438729792833328, -0.03379157930612564, -0.008355456404387951, 0.010312081314623356, -0.011472703889012337, -0.01625898852944374, -0.029128547757864, 0.017871534451842308, -0.004401122219860554, 0.023232994601130486, 0.007425930816680193, 0.005135498475283384, 0.006624793168157339, 0.011369993910193443, 0.00046636746264994144, -0.016710912808775902, -0.005972584709525108, -0.0325385183095932, -0.016012484207749367, -0.042480845004320145, -0.006989413406699896, 0.007220510859042406, 0.05291617661714554, 0.014215059578418732, -0.015878962352871895, -0.013824761845171452, 0.012417635880410671, -0.06663823127746582, 0.006183140445500612, 0.00852492731064558, -0.016166549175977707, -0.026642967015504837, 0.0009500672458671033, 0.02048036828637123, 0.006917516700923443, 0.03750967979431152, 0.04354902729392052, 0.032333098351955414, -0.011452161706984043, -0.0030633248388767242, -0.04350794479250908, 0.0031840091105550528, -0.01799478754401207, 0.002919530961662531, -0.04363119602203369, -0.06076321750879288, -0.018200207501649857, -0.022144269198179245, -0.01409180834889412, 0.032292015850543976, -0.005004543345421553, 0.036523666232824326, -0.0005177224520593882, 0.03021727316081524, 0.0029554793145507574, -0.030443234369158745, 0.024465514346957207, -0.007179426960647106, 0.02845066227018833, 0.015324327163398266, -0.012243028730154037, -0.014102078974246979, 0.009993679821491241, -0.005921229720115662, 0.011595956049859524, 0.003397132270038128, 0.0023032710887491703, 0.021815598011016846, -0.013300941325724125, -0.0021094060502946377, 0.020213322713971138, -0.030895158648490906, 0.018857549875974655, -0.005931500811129808, 0.02113771252334118, 0.03851623833179474, -0.005104685667902231, -0.009557162411510944, 0.001538081793114543, -0.01580706425011158, -0.022103184834122658, -0.003956901840865612, 0.011760291643440723, -0.004847910720854998, 0.02206210233271122, -0.04395986720919609, 0.029333967715501785, 0.029970768839120865, -0.015755709260702133, -0.010142609477043152, 0.020079798996448517, 0.006100972183048725, 0.013074979186058044, 0.005808248650282621, -0.023109743371605873, -0.01922730728983879, 0.06224224343895912, -0.006701825652271509, 0.029518846422433853, 0.012232757173478603, -0.010065576992928982, 0.04143320024013519, -0.002616536570712924, -0.0016677530948072672, 0.014132891781628132, -0.026417003944516182, -0.01799478754401207, -0.00778541574254632, -0.03728371858596802, -0.023048117756843567, 0.0015445011667907238, -0.01896025985479355, -0.012777119874954224, 0.019186222925782204, -0.0018462117295712233, 0.02582128718495369, 0.045767564326524734, 0.015201075933873653, 0.015550289303064346, 0.07275974005460739, -0.016526034101843834, 0.0230275746434927, 0.03007347881793976, 0.008566011674702168, 0.014215059578418732, 0.010784546844661236, -0.009906376712024212, -0.05414869636297226, 0.015355140902101994, -0.019966818392276764, -0.014307498931884766, -0.009521214291453362, 0.014821048825979233, 0.021076085045933723, -0.032641228288412094, 0.009136051870882511, 0.00822193268686533, -0.03307260945439339, 0.02799873799085617, -0.025759659707546234, 0.022123727947473526, 0.009171999990940094, -0.013526903465390205, -0.03064865432679653, 0.024979064241051674, -0.021671803668141365, 0.016649285331368446, -0.04453504458069801, -0.005099549889564514, 0.018364543095231056, -0.03695504739880562, 0.01065102405846119, -0.009141187183558941, -0.018991073593497276, 0.00375918485224247, -0.015118907205760479, 0.05332701653242111, -0.023869797587394714, 0.016597930341959, -0.015837877988815308, 0.04276842996478081], [0.0039081573486328125, -0.010698842816054821, 0.048751797527074814, 0.009191795252263546, -0.014711656607687473, -0.021361803635954857, -0.011781285516917706, 0.017976926639676094, 0.02369413897395134, 0.040068332105875015, -0.038178544491529465, 0.03827422857284546, -0.015668511390686035, -0.0130012771114707, 0.0022575813345611095, -0.013372058980166912, 0.00039507675683125854, 0.02581118233501911, -0.021409645676612854, -0.037341292947530746, 0.029327627271413803, 0.008605721406638622, -0.0609995499253273, 0.015345573425292969, 0.03896794840693474, -0.04114479571580887, -0.010794528760015965, -0.02011789195239544, 0.016278507187962532, -0.0015773167833685875, 0.01612301915884018, -0.019448092207312584, 0.003938059322535992, -0.014532245695590973, -0.028992727398872375, 0.018766332417726517, -0.00011054299829993397, 0.003187525551766157, 0.05028276890516281, -0.06946772336959839, -0.062147777527570724, 0.01265441719442606, -0.017020070925354958, -0.05817682668566704, -0.03961382806301117, 0.03028448298573494, 0.055354103446006775, -0.03903971239924431, -0.04980434104800224, 0.00788209866732359, -0.03267662227153778, -0.012845788151025772, 0.034183669835329056, -0.0009247113484889269, -0.023502768948674202, -0.009514734148979187, 0.020572397857904434, -0.002064715139567852, 0.03174368664622307, -0.03602561727166176, -0.003504483960568905, -0.01632635109126568, 0.03219819441437721, 0.04856042563915253, -0.01815633662045002, 0.022880813106894493, -0.03437504172325134, -0.0054929498583078384, -0.050234925001859665, 0.06042543798685074, 0.016170861199498177, 0.036216989159584045, 0.04726867377758026, -0.04951728135347366, -0.005403244402259588, 0.011733443476259708, -0.010955997742712498, 0.030619382858276367, 0.011105506680905819, -0.0009501278400421143, 0.002103587379679084, 0.005965397227555513, -0.01835966855287552, 0.04423065483570099, 0.05281843617558479, -0.022486109286546707, -0.049612969160079956, 0.0038902165833860636, 0.007912000641226768, -0.005304568912833929, 0.005899613723158836, 0.0021932926028966904, 0.018347708508372307, 0.011338740587234497, -0.01461597066372633, 0.06879792362451553, -0.02691156603395939, -0.02343100495636463, 0.000821550318505615, 0.04884748533368111, 0.01381460390985012, -0.019651424139738083, 0.04226909950375557, -0.02095513977110386, 0.04808199778199196, -0.0013201618567109108, -0.011320799589157104, 0.042197335511446, 0.02628961019217968, 0.006482697557657957, -0.014843224547803402, 0.03303544223308563, -0.042938899248838425, 0.03454248979687691, 0.03951814025640488, 0.00953267514705658, -0.039781276136636734, 0.0056723603047430515, -0.009933358058333397, -0.018120454624295235, 0.018252022564411163, 0.012439124286174774, -0.0024803495034575462, -0.028203321620821953, 0.025117462500929832, 0.0171157568693161, -0.018909860402345657, 0.0640614926815033, -0.017689870670437813, -0.0482255294919014, 0.04705337807536125, -0.02628961019217968, -0.008336605504155159, -0.03982912003993988, -0.024017078801989555, -0.02628961019217968, -0.01730712689459324, -0.008211018517613411, -0.03571464121341705, -0.025978632271289825, 0.05320117622613907, 0.01850319653749466, 0.0534403920173645, 0.0237061008810997, -0.06329600512981415, 0.004452369175851345, -0.04009225592017174, 0.06176503747701645, -0.004673642106354237, 0.04415889084339142, -0.000773707521148026, 0.0011990597704425454, -0.03595385327935219, 0.008396408520638943, -0.028155479580163956, 0.013575389981269836, 0.035307977348566055, 0.010112768970429897, -0.01254677027463913, 0.07052026689052582, -0.04908669739961624, 0.0282511655241251, -0.01858692243695259, -0.003914137836545706, 0.039781276136636734, -0.042603999376297, -0.009108070284128189, -0.03296367824077606, -0.06626226007938385, -0.03119349665939808, -0.03526013344526291, -0.026098240166902542, -0.04284321516752243, -0.007876118645071983, -0.02803587168455124, -0.04810592159628868, 0.04908669739961624, 0.009556596167385578, 0.062004249542951584, 0.03401622176170349, -0.0175224207341671, -0.006871419958770275, -0.017701830714941025, 0.02151729352772236, 0.016589485108852386, 0.01767790876328945, -0.025548048317432404, 0.001731310854665935, -0.00030499775311909616, -0.005768045783042908, 0.016661250963807106, -0.015058516524732113, 0.017486538738012314, 0.035379741340875626, -0.02657666802406311, 0.006434854585677385, 0.013706957921385765, 0.019089272245764732, -0.015824001282453537, -0.026098240166902542, 0.006351129617542028, -0.01314480509608984, 0.052196480333805084, 0.047077301889657974, -0.04789062961935997, -0.0019929511472582817, 0.005857751239091158, -0.0497564971446991, 0.04956512525677681, 0.019089272245764732, 0.008246900513768196, -0.007666806224733591, -0.06487482041120529, -0.0025057659950107336, 0.0033280637580901384, 0.0372934527695179, 0.021816309541463852, -0.027461759746074677, 0.006303287111222744, 0.008533956483006477, 0.06272189319133759, -0.03990088403224945, 0.027174701914191246, 0.01676889695227146, -0.019448092207312584, -0.04176675155758858, 0.01583596132695675, -0.023921392858028412, 0.0005853265756741166, -0.06755401194095612, 0.005576674826443195, 0.03372916206717491, -0.00017380386998411268, -0.047364357858896255, -0.0010233870707452297, 0.046455346047878265, -0.03695855289697647, -0.04858434945344925, -0.043082427233457565, -0.023945314809679985, -0.025643732398748398, 0.008073469623923302, -0.025404518470168114, 0.005516871344298124, -0.03645620122551918, -0.026600588113069534, -0.008348566479980946, 0.01170354150235653, 0.08554290235042572, 0.01928064227104187, -0.014807342551648617, -0.027509601786732674, -0.0014883591793477535, -0.04265184327960014, 0.04494829848408699, 0.004906875547021627, 0.026265690103173256, 0.002442972268909216, 0.00034966348903253675, -0.01975907012820244, 0.008264841511845589, -0.048416897654533386, -0.00408158777281642, 0.019220838323235512, -0.015572826378047466, -0.05243569239974022, -0.03226995840668678, 0.015477141365408897, -0.0031366925686597824, 0.0549713596701622, -0.02545236237347126, -0.017785554751753807, 0.027437837794423103, -0.03982912003993988, -0.008593760430812836, -0.04198204353451729, 0.01935240626335144, 0.00450320215895772, 0.01886201836168766, 0.030404090881347656, -0.06669284403324127, -0.03858520835638046, 0.03686286509037018, -0.016996148973703384, -0.017486538738012314, -0.040690287947654724, 0.0073857298120856285, -0.014352835714817047, 0.041551459580659866, -0.02207944542169571, 0.03085859678685665, -0.04655103012919426, 0.011207172647118568, -0.036767181009054184, 0.036145225167274475, -0.00030481087742373347, 0.0016102087683975697, -0.03360955789685249, 0.02495001256465912, -0.04052283987402916, -0.010908154770731926, 0.008067489601671696, -0.02424433082342148, -0.0048171705566346645, -0.06922850757837296, 0.03650404512882233, 0.02727038785815239, 0.02901664935052395, -0.011015801690518856, -0.005265696439892054, 0.011583934538066387, -0.007158476859331131, -0.01359931193292141, -0.03071506880223751, -0.015752237290143967, 0.047986313700675964, 0.01612301915884018, 0.019436132162809372, 0.01928064227104187, 0.002535667736083269, 0.0331072062253952, 0.0036749239079654217, 0.018383590504527092, -0.006512599065899849, 0.03444680571556091, 0.004410506691783667, 0.04200596734881401, -0.003175564808771014, -0.009628360159695148, -0.014376756735146046, -0.0025805202312767506, -0.008809053339064121, 0.013587350957095623, -0.01942417025566101, -0.0527227483689785, 0.020345143973827362, 0.016362233087420464, 0.002830199897289276, -0.02755744382739067, -0.0011557022808119655, 0.046574950218200684, -0.012534810230135918, 0.015477141365408897, 0.015034595504403114, 0.023610414937138557, -0.030093112960457802, 0.03470994159579277, 0.032485250383615494, 0.03968559205532074, 0.03203074634075165, -0.05133530870079994, 0.013838525861501694, -0.051765892654657364, -0.019878678023815155, -0.02566765435039997, -0.009526695124804974, 0.01773771271109581, -0.024280212819576263, -0.024148646742105484, 0.011691580526530743, -0.010908154770731926, -0.020237497985363007, -0.02810763567686081, 0.013443822972476482, -0.0047513865865767, -0.043513014912605286, -0.0190055463463068, -0.0542537197470665, 0.0197710320353508, -0.05434940382838249, -0.015130280517041683, -0.04136008769273758, -0.043776147067546844, 0.032580938190221786, 0.03413582593202591, 0.019794952124357224, -0.00039059147820807993, 0.04568985849618912, 0.052196480333805084, -0.008366507478058338, 0.04236478731036186, 0.006632206030189991, 9.545196371618658e-05, 0.0008798587368801236, 0.051765892654657364, 0.01576419733464718, -0.027868421748280525, -0.017857320606708527, 0.02426825277507305, -0.007666806224733591, 0.019244760274887085, -0.027653129771351814, 0.0005311296554282308, -0.014974791556596756, 0.020943179726600647, 0.012738141231238842, 0.07372573018074036, 0.03470994159579277, -0.009401107206940651, -0.028155479580163956, -0.004512172657996416, 0.010926095768809319, 0.022533951327204704, -0.05195726454257965, 0.04942159727215767, 0.022414345294237137, -0.03143271058797836, 0.029471155256032944, 0.04592907428741455, -0.028418615460395813, 0.03911147639155388, -0.022677481174468994, 0.01192481443285942, 0.04380007088184357, 0.006859459448605776, 0.014592049643397331, 0.03786756470799446, 0.00676377397030592, 0.042173415422439575, 0.007307985331863165, 0.02966252714395523, -0.012630495242774487, -0.0044314381666481495, 0.014496363699436188, -0.021397685632109642, 0.027940187603235245, -0.013515586964786053, -0.01569243334233761, -0.03533189743757248, -0.06851086765527725, -0.03104996867477894, -0.05391881987452507, 0.013300294056534767, 0.030523696914315224, -0.036145225167274475, -0.006422894075512886, 0.0009209736017510295, -0.004646730609238148, 0.0095027731731534, -0.01717556081712246, -0.016242625191807747, 0.0005711232661269605, 0.016362233087420464, 0.05755487084388733, -0.03358563408255577, 0.03779580071568489, -0.015680473297834396, 0.0031606140546500683, 0.010471589863300323, 0.013898328877985477, -0.015022634528577328, 0.03150447458028793, 0.02160101756453514, 0.01935240626335144, -0.018873978406190872, -0.018216140568256378, 0.04698161408305168, -0.0017656978452578187, 0.030882518738508224, 0.0004447883984539658, 0.010860312730073929, 0.05281843617558479, 0.04702945798635483, 0.0038453638553619385, 0.0001532464229967445, -0.009580518119037151, 0.008809053339064121, 0.01829986460506916, 0.01222981233149767, -0.026672352105379105, 0.021278079599142075, -0.0082768015563488, 0.026552746072411537, 0.037054236978292465, 0.0019391279201954603, -0.025189226493239403, 0.006291326135396957, -0.0723382905125618, -0.03224603831768036, -0.02174454554915428, 0.013276373036205769, 0.01892182230949402, -0.01472361758351326, -0.05798545479774475, -0.0013657619711011648, 0.05841604247689247, 0.06339169293642044, 0.039231084287166595, -0.04059460386633873, -0.012642456218600273, -0.01850319653749466, -0.014233228750526905, 0.004969669505953789, -0.011260995641350746, -0.0274856798350811, 0.0014165949542075396, -0.06090386584401131, 0.005726183298975229, 0.02777273766696453, -0.018754372373223305, 0.010088847018778324, -0.06453991681337357, 0.0012102730106562376, 0.020560437813401222, 0.002583510475233197, 0.03650404512882233, 0.0022575813345611095, -0.060760337859392166, -0.004673642106354237, -0.0455702543258667, 0.003839383600279689, 0.027724893763661385, -0.03870481252670288, -0.017689870670437813, -0.015249887481331825, 0.008886797353625298, -0.02495001256465912, 0.007595042232424021, -0.02516530454158783, 0.017964966595172882, 0.029255863279104233, 0.018132416531443596, 0.009066208265721798, -0.05693291500210762, 0.009813751094043255, 0.037126000970602036, 7.181090040830895e-05, -0.0693720355629921, -0.0021888073533773422, -0.008767190389335155, -0.005681330803781748, -0.03377700597047806, -0.02468687668442726, 0.019244760274887085, 0.02810763567686081, 0.016039293259382248, 0.005968387704342604, 0.008151214569807053, -0.022761205211281776, -0.05329686403274536, 0.019053390249609947, -0.01639811508357525, -0.0009755442733876407, -0.02327551506459713, -0.02839469350874424, 0.0041712927632033825, 0.0012087778886780143, -0.008175135590136051, -0.017976926639676094, -0.004063646774739027, -0.002402604790404439, -0.01245108526200056, -0.024292174726724625, -0.001539939665235579, 0.04011617600917816, 0.026552746072411537, 0.03241348639130592, -0.007140535861253738, 0.02566765435039997, 0.017199480906128883, -0.02251003123819828, -0.005355401895940304, -0.0013926735846325755, -0.005696281790733337, -0.0013104438548907638, 0.037269528955221176, 0.016924384981393814, -0.006955144926905632, 0.02321571111679077, -0.04023578390479088, -0.022342581301927567, 0.009401107206940651, 0.011984617449343204, -0.02755744382739067, -0.015812041237950325, 0.019531818106770515, 0.0014711656840518117, -0.013838525861501694, 0.032700542360544205, 0.04418281093239784, 0.01914907433092594, 0.04088165983557701, 0.00987953506410122, -0.058368198573589325, -0.0033968377392739058, 0.0020961121190339327, -0.013061080127954483, 0.006219562143087387, 0.010268257930874825, 0.012989316135644913, -0.009933358058333397, 0.01893378235399723, -0.027294309809803963, -0.011470307596027851, -0.015333612449467182, 0.05286627635359764, 0.004063646774739027, 0.04226909950375557, -0.005543782841414213, 0.030691146850585938, -0.012439124286174774, -0.011272956617176533, -0.02047671191394329, 0.027222545817494392, -0.01873045042157173, 0.016601447016000748, -0.00501452200114727, -0.007074751891195774, 0.025189226493239403, 0.0007538976497016847, 0.017725752666592598, -0.008665524423122406, 0.010525412857532501, -0.028203321620821953, -0.027102937921881676, 0.0041384007781744, -0.04753180593252182, -0.012152067385613918, -0.039709512144327164, 0.012235792353749275, -0.02727038785815239, -0.012427163310348988, 0.031648002564907074, -0.014041857793927193, 0.03286799415946007, 0.011733443476259708, -0.039781276136636734, -0.04846474155783653, 0.0399487242102623, -0.016876542940735817, 0.0009284490370191634, 0.048632193356752396, -0.00915591325610876, -0.038393836468458176, -0.004631779622286558, 0.008258860558271408, 0.013455783016979694, -0.012295596301555634, -0.01499871350824833, 0.007726609706878662, 0.03308328613638878, 0.009658262133598328, 0.030188797041773796, -0.031073888763785362, 0.02657666802406311, -0.016350271180272102, 0.03337034210562706, -0.016649289056658745, 0.04779494181275368, 0.007744550704956055, 0.02461511269211769, 0.029686449095606804, 0.007373769301921129, -0.013479704968631268, -0.0008656554273329675, -0.02230669930577278, 0.023885510861873627, 0.05104825273156166, 0.004479280672967434, 0.030451932922005653, -0.010220414958894253, -0.0015668512787669897, -0.01662536710500717, 0.02215120941400528, 0.008815033361315727, -0.01724732480943203, 0.03664757311344147, 0.018000848591327667, -0.010621098801493645, -0.028442535549402237, -0.05817682668566704, 0.05238784849643707, 0.009688164107501507, -0.01914907433092594, -0.018455354496836662, -0.0032802210189402103, -0.017689870670437813, -0.009096109308302402, -0.023933352902531624, 0.004347713198512793, -0.024710798636078835, -0.006901321932673454, -0.03681502491235733, 0.0017118746181949973, 0.005827849265187979, 0.009801791049540043, 0.024304134771227837, -0.023789824917912483, 0.023383161053061485, 0.0035523269325494766, 0.008797092363238335, -0.03447072580456734, 0.017008110880851746, -0.01626654714345932, -0.0173190888017416, 0.019161036238074303, 0.03071506880223751, 0.01788124069571495, 0.0035553169436752796, 0.004778298083692789, 0.017988886684179306, 0.002351772040128708, -0.022282777354121208, -0.058224670588970184, -0.020165733993053436, 0.007427592296153307, 0.028633907437324524, 0.02209140546619892, 0.019998284056782722, -0.02292865514755249, -0.01205638237297535, -0.0034087984822690487, 0.008252880536019802, -0.01929260417819023, -0.06009053811430931, 0.021349843591451645, -0.0049008955247700214, 0.006757793482393026, 0.010316100902855396, 0.011404523625969887, -0.035307977348566055, 0.011350700631737709, 0.007421612273901701, 0.017127716913819313, -0.02307218313217163, 0.012259713374078274, -0.02377786487340927, 0.010076886974275112, -0.01829986460506916, 0.020416907966136932, 0.0024833395145833492, -0.011464327573776245, 0.02363433688879013, 0.013348137028515339, -0.030954282730817795, -0.009203756228089333, -0.04755572974681854, -0.0013762275921180844, -0.0059773582033813, 0.006721911486238241, 0.01753438077867031, -0.002921400126069784, 0.0018449374474585056, -0.04258007928729057, 0.012463045306503773, -0.012319517321884632, 0.001870353939011693, -0.0015414347872138023, -0.030619382858276367, -0.012785984203219414, 0.0041712927632033825, 0.007864157669246197, 0.04702945798635483, 0.01114736869931221, 0.03437504172325134, -0.008258860558271408, 0.0016924384981393814, -0.008462192490696907, -0.010979919694364071, 0.020524555817246437, 0.007104653865098953, 0.009203756228089333, -0.00932934321463108, 0.056550171226263046, 0.048703957349061966, 0.022677481174468994, -0.041192639619112015, -0.03021271899342537, -0.018192218616604805, 0.0034267394803464413, -0.023323357105255127, 0.012002558447420597, 0.050091397017240524, -0.002356257289648056, 0.020787689834833145, -0.0016819728771224618, 0.0038932065945118666, -0.002670225454494357, -0.0301409550011158, -0.013240491040050983, 0.015381455421447754, -0.023861588910222054, -0.0029408361297100782, -0.021959839388728142, 0.012570692226290703, -0.020596319809556007, 0.013730879873037338, -0.0007864157669246197, 0.029399391263723373, 0.00779837416484952, -0.01613497920334339, -0.03612130135297775, 0.012307556346058846, -0.026552746072411537, -0.013108923099935055, 0.04829729348421097, -0.010806488804519176, -0.047914549708366394, 0.002972233109176159, 0.015584787353873253, -0.023610414937138557, 0.008886797353625298, -0.008527976460754871, 0.024148646742105484, 0.012152067385613918, 0.009921398013830185, -0.030691146850585938, 0.003656982909888029, 0.007595042232424021, -0.04317811504006386, 0.0016146940179169178, 0.013049120083451271, -0.007164457347244024, 0.044565554708242416, 0.026959409937262535, -0.01949593424797058, -0.00015502184396609664, 0.011171290650963783, -0.01272618118673563, -0.029829977080225945, 0.042388707399368286, 0.022211013361811638, 0.008432290516793728, -0.01822810061275959, 0.038944028317928314, -0.048680033534765244, -0.057459186762571335, 0.0052298144437372684, 0.003988892305642366, -0.0035074742045253515, -0.0031994862947613, 0.024854326620697975, 0.02664843201637268, 0.0010637544328346848, -0.014735577628016472, -0.012642456218600273, 0.0024250312708318233, 0.03681502491235733, -0.00630926713347435, -0.013037159107625484, 0.05712428689002991, 0.009114050306379795, 0.0036988453939557076, 0.038872264325618744, -0.02426825277507305, 0.011494229547679424, -0.0012491452507674694, 0.0015489101642742753, -0.049612969160079956, 0.011900892481207848, 0.0095027731731534, -0.01401793584227562, -0.0024250312708318233, -0.006787694990634918, -0.00960443913936615, -0.020560437813401222, 0.008073469623923302, 0.002109567867591977, -0.026026476174592972, -0.05592821538448334, 0.026768038049340248, -0.019507896155118942, 0.012762063182890415, 0.01613497920334339, 0.0013702473370358348, -0.013778721913695335, -0.013994014821946621, -0.021122589707374573, 0.019543778151273727, 0.02959076315164566, 0.063343845307827, -0.005636478308588266, 0.004293890204280615, -0.00810337159782648, -0.004485261160880327, 0.027246465906500816, -0.020165733993053436, 0.01808457262814045, -0.027988029643893242, -0.009496793150901794, 0.0022022633347660303, 0.028562143445014954, 0.013982053846120834, 0.03231780230998993, -0.016362233087420464, -0.03808285668492317, 0.0019540786743164062, 0.04425457492470741, -0.010836390778422356, -0.008049548603594303, 0.021409645676612854, 0.04341732710599899, 0.02194787748157978, 0.02174454554915428, 0.003570267930626869, -0.02755744382739067, -0.01254677027463913, 0.03394445776939392, -0.028083715587854385, -0.01539341639727354, -0.022593755275011063, 0.045952994376420975, -0.02657666802406311, -0.013240491040050983, -0.02251003123819828, 0.038465600460767746, -0.00606108270585537, 0.008964542299509048, -0.0027061074506491423, 0.002306919312104583, 0.08008882403373718, -0.04702945798635483, 0.033681321889162064, -0.016529683023691177, 0.010674921795725822, 0.02412472479045391, -0.03987696021795273, -0.015883805230259895, 0.0069970074109733105, 0.02137376368045807, 0.029040571302175522, -0.006608284544199705, -0.04604868218302727, -0.008569839410483837, -0.011506189592182636, -0.0029542921110987663, -0.029136257246136665, 0.010423746891319752, -0.03581032529473305, -0.013049120083451271, 0.01773771271109581, 0.04865611344575882, -0.0082768015563488, 0.04052283987402916, 0.009580518119037151, 0.002296453807502985, 0.0208953358232975, -0.014974791556596756, 0.03442288562655449, -0.0357624813914299, 0.012762063182890415, 0.03401622176170349, 0.004996581003069878, 0.010674921795725822, -0.021349843591451645, -0.027677051723003387, 0.016242625191807747, 0.015871843323111534, -0.0008469668100588024, -0.022952577099204063, -0.0010854331776499748, -0.015154202468693256, -0.010453648865222931, 0.004622809123247862, 0.006632206030189991, 0.015859883278608322, 0.03303544223308563, 0.013970093801617622, 0.01359931193292141, 0.023658256977796555, 0.02425629273056984, 0.018323786556720734, -0.00848611444234848, -0.018826136365532875, 0.04772317782044411, 0.0063989725895226, 0.007995725609362125, 0.020787689834833145, -0.0040486957877874374, 0.001202050014398992, 0.013611272908747196, 0.05109609663486481, 0.03353779390454292, 0.038178544491529465, -0.02664843201637268, 0.005199912935495377, -0.04844082146883011, 0.00897650234401226, 0.05903799831867218, -0.006267405115067959, -0.0026313532143831253, 0.030595460906624794, 0.0031247318256646395, 0.009066208265721798, -0.015501062385737896, 0.012750102207064629, -0.013862446881830692, -0.011087565682828426, 0.024973934516310692, 0.04088165983557701, 0.008952581323683262, 0.03935069218277931, 0.003863304853439331, 0.010746685788035393, -0.006602304521948099, 0.02686372399330139, 0.009419048205018044, 0.007636904716491699, 0.038800500333309174, 4.412842827150598e-05, 0.03317897021770477, -0.00868944637477398, -0.004772318061441183, 0.01434087473899126, 0.024304134771227837, 0.0399487242102623, 0.04734043776988983, -0.008593760430812836, 0.0031217418145388365, -0.04927806928753853, 0.021923957392573357, -0.012241772376000881, -0.0032772307749837637, -0.0017058943631127477, -0.013563429936766624, -0.0130012771114707, 0.0064109330996870995, 0.010686881840229034, 0.028490379452705383, 0.01899358630180359, -0.010106788016855717, -0.0014330409467220306, 0.009999142028391361, 0.05004355311393738, 0.005295598413795233, 0.0150704775005579, 0.02664843201637268, -0.031313102692365646, 0.04552241042256355, 0.009718066081404686, 0.025284912437200546, -0.032844074070453644, 0.03042801097035408, 0.028059793636202812, -0.0009807770838961005, 0.015740277245640755, -0.006285346113145351, -0.02502177655696869, -0.021433567628264427, 0.006297306623309851, -0.004144381266087294, 0.009795810095965862, -0.005155059974640608, -0.02679196000099182, -0.012146087363362312, 0.005827849265187979, 0.04078597575426102, 0.042316943407058716, -0.019747110083699226, 0.03387269377708435, 0.019400250166654587, -0.0025252019986510277, -0.0115719735622406, 0.003988892305642366, -0.00928748119622469, 0.012666377238929272, 0.01886201836168766, -0.030810754746198654, 0.020297301933169365, -0.010489530861377716, 0.024519426748156548, -0.019400250166654587, -0.0029453213792294264, -0.014831263571977615, 0.004132420755922794, -0.02490217052400112, -0.002006406895816326, -0.000691103981807828, -0.0009934853296726942, 0.021612977609038353, -0.013443822972476482, 0.01997436210513115, 0.04341732710599899, 0.040283624082803726, 0.014819302596151829, 0.006692009512335062, -0.008342585526406765, -0.039015792310237885, -0.022115327417850494, -0.006985046900808811, -0.041192639619112015, 0.009096109308302402, 0.006255444139242172, 0.021146511659026146, -0.04348909109830856, -0.030188797041773796, 0.01247500628232956, -0.015800079330801964, -0.01115334965288639, 0.040618523955345154, 0.0073259263299405575, 0.04430241882801056, 0.0015339592937380075, 0.03889618441462517, 0.011882951483130455, -0.026170004159212112, 0.016218705102801323, 0.04506790265440941, 0.03071506880223751, 0.022904733195900917, 0.008222978562116623, -0.00363605166785419, -0.017163598909974098, -0.028490379452705383, 0.025284912437200546, -0.02999742701649666, -0.009413068182766438, 0.0335138700902462, 0.010495510883629322, 0.004141391254961491, 0.0037915408611297607, 0.004350703209638596, -0.008187096565961838, -0.04109695181250572, -0.0014502344420179725, 0.0055497633293271065, 0.020644161850214005, 0.03356171399354935, 0.023323357105255127, -0.006680049002170563, -0.0033280637580901384, 0.01590772531926632, -0.01822810061275959, 0.0052328044548630714, -0.027820579707622528, 0.031097810715436935, -0.010740705765783787, 0.03746090084314346, 0.015202045440673828, -0.040355388075113297, -0.01760614477097988, -0.02389747090637684, -0.013156766071915627, 0.0059982892125844955, 0.0006294316262938082, -0.026098240166902542, -0.027605287730693817, 0.016996148973703384, 0.002061725128442049, 0.02389747090637684, 0.0034267394803464413, 0.020213576033711433, 0.020213576033711433, 0.01654164306819439, 0.020141812041401863, 0.014532245695590973, -0.011524130590260029, 0.04561809450387955, -0.0021663811057806015, 1.2614797242349596e-06, 0.03631267324090004, 0.03748482093214989, 0.02698333188891411, -0.0006593333673663437, 0.022737283259630203, -0.020991021767258644, -0.003393847495317459, -0.0353558175265789, 0.045761626213788986, 0.014400678686797619, 0.017199480906128883, -0.008946601301431656, 0.02552412636578083, 0.025141384452581406, 0.03451856970787048, 0.03638443723320961, 0.0014988248003646731, 0.021756507456302643, 0.010417766869068146, 0.02251003123819828, -0.011039722710847855, -0.012774024158716202, -0.023323357105255127, -0.024064920842647552, 0.034949153661727905, -0.02362237498164177, 0.012498927302658558, -0.009042286314070225, 0.002582015236839652, -0.04521143063902855, 0.0007456746534444392, -0.004619819112122059, -0.040498919785022736, -0.02475864067673683, 0.010435707867145538, 0.009586498141288757, 0.008330625481903553, -0.03217427432537079, -0.0008073470089584589, -0.009610419161617756, 0.005032462999224663, -0.04368046298623085, 0.03322681412100792, -0.0009553606505505741, -0.008701406419277191, 0.007248181849718094, 0.005184961948543787, 0.0037646291311830282, -0.004219135735183954, 0.027366073802113533, -0.02389747090637684, 0.010112768970429897, 0.01532165240496397, 0.012929513119161129, -0.032365646213293076, -0.025691576302051544, 0.010848351754248142, 0.008916699327528477, 0.015728315338492393, -0.03337034210562706, 7.134368206607178e-05, 0.014257149770855904, -0.015249887481331825, -0.0003193879674654454, -0.0019047409296035767, -0.01234343834221363, 0.015381455421447754, -0.01955573819577694, -0.015584787353873253, -0.019998284056782722, 0.013455783016979694, -0.010591196827590466, 0.008360526524484158, -0.012989316135644913, -0.013551468960940838, -0.01808457262814045, -0.0004728212661575526, -0.0019047409296035767, -0.0017477567307651043, 0.016852620989084244, 0.008294742554426193, -0.02607431821525097, -0.04568985849618912, 0.015261848457157612, 0.004518153145909309, 0.01401793584227562, 0.039374612271785736, -0.02320375107228756, -0.02839469350874424, 0.0018329767044633627, -0.028346849605441093, 0.026887645944952965, -0.0037975211162120104, -0.014747538603842258, 0.0015369495376944542, -0.0012386796297505498, -0.023048261180520058, -0.003926098812371492, -0.010435707867145538, -0.00769670819863677, -0.0058188787661492825, 0.019854756072163582, -0.005636478308588266, -0.0038214426022022963, 0.019663384184241295, 0.0193643681704998, 0.0035911991726607084, -0.022749245166778564, -0.0022381453309208155, 0.027653129771351814, -0.025404518470168114, 0.001408371957950294, 0.0003694733895827085, 0.007403671275824308, -0.027222545817494392, -0.0036659534089267254, 0.0037197766359895468, 0.008539937436580658, -0.01892182230949402, 0.00862964242696762, 0.02347884699702263, -0.00035807336098514497, 0.02249806933104992, 0.01639811508357525, 0.0274856798350811, 0.021648859605193138, -0.004533104132860899, 0.03609738126397133, -0.010806488804519176, -0.0021977778524160385, 0.08176331967115402, -0.026050396263599396, 0.018981624394655228, -0.01160187553614378, -0.020943179726600647, 0.05635880306363106, 0.014316953718662262, 0.018491236492991447, 0.01949593424797058, 0.007547199260443449, -0.0020946168806403875, 0.011799227446317673, -0.0015982480254024267, -0.018610844388604164, 0.01212216541171074, 0.0018299865769222379, 0.00038423738442361355, 0.01739085279405117, 0.04159930348396301, -0.03958990424871445, 0.004823151044547558, -0.004174283239990473, -0.015034595504403114, -0.001185604021884501, -0.023024341091513634, 0.020428869873285294, 0.0028481408953666687, 0.00476633757352829, -0.00046908354852348566, 0.0019122163066640496, 0.006817596964538097, 0.014005975797772408, -0.0022456208243966103, -0.0010577740613371134, 0.04384791478514671, -0.004350703209638596, 0.015273809432983398, -0.021983759477734566, -0.040068332105875015, -0.004826141055673361, 0.0032951717730611563, -0.020416907966136932, 0.007487395778298378, 0.0012521353783085942, 0.0013777227140963078, -0.02545236237347126, -0.016218705102801323, 0.003704825649037957, -0.01654164306819439, -0.02026141993701458, 0.02432805672287941, -0.0197710320353508, -0.013515586964786053, -9.886263433145359e-05, -0.004814180079847574, 0.02144552953541279, 0.016505761072039604, 0.016565565019845963, -0.026528824120759964, -0.01779751665890217, 0.00632720859721303, 0.01083041075617075, -0.04162322357296944, -0.02461511269211769, 0.028873121365904808, 0.03195898234844208, -0.014604010619223118, 0.02657666802406311, -0.0019705246668308973, -0.0014143523294478655, -0.02096710167825222, -0.024375898763537407, -0.01048355083912611, 0.016075175255537033, 0.024375898763537407, -0.006076033692806959, 0.0021065776236355305, 0.026098240166902542, -0.004745406098663807, 0.04226909950375557, 0.0171157568693161, 0.025069620460271835, -0.012152067385613918, 0.008175135590136051, 0.017486538738012314, -0.012522849254310131, -0.036288753151893616, -0.012774024158716202, 0.0282511655241251, 0.016027333214879036, -0.006668088026344776, 0.033418186008930206, 0.008151214569807053, 0.03765227273106575, 0.027509601786732674, -0.01682869903743267, -0.031648002564907074, 0.015225966461002827, -0.03203074634075165, 0.013563429936766624, 0.0208953358232975, -0.022617677226662636, 0.023048261180520058, -0.030523696914315224, 0.020572397857904434, 0.0073857298120856285, -0.01717556081712246, 0.06133444979786873, -0.011332759633660316, -0.017271244898438454, 0.014926949515938759, -0.01135668158531189, -0.017354970797896385, -0.008456212468445301, -0.05559331551194191, 0.01661340706050396, -0.03377700597047806, 0.005178981460630894, -0.024232370778918266, -0.01971122808754444, -0.026696274057030678, 0.022665519267320633, -0.05334470421075821, 0.006303287111222744, 0.007403671275824308, 0.0017492518527433276, -0.020297301933169365, 0.033418186008930206, -0.010692862793803215, 0.027509601786732674, 0.019794952124357224, 0.028059793636202812, 0.02923194132745266, -0.02040494792163372, 0.010579235851764679, -0.028729593381285667, 0.02882527746260166, -0.010752665810286999, 0.013491665944457054, -0.005519861355423927, -0.003950019832700491, -0.01737889274954796, -0.005170010961592197, 0.013778721913695335, -0.012319517321884632, 0.035164445638656616, 0.011655698530375957, 0.011888932436704636, 0.04387183487415314, -0.0387287363409996, -0.022868851199746132, -0.051430992782115936, -0.003450660966336727, 0.0060820141807198524, 0.0274856798350811, -0.006494658067822456, 0.004362664185464382, -0.023442965000867844, 0.008916699327528477, -0.03468601778149605, -0.009054247289896011, -0.013659114949405193, -0.021768467500805855, -0.00953267514705658, -0.004260998219251633, -0.011882951483130455, -0.003860314842313528, -0.021923957392573357, -0.029184099286794662, 0.012558731250464916, 0.003875265596434474, 0.00405168579891324, -0.037126000970602036, -0.006781714968383312, 0.021852191537618637, 0.009448950178921223, 0.004269968718290329, -0.028155479580163956, -0.01654164306819439, -0.03435112163424492, 0.03078683279454708, -0.01539341639727354, -0.015297730453312397, 0.00229495856910944, 0.002718068193644285, -0.0007834256393834949, 0.019053390249609947, -0.010603157803416252, -0.006620245520025492, -0.018634764477610588, -0.025882946327328682, 0.06903713941574097, -0.027031173929572105, -0.032437410205602646, -0.028992727398872375, -0.017713790759444237, 0.01718752086162567, 0.03889618441462517, 0.008426310494542122, 0.0008133273804560304, -0.04626397415995598, -0.008079450577497482, 0.0020826563704758883, 0.01472361758351326, -0.02300041913986206, -0.005328490398824215, -0.014604010619223118, 0.0033519852440804243, -0.005196922458708286, -0.03868089243769646, 0.01851515844464302, 0.014556167647242546, -0.003522425191476941, 0.014460481703281403, 0.011410504579544067, -0.03344210609793663, 0.030260561034083366, 0.010417766869068146, 0.006697990000247955, -0.027246465906500816, -0.0031935060396790504, 0.0012820371193811297, 0.008563858456909657, 0.0193643681704998, -0.002303929068148136, 0.00736180879175663, -0.04461339861154556, -0.01851515844464302, 0.009054247289896011, -0.026457060128450394, 0.038178544491529465, 0.017091834917664528, 0.015883805230259895, 0.016182823106646538, -0.030810754746198654, 0.01737889274954796, 0.031002124771475792, -0.02062023989856243, 0.010955997742712498, 0.009975221008062363, 0.017067912966012955, 0.06195640563964844, 0.0021903025917708874, 0.025284912437200546, 0.008581799454987049, -0.019184956327080727, -0.018981624394655228, 0.005175991449505091, -0.005648438818752766, -0.017893202602863312, -0.006267405115067959, 0.04234086349606514, -0.010573255829513073, -0.03372916206717491, -0.005738144274801016, 0.023024341091513634], [0.035867247730493546, -0.01379424799233675, -0.013023619540035725, -0.014256625436246395, -0.016447411850094795, 0.011383282020688057, 0.009076901711523533, 0.03414984792470932, 0.04326527938246727, -0.004326527938246727, -0.02010239288210869, 0.004100843798369169, -0.015555684454739094, 0.010673203505575657, -0.026267418637871742, 0.012561243027448654, 0.05632192641496658, 0.004106348380446434, 0.0014174057869240642, 0.016073105856776237, -0.012814449146389961, -0.0020738160237669945, 0.05385591462254524, -0.03254253789782524, 0.01759234443306923, 0.027346298098564148, 0.05266694724559784, 0.05988883599638939, 0.05042111501097679, -0.03256455436348915, 0.028667375445365906, -0.03756263107061386, 0.02659768797457218, -0.035294778645038605, 0.08992132544517517, -0.013596086762845516, -0.029636166989803314, 0.016579519957304, 0.02318490482866764, 0.00682006124407053, 0.03544890508055687, -0.030494866892695427, -0.02948204055428505, -0.020762931555509567, -0.030560920014977455, -0.0002289523254148662, -0.04035890847444534, -0.03566908463835716, -0.06235484778881073, 0.053767845034599304, 0.015852926298975945, 0.002743987599387765, -0.017295103520154953, 0.00804205797612667, -0.0006398967816494405, 0.008509939536452293, -0.036505766212940216, 0.026267418637871742, 0.03012056089937687, 0.037782810628414154, -0.011339246295392513, -0.027654550969600677, -0.011702542193233967, 0.06596579402685165, 0.027082083746790886, -0.022050980478525162, 0.019342772662639618, 0.008757641538977623, -0.08446086943149567, -0.00019265709852334112, 0.008251228369772434, -0.004813675303012133, 0.019430844113230705, -0.04077725112438202, -0.018219856545329094, 0.06636211276054382, -0.018561135977506638, 0.030252669006586075, -0.000675331917591393, 0.009858539327979088, -0.005578799173235893, 0.0021577593870460987, 0.025496790185570717, -0.019662033766508102, -0.05610174685716629, 0.0004093963361810893, -0.02256840281188488, 0.005779712926596403, -0.01082182489335537, 0.004472396802157164, 0.008564984425902367, -0.002399957040324807, 0.016447411850094795, 0.004791657440364361, 0.02787473052740097, 0.007078772410750389, -0.010805310681462288, 0.0012013546656817198, -0.08424068987369537, 0.040601108223199844, 0.005966865457594395, -0.00025406654458492994, -0.03287280723452568, -0.059360403567552567, 0.05288712680339813, -0.000687717052642256, -0.07922060042619705, 0.014730011112987995, -0.015885954722762108, -0.0008160404395312071, 0.015996044501662254, -0.021654658019542694, 0.04720649495720863, 0.014895145781338215, -0.015952007845044136, -0.0034568188712000847, 0.050597257912158966, -0.035955317318439484, -0.008724614046514034, 0.0038999300450086594, 0.04681016877293587, -0.021962909027934074, -0.03566908463835716, -0.0797930657863617, 0.012308035977184772, 0.02884352020919323, -0.023339031264185905, -0.04720649495720863, -0.027456387877464294, -0.015907971188426018, 0.017008868977427483, -0.025210557505488396, -0.010128258727490902, -0.02730226330459118, -0.005609073676168919, -0.036461733281612396, -0.031177423894405365, -0.02022349089384079, 0.010293393395841122, 0.00918699149042368, 0.002053174190223217, -0.0235592108219862, 0.03952222689986229, -0.004541202913969755, -0.040535055100917816, -0.003993506543338299, 0.007998022250831127, 0.01697584241628647, -0.046545956283807755, -0.002505918499082327, -0.010012664832174778, -0.08230311423540115, -0.004753125831484795, 0.002292619552463293, -0.0019857443403452635, -0.03412782773375511, -0.03381957858800888, 0.024263786152005196, 0.05478066951036453, -0.0038558943197131157, -0.03767272084951401, -0.04363958537578583, 0.010524582117795944, -0.0020628070924431086, 0.007634725421667099, -0.05323941260576248, -0.033643435686826706, 0.02254638448357582, -0.054120130836963654, -0.03130953013896942, -0.0038421330973505974, -0.0020683116745203733, -0.011218147352337837, 0.018814342096447945, 0.022017953917384148, 0.01911158487200737, -0.00565310986712575, 0.023030780255794525, -0.017845552414655685, -0.05768704041838646, 0.01759234443306923, -0.04145980626344681, 0.006220072042196989, 0.0022499596234411, -0.0078053646720945835, 0.046501919627189636, 0.01941983588039875, 0.027148136869072914, 0.023625263944268227, 0.010419996455311775, -0.011790614575147629, -0.012583260424435139, 0.007717292755842209, 0.03580119460821152, 0.02943800389766693, -0.001082319999113679, -0.027962801977992058, 0.027412353083491325, 0.03602137416601181, 0.011003472842276096, 0.01972808688879013, -0.023294994607567787, 0.03417186439037323, 0.022766564041376114, -0.05918426066637039, 0.062222737818956375, -0.023977551609277725, 0.04632577672600746, 0.020828984677791595, -0.008719109930098057, -0.01103649940341711, 6.854808452771977e-05, 0.00804205797612667, 0.020564768463373184, -0.016117142513394356, -0.00419166823849082, -0.02477019838988781, 0.0006498736911453307, -0.019617997109889984, 0.03408379107713699, -0.03729841485619545, -0.04518084228038788, -0.022612439468503, -0.034281954169273376, 0.015808891505002975, 0.0144437775015831, 0.0021109713707119226, -0.01977212354540825, -0.0051164221949875355, -0.10031379759311676, -0.058435648679733276, 0.051918335258960724, 0.01553366705775261, 0.0038944256957620382, 0.009544783271849155, -0.002999946242198348, -0.014245616272091866, -0.04064514487981796, -0.007210880052298307, -0.038751598447561264, 0.002024275716394186, 0.012957566417753696, -0.0025884858332574368, 0.04379371181130409, 0.006308143958449364, -0.025606879964470863, 0.007706284057348967, -0.012737386859953403, -0.03073706477880478, 0.014058463275432587, 0.029063699766993523, 0.030538901686668396, -0.02507844939827919, 0.004010019823908806, -0.005300822667777538, -0.05997690558433533, 0.013684158213436604, 0.020377617329359055, 0.05729071795940399, -0.037474557757377625, -0.05271098390221596, 0.02915177121758461, -0.050597257912158966, -0.007486104499548674, -0.09705514460802078, 0.010442014783620834, 0.007981508038938046, -0.04610559716820717, -0.0010052572470158339, 0.0148621192201972, -0.00775031978264451, 0.015555684454739094, 0.02213905192911625, -0.016854744404554367, -0.000515013700351119, 0.012241982854902744, 0.026773832738399506, -0.010568617843091488, -0.024836251512169838, 0.014091490767896175, 0.008476912043988705, -0.04020478576421738, 0.022293178364634514, -0.024263786152005196, 0.005331097170710564, -0.032410427927970886, -0.00883470382541418, 0.011124570854008198, 0.0038228672929108143, -0.003946718294173479, 0.028359124436974525, 0.0052925655618309975, -0.004910003859549761, 0.023317012935876846, 0.0012722249375656247, -0.026179347187280655, -0.05821546912193298, 0.004370563663542271, 0.0002974144008476287, -0.042824920266866684, -0.05649806931614876, 0.045312948524951935, 0.017559317871928215, 0.013772230595350266, -0.01859416253864765, 0.003778831334784627, -0.004279739689081907, -0.006115486845374107, -0.036880072206258774, -0.027984820306301117, -0.027104102075099945, 0.027984820306301117, -0.07287942618131638, 0.014939181506633759, 0.03100127913057804, -0.0161061342805624, -0.03100127913057804, -0.027038047090172768, 0.014586894772946835, -0.03861949220299721, 0.0028650863096117973, 0.0062696123495697975, -0.004458635579794645, -0.024550018832087517, -0.013265817426145077, 0.0004262538277544081, 0.009864043444395065, 0.009621845558285713, -0.03073706477880478, 0.015423577278852463, 0.015467613004148006, -0.013585077598690987, -0.037782810628414154, 0.057554930448532104, 0.031507693231105804, 0.005017341114580631, 0.02213905192911625, 0.01487312838435173, 0.015016244724392891, -0.027148136869072914, 0.007645734585821629, 0.001130484277382493, -0.0013726818142458797, 0.02209501713514328, -0.015577702783048153, -0.027984820306301117, -0.044652409851551056, -0.015060280449688435, -0.022964725270867348, 0.01110805757343769, 0.0019857443403452635, -0.017581336200237274, -0.008570488542318344, 0.03472231328487396, -0.032718680799007416, -0.04667806252837181, 0.02287665382027626, 0.015764854848384857, 0.020972101017832756, -0.02377939037978649, 0.04892389476299286, -0.00233252695761621, -0.016568509861826897, 0.03787088021636009, -0.04989268258213997, -0.012902521528303623, -0.027236208319664, 0.054648563265800476, 0.020311562344431877, -0.011801623739302158, 0.010067709721624851, 0.0027866472955793142, -0.05275501683354378, 0.003566908650100231, 0.024572037160396576, -0.006203558761626482, -0.014487814158201218, 0.017207030206918716, -0.03639567643404007, -0.0153355048969388, 0.010045691393315792, -0.06979691237211227, -0.010887878015637398, 0.0362415537238121, 0.044035907834768295, 0.011064021848142147, 0.016282277181744576, 0.020399633795022964, 0.025496790185570717, -0.04132770001888275, -0.019452862441539764, -0.07455278933048248, -0.009792485274374485, -0.009148459881544113, 0.01820884831249714, 0.047822996973991394, 0.05077340081334114, 0.04236254468560219, -0.03282877057790756, -0.036219533532857895, -0.020586786791682243, -0.034039758145809174, 0.005664118565618992, -0.044035907834768295, -0.023669300600886345, 0.01927671954035759, -0.0037237864453345537, 0.029966436326503754, -0.015291469171643257, 0.014465795829892159, 0.01096494123339653, -0.015126334503293037, 0.019805150106549263, 0.031155405566096306, 0.08296365290880203, -0.026729796081781387, -0.020729903131723404, 0.01332086231559515, 0.01016128621995449, -0.018252883106470108, 0.05306326970458031, -0.015896962955594063, -0.02351517416536808, -0.01899048499763012, 0.02979029156267643, 0.027192173525691032, -0.014014427550137043, -0.012726377695798874, 0.02981230989098549, 0.039962586015462875, 0.004359554965049028, -0.0297242384403944, 0.03414984792470932, -0.033159039914608, -0.005556781310588121, -0.0310232974588871, -0.0357571579515934, 0.04064514487981796, 0.05169815570116043, 0.040006622672080994, 0.038355275988578796, 0.026443563401699066, 0.020685868337750435, 0.00942368432879448, -0.0300765261054039, -0.01911158487200737, -0.034920476377010345, 0.02071889489889145, -0.0036797504872083664, 0.024814235046505928, 0.0201244093477726, 0.0684318020939827, -0.040601108223199844, 0.0022403267212212086, 0.0013410310493782163, -0.025320647284388542, 0.0235592108219862, 0.023735353723168373, -0.003654980333521962, 0.009451206773519516, 0.02857930399477482, 0.024638090282678604, 0.017493264749646187, 0.004103596322238445, -0.01861618086695671, 0.07605001330375671, 0.006456764880567789, 0.02730226330459118, -0.02057577855885029, -0.03384159505367279, -0.0059723700396716595, 0.01970606856048107, 0.026839885860681534, 0.04209832847118378, 0.029702220112085342, -0.010309906676411629, -0.012968574650585651, 0.04020478576421738, 0.019662033766508102, 0.06900426745414734, -0.024858269840478897, -0.026795849204063416, -0.017988668754696846, -0.0071283127181231976, 0.00751362694427371, 0.0044971671886742115, 0.02789674699306488, 0.024616071954369545, -0.025496790185570717, -0.0367039293050766, -0.028138944879174232, -0.010249357670545578, 0.021225307136774063, -0.007607202976942062, -0.03569110482931137, 0.0014380476204678416, 0.00964936800301075, 0.012032811529934406, -0.021159254014492035, 0.02443992905318737, 0.057510897517204285, 0.0006945976638235152, 0.018241874873638153, 0.02410965971648693, 0.04636980965733528, -0.0029944416601210833, -0.04518084228038788, -0.010942922905087471, -0.035933300852775574, 0.01534651406109333, 0.012264000251889229, 0.012726377695798874, -0.00026232327218167484, -0.022458313032984734, -0.02946002222597599, -0.03602137416601181, -0.03448011726140976, 0.02728024497628212, -0.033731505274772644, 0.012484179809689522, -0.009280567988753319, -0.030957244336605072, 0.0032586571760475636, -0.01301261130720377, 0.049672503024339676, 0.005421921145170927, 0.004268730990588665, -0.07490508258342743, -0.010067709721624851, -0.020564768463373184, -0.05337152257561684, -0.015225415118038654, -0.05042111501097679, -0.018407009541988373, 0.015170370228588581, 0.016667591407895088, 0.008724614046514034, 0.0019265710143372416, -0.008058571256697178, -0.01040898822247982, 0.023339031264185905, 0.023889480158686638, 0.0269940122961998, -0.035272762179374695, 0.02666374295949936, 0.005146696697920561, -0.004043046850711107, 0.0039797453209757805, -0.005862280260771513, -0.033070966601371765, -0.02017945423722267, 0.012605278752744198, -0.001012137858197093, 0.019331764429807663, 0.009919088333845139, 0.012583260424435139, 0.024219749495387077, -0.014509831555187702, -0.0471184216439724, 0.017504272982478142, 0.0322122685611248, 0.00891727115958929, 0.00011955061199842021, 0.009847530163824558, -0.0076677524484694, 0.08005727827548981, -0.01711895875632763, -0.0126713328063488, -0.013419942930340767, 0.0381350964307785, -0.04848353564739227, 0.02659768797457218, -0.002035284647718072, 0.02631145529448986, -0.013717185705900192, 0.0634557455778122, 0.015720820054411888, -0.04020478576421738, -0.004282492212951183, 0.014597903937101364, 0.0178785789757967, -0.02347113937139511, -0.0071668438613414764, -0.019375799223780632, -0.050949547439813614, 0.02606925740838051, -0.02242528647184372, 0.00973193533718586, -0.0388396717607975, -0.023933516815304756, -0.003082513576373458, -0.005042111501097679, 0.003239391604438424, -0.0019623502157628536, 0.012043820694088936, 0.0011077782837674022, 0.017107950523495674, -0.01394837349653244, -0.012803439982235432, 0.02721419185400009, 0.021610621362924576, -0.041239626705646515, 0.01315572764724493, -0.003844885155558586, -0.02240326814353466, -0.036814019083976746, -0.01577586494386196, 0.02067485824227333, 0.014829091727733612, 0.029856346547603607, 0.007689770311117172, 0.006704466883093119, 0.034612223505973816, 0.0067264847457408905, -0.05403205752372742, 0.009632854722440243, -0.021654658019542694, -0.019001495093107224, -0.03503056615591049, -0.008752136491239071, -0.011867676861584187, 0.012968574650585651, 0.01315572764724493, 0.0179996769875288, -0.03443608060479164, 0.008119120262563229, 0.01193373091518879, -0.02246932126581669, 0.015918981283903122, 0.03864150866866112, -0.009363135322928429, 0.0169318076223135, 0.0625309869647026, -0.027522442862391472, -0.031111368909478188, 0.008642046712338924, 0.003506359178572893, 0.013541041873395443, 0.041856132447719574, 0.03071504645049572, -0.020685868337750435, -0.00908240582793951, 0.02692795731127262, -0.05015689879655838, 0.1041889563202858, 0.04390380159020424, -0.033665452152490616, 0.061914488673210144, -0.00933010783046484, -0.02479221671819687, 0.031441640108823776, 0.00776132894679904, 0.02417571283876896, -0.006291630212217569, -0.00950625166296959, 0.005686136428266764, 0.011008976958692074, 0.016711628064513206, -0.024616071954369545, -0.004067817237228155, -0.046501919627189636, -0.006963178049772978, -0.024197731167078018, -0.023581229150295258, 0.04725052788853645, 0.018715260550379753, 0.022161070257425308, -0.0071668438613414764, -0.02022349089384079, -0.00918699149042368, 0.0021825297735631466, -0.028469214215874672, 0.00011353007721481845, 0.005377885419875383, 0.012010794132947922, 0.03514065593481064, 0.01944185420870781, -0.009847530163824558, 0.018583152443170547, 0.046854205429553986, -0.05055322125554085, -0.022700510919094086, -0.02543073706328869, -0.008796172216534615, 0.002684814389795065, -0.012704359367489815, -0.009853034280240536, -0.016733644530177116, 0.01411350816488266, -0.016920797526836395, -0.022172080352902412, 0.0014057087246328592, -0.004967800807207823, -0.04198823869228363, 0.006319152656942606, -0.02479221671819687, -0.022744545713067055, -0.003690759651362896, -0.03375352546572685, 0.020498715341091156, -0.029834328219294548, 0.05050918832421303, 0.0005618018331006169, -0.018649207428097725, -0.002552706515416503, -0.022227125242352486, -0.010150277055799961, 0.03732043132185936, 0.009654873050749302, -0.011328237131237984, 0.0085264528170228, -0.03881765156984329, -0.011878686025738716, -0.021863829344511032, 0.03223428502678871, 0.03320307657122612, 0.0024192226119339466, -0.009297081269323826, 0.03514065593481064, 0.018440036103129387, -0.00044551954488269985, -0.017559317871928215, -0.036858055740594864, 0.009792485274374485, 0.013838283717632294, -0.009643863886594772, 0.019045529887080193, -0.01866021566092968, 0.0030494865495711565, 0.03141961991786957, 0.04355151206254959, -0.014179562218487263, -0.020465688779950142, 0.034061774611473083, -0.025188539177179337, 0.0010719990823417902, -0.016227232292294502, 0.033643435686826706, -0.017085932195186615, -0.030252669006586075, 0.049364253878593445, -0.051522012799978256, 0.0011635113041847944, 0.0033549857325851917, -0.008251228369772434, -0.021731721237301826, -0.009605332277715206, 0.02912975288927555, -0.023669300600886345, -0.003261409467086196, 0.01282545831054449, 0.00587879354134202, -0.024263786152005196, -0.017559317871928215, 0.003421039553359151, 0.013849292881786823, -0.023096833378076553, -0.0006674192263744771, -0.018219856545329094, -0.039324067533016205, 0.0016747405752539635, -0.03073706477880478, -0.010766780003905296, -0.0012515831040218472, 0.002166016260161996, -0.03359939903020859, -0.06213466823101044, -0.02254638448357582, -0.025805043056607246, 0.031111368909478188, -0.011069525964558125, 0.0011580067221075296, 0.00439258199185133, -0.014179562218487263, -0.020047347992658615, -0.02152254991233349, -0.002743987599387765, -0.0007148954318836331, -0.002135741524398327, -0.03344527259469032, 0.006423738319426775, -0.03665989264845848, -0.005344858393073082, 0.03263060748577118, 0.0004885233356617391, -0.013750212267041206, -0.017328130081295967, 0.03040679544210434, 0.011735569685697556, -0.014003418385982513, -0.03725437819957733, -0.053415555506944656, -0.01300160214304924, -0.010232844389975071, 0.0036990162916481495, 0.0010974573669955134, 0.0057136588729918, -0.03760666400194168, 0.01783454231917858, -0.025188539177179337, -0.017537299543619156, 0.009214513935148716, -0.019166629761457443, -0.0407332144677639, 0.0018784067360684276, -0.002351792762055993, -0.03690209239721298, -0.001673364546149969, -0.0014008922735229135, -0.032718680799007416, 0.004698080942034721, 0.022678492590785027, -0.01913360133767128, -0.004321023356169462, 0.03985249623656273, -0.011746578849852085, -0.033159039914608, 0.005190732888877392, -0.007618212141096592, -0.018396001309156418, 0.011493371799588203, -0.04667806252837181, 0.02879948355257511, -0.007199870888143778, 0.007992517203092575, -0.011064021848142147, 0.005306326784193516, 0.005529258865863085, -0.004819179885089397, -0.04207631200551987, 0.009346621111035347, 0.026487598195672035, 0.02728024497628212, 0.015082298777997494, -0.0204877071082592, 0.0025554588064551353, -0.021753739565610886, 0.027346298098564148, 0.03252051770687103, -0.009478729218244553, 0.004034790210425854, -0.015412568114697933, -0.022722529247403145, -0.018407009541988373, 0.007937472313642502, 0.013926356099545956, 0.05037707835435867, 0.014939181506633759, -0.05306326970458031, -0.015885954722762108, 0.032806750386953354, -0.010210826061666012, -0.05086147412657738, -0.014014427550137043, -0.02886553853750229, -0.010678707621991634, 0.019551943987607956, 0.0053531150333583355, -0.03100127913057804, 0.031771909445524216, -0.0007582433172501624, -0.03571312129497528, 0.0031760898418724537, 0.02008037455379963, -0.012098865583539009, 0.008713604882359505, 0.040579088032245636, -0.020047347992658615, -0.03439204394817352, -0.003272418398410082, -0.0009557168232277036, -0.018979476764798164, 0.010926409624516964, -0.021489523351192474, -0.03602137416601181, -0.008768649771809578, -0.00674850307404995, 0.039302047342061996, 0.003869655542075634, -5.3797775763086975e-05, -0.015401558950543404, -0.0007816373836249113, 0.009808998554944992, -0.03846536576747894, 0.00010570338054094464, -0.008174165152013302, -0.001237821881659329, 0.02917378954589367, 0.003349481150507927, 0.01631530374288559, -0.004860463552176952, -0.0007988389115780592, 0.04575330764055252, -0.052799053490161896, -0.012880503199994564, -0.006594377104192972, -0.003952222876250744, 0.013199763372540474, 0.03346728906035423, -0.0035916788037866354, -0.03448011726140976, -0.025628898292779922, -0.020025329664349556, 0.00018543245096225291, 0.02283261902630329, 0.0015082298777997494, -0.00021089072106406093, 0.0033714992459863424, 0.013871311210095882, 0.02207299880683422, 0.03298289701342583, -0.011625479906797409, -0.03727639466524124, 0.016073105856776237, 0.04865967854857445, 0.033643435686826706, -0.05011286213994026, 0.018109766766428947, 0.02631145529448986, 0.006120991427451372, 0.03009854257106781, 0.021918872371315956, 0.0025251840706914663, -0.0016981346998363733, 0.017559317871928215, -0.0035751652903854847, 0.009544783271849155, -0.037122271955013275, 0.015974026173353195, 0.015720820054411888, -0.04791106656193733, 0.044013891369104385, 0.018098758533596992, 0.0026861904188990593, 0.007331978529691696, 0.00797049980610609, 0.026179347187280655, 0.0004985002451576293, 0.023339031264185905, 0.02316288836300373, -0.005232016555964947, 0.020564768463373184, 0.0007947105332277715, -0.017008868977427483, 0.005757695063948631, 0.010183303616940975, 0.006682449020445347, -0.005064129363745451, -0.004177907016128302, -0.01569880172610283, 0.00580723537132144, -0.018737278878688812, 0.009930097497999668, -0.037782810628414154, -0.007018222939223051, -0.008669569157063961, -0.022370241582393646, 0.0026683008763939142, 0.005314583890140057, -0.027412353083491325, 0.027698585763573647, -0.004651292692869902, 0.030494866892695427, -0.03767272084951401, -0.013078664429485798, 0.017801515758037567, -0.021753739565610886, 0.009792485274374485, 0.018902413547039032, -0.013375907205045223, -2.061495479210862e-06, 0.02081797644495964, 0.02382342703640461, 0.02221611514687538, -0.03580119460821152, 0.012275009416043758, -0.013364898040890694, 0.04295703023672104, -0.06147412955760956, -0.002732978668063879, 0.0006684513064101338, 0.03448011726140976, 0.02441791072487831, 0.021775756031274796, -0.023008761927485466, 0.007607202976942062, 0.03408379107713699, 0.00040733214700594544, -0.0329168401658535, 0.007882427424192429, 0.002964167157188058, 0.003462323220446706, 0.0010871364502236247, -0.021940890699625015, -0.006363188847899437, 0.0409754142165184, 0.004995323251932859, -0.021984927356243134, 0.007904445752501488, 0.0013616728829219937, -0.027346298098564148, 0.002563715446740389, -0.03617549687623978, 0.011493371799588203, -0.007018222939223051, -0.023933516815304756, 0.013430952094495296, 0.025606879964470863, -0.004989818669855595, 0.01736115664243698, -0.006087964400649071, 0.00973193533718586, -0.00650080107152462, -0.027984820306301117, 0.004918260499835014, -0.00503935944288969, 0.02316288836300373, -0.010469537228345871, 0.012407117523252964, 0.010051196441054344, -0.04487258940935135, 0.0021894103847444057, 0.010359447449445724, 0.0222601518034935, 0.005344858393073082, -0.03699016198515892, 0.02479221671819687, -0.003649475984275341, 0.01103649940341711, -0.013508014380931854, -0.008851217105984688, -0.005746685899794102, -0.008944793604314327, 0.02725822664797306, 0.019375799223780632, 0.010045691393315792, -0.01268234197050333, -0.003052238840609789, -0.0169318076223135, -0.025584863498806953, -0.0031155406031757593, -0.000844938971567899, -0.020091382786631584, 0.009908079169690609, 0.005763199646025896, 0.013981400988996029, 0.04176805913448334, 0.031463656574487686, -0.018109766766428947, 0.01300160214304924, 0.01346397865563631, 0.007365005556493998, -0.041856132447719574, -0.014366715215146542, -0.0114273177459836, 0.02038862556219101, 0.009665882214903831, -0.010144772008061409, 0.0055732945911586285, -0.01299059297889471, -0.01757032796740532, -0.0035421382635831833, -0.0012680965010076761, 0.021236317232251167, 0.014168553054332733, -0.006594377104192972, -0.006065946538001299, 0.010111745446920395, 0.01428965199738741, -0.01617218740284443, 0.04137173667550087, 0.032432448118925095, 0.06460067629814148, -0.032476481050252914, 0.004439369775354862, -0.025474773719906807, -0.022227125242352486, 0.026729796081781387, -0.002236198401078582, 0.01923268288373947, -0.012506198137998581, -0.0019004247151315212, 0.0092365313321352, 0.008647551760077477, -0.00934111699461937, 0.016799699515104294, 0.01915561966598034, -0.009098919108510017, 0.0005975810345262289, 0.005490727256983519, 0.0063356664031744, -0.005504488479346037, 0.02472616173326969, 0.022678492590785027, -0.011889695189893246, 0.01536853238940239, -0.0023160134442150593, -0.034303970634937286, -0.01812077686190605, -0.006132000125944614, 0.04799913987517357, 0.03414984792470932, 0.03285078704357147, -0.013111691921949387, -0.010524582117795944, -0.03692410886287689, -0.014179562218487263, 0.023052798584103584, 0.025805043056607246, 0.03252051770687103, 0.007799860090017319, 0.016018060967326164, 0.0007885179948061705, 0.0036797504872083664, 0.033973705023527145, 0.02816096320748329, -0.002695823321118951, 0.01991523988544941, 0.0012770413886755705, 0.04172402247786522, 0.0010630543110892177, 0.028425179421901703, -0.023008761927485466, 0.007194366306066513, 0.0058732894249260426, -0.0300765261054039, -0.008108112029731274, 0.040623124688863754, 0.015456603839993477, 0.01759234443306923, -0.021038156002759933, -0.017460238188505173, -0.042450614273548126, -0.03668191283941269, -0.00018852873472496867, 0.0008600763394497335, -0.01175758708268404, -0.0532834492623806, 0.010766780003905296, 0.04108550399541855, 0.014025436714291573, 0.00812462531030178, 0.015445594675838947, 0.021753739565610886, -0.011889695189893246, 0.04110752046108246, -0.01608411595225334, 0.05790721997618675, -0.0011917217634618282, -0.012407117523252964, 0.0144437775015831, 0.030891189351677895, 0.0336214154958725, -0.01600705273449421, -0.004001763183623552, 0.020135419443249702, -0.007315465249121189, 0.019673041999340057, 0.03604339063167572, 0.0310232974588871, -0.00544118694961071, -0.004827436525374651, -0.010453023947775364, -0.022326204925775528, -0.0447624996304512, -0.010298898443579674, 0.01470799371600151, 0.027478406205773354, -0.015071289613842964, -0.0038944256957620382, -0.0036026877351105213, -0.030186615884304047, -0.02853526920080185, 0.012363080866634846, 0.01192272175103426, -0.0006839326815679669, 0.033357199281454086, -0.011911713518202305, -0.015786873176693916, 0.004607256967574358, -0.006082459818571806, 0.027940783649683, 0.01678868941962719, -0.018561135977506638, -0.07058955729007721, -0.012275009416043758, -0.004766887053847313, 0.012649314478039742, 0.005361371673643589, 0.02668576128780842, 0.013045637868344784, 0.010122754611074924, -0.003445809707045555, 0.032102178782224655, -0.02512248605489731, 0.04099743068218231, -0.027104102075099945, 0.04223043471574783, 0.008509939536452293, -0.014333687722682953, -0.01761436276137829, 0.009638359770178795, -0.02034458890557289, 0.020597796887159348, -0.0030990270897746086, -0.01079980656504631, -0.014245616272091866, -0.006159522570669651, -0.00023927324218675494, 0.00036536043626256287, 0.018770305439829826, -0.013882320374250412, -0.010794302448630333, 0.0005886362632736564, -0.04954039677977562, 0.022810600697994232, -0.003316454356536269, 0.017724452540278435, 0.015907971188426018, 0.00041558887460269034, -0.02017945423722267, -0.0008132882067002356, 0.06332363933324814, 0.0033412245102226734, -0.0003400741843506694, -0.012131893076002598, 0.007579680532217026, 0.06904830038547516, -0.01979414001107216, -0.004516432993113995, 0.04932021722197533, -0.0005955168744549155, 0.017229048535227776, -0.054384347051382065, 0.010298898443579674, 0.03326912969350815, 0.02347113937139511, 0.012275009416043758, -0.007436564192175865, 0.008416363038122654, -0.025893114507198334, 0.01161447074264288, 0.012341063469648361, 0.008157651871442795, -0.007662247866392136, -0.0014504326973110437, -0.04419003427028656, 0.012120883911848068, 0.010150277055799961, -0.013541041873395443, 0.010034682229161263, -0.021544568240642548, 0.0041586412116885185, 0.028689393773674965, 0.002327022608369589, 0.037122271955013275, 0.018407009541988373, 0.00910442415624857, -0.008460398763418198, 0.02408764138817787, -0.03199208900332451, 0.03408379107713699, -0.00588980270549655, 0.003052238840609789, -0.017129968851804733, 0.037804827094078064, -0.00045446434523910284, 0.016832726076245308, -0.03569110482931137, -0.005347610451281071, 0.007998022250831127, -0.005408159922808409, -0.0014724506763741374, -0.01110805757343769, -0.010056700557470322, -0.0006701714592054486, -0.0060329195111989975, 0.03584522753953934, 0.03956626355648041, 0.020146427676081657, -0.03042881190776825, -0.006412729155272245, -0.00239170016720891, -0.007398032583296299, 0.005928334314376116, 0.008009030483663082, -0.0014834596076980233, -0.022480331361293793, -0.011416309513151646, -0.03881765156984329, -0.0001341719034826383, 0.013673149049282074, 0.014906154945492744, -0.05165411904454231, 0.00565310986712575, -0.016095124185085297, 0.00431001465767622, -0.008752136491239071, 0.018131785094738007, -0.0297242384403944, -0.019816158339381218, -0.006115486845374107, 0.026861904188990593, 0.0015990539686754346, 0.011207138188183308, 0.008163156919181347, 0.017845552414655685, -0.021280352026224136, 0.013871311210095882, -0.015786873176693916, -0.01970606856048107, 0.028711412101984024, -0.028359124436974525, 0.02567293494939804, -0.004722851328551769, 0.0008229210507124662, 0.032454464584589005, -0.007111798971891403, 0.025452755391597748, 0.014454786665737629, 0.0235592108219862, -0.026091275736689568, -0.005006332416087389, 0.015071289613842964, 0.027522442862391472, 0.0036329624708741903, -0.04020478576421738, 0.02886553853750229, 0.02347113937139511, 0.0054549481719732285, -0.01122365240007639, 0.007309960667043924, -0.04940829053521156, 0.005917325150221586, -0.003429296426475048, 0.014465795829892159, 0.004329279996454716, 0.009665882214903831, 0.017911605536937714, -0.015313487499952316, 0.0003725850547198206, -0.0235592108219862, -0.06349977850914001, 0.003184346714988351, 0.0006687953718937933, 0.014300661161541939, -0.013254808261990547, 0.003547642845660448, 0.021060172468423843, 0.002783895004540682, -0.03159576281905174, 0.0266417246311903, -0.0060934689827263355, -0.013684158213436604, 0.008064075373113155, 0.033665452152490616, 0.02382342703640461, -0.024263786152005196, 0.01728409342467785, -0.005187980365008116, -0.028755448758602142, 0.020069364458322525, 0.0054136645048856735, 0.007062258664518595, -0.0025568348355591297, 0.04416801407933235, 0.0010375961428508162, -0.04491662606596947, -0.028116926550865173, 0.03844334930181503, 0.00544118694961071, -0.0014063968556001782, 0.01144933607429266, 0.002386195817962289, -0.017504272982478142, 0.07684265822172165, -0.02721419185400009, 0.03820114955306053, 0.0001267752522835508, -0.01031541172415018, -0.005083395168185234, 0.02086201123893261, -0.02126934379339218, -0.02386746183037758, -0.018263893201947212, 0.015577702783048153, -0.014884136617183685, 0.01754830963909626, -0.02604723908007145, 0.0001887007529148832, 0.012539224699139595, 0.0003041229792870581, 0.03983047977089882, 0.0011139708803966641, -0.002803160808980465, 0.02197391726076603, -0.02244730480015278, 0.004637531470507383, -0.007420050445944071, 0.026091275736689568, -0.01301261130720377, 0.013353888876736164, -0.009445702657103539, 0.011135580018162727, 0.00973193533718586, -0.0423845611512661, -0.030208632349967957, -0.0012164919171482325, -0.03824518620967865, 0.021610621362924576, -0.023911498486995697, 0.005509993061423302, -0.0025430736131966114, 0.00527605228126049, -0.0015041014412418008, 0.0017118959221988916, -0.03227832168340683, 0.012737386859953403, 0.03353334590792656, -0.032102178782224655, -0.032740697264671326, -0.03844334930181503, -0.023625263944268227, -0.007838391698896885, 0.0490119643509388, -0.004648540634661913, -0.0008738375618122518, 0.011339246295392513, -0.008476912043988705, -0.009005343541502953, -0.0402488186955452, 0.010117249563336372, 0.011746578849852085, -0.016678599640727043, 0.036197517067193985, -0.006809052079916, -0.028425179421901703, -0.0006632908480241895, -0.005377885419875383, -0.014421760104596615, -0.003148567397147417, 0.011735569685697556, 0.00949524249881506, -0.01565476506948471, -0.010931914672255516, -0.008553975261747837, -0.024924324825406075, 0.026531634852290154, 0.008587001822888851, -0.019496899098157883, -0.01518137939274311, 0.02606925740838051, 0.021698694676160812, -0.007117303553968668, -0.015753846615552902, -0.01411350816488266, -0.02879948355257511, 0.008075084537267685, -0.008955802768468857, -0.00812462531030178, -0.03348930925130844, 0.00931909866631031, 0.020399633795022964, 0.0262894369661808, 0.008884244598448277, -0.004651292692869902, 0.032102178782224655, 0.02119228057563305, -0.034678276628255844, -0.0009378272225148976, 0.026729796081781387, 0.040535055100917816, 0.00276187714189291, -0.007546653971076012, -0.0074475728906691074, -0.009753953665494919, 0.012418125756084919, 0.021324388682842255, 0.01880333200097084, -0.03826720267534256, -0.005309079308062792, -0.047470707446336746, -0.010497059673070908, -0.02413167804479599, 0.00956680066883564, 0.009665882214903831, -0.029944417998194695, 0.020234499126672745, -0.028711412101984024, -0.010832833126187325, 0.008498930372297764, 0.03604339063167572, 0.05733475089073181, 0.014983218163251877, 0.00666593573987484, 0.00012694727047346532, 0.006467774044722319, -0.0016458421014249325, 0.0038118583615869284, -0.002618760336190462, -0.019684050232172012, -0.010612653568387032, 0.037452541291713715, 0.04139375314116478, -0.01470799371600151, 0.024197731167078018, 0.01672263629734516, 0.01711895875632763, -0.004343041218817234, -0.023383067920804024, 0.007574176415801048, 0.012021803297102451, -0.06107780337333679, -0.014509831555187702, -0.02882150188088417, 0.013221781700849533, 0.011559425853192806, 0.013056647032499313, -0.03161778301000595, -0.012341063469648361, -0.0028898564632982016, 0.013552051037549973, -0.010106241330504417, 0.009374143555760384, 0.03577917441725731, -0.03223428502678871, -0.006165027152746916, 0.011691533960402012, -0.044630393385887146, 0.0018123527988791466, -0.01551164872944355, -0.0010375961428508162, -0.00515770586207509, -0.015456603839993477, 0.02822701632976532, 0.00705675408244133], [0.041733790189027786, 0.025914041325449944, -0.0025595000479370356, 0.013899766840040684, -0.03419181704521179, 0.016095677390694618, -0.03685910254716873, 0.011427930556237698, 0.017555784434080124, 0.0432283915579319, -0.050310488790273666, 0.024948298931121826, -0.025270212441682816, 0.045619748532772064, 0.020085105672478676, 0.02816743589937687, 0.01653256081044674, 0.011071526445448399, -0.0015592686831951141, 0.013773300684988499, 0.039135489612817764, 0.06659011542797089, 0.017084412276744843, -0.013232946395874023, 0.029271138831973076, -0.04824104532599449, 0.01703842356801033, -0.016440585255622864, 0.09675801545381546, -0.06005987152457237, 0.022775383666157722, -0.03253626078367233, 0.004791337996721268, -0.015785260125994682, 0.03101866878569126, 0.00503564765676856, 0.0013623840641230345, 0.044722989201545715, 0.04709135368466377, 0.020453007891774178, -0.048608943819999695, -0.0024603393394500017, 0.06783178448677063, -0.011583139188587666, -0.01707291416823864, 0.05072437599301338, 0.040009256452322006, 0.030972681939601898, -0.03216836228966713, 0.0446770004928112, 0.011358949355781078, 0.04417113587260246, 0.015037961304187775, -0.024557404220104218, 0.023246757686138153, 0.030466817319393158, -0.0013437016168609262, 0.007754667196422815, 0.00985285360366106, -0.005826060194522142, -0.033846911042928696, -0.012014273554086685, 0.013255939818918705, 0.029271138831973076, -0.0145895816385746, -0.003288117004558444, 0.0009743632981553674, 0.03642221912741661, -0.05348363518714905, -0.01742931827902794, -0.0022821370512247086, 0.011876310221850872, -0.00089388492051512, -0.026281941682100296, 0.019981633871793747, -0.0033283561933785677, 0.015244905836880207, 0.012474149465560913, 0.03368595242500305, 0.029018206521868706, -0.035065583884716034, -0.018073145300149918, 0.012290199287235737, 0.015072451904416084, -0.025730090215802193, -0.002078066812828183, -0.057944439351558685, 0.015244905836880207, -0.03407684713602066, -0.020843902602791786, 0.025592127814888954, -0.003141531255096197, 0.016877466812729836, 0.04534382373094559, 0.0324212945997715, 0.011106017045676708, -0.021418748423457146, 0.007576465141028166, -0.007674188818782568, 0.04750524088740349, 0.03306512162089348, 0.018073145300149918, -0.0017058543162420392, 0.0017202255548909307, 0.03980230912566185, -0.0385376513004303, -0.03796280547976494, 0.01170960534363985, 0.016739504411816597, 0.04741326719522476, 0.006363540887832642, -0.008519211784005165, 0.01210624910891056, 0.057760488241910934, -0.046125613152980804, -0.013911264017224312, 0.02345370128750801, -0.02193610928952694, 0.011037035845220089, -0.02179814502596855, 0.01462407223880291, -0.010818594135344028, 0.010416202247142792, -0.10531171411275864, -0.0032248839270323515, 0.030742743983864784, -0.016233639791607857, 0.023396216332912445, -0.049942586570978165, 0.00700736790895462, -0.0007354430854320526, -0.01959073916077614, 0.07472992688417435, -0.033777929842472076, 0.00790412724018097, 0.003943440970033407, 0.01106002926826477, -0.026534873992204666, 0.03039783611893654, -0.019855167716741562, 0.03212237358093262, 0.023189272731542587, 0.036836106330156326, -0.00824903417378664, -0.03929644823074341, 0.03876758739352226, 0.037801846861839294, 0.036399222910404205, 0.0317084826529026, -0.01249714381992817, -0.001960223540663719, -0.03216836228966713, 0.022464966401457787, 0.0020536358933895826, -0.02313178777694702, 0.0016038193134590983, -0.001109451986849308, 0.06649813801050186, 0.01668201945722103, -0.005774324294179678, -0.04375724866986275, -0.025155244395136833, -0.02936311438679695, -0.006409528665244579, 0.03485863655805588, -0.008576696738600731, -0.031823452562093735, 0.05049443989992142, -0.0666361004114151, -0.029271138831973076, 0.009847105480730534, -0.042308636009693146, 0.010128779336810112, 0.018567513674497604, -0.0016210646135732532, 0.003773861564695835, 0.03858363628387451, -0.06396882236003876, 0.029202157631516457, -0.0034720676485449076, 0.028558330610394478, -0.0017992667853832245, -0.04118194058537483, -0.015842745080590248, -0.009283756837248802, 0.005725462455302477, 0.04028518125414848, 0.008001850917935371, 0.021062344312667847, 0.02441944181919098, -0.05932406708598137, 0.01992414891719818, -0.05766851082444191, 0.03554845228791237, -0.016544057056307793, -0.011071526445448399, -0.026281941682100296, -0.01649806834757328, 0.04184876009821892, -0.02936311438679695, 0.04401018097996712, -0.02063695713877678, 0.004983911290764809, 0.020154086872935295, -0.05702468380331993, -0.06438270956277847, 0.01876296103000641, 0.033524997532367706, 0.009967822581529617, -0.03872160241007805, -0.03699706494808197, -0.025707095861434937, -0.06723394244909286, 0.052471909672021866, -0.00517648458480835, 0.020119596272706985, 0.04076804965734482, 0.005926658399403095, -0.0028656055219471455, 0.03552545979619026, -0.061761412769556046, -0.017279859632253647, -0.008823879994452, -0.01710740476846695, -0.0742240697145462, 0.020292051136493683, -0.026672836393117905, -0.0180041640996933, -0.046378545463085175, -0.07008517533540726, 0.003739370731636882, 0.014405631460249424, -0.024718360975384712, -0.009513694792985916, 0.022855861112475395, 0.022304009646177292, 0.023729627951979637, -0.03800879046320915, -0.023890584707260132, 0.010818594135344028, -0.009105554781854153, 0.022327004000544548, -0.004253857769072056, -0.0009276571217924356, -0.025914041325449944, -0.029294133186340332, -0.030788730829954147, -0.007340778596699238, 0.007898379117250443, 0.06516449898481369, -0.02662684954702854, -0.02492530643939972, -0.01771674118936062, -0.021384257823228836, 0.01747530698776245, 0.044608019292354584, -0.01923433504998684, -0.012980014085769653, 0.03559444099664688, -0.02715570665895939, -0.0017805843381211162, 0.02002762071788311, -0.016923455521464348, 0.009939081035554409, -0.07390215247869492, -0.04049212485551834, 0.06038178503513336, -0.0180156622081995, -0.006432522553950548, 0.027178701013326645, -5.842766768182628e-05, 0.05886419117450714, -0.0016225017607212067, 0.0020996236708015203, -0.0033226076047867537, -0.007651195395737886, -0.0028929105028510094, -0.030558792874217033, 0.0024775846395641565, 0.0002358663477934897, -0.011640624143183231, 0.02190161868929863, 0.049252770841121674, -0.0457577109336853, 0.02593703381717205, 0.018487034365534782, 0.02823641709983349, 0.018038654699921608, -0.006490007042884827, 0.009053818881511688, 0.026925768703222275, 0.012025770731270313, -0.04384922236204147, 0.008099574595689774, 0.018314581364393234, 0.009657406248152256, -0.04265354573726654, -0.0053259446285665035, -0.019061880186200142, -0.0342148095369339, 0.016877466812729836, 0.006645215209573507, -0.0023367474786937237, 0.055829007178545, -0.04495292901992798, 0.04672345146536827, -0.018360568210482597, 0.012865045107901096, -0.003308236598968506, -0.00970914214849472, -0.019751695916056633, 0.050770364701747894, -0.07256851345300674, -0.04212468862533569, -0.01938379369676113, -0.04348132386803627, -0.04571172222495079, -0.027247682213783264, 0.03212237358093262, -0.019682714715600014, 0.04037715494632721, 0.017670754343271255, 0.034927621483802795, -0.042883481830358505, 0.005245466250926256, -0.011807329021394253, 0.020797913894057274, 0.026557868346571922, -0.006467013154178858, -0.04355030506849289, -0.027224687859416008, 0.04184876009821892, 0.024557404220104218, 0.011353201232850552, 0.04483795911073685, -0.005676600616425276, 0.0001882619399111718, 0.0019587865099310875, 0.014037730172276497, 0.04074505716562271, 0.004955169279128313, 0.03216836228966713, 0.013497374951839447, 0.01891242153942585, -0.03826172277331352, -0.0023008196149021387, 0.02095887064933777, 0.038744594901800156, 0.0016771120717749, -0.02658086083829403, 0.020728932693600655, -0.038560643792152405, -0.03007592260837555, 0.005886419210582972, -0.043389346450567245, -0.028696293011307716, 0.000577719823922962, -0.019257327541708946, -0.06327900290489197, 0.044102154672145844, 0.009209026582539082, -0.009697645902633667, -0.0022131556179374456, 0.05058641359210014, -0.036652155220508575, 0.020085105672478676, -0.0500805489718914, 0.03580138459801674, -0.0033628467936068773, 0.009479204192757607, 0.011715353466570377, 0.025339195504784584, -0.02435046061873436, -0.024833330884575844, 0.032513268291950226, -0.019429782405495644, 0.032651230692863464, 0.02664984203875065, -0.008312267251312733, -0.02370663359761238, 0.008772144094109535, 0.006771681364625692, 0.022671911865472794, 0.026534873992204666, 0.04299845173954964, 0.011479667387902737, 0.010542668402194977, 0.050448451191186905, -0.01859050802886486, -0.01139918901026249, -0.03980230912566185, -0.02694876305758953, -0.009737884625792503, -0.0013199892127886415, -0.010755361057817936, 0.0014787903055548668, 0.04773518070578575, 0.016796989366412163, 0.0034145829267799854, -0.04053811356425285, -0.032053392380476, -0.05136820301413536, 0.016164658591151237, 0.0021714793983846903, 0.018314581364393234, 0.03587036579847336, 0.0054466621950268745, -0.02784552238881588, -0.0010038241744041443, 0.01681998185813427, 0.020223068073391914, -0.002606924856081605, 0.01898140273988247, -0.004420562647283077, -0.018291587010025978, 0.0007724487804807723, -0.019257327541708946, 0.018245600163936615, -0.020338037982583046, -0.018211109563708305, -0.010002314113080502, -0.029386108741164207, -0.036836106330156326, -0.0003253266913816333, -0.0032076386269181967, 0.02651187963783741, -0.016153162345290184, 0.061577461659908295, -0.03750292956829071, -0.020073609426617622, -0.034490738064050674, 0.00023496814537793398, 0.052425920963287354, -0.002812432125210762, -0.010238000191748142, -0.014141201972961426, 0.0051621138118207455, -0.0331341028213501, -0.0012819056864827871, -0.017383331432938576, -0.04125092178583145, 0.002032079268246889, 0.016670523211359978, -0.00546678202226758, 0.0025494403671473265, 0.0030553045216947794, -0.010784103535115719, 0.05302375927567482, 0.009444713592529297, -0.018579009920358658, 0.03580138459801674, 0.007225809618830681, -0.07210863381624222, 0.005659355316311121, -0.0050413962453603745, -0.01563580147922039, -0.006760184653103352, -0.07758116722106934, 0.034605707973241806, -0.005955400411039591, 0.07017715275287628, 0.06709598004817963, 0.06884351372718811, 0.05040246248245239, 0.03446774184703827, 0.04210169240832329, 0.012347684241831303, -0.027477620169520378, -0.01722237467765808, -0.05513919144868851, -0.010479435324668884, -0.029386108741164207, 0.029455089941620827, -0.0068636564537882805, 0.01017476711422205, 0.001608130638487637, 0.02625894732773304, -0.01876296103000641, -0.08245585858821869, 0.01430215872824192, 0.01621064729988575, 0.0023367474786937237, -0.024465428665280342, -0.04676944017410278, 0.004498166963458061, 0.03396188095211983, 0.09137745946645737, -0.009410222992300987, -0.03115663304924965, -0.039756324142217636, -0.03019089251756668, -0.007938617840409279, 0.018429551273584366, -0.009588425047695637, -0.021855629980564117, -0.02366064488887787, -0.00871465913951397, -0.022108562290668488, 0.033777929842472076, -0.0034318282268941402, 0.03223734349012375, -0.02885724976658821, 0.020912883803248405, -0.036652155220508575, 0.04044613614678383, -0.007335030008107424, -0.006179590243846178, 0.019751695916056633, -0.029386108741164207, 0.00020173488883301616, -0.005676600616425276, -0.03260524198412895, 0.06631419062614441, 0.012957020662724972, 0.013071989640593529, -0.053437650203704834, -0.0037796099204570055, 0.018027158454060555, 0.00967465154826641, 0.019027389585971832, -0.005311573389917612, -0.026052003726363182, -0.011554396711289883, -0.01610717363655567, -0.011462422087788582, 0.009858602657914162, 0.030604781582951546, -0.07109690457582474, 0.01275007613003254, -0.029547065496444702, -0.026029009371995926, -0.02136126346886158, -0.004541280213743448, -0.030719749629497528, 0.01948726736009121, -0.020223068073391914, 0.004673494957387447, 0.04865493252873421, 0.0035353004932403564, 0.01955624856054783, -0.002744887722656131, -0.022166047245264053, -0.0033254818990826607, -0.0010059798369184136, 0.004026793409138918, 0.046953391283750534, 0.0013681325362995267, 0.007708679884672165, 0.03044382482767105, 0.01271558552980423, -0.014152699150145054, 0.00627731392160058, 0.001317833550274372, 0.01046219002455473, -0.005823186133056879, 0.01793518289923668, 0.03543348237872124, 0.013807791285216808, -0.004817206412553787, 0.011761341243982315, 0.0036847603041678667, 0.014083717949688435, 0.00473672803491354, -0.0016627409495413303, 0.0006937668076716363, 0.038928546011447906, -0.022051077336072922, 0.02453441172838211, -7.331527285714401e-06, -0.03706604614853859, -0.01646357774734497, 0.02453441172838211, -0.0028095580637454987, 0.022016586735844612, 0.013106480240821838, 0.0261209849268198, 0.02586805261671543, -0.05748456344008446, -0.017992667853832245, 0.006064621265977621, -0.00291734142228961, 0.03363996371626854, -0.007323533296585083, -0.020487498492002487, -0.04741326719522476, 0.0049695405177772045, -0.015152930282056332, -0.05081635341048241, -0.010306982323527336, 0.0250402744859457, 0.007059104274958372, -0.01988965831696987, 0.0017834585160017014, 0.03952638432383537, -0.012301696464419365, 0.0425155833363533, -0.02853533625602722, 0.05090832710266113, -0.034352775663137436, -0.0001518849894637242, 0.010002314113080502, -0.024465428665280342, 0.011054281145334244, 0.016590043902397156, -0.02816743589937687, -0.03770987316966057, 0.025063268840312958, -0.04012422263622284, 0.024718360975384712, -0.008024845272302628, 0.05734659731388092, 0.03669814392924309, 0.018602004274725914, -0.016049690544605255, -0.044860951602458954, -0.021131325513124466, -0.0540354885160923, -0.021533716470003128, -0.04709135368466377, -0.03032885491847992, 0.006403780076652765, 0.02085539884865284, -0.005932406987994909, -0.004538406152278185, -0.016337111592292786, 0.005455284845083952, 0.016796989366412163, -0.043389346450567245, 0.000587061105761677, 0.006415277253836393, -0.01487700454890728, -0.00034993726876564324, 0.010657637380063534, -0.01170960534363985, -0.01988965831696987, 0.0023396217729896307, -0.009335492737591267, -0.005294328089803457, -0.02366064488887787, 0.006426773965358734, 0.028558330610394478, -0.022246524691581726, -0.0015851367497816682, -0.040974996984004974, 0.012382174842059612, 0.02359166368842125, 0.0058318087831139565, 0.015256403014063835, 0.014922992326319218, -0.00988734420388937, 0.022717898711562157, 0.033226076513528824, 0.019832173362374306, 0.009548185393214226, 0.016371604055166245, -0.013003007508814335, -0.000275746249826625, 0.012704088352620602, -0.029018206521868706, 0.02028055302798748, -0.01930331625044346, 0.010002314113080502, 0.006306056398898363, -0.03577839210629463, 0.021890120580792427, 0.023189272731542587, 0.03959536552429199, -0.004055535886436701, 0.013807791285216808, 0.008887113071978092, 0.0338699035346508, -0.008386997506022453, -0.006191087421029806, -0.04127391427755356, -0.05352962389588356, -0.007932869717478752, 0.02212005853652954, 0.03304212540388107, -0.022499457001686096, 0.05155215412378311, -0.0001089512079488486, -0.0047281053848564625, -0.021349765360355377, 0.00853645708411932, 0.014796526171267033, -0.0111692501232028, 0.009599922224879265, 0.018176618963479996, -0.016578547656536102, 0.002126928884536028, -0.014152699150145054, 0.018854936584830284, -0.013026001863181591, 0.021602697670459747, 0.02961604669690132, 0.021878624334931374, 0.01710740476846695, -0.0014708861708641052, -0.04297545924782753, 0.006185338832437992, 0.00010706499597290531, 0.025891046971082687, -0.0345827117562294, -0.07988055050373077, -0.012911032885313034, -0.03393888473510742, -0.007961612194776535, 0.012048764154314995, 0.03642221912741661, -0.007817900739610195, -0.020878393203020096, -0.000610054936259985, -0.01634860970079899, -0.028627311810851097, -0.02848934940993786, -0.007421256974339485, 0.010973802767693996, 0.027753546833992004, 0.031639501452445984, 0.005110377445816994, -0.02931712567806244, -0.009582675993442535, -0.026603855192661285, 0.01634860970079899, 0.031202619895339012, -0.010985299944877625, -0.014670060016214848, -5.9595324273686856e-05, -0.009519443847239017, 0.012773069553077221, 0.025385182350873947, -0.011307213455438614, 0.025201231241226196, 0.030420830473303795, -0.007639698218554258, 0.005860551260411739, -0.03591635450720787, 0.013175461441278458, -0.009243517182767391, -0.009157290682196617, -0.012658100575208664, -0.02338472008705139, 0.009939081035554409, -0.021982096135616302, -0.02416650950908661, 0.01331342477351427, 0.020039118826389313, -0.009921835735440254, -0.02095887064933777, -0.005527140572667122, 0.031110644340515137, 0.007036110386252403, -0.03952638432383537, -0.01484251394867897, 0.025385182350873947, -0.016509566456079483, -0.004127391614019871, 0.033157095313072205, -0.04564274102449417, -0.03198441118001938, 0.014394134283065796, -0.032973144203424454, -0.008455978706479073, 0.03669814392924309, -0.005808814894407988, -0.006541742943227291, -0.043458327651023865, -0.036974068731069565, -0.016877466812729836, -0.02664984203875065, 0.0250402744859457, -0.025477157905697823, 0.027431633323431015, 0.018636494874954224, 0.00010158599616261199, 0.015865739434957504, -0.02428147941827774, -0.019073378294706345, 0.005463907495141029, -0.020993361249566078, -0.005722587928175926, 0.022614426910877228, -0.04870092123746872, 0.010421951301395893, 0.021556710824370384, -0.01656705141067505, -0.011968285776674747, 0.005553008522838354, 0.03462870046496391, -0.014819519594311714, -0.038491662591695786, -0.011301464401185513, -0.005653606727719307, -0.0385376513004303, -0.03800879046320915, 0.010554165579378605, -0.009847105480730534, -0.017061417922377586, 0.013853779062628746, 0.025914041325449944, -0.01744081638753414, 0.003670389298349619, -0.024143515154719353, -0.01840655691921711, 0.04697638377547264, -0.02441944181919098, -0.039756324142217636, 0.003865836886689067, -0.024051541462540627, -0.008956094272434711, -0.00249914126470685, 0.01926882565021515, 0.014957482926547527, -0.002155671129003167, -0.016084181144833565, -0.003716376842930913, -0.03375493362545967, 0.04053811356425285, 0.041480861604213715, -0.0005364028038457036, 0.05665678530931473, -0.02049899473786354, 0.025017281994223595, -0.010726619511842728, 0.0022864483762532473, 0.016003701835870743, -0.05822036415338516, 0.04150385409593582, 0.029455089941620827, 0.01823410391807556, -0.006248571909964085, 0.0006344858556985855, 0.017820214852690697, 0.002279262989759445, -0.00015951965178828686, -0.0156702920794487, -0.0058806706219911575, 0.02122330106794834, 0.031823452562093735, 0.01926882565021515, 0.00758221372961998, -0.03007592260837555, -0.00794436689466238, -0.0272016953676939, -0.007300539407879114, 0.050310488790273666, 0.028190428391098976, 0.00043400845606811345, -0.01970570720732212, 0.0032938653603196144, 0.00807083211839199, 0.031133638694882393, -0.00597839429974556, 0.009801117703318596, -0.012796063907444477, 0.004759721923619509, -0.00016733397205825895, 0.011485415510833263, 0.015003470703959465, -0.03186944127082825, 0.010002314113080502, -0.029799995943903923, -0.013405399397015572, 0.011335955932736397, 0.003167399438098073, 0.02031504362821579, 0.01085883378982544, 0.03483564406633377, 0.007214312441647053, 0.013439890928566456, 0.02359166368842125, 0.010531172156333923, -0.03203039616346359, -0.017176387831568718, -0.06065770983695984, -0.004595890641212463, -0.0008076580706983805, 0.01455509103834629, -0.009944829158484936, -0.016957946121692657, 0.012221218086779118, -0.0024157888256013393, 0.04474598169326782, -0.0070188650861382484, -0.01879745163023472, -0.00699587119743228, -0.028972219675779343, 0.010726619511842728, 0.027385644614696503, 0.001692920341156423, 0.010260994546115398, -0.008881364949047565, 0.010755361057817936, -0.003529552137479186, -0.004296971019357443, -0.01696944236755371, -0.010260994546115398, -0.023511186242103577, 0.039135489612817764, 0.0007702931179665029, -0.02017708122730255, 0.018820445984601974, -0.034927621483802795, 0.0396183617413044, -0.017371835187077522, 0.03738795965909958, -0.019475769251585007, -0.028880244120955467, -0.01309498306363821, 0.046562496572732925, 0.025845058262348175, -0.022361494600772858, 0.018326077610254288, 0.0034002119209617376, 0.06277313828468323, 0.019222836941480637, -0.017946681007742882, 0.023154782131314278, 0.011031287722289562, 0.012796063907444477, 0.025592127814888954, 0.01815362460911274, 0.007748919073492289, -0.010663386434316635, -0.051644131541252136, -0.023614658042788506, -0.030374841764569283, -0.002674469258636236, 0.019142359495162964, -0.016406094655394554, -0.0011805891990661621, 0.027960490435361862, 0.02100485935807228, 0.004909181501716375, -0.014681557193398476, -0.017659258097410202, 0.005297202151268721, -0.0134168965741992, 0.015152930282056332, 0.022499457001686096, -0.032329317182302475, 0.031570520251989365, -0.00875489879399538, -0.030719749629497528, -0.012382174842059612, -0.006225578021258116, 0.02798348478972912, 0.0048143318854272366, -0.013462884351611137, 0.006570485420525074, 0.0435962900519371, -0.013543362729251385, 0.0291791632771492, -0.009214775636792183, -0.017785724252462387, -0.006949883420020342, 0.039503391832113266, -0.01995863951742649, 0.009967822581529617, 0.002971951849758625, 0.0017504049465060234, 0.00485457107424736, 0.03212237358093262, -0.03718101605772972, 0.04985061287879944, 0.02517823874950409, 0.017061417922377586, -0.038422681391239166, 0.0024977042339742184, -0.005004031118005514, 0.02524721994996071, -0.012980014085769653, 0.0011734035797417164, 0.057944439351558685, -0.02024606242775917, 0.04527484253048897, -0.01750979758799076, -0.019947143271565437, 0.0016857347218319774, -0.01776272989809513, -0.0298919714987278, 0.012543131597340107, -0.00715107936412096, 0.017820214852690697, -0.007875384762883186, 0.01757877878844738, 0.049114808440208435, -0.015187420882284641, 0.002730516716837883, -0.009237769059836864, -0.0026989001780748367, 0.056242894381284714, -0.009582675993442535, 0.02441944181919098, 0.014279165305197239, 0.021959101781249046, 0.011864813975989819, 0.025983022525906563, -0.005535763222724199, 0.007766164373606443, -0.010870330967009068, 0.0006107734516263008, 0.0020234566181898117, 0.014049227349460125, -0.001112326281145215, -0.021924611181020737, 0.024120522662997246, 0.01214073970913887, -0.007179821841418743, -0.013796295039355755, -0.00878938939422369, -0.006185338832437992, -0.02121180295944214, 0.0207174364477396, -0.01771674118936062, -0.04217067360877991, 0.020108100026845932, 0.002514949534088373, -0.011899304576218128, -0.03844567388296127, -0.027500614523887634, -0.009950577281415462, 0.03876758739352226, 0.05564505606889725, 0.032191354781389236, -0.017636263743042946, 0.020740430802106857, -0.001667052274569869, 0.03076573833823204, 0.002378423698246479, -0.003526677843183279, -0.01649806834757328, 0.02124629355967045, 0.05564505606889725, -0.0023870463483035564, 0.013934257440268993, -0.023028315976262093, -0.04679243266582489, -0.05435740202665329, 0.0018653740407899022, -0.008099574595689774, -0.0371120348572731, 0.0004426311352290213, 0.03902051970362663, -0.023120291531085968, -0.0026169847697019577, -0.011031287722289562, 0.008404242806136608, -0.010950809344649315, -0.01145667303353548, -0.02149922586977482, 0.03646820783615112, -0.057116661220788956, -0.00089388492051512, -0.007277545519173145, -0.0011504098074510694, 0.004544154740869999, -0.002091001020744443, -0.01901589334011078, 0.012071757577359676, 0.023476695641875267, -0.03807777538895607, 0.004673494957387447, -0.01401473581790924, 0.02338472008705139, 0.028466355055570602, -0.002782252850010991, 0.0017504049465060234, 0.03497360646724701, -0.0021384255960583687, -0.005337441340088844, -0.015681788325309753, 0.026603855192661285, 0.023936571553349495, 0.013945754617452621, -0.013968748971819878, -0.012738578952848911, -0.015658793970942497, -0.005489775445312262, 0.0031242859549820423, -0.0055961222387850285, -0.02291334606707096, -0.0313405841588974, 0.004822954535484314, -0.012543131597340107, -0.005739833693951368, -0.01082434318959713, -0.02428147941827774, 0.008956094272434711, 0.00839274562895298, 0.006829165853559971, 0.01401473581790924, 0.009341240860521793, -0.017785724252462387, 0.012129242531955242, 0.006018633488565683, 0.05104628950357437, -0.01771674118936062, 0.016946448013186455, 0.004403317347168922, 0.014704550616443157, 0.037158019840717316, 0.01779722049832344, -0.02060246653854847, 0.03695107623934746, -0.0250402744859457, 0.011767089366912842, -0.009266511537134647, 0.019337806850671768, 0.017992667853832245, -0.0024229742120951414, 0.04626357555389404, -0.00249914126470685, -0.013612343929708004, 0.04152684658765793, -0.012991511262953281, 0.007248803041875362, -0.017532791942358017, -0.00371925113722682, 0.007708679884672165, -0.030880706384778023, -0.0244884230196476, -0.008099574595689774, 0.011220986023545265, 0.01484251394867897, 0.00026047692517749965, -0.016613038256764412, -0.007335030008107424, 0.004958043340593576, 0.0075074839405715466, -0.009553934447467327, -0.04732128977775574, -0.04550477862358093, -0.02950107678771019, -0.003167399438098073, 0.031754471361637115, -0.0018567513907328248, -0.00013580727681983262, 0.0024948299396783113, 0.02931712567806244, 0.007174073252826929, 0.003460570704191923, 0.005820312071591616, 0.002874228172004223, -0.017371835187077522, -0.009536689147353172, 0.011422182433307171, 0.0637388825416565, 0.014474612660706043, 0.008622684516012669, 0.03984829783439636, 0.02715570665895939, -0.01649806834757328, 0.0010792725952342153, 0.01627962850034237, -0.004641878418624401, 0.019406788051128387, 0.006306056398898363, 0.009697645902633667, 0.02828240394592285, -0.01345138717442751, -0.020613964647054672, 0.01642908714711666, -0.009249266237020493, -0.02892623096704483, 0.0015779512468725443, 0.02266041375696659, -0.0008766395621933043, -0.06640616804361343, 0.01275007613003254, -0.006444019265472889, -0.03412283584475517, -0.024327466264367104, 0.006547491531819105, 0.04226265102624893, -0.0272016953676939, 0.02009660191833973, 0.02017708122730255, 0.021085336804389954, -0.022717898711562157, 0.015785260125994682, -0.0007925683748908341, -0.007225809618830681, -0.033593978732824326, -0.020521989092230797, 0.037548914551734924, 0.0196367260068655, -0.02690277434885502, -0.0019027390517294407, 0.002744887722656131, 0.039572373032569885, -0.009323995560407639, 0.038629624992609024, 0.010663386434316635, -0.03552545979619026, 0.031570520251989365, -0.03090370073914528, 0.03000694140791893, 0.025155244395136833, -0.02492530643939972, 0.010945060290396214, 0.0016684894217178226, 0.0019401039462536573, -0.0022720773704349995, -0.01220972090959549, -0.0014859759248793125, -0.0025077639147639275, 0.02244197204709053, 0.009266511537134647, -0.012658100575208664, -0.014405631460249424, -0.0014529223553836346, -0.004417688585817814, -0.015831248834729195, -0.04168780520558357, -0.01185331679880619, -0.012048764154314995, 0.020361032336950302, -0.032904163002967834, -0.009134297259151936, -0.015555322170257568, 0.013623841106891632, 0.003653143998235464, -0.007369520608335733, 0.026143979281187057, -0.006415277253836393, 0.03292715549468994, -0.004098649136722088, 0.004935049451887608, -0.022740893065929413, 0.07404011487960815, 0.0034893129486590624, 0.007432753685861826, 0.006139351055026054, 0.02114282175898552, 0.025523144751787186, 0.0004900558851659298, 0.02957005798816681, -0.014980476349592209, 0.011910800822079182, 0.02885724976658821, 0.02060246653854847, 0.0026658466085791588, -0.00812256895005703, -0.04240061342716217, 0.020453007891774178, 0.005271334201097488, 0.000599995139054954, 0.002867042552679777, -0.023396216332912445, 0.006610724609345198, 0.008346758782863617, 0.0428604893386364, 0.009335492737591267, -0.005932406987994909, 0.011899304576218128, -0.005527140572667122, -0.0687975212931633, -0.005265586078166962, 0.027316663414239883, -0.008841125294566154, 0.007484490051865578, -0.011192244477570057, 0.009910338558256626, 0.003167399438098073, 0.0025365063920617104, 0.03810076788067818, 0.016015198081731796, -0.03902051970362663, 0.007323533296585083, 0.032904163002967834, 0.01825709640979767, -0.018854936584830284, -0.010088540613651276, 0.05090832710266113, 0.016118671745061874, -0.017923686653375626, 0.02492530643939972, -0.012888038530945778, 0.00462750717997551, 0.038054779171943665, 0.01703842356801033, 0.007041858974844217, -0.018923917785286903, 0.004403317347168922, 0.012922529131174088, -0.03630724921822548, 0.0027836898807436228, -0.016118671745061874, -0.00699587119743228, -0.05049443989992142, -0.029708022251725197, -0.011910800822079182, -0.023327235132455826, 0.018969904631376266, 0.018613500520586967, -0.0110772754997015, -0.016544057056307793, 0.013175461441278458, -0.01642908714711666, -0.042699530720710754, -0.013336418196558952, 0.022212034091353416, 0.013520369306206703, 0.015325384214520454, 0.011991279199719429, 0.01830308511853218, -0.026304936036467552, 0.03872160241007805, 0.0034347025211900473, -0.011370446532964706, 0.014635569415986538, 0.012658100575208664, 0.014773532748222351, 0.010364466346800327, -0.037227001041173935, -0.0396183617413044, -0.0037566160317510366, -0.006760184653103352, 0.000570893578696996, 0.018739966675639153, -0.022775383666157722, -0.026304936036467552, 0.03090370073914528, -0.00535756116732955, -0.027500614523887634, -0.0012926841154694557, 0.01195678859949112, 0.014049227349460125, -0.024258485063910484, -0.006156596355140209, -0.005242592189460993, -0.036583174020051956, 0.016911957412958145, -0.019107868894934654, 0.017452312633395195, 0.017751231789588928, -0.007415508385747671, -0.017923686653375626, 0.0036272758152335882, -0.021372759714722633, -0.009749381802976131, -0.01185331679880619, -0.011755593121051788, 0.03626126050949097, -0.008168555796146393, -0.02835138514637947, 0.0073867663741111755, 0.006432522553950548, -0.006024382077157497, -0.002240460831671953, -0.013221449218690395, -0.039572373032569885, 0.011611881665885448, 0.028972219675779343, 0.012623609974980354, -0.009272259660065174, 0.019797682762145996, 0.008065083995461464, -0.028213422745466232, 0.007449998985975981, 0.011341704055666924, -0.04355030506849289, -0.009576927870512009, -0.03269721940159798, 0.0006844255840405822, -0.04833301901817322, -0.020843902602791786, 0.030236879363656044, 0.009278008714318275, -0.010812846012413502, 0.0027707559056580067, 0.008507715538144112, 0.018923917785286903, 0.023396216332912445, 0.00035353004932403564, 0.011301464401185513, -0.021315274760127068, -0.00528570543974638, -0.004245235119014978, -0.021234797313809395, -0.026052003726363182, -0.010410454124212265, -0.014888501726090908, 0.013244442641735077, 0.008812383748590946, -0.024649379774928093, -0.016992436721920967, -0.003664640709757805, 0.013543362729251385, -0.002832551719620824, 0.008203047327697277, 0.0069901226088404655, 0.013003007508814335, -0.025224225595593452, 0.017912188544869423, -0.024143515154719353, -0.0172913558781147, 0.013566356152296066, -0.02664984203875065, -0.002122617559507489, 0.010577159002423286, -0.0013250191695988178, 0.0033685953821986914, 0.008634180761873722, -0.019142359495162964, -0.02740863896906376, -0.029087187722325325, -0.004187750164419413, 0.02395956590771675, -0.011278470978140831, 0.04166480898857117, 0.01945277489721775, -0.022855861112475395, -0.007467244751751423, -0.01334791537374258, -0.009278008714318275, -0.0007304131868295372, 0.0032938653603196144, 0.014359643682837486, -0.007950115017592907, -0.015290893614292145, 0.014198686927556992, -0.021338269114494324, -0.018395060673356056, -0.0012481336016207933, 0.01974019780755043, 0.004774092696607113, -0.010945060290396214, -0.04626357555389404, -0.0004084996762685478, 0.006438271142542362, 0.01913086138665676, -0.011261225678026676, -0.012198223732411861, 0.010289737023413181, -0.007220061030238867, 0.015037961304187775, 0.007536225952208042, -0.00036197309964336455, -0.01462407223880291, 0.02041851542890072, -0.0045786453410983086, -0.010151773691177368, -0.013428393751382828, -0.019832173362374306, -0.03915848210453987, -0.0026500383391976357, -0.0036042819265276194, -0.020866895094513893, -0.02409752830862999, -0.005153491161763668, 0.008030593395233154, -0.029133176431059837, 0.03090370073914528, 0.03338703513145447, -0.007524729240685701, -0.0044866702519357204, -0.00023640526342205703, -0.02593703381717205, -0.026925768703222275, -0.01884343847632408, 0.028811262920498848, -0.00792712066322565, -0.015911726281046867, 0.010324227623641491, 0.04693039506673813, -0.0033772180322557688, 0.013899766840040684, -0.024304471909999847, -0.03196141496300697, 0.03584737330675125, -0.00590941309928894, 0.003305362304672599, -0.021660182625055313, -0.003865836886689067, 0.013715816661715508, 0.033341046422719955, 0.0028584199026226997, 9.96997841866687e-05, -0.024074533954262733, -0.01114625670015812, -0.03869860619306564, -0.024718360975384712, -0.026534873992204666, -0.012198223732411861, 0.008910107426345348, -0.013738810084760189, -0.006283062510192394, -0.0349506139755249, 0.012416665442287922, 0.026465892791748047, 0.05504721775650978, 0.05950801819562912, 0.018487034365534782, -0.023039812222123146, 0.017233870923519135, 0.05049443989992142, 0.04108996316790581, -0.01462407223880291, -0.030466817319393158, -0.0013674140209332108, -0.014152699150145054, 0.028788268566131592, -0.019326310604810715, 0.0027060857973992825, -0.031133638694882393, 0.028443360701203346, 0.020372528582811356, -0.011583139188587666, -0.00878938939422369, 0.010123031213879585, -0.06613024324178696, 0.012232714332640171, 0.008685917593538761, 0.031432557851076126, 0.019602235406637192, -0.006955632008612156, -0.003109914716333151, -0.01154290046542883, -0.011232483200728893, 0.013796295039355755, -0.005400674417614937, 0.0028656055219471455, 0.006380786187946796, -0.015463347546756268, 0.008134065195918083, 0.0038514656480401754, -0.04513687640428543, -0.00681766914203763, -0.017026927322149277, 0.015302390791475773, -0.00815705955028534, -0.012014273554086685, 0.006472761742770672, 0.009594173170626163], [0.0245391596108675, -0.03504566103219986, -0.005945888813585043, -0.020161449909210205, -0.01944182626903057, -0.0008702946361154318, -0.05176491290330887, 0.023099912330508232, 0.052532512694597244, -0.014692312106490135, -0.027609553188085556, 0.008449578657746315, -0.00288149225525558, 0.05766582489013672, -0.03024817258119583, 0.0007443604990839958, 0.02621828205883503, -0.006776454392820597, -0.011903771199285984, 0.008893346413969994, 0.035069648176431656, 0.017115045338869095, -0.00817372277379036, -0.056130629032850266, 0.009055261500179768, -0.05200478807091713, 0.027681516483426094, -0.04514437913894653, 0.0310637466609478, -0.01367284543812275, 0.017726724967360497, -0.03845188021659851, 0.05785772576928139, -0.04082663729786873, 0.04145031049847603, 0.04974996671080589, -0.017810679972171783, 0.024335267022252083, 0.05517113208770752, -0.05924899876117706, -0.059057097882032394, -0.028353163972496986, 0.020149456337094307, -0.010404556058347225, -0.010230646468698978, 0.04459266737103462, 0.06155179440975189, 0.0057120113633573055, -0.030104247853159904, 0.044640641659498215, -0.005894915666431189, -0.022032471373677254, 0.02477903477847576, -0.004410692024976015, -0.004020896274596453, -0.01510009914636612, -0.016599314287304878, 0.02976842410862446, 0.043513230979442596, 0.012869265861809254, -0.0047405194491147995, -0.023147888481616974, -0.009121227078139782, 0.07815110683441162, -0.008257678709924221, 0.02777746506035328, 0.01802656799554825, 0.018410366028547287, -0.06841219961643219, 0.061839643865823746, -0.02094104327261448, -0.02230832725763321, 0.019849613308906555, -0.03857181593775749, 0.007220222149044275, 0.05099731683731079, 0.03888365253806114, -0.013900726102292538, 0.031111720949411392, 0.002334278542548418, 0.0288808885961771, 0.03689269721508026, -0.03468585014343262, 0.013420977629721165, -0.003757034195587039, -0.0472072996199131, -0.06826827675104141, 0.010092718526721, -0.009283142164349556, -0.023471718654036522, -0.0030374107882380486, -0.0301282349973917, -0.00619475869461894, 0.026937903836369514, 0.018062548711895943, 0.022344307973980904, -0.009624963626265526, -0.005334208719432354, -0.05411568284034729, 0.045887988060712814, 0.02653011865913868, 0.009996769018471241, 0.009654948487877846, -0.005424161907285452, 0.04927022010087967, 0.009001290425658226, -0.06826827675104141, 0.015543866902589798, 0.024311279878020287, -0.01887812279164791, -0.038859665393829346, -0.0015052123926579952, 0.005025370512157679, 0.05709012597799301, 0.001277331612072885, 0.020977023988962173, -0.0030793887563049793, 0.011945749633014202, 0.03576528653502464, -0.02957652322947979, -0.004359718877822161, -0.0020734150893986225, 0.018494322896003723, -0.06606142967939377, -0.016983114182949066, -0.006230739876627922, -0.042841583490371704, -0.005007379688322544, -0.017378905788064003, -0.04543222859501839, 0.07983022928237915, -0.022752095013856888, 0.054883282631635666, -0.012401510961353779, -0.004611587151885033, 0.005888918414711952, -0.02124088630080223, -0.007657993119210005, 0.016743239015340805, -0.06543775647878647, 0.001155145582742989, 0.015471904538571835, 0.058193549513816833, 0.013636864721775055, 0.00010616319923428819, -0.018902109935879707, 0.03881169110536575, 0.05138111487030983, -0.006107803899794817, 0.0012316055363044143, -0.013504933565855026, -0.02962449938058853, 0.01764276809990406, 0.00689639151096344, -0.05996862053871155, -0.029672473669052124, 0.017103049904108047, 0.0073761404491961, 0.0019594747573137283, 0.017534824088215828, -0.03063197247684002, -0.042841583490371704, -0.0004006653616670519, -0.001610157429240644, 0.032718878239393234, -0.028856901451945305, -0.01207768078893423, -0.016011621803045273, -0.09873233735561371, 0.006116799544543028, 0.003529153298586607, 0.01839837245643139, 0.02900082617998123, -0.04193006083369255, -0.030727921053767204, -0.05310821160674095, -0.0020164449233561754, 0.013636864721775055, -0.03379831463098526, -0.03223913162946701, 0.021708641201257706, 0.025018908083438873, -0.0052772387862205505, 0.007442106027156115, -0.011256109923124313, 0.0288808885961771, 0.007304178085178137, -0.009618966840207577, 0.039483338594436646, 0.0024752048775553703, -0.04641571268439293, -0.018278436735272408, 0.02342374436557293, 0.04888641834259033, 0.002464710269123316, 0.04452070593833923, 0.023747574537992477, -0.03142355754971504, 0.013624871149659157, 0.03142355754971504, 0.0023057935759425163, -0.023567669093608856, 0.007196234539151192, -0.011777836829423904, -0.01143001951277256, -0.010692405514419079, 0.005253251176327467, -0.010182672180235386, 0.04617583751678467, -0.0048364694230258465, 0.004350723698735237, 0.09076850861310959, -0.0046805511228740215, -0.0322871059179306, -0.03499768674373627, 0.045264314860105515, 0.05497923120856285, -0.03454192727804184, 0.019609740003943443, 0.053827833384275436, -0.046943437308073044, -0.0409945510327816, 0.0021348828449845314, 0.022452251985669136, 0.010986251756548882, -0.010074728168547153, -0.024119378998875618, -0.019969550892710686, -0.09494232386350632, -0.04020296409726143, -0.04145031049847603, 0.037492383271455765, -0.06049634516239166, -0.03255096822977066, -0.025954419746994972, 0.036988645792007446, -0.028712976723909378, -0.06726080924272537, -0.01559184119105339, -0.026194293051958084, -0.019789645448327065, -0.03161545842885971, -0.011753849685192108, 0.011334069073200226, -0.012785309925675392, -0.0322871059179306, -0.007622011937201023, -0.0063027022406458855, 0.009193189442157745, -0.00347218313254416, 0.06198356673121452, -0.0205092690885067, -0.02287203259766102, -0.06529383361339569, -0.014956174418330193, 0.02055724337697029, 0.03530952334403992, 0.015939660370349884, 0.040466826409101486, -0.04636773839592934, 0.0033582428004592657, -0.015256017446517944, -0.00711227860301733, -0.01908201538026333, -0.029336649924516678, -0.03828396648168564, 0.03516560047864914, 0.025522645562887192, 0.027105817571282387, 0.07944642752408981, -0.008269673213362694, 0.028113288804888725, -0.01887812279164791, -0.027489615604281425, 0.002214341424405575, 0.03130362182855606, 0.04399298131465912, -0.010740379802882671, 0.02653011865913868, 0.015927664935588837, -0.023999441415071487, -0.020173443481326103, 0.008227694779634476, -0.03981916606426239, -0.03758833184838295, -0.010038747452199459, -0.01348094642162323, 0.030967796221375465, 0.01944182626903057, 0.015112092718482018, 0.003972921054810286, 0.011142170056700706, 0.009307130239903927, -0.013564902357757092, 0.036436934024095535, 0.0010479516349732876, 0.008425591513514519, -0.0016311465296894312, 0.013169108889997005, -0.017726724967360497, 0.012605404481291771, -0.01584370993077755, 0.015867697075009346, -0.05373188480734825, 0.04629577696323395, 0.026674043387174606, 0.017726724967360497, -0.004728525876998901, -0.010236643254756927, -0.04543222859501839, -0.03528553619980812, 0.06965955346822739, -0.0794944018125534, -0.002214341424405575, 0.02403542399406433, -0.052148714661598206, -0.050421617925167084, -0.013660851866006851, 0.017318937927484512, -0.02789740264415741, 0.028161264955997467, 0.01248546689748764, 0.005001382902264595, -0.03458990156650543, 0.04013100266456604, -0.0026701027527451515, -0.00742411520332098, 0.01304917223751545, -0.030919821932911873, 0.0076939743012189865, -0.0018590273102745414, -0.0008605497423559427, -0.0070762974210083485, -0.018866129219532013, -0.02883291244506836, -0.01707906275987625, 0.01291724108159542, 0.019058028236031532, -0.005523109808564186, -0.009582986123859882, 0.042841583490371704, -0.011424022726714611, -0.06121596693992615, 0.027633540332317352, -0.01857827976346016, -0.0003015297115780413, 0.013109141029417515, 0.005208274815231562, -0.003241304075345397, 0.046559639275074005, -0.01230556145310402, -0.0161435529589653, -0.011903771199285984, -0.030775897204875946, -0.046871475875377655, -0.04862255975604057, 0.027225753292441368, -0.017234981060028076, -0.006872403901070356, 0.038355931639671326, 0.008581509813666344, -0.00850954744964838, 0.0010891801211982965, 0.01777469925582409, -0.02100101113319397, 0.02477903477847576, -0.029288673773407936, -0.001281079719774425, -0.03099178336560726, -0.030607983469963074, 0.021456772461533546, 0.0027060839347541332, 0.01981363259255886, -0.014980161562561989, 0.04562412574887276, -0.009517020545899868, 0.010422546416521072, 0.030607983469963074, -0.014044650830328465, -0.007969830185174942, 0.010812342166900635, -0.009768888354301453, 0.01628747768700123, 0.02926468662917614, 0.04260170832276344, 0.035813260823488235, -0.023135894909501076, -0.011148166842758656, 0.0033372538164258003, -0.024994920939207077, 0.01813451200723648, -0.025762518867850304, -0.005870928056538105, -0.02150474674999714, 0.027297716587781906, 0.013840758241713047, 0.055890753865242004, 0.047878947108983994, -0.010272624902427197, -0.03387027606368065, -0.015088105574250221, -0.024491185322403908, -0.011777836829423904, -0.019981544464826584, -0.018218467012047768, 0.00873143132776022, 0.022788075730204582, 0.0119577432051301, 0.018986064940690994, 0.007028322201222181, 0.02461112290620804, 0.021480759605765343, 0.023711593821644783, 0.004560613539069891, 0.022908013314008713, -0.017594793811440468, -0.003954930696636438, 0.022332314401865005, 0.012641385197639465, -0.018590273335576057, 0.031471531838178635, 0.012377523817121983, 0.005541100632399321, -0.017222987487912178, -0.007879876531660557, 0.004035888239741325, 0.010386564768850803, 0.013121134601533413, 0.00663252966478467, -0.04766305908560753, 0.01510009914636612, -0.010842327028512955, 0.0013410482788458467, 0.033270590007305145, 0.02012546919286251, 0.01845834217965603, -0.012689360417425632, -0.01432050671428442, -0.01926192082464695, -0.029528548941016197, 0.019717682152986526, -0.0027150793466717005, 0.03869175538420677, 0.014596362598240376, -0.032407041639089584, 0.001041205134242773, -0.008989295922219753, 0.03919548913836479, 0.01751083694398403, -0.010524492710828781, 0.001862025703303516, 0.06558168679475784, -0.018362391740083694, 0.0031183683313429356, 0.002656609984114766, -0.03578927367925644, 0.007999814115464687, -0.014152594842016697, 0.013205090537667274, 0.017750712111592293, 0.04490450397133827, 0.05680227652192116, 0.02895285002887249, 0.02566657029092312, 0.036652822047472, 0.04341728240251541, 0.030224185436964035, -0.020413318648934364, 0.05934494733810425, -0.05747392773628235, -0.06419041007757187, 0.01709105633199215, 0.030224185436964035, 0.019237933680415154, 0.0316874198615551, 0.012725341133773327, 0.016011621803045273, -0.04087461158633232, -0.00959497969597578, 0.005229263566434383, 0.037804219871759415, 0.017163019627332687, -0.0030524027533829212, -0.0540677085518837, 0.02629024349153042, 0.06059229373931885, 0.07848693430423737, -0.01578374207019806, -0.05833747610449791, -0.021888546645641327, -0.010938276536762714, -0.0360531359910965, 0.014452437870204449, -0.010716392658650875, -0.07709565758705139, 0.0018710209988057613, -0.019981544464826584, -0.0047555118799209595, 0.03785219416022301, -0.048670534044504166, 0.01444044429808855, -0.022344307973980904, -0.02535473369061947, 0.00720822811126709, 0.02832917682826519, -0.01883014664053917, -0.016359439119696617, -0.039987076073884964, 0.00436571566388011, -0.001255593029782176, -0.0204972755163908, -0.010176675394177437, 0.005448149051517248, -0.01932189054787159, 0.018962077796459198, -0.03396622836589813, -0.0602564699947834, 0.040298912674188614, -0.00906725600361824, 0.011573944240808487, -0.022212376818060875, 0.007747945841401815, -0.013780789449810982, -0.008269673213362694, 0.01609557867050171, 0.025930432602763176, 0.024131372570991516, -0.09782081842422485, -0.03523756191134453, -0.029600512236356735, -0.0245391596108675, -0.02434726059436798, -0.04497646540403366, 0.00925915502011776, 0.009187192656099796, -0.0014609855134040117, 0.002751060528680682, 0.021276867017149925, -0.009031274355947971, -0.040035050362348557, -0.007795920595526695, -0.011573944240808487, 0.019801639020442963, 0.006812435574829578, 0.01851831004023552, 0.014260537922382355, 0.01410461962223053, -0.03458990156650543, 0.005346202757209539, -0.034637875854969025, -0.0028979836497455835, 0.0019669707398861647, 0.01388873253017664, -0.011555952951312065, 0.0038229995407164097, 0.012857272289693356, 0.01541193574666977, 0.010590458288788795, -0.032095205038785934, 0.033462490886449814, 0.01789463683962822, -0.0022997965570539236, -0.03151950612664223, 0.005067348480224609, -0.010758371092379093, 0.025498658418655396, -0.03622104600071907, -0.0022623161785304546, 0.012569422833621502, 0.003769027767702937, -0.012119658291339874, 0.03677275776863098, -0.004467662423849106, 0.024946946650743484, -0.0019144982798025012, -0.004728525876998901, 0.01826644130051136, -0.024827009066939354, -0.00694436626508832, -0.021048985421657562, 0.0453362762928009, -0.0077539426274597645, 0.00020895316265523434, -0.010302608832716942, -0.03187932074069977, 0.01920195296406746, -0.00795183889567852, -0.006236736662685871, -0.040154989808797836, 0.027369678020477295, -0.02403542399406433, -0.01369683351367712, -0.0018665232928469777, 0.007196234539151192, -0.044448740780353546, 0.013732814230024815, 0.025378720834851265, 0.03732446953654289, -0.018914103507995605, -0.0063626705668866634, 0.03864378109574318, -0.04447272792458534, -0.01566380448639393, 0.015291998162865639, -0.022284340113401413, -0.0153759540989995, -0.003915951121598482, 0.008269673213362694, 1.7077001757570542e-05, -0.006842419505119324, 0.024755047634243965, 0.01357689592987299, 0.04895838350057602, -0.03684471920132637, -0.045887988060712814, -0.02602638117969036, -0.029408611357212067, -0.03197526931762695, -0.010194665752351284, -0.0034272067714482546, -0.009403079748153687, -0.022536208853125572, 0.010986251756548882, -0.011286094784736633, -0.016731245443224907, 0.005643047392368317, 0.00645862054079771, -0.04634375125169754, 0.013924714177846909, -0.007064303383231163, 0.009211179800331593, 0.02676999196410179, 0.04384905472397804, -0.007460096385329962, 0.0034571909345686436, 0.00431774090975523, 0.022068452090024948, -0.018422359600663185, 0.006386658176779747, 0.02535473369061947, 0.030488047748804092, 0.0006525335484184325, 0.025306757539510727, -0.024874983355402946, 0.03775624558329582, 0.008401603437960148, -0.001604160643182695, -0.0010546981357038021, -0.009049264714121819, 0.008719437755644321, 0.0528203621506691, 0.016803206875920296, -0.007004335056990385, -5.964066804153845e-05, 0.01457237545400858, 0.027177779003977776, 0.03859580308198929, 0.03722852095961571, 0.004308745265007019, 0.005903910845518112, -0.02590644359588623, 0.003271288238465786, -0.004176814574748278, 0.007010331843048334, 0.014020663686096668, 0.017474856227636337, 0.042217910289764404, 0.013936707749962807, -0.016803206875920296, -0.038307953625917435, 0.06366268545389175, 0.004605589900165796, -0.012059689499437809, -0.012749329209327698, -0.0028859898447990417, 0.028545062988996506, -0.015208042226731777, 0.009954791516065598, -0.04816679656505585, 0.020329361781477928, -0.03204723075032234, -0.01727096363902092, 0.00956499483436346, -0.012569422833621502, -0.008011807687580585, -0.023159882053732872, -0.0005970625788904727, 0.0030853855423629284, 0.02355567365884781, -0.010644430294632912, -0.011879784055054188, 0.005307223182171583, 0.036436934024095535, -0.030104247853159904, 0.005445150658488274, 0.001743587665259838, -0.021408798173069954, -0.017222987487912178, -0.025690557435154915, -0.011681887321174145, -0.01143001951277256, 0.0038020105566829443, 0.0035651344805955887, -0.01658732071518898, -0.00034706838778220117, -0.0008388111018575728, 0.003915951121598482, 0.022152408957481384, 0.005724004935473204, -0.018158499151468277, -0.040466826409101486, -0.02149275317788124, 0.010674414224922657, -0.018794165924191475, -0.03775624558329582, 0.0521966889500618, -0.00040441338205710053, 0.0012188622495159507, 0.01044053677469492, -0.004125840961933136, -0.010986251756548882, 0.020329361781477928, 0.0040628742426633835, 0.0007207478629425168, -0.008611493743956089, 0.0011723865754902363, -0.01096226368099451, 0.016623301431536674, -0.0019339880673214793, 0.011160160414874554, 0.04236183315515518, -0.01646738313138485, -0.015735765919089317, 0.013564902357757092, -0.03957929089665413, -0.020461292937397957, -0.021948516368865967, 0.021228892728686333, -0.018986064940690994, -0.035885222256183624, 0.06001659482717514, -0.02000553160905838, 0.03919548913836479, -0.00205092690885067, 0.008503550663590431, -0.008263676427304745, -0.027729490771889687, -0.0251628328114748, -0.05891317501664162, 0.0036161078605800867, 0.007070300634950399, 0.008689452894032001, -0.003466186346486211, 0.00431774090975523, 0.026242269203066826, -0.011238119564950466, -0.004713533446192741, -0.00045238828170113266, 0.0329107791185379, -0.01634744554758072, -0.015256017446517944, 0.0053581963293254375, 0.006338683422654867, -0.03173539415001869, -0.0004730024957098067, 0.0009887326741591096, -0.030583996325731277, -0.04627178981900215, -0.018362391740083694, 0.0025696554221212864, -0.0002372508606640622, 0.016047602519392967, 0.009493032470345497, -0.019417839124798775, -0.009553001262247562, -0.028593039140105247, -0.013373002409934998, -0.02156471647322178, 0.020665187388658524, -0.006704492028802633, 0.0540677085518837, -0.0267220176756382, -0.0053312103264033794, -0.005984868388622999, -0.0053312103264033794, -0.025810495018959045, 0.0094690453261137, 0.026122331619262695, 0.04149828478693962, 0.02162468433380127, -0.03334255516529083, -0.028425127267837524, -0.010836330242455006, -0.015291998162865639, -0.005067348480224609, 0.01758280023932457, -0.018158499151468277, -0.02602638117969036, -0.008041792549192905, -0.0017405892722308636, 0.01453639380633831, 0.015891684219241142, 0.000966244435403496, 0.026889929547905922, 0.05205276235938072, 0.033462490886449814, -0.056946203112602234, -0.0023687605280429125, -0.0127373356372118, -0.008227694779634476, -0.00285750487819314, 0.007735952269285917, 0.024707071483135223, 0.021588703617453575, 0.006482608150690794, -0.010842327028512955, -0.038739729672670364, 0.016983114182949066, -0.009241164661943913, -0.03454192727804184, 0.013085152953863144, -0.018326411023736, 0.0416422113776207, -0.030344123020768166, 0.03571731224656105, -0.01993357017636299, -0.059296973049640656, 0.03482977673411369, -0.04672754928469658, 0.001566680264659226, -0.024203335866332054, 0.017690742388367653, 0.03578927367925644, 0.003253297647461295, -0.0014399965293705463, 0.026937903836369514, -0.0011161660077050328, 0.005709012970328331, 0.013384995982050896, 0.009061258286237717, 0.055267080664634705, -0.0503256656229496, -0.01578374207019806, -0.011262106709182262, 0.0005247254157438874, 0.03442198783159256, -0.023891499266028404, -0.014356488361954689, -0.021420791745185852, -0.0017600790597498417, 0.018122516572475433, 0.0013567900750786066, -0.025762518867850304, -0.003882968332618475, 0.011987727135419846, -0.021960509940981865, 0.026985879987478256, -0.01988559402525425, -0.04485652968287468, -0.00913322065025568, -0.033942241221666336, -0.004287756513804197, -0.01131008192896843, 0.00925915502011776, 0.027921389788389206, 0.008335638791322708, 0.027633540332317352, 0.033390529453754425, -0.02119291014969349, -0.0008320646011270583, 0.029024813324213028, 0.02931266278028488, -0.03962726518511772, -0.012191620655357838, -0.012881259433925152, 0.018482329323887825, -0.01420056913048029, 0.04212195798754692, -0.016743239015340805, -0.0024587134830653667, -0.02926468662917614, 0.008131745271384716, 0.03216717019677162, 0.012869265861809254, 0.0515730157494545, -0.018470335751771927, -0.02025740034878254, 0.05723405256867409, 0.053827833384275436, -0.005274240393191576, -0.001604160643182695, -0.02509087137877941, 0.012329548597335815, -0.0022053460124880075, -0.006188761908560991, -0.0416422113776207, -0.019525783136487007, 0.019537776708602905, 0.009079249575734138, 0.01025463454425335, -0.016551339998841286, -0.007711964659392834, -0.015603835694491863, -0.012041699141263962, 0.006017851177603006, -0.005250252783298492, -0.02324383705854416, 0.000893532473128289, -0.03586123511195183, 0.011639909818768501, 0.036005161702632904, -0.03223913162946701, -0.023903492838144302, -0.02566657029092312, 0.0018755185883492231, 0.014296519570052624, -0.04449671879410744, 0.015303991734981537, 0.026002394035458565, -0.004410692024976015, 0.03825997933745384, 0.0034631879534572363, -0.027441641315817833, 0.0005430908058770001, -0.018542297184467316, 0.02094104327261448, 0.017906630411744118, 0.00021869807096663862, -0.01645538955926895, 0.018122516572475433, -0.01099224854260683, 0.08424391597509384, -0.00650659529492259, 0.03821200504899025, 0.020653193816542625, 0.02789740264415741, 0.01609557867050171, -0.013528920710086823, -0.01046452485024929, 0.010104713030159473, 0.018590273335576057, 0.043585192412137985, 0.015363960526883602, -0.009942797012627125, 0.03466186299920082, -0.0042397817596793175, 0.03235906735062599, -0.019058028236031532, 0.04135436192154884, 0.023279819637537003, -0.007256203331053257, 0.011226125992834568, 0.037612318992614746, 0.014608356170356274, -0.015244023874402046, -0.006968353874981403, 0.021648671478033066, -0.002428729087114334, 0.01354091428220272, 0.01789463683962822, 0.002107897074893117, -0.0032263118773698807, 0.006698495242744684, -0.04891040921211243, 0.008767412044107914, 0.036316998302936554, -0.012437491677701473, 0.008323644287884235, 0.031015770509839058, 0.0022308328188955784, 0.006710488814860582, 0.01248546689748764, 0.025306757539510727, -0.009409076534211636, 0.027561578899621964, 0.01208367757499218, -0.021960509940981865, 0.005205276422202587, 0.004296751692891121, 0.015423929318785667, 0.026314230635762215, 0.01701909489929676, 0.0043207393027842045, 0.04646368697285652, -0.04356120526790619, 0.02727372944355011, 0.024683084338903427, -0.007873879745602608, -0.006266721058636904, 0.006602545268833637, -0.016191527247428894, 0.053827833384275436, -0.016419408842921257, -0.005679028574377298, -0.005466139875352383, 0.010368574410676956, 0.039483338594436646, -0.02566657029092312, 0.029216712340712547, -0.00816772598773241, 0.00145273981615901, -0.00145273981615901, -0.0006637776969000697, 0.0064706141129136086, -0.0026775989681482315, 0.002083909697830677, 0.0038589807227253914, -0.007250206544995308, -0.03641294687986374, 0.006608542054891586, 0.008209704421460629, 0.01410461962223053, -0.008143738843500614, -0.0007855889271013439, -0.01938185840845108, -0.029024813324213028, 0.008845371194183826, -0.008125748485326767, -0.032215144485235214, 0.017486849799752235, -0.026985879987478256, 0.01777469925582409, -0.003855982329696417, 0.025210808962583542, 0.0189500842243433, -0.02900082617998123, 0.03545344993472099, -0.0006551572005264461, 0.02962449938058853, 0.0012803301215171814, 0.01183780562132597, 0.0007900865748524666, 0.023627636954188347, 0.02497093379497528, 0.022512219846248627, 0.017378905788064003, -0.016323458403348923, -0.03082387149333954, -0.0301282349973917, 0.01420056913048029, -0.04679951071739197, 0.007022325415164232, -0.009996769018471241, 0.028808925300836563, -0.037732258439064026, 0.015268011018633842, 0.0397711880505085, 0.04089859873056412, 0.005391179118305445, 0.0335344523191452, -0.007867882959544659, 0.026937903836369514, -0.026913916692137718, 0.02590644359588623, -0.0036580858286470175, 0.033150654286146164, 0.03869175538420677, -0.02415536157786846, 0.011777836829423904, 0.008737428113818169, -0.026578092947602272, -0.003355244407430291, 0.005517113022506237, -0.012161636725068092, 0.022836051881313324, -0.02067718096077442, 0.01689915731549263, 0.03219115734100342, 0.02938462421298027, 0.017486849799752235, 0.00478249741718173, 0.0335344523191452, 0.06083216890692711, 0.014356488361954689, -0.021636677905917168, -0.0119577432051301, -0.023807542398571968, -0.007250206544995308, -0.025690557435154915, 0.04483254253864288, -0.012929234653711319, 0.001031460240483284, 0.023207856342196465, 0.0005397176137194037, -0.040226951241493225, 0.003864977741613984, 0.003334255423396826, -0.028784938156604767, -0.01531598623842001, 0.021048985421657562, -0.005106328055262566, 0.019921576604247093, -0.011687884107232094, 0.01838637888431549, 0.016479376703500748, 0.0032113196793943644, 0.008887349627912045, 0.01510009914636612, 0.04353721812367439, 0.011322075501084328, 0.015891684219241142, 0.0045636119320988655, 0.04166619852185249, -0.02435925416648388, 0.04691945016384125, -0.015555860474705696, 0.0033582428004592657, 0.034877751022577286, 0.01851831004023552, 0.03566933423280716, -0.0024482188746333122, 0.01279730349779129, 0.022584183141589165, -0.02895285002887249, -0.00015254518075380474, 0.028377151116728783, -0.0032802836503833532, 0.014140601269900799, -0.0025906444061547518, 0.018338404595851898, -0.030727921053767204, -0.0017031088937073946, 0.029432598501443863, 0.021780602633953094, 0.018986064940690994, 0.0022473239805549383, -0.018674228340387344, 0.06567763537168503, 0.041714172810316086, 0.011262106709182262, 0.02633821777999401, -0.01120813563466072, -0.010818338952958584, -0.00816772598773241, 0.012341542169451714, -0.00807177647948265, -0.01043453998863697, -0.018230460584163666, 0.018038561567664146, 0.009948794730007648, -0.02324383705854416, -0.05229263752698898, -0.0033252600114792585, -9.960413444787264e-05, -0.03195128217339516, 0.009487035684287548, 0.0031693417113274336, 0.0646221861243248, -0.01565181091427803, 0.0273456908762455, 0.026889929547905922, 0.017199000343680382, 0.042649682611227036, -0.00641664257273078, 0.01183180883526802, 0.020293381065130234, 0.06846018135547638, -0.015399942174553871, 0.023399755358695984, 0.02125287987291813, 0.041546259075403214, -0.0008942820713855326, 0.0028919868636876345, -0.022524213418364525, -0.022380288690328598, 0.01174185611307621, -0.007873879745602608, 0.015447916463017464, -0.01665928214788437, 0.012257586233317852, -0.03132760897278786, -0.01043453998863697, -0.04478456825017929, -0.018290430307388306, 0.01727096363902092, -0.0060508339665830135, 0.020269393920898438, -0.005193282384425402, 0.016419408842921257, -0.002442222088575363, -0.003574129892513156, -0.016743239015340805, -0.01689915731549263, -0.006794444750994444, -0.021420791745185852, 0.042026009410619736, 0.01096226368099451, -0.02820923924446106, -0.009079249575734138, -0.026937903836369514, 0.02361564338207245, 0.01348094642162323, 0.03670079633593559, -0.001236103242263198, -0.03586123511195183, 0.02131284773349762, -0.018470335751771927, 0.01938185840845108, -0.005040362477302551, 0.0033522460144013166, -0.003076390363276005, -0.01152596902102232, 0.002779545495286584, 0.0025261782575398684, -0.02044929936528206, -0.02230832725763321, -0.012785309925675392, -0.003909954335540533, -0.023627636954188347, -0.021144935861229897, -0.012011715210974216, 0.010806345380842686, -0.020785124972462654, -0.00548413023352623, -0.017163019627332687, -0.002257818588986993, 0.002824522089213133, -0.008659468963742256, -0.024431215599179268, 0.0054541463032364845, -0.0062907082028687, 0.005975873209536076, 0.03051203489303589, -0.014908199198544025, 0.015076111070811749, -0.033558439463377, -0.0007001336780376732, 0.027513602748513222, 0.011178150773048401, 0.004719530697911978, 0.036556873470544815, 0.017594793811440468, 0.039531316608190536, -0.0347817987203598, 0.01090229582041502, 0.015567854046821594, -0.0013575396733358502, -0.0004730024957098067, 0.0033942239824682474, 0.003951932303607464, -0.016011621803045273, 0.026698030531406403, 0.00913322065025568, 0.01510009914636612, -0.028377151116728783, 0.004083862993866205, -0.005151304416358471, 0.00047225289745256305, -0.028736963868141174, -0.024383241310715675, -0.02864101342856884, -0.00978088192641735, 6.5684384026099e-05, 0.006674507632851601, -0.008125748485326767, 0.03379831463098526, -0.002206845209002495, -0.0322871059179306, -0.04754312336444855, 0.028784938156604767, -0.03367837890982628, -0.002965448424220085, -0.005721006542444229, 0.010038747452199459, 0.017234981060028076, 0.025762518867850304, -0.035381484776735306, 0.008185717277228832, -0.0125814164057374, 0.04334532096982002, -0.006788447964936495, 0.008239688351750374, 0.027921389788389206, -0.008965308777987957, 0.04524032771587372, 0.010416549630463123, -0.010458527132868767, 0.013924714177846909, -0.009025277569890022, 0.002139380667358637, -0.0037090592086315155, 0.010824335739016533, -0.005340205505490303, -0.011196142062544823, 0.005193282384425402, 0.009648950770497322, -0.014488418586552143, -0.029792411252856255, -0.004704538267105818, 0.010476518422365189, -0.006380661390721798, -0.03658086061477661, 0.005828950088471174, 0.011729862540960312, -0.008905339986085892, 0.008773409761488438, -0.020533256232738495, -0.0122755765914917, 0.04262569546699524, -0.006668510846793652, -0.003415212966501713, 0.017990587279200554, 0.008221697993576527, -0.008329641073942184, -0.026506131514906883, 0.012845278717577457, 0.04461665451526642, -0.03458990156650543, 0.01140003465116024, -0.008689452894032001, 0.006764460355043411, 0.0019354872638359666, 0.03847586736083031, -0.024275297299027443, -0.00018862004799302667, -0.008401603437960148, 0.025450682267546654, -0.022764088585972786, 0.0005595822003670037, 0.00022469492978416383, 0.01924992725253105, -0.03000829741358757, -0.005906909238547087, -0.0001937736087711528, -0.014092626050114632, -0.01357689592987299, -0.007214225362986326, -0.009493032470345497, 0.016635295003652573, -0.0019729677587747574, 0.020161449909210205, 0.03406217694282532, -0.05857734754681587, 0.0001128159710788168, -0.02037733793258667, 0.015891684219241142, -0.008749421685934067, 0.026266256347298622, 0.01844634860754013, -0.0009587483364157379, -0.015208042226731777, -0.04447272792458534, -0.04255373403429985, -0.0027780462987720966, 0.024707071483135223, 0.00663252966478467, -0.022320320829749107, 0.017127038910984993, 0.005466139875352383, 0.0012151141418144107, -0.01357689592987299, -0.015112092718482018, -0.016599314287304878, 0.018602266907691956, 0.024515172466635704, -0.010884304530918598, 0.03367837890982628, -0.0030539019498974085, 0.020545249804854393, -0.0021993492264300585, -0.027249742299318314, 0.03989112749695778, 0.0009684932301752269, 0.03677275776863098, 0.029912348836660385, -0.01709105633199215, -0.03943536430597305, -0.01652735285460949, -0.02379554882645607, -0.003190330695360899, -0.009648950770497322, 0.003781021572649479, -0.0005843192338943481, 0.025882456451654434, 0.01914198324084282, 0.03391825407743454, -0.02124088630080223, -0.011555952951312065, 0.003864977741613984, -0.02106097899377346, 0.015879690647125244, 0.010008762590587139, -0.015459910966455936, 0.0009954790584743023, 0.007454099599272013, 0.02777746506035328, -0.007963832467794418, 0.002220338210463524, -0.011100191622972488, 0.004440676420927048, -0.016251496970653534, -0.009972781874239445, 0.04437677934765816, -0.0034931721165776253, -0.01510009914636612, 0.006734475959092379, -0.0195617638528347, -0.011573944240808487, -0.030536022037267685, 0.012461479753255844, -0.0008912836201488972, -0.006332686636596918, -0.009762891568243504, -0.00925315823405981, 0.02590644359588623, -0.010452530346810818, -0.0147522808983922, 0.024083398282527924, -0.01214364543557167, 0.0009542506886646152, -0.026242269203066826, -0.017246974632143974, 0.01776270568370819, 0.004596594721078873, -0.002272810786962509, -0.0011146666947752237, -0.0038289965596050024, -0.021156929433345795, 0.015184055082499981, -0.007394130807369947, -0.009091243147850037, -0.02926468662917614, -0.043153420090675354, -0.01596364751458168, -0.018122516572475433, -0.016623301431536674, 0.01068640872836113, 0.004170817788690329, 0.03130362182855606, -0.008701447397470474, -0.03622104600071907, 0.002559160813689232, -0.0029339648317545652, -0.00850954744964838, 0.034445974975824356, -0.0329347662627697, -0.02590644359588623, 0.019741669297218323, 0.037924155592918396, 0.02633821777999401, -0.03423009067773819, -0.0347817987203598, -0.01912998966872692, -0.020833099260926247, -0.022943994030356407, -0.008215701207518578, -0.029120761901140213, 0.01236552931368351, -0.03396622836589813, -0.014176581986248493, 0.0204972755163908, -0.007669986691325903, -0.015699785202741623, 0.0029474578332155943, -0.0069803474470973015, 0.00838960986584425, 0.019345877692103386, 0.020893067121505737, 0.018410366028547287, -0.03499768674373627, -0.0062067522667348385, 0.00894132163375616, 0.046631600707769394, 0.016371434554457664, 0.0014789761044085026, -0.008131745271384716, 0.00591590441763401, 0.014608356170356274, 0.015639817342162132, 0.010542484000325203, 0.014140601269900799, 0.03535749763250351, -0.015184055082499981, -0.007106281816959381, 4.462508877622895e-05, -0.011178150773048401, 0.05387580767273903, 0.004227787721902132, 0.004389703273773193, -0.015399942174553871, -0.009187192656099796, -0.05186086520552635, -0.017474856227636337, -0.028808925300836563, -0.037132568657398224, 0.015040130354464054, -0.024071404710412025, -0.005259247962385416, -0.010266628116369247, -0.021348828449845314, 0.047303248196840286, -0.0006978848250582814, 0.03837991878390312, -0.026362206786870956, 0.02317187562584877, -0.004572607576847076, 0.01510009914636612, 0.03360641375184059, 0.02945658750832081, -0.02409539185464382, -0.014800256118178368, 0.012629391625523567, 0.021024998277425766, 0.04025093838572502, -0.021660666912794113, -0.004500645212829113, -0.054019734263420105, 0.017678748816251755, 0.047615084797143936, 0.002779545495286584, -0.007046313025057316, 0.010710395872592926, -0.038739729672670364, -0.012341542169451714, -0.020365344360470772, -0.005523109808564186, 0.014152594842016697, 0.00456661032512784, -0.021912533789873123, -0.013133128173649311, -0.03888365253806114, 0.027489615604281425, 0.026002394035458565, 0.03670079633593559, 0.0032053228933364153, -0.02900082617998123, 0.0032113196793943644, 0.014380475506186485, -0.04744717478752136, 0.012449486181139946, -0.01444044429808855, 0.02229633368551731, -0.0372764952480793, 0.019609740003943443, 0.00785588938742876, -0.01183780562132597], [0.026150722056627274, -0.012554884888231754, 0.04349144175648689, 0.0075532421469688416, -0.003694106824696064, 0.059105709195137024, -0.02550330013036728, 0.06337106972932816, -0.02259625494480133, -0.021555302664637566, 0.03973386436700821, -0.02172033302485943, -0.009717659093439579, 0.002862615277990699, -0.040774814784526825, 0.04209504649043083, 0.002426241058856249, 0.00273884367197752, -0.03765195980668068, -0.007616715040057898, 0.04562412202358246, 0.04138415306806564, -0.01793736405670643, -0.007502464111894369, -0.03262493014335632, -0.011291779577732086, 0.0029022858943790197, -0.02569371834397316, 0.04303443804383278, -0.06834731996059418, 0.05494190379977226, -0.04686818644404411, 0.011634532362222672, -0.010326996445655823, -0.0020692076068371534, -0.013126138597726822, 0.002464324701577425, -0.0057506198063492775, 0.01910525932908058, 0.0008616409031674266, -0.006109239999204874, 0.013151528313755989, 0.014903372153639793, 0.0030514465179294348, 0.0031498291064053774, 0.023269064724445343, 0.01230099517852068, -0.020235072821378708, 0.01891484297811985, 0.04229815676808357, 0.06687475740909576, 0.06083216518163681, 0.016350548714399338, 0.017746945843100548, 0.026430001482367516, 0.039479970932006836, 0.01294206827878952, 0.011545670218765736, 0.037499625235795975, 0.009831910021603107, -0.044659338891506195, -0.012446981854736805, -0.03056841529905796, 0.029400520026683807, -0.01603318564593792, -0.03851518779993057, -0.030822306871414185, 0.031710922718048096, -0.034199051558971405, -0.01902909390628338, -0.03412288427352905, 0.006293310783803463, 0.010238134302198887, -0.07687804102897644, -0.03904835879802704, 0.05095582455396652, -0.02070477046072483, 0.020349323749542236, 0.027927955612540245, 0.0002626179775688797, -0.048950087279081345, 0.0356462262570858, 0.008511679247021675, 0.021352190524339676, 0.024411572143435478, -0.023776846006512642, -0.07159712165594101, 0.015779294073581696, -0.015271513722836971, -0.021961528807878494, -0.03813435137271881, -0.005223797168582678, -0.0017819938948377967, 0.06855043768882751, 0.04988948255777359, 0.03732190281152725, 0.001069513731636107, 0.017683472484350204, -0.003389438148587942, 0.004938170313835144, -0.009057543240487576, -0.04138415306806564, 0.029908301308751106, -0.019181426614522934, 0.00966688059270382, -0.00021104648476466537, -0.03452910855412483, 0.0573284737765789, -0.013341945596039295, 0.034808386117219925, -0.004439909942448139, -0.05240299925208092, 0.014002061448991299, 0.053012337535619736, -2.965361636597663e-05, -0.008054676465690136, 0.026226889342069626, -0.03922608122229576, 0.008175274357199669, -0.006439297925680876, 0.015322291292250156, -0.002762645948678255, 0.01852131262421608, -0.0638788491487503, 0.005017511080950499, -0.010434899479150772, 0.033411990851163864, -0.015614265576004982, -0.05118432641029358, 0.000915592594537884, -0.011513934470713139, -0.058801040053367615, 0.02838495746254921, -0.03572239354252815, -0.0014186131302267313, 0.03018758073449135, -0.016959885135293007, -0.02260894887149334, -0.0041161999106407166, -0.02250739373266697, 0.015995102003216743, 0.025046298280358315, 0.014129006303846836, 0.004392305854707956, -0.035697005689144135, -0.029552854597568512, 0.01259296853095293, 0.0048556555993855, 0.05306311324238777, 0.0016248992178589106, -0.037778906524181366, -0.006848696153610945, -0.01562695950269699, -0.040495533496141434, -0.0042463187128305435, 0.043846890330314636, 0.016972579061985016, 0.03369126841425896, 0.0074770753271877766, 0.0005442777764983475, -0.04509095102548599, -0.02410690300166607, -0.018965620547533035, 0.009590713307261467, 0.004303444176912308, -0.0017931016627699137, -0.007889647036790848, 0.045751068741083145, -0.0528092235326767, 0.005639542825520039, -0.025960303843021393, 0.004243144765496254, -0.061898503452539444, 0.017505750060081482, -0.0318632572889328, -0.03153320029377937, 0.01390050444751978, -0.042780548334121704, -0.009889034554362297, -0.005671279039233923, -0.00861323531717062, 0.014611397869884968, -0.041181039065122604, -0.03960691764950752, -0.05306311324238777, 0.022926311939954758, 0.0031577630434185266, 0.016604438424110413, -0.0324472077190876, 0.013278473168611526, -0.024855880066752434, 0.011482197791337967, -0.03153320029377937, 0.021542608737945557, -0.042272768914699554, -0.0025214499328285456, -0.028054900467395782, -0.014827204868197441, -0.04950864613056183, 0.018051614984869957, 0.01982884854078293, -0.05367245152592659, 0.06936288625001907, 0.061390724033117294, -0.07200334221124649, 0.002148548373952508, 0.008003897964954376, -0.0011504413560032845, 0.021872665733098984, -0.048163026571273804, 0.00776270218193531, -0.04120642691850662, -0.016261685639619827, 0.07794438302516937, -0.007838869467377663, 0.01990501582622528, -0.03158397972583771, 0.012396203354001045, 0.00812449585646391, 0.04509095102548599, -0.04402461275458336, -0.03168553486466408, -0.007267615757882595, -0.005436430219560862, -0.0485946424305439, 0.02967979945242405, 0.04938170313835144, -0.023230981081724167, -0.02061590924859047, -0.05915648490190506, 0.02889273874461651, 0.014598703943192959, 0.018762508407235146, -0.013011887669563293, -0.0197145976126194, 0.018356282263994217, -0.01245332881808281, -0.03876907750964165, 0.02818184532225132, -0.022355059161782265, 0.022253502160310745, -0.0366617888212204, 0.02000657096505165, -0.024233847856521606, -0.01195189543068409, -0.006439297925680876, -0.0018756160279735923, -0.018597479909658432, 0.05367245152592659, 0.03584934026002884, -0.0016439410392194986, -0.026303056627511978, 0.044760894030332565, -0.046944353729486465, 0.009927118197083473, 0.021364886313676834, 0.003024470526725054, -0.0459795705974102, 0.0360778383910656, -0.05753158777952194, 0.020235072821378708, -0.013380029238760471, -0.021745720878243446, 0.0025103422813117504, -0.039683084934949875, 0.017556527629494667, 0.042653605341911316, -0.020857105031609535, -0.033107321709394455, 0.04130798578262329, -0.06915976852178574, 0.03567161411046982, 0.02180919423699379, -0.002319924533367157, 0.002908633090555668, 0.031406253576278687, 0.015246124938130379, -0.03722034767270088, 0.026810836046934128, 0.0226978100836277, -0.04003853350877762, 0.010561845265328884, -0.00734378257766366, -0.03572239354252815, 0.011583753861486912, 0.03323426470160484, -0.004474820103496313, -0.023230981081724167, -0.04359300062060356, 0.03259953856468201, 0.07403446733951569, -0.028054900467395782, -0.011958242394030094, -0.032117146998643875, 0.0178231131285429, -0.001842292957007885, -0.020958660170435905, -0.01006041094660759, -0.01363391987979412, -0.025820663198828697, 0.020438184961676598, 0.026150722056627274, 0.05316467210650444, -0.029502077028155327, -0.028461124747991562, 0.04300905019044876, -0.029933689162135124, 0.05687147378921509, 0.004563681781291962, -0.025642940774559975, 0.013202305883169174, 0.06885510683059692, -0.05115893483161926, -0.061086054891347885, 0.027242450043559074, -0.06834731996059418, -0.04179037734866142, -0.04392305761575699, 0.046461962163448334, -0.026836225762963295, 0.005906127858906984, 0.005303137935698032, 0.008524373173713684, -0.016083963215351105, 0.013062666170299053, -0.027420174330472946, 0.05230144411325455, 0.07545625418424606, -0.005975947715342045, -0.047452133148908615, -0.025439828634262085, 0.011958242394030094, 0.0513620488345623, -0.003354528220370412, 0.049254756420850754, 0.030898474156856537, -0.0025373182725161314, -0.0017708862433210015, -0.00856245681643486, 0.008695749565958977, 0.05854715034365654, -0.009635144844651222, -0.013138833455741405, 0.007032766938209534, -0.01318961102515459, 0.015906238928437233, 0.05270766839385033, 0.0490262545645237, -0.016667911782860756, 0.03790585324168205, -0.03612861782312393, -0.012669135816395283, -0.017873890697956085, -0.022266196087002754, -0.04003853350877762, 0.0002981229918077588, -0.029425909742712975, 0.015804683789610863, -0.03457988426089287, 0.006677320227026939, 0.036890290677547455, 0.02937513031065464, 0.018648257479071617, 0.039175305515527725, 0.0512097142636776, 0.013519668951630592, -0.018787896260619164, -0.03714418038725853, -0.00046057323925197124, -0.03772812709212303, -0.007711924146860838, -0.004046380054205656, 0.016858329996466637, 0.021542608737945557, -0.004011469893157482, -0.03006063587963581, 0.024614684283733368, -0.002957824384793639, -0.015995102003216743, 0.01722647063434124, 0.016997968778014183, -0.016147436574101448, 0.018635563552379608, -0.026226889342069626, 0.03216792643070221, 0.008207010105252266, -0.0625586211681366, 0.02599838748574257, -0.049635592848062515, -0.019536873325705528, -0.00031042081536725163, -0.04026703163981438, -0.014954150654375553, 0.0029657583218067884, -0.010841124691069126, 0.017391499131917953, 0.04948325827717781, 0.008352997712790966, 0.014129006303846836, 0.017454972490668297, -0.005027031991630793, -0.03333582356572151, 0.03846441209316254, 0.06245706230401993, -0.015322291292250156, -0.003979733679443598, -0.026556946337223053, -0.00734378257766366, -0.0018089697696268559, -0.021263329312205315, 0.051819052547216415, -0.00769288232550025, 0.05768392235040665, 0.034097492694854736, -0.0015741210663691163, 0.0022215419448912144, -0.04887391999363899, 0.005718883592635393, -0.02607455477118492, -0.03468144312500954, 0.04410078004002571, 0.06469129770994186, 0.0022469309624284506, 0.020070044323801994, -0.04669046401977539, -0.020857105031609535, -0.0060394201427698135, 0.010974416509270668, -0.05854715034365654, -0.03592550754547119, 0.018280116841197014, 0.014116311445832253, 0.008600540459156036, 0.036001671105623245, -0.050041817128658295, -0.029324352741241455, 0.009622449986636639, 0.01006041094660759, -0.03457988426089287, -0.03772812709212303, -0.028156455606222153, 0.008575151674449444, 0.018876759335398674, 0.006115587428212166, -0.00488104484975338, 0.017201080918312073, 0.0019200468668714166, -0.003709974931553006, -0.04092714935541153, 0.016794856637716293, 0.011456809006631374, -0.006461513228714466, -0.06651931256055832, -0.0004958799108862877, -0.02967979945242405, 0.019663820043206215, -0.026658503338694572, -0.013075361028313637, 0.0019263941794633865, 0.02907046303153038, -0.010009633377194405, 0.042247381061315536, 0.053723230957984924, 0.08764299750328064, 0.04453239217400551, 0.01961304061114788, -0.06311717629432678, 0.001614584936760366, -0.006969294045120478, 0.009057543240487576, 0.005001642741262913, -0.0026753712445497513, -0.004789009690284729, -0.028816571459174156, 0.024970130994915962, -0.02290092222392559, -0.00405590096488595, -0.04572568088769913, -0.018902147188782692, -0.019841542467474937, 0.011291779577732086, -0.012326383963227272, -0.034300606697797775, -0.022583559155464172, 0.056312911212444305, 0.03955613821744919, 0.012129618786275387, 0.030822306871414185, -0.07510080933570862, -0.01721377670764923, 0.012808775529265404, 0.02729322947561741, 0.011513934470713139, -0.012612010352313519, 0.006052115000784397, 0.012129618786275387, -0.04559873417019844, -0.0025531863793730736, 0.020641297101974487, -0.000301494961604476, -0.012104230001568794, -0.050448041409254074, 0.02378953993320465, -0.02490665763616562, 0.029045073315501213, 0.0410287044942379, -0.01682024635374546, -0.041561875492334366, 0.00841012317687273, -0.02927357517182827, -0.0072739627212285995, 0.024132292717695236, -0.005712536163628101, -0.021923445165157318, -0.035392336547374725, -0.036280952394008636, 0.016655215993523598, -0.0028070767875760794, -0.030212968587875366, -0.009908076375722885, -0.0009124189964495599, -0.02310403622686863, -0.033488158136606216, 0.008092760108411312, -0.0005672865663655102, 0.00815623253583908, -0.013875115662813187, -0.04212043434381485, 0.0022802541498094797, 0.00248812697827816, 0.0035005153622478247, -0.017467666417360306, -0.0013234042562544346, 0.01910525932908058, 0.003862309269607067, 0.010631664656102657, 0.0017343894578516483, 0.06753487139940262, -0.002570641227066517, -0.041764985769987106, 0.021834582090377808, 0.023142119869589806, 0.0032974027562886477, -0.008391081355512142, 0.011786866001784801, -0.005080983508378267, -0.027724843472242355, 0.018140476197004318, 0.030035246163606644, 0.04062248021364212, 0.006912169046700001, 0.01562695950269699, -0.025338271632790565, -0.02757250890135765, -0.011482197791337967, 0.004677932243794203, -0.0015772947808727622, -0.04732519015669823, 0.024322709068655968, -0.019562263041734695, 0.009203530848026276, 0.028410347178578377, 0.001985106384381652, 0.00946376845240593, 0.01843244954943657, 0.02150452509522438, -0.0153857646510005, 0.010917291045188904, -0.01712491363286972, -0.019854236394166946, -0.03597628325223923, 0.06362495571374893, -0.013468891382217407, 0.018597479909658432, 0.05006720498204231, 0.021834582090377808, 0.005385652184486389, -0.019168732687830925, 0.019067175686359406, -0.008067370392382145, 0.01428134087473154, 0.020171599462628365, -0.009425684809684753, -0.0017581917345523834, -0.023573732003569603, -0.000918766250833869, 0.0008017385844141245, -0.016452103853225708, -0.01770886220037937, 0.018775202333927155, -0.004531945567578077, -0.006620194762945175, 0.014586009085178375, 0.031330086290836334, -0.03734729439020157, 0.034402161836624146, 0.006109239999204874, 0.0366617888212204, 0.021466441452503204, 0.016579050570726395, 0.0011647227220237255, 0.00010512653534533456, 0.014573315158486366, 0.017505750060081482, -0.01011118944734335, -0.022647032514214516, 0.01693449541926384, 0.011012500151991844, 0.017975447699427605, 0.021885361522436142, 0.050143372267484665, 0.030949251726269722, 0.043466053903102875, -0.017048746347427368, -0.017899280413985252, -0.012167702428996563, -0.016883717849850655, -0.023180203512310982, -0.03831207752227783, 0.025934914126992226, -0.008429164998233318, -0.00846724770963192, 0.01952417939901352, 0.009704964235424995, -0.03975925222039223, -0.02311673015356064, 0.013481585308909416, -0.04750291258096695, 0.01913064904510975, 0.014776427298784256, -0.03364049270749092, 0.03097464144229889, 0.005595111753791571, -0.011367946863174438, -0.01494145579636097, 0.01972729153931141, 0.014078227803111076, -0.01010484155267477, 0.0051381089724600315, 0.011678962968289852, 0.005001642741262913, -0.02568102441728115, -0.019993877038359642, -0.0330311544239521, 0.00211681192740798, 0.016096657142043114, 0.008283177390694618, 0.01654096692800522, 0.01264374703168869, 0.0164394099265337, 0.010333343409001827, -0.0014701846521347761, 0.0009695443441160023, -0.02013351581990719, 0.014192478731274605, -0.011767825111746788, -0.034300606697797775, 0.04003853350877762, 0.021479135379195213, 0.0086576659232378, -0.029019683599472046, -0.004566855262964964, 0.0022627990692853928, 0.020831715315580368, 0.03861674666404724, -0.009501852095127106, 0.04245049133896828, -0.01499223429709673, 0.010035022161900997, 0.015208041295409203, -0.02519863285124302, -0.01259931642562151, 0.0031704576686024666, -0.03800740838050842, -0.0023326189257204533, 0.0009259069338440895, -0.021859971806406975, 0.007953119464218616, -0.047731414437294006, -0.01494145579636097, 0.008086412213742733, -0.0372457355260849, -0.035493891686201096, -0.0017407367704436183, -0.026556946337223053, -0.010339690372347832, 0.04359300062060356, 0.01473834365606308, -0.000702165940310806, 0.017607307061553, -0.018000835552811623, 0.006486902479082346, -0.00425901310518384, 0.0032942292746156454, 0.03214253857731819, 0.019422622397542, 0.0023564212024211884, -0.02759789675474167, -0.019752681255340576, -0.0475790798664093, -0.005401520524173975, -0.013672003522515297, 0.018051614984869957, -0.037093400955200195, -0.04412616789340973, -0.015487320721149445, 0.015969712287187576, 0.023954568430781364, 0.05458645895123482, 0.03407210484147072, 0.0008322848007082939, -0.005883912555873394, -0.036204785108566284, -0.027953343465924263, 0.0018898973939940333, 0.020070044323801994, -0.0010457114549353719, -0.003703627735376358, 0.0071787540800869465, -0.04851847514510155, -0.02998446859419346, 0.0625586211681366, -0.043364498764276505, 0.0013321316801011562, -0.0009631970897316933, 0.012967457063496113, -0.0013924307422712445, 0.03823591023683548, -0.008784611709415913, 0.020450878888368607, 0.031914036720991135, 0.006131455767899752, 0.0034402161836624146, -0.011082320474088192, 0.00815623253583908, -0.0017296290025115013, -0.029197407886385918, -0.04471011832356453, -0.040673259645700455, -0.020869798958301544, -0.020057350397109985, -0.007108934223651886, 0.025515995919704437, -0.032726485282182693, -0.006658278405666351, -0.03757579252123833, 0.019460706040263176, -0.006115587428212166, -0.044151559472084045, 0.031101586297154427, 0.021631469950079918, 0.01040951069444418, -0.028258012607693672, -0.004846134688705206, -0.021847277879714966, -0.02378953993320465, 0.016591744497418404, 0.006410735193639994, -0.0297559667378664, -0.02480510249733925, 0.047756802290678024, 0.000347115914337337, 0.023459482938051224, 0.044354669749736786, 0.017391499131917953, -0.03904835879802704, -0.01584276743233204, -8.048130257520825e-05, 0.03732190281152725, -0.007832521572709084, -0.020387407392263412, -0.03567161411046982, 0.043466053903102875, 0.006981988903135061, -0.00582678709179163, -0.028791183605790138, 0.015119179151952267, -0.007527853362262249, -0.012948415242135525, -0.03158397972583771, 0.00292450119741261, -0.0031387212220579386, -0.004312965087592602, 0.008879819884896278, 0.029730577021837234, 0.005176192615181208, 0.017962753772735596, -0.011298127472400665, 0.053926341235637665, -0.015423848293721676, 0.010434899479150772, 0.004662064369767904, -0.013329251669347286, -0.026988560333848, 0.0036972803063690662, 0.004439909942448139, 0.012624705210328102, -0.00911466870456934, -0.0512097142636776, 0.021136384457349777, 0.014217868447303772, 0.02856268174946308, -0.04410078004002571, -0.030619194731116295, 0.08251441270112991, -0.018254727125167847, -0.010130231268703938, 0.0360778383910656, 0.0091654472053051, -0.01793736405670643, -0.029451297596096992, 0.0197145976126194, -0.015093790367245674, 0.006740792654454708, -0.012910331599414349, -0.05174288526177406, 0.014903372153639793, 0.0442277267575264, 0.003687759628519416, 0.0157158225774765, 0.003192672971636057, -0.03117775358259678, -0.008073718287050724, -0.008879819884896278, 0.03691567853093147, -0.005693494342267513, -0.002881657099351287, -0.016858329996466637, 0.008187968283891678, -0.008118148893117905, -0.006455165799707174, -0.030492249876260757, 0.03645867481827736, -0.006188580766320229, -0.0031672839540988207, -0.03904835879802704, -0.018762508407235146, -0.027927955612540245, -0.005223797168582678, -0.017493056133389473, 0.0382612980902195, -0.04658890515565872, 0.00021937726705800742, -0.04410078004002571, -0.00966688059270382, 0.015690432861447334, 0.012218479998409748, -0.002729322761297226, -0.03953075036406517, 0.023726066574454308, -0.005185713525861502, -0.02549060620367527, 0.009470115415751934, -0.026455389335751534, 0.03833746537566185, -0.010174661874771118, -0.013151528313755989, -0.02510976977646351, -0.004309791140258312, -0.005153977312147617, -0.030390692874789238, -0.025033602491021156, -0.008790958672761917, -0.06418351829051971, 0.04110487177968025, -0.015461931005120277, 0.028334179893136024, -0.028537292033433914, 0.058699484914541245, 0.005544333718717098, 0.0012004260206595063, -0.022253502160310745, -0.01982884854078293, -0.004157457035034895, -0.01633785292506218, -0.03308193385601044, 0.0020374711602926254, -0.012135965749621391, 0.023649899289011955, -0.03366588056087494, 0.01105058379471302, 0.02199961245059967, 0.005306311417371035, -0.010168314911425114, -0.012193091213703156, -0.012434286996722221, -0.038794469088315964, 0.02378953993320465, 0.007502464111894369, 0.014497147873044014, 0.012148660607635975, 0.04542101174592972, 0.019663820043206215, -0.006683667190372944, 0.010257176123559475, -0.004465299192816019, -0.004919128492474556, -0.0031847390346229076, 0.029222795739769936, 0.032015591859817505, -0.006398040801286697, 0.00856880471110344, 0.005842654965817928, 0.0010401576291769743, -0.0086576659232378, -0.023129424080252647, 0.005588764790445566, -0.0063631306402385235, 0.03582394868135452, -0.0020850757136940956, 0.02739478461444378, -0.019244899973273277, 0.00041098525980487466, -0.038972191512584686, 0.035493891686201096, 0.0025912700220942497, -0.0020311239641159773, -0.009914424270391464, 0.014865288510918617, -0.006042594090104103, 0.015957018360495567, -0.007280310150235891, -0.008575151674449444, 0.007432644255459309, -0.013506975024938583, 0.02338331565260887, -0.03163475543260574, 0.015169957652688026, 0.007020072545856237, -0.005747446324676275, -0.022050390020012856, 0.046461962163448334, 0.06829654425382614, 0.036204785108566284, -0.001696305931545794, -0.00785791128873825, 0.0025103422813117504, 0.002746777841821313, 0.009076585061848164, 0.01195189543068409, 0.00826413556933403, -0.012681830674409866, 0.01662982814013958, -0.032396428287029266, -0.003986080642789602, -0.03587472811341286, 0.027521729469299316, -0.0016534618334844708, -0.010193703696131706, -0.019295677542686462, 0.03135547786951065, -0.03755040466785431, -0.002272319979965687, -0.021923445165157318, -0.012700872495770454, 0.02391648478806019, 0.03018758073449135, -0.007629409432411194, 0.009444726631045341, 0.01363391987979412, 0.004024164285510778, -0.02759789675474167, 0.014789121225476265, -0.022151947021484375, 0.03275187313556671, 0.02828340232372284, -7.170422759372741e-05, -0.0009100387687794864, -0.02010812796652317, 0.013963977806270123, -0.000321925210300833, -0.015055706724524498, 0.0015519056469202042, 0.029629021883010864, 0.009501852095127106, -0.030339915305376053, 0.04308521747589111, -0.030771529302001, 0.029045073315501213, 0.01390050444751978, -0.005833134055137634, -0.005296790506690741, 0.011291779577732086, 0.005582417361438274, -0.0012670722790062428, -0.00018119451124221087, 0.024068819358944893, -0.00038361267070285976, 0.026303056627511978, -0.020590519532561302, -0.005090504419058561, -0.006312352605164051, 0.013786254450678825, 0.012212133035063744, 0.020031960681080818, 0.02747095189988613, -0.0034973416477441788, -0.024449655786156654, 0.025731801986694336, 0.015982406213879585, 0.010866513475775719, -0.020146211609244347, -0.01662982814013958, 0.009381254203617573, -0.003078422276303172, -0.004995295777916908, 0.0025627072900533676, 0.02330714836716652, -0.02780100889503956, -0.012288300320506096, 0.031609367579221725, -0.004370090086013079, -0.04879775270819664, -0.0002528987533878535, -0.02538904920220375, 0.0012861141003668308, 0.006620194762945175, -0.03183786943554878, -0.02588413655757904, 0.04344066604971886, 0.021377580240368843, 0.053418561816215515, -0.0010472983121871948, -0.03158397972583771, 0.00031637135543860495, -0.01259296853095293, 0.027064727619290352, -0.0038115312345325947, 0.026303056627511978, 0.01508109550923109, -0.010555497370660305, -0.005776009056717157, -0.016769466921687126, 0.044151559472084045, -0.0006676526973024011, -0.02071746438741684, 0.007089892402291298, -0.02169494330883026, 0.0022326495964080095, 0.013456196524202824, 0.030543027445673943, 0.015665043145418167, -0.007807132788002491, 0.0202223788946867, 0.005325353238731623, -0.00033759503276087344, 0.0202223788946867, -0.0006601153290830553, -0.0248812697827816, 0.005395173095166683, 0.00980652030557394, -0.013418112881481647, -0.0491785891354084, -0.01623629778623581, -0.0008076891535893083, -0.028943516314029694, -0.009927118197083473, 0.003916260786354542, -0.010739567689597607, 0.010428552515804768, 0.038794469088315964, -0.02640461176633835, -0.013062666170299053, 0.017175693064928055, -0.0021929792128503323, 0.008835389278829098, -0.03153320029377937, -0.004125720821321011, 0.012656441889703274, -0.0012734195915982127, 0.008327607996761799, -0.0012519975425675511, -0.028918128460645676, 0.028435736894607544, 0.019955793395638466, -0.010733220726251602, -0.0302637480199337, -0.03325965628027916, -0.004452604800462723, -0.00013160651724319905, -0.0019422622863203287, 0.014776427298784256, 0.018381671980023384, -0.021847277879714966, -0.012040756642818451, -0.03935302793979645, -0.02498282492160797, 0.028715016320347786, 0.03224409371614456, -0.02510976977646351, -0.0007366791251115501, 0.036179397255182266, 0.023167507722973824, -0.012339077889919281, -0.0015828486066311598, 0.01902909390628338, 0.00827048346400261, 0.01703605242073536, 0.02149183116853237, 0.012884942814707756, 0.04100331664085388, 0.013202305883169174, 0.003373570041731, -0.017099525779485703, 0.03836285322904587, 0.002272319979965687, 0.0025103422813117504, -0.011317169293761253, 0.0285880696028471, 0.030212968587875366, -0.0005331700667738914, 0.03424982726573944, 0.014192478731274605, -0.010142925195395947, 0.031406253576278687, 0.0010012806160375476, -0.005404694005846977, -0.01911795511841774, -0.01374817080795765, 0.022367753088474274, -0.017061442136764526, -0.03358971327543259, -0.013621225021779537, 0.016667911782860756, 0.060679830610752106, -0.00614732364192605, -0.028232622891664505, 0.023853013291954994, 0.011672616004943848, 0.003709974931553006, 0.0006692394963465631, -0.04153648763895035, 0.005966426804661751, -0.030822306871414185, -0.0008719551842659712, 0.00393530260771513, -0.015474625863134861, -0.0035671615041792393, 0.013989366590976715, -0.00278644822537899, 0.024970130994915962, 0.01574121043086052, 0.005474513862282038, 0.024678155779838562, -0.018457839265465736, 0.02241853065788746, 0.006163191981613636, 0.06758565455675125, 0.020958660170435905, 0.01414170116186142, -0.0017153476364910603, 0.027521729469299316, -0.009267003275454044, -0.0043954793363809586, 0.00651863869279623, 0.030212968587875366, 0.014852594584226608, -0.005696668289601803, 0.022063083946704865, 0.008714791387319565, 0.012726261280477047, -0.0037290167529135942, -0.009032154455780983, 0.019574956968426704, -0.0022580386139452457, 0.015753906220197678, 0.005122240632772446, -0.010993458330631256, -0.01624899171292782, 0.000361198908649385, -0.004398652818053961, -0.0011909051099792123, -0.004141588695347309, 0.0011663094628602266, -0.0033196182921528816, -0.02062860317528248, 0.020831715315580368, -0.028131067752838135, -0.0045097297988832, -0.03496072068810463, 0.0057410988956689835, -0.027242450043559074, 0.00042209296952933073, 0.023205591365695, -0.006943905260413885, 0.0027134546544402838, 0.019143342971801758, -0.03856596723198891, 0.027217062190175056, -0.013164222240447998, 0.008695749565958977, -0.016985274851322174, 0.019143342971801758, -0.009432031773030758, -0.03318348899483681, -0.009387601166963577, 0.013646614737808704, 0.026836225762963295, -0.0027880349662154913, -0.027039337903261185, -0.027318617329001427, -0.031507812440395355, -0.01344350166618824, -0.010371427051723003, 0.015106484293937683, -0.01011118944734335, 0.0164394099265337, -0.0040527270175516605, -0.010231787338852882, -0.03056841529905796, 0.033818215131759644, 0.011621837504208088, 0.0072739627212285995, -0.011907464824616909, -0.03653484210371971, -0.02736939676105976, -0.0008552936487831175, 0.020984049886465073, -0.017277248203754425, 0.0035671615041792393, -0.019067175686359406, -0.00946376845240593, -0.007838869467377663, 0.015157262794673443, 0.00517936609685421, -0.029349742457270622, 0.009635144844651222, 0.003662370378151536, 0.012618358246982098, 0.028994295746088028, 0.008448206819593906, -0.00831491407006979, 0.002489713719114661, 0.01390050444751978, 0.034605275839567184, -0.02726783975958824, 0.01528420764952898, 0.01209153514355421, -0.0159316286444664, 0.0018137302249670029, 0.0088036535307765, 0.0208063255995512, 0.0029927343130111694, -0.03315810114145279, -0.03148242086172104, 0.024944741278886795, -0.020882492884993553, 0.02927357517182827, -0.0062203174456954, -0.030543027445673943, 0.0024865400046110153, -0.016160130500793457, -0.03386899083852768, -0.006052115000784397, -0.046842798590660095, -0.007940425537526608, 0.003541772486642003, -0.00806102342903614, -0.006210796535015106, 0.03006063587963581, -0.005499903112649918, -0.0036115923430770636, -0.025465216487646103, -0.008372039534151554, 0.009203530848026276, 0.01050471980124712, 0.00815623253583908, -0.03696645796298981, -0.02547791227698326, 0.007451686076819897, 0.024525823071599007, 0.02199961245059967, 0.01671868935227394, -0.03148242086172104, 0.04999103769659996, 0.008372039534151554, 0.0041066789999604225, 0.001962890848517418, 0.0020216030534356833, 0.018597479909658432, 0.005369783844798803, -0.0017502576811239123, -0.010866513475775719, -0.024424266070127487, -0.006058461964130402, 0.045344844460487366, 8.583680755691603e-05, 0.002737256931141019, -0.009387601166963577, -0.012878595851361752, -0.027064727619290352, -0.02570641227066517, -0.0029784529469907284, -0.003690933110192418, 0.010460288263857365, 0.0036084186285734177, -0.004852482117712498, -0.012275605462491512, -0.0010893489234149456, -0.024919353425502777, -0.02747095189988613, 0.01862286776304245, -0.011069625616073608, 0.027166282758116722, 0.002637287601828575, 0.001066340133547783, 0.0148779833689332, -0.024576600641012192, 0.010181008838117123, -0.014979539439082146, -0.005515770986676216, -0.015487320721149445, -0.023472176864743233, 0.005309484899044037, -0.0004391512193251401, -0.004205061588436365, -0.02637922205030918, -0.006702709011733532, -0.018343588337302208, 0.022672422230243683, 0.0221138633787632, -0.002756298752501607, -0.03226948156952858, 0.017175693064928055, 0.01304997131228447, -0.019790764898061752, -0.014357508160173893, 0.018368978053331375, 0.004992121830582619, 0.015791989862918854, -0.013062666170299053, 0.016705995425581932, 0.044456224888563156, -0.01693449541926384, 0.002489713719114661, -0.0007442165515385568, 0.015017623081803322, 6.173704605316743e-05, 0.00617271289229393, -0.022862840443849564, -0.011158487759530544, -0.012732608243823051, -0.060781385749578476, 0.05029570683836937, 0.017302637919783592, 0.0053412215784192085, -0.02578257955610752, 0.04323755204677582, 0.006848696153610945, 0.0058807386085391045, -0.011044236831367016, -0.010149273090064526, -0.025236716493964195, -0.002718215109780431, -0.00872113835066557, 0.007058155722916126, 0.006734445691108704, 0.06007049232721329, 0.0285880696028471, -0.02848651446402073, 0.06875354796648026, 0.02090788260102272, -0.04587801173329353, -0.011831297539174557, -0.005810918752104044, -0.006350436247885227, -0.0324472077190876, -0.00026202292065136135, 0.033818215131759644, 0.02620149962604046, -0.027344007045030594, 0.017785029485821724, -0.006207622587680817, -0.009958854876458645, 0.012243869714438915, 0.006052115000784397, -0.02995907887816429, 0.00430661765858531, 0.00821970496326685, -0.010054063983261585, -0.01528420764952898, -0.022342363372445107, -0.003992428071796894, 0.0011044236598536372, -0.03945458307862282, -0.021567998453974724, -0.001361487782560289, -0.005639542825520039, 0.03338659927248955, -0.043059829622507095, -0.05240299925208092, 0.004046380054205656, 0.03338659927248955, -0.010054063983261585, -0.01933376118540764, 0.015791989862918854, -0.005449125077575445, 0.0003348180907778442, 0.002610311610624194, -0.018267421051859856, -0.013151528313755989, 0.03640789911150932, 0.0012496173148974776, 0.029933689162135124, 0.027140894904732704, 0.011977284215390682, -0.0015828486066311598, -0.012999193742871284, -0.03711879253387451, 0.013672003522515297, 0.018660951405763626, 0.008829042315483093, 0.01901639811694622, 0.011190223507583141, 0.017010662704706192, 0.01751844398677349, -0.011983631178736687, 0.011767825111746788, 0.08292064070701599, -0.027166282758116722, 0.018546700477600098, -0.0297559667378664, 0.011221960186958313, -0.05100660026073456, -0.009216224774718285, 0.004931822884827852, 0.0008822694653645158, 0.020958660170435905, 0.039683084934949875, 0.021136384457349777, -0.008733833208680153, 0.018178559839725494, 0.016185520216822624, 0.011539323255419731, -0.019651124253869057, -0.020755548030138016, -0.012307342141866684, 0.021745720878243446, 0.010860166512429714, 0.029629021883010864, 0.028740404173731804, 0.006048941053450108, 0.04488784074783325, -0.015906238928437233, 0.00035643845330923796, 0.008181621320545673, -0.03066997230052948, -0.043186772614717484, -0.011488544754683971, -0.02835956960916519, -0.00870844442397356, -0.0014979538973420858, 0.00792138371616602, -0.0019152864115312696, -0.009781131520867348, 0.003211714792996645, -0.022558171302080154, -0.00842281710356474, 0.0005474513745866716, -0.0105491504073143, 0.001165516092441976, -0.0006446438492275774, 0.010447594337165356, -0.018597479909658432, -0.05156515911221504, 0.011615490540862083, 0.03173631429672241, -0.005080983508378267, 0.02161877602338791, -0.015665043145418167, -0.037677351385354996, 0.04521789774298668, 0.004433562979102135, 0.016756772994995117, 0.0048683504574000835, 0.03206637129187584, 0.016502883285284042, -0.016693299636244774, -0.005722057074308395, -0.029019683599472046, -0.02389109693467617, -0.019143342971801758, 0.006709056440740824, -0.009247961454093456, -0.0024944741744548082, -0.012700872495770454, 0.011520281434059143, -0.01533498615026474, 0.006458339747041464, -0.0491785891354084, 0.027851788327097893, -0.0054269093088805676, 0.03584934026002884, -0.0013368921354413033, 0.03752501681447029, 0.0009116255678236485, 0.0002519069821573794, 0.01624899171292782, 0.017543833702802658, 0.012853206135332584, 0.004738231655210257, 0.010415857657790184, 0.005915648769587278, -0.01508109550923109, 0.05346933752298355, 0.022190028801560402, -0.03046686016023159, -0.02149183116853237, 0.022964395582675934, -0.0077373129315674305, 0.020971355959773064, 0.0012067733332514763, -0.0034402161836624146, -0.03412288427352905, 0.019866932183504105, 0.01982884854078293, 0.020171599462628365, -0.010739567689597607, -0.0019359150901436806, 0.021161772310733795, 0.014319424517452717, -0.007026419509202242, -0.06646852940320969, -0.012954763136804104, 0.008029286749660969, -0.04559873417019844, -0.007096239365637302, 0.028334179893136024, -0.015309597365558147, 0.009889034554362297, -0.0226978100836277, 0.024576600641012192, -0.011012500151991844, 0.006499596871435642, -0.00886712595820427, 0.034706830978393555], [0.0636979192495346, 0.02648802101612091, 0.06731712073087692, 0.010716225020587444, -0.0670456811785698, 0.02524392120540142, -0.008833110332489014, -0.04447092115879059, 0.004546619951725006, 0.07410312443971634, -0.017179889604449272, 0.0330025814473629, -0.04867824167013168, 0.02433912083506584, -0.0035852701403200626, 0.034043099731206894, 0.032866861671209335, 0.046823401004076004, 0.009217650629580021, -0.01123083010315895, 0.016569150611758232, 0.0355360209941864, -0.0036503025330603123, -0.01292733009904623, -0.013741650618612766, -0.03295734152197838, 0.03671225905418396, -0.014047020114958286, 0.0883537232875824, -0.0018760462990030646, 0.03431453928351402, -0.02399981953203678, 0.0015381600242108107, -0.04727580025792122, -0.00202873139642179, 0.010948080569505692, -0.032844241708517075, 0.03447287902235985, 0.015969719737768173, -0.0020499376114457846, -0.03635033965110779, 0.030650099739432335, 0.01712333969771862, -0.01261065062135458, -0.04700436070561409, 0.04822584241628647, 0.009381645359098911, -0.010229894891381264, 0.020787781104445457, 0.023208120837807655, -0.002427408704534173, 0.031622759997844696, 0.02366052009165287, 0.008833110332489014, 0.04664244130253792, 0.07138872146606445, 0.017541810870170593, 0.025470120832324028, 0.007713420316576958, -0.020165730267763138, -0.034043099731206894, 0.004679512698203325, -0.02770950086414814, 0.007012200076133013, -0.017338231205940247, -0.018435301259160042, -0.012949950061738491, 0.027483301237225533, 0.0035202375147491693, 0.0006312393816187978, 0.018548401072621346, 0.023750999942421913, 0.009098894894123077, -0.05985252186655998, 0.01988298073410988, -0.03675749897956848, 0.027867840602993965, 0.040014781057834625, 0.018435301259160042, 0.025402260944247246, -0.04257084056735039, 0.012768990360200405, -0.021568169817328453, 0.008482499979436398, -0.016376880928874016, 0.03648605942726135, -0.034110959619283676, -0.0042638699524104595, -0.022891441360116005, -0.02709876000881195, -0.03397523984313011, -0.029835781082510948, 0.03467646241188049, 0.03402047976851463, -0.006327945273369551, 0.008595599792897701, 0.007193160243332386, -0.002037213882431388, -0.06134543940424919, 0.07935096323490143, 0.02019966021180153, 0.004176217596977949, -0.03112512081861496, 0.00021877781546209008, 0.018186479806900024, -0.02958695963025093, -0.049628280103206635, -0.013074359856545925, 0.029383379966020584, 0.009607844986021519, 0.005468385294079781, -0.014194049872457981, 0.010212929919362068, 0.078446164727211, 0.014770859852433205, -0.01680666022002697, -0.02363790012896061, 0.008833110332489014, 0.04854252189397812, -0.003016942646354437, -0.010365615598857403, -0.013221390545368195, -0.005315700080245733, -0.07410312443971634, -0.019238309934735298, 0.014194049872457981, -0.055871400982141495, 0.036531299352645874, -0.06568848341703415, 0.0349026620388031, -0.0011302931234240532, 0.006565455347299576, 0.10242336243391037, -0.04381494224071503, -0.01414880994707346, 0.018163859844207764, -0.03370380029082298, -0.02895360067486763, 0.030695339664816856, -0.038770679384469986, 0.005010330118238926, 0.02179437130689621, 0.032233498990535736, 0.01418273989111185, -0.017304299399256706, 0.035943180322647095, -0.010552230291068554, 0.07460076361894608, 0.037526581436395645, 0.012022530660033226, -0.06120971962809563, -0.01387737039476633, 0.024135541170835495, -0.015291119925677776, -0.02834285981953144, -0.016342950984835625, 0.07156968116760254, 0.03856709972023964, 0.008934900164604187, 0.015460770577192307, -0.02336646057665348, -0.010337340645492077, -0.017168579623103142, -0.005818995181471109, 0.038092080503702164, 0.004854817409068346, 0.03338712081313133, 0.022303320467472076, -0.07134348154067993, -0.02644278109073639, -0.0048095774836838245, -0.0067690350115299225, -0.008488154970109463, -0.04261608049273491, -0.03359070047736168, 0.017519190907478333, 0.020719921216368675, 0.017688840627670288, 0.006022575311362743, -0.008900970220565796, 0.0006952115800231695, -0.004029187373816967, -0.019487129524350166, -0.01837874948978424, -0.05053308233618736, 0.039969541132450104, 0.006356220226734877, -0.016128059476614, 0.03175847977399826, -0.011112075299024582, 0.009115859866142273, 0.001719120074994862, -0.02214498072862625, 0.00467385770753026, -0.01957761123776436, -0.03635033965110779, -0.017541810870170593, -0.024067681282758713, 0.024520080536603928, 0.013153530657291412, 0.016659630462527275, -0.02646540105342865, 0.037843260914087296, 0.03080844134092331, -0.04704960063099861, -0.040354080498218536, 0.03481218218803406, 0.011513580568134785, 0.022574760019779205, -0.030672719702124596, -0.008482499979436398, -0.013662479817867279, -0.00014102156274020672, 0.013413660228252411, 0.03268590196967125, -0.010054590180516243, 0.026940420269966125, -0.012316590175032616, -0.034337159246206284, 0.035309821367263794, -0.05080452188849449, 0.01216956041753292, 0.024180781096220016, -0.02895360067486763, -0.05858580023050308, 0.0004025653179269284, -0.00421014754101634, -0.0006690571899525821, -0.03632771968841553, -0.003426930168643594, -0.03639557957649231, 0.003975464962422848, -0.037187281996011734, -0.006197880022227764, -0.005937749985605478, 0.02549274079501629, -0.02241642028093338, -0.04795439913868904, -0.015381600707769394, 0.002775191329419613, 0.015313739888370037, 0.03580746054649353, -0.007871760055422783, 0.010388235561549664, -0.013504140079021454, -0.013696410693228245, -0.009115859866142273, -0.0018209100235253572, 0.020143110305070877, -0.006141330115497112, 0.02673684060573578, -0.021228870376944542, 0.011276070028543472, -0.017677530646324158, 0.013798200525343418, 0.03017508052289486, 0.020663371309638023, 0.007181850261986256, 0.03171323984861374, -0.036576539278030396, -0.020290140062570572, 0.023592660203576088, -0.035377681255340576, -0.014578590169548988, -0.030356040224432945, 0.006124365143477917, 0.06645756214857101, 0.0015028163325041533, -0.020324070006608963, 0.0258320402354002, -0.0035541674587875605, 0.03164537996053696, 0.0004933987511321902, -0.01585661992430687, -0.05505708232522011, -0.012327900156378746, 0.020052630454301834, 0.002001869957894087, 0.0019467337988317013, -0.02390933968126774, -0.05008067935705185, 0.009992385283112526, 0.005536245182156563, -0.01870674081146717, 0.014872650615870953, 0.013571999967098236, -0.0069443401880562305, 0.010919805616140366, 0.005869890097528696, 0.02053895965218544, 0.013696410693228245, 0.0201883502304554, 0.00020039906667079777, -0.005615415051579475, -0.0015452287625521421, -0.010275134816765785, -0.033183541148900986, -0.012101700529456139, 0.024384360760450363, -0.05347368121147156, 0.0013162012910470366, 0.09079667925834656, -0.001206635613925755, 0.013470210134983063, -0.03992430120706558, 0.04333991929888725, 0.006780344992876053, 0.02642016112804413, -0.042502980679273605, -0.03646343946456909, 0.01934009976685047, 0.026691600680351257, -0.06234072148799896, -0.04709484055638313, -0.06188832223415375, 0.013719030655920506, 0.007866105064749718, 0.0374361015856266, 0.012554099783301353, -0.007854795083403587, 0.06722664088010788, 0.01872936077415943, 0.03117036074399948, -0.025605840608477592, 0.052523642778396606, 0.0006047315546311438, -0.01807337999343872, 0.021375900134444237, -0.011886809952557087, -0.05112120136618614, -0.028885740786790848, 0.015030990354716778, 0.024135541170835495, 0.016557840630412102, 0.012226110324263573, -0.03232397884130478, -0.0012780299875885248, 0.013063049875199795, -0.0002458157832734287, 0.04542095959186554, -0.0044420026242733, -0.023886719718575478, 0.0024825450964272022, 0.028207140043377876, -0.023773619905114174, 0.00283739622682333, 0.007854795083403587, 0.04132674261927605, 0.03524196147918701, 0.008080994710326195, -0.008505119942128658, -0.019238309934735298, -0.052161719650030136, 0.0036644400097429752, -0.05944536253809929, -0.007843485102057457, 0.03232397884130478, -0.03139656037092209, -0.04143984243273735, 0.02332122065126896, -0.008375055156648159, -0.008567324839532375, 0.060214441269636154, 0.01339104026556015, -0.03153228014707565, -0.04173390194773674, -0.029157180339097977, 0.010908495634794235, -0.03307044133543968, -0.032844241708517075, 0.02743806131184101, 0.02363790012896061, -0.022212840616703033, 0.01215825043618679, -0.001535332528874278, 0.022574760019779205, -0.028388099744915962, 0.012316590175032616, -0.016682250425219536, -0.003992429934442043, 0.033794280141592026, 0.012565410695970058, 0.04971875995397568, 0.08441784232854843, 0.029971500858664513, 0.035965800285339355, 0.01645605079829693, 0.024655800312757492, 0.038453999906778336, -0.01651260070502758, 0.0012575306463986635, 0.056188080459833145, 0.013300560414791107, 0.019713331013917923, -0.025447500869631767, -0.002687538741156459, 0.0803462415933609, 0.037843260914087296, 0.0032799001783132553, -0.031260840594768524, -0.004340212792158127, -0.04270656034350395, 0.03302520141005516, 0.002177175134420395, 0.0014759550103917718, -0.013526760041713715, -0.0002327386027900502, 0.015596490353345871, 0.03965286165475845, 0.01511016022413969, 0.010342995636165142, 0.01706678979098797, 0.013888680376112461, -0.015653040260076523, 0.018118619918823242, 0.03442763909697533, 0.01779063045978546, 0.02022228017449379, -0.026533260941505432, -0.02176043950021267, -0.0067407600581645966, 0.02456532046198845, -0.048768721520900726, 0.01339104026556015, -0.02766426093876362, 0.030288180336356163, 0.010784084908664227, 0.01744002103805542, 0.009087584912776947, -0.04616742208600044, -0.022201530635356903, 0.02368314005434513, 0.07745087891817093, 0.007996169850230217, -0.04141722247004509, 0.0014250599779188633, 0.015743520110845566, -0.021036600694060326, -0.004631445277482271, -0.01894425041973591, -0.02332122065126896, -0.033206161111593246, 0.04673292115330696, 0.025402260944247246, 0.010574850253760815, -0.013481520116329193, -0.006802964955568314, 0.03868019953370094, 0.030423900112509727, -0.011247795075178146, 0.015958409756422043, -0.011304344981908798, -0.057454802095890045, -0.013345800340175629, -0.06351695954799652, -0.006260084919631481, -0.02051633968949318, -0.05686667934060097, 0.05139264091849327, -0.03022032044827938, 0.058359600603580475, 0.022325940430164337, 0.0453304797410965, -0.00779259018599987, 0.019351409748196602, 0.04741152003407478, 0.017575740814208984, -0.022902751341462135, -0.035038381814956665, -0.029700061306357384, -0.024474840611219406, 0.00011398359492886811, 0.026352301239967346, 0.014601210132241249, 0.05107596144080162, -0.02456532046198845, -0.020380619913339615, -0.03494790196418762, 0.009720944799482822, -0.038431379944086075, -0.0037718850653618574, 0.020471099764108658, -0.028410719707608223, -0.039064738899469376, 0.022472970187664032, 0.07007676362991333, 0.04582812264561653, 0.0036700950004160404, -0.02988102100789547, -0.048090122640132904, -0.0813867598772049, -0.017892420291900635, 0.010829324834048748, -0.009279855526983738, -0.019362719729542732, -0.012395760044455528, 0.02397719956934452, -0.014035710133612156, 0.02209974080324173, -0.00708571495488286, 0.052161719650030136, -0.03266328200697899, 0.0034410676453262568, -0.03397523984313011, 0.05582616105675697, -0.005541900172829628, -0.0020739713218063116, -0.019826430827379227, -0.008691735565662384, 0.020776471123099327, -0.012802920304238796, 0.015189330093562603, 0.03112512081861496, 0.012214800342917442, -0.006452355068176985, -0.01107814535498619, -0.004114012699574232, 0.014736929908394814, -0.01557387039065361, 0.01293864008039236, -0.027596401050686836, -0.0026338163297623396, -0.06813143938779831, 0.005035777576267719, 0.004956607706844807, -0.000902679399587214, 0.00365878501906991, -0.05532852187752724, 0.0005393456085585058, -0.017179889604449272, -0.021590789780020714, -0.033160921186208725, -0.040648140013217926, -0.008985795080661774, 0.013605929911136627, -0.024520080536603928, 0.015935789793729782, 0.015596490353345871, 0.027913080528378487, -0.029994120821356773, 0.024836760014295578, -0.030672719702124596, 0.021568169817328453, -0.012655890546739101, 0.01259934064000845, 0.022280700504779816, 0.03549078106880188, 0.03456335887312889, -0.005626725032925606, -0.0173947811126709, -0.02556060068309307, 0.009562605060636997, -0.013447590172290802, -0.0017007412388920784, -0.014250600710511208, 0.028139280155301094, 0.004114012699574232, 0.00873132050037384, -0.0012462206650525331, -0.00252919876947999, 0.023208120837807655, 0.028727401047945023, 0.021534239873290062, -0.013277940452098846, -0.011095110327005386, 0.01214694045484066, -0.013040429912507534, 0.008997105062007904, 0.008284575305879116, 0.014567280188202858, -0.047773439437150955, 0.031328700482845306, 0.02084433101117611, 0.004046152345836163, 0.04286490008234978, 0.01775670051574707, 0.021726509556174278, -0.03635033965110779, -0.02180568128824234, -0.020776471123099327, -0.0024839588440954685, 0.011287380009889603, 0.02899884060025215, -0.025764180347323418, -0.016331641003489494, 0.04107791930437088, -0.030966781079769135, -0.03711942210793495, 0.002977357478812337, 0.02610347978770733, -0.012802920304238796, -0.004427865147590637, 0.005126257427036762, 0.01863888092339039, -0.000907627516426146, 0.05921916291117668, -0.020403239876031876, 0.025605840608477592, -0.02768688090145588, -0.011592750437557697, 0.027596401050686836, 0.00044002968934364617, 0.003359070047736168, 0.0026013001333922148, -0.02587728016078472, -0.013413660228252411, 0.023502180352807045, -0.019204379990696907, 0.006763380020856857, 0.005999954883009195, -0.003947190009057522, 0.016727490350604057, 0.005513625219464302, -0.008618219755589962, -0.05709288269281387, -0.0029603925067931414, -0.013786890543997288, 0.00903668999671936, 0.01089153066277504, -0.01646736077964306, -0.02366052009165287, 0.00886138528585434, 0.005329837556928396, 0.01138351485133171, -0.025334401056170464, 0.00584161514416337, 0.00599429989233613, -0.06745284050703049, 0.022224150598049164, -0.01679535023868084, -0.015008370392024517, 0.0010801049647852778, 0.04944732040166855, -0.02642016112804413, 0.0008623875328339636, -0.005386387463659048, 0.029111940413713455, -0.02370576001703739, -0.010693605057895184, 0.02185092121362686, 0.03429191932082176, 0.007685145363211632, -0.0009903318714350462, -0.06899099797010422, 0.02245035022497177, 0.011377859860658646, 0.006169605068862438, -0.015788760036230087, -0.012180870398879051, -0.000989624997600913, 0.005403352435678244, 0.024746280163526535, -0.0049990201368927956, -0.004396762698888779, 0.006361875217407942, -0.007758660241961479, 0.0012794437352567911, -0.012350520119071007, -0.02522130124270916, 0.03141918033361435, -0.009211995638906956, 0.010829324834048748, 0.011785020120441914, -0.013538070023059845, 0.04917588084936142, 0.0007450462435372174, 0.021726509556174278, -0.02456532046198845, 0.029202420264482498, -0.021364590153098106, 0.028546441346406937, 0.00856166984885931, 0.009579570032656193, -0.017677530646324158, -0.025062959641218185, -0.034405019134283066, -0.04200534150004387, 0.03601104021072388, 0.0020442826207727194, 0.04517214000225067, -0.006163950078189373, 0.003981119953095913, -0.02242773026227951, 0.006695520132780075, -0.024384360760450363, -0.006893445271998644, 0.029835781082510948, 0.02238249033689499, -0.003672922495752573, 0.01151923555880785, 0.005349630024284124, 0.04476498067378998, -0.006819929927587509, -0.02558322064578533, 0.020618129521608353, 0.010060245171189308, -0.017971590161323547, -0.015347669832408428, -0.01934009976685047, -0.020437169820070267, 0.027958320453763008, 0.009274200536310673, -0.04349825903773308, -0.08473452180624008, -0.011841570027172565, -0.010031970217823982, -0.017179889604449272, 0.0039217425510287285, 0.03164537996053696, 0.009839700534939766, -0.010071555152535439, 0.008833110332489014, -0.05627856031060219, -0.03734562173485756, -0.002732778899371624, -0.019136520102620125, 0.020154420286417007, 0.005055570043623447, -0.005705894902348518, -0.004549447447061539, -0.04804488271474838, -0.014793479815125465, -0.01924961991608143, 0.031283460557460785, 0.017553120851516724, -0.013933920301496983, 0.02429388090968132, -0.016953689977526665, 0.0006160415941849351, 0.027551161125302315, 0.03331926092505455, -0.008205405436456203, -0.004258214961737394, 0.042231541126966476, -0.010376925580203533, 0.0073288800194859505, -0.004229940008372068, 0.019735950976610184, -0.015460770577192307, 0.007204470224678516, 0.004410900175571442, -0.01834481954574585, -0.013730340637266636, -0.006599385291337967, 0.0068821352906525135, 0.0002230190730188042, -0.035038381814956665, -0.028885740786790848, -0.003958499990403652, 0.03178109973669052, -0.005643690004944801, 0.00668986514210701, -0.02834285981953144, 0.004962262697517872, 0.0404898002743721, -0.011626680381596088, 0.0008673356496728957, 0.03051437996327877, 0.02587728016078472, 0.024972479790449142, -0.0069443401880562305, 0.003817124990746379, -0.017620980739593506, 0.03587532043457031, 0.008137545548379421, -0.020799091085791588, -0.03383952006697655, -0.009534330107271671, -0.0019481475464999676, 0.0036842324770987034, 0.013300560414791107, -0.010942425578832626, 0.010631400160491467, 0.03540030121803284, 0.02370576001703739, -0.01339104026556015, -0.033454980701208115, -0.049990199506282806, -0.01584530994296074, -0.03307044133543968, 0.04424472153186798, 0.017044169828295708, -0.005468385294079781, 0.033794280141592026, 0.0038001600187271833, -0.008442915044724941, 0.00670117512345314, 0.020765161141753197, 0.04980923980474472, -0.00044921907829120755, -0.026691600680351257, -0.021036600694060326, -0.01996215060353279, -0.009624809958040714, -0.023728379979729652, 0.0016809487715363503, 0.0003940828319173306, -0.06066684052348137, 0.004128150176256895, 0.03445025905966759, -0.016388190910220146, -0.014431560412049294, -0.013719030655920506, 0.003732300130650401, 0.041756521910429, -0.018740670755505562, -0.04894968122243881, -0.026397541165351868, -0.010133760049939156, 0.005428799893707037, 0.0018845287850126624, 0.03291210159659386, -0.0251986812800169, 0.01242968998849392, -0.012644580565392971, -0.006327945273369551, -0.055554721504449844, 0.035332441329956055, -0.005623897537589073, 5.0718281272565946e-05, 0.060576360672712326, 0.015992339700460434, -0.005417489912360907, -0.003822779981419444, 0.0075324601493775845, 0.011434409767389297, -0.06460271775722504, 0.025967760011553764, -0.0177680104970932, 0.028840500861406326, 0.025085579603910446, 0.0021361762192100286, -0.017994210124015808, -0.016885830089449883, 0.006870825309306383, 0.02238249033689499, -0.007871760055422783, 0.008047064766287804, -0.008335470221936703, 0.03386214002966881, 0.005640862509608269, -0.027619021013379097, 0.00046123593347147107, -0.015155400149524212, 0.008177130483090878, 0.02490461990237236, 0.006718140095472336, -0.006356220226734877, -0.0615716427564621, 0.026668980717658997, -0.016354260966181755, 0.0020188349299132824, -0.003568305168300867, 0.019193070009350777, 0.00043225407716818154, -0.011400479823350906, 0.025899900123476982, -0.02990364097058773, -0.009534330107271671, -0.017620980739593506, -0.013956540264189243, -0.004631445277482271, -0.028885740786790848, 0.0059151300229132175, -0.010286444798111916, -0.014702999964356422, 0.011558820493519306, 0.030310800299048424, 0.007080059964209795, 0.010490025393664837, 0.04304585978388786, -0.009110204875469208, -0.014589900150895119, -0.0049509527161717415, -0.029021460562944412, -0.006899100262671709, -0.031260840594768524, 0.010801049880683422, 0.024180781096220016, 0.044041141867637634, 0.005310045089572668, 0.011321309953927994, 0.024384360760450363, -0.011151660233736038, -0.011332619935274124, -0.016987619921565056, -0.04537571966648102, 0.027143999934196472, 0.05071404203772545, 0.0032176950480788946, 0.014714309945702553, -0.0046851676888763905, -0.008177130483090878, 0.023151570931077003, -0.02893098071217537, -0.007690800353884697, -0.008097960613667965, -0.03578484058380127, -0.015969719737768173, -0.01872936077415943, -0.055871400982141495, 0.002770950086414814, -0.02494985982775688, 0.02338908053934574, -0.03264066204428673, 0.016648320481181145, 0.004150770138949156, -0.022178910672664642, 0.019170450046658516, 0.020109180361032486, 0.011355239897966385, -0.010682295076549053, 0.009302475489675999, -0.02492723986506462, 0.017858490347862244, 0.030016740784049034, -0.013187460601329803, 0.010473060421645641, -0.004393935203552246, 0.0100941751152277, 0.04361136257648468, -0.04114577919244766, -0.006005610339343548, 0.01715726964175701, -0.020753851160407066, -0.020731231197714806, -0.03297996148467064, 0.0189781803637743, 0.007323225028812885, -0.04202796146273613, 0.017315611243247986, 0.024701040238142014, 0.01618460938334465, 0.05940012261271477, -0.00621484499424696, -0.01746264100074768, -0.007108334917575121, -0.01558518037199974, 0.02893098071217537, 0.004634272772818804, -0.004241249989718199, 0.04021836072206497, -0.0006552731501869857, -0.05012591928243637, -0.03684798255562782, 0.03892901912331581, 0.007221435196697712, 0.011728470213711262, -0.016286401078104973, 0.0007245469023473561, 0.02580942027270794, -0.010574850253760815, 0.009590880014002323, -0.0030112876556813717, 0.02551536075770855, -0.0028741538990288973, 0.027166619896888733, -0.016003649681806564, -0.004659720230847597, -0.006650280207395554, 0.021081840619444847, -0.011293035000562668, 0.02617133967578411, -0.035943180322647095, 0.04198272153735161, 0.026058239862322807, 0.01618460938334465, -0.023456940427422523, -0.017213819548487663, 0.016286401078104973, -0.006904755253344774, -0.005106464959681034, 0.06614088267087936, 0.011423099786043167, -0.027211859822273254, 0.01511016022413969, -0.012701130472123623, -0.021059220656752586, 0.005066880024969578, 0.006763380020856857, -0.005035777576267719, 0.03368118032813072, -0.0002382168750045821, 0.012282660230994225, 0.01961154118180275, 0.0224616602063179, -0.0012285488191992044, -0.00389064010232687, 0.004962262697517872, 0.05474040284752846, -0.033794280141592026, 0.018853770568966866, 0.0008136131218634546, 0.034744322299957275, 0.011462685652077198, 0.03182633966207504, 0.018616260960698128, 0.033432360738515854, 0.021669959649443626, -0.06804095953702927, 0.008205405436456203, -0.00947778020054102, -0.014069640077650547, 0.006356220226734877, -0.0006909703370183706, -0.0037294726353138685, 0.02243904024362564, 0.030717961490154266, -0.016557840630412102, -0.01615067943930626, -0.025673700496554375, -0.009681359864771366, -0.024158161133527756, 0.014963130466639996, -0.009279855526983738, -0.036938462406396866, 0.018276959657669067, -0.010433475486934185, -0.01417142990976572, 0.0007104093674570322, -0.037526581436395645, 0.017587050795555115, 0.055554721504449844, 0.02368314005434513, 0.031939439475536346, -0.010133760049939156, 0.026623740792274475, 0.03431453928351402, 0.03666701912879944, -0.01831088960170746, 0.00017557007959112525, -0.010506990365684032, 0.017994210124015808, 0.05700240284204483, 0.01263327058404684, 0.03800160065293312, -0.00916675478219986, -0.03431453928351402, -0.0454435795545578, -0.00018484781321603805, -0.019713331013917923, -0.0069443401880562305, -0.032889481633901596, 0.02147768996655941, 0.014047020114958286, -0.010444785468280315, -0.017383471131324768, 0.014239290729165077, -0.009624809958040714, 0.013560689985752106, -0.03359070047736168, 0.026646360754966736, -0.03293472155928612, -0.004699305165559053, 0.007046130020171404, -0.013922610320150852, 0.01029209978878498, -0.00934771541506052, 0.009743564762175083, -0.0038340899627655745, 0.019453199580311775, -0.027845220640301704, 0.00245285639539361, -0.008640839718282223, -0.0035456849727779627, 0.01650129072368145, -0.005242185201495886, 0.0283654797822237, -0.02057288959622383, -0.02308371104300022, -0.010682295076549053, -0.009064964950084686, 0.037798020988702774, 0.03802422061562538, 0.023117640987038612, 0.0006895565893501043, -0.011389169842004776, -0.0666385218501091, 0.02734757959842682, 0.02433912083506584, -0.013277940452098846, -0.005440109875053167, 0.014963130466639996, 0.01615067943930626, -0.018627570942044258, -0.025990379974246025, -0.005341147538274527, -0.008612564764916897, -0.01509885024279356, 0.02271047979593277, 0.006463665049523115, 0.03614675998687744, -0.0015706763369962573, -0.001355786225758493, 0.009551295079290867, -0.02522130124270916, 0.015867929905653, 0.00036368719884194434, -0.015811379998922348, -0.018808530643582344, -0.02145507000386715, 0.024814140051603317, -0.011943359859287739, -0.030265560373663902, 0.04209582135081291, -0.001859081326983869, 0.011440064758062363, 0.0002542982983868569, -0.003098940011113882, 0.03915522247552872, 0.018887700513005257, 0.03920046240091324, -0.008352435193955898, -0.03234659880399704, 0.04211844131350517, -0.005654999986290932, 0.019453199580311775, -0.015268499962985516, 0.011049870401620865, 0.011247795075178146, -0.037549201399087906, -0.026623740792274475, -0.04010526090860367, 0.010648365132510662, 0.007113989908248186, -0.0005503022111952305, -0.0017007412388920784, -0.01107814535498619, 0.007843485102057457, -0.031328700482845306, -0.02091219089925289, -0.03544554114341736, -0.021703889593482018, 0.0028345687314867973, -0.01747395098209381, 0.011423099786043167, -0.007634249981492758, -0.005513625219464302, -0.010699260048568249, -0.004196010064333677, 0.04114577919244766, 0.01010548509657383, 0.01713464967906475, -0.006819929927587509, -0.000132715780637227, -0.0010447612730786204, 0.004136632662266493, 0.04786391928792, 0.03178109973669052, -0.010523955337703228, 0.03135132044553757, 0.035671740770339966, 0.008940555155277252, 0.0032261775340884924, 0.005937749985605478, -0.00032180483685806394, 0.018107309937477112, -0.013752960599958897, 0.029994120821356773, -0.009432540275156498, -0.004939642734825611, 0.00916675478219986, 0.003568305168300867, -0.007928309962153435, -0.007713420316576958, 0.0251986812800169, 0.008589944802224636, 0.0062091900035738945, -0.03589794039726257, 0.028116660192608833, -0.01431846059858799, -0.029971500858664513, -0.02897622063755989, -0.022880129516124725, -0.013990470208227634, -0.007589010056108236, 0.03049176000058651, 0.0036135450936853886, 0.015483390539884567, -0.0077982451766729355, 0.017654910683631897, 0.012576720677316189, -0.022484280169010162, -0.019679401069879532, 0.026533260941505432, 0.03171323984861374, -0.005035777576267719, -0.02300454117357731, -0.02522130124270916, 0.01585661992430687, 0.03949452191591263, -0.027189239859580994, 0.03854447975754738, -0.021364590153098106, -0.03449549898505211, 0.02211105078458786, -0.03243708238005638, -0.00323466002009809, 0.00903668999671936, -0.014227979816496372, 0.0028388099744915962, -0.0029038426000624895, 0.00145757629070431, 0.005564520135521889, 0.0005110706551931798, -0.037255141884088516, -0.0009196443716064095, 0.025062959641218185, -0.0015183675568550825, -0.03445025905966759, -0.003746437607333064, 0.0016738800331950188, -0.004639927763491869, -0.010778429917991161, -0.014578590169548988, -0.02927028015255928, -0.029790541157126427, 0.005375077482312918, 0.0019269413314759731, 0.011321309953927994, -0.014850030653178692, 0.021081840619444847, 0.0074137053452432156, -0.007012200076133013, 0.02899884060025215, -0.03442763909697533, 0.021025290712714195, -0.023886719718575478, -2.4519726139260456e-05, 0.0014801962533965707, 0.05157360062003136, 0.008092304691672325, -0.008782215416431427, -0.020109180361032486, 0.022936681285500526, 0.015675660222768784, 0.027505921199917793, 0.012520169839262962, 0.004605997819453478, -0.0013006500666961074, 0.04024098068475723, -0.010133760049939156, 0.005977334920316935, 0.012237420305609703, -0.06876479834318161, 0.020437169820070267, -0.007679490372538567, 0.0067068301141262054, -0.015528630465269089, -0.01414880994707346, -0.009285510517656803, 0.010965045541524887, 0.011293035000562668, 0.01589054986834526, -0.010665330104529858, -0.007526805158704519, -0.00824499037116766, -0.04202796146273613, -0.002322791377082467, 0.05198075994849205, 0.0005778703489340842, 0.0016823625192046165, -0.025990379974246025, -0.011236485093832016, 0.00823368038982153, -0.01337973028421402, 0.012327900156378746, 0.01991691067814827, -0.008968830108642578, 0.031034640967845917, 0.02240511029958725, 0.013244010508060455, 0.029994120821356773, -0.02712137997150421, 0.03388475999236107, -0.006339255254715681, -0.00575396278873086, 0.007803900167346001, 0.002245035022497177, 0.017994210124015808, 0.017553120851516724, 0.013063049875199795, -0.0017276025610044599, -0.0016371224774047732, -0.005708722397685051, 0.01242968998849392, -0.029383379966020584, 0.00377471256069839, 0.004535309970378876, -0.02651064097881317, -0.021997950971126556, -0.0342692993581295, -0.0008645081543363631, -0.025085579603910446, 0.0060282303020358086, 0.01340235024690628, 0.006022575311362743, -0.022812269628047943, 0.009596535004675388, 0.013300560414791107, 0.023592660203576088, -0.007639904972165823, 0.004795440007001162, -0.006853860337287188, 0.005903820041567087, 0.01168323028832674, -0.004939642734825611, -0.007628594990819693, 0.03497052192687988, 0.004574894905090332, 0.04641624167561531, 0.028817880898714066, -0.016682250425219536, 0.002346825087442994, -0.015992339700460434, -0.007125300355255604, -0.013470210134983063, -0.011287380009889603, -0.03200729936361313, 0.02084433101117611, -0.0014646450290456414, -0.03492528200149536, -0.02454270049929619, 0.014227979816496372, 0.0230384711176157, -0.021964021027088165, -0.011773710139095783, 0.013504140079021454, 0.015166710130870342, -0.0201883502304554, -0.03648605942726135, -0.004037669859826565, -0.019091280177235603, 0.053699880838394165, -0.0049226777628064156, 0.007458945270627737, 0.006757725030183792, -0.016750110313296318, -0.006050850264728069, 0.009947145357728004, -0.02393195964396, -0.02802618034183979, -0.037232521921396255, 0.006655935198068619, 0.04324943944811821, -0.0014406113186851144, -0.00950040016323328, 0.036599159240722656, -0.04361136257648468, 0.008380710147321224, -0.003229005029425025, 0.0043769702315330505, -0.01835612952709198, -0.0002269068791065365, 0.014940510503947735, 0.01462383009493351, 0.031554900109767914, 0.007651214953511953, -0.006508904974907637, -0.009008415043354034, 0.02395457960665226, 0.02397719956934452, -0.03827304020524025, -0.004238422494381666, -0.007555080112069845, -0.04614480212330818, -0.03788850083947182, -0.01932878978550434, 0.016614390537142754, 0.033816900104284286, -0.004928332753479481, -0.01898949034512043, 0.006367530208081007, -0.020674681290984154, 0.013357110321521759, 0.03049176000058651, -0.005604105070233345, -0.015992339700460434, -0.016885830089449883, -0.020324070006608963, -0.03291210159659386, -0.01772277057170868, -0.04143984243273735, -0.0016187437577173114, 0.02680470049381256, 0.0003232186136301607, -0.01808468997478485, -0.007589010056108236, -0.002038627630099654, -0.002561714965850115, -0.019079970195889473, 0.013413660228252411, 0.005338320042937994, -0.007379774935543537, -0.013786890543997288, -0.00885007530450821, -0.030016740784049034, -0.004535309970378876, -0.0025956451427191496, -0.002785087563097477, -0.014250600710511208, 0.02361528016626835, 0.007809555158019066, -0.01807337999343872, -0.00404332485049963, -0.03773016110062599, -0.01589054986834526, -0.01584530994296074, -0.03761706128716469, 0.031328700482845306, -0.01463514007627964, 0.003896295092999935, 0.03861233964562416, -0.005406179931014776, -0.026080859825015068, -0.0009224718669429421, -0.018412679433822632, -0.02463318035006523, -0.013221390545368195, -0.0028854638803750277, 0.005615415051579475, -0.01902342028915882, -0.004439175128936768, 0.01418273989111185, -0.014194049872457981, 0.019226999953389168, -0.00807533971965313, -0.020063940435647964, 0.024112921208143234, -0.0031243874691426754, -0.015008370392024517, -0.019679401069879532, 0.011626680381596088, 0.011615370400249958, -0.0056776199489831924, 0.02617133967578411, -0.024723660200834274, 0.007266675122082233, -0.0018180825281888247, 6.59602737869136e-05, 0.018876390531659126, 0.03822780027985573, 0.024474840611219406, -0.013017809949815273, 0.007430670317262411, 0.001070915604941547, -0.02053895965218544, 0.026601120829582214, 0.02112708054482937, 0.001955216284841299, -0.03214301913976669, -0.004156425129622221, 0.02990364097058773, 0.01712333969771862, 0.025922520086169243, 0.024497460573911667, -0.026307061314582825, -0.030695339664816856, 0.04327205941081047, 0.009472125209867954, -0.009392955340445042, -0.0016767075285315514, 0.021115770563483238, -0.032572802156209946, -0.03053699992597103, 0.020980050787329674, 0.07075536251068115, -0.025402260944247246, -0.016580460593104362, -0.026895180344581604, -0.01073318999260664, 0.07061964273452759, -0.00024104438489302993, -0.004289317410439253, -0.019509749487042427, -0.013752960599958897, -0.006729450076818466, 0.04288752004504204, -0.03702894225716591, 0.03698370233178139, -0.03924570232629776, -0.03273114189505577, -0.0016908450052142143, -0.006865170318633318, -0.0019198725931346416, -0.003316657617688179, 0.008250645361840725, -0.01199990976601839, 0.005932094994932413, -0.00810361560434103, 0.005004675127565861, 0.022880129516124725, 0.01555125042796135, 0.016026269644498825, -0.007600320037454367, -0.010320374742150307, 0.011100765317678452, 0.03551340103149414, 0.042774420231580734, -0.014126189984381199, -0.020482409745454788, 0.05813340097665787, -0.00044533127220347524, -0.001312666921876371, -0.0129160201177001, 0.006463665049523115, -0.022224150598049164, 0.011626680381596088, 0.02086695097386837, 0.009647429920732975, 0.015777450054883957, 0.047728199511766434, -0.03644081950187683, 0.050216399133205414, 0.03302520141005516, 0.00048208876978605986, 0.022314630448818207, -0.005018812604248524, 0.013481520116329193, -0.023502180352807045, -0.05514756217598915, 0.02361528016626835, 0.004450485110282898, -0.027324959635734558, -0.013300560414791107, -0.013436280190944672, 0.04668768122792244, -0.01679535023868084, -0.01777932047843933, 0.019046040251851082, -0.00934771541506052, 0.010908495634794235, -0.020086560398340225, -0.019091280177235603, 0.01777932047843933, 0.009720944799482822], [0.05005185306072235, 0.010373757220804691, 0.020580824464559555, 0.027226252481341362, -0.008884647861123085, 0.016457991674542427, -0.01992517150938511, -0.04769594967365265, -0.010540449060499668, 0.03744998574256897, 0.005873091518878937, 0.03449399396777153, -0.016257962211966515, 0.008801302872598171, 0.015368941240012646, 0.013524224050343037, 0.029026517644524574, 0.01169061940163374, 0.011084973812103271, 0.0301822442561388, 0.030693432316184044, 0.05805303528904915, -0.01474662683904171, 0.0309823639690876, -0.005525817628949881, -0.0009015222894959152, 0.07752258330583572, -0.008723513223230839, 0.04694028198719025, -0.05929766595363617, 0.02967105805873871, -0.03116016648709774, 0.060320038348436356, -0.031382422894239426, 0.05116312950849533, -0.023158982396125793, -0.044539924710989, 0.0433175228536129, 0.01969180256128311, 0.05080752074718475, -0.01962512731552124, -0.04109496995806694, 0.04551784694194794, -0.004089494235813618, -0.009679210372269154, 0.04098384454846382, 0.03213809058070183, -0.014046523720026016, -0.01665802113711834, 0.0596088208258152, 0.06400947272777557, 0.029093194752931595, 0.022936727851629257, -0.005217439029365778, 0.04220624640583992, 0.03227144479751587, 0.006745442748069763, 0.02000296115875244, 0.04662912338972092, 0.013401983305811882, -0.042228471487760544, -0.041383903473615646, -0.04996294900774956, 0.008112311363220215, 0.02653726004064083, -0.04000592231750488, -0.012690766714513302, 0.02911541983485222, -0.00320880813524127, 0.017691507935523987, 0.017758183181285858, -0.023247884586453438, 0.027915243059396744, -0.018002664670348167, -0.01339087076485157, -0.006928803399205208, 0.015880128368735313, 0.04429544508457184, 0.05534152314066887, 0.02011408843100071, -0.04131722450256348, -0.004247850738465786, 0.014213214628398418, -0.007678914349526167, -0.06338716298341751, -0.001397429034113884, -0.060008879750967026, 0.005895317066460848, -0.018613865599036217, -0.023292336612939835, -0.017869312316179276, -0.0019989069551229477, -0.014279890805482864, 0.03573862463235855, -0.009462511166930199, -0.005264668259769678, 0.046006809920072556, 0.021614309400320053, -0.01493554376065731, 0.03302710875868797, 0.04916283115744591, -0.021369829773902893, -0.03153800219297409, -0.009895908646285534, 0.06645427644252777, -0.002198936650529504, -0.08347902446985245, 0.016635796055197716, -0.01375759206712246, 0.029693283140659332, 0.007940064184367657, 0.018369385972619057, 0.03673877194523811, 0.08076751232147217, 0.0019100048812106252, 0.011118312366306782, 0.006062008440494537, -0.0031476879958063364, 0.021303152665495872, -0.006228699814528227, -0.03849458694458008, -0.017046967521309853, 0.01648021675646305, -0.05458585545420647, -0.011146093718707561, -0.0012217086041346192, 0.038961321115493774, 0.010973846539855003, -0.016246849671006203, -0.02393687516450882, -0.014846641570329666, -0.040383756160736084, 0.07667801529169083, -0.032493699342012405, -0.005011852830648422, 0.015068897046148777, 0.02092531882226467, 0.008890205062925816, 0.014513258822262287, -0.02030300535261631, 0.005031300242990255, 0.035205211490392685, 0.018913909792900085, -0.0027517962735146284, -0.024670317769050598, -0.00829567201435566, -0.003183804452419281, 0.01870276778936386, 0.04511778801679611, 0.01039598323404789, -0.0008008129661902785, 0.02695954591035843, 0.0018919466529041529, 0.0015182802453637123, 0.0038672389928251505, -0.05240775644779205, 0.014024297706782818, 0.04658467322587967, 0.024759219959378242, -0.0014147927286103368, -0.025270406156778336, 0.014868867583572865, 0.004175617825239897, -0.01850273832678795, 0.020514147356152534, -0.02751518413424492, -0.01474662683904171, 0.009062452241778374, -0.03664986789226532, -0.0040728249587118626, 0.005817527882754803, -0.056675054132938385, 0.008251220919191837, 0.025626014918088913, -0.012979698367416859, 0.017291449010372162, -0.03240479528903961, -0.0492517352104187, 0.008567934855818748, -0.006889908574521542, 0.02591494657099247, 0.014824416488409042, -0.09512519091367722, -0.023870199918746948, 0.004267298150807619, 0.03967253863811493, 0.010340419597923756, -0.0016613570041954517, -0.039761438965797424, -0.036005329340696335, -0.026070525869727135, -0.027226252481341362, -0.041072744876146317, 0.014913318678736687, -0.018958361819386482, -0.0298044104129076, -0.04574010148644447, -0.024781445041298866, 0.0008730458794161677, -0.01307971403002739, 0.009284707717597485, -0.012968585826456547, -0.012357384897768497, 0.0007264963933266699, -0.04827381297945976, -0.02171432413160801, -0.025692692026495934, 0.011623942293226719, 0.01745813898742199, -0.0034588451962918043, -0.012212919071316719, 0.0033477176912128925, -0.061609119176864624, 0.08001184463500977, 0.011535040102899075, 0.00038755734567530453, 0.014535484835505486, 0.019914058968424797, 0.03116016648709774, -0.007123276591300964, -0.02973773516714573, -0.050318557769060135, 0.00941250380128622, 0.002505926415324211, -0.030004439875483513, 0.011779521591961384, 0.01925840601325035, -0.011379461735486984, -0.01064602006226778, -0.0587642528116703, -0.017613718286156654, 0.02221439965069294, -0.035449691116809845, -0.009345827624201775, 0.008345679379999638, 0.03147132322192192, 0.020636387169361115, -0.04282855987548828, -0.012468512170016766, -0.005278558935970068, 0.04540672153234482, 0.03716105595231056, -0.02011408843100071, -0.051252029836177826, -0.008717956952750683, -0.013001924380660057, -0.026203878223896027, -0.045695651322603226, -0.015757888555526733, 0.0050757513381540775, -0.014468807727098465, -0.019225068390369415, 0.026915093883872032, -0.02172543853521347, -0.004864608868956566, 0.01641353964805603, 0.040139272809028625, -0.023981327190995216, -0.0047451467253267765, -0.011835085228085518, -0.019547337666153908, 0.023425688967108727, 0.002257278421893716, -0.05040746182203293, -0.04551784694194794, 0.01981404423713684, -0.0016155168414115906, -0.04456214979290962, 0.018158243969082832, -0.004672913812100887, -0.0036560967564582825, 0.024781445041298866, 0.013735366053879261, -0.010768260806798935, -0.03278262913227081, 0.039650313556194305, 0.024225806817412376, -0.014079861342906952, -0.005878647789359093, -0.03364942595362663, -0.02351459115743637, -0.02369239553809166, 0.04429544508457184, -0.050140753388404846, 0.04756259545683861, 0.001161282998509705, 0.005431359633803368, 0.018858347088098526, -0.05311897397041321, 0.010723809711635113, 0.03698325157165527, -0.027804115787148476, -0.05120757967233658, 0.0021322600077837706, 0.026114976033568382, 0.014991107396781445, -0.04707363247871399, 0.003106015268713236, -0.05965327471494675, -0.03529411181807518, -0.042428500950336456, 0.011285003274679184, -0.005028522107750177, 0.04631796479225159, -0.04349532723426819, -0.01455770991742611, -0.031315747648477554, -0.02855978161096573, -0.02709289826452732, -0.014468807727098465, 0.018369385972619057, 0.004250629339367151, -0.10828269273042679, -0.072321817278862, 0.013490885496139526, -0.00032817356986925006, -0.035383015871047974, -0.004656244534999132, 0.03542746603488922, -0.02054748497903347, -0.004886834416538477, 0.017491478472948074, 0.03429396450519562, -0.03567194566130638, 0.002861534710973501, 0.016002368181943893, -0.020147426053881645, 0.03289375826716423, 0.012924134731292725, -0.02609275095164776, -0.027915243059396744, 0.003158800769597292, -0.0006379416445270181, 0.007312193512916565, 0.02678174152970314, 0.020947543904185295, 0.036427613347768784, 0.024359161034226418, -0.00941250380128622, 0.007728921715170145, 5.632343800243689e-06, 0.01999184861779213, 0.031871382147073746, 0.022914502769708633, -0.07018816471099854, -0.021147575229406357, 0.03053785301744938, 0.03282707929611206, -0.015346716158092022, 0.03151577711105347, -0.007256629411131144, -0.031493548303842545, -0.007828936912119389, 0.0043478659354150295, -0.023114532232284546, 0.010951620526611805, 0.05116312950849533, -0.00906800851225853, -0.05147428438067436, 0.03198251128196716, 0.014391019009053707, -0.019647352397441864, 0.04671802371740341, 0.03269372880458832, -0.030893461778759956, 0.049518439918756485, -0.061564669013023376, 0.021558746695518494, -0.022369977086782455, -0.01091828290373087, 0.014868867583572865, 0.028537556529045105, -0.04305081441998482, -0.0007001036428846419, -0.0006466234917752445, 0.0009515297133475542, -0.01009038183838129, 0.02400355227291584, 0.02653726004064083, -0.023914650082588196, 0.03567194566130638, -0.004997962154448032, 0.020647499710321426, 0.029759960249066353, 0.03789449855685234, 0.024336935952305794, 0.012801894918084145, 0.0278263408690691, 0.03811675310134888, 0.0034838488791137934, -0.03782781958580017, 0.010934951715171337, -0.008806859143078327, 0.037227731198072433, 0.015502294525504112, -0.0026448359712958336, 0.05805303528904915, -0.002326733199879527, 0.020258553326129913, -0.03480515256524086, -0.012690766714513302, -0.03869461640715599, 0.0274040549993515, 0.045562297105789185, 0.002269780496135354, 0.033671651035547256, 0.007306636776775122, -0.05978662520647049, -0.012012888677418232, -0.02511482872068882, 0.002608719514682889, -0.028582008555531502, 0.027070673182606697, 0.01558008324354887, -0.007051043678075075, -0.01869165524840355, 0.021136460825800896, -0.0054702539928257465, -0.0564083494246006, -0.017791522666811943, 0.036072004586458206, 0.022658908739686012, -0.06267594546079636, -0.017513703554868698, -0.04522891715168953, 0.04365090653300285, -0.011068305000662804, -0.019202841445803642, -0.025870496407151222, -0.048718322068452835, -0.0220810454338789, 0.00495351105928421, 0.023092307150363922, 0.020469695329666138, -0.0033004884608089924, -0.034271739423274994, -0.04191731661558151, -0.028115272521972656, 0.00996814202517271, -0.030026666820049286, -0.04405096545815468, -0.02438138611614704, 0.027226252481341362, 0.05436360090970993, 0.010940507985651493, -0.0385168120265007, -0.018991699442267418, 0.039028000086545944, 0.025714917108416557, -0.026181653141975403, -0.034516219049692154, 0.04393983632326126, -0.05080752074718475, -0.007923395372927189, 0.009423617273569107, -0.0028559782076627016, 0.011957325041294098, -0.07365534454584122, -0.00897355005145073, 0.025448210537433624, 0.06841012835502625, 0.06458733975887299, 0.042295150458812714, 0.015880128368735313, 0.011935099959373474, 0.033293817192316055, -0.023492366075515747, -0.026515034958720207, -0.024403611198067665, -0.03591642528772354, 0.01357978768646717, -0.024359161034226418, -0.01592457853257656, -0.022503331303596497, 0.01708030514419079, 0.010207066312432289, -0.029893312603235245, -0.034827377647161484, -0.0177026204764843, -0.029048744589090347, -0.009401391260325909, -0.017380349338054657, -0.037605565041303635, -0.028982067480683327, -0.007812267169356346, 0.06547635793685913, 0.05102977529168129, 0.027737438678741455, -0.05783078074455261, -0.0370054766535759, -0.06369831413030624, 0.012624090537428856, 0.047295887023210526, -0.008629054762423038, -0.06267594546079636, -0.007740034256130457, 0.0001231085043400526, -0.03491627797484398, 0.04040598124265671, 0.05360793322324753, 0.015402279794216156, -0.019158391281962395, 0.027181800454854965, -0.055208172649145126, 0.01354644913226366, 0.003856126219034195, -0.01049044169485569, 0.020147426053881645, -0.019291743636131287, -0.00761779397726059, 0.029226547107100487, -0.0008077584207057953, 0.03913912549614906, -0.034649573266506195, 9.237477934220806e-05, -0.04089494049549103, -0.000640719837974757, 0.023492366075515747, -0.02967105805873871, 0.0044089858420193195, -0.022614458575844765, 0.0022906167432665825, 0.027626311406493187, -0.0021878238767385483, 0.01391317043453455, 0.022625571116805077, 0.013824268244206905, -0.07218845933675766, 0.0025448210071772337, -0.03807230293750763, -0.03873906657099724, -0.002532319165766239, -0.01820269413292408, -0.020525259897112846, -0.008106755092740059, 0.005611941684037447, -0.033427171409130096, 0.021992143243551254, 0.007945620454847813, -0.0008633222314529121, -0.002305896719917655, 0.007895613089203835, 0.0182693712413311, -0.024359161034226418, -0.004681248217821121, 0.03158245235681534, 0.014124312438070774, 0.047118086367845535, 0.002930989256128669, 0.009345827624201775, 0.0044423239305615425, 0.004536782391369343, -0.013857606798410416, 0.02640390768647194, 0.004956289194524288, -0.00402837386354804, 0.011868422850966454, -0.013157502748072147, -0.008745739236474037, 0.009062452241778374, 0.012201805599033833, -0.007267742417752743, -0.012612977996468544, -0.003311601234599948, 0.004620128311216831, 0.034760698676109314, -0.03564972057938576, -0.006012001074850559, -0.025159278884530067, -0.024359161034226418, -0.011340566910803318, -0.011579491198062897, 0.003558860160410404, 0.012146241962909698, -0.006117572076618671, 0.007812267169356346, 0.02054748497903347, -0.0377611443400383, -0.012668541632592678, -0.027848565950989723, -0.006428729277104139, 0.042472951114177704, -0.016735810786485672, -0.007678914349526167, -0.043784257024526596, -0.01091828290373087, -0.004031151998788118, -0.028782038018107414, -0.03731663525104523, -0.007012148853391409, -0.003081011585891247, -0.01653578132390976, -0.02068083919584751, 0.015957918018102646, 0.003411615965887904, 0.03918357565999031, -0.016135722398757935, 0.0072288475930690765, -0.05534152314066887, 0.0156800989061594, 0.006962141487747431, -0.029359901323914528, 0.0009598642936907709, 0.02875981293618679, -0.001164061133749783, -0.03049340285360813, 0.023003404960036278, -0.009895908646285534, 0.0058008586056530476, -0.009512518532574177, 0.0628981962800026, 0.035516366362571716, 0.010157058946788311, -0.030893461778759956, -0.010129276663064957, 0.0016988625284284353, -0.006750999018549919, -0.008067861199378967, -0.021881015971302986, -0.01049044169485569, -0.007951176725327969, 0.030960137024521828, 0.0005976579268462956, 0.001190454000607133, 0.0025198173243552446, -0.004097828641533852, -0.001834993832744658, -0.028804263100028038, -0.010529336519539356, 0.013279743492603302, -0.037183281034231186, -0.011346124112606049, 0.0061453538946807384, -0.05631944537162781, -0.0021058672573417425, 0.025626014918088913, 0.0024239697959274054, -0.051740992814302444, -0.003411615965887904, 0.006239812355488539, 0.03364942595362663, -0.023959102109074593, 0.049696244299411774, -0.022014370188117027, 0.018791669979691505, 0.021814338862895966, 0.012246256694197655, 0.027492957189679146, -0.01523558795452118, 0.010829380713403225, 0.006323158275336027, 0.03338271751999855, -0.03387168049812317, 0.008701288141310215, 0.00023701424652244896, -0.026114976033568382, 0.002435082569718361, 0.019947396591305733, -0.020647499710321426, 0.006384278181940317, -0.04929618537425995, -0.011173876002430916, -0.0127129927277565, -0.016024593263864517, 0.04509556293487549, 0.008645724505186081, 0.022914502769708633, -0.009479180909693241, 0.0038922426756471395, 0.021803226321935654, -0.005667505320161581, -0.02635945752263069, 0.006267594173550606, -0.029048744589090347, -0.018224919214844704, 0.0021350381430238485, 0.027492957189679146, 0.016680246219038963, -0.01950288563966751, 0.047918204218149185, 0.020036298781633377, -0.01715809479355812, -0.04365090653300285, 0.006600976921617985, -0.02660393714904785, 0.005039634648710489, 0.031115716323256493, 0.042850784957408905, -0.01051822304725647, 0.018902797251939774, 0.022436654195189476, -0.01764705590903759, -0.005434137769043446, 0.013724253512918949, 0.039339154958724976, 0.030160019174218178, -0.003964475821703672, -0.02911541983485222, 0.02171432413160801, -0.06743220239877701, -0.01132389809936285, 0.034716248512268066, -0.016569118946790695, -0.04987404868006706, -0.020414132624864578, -0.005178544204682112, -0.030515627935528755, -0.005292450077831745, 0.022936727851629257, 0.0015974586131051183, -0.020447470247745514, 0.019914058968424797, -0.05431915074586868, -0.02049192227423191, -0.021614309400320053, -0.008829084224998951, -0.003358830465003848, 0.026137201115489006, 0.023892425000667572, -0.013602012768387794, -0.022014370188117027, -0.003133797086775303, -0.0516965389251709, -0.002048914320766926, 0.017513703554868698, -0.012290707789361477, -0.016802486032247543, -0.017002517357468605, -0.03771669417619705, 0.021447619423270226, 0.04269520938396454, 0.02104755863547325, 0.04991849884390831, 0.05409689620137215, -0.008495701476931572, -0.002897651167586446, -0.007462215609848499, 0.012212919071316719, -0.02862645871937275, 0.0013897890457883477, -0.006400947459042072, 0.0009286096319556236, 0.023470140993595123, 0.007401095237582922, 0.01116831973195076, -0.0017183098243549466, 0.0032532592304050922, 0.027003996074199677, 0.00897355005145073, 0.008690174669027328, 0.03945028409361839, 0.005784189328551292, -0.06543190777301788, -0.0012251812731847167, 0.029515478760004044, 0.0024739771615713835, 0.0032199209090322256, 0.05080752074718475, -0.04102829471230507, -0.031938061118125916, 0.01591346599161625, -0.01236849743872881, -0.032915983349084854, 0.01323529239743948, 0.0068954648450016975, -0.02091420628130436, -0.027781888842582703, -0.0022169947624206543, -0.010223735123872757, -0.030760107561945915, -0.002637890400364995, -0.05107422545552254, 0.02493702434003353, 0.02196991816163063, 0.0003896410053130239, 0.002200325718149543, -0.06587641686201096, 0.02493702434003353, -0.039894793182611465, -0.022236624732613564, -0.022981179878115654, 2.5698247554828413e-05, -0.004258963745087385, 0.030582303181290627, -0.0028115271124988794, -0.007317749783396721, 0.0033254921436309814, 0.004972958005964756, 0.03284930810332298, -0.014791077934205532, -0.016302412375807762, 0.009334715083241463, -0.04734034091234207, -0.02036968059837818, -0.07281077653169632, 0.0010272354120388627, -0.011868422850966454, -0.02000296115875244, 0.0026545594446361065, 0.002589272102341056, 0.016835825517773628, -0.005309118889272213, -0.058408644050359726, -0.007056599948555231, 0.03393835574388504, 0.0021822673734277487, -0.05787523090839386, -0.0099348034709692, 0.0025239847600460052, -0.02400355227291584, -0.00537023926153779, 0.028737585991621017, -0.01580233871936798, 0.03313823789358139, -0.014346567913889885, -0.001214068615809083, -0.034894052892923355, 0.0005830724257975817, 0.026381682604551315, 0.015780113637447357, 0.04380648210644722, 0.0076511325314641, 0.02764853648841381, 0.010690471157431602, -0.03213809058070183, 0.011257221922278404, -0.03647206351161003, 0.02553711272776127, 0.012246256694197655, -0.01981404423713684, -0.034471768885850906, 0.0012515741400420666, -0.008245664648711681, -0.010662688873708248, 0.013413095846772194, 0.026692839339375496, -0.03802784904837608, 0.02633723057806492, 0.005159096792340279, 0.011146093718707561, -0.007828936912119389, -0.03664986789226532, -0.0011168320197612047, -0.03911690041422844, -0.01993628405034542, -0.0020058525260537863, 0.003931137267500162, 0.009757000021636486, -0.036494288593530655, 0.020625274628400803, -0.028293076902627945, 0.03036004863679409, -0.014379906468093395, -0.007701139897108078, -0.022069932892918587, -0.021947693079710007, 0.010279298759996891, 0.006945472210645676, 0.005392464809119701, -0.01813601702451706, 0.02449251338839531, 0.006284263450652361, -0.004025595728307962, -0.0193028561770916, -0.020936431363224983, -0.018669430166482925, 0.02938212640583515, 0.015535633079707623, 0.0065287440083920956, -0.02073640190064907, 0.03564972057938576, -0.035938654094934464, -0.004981292877346277, -0.01526892650872469, -0.06374276429414749, -0.029026517644524574, -0.019514000043272972, -0.007084381766617298, 0.02358126826584339, 0.0071677276864647865, 0.018913909792900085, 0.03838345780968666, 0.02653726004064083, 0.01648021675646305, -0.03947250917553902, 0.000145334008266218, -0.023336786776781082, -0.01659134402871132, 0.027181800454854965, 0.0147132882848382, -0.0220810454338789, -0.004889612551778555, -0.006128684617578983, 0.018224919214844704, 0.013568675145506859, 0.006984367035329342, -0.015002219937741756, 0.017424801364541054, 0.034271739423274994, 0.010546005330979824, -0.04227292165160179, -0.006373165640980005, -0.020580824464559555, 0.03073788248002529, -0.011979551054537296, -0.01061268150806427, 0.010468215681612492, -0.021092010661959648, -0.0019419541349634528, 0.027226252481341362, 0.01187953632324934, -0.01387983188033104, -0.007117720320820808, -0.010212622582912445, 0.04356200248003006, 0.032493699342012405, -0.001554396701976657, 0.027181800454854965, -0.005359126720577478, -0.006645428016781807, 0.015313377603888512, -0.029270999133586884, 0.0012369885807856917, -0.002347569679841399, 0.008190101012587547, -0.0048729432746768, -0.028604233637452126, 0.021936580538749695, 0.005656392779201269, -0.035027407109737396, -0.01825825870037079, -0.0013647853629663587, 0.012757443822920322, 0.05107422545552254, -0.017202546820044518, -0.024270258843898773, -0.006934359669685364, 0.02327011153101921, 0.0008119257399812341, 0.008923542685806751, 0.005231329705566168, 0.0007060072966851294, 0.018124904483556747, -0.054274700582027435, -0.017691507935523987, 0.007384426426142454, 0.01455770991742611, 0.0024878683034330606, 0.009995924308896065, -0.0035227437037974596, 0.017502591013908386, 0.019658464938402176, 0.000814703933428973, -0.0036811004392802715, -0.013435321860015392, 0.007656688801944256, 0.014346567913889885, -0.01814712956547737, 0.01814712956547737, -0.033782776445150375, -0.013935395516455173, 0.02098088338971138, 0.01604682020843029, -0.0049674017354846, 0.005945324432104826, 0.029537705704569817, 0.017058080062270164, -0.03247147426009178, -0.011307229287922382, -0.026581712067127228, 0.027048448100686073, -0.041006069630384445, -0.008217883296310902, 0.01623573713004589, -0.03533856198191643, 0.013824268244206905, 0.00913468562066555, -0.02609275095164776, 0.010690471157431602, 0.004342309199273586, -0.00807897374033928, 0.04345087707042694, 0.005878647789359093, 0.030960137024521828, -0.014879980124533176, 0.021258702501654625, 0.030560078099370003, -0.006612089928239584, -0.0004625684523489326, -0.01906948909163475, 0.032915983349084854, 0.04105051979422569, -0.029515478760004044, 0.02252555638551712, -0.00522855157032609, 0.051429834216833115, -0.0071955095045268536, 0.051563188433647156, 0.005178544204682112, 0.003694991348311305, -0.02128092758357525, -0.02855978161096573, 0.008279003202915192, 0.05209659785032272, 0.02591494657099247, -0.002528151962906122, 0.012479624710977077, 0.02771521359682083, -0.0005101449205540121, 0.008106755092740059, 0.0009299987577833235, 0.01708030514419079, -0.03918357565999031, 0.013557561673223972, 0.00839013047516346, -0.02065861225128174, 0.024603640660643578, -0.023959102109074593, -0.01477996539324522, -0.028804263100028038, -0.014157650992274284, 0.011623942293226719, -0.010295968502759933, 0.009712548926472664, 0.018669430166482925, -0.006545413285493851, 0.010373757220804691, 0.004153392277657986, 0.03404948487877846, -0.006028669886291027, 0.002068361733108759, 0.02653726004064083, -0.008406800217926502, 0.041983991861343384, 0.026114976033568382, -0.02239220216870308, -0.021314265206456184, -0.0386057123541832, -0.0417172871530056, 0.0022183838300406933, 0.020225215703248978, -0.014791077934205532, 0.0001494144817115739, 0.01790264993906021, 0.0029837749898433685, 0.01091828290373087, 0.0008820749935694039, -0.005686952732503414, -0.0397392138838768, 0.017480364069342613, -0.026737291365861893, 0.01422432716935873, -0.026315005496144295, 0.017358124256134033, 0.006817675661295652, -0.0072344038635492325, -0.020514147356152534, 0.026114976033568382, -0.012179580517113209, 0.011240552179515362, -0.01387983188033104, -0.01339087076485157, 0.01000148057937622, -0.0011793412268161774, 0.04694028198719025, -0.002928211120888591, -0.03358274698257446, -0.01307971403002739, 0.011173876002430916, -0.04262853041291237, 0.0033671651035547256, -0.012224031612277031, 0.007890056818723679, -0.009356940165162086, -0.012357384897768497, -0.008145649917423725, -0.050185203552246094, -0.02480367012321949, -0.0058119711466133595, -0.016069045290350914, -0.015746774151921272, -0.0012279595248401165, -0.014991107396781445, -0.034471768885850906, -0.009173579514026642, -0.023781297728419304, 0.011312785558402538, -0.006284263450652361, -0.0193028561770916, -0.025626014918088913, -0.006978810764849186, 0.017358124256134033, -0.012312933802604675, -0.02807082049548626, 0.010229291394352913, 0.01459104847162962, 0.022725585848093033, -0.007117720320820808, -0.015346716158092022, -0.008123424835503101, 0.01980293169617653, -0.004861830733716488, 0.016813600435853004, -0.009784781374037266, 0.02591494657099247, -0.022047707810997963, -0.015391167253255844, 0.022670021280646324, 0.0073566441424191, 0.011935099959373474, -0.011207214556634426, 0.02727070264518261, -0.025514887645840645, -0.016702471300959587, 0.0035505255218595266, -0.01628018729388714, -0.003464401699602604, 0.01032930612564087, 0.0008230384555645287, -0.0029115420766174793, -0.019669577479362488, -0.036938801407814026, -0.030693432316184044, -0.008034522645175457, 0.002148929052054882, 0.006156466901302338, -0.025270406156778336, -0.0029587713070213795, 0.053030069917440414, -0.005923098884522915, -0.01980293169617653, -0.016646908596158028, -0.010846049524843693, -0.03967253863811493, 0.00826789066195488, 0.0007341364398598671, 0.011946212500333786, -0.016746923327445984, -0.011535040102899075, -0.013290856033563614, -0.01646910421550274, -0.005264668259769678, 0.0013126942794770002, -0.012312933802604675, -0.0634760633111, -0.031693581491708755, -0.00196695770137012, 0.07334418594837189, 0.057786330580711365, 0.011240552179515362, 0.026626162230968475, 0.021214250475168228, -0.0057730767875909805, 0.018669430166482925, 0.02727070264518261, 0.010546005330979824, -0.0034171724691987038, 0.02473699487745762, 0.009951473213732243, 0.03609422966837883, -0.004945176187902689, -0.011679505929350853, -0.03696102648973465, -0.020214103162288666, -0.037183281034231186, -0.001784986350685358, -0.006073120981454849, 0.0031421317253261805, -0.06654318422079086, 0.019836269319057465, -0.01169061940163374, 0.0028754256200045347, 0.009279151447117329, 0.008723513223230839, -0.0015321711543947458, 0.012201805599033833, 0.03198251128196716, 0.031137941405177116, -0.01119610108435154, -0.03684989735484123, -0.0025823265314102173, 0.007023261860013008, 0.0170914176851511, -0.011668393388390541, -0.02011408843100071, -0.0054452503100037575, 0.016002368181943893, -0.03633871302008629, -0.0345606692135334, -0.00043825930333696306, 0.018791669979691505, 0.02622610330581665, 0.019347308203577995, -0.013746478594839573, -0.0532078742980957, 0.018602753058075905, -0.022136610001325607, 0.05449695512652397, 0.02831530198454857, 0.0064731803722679615, -0.012335158884525299, -0.021503182128071785, -0.027315154671669006, -0.007956732995808125, -0.0019739032723009586, 0.041383903473615646, 0.040939390659332275, 0.0006733635673299432, -0.013590900227427483, -0.011062748730182648, -0.017480364069342613, 0.0010182062396779656, 0.03762779012322426, 0.007362200878560543, -0.026137201115489006, -0.0010515445610508323, -0.03389390558004379, 0.015846790745854378, 0.00012215349124744534, -0.01950288563966751, 0.013013036921620369, -0.0016252405475825071, 0.006462067365646362, -0.0065065184608101845, 0.03300488367676735, -0.03173803165555, 0.0030921243596822023, 0.01045710314065218, -0.0603644885122776, -0.010407095775008202, 0.026003848761320114, 0.01715809479355812, 0.020347455516457558, 0.0061675794422626495, 0.0024725880939513445, 0.031938061118125916, 0.015168911777436733, 0.025314858183264732, 0.006128684617578983, -0.01944732293486595, -0.004595124628394842, -0.004150614142417908, 0.03196028620004654, 0.003153244499117136, -0.033049337565898895, 0.03571639582514763, -0.023603493347764015, -0.0015668985433876514, 0.003719995031133294, -0.013335307128727436, 0.04065046086907387, -0.009601420722901821, 0.021580971777439117, -0.0006205779500305653, 0.00010305344767402858, -0.00346995797008276, -0.004875721409916878, 0.000579946965444833, -0.03084900975227356, 0.01410208735615015, -0.015435617417097092, 0.004572899080812931, -0.029137644916772842, -0.013602012768387794, 0.02622610330581665, -0.0024670318234711885, 0.02411467954516411, -0.0003247008426114917, -0.026515034958720207, 0.0306045301258564, 0.006306488998234272, -4.883535439148545e-05, 0.007967845536768436, -0.03351607173681259, 0.0057786330580711365, 0.004445102531462908, -0.017847085371613503, 0.0027545744087547064, 0.002165598329156637, 0.011823971755802631, 0.033716101199388504, 0.010340419597923756, -0.02172543853521347, -0.003131018951535225, 0.03122684359550476, -0.006606533192098141, -0.041806187480688095, -0.004934063646942377, 0.006489849183708429, 0.0018905575852841139, 0.007039930671453476, -0.0003743609704542905, 0.006400947459042072, -0.0385168120265007, -0.0008049802272580564, 0.008784633129835129, -0.029715508222579956, -0.014535484835505486, -0.019958509132266045, -0.017169207334518433, 0.0026434469036757946, 0.004370091017335653, 0.019425097852945328, -0.008317898027598858, 0.009218030609190464, 0.036627642810344696, -0.00459790276363492, -0.021247589960694313, 0.0005462613771669567, -0.0024698099587112665, 0.016824712976813316, 0.024092454463243484, -0.017480364069342613, 0.027181800454854965, -0.01030152477324009, -0.011218327097594738, -0.015902353450655937, -0.018491625785827637, -0.049696244299411774, 0.025937171652913094, 0.01070713996887207, -0.018547190353274345, -0.034471768885850906, 0.02869313582777977, 0.011401687748730183, -0.029759960249066353, -0.013413095846772194, 0.036005329340696335, 0.0017127534374594688, -0.020558597519993782, -0.016924727708101273, 0.0061397976242005825, -0.022358864545822144, 0.007817823439836502, -0.018424948677420616, 0.04056156054139137, -0.0072066220454871655, -0.009418061003088951, -0.02195880562067032, 0.018524963408708572, 0.005236885976046324, -0.0006125906365923584, -0.04053933173418045, -0.002278114901855588, 0.049207281321287155, -0.014546597376465797, -0.0012446286855265498, 0.021625421941280365, -0.009251369163393974, 0.02535930834710598, 0.010107051581144333, 0.0003809591580647975, -0.04002814739942551, -0.008834640495479107, 0.0017780408961698413, 0.006462067365646362, 0.007834493182599545, -0.010245961137115955, -0.0061120158061385155, -0.0020211325027048588, 0.018302708864212036, 0.004592346493154764, -0.0015071674715727568, 0.006695435382425785, -0.04947398975491524, 0.002844865433871746, -0.0017280335305258632, -0.009462511166930199, 0.006017557345330715, -0.0032504810951650143, -0.016391314566135406, -0.006039782892912626, -0.013568675145506859, -0.01357978768646717, 0.03289375826716423, -0.005264668259769678, 0.025070376694202423, 0.0006601671339012682, -0.0054674758575856686, -0.015502294525504112, -0.033782776445150375, -0.02004741132259369, -0.005695287138223648, -0.013257517479360104, 0.019636239856481552, -0.02018076367676258, -0.01931396871805191, 0.012446286156773567, -0.002861534710973501, -0.0354052409529686, -0.051118675619363785, -0.020458582788705826, 0.02080307900905609, 0.01036264467984438, -0.019091714173555374, -0.025692692026495934, -0.018724992871284485, 0.004886834416538477, 0.0014085418079048395, 0.0011619775323197246, -0.046806927770376205, 0.01856941543519497, 0.006328714545816183, 0.03413838520646095, -0.012012888677418232, -0.019458435475826263, 0.020258553326129913, -0.04898502677679062, -0.02695954591035843, 0.0057452949695289135, 0.02073640190064907, 0.024825897067785263, 0.021214250475168228, 0.008040078915655613, -0.01370202749967575, 0.010295968502759933, -0.01702474243938923, -0.006256481632590294, -0.0037644461262971163, -0.029159871861338615, -0.015346716158092022, -0.018836122006177902, -0.0051035331562161446, 0.021269815042614937, -0.014013185165822506, 0.03362720087170601, 0.0005382741219364107, -0.02462586760520935, 0.006623202469199896, -0.011679505929350853, -0.015591196715831757, 0.0202474407851696, 0.013902057893574238, -0.01074047852307558, 0.002097532618790865, -0.0020641942974179983, 0.001189064816571772, -0.0001850968401413411, 0.005784189328551292, 0.02295895293354988, -0.020436357706785202, 0.01611349545419216, 0.007006592582911253, -0.004592346493154764, -0.008012296631932259, 0.024292483925819397, -0.042984139174222946, 0.0068399012088775635, -0.017502591013908386, -0.0298044104129076, -0.01881389506161213, -0.012757443822920322, -0.008923542685806751, -0.014879980124533176, -0.000958475167863071, 0.019891832023859024, -0.02498147450387478, -0.011312785558402538, 0.012801894918084145, -0.0058008586056530476, -0.02313675731420517, -0.009951473213732243, 0.012857458554208279, -0.03858348727226257, -0.018791669979691505, 0.0006389834452420473, 0.020947543904185295, 0.012390722520649433, 0.005978662520647049, 0.007512222975492477, -0.03327159211039543, 0.06672098487615585, -0.021069785580039024, 0.0012362940469756722, -0.027492957189679146, -0.01391317043453455, 0.003442176152020693, -0.004267298150807619, -0.001912783132866025, -0.012401835061609745, 0.0129019096493721, -0.01893613673746586, -0.010984959080815315, -0.039272479712963104, -0.04029485210776329, -0.005097976885735989, 0.0154911819845438, -0.013301968574523926, -0.00011772575817303732, -0.01616906002163887, 0.015602309256792068, 0.00652318773791194, 0.03147132322192192, 0.020747514441609383, 0.0099348034709692, 0.0030865678563714027, 0.004197843372821808, 0.06823232024908066, 0.014057636260986328, 0.00780671089887619, -0.010996071621775627, 0.03449399396777153, -0.026070525869727135, 0.03362720087170601, -0.008479032665491104, 0.015357828699052334, -0.038716841489076614, -0.027248477563261986, 0.034649573266506195, -0.011957325041294098, -0.006406503729522228, 0.017002517357468605, -0.04707363247871399, -0.0031004587654024363, 0.013090826570987701, 0.012146241962909698, 0.043228618800640106, -0.018602753058075905, 0.01147947646677494, 0.0011341955978423357, -0.021058673039078712, 0.01936953328549862, -0.015969030559062958, -0.017246996983885765, -0.004536782391369343, -0.014413244090974331, 0.04496220871806145, 0.029893312603235245, -0.02400355227291584, -0.027226252481341362, -0.009584751911461353, 0.024648092687129974, 0.013813155703246593, -0.0075677866116166115, 0.01802488975226879, 0.007578899618238211]], "input": ["SNOWBOARDING EQUIPMENT:Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.", "COMPLIMENTARY TRANSPORT:Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.", "CALL CENTER APPROVAL:Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.", "SKI EQUIPMENT:Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.", "70 USD:70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.", "150 USD:150 USD is the fee for transporting sports equipment one way to the Far East and North America.", "US DOLLARS:US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.", "EXCESS BAGGAGE CHARGES:Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger's luggage exceeds the allowed limits, resulting in additional costs for the traveler.", "AIRLINE:An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.", "LOCAL CURRENCY:Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.", "SNOWBOARD EQUIPMENT:Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.", "BICYCLE:A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.", "LITE FARE TICKET:A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.", "EL AL CALL CENTER:The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.", "PERMITTED DIMENSIONS:The maximum size and weight limits that checked baggage and special items must adhere to for transport.", "PACKING REGULATIONS:Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety."], "parameters": {"model": "text-embedding-3-small", "temperature": 0.0, "frequency_penalty": null, "presence_penalty": null, "top_p": 1.0, "max_tokens": 4000, "n": 1}, "history": null} \ No newline at end of file diff --git a/input/first_paragraphs/CarryOnBaggage_first_paragraph.txt b/input/first_paragraphs/CarryOnBaggage_first_paragraph.txt deleted file mode 100644 index dfc0c9de968936b062f18a2fe58b556e5ee83910..0000000000000000000000000000000000000000 --- a/input/first_paragraphs/CarryOnBaggage_first_paragraph.txt +++ /dev/null @@ -1,25 +0,0 @@ -Carry-on baggage -Whether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft. - -First and foremost -In addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website. - -Carry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival. - -This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies. - -Eligibility, Dimensions, and Weight -What are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding? - -Carry-on Bags – Economy Class: -Lite - entitled to one carry-on bag, maximum 8 kg. -Classic - entitled to one carry-on bag, maximum 8 kg. -Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg). - -*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024). - -Carry-on Bags - Premium and Business Classes -Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. -Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg. -Please note: -If no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight. \ No newline at end of file diff --git a/input/first_paragraphs/LiquidsInCarryOnBags_first_paragraph.txt b/input/first_paragraphs/LiquidsInCarryOnBags_first_paragraph.txt deleted file mode 100644 index 05783522afe20cb3211ce4c529f6a34e81fad464..0000000000000000000000000000000000000000 --- a/input/first_paragraphs/LiquidsInCarryOnBags_first_paragraph.txt +++ /dev/null @@ -1,7 +0,0 @@ -Liquids in Carry-On Bags -Whether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check. - -Liquids in Carry-On Bags -Prior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines. - -For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time. \ No newline at end of file diff --git a/input/first_paragraphs/baggage-allowance_first_paragraph.txt b/input/first_paragraphs/baggage-allowance_first_paragraph.txt deleted file mode 100644 index 691061b4ec8a974f32fc653e4a98bc015a4e7c60..0000000000000000000000000000000000000000 --- a/input/first_paragraphs/baggage-allowance_first_paragraph.txt +++ /dev/null @@ -1,16 +0,0 @@ -How many checked bags can you bring? -Flying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed. - -First and foremost -The checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website. -You can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page. -The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy. - -Oversized And Overweight Baggage -What is oversized and overweight baggage? -Any baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more. - -Flying with oversized and overweight baggage? -After going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate. - -To expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight. \ No newline at end of file diff --git a/input/first_paragraphs/batteriesAndDangerousSubstances_first_paragraph.txt b/input/first_paragraphs/batteriesAndDangerousSubstances_first_paragraph.txt deleted file mode 100644 index 8e6c5653031f5ec47e91b99ee3836230c664d190..0000000000000000000000000000000000000000 --- a/input/first_paragraphs/batteriesAndDangerousSubstances_first_paragraph.txt +++ /dev/null @@ -1,13 +0,0 @@ -Information on batteries and dangerous substances -Whether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all. - -Substances and articles forbidden on the aircraft: - Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. - Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. - Explosives other than light ammunition. - Flammable liquids and solids. - Radioactive materials. - Briefcases with installed alarm devices. - Oxidizing materials (hydrogen peroxide, bleaching powders, etc.). - Poisons and infectious substances, such as insecticides, herbicides, and live virus materials. - Items such as high-strength magnetic materials, materials that can harm people or the environment. \ No newline at end of file diff --git a/input/first_paragraphs/damagedBaggage._first_paragraph.txt b/input/first_paragraphs/damagedBaggage._first_paragraph.txt deleted file mode 100644 index 309ef9094dd067ea8d1a3c5a6db0855576bbd95b..0000000000000000000000000000000000000000 --- a/input/first_paragraphs/damagedBaggage._first_paragraph.txt +++ /dev/null @@ -1,25 +0,0 @@ -Was your baggage delayed or damaged? -Sometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction. -Baggage Service Center handles cases of: -Delayed baggage -Damaged baggage -An item forgotten on board -Status of a claims that were sent to the Baggage Claims Department - -Ways to contact about baggage issues after a flight -Phone: 03-9771150 -Sunday to Thursday: 8:30 a.m. - 5 p.m. -Friday: 8:30 a.m. - 1 p.m. -Saturday Night: 7 p.m. - 12 a.m. - -WhatsApp chat 03-9771111: -Sunday to Thursday: 4 p.m. - 12 a.m. -Friday: 1 p.m. - 4 p.m. -Saturday Night: 7 p.m. - 12 a.m. - -Regarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report. -Is your baggage delayed or lost? -Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy. -If you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. -The status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim -Was your baggage damaged? \ No newline at end of file diff --git a/input/first_paragraphs/pets_first_paragraph.txt b/input/first_paragraphs/pets_first_paragraph.txt deleted file mode 100644 index 5b8a3008d38aa05f56358f54290e2ad3c34eb97a..0000000000000000000000000000000000000000 --- a/input/first_paragraphs/pets_first_paragraph.txt +++ /dev/null @@ -1,18 +0,0 @@ -Traveling with pets -Heading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience. - -First and foremost -The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture. - -Please consider that the authorization process may take several months and involves performing several animal tests. - -Please note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight. - -* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill. -* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation. -* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law. - -There are a number of ways to transport animals: -As personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet. -As checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall. -As registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store. \ No newline at end of file diff --git a/input/first_paragraphs/sportingequipment_first_paragraph.txt b/input/first_paragraphs/sportingequipment_first_paragraph.txt deleted file mode 100644 index f4f560e6ef339def019f4421b6b16c4d3163aeed..0000000000000000000000000000000000000000 --- a/input/first_paragraphs/sportingequipment_first_paragraph.txt +++ /dev/null @@ -1,14 +0,0 @@ -Flying with sporting equipment? -Are you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment. - -Important to know -We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: -- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. -- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg. -Note: For those flying with skiing or snowboarding equipment, please see the additional benefits below. - -If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval. - -If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website). -Additional Sports Equipment -If you need to bring sports equipment in addition to your standard baggage allowance, the following applies: \ No newline at end of file diff --git a/input/full_documents/CarryOnBaggage.txt b/input/full_documents/CarryOnBaggage.txt deleted file mode 100644 index a6984d227b56892e5818f3068843e01697d97739..0000000000000000000000000000000000000000 --- a/input/full_documents/CarryOnBaggage.txt +++ /dev/null @@ -1,57 +0,0 @@ -Carry-on baggage -Whether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft. - -First and foremost -In addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It's crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website. - -Carry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane's belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you'll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival. - -This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies. - -Eligibility, Dimensions, and Weight -What are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding? - -Carry-on Bags – Economy Class: -Lite - entitled to one carry-on bag, maximum 8 kg. -Classic - entitled to one carry-on bag, maximum 8 kg. -Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg). - -*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024). - -Carry-on Bags - Premium and Business Classes -Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. -Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg. -Please note: -If no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight. - - -Personal bag -Passengers may bring one personal bag on board, regardless of card type or travel class. -What qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more. -Airplane storage -Where can you store your carry-on and personal bags on the plane? - - -Overhead storage -Carry-on bags must be stored in overhead compartments above your seat. -Suitcases should be placed with the front facing outward, wheels facing inward, and handle inserted. - -Under-seat storage: -Personal bags must be placed under the seat in front of you. -Passengers seated in emergency exit rows may also store bags and personal items in overhead compartments. - -Important information: -The maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets. -Personal bag dimensions should not exceed 18x38x30 cm. -Passengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat. -Unusual items may only be carried in the cabin with prior coordination and approval from El Al's service center. -Duty-free products purchased at the airport count towards the baggage allowance. -Exceeding eligibility may incur fees. -Each carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles. -Unsure if you meet the requirements? Use the meters available at check-in counters and boarding gates. -Enforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly. -Traveling with only carry-on luggage or a small bag? -Passengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination. - -Returning to Israel from abroad? -All passengers must check in at the counters, regardless of luggage. \ No newline at end of file diff --git a/input/full_documents/LiquidsInCarryOnBags.txt b/input/full_documents/LiquidsInCarryOnBags.txt deleted file mode 100644 index 54ceaf6233a48221a9b4585745c8b69dcc782f12..0000000000000000000000000000000000000000 --- a/input/full_documents/LiquidsInCarryOnBags.txt +++ /dev/null @@ -1,16 +0,0 @@ -Liquids in Carry-On Bags -Whether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check. - -Liquids in Carry-On Bags -Prior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines. - -For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights—with respect to carrying liquids in handbags, as these may change from time to time. - - -General information about carrying liquids in handbags to U.S -The volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz). -All items must be packed together in a clear resealable plastic bag. -Medications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor’s note.​ -​Passengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane. -EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport. -Please note that there may be additional inspections and requirements including at the gate. \ No newline at end of file diff --git a/input/full_documents/baggage-allowance.txt b/input/full_documents/baggage-allowance.txt deleted file mode 100644 index 7844b7eda4cc06b77a136bdd0d253535a706ab72..0000000000000000000000000000000000000000 --- a/input/full_documents/baggage-allowance.txt +++ /dev/null @@ -1,70 +0,0 @@ -How many checked bags can you bring? -Flying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed. - -First and foremost -The checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website. -You can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page. -The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy. - -Oversized And Overweight Baggage -What is oversized and overweight baggage? -Any baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more. - -Flying with oversized and overweight baggage? -After going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate. - -To expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight. - - - -Europe and Middle East -Far East -North America -Economy class -EL AL offers three types of tickets in economy class on flights to Europe and the Middle East. - -The baggage allowance and weight limit depend on the ticket type: -The baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies. - -Important information -The pre-order option is available up to three hours prior to departure. -​“The fee varies” – The price depends on a number of factors, such as the destination and date of the flight. -When reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price. -You can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent. -Each piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage. -The prices in the table are per passenger per flight segment. -​​Do not pack valuable items in your checked baggage. -Premium and business class -Premium class tickets include up to two pieces of checked baggage weighing up to 23 kg each. -Business class tickets include up to two pieces of checked baggage weighing up to 32 kg each. -There is a fee for any additional pieces of checked baggage. -Do you have a connecting flight? -When several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next. -Information on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification. -It should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information. -Certain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website. -On code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers. -Want to check an additional piece of baggage? -Purchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee. - -If you haven't checked in yet, you can add baggage via Manage my booking. -If you've already checked in, you can add baggage via the check-in process. -Manage my booking -Check-in process -Additional terms and conditions -The permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier). -Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket. -The size of the baggage in the next clause refers to the sum of the length + width + depth. -The maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm. -Baggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL’s sole discretion. The prevailing rate is the rate on the date of payment for the service. -The maximum size permitted for an infant’s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all). -Some countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4”. -Passengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177. -Flying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information. -If you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge. -Prices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment. -For those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India. -EL AL reserves the right to change the excess baggage rates from time to time. -The aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights. -The luggage policy of a flight may vary when the scheduled aircraft has changed and\or on flights operated by other airlines. -Subject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services. \ No newline at end of file diff --git a/input/full_documents/batteriesAndDangerousSubstances.txt b/input/full_documents/batteriesAndDangerousSubstances.txt deleted file mode 100644 index 4a32011a1d976843e707d949e4b9d6473f147e8c..0000000000000000000000000000000000000000 --- a/input/full_documents/batteriesAndDangerousSubstances.txt +++ /dev/null @@ -1,63 +0,0 @@ -Information on batteries and dangerous substances -Whether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all. - -Substances and articles forbidden on the aircraft: - Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. - Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. - Explosives other than light ammunition. - Flammable liquids and solids. - Radioactive materials. - Briefcases with installed alarm devices. - Oxidizing materials (hydrogen peroxide, bleaching powders, etc.). - Poisons and infectious substances, such as insecticides, herbicides, and live virus materials. - Items such as high-strength magnetic materials, materials that can harm people or the environment. - - - -Frequently asked questions about batteries: -What kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)? -Most types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use. -Spare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation. - -Batteries allowed aboard the aircraft in carry-on baggage: -Dry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc. -Dry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad). -Lithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries. -Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries. -Lithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries. -Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries’ terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked “nonspillable” or “nonspillable battery.” Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs. - - -What kinds of batteries are allowed in checked baggage? -You may not check lithium batteries except: -Electronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions: - -Make sure that the device is completely switched off and protected from accidental operation. -The device must be protected from external damage. -An electronic device may not be stored together with flammable material (e.g. hairspray, etc.) -Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers. -Electronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked. -The other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat. - - -How do I determine a battery's watt-hours (Wh) rating? -To determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000. - - -Is there a limit to the number of batteries that may be taken aboard the aircraft? -Yes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin. -Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin. -Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries. -Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft. - -What does “protected against short circuit” mean? -When metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a “circuit” or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire. -To prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can’t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit. - -Battery-powered wheelchairs/mobility aids on EL AL flights -Battery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations. -If your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list. -If your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates. -Traveling with hazardous materials on EL AL flights - -Are you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight. \ No newline at end of file diff --git a/input/full_documents/damagedBaggage.txt b/input/full_documents/damagedBaggage.txt deleted file mode 100644 index 57346e8cabdd920960650067b799b667670af292..0000000000000000000000000000000000000000 --- a/input/full_documents/damagedBaggage.txt +++ /dev/null @@ -1,201 +0,0 @@ -Was your baggage delayed or damaged? -Sometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction. -Baggage Service Center handles cases of: -Delayed baggage -Damaged baggage -An item forgotten on board -Status of a claims that were sent to the Baggage Claims Department -Ways to contact about baggage issues after a flight - - -Phone: 03-9771150 -Sunday to Thursday: 8:30 a.m. - 5 p.m. -Friday: 8:30 a.m. - 1 p.m. -Saturday Night: 7 p.m. - 12 a.m. - -WhatsApp chat 03-9771111: -Sunday to Thursday: 4 p.m. - 12 a.m. -Friday: 1 p.m. - 4 p.m. -Saturday Night: 7 p.m. - 12 a.m. - -Regarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report. -Is your baggage delayed or lost? -Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy. -If you didn’t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. -The status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim -Was your baggage damaged? - - -If you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy. - -After receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle. - -In the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form - -You may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001. -List of participating stores -Choose -Center area -Tel-Aviv - - -Makor Haziud Baggage and Outdoor Equipment -Address: Haaliya Street 24 -Tel: 03-6822330 - -WeShoes -Memsi Touring -Bialik 3 -Tel: 076-8100205 - -Log In Log Out - Importer of Luggage and Bags -Steinman 20 (Bavli Neighborhood) -Tel: 052-2310738 - -ARTY Rimon -Service Pickup and delivery service -Tel: 1700504544 -WhatsApp: 0532310738 - - -Ramat Gan and Gevataim: -ARTY Rimon -Service Pickup and delivery service -Tel: 1700504544 -WhatsApp: 053-2310738 - - -Bat Yam -ARTY Rimon -Service Pickup and delivery service -Tel: 1700504544 -WhatsApp: 053-2310738 - - -Holon -Shin Tik -Memsi Touring -Sokolov 59 -Tel: 03-5040752 - -ARTY Rimon -Service Pickup and delivery service -Tel: 1700504544 -WhatsApp: 053-2310738 - - -Petach Tikva -ARTY Rimon – Import marketing and distribution ltd -Hameretz 6 -Tel: 03-9229049 - -Trek Market -Memsi Touring -Izthak Rabin 2 -03-5069443 - -Service Pickup and delivery service -Tel: 054-2520061 - - -Kiryat Ono -WeShoes -Shlomo Ha-Melekh 37 -Tel: 0768100223 - -ARTY Rimon -Service Pickup and delivery service -Tel: 1700504544 -WhatsApp: 0532310738 - - -Airport City: -Cargo Tikim ve Mizvadot -Log In Log Out – Importer of Luggage and Bags -Gilboa 1 -ICL Building -Tel: 054-2520061 - - -Rishon Le Zion -Rimon Mizvadot ve Tikim -Saharov 19 -Tel: 1700504544 -WhatsApp: 053-2310738 - - -Yehud -Moka – Pickup and delivery point -ARTY Rimon Import marketing and distribution ltd. -Moshe Dayan 3 -Tel: 03-6726585 - - -Rehovot -ARTY Rimon -Service Pickup and delivery service -Tel: 1700504544 -WhatsApp: 053-2310738 - - -Nes Ziona -Makor Haziud Baggage and Outdoor Equipment - -Rothschild 4 - -Tel: 03-6822330 - - -Shoham -ARTY Rimon -Service Pickup and delivery service -Tel: 1700504544 -WhatsApp: 053-2310738 - - -Ramle and Lod: -ARTY Rimon - -Service Pickup and delivery service - -Tel: 1700504544 - -WhatsApp: 053-2310738 - - -Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers -Galgal Yaziv -Damage to powered mobility scooters , electric power wheelchairs and more -Adom street 23 – Industrial park Kannot – close to Gedera - -Orthopedica Steiner -Hasar Shapira 4 -Rishon Le Zion -Tel: 03-9517674 - - - -Baby equipment: -Hagalgal – The Israeli Center for Baby and children equipment and goods. -Tel: 054-5947464 -Pick up and delivery from all areas. - -Bugaboo baby carriages and strollers -Maskit 14, Herzliya -03-5407999 - - -Important to know -In the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage. -In the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage. -In the event of lost baggage, you must contact us after 21 days from the day of the incident. -When contacting us, please attach a copy of the following documents to your claim and hold onto the originals: - -Flight tickets -Boarding passes -Baggage tags (the stickers affixed to the flight ticket and/or the object) -Lost or damaged baggage report from the airport -Receipts that support the claim - - -Please note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables. \ No newline at end of file diff --git a/input/full_documents/pets.txt b/input/full_documents/pets.txt deleted file mode 100644 index 57a15e3eff4997bae14d3242ec8cae77eb8003dd..0000000000000000000000000000000000000000 --- a/input/full_documents/pets.txt +++ /dev/null @@ -1,195 +0,0 @@ -Traveling with pets -Heading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience. - -First and foremost -The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture’s Veterinary Services. Ways to contact the Ministry of Agriculture. - -Please consider that the authorization process may take several months and involves performing several animal tests. - -Please note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight. - -* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill. -* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation. -* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law. - -There are a number of ways to transport animals: -As personal baggage in the aircraft cabin – Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet. -As checked baggage – In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall. -As registered cargo – There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store. - - - -Transporting a pet from Israel abroad -If you intend to transport an animal from Israel, whether you’re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo. - -The main factor that influences the mode of transport is the animal’s weight: - -Animals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin. -Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation. -Animals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold. -Animals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold. -It is important to note that there are additional factors that may affect the animal’s mode of transport. - - - -Please note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo). - -How to obtain authorization to transport an animal from Israel abroad: -Check with the destination country’s authorities to determine the requirements for transporting an animal to their country. -Contact your veterinarian to have him/her perform the required tests and issue the necessary authorizations. -After receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian). -Update us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking. -Make sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this. -Guidelines for Transporting Dogs to the US -Please note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog. -Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website. - -We recommend using the services of companies specializing in animal air transport. -Please note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States. -Additional requirements for obtaining authorization to transport a pet as cargo with a bill of lading -In cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file: - -Transport authorization from the destination country authorities. -Export license. -Bill of lading. -Certificate of good health. -Destination, flight details, flight date, details of the sender, and details of the recipient. -The measurements of the transport cage. -Bring all of the required authorizations with you to the airport and present them at the check-in counter. - -For questions and clarifications please contact the Cargo Division: +972-3-9716679 - -Transporting pets to Israel -If you intend to transport an animal to Israel, whether you’re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo. - -The main factor that influences the mode of transport is the animal’s weight: - -Animals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage – They can usually be transported in the aircraft cabin. -Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation. -Animals weighing between 9 kg and 100 kg with their cage – They can usually be transported in the aircraft hold. -Animals weighing more than 100 kg with their cage – They can usually be transported as registered cargo in the aircraft hold. -It is important to note that there are additional factors that may affect the animal’s mode of transport. - - - -Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. - -How to obtain authorization to transport an animal to Israel: -Contact the local authorities to obtain the required documents. -After receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email. -Did you send the documents to Veterinary Services and you did not receive a response within four hours? -Please call: +972-3-9792240 -Update us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking. -Make sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this. -Additional requirements for obtaining authorization to transport a pet as cargo with a bill of lading -In cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il​ and attach the following documents in a single PDF file: - -Authorization from the Veterinary Services Department. -Export license. -Bill of lading. -Certificate of good health. -Laboratory results for rabies antibodies. -Name of customs brokerage company (if necessary). -Bring the Veterinary Service authorization with you to the airport and present it at the check-in counter. - -Where do you pick up animals after landing in Israel? -When the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall. -When the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal. -For questions and clarifications please contact our Cargo Division: (import tracing): -israelc@elal.co.il -Tracingi1@elal.co.il -Telephone: +972-3-9716589/592 -The costs of transporting animals -Transport costs as baggage: - ​Europe and Middle East North America and Far East -Animals weighing up to 9 kg with their cage $100 $150 -Animals weighing between 9 and 50 kg with their cage $200 $250 -Animals weighing between 50 and 100 kg with their cage $400 $450 -Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division. - -Transport costs as cargo: -Transport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at: -+972-3-9716679 - -Costs – What you need to know: -The cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food. -The prices are valid for animals accompanying the passenger on the same flight. -Payment is made at the airport after the animal is weighed. -Payment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance. -If the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline. -The costs are not applicable to codeshare flights, operated by other airlines. -A passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown. -General guidelines for transporting animals -Only the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits. -Animals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly. -Pets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination. -The passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian. -EL AL will not be held responsible in the event an animal is denied transit or entry into another country. -Transport cage guidelines - - - - - - - - - - - - - - - - - - - - - - - - - - - -Transporting service dogs in the aircraft cabin -Service dogs that are accompanying: - -A passenger with special needs. -An I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service). -May be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions: - -You must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind). -It is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard. -The passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date. -The passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport. -The dog must be tied to a leash and/or harness from check-in until landing at the destination. -It is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary. -It is the passenger’s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements. -Flying to London with a service dog? - -In addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre. - - - -Flying to or from the United States with a service dog? - -In addition to all of the details included above, it is the passenger’s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters. - -Please note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog. -Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website. - -We recommend using the services of companies specializing in animal air transport. -Please note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States. - -Important information - -EL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight. -EL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers. -EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: -The dog constitutes a direct threat. -The dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public. -Transporting the dog violates safety and security regulations. -The passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above. -To the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage. \ No newline at end of file diff --git a/input/full_documents/sportingequipment.txt b/input/full_documents/sportingequipment.txt deleted file mode 100644 index c1983774b1d4e1acf1dfa0f3c1c05fb4cdfdd56f..0000000000000000000000000000000000000000 --- a/input/full_documents/sportingequipment.txt +++ /dev/null @@ -1,53 +0,0 @@ -Flying with sporting equipment? -Are you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we’ve gotten warmed up, here’s some important information about flying with sporting equipment. - -Important to know -We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: -- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. -- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg. -Note: For those flying with skiing or snowboarding equipment, please see the additional benefits below. - -If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you’ll need to contact the El Al call center for approval. - -If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website). -Additional Sports Equipment -If you need to bring sports equipment in addition to your standard baggage allowance, the following applies: - - -Allowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg. - -Fees: -- Europe, the Middle East, and Morocco: $70 one way. -- Far East and North America: $150 one way. - -Please ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service. - -Payment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations: - -The final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline. -Checked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger’s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page. -Prices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment. -Transporting snowboards and ski equipment? -In addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width). - -If your ski equipment exceeds the permitted dimensions, you’ll need to contact El Al’s Cargo Division (Tel: +972-3-977-1177). - -What does Ski and snowboards equipment include? -Ski equipment includes one pair of skis, one pair of poles and one pair of ski boots. -Snowboard equipment includes one snowboard and one pair of ski boots. -Transporting bicycles? -You can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you’re flying in). - -Please note -Motorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold. - -Transport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations: - -Remove the pedals. -Dismantle the handlebar. -Let out some air from the wheels and separate one wheel from the rest of the bicycle. -Make sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid. -Please note -The information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines. -It is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment. -Please note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. \ No newline at end of file diff --git a/knowledge_graph.html b/knowledge_graph.html deleted file mode 100644 index 24861c0fbc01c3436991e5cc59d5e42395aa05d6..0000000000000000000000000000000000000000 --- a/knowledge_graph.html +++ /dev/null @@ -1,446 +0,0 @@ -<<<<<<< HEAD - - - - - - - - - -
-

-
- - - - - - -
-

-
- - - - - -
- - -
-
- - -
-
-
0%
-
-
-
-
-
- - - - - -======= - - - - - - - - - -
-

-
- - - - - - -
-

-
- - - - - -
- - -
-
- - -
-
-
0%
-
-
-
-
-
- - - - - ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff - \ No newline at end of file diff --git a/output/create_final_communities.parquet b/output/create_final_communities.parquet deleted file mode 100644 index 2f74217fafbcb3ea867f2bc12a0e94bfdab5912f..0000000000000000000000000000000000000000 --- a/output/create_final_communities.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f1f7578a085cbbb2235406ee80f1c4445c6c8feb23d7f2beefe351bfae15bee1 -size 24185 diff --git a/output/create_final_community_reports.parquet b/output/create_final_community_reports.parquet deleted file mode 100644 index b8d73db81a46aae522e647c0426a06d11cd919f0..0000000000000000000000000000000000000000 --- a/output/create_final_community_reports.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2a55baef36e5ba68e81f7c0ded99581ee941970db5a11c0db7ac09cf7f370ba4 -size 346743 diff --git a/output/create_final_covariates.parquet b/output/create_final_covariates.parquet deleted file mode 100644 index 8bf7c26a3d9ea31cb83fe8f5c14760ad864b0399..0000000000000000000000000000000000000000 --- a/output/create_final_covariates.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a55a851dba23b50a28c1fe1435c17989976d2eb8d4d4753d7af7e011428fa566 -size 22753 diff --git a/output/create_final_documents.parquet b/output/create_final_documents.parquet deleted file mode 100644 index a47bc7e73d14795427f027e50a94807e1dc2042b..0000000000000000000000000000000000000000 --- a/output/create_final_documents.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:87676af0180162f9e9b32db974b530d400b70889363a5715a0fb3231509c3199 -size 38094 diff --git a/output/create_final_entities.parquet b/output/create_final_entities.parquet deleted file mode 100644 index eb80f14f0ecb1d24fe16d935ccd5243bdef2ff1d..0000000000000000000000000000000000000000 --- a/output/create_final_entities.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8c4b648df5a0904620150c9393ee90b110b5197808169e4f7e4745c5603846e -size 3382030 diff --git a/output/create_final_nodes.parquet b/output/create_final_nodes.parquet deleted file mode 100644 index c2381e8747a4e7a2fc1e4b22014de21dc6b62b8f..0000000000000000000000000000000000000000 --- a/output/create_final_nodes.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:879a3f01169ffb9b08ec49fa561f333c7fca9413bcb39d7630f4eab99bbc8aba -size 6781132 diff --git a/output/create_final_relationships.parquet b/output/create_final_relationships.parquet deleted file mode 100644 index dbabcdf8fe9626f0a499416dd0a136e6a79a68cf..0000000000000000000000000000000000000000 --- a/output/create_final_relationships.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a03e7ef7e8c0a9c5f0d9c39e9dd218ce5a090493c22ea3ebb08208bbce7209d4 -size 57480 diff --git a/output/create_final_text_units.parquet b/output/create_final_text_units.parquet deleted file mode 100644 index 5428160167ffabb60340293a15b47fc456a2e6d1..0000000000000000000000000000000000000000 --- a/output/create_final_text_units.parquet +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:268b30b232861aa3959c0a7dec83e72c21ec5b8b20b3b92414b834bee07941fa -size 78151 diff --git a/output/lancedb/default-community-full_content.lance/_transactions/0-af9189aa-5641-44a2-8b85-22a8d417df85.txn b/output/lancedb/default-community-full_content.lance/_transactions/0-af9189aa-5641-44a2-8b85-22a8d417df85.txn deleted file mode 100644 index fdf656168a5a7adaa7bc0fb9c382586d8b2727c3..0000000000000000000000000000000000000000 --- a/output/lancedb/default-community-full_content.lance/_transactions/0-af9189aa-5641-44a2-8b85-22a8d417df85.txn +++ /dev/null @@ -1,2 +0,0 @@ -$af9189aa-5641-44a2-8b85-22a8d417df85��id ���������*string08text ���������*string085vector ���������*fixed_size_list:float:153608% -attributes ���������*string08 \ No newline at end of file diff --git a/output/lancedb/default-community-full_content.lance/_transactions/1-81139402-0ac1-43cb-b13b-ec998eb68283.txn b/output/lancedb/default-community-full_content.lance/_transactions/1-81139402-0ac1-43cb-b13b-ec998eb68283.txn deleted file mode 100644 index e6564f88924e4753372b417513db440c713a028f..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-community-full_content.lance/_transactions/1-81139402-0ac1-43cb-b13b-ec998eb68283.txn and /dev/null differ diff --git a/output/lancedb/default-community-full_content.lance/_versions/1.manifest b/output/lancedb/default-community-full_content.lance/_versions/1.manifest deleted file mode 100644 index 1f86da80ac33e44c3cf90bc96e508e61a2ed888c..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-community-full_content.lance/_versions/1.manifest and /dev/null differ diff --git a/output/lancedb/default-community-full_content.lance/_versions/2.manifest b/output/lancedb/default-community-full_content.lance/_versions/2.manifest deleted file mode 100644 index 4325ad96cc347384faf9cda9906889806a7f91f6..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-community-full_content.lance/_versions/2.manifest and /dev/null differ diff --git a/output/lancedb/default-community-full_content.lance/data/00bc2e82-bf0d-4d38-b797-19f58422c27b.lance b/output/lancedb/default-community-full_content.lance/data/00bc2e82-bf0d-4d38-b797-19f58422c27b.lance deleted file mode 100644 index 176883a87176e46238e6d37bbb0a6853db708fd8..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-community-full_content.lance/data/00bc2e82-bf0d-4d38-b797-19f58422c27b.lance and /dev/null differ diff --git a/output/lancedb/default-entity-description.lance/_transactions/0-c2d44f27-557c-46fe-a323-a82f752bd8e4.txn b/output/lancedb/default-entity-description.lance/_transactions/0-c2d44f27-557c-46fe-a323-a82f752bd8e4.txn deleted file mode 100644 index bb80123d20768d1ffefd4476b0b1b7905c5f1153..0000000000000000000000000000000000000000 --- a/output/lancedb/default-entity-description.lance/_transactions/0-c2d44f27-557c-46fe-a323-a82f752bd8e4.txn +++ /dev/null @@ -1,2 +0,0 @@ -$c2d44f27-557c-46fe-a323-a82f752bd8e4��id ���������*string08text ���������*string085vector ���������*fixed_size_list:float:153608% -attributes ���������*string08 \ No newline at end of file diff --git a/output/lancedb/default-entity-description.lance/_transactions/1-77860727-5e6c-4d53-94a7-9cf9442ebab5.txn b/output/lancedb/default-entity-description.lance/_transactions/1-77860727-5e6c-4d53-94a7-9cf9442ebab5.txn deleted file mode 100644 index 972060149b45659f08fbc50c83b45201690e1d34..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-entity-description.lance/_transactions/1-77860727-5e6c-4d53-94a7-9cf9442ebab5.txn and /dev/null differ diff --git a/output/lancedb/default-entity-description.lance/_versions/1.manifest b/output/lancedb/default-entity-description.lance/_versions/1.manifest deleted file mode 100644 index ccea2b11e6cb2180f56d5cdfd9d48ec8d0fb9840..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-entity-description.lance/_versions/1.manifest and /dev/null differ diff --git a/output/lancedb/default-entity-description.lance/_versions/2.manifest b/output/lancedb/default-entity-description.lance/_versions/2.manifest deleted file mode 100644 index a123fd49542841243b20ed7ba89aa362d4931b88..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-entity-description.lance/_versions/2.manifest and /dev/null differ diff --git a/output/lancedb/default-entity-description.lance/data/1000e8a7-e7d7-43e1-bede-dc8bfb244d13.lance b/output/lancedb/default-entity-description.lance/data/1000e8a7-e7d7-43e1-bede-dc8bfb244d13.lance deleted file mode 100644 index 8ef480038b09c928a255dc6af50a664e21d460fd..0000000000000000000000000000000000000000 --- a/output/lancedb/default-entity-description.lance/data/1000e8a7-e7d7-43e1-bede-dc8bfb244d13.lance +++ /dev/null @@ -1,8810 +0,0 @@ -e857f8b983da4e07b9e1f54afcc4d8194a70d3cac5fc4836a2adb3a5060bc54f393da9a98a7e4d5fa295b3bedd9b91ac3782c4f50bf840adb31eb0ae3750862b855cfdfd66354c19bd6facc1a6bf2452333065f23b084057a7d8bc176aeab05eaa2a2ebec4514fca9424789ea173fdfa07b7f0a51832481aa00f207896dd435446278e8295f548c08ff155cdc3d8ebfab81c3f5350414da7945dfba0f9a6eb78963eb96172bd4d748fb2a9bcb36e65063017060bc58b40e1ad19e12476beca78d17d3340bebe4c4183f580bf04c06582f46e68314bd14809aa1d43f68765aa02d11089b54ff3401e95c030959af30d24d5fc5e0655504783935200779c11aa2cfcef41cf1cf14af7b1a0df8e41125f094c2a068d43e549bc94d4332b571c093132a1ac55e98d42019d17c2e3f05feb06e235e900cdf744a9a96f77f1e32a992742dec0b957904ea392b2235c544664b387acbc581df3427f819f3833ddaab0ae3db525e4d60f40f6b368cc75593ebe4615f9ebdba36b43ffac638339409d2a719c22e0d96dbc4cfcaedde33aa57736efd1173f3b8c7844afb9508bfc49bc2f4e94c483cbba36435aa3990d51a9cd3c7b32b1f30d2bde43409b7e4d9f6b0a50fc7b46e96fe5d249d29d6b82c4198af4a9dd25620a07e14451b6ec2c43cf8af95a6996f25191914f2c84ee75fd7f56af830afa3e98d11d40019360e61d8b7185dd1f9ed255f747469587c1743bbeec462da180596c95ee48d093fe5bd0694bd69c38cbdcf8ac5d4f5cb0f9b2e88957e5c92e4f62ab90414543bc92f2fb6f6e9d2cd7d907dcb89548fdb61764b4396d4cb32f957ec5f68b4d8b99e7b2490e398d331da7a9fe81614722bbbb447e78f917197e37cc7b3b314a57b7876459b9022cd64eaf56ac2b5c49d9a09c4b8dfb26aa8a9de4634543ec43e2bc0e50c8f0bccbae739703c816fa4daab0c3e87ab78cb8e60b0970ab8d094fada6c38cf76b9bc493f576f533d5684834b2ad603dcedd69b3a0212eea87854734bb538bf89cf12c446aec3fe9441a4b01840e53e026274909f883732e9a0c44bfb39633137d3e1fde2f3b894b783d4163aa93c68062b28304a03222ac85fe41dd81e46bb5dc12ad126037944e0baf4dec9ce9b7828745ecef9febcf2eb01e4b8f839233bdd2ac1f69746e9806306645819798a6d54fee80d4d6bd22a905c946aea0ba3c3de44ad65e2a7eea985cd441fb880dc8ae7fe334b750f6d1751e4e4554b22b3a5b7ed60640ec2777020cdb4f4cbb2500946e3b40a017f26772f4eb4775b72d27ef73a56559101e684cc91743ef8a036a858c69556a0fb995a9f8154519a7c18bb9abb2ee14654d11f2f2d34c48aacdb94bcd680db15d5dd2bb43ee4842a8e065e8d185ca8a3e0db6accd9d4bd6acad47a8383fa42910d6fa6bd359477cbc6bcb755bb3f41a025b6e498dd54c2788e457eae887d763e0fa5c436eb3487f9dc35f767742720023d04d9acc404d9d8881c79d6a2e96b90a989c88fa3c4f2ebb378f922c09342758a5249b846f407aa63c7b46b3a77ee288298646015f418a96d4a5532b5ec29c5e9edf9807634b15bc0fadecf2216d35046ad1e228e440e69fa88eab6104f06d15251b0ccad340a7a1d3de3cfd67bf357c552f4bd6024b2ca2b104aa048eb8727657da688aae4a7084e8c84055cb96ffb836b42681874de7abaea49d6f2f41b3e888ee0e68fd458a8d96c579a3f0e76fe2e0a8e5287f4f9b80dd2790561f43a341ebf635539d4c0684d18eac659f34b256de15292e9240d8bf4036cfc43e86044e679df3789e4bd99d11bd0cade9aba590b48f94dcef436a8d4c9572ac90bb854c453f8b59474d59b9addac2b8d756aea121b3b7bb5e468bbbed844cfedb3ffa3a37ce81a5794b479fd010a9510fe72e0f38fbf2e0854658be331b4e764abdb475e0500969e5483da17c24fe91ed2d75717d69d3ac8743bdac0adee53e0c98cc43ff71d6750a4f119133704d553f9bdeeb972ce207f7462db17ac0ad6cd9a315046dabdea251492b855317846ab4d72c46ea00c4008b4d8c9c513cbbd259b8ecc44adc8208b6433da862097de945fc6cd1c9163cf8aa41a6aaddb87ab6a25f43a146690e4a6742829984355d8a67ecd02c9d06a87fcf41f28074a383ad77e4815924c54757114d0286c67740a30f6afe615033f4464e4265b4e6080b480c192fe0e4164af9bc439089a121fcfdfbc436397c9320c9704dc38d5aba663e4b1db09eb9b20cbb2a44a8b2b92aa28cc3aca26666ffb6caaf4a88ac8c1a402ac6def7a8708ad9a2e74e5bb4379e2729c93417b9a6fd3c4d594da4a0ed16d450e2b8b0376699004cfb409cb37f394f5b1ff81d7e5afa5b43364e7f9cbb3464a867b789577267dc7b5640238df2bbbd00cedeb77c2cdd1e631d4d9b90358413d2cfc1d2982bb3a9b739459e9d9f46a951f55be88f1e71bf04cf4e4a99941b43808c5b27cd333e711d9d475296f07ca311d0af51486518d629074a0c9b1c16b29a6341a65f4c1aaa2f2a44b8b81dfda992bfffaf3e9d2a347dc84cf29761196555d00fefcded8cfa27204b48840e884c11d7e38cc6f5f13a0aad46229966f18452cb539389707daa18fe485198f0bf21a0276b069d73e9e176c24173a6c05681e8abf9620e848131a307478698536fc653e3f8d8affb353c7f874aabb3c0670f5744b74d14a45f323591461089513e42917a501d981cffc5ea3149868e080df4822212d43fe9805fc16f49ce950698daebeca3f0a7377ecfb3434c4e8b6582f85b652141da82282d162449c7a574d7645f6bb60fa1438ca8733c40148985a992997e698a78b6f78f470d4e86a5e8629ffb11739b9d18cbb06a164b06b64949af49b136e44c60231a2c5d41039c8734f2b1239f50c42efdb2735f43e99a7268ccd2f926e2e16d1c5acadc4f7f82d7a506abf447b3c2004c9aeea64121b8065deb3f3bc6351fe81eb2fe6643e7bb82f8c7347a4eda6428f79beeed4e439bfe50d29e3dcca46dd56741733a458db47bbeb06d082f915ea8b1df1b394badba308529c0174f759a270f3e5eb140f0b3a22548beb86399f08b378e25a447b6844483ee42f556a321c4d204fc26483ab4195910b0fbf9f2923516709ed54e2cb52d97b79572db949e189970ef2e45adb2bddf1caf40914fa8b225e4f8fd42d58cbb98de176aa0460d833c5dd6cc4dcd8889bcaa32d9131fdc2169354ebd438bbc57ecf5d0467cfbb13f80fd1dee48ca81f32e327df9922907058e2afe464fe59876e8026a495c988c72bc22c4344fa8acaddee89f93b7979d741b52272547b7924fcb035d977745fec17c7f71184b7f92d3bbceefc07d3853ca97ee5d434ba5b1d39eabf127dac410dcdaabc164403a87357ca82ae8616b0a89f1e5d0a44d4ab6b000c7c17b92ed37ee13aebb0243bd9e2e1d55e32d142ee13f0995ac5e4ebfa64d8b0f1a2a75b4605ccaa5e3594eb880f7540964165f3b148ef9dcebda457593a8a4da7a5d951a84575da15fde42de9323e06fd8dc161ee944d8bb6b6b4f1a9a79d551f41352461a2e20d1b53e445a87852b6b32b08c82868583de041e4008bf4f7cd82e0acedc116e53bad2dd447ebfe16389da868d0348170cc6a83e4280bac72a50d60cdfeae04f986f69c240a795deec636e41ae989718fc21661143208e372ab9fc233734e215ac91b8c543619ed0b176d9c10136208c02892f2043c1b2565dde25eea22e415a8558dbd2437b9fedf4af277cb098046f78fc6a6c46689188d4562b917b033e4345bd148649a1bc1682763d111ad9cc800d3ebd3c456a9efdb0f35b1d0d91076abdfe5f8c4581acf951cfa53fbb098ec932757e8a4c96b35257b679d058e353d6640192ba431aaa9f400bf96834bdb32060485b8c4216b1a85aafb4404fcbd7ffd069952646cabad9f38dfd1d1e6c808fd2ee59874d77b4716cb1e7915b2affa1ac00b4fa4f32b33c45e6f4badc6025074f5999ab4b218f905ad1b18e5c16b77ae937257340d3943cacb6707a9eb6d5b734e5680e4bb489ee2a752e1abf0495aff26e87ba4144a6c9f625e1187561a30f395b61594bad84ab27b5deccc35ea6d4993c6b7541d8ac7f29a604244de1c0a47d04b66b46e1b20d62dd28cd0c769060de5c9e764d348616c9d59d21c43ac228ba34632d47e1a62a4c4383cd77dc927cfa1116c5455bb93a819d63e4454ae6b57454fbdb4d64b12b02218fe13b20248b4848969c4aada3a6fec33a0952042c1b66e3f4314dc29b7bdcb5e7294cf3efe584d8a5854e15a0932739f642541f8489c726156c41f3937e71f5747a50d6953c762f1093468dadf0bc3ad9bd5512754d6357b4fd46188ce3c1795e6a1d6b00182448de084becbedf9b1c183f15b8d98e67030f8d48a4b4d2748a82748c577a0e9f9c78344afa95bda1b85d942985130a5fd56e604f39b6e4e613d9df47a81ab3cb7ff0e24526b83fbbef4dbd9773f333d82425904264a88460a18d1916ad0b8f5608ad6148d28a5a3585c36e58f08265339ac1c84278810129db3364444830a89851b9a042e39db87bd97b81e94e585c53e3fa7f43ef990f3cf82199b7de7ab1c5a618684a179cb722ac442accc153fa596c396a40c5a827cde195952bb0b1c422c16f2b4e37b647c7273ab3682f147587f9703146b3877cbf313ffff23f73b316afc403458985867d878397ed9e2f9f49f7fdf14b2a8ee3e02bdc30ce52f5da2af27fe94fe3925db3d815cfbeb0010cba90de0042df853822ca8346fbcd4b28e23b775747efa3612de6052d2315cca42e1a524f48e08dcf57f4982983f6147a0e05f68949ad818f40bf86f367318adce05c2b1443358e9cd7752355eb3bc989bb3cf001426fa0f2444da83df4f83c67ecaa47c94de5a69c59726e20f1587dcab3c87c62448ca6613c46147c5236060d7ad76dd341a7ab3e614d640a13e1ab518b33c6ca4afa8285592c09ae803f28883ea715e54e13b578952739ea0d3b5a6b590f24aa4dfe913bea415b0be8179a1d0bec78ea48ea8ffc4ee0f01c8775ddcba343cdde4a0081f3e47f4eaedabb4538ef867d7646568413d563742de98bf411071d30204bc9a41e4f045c3b68f5a755633d9cd34f6c8491c3e9ae174d945d993569ce484c379f2fb936fc94522a07bb36fa432648dba720c02a801b0860698b5f3c0a0945f5a59a9877f7a26b10853f60880e1643c6b906ca815776571488246155e7f248278df6aaf1a4073ea28d7945c893ec4a7d897c5b91e4a46f5ac40a5da6c213447b96d8f1847f79386e0f3cb7ab58e8471cae0a57faab5c2768a35025e3296e44668a33f10d5dd31f171f514bb41a644d49ae699558d157a0925a571e12b4cc4b2fa068de659665f112c87461e7b29c4958af7da1f4d5cef75180724fb409064e6aaddb254108f0328c78788c36315c4244b51a34935f68a8226e0ca91eaf414edfac79015f3eb674744f671d40d6e340f09d119ee02fee8f1bed88467cebc24fddb71deef53ba5678b0cf685cdac0645e1b8fb1edc0ec58722c5008272ac2642ceb4c32da8dd66625a00f583abcbca4da59b1b86e5c6d8cabcc31c720f25bd48eaaea3db8857de002f286402c5940e438d826584f6e4009b290b9456f54f2b48a197223a220824bcd6bbe1db259ba240e899d2381398b896ca660ebebc076d48bca96e14ff9e9a9c690390dc9fdf034e46b8e676b5ee951c22fec7ef750db946c98d7e91881096d60c16394665c5ed4a9ea005eb108b3487b5236bce1b74a84eda85509aacbed9c730ca04092b765543a99ed4c0eec1dbb25da1f57cdee8c34d588f5b5a2d15f285f289d05e21ab49470abefd6d8482adeaabca1090ce71f442eca2ca24930d04ff32ffeeaa25cc9a4ec3b33583191d22d3ecb47cc96c884443cabc89e60f0b5cb11f65320606a46846a9a4b0b37fb4303235855d45e72ea04b5d8a04f55fddc59db1917c349a2ca044578d6de1677990d8d8cbb4a278ad9142aa9ea5bbec3d4358c54034b3d81c8344038574056b28597d6a6bab3139af2b4eac9ccc9c1c81e076e25ec1c8b929024cb8bdbb7c9448fe9c1f4f1e9e9a02584225bf48f7a8e43b68eefd10c9a4d8c649e0b9c7287a0b3ea9f467d876a50b9c473ebaa829eda64c39c68c6337d857af46ab86aa6964000bf2e275c33e1752ae4719a4a14b5c81c45d842c7f0b1d1d524146b5716ced25fe5c9ecd3abd34191144ddb8bbb90ed4d9fd3f07f1fbb1cf1d4e4192b2eee1f851986b1a8d07ba96774f8a81ed6a9b52aa7b9785bbcafffa204a1cacce4228e9b13433feae84111f6041fc880c963d24f7c237b3e20b17ccfe49728789bf7161e898091b441e27d3a14671b2eb4b5367d491201f2afc57bdd24e96a0f35ffcf83ff752707a387621b24f4c98fa666c3b3e212b30b2436dc2874dfb901031bedd88aab7387e3593ac154e51a7d5c24ad3189e7437ea1fd1ee42410ab4f02f0fe3e60dd416738f6a72c941d1a0c2c3ccc2b163f6004c58c9c9b14771bc9008036080bbfa9373359df18449ed999bcc813890e7bd23470eb593f4436aa6f503332c540efc44636abd445f4921969d5a2f446131b074a31209afa64a08926c7d405ccb754534c943943f034693af04ea01aa303bc5ca21a82505604de19e88b93209e90c7b6ad81dc812274588a36746dc13773bef642e6167a891426894adaabc5a10a94b33e8be9f942e45fd916573f5a544efc092fac67c161b454599068a5cc1d2b3c5b346337f4d2e470bba9a3076a3232fcbf567987a2fdf4c95b9f36b22a45665a1283de71cf8204ae7beb0da17c3f59a3ea818c2682a7e4323846cd72a5df57964a7d4ce2bb87348e4a2edfd798a9c39b94442d291a5cb4a7d88bb80912710f8021ccab13dcd9a44bdb1f42a025bf47d60c79adb79c02e49318b0b1dd8c8204b972a5ac54644164bfbbeac5255093a24c64c431a085afa48a5b3da4745585df4fd0ebb550166fa401c87511faca39f1a38bf4ab2fe8fc845c0919e9ec16486efee0b9dd809342a48f28c827a11a34510539fe2ec4441814f54b1b5657d0ba2d47e3b02b96147df4df08e7d3469086c4085973cda9e185d4b02bea26cce78349eb3f7208ccf44484bbea68011151e9c0aadefbda0860a6e4a39869f27f8469672fd8f5dcc4867f34455aba477a7ff65b987540e15502e344f84be4f4a1aed82ee9e45124e27911544059e1c7a9ca980cbd2e0ca06a4c069497fa9127ef55fe7a0420cf2b59afaaf4020923f9dbe9331af1307f4b90fbb704b7a80d9ab410a5cfbc838be55d7230942089e4ac2f19589232d57884361bf3b4bdbbb867fd5bb04c2017431bf2e46d749ae91bc632676f1df7efee188309e8c46949390eacd4b339f87158fe5d2475e424d9f91dba6072b8397a842f5ec7f6a46c9bb7f7c3ce24505f44df23b27da59451dacdc1976853f0e956c5a6fd0751d4606ae3d6d7f593f70e4270411fb102840b5a6196adb7bed1b9e45fcde548d2d4a3dbf36db312a74f46763e8d84f7b434be0bf671f58993511d5e8767b113e714b088f8decef30d17b53631f65b2c452450e8a827ba804f5d22decd8a53127024bffb837d85dd3b4365c68a3209fd01f4ea5a7f0323a2985eca782d344d00c15442588f59c90aa2532869c99ca95d42142b7af733f2ae1d1c2d59a0cd94f07394d7985f1a400ec5f39e1a249ef05165841599b85134e47dcc22d3f81b50edc8d435abb0456dcbb9a6aac76b64d62d87f4c01b4f975e8dfd37e52a35afe0b5b5246d9b72f4406d502ee00c2905a90f11b4605b8760dba024ed57a0c181f588f064082bb2aa11284636ca320fa31ae56c9426694252b8a7cf3fad82531af2036de481086d5f8991044aaf914c7a7d473ee407db2761782f5546352f71114b5a39646f394be701f1f1d5a11b7fa2aaaed4c41f8ac1798074113697f38e376f9d09a4b1389b8ec365bc888eb50a8108e383e4103be1706c6e7b5e9c317304fe1336e41838563c1672f0d712f68a73d225dc54706a9d3dbf262ffcbebce40383a012446a6902d748714eb16ae2b2f13d49ed041239bf2ea5248c7a1bde9a5bf1c7b364c24b3b112bb7b4697be20ee5446ddad474990f6f78ebb971a54f6b97fe9c1584088bc399b7948e991450a1632b122094512b7e34949fdc0805d7005ffe399e148058f4289dda98697a069cac09cf3994398a5b7ca53a72b2923b27043576c0141d88c0c031f759e00d9438b0ab3d217475fac0221578285c175a65d5bf7e2e442f6963026088d63a8ab66db5b831aca4fa6bbbde9408bfc820fe7fd98268f914b53a15c421f0f0b0c396f8fd10a9f96485d9b339f76034819e5deea90f618a34d75ae636f67b0e0906eae8a67c0a5084275a606da63f7c289a7aaa80a26aa5843c19c54db3bd0fb29a1ae15652365194dbba55f347612dae586a4f8a8ea04db434a8acc5eb3fed93fb90bed92a99d704b75adcb72df2ea946ec8f6aab02097f463ea28d7dd6aa01e2ae71c643debc48430eb83ec54959648c2fe722355664a641fa8e6eca78e8111d339c082e447da541c39fdfc663c4c868840b78d86a9a28421692d71f731035cfd400e980f9659e46a8811b8ff3c0d687894c32c90002264a968e084bb552edb3d4bc7af5b9a1eb4a7c94a38a8d5117d51becafc47b78d7400e929412ffeb4bfae14cabd89d215a4085a2a45a88db9185867ad4bb0f649c405fae3d2dac6140b5386c64dccc925d44ff91b736483bc2b88f3bf40fdf7ddd4186bd02f875e553f2276bfc6678ee5a4befb5e9dbb3ecb944023b751002a7574a5285d9a81ca863f5ec5908cbb8b616429b95fea6fc820c5e0f7441206d67ad4aae9fc12f4b807b7bbe3c0d551d41104bc089ee4b038b669a76a061044f72fd4375ad0c96de79ab053050e4182d46df4f4e876c282e5558ec696825a41a4d1a4aa8b456742a1ece97a6ddbb9ec4b7074e03a1c897823648e8c7ae8556930254440eba3ecdade41689782562533ec98546c99cdd009875fec07bdc79a61f395141e39ecefadde27ce0b8cd50dbb8efb64829871541a2a2fad53f4130231b61bf461099b6930c0b941cdafb54772c19214e3ba6f13b7d34cb42fabf861eef45604cefb4a09d72e566f42dd58edf5f35e7451db59135b6f1b6a2345e0c933b06bd49adb0bf3ba999d3eed1cb3899f6547c4778bcf421115a2d98a07dbc156be8544fbcbb368125bb587ddbc603ef12980947a1aa0feea576554a2f91b55e0bf2cc4122bee3fc0627ae702993ea1e7b668a45e68bb96f079f42135a1bcb74a1b4d74f6bb7e0f79100ddc6dc25348a88f1554027b07a840ceb768a6cabaae17c905f432b8fc51ac3a0c84141cb18906c4dc547a195d2f49563d9f5b8ed5f91cc71c44f63b0dc36ee3b737f8505c6dd802beb464499a1b7d2f0562db47de19290e8d2406c957b1bd7cecd36eb207193e2ed8746db969c76e0f69a448d251d2f3a12ca423783960de4d7a3ff814d23c16b82a742688e9afc196b6ddda518ff820194944bde84313ece2f62c35dbb21c12858f9403e9bb02f9019bac4f42929000891064cf9a1683b7bfe1bf81d69293a20a9c54846b66e0dfcba861454 @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @ ` � � � � - -@ -` -� -� -� -� - @ ` � � � � @ ` � � � � @ ` � � � �  @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @`���� @ ` � � � � ! !@!`!�!�!�!�!" "@"`"�"�"�"�"# #@#`#�#�#�#�#$ $@$`$�$�$�$�$% %@%`%�%�%�%�%& &@&`&�&�&�&�&' '@'`'�'�'�'�'( (@(`(�(�(�(�() )@)`)�)�)�)�)* *@*`*�*�*�*�*+ +@+`+�+�+�+�+, ,@,`,�,�,�,�,- -@-`-�-�-�-�-. .@.`.�.�.�.�./ /@/`/�/�/�/�/0 0@0`0�0�0�0�01 1@1`1�1�1�1�12 2@2`2�2�2�2�23 3@3`3�3�3�3�34 4@4`4�4�4�4�45 5@5`5MINISTRY OF AGRICULTURE:The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.EL AL:EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights. - -In terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances. - -Furthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline's liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.SERVICE DOG:A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.DANGEROUS DOG:Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.PET:Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.CHECKED BAGGAGE:Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.REGISTERED CARGO:Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.9KG:The entity "9KG" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.AUTHORIZATION:Authorization from the Ministry of Agriculture’s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.ANIMAL TESTS:The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.CHECK-IN COUNTER:The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.ARRIVALS HALL:The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.CARGO DIVISION:The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.EL AL CARGO STORE:The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.CARGO TERMINAL:The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.ISRAEL:Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad.CABIN:The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.EXOTIC BIRDS:Exotic birds are among the pets that can be transported in the cabin with their owners.VETERINARY SERVICES:The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.TRANSPORTATION:Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.AUTHORIZATION PROCESS:The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.LUGGAGE COMPARTMENT:The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.SENSITIVITY:Some pets may develop sensitivity and breathing problems during flights, which is a concern for their health.FLIGHT:A flight is a journey made by an aircraft from one airport to another, encompassing various aspects of air travel. It involves specific baggage policies that passengers must adhere to, as well as regulations regarding the transportation of liquids. Additionally, the term "flight" also refers to the duration during which pets are transported, either in the cabin or in the cargo hold of the aircraft. Overall, a flight represents a comprehensive travel experience that includes considerations for luggage, pet transport, and compliance with aviation regulations.PETS:JOHANNESBURG:Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.LONDON:London is a destination where transporting animals in the aircraft cabin is not allowed.HONG KONG:Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.VETERINARIAN:Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.INTERNATIONAL CERTIFICATE OF GOOD HEALTH:An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.BILL OF LADING:A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.BUSINESS CABIN:The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions.AIRCRAFT HOLD:The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.PASSENGER AIRCRAFT CABIN:The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.CAGE:CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.WEIGHT:Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.PERMIT:A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.VETERINARY SERVICES DEPARTMENT:The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.CARGO:CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.APPROVAL:Approval from the EL AL service center is necessary for transporting pets in the Business cabin.GUIDELINES:The term "GUIDELINES" refers to the regulations established by the authorities of a destination country regarding the transportation of animals, as well as updated rules concerning the carrying of liquids in carry-on bags. These guidelines are essential for ensuring compliance with safety and welfare standards during travel.ANIMAL:Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations. These regulations are designed to ensure the safety and well-being of the animals during transportation.CDC:The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.CERTIFICATE OF GOOD HEALTH:A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey.TRANSPORT AUTHORIZATION:Transport authorization from the destination country authorities is required for transporting pets.EXPORT LICENSE:An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.MEASUREMENTS OF TRANSPORT CAGE:The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.DOGS:Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.HIGH-RISK COUNTRY:A "HIGH-RISK COUNTRY" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.AIRPORT FACILITIES:Airport facilities in the United States may incur additional charges for inspecting and releasing pets.DOCUMENTS AND AUTHORIZATIONS:Documents and authorizations are necessary for transporting pets and must be presented at check-in.TRANSPORTING ANIMALS:The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.US:The United States has specific regulations regarding the transportation of pets, particularly dogs.MINISTRY OF HEALTH:The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.BEN GURION AIRPORT:Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.RABIES ANTIBODY TEST:A test required to confirm that the animal has been vaccinated against rabies.BAGGAGE:Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.ANIMAL WEIGHT:The weight of the animal is a critical factor in determining the mode of transport.9 KG:The entity "9 KG" refers to the weight limit for pets that can be transported as baggage on an aircraft. Specifically, animals weighing up to 9 kg can typically be transported in the aircraft cabin without any additional requirements.100 KG:The entity "100 KG" refers to the maximum weight limit for transporting pets as baggage. According to the provided descriptions, pets that weigh 100 kg or less can be transported in the cabin as baggage, while those exceeding this weight must be transported as registered cargo. Therefore, any animal weighing more than 100 kg is required to be transported as cargo rather than as baggage.DOCUMENTS:The entity "DOCUMENTS" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.FLIGHT PERMIT:A permit issued by Veterinary Services allowing the transport of an animal.AMSTERDAM:Amsterdam is an airport from which animals cannot be transported as registered cargo.BOSTON:Boston is an airport from which animals cannot be transported as registered cargo.MUMBAI:Mumbai is an airport from which animals cannot be transported as registered cargo.BRUSSELS:Brussels is an airport from which animals cannot be transported as registered cargo.LARNACA:Larnaca is an airport from which animals cannot be transported as registered cargo.FRANKFURT:Frankfurt is an airport from which animals cannot be transported as registered cargo.MOSCOW:Moscow is an airport from which animals cannot be transported as registered cargo.MUNICH:Munich is an airport from which animals cannot be transported as registered cargo.MADRID:Madrid is an airport from which animals cannot be transported as registered cargo.BERLIN:Berlin is an airport from which animals cannot be transported as registered cargo.PRAGUE:Prague is an airport from which animals cannot be transported as registered cargo.WARSAW:Warsaw is an airport from which animals cannot be transported as registered cargo.TORONTO:Toronto is an airport from which animals cannot be transported as registered cargo.VIENNA:Vienna is an airport from which animals cannot be transported as registered cargo.BUDAPEST:Budapest is an airport from which animals cannot be transported as registered cargo.KYIV:Kyiv is an airport from which animals cannot be transported as registered cargo.ROME:Rome is an airport from which animals cannot be transported as registered cargo.BANGKOK:LABORATORY RESULTS FOR RABIES ANTIBODIES:Laboratory results for rabies antibodies are necessary for transporting pets.COSTS OF TRANSPORTING ANIMALS:The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.ANIMALS WEIGHING UP TO 9 KG:Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.ANIMALS WEIGHING BETWEEN 9 AND 50 KG:Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.ANIMALS WEIGHING BETWEEN 50 AND 100 KG:Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.ANIMALS WEIGHING MORE THAN 100 KG:Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.50 KG:The entity "50 KG" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.VETERINARY CERTIFICATE:A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.TRANSPORT CAGE GUIDELINES:Guidelines that outline the requirements for transport cages used for pets during flights.PASSENGER CABIN:The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.ALLOWANCE:The permitted baggage allowance does not include the weight of pets being transported.CAT:Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.EXOTIC BIRD:Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.I.D.F SOLDIER:I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.SHELL SHOCK:Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.CARRYING CASE:The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.FLIGHT TICKET:A flight ticket is a document that confirms a passenger's reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.DOG:A dog is an animal that may be transported by passengers under certain conditions and regulations.HEATHROW AIRPORT:Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.UNITED STATES:The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.ANIMAL AIR TRANSPORT COMPANIES:Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.LEASH:A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.HARNESSES:Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.FLIGHT DATE:The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.ADDITIONAL CHARGES:Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.CHECK-IN COUNTERS:Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.SANITARY CONDITIONS:Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.PASSENGER:The term "PASSENGER" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline's baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline's policies regarding baggage and services, ensuring a standardized travel experience.SAFETY AND SECURITY REGULATIONS:Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.FORMS:Necessary documentation that passengers must provide to transport a dog on EL AL flights.DISTURBANCE:A situation where the dog's behavior causes disruption on the aircraft, leading to potential refusal of transport.DIRECT THREAT:A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.HOLD:BAGGAGE SERVICE CENTER:The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.BAGGAGE CLAIMS DEPARTMENT:The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.DELAYED BAGGAGE:Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.CLAIM STATUS:The term "Claim Status" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.COURIER SERVICE:The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.CONTACT DETAILS:The "CONTACT DETAILS" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.LOST BAGGAGE REPORT NUMBER:The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.BAGGAGE REPORT:A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.FORGOTTEN ITEM:The "FORGOTTEN ITEM" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.BAGGAGE DELAY:Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.BAGGAGE CLAIM:Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.BAGGAGE HANDLING:Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.BAGGAGE REPORTING:Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.BAGGAGE DELIVERY:Baggage delivery is the service that ensures retrieved baggage is sent to the passenger's specified address.BAGGAGE CLAIMS PROCESS:The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.DAMAGED BAGGAGE:BATTERIES:Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft. It is essential to protect batteries from damage and short circuits during transport. Non-lithium-based batteries can be transported in the aircraft hold, but precautions must be taken to ensure their safety.LAPTOP:Laptops are portable computing devices that may be considered dangerous goods due to the presence of lithium batteries. These batteries require special handling and must be managed in accordance with airline regulations to ensure safety during transport.MEDICAL EQUIPMENT:Medical equipment may contain batteries or other components that are classified as dangerous goods. This includes various types of medical devices and instruments that, due to their components, require careful handling and adherence to safety regulations.COMPRESSED GASES:Compressed gases, including butane and oxygen, are prohibited on aircraft due to their dangerous nature and inherent flammability, which pose significant potential hazards during air travel.CORROSIVES:Corrosives, which include substances such as acids and wet cell batteries, are prohibited on aircraft due to their hazardous nature. This prohibition is in place to ensure the safety of passengers and crew, as these materials can pose significant risks during air travel.EXPLOSIVES:Explosives, other than light ammunition, are strictly prohibited on aircraft for safety reasons. This regulation is in place to ensure the safety of passengers and crew during air travel.FLAMMABLE LIQUIDS:Flammable liquids and solids are prohibited on aircraft due to safety concerns and their potential to ignite. This regulation is in place to ensure the safety of passengers and crew, as the presence of such materials poses significant risks during flight.RADIOACTIVE MATERIALS:Radioactive materials are strictly forbidden on aircraft due to significant safety and health risks. This prohibition is enforced to ensure the safety of passengers and crew, as the presence of radioactive materials poses potential hazards during air travel.BRIEFCASES WITH ALARM DEVICES:Briefcases with installed alarm devices are prohibited on aircraft for security reasons.OXIDIZING MATERIALS:Oxidizing materials, including substances like hydrogen peroxide and bleaching powders, are prohibited on aircraft due to their reactive nature. This restriction is in place to ensure safety during air travel, as these materials can pose significant risks.POISONS:Poisons, which encompass a range of harmful substances including insecticides and herbicides, are classified as dangerous goods and are strictly prohibited on aircraft. This prohibition is in place due to the hazardous effects these substances can have on health, posing significant risks to passengers and crew during air travel.HIGH-STRENGTH MAGNETIC MATERIALS:High-strength magnetic materials are prohibited on aircraft due to their potential to harm people and the environment, as well as their ability to interfere with navigation and safety equipment. This prohibition is in place to ensure the safety and well-being of passengers and crew, as well as to maintain the integrity of aircraft operations.OXYGEN:Oxygen is a compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its potential hazards.AQUALUNG CYLINDERS:Aqualung cylinders are classified as dangerous goods and are prohibited on aircraft due to their compressed gas content.COMPRESSED GAS CYLINDERS:Compressed gas cylinders are classified as dangerous goods and are prohibited on aircraft due to their potential hazards.ACIDS:ACIDS are classified as corrosives and are prohibited on aircraft due to their hazardous nature.ALKALIS:Alkalis are classified as corrosive substances and are prohibited on aircraft due to their hazardous nature and safety concerns.WET CELL BATTERIES:Wet cell batteries are classified as corrosive substances, which makes them hazardous in nature. Due to this classification, they are prohibited on aircraft to ensure safety during air travel.MATERIALS CONTAINING MERCURY:Materials containing mercury are classified as dangerous goods and are prohibited on aircraft due to their toxicity.LIGHT AMMUNITION:Light ammunition is restricted on aircraft and may be subject to specific regulations.FLAMMABLE SOLIDS:Flammable solids are classified as dangerous goods and are prohibited on aircraft due to their potential to ignite.BUTANE:DANGEROUS GOOD:"DANGEROUS GOOD" refers to items that pose a risk to health, safety, property, or the environment. These goods are subject to strict regulations to ensure safe handling, transportation, and disposal, reflecting their potential hazards.LIQUIDS IN CARRY-ON BAGS:Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.WHISKEY:A type of liquid that may be carried in carry-on bags, subject to restrictions.GELS:GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.COSMETICS:A type of liquid that may be carried in carry-on bags, subject to restrictions.BABY FOOD:Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.PRESCRIPTION MEDICATIONS:A type of liquid that may be carried in carry-on bags, subject to restrictions.CREAMS:CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.SECURITY CHECKPOINT:The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations.CARRY-ON BAGS:CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.AEROSOLS:SPORTING EQUIPMENT:Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.ECONOMY CLASS:Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.PREMIUM CLASS:Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.BUSINESS CLASS:Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.DIMENSIONS:Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.EL AL CARGO DIVISION:The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.CALL CENTER:The call center is a service location where passengers can contact for approval regarding overweight baggage.OVERWEIGHT BAGGAGE:Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline's specified weight restrictions.ADDITIONAL SPORTS EQUIPMENT:Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.32 KG:The entity "32 KG" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.30 KG:The entity "30 KG" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.277 CM:The entity "277 CM" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.190 CM:190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.LITE FARES:LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.SNOWBOARDING EQUIPMENT:Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.COMPLIMENTARY TRANSPORT:Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.CALL CENTER APPROVAL:Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.SKI EQUIPMENT:Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.70 USD:70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.150 USD:150 USD is the fee for transporting sports equipment one way to the Far East and North America.US DOLLARS:US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.EXCESS BAGGAGE CHARGES:Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger's luggage exceeds the allowed limits, resulting in additional costs for the traveler.AIRLINE:An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.LOCAL CURRENCY:Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.SNOWBOARD EQUIPMENT:Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.BICYCLE:A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.LITE FARE TICKET:A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.EL AL CALL CENTER:The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.PERMITTED DIMENSIONS:The maximum size and weight limits that checked baggage and special items must adhere to for transport.PACKING REGULATIONS:Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.MOTORIZED BICYCLES:Motorized bicycles are not allowed to be transported as checked baggage.EXCEPTIONAL CASES:Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.EL AL AIRCRAFT:The information provided applies specifically to EL AL flights on EL AL aircraft.DESTINATION COUNTRY:The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.FRAGILE ITEM:The term "FRAGILE ITEM" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.VALUABLE ITEM:Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.SPECIAL TRAVEL INSURANCE:Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.EQUIPMENT:BAGGAGE CLAIM AREA:The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.DAMAGE REPORT:A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.CLAIMS DEPARTMENT:The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.BAGGAGE TAG:A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.BAGGAGE ISSUES:Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.EL AL ISRAEL AIRLINES LTD.:EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.DIGITAL CONTACT FORM:The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.MAKOR HAZIUD:Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment.WE SHOES:WeShoes is a store that sells shoes and may also provide related services.MEMSI TOURING:Memsi Touring is a service provider that may offer travel-related services, including baggage handling.ARTY RIMON:ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.SHIN TIK:Shin Tik is a service provider that may offer travel-related services, including baggage handling.TREK MARKET:Trek Market is a service provider that may offer travel-related services, including baggage handling.KIRYAT ONO:Kiryat Ono is a city in Israel where various stores and services related to baggage are located.RAMAT GAN:Ramat Gan is a city in Israel where various stores and services related to baggage are located.GEVATAIM:Gevataim is a city in Israel where various stores and services related to baggage are located.BAT YAM:Bat Yam is a city in Israel where various stores and services related to baggage are located.HOLON:Holon is a city in Israel where various stores and services related to baggage are located.PETACH TIKVA:Petach Tikva is a city in Israel where various stores and services related to baggage are located.ZIP CODE 7015001:Zip Code 7015001 is the postal code for the mailing address of the Baggage Claims Department at Ben Gurion Airport.TEL AVIV:Tel Aviv is a city in Israel where various stores and services related to baggage are located.ADDRESS:Address refers to the specific location details required for sending claims or correspondence related to baggage.SERVICE PICKUP AND DELIVERY:Service Pickup and Delivery refers to the service provided by various stores to collect and deliver baggage for customers.BAVLI NEIGHBORHOOD:Bavli Neighborhood is a specific area in Tel Aviv where baggage-related services are offered.HAAILIYA STREET 24:Haaliya Street 24 is the address of Makor Haziud, a store that sells baggage and outdoor equipment.BIALIK 3:Bialik 3 is the address of WeShoes, a store that may provide services related to baggage.STEINMAN 20:Steinman 20 is the address of Log In Log Out, an importer of luggage and bags.SOKOLOV 59:Sokolov 59 is the address of Shin Tik, a service provider related to baggage handling.IZTHAK RABIN 2:Izthak Rabin 2 is the address of Trek Market, a service provider related to baggage handling.SHLOMO HA-MELEKH 37:Shlomo Ha-Melekh 37 is the address of WeShoes in Kiryat Ono.HAMERETZ 6:Hameretz 6 is the address of ARTY Rimon in Petach Tikva.SERVICE:Service refers to the various types of assistance provided to customers regarding baggage handling and claims.WHATSAPP:WhatsApp is a communication tool used by various stores for customer service related to baggage.)<|COMPLETE|>CARGO TIKIM VE MIZVADOT:Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.MOKA:Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.RIMON MIZVADOT VE TIKIM:Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.GALGAL YAZIV:Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.HAGALGAL:Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.BUGABOO:Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.DAMAGE TO WHEELCHAIRS:Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers.IMPORTANT TO KNOW:Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.DELAY IN RECEIVING BAGGAGE:Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.RISHON LE ZION:Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.YEHUD:Yehud is a city where Moka, a pickup and delivery point, is located.REHOVOT:Rehovot is a city where ARTY Rimon provides pickup and delivery services.NES ZIONA:Nes Ziona is a city where Makor Haziud operates.SHOHAM:Shoham is a city where ARTY Rimon provides pickup and delivery services.RAMLE:Ramle is a city where ARTY Rimon provides pickup and delivery services.LOD:Lod is a city where ARTY Rimon provides pickup and delivery services.SHLOMO HA-MELEKH:EL AL ISRAEL AIRLINES:EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.FLIGHT TICKETS:Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.BOARDING PASSES:Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.BAGGAGE TAGS:Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.LOST OR DAMAGED BAGGAGE REPORT:A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.RECEIPTS:Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.FRAGILE ITEMS:Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.PERISHABLE ITEMS:Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.VALUABLE ITEMS:Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.INTERNATIONAL CONVENTIONS:International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.CONTRACT OF CARRIAGE:The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.MISSING ITEMS:Missing items refer to belongings that are not present in the baggage upon receipt, which may lead to a claim against the airline.CLAIM:A claim is a formal request made by a passenger to the airline for compensation due to lost, damaged, or delayed baggage.21 DAYS:21 days is the time frame within which passengers must contact the airline regarding delayed baggage outside their country of residence.7 DAYS:7 days is the time frame within which passengers must contact the airline regarding damaged or missing items from their baggage.AFTER 21 DAYS:After 21 days refers to the period after which passengers must contact the airline regarding lost baggage.DAMAGE:CARRY-ON BAGGAGE:Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.PERSONAL BAGS:Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.SUN DOR:Sun Dor is an airline that operates flights with specific carry-on baggage policies.MATMID FREQUENT FLYER CLUB:The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.TROLLEY:A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.FLIGHT TICKET TERMS:Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.BOOKING MANAGEMENT:Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.OVERHEAD COMPARTMENTS:Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.BAGGAGE CONVEYOR BELT:The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.NORTH AMERICA:North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.CHECKED LUGGAGE:BAGS:Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.16 KG:The entity "16 KG" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.20 KG:The entity "20 KG" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.MEDICATIONS:Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.PASSPORTS:Passports are required documents for international travel and should be easily accessible during flights.VALUABLES:Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.ELECTRONIC DEVICES:Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.CHECKED BAGS:Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane's cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.PLANE'S BELLY:The plane's belly refers to the cargo hold of the aircraft where checked bags are stored.NO CHARGE:No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.RECOMMENDATION:A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.MAXIMUM WEIGHT:The term "Maximum Weight" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.MAXIMUM DIMENSIONS:Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.BAG:A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.PERSONAL BAG:A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.CARRY-ON BAG:A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.56 CM:The maximum length for a carry-on bag on El Al flights is 56 cm.45 CM:The maximum width for a carry-on bag on El Al flights is 45 cm.25 CM:The maximum depth for a carry-on bag on El Al flights is 25 cm.18X38X30 CM:The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.115 CM:The total maximum dimension for a carry-on bag on El Al flights is 115 cm.DUTY-FREE ITEMS:Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.OVERSIZED ITEMS:Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.EMERGENCY EXIT ROW:The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.SERVICE CENTER:El Al's service center is where passengers can coordinate the transport of unusual items.CHECKED BAG:A checked bag is a type of luggage that is stored in the aircraft's cargo hold during the flight.WEIGHT RESTRICTION:Weight restrictions are limits imposed on the weight of bags that passengers can carry on board or check in.FLIGHT DESTINATION:The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.PRE-CHECKED CARRY-ON:A pre-checked carry-on is a bag that has been checked in online prior to arriving at the airport, allowing for expedited security checks.SECURITY CHECK:The security check is a procedure that passengers must go through to ensure safety before boarding the aircraft.EXTRA SEAT:An extra seat may be purchased for oversized items that cannot fit in the cabin or under the seat.UNDER-SEAT STORAGE:Under-seat storage refers to the space under the seat in front of a passenger where personal bags must be placed.CHECK-IN PROCESS:The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight.AIRPLANE STORAGE:Airplane storage refers to the designated areas on an aircraft where passengers can store their carry-on and personal bags.BAG DIMENSIONS:Bag dimensions refer to the measurements of a bag that must comply with airline policies for carry-on and checked luggage.BAG WEIGHT:Bag weight refers to the total weight of a bag, which must adhere to airline restrictions for carry-on and checked luggage.CARGO HOLD:The cargo hold is the area of the aircraft where checked bags are stored during the flight.FLIGHT CHECK-IN:Flight check-in is the policy that requires passengers to confirm their attendance and check their baggage before boarding.BAGGAGE ENFORCEMENT:Baggage enforcement refers to the policies and procedures that airline representatives follow to ensure compliance with baggage limits.)<|COMPLETE|>PASSENGERS:Individuals traveling on flights who must check in at the counters regardless of luggage.SECURITY CHECK AREAS:U.S:Country with specific guidelines regarding the carrying of liquids in handbags.100 ML:Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.3.4 OZ:Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.CLEAR RESEALABLE PLASTIC BAG:Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.DOCTOR'S NOTE:Document required for carrying medications and special food products at the security checkpoint.DUTY FREE:Duty-free products cannot be purchased if they are prohibited aboard the aircraft, even for connecting flights.CONNECTING FLIGHT:Type of flight that may have additional restrictions regarding the carrying of liquids.PLASTIC BAG:Type of bag required for carrying liquids in carry-on luggage.PERMITTED AMOUNT:The maximum amount of liquids allowed in carry-on bags, which is subject to specific guidelines.OVERSIZED BAGGAGE:Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.SUNDOR:Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.LITE SERVICE:Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.CLASSIC SERVICE:Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.FLEX SERVICE:Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.BAGGAGE ALLOWANCE:Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.MANAGE YOUR BOOKING:"Manage Your Booking" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.ADDITIONAL PIECES OF BAGGAGE:Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.$90:The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.23 KG:The entity "23 KG" refers to the maximum weight limit for checked baggage in premium class and for certain service types offered by EL AL. Specifically, 23 kg is the maximum weight allowed for each piece of checked baggage included in the ticket price for these services.THREE HOURS:Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.EUROPE AND MIDDLE EAST:Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.OVERSIZED AND OVERWEIGHT BAGGAGE:Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees.BAGGAGE POLICY:The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION:The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.PRE-ORDERING:Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.BAGGAGE CHECK-IN PROCESS:The baggage check-in process involves the procedures passengers must follow to check their luggage before boarding a flight.STANDARD BAGGAGE:Standard baggage refers to luggage that complies with the airline's specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.BAGGAGE CHECK-IN:Baggage check-in is the process by which passengers hand over their luggage to the airline for transport in the cargo hold.CARRY-ON ALLOWANCE:Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.ADDITIONAL HANDLING FEE:An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.EXCESS BAGGAGE:Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.CODE-SHARE FLIGHTS:Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.MANAGE MY BOOKING:Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.FLIGHT SEGMENT:A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.$5:An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.50% DISCOUNT:Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.TICKET TYPE:The ticket type determines the baggage allowance and rules applicable to each passenger's reservation.CHECKED BAGGAGE RULES:Checked baggage rules may vary when several airlines are involved in a flight route.FREE BAGGAGE ALLOWANCE:The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.ADDITIONAL PIECES OF CHECKED BAGGAGE:There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.INFANT'S CHECKED BAGGAGE:Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.LITE TICKETS:Lite tickets are a type of ticket that does not include any baggage allowance.MAXIMUM SIZE:The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.EXCESS BAGGAGE RATES:Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.GOVERNMENT SERVICE TAX:A government service tax will be collected for air travel for flights originating in India.CODESHARE FLIGHTS:Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.LINEAR DIMENSION:Linear dimension refers to the measurement of length, which is one of the components used to calculate the size of baggage.MEASUREMENT UNIT:Measurement units such as kilograms and pounds are used to quantify the weight of baggage.SIZE CATEGORY:Size category refers to the classification of baggage based on its dimensions, which affects the allowance and fees.WEIGHT CATEGORY:Weight category refers to the classification of baggage based on its weight, which influences the fees charged for excess baggage.WHEEL CONFIGURATION:Wheel configuration refers to the design and arrangement of wheels on baggage, which can affect handling and transport.SPECIAL ITEM:Special items refer to specific types of baggage that may have unique handling requirements, such as sports equipment or musical instruments.PROHIBITED ITEM:Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.RESTRICTED ITEM:Restricted items are those that may be allowed under certain conditions or with special permissions, often requiring prior approval.REQUIRED DOCUMENT:Required documents are necessary paperwork that passengers must present for travel, such as identification or boarding passes.LABEL TYPE:Label type refers to the categorization of baggage labels that indicate handling instructions or ownership.TAG CATEGORY:Tag category refers to the classification of tags used for baggage identification and tracking.SERVICE LOCATION:Service location refers to the specific places where baggage services, such as check-in or pickup, are provided.TIME PERIOD:Time period refers to the duration during which specific baggage policies or fees are applicable.PASSENGER TYPE:Passenger type refers to the classification of travelers, such as adults, children, or infants, which can affect baggage allowances.MEMBERSHIP LEVEL:Membership level refers to the tier of loyalty programs that may offer different baggage allowances or benefits.GROUP CATEGORY:Group category refers to classifications of passengers traveling together, which may influence baggage policies and allowances.)<|COMPLETE|>ADDITIONAL SERVICES:Refers to extra services that can be ordered by passengers, which may incur additional charges.CHANGE:Refers to the policy regarding changes made to additional services purchased by passengers.REFUND:Refers to the policy stating that no refund will be given for cancellation or change of additional services.FULL CHARGE:Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.CANCELLATION:SPARE BATTERIES:Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.DRY CELL ALKALINE BATTERIES:Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.LITHIUM-ION BATTERIES:Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.PORTABLE CHARGERS:Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.ITEMS CONTAINING MERCURY:Items containing mercury are classified as dangerous goods and are prohibited on aircraft.INFECTIOUS SUBSTANCES:Infectious substances, including live virus materials, are classified as dangerous goods and are prohibited on aircraft.MAGNETIC MATERIALS:Magnetic materials that can harm people or the environment are prohibited on aircraft.LITHIUM METAL BATTERIES:Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.NON-SPILLABLE WET BATTERIES:Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.MOTORIZED WHEELCHAIRS:Motorized wheelchairs have separate exceptions regarding the transport of batteries.CARRY-ON:Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.EXEMPTION:100 WATT-HOURS:100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.160 WATT-HOURS:160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.2 GRAMS:2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.12 VOLTS:12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.49 CFR:49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.STRONG OUTER PACKAGING:Batteries must be in strong outer packaging to prevent damage and leakage during transport.NON-CONDUCTIVE CAPS:Non-conductive caps are required to protect the terminals of spare batteries during transport.FLAMMABLE MATERIAL:Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.LITHIUM BATTERIES:SPARE LITHIUM BATTERIES:Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.WATT-HOURS:Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).BATTERY-POWERED DEVICES:Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.IATA REGULATIONS:IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.100 WH:Batteries with a capacity of less than 100 watt-hours may be taken aboard the aircraft when insulated or in their original packaging.15 ELECTRONIC DEVICES:Passengers are allowed to take up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 watt-hours aboard the aircraft.20 SPARE BATTERIES:Passengers may take up to 20 spare batteries with a capacity of less than 100 watt-hours aboard the aircraft.BATTERY CASE:A battery case is used to protect batteries from damage and short circuits during transport.ORIGINAL PACKAGING:Keeping batteries in their original packaging helps prevent short circuits and damage during transport.INSULATED:Batteries must be insulated to prevent short circuits when taken aboard the aircraft.ACCEPTABLE BATTERY TYPES:Only certain types of batteries are acceptable for transport in the aircraft hold, excluding lithium-based batteries.BATTERY TERMINALS:Battery terminals must be protected to prevent short circuits during transport.BATTERY-POWERED MOBILITY AIDS:Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.FLIGHT-APPROVED BATTERIES:Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.HAZARDOUS MATERIALS:Hazardous materials include items like dry ice that require special handling and declaration when traveling.DECLARATION FORM:A Declaration Form is required for traveling with hazardous materials on EL AL flights.DRY ICE:Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.FLIGHT AID:Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.EMAIL NOTIFICATION:An email notification to the airline is required to inform them about the intention to travel with a mobility aid.MOBILITY AID:�B^C�I�K�LrN'Q~R�S�UaV[X�Y�\^�^Za�aKb�cBd�dFe�e�g�gih�h-i�iijl�lBm�m�nr�r�s9v�v�w�x`z�{ |�|C}�}�����������6�������v�Պ.����?�����P����[����h�ŏ�o�w���� ���@�ϓ��������~� ������������ ������3���ןT�`��_�ݣT�Y����^����m���!���������������������ĸչ��c�w�ɽB�ƿQ���I�����5��� �'�!�����Z������� �#�,�#�!��%����#�������m�'���R����� �(�����J�~�^�t��y���w���y���M���(���n�� -���6��� ���9���"�u�����2����w���C��������w� �}���U���|���p�0�fzj�?��$5�n � � - � & � M � ��'�&-� hl�h -A�"2�y<0�~� �!d"�"�# $�$�$~%&K&�&�&C'�'&(�()�)�)o*�+3,�,-�-�.B/�/Q0�0B1�1N2c2�23b3�3>4�4 5j5�5j7�7W8�8v9�:<�<==R>�>m?B@�A3C�CWD9E�EBF�FiG�GhH�HYI�IqJ�J~KL�L�L~MNvN�NwO�OdP�P�QR�R(S�S.T�TU�UV�V7W�W XX�XY�Z9[]�]j^�^a_$`brb�b�b�cd�d#e�e*f�fThfhi�i$j�kl�lQm�m4n�n!o�op�pq~qr�r"s/s�Q<�R<�z=„ =�~��1� =�jD��v=���o��<�?�;n>����<<6��<3d��o���m�W�����<1ō���=2P=�~���Se�X�f�2�E��T9���(��'=q"���J<ǞҼ�&�<�G[��Y=>���=!�n>D<���<=��;;0����E��b=C=!+=��]��<���� ���T9��k�=��<�׆;��"��M <$<��<�f���|��e��Ҡ����]3�;�N�I]1<�l =?�!<~s�<9� -<���� <;���Z�A<^�P='�*���H< ��O4�a<���E�<��=�tE=�zʼ��=څj=�ͻnj:��-�{����!<��<��,=� U��L=�μ�n���KW���;� <��E�3���;d�: <Ѽ3�[=L��<��ƽ�w"�;8~\�q"��"�K��+�8]�u�vOi�LT�<�߾������}����E���tE=�������Ket�g�<�|<�\G�FR��R; V�<,��l��:�s<�}r<��C=���<�,5� -�I=\� ="Y�;�.�<[�2�0ZԼ��ݻ�}���B���}�>�F��J�=`��;�)��b4�<�d����=��<�ʺ�]�[�<��<�^�=R1f;�3�N����/��?�,��=-t�;-t[��B�;<�<�I����:='%���KL������U��<����;��=�G�;|��=S0=�с�F�w>ļ;0�<�񂼒�=°�G����*� -�ɼ��%���d=�:w>ļ5�c�>�F�=���`:D0G;b4��ǞR��<�G<�K׼fF��L����Z>:�Q<� �9�2��J=�t�<���<�<�C<�r=����%��#=)��<����Kx��<X��� �!��:,˺ۘ�rip�rP�< Mv��w����3Qr����?n���=Z�y�5=�1��\GD�+l�<-��<4@�<���<�σ���:�a"�rP�<��t;���<��<�Rf��Ԇ;ˤ<�-;q��<#���]3=�.t< ƣ<䌂<3 �w�b��4 �QۼB=����Q;( G=�9��!\<'Ί�G~���R�<�^<� <��;����<׷p����;B����揻3�C=�_޼�b=���¼������9��+�<����.x�<�w�sވ;/�[<��==�:$틼�酼�.D=��^Ӽ�E�XV<��6=�4;��a��.Լ�6k�ૃ=ɑ���M�<�|�;<�^=FY�;�3U���<$���D���<�)<(�9�D��U,�V=�<���;��@=�m����<���vy=�U<��,��]�3 q��#��� �����;z�ʼ�.T<��<��7=�@m����=�T<��<�1��#��U,�����‰�;{���1<ɿG=��<�g��;;{��� -�Cց�|.��{�1�S:��i�rE��Ll=.��:N@����q�+�M����c�<`G�<�ܼ�>�*��=QΪ���9=�Z;h誼p+N��$������=( G��1�;��<};�:��<=ڰ<֪�;E�̼{!��X��< ��<�����ʻÖ�>\��T���QBؼ���<�U�<�M�;����$���e<( G��]C�c@< �f<�]������:�49q��<��˴��r�\�<|\h�q�ܼ�>B��P�<�Me�&5�;�x�al=Y��<�1�<��s<���� -=��c�����렻�̿<����,v�*�<�!\��˻��� -��_>����+�<�>�<.J��K�;=�>B;i;�:+#��Isb�;�v�0d=��< Ɠ����Y;��мjH��b�;;v���V��'�+�<�w<�gU;ǥ�;�;�v������<ɑ����lv�)�]<��<��6��<‰���ϥ����w�b;8훼w�K<<�^芼���<0���U0O=R��<7&�;�c��e�;|.���3�;2�<}d<*�U���y:+��<.�̼��=T��r�ԻV�;zB�;T����]�<�ź��;E6<^ =���I<��|�)�ݼh�:�����|D<�q�y�5�g�<�gܼ���=;`,<��&=��:$���q���trE<�Mۺ�3�����<5� �� ��*�����8:;�bZ��.O< ��<�]�U9E��:�Ъ�6�<��c���A1��:S�(��s�׼,�<�w�=0�^<@��<���<�gӼ���<�8ӼkK�=uؒ< �x�EX�<.S'���� �;������=B��j����vz�;�J<Ą���|�����8A<�յ��]O��Ht:�r3� -&��.��"����뻛И�=��X=� ��H�� -/�\)2<��b�1mռ�U��D��<��<�|R�Xr��8e�SB;ܑ�=\�����x�7�<��k��b�1�����4<� �hˍ;D��<5�^�L1��<y=�o<{�|;�j�<�H�����:�����<��<�<��l���;zr<<��O�A1�;}X�=�t=D�h<��;������8�< -�����;pz���8�<�T<�@�ʄ�<��6m�<���;O��;:S�<#��u4;���o����=��=�A<������~<-F:�l���<[�� e�<�̼Y>�;"��<��9<.������� $T<Ȧ����3�0� =�b��g�<;�ռ�w<��<`K����a���0�)�y;U�ּ���+h�,����;@��<�8�dm:�M7<@�����I�ё�<]��hA;J6<�8��8J<�]��[�< -�Є�<[�m� <�3-������F<�͠��+3��ɼ� w�s�7;���9��s<���;��;��<� �Ԧ�= �����j<)膺r)��8����u< -h���b� mp����^r�jCN�h����=W��<�����!/��.�[���b=+�g;�]==���v�)=o%<�m�%�<�w<6�����7>�<��<<%Ɲ;ہ:�C�<1����U ��H5��o;<�!8:x.�;ő�<�I�kz����#;.S'�'ռ�;���U(�� n=��;c����1�X����<��d��/��Yn��s���<�*��K4�W��<��=1��<7�<��;��+�,��<��+<�(�<>��׼���<�s=/�t��;��y=@}b�h[�� -=@X��E̺����I����%<��i<�ק���x��<�<�ܕ<��<����dڼ.�=r*����<ɬ�� �]Љ<��;�}-��g�;7�<) @;46=��a���<=�D�����\�M���w��CY=Br9�̮= S<�M���j��'{��`G�}�<�M�eqf:9_d� �T9�P�<��$<"�A=C�F;�����1����� <�Ԥ=��ѽh� ��Q=�c�Z}%��ܕ�r� -=��&�(�<߉n<0x7�I᰽�>�:9陻r�ǻV�;���<������ <�%[;, ��}��H��;:P=�ط<'�ۼJ"� -��<<��7E<�zU�=��<����������R� < ��=��ؼ=n㼦����<�������;!/'��6M�g���;�4�Tl;=m&.��(^�o(����:̂����<�<�<h ��ܕ���9���<k`��0 -;Q ü�~���I�;;��<"���y�<(rv�A�<�f����;��;u4��]ļm&.���<^;+<�<�<�u��)1=�W�����:����m==nc�ꑚs���D$�ih(��[��m����b�9��P=]��>�3�p5-����<�&6����(�Ő�J"���=���v�=Lf�<z߼rي���L�̂ؼ�B=�1"�`0�<��<�e-�����ʹ)=dY8߉�<����@� -�����=b��Б�;���`�̼-v̻����$�;OC��5| �*gM��J@I=o�\�M�lw'=0ɰ< -�ռ�����lȠ<6�r<���<��X����b��c:=�F�<��(�Q ü }�~���l�:�r<�d��=t�����=h -��/�;Y��;�-�6��ļ w��� =�m;eY��H�#�*��Ԡּ]S�;��ϼ@U<��; -�U��0G���&�@�Z�v��(���� <���<�ռ;}��<����� ��F:�lü��(��1�<dJ��:�<`�L<�<�F��<}�� ��;!�4��Q*�����;��z����Pu�6:D��==>c��G=�<�C�&���L�=�~=2A�;�"#�V��<�ӌ;���� -�<���<+����+<���� e;�4Z��˫�A9}V�<���;�仼9_d<�3ʼ��i�4�J=^��;�H�;lj< �}<�s���M:��<�����$�M�C<�`�<<���<�3�<���<�$�<f��{�<��&�yH<���<�Ӽ��:��G�1��;��=�F0��������>< �H<����Ž��0G<�͎��CY��Oc�<���*~<&�;f�Ɲ����~���Ѽ�ti;o�c��o � &&�-� -�=O�^�IW�<��< ���M�<��<~�:W�w� -�h -�<2Af;�����,�:w���g"X<�B�Et��� <����Q �;������Ȏ��H�'��;;�J��,;Pغ�6��o -�� �;f��<�{H��z��~\4<�>�����<�Ɇ��D_=u�֔��D�*�r��<'`<��=�+�5|�=V`�:~?���<�=��7����h=�M;����Ÿ�u�v=r'�Z&�Z&��Ru��������;��ǻ����� �+ �<��<��G���<$5=4��<�rV� ��� ==���9ߟ=�);�0$<����[Ž*Gƻ��;5| �Vf/�?�:� -�����>�=���<%d=j>Լ���;����8�;5v�<�ǟ���Լ�(w;\�=�V����<̈�����<�����n2�.p*=¼��^�<��<�����ݧ������6�Sf�<*G�<{\ �::� <�����g��Q0� ��:. »����_<��ȼ�+�<\���q�=iĄ=��G�@�Ƽ c�;b[��S���kaG<�d�<�h<��]=�����X����м剼��=�<��<7����� ��V<�͐<}?<ѫQ�[IX��Z<:�;��;�� �B�q� �𺷇U��c���;Q�<+�ۼ-M7���ż�o漪ؿ�`��:S`�:�l�u;b[���:E1�<4��<�E=@�F<�X*<;�=�NZ=���E���<[�5�na����:�k�:��;��9B�<5�h=�$�<�<�V�F�<���:`�i;:z<�8�;Ƽ��޻UI��/W�H1��!�����n<�R�5vƻ*�.���<Fh;�LH<�AD<~������<ٔk�����1�;�|<�<=O��<�鉼��a<�������Z�'�==>�S�ӻQA�uh;���<����*^��K�;��D��rV<�k=m���4��Yl �na��u���⼊��;%Dž;��P�3��;�_��)��#ʻp���Z�隼��G<ٚ��s���x�g��;&��T;��=-��� #���w<���/= =�̇�LT�; � =���<$�����i�:���<�·���<���<-M7<���=��h� 95=��|;�����(�=w�N�뻮<��;���]���I޼rL&�;� -��\��Ia�:t�=�1=Q�d<��Ѽ��4=��BJ�<'�g;�2=�"ۼ�=a -i����,����z��I<b���������=e8d�V� ��-=t㣼`�;=Ia=Bv��w� �1M9����;Q�C��q^��e}L���`�:�<*t���:�~ѻ -� -<bл��(<+1K=t�=񡻉L��<����\�����r�|?=��5�e8d��.�<Ø�<%lҼbq�+i���<�W �s:�7�����;��.�4�<,>x<�$1</;��=����\��<�7=Q=�c;$_%��6�;'�g�؋~�ƹ���b=gJ<��<��D�,�� -� -=r�<� -= 1*=I;��h!w�n�B8ȕ�e*;xh<��;M�Q:?n(��S`� :<���;�.�"������;I;n��9���<��=6$?<뻮;';��˱;�`K=��<��� ���8�ɋx��zB=_��; KB��]A<9�;R��:U�_<\�h<�{�:��6��e�<⿼d+�<�&<X�<72�u�.��5{�k�\�KT<� �<���;���:<��<��Q<�S��5:+�b�U -ȼT�=sYS�C8���ۺ�z¼��yV���j,���E����<�~�@�w<�ݰ�Qx*=��ռM�Q�5�V��4&9Z8C���T:�cv:��=�.=~-��yV�Q�L=)�ͻ>���&��;�� ��; 95�ʯw��*�K������C��;���x�6;���o ���M��güI;n;��e����<Б<��;�1=��d���;��=�<����T��<�˼c����_���������;�Og<K��,<<%��<,v3�G�@���咓��������<K!{=�Ï;�4=��<�Tϼ5�>=�c�+_s<�&�<�;m=I��;x-=s�p<�;E�Ꭴ<_4�3"<�c��6�����<��;�."�G�޹9�8/W0��J�� ��<��I=������='��:dq<=RƼ��:�Ό���m a����5���<��̼�Ѐf�=mO�<�8�����<�����9�<;���<´ � -�I<dɻ��{|<��<�I=��=6����<'V��;ZWμ���<���:J}�;�Y�����1�=xW⼋^��^K�j'��Vݏ�6���N;�9�K��)��zz=��]��c��D���\k�<�;���N��=O��<2�]<�$N<\,�<❀�� �<߹�J�3���"���+<~�̼��<#;��.޺� ��0����f<��Q��B�:%=r��<�T�<��!���Όu��Ƽ�uּ��';\�� -�=��̺���\k�<��7=,i[= -�U;� C<��;H6��JI�����3*�]@/<>X��ƶ�Mf ��ڤ:���<���:���kn<���a���О<��v��3�;t�4�:�����+<��8=��*="��< �N�T�?=Z���PZ<�� -;F�= W�f�;4�<��<��������䖼�k���?=PO�:�+=6����P�� �:{|:T�˼����)��<��V�d]�G��<:� {�KHh���.�Zu��a�b��<�G�<�逼D������;�p0�É�������i<�uj�X��=e��<��<Z�<M�<��0��0'M:�fH<�G=��h<�^�<����&=�W��������;R)<�^˻6<)� ;\,_����<�K�D��"��0 =����^;C��;G�^�2@���?<Z�������O=��.��<����ݜ�<K����>�J=R$ -��f"=H�m�7(�9w��=ȍB�=Щ����E�< �*=�c�=���{�;K�-���ʼ�)n���< �;�d���܁�R$ -<�(=|7=�2���d����ջY��;�S��&���K<�3=�x-�D3<���+����<� =! ���p=�]�<�Z=� ^���ص� ��<yp<7����=�#ڼ@͟=���$�ͼt�ڼFu�� ѻENj;�j���<� M;�,��L�N;2�=`/<� -=Ջ��s���9_��v��;�&d��x�=��%�<{l�:�.<�ƪ��&�=���<3p�<�}��k: -O�?Fk�P�;bS�!�g� �u�$�o����Dx�<�I�6w==Щ�E�<��t<G<���Ҽ��<��0�|�#[ � �"��!=y;��(�d�,�e���(;V�;<^ӂ=m��;��=a�I����<�����< �<��H=�{��ǚ�;y�;vK*�t�=1;g���R;�17�� P<��6<����뚬�ACa<�������1;�Y�R=�Gp�:��<d�� -vf;75S=�E�"��<���<�<���;j��<8�^�eP˼�Rt<��;��Y�R<���I�=<�w�E� =��-��<�*��J��p:�(ʼ�e����}������pR=�����H<�B:*�o<��=-�мn�;���;y��<<"�<(o�;6���er<��D=�?v<��=�<� ���=�2*�^�=/ -���^�c�;+�Z�,�;��)��/ �J�EԦ<��X��뼱�w� @��<%_;M�>��˚<+l$;n:����<��<6�:Dx���i�xH �(b�<�q&��ԇ���;Q��=`Iļ0��<��<�����pv�mG-<�i��Tq�4+��J��o���R�<���<�z<���Xh�)*O;ON弗N���i��<^%=>�M���Ӽ�m�=�E=X��o�=�酖�n�q�s���L��> -=.���m�:t�޼(w�<�[���1#;�o��aϼ<���(w8�g<��0��1v����;���;�O��.��0�<���;7�=��<�;/=&2��ș;�����:w��;�c�<�"ޚ<I�����<�B=��н�x �-�=���C���+R��m���UV�>�6=,;Y�Z��;>�ͺ�ϺW�+=\ ��6��`_���C{��e��\����g;1<��:�y��;��<�ٞ������Po=Al�:3s�<�8=���0���<�(�2����V�;֙컾��;Թ���`�<����Ǻ���/g�E� <**;�Z<(������7b��`�ּb\P���7�…~�G��;o彺}������ѻa���;Kv���b�����<��K<�ى�q�<�&���'<�-<>R�.� <+����J����_�;e]<�2L<+���k�D�::�W�;v� �1ɘ -=_���rɃ<DѼvp><87�;��FM�< ����Uֺ�E�;"��;���6=> -�jW~ -��N���%ػ�|�w�k:�f��B<}`��\(<B><�_�:)~�� -.P=�?U;ym�Ig�;�Y�[�O=`�p�6����/�<�.�;� ������<.� ;NH�;.��;����<�(+�;ӏ�:ᬻ;n�;�)ԻMI<����؊�ÿʻ��<����P=~%=g=W�����������8��a=(�����t.<������=�UA��-�<�]�<�):��^=��}<~�<�($<69)�v�u�o���� �����<�P�� v<} -��Dӆ���^gﻨ3<��Լ%�� ��{m1�pp0������c�;�'�<��<��]=����ٕ���>�آl����<�_-=�dE<�lK����„�����<������<�=s����.e�<�꺼a�!�\<=g���1��,���ND<�X�<���:@%R=Z͈�; d_���<��L�(���综���<@d#<��'<��N�.[�<=L��z�,<��μċI=��;�g<�]л}?8=t�l���;_2Ż��=��,�|�5���<� ;F1=B&�/l���d�����?�;u�;ʗ :��='���=|h�nּd�ٽ��=J�<㩔���*����S�A�d�Y;����6=~P���-��j�<,CY9�X����W�����BG������yi�g��%'���y��v�8օ:Sjn���_��ܖ#=��;�����=�[s=p;=�*�<����\O滃v���@��<��.<%��<��ѻe4޼8օ��ˀ��G����E�����Ƶ� ��;0}��{�;ĺb }�} -<�d�-�]��5 I���L��TӼI���E <����/<�y<��/��=�n�<����8�;p;���<< �;�ؼ�L+=Z��;B|,�T��݋�8�:�*=�`=�!�;���<��<�(��F-�t�B�Q�<ċI=O�� ].�;i�;!���u��������Z���P���� ��-�;�(�;e�3�Q;=YA��/&�;��<������D�!����R)�o��<�dE;U˼ʍ�<�& �ܔ��������Yv�<��X:H8�:'��;�e���.�<�a����"������<�ؼ�W����S���cN=�T=F1:4��<���;#^a=u,G��G�������l|�;�iݻ ��9�E ���G���W�d-�;%��;��h<`�ɺ���>����xؼ�3��|�����A��<��N;Y7�<{8��4y<`x���%��L��d�Y��i]��"<��0�@ = �'����<� Z��D=�� �LT1: S=ѝ�<�8���E�;�5���0(=��<�&=Nt�=d�D��qF<5��<��>���<��;"�伞r=��%=O%�;��V<KC=���;5��<:Q�:�D�<�2=�]���ۼ��N;�P=L�̼>����b=���=܏@�^:���t���%�<��<��<�?Y<�O=�4���o��)��=�=��8�';T䄽Wƻ��w��LZ�_w�;`Z���J����<%�q�iY�;�:=�Qk<�0(�W�;v�U��t�:���<�!�<�]��[����;=Y�<��;ҭ�<0�;F�ӻ�3�����=�^�=�$�<����Nt'=R��:�;8N;���_:�Qk9 9�<�5<��O�{/y��e�2��<_w�<�<�k����y~b�'��o-}�K��y~⼨T��[<�$<�DO<��<�pH= ۖ�{��<��=5P�<�C��r+2<.?�<�x����<��B;+n�����<�ߧ"�<"�d�#�<~-��]����P�YՇ��"=ˌ�<�&p�:��<�3�<�/��^�<����=�>�=�-=��L=LA=�:��U�:5���=A�мm��<������f)6<+�;�d�<���7�f=<N��������#��<�;KD6� ��:�1u���/�L�=K�=�"�4�Y��=��|;���<� �!-I9�8�<2���'���=��U< ���<�4T�t�_�[>�A��;i� =�%#=�=�<(p��U���_ ���l:q��;`��<������<֎¼_»��l��<�bɼ����C��zL��$��<�ۯ<�.<�$���⺁�:�,� ���5��� =�߻��|��[=Z�;"��;J�ۼ��@;��<�J^���9�S�<э�9IV�<��J<\G0�6P� x���V�2 H�߼-�=TA��Ff<��:˛<��;��<������[�� |�Tu���$t��2�::�)�I�:e׃�_<�k<]�K��QP<(���4�ټ��<�/Ի��񻱛L=Kb���&=�}�j����<�d��*�x<��=���= vX�vO<��1�<<=��� KF��E�["O=0�$�?�v<\�]�d��� =#�F��y�أ�<5��<,��;=�Y�x�;QƤ<��$<�Ly��c�;�b�<� <�bͼSю<&��:遁=�(3h=m6�<�l��X=�i̼~�Y��c�<� -=V�9=p�L���a�k��0�<�<nj�L�����;�8���u<؅�;�@�=" ���U;�iu=`Pd<��<�)�<��U���<�� =��� -�f��6S�w$=K7���'ļI�ɺ�.2<���?���[@ -�|'�������E��H���=A�LOB��K�;Hˈ�A��D���.H=$�4�4 ��,�<�S=z)�;M��;S�<�|;E_=U�+������=�D�=�+i������,(����6�ĺ�d��� �f�B�?���;��]{<�J =B�l�x:���<��1�k��<�g<\�<���|�<� <~�}<`��<��<��q�Ə�92��Gl��X"��Lлεż�����G��1���,�1�3�:�����>����,;�g;/~�һ�h���U<�V��5ڼ}�;p�L�>3h������<����;�)N<�K�c�ܺ�Μ���=.�L���k����<�E�6�����y<(���K.� -�!< ��d����.;n� =�$A<�!>=��<�*Ǽ\�ݼ��:1�����=.Ժ�]v��s漉���Y�xZ���#�x��%��Ը�<["�9�H+=�m���s����;vO��<�oR��m=�H�|�-=�䞻r��������F<��<�X�t�}=Fƻ��<+_F=� ��!� �: `):i=�<��J<>;���k<2�����z�=�(���P:��J<��<�~X<+�9=T}�����:=� <-�_ļؠ+��3<�듽��1�]�i��&�:��=�A����;�\�u��"����H�);{=� ���@d�: X��.�;CyA��m0<񦍼Iܖ=2-=N_�;�̱�a;�=���^�V;qS=�'��́a�5~=&-^<1›��%i;����ޅ�<�A��S< ���<���߻�x�)��=-F=ge@=�fӻV�Z�� �����n��@ڠ��B=�N_�;�����8�8ت;�<��;����/;= K=/�;�*��<��<H<<,�y�t��<�T0�e��������u�<9N���q�p�EQ=7b7:?3�<�g�;fm��M�d�ٌ=� �;�l�D "<��<�����<3�B�a�<�o�<�%��L�d &�Uum���;���£=��J��'���~X:�)ջ�W9<18���T�;�!}�4Y�9;_�=�3�Bӻ��;�\8<J<�g���<9��WM�<߶:�CyA����T�y����<�/�k�ǻ��#=ݍ ��a�����;��$�p"0���9�<�p�= �5<�v��>��<壜����<12����;���<^�V;�B�<=[���=<٥��p��+h;�g�<� -C�=[r<�%��~�Z<>GY;f�L�;yU= K=S:=�͔<~�Z<+չ�\ 0�_.��G$�d�x<-Cm��p�;E�n<۵��.�<��,���^=��]<�I�7�üf�_=�E��F����<0L�;2�<������=�Ώ;���<�ο<��Ls�<��#=�VV< -|�;e���/�� 4�;������ݙ漿�6:����&-^����<���e�r<�ں�I��I�<<���눾�:��" -<��Y<���)6�<����e����� -���5���$<=[�nx<�k��5��<�f�<0ִ���μϞ����l<�4�|%!��̼�;��E<�ȭ;�n�;=�;P|�<>�߼L6��� �;��;�^���;���;βN�>�߼�F=5�i���<㷵��р;��޼\��;��C=��<�;��'<����-��<��ż�1=N�˻�8�;" �<�*�<��<�w<��ݼ��ɼJ �<������;f4�<~�ڻ�G��[�<;����ٌ�<-Cm��(��� ��f�L�t�}<�{���D���Rj<βλ=l��l�<ӫ��'/:T8�<�X�<`O��=�0<�nۼ�O�6�:��l��D���3p���Y=^k -� <�<<��r����<�<Ȉ&��hɻ=l<�[�;ͺ��\ռ}a��`�|j���*���D�>��:��;눾:�7ܼ�u��n��;�%�H����һ� �9N��a�j=��ϼ�����:���n�/���)���<��-=����UM=A3F�Z>3=�\k�-�<V��Q���R�@�=}*b���߼���<���<�k���FT=����j8Zm���=P�=�Y"=�N�< %ͼk亗����T��i��wi;��=�U��5��Q;���[� =% -�p��CH������<��=ι���?��x:�;?���65��0�;֢%�.#��d=�X�*P��=C�=�I��1�}u;�u���`�<+!���{f��D�;�E�=_��<��<�м<.����^<�� =|����E�7P�<���% -����V��:l_�<�G�<��k9<���邻Ab#=޲Ļ��;\��<с��� �<��%<�������<�|,=���&/t�۹߼ �ˇ�sE��چ<��к�{ �<��C��!A��É�ι=du�<�c=�:�=5F<2��<���d�<�]n<�����!�E��<�a��>����蜼�b�<�� =?�t���8��!A=��<�#��2��;�� ;�L���%P;�*<�Y����˼u�<]���2䪼Zm�=��@:8�������4L��c����:蹼vA?��蕒;�\�ι<��<�᡺{&��o�k��i���|,�����������<�>s���̼��R<����� ����k�3a<�y�j<�!A�$8���a�;ω�< z`���=ev<���<�\��p)?=���t� 9{�V<�T<�E�]������� ��� {j3�x�J<���v�ҺUM< �� �;(�=~�=��; -\�<(W��P��<#��<���z<��~;��=͒�k���L�}�μQ�z1�<~��<E��p�<G��-ݻ�䍼��z<dɻ�1�S����9M�6��9�;]�<�4�9]7=��$��s<� -����=+w�:�8����<,";� ���-��-I��V��qQ�<����᫩�uů�=�����=`ڣ��+ �����%P�m� =i��p*��������M����=�~����)=p�a�E��<؛�;/�:��y�&������}�<�6�E���X<��_=�`<�����3��Z%��t�p)��kd�g�Ƽ|��<�� =s�m<®�m܌i>�2�ͼ��ϼ�ؼHL <�< �� �<���<���\�� ��{�/��†;&/t�D�>�+�d<}��5Xټ�sȼ��<���<��-<[��9 5��H�ʘ[<�w�:V��<�0���:h@�<�N��1���/��?�ͼ��,��I=i��i�:���;�����ؼa��*�v��Wf<�z�|\�����R�7ܜ9<�Ƽ��<��<&��<)�O=Td���gH�Td��Y*��&�Q��g�<��C=�2�Z =\�I9@���_;=��!�5Ƞ;�*J�"�d=)�<� !�)���66=��n��w�B��������ۼ�{�9�3=��&��w�@�>={qҼ(�@�0k�<���:x�4���P��+�������|Y<�<�!�ڬ=�O��f���i0z<%��:ad�<�dN��@�=��<~:������o��g��*���P���5��"Y: �D�ϻ)�O��4����dN�u���y𛼟w��BU�{~r��wF:z_��7 -��5'<L߼�y{<�D�<� =1Q��q�� =r���<<�;�o�;��E;Ô�<��< ��<ش �p�=��v��?ۼۗ -<["��S�<����5�:dYc��;���Τ<�<��N�����<��}��"=�l?<�Ѽ��G=�J���g��0Ȓ<<=KȮ<�@� ��<ч���wb�����,�mz�P��;�W.<闘:)�ϻ�=4�ݏ��0Ȓ<�8�� ����˶��)�Č;<���ɫ<+~=����J�_y'�S�<|�=����KQ�<\�I���1�"��;u�:����۶���z�����Q<�'l<�z$=Z�Z�T����#���w=Z��� ��<����w�<�E;��;H�:�OY;>� ����<f��eQr��[<ч�<��e�)��{�<5��!a���O7�;����#<���� ; �� �u������lw���;)�O<�@�:{ۊ<%<�<�*�nW����������<x~:���;#��U�^����i ����)<�=&=�WJ���<{ۊ������.��=�Z�5~ۼ��;wL�u��� �vA=;k�< �������!=R�<��x��ܐ=i,; ��1�3=�鴼�P�������μ�2�; ��������_C�<׺���<�X�����L�m߼��ܼ����x��;�Q�;!\�S��q7��5B;��7=T����<ذR�!\����#<�Đ��<��(�Ǽ��`==Q�G��;K�u�'��ؠ=-��<�I5=ﳭ;r�=��=A=�08����<���:~9뼽V$�K��sU�< ���%X����̻Q =>���nY<�Zf;#b�< �l�����F��ۡ�==߽�k�����<�#~��{d�ݗ <�q4�H�ü�E ����<��L����HE�����r -�;E��������� ���A�b=��=g&��v�P<�`=���;F�<&��;�Z��l��<�I5=yBM�P(o�Ɂ;����b�=qO���Q��:�(���G���ݧp<�^��j'�;�,+��6?�i|�;D��A��<�g<�=�<1���QO� �<��B���Ѽg� -�\B���8��i|a<*�39�Z���l*�[G"���< c˸l���krM=N��=���<���<%�<�.�:�뮼�ջ=�6��+�;�4ż�����<�{=����������ɼ�L��,`��T�;e�x=<-�/�ѼJ֥=���|=�@=�����Ø�� ���V=.1�w<�<6�6;N�M��c�<��$<�˭���='�8j�<Ɣ�;��>��b�;:uy�m��� �<����ֻ́O=�QϻC�%�SG:�a�ﳭ���`�BX�c��<0'�dը�&� �d%�� '<�?�6)l�3(����X�u�d���5�"�=�.6�<(��<��=�A��;oik��,+�;w�+=T��p��r����_���{<�+c<� ���ұ����<*꘼i|a:{��<�?��,����;u��<��z<��˺t��"W��j"<��˻9��ٻ�c�����^Z:l-<�v<�v����<��\�2��� �'��;�-=bD�;M�r<9��;Թ����>�}�Z<��=�&��P�;'��<Gs�A�=��:�O � �;(�G=�J�;�b2�Ş�<���<1��;�(�<�^���0���i��F��9���<uD<�wp=��;���<ۡ�� -�&�J����<q�;+��������dz<��7������< ��<�I�:��#<^�9:��0Y;EDG<������<�N�Z����5�ݗ��@�����տ���;$��R�<�༸�K<�ZJ��� -<��[��<D���v�� ��X��w�=G��;�����?�a��<���<5}b����;�v�a��<����������;�gźn���[nS=�A&��� ���=��\�O��� ��<~`e�5��:��E='�L��-�e߼yWC�-|��jL<�������[k���I�q��<�ֲ<�qZ=�4�<�1$=�w��?��<�B�<�Q��$@�o.�=�w�s�.�����i�N���μg-�}���x�:s8I��Ց���i��<� �̥��I����9=ܵ �� �<Z�<]� -�܉�=��=3�h�Y�ټ5}=I_r�m������;��L���B<֖=��:�c� �=���;�:�<$�Y�$<�`�<���<~�<Ҽ��k<;�4�I�W���t�߳�������<�����u���Z�<��ļ�㭼C�<�#����󼬽<<�` ��α=0vc=�hA�=� :VM�<�4�<9�'��p]�o��;+��<�~��\9�B�<- -�J���0���*ڽ�8T�gC`=_f�<��C�Z8��I�s<�uм��<� -D��6d��w���\�;g��<��9�p1��k�<� m����<ЄO<- -=�cμ�T!<9X��N9 ��=��<(�7��Cs<$ =Q���4I�<��Q<�<iԹ��O<$�!�Fc�Բ1�R���3N��{�:�\�<�I��4t��m<�T�;I6Q;8(x�g�T=-A����!��� ��}�;���<�Z�5翻�'���R���;=��<^ W=�3=��;�N���F�:�3�<��Q����wEP�t󼚘��p<�`��� ���a:J���_�4<�����W�����;��!��+��+���4�=1�=8�l;x���}���<���;��2�'$<���10=V�d��iԼ)�^�<��4�� j�J�4<���� z�x��I�Բ1�N|���(��^�<^y���p�=��T=���<���;JZ =�D�<��ļtr:<܏�: ���ܧ�;��;�F�;��Y<�K <��j� �?==�T<5���|<��=��=JN��{��8T=�;�=I�E���)<��軈G@��� �����+�p� =�.�;VAp�=I�B�=�y�<1 �<����J���~;������Ծ<#��;���;A�޼i�<�x�Ǻh<�����ؼ�=���Ř�#�漦5�ܧ@<��e���y<��I:Є�;$k�< #���2:�~<������M�hs=��J<�������1��Z,X<�qp�kv;x����4=��"�Z0�oֵ�[�= -��F��;<��<��ȓ;�!�Շ�ڻ������<ؼ�<܏�x㖼�;=�zֺF��;|��<�n��m�8F,��ٝ:_-;b�켯6�,)B<��Z=�� ��F�,p=���;t� -�V=���ƣ;���<塼�)�C�������<�H=?$�x]�;$�O��^H��Y��JN�<����ڂ:��p�N���0��<��R��zֻ>C�l�;� �/=���(Y��3�����;�C�;�Z��<��]�3�A�r��=��X�B|{=��#j�;����,=F������~R�;�4'�2�<3e¼�F�<���q�:;8vԼ3û/T0<���}���<�� <�8���IJ<4��;�E�u�J<��$��W���OA�C���z���Ʉ:���2���Ö�Iv��d�<8vT�����#j��v?˼z%ۼ5��;?�<�J}=��n���;?v;�;�;�a�;y�ּ��&<4�üi��9�ٻmH�������*n�92V=�;��$�#��������H �:����8������:ܼ*n =�8z���3:@�x2Ӽ�K�;��ͼ�Uh;��*�𦶼�� ;�`���ϼ�7�;�=Am�;u�ɼc&��%��<|c<�+׼����Ė���<@^q;@Bt<��<~��x�Ի��#��� �FX�<�=��k���;�;���;<��<� �;6�̻�(�<�Ʉ;+�����G=5-�:��<�|м'l�{4`<��=<�c<q�;JZ���:ܼ�0<�(��n�-<���Z<��Ǻʶ�<��W<��i<,6&��<�7=y�ٻG��������w�N<�G �r<�͍�;��<(� f�<���:x��;K�!�7�лD -���#<�.=nɯ���G��m��C��nW.; �!�}ng<�`����C�cm�;��u�I:+ $���0;� ���мLx��j*�LM�$j��:c&=�*f���_�uɼ�ˑ�?m;4F�����=����#���<�� =ao=��r�<��Y�<�Xf��0=HK�Ň<�b����D<̲=�U�<�M��0�<�.�f��=]z�<��=k��<��Y�EhV�?���`�N<��=�58��,�i�������…<��)暻 W=`|G��g �C=M%�<�s9�� -�`��@�B��;�Ϻ�C�*�z����Z����M����<��I=e�;[�=A�=;���}� =���������� =�H�;�~ �p���#��:V9[ˮ��� ���<�'����Ի�z4�>�f��<��=V�<�.��L<����d<��;>ѭ;�_-<�Q�����g�C;��ϼR�);�ޣ�����Ux;�?�<�- ��c< <�@�������'=��YL�T���֧�M\=�q�<1�h=!����dK��Pڼ�Q�=ޛ=󡚼Ju���r"=γ��n�1=�Q:�x=��QF���<'m��g�C�tÁ;\غ_`�<%l�<��m<�<�ˏ�����f��<���<�"���<�:ּk΃<��߼�m=�V����%��ߺ��U�<�� ����ک�<�f���UB=�|b�A��< (B<֧��Y7K��$�;@e�;�a�<��Z�Xm�;�w -��'��g�<�2�a��(�< ���R��n�<� �ZD���[;xs�<� � �<�斺�'Ƽ��ݻ7:�:�%<������;��A=�U]=�����X=Ԧ=�W�<^k< -!��ꑕ�j� -=��y�<���ZD<�m���;S�λ��=���; - -��ؿ:��<�3 -=b���!�<�i�< #�<�ю��1=�䢻6��<��,=,P�=�=�=F�=� <������w��3=AJ -�#��(���S�N<$k��F��M�K��_-���9�� �>'=&�S<�\< ђ�=������f;@e���<}�{<#EwYh� ;���*�=�s�6�!�e�:���<��&<Ԧ��)�<�D&<��<;�؉���;߷;����aم=�=w���2~�;y�!;G��Yh;֧=�⪼��<yW�D��<���!���-`��+�1 -=l )�+a <$�<}$�����y����;�������;�ø <�4-��k �^7�>�"�^�+<����]\�����)�½=ܸ���=�A#<��h�dU<�hƼ�+==x����;����E=�%˼�y��^;M�Xl�<��79�<����d�M�,*=� =�=_����R��3<�x���2A�z%��$ �e �<�i=��=�<�=�=ԩ�<�1�;፳<]�y=X�66<���Լ1���K�;Wc��KS���.�6�J<�D����@�!���d8F���)� ���U<� -M�QM6����;pRs:��~=�V]=0̻;�,��j�r����K���0����Eρ=WvE<�� �lLJ��ۼ*)��r�4=������=#��<�a=��=A��NZ;PyL�B����<� ������蜼���;>b&�s>��� ���B=��C�θ���<�2A�L�"��:�N�=y˩�s�Pm�:%�����ƻ/$�;=�C��@I��5�ͬӼ���X����K�7���Qa;*۝�յ'��Z��*?%=�KӼ����1��<�l߼$�蓼PyL=�&���~ȼյ'�Y=�����������<�B�<� �7-<�>蓼��7���B=rj��^�E��r�;�VT�q��6=sv=����<_= '�1��<�׻$��+��Ӭ����<��n�>����6<���:#�ɼP�S�K��9��:�e���CмE��R ��|�<�n��>ƭ:0h4=�A��B��<߻�w�K$'����PAۼ�����;/(���;K���6;Pm� ���Q<_� -<>���ɽ;�S���z��D�<��¼m'�D_���H�<��=�����l��e<�EE<1tpq;B�)� -: -��AP���`�N"����"=�U��Ӽ<�=-� -Nw�G&8=�( =o��$���kz�h�<�RBp�`�<�#�< -< -:���{��h��Y�2��(���9�:��]�Gt=^�F= Ϥ��,F���#<4�=��<��Լp����V�<��$�܅ڼ"y�<+�;DM��ụ�E<��W<���<53���պ�N@��@�<�Q<�4�<�}@��N�=�(#;�j!���u</&=� ����<�}��ȕ �,�f����f��<�ʸ�V�λ��r <���� �"�;�h�;uq�"=�����T���k�x�2WD�[��Lƶ:!(O��F;�cչRq����*��x��6U��7m�:���:*�Q��f ����<����U��`D%<��=M�F�U�=���;$�=��ؼc��;A��������G<p|��ф��[��<|�7�8�!=�ʸ<�]&�4b(;X�c�vd��Pf����AB$<���<�D��ʢ=�0�<����U�>�|��k>�=S����D�<�,��ټ@ ��f^���E꼟�����T<茅<�R�\F�g% �~:���<���h=���-��W3�b��<��������$=\�G��i�;C� �ߕ<Ĉ���<��+<_.4=ST��Z7���=^��;[�J�C�����=�zr���3����<�&��b'�b#��̼¹%���ڻ�T�<�/�=�K*<(�=g)=��/�G� =C���׎c<��}���7<��9�d�о<&� ��@b����!-)<�eR��Am�wQ��D߼&M�< b1�]�A���<�&��D�<�+<�2���D;�4<;����,��'<�Ѽ�1=�mL�ؖݻC�;�rx���7�Ǡ�<�R�տ�L�E-�=ST�;[�ͼ?{<��;H��� �<�8D<�C0:==R�~�STw=ֆi=�k�>:�h�<�ż�h�:ٞW��;�<�/-=�ԅ��/?<�#$;R ��f!��*ۼ(��Sx�E-���}�:R����[0��=��#<(���0<���;<(ۆ����<��=dN�<��;�&(:��|}�]�>:!�,�[��<��i;5<��.����Sl1����<:K:<Є �1쫼�R=���;� -=l�?�0=�ϼ���;;����B=���:Y�z<� e<��d<�xм< ��a����c�qK�<�|==�[Ƽ|G={z -<\}�dv�����42�<� e<՝��j�[���&&˼�.g��y��J�{[��a�� �w�~�O��=ȝ�<ۥ�����S�;>���6�����~��66��C<�_�<�U=��ּ!�<�<��<����Y���ž+�>�<,�;�;:�<����@ ̼`1�;� ��<�=dv���;�M=�#�<5��<�_�<���;��U=�.��C�+.�Z�̼I��xq=�<��(���CC���}i���W=���<5�I=���(�����ػ���=��<70�=P�_��O�;|l��;�O�ʼ�� -��|Ӽ����|lh����^��>�6<�F�#G��; `�<�H�i4$�o�/<�S��?h<�2�;�c���>��U�<"^<�S�;r�8���< �`T<�#�1= �;p:;�1��S�<��[��ls����� ��<�'�����<<<�'�?S�<�����]��_�޻��9��ls���=*�5}�l�<��<G�Gػu��mOH;�tB=|�<=��<9ӃǼrh���e<�ȗ�ͥ��ޕ{���X;�a�)�,<�'���,�!�ڼ�<(n=y�_��۟<���<ζg;X�7���T�}<9�ƻ�:.�����N�����;���;ђ<1r=g����R��<��S�����MS=�:O<�~����tU�����<��x��W伐66:���<�<��߭<�:D��:�u6�����]=�] =����[�;S�h<�:�8"�;�u<�2��:ļ@4����&�<��4;��M��h=�=)җ<�%�Quu=9t:Ep������&<!|�D�V�0ޓ;Jf�H ���0�B�J��k�<형<�z���I�<�F�:��:���|<�@���;3M]=��&;3�:K����;u��;���%Zi:B�;���;������vj�>%Ƽ6�7��>��l����27�|�3=�>3�~dƼo�<_���=;<�3<�܉<���<�3< ���/y��w�=�=�:���-<�� �%�U�d��;���.�w���)<��������+�<3��n8<��������T`�~d�<��2�v�^���U:�#=^�m�h�缇v����1�g�@������X�cj/:�=}<�j=L;�J<_� -��_�:�#�]�F��=h%F�$d��M.9SL��̄<įB=�>��>�2��j;��v<Ep;��̒�=ݦZ���Q�&�Dg�<|(o��Lc��sֺEj���Fe=�sּ��u�G�������=#a�=��=!^�8�|������n;��L=W𢼈�����y����m;.v������=z%p=f7U�"2<��.���<�[s<����Q�&<�y����|aG<\��;��� �<�GE�j�<���� cѼ���<��K�a�%ƻP�N;[�o�>%F<�V<�x;�,=���<ߩټx�5<˅��ʹ�r�����<��_���c�����=���7�<��<�?<$���D��k�:�} =-�<�pl�9I�2=�F��&�<�;�:��<.P<lj��ܻ;H�q =��H<��;@��<猙��<�P���� -;G�,=/@(=�ߝ���;��8�%�<�&e���F<� ����:C�{2 ����<��e<�|ӻ���< Ql�@����;���������,�x<�D���ּ/�v<8�<�< �=�q������2�����(<���𞓻0o�=5�%ƻ(�;�Lc��*��h�<Ε��k��#a�6��;��s��t!���<:�\�~ȼ 7�<5;nFP��A�<8~]:���<��;:���VR���=0C'�[���9ɼ�����-��)��#�V���h{=u�_���q��̄�C�F�]� ��z�a.X�Ɍ�;�b:j��;�,9��#;!��.����*:�v�:�k�<�G�9�7�<�27<�[<��;�Y=���Kn�|5 �8R"<���;���m|�;��<���^���꒗<�e�<�1�&�|���Hc�=�8'����j�; |�� R�;���;�S,<�����~��@�`<��<��=U�<�G�֔�!��;,K����(;�eE���伯.Ƚ�]ջ�]ջ�Y������v�k��<��lN+�D��<�Ƚ��T�;&0�=ƒ ����<+����<�b� $9;��<�x=�f��lN+=Rj��M��<��<�]��6�>���<�"<�f<�Y�l�o<;�����=l&�4/� --�h��:d.U��ʬ;��@<�q=�on�TK��G޼D��=4�Dٻiq =��b=™<��ۻ��@��9ʺt{I<�������;<S�;�a���ɺ�[=䑳��~[����;ϗq�<� �/]%=0�n<����@G��ծ<��������Nh�� =�ռn��:��,#༱�=� =r=�;��<���<���M=�U(<{5�;�Y��?u��Ί)���=;�oa�yaڻG84���'������N�:�=�U;�ҏ��wD�������<1=G{��*];�#F��ͼW�(=�R`�:�����y<�H*�j$<���?��<��y<�"��yaZ:?�; �y<��<�e�;�%����<�]⻚�B�� ��<����������<�a�����5R<�"�;�_�<* ���!�YY���k�^t�<<�;I�<�K�<����@I�<���< ���1�<�=��<��1;�â����; K�<�/<&0<��V<��V<�Y�<��G=w�����;�-��R��:=����<����*B��Z���������� ��Ǎ�Y��o�{<8�E<�_<���P,�b��<2� �<�i0��;�5Ҽ���;�̨�%�=`D�<���<�U5;�W$5=Wr����n=įC�0��<�Z=O���.�����<�|߻��c�px�:,t1�漊��<�c��q=/9�;�Ӽ���:mx�=�a<�&h�������;�GV�\݄� k�:�������=‚���G0=��8�F�%<�T=ElB�7w��0=�iY �� ��{m��d�����w�~�>B��κzǶ<ǡ�<�[q<�|߼ �ɼ��<=�׼I<=�;��3;<�U<����5`;M��:�뻕�S�o�=�Ce<|� ����[�!=�|;ص3=�<�7,�!w�0 <��0=ԉ��+̼[d����;9J�ǡ����;�"��Z�;��-=�/��!<�M�<��8����d;ֈ���5=- :W����U<�$�<|�\<�$�4� -��'�9sji<]׼�P;H1�<����&���VA�0��;���H^��%�;� -��f�:���<��<�i��i���9��X�;��=#��A[����ᨻO,���<� ,��5`=_��;���G��<���J׺<~m��� <��H=�7���)��*�;/߃����s=�;G?t<��t�o���4���<�+�=h �;��>�Zr�<��3�ZE>�US�� --��6 �:i7���C��Z?<�(����z!żj�ۼI�W;ȃ;=�` ���.�$6�<`�;�y�=] �C�D;��;T�|<|�»t��<��H=�G0=�-%�OR��<�RP�>����<�.�<���(�j��;¯:<��<�dF�펯��J��p�+<�;�[�<�%���+�q��;��;� +=o�;W�ݼ��H�<ϻ �<��~<֮���;� -^�h *��'[<4����<�o@B�������<� =�٬����� ���8k;��"�j�[�����V�;�h�;29^;|=iY =J�:����:;�<���<)� =�]J<�Ћ;�R*�� �m�ҤI< %�<��� >��lҰ<�;�<��=@J���b<���<�鼽����B��L}R��-<���;W��h�9~mt<ˎ<��K�)��;eH�;���و�<�P��XE;GZ<1ߩ<��<�^ -���<���;��C=c��i��00<�B&�A[���B=� , �C��^��<8���� _=;/<[�i=�4�#1=��-�b?E�j�/<������ c�<#�����ʔ;�!$<���58a=��D=��a�=�J3��eI� o����:�oм�$Ӽ��uY=�����A�Q���ѻ�Ah:��<�����L2=}�#=7%='>j;���[���6�@�G'�$;< L��p��<�U��������<����F���m>=,��:5v�9-�;]r<69�� c�;ſ& :�,g<�E����<��J=l[��`�<~����K<�&��]����������:娲��C�;Q�o=��7�r������Y< -��|�<���[=|n��]�G��:l� �͒�<娲<�t�;#��-�ː�:� �<�O�t ��Ɗ=��U^M<,�F<�(Q<���6�;��t�*�G����vq�o��j�H}U�<�,= N<����5 �:|�T=>�[��;�}m�y%����8�!�m< 1�.�e�%�*��PȼhT=TF�;��;<�R��͟<Ǜ�<$ �;��漴r<ڋ)��%�<��.$;�Wx9�=���<4]�;�(��O�; -a�G����&<���B�<�_�;��;O8�=腠�}�t�0*D���ị��;ܤ�;(꨻�t5����P���u���S��T�-�W:�:�Zg�����>$�<�:#78���sl��ۺ;��|�$;��:=HӴ��b=^�g�TF�`@�c�<:�޼L[�<߁�sl =�����PH�dqC��*\<��8����<�c�;f52;>�ۻ�fy:���<'|��AZ<���f�<7Q�<���<�|�; -��;]�;��:�<�� -<2��<9� ��} <�&^�Fw�7�����f�I~�����;Q��;��<�Q�<����K�Ӽ����j=j���Ї��FdV;�v��,5�<�K���0:$J<�[�-��7!<�n�<��'=�������z<����<~�<T!=�� -<-Y{=��<0�������;�5���2�;���=I��<]@�[ <V���"�;bU�7�[�j�/�� �=l�K���_< ?Ƽ��M�6���U�@��S�����I=y˻<�5�<���;���”!=�n�;�s�: -�u=kB��X*=����%�q����;��)�#�~���<�'>�ʷü ��7��c��B�/�6�����<���:r>!�۴»�3=4��:���A�l|�=�?ջ���8(��;s ��aﻕr:~D ��X��כ�=���<3��=�$'�)#=�6���;X��Aݫ<ŭ]��v=%��r<�~M�Oy<��һ?��dF���[���M˼��7� -�0=9�㻘x���PL<}�����`3��3���A󼹺ļr�~������e�������r=�6�:!<#�$=l�K<*S���xw�E�g<��:�綻��l<'�=� ��d<�X� ���<����^��������;#�i�7��<�����'=hμ<_����<��<�_���Ђ<ld�� ;�<��=�I� ;(л�A ��N�۴B�z��<���� `�d�r�vJ�T!�������gr���A�<ĆA��9�O��z�W<�X@�ic���o;[l��۴B;ę<�3}<����ѻ�]�<^��<�F��Ⱥ�Z���Ђ���_=ĆA�Z都� �<��_��g<�9�Kޤ<]�G�������#W ��d=� ټ� �<(��<7m�;f��<�Ɯ;��<��m�Ӽ�ԻLA<�!�����a�ZE�<|?�����0��,険��M<+�<�����<�7&��@�Z�a 5��0�;�Tܼ9"��5��*)<0)<_�=�23<�8�<�m�o&[<����w=9"��<�����A ���=on�<�~M�����ˏ����:�3�?�� 5=~D����ļ�\$�3��ŭ];�q�<���6����G��Vμ�����^B�0m=Κ�<����+�s�r+N�v��;N,]<�!<�O=������<M&��0+=4T ��uv�m��<��޼�Ջ��'(<� <,�=�����Ȼg_�<��ቬ������ڼ�-<�=&����;.� <��T;�,��<ŭ�<&pH<��<�)�<���Ǟ�;��/�=<> �;���;��<�U���[=��Ѻ0�Y��t0����8<�c5��������;�^U:��;��+���1=�M=G��S�ݺ`,�|ǽ��8��vڼ�,=_D�;�<s>��W�CI:^���r<�_���[��Q�<o���$Y=� -�����x���4=�=����� =�4�;��z�����Є=H�d��[����i<�o���%����;>e����;�� �V|I=R���}����6=����������…�K� ;@��=+/=|�<��:Ar׺:��<͐����b=L_�<�C��I�_<0(=8=Ի�^�<�]}�s><���<ұ���.�<��;�AW�r~������<�z�<�����ZH�<������>�;�l�=�����˹���% -�����:��;�ぼ�%�����<�̼$���b=#:������*�t<-8ۻ(s�<���'=P�,=�ޒ<�Yܼ:�Ļ�;�Ԗ��c�;>�#��gy�eٞ�Ƽ˚�� �<�O��LGF��y�ſ�ۑ���b�5=zo�;��<;+��j��,=ڊH�����<�ݫ��UE<��=�A;4�*=�$�<�<ו<�5�i�E�M��U�����%=�����;@���滥�p<�*��(�;������i�<5!�εټ�O�1�PC*���;��6�/ =X�7�ɔ��)�y��ż�0<N��`�B�CC;��=� �<��� ��g�EO�;�?=H��<���;�5=�:�<��$��ٔ<�-�<�׻g=����kn6�ŀV;_�Ǽ�T;'���`��P[��>e����< -4ļ���^�D��e&��C��#�<���;$���:oK]���<� �;�R��O�6<�ي<7t��M�<����V"�9��������=ʻHj<İ�. ּ�(���o��TW�<������;]��6�"j$��!<4H�;t�9�L�:X��;2�6:Q:n��m=K��=����|J?8;Ƅ��-P�s��"Ƚ�u<˺5=�����<��)=H����lA��|;9��ت;<�Wɺ�k��-��<(z��Q�(��tX<�(ҼSxh<�Ʉ��]>���4y�s���6���]=�ء�Λ��S<�)I�����N��v���˦��^i���<;����N��P�+<��ϼ^pѼ�Ć�J�|<ܪ�<�WI=9R�,�3���<5;�<��f=���;Г�V�?�t��*�����=���)jܼh쫼������6Z�<�٘�p��;ww=�S���eռc��<�0�L3��/����&<�w ��$�8b+=VB����<�G<�ꣻ4b�<�$<���<%�<��w;�ʼ�� ��b��<&�W�߼�W��gI��% e��� ���WA�p,�- �;1$K=�뚼\������}�1=j��<�>�;�� ���`�Y�(=�@�;�kJ��&�;�kJ�9R�:�=�8�)��<޹r��.G<�F -����;jA�<��;�]$����;�l�<��� �M��.�:_� ����_� �s<��u�W�߼���<��;�5=�tX<��k;� ��!2:�!��6��F�;G� �.�s;�{*<"�<�0鼊̃<-S���6޻�%�<�-���j: \����<�Vһ�G��ʯ9� -̼)��=:�Y=��:�ー�%m��X��]���J;��]�5�»_�N;iQ��'����W�Q:���<}��;�\-=�tX<�> =V��������J8�� -��n/�(���u�;�{D�6Z��<�0i;�ˌ<����X�+<�-л$4E=��R<���� ջ�!2���û� �z�����>u���׻^Y�<�'����<�u����ɼ9R���� ���r���!��;j�<�p�i �<�=J;Ƅ��qH~���R<[wK���\�S;�1��=�����j�;�pv̽�O�<�`��<�<K��盿��6>���<���MA�68�M9�<"����"=zjY�S���b�;슚7n�X��ܔ�j�����'��=��;��w<<Լ˔+<�7!������c)�{S�U�W=�1߼v!����O�j-=��x::�����W6������b���a�;�(i<���<�l<\3���n�4A;x��������k�����=mV��N���;{=����;��O�WDK�� �; ���ڻ���B;d��<^�<���:m����k�=Y�W=�9��0ἰ\��l<�3�<)A�;�=Ҽ })�8Q=��7�ߑ�d�d�ݧ���� ���(��O��l� =D_�<�&������%�Ȩ��t:�������;l,�<��g��Zj��� =�%��� �ܾ;d� �7 -�<�D��9;;OS�< -7"=�G�9c�2�,�U<��3�ߪ=���;��%$��m�l��C���-�=⪼o/Ƽ��Z��V��n�����.���k:�v<�����_ �*� -<��u����ŭ<��G���h� -ٴ;���:��'<���<�.G�ż7;�?P���[=Z����*;��/���;�l���w���=��͉;J�o)���(�<�5<�O#;T�c�$;U�_�K:�ɍ�4�;�]g���Ǽ�4 <M��� =�c���#�<��<����f>�<�d_<�MA<���6<(nU:�<͗�Q��+J�M -����;�ߑ���ȼ�� ������Z��!�Ѽ��:�&<���<��<�=���<�;�;0뼼)�� :�=�:�;��<�:�a|���R;�����=A�=,��:ϻ�=�n�<ˎ� Tw�OŨ�" 4=�������0�< ��k�F=���?عH�<3W�=ml�<�m;��=��Ѽ3��<A���rߺ�m=�Z�;֫=!Ӽ�`ǼqNL=�ۍ=������ɼ�̢�V��=� ;��;z����|~�4痽l�p��=�W�E8��ѕ<�R?��,ݻZ�&;�c=z���/��qt%=�<����;�W �$����B�<.�qg��H���*=���:��W�U=���=/�<�$��'���=r�f������)�<�u�O��<�ͼ���<�늼���<_R�����ܻ��<r|9�s�79y�� �=�:?=���<�F�<�q�;qa�;���<�P<�Xĺ ��<|LW�ǙJ���=����< �-�����6&ϼYR��S�<X;<��/�YR6�1���2�<�6�<�|�:���S�<}�*�{��:����v���g =fc�;I-��@���xW2<�d��g�[=��N;Ȭt<��;@�?��Q-=�A����<��#��Q�+;n���˻�O�<�=F� ��b�6�Fd(B_���vɼ+m�����<���<,�^=�H�<[ó<�BB��=V>�<�9�ʔ(� ��<�[˻}Í;��J;=c�A��L(���#�9:�W��;k ��m���\�9�N����Ἧq'�d Q� �=��=����N��;!<�f�i�<�j�a��=L(<_��t����D< ˭<�d}��Y�<��<0�ɼv�4<��ݻbnƼ �6�]y��T�Z<2���<{&���޺��.;{�<=�$�<��ͼ�t�B_����=�#}1<?X��T뼗��<��L��RмY�#=��;LN�<�R�;]+���‡�AG�<��D�����X<��;c���?�0�S3�yA�;OZ��;d��<@�<�����dw���l�W�hO�'а��W2��$���.�:aG����И�<^d-;��T��CV���;6@���n���<�õ�W,1�x�:b3ʼ�*`�9���� -� -��������s<�j=�G_p;#><�ƽ�R<�ʍ<�,�� ��o|=V�h�����=8�:<�Z<��/=��e<��<���:q��<}m�<%�=�f���<2���2A���< =!=��;�Ѧ<3����;6�f<����(�=H��� ��28<�(�(��;��;��<��i�ʽ ����/^��C<��J��C;���:�Z<��m�mԥ<�*�;����D��_'3�8���!@���<=z� =��~��˻���F=lN<��;-ς��R=F�ڣ&<2$+=�鯼�O��H ��yu�����;R̼� -�;�=Q�!<�Ξ��/^<�R��;l�2$�����h<��,=�x.�F�j�:��<ε�<��T���;Lض<����B�<�;�<�r<��[�v����N�%�=�2q =\�����XUt<���;jkƼw���聻1뀼ְ���~�� ���D�F�������q�è;�L<;�S��/ �@�j=��Լ�Eؼ�� �3r׻� -=7���(= *�<��7<��$=_^=�*�<���<��T<}�ݻ5qD=� ";��=Ѧ=�$=���<��<#wK;��V�g�r�~�:�ļqr����<)5@<��1=�D��R��;�����P<9�OR<��û%K �$ N=G�'��D�<@C޼#��;(��è;8ڛ���;;���;��'��2F<(J�:��w<���>�<�i=�/b<>�:N~�<�iV=ʾ��T�&�P]����<��=B�;�xռ��q=2W*=̰=�<1S꼺#_���c��^�S=h��q�e�<=e�!���j��4 -<��������B�j=ez+��3)���]�Y[=�k�;ˌ:�e�6;�l���1�x=�q(��ߓ�Cd�C�#=���E/<��;�3p�vC���R¼d��C����]�T �;2 K=2��;�o�T������;2���f�<��/<��}<2�����N'<�$�3��X&������"���N���滻J��<�=��l�w=o����鋽J��<0{h<)�>={�X=�)<�Ί����;���;�x<�=0ܕ<��ǻ����3 �J�T��mݼ�Y�;0{h=?��<⇊<]&��o��9a� �8�=��<"Y���N1y��U,�<���G=w�C����;аG�~ć<�=����0YB8�KL�w����>r=�˼�Y�<��(;{����<�f?=�06;L-�A=�S<�6=l���-;�� =�D��R?�]��o�<�3�аǼ�����N��-<���;��A�N�6=0Ϻ0O�R�s��<0���h��;o榼��6򼺳��<�Q=�7��i�<�N��_�;V�S�)#2=�����5=�0�<� -�l�Q<8�E<�i$;N����E�1`;~�<���Y��`R�-�3�{�V�U� ��_�<��9��Ĝ<�7鼺�|;o�<Łռ~�<��9��DC<�zE��Θ=w�<��H�ە�;����6=a�<`Y��w��z"��仆��<�s;���<{Ye<��<�_/<]YW�w�C�)g~��#q<��;����D:w��;��}<8��<�p&<꽚��K>;;��<;f;��<�:�]Y׼dmA;�R�:۽��r�������V��<1��"��b��Kż� +<�K�:)�K<�����_���*�>,�ź����e�hf#<��=��������?�����Q�ɜ�;Nܣ�<"ȼ ��<�=��=����� =�i<�)�:��;aƺ#+����;��)<��W:4*�<�7ۻ�3�]�Gm�����<�b�sK"��������<泥<ź��{�%=)Eؼ��<~�`<8#�<��<�˻��3���C8����-``:U��;{�<������<*I�w>ݼhU��۷�<>�<泥��D�w ={�X��l��X�<���a*��R�����r��i�<6<�*;8�����"1�;����#�H<��<�KE�%R���ռaƺ~��<�fM�� �<аǼ���<�s��񩷼8��"1�R���l� �C��;�K�r<���3�a�4*�<�z̼--�<�)<������;1g� Eʼ���_;�s��~�<�U%�-� =��}<�"�<�E���<f��s �a*lֻd�4�a0=L�s��az=NYP<����`Y��v;����4��<��ɺ�K�����ˬ<�D�;�7�<��!; �V��6�� �r;Y�=���0D�<>�<��<�}��4L}<������#<�E<�X<�0˼R?<"1�s\59���<]��<H��R�]�*<��<{Ye<~���:h>ֻ�:ּG�< \=s𛻲f�;dEt;JU��]��=d߁�4�*�>3�⩰�ţ������oĀ���<��9��3=~�`;�n�{<�Ka�����m�oA�����"&���r<{7?<�_��b�H1=��=[��;X"��S�"���KJQ:&0��Յ�䎒��f< -��;Ҽ��;)�<��<̵W� |��=�i��oU<�-����<���<�% ��nB�iqw=׆W<_v;;� <����O�s�.0=z;!��`'=.o��eT,�tH��̵W���C�=��;�M)=)�o�y�4��������b8��0[��(�x��}r;�ɬ�s�'ֈ���~�x -�=�+;�9�<�� -=��;r,��zP?��1�<:˷;�.�><�<�<��R�k� ����\��tH��P����<9�s��!?<��p�v�P�m3��K=-x���=c�]<_���L<��=32<mּ\�L�� -5�Q��O��<���Z<>-x<@O�<�t<�z�3������a�Z�y��;��v����;`(=�?�9l�����;)�������ڊ;?��-x�*��<�+m�� !�}<�� �s�ú{�6��n�<��z<��ڼtH��E�(���K=���;��E� &A=N�!;� <,#��<�zܺ��<1<���� -��<�f4���(�Q��;���<�%: -� =��]*bH1<�(W<�챻��~��M;7ߌ�����qX=Q�L;�c��h5��t��%�k���<�f��sc; �I;3GZ�� +<]*��x�;Rt<#Y�` -�A��]Z9=`�P<4�(��ؽ<>-x��I=��(vZ=�]N=3U�<�Pz=��; 2��� o< ������:���<>� =a�k;la�<��=�g��.��:Q �0(ּ}��;N�=�֎<6�p� =����$=�X�Y����4���~:���r�|�� -�<��;�Pz��N���< �C;��='|=�i<��G;�����ʻ��B<��:3U�<<��� ��U�:��@=�P#� �j��J����<�I;��b=� ��J7��[��0�k���'��:�= �����)<(&ݻ��E<��ֻ��I <�4��=��;�;��Rm���2:�O�;9��:�}7�N�[:�Tl<��I=q�=�P�<�s<�>�<�<�Tl��Qw��"�<�㹼���<_�l<�<_��<��k���:�"�;q�=���P�<��ټ�$ =x˻��j<�#�;纕<�� �'��;���<���9=�s=��#��Ui�X�� �U<��缈�(<�P{:�&[<����^˻a��<�Ր;-�;��?<�~4�iУ<����FG=l���濼� �<\�<���<����DF=i��r��j��<�^���==G)�=���<���<�46��-���U���{ -���<�p�<$��;3& ��f�;��'=P�λ�> =�����f��M����3��g=S6� �J���;�:�<��~����<�m�<���=Ae��H�Q.=h6⻨5��b =�/������K<�g���G���p�� Z��Ɔ<��л�h��Il=p_��Q�5=�Zz<���<� E��Y5=}a����&�(��WP;k���缊0����a�=��=��WP���-��s�<ؔ=y����n$�O�����)<����Xə�R�<�ἢ�Џ¼�⻑�U�f�bi���S:j .<6��;� <��=a�=�l��녻[)̻�c!<����`n;�w���<��<�-��`~伣�9� -�<-��h����M�������T �_C1=��!�$����=;�;�����.=G�8��B<�|=7�#<w�<+vt<����Ǵi�7��<�9�<8<;W�<r�<������<����y]<�u]<��_��y<�� -<�P�<�R�i��<��6�X��<��ʼ�<&=&$=���:t;��'7<��<�'缜Il�W� �Iҷ��&"=O��b�c�\\�$:üa!����RA5���F<�޼����녻�_�=��6�Fzl=j��>>�;M*�һ�";��Ǻ��j=l�z�Ă,�n=�J���s�<)u��@�<������<��r������;��<"P��N���ؔ;զ�<�DŽ����m���)�'�asJ=��5��mm���<E�<�C��x:���<�4��0GY<�a<C�<�1;&_�<"�<� =;�Ļ�� -<�f�x��<�;�eH��"ɼؗ3=4�<|.����%,����v�;����/\������1�xZ<���;3D7<��c<���;�vH;��e<���7釽�P��-�;�@+��� <� W��<�=� -��\��:W$�<�4�;�?U<@*���Vd<�HP;�<·���1 -<�=�<���s4ۻ+�$���:@��42�mT�\��7��$'�< _ ������i��3D7<�м%�c;7�@�Q�;dZ�;"�O<��J�������<�=J� <#��<4�,����<�rG<�4�;#�x:�W=�w����ߨ�<�a<�ځ�il��6�����<�t�:x���9�޼7t���+=�� <:!�u�y;6�������X�;�W���P>�]<%��;S���6K���e���@=Hg[�-K��S�X:� RK�|.��e� =�2\���Ꜿ�@*|��;� ��*�⻌�=��)=\�������q�໻����Bn.<X:=O�?���5�����b��=O���LO1��<�剼v5=� � �<��g������}<w���:<�Vd<�n��w�=���f�I=�o���o�r#���Vd<1P�<�.��[�;���;�S����; �<� ��0ݼ��;��ż��.:Y -�������K�/23<<��=�WH:k�H�s4[��� ��X,<�yѺ.�k���m����:27u�2���C�\<���]L\���k��ju��Rf%<����㊻��;�ѽ<9��<��2��L�;džq<�?�:O�<�xm�1��;���<�=�E�`H�<���c���o���խ<ޝ"�^�:4+�<dž�<� ����<¼&{�q�4<�R�<���:��L�9؀��b|=v��cFZ��;��("=�-�<���<��,=�߼�q=g~O=Z��<��=� �< 6�Si�+v�:󥚼���; DT;}�K�e����:���5��y�;V=q:b<6�����<�p�X�z< ��tLC=Їg=���<Ē6�j<���;�ݻ B���s!<"0�Ē6��� ;l,+�l��:e�<�J�s`�<[����(��<6��[Ļ{��q'X=�Q=,�D;�bV<.�b=}�A��v<��s<�����;醫���=.�<ת�<��:@<�<�;�F<��8����-�ؼi<������T�Z�ۼ�+���W�rMl�;71��g᫼`!�<+v��_��;҄=�A��\�(;���K�5<�!�;�`����<� ���T��5����I��L� ���5=07�< ���Ё�^�Ƽ�.=b��<�^��z�������m%�=���t7��)8�j�;07 �y�L<�<»�<�A(=/�v=��Կ\<`�+(��l=Կ\���<��<����f߼�Ѫ�҆�����:æi<�/Ǽ6�3��f<�R,��<�Y����������<�l��TS�;S*��c�녂������f9<��=�i��#:��=<ի�<��s<���҆>E�2��:��G� _�Lo=���<��M�"y�������!=�; ̛�Ƒ ;1���+v:����:�NI=62�<��#��A(=��<�}�Q͋:��=PW�:g~ϼ/���_�Z;��W:Z�[;�t7��Gݼ| �;\�2��3��Zc -�hj�<�f��_�<9����z�`!o�L�I��H��{�<���<�4��wq�<�=:�<������T����\��b�T��i}�<�� ={��(����_=�9&<�4�[��<-�ػ/�v<�b|<�R��(>ż����+���<�X<٩����9��ùs�߷���#�;�TX<���<��c����a�1�j�.�;�z�:gkE:$i,=�������x �YDݻ�]G<,r�<�N�<��:o�<�@ �h�'��ͻ� =�څ<���L���7=�b��� ��ɲ<�~��� �<���<�.::q��= -�Z=e�(=��=�?�;*/=��/�<����_��<��="���t]<%k�s�<�t��< �Y��9<�\�<�R=���;�'�ؘͼ�p�j-'�J%���<�0[�[����+B� �Ax��i�v�����X�[5;�� ��拸�G;T����=%�P<�-<^� �L��<�t]����#��rX$=�i��<Rw<'=5<}�o=�;ؘ�<�t�=c5�;�@d<�d�<[ -|�ؤ=�#�;5$�<9AɼjE�� =��N�� k8v��<���YDݻL�"=� 0� ���P�; -�:W��<�����<�=J�b=�@<���;�j�<_$��V�����c:���� �v�һ#ر�Z����ؖ��v̼ê�<<7��j9�����<�=;�;i�����?��<]y���3�^��� ��;��F�3�K���� R:Z�|���<� ����&ռ0��;��=�5���<ٻ�W?<�c=��@���ϼ|=�;����8�<�����<=�dT� �|8�q��;�6B<���;�=Nh���]����%�A�z3V�=�e�;`6������ӥ�>|8�W"l;e�$�"z�9��Tu=묱;��|8=,��<��,n-;W"�<�q�<#T4�Q����2��)��<�u`����̅{|�

��B�Ӽl��M�;�?k;Vn��m`�� -��<5� <��<�H��:���0<�5�;� � �;2m�y����ػ��/P=+�=��4�<�C��ػ|8�X��;p�b<�An�B/=��9AU�u��s��;�e�����(��<���q�%=>�o�v#;���+=�K̼������;�[g<ϊ�<��gK2=a��;��A=�ͩ��j����;;�%�>;�j���G��=�u��eż�׼�X{��|�;�N<A:�!)޻,�=�4��ϼ.Sr�<�sü�"��=K%;V��a�̅��-�@;�&�2���^�<��h��)=:l�;�,�1��#�=��ƶ��>�LZ���}�<ӥ8^ԁ<��ڼ�ñ�U���o�9ؔ�&�s�Utw;pe�����|8|8���`��"=v#���׼�%X<<�C���"<�{�F?���cB;�7��{�P;��8�B�<�:���h�c��������9�zϺ�!��AU�<�� �,������<����KL���<�2&��>�����~���nn���=�=�L���;A:�o1�Z!�<�<���������\��<��M�K��<��<�nn��rt�Hj�=�0��+ �#.M=j=�Ⱥ<����ݨ=���<�c;��_|8<���;{����<�X���]��Qd\�~湻���}���}2�\���s���[3����<,H�<��$|8<y�<�μ���h��k<�K̼ 6�<��T�w��.s�'=��ܼ,n���x2=mf�����O�:��!� �?=������+<��;y�ۼ?��_��G��~c<��z���O�����@��:�<�_��#.M�"�R������U�!��dv8�ۚ�D��k[M�e��:��<�D�;�D@<��U�y�JOR��9�*�;�[�<9�^1��>|8=�M鼱�X�t�����»��:;�><�ʽ��bٻ5����3�K=��2<�u�{��;s�-�.s�<�nn��lQ=�v��e�<:��;��<��<���<� �A8�<�ؼ2**<��M�� ��^��1�;�쁼NG���O<��5���>=U*�5�~<ǽ=<`�~��>=��=�証`�;E�d<�&���=�X�<;��<����<��>����=��I<�� = X��'�Q�<��7���M�vkk=)x������:�:�;G�漽ݼ o�`VV="q����;XQ�:Y���mbb<��<�3 �`�~:������,����<��=~J<���<�5�� �od�<^�<�گi<+��<�.=�a<���<5��;���<[��<� a;��j��0��;=O�n����<�Al��K����<`�~��� ���Ƽ_�� ��<�q;��Ǽ� ��֖�d1��yy�#r����ں���<���!�\�<����K���`5<4,,��K�i<�4_��<���<���<懲;� c��2;h`����'=�/��4T=k��XQ�)�r�d��_��55<]�����t��5�U���:=����=h<��<=�;���;��k;����?66�YOϼG��;�7�d��:�X=}qq�'���9d:/zϼ���pe�< �����H�d���Fq�/z��<�_�=e����������R<�B��0<���<�G���ټ���9����VO��`����b;G�f<�5 �e�����x�;7//=����o���׬�^�<��<ㅰ�shh���1��&�<���P��Q&=MF<�z�����=4�<��1<^�<@77��+�JA�<��c�_�:ĺ�55;y��d��R��G�)��;�;�9��|pp�����j;�Al�f;<=i �;x�<8������1���?66=�ܜ:]������!��.Y�U���7��;�$�<�=<���<3ׁ�i�� X�=��z�G���IC��d��B���lA<��<�6����]���qVy���#<�����ۛ<�=�n�3�{q�<��V�E/�;bQ�=�� :Ч�;���<�ِ�\�=��<����=tc0=�u[=p֠;`�� k-�c�6=9�#��5����l�):���{ͼ������*��@=p?�<�>��^�ܻ�?���/!�S��������;�8�r��<� ��Խ�sP�a��{q�<@\*�vA�< -w7��E�<�1�<0�:=R�] z�Чͼ[}���"���˼����!ͻw���f�;��Ἀ�o�eu#;�KԼ�_Ҽ�젼x*�<�����I���� O�����;f)��>�$<�$�Wﻉ�=��*�Y|�<9Y�2��<� ���g==�]�<�";v�k:����N=�C׻Z&<=�$�j�r���:�Bt�;_�?;��ü��������匈�x*�y�I=�8��J滯�r�鰦D���L�<��<��D<1�k;@\*���f��%���t<\�<�� �<���R��{�<� ļ!�h_�;Wdֻ���<�b��O�ϻc����Mջ;,Ճ=h�(<��=���;���S��<�B=W� �-x;�V��#遼��X����|�@=�e;���<�S�x���E�Ҽ�{|����;��ּx���'�8<.�&<����������܀<���;�8��������<�Y`��� � 첼/�׻�)8�d<���;����`o�E�A�=% s<����n̼gS���������ȍ.�o>e�6�E= -P<[�~�&j:� -�:s��;& �;�KT� -w��ͽV�% s= �K�-�<�;+=�l������cƀ�����Ĥ<:+ռΏ9:��b��<��}�l&ѻ�n�<���-x�<&�.���<'v�� -�Tx�tc������/����<�O���C׼�� �1,=I;n�3<F�9�_��ղ<�e<���|��H<"=+��qV�;3����x;Ӵ���q�>��g�=c9<�l�� 1=�9�:�e�3L��[���.�{�<�����{<��U��2��r�<�Q=k���h_�;�^�=]�;,��x��<��}ؼrK�<6�E=�����u[;�f��������WU��n�<G�;{M��8<>箼��Ǽ�u[�j����=�ܸ;f��R�<��,<�B:<�P��� -V��$�����;9Yr��f�����p׻�~�;$���< -�b;�G���=�5=`��:=�!;��9=�lۼ���6�.�"�;��Ӽ ��<�,�; ��<�����6t=����8�iG��=-�={�һ���<��<&nI�b��V�λ�0���n@< F=��<�H��K �ܡ<� �� �<�{�4�<0)���7����^M��ҹ:�c= -��� ~F;�i�=�H����,<���_�3=w�=;�g��ɣ�)y�7,�<��U�uV�ς���ǻ�+=�D�f��qR��Z�;�4)�閴<���=�U��/���-��A���ðZ�!�DQ�<� -<�P�;ٜ=<��9�(ܼ$Ԃ<�Z�U��<�4���f!�J��)��*��+�k� -��t9={��<�4E��%;�*�@����&<�U��&�;4�<�� -=Kx�<ώ�Ā"����&nI��Z�c G�ۉ�;��8=��s��<��ؼ]<!~;F2i�)a�J%#�$�<�&���;�=U�N���ֻ���=9O!=��<�4�;�c���v��i�;��C���:(��;�/C<�2=�_�;������н�9ς�8lŘ���!�"ɬ�ώ�<��=;�R�;)�I��T���=�� �!<R�;a�%< �F�{` ���9po;���<�� �<�T<�s=#W�;�-�;�g4=<�<���ScN�-qf��żpo:�&=i[ -���<��=�a��XS�N�ͻ��; -���<�*Gh:]}�;��:>�/;�Ɔ�J�;����������l� -���;i �;���8H�<:�˼�}�<����ݼ���;�_:����<�C���8�<�z�:S�R<յ�:S�<��=��༾ġ��J�<*�;<��8=ƣ<�Fq;k<��� ����<�+��� �뭘�˛ۼ{` <��s8�1r;r��<�a`���<}��-.=/����<ȍ��ڼ�=�<�3����9�<ʌ���&��Z�/���z����/C��}��H�;&g=:�Q��e�;�ߗ<��<�b�O�z�)�Y�ۼ\������<�ȃ��=�żF���< -�v=,�d��;�E��J�<0�N�'q�<�E=�j=���r�;����ŝ��˼̋�]�M�>��<RF��I���㻔L�=簲<�f=H=~����<�4�<��ݺ��/�#��=�D<���[��<8��<�f1�?��<��<��6;�K�<������r;�i���G�;�*�=,�k:�f{=�O�< ��?��;��1�u>3<�"=C��� -�;$��<,�T��)������� -�q�c<��o��^(�f�v<͕1=�H�<6s�����<�>��J<������<� �;Љ =\]���F�4�O;� �{E5����<�`�|������N�O��U,=�|�O��X$9����S��:ѝ:� 妼 `�<�"�<|�"���S��8 ����em�5�Ȼ��B��<�A���1Q<��<�P$=�$�;�"=��;�7̻a��:䝋=n���$�<�?�<ﬖ<�0J�?��� g< �<� �?����b��s�;����Xw��B꺏����A�<� ��ѓ;c�=g�ؼ)zļ~9���_<X�λ?1=�n:=�t�6.m�<>�Z<^��<oU���;�(�]5<�e�5�H<�և���f<� ;���p�: lo9�=߫�p6�<;��ة<� ������b���-���!=̋�;"��<�f�;��S<�����C¼�He<�f��%ۼG�<��t<�<� a=|�":d�:O�~<�4<ą���?ռ�<� @<e>���:W��+����.<;m�C��>�9r���C¹����sq��_����G��8S���;&쨼������� =���� =[����:Ȳ���]�<�J<2�<���;���;�q�O��;P8�x2�<�ܱ��?&=���;�(��C'�7�A��T�<�=G;���;��-< V��0񜼈�[�&]<��;�O�;Y�:O�=T�Ҽ�<�S���B�L�$ف��.k�C=ۢ��M�Z�����l.!��� =ޖ�<�Ac�O��B�L�ȃ��� -Zy��� <�4�h&�^��:L���z�^��� <�(;�"Ʒ�\dos=@@�=DP?���Z&�^x<�/<>8�����5+ɺI 5�C��8i<�7̼D��<��l��&�(h<���<�RƼ�=4s�j_����<]T@<�=�A���B��q=vXA=4s�W<=Ð/�)D)�痑=�{�� -�;ǎn;����n�<�4E<��-�|����?;=]�s�K<��ټ�ͼԽ�g���.�� -=$�==.ﳼ���n�ջ6O��4�G�`���e;�왼��;��������/��M�=��������q��bpA��}�� e=��9���v���a��D�<7�h<� ����؄��l�1�)<�9�;�;'<$u�:( S�b��<�5e<�<�(�; �=��c<�GP<�B���(=܂Ž�:�<&>=<��;f!��?;<��;�,ü -�=M t�Zj��c��.f>���o�a ��M�<E\�����E#<�B�<�y<�������1�)��Sy�8W�<�=�Ѽ��V<��C;a�_�)͞<�)�<�M��OS =���T� ;�)b<���;����8�><�p�;Eb*�����w���D<��;7��<��V��T=tb��'=.f��a��� �b6�1�)�0�ȼ qG�U}ʼ�;<�c�<]�ʻ1d}�'<����;MK = {=4G -<�dW�4G -=��:����3���!':�j�<9;�<\��:��m�L9���Q&�0��<���=�9�<��V�ڌ�<����`��`�<�*�;�,C��B/�#�Ҽ`�����0����;�]b=� <0�>;���'Ȼ�}�;���^�<��"��=�-��;�ƃ<��p��+�;��/��q�˼�»� -.���ּ@�=�"�<�pZ��Q�*�ro�<@.*�܂;^��.�:L•�vX��G�v��;Խ:�8W4�i�j=;��;�w��Yμ-������.f>���$;�F�;=eƖ�#�R�%� =o���t�<�8F;`��2��E=�4X< {���@�<'� =�t�8�� ��"� =�Gv��7�;���;�(�&�'��o� ;9;s�:M�;�BB9[^����u��<��W���=*=ܨ��M�;V���:�ا�����-�܂ż��=��"�Q��<��M<�L�:4s���;o�!���=.=��,0����7�Ӽ.�Kʼ9{ -<)��1����hX����;D��;Eb�����<�`�<ۈ����E��@����c&=�����ӹ�z�`<�ie�����/����<���;(���"<��:=.=����:ػy�<:���ǠY���Y�~A�<��8�y �<R�<�Ï<�GP�|�k��=�<��l���b<`�5����4�<���<�ʄ���w<�Ҭ��/$�a��@��� qG<+��<;�=o��;d~j�"���,���{�k �;^�<�ѼΓ�2vh<�*�;>� -<���缦�=�lF;V� =��N��`�<1d�<ǠY��#�;�(�� �<^����̼�2�<��n=�̱� ����< -B=�0=�w�<�=���qz=2���'S>�b����n!=�9���y�J�T�\4(=!D�6���L�;���;07�;�is�=��#[�;�� <��bI�o"�e� �� <|Lϼn�&<:��<ǬZ�qz<#EƼ��<�E`;D�(=�骼 lj<�у��=�T�<%Ϭ�Lĥ��(�<�0��B��������<�p��<;�Ż�Ik�<<����?ӻ0iٺ�I�<ª�<�Pg=�z <���<�B<���4�LA;<���;���<�ҷ����=|F�<�po=W,='��D�(=��K���=u7ۼ(�1�陰<� &�-�=5�<�� -���ݱ���/�A��yK��.�^����*� 1�;�I���=���<�y���oW:*Z�;�U�<�w)��w)<�C�;N��<+g �~S˼���;� ���;Ɂ ��]�<Ή���E`<0o�����\��<�1<��H;�AH�B�����b5�BO��|�<07 �&F����<�a�;9_��L�<5E�7�<�D<��Y�(����B������n�:��»����λ[r���e�;i��<&� -=U�@�`��;�|�[������<���7~M<�i�Yk���Z<�_�:��鼂���5?��O��;�q�^�<�x���ݾ�i���근���Þb;���+�z�[�<�Ø8��{���{<���;�<�P�:383�i�%<��<�����ռ��2�[�9{�<�eJ=�,<�e�<"�(<��k�;��A<�2:� <a8�'��=*Ƥ��m;��t��$<\�1�NѼk �,�k=�]o=�-＀ȓ�;��H�ӹf���Ƀx����M#j<k���# <"�(���;�'<��C����� �����N�<�����az<�j���}��[<��J�C�=��}=F��<�=�ɼ��:I����nn���M�=�ظ<]���a�"<�<=�2�����<��<�<���_�H;Ug�f��uh=���젩<�o�S�^�0<�[S<�JԼ��M ���<�����<��<4���S�y�#<�6X��ʶ:���<�9=�A�<��J=D;���<���SV�Q�����<�#<#����j��N�<%��<����p*<�1z�ؼ&�2=�("�1߻v���Tl��{����=qK'=�?��k �3��sL���;��P��ː;SQμI�<u�<Ьü1F��.<�u�<`��<���;��=�9��5���;�?����}��<��@<����1ߺ>k=_�<=��Z=��=twW�I�;8c[�O��;�;Zo��Gջ�$�̻�ɼtr�<g+�--�VM�;{�ӼTL5<��Ż�1�<�H�n=���<�XV��� =!w<S�;�~�<��ŻA��<��M<��3;�V�� ��Z�c<25���~߼k8������9=,�<�1��[��<<�ټ��<�$< ���<�����;�<<�ٻ��<ї���!λf嬼��\�ҭ<�JT��;�<�IF<�4<=X��<�T˼ͥ�;� ��������<ϱ�<���x���2 -!=���;A��9y�`�;� ��� =,ף���==�1=P/P<.�<%�伞�6�}�R�͠�;��=�������:�O��,�/<��u��P��ϡ��-��<��<�7;O ��v�=���<�m=~��&��<8h��]�� �p<��G�=p�<�4:hݼ���1��NQ=|��<�t��q�;Y�K��.��c.=�Q���ѼZ��9���<�:c�o?A�q@�<Ƀ����4���[��<��5��}Q=s\��P/м�;=�&��3�VB���v��a�"<��r�U�UG<��i<-�;;�6�<�O�3��:/��=%�[z�<�z�:30޼΋������������ ��1߼Il<��;"�~�=���9^B��Á����0$���P{�]�<� -�~���Z��x���ؼeϔ:ї��0���1z=�I:VR(��S����˹l���a����-=�F ��99=.�w���7=x��=hE�] ż,�>��b�=�IM= ^�.�w�Y�h=��%W=��]:�7 ;^~<�IM=l��<�t����M��_5��Z�<|�;0X�<�Z����;��<��%�9_���4"�9_)�Bi�����<[��D8p�-6<^�8r����;a��<#�;� -��v���U;��p�G�L=~S{�&|���;<¡�b�Z���+<�P�ԃ�<] żɪ<��<��D��3=.���_��>�+;�7�=�!�<�i�<�����;O<�G��m�:�n��;iv/��dL�iQ˼����/���;=�;=��=X���������u����;�'P�ԫ���15��R1Ћ�;���'s<�Q�ѻ݊N=x���E�<S��e�m����S= ͒;����Z=R<&/μw���8|<�b"=���UIA�u<�-*��i�� ��|j��ؕ����-�Q�k���zT��8�� ؉�`GlV�2qg��C<(pϼf;�!��Ķ�<�p�<񺩻�N��H�r<{�ʧ(<��N���.������ؼpO<7(��Iͼ����+ִ��_��x$��U���y!�LBϼ���{�<*1�-��b���.¼ùf�pϻY�h�c�m:�̌;��T��h;�n1�c��<�<��*<��;�� ּ=r��J��=��o;D���>��l��G =&,�(pO<')t���<=�$��\7;=�G<�0�<��J��<������;���ʼ���<ۓ������<���<�d̼|��;iv���^#=x$������+�� ��3߻o)<��Y�^V =��<���}�ͽk����B���L4�2��� e<$��;lJ;R��<ۖ������<�F;�n��:� ���� R<�=��6�/3ӻ�G�4��<�EH��wM��-*=@"�<��)�y��LB�<ͽ뻸�����"��E=݊N<�r��\�����̼��X|�.=�D��/�=#1G����������눼�0D�/��+;y>�����G�<�O9�� ;]0����n����<Ѝ �Ȍ�Ie���=��7߰=� =e��~43=D�H=m2V<���rb�!x;�<�Ԡûr�d �<M�;�d�<���;�~95���/�;̟7��;���a�<�C��~���q̼v�ֻ��'~�����ޔ�<4�D�H=��B9#��<+t꺘�H@�<���<�t�=��(�@:�FE�=]��� S<ȱN=��s�9��_��H�ԼAӂ����og3=����� �P^&��� -=!�/=~QK����.,�X>=BW1=�g���X��{=L�T=��)=R2<]�I�;+O0��dn��4q�?��<'ݘ<'D�;��M=�#���;�0A=M�k�-�;a�<�.�����<��n;��|�~�<+O�<����������<��7�i�=Vd���v�<�^,��C�UTl=T��<�"=Do1;���<Ճf�V�=������;��M����P�Լ�t���>+;+l ����<��4�������<M=BW1�es�;��W�#N�<�������p�<���Y�ɼk��-<�̂�.�U�༠#�~�b��e�(=��<���:��B<��K�u�����=~�ּ��=�<���R�2;�D�<���! �r}j�4�|=��A��=��(��FL=J}<,�`�qJμ\ -Z=!z9���0�i��;f��<:8D<� �l�u:��<\ -Z;�=G=��<=yRj<3=>�Z�Q������5�>:�c��+g��^�=�罙X��=��Yּ��>��<�B����;vz�<Å����E�5�k�S�!�}ɒ��Z����o�Z<ϱ=�a��[;��G==\�9��n;�G)�� !�����<��<���m��<��<=��<�r�<'#��f���T<����<��5����$=��;�y軥^��܅�>��"S��[��g'���K;l���^u��X���M;�r�;��G<,�`���G<^"8=�D=��< :�;)O9�M��<����:�,�:�� ���<.�><������E��;}v7��C� ��=x? ���);�K�w3�<�=��c�^I�/���h��R��;ܼ5��

��G<���<3q�;���<�"��]���B�<�O<�J��K�=�J<��;9����|?�;i,*<�V<�U�;W:C�hfw<�1�Ư:�F=+ޤ<�5�< �O���j�-˝�������Z�;��=v��<� -H�v]��^�<�/x=½�=�L��G�n��O��u63�t����l<ϓ/�T䝽 =�:V��� ԛ�� -=�ZG���l98���<�<�~��#K4;�L�<�����#��t����=� 7�<�:�;���<�i<g<$� �3/�;r� ��=�K�;��c<.U=�J�z;O�R=/���S=O����Anj=�z\=�Ӭ��BҺ_�ͼ�J<����ʻ�*������ �<"�<(<��������;���JE�e1�;P -���i���;j:;��R�><&z=. �B�ü�BҼ���:�;j<1B6���z<��<�����=��b;K��5^:旼���<���=�<�4�= -P|�ذ�<��Z+�|$d<����4 ;�s��X1<����p7�i,�;�<�`m�7���(����+<�ѻ�����;�.@<���Y�<\5���I�H�.=��ڻ��_��`�;�{Ҽ�D0=����� -a=��?�Ğ><�2)����W���!;�o�����<��a:0Ȼ�yW%�d����r���J����<p�<��[�!�=�t{=}v���� ;�"�k�ĥ<�7[�$����$;��"��ҏ<��.=�ܪ�����2)=����f=2��<� �Ğ>;أ=��y<]t�f��<��=��ۼ1��;�ŭ;Щ <�ƒ��V?��ܪ�T�Ż -�3<#�o��&�/��<Hg�<0n� s溳��\�p��+R:�Ɔ�-��tΙ<����8�ػ(�n<�S=z��H� =0�;�*=dگ<�Ї<���:aw�8��n<8h��5=�x�<,���ȁ�Ȩ���=�S�~��f�v 2=+��;�}��o�w<6����%T�4^���?;�M��S���|<���< ��;�&�<�9���\=O�|�$�*<;Ę;�bZ�ݼNr;�|�;��N<�U�G�Q�6&�<�h��f9�4��a�9��<0H��;�W�:�L��p��G;���օ����;��F�o��<<� �� 5<�8�<��;�&���G�.�K����H��<;��;r�m<- G=ߋ=xK=�V޺x����$;I4;��<��C?< #s;�o/:*"*���;���d���;I�}� -�i��3e<؜6�)��<��<�c�;�)�<�4����<���;Yj�=��<��g<���@u�<������N��;0�� ���;k��z�<���;4^�<�V�ۈ<�6=6���w*#;�C�z v<�x�8xD�;�J���6�n�P���x��N=C��<��=a~����<�S���S�g69=lG�;�E�<���;X=1��<�/�����t[�<�j<�=滧 ��7@T�E�<��:�����<�z��"<���T�<�m4����;lG��(=t�=h��<�݉=�/6:F��y��������N��#=�G�;���.=l6��Z<T�:di��)'�;:a����س���)żV��<�W<�y�<��ؼ�=�a�<�@�RJ%�8�=u�<<��<[E��/� -���_�0����[<��=�$�(��<��I�� ��=gP��bG<��<0����o�g�9G����c/�`��Y�`����D�;�Q��˻u�»'��<�����kD�|���5;{�z<ت=���k3*��k�s<]^��]c:K��<���<��j=�=h{�% �:�V�;_�:٘�Jq��P�<�Ǻ� �ˆu�f�:� -���0� -�n�:��K ��k!�;l��:}9<�Ms�ӳ�<���;������<� �;=�<�ü��ͷ%�:�>S=��j�<T�=z�<7���1�;^��Z{�(�\���8�����1=�0<�����ۺ���<k��(��[ޫ<0�=gм�Ӈ�HSܼC�/���=��|�g����ҟ�Ta���ܻӪ/=���9|=� ��X�ݺ9��<���H\Y��-<+�=��[<��,�+�)��L���<�d�<@�#���O�v��<�JR���<�y�=���<�p���ϼ��s<�ӈ;���I �<�g�֛q��z<,�Uu�����;$h�!0<���<ͨT�̦�<��0�I��` <��ổK�<�r<��½p�ü�ԋ;�"=�j)<��ٺ��"�Sz�ۑռ� ߼�;(��Vt<�N��a(���Y;�u˼�d:LLV��<1zT��vJ�Yr>:úE�=ⱼ{yҼYr><_�<˭b��H�be[;�Y|�@ݣ=w�<<1�9>&n<�"�<�C�<`j黍���N��6�Q�<�=� �<m/��HL�����f�9=16=MƤ���Q����U���ּ]+;����}R�;�m��}�� }�<����Lg���u�<i$=}tļ-}����A��!��;�<��;xN��p:�Q�<��Ӻ͆6����<>�� �o�u�A����2���s<���< V0�)�7�+�)�py:!R%���<�d�<��ü�=�ţ��$�<)����_&�<�?��q g�����=�=-��<ꐑ;J��; c�M�<^h�;s���sB<��W�JJ��z<�G<>&�N�sY�rd�;q��\����;� kcU=�K��"��$M��p��;�� � ;0��;�ϼ��A�6Y=�»�9��_����1��"� v<s@: �C<�0��w�<���Y�7ꆼ=�����:0�I�����!����z5�=\�l=K*8<�<�ɭ<,����<�f�<'�,<��_�=��<� #<��=% ��f[?�rd� ���M�4��ǻ9�M;�G����<�?��q<;�<�<"�Ⱥ�G<=��<�o7����@<)�d#�;M�<�,?�MƤ�n��f�<���}� �+����< ���;�ּ�Ӊ�V� -�!с&n����p����=-;�2�;b!�<�G�9<�=���m���2:��!��Ӊ<�]�<�2��^��<��(��7��E���{��J�K�1z�<m/�<��e��� =� :0�ɼs�;f[?�8r��ݥ���=�ڐ�AW+��}�vM<��ؼB 6=�������>;L�<��#=&����4���<�S ��C<�\���+';����qN=�h�#�+=|>V��8`<*g`��g7=m�-<��;��4��������V�m:�'U<�^�;��b�}5�۰Y;m�8���c��������s,ͺ�<�;1���Ҟ�<�(=���<�r��k0�[�+��_����8;N�#�m=������<�j��܎�U=X;{�˼9S2��Ƌ<��=ly��Hļg�߼s���������{��;��;q�'<�}<�U~;:�G<~C%;�+�����=J��<��2<]*��m�-=���:�?ԼpN�<��C<���;�G�<|�`��Υ�ܙ�<�B=�A(��6���=��= �<.<ڼWB������>�A��=�6;��v�,=�Q]�����(��77�E�p��.�;����O�<�|c���<��L<�)��7� V<�HD�ꞻ� =%�� ���U.�A=o����~��8�x��{<�x�A�%���T=I���� 3���[V=�)z���޼�� ��W�;]*:ҞP<߅Ӽ~�*=�� -=U=�9"L�����'���P��<^O�<�%Y<��κ"ߺ_n<�����=�K�9<��u����� �A��ZM������f8<��<���;$vF���<+^�(=X��$�i���<����t�K\,�� ==���7Ħ<-ޑ��#�;��;P�1<����O�:���:�R �qʼb����M�<�A=��<]M=rp�<�#����<���<^Tۻ �%=P��<'�0=W���1�+�l"<<�&=H�o=��<䏕�����M�nMQ��%<��#��<9�)k�a�������&=X^�;�{��"�+�m�=�{��Z����;'G����)��)����:��(=kz��f����@?<����n�;.Z��֕�;��w�<^�����m��;�=�c<�ù�l"<_xA��ٞ<�@�;;�E=W=I��<<����?x��׼�H^�}N������ ��:bo<�����8(<֕ؼ1ի��:;�$�<�՘;G��jV7<�<�l = �x -e���}��D;=/=�t(<�n =���N��z�<<�l;]M=-b�<���rf<�T�rf��<9bo<`����s�<�8��=BJ�yi��@=N��;u��<ߦ;C�;3,�n!L;aD<N�<���<��M��CC�����<�%R<�\� p5�$W_��V$�ڌ� �T<{�=m)�<�[�;��9���\��_X� �ٺ|G�< 黫:�<��2�� -һ��<����4��<�m <�c��gw<\��*FZ;t�<='G!��ϼ)�n<9�߼�.�< -�c�kҧ�0�E�� �=��]�M��-���Ա�4/��kaf9�=T<�N=�, ��[}=qYb�W:=�'��v=�{���#E1<����|z=�'c;uV=A"=� ּ�/�;��u��P= ��v�E�<�������g<4WG<}IZ<��=����c�(�b󇽯Y|<�S� ;��H=]s�=��=���0��6����a��ܼ?�<���;=��<�<��Ƚh��+cM<�r����ۼT����D�<�J����k;{�����=Ė�<}IZ�sWa=}I�;q�<Gٻ~�8;g�G9�|3���g��<��<�z�<�����-<��9=�%�x��<��L��:E$<0��0����q�=O�x���'<��=��׼��<�=n< ��<(��!G��&� �ۼ���� .=' 9�l�e��EA<<�^<�)�;'?.=[%�;L�:u+>�j�$����%��<�T=ei�:��:<�r�/�J:*����<�]���Z��� -=/5)�[<��ˍ����<+� -��l+=!oӼ�ѐ<�7Q�e�����λ����ʼ�,���x��Q�U��<�!F<#:T��<�L;p �<�|���,���Sy<��;��d=�9Ҽ����,�L=�稼Y�л#mR������;��1<��ۼ�E�~��</��͛��2���d�<�K�:�B�<��:kh���|��}Z;�ѝ��<�]<���:��<���<�Ap��`�;��.�Y��<���J;�;�|@�� ���j� �x;޼<Q�<r�����ʛ�^�o� -=�9<�r�;���@ ;b{��D�x�=��<�������k�7��<���<�7�=��-�A<���<�谼:ƌ;[� ='�6��I! ���W�����G��=�)�<.����g���ۻ�F��d����1ܻ/��=k�c[+�_���R"=s�4<λ@b��w��v�t=�k=;vq=Ў&��;�A˼�)�<꼡�-��hR<�-��Ʃ)�d4��8�<˜�<��� F�;Q�M<��=�d$��b��|���J��DZC��R"=衐��2�;h� <�<~�ܼ:��L���� �<� E<�X��Ձ:��/��jOj<�f�=I�$�c[�;��~kU=��<����i:=5�2<��=e�=X{D=�"]<� ػȥ�=�m��%<�=����0��GQ�V��<��:�V�<^�<�g<0>X=�"�<��<���:(Up��AK= Fq=�5 �������<�u>��<�;;���3؎<�_<M�]��;�阼����"�:.Cn��'����[��|$<�"ݻ\l�;+��<��=G����F<�Sͻ)��<�#�;�:�<�=%��P�V��w|��:� ��]y9�8�'�W)Ӽm@(<�l��6�7� X;�&;���< � =C�`��k�<(��v*�<�F���j�eϻ�v�Ӌ�<-�����l��N�;y�H�8y1�˜=�,��P<�o��;=��;�L��n;���n����k��B3<0>X�P��<��< `��ɏ��{����<��n<�<���<�|�<�7���w�;���<�"�<�� -=C��:��;�# -��d��;^Q=m�/��%���-:i�q: � ��Ĭ�7x�;�T�<��=eO�D�J<��.�Ҋ�<(O/<�5O:��@����Xu=kJT�7~Ǽ���]��<��=��TlE<+F.����<}�<���f���볼O�r<����"b�:l�/�<��<(��<��;'N�>�; �><,�<~��9o<�<�!;/=�<\m-�(�a�w�^9%��JG��\l�<@b��^�;�|g;� ��>H�%�!<� E<���"�;�; -��<�Z��Z;;�o{��z=��p;�����c�<��lE<.�<Ť<��Y<�%����ۼ��:�yd�Sڡ<צ��B3;r�����{<�v��0<{� =&S/:?2�<��I:h�8��`z���<=y�P�P���φ����=��h��Ń<zr<)��<�-��|�*<����+{�;+�b�Q����%;��%=�>=�h]<���;���:�������PG���I�<�'�x Ǽ�d=I�-;Y�K=i��H�:�2ڙ�a�R=B�<��!=u�<(����*��'��=f:ǻ��(��;���;�l<�R��sEb=u�c�S�����Լ�L-9�L�;����<3���xR;������<�]B�nj��(q�<�z;����=N�� ��;po_<� -:h?)��t����;}a˼f�V��� -=7έ�gn=b����ݺ<��( �;�;_��x�<��=!��/<O��۹;�=��}�;e�պ.����v�<�4<Ӽ���<�/4=�$ػ����h� ��=�U���O�?!=K <�V<ڗ�9�U�<�'����P����<�:����<�Q=�߃<���:D��(����O���; =�5�:�o���a �ʶ�=���O=t�»���<�J��L��9p�<�N�<��<2' -P�O`���08�Z���h<�=�����<�<��ռ׼��'= ��<D��2-<_�p��:ϻQ%�H����+1=q9�<@D�#�=�������1=��<���m �7;��`��_�H+F:�=儫�=�t��aۼI��<��;J� -�`0�T8_=�ܼ��=�X�������<� �:�a�:u0��"�ͻ����`��c��<�\��0� <;e~��<��������#�ռ�Fƻ�n_�/��<��A���Y�shr���:�<�z � "<�:;!&�J� -���-=*E��#�u<p=a=���5�<�=I�i���<��(<�$=�;�5����< ti���q�x�:#�<�$Y=��Z=�n�;������f=Jن����<�:�<8Д�ܞ��� �ČO<;�ȼcż;�Ľ�� �d��;���Z���ͤ�-���<�F1=�?����=ў < �Ǽ��9����H�e���5���K<���J�����=� �<��O��FƼ�߲;'Ԧ;n����i<��D�1&�<�>��� =�Jػ�`x=��H<�뾼.�j�� -<�}�߼]���� -�t���2�5�G=&'=L��;��z<#��<�-6�VRg<�҄�J�q���<|9<�IJ��8�����v�_ٰ<�-�cd!=�5�}��?=�{9�r[n�߈R�J���(k��m����=;�:P�ʼc�<���<�k��G);tuv�S+[;���� ��B��;f��;#��c�d��j#�(+�;Gh��J�m<�r�: ˟<=-=f� =��R=h�9;��"<=}p���<�λH�e<��<���0���w����;�w�l���8Д8��� ��s=B�%��d��.��<*x<ۑ����<�T�<�9l=G>=� �9<ܼt���������9�0 �<�6���;1Ƿ�x;��ڼ�X��T�;��XT=H�e;H+F����L��,S;V_���<����i��9I`���ּ�$/<�L�<��Ǽ؎:K�����<ČO<,�b;���n���\�<��Ի��<�ɧ<�ŀ�&Q��5=ͼ8�tuv:%c>�k=*���=�i��oq�<�2;� -f��0e< "��*�<3ջ�;Y�����0<m���v�;a�<�Jm����e~)�)τ�:^u�;5���g���S���ׯ� =�v<=��l��~}<�i�<*�����?E�8�<��\[ļ���;�j����!l�:��-y�;"y��a�\�tԼZ���5�85�h ���(����s ���,�:Q[�;QZL�x�#"�F�];��G��K����Z���;�:;;N<�ސ��>��@�{,����t`=I�&=���y�<���K�<}1�~S <~�g<)�<[��=�r���� �·�;3��<�Ux<>>ٻg*=w�'=�vۼ�Qa���j=��Z<9y\��a�=ȶ ���e��<����g�=\�C;�6��J�<������:���k�;� ��qY=��w�b��<4������ -�������g<�s<�v�<�0����ȼ�2?�N0����&�-f�������-�� �L�=k .��<�*�<�7�<�;�o#���{�(����o<7K;��:� ڼ�����_|�S��< Q�<.�������BI3�����x�<��.Lt���;�E�<�c><���ű^����<g*��b���|<������&=A�{�M�Y���t:�qQ��eJ޼,�Ѽ����B=I=;'�=�f�=�i�<<~�=��< k��C=z���h�ӻF4���:s�M=��H<�Ы�¼=�Ǽ���\t��S��BO�<��F�]�<գC=�CF=2�;N5��٤����]�;���vB�N����و��<5hU:F��:ͧ:<�����Y���"��v;�\л#�ͼ[��UXy;�|�<#3 -<�qٻi�!:�9"�����B�ђ<���:��&<�.ȼ�ֺL�1��b=V�ݺ, ���S<|^Q;�N��P��!:N������L?;F�<��;qK�'���Z7!�,��<��ü5b(<`ǼX ���ϕ;K -<�f��B���L߼2Wλ�y�4��<���<���:'z<��<�E'����𢸼yMJ;䓺��=u��;���p��n�;��_��3�<6��<����e;4������l=��㼯��<�o�����<\tZ��剼|ۺ���~�T�:<��<�W�<3+�<��=ۚ<g�< E=�e4=����6� |��� Żf��<���;I��ű�:�=�vۼ�;�<6�9<�� =�;� ��c�<�0��J�R� �='�<��2�t�^:��n�`��< �>ټt�9yܼ�D�<���k,<\n-�>�¼m�}<��x�� �<���UXy��[��k�9� n<��-�� -�7���������R��]��|X$��k<� <�,g����#N��$�;?��;�L�<+;��o5��;��a;6� �k[<ݙ�� ��I�)��<c����=%vp�~޼yG��({��J���,2���H�M�Y<��<��C��;�<�@�;�t��JE<: Kɼ�b���$;������"���ͼ�8l<·b;�r�;��9}���6�f:��=I�*�� ��I�<��N;[�<�u0<��h;���蠂��,g�� ��A�;��`���eD��k[��0��^�����L��s� �Z:����+;�<���<��@��|��S��c3���|^Ѽ�r�<�����:��<�@<)�w�� ==�t;<��Ik�<�ǒ�m���T�;�yG;��|��� �t�9b�=��λ� n��Ƽ����Dz��{��P�O���;2T�#�ͼ�2�<���;�L�;2� -������E'='*�<͡ ����r;��&=��<��~����d�<�y��Z�<�Y�tv@�ԧ{=���;�D��e�V=��=��)=S�::�F�r +={+ =�"�}=�"��]�\W<`c�Sh�=-��H\=;�<��:\<��<�TJo;�) =H�#��?9�~�<��J��m�����(V�Ġ\���=����+m��׊��Q&���z��g�O�� ��='��;eDr=�ȼ�S4;�n��[�<�|}<��.<0�ﻛ��<�%߼л�9Su�<��D��t-�U�=`�< -��;�<���4�� �<��;E�ɼD��G߼�B_;��N���a����w�<]um���<�v�� =} z=z}��La�<ET�LT�C)<��<: ���t<&=��<�i��4�b<!&=���h`<��0����<��<ѐ�\��=D�� ��I>:��]� -�fض�A��;�2�9�1=��=]=h'��Ԯ;8�t�u -� ��u=i�Ȼ�ǒ<>� <����CPl=(c6<ǝ���%мyu�X�E���w� ⻻��;�(8H��;u -���H�<�����Y�;LT�����ۻg�� -Լ\��<%Y�=ۻg�E��<�Ê�x;O=�#���o���b����l:M�;R�u=H�#<]h�;�1���?<�"=�5C��,���|}<���:s�߼�����<�=�Z�פջ�W��?�;+`�_�.<UG<7��~�3�-�V�L<�8�0�W:-=9jջ��û�|}�s�_<񢂼��<�fM<7ܼ��;� =� r�H��<�#��G� -���y�g<ח��0��(c�;.w"<�P�<�_���w�V���'T����o���ٻ��0��/�� A�<�u�G�&�3�I<8�<�@,���XO<7@��e�;;^�l�"<��%L$�ͤ=4��< -l -;�< -�1���俑9-�]������<�8�5:�u޻R�!&=��ʼ �p;�B߼g�O<ͤ�������I>� -�<�Y1�����u!��2�<�1:���&<���w�`e+��9�����ܠ�A�;-�A��F�;9P<��z:s� ��) ��鼼b���;rֺ[�������<�ˋ:ԧ�;�]*�ʚ�<�}�ĭx�ql�;Z7��{�<r��,�<���<4�b�K�����l�9Y�^<���;kK¼� �<� ����Y��2���-�:�m�<��<�_��D�ʧ�;������� N��|��,�<��c<�('�FZ��2è<��%=i�d��s � ȃ��9�<��ּ� �5�WT�<���is<�,~��,~�9P�<�Z=s��;л�<��(=���;��2������<�\���<7�:&Y<Ŭ�� <��<�pû� �:b�ܸ���;��=��!�W-����<�l�<�c�<���<���;u!���.<��������=��<*��<.�Z<������=Ԅ�;��)��tY<�$I�����>�|Q��:=i�m=[AJ���@=(�u]<'h�9ce� =+NV<�v��n�<'Q�;:>�<���<�����=&f;��+<�� �F1!=��X�K6�<.4_;�]� �½ �p��2h=3�<�ܵ�V%=�J�Y�ż(�<�8<�*;WZ="����;Y~���:�d�|Q<f<ʂ�ԓ�;�¾��|0�墠=M��; �/�ٯ`�1�J���-<��X<�4��%�;���𑅼A���/u�<����.���l;=���|����ma=��; -���K�׼P�}<JǺB��;T8n;3[�� �<����ծ:<� �<,is�J޺<�;�HB=��2=��X<�B=x�9;��������7s��EHc�W�=�������0��<�)~�w?2�QR�<���Np7�B��<#;�Bϻ�ּ4�S<�H�<�6i���=ps�|Ѽ�L�;�ð�Û\�5�;bJ�<ƾ�|�;��;�=��<�;;�;��<ʤ8=�;�5z��~_�<�<���<����<�&�<1��;T�<�&��Dj�� ��<�켊���a{< ���e"����R<�;#*�<8'����;n޼���!��!�X������l<{%��� =���>�A�#*]<�pJ<�=��X���ټ�1�<��*�h�3��5�ٔ�;�V<�����O<.4�<�5�<���_'S�<�#=��M9u :��λ� ��_��{ -������ =��;�2Z��b�5�� -�<�1=�%�*߬�m<%�=9 �<𑅼K�.<c+�Yv^<��Y;�<\:��{����0g<'唼~��<��{�{�+<6���?D�p���0H˼�{u�^����9Q��<���;Շ�<]ʊ<w ����<�� <�bU�c�캍lѼ2���j�<�d�<���<�,�3=�朝�G���h�7��B�O���}_���&=���h�<�;)��<��<9�� �=I��<}n��|��K$ڼ�gS= ��;�������;��G�ם�O� K�<���:�<�7��]B�<Ȫ�<�� �O\<販�k��I��:�;Y�E����<�9=J���g�;u�>�T��<Ҟ��$�n�<�&�<��;����7�#�e���<��V< ���h��R}�:R��v<��9���Z<�>O<���3���<WZ���<�/ ;����񦮼ɵ�9�Ҽ����<&���\=mY$��W�r�¼��/< G��qd��q�<�����tx<��=���<�E�<� �<=�����Ax;���<1�<=����Cb<ݨ=.�v=�+�m�=�I =�o=Q/�;]�,<��r;���;<�<9�k=��B�\��<��=`9�<'�����<�n��s��2=�#= �!;�2���j��w�f� -m1==1=���,_�<��U��������X������+l���u��{���0=S�n�-���5���XP9  =�i���F�F��<۸� �<(�;� �<�X�<Կ=T_<”+���=���g�X �<��z�'TƻT� =ݳ��� �<�]����� ����;�J�;�^��;�;=��t;(���� �����T�4�;�%/<�� -��+����ΩB��[���}*9DF�9.u#��]��ݳ<\�W��I;�!�>��;֒�<����&�<��V<�;����<\| �ݼ�7�� e���e�* �<�M��T���T(=� -=��=qi�=E.�=���<��;r(���M��x�Q��w-;��+=f����kü�Ǥ<�d=�Ė='�f�x�)�S[�<�58�� h���伟��(JV��hF�: ����=�~=�=O9 �߂�<"?�<�"�;_�D��'=V�;L�����<��ǻ��޼��n��<�c�<�j!����<߂o��`���f��<��=��;c��<������.�k����<� <���;zߓ<�.�:��2��#2�EA==Q���E<�kü�ʼ��ͼ�Y���޿�1-=gIZ<�=z �:������eȻρ꼭�>�{�6<=76��}K<�@�;j� ��E�k}�<��<ԩ��м";�Kiɻ�=��f�<�м��*���!<:��<" B�S�<����0�<2�l=o>�,>�<ӏ��~��!��8��Y��<ǔ=�I�<��< �<`��<��;T�=2�J� �&����I���'<[�/����:����F<7C�F�ؼ�6��3��3=@Z<)�;�w�9�<@mh=Kiɼg�b�)Ŀ<"�@��<�'�;* -�<�g�;��=f�=6��<�;-�N��<�|<{�p<�=��*���Ǽf�=�� ���f�9�0��@mh�He�<�E� �'�����?�_����Θ<�'m<����Θ��w�<�>ӻ綹���~:C�༱D�KiI=�hл�Z�X|�U;� j���� T�� -ݸ�d��< �;v�=�e� 1=��`�؄���S��;��<5�»8����� -�]�=Ul�<���I�o�3=!B��W*=�\���>�;+<Zϼ��繪쁼?��;��U� k�1�<)9l�E�";����=���9���!��9�k�:Xg�;��� -=a�<�B���F�<��[=�F<=} �q�@=�$� �#�r<+�;'�ǻ� �<�7W��`=�u�<��< -^.��[��,~<�,�:�������ƣ;�$�[Ҽ�(߻� Z�Ul9�=~�F<"<���<�4*�� �;a_ ��Θ<��<�w��c��������<7=����G�ü�f���|��n< �]:�z=�!���p�;�1M�xEV�`�伋7�<�ƣ�s��;�Z���S���K8� -�r�����o�<���;��;��@=���1�<" ¼��P�i�ͼ�䌼���;���<6sr�\b%�䀇�:��;��<#���!B�<�����e���𠼷`�<�*J��(=�vϼ�-�<���9���!׼��ϻd; �];��8;iW��]d������� �e���a�:,G ���<����D�K<�~���)<&ɯ��!�S��v'�6�-��hP�t��<13����;L�>=l��;5�B�X���e�Ί����j��:l�żR�R- ��S-��ƺ3<�,�<)(�^�<� �<���F1���~;:�=;M�<>k��^ �;�D<���4�=�vO<'�G;�0���p�;q�@<��z�Nm��U�a�*��x��=h�$=���;�Im=6�%��46;��w=�3<m_<#m��" -=V�|����=���� ui=43=JK��J[�;��=�z6�ě½��=r�`l�<*u��-M<��<�12;��#<0�ʺ�L���y�Q�7����$�B<�^�U���=k!���z6���:�1�;����㼍�O=�7:<�o ���9�h��<�,,=���:�7��U�;&���=�;tߢ�� -�Ӗ��[!��;e߿<�9�<�}�;�.=T �<��ڼ�#!=�T���7=o=״ -�^��<2hY��� =8���:i��ZӰ���<�=�߼=0�^������D�<���+ض<1 -���޼=(��;g�n��㊼t�S<H���Ğ�Ul$��L�:O? �1�j�F�ȼ󖼼}��;���=9�ür�<��&<̎l�=k ۼ����#�;�i������O���I��ps�4�<۸�=H�׼6�%��i[��<�D=�<�t�s=�ٛ�+K�;���<�����ƃ�J`�<��^<�8=��=�����ټO�A�^O�¼���<=y=h =&�¼aNs�v���F��;]���ٸ�l�z=/�;<�@(�۸�ϻ���o<��S���.=��?���9��/<� -�9��!<Ć�;���]�f���t����12�)'���H��/�;�i��&{����~:�;�<=S������<�*����)����na���!��j<����<&�<�=,�����<�~�;�c<����ܞ��!�<�����<�&=��^�@�ͼ�k�< z�<�j<%#�:m�i;s�����;����<����";�ݽ;�^�;[!X��*�qS<���O���BX ;�b<�s<�$?�6\��+���4p<&�<*���<�=���<�ȸ(Ā�o����]��z �V�5�Q`ؼ�\T�np�|�=����f��;�ͻ �$<���u�`:�I ��=<��ԼsB�;/u�<��7;[�k;��K��\��H��<�b ���=� �s����=̨ <��=@.���K=9�Q���\���\<�s�;�������F��� p�@�Y<맊;�Ž;�fE=k���Ѽ'L� �q:���Hm;d��$P��:�3={�Z;�}��L�;#���Y�2;�/V�3�+�M?M�X&=�vW<��;Xg`�š;���;%�=��k�� <|ݼ����gl�4�=���;2^;;�}_�t?;T��:�@=�\ԼV���0��;q����悼�M(���=Ȕ<0�Z<��#=�4A� ���;=�͵�V�ü�n����7y<�o;����?��mv��;�-��֕�ώ=f4�<��6�7�b�< �V�ü�a����[����˱e=�6ü��<'6(;,�O����<��ջ�w;�<�Z�<� �;�` <�$��n�X=��:!�x;l�<���;���<����:F8E<ߋ\h�<0r�;��C��c\=�xt=W�%��4������]��<.Լ� �� =�6��Ԉ<�"|��%e=g��7y;r� �ڶ��;�j=h[m<��K�~jɼ���1螽h�<6��;�UL=ӯ��)��<���;������(n�z �?1��š��Lƒ��Y^=�@4<�`�4Jt=�#�<�(μ?1�;�G�����;e� ��k<�<���$�<�\��%M =�6C�����J��<»=cN)�)��<�*�:Q�;��`�����R�:K -�;� �\��q�U;Hm����<�}_��������:V�C=�]��ż9��:�vW����<9�ѼQ�f��}_���<���{�Z<�%e<� :�����<�a -���<�7�<맊�꼖��䠂<�%�;IB<�{��8��KL<�Ջ�ԾI�n0��~c������Vļ9;��@ƶ�;C�K�qD;B��<�̼��E�UM=�!���f�83�<ф{����<��w;���; <�]<�׼n5W����<�AE<Ũ&��t�<8+U=A��<�� ���%+�e����H=J���u���xZ<��Ề�0�(�<�<�f<d��E"=Թ����. ��ė����!μT]<|>㺠��<���<��<*_��w�<�չ<����:#��<KQ<7��s� ��(�#�����1��.�;9 ���;[�=>� =��ػ{=#�N<��T��#�qo%=� -�<��w<�8;M��<�&�<�S;J�=���;��k=��<(���K�:�� =�C�<�'����<����v<�L�<%��ӱ�;�z��C� = ̄�x�=�4�<��i<c <�����X=5�:X�쇆� �2���R<1�+=��-���=(�J���T�ߐ@�*_�7�<Ƶ=����<,O�� ����r�\ۇ�l*��(�<��a<�q�;Ii=!Ӽ� :;�|弉(��1� m�;�̭�dn�+<��������= -�4<�虼Aֆ��锼��;ࠐ<�ǧ��Ջ��p�� �� -ĜI<~h=6_�=L�<�]>���Ƽ�E�,�<&�k��(��<_ƺ�^�����sM= :h�<_"�<��<�A2;���<z:��!:e@�;�#�O�Լ�?|:�#�?��;h����r�� 1�B�H�󃉼o-�o-�<���O�;=�s"���h<��A<�p��� =ĢԼ���u��<�I�� �S;ʧ�k�R=e4�/�>=��4�L�n����;��<;�D��r�b1<�=��`R�� -M�~xm���<�����X<��߼�&�;Y���A]� ���� ݼ ����u=�ê<��@�<���<�?|�)Ӹ�<}<���u˄��.��ho\�\���:ګ�<<�Rw;IyF<��k=k�c<��=�V����<)�8�����ݺ=�A��ʧ���=�ٹ����<��ż{YͼͿ��{ E�?��<�����t;���?\<����¢<)3(=_B6��Ϡ������4��C��:�<{���R����c=w �R&�<����X��<{YM�k�;�䫼LH�<�O�<ݪ�;�V����e�����@<��D�k�R���=ڋ�����)�0�{�<;�v�/A.��.�<����W==B Q<��i<�\������Ѽ@&<��<<�[����/A�;�B�ż𤊼6��<�b���|�e��<#��6��r��9�"��s"<�&�<�O8��f�;�=�]�<x�<��>=/!`<��:<��Z��op���DZ<�����+=/;�<�J<��<�-�<�쥽\S����5���(���A���L=�T;��]<\���^�����9�x��ZO�.>�<���8f��<ю=��=oݩ����Z���rX<�1S��A�<R�c-����c<9� ��,!=8l��o0����w<1������j.e�\v�u�p�޿���Jɼ�f���g<����1��q=~�=<�ɺ�N���"'=��/:��/�m�;�>;�FGۺ4@�=�ؔ<�w;S�� ���(�%c"��?<�\��� -�� ,4�����m�<��=��U�?F<����6�:�u =X�Q=���;����o\Ƽ ��<��`���X=�ō<��<�A�<R�k����_�Y�k�B����<��˼�}�<�ٻ���/��=�p'��NA��/?�Zb�ոr�z�� ����#���+����<���|�;:m9��\�:���:0譼��޻RxZ��!=m16�q:�[�<��1��;�;�Dں=寮�C��{�2鷼{8���m&=ߕ�Kw=ñ,�p^ Š;TϷ<��R=x����껩#a:Gʅ�A�;��<��*����;�n��=�Š<�K�=}9�:���dX�<�e�<3j=��7<���<�Ž<��P�0=��+�,��9���;�I���χ���=���X�=# E; -)�<�9=�2�v -μ6����:h��;�r <��6��5�`���RO�<Ѯ<�񧹌�޻s�-=�򻜝K=s �:�d=!��;���5?X< a�;���;��O<~��;"6K=��J��P�� X��h������9ּm����3z;D˻{8��/��<�GȻ�=�<;�O�˶���k<�#���;�^*�v6<����I<�0ɼcA<�#a<��2�����q4�:�#��d��fK<|��;��C�VO^��-��İo�ٽ -�ޓQ<�H5<�F�<# E8��׋�1�����Ln�\MA�.�;�n�<Z,=� ��N���Y3�=[󻮯0=��8���<�E��e'��� �=�̝<�?<�����c ��+<�o%=5��=���<1�=Doo�[� ���"�=��Y�w$ٽ���<��a��@V��3��U=C���w �5��<��.=�\S<������T����<����=sN�<��M� -��:nj��R��<�;�k, ��|ʹ��;Q���5:��2<'��<��<���O�(��i�;��溠�H�D�������HW��?�<8�V�SǦ<� =��;\��HEݻW�;�14<�<�^3� ���T歼������"?:m�<ίͼ��{�ʰ�=h�rL�9C��gn<�UB�CX<l=e7�U9�<�sv;�e�<�TR����<�f�<֮@�g�R:{�ƺ^З=YCC=j��;��\;��m���k9�<���������<�~��<8w�<���<���<���<�A�<&k����=��=�E�c�;*���<�';� -I<%�<���<�s���T5;3N���P��� =wi��zb�8���r�<����^����<*�<̐F<]� �!v <�_@<��ۼ���=��<>�R=�U߼�AF<�ػAv����"<6��;q턼W�������<��P<�_@�<��Ѽ����&k�<�F=s�3<$����s;\1��<���;s���?����G2;�8���G�<�7#=�D�<��2�����[��2=��x<�_=��v�<�F���E��ݼ����ݼ�t�������v.<��=@�=�G��f<:�}=+�=@迼/��2<cy�Wl -��7�<��ۺ���� '�����E!�l�c���;�Y����U=��޼h���!,���)=X����<�s�:zD =+��<�F�|C��-zl<1~�� ���X��g���r*p<�4a=:�+=P(߼��$<�������G2��z����D%�g��n����N�<����Ά4S���߼yu<���<�nj<�D%=o�=�`� �<%ѳ<�J ����;Y/<�q�;����<���HǼ��Ҽӵ��9<>~��X�T�J=Z���D=��-:�1"���N�:����"=W~�;^�<���n���+;�<����`=��<��{������P<'}��^W��X�<������^i�;ڈ�<��`<��<��ú;&g�W<{��I�=$V�L��O���d�9Q��y��;�_:�&<,��sR�b<���;�.G='�߼h��T,�֊�<�D�<�4�<�"<��<==A�]�p���Z=d��W~\:砼;�[<4����<�<��μ��C<�2��w��n�==H��M�;�K�<��=p��`�<�v<�)��2����K黼e��:��<˳?�� -�����<�\�� ��<� -�;��w<� -�< 9�<$��<ņn�l\:� ���^p�m�T<������;'�߻�3�< ����p��I��<�f��� <�<ڠ#�~Z��;��<8i�<�nj< ��<Ƶ=��ü�`ϻ&��ܠ<�H�����<7(�;�#<���!��<d*<�^ ;��ռ���9�ټ��<�������;���� �����<�����̼�\x=4S<�G���])��N�l-:�8���<�r��B��Iܺ���<����P<��;�Ȉ�Wd��l�m�̼���~*��'<���I���X�V�z��I�;��q���:��G:��8��7 -=�r �� -9����<�^�;O�#<�4<==A;��μ�G=mn�d��D��<�q��<����'� ��#�4����<�̪��a<��;!P�;��F<|m�:��/=��ņn�ԋ���N���s����:� ==&���.> =����n����n<� �;�E<g�;�Xo<��=���;Y*��L�,<Ѷ����;њ��9���滫�ڼ�G�<���K�;�U��ٻ���!�˻L�=�.�<�ܠ;O�u=o�y��?���;��$����ջ�7�;6�=߶�<<�$=L��<��<���<;;3O%��0=��\��'B=� �?h'=RO���=��E<�Ez� =�)�<� -�� ���˻U�;q;<u -<�" =t�c��N���޻�*<\�C�^�!=�{ܼ\�<ٖ��O?�;"0<�ܝ;d�<+�;���U<�yϼ���<���=9o�<� Q=�0=�Ϻ; ��hO<�[=��o=� -S��9��R�<���<^��)���:<T���R?�{��6�:=rOU<h6���=w��:��<;��i�j�T.<�E\:�}�:�7�<��<[��i5���y����n=���<�-�X=�m=���� =:�ϻ�e�;�>Ƽ�G-�"�K<䯢<�m0=�,x��UY���; �.��1��(��{�9?�9��GK<��=�4��s�<;�� /=��;J�=�;���RO�B)ϼ�7�<����=�$<�n[�0?��?�k�Q���< ~:��b=k�Ⱥ��B=��,� ��<�C��: Y�]��<��<P��<H�� ��ڽμD-���=w�S��tF��}�U<�B���=�C���[5�S;���k�+�J���=��jd='�<�W�<�;��<4�\��m=?T�;9��n��;l��}-;w�Ӽ]��<��9<�^ϼF�� �=�`���B�<)��<{�r<�.+9��;��,=\<\D����_@5�A���U�;O�;c���y���9�!�:�k�S�=�;�;�e�����<�P-=�*=��Ҽ���:{��<�d�;�������;gq���6�B�<�o����}�:X��.W:��;=���:��;;�*<�}���\<���<��[X��^�q�h�E��:���R�{��<?�;�i4<l=��޼u逼,/�<7Kּ�}-=_4����Nȼ�m�rO����Ƽ�@D=oi�V_"=��<�T�;�@���E�<:ǘ;c��њ< �<�S<��<�(|�)�Z:uv;�S��*��r��&&��#�������;a�< ��<�����<���n9=��i��:��0=4A=(]�<z1��]�;��;�{���0ܻ?�;��O;� Z<��g=W�4=�U[��B���b =g��B����B =i�|�{;61��EO���Å���D��$���5= �^�4�R��P2;b���h�vR��c�;�������<���;D=����b�=u:�9��<�Z+�SI��Bu�9�z�]�J<��j<�c-<�(Q;�H';�U�(��<��:=�zT<8�d�L�����p;�������@x=�A�� c���ԼX�88�� ��*B��v{����a?<�z=�F�<�Ȩ��y�:`�X�#��k�< i�:��<>7�9y�<��ϼ��ż�=����M��L������l����;�,�<��;N�=�/�=���r�Ⱥ ����.� �ںNp=�q�Po��!_=Po�����,�3=�l��ɼL��I��:�}�;OK=�v�< -�ֻ��:�� 㼌���#�����6z�<^��;,�2=�d<���;�Ai<� �<ƅĺ�v��Rn =K���L�;��$;�wo<7z����==g@u<��*�9���qR�����lc0���R�<��$�$9=���N���=�{K<A�գ��=���U��P��i�|<���<&`h�;���g��͂�<�w<B�U�+=�+9;13�<G9<�{K< h<�1V<`��4;��Y����1<�,<-55=ȄM����<3�N<��<4 Լ�U�<���4�v:<�fe�Mދ<����T;�9 �;�m���+�13�;FsF��9�� =���Z�@�T�%=�n;��=�+����4=�Ն<�v%<��;��~<� �g������><�y -< ́;:/k %;B�5�*�*�feq<���:$������y�<��^�l�����);� -��z;8� �fA<��^���L<�6��(�`րR�;7�4�z���;!��<�%��@v�f�DS��Ξ��[黊�<�ȼ��;)g=������x�;�"�;�*= ���'�!<�"&�+���K#=�)6=*F�+�Ҽ��=&�����<=�z0!�����{71=C�A��5�=�R}�yrм,\�N{<<�#�<��$=v�_=���c;��.���<������b=��-=���0�<�|n<�t <����Oᴼ(#�C��;���:暏��o�<��o�����9|<�n<�T��%W)=��Gf=J�z�&�o򽻭�v<�j��-j3��1���"�`����+=���<5���3 -=�#}����<Ʋ;կ;y�(<��v���J�����T4��<��ݺ�һ7B��"K��w�Sr=t9�<9����X9F��=�5��35� -�9<����x��&���Ł�<����{71�q���?�<����9�FA���u��F�<���?cȼr��T��j�s<��C��X��������<�L�<�j��I��N<��; -��t�= �Y�Q�������@6<5��<�_; -ށ<����w�2 �<���z0!��M���^�M̄;�D���<<�}ּ�n<�ru<FE����<�#ؼ��T����<���<'lY�D= �ٺq_F��W�4�|<�/����,�6�5=α@�0� <=G���;W�N=�;T/^; ��L =�>f=�s��3 -�w�<�w߼(���#�;��ûT�u���<FE<�ܾ;} -�U�����U��G�*��z#N���:�ծ<�ż���=$��<�#����; .Ѽz��w;��=�=JP�W=A�������;̼�nN�h�3<��J�ˆ纲�ؼp�u�%=,��"&=�ܾ�_�;��㻼`�<������<�_k���<���<�,i<��~<���< &�=�<�t���s<�z#K��W�<���;��f��@-=b<< #ŻXړ�il1�W̻�|��\����I�¼m�&� -,����b�l����h����<�7����L;�e<��;=�.���}�;����Y-��ڰ��9���ڼ�K=��"V�Xr��C���=��:��d`;��l���>�#��D�|�6�(���<<��;{�μI= ^Z��M���t9�r5�<�(�$=�@=oK=.�;��<�<)S��/Q<4诼&��BH�<�ʂ��*�;G��=���;�aa�y�;��Ƽ�i3�C�*=Xrg�o�9#"�<��ܼvΉK�����̪M='��;�A���0<6��<�+ȻTu �~1��y�*��)=��¹�#�;Lw㻲O!��A�;)S��Jy�;B�,=/�����<���;g9�D�<Z�<�R �O��:i��<�9</Ϻ�+�<�|����7<1��Y �<+!<-�E����Z?8�<~@=1鸻a�ʻ�l�<��W;c��է2<� ���I�<�<�Rm<�Y{<�#��D��S<��3<^ �< ��<��;gԎ;�����M�5�׼�F�<�2s�/Q���k=?���ѐ<���(ᅽI�t���1��8~A=F��td%���z:Ar�=O{�x�T�3Q���&��=]U��3 <$̦���<�'=�G=-��=Q߃��0�앇9��Cq���:��Cq�pE��H=s�;x��<�P�<,�6�=;|��#��=��5��t�i�i�����i��L��;|�|Y���=8f <ͧ��A�<�)U=m�H=� -3��<])���� =��V�ތ5<'⢼�VN=��< �=I*=��\8���B��n<��Ǽ`%���{:��=� 2�҂Ƽc-!��TL�����:t�������C<�X��#2^����4<ތ5�v�;.�N<9�;H>;�*���i�71]��u8�]�;Fd� �0=9}�����<ߋ� -�/= �}<��<#2�;�� ��ؘ�G��s� -=td�<:�<�|�;{qk��a�����?����b\8;���:�<��b#��A�<�z���$��'�<6��V��;�� ;�3 =���� i�<��<�H��O<�VN���#<��<��ܼ[8���Bp<��M<�,X�Hh���`Y��1��2�<$Iw��yt�<_e�<�W3��zu���<�� <��绨��<h ;N�==71ݻ��)<�3`<��;"��:Z����)ռN�<��A����<&0�:̊����|�O<�xs�;�����?�#2^��� <1��QD�:�����0 �J��j �<�WO�}X;�<��׻�D��h<�a�<_���<4�;��q��������$<&}tB�<�����<���<��;9�ڻ�I����At��(���&�����9G�̻�m����l=��<Ѓ/�T�:4�ӼN��;������:�9=���JEx���������`U=V˟��|�<��׼��:k���s����<����Ҽ�,�&Y�i*ü�����qz���P<�{et<��T<��K��H)�v���퇼4����y:T�Bt�� ����<�_<<��=�~����-��<�n� *����=*�����<�p���l������P�<@� ����t�#�����W����= �~<������+;3^̻\n ��-;{���p�^$8=;�W�n����� �i���뼭ě� `��vӼ�\5=U�Q�jE'<�4<9J@=3�O����;DG��]-�;(X����8�F��+��X8D���7��/�<]I���C�<�k�<�0�<��M���䴯<��=�WH�;�Ҝ�L����lk; ]�(�2=<�B���+Z;�x�<�W�<� ��5��<�s�<Y�;L+�1������=l =<�����ָ*��K�A�X�5��h�4��ڒ���!�Q�z<-rX�A��<'}+:\�L<\����踼L�6�*ϼA�����;qé����<,�B�g� -�Ļ0�;9J��D�<�)�� �E��;�>;�:�<u�;�<�NO�޹< ���g&��S�<�P��\Z�GFż��Ҽ3Ä;/��;:��<�B�<Zv��t�<���;���; �Z����<�.7<���:jY;��j�p� ��̶;��w<�ʦ�",<�<���=ǘ����>�\ Ի�,��L��Y_t<�y����i�J=�)�;�A��p<<�4:<�QǼ6��K9s;�~�Ĵ�2���%���fK=������e<=��9��<׭�<���9h�:�Pi�90=xq;%I��wG=4�����=8 <��"=���ydR<��g;s<�k=�a�?y<=/@F����7�=�gA�Q�Y���i=/����~=k�;P^��"ˇ�NI=A;�:9��<0�D��>=�z޼?�Z� ߜ� ��@$;Ӥ�=F,;@���%��7�<�����L��HS�b{<=:#9<�c��E{��Ƿ<$ᄼ�P�#��<4��;�-�=_ 6��@�����W<�� %�R��I��&sP;�*��=���:��<�&�<�%=b��;K��<�}A<�!=ɭ�:C�.�V�,=r�G<R�<�=�bٻ�k�=�<�D<LA<x��Wv��Nɼ��޻V��; -=�&h<[:=:#����<�܈<�&=�m��^�<���{λ�ZB<�Pg=�9��3a����<�j�=��ükV+=��;��'�0\D������@���&�:څ��n���,�����r?`�p(b��"�<�<�<�W�G���=(��t�=�X�����Sɼ�� ;G��ZL.��� ��d�]��<�� ;����9��a����M�����<����}�0���J�o�1�(.7��Z=���<�Ӽ�@ =���H�X=�Z��ߒ�<�3л5.�f0;�U���4���;��f����;��r�'\=Q+�<�=/8�9v�I�G����g弱"뺗t�+�LY/���= *=R!��Px����=�{�߳���=�{�<��5=;�eV =�{==ň��?OC=��<*ݼvF=U5��;�ϼg¼��<�<˼tmK<�Z1������J�<�����<�� ��gT�v����1�����`<�w;�7=�,=��@��"Z<���� =OY@=1�9�=su=-!������<�����a<�~c�8O!�E��;�"�����;�Ʈ:%�s<�ͅ�A$=`(����=�#�tm�;��<�W��y�G���A<-!��M�ğ+�[�����< �=�Ɲ<��;Nٷ<���C��<�gv<���*��(E�:Nٷ�p(b�1n<@��;m�l��;�Jλ�&�<ߌ<�9��S4��Q=�;f�|���;VBu;H�- -�<�9=�6Ի _�<�,�N��<=�}��F7���:�%o��"8<,�;'�^��{��<�Ӎ������;����D���<��]<څ=SBd�7\溠�м<���U�<��r:�� =���ͺU5�m�$��38=*�:]�ɺ��p<�چ<��VBu<��[��٢�������ؚ��|}�Vi�<�;M�(��T =Δ���ă;[}¼�YD<�I=^?(=�t%< �a��ª<� �M��<8-%�R�?��������B���ɜ���~��V=m{�;F�Ѹ�[�XJ<==^?(;�����=������V��f�m�Ǽ��K�UlK<%N=o=ӻ;� -�{���cS����<��z;� �b���)e>;**ļsૻ�*L�!�A;=�����^[=N�����ۼK(����=/>[��l�<�i�;�y<���<:�ü�ͤ<����缭<~�r:��;=V1ѻ�`Q<��|<�2"=V����"�<���<��<�ڮ<��V:��4��v��3�3�Z�b;ԥ�<l:�{��»�$��H�<2T=F=k}�\\;�*̼��f�+�o<^#;�׆<�2a<��!�ɀ'9b�9<���N�<0;;���N�靠<�ʄ8Jc��%N�Jc����<��8�;wP����s�>��6��s�<�]�<�S���_=�#?��/�<�~<���;��<2Y�/��_ ����|<�`Q=��<�v�: ���=�1=��:r7��\ܻ_��Ꚁ�,���hf����¼�ߣ<�> ���<2��$5���Q<��z�"�Ic��y]�����D��MB��� ��� �Pt�:s�>=�up:Jc��Ɔ��Լ��#����:e�;�h�<�nc=�OZ<����h<%28׃�=��%;�* �O[T=fjv��2��&�X�^�<��,�0a<����׃�<��Լ|'�<�n$��Ǻm�<����x�ջ��o�J�<�W��#���88<�� ;��=pu-<�=ܗ< �P=����Q�m�4�u�1=�o0�u�<6�,����<{�=��<���C���Z�;>�T���;�6��#��t�Ļ��G�W���ļԥ���ւ���=�쭻����ͻ���<���pu-����<��n>�;�1=��!;��c��H;H��<����g����>�{��;p�~;�� ��;� f:������ =x -=\ܼ�B<����� -<�m��/A�5���e�Q:�`Y<Cлm롼� �a��󺼜�<�h�;��Q=�aͼr֨��v�<��M=C ��n�7<�"��k�<�z����J9�1��=��̼��\<���<WI=��]hG��'��=�ϻ�񝼴�b<у<=��.<)M �#0����<��q=�s�.�;+^P=�]6�Gw|=f0�<�LҺ�My� J�r��n<�;�Ϯ<�v�9 -#��2=� -�.�W������ʼS��ݯ<}����<2���T=�1=�ټ{��:�]C�l�����rj���s�;º������8�[��oMl�G�@�򨎼���<�rK=�ZF�ܦR��S��iz켙�2<�4M;{!="�}<��=}���~ed=�)<;�#\�y�:�P���-��'=p��*�����=����#=�D<�u��p� -��k�<�e�<�<� ��h�]=�}�:�8<+������<-Z�7;����9(=e��`�=Ma@���&=Cw&<��M<�<�E��x�d=~ <����a�N=~v=���; ����M�w�=�M��"�}��b��K��_ڿ'�<�D<򨎼�ȴ<�N�<��S���x=�ha<��<[`;�?�a�N�v�U<��:;�#�<�d�;�� =�<���rj��#�e�{�^����:��3<����{e<Z�&;K�"<�dJ�K[�< ;��IJ��!*�<싡<��k<�N��G�-��z<�kļ���[W�<)��<o<��=���=�7�B�;5_��n�<�6="A ���>�ƪ��˙���W =(�׼��<�!�9�,� -� <���aڼ����c��z�<��Q<����;W)�<.S���C =�Iռ�^��-��Z9:I�<��;-��;�k�@̱�`F�<��;�.$�IJ�7� �v��u���D=1�u�w&?�Y������<�P�ޕ�7pu<)X��;=�}\���=G�@<�u��*�;�< ?Q=s��<�F<6�f;K[m���k�3��<���<�-ƻ�{�����<>Z�9?I�;�Ƣ;+u��� y<'i�;�U��·<�)��1w��r>���6=a��<�z�Y�{<5��f���.���:=���:|T��Cw&�e�; g<�3<�l"=�[��ؼ��;S|��F�=��T<-'�'�<��<�s�� -�$����D�@8W��G{�;�P��n.�<��C?�� D�<�a���颹(vx;�[��:�b<}I��VY�;!J�<$!�;�P�;,=�<q=ڏ��['�ynu<В�,��<���<�tO���"��g@�6P�<����L=�7�yn������"���-�;̵6��0�<�i߻!J�;�w< Ɣ;�^��>�4<�r �1�9=)�.�����|���<¼W<���;����Y�U�G{z;[���o񯼊�߼�*�X�<��<"<�#��m�!�]�=�;M�j�;��<���<���<`XD�]��;�ap<�HR<�.�&��˼��F3<%��<��<%b\��4�:���<��P=�f��N#������+�,M輆��<:���!�;|��;���<6��?&<�5J���g@<�g@�H�k<m¼�� � �b�C�4���&�=;��`<�»c���+�<%��<ծ�/��<����~<�p�<+��?&����;��?;����!�?��Ԫ�9X"��VUW�A��<폼�#��!׹���RJ<¼W� �:��f�]�:��ük��<�0q�d�=�$ļ� �;�-�;{� ;:�<�.H=�k���f��@ �K��]�� �9{��;���<�%���@=�-�<��;����� �<��G�� 㺡 �H<�|�;�a�:j����Cƺ�K5;&�Y�U:Q��<��8���<���;(9L�)~�V׹<*�<�������,�<��<�:�<�T��e���#�q�;������O���5�t������ż ��AW����2=H>N<=�~���4�؁@<)~�<%胼�L��w'��(�Z�V�u�v:��<�e���˂<+��'=�s�<�Y�:,Mh;|t��ƼrB�?��<���w����<3o�<%%,;BR=�-r��ӻ�`�*���N�g=�7���;�Di��U ���<�I��p����޻4�����,=uҼׂ����/�7�o�m�<'˼e�Q=����s!�u�<\�6=4�漾�(=�&���<�R,�7�a=RP��f���x)�T|���hY=�+e�S=���<�x2=S=E[=.��<��ûş{��.�@�=\�6�j���YA<�`�^��-�����׼Z��=��r�J=y��<�c�<��9��`<�+�;�OC��ѺZ:}�4[�=/�1�Ä�ʢ�P��<�����;'�<�+=�ɴ�� -< -��<�W��H��<�>Y�;Z�=y���4[���e�<ٱ�I�9=׌7��̻���<�0[<uR=Ѻ%�;�2����g�N�Y�<��<�������H�c<�Ӳ����<�"��Ғ������m����{�<�M=�h���<��8<��]�S��<�);;�;0���؄=��=���<����F=��=5+< �_�m�?�~,6<�,����"<轤���=%U�<�`<�h��h��;L\=�kټp�:����`�=pS<������<���<�E?=+�Ѽ�cu��Ӊ<�$9��I�<�A;�f�K��W����?<���<3��<�U9���¼�¸:0=X�t<�vX<�?��$��;���<� -�<�,<� -�Axj���3�CZM=�(��t�����'�9��=���^��q}������#�鼐�_ ��W�й�,3C<�3*���N���<Ǻv�s�)�U�:'�Z"�gL����:=X�������W ����l�7�4����<`�5���Bo;��z�+&<`'�����D�>=c�0�-=v�3=��!=���<�^z=4L�,� ���F�3u�<� �N�>��Y�<��X��f^<��ؼ�� ��@ݹ��b���½�)��+��Ry<���k� � �_=B�[;|JS<��$=���oTɼ����:��F<�� �\�=)�G=�X��K )=�>�=���;=��<�<�p7�<��;��:H��<�IJ;G�<� K<�s=Hs^�: t�֒�/�=/�L=�|�^�Ί+�����,<$+ ���<�� -��M������d�׻�;��<���(!��ż�j���DO;7մ<[�H���5��,=I��^=v�3=VK\<�{�;XJ���k�<�̼���;X�:c� �#s4��<9)�;�5޼S�=�/Z<��U<.��8��<���������������=ۀ�<���; ���9<Ġ�<� -���z;�%):Ġ�HH�,z(=5W��Yf�f"���:� ��`'�; M�<�������;�J:=KT=�uO���ɼ�����F < ��<��;���d@��Q�ȼ��=� -b�%[��3�<>;.&=,�<�'"���l� ��<��U��3�����<��p�R��`�<݌$��7<[��;,z�<~n�b{�Bo<^��<��:�Р:�}��[d��Nn���3*;*Q`=BM�;�v�~,6�$5%;=��� ��v��<�p&=����� ��%<�O#=M�='� �c=�8:l��Y=).�;sY/�����ٽ�l�B��� -��C==���<(g�;7˼b$�� �w�����R�;�tr;Ȑ�㔰��=��-�< c;=�i�:H缽�ʄ����:}{'<��"<�����~�4���=(���t;���>=�'��z��hZL�ƌ�� ���=J -��q�;��i�~�;v�%��?N��]=��A=a�_��j�;���xR �).�=�,���<�L�[W��c1�<�}�=B'b��3��9�T�X<�v�������%7�`��;6�;�UP�e���dV��<]N�<=��xu"��&�;= o;z�;ִ�:��;��<� -*���=�E�<��=� <�/e;��5�H�<3��<�ƹ��k���N���sY/<��r��ڻ�+��w���FCո����3���<隵<�2'<ݱ��5Tۻ�}9��5����:pN11=v�<�k��7Ȇ��*麇�ɼ���<��;��2�����w�7��Q5�O�>��'����+<&�Z<$�����C��<���:SÊ����;X�; �P< ���Qɼ���ƌ�=�d=�"*<�F�;�+=�UP<}���������;��I<̒ -;����m�f<�Lu<�қ:<R5�ִ=�π=�7=�k*�gp:= Ӈ�&�3<^"��%m��D���!�<���k��}�<4�^�X��5G�:�Q���*� �ӻ��<�B<��<��W�K/ =��;�;�3s�<�f�;f����H���[;6����ͼu:����=��I�KR�;!�<�̖< �<��Y;���<08� V�<�N�;D��7 -����5V���@`�@S�<-� <�ˡ���T<��x���@< -~:RO_�"a;,�<�� ��:>�����9���k<�>�<� �-{<��<R5�Ļ� D=I���p�<��'<*�;P�o���������:�DJ�Z�H=� ���� =��<�C��D���ºe�@<4]"��c�z&1���?;�����<�=>���A�;��Ӽ�1�<�:�����$=��A��6�:H�;v缓�)��lG<7(�;8��<-�G<b�<�@뻣��9X2O�^"f�/dD:Nʬ<9V=?\�<�� :KR�;t �"���=8.��/�=$c�����:$ٮ;�1(��%�:��8=��}"<�Ac�� _<�? <(�1=Q{ ��Ea�7��3�2�m0�<�8�:3k�<��;]<<�%��xM����<|Rb:�2�<,�,=K}c���v� ��F%< ���$�(hA���;N�^=4y�4��.ϻ�]0Z��@�<>,��V�\���ɻ W;�m(�0�:�L1������<,mk:�F����g���D:�;;!�J��=��J;�+�<7�d� �[�ꭻ��=$�ջ�36=J�� -r���;Go���< �9<���=��=��),=��G=�S=Y =V�ܼJ�<�Z���=<ז��ߚ= >"� ʹ<��<�����/l?<�eQ<�`�;��E�N�^�'|��e��<�*�<��<ߴ�<�3ۼ7̭: *Q<��P���:O v�pw�<��q=|��;�:P< J=�8:�ſ�G6��뻼 �ۼ�6<;!=�L1� �<7��=�8`�<��L<����;�}E< �=J<�қ<�ِ���{��:/܀=F0�����K��:$=(ı����;�~�<���<򻐼�l�=�? �x� �<�B��en -��}�<���<�a�Z���<{L �Yk��\G<���毻^�< Ԅ<;[@�C��<���VR�<,mk<�T��P�lD���><�:�J̼Vl�<�\���3ۻ�d�C�<ߚ�<���<�Y<,?�;����x3���:en�켽]U���I�]�J�+ %������:�7M�i_c;N4�x �$O�<7̭;0Xn� �4: ���$����|£<Ѳ����+ %�a�=�n�<�v,<ٹ�<� -<��=�w[�Ŕ0��$%<�U?��<�ɻ�Ma=���;b�)=Uu�<��;�l�;�3�<���k�ɼD<�e�<fI�:c�#< ��T���R� �w;�m����a�ˆ�����=GB%�S�0�OeE=~����hټS�����<�����`���b�;��<ʳ���!��p3����<�-U��<�=��JF伈^ȼ���<�"@<�4}<"&�:��(�"���<��u���>�@�57K.�WǼ?nN�!��􈗻Ma�h���������<� �<0�.��t��0�=�PN��p�<�}T=,��i6<�U��T�<�� ;0:<,����X<�;<��a=E ;?����<��U<��=������:� A��� <�ʼ�[<����s���IJ����|����=;��<��s<;��0݃���<�`=M�ӼF`��Y�=�/�;7<�=3��<�"���ʿ�"&Լ)��;�}�j%P�#�ͼ� -�c�'=ͷ�<�~1�Q 9;2�F<@=w =����������<��ɻ������`<�'�<: ���~�|º�7K���"k<3���<~Y,��=4=�=�L=��+<�y�2K��x�<�^���k<��9���3�C�7�<�<��=ʳ�B�=<��7=㾦�+�����/<(����k�E�|��Y=��<�5;� �<"5V��Y��"�I�<�C<�O<�5ں� ��0��.2:��=N�I��ͨ���T<�ݮW����W<�*����<�6�����;gѰ;�폼�WN�+�9=&��ڶ��+�v�^�: ���������� ^,��U�<��<�8��AH+�}����z�<�h�<�\�Ħʼ��<6(V���c�}�'�{H<17��\�;Wr=Q��=\c̼g���+�<6r2=�������;�x=�V�<�]���&i<}/����r�׼ �;�LД;���<�*_��������1�!=A�|=�^i�+��Q�*��$1� ^,��G�<�GK��A��;AƑ<+��<4;���r�k;�uW<�<�� ���K=��U��i���&i<�)��;�43;��Q<Čż����><���A��;�P��G ��Q�\����ۄ�\�[�b��<�'�<}���+<�$�ɿ=6=W�<�9�<���;��<\�����}��Wv���< ��<�$�<�����=��a�;�:mp����<�������<��|;�[�<�����ӹ;��W����6����˼�T7:� �<��W�W�9ԙ0�ڜ;}c�ҏ�aû�y���Ń<���<+��<�L=A�����û��i;��� ?<�J�<���Ge��1�;�*:+��]��GK�<����(�:6���Tf<��N<� �W���be�Wo��q��:x<�)�"�����:��`:,�=݌�f�{�<�@=�N��}̽��"����� <,���@���ڶp<��%)=�X�����<��<�������<�,<�m���� -�6��;�'1��'�=a=P[�q�<�.�<��-��[b�D$L�kl=k��;3Q�2f<��ך��G�׺�rU�?����y����W�O�m���;�hmd;��e�;�!�ۗg<<5��&'��娽5�v<��ҼS�$<�j�+܂<�<������;�l�<� ,=$MC=��6<�1\�C�;�І;��<�u��Iw��k����m��4��i�g�o>$=:��#?���<��g���K��צ�=��P�L׎:��<+��"�����<����ۋf�)�Ѽ� =4�b��$<e��n�_����Y���N�l< ~Q��_̻���<��;=��:���6<�c���<���;- ��6<|L<��:M��e7Z��2�<��@=4��;m���`�r�,;�������J�e��#��]��7�|����<���S����u������%<~BѺN��r�-�ւ�<����P�������<�5�� �E��Oa;��);��?��]�<,a[�4<-<������;:�< -1�G/�<��<��,=��<���;i��<\ @=�����<���<���"�d��/��fs_;���@��<^SF�l'o��3���Kw�6P�<�u�<3Q�<�<<��<�L><�z�;�5��{�;�[b:�n-;����=�W5=w:�<2!�<�ŏ:��:�<�q <9+p���8��g�<-���d�<�5=�v�.�`����<'�J<üt�;|i5<�+=t,C=V���{'�����1����=�b<�#%=ފ�<>()=z,��!Z>��(<7]�<'��<8��Û4=󍨼�/ܼM�;��<�g�=�T#<�����-�<|i���F���+�.%=m�?=�]+����,����<��<<7��<`Ɩ<��ڼ�m���'<������Ѽ�=��k�>�f2<�L�g�+=�5�i�fݪ;��< γ<\��f�*�M�<��<<�g�;��<���<����F�O=�Iƻ�Ŭ;@e�<���9S8�`�\< Rz���v=�!�C�<�f�Ղ<�(��ފ�;�a:\����������/�� ϻ�^=�bܺ�<�9�l�ర��2<|��=x�g��_�<dݼ�����<���<�gJ<܏��S��<��=��;<�A)=��(<_��<�q�;·�<�]�<����d19W%�� ���4=����z,��z:7�7�wy��zD��9�<T�;p��C��Э�D��; �"�`��<�{��e������oWR�<]�7�1G�jL<�D=l6�0�h<�n���o�<��9=/ "�N�v=�x�w��_�J<�6 <�D=�ʼ��S<�h��<��ż��<{�W<��b�^�A����/\�غ�<�I�r�S�aO�:��h�j� <�����_�P -�\��<_˄<��C�p<�RN��I��>�=w�<>���2�;ȻW��N+B��V~�PQ <�ǁ�!��;��;W����JG�-<��+����<����P̼���;K5=������<�t?=��X���h� -���T�� %<�u;oΝ��@N���I�;�G�Y�<��;��&=�C���8��e☼��<�8���-����; �]��:����Tm"=�7<�ʰ<�/F�Z �<��<��U<��� =�����̼��%;`�ܺ�-.=Э�=�{�<�f��=�Ӽң�<9#~<����;܏��}=<2�`�����K��B���r�U=P� �Ѽ'(>���_�bi=�x�<�d8���<�����m�_9Ƽ��)�I��<-i=G��<^@��U �=�P<8�����p#����;۾���á<ޑl�N�2���<(Y=�$ ���<�����������I|��3���=��� T=ԣ<�6H=��<ס2<�z&�I� ��]�<�����,��d�����=ʃ�<�����ϼg"<����]4?<8���K�ڼ�S�=F˱<��;͈���'���;�F����= �b�G�B����^@5<�Q��8��%@�n�7<[�;� �<�';r����ֻ��<5�����A��X7��,/�[N�noܼr�E���K���@�q�4=��>��xɼ��=4YM��p�U=*9���s�Х����q�ټo�ȹ;U}�iFs=��m;F˱����<�X��ꢼ9�=�񑼵�p�\ �H��?�\Z �e[@�(S���f�<#= ��a�;�b��Jտ;� ���D��~�;�'3��a<cP<���;�<���9=J�=ah<�S�<��<����<���M�<��a=>Ë�t�1;�6�<�(�<���ڦ���]�;�*�;lWp�0=��m<"�^<_k<��<*X��ZB��? =V��+�ؼw�$=D���f :qa~;9��:�;xٚ�;���ح�:&/�;�?=�80=��ʼ|� �xٚ���\�zҫ�D�t<�.�<�~�<�����-�\�<^!Z;���� 9��?<��=r� <��:�ҋ�;W1�����;o{�<՜+����<�{����qa�B���绡�=Q�y<|�2�)_�(S=�K -<4Yͼ����<�ټen��w��;�tn<ջ����Y��U<��|�^!�<���<�=����<����q�Y=��;cV��#=�����B=�Eݼ֨!;��<9\켫Ԟ�;tؼ��<�������80=G���ʼn=�3�<}�(��Rt9�:��-�: r廡j`��Eݻ]4?�{�;�z�G�B�<��=;U����F��K -;͔���:�<#= ËB����Ҫ�<=�:f�<%ܻ �G<\ӻ��B9汼*9;<>�0���<�ʛ<=���)�����X�s�;;�?�������<��G�~�<�5����5q��������Ǘ����<��u=}4�< �$���9=yI<�V�=�=3��+��b޼�2<�}�;�� <����A�*��������;�g]<<$$=�9< �u<8M:<��<�A��E- ��0�<̥ -���P=�h��E��<����ry=�b޼l�4��T���3=����g^s<�bB���<u�;���8�������<<��&��=���aʼ�f?=�ry�<7�V��:�����>�8M����<L�������<"B=��Q;�$8<� 3��5g<"��<�s��(�_<��������<�p�A��<:Ҽ��j<��������3<����l滲U=�'�;���<3�缗�r<���Vro��H�R��<Ԭ@=_�μuu�;EC<�/E=�أB�0Լٺ$<�����qe;��;@��;�/E=/ ۻ�#�<_�7�Ԭ@=8�.<"�F<��9;4vм'�������ɼyJ��l���c -��Rf:���=<�(<О�<8]<���/�&��HϹp����o�?Q<G��2��_�����<�s<�����=<�i�"��}�� ���{�:����I(���*<��8��܉� <��;�ؔ޼�[(������z1=�2�=�@ü���%m�(� �����C�! � +��Q7����@V4�������&��z�}n����<����2�w:=%���M���������<���;X�����pR����H�T�z�>�Ou��=���F��<�; <��'<��:��U��VW�<�ἶM:�������<-�!��9¹4�=#�8���E��d�<���:��Ƽ�<��\�ZO���y�<��XT)�����E�\=�;i�*W�$b]��۔� �: ʹ<5 ��T��v<=R���b�ɼ�Ɏ�Lח������0<�۔<�h!��t:u�ܼu��gZ=��~��̺�����o�Nm�<7�2<�es�1�=�趼�]����V�&]N<��Թ�"�;_�*=�=�o�<�߼�_k<��:��'��뼔!4;=�d��4�<1�~��7#��� =F���|Ӂ<26��A��������<[F9=.�O�����.��ͤ<���<�p�;�CǼV��]A*��j�;�w5<���=�O�:�;��;��<��(;A�ü���<Ԑ�ҕ�<�ż�����먻nW-=ke=���� -:�y���I�<}�N;CHD�R���O�U��o��-ĽjaK�+N���@�sD���˙�7#�<���Q��:�Z\�Hᵼ�܍��/�;n�<=Ƿ̼V��<�|D;nS�;�ʇ�B�<�p�;��<�80�D�r<��)r=�շ<��<:�B����8��U�<�`d���E�gs =��$=Y�)��_��a<��_�Y��<07мB���R;��+<� "�H9�Ƿ�;�c�<�(�� ��<�Q�B��;��;H1s��;�<L�;���<B<;�W������<��:�(5<��;��9�`�w=O�'�������j��:H�5_=w��<�;�^<��:��4=�N�< ټlXj<�:<�Z��{s���趼��J�F�c9|wN<'X����G=5��<�Q7�̠�;n�K�����"k>�.@1<�L��������<��O<�7;��;=��ü�6���<"k���0<> �.���� =0��:���;y5��wg;˱�<�>�@�;�;4���C��*�<&a��d� ��j�̤ͼT�(�q�z=�V=�f�<`��w:��x�{<��ʻ[�9�<<:�B�}r?=�I�J4�7B��|ļH�&�ǷL��� =�8=6׻Ԑ<��;=�ٻ �w��H+��>�;C�4���p�'���� ;b��;���\�<�-D;��ɻ$b]�!M�x�M<�-D;�>Q<������<�G<� �<��=`3��W��C�4����F�5;��_= �<���<��S�q��:�g�����;4�*W�3�A=�K�:���;`�X:��n��9=����un<����Z\������d}+=+N!<�i��dѺ����V]��H�&����m`��}�$f/�s�<�<��/<�n)<�v<�%j��CG���;H�Լ��O<5 <�$��I,��%1=���Ql���3��l=?8<֋�;:i3��w -<�����e�:=�����A�22A=ke ���u����m@��#�<#I���9�'=�a<�7C��μ�=���<�$A� m3������k�tJ���a�;�4<>􃼧�2��ر<�X<͞����ꕼ��=b����A�;a�T�;x] ����=�>�=Sٺ��=!=�jἱǧ���0=���U?*�,�:� M�/*G<��I=�3�;T���<���<�V���'D!<��=Eک���˻��<.k,=xώ�w�:����\G�?kp<��=�mQ;�.�<����|<7a�ը:QL<��Ӽ�b�<'��k�<�#��_볼��/<�a>;�#�����r����V���<��;V���/��V�:t����Ԕ:͞�����</>�s�����=9<���;1��<��<��Q�C�Z���,=셤<�N��ۡ<<���'�T\��I;Q��< @<:'W<�g��?��<�x7=tb�Q��yjR���Ƽ���<��F�;J�W� �u<�M=��ѻV"��Ю6<���<��>����4��:�T�����<5u)�"��;h��:�W����< �<�_7�%4�=�k=� �;�m�;�.��/=�E< ]=k� =� ���<�gb<���/��;ҾW����� -@=�z;ֱj=S�;� �<c��T8�:�%<���<J�;�=���s�< �8����<=�<��;m�<��=��K�r=��ֻ"�Y=�>мLR;����<��*b<�=29�<�<�Y�Χ���A =�N-=����@����8C8=�J�~�=��<����R=�K�r<���V#��\��e�缽��;�L��;��� -� �G����<_볼������ Ь� -@<��H�)qм>b��bC��Q<1�|:�uǼ�G='���c��<�h�@%;�ׄ:.�i���><�YW�yjR<ӡ�<� �8� ���鼡>P<���<&��o���K�<�/��g�<��1�%4�:��/p<� *�?�G����<��<^��<�r<�ۻ�� �Pi=���<'֌<�]�<��<Ӽ�%<?_��AϼS��5��<���*�-�� =X<�J�<^,�^B=��ּ%��4n�;���;�7�;���1��<� ��i���D�`=�^��r��J��<]I'�����! <����=2����;.���m���p�8�K��$�<�P�<�]0���:� -;L.d=�7�:�x�<��i�M,̼�Z������iǽ� ��)���a7�<����0(��$VA<�7�=KU!<�=k0m;[ -����^���=1�����ϼ=a��HpI=�$�Y�Q����<�4;�M�u�CPW��U1�@ݛ��l�ѿ<���lcM<(�0�u��<�/�!L6PW�����l�;g[�<��<�iO� -\+=�?R��YJ;^��;�<�<���<_n��^�;�S��<ӂ'��6_; -�:�88��i�<�- �"�I��鼶W����<���� 輔�ļc�?�J�ܻ>+��L��;5���|;T��na|<����<��T�J=�2N�l><,��UN=� �:�Q� �B<ޠȼN��g�}<-CӼ&�;f���SH<�ó<�o1�-CS��於C�<�j;��;�4��㕻��o<���ٽA<%{t��G �s���=7� ��U��<ֳ6�e��D+$��u��<�Ө;�e&;���q�:�|�;���<�?ʻ�/�;cQ<�x���<��*<% - -���V��N�A��=j���.<�"ٷ.З<ʇ��7�;n�;���-Q���"ٻ>�=g^P�<.�J�Ri�<�輧{�<�W�%{������3����<ҩ+�̓ļi��<ֳ��=a=��@�[��< '�w#�ЩS<�݇���=�2���]*<چ�f�iH@�J��~=$�ּYFb�(���M����[�����!<�P׼��T�)��;2$��(#������Ck^�"t����Q��$s��aͼ,>���-��4�<$��;0M�;o_�� ̼�楼�(��Z>=�l��ڪ�; ,[=� �H뼿U!����<���X`=����2%g;��< ,[=]n��#=��;~�<���;I�U<�-�������.�ϊ<�Z>��5�<��S��1:=I��d:Q=�E:��˻F���A�b;���K6I�lq�; ,�w#�� �[�/����#D��4�,��<�Qe<���r݀�E�+=�J; �A�'<�=�Ƽ۝B=X`�;�%"=  <�'�<(����<c<��q�թ�;<��<-�Z�|f�w#=� =EC�:�{��c={$<�gݼ'1�;�B�9w����;<�M<ܐh��΃����,��=/g���ሼ'��Ҽ-$��jP=^�� ��<�z:o!f�t��;I^8=�g��e��3 -R<��:�<��P<߼*����c����<�c���B�Gp���%�z�<�AL�:i�";�������0MV<J�:M�TEM��t��(c�^�n=w��n<{��I���.G=�\;)t0<�e��v�<��=�����7�2�<�w}<nj�<<&���Ŷ����8�ɼy0꼩��;���<���<��X=�A�=H�P7޺P����zp� b9���O��%u=ю����[<���<��;;$�)�M<�B;XnѼq�v�#����3���*;����ׁ������n�7={��ћ; �=���<�AS<��弽�K�ќ�<���=OD8����<��X<��<�3ݼ�(h;�w1�;_;��ú�@����N�u�]���5��I��Ik���!!=g�r���¼U�U��va�pѺϊ��h�;W�f<�8z�,��;��=�8���6=Q����EP�j�<Vt�<��;�OB�QI�}�v< ����P�<��˼�3��a���6P��� =K�+�p(=4h��(�K6ɼ��� �=�ڸW���=-�����f�%Yg;�&�=�?��������<0Z0;۝�;�!��G~�����}��<���c�;�����n ��om�|��;����;4����J<���;U7=���@<�Yu�o ��`�<�Ĝ��݇:� �;���u@=�����=;3�=� -=��m�X`�J��<�;���-���z;ϊ;�q�7%;��=�W�1@��Xaw<,��&K��B�s��8z<�B�<���<��='>R��N-��iB=�ۺV�90Z�<�<[�/�����?�ѼEP�<�� <��X<�-;$s=܂�����;�Q�<�9z�<��<�?n:���;�=��2�ɼwXY��9û�3��,�� =$t|�= |�F�;�L�;S���;_<��;��-�#����Jq�= �����<��u�Tˉ�[��3���� ��;!=cUf�� )���-=-�ں� -�7�8�<(<_�Y�߼�΃�cUf���;;�gݼ�<o_<�>�<�1�<+ţ���  �Iך��f�<����q�<��C;���>�;a$<ЩS����<#"��nj�%X���ڪ�溮P<�R.<G�<���<^� �̀��r���<����Z��}ü�7=�=?�]��<��Z��*<���<a�I��<�,���q<�9�<�����"������A��rI=Ó/�B> �J&���$�l)�vD��MR=,�E��fy=��=��-=ng��%�������˻�=�?!����; tb�Q����6�K=��=��T=��ý�ƹ;���;\Y�<�)�;�T�;�A���Y�vD���5��/��笽��&}e��%��i9<�E�<��n<�#ܼ���<�¼iOg�&Y�8#����� <��h���<,��<0�v��e�<�\:�V�<Ó/=�Ƚ<�A�Gñ<�q�<^{�<�1��g�7�f����;1Q뺚�G:>vĻ��ڼWo#=�)$=�"���`%<6@;�Y�.e�;�r�� -5���T�� 컂6�;ز/��I���o�r�;�A��q�N�ؼxdž<��5<_��<�b�q��<`3=a=� -5<�י<�/���ǻm| <��L=bU@=2�;�⠻`ػ �����<��<�Ζ<�k��|��\P<�W"�,��<��<���<� -���'<$:�����k�<ŵ���j;��@�Rs <�a\�\�;G��<����NX��?ۡ�����>����^����({r< ��>�ϼj���Z[=�"��t�<n�;"K�C��_�ռrx�<���g5<�y�<�N�<�̻�j_;�A%�w�;w��<�� ;L�4�Q�μ�- -<�4���b�W -ƻxe<+y��j�-=)��<�v�Y�u�x�<��;O����v;<�<]�=� ���{P� R�<���oz���΅:�=�X�Fpk� �V���F=�gƼ�$�:��^e<�?2�ۻ�<>�r<�W"�����/ �<��`��.R�i�ۼQD�;o9j< �y<��ѻ1��:��=�0V:$���T�<����W�:�W] �� 2��=`ؼ�U�������<�B�<_����S���ż����;d��<���<�;;=�H�i=P<�D�<B�< ,<�M�9lM�;��:<� -�<�k,��.c�.��<��&;LN<�o�۹|��fc�0<�'�<�x�R��;��@���&;�v"=��d<4���D<�)�<>�ۼ�L<�B\��~i�C��<�eS<�.�v��r�T�D��`vD<��;��t��9�<+3�;״�;�B=A��@�:���<���<~n�;05�,�d<�Y���wX��Q��M��?�ڼR}S<��.=�}�<"φ<�)�<��f�K��;IDž��,�;8���[���>���!=����N��QJ<`��%���"s�<���R�8�����t��k���9�ԼV�<��\��o�;�/�Jz =�8�O;:�+�֪���h�u�0��t��u�%I��B.�;�'�<�醽Ip�:T��;#ޒ;v�����g�<�Ϳ��JZ��v���P�]>�=�̼�1���*���:���u�����#Ԋ<��<�YA<����e�N�L��<� -�hnl<�8��������.����<�&��]���;=c�8�,�?b�;�L<<�9�;�S��z{�,�tA<������<=�N�/�|=��o���c�>���_��:�<֠�<� �;��$<���;����P<�z��w -A=qr��B��<�R[�ţ==�w<]�;���y#ռ�V��7Z=�0�����;����@�b9^��Ik<�� �"D=��s���%I$=u�,���*�&��=sݜ<6����P�����^��<��9������]:��O<���;�=q�*�Լ�.$�6���E��ƭ�<��'�Ş�:��<)�<�h��@�vR6;��G��A��x�Ǻ�Y=��~;�����G�bz�<�����ߣ����$㖼�0+�U��^R�Xջ�0��t7����<�;� ȼ��U��;�z{;�hͼ�c��wٺ������<�(~�ph=j0;Ԍ��3��Avm:�$��D;:t�';��=&N(�<9n���#���}�USv�;�7<�ps�,Gg�"!���+���<��~���x<�˻�V=�D�<���<�b �+�\��^�Oh���u�$&=�'��r�=-��S5޼�� ==�����I��c2<�<�B�w�?=y��;ۏR=:&�;?�Z=��S<+�ܼ� ���P<�e��6<������;�'��<+�ٻع/�9�'���`k���<���˺���d��;5F���~?<8�SQ��������n�9ePԼ��;���<����+<� #=B�;�E�<� #;w -���~�;1P<��׼���a̮<� �_ -����P�B.x<� }���<� �Ju��ܔV<���r*�<�]*��<` <"s�;�?�A��<�˓;�fk�:�2��c�XU���;-��<��&=�����g��|�J=�X=�\��D���� ='>�;�-]��:�=�'�� 弫��<�o�iy|����r<��H��p�I�a���Ѽ*+�����;���/p=]Y�=wǽ�<�M����<~Nm����;��<��V���=�F-�������I=�w!��Ü<�=�s+�l�ݼ@�>���;�>qx�,��t讼[��� �<����G�#�Rss�����*o}<�1�<"�*=�{;���;��Aa4=��U��Xg=�w�<�U���׻*҅�U��=�@�<�� -����<�}ڼ�L�<��H=l�S=u�e=_�"=P0= |�������<��:��F88������q��_����!�;a]<�-Ż.��Uc/������s���sA��B�=��=�ټ�I�r2����܁м�1�<��<-�Ώ<�+z�χq�u�e=7�$��;�R'��è<(�;�LZ�i���m"<�d��̞������roM<�м��#:̃�\�滛�<���<�H91�:����ϻ&���Ƕ<�<<̞�<z=Y�:����R�����v����<�� ����D�����:n#��s]�<�H;x�s�k��I�a=��;�)C�0�l;��*�<]�ܼޞ=�����;�{�<<[�ښ<���;4�z�6U�<�k���a=���Ԧ><�����(�����<���<�o�<~!�;�P,=�XԼ������󺘠ͼ��<��׻;�)��v<�N�=�R3�ۮ�<_@H=+B�< 0@�Uډ<04:��m<�R3����/���΃��q<(��<��:�1�;x��<��<:����D��\��V6������s�����<(�<Π����-<������H�G�={�;h�4��{G<�!;�'=�è����;�N1:���;�U;9��;���9�y���;�a��5��;�}B=(Y$��y:��;�]>A<��;yc�;�U�,2���={��< ���{U���<�B��P�F<�^ݻfHd�<ּF�ӻ��ĺR��;���<��<���;������;�#����N=��_:26�<�}*;r� �6U�<�غ��_< aغ���;S��(=�� <9�~<��»a�)<*҅��s<����Z绚����;�芼%( <��D�0���@�;�k�ҝ<�#�<�g�<�'T=��<�'l�s�����<�/�Ж;�=g�>=�>������@��ѩ��i=3eN��L»�Tv:�Ƕ���B;��;��`�3����<�]�{�9�A=�ؼ�3~����<�i<�ţ��Ϳ����5=�-�:��6<�E����s�$ -=��<.�ʻ5 :;T4����B=��=���<��Ƽ4M�<mͼ�6�<�d ��9+� -�<��=F0 =��:��";y�;���<@�@�t;<���<#ɻ�3;�!=�t=K��<a�<`᫼��1:��<���;Ҏ�o�#=�'�;=�T��e��S`P�cN�Wp`�c���Q�=xV:�<������*<]�����; �ռ�Q�]���J�<���W����E���� -�<� ���zW���&=�D�<�8�<]��K��t�+�I;N �/S<��o<�YK��[�<��������񚼌�B�:��k�<�M���?�<�(��z5�<�2<�#�<�d ���1�j������A��<��ƻ�i=z5����"�gū;q�?<��_=G�< xQ=e8�<��e<�;�� -����sE���׻��*=�H��I;J�ؼ� �Ҏf9 ���Jv=�ʖ���J����$�9��;qh��9+��Z=�_��4�;H�h��@��j=��ޥ��c<��ɼl\<�}=7�̼���ㆅ�м���>�P<>b�<�e��d��= -R9=7��<��%�| -x<桙������X��= ��Ԯ:EF(=�����B6���\���ss<Pa����<�p�:������<�y=�#������=S�x: <1�j�?��C�2� �<���P/�;?��< Ԁ��X���Ej���������s1��(�<�q�;�����k=k�7�,��<��Z<�� ����W���<'z<��ѻ2��</��5�0�rY�Z9L��SS<�� ���9�(Y��#��z���<���9{|��1�̼ȏR� N�A}<��a�U4@<����$���1����.�{=��<�M��vw#<#����3��&�8���M����<�˂�o��9K��<]����=�<�v���`��f�mػe��P<�{";�DZ��i�< xQ�~E=c�?�^I\������<�Z���S���������V�< ��<��ؼnBx;���\u�<7~�;�X<����x���kb(��9���`�<�Z�<��)���%<�qX=�Y˼�=͔^=|f�<���Pa<�_"<�M:=}[�;� -W;�=�:�hιmb�<�2;0�P<�-��@�@<,.鼶Z�B�;��ݼ��&<�S����`9����:O�'=���.ջܵ>=����� =�%=�J����;#"�L=iIn�?�ۼ�f�{�V%R;�P&��(�s>Z;̻��W:�Oϻku[=� -�����b�C��1ּac�<�p�;8Y�{�S-�<�ݑ<�h�;V�<��L�<���<���<`g����<���<�<8 J��>9����>���'=a����G��V=�x}���<�=��������9=���<�h��W��<�><�&=�b�<��㺳����2�;���;2R<ݘ�<���<��V<@o��{Y=I�Ǽ�t<ʍʼ�Ͼ�W�&;��9�̹�<��8=w�~<)�f7�`��<Ys�������$;�?<ډQ<�j��h���_�<�<��<��=`�V��{<�§)=[�����.=�9H�Z�����X4;M�:=Jd��kX9���0�u�.;m�<4��<'a������;�!=�@¼��׼����A�H��W�������x;<#"r��x}���^�P; p��;�h< � <�m鼗�B���R��u<�A=x,�;,��x����=z�ɼ?\��o��;�fλ�5ϼ�b�<̼IΌ��_<Θ��=�3=k�<�h�<�f��m�<���<�R�<� @�;EÙ<�YʼQ�IQ`����6-�<���K0f<V�;4�;&� ��T�� -ڼ�{��ѧ�����<Z���^<�]d<`� <�Z��j�»@o9��8:b�\�.< #(�����pc�<�b��Y}�<���y �c�:���S<�<껪�#�򛾼�{�;��+=\\���Z�;��<�̜<��=<���Е�ku[;{Y<����B<���;h��<=<� ���<�֩<�9 �j&<o�<@_{�K�P<��<�;4��-�;��x<ܼ%= �=<A�|�;��><}?=qB�!��<�`=r��� ��y��2?= =�0���i��bpe= N�<'@�L6I<��59|ü��5=N�;W0�;�1�<�e�:�<0@¼����Sx�:#B#=�/ڼJx�;�8:�0�:��;0�Z�u��;C�<���n��U:=q�4�?�;���!�r��z�;z�;@�"�ѻ%�����<C�<��=ydA��a�<��-�u��<�� ��c���t���k��핞��=;Pp���! �f����"=�%���1<����Hܼ�=M�9�")k�c=��<u<D<��j��Pϼ7_V<�a�<&E=�8Q�M�������^/=3��<���ɀ���7����Ӽ����Q�3�d.V<}?��1��P*�%_ <ܼ%=�e <� =�'g=�=�B���Y!�<ť)�w�;�YF=�V��� ��rhM�.<�� NG�.���=J�<&�}<�m]�r�E;��ֺ�9 ��@i<7�<�a^�p�\�����o�< �?<)�:<��R��;F���H\;eG���8�=���3f<_�#���0�ں���<���ʧԼ��=�7r=D:U<��H=9|?��z��Q=����6�=�’�b*%�C�\;ܼ����a�)]�=������@i<����;�i�<�]R��3��<<�LC<-~ =���;)��<�;����<�L=�!0<$#���+��<�R ��<<�2?��� :-�;eG<�]w�It'=]n��IQ�hO���?[�;&�}��@�:V��;�4Ż&�}<���)%_<��;C6����)��q ռ�ʪ<��#�<�ٳ�Tn��D:�;rh�<�/5<�f��&�������$���߻��=���AU����>����;�����%�̼����*a��ң�;%�<��<�ἷ�Һ#�[��J���4�;=Հ< �.<F -=ydA9�'����<��l<�X<.��<8�N�wGX��7M=І߼6�<�g���ܻ����u��<� ��h��7_V<=z9�v �����˼�R ��� ���<�����<��m.{� -�9��b�i� <&c���p<���<�ܻ�T�5�5Bm���=7<6��O(<+=jlY��<ݻr��<ʧT��9����D��ES�<��c�Z�8��'��U��0�<��� ̮�:)�f��x5<^�=�?�ʧ�;5�S2=<���0�:(gn;��K�����}h�#�[�f�<�Lh����;��� ���n:�y�:��)�-ݘ:�#�J`���i=��C�|�<ë`�i a<�c�� i����&<1!S��ၻ�PO<�4�<6�异d�;�7� �%��9���(=�1<��Ƽ kz���>;1!ӻ�<&<��u<�}C�;��qĻ���/��<;��2�h�Y�=�=��3<�)��:…<�6<��><����%=�"6=ݩ'��BF���3;<��=ґt�_�< ڿ:�s-=�Wa<�󗼈u�<ϲS;�F�<�A���;�����;w�:=3��K�zȒ<&?Xo��?f;��ʼa�<���K��x���0���� ݋� �+={a3<�=y�)=S~�����o�ކ,<Lͼ�-=*<��=<�yNƱ��� =G��o�N �< �+��K�������卼V�d=~2��*�<͊��y�S;X�=V_E=�,n=�8<ߋ�1<��'=HI�ι��2b��� �'\<��Q���^�` �<�-�D^N�����8S޼D9= ������>��<6w�;��;^Z"��� =QgƱ�vɖ��Rἧ�Ǽ��<����y��<��}=̅���c�SyQ;N�<}=�=���;��P����<�Z�<�]Լ�����c�~=.R;>�[=��ݼ1 ����<�Ф<� <^��<�t�;®��ܥ��������@�К�x�}=�݅��M�<К�`⫼��k�=�LG8Q�;Uܑ�ZE9<���I�,=,y;$<�c�h�=�m�<�f��m;B��;��;�����<��6�a@����ݼ��;��$��=�����z<�]�(����ʊ:h(=�v�;7� ;;C=ɟA=�W7�<:��;==�c��*����S�+B=x�����^<�e�;o�<� - -��x�<]+���"��-<��\&W��<�;;X��<���<��J��-�<������O�+B�;28�<�L;�;S~'=��<*gP;z-h<��\=��y���Ӽ�<�<��;"=P�ҼUϻ�LG<���<��Z��'Q�����X�λ�4�<��o;�̼w'���C<4ּ�ɓ<�[���w`<1 =�$�W��;U1=|�ǼSyQ<� �����<*gм�O�;A�O�#�h:?p��c!;A�ϼ!鿼Z��Y��ۼ�zE<3�༫������;w"+��+w< ,t<7��<�Qj=,�ټ�Q��y<0�<կ<<��)8[�D^N�"=���Ʈ;�갼��\��@���.ܼ�< �����Z�<[y���<�qC��9�<����G��e�;� -�<�]Q� -z˼�]�;Qg<) 演)�;(�����^��}-��@�'-��u���]+-�����ۺy�o���-庱܎<*b��O�|;-k%=焼���ߋ��Z�;W���,�ټ�� -=/��<��y<�w��3��;�R���l;7�T<�gʼeP��ie;���^0�o��>�1��]�9��6�#�<��E��Q��B�%���Rd=<:�rl<�=�<қ�< ص<��<��A�gR<�����`�=P��� �.R�;������y�)�pR=��;�<4<�S <�������N Թ���"=0�=�����Q�[�#<8Հ���;��;ޫu��<\��<�+���)�='��Ŵ�"BT��9�;���<�H�N:I���o�j�����<��T=I�K�a;��ie=���)�F;D -�����<���<�C�}={<Е�;��f�;��)<��� Żvl;j�����=�#�;e&��f�=��"��[���9;���<��R=��ڻo�(<&ڼD4��0��JO;# =1.⻼;=<�� �2��O?�<p�����i�[<Q#���)�Ѽ��G=b��o�޼?�<��ڹ��J�q�=����經�R�߼�a-=ʾ����)�Ǽ��<��}��|f=aP=%�<�M`�:�C�u`�<�û߳ =��H�F�0�һ��;�}�S��Q���==���;/���=t;�8��������uG<�h̼yO$�bs��I<�_�����W較w�<#����F�0�Lv==r֗��d�:��<ȴ�<륹��W<�X�<��f��9��#�_�<�=L��H������<�y��}���Z��J��dZ�����r�<�G�;���b�S�<��ʼk<�r<��o< 21=k8�<���W<��<�=� �9�U;�^�<��<�2�<��u�HC<������걼�p�<%,�#L����7�ȴ�:�?y;S�ݼ��[<0#����;YM��M������<��<ə=�5����&��%=�_=��G;�S<4���W;��]:��<�ys;2��@<~��{̼4�b�������;;p׼�W��B�6=�L�<"���9K�*�E��<�h��±��A���x��<�<Z -=����S>� s:6�&�:{��y=��v�nX���y+�h��<���<]���(��EŻ<_M`�v�����*� -4�<��:/��n���'��;yDB=^����t���:��ɦ�Sr;OSt<_�t��kF�_I�=�� =��.=pvE=��t�՚�<��S=G=<� �}8,�f��;���<8�[������9�;pGL�8��<������'=U�.��`k� ��;��S�$^O<�G:=��<��< ��b=05�<�����*�<���Z -�~k|<` ��$E;Z��=���a8>< -c�0dQ<����<05X��p��� �l�M������P�/�e���1�箂�������K�;��/�@3<���<'c��n�<� �;��H��Qݻ��ܼC+<f����w*k�����eh= ���靷�?s߻}8��̝I< -�<��.��h<�9=����� !�R=Ӡ<��<�Z�(�� =�g�_I ����;�Y�<XM=pvE���Y��~=V� ��/���ؼ�Ӽ�� ��-�=&�<\D�<5)B���y�9�2;o��;1O��wYd<*l��*l=nX���\=�� �ݗ5��� =�b:;X;ȼ�q6�\sͺ�=��A<��A������!�<7vi<a�;PmK�N${;(��:օ���<�q�<�`k�Έ'�6��;��ܼo�g��3�.���ނ=��=��=�M���sL<��p<���:`��kO �m�2�� -8<#� <� �=���8�[:�U�^������f,�<�Σ�,��<ꈕ�g�c< �;�5�q2�;�'ϼ_M`���;e���/���=�=�y�?�<��;�!Uün�$=} 3���=�1r��^����:{�xI���<�E#��� -ʼ�����9��_I �Z���|# -=pGL���<��ּ~��?����'=�ɦ��e����M��EG�Md�;���wY�<��v�o��<3i:Ж<�(x<ĠӼ�N��^< &J=~����,=�`뼮 <��滎a��'a��eV�������nb�RX�<�y=�j�w*k�i�<�Z<�3�;��y;� =RX��m�2�' i�5����E}�A�/<� <��Q�h]�C�<����>�<��<��̼"@!��nb<]/2��m���9=�m�<��Լ�|��f[!����<��;m>@��$!=/�<���/1�}8�<��~;UC�+ʂ;�1�;�J���5����������J���w�q<�������7<� =ϻw�?s_<�YR��_0��0%� &�<[׻||G�-�0���R<�C�:���W�� =�69�أK�6��:BI���y�‚����$��j�<�������9�8ep�<;7���m=�b�<��<���<���OS���� -<�z漨-Q;@�X�;7��-*;(g[��tv��D2M;�ב�@U�����<�+��T9`������=�v=�T���㼾a��3<���<�$缽� �t��<���� ��;�bN���&�ͼ�1+>�|@{���E����<�Q��ڻS���t=I�꽻8������< �ήO=�[g8���< -�μ{F�:z:=%���ɓ<��>�G��=i��*Ni=��/�99T<@��,�l�g��<�o=N��V<����<�욽R��<�1 �6[���6�ʙ�;Aì���W2M<��#�4���1=���<�8$�8�<}iA��?;��+;}�+=���j� ���j�" ��8�(=�ו��bҼy�s�j��<�*����[=�+j2ͼ�1=ͼ�;�B<��.=�쮼u����+껏iI��1)�@ǺX���j�#=c���h�<���w�;=�2�<�����wk��F��awG=v��<���<�#=NN�;6$�:�[׼@�>=[��<��P����<b�<i �3�;߼i��~�;��<������1 �A~B����<@O<|�9�$�����[�<�ސ2M��[_��h�<�� -�@Ǽ�80��~�rF�6%<[�<�b�83�� -�N;v?���1)�^��<���ԋ$��d�{�<���;_F;���:�}��0��<�1�� ~��:0<>�t:��;f9h�z̻f��;u��ɵV�b -=��p�o�.�ƒ�;�� -<������4Y%������;dG��Ѥ��舻7��u~��������.=�;#=�� =��<�Q�=�<^+ݻճ�� <��"=V䄽�h3�� �~!H=�\�����+�ټ����� -�L׵�m ��upF�IP=� #="<(! ��%�<���<��J<��<��ƽ� �+����0�c�<�����=4`�M%'<5�=r�-�5��<���x �=��<�T=m�u~"�a܉�>_;x�̻dGj=H��b��f�<ʓ)=�q;�������q����=�n=�.������K=7�O� -O�<M=jj�<�8��<:��:F�p� � =����~ߺj���#77���`������<�ׅX��U�Q���B)��������<)Z2����<�A�;F�(���4�Մ@=_��g���ƩU��0<�^s=�֐<��< ��u�<�l���=�[�:��$��������;�0��]����$=1����)<�+E<��Q;ж$��3��Ε��T���uW� �B��T����,��)+�X$��&�:�3=l�V��`������њ�<1��<�5Z��O<� �ob���n�<"�3=�����f�#E=%~�<�������{� �^2�����<����������;��`b=Ւ= ���� -=N9��3=�=ռ���<�dl���<���<� �������<�I�;ѡZ�s)�<���I4��=�wq���<@�Q�(ӼdUF<3�<��j=���;ya=?J<��u�<^+]�#z=۠M��E8<н=vť<���;[�D=V<����\<�s�;�Us��#��v�[<&���u׼���<���9��ּ���;a� �)��p�N= ǂ;�A<� =� -��g&��_=�5�~(�<��a՛;�K�2���z�@�;� =�A=@���T:Ƽ�!���� =�8��Z�<�OM��3�,�8�o9����<h˼�P=���<=��x�<#E�4Y%��e�=�J��+��M,�<�R\��R:׶y��o���w=/}-=�,��=�\��e�;�tʼe��<O�;�Яb���M�yS���B�<�/�� �B<�\�./<��g��9 Ӽ\�� �8b;l͠�)� 5[���۵<�;����;*L�< -dG���5;�4�;9�=*��;�� �.�=���Uގ�~�y���B�5�߼���;�;��t�<� ��ӑ=�� <�c�<�8�숄��8 ��]��Y��.{��Z��<5�����;=ز%��LE�*�gu<�=`ц�sn�:M���ֻ��8=�Ҩ:���;8���;2Sv:�;Q,^=�J �'y��=$=��j��AúWB=u�o]�i{���i����-�Y�ƻ�lH=K�=� R�K�<]h��#x���!{=�?=��B�<+�<���;�&��(!=�F�]�:J< �>=�F�<� ��m|������?;�I�Dq=^��;nM�;�&��r;����;�lg�E 3="/H�O�*�1l -�;�lg<ߤ���6"�/������7%=�q��XJ���`�������:��]����;@��;���eA���S��#�r�D�������.{=��;;&̹�zS��T�<<л:����ܼ2�,��@!<�Lż �����ۼ��;�~����Ļ5��<"/�<��ǻ��S=5�p�HI�<형;v��9U|<��)�V�cK�c�S<}A=�A$=9U�<2S��.{��� �o��������<�=��z<��h�MJ;n$��5<-Bb<��չ����Y.�n�\���O;=�<�-&��=i�<�C =ai����z<$���h[�� -��>�<��F<� w<�b軖d�MT�<�$�<:�2=�<�~�2���v��dZ��V=r<�T�<�ʯ:ޔ ��T<�$ ����ɮ=�8� ��T���L��e3��;O�*�y��<�E0<ԡ<3�;��b�|�׼�3<����2�,=��<�ae9/�����t��6�5�p<��Y�<'�Zw�8�e3�d�d<�l;���D�*�.E=�+��=h[�;�T���=�7���&=�<�v�<ږ��9eq<�؊�C�(�Qp1�K��<؟=��k96c;<iN���5=��~=D��"D����<+���A�=��=����؊���n����:���~�8��[�<�m<��e=��X��<6F:�\�<�c;K�=~��<�;Y���ۼۃ�����'�;���=u���[=��P<� -��G����D�/=ۃ�<�na�k�K;�r�<��<��[���,����<'�<�mF��;7�1}����~;/�\�<�w�}r<�0��IO=��d;���<&��;VA(<}�n�����u�;tG]���4<�b=D��;�6��g� <�Κ��=�/��;Z1�S](�J��<;4��s2=� =y��c=1}���e=!=����,ֻD�;1�D�1��:���<�N�Z0U�%�<8ZD���<���</�<ר=�6��j��=��l<B!��Ek<.�ּ�W�< ��q=�r�F�(<����^;��c;���;��b<�r<@$z��SZ<��=y�=��Y�\����&=�O<��,�ײ<3�<�T���亲� =t{���>��=�/��✼T^C��ƾ���v�;Hּ�k�; ט��AJ<��<�m�<�� -=Q��"D9 �E�������=�x����H =���<# -!<& r����;��.A:H�^=�C5��$/D�1��<'�����SI�D���������EI<$��#6� �!�D�;��=li<�Lw<;H�;;* ��t�=���u;mt��l~»h�K<:)�:���Y��`����<��-<ϼ����<��w��s��;�6?<�V��{�<�<<N������=m"ļ~�8"D==6h���<O��+���d��M�;\�=٪����Ƽ����P�U�K�M�ռ��<���;��ۻ�Ӻ�q��`�T<+��<��"=�����;|׻;>D���-;���,V<�T�;W`<�4�rE'=���rdx<�<���;�ܻ�g��1���� -=:)�J�C�ڵ�:�r�:&�M�j�o��Ɯ<|�A���[��|л���6ƻ�� -=VE<"V���=�ļ��I=W�.���=��$;��J������=� ��� <`<5=����/j��h��'�Z=\�P=�8����< �<��< �<�tw<09=�(=j��<�4<<��i=[��:�l���wϼ�b���"�x�<.����0��P��<�ks�=�v�����Z2=��N�Ɨ|�\%�������<����Y-�����x��<׌N�u���]�G��H�;�Y�n��l��̶="�����W< -��<�;2d<���6=�S�J�;�����[Q<>��<1X��o󔼣 T�B��<�v����<�͘<��s<�S���?�=ݑ����Ƽ�T��7�1 �RYL<ܽ0=�B����<�%=�3=�6�0�:4���N��=7�3��Շ����=��,=�D��I����<���;4P�<��S�����<�C��;GD<�9�����N�;���;���� -���@=���<�d�ȅ,�0�!����v�Jy�&�P�^=�B��ks<�V ��� -��L=j>~�b�;Y���h|<6$�<�Џ;{�˼��d=A8=5�C=f'ջ ���(�Ɨ���ef<`��;p�;l�k=y��<��Ӽ�9�(��E�� ��� -|<���;���3ጻ�H��C8��',<�WA�q|����=��d<��:p���<��[<���aA����<*��Ns��V�<�_0��1&�w!缳�,�%�#�n���h]<��Jy:���߄��;*�;Ώ�<��}�Ns��X�<�,�9��`<{� <��R;EE�: �ȼs -���b��vMp<�S��)�Q=Ʊ5�S�G�/j�:�߼���x��<�t�<4����n<�0�� ����=*�=��L=NB��o�=z� <�a�<;��<�<���8)����;# �Ʊ�_��w�k=�����q1�;=+�Jy=2ּaA���Z�;p�;K�~;x���=�����*�y_�<߄��qa���<�k������I��:�4�:��<�� �6 <��F�d�;��$=5�C=��Jy;�+�� �;h�<���v�-=€Ӽ�ze��1�<��t��=����N<�ӆ���W��<�; ��zy���� ��΄�d��4V<605=�����<P=�>�����/�k=R���<�ߛ�Fa{�<�<2.=��� �Y�P���u��c�<-�ҼN?Q=�뼑Z�=�Ѽ���<\�;<'��<�p=}`B�O�a���=�%�*=)��l,=�;���; ��N�=Dn=�n�<�1S��f�<����� -���Ȼߘ==z��;�.=�i�r�9}��t�Ӽ�L�ɨ�<�;߻B/=����Q�z<���<�[�;�����P=K�/=^�T�k�<��<��;���4�;ow=�\P= �i�h���[<��B:LF;XeH=��4V�[T�8;ð;/"����+�Z[�;w�<������&�U��<��< -y���!Ҽfw�<�=<�����cټ�i󺫋�u3�<?��`@e<�W;���=���(���h߼��żW�~�*:p�������Ƽ��<�&)=��<���мp���W@���`�<�]d<.἟lQ��6<<��;��<]�C='�F< -$z<���0t����8$X��U�庿�=���3��<�bj<�Ǭ`����j� �=ɨ><�-2=�'��sZ;�;:=�\P<= �H� -�z��<~�ʼw�<���<�2�<��]��{<}:<����»$U�v�%<�T��;3<d��B� -<�P�����쏼���f���h_=��g<��2��m�<�;�=����88Ȼt�S�)œ�Q.���8�����s+;�� =lj��4`�9�����<� �<#���w'=̞�<��(=��3�K ���<�Q0�� ><����=7�5�&�g�x����;� �}`¼���غ缹K;=e��F�d�X�HZ���@V,=�x�:�.�;D�=w2<�(<�㗻r��<��;��/�.�<^��;O��;�;:<�sZ<�%�;�˨������s�;Ty�;ҝ��d���Wo�.U=CE��û -$��lj�<(G��2���D������<,�J� I �r����=�4 <��;|�1<�w̼������+=� �L��'��<���TX=7�I=~�<�=�����<"_S<B�<'����q�'G�s�¼�Q;�q��v�)��!R=��E�)�߼ *�n��뷆��me�l�������;� ��G��Q�4��<`�ߘ��L�o�W��Ǻu3��{h����7)�_������%;�~���C�-�R<���;e�;�����2<�X��_��ݢ$�ݢ��� ;�K;;W�<2F���;AѸ�ᑏ��q2��FZ�f%�<���9�ּ60���V6�Q�����:�� -<����|-�p�����Z���k<�V�&��;��I<{A%<���<�%=�<>��4�<�Y�:���=�����=��,�q�;=� ���vI=�:<��e���<����<�i;Y��:[μ/2���<̞������@i��eq=�o>��y��F =�O?=� ��˂~�s���I���>=�0�W�2=�O༗#�<$X[<.�L��礼іT��T��іT��;缨�.�����_�a��9qM��{�}�F -k;#���$�e�����Lj=y��;ޒ = ��<@��=I� <�0 �E��<"�*<�߼�h3�#=k�;��;:�c=��޼n6��o�A�ϼy�g;�Y��Z�ݼ>O�<c<��ռ}-8=�N<�W�O�;�H�;=�Y�rh;#=�B,����d<�=,��c�����=�h�<��< �J�KQ��r�����%q�S��?�c �<4]ؼy�g�CG�}��<�!�<$Y�I[;=��ͼ�֟<�}��AY��<��<���O$�O<�7=�f<�ց�x <�f���<��<�F)��5�����<�9m<;�y��y)��l���ۜ��m� Ց<ޒ�<#�5����fe<+@<����U�7=���������?=�o������4��@=NT!�IΕ<�m��f��ޒ����=�m?=�m�:�MC< -���lm<Z�;� L=v⻡�B:�ح�U�w=��g;�l��H��<�����R�<�����l�<��a��*v�@�߼ȿ��� �<�$�7 �;���������|���m��s;�t䦼x{7<��<v���6�c��"�����<-����:=B��<��$�\���~�<:*�<�F)=z�����Ệo�O�����<ܣ����=�:�<�s�������=y� ���+<O���d��U<]��<[� =I�=%:-��`��'�+;h�z�x�w<<Ӄ���<�D��]���Q�?<E�<̞���졼�����r�O$�*:��Ƿ;�����ح� Q2�8��:��{�:�?��q�<�7A;��]��:�!�;�>L���`<�W���F)��Y�:f�?=���;��u��ց���@�'�ݽ�;�O�E7��{Ƽ�Z����;�K�� ��eS�E�z��X<{̇;Dկ�q!!<�K&� Q�<2o<�� -=Y`8�w��< ��_�C���;J�<ݾ��=�� -N<���dY�<֭@;?ټ�֚<���<.����=�=8`Z��ι<,d}��&�;���H%� �;H��;j��X��3�;W��<�G< =����޼n�λ�P��呼+��xһL� �i�<�H����ں�<��<�5=��$����<q,�v��<�c�<z��sM@=��e�<��<��4�Cj�m�;GT^<"�!=��`��3<�,��ȼ�0���9��L�; ��<��9�k.�r�ٻ�JE=�<����;�t?=���=��<{�(���%�8��q�,�T�;p��<�4(=�<=z-=�p�(��;�z���zE=�.�����<=e;sM@w2���;<�!�5�����<��a<<���Ę����[�;!�$=i�Z���;����YΩ<�Ǔ%=����=��ջ��6���<��;�c;�Wq�+v -=~4�<��f<��:�)Լ�DO<��);H��;$�<�8S���8��ܻ��a��s�<% �(@��պM����=m}8%�<=j=�L ��>ɼ�Q�<����6�}��<��8� ��w2���z��5��ݰ<��9�d =�\ǻ��;�*�=�� �nم<F�< ����,ǻ�;uϺ�Ǽ*a =���'B\�.����z���������;T��<�5P=�Hr�G��<��9<����H���[� =@�,���:ᔠ�pI�H��<�3�<�AL:�Tn:^��;u��<�=��<% ��L� ���~<��<9U=�#N��<-�J<�,W<���;��`���,Y4�ɑ�H��<���·��l��B�ɼ�����B컌�V<����8� ˼�\�E -=OC;� �@�<��ʼt��0��;�=��M������=�H��>�<�]�9�*�d��*=��z��bMT������5����=T�%T<\ =�꡼-��I���W����=X.�<��{�-=�� =�I��_d�0�u���:��1=S$=��-<��̼<�ǭ�P3���><sh=ƊU=��n�J=��w�1=eޕ� K'<�˃�F�a<�*���=,��<�z�=�щ���:<\�������ƕ��f�=�z�;���<�;K�ž�;���'�� N=�ꎼ�����t�쳃;<�<�N����캇a"=U�< A�=d㖻{u��*�2��<��<���񮕽���<�!z����������� nT=���: P�#(l=�q<�� -:� �� ��[ ;�C¼�N���-�� ;�*�T��0鼂�j� -�n=+Π�2�G����<��������w<���0�ɻ��<�̈:q��<�����<�5�;i�<���k�;�]��aー�F<��~<� ��A�;�З��X���5���<=� ��s��&��a�=�e;̔����3�4�E<���;�<��n�<��<�� =J�]�c��8��;1�ą�9# ���,���i��| <'R���ļk�&��:E=fٔ�8���H�u��C���;7����ż�{���`=�M�}�<&��p�8�}ĺ���P3=7�<��=<�W���v�<������<�>T<^�9n����A����<�? =25<*ӡ���=����uL<�X��� �=� J<�Ƃ� _�8{�=������9< �l<d����t����K<�����b���l<�>���IۻN=��y��Pt���,=��1��5������.��!2��X�;:�)����Ae �}1<�r���7� �<��м�{�����L��� -�<[f=��-�!9=��׼�OE=hfƼ<��b9�<<1<�5��֞������-���R� P`�+1�<%⾻�;�<�9<� :�r�뻔%��4f��ӷ)�et8��>��#�����<�O=.d�UJ�;a��c��򇟻t�=�“���;z =2�Ǽ�Ӗ;�c�:��s9�<2�2�����O��������z =����_<���<�Rͼ����Ļ6�U�ͬQ����=��<$<�<� �<Bw���<���+�<=�q<�3j��y�<�<@�&���@=�鼜�м��D�QXB< !��V߿��9z=?��*�|`���l<� ����<�`��~������;NU�m�X����;��2�;9�<���=���a�����@=��-=�ü���<�i<�C=Tq�;�> =�-=�I��������;zȼIv���|�3��;�Q��*��[f�<���<�c;(�a<*i�<���<&w�;T���T�6<��ݴ�;~�o=�Ѕ�1Ma���_<�L=*zQ�t�����*z�<}�;�qf� og�H[\;��P<����d�;�34=K+����G��M�����;6�@9�ʘ0�DX�<���e��;G��<��I��*����⻷f�9==h���"1<���;��R<�L�<�i�m�.���<�A�<�A �+1�;_G6�1+.;�6�9�.<�":�$�� ���|�.d�|q�;w�)��� ;Qi׼)�"���Y �<]=�߂�X���_k�τc��:�<��a�z=@iļ�=��R�=��;t[��@���<�Ma= -˅����<�q�;��<�Yh��)j==Z;�L; �,����仃nt=X+�|��;rnּ�A���?�=�­�xbm<=>��f�;��=��;|+�=Z<!)=f$ �;b<��� �<<�����A˼A�=u3�R�=eg�UC==Z��<���gR�Z�B�}�ϼ&�w�<4�<7i��EЦ;�?�<��׻1��<�����l�:�������=L��^C����];�{=� -��u=^C��}�<�ƻ��:�䅼1��;�eo�M�û�'�:{����n;_��;��ݻ�M�;�Ƽ-��<�<�߾;��պ��:�7<��պ���<��<�YJ�HJ2�(��<�&��ł��"H��Ζ������lռU��S&�.i�<�x\<�x��������V���{=���]�; ��;'��<�1="���)�"�~�����\�qC<��Ȼm��qú=��;���HJ2���]L��0�<�'=Nе�����I�E�|=�����Rd�p9=S&h<.9U<��;މ9<p�;?9�X�z<��\���<�<�;X�ʼ|+�<��`��&==��;�<���������)=��$�w���>]̼p*�wL��߂ ��[K���Ǽ�}2;X�J<�R�<�x<4����;���V<�<�;�x���)�:�����<�H���M<+��<�5��T��Ԝ�<�nt��&u=h�:����#���׼�ʼ�z=������;#D�['@=5�@�. :�D(�{Ca<U=�����u -��N4=I}[<�k����<.n����/�FFn=��ټ����kn��kn����E=�m���߼�<^>�o:���;���;�i��\�<�G?=i��<�C��ԼCM�"�;�� ���O��l0=�����V�<�J=7�� ���k��cK���?����i�4������U=M��;k^P<@�;�:���=� N��ݼ-� ��54�z"D�����Ț�ۆl�'�i<���96>��.?��{¼G�ϼ4���[�<<]�������%�;W�`=�"�w���g�6;c*�=SU��o�/<. ��F;{���.=�����������,=r�J�� :4:}<���<��?;<~;=z"�<�lj�/I�Y����`�13��큅�=�W�w�F<���Z�]�J�/;��V=���<����{�.n�<�Ļa��<��;���vg*=�}1���~�5�@==к<���:. �;�K=��n��W�;#�=��*<:�ڻ)0�9|��;! ��;?�s;ÞD<��p�8�T�i�Q�?<7����3;=s=�u -=NYʻ�C�S�����};�Ϧ���ﻧM����;�/�1d �Չ=0��L��:(^�û0ż�� 7!s<�M�S��� =������=�#<_�=/ɼ���\ۃ<��л�����:�3�B��5���ջPf<^_x��.�;ғ��.����;P�H<����2�<���;�i=�Mm���x< =%�ͼa�X��]����������)9�L�S��cK�;�����j<��ü埋;�;��-��p��μ4:�<#�<��3��H�#�:��<��[�}(����S�<<�����o�frԹz���%蒻}��B�6�Ys��+&�:]��<� "<_�4:�;ˡۼ�m��a<`#���.�Ț�AI��ẛ�����;2�C�VK�<HS��r輳��<��^��:&��ƒ9󿀽 �4<�=K!�� - =V+;t�I���i��=G�k^�:�J=Z��s��# �O���=�\�!<;,<;��<$����<��V�l�<\�=�<�;Tf�ݽ��. G�S�:K!��X�蕉=r��<,�7=a�; Wz�h�q9�!�<�П;,<� �����<��;)����y>c;= ,��O2������p;��a9�滼J!V���p���@=�2ܼv\¼q�@� Ǽz�>�Z8 ���l=�);� ��������'^;.� < �g����<֔�?����ռ�u��Ԥ�<�x���7=J!V=#K<��R���,��@��TT�<Ҹ���?�<��;�0��|<�<���=�0�S^T<��B�Z47=���EA~�:* ��mȼ��;K%�=f�[;�Xռ�p��T�Y<�I�F&=y�3���;dk�,<���p�� ���Am(���<��=r���uf���'��=<���$O��&-]=&����J� -�<���_�<�H -=w۝�Ł�C��<�U��e��1<6D��m���+4��8-�>7�y��Q� �= ����w<0�6<������xHX;��Q,� Mw<���;�d%�BP<�&��[.�����2�v<�S�<~(�<]�(<�W�<;�żc�<����hQ ��#:�����UX�,=���<�ȥ<9��;c�="U��1V�,�<�P��<����Y>,=���_}�:�M�<;�;���FI�����<�)�e�л��`s~<;�0�=�a<�\=X�������RT=�͘;H�<� �~��|Z0��3+=�V�< �;0Fg��%�;�p �6 ̼(6 <��<U�<�>>=��ɼ=��}�!����<:���}˺��׼�s���=�~=��]; -�!=��};S����~��I,8��*��<�<� s>�v�4=|Z����=� =4b�� -='��<�!=���<�'��Gw:1���I,���5�e2�t5;=�D -<eZ�>��Ȟ��H��V]�H�y��;cr�+�����3x�Js�<��=��U���=�}K��j<��i;�P=���<ۨ�:�Y(��=l��$��삏��Zf�ړq<ށT�� ��6���I����I���)�����E't;���<�ߞ<�2��w��T�;��<\��;��L��K<�`�< -���ww=_m�0����C=��A=:+}�6 L��Td���<���W/���"�<$�=3i�i <<�Q�P!����ռ�a��xS�;�'�Ű;k�{�!^<1�:�b�Bgӻ��=�j<�ǵ� �;�_�<�ϑ�P!%��j�9����!=���W1�;|��q`�<�ⶻ��P=������<��=̎*�v�S����<��<��<�I<�V]�k�{<�^�<�j:\�4<�}� �|�<��C:�� =#��<���<��;����ڤ<�� -=�LҺ5��<� ��P�;�������<���<_V��9��K�=|s׻����=p��<�V=���<�.�:�V=�6����P!�0�< ������ە;bD�<+ �<����6<�]�=Oڻ�+ ��$�;J��<ȠǼ ��<���;_mռ|\v<�����;�)��D��1���׌;�=���=h��N���� -���bx�N�3��O�; r0=�9㼌Ԣ<-m=��W:̎�<.H�;��<�XV��~<�t;�:���Ӄ������Q�<Ű��:B^9v�S�m@�<��:+��׊!;Ģ��Ԣ<�$��|�ww;<���J�9�t�1�ؼ \��n�;�T��^"0A;��I�1���<��3=���<rk�E���������T������<�*�<�y�<:+�<}����G�S�����J�dܨ��|���<(-�<Â��a悼�ݝ�#��<%�=&� �I�'<���$�:��ȷ3�� 6<�_W=8E����.<���<_��<�(����χ!<�� �:�;�4�&=�k3�^*5<��<-hT;L{�<|�y=!h�H4:hQl���˼П`��:��ݼ6o�<"�<��<��=��<�J4�<�v<�HJ<�A��-��'=� ��6[�.x~< -yN�|��:�`�<{o\��7+��(=O�f=��7<����Ń���#=ĚB=�p����<�S�<ݵ�9Ħ� �һ�7P�Oؼ=�� <�J����<��{�m�<8�~:��k��μr�; -��Ê��C��<,�6=k :=�=5�.<�T�<�)e��< �#QG=d�=<�����Ls=�H=Y�I<`(p�33���#=�7="ʔ;y�)�X׊��Ϛ<�v'=�q�E��<u%<��(�� =�0 <��q�m렼���{Ɛ;u�����Ϛ���b�V�<�W�<.6��U�b���+�����D��f�����Q=����J�EF��q ��=�ቼPWZ<��;��D<�J���:q��AT��Y� �������E����;�`�;eK�#A���W�f�N�w���<R��������ͻ؎��A���4;��=W�ව<b����=5�=�'�;[<���T=2%=�$���<_�(=�A���;ۄ*=��<٦ü:�e<�^;�N<�<��Y=�+ϼR��2�<��=sF`<��;����Yi�;��̼�����J��f�<�ȷ�* P;��d��A����2���=��;�s�:{�;�SV�k%��&<�w��J��,����g)����<��q:zW���)=�{]=�)�;(��:�+=AT��nZ�\\���΍�"s`����Q|;�=�����<�T<�H�nl;�1ƻ�Q����9���:J�����4=��6�N��� <)8�< �;��9=�=棃F =�<�~=|�ûg�.=̬�;��;Qw�<�yY�� �!F =Ʃu=�u�;���p����J=�z����ռE�ȹ��W=e��ޔ�<�����N�y��D!�����G�ϻ��-<��������XH�;_�A��<��I��3*���:ku�AD>����ع-;h<�K!=��;���/=�Gټ��ռ�n-�gw0<ɮ�<�=��8�S;A������<���T�t�nDl�,6S��je�w�5��<-������U-�.�=��$� rH<��ӻ�/=6f�1�8<7Q �w� �AD����-�l`���ay:�V��<|����;�V=F��<��ռg�����<��ջ'[C<��G� ˅<�뻚z����; -)C�7.=�lI={��;A�<��<��;��Vλ�擺�0 ����;AA�'��ڼ1`C=�~;C#�����;��Y=� �!$%��92�ʪ2;DV�������<�Ȅ;��a;�ֿ�Kn�����=��=M�*�nsj�l��<{���wa��$�2f=�����`������G`�Z:1`ú><��;I����=��c�FZ��$�<<�׻w?���~�<fO�>�;᮫<:Y�<�M<=彼,L��)�����4�#���]c��!�����<��1=S�<$.�;�t����;����dv�l��<6I��0/ڼ��U�]3���=��ӼZT��D -=0/Z�·�;|U�<����`�O=l�<�*��4�<�f�<>�<(���<��v��H�<��J��g�;)<��C;����׆��n���f�&�.��;9'+�Q���Uk�;�2���킼0���V�D��;�h<�i���M�<3<���m�<�d��rW<^ �<,!�����ΐ�L�<���=�B�o���i(:��;����O|���`��92�)��Fݞ���8=��u�C�ز��<�?����:X�X��� O|�i���V�o<b���k��� G���1��IS��W�;[ż�ӼTg�V�"=�����<������i_`;d��<��D<⊼���<#�B8`��<�My=XJ&<15���� <l�;��ƞ<�����C����;}LѼ��U=X5$=:�ڼW�<�9�<��4�7ˏ�S������~�C���C�=z��<�l��!C=���< ��;\O;PxԼ$3�<��P=�W -<֡�<oX=�0&=��3����P�ݺ�����l"<�>�<����)� -����;�e��ʨ��'�n.�;�\J��"ͼ��o=ٱ�;��I�<�1��=�=�7�<+0=�ƻ�7��n���/��<��٪<�^�<�w=�e�<vU=tԖ;��!:�Ej����q�h��T<�䏼�u<�N:=�NP='�=�T;��B��@���Uy��y;\O=��?����λ, ���=c�,<�䥼�e���(<��$=_������<�G2�!���7�;c��E�л�"�L<7m�n�+=�0���=��}jZ�9��:Q#<���уD<�|Ǽ�޻�lC={Sz����s.�9���<��Ÿ�Ɯ;@�ż o�<�'a=��;= ���a=G�����=��:P%�<�C�<��2;P��; -Q.;�̓:�^_<����-���B=��Z��N��\�%J�<�s� ���Қ$���7=�9 =͸�9S5<:ú�^I�$�:{z=:Q<�e;A=���:0a2=|��<�"7<2<=������=�<�G<ޓ�^j��P=bSC����<��<���<�ܻ1�rjD;�6=#o�XĨ<���L.��|R<�����T� E<�����l<�P =��[���*=eZw��ͯ<7"�3�+�9=t�=��<��r<�E><����'��9��<�;;�u)=�|�����-Q�����<Q�<�9��L�;�������c�� z�/�V���ۼ8�=� �M����6���!� X�N�=ƿ@<��6�P���)v�q�<�=<�7�= ����u��l<XL<�Nf�ꪇ�X�(='���c�'=����}j�=�\�<$�<J�<]S�<%�.����<�2����;�G�;�G���� -���3����;g��;/J�<P<���p�����漻�3��z��퀽 E�AZ*��d<�N/=�|����<ҁ�ٱ��}�ռ�n��oc=g��;D��;g�I� #��Ԭ<�U����<2�<:,_�9J輷0��@��:��;qS�tE���������J;��:HS ��I�<���;q5[;gqW�� ���[�e����;XL<�8�S�=in=���<��7�N��;��<~Q�

��; ��������˵<-;k���0��;���ݰ<��t<`��n���qG���L;z-�ۼs��<�my;Jjм��=�X2�?&=l�\�5=i��<*j���-ż}���B ��O� <���H�C�,��:C� <� Ǽ`MX:�ID��J=8X�<��¼�;A�ݧ��}��; �����8�j��u[�+?@����N��

���<�W;������]|˻�F�<��O�j��<�[�<���<��6�����3=��Ҽ�L���ﺢ"�<���<�|(=v¼�|�<�����<*��g���J����!r�u�!<�%�9�[F�{)F�� �=Xc:�< -=�ʼ��0��ؼ�F��t�J���@<�����;in��q$��,a=(�(�-;�;��>��<��/�"��;�0D< -���ݰ;���<�|(;��<���&�zTd��?��� -<2�;�`MؼJ�:<�x�;3̒�x�<^�"����<٪��qc(��׻�X=�)�<��<�<<�|6=�5=ѵ�u0�<\;?�';��M��Ģ�:fF�����Q��<�J�<�>�;����.��<�3���B��I��<�w<0���c�<�|���j��R_a��< A�x�: *���6=���50����� �:��=�c�����;w;<����BM<�|6=y����;�M�<�b�<��ڻSu���F�=���;�j&<~��;�M<=��;�W<��a=�<��<N�<_�<�;����J��M�<y)�<���4=.Q�<����4���[�9���< ?N����<#�<Ų�< �<�����I��4��;g�<�ڜ���ջxX�<:C�<�<�'<�ڎ<�?=��� ��;�qN�� =�b|<�4.�̠�k��~;H�g ;u�:m��`�;�j����=7ڿ;�D;.ͼFh�/�b:؃-=X��;��<��Q<*j^�< =�u��In�=)p<��[�m�9��<��<�4 ;P �]��f�qQ;<���;�j��ϟ��᡼�?�}�2���=$ �<N�����;���;�c��B��|?���<�M���;�>���ﲹ-������;���;1�_g�<��#<���<���;)-���t�v��'���<��:n;O���һ��G������xڻ�c!��ϟ:�q9�{�y<Ų':�|�;��;<��3<3�9���<���K=}�<�\=�mk���-=u�V����Y�~�H��� ʼ��-<��=�=IKP=C9�b��F,�9���K<�s=��-��C��Iĺ�N�:��<�*=H�:���)�]y�<�2�F%�<>ʻ����3�9=u]�< �º -�:������<&���ߋ�T#o�՝[���B}�;�.�Fg<�[=�@��y��`]~<�fd�>�;�'޼K�'��<������93\�;#�I=u�޼��;��&=��u��dT��V��)��8S����Y�%7��"=��4=��ռ� �<���u~j=�[��4�S� -ڻ�m���;�<����kcռP��<`>�<�Ã;��3=ۼ����m��7� <��<, -�<� -o�����93;$���r�����.�r9@�B=5��;�G&�{�V<< =�i�<2��c<�_�<�� -ڻ�/��;a\��AT�� AW�[nü�2ü����Ӫ��0�;�U�;~����Y��;�Jm�6%�;�"�2i�<-m���������N< ����4�<�Q�;����]^�#�x��Bj< ;�s=�m��xS�<�4�94�;�N�X =��a�)IZ=�t���=�4��������5�C=߶#���=�v%<�x=� -�f�M<$o�����y9bp<���w�3��� =�^�< A�K�=��I3�;����*�I���λ���[�<>��;+�3=�NQ<���<qϼ�)G��絼x�;�qH=�s�<M<���<���;��;�XƼ���l�4��Ã���<6�� �:!`�<� &����zD��A^���J�|�0=��r��"<��;�!�*<��@��<����k��2i��� �<r�<��d<��j8�=kmʼ �������ؼ�5 ���s�,����w���5�n�[n� �;f@<���&ܻ xz�<�rb��+���=��=Qب<�5�}��;zN��ۼ�pp���h�,=���l��(μ����?�X�B�����+�:�<�Y?<(+{:re��Rg<�T��:F�~- -��7ۼ�^x;�U�<�"�I=s<g�<*�;ﵪ<1<N�;��;�!�<����D�Z��`j�~��9�ac<��8<㷼&0=���jE�<�`�p)h�W�=?��;:�ۼ����o�9�~ɺ;z*�~���H<�$j�~- -<�.���w�8�:N��K;��N�?"޼V������=gZ<�._�}�=3���L��{�<�$�=W����;q��HyK;�� -�t˯<�3";�5=H��;/<)������z`<ւ�;?�W=T�I�#p�;��<])�Ug&���X=�<0O=�+�< ;��ۼ��&Y=�?m�HK�3=������7=��߼������zV=`L(��s���ˋf=~e5=ƅ�:QUt�}7������K�����<�k޼����6�.��y�G_ ;��=��O=YvL�~#��`�D~�<\ E;�2�<�����gQ=W?¼��N= ��&b~<�0ǼT��;��c�)�S�k�;� !=M�� -���� =��ɼ)�"= -$�<���6E�� b=x ;�����:�1�:)�S�/������<�,����;������� -�: �;ל�f=�����O.=�O=��3<*�������`Ž�j�;Ծ��|u���>�0[�̉7�a8���#==�t[=̉����P� o����!i�@%���l=���<�aS=���K�;����`��>���b�=[%<2�j��ƛ<���;q1=,L̼Kᒼ��<��$;�a=�d�<��Z�Mw���+�<����$�k��Y��<5�Ѻ�=|��9;ͼޣ�R��< �w���<��3� -RJ=�/� ������<����n�ڑ�;�: -<3�����<�<����Zպ��9�u���T;�ֻ󯪺�ɾ�h�<)���_�;�e=+%�YH�<>R&=]�r�5�Ѻ�=���|�<*B��O.9I�;ڑѼD2���&��n���'��-H<1�<��:�[=��K�p�<�o���;; <e���`�<-ȅ;k1��N��;�)�.$�;�=�<���9�jP�9�J<�b6��]�;d-�����4<=z��~e�9�GR��鶶�Ȏ��� �:�X���)��M�:�m��{���� �@��;�.V�h�����h:�E�{�<<��K��/� ����n]=�"/�)We����<��8�� <��<�>�<�ɼ؋����(�3PY<�9:�<�O.;�����ƿ9��O=5�Q;�g<, -�!i�' [����<)�S�'I:v�<��Ƽ�x�O��;.��;/���� b��<��&<���.s�+�ݼA��<˱�<� -=��=�u:h��< <�L����=Yv�< ٜ<1x��|H�<�L���|��k��<�9 ��Ȍ<�t����Y���\ʡ�RѼ�R�� ��R&��p�������f�!鼇�:<\ E��J�<��;s S;J������S�r57�~ģ�1׫;���R-���<̉7�1�+����;��(��X��;q1;�=��X���]f<�扼�� =s S<:�T�ڑQ;s Ӽ[%�O}ؼRѼ�Y��7��<,���0#�}ؕ���&=��2�>f�<��@:��W;���8g�T�k1���Ž;��(<�w=y���0O��S;���ؼ�*ɼ�O�vD]����^Cϼ9�w9�P<���=Ug������7�m<�L�<5�c�v�<=*;l۔;ᶼ�:�="SX^��M��;o���=��<�p2���{�*U�a����<2�3<"b=cN輎���w�<�C�W=��0= Ȼ:�<�U\���*�w���Y�&��< ����Օ��S�@<��<��`��,���)¼Ƨ�<�p�< =�Ļ*s;|�=S��:p<��5�� �W����<��#=]V�<�8F<��<�`���;eՀ��h>� H��ц<#��W[�]V@<�i�k�(���&�㵼�]P��<���1�x-<|�<��&��� �RiW���l���<�Ft<%�<�����D -��Z�<�p<)��=ȕ�;=��Y��<�N�D�%�qe�<�x��@X=�D�x �W^��J�/�{�=�^�;��鼘��<��#<_�9=a�<_�W��Z�Š1��;���a =�%�:;�,< � <ޠ�<������x�<��ɻ0@:<ʒ<��<�4�;��LC�^]޻^��<��-�AZ3=���i������);��V�;��I:����}��;��$�h��DVG<�~�s�ƺ�‰<�"2<����߭<�i=vO= -i7:�YH�2�3;Ɵ�>�@<(�[��G5��t<�1(��e�< �:<�p�<ջ�ɮ��+�ڶ�=���<��=6����~i<����� ���9ި����7<��<̜��x�}������ӄ<���T촽�쪼[�A��#�<�q�dJ��/s�<6t;��0�K�����;Rg����������e����%��X��3Y=%K&�����3��3<�>��~�y�Ҡ<�U{�ś�<�=s��<����=� ��.J<}K����Ȼg=$��< !׼�좼���vJ�<���������z��>��X�n��r�<9���Q�G:�=<�� -�a�:��?���D��X�<�;�L��з�;;��:��(=���;kt �rX����.�OX���0<'�鼮����4�XҘ<������\J���-��[���?�8��W9=קռX5=��<���<3��<�;�#��Y��ۍ�;~��M�R�;1�/�;�q�<^ 뼫> =��=�> ;m=[���z0;,X�=�K�<ہ�=�s����o�P/��Dqi=(��;�-h:��=+����0���@�����<�?;�I��ge:�?��<]f�<���!��.R�C�G;�ߗ���u�*�+����<��<��3�L -�J�e�Q��;� [���<�'�~�<^ 뻓��<��;2�ɻ >�~� -Y�=��<��w=�6=e-�<����n����<.d;%K�<��;m���cl<�s��<ߩ<�M�U�+=�B;ds+�F�<�q׼j�'=@ڼ��.;f�2=�=€��<.ŏ�1 ;�r=<^=/<*�g:[��<�X�<���;�=4���.N�F�<�.T��X�<���<���.�K���=d�;��Ӽ����B��/2<@�<�Vc<�E;�҆�������_<��D<�K�����<µȻQ��;;1�;���;4� �t�:�2=��<9���Z�N�I:�0��:y=dJ<:Z.�<� ߼4��;Q� =h���<;�-/�<�W�:OX�<©��������/0��X#<��^��f����0/B<>~<7"5�|t ��{����;�ߟ��=n~�<��=\���ힼ�L;ӄ<'�X<,X�<춦<�J2�J��<��;�r�<]I�;�<Ԁ,=�T����7.`<�p}�ޜ��.��<]rI<";���90(<-#<;��x��;(�>�q��:����"%=�s��<��Hc���~�;��k<1�c�vJ:��Y��#�<��<]rI�Ԁ�<��F��U��x�<�ߟ:�e6<��=<4�<��#�7K$=f(<}WG;q�p �����2����X)=�:����T�߼��<�ĝ�40&��5<��:�=�=JĻ��B�F����<����D�X<�Ļ̨�<�Hj<��<���;4b��#��U�+�@�I�Ht�<�~j���<��=<��S>�<^�{����<�-� >��=�GE=���:R���ǐ;Ҁi=�����y�;!�<�}=/�:�Ku�����������)��;���<�cE�D䢼] -�<�:N:¯;;F�z��]�R�d���D��!;~h�<�����)9d ��O� ��"��qk=��=�z=9���3~����<�2�eW��Y3<��a?��1a;�a����=���<Z?=��<he���<��&���ػ\�;�-<��=���<9 = u�㭺��<�w�;�*����G;� �Ԉ.<}=�=; �#<�S�<.I�ډ#=��X�V�2=N��<�;C=�4s<����0����\�;�!�<��v��Q.��<���L���=��:��<������C����\O:��`��?=��< -`<'jO���� ��;6�L;p/�;}�y�����#;T�P<��Si==��Ho�I���:��<�Cq�qD�����;Μ���x=&瞼+��̔j��B<�Df=����n<��<�ݼ�������#=��=~h��^cb�T���]N컪��;о9�i=�v4��I鼅�=; ǼKuy���F;t��� �$��;�5h��e���� -�9 �:r�-<�ۑ��W�5�s�\�<��T��P�<����+�������|�b�0����9�~��������<.kD�_V1<� ؼ�8Ǽz���7�9��<�=�^A;��� ��Q��!iڼbN;��d<�'����<�/=��F=u�i9<���<�Y��a>=":<�<������׼�� �'UY< �@<9!���W��̺��?�ɻ�<�~�<��Q� -\ ��<���W��Y���!��Iۍ= k�;�3�H=Y��j����<�.+;e ��o�<"��=��<���f�A�v��<�_� ��������¿<�(���:f�A��[r:��Y=�ܼ�i���׻ �XH���?=��Q���<�)л`�I�='��:�㩻9Ab��P����;M����@��G�ֺ���=V -üxX1=zT��`��<ƀ��`Ɗ;�9�H�<�NY�~�:�qB��z��������9A�;E�����=�<�<���9�]�=����1�=�4����?=�ߊ=GG޼�QW= �<���<�i�s�~=f�I<跻S��;.�=8�y;���;�* ��F���t<�o���="G��t�M�2< �!��,N=��&�CV��w =9A�Z��<�w������ק/�%�o:;���G��\f���oYR<`.�;]���g�뻇*q���x< �X�nf�v�ȼt� =03(�${��U�J��=-Q��6P���:��<��ļm�麠�=ʺ;8����* ��Ӂ�k��:��m���}�O��;�+��/��X�.7Ǽ�C��e�`,;ډ��03(��y��0m�跻e �B�}���J�<.����!=�Ԣ<�% �Y� ��Ļ]䇽���g�»B@A����=*.< ���5�<�o�<8��;Y�o��z�V����D<���:�i�����=�O&��Ԣ;�� :���6P=��j=_ =��3=)���<'0�;=C�i��-z^<�<�ɻ�H�;�a<�f�mE��]������ъ�< ���H��<��U���<�g�o0;�3���H���=�0�;�1����@��<.ϕ<�6i�f{�(s�8�����黵�=z$u����,k�S��<��=������"����h�< (Q<�5��j��8�y�����z��5���lg<����p!��:;Z`<�� <�4���������"���>;K~����;�∻��d��E�;Þ�����<$2<�����5=���,����"��<�o廏�W��|���r��[r��,�<��I���d��w��{�e<�l�;B@A��t��P�l��<'0���<�!Ud:9j�ȏ�:�<���d;�Ӽ��P���Y���xA=�gV���<��ǻX"���,��6�;�Mp�:#?��4`�P��;փ�;Up����;#٠�*"&�3�<��9N�S=���=<�ߑ��&a< ?o�c��� ;/t�<���<��=����vNK=����Yw�RI�;e�+<�<�Y���t�ћ�(������<*���t��^����G��p�<�.�<�L�GzN=�- =h�@;�v=�������(�(�-���W<��=��� =�2�4��<@��!�<9��;!�k�/P<4�#��gV�6��;�H5��;�<��<�ݼ^�\�7���e��Oȼ�<=jB<^`<+�L<�r;�ڿ<��ܻ -೻�i<���U�������?�h���; �z�����;&��e+"<� �<�j򼢓�<@���ϤԻ!~E<�A�ۧ�QE=���;&lo�g{<�i�K���C�<�� ���n<c�G��j��9���V<��Y�p��Up�P��<���;�E<�-t�q(2�yo�;���=?������< �<9��9��:���]�<"�\=��^��oo�(�=h (<\q����9<c�<۹����<�/U=0���-<=���3;*"3=�HѼ,�D�-f��;u�;9�����߼s��osr��߻2Y�<}r}�"�v;��<|��ȼM�3#׼�߹<�R�,��;XX]�췻�n�;���<�l���G=��޼�ׄ=M� ��׳��5» DY�+�滣w��! �KJ= &弈S弪�ٻ^�;��=��1=.%�<��<@���5»��Z��� -:Z���=�6���<�k<� -����<� ��x�b�N,=�' =<:�<���.`��I���S�<1y_�{�;kE�;&ً��4��q(2���T��Ơ��e!=���<,�޼Fr�0�g����<��{��;� :=�k�;���;�l;��;�y��(h=��; �a�(�<���=��1�p8P<� -���p��\1<�'��e�M����� <�/� =���:�v4���%=���� ��e�����Z���~=���<��\��w<���<���<�$����:M�'<�fE=������<�5B<���;�J;=]���<=M��;Ҹ�¨��ȼn�>�at�;�%�<�F8=9�q�0�缱���SU��e����;��;ù�;�)h;c�<|�/�.@ֻz$��^ �<&=����1���3�����Q��<��l����JYR=� ��a�<��F�x�&<`�<�Q�;Ҹ�=��=,��<�5B���:<����~W�#��9�/&��J�<����8�H��<}� ���μe���������;�e!=S�$� �:@s=M� =F I=���<>���N��:�(�2t�<�0�����O�=��D=��V<��޼x�&=.@ּ�T����ͪ��7W�:�����4< j=Nw����r;5����;���i�=�<7W -<��k�A=H<��<;��� �:a/<��q(2��D�;s���h����<'��<�F <�ū<3I�;�t��E[k��t=���B�<�P�ɜ;�+Ҽ�갼�$=3�/4'<�<$��/��<�+"��<�����K��� =�4i=27�<@��l�;�p���|��K=�2%��J�<��M<=9�%'<=��i���м����g=�<�-R<�Q�B���ԧ;q �=#�)�t��� �����Q=�o=�<��L��d9=�~ռ�9<��=�>+<�̄<%�b�x=��;�29�Q�+<�朻,���s<�o�!p�󖻶ƅ<� ļm8��T�.퟼��Z;S>=���;F��;���<&�k<\�Ļ��<�c=�b=����< -7�<���<�g8d��<%��v�;�= ��-Z;�]*�!p=�|���߼;Zk����>��ȣ�<���#g�<�2=���'���D��<�9D��T�h�<����2��D=D�S<5o�<����ۮ�ȳ����8��9���>;�ӗ<է����m�.ퟻ������=4ٻc�����;?-�<�u<Κ<��Q:�XK��;�\�<Ǐ&<Ӂ�<�߉;��L< K%<�8�<���;c��<7�;L��;��0;���<����= ԛ��|����;�X�<^ ��l໋<5�t:���;�� =�d5�W�=)]=>];�ߍ��&?=�H:H�o�K�-�=�2=�eQ<�k<Ӂ�<�P�� -� :��Y���H<7���+���;����I��\=0��<�r_�O����p���8��ΰ<5q�<�<|ۺ<�.=����c��;�~�:����\q;=���=p�,;��+�� ��TR@����<��;�v���`�r�<����g<�?<���3M]����<���;���=+�)��X�;GLż���:�qC����r߻�* -��*��Ip���v�;3K);��H��=3�����eA�Bg�<�����)���<�?��<�=��b�;���@Q$<�%';}�n<Ǒڻ�o��ic����<͈�C���y���D�* <���<��=��<��8< -7�<��{<�h<\~8= ��!z���=����!��3=����R���d -���Z�y2�(G����T=�ݗ:<� %=�#%���=�:f���<�0�r��N��=�����;��t��5<��<�t[��3�;쭍;�؟�jL�= w]<*5K<õV��'� �<�z���̔�j��!����0=�?ս����8�N=a]/�@�l�ON =^�!����>=§�< �Q�������¼{�$<[�s<������;�It:em�=�s<����[�<�T�;�3��ת ��4��[��;�����<_r�<*5K=�#�;6���v&鼮�=S�U�6 :�Q:������T�;Ⓕ=W= �Q<��M=۬ ;@��<�����)<�y<��`��>=�e����YK�<���=k�鼂t=#1��=A��cHݼ4��l���3��3�W<���λ��P��������t��<�)ֻ�\ڻD�5����<�<ۀ����8<����em��ps�%VT�Z(����<�aɼ"����1����:[��d؉�(j:=��;X==��� 5�;%��:�/<�5 -����<���><T����߼�a��5zJ��V;�a�;0Ն�%���ʻ���;S�x��s�]�Լ%��<��R=J}�>=�q�<⨼��`�nN���s�򚧼�$=#1sM -=� �<\~�<!μRļJ�;���[��;��߻U;%���-Z,�6�m<����2���+Cn����>ԛ:� f�j�ƼB�9�}c�<ת�<>M���=� ��U�Y<��0<�L�j�=��<]i��,;�E��E��<��W�� ;({5=!8"��K���뼞O�<���;���<���*�9<�q»��;�ʼ�˩<����׼Յ�:��P�W`���T=���Ǽ�E��mK� {<-Ӛ9�M̺�P�9$:>�07���<����D�=R1f�6"��D,=\��9�;��<�h<���.2�I�7H�W<����������#?=ʰ�;�\<���ص:f#�<�� =h[���=g��<��<���~;3/`<<)>����;[Gw<��<8�y<.ײ�4^ݼ���;�����?�;��� �<��B�\W=(�Q�l�һm�:�˼짇��/=�6"<^ (=k(�f�`�Ag=HP�� � =����/=��=4���_��=.�,wɼ���<�߻*=E�. -<��;����K;�e={����=��<~ ?���<5�5=���j�;���;�<���07��TB��]/�� -S<.s�<�t�<��B�U�`��UE=wS(��0 -�n -���Y#<��%=8�y�u&=a��;����N��ټ\=��N;I�y�R�<�/��x��ō�<��=�Ӓ��<径=��8�T���J��Tp�z��]>����;3/`=�"꼟�<4^]=7 �<�Κ;Mu�:���<��1;'�y����O�;�@��������<>�5�F#�����ƼصE;�4o<[T��@e<�F;�w�<<�a:)N�(-<���sư< ���m��?�;�蠼u�>���Y��<�ˑ��s=m?�=��}��e=)���,;ȶ��/��07�<�F�B0c;�߻�����'���!�7����/���a<�F�9�<�u<��Y<�` -�qh�<��^<5��<��r�GR�lww<���s@�O9"���;�WK<Gɻa��<�5< �1<#���kH�����8�y��Uż$*�ص;�t�;�� ��4=�{���1�&�׼��6"�<�i~�$��<����):=4�8;7���;ֻ����^ ���=<�&H�� �<���<�F=M �<�?�<�?4=������<[�-<���;V��;�r��B=�`l=hP6�约�&�W< y���h�5=�!����< � -�8Q�<���5; -�m;+q�qfǻ$*���k�<����s��;� ��/x�����<�>;4E�;d�d=���<���;=i�<{T���ڻZ�=�:��g<��&=zB*;���0ҹ�3�[�q)�]��L<%��<�s��vĤ���������� = GѼܛw��=������<���<��$����V�<�l ���q�9� à�L�<��<�ч�j|��>����=�;!)=�w1����<����<&Ļ�g&�=y� -�̮%�a�;?��<��J����~<_ſ<��ռ�:#��7!5��;k�_<�G ��(�3��<+�$�y� -;��������oǼ��+��M�;���<ё<�iJ<=6t���:)�!�3<����(=4E{:W�4<�B�>p0=R��<�p��C� �Ԫ0p0=KO�::�G����q���'|�<������n�<�Jݼ���G=2$=��f~���:��;[<���2?�����2>�<�������;�:��u;�,+���0���ٸ�<�S�0ҹ;�E��Y_��d#�� �;I�!=�L<�+���.ʺH6��V��0�9��=�=6��^Ѓ<����<��:h�<�ӼN�<�50�"�����ۼ�>5�S�>�,Ip�9� =��P<�ր��m(�� �T���_}�������<�j�< �>���D<@w_�,T��_*#���,I����AغOz���ʡ<������= M�D�t����� �}�F$�<�·<]� R�>R�R�L�7�4��;: < � �<�λ<,�=��<�^����<�L\��k�<�9h��>R�����<)�=��ۻ��:��G��S�����ɵ�:���;�r@������<�O;�ŻL������������!���o����8����0�r�&��<���&�/<�=1�"�E+�i�;�%=�u��;V��wB�;�s;�{ ��u�׈<����ü[{헼�׷�%�x�<���<�;��v;�!���ջ��<�(;�s:;�^T='x����8�=����d3���<Ә��H��<{���Z�6�l<�y��T�V{���Z>�<��d����_�F���S�1<Ͽ1! �!P�<^޿�ii�?=8��:E��;c����dX:|f Q�<�݆<0�Q<$&� u�;�P��� ��!`��`8�=�B�<�|I=�ǀ���c��Y8���C='�'=3�"=�c�M2J;�);,F����+���=Ȩ�<���������������^+=�.<�o��0���S;�WF=S�q�=a� \�QB�<�*;��*�RY��w<��D�R�L�U>;��U=%䬼�@N=c�<�=�C��&��8�=���<�&���K=�n�;RY;M2�;�m�~��n�8� ��<��R�`��<�=�"0���<Ǹ��˛��f��<��H��3�;A<���8�<��r�(6 -=[ ��<�g;�'����̼W��<�`�;��x<�Ջ<.���M�q����;�x��'����;�ã=b���U<�}���Y:h�}=���;4V�<-���=�%;1�j�,F����<�>;=<�;�9�<�.�/�,���ɼyH<�g�;hu�<�*��B�<�0=��U� R= �y;��F�ٌ��O<EH��v�;�I_�/�,�<�׼�I_<$�ּX�9@����(<0�Q�-6�<� -�;-�1;��;�GP�#�J�]�<�U���9i�N��;W�=�s��o���cQ�;-±<9��;�`WG90��;��T��E+<��%:�=�?'9�E�<���<����O|��L8;N4z�@�[;�;�=(���E�Q�&;�4<�Sż0��<��ͼ*�=� -^��¼2h��E<7�λ��2�֢=� -����i6<���'�}=���;r�m��(ɼ֩953q�� <��ڼ��Q����kT=���PӼCO��� -����<q���qY����;�N�9��s<��X<�4�u��<��B/�=1�;>:�;?y�+,�;�����!<��<�Mj9�H-=�T5=@zƼ���]P��uG ��:=���<�>;p�O=��v<H�<��:�9(�W�񼵎;��n�ȼ9� #�%�=�<���!����!<+[�B�9<ϯ���@�<���<��<ň������)�� U;W��e!�9 ōP�<?=���f���C�J��=Xq�<T=]:<=� -�0! -=?��q���eQ�3U =�;�s)�*='��<�=p=[R<�� ;�dH�;<5=S������:Υ��E=(�!= py<�(���� 给M깵Q�k���ΏD<�=���ٛ=U�<���<��Q<��8=��=����<�C='c�<��4<��+������{�<�����⼕��f��GW`.=y���#�<ض5��",=/&=6�?�~�ؼ�Z<��g��۔<���9r���(7����;���މ@�w�i:j�/�z�=\ۼi�຦)�<�*�b��<(���q ={�;NJO�u16�������==83�K�<@�[��C<�o���O|G���0<�=8����o�@�25(��5A;q�3����;�d�;%� ��� =z���ټe¤����;��!���n<�鮼��#=� -��T�����)�ۼ��;٪�<���;�}=��]��`�;���H��<�B)� �V�($�<)qE��S�yo)�B�������;f�<:rּ`�ػ�V ��Dڼ�C��9�?��% =$�#��&�=�d���D>�5d<�8�$ ���;�'��I�<��R<��*���\<���+U ��ϧ�E��;��m;�R��% =̕��}9<9�S�<�(:�����ڱ!=�9J;y<��99���ļ������弆��; �Iļ쀡$�<����%��;��z��Cg���;Ki;6j�9�Θ�A�<��=2 l<�L9=�;��Z=D��8^9?<�r-� m�<���)%��$�vy�<̖,��F��8�p�=�H=%H���=�����x��<��<�}ռ�3�<<���o;��;��}���<۲L=��»�=�[ؼ#� <�=!w��V=tt�<���;쪵$�=��e<��I�و;ś=E\/<� R�� ;�7�]��yE��[ N=��5���Ỽn�������߻*�9��F;�m�<{�¼b^��q���s�;\�9<� �<:G��=Y�H��'�۲L<�a=,=�������/z��z��� ����};��ż��j;�;;��$<�ⅼ1 -A<-�;��/<^d~��y��oE<�Ƽ#� =��r<$����(:O<9�S���;8ly���=�s�|j�,�������<��G={H<��=��,<��%=�k��-�����ϼ*��<\���@ ���$������=��;W���n�< |���,<�4� ���j���=����c�&�y�W��s��W�輑tμ�q�;.>=�`��= �s<�Z�=�E߼� <�^�)��4-�G*��@�4�?�;�mI�rs=p&�<9+1������漺�S���!���;3�r=�r <�$F:��;t9����<$�b�=Ufa<�����h -���<� ��W�9��/�=>);mQﻼ���j���d���>|j;�09����Vg��#�*=�"�:�=;x=��<�!���6�;�����$�����%���L<4ێ;���v�8��~�<������<��<���<� ���m�<{�����C�ޔ6=�������6Vz��X=�g�=+𚼏�3�#ռ� -�[J<������<���<�!�������<<�W@�V��;��=�D.< Ǽ5���1�Ǚ<�ĺ]O'�ڽQ�=<�{�� ��.{�;���� ^;y��?�<�\���ĺ��= -W��;��k<�Y���;=����ˍ�0V<���(޹<7)�<6���/;#�<�&��QS�Ufa<;��;,.ܼ����ڽѻ� �;��<���[;f�X�&��tv�<����V��C�(;7e=�"��^+=,.�;Rb���˼,.�<)g*��A<�\;�̡�6ݼ���a�1�-=K=,��G�<�^y<`p<��0�f�ؼW��� -���9+�<� -/�h=`��E�J�� 8<_¼b'�;�1�<^�=�n<���< �7;k�:i��<�t�G�q=n���8g�;B%����<"ɓ��Xw�: ��;n�=^�<5ܥ<�=-=H�j�m��.M=�9��Dj1<�¼+����br�<�r*���E;(�;�������*�=o�)�� - ��ʣ��ċ;�k`<���8��;#=7��(�<[:p����/�a�����%<< I��E��!=�����z=W|;\;"<���;�7�<{ـ<��E�"޻pp/��.@��M=��_�S�9�L�����_;�&�=,���X���(i�j��<�Ę�ֆ9:��P<�ț<^M�<���:�� �V :�K!��K!��(B�}���K.=BR�+ -��#�<�s ���<��W.��ֹ�w�:�U<�����R�q�X�3=�T}�Q�f�O�:<L�����Ơ<����h�׼BW^��,=�t%�bx¼Հ�;�)�;{�C=\@�<'�%�H �詥<��%<0/<��'=��2j:��X��ぼ)�;H�:����m[<�$=��;�D�:H���ܼ���51�Dd&����_J<{U�<� ����*z�;���:5`�:^MC<�r���ؼ���<*zW�%U㼛v-=���<�|8�˧*���M<���� -_~�1��<,����Ҝ<����L+��U��<0�;�l��h��<"1��M��<6f.=�<��;���؞�;w1���}��x����M<��=Q\�����̑���/<�Jb<��-�@�1���=�ie;��3��:V�+����Hg;J�F<p<4T =ؘڼw���گ<�b;�<����6f��}=�n�tw�4��� "<��:������kE�;��#���^��J|���޺^��f��,��A�;d��f���x=����*zW�f���kE�;�żs�<���2GE=Q��;�mN�h,Ҽ��<��z<1;�;�g�;�����z2j�|[�<�����:�Jb<�8[:f�y�H�s;�{<�^�BR<���;��;�&�<�� ���;�|�;."�<��̼akz�C]i<���+=oj$< s��[����~@�&[n<Ȏ̼����Y"�;�޲<�S4�_Z �K���n���"=:=����2G�<������<��t����m<���<��M���啁��8��[�=$dn=ܗ��ڥ<4�'��#G��N��E� -���D���ȼ���<��$������;����ռ�t2=;2�<�|ȼ]�"�ż�N�< P�<�ޝ;� 5����/��<'ꅼN6;Ԍ<�mm=t�<Y<����=@��9 =�:�S�<�R3��o|=�=w��+�<$N�����w�м!U!=���=����h�hK"=hK�� r=����撹4� �P�ۻ��=8�X������r�<�W�`�<=�=1^��"k�= ͮ:�0_=�- �n#=�:�{�D=0�=uX`��Q��L�*�:��;��<2������;=<�>|�<ʛ.�e�-��֭;D0�<8�<�+��2��<�ds<�^ ��>�<�G�<�b��c�%<�1=G��<�=$dn��&[�w�к��h�Y�L���O��]�=�//<��1=�]�v,��������8�<��b�u(D����=�q;��h=���<�K��:�9z*y�a3�F�;)�.�Bg<]7żm��O�s�_�=�B�<~�q=�dž<�Y��h��<?�<�܎;��(8tex��JC� r�:\ ;�����޳u<�"=��ټ<%Q�,��<Լ��Bg��ē����C�<�h�<������; �;;2i����<,�:<���; -���w�л�����%��> ��c�A��Pp<�� -�xa��t���Z=f�n<ȅ¼����%6=&��;�93�D�!<ߦݼ�$�:D0ڼ�����=�w>�����<���h���>|<��n<젊� z����<���k���-�"=c�E=`��E缓1d= ���4ǧ<��=Ye< �>�� ;������k�?^��g(�sX��o�<W0�:z�$��Y�<8��<;<;�<��a�av<�4�;��<�$̻y��;��;�CX��dž��8)$=@w;ž_���0;Њ���I�<�`2�avc�L���dw&=�i�<�iǼ��<�� =�a-<��q=T$p=� -�J����T<����3[:'5���*:��S��>U��8�;5�=�B����<����n=qE����-���(�J�<�ɼ�����U�<���� ;9r��3��<#K9=�6��KOb<��¼�<�ۋ��뇼�V뼜}4=�\A;�*W<�R��Pf����'�.6Ѻ +0< ��<*���4�;,Ҽ� Z����V����S�W%���rK�rc��}F�<���;��f������9���y��<��;N�G� �Њ�<|8�� �ӶN;�j��<ƹ<�)=���#-��Ƽ�A1>� -tF;��¼�C����e;�<ǵ,:�p=O�<� d=dw�;��C ���� �(���2�;}F޻�������;�:,=���<�΅=Y�=�A�<8T���J��<��?=�[~<�!���P�;D�h=/T�9&��<�9���ػ���#��R� �G��W��|����c<��<�ؼ<�9�;�����o|����<ՙL��;p/2�����M/97\��Lm'�ա�;F@�<�a-���=�,��a~=��Ӽ>��,(��麫�v��]+���&<[�i=d�=z��;9r:<<",:�����7���<9�ܹl6�;�<;�9���s���b�:7�u�f� �<���9Il�;�m_�zJ��=BO��f��X�D�汻:I�A��Q;���<ܓ���յ��<�������Ƽ�����ٻF@л���<;d;ߌ�<�>�<�0����;u>Ļ�����M� =�� -��Bm�� -�Q�<�� -='b<�)�����BzT�;ty ��֟<��[;=1弨S=�F7��];:¼1�{�󇌻�$I<��8�ki6;�<��G!�?��:-��%�Y����$";�|�<�]+<�Up<�m��"���AK<��<�ż��;<��O<�W.<��<q��<3�4=n(<��t�1e=ڨ�ҝ;�L �P^��@�'��Ȉ�S㔼o�=,��<�rr;�/=�W.� ��<�4���s6�O��������x7L��˶� �!<����JW������ȯ<`!��/�����< |<�$"���=x?�� ռH#�:��Լ $��Ӈ�2�L��+��D�#�� =��'=�q��R�<�K�<;�<����4�J;���<Ӷ�9��o�7��<]��=(���� <�^�Jn��x=�pF<�b =3�ϻ��X�]�<<\Z��C���f=�)<:5��""���4~�<�J�=OF�:V�<B�;f��<\Z�<��;�F;�+���r��追�j��4�<�֦�?�x�C��4=�<�en�c2�:��,�$�>��'�;���7j<��;M怼�ɠ�7� ��c�<��=2���� 3�4��#W��a�i=J^�<.:��8�A��'�<_���[k��U�Z���=�x���;�`�<� D<�(=URɼW���I�B<�h�<�YR� �<8HJ�΂�:�{�<,�<���?��::&�<�3*��:3�?{�[;U=���S*�<��2�5�O�N<��;����g<�Ò<�w-=0��<� <���<]�[;U<�yl<�6�퉎���C<�>���)<�x=�ߪ�f���R ?�e@�[�L=��~��IE�W�=m���*&<m�<�!�;�C򜼫�q�C<.��z����;!���P-�� �3Ǽ��@<ފҼ��>=�!�;Tc�<��a=��1=����_F�9 ��<��;}�N;��<>B�<"�_<퉎��[����ͼ~<��S:1� -��-;�%\�>1V<��Ȼ���<�ܣ<�ⱽ_�=�;w;���{� <�Ӽ�#.�H6 <�Ժ d�.�n<䣉�EJ �J^e=�K=��˼̾H=�����<�s� ʺ��=a�;C�6���=Z�û�0�;fyʻ�:"��s=��><��_=��;=���<#W�<�rc<- -U=#�;���'y� �����6��O�9��<f%<��@<<��t<� :�*�;�"=��&=p#���:3�V=c�=��6=}?F<�̻��9�h� :~���U<2p$�j:��(kZ�����cQ;v�=t�x�=��G����=O1��ϝ=kE�gW�;�+j<#����a��c���lbֺ���<��;(c�r��l�g���;�ȶ��L]<"��;�%�����\���Ӗ�@P�����a���W<��_���<����T���-�d� ;$�-=C<�;�� =8Y�;��;<.�w<��ɼ�� -=��;[k=�@�����C� �}�~�;r��9w�\;�><�>��Q%��� ;5\�;;���ܬ�Ȉ$�X��g�4���� ˻��ǻ�s�< a[<�����4~���W<=S��� -�<�s�<�H�;��Ǽ���(�=8���r�s�� $�'!I�#f=�G<���;|���"��<�K;HG�;��=�ƙ;�=�<��7��o�x�;���?���"�λ�Q'<�+j<��Ǽ? -=��t=�w�<3NX<�����X�;�fG;e�'��N =\�w�?��g==Μ|�C�?;Q�-�� 8<���<4m��8�;��I�ؼ�����j=�쟼U?�\Z����tYA<2��aؼ�ɠ����"�E���;e/9=�2�/4<���� ˼j:�;,ѩ;ފ�:9��<�%\:�(�"qh<�#��ǃ<|�����}<���<�e�����k|�^ �<�6B=�N<�B��&5=�������􁼟2�< ��zE<P�<�ܴ������;'|��J�<��ͼҧT<�G�<ͭ��n)�������<� ��/[���ջ�M6�=)Y��@�ż� -߻:$�;t����+��H�<`&����;�H����K=@Qf�h^8=�4<�����m=MJ�<�s=GC6=J�<��9�WȆ<]b�<�,�G ���7�<� M�����3פ����<8�ռ��m<��4��AڼZx;��3��v��<���;.�,�:�E<��M=u}�<�<��Q��=�a�<'K���)��� �<� -���|뻒|k���ݻv��<��^=��4;W�<��ܼ5�=������D6�w�i<���<ڹO<�F^�l�ؼj�H<0��6@=��G���P�l=�l���~=�;'�R䮼B=�S����P{�<󮘼��l=������%�\�7<���<���dBH8��Z���s��<'nĻ��n=Q1W<�V2<���:������UMǼ�;|�A���n;K*w�7+�:�[=�Q���������m��=;=���<{����Շ<�Ԣ;t��@�E��E�L�.�Q�����<h�;�Vj���D6=��B���N��μ'��;��߻�����`����<l�=�:���<#�����C=iy�������T�������_��"�+;��<�瞼�r�y ����l��v��K3=��B;���:r�;�5m<�2<<ѓ��:���:�{}��AQ;�d�<}��� Z"�rLY;@��:m��:��=��p~����7+�����;��ۼ4�e=vՐ��7@=��ݏ/��B��o� �r�<8�U;�E�:Ǩ޼��; ��.�,;�xL<�؉<�s<^��;�1N<�m�: E���<�H��= f=�����N5=?@��J�<�5�;N[��? ���<%͓�����<�%a���[����<�M���O <�uD�&P� �<��J���<,��:�Y }ϼ��;*��<�EX�x��fk<5`#<�4k�g���H�/�+K���zx�r�G=���w����Pƻ�ҹ��b��x(�=.#=�� =��?<~>�mQ�=J�U� b7�,�u��S滻��'d�<�D<�ּu �<���<͡�;��9�׶^=�[��f�μt((Q�꒫��(,<�=�� �^����P=��e��i;-A���<�+L�C\��_=W�5=��Ƽ8O��Alb9Q⼱P�<)�#�TGh���-��j�<��-�k -�<.��<�O><���TH�=�r �+K�=��=ڞ%���<9���޳<� r=^�μ�*=�0<��q���@= ;��=( =�� -�<���~=���<�ֻ���ӽ<�d�;��;Lz/�Q���}�:�cK�e�ѻjH�����|������j�<�A,<�ܟ;pA����L�x���o�;�S%�i�������ݻ���;� Y��m�� <�k����<��&��w<�q�<9���E;�&<�dS�W���I?�q�=*��տ8<1�⼅d��(��<���8��C]�QXU;QXռ�+̺#}�<L׺��_����;����p;����׶�;J3���]��|�ڻ�߿�V�<[B��_ѻP�n�E�<1ѩ����H3��> =���<=-ܼ���;ذѼ�:�<6X�;���<�&�Y&U�:[n5:�l�<� =/ڃ�*��;kb�;�B�:�9=g�z��ݫ;Zw=�B4<����O���p�Be���� =����m���z��<>~=��="�=�������40=V��P �<�_�;j�;n��<�=<������;�P�; �*����K+;B��<�y�������;"�ֻ�];(b|9��>�jc��wn�;�����:��0��FK�<ɹ�;3���ػp�����K��K����f<0��<׶�;4�<{�s;�ܟ�|Mg;�u�;A��< ;d4"���Ѽ��ٻۖ���W<����P�c�t:T�y��<�&;;��<,�;0)�Ѽ���<�2S;�=3 -;5�)=�W �ϑ���虼Ι2;�P�;E�<��m���]=���:!���������<��;�n�����bDȼ}�=bDȼ���<T�:�;DiN����<�J4;B���Gm<\�=�7üRA�<6O�<�k���>;�� �W1�<��<�޼���w�E=" V�DY=�=μ�^���z��=���<�F��<:��=<`̻jX��� -�Q)=�#=U9�;�a�����!�� =.�8��6�;��񼋀�X7=�ڷ9Ws=�Ws�����<�r=/�y;`[��փ���4����<�ż8���;@�'<�8��� M�{ɠ< tڼX�<�ϫ<���<�3<��<�z��8*(� �J;�h��6�:���F��<�XԼ�:�� ��=���S��<��=�h~<��a��ѝ���/�U�Ǽh�;���4/�B;�B�Hݮ�2x�<���<Q���j��2Z<����G=��d9�Y�<�J�=S=uG=*o �_:��%��<��ƻRA�k�<� };Up��煼rD��u�<)��<!>�c�=�(���=��]<�E�C�H��9}\��u<�=p -9=��������Ļ�Q=��#��7��XԼ�gD<�1�z�v<�D��G�|��<��=Ė(=�7ü����cC��{;�+J��\��~$Ҽ��׼�J�<��<�mO=���<�<d���.�;�&,=�a=��1;�-$�*VݼA����c�;[�=I��x�5<����M0K��ϫ��A�<�Ļ�+J�T�W<9���G��2x;�~�;��Q�l�]BO����eG��X�=0ߠ�s#�{��;�=��A���Wg��9�{��<<��;��:T����<���� ��}��#�=�J��<�����ڟ<9��<�dͻ�S6�y��<����a�'<� �gC<��Φ;���&�|<���k�����<���Q����c���<)5��!I�� �<�Q\�Q��D��;�IG�T�׼�dM<� - <*V]��� ��aּ�Z�;�7C��컼S���R�;]�<8*(<�rm�nm����@Ԭ�Dټ t�:�=�I�<�޼�r =vv=u]U��Q\���;�L�;Q�;#�P�*R�<ǫ �#Ň�K�ں p��������;�3<� �'��d��,7<�/��t�Z��a �0¨;��=�Vz;z��ʧ?�,NH=�d<��7��;����=N�F����(��y�뼓G����˼�wn�ސj�4W�9d� �`[�;:d=�e�<��e�̟*�z����gD�<<�O��Ң�cüT �|o�;� ��8���%���N���?(��+ʼ2x����<𖐼���;r���� <��r��e:�g��w>��ż���滶|�����뼛��<��-;��&=6����� k=�Z�;�Q���p���`<=�/��6�=92<���=k w<�?L;�����7&=��» -�����:<=�b�<���;诳<�/��6��uK�����,2�<\�A<|$�< /��{�y������������ ¼Ԃ3���r��X�;�����;��R�XTݻ��R9t�d;,���%��ż�V�;~�y��<�<���������!�����<��ۺ��:9޾<{�_<��6<�-*��� D�<+�!� -�;ܢ����"<{�y�o��<�d&:_M�<�q�:Pp{��n��՘� ㎼o�Z��K��:���<Q����g<\�'<��D=ذ��%`<`!�ٛ�<Ԃ��bE<" -3Ⱥ�s��Lм" -<<��������e:l�ü�+;���<�͙;�i�:�P�M���/���<�X�`�%;�P�<ȅ�;��< <�He�<�c¼ׄW�1�ܼv�V���RO=w����g�<���G>O��j�8�q;5�ڻ�H=<� ����==a_�; -�ܻ�~ =�$��g�:��j<+����me<��i<��!<�+�<��E�8ѐB���8<�D�<�Z��4�(3H��P��N^$<�z���<�!��h9<��%�M��<��T�q=�LP<{�����;�qe��F ��k����仾E��XQ��k�<ӊ1��2O=� ��x� ��<��#�<�d���qܠ<���ٝ&�ń*=�R2�rW��?��H� ��¸��֑�%G�<��<�R��G��W m�]?E�W m��R6�xヽ�Dܼd�ϼ�Y���%����;]��������;;�W<�����ʼ����<��;A� <�����r(;�=���:j�=H����QJ���1� D��4ɳ<�KK=��4}[��QҼj!弽����&5������u�H.�H֝<l�\G����<�d�<��=��^ȻP1�;उ<�������=����yKӼ&�[��^< -�7�j�u�A�<���r�ϻd3�,X=4�b�l�w<L;����<��<����Լ ʼ��o�Aè<�r��/<8n�d�O�4}[=ᐸ�.|= �<�QZ=�=���m��B;-⳼��#=���<;p��;p���X�����` =Xѻ��"<�߼��}<&kB=r��:�(<�z��F<�&=���.�zcw9y�ڻ���;\���^<���Q;�:=�k����; ��;�P9c:�� �<9Ƽq4 ��� -=Z����;k����D�<��R;�F�3���R���s�^��<�'<�<�Y����)<�������y:=�=�jV<,���k��;�Ou��R.���<�:���@ ��9������@��3����q1<��s<� ݻUĀ�H� =&��c<�1�r�����<�?��;^�8��< -��<��=x��;e�e�%㏼�x����;�jV<L;���&�:�=-2_���@=OM<������:��<��<�"�'�x<<�´<��9���Y<��k�]?�;pu;Vܤ;��ݼ�d�<�W��]��������kɫ;r���� ��V���O��;��=�@�;���u��Pz�z+p:�R.�W��;�E���|�<&�><��ܻ�&��d��م��]�A<���U�����=A_�� ����<���^⼱c�<����S=:�� G����F��4}ۼ�!��kս;�QJ�;߻A�/=�co���#<�n<Ӆ6='���m�;�w#=�Λ�ͪd�������==(ɡ=��I�����,�;N��;8 �c��� �;���;_�$<�c�:Vs�M -T=�PM=6Hּ�H�;����a<~7h<�}a<�j�=ż���<|~��ͪ�<��<>�<"�=Ҷ�;mEY��X=�� :W'���9�� =�S���G4�� @= ��<����h��� ��.`�{�2�rQ�����]H�;�p���/=P��$��i;ܽ�<��8;X,�����3�A�_�A�� �<<. =�P�;�]< Б�a:⨪���=ݲ�; =�;LKu��>����<�Q!=�/�<��o=5�ڼ�����==�D�=��e��<*�x����<�&��i؈�@�j��<��I���q��L��̸ޜs��^༸K�=v����,�<�� � �=����t�lf�<�ĝ<� ;��缆�o���=2�$���L�tԦ�(��:M ��lj<[�k<�깫�)=z�Ӽ�܌�“�<Z�<������7=���<'���π��=%���O�O��{�<��ף<���L���6<��<��;һ��=��;��X"���'��o��U���� =�/�:G*����ǻșT���8���@��#J;`�{<�c=I��<��S(;�N;4<�\��h�����:�I<��)�k��|�ϼLKu���չ���<��;���<"��^�&��t<=��fp���an<:�ͼ���� ��Ǽ�N�<�� ;������<߼D�=�P^<��X�����z�S�U�!��w#<ؖF��;�}�<���:x&X�Vh��O��<���u�;S��<�j�<� =�t���؋��\���܌��Z��?���F����=�Y��"˼J=x=�C��Q�t<���<ʺ�;ͻ �<�(I�ng�����5�.������T�<� -�2�,�=����K���0�m�<�x=���]������O�<�W�;K~�;CP����<�W&<�F�<�li�E�Ȼ�/,���=�����̻|�P���c= �Ѽ�tټ�<]��<�����;��3E����#�r��p�$��K�: ������tD=��<����rP<�K���.�<.<=o��<���Rf�YSq=SUc�Xd���Oʼh��e�<;�<<Z��:�,<3��3�P��{��ļ=ݾ�<�.�H�<���;'����U=3+�D��=�-���l����S��W&=���˺ tt=:'�:FO="�X�ϒ<{M0<�=!=��%<�� �CP<|��<[,���<�=5�:�n��/���d":���;�:����gz�<�����ռ�).��;��F�ZH�<�����C��${W=��; -i�< -8�<��\=�|!���;J=x= �a;�缕jw��_��|�vf;�;C=��ӻQ׺ � <���<�/�� -��Q���<�3=i�H�ڙ�bL=ґ�<��x=@Q�����K� ��<��=���ۃ�;5�&�á�;�]�� �<�(ɼ>�:��N���U=�7_��w0����P�<%J=m�W�$؄�U��<���<˃�7�߼d��<��,ԼH������� _; M��м[�<�:�<��1��!=�Q(�@w�S S<)��MWռ|������� � *:��YS�Lw�g�I�]�^�m���q�4<�S���<� ;S S��{�9�d������F������<��<$؄��Kf:kB�꙼���Aܼ��h��C�����μ�� ����񐻬�*<Ψ�;C�Y=���<#:�����j�;� ��K �)��<�<��<��A�i���,� ;��q�4�f�9<�A��p<��(���A�_�<=�h<�B�� m��I�<$/G�현<�nۼ@���,��<`������<��<��ݼ�m�g�<�}��J2F�m�����<&�=�4�;1���.�]�;N�!V�;�*�;�J�<��<>���>ݼ0 1��C =�C���y��=��q<�!�<��a_=��;�����T����<�ʣ�\:|��<�d�<�5��$/Ǽ� �;@w���D���0��|h�<��?=����_Fͼ�:�<���;>�=��;_FM��w0��(=YS�+�üK�����;L�����KM�:�%�O��*;����<#㶻P����q�;�+9�����_<����_����:�Hg=������;�F���$/Ǽ�+�:g�=IN;�=5<<�;u)� =��?=u��{M��$$���$e<�z/�l�G�����*���rv#��%p%<��#=�˜;��<�T�= �<����:�,�`a#=�x��5�;�pu<<�=�D�<��$�#㶻��㻧-�\�-�I��Z������·;�{=�w�79�;��;�!<��;����f�{�V.�<`a���3{:��#���<+��<[�%<��������<���<�{(���ΝL�q鴼O���6jϼ7���Ǖ=�[�ߗ���o�w3�<��G�� �<�e��V�<�}.<������<��<�5�k77�j��� ;HY�<������;� -���99�^<,ՙ��l�E�H�5�.�5)q��f(<��==���w�;w3S�� -=IN��ص�<@�����=�8D��L�<�Ǥ��}��@��`a��0w��:���;� �_ =��<현�*����@ �`��;�����d:<�=&���=����=t�<�?�����!��'<�F�<�tY��wX=t�u��Aм(;I<�6�< �Լ�������e?���;  =q�컑�<�[;����:�C��<�%� ;�8�I6���(4�'8�;Hwx<un<���a�����f-:���;���3q�;/����E=;�׻��=_��<<����r�;��;�s}�<�Y<����+����ɼ�g �����꣼Dѽ��fֻ@�m���C���8�����ܼ덂<��@<ݫ�؎�l�<��<�ѫ�� �<�t�<��=�;����@�Ld�<PĻ�G�����_�����Qɚ��b�J^ -<[��)�����V���!�"�[�j��c�O=��k画X7L�:���1\<���@'<��<�F�<�@'<+�A;n� ��={`Ϻ�v<2��<-�<"��t -��yǼ1� ={t��Lgm<�\=�� �e �;�[�<�c< ��G'��<��<'*=ax��Gq6��F@���<����zZ�<"�<�L���q�M�%;�����(�<ظ�;�⻻%={`�<�b�<�8z�����d<���;vj�<�6�˕��5�<�ײ��8�E����0��;hG�;�+�?D�w#��v ^;����R����Ȭ�]d�NG+��<�< ��;���<j@��\?�x�j=9�<�D�<�ܓ=ٕT=/7 -<����0+�ʀ�;��L��fm<� �A� �m&E=��V��`("=�;=���;~���ϻ�q��6)�<�s0�;��<�(j<��<�t��c�<"Cv<0����H_;�<��*���=�/��,�:�3ƻ���z,)<��9�~ִ��_��5�{=����Yq;ѫ �<��EŒ<���;/h=|���U� ;� -����|=4]5=� |�)nG�i�Q=�0�<1�=\EN��%�;�x��nW�=m�%��Y����M\;^,�})�<[�'=%y#�!ϗ=���;��<)����!�9m�=<(v�=��]=������E>,�;v����;�M���!�H�A���F;Q�;˱B=��<�=����p�"��k�<-�;A��<�,��;��x7=��<ه� ��<��<�� =��T< f=�U����;NY{"7�?�+ =��������R�<��=��;� -�E��; ��1��[M=Q =�Ҽ�����b?�����7��q�a=�#��_���)#/��=;&=路�JR=�U=�)y;�b�};^����2�=�[S<�ts�8@�<�gh=��<&qb=��[<̗1;m�%��X8�;�>'�� ����=���y�a�A;B<��<.ݻ})��<���Dػ��p��<�Cl��C<��<ه����4]5<�DX<'�<�B)=?��pl=�-����<�#w<۴�<����� �<���<�3Ƽ�s;#<�9�<Ŀ��R�g<�+�;�ջ����Mf�6����,=z>y��C�P�Q;_�� a<l���j��QV��F<x�;׆= f�i1!���9 C<���<=�Ӽ��¼dV�<��˼�����G:m�== �p�ڼ���<� =kH9�K-��r�;�A����h;ķ�<׷�<��<ʹ<'���hԼ��ļ�z -=#�L��������<������<@��s<;�=�p���k��<�.�:<JK:-���j���ʕ� - ͼ{Ҽ�hT�Q��m��<\~��f��<5�;�Z=��˼&qb���><q�?�;�j��_�<�B<���;y �;{�ϼ��߻�������3ƼU��'��<���<<�E�S�6=J�<~ִ���y�<�嗺vz\<���8��������N�~��[ɮ����;��~�G0=�V =��<��h�('�i�Q<��@<�ko�ټ��*�N=�X���=1=U��<�@Q<˱B=޻;�@QT�"�F=�м}SH�\]��:+��<*"�� �;��^�Ѽ�(��#��<��<0��<���;������<�0F=��>=�M �ez��+ ==��:��<Bd<��B=T&�:+�p��� �~�����֋�?�2��\�;b2�Pr�#�D�O��<.�;�<)l����)�X����>c��C��<)� =yZ��i'�6���<H��^h�;� ���V;<$]��;2��/ۻT�;n}�� ���3=�g��/Y*�,)��Et=2O=�Q]���:��Q]=��5/�<��<�����s�/ۼ�wҼ�0���W}<W=� ����n<��<���M�=U�A��Ċ<#�D<�(����^�������T�@ǖ�Z߻<��U<���<�H-�$��;�= �D�qT/����<\���M�<��9v�:+�V=!5 �6;@:Y=���}�}�o�W�t�<[p<�@� X`9�8n;�;������T��,��-��!�LS����<�lT<(-2�W"�;��\<n\<1J5=��<����KZ=|亰���uһ:�<2�h����<���� ����%�ü�=�� �H;��=����qT/<�ۊ<~8=���<��r���2ϼ 坼lB�c�˺8����A�<,輄�3��e�<5`1=y��<,�T�O렼���<��p< -�,�i���$<-���8v-=�伿ۊ��ԼA�0<�7=f�F�*��Ի�T=A�0�����-�+w��k35�M <��N�(-�<,�T���<=�'<���� �N��;֨x <��l<��U=l�< �g= x8;��˻�!r�'�<�L��Y׼���<*�;ē�<7�=���<2jJ��:=���<�א��` <�eB=��9=%�O=y -��=��<�q�<-=��ɡ;�^a���'<��&�8ּ�I �� =��<{�;��:Ҕ�<�j�7����<2��<��:v��;14�9 /�z�C�}�1��<�y=����胼�{?��C�$�������ܚ������-�K����&<�;ʼ�"��%�O�.��;y@'<�:��U#��`��X�=`c���M?=?���N����,��H -��>���t�<.�$=+�7<M?=��f8D��*��'���"�;t��;��]��2�Q;�5k��x =t��:28�9�=eE=bj��'������/�z�<���=��0=mM�:9r���<2jʼz�J�Ϟ�<�ۘ�bO��t��<���;��<*���6m���ɺ�= ֍�:1 -���4=��<|6=|Q�:?Pż���;YR�<>x =4*��'�����:��/� -L=<�_;F�t��u4;* �L��YRI<��8��u`���� =n%���6��Sx]�<b����>x�<��2�X;F�t;8��x ��[ۼܺ2�lӈ��`�;���<`��9��:=R������8q�<Б�;ү�<;nhs�P<��<_Y�9�������;9d�;���|�;X����Z�N� <�UOx�<����n&м>����<�;�u�;�s0�̍������Q= �ٺ?�S��\�:o�=0\��=Dt�;a�+�c2;d<,<{�;��S��{��ݼ ��<�I}��WC�_��:�Ox�ū`<�殽0��<�%�<�B��s=v��,�ں�^�;��M<+3�.u.�&����S��F���×�<�6���4=��#= G�<�<(��Q�k���[�<�����;(�;69=�o�9�<�)S=��缒�Լ�:�����rr9˯=��Ǽ6�;���iM��ǵ~<�Y=QV�<�7=��d�k�K�7�<3�><Q�<�+'<�:�<�v=���;�Y�;\p=<4���|��*<�Ѽ]u���b��I:=O<�r=@�<��=)����c9�����=���߶�����0�<ʼa<�,�N==�|�<ݢ*�P<�^&����y��<�2 -=�c1���{�_&�]˛<�肻|8;,�Z;QP�' =�����İ=��N��;��=��6=��� l����9�S$� -�:n������<�)�:��z<�S �ġB���;����j�-=��� -�|�<&��<6A���Je�5Q�@���-�x<-�x<7%��+������-;���f�;|�O=�j���M�<{�=��Ƽ����SN���;҆<:^;�~ؼ�w�<�F�;|8�<���1��N���b��Ox�b�ɻAw����!<0!�<֔d<����L�������F�<����\ֻb?g����<��;RI -��c���w���*;����;.)�<���s(�;o���j����=�h���<�핼��<��m=�K�;�ܘ<6;�*�<4-��=O��r������:L<����7�󜯻p ����D������9�T ��0�<-�<�Dj<�mO����Wü����+�-< =���< �R�%����;>Y�<���;�d����_<ȭ4�V�"QX;�4Y�}�m���;�G.�<�\�<��;��u<Պ�<ū`;��=҃���l�I������V �<�:ġ¼�ż���;�c�; �<�Dr<ʼa�9H"��_�<7K�<���<$�����<�T�:�,��@m߼T]F��(c��I��[k �/�.;k�˻�QH�4�>;����Z����;�J�C=�����:�g\<�Y����=;��<:��� t�y1"��<��v;� ���$�q�j�I'�� \�¤�;Dt¼�2<)������<y�<]˛�^Ъ���P<�5�����;�ɹ�r��<�e =��<��)d-;q��;�p�<�j����»�݀�D�$=z���OB'=Gv�����:҆�/3�����<6�!<+�8=�È<���:p�<��'M輦��D�=SE)=�W!=a�z<�;�<���;��B�w~��T�C:D@ -�KXͻ]f]��9�=a^=T�C=����� -<-��<�=�;�̄; -� ��~�<�= �e�<J�����=����<ˇ�<6'���,��==h<�L��;�m��~�-�m=|�żrl#=9�ln ��i����:`����ʛ��<��#=���M=0��<�-�����t�A�e=��6����<����<&�<�������<7oC������ ���Eռz+��<]�K=�]=;m��<���:p�N3�;1C5�;9� =��e�<�I��02<�+)=��˻A�w�"���μ�����Z<�Cl��CV��1t�=��zԼ5�愺#X»��b:N�;t*a:0&y��~=j��<� O=��m�ѳ�<8�f<��ü��ڼ�fs�8^��R�SE)<������V�Pj�;�P�<��'�<�?�2�ϼ�*�;�S�� !��;��Ğ��;e�ܦ�;0���u����<(ྼ�$!����<��%� fǼ�@���B<�7/��f�$�<����#����o�: �67<+�8����;��w;Թ��«�<�u����1��� <�u�<� !<�i�=�g;dd�<€���/���� -/߼��<0&y<��=�P< �<�a_� -ټ?�9�c9 �@HԼ�9�;HI�~r<'"=ot���L=�p �m�8�*s���=0���f�ܼR������~|� �j���2=�#�< =������2����:G� ��=@��;t*ẅ;�;���<�n�� -z���W��kQP=�"��ԗ<���<� 9=�jE�0͚<����=3�������N��W�<�9.<���<�SD=�v<λd<���<���<��;�B�<8^�;�Sϼ�w�� O���'���$!�F�ٻ�ڔ��)�<�Zb��4;�]w;�]����I�A����f�3�7[<<��<�7/=0&����0�-N��'�y<8��T�L<0͚�1�F�_�<��� =��< fG<х�7<R��'M�<�Y�=�: �,�?.(<��t<���;��S9�W�����"=�+�<58ۼl@���q�<{(�;{�=.��S�Vι� ��}i=h�D�Ȭ;�ݿ����H=U��:Լ�㼳@���<���;��4<�L/<�v�:�C =�==������ �Rį<�H�<��< -ej�#�����_��uB=�< �=w��r�=:\H���&=74r������^󺘅���qX=�%3�b� -�ho���C=Q��<�K�;���<���=�����L�TX��hI=���=���< ��3����2!=b��<7��<+ -^���]<|.��L/��eD;�+��gмj,�;F��3�8; �I<+c��� �6��@�1�ۨZ=�(��T�:!�==IмV��!�=��<��D��Ϥ;�i��4�;=*�D7��)��;����<���K��ࣼ����B�<�һ��y��Y��Oק�D7���1����<�%�����B^.��OǼ<�D�t���0]g��J�;Ϲl<�/ �D7=똏<#W]=���@6�<�;�i6���м@A����}�F�`�<��O=r�;WO��U�<7o@�G_M<@6�Y��<6�� >�ye=�[�a�};l�9����h�̻Y=]�����p|;�.<,�=����:�=�,ܻ&���� ��\5���Z����;�n<@���<�������r��i�%�=�=�f����<����3-���]���=�� �&�< �ϼ�燽�"�9s.�<��==�62�ޕ -= ��:>���cy��hI�Ϲ�F�<���<�G��l<�k�"��*�x�[�m<���ק;=EK��<�����== *D��w�<}x�=�=>Ӄ�gz�<�������Ҽx�ͼc�;ۨ�)���n;�2<��A���G<��Ҽ�/ <*� =+�Ҽ����W<��<2n��%k<��s�O�Ȑ]�;��3<��U�Z<�<�t���㻼��*<@���, -=�V�<�$���ӻX�?<�7 �r>=_=+c<>Ӄ�<�;Ҧ���B=�¶�yC3<�$������<�}���c<�_'<��<�P����3�,�iS&�� =�燼;p_<f1��n�[ƕ�;p�9��;B����tB��C��H�<��<���<�p��9 =�<'Θ;NMt��ǡ�y~�<��<�S�� ���޽�74�Zw0��M��B�<,���@��ֺ]�<<~�=nhܼ��J<�9J��u�;�)׺\�,�m�;])�:��=r>=����<�D���, -�;���<�H���[�}�;%k�Ӄ�Hs�<���5:o-����3���}'<� ������X; �ɼ�r2= �<� �<��;m����:;;�������Y�ּߪ"A<��<�^�;C�9�f+й��<��v��M ����<Ȑ���ǡ"�<�1�9h��2n�; =/�����.��Mt�;b��<;p���s>��ae;z�����;)�a=�w<�ܼ��;��;�;p߼��Υռ_Ǵ��_'��ֺ�,�7��=�;��;�(�<Ȑw<��<���;@�1�pAM�üoh�����WO�<�ֺ�}���ђ�91��u̟��*�?q&�P&e��<ק���RL<�_'<����;5[�:bٻ9Ҽ<�Vp��MN=�Jɼ�£�`��X�E���H��؀,<��;ON<�l��f��@<��]�;��D��ڢ�ٷ����<0�M= -�O�Y���P <��<ɍW�l��<���<��Ǽ��y��1,=��� ��B�p(�=�4�!�=��S����9��R����;�����T�;��<��C{=/e�u =����Y�K=���;�e=k}2=Mq��{~�;��@V��S=i�����;.��B#��#�<���p�;�e�W��m.=������b+<]����:<��k�>�х=4!5=1E��4�ټz׀���P���މ� ��<�(�<�U=�8�<������=x*�m뙽���;!���N�(t�:ղ9;,N=M�'=|nV;$0�*N=o��s楼PW�p��ܓ���e��m.����ms�����<�,8����<�v#:\l�<���<��U<��y;û��֨�<�&Q�����R<�� <�w���ib���꼢[y��� ;,N<���:�#/;�L��1 ���湻j�:�_E�a8�lmc��Ɖ;?ͺ��<���:k�����#��v<N��<��z�����q?���.���G��i�<�d�W<�6U=��P;+��4:�d$=����@<�ݼu �O�=@��;c]˻Ӽj<�!ݸ�Ŗ;��-<��;(5μo�:V�=h�c:��k���#<�H����� �;���p���<��m<�;;���:�K,���Ƽ^b���>"=1Ef<Œk<#�5<�� -;���;��#����씸�,N<����k�<;Ӵ�b.���Y�;4�ٻ&<�u�E����\��]߻(���]����;s%���u���������;�s���u<���;�+���f�<Ƨ�;�= -h��2 =� D�7o��[���?�qp���;:(t)�'~Z�x�;�09�m뙻3�<��R�Ò�����х�p9c<�ߖW�A ���O�;�f�;��Ƽû�<1���~ܽ<+������t���EQ4<��;�� -��t�<���7� 9��9���1��t�J=���<:��}d���� �@��W�K��ZQ�eS���\l;Y���yl�r0�9H��ü<�_|�_b�<%%|����;�v�;,�;h㵼��<޳�<{[<�� ��<�;l�0��r�<1s������ -�;�h���d=<��<�ym��(:lA�����-�=�-�;=S���I;�%�&,���y={'���H��`��M�λ��ļL+��< L;�?��<]35<�;ɯ{<۸��6�b����;���;�\��R�<u{;Ik �+�:�P ��k=X��� �r���)� ���:�n;���i�;��ɼ���<�@ <ܲ׼��D<����U��ػ���o~�����Ir;se��z� <����ڊ�����v���S<������`<�)F<ʰ��E���O��{����4K<�!żO���׻%%�:�z=�qD�2����a��.C=2��K1�;4�»'���u{�]л���V���j&<`\E���;|�;9(X<��h�+�a<�ZW��1�<`.���<P�<�C;,�; ��;x����5;^�=�h�;W�d<�����퇻��⼇--;E;�<���:�0�;’+=��<E%�X �<��:�WS<�+<��g�ō��w$=x�<̪V<5h�<���ɶ=q6�t_!��1�<������x�ɶ���@��ܢ�L_ɻW۴<��X;ؽܻE%��;i�([��?л��r�i����C=�i��% ����Ml�;��⹃�MN�;J� �k<��;�9y<�M�����C����N;�ռ -q=������ ����<���<5+�=@R=�U:F W�Q3���Y伖 E��<�Yd�Gv=� =j�f�j����J�7��sȼo�����<8�к�k���g\��>�:�I��0�"::�⹃���<1{<l�;�X<���"���0=���a�9Lۼ�S�<;��;��@<��ܼQ3�<����=�������<H;�� ���׻�F�<]�� ����b��� ����;<�����Q�*����=ſ�&㍼k*%=QQb����܀�<�.=��*�9��r�B�u�W=*W=X��<��M;��m:r�B<�Dȼ��>�X��<��޺n���*W;-��%�v<�*��&���쬼ℤ��<֠��g�<��&�;=)|J�j�󼶳̼�^�<5g��쫢�`�<&㍼�v�;ߌ���;A=| �`V�;�~��rN�<��ۺg��ە��y�< �Ɇ��C�N<1�@<� �1(��9� 콼&[B�� �����[�:n�&<��6���w���ۼ��Ѽ���`8� �B:4�H=�����i=%��F�����i=%�; �:=���IX<��9��a�<���:-����<������&�� (����;��+=R�<؆ἄ�����<�l(��_��s��<��<�;��.�������imI�.�<���<*΅<؆a<�΍�}��+YH��<-��ŀ{�n��<-��H���ւ�ʊ�; �G�O�<�:=<���ϴ'�K,7<�'�;�<Ѿ�,S)������������F�<�ZX��b�<�_�;]�%�2��;�8 <�[&��(0;�r�<�15=s�.=��d�wμ�<۶X� +���#���'= ⟼b��<��; +=��]�薼.�;����<��W�������:�#�v����z�薻b��/L�񶼾�&=��=�0B<�Z���Wq���.<���<흼� b< �L��NZ=���< .��8!H��^¼��=���f���.��Ǽ��U<�\�<32��]< -�<��;�(�m`�ļ�;�m��=��ڻ���<���<�3�����0��bl�<��!�KXh=����<��<�bcҼ��<$]�;���<\�o<`����L ���<}K��h!��� ��x�����p��;���;��<&O���\�k��:p�H�J�fR|����2�E��$�<r=� Q=�9���;٤�9G{�<�qg��4�<�"<�s�K���I�ϻ����l�^<��!�F`�; �< - t��Br��qg=⳼��<@�/;�hG��}�-b�;�,�� -��mvw<����<��:�.�ۼ�DU<]}H�4} -�ļ��ݼ/g�;�]�;�I�<����Nإ����<��K<�mN=%�g�xe�<�C)<��<�ʼ���b;��˼�)�鼌ވ<�&�<��ͼފ�:�^K�����A��Xw����b����;~<;��<����b�;�#C��x�?=����<�nü�v��+��׊=��&<��=��^=<(��� -C�x�,�g��H ��п�gMV��{<`���L=b+���\W��ō�<};)�kWݼ�w�<�� -�ҫ��م��H�<��B;�B���ޣ=U�g<�4���[���뼡�)<���;b듹�U�;a/d�_M3���E=�����Z��3�$�ݏ#<5@���A�<��E��r>=�O��p7�q�g�e9k=H�G�v��aa=���D��;ޣ;Q3=\�ļquO�� <��2=�~<�$�<��� ���;ى<�t��nM��:�j��G�< -��<������V��=m�`���< �5;�7�<�ۍ� ���U����~���K_;{�ȼ�{�<�V -�ڙ�,=<\%ݻ��T߫��y=%���Od��N��<�4�� P<�'�Q3;��4�4`�9ږ<�� �ݧ�_���0��°&<l��x�;ə��� -�6�c��N*�+�i� =7�λ��v���<ɗ�M�ļj���ӊ���0�"�C:���;݄<@�=j�!�l =����v#<�; -�'=�[<><�;Y��<@�\�g��<���=�;� =6 -|�l�%;�^S��;ى;��=)��<^9H�Ρs��Q�<��o�8P!<�0~;,��:������)�_y<�t��c��>߫<�G�$���S�]<�P��k<^��䤻�t���=B���e#=��<8�3=�:խ��,���/�=,�z��W����s��b�;8�>��]���B��� �� ��;� -�V����K���=�" ��'y�\"�� -��P<�:=R-�%��<��¼j��6P�<�]>�C}����;xl=�ɋ�3����=��{�!,�9͆���j<��=���<�w�<��<����ހ��%�<���<)I=����9 �+]̼�85=9�4=�*�Kݣ�4�Z�=�o/;�G�͆=�Ι=��a�M9'=j�'��: ��w����: q����:�pd;��������g�}<��!'==( -=�ꥼ?c=g7Ѽ#R=����hs�8���<V��������ℼ�2&��;��� -�<{=�<�%=��+����;9&<g=w ��b_;*f�'�<��Q<�V�:��<��&���,�����H���-p!��ˏ = �o=�$�<�f��ɒ;b_�P<=�xB<�ɒ:�Q�<j:��c=��2���g=�<������X]<ʸ =�������< 8C;�4�������mY�gţ<�_<�\ =�{�<��ؼT���*f����1�j;Q�-��D��~�9V��;ߢ�;`W;b�Ȼ@(�a��;���� �������s<�P�q㲻0z&�S�]=��<|�:�P�;�� <�x¼4�Y�{f�u�;�s=���<���YO;3ؼ$�@;{=�9�'y<)��;qq��� ��Z3<��=T�_�l�׼����끒�XA �\"���⬱�B���;�弙EŻ��y��ƀ��/<��Q��9�;����Fz�\"��k����w�gţ��p=�y�<<=缐c -<��;s�c<��r���,�<� <�yw=�7��SM1<+]̼˜g����=�Q�Ie{�&\��Y�;ꪑ���u;��>�RȮ<V��V���o�\�r����~}�� ������8���=}�;����H�;��=A�=[�=���,�Z8<�j�(��=ٴ�4��g�������<嶶�N�U��"=EȼF[�<�141�<�5=(C�`8����ih�=�Y�<��/���n��(�JP����Լ/M�p�b���ɼt��<:Đ���<�g/����<t3�v�� <�<���<�=AwO�:p�<������N;,��K �X -k�E;:�$]� �)<2�[�|�Ż��ez�;:���-�E���w=�,ۼ��=K�O<��ۼB�<8��;c�<����;X3������=�Q�<�F����.��j'<�� ��(�<5���_ =�!�;[���0=�ۮ=۩�X�;Q�a�8��<І˼� ���n���<�JL=����� ��g =�=:�y��MB�<���<[�=�!�y�$<�^;�A�fL�4��;O�X<�ﰼ��.��X=U�|=Vl5=��;}�-�����L�o�=�+ <�ɝ�6��;䬖;pѼ��J; � ��*�;���6T4<<�{<�V�;�+=��ɻz��<�_;�T��9X���;�<;i=<�x9� ����X��R�<�J�:�J(�t3�\�#<+ݼ���9�E�+�[��;f�5��g/���<�g�����y��jo=�G ;~Zl�%Ϫ�'�ih�=�cx�Wb=�g/;t�<���X�<�%�<����c���uA���=�@�;��1�0�E��9�#{;��;��< M��ɝ<��<�yd<�y��ނ;�d�;e�G�L��/w���(\����zoQ�[�|��k.<��c<jD�HT|=��g=̎��C�{hڼ��:<�{�;<���ov�<ٰ�<�Qg<9FF<�R�97~"�m�'�;-�E<̛0<�!e���=��;��9:�\�<��%�|�$�{���\9<����=�"ݘ<��<��x�W�,�w�<2h��<;'<���<���U_<\PY�s�=� 8�%����_�<��[�����F��TI><�$��+�<<f!���������ܼ�ɼ��<��<���=�� -<��<��Ӽ:��;��<� ��8�<8M�;���:~Zl=*8�<"_N:�_�Q<�������< -$z� M�V=\�<�r������m�;j�b=�p�R����?2<�:V���_Bk<���cq�9�<���<��:�zí��X��[���� ܻ�Y��,��Ĕ�< �ͼ� <f!=�f;'=K�=<�� -=H�=;������ɻ�{y<Ĕ�<�C1=�¦�=�"<���<�QC� C<�2���;�ڧ������<�<#���=}ac�/#+:V��;� �<־�;�j�<6����Ļk� ����<��S���<���;`=�J7����;���=�z����<��:��y=b�P�Sy=�`=I�Q=��`<�����=�|�<'H��ά��F��<��<:�G< -����+ �DŌ��-;�Ql<�*�;��;�y�<�K�:�|���i9��Ȼ�.#�:F�����t��m����M^�)�}=5�;h��<��=�� =���E��9z���E=���<>P�<�{%:)��: a= �˼.I����<�==F�-�� =�E�{z="���?��;L�<������:Q�;o��;�*=�c1;�{�<�t�]�i��d��}�<�z��������<����.=¯,���M=��q�3E ��D��ŀ�<���;+x -<�*��������A�|<�*�<�.�<|F����g�1:h��;��;<6�)��㰼� <��5<��Ȼ��X���8=7O�<�N�]=ڽ� �=� c����� hR�v\�;x�<�;�F/:���;c�?���Q<k��*P����u1��f��<7��I�=�:�<��q<�1컷������z��!~= �8���;�,M=%=R�E�}l�<�j���6��l�<=/J<������:���9T��!҆�\2�!��;Z� ��gw<ȭ����;�ݼ�7���,�`I���p=IJ�;�3�Z�/<��=���"{s<��A=���r�輀G�;Ǎ9=C!�������<�Yм(rk<�{����<�ԃ=kK� ����1���]���<��:�2���٢<��P;��;Ĝ�:5�5�<`I,��ᴺM#j�;,2=(�ŻK6�<�y�<��{�����r�<+���\����Q<\r;�a��������k���:��;�*���$��Ug;6�w�z�<�ռ�r�ᔺ�4�d���<��s� ѵ�MdļCg���A��ޜ���ټur�<� -O<#Sj<=p�;¯����:y�1�@I�q��<�xv���<(�$����\��O鐻�>]�ZR4����; Ν<�� �{{N<�bX�U��<�<�;����*9���;ъa���r<�=,|���=��%�=�/����J�<�b��w�i<�K=�{����=/J;�۩��μ����:���H=�ⅻ����@v�<"�M=��A<���@5z����;���I��n��f=FB+;�p��� ��f�<�,�<, ����]��w�<#S�h���픻v #=�ռ��M���o<�J�W��<�f�H�<\2��^<IQ<>��:[����}p��-<�q;1Z�8<�s;�"��漄"��eh-��1={(�;���<���ݎ�H�<:�;��=Cg��U�;p+��!���<+����<�B<��D��1G�"{s�Qj�;�bX��� ��Z�<*�<��R<-��<��:��;F��h�@<�Vx<�?.����;h�� ໮^�<}l;e�x;-�F�*�<��`���Y�;�w�:���< -�d<&���!�|�"���Ww�<~�;���Ȧ -<ׁ�;D �=/ʻS���_J�"�h���̬�<�<<�$�<*8��/%�IJ�;��k<1/��v��/W��>�t��<���;1��;��;%���2<����=�>�����]A<ŵ¼�.�&�-<Р�����<~�X=P����ػ (�ˁ=��c=FB��z�ח<���#�<޹���ff���E;�J=�_J<���8=,|�Ĝ�;^�>�����$ּDӗ;�$l<�����<��������iw};��J��.=�%�<2�����<� =�*��K� l���j�< 1.<��<���vr�;G� -=�.��@�.<�(9s�<*��<)��<��<xڼA_�<՗�8F=EA = M=^�Z��kX{��=_�K��n�Ú�<�<�����{�<�o�=��S�����ۯϼ0�v�������=��E�6��t��;j�B=��<(����{���)�������j=��z;?~���;��b��{�;�꼩���b�I���5�8���~�;(f���RI�T@��+=�=�;=����=r��<*��8�i�;\U�<|��$: ��lj<���<�}�<��2�/{=��B"��\� 0�4=�����廁���_Z�<���",�W�Ӽxڼ�+X�o��;�N����< L�<�=߼Wl�2����~Ƽˈ^<��?�Ϯ<�c�;Q���8F���:�;H"��_�K<�I!�c�H=�J��@�.��C=$� =����<����A_g�`˼�q=��<� ��_�<`�<���<,vz<��⻆Nc�����~; -��<�3��^6M� ��<)j&=Ytѻ#]+=�� �n��:�Z��Y~;�ؠ<����kX��U�����;�%<��n<�Ӕ<�<&�A8-�`�=c'�m?8𘼼���g��;�Ҥ< `<~`j<!<�x7<\y���=_=��<�� =jt:�3껛�O��vW<��=)j��++{<}f�ȧ`��Ŗ:sN<TL=`^.=ᕐ��B��Җ�<�ѼZQ�<[ -P<δ[��D˻��s���<y�<�[����G�[�2�i) =c�;t�8=o�=���4<��2S�<���;�n;�-<�/�< �F��;h� <��w;m�?�������$<-,"<����z����U����<*��;���-�?;���=���n�6e�;O~�<�N��<��q<��;NZ۸���,(= ��Z8������-<@��j�A=�����$���M=����<�=߼�Ӂ<�+<*�|;�\��g���2g��p=�(�<*G�q7<���js�<��o=�*���P��Ez��];"�T�?�=�P�< .+=�C<�A�<�4V<��r��b>����պ^1��<./<��=��:����ü5��;L; ��:��<�����]U=����$z���9���f��ٞ<��l<����� ��U��J/ܼ�C<ҍ>=y����%�L�.���<�Z<(�'=��U:]Լ�g�;ƒ:���:��^��]�<�]o<�gu�z�<���n�p�����%3=�7<��L;S�H�m��;���Nx�<�ϥ<��I����<{"�<��`:ͮl<�B<0����;��7�'=��6�(p=J6�;�d?��U��FGB����<�ʯ��Q�L��(:!���;d <�� ��ʈ�I;:��P�}���^;;,�t�(;� �<�(����<�c�B6׼"���J﫼-k=�XR9�ٞ<#J"�� p;e:=G�ܼ(�';Lɮ<Ez<�vʻ�d<���U��(�'<,`<�֜<��=��z=�<]��<�q�<��<J�+a�̣�js.=��i<��{;=;�<�A^����;��<�Ԏ<6��[sb�l�S��@�S�Y;����l�7��@α(<�+=u*=5��;�=���x��N� �s��G�ܻ�d%�{����q�j;����^��޻<0����K���*��~5=K� -���:6�7<讑�"kû6;Z����<.�Q���6<�����;�K�����5�$<��;����P�5k��_<��=./<��[�5k����ؼ�S�Y ��8�K�onż�*мq��<�~O<��<�H����;��c;������;!)�� "�yb����� ��:=܃l;t�m�ŗ<�% <�Z9<<@=�Z�v��l^���=�Z���K�$�׼��~�js��onż�� -=��*���9<�ʯ���j�����vd�7E<��<1�Լ��=����<������=���C�����<���<����<)5�@C+�Kk)�Z�p$h�kc0=%�=��i<�ᱼ�������ü�~�=-O�<�K�< -Y��:gp�;a�l;��=�`�<�$���S��=7�u;�oK=��=��3N�?�]��.9<�9U�?��La=�,;<ڒ�r3"=��<ŕ��_�T<�!<㱐<���g,<��<8��<�p�:���-���=�<Ȣ<'�������)����;lZ8�pE����Q<� -Y;'~���-�<-h�=��O5Y;B�=e��; ^=�'���=�KE����NGI�b�t�Ŧ����8���D;3�:�骼�x�<��[��a�;Q�<�,=�(d=����x�<�&�;&��<\�<�u(�<�̋<�=�K =宻6 2<`Ɏ<-6�<�&�qp�U��X':6�m=��*=����闼���;�=<�o���8���߼����=���<����ͼ���Kk���5 ����x =޾�<�ѻ$�ڼ]�<�m'�� ����/^<{�g;*Z^<7=�7<��@�:�a<EK�H����=Imͼ��;������ѻ�ڷ<6 2= k�;;�黬\�;G�]����.&����:21$=/4ڼ����Kb���n���7�U)<�Va<5*=G<}���S��M7}��hQ;17��<(� -= -Y�<��><�������<2)�<������&�Ď�;�=��<Ņ�;�w �30�:���<\暼�ĥ<�r�<�zA=��N��<�5����7=@����<��S;M`�;Go�A�=S1��r+<�àż"��<�AN��$B��[��˼���:a����7׻TU�\޴�y�<$�R�"�»�><m�;0+b;�&�;��]<+j�;� ~�,?�<��q�M=�ٸ�b��<垎<�$»��=�L�<��;�z��G������[�:��;�3�;��];�< P�A��Q�OE%���y���;J[]=�*�c����=^���%��^�L2�<��ݼYh~<�'h=X�@��2N=�ǜ<�-<��<7<���2�<�弡R�<�M<�l -��Diռ{�X;Y�мD�= v���~ :��T��N뻉�d<�$4��鐽��F�������ۻe&G<���P;�W�<��&��弣�4�|�/���J�"4 �}y��/TºkRY<���;��ί���D�ǒo<�����m��h��+{E�0J����q�=��N뺴��a���R�<�:K=�?0;�W̼�5�i�C=p�I=F�G=��<};VH��06�#�K�sA�<���;��<�y�<�<<����S2�;wH���K�ش��<��/<�7�;ߨ\��F =��>���O��y���t��ے;�շ�h�;+���K7���=��:� ���;���<�a;��<�:�<���;~7��#����P8=��4�Gڍ<�D�2�9�<�W�<-��2N�˔�;�̝9���҈�:#�K<�P���fy�{a���<'ov����;�f��q�,=>(����:B�:��;6{�;�DM< ��<T޼E�<"ؼ-w=P�V<���&�T��K�<�P��ջe�����*�#�=���-���⦼�<g =��y��0�;G�=֙���\�;�H��5��< q5=?�A<�&�<2��:�K)<�Di;� ���9k�<�� ��.D=\ߎ<��=� �i ~���!�N��X���/<����d���0��!9*<_��6CH��\��.�<� l<.Ġ<1�)=T^���=����F �ʨx�b�k<�P=�|f=�+��e�;��=|���<Lj5�WC<�*�?���7<�����P��c�_��O<�:��<���6|�:m7m�.{8<�o�]��<���HG<�w=�O�Dw=]�������<��<�M.;��<�Be=j=<��i��_<��B=�p&���g��9<�����2�`�<� =�#=�=wL�zب��2(�0��;�<��3����J �; ����<,�6�A���wL=��8���u<#�r<% ^�,�<����<���<�0=x�;Rr=o�L�J��=0��<+��=l0a=|N�=�5���t< h<S��8�~\,��-�<y<(���xq;���A����1��;KĮ;���:h����Z<��=xǼ���8�;�� �&껭[�<�V_<��\��9�=nS��3=�|��<�<Ժ׻��=�Z�<"W���n������KźQ���<���Lѹ�a�v����_<=ۼ�0�lE��g��p�X=��Ȼ ���_2�G�A��b==1��N��j�u;M�0=g�Ѽ�,�u�;���S=k��;� ��=��=ϑ��w;� =�䛼_��<����L�<��Q���o�< �2�禼b�n<���<�L3�g=~��M.=h�ݼ�i���;Y���<�Y�<��ɼ/��;@*�<'z�;3g�S̼uM���J�;���<��}<�`�9:� <��8;�2�w<;���P����g$��&���u��4��<哳<�W���Y <��f<0��<��z<�]<<\�Dw�;7"���Ո;g=~��i^��J���<,��;�9�3g�<% �<mʼo�=v[�<�;cշ<�|<+��:��K=�:��<\�&;�t��Ł/g�Bi�����G@�<���;NA&;VB!=2�;�H�ټ��1<�� �wb=������=Ή6����滗(+��Sn;��<�̛�+�y���G���;���<����U&�� T<���<�c��yB=�&�n�@� -尼��<%�;�O��:�Q��f�<��<�.<"W� =�v�;�IB�u�:�<�������~����1� �$��'��l:����<���+�@<"��:���q���j�����:�o�U&d�0��<��<�;����uM=F�;b{ =�0��� =i�<��<0����!�Rũ:�9ü��0�f�-��Gt����;�T����<<����ۼL ��ŕ:�qC�@��6<9��<� -�<�'?=��o<r=V6�<���öp��`�;;�¼����Q=�������bX�}�o�O�g�?�<��;���<�w:<?��}~�;�h�t��ǝû�ۼݒ��<��j=�� =���\��[���<拽I�<�M���d��v����<�Z4�b�( �Ws�=������;g�.�x��;&M����+��=�1�;�b��a�;$Y�8��:���=��=�6=tv��𪢻ˋ��[ϼ��=T�;�UK<����<��׻Bt=��; -�<� �Gإ��^<��Z<]PY<�S�z���A$��i��Wo<��k;W[ �f*<�+=A�;���Hii:��o���S:Hi���eϨ�����e�)��� ��f��� =��(��_�9G��n'9D8�<_���һc��_����=��<��F�n�>=R@��1N�`kV<�=� |<�ީ��XM��a�<�t�<@M�9�}<�";�y����;*r��Z�;u^ <��E��%�� -�:9|����+<ӧ =��������6�"=���SpB<=��<[��<�$��\��!zѼ&�ܻ]�=�ż�,(��%=�u���R��;�<����s�;O�z='5�D����脹"�<�� -��Y<�x���j����M`�< �ϼ9%ƻ�~:+�ˋ���{=��1��Q=�ć;i�u�  ;=�<۷3��;f�r��J���]PټJ��i��ԏ����<�� =�X:8=D��T9<3�� =�W���lj��&�<��="Ő<$Y_<�X���i���ڻnp<�@ϻg�-�U���� |� ��<��;�H�<��+��u=�� ��ƺ�脻�ʼ�� �V<�⽼��<=��<��B�`_�;���<:d�<�;���A$��4P�)� 쏼�n[�Py��aG��K;LT0�w"����<�3<,�(����~>�<�3����ڼ��м$���һex�ҿ��;M��<��9��q �%Y<,���')��� =E �d�&<�e޼�� =/�q;��<΍;��7=H��<�3�<�J*=HQ뻳��8=ĺ:B=���4мx��<���<����6y?��+S< � �9 �<�w�;ֵ<�߇;pûr�<1=��<3i���_&:�Dc��̼���< �ۼ��A<`��;�̻�!���<�~���Q=���; ��<�`8=�?q�XO���$��� <���<% ��� <�� ��1�:y���J�?Ȓ�<(�:�Y�<y=a; =�3�;^�=�Z=�,�;�\$=@��;�����<��h<���<��E<�r���ř����;E�c�����uF ����:شn<�:=x�Ժ��S�ˋ�<��< �O�%[<�+����캴���-u�;���;�F=>����j;�I�m�;=�*=U��<:d����ݓ6�Z=^?<)� �uF���x� -�{��;�{5<�;Q��Ѳ<�o�v�����=b�<���<�[ļ�k��<�4�F=ވ�뾻eN���Y=/= 2����<����P=��<�����[C����<�=�5輆i={�@;�����j<k�<3;�R������2��U[=� 0=K���d�L�����Di��U������D1<����Xȼ�i|=��:<;^=��<���;b�=�g��'1��n�:�@><�����ξ<b�w�:�G�<�K=-f;~h=��=�G�;��="�X����<(��< Z=N�6=��4:�H<�{�  ��2���ͼ�_4H�/R��ڏ�9ܻ��*O�s6f;��;x�y;�3��s�7�ﻳ��;ؚ�lO��I�vӬ��,���O=�E*=�=��=�R�51 ���������<�=x�y�i<�ZH�-f= -4<�Q�!���;g�l<*'�<뛧<]%::�� =���!J=I�D=Z��t^����l<<2�A`2��=�;�lp��M��K4=E:�����.�q}�<�N� �{<k�=�B���X�;4?D<i�;�Ի� =5������:�뼼A�����e��<�� ��f��F0�;V�=P,=��C<���<�J=U2���<��>��:���黡зE��9Y;{׼�%���f=�g���&����<�uL<� -���!<µ��2l���<���<�H��y ͼ%y<�9�������1�A*'=Sa�->Ȼ�y>�j|�<��(=�K;�C��Q���Ƽg/��~Ԩ=���<��O<7� -��Ү!J�����%�*����ڏ�Dž}:����yVX��ל<��;��ʼ]�>��&4�Z�s��q]���;�r�Dե���"�M�ǟ:P��<%;<�VW�󜣼?�;��(;�����݄H��ٓ<L���T߼~�(='�w�ס�b=i�%e=��{��2����(��Po��i =x��<�#A<��p�d�b���<L��դE��b�<�=�10=�{=1͎�F4��_t�"V�<�ك<[(=%���s9^a��\�)���ܼl 1�����ü.���C��]�<�V���WU����n-�<չ= >X���0����2�/�=�W���� =�G�<�U/�����f�lI���0� 0`�#O������լ������.�=t�L=bf=�x+=Ew~=�%+=bY�<"c7���Z=���;>�λDP6<�{ds"���p=�;���;�;�t%�i/=�`�e���I��=_g=l ���Gj=f=5;�������!=��鼤N3<��=am�<��;K&�:�������HH�<+���4�<�:�9�iI�����;��Y;Y��<��|w<�O���B�l �<3������ �<�Ǖ��n̻0<-�<S̼ -�<�(�f��H;B��9 ����<��4�F<���<��N��hc���&�n�8;��<���;�!5<ظ��}p =�>{�^{1���K ��``!<7���Ar�;�J=� ��^�ݼ��=s�ȻNV<^n;�����;��=6���m�� 0� -*D=���{<��S��k=S�!�/ K���<� ";u���m���[� =�߼��ȺM��;'=c_A�3��9��s";.X��<�{��f�;�ؼf#����L�r���W"=^{�;��5<�8����s;��r=�W"�eeݼn e���=n�<�(�<�"�:$;������[;��;��I�_�I<���<���:��k���L<��¼,C��۩�gd�;azQ���ȼמ ���-���ӻ�s�"c���g��r������=��=�ݮ<�o<9�u�u���F�~Q�l�<��L=�ݻ��D������=4i��Y�P��~6;[X{<�0�<� ��Z��h�;�%4���<���B���5Z�e;�;9�b~:��B�U�|ɻ�_<+�-�F���?ԕ����;rQ���E=��f<�Ws8��rA�#��c�<�����੼�ڋ<�g�!�"��m��x�𥯼��μ� -<��Ƽr`=ye6=�]=r`; H�<���@���u�;��=���� <�� ��T=��G�e<"7<6UX<�z������iG:�ǩ�޶|����:s� ��Yl�����:�Yi��1)<�=�Ta�wj<�/���=Ɏ��.7x<�u�<4�-:�f���A=�Z������"<�"9���k<�� �� -=��w<��8D�%�+P�=d�C<5 ���9��<�{ -=�C<�1�%=����y�x�y �ۂ=�1���cy��'�<�p�<Ŏ;���< �/<�|�<�Z/��4�;�io;4��;+2�;�]z<)�<�ٔ;�1�;���<4#�,�=\q�< R � P;\���w�<8�4=���<�9T��ļp����y:�A��K��}t��x�+=矼l8f��&r�Ax�<��;7��<�=-�b�����l8f=)�ź�&"=��=�z�LD3��I2�W��Q]����1�٬컹R|�����m��_:�?����<�_߼�D�;�Z����aD<��;D�ݻ -M�=�N���x�<$<�;�̉�=x=N�0��F���9Լ%�ʻ���</M<�02;\ n�ˢ =�w!<Ɖ4=#�g�����f�=!#��:�`��<���S�x�Θ�<�ׇ< R ��Yi;�<����I=�S�د:�Y�<�m�+2�<�\<<��?�\���ۡ<�߻�g���̼Bk<�+*�"7�\<���uVF;�-�<����ȗ<�'A<�1y=H���2��_�~��;���ܼ�4L<��<�G;�v�y���(-輤�=w�<�+�<�D*=^��Θ̼?�M<���<��G�es�<2��� C��>�<��ɼ4=��=�d=G�e��:�g.V�XS��K��Z/=�#�<ʘ$�@c<�ZW�I�غ��˻Q] �I�ػ6U���;`�����<���ֶ,�W��F��;�,�;���;���<޶|��+z���K���ٻ��.<�IڻN�h<��<<8K<9i(�C�;�>���=���<�_��r���Ի���;��T<�O;˄|<��q��7.�k��ܼ���N:<䇧d�:�R�<� �;�T9<�t�;7���9ʅ����;��f<�nw��we��U�<`�=��^;��Ѽzo��Θ�;�C�:|�<֧d� ����|<��<=[\��qJ��b��k ��|�<��=��<'��<���#0=�_��=!#���<]lK;C}H��ɶ;{y��A0=�__9J�5;�ʤ��'A��&r= ��<�g���z��A��!-=���=$fҼ‡���TZ��5=���_�7;T���k -ǻ�1u���!��8G=�U$=��gZ���;�x�����'=��ɼ���<�#�<4�=�>�;�n#�Y���Q�= s̼C���"15;��:"T���A=6(�l��<�E;~g=��A�;i�_��Լs+;bu =�0��]m<��<$����nN�$Cm�u=:=z� :};�<�Yͼ���=J���Q�><��� -<�o�<�i[;4=�W��2I�;���=j���a�����<�՞�&�Լ�\�J_5=[�缉ƅ<�Ő���M(=wOr:}+��hq�� ��Fif�F�� �G���Z"��嶗<��<�C�:�F< -�d< ��<�8G�� �<������Ϲ��8<h�r�����<��K��p<�Z�;�u�:��.�z� ���;�C7=~D,�VD��c�<ޞ�<�F�<��,< ��>�u��<����������U<#��<�2j�(�����f������M����I=�ר;����j����n�};�ó��'$���<:V��݅����8����&��<Vļ����0�<ΩH=�W�<��!��;d��<� �������=�6�)�><�C���dh�e���I?=ஐ��s<��4<�"���J=zh�<��;��c:h�����Z<����Bx�����߯��><�&ڼr��;L��<�e]��/+��)<�F���$<���;������.�"15�o,�:ҟ����z;��z�+�<c>��9��+ͻ�"�<�;���O<�\a<��=�򦼸1*�g���L�;�L=��;�[,�!�2<,[ ���^<����7Q�X3����;�E�B��<��<���;Gfü���W���=�8�'"ļ���<�;@o�<����. ;��̼���:C�.���)�vk'��{8=w����.�=�_�<�PX;�/�[�T��D=��E��ld�� �=01=[��<�2�Wy�sf9��WѼX�Z=�no�'T����<�$�<ơ������;��/�kv�<�k=�jż��뼪0���x_���= �J<������]=% -�;'"D;W'(����<����Y �;򕛼�J���R<� <��S��U�<;����Մ����ǜ���_���"��qR�!+\��k���=LV���)� ���8����Ț���˨�d�`���i�r~�0��;�+���Q��t���-��D�q���LV�?;O��Q<1<�˲;��=@�4W�ڐ<��&���;�jK~�Qn -� ��<��� ���0<�ɓ:j�H�:x�;QD��~�<�}M;\�1�<8� �����n���=��<8�O���JX=��= -����G:���;��4�¯��x���۾�;���<��� �����?�������#b#;���<�gv<�5����H�VY���Y=U`�Z,=�f%��_";���>�7<�V�:)M���ৼ��� -�&=�I˼�̻<®<^�x<�@G���;��8�+>����PC4�������W<4�ռNJ���ٮ��NM<`�Z�ްc�TT��5;�`��&n��m���A<@�O��� ��F��A\�Qļ����rm�<�F����6=)3�I~�=��w���)=��=�)��Q�aް;��_<�D<�' -;�S���w��p��;�Q&���@<� =��<�<��`�f;��<������&���� �Gf�;W�N���}��=��6�Kd.= -��������<?�<�#�:(`<�h�����;E�`�f<��ƺ� ټaް���<�����X�&�����غ�!=�IK<8=�T ��UF�~<'=��Xڐ;�R<�R�;�u|<�������:):&��:�yr�7��0�ǜ<�a���t<���<4�ռ��K�����u�yp�*'2��E��W��ܼ��;= �/D<�M�<��� p)��ĥ���<���:�|�;&n�oU�<����no<�e���:T�`��2�;\�;S5�����;�?�Ƃ1��Q;ǭ�I� -;�G��oG;%[��(`��6��)��;<���t5�r��� ��#u��)��WF����<c��[%�<�d:��3�Lp�el������d=���;��R=��;tr*��-�W<����n�<�<�<�' -������������M �<�PX��aA:W'�����;�3��1���\��ˌ ;@�4;`�Z;ohN�<�:��㔼/�û]�*����8��W��ENa�,�UWy��"��K��<��>��<�Ҽ �;���1<ʓ���<`�$<���e<��<⺞<�����`< �<���<'�U��<ʚ,<ߣ=j?���`㻨S�����b�� ����b=@��֪%=�$�K���<8��=L��2Yh=S=<�e�L��:����*#=)�<�J�;�6=:x����p�<��m=�&<���;�4�)W���A�'�"�����|����<Ã��ߣ�9�B<�N�<^ �2Yh��̻{����id=�b =�ß�qf�:�\�<�̼�QǼq�N�< U��e�&:�ֻ�=�b ��=e�n1�;��<����� T<�K/=뉼 �(�����<�Y��bF��3=^�<��.��� ���~=( w��<�Wb<�`��=�h�(���z_ݼl'�����~�=�Ģ�$�1�,�<�����$E<.~�<4�:=��1���*�Q�Z�H�R=�f�<�<{��=� �?;�o�;�9�<%n����N=�"�9v��==���<�&t=����n1{���q:s8=e�&=f!ܼ|���+��Kb����:l���>�:��=l�<�1���<�i���;�\�<�J�r�����a<���~��;.��<@<� ��-�<+�g�%PA;���6$�G�~�ݺ�0,�Nj;0��, �<��Q��0�4;��� ����@�����:��<�ƅ<���;�"���#?�� � �4�;tH�< �W�`��< ��M�Z�vO�|f�;�:�¼�~=E���ZnT�m�=6V��*bw=����i�<�j��l�����P�<)ې�f -��H�= i缻���˒�i*�:d�8<�#�;���Na���.���;&���2������;ڼŤӺ��6�;�)� =��ߚj:���Ӽ)-@��P�<�՜���H=g�)��6R�m3� k�<��<��9�t��;W��<��2��V�����Z��>��;wN.� �l=Č< -fn��9=��C ��O+�ȧL���1=C(����:z�=)��{/�<��;)-��-�H�����%��^=�B����a�0h�Y�<���jZ�t�d�2����m<�rP��j<�ie=8�;CE�<���t�����_=� ��=����o�ĩ��3�B<ĩ��� R==:]= i����N=�oW��%< �<������)�^6漧<<�W� �<ғ��g\I=�5軲�m��������;�.�;���xü��k<���=���=Z8�Ӽ��ﻻ�X�JFA�ғ���[J��w ��G= ]=���6��;�݊��4=uK��oW=�a�;�{�<�qS���ļT�˼�j�;g\�;��ѻp����4��p��Pi+�ғ�9�,�&��m3=�C���<�;w�]����:Ǭ�֑<#�.�?%=��;�c<��,=)�<���=d=�ax; 40=C�<�謼�-�~�ǻ� �=���Z<�����r�R=[̼�?P�=�E� ��S���=m-�{/�<�5h;~l_�T�[�֑��n��� -R�w><�&�th�<¡Z<^6f<�k%=�N����<]��VR�����<7�z<Ǭ����p�������V�� W<�v�< n��۹�<=˵����=�}��K <� �dH�ʌ<,���{Σ:c=i�ռdH=���i�]=X0��B%�SZ�g�=/��;��<��K=������p;|(��|,�<{�����;P�<�<�<{v���<@=� a =U�ż��߻~����0��$?�B�L<{z&����B�c�gg���<�<R���<{� =�tw;T�)<�7�<-A���6�S�<H��ީ�� <H�A�@�h����e�@��U��ܻ�\�<�Tѻ/2���}��Tn���\�<�?��g�=�tw��4+�<<���<����T��B�`;-h6=��s<|�+<#仹��<��U����|��<� �<�����y�@�<�?;i�Q<����Tj <}6I=Ɇ�<{ď�{r;�#�;�y��hվ���<����A=oѼAŸ<�[l�T�����<��<{Ɠ<���-h6=���:�F<.vҼ�<�M<ߧ?;|�Ǻ̲�V8�<�+ ��s��B��<߭˼ޡ���WD���T��X��:�Tr�<������ �j��g����<삻j��T���g��S -�<�<�<,R����(=���<�݀��}���U<��=��oD�ި�<�H�a���q/=����l�$� �K�����:� -b�<���<��鼧�$�.�|�i|=���AR�Y��1N��L��[�K�V@�<���n���fw�<�|�<ļ�����a<&��<��ټ4'A�ԉ���_�chi<4�p���l��$�<���<��`�P(T=����}�[��<��=+��<�����dQ<>-�<��:<��E=�:����|�-{���f�<D�<��:�Χ��U��Sg=�<�����w��g�n=�~.=kDW=o�=��0���S��n��y�ȼ�g�<^7�:�!��9�ԺM�y���=����<������<�ᇼ+��UH�J���Qϼ�u�<���*��<]��:M���qb+��*Y���<:?���b�������g=X�Q<��<<���~� ȉ;�G<���=D�=G1��˘���9��[��<���;�+�+�3��䅼;�T3;�4�<|�r<��<����j��<<�>=إ��OCĺěļ �[<�@?�7f�;�M�;�r(=�^=���;��<��7�:4 Q;���&.��{��dQ�§J= -}�����<4��;Vv�<� �����(�)=n���|�2;G�6� �=v����<�a���.<��<|�b:����D�<��&=^�u<e�� †<�l?�|���Y*�R^<�� �%�i5m��*�;q}��>�:?px�z�f�3����<�:=GL�;��k��<ȼ�ؠ<�º<� -<���;�� ���U�;�a�������Z��<:6�<��:�K=J����f��������2 6=�<�e��?�<��g������p��M��s���T��������Вm=�V�;���<~�<��E<Ğ�<�0R�$j��P ��|a=R1+;�1<�v2�L���%��[9=�9��DT=�L;c�R; (=b�!��,=Mk� -f);�>���Y�<�=��:>��;N�wgD=����k�1� ��C��;�:<��;5k����a�@�ƿ � o�<�J0=�B#����U]=ϗ�=?*<���;�ļ� u;�fU�DT��SB<(�D�>�;�R�<�⺸�׼Qj��9������lX�%e:=0��qG���,-<3�;S�[�1���7�<��L=�1<�ļ�M|�:��1�=�y��Ѽ\c�;Dվ:.=s<�E�K�t����m;�Z���z=H칺��̻.=�"������<&`�<��<8����/�>=�쒻�z�<� �;�ݤ<��+;k�q���-� ל�[��<��< ���Ot(���<��E� -��h������v���0R��^�;�Q<�8��D{F�@�8!�N<�[O=�8_;���<��:/P��K��rU���"�=u�;��V�D��;�=ks9<D�<��%ĉ<봻�>�^v=��<��d<>����F�<��/�+=3<̓ <}���9;�<�35�����3���,j<�F�<�Y�I�"<�1�<�Z`�"�������G�y��<��"=:I<� -�< �]��>���<��=���蒚<�#����!�<^��=:��p9N<� -�:�ܼpL=^���q���Z`;M�=b��dw;V���j����Q )��jܻ��;j%�a<3P��j%�< <-�O�X�m< -�P<�j=���<��r;7�ּ%;�̻�=�C�<O��AVD<|S=A��;�F�:X�Լ�[�ԍ�;,���Ch=E��<�ҁ�6^�:p�˼s�?9\�7�;S���)J�����;'��Q���<���<���x�;7�#p⼮̪�����tLB���=�R#<��ϸ�<� ==t���|a!=p5~���<��y=��;���)�j��<17 <�t� �<�\r;�~�=�{���Q��VX;�0?<�����ſ<�U:��2<�6�=ƞ�<[q=<��<�^=Nj"=ŭS�:�;��=b=�,׻K�:?9\�P�<;'=~~ =��s����Zü�=���9h ��y�<���L¼ ������!�G<��;�6����<ӳ*;�n:��|��������^�q;�= =4ֻ���:����7��� <�)ʼ��ۼ��9~zn��Mt�)����<� �:ZA�;v�;l>����k�<�Ǯ:_��:�L���;��I��Hn���<��л� ���ƻ��Ż1�k<�4���9#=z ���<k��I�0���<��m<Q><~;�<�=N<#pb����<ԍ�L�<�p�;r����h��=�;��=Y�;z�Ҽ���<>Ώ�Cs����;.-�<��=,ќ<� =T8�M����=��L:���;n�c<%�<�qG<�7�����&)�F>�<��F<7 ���񥼳�`=T�����b<����E��\9� D<��������\/=ϸ�:E��¨�4<7�ּ���;_�&=v����̺�e =�R���U�;EOW��+�u0����<6*�H�A�'��"�<�8=*9��M���B�C�Թ�O��a�P=+���@P=/ �;_����=6��9�>�A�;pݸ;�e@��(=�O�<�K�;N��;�����߿��r/=A}���~[�&� ��@�," ��4=�Z��੝;��#���!=� <8�+]<�ek<y�<��Լ��;�}dK<�f �Bd�;SD����D<�<���᫂�H�>���!�J�<Ǥ��$���r �������$�O�ռD�9�w�<]=�L�=h�g;E��������<������<��Q<8�~<�<-�<��Q�� V�Wx�:����Tܼz��<��3<+��<Y�<8=X��<��-�X�6��";�.�;�~ۼ��<6�<�������ĝ�HU=�� <��=�$a9 ��:�u=�=M�`:˰�<*�{=��ṙ����<,�E=�=Ѽ����;=d�;�B_<@м욞��� =�x ��(V�;��;R]�;�6^<��\�k�\<�yM<�� ��F)=�bB=h��K���5�<�� ��Z6���M=tI=�K�=/o:<��$���+�}O,���K̇<>&���P<���<,�;=�h;>&=�쌼�~0<�M<�07=�T\�G6绳�;ޥ�8�����<��'�R]�\/�;Z~=��=��J��ĝ�π�5(4K���ON;%�<`�ow�FQ��ȼ�?�<�l�<0V�;.mջ�� <:��<��w<�<�� -��<�_<���8u0�j�w���y���!;b�<_5�<�B߻Pv�&�v�0;��,S=N��<���Q�e��#s���<%��ք׺�A���=�|v<��Ӽ)���'�<���:D�9��@-=�E�� ��˕;<x��0�����<�|K<��; ���]=��� ��L{<�ː<�藼Pv�<$�V<���<��=D���{����)<p�����<tH<5�������ۨ�`�;Cf�<�d<��<�_��_;��3<᫂�F�ɻ����(P#�5 _<_��;�O�:ow;�R��Y|�;?��;�.���ek��"�<������=h��;hב<�Ӝ<�;*9=s,˻�B�<�������/�8W����=���<}��9WY�;���;W�;\M���2z!<�%f=`q���� � ����� �&�n��.�6z�<�8�=����U$=�B�ыK��=;$dž����ɣ>���� �<u�;֣�=��<��K�X>��k;#=b�ڻ?�M������缼� k9; 6o�t�<���R������0�+=Á��)#�;7-�-̒;Q��<�B�� -�=$��;�P���92�cT<�*��І�<�/��}H�D�;�p<����B���h���<��;&�(�:Ѽ�A<�d����`���)���Q9;��x<�B����:�i@��!�><�Z;i$E< p���mӺkAļ�����y^�=�9F�Ȇ?< a;N;�G��Z�;~�8��3��΄��U�;}�m<�ԝ<�>z;,<1��dY��ً#� ��:�Ph�F���֣����»����<��:�� <�x������!���ʭ��=Y7,���9<���:\ͻ� �����x�����=�`�"��:F�7&�C�<_��<t���\�҂�?Xb<�;�;QG�;��;�����Q*�p�:�Xx���ͻ~�;k��1=]�74�<�՚���4�{:�<��<�<��%m�(X�Q��<��<�ad�Ɛ���;�<�?G<�K���c�<�W�<��<�Q�<á�Ig4����1��<��o����7��Ξ�9�k��@h�o�g=� ��ڦ= 2Z�A�=��;�̣;A�!<�I_�_@ݼ[��<Έ<1;�<�)2=����಼M}�:0�S��q�N<������b<%�6:��<1�>=���-��<5� =�Y�<�0=�7��xS<��K�(�����_@�<� �;#��E-Y�K���;�{�<���<��=���<V ��\;��ּ��<�x<�y���(�� �9��3@�q/ =ueĻ�=;W�W�;��g��;yW��U�<�=���� ���7=�*�<�t=V�+������5�;��;����<�¼`�����,�3 T�`�I�=��;6a@<��޹j=M�?�M<���.Xͼ�Hu��8�<�0\=z�Ҽ�;��ӲG<)��<~CٻF =&�<����?-<2W��æ< �<�z=�¶<�^��liü��1�m&�����j����<=yY���"E9��x�=�׼��K��B�����1�]<,��ϳ��T�ϼ�k�=�;� �r���U��<��><������t�����V�<�0\=��)="����M= = g�;�3C��ż{�M;��伻��<�������h_"�W�&<)�j<�����<���h_"����!��<����Q y<7w�<�8=��>=�#�<��{;B?�l�=�+�< g��' ;��?<~;�:�����H��<Y��׼�$��M =�6*=%.=�Q�����I����+=���;�=�jJ<�=�Ҽ|�H�c�j3�{�ͼ����t�9�v�8h�<׼h<t�<�6�<=���|p}��}޺UY<����E<���;]��<5�d;��=���<׼h����̿ϼ�n������|�H=m&���<���<�L���2���3=���I���_�����߼_ɼ'Z=c?���4;<>=��<�x= r�<����GG��t�<� R=�S=����-�;?���^��슁�[6� �<� �h_�;9J<���i'R�*N,��z�����0+�� ü�B+;��:g��<ױ��|;����� =IZ���?2=T�غx����R<�ӷ�~JQ=AC�7�P����: -=�sʽBz -��` =�w��R�j<������6���@�Z낺�?<�!<����xQ�%�g=�I ������AC�[�P����<:gr�J��=��7���x;���2�)�Z�<���> -=�c�<О;���N�!<+��Aߡ;�_�<����B{$�j�<�~���&<"�+��]�;��<\$�<>!=Y��<�>�;r^�<3 ��`0/=�z-<�-���ϼ�D\�H������������u�k���Iڼ��p<��4<_�C��@L��%�=�Q�<6P��5�:��=X���YԼ� -���+Լ�N5<6\�;k4=vh��y���4���/|j�A�!<�8�J[9�!X���,< �d����<,�|<w��(6����"��"��o�$��<�2.�����~�=6����e ��2�@�* �<@��;�I =y�A�|�=fr ;'�U<m�v�S=J�!�I�P<0�;<��<?�\��9������< �R�֕�;����8�iF=�"�<�t8�����<������_��J]�<�ꋻ���;L.����μ�e =��:�d��<�ʻD��<�`�<#*;��'<����<����E��J[���ǻγ�<��5�e;"��ު<P= V��N�<���;��x<�����G&�EN���I<�(2���k�h��;j�1�K��;�~�<�� ��X�<��5;��E=���|��dG��y?=�΍<��4�ڠ��!X�&��re=IY�� -=K�U�g*<4=� �K�ջƟn=�v��캖��<��s<{�z<��/<� �<"�ź;���S�<�s���� ;:� =l��;~��ި���J;�� �`0/�{t��\$"�h�<�W=F�<[�����;_�C�xY�V�ݼnT�<�|5<&��<_�C������^<Ҿ�<��i�z�k�����<�R=�R��M�ü���:���<u �^^[<��;� ����߼��<�#=�#<�Y(�0����U=��;>�|��8���ڼ�� -=J���OI;�I <���<�a%=/�<�Ӌ;v�ӻ|����I:V��<�~���C�<�������b�e�l�<��ּ�ߘ��Ɇ=�򈼚�:"�y -��F�<��x��*f� ������<1茻���<���!ؼP9= T�<�W�<�^�<�m^���^<9d��1�&�$�3<�N��m��<ى�&�8:�b�<7�P9r_I;�ZB<��׼�Oϼl��<�$�-�ͼ�R���~�����ڎ����@���:��/=�‘�\�#=�;�4=PX�� &C���� �;�*���4��-��<���<ق�<�\�:��=��=�ź�@���=�<6�����;J敼�m,<�ծ<�;X=��K<M�<�D�< <�<0�|�'�<�V�b�@Ϛ�)S�;!4<#{Ǽ��j�D�<�s@���;=�a��K�+�U�D����< ̐��7<�ͻ�VP�7�q�ɟ]< �P=�{�� = H���4�� &û�qg����o�aq�;aV�<�:�=E���I����<`8�<�Kk=��=�ߠ<䱪��X)��lؼ��;�U;M:���Լ���Eb�= =:$�<��� ��U�:�n�<k�<��>{f<�%��H5���0=d�Ļ]���\����Kk;A�=�W;�6�;�J��ȓ��_��q�c<�"=C?=�J��� �+Mp�aSF=sK̼ ���O=� ����x����h�= �;i7=S☼�d޼�@�����������F<�9�<%ۑ<���y�P;~����s=�F������!���+=|V��e�;���S<����|�<��<���<#{G<�t��U ��_<앁��<���;;Xu�<- =���<�=�H�K=,����;"o1<���<��"�w��<��O=u���=�2-��M����ļ���� �x;!T��w�,=5�< �L:�������<�i�:�m<�:�����Fn��^ �%��<��}���;'�<�="`O����<��s��i��l��{�<�6�<��;�e��>⹡a��V39]����Sۿ<���fT=��;/��<���<�Ъ�k��<��<�O+�X�s� -����������=<}�\�}!=��-�28*�� -���u������S=vug��T�< "�;������t=�f�<��׼�@��<꺽��=ڻ���(2�&"�=�c�<�՚��:�R�=��&�Ϝ��>k�aHd<*,��K�&=g��_�; �4��+fo<�LG9�S^=#=�:�<�����P�~ ���W�"����t��7|���P��?&=�2���܉���B����<�ވ�u�X��<$�k����� -=�#<�?&:!޼��<��-<��Z�:��P�}!<� 4�u;�v2-=�B?=8M=�F�<�(�<�A���c�4:<��7V :.���<�,�T�+��Q_i���<��X=>��<�|.��4�Jᔼ�] ����d�7��(Z<~[Z=�%�#=B��l)=�S^�(=A��;�<�� � �=@�t<�S�j�=��<���������j��ܤ;)5=��w��B -<>�P<�������A��յ<�U5�q����r&�I-=��ż��׼�M,=&R<�b�;ƻ-�D�e��<)[�;0J=���;� ;wF�;N��<��ּ��z<�|.<�lQ=�̬� ���<����<^=<�~�o`�;�f�:�<䏤�����~<`==���<�;��&"x���7�=����X�;�A%�r��\t�� �; -Z �R0ּqȡ<���;o�D�E��<�qA<b<��߻hz;Ew �&R�; �;�g�=Ŏ -=�'@�Q9�<�^�<;/�ý <�F��S����<���$�<0p=�)t<����ƻ�Aͻ+�<��= �׻�,�:���)t<�x��.��;�`J<�����q�ݠC��=��<�Ƣ�AP��3/<�(�Z� k��c͹�M���+K�;���Ϝ�;���<��Ҽ�e<���<�;�G�<��!u����'��=;N�3L�h�6�̬���;I���qi=o���<��꼕3ǻ��l���c��<����T�;H?������r�G<3㓼��¼�1����P;P`�{v�<~� ��Bg�#c�;\��;:�<��<��˼�ҩ�A*$���;����?&���>�<S�o���<��ԹR -B�X(�;�\t��RD����<(�M�7V���/�*�q��Xv���e�I4;��Ӽ�����<�k�<!^=�#=�+���im<�7R<�> �v�oCLEڻ�=�1*��Ǽ��<�������<�J`�[i�<�՜�|�&<�l��hMc=�7 ����&�8��L��WM:�<�1h�F�ҼE��<�W;=tǽ;LP�z�=�% =S�^�J��� -�$�~�޼ՈL<,2���z`;�� =i���r��;7��<�vm���< ��<`k<� ;����g˻�~< -�N�@mQ�U:����ۺ�뼂;#���=��[�I��=-@1�� �� #F=��K�p��=4�)=g�<|ý�f�=��>��FJ�/h�<�u=��μ�IM�F��<6���F_e��]�<$U<�.�<��ļ���<@m�=���`뼎����NS����=��9���H�:��<�V�5����;�\�<�%I=K��*�ռRr���=�e~�iv=K� <��:=c��<}"��V=S��&��2������;�y�<��E��J`<��=�n�<晘;Rr���k�u�o�;L���<'�<ū���sj< l=�v�;o�ۻ�8�<��d�MQy<4� D�������<��;=��Ϲ�E7=eڪ�h��<0�i<����P;8��<����਼���9���<�;#�$��&�����<+��<������&��z:D7���(��]��.=W���{�<�������:� =����vʼ�@;ˏ�;ө�������Y<6��<��=uA=�'�<�gK=�4�d<S<����g�;��<�<�������<8�t���F<���;�[=�\b<��Y;��ں2�<�������<����>=�D;�-7���w(=��P<��Q��IM��G�<�I*<�<��<)��<��A�ܔ��q��<&�K�[��;��e<؁ּ����;�:�i�;x���ş��ҏB<Έ����n���< #ƻ�L -�?�<ū����O=��<;����ş�<���^�<��!����EZ���񼏳�;޼��{�;�5<�;�93�� ��C�9����T<z�;��^;0<�1*<��[E�;A>仕�ں�S���O<9$�;�!3�*�輦�<�����ڼ ���eH����mn�;g|�;6����$�������¦m<ŭ;�>A���;%;Z<����;�<�B4=с<6� �/�<�F�;w(���瞼��� � �,����H;�=v���fn&�� ����<�;�1S���μ�B׼�D��h��<�IM<%:*G��� <��C�F�<�@���=�����;3����c�<7E��䛼 l��:��:4�_%�;� �,2�s`���u7�6t�<)v;&Bz<���<�;������;><Ѿ��� �1S�|�&;��!�<c;~(̼��Y�Q'�;�D}<���9���<<���̣���<��<�l��9m�<�|�<*��E�<�U�;1���ُ�sl�B<��H�ɼT��RA�|ý:���<�Ȩ�g=�r�(j�H�I;;� -��� <�_B;�]��l`:�=�;������;���� ��j�_=*Լv��:#� �����dB��s�<��@���M;7|;��g=0�����ͻ����-�P�چ��}w�<.>_�|ܔ<4(�=��;���<0hͺ�|I�f؋;9�c����<;<�cN�C�ټ`�2��1=�(����<<���=������<�d��`�������ґ��1�<��;bo8=[H=�\Y=����N�<�V����:΃e=�NҼło�Roi�6�=��ͻ�n=;v����V���=}<��<̡� �����<ɔ"=�̺� -�+Ъ:��Jթ��i>��n� ����h�g��Җ�Ղ�;Э�;#¼#�=D(=MC^�l<�G�<�&л��<��ݼ[�;��h�6�;C����˾=��<��=_m��S��<`�<$�<.>�<&���gD#;4e � ˫��W)�e�u��#�<�����Q�V���C��Y���h<�p��<�͒��J���j�����;�դ� ޻�v#=_\�v��<� ��P�S֟<�TǼ�)2:��;M)=7�-�P������ٮI<]��<�V��`6������Q�-���ZA�<#��=�C;0���y��:�[�D0�P� ;��=9�c�B��<��_� �4=:~:=�~5;8�4=w*�;�1=y�ϻ��_;��z�~ ۼ` -=]�m���;֗5=����}w���诺6��<;�Q�qth��߼����&���>�N9)����3;�<*d<�ȓ�c�<�;��;[��;��L���<�g!�����8贼5��J�a�Ҁ!��Q<�����5~=v�2��d��� - �ɮ�<��B�,����i ��j�<�:�<��Fl�<^r�>�;�:=�S �:�;�P��L�O���˼��q<�\(��Z����� ջ�#=�t�8贼�}?=�ᓼ�hH��`b;;'�� -���Roi<��b��Oy�fK�S���f=v�=�g<=.��<R׼�3<�^M<�*�k� �N:��d<�Q0=?�d���@;ѺB�=�ļ�R8���d{�<�5C<ī3���#�0n^��1(��+�<�?��;̝��z�{��W���__��W8=dG��3r����ż�?�<_��u�0n^��W�< �ϼ)�[�x�=�M���<�{4;q:x;|!�{��;@��;��5�����8�a���H�L �n=�N���Y?��������y��u�<"�X�<��<^�p=�i��$�ټW3������/�<.�ݼ��F��Mɼ�W<����.�ݼeZ�<�{';�?2=���B�e=L��P��<�i6���,��7�ii�<�٫:��G�2>ߺv�=�k#<�E:������q�һ>�c��MI�oj�;��=�#�%*ںSy�b� <�%2�I���i�;UI<4��;7a<|햼�w�<�㧼�k��c;X���S7d�c=4��;��)R���ʼ��d�WM��C-�;VK=�',�X��m�<�O�=�=7:�<"򳻍���;3�/c����'�8B���k�m��<�,� �����;������<`O�<��;�Y�Z�g�뵟<�S�<8K�U��Ӫ���)=���:.��<&r�<�-ʼ�e��-J=��X�<�*��>};�����J��%="��<��M�)mT<�F=Z_���>7��O��Q Ѽ����M�&����F@3=�l����<E�;�p�]}"=��<`������<�.��"�<dp;ՎS<�#$=�;d��Q��;T=q�d=�O�<�0c��� �����<�.��ۼû<,���8˻�i�;c�м��};��=<����b���ҋ:�?�?�ˀ= y����[;�.%<�Xμg�<��� <��<�~����<��m=Q��c.<�[��N(8��;K4\: �=�wռ� -O<�=}�=C�< -={^_�yy.��*�o$"�Yz��`� -=��=|�p�*�e���%�[�,���:û�l/g<�ܱ����<������������N��ۻ�����&�L<��W�b��<���;����[��a�<�z�; ��;�޼�X�;o���0�y�;���<�d*��;d;w'<ι�<~ޫ�O����H]��U5��%A�.�Q;���:R�����Ѽ$���=e��<Ҽ,��7�<��;����#��,+9F�<���<�t�a׼Au< "�gG�;�I�<�1����-

:m�K<�A��L:s� =�M���x��u�<��:���;J���̝<�l�;��<��.��;( �w�s��3=oC�;�+s�x=��P=��;qE�͍<0?=)�:��-:ֲ�=��k=�ݼvl�n�R<^�<���|T�:lO �x�:$�"`��D=�'<��!����<(%���<�Jb��b��l��=�<$Fc�*}�;��?qo��V�<��Ӽ%����~O�;���<�i:yx9����1#�ı�;<���<������;�+^�4�����;إ��ľ���».�5�N���<��Ż1�P*�;���e´�Q��<����-�o��;�t?;��!�f�j�.���]I:�l�Z��;�� -�;������=������<��S��Ҽ��޺1�'<Y��WZ���=�%�;��<"�=�D�r��K�޻����7��x���4��;�=�[�:xÏ��b�<=��=���i'=g -=�����0?<7�`�����] -=b*�wm6�2`�����<#���#����˝żRȣ������z����<�ʃ������j;>"`=͢;{�<�]�<�y<�+4;ލ�<~��;����F�}<|T໕�=�V���䈼2`=ɒ�<� ��� <˔����=x�:za.��<��k� e(;'� =nB����ʼ_9�+�;��⓼C��W�=��|x9����<��纘��2Ƽ��D=C2f��!��@�<� b���ļQ�j�g�B�iF�h"==.�K�;�&�<z<:T?=�W<�L+=�� ;?WG� �<��5�7v�:��6�L����9<%�?����AM�G��<D= G]�^�����2�����)r��H�Y�5�<� ��>E<&��_�4�� y;Z����Ɗ�Ƞ=�=�=� -��Nq��>�x�����ױu����<�?�<��漼UúrQػO����ջ�'K�t��<@ �<����i7=bՑ��BQ=ƀT=1).=��<�M=��N=`A �ۆ�����c�����V�#�Bͻ��ӻ��= �7�#�ʃ�8���I} -�$o�;��<#���;���;=tL -=��=,+t�l�K�= żUa�� �����E��Z<�J�&����<�/�f=��;M�<��$<�I��o�pn��� �����:�v���2ƻZ�����5�9�ټm)ϼ�R���Ua!=���DU�=1J����1����6Q�<�� �< � ��|�����;�:!B�f;&j���g�:�^[�:T?�� �+��<DU���osQ�����W��`A �����+�"�h��;;y@� 4 -�M�������;�Y��;��;���;���rQX=�Â:Xiw<�B�Ne����E�S�~��F~-=�v�<��<��H=�W���a<�w�;��<�';M���Z�c�<������H=����ƀT:R�k�]��;{<�!��K`_�FU:=�ü1J=�X�������;5r <���<7�q�d?�<���<�S~<�י�u�\<���<<�< ��<�`�<�ܼ��M��@�<5�����<��R6=<�t���S �Ѹ���a<~�n<��?��A�؝F=�1���l��U�V=�K���� :p�=�5�霼�s:=�C���Crڇ<��<.���׼�:=�Ք;��+=n���+,:<#=ɲ<������$��t�<�rq��cE<�ͥ<�<��3:��+=TW5��|�;����;���<$$,��\�<�y ��B<�l�:ay�B���k���1��1��;A��<Νݻj�9��9���|�<��t<�Q˻�5<�S9�w�mڇ� ��<:o0=�Ka�n��=�CD������F�5��;>��;MF��� �Y>��C�<���;N��~�<:��#� -<�������;H��<��<=s=��S<ڌ��@��#��;|�ͼ`�7�ѕ�<�\����\�Ǽ0�<M����Ҽ^P;�=�j&=@�<$Z�&��:^;�\d��r�)=�9-V������<���<�c�",��2��!���9<�/<5�����4 H�����8�\ە��[?����<٧:��*�jˠ��Cr;d�6�;����﫼�!;dh8=[6&��}s�K.�9%�<����ڼ�bN<MA�ap'�B�R����<�*�<UG=�k�;�lp�XG׼�Q��,�<̥L;c�������<�|�9�u�;u�\�� �\�׻󝁻 ]���:G��c�<�9����:d6���Z8'�,�> �<%�=d (�@����9��K=D���<�9�;�R�;��V�t'��|��;~�޻���<�݃�����ԝ��:^�+5ƻ�J�<�[<.p<򰼊r�+,��'��k4��K�:�=��+�ȍ<%ɛ<�&<����ޥ�C�s�"<+ �<��<���9G� ����(��<�殼�;�1<㾧��������<��?��r<�j��^�{��-=v�I��!��k ����<�0k�J�$=)����z���M��-2=�=(#��� =� -=�j9�U�7�����t�<~'��X��������<�d0=�&���;"��< ���\������ �˼�;C���Q���������ļj�=�B;��;d��@�<��h�s���=��3��ܼ������<Γ&����H��:�����;ڨ(=(#�>%�9̆�<�ص;C!����F���%��Q=���<���7�p��<+=6�:��2$��g<O���<+<����м��6��rA�=<���=�s=�l8=Ũ��ȱ<��2��� ����)���+�<���ʤM�BZ�<�����S�;���i�;�;������=e�H��<>�G�^�{� ~�;D����ʤ<����=�(�WO�;�bԻQ(���j�<�����q��A��<��:x��<���<�6���6=ڨ(=��C�;�Fa����M�=؛.��� =i.<�-U;�?A=�]�<48�<�G&�h`�<��Ի?�H<�a���˻�c�L�廲O��#m =��S<�s��e���b=����=�� =��1����N{�Lb�wd�<�^V�����/<7<�,�;���%ټ �K6;Uȼ�Ⴛ��b=�=�<.b伃U̼w '=�׻��<�ч;������Ҽyh�Q�μh�x�ig�;]�O�7AS=-�ü5�;g1_<��c=�x}<��������< �<����j�q<�/q=K���&=v�� -��<#�U�v��<�D ���׼l�¼�L��T�ɯ�iμ6����� -��s �t$=�җ#=��<"����<5ל<�=TR���$�<;�<=��/=U�ٻ>�/;�ܱ�*ûcX=f�����[��:,l*<�' -=��� }<���<^��c�S=�]�;��;#��<�/� ��|P�V52��V�<_:�;yh�Pмک���b�Te���2ͼ5���ܼ xK=l�B<������JT�7�s� }�;#\�s�<�j<�g1߻� );kp�������&g��V=I8�n��< ��^����=�6[��$��X��<+���� ��H�<'�ƺ <�mS=9�l�;���k������(�hػ$�u<<�6�h�x<-T#�@�=��j�*#ټE�m��s =�g%��ɍ�k֥<�*!��k�;� 伽��<��#<�̺!"<ԕ,<7AS<����7�w˺\q�~�'=�W1<2�o<�'��$b��Ye�Ci�U���/:�U�� �<[�����<��<-͂;�*��X�˼�<5��\�<�� <��><QG��&;�J�<�6[<���;��m�/�}�0����j��;�3D=�6�<9����X�����p=Mt<���z����A<���<���[�9��C=�>=)���3 �%<��� �=�ٚ;ḉ=ک =-�C=��;[��:E�~�'�|�.<^R����N�Mt�F����<����T<±�<΁L;�����J���H�_���T��E��;�W<�(���*�<��dI�;7��;e{<�] �c� ��E�:h <�JT<륹<�j�F4"���7�iѼ$u4;T��<��޼h�;�`�=��K`�����b[�4���V�<̱Z��E��ծ�݇?9o�4�da�<�w��˭�:w���=L[��;��9 H�<[�=Ru=�P(=�@�;��\�Y ;�׼����W쉼�R ����<�pR�uظ<Ὑ������;M� �=T��:�< ��t"8=�,F��|@;��κ��j�� ;���<��N<��p<�$�vռ�|@<���&S=�nr< ��0�:+�)�����jW�籣;ϖ; �_���� -ڼ�C�<�"��R <�M�~ǻ׾ ���%�b��yO��0=�d\�J��ҵ;���b�<���;�s}<�~�<����]*<6��[�8R�;��ӻ�=ٖ���7T< �|7�}�E<�?=�s<�~��� (=j��|�� �]<B�;t���κj�w�<��l/9�E�<�y��'�<"��<�Sۻx-��V��X�:�A�2P4<�M<�N�:S�<�e=�4%;U���D<�t������h:���b7<�@�<*�<��������s<1�<]y<���<�NP�QS����P=�������N�<�A��a���;b���i��������';����<��O����[R�;�b�<�G����<i���:�ʃ:�s<�8���[�;,+���^<�R�<��G�w��<�@�����}Iŷc��F�꺟Q�<!P��j<z=�zh� ���� -�;�+�<�둼nӭ������<�r.;]��Xn:�"=;����<|8D�~ǼO�,ȫ�i=�<��<��i;��n��n�<�g<�<߼A=��;}Iż+��;l��;���:�����W����Ǽ٧ � �[��P�<���<�i���<�<�&�<`n��rJ5��J���+<i�T<�����0�1���J<��M� F}<�n�-=��p�2��;���c��� -��]�< ��;�BZ�Yz ��B�<�6d:*ߧ<�ɓ� F}���*��ƿ��� ��;� ܹ��<�G�u����٧ =�P���Ϲ 7�:��;����l/��g���"=����y;��0�a���_�zCR�e�;�{�<�^���%��Gϻ�.����$=Cn�<�y+:q��<��t=�*� -8�<�(�<�����@ ���=����I �> =2�C<����"�;QS=�=����w����Q<0{��y##<�/k�w���;5!<\q���տ���� =���(*�#;ؼ�\��zC�=��u=�[a<�逼n(�<>�Z<���<5X��b&��<�6��n(���!�<���=�ڛ��Gz��0�<2�C�=%��K���ڼ�<�yV�I��&��<�E���&�q�*���ټvo�<�\���<�D�= e=�y�=��=���=UA����;\>v��-�aE�����I~�;\ ;��&���!��de;��������k;�G�<�z`<��T�����=�=��������l���\�Y��<���x����ʻd����<:N�l'��� ����<�<=�M -��������)=A�ى�<�!��h �p��<�=W���s<�R��\@=�,�<��< �<�=��^<���<QS;�G��=;-��t)���E������y##=��;��<�B�� ��� ��%�l<�e�<@�i<:���z_��`�ϼt*d����¦�<��弧uY�o�=Vo�<��޼_���߻ӕ���k��W���k�f<[Q�<���;ˆ��OI=5�<��m���<��\@=5%]�P��<��;2��,���պ��5= -8�����`�Q�<�3輢�u��2=a�����;��J<#ɻ���:h�<$(�(4�;0m�<¦V=�9:�/k�M�E�Q�d;Ȩ?<�xL=�`h��=�K�<�6��Jm�*b�<�<�*��E�;+�U=�;2=�ar�"�:�w����:�9˱�A)���̕<�s�<hX<3 :Fح�D�ûv� <�b;�E;<8�v; Տ<�����t)=��<�6��� -��e�ں��Ѽ}���fN;�Jm;` ��6<�;T�<[Z���4�9�{��=�F��+n��7��q�O�����OM���Z���c��_��<�񼂦<�zK<+�P�b@��Z<�-���̕�Ύr<�輦c=�;�aǼUO���H.�_����=?�d<�C�<�E;=��c���;�c0�m�<_�ʼ�S��뺼��F��Ե��+n<�a��I<m ;�+�P�<�-���|<��]8y��;�r<�t�;��*�1�=��;A7 -=�;s����:>޼�mW=+�=��-�h�(�?л9A(=�����/:�O���l�:��_�Ue��e��;��]=�3�N�:P��xL��P�<�!���=ʾ=���hɄ<����Լ�� ,�^�)�=Ι < ��G�<ʽ�<m�<I�n�b�����r�<�l�<=$��x<8K'��B��B<�<_E��M=k�<=:=p=l�`<Y ��5�:�@��2;�nż�~\=ʷ<�l�<2{F<�ݨ<��;��;]&y�`�:��/����Tg�<с�<���+�v<ʾ�/�f�;p�һ=$�:�\#=2zؼ��<�q�:�^.<��<�0=�A<�����;� -�*� -��J����;��� ��<�r,;:>޻�m���j�m���񦺾���6a�.�<�B�ֻ'Έ�� -~<���<�%�q��񁦼��='��J_< �����4����3����(��=���;�W}<$��#�;�}��������{3<��[��X<�j�<#�L=��w���]@�� =��*���j�[,�<����l��D��<�J�;/5;���<���G���_9 �)�� +�4h��O���Z6 <�8��������l�r������}�UU���������J����XN��I�W< ��< ���S�<�Z<�߄�a�zP��^=�����lc�-�=�<�=r<:.�;D�|=!�9���i��a�QT��3 6=+!����<^��=�b>�� J���*<����=G��� �:7cW�Üw���r<)���b=�<|��Iy���<�� ������X=�O�<�멼 mh==O�y!v<��g<�#<Ճ;<�,<��3<��/<'��G� -=� ��w�����+�Lb�;�(��YP��Y_<����Ok�<��<&~ ��*s���<�X�TlE�f���cYF;��[�^�L<��<ʟ#����<���4��ik��M�����<ͨ���ϼ:..�H*�<�j���Y�Һ�D�|*�<��̼�k�~�'�>�4Z�<� ��:l@���<�4�<�9��=w7�<@��t��գ=���<3 6;? �=���<��<�������$�H<̈ƻU��;���;�a=���;� N�O�K��E�&m�<���/J�8����-�+��uG=�.=<� =�j<<�=e3C<���Oz9<5z������$�<�� -=ϯ�:^���� �<�v�G�0=�7= y�ٴ:v�|�`Pݺ7��h-=4��<���<���;ik<2�ͷ2����� �/J���=���=A�;�4;=f=�ɉ<��H;ς <�t |<�=c��P{�u�h������P��=X�漝��J���t��TlŻ}Y˼�t<�#�<�<���<Ƕ<#���(�;��=Ւa�Zm�<�O�;/J�<�A=;�,��Y߼n���ĻR�ȼ�u�<�K�QE���v�N-��P���o��)A::..��O�<�]3=���<�o��$=Pw�<��%�Y�E�h��g�E��Nռ�%<�����u���i<�����K�;�nU<���w���P���O�<`���<R�<#0������ٴ<ʹ3V��Qj;�v�<�s<"m��{���;z�8<6T|<�yO�:QML=��;�0c:�L=�; �I#>:���<�=;C=��� s��μȻ���<LC=�B9;�㉼�.��X�<��W�v"�&]�+�=�0���Cz�B�9�=лֻ̞���=� 5�3`�,i��S� =bڷ�ļ�漹z���<��? =Z��;3``<�����~=�,H�O �[q�<�+<���rC�����t=M=�Nռ���;��<��P��<�ֺS2�<�����<,~�����<�D�=�s -��-=*� <�� �e#<%;���� ����=�[�< ��;������?<4oY�>�ļz��<=ʼ'l ��O��S���sR8S<||�9��<馟�u�f��<���LC;��;qm����V����⋊:)<�<����ͭ�8x��PS><7�D�+���� �;� <ɪ:<�C=�l��%����<�Ҽ�k�.NҼ!��C���ta��z�#���<�.;���;�s;�<=z���Tz7����;��κ{�1���<��<�<���y4�f�}=� Ǽ�7&�WnӼD��:+!g��햼g�v�<��������<@#���<�1l<[q��޼�m�;g��<�h��%N���w<7��<�5<LC����3 �P>S��z���:�̞V;�e�:QM̼m[�<�2��[qh�μ�::��j.���ؼ�*� @�<��=��ļ@�d�6�;��p�=���� �=^;��>�n=һּ�5=L���&�FY=��=���;@�=g"�� �⼀��GZ��s�f��}��)ڼl��L��;Q� �����g��<� ��k�\�-=���;2��;���<���<�t�;�=Dc���D=�����B�.����<}�?=��<�Hr��t�����=�Z=��<�f�;�< -��<�t���N3G���"���S�;�����,�a4�;H�Ǽ��h���:�=�%V��� -����ۑ<��<�-�}E�:����a�� ���Z^=�Ha�ʲ�4p=Q1� �b<�"_=�C���#�)����B<�V0��''��'<]�<5��;�3%�]=R� E; �1=���� -;X������ -t�A˩� ?E<Oϼ��<���À�_��<�za���Լ���;KQ <Ѡ��K�;���;�q<��˼�/=ղ໗��� -��:���s᡼��̻x�f��#�ff\=�Z�:�s����;v��~#,�b���u;K�<�q�;X �<�~��%�����K�!d��o -��<�]U<�z��S�Ѽi]f�!d2�mR�;䊒���:�u����yrI=�6�;��¼H�=<��t}���cԼ���<:���E��u��X:�za� -c��,�<<�lJ;0�����û�üղ`<�r;ɴB�&=����-�3�Lʼ�״:Ț�"�2="��-�W=0R��ĸ<��y���gu漸���+ͻߖ��U�:��<�i^;!�Ҽ�5�=T��<� -Ǽ�p���ҹ<�V��_��;�����;��<����XR��g�LʽA~S�ߖ��4���1Q;az��w�<_J���B �o�(�j�ϼ���#�=W⳽�]���1�� �r�n�?O��Pza� p��<�)�< ��:H{��=nr��/��<��+�hk<�;G=guf:��$��3�;�?�az���5Ks����Ȫ:ϖ�� -�ͼ'��~ڶ��_��� =�5��A�=�Z����=Z��ϖ��)�<%!�� �Ҽ[�����-�׻����9�]��vݟ����<4��`t<��Y=�f�<�Z��C���(R���]$�[-<Y��Չ<}D��l��=�;|��;�� �!�w�8R�=uE��p ���=X��Й -�t��<�����b<8R=FK�<��T���;t�o�� %=ߕ�֔A��fC;�a/=� ��\�;�t�� ��;�Zmb;��=<*� =�u��e�;fG�<�+���ͼ��l:������;�A��5C�'�% �<��7����<��� =����wsԼ -�ͼ�v��JO��f�����<�cZ� -Z<�=�����^�;P圻OL�&Oe�����>��=B��;�==mE$�=�;�^<'QE=��,��d��Ƙ;P�,�#`��');X����ټ�')��n���(=uC+=��4:��l����<�j<���:�63<�Ʊ<��񼾖�;ݐh=� �� T.<ș#<���<=�E=V��<�:%<��3��r�����;nr��j�ϼ��<��0�h�<�{���Լ�n�<�������� ��Xx�e���Y���#�A;�C�9�~];����H��<�>��`@�� -A��A���2�=����k/�<�������d�&�Ѐ5=�ۉ<%�?=�%���(;��;�o=$`���[�<���<�$��^B��caۻl���<��Y*���3�%����H�rE;�1#��{6��9���[ڢ;)1G�S/�<e�x�� ���5=�:E&\�J�<%�<��<����8 <�aV=]C<��$�g��<��a=�d=��F���#�<�L��A�<���.tm{�=��S;�λn�������a�G��<��Q�r�����(�ܻqj�<ᆞ<�r*�R�{B�#� =��B:������ =Z��l��<���<�Vf<^�^=�O08����{3=�*�?�<������/<�s�:��L���<6��<��;����[=ʰ�;�.���'�1��< `=b�5D'�;�F"�N^6�ȱ�;\��=U��;�V;䧻�a�(�Z�8=���8�F"; �G=\��� =�Q=�L�<��|<�o�����<~��<�$��T�Q<@�K<��<�;�<\��9 ���8= =���;�ϲ<������=N��<�;<���f�Z�<ܑ�<���8�ix�^B�:[��g9<��l<� ��B�<�����8<�`�;l����CY��x�<7�f�"b�<6��;�b�<�F�9'����< �*������k�<K.<L��6:=:�<��<�^,<}Xȼ��!�����g<�d�G��<���{��<��F<�F"���=n��<��;��;&�;͂��'���W׼O�<�֌<��Y�#����������:�aѼr��R��7�U -��&����� �Q <��K�t =�O5=��y;*0�<������W�Q =~“�=<�V�����L�q�ڑ���4=W,�<�Š�O���%��/�M<;�q<��=��]=�.O�r/����<�0ػ���9�Pռ.�7����0�G� =<�?<:?=�&=����4�(�<�)��c�<�?��c ��;��?�S�HQ<�#P��6�<[�<7�V==;���<3"���l��5 -='�м$$����KU�<�T��7�P���u� :���D���<$*��e���=׸=Uм�Ԇ�i{Q;�A�<��<��<�ן�_�ϧ������<�)-����< �<���<2�����;�#�<���;nP�<��;}rr=.�]���ϧ<|T~;1z�<���<��A; I�х����Y�AȻ�%ټ�z����/:� ɼ���s��<=��_O�=w<�H�o<�D<-�߻�>=������;��=��s�uR�<]n �l��ж����<:�Tg<.�7�V�$�P9μ,��8@��<dʻzv���!=�R޻�Q��.}��S�����l�B=���<�L;���< -n�� I=Đϼ��-=${h����_=`���;S��<^¡�̰L�J���<̡R�d�;��������+;:$�< �8�a4,�0k�;�뻻&c:B�<�5<��P�1�1�%;�P><\�<;33=��Lü����8|�х�:�}<�e����#�"����c����ؼ�Ҕ�5 -������<4C=8=�#g��0�;���<�ܺ�a�;���L��0��<��;(�(=P*T�j��;�LC=����<�6�\�7�P��J��P*Ի�,F<41��_�ua� *�W�����K�x5�<c���E=a��%�b<�=�� =�YK��X*���(<�ך�*7i�<�u�<��������4����.=�O�;w{���n�:���"=�E��E��p��xd���p;��+��YK�=���%� -� -^�^b�X-������,��b ���'f��ߗ����=�u��n�";�?�!�<��Q=5;=��<�R<<0�-���6=AU4={�<9j>�� �M)n�)�R=g�$��續���ל�w����Q<��'<�V�<P=��8�f-���H�lJ �QZ�<�����o���=iw;�H��7���%����<�C�{;�p��/��<���;� -8?����L=~})0�^b:ҫ�<�Ch��?<: �<��<�=��5 4���:*������E���O��T�<0Z���N;�'O;k2/=�S8<�*�<1݊��l��f%=os�{ =Q� -=��g�9��<�Q��啼I)&���Y;�Y��e��;*fJ< #��鉻s�C��.�%z��ͼ��g�;�y�<�2���߻��P��啻B�i�]]<3i��:�<�Α;}�-�qb1=�nx;�"�%��c�:K�<<�5��D(=晝����9'���V�=�߂<���<{�ػ��;1�<���<� �<� <�R��A���=cG�<�Q<�!�;���%��<����}<��Ļ�����C����_�p�;��xܺ ^;��*��H��`;L�N�ߔn;��p� ����"���=��=�I/=6pu���;T�㼕R�<[5�<$�7<�8��M<@˥�����9�5/�+��<�@H�̛�<��/�w�<�]=�O!�.�`��$ּ̛�f��;X���BFb=;|9�s�=�.c$����<�Z-����<����Xd��%�<����ZݻF+���\�;�~F=XŻ���=;�����|��L�� ��<�%=�,���*=ц��_�d����A�=�:~�8���<�8�:Zݼ��;�{Y�d��>��=��z]*���W��Z������-�:�n��I'�� -�<��yh>�Ԩټ��<�h�8a���ἅ�g��<:U�<�T�; �s� �_<���N�=�k=��l�����\��;GG�)��;�A=�8A���j�. =�;�;����f� -=��;��/;��=�'�"I=��X��CU<�-�<>�/��W@<�B<~{�� ;�sB�Uq<���:Zݺ�=v_<�=՝�;���@H���g���ۼ����<F�%=c�<<7 �U+����<��m<#�߼AQ�<&��<�I��t�<ǚX<��3�� �ɼ����p��;��=3�������= �< �s���j�y��7 <�h���=��3���<��:�5=������a�d= r<�-�;���;�q������5��@H���U=_ -=E��{�R=5-�<5-ͼؘ���{�;c=�v/=i߀;.<=!��;GG=��;It<�J�ؿ�<����J�:��Y��/�L�v��<Ԩ�<�\Z<,yL���m��W <�CU<���u\���(��#�_�;��׻bc�1��9�sB�,R.<�Y};�"!=� ��>�ͼ��h�=�9=B�%�ʼD��"�<��<^02��;�u<)b������������l<�]�<�o�9�;�\j���<ߘ� ���M2�����<�Ӭ��L �?<��ܼ����!�<�_׼q�)<,6$;�QV;z6 ��� =.�9傼8���e�<��U�Rvϼ�TS�괼L�=����#�K=� ��$�����L�ȏ�:���<@�91����x0*<;��M������:z��;�u��+A8�Eh�;��}�/�t���U<𒩼9�<�"����<^�x<�"���ڼ�ʼ��=J����T<�~V<1�=�Z%=���� �q�������<�5�<՝E< �;�Kl��"�=�v�;�$���:mD�F]���ؚZ=��v =�`�Gyb=�`o�ʵ缽�<,(<@�/�n<�"<���,� ���_=���~BڼP]�<�����-�< ,���D�l1>�MW)���#=J1��n6��Ǽ��6�8�z< :%<[7����BT�{�<��l= ����W�/{<��c:�5����@Y��i�=*�����O�d%����"��~��o��<L�Z�� �=p��9[�'�{�~<��;�h?����<�ۊ<Pp;�x'<��R����<�6�6�:�HK���U= �����Нû�.r�M�<�P?=��:���<ˡ��N�l��q�<�8���3=׍7<�V�l���u��'�����Ǽ��<*�(�9�FN<L��j3��������=h�c<�ټ�`�8�<+��<"��B�=ʵg��Z�E� ��f�; -V�< �ټ/�n�l�<�|!<̗(=z���l=VE �"�<����Z0<=U=-�)���U��� =8}��p�����<�x������)�e<)���M�!<����}�*=�h�<�˼�Lż?c<4m��� =��o��|E�,���S�r=��; .�ځ%={#Ӽ��>=�Z��u�u=�T=[�~=/{=�8��o��=$�������G��l��1�����X�N<��Z������}+��g�<�<��4w=� t=Ku�H4��0�����;S�r9� ���;E�`<��<ة��B}ܼ�S��⼜V�<�f���:;H[#���"����<-�<��=v =���Y̹��B =�����>Z��#<�*0�S�=OU��ϱm=�h����Ҽԙ�<�{ -�Z���J��{#�<�~�<ZḴ��l����ɥ��K -<04<�s��9����<�X�;$�;�BT�ʵ�F��\�T���;����>Z�� �<��Ҽ6�˯;�w4����<=e=��a;�<�����.r:8s�<�ū<���<6u <Ɠ�;�|�<�;=�n=���<ß�;��޼_�׼���:=o)�!;�E�ZA&���:���I:L���� w�SQ����/�6O=��; .�����;U� ���>��m���F�<ʙ�;u����,��ٍ;s������<^��<��7�P�-��c��L������_<:R���);�>Z;>��;7�M��G����OK��߻�aU�Տ4���7�D賻JY�:w��;J��;��<ի�;v �<2���$����a�W��=H[#�V�˹Q��<44="�\����;b'����;�u���͟;�ܻ�<щ�fIb��#;�BT�=ջ����`=�a<� 9������60=�ի�u%�<�+�<�s?;�e����<~�k�����#G�;�Nj��BI����;%�=�ń���#=\��c���^Z��Y��.=��+=*��S��]�<�7 ���л4�E;�U=��L����<��<��O�}� �p��ܼ���<��=Ļ���&<�̔�����;���o���G^���<=�;�e4x��D�<�"<�5�<�j�<387=�>�<���;��V=�D�<=5��Y'���3 -=�١��a)���d�&�';��V<���<8��<�l��� =��8����<9X��$� =@E8�����"<�斻%9�;���<�a�;nB�.=��/�Z=]���Ԍ: -)���<k�=P= -)=��=�0��-%;aA�Hk���8�F����:oi!���Y�eN�=E�=�Ԍ���*�C��:��=�&��.|��2FW=�[�<�x�;�9�8�<��:�~<7��<�_��D�Ѽ�R�<�]j<8����ڹ W����+�^Z������<{Eo�F��� �<�,=�����;�;WmZ�b�{�A� <�^���I���3ۨ;�'�;�/��V򐼿���u���C0��� -=)z��wM=j�Լv��q�j�6�3<)Ba��Ch�o���:,�P��:� �ˎ`�)B�<�w�<�G����< �Ź^Z%��e�*ײ<Ҡ�������� =�s?�JB���'=���<�6����<�,���F��S������=;��<�/�a�޻`L=��h����8�Ch�" ���<���<{�;yʥ�QỚy��;q��<,��;b��ND=��<�U�=�UG��X��;�E ���&=�KԼUV�;��S<$�<�� <�(G���[�;����1R;��ٻ|v��(�Ļ��軼�b��Λ� T<�F= -��<�2:��u���C���'�P<��M=���<�.�<�q� W��s���:�-�<��W9�U�;�KT�D�<�����\˼-�/���@�8:�;m����<8:2� ��+l�D��;DNC�^�WmZ�#G�;ry�<:�>�]��+�O���3=�@Z;P�5�Š�SX=a+m;#G���<?<�U~;�{�� e7����5Ob���:m~ѻ���_�����ք�� ���w5�.�=<�e��Z�<��k�:����" ����YSػ�<"̬; <��;Jͺ���<�Λ<ɶ���>�0� �Šj<�OJ�ɻ�� �v�G���]'�4�=P�����< sW;K`�. =Y'�����<�B��{Eo=�Mۼs<��*;��E���$�P��<���;_�<��+��؂��R=��l<�������fl��=�;� -��Ϳ�Y��xm�5O��+=�w5��P�:�̔�m�_�v��<&�d=�_q���1���8��<��<�O<�:]��T����޻u�=z $���P�%<_�3�s��<��5<0W�;�7�;\�z��!��4׻͐�Ը�9_o��=�.�*sM=����j�;����b�4�|���=��d=�Zػh�=37�:�+弟^r;�}<��J����M� ����8�+=���;1��<�M<8�< ���d�*=࿂<����%���@�3�h�7�x��<���(<2�<��':�<��2<��q���¼c�ҼjY��B�=��;�U�q@=c�-��^r<�h �� W���ֻ�G=}R���Cp�=�5=Dʸ<���<��y��o�3=� =0��;��<�7 �cv<����X���,�<�!=ҹwN -����G�L<���O�=�ѻ晌���<�9�;�s,�u~���o;�)��@�I=<�8���輱������<���<C�I2<8�+=�� -��`�~���^� ����������ޞN -<�v�;}MA��cJ� W<��<����\؂=�h���=DZ(�����|���5�VH�;A)�$�ƻ���VM̺z�<�;�0������}�<�����Sݺt��� ��t5�< Mb=���;(���K�`�s�&=�9����:���;�����ވ;�ò���<����z�&���л+�n<��y;� �:�Cp��T�)%T; 7�<�o�<��=��=I�B�ܽ�\Ӫ<�q �/� 3<�wQ�Oo;Ƽ�<�Sݼ�nI<�H�:�?V=a���0=�n>� �T�wђ��W��� ������=�"ݻը;<\,.=|�D�#P"��g�0��<�d�|����K��`�0�S�p�_�G�̼X���9/��<�3���"=q���+ϼ���<�/��;ܩ;�ܼ��= �M<oN�CG�<�);0}<,q�d���A��q6ȼ}̯�������Md<�'���OZ="Z�;�v����<�lo<�$=�M��1��;T�%���P�=��<��Ѽ:��:81<g`�<;2\=a��=:�H=��<��R��^�V伴fH<�^�>d��"4��<���<��1�,[���V�;o�:��dR<�@�<��<���ļ.)��3=P^¼t ��w;H�7����K�2qļH�ܻ�R��x -��:4<�b�Ē;�{�=Y�@=C�`=T��<�P�=�"��������y;������%�u�c����� <$0�< -.�<�閻M�����*<���<J<��c<Ͼp;��^��j�;0�6=m '��������;X�Ƽ��I<�#���fH= �ͺ��H���U;'�=�e<&����Ԟ,�Qs��$0ϼ�Q�;D�s�<��<)�����<ٓ��ݾ��m6�<��� �4�������N;�뺼ɒ�;��;���;��<�c����-�f߃<�{@<�O��P^¼�P����5<�e<�yJ=~ ��^t�<��<� �,<��<�<�@r�8�~M�<����;gKn<�J�C���G=i����o�<��/��h�<��=��n�����(���9�N�ͼZ����Q�;�}���8��A�3<�$���?�;�R4=e���z A<����b���N���Ϡ;z�=���B(�~M{�����hDZ:z�<&��w���K����M�;��:4ۘ�N�Z�j� �a�a�:���yN>�x��;��1������i)�,k�7,,�"��<�7˻�ټЛ<4t-�g�f�MG�'��d���q�A���}�&�<����|�/��؋��� =�٦���ǽ�@��B�Ѽ �;�#�L.�������SQ��dZ��r���?�|8�<���$F%=HAV� -Wy�;�u�~��:A=�� =4;��<�7K��t=�+��tH2�Ky���+ -�T�6���@=��<��B<�>'=������c<���q^����μK�i��>���l �I]���v�<� .�E��^�N;�L�y·��Q���<�� <��=g��<��L=��<:�=�����p=5�;8�b<�?d��&��W'����:����<1 -<���g���߼u���-�ѻ�=�;Ka���<|�/=wK8< W�u��<��M<+O7�7�<�w�<�-�;�A�<$��<�g>���6g�%b��Ӫ�%b�<��5���,=T����˼�U��D3= Z�E��<�� ���P�Bm=�`�<�M:��S=�]�=��=^x=�C��f���J+�&b�< pW<�bͼ�\A�ԑ%=���<%b�=ذ���>�A8ļ�%�L�+�*�`�6w3�4[O������v�� ����%���<�Y]=��=�~S��L���� -<��}<��%;���=�\A=�=���;c~��4ۘ�"���z�<:����h�G����S<=�0��J�=g���z}�2=F���$5������=6E -=&���_�;�n<�m�<��"���<�i<�Յ=RE�����E����BH����<1����<�`{ ��96;���; A4=0��;�b����G=PR���/���'<��h=G@=z����<ļ�v~< '�;î$<�?d���̼e�<#�|��<��q��:������Ğ��R<��A<�!����������<�=k�P��u�"����60�A��<8z9��>����<�Q�:n��;������ �����4g;B��N�<��r�<Ǩy�1�=eD�<�H ���<<Ǹ}�:�< x�PG�;:m=�����h�f�8�"��<�F��7�<�n�eh�<��=�:�b�;��)�f�9=�G�����=M_�"-�;� � -8Q�MO�<��;8>�� ��:��=MK =|��7�:$���~���� �|�;��>={�=6� �~��;O :��J��i���MS�;:�\��%�<���h4V����<!<�!=N�(=gܿ<��=è8<�C�<�۳<�Ѽ�x,�!�C=|��=i�t< X�;P�7��=� =������n;�R���r�||<�2����a=��=}=���5n�[� �6=})��}M�����<8b�9������i=�F=�f�/=:�ܼ�(Y��_�<7��Ǹ}; ��;$��8Ǡ�����< -ü���R=�R�Q�a<�+�;eT�; ���i��: ������� h]���:�<�;~���gм;|�<���Ms��6֚<��"�9��<~�B�;:u�7 -(<�v�<� �� -�|��#Mh=�^;�*}����<�Im=d(<�����X$�� �<�]x<7.�<| �hDZ�$}�:��< hݻ�A�;�Y�;�*��~�;�Ü�<{��O�2�6��<�������<#m��'��<��Q:�`�<���l�<��<���< �k<:�ܼ��d�<��< �8=�(Y< `ۼ!�MS���� � �Q�[< ��;����� <;:�<�� �,��)*�{�� ��<�9� x��"���3<ܽϻ5~��i��;!��<=}I,<��B� - ˼��0=9�J<��^��l)=���� <�]��Ð2<�%=~�H�6�<�5�<��Q=�3=�z�;��ٻ�������;��<�O��$��;��(�}1&=�9�;�0���Q�߻�����M�������i���K<����2< {��D= u|����#��; �#< ���=<��!=��7=����K�N;���<;+W�S:�<5o@�;�J<�����{��H���!�+O -���S����������p�˵Ȼ#h�< Hp��2����m�K��< �<]����s���:5B4;߬��m����3�<�e^�����K�ڼ��;s��;a�<�V@��<�i��&><[@�<������;� -�<������p�i�컇pZ<��=�Z��8�zJ���;_���"={=}x/=�S���k��Z�ε=[��Q>l��0< �<���<σv��l�=�����:�;��<��f=�@':��<�$b=�fL����`��<�#<��/W<-{��:�~=8&I=��¼��6�/: �`�:t;�� �Q�`8?�C�N<��<��r����:���l<5�ֻC��;G�};m~ܼ��<����&��*�=@Á��N{���b�FFA=$μF��<떗<>/=Wg�;�(������)�2��H��A����/.=I!<���<�4޻�����\=c��7L��;� 2��a��oG=�8R;�� =9m�;�,�\�Ӽ)l�=��|�qm��)��P�/=l -��<��?��/W<��@�8���e&=3d?��^�<�iY=����>=$�<(�&=G������<�vȼ )���;��?�|�T��V'=Q>켶kS��}I<���b���~R -�˛G�2�'�<��;O�T;����������[���%<�E;m1�<���(�<����*& =�0}<�%6;q�)��|#�H���孔�8sg=�d�;)�2�,%��7,�>/���:ta��ڻ?�r=��\�<� -<�6�<��l\�����q�� -K=3�=�Ο��%�; ��9�<��������;E�<؄<�6�3��|�#=Q>�#Я���=�Bຖ�Ҽ�܋�qm<��=���;��=����[�<�;�;iܡ�� k��dҼ:t�<2�d�P��l�(��<��y<��<�@'=�Ƽ����>�����k0�<�\��7Ln<�oG�B�$=��@=/�<�ʕ�׺����o�U�z*�l�:t�<׺�5�8���=V����S�Ǵ<��O<�?Ӽ��<ݣn<_1�<� ;� 2<�)=�܋<��f<�]=��H=��$�rA:}x/�6Ҁ;�7���<���;h�Y�LO���z{���k<�5 ;]�L�ċ�<8sg<<�4:Yۤ<�rT�����ƌ=�Kۼ��8<�3�ؔF���f���μݣn��kӼ�`�~�=u����<���<�^����oŤ�����.��$�<�x��%#���<#�����;kp�����; yB<��R�El�}+�:ߤ�<� �Jt�4K=ɚs<������:�z��0|�;4�<�6ؼr��;���������<��C�0���'�������;��u������<bż�C�<�H%���<=­�"��YuἶkӼ;N���K<ܼ�� yB<�n�<��h<�(V�x������<6��>�� )�'E�<{Q6�!�*���<)Q�N���;�_˺5�8�ƌ����B<˯�=˯ -<5�<7��=9�S]�NrC<�閼�=�Y��7�<���.�<�B��=S�=h$l; -��<�ܼ��<�޽�<�1 ��L�7�ͻN�<*g�< ��Ĺ*�#O=l�=���<9�¼!�p���YhJ�N��<��-�� ;7L����5<��<~(I�`���Sy.=?*:�j�Ȼ2E>���[5���j6���z���ͺ��������8<���;C� =�n��"���������;�<�E�<) =�:�*-!<�N���^L�].e�y�Q<� -����;boܼ�3=;*��;��<�o�;ޥ_<�^�(���<�缋�u=��r=�b�<{��<�.�'��f ��Ѡ��c������Fξ�FZ�<�6�<` O��=�<2#�����<|z����0�����<�W:��'��<�c�:p���04���U��&7�<n<_��<�y�<�y��?��:����j��4|��qH��v�;��;Jr;E�=��)=L��<�=��<���;��f�T�����<��=�qȺL��9�3�;�ǀ< -�J���1<0VI=b����t�;�y�<�##����<��W�^���6���λ�/�;�k,�]��5�@�YP{;�]/��;����z�q烻�>���i=T���]�nύ�@���S��<�����_k;�k =X�;E���# =j�\� -����랼��a<Š�<�0e��� <�!<s̼�V'�"��<�� �[����}<>��J:̜�<(-�<P�����Nc�;g��:}7��<:�}Ӎ=J���|)�x����������J�ݼ�G��F%^=�����=f[I=H.-�����:&b�<#����;=��<=}�=��&<\R=�9��Z�eŎ�qס��/��� =�:�;S�<�x=����!Y�gŵ�G�;�\�<P�;4ކ��h�<�y1�I�q;\R���ħ�@�< �<V<�����:w<��3��Lc=��=<�gE�oɻ�=�B�OT<����c -=?Q7<�y1���&��ؽ�����8؈=���� �;����<��C<^6<06�;�0弤�Z�Ot<����7H� �<�G ��t(=ˆ���m�1շ<�G�A<*�� 9<�� =(�<����kN�<�ጻ���Ȼ��>�7$��$�<�л T<'�˼���;)b.<�=��<%��� 5�<-8�AZ<#$B�~+=��=�f=�9<�8&=5^<�� < ��]���t ?�O�]<���94=�p�<�e4;�ƃ<�B�<�8&<�9�sv;�=��<�Z����=�b�b�ɼV�,���x��*�<[�p���d;��<�9������<�:�V=��������;8�^<�\<@���ؘ������������&$i��ؽ<,��<��=�_�ʻ�Ҧ;�ּ ��<�<�G�ʼ��ͼ|i���n=�G=p8��s���د������0�=�����=\I]��C���l'=B�T=�� �/ߺ�pb��߻�:w;'�;�<"��;s����:;������ �H��ɲ=����Z<Xj=m/�0��>�J��<� ;W����4<����N��ا��M<�6G=ɕ<�go��ۅ=����M�a9p6��-�<��<�u<����E�:�<�1ս�%�;��<{f�4�G=�qw���=Q��<����=�r&�.�<�E:�����,/ʼ:>�=���<޳�M�'�k�'��op����<�/���&=~� =7�; -/ʼ"�<���;��<�y>��4*������!�j\&��"ɼ��ʼ���<�ц�� -�zC��G�̻h��F �G�̼��E:D���*��Bf.<�֊<)�5=��;��=f��<��<�u <�j�<�Bl��1=/�J���C;�e�9o��D�z���<֮�i�/=�C:Ei�7,��t=�LJ��EA��Œ<3����x��$�YA���8�;�u�<&��9IZ =��ļ���;؊�<"�=��)=A�7<��!����W�B�O���U�"=����T���;��<=�1�F <%x�MK=x2 ��- ��������l=eZ�����<(#.��׻GE�@�<�t=vێ��> ���=0�JH�;�b}��슼+z,<`-=F���tL���"=��|�<�C���-�=Y���y�_���b�E��� ���`#��Gp=y��;a��<�E=`wE;H��n��<�k���=8�M<�X��>�����ڼ񋍼�>�;~�\�͆�=�(�T -,=�;K=IZ =! d=�� �$2(=������l�������J�<��ļ7;o<_��:(w�<�a���E�;>ּ�ƒ��ذ�ᤆ<���<�C���Bl;!����<�c5=_�N����c#���8 -5���8=���gs)=FW4��6Y���<��V����EV���6���:5`�^C��N�X<��=3�м?�@���=<�y<2\��Ei�=��<�yP=�c�;�a�<�?� T�<��0;��:Z��V;$2(�'����Ƽ;���h�<�� -=<��ȼ�|����T�m�UP�<��<���;ď����<[u��jh;�W�;�G�Qf��`μ�z;.�=�Xu<_��<��|���^�����v麉�U;�4!<� 9�����~Լ�^�:�a��<'�����YA��4<=� -�<����;�<}F����Lb�A̦<�4;(2� ��<1ڼ`��<3�л�)jD<��)�����ZR��������N9�<�)�<�2$<�Oܠ<ʖ�;T@0�X�<-sȼm�ټ�ӕ;dl�<�^(�@�=�YQ���1<��0<�Y<(� �r�h<�C,< ����><�=À<��y=��<�^�iƸ����!n�<�>��曊����<�+ּ�R�<���́<:;K;$]��[�&=&Ґ�]V����� -F�|#�;J�ʺ����4bj��ޗ���=�t�<�-?�@� ��� ����� -F��&�:����� �<\˘<9��� �<��I������ػŖݼ�Ġ::�ߎ<���;�t�<� 缢T�< ���=�d=��;���� ][�ͬf;i�_�,���O�<(]�;��W�Ѭʼ��b�ӻ�� -�G=�^�<�"���3���8��y��۬��^�S��:t��<7L�= -~<��@��H�Յ9;�#��RY<�ز�]w<��˻��H��Ex��x��;�>����p<(6��i�=�7]�k=����`�<(]#���<��-�)9�u4�;��û��=��<��;��<:;K��_<<H;�y��� -���t;�}<���;�j���ϼ1�<��ú# �����;,6�1s��E*Q�)sd����(]�<���;���<�t9=�1�Rg�;�9F��;=c}=���� �/�-��<��m�ü��; �8b�;��=���;n�����<���1-�a���`�V���-��#�����vJx�a}��(�<�H�;�{�<���<� ˼�q����K=�һ�#;�©��$<�!�:^���i�;}�n;*]��U�P��Ym8Tg%��M��`�<��̼,�;)sd���V=1�<ͬf�����lE��>��A�6;M$<<;=��tͼ�t�;�#�;�vR=~J@�pE�= Һ<�(=�&c������?<# ��7b$���<��ͼB;=n�< ][�^� -���ɻB���&9��ߺ-�'�������,�9�<��r��<鱽��`-��{Ἓn<�>�<�X���Pg����8=�� +<��;����(=>;/;;���;��<�����';Y}ʻm�C<�j�;��>=pE�<���q��%<�����ز<��Q<nq<ǀ��9���M.� �z<2=�:����<٬<�#<����:ן;K*�;"�B=�o�<G�=�!*=� �;1%�<�=<��k�\;F��M*�A�A����C=�E��yx<����e�>��<3��;�{a<�7];���<م�3;��E���;jl&���;i�u<5s���=�vҺȽ6;��E<�+�ռ�c���-1�nE�;�h~<=�ݼ��O���<�{�< ��;�� <��y��|�8�B�;X@��� �T�<�8n9:�h~9�z��8ŧ= k�;m4o��;�<��L;�oZ=�e<���<$Ҟ���ۼ��?=o�@�\� -~�,�<H<�^�;Q����$<�T^<{ =�H���>q<������ϣﻇ�F<��H?5��ׁ<���<+��<z1=��f��E����/e�<�eҼ4�r<+��<�e�<]�<��<��2���Լ� -{;�G��"t��U�w<<{��`�;+6��� t;��n6��Y_�M�C��w���b='�=��:ʨ<�<��Ƽ���;@}J<�'�ʴ�<ϋ7���=�A���;���nҷ<�$4�{B<�憼�����!�#��<�b9����m�A㖼 7�;�J,��[ܻn��< -A�:ĭa�j0�=B�:� ����n�����f� =�n���m�=⼢��z��2Ń;5d -�x�=OH�<��Ἁ(�<��]��Y;����;��T;K����<�r����<*��<�y=�զ<����:�<��Z��g���*<�^<��<���;�nx�+C�����-62��`��l!�^���J����<���<��=�� �ӻ?<|������;���<��<��J=���<�$t<7 =��=�4����$ڻU!;C���@��:��E�� ���9;�Y m���K��Z��ʺ�<�m�yu �:�jC=Alz: -����;�������:U<��<~Ŋ���=���P�c<��l=j�a=�D��A����&R<竬<� �<�RI=��\C8=���"==�%[�/NQ�Ϝn=\𢼉_=�==O5�����<�.ļ -��e� <��B=��3<}h� �)����<��=��3=،=��G�K�<��W< zԼ�fD=���<+�����m*̻�m<��-=�S4�������=A͏�k��<0��<h(���k.�:��V;$���4�^�"=�t���.�z =gG7���3�K=�܋��n �t��=��<0(<]���"m��ԛ<7&������=2�;;\�ͽ��*�V�x�TE���<����V�x����<ɉ�R�#=�C1���;ߦB<����u�|���<�uܻ�6I;��H=�<��I:8����IY=��k:i+�<�`���t����B����߼�A; ��<���=�6B�87;<2ѻ'�<=��ȼ����X��<�>@=��I�3Mf<|*���W�<����e�<�TkG��a<8�<�L��m1 ����;���;#�<�f�U�RZμ+������<��<�A�x۵��,�>���j<\���{�<H��v� =ԍ�H�d9c����m׼�a<����k�m}a=�U�;�ؼ��<4��������P�#�!���D�<FӼwQ���Լ�8;��0�)��G]�;�e=>ջ��U<�8�i����<�];�!����l�����#�g<@�O��Ę:i�;�=H)=+��<�<�~���I����z<�5�<��;�x@=à�=�I��t?���+������]߼��=�Ȃ� -�;΢�(����#=V^�Q={�׻)8�;+�R=��<����>����;��F�)�% =��&;L� �;Ƹ<7�!=.'o=*ρ��=LZ:C�A<�����O�1����4��ݻ֯�ӥ�1E�;R��<���:&S+�v��<�}=<�μ ;���o<���.@�[�*��uL=�@�<�[P��=֯q=��=�p��6�a�j�<}|�����_<������`���༿���� �������;`�R�p��<����ü�?��n�ل¼�y���<�L���wۻ��ϻ=�O=��ۼ�s��a}����;lb���<}##<��<{��;�Z�<�?=R������f�;���<��;rAT=��;[]v<�ه;�����{ -�w ��\=���0�E�,=WsT<�$�<߼�#Ѽ�E[��ּ��� u �}�h����9�<��2���H�V%I�j$6<�g�ʸѼ���:�< -�e�b����d���� ��%� L�;'h�; W`<�@��ED������;q�N�ɣ�<)�!<�1�-k�v+v��g<� ����)<ժ@���)�qܼ��d�;���8��9�"h<�A����d���;���{.�<��d�{.���c�(��; T�񼜼�ܻ=�=�?�<��%�7n<��]�#ģ�;1�;�窼\ԗ=T��N�<0T����;s ���o\< b=�9�;��<`=�3Y��#���������S�;�3��f?=�y��}��U����=�������=��5:��;jޅ:�� =3�!��2ؼ�Ҽ�/=�=��K='��<� L��>�����;�I��W|=��<�#e����<�$=��޼�#�o(μᅞ��8^<� ��(��;e���^�����ɻe��<�uF���<)���� -����^�<��v=�1:��6<�1�<��<�u*=�f��������s��<�'<���r����0�n8&;��� 0;�R�=�A/<*����t�S$J<��,=�>,���ٹ��]��Qv�-l�='&0�m�U���!=���;�<�B��d��� =•e=��"<�H��A><��];ҋ�O;��<��<�hq�H|h��Cͻx�9|��:2�9�R���h��s�<~��;��<�� �"��)��Zc=� �=��<ί+�����2��;J��;���%����;l��;S^�i��<��aN=E�:-�`<�\e;q�2<� �<_>�ˊ�;*��<}w�ͷ�@=�o�<� �Dg�� *�;� �<���r^�����t)<5(�;��;�<�<�H�<��l;������t�5e���}=�=i���ܟ;��;�y�<��;�����;��(�_�;����:+;��<�vǻ�޽�vn��x�<�+Q;x��<�z�Pu�<&��< @����<�=�p]=N��X�λ�N�Aۼ��<�ֵ��y��b`�m�=<_̻��5;z�/=�}���2�� =¡�����[�<�/U���q=�-ּ�7}�kRż��̼Q��;B�Ƽ��}�Y;8)H�&�=�u�����u�N=�:{m=����? �8�<��&*^;k=�9��n9�e����w;a I�6Q<�(����;{m�1�<ɮ<�\=%yk�Q�<�<�:߸~/��և����<�b�<�.�<��}<=�<�u���/�<�p�<�T;�^�;y �<��&����Ҭ::��� �&=��|<=p=9����S<��<"h_�F_�p��nĻ�������;��<���;"̐�����>W���Z=|?<2��v��<��;i��<��� -�Z��y�;�1N< @�;ܤ<���I �<��U� / ���;�BZ�Q$����;� =&�)�����'�0�u4��57<�r˼AS�*ŵ����8"�!lݻ#, �9��ڲ�<�y<�S���=������'<���c<��^�퍠<��< �=餛�C �<���<4Gd�*�b����<�򉼄�ɼ�l�<�;ؼ�ē<�������{�X@�<��?=�e<*�5;�`Ѽ�?�<�W�<*���4�M���3��١<Z���<�H�<����9'�7iɻ�BF�<�����Ř<�~��sw�� =CrƼu1ѼCrƺ���ԧ��� -<���<��ﺇ�;�u��6�)< C��Y���S<����m=�;�<�;ug�<�0<[��;�g=�-8��<�m��6����,�<8��k�"<|h��b�`� ܽ�״:k�=ƫ ���a��<���l��T�����5=8���<� ���p�i�==�?�z�H=#��hƝ:EռN��<����b��<_����/ �H=�=��J=hƝ<�ƀ=�&=���7β<��<���9[,�<4�-��~:����<��?��!f<� �:6�l=E�ؼ�l9�<=�2ۼ=�i=ͦi��~<��<5��@' ���=��!��'���CK����;���� <,����V =ĉ�<��(;�i=�����8�<4�=��$�Ee�;OO��Xo2<,���G�4=��6=�9�<=Eռ�����U�<���9�.<�v%�;�=��ż��<�E�<��ȼj0 =R��;�?�i+��aּ�s<2�;f ���c�e�;]N�;�ހ�G"�;O�<��<��_�k��;%5�C�/��y�<���<��������i,<�?���q�$�+�﯅<���<��ɼ;��� �Z���< ᱼ -�u<�p{;�ܓ<9�ۼRnl;"�{��mg;I}��$�+=���<� -,=�ƿ��M�~É���$������/<��_j=2�輄\3� h<;�����{<&K>� ��P{C�����򉼴��:T�Ѽex/<+V(�<�=����S�:�`Q�/?-;O���!l]�"<���<�~ܼ��*���|h�< ���3���m=d ��:b:ٻT��;ޮ�<�}���:=�<{����'5<�|�<8�<��5=!����r�3?ּ�~μզŻC����T�2�\=��j���t=��9�VP ��9y��ݓ���䔁<�� ��+�8v�#=���=#��;ɐ���Ye�!~���Y���5=��M����<]=�w#=��g=`ɀ;*F�:�#��[���5=.�G�?ڥ;F��v<�1�; -����ׇ��V�;{����q��o7K�S V���-= ꫼����&�u��i��;��8�5ၼ&�;Bmٻu,½ ��| ;�ly�sJϼ<�!��`��G���Q��s�: -<���=бκF����Z;����-=��<�0<�;ؼ����]��/���ڕ�S�7:2�\�MWǻ�1= j[<�~N��f=��M����b+�<�6�;�d����U�H<����W'<�ă;Oy"<��ֹ�=� =�Ҋ����<�Si;���<���;Lf�����< =�q��<�O�: -;��<��=w=*��:'s�<��W���D�<^�l�;���n ;�6{�<ǡ:�;��}���`�:�#;���*F�<���;v$����<��1�D�=n��n����(d��-a;`�<��H��9y<&���D�<��3��<��K�O� -�x��<���G" =�vS���;͞J<�O<����C^��# *��%=�=W�s��;���7�7C�;R��<�� M�;5a1=�*üT�~� [��~��;����+wC<+7ۼ�^��D���@�<��9��<�L<�Л��.=X���. -����.�X����z� =�7;��kJ< -�����;������<4�<�d�:������;��2=뽯�,� �=ѕO;�_���C=��C<� ��w�< - �<7K�!���:�=�K�;���=~�<!��P�=�`�<�<��<����u�<�.ߺ�$�;���<>�ü|�=^jǼ�< =eÍ��O5=^�=p��M<�d�<!K9�׈��s�<�4�AΏ��F�}5=�m���䆼0�<׸;�&��#ݼ@��<����?�� �^��@�<8�;#�`�<�4�߅���j�������'=D��:Z�0;ו���<�a=��=Ā;n;<���/8=�P˼�xN��m���?��\=��c =R�|=��< -6=�=�=��'�Iμ - ��#��PyA���=N��=������3`��׸��M��6O�a��i�3<,Oe<�켉tּD��<�Z�;�r�=��2=�G��`��&o������?=�u����їn< -��<����E�<^j�=O�4�bԃ��� -<�g��� Y�>��Id����;\�<���;Q���oF����8�=�#:�Ihn�n��;f��� �^L:0o<���!G�`=����C�g�t=!(<^_;�s�<��!���<�8n<��`��`��Q�]5i�L�軨��;�?���0<��,<�?�<5�T��\<�� ���~�k"�<*���w�X���漺V<�����=(��<� a<�K�*��;9@k����<:<������⼽��:Id0=�0����zɤ;:�=i�=�k�� ټ���<��S�M�7<�S�컐��#�˻�<���� E�:��?���2=�tn����< ���Z@��P{`���{�5�;o�G= T�;������<�=6���=�=dJ�<�K���F�5��=�+<���:%C=��8�iT�`��=>b4;� Y��q�畉;lW�;�o��=2);<�� =�m̼�����!<䨞<7M#<��_������ -T=��<$��;Ԁ��٪`;�1d��`q8�ҝ�LЋ<5�;$:T<�(%<�ߛ:����Ė�U X�Q;��:��=U� -<$�ür7B�U9�=�ܖ�zH�䪽<�.�<���<ٴ;���<����bʼ�#�U� -��OX���ʼ�#�;%s�,M�<����,I=a��;�'�����4���D�����B<�%�:�4�� ;8�<^jG;�Ɂ�j$�<�t�ܓ��>`�;�̩;��-=�=h1��p����_����C��V<2<���<���z�<)� ;$<�<�h�<5��<=�Ƽ�0~��d�;�=�����;X��M f<�<��qE<8 n���J<2+Z:��;ꄓ���<6�p<�=^j�: �<&�<,I�<��c�h1��S��'���C���7�!cA���$=S{;�x�z<��/=�Xֹ~-e�k�����m��� =Ř��Ր<)4�<��d=�5H�o�<�����e��1�=��]�6�Z<�e㻁���K�0=d�<�f�9��F�E=��<����� -�<�XV/ <��t<ނY<�=W]C��Y;�N�< �����i�K=��;��Ի�r�<�{�:v�f<\��c��'=�&�<&��<#2���3� t;��M=-�V���=�� �ͬ\<����� -]=�G���A�;�O;B�;�:�g��L#�<��A���C=�'g9(�t<�주ͬ\� ��=I���T)����ļ�T��S��_�U巼��Լkz<\�뻞�ͻ��I�k#W�"�<�G����1=:�<�NH=�F���4=��5�S��T,<��;�Nk�?������_<�h�����<��^������<��w�k#׻?뒻��5<��=������G<�f=� �_<�-;��<���"���<�k����<ѯ�����&�i<[>��JF(���0<>/�<�� ���c���Q�<��=�(�9&D�<:���H<"��-���#�Ӻ����FCLQ�<z;��k�@���=M6��,{ =�<�a��d����{���'g<�x�<� -��b<���<�5�;�<�;�g��)V4�<��<;�9<���� X:�,=�T���u��眻z�1&y�4��=���<'��Yj0�k�=��u�׉�P��<���<�F=��<=��<�i����/=V��� �<ӡ�;ԛ�;G��<��<���^��Ǻ�<�o��ܥ�<�6r;t1�<^6�=7�����<|F�<�����������s⪺�J;���o&�n���H����<�Jd�HQ<�����=��B�oZ�<���<�������; �W��ߢ���(��x<�w�=�P�;s�_0=� �� ��N�<��<�O�;y�=vj ��R2= �c�1$=�ǻu� <v�;�<:��<1�Y��|�ll=Gb�:4���$=��<�ll��7���/�3���{��Q�����������թ<ՕE<$�=�{��7I�<ݟ��)�;,w�k =�ؼ]� -<�L�;�U<<��8�6�q��������<�{;���<4��<��U;�B̼���� -�m�<̆�;wo�<4�K<�hQ�B�[� �W<�������Ѹ�;���ҧ�<��<(c�<8��T�<�B���L��lwX<���<^���zz��W�<检��2漅��<�&<��@;ӡ��oZʼ�=� �?꺰u���_<< x;!���� �dຕ^��?�X<��ݼI��<1(k;��D<�{;��<�T{=�(�8�A�7��-="s<%�L=x-Y<�R=��=�U|<�؏բ�tZ'��z��;9��97�wcE��ū�gK��&Aj<����G�<�ѵ�i`<@��:�x+<���;��O=���:aNI���<5� ���=2ƕ<�Ry�-ӊ��$%�����0\;-�u�s尼 C��AiJ�+t'��-�<�h�=�C��F�=2Pw<�Ը;p10�}`=#8̼�p�<�k�բ<�g_<[T=�@���}�[< = �h�̭o��n�$W�<��^<�o�<<#������ -�<[< �a����d=����#��3ȼg 輯|�;J��'���9��<"�:�U��7��;n}/�O�:�I�鼘h��IP=�L��K�;�?��H��uD=�}r= �2=^� �+TN:���:�9�ȅ ;X�м�ǀ� f<��=�6�<�M�<��<$�<�h��,�;pܒ�~Ռ�~��<�;QE���B��T{�x-Y<�~s�F�K��曻�o�=����׎%< -Ov;�Y�<�v<�o<9�����U����4=5� � ������U#<��;�M�<ƛ����� 9������q%= �����<�Ҷ��G��H�L�e!{<|��:�L���{<�����d0=��=X�P;6���(��;��1=�{�\[�h<���<\[�; -:�:U��������<����o�;��Z��;$��N�M� !���p� P�'��;� -%�ȅ��r�C��;'+�<\!�b�<��<�/�;���=f��<_+:rp��D����мG�|��=����ڦ�բ<%�L`,=�U��ij˻z7���dJ��dƻVԋ�� �-ӊ����:X�'+׺�WQ� !<���U��<�1�<�� ���<�<��<�8�<̭o9e�<c�������,����<�;9=ټ�;f��<ޚ��,<�" ����`��)����0\<�G�9/��<쓖<�q=J�E|.<)ja<��ɺ �X=\;�:q�&�Ԕ-9+ -����<�q=�N���H.���e!��ܐ�<���G<� -%;U_<0g�<(���B��t�D<��U<�h=�:<�@���%�jT�;��&����U�<A=��ּ�q,=0R�<���:��r��}�� ��@5�]�='%=�|^�M����#G<�k�z��h��<����f�<�-�<��s��h <�=1�l��!��]"�X|�<��&=.z9��m� ��i=U���~��-�<�U�&���.=Qj*<� ��u�:2=������6�DF�:���;��<�rf<\�A=�H�<�2��+ ���}<Ő==��N<��;�_=�3�h_����<��<A���� �E�r!p:r0<5ބ��4�<�e�6s=P��;[�T�n�ϼZ}�<�.�z�S��H�W�a���v�<3=�LB�X��<� -�:�β����<6J<�� =��#=���<�X�; -8�:���<,�=2|o��q�_�;��7=��-��e;�Y�����<�p0<��Y<==N�|�KX��)&/;��?�N�|����� ��b <�r漉����LB=����5]�=�H��~�E<�=7ߟ�0�(=�ZX��\=�8�<�~<9�~=����몳<ޯ/��U<��^<�<��<"���bM ;2|o�t11����j����Ƚ�К�耮�� � ����=��$��oR�ֶa<�L¼3�C<ܟ��<���<éf��e�=����͉ ��(�����t���M;��M�w� -;��!�s�.�Qּ��#=B�L;�O��I�;���<Z,=�͆<�(Իs�;UR�T��=�P�<U�<�%��s�i���<h C��^v�?�1��C��(<��#=B���g=uK�;�;��g������h��I.=܅*=�„<T=�l�UR�8�0�;x�κUH<г�{>�xQ<��,�X�e��@Ѽ���:yB���fO�<г<]����*���<�� =?�ǻ�� -=���[����"� �������<��ټ$����E�;�� =�!"�U{;r���u�� �;d��g���SkE��c�<�������;�%<���<��;�k�i;�rf��t���S:q�m������; /���3��Q-�u��<�ͺ �<�+�<�>i�Wc<�� =�8=��q���x�λ8t"�+<�P����;'%<�& ��:C�O�@5�,��<�Al�:LS:�Y=�8K8;��&�qr);� =#.�<�8�<3 :L��Wc=Ï��-7�<���<��;Ǒ=�$�D=�>�<�Fc��4�@��;�*@��s�= �μ`!�<ǐU�#�����<[���e=�'�;�eN���<�ȥ�^��;� -��i�;zI3<󖠺�ۯ<��7�C��}J޼����`��K��<6�);9�Լ��<��W�GA�ʼ����5�M�{�|�;P��̫�<ɓ�:�e�<�e�;�G<�(-<�I�<-y=2`{�r耼���֑�eS4�3g=��R�<"��Yb�ha���κ�ݏ������<�&�;��<��<��s��<��A��#J�j��<�x�<*D�<|�r�MCh����:+Ѿ;��_��� =_OA�/��<���;YyX;�p=��b�W�<�H��M�<��h�u1��~�_fF��ȝ;�AE<�6!<���8ՙf�{������ej9=�l�1��<1�"=�wx<��< �;$)`;i��<��<�� ������̫�<��鼇���;`ܧ<��g;W=س3=T0V;`�'�EH�_OA�L�#B���<�X���Q�=����{��r�=���; ֡��P�<��><����]�d<�4��|��k��uݼ~��;�2<{�<1�,<L���=eS4�@ǽ�no�<&���!(5;�f�u�!���J<߇���t��ƾ�;+��:އ��6�;����ޠ��(���F�+�(���d+=q����2B���<�?<�^�DUϼ�(�<�R��<~�D<��;��;�ӻO�λXڻ�,ۻ!�J=�[ռ��<�a�<ۿ9���ڄ<��鼫��<�?��&�A=&�<�Q�;�t2����[=�C�<��5�j�'�=���[H#��9��ױ��8�<�W=�E7�jI=S&�G<*��7!=jI�� �<5�� �<����ղ�:� r<f�<�b-=pА��I�g�����:��F����μ�?�;!�&<�/ -���<%����:�~�� -=P���?�<ӥ+<���<�: =�I�ϵ�<��L�bE�<׿a<���k=� r����<��<��02��<:��{�9���< -�D�j&P= =����6��;�ц<;��2�;̨>:%�*�5�Q��S�;�(<���<�����*����;Z̮:����Jr =�%���P�^~=�V�:g�<�:��+y�<{�<'�;K���O�O� <7 �<{�=+���8s/�/�:��j=Ե7� �� �t�if�<��<��˼ds=#8.=Pꌼ�Z=����e#=�f�����if(=����T�<����ǭ=(�<�'���5�Oږ� ����� -=թ<��0=z�EG��&h��� �F���91$����<�e�=��;.�;}��;`�����<"ش��35=�z;��;L��<���J�<2����!��B��^`��Mj��!e�<ʓ�;@�!���<^��;��ۼ�8(=!����������zL8��<*�+;�q+=Q��<�U��ŭ<ō����<7�4�7q��'+ü�3��� 3=�L����E;��\�l6�:ퟥ�����Rp�?�h<��Yp�<�d� <�e<� �:q9<ŠN���&�bS���ܹZ��^� ��a=�D��<��y<|�5����:��;<-~Ѽ�Tʼ���<�R< �><lD��Ҙ<����_M��6 <eo<�M@� �<��P��sB���<�AI���/;|?��O�V=�溃��cc��F���zL�9"�!x;:��=4>��Z�<�������&h=b�*��r��������:�g���B;�\<�E�<`�<�%���D��E=����aC1��+����<�;�&ʼ� �<�|<��F=-�ʼk�����=�$�<��� _�;>7o��X#���"��2��<#�*= �H<���;���:R�<?m���;�%V���3���' =5����T��:���<���9Nz=��;�^<��Z<�V,���<}���<���;yP�t �<̳ϺW��;�H�����l��<�u�;9DZ<�F<�-�;F�黦��<,����$Kd������D��q+<�����\��k���<���������:�9˼���<�e4<��;��7��,�;k�=���:8Ѫ�)<Ɉ�<��R;r #�3n=w|�� ���ɈZ<�›�n�.;`�;=�7m�B&l<��i=��;6�<{�Kr=���;�3,�����O��߷�=z)�����<���|�;�Z���@����< �<��b=��ig<������;A;����OM��f=��������e�:V���aL��>*�;ZS���%;���Q<�f����p<�����P��4=���������=ZS��ڙy�)Zo���*;b �;�e��Ґ:�`��o����< 2��=�˥<�������<�:��=�G��PL��Hn���<�V<����o���5�������ƻJ�><"�8=��Ҽhh�=1u ��vF: -4]��r�<�$�;)��<��#��u<;����l��ya=\��<�Tu;HC�={(8�����!I=L�<���k�<Ґ�;�4p��J�;������d���z��� �<�Y�:��N� �;=���<ʇe;9/ �&����<�����W6��Z3<��*����;���~[����= -E���Jؼ���<"a"�ns<@�=d��<]PR=K�I<��ͼ��W��+f�� ��?�4;G�k�� -�=v̸�>*@�a�<^���g="<�&< c �3# =�?d���w<߷ �x�N���<|�!����<�{������$�<��v�<{˺ާ̻ح -�� ��ϓN=#`-<�G�:�3,��Ն;Z��qq�yۀ=�]�� ��G����;IB�9�X���=z�͕��Z�Ō.;�H����;���<�k4=TH���S�;�=�������=;���CV<�d������s�;/B��~�;J�T< ;��Z�d�<��N;p"���{<��;W��:��B��縼��=���������M<��<���<{˼�ɻ����z{��n��k4=�P=|wY=�^��E�<�����ک: F�roļ�*��\��P����<�/:���1�:�˻�2;y*�<�Kk9��o;����=zV<ح -��y<�J =�aS�U�1=���<�CV<ם�<��<�ɝ;*�;�,��}׬*@=ܩ6�ek���I���n���=��?;#O{��3�}���)l��v���Q�M�<�<����6=����=ح���&��'�<�P<3�W��1B=Y�<������#��< 2�0v���Ϻםͺ��*�v�8:UG�<٬y἖��<TD�=g9�v(�Y����;PL=:.�<|wټ���<���:�@w���D<{�ﻼӺ<�_�;;\�=�g�;3J=�%+��;2=�H.=�����< GԼ��<�;�<*�2=��6�ʑ��@.;�5<;sGp;IJ����;��!��Ƌ�뱷<�y��2d�O���Go�4Z=K@<8H�=�9 <����q�<�$�z��<�������*�<3�<���D�E�O;�]=���N�ɼ�0ͻ� -ٺ���.��� �/����<��<���;s����!<3Ѻf�2<�"���!�\D=Dt~<���s�;���:a�;�F�:��˼�?�<� `�ܷ������[(=�����,;]}=�� �P�}=(!�#��_m;]}���i=�b^;�%��l�Sߤ��[(�� -�<6����.�1�;����_�=�F�<�e������;��<r����<��;��`�3_;;01�?P�� =���h�<��m<`��;�d<�\�|��<��9=�M�<�.W:��9��&<�;}���J����)���7<��<�ɼ�>�<�(u<2��91,=��˻.G/��=������� -���;4Z; ���>�:���;K���V�\����<`�<�� =a!|��'!��ѭ<��]<=F��Q󼙒]�F�i:䴨<�9<�C�<���<�9���&�<�54=�Wy��5м׹�<�!ۻFY��3{[<@��<�W��μ�3����١�IA5�L@:��墼E,E�7�=�=�;�c�Q>D���/�����;�=�� =�$L�آ)� ��F���k�����< HO�>�<2�A��%Ǽ_��'=z�ڼһ�;�ı���<ɨ ��Ҩ<�`���N�<����>/��'8 �c� ����\<�D<*ƒ<��Z;����Dº����H<�:<��<�d<�2���'�=���(�;����s:����Z�^f.��>=�� -�C-�;鲲;3_;����@�_|�<���;�C -;e��; �A���ʼ�#���<x=}����G=f -;���\ ���۟<�{��8ݒ�T���W��cV<��̼�ny=ޒ�;P�<'���!=Os��p���"G�(�;T��� Ӽ)'L��,��'#ͼi�ż��}�������O�I�U�%�j ��=Ӽ��^�����x��C�;h�-<��==��м��<�������<�{����N�ں<�"�=�SZ�|�<<�-����a�~�;��:<���<�輭�����o;��������*��T��5<�q<̼�_ޘ���h�T<]�˼<�[:�ֻ�7a<��s=����Ԯ=�f#<�n����� -:����<N<<>�;��2��&=���3S���;��鏼 ��<�E�;f -=u -=��I=5?�9�b�<(r3<�<��3b�*�}�����`��ny:``��b��<�l��qF��T4=��̽*E��&�<���<�!<'�3����!z�<^\���z���ü�B=�Wټ��'=�h=�l�U�����n�u%�<��<���"������M����;a◼�R(<�O���;=u<��<�>=u=�<���]�K=E��;��<���:�'�����Ҫ=}���ئ�����r�;��5W�<�h�;&���(��8��y-W;a�I�T�!P=��&=>�=��L�D(��K -��wQ��т�!/����5�V�<ԖûS���¼4�x=^,�:��P=�*=� �\(�<��=xx�����<�ny<���J��� ��� ���;<������μ``�~�<� �=�gU<����ޅ<�;`:tp@�E�׻�T=�|��D =��s;���� ����<��U<Q"�D��< ��;B���kT������\����� l��_׻o����g��SZ=.f�n|�<���<�� -=r�<�����W<��<�����T�軞B,<���Z=4Ք;���;dh����;J=�E_��^�<��:�;>�ڼc斻G�$����A��Z~�g�F�����<}5U=N�k=*^�%��IP<�U<8z]<+�1�����%μ�W-=�wѻr��r��!z�<@ (=�W:��=0j�<���J黺�};8�D<��e:M �#���^����<�/���ռXP�<��:=܎q��=��U<�����$��V�<�[�=r�<#�<�e�;�ºv=���)�y-�<2�ǻ�SZ�q�<^8�>�A:Z��9_<��:'��#O<�?�;f�����Y<��9��M<ڊr<';=_ޘ�tX�:ZT<�w%=�k<�)�<��h9,���M 9���-=X5���J���ͼ J�5W�8z]=^�<�h�=燡<3S�p��:�(?=��ǻ -��<8��<��D<4�ƻ��~�B��|�<==O¼�;�<��溻�O�ض����<`�x�/��<�BO�y��=/�R�`KE#<�����4�����<����͋�sJQ�P;=$_D�ܐW���J�)�1=1�&=�/�=��5<�N����;���,�=ꋱ<�O��X�-;�z�ɻ�;��S�J3��<�h�!���v��;�]%� .\;�IݼXڂ�☢�G�K�J3�;��l���?=�4:Mc=&��� ���� ��&������?=�%�������<��?��U#�,��#<��Ҽ/�;�ޮ����<%�������';�@��G�=�D�=�g���Z���<���:��=k-1=�ۻ�o<�/�8����nF�#<��<4Q��*�;�Yջ�‚� E1=��)=z<�g:<��;���<�'��74��:��<��O��/kA�ȼ�e�9����Sǻ��<:���&�)���:d����ۼ���$�f���;�ܕ;�����R��ɑK<1�<�@��`8 < �(<q[;����1������q_�;yR������Xa;�L� .ܺ& �;��"<b�<�� ���茽a�}`h�"op��B˼0o�?��J{����<;�Y<�����Y�Щ��O1=�3���9���=����1(=��N<��a[�<��T=�F<7�J��E�8� �*��<}o}�8��<��L�I�2;�����$=�Tȼ�Y~<���<����̣����:Y���Se�����I�G=�j��_=�=-,��+��<�V�<|�6=���;��K��?V� ���A�"��54û�7�������<�;��-�R�;�3� ;�����: -l<���0`�j !<�X�<8����X<2 -=\̺>N;��;�}x�[��<�j< -H��lnV��z��{���=-L��Ľ������ ���Wx��ષ<������Ϻ�U/=���? ��'=�fE?�<����#:54�; j�:��@<�J��<�v4=U�t��B�cu�;�#<�"�<��练X -?��<�"S=�) -<�ϋ<��;i|�z_<}���;���<� �*�< /�<;��<��0=��p=vg�X=<0�= �!=���<ˆ~�uXʼ�t�X*$��&<����<�8_=�\f�ر�: ={��<���������� =�2<�~��7�J�4���^� ���l<�$=�K�<�"�;~c= ��{/�<rػ���<�����K<�%���IB�qT�;�=L��&=-,%8�E3�/]s��jԼ����7���&�ܦ�;s���C�<�e<�Yq<�������;����]�Z�:�.o�@W�<#@���)h���=�ٶ;"S�<,���}6�LH0��t�= ���;=r��uC)��c������ADU=M5 �"Sa��矼�-��=�B�����;�*M��I���;��1=p��2����<�V��=%!�AX�<� H;��86=�� ��A��_��g��;�m�;?����[;�9���;q��< � <�?��� ���d�; �h���<���;�~��׼x�K�6M��x ��h������<��<bm�cҺ�H� YM���`���}�<ϑ�Z�}�<�hG=�-���<*�R<6���3/<����Ƒ;;�<� �;�/�鼋�<�%�Z��<����=��=u/�<\Ēi�d�<�N<b�<���3;����������< 薼�3m��= ���=ƣ<�=�y�<�����<���<v���������;h��;ء���<܀���<<Ӟ<�gٻ)���<� ��_i5<�F�<90<�ä;o�F���,�����Ćּ=�#;��<0��O����N��ӌ�U_���IJ��/T��N�<�rL<�9���<툠�MB�bS�C8���O����༃�+<��X9;_#����=~$;������޻Uz\;��x=�ۑ�՛�5����R�E <&���cE;<]��9�瘼ڝX��;�M�]����4H<-���=I5�T�7<�M!�\@6���-���>)Z<�1=��d�A͛�� -�S8�;p�2<�R�`Ĝ=0�$=�:�(yQ<�`)Z�̓N: ��;�9M<���<� ��ʻ�v���/���|\;�u =o>9<|ܼQ����<]����ߙ��h޼��<'hżg�<����^�T:�#�j��;����.=����zǤ�?�<�&���� ��� =$�&=K <��<�>�<�C�<�{=p��<�+I<8U<��Q���G1'��Ѹ��<���=�3:$��RXD��<飺Ȱ἖�8=S��<��<}��<�O<�߻+|�=�Զ�ʂ�:��������<��H�[����'� ���$<=\����<�=:<�rS<�&�<'�8� �Z��Z�=�Ѣ�҄�<�3z�����!e��g�x��7A=�m�=� -7=�ȴ2��Y�h�l��_���<��)��`���w<�?<����"��eԸ�W8�F$�2=��]=W�ļ�-�2$/��|��@z��ۈa�<�3Ի�!R;�z\���<�=�8�;>a�����(u���V �a��S�Q�o=��f<� s��B�;�m����C8�H�$=�)n���o�}L=c��<�:<�^;��B滘��<�f=�"��҄{�o=����D;�F<<��<�<Ⱦ(=\���2#�Ou0��Z�C�_;��c�;]0=�8�<<��9 -݀���;�u���[�^)H<�������:.=$�M<���&\�;�R�kg<���¼��B<^A�;��b<�BS< �.��Y�0��� ͼs�k<�hm��5 �I⬼���<>J6:O��;*26������-�p�����;ۀs�E@�M�Ҽ��8=�Hۼ �<˅��ݺ:�@V<��P�m.D=���;k�gZ)= 3�<�ES=�?�<왂�We����=38>�{n�<��+��>�Q�<���3U]�9)��T5�=�=,��! ��c�p��+m=T������=��C^��t�P"�^�<�g�������&�y�y<�Ż@r�:���<�:�X������<�T��˅<��Ժ�LE��p%����<#C��bu�;V�p{�;�R��JB=u�e=����U䊼�3���;Y����*�<3璻bX4;URU;��[�S�N<މ�cA�(M�$,�<��������B˼rߍ��B)=����H�>��X�����<��;��&��I�<(�;��׼���<��f�ꚼT�<?0�JB��><ڑ.=���yn��=Խ��p��o�+�P3A=L��� <:�-<�����H*<�p�<ϻ<�n��$<�"��{QB;��;G� �mKc��32��B)<H=��<�Z���n0�P3A�V͝���6;�>a����<�E��=7t�;�����<���<�<{=e�"=��<��;�H��~��<�)='�F� �̋Ϻr09;*4Լ�&�;<<�����ۀs;3r|�!���;p4���"<�g�<�<Ѫ�X��;�0}<�q�<�>�<)��s��N~:�-��;�A8<�ɂ;r09����<����{=�@ּ�����;�;ټ�=,<��#�_(弦<����&���%,�#Z<ް�;�]�<�w���F�u`;��μ���22���ą<7Wһ�N���<��<��=|����^V���kY<�ܶ�l�<ޓ��"�=�B��Na�;�^�xQ��� ��jX<���;�Ϸ�Z��; � =��,-�;�G��K��o�<���<��<*�+��h��,�R=jL��1�c�< )K��5Z=�0����;U�B�����er�.\� �<{���G�I���4��N�;{�==�'�� w;����7�p=O�R<�E�jL=�ў=�SR��� ����<���<�<]6���/�<�&޼�Υ�JZ�:–����M\���<��}<���<5��'��<�{l<�.�;�M�;e����S=�y�;����~��$v��yH���<�(�=j^I���� -��1��p�p���������=�3=�!���&'�� �����!�<���=D��e�)�Ea�;�{�;��;�`|�<V���Z9E9"=��'�޻e����o2<؊���Ƽ��<��3=Ў�;�U��E=�lp;]^��3��y���O<ֆ�<�5#<�j��=<:i<��}=ѝi=�S���) =��;-��b<�m�;[���Z��:�#<&����'���� �<���;G�<�ɼ�E1;��<������H�&�E=cr�4�<��(7����:�A�;�����4�;��\�> -�<�4�3�D�2��;�S=�Z��s�λZ@=�D%�\�O<`a -~<�p��nۃ<ԟ<䡀���8:*���{+�=�M�Xŏ���=X==�t<J�<�c)� r=�p�@����� <�6 -�-F��YG<�F<�N�=���<��<���<,�ü��<��<�����~�?�i<�κV<����vQ�<�>T<�n;<֘<���=�i������<-�C<& ����� =� Ἄ�4= �ȼ���o:n�9��@N�����A���5y�i����� ���V:[�m�� N�<�n �؟��%�<�5y�)�=�!����}��=1���� -��p���x��; -<8B� -� ��艽�c)=��0l��p=ep�m��<�m�<�=���=C�=�&[=�m�;�vս��μ��˼<𘼴w�<�G��B���n������ ����<�����g���_�ἷV�.";�O<�v�:N�><�����Ȼ�����4<��ȕ<ή<����VM�/6l<�m�;���<8�<��5�$QE�����٦�<֘����E���D�h<���<�ʼ���<�Ҋ��''<�����=ٓ(��M�<�&�Rb��&���� �q�mBb�n:���Q�f<�Ͱ���;ep�:Ԟ:xJ�� -T:��μ��#�IΖ<(�:�>�;�����<�ͻH�<�M�<3�B;�'�;(�ļm�9=���<!�;�&<2�k=H���Ѥ�8�=�r<�˩<�G/;̵*��� �T�=� I9+D��p9d);<>�i;ơ���;�� ��� ��;�&��Ͱ<� �<�0=��X<�b�=,`���� �a�;<ح(���;iY:=CH��;bw;=�>�;����vGY�����-���JW�������<=�i<�2޻�F�!�żE��:ОҼy0�<�P -�i���ٻ��ټD����м�M��,�C��׼�<J���0�#����<�m%�%���<$�m�p;9<��%<&�D���<�l�<����Z*�;��ۻ#̜<��4�� �,�l<�a�;ժ=,��A=.,��k :;lR�Cҗ��Yu�f�:��W�7>��<F�Vڼ�$�<�� 'A=K���������ep�M2������&[=���U�<��c]�:C�軿<�n�H&h<��]=�; ��<7EB������=Nr<&d����~<� ��rN�;p�a<��y������^�:4(�<�U������&μ�O$�w8��[��Q5>;�BU=���<��K�����:b�<0Ě;�(<�1�;�e�:�\ �j�'=����+�<�� =קF�������d��Oi<�!(=ϼ��l���q=��KO�[K��H�¼��Q�;�=�!Q��n�<=>�Bb<��/��v=� =�|;�R��Ã=V!컥�l=���<���J�=ڻ<�⡻>HJ<���;��;=E7��x��� �M���E-<C=��8�S뻎@�-�̻a�$���𼸓�<0�ʻ��� 2��u84���1�d�����;��;�� =�<�dY��#���4ۼ��<�v���Ed<��Y�=>༌B<4ͼ�� -;�q`�ٽD<�f���=���<��֙����$���<�Ҧ<%^���Z<�=�c�e� ����%lݻQ�o<$W��pC�c�<�[9=�ܐ=�o =�=���<�o����>=:&8��� <<)�;8��՝ܼ�#)�Ĭ<�ꊽn�9��{J=\=��U=��=�F��}z.���@� ��S���@^H�Aj\`�+�$� 2#�� ��8�;9/=������`<��f<��i<`w��s)U;�=:_y���

=�2�:8�;=:��+�/��[�;P击�G�;�o�F��[M�ϼ�Tü�� <�_��݃�dt<�L�<��>F =�i� ���>��l�+��<�؎��*�9%e��K�ԼJ�j<�?���d�<~����˻�#=�T��2=���� ��Cm'�W" <��������ռ� � 7=������:r"�c�׼���<׮弑1>�0�+������G��E������s�<�(���,�Ֆ�<%E����;P出h��<�o �u3�<���~�»�� <��Լ��;�ڼ�]� -xȻ8 �<_r��<�|����<�1�-����0�H�a���˼��m< @�:!�:�߼b�û��~<�Zo=f�J��@;� ��ٿn��a!=��=���<�Oλ7����Z<�+��_k�<��; 9B=��O�<��<�m�;��V�6�;�4�;6�<��M=��Cm��� �� �<�.󼁣_=�V�;�4[���4=�^��J��<&h��'t=4�������?�az�q����I�7��|��1�Oi�;C=��S�ٸϺ��<�1>� }���V�j��F��<�<�%��D�="JK<�If�ٶ%�����<7�<�J9���;� �<������<��񔼹 �֛2���������=K��;mꥼ�ȼ�o���4�p�t0����8�R;����4��Y<_��M�<{b�<��F�X;6�=V¼[Mh�L�󻷅 �W+�<Տ�;e�6<,��<ʼ�J =-�M�����Ī<7Բ;M9�,����j��b��<�)��M9�-F�'���%��G�;��9w_x<�Q̽B�4=¶<�U�<-,=͜0=B�ݻX��;w� =�w�����<��<�7̼l!�<؊�<�b�<8,�<²�;י!�Wh=��S輌J =Ab���"���= \=b�<=����M�=��� �b̓�훽�C��;"g�;W������C��챻 x�- �<��T���W<7����hؼB�:�Z��"����u_����-��;�K�<�I���n'��D���������<ܻ�}<������<�*=w�/�!�<���C��<�r5��k ��71=י!�� -];S���o=��)���Q;"��<W���uļl����\�<���<ե;7t;�F���� �<�p<�=X�y="=����w7<�`TݻL��"��<�y|��;����bN��"����=�8ڻ�˻�"�'��=-]m�� C����l^��A�� �9��==��=M&(;�!i<�9M<,Q����f�WQ1�l$<�Of��6�;x�G�mjٻ�=J㻭�n��:v�Ww�<���:b����©��}�;���<�� ;�#�h��"���,=m�T�-�׼؎l<-YP���e=R�<]NE�����e7�螉=d�< �O��Ӽ�gH���e�Ĕ~<�E=���<9U*=c��;E�i����\f��[ѺH�E���)=��B<��J�.���Ue=��<��!� b�@t�'G=j�i�����������R=+�< ��;=�A=Œ;��l�:���:��H���2=�=���;{����ȼ��r<����(�J��.�<�F =��-:zt<�렼f�����<��q�3<3�λ��T�Baj��K��!(���p�G5<ֳ;n-<���F��hXb=�=�<18z<�Ё���U=G5=���is����Ҝ���T�;$@<{���$�;=��<�U��w����0�;ΖX='���螉;��"[��1ӻ�����.;z�<�Oڻ/�.=��{�Na������v��}Q=*4}�m� �̎��^3�<��C<�x�Q:������f;.K =4�g�1l�<˘��l�`<�����A�� (�Z-ϼ� :�<��-�8��;�`�<��f�@�����źG5����=�G�,��;E�໣[�X<��k<{���O�B�5r#�:�˼�U�Z�_���;� Q:�$��~} ۻ $���W����&�<݃|�� =��?;}���2�"n��}\<~��;op�������;����<2�$��.�l��< ��<�(; C��T|<끐~c<.�=�d<*Ɏ�' !=��`�*<��$��(�:�� �0a���4���d����;&Q�;�"��B<�r*<� �<ǵ�@�<�x��88��� =��e��_�����!��<��*�ȫ�����R�<"�^:÷;_) �����=��;S�ڻ����"�;.n�<?���żֳ=$����cK<��82<,�Ѽd�<�7�;j3&�����d�����\i�@�=���^3�;nؽ<끐;V���S;���%���R9=3�_��Ҥ���D�x��;� `��2a�r�;U'/��&!�P<� �<�Q4=X�<�=�<s��<�U�� n�X%��1� ���"< $=�=�;' !=�þ� b���۬<�݆��)�<��2<�9�<(,:�˘{�����<`����$μG]$���U<Ӓ<��<�f�;ǒ�:c/�<��R��������< ��;�d���:"�c=Ϣ�<����B5�<��;���<�Q��F$�� ^n�O�T���������R =݊�<�}�<(= M�/�H<�$��ѣ;b�|�ՙr;�::�Đ<>�?��8=�q�y�����m�����1��N<�(8��ߠ;��)=��6=%��=? ;��|��:�<����0<�R ;^��;�1�]�<�$=g�\��ǂR�}F�~4Һu<����6�<*/����2����0�\�-��@<�˰<c�<���8�;1X�ta�<�7��Ի����!��UU�m�=�<*zh9[�'��Uջ�0�;�i�<�����[=F7�<��<�'N7t2=;�w��V�;:6=��x? �#�;��=�u}��$ -=*�q�B�=6���ʍɼ���<��j< ����D�<��:fA"���M��h�MM��<�BO�*4=�R =�c�<��D�+��E=�I�;�u}<���<��<�����#���I,!�h/�����<�� �"7��gT(<��U��k(<�ei<� ����.1��l��k�]��<���<9�e�0}�;�x�:�V�R=� ��3Y<���9��&=�0B=:�q��@�!�;�};�%���8 ��;3Y�?e��!�? ��@{;M�<;��+;'�<]��<�=�PL���<��;���=H%��������[<ʍI��<.�;� -'<Ҷ�;�]��o�;� ���:T��4��r�<�2���q�<��b<��V��|��-V�<}�<`Q�<�CH�2g�m�9iU�*�=��<�3=���<�[W<��ۺ��<�<=Q0�d�<7���k��gg�:ž<���:�O�;��ļ}�=�o{< S<�b=�7��)��W��<���d-���h������s��JZ6=/���U$�r�o�'*"=-�= ��N���,ؑ�U��=U��a�K< U�<%d�����y=�s= ��ӝ<��e=v)����e��<�.K<�.\�2 �<�ܭ�3�;�{F<𪼅ΐ���,=�$t�.˼dmѺ�Ğ;�;dG�(L���q;��㼑^z/��(���U=���ę��Ĕ��]��m��3��Ά��;q �^ӎ<ߧ�l���U<.�L�4��m�;8_*��r�;��f�/d<إ:0�P;N%�� �;�A�;��9=�E��K��� �n����< �<��1��Or<���<�N2�_f��Fλ�4�=۹\��!{<��\<�;�9>�<�F��D+<ƿ��o�<���:��}��ƻ��; -�+�<<��B:!<۟����5�+��7�N���p<0e�;W�=��0����y9<�-.���-;d�<�)�H�m<�]�= <����<{��;�b#< �Ƽ�����A�:�軶P�W�<�Q�<�� <�S�<�-k= �F��£<�f��p����P= z]<��=�$J=Hl -=��g��H�<�i=�Z_���<�<�'��8;y9�aWp=�џ;�D�=#5�9��=���;�ֱ�.�J�k���d�����rm�d��<�<=�X;�B=,e=D�e=�$J< �9�3=��;C�;#5�<�N�:�h�;\�ûeWӻ� � �l�G��<� \��82�t��<� 3�h`.�C��<��<%�`;>�Jhͼ�F��!�=�`!<�=� �=�O -�<�<�-�<3�r�3C�<%��Ϥ�=��ݼ�^�;D���X�����<�1V=F�h=��=��$�!�y=h⨼�5˻%^<"�����{�Wgg<(��<�"h=�~�<�N$=>�%=Za����D=�F�;�H.=�YҼ����X���(=/����n�<��3;\�û��<��"=w�7<�'=��+�@^�|��<*�?<���8]T<�YR�� ?����VU5�������^;�6���»�2����=x4�;oA7��Kʻ��"=7���3��]<'VP:�T�<_�-��I=J�ʼ� ܼ��,��(H�?0 ����;K+E<��\<�ji����;�Jd=��f�{o����A�O;�x~��������<���(�ͺ�u=�&������w�7�h`��Iؕ���M�Yk�<6��'VP�~w���<������x<�r+��#��5U�<(H�c����y=��?���}����<(�<�w.���t<�_����<[�N���p<� 2��u:�O�:�=��7�����<�fj�;é�m�G;np=��S��<�Rμ��p<��=�&�=����@<�������<:$A���L/�:{���=����� ���*�?=��;�,���ˎ�>�E\n;�)l�J���2��~�C�|�=�ϸ<��9<��� & =�f�;�P=�Ż���JZ=��=}f;��H��j����;5��<㥓��)�:]w�;[���԰A<�;�8�����q;�h@=0n���}�;>�T_��%�`<�0�zk�;�P�(�M;7�<��"�t���`��s ��;��< &��(ʍ<2�z��;��1;����,<S��3���+�(�ʼ������<˼}f��2�G��<�ji�m�ǻj'�9 L�8�N;;e���|������)����d�::$A;��;7<]�@;p�1�r�������;tϐ<�; ��U]��"h����;;e>�GԠ��B���N$��=g -4=I� ��I<]%�O��� ���%�`�="��~ť3�YhK;�3�=���;8�=��<]o:�2Y���C<]���?�>=�K7=7��<�)�;nj��T�t̐�ƾ=�"��릺nZ�����;�U�������<���m{���(=J��| �=1><�>�<�V6<>��*ܼ��?����:�ت��t��ci]� -m�Ѷq<�(=,˩j�z%�<�I=����=l���4��<�^^=�@=��q<�G�җ0�Ӈ6=YY�<��Ǽ�'&�җ0��d<[8�9p��������\<����@�=��~�[8]�4 �;�n-� ���;�)��ޮ� -.g<��3�A�л�+���꼎7��V����>j<�=��t����L=�Dw��3��9�P��y,j=�hԼe9o��t�:s܊���<�7T��������F�;;Th��O��MR�0d�7��9�t���F�R'Q<��1=.�8�Ȗ�G�<��<<��<�7T�t�� �9�t�]<���9V�0;ƾ3�Ѷ�C���<<5'=�<�T�3!��nX=)��R -<۸�;O_<<�]�<�`#<��B;�H<O;��(=p#=�;d�;~I�Y�<��F<�<$��;�^�;�����}<���a��<~͢�Ǧ�:D��w|��9�ּ6�9�!ͻ}���;� +��� �z3=0cP<�~R<)�<�x�����<�����:<]�<�I�7�D�!�U�|�;Sݻ(# =�B�;�.=�bG���:�r��_�9��Nd<�u:!ڑ;h�;�8�';����;T�;-��;M�n�#��M�'���R��j���% ���G;g���g��l��o�<��߼�I��#��Dv�<�#�<=������ƶ�(# =0l��xl4=9���xd7<������;���;�=�d�;�梄<�hԼ 7���A��?��<~I=�(l<��4�v�"���伞��C�=s�׼T�h<񓜼g{<1T =�uw;C��< -'��̙�'BʺoJ{� �<~I�� �<q�����;��������:;�nػ���;M�X�M��<1S�<� -=C�<�<�Y��Du��޼3I�;?�q<���<���<�[��Y�:���B�=�X�ᩏ=�7�^�:t��;��O����<����wL�3�<�G����:ׇi=���;�"��n� �^=N�;(�������<ᩏ� ����민o�ȼ�騻� ��#>H�H��:"���i��.�z�u]̼�$���ڼ U��!�(7=�.��<l=Ǵ�<񤋼�v;�q����`=��<_Q��<<߅��\�<�|�8����������Z�y=�i6=Ƽ��#M=3y�.�z<%���Ꞽ�|P��4���+=ܨY�8� ���=�D8=�X=��μ���;�8)�te <���<�.!<��K�<�� = � =TA�^� <3,�� <(' ��#�<"�=d�<Q⻫/W<^q�9�w��F��>S);I-��is�����t�:?�{;�"���<����i��C�Y`I�3�׻�x= "\�C\�<��&=���Zpf��:0�D|u��X�;�^]���/<֏*���B�I�e��h��J��<��9=�=�Y�:<^q=o��=9��Y�=��;���_�V��üƔ.�� ���iÙ<���;���<�E�<��<�k�;ᑱ���<tٻOn�<(w��4��<�{���P��}�8� <3)'�����"�=��<-��i�<�0 <��Y��w;.@�;��9;��=Q�<�a<�7�<�)ݻj ϼCL�N��u5Ѽ�_�3y�;��ԼYȝ<�����Z��1^����< �0���y^���)B��tO�Ƅ<�!A<�'�-�:>�;.T��U ;d<�3��dj<�.<�G5�<�}<2i�tս:�� =Iݾ���;^���u��;���9)��;z)<���>��<��׼u�ڻ�W�� �����S=_1ü�� ��c���^<�߼�W�;�H�<��#�i<u=�,�:�dr;��`;i<(�$�iK(�dZ<�yS<"Η��n�<��C���5�)����~�2i�< ��<�Ī<�/�:��<3)'<�t�;��ʻ��K���<>۷<��>�t�;N�=�tټ ��ц���^x<(���cƼ>�<�TO�<�� ���=��/�<�����< �ͼ��<��;>+.�=tM��-p �˵�;�e(9_��Cď<��м2i����N<�� <��<3�< "�<�3��+�iK�;̕��8�="n�y6<�$����D<�2�����HE��)�m��Z���2�=�������˚��<�;�ͼ����:#fC<���)<��<�8)�#��Ɣ.ȼzF$�uEn�3ٰ����C�<�!=>�A= �H��D88Si�^9�9��~=&�=�:��[�� =��g=���ɗ<����;s(�f�=@�'�<��s`���3�<�'���;�06�n�\���W��O��C�����y��<�yL�M~= ���<4�<��V=����#��qԪ�$� <7� ����Pf<-n���u~�b�9A�>=�F:w����<�K|= =�=�E��K�=��W�<�B=�K��{��-�)�xi><>�p�i��<�q ;_%����'7����o㰼Ux��f'���=d��?L6���¼�=̻:��q���7Y�;e.�<�A�<�t�<*��<� �D�;��߼�Ü��丼 �\���\�.8޻���<���u���ѻ�$�<�r�<�޽9�5���=)3;�w�J/���� -���;3A�<�K�;�����@��B�!�8��<e�<;jB=V�;�7�����j��a���(=� �=7Y��3 =��ܼ �<q漷�B=�"=�� <$M_=�*=>�;�<�_�:xM��ꎼ@D��iڥ�K� �{�캣�����;����z���=Q)}�����r=�#<��\D=k��:���Hڀ<�1�ٺ�3k=*Vj<�-�<4%;�~=Wa�<��=���<��,��?἗����s,�52c��K�2I&=� �=�q =_�o=��e����7Yz<�S����l=a�i�_�o<᱆�5���Z�<̅���BqS��/1���˼/.��o޼����7=�o�� -�����/2=zZ�<�����ļ�J�<����ȣ��n!���M><�P�����\r$�Q)��u��<��'��2�^=��d�_�һ�n<���;B����3�P�~<Z���C<3���.g2;-@�<��):����!�0=Jϻf”<ۯ�:l���k%<�I�$M߻`�;3A�9�� ���=�*�� �\���<8R1��'u�s*��5�=���(e�;����������;}�<�Nj<� -�<��;M�7����:"\�$�|<��=t�: v����<��=,�:��<��<�d���;�/��]4�8��==g�+=�#���n�<|�#<�qż`T=�Ѽ�6�V���� �m<��Լ�V��&tv<\�<�Y4;�rn�m����*`<�B�s�$���O��� ���hN=����I�%�$�u���;I� �m���N<5����2<���<�M����`� � -����2R�����e=�C -�1�����`T���0[�/��;� -=���<���<�Z�<�d=���+꯻kf.��ۭ�p�s�".�;j�;���<�:$=6�ż�5=L�T�q9�]4J�j?������S<>�-�^�;�6{<\���;jB�8<��=���;��<5��:�ѿ<�&�~�8R1�<����5-�_-��Jf�<|�#�3A�`寮��뻴 ��¹�ȣ�=�O��7Yz; �y<>��<~׺��rn���,<��A=0<�;�N���G��m���_<��嗼<���2�4<3��M~��/̣< g�<�3F��zP=��������=��q9�m�c�c��JS���ֻX+?=���<,�U�TI˼��;d��9z�U��!�<�N���O -#<�5<z��I�9�*�g�����3��KP����;l޼���E=�Xs;��=���d�n�@���=U�;D�S<��Sݹ<���<���:[z��;������8���6=ힼ�u�:E��=�b�<9<����^=�B�<��;0����;-��;z�h�g�/=T����h<�D<;��<��@=�[��o�Ǽp/�7�s���<�$+;*�ȼ��<��F;*�=��<>����+KN�7�+=���ǻH��=}�*�ڽ��������P�x�+0�<�t4<�'y<������5<���<��J�>����HǼ�=�GżK��w7=d�l��μUE>�̮F=-��<�љ��$񼗎�;��=� /=Q'2�W��<���:_Q_�A��<�+��\L �28=�GD�Ŧ�<�f�<���0�[=�Nغ�l�=�m��ى'<�W*��L =�x>=��4�}�;�(����<ֆ�<���r�P�E�U��c�=P�x<�� � -�x�5#=���b!h<�R=?�B�r�=�F:Pٮ<�=�];=J �i�:*����޻�\~;�T";�9��2l��%��;x�����< B�����;��<�(�\����n#�s�<�Ȁ�1�_��O�;�5�<�<���i;���< )};�O�;{o%<��l��]����<������i���ʼ�/���#��:�&�><\MT���9k�:=!&u���S���+��M=�镼��ļ��ܼ�K;�����q+,:Č/=ي�9x��<��Ӽ]��9w<��<���<��=�� -<�����<�#�p0�*<Nֻ�8���㻪��Zʅ�Z����@<�{F��d���C=H���;����'�<�o&;�Q��[�<���=z!<��X��e��<&=�S���#�� \6<��d<]�= �8 .=_j�ϗ��>*;�"=+J�+J�;���;o�G��X�:���<]�X� ڰ��;���b <�zD�Ӷ���Ի���X���6��T�����?Y;4�z�4 E9L��<��B�� =�����̻׀Z<)?S=�a�<�ن;��Ҽ$�-���9�+F�;�_<�-�(�����<�'� -����J?<+K ��;�H����+����<�LͻCQܻ�� �%G�;�j=��,���3M;���<�]����<�;<�!^��<��<ٌ;�~Y=�9�J#=enD�jw��'�;_o���!��jO�Y��;+F0=Qs�:*;�}��q���U�P��rS���;�ؼ�� = ���ZG�&�c<1O=��w�[/ =�ኽ��;�p�<�b������J�:=��@�h���f����t<�f��~�<�𫻘Tļ�z�;xC�<�l=�=��<@O�;:�;,�¼��(D�;P"+<�߻���/��=���<+�w<}GӶ���z�"��;�P��m6�:3��1O��Ģ������XƼ^1��7IX:�0�;�5<�������{q��V=r9��ϼ���<� �;c��;X꛼���<��D� b��Za�<7�;�}r��޼���d02�����kmj�5ҏ�M *;�Q�������\�R1k�l� ��#>�=a.&�F 8��3=�ܼ��g�J�S����<� y=Y&�:c�=)��6�]��?;� =ӵ�;d�Լ ��;[�-=�i����:�8=���<����0*:g����V�`ү<�n��;�ƛ�0��<�b�s؏��D��/��<�n����:B��O6=#(ۼ�ͻy�!<`�;[��<5^�`�/�4�%��'<#� ���=O“�+��;%Fz<`C��+ =�����<�MǼ��;�x��V�= ��;6.;�Ɔ��e2<�O� ���-�� ��<>�{;��[��ļ�sk��v;{FP����<3M�������� ��(��;W��<&��;o]��&�Ǽ%Q����<:B�m><�4=��R�C��;1/һ�8�=��=�c�W�/;$*,<�7�;�� �/�}2<ꇡ=�/�Pbe;��3�f����<�t����[�� z�%=���]�Ǽ�rj����9J�.���@;���;�9 ���l���<���;2���IP���?�Q��m��6=�h� �E���b�,�=�d�<���<<�{=� ����ü���-�>ڭ;�X�;!_��S-b�.�N����~S���мݚ��J6=�9<����_��](=}2<�@�#=|<+<1 <��<�����\�<�F��Vޡ���;^?����h����;�qB��ݮ<���<��=��rs�;ΙA;��!=��Y9�@����< o = -�gv���r�<.70�hL�a�p=�T9�I ^�[t��:� :*MD��J�<�܆<v��3��#T%<_���.7��M��lPE=�<��&�vm���qw=}��<� ���<�j�<�~<)�b<Y �z <�v�<�K�<���< _d���������J=p� �|م�ܪ��ռ��Z�,A�z�<�8=��l<=�j=?�;=��� u�<ևV<9 -<��#=s.=�p<��2<�I���W�|�B�ܐ�;�Ǽ|�=�s�� ��=�Ml=��<%cX��R��m�q<'�:�R���o���+���㼽J��-<����<�#�;�zҼr|<3��;2�:� �ٻ'�Ǽ���M����v]I��B�g-�<�� ;D��x8<"�[� Μ��4�h��/V���: @u;�,�<�<�<�cK<��.�����h�#�ݯ =��f�-��< -��;_를�W����;�Å<���j�<��ݼT�o��d�>M����7=�=C�E9e�ܼ褼��`<��ݼ���r5=��=�p�h�:=-����&���0��3�漈�C��0c�Z�<�\�;���<\:f��F��<τR=���;O���= �<;Dü۷�<%X�<8i*=�L����p�X,輥3<)��;T�������92�r�;^�<���;O���#=G���D =�<�����.;a1<�`�j�B<�e�=z�(�����e,<�_n��=ނ=o(� K���[���мJ ���L�;�=�[;<5�� @�<ڹ�̴�����<�q�=�p����}��F�1m��ys�= ��B�l=D���@�#B=Eݺ�'U��k���%<:�&<1������%b��o ��� -=l�<��i��� �rL=� Z=9.[=Y? ��hG<,Q� �ۼ��<�B3���5���<��<���K��T����� ��7�;�-<�S%=���<#�_;^c,�CK,�K�5�9t����W=1:����P<O<�fԼ�ꆽ�\�<�� ��&���u�O`μ)�=�p]���a;)�=\�X�?�;{�=� �%����)H<+ =l[=j�B<���� �<�A���_�<g�<}�=���<�{<8a�;~l-����;x�Լ -"��}�����g<�볼��=��p���8�-�C<Θ��<������=�]����9^0�<�(�r�?�V���^>�@컼Wg7<�)� ǯ��G<�x�;b|��%�G��/<�� -�˩9;��ͼ����=�e��V;�p��8=�㝼@p;�&���F>�N����W0=�]��>R�;~.�'����u;86���� ��/���A5D�]烼U�����9��|���.���O<^c��Y? <>'�<����� -�?M��1��4 -:��U���m=�sӳ(<�E��U�w<��w�<��Y�~��;��!=lJ�%E�<�E�<�<R�;�O?�ݗ<�@=����=� �;ZƧ<U�<��<�/�0�<5S¼��<́ �5���Y�;/�b|�<"���B�l�K��rm=O-�<�W0�����+ ��~ -��s��������;'�/=c��;�T�<��ǐ����5;�H��U�w=@�;� -"���I<��;����k��(�N���߷;�h"�����S�S�� ��R�<<�����<�Ny={����9׼�s���].�#�%Ep�>R|�9t�s�|;�K��/bA�򹼈8G;Ioͼ�;�;���#B����=�����g���k=�<d�<�=��3��/k�� ��g<^����3�<��-=M] �I<����)��� ={�e����;9����W��Z�<-�0��-x<��N�;;Ț��p��w��O`N��}鼀1�<2��;��ļ�JI��稼�n�<��>��I��X�=�(@�ؖ�;�U�yĴ��<�'�mf��Z�<=����Z���=�;Z�<�p<|VE�/������;;����Kv��x�:�hǼw*�<�҆���;� ڻ=�K�� ��M����;�=�d���/k�&c=- =2�=��#�A{=�����.�"=��E<[��� �&=��廒U����a����o��R�<2p��= � ==�K��m���u;���� -��n<��<�2��;�v;���;H��=� �j<�;_��•��|��= l=��<�q����Ȼ1� �4^���b�����qH�<��:u��9'�����_��<�n�<��<��U���]�£h�]�<� �"=��<����󺳅;�;�`<�F���=��� �2�M��G��ņ��K(=��s��)=�-H�;q��zg;$r/��*��;�v=������n:�C�������i�З9X�x=K]&�go<�ی�B�<]�<��<_��<& =���;_4=z(�;iD� ������e����>�0�1;礬������;�\;*���P�2�Vْ8�� �t;5,�< �pl�7�U�<�b?� �9�]R=��<�i� ּ�غ<�� �B�1��]=iR���[)�������"=�;��Х��W��<]��qVI= ���<��G������@=�)=1�8=H���H�� �~�o��Շ;)��;��9�u����:����0�G�G׽��D�<�Z�<�~�-��:�֘<,h�<#��;�B�<9��@���c"�<)�`��P}��Ϊ�ҏ�<���ª~��Uq�l�ټ�����\�y>�<��b< �#����O�m�M�m��_�u�?��8c �x~r��6��F 㼢�<�_ ��� =jJx�X2=��A��o���=��t<�� �Qp ��`�<�b�[�<M�;P�=��<�a���<��ú� �� �;{�ļr=�<9z����v&�^�:X�L�MJ<ĝ��B��H�������y���P�|�K<�Z,=&N6� ���,𺔦�����:;q<��U�<��M*�:���ؔ�8�";���;���q�*2��5��tZ���ܕ=��]��<�b�<�;(� <���<��=14�<�gO=z��lV�<謅��L�<}�=�<�S<�a漞3 ���I����<ۊ=�༣5��f�L��zu;<��C=2�<�!���y��a$;>YI�4 ���Л����<�; -��~�Ts�]��<�Q=�[պF"׼\��w��TJ��:C�<*hp�R��<��'�� U<��߻�"�i/�J��<�7=�n���q;�_<�:#�&�������$߼|#(I�Ǚ)��{$=��<�<�A����M�1r6�КC=F"׼�!�� -c�SDZ��o*���3=��<�W�<����<����-X�r��dJ;���1r6(=�����W��=���<�{�<���;�j��/=����;p�;z7绁Y�wʲ;��}�<�� ��z��SDZ=kY=��I�˺���1���Y���Ǽg53<���t�ռP��<�w&:@�ź|��6Ώ�ٛ��;n ;؞<������<�Έ��D<'λ�_��j�=��<�A�* <�>�[����$��q^���A<=\-=?|2=�3#:++x;:���3�Ƽ~_Z<����=Ɉ=�$:7�Q����Gz���^<[������;��<~�6���<���<'-=�k=.��<��_<���%o��H���s���w�v�$��:ծ�{ӹu^��.=��� �=Ka=Q��%���0O����8�v�=q���V����������T��;@=�9��<���=��<0�-<����BӼ�h/<�>�����L�<=�<=@[$�q�'� �Z�?-�89 ��¡���W= -*$�U����k<���<��<�~=)�p=bsX<�r.=w���=E���4�<��%=k]�;�&�{I�������͖�� =�h޼���?|2�#�<�O<�����j����L��i�{�N�]^�6=顓<܊=�5<�iԼ����9���U=Mr3<�Te�?�:5w��>���KܻV�<.��;�]���e|<�^�;����+=:�5=O���'�����=)ԉ���P=\�i<Ӊ�ltι-Y8;i&ǹ(MM�E��;9!y�x�K�L(<���<"�,�9��<��sv���"j<��X��J�J\�nj ��Լ��4=�))<.p��kE;N�h<��O��&������P=�l�<\������.4K�8p=� -��p@� ʈ����;R�=����p��� �b��kYh�盐�������<���Ue�ׅY�'Ƈ=�)�<_(�T뤼6l�<�H6;{f=�;�;Ue�N˺v? ���c� ��l�ļ��z=����j�;��a/<�� =ɰ���W=���;@=n��_�g�躓I�<�׼!�=o)!�Pm�N˻f ��Qٻ�V@=)����W=�[�<=+(�Gh����8?<���<��6NK����;V���s�ü�Eֻ(@κ�,���=�u�N�<���c����<���[>G�E�m�$ �À�}�B�Xi��׬�?�����:ߤ{=].���_<�3�<�ȼ;���^-j�0婺�}d������rU�<�=a���<�3�<�X:;�?=d�"����;U��F��<�g=���������x=��\���=��=���<�I�;�V���q;���.���d��.3�<�=T��uռ,�*;�W�:<�<8��� -֋=anF�Ԗ6�s��;�� ;1�)=�)\�� Ի_e����0�X�ǻ�L�<��=�b6:;�˜<�@|9�o�<���>�������e�E�I��9m%h�^-j4K�S�;-��<ҍ�*�*�^�<2�L= � ����;��٣������O;[>�; ��s��k�<)}�<U�;�*��;F����g<�ϻq���=� -:`��p�;v�<��h�<"_m=��s�K/�< -�>;�n;a ��<�>����������4�;����=����F��=�/=���\��'=�ͳ��E���<��<ՠ����Z;�͝<�V�<�<��N<4��:U��:]�N�j=��_O��l1�~��������]����� ���a�9:��?���<޴����:<`+�� ��?�<pؼ�K���N��쮼���ȾD�A�T��d���I��z�ܦ� ���⻇;��;��2�3� J����<�c�;g�����:$i�A�Լ3��<�1b='��v�<<�5�;fG/���=�j-<-��<ݽ�<��|�&��=<|�J=j� ��9�����9�ѫ��>J=!�;<���?��1m=��;tN�����;���� -=q�G�T�%<]��;���;q�}:3  ���/<�{��K�;m�����ռ�<�{���:X-��kk`<�O��5�=�f<�:�Y�:��<����rG=";�;U�<Z�<�̼�[��΀9=-�&��)@=�2���X��<׊������8==��;��7�G��ͷ�;B�<>�#�Fz<���������B��-�B��� ��p���DM"�����)�A�<��:����E� B�;��7=8���pe� -��{�0�d^g<��޼�7���`@��i2=��΀�<�, �;Qo<�ǻI3�=��=�tQ=2�>=wr���M����F=7轼\Ѷ;^c��������x;�<���t%d��ބ����V)�,S��-=wr1<�!{<�<�e'�<�l(�� $��+ü��'�d5�C�"���;i=4=��|�3ľ�M���W��< �'=��<�X�<�=V)��$=�Jɻ�c ��Ť�ֺ�<�z����'�~ü��J<���R�;�K<=ay=�NO<'!A<��< d)��x�<)�r������45=��<6 ��M?�x;���Z�<9�ּ��{�zƗ����u�c=E"��#a��;��; ��m���;d�<%��;GC��˃<��U����G��:z=�ܵ6��0��0��爛�\�����0����:�Rռa��<�D�"�(�̰ �ZFл˜ =C�"=�9��DF �7�$=�H�;��<��a���<~���͆�#�6d�:wk�:I3��V�<�=���;Ȍ!<Ƽ!r[<�p���U�9#�(=�<��)��;�J,�\�<�E�ջ��H�o1�<3ľ�Ne9=TR8< r�wyʻ ��;Y1�<�>�;p�������<��|��M?�;hv�� �<��Z���>�#=.�?�\G�!&=<NJ<��I<�e<}f�<�����;wk�:5 ���6������i\=T ��R�8=��%=�[������ �{w<3 ����j��n<#����}����G�� �x=+7��ҝ<��;8�o��`��6]���Tؼ��I��5���,�Y -<�ǧ9���&�<��4��á��c�<��R�����;N<9s$=�̼BU�[Ä;�,S<爛����;����\<�C���!^�b��<�eV�/,��-F���;y1�NW=7�;��=�W$<��0< �<7-�<��<��߼��ڻj�x�c���|�w�c�� 0=ȅ=_���Ζ���:ͷ9=����z< d��<��'9��`��1"��Z��H�:�7-p�\�h<��ɼ�Ҝ<�� ����j���M?;��B���<�Za:�}&;��[<���J<���<�*�<����_���)��C���5^�R�E�EӼ��f=��+<�������� -�<��I=�� -=��;�U����c�;kR��P$ =�ט;�*Ż�`�����E$=���,��M� ��%�;��:-j�9��3;ov=�pI< P=����j�<�Pm<*����H��Ȃ<���DE�i�|���<�2��M�< �<9��<����J��e�<5j��|A� �b���%�]�Y<.�ۼ�ϭ;~���d��<�S+���u<{�"<�ƃ<D�<]����8�;q]E�� =�~pG�;�s�;B��S���X���Ѭ;���<�H���;���.%<�2��o �;w'�;�M�:1������<����� ���p�JuƼ�{R�eq��<�`3�P'�<�M=4?�zûYξ�3u��ر=���<� - ��M/��%(;�M���8=�8|�Ն�<��Ҽ0�vM�s�2<�e�P$ ��<�(6�9�`�Ж=��v���a��s׼�-��б<�0ễMO���;�+<��������@��< z��a�;e/"��~�<�"�;��;%O�<�Ļ��ݻ0�y<���癯�<7]<㑻A?�<�[�:}�(�4�<7Ӌ;X���@������2��t�=�P�:I�^���6<�: <�]�� ;2�<��Ż��뻄��;��]�O�H<#�;��K<_��Й�<}�����=���g (<�=vh~�2W �1��J�)�1��s���-��! Z���x��̿;*W<�����PM�l�;��<.,4�aB�<�5�.�̻���~����s��5^<ņ�<� =k:ۼj�;��l;��QZ'��Xh<}���S�T=ݡ�<D�����:R<�~��<�P���B����<��r<������=��<�к�R���A��h<���<��<���M�<����ܻ ���w��<�{ټ���=�H�c��;�؆��=ܻ�/�:`x=�"=�񼤉$��q����<ѷM�����9��<����@����ca��f �]�f<Ř�<ߦ&�V�-�LNɼ���~=��~�`z�`nL=���<)60<}U�;�\= ��<6���wǼ��޼�N�")]:=��<�Eg<�(��(�,�<=ć����<�F����=�n -��_<,'��)y7=�t�;`V����<6t-��J�g� ��--=M���;�)v<��=�W#�61&<� �Z��V�}��� =�����=P�����l\��YM<�6j��+��}�<�A<<���eѼpș����]���yP�s �����<3�Z��=�͂<�vp��Ǽ�蜽p��;`x�C{@<��<������� ��3q:m�ɼߦ&=����P=��X��=@r�<�y= �<ҟ�;�B��a�<]�:;z<`��?��<�^��օ�0O ��t�=`Ѓ�LN�<���:�J�W@��`�����;j`���B����=�?=��=]e�<�Y�p/����\u������6�;��r�9.Ƽ�f��I��<)����<�?���;�c<�̊<}���}��;0ɑ��ꥼ�썽����&�����<<�6�؁��p�i;<>�<�M� ��c�#���a=����%";3�;���<����������4=�魼�;��=F�����ʼ~�==�=���<��<�d��*��%&};���<������`V���e�M��:&|�:f�};��;9�����J=q��=���U�]���w��<&��:�� =�r^<,�e;L�W���x�MB����s��4�6��<]}�;Q�;w<ҟ��5U}:c+=�b=�r޼S0O=���<�r�@�':,���

=�lż!R]=ԗ�<=%���-�`��;LC�h *;c���l��<�ޚs&���<f�=��B;�5S�}�����:��/�fQ���ɻi�����+���<뙊;�f\: 9<9�㼥L);#!�;��$<�����<�P����;F��9e����:!��yႼF.���o;TM��Yϻ��4��M���ɂ��fû��~9I0ѻ�(�<�ͼ0�J�����ߩ��p�;!<�ؘ�����I���/��K�`<���<�w�;�h<�̃� ؇�����) �ߩ=�DP<s��=/D���w���9��;`=&#D<7g<��<w���e=M�p;�Y�6�<� -�;�W߼9���DP���n����$�< 7<�&V<\��LT���� ��0ő���»P�G���˻�-:�|�;d��s&=�(����=�Ȋ;5t=:Q9f}�:�X%����<���; -ry�r���LT�<�ޚ;�m����$����<��<\�p�����j��<�y<訠<���;zQ�<�5����<�8<��P��<:���M�����;�Yh<�;#�2r�<��h9�{[=�X �e:��'5�y/�<����5AW��맻.�����V;Z.ἄ�>�R�W��,&:Z?N�Oq�<��{��y=m��fu�F.z;��<�yk��Ȋ���;�ӻ�;�^'���<J��|�;�뎼IA�<���<�<<��(���=)6�W_Ѽ7���<���<�i��Yϼ��U:��=9�v���=��<�Hb<� -�<�ͼkN˹���>b���S溑;�<��Ҽ�];�<����=M��;�(߼N��u�d� -��<����H�8X��&V �(A��C;dЮ:��1����<f2�d�T=�7�;�l,;�����o�C3 =��s��<�M=� -=M�ݺ cc�P�m<��<����;Ŋ�<��"<%�<v';�<�@�P�Z<��˼���I0ѼK��a�j��6��=�i<��{��7u��U=<�|=�͔<3�=e@-<�5S� -h ���o<��:�<���@B6���\�n[��F<� ���<.�'�H�< H�;d�.<��<Κ��5A׻�� <�x(<�l<��E=\�p��9�<�;�������ś���Q���h<�V<���FPT<�=��ꖼ?��;����~�&�d�z�����W=��@S�<�WF=D�����=#!m���<���<��ջ�F�<]K<�z=p��<��=�^I=F' �N =z���j�< ��=P�O��(�Dz�;䊍;p��<���{w;&����mN�[N$��,I�H优lǼj^�;U%u�杕�<�(�a�����<��=��.�[N$<���<�(Ƽ���;�w�;;+�<*�K�Y�;��̼֘�6����=j'� -�I��Q �iI�'�fFB=]b��N�L�%;&9�<;w!�Dx���<�� -�2� � ��%�9{� ��^]��߸������ ��$+�9DZ==�=�/��*c��OQ=Fγ�ߝ��[H� ��Q[�==����IW=v�"pv��AN=I�],H����<�Y�P���܏������� =;�<�伉n@�����*���R�����Sյ��}K��Z�<~z<����<$��?d�;�n@�ڻ���Y�hf��_/�<�e_�z'T<�]V�������]=��;Z�"�s��<,05�����a/��OR=v��<��<�*�;�K�<%V���:�<ծ�����;Z?����2=L�%����`��=��h����<�:�<cy:��>���������n���9=�࿼ -��<���C<`��< �<�(��TF=?Ǽp�w=��<�h�<-P���Zp<@����BU��Q ��,=�U�<�-�<�1�z'ԼKɼji��˔�;`��<u�;���g)<����.�"i��v�i�=��ڻ��/�����N��F�3�ڻ�aO�e\ <�&�mƖ�g�}=5)�H��W��;�@v'�<9�,��C᫼�0<b=um9;���";<�<�=�OR<� �;*�<�#=مԼ}�;1 ��n@Ǽ8�T=�;S��>���Y=�*��@�������<'}��;p�^L=�{���xZ�;0��<����[��;�iL<�μ����<<�=���95���֔;����`���>�<�,=�$�<���;���=�;<+<�$���X�<�jS���+� -(��x�#����;�=��;"i���;H��;W�<���<&�<����c�u:3}��U2C���s�;&9�� ��9DZ;� {�� +�\�/��cQ<�ff�<}� ���n=P�o�<�1'=�52�y��eA[���/=�eԻ�DV<���= �=�(>���2��q���̄��ֿݼ��;HV �,�s<(�� �<{v<)�ؼ�Ɩ���t+=&;�y�<�|�(㾼d�<�'���� �;��>��"���q<�=2׍�ŗټG������<�w��Р¼�B<�{=���#�=�~,<�3�<;mj�y�;)���=�G=%I���ܼA����B{=E��<*� =��<��j�m�=��������z��O��*�lP�c�<{v�D�Rp;�z�C7=ʑ��T����<1g��?-�:�����0�:��=�-=�y�)��< -P�``�����CƼL�<�l���<����!�J���4�;ȶ�`} ��ӊ<�DV<�K�<�Ƽ�N׼��o� *��!��� �D��9��� m;�=лQj����Dּ�f���4��P:=�a����"1���;�u˼�4�*���V���z=.i<�F��3Y�:�������<������H�8M�{;Ż��Dּ�=���2=,�s�� #�AE=jޛ�=�98 C��ż��g=<*=�O"��4o<��f�`�ԕ)=����;u*�:�5��)�X�{v��f��ו�۔=Ӏ���n��7��Z� -�AW8�����(><�yּԒ��=Z��<�{�<Z�<$~��ﲻ��s��:�۔�<1g'�nUݼ�� ���.= �����k;�j�<�P:;��;(��!};���;m����O�Q�=b <Ż�`} ��-<>�*��� =s�;�W@�Ȍ����#=�˹;q�<�Ev95"�e��<���|S�<,��;k�5�/< t�<��<1��6:<1�ɼp5*=s�Ļ8 �<��4V�:Ea9<�� -�L(������ �x;�ꇼp5*���a<��㼗�*�;�M=�����=&;e�>*^*�;C�E���J=��V<��L��\��}<�D�;Ӏ��~�;kN<3Y��$+<����=d� ��:T_ =.:M�q����w�;a<�����c<�oռ���;�|<�� <��û������"=�V��$��lc��/�Y~$��L�<�:�;�(��k�i�o�ü8��>�ϋ(���6:]-�< <�#��=�<�=P����52;�rH�U�}<>�<����T���<���&;�����<7�(=X�q<��<�@�<! =�>��F���l��e�=���3Yh�^� <�������t�<�(�;#���|�:Ϯ�<%&K���;M����@;��X<3�4��g/�u���T���~,�]P2�v�+<>�;��༐�<�1'��請k�i����;�)�;��1�8j� t�<��:=G�Ƽ���j2��V�<@ -+;qu�0������@�e�<�G<��<�I4;�8<��p:G��< ժ���h��<ɡ�p=��;�Ⱦ<Ϯ<\s =sb���8z=�52���=w(=ռ���jVu����<��=������"E�<�� ;\.�=��2���»*& =)�k;#>������R��[�< 5����?��{ɼde= ;�:t�P<ۅ�<�9p=�I���#�`=B.)<��V��F=b�:�+�;���������q=_%ڼ��< �<����<�9�:��4=��D��Ʉ:��e;��s7=<�j�<��P�O�W=�B��Ks<�cN<�aw<�P���;=s6ݻ�8K�F�)=5]�<�*-;��y;@6��A/�;.� ��<��*,�<�)�����=U<�qU<����p� =�r̼c�Z�9���m=5��; ��˷ -=��;�:3����)�;�Z#�-=��<^��D�/��`�<��b�x&ѼVEr����<��<��;�鼘��;��;���{��<�)M<�o;f����BV<��0�)��<,=���y ���J=]�;�ͼ�)�<�λ>�(=��m����1��W�ؼ�����*<$=��ҥ>�%=�C�:(�>��[��P��<=���,��<�3*�� �<4 -�<�7Ի���.��<�85�bj��~N�V��Ka��u��|׺M��;���9$��(����TG2<�j<�3�<�մ���:�?�H�#�2 ���(���<��δ��T�<���;*Ә�TG2� �<��~��4;s�i��;0�<.<}E��2=~�<�k=B�b�`��b�:=�{�:"u5�s���B�b<�P��B�b<���:��R��!�м�)�;�ޚ�_%ڻg"<9��;�RK��ذ���n�0�L����<���<�8��B.)��u=��K�A۵<�׋:5]���aw���<�����=��M��} ���<��켰����S��;�������J��丁<uh��aɼٌL9T�>�t�C��e=�F<��<���f��Jh*<��<����Z�r<|p�< ��ea�<� _=�{I��;0<�u�<��P<_<�ȍ�x�ݼ�y��<]�&�F�)<�@Ѽ��4:?�;��d��lI �\.�<���N�����c������:���o�/:v�������<�/弔�n� >����ѻ�O}��">;�����8<>��< -='=�������N�� =0 =q婺� ���A�<�#;���:aq'����;5�`;�kT;֕2��s����:���:(3�;�[�����;^�;M��<�g=@6�< 6�=U�]�Y��������Z�<�Y�<1�&<��=>�(�<졼F�w'���s,;�=;>Vd����q��;sWf;�P�Ӵ��;� < -O�<������=q�!=H -��l -�^=�����]�63�[l<���J&=�)=�9=K,I��[��m�<�S�8��%��7�t=f˧���]� -<��\�������d==� �޹�<<$�u<�/:� -���<���S�X<�;f肼��5<���2��} <���a�<!a;�c%=`��; 2�< ����=��%=����;Z(m��S����������;������4���o<� :��+G�v�K�Z�==�n��H��Ӎ= B����<1������e~<�uC<� ���3���g��Mi�;�����<$�<8�����>��� -�-��ʦ<�,���Ѕ:�d<��:g1�<%q�:9��<��<��Y�� ����S��<��� -��$�&��CS -�`8;3ڕ�M��Ӵ<��7�<�)�:���;�D<�_�;r�<�-!����oѱ�`���� -O�UB�����S �Ͻ�<���&�������<���;X�(�p�,� -���<%��<�M�R<�R^�^u�� �<$��1�=��\=�6���#���+s��e~��Y?=H�9��<�{���=�g<ˡ �L��<�<�=��ԅ~�L,= Ԗ��� =�L�7�;� ػop����$=���R[�<,쑼�Ƥ<����q=�EM���:�-�<�R��M|=��W;�?�;N.=�:?��G9x�<��;�>g<���SIp��V�����S]s���(<�|�Jy�/?���]���+<�Kg�*߻��;� �<�Iu���x<,�=N�;�%��%��o��L�;� e�=n������;�k�P�E�M���a���[��M���p���wR;��A=лKg=��<̎��R�]�l�� - �� 5�/�7=�S<�0�;ҼL,=�Hk=k��;�y��O0���T=k�=�߼T��:�;<.�*��F';�P��Jȃ�+b�<���: -҂�����,�=�p � ]����Mߤ;P�ɼ�t�<� X�єO��<�պ���;4<z�S�r; ^�< ����.<��;R�a�� b��� 2����;O�8=nH�����<���:��>�k�=SI�9��� -μ�4��� -=K܆;��<�ܻ9�e�7:l -�;�l�;Ѽռ�;{u���ͺPѻ �<.Q+<���S�o�+N�<,c���>g�b_>�F*�<�Ԡ<�9�=� �eM :������0�&�/�V�e�[#����=���;���Ҽ��@�?t�<��<�ȼ5��8j����&�<��t��:�w:��f ������<_�;��{�"%�=n�<Ґ�;�޼����=�t�<���jϒ���<�%���s<$��:5�z�%��=%�}�<�p����G� �`�ײ��S�H;�W�h��;����Uj����K���o��X�g=��n=� -��g=CV�7=�H�<]Wn�0N�;P�^��]�z� -<"���X��qB�=����3�<9���; -=i/�;6���X[���<̱M�uJ=��ü��<���?��� �<7��D�<��<M�=�ث�I��g[����==4� -;��<6� =�w�;��=|`�<[웻Cܵ;醞��&��m����g�] ���%-=Lƿ;�|=��:�V'�“������d����<���9Ą޻|�'=�.<��z9�\<�MT����;��.l=#��?�<�����G=Z㲼_Z��3�=s��;�V)< I<���0�߻�J�<��#�k��<� =ĵQ��x;b/�$L <^ ����;z~�<;�?��C���U���Ѽ�<��:~6�;�ͅ�� ^�\���# -ӼV8���o<�/��q!(�%����<) �����;kء�^SN=��<�S���:��X�<^j=S��<�=!�a���WE̼�ے=��<��n;�,gH<�E6=������;�s� ��p&�~�<��s��!;R �<�[;�g�<ԝ�;loR=�J�;N�=�G�q\��"�= -�r<.����X\=�漏��f���xj.��)<�t�<��f�XL=��X<~6�<��<�����O���ҩ���B�;țu;S�,=�c�;�#Ż�����<*U<����[� ��3;F��:���t༅�6=�<ɢ+<.{�;A�һ��'��b�]�=Y���sp��n<�赹��<�,.:^Ќ���.���Ik���8<� 廳6k�H��<��:<�Db=Q��;:�#P�����o�6�;WEL<�l.�;���< i���a�h:;<�JڼȂ��#P�{PR<^��;~�<�7?�*<0�<��<7'��ѽf��e -=�S��RK9��=X��;�2�8��_Z�p�ɢ���1һ�a:�#•<��F<�X�<��;�S�<}�E�Ɓ�<$ ;MQ&��T :u�<���<�s�����e �g�W���p���� <�?�9�ns�*������;� �_Z�<�(<�$���m ���/<:HH���W�z�ڼޑ-=��<�����7<��<=m� �A������<���#����;6[�<�ǣ;P�;� i�N۝�3:Ƽ��:8�a�k�:��<��ͼ���"}{"title": "CARGO TIKIM VE MIZVADOT:Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building."}{"title": "MOKA:Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud."}{"title": "RIMON MIZVADOT VE TIKIM:Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion."}{"title": "GALGAL YAZIV:Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs."}{"title": "HAGALGAL:Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services."}{"title": "BUGABOO:Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya."}{"title": "DAMAGE TO WHEELCHAIRS:Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers."}{"title": "IMPORTANT TO KNOW:Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage."}{"title": "DELAY IN RECEIVING BAGGAGE:Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days."}{"title": "RISHON LE ZION:Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates."}{"title": "YEHUD:Yehud is a city where Moka, a pickup and delivery point, is located."}{"title": "REHOVOT:Rehovot is a city where ARTY Rimon provides pickup and delivery services."}{"title": "NES ZIONA:Nes Ziona is a city where Makor Haziud operates."}{"title": "SHOHAM:Shoham is a city where ARTY Rimon provides pickup and delivery services."}{"title": "RAMLE:Ramle is a city where ARTY Rimon provides pickup and delivery services."}{"title": "LOD:Lod is a city where ARTY Rimon provides pickup and delivery services."}{"title": "SHLOMO HA-MELEKH:"}{"title": "EL AL ISRAEL AIRLINES:EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability."}{"title": "FLIGHT TICKETS:Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage."}{"title": "BOARDING PASSES:Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage."}{"title": "BAGGAGE TAGS:Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage."}{"title": "LOST OR DAMAGED BAGGAGE REPORT:A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim."}{"title": "RECEIPTS:Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage."}{"title": "FRAGILE ITEMS:Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged."}{"title": "PERISHABLE ITEMS:Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged."}{"title": "VALUABLE ITEMS:Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged."}{"title": "INTERNATIONAL CONVENTIONS:International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims."}{"title": "CONTRACT OF CARRIAGE:The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability."}{"title": "MISSING ITEMS:Missing items refer to belongings that are not present in the baggage upon receipt, which may lead to a claim against the airline."}{"title": "CLAIM:A claim is a formal request made by a passenger to the airline for compensation due to lost, damaged, or delayed baggage."}{"title": "21 DAYS:21 days is the time frame within which passengers must contact the airline regarding delayed baggage outside their country of residence."}{"title": "7 DAYS:7 days is the time frame within which passengers must contact the airline regarding damaged or missing items from their baggage."}{"title": "AFTER 21 DAYS:After 21 days refers to the period after which passengers must contact the airline regarding lost baggage."}{"title": "DAMAGE:"}{"title": "CARRY-ON BAGGAGE:Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft."}{"title": "PERSONAL BAGS:Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized."}{"title": "SUN DOR:Sun Dor is an airline that operates flights with specific carry-on baggage policies."}{"title": "MATMID FREQUENT FLYER CLUB:The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft."}{"title": "TROLLEY:A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently."}{"title": "FLIGHT TICKET TERMS:Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies."}{"title": "BOOKING MANAGEMENT:Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies."}{"title": "OVERHEAD COMPARTMENTS:Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling."}{"title": "BAGGAGE CONVEYOR BELT:The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination."}{"title": "NORTH AMERICA:North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region."}{"title": "CHECKED LUGGAGE:"}{"title": "BAGS:Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines."}{"title": "16 KG:The entity \"16 KG\" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided."}{"title": "20 KG:The entity \"20 KG\" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg."}{"title": "MEDICATIONS:Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit."}{"title": "PASSPORTS:Passports are required documents for international travel and should be easily accessible during flights."}{"title": "VALUABLES:Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey."}{"title": "ELECTRONIC DEVICES:Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked."}{"title": "CHECKED BAGS:Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane's cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers."}{"title": "PLANE'S BELLY:The plane's belly refers to the cargo hold of the aircraft where checked bags are stored."}{"title": "NO CHARGE:No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft."}{"title": "RECOMMENDATION:A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel."}{"title": "MAXIMUM WEIGHT:The term \"Maximum Weight\" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding."}{"title": "MAXIMUM DIMENSIONS:Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding."}{"title": "BAG:A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel."}{"title": "PERSONAL BAG:A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items."}{"title": "CARRY-ON BAG:A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions."}{"title": "56 CM:The maximum length for a carry-on bag on El Al flights is 56 cm."}{"title": "45 CM:The maximum width for a carry-on bag on El Al flights is 45 cm."}{"title": "25 CM:The maximum depth for a carry-on bag on El Al flights is 25 cm."}{"title": "18X38X30 CM:The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth."}{"title": "115 CM:The total maximum dimension for a carry-on bag on El Al flights is 115 cm."}{"title": "DUTY-FREE ITEMS:Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance."}{"title": "OVERSIZED ITEMS:Oversized items, such as cellos, require prior coordination and may need an extra seat for transport."}{"title": "EMERGENCY EXIT ROW:The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments."}{"title": "SERVICE CENTER:El Al's service center is where passengers can coordinate the transport of unusual items."}{"title": "CHECKED BAG:A checked bag is a type of luggage that is stored in the aircraft's cargo hold during the flight."}{"title": "WEIGHT RESTRICTION:Weight restrictions are limits imposed on the weight of bags that passengers can carry on board or check in."}{"title": "FLIGHT DESTINATION:The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey."}{"title": "PRE-CHECKED CARRY-ON:A pre-checked carry-on is a bag that has been checked in online prior to arriving at the airport, allowing for expedited security checks."}{"title": "SECURITY CHECK:The security check is a procedure that passengers must go through to ensure safety before boarding the aircraft."}{"title": "EXTRA SEAT:An extra seat may be purchased for oversized items that cannot fit in the cabin or under the seat."}{"title": "UNDER-SEAT STORAGE:Under-seat storage refers to the space under the seat in front of a passenger where personal bags must be placed."}{"title": "CHECK-IN PROCESS:The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight."}{"title": "AIRPLANE STORAGE:Airplane storage refers to the designated areas on an aircraft where passengers can store their carry-on and personal bags."}{"title": "BAG DIMENSIONS:Bag dimensions refer to the measurements of a bag that must comply with airline policies for carry-on and checked luggage."}{"title": "BAG WEIGHT:Bag weight refers to the total weight of a bag, which must adhere to airline restrictions for carry-on and checked luggage."}{"title": "CARGO HOLD:The cargo hold is the area of the aircraft where checked bags are stored during the flight."}{"title": "FLIGHT CHECK-IN:Flight check-in is the policy that requires passengers to confirm their attendance and check their baggage before boarding."}{"title": "BAGGAGE ENFORCEMENT:Baggage enforcement refers to the policies and procedures that airline representatives follow to ensure compliance with baggage limits.)<|COMPLETE|>"}{"title": "PASSENGERS:Individuals traveling on flights who must check in at the counters regardless of luggage."}{"title": "SECURITY CHECK AREAS:"}{"title": "U.S:Country with specific guidelines regarding the carrying of liquids in handbags."}{"title": "100 ML:Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags."}{"title": "3.4 OZ:Equivalent measurement of 100 ml in ounces for liquids in carry-on bags."}{"title": "CLEAR RESEALABLE PLASTIC BAG:Type of bag required for packing liquids, aerosols, and gels in carry-on luggage."}{"title": "DOCTOR'S NOTE:Document required for carrying medications and special food products at the security checkpoint."}{"title": "DUTY FREE:Duty-free products cannot be purchased if they are prohibited aboard the aircraft, even for connecting flights."}{"title": "CONNECTING FLIGHT:Type of flight that may have additional restrictions regarding the carrying of liquids."}{"title": "PLASTIC BAG:Type of bag required for carrying liquids in carry-on luggage."}{"title": "PERMITTED AMOUNT:The maximum amount of liquids allowed in carry-on bags, which is subject to specific guidelines."}{"title": "OVERSIZED BAGGAGE:Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport."}{"title": "SUNDOR:Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees."}{"title": "LITE SERVICE:Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee."}{"title": "CLASSIC SERVICE:Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees."}{"title": "FLEX SERVICE:Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes."}{"title": "BAGGAGE ALLOWANCE:Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger."}{"title": "MANAGE YOUR BOOKING:\"Manage Your Booking\" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently."}{"title": "ADDITIONAL PIECES OF BAGGAGE:Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket."}{"title": "$90:The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport."}{"title": "23 KG:The entity \"23 KG\" refers to the maximum weight limit for checked baggage in premium class and for certain service types offered by EL AL. Specifically, 23 kg is the maximum weight allowed for each piece of checked baggage included in the ticket price for these services."}{"title": "THREE HOURS:Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure."}{"title": "EUROPE AND MIDDLE EAST:Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions."}{"title": "OVERSIZED AND OVERWEIGHT BAGGAGE:Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees."}{"title": "BAGGAGE POLICY:The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers."}{"title": "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION:The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience."}{"title": "PRE-ORDERING:Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types."}{"title": "BAGGAGE CHECK-IN PROCESS:The baggage check-in process involves the procedures passengers must follow to check their luggage before boarding a flight."}{"title": "STANDARD BAGGAGE:Standard baggage refers to luggage that complies with the airline's specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges."}{"title": "BAGGAGE CHECK-IN:Baggage check-in is the process by which passengers hand over their luggage to the airline for transport in the cargo hold."}{"title": "CARRY-ON ALLOWANCE:Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft."}{"title": "ADDITIONAL HANDLING FEE:An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center."}{"title": "EXCESS BAGGAGE:Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees."}{"title": "CODE-SHARE FLIGHTS:Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures."}{"title": "MANAGE MY BOOKING:Manage my booking is a service that allows passengers to modify their reservations, including adding baggage."}{"title": "FLIGHT SEGMENT:A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules."}{"title": "$5:An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center."}{"title": "50% DISCOUNT:Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight."}{"title": "TICKET TYPE:The ticket type determines the baggage allowance and rules applicable to each passenger's reservation."}{"title": "CHECKED BAGGAGE RULES:Checked baggage rules may vary when several airlines are involved in a flight route."}{"title": "FREE BAGGAGE ALLOWANCE:The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees."}{"title": "ADDITIONAL PIECES OF CHECKED BAGGAGE:There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class."}{"title": "INFANT'S CHECKED BAGGAGE:Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge."}{"title": "LITE TICKETS:Lite tickets are a type of ticket that does not include any baggage allowance."}{"title": "MAXIMUM SIZE:The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth."}{"title": "EXCESS BAGGAGE RATES:Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time."}{"title": "GOVERNMENT SERVICE TAX:A government service tax will be collected for air travel for flights originating in India."}{"title": "CODESHARE FLIGHTS:Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL."}{"title": "LINEAR DIMENSION:Linear dimension refers to the measurement of length, which is one of the components used to calculate the size of baggage."}{"title": "MEASUREMENT UNIT:Measurement units such as kilograms and pounds are used to quantify the weight of baggage."}{"title": "SIZE CATEGORY:Size category refers to the classification of baggage based on its dimensions, which affects the allowance and fees."}{"title": "WEIGHT CATEGORY:Weight category refers to the classification of baggage based on its weight, which influences the fees charged for excess baggage."}{"title": "WHEEL CONFIGURATION:Wheel configuration refers to the design and arrangement of wheels on baggage, which can affect handling and transport."}{"title": "SPECIAL ITEM:Special items refer to specific types of baggage that may have unique handling requirements, such as sports equipment or musical instruments."}{"title": "PROHIBITED ITEM:Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations."}{"title": "RESTRICTED ITEM:Restricted items are those that may be allowed under certain conditions or with special permissions, often requiring prior approval."}{"title": "REQUIRED DOCUMENT:Required documents are necessary paperwork that passengers must present for travel, such as identification or boarding passes."}{"title": "LABEL TYPE:Label type refers to the categorization of baggage labels that indicate handling instructions or ownership."}{"title": "TAG CATEGORY:Tag category refers to the classification of tags used for baggage identification and tracking."}{"title": "SERVICE LOCATION:Service location refers to the specific places where baggage services, such as check-in or pickup, are provided."}{"title": "TIME PERIOD:Time period refers to the duration during which specific baggage policies or fees are applicable."}{"title": "PASSENGER TYPE:Passenger type refers to the classification of travelers, such as adults, children, or infants, which can affect baggage allowances."}{"title": "MEMBERSHIP LEVEL:Membership level refers to the tier of loyalty programs that may offer different baggage allowances or benefits."}{"title": "GROUP CATEGORY:Group category refers to classifications of passengers traveling together, which may influence baggage policies and allowances.)<|COMPLETE|>"}{"title": "ADDITIONAL SERVICES:Refers to extra services that can be ordered by passengers, which may incur additional charges."}{"title": "CHANGE:Refers to the policy regarding changes made to additional services purchased by passengers."}{"title": "REFUND:Refers to the policy stating that no refund will be given for cancellation or change of additional services."}{"title": "FULL CHARGE:Refers to the fee structure indicating that passengers will be charged in full for ordering additional services."}{"title": "CANCELLATION:"}{"title": "SPARE BATTERIES:Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel."}{"title": "DRY CELL ALKALINE BATTERIES:Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage."}{"title": "LITHIUM-ION BATTERIES:Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits."}{"title": "PORTABLE CHARGERS:Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage."}{"title": "ITEMS CONTAINING MERCURY:Items containing mercury are classified as dangerous goods and are prohibited on aircraft."}{"title": "INFECTIOUS SUBSTANCES:Infectious substances, including live virus materials, are classified as dangerous goods and are prohibited on aircraft."}{"title": "MAGNETIC MATERIALS:Magnetic materials that can harm people or the environment are prohibited on aircraft."}{"title": "LITHIUM METAL BATTERIES:Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery."}{"title": "NON-SPILLABLE WET BATTERIES:Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users."}{"title": "MOTORIZED WHEELCHAIRS:Motorized wheelchairs have separate exceptions regarding the transport of batteries."}{"title": "CARRY-ON:Carry-on baggage allows for the transport of certain lithium batteries under specified conditions."}{"title": "EXEMPTION:"}{"title": "100 WATT-HOURS:100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft."}{"title": "160 WATT-HOURS:160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage."}{"title": "2 GRAMS:2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries."}{"title": "12 VOLTS:12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage."}{"title": "49 CFR:49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries."}{"title": "STRONG OUTER PACKAGING:Batteries must be in strong outer packaging to prevent damage and leakage during transport."}{"title": "NON-CONDUCTIVE CAPS:Non-conductive caps are required to protect the terminals of spare batteries during transport."}{"title": "FLAMMABLE MATERIAL:Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices."}{"title": "LITHIUM BATTERIES:"}{"title": "SPARE LITHIUM BATTERIES:Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin."}{"title": "WATT-HOURS:Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah)."}{"title": "BATTERY-POWERED DEVICES:Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts."}{"title": "IATA REGULATIONS:IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel."}{"title": "100 WH:Batteries with a capacity of less than 100 watt-hours may be taken aboard the aircraft when insulated or in their original packaging."}{"title": "15 ELECTRONIC DEVICES:Passengers are allowed to take up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 watt-hours aboard the aircraft."}{"title": "20 SPARE BATTERIES:Passengers may take up to 20 spare batteries with a capacity of less than 100 watt-hours aboard the aircraft."}{"title": "BATTERY CASE:A battery case is used to protect batteries from damage and short circuits during transport."}{"title": "ORIGINAL PACKAGING:Keeping batteries in their original packaging helps prevent short circuits and damage during transport."}{"title": "INSULATED:Batteries must be insulated to prevent short circuits when taken aboard the aircraft."}{"title": "ACCEPTABLE BATTERY TYPES:Only certain types of batteries are acceptable for transport in the aircraft hold, excluding lithium-based batteries."}{"title": "BATTERY TERMINALS:Battery terminals must be protected to prevent short circuits during transport."}{"title": "BATTERY-POWERED MOBILITY AIDS:Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel."}{"title": "FLIGHT-APPROVED BATTERIES:Flight-approved batteries are those that are allowed on the aircraft as per airline regulations."}{"title": "HAZARDOUS MATERIALS:Hazardous materials include items like dry ice that require special handling and declaration when traveling."}{"title": "DECLARATION FORM:A Declaration Form is required for traveling with hazardous materials on EL AL flights."}{"title": "DRY ICE:Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported."}{"title": "FLIGHT AID:Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids."}{"title": "EMAIL NOTIFICATION:An email notification to the airline is required to inform them about the intention to travel with a mobility aid."}{"title": "MOBILITY AID:"}��):�)q�)ӑ)ݒ)��)H�)��) �)ڛ)��)ž)/�)�)��)P�)�)��) �)��)�)��)<�)¬) �)�)��)�)s�)�)ɱ)o�)7�)ɴ)Y�)]�)��)O�)��)�)��)�)��)k�)��)1�)��)��)��)b�)��)v�)�)��)'�)Y�)��)��)g�)e�)�)�)��)��)R�)��)"�)��)��)\�)��)(�)��)��)Z�)��)(�)��)��)V�)k�)��)��)'�)��)u�)�)��)�)��)�)��)�)��)3�)��)I�)b�)��)��)�)��)2�)��)a�)��)�)��)��)q�)��)h�)��)��)A�)��)*�)q�)��)d�)��)2�)��)C�)��)Y�)��)q�)�)4�)�*�*�*�*�*�*�*�*S*t *� -*Y *� *� *!*�*)* *�**�*�*�*f*�*�*6*q*�*�*0*@*V*Z*e*p*�!*�#*"&*�&*)(*4)*^***+*�,*_-*8/*�/*�0*1*B2*�2*.3*�4*�5*�6*�7*v8*�8*�9*:*�:*/;*�;*<*�<*>*�?*tA*B**B*�B*pC*�C*tE*F*�F*1G*�G* -H*�H*vI*�I*lJ*�J*ZK*�K*@L*�L**M*�M*/N*�N*XO*�O*XP*�P*.Q*�Q*R*rR*�R*ES*�S*JT*�T*$U*�U* V*�V**W*�W*]X*�X*Y*nY*�Y*Z*kZ*�Z*�Z*�[*2\*�\*b]*�]*�^*+_*�_*l`*a*�a*^b*�b*�c*d*�d*�d*Ze*�f*g*'h*�i*=j*�j*0l*�l*+n*Hn*�n*�o*}p*~q*�q*�r*Xu*v*�v*|w*1x*�x*Ky*�y*]z*�z*D{*�{*�{*c|*�|*`}*�}*o~*�~*^*�*�*ȁ*T�*΂*_�*�*�*��*A�*��*L�*�*r�*��*�*^�*��*5�*��*6�*��*�*��*�*��*$�*��*]�*ב*�*ɓ*Z�*~�* �*��*��*�*��*<�*ޛ*͜*f�*�*��*1�*��*J�*Ԡ*U�*�*��*��*��*K�*�*S�*�*u�*��*v�*�*��*�*��*M�*��*z�*�*��*;�*��*B�*��*\�*�*��*�*��*�*��*��*^�*�*ٶ*Ƿ*G�*�*X�*(�*�*��*�*�*ɽ*o�*��*��*1�*��*/�*��*�*��*[�*��*t�* �*��*Y�*��*V�*��*]�*��*r�*��*��*��*��*4�*��*��*`5�/s������*�00182448de084becbedf9b1c183f15b8��*��*ffeeaa25cc9a4ec3b33583191d22d3ec��*��*$5:An additional handling fee of $5 is charged per passenger whe��*0�*ZIP CODE 7015001:Zip Code 7015001 is the postal code for the maj@�*��*{"title": "$5:An additional handling fee of $5 is charged per pa��*��*{"title": "ZIP CODE 7015001:Zip Code 7015001 is the postal code!��*(�*��*��*��*��*0�*��*��*��*(�*� -id ���������*string08 -text ���������*string08 -5vector ���������*fixed_size_list:float:153608 -% -attributes ���������*string08j -lance0.17.0z -lance0.1j�������*� -0 ���������*struct - -null_count*int648 - min_value*string08 - max_value*string08 -1 ���������*struct - -null_count *int648 - min_value *string08 - max_value *string08 -3 ���������*struct - -null_count *int648 - min_value - *string08 - max_value *string08  - �����*LANC \ No newline at end of file diff --git a/output/lancedb/default-text_unit-text.lance/_transactions/0-e04b38a4-ea56-4ca5-b298-95496c13f395.txn b/output/lancedb/default-text_unit-text.lance/_transactions/0-e04b38a4-ea56-4ca5-b298-95496c13f395.txn deleted file mode 100644 index f85c5260f574f38f71789c0ece72f78424615b49..0000000000000000000000000000000000000000 --- a/output/lancedb/default-text_unit-text.lance/_transactions/0-e04b38a4-ea56-4ca5-b298-95496c13f395.txn +++ /dev/null @@ -1,2 +0,0 @@ -$e04b38a4-ea56-4ca5-b298-95496c13f395��id ���������*string08text ���������*string085vector ���������*fixed_size_list:float:153608% -attributes ���������*string08 \ No newline at end of file diff --git a/output/lancedb/default-text_unit-text.lance/_transactions/1-f3a902bd-34e3-40b1-81ad-11b35df5586a.txn b/output/lancedb/default-text_unit-text.lance/_transactions/1-f3a902bd-34e3-40b1-81ad-11b35df5586a.txn deleted file mode 100644 index af8895ea80961fc9b89d27cead69a6ffd60211f5..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-text_unit-text.lance/_transactions/1-f3a902bd-34e3-40b1-81ad-11b35df5586a.txn and /dev/null differ diff --git a/output/lancedb/default-text_unit-text.lance/_versions/1.manifest b/output/lancedb/default-text_unit-text.lance/_versions/1.manifest deleted file mode 100644 index 63899605620f02dc65976d1489d09efa43841f89..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-text_unit-text.lance/_versions/1.manifest and /dev/null differ diff --git a/output/lancedb/default-text_unit-text.lance/_versions/2.manifest b/output/lancedb/default-text_unit-text.lance/_versions/2.manifest deleted file mode 100644 index cf3baf2a2f0e84eb5b97f9fd0dd0335649c66dc3..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-text_unit-text.lance/_versions/2.manifest and /dev/null differ diff --git a/output/lancedb/default-text_unit-text.lance/data/fa5e1270-11c2-4f6c-851c-38d22d912f29.lance b/output/lancedb/default-text_unit-text.lance/data/fa5e1270-11c2-4f6c-851c-38d22d912f29.lance deleted file mode 100644 index 2537536457a503785ee5264b3293139d51a4c271..0000000000000000000000000000000000000000 Binary files a/output/lancedb/default-text_unit-text.lance/data/fa5e1270-11c2-4f6c-851c-38d22d912f29.lance and /dev/null differ diff --git a/output/stats.json b/output/stats.json deleted file mode 100644 index 43a400dde93888d823f0731a90e126c0fbe93ce1..0000000000000000000000000000000000000000 --- a/output/stats.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "total_runtime": 227.07863759994507, - "num_documents": 14, - "input_load_time": 0, - "workflows": { - "create_base_text_units": { - "overall": 0.5190017223358154, - "0_create_base_text_units": 0.5170001983642578 - }, - "create_base_entity_graph": { - "overall": 68.77206015586853, - "0_create_base_entity_graph": 68.77006101608276 - }, - "create_final_covariates": { - "overall": 44.445202112197876, - "0_create_final_covariates": 44.443201780319214 - }, - "create_final_entities": { - "overall": 0.057999610900878906, - "0_create_final_entities": 0.05499982833862305 - }, - "create_final_nodes": { - "overall": 10.846451997756958, - "0_create_final_nodes": 10.842453241348267 - }, - "create_final_communities": { - "overall": 0.14314579963684082, - "0_create_final_communities": 0.1391468048095703 - }, - "create_final_relationships": { - "overall": 0.060999393463134766, - "0_create_final_relationships": 0.057000160217285156 - }, - "create_final_text_units": { - "overall": 0.02799844741821289, - "0_create_final_text_units": 0.022998809814453125 - }, - "create_final_community_reports": { - "overall": 94.63291501998901, - "0_create_final_community_reports": 94.62791657447815 - }, - "create_final_documents": { - "overall": 0.0169980525970459, - "0_create_final_documents": 0.01199960708618164 - }, - "generate_text_embeddings": { - "overall": 5.320180654525757, - "0_generate_text_embeddings": 5.314185380935669 - } - } -} \ No newline at end of file diff --git a/prompts/claim_extraction.txt b/prompts/claim_extraction.txt deleted file mode 100644 index 0b795c3465c6c98b3f828cbf12a2b346673c4a19..0000000000000000000000000000000000000000 --- a/prompts/claim_extraction.txt +++ /dev/null @@ -1,52 +0,0 @@ - --Target activity- -You are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document. - --Goal- -Given a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities. - --Steps- -1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types. -2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim. -For each claim, extract the following information: -- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1. -- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**. -- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type -- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified. -- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references. -- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**. -- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim. - -Format each claim as ({tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}) - -3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **{record_delimiter}** as the list delimiter. - -4. When finished, output {completion_delimiter} - --Examples- -Example 1: -Entity specification: organization -Claim description: red flags associated with an entity -Text: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015. -Output: - -(COMPANY A{tuple_delimiter}GOVERNMENT AGENCY B{tuple_delimiter}ANTI-COMPETITIVE PRACTICES{tuple_delimiter}TRUE{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10{tuple_delimiter}According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.) -{completion_delimiter} - -Example 2: -Entity specification: Company A, Person C -Claim description: red flags associated with an entity -Text: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015. -Output: - -(COMPANY A{tuple_delimiter}GOVERNMENT AGENCY B{tuple_delimiter}ANTI-COMPETITIVE PRACTICES{tuple_delimiter}TRUE{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10{tuple_delimiter}According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.) -{record_delimiter} -(PERSON C{tuple_delimiter}NONE{tuple_delimiter}CORRUPTION{tuple_delimiter}SUSPECTED{tuple_delimiter}2015-01-01T00:00:00{tuple_delimiter}2015-12-30T00:00:00{tuple_delimiter}Person C was suspected of engaging in corruption activities in 2015{tuple_delimiter}The company is owned by Person C who was suspected of engaging in corruption activities in 2015) -{completion_delimiter} - --Real Data- -Use the following input for your answer. -Entity specification: {entity_specs} -Claim description: {claim_description} -Text: {input_text} -Output: \ No newline at end of file diff --git a/prompts/community_report.txt b/prompts/community_report.txt deleted file mode 100644 index d71440ab2f6d87db03ccd84162ea2ff0b47293d9..0000000000000000000000000000000000000000 --- a/prompts/community_report.txt +++ /dev/null @@ -1,146 +0,0 @@ - -You are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network. - -# Goal -Write a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community's key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims. - -# Report Structure - -The report should include the following sections: - -- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title. -- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities. -- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community. -- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating. -- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive. - -Return output as a well-formed JSON-formatted string with the following format: - {{ - "title": , - "summary": , - "rating": , - "rating_explanation": , - "findings": [ - {{ - "summary":, - "explanation": - }}, - {{ - "summary":, - "explanation": - }} - ] - }} - -# Grounding Rules - -Points supported by data should list their data references as follows: - -"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]." - -Do not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more. - -For example: -"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]." - -where 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record. - -Do not include information where the supporting evidence for it is not provided. - - -# Example Input ------------ -Text: - -Entities - -id,entity,description -5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March -6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza - -Relationships - -id,source,target,description -37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March -38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza -39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza -40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza -41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march -43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March - -Output: -{{ - "title": "Verdant Oasis Plaza and Unity March", - "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.", - "rating": 5.0, - "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.", - "findings": [ - {{ - "summary": "Verdant Oasis Plaza as the central location", - "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza's association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]" - }}, - {{ - "summary": "Harmony Assembly's role in the community", - "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]" - }}, - {{ - "summary": "Unity March as a significant event", - "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community's dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]" - }}, - {{ - "summary": "Role of Tribune Spotlight", - "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]" - }} - ] -}} - - -# Real Data - -Use the following text for your answer. Do not make anything up in your answer. - -Text: -{input_text} - -The report should include the following sections: - -- TITLE: community's name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title. -- SUMMARY: An executive summary of the community's overall structure, how its entities are related to each other, and significant information associated with its entities. -- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community. -- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating. -- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive. - -Return output as a well-formed JSON-formatted string with the following format: - {{ - "title": , - "summary": , - "rating": , - "rating_explanation": , - "findings": [ - {{ - "summary":, - "explanation": - }}, - {{ - "summary":, - "explanation": - }} - ] - }} - -# Grounding Rules - -Points supported by data should list their data references as follows: - -"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]." - -Do not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more. - -For example: -"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]." - -where 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record. - -Do not include information where the supporting evidence for it is not provided. - -Output: \ No newline at end of file diff --git a/prompts/entity_extraction.txt b/prompts/entity_extraction.txt deleted file mode 100644 index c0edeba3e4b4cab7f043384ee90cec220bfe78c8..0000000000000000000000000000000000000000 --- a/prompts/entity_extraction.txt +++ /dev/null @@ -1,121 +0,0 @@ - --Goal- -Given a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities. - --Steps- -1. Identify all entities. For each identified entity, extract the following information: -- entity_name: Name of the entity, capitalized -- entity_type: One of the following types: [{entity_types}] -- entity_description: Comprehensive description of the entity's attributes and activities -Format each entity as ("entity"{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}) - -2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other. -For each pair of related entities, extract the following information: -- source_entity: name of the source entity, as identified in step 1 -- target_entity: name of the target entity, as identified in step 1 -- relationship_description: explanation as to why you think the source entity and the target entity are related to each other -- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity - Format each relationship as ("relationship"{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}) - -3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **{record_delimiter}** as the list delimiter. - -4. When finished, output {completion_delimiter} - -###################### --Examples- -###################### -Example 1: -Entity_types: ORGANIZATION,PERSON -Text: -The Verdantis's Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%. -###################### -Output: -("entity"{tuple_delimiter}CENTRAL INSTITUTION{tuple_delimiter}ORGANIZATION{tuple_delimiter}The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday) -{record_delimiter} -("entity"{tuple_delimiter}MARTIN SMITH{tuple_delimiter}PERSON{tuple_delimiter}Martin Smith is the chair of the Central Institution) -{record_delimiter} -("entity"{tuple_delimiter}MARKET STRATEGY COMMITTEE{tuple_delimiter}ORGANIZATION{tuple_delimiter}The Central Institution committee makes key decisions about interest rates and the growth of Verdantis's money supply) -{record_delimiter} -("relationship"{tuple_delimiter}MARTIN SMITH{tuple_delimiter}CENTRAL INSTITUTION{tuple_delimiter}Martin Smith is the Chair of the Central Institution and will answer questions at a press conference{tuple_delimiter}9) -{completion_delimiter} - -###################### -Example 2: -Entity_types: ORGANIZATION -Text: -TechGlobal's (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation's debut on the public markets isn't indicative of how other newly listed companies may perform. - -TechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones. -###################### -Output: -("entity"{tuple_delimiter}TECHGLOBAL{tuple_delimiter}ORGANIZATION{tuple_delimiter}TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones) -{record_delimiter} -("entity"{tuple_delimiter}VISION HOLDINGS{tuple_delimiter}ORGANIZATION{tuple_delimiter}Vision Holdings is a firm that previously owned TechGlobal) -{record_delimiter} -("relationship"{tuple_delimiter}TECHGLOBAL{tuple_delimiter}VISION HOLDINGS{tuple_delimiter}Vision Holdings formerly owned TechGlobal from 2014 until present{tuple_delimiter}5) -{completion_delimiter} - -###################### -Example 3: -Entity_types: ORGANIZATION,GEO,PERSON -Text: -Five Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia. - -The swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara. - -The exchange initiated in Firuzabad's capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara. - -They were welcomed by senior Aurelian officials and are now on their way to Aurelia's capital, Cashion. - -The Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia's Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality. -###################### -Output: -("entity"{tuple_delimiter}FIRUZABAD{tuple_delimiter}GEO{tuple_delimiter}Firuzabad held Aurelians as hostages) -{record_delimiter} -("entity"{tuple_delimiter}AURELIA{tuple_delimiter}GEO{tuple_delimiter}Country seeking to release hostages) -{record_delimiter} -("entity"{tuple_delimiter}QUINTARA{tuple_delimiter}GEO{tuple_delimiter}Country that negotiated a swap of money in exchange for hostages) -{record_delimiter} -{record_delimiter} -("entity"{tuple_delimiter}TIRUZIA{tuple_delimiter}GEO{tuple_delimiter}Capital of Firuzabad where the Aurelians were being held) -{record_delimiter} -("entity"{tuple_delimiter}KROHAARA{tuple_delimiter}GEO{tuple_delimiter}Capital city in Quintara) -{record_delimiter} -("entity"{tuple_delimiter}CASHION{tuple_delimiter}GEO{tuple_delimiter}Capital city in Aurelia) -{record_delimiter} -("entity"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}PERSON{tuple_delimiter}Aurelian who spent time in Tiruzia's Alhamia Prison) -{record_delimiter} -("entity"{tuple_delimiter}ALHAMIA PRISON{tuple_delimiter}GEO{tuple_delimiter}Prison in Tiruzia) -{record_delimiter} -("entity"{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}PERSON{tuple_delimiter}Aurelian journalist who was held hostage) -{record_delimiter} -("entity"{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}PERSON{tuple_delimiter}Bratinas national and environmentalist who was held hostage) -{record_delimiter} -("relationship"{tuple_delimiter}FIRUZABAD{tuple_delimiter}AURELIA{tuple_delimiter}Firuzabad negotiated a hostage exchange with Aurelia{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}QUINTARA{tuple_delimiter}AURELIA{tuple_delimiter}Quintara brokered the hostage exchange between Firuzabad and Aurelia{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}QUINTARA{tuple_delimiter}FIRUZABAD{tuple_delimiter}Quintara brokered the hostage exchange between Firuzabad and Aurelia{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}ALHAMIA PRISON{tuple_delimiter}Samuel Namara was a prisoner at Alhamia prison{tuple_delimiter}8) -{record_delimiter} -("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}Samuel Namara and Meggie Tazbah were exchanged in the same hostage release{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}Samuel Namara and Durke Bataglani were exchanged in the same hostage release{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}FIRUZABAD{tuple_delimiter}Samuel Namara was a hostage in Firuzabad{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}FIRUZABAD{tuple_delimiter}Meggie Tazbah was a hostage in Firuzabad{tuple_delimiter}2) -{record_delimiter} -("relationship"{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}FIRUZABAD{tuple_delimiter}Durke Bataglani was a hostage in Firuzabad{tuple_delimiter}2) -{completion_delimiter} - -###################### --Real Data- -###################### -Entity_types: {entity_types} -Text: {input_text} -###################### -Output: \ No newline at end of file diff --git a/prompts/summarize_descriptions.txt b/prompts/summarize_descriptions.txt deleted file mode 100644 index 8dc5e1eea539985d92581acce5e4b1d8b7524a98..0000000000000000000000000000000000000000 --- a/prompts/summarize_descriptions.txt +++ /dev/null @@ -1,13 +0,0 @@ - -You are a helpful assistant responsible for generating a comprehensive summary of the data provided below. -Given one or two entities, and a list of descriptions, all related to the same entity or group of entities. -Please concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions. -If the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary. -Make sure it is written in third person, and include the entity names so we have the full context. - -####### --Data- -Entities: {entity_name} -Description List: {description_list} -####### -Output: diff --git a/query_config.yaml b/query_config.yaml deleted file mode 100644 index 071f574e818c8c2ffddbe0f10751916762ebf9e6..0000000000000000000000000000000000000000 --- a/query_config.yaml +++ /dev/null @@ -1,48 +0,0 @@ -<<<<<<< HEAD -drift_search: - max_tokens: 4000 - drift_k_followups: 3 - n_depth: 2 - local_search_text_unit_prop: 0.6 - local_search_community_prop: 0.4 - local_search_top_k_mapped_entities: 10 - local_search_top_k_relationships: 10 - -local_search: - text_unit_prop: 0.5 - community_prop: 0.3 - conversation_history_max_turns: 5 - top_k_mapped_entities: 10 - top_k_relationships: 10 - max_tokens: 8000 - -global_search: - max_tokens: 8000 - data_max_tokens: 8000 - map_max_tokens: 1000 - reduce_max_tokens: 2000 -======= -drift_search: - max_tokens: 4000 - drift_k_followups: 3 - n_depth: 2 - local_search_text_unit_prop: 0.6 - local_search_community_prop: 0.4 - local_search_top_k_mapped_entities: 10 - local_search_top_k_relationships: 10 - -local_search: - text_unit_prop: 0.5 - community_prop: 0.3 - conversation_history_max_turns: 5 - top_k_mapped_entities: 10 - top_k_relationships: 10 - max_tokens: 8000 - -global_search: - max_tokens: 8000 - data_max_tokens: 8000 - map_max_tokens: 1000 - reduce_max_tokens: 2000 ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff - concurrency: 16 \ No newline at end of file diff --git a/reports/indexing-engine.log b/reports/indexing-engine.log deleted file mode 100644 index dfd0b50965fc05b976d637154dcaef568af5d4f9..0000000000000000000000000000000000000000 --- a/reports/indexing-engine.log +++ /dev/null @@ -1,47157 +0,0 @@ -13:50:49,442 graphrag.cli.index INFO Logging enabled at D:\Projects\pwc_prod\reports\indexing-engine.log -13:50:49,444 graphrag.cli.index INFO Starting pipeline run for: 20241118-135049, dry_run=False -13:50:49,445 graphrag.cli.index INFO Using default configuration: { - "llm": { - "api_key": "==== REDACTED ====", - "type": "openai_chat", - "model": "gpt-4o-mini", - "max_tokens": 4000, - "temperature": 0.0, - "top_p": 1.0, - "n": 1, - "request_timeout": 180.0, - "api_base": null, - "api_version": null, - "proxy": null, - "audience": null, - "deployment_name": null, - "model_supports_json": true, - "tokens_per_minute": 0, - "requests_per_minute": 0, - "max_retries": 10, - "max_retry_wait": 10.0, - "sleep_on_rate_limit_recommendation": true, - "concurrent_requests": 25 - }, - "parallelization": { - "stagger": 0.3, - "num_threads": 50 - }, - "async_mode": "threaded", - "root_dir": "D:\\Projects\\pwc_prod", - "reporting": { - "type": "file", - "base_dir": "D:\\Projects\\pwc_prod\\reports", - "storage_account_blob_url": null - }, - "storage": { - "type": "file", - "base_dir": "D:\\Projects\\pwc_prod\\output", - "storage_account_blob_url": null - }, - "update_index_storage": null, - "cache": { - "type": "file", - "base_dir": "cache", - "storage_account_blob_url": null - }, - "input": { - "type": "file", - "file_type": "text", - "base_dir": "input", - "storage_account_blob_url": null, - "encoding": "utf-8", - "file_pattern": ".*\\.txt$", - "file_filter": null, - "source_column": null, - "timestamp_column": null, - "timestamp_format": null, - "text_column": "text", - "title_column": null, - "document_attribute_columns": [] - }, - "embed_graph": { - "enabled": true, - "num_walks": 100, - "walk_length": 10, - "window_size": 5, - "iterations": 10, - "random_seed": 597832, - "strategy": null - }, - "embeddings": { - "llm": { - "api_key": "==== REDACTED ====", - "type": "openai_embedding", - "model": "text-embedding-3-small", - "max_tokens": 4000, - "temperature": 0, - "top_p": 1, - "n": 1, - "request_timeout": 180.0, - "api_base": null, - "api_version": null, - "proxy": null, - "audience": null, - "deployment_name": null, - "model_supports_json": null, - "tokens_per_minute": 0, - "requests_per_minute": 0, - "max_retries": 10, - "max_retry_wait": 10.0, - "sleep_on_rate_limit_recommendation": true, - "concurrent_requests": 25 - }, - "parallelization": { - "stagger": 0.3, - "num_threads": 50 - }, - "async_mode": "threaded", - "batch_size": 16, - "batch_max_tokens": 8191, - "target": "required", - "skip": [], - "vector_store": { - "type": "lancedb", - "db_uri": "output/lancedb", - "container_name": "==== REDACTED ====", - "overwrite": true - }, - "strategy": null - }, - "chunks": { - "size": 500, - "overlap": 50, - "group_by_columns": [ - "id" - ], - "strategy": null, - "encoding_model": null - }, - "snapshots": { - "embeddings": false, - "graphml": false, - "raw_entities": false, - "top_level_nodes": false, - "transient": false - }, - "entity_extraction": { - "llm": { - "api_key": "==== REDACTED ====", - "type": "openai_chat", - "model": "gpt-4o-mini", - "max_tokens": 4000, - "temperature": 0.0, - "top_p": 1.0, - "n": 1, - "request_timeout": 180.0, - "api_base": null, - "api_version": null, - "proxy": null, - "audience": null, - "deployment_name": null, - "model_supports_json": true, - "tokens_per_minute": 0, - "requests_per_minute": 0, - "max_retries": 10, - "max_retry_wait": 10.0, - "sleep_on_rate_limit_recommendation": true, - "concurrent_requests": 25 - }, - "parallelization": { - "stagger": 0.3, - "num_threads": 50 - }, - "async_mode": "threaded", - "prompt": "prompts/entity_extraction.txt", - "entity_types": [ - "Baggage Type", - "Dimension", - "Linear Dimension", - "Weight", - "Material Type", - "Wheel Configuration", - "Measurement Unit", - "Size Category", - "Weight Category", - "Airline", - "Alliance", - "Airport", - "Route Type", - "Travel Class", - "Cabin Section", - "Aircraft Type", - "Restriction", - "Exemption", - "Policy", - "Fee Structure", - "Currency", - "Allowance", - "Special Item", - "Prohibited Item", - "Restricted Item", - "Dangerous Good", - "Fragile Item", - "Valuable Item", - "Required Document", - "Label Type", - "Tag Category", - "Service Type", - "Handler Role", - "Service Location", - "Time Period", - "Passenger Type", - "Membership Level", - "Group Category" - ], - "max_gleanings": 2, - "strategy": null, - "encoding_model": null - }, - "summarize_descriptions": { - "llm": { - "api_key": "==== REDACTED ====", - "type": "openai_chat", - "model": "gpt-4o-mini", - "max_tokens": 4000, - "temperature": 0.0, - "top_p": 1.0, - "n": 1, - "request_timeout": 180.0, - "api_base": null, - "api_version": null, - "proxy": null, - "audience": null, - "deployment_name": null, - "model_supports_json": true, - "tokens_per_minute": 0, - "requests_per_minute": 0, - "max_retries": 10, - "max_retry_wait": 10.0, - "sleep_on_rate_limit_recommendation": true, - "concurrent_requests": 25 - }, - "parallelization": { - "stagger": 0.3, - "num_threads": 50 - }, - "async_mode": "threaded", - "prompt": null, - "max_length": 500, - "strategy": null - }, - "community_reports": { - "llm": { - "api_key": "==== REDACTED ====", - "type": "openai_chat", - "model": "gpt-4o-mini", - "max_tokens": 4000, - "temperature": 0.0, - "top_p": 1.0, - "n": 1, - "request_timeout": 180.0, - "api_base": null, - "api_version": null, - "proxy": null, - "audience": null, - "deployment_name": null, - "model_supports_json": true, - "tokens_per_minute": 0, - "requests_per_minute": 0, - "max_retries": 10, - "max_retry_wait": 10.0, - "sleep_on_rate_limit_recommendation": true, - "concurrent_requests": 25 - }, - "parallelization": { - "stagger": 0.3, - "num_threads": 50 - }, - "async_mode": "threaded", - "prompt": null, - "max_length": 2000, - "max_input_length": 8000, - "strategy": null - }, - "claim_extraction": { - "llm": { - "api_key": "==== REDACTED ====", - "type": "openai_chat", - "model": "gpt-4o-mini", - "max_tokens": 4000, - "temperature": 0.0, - "top_p": 1.0, - "n": 1, - "request_timeout": 180.0, - "api_base": null, - "api_version": null, - "proxy": null, - "audience": null, - "deployment_name": null, - "model_supports_json": true, - "tokens_per_minute": 0, - "requests_per_minute": 0, - "max_retries": 10, - "max_retry_wait": 10.0, - "sleep_on_rate_limit_recommendation": true, - "concurrent_requests": 25 - }, - "parallelization": { - "stagger": 0.3, - "num_threads": 50 - }, - "async_mode": "threaded", - "enabled": true, - "prompt": "prompts/claim_extraction.txt", - "description": "Extract baggage measurements, weight limits, and restrictions from airline documentation.", - "max_gleanings": 2, - "strategy": null, - "encoding_model": null - }, - "cluster_graph": { - "max_cluster_size": 10, - "strategy": null - }, - "umap": { - "enabled": true - }, - "local_search": { - "text_unit_prop": 0.7, - "community_prop": 0.3, - "conversation_history_max_turns": 5, - "top_k_entities": 10, - "top_k_relationships": 15, - "temperature": 0.0, - "top_p": 1.0, - "n": 1, - "max_tokens": 4000, - "llm_max_tokens": 2000 - }, - "global_search": { - "temperature": 0.0, - "top_p": 1.0, - "n": 1, - "max_tokens": 4000, - "data_max_tokens": 4000, - "map_max_tokens": 1000, - "reduce_max_tokens": 2000, - "concurrency": 10 - }, - "encoding_model": "cl100k_base", - "skip_workflows": [] -} -13:50:49,484 asyncio DEBUG Using proactor: IocpProactor -13:50:49,486 graphrag.index.create_pipeline_config INFO skipping workflows -13:50:49,486 graphrag.index.run.run INFO Running pipeline -13:50:49,486 graphrag.index.storage.file_pipeline_storage INFO Creating file storage at D:\Projects\pwc_prod\output -13:50:49,487 graphrag.index.input.load_input INFO loading input from root_dir=input -13:50:49,487 graphrag.index.input.load_input INFO using file storage for input -13:50:49,488 graphrag.index.storage.file_pipeline_storage INFO search D:\Projects\pwc_prod\input for files matching .*\.txt$ -13:50:49,490 graphrag.index.input.text INFO found text files from input, found [('first_paragraphs\\baggage-allowance_first_paragraph.txt', {}), ('first_paragraphs\\batteriesAndDangerousSubstances_first_paragraph.txt', {}), ('first_paragraphs\\CarryOnBaggage_first_paragraph.txt', {}), ('first_paragraphs\\damagedBaggage._first_paragraph.txt', {}), ('first_paragraphs\\LiquidsInCarryOnBags_first_paragraph.txt', {}), ('first_paragraphs\\pets_first_paragraph.txt', {}), ('first_paragraphs\\sportingequipment_first_paragraph.txt', {}), ('full_documents\\baggage-allowance.txt', {}), ('full_documents\\batteriesAndDangerousSubstances.txt', {}), ('full_documents\\CarryOnBaggage.txt', {}), ('full_documents\\damagedBaggage.txt', {}), ('full_documents\\LiquidsInCarryOnBags.txt', {}), ('full_documents\\pets.txt', {}), ('full_documents\\sportingequipment.txt', {})] -13:50:49,501 graphrag.index.input.text INFO Found 14 files, loading 14 -13:50:49,503 graphrag.index.workflows.load INFO Workflow Run Order: ['create_base_text_units', 'create_base_entity_graph', 'create_final_covariates', 'create_final_entities', 'create_final_nodes', 'create_final_communities', 'create_final_relationships', 'create_final_text_units', 'create_final_community_reports', 'create_final_documents', 'generate_text_embeddings'] -13:50:49,503 graphrag.index.run.run INFO Final # of rows loaded: 14 -13:50:49,636 graphrag.index.run.workflow INFO dependencies for create_base_text_units: [] -13:50:49,640 datashaper.workflow.workflow INFO executing verb create_base_text_units -13:50:50,287 graphrag.index.run.workflow INFO dependencies for create_base_entity_graph: ['create_base_text_units'] -13:50:50,287 graphrag.index.run.workflow WARNING Dependency table create_base_text_units not found in storage: it may be a runtime-only in-memory table. If you see further errors, this may be an actual problem. -13:50:50,292 datashaper.workflow.workflow INFO executing verb create_base_entity_graph -13:50:50,292 graphrag.index.operations.extract_entities.extract_entities DEBUG entity_extract strategy={'type': "graph_intelligence", 'llm': {'api_key': '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', 'type': "openai_chat", 'model': 'gpt-4o-mini', 'max_tokens': 4000, 'temperature': 0.0, 'top_p': 1.0, 'n': 1, 'request_timeout': 180.0, 'api_base': None, 'api_version': None, 'organization': None, 'proxy': None, 'audience': None, 'deployment_name': None, 'model_supports_json': True, 'tokens_per_minute': 0, 'requests_per_minute': 0, 'max_retries': 10, 'max_retry_wait': 10.0, 'sleep_on_rate_limit_recommendation': True, 'concurrent_requests': 25}, 'stagger': 0.3, 'num_threads': 50, 'extraction_prompt': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [{entity_types}]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"{tuple_delimiter}{tuple_delimiter}{tuple_delimiter})\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter})\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **{record_delimiter}** as the list delimiter.\n \n4. When finished, output {completion_delimiter}\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"{tuple_delimiter}CENTRAL INSTITUTION{tuple_delimiter}ORGANIZATION{tuple_delimiter}The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n{record_delimiter}\n("entity"{tuple_delimiter}MARTIN SMITH{tuple_delimiter}PERSON{tuple_delimiter}Martin Smith is the chair of the Central Institution)\n{record_delimiter}\n("entity"{tuple_delimiter}MARKET STRATEGY COMMITTEE{tuple_delimiter}ORGANIZATION{tuple_delimiter}The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n{record_delimiter}\n("relationship"{tuple_delimiter}MARTIN SMITH{tuple_delimiter}CENTRAL INSTITUTION{tuple_delimiter}Martin Smith is the Chair of the Central Institution and will answer questions at a press conference{tuple_delimiter}9)\n{completion_delimiter}\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"{tuple_delimiter}TECHGLOBAL{tuple_delimiter}ORGANIZATION{tuple_delimiter}TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n{record_delimiter}\n("entity"{tuple_delimiter}VISION HOLDINGS{tuple_delimiter}ORGANIZATION{tuple_delimiter}Vision Holdings is a firm that previously owned TechGlobal)\n{record_delimiter}\n("relationship"{tuple_delimiter}TECHGLOBAL{tuple_delimiter}VISION HOLDINGS{tuple_delimiter}Vision Holdings formerly owned TechGlobal from 2014 until present{tuple_delimiter}5)\n{completion_delimiter}\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"{tuple_delimiter}FIRUZABAD{tuple_delimiter}GEO{tuple_delimiter}Firuzabad held Aurelians as hostages)\n{record_delimiter}\n("entity"{tuple_delimiter}AURELIA{tuple_delimiter}GEO{tuple_delimiter}Country seeking to release hostages)\n{record_delimiter}\n("entity"{tuple_delimiter}QUINTARA{tuple_delimiter}GEO{tuple_delimiter}Country that negotiated a swap of money in exchange for hostages)\n{record_delimiter}\n{record_delimiter}\n("entity"{tuple_delimiter}TIRUZIA{tuple_delimiter}GEO{tuple_delimiter}Capital of Firuzabad where the Aurelians were being held)\n{record_delimiter}\n("entity"{tuple_delimiter}KROHAARA{tuple_delimiter}GEO{tuple_delimiter}Capital city in Quintara)\n{record_delimiter}\n("entity"{tuple_delimiter}CASHION{tuple_delimiter}GEO{tuple_delimiter}Capital city in Aurelia)\n{record_delimiter}\n("entity"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}PERSON{tuple_delimiter}Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n{record_delimiter}\n("entity"{tuple_delimiter}ALHAMIA PRISON{tuple_delimiter}GEO{tuple_delimiter}Prison in Tiruzia)\n{record_delimiter}\n("entity"{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}PERSON{tuple_delimiter}Aurelian journalist who was held hostage)\n{record_delimiter}\n("entity"{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}PERSON{tuple_delimiter}Bratinas national and environmentalist who was held hostage)\n{record_delimiter}\n("relationship"{tuple_delimiter}FIRUZABAD{tuple_delimiter}AURELIA{tuple_delimiter}Firuzabad negotiated a hostage exchange with Aurelia{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}QUINTARA{tuple_delimiter}AURELIA{tuple_delimiter}Quintara brokered the hostage exchange between Firuzabad and Aurelia{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}QUINTARA{tuple_delimiter}FIRUZABAD{tuple_delimiter}Quintara brokered the hostage exchange between Firuzabad and Aurelia{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}ALHAMIA PRISON{tuple_delimiter}Samuel Namara was a prisoner at Alhamia prison{tuple_delimiter}8)\n{record_delimiter}\n("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}Samuel Namara and Meggie Tazbah were exchanged in the same hostage release{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}Samuel Namara and Durke Bataglani were exchanged in the same hostage release{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}SAMUEL NAMARA{tuple_delimiter}FIRUZABAD{tuple_delimiter}Samuel Namara was a hostage in Firuzabad{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}MEGGIE TAZBAH{tuple_delimiter}FIRUZABAD{tuple_delimiter}Meggie Tazbah was a hostage in Firuzabad{tuple_delimiter}2)\n{record_delimiter}\n("relationship"{tuple_delimiter}DURKE BATAGLANI{tuple_delimiter}FIRUZABAD{tuple_delimiter}Durke Bataglani was a hostage in Firuzabad{tuple_delimiter}2)\n{completion_delimiter}\n\n######################\n-Real Data-\n######################\nEntity_types: {entity_types}\nText: {input_text}\n######################\nOutput:', 'max_gleanings': 2, 'encoding_name': 'cl100k_base', 'prechunked': True} -13:50:50,297 graphrag.llm.openai.create_openai_client INFO Creating OpenAI client base_url=None -13:50:50,298 httpx DEBUG load_ssl_context verify=True cert=None trust_env=True http2=False -13:50:50,298 httpx DEBUG load_verify_locations cafile='D:\\Projects\\pwc_prod\\pwc_prod\\Lib\\site-packages\\certifi\\cacert.pem' -13:50:50,553 graphrag.index.llm.load_llm INFO create TPM/RPM limiter for gpt-4o-mini: TPM=0, RPM=0 -13:50:50,553 graphrag.index.llm.load_llm INFO create concurrency limiter for gpt-4o-mini: 25 -13:50:50,652 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,653 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,654 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,654 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country�s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,655 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,655 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,655 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t\u200bEurope and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,656 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,656 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger�s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger\'s feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,657 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: in the area designated for the passenger\'s feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,657 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,658 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,658 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,658 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you\'re going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,659 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you\'re going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,659 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn\'t apply on LITE fare ticket), as long as it\'s packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger\'s responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger\'s equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,660 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger\'s equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,660 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,661 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon � Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,661 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Shlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,661 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier\'s liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,662 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,662 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,663 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,663 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,663 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,663 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,664 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,664 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,664 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,664 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,664 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,664 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,665 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,665 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,665 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,666 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,666 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,666 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,667 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,667 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,667 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,667 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,667 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,667 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,667 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,668 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,668 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,668 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al\'s service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane\'s belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven\'t checked in online should use El Al\'s check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:50,669 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:50:50,704 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,704 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,704 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,704 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,704 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,705 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,705 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,705 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,705 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,705 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,705 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,705 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,705 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,706 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,706 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,706 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,706 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,706 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,706 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,706 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,707 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,707 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,707 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,707 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,708 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,708 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,708 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,708 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,708 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,708 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,708 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,708 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,709 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,709 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,709 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,709 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,709 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,709 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,710 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,710 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,710 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,710 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,710 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,710 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,711 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,711 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,711 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,711 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,711 httpcore.connection DEBUG connect_tcp.complete return_value= -13:50:50,711 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:50:50,724 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,724 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,724 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,724 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,724 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,724 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,724 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,726 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,727 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,727 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,727 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,727 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,727 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,727 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,727 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,755 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,755 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,755 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,755 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,756 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,756 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,756 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,756 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,756 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,756 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,756 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,756 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,756 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,756 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,756 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,756 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,757 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.connection DEBUG start_tls.complete return_value= -13:50:50,758 httpcore.http11 DEBUG send_request_body.complete -13:50:50,758 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,759 httpcore.http11 DEBUG send_request_body.complete -13:50:50,759 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,759 httpcore.http11 DEBUG send_request_body.complete -13:50:50,759 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,759 httpcore.http11 DEBUG send_request_body.complete -13:50:50,759 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,759 httpcore.http11 DEBUG send_request_body.complete -13:50:50,759 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,759 httpcore.http11 DEBUG send_request_body.complete -13:50:50,759 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,759 httpcore.http11 DEBUG send_request_body.complete -13:50:50,759 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,759 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,759 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,760 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,761 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,762 httpcore.http11 DEBUG send_request_headers.started request= -13:50:50,762 httpcore.http11 DEBUG send_request_body.complete -13:50:50,762 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,762 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,762 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,762 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,762 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,762 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,762 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,762 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,762 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,762 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,763 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,763 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,763 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,763 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,763 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,763 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,763 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,763 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,763 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,763 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,763 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,763 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,763 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,764 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,764 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,764 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,764 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,764 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,764 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,764 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,764 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,764 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,764 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,764 httpcore.http11 DEBUG send_request_headers.complete -13:50:50,764 httpcore.http11 DEBUG send_request_body.started request= -13:50:50,765 httpcore.http11 DEBUG send_request_body.complete -13:50:50,765 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,765 httpcore.http11 DEBUG send_request_body.complete -13:50:50,765 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,765 httpcore.http11 DEBUG send_request_body.complete -13:50:50,765 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,765 httpcore.http11 DEBUG send_request_body.complete -13:50:50,765 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,765 httpcore.http11 DEBUG send_request_body.complete -13:50:50,765 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,765 httpcore.http11 DEBUG send_request_body.complete -13:50:50,765 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,765 httpcore.http11 DEBUG send_request_body.complete -13:50:50,765 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,766 httpcore.http11 DEBUG send_request_body.complete -13:50:50,766 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,766 httpcore.http11 DEBUG send_request_body.complete -13:50:50,766 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,766 httpcore.http11 DEBUG send_request_body.complete -13:50:50,766 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,766 httpcore.http11 DEBUG send_request_body.complete -13:50:50,766 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,766 httpcore.http11 DEBUG send_request_body.complete -13:50:50,766 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,766 httpcore.http11 DEBUG send_request_body.complete -13:50:50,766 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,766 httpcore.http11 DEBUG send_request_body.complete -13:50:50,767 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,767 httpcore.http11 DEBUG send_request_body.complete -13:50:50,767 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,767 httpcore.http11 DEBUG send_request_body.complete -13:50:50,767 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:50,767 httpcore.http11 DEBUG send_request_body.complete -13:50:50,767 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:52,731 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:52 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1209'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9921840'), (b'x-ratelimit-reset-requests', b'17ms'), (b'x-ratelimit-reset-tokens', b'468ms'), (b'x-request-id', b'req_440be28b7813ecbf41fca156801f97af'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=YGf7j.QTU2av9LLZyOKqWZm3MUEFY_HP2yE_scSQUAU-1731930652-1.0.1.1-z6c5Q4mPI8TW_chWmx.ehR65NmzkyyKZpKso0Pov0KZOg80JckbmThsfgDWngZSqjkocoRoWZINIZq1kLXaSvg; path=/; expires=Mon, 18-Nov-24 12:20:52 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=odVC68mk62gNXniSk9DDoHiuS91tySrfPlHuyuSlu_M-1731930652983-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dba6c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:52,732 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:52,732 httpcore.http11 DEBUG receive_response_body.started request= -13:50:52,732 httpcore.http11 DEBUG receive_response_body.complete -13:50:52,732 httpcore.http11 DEBUG response_closed.started -13:50:52,732 httpcore.http11 DEBUG response_closed.complete -13:50:52,732 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:52,736 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 2.1560000000172295. input_tokens=1964, output_tokens=86 -13:50:52,737 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: proceed to designated security check areas. Those who haven\'t checked in online should use El Al\'s check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:52,738 httpcore.http11 DEBUG send_request_headers.started request= -13:50:52,738 httpcore.http11 DEBUG send_request_headers.complete -13:50:52,739 httpcore.http11 DEBUG send_request_body.started request= -13:50:52,739 httpcore.http11 DEBUG send_request_body.complete -13:50:52,739 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:54,881 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:55 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'3383'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9955472'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'267ms'), (b'x-request-id', b'req_2a5b28a566260d7cde81e5c0ab8b1af1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=qFWnhhhacQ0EsM5xHVXxNvM_WoTtpwO7BL0UwKIa8OI-1731930655-1.0.1.1-dzYWbAQyzsMdcVK9d54P32zAPtzxQo6eNJ5kNiHp3O7W7i3DUSFXxLhebPytu7ZEgC9CwYxI6LZ92ZdFbcRzfA; path=/; expires=Mon, 18-Nov-24 12:20:55 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=KxLZKmgraE6ogNVCG6VJ09yYKQvIPoNBSL9rTgYwVHI-1731930655134-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8d9117d98-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:54,882 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:54,882 httpcore.http11 DEBUG receive_response_body.started request= -13:50:54,882 httpcore.http11 DEBUG receive_response_body.complete -13:50:54,882 httpcore.http11 DEBUG response_closed.started -13:50:54,882 httpcore.http11 DEBUG response_closed.complete -13:50:54,882 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:54,883 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 4.2810000000172295. input_tokens=2091, output_tokens=223 -13:50:54,885 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor�s note.\u200b\n\u200bPassengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:54,886 httpcore.http11 DEBUG send_request_headers.started request= -13:50:54,886 httpcore.http11 DEBUG send_request_headers.complete -13:50:54,886 httpcore.http11 DEBUG send_request_body.started request= -13:50:54,886 httpcore.http11 DEBUG send_request_body.complete -13:50:54,886 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:55,167 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:55 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'3841'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9984203'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'94ms'), (b'x-request-id', b'req_9f2cf80662769855704b9d690c103876'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=l4d143BBHh9geOSh9DmeAnInkMXHyQzOAalvS13HtTY-1731930655-1.0.1.1-EWgZDTzJKO5nCLvwwi3t2kwMRlsJIq3aa9.b6TY_9qSkhX3oBU1tHQMqB9fTIJcmjEf9kTXMSJOzkAc_AVSawQ; path=/; expires=Mon, 18-Nov-24 12:20:55 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=9.Dp76Vl6SAQI9qRJI52HdhNVIhRdTeCfqt4SfngIBw-1731930655420-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8db94c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:55,167 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:55,167 httpcore.http11 DEBUG receive_response_body.started request= -13:50:55,168 httpcore.http11 DEBUG receive_response_body.complete -13:50:55,168 httpcore.http11 DEBUG response_closed.started -13:50:55,168 httpcore.http11 DEBUG response_closed.complete -13:50:55,168 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:55,169 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 4.547000000020489. input_tokens=2026, output_tokens=324 -13:50:55,170 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al\'s baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n\u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:55,171 httpcore.http11 DEBUG send_request_headers.started request= -13:50:55,172 httpcore.http11 DEBUG send_request_headers.complete -13:50:55,172 httpcore.http11 DEBUG send_request_body.started request= -13:50:55,172 httpcore.http11 DEBUG send_request_body.complete -13:50:55,172 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:55,555 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:55 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2632'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994064'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_a484087d69b838013ba48112cd587ecc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bed53e1bc22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:55,555 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:55,555 httpcore.http11 DEBUG receive_response_body.started request= -13:50:55,556 httpcore.http11 DEBUG receive_response_body.complete -13:50:55,556 httpcore.http11 DEBUG response_closed.started -13:50:55,556 httpcore.http11 DEBUG response_closed.complete -13:50:55,556 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:55,556 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 2.8130000000237487. input_tokens=2007, output_tokens=253 -13:50:55,558 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n\u200b\u200bDo not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier\'s website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven\'t checked in yet, you can add baggage via Manage my booking.\nIf you\'ve already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:55,559 httpcore.http11 DEBUG send_request_headers.started request= -13:50:55,559 httpcore.http11 DEBUG send_request_headers.complete -13:50:55,559 httpcore.http11 DEBUG send_request_body.started request= -13:50:55,559 httpcore.http11 DEBUG send_request_body.complete -13:50:55,559 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:58,135 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:58 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'6586'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9913401'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'519ms'), (b'x-request-id', b'req_feb8732fb285badb233ae4987f52b7d4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=wQow7TUd18NJoEv.kHeecumt0mGUCN1U3bcUY5JV.rw-1731930658-1.0.1.1-AQdQ_tC3yiqvMpVx6ku_jqJp0piS9dukG.Xa8box1D.umbZl3VYnrg81fzVcOlnhLebmBSSLqJO.HLwRi12nMw; path=/; expires=Mon, 18-Nov-24 12:20:58 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=Zd1iuAfbu8bq7px6X0z9Iui_uq.w9B1S7F51cW_HB7g-1731930658387-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dc4cc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:58,135 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:58,135 httpcore.http11 DEBUG receive_response_body.started request= -13:50:58,135 httpcore.http11 DEBUG receive_response_body.complete -13:50:58,135 httpcore.http11 DEBUG response_closed.started -13:50:58,136 httpcore.http11 DEBUG response_closed.complete -13:50:58,136 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:58,136 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 7.51600000000326. input_tokens=2454, output_tokens=622 -13:50:58,138 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL�s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4�.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:58,139 httpcore.http11 DEBUG send_request_headers.started request= -13:50:58,139 httpcore.http11 DEBUG send_request_headers.complete -13:50:58,139 httpcore.http11 DEBUG send_request_body.started request= -13:50:58,139 httpcore.http11 DEBUG send_request_body.complete -13:50:58,140 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:58,587 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:58 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7182'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9984019'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'95ms'), (b'x-request-id', b'req_ee545d766509f3c9c1fd45caafefabc0'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=.QbsX0q3nBCHTNo7L.HgHpxuZCZf.p6NZV8gzCo8qTE-1731930658-1.0.1.1-uLOjVNhO1VkmgfECgBE3afPn855POUpyTnqo0sjTLk8kmbmdyZzd184SZz3YIxnTJyu1mk2gD3HqNLnsV3yLlw; path=/; expires=Mon, 18-Nov-24 12:20:58 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=qRZvzL7XQ8KkMSXVuhHJwODRNGdV63XCm43eZRnPC6w-1731930658839-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dff9c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:58,587 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:58,587 httpcore.http11 DEBUG receive_response_body.started request= -13:50:58,587 httpcore.http11 DEBUG receive_response_body.complete -13:50:58,587 httpcore.http11 DEBUG response_closed.started -13:50:58,587 httpcore.http11 DEBUG response_closed.complete -13:50:58,588 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:58,588 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 7.952999999979511. input_tokens=2022, output_tokens=586 -13:50:58,590 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:58,591 httpcore.http11 DEBUG send_request_headers.started request= -13:50:58,591 httpcore.http11 DEBUG send_request_headers.complete -13:50:58,591 httpcore.http11 DEBUG send_request_body.started request= -13:50:58,592 httpcore.http11 DEBUG send_request_body.complete -13:50:58,592 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:59,243 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:59 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7722'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9933006'), (b'x-ratelimit-reset-requests', b'11ms'), (b'x-ratelimit-reset-tokens', b'401ms'), (b'x-request-id', b'req_b6516d7e676d19c63539d81606f68b51'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=lkVH.G7fZsR13UHEAZXkAgoF2PWjk2JYphSFd8PHMKo-1731930659-1.0.1.1-Bf7KBF7a8A1.X98yKtNZhC8N5S23wwuez3CwI.y511RcNPkWj3XhhJUWU0NfIdyXeXB4Yko5sJupxgTqjGpL_A; path=/; expires=Mon, 18-Nov-24 12:20:59 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=o5y5Uqxh.qP0vuEvt028YVOG1wQm0Fy2WmveIItw4.c-1731930659496-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8de477da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:59,244 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:59,244 httpcore.http11 DEBUG receive_response_body.started request= -13:50:59,244 httpcore.http11 DEBUG receive_response_body.complete -13:50:59,244 httpcore.http11 DEBUG response_closed.started -13:50:59,244 httpcore.http11 DEBUG response_closed.complete -13:50:59,245 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:59,245 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 8.64000000001397. input_tokens=2453, output_tokens=606 -13:50:59,247 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:59,248 httpcore.http11 DEBUG send_request_headers.started request= -13:50:59,248 httpcore.http11 DEBUG send_request_headers.complete -13:50:59,248 httpcore.http11 DEBUG send_request_body.started request= -13:50:59,248 httpcore.http11 DEBUG send_request_body.complete -13:50:59,248 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:59,673 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:50:59 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8207'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9969551'), (b'x-ratelimit-reset-requests', b'8ms'), (b'x-ratelimit-reset-tokens', b'182ms'), (b'x-request-id', b'req_0ef4255ddf42f568f6ed54716165f319'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=Ew5f.GfJzLz.5Ckrt2L4XGZ1jNOtUwF9KQ7NjAfslUQ-1731930659-1.0.1.1-TTJn3hoahgoPN76pj2_5baXK7GVCZWaCZA2NP9Ev5Nzr8I5NOWEOCEsQl2ux5m56WI.Z53J5PMGEr55WlodDxw; path=/; expires=Mon, 18-Nov-24 12:20:59 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=loVxdIZGHZOMiyBVoNLR24qIdpzbaMajRSMxRJv1c00-1731930659926-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8db8fc227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:59,673 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:59,674 httpcore.http11 DEBUG receive_response_body.started request= -13:50:59,674 httpcore.http11 DEBUG receive_response_body.complete -13:50:59,674 httpcore.http11 DEBUG response_closed.started -13:50:59,674 httpcore.http11 DEBUG response_closed.complete -13:50:59,674 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:59,675 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 9.078000000037719. input_tokens=2191, output_tokens=561 -13:50:59,677 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries� terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.� Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:59,677 httpcore.http11 DEBUG send_request_headers.started request= -13:50:59,678 httpcore.http11 DEBUG send_request_headers.complete -13:50:59,678 httpcore.http11 DEBUG send_request_body.started request= -13:50:59,678 httpcore.http11 DEBUG send_request_body.complete -13:50:59,678 httpcore.http11 DEBUG receive_response_headers.started request= -13:50:59,959 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8468'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9960079'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'239ms'), (b'x-request-id', b'req_bfc43eb60573138ea6a62877d43f89f7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=cbkvRPhAgT1rMjthKsiDJTWTDY8v.mELf6nACiKFwq0-1731930660-1.0.1.1-bLuNnkG50LJkNi71GKUO93t3CweZaBsAoj2ML1dXkTP4j6vXkjFx4zNVI4PJNqNoJ0spmbI_kDBvJivCe_a3xg; path=/; expires=Mon, 18-Nov-24 12:21:00 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=nPvzjGJpGvVc7VW8QeodWpcQIYYmEAvMqu4FnWlHHEc-1731930660211-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dfe8c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:50:59,959 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:50:59,959 httpcore.http11 DEBUG receive_response_body.started request= -13:50:59,960 httpcore.http11 DEBUG receive_response_body.complete -13:50:59,960 httpcore.http11 DEBUG response_closed.started -13:50:59,960 httpcore.http11 DEBUG response_closed.complete -13:50:59,960 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:50:59,961 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 9.35899999999674. input_tokens=2454, output_tokens=570 -13:50:59,963 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery\'s watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:50:59,964 httpcore.http11 DEBUG send_request_headers.started request= -13:50:59,964 httpcore.http11 DEBUG send_request_headers.complete -13:50:59,964 httpcore.http11 DEBUG send_request_body.started request= -13:50:59,965 httpcore.http11 DEBUG send_request_body.complete -13:50:59,965 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:00,587 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9112'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9964749'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'211ms'), (b'x-request-id', b'req_d4e45441375fc94a3782cbacb7833b97'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=vX.AZ6rqhbYBOG8qb.zQDYjKLpuV.bK7BxzYngFRa3M-1731930660-1.0.1.1-RocTuzkn_4JHGKa9Itz3wJOaTcenIBi4E.gWQRtvW37377Ms18sa5h4VKRvR9Osxi9zBDC2i0yrqKQohiliGHA; path=/; expires=Mon, 18-Nov-24 12:21:00 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=VEjqC2iAE_xp6aWgk9zyR58UMsZwFi9XRPbMqWT4CUE-1731930660840-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8ebc2c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:00,588 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:00,588 httpcore.http11 DEBUG receive_response_body.started request= -13:51:00,588 httpcore.http11 DEBUG receive_response_body.complete -13:51:00,589 httpcore.http11 DEBUG response_closed.started -13:51:00,589 httpcore.http11 DEBUG response_closed.complete -13:51:00,589 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:00,590 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 9.952999999979511. input_tokens=2452, output_tokens=781 -13:51:00,592 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:00,592 httpcore.http11 DEBUG send_request_headers.started request= -13:51:00,593 httpcore.http11 DEBUG send_request_headers.complete -13:51:00,593 httpcore.http11 DEBUG send_request_body.started request= -13:51:00,593 httpcore.http11 DEBUG send_request_body.complete -13:51:00,593 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:00,863 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9536'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9988834'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'66ms'), (b'x-request-id', b'req_7a2c0e73daf14306c8aaad9b2aee3ef5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=V5yDqYxJUjGptp2Rm.rvLLD4WfRuZcfsWHmYNbifkME-1731930661-1.0.1.1-nH8_R6_tfOleqxtl32Uxeb9uGd5Mro4LxE8Cp.SJYaLrRZZfHbGcqJ3GcDWdOxL3kFv_51rF4LDc9xuTT7uw.Q; path=/; expires=Mon, 18-Nov-24 12:21:01 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=90TgRIVFvOD6a8IiZ_kf6vU7l2C.bznEmfnjgPJ9PoQ-1731930661115-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dc34c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:00,863 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:00,863 httpcore.http11 DEBUG receive_response_body.started request= -13:51:00,863 httpcore.http11 DEBUG receive_response_body.complete -13:51:00,863 httpcore.http11 DEBUG response_closed.started -13:51:00,863 httpcore.http11 DEBUG response_closed.complete -13:51:00,864 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:00,864 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 10.297000000020489. input_tokens=2414, output_tokens=638 -13:51:00,866 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al\'s baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n######################\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:00,867 httpcore.http11 DEBUG send_request_headers.started request= -13:51:00,867 httpcore.http11 DEBUG send_request_headers.complete -13:51:00,867 httpcore.http11 DEBUG send_request_body.started request= -13:51:00,867 httpcore.http11 DEBUG send_request_body.complete -13:51:00,867 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:01,126 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9833'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9990514'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'56ms'), (b'x-request-id', b'req_f629148a4708a3acaebb80e1a7ac8194'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=hmlFrh65z0sng7uJf8VtYNcTB2TvaZ8aJrIs3Invtpo-1731930661-1.0.1.1-fZXYzwfvjW6N5Xy1K40jeLb.gdW3WtbdEGPeboGcWI39hVv6eoOkRKjR4vZbiPLE1p.bST3dm31vNgBAvsMtxQ; path=/; expires=Mon, 18-Nov-24 12:21:01 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=YuUYPU5Xdb.PJ3CU_MXxBpOlzaNZjLBjPFe_Xaq_6pg-1731930661379-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8def3ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:01,126 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:01,126 httpcore.http11 DEBUG receive_response_body.started request= -13:51:01,127 httpcore.http11 DEBUG receive_response_body.complete -13:51:01,127 httpcore.http11 DEBUG response_closed.started -13:51:01,127 httpcore.http11 DEBUG response_closed.complete -13:51:01,127 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:01,128 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 10.547000000020489. input_tokens=2454, output_tokens=635 -13:51:01,131 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service location for cargo operations associated with EL AL Airlines.)\n##\n("relationship"<|>EL AL CARGO STORE<|>EL AL CARGO STORE<|>The EL AL Cargo Store is a part of EL AL Airlines\' cargo services<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:01,132 httpcore.http11 DEBUG send_request_headers.started request= -13:51:01,132 httpcore.http11 DEBUG send_request_headers.complete -13:51:01,132 httpcore.http11 DEBUG send_request_body.started request= -13:51:01,132 httpcore.http11 DEBUG send_request_body.complete -13:51:01,132 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:01,178 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2412'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994074'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_6b0184f18cb7a4ad9aaffeba70e53ebc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bef9ce11c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:01,178 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:01,178 httpcore.http11 DEBUG receive_response_body.started request= -13:51:01,178 httpcore.http11 DEBUG receive_response_body.complete -13:51:01,178 httpcore.http11 DEBUG response_closed.started -13:51:01,178 httpcore.http11 DEBUG response_closed.complete -13:51:01,179 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:01,179 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 2.594000000040978. input_tokens=2003, output_tokens=187 -13:51:01,182 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: in the area designated for the passenger\'s feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of dogs on its flights.)\n##\n("entity"<|>DOG<|>SPECIAL ITEM<|>A dog that may be transported by passengers under certain conditions and regulations.)\n##\n("entity"<|>PASSENGER<|>PASSENGER TYPE<|>A person traveling on the airline who may bring a dog on board under specific conditions.)\n##\n("relationship"<|>PASSENGER<|>DOG<|>The passenger is responsible for the dog\'s behavior and must meet conditions for its transport<|>7)\n##\n("relationship"<|>EL AL<|>DOG<|>EL AL has policies that govern the transport of dogs, including conditions under which they may be refused<|>8)\n##\n("relationship"<|>EL AL<|>PASSENGER<|>EL AL has specific requirements that passengers must meet to transport a dog<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:01,182 httpcore.http11 DEBUG send_request_headers.started request= -13:51:01,183 httpcore.http11 DEBUG send_request_headers.complete -13:51:01,183 httpcore.http11 DEBUG send_request_body.started request= -13:51:01,183 httpcore.http11 DEBUG send_request_body.complete -13:51:01,183 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:02,140 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10498'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9916513'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'500ms'), (b'x-request-id', b'req_f785d66c2bf97227a9ba676421a99514'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=_C6Pm_fNToPmo7Q.txoq8kqKa5Tp0wedgWa9ZLNnVqU-1731930662-1.0.1.1-gC7mao0ZIh36qY10qVaGTPMupk4yIiAfmhNGwrTzxudNjBmcvej6eX6.ru3gkkpD3kFIieUprYW0bdOFUiUlYw; path=/; expires=Mon, 18-Nov-24 12:21:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=RFZPzikYfbPLLBZK9FNqroYPtZmrZj5xDr0Io8si7Oc-1731930662393-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8da6cc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:02,141 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:02,141 httpcore.http11 DEBUG receive_response_body.started request= -13:51:02,143 httpcore.http11 DEBUG receive_response_body.complete -13:51:02,143 httpcore.http11 DEBUG response_closed.started -13:51:02,143 httpcore.http11 DEBUG response_closed.complete -13:51:02,143 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:02,144 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 11.563000000023749. input_tokens=2454, output_tokens=878 -13:51:02,147 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger\'s equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides transport services and has specific guidelines regarding passenger equipment and liability for fragile or valuable items.)\n##\n("entity"<|>FRAGILE ITEM<|>PROHIBITED ITEM<|>Fragile items are those that can easily break or be damaged during transport, and EL AL does not take responsibility for them.)\n##\n("entity"<|>VALUABLE ITEM<|>PROHIBITED ITEM<|>Valuable items are those that have significant monetary or sentimental value, and EL AL does not take responsibility for them.)\n##\n("entity"<|>SPECIAL TRAVEL INSURANCE<|>POLICY<|>Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.)\n##\n("relationship"<|>EL AL<|>FRAGILE ITEM<|>EL AL does not bear responsibility for fragile items transported by the airline<|>8)\n##\n("relationship"<|>EL AL<|>VALUABLE ITEM<|>EL AL does not bear responsibility for valuable items transported by the airline<|>8)\n##\n("relationship"<|>SPECIAL TRAVEL INSURANCE<|>FRAGILE ITEM<|>Special travel insurance is recommended for passengers transporting fragile items<|>7)\n##\n("relationship"<|>SPECIAL TRAVEL INSURANCE<|>VALUABLE ITEM<|>Special travel insurance is recommended for passengers transporting valuable items<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:02,147 httpcore.http11 DEBUG send_request_headers.started request= -13:51:02,148 httpcore.http11 DEBUG send_request_headers.complete -13:51:02,148 httpcore.http11 DEBUG send_request_body.started request= -13:51:02,148 httpcore.http11 DEBUG send_request_body.complete -13:51:02,148 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:02,542 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10496'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9976438'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'141ms'), (b'x-request-id', b'req_938d93d395adfe4fc6d3192fabdce43d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=cIJ1gg2g0GUhIp_JD.00JYEuaK6atGXg0ofOBEpmRnA-1731930662-1.0.1.1-Vti4797MUIdhNzjXJVCtoCAmvACu6LdjoZp0p878EF2Ow2OpKvG.rCrpURqkQWfIYAeA3mm6YAYItvmvitwHhw; path=/; expires=Mon, 18-Nov-24 12:21:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=A4sPX3A_66hp1BRuikO1fq9zw92uQL9vyQUMlp5O0Vc-1731930662794-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8df857da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:02,542 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:02,542 httpcore.http11 DEBUG receive_response_body.started request= -13:51:02,543 httpcore.http11 DEBUG receive_response_body.complete -13:51:02,543 httpcore.http11 DEBUG response_closed.started -13:51:02,543 httpcore.http11 DEBUG response_closed.complete -13:51:02,543 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:02,544 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 11.922000000020489. input_tokens=2453, output_tokens=894 -13:51:02,546 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: proceed to designated security check areas. Those who haven\'t checked in online should use El Al\'s check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>El Al is an airline that requires passengers to check in at their counters regardless of luggage when returning to Israel from abroad.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is the destination for passengers returning from abroad.)\n##\n("entity"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are designated areas where passengers must check in for their flights.)\n##\n("entity"<|>FLIGHT DESTINATION<|>REQUIRED DOCUMENT<|>Flight destination refers to the location where passengers are traveling and requires necessary documents for check-in.)\n##\n("relationship"<|>EL AL<|>CHECK-IN COUNTERS<|>El Al requires passengers to use check-in counters for their flights<|>8)\n##\n("relationship"<|>CHECK-IN COUNTERS<|>ISRAEL<|>Passengers checking in at the counters are returning to Israel<|>5)\n##\n("relationship"<|>FLIGHT DESTINATION<|>EL AL<|>Passengers must have necessary documents according to their flight destination when checking in with El Al<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:02,547 httpcore.http11 DEBUG send_request_headers.started request= -13:51:02,547 httpcore.http11 DEBUG send_request_headers.complete -13:51:02,548 httpcore.http11 DEBUG send_request_body.started request= -13:51:02,548 httpcore.http11 DEBUG send_request_body.complete -13:51:02,548 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:02,596 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11016'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9912772'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'523ms'), (b'x-request-id', b'req_f441d042fd5e8bff709f2f99ce5ac49a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=pm5UaDXU4R6kin_d0osIvQiIkyTO4Kcbl_6Fww6KcPQ-1731930662-1.0.1.1-ACf0DOvin.2kmTPLCCRYCs8Gtr9ABjA3yAU7Y088AyBrn47S6C7yxlHnsjucEeUcZm7VvYqJTpAsdvtA7Bv_tA; path=/; expires=Mon, 18-Nov-24 12:21:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=SbWmh7vou8QyH7dAuyXUimOCV1l1YAJesiotzeUP6Rc-1731930662849-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8de78c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:02,596 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:02,596 httpcore.http11 DEBUG receive_response_body.started request= -13:51:02,597 httpcore.http11 DEBUG receive_response_body.complete -13:51:02,597 httpcore.http11 DEBUG response_closed.started -13:51:02,597 httpcore.http11 DEBUG response_closed.complete -13:51:02,597 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:02,598 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 11.98499999998603. input_tokens=2453, output_tokens=970 -13:51:02,601 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the personal belongings that travelers take with them on a journey, which can be delayed, damaged, or lost during transit.)\n##\n("entity"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board, providing assistance to travelers.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims for delayed or damaged baggage.)\n##\n("entity"<|>BAGGAGE CLAIM AREA<|>Service Location<|>The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.)\n##\n("entity"<|>DAMAGE REPORT<|>Required Document<|>A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.)\n##\n("entity"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a unique identifier used to check the status of a claim regarding lost baggage.)\n##\n("entity"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler.)\n##\n("entity"<|>CLAIMS DEPARTMENT<|>Service Type<|>The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.)\n##\n("relationship"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with issues related to their baggage, including delays and damages<|>8)\n##\n("relationship"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and addressing issues such as delays and damages<|>9)\n##\n("relationship"<|>BAGGAGE<|>BAGGAGE CLAIM AREA<|>Travelers report baggage issues in the baggage claim area, where they can receive assistance<|>7)\n##\n("relationship"<|>BAGGAGE SERVICE CENTER<|>CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Claims Department to process claims related to baggage<|>6)\n##\n("relationship"<|>BAGGAGE<|>DAMAGE REPORT<|>A damage report is issued when baggage is reported damaged, which is necessary for processing claims<|>8)\n##\n("relationship"<|>BAGGAGE<|>LOST BAGGAGE REPORT NUMBER<|>The lost baggage report number is used to track claims related to lost baggage<|>7)\n##\n("relationship"<|>BAGGAGE<|>COURIER SERVICE<|>The courier service delivers retrieved baggage to travelers after it has been delayed<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:02,601 httpcore.http11 DEBUG send_request_headers.started request= -13:51:02,602 httpcore.http11 DEBUG send_request_headers.complete -13:51:02,602 httpcore.http11 DEBUG send_request_body.started request= -13:51:02,602 httpcore.http11 DEBUG send_request_body.complete -13:51:02,602 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:02,683 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11289'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9988218'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'70ms'), (b'x-request-id', b'req_4d5519240a819fa1cc70387eeba7f508'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=nriIFGwRlUfveeLMmVkPPGVAiZcoE7ODRxN302owviM-1731930662-1.0.1.1-OqAwYzOF9nDomMwBb_HABJmSNgCHdFy1fWwp6QHNw4Tdpof5bE.ntSweUwXP2paSBQzaRZsFnG5RXq6IhjNmPQ; path=/; expires=Mon, 18-Nov-24 12:21:02 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=kHZ_cgs_98W_RjeBPPOcFDKyzZxA8ZRr9E_kBMtTqic-1731930662935-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dedec224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:02,683 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:02,683 httpcore.http11 DEBUG receive_response_body.started request= -13:51:02,684 httpcore.http11 DEBUG receive_response_body.complete -13:51:02,684 httpcore.http11 DEBUG response_closed.started -13:51:02,684 httpcore.http11 DEBUG response_closed.complete -13:51:02,684 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:02,685 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 12.063000000023749. input_tokens=2454, output_tokens=987 -13:51:02,688 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGS<|>Baggage Type<|>Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.)\n##\n("entity"<|>16 KG<|>Weight<|>16 kg is the maximum weight allowed for one bag as per airline policy.)\n##\n("entity"<|>20 KG<|>Weight<|>20 kg is the combined maximum weight limit for all bags as per airline policy.)\n##\n("entity"<|>CARRY-ON BAGS<|>Baggage Type<|>Carry-on bags are personal items that passengers can take on board the aircraft, subject to weight and size restrictions.)\n##\n("entity"<|>MEDICATIONS<|>Valuable Item<|>Medications are essential items that passengers are advised to keep accessible during flights.)\n##\n("entity"<|>PASSPORTS<|>Valuable Item<|>Passports are required documents for international travel and should be easily accessible during flights.)\n##\n("entity"<|>VALUABLES<|>Valuable Item<|>Valuables refer to personal items of significant worth that should be kept accessible during flights.)\n##\n("entity"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as phones and laptops that passengers are advised to keep accessible during flights.)\n##\n("relationship"<|>BAGS<|>16 KG<|>The weight limit for one bag is set at 16 kg as per airline policy<|>8)\n##\n("relationship"<|>BAGS<|>20 KG<|>The combined weight limit for all bags is set at 20 kg as per airline policy<|>8)\n##\n("relationship"<|>CARRY-ON BAGS<|>BAGS<|>Carry-on bags are a type of baggage that passengers can take on board<|>9)\n##\n("relationship"<|>MEDICATIONS<|>CARRY-ON BAGS<|>Medications should be kept in carry-on bags for easy access during the flight<|>7)\n##\n("relationship"<|>PASSPORTS<|>CARRY-ON BAGS<|>Passports should be kept in carry-on bags for easy access during the flight<|>7)\n##\n("relationship"<|>VALUABLES<|>CARRY-ON BAGS<|>Valuables should be kept in carry-on bags for easy access during the flight<|>7)\n##\n("relationship"<|>ELECTRONIC DEVICES<|>CARRY-ON BAGS<|>Electronic devices should be kept in carry-on bags for easy access during the flight<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:02,688 httpcore.http11 DEBUG send_request_headers.started request= -13:51:02,689 httpcore.http11 DEBUG send_request_headers.complete -13:51:02,689 httpcore.http11 DEBUG send_request_body.started request= -13:51:02,689 httpcore.http11 DEBUG send_request_body.complete -13:51:02,689 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:02,827 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11317'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9938244'), (b'x-ratelimit-reset-requests', b'12ms'), (b'x-ratelimit-reset-tokens', b'370ms'), (b'x-request-id', b'req_c318b34b4e57c5d73074072aa402417e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=X3uo_PH7LPmJvYmMUCsREBHL3EmzadzHzcuj8JjuAEg-1731930663-1.0.1.1-8uBwTk_ziYEcTlVNU4A9.WSJkQ1FDnnvg7_LuE1.mnGReVvxPcvqP5_4LiKfcWTybWoqfYJnRC5vtMw3r_iDcQ; path=/; expires=Mon, 18-Nov-24 12:21:03 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=CwL0gFj0kbJL2dVmOiaOU.lng0FwHLWEdZceDBMn3Iw-1731930663079-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8de77c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:02,827 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:02,827 httpcore.http11 DEBUG receive_response_body.started request= -13:51:02,834 httpcore.http11 DEBUG receive_response_body.complete -13:51:02,834 httpcore.http11 DEBUG response_closed.started -13:51:02,834 httpcore.http11 DEBUG response_closed.complete -13:51:02,834 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:02,835 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 12.25. input_tokens=2454, output_tokens=983 -13:51:02,838 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger�s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger\'s feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of service dogs on flights.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>A service dog is a trained animal that assists passengers with disabilities and must meet specific requirements for air travel.)\n##\n("entity"<|>HEATHROW AIRPORT<|>AIRPORT<|>Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.)\n##\n("entity"<|>UNITED STATES<|>GEO<|>The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is a country with specific requirements for transporting animals, including service dogs.)\n##\n("entity"<|>CDC<|>ORGANIZATION<|>The CDC provides guidelines and requirements for transporting dogs to the United States, including health and vaccination documentation.)\n##\n("entity"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is a document that certifies a service dog is vaccinated and can maintain sanitary conditions during transport.)\n##\n("entity"<|>ANIMAL AIR TRANSPORT COMPANIES<|>SERVICE TYPE<|>Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.)\n##\n("relationship"<|>EL AL<|>SERVICE DOG<|>EL AL has specific policies regarding the transportation of service dogs, including requirements for documentation and behavior during the flight.<|>8)\n##\n("relationship"<|>SERVICE DOG<|>VETERINARY CERTIFICATE<|>A veterinary certificate is required for a service dog to ensure it is vaccinated and fit for travel.<|>9)\n##\n("relationship"<|>SERVICE DOG<|>HEATHROW AIRPORT<|>Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.<|>7)\n##\n("relationship"<|>SERVICE DOG<|>UNITED STATES<|>The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.<|>8)\n##\n("relationship"<|>ISRAEL<|>SERVICE DOG<|>Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.<|>6)\n##\n("relationship"<|>CDC<|>UNITED STATES<|>The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.<|>8)\n##\n("relationship"<|>EL AL<|>ANIMAL AIR TRANSPORT COMPANIES<|>EL AL may recommend using specialized companies for the air transport of animals, including service dogs.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:02,839 httpcore.http11 DEBUG send_request_headers.started request= -13:51:02,839 httpcore.http11 DEBUG send_request_headers.complete -13:51:02,839 httpcore.http11 DEBUG send_request_body.started request= -13:51:02,839 httpcore.http11 DEBUG send_request_body.complete -13:51:02,839 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:02,963 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1663'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994006'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_57cf3d1873ab09b06af94247faf2b308'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf09abd3ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:02,963 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:02,963 httpcore.http11 DEBUG receive_response_body.started request= -13:51:02,964 httpcore.http11 DEBUG receive_response_body.complete -13:51:02,964 httpcore.http11 DEBUG response_closed.started -13:51:02,964 httpcore.http11 DEBUG response_closed.complete -13:51:02,964 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:02,965 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 1.827999999979511. input_tokens=34, output_tokens=89 -13:51:02,967 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n("entity"<|>WHISKEY<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>GELS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>COSMETICS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>BABY FOOD<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>PRESCRIPTION MEDICATIONS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Country from which flights may have specific conditions regarding carrying liquids in carry-on bags.)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>WHISKEY<|>Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>GELS<|>Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>COSMETICS<|>Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>BABY FOOD<|>Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>PRESCRIPTION MEDICATIONS<|>Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>The restrictions on liquids in carry-on bags apply to flights departing from Israel.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:02,968 httpcore.http11 DEBUG send_request_headers.started request= -13:51:02,968 httpcore.http11 DEBUG send_request_headers.complete -13:51:02,968 httpcore.http11 DEBUG send_request_body.started request= -13:51:02,969 httpcore.http11 DEBUG send_request_body.complete -13:51:02,969 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:03,233 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11731'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9944860'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'330ms'), (b'x-request-id', b'req_71a351582dd729943dcf2a7f02856b98'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=6thieG.k5mowxExqzkrXndHFJ.tftCcObZqDk81Oe3g-1731930663-1.0.1.1-yqMhJX_UissbME2iXcHq2eBtofe2.kWWYhOX5ePd0WbBM6KwJLwDZEVcTdv2zkGb8u6t5UIOfPo.3RTfRzLK5w; path=/; expires=Mon, 18-Nov-24 12:21:03 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=jLrd_rSgcAmE6roy_bOejCg5qNs0iLNHZm9SpbR0F0Y-1731930663486-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dd6bc231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:03,233 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:03,233 httpcore.http11 DEBUG receive_response_body.started request= -13:51:03,234 httpcore.http11 DEBUG receive_response_body.complete -13:51:03,234 httpcore.http11 DEBUG response_closed.started -13:51:03,234 httpcore.http11 DEBUG response_closed.complete -13:51:03,234 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:03,235 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 12.60899999999674. input_tokens=2452, output_tokens=802 -13:51:03,238 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CARGO DIVISION<|>ORGANIZATION<|>The Cargo Division is responsible for managing transport costs and guidelines for cargo, including pets.)\n##\n("entity"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the passenger cabin based on size, weight, and permits.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for transporting pets and service dogs on flights.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs can accompany passengers with special needs or military personnel and must meet specific requirements for transport.)\n##\n("entity"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is required for transporting service dogs and must be provided by the passenger.)\n##\n("entity"<|>TRANSPORT CAGE GUIDELINES<|>POLICY<|>Guidelines that outline the requirements for transport cages used for pets during flights.)\n##\n("entity"<|>PASSENGER CABIN<|>CABIN SECTION<|>The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.)\n##\n("entity"<|>WEIGHT<|>DIMENSION<|>Weight is a factor in determining the cost of transporting pets, including the animal, carrying case, and food.)\n##\n("entity"<|>ALLOWANCE<|>ALLOWANCE<|>The permitted baggage allowance does not include the weight of pets being transported.)\n##\n("relationship"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division provides transport cost guidelines and policies for EL AL regarding cargo, including pets.<|>7)\n##\n("relationship"<|>PET<|>PASSENGER CABIN<|>Pets can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n("relationship"<|>SERVICE DOG<|>PASSENGER CABIN<|>Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.<|>9)\n##\n("relationship"<|>VETERINARY CERTIFICATE<|>SERVICE DOG<|>A veterinary certificate is required for the transport of service dogs.<|>8)\n##\n("relationship"<|>PET<|>ALLOWANCE<|>The weight of pets is not included in the permitted baggage allowance, affecting transport costs.<|>6)\n##\n("relationship"<|>TRANSPORT CAGE GUIDELINES<|>PET<|>Transport cage guidelines provide the necessary requirements for transporting pets safely.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:03,238 httpcore.http11 DEBUG send_request_headers.started request= -13:51:03,239 httpcore.http11 DEBUG send_request_headers.complete -13:51:03,239 httpcore.http11 DEBUG send_request_body.started request= -13:51:03,239 httpcore.http11 DEBUG send_request_body.complete -13:51:03,239 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:03,271 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11770'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9949802'), (b'x-ratelimit-reset-requests', b'8ms'), (b'x-ratelimit-reset-tokens', b'301ms'), (b'x-request-id', b'req_14ba5514c9660f0a9447d326ec7afa20'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=b_rS3eLGQeIiIPloi00.WrgCU4CTI7NkLNdLborOJAA-1731930663-1.0.1.1-CmYe69z9sqFNFdeh_c7AWAbE6QFPzpLbRpQ6aA.WxwPYSvp3L6PetCKaW4GiXNuCPMvl2GFpSFZ0iYbxMrHVBQ; path=/; expires=Mon, 18-Nov-24 12:21:03 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=LuNdD_3izL56N6DiXXE8hv2fnXUKjY4jhyAFYG10C40-1731930663524-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8ee83c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:03,271 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:03,271 httpcore.http11 DEBUG receive_response_body.started request= -13:51:03,272 httpcore.http11 DEBUG receive_response_body.complete -13:51:03,272 httpcore.http11 DEBUG response_closed.started -13:51:03,272 httpcore.http11 DEBUG response_closed.complete -13:51:03,272 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:03,273 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 12.64100000000326. input_tokens=2215, output_tokens=1030 -13:51:03,276 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n("entity"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat to maximize cabin space.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights with specific carry-on baggage policies.)\n##\n("entity"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights with specific carry-on baggage policies.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n("entity"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status affects eligibility for carry-on baggage allowances.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n("relationship"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat<|>8)\n##\n("relationship"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights<|>7)\n##\n("relationship"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights<|>7)\n##\n("relationship"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n("relationship"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n("relationship"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n("relationship"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Membership in the Matmid Frequent Flyer Club affects carry-on baggage eligibility<|>5)\n##\n("relationship"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a key factor in determining the eligibility of carry-on baggage<|>8)\n##\n("relationship"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are a key factor in determining the eligibility of carry-on baggage<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:03,276 httpcore.http11 DEBUG send_request_headers.started request= -13:51:03,277 httpcore.http11 DEBUG send_request_headers.complete -13:51:03,277 httpcore.http11 DEBUG send_request_body.started request= -13:51:03,277 httpcore.http11 DEBUG send_request_body.complete -13:51:03,277 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:03,587 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11515'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9976067'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'143ms'), (b'x-request-id', b'req_d809a17385bcf61243f9670bcec37e4d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=.Mq2ta5GqjyS6ftM7Z3.BqpRsXzi08OX9bLaCLNX1S0-1731930663-1.0.1.1-wQNQ4s3JSFQ357CuSIvDbL_IeZ8KXHm9IhnKhcK7OZK1TUfwhp1R04_2x_hsaZNeJmVirFUz0PxafKSFQQgJzw; path=/; expires=Mon, 18-Nov-24 12:21:03 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=MMXLtZiouznGlzKcGQcA0cQUUTEYbjVClQPtWWSMvHE-1731930663840-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8eb217d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:03,588 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:03,588 httpcore.http11 DEBUG receive_response_body.started request= -13:51:03,588 httpcore.http11 DEBUG receive_response_body.complete -13:51:03,588 httpcore.http11 DEBUG response_closed.started -13:51:03,588 httpcore.http11 DEBUG response_closed.complete -13:51:03,588 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:03,589 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 12.98399999999674. input_tokens=2321, output_tokens=735 -13:51:03,592 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets, including restrictions on certain breeds and weight limits.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from the weight limit for transporting pets in the cabin of the aircraft.)\n##\n("entity"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n##\n("entity"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the cabin or as checked baggage under specific conditions.)\n##\n("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to animals that must be transported in the luggage compartment of the aircraft in certain instances, such as large animals.)\n##\n("entity"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo refers to animals that may be transported by the Cargo Division, especially for extra-large animals or those flying unaccompanied.)\n##\n("entity"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg, except for service dogs.)\n##\n("relationship"<|>MINISTRY OF AGRICULTURE<|>EL AL<|>The Ministry of Agriculture oversees the transport of pets, which includes regulations that EL AL must follow for pet transportation<|>7)\n##\n("relationship"<|>EL AL<|>SERVICE DOG<|>EL AL allows service dogs to be transported without the weight limit that applies to other pets<|>8)\n##\n("relationship"<|>EL AL<|>DANGEROUS DOG<|>EL AL has a policy that prohibits the transportation of dangerous dogs as defined by Israeli law<|>9)\n##\n("relationship"<|>EL AL<|>PET<|>EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport<|>8)\n##\n("relationship"<|>PET<|>CHECKED BAGGAGE<|>Pets can be transported as checked baggage under certain conditions, such as size and weight<|>6)\n##\n("relationship"<|>PET<|>REGISTERED CARGO<|>Pets may also be transported as registered cargo, especially if they are large or unaccompanied<|>6)\n##\n("relationship"<|>9KG<|>PET<|>The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:03,592 httpcore.http11 DEBUG send_request_headers.started request= -13:51:03,593 httpcore.http11 DEBUG send_request_headers.complete -13:51:03,593 httpcore.http11 DEBUG send_request_body.started request= -13:51:03,593 httpcore.http11 DEBUG send_request_body.complete -13:51:03,593 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:04,346 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9278'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993656'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_ed7d87d66c12d99c510d82a05b7908a8'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bee2a82d7d98-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:04,346 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:04,346 httpcore.http11 DEBUG receive_response_body.started request= -13:51:04,346 httpcore.http11 DEBUG receive_response_body.complete -13:51:04,347 httpcore.http11 DEBUG response_closed.started -13:51:04,347 httpcore.http11 DEBUG response_closed.complete -13:51:04,347 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:04,348 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 9.46899999998277. input_tokens=2350, output_tokens=625 -13:51:04,350 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo and requires specific documentation for pet travel.)\n##\n("entity"<|>CDC<|>ORGANIZATION<|>The CDC sets regulations regarding the transportation of dogs to the US and provides guidelines that must be followed by passengers.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is defined as a high-risk country for transporting dogs according to the CDC.)\n##\n("entity"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of pets as cargo and requires specific documentation for this service.)\n##\n("entity"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals, especially when they weigh more than 9 kg.)\n##\n("entity"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is necessary for transporting pets to ensure they are fit for travel.)\n##\n("entity"<|>TRANSPORT AUTHORIZATION<|>REQUIRED DOCUMENT<|>Transport authorization from the destination country authorities is required for transporting pets.)\n##\n("entity"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed to transport animals out of the country.)\n##\n("entity"<|>MEASUREMENTS OF TRANSPORT CAGE<|>DIMENSION<|>The measurements of the transport cage are required to ensure the animal\'s safety and compliance with transport regulations.)\n##\n("relationship"<|>EL AL<|>CDC<|>EL AL must comply with CDC regulations for transporting dogs to the US<|>8)\n##\n("relationship"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL is responsible for handling pet transportation services<|>7)\n##\n("relationship"<|>CARGO DIVISION<|>BILL OF LADING<|>The Cargo Division requires a bill of lading for transporting animals over 9 kg<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>CERTIFICATE OF GOOD HEALTH<|>The Cargo Division requires a certificate of good health for pets being transported<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>TRANSPORT AUTHORIZATION<|>The Cargo Division requires transport authorization from destination authorities for pet transport<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>EXPORT LICENSE<|>The Cargo Division requires an export license for transporting animals<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>MEASUREMENTS OF TRANSPORT CAGE<|>The Cargo Division requires the measurements of the transport cage for compliance<|>6)\n##\n("relationship"<|>ISRAEL<|>CDC<|>Israel is classified as a high-risk country by the CDC for transporting dogs<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:04,351 httpcore.http11 DEBUG send_request_headers.started request= -13:51:04,351 httpcore.http11 DEBUG send_request_headers.complete -13:51:04,351 httpcore.http11 DEBUG send_request_body.started request= -13:51:04,352 httpcore.http11 DEBUG send_request_body.complete -13:51:04,352 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:04,440 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2103'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993661'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_e54b79dfbf6b52d6790b9ea5a2d4f961'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf10086cc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:04,440 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:04,440 httpcore.http11 DEBUG receive_response_body.started request= -13:51:04,441 httpcore.http11 DEBUG receive_response_body.complete -13:51:04,441 httpcore.http11 DEBUG response_closed.started -13:51:04,441 httpcore.http11 DEBUG response_closed.complete -13:51:04,441 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:04,442 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 2.2959999999729916. input_tokens=34, output_tokens=155 -13:51:04,442 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13167'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993875'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'36ms'), (b'x-request-id', b'req_35729881ca864ccc04360a78b1ca78ad'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=CnKY58yFTuKQKiK3XZ3rWRFwPyzsntU1jKJyTeFItG4-1731930664-1.0.1.1-Q3ZKGjo9IiMfeGuJ5MTKwfzoSCVapsl354Z5nRYxRyUDWZ6NwPsjWn8kfSm6BL9X5sfss95zEDY7RppZYM2JTQ; path=/; expires=Mon, 18-Nov-24 12:21:04 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=.3fjfv3DBiI7.eVUjBginGlAei5iYqsCD_qYGSD2ZGI-1731930664692-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8db80c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:04,442 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:04,442 httpcore.http11 DEBUG receive_response_body.started request= -13:51:04,445 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>AIRLINE<|>Baggage Type<|>Refers to the various airlines that operate flights and their associated baggage policies.)\n##\n("entity"<|>PASSENGER<|>Passenger Type<|>Refers to individuals who travel on flights and are subject to airline policies regarding baggage and services.)\n##\n("entity"<|>ADDITIONAL SERVICES<|>Service Type<|>Refers to extra services that can be ordered by passengers, which may incur additional charges.)\n##\n("relationship"<|>PASSENGER<|>AIRLINE<|>Passengers are subject to the policies of the airline regarding baggage and additional services<|>7)\n##\n("relationship"<|>PASSENGER<|>ADDITIONAL SERVICES<|>Passengers can order additional services, which may incur charges<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:04,446 httpcore.http11 DEBUG receive_response_body.complete -13:51:04,446 httpcore.http11 DEBUG response_closed.started -13:51:04,446 httpcore.http11 DEBUG response_closed.complete -13:51:04,446 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:04,447 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 13.84299999999348. input_tokens=2163, output_tokens=905 -13:51:04,447 httpcore.http11 DEBUG send_request_headers.started request= -13:51:04,450 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country�s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service provided by EL AL for transporting cargo, including pets, from Israel abroad.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is the country from which animals are transported abroad.)\n##\n("entity"<|>JOHANNESBURG<|>AIRPORT<|>Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n("entity"<|>LONDON<|>AIRPORT<|>London is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n("entity"<|>HONG KONG<|>AIRPORT<|>Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n("entity"<|>PET<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions and weight limits.)\n##\n("entity"<|>VETERINARIAN<|>SERVICE TYPE<|>Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.)\n##\n("entity"<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.)\n##\n("entity"<|>BILL OF LADING<|>RESTRICTION<|>A bill of lading is required for transporting animals as cargo, indicating the terms of transport.)\n##\n("entity"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where pets may be transported under certain conditions.)\n##\n("entity"<|>AIRCRAFT HOLD<|>CARGO<|>The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.)\n##\n("entity"<|>PASSENGER AIRCRAFT CABIN<|>CARGO<|>The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.)\n##\n("relationship"<|>EL AL CARGO STORE<|>ISRAEL<|>The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.<|>7)\n##\n("relationship"<|>PET<|>ISRAEL<|>Pets are transported from Israel to other countries, requiring specific permits and conditions.<|>8)\n##\n("relationship"<|>PET<|>BILL OF LADING<|>Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.<|>9)\n##\n("relationship"<|>PET<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>An international certificate of good health is required for transporting pets abroad.<|>8)\n##\n("relationship"<|>PET<|>VETERINARIAN<|>Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.<|>7)\n##\n("relationship"<|>PET<|>BUSINESS CABIN<|>Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.<|>6)\n##\n("relationship"<|>PET<|>AIRCRAFT HOLD<|>Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>8)\n##\n("relationship"<|>PET<|>PASSENGER AIRCRAFT CABIN<|>Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.<|>8)\n##\n("relationship"<|>JOHANNESBURG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Johannesburg.<|>5)\n##\n("relationship"<|>LONDON<|>PET<|>Transporting pets in the aircraft cabin is not allowed to London.<|>5)\n##\n("relationship"<|>HONG KONG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Hong Kong.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:04,451 httpcore.http11 DEBUG send_request_headers.complete -13:51:04,451 httpcore.http11 DEBUG send_request_body.started request= -13:51:04,451 httpcore.http11 DEBUG send_request_body.complete -13:51:04,451 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:04,451 httpcore.http11 DEBUG send_request_headers.started request= -13:51:04,452 httpcore.http11 DEBUG send_request_headers.complete -13:51:04,452 httpcore.http11 DEBUG send_request_body.started request= -13:51:04,452 httpcore.http11 DEBUG send_request_body.complete -13:51:04,452 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:04,812 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13267'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9917895'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'492ms'), (b'x-request-id', b'req_eb992477b6d9fe3f0585b48f1a0718c9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=Si1pbnMKpw75ASfUzWRCRuVFWiGqWHG2aPcpDy_m9l0-1731930665-1.0.1.1-opOsilcoSUC0LM.E03VSk6rGB7R2drZH7g_rd2_PTY.8OCeApcK_3JfTW2TLDMuTARS.dMewqJ65v1TM90f.yA; path=/; expires=Mon, 18-Nov-24 12:21:05 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=jrR09TyEHXVYMasZgq3c.lwbKt3OmXZvIbbQ9LKmPnU-1731930665065-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dd69c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:04,812 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:04,812 httpcore.http11 DEBUG receive_response_body.started request= -13:51:04,814 httpcore.http11 DEBUG receive_response_body.complete -13:51:04,814 httpcore.http11 DEBUG response_closed.started -13:51:04,814 httpcore.http11 DEBUG response_closed.complete -13:51:04,814 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:04,815 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 14.202999999979511. input_tokens=2250, output_tokens=1123 -13:51:04,818 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Shlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon provides pickup and delivery services for luggage and bags in various locations.)\n##\n("entity"<|>CARGO TIKIM VE MIZVADOT<|>SERVICE TYPE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.)\n##\n("entity"<|>MOKA<|>SERVICE LOCATION<|>Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.)\n##\n("entity"<|>RIMON MIZVADOT VE TIKIM<|>SERVICE TYPE<|>Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.)\n##\n("entity"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud specializes in baggage and outdoor equipment located in Nes Ziona.)\n##\n("entity"<|>GALGAL YAZIV<|>SERVICE TYPE<|>Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.)\n##\n("entity"<|>HAGALGAL<|>SERVICE TYPE<|>Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.)\n##\n("entity"<|>BUGABOO<|>MATERIAL TYPE<|>Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.)\n##\n("entity"<|>DAMAGE TO WHEELCHAIRS<|>RESTRICTION<|>Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers.)\n##\n("entity"<|>IMPORTANT TO KNOW<|>POLICY<|>Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.)\n##\n("entity"<|>DELAY IN RECEIVING BAGGAGE<|>POLICY<|>Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.)\n##\n("relationship"<|>ARTY RIMON<|>CARGO TIKIM VE MIZVADOT<|>Both provide services related to luggage and bags, indicating a potential partnership or competition<|>5)\n##\n("relationship"<|>ARTY RIMON<|>MOKA<|>Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship<|>8)\n##\n("relationship"<|>RIMON MIZVADOT VE TIKIM<|>ARTY RIMON<|>Both provide similar services in different locations, indicating a competitive relationship<|>5)\n##\n("relationship"<|>MAKOR HAZIUD<|>ARTY RIMON<|>Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon<|>4)\n##\n("relationship"<|>GALGAL YAZIV<|>DAMAGE TO WHEELCHAIRS<|>Galgal Yaziv addresses damage to powered mobility scooters, which relates to the restriction on damaged wheelchairs<|>6)\n##\n("relationship"<|>HAGALGAL<|>ARTY RIMON<|>Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon<|>4)\n##\n("relationship"<|>BUGABOO<|>HAGALGAL<|>Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in<|>5)\n##\n("relationship"<|>IMPORTANT TO KNOW<|>ARTY RIMON<|>The policy regarding baggage damage is relevant to the services provided by ARTY Rimon<|>7)\n##\n("relationship"<|>DELAY IN RECEIVING BAGGAGE<|>IMPORTANT TO KNOW<|>The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:04,819 httpcore.http11 DEBUG send_request_headers.started request= -13:51:04,819 httpcore.http11 DEBUG send_request_headers.complete -13:51:04,819 httpcore.http11 DEBUG send_request_body.started request= -13:51:04,820 httpcore.http11 DEBUG send_request_body.complete -13:51:04,820 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:05,410 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14000'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9979045'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'125ms'), (b'x-request-id', b'req_5864592615a5243ff625244c4babe2a9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=Ylwv1D16CUhIeD7DQzRHTvMtlEcPgTX4lc0TSRk8peA-1731930665-1.0.1.1-bPgVRKElYGj7i1K0E90PGzWsFDdRYYmc.nrdBi9uZN72ueSWFAVkCS3eC6PBOY.tyKDINrRc6xnzScU7WHYVCA; path=/; expires=Mon, 18-Nov-24 12:21:05 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=YIYQniP30q7W.eXmqIelI5Imp.igvPmnWxikCTr44ZY-1731930665663-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dff9c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:05,411 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:05,411 httpcore.http11 DEBUG receive_response_body.started request= -13:51:05,411 httpcore.http11 DEBUG receive_response_body.complete -13:51:05,411 httpcore.http11 DEBUG response_closed.started -13:51:05,411 httpcore.http11 DEBUG response_closed.complete -13:51:05,412 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:05,413 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 14.828000000037719. input_tokens=2454, output_tokens=1084 -13:51:05,415 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you\'re going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment refers to items such as skis, bikes, and other sports gear that can be transported as checked baggage or cargo by airlines.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that offers standard services and amenities for passengers, excluding Lite fares.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a higher travel class that provides enhanced services and amenities compared to Economy Class.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class is a premium travel class that offers superior services and amenities for passengers.)\n##\n("entity"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division is a service that allows passengers to transport oversized or additional baggage separately from their standard allowance.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the measurements of baggage, typically expressed in length, width, and height.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the mass of baggage, which is a critical factor in determining baggage allowances and fees.)\n##\n("entity"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage.)\n##\n("entity"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy Class.)\n##\n("entity"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n("entity"<|>70 USD<|>Fee Structure<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.)\n##\n("entity"<|>150 USD<|>Fee Structure<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America.)\n##\n("entity"<|>US DOLLARS<|>Currency<|>US Dollars are the currency used for pricing and payment of baggage fees.)\n##\n("relationship"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n("relationship"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n("relationship"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n("relationship"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an option for transporting sporting equipment that exceeds standard baggage allowances<|>7)\n##\n("relationship"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are critical for determining whether sporting equipment can be transported as checked baggage<|>9)\n##\n("relationship"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key factor in determining the allowance and fees for transporting sporting equipment<|>9)\n##\n("relationship"<|>277 CM<|>DIMENSIONS<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage<|>10)\n##\n("relationship"<|>30 KG<|>WEIGHT<|>30 kg is the maximum weight limit for sports equipment in Economy Class<|>10)\n##\n("relationship"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight limit for sports equipment in Business Class<|>10)\n##\n("relationship"<|>70 USD<|>SPORTING EQUIPMENT<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco<|>8)\n##\n("relationship"<|>150 USD<|>SPORTING EQUIPMENT<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America<|>8)\n##\n("relationship"<|>US DOLLARS<|>70 USD<|>70 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n##\n("relationship"<|>US DOLLARS<|>150 USD<|>150 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:05,416 httpcore.http11 DEBUG send_request_headers.started request= -13:51:05,416 httpcore.http11 DEBUG send_request_headers.complete -13:51:05,417 httpcore.http11 DEBUG send_request_body.started request= -13:51:05,417 httpcore.http11 DEBUG send_request_body.complete -13:51:05,417 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:05,779 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:06 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'3067'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993765'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'37ms'), (b'x-request-id', b'req_6c28421b44c91cd3664d032108e93ffa'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf128dd57da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:05,779 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:05,779 httpcore.http11 DEBUG receive_response_body.started request= -13:51:05,780 httpcore.http11 DEBUG receive_response_body.complete -13:51:05,780 httpcore.http11 DEBUG response_closed.started -13:51:05,780 httpcore.http11 DEBUG response_closed.complete -13:51:05,780 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:05,781 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 3.2339999999967404. input_tokens=34, output_tokens=220 -13:51:05,783 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn\'t apply on LITE fare ticket), as long as it\'s packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger\'s responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger\'s equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, subject to size and weight restrictions.)\n##\n("entity"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Charges applied when baggage exceeds the permitted size and weight dimensions for checked baggage.)\n##\n("entity"<|>US DOLLARS<|>Currency<|>US dollars are the currency used for displaying prices related to baggage fees and charges.)\n##\n("entity"<|>LOCAL CURRENCY<|>Currency<|>Local currency refers to the currency accepted at specific airports for payment of fees, which may vary by location.)\n##\n("entity"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment includes one pair of skis, one pair of poles, and one pair of ski boots, which can be transported under specific conditions.)\n##\n("entity"<|>SNOWBOARD EQUIPMENT<|>Special Item<|>Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.)\n##\n("entity"<|>BICYCLE<|>Special Item<|>A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.)\n##\n("entity"<|>LITE FARE TICKET<|>Travel Class<|>A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that has specific regulations regarding the transport of baggage, including special items like ski equipment and bicycles.)\n##\n("entity"<|>CARGO DIVISION<|>Service Location<|>The Cargo Division of EL AL handles special requests and approvals for transporting oversized or special items.)\n##\n("entity"<|>EL AL CALL CENTER<|>Service Location<|>The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.)\n##\n("entity"<|>PERMITTED DIMENSIONS<|>Restriction<|>The maximum size and weight limits that checked baggage and special items must adhere to for transport.)\n##\n("entity"<|>PACKING REGULATIONS<|>Policy<|>Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.)\n##\n("relationship"<|>CHECKED BAGGAGE<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions<|>9)\n##\n("relationship"<|>US DOLLARS<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges are displayed in US dollars<|>7)\n##\n("relationship"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE CHARGES<|>At some airports, payment for excess baggage charges is allowed only in local currency<|>5)\n##\n("relationship"<|>SKI EQUIPMENT<|>CHECKED BAGGAGE<|>Ski equipment can be included in checked baggage under specific conditions<|>8)\n##\n("relationship"<|>SNOWBOARD EQUIPMENT<|>CHECKED BAGGAGE<|>Snowboard equipment can be included in checked baggage under specific conditions<|>8)\n##\n("relationship"<|>BICYCLE<|>CHECKED BAGGAGE<|>A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions<|>8)\n##\n("relationship"<|>LITE FARE TICKET<|>SKI EQUIPMENT<|>Ski equipment transport does not apply on LITE fare tickets<|>6)\n##\n("relationship"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL manages special requests for transporting oversized items<|>7)\n##\n("relationship"<|>BICYCLE<|>CARGO DIVISION<|>Transport of bicycles requires pre-approval from the Cargo Division<|>6)\n##\n("relationship"<|>BICYCLE<|>EL AL CALL CENTER<|>Pre-approval for transporting bicycles must be obtained from the EL AL call center<|>6)\n##\n("relationship"<|>PERMITTED DIMENSIONS<|>CHECKED BAGGAGE<|>Checked baggage must meet the permitted dimensions for transport<|>9)\n##\n("relationship"<|>PACKING REGULATIONS<|>BICYCLE<|>Bicycles must be packed according to specific packing regulations to be transported<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:05,784 httpcore.http11 DEBUG send_request_headers.started request= -13:51:05,785 httpcore.http11 DEBUG send_request_headers.complete -13:51:05,785 httpcore.http11 DEBUG send_request_body.started request= -13:51:05,785 httpcore.http11 DEBUG send_request_body.complete -13:51:05,785 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:07,395 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'15878'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9926606'), (b'x-ratelimit-reset-requests', b'18ms'), (b'x-ratelimit-reset-tokens', b'440ms'), (b'x-request-id', b'req_6600c5d13942dce6a25121f0629c8a58'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=Cr3yOmlTr1FAhzZyyEgV9xQRrlZgL7PALwXTPwf4Qf4-1731930667-1.0.1.1-PKPtVpUPug4gJQlY_ez.LujCRG7q8aMzY8OJlkjOjgGEgDuh92YkfCh5vKMR9Io06T5HKcI26VRf2a5SnrVdMg; path=/; expires=Mon, 18-Nov-24 12:21:07 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=E0qX0oHBQCWCNsrhwZGVkgQZ4n7s5g2KAvlUkuyTHd8-1731930667647-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8db90c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:07,395 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:07,395 httpcore.http11 DEBUG receive_response_body.started request= -13:51:07,395 httpcore.http11 DEBUG receive_response_body.complete -13:51:07,395 httpcore.http11 DEBUG response_closed.started -13:51:07,396 httpcore.http11 DEBUG response_closed.complete -13:51:07,396 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:07,397 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 16.78200000000652. input_tokens=2454, output_tokens=1362 -13:51:07,400 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Health regulates the entry of animals.)\n##\n("entity"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health is the authority responsible for approving the entry of animals into Israel.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is the airline that provides services for transporting animals in various classes of the aircraft.)\n##\n("entity"<|>ANIMAL<|>SPECIAL ITEM<|>Animals such as dogs, cats, or exotic birds that are subject to specific transport regulations.)\n##\n("entity"<|>VETERINARY SERVICES<|>ORGANIZATION<|>Veterinary Services at Ben Gurion Airport is responsible for issuing flight permits for transporting animals.)\n##\n("entity"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main airport in Israel where animals must be authorized for transport.)\n##\n("entity"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A document required to ensure the animal is healthy before transport.)\n##\n("entity"<|>RABIES ANTIBODY TEST<|>REQUIRED DOCUMENT<|>A test required to confirm that the animal has been vaccinated against rabies.)\n##\n("entity"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the category under which animals can be transported in the aircraft cabin or hold.)\n##\n("entity"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is the method of transporting animals that exceed certain weight limits.)\n##\n("entity"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where animals may be transported with prior approval.)\n##\n("entity"<|>ANIMAL WEIGHT<|>DIMENSION<|>The weight of the animal is a critical factor in determining the mode of transport.)\n##\n("entity"<|>9 KG<|>WEIGHT<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin.)\n##\n("entity"<|>100 KG<|>WEIGHT<|>Animals weighing more than 100 kg must be transported as registered cargo.)\n##\n("entity"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Documents required for obtaining authorization to transport an animal to Israel.)\n##\n("entity"<|>FLIGHT PERMIT<|>REQUIRED DOCUMENT<|>A permit issued by Veterinary Services allowing the transport of an animal.)\n##\n("relationship"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health regulates the entry of animals into Israel<|>8)\n##\n("relationship"<|>EL AL<|>ANIMAL<|>EL AL provides transport services for animals in various classes<|>7)\n##\n("relationship"<|>VETERINARY SERVICES<|>BEN GURION AIRPORT<|>Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport<|>9)\n##\n("relationship"<|>ANIMAL<|>BAGGAGE<|>Animals can be transported as baggage in the aircraft cabin or hold<|>6)\n##\n("relationship"<|>ANIMAL<|>REGISTERED CARGO<|>Animals exceeding weight limits must be transported as registered cargo<|>6)\n##\n("relationship"<|>ANIMAL<|>ANIMAL WEIGHT<|>The weight of the animal determines the mode of transport<|>8)\n##\n("relationship"<|>9 KG<|>ANIMAL<|>Animals weighing up to 9 kg can be transported in the aircraft cabin<|>7)\n##\n("relationship"<|>100 KG<|>ANIMAL<|>Animals weighing more than 100 kg must be transported as registered cargo<|>7)\n##\n("relationship"<|>VETERINARY SERVICES<|>DOCUMENTS<|>Veterinary Services requires specific documents for animal transport authorization<|>8)\n##\n("relationship"<|>DOCUMENTS<|>CERTIFICATE OF GOOD HEALTH<|>A certificate of good health is one of the required documents for transport<|>9)\n##\n("relationship"<|>DOCUMENTS<|>RABIES ANTIBODY TEST<|>A rabies antibody test is another required document for transport<|>9)\n##\n("relationship"<|>EL AL<|>BUSINESS CABIN<|>Animals can be transported in the Business cabin with prior approval from EL AL<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:07,401 httpcore.http11 DEBUG send_request_headers.started request= -13:51:07,401 httpcore.http11 DEBUG send_request_headers.complete -13:51:07,401 httpcore.http11 DEBUG send_request_body.started request= -13:51:07,401 httpcore.http11 DEBUG send_request_body.complete -13:51:07,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:07,611 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2983'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9986802'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'79ms'), (b'x-request-id', b'req_49baa1079057ce597f46fc74c7035f70'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf1e6d3cc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:07,612 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:07,612 httpcore.http11 DEBUG receive_response_body.started request= -13:51:07,612 httpcore.http11 DEBUG receive_response_body.complete -13:51:07,612 httpcore.http11 DEBUG response_closed.started -13:51:07,612 httpcore.http11 DEBUG response_closed.complete -13:51:07,612 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:07,613 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 3.172000000020489. input_tokens=34, output_tokens=236 -13:51:07,616 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service location for cargo operations associated with EL AL Airlines.)\n##\n("relationship"<|>EL AL CARGO STORE<|>EL AL CARGO STORE<|>The EL AL Cargo Store is a part of EL AL Airlines\' cargo services<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>CARGO TERMINAL<|>AIRPORT<|>A cargo terminal is a facility where cargo is handled, stored, and transferred, typically associated with an airport\'s operations.)\n##\n("relationship"<|>CARGO TERMINAL<|>EL AL CARGO STORE<|>The EL AL Cargo Store operates within the cargo terminal for handling cargo services<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:07,617 httpcore.http11 DEBUG send_request_headers.started request= -13:51:07,618 httpcore.http11 DEBUG send_request_headers.complete -13:51:07,618 httpcore.http11 DEBUG send_request_body.started request= -13:51:07,618 httpcore.http11 DEBUG send_request_body.complete -13:51:07,618 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:07,618 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'6178'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993710'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'37ms'), (b'x-request-id', b'req_72e03cb00bdbb3f387e156184e215006'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf09fa5cc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:07,618 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:07,619 httpcore.http11 DEBUG receive_response_body.started request= -13:51:07,619 httpcore.http11 DEBUG receive_response_body.complete -13:51:07,619 httpcore.http11 DEBUG response_closed.started -13:51:07,619 httpcore.http11 DEBUG response_closed.complete -13:51:07,619 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:07,620 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 6.436999999976251. input_tokens=34, output_tokens=399 -13:51:07,623 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n("entity"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat in front of the passenger to maximize cabin space.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n("entity"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n("entity"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status may affect the eligibility of passengers to bring carry-on baggage aboard the aircraft.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n("relationship"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat in front of the passenger.<|>8)\n##\n("relationship"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n("relationship"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n("relationship"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n("relationship"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n("relationship"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n("relationship"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Matmid Frequent Flyer Club status may influence the carry-on baggage eligibility for passengers.<|>5)\n##\n("relationship"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a critical factor in determining the eligibility of carry-on baggage for boarding.<|>8)\n##\n("relationship"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are essential for determining the eligibility of carry-on baggage for boarding.<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:07,623 httpcore.http11 DEBUG send_request_headers.started request= -13:51:07,624 httpcore.http11 DEBUG send_request_headers.complete -13:51:07,624 httpcore.http11 DEBUG send_request_body.started request= -13:51:07,624 httpcore.http11 DEBUG send_request_body.complete -13:51:07,624 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:07,697 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7562'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993532'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_d053d365617e3783a967aa1ffde723a3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf025903c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:07,697 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:07,697 httpcore.http11 DEBUG receive_response_body.started request= -13:51:07,698 httpcore.http11 DEBUG receive_response_body.complete -13:51:07,698 httpcore.http11 DEBUG response_closed.started -13:51:07,698 httpcore.http11 DEBUG response_closed.complete -13:51:07,698 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:07,699 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 7.73399999999674. input_tokens=2454, output_tokens=648 -13:51:07,701 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier\'s liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the suitcases and items that passengers check in for their flights, which can be lost, damaged, or delayed.)\n##\n("entity"<|>EL AL ISRAEL AIRLINES<|>Airline<|>EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.)\n##\n("entity"<|>FLIGHT TICKETS<|>Required Document<|>Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.)\n##\n("entity"<|>BOARDING PASSES<|>Required Document<|>Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.)\n##\n("entity"<|>BAGGAGE TAGS<|>Required Document<|>Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.)\n##\n("entity"<|>LOST OR DAMAGED BAGGAGE REPORT<|>Required Document<|>A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.)\n##\n("entity"<|>RECEIPTS<|>Required Document<|>Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.)\n##\n("entity"<|>FRAGILE ITEMS<|>Prohibited Item<|>Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n("entity"<|>PERISHABLE ITEMS<|>Prohibited Item<|>Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n("entity"<|>VALUABLE ITEMS<|>Valuable Item<|>Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n("entity"<|>INTERNATIONAL CONVENTIONS<|>Policy<|>International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.)\n##\n("entity"<|>CONTRACT OF CARRIAGE<|>Policy<|>The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.)\n##\n("relationship"<|>BAGGAGE<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.<|>9)\n##\n("relationship"<|>FLIGHT TICKETS<|>BAGGAGE<|>Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>BOARDING PASSES<|>BAGGAGE<|>Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>BAGGAGE TAGS<|>BAGGAGE<|>Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>LOST OR DAMAGED BAGGAGE REPORT<|>BAGGAGE<|>A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>RECEIPTS<|>BAGGAGE<|>Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>FRAGILE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.<|>7)\n##\n("relationship"<|>PERISHABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.<|>7)\n##\n("relationship"<|>VALUABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.<|>7)\n##\n("relationship"<|>INTERNATIONAL CONVENTIONS<|>EL AL ISRAEL AIRLINES<|>International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.<|>6)\n##\n("relationship"<|>CONTRACT OF CARRIAGE<|>EL AL ISRAEL AIRLINES<|>The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:07,702 httpcore.http11 DEBUG send_request_headers.started request= -13:51:07,702 httpcore.http11 DEBUG send_request_headers.complete -13:51:07,702 httpcore.http11 DEBUG send_request_body.started request= -13:51:07,703 httpcore.http11 DEBUG send_request_body.complete -13:51:07,703 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:07,734 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'6975'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993817'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'37ms'), (b'x-request-id', b'req_6748661df3797f9c5f0ac560a6cd4ac3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf064fbdc22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:07,734 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:07,734 httpcore.http11 DEBUG receive_response_body.started request= -13:51:07,734 httpcore.http11 DEBUG receive_response_body.complete -13:51:07,734 httpcore.http11 DEBUG response_closed.started -13:51:07,734 httpcore.http11 DEBUG response_closed.complete -13:51:07,735 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:07,735 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 7.1560000000172295. input_tokens=2215, output_tokens=455 -13:51:07,738 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the items that passengers check in for their flight, which can be delayed, damaged, or lost.)\n##\n("entity"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims.)\n##\n("entity"<|>BAGGAGE CLAIMS DEPARTMENT<|>Service Location<|>The Baggage Claims Department processes claims related to lost or damaged baggage.)\n##\n("entity"<|>DELAYED BAGGAGE<|>Restriction<|>Delayed baggage refers to baggage that has not arrived with the passenger and must be reported immediately after landing.)\n##\n("entity"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status can be checked using a worldwide system by entering the lost baggage report number and last name.)\n##\n("entity"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the passenger\'s address.)\n##\n("entity"<|>CONTACT DETAILS<|>Required Document<|>Contact details include phone numbers and WhatsApp chat options for reporting baggage issues.)\n##\n("entity"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a 10-character identifier used to check the status of a claim.)\n##\n("entity"<|>BAGGAGE REPORT<|>Required Document<|>A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.)\n##\n("relationship"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center manages issues related to baggage, including delays and damages<|>8)\n##\n("relationship"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and related claims<|>9)\n##\n("relationship"<|>BAGGAGE SERVICE CENTER<|>BAGGAGE CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Baggage Claims Department for processing claims<|>7)\n##\n("relationship"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>Delayed baggage must be reported to the Baggage Service Center for assistance<|>8)\n##\n("relationship"<|>CLAIM STATUS<|>BAGGAGE SERVICE CENTER<|>The status of a claim can be checked through the Baggage Service Center\'s worldwide system<|>6)\n##\n("relationship"<|>BAGGAGE<|>COURIER SERVICE<|>Retrieved delayed baggage is delivered to the passenger\'s address by the courier service<|>7)\n##\n("relationship"<|>BAGGAGE<|>CONTACT DETAILS<|>Contact details are provided for passengers to report baggage issues<|>5)\n##\n("relationship"<|>LOST BAGGAGE REPORT NUMBER<|>CLAIM STATUS<|>The lost baggage report number is required to check the status of a claim<|>8)\n##\n("relationship"<|>BAGGAGE REPORT<|>DELAYED BAGGAGE<|>A baggage report is issued for delayed baggage at the airport<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:07,739 httpcore.http11 DEBUG send_request_headers.started request= -13:51:07,739 httpcore.http11 DEBUG send_request_headers.complete -13:51:07,739 httpcore.http11 DEBUG send_request_body.started request= -13:51:07,739 httpcore.http11 DEBUG send_request_body.complete -13:51:07,739 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:08,115 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'4961'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993321'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'40ms'), (b'x-request-id', b'req_7e054853f95b2528b0bedc0504f6481e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf152a07ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:08,115 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:08,115 httpcore.http11 DEBUG receive_response_body.started request= -13:51:08,116 httpcore.http11 DEBUG receive_response_body.complete -13:51:08,116 httpcore.http11 DEBUG response_closed.started -13:51:08,116 httpcore.http11 DEBUG response_closed.complete -13:51:08,116 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:08,116 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 5.1560000000172295. input_tokens=34, output_tokens=342 -13:51:08,119 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor�s note.\u200b\n\u200bPassengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n("entity"<|>ISRAEL<|>COUNTRY<|>Country from which flights are departing and has specific guidelines for carrying liquids in carry-on bags.)\n##\n("entity"<|>U.S<|>COUNTRY<|>Country with specific guidelines regarding the carrying of liquids in handbags.)\n##\n("entity"<|>100 ML<|>MEASUREMENT UNIT<|>Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.)\n##\n("entity"<|>3.4 OZ<|>MEASUREMENT UNIT<|>Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.)\n##\n("entity"<|>CLEAR RESEALABLE PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.)\n##\n("entity"<|>DOCTOR\'S NOTE<|>REQUIRED DOCUMENT<|>Document required for carrying medications and special food products at the security checkpoint.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>Airline that states it is not responsible for any liquids confiscated from passengers at the airport.)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>U.S<|>The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.<|>8)\n##\n("relationship"<|>100 ML<|>3.4 OZ<|>100 ml is equivalent to 3.4 oz, which is the maximum volume allowed for liquids in carry-on bags.<|>9)\n##\n("relationship"<|>CLEAR RESEALABLE PLASTIC BAG<|>LIQUIDS IN CARRY-ON BAGS<|>A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.<|>9)\n##\n("relationship"<|>DOCTOR\'S NOTE<|>LIQUIDS IN CARRY-ON BAGS<|>A doctor\'s note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.<|>8)\n##\n("relationship"<|>EL AL<|>LIQUIDS IN CARRY-ON BAGS<|>EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:08,120 httpcore.http11 DEBUG send_request_headers.started request= -13:51:08,120 httpcore.http11 DEBUG send_request_headers.complete -13:51:08,121 httpcore.http11 DEBUG send_request_body.started request= -13:51:08,121 httpcore.http11 DEBUG send_request_body.complete -13:51:08,121 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:08,140 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'353'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997881'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'12ms'), (b'x-request-id', b'req_304c04173a4c3c865e44e262431c1029'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf323e2cc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:08,140 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:08,140 httpcore.http11 DEBUG receive_response_body.started request= -13:51:08,140 httpcore.http11 DEBUG receive_response_body.complete -13:51:08,141 httpcore.http11 DEBUG response_closed.started -13:51:08,141 httpcore.http11 DEBUG response_closed.complete -13:51:08,141 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:08,142 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5320000000065193. input_tokens=30, output_tokens=1 -13:51:08,148 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger\'s equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides transport services and has specific guidelines regarding passenger equipment and liability for fragile or valuable items.)\n##\n("entity"<|>FRAGILE ITEM<|>PROHIBITED ITEM<|>Fragile items are those that can easily break or be damaged during transport, and EL AL does not take responsibility for them.)\n##\n("entity"<|>VALUABLE ITEM<|>PROHIBITED ITEM<|>Valuable items are those that have significant monetary or sentimental value, and EL AL does not take responsibility for them.)\n##\n("entity"<|>SPECIAL TRAVEL INSURANCE<|>POLICY<|>Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.)\n##\n("relationship"<|>EL AL<|>FRAGILE ITEM<|>EL AL does not bear responsibility for fragile items transported by the airline<|>8)\n##\n("relationship"<|>EL AL<|>VALUABLE ITEM<|>EL AL does not bear responsibility for valuable items transported by the airline<|>8)\n##\n("relationship"<|>SPECIAL TRAVEL INSURANCE<|>FRAGILE ITEM<|>Special travel insurance is recommended for passengers transporting fragile items<|>7)\n##\n("relationship"<|>SPECIAL TRAVEL INSURANCE<|>VALUABLE ITEM<|>Special travel insurance is recommended for passengers transporting valuable items<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>EQUIPMENT<|>SPECIAL ITEM<|>Equipment refers to the items that passengers may bring with them, which can include sporting equipment and other personal belongings.)\n##\n("entity"<|>DESTINATION COUNTRY<|>GEO<|>The destination country is the country to which a passenger is traveling, and it has specific guidelines and conditions for admitting passenger equipment.)\n##\n("relationship"<|>EL AL<|>EQUIPMENT<|>EL AL has guidelines regarding the transport of passenger equipment<|>6)\n##\n("relationship"<|>EQUIPMENT<|>DESTINATION COUNTRY<|>The destination country may refuse to admit certain types of passenger equipment<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:08,149 httpcore.http11 DEBUG send_request_headers.started request= -13:51:08,149 httpcore.http11 DEBUG send_request_headers.complete -13:51:08,150 httpcore.http11 DEBUG send_request_body.started request= -13:51:08,150 httpcore.http11 DEBUG send_request_body.complete -13:51:08,150 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:08,647 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'5781'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993500'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_0836068cea340a1ba5b51b67673259ee'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf136ef2c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:08,648 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:08,648 httpcore.http11 DEBUG receive_response_body.started request= -13:51:08,648 httpcore.http11 DEBUG receive_response_body.complete -13:51:08,648 httpcore.http11 DEBUG response_closed.started -13:51:08,648 httpcore.http11 DEBUG response_closed.complete -13:51:08,648 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:08,649 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 5.954000000027008. input_tokens=34, output_tokens=451 -13:51:08,652 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when boarding a flight.)\n##\n("entity"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may be considered dangerous goods due to their lithium batteries and require special handling.)\n##\n("entity"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may contain batteries or other components classified as dangerous goods.)\n##\n("entity"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their flammability and potential hazards.)\n##\n("entity"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosives like acids and wet cell batteries are prohibited on aircraft due to their hazardous nature.)\n##\n("entity"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are forbidden on aircraft for safety reasons.)\n##\n("entity"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to their potential to ignite.)\n##\n("entity"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are forbidden on aircraft due to safety and health risks.)\n##\n("entity"<|>BRIEFCASES WITH ALARM DEVICES<|>PROHIBITED ITEM<|>Briefcases with installed alarm devices are prohibited on aircraft for security reasons.)\n##\n("entity"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials like hydrogen peroxide are prohibited on aircraft due to their reactive nature.)\n##\n("entity"<|>POISONS<|>PROHIBITED ITEM<|>Poisons and infectious substances are forbidden on aircraft due to their hazardous effects on health.)\n##\n("entity"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can interfere with navigation and safety equipment.)\n##\n("relationship"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries, which are classified as dangerous goods and require special handling<|>8)\n##\n("relationship"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may contain batteries, which are classified as dangerous goods<|>8)\n##\n("relationship"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Corrosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Explosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Radioactive materials and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>BRIEFCASES WITH ALARM DEVICES<|>FLAMMABLE LIQUIDS<|>Both briefcases with alarm devices and flammable liquids are prohibited on aircraft<|>6)\n##\n("relationship"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Oxidizing materials and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n("relationship"<|>POISONS<|>FLAMMABLE LIQUIDS<|>Poisons and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n("relationship"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>High-strength magnetic materials and flammable liquids are both prohibited on aircraft<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:08,652 httpcore.http11 DEBUG send_request_headers.started request= -13:51:08,653 httpcore.http11 DEBUG send_request_headers.complete -13:51:08,653 httpcore.http11 DEBUG send_request_body.started request= -13:51:08,653 httpcore.http11 DEBUG send_request_body.complete -13:51:08,653 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:08,664 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8808'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993512'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_de52a179b222bf20ae671e3e7ab12249'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf009957c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:08,664 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:08,664 httpcore.http11 DEBUG receive_response_body.started request= -13:51:08,664 httpcore.http11 DEBUG receive_response_body.complete -13:51:08,664 httpcore.http11 DEBUG response_closed.started -13:51:08,664 httpcore.http11 DEBUG response_closed.complete -13:51:08,664 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:08,665 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 8.98399999999674. input_tokens=2454, output_tokens=685 -13:51:08,668 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you\'re going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment includes items like skis, snowboards, and bicycles that can be transported on flights under specific conditions.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows complimentary transport of sports equipment under certain conditions, excluding Lite fares.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a travel class that allows complimentary transport of sports equipment under specific conditions.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the total measurements (length + width + height) of the sports equipment that must not exceed specified limits for transport.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the maximum allowable weight of sports equipment for transport, which varies by travel class.)\n##\n("entity"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division provides services for transporting oversized or separately sent sports equipment as cargo.)\n##\n("entity"<|>CALL CENTER<|>Service Location<|>The call center is a service location where passengers can contact for approval regarding overweight baggage.)\n##\n("entity"<|>OVERWEIGHT BAGGAGE<|>Restriction<|>Overweight baggage refers to items that exceed the standard weight limits and require special approval for transport.)\n##\n("entity"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports items brought beyond the standard baggage allowance.)\n##\n("entity"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n("entity"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy and Premium Class.)\n##\n("entity"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum total measurement limit for sports equipment to be sent as overweight baggage.)\n##\n("entity"<|>190 CM<|>Linear Dimension<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.)\n##\n("entity"<|>LITE FARES<|>Restriction<|>Lite fares are a type of Economy Class fare that does not allow for complimentary transport of sports equipment.)\n##\n("relationship"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n("relationship"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n("relationship"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment with different weight limits compared to Economy and Premium Class.<|>8)\n##\n("relationship"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are a critical factor in determining whether sporting equipment can be transported as checked baggage.<|>9)\n##\n("relationship"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key restriction that determines if sporting equipment can be transported in the specified travel classes.<|>9)\n##\n("relationship"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an alternative for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n##\n("relationship"<|>CALL CENTER<|>OVERWEIGHT BAGGAGE<|>The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.<|>6)\n##\n("relationship"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to items that can be transported beyond the standard baggage allowance.<|>5)\n##\n("relationship"<|>32 KG<|>BUSINESS CLASS<|>32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n("relationship"<|>30 KG<|>ECONOMY CLASS<|>30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n("relationship"<|>277 CM<|>OVERWEIGHT BAGGAGE<|>277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.<|>8)\n##\n("relationship"<|>190 CM<|>SPORTING EQUIPMENT<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.<|>8)\n##\n("relationship"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a restriction within Economy Class that affects the transport of sporting equipment.<|>4)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:08,668 httpcore.http11 DEBUG send_request_headers.started request= -13:51:08,669 httpcore.http11 DEBUG send_request_headers.complete -13:51:08,669 httpcore.http11 DEBUG send_request_body.started request= -13:51:08,669 httpcore.http11 DEBUG send_request_body.complete -13:51:08,669 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:08,692 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'375'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995552'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_6700eae8aafbcba3cc9e9f76796b3815'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf358acdc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:08,693 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:08,693 httpcore.http11 DEBUG receive_response_body.started request= -13:51:08,693 httpcore.http11 DEBUG receive_response_body.complete -13:51:08,693 httpcore.http11 DEBUG response_closed.started -13:51:08,693 httpcore.http11 DEBUG response_closed.complete -13:51:08,693 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:08,694 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5459999999729916. input_tokens=30, output_tokens=1 -13:51:08,696 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t\u200bEurope and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo or baggage.)\n##\n("entity"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the airport in Israel where animals are released after transport.)\n##\n("entity"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of animals as cargo.)\n##\n("entity"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department determines the conditions under which animals can be transported.)\n##\n("entity"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals as cargo.)\n##\n("entity"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Veterinary Services Department is required to transport a pet as cargo.)\n##\n("entity"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed for transporting animals internationally.)\n##\n("entity"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is required for pets being transported.)\n##\n("entity"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>REQUIRED DOCUMENT<|>Laboratory results for rabies antibodies are necessary for transporting pets.)\n##\n("entity"<|>COSTS OF TRANSPORTING ANIMALS<|>POLICY<|>The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.)\n##\n("entity"<|>ANIMALS WEIGHING UP TO 9 KG<|>WEIGHT CATEGORY<|>Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.)\n##\n("entity"<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>WEIGHT CATEGORY<|>Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.)\n##\n("entity"<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>WEIGHT CATEGORY<|>Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.)\n##\n("entity"<|>ANIMALS WEIGHING MORE THAN 100 KG<|>WEIGHT CATEGORY<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.)\n##\n("relationship"<|>EL AL<|>CARGO DIVISION<|>EL AL\'s Cargo Division is responsible for handling the transportation of animals as cargo<|>8)\n##\n("relationship"<|>BEN GURION AIRPORT<|>EL AL<|>Animals transported by EL AL are released at Ben Gurion Airport<|>7)\n##\n("relationship"<|>VETERINARY SERVICES DEPARTMENT<|>AUTHORIZATION<|>Authorization from the Veterinary Services Department is required for transporting pets as cargo<|>9)\n##\n("relationship"<|>VETERINARY SERVICES DEPARTMENT<|>BILL OF LADING<|>The Veterinary Services Department determines if a bill of lading is needed for transporting animals<|>6)\n##\n("relationship"<|>EXPORT LICENSE<|>VETERINARY SERVICES DEPARTMENT<|>An export license is required by the Veterinary Services Department for transporting animals<|>7)\n##\n("relationship"<|>CERTIFICATE OF GOOD HEALTH<|>VETERINARY SERVICES DEPARTMENT<|>A certificate of good health is required by the Veterinary Services Department for transporting animals<|>7)\n##\n("relationship"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>VETERINARY SERVICES DEPARTMENT<|>Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals<|>7)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING UP TO 9 KG<|>The cost of transporting animals weighing up to 9 kg is $100 when transported as baggage<|>8)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>The cost of transporting animals weighing between 9 and 50 kg is $200 when transported as baggage<|>8)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>The cost of transporting animals weighing between 50 and 100 kg is $400 when transported as baggage<|>8)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING MORE THAN 100 KG<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division<|>9)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:08,697 httpcore.http11 DEBUG send_request_headers.started request= -13:51:08,697 httpcore.http11 DEBUG send_request_headers.complete -13:51:08,698 httpcore.http11 DEBUG send_request_body.started request= -13:51:08,698 httpcore.http11 DEBUG send_request_body.complete -13:51:08,698 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:08,773 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13052'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993494'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'39ms'), (b'x-request-id', b'req_1c8b8979db2fb564edd4e537d246c9f1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bee6da5fc22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:08,773 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:08,774 httpcore.http11 DEBUG receive_response_body.started request= -13:51:08,774 httpcore.http11 DEBUG receive_response_body.complete -13:51:08,774 httpcore.http11 DEBUG response_closed.started -13:51:08,774 httpcore.http11 DEBUG response_closed.complete -13:51:08,775 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:08,776 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 13.21899999998277. input_tokens=2454, output_tokens=1007 -13:51:08,779 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: proceed to designated security check areas. Those who haven\'t checked in online should use El Al\'s check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>El Al is an airline that requires passengers to check in at their counters regardless of luggage when returning to Israel from abroad.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is the destination for passengers returning from abroad.)\n##\n("entity"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are designated areas where passengers must check in for their flights.)\n##\n("entity"<|>FLIGHT DESTINATION<|>REQUIRED DOCUMENT<|>Flight destination refers to the location where passengers are traveling and requires necessary documents for check-in.)\n##\n("relationship"<|>EL AL<|>CHECK-IN COUNTERS<|>El Al requires passengers to use check-in counters for their flights<|>8)\n##\n("relationship"<|>CHECK-IN COUNTERS<|>ISRAEL<|>Passengers checking in at the counters are returning to Israel<|>5)\n##\n("relationship"<|>FLIGHT DESTINATION<|>EL AL<|>Passengers must have necessary documents according to their flight destination when checking in with El Al<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>SECURITY CHECK AREAS<|>SERVICE LOCATION<|>Designated areas where passengers must proceed for security checks before boarding their flights.)\n##\n("entity"<|>PASSENGERS<|>PASSENGER TYPE<|>Individuals traveling on flights who must check in at the counters regardless of luggage.)\n##\n("entity"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Necessary paperwork that passengers must have available according to their flight destination.)\n##\n("relationship"<|>PASSENGERS<|>CHECK-IN COUNTERS<|>Passengers must check in at the counters regardless of luggage<|>9)\n##\n("relationship"<|>SECURITY CHECK AREAS<|>CHECK-IN COUNTERS<|>Passengers must proceed to security check areas after checking in at the counters<|>6)\n##\n("relationship"<|>DOCUMENTS<|>PASSENGERS<|>Passengers must have necessary documents available for their flight<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:08,780 httpcore.http11 DEBUG send_request_headers.started request= -13:51:08,781 httpcore.http11 DEBUG send_request_headers.complete -13:51:08,781 httpcore.http11 DEBUG send_request_body.started request= -13:51:08,781 httpcore.http11 DEBUG send_request_body.complete -13:51:08,781 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:09,352 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'403'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994084'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_5dc885591bcbecfefa1b0fe600701d6d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf397814c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:09,352 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:09,353 httpcore.http11 DEBUG receive_response_body.started request= -13:51:09,353 httpcore.http11 DEBUG receive_response_body.complete -13:51:09,353 httpcore.http11 DEBUG response_closed.started -13:51:09,353 httpcore.http11 DEBUG response_closed.complete -13:51:09,353 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:09,353 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5779999999795109. input_tokens=30, output_tokens=1 -13:51:09,356 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon � Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE TAG<|>LABEL TYPE<|>A baggage tag is a label attached to luggage that provides information about the owner and destination of the baggage.)\n##\n("entity"<|>BAGGAGE CLAIMS DEPARTMENT<|>SERVICE LOCATION<|>The Baggage Claims Department is responsible for handling reports of damaged baggage and processing claims.)\n##\n("entity"<|>EL AL ISRAEL AIRLINES LTD.<|>AIRLINE<|>EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.)\n##\n("entity"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines.)\n##\n("entity"<|>DIGITAL CONTACT FORM<|>REQUIRED DOCUMENT<|>The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.)\n##\n("entity"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud is a store that specializes in baggage and outdoor equipment.)\n##\n("entity"<|>WE SHOES<|>SERVICE TYPE<|>WeShoes is a store that sells shoes and may also provide related services.)\n##\n("entity"<|>MEMSI TOURING<|>SERVICE TYPE<|>Memsi Touring is a service provider that may offer travel-related services, including baggage handling.)\n##\n("entity"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon is a service provider that offers pickup and delivery services for baggage.)\n##\n("entity"<|>SHIN TIK<|>SERVICE TYPE<|>Shin Tik is a service provider that may offer travel-related services, including baggage handling.)\n##\n("entity"<|>TREK MARKET<|>SERVICE TYPE<|>Trek Market is a service provider that may offer travel-related services, including baggage handling.)\n##\n("entity"<|>KIRYAT ONO<|>GEO<|>Kiryat Ono is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>RAMAT GAN<|>GEO<|>Ramat Gan is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>GEVATAIM<|>GEO<|>Gevataim is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>BAT YAM<|>GEO<|>Bat Yam is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>HOLON<|>GEO<|>Holon is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>PETACH TIKVA<|>GEO<|>Petach Tikva is a city in Israel where various stores and services related to baggage are located.)\n##\n("relationship"<|>BAGGAGE TAG<|>BAGGAGE CLAIMS DEPARTMENT<|>The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.<|>8)\n##\n("relationship"<|>BAGGAGE CLAIMS DEPARTMENT<|>EL AL ISRAEL AIRLINES LTD.<|>The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.<|>9)\n##\n("relationship"<|>EL AL ISRAEL AIRLINES LTD.<|>BEN GURION AIRPORT<|>EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.<|>9)\n##\n("relationship"<|>DIGITAL CONTACT FORM<|>BAGGAGE CLAIMS DEPARTMENT<|>The Digital Contact Form is used to submit claims to the Baggage Claims Department.<|>7)\n##\n("relationship"<|>MAKOR HAZIUD<|>BAGGAGE CLAIMS DEPARTMENT<|>Makor Haziud may provide equipment that is relevant for baggage handling and claims.<|>4)\n##\n("relationship"<|>WE SHOES<|>BAGGAGE CLAIMS DEPARTMENT<|>WeShoes may provide services related to baggage handling and claims.<|>4)\n##\n("relationship"<|>MEMSI TOURING<|>BAGGAGE CLAIMS DEPARTMENT<|>Memsi Touring may offer services that assist with baggage handling and claims.<|>4)\n##\n("relationship"<|>ARTY RIMON<|>BAGGAGE CLAIMS DEPARTMENT<|>ARTY Rimon provides pickup and delivery services that may relate to baggage claims.<|>5)\n##\n("relationship"<|>SHIN TIK<|>BAGGAGE CLAIMS DEPARTMENT<|>Shin Tik may provide services that assist with baggage handling and claims.<|>4)\n##\n("relationship"<|>TREK MARKET<|>BAGGAGE CLAIMS DEPARTMENT<|>Trek Market may offer services that assist with baggage handling and claims.<|>4)\n##\n("relationship"<|>KIRYAT ONO<|>BAGGAGE CLAIMS DEPARTMENT<|>Kiryat Ono has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>RAMAT GAN<|>BAGGAGE CLAIMS DEPARTMENT<|>Ramat Gan has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>GEVATAIM<|>BAGGAGE CLAIMS DEPARTMENT<|>Gevataim has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>BAT YAM<|>BAGGAGE CLAIMS DEPARTMENT<|>Bat Yam has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>HOLON<|>BAGGAGE CLAIMS DEPARTMENT<|>Holon has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>PETACH TIKVA<|>BAGGAGE CLAIMS DEPARTMENT<|>Petach Tikva has stores that may assist with baggage claims and services.<|>3)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:09,357 httpcore.http11 DEBUG send_request_headers.started request= -13:51:09,357 httpcore.http11 DEBUG send_request_headers.complete -13:51:09,358 httpcore.http11 DEBUG send_request_body.started request= -13:51:09,358 httpcore.http11 DEBUG send_request_body.complete -13:51:09,358 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:09,425 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'17961'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9975115'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'149ms'), (b'x-request-id', b'req_f965a7fc44878ab4a706b54f5b5b98d4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=mSC.1.Cw0cg3ioCL.RlGJ1sdJFerGXTo0DdI7CuDCJ4-1731930669-1.0.1.1-OmISA7IcNJeTX6E3T_jR8uYOVKmHXNtZuSBE.7REqB_HckS9ucZOrH5reQM4mkX1o6YA2bbgufavuglzByaRzQ; path=/; expires=Mon, 18-Nov-24 12:21:09 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=NAxylw7NzSOnO.8i9RlHunnZ5AJVHFXg2RU1FGKT41E-1731930669678-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8d8897d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:09,425 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:09,425 httpcore.http11 DEBUG receive_response_body.started request= -13:51:09,426 httpcore.http11 DEBUG receive_response_body.complete -13:51:09,426 httpcore.http11 DEBUG response_closed.started -13:51:09,426 httpcore.http11 DEBUG response_closed.complete -13:51:09,426 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:09,427 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 18.79700000002049. input_tokens=2453, output_tokens=1215 -13:51:09,431 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>AIRLINE<|>Baggage Type<|>Refers to the various airlines that operate flights and their associated baggage policies.)\n##\n("entity"<|>PASSENGER<|>Passenger Type<|>Refers to individuals who travel on flights and are subject to airline policies regarding baggage and services.)\n##\n("entity"<|>ADDITIONAL SERVICES<|>Service Type<|>Refers to extra services that can be ordered by passengers, which may incur additional charges.)\n##\n("relationship"<|>PASSENGER<|>AIRLINE<|>Passengers are subject to the policies of the airline regarding baggage and additional services<|>7)\n##\n("relationship"<|>PASSENGER<|>ADDITIONAL SERVICES<|>Passengers can order additional services, which may incur charges<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>CANCELLATION<|>Policy<|>Refers to the policy regarding the cancellation of additional services purchased by passengers.)\n##\n("entity"<|>CHANGE<|>Policy<|>Refers to the policy regarding changes made to additional services purchased by passengers.)\n##\n("entity"<|>REFUND<|>Policy<|>Refers to the policy stating that no refund will be given for cancellation or change of additional services.)\n##\n("entity"<|>FULL CHARGE<|>Fee Structure<|>Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.)\n##\n("relationship"<|>CANCELLATION<|>REFUND<|>The cancellation policy states that no refund will be given<|>8)\n##\n("relationship"<|>CHANGE<|>REFUND<|>The change policy states that no refund will be given<|>8)\n##\n("relationship"<|>ADDITIONAL SERVICES<|>FULL CHARGE<|>Ordering additional services will result in a full charge to the passenger<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:09,432 httpcore.http11 DEBUG send_request_headers.started request= -13:51:09,432 httpcore.http11 DEBUG send_request_headers.complete -13:51:09,432 httpcore.http11 DEBUG send_request_body.started request= -13:51:09,432 httpcore.http11 DEBUG send_request_body.complete -13:51:09,432 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:09,954 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:10 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'338'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997576'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'14ms'), (b'x-request-id', b'req_1c5f4b29d571cbe92eb6bbaf491c490d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'cf-cache-status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf3d8ede7d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:09,954 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:09,955 httpcore.http11 DEBUG receive_response_body.started request= -13:51:09,955 httpcore.http11 DEBUG receive_response_body.complete -13:51:09,955 httpcore.http11 DEBUG response_closed.started -13:51:09,955 httpcore.http11 DEBUG response_closed.complete -13:51:09,955 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:09,956 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5309999999590218. input_tokens=30, output_tokens=1 -13:51:09,959 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: in the area designated for the passenger\'s feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of dogs on its flights.)\n##\n("entity"<|>DOG<|>SPECIAL ITEM<|>A dog that may be transported by passengers under certain conditions and regulations.)\n##\n("entity"<|>PASSENGER<|>PASSENGER TYPE<|>A person traveling on the airline who may bring a dog on board under specific conditions.)\n##\n("relationship"<|>PASSENGER<|>DOG<|>The passenger is responsible for the dog\'s behavior and must meet conditions for its transport<|>7)\n##\n("relationship"<|>EL AL<|>DOG<|>EL AL has policies that govern the transport of dogs, including conditions under which they may be refused<|>8)\n##\n("relationship"<|>EL AL<|>PASSENGER<|>EL AL has specific requirements that passengers must meet to transport a dog<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>HOLD<|>CARGO<|>The hold is the area of the aircraft where animals, including dogs, may be transported if they cannot be accommodated in the passenger cabin.)\n##\n("entity"<|>SAFETY AND SECURITY REGULATIONS<|>POLICY<|>Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.)\n##\n("entity"<|>FORMS<|>REQUIRED DOCUMENT<|>Necessary documentation that passengers must provide to transport a dog on EL AL flights.)\n##\n("entity"<|>DISTURBANCE<|>RESTRICTION<|>A situation where the dog\'s behavior causes disruption on the aircraft, leading to potential refusal of transport.)\n##\n("entity"<|>DIRECT THREAT<|>RESTRICTION<|>A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.)\n##\n("relationship"<|>PASSENGER<|>HOLD<|>If the dog cannot be transported in the passenger cabin, it may be placed in the hold<|>6)\n##\n("relationship"<|>EL AL<|>SAFETY AND SECURITY REGULATIONS<|>EL AL must adhere to safety and security regulations when transporting dogs<|>9)\n##\n("relationship"<|>PASSENGER<|>FORMS<|>Passengers must provide the required forms to transport a dog on EL AL flights<|>8)\n##\n("relationship"<|>DOG<|>DISTURBANCE<|>A dog\'s behavior may lead to a disturbance, affecting its ability to be transported<|>7)\n##\n("relationship"<|>DOG<|>DIRECT THREAT<|>If a dog is deemed a direct threat, it may be refused transport by EL AL<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:09,960 httpcore.http11 DEBUG send_request_headers.started request= -13:51:09,960 httpcore.http11 DEBUG send_request_headers.complete -13:51:09,960 httpcore.http11 DEBUG send_request_body.started request= -13:51:09,961 httpcore.http11 DEBUG send_request_body.complete -13:51:09,961 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:10,149 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:10 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'6366'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992894'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'42ms'), (b'x-request-id', b'req_3ada3a727dfd7035553aac2feb79cb74'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf190a6b7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:10,150 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:10,150 httpcore.http11 DEBUG receive_response_body.started request= -13:51:10,150 httpcore.http11 DEBUG receive_response_body.complete -13:51:10,150 httpcore.http11 DEBUG response_closed.started -13:51:10,150 httpcore.http11 DEBUG response_closed.complete -13:51:10,150 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:10,151 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 6.563000000023749. input_tokens=34, output_tokens=463 -13:51:10,154 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery\'s watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials such as hairspray are not allowed to be stored together with other items in baggage.)\n##\n("entity"<|>SPARE LITHIUM BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n("entity"<|>ELECTRONIC DEVICES<|>PROHIBITED ITEM<|>Electronic devices with removable lithium batteries must have the battery taken aboard the aircraft cabin, while the device can be checked.)\n##\n("entity"<|>BATTERIES<|>RESTRICTED ITEM<|>Batteries must be protected from damage and short circuits and can be transported in the aircraft hold if they are not lithium-based.)\n##\n("entity"<|>WATT-HOURS<|>MEASUREMENT UNIT<|>Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).)\n##\n("entity"<|>LITHIUM-ION BATTERIES<|>RESTRICTED ITEM<|>Larger lithium-ion batteries (100-160 watt-hours) are limited to two batteries per passenger and must comply with specific regulations.)\n##\n("entity"<|>BATTERY-POWERED DEVICES<|>SPECIAL ITEM<|>Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.)\n##\n("entity"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids on flights.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific regulations regarding battery-powered mobility aids.)\n##\n("relationship"<|>SPARE LITHIUM BATTERIES<|>ELECTRONIC DEVICES<|>Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.<|>8)\n##\n("relationship"<|>BATTERIES<|>WATT-HOURS<|>The watt-hours rating of a battery is determined by its voltage and ampere hours, which is essential for understanding battery capacity.<|>7)\n##\n("relationship"<|>LITHIUM-ION BATTERIES<|>SPARE LITHIUM BATTERIES<|>Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.<|>6)\n##\n("relationship"<|>BATTERY-POWERED DEVICES<|>IATA REGULATIONS<|>Battery-powered devices must comply with IATA regulations for safe transport on flights.<|>5)\n##\n("relationship"<|>BATTERY-POWERED DEVICES<|>EL AL<|>EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:10,155 httpcore.http11 DEBUG send_request_headers.started request= -13:51:10,155 httpcore.http11 DEBUG send_request_headers.complete -13:51:10,155 httpcore.http11 DEBUG send_request_body.started request= -13:51:10,155 httpcore.http11 DEBUG send_request_body.complete -13:51:10,155 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:10,524 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:10 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'375'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997302'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'16ms'), (b'x-request-id', b'req_5995007af210f14f226d0acd721bcf7c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf40daca7d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:10,524 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:10,524 httpcore.http11 DEBUG receive_response_body.started request= -13:51:10,524 httpcore.http11 DEBUG receive_response_body.complete -13:51:10,524 httpcore.http11 DEBUG response_closed.started -13:51:10,525 httpcore.http11 DEBUG response_closed.complete -13:51:10,525 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:10,525 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5630000000237487. input_tokens=30, output_tokens=1 -13:51:10,528 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for traveling with battery-powered mobility aids and hazardous materials.)\n##\n("entity"<|>BATTERY-POWERED MOBILITY AIDS<|>SPECIAL ITEM<|>Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.)\n##\n("entity"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights.)\n##\n("entity"<|>FLIGHT-APPROVED BATTERIES<|>RESTRICTED ITEM<|>Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.)\n##\n("entity"<|>HAZARDOUS MATERIALS<|>PROHIBITED ITEM<|>Hazardous materials include items like dry ice that require special handling and declaration when traveling.)\n##\n("entity"<|>DECLARATION FORM<|>REQUIRED DOCUMENT<|>A Declaration Form is required for traveling with hazardous materials on EL AL flights.)\n##\n("relationship"<|>EL AL<|>BATTERY-POWERED MOBILITY AIDS<|>EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights<|>8)\n##\n("relationship"<|>BATTERY-POWERED MOBILITY AIDS<|>IATA REGULATIONS<|>Battery-powered mobility aids must comply with IATA regulations for air travel<|>7)\n##\n("relationship"<|>EL AL<|>HAZARDOUS MATERIALS<|>EL AL requires advance notice and a Declaration Form for traveling with hazardous materials<|>8)\n##\n("relationship"<|>HAZARDOUS MATERIALS<|>DECLARATION FORM<|>A Declaration Form is necessary for traveling with hazardous materials on EL AL flights<|>9)\n##\n("relationship"<|>FLIGHT-APPROVED BATTERIES<|>BATTERY-POWERED MOBILITY AIDS<|>Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:10,529 httpcore.http11 DEBUG send_request_headers.started request= -13:51:10,529 httpcore.http11 DEBUG send_request_headers.complete -13:51:10,529 httpcore.http11 DEBUG send_request_body.started request= -13:51:10,529 httpcore.http11 DEBUG send_request_body.complete -13:51:10,529 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:10,591 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:10 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7823'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992906'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'42ms'), (b'x-request-id', b'req_b1864d08bd415571074af050ee8eb878'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf12dc22c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:10,592 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:10,592 httpcore.http11 DEBUG receive_response_body.started request= -13:51:10,592 httpcore.http11 DEBUG receive_response_body.complete -13:51:10,592 httpcore.http11 DEBUG response_closed.started -13:51:10,592 httpcore.http11 DEBUG response_closed.complete -13:51:10,592 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:10,593 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.0. input_tokens=34, output_tokens=579 -13:51:10,597 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n("entity"<|>WHISKEY<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>GELS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>COSMETICS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>BABY FOOD<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>PRESCRIPTION MEDICATIONS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Country from which flights may have specific conditions regarding carrying liquids in carry-on bags.)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>WHISKEY<|>Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>GELS<|>Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>COSMETICS<|>Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>BABY FOOD<|>Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>PRESCRIPTION MEDICATIONS<|>Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>The restrictions on liquids in carry-on bags apply to flights departing from Israel.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>AEROSOLS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>CREAMS<|>SPECIAL ITEM<|>A type of liquid that may be carried in carry-on bags, subject to restrictions.)\n##\n("entity"<|>SECURITY CHECKPOINT<|>SERVICE LOCATION<|>Location where liquids that exceed the permitted amount will be discarded.)\n##\n("entity"<|>CARRY-ON BAGS<|>BAGGAGE TYPE<|>Bags that passengers are allowed to take on board the aircraft, subject to restrictions on liquids.)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>AEROSOLS<|>Aerosols are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>CREAMS<|>Creams are a type of liquid that is subject to the restrictions on liquids in carry-on bags.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>CARRY-ON BAGS<|>Restrictions on liquids apply specifically to items carried in carry-on bags.<|>9)\n##\n("relationship"<|>SECURITY CHECKPOINT<|>LIQUIDS IN CARRY-ON BAGS<|>At the security checkpoint, liquids that exceed the permitted amount will be discarded.<|>9)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:10,598 httpcore.http11 DEBUG send_request_headers.started request= -13:51:10,598 httpcore.http11 DEBUG send_request_headers.complete -13:51:10,598 httpcore.http11 DEBUG send_request_body.started request= -13:51:10,599 httpcore.http11 DEBUG send_request_body.complete -13:51:10,599 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:10,730 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:10 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9690'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993760'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'37ms'), (b'x-request-id', b'req_38e2bc8dba1e12232e8552f156b9780c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf080f3dc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:10,730 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:10,730 httpcore.http11 DEBUG receive_response_body.started request= -13:51:10,731 httpcore.http11 DEBUG receive_response_body.complete -13:51:10,731 httpcore.http11 DEBUG response_closed.started -13:51:10,731 httpcore.http11 DEBUG response_closed.complete -13:51:10,731 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:10,732 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 9.85999999998603. input_tokens=2235, output_tokens=686 -13:51:10,735 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGS<|>Baggage Type<|>Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.)\n##\n("entity"<|>16 KG<|>Weight<|>16 kg is the maximum weight allowed for one bag as per airline policy.)\n##\n("entity"<|>20 KG<|>Weight<|>20 kg is the combined maximum weight limit for all bags as per airline policy.)\n##\n("entity"<|>CARRY-ON BAGS<|>Baggage Type<|>Carry-on bags are personal items that passengers can take on board the aircraft, subject to weight and size restrictions.)\n##\n("entity"<|>MEDICATIONS<|>Valuable Item<|>Medications are essential items that passengers are advised to keep accessible during flights.)\n##\n("entity"<|>PASSPORTS<|>Valuable Item<|>Passports are required documents for international travel and should be easily accessible during flights.)\n##\n("entity"<|>VALUABLES<|>Valuable Item<|>Valuables refer to personal items of significant worth that should be kept accessible during flights.)\n##\n("entity"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as phones and laptops that passengers are advised to keep accessible during flights.)\n##\n("relationship"<|>BAGS<|>16 KG<|>The weight limit for one bag is set at 16 kg as per airline policy<|>8)\n##\n("relationship"<|>BAGS<|>20 KG<|>The combined weight limit for all bags is set at 20 kg as per airline policy<|>8)\n##\n("relationship"<|>CARRY-ON BAGS<|>BAGS<|>Carry-on bags are a type of baggage that passengers can take on board<|>9)\n##\n("relationship"<|>MEDICATIONS<|>CARRY-ON BAGS<|>Medications should be kept in carry-on bags for easy access during the flight<|>7)\n##\n("relationship"<|>PASSPORTS<|>CARRY-ON BAGS<|>Passports should be kept in carry-on bags for easy access during the flight<|>7)\n##\n("relationship"<|>VALUABLES<|>CARRY-ON BAGS<|>Valuables should be kept in carry-on bags for easy access during the flight<|>7)\n##\n("relationship"<|>ELECTRONIC DEVICES<|>CARRY-ON BAGS<|>Electronic devices should be kept in carry-on bags for easy access during the flight<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>MAXIMUM WEIGHT<|>Weight<|>Maximum weight refers to the highest allowable weight for baggage as specified by the airline, which is 16 kg for one bag and 20 kg combined.)\n##\n("entity"<|>CHECKED BAGS<|>Baggage Type<|>Checked bags are items that are not taken on board the aircraft but are stored in the plane\'s cargo hold.)\n##\n("entity"<|>PLANE\'S BELLY<|>Service Location<|>The plane\'s belly refers to the cargo hold of the aircraft where checked bags are stored.)\n##\n("entity"<|>NO CHARGE<|>Fee Structure<|>No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.)\n##\n("entity"<|>RECOMMENDATION<|>Policy<|>A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.)\n##\n("relationship"<|>CARRY-ON BAGS<|>CHECKED BAGS<|>If no free space is available, carry-on bags will be checked to the plane\'s belly<|>6)\n##\n("relationship"<|>MAXIMUM WEIGHT<|>16 KG<|>The maximum weight for one bag is defined as 16 kg<|>8)\n##\n("relationship"<|>MAXIMUM WEIGHT<|>20 KG<|>The maximum combined weight for all bags is defined as 20 kg<|>8)\n##\n("relationship"<|>CHECKED BAGS<|>PLANE\'S BELLY<|>Checked bags are stored in the plane\'s belly during the flight<|>9)\n##\n("relationship"<|>NO CHARGE<|>CHECKED BAGS<|>Checked bags will incur no charge if carry-on bags are checked due to lack of space<|>7)\n##\n("relationship"<|>RECOMMENDATION<|>CARRY-ON BAGS<|>The recommendation advises passengers to remove certain items from carry-on bags for easy access<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:10,736 httpcore.http11 DEBUG send_request_headers.started request= -13:51:10,736 httpcore.http11 DEBUG send_request_headers.complete -13:51:10,736 httpcore.http11 DEBUG send_request_body.started request= -13:51:10,737 httpcore.http11 DEBUG send_request_body.complete -13:51:10,737 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:10,743 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:10 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12436'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993534'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_137a64fa4c38f69160b4fcd29519dc2f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bef6ff97c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:10,743 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:10,743 httpcore.http11 DEBUG receive_response_body.started request= -13:51:10,744 httpcore.http11 DEBUG receive_response_body.complete -13:51:10,744 httpcore.http11 DEBUG response_closed.started -13:51:10,744 httpcore.http11 DEBUG response_closed.complete -13:51:10,744 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:10,745 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 12.60899999999674. input_tokens=2453, output_tokens=974 -13:51:10,748 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries� terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.� Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>LITHIUM-ION BATTERIES<|>DANGEROUS GOOD<|>Lithium-ion batteries are rechargeable batteries commonly used in portable electronic devices, with specific size and watt-hour limitations for air travel.)\n##\n("entity"<|>LITHIUM METAL BATTERIES<|>DANGEROUS GOOD<|>Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.)\n##\n("entity"<|>NON-SPILLABLE WET BATTERIES<|>DANGEROUS GOOD<|>Non-spillable wet batteries are limited to 12 volts and 100 watt-hours, designed to prevent leakage of electrolyte.)\n##\n("entity"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage and must be protected when carried in the cabin.)\n##\n("entity"<|>ELECTRONIC DEVICES<|>SPECIAL ITEM<|>Electronic devices with lithium batteries that cannot be removed must be stored in the aircraft hold under specific conditions.)\n##\n("entity"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are considered lithium batteries and are prohibited in checked baggage.)\n##\n("entity"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have separate exceptions regarding the transport of batteries.)\n##\n("entity"<|>CARRY-ON<|>ALLOWANCE<|>Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.)\n##\n("relationship"<|>LITHIUM-ION BATTERIES<|>CARRY-ON<|>Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits<|>8)\n##\n("relationship"<|>LITHIUM METAL BATTERIES<|>CARRY-ON<|>Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions<|>8)\n##\n("relationship"<|>NON-SPILLABLE WET BATTERIES<|>CARRY-ON<|>Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits<|>8)\n##\n("relationship"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction<|>9)\n##\n("relationship"<|>ELECTRONIC DEVICES<|>CARRY-ON<|>Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement<|>7)\n##\n("relationship"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are classified as lithium batteries and are prohibited in checked baggage<|>9)\n##\n("relationship"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have specific exemptions regarding battery transport, differentiating them from other items<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:10,748 httpcore.http11 DEBUG send_request_headers.started request= -13:51:10,749 httpcore.http11 DEBUG send_request_headers.complete -13:51:10,749 httpcore.http11 DEBUG send_request_body.started request= -13:51:10,749 httpcore.http11 DEBUG send_request_body.complete -13:51:10,749 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:11,106 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'340'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996991'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'18ms'), (b'x-request-id', b'req_0489a5297393da89c068f4d520be7521'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf44d9cdc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:11,106 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:11,106 httpcore.http11 DEBUG receive_response_body.started request= -13:51:11,106 httpcore.http11 DEBUG receive_response_body.complete -13:51:11,106 httpcore.http11 DEBUG response_closed.started -13:51:11,106 httpcore.http11 DEBUG response_closed.complete -13:51:11,107 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:11,107 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5150000000139698. input_tokens=30, output_tokens=1 -13:51:11,110 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n\u200b\u200bDo not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier\'s website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven\'t checked in yet, you can add baggage via Manage my booking.\nIf you\'ve already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides baggage check-in services and has specific baggage policies for different travel classes.)\n##\n("entity"<|>PREMIUM CLASS<|>TRAVEL CLASS<|>Premium class tickets allow passengers to check up to two pieces of baggage weighing up to 23 kg each.)\n##\n("entity"<|>BUSINESS CLASS<|>TRAVEL CLASS<|>Business class tickets allow passengers to check up to two pieces of baggage weighing up to 32 kg each.)\n##\n("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is checked in at the airport and transported in the cargo hold of the aircraft.)\n##\n("entity"<|>CARRY-ON ALLOWANCE<|>ALLOWANCE<|>Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.)\n##\n("entity"<|>23 KG<|>WEIGHT<|>23 kg is the maximum weight allowed for each piece of checked baggage in premium class.)\n##\n("entity"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight allowed for each piece of checked baggage in business class.)\n##\n("entity"<|>ADDITIONAL HANDLING FEE<|>FEE STRUCTURE<|>An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.)\n##\n("entity"<|>EXCESS BAGGAGE<|>RESTRICTION<|>Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.)\n##\n("entity"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance is determined by the ticket type and specifies how much baggage a passenger can check without incurring extra fees.)\n##\n("entity"<|>CODE-SHARE FLIGHTS<|>ROUTE TYPE<|>Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.)\n##\n("entity"<|>MANAGE MY BOOKING<|>SERVICE TYPE<|>Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.)\n##\n("entity"<|>CHECK-IN PROCESS<|>SERVICE TYPE<|>The check-in process is the procedure passengers go through to confirm their presence on a flight and check in their baggage.)\n##\n("entity"<|>FLIGHT SEGMENT<|>TIME PERIOD<|>A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.)\n##\n("relationship"<|>EL AL<|>PREMIUM CLASS<|>EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each<|>8)\n##\n("relationship"<|>EL AL<|>BUSINESS CLASS<|>EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each<|>8)\n##\n("relationship"<|>CHECKED BAGGAGE<|>PREMIUM CLASS<|>Premium class includes checked baggage allowances<|>7)\n##\n("relationship"<|>CHECKED BAGGAGE<|>BUSINESS CLASS<|>Business class includes checked baggage allowances<|>7)\n##\n("relationship"<|>ADDITIONAL HANDLING FEE<|>EL AL<|>EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center<|>6)\n##\n("relationship"<|>EXCESS BAGGAGE<|>CHECKED BAGGAGE<|>Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees<|>7)\n##\n("relationship"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance determines how much checked baggage a passenger can bring<|>8)\n##\n("relationship"<|>CODE-SHARE FLIGHTS<|>CHECKED BAGGAGE<|>Baggage procedures may vary on code-share flights depending on the marketing carrier<|>5)\n##\n("relationship"<|>MANAGE MY BOOKING<|>EL AL<|>Passengers can add baggage via the Manage my booking service provided by EL AL<|>7)\n##\n("relationship"<|>CHECK-IN PROCESS<|>EL AL<|>Passengers can add baggage during the check-in process for their EL AL flight<|>7)\n##\n("relationship"<|>FLIGHT SEGMENT<|>BAGGAGE ALLOWANCE<|>Baggage allowance is specified for each flight segment on the ticket<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:11,111 httpcore.http11 DEBUG send_request_headers.started request= -13:51:11,111 httpcore.http11 DEBUG send_request_headers.complete -13:51:11,111 httpcore.http11 DEBUG send_request_body.started request= -13:51:11,111 httpcore.http11 DEBUG send_request_body.complete -13:51:11,111 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:11,353 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'429'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997057'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'17ms'), (b'x-request-id', b'req_fcb4d5c7f639e696fbc5c37aa1b843b2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf45b992c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:11,353 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:11,353 httpcore.http11 DEBUG receive_response_body.started request= -13:51:11,354 httpcore.http11 DEBUG receive_response_body.complete -13:51:11,354 httpcore.http11 DEBUG response_closed.started -13:51:11,354 httpcore.http11 DEBUG response_closed.complete -13:51:11,354 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:11,354 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6099999999860302. input_tokens=30, output_tokens=1 -13:51:11,357 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al\'s service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane\'s belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven\'t checked in online should use El Al\'s check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAG<|>Baggage Type<|>A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.)\n##\n("entity"<|>PERSONAL BAG<|>Baggage Type<|>A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.)\n##\n("entity"<|>CARRY-ON BAG<|>Baggage Type<|>A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.)\n##\n("entity"<|>EL AL<|>Airline<|>El Al is an airline that has specific baggage policies regarding carry-on and personal bags.)\n##\n("entity"<|>56 CM<|>Linear Dimension<|>The maximum length for a carry-on bag on El Al flights is 56 cm.)\n##\n("entity"<|>45 CM<|>Linear Dimension<|>The maximum width for a carry-on bag on El Al flights is 45 cm.)\n##\n("entity"<|>25 CM<|>Linear Dimension<|>The maximum depth for a carry-on bag on El Al flights is 25 cm.)\n##\n("entity"<|>18X38X30 CM<|>Linear Dimension<|>The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.)\n##\n("entity"<|>115 CM<|>Linear Dimension<|>The total maximum dimension for a carry-on bag on El Al flights is 115 cm.)\n##\n("entity"<|>20 KG<|>Weight Category<|>The combined weight limit for bags is not to exceed 20 kg.)\n##\n("entity"<|>16 KG<|>Weight Category<|>The maximum weight limit for one bag is 16 kg.)\n##\n("entity"<|>DUTY-FREE ITEMS<|>Special Item<|>Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.)\n##\n("entity"<|>OVERSIZED ITEMS<|>Special Item<|>Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.)\n##\n("entity"<|>CHECK-IN COUNTER<|>Service Location<|>The check-in counter is where passengers can check in their luggage and obtain boarding passes.)\n##\n("entity"<|>EMERGENCY EXIT ROW<|>Cabin Section<|>The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.)\n##\n("entity"<|>SERVICE CENTER<|>Service Location<|>El Al\'s service center is where passengers can coordinate the transport of unusual items.)\n##\n("relationship"<|>CARRY-ON BAG<|>EL AL<|>El Al has specific policies regarding the dimensions and weight limits for carry-on bags<|>9)\n##\n("relationship"<|>PERSONAL BAG<|>EL AL<|>El Al allows passengers to bring a personal bag on board, subject to size restrictions<|>9)\n##\n("relationship"<|>BAG<|>CARRY-ON BAG<|>A carry-on bag is a type of bag that must meet specific weight and dimension limits<|>8)\n##\n("relationship"<|>BAG<|>PERSONAL BAG<|>A personal bag is a specific type of bag that passengers can bring on board<|>8)\n##\n("relationship"<|>CARRY-ON BAG<|>20 KG<|>The combined weight limit for carry-on bags is 20 kg<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>16 KG<|>The maximum weight limit for one carry-on bag is 16 kg<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>56 CM<|>The maximum length for a carry-on bag is 56 cm<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>45 CM<|>The maximum width for a carry-on bag is 45 cm<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>25 CM<|>The maximum depth for a carry-on bag is 25 cm<|>7)\n##\n("relationship"<|>PERSONAL BAG<|>18X38X30 CM<|>The maximum dimensions for a personal bag are 18x38x30 cm<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>115 CM<|>The total maximum dimension for a carry-on bag is 115 cm<|>7)\n##\n("relationship"<|>DUTY-FREE ITEMS<|>BAG<|>Duty-free items are included in the baggage allowance but do not count towards the limit<|>6)\n##\n("relationship"<|>OVERSIZED ITEMS<|>CARRY-ON BAG<|>Oversized items may require special arrangements for transport in the cabin<|>5)\n##\n("relationship"<|>CHECK-IN COUNTER<|>EL AL<|>Passengers must check in at El Al\'s check-in counters for their flights<|>8)\n##\n("relationship"<|>EMERGENCY EXIT ROW<|>CARRY-ON BAG<|>Passengers in the emergency exit row may store bags in overhead compartments<|>6)\n##\n("relationship"<|>SERVICE CENTER<|>OVERSIZED ITEMS<|>Passengers must contact the service center for approval to carry oversized items<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:11,358 httpcore.http11 DEBUG send_request_headers.started request= -13:51:11,358 httpcore.http11 DEBUG send_request_headers.complete -13:51:11,358 httpcore.http11 DEBUG send_request_body.started request= -13:51:11,358 httpcore.http11 DEBUG send_request_body.complete -13:51:11,358 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:11,465 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8007'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9991057'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'53ms'), (b'x-request-id', b'req_17e6d1e14b714780dbadda575dff59b8'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf171a15c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:11,465 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:11,465 httpcore.http11 DEBUG receive_response_body.started request= -13:51:11,466 httpcore.http11 DEBUG receive_response_body.complete -13:51:11,466 httpcore.http11 DEBUG response_closed.started -13:51:11,466 httpcore.http11 DEBUG response_closed.complete -13:51:11,466 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:11,467 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.202999999979511. input_tokens=34, output_tokens=568 -13:51:11,470 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets, including restrictions on certain breeds and weight limits.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from the weight limit for transporting pets in the cabin of the aircraft.)\n##\n("entity"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n##\n("entity"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the cabin or as checked baggage under specific conditions.)\n##\n("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to animals that must be transported in the luggage compartment of the aircraft in certain instances, such as large animals.)\n##\n("entity"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo refers to animals that may be transported by the Cargo Division, especially for extra-large animals or those flying unaccompanied.)\n##\n("entity"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg, except for service dogs.)\n##\n("relationship"<|>MINISTRY OF AGRICULTURE<|>EL AL<|>The Ministry of Agriculture oversees the transport of pets, which includes regulations that EL AL must follow for pet transportation<|>7)\n##\n("relationship"<|>EL AL<|>SERVICE DOG<|>EL AL allows service dogs to be transported without the weight limit that applies to other pets<|>8)\n##\n("relationship"<|>EL AL<|>DANGEROUS DOG<|>EL AL has a policy that prohibits the transportation of dangerous dogs as defined by Israeli law<|>9)\n##\n("relationship"<|>EL AL<|>PET<|>EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport<|>8)\n##\n("relationship"<|>PET<|>CHECKED BAGGAGE<|>Pets can be transported as checked baggage under certain conditions, such as size and weight<|>6)\n##\n("relationship"<|>PET<|>REGISTERED CARGO<|>Pets may also be transported as registered cargo, especially if they are large or unaccompanied<|>6)\n##\n("relationship"<|>9KG<|>PET<|>The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>BRAchycephalic DOG AND CAT BREEDS<|>PROHIBITED ITEM<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n##\n("entity"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture�s Veterinary Services is required to transport an animal to and from Israel.)\n##\n("entity"<|>ANIMAL TESTS<|>RESTRICTION<|>The authorization process for transporting pets may involve performing several animal tests.)\n##\n("entity"<|>CHECK-IN COUNTER<|>SERVICE LOCATION<|>The check-in counter is where pet owners must arrive with their pets for transport arrangements.)\n##\n("entity"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The Arrivals Hall is where pet owners will retrieve their animals after they have been transported as checked baggage.)\n##\n("entity"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL is responsible for transporting animals that are extra-large or flying unaccompanied.)\n##\n("relationship"<|>MINISTRY OF AGRICULTURE<|>AUTHORIZATION<|>The Ministry of Agriculture requires authorization for transporting animals, which is a necessary document for compliance<|>8)\n##\n("relationship"<|>MINISTRY OF AGRICULTURE<|>ANIMAL TESTS<|>The Ministry of Agriculture\'s authorization process may involve performing several animal tests<|>6)\n##\n("relationship"<|>EL AL<|>CHECK-IN COUNTER<|>Pet owners must arrive at the check-in counter with their pets for transport on EL AL<|>7)\n##\n("relationship"<|>EL AL<|>ARRIVALS HALL<|>Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL<|>7)\n##\n("relationship"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL handles the transport of animals that are extra-large or unaccompanied<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:11,471 httpcore.http11 DEBUG send_request_headers.started request= -13:51:11,472 httpcore.http11 DEBUG send_request_headers.complete -13:51:11,472 httpcore.http11 DEBUG send_request_body.started request= -13:51:11,472 httpcore.http11 DEBUG send_request_body.complete -13:51:11,472 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,74 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'420'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996394'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'21ms'), (b'x-request-id', b'req_3bb6db36f6f382bd7bdc114e6f78207d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf4a4925c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,75 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,75 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,75 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,75 httpcore.http11 DEBUG response_closed.started -13:51:12,75 httpcore.http11 DEBUG response_closed.complete -13:51:12,75 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,76 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6089999999967404. input_tokens=30, output_tokens=1 -13:51:12,79 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the personal belongings that travelers take with them on a journey, which can be delayed, damaged, or lost during transit.)\n##\n("entity"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board, providing assistance to travelers.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims for delayed or damaged baggage.)\n##\n("entity"<|>BAGGAGE CLAIM AREA<|>Service Location<|>The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.)\n##\n("entity"<|>DAMAGE REPORT<|>Required Document<|>A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.)\n##\n("entity"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a unique identifier used to check the status of a claim regarding lost baggage.)\n##\n("entity"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler.)\n##\n("entity"<|>CLAIMS DEPARTMENT<|>Service Type<|>The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.)\n##\n("relationship"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with issues related to their baggage, including delays and damages<|>8)\n##\n("relationship"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and addressing issues such as delays and damages<|>9)\n##\n("relationship"<|>BAGGAGE<|>BAGGAGE CLAIM AREA<|>Travelers report baggage issues in the baggage claim area, where they can receive assistance<|>7)\n##\n("relationship"<|>BAGGAGE SERVICE CENTER<|>CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Claims Department to process claims related to baggage<|>6)\n##\n("relationship"<|>BAGGAGE<|>DAMAGE REPORT<|>A damage report is issued when baggage is reported damaged, which is necessary for processing claims<|>8)\n##\n("relationship"<|>BAGGAGE<|>LOST BAGGAGE REPORT NUMBER<|>The lost baggage report number is used to track claims related to lost baggage<|>7)\n##\n("relationship"<|>BAGGAGE<|>COURIER SERVICE<|>The courier service delivers retrieved baggage to travelers after it has been delayed<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>DAMAGED BAGGAGE<|>Baggage Type<|>Damaged baggage refers to personal belongings that have been harmed during transit and require reporting to the airline for claims processing.)\n##\n("entity"<|>DELAYED BAGGAGE<|>Baggage Type<|>Delayed baggage refers to personal belongings that have not arrived with the traveler and must be reported to the airline for retrieval.)\n##\n("entity"<|>FORGOTTEN ITEM<|>Prohibited Item<|>A forgotten item is a personal belonging left on board an aircraft that may need to be reported to the airline for recovery.)\n##\n("entity"<|>BAGGAGE TAG<|>Label Type<|>A baggage tag is a label attached to luggage that contains information about the owner and flight details, essential for tracking baggage.)\n##\n("entity"<|>BAGGAGE ISSUES<|>Policy<|>Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.)\n##\n("entity"<|>CONTACT DETAILS<|>Required Document<|>Contact details provide information on how travelers can reach the Baggage Service Center for assistance with baggage issues.)\n##\n("entity"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status refers to the current state of a baggage claim, which can be checked using the lost baggage report number.)\n##\n("relationship"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center handles reports and claims related to delayed baggage<|>8)\n##\n("relationship"<|>DAMAGED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists travelers with claims for damaged baggage<|>8)\n##\n("relationship"<|>FORGOTTEN ITEM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center helps recover forgotten items left on board<|>7)\n##\n("relationship"<|>BAGGAGE TAG<|>BAGGAGE<|>The baggage tag is essential for identifying and tracking baggage<|>9)\n##\n("relationship"<|>BAGGAGE ISSUES<|>EL AL<|>EL AL has policies in place to address various baggage issues encountered by travelers<|>8)\n##\n("relationship"<|>CONTACT DETAILS<|>BAGGAGE SERVICE CENTER<|>Contact details provide necessary information for reaching the Baggage Service Center for assistance<|>7)\n##\n("relationship"<|>CLAIM STATUS<|>LOST BAGGAGE REPORT NUMBER<|>The claim status can be checked using the lost baggage report number provided by the airline<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,80 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,80 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,81 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,81 httpcore.http11 DEBUG send_request_body.complete -13:51:12,81 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,277 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12833'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993526'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_2903a1e7f616c0a0ba0b8f4c49b9be9f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47befdeccd7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,277 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,277 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,278 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,278 httpcore.http11 DEBUG response_closed.started -13:51:12,278 httpcore.http11 DEBUG response_closed.complete -13:51:12,278 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,279 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 13.03200000000652. input_tokens=2453, output_tokens=899 -13:51:12,282 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al\'s baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to the luggage that passengers check in at the airport, which is transported in the cargo hold of the aircraft.)\n##\n("entity"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the standard dimensions set by airlines, requiring special handling and potentially incurring additional fees.)\n##\n("entity"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit established by airlines, often resulting in extra charges.)\n##\n("entity"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>El Al is an airline known for its baggage policies, which are similar to those of Sundor.)\n##\n("entity"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service where passengers can view and modify their flight details, including baggage allowances.)\n##\n("entity"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger\'s reservation and includes details about baggage allowances.)\n##\n("entity"<|>DIMENSIONS<|>DIMENSION<|>Dimensions refer to the measurements of baggage, which determine whether it is classified as standard, oversized, or overweight.)\n##\n("entity"<|>WEIGHT<|>WEIGHT<|>Weight refers to the heaviness of baggage, which is a critical factor in determining if it is overweight.)\n##\n("relationship"<|>CHECKED BAGGAGE<|>SUNDOR<|>Sundor has specific policies regarding checked baggage allowances for passengers<|>7)\n##\n("relationship"<|>CHECKED BAGGAGE<|>EL AL<|>El Al\'s baggage policy is similar to that of Sundor, affecting checked baggage allowances<|>7)\n##\n("relationship"<|>OVERSIZED BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling oversized baggage<|>6)\n##\n("relationship"<|>OVERWEIGHT BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling overweight baggage<|>6)\n##\n("relationship"<|>MANAGE YOUR BOOKING<|>FLIGHT TICKET<|>The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances<|>8)\n##\n("relationship"<|>DIMENSIONS<|>OVERSIZED BAGGAGE<|>Oversized baggage is defined by exceeding authorized dimensions<|>9)\n##\n("relationship"<|>WEIGHT<|>OVERWEIGHT BAGGAGE<|>Overweight baggage is defined by exceeding the weight limit set by the airline<|>9)\n##\n("relationship"<|>OVERSIZED BAGGAGE<|>OVERWEIGHT BAGGAGE<|>Both oversized and overweight baggage require special handling and may incur additional fees<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,282 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,283 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,283 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,283 httpcore.http11 DEBUG send_request_body.complete -13:51:12,283 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,440 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9017'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992857'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'42ms'), (b'x-request-id', b'req_c5818a0fc1087c7de59b68fe096153d9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf16db29c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,440 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,440 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,440 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,440 httpcore.http11 DEBUG response_closed.started -13:51:12,440 httpcore.http11 DEBUG response_closed.complete -13:51:12,440 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,441 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 9.202999999979511. input_tokens=34, output_tokens=581 -13:51:12,444 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL�s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4�.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific baggage policies and allowances for passengers.)\n##\n("entity"<|>BAGGAGE ALLOWANCE<|>POLICY<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.)\n##\n("entity"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to the luggage that passengers check in before boarding the flight.)\n##\n("entity"<|>INFANT\'S CHECKED BAGGAGE<|>Baggage Type<|>Infant\'s checked baggage includes items like strollers and infant car seats that can be checked without additional charge.)\n##\n("entity"<|>LITE TICKETS<|>Travel Class<|>Lite tickets are a type of ticket that does not include any baggage allowance.)\n##\n("entity"<|>MAXIMUM SIZE<|>Restriction<|>The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.)\n##\n("entity"<|>EXCESS BAGGAGE RATES<|>Fee Structure<|>Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.)\n##\n("entity"<|>US DOLLARS<|>Currency<|>Prices for baggage fees are displayed in US dollars, although local currency may be required at some airports.)\n##\n("entity"<|>GOVERNMENT SERVICE TAX<|>Policy<|>A government service tax will be collected for air travel for flights originating in India.)\n##\n("entity"<|>CODESHARE FLIGHTS<|>Route Type<|>Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.)\n##\n("entity"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division handles excess baggage and special requests for passengers traveling with more than five pieces of checked baggage.)\n##\n("entity"<|>LOCAL CURRENCY<|>Currency<|>At some airports, payment for baggage fees is only allowed in local currency according to the conversion rate on the date of payment.)\n##\n("relationship"<|>EL AL<|>BAGGAGE ALLOWANCE<|>EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.<|>8)\n##\n("relationship"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance includes provisions for checked baggage that passengers can take on flights.<|>7)\n##\n("relationship"<|>CHECKED BAGGAGE<|>MAXIMUM SIZE<|>The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.<|>9)\n##\n("relationship"<|>INFANT\'S CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Infant\'s checked baggage is a specific category of checked baggage that includes items for infants.<|>8)\n##\n("relationship"<|>LITE TICKETS<|>BAGGAGE ALLOWANCE<|>Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.<|>6)\n##\n("relationship"<|>EXCESS BAGGAGE RATES<|>BAGGAGE ALLOWANCE<|>Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.<|>7)\n##\n("relationship"<|>US DOLLARS<|>EXCESS BAGGAGE RATES<|>Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.<|>5)\n##\n("relationship"<|>GOVERNMENT SERVICE TAX<|>EL AL<|>The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.<|>4)\n##\n("relationship"<|>CODESHARE FLIGHTS<|>EL AL<|>The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.<|>5)\n##\n("relationship"<|>EL AL CARGO DIVISION<|>CHECKED BAGGAGE<|>The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.<|>6)\n##\n("relationship"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE RATES<|>Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,445 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,445 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,445 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,445 httpcore.http11 DEBUG send_request_body.complete -13:51:12,445 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,506 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'17156'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993503'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'38ms'), (b'x-request-id', b'req_c5014ac1d693529ba8dd56ff371cc7fa'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bee4688ac227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,506 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,506 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,507 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,507 httpcore.http11 DEBUG response_closed.started -13:51:12,507 httpcore.http11 DEBUG response_closed.complete -13:51:12,507 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,508 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 17.32799999997951. input_tokens=2454, output_tokens=1207 -13:51:12,512 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n("entity"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat to maximize cabin space.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights with specific carry-on baggage policies.)\n##\n("entity"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights with specific carry-on baggage policies.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n("entity"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status affects eligibility for carry-on baggage allowances.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n("relationship"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat<|>8)\n##\n("relationship"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights<|>7)\n##\n("relationship"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights<|>7)\n##\n("relationship"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n("relationship"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n("relationship"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances<|>6)\n##\n("relationship"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Membership in the Matmid Frequent Flyer Club affects carry-on baggage eligibility<|>5)\n##\n("relationship"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a key factor in determining the eligibility of carry-on baggage<|>8)\n##\n("relationship"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are a key factor in determining the eligibility of carry-on baggage<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED LUGGAGE<|>Baggage Type<|>Checked luggage refers to bags that are transported in the aircraft\'s cargo hold rather than in the passenger cabin.)\n##\n("entity"<|>TROLLEY<|>Baggage Type<|>A trolley is a type of carry-on bag that can be stored in the overhead compartments of an aircraft.)\n##\n("entity"<|>FLIGHT TICKET TERMS<|>Policy<|>Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.)\n##\n("entity"<|>BOOKING MANAGEMENT<|>Service Location<|>Booking management refers to the section of the airline\'s website where passengers can manage their flight bookings and check baggage policies.)\n##\n("entity"<|>NORTH AMERICA<|>GEO<|>North America is a region where specific carry-on baggage policies apply for flights operated by the airline.)\n##\n("entity"<|>MAXIMUM DIMENSIONS<|>Dimension<|>Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.)\n##\n("entity"<|>MAXIMUM WEIGHT<|>Weight<|>Maximum weight refers to the heaviest allowable weight for carry-on bags and personal bags for boarding.)\n##\n("relationship"<|>CHECKED LUGGAGE<|>CARRY-ON BAGGAGE<|>Checked luggage is different from carry-on baggage, which is allowed in the passenger cabin<|>7)\n##\n("relationship"<|>TROLLEY<|>CARRY-ON BAGGAGE<|>A trolley is a specific type of carry-on baggage that can be stored in overhead compartments<|>8)\n##\n("relationship"<|>FLIGHT TICKET TERMS<|>CARRY-ON BAGGAGE<|>Flight ticket terms provide details on the carry-on baggage policies applicable to passengers<|>6)\n##\n("relationship"<|>BOOKING MANAGEMENT<|>CARRY-ON BAGGAGE<|>Booking management allows passengers to check their carry-on baggage allowances and policies<|>6)\n##\n("relationship"<|>NORTH AMERICA<|>CARRY-ON BAGGAGE<|>Specific carry-on baggage policies apply to flights from/to North America<|>5)\n##\n("relationship"<|>MAXIMUM DIMENSIONS<|>CARRY-ON BAGGAGE<|>Maximum dimensions are critical for determining what carry-on baggage is allowed<|>8)\n##\n("relationship"<|>MAXIMUM WEIGHT<|>CARRY-ON BAGGAGE<|>Maximum weight is critical for determining what carry-on baggage is allowed<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,513 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,513 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,513 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,513 httpcore.http11 DEBUG send_request_body.complete -13:51:12,513 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,588 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'6620'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992496'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'45ms'), (b'x-request-id', b'req_8db66f9f4f7a0fe0fc3af457f52e53fc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf26cca57da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,588 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,588 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,589 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,589 httpcore.http11 DEBUG response_closed.started -13:51:12,589 httpcore.http11 DEBUG response_closed.complete -13:51:12,589 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,590 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 6.796999999962281. input_tokens=34, output_tokens=483 -13:51:12,592 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft.)\n##\n("entity"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may contain batteries that are classified as dangerous goods and must be handled according to airline regulations.)\n##\n("entity"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may include batteries and other components that are classified as dangerous goods.)\n##\n("entity"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their dangerous nature.)\n##\n("entity"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosive substances like acids and wet cell batteries are prohibited on aircraft.)\n##\n("entity"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are prohibited on aircraft.)\n##\n("entity"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to safety concerns.)\n##\n("entity"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are prohibited on aircraft for safety reasons.)\n##\n("entity"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can harm people or the environment.)\n##\n("entity"<|>SPARE BATTERIES<|>ALLOWANCE<|>Spare batteries must be protected from damage and short circuit when taken aboard an aircraft.)\n##\n("entity"<|>DRY CELL ALKALINE BATTERIES<|>ALLOWANCE<|>Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.)\n##\n("entity"<|>LITHIUM-ION BATTERIES<|>ALLOWANCE<|>Lithium-ion batteries, including consumer-grade types, are allowed aboard aircraft with specific watt-hour limits.)\n##\n("entity"<|>PORTABLE CHARGERS<|>ALLOWANCE<|>Portable chargers are considered batteries and may be taken aboard aircraft under certain conditions.)\n##\n("relationship"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries that are classified as dangerous goods and must be handled accordingly<|>8)\n##\n("relationship"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may include batteries that are classified as dangerous goods<|>8)\n##\n("relationship"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Both corrosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Both explosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Both radioactive materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>Both high-strength magnetic materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>SPARE BATTERIES<|>LITHIUM-ION BATTERIES<|>Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions<|>6)\n##\n("relationship"<|>DRY CELL ALKALINE BATTERIES<|>LITHIUM-ION BATTERIES<|>Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,593 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,593 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,594 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,594 httpcore.http11 DEBUG send_request_body.complete -13:51:12,594 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,653 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'390'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996293'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'22ms'), (b'x-request-id', b'req_2155ad73544a36b4ed7acbcdf0b9622b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf4e1e97c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,653 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,653 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,653 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,654 httpcore.http11 DEBUG response_closed.started -13:51:12,654 httpcore.http11 DEBUG response_closed.complete -13:51:12,654 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,654 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5780000000377186. input_tokens=30, output_tokens=1 -13:51:12,658 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CARGO DIVISION<|>ORGANIZATION<|>The Cargo Division is responsible for managing transport costs and guidelines for cargo, including pets.)\n##\n("entity"<|>PET<|>SPECIAL ITEM<|>Pets such as dogs, cats, and exotic birds can be transported in the passenger cabin based on size, weight, and permits.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for transporting pets and service dogs on flights.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs can accompany passengers with special needs or military personnel and must meet specific requirements for transport.)\n##\n("entity"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is required for transporting service dogs and must be provided by the passenger.)\n##\n("entity"<|>TRANSPORT CAGE GUIDELINES<|>POLICY<|>Guidelines that outline the requirements for transport cages used for pets during flights.)\n##\n("entity"<|>PASSENGER CABIN<|>CABIN SECTION<|>The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.)\n##\n("entity"<|>WEIGHT<|>DIMENSION<|>Weight is a factor in determining the cost of transporting pets, including the animal, carrying case, and food.)\n##\n("entity"<|>ALLOWANCE<|>ALLOWANCE<|>The permitted baggage allowance does not include the weight of pets being transported.)\n##\n("relationship"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division provides transport cost guidelines and policies for EL AL regarding cargo, including pets.<|>7)\n##\n("relationship"<|>PET<|>PASSENGER CABIN<|>Pets can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n("relationship"<|>SERVICE DOG<|>PASSENGER CABIN<|>Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.<|>9)\n##\n("relationship"<|>VETERINARY CERTIFICATE<|>SERVICE DOG<|>A veterinary certificate is required for the transport of service dogs.<|>8)\n##\n("relationship"<|>PET<|>ALLOWANCE<|>The weight of pets is not included in the permitted baggage allowance, affecting transport costs.<|>6)\n##\n("relationship"<|>TRANSPORT CAGE GUIDELINES<|>PET<|>Transport cage guidelines provide the necessary requirements for transporting pets safely.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>DOG<|>SPECIAL ITEM<|>Dogs are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n("entity"<|>CAT<|>SPECIAL ITEM<|>Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n("entity"<|>EXOTIC BIRD<|>SPECIAL ITEM<|>Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.)\n##\n("entity"<|>I.D.F SOLDIER<|>PASSENGER TYPE<|>I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.)\n##\n("entity"<|>SHELL SHOCK<|>RESTRICTION<|>Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.)\n##\n("entity"<|>CARRYING CASE<|>MATERIAL TYPE<|>The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.)\n##\n("entity"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.)\n##\n("relationship"<|>DOG<|>PASSENGER CABIN<|>Dogs can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n("relationship"<|>CAT<|>PASSENGER CABIN<|>Cats can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n("relationship"<|>EXOTIC BIRD<|>PASSENGER CABIN<|>Exotic birds can be transported in the passenger cabin under specific conditions related to size and weight.<|>8)\n##\n("relationship"<|>I.D.F SOLDIER<|>SERVICE DOG<|>I.D.F soldiers may transport service dogs at no additional cost under specific conditions.<|>9)\n##\n("relationship"<|>SHELL SHOCK<|>SERVICE DOG<|>Passengers experiencing shell shock may qualify to transport service dogs at no additional cost.<|>8)\n##\n("relationship"<|>CARRYING CASE<|>PET<|>The carrying case is required for transporting pets, and its weight is included in the transport cost.<|>7)\n##\n("relationship"<|>FLIGHT TICKET<|>PET<|>A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,659 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,659 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,659 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,659 httpcore.http11 DEBUG send_request_body.complete -13:51:12,659 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,691 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10693'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9977511'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'134ms'), (b'x-request-id', b'req_57df48f8f92ba02f4fe97deaa9de9383'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=V_EGEqeY24WCNZI_QsyDHZKjXKmi_NEAx.q5T0xFlng-1731930672-1.0.1.1-5HNkOX1NtYgzciI26I.bFGIBeZYfIs_fNZIEvzsvLu3MOVLNRHEb7tOsLDqvxvqxzuE9d10f_oCTVaGaQFumYQ; path=/; expires=Mon, 18-Nov-24 12:21:12 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=.XBkgcwHym1WffPCqGI4GX6INFb7k3ew0xS24zn1pb0-1731930672944-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bec8dee37d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,691 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,691 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,692 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,692 httpcore.http11 DEBUG response_closed.started -13:51:12,692 httpcore.http11 DEBUG response_closed.complete -13:51:12,692 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,693 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 22.10899999999674. input_tokens=2453, output_tokens=781 -13:51:12,696 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al\'s baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n\u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin by the passenger.)\n##\n("entity"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the airline\'s standard size limits, requiring special handling and potentially incurring additional fees.)\n##\n("entity"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which may result in extra charges.)\n##\n("entity"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that shares similar baggage policies with Sundor, particularly regarding checked baggage allowances.)\n##\n("entity"<|>ECONOMY CLASS<|>TRAVEL CLASS<|>Economy class is a travel class offered by airlines, typically providing basic services and lower fares compared to higher classes.)\n##\n("entity"<|>LITE SERVICE<|>SERVICE TYPE<|>Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.)\n##\n("entity"<|>CLASSIC SERVICE<|>SERVICE TYPE<|>Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.)\n##\n("entity"<|>FLEX SERVICE<|>SERVICE TYPE<|>Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.)\n##\n("entity"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n("entity"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service provided by airlines that allows passengers to view and modify their flight details, including baggage options.)\n##\n("entity"<|>ADDITIONAL PIECES OF BAGGAGE<|>ALLOWANCE<|>Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.)\n##\n("entity"<|>$90<|>FEE STRUCTURE<|>The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.)\n##\n("entity"<|>23 KG<|>WEIGHT<|>23 kg is the weight limit for each piece of checked baggage included in the ticket price for certain service types offered by EL AL.)\n##\n("entity"<|>THREE HOURS<|>TIME PERIOD<|>Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.)\n##\n("entity"<|>EUROPE AND MIDDLE EAST<|>ROUTE TYPE<|>Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.)\n##\n("entity"<|>NORTH AMERICA<|>ROUTE TYPE<|>North America is another destination served by EL AL, with its own baggage policies.)\n##\n("relationship"<|>SUNDOR<|>EL AL<|>Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees<|>7)\n##\n("relationship"<|>LITE SERVICE<|>BAGGAGE ALLOWANCE<|>Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering<|>8)\n##\n("relationship"<|>CLASSIC SERVICE<|>BAGGAGE ALLOWANCE<|>Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n("relationship"<|>FLEX SERVICE<|>BAGGAGE ALLOWANCE<|>Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n("relationship"<|>ADDITIONAL PIECES OF BAGGAGE<|>BAGGAGE ALLOWANCE<|>Additional pieces of baggage can be checked in for a fee, which varies depending on the service type<|>6)\n##\n("relationship"<|>MANAGE YOUR BOOKING<|>ADDITIONAL PIECES OF BAGGAGE<|>Passengers can add additional pieces of baggage through the Manage Your Booking page<|>7)\n##\n("relationship"<|>OVERWEIGHT BAGGAGE<|>OVERSIZED BAGGAGE<|>Both overweight and oversized baggage require special handling and may incur additional fees<|>5)\n##\n("relationship"<|>THREE HOURS<|>MANAGE YOUR BOOKING<|>The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking<|>8)\n##\n("relationship"<|>ECONOMY CLASS<|>LITE SERVICE<|>Lite service is one of the ticket types available in economy class<|>6)\n##\n("relationship"<|>ECONOMY CLASS<|>CLASSIC SERVICE<|>Classic service is one of the ticket types available in economy class<|>6)\n##\n("relationship"<|>ECONOMY CLASS<|>FLEX SERVICE<|>Flex service is one of the ticket types available in economy class<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,699 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,699 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,699 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,700 httpcore.http11 DEBUG send_request_body.complete -13:51:12,700 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:12,958 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8338'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992595'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'44ms'), (b'x-request-id', b'req_2b0798f501e7f3a70c785c19dd3754ad'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf1e690fc227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:12,958 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:12,958 httpcore.http11 DEBUG receive_response_body.started request= -13:51:12,959 httpcore.http11 DEBUG receive_response_body.complete -13:51:12,959 httpcore.http11 DEBUG response_closed.started -13:51:12,959 httpcore.http11 DEBUG response_closed.complete -13:51:12,959 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:12,960 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.51600000000326. input_tokens=34, output_tokens=607 -13:51:12,963 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn\'t apply on LITE fare ticket), as long as it\'s packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger\'s responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger\'s equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, subject to size and weight restrictions.)\n##\n("entity"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Charges applied when baggage exceeds the permitted size and weight dimensions for checked baggage.)\n##\n("entity"<|>US DOLLARS<|>Currency<|>US dollars are the currency used for displaying prices related to baggage fees and charges.)\n##\n("entity"<|>LOCAL CURRENCY<|>Currency<|>Local currency refers to the currency accepted at specific airports for payment of fees, which may vary by location.)\n##\n("entity"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment includes one pair of skis, one pair of poles, and one pair of ski boots, which can be transported under specific conditions.)\n##\n("entity"<|>SNOWBOARD EQUIPMENT<|>Special Item<|>Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.)\n##\n("entity"<|>BICYCLE<|>Special Item<|>A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.)\n##\n("entity"<|>LITE FARE TICKET<|>Travel Class<|>A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that has specific regulations regarding the transport of baggage, including special items like ski equipment and bicycles.)\n##\n("entity"<|>CARGO DIVISION<|>Service Location<|>The Cargo Division of EL AL handles special requests and approvals for transporting oversized or special items.)\n##\n("entity"<|>EL AL CALL CENTER<|>Service Location<|>The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.)\n##\n("entity"<|>PERMITTED DIMENSIONS<|>Restriction<|>The maximum size and weight limits that checked baggage and special items must adhere to for transport.)\n##\n("entity"<|>PACKING REGULATIONS<|>Policy<|>Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.)\n##\n("relationship"<|>CHECKED BAGGAGE<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions<|>9)\n##\n("relationship"<|>US DOLLARS<|>EXCESS BAGGAGE CHARGES<|>Excess baggage charges are displayed in US dollars<|>7)\n##\n("relationship"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE CHARGES<|>At some airports, payment for excess baggage charges is allowed only in local currency<|>5)\n##\n("relationship"<|>SKI EQUIPMENT<|>CHECKED BAGGAGE<|>Ski equipment can be included in checked baggage under specific conditions<|>8)\n##\n("relationship"<|>SNOWBOARD EQUIPMENT<|>CHECKED BAGGAGE<|>Snowboard equipment can be included in checked baggage under specific conditions<|>8)\n##\n("relationship"<|>BICYCLE<|>CHECKED BAGGAGE<|>A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions<|>8)\n##\n("relationship"<|>LITE FARE TICKET<|>SKI EQUIPMENT<|>Ski equipment transport does not apply on LITE fare tickets<|>6)\n##\n("relationship"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL manages special requests for transporting oversized items<|>7)\n##\n("relationship"<|>BICYCLE<|>CARGO DIVISION<|>Transport of bicycles requires pre-approval from the Cargo Division<|>6)\n##\n("relationship"<|>BICYCLE<|>EL AL CALL CENTER<|>Pre-approval for transporting bicycles must be obtained from the EL AL call center<|>6)\n##\n("relationship"<|>PERMITTED DIMENSIONS<|>CHECKED BAGGAGE<|>Checked baggage must meet the permitted dimensions for transport<|>9)\n##\n("relationship"<|>PACKING REGULATIONS<|>BICYCLE<|>Bicycles must be packed according to specific packing regulations to be transported<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>50 KG<|>Weight<|>The maximum weight limit for checked baggage, including special items like ski equipment, is 50 kg.)\n##\n("entity"<|>277 CM<|>Linear Dimension<|>The total maximum dimensions (length + height + width) for checked baggage, including ski equipment, must not exceed 277 cm.)\n##\n("entity"<|>MOTORIZED BICYCLES<|>Prohibited Item<|>Motorized bicycles are not allowed to be transported as checked baggage.)\n##\n("entity"<|>EXCEPTIONAL CASES<|>Exemption<|>Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.)\n##\n("entity"<|>EL AL AIRCRAFT<|>Aircraft Type<|>The information provided applies specifically to EL AL flights on EL AL aircraft.)\n##\n("entity"<|>DESTINATION COUNTRY<|>GEO<|>The country to which the passenger is traveling, which may have specific regulations regarding the transport of equipment.)\n##\n("entity"<|>PASSENGER<|>Passenger Type<|>Individuals traveling on EL AL flights who must comply with baggage regulations.)\n##\n("relationship"<|>50 KG<|>CHECKED BAGGAGE<|>The maximum weight limit for checked baggage is 50 kg<|>9)\n##\n("relationship"<|>277 CM<|>CHECKED BAGGAGE<|>The total dimensions for checked baggage must not exceed 277 cm<|>9)\n##\n("relationship"<|>MOTORIZED BICYCLES<|>BICYCLE<|>Motorized bicycles are prohibited from being transported as checked baggage<|>10)\n##\n("relationship"<|>EXCEPTIONAL CASES<|>BICYCLE<|>Transport of bicycles may be allowed in exceptional cases with prior approval<|>6)\n##\n("relationship"<|>EL AL AIRCRAFT<|>CHECKED BAGGAGE<|>The baggage regulations apply specifically to EL AL aircraft<|>7)\n##\n("relationship"<|>DESTINATION COUNTRY<|>PASSENGER<|>Passengers must comply with the regulations of the destination country regarding baggage<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:12,964 httpcore.http11 DEBUG send_request_headers.started request= -13:51:12,965 httpcore.http11 DEBUG send_request_headers.complete -13:51:12,965 httpcore.http11 DEBUG send_request_body.started request= -13:51:12,965 httpcore.http11 DEBUG send_request_body.complete -13:51:12,965 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:13,80 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'400'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996223'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'22ms'), (b'x-request-id', b'req_6971236782f85c9a84fda0b9a3d3d124'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf50cb26c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,81 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,81 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,81 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,81 httpcore.http11 DEBUG response_closed.started -13:51:13,81 httpcore.http11 DEBUG response_closed.complete -13:51:13,81 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,82 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5779999999795109. input_tokens=30, output_tokens=1 -13:51:13,84 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Agriculture regulates the transport of pets.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from certain weight limits when transported in the cabin.)\n##\n("entity"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined by Israeli law, are not approved for transportation.)\n##\n("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage is a method of transporting animals in certain instances, such as large animals.)\n##\n("entity"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is used for transporting animals that are extra-large or flying unaccompanied.)\n##\n("entity"<|>CABIN<|>CABIN SECTION<|>The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.)\n##\n("entity"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg.)\n##\n("entity"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture�s Veterinary Services is required to transport an animal.)\n##\n("entity"<|>ANIMAL TESTS<|>RESTRICTION<|>Several animal tests must be performed as part of the authorization process for transporting pets.)\n##\n("relationship"<|>MINISTRY OF AGRICULTURE<|>ISRAEL<|>The Ministry of Agriculture is the regulatory authority in Israel for pet transportation<|>8)\n##\n("relationship"<|>EL AL<|>MINISTRY OF AGRICULTURE<|>EL AL must comply with the regulations set by the Ministry of Agriculture regarding pet transportation<|>7)\n##\n("relationship"<|>SERVICE DOG<|>EL AL<|>Service dogs are allowed to be transported under different conditions than other pets on EL AL<|>6)\n##\n("relationship"<|>DANGEROUS DOG<|>EL AL<|>EL AL does not allow dangerous dogs to be transported<|>6)\n##\n("relationship"<|>CHECKED BAGGAGE<|>EL AL<|>EL AL allows certain animals to be transported as checked baggage<|>5)\n##\n("relationship"<|>REGISTERED CARGO<|>EL AL<|>EL AL provides registered cargo services for transporting animals<|>5)\n##\n("relationship"<|>CABIN<|>EL AL<|>EL AL allows pets to be transported in the cabin under specific conditions<|>5)\n##\n("relationship"<|>9KG<|>CABIN<|>The weight limit of 9kg applies to pets transported in the cabin<|>4)\n##\n("relationship"<|>AUTHORIZATION<|>MINISTRY OF AGRICULTURE<|>Authorization is required from the Ministry of Agriculture to transport an animal<|>8)\n##\n("relationship"<|>ANIMAL TESTS<|>AUTHORIZATION<|>Animal tests are part of the authorization process for transporting pets<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:13,85 httpcore.http11 DEBUG send_request_headers.started request= -13:51:13,85 httpcore.http11 DEBUG send_request_headers.complete -13:51:13,85 httpcore.http11 DEBUG send_request_body.started request= -13:51:13,86 httpcore.http11 DEBUG send_request_body.complete -13:51:13,86 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:13,192 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'336'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994656'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'32ms'), (b'x-request-id', b'req_ccfe6bf47a0529142c5fca3f6b4dbbc5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf51bb97c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,192 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,192 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,193 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,193 httpcore.http11 DEBUG response_closed.started -13:51:13,193 httpcore.http11 DEBUG response_closed.complete -13:51:13,193 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,193 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5309999999590218. input_tokens=30, output_tokens=1 -13:51:13,197 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country�s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL CARGO STORE<|>AIRLINE<|>The EL AL Cargo Store is a service provided by EL AL for transporting cargo, including pets, from Israel abroad.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is the country from which animals are transported abroad.)\n##\n("entity"<|>JOHANNESBURG<|>AIRPORT<|>Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n("entity"<|>LONDON<|>AIRPORT<|>London is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n("entity"<|>HONG KONG<|>AIRPORT<|>Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.)\n##\n("entity"<|>PET<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions and weight limits.)\n##\n("entity"<|>VETERINARIAN<|>SERVICE TYPE<|>Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.)\n##\n("entity"<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.)\n##\n("entity"<|>BILL OF LADING<|>RESTRICTION<|>A bill of lading is required for transporting animals as cargo, indicating the terms of transport.)\n##\n("entity"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where pets may be transported under certain conditions.)\n##\n("entity"<|>AIRCRAFT HOLD<|>CARGO<|>The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.)\n##\n("entity"<|>PASSENGER AIRCRAFT CABIN<|>CARGO<|>The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.)\n##\n("relationship"<|>EL AL CARGO STORE<|>ISRAEL<|>The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.<|>7)\n##\n("relationship"<|>PET<|>ISRAEL<|>Pets are transported from Israel to other countries, requiring specific permits and conditions.<|>8)\n##\n("relationship"<|>PET<|>BILL OF LADING<|>Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.<|>9)\n##\n("relationship"<|>PET<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>An international certificate of good health is required for transporting pets abroad.<|>8)\n##\n("relationship"<|>PET<|>VETERINARIAN<|>Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.<|>7)\n##\n("relationship"<|>PET<|>BUSINESS CABIN<|>Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.<|>6)\n##\n("relationship"<|>PET<|>AIRCRAFT HOLD<|>Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>8)\n##\n("relationship"<|>PET<|>PASSENGER AIRCRAFT CABIN<|>Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.<|>8)\n##\n("relationship"<|>JOHANNESBURG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Johannesburg.<|>5)\n##\n("relationship"<|>LONDON<|>PET<|>Transporting pets in the aircraft cabin is not allowed to London.<|>5)\n##\n("relationship"<|>HONG KONG<|>PET<|>Transporting pets in the aircraft cabin is not allowed to Hong Kong.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>ANIMAL<|>SPECIAL ITEM<|>Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations when traveling from Israel abroad.)\n##\n("entity"<|>CAGE<|>SPECIAL ITEM<|>A cage is required for transporting animals, ensuring their safety and compliance with airline regulations.)\n##\n("entity"<|>WEIGHT<|>DIMENSION<|>Weight is a critical factor in determining how animals can be transported, influencing whether they travel in the cabin or as cargo.)\n##\n("entity"<|>PERMIT<|>REQUIRED DOCUMENT<|>A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.)\n##\n("entity"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department is responsible for issuing health certificates and permits for animal transport.)\n##\n("entity"<|>CARGO<|>ROUTE TYPE<|>Cargo transport refers to the method of shipping animals as registered cargo in the aircraft hold.)\n##\n("entity"<|>APPROVAL<|>POLICY<|>Approval from the EL AL service center is necessary for transporting pets in the Business cabin.)\n##\n("entity"<|>GUIDELINES<|>POLICY<|>Guidelines set by the destination country\'s authorities dictate how animals must be transported.)\n##\n("relationship"<|>ANIMAL<|>CAGE<|>A cage is required for the safe transport of animals, ensuring they are secure during travel.<|>8)\n##\n("relationship"<|>ANIMAL<|>WEIGHT<|>The weight of the animal determines the mode of transport, affecting whether it travels in the cabin or as cargo.<|>9)\n##\n("relationship"<|>ANIMAL<|>PERMIT<|>A permit is necessary for the transport of animals, ensuring compliance with regulations.<|>8)\n##\n("relationship"<|>VETERINARY SERVICES DEPARTMENT<|>PERMIT<|>The Veterinary Services Department issues permits required for transporting animals abroad.<|>9)\n##\n("relationship"<|>VETERINARY SERVICES DEPARTMENT<|>INTERNATIONAL CERTIFICATE OF GOOD HEALTH<|>The Veterinary Services Department issues the international certificate of good health required for animal transport.<|>9)\n##\n("relationship"<|>GUIDELINES<|>ANIMAL<|>Guidelines from destination authorities dictate the transport requirements for animals.<|>7)\n##\n("relationship"<|>APPROVAL<|>BUSINESS CABIN<|>Approval is required for transporting pets in the Business cabin, indicating a policy that must be followed.<|>6)\n##\n("relationship"<|>CARGO<|>ANIMAL<|>Animals can be transported as cargo, which is a specific route type for shipping them in the aircraft hold.<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:13,198 httpcore.http11 DEBUG send_request_headers.started request= -13:51:13,198 httpcore.http11 DEBUG send_request_headers.complete -13:51:13,198 httpcore.http11 DEBUG send_request_body.started request= -13:51:13,198 httpcore.http11 DEBUG send_request_body.complete -13:51:13,199 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:13,454 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8925'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992810'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'43ms'), (b'x-request-id', b'req_472456e981d11fa3b2b6b82d8835c578'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf1dce087d98-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,454 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,454 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,455 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,455 httpcore.http11 DEBUG response_closed.started -13:51:13,455 httpcore.http11 DEBUG response_closed.complete -13:51:13,455 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,456 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 9.10899999999674. input_tokens=34, output_tokens=547 -13:51:13,461 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo and requires specific documentation for pet travel.)\n##\n("entity"<|>CDC<|>ORGANIZATION<|>The CDC sets regulations regarding the transportation of dogs to the US and provides guidelines that must be followed by passengers.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is defined as a high-risk country for transporting dogs according to the CDC.)\n##\n("entity"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of pets as cargo and requires specific documentation for this service.)\n##\n("entity"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals, especially when they weigh more than 9 kg.)\n##\n("entity"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is necessary for transporting pets to ensure they are fit for travel.)\n##\n("entity"<|>TRANSPORT AUTHORIZATION<|>REQUIRED DOCUMENT<|>Transport authorization from the destination country authorities is required for transporting pets.)\n##\n("entity"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed to transport animals out of the country.)\n##\n("entity"<|>MEASUREMENTS OF TRANSPORT CAGE<|>DIMENSION<|>The measurements of the transport cage are required to ensure the animal\'s safety and compliance with transport regulations.)\n##\n("relationship"<|>EL AL<|>CDC<|>EL AL must comply with CDC regulations for transporting dogs to the US<|>8)\n##\n("relationship"<|>EL AL<|>CARGO DIVISION<|>The Cargo Division of EL AL is responsible for handling pet transportation services<|>7)\n##\n("relationship"<|>CARGO DIVISION<|>BILL OF LADING<|>The Cargo Division requires a bill of lading for transporting animals over 9 kg<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>CERTIFICATE OF GOOD HEALTH<|>The Cargo Division requires a certificate of good health for pets being transported<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>TRANSPORT AUTHORIZATION<|>The Cargo Division requires transport authorization from destination authorities for pet transport<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>EXPORT LICENSE<|>The Cargo Division requires an export license for transporting animals<|>6)\n##\n("relationship"<|>CARGO DIVISION<|>MEASUREMENTS OF TRANSPORT CAGE<|>The Cargo Division requires the measurements of the transport cage for compliance<|>6)\n##\n("relationship"<|>ISRAEL<|>CDC<|>Israel is classified as a high-risk country by the CDC for transporting dogs<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>PETS<|>SPECIAL ITEM<|>Pets are animals that can be transported as cargo or baggage, requiring specific documentation and guidelines for travel.)\n##\n("entity"<|>DOGS<|>SPECIAL ITEM<|>Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.)\n##\n("entity"<|>HIGH-RISK COUNTRY<|>RESTRICTION<|>A designation given to countries, such as Israel, where additional regulations apply for transporting certain animals.)\n##\n("entity"<|>AIRPORT FACILITIES<|>SERVICE LOCATION<|>Airport facilities in the United States may incur additional charges for inspecting and releasing pets.)\n##\n("entity"<|>DOCUMENTS AND AUTHORIZATIONS<|>REQUIRED DOCUMENT<|>Documents and authorizations are necessary for transporting pets and must be presented at check-in.)\n##\n("entity"<|>TRANSPORTING ANIMALS<|>SERVICE TYPE<|>The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.)\n##\n("entity"<|>US<|>GEO<|>The United States has specific regulations regarding the transportation of pets, particularly dogs.)\n##\n("entity"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health in Israel is responsible for approving the entry of animals into the country.)\n##\n("relationship"<|>EL AL<|>PETS<|>EL AL provides services for transporting pets as cargo and requires specific documentation for their travel<|>8)\n##\n("relationship"<|>DOGS<|>PETS<|>Dogs are classified as pets that require special regulations for transportation<|>7)\n##\n("relationship"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health in Israel regulates the entry of animals into the country<|>8)\n##\n("relationship"<|>US<|>DOGS<|>The US has specific regulations regarding the transportation of dogs<|>7)\n##\n("relationship"<|>AIRPORT FACILITIES<|>DOGS<|>Airport facilities may charge additional fees for inspecting and releasing dogs<|>6)\n##\n("relationship"<|>DOCUMENTS AND AUTHORIZATIONS<|>PETS<|>Documents and authorizations are required for transporting pets<|>8)\n##\n("relationship"<|>TRANSPORTING ANIMALS<|>CARGO DIVISION<|>The Cargo Division specializes in transporting animals, including pets<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:13,462 httpcore.http11 DEBUG send_request_headers.started request= -13:51:13,462 httpcore.http11 DEBUG send_request_headers.complete -13:51:13,462 httpcore.http11 DEBUG send_request_body.started request= -13:51:13,462 httpcore.http11 DEBUG send_request_body.complete -13:51:13,462 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:13,562 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8557'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992916'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'42ms'), (b'x-request-id', b'req_04a6e0dcaa6286952140f6a558ca4798'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf20bfe9c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,563 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,563 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,563 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,563 httpcore.http11 DEBUG response_closed.started -13:51:13,563 httpcore.http11 DEBUG response_closed.complete -13:51:13,563 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,564 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.75. input_tokens=34, output_tokens=637 -13:51:13,569 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Shlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon provides pickup and delivery services for luggage and bags in various locations.)\n##\n("entity"<|>CARGO TIKIM VE MIZVADOT<|>SERVICE TYPE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.)\n##\n("entity"<|>MOKA<|>SERVICE LOCATION<|>Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.)\n##\n("entity"<|>RIMON MIZVADOT VE TIKIM<|>SERVICE TYPE<|>Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.)\n##\n("entity"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud specializes in baggage and outdoor equipment located in Nes Ziona.)\n##\n("entity"<|>GALGAL YAZIV<|>SERVICE TYPE<|>Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.)\n##\n("entity"<|>HAGALGAL<|>SERVICE TYPE<|>Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.)\n##\n("entity"<|>BUGABOO<|>MATERIAL TYPE<|>Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.)\n##\n("entity"<|>DAMAGE TO WHEELCHAIRS<|>RESTRICTION<|>Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers.)\n##\n("entity"<|>IMPORTANT TO KNOW<|>POLICY<|>Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.)\n##\n("entity"<|>DELAY IN RECEIVING BAGGAGE<|>POLICY<|>Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.)\n##\n("relationship"<|>ARTY RIMON<|>CARGO TIKIM VE MIZVADOT<|>Both provide services related to luggage and bags, indicating a potential partnership or competition<|>5)\n##\n("relationship"<|>ARTY RIMON<|>MOKA<|>Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship<|>8)\n##\n("relationship"<|>RIMON MIZVADOT VE TIKIM<|>ARTY RIMON<|>Both provide similar services in different locations, indicating a competitive relationship<|>5)\n##\n("relationship"<|>MAKOR HAZIUD<|>ARTY RIMON<|>Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon<|>4)\n##\n("relationship"<|>GALGAL YAZIV<|>DAMAGE TO WHEELCHAIRS<|>Galgal Yaziv addresses damage to powered mobility scooters, which relates to the restriction on damaged wheelchairs<|>6)\n##\n("relationship"<|>HAGALGAL<|>ARTY RIMON<|>Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon<|>4)\n##\n("relationship"<|>BUGABOO<|>HAGALGAL<|>Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in<|>5)\n##\n("relationship"<|>IMPORTANT TO KNOW<|>ARTY RIMON<|>The policy regarding baggage damage is relevant to the services provided by ARTY Rimon<|>7)\n##\n("relationship"<|>DELAY IN RECEIVING BAGGAGE<|>IMPORTANT TO KNOW<|>The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>SHLOMO HA-MELEKH<|>PERSON<|>Shlomo Ha-Melekh is a contact person associated with the services mentioned in the document.)\n##\n("entity"<|>RISHON LE ZION<|>CITY<|>Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.)\n##\n("entity"<|>YEHUD<|>CITY<|>Yehud is a city where Moka, a pickup and delivery point, is located.)\n##\n("entity"<|>REHOVOT<|>CITY<|>Rehovot is a city where ARTY Rimon provides pickup and delivery services.)\n##\n("entity"<|>NES ZIONA<|>CITY<|>Nes Ziona is a city where Makor Haziud operates.)\n##\n("entity"<|>SHOHAM<|>CITY<|>Shoham is a city where ARTY Rimon provides pickup and delivery services.)\n##\n("entity"<|>RAMLE<|>CITY<|>Ramle is a city where ARTY Rimon provides pickup and delivery services.)\n##\n("entity"<|>LOD<|>CITY<|>Lod is a city where ARTY Rimon provides pickup and delivery services.)\n##\n("relationship"<|>SHLOMO HA-MELEKH<|>ARTY RIMON<|>Shlomo Ha-Melekh is a contact person for ARTY Rimon, indicating a direct association<|>8)\n##\n("relationship"<|>RISHON LE ZION<|>RIMON MIZVADOT VE TIKIM<|>Rimon Mizvadot ve Tikim operates in Rishon Le Zion, indicating a service location relationship<|>8)\n##\n("relationship"<|>YEHUD<|>MOKA<|>Moka is located in Yehud, indicating a service location relationship<|>8)\n##\n("relationship"<|>REHOVOT<|>ARTY RIMON<|>ARTY Rimon provides services in Rehovot, indicating a service location relationship<|>8)\n##\n("relationship"<|>NES ZIONA<|>MAKOR HAZIUD<|>Makor Haziud operates in Nes Ziona, indicating a service location relationship<|>8)\n##\n("relationship"<|>SHOHAM<|>ARTY RIMON<|>ARTY Rimon provides services in Shoham, indicating a service location relationship<|>8)\n##\n("relationship"<|>RAMLE<|>ARTY RIMON<|>ARTY Rimon provides services in Ramle, indicating a service location relationship<|>8)\n##\n("relationship"<|>LOD<|>ARTY RIMON<|>ARTY Rimon provides services in Lod, indicating a service location relationship<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:13,570 httpcore.http11 DEBUG send_request_headers.started request= -13:51:13,570 httpcore.http11 DEBUG send_request_headers.complete -13:51:13,570 httpcore.http11 DEBUG send_request_body.started request= -13:51:13,570 httpcore.http11 DEBUG send_request_body.complete -13:51:13,570 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:13,614 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8010'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992486'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'45ms'), (b'x-request-id', b'req_be9644f86526974f3af8ba0904e853d2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf247c00c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,614 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,614 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,614 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,614 httpcore.http11 DEBUG response_closed.started -13:51:13,614 httpcore.http11 DEBUG response_closed.complete -13:51:13,615 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,615 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.202999999979511. input_tokens=34, output_tokens=587 -13:51:13,617 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'473'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996010'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_cbf4f80bc7849874a54a59d3d4e366da'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf53af5ec227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,617 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,617 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,621 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you\'re going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment refers to items such as skis, bikes, and other sports gear that can be transported as checked baggage or cargo by airlines.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that offers standard services and amenities for passengers, excluding Lite fares.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a higher travel class that provides enhanced services and amenities compared to Economy Class.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class is a premium travel class that offers superior services and amenities for passengers.)\n##\n("entity"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division is a service that allows passengers to transport oversized or additional baggage separately from their standard allowance.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the measurements of baggage, typically expressed in length, width, and height.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the mass of baggage, which is a critical factor in determining baggage allowances and fees.)\n##\n("entity"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage.)\n##\n("entity"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy Class.)\n##\n("entity"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n("entity"<|>70 USD<|>Fee Structure<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.)\n##\n("entity"<|>150 USD<|>Fee Structure<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America.)\n##\n("entity"<|>US DOLLARS<|>Currency<|>US Dollars are the currency used for pricing and payment of baggage fees.)\n##\n("relationship"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n("relationship"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n("relationship"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment under specific size and weight conditions<|>8)\n##\n("relationship"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an option for transporting sporting equipment that exceeds standard baggage allowances<|>7)\n##\n("relationship"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are critical for determining whether sporting equipment can be transported as checked baggage<|>9)\n##\n("relationship"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key factor in determining the allowance and fees for transporting sporting equipment<|>9)\n##\n("relationship"<|>277 CM<|>DIMENSIONS<|>277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage<|>10)\n##\n("relationship"<|>30 KG<|>WEIGHT<|>30 kg is the maximum weight limit for sports equipment in Economy Class<|>10)\n##\n("relationship"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight limit for sports equipment in Business Class<|>10)\n##\n("relationship"<|>70 USD<|>SPORTING EQUIPMENT<|>70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco<|>8)\n##\n("relationship"<|>150 USD<|>SPORTING EQUIPMENT<|>150 USD is the fee for transporting sports equipment one way to the Far East and North America<|>8)\n##\n("relationship"<|>US DOLLARS<|>70 USD<|>70 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n##\n("relationship"<|>US DOLLARS<|>150 USD<|>150 USD is expressed in US Dollars, which is the currency for baggage fees<|>9)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin.)\n##\n("entity"<|>OVERWEIGHT BAGGAGE<|>Baggage Type<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which incurs additional fees.)\n##\n("entity"<|>LITE FARES<|>Travel Class<|>Lite fares are a type of Economy Class fare that typically offers fewer services and amenities.)\n##\n("entity"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports gear that exceeds the standard baggage allowance and requires special handling or fees.)\n##\n("entity"<|>CARGO<|>Service Type<|>Cargo refers to goods or items transported in bulk, separate from passenger baggage, often requiring special arrangements.)\n##\n("entity"<|>EXCESS BAGGAGE CHARGES<|>Fee Structure<|>Excess baggage charges are fees applied when a passenger\'s luggage exceeds the allowed size or weight limits.)\n##\n("entity"<|>AIRLINE<|>Airline<|>An airline is a company that provides air transport services for passengers and cargo.)\n##\n("relationship"<|>CHECKED BAGGAGE<|>SPORTING EQUIPMENT<|>Checked baggage can include sporting equipment as long as it meets the airline\'s size and weight requirements<|>8)\n##\n("relationship"<|>OVERWEIGHT BAGGAGE<|>SPORTING EQUIPMENT<|>Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees<|>8)\n##\n("relationship"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a subset of Economy Class fares that offer limited services<|>6)\n##\n("relationship"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to any extra gear that requires special handling beyond the standard allowance<|>7)\n##\n("relationship"<|>CARGO<|>SPORTING EQUIPMENT<|>Sporting equipment can be transported as cargo if it exceeds the standard baggage allowance<|>7)\n##\n("relationship"<|>EXCESS BAGGAGE CHARGES<|>SPORTING EQUIPMENT<|>Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight<|>9)\n##\n("relationship"<|>AIRLINE<|>CHECKED BAGGAGE<|>Airlines have specific policies regarding checked baggage, including size and weight limits<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:13,622 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,622 httpcore.http11 DEBUG response_closed.started -13:51:13,622 httpcore.http11 DEBUG response_closed.complete -13:51:13,622 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,623 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6720000000204891. input_tokens=30, output_tokens=1 -13:51:13,623 httpcore.http11 DEBUG send_request_headers.started request= -13:51:13,623 httpcore.http11 DEBUG send_request_headers.complete -13:51:13,623 httpcore.http11 DEBUG send_request_body.started request= -13:51:13,624 httpcore.http11 DEBUG send_request_body.complete -13:51:13,624 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:13,856 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'5964'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992736'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'43ms'), (b'x-request-id', b'req_f1f82746ab9f2264809b8e5e3fa84679'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf32bfa5c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,856 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,856 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,857 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,857 httpcore.http11 DEBUG response_closed.started -13:51:13,857 httpcore.http11 DEBUG response_closed.complete -13:51:13,857 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,858 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 6.172000000020489. input_tokens=34, output_tokens=426 -13:51:13,863 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier\'s liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the suitcases and items that passengers check in for their flights, which can be lost, damaged, or delayed.)\n##\n("entity"<|>EL AL ISRAEL AIRLINES<|>Airline<|>EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.)\n##\n("entity"<|>FLIGHT TICKETS<|>Required Document<|>Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.)\n##\n("entity"<|>BOARDING PASSES<|>Required Document<|>Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.)\n##\n("entity"<|>BAGGAGE TAGS<|>Required Document<|>Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.)\n##\n("entity"<|>LOST OR DAMAGED BAGGAGE REPORT<|>Required Document<|>A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.)\n##\n("entity"<|>RECEIPTS<|>Required Document<|>Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.)\n##\n("entity"<|>FRAGILE ITEMS<|>Prohibited Item<|>Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n("entity"<|>PERISHABLE ITEMS<|>Prohibited Item<|>Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n("entity"<|>VALUABLE ITEMS<|>Valuable Item<|>Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.)\n##\n("entity"<|>INTERNATIONAL CONVENTIONS<|>Policy<|>International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.)\n##\n("entity"<|>CONTRACT OF CARRIAGE<|>Policy<|>The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.)\n##\n("relationship"<|>BAGGAGE<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.<|>9)\n##\n("relationship"<|>FLIGHT TICKETS<|>BAGGAGE<|>Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>BOARDING PASSES<|>BAGGAGE<|>Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>BAGGAGE TAGS<|>BAGGAGE<|>Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>LOST OR DAMAGED BAGGAGE REPORT<|>BAGGAGE<|>A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>RECEIPTS<|>BAGGAGE<|>Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.<|>8)\n##\n("relationship"<|>FRAGILE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.<|>7)\n##\n("relationship"<|>PERISHABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.<|>7)\n##\n("relationship"<|>VALUABLE ITEMS<|>EL AL ISRAEL AIRLINES<|>EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.<|>7)\n##\n("relationship"<|>INTERNATIONAL CONVENTIONS<|>EL AL ISRAEL AIRLINES<|>International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.<|>6)\n##\n("relationship"<|>CONTRACT OF CARRIAGE<|>EL AL ISRAEL AIRLINES<|>The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>DAMAGE<|>Restriction<|>Damage refers to the condition of baggage that has been harmed or impaired, which may affect the liability of the airline regarding claims.)\n##\n("entity"<|>MISSING ITEMS<|>Restriction<|>Missing items refer to belongings that are not present in the baggage upon receipt, which may lead to a claim against the airline.)\n##\n("entity"<|>CLAIM<|>Policy<|>A claim is a formal request made by a passenger to the airline for compensation due to lost, damaged, or delayed baggage.)\n##\n("entity"<|>21 DAYS<|>Time Period<|>21 days is the time frame within which passengers must contact the airline regarding delayed baggage outside their country of residence.)\n##\n("entity"<|>7 DAYS<|>Time Period<|>7 days is the time frame within which passengers must contact the airline regarding damaged or missing items from their baggage.)\n##\n("entity"<|>AFTER 21 DAYS<|>Time Period<|>After 21 days refers to the period after which passengers must contact the airline regarding lost baggage.)\n##\n("relationship"<|>DAMAGE<|>CLAIM<|>Damage to baggage can lead to a claim being filed by the passenger against the airline.<|>8)\n##\n("relationship"<|>MISSING ITEMS<|>CLAIM<|>Missing items from baggage can lead to a claim being filed by the passenger against the airline.<|>8)\n##\n("relationship"<|>7 DAYS<|>CLAIM<|>Passengers must file a claim within 7 days for damaged or missing items from their baggage.<|>9)\n##\n("relationship"<|>21 DAYS<|>CLAIM<|>Passengers must file a claim within 21 days for delayed baggage outside their country of residence.<|>9)\n##\n("relationship"<|>AFTER 21 DAYS<|>CLAIM<|>Passengers must contact the airline after 21 days regarding lost baggage.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:13,864 httpcore.http11 DEBUG send_request_headers.started request= -13:51:13,864 httpcore.http11 DEBUG send_request_headers.complete -13:51:13,864 httpcore.http11 DEBUG send_request_body.started request= -13:51:13,864 httpcore.http11 DEBUG send_request_body.complete -13:51:13,864 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:13,872 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'502'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995925'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'24ms'), (b'x-request-id', b'req_c8446454513c5daff118e961dafe2dc9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf5518bec233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,872 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,872 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,872 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,872 httpcore.http11 DEBUG response_closed.started -13:51:13,872 httpcore.http11 DEBUG response_closed.complete -13:51:13,873 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,873 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6880000000237487. input_tokens=30, output_tokens=1 -13:51:13,987 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'5699'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993050'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'41ms'), (b'x-request-id', b'req_5c7bee03afad8e7aa0a8b5e0102a6f5c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf355ad7ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:13,988 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:13,988 httpcore.http11 DEBUG receive_response_body.started request= -13:51:13,988 httpcore.http11 DEBUG receive_response_body.complete -13:51:13,988 httpcore.http11 DEBUG response_closed.started -13:51:13,988 httpcore.http11 DEBUG response_closed.complete -13:51:13,988 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:13,989 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 5.875. input_tokens=34, output_tokens=404 -13:51:13,994 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor�s note.\u200b\n\u200bPassengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>LIQUIDS IN CARRY-ON BAGS<|>RESTRICTION<|>Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.)\n##\n("entity"<|>ISRAEL<|>COUNTRY<|>Country from which flights are departing and has specific guidelines for carrying liquids in carry-on bags.)\n##\n("entity"<|>U.S<|>COUNTRY<|>Country with specific guidelines regarding the carrying of liquids in handbags.)\n##\n("entity"<|>100 ML<|>MEASUREMENT UNIT<|>Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.)\n##\n("entity"<|>3.4 OZ<|>MEASUREMENT UNIT<|>Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.)\n##\n("entity"<|>CLEAR RESEALABLE PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.)\n##\n("entity"<|>DOCTOR\'S NOTE<|>REQUIRED DOCUMENT<|>Document required for carrying medications and special food products at the security checkpoint.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>Airline that states it is not responsible for any liquids confiscated from passengers at the airport.)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>ISRAEL<|>Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports.<|>8)\n##\n("relationship"<|>LIQUIDS IN CARRY-ON BAGS<|>U.S<|>The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.<|>8)\n##\n("relationship"<|>100 ML<|>3.4 OZ<|>100 ml is equivalent to 3.4 oz, which is the maximum volume allowed for liquids in carry-on bags.<|>9)\n##\n("relationship"<|>CLEAR RESEALABLE PLASTIC BAG<|>LIQUIDS IN CARRY-ON BAGS<|>A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.<|>9)\n##\n("relationship"<|>DOCTOR\'S NOTE<|>LIQUIDS IN CARRY-ON BAGS<|>A doctor\'s note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.<|>8)\n##\n("relationship"<|>EL AL<|>LIQUIDS IN CARRY-ON BAGS<|>EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>AEROSOLS<|>PROHIBITED ITEM<|>Aerosols are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n("entity"<|>GELS<|>PROHIBITED ITEM<|>Gels are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n("entity"<|>CREAMS<|>PROHIBITED ITEM<|>Creams are considered liquids and are subject to restrictions when carried in carry-on bags.)\n##\n("entity"<|>BABY FOOD<|>SPECIAL ITEM<|>Baby food is a special item that does not have to be packed in the resealable plastic bag but must be presented at the security checkpoint.)\n##\n("entity"<|>DUTY FREE<|>RESTRICTION<|>Duty-free products cannot be purchased if they are prohibited aboard the aircraft, even for connecting flights.)\n##\n("entity"<|>SECURITY CHECKPOINT<|>SERVICE LOCATION<|>Location where passengers must present their carry-on items, including liquids, for inspection before boarding.)\n##\n("entity"<|>CONNECTING FLIGHT<|>ROUTE TYPE<|>Type of flight that may have additional restrictions regarding the carrying of liquids.)\n##\n("entity"<|>PLASTIC BAG<|>BAGGAGE TYPE<|>Type of bag required for carrying liquids in carry-on luggage.)\n##\n("entity"<|>PERMITTED AMOUNT<|>RESTRICTION<|>The maximum amount of liquids allowed in carry-on bags, which is subject to specific guidelines.)\n##\n("entity"<|>GUIDELINES<|>POLICY<|>Updated guidelines that dictate the rules for carrying liquids in carry-on bags.)\n##\n("entity"<|>FLIGHT<|>ROUTE TYPE<|>Traveling by air, which is subject to regulations regarding the carrying of liquids.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:13,995 httpcore.http11 DEBUG send_request_headers.started request= -13:51:13,995 httpcore.http11 DEBUG send_request_headers.complete -13:51:13,995 httpcore.http11 DEBUG send_request_body.started request= -13:51:13,995 httpcore.http11 DEBUG send_request_body.complete -13:51:13,995 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:14,84 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'454'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996222'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'22ms'), (b'x-request-id', b'req_5fbdb1d3f2fbe695da9ebacf16b63215'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf56b89f7d98-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:14,84 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:14,84 httpcore.http11 DEBUG receive_response_body.started request= -13:51:14,84 httpcore.http11 DEBUG receive_response_body.complete -13:51:14,84 httpcore.http11 DEBUG response_closed.started -13:51:14,84 httpcore.http11 DEBUG response_closed.complete -13:51:14,85 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:14,85 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.625. input_tokens=30, output_tokens=1 -13:51:14,265 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'460'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995866'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'24ms'), (b'x-request-id', b'req_55d9d0d5e9ca77fd9ff6cb7db7efe0b1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf57bd93c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:14,266 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:14,266 httpcore.http11 DEBUG receive_response_body.started request= -13:51:14,266 httpcore.http11 DEBUG receive_response_body.complete -13:51:14,266 httpcore.http11 DEBUG response_closed.started -13:51:14,266 httpcore.http11 DEBUG response_closed.complete -13:51:14,266 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:14,267 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6570000000065193. input_tokens=30, output_tokens=1 -13:51:14,297 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'556'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996395'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'21ms'), (b'x-request-id', b'req_f1480525990e795b89cfa544238b855f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf576d9ec231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:14,298 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:14,298 httpcore.http11 DEBUG receive_response_body.started request= -13:51:14,298 httpcore.http11 DEBUG receive_response_body.complete -13:51:14,298 httpcore.http11 DEBUG response_closed.started -13:51:14,298 httpcore.http11 DEBUG response_closed.complete -13:51:14,298 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:14,299 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.7350000000442378. input_tokens=30, output_tokens=1 -13:51:14,438 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'388'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996269'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'22ms'), (b'x-request-id', b'req_4f97feb74cb26265d3c19e7b0e231433'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf593cc8c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:14,438 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:14,438 httpcore.http11 DEBUG receive_response_body.started request= -13:51:14,439 httpcore.http11 DEBUG receive_response_body.complete -13:51:14,439 httpcore.http11 DEBUG response_closed.started -13:51:14,439 httpcore.http11 DEBUG response_closed.complete -13:51:14,439 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:14,439 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5779999999795109. input_tokens=30, output_tokens=1 -13:51:14,514 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'333'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996619'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'20ms'), (b'x-request-id', b'req_5e19deb7581514d802e862351156f6b1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf5a1cd2ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:14,514 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:14,514 httpcore.http11 DEBUG receive_response_body.started request= -13:51:14,515 httpcore.http11 DEBUG receive_response_body.complete -13:51:14,515 httpcore.http11 DEBUG response_closed.started -13:51:14,515 httpcore.http11 DEBUG response_closed.complete -13:51:14,515 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:14,515 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5320000000065193. input_tokens=30, output_tokens=1 -13:51:14,688 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'5806'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9985513'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'86ms'), (b'x-request-id', b'req_680468ba137782aa79ca648657078395'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf38ff89c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:14,688 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:14,688 httpcore.http11 DEBUG receive_response_body.started request= -13:51:14,689 httpcore.http11 DEBUG receive_response_body.complete -13:51:14,689 httpcore.http11 DEBUG response_closed.started -13:51:14,689 httpcore.http11 DEBUG response_closed.complete -13:51:14,689 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:14,690 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 6.0. input_tokens=34, output_tokens=440 -13:51:14,695 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t\u200bEurope and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides services for transporting pets as cargo or baggage.)\n##\n("entity"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the airport in Israel where animals are released after transport.)\n##\n("entity"<|>CARGO DIVISION<|>SERVICE TYPE<|>The Cargo Division of EL AL handles the transportation of animals as cargo.)\n##\n("entity"<|>VETERINARY SERVICES DEPARTMENT<|>ORGANIZATION<|>The Veterinary Services Department determines the conditions under which animals can be transported.)\n##\n("entity"<|>BILL OF LADING<|>REQUIRED DOCUMENT<|>A bill of lading is a document required for transporting animals as cargo.)\n##\n("entity"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Veterinary Services Department is required to transport a pet as cargo.)\n##\n("entity"<|>EXPORT LICENSE<|>REQUIRED DOCUMENT<|>An export license is needed for transporting animals internationally.)\n##\n("entity"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A certificate of good health is required for pets being transported.)\n##\n("entity"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>REQUIRED DOCUMENT<|>Laboratory results for rabies antibodies are necessary for transporting pets.)\n##\n("entity"<|>COSTS OF TRANSPORTING ANIMALS<|>POLICY<|>The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.)\n##\n("entity"<|>ANIMALS WEIGHING UP TO 9 KG<|>WEIGHT CATEGORY<|>Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.)\n##\n("entity"<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>WEIGHT CATEGORY<|>Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.)\n##\n("entity"<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>WEIGHT CATEGORY<|>Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.)\n##\n("entity"<|>ANIMALS WEIGHING MORE THAN 100 KG<|>WEIGHT CATEGORY<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.)\n##\n("relationship"<|>EL AL<|>CARGO DIVISION<|>EL AL\'s Cargo Division is responsible for handling the transportation of animals as cargo<|>8)\n##\n("relationship"<|>BEN GURION AIRPORT<|>EL AL<|>Animals transported by EL AL are released at Ben Gurion Airport<|>7)\n##\n("relationship"<|>VETERINARY SERVICES DEPARTMENT<|>AUTHORIZATION<|>Authorization from the Veterinary Services Department is required for transporting pets as cargo<|>9)\n##\n("relationship"<|>VETERINARY SERVICES DEPARTMENT<|>BILL OF LADING<|>The Veterinary Services Department determines if a bill of lading is needed for transporting animals<|>6)\n##\n("relationship"<|>EXPORT LICENSE<|>VETERINARY SERVICES DEPARTMENT<|>An export license is required by the Veterinary Services Department for transporting animals<|>7)\n##\n("relationship"<|>CERTIFICATE OF GOOD HEALTH<|>VETERINARY SERVICES DEPARTMENT<|>A certificate of good health is required by the Veterinary Services Department for transporting animals<|>7)\n##\n("relationship"<|>LABORATORY RESULTS FOR RABIES ANTIBODIES<|>VETERINARY SERVICES DEPARTMENT<|>Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals<|>7)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING UP TO 9 KG<|>The cost of transporting animals weighing up to 9 kg is $100 when transported as baggage<|>8)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 9 AND 50 KG<|>The cost of transporting animals weighing between 9 and 50 kg is $200 when transported as baggage<|>8)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING BETWEEN 50 AND 100 KG<|>The cost of transporting animals weighing between 50 and 100 kg is $400 when transported as baggage<|>8)\n##\n("relationship"<|>COSTS OF TRANSPORTING ANIMALS<|>ANIMALS WEIGHING MORE THAN 100 KG<|>Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division<|>9)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>PETS<|>SPECIAL ITEM<|>Pets are animals that can be transported as either cargo or baggage under specific guidelines.)\n##\n("entity"<|>CARGO<|>ROUTE TYPE<|>Cargo refers to the transportation of goods, including animals, typically handled by the Cargo Division.)\n##\n("entity"<|>BAGGAGE<|>ROUTE TYPE<|>Baggage refers to personal items, including pets, that passengers can take on board the aircraft.)\n##\n("entity"<|>9 KG<|>WEIGHT<|>9 kg is the weight limit for pets to be transported as baggage without additional requirements.)\n##\n("entity"<|>50 KG<|>WEIGHT<|>50 kg is the upper weight limit for pets to be transported as baggage with specific fees.)\n##\n("entity"<|>100 KG<|>WEIGHT<|>100 kg is the maximum weight for pets to be transported as baggage; heavier pets must be transported as cargo.)\n##\n("entity"<|>CARGO TERMINAL<|>SERVICE LOCATION<|>The cargo terminal at Ben Gurion Airport is where animals transported as cargo are released.)\n##\n("entity"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The arrivals hall at Ben Gurion Airport is where animals transported as baggage are released.)\n##\n("relationship"<|>PETS<|>BAGGAGE<|>Pets can be transported as baggage under specific guidelines<|>8)\n##\n("relationship"<|>PETS<|>CARGO<|>Pets can also be transported as cargo depending on their weight and requirements<|>8)\n##\n("relationship"<|>BAGGAGE<|>BEN GURION AIRPORT<|>Baggage, including pets, is released at Ben Gurion Airport\'s arrivals hall<|>7)\n##\n("relationship"<|>CARGO<|>BEN GURION AIRPORT<|>Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:14,696 httpcore.http11 DEBUG send_request_headers.started request= -13:51:14,696 httpcore.http11 DEBUG send_request_headers.complete -13:51:14,696 httpcore.http11 DEBUG send_request_body.started request= -13:51:14,696 httpcore.http11 DEBUG send_request_body.complete -13:51:14,696 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:15,64 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:15 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12063'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992798'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'43ms'), (b'x-request-id', b'req_faab245010bb55be89e9e2de2436748c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf145e2ec233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:15,64 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:15,64 httpcore.http11 DEBUG receive_response_body.started request= -13:51:15,64 httpcore.http11 DEBUG receive_response_body.complete -13:51:15,65 httpcore.http11 DEBUG response_closed.started -13:51:15,65 httpcore.http11 DEBUG response_closed.complete -13:51:15,65 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:15,66 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 12.23399999999674. input_tokens=34, output_tokens=739 -13:51:15,71 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger�s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger\'s feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of service dogs on flights.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>A service dog is a trained animal that assists passengers with disabilities and must meet specific requirements for air travel.)\n##\n("entity"<|>HEATHROW AIRPORT<|>AIRPORT<|>Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.)\n##\n("entity"<|>UNITED STATES<|>GEO<|>The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is a country with specific requirements for transporting animals, including service dogs.)\n##\n("entity"<|>CDC<|>ORGANIZATION<|>The CDC provides guidelines and requirements for transporting dogs to the United States, including health and vaccination documentation.)\n##\n("entity"<|>VETERINARY CERTIFICATE<|>REQUIRED DOCUMENT<|>A veterinary certificate is a document that certifies a service dog is vaccinated and can maintain sanitary conditions during transport.)\n##\n("entity"<|>ANIMAL AIR TRANSPORT COMPANIES<|>SERVICE TYPE<|>Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.)\n##\n("relationship"<|>EL AL<|>SERVICE DOG<|>EL AL has specific policies regarding the transportation of service dogs, including requirements for documentation and behavior during the flight.<|>8)\n##\n("relationship"<|>SERVICE DOG<|>VETERINARY CERTIFICATE<|>A veterinary certificate is required for a service dog to ensure it is vaccinated and fit for travel.<|>9)\n##\n("relationship"<|>SERVICE DOG<|>HEATHROW AIRPORT<|>Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.<|>7)\n##\n("relationship"<|>SERVICE DOG<|>UNITED STATES<|>The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.<|>8)\n##\n("relationship"<|>ISRAEL<|>SERVICE DOG<|>Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.<|>6)\n##\n("relationship"<|>CDC<|>UNITED STATES<|>The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.<|>8)\n##\n("relationship"<|>EL AL<|>ANIMAL AIR TRANSPORT COMPANIES<|>EL AL may recommend using specialized companies for the air transport of animals, including service dogs.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>CAGE<|>SPECIAL ITEM<|>A cage adapted for a service dog is required for transport, ensuring the dog\'s safety and comfort during the flight.)\n##\n("entity"<|>LEASH<|>SPECIAL ITEM<|>A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.)\n##\n("entity"<|>HARNESSES<|>SPECIAL ITEM<|>Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.)\n##\n("entity"<|>FLIGHT DATE<|>TIME PERIOD<|>The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.)\n##\n("entity"<|>ADDITIONAL CHARGES<|>FEE STRUCTURE<|>Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.)\n##\n("entity"<|>HIGH-RISK COUNTRY<|>RESTRICTION<|>As of the current date, Israel is classified as a high-risk country for transporting animals, affecting travel regulations.)\n##\n("entity"<|>CHECK-IN COUNTERS<|>SERVICE LOCATION<|>Check-in counters are the designated areas at the airport where passengers must present their documentation for traveling with a service dog.)\n##\n("entity"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Passengers must complete all necessary documents required for transporting animals to and from Israel.)\n##\n("entity"<|>SANITARY CONDITIONS<|>RESTRICTION<|>Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.)\n##\n("relationship"<|>SERVICE DOG<|>CAGE<|>A cage is required for the transport of a service dog to ensure its safety and comfort during the flight.<|>8)\n##\n("relationship"<|>SERVICE DOG<|>LEASH<|>A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.<|>9)\n##\n("relationship"<|>SERVICE DOG<|>HARNESSES<|>Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.<|>9)\n##\n("relationship"<|>FLIGHT DATE<|>SERVICE DOG<|>The flight date is crucial for passengers traveling with a service dog to ensure compliance with registration and documentation requirements.<|>7)\n##\n("relationship"<|>ADDITIONAL CHARGES<|>SERVICE DOG<|>Additional charges may apply for the inspection and release of a service dog at airport facilities in the United States.<|>6)\n##\n("relationship"<|>ISRAEL<|>HIGH-RISK COUNTRY<|>Israel is classified as a high-risk country, affecting the regulations for transporting service dogs.<|>5)\n##\n("relationship"<|>CHECK-IN COUNTERS<|>SERVICE DOG<|>Passengers must present their documentation for traveling with a service dog at the check-in counters.<|>8)\n##\n("relationship"<|>DOCUMENTS<|>SERVICE DOG<|>Passengers must complete all necessary documents required for transporting service dogs to and from Israel.<|>7)\n##\n("relationship"<|>SANITARY CONDITIONS<|>SERVICE DOG<|>Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:15,72 httpcore.http11 DEBUG send_request_headers.started request= -13:51:15,72 httpcore.http11 DEBUG send_request_headers.complete -13:51:15,72 httpcore.http11 DEBUG send_request_body.started request= -13:51:15,72 httpcore.http11 DEBUG send_request_body.complete -13:51:15,72 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:15,275 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:15 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'394'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996045'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_f6693214749566181c056bf92e27913b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf5e7b0fc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:15,275 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:15,275 httpcore.http11 DEBUG receive_response_body.started request= -13:51:15,275 httpcore.http11 DEBUG receive_response_body.complete -13:51:15,275 httpcore.http11 DEBUG response_closed.started -13:51:15,275 httpcore.http11 DEBUG response_closed.complete -13:51:15,276 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:15,276 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5790000000270084. input_tokens=30, output_tokens=1 -13:51:15,330 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:15 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7536'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9991947'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'48ms'), (b'x-request-id', b'req_019b0e1a713d11589242fa0a3061eca5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf323eedc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:15,330 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:15,330 httpcore.http11 DEBUG receive_response_body.started request= -13:51:15,331 httpcore.http11 DEBUG receive_response_body.complete -13:51:15,331 httpcore.http11 DEBUG response_closed.started -13:51:15,331 httpcore.http11 DEBUG response_closed.complete -13:51:15,331 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:15,332 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 7.7189999999827705. input_tokens=34, output_tokens=585 -13:51:15,337 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CARRY-ON BAGGAGE<|>Baggage Type<|>Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.)\n##\n("entity"<|>PERSONAL BAGS<|>Baggage Type<|>Personal bags are smaller bags that are stored under the seat in front of the passenger to maximize cabin space.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n("entity"<|>SUN DOR<|>Airline<|>Sun Dor is an airline that operates flights allowing specific carry-on baggage policies.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.)\n##\n("entity"<|>MATMID FREQUENT FLYER CLUB<|>Membership Level<|>Matmid Frequent Flyer Club status may affect the eligibility of passengers to bring carry-on baggage aboard the aircraft.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights.)\n##\n("relationship"<|>CARRY-ON BAGGAGE<|>PERSONAL BAGS<|>Personal bags are a type of carry-on baggage that can be stored under the seat in front of the passenger.<|>8)\n##\n("relationship"<|>EL AL<|>CARRY-ON BAGGAGE<|>EL AL has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n("relationship"<|>SUN DOR<|>CARRY-ON BAGGAGE<|>Sun Dor has specific policies regarding carry-on baggage for its flights.<|>7)\n##\n("relationship"<|>ECONOMY CLASS<|>CARRY-ON BAGGAGE<|>Economy Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n("relationship"<|>PREMIUM CLASS<|>CARRY-ON BAGGAGE<|>Premium Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n("relationship"<|>BUSINESS CLASS<|>CARRY-ON BAGGAGE<|>Business Class passengers are entitled to specific carry-on baggage allowances.<|>6)\n##\n("relationship"<|>MATMID FREQUENT FLYER CLUB<|>CARRY-ON BAGGAGE<|>Matmid Frequent Flyer Club status may influence the carry-on baggage eligibility for passengers.<|>5)\n##\n("relationship"<|>DIMENSIONS<|>CARRY-ON BAGGAGE<|>Dimensions are a critical factor in determining the eligibility of carry-on baggage for boarding.<|>8)\n##\n("relationship"<|>WEIGHT<|>CARRY-ON BAGGAGE<|>Weight limits are essential for determining the eligibility of carry-on baggage for boarding.<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED LUGGAGE<|>Baggage Type<|>Checked luggage refers to bags that are transported in the aircraft\'s cargo hold rather than in the passenger cabin.)\n##\n("entity"<|>TROLLEY<|>Baggage Type<|>Trolleys are a type of carry-on bag that passengers can bring into the passenger cabin.)\n##\n("entity"<|>FLIGHT TICKET TERMS<|>Policy<|>Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.)\n##\n("entity"<|>BOOKING MANAGEMENT<|>Service Location<|>Booking management refers to the section of the airline\'s website where passengers can manage their flight bookings and check baggage policies.)\n##\n("entity"<|>OVERHEAD COMPARTMENTS<|>Cabin Section<|>Overhead compartments are storage areas in the passenger cabin where carry-on bags are placed during the flight.)\n##\n("entity"<|>BAGGAGE CONVEYOR BELT<|>Service Location<|>The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.)\n##\n("entity"<|>NORTH AMERICA<|>Region<|>North America is a region where specific flight policies apply, particularly regarding carry-on baggage.)\n##\n("relationship"<|>CHECKED LUGGAGE<|>CARRY-ON BAGGAGE<|>Checked luggage is an alternative to carry-on baggage for passengers who need to transport larger items.<|>6)\n##\n("relationship"<|>TROLLEY<|>CARRY-ON BAGGAGE<|>Trolleys are a specific type of carry-on baggage that passengers can bring into the cabin.<|>8)\n##\n("relationship"<|>FLIGHT TICKET TERMS<|>CARRY-ON BAGGAGE<|>Flight ticket terms provide details on the rules regarding carry-on baggage allowances.<|>7)\n##\n("relationship"<|>BOOKING MANAGEMENT<|>CARRY-ON BAGGAGE<|>Booking management allows passengers to check their carry-on baggage policies and manage their bookings.<|>6)\n##\n("relationship"<|>OVERHEAD COMPARTMENTS<|>CARRY-ON BAGGAGE<|>Overhead compartments are designated storage areas for carry-on baggage during the flight.<|>8)\n##\n("relationship"<|>BAGGAGE CONVEYOR BELT<|>CHECKED LUGGAGE<|>The baggage conveyor belt is where checked luggage is retrieved after a flight.<|>9)\n##\n("relationship"<|>NORTH AMERICA<|>CARRY-ON BAGGAGE<|>Specific carry-on baggage policies apply to flights from/to North America.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:15,338 httpcore.http11 DEBUG send_request_headers.started request= -13:51:15,338 httpcore.http11 DEBUG send_request_headers.complete -13:51:15,338 httpcore.http11 DEBUG send_request_body.started request= -13:51:15,338 httpcore.http11 DEBUG send_request_body.complete -13:51:15,339 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:15,622 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:15 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'365'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996003'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_963339e432de9171ad6dfa96209decd4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf60cceeed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:15,623 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:15,623 httpcore.http11 DEBUG receive_response_body.started request= -13:51:15,623 httpcore.http11 DEBUG receive_response_body.complete -13:51:15,623 httpcore.http11 DEBUG response_closed.started -13:51:15,623 httpcore.http11 DEBUG response_closed.complete -13:51:15,623 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:15,624 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5630000000237487. input_tokens=30, output_tokens=1 -13:51:15,624 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:15 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'4929'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993322'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'40ms'), (b'x-request-id', b'req_767f3d42f97f94faaa46a968dba99f5b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf446f587d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:15,625 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:15,625 httpcore.http11 DEBUG receive_response_body.started request= -13:51:15,625 httpcore.http11 DEBUG receive_response_body.complete -13:51:15,625 httpcore.http11 DEBUG response_closed.started -13:51:15,625 httpcore.http11 DEBUG response_closed.complete -13:51:15,625 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:15,626 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 5.10899999999674. input_tokens=34, output_tokens=316 -13:51:15,634 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides guidelines for traveling with battery-powered mobility aids and hazardous materials.)\n##\n("entity"<|>BATTERY-POWERED MOBILITY AIDS<|>SPECIAL ITEM<|>Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.)\n##\n("entity"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights.)\n##\n("entity"<|>FLIGHT-APPROVED BATTERIES<|>RESTRICTED ITEM<|>Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.)\n##\n("entity"<|>HAZARDOUS MATERIALS<|>PROHIBITED ITEM<|>Hazardous materials include items like dry ice that require special handling and declaration when traveling.)\n##\n("entity"<|>DECLARATION FORM<|>REQUIRED DOCUMENT<|>A Declaration Form is required for traveling with hazardous materials on EL AL flights.)\n##\n("relationship"<|>EL AL<|>BATTERY-POWERED MOBILITY AIDS<|>EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights<|>8)\n##\n("relationship"<|>BATTERY-POWERED MOBILITY AIDS<|>IATA REGULATIONS<|>Battery-powered mobility aids must comply with IATA regulations for air travel<|>7)\n##\n("relationship"<|>EL AL<|>HAZARDOUS MATERIALS<|>EL AL requires advance notice and a Declaration Form for traveling with hazardous materials<|>8)\n##\n("relationship"<|>HAZARDOUS MATERIALS<|>DECLARATION FORM<|>A Declaration Form is necessary for traveling with hazardous materials on EL AL flights<|>9)\n##\n("relationship"<|>FLIGHT-APPROVED BATTERIES<|>BATTERY-POWERED MOBILITY AIDS<|>Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>MOBILITY AID<|>SPECIAL ITEM<|>Mobility aids include devices like wheelchairs and scooters that assist individuals with mobility challenges.)\n##\n("entity"<|>DRY ICE<|>DANGEROUS GOOD<|>Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.)\n##\n("entity"<|>FLIGHT AID<|>SERVICE TYPE<|>Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.)\n##\n("entity"<|>EMAIL NOTIFICATION<|>REQUIRED DOCUMENT<|>An email notification to the airline is required to inform them about the intention to travel with a mobility aid.)\n##\n("relationship"<|>EL AL<|>MOBILITY AID<|>EL AL provides services for passengers traveling with mobility aids<|>7)\n##\n("relationship"<|>MOBILITY AID<|>FLIGHT AID<|>Mobility aids are part of the flight aid services provided to assist passengers<|>6)\n##\n("relationship"<|>DRY ICE<|>HAZARDOUS MATERIALS<|>Dry ice is classified as a hazardous material that requires special handling during air travel<|>8)\n##\n("relationship"<|>EMAIL NOTIFICATION<|>EL AL<|>An email notification is required to inform EL AL about traveling with a mobility aid<|>9)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:15,635 httpcore.http11 DEBUG send_request_headers.started request= -13:51:15,635 httpcore.http11 DEBUG send_request_headers.complete -13:51:15,635 httpcore.http11 DEBUG send_request_body.started request= -13:51:15,635 httpcore.http11 DEBUG send_request_body.complete -13:51:15,635 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:15,944 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7099'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9987155'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'77ms'), (b'x-request-id', b'req_5345dd07efe59c4c4282fd69c115a151'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf38cc31c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:15,944 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:15,945 httpcore.http11 DEBUG receive_response_body.started request= -13:51:15,945 httpcore.http11 DEBUG receive_response_body.complete -13:51:15,945 httpcore.http11 DEBUG response_closed.started -13:51:15,945 httpcore.http11 DEBUG response_closed.complete -13:51:15,945 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:15,946 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 7.280999999959022. input_tokens=34, output_tokens=470 -13:51:15,951 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you\'re going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>SPORTING EQUIPMENT<|>Baggage Type<|>Sporting equipment includes items like skis, snowboards, and bicycles that can be transported on flights under specific conditions.)\n##\n("entity"<|>ECONOMY CLASS<|>Travel Class<|>Economy Class is a travel class that allows complimentary transport of sports equipment under certain conditions, excluding Lite fares.)\n##\n("entity"<|>PREMIUM CLASS<|>Travel Class<|>Premium Class is a travel class that allows complimentary transport of sports equipment under specific conditions.)\n##\n("entity"<|>BUSINESS CLASS<|>Travel Class<|>Business Class allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class.)\n##\n("entity"<|>DIMENSIONS<|>Dimension<|>Dimensions refer to the total measurements (length + width + height) of the sports equipment that must not exceed specified limits for transport.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the maximum allowable weight of sports equipment for transport, which varies by travel class.)\n##\n("entity"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division provides services for transporting oversized or separately sent sports equipment as cargo.)\n##\n("entity"<|>CALL CENTER<|>Service Location<|>The call center is a service location where passengers can contact for approval regarding overweight baggage.)\n##\n("entity"<|>OVERWEIGHT BAGGAGE<|>Restriction<|>Overweight baggage refers to items that exceed the standard weight limits and require special approval for transport.)\n##\n("entity"<|>ADDITIONAL SPORTS EQUIPMENT<|>Special Item<|>Additional sports equipment refers to any sports items brought beyond the standard baggage allowance.)\n##\n("entity"<|>32 KG<|>Weight Category<|>32 kg is the maximum weight limit for sports equipment in Business Class.)\n##\n("entity"<|>30 KG<|>Weight Category<|>30 kg is the maximum weight limit for sports equipment in Economy and Premium Class.)\n##\n("entity"<|>277 CM<|>Linear Dimension<|>277 cm is the maximum total measurement limit for sports equipment to be sent as overweight baggage.)\n##\n("entity"<|>190 CM<|>Linear Dimension<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.)\n##\n("entity"<|>LITE FARES<|>Restriction<|>Lite fares are a type of Economy Class fare that does not allow for complimentary transport of sports equipment.)\n##\n("relationship"<|>ECONOMY CLASS<|>SPORTING EQUIPMENT<|>Economy Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n("relationship"<|>PREMIUM CLASS<|>SPORTING EQUIPMENT<|>Premium Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.<|>8)\n##\n("relationship"<|>BUSINESS CLASS<|>SPORTING EQUIPMENT<|>Business Class allows for the transport of sporting equipment with different weight limits compared to Economy and Premium Class.<|>8)\n##\n("relationship"<|>DIMENSIONS<|>SPORTING EQUIPMENT<|>Dimensions are a critical factor in determining whether sporting equipment can be transported as checked baggage.<|>9)\n##\n("relationship"<|>WEIGHT<|>SPORTING EQUIPMENT<|>Weight is a key restriction that determines if sporting equipment can be transported in the specified travel classes.<|>9)\n##\n("relationship"<|>EL AL CARGO DIVISION<|>SPORTING EQUIPMENT<|>The EL AL Cargo Division provides an alternative for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n##\n("relationship"<|>CALL CENTER<|>OVERWEIGHT BAGGAGE<|>The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.<|>6)\n##\n("relationship"<|>ADDITIONAL SPORTS EQUIPMENT<|>SPORTING EQUIPMENT<|>Additional sports equipment refers to items that can be transported beyond the standard baggage allowance.<|>5)\n##\n("relationship"<|>32 KG<|>BUSINESS CLASS<|>32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n("relationship"<|>30 KG<|>ECONOMY CLASS<|>30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.<|>8)\n##\n("relationship"<|>277 CM<|>OVERWEIGHT BAGGAGE<|>277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.<|>8)\n##\n("relationship"<|>190 CM<|>SPORTING EQUIPMENT<|>190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.<|>8)\n##\n("relationship"<|>LITE FARES<|>ECONOMY CLASS<|>Lite fares are a restriction within Economy Class that affects the transport of sporting equipment.<|>4)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>SKI EQUIPMENT<|>Special Item<|>Ski equipment refers to items specifically designed for skiing, which may have additional transport benefits when flying.)\n##\n("entity"<|>SNOWBOARDING EQUIPMENT<|>Special Item<|>Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.)\n##\n("entity"<|>COMPLIMENTARY TRANSPORT<|>Policy<|>Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.)\n##\n("entity"<|>CALL CENTER APPROVAL<|>Required Document<|>Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is the airline providing specific guidelines for transporting sporting equipment and other baggage types.)\n##\n("entity"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to luggage that is transported in the cargo hold of the aircraft, including sporting equipment under certain conditions.)\n##\n("entity"<|>CARGO<|>Service Type<|>Cargo refers to the service provided for transporting items that exceed standard baggage limits, including sporting equipment.)\n##\n("relationship"<|>SKI EQUIPMENT<|>COMPLIMENTARY TRANSPORT<|>Ski equipment may qualify for complimentary transport under specific conditions set by the airline.<|>7)\n##\n("relationship"<|>SNOWBOARDING EQUIPMENT<|>COMPLIMENTARY TRANSPORT<|>Snowboarding equipment may also qualify for complimentary transport under specific conditions set by the airline.<|>7)\n##\n("relationship"<|>EL AL<|>CHECKED BAGGAGE<|>EL AL provides guidelines for transporting checked baggage, including sporting equipment.<|>8)\n##\n("relationship"<|>CALL CENTER APPROVAL<|>OVERWEIGHT BAGGAGE<|>Call center approval is necessary for transporting overweight baggage, ensuring compliance with airline policies.<|>6)\n##\n("relationship"<|>CARGO<|>SPORTING EQUIPMENT<|>Cargo services are available for transporting sporting equipment that exceeds standard baggage limits.<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:15,952 httpcore.http11 DEBUG send_request_headers.started request= -13:51:15,952 httpcore.http11 DEBUG send_request_headers.complete -13:51:15,952 httpcore.http11 DEBUG send_request_body.started request= -13:51:15,952 httpcore.http11 DEBUG send_request_body.complete -13:51:15,952 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:15,992 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'471'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996171'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'22ms'), (b'x-request-id', b'req_aa0d4c108fd65beb6330988b080132e6'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf627806c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:15,993 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:15,993 httpcore.http11 DEBUG receive_response_body.started request= -13:51:15,994 httpcore.http11 DEBUG receive_response_body.complete -13:51:15,994 httpcore.http11 DEBUG response_closed.started -13:51:15,994 httpcore.http11 DEBUG response_closed.complete -13:51:15,994 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:15,994 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6560000000172295. input_tokens=30, output_tokens=1 -13:51:16,490 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'353'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995956'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'24ms'), (b'x-request-id', b'req_47870b3d9f4861aba693459f9e9de882'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf664aa5c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:16,490 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:16,490 httpcore.http11 DEBUG receive_response_body.started request= -13:51:16,490 httpcore.http11 DEBUG receive_response_body.complete -13:51:16,490 httpcore.http11 DEBUG response_closed.started -13:51:16,490 httpcore.http11 DEBUG response_closed.complete -13:51:16,491 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:16,491 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5470000000204891. input_tokens=30, output_tokens=1 -13:51:16,823 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:17 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8906'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9988377'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'69ms'), (b'x-request-id', b'req_10b9783a34d6cb51ac57b5ea26432db3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf32fea9c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:16,824 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:16,824 httpcore.http11 DEBUG receive_response_body.started request= -13:51:16,824 httpcore.http11 DEBUG receive_response_body.complete -13:51:16,824 httpcore.http11 DEBUG response_closed.started -13:51:16,824 httpcore.http11 DEBUG response_closed.complete -13:51:16,824 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:16,825 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 9.09399999998277. input_tokens=34, output_tokens=660 -13:51:16,830 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE<|>Baggage Type<|>Baggage refers to the items that passengers check in for their flight, which can be delayed, damaged, or lost.)\n##\n("entity"<|>BAGGAGE SERVICE CENTER<|>Service Type<|>The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board.)\n##\n("entity"<|>EL AL<|>Airline<|>EL AL is an airline that provides services related to baggage handling and claims.)\n##\n("entity"<|>BAGGAGE CLAIMS DEPARTMENT<|>Service Location<|>The Baggage Claims Department processes claims related to lost or damaged baggage.)\n##\n("entity"<|>DELAYED BAGGAGE<|>Restriction<|>Delayed baggage refers to baggage that has not arrived with the passenger and must be reported immediately after landing.)\n##\n("entity"<|>CLAIM STATUS<|>Measurement Unit<|>Claim status can be checked using a worldwide system by entering the lost baggage report number and last name.)\n##\n("entity"<|>COURIER SERVICE<|>Service Type<|>The courier service is responsible for delivering retrieved delayed baggage to the passenger\'s address.)\n##\n("entity"<|>CONTACT DETAILS<|>Required Document<|>Contact details include phone numbers and WhatsApp chat options for reporting baggage issues.)\n##\n("entity"<|>LOST BAGGAGE REPORT NUMBER<|>Required Document<|>The lost baggage report number is a 10-character identifier used to check the status of a claim.)\n##\n("entity"<|>BAGGAGE REPORT<|>Required Document<|>A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.)\n##\n("relationship"<|>BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center manages issues related to baggage, including delays and damages<|>8)\n##\n("relationship"<|>BAGGAGE<|>EL AL<|>EL AL is the airline responsible for handling baggage and related claims<|>9)\n##\n("relationship"<|>BAGGAGE SERVICE CENTER<|>BAGGAGE CLAIMS DEPARTMENT<|>The Baggage Service Center coordinates with the Baggage Claims Department for processing claims<|>7)\n##\n("relationship"<|>DELAYED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>Delayed baggage must be reported to the Baggage Service Center for assistance<|>8)\n##\n("relationship"<|>CLAIM STATUS<|>BAGGAGE SERVICE CENTER<|>The status of a claim can be checked through the Baggage Service Center\'s worldwide system<|>6)\n##\n("relationship"<|>BAGGAGE<|>COURIER SERVICE<|>Retrieved delayed baggage is delivered to the passenger\'s address by the courier service<|>7)\n##\n("relationship"<|>BAGGAGE<|>CONTACT DETAILS<|>Contact details are provided for passengers to report baggage issues<|>5)\n##\n("relationship"<|>LOST BAGGAGE REPORT NUMBER<|>CLAIM STATUS<|>The lost baggage report number is required to check the status of a claim<|>8)\n##\n("relationship"<|>BAGGAGE REPORT<|>DELAYED BAGGAGE<|>A baggage report is issued for delayed baggage at the airport<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>DAMAGED BAGGAGE<|>Baggage Type<|>Damaged baggage refers to baggage that has been harmed or compromised during transit and requires reporting for claims.)\n##\n("entity"<|>FORGOTTEN ITEM<|>Prohibited Item<|>An item forgotten on board refers to personal belongings left behind by passengers on the aircraft.)\n##\n("entity"<|>BAGGAGE DELAY<|>Restriction<|>Baggage delay occurs when a passenger\'s checked baggage does not arrive at the destination with them.)\n##\n("entity"<|>BAGGAGE CLAIM<|>Service Type<|>Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.)\n##\n("entity"<|>BAGGAGE HANDLING<|>Service Type<|>Baggage handling refers to the procedures and services involved in managing passengers\' baggage during travel.)\n##\n("entity"<|>BAGGAGE REPORTING<|>Service Type<|>Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.)\n##\n("entity"<|>BAGGAGE DELIVERY<|>Service Type<|>Baggage delivery is the service that ensures retrieved baggage is sent to the passenger\'s specified address.)\n##\n("entity"<|>BAGGAGE CLAIMS PROCESS<|>Policy<|>The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.)\n##\n("relationship"<|>DAMAGED BAGGAGE<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center handles cases of damaged baggage reported by passengers<|>8)\n##\n("relationship"<|>FORGOTTEN ITEM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center assists passengers with items forgotten on board<|>7)\n##\n("relationship"<|>BAGGAGE DELAY<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center is responsible for managing reports of baggage delays<|>8)\n##\n("relationship"<|>BAGGAGE CLAIM<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center facilitates the baggage claim process for passengers<|>9)\n##\n("relationship"<|>BAGGAGE HANDLING<|>BAGGAGE SERVICE CENTER<|>Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage<|>8)\n##\n("relationship"<|>BAGGAGE REPORTING<|>BAGGAGE SERVICE CENTER<|>Passengers report baggage issues to the Baggage Service Center for resolution<|>9)\n##\n("relationship"<|>BAGGAGE DELIVERY<|>COURIER SERVICE<|>The courier service is responsible for the delivery of baggage to the passenger\'s address after retrieval<|>8)\n##\n("relationship"<|>BAGGAGE CLAIMS PROCESS<|>BAGGAGE SERVICE CENTER<|>The Baggage Service Center follows the baggage claims process to assist passengers<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:16,831 httpcore.http11 DEBUG send_request_headers.started request= -13:51:16,831 httpcore.http11 DEBUG send_request_headers.complete -13:51:16,831 httpcore.http11 DEBUG send_request_body.started request= -13:51:16,831 httpcore.http11 DEBUG send_request_body.complete -13:51:16,831 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:17,435 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:17 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'418'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996309'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'22ms'), (b'x-request-id', b'req_eff0388407ee266f42e10c0e0ad6cb8e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf6bcc65c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:17,435 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:17,435 httpcore.http11 DEBUG receive_response_body.started request= -13:51:17,435 httpcore.http11 DEBUG receive_response_body.complete -13:51:17,437 httpcore.http11 DEBUG response_closed.started -13:51:17,437 httpcore.http11 DEBUG response_closed.complete -13:51:17,437 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:17,437 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6089999999967404. input_tokens=30, output_tokens=1 -13:51:18,367 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:18 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2538'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996972'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'18ms'), (b'x-request-id', b'req_16a7404bc786be436a4d9a6a57475413'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf6459aaed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:18,367 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:18,367 httpcore.http11 DEBUG receive_response_body.started request= -13:51:18,368 httpcore.http11 DEBUG receive_response_body.complete -13:51:18,368 httpcore.http11 DEBUG response_closed.started -13:51:18,368 httpcore.http11 DEBUG response_closed.complete -13:51:18,368 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:18,369 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 2.7339999999967404. input_tokens=30, output_tokens=1 -13:51:18,701 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:18 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9174'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992486'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'45ms'), (b'x-request-id', b'req_fbc5ae690e3161949470b518cdd1dac4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf3d1dadc22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:18,702 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:18,702 httpcore.http11 DEBUG receive_response_body.started request= -13:51:18,702 httpcore.http11 DEBUG receive_response_body.complete -13:51:18,702 httpcore.http11 DEBUG response_closed.started -13:51:18,702 httpcore.http11 DEBUG response_closed.complete -13:51:18,703 httpcore.connection DEBUG close.started -13:51:18,703 httpcore.connection DEBUG close.complete -13:51:18,703 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:18,704 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 9.35899999999674. input_tokens=34, output_tokens=600 -13:51:18,709 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon � Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE TAG<|>LABEL TYPE<|>A baggage tag is a label attached to luggage that provides information about the owner and destination of the baggage.)\n##\n("entity"<|>BAGGAGE CLAIMS DEPARTMENT<|>SERVICE LOCATION<|>The Baggage Claims Department is responsible for handling reports of damaged baggage and processing claims.)\n##\n("entity"<|>EL AL ISRAEL AIRLINES LTD.<|>AIRLINE<|>EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.)\n##\n("entity"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines.)\n##\n("entity"<|>DIGITAL CONTACT FORM<|>REQUIRED DOCUMENT<|>The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.)\n##\n("entity"<|>MAKOR HAZIUD<|>SERVICE TYPE<|>Makor Haziud is a store that specializes in baggage and outdoor equipment.)\n##\n("entity"<|>WE SHOES<|>SERVICE TYPE<|>WeShoes is a store that sells shoes and may also provide related services.)\n##\n("entity"<|>MEMSI TOURING<|>SERVICE TYPE<|>Memsi Touring is a service provider that may offer travel-related services, including baggage handling.)\n##\n("entity"<|>ARTY RIMON<|>SERVICE TYPE<|>ARTY Rimon is a service provider that offers pickup and delivery services for baggage.)\n##\n("entity"<|>SHIN TIK<|>SERVICE TYPE<|>Shin Tik is a service provider that may offer travel-related services, including baggage handling.)\n##\n("entity"<|>TREK MARKET<|>SERVICE TYPE<|>Trek Market is a service provider that may offer travel-related services, including baggage handling.)\n##\n("entity"<|>KIRYAT ONO<|>GEO<|>Kiryat Ono is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>RAMAT GAN<|>GEO<|>Ramat Gan is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>GEVATAIM<|>GEO<|>Gevataim is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>BAT YAM<|>GEO<|>Bat Yam is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>HOLON<|>GEO<|>Holon is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>PETACH TIKVA<|>GEO<|>Petach Tikva is a city in Israel where various stores and services related to baggage are located.)\n##\n("relationship"<|>BAGGAGE TAG<|>BAGGAGE CLAIMS DEPARTMENT<|>The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.<|>8)\n##\n("relationship"<|>BAGGAGE CLAIMS DEPARTMENT<|>EL AL ISRAEL AIRLINES LTD.<|>The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.<|>9)\n##\n("relationship"<|>EL AL ISRAEL AIRLINES LTD.<|>BEN GURION AIRPORT<|>EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.<|>9)\n##\n("relationship"<|>DIGITAL CONTACT FORM<|>BAGGAGE CLAIMS DEPARTMENT<|>The Digital Contact Form is used to submit claims to the Baggage Claims Department.<|>7)\n##\n("relationship"<|>MAKOR HAZIUD<|>BAGGAGE CLAIMS DEPARTMENT<|>Makor Haziud may provide equipment that is relevant for baggage handling and claims.<|>4)\n##\n("relationship"<|>WE SHOES<|>BAGGAGE CLAIMS DEPARTMENT<|>WeShoes may provide services related to baggage handling and claims.<|>4)\n##\n("relationship"<|>MEMSI TOURING<|>BAGGAGE CLAIMS DEPARTMENT<|>Memsi Touring may offer services that assist with baggage handling and claims.<|>4)\n##\n("relationship"<|>ARTY RIMON<|>BAGGAGE CLAIMS DEPARTMENT<|>ARTY Rimon provides pickup and delivery services that may relate to baggage claims.<|>5)\n##\n("relationship"<|>SHIN TIK<|>BAGGAGE CLAIMS DEPARTMENT<|>Shin Tik may provide services that assist with baggage handling and claims.<|>4)\n##\n("relationship"<|>TREK MARKET<|>BAGGAGE CLAIMS DEPARTMENT<|>Trek Market may offer services that assist with baggage handling and claims.<|>4)\n##\n("relationship"<|>KIRYAT ONO<|>BAGGAGE CLAIMS DEPARTMENT<|>Kiryat Ono has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>RAMAT GAN<|>BAGGAGE CLAIMS DEPARTMENT<|>Ramat Gan has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>GEVATAIM<|>BAGGAGE CLAIMS DEPARTMENT<|>Gevataim has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>BAT YAM<|>BAGGAGE CLAIMS DEPARTMENT<|>Bat Yam has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>HOLON<|>BAGGAGE CLAIMS DEPARTMENT<|>Holon has stores that may assist with baggage claims and services.<|>3)\n##\n("relationship"<|>PETACH TIKVA<|>BAGGAGE CLAIMS DEPARTMENT<|>Petach Tikva has stores that may assist with baggage claims and services.<|>3)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>CARGO<|>SERVICE TYPE<|>Cargo refers to the goods or merchandise transported, which may include baggage and other items handled at the airport.)\n##\n("entity"<|>ZIP CODE 7015001<|>REQUIRED DOCUMENT<|>Zip Code 7015001 is the postal code for the mailing address of the Baggage Claims Department at Ben Gurion Airport.)\n##\n("entity"<|>TEL AVIV<|>GEO<|>Tel Aviv is a city in Israel where various stores and services related to baggage are located.)\n##\n("entity"<|>ADDRESS<|>REQUIRED DOCUMENT<|>Address refers to the specific location details required for sending claims or correspondence related to baggage.)\n##\n("entity"<|>SERVICE PICKUP AND DELIVERY<|>SERVICE TYPE<|>Service Pickup and Delivery refers to the service provided by various stores to collect and deliver baggage for customers.)\n##\n("entity"<|>BAVLI NEIGHBORHOOD<|>GEO<|>Bavli Neighborhood is a specific area in Tel Aviv where baggage-related services are offered.)\n##\n("entity"<|>HAAILIYA STREET 24<|>REQUIRED DOCUMENT<|>Haaliya Street 24 is the address of Makor Haziud, a store that sells baggage and outdoor equipment.)\n##\n("entity"<|>BIALIK 3<|>REQUIRED DOCUMENT<|>Bialik 3 is the address of WeShoes, a store that may provide services related to baggage.)\n##\n("entity"<|>STEINMAN 20<|>REQUIRED DOCUMENT<|>Steinman 20 is the address of Log In Log Out, an importer of luggage and bags.)\n##\n("entity"<|>SOKOLOV 59<|>REQUIRED DOCUMENT<|>Sokolov 59 is the address of Shin Tik, a service provider related to baggage handling.)\n##\n("entity"<|>IZTHAK RABIN 2<|>REQUIRED DOCUMENT<|>Izthak Rabin 2 is the address of Trek Market, a service provider related to baggage handling.)\n##\n("entity"<|>SHLOMO HA-MELEKH 37<|>REQUIRED DOCUMENT<|>Shlomo Ha-Melekh 37 is the address of WeShoes in Kiryat Ono.)\n##\n("entity"<|>HAMERETZ 6<|>REQUIRED DOCUMENT<|>Hameretz 6 is the address of ARTY Rimon in Petach Tikva.)\n##\n("entity"<|>SERVICE<|>SERVICE TYPE<|>Service refers to the various types of assistance provided to customers regarding baggage handling and claims.)\n##\n("entity"<|>WHATSAPP<|>REQUIRED DOCUMENT<|>WhatsApp is a communication tool used by various stores for customer service related to baggage.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:18,710 httpcore.http11 DEBUG send_request_headers.started request= -13:51:18,710 httpcore.http11 DEBUG send_request_headers.complete -13:51:18,710 httpcore.http11 DEBUG send_request_body.started request= -13:51:18,710 httpcore.http11 DEBUG send_request_body.complete -13:51:18,710 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:18,857 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:19 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7539'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992501'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'44ms'), (b'x-request-id', b'req_f42e8b3e0a8669109476c13b28eecad8'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf480e0ac233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:18,857 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:18,857 httpcore.http11 DEBUG receive_response_body.started request= -13:51:18,858 httpcore.http11 DEBUG receive_response_body.complete -13:51:18,858 httpcore.http11 DEBUG response_closed.started -13:51:18,858 httpcore.http11 DEBUG response_closed.complete -13:51:18,858 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:18,859 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 7.75. input_tokens=34, output_tokens=597 -13:51:18,864 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n\u200b\u200bDo not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier\'s website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven\'t checked in yet, you can add baggage via Manage my booking.\nIf you\'ve already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that provides baggage check-in services and has specific baggage policies for different travel classes.)\n##\n("entity"<|>PREMIUM CLASS<|>TRAVEL CLASS<|>Premium class tickets allow passengers to check up to two pieces of baggage weighing up to 23 kg each.)\n##\n("entity"<|>BUSINESS CLASS<|>TRAVEL CLASS<|>Business class tickets allow passengers to check up to two pieces of baggage weighing up to 32 kg each.)\n##\n("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is checked in at the airport and transported in the cargo hold of the aircraft.)\n##\n("entity"<|>CARRY-ON ALLOWANCE<|>ALLOWANCE<|>Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.)\n##\n("entity"<|>23 KG<|>WEIGHT<|>23 kg is the maximum weight allowed for each piece of checked baggage in premium class.)\n##\n("entity"<|>32 KG<|>WEIGHT<|>32 kg is the maximum weight allowed for each piece of checked baggage in business class.)\n##\n("entity"<|>ADDITIONAL HANDLING FEE<|>FEE STRUCTURE<|>An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.)\n##\n("entity"<|>EXCESS BAGGAGE<|>RESTRICTION<|>Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.)\n##\n("entity"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance is determined by the ticket type and specifies how much baggage a passenger can check without incurring extra fees.)\n##\n("entity"<|>CODE-SHARE FLIGHTS<|>ROUTE TYPE<|>Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.)\n##\n("entity"<|>MANAGE MY BOOKING<|>SERVICE TYPE<|>Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.)\n##\n("entity"<|>CHECK-IN PROCESS<|>SERVICE TYPE<|>The check-in process is the procedure passengers go through to confirm their presence on a flight and check in their baggage.)\n##\n("entity"<|>FLIGHT SEGMENT<|>TIME PERIOD<|>A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.)\n##\n("relationship"<|>EL AL<|>PREMIUM CLASS<|>EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each<|>8)\n##\n("relationship"<|>EL AL<|>BUSINESS CLASS<|>EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each<|>8)\n##\n("relationship"<|>CHECKED BAGGAGE<|>PREMIUM CLASS<|>Premium class includes checked baggage allowances<|>7)\n##\n("relationship"<|>CHECKED BAGGAGE<|>BUSINESS CLASS<|>Business class includes checked baggage allowances<|>7)\n##\n("relationship"<|>ADDITIONAL HANDLING FEE<|>EL AL<|>EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center<|>6)\n##\n("relationship"<|>EXCESS BAGGAGE<|>CHECKED BAGGAGE<|>Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees<|>7)\n##\n("relationship"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance determines how much checked baggage a passenger can bring<|>8)\n##\n("relationship"<|>CODE-SHARE FLIGHTS<|>CHECKED BAGGAGE<|>Baggage procedures may vary on code-share flights depending on the marketing carrier<|>5)\n##\n("relationship"<|>MANAGE MY BOOKING<|>EL AL<|>Passengers can add baggage via the Manage my booking service provided by EL AL<|>7)\n##\n("relationship"<|>CHECK-IN PROCESS<|>EL AL<|>Passengers can add baggage during the check-in process for their EL AL flight<|>7)\n##\n("relationship"<|>FLIGHT SEGMENT<|>BAGGAGE ALLOWANCE<|>Baggage allowance is specified for each flight segment on the ticket<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>$90<|>FEE STRUCTURE<|>The cost to check a piece of baggage not included in the ticket price is $90 when reserved at the airport.)\n##\n("entity"<|>$5<|>FEE STRUCTURE<|>An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.)\n##\n("entity"<|>50% DISCOUNT<|>POLICY<|>Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.)\n##\n("entity"<|>TICKET TYPE<|>DIMENSION<|>The ticket type determines the baggage allowance and rules applicable to each passenger\'s reservation.)\n##\n("entity"<|>CHECKED BAGGAGE RULES<|>POLICY<|>Checked baggage rules may vary when several airlines are involved in a flight route.)\n##\n("entity"<|>FREE BAGGAGE ALLOWANCE<|>ALLOWANCE<|>The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.)\n##\n("entity"<|>ADDITIONAL PIECES OF CHECKED BAGGAGE<|>RESTRICTION<|>There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.)\n##\n("relationship"<|>$90<|>CHECKED BAGGAGE<|>The fee of $90 is specifically for checking a piece of baggage not included in the ticket price<|>8)\n##\n("relationship"<|>$5<|>EL AL<|>The additional handling fee of $5 is charged by EL AL for baggage checked through their service center<|>6)\n##\n("relationship"<|>50% DISCOUNT<|>EL AL<|>EL AL offers a 50% discount on baggage fees if purchased online before the flight<|>7)\n##\n("relationship"<|>TICKET TYPE<|>BAGGAGE ALLOWANCE<|>The baggage allowance is determined by the ticket type specified on the reservation<|>8)\n##\n("relationship"<|>CHECKED BAGGAGE RULES<|>EL AL<|>Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL\'s policies<|>5)\n##\n("relationship"<|>FREE BAGGAGE ALLOWANCE<|>TICKET TYPE<|>The free baggage allowance is based on the ticket type and is specified for each flight segment<|>7)\n##\n("relationship"<|>ADDITIONAL PIECES OF CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Additional pieces of checked baggage incur fees beyond the standard allowance<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:18,865 httpcore.http11 DEBUG send_request_headers.started request= -13:51:18,865 httpcore.http11 DEBUG send_request_headers.complete -13:51:18,865 httpcore.http11 DEBUG send_request_body.started request= -13:51:18,865 httpcore.http11 DEBUG send_request_body.complete -13:51:18,865 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:19,10 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:19 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'6534'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993059'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'41ms'), (b'x-request-id', b'req_6221932e6bf241bfff9d056635d2a965'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf4f5f227da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:19,10 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:19,10 httpcore.http11 DEBUG receive_response_body.started request= -13:51:19,10 httpcore.http11 DEBUG receive_response_body.complete -13:51:19,11 httpcore.http11 DEBUG response_closed.started -13:51:19,11 httpcore.http11 DEBUG response_closed.complete -13:51:19,11 httpcore.connection DEBUG close.started -13:51:19,11 httpcore.connection DEBUG close.complete -13:51:19,11 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:19,12 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 6.7189999999827705. input_tokens=34, output_tokens=459 -13:51:19,17 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al\'s baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to the luggage that passengers check in at the airport, which is transported in the cargo hold of the aircraft.)\n##\n("entity"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the standard dimensions set by airlines, requiring special handling and potentially incurring additional fees.)\n##\n("entity"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit established by airlines, often resulting in extra charges.)\n##\n("entity"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>El Al is an airline known for its baggage policies, which are similar to those of Sundor.)\n##\n("entity"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service where passengers can view and modify their flight details, including baggage allowances.)\n##\n("entity"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger\'s reservation and includes details about baggage allowances.)\n##\n("entity"<|>DIMENSIONS<|>DIMENSION<|>Dimensions refer to the measurements of baggage, which determine whether it is classified as standard, oversized, or overweight.)\n##\n("entity"<|>WEIGHT<|>WEIGHT<|>Weight refers to the heaviness of baggage, which is a critical factor in determining if it is overweight.)\n##\n("relationship"<|>CHECKED BAGGAGE<|>SUNDOR<|>Sundor has specific policies regarding checked baggage allowances for passengers<|>7)\n##\n("relationship"<|>CHECKED BAGGAGE<|>EL AL<|>El Al\'s baggage policy is similar to that of Sundor, affecting checked baggage allowances<|>7)\n##\n("relationship"<|>OVERSIZED BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling oversized baggage<|>6)\n##\n("relationship"<|>OVERWEIGHT BAGGAGE<|>SUNDOR<|>Sundor has specific guidelines for handling overweight baggage<|>6)\n##\n("relationship"<|>MANAGE YOUR BOOKING<|>FLIGHT TICKET<|>The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances<|>8)\n##\n("relationship"<|>DIMENSIONS<|>OVERSIZED BAGGAGE<|>Oversized baggage is defined by exceeding authorized dimensions<|>9)\n##\n("relationship"<|>WEIGHT<|>OVERWEIGHT BAGGAGE<|>Overweight baggage is defined by exceeding the weight limit set by the airline<|>9)\n##\n("relationship"<|>OVERSIZED BAGGAGE<|>OVERWEIGHT BAGGAGE<|>Both oversized and overweight baggage require special handling and may incur additional fees<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n("entity"<|>BAGGAGE POLICY<|>POLICY<|>Baggage policy outlines the rules and regulations regarding the types, sizes, and weights of baggage that passengers can bring on flights.)\n##\n("entity"<|>STANDARD BAGGAGE<|>BAGGAGE TYPE<|>Standard baggage refers to luggage that meets the airline\'s specified dimensions and weight limits without incurring extra charges.)\n##\n("entity"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>SERVICE LOCATION<|>The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage for check-in.)\n##\n("relationship"<|>BAGGAGE ALLOWANCE<|>BAGGAGE POLICY<|>Baggage allowance is determined by the baggage policy of the airline<|>8)\n##\n("relationship"<|>BAGGAGE POLICY<|>SUNDOR<|>Sundor has a specific baggage policy that dictates the rules for checked baggage<|>7)\n##\n("relationship"<|>BAGGAGE POLICY<|>EL AL<|>El Al has a specific baggage policy that dictates the rules for checked baggage<|>7)\n##\n("relationship"<|>STANDARD BAGGAGE<|>BAGGAGE POLICY<|>Standard baggage must comply with the airline\'s baggage policy<|>8)\n##\n("relationship"<|>OVERSIZED BAGGAGE<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>Passengers with oversized baggage must take their bags to the designated location for check-in<|>7)\n##\n("relationship"<|>OVERWEIGHT BAGGAGE<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>Passengers with overweight baggage must take their bags to the designated location for check-in<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:19,18 httpcore.http11 DEBUG send_request_headers.started request= -13:51:19,18 httpcore.http11 DEBUG send_request_headers.complete -13:51:19,18 httpcore.http11 DEBUG send_request_body.started request= -13:51:19,18 httpcore.http11 DEBUG send_request_body.complete -13:51:19,18 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:19,235 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:19 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'336'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995900'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'24ms'), (b'x-request-id', b'req_2afeba5f5a92c0e47a9d201ec11f9865'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf778e78c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:19,235 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:19,235 httpcore.http11 DEBUG receive_response_body.started request= -13:51:19,235 httpcore.http11 DEBUG receive_response_body.complete -13:51:19,235 httpcore.http11 DEBUG response_closed.started -13:51:19,236 httpcore.http11 DEBUG response_closed.complete -13:51:19,236 httpcore.connection DEBUG close.started -13:51:19,236 httpcore.connection DEBUG close.complete -13:51:19,236 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:19,236 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5310000000172295. input_tokens=30, output_tokens=1 -13:51:19,417 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:19 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'364'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995909'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'24ms'), (b'x-request-id', b'req_8dd2cd371b6ca57d6cfd78534d2ecf61'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf788e0cc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:19,417 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:19,417 httpcore.http11 DEBUG receive_response_body.started request= -13:51:19,418 httpcore.http11 DEBUG receive_response_body.complete -13:51:19,418 httpcore.http11 DEBUG response_closed.started -13:51:19,418 httpcore.http11 DEBUG response_closed.complete -13:51:19,418 httpcore.connection DEBUG close.started -13:51:19,418 httpcore.connection DEBUG close.complete -13:51:19,418 httpcore.connection DEBUG close.started -13:51:19,418 httpcore.connection DEBUG close.complete -13:51:19,419 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:19,419 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5630000000237487. input_tokens=30, output_tokens=2 -13:51:19,618 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:19 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'413'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996595'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'20ms'), (b'x-request-id', b'req_aaa051adaa5fc501e46d3361e78dd721'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf797fd3ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:19,618 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:19,619 httpcore.http11 DEBUG receive_response_body.started request= -13:51:19,619 httpcore.http11 DEBUG receive_response_body.complete -13:51:19,619 httpcore.http11 DEBUG response_closed.started -13:51:19,619 httpcore.http11 DEBUG response_closed.complete -13:51:19,619 httpcore.connection DEBUG close.started -13:51:19,619 httpcore.connection DEBUG close.complete -13:51:19,620 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:19,620 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5929999999934807. input_tokens=30, output_tokens=1 -13:51:19,842 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:20 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11002'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992989'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'42ms'), (b'x-request-id', b'req_47cda3e8408e71c348798342886d6fb7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf38abf6c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:19,842 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:19,843 httpcore.http11 DEBUG receive_response_body.started request= -13:51:19,843 httpcore.http11 DEBUG receive_response_body.complete -13:51:19,843 httpcore.http11 DEBUG response_closed.started -13:51:19,843 httpcore.http11 DEBUG response_closed.complete -13:51:19,843 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:19,844 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 11.202999999979511. input_tokens=34, output_tokens=822 -13:51:19,849 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when boarding a flight.)\n##\n("entity"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may be considered dangerous goods due to their lithium batteries and require special handling.)\n##\n("entity"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may contain batteries or other components classified as dangerous goods.)\n##\n("entity"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their flammability and potential hazards.)\n##\n("entity"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosives like acids and wet cell batteries are prohibited on aircraft due to their hazardous nature.)\n##\n("entity"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are forbidden on aircraft for safety reasons.)\n##\n("entity"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to their potential to ignite.)\n##\n("entity"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are forbidden on aircraft due to safety and health risks.)\n##\n("entity"<|>BRIEFCASES WITH ALARM DEVICES<|>PROHIBITED ITEM<|>Briefcases with installed alarm devices are prohibited on aircraft for security reasons.)\n##\n("entity"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials like hydrogen peroxide are prohibited on aircraft due to their reactive nature.)\n##\n("entity"<|>POISONS<|>PROHIBITED ITEM<|>Poisons and infectious substances are forbidden on aircraft due to their hazardous effects on health.)\n##\n("entity"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can interfere with navigation and safety equipment.)\n##\n("relationship"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries, which are classified as dangerous goods and require special handling<|>8)\n##\n("relationship"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may contain batteries, which are classified as dangerous goods<|>8)\n##\n("relationship"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Corrosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Explosives and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Radioactive materials and flammable liquids are both classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>BRIEFCASES WITH ALARM DEVICES<|>FLAMMABLE LIQUIDS<|>Both briefcases with alarm devices and flammable liquids are prohibited on aircraft<|>6)\n##\n("relationship"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Oxidizing materials and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n("relationship"<|>POISONS<|>FLAMMABLE LIQUIDS<|>Poisons and flammable liquids are both classified as prohibited items on aircraft<|>6)\n##\n("relationship"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>High-strength magnetic materials and flammable liquids are both prohibited on aircraft<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>BUTANE<|>DANGEROUS GOOD<|>Butane is a type of compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its flammability.)\n##\n("entity"<|>OXYGEN<|>DANGEROUS GOOD<|>Oxygen is a compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its potential hazards.)\n##\n("entity"<|>AQUALUNG CYLINDERS<|>DANGEROUS GOOD<|>Aqualung cylinders are classified as dangerous goods and are prohibited on aircraft due to their compressed gas content.)\n##\n("entity"<|>COMPRESSED GAS CYLINDERS<|>DANGEROUS GOOD<|>Compressed gas cylinders are classified as dangerous goods and are prohibited on aircraft due to their potential hazards.)\n##\n("entity"<|>ACIDS<|>DANGEROUS GOOD<|>Acids are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n("entity"<|>ALKALIS<|>DANGEROUS GOOD<|>Alkalis are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n("entity"<|>WET CELL BATTERIES<|>DANGEROUS GOOD<|>Wet cell batteries are classified as corrosives and are prohibited on aircraft due to their hazardous nature.)\n##\n("entity"<|>MATERIALS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Materials containing mercury are classified as dangerous goods and are prohibited on aircraft due to their toxicity.)\n##\n("entity"<|>LIGHT AMMUNITION<|>RESTRICTED ITEM<|>Light ammunition is restricted on aircraft and may be subject to specific regulations.)\n##\n("entity"<|>FLAMMABLE SOLIDS<|>DANGEROUS GOOD<|>Flammable solids are classified as dangerous goods and are prohibited on aircraft due to their potential to ignite.)\n##\n("relationship"<|>BUTANE<|>COMPRESSED GASES<|>Butane is a type of compressed gas that is classified as a dangerous good<|>8)\n##\n("relationship"<|>OXYGEN<|>COMPRESSED GASES<|>Oxygen is a type of compressed gas that is classified as a dangerous good<|>8)\n##\n("relationship"<|>AQUALUNG CYLINDERS<|>COMPRESSED GASES<|>Aqualung cylinders are classified as dangerous goods due to their compressed gas content<|>8)\n##\n("relationship"<|>COMPRESSED GAS CYLINDERS<|>COMPRESSED GASES<|>Compressed gas cylinders are classified as dangerous goods<|>8)\n##\n("relationship"<|>ACIDS<|>CORROSIVES<|>Acids are classified as corrosives and are prohibited on aircraft<|>8)\n##\n("relationship"<|>ALKALIS<|>CORROSIVES<|>Alkalis are classified as corrosives and are prohibited on aircraft<|>8)\n##\n("relationship"<|>WET CELL BATTERIES<|>CORROSIVES<|>Wet cell batteries are classified as corrosives and are prohibited on aircraft<|>8)\n##\n("relationship"<|>MATERIALS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Materials containing mercury are classified as dangerous goods and are prohibited on aircraft<|>8)\n##\n("relationship"<|>LIGHT AMMUNITION<|>EXPLOSIVES<|>Light ammunition is restricted on aircraft and may be subject to specific regulations<|>5)\n##\n("relationship"<|>FLAMMABLE SOLIDS<|>FLAMMABLE LIQUIDS<|>Flammable solids are classified as dangerous goods and are prohibited on aircraft<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:19,850 httpcore.http11 DEBUG send_request_headers.started request= -13:51:19,850 httpcore.http11 DEBUG send_request_headers.complete -13:51:19,851 httpcore.http11 DEBUG send_request_body.started request= -13:51:19,851 httpcore.http11 DEBUG send_request_body.complete -13:51:19,851 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:20,370 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:20 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'339'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996194'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'22ms'), (b'x-request-id', b'req_9d8d9b4663f27a774d7a2f6e8b6bcb40'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf7ea961c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:20,370 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:20,371 httpcore.http11 DEBUG receive_response_body.started request= -13:51:20,371 httpcore.http11 DEBUG receive_response_body.complete -13:51:20,371 httpcore.http11 DEBUG response_closed.started -13:51:20,371 httpcore.http11 DEBUG response_closed.complete -13:51:20,371 httpcore.connection DEBUG close.started -13:51:20,371 httpcore.connection DEBUG close.complete -13:51:20,371 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:20,372 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5310000000172295. input_tokens=30, output_tokens=1 -13:51:21,282 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:21 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8460'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992637'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'44ms'), (b'x-request-id', b'req_57274a192545c61a5d9ef7603628d0e3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf514fa17da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:21,282 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:21,282 httpcore.http11 DEBUG receive_response_body.started request= -13:51:21,283 httpcore.http11 DEBUG receive_response_body.complete -13:51:21,283 httpcore.http11 DEBUG response_closed.started -13:51:21,283 httpcore.http11 DEBUG response_closed.complete -13:51:21,283 httpcore.connection DEBUG close.started -13:51:21,283 httpcore.connection DEBUG close.complete -13:51:21,283 httpcore.connection DEBUG close.started -13:51:21,283 httpcore.connection DEBUG close.complete -13:51:21,284 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:21,284 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.703000000037719. input_tokens=34, output_tokens=602 -13:51:21,289 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BATTERIES<|>DANGEROUS GOOD<|>Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft.)\n##\n("entity"<|>LAPTOP<|>DANGEROUS GOOD<|>Laptops may contain batteries that are classified as dangerous goods and must be handled according to airline regulations.)\n##\n("entity"<|>MEDICAL EQUIPMENT<|>DANGEROUS GOOD<|>Medical equipment may include batteries and other components that are classified as dangerous goods.)\n##\n("entity"<|>COMPRESSED GASES<|>PROHIBITED ITEM<|>Compressed gases such as butane and oxygen are forbidden on aircraft due to their dangerous nature.)\n##\n("entity"<|>CORROSIVES<|>PROHIBITED ITEM<|>Corrosive substances like acids and wet cell batteries are prohibited on aircraft.)\n##\n("entity"<|>EXPLOSIVES<|>PROHIBITED ITEM<|>Explosives, other than light ammunition, are prohibited on aircraft.)\n##\n("entity"<|>FLAMMABLE LIQUIDS<|>PROHIBITED ITEM<|>Flammable liquids and solids are prohibited on aircraft due to safety concerns.)\n##\n("entity"<|>RADIOACTIVE MATERIALS<|>PROHIBITED ITEM<|>Radioactive materials are prohibited on aircraft for safety reasons.)\n##\n("entity"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>High-strength magnetic materials are prohibited on aircraft as they can harm people or the environment.)\n##\n("entity"<|>SPARE BATTERIES<|>ALLOWANCE<|>Spare batteries must be protected from damage and short circuit when taken aboard an aircraft.)\n##\n("entity"<|>DRY CELL ALKALINE BATTERIES<|>ALLOWANCE<|>Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.)\n##\n("entity"<|>LITHIUM-ION BATTERIES<|>ALLOWANCE<|>Lithium-ion batteries, including consumer-grade types, are allowed aboard aircraft with specific watt-hour limits.)\n##\n("entity"<|>PORTABLE CHARGERS<|>ALLOWANCE<|>Portable chargers are considered batteries and may be taken aboard aircraft under certain conditions.)\n##\n("relationship"<|>BATTERIES<|>LAPTOP<|>Laptops contain batteries that are classified as dangerous goods and must be handled accordingly<|>8)\n##\n("relationship"<|>BATTERIES<|>MEDICAL EQUIPMENT<|>Medical equipment may include batteries that are classified as dangerous goods<|>8)\n##\n("relationship"<|>COMPRESSED GASES<|>FLAMMABLE LIQUIDS<|>Both compressed gases and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>CORROSIVES<|>FLAMMABLE LIQUIDS<|>Both corrosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>EXPLOSIVES<|>FLAMMABLE LIQUIDS<|>Both explosives and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>RADIOACTIVE MATERIALS<|>FLAMMABLE LIQUIDS<|>Both radioactive materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>HIGH-STRENGTH MAGNETIC MATERIALS<|>FLAMMABLE LIQUIDS<|>Both high-strength magnetic materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>SPARE BATTERIES<|>LITHIUM-ION BATTERIES<|>Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions<|>6)\n##\n("relationship"<|>DRY CELL ALKALINE BATTERIES<|>LITHIUM-ION BATTERIES<|>Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>ACIDS<|>PROHIBITED ITEM<|>Acids are classified as corrosive substances and are prohibited on aircraft due to safety concerns.)\n##\n("entity"<|>ALKALIS<|>PROHIBITED ITEM<|>Alkalis are classified as corrosive substances and are prohibited on aircraft due to safety concerns.)\n##\n("entity"<|>WET CELL BATTERIES<|>PROHIBITED ITEM<|>Wet cell batteries are classified as corrosive substances and are prohibited on aircraft.)\n##\n("entity"<|>ITEMS CONTAINING MERCURY<|>PROHIBITED ITEM<|>Items containing mercury are classified as dangerous goods and are prohibited on aircraft.)\n##\n("entity"<|>LIGHT AMMUNITION<|>RESTRICTED ITEM<|>Light ammunition is restricted on aircraft and may be subject to specific regulations.)\n##\n("entity"<|>OXIDIZING MATERIALS<|>PROHIBITED ITEM<|>Oxidizing materials such as hydrogen peroxide and bleaching powders are prohibited on aircraft.)\n##\n("entity"<|>POISONS<|>PROHIBITED ITEM<|>Poisons, including insecticides and herbicides, are classified as dangerous goods and are prohibited on aircraft.)\n##\n("entity"<|>INFECTIOUS SUBSTANCES<|>PROHIBITED ITEM<|>Infectious substances, including live virus materials, are classified as dangerous goods and are prohibited on aircraft.)\n##\n("entity"<|>MAGNETIC MATERIALS<|>PROHIBITED ITEM<|>Magnetic materials that can harm people or the environment are prohibited on aircraft.)\n##\n("relationship"<|>ACIDS<|>CORROSIVES<|>Acids are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n("relationship"<|>ALKALIS<|>CORROSIVES<|>Alkalis are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n("relationship"<|>WET CELL BATTERIES<|>CORROSIVES<|>Wet cell batteries are a type of corrosive substance that is prohibited on aircraft<|>8)\n##\n("relationship"<|>ITEMS CONTAINING MERCURY<|>DANGEROUS GOOD<|>Items containing mercury are classified as dangerous goods and are prohibited on aircraft<|>8)\n##\n("relationship"<|>OXIDIZING MATERIALS<|>FLAMMABLE LIQUIDS<|>Both oxidizing materials and flammable liquids are classified as prohibited items on aircraft<|>7)\n##\n("relationship"<|>POISONS<|>INFECTIOUS SUBSTANCES<|>Both poisons and infectious substances are classified as prohibited items on aircraft<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:21,290 httpcore.http11 DEBUG send_request_headers.started request= -13:51:21,291 httpcore.http11 DEBUG send_request_headers.complete -13:51:21,291 httpcore.http11 DEBUG send_request_body.started request= -13:51:21,291 httpcore.http11 DEBUG send_request_body.complete -13:51:21,291 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:21,635 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:21 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11317'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992850'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'42ms'), (b'x-request-id', b'req_296d3de0fd54b87c1c1152300003e222'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf42184c7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:21,635 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:21,635 httpcore.http11 DEBUG receive_response_body.started request= -13:51:21,636 httpcore.http11 DEBUG receive_response_body.complete -13:51:21,636 httpcore.http11 DEBUG response_closed.started -13:51:21,636 httpcore.http11 DEBUG response_closed.complete -13:51:21,636 httpcore.connection DEBUG close.started -13:51:21,636 httpcore.connection DEBUG close.complete -13:51:21,636 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:21,637 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 11.48399999999674. input_tokens=34, output_tokens=709 -13:51:21,642 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery\'s watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials such as hairspray are not allowed to be stored together with other items in baggage.)\n##\n("entity"<|>SPARE LITHIUM BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n("entity"<|>ELECTRONIC DEVICES<|>PROHIBITED ITEM<|>Electronic devices with removable lithium batteries must have the battery taken aboard the aircraft cabin, while the device can be checked.)\n##\n("entity"<|>BATTERIES<|>RESTRICTED ITEM<|>Batteries must be protected from damage and short circuits and can be transported in the aircraft hold if they are not lithium-based.)\n##\n("entity"<|>WATT-HOURS<|>MEASUREMENT UNIT<|>Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).)\n##\n("entity"<|>LITHIUM-ION BATTERIES<|>RESTRICTED ITEM<|>Larger lithium-ion batteries (100-160 watt-hours) are limited to two batteries per passenger and must comply with specific regulations.)\n##\n("entity"<|>BATTERY-POWERED DEVICES<|>SPECIAL ITEM<|>Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.)\n##\n("entity"<|>IATA REGULATIONS<|>POLICY<|>IATA regulations govern the transport of battery-powered mobility aids on flights.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific regulations regarding battery-powered mobility aids.)\n##\n("relationship"<|>SPARE LITHIUM BATTERIES<|>ELECTRONIC DEVICES<|>Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.<|>8)\n##\n("relationship"<|>BATTERIES<|>WATT-HOURS<|>The watt-hours rating of a battery is determined by its voltage and ampere hours, which is essential for understanding battery capacity.<|>7)\n##\n("relationship"<|>LITHIUM-ION BATTERIES<|>SPARE LITHIUM BATTERIES<|>Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.<|>6)\n##\n("relationship"<|>BATTERY-POWERED DEVICES<|>IATA REGULATIONS<|>Battery-powered devices must comply with IATA regulations for safe transport on flights.<|>5)\n##\n("relationship"<|>BATTERY-POWERED DEVICES<|>EL AL<|>EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers containing lithium batteries are prohibited in checked baggage and must be taken aboard the aircraft cabin.)\n##\n("entity"<|>NON-SPILLABLE WET BATTERIES<|>RESTRICTED ITEM<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n##\n("entity"<|>100 WH<|>WEIGHT<|>Batteries with a capacity of less than 100 watt-hours may be taken aboard the aircraft when insulated or in their original packaging.)\n##\n("entity"<|>15 ELECTRONIC DEVICES<|>ALLOWANCE<|>Passengers are allowed to take up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 watt-hours aboard the aircraft.)\n##\n("entity"<|>20 SPARE BATTERIES<|>ALLOWANCE<|>Passengers may take up to 20 spare batteries with a capacity of less than 100 watt-hours aboard the aircraft.)\n##\n("entity"<|>BATTERY CASE<|>SPECIAL ITEM<|>A battery case is used to protect batteries from damage and short circuits during transport.)\n##\n("entity"<|>ORIGINAL PACKAGING<|>SPECIAL ITEM<|>Keeping batteries in their original packaging helps prevent short circuits and damage during transport.)\n##\n("entity"<|>INSULATED<|>RESTRICTION<|>Batteries must be insulated to prevent short circuits when taken aboard the aircraft.)\n##\n("entity"<|>ACCEPTABLE BATTERY TYPES<|>RESTRICTION<|>Only certain types of batteries are acceptable for transport in the aircraft hold, excluding lithium-based batteries.)\n##\n("entity"<|>BATTERY TERMINALS<|>RESTRICTION<|>Battery terminals must be protected to prevent short circuits during transport.)\n##\n("relationship"<|>SPARE LITHIUM BATTERIES<|>PORTABLE CHARGERS<|>Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.<|>8)\n##\n("relationship"<|>20 SPARE BATTERIES<|>100 WH<|>The allowance for taking 20 spare batteries is specifically for those with a capacity of less than 100 watt-hours.<|>7)\n##\n("relationship"<|>15 ELECTRONIC DEVICES<|>100 WH<|>The allowance for taking 15 electronic devices is limited to those containing lithium-ion batteries with a capacity of less than 100 watt-hours.<|>7)\n##\n("relationship"<|>BATTERY CASE<|>BATTERY TERMINALS<|>A battery case is used to protect battery terminals from damage and short circuits during transport.<|>6)\n##\n("relationship"<|>ORIGINAL PACKAGING<|>BATTERY TERMINALS<|>Keeping batteries in their original packaging helps protect the terminals from short circuits during transport.<|>6)\n##\n("relationship"<|>INSULATED<|>SPARE BATTERIES<|>Spare batteries must be insulated to prevent short circuits when taken aboard the aircraft.<|>5)\n##\n("relationship"<|>ACCEPTABLE BATTERY TYPES<|>BATTERIES<|>Only acceptable battery types can be transported in the aircraft hold, excluding lithium-based batteries.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:21,643 httpcore.http11 DEBUG send_request_headers.started request= -13:51:21,643 httpcore.http11 DEBUG send_request_headers.complete -13:51:21,643 httpcore.http11 DEBUG send_request_body.started request= -13:51:21,644 httpcore.http11 DEBUG send_request_body.complete -13:51:21,644 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:21,972 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'371'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996040'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_b7337262ac2b34ae0bc8a0baae7d9edb'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf87ae30c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:21,972 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:21,972 httpcore.http11 DEBUG receive_response_body.started request= -13:51:21,972 httpcore.http11 DEBUG receive_response_body.complete -13:51:21,972 httpcore.http11 DEBUG response_closed.started -13:51:21,972 httpcore.http11 DEBUG response_closed.complete -13:51:21,973 httpcore.connection DEBUG close.started -13:51:21,973 httpcore.connection DEBUG close.complete -13:51:21,973 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:21,973 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6879999999655411. input_tokens=30, output_tokens=1 -13:51:22,36 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10488'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992442'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'45ms'), (b'x-request-id', b'req_4779cc53fe476f078d5e0c2811da3a1e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf499f37c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:22,36 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:22,36 httpcore.http11 DEBUG receive_response_body.started request= -13:51:22,36 httpcore.http11 DEBUG receive_response_body.complete -13:51:22,36 httpcore.http11 DEBUG response_closed.started -13:51:22,37 httpcore.http11 DEBUG response_closed.complete -13:51:22,37 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:22,38 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 10.687000000034459. input_tokens=34, output_tokens=799 -13:51:22,43 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al\'s service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane\'s belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven\'t checked in online should use El Al\'s check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>BAG<|>Baggage Type<|>A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.)\n##\n("entity"<|>PERSONAL BAG<|>Baggage Type<|>A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.)\n##\n("entity"<|>CARRY-ON BAG<|>Baggage Type<|>A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.)\n##\n("entity"<|>EL AL<|>Airline<|>El Al is an airline that has specific baggage policies regarding carry-on and personal bags.)\n##\n("entity"<|>56 CM<|>Linear Dimension<|>The maximum length for a carry-on bag on El Al flights is 56 cm.)\n##\n("entity"<|>45 CM<|>Linear Dimension<|>The maximum width for a carry-on bag on El Al flights is 45 cm.)\n##\n("entity"<|>25 CM<|>Linear Dimension<|>The maximum depth for a carry-on bag on El Al flights is 25 cm.)\n##\n("entity"<|>18X38X30 CM<|>Linear Dimension<|>The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.)\n##\n("entity"<|>115 CM<|>Linear Dimension<|>The total maximum dimension for a carry-on bag on El Al flights is 115 cm.)\n##\n("entity"<|>20 KG<|>Weight Category<|>The combined weight limit for bags is not to exceed 20 kg.)\n##\n("entity"<|>16 KG<|>Weight Category<|>The maximum weight limit for one bag is 16 kg.)\n##\n("entity"<|>DUTY-FREE ITEMS<|>Special Item<|>Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.)\n##\n("entity"<|>OVERSIZED ITEMS<|>Special Item<|>Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.)\n##\n("entity"<|>CHECK-IN COUNTER<|>Service Location<|>The check-in counter is where passengers can check in their luggage and obtain boarding passes.)\n##\n("entity"<|>EMERGENCY EXIT ROW<|>Cabin Section<|>The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.)\n##\n("entity"<|>SERVICE CENTER<|>Service Location<|>El Al\'s service center is where passengers can coordinate the transport of unusual items.)\n##\n("relationship"<|>CARRY-ON BAG<|>EL AL<|>El Al has specific policies regarding the dimensions and weight limits for carry-on bags<|>9)\n##\n("relationship"<|>PERSONAL BAG<|>EL AL<|>El Al allows passengers to bring a personal bag on board, subject to size restrictions<|>9)\n##\n("relationship"<|>BAG<|>CARRY-ON BAG<|>A carry-on bag is a type of bag that must meet specific weight and dimension limits<|>8)\n##\n("relationship"<|>BAG<|>PERSONAL BAG<|>A personal bag is a specific type of bag that passengers can bring on board<|>8)\n##\n("relationship"<|>CARRY-ON BAG<|>20 KG<|>The combined weight limit for carry-on bags is 20 kg<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>16 KG<|>The maximum weight limit for one carry-on bag is 16 kg<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>56 CM<|>The maximum length for a carry-on bag is 56 cm<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>45 CM<|>The maximum width for a carry-on bag is 45 cm<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>25 CM<|>The maximum depth for a carry-on bag is 25 cm<|>7)\n##\n("relationship"<|>PERSONAL BAG<|>18X38X30 CM<|>The maximum dimensions for a personal bag are 18x38x30 cm<|>7)\n##\n("relationship"<|>CARRY-ON BAG<|>115 CM<|>The total maximum dimension for a carry-on bag is 115 cm<|>7)\n##\n("relationship"<|>DUTY-FREE ITEMS<|>BAG<|>Duty-free items are included in the baggage allowance but do not count towards the limit<|>6)\n##\n("relationship"<|>OVERSIZED ITEMS<|>CARRY-ON BAG<|>Oversized items may require special arrangements for transport in the cabin<|>5)\n##\n("relationship"<|>CHECK-IN COUNTER<|>EL AL<|>Passengers must check in at El Al\'s check-in counters for their flights<|>8)\n##\n("relationship"<|>EMERGENCY EXIT ROW<|>CARRY-ON BAG<|>Passengers in the emergency exit row may store bags in overhead compartments<|>6)\n##\n("relationship"<|>SERVICE CENTER<|>OVERSIZED ITEMS<|>Passengers must contact the service center for approval to carry oversized items<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE ALLOWANCE<|>Allowance<|>The baggage allowance refers to the total weight and number of bags a passenger is permitted to carry on a flight without incurring additional fees.)\n##\n("entity"<|>CHECKED BAG<|>Baggage Type<|>A checked bag is a type of luggage that is stored in the aircraft\'s cargo hold during the flight.)\n##\n("entity"<|>WEIGHT RESTRICTION<|>Restriction<|>Weight restrictions are limits imposed on the weight of bags that passengers can carry on board or check in.)\n##\n("entity"<|>FLIGHT DESTINATION<|>Service Location<|>The flight destination is the final location where passengers are traveling to, which may affect baggage policies.)\n##\n("entity"<|>PRE-CHECKED CARRY-ON<|>Baggage Type<|>A pre-checked carry-on is a bag that has been checked in online prior to arriving at the airport, allowing for expedited security checks.)\n##\n("entity"<|>SECURITY CHECK<|>Service Type<|>The security check is a procedure that passengers must go through to ensure safety before boarding the aircraft.)\n##\n("entity"<|>EXTRA SEAT<|>Allowance<|>An extra seat may be purchased for oversized items that cannot fit in the cabin or under the seat.)\n##\n("entity"<|>MEDICATIONS<|>Prohibited Item<|>Medications are items that passengers are advised to keep accessible during the flight for health reasons.)\n##\n("entity"<|>VALUABLES<|>Valuable Item<|>Valuables are items of significant worth that passengers are recommended to keep with them during the flight.)\n##\n("entity"<|>ELECTRONIC DEVICES<|>Valuable Item<|>Electronic devices are items such as laptops and tablets that passengers should keep accessible during the flight.)\n##\n("entity"<|>OVERHEAD COMPARTMENTS<|>Cabin Section<|>Overhead compartments are storage areas above passenger seats where carry-on bags must be placed during the flight.)\n##\n("entity"<|>UNDER-SEAT STORAGE<|>Cabin Section<|>Under-seat storage refers to the space under the seat in front of a passenger where personal bags must be placed.)\n##\n("entity"<|>CHECK-IN PROCESS<|>Policy<|>The check-in process is the procedure passengers must follow to confirm their presence on a flight and check their luggage.)\n##\n("entity"<|>FLIGHT<|>Route Type<|>A flight is a journey made by an aircraft from one airport to another, subject to specific baggage policies.)\n##\n("entity"<|>AIRPLANE STORAGE<|>Service Type<|>Airplane storage refers to the designated areas on an aircraft where passengers can store their carry-on and personal bags.)\n##\n("entity"<|>BAG DIMENSIONS<|>Measurement Unit<|>Bag dimensions refer to the measurements of a bag that must comply with airline policies for carry-on and checked luggage.)\n##\n("entity"<|>BAG WEIGHT<|>Measurement Unit<|>Bag weight refers to the total weight of a bag, which must adhere to airline restrictions for carry-on and checked luggage.)\n##\n("entity"<|>CARGO HOLD<|>Cabin Section<|>The cargo hold is the area of the aircraft where checked bags are stored during the flight.)\n##\n("entity"<|>FLIGHT CHECK-IN<|>Policy<|>Flight check-in is the policy that requires passengers to confirm their attendance and check their baggage before boarding.)\n##\n("entity"<|>BAGGAGE ENFORCEMENT<|>Policy<|>Baggage enforcement refers to the policies and procedures that airline representatives follow to ensure compliance with baggage limits.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:22,44 httpcore.http11 DEBUG send_request_headers.started request= -13:51:22,44 httpcore.http11 DEBUG send_request_headers.complete -13:51:22,44 httpcore.http11 DEBUG send_request_body.started request= -13:51:22,44 httpcore.http11 DEBUG send_request_body.complete -13:51:22,44 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:22,206 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'385'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996098'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_7aaf47633af5c0cddda049534671962b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf89deb6c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:22,206 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:22,206 httpcore.http11 DEBUG receive_response_body.started request= -13:51:22,206 httpcore.http11 DEBUG receive_response_body.complete -13:51:22,207 httpcore.http11 DEBUG response_closed.started -13:51:22,207 httpcore.http11 DEBUG response_closed.complete -13:51:22,207 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:22,207 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5619999999762513. input_tokens=30, output_tokens=1 -13:51:22,587 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'346'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995572'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_500521d081171ea33c00cdf36ad7bbf7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf8c5fadc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:22,588 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:22,588 httpcore.http11 DEBUG receive_response_body.started request= -13:51:22,588 httpcore.http11 DEBUG receive_response_body.complete -13:51:22,588 httpcore.http11 DEBUG response_closed.started -13:51:22,588 httpcore.http11 DEBUG response_closed.complete -13:51:22,588 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:22,589 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5469999999622814. input_tokens=30, output_tokens=1 -13:51:23,476 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12534'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992814'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'43ms'), (b'x-request-id', b'req_53675929a44719d28cdb2de71a674e14'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf45c9b3c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:23,476 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:23,477 httpcore.http11 DEBUG receive_response_body.started request= -13:51:23,477 httpcore.http11 DEBUG receive_response_body.complete -13:51:23,477 httpcore.http11 DEBUG response_closed.started -13:51:23,477 httpcore.http11 DEBUG response_closed.complete -13:51:23,477 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:23,478 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 12.73499999998603. input_tokens=34, output_tokens=806 -13:51:23,483 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries� terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.� Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>LITHIUM-ION BATTERIES<|>DANGEROUS GOOD<|>Lithium-ion batteries are rechargeable batteries commonly used in portable electronic devices, with specific size and watt-hour limitations for air travel.)\n##\n("entity"<|>LITHIUM METAL BATTERIES<|>DANGEROUS GOOD<|>Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.)\n##\n("entity"<|>NON-SPILLABLE WET BATTERIES<|>DANGEROUS GOOD<|>Non-spillable wet batteries are limited to 12 volts and 100 watt-hours, designed to prevent leakage of electrolyte.)\n##\n("entity"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage and must be protected when carried in the cabin.)\n##\n("entity"<|>ELECTRONIC DEVICES<|>SPECIAL ITEM<|>Electronic devices with lithium batteries that cannot be removed must be stored in the aircraft hold under specific conditions.)\n##\n("entity"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are considered lithium batteries and are prohibited in checked baggage.)\n##\n("entity"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have separate exceptions regarding the transport of batteries.)\n##\n("entity"<|>CARRY-ON<|>ALLOWANCE<|>Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.)\n##\n("relationship"<|>LITHIUM-ION BATTERIES<|>CARRY-ON<|>Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits<|>8)\n##\n("relationship"<|>LITHIUM METAL BATTERIES<|>CARRY-ON<|>Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions<|>8)\n##\n("relationship"<|>NON-SPILLABLE WET BATTERIES<|>CARRY-ON<|>Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits<|>8)\n##\n("relationship"<|>SPARE BATTERIES<|>PROHIBITED ITEM<|>Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction<|>9)\n##\n("relationship"<|>ELECTRONIC DEVICES<|>CARRY-ON<|>Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement<|>7)\n##\n("relationship"<|>PORTABLE CHARGERS<|>PROHIBITED ITEM<|>Portable chargers are classified as lithium batteries and are prohibited in checked baggage<|>9)\n##\n("relationship"<|>MOTORIZED WHEELCHAIRS<|>EXEMPTION<|>Motorized wheelchairs have specific exemptions regarding battery transport, differentiating them from other items<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>LITHIUM BATTERIES<|>DANGEROUS GOOD<|>Lithium batteries, including both lithium-ion and lithium metal types, are subject to specific regulations for air travel due to their potential hazards.)\n##\n("entity"<|>100 WATT-HOURS<|>MEASUREMENT UNIT<|>100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.)\n##\n("entity"<|>160 WATT-HOURS<|>MEASUREMENT UNIT<|>160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.)\n##\n("entity"<|>2 GRAMS<|>MEASUREMENT UNIT<|>2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.)\n##\n("entity"<|>12 VOLTS<|>MEASUREMENT UNIT<|>12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.)\n##\n("entity"<|>49 CFR<|>POLICY<|>49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.)\n##\n("entity"<|>STRONG OUTER PACKAGING<|>RESTRICTION<|>Batteries must be in strong outer packaging to prevent damage and leakage during transport.)\n##\n("entity"<|>NON-CONDUCTIVE CAPS<|>RESTRICTION<|>Non-conductive caps are required to protect the terminals of spare batteries during transport.)\n##\n("entity"<|>FLAMMABLE MATERIAL<|>PROHIBITED ITEM<|>Flammable materials, such as hairspray, are prohibited from being stored with electronic devices containing lithium batteries.)\n##\n("relationship"<|>LITHIUM BATTERIES<|>LITHIUM-ION BATTERIES<|>Lithium batteries include both lithium-ion and lithium metal types, indicating a classification relationship<|>8)\n##\n("relationship"<|>100 WATT-HOURS<|>LITHIUM-ION BATTERIES<|>Lithium-ion batteries with a capacity of 100 watt-hours are allowed in carry-on luggage<|>8)\n##\n("relationship"<|>160 WATT-HOURS<|>LITHIUM-ION BATTERIES<|>Lithium-ion batteries with a capacity of 160 watt-hours are subject to specific regulations for air travel<|>8)\n##\n("relationship"<|>2 GRAMS<|>LITHIUM METAL BATTERIES<|>Consumer-grade lithium metal batteries must contain no more than 2 grams of lithium<|>8)\n##\n("relationship"<|>12 VOLTS<|>NON-SPILLABLE WET BATTERIES<|>Non-spillable wet batteries must not exceed 12 volts for air travel<|>8)\n##\n("relationship"<|>49 CFR<|>LITHIUM BATTERIES<|>49 CFR outlines the regulations for the transport of lithium batteries, indicating a regulatory relationship<|>9)\n##\n("relationship"<|>STRONG OUTER PACKAGING<|>NON-SPILLABLE WET BATTERIES<|>Non-spillable wet batteries must be packaged in strong outer packaging to prevent leakage<|>8)\n##\n("relationship"<|>NON-CONDUCTIVE CAPS<|>SPARE BATTERIES<|>Spare batteries must have non-conductive caps to protect their terminals during transport<|>8)\n##\n("relationship"<|>FLAMMABLE MATERIAL<|>ELECTRONIC DEVICES<|>Flammable materials are prohibited from being stored with electronic devices containing lithium batteries, indicating a safety restriction<|>9)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:23,484 httpcore.http11 DEBUG send_request_headers.started request= -13:51:23,484 httpcore.http11 DEBUG send_request_headers.complete -13:51:23,484 httpcore.http11 DEBUG send_request_body.started request= -13:51:23,484 httpcore.http11 DEBUG send_request_body.complete -13:51:23,484 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:23,494 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10246'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992736'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'43ms'), (b'x-request-id', b'req_b9dabd68e42743de794f1c005ceb758d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf54684cc227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:23,494 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:23,494 httpcore.http11 DEBUG receive_response_body.started request= -13:51:23,494 httpcore.http11 DEBUG receive_response_body.complete -13:51:23,494 httpcore.http11 DEBUG response_closed.started -13:51:23,494 httpcore.http11 DEBUG response_closed.complete -13:51:23,494 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:23,495 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 10.40600000001723. input_tokens=34, output_tokens=801 -13:51:23,500 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>MINISTRY OF AGRICULTURE<|>ORGANIZATION<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n("entity"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Agriculture regulates the transport of pets.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that has specific policies regarding the transportation of pets.)\n##\n("entity"<|>SERVICE DOG<|>SPECIAL ITEM<|>Service dogs are exempt from certain weight limits when transported in the cabin.)\n##\n("entity"<|>DANGEROUS DOG<|>PROHIBITED ITEM<|>Dangerous dogs, as defined by Israeli law, are not approved for transportation.)\n##\n("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage is a method of transporting animals in certain instances, such as large animals.)\n##\n("entity"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is used for transporting animals that are extra-large or flying unaccompanied.)\n##\n("entity"<|>CABIN<|>CABIN SECTION<|>The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.)\n##\n("entity"<|>9KG<|>WEIGHT<|>The weight limit for pets transported in the cabin, including the cage, is 9kg.)\n##\n("entity"<|>AUTHORIZATION<|>REQUIRED DOCUMENT<|>Authorization from the Ministry of Agriculture�s Veterinary Services is required to transport an animal.)\n##\n("entity"<|>ANIMAL TESTS<|>RESTRICTION<|>Several animal tests must be performed as part of the authorization process for transporting pets.)\n##\n("relationship"<|>MINISTRY OF AGRICULTURE<|>ISRAEL<|>The Ministry of Agriculture is the regulatory authority in Israel for pet transportation<|>8)\n##\n("relationship"<|>EL AL<|>MINISTRY OF AGRICULTURE<|>EL AL must comply with the regulations set by the Ministry of Agriculture regarding pet transportation<|>7)\n##\n("relationship"<|>SERVICE DOG<|>EL AL<|>Service dogs are allowed to be transported under different conditions than other pets on EL AL<|>6)\n##\n("relationship"<|>DANGEROUS DOG<|>EL AL<|>EL AL does not allow dangerous dogs to be transported<|>6)\n##\n("relationship"<|>CHECKED BAGGAGE<|>EL AL<|>EL AL allows certain animals to be transported as checked baggage<|>5)\n##\n("relationship"<|>REGISTERED CARGO<|>EL AL<|>EL AL provides registered cargo services for transporting animals<|>5)\n##\n("relationship"<|>CABIN<|>EL AL<|>EL AL allows pets to be transported in the cabin under specific conditions<|>5)\n##\n("relationship"<|>9KG<|>CABIN<|>The weight limit of 9kg applies to pets transported in the cabin<|>4)\n##\n("relationship"<|>AUTHORIZATION<|>MINISTRY OF AGRICULTURE<|>Authorization is required from the Ministry of Agriculture to transport an animal<|>8)\n##\n("relationship"<|>ANIMAL TESTS<|>AUTHORIZATION<|>Animal tests are part of the authorization process for transporting pets<|>7)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>PETS<|>SPECIAL ITEM<|>Pets, including dogs, cats, and exotic birds, can be transported under specific conditions set by airlines.)\n##\n("entity"<|>EXOTIC BIRDS<|>SPECIAL ITEM<|>Exotic birds are among the pets that can be transported in the cabin with their owners.)\n##\n("entity"<|>VETERINARY SERVICES<|>ORGANIZATION<|>The Veterinary Services under the Ministry of Agriculture handle the authorization process for transporting pets.)\n##\n("entity"<|>TRANSPORTATION<|>SERVICE TYPE<|>Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.)\n##\n("entity"<|>AUTHORIZATION PROCESS<|>POLICY<|>The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.)\n##\n("entity"<|>LUGGAGE COMPARTMENT<|>CABIN SECTION<|>The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.)\n##\n("entity"<|>SENSITIVITY<|>RESTRICTION<|>Some pets may develop sensitivity and breathing problems during flights, which is a concern for their health.)\n##\n("entity"<|>FLIGHT<|>TIME PERIOD<|>The flight refers to the duration during which pets are transported in the cabin or cargo.)\n##\n("entity"<|>CARGO DIVISION<|>SERVICE LOCATION<|>The Cargo Division of EL AL is responsible for handling the transportation of animals as registered cargo.)\n##\n("entity"<|>CHECK-IN COUNTER<|>SERVICE LOCATION<|>The check-in counter is where owners must arrive with their pets for transportation arrangements.)\n##\n("entity"<|>ARRIVALS HALL<|>SERVICE LOCATION<|>The Arrivals Hall is where owners can retrieve their pets after they have been transported as checked baggage.)\n##\n("relationship"<|>VETERINARY SERVICES<|>MINISTRY OF AGRICULTURE<|>Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations<|>8)\n##\n("relationship"<|>PETS<|>EL AL<|>EL AL has specific policies for transporting pets, including weight limits and conditions<|>7)\n##\n("relationship"<|>EXOTIC BIRDS<|>PETS<|>Exotic birds are classified as pets that can be transported under certain conditions<|>6)\n##\n("relationship"<|>TRANSPORTATION<|>EL AL<|>EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo<|>7)\n##\n("relationship"<|>AUTHORIZATION PROCESS<|>VETERINARY SERVICES<|>The authorization process is managed by the Veterinary Services to ensure compliance with regulations<|>8)\n##\n("relationship"<|>LUGGAGE COMPARTMENT<|>DANGEROUS DOG<|>Dangerous dogs are not allowed in the luggage compartment during transportation<|>6)\n##\n("relationship"<|>SENSITIVITY<|>FLIGHT<|>Sensitivity issues may arise for pets during the flight, affecting their health<|>5)\n##\n("relationship"<|>CARGO DIVISION<|>EL AL<|>The Cargo Division of EL AL is responsible for handling registered cargo for pet transportation<|>6)\n##\n("relationship"<|>CHECK-IN COUNTER<|>EL AL<|>Owners must arrive at the check-in counter with their pets for transportation arrangements<|>5)\n##\n("relationship"<|>ARRIVALS HALL<|>CHECKED BAGGAGE<|>Pets transported as checked baggage can be retrieved in the Arrivals Hall<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:23,501 httpcore.http11 DEBUG send_request_headers.started request= -13:51:23,501 httpcore.http11 DEBUG send_request_headers.complete -13:51:23,501 httpcore.http11 DEBUG send_request_body.started request= -13:51:23,502 httpcore.http11 DEBUG send_request_body.complete -13:51:23,502 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:24,20 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'362'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996001'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_67402a7746f2060ae836f9cf0066d30e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf955cdcc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:24,21 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:24,21 httpcore.http11 DEBUG receive_response_body.started request= -13:51:24,21 httpcore.http11 DEBUG receive_response_body.complete -13:51:24,21 httpcore.http11 DEBUG response_closed.started -13:51:24,21 httpcore.http11 DEBUG response_closed.complete -13:51:24,21 httpcore.connection DEBUG close.started -13:51:24,22 httpcore.connection DEBUG close.complete -13:51:24,22 httpcore.connection DEBUG close.started -13:51:24,22 httpcore.connection DEBUG close.complete -13:51:24,22 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:24,22 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5470000000204891. input_tokens=30, output_tokens=1 -13:51:24,72 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'365'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995904'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'24ms'), (b'x-request-id', b'req_eb72ec0047fbff63f8a1719db9aef8cf'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf957bb1c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:24,72 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:24,72 httpcore.http11 DEBUG receive_response_body.started request= -13:51:24,72 httpcore.http11 DEBUG receive_response_body.complete -13:51:24,72 httpcore.http11 DEBUG response_closed.started -13:51:24,72 httpcore.http11 DEBUG response_closed.complete -13:51:24,73 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:24,73 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5619999999762513. input_tokens=30, output_tokens=1 -13:51:24,319 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11434'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9990556'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'56ms'), (b'x-request-id', b'req_b6255a0d6fc8588b3ee8baf3954bd519'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf51fcb47d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:24,319 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:24,319 httpcore.http11 DEBUG receive_response_body.started request= -13:51:24,320 httpcore.http11 DEBUG receive_response_body.complete -13:51:24,320 httpcore.http11 DEBUG response_closed.started -13:51:24,320 httpcore.http11 DEBUG response_closed.complete -13:51:24,320 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:24,321 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 11.625. input_tokens=34, output_tokens=830 -13:51:24,326 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al\'s baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n\u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>CHECKED BAGGAGE<|>BAGGAGE TYPE<|>Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin by the passenger.)\n##\n("entity"<|>OVERSIZED BAGGAGE<|>BAGGAGE TYPE<|>Oversized baggage is luggage that exceeds the airline\'s standard size limits, requiring special handling and potentially incurring additional fees.)\n##\n("entity"<|>OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which may result in extra charges.)\n##\n("entity"<|>SUNDOR<|>AIRLINE<|>Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that shares similar baggage policies with Sundor, particularly regarding checked baggage allowances.)\n##\n("entity"<|>ECONOMY CLASS<|>TRAVEL CLASS<|>Economy class is a travel class offered by airlines, typically providing basic services and lower fares compared to higher classes.)\n##\n("entity"<|>LITE SERVICE<|>SERVICE TYPE<|>Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.)\n##\n("entity"<|>CLASSIC SERVICE<|>SERVICE TYPE<|>Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.)\n##\n("entity"<|>FLEX SERVICE<|>SERVICE TYPE<|>Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.)\n##\n("entity"<|>BAGGAGE ALLOWANCE<|>ALLOWANCE<|>Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees.)\n##\n("entity"<|>MANAGE YOUR BOOKING<|>SERVICE LOCATION<|>Manage Your Booking is an online service provided by airlines that allows passengers to view and modify their flight details, including baggage options.)\n##\n("entity"<|>ADDITIONAL PIECES OF BAGGAGE<|>ALLOWANCE<|>Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.)\n##\n("entity"<|>$90<|>FEE STRUCTURE<|>The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.)\n##\n("entity"<|>23 KG<|>WEIGHT<|>23 kg is the weight limit for each piece of checked baggage included in the ticket price for certain service types offered by EL AL.)\n##\n("entity"<|>THREE HOURS<|>TIME PERIOD<|>Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.)\n##\n("entity"<|>EUROPE AND MIDDLE EAST<|>ROUTE TYPE<|>Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.)\n##\n("entity"<|>NORTH AMERICA<|>ROUTE TYPE<|>North America is another destination served by EL AL, with its own baggage policies.)\n##\n("relationship"<|>SUNDOR<|>EL AL<|>Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees<|>7)\n##\n("relationship"<|>LITE SERVICE<|>BAGGAGE ALLOWANCE<|>Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering<|>8)\n##\n("relationship"<|>CLASSIC SERVICE<|>BAGGAGE ALLOWANCE<|>Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n("relationship"<|>FLEX SERVICE<|>BAGGAGE ALLOWANCE<|>Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price<|>8)\n##\n("relationship"<|>ADDITIONAL PIECES OF BAGGAGE<|>BAGGAGE ALLOWANCE<|>Additional pieces of baggage can be checked in for a fee, which varies depending on the service type<|>6)\n##\n("relationship"<|>MANAGE YOUR BOOKING<|>ADDITIONAL PIECES OF BAGGAGE<|>Passengers can add additional pieces of baggage through the Manage Your Booking page<|>7)\n##\n("relationship"<|>OVERWEIGHT BAGGAGE<|>OVERSIZED BAGGAGE<|>Both overweight and oversized baggage require special handling and may incur additional fees<|>5)\n##\n("relationship"<|>THREE HOURS<|>MANAGE YOUR BOOKING<|>The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking<|>8)\n##\n("relationship"<|>ECONOMY CLASS<|>LITE SERVICE<|>Lite service is one of the ticket types available in economy class<|>6)\n##\n("relationship"<|>ECONOMY CLASS<|>CLASSIC SERVICE<|>Classic service is one of the ticket types available in economy class<|>6)\n##\n("relationship"<|>ECONOMY CLASS<|>FLEX SERVICE<|>Flex service is one of the ticket types available in economy class<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the luggage or personal items that passengers take with them when traveling, which can include checked bags and carry-ons.)\n##\n("entity"<|>CHECKED BAGS<|>BAGGAGE TYPE<|>Checked bags are pieces of luggage that are transported in the cargo hold of an aircraft, as opposed to being carried into the cabin.)\n##\n("entity"<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>BAGGAGE TYPE<|>Oversized and overweight baggage refers to luggage that exceeds the airline\'s standard size and weight limits, requiring special handling and potentially incurring additional fees.)\n##\n("entity"<|>BAGGAGE POLICY<|>POLICY<|>Baggage policy outlines the rules and regulations regarding the number, size, and weight of baggage that passengers can check in or carry on.)\n##\n("entity"<|>FLIGHT TICKET<|>REQUIRED DOCUMENT<|>A flight ticket is a document that confirms a passenger\'s reservation on a flight and includes details about baggage allowance.)\n##\n("entity"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>SERVICE LOCATION<|>The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage after check-in.)\n##\n("entity"<|>PRE-ORDERING<|>POLICY<|>Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.)\n##\n("entity"<|>BAGGAGE CHECK-IN PROCESS<|>SERVICE TYPE<|>The baggage check-in process involves the procedures passengers must follow to check their luggage before boarding a flight.)\n##\n("entity"<|>STANDARD BAGGAGE<|>BAGGAGE TYPE<|>Standard baggage refers to luggage that meets the airline\'s size and weight requirements without incurring additional fees.)\n##\n("entity"<|>BAGGAGE CHECK-IN<|>SERVICE TYPE<|>Baggage check-in is the process by which passengers hand over their luggage to the airline for transport in the cargo hold.)\n##\n("relationship"<|>BAGGAGE<|>CHECKED BAGGAGE<|>Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft<|>8)\n##\n("relationship"<|>BAGGAGE<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>Oversized and overweight baggage are categories of baggage that exceed standard limits<|>7)\n##\n("relationship"<|>BAGGAGE POLICY<|>BAGGAGE<|>Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees<|>9)\n##\n("relationship"<|>FLIGHT TICKET<|>BAGGAGE ALLOWANCE<|>The flight ticket includes information about the baggage allowance for the passenger<|>8)\n##\n("relationship"<|>DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION<|>OVERSIZED AND OVERWEIGHT BAGGAGE<|>Passengers with oversized and overweight baggage must take their luggage to the designated location<|>7)\n##\n("relationship"<|>PRE-ORDERING<|>ADDITIONAL PIECES OF BAGGAGE<|>Pre-ordering is required for checking additional pieces of baggage beyond the standard allowance<|>8)\n##\n("relationship"<|>BAGGAGE CHECK-IN PROCESS<|>BAGGAGE CHECK-IN<|>The baggage check-in process is the procedure for checking in luggage before a flight<|>8)\n##\n("relationship"<|>STANDARD BAGGAGE<|>BAGGAGE<|>Standard baggage refers to luggage that meets the airline\'s size and weight requirements<|>8)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:24,327 httpcore.http11 DEBUG send_request_headers.started request= -13:51:24,327 httpcore.http11 DEBUG send_request_headers.complete -13:51:24,327 httpcore.http11 DEBUG send_request_body.started request= -13:51:24,327 httpcore.http11 DEBUG send_request_body.complete -13:51:24,327 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:24,970 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:25 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'475'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995439'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'27ms'), (b'x-request-id', b'req_ee625e3eec48b4d16cfad85296fd3ebd'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf9aac40c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:24,970 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:24,970 httpcore.http11 DEBUG receive_response_body.started request= -13:51:24,971 httpcore.http11 DEBUG receive_response_body.complete -13:51:24,971 httpcore.http11 DEBUG response_closed.started -13:51:24,971 httpcore.http11 DEBUG response_closed.complete -13:51:24,971 httpcore.connection DEBUG close.started -13:51:24,971 httpcore.connection DEBUG close.complete -13:51:24,971 httpcore.connection DEBUG close.started -13:51:24,971 httpcore.connection DEBUG close.complete -13:51:24,971 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:24,972 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.6570000000065193. input_tokens=30, output_tokens=1 -13:51:25,265 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:25 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12630'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992548'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'44ms'), (b'x-request-id', b'req_a25cbfc48bc8918661f7fe1d32cb185f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf506bbac231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:25,265 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:25,265 httpcore.http11 DEBUG receive_response_body.started request= -13:51:25,265 httpcore.http11 DEBUG receive_response_body.complete -13:51:25,265 httpcore.http11 DEBUG response_closed.started -13:51:25,265 httpcore.http11 DEBUG response_closed.complete -13:51:25,266 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:25,267 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 12.829000000027008. input_tokens=34, output_tokens=796 -13:51:25,272 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL�s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4�.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>EL AL<|>AIRLINE<|>EL AL is an airline that operates flights and has specific baggage policies and allowances for passengers.)\n##\n("entity"<|>BAGGAGE ALLOWANCE<|>POLICY<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.)\n##\n("entity"<|>CHECKED BAGGAGE<|>Baggage Type<|>Checked baggage refers to the luggage that passengers check in before boarding the flight.)\n##\n("entity"<|>INFANT\'S CHECKED BAGGAGE<|>Baggage Type<|>Infant\'s checked baggage includes items like strollers and infant car seats that can be checked without additional charge.)\n##\n("entity"<|>LITE TICKETS<|>Travel Class<|>Lite tickets are a type of ticket that does not include any baggage allowance.)\n##\n("entity"<|>MAXIMUM SIZE<|>Restriction<|>The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.)\n##\n("entity"<|>EXCESS BAGGAGE RATES<|>Fee Structure<|>Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.)\n##\n("entity"<|>US DOLLARS<|>Currency<|>Prices for baggage fees are displayed in US dollars, although local currency may be required at some airports.)\n##\n("entity"<|>GOVERNMENT SERVICE TAX<|>Policy<|>A government service tax will be collected for air travel for flights originating in India.)\n##\n("entity"<|>CODESHARE FLIGHTS<|>Route Type<|>Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.)\n##\n("entity"<|>EL AL CARGO DIVISION<|>Service Type<|>The EL AL Cargo Division handles excess baggage and special requests for passengers traveling with more than five pieces of checked baggage.)\n##\n("entity"<|>LOCAL CURRENCY<|>Currency<|>At some airports, payment for baggage fees is only allowed in local currency according to the conversion rate on the date of payment.)\n##\n("relationship"<|>EL AL<|>BAGGAGE ALLOWANCE<|>EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.<|>8)\n##\n("relationship"<|>BAGGAGE ALLOWANCE<|>CHECKED BAGGAGE<|>Baggage allowance includes provisions for checked baggage that passengers can take on flights.<|>7)\n##\n("relationship"<|>CHECKED BAGGAGE<|>MAXIMUM SIZE<|>The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.<|>9)\n##\n("relationship"<|>INFANT\'S CHECKED BAGGAGE<|>CHECKED BAGGAGE<|>Infant\'s checked baggage is a specific category of checked baggage that includes items for infants.<|>8)\n##\n("relationship"<|>LITE TICKETS<|>BAGGAGE ALLOWANCE<|>Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.<|>6)\n##\n("relationship"<|>EXCESS BAGGAGE RATES<|>BAGGAGE ALLOWANCE<|>Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.<|>7)\n##\n("relationship"<|>US DOLLARS<|>EXCESS BAGGAGE RATES<|>Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.<|>5)\n##\n("relationship"<|>GOVERNMENT SERVICE TAX<|>EL AL<|>The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.<|>4)\n##\n("relationship"<|>CODESHARE FLIGHTS<|>EL AL<|>The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.<|>5)\n##\n("relationship"<|>EL AL CARGO DIVISION<|>CHECKED BAGGAGE<|>The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.<|>6)\n##\n("relationship"<|>LOCAL CURRENCY<|>EXCESS BAGGAGE RATES<|>Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>DIMENSION<|>Dimension<|>Dimension refers to the measurements of baggage, including length, width, and depth, which are used to determine size restrictions.)\n##\n("entity"<|>LINEAR DIMENSION<|>Linear Dimension<|>Linear dimension refers to the measurement of length, which is one of the components used to calculate the size of baggage.)\n##\n("entity"<|>WEIGHT<|>Weight<|>Weight refers to the mass of the baggage, which is a critical factor in determining baggage allowance and fees.)\n##\n("entity"<|>MEASUREMENT UNIT<|>Measurement Unit<|>Measurement units such as kilograms and pounds are used to quantify the weight of baggage.)\n##\n("entity"<|>SIZE CATEGORY<|>Size Category<|>Size category refers to the classification of baggage based on its dimensions, which affects the allowance and fees.)\n##\n("entity"<|>WEIGHT CATEGORY<|>Weight Category<|>Weight category refers to the classification of baggage based on its weight, which influences the fees charged for excess baggage.)\n##\n("entity"<|>WHEEL CONFIGURATION<|>Wheel Configuration<|>Wheel configuration refers to the design and arrangement of wheels on baggage, which can affect handling and transport.)\n##\n("entity"<|>SPECIAL ITEM<|>Special Item<|>Special items refer to specific types of baggage that may have unique handling requirements, such as sports equipment or musical instruments.)\n##\n("entity"<|>PROHIBITED ITEM<|>Prohibited Item<|>Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.)\n##\n("entity"<|>RESTRICTED ITEM<|>Restricted Item<|>Restricted items are those that may be allowed under certain conditions or with special permissions, often requiring prior approval.)\n##\n("entity"<|>DANGEROUS GOOD<|>Dangerous Good<|>Dangerous goods are items that pose a risk to health, safety, property, or the environment and are subject to strict regulations.)\n##\n("entity"<|>FRAGILE ITEM<|>Fragile Item<|>Fragile items are those that require special handling due to their delicate nature, often needing additional protection during transport.)\n##\n("entity"<|>VALUABLE ITEM<|>Valuable Item<|>Valuable items are high-value belongings that may require special consideration or insurance when traveling.)\n##\n("entity"<|>REQUIRED DOCUMENT<|>Required Document<|>Required documents are necessary paperwork that passengers must present for travel, such as identification or boarding passes.)\n##\n("entity"<|>LABEL TYPE<|>Label Type<|>Label type refers to the categorization of baggage labels that indicate handling instructions or ownership.)\n##\n("entity"<|>TAG CATEGORY<|>Tag Category<|>Tag category refers to the classification of tags used for baggage identification and tracking.)\n##\n("entity"<|>SERVICE LOCATION<|>Service Location<|>Service location refers to the specific places where baggage services, such as check-in or pickup, are provided.)\n##\n("entity"<|>TIME PERIOD<|>Time Period<|>Time period refers to the duration during which specific baggage policies or fees are applicable.)\n##\n("entity"<|>PASSENGER TYPE<|>Passenger Type<|>Passenger type refers to the classification of travelers, such as adults, children, or infants, which can affect baggage allowances.)\n##\n("entity"<|>MEMBERSHIP LEVEL<|>Membership Level<|>Membership level refers to the tier of loyalty programs that may offer different baggage allowances or benefits.)\n##\n("entity"<|>GROUP CATEGORY<|>Group Category<|>Group category refers to classifications of passengers traveling together, which may influence baggage policies and allowances.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:25,272 httpcore.http11 DEBUG send_request_headers.started request= -13:51:25,273 httpcore.http11 DEBUG send_request_headers.complete -13:51:25,273 httpcore.http11 DEBUG send_request_body.started request= -13:51:25,273 httpcore.http11 DEBUG send_request_body.complete -13:51:25,273 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:26,43 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'573'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995619'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_f8c46d5737a5c127cec651f4df0dadad'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bfa08c51c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:26,44 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:26,44 httpcore.http11 DEBUG receive_response_body.started request= -13:51:26,44 httpcore.http11 DEBUG receive_response_body.complete -13:51:26,44 httpcore.http11 DEBUG response_closed.started -13:51:26,44 httpcore.http11 DEBUG response_closed.complete -13:51:26,44 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:26,45 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.7810000000172295. input_tokens=30, output_tokens=1 -13:51:40,495 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:40 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13768'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992553'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'44ms'), (b'x-request-id', b'req_086d969238d9548ba1ddea9e6b37ccfc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bf30da42c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:40,495 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:40,495 httpcore.http11 DEBUG receive_response_body.started request= -13:51:40,496 httpcore.http11 DEBUG receive_response_body.complete -13:51:40,496 httpcore.http11 DEBUG response_closed.started -13:51:40,496 httpcore.http11 DEBUG response_closed.complete -13:51:40,496 httpcore.connection DEBUG close.started -13:51:40,496 httpcore.connection DEBUG close.complete -13:51:40,496 httpcore.connection DEBUG close.started -13:51:40,496 httpcore.connection DEBUG close.complete -13:51:40,496 httpcore.connection DEBUG close.started -13:51:40,497 httpcore.connection DEBUG close.complete -13:51:40,497 httpcore.connection DEBUG close.started -13:51:40,497 httpcore.connection DEBUG close.complete -13:51:40,497 httpcore.connection DEBUG close.started -13:51:40,497 httpcore.connection DEBUG close.complete -13:51:40,497 httpcore.connection DEBUG close.started -13:51:40,497 httpcore.connection DEBUG close.complete -13:51:40,497 httpcore.connection DEBUG close.started -13:51:40,497 httpcore.connection DEBUG close.complete -13:51:40,497 httpcore.connection DEBUG close.started -13:51:40,497 httpcore.connection DEBUG close.complete -13:51:40,497 httpcore.connection DEBUG close.started -13:51:40,497 httpcore.connection DEBUG close.complete -13:51:40,498 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:40,499 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 33.10899999999674. input_tokens=34, output_tokens=1163 -13:51:40,504 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Goal-\nGiven a text document that is potentially relevant to this activity and a list of entity types, identify all entities of those types from the text and all relationships among the identified entities.\n \n-Steps-\n1. Identify all entities. For each identified entity, extract the following information:\n- entity_name: Name of the entity, capitalized\n- entity_type: One of the following types: [Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category]\n- entity_description: Comprehensive description of the entity\'s attributes and activities\nFormat each entity as ("entity"<|><|><|>)\n \n2. From the entities identified in step 1, identify all pairs of (source_entity, target_entity) that are *clearly related* to each other.\nFor each pair of related entities, extract the following information:\n- source_entity: name of the source entity, as identified in step 1\n- target_entity: name of the target entity, as identified in step 1\n- relationship_description: explanation as to why you think the source entity and the target entity are related to each other\n- relationship_strength: a numeric score indicating strength of the relationship between the source entity and target entity\n Format each relationship as ("relationship"<|><|><|><|>)\n \n3. Return output in English as a single list of all the entities and relationships identified in steps 1 and 2. Use **##** as the list delimiter.\n \n4. When finished, output <|COMPLETE|>\n \n######################\n-Examples-\n######################\nExample 1:\nEntity_types: ORGANIZATION,PERSON\nText:\nThe Verdantis\'s Central Institution is scheduled to meet on Monday and Thursday, with the institution planning to release its latest policy decision on Thursday at 1:30 p.m. PDT, followed by a press conference where Central Institution Chair Martin Smith will take questions. Investors expect the Market Strategy Committee to hold its benchmark interest rate steady in a range of 3.5%-3.75%.\n######################\nOutput:\n("entity"<|>CENTRAL INSTITUTION<|>ORGANIZATION<|>The Central Institution is the Federal Reserve of Verdantis, which is setting interest rates on Monday and Thursday)\n##\n("entity"<|>MARTIN SMITH<|>PERSON<|>Martin Smith is the chair of the Central Institution)\n##\n("entity"<|>MARKET STRATEGY COMMITTEE<|>ORGANIZATION<|>The Central Institution committee makes key decisions about interest rates and the growth of Verdantis\'s money supply)\n##\n("relationship"<|>MARTIN SMITH<|>CENTRAL INSTITUTION<|>Martin Smith is the Chair of the Central Institution and will answer questions at a press conference<|>9)\n<|COMPLETE|>\n\n######################\nExample 2:\nEntity_types: ORGANIZATION\nText:\nTechGlobal\'s (TG) stock skyrocketed in its opening day on the Global Exchange Thursday. But IPO experts warn that the semiconductor corporation\'s debut on the public markets isn\'t indicative of how other newly listed companies may perform.\n\nTechGlobal, a formerly public company, was taken private by Vision Holdings in 2014. The well-established chip designer says it powers 85% of premium smartphones.\n######################\nOutput:\n("entity"<|>TECHGLOBAL<|>ORGANIZATION<|>TechGlobal is a stock now listed on the Global Exchange which powers 85% of premium smartphones)\n##\n("entity"<|>VISION HOLDINGS<|>ORGANIZATION<|>Vision Holdings is a firm that previously owned TechGlobal)\n##\n("relationship"<|>TECHGLOBAL<|>VISION HOLDINGS<|>Vision Holdings formerly owned TechGlobal from 2014 until present<|>5)\n<|COMPLETE|>\n\n######################\nExample 3:\nEntity_types: ORGANIZATION,GEO,PERSON\nText:\nFive Aurelians jailed for 8 years in Firuzabad and widely regarded as hostages are on their way home to Aurelia.\n\nThe swap orchestrated by Quintara was finalized when $8bn of Firuzi funds were transferred to financial institutions in Krohaara, the capital of Quintara.\n\nThe exchange initiated in Firuzabad\'s capital, Tiruzia, led to the four men and one woman, who are also Firuzi nationals, boarding a chartered flight to Krohaara.\n\nThey were welcomed by senior Aurelian officials and are now on their way to Aurelia\'s capital, Cashion.\n\nThe Aurelians include 39-year-old businessman Samuel Namara, who has been held in Tiruzia\'s Alhamia Prison, as well as journalist Durke Bataglani, 59, and environmentalist Meggie Tazbah, 53, who also holds Bratinas nationality.\n######################\nOutput:\n("entity"<|>FIRUZABAD<|>GEO<|>Firuzabad held Aurelians as hostages)\n##\n("entity"<|>AURELIA<|>GEO<|>Country seeking to release hostages)\n##\n("entity"<|>QUINTARA<|>GEO<|>Country that negotiated a swap of money in exchange for hostages)\n##\n##\n("entity"<|>TIRUZIA<|>GEO<|>Capital of Firuzabad where the Aurelians were being held)\n##\n("entity"<|>KROHAARA<|>GEO<|>Capital city in Quintara)\n##\n("entity"<|>CASHION<|>GEO<|>Capital city in Aurelia)\n##\n("entity"<|>SAMUEL NAMARA<|>PERSON<|>Aurelian who spent time in Tiruzia\'s Alhamia Prison)\n##\n("entity"<|>ALHAMIA PRISON<|>GEO<|>Prison in Tiruzia)\n##\n("entity"<|>DURKE BATAGLANI<|>PERSON<|>Aurelian journalist who was held hostage)\n##\n("entity"<|>MEGGIE TAZBAH<|>PERSON<|>Bratinas national and environmentalist who was held hostage)\n##\n("relationship"<|>FIRUZABAD<|>AURELIA<|>Firuzabad negotiated a hostage exchange with Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>AURELIA<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>QUINTARA<|>FIRUZABAD<|>Quintara brokered the hostage exchange between Firuzabad and Aurelia<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>ALHAMIA PRISON<|>Samuel Namara was a prisoner at Alhamia prison<|>8)\n##\n("relationship"<|>SAMUEL NAMARA<|>MEGGIE TAZBAH<|>Samuel Namara and Meggie Tazbah were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>DURKE BATAGLANI<|>Samuel Namara and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>DURKE BATAGLANI<|>Meggie Tazbah and Durke Bataglani were exchanged in the same hostage release<|>2)\n##\n("relationship"<|>SAMUEL NAMARA<|>FIRUZABAD<|>Samuel Namara was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>MEGGIE TAZBAH<|>FIRUZABAD<|>Meggie Tazbah was a hostage in Firuzabad<|>2)\n##\n("relationship"<|>DURKE BATAGLANI<|>FIRUZABAD<|>Durke Bataglani was a hostage in Firuzabad<|>2)\n<|COMPLETE|>\n\n######################\n-Real Data-\n######################\nEntity_types: Baggage Type,Dimension,Linear Dimension,Weight,Material Type,Wheel Configuration,Measurement Unit,Size Category,Weight Category,Airline,Alliance,Airport,Route Type,Travel Class,Cabin Section,Aircraft Type,Restriction,Exemption,Policy,Fee Structure,Currency,Allowance,Special Item,Prohibited Item,Restricted Item,Dangerous Good,Fragile Item,Valuable Item,Required Document,Label Type,Tag Category,Service Type,Handler Role,Service Location,Time Period,Passenger Type,Membership Level,Group Category\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\n######################\nOutput:'}, {'role': 'assistant', 'content': '("entity"<|>ISRAEL<|>GEO<|>Israel is the country where the Ministry of Health regulates the entry of animals.)\n##\n("entity"<|>MINISTRY OF HEALTH<|>ORGANIZATION<|>The Ministry of Health is the authority responsible for approving the entry of animals into Israel.)\n##\n("entity"<|>EL AL<|>AIRLINE<|>EL AL is the airline that provides services for transporting animals in various classes of the aircraft.)\n##\n("entity"<|>ANIMAL<|>SPECIAL ITEM<|>Animals such as dogs, cats, or exotic birds that are subject to specific transport regulations.)\n##\n("entity"<|>VETERINARY SERVICES<|>ORGANIZATION<|>Veterinary Services at Ben Gurion Airport is responsible for issuing flight permits for transporting animals.)\n##\n("entity"<|>BEN GURION AIRPORT<|>AIRPORT<|>Ben Gurion Airport is the main airport in Israel where animals must be authorized for transport.)\n##\n("entity"<|>CERTIFICATE OF GOOD HEALTH<|>REQUIRED DOCUMENT<|>A document required to ensure the animal is healthy before transport.)\n##\n("entity"<|>RABIES ANTIBODY TEST<|>REQUIRED DOCUMENT<|>A test required to confirm that the animal has been vaccinated against rabies.)\n##\n("entity"<|>BAGGAGE<|>BAGGAGE TYPE<|>Baggage refers to the category under which animals can be transported in the aircraft cabin or hold.)\n##\n("entity"<|>REGISTERED CARGO<|>BAGGAGE TYPE<|>Registered cargo is the method of transporting animals that exceed certain weight limits.)\n##\n("entity"<|>BUSINESS CABIN<|>CABIN SECTION<|>The Business cabin is a section of the aircraft where animals may be transported with prior approval.)\n##\n("entity"<|>ANIMAL WEIGHT<|>DIMENSION<|>The weight of the animal is a critical factor in determining the mode of transport.)\n##\n("entity"<|>9 KG<|>WEIGHT<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin.)\n##\n("entity"<|>100 KG<|>WEIGHT<|>Animals weighing more than 100 kg must be transported as registered cargo.)\n##\n("entity"<|>DOCUMENTS<|>REQUIRED DOCUMENT<|>Documents required for obtaining authorization to transport an animal to Israel.)\n##\n("entity"<|>FLIGHT PERMIT<|>REQUIRED DOCUMENT<|>A permit issued by Veterinary Services allowing the transport of an animal.)\n##\n("relationship"<|>MINISTRY OF HEALTH<|>ISRAEL<|>The Ministry of Health regulates the entry of animals into Israel<|>8)\n##\n("relationship"<|>EL AL<|>ANIMAL<|>EL AL provides transport services for animals in various classes<|>7)\n##\n("relationship"<|>VETERINARY SERVICES<|>BEN GURION AIRPORT<|>Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport<|>9)\n##\n("relationship"<|>ANIMAL<|>BAGGAGE<|>Animals can be transported as baggage in the aircraft cabin or hold<|>6)\n##\n("relationship"<|>ANIMAL<|>REGISTERED CARGO<|>Animals exceeding weight limits must be transported as registered cargo<|>6)\n##\n("relationship"<|>ANIMAL<|>ANIMAL WEIGHT<|>The weight of the animal determines the mode of transport<|>8)\n##\n("relationship"<|>9 KG<|>ANIMAL<|>Animals weighing up to 9 kg can be transported in the aircraft cabin<|>7)\n##\n("relationship"<|>100 KG<|>ANIMAL<|>Animals weighing more than 100 kg must be transported as registered cargo<|>7)\n##\n("relationship"<|>VETERINARY SERVICES<|>DOCUMENTS<|>Veterinary Services requires specific documents for animal transport authorization<|>8)\n##\n("relationship"<|>DOCUMENTS<|>CERTIFICATE OF GOOD HEALTH<|>A certificate of good health is one of the required documents for transport<|>9)\n##\n("relationship"<|>DOCUMENTS<|>RABIES ANTIBODY TEST<|>A rabies antibody test is another required document for transport<|>9)\n##\n("relationship"<|>EL AL<|>BUSINESS CABIN<|>Animals can be transported in the Business cabin with prior approval from EL AL<|>6)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities and relationships were missed in the last extraction. Remember to ONLY emit entities that match any of the previously extracted types. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '("entity"<|>BANGKOK<|>AIRPORT<|>Bangkok is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>AMSTERDAM<|>AIRPORT<|>Amsterdam is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>BOSTON<|>AIRPORT<|>Boston is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>MUMBAI<|>AIRPORT<|>Mumbai is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>BRUSSELS<|>AIRPORT<|>Brussels is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>LARNACA<|>AIRPORT<|>Larnaca is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>FRANKFURT<|>AIRPORT<|>Frankfurt is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>MOSCOW<|>AIRPORT<|>Moscow is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>MUNICH<|>AIRPORT<|>Munich is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>MADRID<|>AIRPORT<|>Madrid is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>BERLIN<|>AIRPORT<|>Berlin is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>PRAGUE<|>AIRPORT<|>Prague is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>WARSAW<|>AIRPORT<|>Warsaw is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>TORONTO<|>AIRPORT<|>Toronto is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>VIENNA<|>AIRPORT<|>Vienna is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>BUDAPEST<|>AIRPORT<|>Budapest is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>KYIV<|>AIRPORT<|>Kyiv is an airport from which animals cannot be transported as registered cargo.)\n##\n("entity"<|>ROME<|>AIRPORT<|>Rome is an airport from which animals cannot be transported as registered cargo.)\n##\n("relationship"<|>BANGKOK<|>ANIMAL<|>Animals cannot be transported as registered cargo from Bangkok<|>5)\n##\n("relationship"<|>AMSTERDAM<|>ANIMAL<|>Animals cannot be transported as registered cargo from Amsterdam<|>5)\n##\n("relationship"<|>BOSTON<|>ANIMAL<|>Animals cannot be transported as registered cargo from Boston<|>5)\n##\n("relationship"<|>MUMBAI<|>ANIMAL<|>Animals cannot be transported as registered cargo from Mumbai<|>5)\n##\n("relationship"<|>BRUSSELS<|>ANIMAL<|>Animals cannot be transported as registered cargo from Brussels<|>5)\n##\n("relationship"<|>LARNACA<|>ANIMAL<|>Animals cannot be transported as registered cargo from Larnaca<|>5)\n##\n("relationship"<|>FRANKFURT<|>ANIMAL<|>Animals cannot be transported as registered cargo from Frankfurt<|>5)\n##\n("relationship"<|>MOSCOW<|>ANIMAL<|>Animals cannot be transported as registered cargo from Moscow<|>5)\n##\n("relationship"<|>MUNICH<|>ANIMAL<|>Animals cannot be transported as registered cargo from Munich<|>5)\n##\n("relationship"<|>MADRID<|>ANIMAL<|>Animals cannot be transported as registered cargo from Madrid<|>5)\n##\n("relationship"<|>BERLIN<|>ANIMAL<|>Animals cannot be transported as registered cargo from Berlin<|>5)\n##\n("relationship"<|>PRAGUE<|>ANIMAL<|>Animals cannot be transported as registered cargo from Prague<|>5)\n##\n("relationship"<|>WARSAW<|>ANIMAL<|>Animals cannot be transported as registered cargo from Warsaw<|>5)\n##\n("relationship"<|>TORONTO<|>ANIMAL<|>Animals cannot be transported as registered cargo from Toronto<|>5)\n##\n("relationship"<|>VIENNA<|>ANIMAL<|>Animals cannot be transported as registered cargo from Vienna<|>5)\n##\n("relationship"<|>BUDAPEST<|>ANIMAL<|>Animals cannot be transported as registered cargo from Budapest<|>5)\n##\n("relationship"<|>KYIV<|>ANIMAL<|>Animals cannot be transported as registered cargo from Kyiv<|>5)\n##\n("relationship"<|>ROME<|>ANIMAL<|>Animals cannot be transported as registered cargo from Rome<|>5)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities and relationships may have still been missed. Answer YES | NO if there are still entities or relationships that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:40,505 httpcore.http11 DEBUG send_request_headers.started request= -13:51:40,505 httpcore.http11 DEBUG send_request_headers.complete -13:51:40,505 httpcore.http11 DEBUG send_request_body.started request= -13:51:40,505 httpcore.http11 DEBUG send_request_body.complete -13:51:40,505 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,259 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:41 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'463'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995493'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'27ms'), (b'x-request-id', b'req_3e8aa449ffd8c8f8a464ee33dbc98d3d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47bfffce79c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:41,259 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:41,259 httpcore.http11 DEBUG receive_response_body.started request= -13:51:41,259 httpcore.http11 DEBUG receive_response_body.complete -13:51:41,259 httpcore.http11 DEBUG response_closed.started -13:51:41,259 httpcore.http11 DEBUG response_closed.complete -13:51:41,260 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:41,260 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.75. input_tokens=30, output_tokens=2 -13:51:41,267 graphrag.index.operations.summarize_descriptions.summarize_descriptions DEBUG summarize_descriptions strategy={'type': "graph_intelligence", 'llm': {'api_key': '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', 'type': "openai_chat", 'model': 'gpt-4o-mini', 'max_tokens': 4000, 'temperature': 0.0, 'top_p': 1.0, 'n': 1, 'request_timeout': 180.0, 'api_base': None, 'api_version': None, 'organization': None, 'proxy': None, 'audience': None, 'deployment_name': None, 'model_supports_json': True, 'tokens_per_minute': 0, 'requests_per_minute': 0, 'max_retries': 10, 'max_retry_wait': 10.0, 'sleep_on_rate_limit_recommendation': True, 'concurrent_requests': 25}, 'stagger': 0.3, 'num_threads': 50, 'summarize_prompt': None, 'max_summary_length': 500} -13:51:41,311 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "EL AL"\nDescription List: ["Airline that states it is not responsible for any liquids confiscated from passengers at the airport.", "EL AL is an airline that has specific policies regarding the transportation of dogs on its flights.", "EL AL is an airline that has specific policies regarding the transportation of pets, including restrictions on certain breeds and weight limits.", "EL AL is an airline that has specific policies regarding the transportation of pets.", "EL AL is an airline that has specific policies regarding the transportation of service dogs on flights.", "EL AL is an airline that has specific regulations regarding the transport of baggage, including special items like ski equipment and bicycles.", "EL AL is an airline that operates flights allowing specific carry-on baggage policies.", "EL AL is an airline that operates flights and has specific baggage policies and allowances for passengers.", "EL AL is an airline that operates flights and has specific regulations regarding battery-powered mobility aids.", "EL AL is an airline that operates flights with specific carry-on baggage policies.", "EL AL is an airline that provides baggage check-in services and has specific baggage policies for different travel classes.", "EL AL is an airline that provides guidelines for transporting pets and service dogs on flights.", "EL AL is an airline that provides guidelines for traveling with battery-powered mobility aids and hazardous materials.", "EL AL is an airline that provides services for transporting pets as cargo and requires specific documentation for pet travel.", "EL AL is an airline that provides services for transporting pets as cargo or baggage.", "EL AL is an airline that provides services related to baggage handling and claims for delayed or damaged baggage.", "EL AL is an airline that provides services related to baggage handling and claims.", "EL AL is an airline that provides transport services and has specific guidelines regarding passenger equipment and liability for fragile or valuable items.", "EL AL is an airline that shares similar baggage policies with Sundor, particularly regarding checked baggage allowances.", "EL AL is the airline providing specific guidelines for transporting sporting equipment and other baggage types.", "EL AL is the airline that provides services for transporting animals in various classes of the aircraft.", "El Al is an airline known for its baggage policies, which are similar to those of Sundor.", "El Al is an airline that has specific baggage policies regarding carry-on and personal bags.", "El Al is an airline that requires passengers to check in at their counters regardless of luggage when returning to Israel from abroad."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,313 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "SERVICE DOG"\nDescription List: ["A service dog is a trained animal that assists passengers with disabilities and must meet specific requirements for air travel.", "Service dogs are exempt from certain weight limits when transported in the cabin.", "Service dogs are exempt from the weight limit for transporting pets in the cabin of the aircraft.", "Service dogs can accompany passengers with special needs or military personnel and must meet specific requirements for transport."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,315 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DANGEROUS DOG"\nDescription List: ["Dangerous dogs, as defined by Israeli law, are not approved for transportation.", "Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,318 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "PET"\nDescription List: ["Pets such as dogs, cats, and exotic birds can be transported in the cabin or as checked baggage under specific conditions.", "Pets such as dogs, cats, and exotic birds can be transported in the passenger cabin based on size, weight, and permits.", "Pets, including dogs, cats, and exotic birds, can be transported under specific conditions and weight limits."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,320 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CHECKED BAGGAGE"\nDescription List: ["", "Checked baggage is a method of transporting animals in certain instances, such as large animals.", "Checked baggage refers to animals that must be transported in the luggage compartment of the aircraft in certain instances, such as large animals.", "Checked baggage refers to luggage that is checked in at the airport and transported in the cargo hold of the aircraft.", "Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, as opposed to carry-on luggage that is taken into the cabin by the passenger.", "Checked baggage refers to luggage that is transported in the cargo hold of an aircraft, subject to size and weight restrictions.", "Checked baggage refers to luggage that is transported in the cargo hold of the aircraft, including sporting equipment under certain conditions.", "Checked baggage refers to the luggage that passengers check in at the airport, which is transported in the cargo hold of the aircraft.", "Checked baggage refers to the luggage that passengers check in before boarding the flight."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,322 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "REGISTERED CARGO"\nDescription List: ["Registered cargo is the method of transporting animals that exceed certain weight limits.", "Registered cargo is used for transporting animals that are extra-large or flying unaccompanied.", "Registered cargo refers to animals that may be transported by the Cargo Division, especially for extra-large animals or those flying unaccompanied."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,325 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "9KG"\nDescription List: ["The weight limit for pets transported in the cabin, including the cage, is 9kg, except for service dogs.", "The weight limit for pets transported in the cabin, including the cage, is 9kg."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,327 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "AUTHORIZATION"\nDescription List: ["Authorization from the Ministry of Agriculture�s Veterinary Services is required to transport an animal to and from Israel.", "Authorization from the Ministry of Agriculture�s Veterinary Services is required to transport an animal.", "Authorization from the Veterinary Services Department is required to transport a pet as cargo."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,329 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ANIMAL TESTS"\nDescription List: ["Several animal tests must be performed as part of the authorization process for transporting pets.", "The authorization process for transporting pets may involve performing several animal tests."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,331 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CHECK-IN COUNTER"\nDescription List: ["The check-in counter is where owners must arrive with their pets for transportation arrangements.", "The check-in counter is where passengers can check in their luggage and obtain boarding passes.", "The check-in counter is where pet owners must arrive with their pets for transport arrangements."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,333 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ARRIVALS HALL"\nDescription List: ["The Arrivals Hall is where owners can retrieve their pets after they have been transported as checked baggage.", "The Arrivals Hall is where pet owners will retrieve their animals after they have been transported as checked baggage.", "The arrivals hall at Ben Gurion Airport is where animals transported as baggage are released."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,335 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CARGO DIVISION"\nDescription List: ["The Cargo Division is responsible for managing transport costs and guidelines for cargo, including pets.", "The Cargo Division of EL AL handles special requests and approvals for transporting oversized or special items.", "The Cargo Division of EL AL handles the transportation of animals as cargo.", "The Cargo Division of EL AL handles the transportation of pets as cargo and requires specific documentation for this service.", "The Cargo Division of EL AL is responsible for handling the transportation of animals as registered cargo.", "The Cargo Division of EL AL is responsible for transporting animals that are extra-large or flying unaccompanied."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,337 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "EL AL CARGO STORE"\nDescription List: ["The EL AL Cargo Store is a service location for cargo operations associated with EL AL Airlines.", "The EL AL Cargo Store is a service provided by EL AL for transporting cargo, including pets, from Israel abroad."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,339 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CARGO TERMINAL"\nDescription List: ["", "The cargo terminal at Ben Gurion Airport is where animals transported as cargo are released."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,341 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ISRAEL"\nDescription List: ["Country from which flights are departing and has specific guidelines for carrying liquids in carry-on bags.", "Country from which flights may have specific conditions regarding carrying liquids in carry-on bags.", "Israel is a country with specific requirements for transporting animals, including service dogs.", "Israel is defined as a high-risk country for transporting dogs according to the CDC.", "Israel is the country from which animals are transported abroad.", "Israel is the country where the Ministry of Agriculture regulates the transport of pets.", "Israel is the country where the Ministry of Health regulates the entry of animals.", "Israel is the destination for passengers returning from abroad."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,343 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "VETERINARY SERVICES"\nDescription List: ["The Veterinary Services under the Ministry of Agriculture handle the authorization process for transporting pets.", "Veterinary Services at Ben Gurion Airport is responsible for issuing flight permits for transporting animals."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,346 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "FLIGHT"\nDescription List: ["A flight is a journey made by an aircraft from one airport to another, subject to specific baggage policies.", "The flight refers to the duration during which pets are transported in the cabin or cargo.", "Traveling by air, which is subject to regulations regarding the carrying of liquids.)<|COMPLETE|>"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,348 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BILL OF LADING"\nDescription List: ["A bill of lading is a document required for transporting animals as cargo.", "A bill of lading is a document required for transporting animals, especially when they weigh more than 9 kg.", "A bill of lading is required for transporting animals as cargo, indicating the terms of transport."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,350 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BUSINESS CABIN"\nDescription List: ["The Business cabin is a section of the aircraft where animals may be transported with prior approval.", "The Business cabin is a section of the aircraft where pets may be transported under certain conditions."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,352 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CAGE"\nDescription List: ["", "A cage is required for transporting animals, ensuring their safety and compliance with airline regulations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,354 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "WEIGHT"\nDescription List: ["Weight is a critical factor in determining how animals can be transported, influencing whether they travel in the cabin or as cargo.", "Weight is a factor in determining the cost of transporting pets, including the animal, carrying case, and food.", "Weight refers to the heaviness of baggage, which is a critical factor in determining if it is overweight.", "Weight refers to the mass of baggage, which is a critical factor in determining baggage allowances and fees.", "Weight refers to the mass of the baggage, which is a critical factor in determining baggage allowance and fees.", "Weight refers to the maximum allowable weight of sports equipment for transport, which varies by travel class.", "Weight refers to the maximum weight limits for carry-on bags and personal bags allowed on flights."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,356 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "VETERINARY SERVICES DEPARTMENT"\nDescription List: ["The Veterinary Services Department determines the conditions under which animals can be transported.", "The Veterinary Services Department is responsible for issuing health certificates and permits for animal transport."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,358 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CARGO"\nDescription List: ["Cargo refers to goods or items transported in bulk, separate from passenger baggage, often requiring special arrangements.", "Cargo refers to the service provided for transporting items that exceed standard baggage limits, including sporting equipment.", "Cargo refers to the transportation of goods, including animals, typically handled by the Cargo Division.", "Cargo transport refers to the method of shipping animals as registered cargo in the aircraft hold."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,360 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "GUIDELINES"\nDescription List: ["Guidelines set by the destination country\'s authorities dictate how animals must be transported.", "Updated guidelines that dictate the rules for carrying liquids in carry-on bags."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,362 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ANIMAL"\nDescription List: ["", "Animals such as dogs, cats, or exotic birds that are subject to specific transport regulations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:41,365 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,366 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,366 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,366 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,366 httpcore.http11 DEBUG send_request_body.complete -13:51:41,366 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,367 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,367 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,367 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,367 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,368 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,368 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,369 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,369 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,370 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,370 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,371 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,371 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,372 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,372 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,373 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,373 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,373 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,373 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,374 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,374 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,374 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,374 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,374 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,375 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,375 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,375 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,375 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,375 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,376 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,376 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,376 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,376 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,376 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,377 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,377 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,378 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,378 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,378 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,378 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,378 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,379 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,379 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,379 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,379 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,380 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,380 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,380 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,380 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,381 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,381 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,383 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:41,383 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,392 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,392 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,392 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,393 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,393 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,393 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,393 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,393 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,403 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,403 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,403 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,403 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,404 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,404 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,404 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,404 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,404 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,404 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,404 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,405 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,405 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,405 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,405 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,405 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,405 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,409 httpcore.http11 DEBUG send_request_body.complete -13:51:41,409 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,409 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,409 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,409 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,409 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,409 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,409 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,409 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,410 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,410 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,410 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,410 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,410 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,410 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,410 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,410 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,410 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,411 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,411 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,411 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,411 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,411 httpcore.http11 DEBUG send_request_body.complete -13:51:41,411 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,411 httpcore.http11 DEBUG send_request_body.complete -13:51:41,411 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,412 httpcore.http11 DEBUG send_request_body.complete -13:51:41,412 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,412 httpcore.http11 DEBUG send_request_body.complete -13:51:41,412 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,412 httpcore.http11 DEBUG send_request_body.complete -13:51:41,412 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,412 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,412 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,412 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,412 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,412 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,412 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,413 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,413 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,413 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,413 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,413 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,413 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,413 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,413 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,413 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,413 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,413 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,413 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,416 httpcore.http11 DEBUG send_request_body.complete -13:51:41,416 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,416 httpcore.http11 DEBUG send_request_body.complete -13:51:41,416 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,416 httpcore.http11 DEBUG send_request_body.complete -13:51:41,416 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,416 httpcore.http11 DEBUG send_request_body.complete -13:51:41,416 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,416 httpcore.http11 DEBUG send_request_body.complete -13:51:41,416 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,416 httpcore.http11 DEBUG send_request_body.complete -13:51:41,416 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,416 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,416 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,417 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,417 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,417 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,417 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,417 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,417 httpcore.http11 DEBUG send_request_body.complete -13:51:41,417 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,417 httpcore.http11 DEBUG send_request_body.complete -13:51:41,417 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,418 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,418 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,418 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,423 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,423 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,423 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,423 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,423 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,423 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,424 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,424 httpcore.http11 DEBUG send_request_body.complete -13:51:41,424 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,424 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:41,424 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:41,424 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,424 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,424 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,430 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,430 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,430 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,430 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,430 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,430 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,430 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,430 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,430 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,430 httpcore.http11 DEBUG send_request_body.complete -13:51:41,430 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,430 httpcore.http11 DEBUG send_request_body.complete -13:51:41,431 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,431 httpcore.http11 DEBUG send_request_body.complete -13:51:41,431 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,431 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,431 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,431 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,435 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,435 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,435 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,435 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,435 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,435 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,435 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,435 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,435 httpcore.http11 DEBUG send_request_body.complete -13:51:41,435 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,435 httpcore.http11 DEBUG send_request_body.complete -13:51:41,435 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,436 httpcore.http11 DEBUG send_request_body.complete -13:51:41,436 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,436 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,436 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,436 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,436 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,436 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,436 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,438 httpcore.http11 DEBUG send_request_body.complete -13:51:41,438 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,438 httpcore.http11 DEBUG send_request_body.complete -13:51:41,438 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:41,438 httpcore.connection DEBUG start_tls.complete return_value= -13:51:41,438 httpcore.http11 DEBUG send_request_headers.started request= -13:51:41,439 httpcore.http11 DEBUG send_request_headers.complete -13:51:41,439 httpcore.http11 DEBUG send_request_body.started request= -13:51:41,439 httpcore.http11 DEBUG send_request_body.complete -13:51:41,439 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,43 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'456'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9997024'), (b'x-ratelimit-reset-requests', b'25ms'), (b'x-ratelimit-reset-tokens', b'17ms'), (b'x-request-id', b'req_5d6593e40324cb4d435c8d3f66b3392b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0057de6c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,43 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,44 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,44 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,44 httpcore.http11 DEBUG response_closed.started -13:51:42,44 httpcore.http11 DEBUG response_closed.complete -13:51:42,44 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,45 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7190000000409782. input_tokens=143, output_tokens=27 -13:51:42,46 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CDC"\nDescription List: ["The CDC provides guidelines and requirements for transporting dogs to the United States, including health and vaccination documentation.", "The CDC sets regulations regarding the transportation of dogs to the US and provides guidelines that must be followed by passengers."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,47 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,47 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,47 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,47 httpcore.http11 DEBUG send_request_body.complete -13:51:42,47 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,121 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'529'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9990'), (b'x-ratelimit-remaining-tokens', b'9993702'), (b'x-ratelimit-reset-requests', b'58ms'), (b'x-ratelimit-reset-tokens', b'37ms'), (b'x-request-id', b'req_bfeb7f69b8d3aec18f56e70eee7f86fa'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0058c9ec231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,122 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,122 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,122 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,122 httpcore.http11 DEBUG response_closed.started -13:51:42,122 httpcore.http11 DEBUG response_closed.complete -13:51:42,122 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,123 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7810000000172295. input_tokens=160, output_tokens=29 -13:51:42,125 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CERTIFICATE OF GOOD HEALTH"\nDescription List: ["A certificate of good health is necessary for transporting pets to ensure they are fit for travel.", "A certificate of good health is required for pets being transported.", "A document required to ensure the animal is healthy before transport."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,126 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,126 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,126 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,126 httpcore.http11 DEBUG send_request_body.complete -13:51:42,126 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,134 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'554'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9996598'), (b'x-ratelimit-reset-requests', b'29ms'), (b'x-ratelimit-reset-tokens', b'20ms'), (b'x-request-id', b'req_4c448fa013a75100e0365657229cc842'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0056e74c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,134 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,134 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,134 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,134 httpcore.http11 DEBUG response_closed.started -13:51:42,134 httpcore.http11 DEBUG response_closed.complete -13:51:42,134 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,135 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7970000000204891. input_tokens=153, output_tokens=30 -13:51:42,137 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "EXPORT LICENSE"\nDescription List: ["An export license is needed for transporting animals internationally.", "An export license is needed to transport animals out of the country."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,137 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,138 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,138 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,138 httpcore.http11 DEBUG send_request_body.complete -13:51:42,138 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,190 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'574'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9983'), (b'x-ratelimit-remaining-tokens', b'9989084'), (b'x-ratelimit-reset-requests', b'101ms'), (b'x-ratelimit-reset-tokens', b'65ms'), (b'x-request-id', b'req_e47576aa9f517ebd5f05392c28f172e2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c005988b7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,190 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,190 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,190 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,190 httpcore.http11 DEBUG response_closed.started -13:51:42,190 httpcore.http11 DEBUG response_closed.complete -13:51:42,190 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,191 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8429999999934807. input_tokens=140, output_tokens=40 -13:51:42,192 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "HIGH-RISK COUNTRY"\nDescription List: ["A designation given to countries, such as Israel, where additional regulations apply for transporting certain animals.", "As of the current date, Israel is classified as a high-risk country for transporting animals, affecting travel regulations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,193 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,193 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,193 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,194 httpcore.http11 DEBUG send_request_body.complete -13:51:42,194 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,232 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'646'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9991'), (b'x-ratelimit-remaining-tokens', b'9993917'), (b'x-ratelimit-reset-requests', b'52ms'), (b'x-ratelimit-reset-tokens', b'36ms'), (b'x-request-id', b'req_772989aeb0811cafac9a63ced34678e6'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00568e4c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,232 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,232 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,232 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,232 httpcore.http11 DEBUG response_closed.started -13:51:42,232 httpcore.http11 DEBUG response_closed.complete -13:51:42,233 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,233 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9220000000204891. input_tokens=166, output_tokens=43 -13:51:42,235 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "MINISTRY OF HEALTH"\nDescription List: ["The Ministry of Health in Israel is responsible for approving the entry of animals into the country.", "The Ministry of Health is the authority responsible for approving the entry of animals into Israel."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,236 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,236 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,236 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,236 httpcore.http11 DEBUG send_request_body.complete -13:51:42,236 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,239 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'627'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9985'), (b'x-ratelimit-remaining-tokens', b'9990125'), (b'x-ratelimit-reset-requests', b'89ms'), (b'x-ratelimit-reset-tokens', b'59ms'), (b'x-request-id', b'req_f8fa145092c0393629f2a3dd1b9e99a3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0059a80c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,239 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,239 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,239 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,239 httpcore.http11 DEBUG response_closed.started -13:51:42,240 httpcore.http11 DEBUG response_closed.complete -13:51:42,240 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,240 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.875. input_tokens=142, output_tokens=36 -13:51:42,242 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BEN GURION AIRPORT"\nDescription List: ["Ben Gurion Airport is the airport in Israel where animals are released after transport.", "Ben Gurion Airport is the main airport in Israel where animals must be authorized for transport.", "Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,242 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,243 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,243 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,243 httpcore.http11 DEBUG send_request_body.complete -13:51:42,243 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,301 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'672'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9986'), (b'x-ratelimit-remaining-tokens', b'9990632'), (b'x-ratelimit-reset-requests', b'82ms'), (b'x-ratelimit-reset-tokens', b'56ms'), (b'x-request-id', b'req_9552502b7ed80b76b8384fcc341b618e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0059ea0c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,301 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,301 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,302 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,302 httpcore.http11 DEBUG response_closed.started -13:51:42,302 httpcore.http11 DEBUG response_closed.complete -13:51:42,302 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,302 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9530000000377186. input_tokens=156, output_tokens=46 -13:51:42,304 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BAGGAGE"\nDescription List: ["", "Baggage refers to personal items, including pets, that passengers can take on board the aircraft.", "Baggage refers to the category under which animals can be transported in the aircraft cabin or hold.", "Baggage refers to the items that passengers check in for their flight, which can be delayed, damaged, or lost.", "Baggage refers to the personal belongings that travelers take with them on a journey, which can be delayed, damaged, or lost during transit.", "Baggage refers to the suitcases and items that passengers check in for their flights, which can be lost, damaged, or delayed."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,305 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,305 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,305 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,305 httpcore.http11 DEBUG send_request_body.complete -13:51:42,305 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,344 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'732'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9985'), (b'x-ratelimit-remaining-tokens', b'9989971'), (b'x-ratelimit-reset-requests', b'88ms'), (b'x-ratelimit-reset-tokens', b'60ms'), (b'x-request-id', b'req_ae83cb6ca6e581bf83a5f1602a47e1ad'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0059a4dc21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,344 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,344 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,345 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,345 httpcore.http11 DEBUG response_closed.started -13:51:42,345 httpcore.http11 DEBUG response_closed.complete -13:51:42,345 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,345 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9849999999860302. input_tokens=153, output_tokens=55 -13:51:42,347 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "9 KG"\nDescription List: ["9 kg is the weight limit for pets to be transported as baggage without additional requirements.", "Animals weighing up to 9 kg can usually be transported in the aircraft cabin."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,348 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,348 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,348 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,348 httpcore.http11 DEBUG send_request_body.complete -13:51:42,348 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,438 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'856'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999248'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_20f16e59460bdd2949db18d19067226d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0056c72c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,438 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,438 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,438 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,439 httpcore.http11 DEBUG response_closed.started -13:51:42,439 httpcore.http11 DEBUG response_closed.complete -13:51:42,439 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,439 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.125. input_tokens=183, output_tokens=55 -13:51:42,441 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "100 KG"\nDescription List: ["100 kg is the maximum weight for pets to be transported as baggage; heavier pets must be transported as cargo.", "Animals weighing more than 100 kg must be transported as registered cargo."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,442 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,442 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,442 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,442 httpcore.http11 DEBUG send_request_body.complete -13:51:42,442 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,449 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'854'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9988'), (b'x-ratelimit-remaining-tokens', b'9992367'), (b'x-ratelimit-reset-requests', b'68ms'), (b'x-ratelimit-reset-tokens', b'45ms'), (b'x-request-id', b'req_ab03412c9c450dc69fb025ea14f0a7e0'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0057cb2ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,449 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,449 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,449 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,449 httpcore.http11 DEBUG response_closed.started -13:51:42,449 httpcore.http11 DEBUG response_closed.complete -13:51:42,449 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,450 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0929999999934807. input_tokens=158, output_tokens=56 -13:51:42,451 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DOCUMENTS"\nDescription List: ["Documents required for obtaining authorization to transport an animal to Israel.", "Necessary paperwork that passengers must have available according to their flight destination.", "Passengers must complete all necessary documents required for transporting animals to and from Israel."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,452 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,452 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,452 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,453 httpcore.http11 DEBUG send_request_body.complete -13:51:42,453 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,497 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'925'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9998895'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'6ms'), (b'x-request-id', b'req_8d615ecefb6e648b106284128145c252'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0056f087da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,497 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,497 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,497 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,497 httpcore.http11 DEBUG response_closed.started -13:51:42,497 httpcore.http11 DEBUG response_closed.complete -13:51:42,498 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,498 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.172000000020489. input_tokens=167, output_tokens=66 -13:51:42,500 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "50 KG"\nDescription List: ["", "50 kg is the upper weight limit for pets to be transported as baggage with specific fees."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,500 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,501 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,501 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,501 httpcore.http11 DEBUG send_request_body.complete -13:51:42,501 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,526 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'942'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9994'), (b'x-ratelimit-remaining-tokens', b'9995856'), (b'x-ratelimit-reset-requests', b'35ms'), (b'x-ratelimit-reset-tokens', b'24ms'), (b'x-request-id', b'req_458f7e58189f9d0c376ad161ec33f092'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00568437d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,526 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,526 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,526 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,526 httpcore.http11 DEBUG response_closed.started -13:51:42,526 httpcore.http11 DEBUG response_closed.complete -13:51:42,526 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,527 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1880000000237487. input_tokens=184, output_tokens=62 -13:51:42,528 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "VETERINARY CERTIFICATE"\nDescription List: ["A veterinary certificate is a document that certifies a service dog is vaccinated and can maintain sanitary conditions during transport.", "A veterinary certificate is required for transporting service dogs and must be provided by the passenger."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,529 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,529 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,529 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,530 httpcore.http11 DEBUG send_request_body.complete -13:51:42,530 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,536 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'952'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9992'), (b'x-ratelimit-remaining-tokens', b'9994712'), (b'x-ratelimit-reset-requests', b'46ms'), (b'x-ratelimit-reset-tokens', b'31ms'), (b'x-request-id', b'req_a8e0928f987f9bec049ec4e53f27e068'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0056e76c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,536 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,537 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,537 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,537 httpcore.http11 DEBUG response_closed.started -13:51:42,537 httpcore.http11 DEBUG response_closed.complete -13:51:42,537 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,537 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2030000000377186. input_tokens=174, output_tokens=65 -13:51:42,539 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "FLIGHT TICKET"\nDescription List: ["A flight ticket is a document that confirms a passenger\'s reservation and includes details about baggage allowances.", "A flight ticket is a document that confirms a passenger\'s reservation on a flight and includes details about baggage allowance.", "A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,540 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,540 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,540 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,540 httpcore.http11 DEBUG send_request_body.complete -13:51:42,540 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,606 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1026'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9998217'), (b'x-ratelimit-reset-requests', b'15ms'), (b'x-ratelimit-reset-tokens', b'10ms'), (b'x-request-id', b'req_a56921e90dcdc00bc94f55a35277f513'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0056ca2ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,606 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,606 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,606 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,606 httpcore.http11 DEBUG response_closed.started -13:51:42,607 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'997'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9984'), (b'x-ratelimit-remaining-tokens', b'9990270'), (b'x-ratelimit-reset-requests', b'90ms'), (b'x-ratelimit-reset-tokens', b'58ms'), (b'x-request-id', b'req_de933e35ddcb1ba3a0e85916c562be32'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c005898fc21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,607 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,607 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,607 httpcore.http11 DEBUG response_closed.complete -13:51:42,607 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,608 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.297000000020489. input_tokens=165, output_tokens=70 -13:51:42,608 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,608 httpcore.http11 DEBUG response_closed.started -13:51:42,610 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DOG"\nDescription List: ["", "A dog that may be transported by passengers under certain conditions and regulations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,610 httpcore.http11 DEBUG response_closed.complete -13:51:42,611 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,611 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2650000000139698. input_tokens=182, output_tokens=68 -13:51:42,613 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CHECK-IN COUNTERS"\nDescription List: ["Check-in counters are designated areas where passengers must check in for their flights.", "Check-in counters are the designated areas at the airport where passengers must present their documentation for traveling with a service dog."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,613 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,614 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,614 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,614 httpcore.http11 DEBUG send_request_body.complete -13:51:42,614 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,614 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,618 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,618 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,618 httpcore.http11 DEBUG send_request_body.complete -13:51:42,618 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,672 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1078'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9990'), (b'x-ratelimit-remaining-tokens', b'9994114'), (b'x-ratelimit-reset-requests', b'54ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_8ece95ccc77802f1ac1f29705bb3a90b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00569a0c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,672 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,672 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,672 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,672 httpcore.http11 DEBUG response_closed.started -13:51:42,672 httpcore.http11 DEBUG response_closed.complete -13:51:42,673 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,673 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.3600000000442378. input_tokens=193, output_tokens=74 -13:51:42,675 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "PASSENGER"\nDescription List: ["A person traveling on the airline who may bring a dog on board under specific conditions.", "Individuals traveling on EL AL flights who must comply with baggage regulations.", "Refers to individuals who travel on flights and are subject to airline policies regarding baggage and services."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,676 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,676 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,676 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,676 httpcore.http11 DEBUG send_request_body.complete -13:51:42,676 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,735 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'432'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999298'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_82e74ba09fa8e06547b605c2aab2ca04'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c009fcd7c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,735 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,735 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,736 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,736 httpcore.http11 DEBUG response_closed.started -13:51:42,736 httpcore.http11 DEBUG response_closed.complete -13:51:42,736 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,737 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.6089999999967404. input_tokens=145, output_tokens=22 -13:51:42,738 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BAGGAGE SERVICE CENTER"\nDescription List: ["The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board, providing assistance to travelers.", "The Baggage Service Center handles cases of delayed baggage, damaged baggage, and items forgotten on board."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,739 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,739 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,739 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,740 httpcore.http11 DEBUG send_request_body.complete -13:51:42,740 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,750 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1163'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9993'), (b'x-ratelimit-remaining-tokens', b'9995283'), (b'x-ratelimit-reset-requests', b'41ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_8a93d9c2bdaa7ab0b785364954330a23'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00568447d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,750 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,750 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,751 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,751 httpcore.http11 DEBUG response_closed.started -13:51:42,751 httpcore.http11 DEBUG response_closed.complete -13:51:42,751 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,751 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.422000000020489. input_tokens=175, output_tokens=80 -13:51:42,754 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BAGGAGE CLAIMS DEPARTMENT"\nDescription List: ["The Baggage Claims Department is responsible for handling reports of damaged baggage and processing claims.", "The Baggage Claims Department processes claims related to lost or damaged baggage."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,754 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,755 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,755 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,755 httpcore.http11 DEBUG send_request_body.complete -13:51:42,755 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,893 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'476'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_b32d7f08fabc249fed9050ee64b4de90'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00a9841c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,893 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,893 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,894 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,894 httpcore.http11 DEBUG response_closed.started -13:51:42,894 httpcore.http11 DEBUG response_closed.complete -13:51:42,894 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,894 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.6570000000065193. input_tokens=159, output_tokens=21 -13:51:42,896 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DELAYED BAGGAGE"\nDescription List: ["Delayed baggage refers to baggage that has not arrived with the passenger and must be reported immediately after landing.", "Delayed baggage refers to personal belongings that have not arrived with the traveler and must be reported to the airline for retrieval."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,897 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,897 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,897 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,897 httpcore.http11 DEBUG send_request_body.complete -13:51:42,897 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,972 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1383'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9994'), (b'x-ratelimit-remaining-tokens', b'9996882'), (b'x-ratelimit-reset-requests', b'30ms'), (b'x-ratelimit-reset-tokens', b'18ms'), (b'x-request-id', b'req_1b9d7d1251ea5ca5bbd78b531b15815a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0055e38c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,972 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,973 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,973 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,973 httpcore.http11 DEBUG response_closed.started -13:51:42,973 httpcore.http11 DEBUG response_closed.complete -13:51:42,973 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,974 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.6570000000065193. input_tokens=197, output_tokens=96 -13:51:42,975 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CLAIM STATUS"\nDescription List: ["Claim status can be checked using a worldwide system by entering the lost baggage report number and last name.", "Claim status refers to the current state of a baggage claim, which can be checked using the lost baggage report number."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,976 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,976 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,976 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,977 httpcore.http11 DEBUG send_request_body.complete -13:51:42,977 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:42,988 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'694'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999269'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_4656586dfc52f1c4c34eb387663a8e29'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c009ea16c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:42,988 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:42,988 httpcore.http11 DEBUG receive_response_body.started request= -13:51:42,988 httpcore.http11 DEBUG receive_response_body.complete -13:51:42,988 httpcore.http11 DEBUG response_closed.started -13:51:42,988 httpcore.http11 DEBUG response_closed.complete -13:51:42,988 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:42,989 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8589999999967404. input_tokens=168, output_tokens=49 -13:51:42,990 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "COURIER SERVICE"\nDescription List: ["The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler.", "The courier service is responsible for delivering retrieved delayed baggage to the passenger\'s address."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:42,991 httpcore.http11 DEBUG send_request_headers.started request= -13:51:42,991 httpcore.http11 DEBUG send_request_headers.complete -13:51:42,991 httpcore.http11 DEBUG send_request_body.started request= -13:51:42,992 httpcore.http11 DEBUG send_request_body.complete -13:51:42,992 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,31 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1428'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9987'), (b'x-ratelimit-remaining-tokens', b'9991511'), (b'x-ratelimit-reset-requests', b'75ms'), (b'x-ratelimit-reset-tokens', b'50ms'), (b'x-request-id', b'req_225d37d91f720f064b1b1574b20bfc46'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00599d1c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,31 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,31 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,31 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,31 httpcore.http11 DEBUG response_closed.started -13:51:43,31 httpcore.http11 DEBUG response_closed.complete -13:51:43,31 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,32 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.672000000020489. input_tokens=199, output_tokens=100 -13:51:43,33 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CONTACT DETAILS"\nDescription List: ["Contact details include phone numbers and WhatsApp chat options for reporting baggage issues.", "Contact details provide information on how travelers can reach the Baggage Service Center for assistance with baggage issues."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,34 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,34 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,34 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,35 httpcore.http11 DEBUG send_request_body.complete -13:51:43,35 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,76 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'711'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999270'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_ef4715b64c60ab5d729c1810c843a011'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00a4eda7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,76 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,76 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,76 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,76 httpcore.http11 DEBUG response_closed.started -13:51:43,76 httpcore.http11 DEBUG response_closed.complete -13:51:43,76 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,77 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8910000000032596. input_tokens=166, output_tokens=59 -13:51:43,79 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "LOST BAGGAGE REPORT NUMBER"\nDescription List: ["The lost baggage report number is a 10-character identifier used to check the status of a claim.", "The lost baggage report number is a unique identifier used to check the status of a claim regarding lost baggage."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,79 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,80 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,80 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,80 httpcore.http11 DEBUG send_request_body.complete -13:51:43,80 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,169 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1574'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9988'), (b'x-ratelimit-remaining-tokens', b'9991933'), (b'x-ratelimit-reset-requests', b'71ms'), (b'x-ratelimit-reset-tokens', b'48ms'), (b'x-request-id', b'req_0bd72f33e721a9ad75df667bd8a4b1fa'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0057a21c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,169 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,169 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,169 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,170 httpcore.http11 DEBUG response_closed.started -13:51:43,170 httpcore.http11 DEBUG response_closed.complete -13:51:43,170 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,170 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.8440000000409782. input_tokens=245, output_tokens=111 -13:51:43,172 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "FORGOTTEN ITEM"\nDescription List: ["A forgotten item is a personal belonging left on board an aircraft that may need to be reported to the airline for recovery.", "An item forgotten on board refers to personal belongings left behind by passengers on the aircraft."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,173 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,173 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,173 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,173 httpcore.http11 DEBUG send_request_body.complete -13:51:43,173 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,177 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'656'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999291'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_14929c107e6a32d28a7110dc8c0a45b5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00b4899c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,178 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,178 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,178 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,178 httpcore.http11 DEBUG response_closed.started -13:51:43,178 httpcore.http11 DEBUG response_closed.complete -13:51:43,178 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,179 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8280000000377186. input_tokens=156, output_tokens=45 -13:51:43,180 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BATTERIES"\nDescription List: ["Batteries are classified as dangerous goods and may require special handling when boarding a flight.", "Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft.", "Batteries must be protected from damage and short circuits and can be transported in the aircraft hold if they are not lithium-based."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,181 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,181 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,181 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,182 httpcore.http11 DEBUG send_request_body.complete -13:51:43,182 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,208 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'544'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999312'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_de20479ed699ec82fa451073fdb4eafc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00c3ea47da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,208 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,208 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,208 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,208 httpcore.http11 DEBUG response_closed.started -13:51:43,208 httpcore.http11 DEBUG response_closed.complete -13:51:43,208 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,209 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7029999999795109. input_tokens=141, output_tokens=36 -13:51:43,210 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "LAPTOP"\nDescription List: ["Laptops may be considered dangerous goods due to their lithium batteries and require special handling.", "Laptops may contain batteries that are classified as dangerous goods and must be handled according to airline regulations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,211 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,211 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,211 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,212 httpcore.http11 DEBUG send_request_body.complete -13:51:43,212 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,223 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1635'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9990'), (b'x-ratelimit-remaining-tokens', b'9993269'), (b'x-ratelimit-reset-requests', b'57ms'), (b'x-ratelimit-reset-tokens', b'40ms'), (b'x-request-id', b'req_a8288f69280a83d0acdcfd9bc4d8a420'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00569a5c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,223 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,223 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,223 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,223 httpcore.http11 DEBUG response_closed.started -13:51:43,223 httpcore.http11 DEBUG response_closed.complete -13:51:43,224 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,224 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.8910000000032596. input_tokens=238, output_tokens=115 -13:51:43,226 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "MEDICAL EQUIPMENT"\nDescription List: ["Medical equipment may contain batteries or other components classified as dangerous goods.", "Medical equipment may include batteries and other components that are classified as dangerous goods."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,226 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,226 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,226 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,227 httpcore.http11 DEBUG send_request_body.complete -13:51:43,227 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,240 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1659'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9997517'), (b'x-ratelimit-reset-requests', b'20ms'), (b'x-ratelimit-reset-tokens', b'14ms'), (b'x-request-id', b'req_2acddd9fef4dce8d450bae2aa60a1bbd'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0056dca7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,240 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,240 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,241 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,241 httpcore.http11 DEBUG response_closed.started -13:51:43,241 httpcore.http11 DEBUG response_closed.complete -13:51:43,241 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,241 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.922000000020489. input_tokens=316, output_tokens=117 -13:51:43,243 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "COMPRESSED GASES"\nDescription List: ["Compressed gases such as butane and oxygen are forbidden on aircraft due to their dangerous nature.", "Compressed gases such as butane and oxygen are forbidden on aircraft due to their flammability and potential hazards."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,244 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,244 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,244 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,245 httpcore.http11 DEBUG send_request_body.complete -13:51:43,245 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,251 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1038'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_339472f69eb72a2620a12ffc202a5967'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0096b8cc227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,251 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,251 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,251 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,251 httpcore.http11 DEBUG response_closed.started -13:51:43,251 httpcore.http11 DEBUG response_closed.complete -13:51:43,251 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,252 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.202999999979511. input_tokens=163, output_tokens=67 -13:51:43,253 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CORROSIVES"\nDescription List: ["Corrosive substances like acids and wet cell batteries are prohibited on aircraft.", "Corrosives like acids and wet cell batteries are prohibited on aircraft due to their hazardous nature."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,254 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,254 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,254 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,254 httpcore.http11 DEBUG send_request_body.complete -13:51:43,254 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,340 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'626'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999243'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_73580ef0442c11e0251ec218054a0ca5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00c789ac222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,340 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,340 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,340 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,340 httpcore.http11 DEBUG response_closed.started -13:51:43,340 httpcore.http11 DEBUG response_closed.complete -13:51:43,341 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,341 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8129999999655411. input_tokens=185, output_tokens=44 -13:51:43,343 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "EXPLOSIVES"\nDescription List: ["Explosives, other than light ammunition, are forbidden on aircraft for safety reasons.", "Explosives, other than light ammunition, are prohibited on aircraft."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,343 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,343 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,343 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,344 httpcore.http11 DEBUG send_request_body.complete -13:51:43,344 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,366 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'647'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9996453'), (b'x-ratelimit-reset-requests', b'24ms'), (b'x-ratelimit-reset-tokens', b'21ms'), (b'x-request-id', b'req_8965f9b715dac3a0e1e2f00dcc13db1a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00c69d97d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,367 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,367 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,367 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,367 httpcore.http11 DEBUG response_closed.started -13:51:43,367 httpcore.http11 DEBUG response_closed.complete -13:51:43,367 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,368 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8429999999934807. input_tokens=164, output_tokens=41 -13:51:43,369 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "FLAMMABLE LIQUIDS"\nDescription List: ["Flammable liquids and solids are prohibited on aircraft due to safety concerns.", "Flammable liquids and solids are prohibited on aircraft due to their potential to ignite."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,370 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,370 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,370 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,370 httpcore.http11 DEBUG send_request_body.complete -13:51:43,371 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,446 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'658'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999312'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_0d61680cdd87e30ba9ff1eddbd8aef11'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00cff85ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,446 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,446 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,446 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,447 httpcore.http11 DEBUG response_closed.started -13:51:43,447 httpcore.http11 DEBUG response_closed.complete -13:51:43,447 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,447 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8279999999795109. input_tokens=136, output_tokens=17 -13:51:43,450 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "RADIOACTIVE MATERIALS"\nDescription List: ["Radioactive materials are forbidden on aircraft due to safety and health risks.", "Radioactive materials are prohibited on aircraft for safety reasons."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,450 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,451 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,451 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,451 httpcore.http11 DEBUG send_request_body.complete -13:51:43,451 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,532 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'602'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_de4d5d8349b10f5cd6981fd6eadd051a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00dba31c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,532 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,532 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,533 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,533 httpcore.http11 DEBUG response_closed.started -13:51:43,533 httpcore.http11 DEBUG response_closed.complete -13:51:43,533 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,533 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7970000000204891. input_tokens=171, output_tokens=46 -13:51:43,535 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "OXIDIZING MATERIALS"\nDescription List: ["Oxidizing materials like hydrogen peroxide are prohibited on aircraft due to their reactive nature.", "Oxidizing materials such as hydrogen peroxide and bleaching powders are prohibited on aircraft."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,536 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,536 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,536 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,536 httpcore.http11 DEBUG send_request_body.complete -13:51:43,536 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,567 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'637'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9998355'), (b'x-ratelimit-reset-requests', b'13ms'), (b'x-ratelimit-reset-tokens', b'9ms'), (b'x-request-id', b'req_9058d62917d6e9d710e8aa654c31e3b9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00ddbcc7d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,567 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,567 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,567 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,567 httpcore.http11 DEBUG response_closed.started -13:51:43,568 httpcore.http11 DEBUG response_closed.complete -13:51:43,568 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,568 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8119999999762513. input_tokens=159, output_tokens=50 -13:51:43,570 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "POISONS"\nDescription List: ["Poisons and infectious substances are forbidden on aircraft due to their hazardous effects on health.", "Poisons, including insecticides and herbicides, are classified as dangerous goods and are prohibited on aircraft."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,570 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,571 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,571 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,571 httpcore.http11 DEBUG send_request_body.complete -13:51:43,571 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,599 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1988'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9985'), (b'x-ratelimit-remaining-tokens', b'9989845'), (b'x-ratelimit-reset-requests', b'87ms'), (b'x-ratelimit-reset-tokens', b'60ms'), (b'x-request-id', b'req_9b8ebdf6aab359ba0191d2a9d30dd715'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0059a7cc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,599 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,599 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,601 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,601 httpcore.http11 DEBUG response_closed.started -13:51:43,601 httpcore.http11 DEBUG response_closed.complete -13:51:43,601 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,601 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.25. input_tokens=272, output_tokens=144 -13:51:43,603 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "HIGH-STRENGTH MAGNETIC MATERIALS"\nDescription List: ["High-strength magnetic materials are prohibited on aircraft as they can harm people or the environment.", "High-strength magnetic materials are prohibited on aircraft as they can interfere with navigation and safety equipment."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,604 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,604 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,604 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,604 httpcore.http11 DEBUG send_request_body.complete -13:51:43,604 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,737 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1129'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999288'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_92713083f4a2d17a686186056ae93a3d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00bdca4c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,737 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,737 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,738 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,738 httpcore.http11 DEBUG response_closed.started -13:51:43,738 httpcore.http11 DEBUG response_closed.complete -13:51:43,738 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,738 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.297000000020489. input_tokens=159, output_tokens=75 -13:51:43,740 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ACIDS"\nDescription List: ["", "Acids are classified as corrosives and are prohibited on aircraft due to their hazardous nature."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,741 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,741 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,741 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,741 httpcore.http11 DEBUG send_request_body.complete -13:51:43,741 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,786 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1156'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999263'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_aa9ccff9d8e88111bc6a1b11d63c2f90'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00bed9ced42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,786 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,786 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,786 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,786 httpcore.http11 DEBUG response_closed.started -13:51:43,786 httpcore.http11 DEBUG response_closed.complete -13:51:43,787 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,787 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.3440000000409782. input_tokens=165, output_tokens=79 -13:51:43,789 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ALKALIS"\nDescription List: ["Alkalis are classified as corrosive substances and are prohibited on aircraft due to safety concerns.", "Alkalis are classified as corrosives and are prohibited on aircraft due to their hazardous nature."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,789 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,790 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,790 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,790 httpcore.http11 DEBUG send_request_body.complete -13:51:43,790 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,850 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2232'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9983'), (b'x-ratelimit-remaining-tokens', b'9989262'), (b'x-ratelimit-reset-requests', b'98ms'), (b'x-ratelimit-reset-tokens', b'64ms'), (b'x-request-id', b'req_883f2a6ff5f70860d1d1f8c6dc8a0c75'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0058e0b7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,850 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,850 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,850 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,851 httpcore.http11 DEBUG response_closed.started -13:51:43,851 httpcore.http11 DEBUG response_closed.complete -13:51:43,851 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,851 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.5. input_tokens=183, output_tokens=99 -13:51:43,853 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "WET CELL BATTERIES"\nDescription List: ["Wet cell batteries are classified as corrosive substances and are prohibited on aircraft.", "Wet cell batteries are classified as corrosives and are prohibited on aircraft due to their hazardous nature."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,854 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,854 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,854 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,854 httpcore.http11 DEBUG send_request_body.complete -13:51:43,854 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,928 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1071'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999262'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_4995f9184c4b999637922e8ddb7aa235'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00d5c49c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,929 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,929 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,929 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,929 httpcore.http11 DEBUG response_closed.started -13:51:43,929 httpcore.http11 DEBUG response_closed.complete -13:51:43,929 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,930 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.25. input_tokens=176, output_tokens=93 -13:51:43,932 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DANGEROUS GOOD"\nDescription List: ["", "Dangerous goods are items that pose a risk to health, safety, property, or the environment and are subject to strict regulations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,933 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,933 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'791'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999274'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_adeb0762ef97966a8551bb05b3f1c900'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00f3bb0c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,933 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,934 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,934 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,934 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,934 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,934 httpcore.http11 DEBUG response_closed.started -13:51:43,934 httpcore.http11 DEBUG send_request_body.complete -13:51:43,934 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,934 httpcore.http11 DEBUG response_closed.complete -13:51:43,934 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,935 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9679999999934807. input_tokens=165, output_tokens=54 -13:51:43,937 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "GELS"\nDescription List: ["A type of liquid that may be carried in carry-on bags, subject to restrictions.", "Gels are considered liquids and are subject to restrictions when carried in carry-on bags."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,937 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,938 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,938 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,938 httpcore.http11 DEBUG send_request_body.complete -13:51:43,938 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,953 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'542'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999276'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_d31919a098d27306517e67ad3db63934'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c010ecbc7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,953 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,953 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,953 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,953 httpcore.http11 DEBUG response_closed.started -13:51:43,953 httpcore.http11 DEBUG response_closed.complete -13:51:43,953 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,954 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7189999999827705. input_tokens=167, output_tokens=34 -13:51:43,955 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BABY FOOD"\nDescription List: ["A type of liquid that may be carried in carry-on bags, subject to restrictions.", "Baby food is a special item that does not have to be packed in the resealable plastic bag but must be presented at the security checkpoint."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,956 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,956 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,956 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,957 httpcore.http11 DEBUG send_request_body.complete -13:51:43,957 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,960 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'566'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999283'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_01d27ba598aef5009dba0ff3b29dbeb9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c010c8b0c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,960 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,961 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,961 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,961 httpcore.http11 DEBUG response_closed.started -13:51:43,961 httpcore.http11 DEBUG response_closed.complete -13:51:43,962 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,962 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7339999999967404. input_tokens=152, output_tokens=40 -13:51:43,964 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CREAMS"\nDescription List: ["A type of liquid that may be carried in carry-on bags, subject to restrictions.", "Creams are considered liquids and are subject to restrictions when carried in carry-on bags."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,964 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,965 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,965 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,965 httpcore.http11 DEBUG send_request_body.complete -13:51:43,965 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:43,994 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'793'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999276'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_098ab2af180bab43a2eba6a7853a5daa'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00f9ef3c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:43,994 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:43,994 httpcore.http11 DEBUG receive_response_body.started request= -13:51:43,995 httpcore.http11 DEBUG receive_response_body.complete -13:51:43,995 httpcore.http11 DEBUG response_closed.started -13:51:43,995 httpcore.http11 DEBUG response_closed.complete -13:51:43,995 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:43,995 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9529999999795109. input_tokens=156, output_tokens=56 -13:51:43,997 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "SECURITY CHECKPOINT"\nDescription List: ["Location where liquids that exceed the permitted amount will be discarded.", "Location where passengers must present their carry-on items, including liquids, for inspection before boarding."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:43,998 httpcore.http11 DEBUG send_request_headers.started request= -13:51:43,998 httpcore.http11 DEBUG send_request_headers.complete -13:51:43,998 httpcore.http11 DEBUG send_request_body.started request= -13:51:43,999 httpcore.http11 DEBUG send_request_body.complete -13:51:43,999 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,9 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'626'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999277'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e054cfbf231e29ce9a4bc78bf18384ab'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c010ab5d7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,9 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,9 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,10 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,10 httpcore.http11 DEBUG response_closed.started -13:51:44,10 httpcore.http11 DEBUG response_closed.complete -13:51:44,10 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,10 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7970000000204891. input_tokens=160, output_tokens=40 -13:51:44,12 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CARRY-ON BAGS"\nDescription List: ["Bags that passengers are allowed to take on board the aircraft, subject to restrictions on liquids.", "Carry-on bags are personal items that passengers can take on board the aircraft, subject to weight and size restrictions."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,14 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,14 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,14 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,14 httpcore.http11 DEBUG send_request_body.complete -13:51:44,14 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,38 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'784'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999277'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_b1053843a18eb5d436faf56a90507b14'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00fdeba7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,38 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,38 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,39 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,39 httpcore.http11 DEBUG response_closed.started -13:51:44,39 httpcore.http11 DEBUG response_closed.complete -13:51:44,39 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,39 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9530000000377186. input_tokens=169, output_tokens=53 -13:51:44,41 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "SPORTING EQUIPMENT"\nDescription List: ["Sporting equipment includes items like skis, snowboards, and bicycles that can be transported on flights under specific conditions.", "Sporting equipment refers to items such as skis, bikes, and other sports gear that can be transported as checked baggage or cargo by airlines."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,42 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,42 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,42 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,42 httpcore.http11 DEBUG send_request_body.complete -13:51:44,42 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,66 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1582'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999187'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e990248a4ba8cf52324c426381d6ce4d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00b0e6dc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,66 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,66 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,66 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,66 httpcore.http11 DEBUG response_closed.started -13:51:44,67 httpcore.http11 DEBUG response_closed.complete -13:51:44,67 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,67 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.7649999999557622. input_tokens=246, output_tokens=100 -13:51:44,69 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ECONOMY CLASS"\nDescription List: ["Economy Class is a travel class that allows complimentary transport of sports equipment under certain conditions, excluding Lite fares.", "Economy Class is a travel class that allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg.", "Economy Class is a travel class that offers standard services and amenities for passengers, excluding Lite fares.", "Economy class is a travel class offered by airlines, typically providing basic services and lower fares compared to higher classes."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,70 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,70 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,70 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,70 httpcore.http11 DEBUG send_request_body.complete -13:51:44,70 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,86 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'928'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999276'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_77766c003d6d015dbf68e7c15b7c68cf'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00f4973c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,86 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,86 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,86 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,86 httpcore.http11 DEBUG response_closed.started -13:51:44,87 httpcore.http11 DEBUG response_closed.complete -13:51:44,87 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,87 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0939999999827705. input_tokens=158, output_tokens=49 -13:51:44,89 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "PREMIUM CLASS"\nDescription List: ["Premium Class allows passengers to bring two carry-on bags, each weighing a maximum of 8 kg, with a combined weight not exceeding 12 kg.", "Premium Class is a higher travel class that provides enhanced services and amenities compared to Economy Class.", "Premium Class is a travel class that allows complimentary transport of sports equipment under specific conditions.", "Premium class tickets allow passengers to check up to two pieces of baggage weighing up to 23 kg each."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,89 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,90 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,90 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,90 httpcore.http11 DEBUG send_request_body.complete -13:51:44,90 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,123 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'592'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999293'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_eb72c43cead154bad7a5f7bc2a0cde27'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0118f38c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,123 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,123 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,123 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,123 httpcore.http11 DEBUG response_closed.started -13:51:44,123 httpcore.http11 DEBUG response_closed.complete -13:51:44,124 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,124 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7810000000172295. input_tokens=154, output_tokens=35 -13:51:44,126 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BUSINESS CLASS"\nDescription List: ["Business Class allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class.", "Business Class allows passengers to bring two carry-on bags, with one bag weighing a maximum of 16 kg and a combined weight not exceeding 20 kg.", "Business Class is a premium travel class that offers superior services and amenities for passengers.", "Business class tickets allow passengers to check up to two pieces of baggage weighing up to 32 kg each."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,126 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,127 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,127 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,127 httpcore.http11 DEBUG send_request_body.complete -13:51:44,127 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,202 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'856'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9998503'), (b'x-ratelimit-reset-requests', b'12ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_4999c3e0d423707075a427a5b2370e22'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0107dcdc21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,203 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,203 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,203 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,203 httpcore.http11 DEBUG response_closed.started -13:51:44,203 httpcore.http11 DEBUG response_closed.complete -13:51:44,203 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,204 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0309999999590218. input_tokens=187, output_tokens=57 -13:51:44,206 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DIMENSIONS"\nDescription List: ["Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding.", "Dimensions refer to the measurements of baggage, typically expressed in length, width, and height.", "Dimensions refer to the measurements of baggage, which determine whether it is classified as standard, oversized, or overweight.", "Dimensions refer to the total measurements (length + width + height) of the sports equipment that must not exceed specified limits for transport."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,207 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,207 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,207 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,207 httpcore.http11 DEBUG send_request_body.complete -13:51:44,207 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,271 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'344'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999309'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_f03d685966b54dbf2de8e8a52bcb2e40'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c013ff00c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,271 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,272 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,272 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,272 httpcore.http11 DEBUG response_closed.started -13:51:44,272 httpcore.http11 DEBUG response_closed.complete -13:51:44,272 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,272 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.5320000000065193. input_tokens=141, output_tokens=18 -13:51:44,274 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "EL AL CARGO DIVISION"\nDescription List: ["The EL AL Cargo Division handles excess baggage and special requests for passengers traveling with more than five pieces of checked baggage.", "The EL AL Cargo Division is a service that allows passengers to transport oversized or additional baggage separately from their standard allowance.", "The EL AL Cargo Division provides services for transporting oversized or separately sent sports equipment as cargo."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,275 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,276 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,276 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,276 httpcore.http11 DEBUG send_request_body.complete -13:51:44,276 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,298 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'681'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999293'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_117fc75de45b9e6e5629271bfc38fe79'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0122eb4ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,298 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,298 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,298 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,298 httpcore.http11 DEBUG response_closed.started -13:51:44,298 httpcore.http11 DEBUG response_closed.complete -13:51:44,299 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,299 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8600000000442378. input_tokens=150, output_tokens=42 -13:51:44,301 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "OVERWEIGHT BAGGAGE"\nDescription List: ["Overweight baggage refers to items that exceed the standard weight limits and require special approval for transport.", "Overweight baggage refers to luggage that exceeds the weight limit established by airlines, often resulting in extra charges.", "Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which incurs additional fees.", "Overweight baggage refers to luggage that exceeds the weight limit set by the airline, which may result in extra charges."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,301 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,302 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,302 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,302 httpcore.http11 DEBUG send_request_body.complete -13:51:44,302 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,309 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'743'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999288'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_21cdd144fa34d71c8baeb1caebf614b7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c011a9627d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,309 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,309 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,309 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,309 httpcore.http11 DEBUG response_closed.started -13:51:44,309 httpcore.http11 DEBUG response_closed.complete -13:51:44,309 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,310 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9529999999795109. input_tokens=157, output_tokens=45 -13:51:44,312 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ADDITIONAL SPORTS EQUIPMENT"\nDescription List: ["Additional sports equipment refers to any sports gear that exceeds the standard baggage allowance and requires special handling or fees.", "Additional sports equipment refers to any sports items brought beyond the standard baggage allowance."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,312 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,312 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,312 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,313 httpcore.http11 DEBUG send_request_body.complete -13:51:44,313 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,365 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1026'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999276'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_9c4dbe9d30140058de5fc43339d36af9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0106dc0c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,365 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,365 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,366 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,366 httpcore.http11 DEBUG response_closed.started -13:51:44,366 httpcore.http11 DEBUG response_closed.complete -13:51:44,366 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,366 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1869999999762513. input_tokens=166, output_tokens=69 -13:51:44,368 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "32 KG"\nDescription List: ["32 kg is the maximum weight allowed for each piece of checked baggage in business class.", "32 kg is the maximum weight limit for sports equipment in Business Class."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,369 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,369 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,369 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,369 httpcore.http11 DEBUG send_request_body.complete -13:51:44,370 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,424 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'471'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_97c83d51842a3853aad455109988c014'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01449faed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,424 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,424 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,424 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,424 httpcore.http11 DEBUG response_closed.started -13:51:44,424 httpcore.http11 DEBUG response_closed.complete -13:51:44,425 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,425 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.6410000000032596. input_tokens=161, output_tokens=23 -13:51:44,427 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "30 KG"\nDescription List: ["30 kg is the maximum weight limit for sports equipment in Economy Class.", "30 kg is the maximum weight limit for sports equipment in Economy and Premium Class."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,428 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,428 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,428 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,428 httpcore.http11 DEBUG send_request_body.complete -13:51:44,428 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,538 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'517'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_be67b2b987df2bcff97799b119c026b5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c014ba527da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,538 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,538 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,538 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,538 httpcore.http11 DEBUG response_closed.started -13:51:44,538 httpcore.http11 DEBUG response_closed.complete -13:51:44,539 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,539 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.6870000000344589. input_tokens=162, output_tokens=35 -13:51:44,541 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "277 CM"\nDescription List: ["277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage.", "277 cm is the maximum total measurement limit for sports equipment to be sent as overweight baggage.", "The total maximum dimensions (length + height + width) for checked baggage, including ski equipment, must not exceed 277 cm."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,542 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,542 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,542 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,542 httpcore.http11 DEBUG send_request_body.complete -13:51:44,542 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,577 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1160'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9997404'), (b'x-ratelimit-reset-requests', b'18ms'), (b'x-ratelimit-reset-tokens', b'15ms'), (b'x-request-id', b'req_8eab6ca745b319bae6023f66480fac48'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c010fcb7c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,577 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,577 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,578 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,578 httpcore.http11 DEBUG response_closed.started -13:51:44,578 httpcore.http11 DEBUG response_closed.complete -13:51:44,578 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,578 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.327999999979511. input_tokens=157, output_tokens=50 -13:51:44,580 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "LITE FARES"\nDescription List: ["Lite fares are a type of Economy Class fare that does not allow for complimentary transport of sports equipment.", "Lite fares are a type of Economy Class fare that typically offers fewer services and amenities."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,581 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,581 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,581 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,581 httpcore.http11 DEBUG send_request_body.complete -13:51:44,581 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,599 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'873'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_24e2f58ca030e56a0520c831f7a48d03'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c012b940c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,599 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,599 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,599 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,599 httpcore.http11 DEBUG response_closed.started -13:51:44,599 httpcore.http11 DEBUG response_closed.complete -13:51:44,600 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,600 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.062999999965541. input_tokens=165, output_tokens=48 -13:51:44,602 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "SKI EQUIPMENT"\nDescription List: ["", "Ski equipment includes one pair of skis, one pair of poles, and one pair of ski boots, which can be transported under specific conditions."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,602 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,603 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,603 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,603 httpcore.http11 DEBUG send_request_body.complete -13:51:44,603 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,622 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'835'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999272'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_02146a2136bd0dce46a5141be6bf9082'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c013181bc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,623 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,623 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,623 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,623 httpcore.http11 DEBUG response_closed.started -13:51:44,623 httpcore.http11 DEBUG response_closed.complete -13:51:44,623 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,623 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0310000000172295. input_tokens=166, output_tokens=61 -13:51:44,625 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "US DOLLARS"\nDescription List: ["Prices for baggage fees are displayed in US dollars, although local currency may be required at some airports.", "US Dollars are the currency used for pricing and payment of baggage fees.", "US dollars are the currency used for displaying prices related to baggage fees and charges."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,626 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,626 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,626 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,626 httpcore.http11 DEBUG send_request_body.complete -13:51:44,626 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,793 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'685'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9999300'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_8da897fdb826d65767bafdbcabbd1900'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0153f09c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,793 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,794 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,794 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,794 httpcore.http11 DEBUG response_closed.started -13:51:44,794 httpcore.http11 DEBUG response_closed.complete -13:51:44,794 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,795 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.875. input_tokens=152, output_tokens=46 -13:51:44,796 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "EXCESS BAGGAGE CHARGES"\nDescription List: ["Charges applied when baggage exceeds the permitted size and weight dimensions for checked baggage.", "Excess baggage charges are fees applied when a passenger\'s luggage exceeds the allowed size or weight limits."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,797 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,797 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,797 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,797 httpcore.http11 DEBUG send_request_body.complete -13:51:44,798 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,830 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'725'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999291'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_2983863267a4131204b690ca80b157b2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0153c98c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,830 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,831 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,831 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,831 httpcore.http11 DEBUG response_closed.started -13:51:44,831 httpcore.http11 DEBUG response_closed.complete -13:51:44,831 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,832 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8910000000032596. input_tokens=156, output_tokens=50 -13:51:44,833 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "AIRLINE"\nDescription List: ["An airline is a company that provides air transport services for passengers and cargo.", "Refers to the various airlines that operate flights and their associated baggage policies."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,834 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,834 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,834 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,834 httpcore.http11 DEBUG send_request_body.complete -13:51:44,835 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,855 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'642'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999263'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_7641d44f801ea212f4bbbb2ffbd25145'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c015ded37d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,856 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,856 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,856 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,856 httpcore.http11 DEBUG response_closed.started -13:51:44,856 httpcore.http11 DEBUG response_closed.complete -13:51:44,856 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,857 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8279999999795109. input_tokens=177, output_tokens=43 -13:51:44,858 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "LOCAL CURRENCY"\nDescription List: ["At some airports, payment for baggage fees is only allowed in local currency according to the conversion rate on the date of payment.", "Local currency refers to the currency accepted at specific airports for payment of fees, which may vary by location."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,859 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,859 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,859 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,860 httpcore.http11 DEBUG send_request_body.complete -13:51:44,860 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,883 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'3351'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998661'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_0afffa4aefa141960ea59b876be1a9fe'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0052d74c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,883 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,883 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,883 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,883 httpcore.http11 DEBUG response_closed.started -13:51:44,883 httpcore.http11 DEBUG response_closed.complete -13:51:44,883 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,884 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 3.577999999979511. input_tokens=596, output_tokens=259 -13:51:44,886 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DESTINATION COUNTRY"\nDescription List: ["The country to which the passenger is traveling, which may have specific regulations regarding the transport of equipment.", "The destination country is the country to which a passenger is traveling, and it has specific guidelines and conditions for admitting passenger equipment."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,886 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,887 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,887 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,887 httpcore.http11 DEBUG send_request_body.complete -13:51:44,887 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:44,892 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'710'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999277'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_646b33ba9ab23e1c86805892fb1f1615'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c015a9297da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:44,892 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:44,892 httpcore.http11 DEBUG receive_response_body.started request= -13:51:44,892 httpcore.http11 DEBUG receive_response_body.complete -13:51:44,892 httpcore.http11 DEBUG response_closed.started -13:51:44,892 httpcore.http11 DEBUG response_closed.complete -13:51:44,893 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:44,893 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8910000000032596. input_tokens=169, output_tokens=47 -13:51:44,895 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "FRAGILE ITEM"\nDescription List: ["Fragile items are those that can easily break or be damaged during transport, and EL AL does not take responsibility for them.", "Fragile items are those that require special handling due to their delicate nature, often needing additional protection during transport."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:44,895 httpcore.http11 DEBUG send_request_headers.started request= -13:51:44,895 httpcore.http11 DEBUG send_request_headers.complete -13:51:44,895 httpcore.http11 DEBUG send_request_body.started request= -13:51:44,896 httpcore.http11 DEBUG send_request_body.complete -13:51:44,896 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,211 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1467'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999279'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_64fb4610fdf607e5025012e43095595e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c012eb207d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,211 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,212 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,212 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,212 httpcore.http11 DEBUG response_closed.started -13:51:45,212 httpcore.http11 DEBUG response_closed.complete -13:51:45,212 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,213 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.6410000000032596. input_tokens=161, output_tokens=57 -13:51:45,214 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "VALUABLE ITEM"\nDescription List: ["Valuable items are high-value belongings that may require special consideration or insurance when traveling.", "Valuable items are those that have significant monetary or sentimental value, and EL AL does not take responsibility for them."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,215 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,215 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,215 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,216 httpcore.http11 DEBUG send_request_body.complete -13:51:45,216 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,245 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'645'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999295'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_2d09d9bed80848ac8bcc1c7a772742ae'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0184f75ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,245 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,245 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,245 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,245 httpcore.http11 DEBUG response_closed.started -13:51:45,246 httpcore.http11 DEBUG response_closed.complete -13:51:45,246 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,246 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8119999999762513. input_tokens=152, output_tokens=38 -13:51:45,248 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BAGGAGE TAG"\nDescription List: ["A baggage tag is a label attached to luggage that contains information about the owner and flight details, essential for tracking baggage.", "A baggage tag is a label attached to luggage that provides information about the owner and destination of the baggage."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,249 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,249 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,249 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,249 httpcore.http11 DEBUG send_request_body.complete -13:51:45,249 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,434 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'888'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999256'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_7348db455709a4e6da865b1f387b25d9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00a9a35c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,434 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,434 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,435 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,435 httpcore.http11 DEBUG response_closed.started -13:51:45,435 httpcore.http11 DEBUG response_closed.complete -13:51:45,435 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,435 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 3.202999999979511. input_tokens=184, output_tokens=52 -13:51:45,437 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "MAKOR HAZIUD"\nDescription List: ["Makor Haziud is a store that specializes in baggage and outdoor equipment.", "Makor Haziud specializes in baggage and outdoor equipment located in Nes Ziona."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,438 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,438 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,438 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,438 httpcore.http11 DEBUG send_request_body.complete -13:51:45,438 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,580 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'803'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999298'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e877875bf0427b43ae9358b9d704c655'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0195a6cc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,580 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,580 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,581 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,581 httpcore.http11 DEBUG response_closed.started -13:51:45,581 httpcore.http11 DEBUG response_closed.complete -13:51:45,581 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,581 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9839999999967404. input_tokens=154, output_tokens=54 -13:51:45,583 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ARTY RIMON"\nDescription List: ["ARTY Rimon is a service provider that offers pickup and delivery services for baggage.", "ARTY Rimon provides pickup and delivery services for luggage and bags in various locations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,584 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,584 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,584 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,584 httpcore.http11 DEBUG send_request_body.complete -13:51:45,584 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,626 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1494'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999291'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_fbafd587e5c84b941fc1a4cde6f58590'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0156f62c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,626 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,626 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,626 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,626 httpcore.http11 DEBUG response_closed.started -13:51:45,626 httpcore.http11 DEBUG response_closed.complete -13:51:45,626 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,627 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.672000000020489. input_tokens=156, output_tokens=47 -13:51:45,629 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "PERSONAL BAGS"\nDescription List: ["Personal bags are smaller bags that are stored under the seat in front of the passenger to maximize cabin space.", "Personal bags are smaller bags that are stored under the seat to maximize cabin space."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,629 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,630 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,630 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,630 httpcore.http11 DEBUG send_request_body.complete -13:51:45,630 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,667 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1170'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999269'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_6580cef1065d437c318870953ad5046e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c017888a7d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,668 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,668 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,668 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,668 httpcore.http11 DEBUG response_closed.started -13:51:45,668 httpcore.http11 DEBUG response_closed.complete -13:51:45,668 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,669 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.3600000000442378. input_tokens=163, output_tokens=38 -13:51:45,670 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "SUN DOR"\nDescription List: ["Sun Dor is an airline that operates flights allowing specific carry-on baggage policies.", "Sun Dor is an airline that operates flights with specific carry-on baggage policies."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,671 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,671 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,671 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,672 httpcore.http11 DEBUG send_request_body.complete -13:51:45,672 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,697 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1152'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999293'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_a58d149718175029a868184c34af36fc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c017ed84c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,697 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,697 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,697 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,697 httpcore.http11 DEBUG response_closed.started -13:51:45,697 httpcore.http11 DEBUG response_closed.complete -13:51:45,697 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,698 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.327999999979511. input_tokens=153, output_tokens=53 -13:51:45,699 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "MATMID FREQUENT FLYER CLUB"\nDescription List: ["Matmid Frequent Flyer Club status affects eligibility for carry-on baggage allowances.", "Matmid Frequent Flyer Club status may affect the eligibility of passengers to bring carry-on baggage aboard the aircraft."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,700 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,700 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,700 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,700 httpcore.http11 DEBUG send_request_body.complete -13:51:45,700 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,706 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:45 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'735'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999277'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_8b40e6e98f25e2384d21bb04c16d82f2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01a9e3cc224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,706 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,706 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,706 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,706 httpcore.http11 DEBUG response_closed.started -13:51:45,706 httpcore.http11 DEBUG response_closed.complete -13:51:45,707 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,707 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9059999999590218. input_tokens=165, output_tokens=48 -13:51:45,709 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "TROLLEY"\nDescription List: ["A trolley is a type of carry-on bag that can be stored in the overhead compartments of an aircraft.", "Trolleys are a type of carry-on bag that passengers can bring into the passenger cabin."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,709 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,709 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,710 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,710 httpcore.http11 DEBUG send_request_body.complete -13:51:45,710 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,818 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1437'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999211'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_00fe1018a215deab1a28795635c0ca19'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c016ec3dc21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,819 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,819 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,819 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,819 httpcore.http11 DEBUG response_closed.started -13:51:45,819 httpcore.http11 DEBUG response_closed.complete -13:51:45,819 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,820 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.6089999999967404. input_tokens=208, output_tokens=84 -13:51:45,822 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "OVERHEAD COMPARTMENTS"\nDescription List: ["Overhead compartments are storage areas above passenger seats where carry-on bags must be placed during the flight.", "Overhead compartments are storage areas in the passenger cabin where carry-on bags are placed during the flight."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,822 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,823 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,823 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,823 httpcore.http11 DEBUG send_request_body.complete -13:51:45,823 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,852 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1717'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9998619'), (b'x-ratelimit-reset-requests', b'11ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_254b2e04cbf2cef81749462ad023d091'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0155b477da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,852 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,852 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,853 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,853 httpcore.http11 DEBUG response_closed.started -13:51:45,853 httpcore.http11 DEBUG response_closed.complete -13:51:45,853 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,853 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.8910000000032596. input_tokens=170, output_tokens=62 -13:51:45,855 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "NORTH AMERICA"\nDescription List: ["North America is a region where specific carry-on baggage policies apply for flights operated by the airline.", "North America is a region where specific flight policies apply, particularly regarding carry-on baggage.", "North America is another destination served by EL AL, with its own baggage policies."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,856 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,856 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,856 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,856 httpcore.http11 DEBUG send_request_body.complete -13:51:45,856 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,859 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1109'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_698e34234555c61216c88e345fa5e47b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0193f21c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,859 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,860 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,860 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,860 httpcore.http11 DEBUG response_closed.started -13:51:45,860 httpcore.http11 DEBUG response_closed.complete -13:51:45,860 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,861 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2810000000172295. input_tokens=162, output_tokens=76 -13:51:45,863 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "16 KG"\nDescription List: ["16 kg is the maximum weight allowed for one bag as per airline policy.", "The maximum weight limit for one bag is 16 kg."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,864 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,864 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,864 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,865 httpcore.http11 DEBUG send_request_body.complete -13:51:45,865 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,882 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1417'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999209'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_6763f2cb5f5b80df534884ceb6f61310'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0177e81ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,882 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,882 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,882 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,882 httpcore.http11 DEBUG response_closed.started -13:51:45,882 httpcore.http11 DEBUG response_closed.complete -13:51:45,882 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,883 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.577999999979511. input_tokens=214, output_tokens=59 -13:51:45,885 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "20 KG"\nDescription List: ["20 kg is the combined maximum weight limit for all bags as per airline policy.", "The combined weight limit for bags is not to exceed 20 kg."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,885 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,885 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,885 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,886 httpcore.http11 DEBUG send_request_body.complete -13:51:45,886 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,897 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'895'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999289'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_4ba1faa65c6c745167a56bd1d372c161'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01adbf1c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,897 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,897 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,897 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,897 httpcore.http11 DEBUG response_closed.started -13:51:45,897 httpcore.http11 DEBUG response_closed.complete -13:51:45,897 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,898 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0630000000237487. input_tokens=152, output_tokens=38 -13:51:45,899 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "MEDICATIONS"\nDescription List: ["Medications are essential items that passengers are advised to keep accessible during flights.", "Medications are items that passengers are advised to keep accessible during the flight for health reasons."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,900 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,900 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,900 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,901 httpcore.http11 DEBUG send_request_body.complete -13:51:45,901 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,915 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1180'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999253'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_3b72f32fb7daa18fa9a17e9046fccdfa'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c018ff8c7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,916 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,916 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,916 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,916 httpcore.http11 DEBUG response_closed.started -13:51:45,916 httpcore.http11 DEBUG response_closed.complete -13:51:45,916 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,917 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.375. input_tokens=182, output_tokens=79 -13:51:45,919 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "VALUABLES"\nDescription List: ["Valuables are items of significant worth that passengers are recommended to keep with them during the flight.", "Valuables refer to personal items of significant worth that should be kept accessible during flights."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,919 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,919 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,919 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,920 httpcore.http11 DEBUG send_request_body.complete -13:51:45,920 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:45,958 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1798'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999283'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_cc824c14b92fe8bfd803c86cff9d547b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0159fa0c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:45,958 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:45,958 httpcore.http11 DEBUG receive_response_body.started request= -13:51:45,958 httpcore.http11 DEBUG receive_response_body.complete -13:51:45,958 httpcore.http11 DEBUG response_closed.started -13:51:45,959 httpcore.http11 DEBUG response_closed.complete -13:51:45,959 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:45,959 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.9689999999827705. input_tokens=154, output_tokens=49 -13:51:45,961 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "ELECTRONIC DEVICES"\nDescription List: ["Electronic devices are items such as laptops and tablets that passengers should keep accessible during the flight.", "Electronic devices are items such as phones and laptops that passengers are advised to keep accessible during flights.", "Electronic devices with lithium batteries that cannot be removed must be stored in the aircraft hold under specific conditions.", "Electronic devices with removable lithium batteries must have the battery taken aboard the aircraft cabin, while the device can be checked."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:45,962 httpcore.http11 DEBUG send_request_headers.started request= -13:51:45,962 httpcore.http11 DEBUG send_request_headers.complete -13:51:45,962 httpcore.http11 DEBUG send_request_body.started request= -13:51:45,963 httpcore.http11 DEBUG send_request_body.complete -13:51:45,963 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,39 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1596'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999229'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_2aedebebf576a5a58416dd0ff80dcdeb'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0175ba6c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,40 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,42 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,42 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,42 httpcore.http11 DEBUG response_closed.started -13:51:46,42 httpcore.http11 DEBUG response_closed.complete -13:51:46,42 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,43 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.7650000000139698. input_tokens=192, output_tokens=96 -13:51:46,45 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CHECKED BAGS"\nDescription List: ["Checked bags are items that are not taken on board the aircraft but are stored in the plane\'s cargo hold.", "Checked bags are pieces of luggage that are transported in the cargo hold of an aircraft, as opposed to being carried into the cabin."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,45 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,46 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,46 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,46 httpcore.http11 DEBUG send_request_body.complete -13:51:46,46 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,80 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1045'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999270'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_88c5e37a29ddc81c8af96a2de159dd1c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01afe5d7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,80 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,80 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,80 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,80 httpcore.http11 DEBUG response_closed.started -13:51:46,80 httpcore.http11 DEBUG response_closed.complete -13:51:46,80 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,81 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2189999999827705. input_tokens=169, output_tokens=50 -13:51:46,82 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "MAXIMUM WEIGHT"\nDescription List: ["", "Maximum weight refers to the heaviest allowable weight for carry-on bags and personal bags for boarding."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,83 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,83 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,83 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,84 httpcore.http11 DEBUG send_request_body.complete -13:51:46,84 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,90 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1831'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999213'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_4e8add8689cfd4076b7d78c6595710b1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0162a00c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,90 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,90 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,90 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,90 httpcore.http11 DEBUG response_closed.started -13:51:46,90 httpcore.http11 DEBUG response_closed.complete -13:51:46,90 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,91 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.0160000000032596. input_tokens=212, output_tokens=93 -13:51:46,92 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "FLIGHT DESTINATION"\nDescription List: ["Flight destination refers to the location where passengers are traveling and requires necessary documents for check-in.", "The flight destination is the final location where passengers are traveling to, which may affect baggage policies."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,93 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,93 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,93 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,94 httpcore.http11 DEBUG send_request_body.complete -13:51:46,94 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,136 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'526'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999293'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e603e5e19b4de864275e75ad15ebdfed'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01e98c4c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,136 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,136 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,136 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,136 httpcore.http11 DEBUG response_closed.started -13:51:46,136 httpcore.http11 DEBUG response_closed.complete -13:51:46,136 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,137 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.6880000000237487. input_tokens=162, output_tokens=22 -13:51:46,139 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "CHECK-IN PROCESS"\nDescription List: ["The check-in process is the procedure passengers go through to confirm their presence on a flight and check in their baggage.", "The check-in process is the procedure passengers must follow to confirm their presence on a flight and check their luggage."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,139 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,140 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,140 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,140 httpcore.http11 DEBUG send_request_body.complete -13:51:46,140 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,171 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'3383'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9998838'), (b'x-ratelimit-reset-requests', b'10ms'), (b'x-ratelimit-reset-tokens', b'6ms'), (b'x-request-id', b'req_b75e855967433fb14df96b5584d9392e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00cfaefc21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,171 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,171 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,171 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,171 httpcore.http11 DEBUG response_closed.started -13:51:46,172 httpcore.http11 DEBUG response_closed.complete -13:51:46,172 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,172 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 3.5630000000237487. input_tokens=163, output_tokens=42 -13:51:46,174 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "OVERSIZED BAGGAGE"\nDescription List: ["Oversized baggage is luggage that exceeds the airline\'s standard size limits, requiring special handling and potentially incurring additional fees.", "Oversized baggage is luggage that exceeds the standard dimensions set by airlines, requiring special handling and potentially incurring additional fees."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,174 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,175 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,175 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,175 httpcore.http11 DEBUG send_request_body.complete -13:51:46,175 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,179 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1881'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999210'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_419801e5e49b40f820f42f6d74866043'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0166e60c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,179 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,179 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,179 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,179 httpcore.http11 DEBUG response_closed.started -13:51:46,180 httpcore.http11 DEBUG response_closed.complete -13:51:46,180 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,180 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.047000000020489. input_tokens=213, output_tokens=95 -13:51:46,182 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BAGGAGE ALLOWANCE"\nDescription List: ["", "Baggage allowance is determined by the ticket type and specifies how much baggage a passenger can check without incurring extra fees.", "Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.", "Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,183 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,184 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,184 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,184 httpcore.http11 DEBUG send_request_body.complete -13:51:46,184 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,237 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1181'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999262'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_ab42cb5dfabe67573e5da899789d9735'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01b2988c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,237 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,237 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,237 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,237 httpcore.http11 DEBUG response_closed.started -13:51:46,237 httpcore.http11 DEBUG response_closed.complete -13:51:46,238 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,238 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.3589999999967404. input_tokens=169, output_tokens=58 -13:51:46,240 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "MANAGE YOUR BOOKING"\nDescription List: ["Manage Your Booking is an online service provided by airlines that allows passengers to view and modify their flight details, including baggage options.", "Manage Your Booking is an online service where passengers can view and modify their flight details, including baggage allowances."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,240 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,241 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,241 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,241 httpcore.http11 DEBUG send_request_body.complete -13:51:46,241 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,352 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'922'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999269'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_9d32bcb5ef5a5ccef5ab427214d5dec6'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01d6e66ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,352 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,352 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,352 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,352 httpcore.http11 DEBUG response_closed.started -13:51:46,352 httpcore.http11 DEBUG response_closed.complete -13:51:46,353 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,353 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1099999999860302. input_tokens=170, output_tokens=63 -13:51:46,355 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "$90"\nDescription List: ["", "The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,355 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,356 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,356 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,356 httpcore.http11 DEBUG send_request_body.complete -13:51:46,356 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,370 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'602'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999289'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_2f388eced862ccdac815e0a5466c9778'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01f8a50c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,370 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,370 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,370 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,370 httpcore.http11 DEBUG response_closed.started -13:51:46,370 httpcore.http11 DEBUG response_closed.complete -13:51:46,370 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,371 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7810000000172295. input_tokens=159, output_tokens=36 -13:51:46,373 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "23 KG"\nDescription List: ["23 kg is the maximum weight allowed for each piece of checked baggage in premium class.", "23 kg is the weight limit for each piece of checked baggage included in the ticket price for certain service types offered by EL AL."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,373 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,373 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,374 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,374 httpcore.http11 DEBUG send_request_body.complete -13:51:46,374 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,405 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1022'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999274'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_868df9131f3e4de647adc60f7bea8457'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01d3fb07d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,405 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,405 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,406 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,406 httpcore.http11 DEBUG response_closed.started -13:51:46,406 httpcore.http11 DEBUG response_closed.complete -13:51:46,406 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,406 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2030000000377186. input_tokens=164, output_tokens=61 -13:51:46,408 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "BAGGAGE POLICY"\nDescription List: ["Baggage policy outlines the rules and regulations regarding the number, size, and weight of baggage that passengers can check in or carry on.", "Baggage policy outlines the rules and regulations regarding the types, sizes, and weights of baggage that passengers can bring on flights."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,409 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,409 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,409 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,409 httpcore.http11 DEBUG send_request_body.complete -13:51:46,409 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,471 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'620'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999291'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_4708263a2d22e778740299ecafb44b78'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0200b9d7d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,471 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,471 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,472 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,472 httpcore.http11 DEBUG response_closed.started -13:51:46,472 httpcore.http11 DEBUG response_closed.complete -13:51:46,472 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,472 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7969999999622814. input_tokens=154, output_tokens=15 -13:51:46,474 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION"\nDescription List: ["The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage after check-in.", "The designated oversized/overweight baggage location is where passengers must take their oversized or overweight baggage for check-in."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,475 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,475 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,475 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,475 httpcore.http11 DEBUG send_request_body.complete -13:51:46,475 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,525 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2266'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9998816'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_5951996a9c42a1a20e9b8fb08eba293f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0160dffc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,525 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,525 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,525 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,525 httpcore.http11 DEBUG response_closed.started -13:51:46,525 httpcore.http11 DEBUG response_closed.complete -13:51:46,525 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,526 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.4540000000270084. input_tokens=218, output_tokens=86 -13:51:46,529 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "STANDARD BAGGAGE"\nDescription List: ["Standard baggage refers to luggage that meets the airline\'s size and weight requirements without incurring additional fees.", "Standard baggage refers to luggage that meets the airline\'s specified dimensions and weight limits without incurring extra charges."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,529 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,530 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,530 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,530 httpcore.http11 DEBUG send_request_body.complete -13:51:46,530 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,648 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1853'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999263'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_04b4e7098af220e027547589484e7c0b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0198945c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,648 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,648 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,648 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,648 httpcore.http11 DEBUG response_closed.started -13:51:46,648 httpcore.http11 DEBUG response_closed.complete -13:51:46,648 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,649 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.0160000000032596. input_tokens=175, output_tokens=59 -13:51:46,650 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "PROHIBITED ITEM"\nDescription List: ["", "Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,651 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,651 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,651 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,652 httpcore.http11 DEBUG send_request_body.complete -13:51:46,652 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,685 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'630'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9998445'), (b'x-ratelimit-reset-requests', b'12ms'), (b'x-ratelimit-reset-tokens', b'9ms'), (b'x-request-id', b'req_880bfd2d9a9cfab09b35f786f53c877b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02148c4c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,685 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,686 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,686 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,686 httpcore.http11 DEBUG response_closed.started -13:51:46,686 httpcore.http11 DEBUG response_closed.complete -13:51:46,686 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,687 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8279999999795109. input_tokens=149, output_tokens=41 -13:51:46,689 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "SPARE BATTERIES"\nDescription List: ["", "Spare batteries must be protected from damage and short circuit when taken aboard an aircraft.", "Spare lithium batteries are prohibited in checked baggage and must be protected when carried in the cabin."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,689 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,690 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,690 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,690 httpcore.http11 DEBUG send_request_body.complete -13:51:46,690 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,786 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'719'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_7525407cbd1d99cd1ec166a1355cc5ea'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0217ce1c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,786 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,786 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,786 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,786 httpcore.http11 DEBUG response_closed.started -13:51:46,787 httpcore.http11 DEBUG response_closed.complete -13:51:46,787 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,787 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8900000000139698. input_tokens=158, output_tokens=39 -13:51:46,789 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "LITHIUM-ION BATTERIES"\nDescription List: ["Larger lithium-ion batteries (100-160 watt-hours) are limited to two batteries per passenger and must comply with specific regulations.", "Lithium-ion batteries are rechargeable batteries commonly used in portable electronic devices, with specific size and watt-hour limitations for air travel.", "Lithium-ion batteries, including consumer-grade types, are allowed aboard aircraft with specific watt-hour limits."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,789 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,790 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,790 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,790 httpcore.http11 DEBUG send_request_body.complete -13:51:46,790 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,895 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1019'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9998713'), (b'x-ratelimit-reset-requests', b'12ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_37d750ae53f2a203995168b75a52409b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0204e22c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,895 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,896 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,896 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,896 httpcore.http11 DEBUG response_closed.started -13:51:46,896 httpcore.http11 DEBUG response_closed.complete -13:51:46,896 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,897 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1880000000237487. input_tokens=164, output_tokens=65 -13:51:46,898 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "PORTABLE CHARGERS"\nDescription List: ["", "Portable chargers are considered batteries and may be taken aboard aircraft under certain conditions.", "Portable chargers are considered lithium batteries and are prohibited in checked baggage."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,899 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,899 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,899 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,900 httpcore.http11 DEBUG send_request_body.complete -13:51:46,900 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:46,909 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1107'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e8e055a45c23470d15fd839e12ca51ff'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01fcd71c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:46,909 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:46,909 httpcore.http11 DEBUG receive_response_body.started request= -13:51:46,909 httpcore.http11 DEBUG receive_response_body.complete -13:51:46,909 httpcore.http11 DEBUG response_closed.started -13:51:46,909 httpcore.http11 DEBUG response_closed.complete -13:51:46,909 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:46,910 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2810000000172295. input_tokens=162, output_tokens=54 -13:51:46,912 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "NON-SPILLABLE WET BATTERIES"\nDescription List: ["Non-spillable wet batteries are limited to 12 volts and 100 watt-hours, designed to prevent leakage of electrolyte.", "Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:46,912 httpcore.http11 DEBUG send_request_headers.started request= -13:51:46,912 httpcore.http11 DEBUG send_request_headers.complete -13:51:46,912 httpcore.http11 DEBUG send_request_body.started request= -13:51:46,913 httpcore.http11 DEBUG send_request_body.complete -13:51:46,913 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,0 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'738'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999305'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_8fcd40e155591eb01936ec69d764f320'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0229fe07d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,0 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,0 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,0 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,0 httpcore.http11 DEBUG response_closed.started -13:51:47,0 httpcore.http11 DEBUG response_closed.complete -13:51:47,1 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,1 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9220000000204891. input_tokens=143, output_tokens=23 -13:51:47,3 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "FLAMMABLE MATERIAL"\nDescription List: ["Flammable materials such as hairspray are not allowed to be stored together with other items in baggage.", "Flammable materials, such as hairspray, are prohibited from being stored with electronic devices containing lithium batteries."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,4 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,4 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,4 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,4 httpcore.http11 DEBUG send_request_body.complete -13:51:47,4 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,8 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'920'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_b163ac68093b988ea98d226231548e1b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0219b1e7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,8 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,8 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,9 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,9 httpcore.http11 DEBUG response_closed.started -13:51:47,9 httpcore.http11 DEBUG response_closed.complete -13:51:47,9 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,9 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0939999999827705. input_tokens=162, output_tokens=36 -13:51:47,11 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: "IATA REGULATIONS"\nDescription List: ["IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights.", "IATA regulations govern the transport of battery-powered mobility aids on flights."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,12 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,12 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'792'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999272'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_450d0babdb450354a23ad8c81999d3d2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0226bf0c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,12 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,12 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,12 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,12 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,13 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,13 httpcore.http11 DEBUG response_closed.started -13:51:47,13 httpcore.http11 DEBUG send_request_body.complete -13:51:47,13 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,13 httpcore.http11 DEBUG response_closed.complete -13:51:47,13 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,13 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9849999999860302. input_tokens=173, output_tokens=52 -13:51:47,15 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["MINISTRY OF AGRICULTURE", "EL AL"]\nDescription List: ["EL AL must comply with the regulations set by the Ministry of Agriculture regarding pet transportation", "The Ministry of Agriculture oversees the transport of pets, which includes regulations that EL AL must follow for pet transportation"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,16 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,16 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,16 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,16 httpcore.http11 DEBUG send_request_body.complete -13:51:47,16 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,103 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2034'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_84e3a8e88407bf524d8886c7ac5a4838'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c01b38707da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,103 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,103 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,104 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,104 httpcore.http11 DEBUG response_closed.started -13:51:47,104 httpcore.http11 DEBUG response_closed.complete -13:51:47,104 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,105 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.202999999979511. input_tokens=173, output_tokens=79 -13:51:47,106 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["MINISTRY OF AGRICULTURE", "AUTHORIZATION"]\nDescription List: ["Authorization is required from the Ministry of Agriculture to transport an animal", "The Ministry of Agriculture requires authorization for transporting animals, which is a necessary document for compliance"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,107 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,107 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,107 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,107 httpcore.http11 DEBUG send_request_body.complete -13:51:47,108 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,120 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'847'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999272'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_36bac0fdcc75ab89121e00823dab4b19'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c022ac55c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,120 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,121 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,121 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,121 httpcore.http11 DEBUG response_closed.started -13:51:47,121 httpcore.http11 DEBUG response_closed.complete -13:51:47,121 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,121 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0150000000139698. input_tokens=161, output_tokens=45 -13:51:47,123 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "SERVICE DOG"]\nDescription List: ["EL AL allows service dogs to be transported without the weight limit that applies to other pets", "EL AL has specific policies regarding the transportation of service dogs, including requirements for documentation and behavior during the flight.", "Service dogs are allowed to be transported under different conditions than other pets on EL AL"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,124 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,124 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,124 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,124 httpcore.http11 DEBUG send_request_body.complete -13:51:47,124 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,192 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'673'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999302'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_5c50da58c6bd97c829d173179592c05f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0245f1eed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,192 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,192 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,193 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,193 httpcore.http11 DEBUG response_closed.started -13:51:47,193 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1303'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999277'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_b984566b134248ada1480055bee945ff'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0203edbc21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,193 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,193 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,193 httpcore.http11 DEBUG response_closed.complete -13:51:47,193 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,194 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8429999999934807. input_tokens=149, output_tokens=27 -13:51:47,194 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,194 httpcore.http11 DEBUG response_closed.started -13:51:47,196 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "DANGEROUS DOG"]\nDescription List: ["EL AL does not allow dangerous dogs to be transported", "EL AL has a policy that prohibits the transportation of dangerous dogs as defined by Israeli law"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,196 httpcore.http11 DEBUG response_closed.complete -13:51:47,197 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,197 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.5. input_tokens=169, output_tokens=39 -13:51:47,199 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "CHECK-IN COUNTER"]\nDescription List: ["Owners must arrive at the check-in counter with their pets for transportation arrangements", "Passengers must check in at El Al\'s check-in counters for their flights", "Pet owners must arrive at the check-in counter with their pets for transport on EL AL"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,199 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,199 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,200 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,200 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,200 httpcore.http11 DEBUG send_request_body.complete -13:51:47,200 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,200 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,200 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,200 httpcore.http11 DEBUG send_request_body.complete -13:51:47,200 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,210 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'393'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999305'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_bcf2f1bac674b87a731561559c853284'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0262c53c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,210 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,210 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,210 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,210 httpcore.http11 DEBUG response_closed.started -13:51:47,210 httpcore.http11 DEBUG response_closed.complete -13:51:47,210 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,211 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.5619999999762513. input_tokens=146, output_tokens=20 -13:51:47,212 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "CARGO DIVISION"]\nDescription List: ["EL AL\'s Cargo Division is responsible for handling the transportation of animals as cargo", "The Cargo Division of EL AL handles the transport of animals that are extra-large or unaccompanied", "The Cargo Division of EL AL is responsible for handling pet transportation services", "The Cargo Division of EL AL is responsible for handling registered cargo for pet transportation", "The Cargo Division of EL AL manages special requests for transporting oversized items", "The Cargo Division provides transport cost guidelines and policies for EL AL regarding cargo, including pets."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,213 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,213 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,214 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,214 httpcore.http11 DEBUG send_request_body.complete -13:51:47,214 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,225 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'805'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999260'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_dcb602a6b7f11751391900c3221bd3bc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0239b9cc227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,225 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,225 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,226 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,226 httpcore.http11 DEBUG response_closed.started -13:51:47,226 httpcore.http11 DEBUG response_closed.complete -13:51:47,226 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,226 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9849999999860302. input_tokens=171, output_tokens=44 -13:51:47,228 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "CHECKED BAGGAGE"]\nDescription List: ["EL AL allows certain animals to be transported as checked baggage", "EL AL provides guidelines for transporting checked baggage, including sporting equipment.", "El Al\'s baggage policy is similar to that of Sundor, affecting checked baggage allowances"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,229 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,229 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,229 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,229 httpcore.http11 DEBUG send_request_body.complete -13:51:47,229 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,269 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'958'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999269'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_d73032a55e82679c4e8e6e5f9edc530b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c022f836c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,270 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,270 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,270 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,270 httpcore.http11 DEBUG response_closed.started -13:51:47,270 httpcore.http11 DEBUG response_closed.complete -13:51:47,270 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,271 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1410000000032596. input_tokens=168, output_tokens=46 -13:51:47,273 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "PETS"]\nDescription List: ["EL AL has specific policies for transporting pets, including weight limits and conditions", "EL AL provides services for transporting pets as cargo and requires specific documentation for their travel"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,273 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,273 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,274 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,274 httpcore.http11 DEBUG send_request_body.complete -13:51:47,274 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,315 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'970'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999255'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_b461f349882cdbc1caccc89b3b6fce7e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02338d0c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,316 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,316 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,316 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,316 httpcore.http11 DEBUG response_closed.started -13:51:47,316 httpcore.http11 DEBUG response_closed.complete -13:51:47,316 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,317 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1399999999557622. input_tokens=177, output_tokens=61 -13:51:47,318 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "BAGGAGE"]\nDescription List: ["EL AL is the airline responsible for handling baggage and addressing issues such as delays and damages", "EL AL is the airline responsible for handling baggage and related claims"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,319 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,319 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,320 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,320 httpcore.http11 DEBUG send_request_body.complete -13:51:47,320 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,419 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1359'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999300'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_aa930fc7bbdab9fa20ee66917f1d641b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0216b86ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,419 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,419 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,420 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,420 httpcore.http11 DEBUG response_closed.started -13:51:47,420 httpcore.http11 DEBUG response_closed.complete -13:51:47,420 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,420 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.547000000020489. input_tokens=152, output_tokens=41 -13:51:47,422 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EL AL", "CARRY-ON BAGGAGE"]\nDescription List: ["EL AL has specific policies regarding carry-on baggage for its flights", "EL AL has specific policies regarding carry-on baggage for its flights."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,423 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,423 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,423 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,423 httpcore.http11 DEBUG send_request_body.complete -13:51:47,423 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,427 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'880'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999279'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_20e4b27fb69a0210e0842687d296f731'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0246955c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,427 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,427 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,427 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,427 httpcore.http11 DEBUG response_closed.started -13:51:47,428 httpcore.http11 DEBUG response_closed.complete -13:51:47,428 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,428 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0630000000237487. input_tokens=165, output_tokens=53 -13:51:47,430 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["SERVICE DOG", "VETERINARY CERTIFICATE"]\nDescription List: ["A veterinary certificate is required for a service dog to ensure it is vaccinated and fit for travel.", "A veterinary certificate is required for the transport of service dogs."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,430 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,431 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,431 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,431 httpcore.http11 DEBUG send_request_body.complete -13:51:47,431 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,438 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1407'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999256'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_bb3f55d812411f1c1d4f5e0b340e229a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0213aaf7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,439 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,439 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,439 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,439 httpcore.http11 DEBUG response_closed.started -13:51:47,439 httpcore.http11 DEBUG response_closed.complete -13:51:47,439 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,440 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.5929999999934807. input_tokens=177, output_tokens=55 -13:51:47,441 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CHECKED BAGGAGE", "BAGGAGE ALLOWANCE"]\nDescription List: ["Baggage allowance determines how much checked baggage a passenger can bring", "Baggage allowance includes provisions for checked baggage that passengers can take on flights."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,442 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,442 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,442 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,442 httpcore.http11 DEBUG send_request_body.complete -13:51:47,442 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,456 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'756'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_c255b55fc86dbdaa0c2b9fb5deed0d46'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0256ac8c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,456 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,456 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,456 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,456 httpcore.http11 DEBUG response_closed.started -13:51:47,456 httpcore.http11 DEBUG response_closed.complete -13:51:47,456 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,457 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9369999999762513. input_tokens=167, output_tokens=33 -13:51:47,458 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["ISRAEL", "MINISTRY OF HEALTH"]\nDescription List: ["The Ministry of Health in Israel regulates the entry of animals into the country", "The Ministry of Health regulates the entry of animals into Israel"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,459 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,459 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,459 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,460 httpcore.http11 DEBUG send_request_body.complete -13:51:47,460 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,525 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1536'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999272'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_d5b6bf665dcc4c92ac922b4079524ffc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c020fff2c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,525 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,526 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,526 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,526 httpcore.http11 DEBUG response_closed.started -13:51:47,526 httpcore.http11 DEBUG response_closed.complete -13:51:47,526 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,526 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.7040000000270084. input_tokens=165, output_tokens=48 -13:51:47,528 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["ISRAEL", "LIQUIDS IN CARRY-ON BAGS"]\nDescription List: ["Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports.", "The restrictions on liquids in carry-on bags apply to flights departing from Israel."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,529 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,529 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,529 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,529 httpcore.http11 DEBUG send_request_body.complete -13:51:47,529 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,611 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1486'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999204'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_25f59c0ee10105571b41c2c9bfa4023f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c021d840c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,611 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,611 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,612 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,612 httpcore.http11 DEBUG response_closed.started -13:51:47,612 httpcore.http11 DEBUG response_closed.complete -13:51:47,612 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,613 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.6560000000172295. input_tokens=208, output_tokens=100 -13:51:47,614 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["WEIGHT", "SPORTING EQUIPMENT"]\nDescription List: ["Weight is a key factor in determining the allowance and fees for transporting sporting equipment", "Weight is a key restriction that determines if sporting equipment can be transported in the specified travel classes."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,615 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,615 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,615 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,616 httpcore.http11 DEBUG send_request_body.complete -13:51:47,616 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,702 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1085'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999262'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_2d2564905b65c15f10748f0c5c8e03f1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c024a9bc7d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,702 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,702 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,702 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,702 httpcore.http11 DEBUG response_closed.started -13:51:47,702 httpcore.http11 DEBUG response_closed.complete -13:51:47,703 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,703 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2969999999622814. input_tokens=178, output_tokens=55 -13:51:47,705 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["WEIGHT", "CARRY-ON BAGGAGE"]\nDescription List: ["Weight limits are a key factor in determining the eligibility of carry-on baggage", "Weight limits are essential for determining the eligibility of carry-on baggage for boarding."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,705 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,706 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,706 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,706 httpcore.http11 DEBUG send_request_body.complete -13:51:47,706 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,738 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1386'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9997697'), (b'x-ratelimit-reset-requests', b'16ms'), (b'x-ratelimit-reset-tokens', b'13ms'), (b'x-request-id', b'req_1808160ca33abc7a31cc1e4f0fee040f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0234fb5c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,738 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,738 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,738 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,739 httpcore.http11 DEBUG response_closed.started -13:51:47,739 httpcore.http11 DEBUG response_closed.complete -13:51:47,739 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,739 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.5619999999762513. input_tokens=196, output_tokens=64 -13:51:47,741 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARGO", "SPORTING EQUIPMENT"]\nDescription List: ["Cargo services are available for transporting sporting equipment that exceeds standard baggage limits.", "Sporting equipment can be transported as cargo if it exceeds the standard baggage allowance"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,742 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:47 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'661'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_19cf881af60a5cba452f630b8a543578'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c027b800c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:47,742 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:47,742 httpcore.http11 DEBUG receive_response_body.started request= -13:51:47,742 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,742 httpcore.http11 DEBUG receive_response_body.complete -13:51:47,742 httpcore.http11 DEBUG response_closed.started -13:51:47,743 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,743 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,743 httpcore.http11 DEBUG response_closed.complete -13:51:47,743 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:47,743 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8429999999934807. input_tokens=157, output_tokens=35 -13:51:47,744 httpcore.http11 DEBUG send_request_body.complete -13:51:47,744 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:47,745 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BAGGAGE", "BAGGAGE SERVICE CENTER"]\nDescription List: ["The Baggage Service Center assists travelers with issues related to their baggage, including delays and damages", "The Baggage Service Center manages issues related to baggage, including delays and damages"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:47,746 httpcore.http11 DEBUG send_request_headers.started request= -13:51:47,746 httpcore.http11 DEBUG send_request_headers.complete -13:51:47,746 httpcore.http11 DEBUG send_request_body.started request= -13:51:47,747 httpcore.http11 DEBUG send_request_body.complete -13:51:47,747 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,102 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'915'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e0865fed3d209705545671f9e6c124eb'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0286c007da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,103 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,103 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,103 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,103 httpcore.http11 DEBUG response_closed.started -13:51:48,103 httpcore.http11 DEBUG response_closed.complete -13:51:48,103 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,104 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0939999999827705. input_tokens=156, output_tokens=51 -13:51:48,106 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BAGGAGE", "COURIER SERVICE"]\nDescription List: ["Retrieved delayed baggage is delivered to the passenger\'s address by the courier service", "The courier service delivers retrieved baggage to travelers after it has been delayed"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,106 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,106 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,106 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,107 httpcore.http11 DEBUG send_request_body.complete -13:51:48,107 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,115 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'779'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999274'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_a662d015cf416d65e0b7abaacbcbcc73'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0290b7d7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,115 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,115 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,115 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,115 httpcore.http11 DEBUG response_closed.started -13:51:48,115 httpcore.http11 DEBUG response_closed.complete -13:51:48,115 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,116 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0150000000139698. input_tokens=163, output_tokens=41 -13:51:48,117 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BAGGAGE SERVICE CENTER", "DELAYED BAGGAGE"]\nDescription List: ["Delayed baggage must be reported to the Baggage Service Center for assistance", "The Baggage Service Center handles reports and claims related to delayed baggage"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,118 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,118 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,118 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,118 httpcore.http11 DEBUG send_request_body.complete -13:51:48,119 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,125 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1470'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999255'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_726b46aeba0abe2cf75cd2cf03de6db7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0251a547d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,125 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,125 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,126 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,126 httpcore.http11 DEBUG response_closed.started -13:51:48,126 httpcore.http11 DEBUG response_closed.complete -13:51:48,126 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,126 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.6560000000172295. input_tokens=179, output_tokens=61 -13:51:48,128 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BAGGAGE SERVICE CENTER", "DAMAGED BAGGAGE"]\nDescription List: ["The Baggage Service Center assists travelers with claims for damaged baggage", "The Baggage Service Center handles cases of damaged baggage reported by passengers"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,128 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,129 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,129 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,129 httpcore.http11 DEBUG send_request_body.complete -13:51:48,129 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,168 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'646'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999286'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_77e2bbca392b768000d0ee0a7088d2a4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02a59aec21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,169 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,169 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,169 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,169 httpcore.http11 DEBUG response_closed.started -13:51:48,169 httpcore.http11 DEBUG response_closed.complete -13:51:48,169 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,170 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8600000000442378. input_tokens=159, output_tokens=25 -13:51:48,171 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BAGGAGE SERVICE CENTER", "FORGOTTEN ITEM"]\nDescription List: ["The Baggage Service Center assists passengers with items forgotten on board", "The Baggage Service Center helps recover forgotten items left on board"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,172 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,172 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,172 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,173 httpcore.http11 DEBUG send_request_body.complete -13:51:48,173 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,174 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'587'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999293'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_c4e9bb28c8b15585ed4bee748a4bbfa2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'cf-cache-status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02af852ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,174 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,174 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,174 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,175 httpcore.http11 DEBUG response_closed.started -13:51:48,175 httpcore.http11 DEBUG response_closed.complete -13:51:48,175 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,175 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.75. input_tokens=158, output_tokens=32 -13:51:48,177 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CLAIM STATUS", "LOST BAGGAGE REPORT NUMBER"]\nDescription List: ["The claim status can be checked using the lost baggage report number provided by the airline", "The lost baggage report number is required to check the status of a claim"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,177 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,178 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,178 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,178 httpcore.http11 DEBUG send_request_body.complete -13:51:48,178 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,191 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1335'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_88572e8f40dc23b4480927c6921fbf4b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0266f35c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,191 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,191 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,191 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,191 httpcore.http11 DEBUG response_closed.started -13:51:48,191 httpcore.http11 DEBUG response_closed.complete -13:51:48,191 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,192 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.5. input_tokens=163, output_tokens=70 -13:51:48,193 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BATTERIES", "LAPTOP"]\nDescription List: ["Laptops contain batteries that are classified as dangerous goods and must be handled accordingly", "Laptops contain batteries, which are classified as dangerous goods and require special handling"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,194 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,194 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,194 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,195 httpcore.http11 DEBUG send_request_body.complete -13:51:48,195 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,196 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'814'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999265'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_0cc1e47c1149ac556633faec7afb86b3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0299969c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,196 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,196 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,197 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,197 httpcore.http11 DEBUG response_closed.started -13:51:48,197 httpcore.http11 DEBUG response_closed.complete -13:51:48,197 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,198 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0. input_tokens=178, output_tokens=44 -13:51:48,199 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BATTERIES", "MEDICAL EQUIPMENT"]\nDescription List: ["Medical equipment may contain batteries, which are classified as dangerous goods", "Medical equipment may include batteries that are classified as dangerous goods"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,200 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,200 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,200 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,201 httpcore.http11 DEBUG send_request_body.complete -13:51:48,201 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,261 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'868'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999291'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_713ea5b61aa79b3f7a97534ed79f07f0'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0299e96ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,262 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,262 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,262 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,262 httpcore.http11 DEBUG response_closed.started -13:51:48,262 httpcore.http11 DEBUG response_closed.complete -13:51:48,262 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,263 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0790000000270084. input_tokens=159, output_tokens=52 -13:51:48,265 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CORROSIVES", "FLAMMABLE LIQUIDS"]\nDescription List: ["Both corrosives and flammable liquids are classified as prohibited items on aircraft", "Corrosives and flammable liquids are both classified as prohibited items on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,265 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,265 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,265 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,266 httpcore.http11 DEBUG send_request_body.complete -13:51:48,266 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,331 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1163'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999272'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_b9252080ff4c3b64b7467771b195ed94'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0286e617d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,331 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,331 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,331 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,331 httpcore.http11 DEBUG response_closed.started -13:51:48,332 httpcore.http11 DEBUG response_closed.complete -13:51:48,332 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,332 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.327999999979511. input_tokens=166, output_tokens=70 -13:51:48,334 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CORROSIVES", "ACIDS"]\nDescription List: ["Acids are a type of corrosive substance that is prohibited on aircraft", "Acids are classified as corrosives and are prohibited on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,335 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,335 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,335 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,335 httpcore.http11 DEBUG send_request_body.complete -13:51:48,335 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,336 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1048'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999244'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_764f676c9e48d4dc70b3154d0d627787'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0292d2fc231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,337 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,337 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,337 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,337 httpcore.http11 DEBUG response_closed.started -13:51:48,337 httpcore.http11 DEBUG response_closed.complete -13:51:48,337 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,338 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.202999999979511. input_tokens=185, output_tokens=53 -13:51:48,339 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CORROSIVES", "ALKALIS"]\nDescription List: ["Alkalis are a type of corrosive substance that is prohibited on aircraft", "Alkalis are classified as corrosives and are prohibited on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,340 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,340 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,340 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,341 httpcore.http11 DEBUG send_request_body.complete -13:51:48,341 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,400 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1323'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9999277'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_a1b096404bd876e8bf213efe79b9f2ff'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c027c813c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,400 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,400 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,400 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,400 httpcore.http11 DEBUG response_closed.started -13:51:48,401 httpcore.http11 DEBUG response_closed.complete -13:51:48,401 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,401 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.4849999999860302. input_tokens=175, output_tokens=83 -13:51:48,403 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CORROSIVES", "WET CELL BATTERIES"]\nDescription List: ["Wet cell batteries are a type of corrosive substance that is prohibited on aircraft", "Wet cell batteries are classified as corrosives and are prohibited on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,403 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,404 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,404 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,404 httpcore.http11 DEBUG send_request_body.complete -13:51:48,404 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,409 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1228'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_82eb2362e083b284c246d8e6af9f7366'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0287c4cc231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,409 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,409 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,410 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,410 httpcore.http11 DEBUG response_closed.started -13:51:48,410 httpcore.http11 DEBUG response_closed.complete -13:51:48,410 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,410 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.3900000000139698. input_tokens=171, output_tokens=77 -13:51:48,412 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["EXPLOSIVES", "FLAMMABLE LIQUIDS"]\nDescription List: ["Both explosives and flammable liquids are classified as prohibited items on aircraft", "Explosives and flammable liquids are both classified as prohibited items on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,413 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,414 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,414 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,414 httpcore.http11 DEBUG send_request_body.complete -13:51:48,414 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,429 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'951'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_baf80ad9ca1c00b77ecfba02a76229c4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02a19abc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,429 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,429 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,430 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,430 httpcore.http11 DEBUG response_closed.started -13:51:48,430 httpcore.http11 DEBUG response_closed.complete -13:51:48,430 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,430 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1560000000172295. input_tokens=158, output_tokens=48 -13:51:48,432 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["FLAMMABLE LIQUIDS", "RADIOACTIVE MATERIALS"]\nDescription List: ["Both radioactive materials and flammable liquids are classified as prohibited items on aircraft", "Radioactive materials and flammable liquids are both classified as prohibited items on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,433 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,433 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'833'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_0e5771efbc7c30132f06127f15d6125c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02b0b2dc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,433 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,433 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,433 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,433 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,434 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,434 httpcore.http11 DEBUG response_closed.started -13:51:48,434 httpcore.http11 DEBUG send_request_body.complete -13:51:48,434 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,434 httpcore.http11 DEBUG response_closed.complete -13:51:48,434 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,434 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0. input_tokens=161, output_tokens=44 -13:51:48,436 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["FLAMMABLE LIQUIDS", "OXIDIZING MATERIALS"]\nDescription List: ["Both oxidizing materials and flammable liquids are classified as prohibited items on aircraft", "Oxidizing materials and flammable liquids are both classified as prohibited items on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,437 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,437 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,437 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,437 httpcore.http11 DEBUG send_request_body.complete -13:51:48,438 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,511 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'816'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999274'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_dc98b4ba259d699f57c5c804f4f1d5e4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02bab87c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,511 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,511 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,511 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,511 httpcore.http11 DEBUG response_closed.started -13:51:48,511 httpcore.http11 DEBUG response_closed.complete -13:51:48,512 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,512 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9839999999967404. input_tokens=171, output_tokens=43 -13:51:48,514 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["FLAMMABLE LIQUIDS", "HIGH-STRENGTH MAGNETIC MATERIALS"]\nDescription List: ["Both high-strength magnetic materials and flammable liquids are classified as prohibited items on aircraft", "High-strength magnetic materials and flammable liquids are both prohibited on aircraft"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,514 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,515 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,515 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,515 httpcore.http11 DEBUG send_request_body.complete -13:51:48,515 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,525 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1060'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_01c764f95ab8fa172e9cc13b882b0ce4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c029cba5c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,526 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,526 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,526 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,526 httpcore.http11 DEBUG response_closed.started -13:51:48,526 httpcore.http11 DEBUG response_closed.complete -13:51:48,526 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,527 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.297000000020489. input_tokens=174, output_tokens=67 -13:51:48,528 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["SPORTING EQUIPMENT", "ECONOMY CLASS"]\nDescription List: ["Economy Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.", "Economy Class allows for the transport of sporting equipment under specific size and weight conditions"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,529 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,529 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,529 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,530 httpcore.http11 DEBUG send_request_body.complete -13:51:48,530 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,637 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'996'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999291'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e84a1f7305367184732ee5a4c79741f9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02b3b5fc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,637 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,638 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,638 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,638 httpcore.http11 DEBUG response_closed.started -13:51:48,638 httpcore.http11 DEBUG response_closed.complete -13:51:48,638 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,639 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1880000000237487. input_tokens=156, output_tokens=48 -13:51:48,640 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["SPORTING EQUIPMENT", "PREMIUM CLASS"]\nDescription List: ["Premium Class allows for the transport of sporting equipment under specific conditions regarding dimensions and weight.", "Premium Class allows for the transport of sporting equipment under specific size and weight conditions"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,641 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'842'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999275'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_08bfb787ec965d90c55d9ce1703fe1de'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02c3debc224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,641 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,642 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,642 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,642 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,642 httpcore.http11 DEBUG response_closed.started -13:51:48,642 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,642 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,642 httpcore.http11 DEBUG response_closed.complete -13:51:48,642 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,643 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0320000000065193. input_tokens=163, output_tokens=42 -13:51:48,643 httpcore.http11 DEBUG send_request_body.complete -13:51:48,643 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,645 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["SPORTING EQUIPMENT", "BUSINESS CLASS"]\nDescription List: ["Business Class allows for the transport of sporting equipment under specific size and weight conditions", "Business Class allows for the transport of sporting equipment with different weight limits compared to Economy and Premium Class."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,645 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,646 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,646 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,648 httpcore.http11 DEBUG send_request_body.complete -13:51:48,648 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,678 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'807'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_65634eecf006c09806fcc05bbe782c04'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02ccc9d7d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,679 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,679 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,679 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,679 httpcore.http11 DEBUG response_closed.started -13:51:48,679 httpcore.http11 DEBUG response_closed.complete -13:51:48,679 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,680 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9690000000409782. input_tokens=162, output_tokens=45 -13:51:48,681 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["SPORTING EQUIPMENT", "DIMENSIONS"]\nDescription List: ["Dimensions are a critical factor in determining whether sporting equipment can be transported as checked baggage.", "Dimensions are critical for determining whether sporting equipment can be transported as checked baggage"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,682 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:48 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1721'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999227'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_0ed36ac675fdc717c5b0ca82b57ba1d0'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0270be7c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,682 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,682 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,683 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,683 httpcore.http11 DEBUG response_closed.started -13:51:48,683 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,683 httpcore.http11 DEBUG response_closed.complete -13:51:48,683 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,684 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.9059999999590218. input_tokens=204, output_tokens=80 -13:51:48,684 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,684 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,686 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["SPORTING EQUIPMENT", "EL AL CARGO DIVISION"]\nDescription List: ["The EL AL Cargo Division provides an alternative for transporting sporting equipment that exceeds standard baggage limits.", "The EL AL Cargo Division provides an option for transporting sporting equipment that exceeds standard baggage allowances"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,686 httpcore.http11 DEBUG send_request_body.complete -13:51:48,686 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,686 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,687 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,687 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,687 httpcore.http11 DEBUG send_request_body.complete -13:51:48,687 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,762 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'821'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999276'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_fa66c566b209ee732a83fe53c7ecebeb'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02d0f17c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,762 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,762 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,762 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,763 httpcore.http11 DEBUG response_closed.started -13:51:48,763 httpcore.http11 DEBUG response_closed.complete -13:51:48,763 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,763 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0320000000065193. input_tokens=167, output_tokens=52 -13:51:48,765 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["SPORTING EQUIPMENT", "ADDITIONAL SPORTS EQUIPMENT"]\nDescription List: ["Additional sports equipment refers to any extra gear that requires special handling beyond the standard allowance", "Additional sports equipment refers to items that can be transported beyond the standard baggage allowance."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,766 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,766 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,766 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,766 httpcore.http11 DEBUG send_request_body.complete -13:51:48,766 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,937 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1323'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_55f8297193adeec32909d58687ea8fcc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02b1f897da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,937 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,937 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,937 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,937 httpcore.http11 DEBUG response_closed.started -13:51:48,937 httpcore.http11 DEBUG response_closed.complete -13:51:48,938 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,938 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.5. input_tokens=162, output_tokens=84 -13:51:48,940 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["ECONOMY CLASS", "LITE FARES"]\nDescription List: ["Lite fares are a restriction within Economy Class that affects the transport of sporting equipment.", "Lite fares are a subset of Economy Class fares that offer limited services"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,940 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,941 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,941 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,941 httpcore.http11 DEBUG send_request_body.complete -13:51:48,941 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:48,977 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'605'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_fc9ca23e9830ce9047cfd26dd54b224d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02fdc8dc227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:48,977 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:48,977 httpcore.http11 DEBUG receive_response_body.started request= -13:51:48,977 httpcore.http11 DEBUG receive_response_body.complete -13:51:48,978 httpcore.http11 DEBUG response_closed.started -13:51:48,978 httpcore.http11 DEBUG response_closed.complete -13:51:48,978 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:48,978 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7820000000065193. input_tokens=160, output_tokens=33 -13:51:48,980 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["ECONOMY CLASS", "CARRY-ON BAGGAGE"]\nDescription List: ["Economy Class passengers are entitled to specific carry-on baggage allowances", "Economy Class passengers are entitled to specific carry-on baggage allowances."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:48,981 httpcore.http11 DEBUG send_request_headers.started request= -13:51:48,981 httpcore.http11 DEBUG send_request_headers.complete -13:51:48,981 httpcore.http11 DEBUG send_request_body.started request= -13:51:48,981 httpcore.http11 DEBUG send_request_body.complete -13:51:48,981 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,6 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'613'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999288'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_d83568c187dba05a157b4902d76f6e36'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02fd884c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,7 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,7 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,7 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,7 httpcore.http11 DEBUG response_closed.started -13:51:49,7 httpcore.http11 DEBUG response_closed.complete -13:51:49,7 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,8 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8130000000237487. input_tokens=154, output_tokens=38 -13:51:49,9 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["PREMIUM CLASS", "CARRY-ON BAGGAGE"]\nDescription List: ["Premium Class passengers are entitled to specific carry-on baggage allowances", "Premium Class passengers are entitled to specific carry-on baggage allowances."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,10 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,10 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,10 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,11 httpcore.http11 DEBUG send_request_body.complete -13:51:49,11 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,29 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'664'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_188e30b89b1746298c5035107053d1cd'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02fbe8ced42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,29 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,29 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,29 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,29 httpcore.http11 DEBUG response_closed.started -13:51:49,29 httpcore.http11 DEBUG response_closed.complete -13:51:49,29 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,30 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8589999999967404. input_tokens=164, output_tokens=34 -13:51:49,32 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["BUSINESS CLASS", "CARRY-ON BAGGAGE"]\nDescription List: ["Business Class passengers are entitled to specific carry-on baggage allowances", "Business Class passengers are entitled to specific carry-on baggage allowances."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,33 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,33 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,33 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,33 httpcore.http11 DEBUG send_request_body.complete -13:51:49,33 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,63 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'774'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_0e7ca135693982134589cab5910bdd84'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02f5c407da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,63 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,63 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,63 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,63 httpcore.http11 DEBUG response_closed.started -13:51:49,64 httpcore.http11 DEBUG response_closed.complete -13:51:49,64 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,64 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9529999999795109. input_tokens=162, output_tokens=38 -13:51:49,66 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["DIMENSIONS", "CARRY-ON BAGGAGE"]\nDescription List: ["Dimensions are a critical factor in determining the eligibility of carry-on baggage for boarding.", "Dimensions are a key factor in determining the eligibility of carry-on baggage"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,66 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,67 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,67 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,67 httpcore.http11 DEBUG send_request_body.complete -13:51:49,67 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,70 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'732'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999288'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_1a56959a05ad8941a857526cccecf51a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02fa8fec21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,70 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,70 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,70 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,70 httpcore.http11 DEBUG response_closed.started -13:51:49,70 httpcore.http11 DEBUG response_closed.complete -13:51:49,70 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,71 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8899999999557622. input_tokens=159, output_tokens=40 -13:51:49,72 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["OVERWEIGHT BAGGAGE", "OVERSIZED BAGGAGE"]\nDescription List: ["Both oversized and overweight baggage require special handling and may incur additional fees", "Both overweight and oversized baggage require special handling and may incur additional fees"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,73 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,73 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,73 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,73 httpcore.http11 DEBUG send_request_body.complete -13:51:49,73 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,279 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'765'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9998713'), (b'x-ratelimit-reset-requests', b'11ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_fec2981d1721da4de2ddd97d741deb11'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c030b868c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,280 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,280 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,280 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,280 httpcore.http11 DEBUG response_closed.started -13:51:49,280 httpcore.http11 DEBUG response_closed.complete -13:51:49,280 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,281 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9530000000377186. input_tokens=158, output_tokens=52 -13:51:49,282 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "PERSONAL BAGS"]\nDescription List: ["Personal bags are a type of carry-on baggage that can be stored under the seat", "Personal bags are a type of carry-on baggage that can be stored under the seat in front of the passenger."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,283 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,283 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,283 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,284 httpcore.http11 DEBUG send_request_body.complete -13:51:49,284 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,315 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1033'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_45bc3ee8914e878b0523ec7bd2ae0450'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02f4d5b7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,315 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,315 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,315 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,315 httpcore.http11 DEBUG response_closed.started -13:51:49,315 httpcore.http11 DEBUG response_closed.complete -13:51:49,315 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,315 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2179999999934807. input_tokens=160, output_tokens=48 -13:51:49,317 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "SUN DOR"]\nDescription List: ["Sun Dor has specific policies regarding carry-on baggage for its flights", "Sun Dor has specific policies regarding carry-on baggage for its flights."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,318 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,318 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,318 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,318 httpcore.http11 DEBUG send_request_body.complete -13:51:49,318 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,344 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'905'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_f899834bef8ce633a6c05f109eba119b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0304f5ced42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,344 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,344 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,344 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,344 httpcore.http11 DEBUG response_closed.started -13:51:49,344 httpcore.http11 DEBUG response_closed.complete -13:51:49,344 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,345 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.077999999979511. input_tokens=163, output_tokens=46 -13:51:49,347 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "MATMID FREQUENT FLYER CLUB"]\nDescription List: ["Matmid Frequent Flyer Club status may influence the carry-on baggage eligibility for passengers.", "Membership in the Matmid Frequent Flyer Club affects carry-on baggage eligibility"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,347 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,348 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'742'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9999277'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_6388a43fc64e4230bda66a57f65bb10e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0315beac222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,348 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,348 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,348 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,348 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,348 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,348 httpcore.http11 DEBUG response_closed.started -13:51:49,349 httpcore.http11 DEBUG send_request_body.complete -13:51:49,349 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,349 httpcore.http11 DEBUG response_closed.complete -13:51:49,349 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,349 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9070000000065193. input_tokens=169, output_tokens=44 -13:51:49,351 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "CHECKED LUGGAGE"]\nDescription List: ["Checked luggage is an alternative to carry-on baggage for passengers who need to transport larger items.", "Checked luggage is different from carry-on baggage, which is allowed in the passenger cabin"]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,351 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,352 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,352 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,352 httpcore.http11 DEBUG send_request_body.complete -13:51:49,352 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,354 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1947'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999185'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_d5be810cf1e94e16762e44820492c190'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c029a926c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,354 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,354 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,354 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,354 httpcore.http11 DEBUG response_closed.started -13:51:49,354 httpcore.http11 DEBUG response_closed.complete -13:51:49,355 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,355 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.1410000000032596. input_tokens=231, output_tokens=116 -13:51:49,357 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "TROLLEY"]\nDescription List: ["A trolley is a specific type of carry-on baggage that can be stored in overhead compartments", "Trolleys are a specific type of carry-on baggage that passengers can bring into the cabin."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,357 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'845'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999296'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_821b4bb71863658df81b8f8cc30fa922'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c030b8817d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,358 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,358 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,358 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,358 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,358 httpcore.http11 DEBUG response_closed.started -13:51:49,358 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,358 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,358 httpcore.http11 DEBUG response_closed.complete -13:51:49,359 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,359 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0310000000172295. input_tokens=155, output_tokens=58 -13:51:49,359 httpcore.http11 DEBUG send_request_body.complete -13:51:49,359 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,361 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "FLIGHT TICKET TERMS"]\nDescription List: ["Flight ticket terms provide details on the carry-on baggage policies applicable to passengers", "Flight ticket terms provide details on the rules regarding carry-on baggage allowances."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,361 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,362 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,362 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,362 httpcore.http11 DEBUG send_request_body.complete -13:51:49,362 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,380 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'803'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999286'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_5c4769f479f7a255e9e72c23f4cffd74'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0312ceac224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,380 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,380 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,380 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,380 httpcore.http11 DEBUG response_closed.started -13:51:49,380 httpcore.http11 DEBUG response_closed.complete -13:51:49,381 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,381 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9839999999967404. input_tokens=163, output_tokens=49 -13:51:49,383 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "BOOKING MANAGEMENT"]\nDescription List: ["Booking management allows passengers to check their carry-on baggage allowances and policies", "Booking management allows passengers to check their carry-on baggage policies and manage their bookings."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,383 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,383 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,383 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,384 httpcore.http11 DEBUG send_request_body.complete -13:51:49,384 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,427 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'727'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999270'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e171d1174bdc3c820364255f732bfd66'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c031ef5dc227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,427 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,427 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,427 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,427 httpcore.http11 DEBUG response_closed.started -13:51:49,427 httpcore.http11 DEBUG response_closed.complete -13:51:49,427 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,427 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9060000000172295. input_tokens=166, output_tokens=41 -13:51:49,429 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are a helpful assistant responsible for generating a comprehensive summary of the data provided below.\nGiven one or two entities, and a list of descriptions, all related to the same entity or group of entities.\nPlease concatenate all of these into a single, comprehensive description. Make sure to include information collected from all the descriptions.\nIf the provided descriptions are contradictory, please resolve the contradictions and provide a single, coherent summary.\nMake sure it is written in third person, and include the entity names so we have the full context.\n\n#######\n-Data-\nEntities: ["CARRY-ON BAGGAGE", "NORTH AMERICA"]\nDescription List: ["Specific carry-on baggage policies apply to flights from/to North America", "Specific carry-on baggage policies apply to flights from/to North America."]\n#######\nOutput:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 500, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:49,430 httpcore.http11 DEBUG send_request_headers.started request= -13:51:49,430 httpcore.http11 DEBUG send_request_headers.complete -13:51:49,430 httpcore.http11 DEBUG send_request_body.started request= -13:51:49,430 httpcore.http11 DEBUG send_request_body.complete -13:51:49,430 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:49,461 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'314'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999288'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_c33766c93c1410f42d477869843ebbfb'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c034bbf9c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,461 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,461 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,462 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,462 httpcore.http11 DEBUG response_closed.started -13:51:49,462 httpcore.http11 DEBUG response_closed.complete -13:51:49,462 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,462 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.48399999999674037. input_tokens=161, output_tokens=13 -13:51:49,524 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'351'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999288'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_19f3cc40cf9bfb6b8be5b88c1bc00ba4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c034edf5c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,524 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,525 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,525 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,525 httpcore.http11 DEBUG response_closed.started -13:51:49,525 httpcore.http11 DEBUG response_closed.complete -13:51:49,525 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,526 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.5160000000032596. input_tokens=158, output_tokens=12 -13:51:49,578 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'978'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9999276'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_51a0482141c0a1b69dbbdb4df3ee33fd'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0314c0cc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,578 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,578 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,578 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,578 httpcore.http11 DEBUG response_closed.started -13:51:49,578 httpcore.http11 DEBUG response_closed.complete -13:51:49,578 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,579 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1559999999590218. input_tokens=165, output_tokens=39 -13:51:49,610 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'411'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999286'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_7664d0a8f91101d5e3d0d7d421021b3f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0350e46ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,610 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,610 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,610 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,610 httpcore.http11 DEBUG response_closed.started -13:51:49,610 httpcore.http11 DEBUG response_closed.complete -13:51:49,611 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,611 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.5779999999795109. input_tokens=157, output_tokens=12 -13:51:49,663 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'857'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999270'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e0861c3949c6a27dca51aea3d39a07d9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0329e08c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,663 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,663 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,663 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,663 httpcore.http11 DEBUG response_closed.started -13:51:49,663 httpcore.http11 DEBUG response_closed.complete -13:51:49,664 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,664 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0150000000139698. input_tokens=163, output_tokens=40 -13:51:49,801 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'957'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999272'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_a4a05b3cfa87ad9ac6b489aa7885df5e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c032ec837d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,801 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,801 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,801 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,802 httpcore.http11 DEBUG response_closed.started -13:51:49,802 httpcore.http11 DEBUG response_closed.complete -13:51:49,802 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,802 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.125. input_tokens=160, output_tokens=45 -13:51:49,856 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1258'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_71c7c18fbf370980f09cc053de9793ab'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0313902c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,856 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,856 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,856 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,856 httpcore.http11 DEBUG response_closed.started -13:51:49,856 httpcore.http11 DEBUG response_closed.complete -13:51:49,857 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,857 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.452999999979511. input_tokens=162, output_tokens=49 -13:51:49,884 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1036'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9999263'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_69475e8aaa540000fb0748406cb254ba'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c032eb58c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,884 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,884 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,884 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,884 httpcore.http11 DEBUG response_closed.started -13:51:49,884 httpcore.http11 DEBUG response_closed.complete -13:51:49,885 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,885 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.1880000000237487. input_tokens=169, output_tokens=51 -13:51:49,895 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1066'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_25fd758f58b33971da2f606333d8c63c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c032af88c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,895 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,895 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,895 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,895 httpcore.http11 DEBUG response_closed.started -13:51:49,895 httpcore.http11 DEBUG response_closed.complete -13:51:49,896 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,896 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.25. input_tokens=165, output_tokens=50 -13:51:49,957 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'790'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999279'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_36cbcfe9e36dcf941b360a953909b956'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02cfdf1c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:49,957 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:49,957 httpcore.http11 DEBUG receive_response_body.started request= -13:51:49,957 httpcore.http11 DEBUG receive_response_body.complete -13:51:49,957 httpcore.http11 DEBUG response_closed.started -13:51:49,957 httpcore.http11 DEBUG response_closed.complete -13:51:49,957 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:49,958 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.2189999999827705. input_tokens=159, output_tokens=48 -13:51:50,21 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'780'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_141a981cd8ce7f3d272b1b1b46a7a986'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0354c2f7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,22 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,22 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,22 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,22 httpcore.http11 DEBUG response_closed.started -13:51:50,22 httpcore.http11 DEBUG response_closed.complete -13:51:50,23 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,23 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.9540000000270084. input_tokens=162, output_tokens=45 -13:51:50,108 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'622'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999291'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_56dd8d25b5ec5438897c4efb07d062a2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c036df1d7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,108 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,108 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,108 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,108 httpcore.http11 DEBUG response_closed.started -13:51:50,108 httpcore.http11 DEBUG response_closed.complete -13:51:50,109 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,109 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7970000000204891. input_tokens=160, output_tokens=13 -13:51:50,119 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'581'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9999282'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_e828cfa39fd5334a120cd7facae2063a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0371d31c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,119 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,119 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,119 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,119 httpcore.http11 DEBUG response_closed.started -13:51:50,119 httpcore.http11 DEBUG response_closed.complete -13:51:50,120 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,120 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.7650000000139698. input_tokens=171, output_tokens=26 -13:51:50,257 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'731'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999279'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_16e113f8aee3dcbc6d1e308fe70651de'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c03719187d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,257 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,257 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,257 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,258 httpcore.http11 DEBUG response_closed.started -13:51:50,258 httpcore.http11 DEBUG response_closed.complete -13:51:50,258 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,259 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 0.8910000000032596. input_tokens=164, output_tokens=47 -13:51:50,276 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1162'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_5e40765f61b53606eda7704854fb74b1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0347c6e7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,276 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,276 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,276 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,276 httpcore.http11 DEBUG response_closed.started -13:51:50,276 httpcore.http11 DEBUG response_closed.complete -13:51:50,277 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,277 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.3290000000270084. input_tokens=162, output_tokens=68 -13:51:50,278 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1037'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999279'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_bd8455f81197394da3c1bfeb09616541'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0354891c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,278 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,278 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,278 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,279 httpcore.http11 DEBUG response_closed.started -13:51:50,279 httpcore.http11 DEBUG response_closed.complete -13:51:50,279 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,279 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2190000000409782. input_tokens=164, output_tokens=43 -13:51:50,307 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'873'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999284'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_15fd8492941d227f3063fe08cfa3d9c6'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c02f68147d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,307 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,307 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,307 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,307 httpcore.http11 DEBUG response_closed.started -13:51:50,308 httpcore.http11 DEBUG response_closed.complete -13:51:50,308 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,308 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.172000000020489. input_tokens=162, output_tokens=41 -13:51:50,318 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1382'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999268'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_db0baad826fcb6917e36959355ea1f5a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c03368abc224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,318 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,318 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,318 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,318 httpcore.http11 DEBUG response_closed.started -13:51:50,318 httpcore.http11 DEBUG response_closed.complete -13:51:50,319 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,319 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.5459999999729916. input_tokens=166, output_tokens=72 -13:51:50,372 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'804'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999276'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_20806fe8fdc60fc12ef36f7f901d6b0f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0374e9ec224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,372 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,372 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,373 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,373 httpcore.http11 DEBUG response_closed.started -13:51:50,373 httpcore.http11 DEBUG response_closed.complete -13:51:50,373 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,374 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0. input_tokens=163, output_tokens=47 -13:51:50,405 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'860'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999279'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_2d2a5669ee445f44f11232a88e07779b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c037093bed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,405 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,405 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,405 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,405 httpcore.http11 DEBUG response_closed.started -13:51:50,405 httpcore.http11 DEBUG response_closed.complete -13:51:50,405 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,405 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.062000000034459. input_tokens=174, output_tokens=60 -13:51:50,431 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'818'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999289'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_1d59b92b1ad155109a9741ef42a558c1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0378f39c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,431 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,431 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,432 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,432 httpcore.http11 DEBUG response_closed.started -13:51:50,432 httpcore.http11 DEBUG response_closed.complete -13:51:50,432 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,433 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.0. input_tokens=160, output_tokens=49 -13:51:50,578 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:50 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1126'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_6652f3ddd9a14ea67a3680b97b1c1eb4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0369908c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:50,578 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:50,578 httpcore.http11 DEBUG receive_response_body.started request= -13:51:50,578 httpcore.http11 DEBUG receive_response_body.complete -13:51:50,578 httpcore.http11 DEBUG response_closed.started -13:51:50,579 httpcore.http11 DEBUG response_closed.complete -13:51:50,579 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:50,579 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 1.2969999999622814. input_tokens=174, output_tokens=67 -13:51:51,137 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:51 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2448'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999274'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_fbb3bea24396c700f2fe7c598f4809b9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c031dad8c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:51,137 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:51,137 httpcore.http11 DEBUG receive_response_body.started request= -13:51:51,138 httpcore.http11 DEBUG receive_response_body.complete -13:51:51,138 httpcore.http11 DEBUG response_closed.started -13:51:51,138 httpcore.http11 DEBUG response_closed.complete -13:51:51,138 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:51,139 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 2.6410000000032596. input_tokens=171, output_tokens=39 -13:51:53,477 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:53 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10398'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9999267'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_9e59b995e51761d0a2b3bb21c0be1e76'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c00ebe02c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:53,477 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:53,478 httpcore.http11 DEBUG receive_response_body.started request= -13:51:53,478 httpcore.http11 DEBUG receive_response_body.complete -13:51:53,478 httpcore.http11 DEBUG response_closed.started -13:51:53,478 httpcore.http11 DEBUG response_closed.complete -13:51:53,478 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:53,479 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 10.577999999979511. input_tokens=169, output_tokens=59 -13:51:53,674 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:51:53 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1821'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9999154'), (b'x-ratelimit-reset-requests', b'8ms'), (b'x-ratelimit-reset-tokens', b'5ms'), (b'x-request-id', b'req_06f8e7269b04789bf41f1fc2aa8e4e4d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0370be4c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:51:53,674 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:51:53,674 httpcore.http11 DEBUG receive_response_body.started request= -13:51:53,675 httpcore.http11 DEBUG receive_response_body.complete -13:51:53,675 httpcore.http11 DEBUG response_closed.started -13:51:53,675 httpcore.http11 DEBUG response_closed.complete -13:51:53,675 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:51:53,676 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "summarize" with 0 retries took 4.328000000037719. input_tokens=171, output_tokens=110 -13:51:53,812 root INFO Starting preprocessing of transition probabilities on graph with 320 nodes and 409 edges -13:51:53,812 root INFO Starting at time 1731930713.8128536 -13:51:53,812 root INFO Beginning preprocessing of transition probabilities for 320 vertices -13:51:53,812 root INFO Completed 1 / 320 vertices -13:51:53,813 root INFO Completed 33 / 320 vertices -13:51:53,813 root INFO Completed 65 / 320 vertices -13:51:53,813 root INFO Completed 97 / 320 vertices -13:51:53,813 root INFO Completed 129 / 320 vertices -13:51:53,813 root INFO Completed 161 / 320 vertices -13:51:53,814 root INFO Completed 193 / 320 vertices -13:51:53,814 root INFO Completed 225 / 320 vertices -13:51:53,814 root INFO Completed 257 / 320 vertices -13:51:53,814 root INFO Completed 289 / 320 vertices -13:51:53,814 root INFO Completed preprocessing of transition probabilities for vertices -13:51:53,814 root INFO Beginning preprocessing of transition probabilities for 409 edges -13:51:53,814 root INFO Completed 1 / 409 edges -13:51:53,817 root INFO Completed 41 / 409 edges -13:51:53,819 root INFO Completed 81 / 409 edges -13:51:53,820 root INFO Completed 121 / 409 edges -13:51:53,821 root INFO Completed 161 / 409 edges -13:51:53,822 root INFO Completed 201 / 409 edges -13:51:53,823 root INFO Completed 241 / 409 edges -13:51:53,824 root INFO Completed 281 / 409 edges -13:51:53,825 root INFO Completed 321 / 409 edges -13:51:53,825 root INFO Completed 361 / 409 edges -13:51:53,826 root INFO Completed 401 / 409 edges -13:51:53,826 root INFO Completed preprocessing of transition probabilities for edges -13:51:53,826 root INFO Simulating walks on graph at time 1731930713.8268528 -13:51:53,826 root INFO Walk iteration: 1/100 -13:51:53,829 root INFO Walk iteration: 2/100 -13:51:53,833 root INFO Walk iteration: 3/100 -13:51:53,836 root INFO Walk iteration: 4/100 -13:51:53,839 root INFO Walk iteration: 5/100 -13:51:53,842 root INFO Walk iteration: 6/100 -13:51:53,845 root INFO Walk iteration: 7/100 -13:51:53,848 root INFO Walk iteration: 8/100 -13:51:53,851 root INFO Walk iteration: 9/100 -13:51:53,854 root INFO Walk iteration: 10/100 -13:51:53,857 root INFO Walk iteration: 11/100 -13:51:53,860 root INFO Walk iteration: 12/100 -13:51:53,863 root INFO Walk iteration: 13/100 -13:51:53,866 root INFO Walk iteration: 14/100 -13:51:53,869 root INFO Walk iteration: 15/100 -13:51:53,872 root INFO Walk iteration: 16/100 -13:51:53,875 root INFO Walk iteration: 17/100 -13:51:53,878 root INFO Walk iteration: 18/100 -13:51:53,881 root INFO Walk iteration: 19/100 -13:51:53,884 root INFO Walk iteration: 20/100 -13:51:53,887 root INFO Walk iteration: 21/100 -13:51:53,890 root INFO Walk iteration: 22/100 -13:51:53,893 root INFO Walk iteration: 23/100 -13:51:53,896 root INFO Walk iteration: 24/100 -13:51:53,899 root INFO Walk iteration: 25/100 -13:51:53,902 root INFO Walk iteration: 26/100 -13:51:53,905 root INFO Walk iteration: 27/100 -13:51:53,908 root INFO Walk iteration: 28/100 -13:51:53,912 root INFO Walk iteration: 29/100 -13:51:53,915 root INFO Walk iteration: 30/100 -13:51:53,918 root INFO Walk iteration: 31/100 -13:51:53,921 root INFO Walk iteration: 32/100 -13:51:53,924 root INFO Walk iteration: 33/100 -13:51:53,926 root INFO Walk iteration: 34/100 -13:51:53,929 root INFO Walk iteration: 35/100 -13:51:53,932 root INFO Walk iteration: 36/100 -13:51:53,935 root INFO Walk iteration: 37/100 -13:51:53,938 root INFO Walk iteration: 38/100 -13:51:53,941 root INFO Walk iteration: 39/100 -13:51:53,944 root INFO Walk iteration: 40/100 -13:51:53,947 root INFO Walk iteration: 41/100 -13:51:53,950 root INFO Walk iteration: 42/100 -13:51:53,953 root INFO Walk iteration: 43/100 -13:51:53,957 root INFO Walk iteration: 44/100 -13:51:53,960 root INFO Walk iteration: 45/100 -13:51:54,95 root INFO Walk iteration: 46/100 -13:51:54,98 root INFO Walk iteration: 47/100 -13:51:54,101 root INFO Walk iteration: 48/100 -13:51:54,104 root INFO Walk iteration: 49/100 -13:51:54,107 root INFO Walk iteration: 50/100 -13:51:54,110 root INFO Walk iteration: 51/100 -13:51:54,113 root INFO Walk iteration: 52/100 -13:51:54,116 root INFO Walk iteration: 53/100 -13:51:54,119 root INFO Walk iteration: 54/100 -13:51:54,122 root INFO Walk iteration: 55/100 -13:51:54,125 root INFO Walk iteration: 56/100 -13:51:54,129 root INFO Walk iteration: 57/100 -13:51:54,134 root INFO Walk iteration: 58/100 -13:51:54,137 root INFO Walk iteration: 59/100 -13:51:54,140 root INFO Walk iteration: 60/100 -13:51:54,143 root INFO Walk iteration: 61/100 -13:51:54,146 root INFO Walk iteration: 62/100 -13:51:54,149 root INFO Walk iteration: 63/100 -13:51:54,152 root INFO Walk iteration: 64/100 -13:51:54,155 root INFO Walk iteration: 65/100 -13:51:54,158 root INFO Walk iteration: 66/100 -13:51:54,161 root INFO Walk iteration: 67/100 -13:51:54,164 root INFO Walk iteration: 68/100 -13:51:54,167 root INFO Walk iteration: 69/100 -13:51:54,170 root INFO Walk iteration: 70/100 -13:51:54,173 root INFO Walk iteration: 71/100 -13:51:54,177 root INFO Walk iteration: 72/100 -13:51:54,180 root INFO Walk iteration: 73/100 -13:51:54,183 root INFO Walk iteration: 74/100 -13:51:54,186 root INFO Walk iteration: 75/100 -13:51:54,189 root INFO Walk iteration: 76/100 -13:51:54,192 root INFO Walk iteration: 77/100 -13:51:54,195 root INFO Walk iteration: 78/100 -13:51:54,198 root INFO Walk iteration: 79/100 -13:51:54,201 root INFO Walk iteration: 80/100 -13:51:54,204 root INFO Walk iteration: 81/100 -13:51:54,207 root INFO Walk iteration: 82/100 -13:51:54,210 root INFO Walk iteration: 83/100 -13:51:54,214 root INFO Walk iteration: 84/100 -13:51:54,217 root INFO Walk iteration: 85/100 -13:51:54,219 root INFO Walk iteration: 86/100 -13:51:54,222 root INFO Walk iteration: 87/100 -13:51:54,225 root INFO Walk iteration: 88/100 -13:51:54,228 root INFO Walk iteration: 89/100 -13:51:54,231 root INFO Walk iteration: 90/100 -13:51:54,234 root INFO Walk iteration: 91/100 -13:51:54,237 root INFO Walk iteration: 92/100 -13:51:54,240 root INFO Walk iteration: 93/100 -13:51:54,243 root INFO Walk iteration: 94/100 -13:51:54,246 root INFO Walk iteration: 95/100 -13:51:54,249 root INFO Walk iteration: 96/100 -13:51:54,252 root INFO Walk iteration: 97/100 -13:51:54,256 root INFO Walk iteration: 98/100 -13:51:54,259 root INFO Walk iteration: 99/100 -13:51:54,262 root INFO Walk iteration: 100/100 -13:51:54,265 root INFO Learning embeddings at time 1731930714.2652104 -13:51:54,277 gensim.models.word2vec INFO collecting all words and their counts -13:51:54,277 gensim.models.word2vec INFO PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -13:51:54,281 gensim.models.word2vec INFO PROGRESS: at sentence #10000, processed 44354 words, keeping 320 word types -13:51:54,285 gensim.models.word2vec INFO PROGRESS: at sentence #20000, processed 88735 words, keeping 320 word types -13:51:54,289 gensim.models.word2vec INFO PROGRESS: at sentence #30000, processed 133023 words, keeping 320 word types -13:51:54,290 gensim.models.word2vec INFO collected 320 word types from a corpus of 141900 raw words and 32000 sentences -13:51:54,290 gensim.models.word2vec INFO Creating a fresh vocabulary -13:51:54,290 gensim.utils DEBUG starting a new internal lifecycle event log for Word2Vec -13:51:54,290 gensim.utils INFO Word2Vec lifecycle event {'msg': 'effective_min_count=0 retains 320 unique words (100.00% of original 320, drops 0)', 'datetime': '2024-11-18T13:51:54.290210', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:54,290 gensim.utils INFO Word2Vec lifecycle event {'msg': 'effective_min_count=0 leaves 141900 word corpus (100.00% of original 141900, drops 0)', 'datetime': '2024-11-18T13:51:54.290210', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:54,291 gensim.models.word2vec INFO deleting the raw counts dictionary of 320 items -13:51:54,292 gensim.models.word2vec INFO sample=0.001 downsamples 92 most-common words -13:51:54,292 gensim.utils INFO Word2Vec lifecycle event {'msg': 'downsampling leaves estimated 92872.55422900799 word corpus (65.4%% of prior 141900)', 'datetime': '2024-11-18T13:51:54.292210', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:54,293 gensim.models.word2vec INFO estimated required memory for 320 words and 1536 dimensions: 4092160 bytes -13:51:54,293 gensim.models.word2vec INFO resetting layer weights -13:51:54,295 gensim.utils INFO Word2Vec lifecycle event {'update': False, 'trim_rule': 'None', 'datetime': '2024-11-18T13:51:54.295210', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'build_vocab'} -13:51:54,295 gensim.utils INFO Word2Vec lifecycle event {'msg': 'training model with 8 workers on 320 vocabulary and 1536 features, using sg=1 hs=0 sample=0.001 negative=5 window=5 shrink_windows=True', 'datetime': '2024-11-18T13:51:54.295210', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'train'} -13:51:54,312 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:54,383 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:54,383 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:54,388 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,388 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:54,414 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,414 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:54,416 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,416 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:54,423 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,423 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:54,424 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,424 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:54,426 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,426 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:54,428 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,428 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:54,428 gensim.models.word2vec INFO EPOCH 0: training on 141900 raw words (92714 effective words) took 0.1s, 795267 effective words/s -13:51:54,445 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:54,519 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,519 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:54,520 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:54,520 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:54,538 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,538 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:54,544 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,544 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:54,546 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,546 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:54,551 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,551 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:54,555 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,556 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:54,558 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,558 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:54,558 gensim.models.word2vec INFO EPOCH 1: training on 141900 raw words (92879 effective words) took 0.1s, 819062 effective words/s -13:51:54,574 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:54,642 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:54,642 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:54,648 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,648 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:54,669 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,669 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:54,673 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,673 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:54,675 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,675 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:54,680 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,680 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:54,680 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,681 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:54,682 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,682 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:54,682 gensim.models.word2vec INFO EPOCH 2: training on 141900 raw words (93035 effective words) took 0.1s, 849055 effective words/s -13:51:54,698 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:54,766 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:54,766 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:54,776 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,776 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:54,785 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,785 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:54,803 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,803 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:54,803 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,803 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:54,803 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,803 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:54,806 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,806 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:54,808 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,809 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:54,809 gensim.models.word2vec INFO EPOCH 3: training on 141900 raw words (92932 effective words) took 0.1s, 841488 effective words/s -13:51:54,825 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:54,895 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:54,895 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:54,906 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,907 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:54,917 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,917 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:54,934 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,934 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:54,941 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,941 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:54,943 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,943 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:54,945 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,945 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:54,948 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:54,949 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:54,949 gensim.models.word2vec INFO EPOCH 4: training on 141900 raw words (93111 effective words) took 0.1s, 740943 effective words/s -13:51:54,971 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:55,37 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:55,38 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:55,45 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,45 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:55,72 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,72 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:55,75 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,75 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:55,77 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,77 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:55,78 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,78 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:55,83 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,83 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:55,85 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,86 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:55,86 gensim.models.word2vec INFO EPOCH 5: training on 141900 raw words (92767 effective words) took 0.1s, 780943 effective words/s -13:51:55,102 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:55,171 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:55,171 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:55,174 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,174 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:55,199 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,199 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:55,202 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,202 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:55,206 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,206 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:55,206 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,206 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:55,207 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,207 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:55,210 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,210 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:55,210 gensim.models.word2vec INFO EPOCH 6: training on 141900 raw words (92890 effective words) took 0.1s, 846522 effective words/s -13:51:55,226 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:55,298 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:55,298 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:55,304 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,304 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:55,319 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,319 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:55,319 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,319 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:55,326 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,326 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:55,327 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,327 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:55,330 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,330 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:55,331 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,331 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:55,331 gensim.models.word2vec INFO EPOCH 7: training on 141900 raw words (92955 effective words) took 0.1s, 886694 effective words/s -13:51:55,348 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:55,415 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:55,415 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:55,423 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,424 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:55,438 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,438 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:55,444 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,444 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:55,446 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,446 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:55,450 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,450 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:55,451 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,451 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:55,458 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,458 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:55,458 gensim.models.word2vec INFO EPOCH 8: training on 141900 raw words (92995 effective words) took 0.1s, 790943 effective words/s -13:51:55,474 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:55,544 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:55,544 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:55,550 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,550 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:55,566 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,566 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:55,570 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,570 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:55,577 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,577 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:55,580 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,580 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:55,584 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,584 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:55,584 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:55,584 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:55,584 gensim.models.word2vec INFO EPOCH 9: training on 141900 raw words (92737 effective words) took 0.1s, 830547 effective words/s -13:51:55,584 gensim.utils INFO Word2Vec lifecycle event {'msg': 'training on 1419000 raw words (929015 effective words) took 1.3s, 720691 effective words/s', 'datetime': '2024-11-18T13:51:55.584210', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'train'} -13:51:55,584 gensim.utils INFO Word2Vec lifecycle event {'params': 'Word2Vec', 'datetime': '2024-11-18T13:51:55.584210', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'created'} -13:51:55,585 root INFO Completed. Ending time is 1731930715.58521 Elapsed time is -1.7723565101623535 -13:51:55,623 root INFO Starting preprocessing of transition probabilities on graph with 320 nodes and 409 edges -13:51:55,623 root INFO Starting at time 1731930715.623211 -13:51:55,623 root INFO Beginning preprocessing of transition probabilities for 320 vertices -13:51:55,623 root INFO Completed 1 / 320 vertices -13:51:55,624 root INFO Completed 33 / 320 vertices -13:51:55,624 root INFO Completed 65 / 320 vertices -13:51:55,624 root INFO Completed 97 / 320 vertices -13:51:55,624 root INFO Completed 129 / 320 vertices -13:51:55,624 root INFO Completed 161 / 320 vertices -13:51:55,625 root INFO Completed 193 / 320 vertices -13:51:55,625 root INFO Completed 225 / 320 vertices -13:51:55,625 root INFO Completed 257 / 320 vertices -13:51:55,625 root INFO Completed 289 / 320 vertices -13:51:55,625 root INFO Completed preprocessing of transition probabilities for vertices -13:51:55,625 root INFO Beginning preprocessing of transition probabilities for 409 edges -13:51:55,625 root INFO Completed 1 / 409 edges -13:51:55,629 root INFO Completed 41 / 409 edges -13:51:55,630 root INFO Completed 81 / 409 edges -13:51:55,632 root INFO Completed 121 / 409 edges -13:51:55,632 root INFO Completed 161 / 409 edges -13:51:55,633 root INFO Completed 201 / 409 edges -13:51:55,634 root INFO Completed 241 / 409 edges -13:51:55,635 root INFO Completed 281 / 409 edges -13:51:55,636 root INFO Completed 321 / 409 edges -13:51:55,637 root INFO Completed 361 / 409 edges -13:51:55,637 root INFO Completed 401 / 409 edges -13:51:55,637 root INFO Completed preprocessing of transition probabilities for edges -13:51:55,637 root INFO Simulating walks on graph at time 1731930715.6372101 -13:51:55,638 root INFO Walk iteration: 1/100 -13:51:55,641 root INFO Walk iteration: 2/100 -13:51:55,644 root INFO Walk iteration: 3/100 -13:51:55,647 root INFO Walk iteration: 4/100 -13:51:55,650 root INFO Walk iteration: 5/100 -13:51:55,653 root INFO Walk iteration: 6/100 -13:51:55,656 root INFO Walk iteration: 7/100 -13:51:55,659 root INFO Walk iteration: 8/100 -13:51:55,662 root INFO Walk iteration: 9/100 -13:51:55,665 root INFO Walk iteration: 10/100 -13:51:55,668 root INFO Walk iteration: 11/100 -13:51:55,671 root INFO Walk iteration: 12/100 -13:51:55,675 root INFO Walk iteration: 13/100 -13:51:55,678 root INFO Walk iteration: 14/100 -13:51:55,681 root INFO Walk iteration: 15/100 -13:51:55,684 root INFO Walk iteration: 16/100 -13:51:55,687 root INFO Walk iteration: 17/100 -13:51:55,690 root INFO Walk iteration: 18/100 -13:51:55,693 root INFO Walk iteration: 19/100 -13:51:55,696 root INFO Walk iteration: 20/100 -13:51:55,699 root INFO Walk iteration: 21/100 -13:51:55,702 root INFO Walk iteration: 22/100 -13:51:55,705 root INFO Walk iteration: 23/100 -13:51:55,708 root INFO Walk iteration: 24/100 -13:51:55,711 root INFO Walk iteration: 25/100 -13:51:55,714 root INFO Walk iteration: 26/100 -13:51:55,717 root INFO Walk iteration: 27/100 -13:51:55,720 root INFO Walk iteration: 28/100 -13:51:55,723 root INFO Walk iteration: 29/100 -13:51:55,726 root INFO Walk iteration: 30/100 -13:51:55,729 root INFO Walk iteration: 31/100 -13:51:55,732 root INFO Walk iteration: 32/100 -13:51:55,735 root INFO Walk iteration: 33/100 -13:51:55,738 root INFO Walk iteration: 34/100 -13:51:55,741 root INFO Walk iteration: 35/100 -13:51:55,744 root INFO Walk iteration: 36/100 -13:51:55,747 root INFO Walk iteration: 37/100 -13:51:55,750 root INFO Walk iteration: 38/100 -13:51:55,753 root INFO Walk iteration: 39/100 -13:51:55,756 root INFO Walk iteration: 40/100 -13:51:55,759 root INFO Walk iteration: 41/100 -13:51:55,762 root INFO Walk iteration: 42/100 -13:51:55,765 root INFO Walk iteration: 43/100 -13:51:55,768 root INFO Walk iteration: 44/100 -13:51:55,771 root INFO Walk iteration: 45/100 -13:51:55,774 root INFO Walk iteration: 46/100 -13:51:55,777 root INFO Walk iteration: 47/100 -13:51:55,780 root INFO Walk iteration: 48/100 -13:51:55,783 root INFO Walk iteration: 49/100 -13:51:55,786 root INFO Walk iteration: 50/100 -13:51:55,789 root INFO Walk iteration: 51/100 -13:51:55,792 root INFO Walk iteration: 52/100 -13:51:55,795 root INFO Walk iteration: 53/100 -13:51:55,798 root INFO Walk iteration: 54/100 -13:51:55,801 root INFO Walk iteration: 55/100 -13:51:55,804 root INFO Walk iteration: 56/100 -13:51:55,807 root INFO Walk iteration: 57/100 -13:51:55,810 root INFO Walk iteration: 58/100 -13:51:55,813 root INFO Walk iteration: 59/100 -13:51:55,816 root INFO Walk iteration: 60/100 -13:51:55,819 root INFO Walk iteration: 61/100 -13:51:55,822 root INFO Walk iteration: 62/100 -13:51:55,825 root INFO Walk iteration: 63/100 -13:51:55,828 root INFO Walk iteration: 64/100 -13:51:55,831 root INFO Walk iteration: 65/100 -13:51:55,834 root INFO Walk iteration: 66/100 -13:51:55,837 root INFO Walk iteration: 67/100 -13:51:55,840 root INFO Walk iteration: 68/100 -13:51:55,843 root INFO Walk iteration: 69/100 -13:51:55,846 root INFO Walk iteration: 70/100 -13:51:55,849 root INFO Walk iteration: 71/100 -13:51:55,852 root INFO Walk iteration: 72/100 -13:51:55,855 root INFO Walk iteration: 73/100 -13:51:55,858 root INFO Walk iteration: 74/100 -13:51:55,861 root INFO Walk iteration: 75/100 -13:51:55,864 root INFO Walk iteration: 76/100 -13:51:55,867 root INFO Walk iteration: 77/100 -13:51:55,870 root INFO Walk iteration: 78/100 -13:51:55,873 root INFO Walk iteration: 79/100 -13:51:55,876 root INFO Walk iteration: 80/100 -13:51:55,879 root INFO Walk iteration: 81/100 -13:51:55,882 root INFO Walk iteration: 82/100 -13:51:55,885 root INFO Walk iteration: 83/100 -13:51:55,888 root INFO Walk iteration: 84/100 -13:51:55,891 root INFO Walk iteration: 85/100 -13:51:55,894 root INFO Walk iteration: 86/100 -13:51:55,897 root INFO Walk iteration: 87/100 -13:51:55,900 root INFO Walk iteration: 88/100 -13:51:55,903 root INFO Walk iteration: 89/100 -13:51:55,906 root INFO Walk iteration: 90/100 -13:51:55,909 root INFO Walk iteration: 91/100 -13:51:55,912 root INFO Walk iteration: 92/100 -13:51:55,915 root INFO Walk iteration: 93/100 -13:51:55,918 root INFO Walk iteration: 94/100 -13:51:55,921 root INFO Walk iteration: 95/100 -13:51:55,924 root INFO Walk iteration: 96/100 -13:51:55,927 root INFO Walk iteration: 97/100 -13:51:55,930 root INFO Walk iteration: 98/100 -13:51:55,933 root INFO Walk iteration: 99/100 -13:51:55,936 root INFO Walk iteration: 100/100 -13:51:55,939 root INFO Learning embeddings at time 1731930715.9392102 -13:51:56,85 gensim.models.word2vec INFO collecting all words and their counts -13:51:56,85 gensim.models.word2vec INFO PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -13:51:56,89 gensim.models.word2vec INFO PROGRESS: at sentence #10000, processed 44354 words, keeping 320 word types -13:51:56,94 gensim.models.word2vec INFO PROGRESS: at sentence #20000, processed 88735 words, keeping 320 word types -13:51:56,98 gensim.models.word2vec INFO PROGRESS: at sentence #30000, processed 133023 words, keeping 320 word types -13:51:56,99 gensim.models.word2vec INFO collected 320 word types from a corpus of 141900 raw words and 32000 sentences -13:51:56,99 gensim.models.word2vec INFO Creating a fresh vocabulary -13:51:56,99 gensim.utils DEBUG starting a new internal lifecycle event log for Word2Vec -13:51:56,99 gensim.utils INFO Word2Vec lifecycle event {'msg': 'effective_min_count=0 retains 320 unique words (100.00% of original 320, drops 0)', 'datetime': '2024-11-18T13:51:56.099169', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:56,99 gensim.utils INFO Word2Vec lifecycle event {'msg': 'effective_min_count=0 leaves 141900 word corpus (100.00% of original 141900, drops 0)', 'datetime': '2024-11-18T13:51:56.099169', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:56,101 gensim.models.word2vec INFO deleting the raw counts dictionary of 320 items -13:51:56,101 gensim.models.word2vec INFO sample=0.001 downsamples 92 most-common words -13:51:56,101 gensim.utils INFO Word2Vec lifecycle event {'msg': 'downsampling leaves estimated 92872.55422900799 word corpus (65.4%% of prior 141900)', 'datetime': '2024-11-18T13:51:56.101169', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:56,102 gensim.models.word2vec INFO estimated required memory for 320 words and 1536 dimensions: 4092160 bytes -13:51:56,102 gensim.models.word2vec INFO resetting layer weights -13:51:56,104 gensim.utils INFO Word2Vec lifecycle event {'update': False, 'trim_rule': 'None', 'datetime': '2024-11-18T13:51:56.104169', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'build_vocab'} -13:51:56,104 gensim.utils INFO Word2Vec lifecycle event {'msg': 'training model with 8 workers on 320 vocabulary and 1536 features, using sg=1 hs=0 sample=0.001 negative=5 window=5 shrink_windows=True', 'datetime': '2024-11-18T13:51:56.104169', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'train'} -13:51:56,121 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:56,196 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:56,196 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:56,204 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,204 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:56,220 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,220 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:56,227 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,227 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:56,232 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,232 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:56,233 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,233 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:56,240 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,240 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:56,246 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,246 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:56,246 gensim.models.word2vec INFO EPOCH 0: training on 141900 raw words (92714 effective words) took 0.1s, 728840 effective words/s -13:51:56,263 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:56,330 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:56,330 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:56,340 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,340 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:56,357 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,357 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:56,362 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,362 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:56,372 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,372 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:56,372 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,372 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:56,374 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,374 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:56,377 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,377 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:56,377 gensim.models.word2vec INFO EPOCH 1: training on 141900 raw words (92851 effective words) took 0.1s, 777935 effective words/s -13:51:56,393 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:56,462 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:56,462 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:56,468 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,468 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:56,489 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,489 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:56,490 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,490 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:56,495 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,495 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:56,497 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,497 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:56,499 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,499 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:56,499 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,499 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:56,499 gensim.models.word2vec INFO EPOCH 2: training on 141900 raw words (92673 effective words) took 0.1s, 854313 effective words/s -13:51:56,515 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:56,586 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:56,586 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:56,594 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,594 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:56,613 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,613 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:56,615 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,615 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:56,619 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,619 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:56,621 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,621 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:56,622 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,622 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:56,623 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,623 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:56,623 gensim.models.word2vec INFO EPOCH 3: training on 141900 raw words (92902 effective words) took 0.1s, 864856 effective words/s -13:51:56,640 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:56,704 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:56,704 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:56,709 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,709 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:56,737 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,737 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:56,738 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,738 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:56,740 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,740 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:56,743 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,743 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:56,745 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,745 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:56,748 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,748 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:56,748 gensim.models.word2vec INFO EPOCH 4: training on 141900 raw words (93207 effective words) took 0.1s, 806815 effective words/s -13:51:56,764 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:56,838 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:56,839 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:56,839 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,839 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:56,858 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,858 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:56,871 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,871 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:56,874 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,874 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:56,875 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,875 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,875 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:56,875 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:56,877 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,877 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:56,877 gensim.models.word2vec INFO EPOCH 5: training on 141900 raw words (93021 effective words) took 0.1s, 813626 effective words/s -13:51:56,893 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:56,963 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:56,963 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:56,971 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,971 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:56,987 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,987 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:56,991 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,991 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:56,994 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,994 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:56,999 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,999 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:56,999 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:57,0 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:57,5 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,5 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:57,5 gensim.models.word2vec INFO EPOCH 6: training on 141900 raw words (92789 effective words) took 0.1s, 778515 effective words/s -13:51:57,22 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:57,87 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:57,88 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:57,96 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,96 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:57,119 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,119 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:57,124 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,124 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:57,129 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,129 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:57,130 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,130 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,130 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:57,130 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:57,131 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,131 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:57,131 gensim.models.word2vec INFO EPOCH 7: training on 141900 raw words (92943 effective words) took 0.1s, 832448 effective words/s -13:51:57,148 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:57,214 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:57,215 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:57,220 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,220 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:57,236 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,236 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:57,248 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,248 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:57,249 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,249 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:57,252 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,252 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:57,253 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,253 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:57,255 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,255 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:57,255 gensim.models.word2vec INFO EPOCH 8: training on 141900 raw words (92907 effective words) took 0.1s, 827995 effective words/s -13:51:57,272 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:57,339 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:57,339 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:57,349 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,349 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:57,356 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,356 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:57,364 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,364 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:57,377 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,378 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:57,378 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,378 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:57,381 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,382 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,382 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:57,382 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:57,382 gensim.models.word2vec INFO EPOCH 9: training on 141900 raw words (92720 effective words) took 0.1s, 820993 effective words/s -13:51:57,382 gensim.utils INFO Word2Vec lifecycle event {'msg': 'training on 1419000 raw words (928727 effective words) took 1.3s, 726598 effective words/s', 'datetime': '2024-11-18T13:51:57.382685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'train'} -13:51:57,382 gensim.utils INFO Word2Vec lifecycle event {'params': 'Word2Vec', 'datetime': '2024-11-18T13:51:57.382685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'created'} -13:51:57,383 root INFO Completed. Ending time is 1731930717.383685 Elapsed time is -1.7604742050170898 -13:51:57,418 root INFO Starting preprocessing of transition probabilities on graph with 320 nodes and 409 edges -13:51:57,418 root INFO Starting at time 1731930717.4186857 -13:51:57,418 root INFO Beginning preprocessing of transition probabilities for 320 vertices -13:51:57,418 root INFO Completed 1 / 320 vertices -13:51:57,419 root INFO Completed 33 / 320 vertices -13:51:57,419 root INFO Completed 65 / 320 vertices -13:51:57,419 root INFO Completed 97 / 320 vertices -13:51:57,419 root INFO Completed 129 / 320 vertices -13:51:57,419 root INFO Completed 161 / 320 vertices -13:51:57,420 root INFO Completed 193 / 320 vertices -13:51:57,420 root INFO Completed 225 / 320 vertices -13:51:57,420 root INFO Completed 257 / 320 vertices -13:51:57,420 root INFO Completed 289 / 320 vertices -13:51:57,420 root INFO Completed preprocessing of transition probabilities for vertices -13:51:57,420 root INFO Beginning preprocessing of transition probabilities for 409 edges -13:51:57,420 root INFO Completed 1 / 409 edges -13:51:57,423 root INFO Completed 41 / 409 edges -13:51:57,425 root INFO Completed 81 / 409 edges -13:51:57,426 root INFO Completed 121 / 409 edges -13:51:57,427 root INFO Completed 161 / 409 edges -13:51:57,428 root INFO Completed 201 / 409 edges -13:51:57,428 root INFO Completed 241 / 409 edges -13:51:57,430 root INFO Completed 281 / 409 edges -13:51:57,430 root INFO Completed 321 / 409 edges -13:51:57,431 root INFO Completed 361 / 409 edges -13:51:57,432 root INFO Completed 401 / 409 edges -13:51:57,432 root INFO Completed preprocessing of transition probabilities for edges -13:51:57,432 root INFO Simulating walks on graph at time 1731930717.4326868 -13:51:57,432 root INFO Walk iteration: 1/100 -13:51:57,435 root INFO Walk iteration: 2/100 -13:51:57,438 root INFO Walk iteration: 3/100 -13:51:57,442 root INFO Walk iteration: 4/100 -13:51:57,445 root INFO Walk iteration: 5/100 -13:51:57,448 root INFO Walk iteration: 6/100 -13:51:57,451 root INFO Walk iteration: 7/100 -13:51:57,454 root INFO Walk iteration: 8/100 -13:51:57,457 root INFO Walk iteration: 9/100 -13:51:57,460 root INFO Walk iteration: 10/100 -13:51:57,463 root INFO Walk iteration: 11/100 -13:51:57,466 root INFO Walk iteration: 12/100 -13:51:57,469 root INFO Walk iteration: 13/100 -13:51:57,472 root INFO Walk iteration: 14/100 -13:51:57,475 root INFO Walk iteration: 15/100 -13:51:57,478 root INFO Walk iteration: 16/100 -13:51:57,481 root INFO Walk iteration: 17/100 -13:51:57,484 root INFO Walk iteration: 18/100 -13:51:57,487 root INFO Walk iteration: 19/100 -13:51:57,490 root INFO Walk iteration: 20/100 -13:51:57,493 root INFO Walk iteration: 21/100 -13:51:57,496 root INFO Walk iteration: 22/100 -13:51:57,499 root INFO Walk iteration: 23/100 -13:51:57,502 root INFO Walk iteration: 24/100 -13:51:57,505 root INFO Walk iteration: 25/100 -13:51:57,508 root INFO Walk iteration: 26/100 -13:51:57,511 root INFO Walk iteration: 27/100 -13:51:57,514 root INFO Walk iteration: 28/100 -13:51:57,517 root INFO Walk iteration: 29/100 -13:51:57,520 root INFO Walk iteration: 30/100 -13:51:57,523 root INFO Walk iteration: 31/100 -13:51:57,526 root INFO Walk iteration: 32/100 -13:51:57,529 root INFO Walk iteration: 33/100 -13:51:57,532 root INFO Walk iteration: 34/100 -13:51:57,536 root INFO Walk iteration: 35/100 -13:51:57,539 root INFO Walk iteration: 36/100 -13:51:57,542 root INFO Walk iteration: 37/100 -13:51:57,544 root INFO Walk iteration: 38/100 -13:51:57,547 root INFO Walk iteration: 39/100 -13:51:57,550 root INFO Walk iteration: 40/100 -13:51:57,553 root INFO Walk iteration: 41/100 -13:51:57,556 root INFO Walk iteration: 42/100 -13:51:57,559 root INFO Walk iteration: 43/100 -13:51:57,562 root INFO Walk iteration: 44/100 -13:51:57,565 root INFO Walk iteration: 45/100 -13:51:57,568 root INFO Walk iteration: 46/100 -13:51:57,571 root INFO Walk iteration: 47/100 -13:51:57,574 root INFO Walk iteration: 48/100 -13:51:57,577 root INFO Walk iteration: 49/100 -13:51:57,580 root INFO Walk iteration: 50/100 -13:51:57,583 root INFO Walk iteration: 51/100 -13:51:57,586 root INFO Walk iteration: 52/100 -13:51:57,589 root INFO Walk iteration: 53/100 -13:51:57,592 root INFO Walk iteration: 54/100 -13:51:57,595 root INFO Walk iteration: 55/100 -13:51:57,598 root INFO Walk iteration: 56/100 -13:51:57,601 root INFO Walk iteration: 57/100 -13:51:57,604 root INFO Walk iteration: 58/100 -13:51:57,607 root INFO Walk iteration: 59/100 -13:51:57,610 root INFO Walk iteration: 60/100 -13:51:57,614 root INFO Walk iteration: 61/100 -13:51:57,616 root INFO Walk iteration: 62/100 -13:51:57,619 root INFO Walk iteration: 63/100 -13:51:57,622 root INFO Walk iteration: 64/100 -13:51:57,625 root INFO Walk iteration: 65/100 -13:51:57,628 root INFO Walk iteration: 66/100 -13:51:57,632 root INFO Walk iteration: 67/100 -13:51:57,635 root INFO Walk iteration: 68/100 -13:51:57,638 root INFO Walk iteration: 69/100 -13:51:57,641 root INFO Walk iteration: 70/100 -13:51:57,644 root INFO Walk iteration: 71/100 -13:51:57,647 root INFO Walk iteration: 72/100 -13:51:57,650 root INFO Walk iteration: 73/100 -13:51:57,653 root INFO Walk iteration: 74/100 -13:51:57,656 root INFO Walk iteration: 75/100 -13:51:57,659 root INFO Walk iteration: 76/100 -13:51:57,662 root INFO Walk iteration: 77/100 -13:51:57,665 root INFO Walk iteration: 78/100 -13:51:57,668 root INFO Walk iteration: 79/100 -13:51:57,671 root INFO Walk iteration: 80/100 -13:51:57,674 root INFO Walk iteration: 81/100 -13:51:57,677 root INFO Walk iteration: 82/100 -13:51:57,680 root INFO Walk iteration: 83/100 -13:51:57,683 root INFO Walk iteration: 84/100 -13:51:57,686 root INFO Walk iteration: 85/100 -13:51:57,689 root INFO Walk iteration: 86/100 -13:51:57,692 root INFO Walk iteration: 87/100 -13:51:57,695 root INFO Walk iteration: 88/100 -13:51:57,698 root INFO Walk iteration: 89/100 -13:51:57,701 root INFO Walk iteration: 90/100 -13:51:57,704 root INFO Walk iteration: 91/100 -13:51:57,707 root INFO Walk iteration: 92/100 -13:51:57,710 root INFO Walk iteration: 93/100 -13:51:57,713 root INFO Walk iteration: 94/100 -13:51:57,716 root INFO Walk iteration: 95/100 -13:51:57,719 root INFO Walk iteration: 96/100 -13:51:57,722 root INFO Walk iteration: 97/100 -13:51:57,725 root INFO Walk iteration: 98/100 -13:51:57,728 root INFO Walk iteration: 99/100 -13:51:57,731 root INFO Walk iteration: 100/100 -13:51:57,734 root INFO Learning embeddings at time 1731930717.7346854 -13:51:57,747 gensim.models.word2vec INFO collecting all words and their counts -13:51:57,747 gensim.models.word2vec INFO PROGRESS: at sentence #0, processed 0 words, keeping 0 word types -13:51:57,750 gensim.models.word2vec INFO PROGRESS: at sentence #10000, processed 44354 words, keeping 320 word types -13:51:57,754 gensim.models.word2vec INFO PROGRESS: at sentence #20000, processed 88735 words, keeping 320 word types -13:51:57,758 gensim.models.word2vec INFO PROGRESS: at sentence #30000, processed 133023 words, keeping 320 word types -13:51:57,759 gensim.models.word2vec INFO collected 320 word types from a corpus of 141900 raw words and 32000 sentences -13:51:57,759 gensim.models.word2vec INFO Creating a fresh vocabulary -13:51:57,760 gensim.utils DEBUG starting a new internal lifecycle event log for Word2Vec -13:51:57,760 gensim.utils INFO Word2Vec lifecycle event {'msg': 'effective_min_count=0 retains 320 unique words (100.00% of original 320, drops 0)', 'datetime': '2024-11-18T13:51:57.760685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:57,760 gensim.utils INFO Word2Vec lifecycle event {'msg': 'effective_min_count=0 leaves 141900 word corpus (100.00% of original 141900, drops 0)', 'datetime': '2024-11-18T13:51:57.760685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:57,761 gensim.models.word2vec INFO deleting the raw counts dictionary of 320 items -13:51:57,761 gensim.models.word2vec INFO sample=0.001 downsamples 92 most-common words -13:51:57,761 gensim.utils INFO Word2Vec lifecycle event {'msg': 'downsampling leaves estimated 92872.55422900799 word corpus (65.4%% of prior 141900)', 'datetime': '2024-11-18T13:51:57.761685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'prepare_vocab'} -13:51:57,763 gensim.models.word2vec INFO estimated required memory for 320 words and 1536 dimensions: 4092160 bytes -13:51:57,763 gensim.models.word2vec INFO resetting layer weights -13:51:57,764 gensim.utils INFO Word2Vec lifecycle event {'update': False, 'trim_rule': 'None', 'datetime': '2024-11-18T13:51:57.764685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'build_vocab'} -13:51:57,764 gensim.utils INFO Word2Vec lifecycle event {'msg': 'training model with 8 workers on 320 vocabulary and 1536 features, using sg=1 hs=0 sample=0.001 negative=5 window=5 shrink_windows=True', 'datetime': '2024-11-18T13:51:57.764685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'train'} -13:51:57,781 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:57,853 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:57,853 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:57,861 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,862 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:57,887 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,887 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:57,892 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,892 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:57,892 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,892 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:57,892 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,892 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:57,897 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,897 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:57,900 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,900 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:57,900 gensim.models.word2vec INFO EPOCH 0: training on 141900 raw words (92757 effective words) took 0.1s, 735400 effective words/s -13:51:57,917 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:57,984 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:57,984 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:57,993 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:57,993 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,15 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,15 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,20 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,20 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,23 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,23 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,24 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,24 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,24 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,24 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,27 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,27 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,28 gensim.models.word2vec INFO EPOCH 1: training on 141900 raw words (92658 effective words) took 0.1s, 835908 effective words/s -13:51:58,44 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:58,112 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:58,112 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:58,122 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,122 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,139 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,139 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,145 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,145 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,153 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,153 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,156 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,156 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,158 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,158 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,159 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,159 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,159 gensim.models.word2vec INFO EPOCH 2: training on 141900 raw words (93067 effective words) took 0.1s, 769876 effective words/s -13:51:58,178 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:58,248 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:58,248 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:58,260 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,260 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,275 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,275 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,279 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,279 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,283 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,283 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,284 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,284 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,287 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,287 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,288 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,288 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,288 gensim.models.word2vec INFO EPOCH 3: training on 141900 raw words (92794 effective words) took 0.1s, 809598 effective words/s -13:51:58,305 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:58,376 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:58,376 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:58,385 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,385 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,403 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,403 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,407 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,408 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,408 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,409 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,410 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,410 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,414 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,414 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,415 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,415 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,416 gensim.models.word2vec INFO EPOCH 4: training on 141900 raw words (92894 effective words) took 0.1s, 839180 effective words/s -13:51:58,432 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:58,502 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:58,502 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:58,508 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,508 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,527 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,527 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,533 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,533 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,535 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,535 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,536 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,536 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,537 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,537 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,539 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,539 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,539 gensim.models.word2vec INFO EPOCH 5: training on 141900 raw words (92817 effective words) took 0.1s, 823201 effective words/s -13:51:58,555 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:58,622 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:58,622 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:58,634 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,634 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,649 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,649 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,653 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,653 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,657 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,658 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,659 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,659 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,661 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,661 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,663 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,663 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,663 gensim.models.word2vec INFO EPOCH 6: training on 141900 raw words (92636 effective words) took 0.1s, 828239 effective words/s -13:51:58,680 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:58,745 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:58,745 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:58,755 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,755 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,766 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,766 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,781 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,781 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,782 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,782 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,783 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,783 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,785 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,785 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,791 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,791 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,791 gensim.models.word2vec INFO EPOCH 7: training on 141900 raw words (92704 effective words) took 0.1s, 833029 effective words/s -13:51:58,808 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:58,875 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:58,875 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:58,882 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,882 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:58,904 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,904 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:58,909 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,909 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:58,910 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,910 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:58,912 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,912 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:58,914 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,914 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:58,919 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:58,919 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:58,920 gensim.models.word2vec INFO EPOCH 8: training on 141900 raw words (92811 effective words) took 0.1s, 776348 effective words/s -13:51:58,936 gensim.models.word2vec DEBUG job loop exiting, total 15 jobs -13:51:59,7 gensim.models.word2vec DEBUG worker exiting, processed 1 jobs -13:51:59,7 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 7 more threads -13:51:59,15 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:59,15 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 6 more threads -13:51:59,32 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:59,32 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 5 more threads -13:51:59,37 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:59,37 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 4 more threads -13:51:59,40 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:59,40 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:59,40 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 3 more threads -13:51:59,40 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 2 more threads -13:51:59,42 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:59,42 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 1 more threads -13:51:59,47 gensim.models.word2vec DEBUG worker exiting, processed 2 jobs -13:51:59,47 gensim.models.word2vec DEBUG worker thread finished; awaiting finish of 0 more threads -13:51:59,47 gensim.models.word2vec INFO EPOCH 9: training on 141900 raw words (92991 effective words) took 0.1s, 822755 effective words/s -13:51:59,47 gensim.utils INFO Word2Vec lifecycle event {'msg': 'training on 1419000 raw words (928129 effective words) took 1.3s, 723465 effective words/s', 'datetime': '2024-11-18T13:51:59.047685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'train'} -13:51:59,47 gensim.utils INFO Word2Vec lifecycle event {'params': 'Word2Vec', 'datetime': '2024-11-18T13:51:59.047685', 'gensim': '4.3.3', 'python': '3.11.5 (tags/v3.11.5:cce6ba9, Aug 24 2023, 14:38:34) [MSC v.1936 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.19045-SP0', 'event': 'created'} -13:51:59,48 root INFO Completed. Ending time is 1731930719.0486853 Elapsed time is -1.6299996376037598 -13:51:59,201 graphrag.index.run.workflow INFO dependencies for create_final_covariates: ['create_base_text_units'] -13:51:59,204 graphrag.index.run.workflow WARNING Dependency table create_base_text_units not found in storage: it may be a runtime-only in-memory table. If you see further errors, this may be an actual problem. -13:51:59,209 datashaper.workflow.workflow INFO executing verb create_final_covariates -13:51:59,209 graphrag.index.operations.extract_covariates.extract_covariates DEBUG extract_covariates strategy={'type': "graph_intelligence", 'llm': {'api_key': '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', 'type': "openai_chat", 'model': 'gpt-4o-mini', 'max_tokens': 4000, 'temperature': 0.0, 'top_p': 1.0, 'n': 1, 'request_timeout': 180.0, 'api_base': None, 'api_version': None, 'organization': None, 'proxy': None, 'audience': None, 'deployment_name': None, 'model_supports_json': True, 'tokens_per_minute': 0, 'requests_per_minute': 0, 'max_retries': 10, 'max_retry_wait': 10.0, 'sleep_on_rate_limit_recommendation': True, 'concurrent_requests': 25}, 'stagger': 0.3, 'num_threads': 50, 'extraction_prompt': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as ({tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter}{tuple_delimiter})\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **{record_delimiter}** as the list delimiter.\n\n4. When finished, output {completion_delimiter}\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A{tuple_delimiter}GOVERNMENT AGENCY B{tuple_delimiter}ANTI-COMPETITIVE PRACTICES{tuple_delimiter}TRUE{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10{tuple_delimiter}According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n{completion_delimiter}\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A{tuple_delimiter}GOVERNMENT AGENCY B{tuple_delimiter}ANTI-COMPETITIVE PRACTICES{tuple_delimiter}TRUE{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}2022-01-10T00:00:00{tuple_delimiter}Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10{tuple_delimiter}According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n{record_delimiter}\n(PERSON C{tuple_delimiter}NONE{tuple_delimiter}CORRUPTION{tuple_delimiter}SUSPECTED{tuple_delimiter}2015-01-01T00:00:00{tuple_delimiter}2015-12-30T00:00:00{tuple_delimiter}Person C was suspected of engaging in corruption activities in 2015{tuple_delimiter}The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n{completion_delimiter}\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: {entity_specs}\nClaim description: {claim_description}\nText: {input_text}\nOutput:', 'claim_description': 'Extract baggage measurements, weight limits, and restrictions from airline documentation.', 'max_gleanings': 2, 'encoding_name': 'cl100k_base'} -13:51:59,236 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,238 httpcore.connection DEBUG close.started -13:51:59,241 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,249 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,253 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country�s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,256 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,260 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,264 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t\u200bEurope and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,267 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,270 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger�s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,273 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,277 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,280 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,283 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,286 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,289 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,292 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,294 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. \nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,297 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,300 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon � Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,303 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,306 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,308 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,311 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,314 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,317 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:51:59,325 httpcore.connection DEBUG close.complete -13:51:59,325 httpcore.connection DEBUG close.started -13:51:59,325 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,325 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,326 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,326 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,326 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,326 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,326 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,326 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,326 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,327 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,328 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,328 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,328 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,328 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,328 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,328 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,329 httpcore.connection DEBUG close.complete -13:51:59,329 httpcore.connection DEBUG close.started -13:51:59,329 httpcore.connection DEBUG close.complete -13:51:59,329 httpcore.connection DEBUG close.started -13:51:59,329 httpcore.connection DEBUG close.complete -13:51:59,329 httpcore.connection DEBUG close.started -13:51:59,329 httpcore.connection DEBUG close.complete -13:51:59,329 httpcore.connection DEBUG close.started -13:51:59,329 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,330 httpcore.connection DEBUG close.complete -13:51:59,330 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,331 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,331 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,331 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,331 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,331 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,331 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,331 httpcore.connection DEBUG close.started -13:51:59,331 httpcore.connection DEBUG close.complete -13:51:59,332 httpcore.connection DEBUG close.started -13:51:59,332 httpcore.connection DEBUG close.complete -13:51:59,332 httpcore.connection DEBUG close.started -13:51:59,333 httpcore.connection DEBUG close.complete -13:51:59,335 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:51:59,337 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,337 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,338 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,338 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,338 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,338 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,338 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,338 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,338 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,338 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,339 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,339 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,339 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,339 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,339 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,339 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,339 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,339 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,340 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,340 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,340 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,340 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,341 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,341 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,341 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,341 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,341 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,341 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,341 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,341 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,342 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,342 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,342 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,342 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,342 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,342 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,343 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,343 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,343 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,343 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,343 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,343 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,344 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,344 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,344 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,344 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,344 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,344 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,347 httpcore.connection DEBUG connect_tcp.complete return_value= -13:51:59,347 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:51:59,347 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,355 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,355 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,355 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,355 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,355 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,374 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,374 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,374 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,374 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,374 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,374 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,374 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,375 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,389 httpcore.http11 DEBUG send_request_body.complete -13:51:59,389 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,389 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,389 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,389 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,389 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,389 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,389 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,390 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,390 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,391 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,391 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,391 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,391 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,391 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,391 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,391 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,391 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,392 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,392 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,392 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,392 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,394 httpcore.http11 DEBUG send_request_body.complete -13:51:59,394 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,394 httpcore.http11 DEBUG send_request_body.complete -13:51:59,394 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,394 httpcore.http11 DEBUG send_request_body.complete -13:51:59,394 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,394 httpcore.http11 DEBUG send_request_body.complete -13:51:59,394 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,395 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,395 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,395 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,395 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,395 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,395 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,395 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,395 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,395 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,395 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,395 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,395 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,395 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,395 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,396 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,396 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,396 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,396 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,396 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,397 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,397 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,397 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,397 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,397 httpcore.connection DEBUG start_tls.complete return_value= -13:51:59,397 httpcore.http11 DEBUG send_request_body.complete -13:51:59,397 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,398 httpcore.http11 DEBUG send_request_body.complete -13:51:59,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,398 httpcore.http11 DEBUG send_request_body.complete -13:51:59,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,398 httpcore.http11 DEBUG send_request_body.complete -13:51:59,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,398 httpcore.http11 DEBUG send_request_body.complete -13:51:59,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,398 httpcore.http11 DEBUG send_request_body.complete -13:51:59,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,398 httpcore.http11 DEBUG send_request_body.complete -13:51:59,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,398 httpcore.http11 DEBUG send_request_body.complete -13:51:59,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,399 httpcore.http11 DEBUG send_request_body.complete -13:51:59,399 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,399 httpcore.http11 DEBUG send_request_body.complete -13:51:59,399 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,399 httpcore.http11 DEBUG send_request_body.complete -13:51:59,399 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,399 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,399 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,399 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,399 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,399 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,399 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,399 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,399 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,400 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,400 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,400 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,400 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,400 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,400 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,400 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,400 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,400 httpcore.http11 DEBUG send_request_headers.started request= -13:51:59,400 httpcore.http11 DEBUG send_request_body.complete -13:51:59,400 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,400 httpcore.http11 DEBUG send_request_body.complete -13:51:59,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,401 httpcore.http11 DEBUG send_request_body.complete -13:51:59,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,401 httpcore.http11 DEBUG send_request_body.complete -13:51:59,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,401 httpcore.http11 DEBUG send_request_body.complete -13:51:59,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,401 httpcore.http11 DEBUG send_request_body.complete -13:51:59,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,401 httpcore.http11 DEBUG send_request_body.complete -13:51:59,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,401 httpcore.http11 DEBUG send_request_body.complete -13:51:59,401 httpcore.http11 DEBUG receive_response_headers.started request= -13:51:59,401 httpcore.http11 DEBUG send_request_headers.complete -13:51:59,402 httpcore.http11 DEBUG send_request_body.started request= -13:51:59,402 httpcore.http11 DEBUG send_request_body.complete -13:51:59,402 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,0 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'415'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9984'), (b'x-ratelimit-remaining-tokens', b'9901895'), (b'x-ratelimit-reset-requests', b'90ms'), (b'x-ratelimit-reset-tokens', b'588ms'), (b'x-request-id', b'req_24c602f32f2c67dc1c383ac5f779387f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dc2ec21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,0 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,0 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,1 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,1 httpcore.http11 DEBUG response_closed.started -13:52:00,1 httpcore.http11 DEBUG response_closed.complete -13:52:00,1 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,1 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7189999999827705. input_tokens=1324, output_tokens=9 -13:52:00,3 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,4 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,4 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,4 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,5 httpcore.http11 DEBUG send_request_body.complete -13:52:00,5 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,8 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'446'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9992'), (b'x-ratelimit-remaining-tokens', b'9955913'), (b'x-ratelimit-reset-requests', b'43ms'), (b'x-ratelimit-reset-tokens', b'264ms'), (b'x-request-id', b'req_2ea94660c5446500fb0e60852b871e1f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075c80d7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,9 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,9 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,9 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,9 httpcore.http11 DEBUG response_closed.started -13:52:00,9 httpcore.http11 DEBUG response_closed.complete -13:52:00,9 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,9 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7660000000032596. input_tokens=1126, output_tokens=5 -13:52:00,11 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor�s note.\u200b\n\u200bPassengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,12 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,12 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,12 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,12 httpcore.http11 DEBUG send_request_body.complete -13:52:00,12 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,17 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'428'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9981'), (b'x-ratelimit-remaining-tokens', b'9870055'), (b'x-ratelimit-reset-requests', b'113ms'), (b'x-ratelimit-reset-tokens', b'779ms'), (b'x-request-id', b'req_fd7ff6b0bb2bd9f1760ba7ae30db4307'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dde6c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,17 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,17 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,17 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,18 httpcore.http11 DEBUG response_closed.started -13:52:00,18 httpcore.http11 DEBUG response_closed.complete -13:52:00,18 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,18 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7040000000270084. input_tokens=1613, output_tokens=8 -13:52:00,20 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n\u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,21 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'457'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9982888'), (b'x-ratelimit-reset-requests', b'19ms'), (b'x-ratelimit-reset-tokens', b'102ms'), (b'x-request-id', b'req_048ff572608a04b5f0801f9147b65cd9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075cb9ac22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,21 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,21 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,21 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,21 httpcore.http11 DEBUG response_closed.started -13:52:00,21 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,21 httpcore.http11 DEBUG response_closed.complete -13:52:00,22 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,22 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.75. input_tokens=1482, output_tokens=9 -13:52:00,22 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,22 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,24 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n\u200b\u200bDo not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,25 httpcore.http11 DEBUG send_request_body.complete -13:52:00,25 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,25 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,25 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,25 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,26 httpcore.http11 DEBUG send_request_body.complete -13:52:00,26 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,36 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'485'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994455'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'33ms'), (b'x-request-id', b'req_a236a8cd788d4975d40552b3b870f8e3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075baed7d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,37 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,37 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,37 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,37 httpcore.http11 DEBUG response_closed.started -13:52:00,37 httpcore.http11 DEBUG response_closed.complete -13:52:00,37 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,37 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.75. input_tokens=1411, output_tokens=8 -13:52:00,40 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL�s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4�.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,41 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,41 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,41 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,42 httpcore.http11 DEBUG send_request_body.complete -13:52:00,42 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,43 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'477'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9990'), (b'x-ratelimit-remaining-tokens', b'9939608'), (b'x-ratelimit-reset-requests', b'56ms'), (b'x-ratelimit-reset-tokens', b'362ms'), (b'x-request-id', b'req_a1de2aa971a31886cf7aa5b2b7282fdf'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dc51ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,45 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,45 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,45 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,45 httpcore.http11 DEBUG response_closed.started -13:52:00,45 httpcore.http11 DEBUG response_closed.complete -13:52:00,46 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,46 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7660000000032596. input_tokens=1352, output_tokens=9 -13:52:00,46 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'470'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9984'), (b'x-ratelimit-remaining-tokens', b'9896214'), (b'x-ratelimit-reset-requests', b'95ms'), (b'x-ratelimit-reset-tokens', b'622ms'), (b'x-request-id', b'req_2783477d6fa8ce6354ee57dee6d1d4d4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dc2cc21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,47 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,47 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,48 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,49 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,49 httpcore.http11 DEBUG response_closed.started -13:52:00,49 httpcore.http11 DEBUG response_closed.complete -13:52:00,49 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,50 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7660000000032596. input_tokens=1616, output_tokens=9 -13:52:00,50 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,52 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,52 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,52 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,53 httpcore.http11 DEBUG send_request_body.complete -13:52:00,53 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,53 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,53 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,53 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,54 httpcore.http11 DEBUG send_request_body.complete -13:52:00,54 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,69 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'507'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9994'), (b'x-ratelimit-remaining-tokens', b'9966838'), (b'x-ratelimit-reset-requests', b'31ms'), (b'x-ratelimit-reset-tokens', b'198ms'), (b'x-request-id', b'req_ddc07050db6fab4dee4c0ae2d09422c8'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dba5c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,69 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,69 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,69 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,69 httpcore.http11 DEBUG response_closed.started -13:52:00,69 httpcore.http11 DEBUG response_closed.complete -13:52:00,70 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,70 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7649999999557622. input_tokens=1377, output_tokens=9 -13:52:00,72 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries� terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.� Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,72 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,73 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,73 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,73 httpcore.http11 DEBUG send_request_body.complete -13:52:00,73 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,82 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'505'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9987'), (b'x-ratelimit-remaining-tokens', b'9917878'), (b'x-ratelimit-reset-requests', b'77ms'), (b'x-ratelimit-reset-tokens', b'492ms'), (b'x-request-id', b'req_6737f3d9247e5dae989e2c346e4da606'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dba7c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,82 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,82 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,83 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,83 httpcore.http11 DEBUG response_closed.started -13:52:00,83 httpcore.http11 DEBUG response_closed.complete -13:52:00,83 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,83 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7660000000032596. input_tokens=1615, output_tokens=12 -13:52:00,85 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,86 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,86 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,86 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,86 httpcore.http11 DEBUG send_request_body.complete -13:52:00,86 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,108 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'519'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9980'), (b'x-ratelimit-remaining-tokens', b'9864346'), (b'x-ratelimit-reset-requests', b'118ms'), (b'x-ratelimit-reset-tokens', b'813ms'), (b'x-request-id', b'req_1da6ca1d09741351470c2106e897ae00'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075ec357d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,109 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,109 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,109 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,109 httpcore.http11 DEBUG response_closed.started -13:52:00,109 httpcore.http11 DEBUG response_closed.complete -13:52:00,109 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,110 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.875. input_tokens=1614, output_tokens=12 -13:52:00,111 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,112 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,112 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,112 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,113 httpcore.http11 DEBUG send_request_body.complete -13:52:00,113 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,131 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'569'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9977740'), (b'x-ratelimit-reset-requests', b'20ms'), (b'x-ratelimit-reset-tokens', b'133ms'), (b'x-request-id', b'req_87536451f264a9833d87fa39babf8b97'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075df9bc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,131 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,132 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,132 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,132 httpcore.http11 DEBUG response_closed.started -13:52:00,132 httpcore.http11 DEBUG response_closed.complete -13:52:00,132 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,132 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.8589999999967404. input_tokens=1616, output_tokens=12 -13:52:00,134 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\nOutput:"}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,135 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,135 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,135 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,136 httpcore.http11 DEBUG send_request_body.complete -13:52:00,136 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,216 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'654'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9972210'), (b'x-ratelimit-reset-requests', b'26ms'), (b'x-ratelimit-reset-tokens', b'166ms'), (b'x-request-id', b'req_ee00fa036137b1ef2680d32738cb2e2c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075d8a1c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,217 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,217 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,217 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,217 httpcore.http11 DEBUG response_closed.started -13:52:00,217 httpcore.http11 DEBUG response_closed.complete -13:52:00,217 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,218 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.9219999999622814. input_tokens=1615, output_tokens=7 -13:52:00,220 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,221 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,221 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,221 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,222 httpcore.http11 DEBUG send_request_body.complete -13:52:00,222 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,224 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'651'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9986'), (b'x-ratelimit-remaining-tokens', b'9912171'), (b'x-ratelimit-reset-requests', b'83ms'), (b'x-ratelimit-reset-tokens', b'526ms'), (b'x-request-id', b'req_254ee3dc2de00cd98f260838093a8145'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075d9bd7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,224 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,224 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,224 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,224 httpcore.http11 DEBUG response_closed.started -13:52:00,224 httpcore.http11 DEBUG response_closed.complete -13:52:00,225 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,225 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.9219999999622814. input_tokens=1613, output_tokens=8 -13:52:00,227 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {'role': 'assistant', 'content': '<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,228 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,228 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,228 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,229 httpcore.http11 DEBUG send_request_body.complete -13:52:00,229 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,241 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'665'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9988'), (b'x-ratelimit-remaining-tokens', b'9929208'), (b'x-ratelimit-reset-requests', b'67ms'), (b'x-ratelimit-reset-tokens', b'424ms'), (b'x-request-id', b'req_0acd638e9d51c8536897d3a696ceb51f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dde8c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,241 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,241 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,241 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,241 httpcore.http11 DEBUG response_closed.started -13:52:00,241 httpcore.http11 DEBUG response_closed.complete -13:52:00,241 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,242 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.9220000000204891. input_tokens=1184, output_tokens=9 -13:52:00,245 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\nOutput:'}, {'role': 'assistant', 'content': '**##**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,246 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,246 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,246 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,246 httpcore.http11 DEBUG send_request_body.complete -13:52:00,246 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,248 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'671'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9983'), (b'x-ratelimit-remaining-tokens', b'9890932'), (b'x-ratelimit-reset-requests', b'101ms'), (b'x-ratelimit-reset-tokens', b'654ms'), (b'x-request-id', b'req_b727f9cbeeb293e2168f5a998d7134ed'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dbe17d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,248 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,248 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,248 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,249 httpcore.http11 DEBUG response_closed.started -13:52:00,249 httpcore.http11 DEBUG response_closed.complete -13:52:00,249 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,249 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.9689999999827705. input_tokens=1189, output_tokens=9 -13:52:00,252 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\nOutput:'}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,252 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,253 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,253 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,253 httpcore.http11 DEBUG send_request_body.complete -13:52:00,253 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,261 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'691'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9989'), (b'x-ratelimit-remaining-tokens', b'9934181'), (b'x-ratelimit-reset-requests', b'63ms'), (b'x-ratelimit-reset-tokens', b'394ms'), (b'x-request-id', b'req_ffda17089157857d2a40abd6e305e2df'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dbec7d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,262 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,262 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,262 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,262 httpcore.http11 DEBUG response_closed.started -13:52:00,262 httpcore.http11 DEBUG response_closed.complete -13:52:00,262 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,263 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.0. input_tokens=1253, output_tokens=9 -13:52:00,266 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\nOutput:"}, {'role': 'assistant', 'content': '**##**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,266 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,267 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,267 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,267 httpcore.http11 DEBUG send_request_body.complete -13:52:00,267 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,353 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'791'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9993'), (b'x-ratelimit-remaining-tokens', b'9961181'), (b'x-ratelimit-reset-requests', b'36ms'), (b'x-ratelimit-reset-tokens', b'232ms'), (b'x-request-id', b'req_5a1329d98ef565efa40baf4b9a697052'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075df8bc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,354 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,354 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,354 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,354 httpcore.http11 DEBUG response_closed.started -13:52:00,354 httpcore.http11 DEBUG response_closed.complete -13:52:00,354 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,355 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.0939999999827705. input_tokens=1616, output_tokens=12 -13:52:00,359 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,359 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,360 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,360 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,360 httpcore.http11 DEBUG send_request_body.complete -13:52:00,360 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,595 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'373'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9967537'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'194ms'), (b'x-request-id', b'req_c0ab80074759c1f745f0911df4dd4715'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c079e881c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,596 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,596 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,596 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,596 httpcore.http11 DEBUG response_closed.started -13:52:00,596 httpcore.http11 DEBUG response_closed.complete -13:52:00,596 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,597 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.5469999999622814. input_tokens=1614, output_tokens=9 -13:52:00,600 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,600 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,601 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,601 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,601 httpcore.http11 DEBUG send_request_body.complete -13:52:00,601 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,622 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1054'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9988'), (b'x-ratelimit-remaining-tokens', b'9923650'), (b'x-ratelimit-reset-requests', b'71ms'), (b'x-ratelimit-reset-tokens', b'458ms'), (b'x-request-id', b'req_e77e469f24621e5e3e091f97b49d20ce'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075d8aac222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,622 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,622 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,623 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,623 httpcore.http11 DEBUG response_closed.started -13:52:00,623 httpcore.http11 DEBUG response_closed.complete -13:52:00,623 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,624 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.375. input_tokens=1616, output_tokens=53 -13:52:00,626 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,627 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,627 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,627 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,628 httpcore.http11 DEBUG send_request_body.complete -13:52:00,628 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,708 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1122'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9981'), (b'x-ratelimit-remaining-tokens', b'9880144'), (b'x-ratelimit-reset-requests', b'109ms'), (b'x-ratelimit-reset-tokens', b'719ms'), (b'x-request-id', b'req_413a1a4ebc48298805d49a5daaf67d70'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dde5c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,708 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,708 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,709 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,709 httpcore.http11 DEBUG response_closed.started -13:52:00,709 httpcore.http11 DEBUG response_closed.complete -13:52:00,709 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,709 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.4059999999590218. input_tokens=1616, output_tokens=58 -13:52:00,712 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,713 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,713 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,713 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,714 httpcore.http11 DEBUG send_request_body.complete -13:52:00,714 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,720 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:00 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'496'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9972637'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'164ms'), (b'x-request-id', b'req_93dd781f859aa64ec657415e70afa776'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c079ea4ced42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,720 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,720 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,720 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,720 httpcore.http11 DEBUG response_closed.started -13:52:00,720 httpcore.http11 DEBUG response_closed.complete -13:52:00,720 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,721 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.6719999999622814. input_tokens=1165, output_tokens=5 -13:52:00,723 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,724 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,724 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,724 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,725 httpcore.http11 DEBUG send_request_body.complete -13:52:00,725 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,752 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'350'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9988445'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'69ms'), (b'x-request-id', b'req_f09c2416ea11e47ddf7a893d4c5477d9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07b08f37da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,752 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,752 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,752 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,752 httpcore.http11 DEBUG response_closed.started -13:52:00,752 httpcore.http11 DEBUG response_closed.complete -13:52:00,753 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,753 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5310000000172295. input_tokens=19, output_tokens=5 -13:52:00,756 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\nOutput:'}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,756 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,757 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,757 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,757 httpcore.http11 DEBUG send_request_body.complete -13:52:00,757 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,758 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'461'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9982159'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'107ms'), (b'x-request-id', b'req_f6834eadef985f86b03779194e2b2789'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07a49657d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,759 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,759 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,759 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,759 httpcore.http11 DEBUG response_closed.started -13:52:00,759 httpcore.http11 DEBUG response_closed.complete -13:52:00,759 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,760 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.6410000000032596. input_tokens=1377, output_tokens=12 -13:52:00,762 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\nOutput:"}, {'role': 'assistant', 'content': '## \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,763 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,763 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,763 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,764 httpcore.http11 DEBUG send_request_body.complete -13:52:00,764 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,796 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1237'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9988497'), (b'x-ratelimit-reset-requests', b'12ms'), (b'x-ratelimit-reset-tokens', b'69ms'), (b'x-request-id', b'req_0a2fda6a5c4bc771f00e04928479fbfc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075c9a57da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,796 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,796 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,796 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,796 httpcore.http11 DEBUG response_closed.started -13:52:00,797 httpcore.http11 DEBUG response_closed.complete -13:52:00,797 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,797 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.547000000020489. input_tokens=1616, output_tokens=66 -13:52:00,800 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\nOutput:'}, {'role': 'assistant', 'content': '**##**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,800 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,801 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,801 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,801 httpcore.http11 DEBUG send_request_body.complete -13:52:00,801 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,814 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'385'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9980698'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'115ms'), (b'x-request-id', b'req_79f564488d7653dbab1bd4d440af9fe5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07b2a5d7d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,814 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,814 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,814 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,814 httpcore.http11 DEBUG response_closed.started -13:52:00,814 httpcore.http11 DEBUG response_closed.complete -13:52:00,814 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,815 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5619999999762513. input_tokens=19, output_tokens=9 -13:52:00,817 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,818 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,818 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,818 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,819 httpcore.http11 DEBUG send_request_body.complete -13:52:00,819 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,840 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'658'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994748'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'31ms'), (b'x-request-id', b'req_85003831a7e517c8fbdfaf95241c8957'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c079a820c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,840 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,840 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,840 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,840 httpcore.http11 DEBUG response_closed.started -13:52:00,841 httpcore.http11 DEBUG response_closed.complete -13:52:00,841 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,841 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.8439999999827705. input_tokens=1169, output_tokens=9 -13:52:00,844 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. \nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,845 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,845 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,845 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,846 httpcore.http11 DEBUG send_request_body.complete -13:52:00,846 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,847 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1276'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9985'), (b'x-ratelimit-remaining-tokens', b'9906584'), (b'x-ratelimit-reset-requests', b'88ms'), (b'x-ratelimit-reset-tokens', b'560ms'), (b'x-request-id', b'req_14952e05eb5e4cc4d266370c453c1503'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075dbb1c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,847 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,847 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,847 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,847 httpcore.http11 DEBUG response_closed.started -13:52:00,847 httpcore.http11 DEBUG response_closed.complete -13:52:00,847 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,848 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.5469999999622814. input_tokens=1615, output_tokens=67 -13:52:00,851 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,851 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,852 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,852 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,852 httpcore.http11 DEBUG send_request_body.complete -13:52:00,852 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,899 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'589'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9979325'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'124ms'), (b'x-request-id', b'req_9c1ff179137156efd7a1a7ad3d4aec31'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07a7de8c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,899 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,899 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,899 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,899 httpcore.http11 DEBUG response_closed.started -13:52:00,899 httpcore.http11 DEBUG response_closed.complete -13:52:00,899 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,900 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.7660000000032596. input_tokens=1396, output_tokens=12 -13:52:00,902 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country�s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,903 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,904 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,904 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,904 httpcore.http11 DEBUG send_request_body.complete -13:52:00,904 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,908 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'619'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9979386'), (b'x-ratelimit-reset-requests', b'12ms'), (b'x-ratelimit-reset-tokens', b'123ms'), (b'x-request-id', b'req_d75d36a3d633a13da5ad7803c24f77a1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c079c8fcc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,908 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,908 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,908 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,908 httpcore.http11 DEBUG response_closed.started -13:52:00,908 httpcore.http11 DEBUG response_closed.complete -13:52:00,908 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,909 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 0.8900000000139698. input_tokens=1616, output_tokens=12 -13:52:00,912 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,913 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,913 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,913 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,913 httpcore.http11 DEBUG send_request_body.complete -13:52:00,913 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:00,991 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1415'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9991'), (b'x-ratelimit-remaining-tokens', b'9950000'), (b'x-ratelimit-reset-requests', b'49ms'), (b'x-ratelimit-reset-tokens', b'299ms'), (b'x-request-id', b'req_4d1acbdbe525124017ea255ac97a8432'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075df8dc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:00,991 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:00,991 httpcore.http11 DEBUG receive_response_body.started request= -13:52:00,991 httpcore.http11 DEBUG receive_response_body.complete -13:52:00,992 httpcore.http11 DEBUG response_closed.started -13:52:00,992 httpcore.http11 DEBUG response_closed.complete -13:52:00,992 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:00,992 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.7179999999934807. input_tokens=1615, output_tokens=53 -13:52:00,995 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:00,996 httpcore.http11 DEBUG send_request_headers.started request= -13:52:00,996 httpcore.http11 DEBUG send_request_headers.complete -13:52:00,996 httpcore.http11 DEBUG send_request_body.started request= -13:52:00,996 httpcore.http11 DEBUG send_request_body.complete -13:52:00,996 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,162 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'895'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9979352'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'123ms'), (b'x-request-id', b'req_5b4b9b1dc154d77efb2eda5fe9c6ba76'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07a2985c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,162 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,163 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,163 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,163 httpcore.http11 DEBUG response_closed.started -13:52:01,163 httpcore.http11 DEBUG response_closed.complete -13:52:01,163 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,164 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.0780000000377186. input_tokens=1616, output_tokens=45 -13:52:01,166 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon � Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities or claims that match the specified criteria in the provided text. The text primarily contains information about baggage claims and contact details for various stores, but it does not include any specific claims related to baggage measurements, weight limits, or restrictions from airline documentation.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,167 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,167 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,167 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,168 httpcore.http11 DEBUG send_request_body.complete -13:52:01,168 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,189 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'391'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994465'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'33ms'), (b'x-request-id', b'req_4a2141aacb8d8337cc5052fd2a2a9824'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07d8a9bc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,189 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,189 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,189 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,189 httpcore.http11 DEBUG response_closed.started -13:52:01,189 httpcore.http11 DEBUG response_closed.complete -13:52:01,189 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,190 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5619999999762513. input_tokens=19, output_tokens=9 -13:52:01,192 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {'role': 'assistant', 'content': '<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,193 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,193 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,193 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,193 httpcore.http11 DEBUG send_request_body.complete -13:52:01,194 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,238 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1051'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9984116'), (b'x-ratelimit-reset-requests', b'12ms'), (b'x-ratelimit-reset-tokens', b'95ms'), (b'x-request-id', b'req_51c97e21fad966b2a6599d996eafc6e2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c079bb77c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,238 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,238 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,239 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,239 httpcore.http11 DEBUG response_closed.started -13:52:01,239 httpcore.http11 DEBUG response_closed.complete -13:52:01,239 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,239 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.2179999999934807. input_tokens=1615, output_tokens=61 -13:52:01,243 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {'role': 'assistant', 'content': '<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,244 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,244 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,244 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,244 httpcore.http11 DEBUG send_request_body.complete -13:52:01,244 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,355 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'369'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9991288'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'52ms'), (b'x-request-id', b'req_c5232573002c044436107d5435771db7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07ebe5f7d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,355 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,356 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,356 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,356 httpcore.http11 DEBUG response_closed.started -13:52:01,356 httpcore.http11 DEBUG response_closed.complete -13:52:01,356 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,357 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5470000000204891. input_tokens=19, output_tokens=9 -13:52:01,359 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,360 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,360 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,360 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,360 httpcore.http11 DEBUG send_request_body.complete -13:52:01,361 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,388 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'347'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9985613'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'86ms'), (b'x-request-id', b'req_3bb0faa6e0d72a5d1f7f31df8321f79c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07eee0ac21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,388 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,388 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,388 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,388 httpcore.http11 DEBUG response_closed.started -13:52:01,388 httpcore.http11 DEBUG response_closed.complete -13:52:01,389 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,389 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5470000000204891. input_tokens=19, output_tokens=9 -13:52:01,392 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\nOutput:"}, {'role': 'assistant', 'content': 'Based on the provided text, there are no specific claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted. The text primarily discusses guidelines for transporting pets, but does not provide explicit claims or measurements related to baggage or weight limits.\n\nTherefore, the output will be empty.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,392 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,393 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,393 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,393 httpcore.http11 DEBUG send_request_body.complete -13:52:01,393 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,423 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'484'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992357'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'45ms'), (b'x-request-id', b'req_cf2f03ce987dd78a52a21e27f1c0d629'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07e5d7c7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,424 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,424 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,424 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,424 httpcore.http11 DEBUG response_closed.started -13:52:01,425 httpcore.http11 DEBUG response_closed.complete -13:52:01,425 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,425 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.6720000000204891. input_tokens=19, output_tokens=12 -13:52:01,429 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\nOutput:'}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,430 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,430 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,430 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,430 httpcore.http11 DEBUG send_request_body.complete -13:52:01,430 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,496 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'385'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9987031'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'77ms'), (b'x-request-id', b'req_3ba71645e0a0ebdc8c6c0f4eab244c87'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07f4942c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,496 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,497 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,497 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,497 httpcore.http11 DEBUG response_closed.started -13:52:01,497 httpcore.http11 DEBUG response_closed.complete -13:52:01,497 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,497 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5939999999827705. input_tokens=19, output_tokens=9 -13:52:01,500 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,501 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,501 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,501 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,501 httpcore.http11 DEBUG send_request_body.complete -13:52:01,502 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,557 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1095'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9982'), (b'x-ratelimit-remaining-tokens', b'9885278'), (b'x-ratelimit-reset-requests', b'106ms'), (b'x-ratelimit-reset-tokens', b'688ms'), (b'x-request-id', b'req_7ae8abed8eeb807cd60e4d4d6e410443'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075da11c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,557 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,557 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,559 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,559 httpcore.http11 DEBUG response_closed.started -13:52:01,559 httpcore.http11 DEBUG response_closed.complete -13:52:01,559 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,559 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 2.2660000000032596. input_tokens=1614, output_tokens=66 -13:52:01,562 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\nOutput:'}, {'role': 'assistant', 'content': "The provided text does not contain any specific named entities that match the entity specification of 'organization', 'person', 'geo', or 'event'. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions that can be extracted from the text. \n\nTherefore, the output will be empty.\n\n<|COMPLETE|>"}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,563 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,563 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,563 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,563 httpcore.http11 DEBUG send_request_body.complete -13:52:01,563 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,640 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'228'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998743'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_ae6c8b85fd71e89abe278ad2ff62831c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0816e38c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,640 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,640 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,640 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,640 httpcore.http11 DEBUG response_closed.started -13:52:01,641 httpcore.http11 DEBUG response_closed.complete -13:52:01,641 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,641 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.40700000000651926. input_tokens=30, output_tokens=2 -13:52:01,644 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,645 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,645 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,645 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,645 httpcore.http11 DEBUG send_request_body.complete -13:52:01,645 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,684 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'1443'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9972532'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'164ms'), (b'x-request-id', b'req_093a9316b144cf978aa44bf8eeacb5ac'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07a096fc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,685 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,685 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,685 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,685 httpcore.http11 DEBUG response_closed.started -13:52:01,685 httpcore.http11 DEBUG response_closed.complete -13:52:01,685 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,686 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 1.625. input_tokens=1616, output_tokens=92 -13:52:01,689 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n\u200b\u200bDo not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,690 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,690 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,690 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,691 httpcore.http11 DEBUG send_request_body.complete -13:52:01,691 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,711 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'346'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994732'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'31ms'), (b'x-request-id', b'req_b7dfe262b74cc2f51b91f9f164acee17'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0810f3dc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,712 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,712 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,712 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,712 httpcore.http11 DEBUG response_closed.started -13:52:01,712 httpcore.http11 DEBUG response_closed.complete -13:52:01,712 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,712 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5160000000032596. input_tokens=19, output_tokens=5 -13:52:01,715 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger�s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,716 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,716 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,716 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,716 httpcore.http11 DEBUG send_request_body.complete -13:52:01,716 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:01,859 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'243'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998355'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'9ms'), (b'x-request-id', b'req_bd94dee88505a7d25b0e2370e3206a8a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0828ba07da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:01,859 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:01,859 httpcore.http11 DEBUG receive_response_body.started request= -13:52:01,859 httpcore.http11 DEBUG receive_response_body.complete -13:52:01,859 httpcore.http11 DEBUG response_closed.started -13:52:01,859 httpcore.http11 DEBUG response_closed.complete -13:52:01,859 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:01,860 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4369999999762513. input_tokens=30, output_tokens=2 -13:52:01,862 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\nOutput:"}, {'role': 'assistant', 'content': 'There are no named entities that match the specified entity types (organization, person, geo, event) in the provided text. Therefore, there are no claims to extract based on the given claim description.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:01,863 httpcore.http11 DEBUG send_request_headers.started request= -13:52:01,863 httpcore.http11 DEBUG send_request_headers.complete -13:52:01,863 httpcore.http11 DEBUG send_request_body.started request= -13:52:01,864 httpcore.http11 DEBUG send_request_body.complete -13:52:01,864 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:02,11 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'334'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994718'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'31ms'), (b'x-request-id', b'req_2d501aabf49004ad7323a7cf541984e1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c082fe83c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:02,11 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:02,11 httpcore.http11 DEBUG receive_response_body.started request= -13:52:02,11 httpcore.http11 DEBUG receive_response_body.complete -13:52:02,11 httpcore.http11 DEBUG response_closed.started -13:52:02,11 httpcore.http11 DEBUG response_closed.complete -13:52:02,12 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:02,12 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.5. input_tokens=19, output_tokens=9 -13:52:02,16 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**Output:**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:02,16 httpcore.http11 DEBUG send_request_headers.started request= -13:52:02,17 httpcore.http11 DEBUG send_request_headers.complete -13:52:02,17 httpcore.http11 DEBUG send_request_body.started request= -13:52:02,17 httpcore.http11 DEBUG send_request_body.complete -13:52:02,17 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:02,318 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'497'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994413'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'33ms'), (b'x-request-id', b'req_4b40283040667f74800d461ebad4dadd'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c083e9d7c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:02,319 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:02,319 httpcore.http11 DEBUG receive_response_body.started request= -13:52:02,319 httpcore.http11 DEBUG receive_response_body.complete -13:52:02,319 httpcore.http11 DEBUG response_closed.started -13:52:02,319 httpcore.http11 DEBUG response_closed.complete -13:52:02,319 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:02,320 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.6709999999729916. input_tokens=19, output_tokens=12 -13:52:02,323 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n\u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions that can be extracted from the text. \n\nTherefore, the output is empty.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:02,323 httpcore.http11 DEBUG send_request_headers.started request= -13:52:02,324 httpcore.http11 DEBUG send_request_headers.complete -13:52:02,324 httpcore.http11 DEBUG send_request_body.started request= -13:52:02,324 httpcore.http11 DEBUG send_request_body.complete -13:52:02,324 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:02,392 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'492'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9989440'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'63ms'), (b'x-request-id', b'req_0006c3d9d66210887cf34fe5dd718d10'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0842fcbc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:02,392 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:02,392 httpcore.http11 DEBUG receive_response_body.started request= -13:52:02,392 httpcore.http11 DEBUG receive_response_body.complete -13:52:02,393 httpcore.http11 DEBUG response_closed.started -13:52:02,393 httpcore.http11 DEBUG response_closed.complete -13:52:02,393 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:02,393 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 0.7040000000270084. input_tokens=19, output_tokens=12 -13:52:02,397 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:02,398 httpcore.http11 DEBUG send_request_headers.started request= -13:52:02,398 httpcore.http11 DEBUG send_request_headers.complete -13:52:02,398 httpcore.http11 DEBUG send_request_body.started request= -13:52:02,398 httpcore.http11 DEBUG send_request_body.complete -13:52:02,398 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:02,420 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'234'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998422'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'9ms'), (b'x-request-id', b'req_bd1aa3f26a5ea9817d21498bcd8cfd14'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0863a8dc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:02,420 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:02,421 httpcore.http11 DEBUG receive_response_body.started request= -13:52:02,421 httpcore.http11 DEBUG receive_response_body.complete -13:52:02,421 httpcore.http11 DEBUG response_closed.started -13:52:02,421 httpcore.http11 DEBUG response_closed.complete -13:52:02,421 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:02,421 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4220000000204891. input_tokens=30, output_tokens=2 -13:52:02,425 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. \nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:02,426 httpcore.http11 DEBUG send_request_headers.started request= -13:52:02,426 httpcore.http11 DEBUG send_request_headers.complete -13:52:02,426 httpcore.http11 DEBUG send_request_body.started request= -13:52:02,426 httpcore.http11 DEBUG send_request_body.complete -13:52:02,426 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:02,814 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'243'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998671'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_14d58ae5dc1c2bcd63626c4fcb3a8a02'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0889de1c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:02,814 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:02,814 httpcore.http11 DEBUG receive_response_body.started request= -13:52:02,814 httpcore.http11 DEBUG receive_response_body.complete -13:52:02,815 httpcore.http11 DEBUG response_closed.started -13:52:02,815 httpcore.http11 DEBUG response_closed.complete -13:52:02,815 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:02,815 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.42099999997299165. input_tokens=30, output_tokens=2 -13:52:02,819 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate\nOutput:'}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:02,820 httpcore.http11 DEBUG send_request_headers.started request= -13:52:02,820 httpcore.http11 DEBUG send_request_headers.complete -13:52:02,820 httpcore.http11 DEBUG send_request_body.started request= -13:52:02,820 httpcore.http11 DEBUG send_request_body.complete -13:52:02,820 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:02,825 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'225'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998644'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_bf205d5192b224bbccb867a3ea5db171'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c088ce18c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:02,825 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:02,825 httpcore.http11 DEBUG receive_response_body.started request= -13:52:02,825 httpcore.http11 DEBUG receive_response_body.complete -13:52:02,825 httpcore.http11 DEBUG response_closed.started -13:52:02,825 httpcore.http11 DEBUG response_closed.complete -13:52:02,825 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:02,826 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4059999999590218. input_tokens=30, output_tokens=2 -13:52:02,829 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**Output:**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:02,830 httpcore.http11 DEBUG send_request_headers.started request= -13:52:02,830 httpcore.http11 DEBUG send_request_headers.complete -13:52:02,830 httpcore.http11 DEBUG send_request_body.started request= -13:52:02,830 httpcore.http11 DEBUG send_request_body.complete -13:52:02,830 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:03,227 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'227'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9996670'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'19ms'), (b'x-request-id', b'req_553effe72cc650c154b261d60c1435dd'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c08b4a03c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:03,227 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:03,227 httpcore.http11 DEBUG receive_response_body.started request= -13:52:03,227 httpcore.http11 DEBUG receive_response_body.complete -13:52:03,228 httpcore.http11 DEBUG response_closed.started -13:52:03,228 httpcore.http11 DEBUG response_closed.complete -13:52:03,228 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:03,228 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.39100000000325963. input_tokens=30, output_tokens=2 -13:52:03,231 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\nOutput:"}, {'role': 'assistant', 'content': 'There are no specific named entities or claims related to baggage measurements, weight limits, and restrictions from airline documentation in the provided text. The text primarily discusses general information about transporting sporting equipment without mentioning specific organizations, persons, geographical locations, or events that would fit the entity specification.\n\nTherefore, the output is:\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:03,232 httpcore.http11 DEBUG send_request_headers.started request= -13:52:03,232 httpcore.http11 DEBUG send_request_headers.complete -13:52:03,232 httpcore.http11 DEBUG send_request_body.started request= -13:52:03,232 httpcore.http11 DEBUG send_request_body.complete -13:52:03,232 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:03,242 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'250'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998081'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'11ms'), (b'x-request-id', b'req_1cfa99b9f4e7ed9b52a544463e3f0e42'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c08b39eec22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:03,242 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:03,242 httpcore.http11 DEBUG receive_response_body.started request= -13:52:03,242 httpcore.http11 DEBUG receive_response_body.complete -13:52:03,243 httpcore.http11 DEBUG response_closed.started -13:52:03,243 httpcore.http11 DEBUG response_closed.complete -13:52:03,243 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:03,243 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4220000000204891. input_tokens=30, output_tokens=2 -13:52:03,246 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries� terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.� Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\nOutput:"}, {'role': 'assistant', 'content': 'Based on the provided text, entity specification, and claim description, the analysis yields the following claims:\n\n1. No specific organizations, persons, geographical entities, or events were identified in the text that match the entity specification.\n2. The text primarily discusses regulations regarding lithium batteries and does not provide any claims related to organizations, persons, or events.\n\nAs a result, there are no claims to extract from the provided text.\n\nOutput: \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:03,247 httpcore.http11 DEBUG send_request_headers.started request= -13:52:03,247 httpcore.http11 DEBUG send_request_headers.complete -13:52:03,247 httpcore.http11 DEBUG send_request_body.started request= -13:52:03,247 httpcore.http11 DEBUG send_request_body.complete -13:52:03,247 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:04,159 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'3960'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9989478'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'63ms'), (b'x-request-id', b'req_14f1a4c5eb671e3d1afd3c79c5099276'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c079ace97d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:04,159 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:04,159 httpcore.http11 DEBUG receive_response_body.started request= -13:52:04,159 httpcore.http11 DEBUG receive_response_body.complete -13:52:04,159 httpcore.http11 DEBUG response_closed.started -13:52:04,159 httpcore.http11 DEBUG response_closed.complete -13:52:04,160 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:04,160 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 4.1560000000172295. input_tokens=1511, output_tokens=170 -13:52:04,164 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {'role': 'assistant', 'content': '<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:04,165 httpcore.http11 DEBUG send_request_headers.started request= -13:52:04,165 httpcore.http11 DEBUG send_request_headers.complete -13:52:04,165 httpcore.http11 DEBUG send_request_body.started request= -13:52:04,165 httpcore.http11 DEBUG send_request_body.complete -13:52:04,165 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:04,310 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'4742'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9990'), (b'x-ratelimit-remaining-tokens', b'9944310'), (b'x-ratelimit-reset-requests', b'55ms'), (b'x-ratelimit-reset-tokens', b'334ms'), (b'x-request-id', b'req_55332e4d9d5f5f4fd8217bb1ee571c11'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075da10c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:04,311 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:04,311 httpcore.http11 DEBUG receive_response_body.started request= -13:52:04,311 httpcore.http11 DEBUG receive_response_body.complete -13:52:04,311 httpcore.http11 DEBUG response_closed.started -13:52:04,311 httpcore.http11 DEBUG response_closed.complete -13:52:04,311 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:04,312 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 5.061999999976251. input_tokens=1616, output_tokens=238 -13:52:04,316 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:04,317 httpcore.http11 DEBUG send_request_headers.started request= -13:52:04,317 httpcore.http11 DEBUG send_request_headers.complete -13:52:04,317 httpcore.http11 DEBUG send_request_body.started request= -13:52:04,317 httpcore.http11 DEBUG send_request_body.complete -13:52:04,317 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:04,370 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'2835'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994468'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'33ms'), (b'x-request-id', b'req_f65f27f33eba251f015598d1570eac78'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0821a987d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:04,371 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:04,371 httpcore.http11 DEBUG receive_response_body.started request= -13:52:04,371 httpcore.http11 DEBUG receive_response_body.complete -13:52:04,371 httpcore.http11 DEBUG response_closed.started -13:52:04,371 httpcore.http11 DEBUG response_closed.complete -13:52:04,372 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:04,372 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 3.0160000000032596. input_tokens=19, output_tokens=175 -13:52:04,376 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:04,377 httpcore.http11 DEBUG send_request_headers.started request= -13:52:04,377 httpcore.http11 DEBUG send_request_headers.complete -13:52:04,377 httpcore.http11 DEBUG send_request_body.started request= -13:52:04,378 httpcore.http11 DEBUG send_request_body.complete -13:52:04,378 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:04,649 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'295'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998692'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_942f1ba905148e5fe41368228d77522d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c093a9717d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:04,649 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:04,649 httpcore.http11 DEBUG receive_response_body.started request= -13:52:04,650 httpcore.http11 DEBUG receive_response_body.complete -13:52:04,650 httpcore.http11 DEBUG response_closed.started -13:52:04,650 httpcore.http11 DEBUG response_closed.complete -13:52:04,650 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:04,650 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.48499999998603016. input_tokens=30, output_tokens=2 -13:52:04,654 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n\u200b\u200bDo not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:04,655 httpcore.http11 DEBUG send_request_headers.started request= -13:52:04,655 httpcore.http11 DEBUG send_request_headers.complete -13:52:04,655 httpcore.http11 DEBUG send_request_body.started request= -13:52:04,655 httpcore.http11 DEBUG send_request_body.complete -13:52:04,656 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:04,725 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'233'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998675'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_c0baec401c6bf0a09ef89960b9c9fba3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0949c8dc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:04,725 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:04,725 httpcore.http11 DEBUG receive_response_body.started request= -13:52:04,726 httpcore.http11 DEBUG receive_response_body.complete -13:52:04,726 httpcore.http11 DEBUG response_closed.started -13:52:04,726 httpcore.http11 DEBUG response_closed.complete -13:52:04,726 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:04,726 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.40700000000651926. input_tokens=30, output_tokens=2 -13:52:04,729 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor�s note.\u200b\n\u200bPassengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\nOutput:"}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.)\n##\n(ISRAEL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>It is important to know what you can take with you aboard the aircraft when departing from Israel.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:04,730 httpcore.http11 DEBUG send_request_headers.started request= -13:52:04,730 httpcore.http11 DEBUG send_request_headers.complete -13:52:04,730 httpcore.http11 DEBUG send_request_body.started request= -13:52:04,730 httpcore.http11 DEBUG send_request_body.complete -13:52:04,730 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:04,774 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'230'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998366'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'9ms'), (b'x-request-id', b'req_0f1c15d270c27d888cc7c580fd9e52a4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c094f99b7d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:04,775 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:04,775 httpcore.http11 DEBUG receive_response_body.started request= -13:52:04,775 httpcore.http11 DEBUG receive_response_body.complete -13:52:04,775 httpcore.http11 DEBUG response_closed.started -13:52:04,775 httpcore.http11 DEBUG response_closed.complete -13:52:04,775 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:04,776 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.39100000000325963. input_tokens=30, output_tokens=2 -13:52:04,778 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t\u200bEurope and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost\nOutput:"}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:04,779 httpcore.http11 DEBUG send_request_headers.started request= -13:52:04,779 httpcore.http11 DEBUG send_request_headers.complete -13:52:04,779 httpcore.http11 DEBUG send_request_body.started request= -13:52:04,780 httpcore.http11 DEBUG send_request_body.complete -13:52:04,780 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:05,114 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'288'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998100'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'11ms'), (b'x-request-id', b'req_88818bff6cbf232f88cfaa00960d9623'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c096be587d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:05,114 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:05,115 httpcore.http11 DEBUG receive_response_body.started request= -13:52:05,115 httpcore.http11 DEBUG receive_response_body.complete -13:52:05,115 httpcore.http11 DEBUG response_closed.started -13:52:05,115 httpcore.http11 DEBUG response_closed.complete -13:52:05,115 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:05,116 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.46799999999348074. input_tokens=30, output_tokens=2 -13:52:05,119 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**Output:**\n\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations for EL AL flights, and specific procedures must be followed to transport them.<|>For your convenience, you can view the Summary of Regulations.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Traveling with hazardous materials on EL AL flights requires prior contact with the service center and filling out a Declaration Form.<|>Are you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight.)\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:05,120 httpcore.http11 DEBUG send_request_headers.started request= -13:52:05,120 httpcore.http11 DEBUG send_request_headers.complete -13:52:05,121 httpcore.http11 DEBUG send_request_body.started request= -13:52:05,121 httpcore.http11 DEBUG send_request_body.complete -13:52:05,121 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:05,282 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'4258'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9990481'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'57ms'), (b'x-request-id', b'req_2c2d97893968c855a7df44ac73c2a928'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07ee8bcc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:05,282 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:05,282 httpcore.http11 DEBUG receive_response_body.started request= -13:52:05,283 httpcore.http11 DEBUG receive_response_body.complete -13:52:05,283 httpcore.http11 DEBUG response_closed.started -13:52:05,283 httpcore.http11 DEBUG response_closed.complete -13:52:05,283 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:05,284 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 4.437000000034459. input_tokens=19, output_tokens=329 -13:52:05,289 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers. EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat. The dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public. Transporting the dog violates safety and security regulations. The passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above. To the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage. \n\nOutput: \n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat, causes a disturbance, or violates safety and security regulations.<|>EL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs: The dog constitutes a direct threat. The dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public. Transporting the dog violates safety and security regulations.) \n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:05,290 httpcore.http11 DEBUG send_request_headers.started request= -13:52:05,290 httpcore.http11 DEBUG send_request_headers.complete -13:52:05,290 httpcore.http11 DEBUG send_request_body.started request= -13:52:05,290 httpcore.http11 DEBUG send_request_body.complete -13:52:05,290 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:05,565 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'259'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998265'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'10ms'), (b'x-request-id', b'req_c8d3ba89ad6b1c54ed160f9bcd950e98'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0999b527d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:05,565 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:05,565 httpcore.http11 DEBUG receive_response_body.started request= -13:52:05,565 httpcore.http11 DEBUG receive_response_body.complete -13:52:05,565 httpcore.http11 DEBUG response_closed.started -13:52:05,566 httpcore.http11 DEBUG response_closed.complete -13:52:05,566 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:05,566 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4529999999795109. input_tokens=30, output_tokens=2 -13:52:05,652 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'3915'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994158'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_87d381d30c658baf59770979710c7308'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0835da7c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:05,652 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:05,652 httpcore.http11 DEBUG receive_response_body.started request= -13:52:05,652 httpcore.http11 DEBUG receive_response_body.complete -13:52:05,653 httpcore.http11 DEBUG response_closed.started -13:52:05,653 httpcore.http11 DEBUG response_closed.complete -13:52:05,653 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:05,653 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 4.0939999999827705. input_tokens=19, output_tokens=303 -13:52:05,659 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not\nOutput:'}, {'role': 'assistant', 'content': "The provided text does not contain any specific named entities that match the entity specification of 'organization', 'person', 'geo', or 'event'. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions that can be extracted from the text. \n\nTherefore, the output will be empty.\n\n<|COMPLETE|>"}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - Organization: EL AL\n - Event: Baggage Claim\n - Geo: Airport\n\n2. **Claims**:\n - Claim regarding delayed baggage reporting.\n - Claim regarding damaged baggage reporting.\n\nHere is the output based on the identified entities and claims:\n\n(EL AL<|>NONE<|>BAGGAGE HANDLING<|>TRUE<|>NONE<|>NONE<|>Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.<|>Delayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.)\n##\n(EL AL<|>NONE<|>BAGGAGE HANDLING<|>TRUE<|>NONE<|>NONE<|>If you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.<|>If you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:05,659 httpcore.http11 DEBUG send_request_headers.started request= -13:52:05,660 httpcore.http11 DEBUG send_request_headers.complete -13:52:05,660 httpcore.http11 DEBUG send_request_body.started request= -13:52:05,660 httpcore.http11 DEBUG send_request_body.complete -13:52:05,660 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:05,711 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'257'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998187'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'10ms'), (b'x-request-id', b'req_cc081db014f7166d4ddcbc3f28968be8'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c09aaea7c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:05,711 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:05,711 httpcore.http11 DEBUG receive_response_body.started request= -13:52:05,711 httpcore.http11 DEBUG receive_response_body.complete -13:52:05,711 httpcore.http11 DEBUG response_closed.started -13:52:05,712 httpcore.http11 DEBUG response_closed.complete -13:52:05,712 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:05,712 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.42199999996228144. input_tokens=30, output_tokens=2 -13:52:06,138 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:06 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'304'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997796'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'13ms'), (b'x-request-id', b'req_90f653c8608c9b4f2fecbba6cc0e4c02'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c09cff757d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:06,138 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:06,138 httpcore.http11 DEBUG receive_response_body.started request= -13:52:06,139 httpcore.http11 DEBUG receive_response_body.complete -13:52:06,139 httpcore.http11 DEBUG response_closed.started -13:52:06,139 httpcore.http11 DEBUG response_closed.complete -13:52:06,139 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:06,139 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.48499999998603016. input_tokens=30, output_tokens=2 -13:52:07,453 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7231'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9976364'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'141ms'), (b'x-request-id', b'req_af4630472d54deac2d8e0957aacb7f2f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c079d82d7d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:07,453 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:07,453 httpcore.http11 DEBUG receive_response_body.started request= -13:52:07,454 httpcore.http11 DEBUG receive_response_body.complete -13:52:07,454 httpcore.http11 DEBUG response_closed.started -13:52:07,454 httpcore.http11 DEBUG response_closed.complete -13:52:07,454 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:07,455 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 7.421999999962281. input_tokens=1615, output_tokens=376 -13:52:07,459 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL�s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4�.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket. The maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.<|>Passengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The maximum size permitted for an infant�s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.<|>The maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to change the excess baggage rates from time to time.<|>EL AL reserves the right to change the excess baggage rates from time to time.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:07,460 httpcore.http11 DEBUG send_request_headers.started request= -13:52:07,460 httpcore.http11 DEBUG send_request_headers.complete -13:52:07,460 httpcore.http11 DEBUG send_request_body.started request= -13:52:07,460 httpcore.http11 DEBUG send_request_body.complete -13:52:07,460 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:07,461 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7873'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9981'), (b'x-ratelimit-remaining-tokens', b'9875626'), (b'x-ratelimit-reset-requests', b'108ms'), (b'x-ratelimit-reset-tokens', b'746ms'), (b'x-request-id', b'req_989f87bc9486386f0a607aa2be03cfad'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c075ddadc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:07,463 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:07,463 httpcore.http11 DEBUG receive_response_body.started request= -13:52:07,463 httpcore.http11 DEBUG receive_response_body.complete -13:52:07,463 httpcore.http11 DEBUG response_closed.started -13:52:07,463 httpcore.http11 DEBUG response_closed.complete -13:52:07,463 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:07,464 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "Process" with 0 retries took 8.21899999998277. input_tokens=1575, output_tokens=401 -13:52:07,468 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {'role': 'assistant', 'content': '## \n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.<|>As personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In certain instances (e.g. large animals), animals must be transported as checked baggage.<|>As checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).<|>As registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 4000, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:07,469 httpcore.http11 DEBUG send_request_headers.started request= -13:52:07,469 httpcore.http11 DEBUG send_request_headers.complete -13:52:07,469 httpcore.http11 DEBUG send_request_body.started request= -13:52:07,469 httpcore.http11 DEBUG send_request_body.complete -13:52:07,469 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:08,367 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7295'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9987474'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'75ms'), (b'x-request-id', b'req_69ca004fea9eaf747649b81f0c44a3cf'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07f3c66c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:08,368 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:08,368 httpcore.http11 DEBUG receive_response_body.started request= -13:52:08,368 httpcore.http11 DEBUG receive_response_body.complete -13:52:08,368 httpcore.http11 DEBUG response_closed.started -13:52:08,368 httpcore.http11 DEBUG response_closed.complete -13:52:08,368 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:08,369 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 7.467999999993481. input_tokens=19, output_tokens=389 -13:52:08,374 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country�s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "**Output:**\n\n(EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific regulations regarding the transportation of animals, including weight limits and restrictions based on the animal's weight and the mode of transport.<|>Transporting a pet from Israel abroad If you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance.)\n\n(ANIMAL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Animals weighing up to 9 kg can usually be transported in the aircraft cabin, while those weighing between 9 kg and 100 kg are typically transported in the aircraft hold.<|>The main factor that influences the mode of transport is the animal�s weight: Animals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.)\n\n(ANIMAL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Animals weighing more than 100 kg must be transported as registered cargo in the aircraft hold.<|>Animals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.)\n\n(DESTINATION COUNTRY<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines for transporting animals.<|>Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines.)\n\n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:08,375 httpcore.http11 DEBUG send_request_headers.started request= -13:52:08,376 httpcore.http11 DEBUG send_request_headers.complete -13:52:08,376 httpcore.http11 DEBUG send_request_body.started request= -13:52:08,376 httpcore.http11 DEBUG send_request_body.complete -13:52:08,376 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:08,420 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7895'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9986187'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'82ms'), (b'x-request-id', b'req_8d616b79adc7985f7fe91e7e4bcdf95d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07bdf93c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:08,420 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:08,421 httpcore.http11 DEBUG receive_response_body.started request= -13:52:08,421 httpcore.http11 DEBUG receive_response_body.complete -13:52:08,421 httpcore.http11 DEBUG response_closed.started -13:52:08,421 httpcore.http11 DEBUG response_closed.complete -13:52:08,421 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:08,422 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.078000000037719. input_tokens=19, output_tokens=364 -13:52:08,427 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Liquids in Carry-On Bags \nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check. \n\nLiquids in Carry-On Bags \nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines. \n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time. \n\nOutput: \n\n(ISRAEL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Flights departing from Israel have specific conditions regarding carrying liquids in carry-on bags.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.) \n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:08,428 httpcore.http11 DEBUG send_request_headers.started request= -13:52:08,428 httpcore.http11 DEBUG send_request_headers.complete -13:52:08,428 httpcore.http11 DEBUG send_request_body.started request= -13:52:08,428 httpcore.http11 DEBUG send_request_body.complete -13:52:08,428 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:08,631 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8233'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9990718'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'55ms'), (b'x-request-id', b'req_adbbab1fd269fbec37e800becbc94517'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07aff8ec222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:08,631 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:08,631 httpcore.http11 DEBUG receive_response_body.started request= -13:52:08,632 httpcore.http11 DEBUG receive_response_body.complete -13:52:08,632 httpcore.http11 DEBUG response_closed.started -13:52:08,632 httpcore.http11 DEBUG response_closed.complete -13:52:08,632 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:08,633 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 8.40600000001723. input_tokens=19, output_tokens=598 -13:52:08,638 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "Entity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Information on batteries and dangerous substances \nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all. \n\nSubstances and articles forbidden on the aircraft: \nCompressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. \nCorrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. \nExplosives other than light ammunition. \nFlammable liquids and solids. \nRadioactive materials. \nBriefcases with installed alarm devices. \nOxidizing materials (hydrogen peroxide, bleaching powders, etc.). \nPoisons and infectious substances, such as insecticides, herbicides, and live virus materials. \nItems such as high-strength magnetic materials, materials that can harm people or the environment. \n\nOutput: \n\n(NONE<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Certain articles and substances are classified as dangerous and may require advance preparation or may not be allowed on flights.<|>Whether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.) \n(NONE<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Substances and articles forbidden on the aircraft include compressed gases, corrosives, explosives, flammable liquids and solids, radioactive materials, briefcases with installed alarm devices, oxidizing materials, poisons, and infectious substances.<|>Substances and articles forbidden on the aircraft: Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders. Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury. Explosives other than light ammunition. Flammable liquids and solids. Radioactive materials. Briefcases with installed alarm devices. Oxidizing materials (hydrogen peroxide, bleaching powders, etc.). Poisons and infectious substances, such as insecticides, herbicides, and live virus materials. Items such as high-strength magnetic materials, materials that can harm people or the environment.) \n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:08,639 httpcore.http11 DEBUG send_request_headers.started request= -13:52:08,639 httpcore.http11 DEBUG send_request_headers.complete -13:52:08,639 httpcore.http11 DEBUG send_request_body.started request= -13:52:08,639 httpcore.http11 DEBUG send_request_body.complete -13:52:08,639 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:08,806 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'268'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997677'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'13ms'), (b'x-request-id', b'req_73bb8aba6e8a307e76dd70c4d57d8133'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0adff28c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:08,807 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:08,807 httpcore.http11 DEBUG receive_response_body.started request= -13:52:08,807 httpcore.http11 DEBUG receive_response_body.complete -13:52:08,807 httpcore.http11 DEBUG response_closed.started -13:52:08,807 httpcore.http11 DEBUG response_closed.complete -13:52:08,807 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:08,808 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4380000000237487. input_tokens=30, output_tokens=2 -13:52:08,846 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'231'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9998036'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'11ms'), (b'x-request-id', b'req_058b0094bede8253900ea398c3392814'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0ae4f92c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:08,846 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:08,847 httpcore.http11 DEBUG receive_response_body.started request= -13:52:08,847 httpcore.http11 DEBUG receive_response_body.complete -13:52:08,847 httpcore.http11 DEBUG response_closed.started -13:52:08,847 httpcore.http11 DEBUG response_closed.complete -13:52:08,847 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:08,848 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.42199999996228144. input_tokens=30, output_tokens=2 -13:52:09,389 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'577'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997796'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'13ms'), (b'x-request-id', b'req_31af91c8924694b40c81cbfdfd433c7d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0af9b657d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:09,389 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:09,389 httpcore.http11 DEBUG receive_response_body.started request= -13:52:09,389 httpcore.http11 DEBUG receive_response_body.complete -13:52:09,390 httpcore.http11 DEBUG response_closed.started -13:52:09,390 httpcore.http11 DEBUG response_closed.complete -13:52:09,390 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:09,391 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.7660000000032596. input_tokens=30, output_tokens=2 -13:52:10,87 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:10 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9179'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9990089'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'59ms'), (b'x-request-id', b'req_ef00ab2a456ef4a5d881a26ba3638bfc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07e280aed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:10,88 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:10,88 httpcore.http11 DEBUG receive_response_body.started request= -13:52:10,88 httpcore.http11 DEBUG receive_response_body.complete -13:52:10,88 httpcore.http11 DEBUG response_closed.started -13:52:10,88 httpcore.http11 DEBUG response_closed.complete -13:52:10,88 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:10,89 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 9.35899999999674. input_tokens=19, output_tokens=471 -13:52:10,95 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits,\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '**Output:**\n\n(MINISTRY OF AGRICULTURE<|>NONE<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n\n(EL AL<|>NONE<|>TRANSPORTATION POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.<|>Please note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.<|>* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.<|>* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n\n(EL AL<|>NONE<|>TRANSPORTATION POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.)\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:10,96 httpcore.http11 DEBUG send_request_headers.started request= -13:52:10,96 httpcore.http11 DEBUG send_request_headers.complete -13:52:10,96 httpcore.http11 DEBUG send_request_body.started request= -13:52:10,96 httpcore.http11 DEBUG send_request_body.complete -13:52:10,96 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:10,781 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10346'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9978040'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'131ms'), (b'x-request-id', b'req_d810f8bcf732a302fce602177255f395'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07b4a587d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:10,782 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:10,782 httpcore.http11 DEBUG receive_response_body.started request= -13:52:10,782 httpcore.http11 DEBUG receive_response_body.complete -13:52:10,782 httpcore.http11 DEBUG response_closed.started -13:52:10,782 httpcore.http11 DEBUG response_closed.complete -13:52:10,782 httpcore.connection DEBUG close.started -13:52:10,783 httpcore.connection DEBUG close.complete -13:52:10,783 httpcore.connection DEBUG close.started -13:52:10,783 httpcore.connection DEBUG close.complete -13:52:10,783 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:10,784 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 10.51500000001397. input_tokens=19, output_tokens=737 -13:52:10,789 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\nOutput:"}, {'role': 'assistant', 'content': '**##**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "Entity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment? Are you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: - Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. - Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg. Note: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website). Additional Sports Equipment If you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>El Al offers complimentary transport of sports equipment in place of your standard checked baggage under specific conditions regarding dimensions and weight limits.<|>We offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions: - Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg. - Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.<|>If your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division.<|>If your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).)\n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:10,790 httpcore.http11 DEBUG send_request_headers.started request= -13:52:10,790 httpcore.http11 DEBUG send_request_headers.complete -13:52:10,790 httpcore.http11 DEBUG send_request_body.started request= -13:52:10,790 httpcore.http11 DEBUG send_request_body.complete -13:52:10,790 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:11,271 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'309'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997553'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'14ms'), (b'x-request-id', b'req_eff09876c9c3122d6ebef5448d35e63d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0bd0d3bc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:11,271 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:11,271 httpcore.http11 DEBUG receive_response_body.started request= -13:52:11,271 httpcore.http11 DEBUG receive_response_body.complete -13:52:11,271 httpcore.http11 DEBUG response_closed.started -13:52:11,271 httpcore.http11 DEBUG response_closed.complete -13:52:11,271 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:11,272 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.48499999998603016. input_tokens=30, output_tokens=2 -13:52:11,515 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10617'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994170'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'34ms'), (b'x-request-id', b'req_b1434eaa9820496ca09d7395dc8f86b7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07e0993c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:11,515 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:11,516 httpcore.http11 DEBUG receive_response_body.started request= -13:52:11,516 httpcore.http11 DEBUG receive_response_body.complete -13:52:11,516 httpcore.http11 DEBUG response_closed.started -13:52:11,516 httpcore.http11 DEBUG response_closed.complete -13:52:11,517 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:11,518 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 10.813000000023749. input_tokens=19, output_tokens=805 -13:52:11,523 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,\nOutput:"}, {'role': 'assistant', 'content': '**Output:**\n\n**NONE**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "**Output:**\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.<|>Important information: The maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Each carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.<|>Each carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.<|>Passengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Duty-free products purchased at the airport count towards the baggage allowance.<|>Duty-free products purchased at the airport count towards the baggage allowance.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Enforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.<|>Enforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>If no free space is available, carry-on bags will be checked to the plane's belly at no charge.<|>If no free space is available, carry-on bags will be checked to the plane's belly at no charge.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers may bring one personal bag on board, regardless of card type or travel class.<|>Passengers may bring one personal bag on board, regardless of card type or travel class.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Personal bag dimensions should not exceed 18x38x30 cm.<|>Personal bag dimensions should not exceed 18x38x30 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Unusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.<|>Unusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.)\n##\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Exceeding eligibility may incur fees.<|>Exceeding eligibility may incur fees.)\n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:11,523 httpcore.http11 DEBUG send_request_headers.started request= -13:52:11,524 httpcore.http11 DEBUG send_request_headers.complete -13:52:11,524 httpcore.http11 DEBUG send_request_body.started request= -13:52:11,524 httpcore.http11 DEBUG send_request_body.complete -13:52:11,524 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:11,638 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'324'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997659'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'14ms'), (b'x-request-id', b'req_85bfb9a58f5704b147186c083ab1cab4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0b8be9dc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:11,638 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:11,638 httpcore.http11 DEBUG receive_response_body.started request= -13:52:11,638 httpcore.http11 DEBUG receive_response_body.complete -13:52:11,638 httpcore.http11 DEBUG response_closed.started -13:52:11,639 httpcore.http11 DEBUG response_closed.complete -13:52:11,639 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:11,639 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 1.547000000020489. input_tokens=30, output_tokens=2 -13:52:11,953 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'255'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997425'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'15ms'), (b'x-request-id', b'req_c109fee20b8fbea0b95cd6ca404249ea'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0c1ac59c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:11,953 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:11,953 httpcore.http11 DEBUG receive_response_body.started request= -13:52:11,953 httpcore.http11 DEBUG receive_response_body.complete -13:52:11,953 httpcore.http11 DEBUG response_closed.started -13:52:11,954 httpcore.http11 DEBUG response_closed.complete -13:52:11,954 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:11,954 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4369999999762513. input_tokens=30, output_tokens=2 -13:52:12,402 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:12 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10833'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994062'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_620c702a8fe81922a7d94d82c0c2c4be'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c08249efc21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:12,403 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:12,403 httpcore.http11 DEBUG receive_response_body.started request= -13:52:12,403 httpcore.http11 DEBUG receive_response_body.complete -13:52:12,403 httpcore.http11 DEBUG response_closed.started -13:52:12,403 httpcore.http11 DEBUG response_closed.complete -13:52:12,403 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:12,404 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 11.01500000001397. input_tokens=19, output_tokens=744 -13:52:12,410 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the\nOutput:"}, {'role': 'assistant', 'content': 'Based on the provided text, there are no specific claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted. The text primarily discusses guidelines for transporting pets, but does not provide explicit claims or measurements related to baggage or weight limits.\n\nTherefore, the output will be empty.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL\n - State of Israel\n - CDC\n - Ministry of Health\n\n2. **Claims**:\n - (EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific guidelines for transporting pets as cargo, and without proper authorization, pets will not be accepted on flights.<|>If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.)\n - (STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY STATUS<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n - (CDC<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.<|>For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website.)\n - (MINISTRY OF HEALTH<|>NONE<|>AUTHORIZATION REQUIREMENTS<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel.<|>If you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance.)\n\nCombining these claims, the output is:\n\n(EL AL<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>EL AL has specific guidelines for transporting pets as cargo, and without proper authorization, pets will not be accepted on flights.<|>If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.)##\n(STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY STATUS<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)##\n(CDC<|>NONE<|>TRANSPORTATION REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.<|>For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website.)##\n(MINISTRY OF HEALTH<|>NONE<|>AUTHORIZATION REQUIREMENTS<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel.<|>If you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:12,410 httpcore.http11 DEBUG send_request_headers.started request= -13:52:12,411 httpcore.http11 DEBUG send_request_headers.complete -13:52:12,411 httpcore.http11 DEBUG send_request_body.started request= -13:52:12,411 httpcore.http11 DEBUG send_request_body.complete -13:52:12,411 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:12,873 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'275'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997302'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'16ms'), (b'x-request-id', b'req_de23094a8e59ef8965f8d41fadbcb72f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0c72bf2c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:12,873 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:12,873 httpcore.http11 DEBUG receive_response_body.started request= -13:52:12,873 httpcore.http11 DEBUG receive_response_body.complete -13:52:12,873 httpcore.http11 DEBUG response_closed.started -13:52:12,873 httpcore.http11 DEBUG response_closed.complete -13:52:12,874 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:12,874 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.46899999998277053. input_tokens=30, output_tokens=2 -13:52:13,24 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'5382'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9988643'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'68ms'), (b'x-request-id', b'req_474580b14841e0fdd8baf48c6d30b4d3'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0a84bc5c22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:13,25 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:13,25 httpcore.http11 DEBUG receive_response_body.started request= -13:52:13,25 httpcore.http11 DEBUG receive_response_body.complete -13:52:13,25 httpcore.http11 DEBUG response_closed.started -13:52:13,25 httpcore.http11 DEBUG response_closed.complete -13:52:13,26 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:13,26 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 5.547000000020489. input_tokens=19, output_tokens=359 -13:52:13,31 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\nOutput:"}, {'role': 'assistant', 'content': '## \n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.<|>EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.<|>As personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In certain instances (e.g. large animals), animals must be transported as checked baggage.<|>As checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage.)\n##\n(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).<|>As registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied).)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '## \n(MINISTRY OF AGRICULTURE<|>NONE<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.<|>The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.)\n##\n(MINISTRY OF AGRICULTURE<|>NONE<|>AUTHORIZATION PROCESS<|>TRUE<|>NONE<|>NONE<|>If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services.<|>If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services.)\n##\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.<|>* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.)\n##\n(EL AL<|>NONE<|>TRANSPORTATION RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.<|>* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:13,32 httpcore.http11 DEBUG send_request_headers.started request= -13:52:13,33 httpcore.http11 DEBUG send_request_headers.complete -13:52:13,33 httpcore.http11 DEBUG send_request_body.started request= -13:52:13,33 httpcore.http11 DEBUG send_request_body.complete -13:52:13,33 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:13,135 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'5502'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993836'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'36ms'), (b'x-request-id', b'req_e4db994e22b0b9197881e67f2d98258a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0a83d477d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:13,135 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:13,136 httpcore.http11 DEBUG receive_response_body.started request= -13:52:13,136 httpcore.http11 DEBUG receive_response_body.complete -13:52:13,136 httpcore.http11 DEBUG response_closed.started -13:52:13,136 httpcore.http11 DEBUG response_closed.complete -13:52:13,136 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:13,137 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 5.688000000023749. input_tokens=19, output_tokens=269 -13:52:13,142 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL�s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4�.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.\nOutput:"}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm.<|>Baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket. The maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division.<|>Passengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The maximum size permitted for an infant�s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all.<|>The maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>EL AL reserves the right to change the excess baggage rates from time to time.<|>EL AL reserves the right to change the excess baggage rates from time to time.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The luggage policy of a flight may vary when the scheduled aircraft has changed and/or on flights operated by other airlines.<|>The luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>For those flying from India, a government service tax will be collected for air travel for flights with the first point of departure originated in India.<|>For those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.)\n##\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Prices are displayed in US dollars, and at some airports, payment is only allowed in local currency according to the conversion rate on the date of payment.<|>Prices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:13,143 httpcore.http11 DEBUG send_request_headers.started request= -13:52:13,143 httpcore.http11 DEBUG send_request_headers.complete -13:52:13,143 httpcore.http11 DEBUG send_request_body.started request= -13:52:13,143 httpcore.http11 DEBUG send_request_body.complete -13:52:13,144 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:13,496 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'287'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997456'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'15ms'), (b'x-request-id', b'req_2b413e2ba8f3fbfd914f747e839e0ffa'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0cb0c26c22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:13,497 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:13,497 httpcore.http11 DEBUG receive_response_body.started request= -13:52:13,497 httpcore.http11 DEBUG receive_response_body.complete -13:52:13,497 httpcore.http11 DEBUG response_closed.started -13:52:13,498 httpcore.http11 DEBUG response_closed.complete -13:52:13,498 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:13,498 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.46899999998277053. input_tokens=30, output_tokens=2 -13:52:13,589 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:13 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'260'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997534'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'14ms'), (b'x-request-id', b'req_311175bda04d8fee0d5b7f6e196dbee5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0cbcc6e7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:13,589 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:13,589 httpcore.http11 DEBUG receive_response_body.started request= -13:52:13,589 httpcore.http11 DEBUG receive_response_body.complete -13:52:13,589 httpcore.http11 DEBUG response_closed.started -13:52:13,590 httpcore.http11 DEBUG response_closed.complete -13:52:13,590 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:13,590 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4369999999762513. input_tokens=30, output_tokens=2 -13:52:13,839 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13079'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994152'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_387701b150cca9105eed0322a92f2e72'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07d5c22c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:13,840 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:13,840 httpcore.http11 DEBUG receive_response_body.started request= -13:52:13,840 httpcore.http11 DEBUG receive_response_body.complete -13:52:13,840 httpcore.http11 DEBUG response_closed.started -13:52:13,840 httpcore.http11 DEBUG response_closed.complete -13:52:13,841 httpcore.connection DEBUG close.started -13:52:13,841 httpcore.connection DEBUG close.complete -13:52:13,841 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:13,842 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 13.25. input_tokens=19, output_tokens=970 -13:52:13,847 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile\nOutput:"}, {'role': 'assistant', 'content': '**##** \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "I apologize for the oversight. Let's extract the relevant entities and claims again.\n\nEntity specification: ['organization', 'person', 'geo', 'event'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page. Prices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment. Transporting snowboards and ski equipment? In addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width). If your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177). What does Ski and snowboards equipment include? Ski equipment includes one pair of skis, one pair of poles and one pair of ski boots. Snowboard equipment includes one snowboard and one pair of ski boots. Transporting bicycles? You can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in). Please note Motorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold. Transport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations: Remove the pedals. Dismantle the handlebar. Let out some air from the wheels and separate one wheel from the rest of the bicycle. Make sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid. Please note The information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines. It is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment. Please note that in accordance with transport conditions, EL AL does not bear responsibility for fragile.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Passengers are allowed to bring ski and snowboard equipment at no extra charge, provided it is packed into one checked bag that weighs up to 50 kg and does not exceed total measurements of 277 cm.<|>In addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).) \n## \n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Bicycles can be transported at no extra charge instead of regular checked baggage, provided they are packed into a checked bag and meet the weight and/or size dimensions of the permitted baggage allowance.<|>You can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).) \n## \n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>The maximum weight for checked baggage is 50 kg.<|>as long as it's packed into one checked bag that weighs up to 50 kg) \n## \n(EL AL<|>NONE<|>BAGGAGE DIMENSIONS<|>TRUE<|>NONE<|>NONE<|>The total measurements for checked baggage must not exceed 277 cm (length + height + width).<|>its total measurements do not exceed 277 cm (length + height + width).) \n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:13,849 httpcore.http11 DEBUG send_request_headers.started request= -13:52:13,849 httpcore.http11 DEBUG send_request_headers.complete -13:52:13,849 httpcore.http11 DEBUG send_request_body.started request= -13:52:13,849 httpcore.http11 DEBUG send_request_body.complete -13:52:13,849 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:14,409 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:14 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'397'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997013'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'17ms'), (b'x-request-id', b'req_d2c0731cdf24d80419b1e1dd94f1cdf6'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0d02b8ec22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:14,409 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:14,409 httpcore.http11 DEBUG receive_response_body.started request= -13:52:14,410 httpcore.http11 DEBUG receive_response_body.complete -13:52:14,410 httpcore.http11 DEBUG response_closed.started -13:52:14,410 httpcore.http11 DEBUG response_closed.complete -13:52:14,410 httpcore.connection DEBUG close.started -13:52:14,410 httpcore.connection DEBUG close.complete -13:52:14,410 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:14,411 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5620000000344589. input_tokens=30, output_tokens=2 -13:52:15,868 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10962'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994157'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_08153720ed3d9d5f9bcf8e0677baa600'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0972fddc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:15,868 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:15,868 httpcore.http11 DEBUG receive_response_body.started request= -13:52:15,869 httpcore.http11 DEBUG receive_response_body.complete -13:52:15,869 httpcore.http11 DEBUG response_closed.started -13:52:15,869 httpcore.http11 DEBUG response_closed.complete -13:52:15,869 httpcore.connection DEBUG close.started -13:52:15,869 httpcore.connection DEBUG close.complete -13:52:15,869 httpcore.connection DEBUG close.started -13:52:15,869 httpcore.connection DEBUG close.complete -13:52:15,869 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:15,870 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 11.14000000001397. input_tokens=19, output_tokens=610 -13:52:15,876 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor�s note.\u200b\n\u200bPassengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.\nOutput:"}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.<|>EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.)\n##\n(ISRAEL<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>It is important to know what you can take with you aboard the aircraft when departing from Israel.<|>For your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '(LIQUIDS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(AEROSOLS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(GELS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).<|>The volume of the container (Liquids, Aerosols, Gels) cannot exceed 100 ml (3.4 oz).)\n##\n(MEDICATIONS<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.)\n##\n(BABY FOOD<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.<|>Medications and special food products (such as baby food) do not have to be in the plastic bag.)\n##\n(SECURITY CHECKPOINT<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>These items must be presented at the security checkpoint, along with the corresponding doctor�s note.<|>These items must be presented at the security checkpoint, along with the corresponding doctor�s note.)\n##\n(UNITED STATES<|>NONE<|>BAGGAGE MEASUREMENTS AND RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>General information about carrying liquids in handbags to U.S.<|>General information about carrying liquids in handbags to U.S.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:15,877 httpcore.http11 DEBUG send_request_headers.started request= -13:52:15,877 httpcore.http11 DEBUG send_request_headers.complete -13:52:15,877 httpcore.http11 DEBUG send_request_body.started request= -13:52:15,877 httpcore.http11 DEBUG send_request_body.complete -13:52:15,877 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:16,94 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11146'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993979'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'36ms'), (b'x-request-id', b'req_ed9cff296c267fa07dbb6f4461c16bf2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0977cd27d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:16,94 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:16,94 httpcore.http11 DEBUG receive_response_body.started request= -13:52:16,94 httpcore.http11 DEBUG receive_response_body.complete -13:52:16,95 httpcore.http11 DEBUG response_closed.started -13:52:16,95 httpcore.http11 DEBUG response_closed.complete -13:52:16,95 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:16,96 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 11.327999999979511. input_tokens=19, output_tokens=565 -13:52:16,101 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t\u200bEurope and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost\nOutput:"}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': '(EL AL<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.<|>Transport costs as baggage: Europe and Middle East Animals weighing up to 9 kg with their cage $100 $150 Animals weighing between 9 and 50 kg with their cage $200 $250 Animals weighing between 50 and 100 kg with their cage $400 $450 Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.)\n##\n(BEN GURION AIRPORT<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>When the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall. When the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.<|>When the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.)\n##\n(VETERINARY SERVICES DEPARTMENT<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>In cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division.<|>In cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division.)\n##\n(CARGO DIVISION<|>NONE<|>BAGGAGE MEASUREMENTS AND WEIGHT LIMITS<|>TRUE<|>NONE<|>NONE<|>To clarify costs, please contact the Cargo Division at: +972-3-9716679.<|>Transport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at: +972-3-9716679.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:16,102 httpcore.http11 DEBUG send_request_headers.started request= -13:52:16,102 httpcore.http11 DEBUG send_request_headers.complete -13:52:16,102 httpcore.http11 DEBUG send_request_body.started request= -13:52:16,103 httpcore.http11 DEBUG send_request_body.complete -13:52:16,103 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:16,227 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'15818'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9984080'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'95ms'), (b'x-request-id', b'req_9d871e10e007882305b85e0253fd3a1f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07b2d9ac231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:16,227 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:16,227 httpcore.http11 DEBUG receive_response_body.started request= -13:52:16,227 httpcore.http11 DEBUG receive_response_body.complete -13:52:16,227 httpcore.http11 DEBUG response_closed.started -13:52:16,227 httpcore.http11 DEBUG response_closed.complete -13:52:16,228 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:16,229 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 15.98499999998603. input_tokens=19, output_tokens=1138 -13:52:16,234 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\nOutput:'}, {'role': 'assistant', 'content': '**##**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'I apologize for the oversight. Let\'s extract the relevant entities and claims again based on the provided text.\n\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Carry-on baggage Whether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft. First and foremost In addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website. Carry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival. This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies. Eligibility, Dimensions, and Weight What are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding? Carry-on Bags � Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg). *On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024). Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg. Please note: If no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only regarding baggage policies.<|>This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.)\n##\n(SUN DOR<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only regarding baggage policies.<|>This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.)\n##\n(MATMID FREQUENT FLYER CLUB<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status.<|>It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures.)\n##\n(CARRY-ON BAGS - ECONOMY CLASS<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).<|>Carry-on Bags � Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).)\n##\n(CARRY-ON BAGS - PREMIUM AND BUSINESS CLASSES<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.<|>Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.)\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:16,235 httpcore.http11 DEBUG send_request_headers.started request= -13:52:16,236 httpcore.http11 DEBUG send_request_headers.complete -13:52:16,236 httpcore.http11 DEBUG send_request_body.started request= -13:52:16,236 httpcore.http11 DEBUG send_request_body.complete -13:52:16,236 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:16,299 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'260'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997656'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'14ms'), (b'x-request-id', b'req_73dd382110e58415381babcc6ba3263d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0dcdb91c22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:16,299 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:16,299 httpcore.http11 DEBUG receive_response_body.started request= -13:52:16,299 httpcore.http11 DEBUG receive_response_body.complete -13:52:16,300 httpcore.http11 DEBUG response_closed.started -13:52:16,300 httpcore.http11 DEBUG response_closed.complete -13:52:16,300 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:16,300 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.4220000000204891. input_tokens=30, output_tokens=2 -13:52:16,669 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'378'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997385'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'15ms'), (b'x-request-id', b'req_5be474bcad5effc59378ab796ef32283'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0de3b677d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:16,670 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:16,670 httpcore.http11 DEBUG receive_response_body.started request= -13:52:16,670 httpcore.http11 DEBUG receive_response_body.complete -13:52:16,670 httpcore.http11 DEBUG response_closed.started -13:52:16,670 httpcore.http11 DEBUG response_closed.complete -13:52:16,670 httpcore.connection DEBUG close.started -13:52:16,671 httpcore.connection DEBUG close.complete -13:52:16,671 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:16,671 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5780000000377186. input_tokens=30, output_tokens=2 -13:52:16,681 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'261'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996979'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'18ms'), (b'x-request-id', b'req_d0f5249b5839efad050d2ec7f207b369'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0df1d17c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:16,682 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:16,682 httpcore.http11 DEBUG receive_response_body.started request= -13:52:16,682 httpcore.http11 DEBUG receive_response_body.complete -13:52:16,682 httpcore.http11 DEBUG response_closed.started -13:52:16,682 httpcore.http11 DEBUG response_closed.complete -13:52:16,683 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:16,683 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.45300000003771856. input_tokens=30, output_tokens=2 -13:52:18,14 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:18 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14613'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994057'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_8cc371f0dc9e2be27121887cbf807485'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c08dcdb0c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:18,14 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:18,14 httpcore.http11 DEBUG receive_response_body.started request= -13:52:18,15 httpcore.http11 DEBUG receive_response_body.complete -13:52:18,15 httpcore.http11 DEBUG response_closed.started -13:52:18,15 httpcore.http11 DEBUG response_closed.complete -13:52:18,15 httpcore.connection DEBUG close.started -13:52:18,15 httpcore.connection DEBUG close.complete -13:52:18,15 httpcore.connection DEBUG close.started -13:52:18,15 httpcore.connection DEBUG close.complete -13:52:18,16 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:18,17 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 14.797000000020489. input_tokens=19, output_tokens=1077 -13:52:18,22 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,\nOutput:"}, {'role': 'assistant', 'content': 'There are no specific named entities or claims related to baggage measurements, weight limits, and restrictions from airline documentation in the provided text. The text primarily discusses general information about transporting sporting equipment without mentioning specific organizations, persons, geographical locations, or events that would fit the entity specification.\n\nTherefore, the output is:\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'Thank you for your patience. Let\'s identify the entities and claims based on the provided text.\n\n### Entities Identified:\n1. **EL AL Cargo Division** (organization)\n2. **Europe** (geo)\n3. **Middle East** (geo)\n4. **Morocco** (geo)\n5. **Far East** (geo)\n6. **North America** (geo)\n\n### Claims Extracted:\n1. **Claim about baggage measurements and weight limits for sporting equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: BAGGAGE MEASUREMENTS\n - Claim Status: TRUE\n - Claim Description: The EL AL Cargo Division allows sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg to be transported as additional baggage.\n - Claim Date: **NONE**\n - Claim Source Text: "Allowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg."\n\n2. **Claim about fees for transporting sports equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: TRANSPORT FEES\n - Claim Status: TRUE\n - Claim Description: The EL AL Cargo Division charges $70 one way for transporting sports equipment to Europe, the Middle East, and Morocco, and $150 one way for the Far East and North America.\n - Claim Date: **NONE**\n - Claim Source Text: "Fees: - Europe, the Middle East, and Morocco: $70 one way. - Far East and North America: $150 one way."\n\n3. **Claim about payment for transport of sporting equipment:**\n - Subject: EL AL CARGO DIVISION\n - Object: NONE\n - Claim Type: PAYMENT POLICY\n - Claim Status: TRUE\n - Claim Description: Payment for the transport of sporting equipment must be made at the airport only and cannot be made in advance.\n - Claim Date: **NONE**\n - Claim Source Text: "Payment for the transport of sporting equipment will be made at the airport only and cannot be made in advance."\n\n### Final Output:\n(EL AL CARGO DIVISION<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>The EL AL Cargo Division allows sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg to be transported as additional baggage.<|>Allowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.)\n##\n(EL AL CARGO DIVISION<|>NONE<|>TRANSPORT FEES<|>TRUE<|>NONE<|>NONE<|>The EL AL Cargo Division charges $70 one way for transporting sports equipment to Europe, the Middle East, and Morocco, and $150 one way for the Far East and North America.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way. - Far East and North America: $150 one way.)\n##\n(EL AL CARGO DIVISION<|>NONE<|>PAYMENT POLICY<|>TRUE<|>NONE<|>NONE<|>Payment for the transport of sporting equipment must be made at the airport only and cannot be made in advance.<|>Payment for the transport of sporting equipment will be made at the airport only and cannot be made in advance.)\n##\n(EUROPE<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>Europe is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(MIDDLE EAST<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>The Middle East is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(MOROCCO<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>Morocco is mentioned as a destination for transporting sports equipment.<|>Fees: - Europe, the Middle East, and Morocco: $70 one way.)\n##\n(FAR EAST<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>The Far East is mentioned as a destination for transporting sports equipment.<|>Fees: - Far East and North America: $150 one way.)\n##\n(NORTH AMERICA<|>NONE<|>GEOGRAPHICAL LOCATION<|>TRUE<|>NONE<|>NONE<|>North America is mentioned as a destination for transporting sports equipment.<|>Fees: - Far East and North America: $150 one way.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:18,23 httpcore.http11 DEBUG send_request_headers.started request= -13:52:18,23 httpcore.http11 DEBUG send_request_headers.complete -13:52:18,23 httpcore.http11 DEBUG send_request_body.started request= -13:52:18,23 httpcore.http11 DEBUG send_request_body.complete -13:52:18,23 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:18,860 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:19 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'647'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997034'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'17ms'), (b'x-request-id', b'req_42dedcb6af2d44f561f5c13e4ceb55ae'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0ea3ed0c22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:18,861 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:18,861 httpcore.http11 DEBUG receive_response_body.started request= -13:52:18,861 httpcore.http11 DEBUG receive_response_body.complete -13:52:18,861 httpcore.http11 DEBUG response_closed.started -13:52:18,861 httpcore.http11 DEBUG response_closed.complete -13:52:18,861 httpcore.connection DEBUG close.started -13:52:18,861 httpcore.connection DEBUG close.complete -13:52:18,861 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:18,862 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.8429999999934807. input_tokens=30, output_tokens=2 -13:52:20,134 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:20 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'18241'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994078'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_2f1ae2eae3672add9ec337e038193c58'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0845ba2c222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:20,134 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:20,134 httpcore.http11 DEBUG receive_response_body.started request= -13:52:20,134 httpcore.http11 DEBUG receive_response_body.complete -13:52:20,134 httpcore.http11 DEBUG response_closed.started -13:52:20,134 httpcore.http11 DEBUG response_closed.complete -13:52:20,135 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:20,136 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 18.42200000002049. input_tokens=19, output_tokens=932 -13:52:20,141 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger�s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, or restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL (organization)\n - Heathrow Airport (geo)\n - United States (geo)\n - State of Israel (geo)\n\n2. **Claims**:\n - (EL AL<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>EL AL requires the passenger to update the Service Center regarding a flight with a service dog, and may require the dog to be tied to a leash and/or harness throughout the flight.<|>The passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date. EL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.)\n - (HEATHROW AIRPORT<|>NONE<|>SERVICE DOG REGISTRATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.<|>In addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.)\n - (UNITED STATES<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to or from the United States with a service dog must fill out, print, and bring special additional forms for the United States and present them at the check-in counters.<|>Flying to or from the United States with a service dog? In addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.)\n - (STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n\nOutput:\n\n(EL AL<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>EL AL requires the passenger to update the Service Center regarding a flight with a service dog, and may require the dog to be tied to a leash and/or harness throughout the flight.<|>The passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date. EL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.)##\n(HEATHROW AIRPORT<|>NONE<|>SERVICE DOG REGISTRATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.<|>In addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website.)##\n(UNITED STATES<|>NONE<|>SERVICE DOG TRANSPORTATION<|>TRUE<|>NONE<|>NONE<|>Passengers traveling to or from the United States with a service dog must fill out, print, and bring special additional forms for the United States and present them at the check-in counters.<|>Flying to or from the United States with a service dog? In addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.)##\n(STATE OF ISRAEL<|>NONE<|>HIGH-RISK COUNTRY<|>TRUE<|>NONE<|>NONE<|>As of this date, the State of Israel is defined as a high-risk country on the CDC website.<|>Please note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:20,142 httpcore.http11 DEBUG send_request_headers.started request= -13:52:20,142 httpcore.http11 DEBUG send_request_headers.complete -13:52:20,142 httpcore.http11 DEBUG send_request_body.started request= -13:52:20,142 httpcore.http11 DEBUG send_request_body.complete -13:52:20,143 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:20,356 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:20 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'19412'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9989640'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'62ms'), (b'x-request-id', b'req_0e8b8db2d2201164c6b237d8786a03bc'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07e5df57d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:20,357 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:20,357 httpcore.http11 DEBUG receive_response_body.started request= -13:52:20,357 httpcore.http11 DEBUG receive_response_body.complete -13:52:20,357 httpcore.http11 DEBUG response_closed.started -13:52:20,357 httpcore.http11 DEBUG response_closed.complete -13:52:20,357 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:20,359 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 19.60899999999674. input_tokens=19, output_tokens=1292 -13:52:20,363 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21\nOutput:"}, {'role': 'assistant', 'content': '## \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "I apologize for the oversight. Let's extract the entities and claims again, ensuring we capture all relevant information.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: \nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\nRothschild 4\nTel: 03-6822330\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nRamle and Lod:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters, electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days.\n\nOutput:\n\n(ARTY RIMON<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery services, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>ARTY Rimon Service Pickup and delivery service)\n\n(CARGO TIKIM VE MIZVADOT<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Cargo Tikim ve Mizvadot is an importer of luggage and bags, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Importer of Luggage and Bags)\n\n(RIMON MIZVADOT VE TIKIM<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Rimon Mizvadot ve Tikim provides services, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Rimon Mizvadot ve Tikim)\n\n(MOKA<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Moka is a pickup and delivery point, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Moka � Pickup and delivery point)\n\n(MAKOR HAZIUD<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment is mentioned, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Makor Haziud Baggage and Outdoor Equipment)\n\n(GALGAL YAZIV<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Galgal Yaziv deals with damage to powered mobility scooters and wheelchairs, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Damage to powered mobility scooters, electric power wheelchairs and more)\n\n(ORTHOPEDICA STEINER<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Orthopedica Steiner is mentioned in relation to equipment for passengers who require assistance, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Orthopedica Steiner)\n\n(HAGALGAL<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Hagalgal is the Israeli Center for Baby and children equipment and goods, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Hagalgal � The Israeli Center for Baby and children equipment and goods)\n\n(BUGABOO<|>NONE<|>BAGGAGE HANDLING<|>SUSPECTED<|>NONE<|>NONE<|>Bugaboo baby carriages and strollers are mentioned, but specific baggage measurements, weight limits, and restrictions are not detailed in the text.<|>Bugaboo baby carriages and strollers)\n\n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:20,364 httpcore.http11 DEBUG send_request_headers.started request= -13:52:20,364 httpcore.http11 DEBUG send_request_headers.complete -13:52:20,364 httpcore.http11 DEBUG send_request_body.started request= -13:52:20,365 httpcore.http11 DEBUG send_request_body.complete -13:52:20,365 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:20,843 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:21 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'301'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997234'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'16ms'), (b'x-request-id', b'req_b787a15194ffd7e7b3c69006bf60bfba'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0f8e89a7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:20,843 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:20,843 httpcore.http11 DEBUG receive_response_body.started request= -13:52:20,844 httpcore.http11 DEBUG receive_response_body.complete -13:52:20,844 httpcore.http11 DEBUG response_closed.started -13:52:20,844 httpcore.http11 DEBUG response_closed.complete -13:52:20,844 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:20,845 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.48499999998603016. input_tokens=30, output_tokens=2 -13:52:20,974 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:21 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'649'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997107'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'17ms'), (b'x-request-id', b'req_7399cd5fa363486c5e7642129cf5bdf1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0f7788dc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:20,975 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:20,975 httpcore.http11 DEBUG receive_response_body.started request= -13:52:20,975 httpcore.http11 DEBUG receive_response_body.complete -13:52:20,975 httpcore.http11 DEBUG response_closed.started -13:52:20,975 httpcore.http11 DEBUG response_closed.complete -13:52:20,976 httpcore.connection DEBUG close.started -13:52:20,976 httpcore.connection DEBUG close.complete -13:52:20,976 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:20,976 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.8439999999827705. input_tokens=30, output_tokens=2 -13:52:21,412 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:21 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'20082'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994314'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'34ms'), (b'x-request-id', b'req_bb6f4203d73d33dec580bd05665f16d1'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c080eb7cc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:21,413 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:21,413 httpcore.http11 DEBUG receive_response_body.started request= -13:52:21,413 httpcore.http11 DEBUG receive_response_body.complete -13:52:21,413 httpcore.http11 DEBUG response_closed.started -13:52:21,414 httpcore.http11 DEBUG response_closed.complete -13:52:21,414 httpcore.connection DEBUG close.started -13:52:21,414 httpcore.connection DEBUG close.complete -13:52:21,414 httpcore.connection DEBUG close.started -13:52:21,414 httpcore.connection DEBUG close.complete -13:52:21,414 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:21,415 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 20.25. input_tokens=19, output_tokens=1358 -13:52:21,420 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon � Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities or claims that match the specified criteria in the provided text. The text primarily contains information about baggage claims and contact details for various stores, but it does not include any specific claims related to baggage measurements, weight limits, or restrictions from airline documentation.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'Based on the provided text, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL ISRAEL AIRLINES LTD.\n - Baggage Claims Department\n - Makor Haziud Baggage and Outdoor Equipment\n - WeShoes\n - Memsi Touring\n - Log In Log Out\n - ARTY RIMON\n - Shin Tik\n - Trek Market\n - Cargo\n\n2. **Claims**:\n - (EL AL ISRAEL AIRLINES LTD.<|>BAGGAGE CLAIMS DEPARTMENT<|>BAGGAGE CLAIMS<|>NONE<|>NONE<|>NONE<|>You must report damage to the Baggage Claims Department within 7 days in writing via the Digital Contact Form<|>You must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form)\n - (MAKOR HAZIUD BAGGAGE AND OUTDOOR EQUIPMENT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment provides baggage and outdoor equipment services<|>Makor Haziud Baggage and Outdoor Equipment Address: Haaliya Street 24 Tel: 03-6822330)\n - (WESHOES<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>WeShoes provides baggage services<|>WeShoes Memsi Touring Bialik 3 Tel: 076-8100205)\n - (MEMSI TOURING<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Memsi Touring provides baggage services<|>Memsi Touring Bialik 3 Tel: 076-8100205)\n - (LOG IN LOG OUT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Log In Log Out provides baggage services<|>Log In Log Out - Importer of Luggage and Bags Steinman 20 (Bavli Neighborhood) Tel: 052-2310738)\n - (ARTY RIMON<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery service for baggage<|>ARTY Rimon Service Pickup and delivery service Tel: 1700504544 WhatsApp: 0532310738)\n - (SHIN TIK<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Shin Tik provides baggage services<|>Shin Tik Memsi Touring Sokolov 59 Tel: 03-5040752)\n - (TREK MARKET<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Trek Market provides baggage services<|>Trek Market Memsi Touring Izthak Rabin 2 03-5069443)\n - (CARGO<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Cargo provides baggage services<|>Cargo)\n\nOutput:\n\n(EL AL ISRAEL AIRLINES LTD.<|>BAGGAGE CLAIMS DEPARTMENT<|>BAGGAGE CLAIMS<|>NONE<|>NONE<|>NONE<|>You must report damage to the Baggage Claims Department within 7 days in writing via the Digital Contact Form<|>You must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form)##\n(MAKOR HAZIUD BAGGAGE AND OUTDOOR EQUIPMENT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Makor Haziud Baggage and Outdoor Equipment provides baggage and outdoor equipment services<|>Makor Haziud Baggage and Outdoor Equipment Address: Haaliya Street 24 Tel: 03-6822330)##\n(WESHOES<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>WeShoes provides baggage services<|>WeShoes Memsi Touring Bialik 3 Tel: 076-8100205)##\n(MEMSI TOURING<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Memsi Touring provides baggage services<|>Memsi Touring Bialik 3 Tel: 076-8100205)##\n(LOG IN LOG OUT<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Log In Log Out provides baggage services<|>Log In Log Out - Importer of Luggage and Bags Steinman 20 (Bavli Neighborhood) Tel: 052-2310738)##\n(ARTY RIMON<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>ARTY Rimon provides pickup and delivery service for baggage<|>ARTY Rimon Service Pickup and delivery service Tel: 1700504544 WhatsApp: 0532310738)##\n(SHIN TIK<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Shin Tik provides baggage services<|>Shin Tik Memsi Touring Sokolov 59 Tel: 03-5040752)##\n(TREK MARKET<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Trek Market provides baggage services<|>Trek Market Memsi Touring Izthak Rabin 2 03-5069443)##\n(CARGO<|>NONE<|>BAGGAGE SERVICES<|>NONE<|>NONE<|>NONE<|>Cargo provides baggage services<|>Cargo)\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:21,421 httpcore.http11 DEBUG send_request_headers.started request= -13:52:21,421 httpcore.http11 DEBUG send_request_headers.complete -13:52:21,421 httpcore.http11 DEBUG send_request_body.started request= -13:52:21,422 httpcore.http11 DEBUG send_request_body.complete -13:52:21,422 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:21,902 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'313'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997326'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'16ms'), (b'x-request-id', b'req_316896ec95d8d53a79542440a02ad7fe'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0ff7affc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:21,903 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:21,903 httpcore.http11 DEBUG receive_response_body.started request= -13:52:21,903 httpcore.http11 DEBUG receive_response_body.complete -13:52:21,903 httpcore.http11 DEBUG response_closed.started -13:52:21,903 httpcore.http11 DEBUG response_closed.complete -13:52:21,904 httpcore.connection DEBUG close.started -13:52:21,904 httpcore.connection DEBUG close.complete -13:52:21,904 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:21,904 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5. input_tokens=30, output_tokens=2 -13:52:23,8 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'20508'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994088'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_22172559a6c163a93686e479ace3b47c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0881855c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:23,9 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:23,9 httpcore.http11 DEBUG receive_response_body.started request= -13:52:23,9 httpcore.http11 DEBUG receive_response_body.complete -13:52:23,9 httpcore.http11 DEBUG response_closed.started -13:52:23,9 httpcore.http11 DEBUG response_closed.complete -13:52:23,9 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:23,11 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 20.68800000002375. input_tokens=19, output_tokens=1492 -13:52:23,16 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n\u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions that can be extracted from the text. \n\nTherefore, the output is empty.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "I apologize for the oversight. Let's analyze the text again for potential entities and claims.\n\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\n\nText: How many checked bags can you bring? Flying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost The checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website. You can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page. The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage What is oversized and overweight baggage? Any baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage? After going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\nEurope and Middle East Far East North America Economy class EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information The pre-order option is available up to three hours prior to departure. \u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight. When reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price. You can pay to check baggage on.\n\nNow, let's extract the entities and claims:\n\n1. **Entities Identified:**\n - EL AL (organization)\n - Sundor (organization)\n - Europe (geo)\n - Middle East (geo)\n - North America (geo)\n - Far East (geo)\n - Economy class (event)\n - Lite (event)\n - Classic (event)\n - Flex (event)\n\n2. **Claims Extracted:**\n - (EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.)\n - (EL AL<|>NONE<|>BAGGAGE ALLOWANCE<|>TRUE<|>NONE<|>NONE<|>The baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex.<|>EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.)\n - (EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.)\n - (EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.)\n - (EL AL<|>NONE<|>ADDITIONAL BAGGAGE<|>TRUE<|>NONE<|>NONE<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.)\n\nCombining these into the required format:\n\nOutput:\n(EL AL<|>NONE<|>BAGGAGE POLICY<|>TRUE<|>NONE<|>NONE<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.<|>The baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.)##\n(EL AL<|>NONE<|>BAGGAGE ALLOWANCE<|>TRUE<|>NONE<|>NONE<|>The baggage allowance and weight limit depend on the ticket type: The baggage allowance varies depending on the service type: Lite, Classic, or Flex.<|>EL AL offers three types of tickets in economy class on flights to Europe and the Middle East.)##\n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.<|>With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies.)##\n(EL AL<|>NONE<|>BAGGAGE WEIGHT LIMIT<|>TRUE<|>NONE<|>NONE<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.<|>Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price.)##\n(EL AL<|>NONE<|>ADDITIONAL BAGGAGE<|>TRUE<|>NONE<|>NONE<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.<|>For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.)\n\n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:23,17 httpcore.http11 DEBUG send_request_headers.started request= -13:52:23,17 httpcore.http11 DEBUG send_request_headers.complete -13:52:23,17 httpcore.http11 DEBUG send_request_body.started request= -13:52:23,18 httpcore.http11 DEBUG send_request_body.complete -13:52:23,18 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:23,347 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'19932'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9989243'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'64ms'), (b'x-request-id', b'req_604388f4f240c81096fe847de624b964'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c08dedc6c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:23,347 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:23,347 httpcore.http11 DEBUG receive_response_body.started request= -13:52:23,347 httpcore.http11 DEBUG receive_response_body.complete -13:52:23,348 httpcore.http11 DEBUG response_closed.started -13:52:23,348 httpcore.http11 DEBUG response_closed.complete -13:52:23,348 httpcore.connection DEBUG close.started -13:52:23,348 httpcore.connection DEBUG close.complete -13:52:23,348 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:23,349 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 20.10999999998603. input_tokens=19, output_tokens=1365 -13:52:23,354 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries� terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.� Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium\nOutput:"}, {'role': 'assistant', 'content': 'Based on the provided text, entity specification, and claim description, the analysis yields the following claims:\n\n1. No specific organizations, persons, geographical entities, or events were identified in the text that match the entity specification.\n2. The text primarily discusses regulations regarding lithium batteries and does not provide any claims related to organizations, persons, or events.\n\nAs a result, there are no claims to extract from the provided text.\n\nOutput: \n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'Thank you for your patience. Upon reevaluating the text, I will identify the relevant entities and claims accordingly.\n\n### Identified Entities:\n1. **Lithium-ion batteries**\n2. **Lithium metal batteries**\n3. **Consumer-grade batteries**\n4. **Non-spillable wet batteries**\n5. **Portable electronic devices**\n6. **Electronic devices**\n7. **Spare lithium batteries**\n\n### Claims:\n1. (LITHIUM-ION BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.)\n2. (LITHIUM METAL BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.)\n3. (CONSUMER-GRADE BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.)\n4. (NON-SPILLABLE WET BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.)\n5. (PORTABLE ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.�<|>Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.�)\n6. (ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.)<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.).)\n7. (SPARE LITHIUM BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.)\n\n### Final Output:\n(LITHIUM-ION BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.<|>Two larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.)##\n(LITHIUM METAL BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.<|>Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft.)##\n(CONSUMER-GRADE BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.<|>These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case.)##\n(NON-SPILLABLE WET BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.<|>Non-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery.)##\n(PORTABLE ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.�<|>Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.�)##\n(ELECTRONIC DEVICES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.)<|>An electronic device may not be stored together with flammable material (e.g. hairspray, etc.).)##\n(SPARE LITHIUM BATTERIES<|>NONE<|>BATTERY REGULATIONS<|>TRUE<|>NONE<|>NONE<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.<|>Spare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage.)\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:23,355 httpcore.http11 DEBUG send_request_headers.started request= -13:52:23,355 httpcore.http11 DEBUG send_request_headers.complete -13:52:23,355 httpcore.http11 DEBUG send_request_body.started request= -13:52:23,356 httpcore.http11 DEBUG send_request_body.complete -13:52:23,356 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:23,466 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'265'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996510'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'20ms'), (b'x-request-id', b'req_00b9f1ef8b70ea284860f68e7aa0bc4a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c10979fdc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:23,466 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:23,467 httpcore.http11 DEBUG receive_response_body.started request= -13:52:23,467 httpcore.http11 DEBUG receive_response_body.complete -13:52:23,467 httpcore.http11 DEBUG response_closed.started -13:52:23,467 httpcore.http11 DEBUG response_closed.complete -13:52:23,467 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:23,468 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.46899999998277053. input_tokens=30, output_tokens=2 -13:52:23,798 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'269'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996817'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'19ms'), (b'x-request-id', b'req_44caa10039c6785c343b272afa751946'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c10b9f0f7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:23,799 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:23,799 httpcore.http11 DEBUG receive_response_body.started request= -13:52:23,799 httpcore.http11 DEBUG receive_response_body.complete -13:52:23,799 httpcore.http11 DEBUG response_closed.started -13:52:23,799 httpcore.http11 DEBUG response_closed.complete -13:52:23,800 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:23,800 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.45300000003771856. input_tokens=30, output_tokens=2 -13:52:26,168 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'24108'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994138'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_94a52078c4e4a87a1b737c4a46ff2b88'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c0854f3a7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:26,169 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:26,169 httpcore.http11 DEBUG receive_response_body.started request= -13:52:26,169 httpcore.http11 DEBUG receive_response_body.complete -13:52:26,169 httpcore.http11 DEBUG response_closed.started -13:52:26,169 httpcore.http11 DEBUG response_closed.complete -13:52:26,169 httpcore.connection DEBUG close.started -13:52:26,169 httpcore.connection DEBUG close.complete -13:52:26,170 httpcore.connection DEBUG close.started -13:52:26,170 httpcore.connection DEBUG close.complete -13:52:26,170 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:26,171 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 24.31300000002375. input_tokens=19, output_tokens=1601 -13:52:26,176 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view\nOutput:"}, {'role': 'assistant', 'content': 'There are no named entities that match the specified entity types (organization, person, geo, event) in the provided text. Therefore, there are no claims to extract based on the given claim description.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'I apologize for the oversight. Let\'s analyze the text again for potential entities and claims.\n\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\n\nText: \n"may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n\nHow do I determine a battery\'s watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view."\n\nBased on the analysis, here are the identified entities and claims:\n\n1. **Entities**:\n - EL AL (organization)\n - IATA (organization)\n\n2. **Claims**:\n - (EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids on EL AL flights must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights Battery-powered mobility aids must comply with the relevant IATA regulations.)\n - (IATA<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)\n\n3. **Weight Limits and Restrictions**:\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.<|>Yes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger.<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.)\n - (NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids on EL AL flights must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)##\n(IATA<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>Battery-powered mobility aids must comply with the relevant IATA regulations.<|>Battery-powered wheelchairs/mobility aids on EL AL flights must comply with the relevant IATA regulations.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.<|>Yes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.<|>Up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger.<|>Larger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.)##\n(NONE<|>NONE<|>BATTERY LIMITS<|>TRUE<|>NONE<|>NONE<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.<|>Up to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.)\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:26,177 httpcore.http11 DEBUG send_request_headers.started request= -13:52:26,177 httpcore.http11 DEBUG send_request_headers.complete -13:52:26,177 httpcore.http11 DEBUG send_request_body.started request= -13:52:26,177 httpcore.http11 DEBUG send_request_body.complete -13:52:26,177 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:26,744 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'389'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9996444'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'21ms'), (b'x-request-id', b'req_9a8c4ac6b3097e7b24f6052d5f939481'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c11d3e4fc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:26,745 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:26,745 httpcore.http11 DEBUG receive_response_body.started request= -13:52:26,745 httpcore.http11 DEBUG receive_response_body.complete -13:52:26,745 httpcore.http11 DEBUG response_closed.started -13:52:26,746 httpcore.http11 DEBUG response_closed.complete -13:52:26,746 httpcore.connection DEBUG close.started -13:52:26,746 httpcore.connection DEBUG close.complete -13:52:26,746 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:26,746 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5619999999762513. input_tokens=30, output_tokens=2 -13:52:34,294 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'17426'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9985990'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'84ms'), (b'x-request-id', b'req_17cd23ebdfba82b1f56f91e2efdc5cee'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07e9dcd7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:34,294 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:34,294 httpcore.http11 DEBUG receive_response_body.started request= -13:52:34,295 httpcore.http11 DEBUG receive_response_body.complete -13:52:34,295 httpcore.http11 DEBUG response_closed.started -13:52:34,295 httpcore.http11 DEBUG response_closed.complete -13:52:34,295 httpcore.connection DEBUG close.started -13:52:34,295 httpcore.connection DEBUG close.complete -13:52:34,295 httpcore.connection DEBUG close.started -13:52:34,295 httpcore.connection DEBUG close.complete -13:52:34,295 httpcore.connection DEBUG close.started -13:52:34,295 httpcore.connection DEBUG close.complete -13:52:34,295 httpcore.connection DEBUG close.started -13:52:34,295 httpcore.connection DEBUG close.complete -13:52:34,295 httpcore.connection DEBUG close.started -13:52:34,296 httpcore.connection DEBUG close.complete -13:52:34,296 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:34,297 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 33.5. input_tokens=19, output_tokens=1120 -13:52:34,302 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,\nOutput:'}, {'role': 'assistant', 'content': '**##**\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': 'I apologize for the oversight. Let\'s extract the relevant entities and claims again based on the provided text.\n\nEntity specification: [\'organization\', \'person\', \'geo\', \'event\'] \nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation. \nText: Carry-on baggage Whether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft. First and foremost In addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website. Carry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival. This information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies. Eligibility, Dimensions, and Weight What are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding? Carry-on Bags � Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg. Classic - entitled to one carry-on bag, maximum 8 kg. Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg). *On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024). Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg. Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg. Please note: If no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications.\n\nOutput:\n\n(EL AL<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only.<|>This information applies to flights operated by EL AL and Sun Dor only.) \n(SUN DOR<|>NONE<|>BAGGAGE RESTRICTIONS<|>TRUE<|>NONE<|>NONE<|>This information applies to flights operated by EL AL and Sun Dor only.<|>This information applies to flights operated by EL AL and Sun Dor only.) \n(LITE<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Lite - entitled to one carry-on bag, maximum 8 kg.<|>Carry-on Bags � Economy Class: Lite - entitled to one carry-on bag, maximum 8 kg.) \n(CLASSIC<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Classic - entitled to one carry-on bag, maximum 8 kg.<|>Carry-on Bags � Economy Class: Classic - entitled to one carry-on bag, maximum 8 kg.) \n(FLEX<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).<|>Carry-on Bags � Economy Class: Flex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).) \n(PREMIUM<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.<|>Carry-on Bags - Premium and Business Classes Premium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.) \n(BUSINESS<|>NONE<|>BAGGAGE MEASUREMENTS<|>TRUE<|>NONE<|>NONE<|>Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.<|>Carry-on Bags - Premium and Business Classes Business - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.) \n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:34,302 httpcore.http11 DEBUG send_request_headers.started request= -13:52:34,302 httpcore.http11 DEBUG send_request_headers.complete -13:52:34,303 httpcore.http11 DEBUG send_request_body.started request= -13:52:34,303 httpcore.http11 DEBUG send_request_body.complete -13:52:34,303 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:35,100 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'610'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9997059'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'17ms'), (b'x-request-id', b'req_e6dbca83d509e7bbd30b044fbd749174'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c14fffc77da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:35,101 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:35,101 httpcore.http11 DEBUG receive_response_body.started request= -13:52:35,101 httpcore.http11 DEBUG receive_response_body.complete -13:52:35,101 httpcore.http11 DEBUG response_closed.started -13:52:35,101 httpcore.http11 DEBUG response_closed.complete -13:52:35,101 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:35,102 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.7969999999622814. input_tokens=30, output_tokens=2 -13:52:42,956 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'41773'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994112'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'35ms'), (b'x-request-id', b'req_8d9497bc67c301b8f12a81799414bec2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c07fdd2fc229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:42,956 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:42,956 httpcore.http11 DEBUG receive_response_body.started request= -13:52:43,86 httpcore.http11 DEBUG receive_response_body.complete -13:52:43,86 httpcore.http11 DEBUG response_closed.started -13:52:43,86 httpcore.http11 DEBUG response_closed.complete -13:52:43,86 httpcore.connection DEBUG close.started -13:52:43,86 httpcore.connection DEBUG close.complete -13:52:43,86 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:43,88 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-continuation-0" with 0 retries took 42.09399999998277. input_tokens=19, output_tokens=2802 -13:52:43,93 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': "\n-Target activity-\nYou are an intelligent assistant that helps a human analyst to analyze claims against certain entities presented in a text document.\n\n-Goal-\nGiven a text document that is potentially relevant to this activity, an entity specification, and a claim description, extract all entities that match the entity specification and all claims against those entities.\n\n-Steps-\n1. Extract all named entities that match the predefined entity specification. Entity specification can either be a list of entity names or a list of entity types.\n2. For each entity identified in step 1, extract all claims associated with the entity. Claims need to match the specified claim description, and the entity should be the subject of the claim.\nFor each claim, extract the following information:\n- Subject: name of the entity that is subject of the claim, capitalized. The subject entity is one that committed the action described in the claim. Subject needs to be one of the named entities identified in step 1.\n- Object: name of the entity that is object of the claim, capitalized. The object entity is one that either reports/handles or is affected by the action described in the claim. If object entity is unknown, use **NONE**.\n- Claim Type: overall category of the claim, capitalized. Name it in a way that can be repeated across multiple text inputs, so that similar claims share the same claim type\n- Claim Status: **TRUE**, **FALSE**, or **SUSPECTED**. TRUE means the claim is confirmed, FALSE means the claim is found to be False, SUSPECTED means the claim is not verified.\n- Claim Description: Detailed description explaining the reasoning behind the claim, together with all the related evidence and references.\n- Claim Date: Period (start_date, end_date) when the claim was made. Both start_date and end_date should be in ISO-8601 format. If the claim was made on a single date rather than a date range, set the same date for both start_date and end_date. If date is unknown, return **NONE**.\n- Claim Source Text: List of **all** quotes from the original text that are relevant to the claim.\n\nFormat each claim as (<|><|><|><|><|><|><|>)\n\n3. Return output in English as a single list of all the claims identified in steps 1 and 2. Use **##** as the list delimiter.\n\n4. When finished, output <|COMPLETE|>\n\n-Examples-\nExample 1:\nEntity specification: organization\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n<|COMPLETE|>\n\nExample 2:\nEntity specification: Company A, Person C\nClaim description: red flags associated with an entity\nText: According to an article on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B. The company is owned by Person C who was suspected of engaging in corruption activities in 2015.\nOutput:\n\n(COMPANY A<|>GOVERNMENT AGENCY B<|>ANTI-COMPETITIVE PRACTICES<|>TRUE<|>2022-01-10T00:00:00<|>2022-01-10T00:00:00<|>Company A was found to engage in anti-competitive practices because it was fined for bid rigging in multiple public tenders published by Government Agency B according to an article published on 2022/01/10<|>According to an article published on 2022/01/10, Company A was fined for bid rigging while participating in multiple public tenders published by Government Agency B.)\n##\n(PERSON C<|>NONE<|>CORRUPTION<|>SUSPECTED<|>2015-01-01T00:00:00<|>2015-12-30T00:00:00<|>Person C was suspected of engaging in corruption activities in 2015<|>The company is owned by Person C who was suspected of engaging in corruption activities in 2015)\n<|COMPLETE|>\n\n-Real Data-\nUse the following input for your answer.\nEntity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which\nOutput:"}, {'role': 'assistant', 'content': 'There are no entities that match the specified entity types (organization, person, geo, event) in the provided text. Additionally, there are no claims related to baggage measurements, weight limits, and restrictions from airline documentation that can be extracted.\n\n<|COMPLETE|>'}, {'role': 'user', 'content': 'MANY entities were missed in the last extraction. Add them below using the same format:\n'}, {'role': 'assistant', 'content': "Entity specification: ['organization', 'person', 'geo', 'event']\nClaim description: Extract baggage measurements, weight limits, and restrictions from airline documentation.\nText: obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.\n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which.\n\nOutput:\n\n(MINISTRY OF HEALTH<|>ISRAEL<|>REGULATORY AUTHORITY<|>TRUE<|>NONE<|>NONE<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel and determine how the animal will be transported.<|>The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.)\n##\n(EL AL SERVICE CENTER<|>NONE<|>TRANSPORTATION APPROVAL<|>TRUE<|>NONE<|>NONE<|>Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin.<|>Transporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin.)\n##\n(BEN GURION AIRPORT<|>NONE<|>VETERINARY SERVICES<|>TRUE<|>NONE<|>NONE<|>Email Veterinary Services at Ben Gurion Airport to obtain the required documents for transporting an animal to Israel.<|>After receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below).)\n##\n(BANGKOK<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Bangkok.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(AMSTERDAM<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Amsterdam.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BOSTON<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Boston.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MUMBAI<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Mumbai.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BRUSSELS<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Brussels.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(LARNACA<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Larnaca.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(FRANKFURT<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Frankfurt.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MOSCOW<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Moscow.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MUNICH<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Munich.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(MADRID<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Madrid.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BERLIN<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Berlin.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(PRAGUE<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Prague.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(WARSAW<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Warsaw.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(TORONTO<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Toronto.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(VIENNA<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Vienna.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(BUDAPEST<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Budapest.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(KYIV<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Kyiv.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n##\n(ROME<|>NONE<|>TRANSPORTATION RESTRICTION<|>TRUE<|>NONE<|>NONE<|>Animals cannot be transported as registered cargo from certain airports, including Rome.<|>Please note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome.)\n<|COMPLETE|>"}, {'role': 'user', 'content': 'It appears some entities may have still been missed. Answer YES {tuple_delimiter} NO if there are still entities that need to be added.\n'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'logit_bias': {14331: 100, 9173: 100}, 'max_tokens': 1, 'n': 1, 'presence_penalty': 0.0, 'temperature': 0.0, 'top_p': 1.0}} -13:52:43,94 httpcore.http11 DEBUG send_request_headers.started request= -13:52:43,94 httpcore.http11 DEBUG send_request_headers.complete -13:52:43,94 httpcore.http11 DEBUG send_request_body.started request= -13:52:43,94 httpcore.http11 DEBUG send_request_body.complete -13:52:43,94 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:43,642 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:52:43 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'371'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995149'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'29ms'), (b'x-request-id', b'req_c70caed458ffc7f6362f0dfa86aef4b9'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c186fa21c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:52:43,642 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:52:43,642 httpcore.http11 DEBUG receive_response_body.started request= -13:52:43,642 httpcore.http11 DEBUG receive_response_body.complete -13:52:43,643 httpcore.http11 DEBUG response_closed.started -13:52:43,643 httpcore.http11 DEBUG response_closed.complete -13:52:43,643 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:52:43,643 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "extract-loopcheck-0" with 0 retries took 0.5470000000204891. input_tokens=30, output_tokens=2 -13:52:43,650 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_covariates.parquet -13:52:43,855 graphrag.index.run.workflow INFO dependencies for create_final_entities: ['create_base_entity_graph'] -13:52:43,855 graphrag.index.run.workflow WARNING Dependency table create_base_entity_graph not found in storage: it may be a runtime-only in-memory table. If you see further errors, this may be an actual problem. -13:52:43,862 datashaper.workflow.workflow INFO executing verb create_final_entities -13:52:43,915 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_entities.parquet -13:52:44,133 graphrag.index.run.workflow INFO dependencies for create_final_nodes: ['create_base_entity_graph'] -13:52:44,133 graphrag.index.run.workflow WARNING Dependency table create_base_entity_graph not found in storage: it may be a runtime-only in-memory table. If you see further errors, this may be an actual problem. -13:52:44,140 datashaper.workflow.workflow INFO executing verb create_final_nodes -13:52:44,178 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=22) - 2 RESUME(arg=0, lineno=22) - 4 LOAD_CONST(arg=1, lineno=29) - 6 STORE_FAST(arg=2, lineno=29) - 8 LOAD_GLOBAL(arg=1, lineno=30) - 20 LOAD_FAST(arg=0, lineno=30) - 22 LOAD_ATTR(arg=1, lineno=30) - 32 LOAD_CONST(arg=2, lineno=30) - 34 BINARY_SUBSCR(arg=None, lineno=30) - 44 PRECALL(arg=1, lineno=30) - 48 CALL(arg=1, lineno=30) - 58 GET_ITER(arg=None, lineno=30) -> 60 FOR_ITER(arg=25, lineno=30) - 62 STORE_FAST(arg=3, lineno=30) - 64 LOAD_FAST(arg=2, lineno=31) - 66 LOAD_FAST(arg=0, lineno=31) - 68 LOAD_FAST(arg=3, lineno=31) - 70 BINARY_SUBSCR(arg=None, lineno=31) - 80 LOAD_FAST(arg=1, lineno=31) - 82 LOAD_FAST(arg=3, lineno=31) - 84 BINARY_SUBSCR(arg=None, lineno=31) - 94 BINARY_OP(arg=10, lineno=31) - 98 LOAD_CONST(arg=3, lineno=31) - 100 BINARY_OP(arg=8, lineno=31) - 104 BINARY_OP(arg=13, lineno=31) - 108 STORE_FAST(arg=2, lineno=31) - 110 JUMP_BACKWARD(arg=26, lineno=31) -> 112 LOAD_GLOBAL(arg=5, lineno=32) - 124 LOAD_ATTR(arg=3, lineno=32) - 134 LOAD_FAST(arg=2, lineno=32) - 136 PRECALL(arg=1, lineno=32) - 140 CALL(arg=1, lineno=32) - 150 RETURN_VALUE(arg=None, lineno=32) -13:52:44,178 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,179 numba.core.byteflow DEBUG stack: [] -13:52:44,179 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=22) -13:52:44,179 numba.core.byteflow DEBUG stack [] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=22) -13:52:44,179 numba.core.byteflow DEBUG stack [] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_CONST(arg=1, lineno=29) -13:52:44,179 numba.core.byteflow DEBUG stack [] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=6, inst=STORE_FAST(arg=2, lineno=29) -13:52:44,179 numba.core.byteflow DEBUG stack ['$const4.0'] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_GLOBAL(arg=1, lineno=30) -13:52:44,179 numba.core.byteflow DEBUG stack [] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=0, lineno=30) -13:52:44,179 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1'] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_ATTR(arg=1, lineno=30) -13:52:44,179 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$x20.3'] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=30) -13:52:44,179 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$22load_attr.4'] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=34, inst=BINARY_SUBSCR(arg=None, lineno=30) -13:52:44,179 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$22load_attr.4', '$const32.5'] -13:52:44,179 numba.core.byteflow DEBUG dispatch pc=44, inst=PRECALL(arg=1, lineno=30) -13:52:44,179 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$34binary_subscr.6'] -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=48, inst=CALL(arg=1, lineno=30) -13:52:44,180 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$34binary_subscr.6'] -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=58, inst=GET_ITER(arg=None, lineno=30) -13:52:44,180 numba.core.byteflow DEBUG stack ['$48call.7'] -13:52:44,180 numba.core.byteflow DEBUG end state. edges=[Edge(pc=60, stack=('$58get_iter.8',), blockstack=(), npush=0)] -13:52:44,180 numba.core.byteflow DEBUG pending: deque([State(pc_initial=60 nstack_initial=1)]) -13:52:44,180 numba.core.byteflow DEBUG stack: ['$phi60.0'] -13:52:44,180 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=60 nstack_initial=1) -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=60, inst=FOR_ITER(arg=25, lineno=30) -13:52:44,180 numba.core.byteflow DEBUG stack ['$phi60.0'] -13:52:44,180 numba.core.byteflow DEBUG end state. edges=[Edge(pc=112, stack=(), blockstack=(), npush=0), Edge(pc=62, stack=('$phi60.0', '$60for_iter.2'), blockstack=(), npush=0)] -13:52:44,180 numba.core.byteflow DEBUG pending: deque([State(pc_initial=112 nstack_initial=0), State(pc_initial=62 nstack_initial=2)]) -13:52:44,180 numba.core.byteflow DEBUG stack: [] -13:52:44,180 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=112 nstack_initial=0) -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=112, inst=LOAD_GLOBAL(arg=5, lineno=32) -13:52:44,180 numba.core.byteflow DEBUG stack [] -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_ATTR(arg=3, lineno=32) -13:52:44,180 numba.core.byteflow DEBUG stack ['$null$112.1', '$112load_global.0'] -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=134, inst=LOAD_FAST(arg=2, lineno=32) -13:52:44,180 numba.core.byteflow DEBUG stack ['$null$112.1', '$124load_attr.2'] -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=136, inst=PRECALL(arg=1, lineno=32) -13:52:44,180 numba.core.byteflow DEBUG stack ['$null$112.1', '$124load_attr.2', '$result134.3'] -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=140, inst=CALL(arg=1, lineno=32) -13:52:44,180 numba.core.byteflow DEBUG stack ['$null$112.1', '$124load_attr.2', '$result134.3'] -13:52:44,180 numba.core.byteflow DEBUG dispatch pc=150, inst=RETURN_VALUE(arg=None, lineno=32) -13:52:44,180 numba.core.byteflow DEBUG stack ['$140call.4'] -13:52:44,181 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,181 numba.core.byteflow DEBUG pending: deque([State(pc_initial=62 nstack_initial=2)]) -13:52:44,181 numba.core.byteflow DEBUG stack: ['$phi62.0', '$phi62.1'] -13:52:44,181 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=62 nstack_initial=2) -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=62, inst=STORE_FAST(arg=3, lineno=30) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$phi62.1'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=64, inst=LOAD_FAST(arg=2, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_FAST(arg=0, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=68, inst=LOAD_FAST(arg=3, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$x66.3'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=70, inst=BINARY_SUBSCR(arg=None, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$x66.3', '$i68.4'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=80, inst=LOAD_FAST(arg=1, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=82, inst=LOAD_FAST(arg=3, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5', '$y80.6'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=84, inst=BINARY_SUBSCR(arg=None, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5', '$y80.6', '$i82.7'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=10, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5', '$84binary_subscr.8'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=98, inst=LOAD_CONST(arg=3, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$binop_sub94.9'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=100, inst=BINARY_OP(arg=8, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$binop_sub94.9', '$const98.10'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=104, inst=BINARY_OP(arg=13, lineno=31) -13:52:44,181 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$binop_pow100.11'] -13:52:44,181 numba.core.byteflow DEBUG dispatch pc=108, inst=STORE_FAST(arg=2, lineno=31) -13:52:44,182 numba.core.byteflow DEBUG stack ['$phi62.0', '$binop_iadd104.12'] -13:52:44,182 numba.core.byteflow DEBUG dispatch pc=110, inst=JUMP_BACKWARD(arg=26, lineno=31) -13:52:44,182 numba.core.byteflow DEBUG stack ['$phi62.0'] -13:52:44,182 numba.core.byteflow DEBUG end state. edges=[Edge(pc=60, stack=('$phi62.0',), blockstack=(), npush=0)] -13:52:44,182 numba.core.byteflow DEBUG pending: deque([State(pc_initial=60 nstack_initial=1)]) -13:52:44,182 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,182 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=60 nstack_initial=1): {'$phi60.0'}, - State(pc_initial=62 nstack_initial=2): {'$phi62.1'}, - State(pc_initial=112 nstack_initial=0): set()}) -13:52:44,182 numba.core.byteflow DEBUG defmap: {'$phi60.0': State(pc_initial=0 nstack_initial=0), - '$phi62.1': State(pc_initial=60 nstack_initial=1)} -13:52:44,182 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi62.0', State(pc_initial=62 nstack_initial=2))}, - '$phi62.0': {('$phi60.0', State(pc_initial=60 nstack_initial=1))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:44,182 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi60.0', State(pc_initial=60 nstack_initial=1))}, - '$phi62.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:44,182 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:44,182 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:44,182 numba.core.byteflow DEBUG keep phismap: {'$phi60.0': {('$58get_iter.8', State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', State(pc_initial=60 nstack_initial=1))}} -13:52:44,182 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi60.0': '$58get_iter.8'}, - State(pc_initial=60 nstack_initial=1): {'$phi62.1': '$60for_iter.2'}}) -13:52:44,183 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,183 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$const4.0'}), (6, {'value': '$const4.0'}), (8, {'idx': 0, 'res': '$8load_global.1'}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {}), (20, {'res': '$x20.3'}), (22, {'item': '$x20.3', 'res': '$22load_attr.4'}), (24, {}), (26, {}), (28, {}), (30, {}), (32, {'res': '$const32.5'}), (34, {'index': '$const32.5', 'target': '$22load_attr.4', 'res': '$34binary_subscr.6'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {'func': '$8load_global.1', 'args': ['$34binary_subscr.6'], 'kw_names': None, 'res': '$48call.7'}), (50, {}), (52, {}), (54, {}), (56, {}), (58, {'value': '$48call.7', 'res': '$58get_iter.8'})), outgoing_phis={'$phi60.0': '$58get_iter.8'}, blockstack=(), active_try_block=None, outgoing_edgepushed={60: ('$58get_iter.8',)}) -13:52:44,183 numba.core.byteflow DEBUG block_infos State(pc_initial=60 nstack_initial=1): -AdaptBlockInfo(insts=((60, {'iterator': '$phi60.0', 'pair': '$60for_iter.1', 'indval': '$60for_iter.2', 'pred': '$60for_iter.3'}),), outgoing_phis={'$phi62.1': '$60for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={112: (), 62: ('$phi60.0', '$60for_iter.2')}) -13:52:44,183 numba.core.byteflow DEBUG block_infos State(pc_initial=62 nstack_initial=2): -AdaptBlockInfo(insts=((62, {'value': '$phi62.1'}), (64, {'res': '$result64.2'}), (66, {'res': '$x66.3'}), (68, {'res': '$i68.4'}), (70, {'index': '$i68.4', 'target': '$x66.3', 'res': '$70binary_subscr.5'}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {'res': '$y80.6'}), (82, {'res': '$i82.7'}), (84, {'index': '$i82.7', 'target': '$y80.6', 'res': '$84binary_subscr.8'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '-', 'lhs': '$70binary_subscr.5', 'rhs': '$84binary_subscr.8', 'res': '$binop_sub94.9'}), (96, {}), (98, {'res': '$const98.10'}), (100, {'op': '**', 'lhs': '$binop_sub94.9', 'rhs': '$const98.10', 'res': '$binop_pow100.11'}), (102, {}), (104, {'op': '+=', 'lhs': '$result64.2', 'rhs': '$binop_pow100.11', 'res': '$binop_iadd104.12'}), (106, {}), (108, {'value': '$binop_iadd104.12'}), (110, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={60: ('$phi62.0',)}) -13:52:44,183 numba.core.byteflow DEBUG block_infos State(pc_initial=112 nstack_initial=0): -AdaptBlockInfo(insts=((112, {'idx': 2, 'res': '$112load_global.0'}), (114, {}), (116, {}), (118, {}), (120, {}), (122, {}), (124, {'item': '$112load_global.0', 'res': '$124load_attr.2'}), (126, {}), (128, {}), (130, {}), (132, {}), (134, {'res': '$result134.3'}), (136, {}), (138, {}), (140, {'func': '$124load_attr.2', 'args': ['$result134.3'], 'kw_names': None, 'res': '$140call.4'}), (142, {}), (144, {}), (146, {}), (148, {}), (150, {'retval': '$140call.4', 'castval': '$150return_value.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,184 numba.core.interpreter DEBUG label 0: - x = arg(0, name=x) ['x'] - y = arg(1, name=y) ['y'] - result = const(float, 0.0) ['result'] - $8load_global.1 = global(range: ) ['$8load_global.1'] - $22load_attr.4 = getattr(value=x, attr=shape) ['$22load_attr.4', 'x'] - $const32.5 = const(int, 0) ['$const32.5'] - $34binary_subscr.6 = getitem(value=$22load_attr.4, index=$const32.5, fn=) ['$22load_attr.4', '$34binary_subscr.6', '$const32.5'] - $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) ['$34binary_subscr.6', '$48call.7', '$8load_global.1'] - $58get_iter.8 = getiter(value=$48call.7) ['$48call.7', '$58get_iter.8'] - $phi60.0 = $58get_iter.8 ['$58get_iter.8', '$phi60.0'] - jump 60 [] -label 60: - $60for_iter.1 = iternext(value=$phi60.0) ['$60for_iter.1', '$phi60.0'] - $60for_iter.2 = pair_first(value=$60for_iter.1) ['$60for_iter.1', '$60for_iter.2'] - $60for_iter.3 = pair_second(value=$60for_iter.1) ['$60for_iter.1', '$60for_iter.3'] - $phi62.1 = $60for_iter.2 ['$60for_iter.2', '$phi62.1'] - branch $60for_iter.3, 62, 112 ['$60for_iter.3'] -label 62: - i = $phi62.1 ['$phi62.1', 'i'] - $70binary_subscr.5 = getitem(value=x, index=i, fn=) ['$70binary_subscr.5', 'i', 'x'] - $84binary_subscr.8 = getitem(value=y, index=i, fn=) ['$84binary_subscr.8', 'i', 'y'] - $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 ['$70binary_subscr.5', '$84binary_subscr.8', '$binop_sub94.9'] - $const98.10 = const(int, 2) ['$const98.10'] - $binop_pow100.11 = $binop_sub94.9 ** $const98.10 ['$binop_pow100.11', '$binop_sub94.9', '$const98.10'] - $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd104.12', '$binop_pow100.11', 'result'] - result = $binop_iadd104.12 ['$binop_iadd104.12', 'result'] - jump 60 [] -label 112: - $112load_global.0 = global(np: ) ['$112load_global.0'] - $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) ['$112load_global.0', '$124load_attr.2'] - $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) ['$124load_attr.2', '$140call.4', 'result'] - $150return_value.5 = cast(value=$140call.4) ['$140call.4', '$150return_value.5'] - return $150return_value.5 ['$150return_value.5'] - -13:52:44,191 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,191 numba.core.ssa DEBUG Running -13:52:44,191 numba.core.ssa DEBUG on stmt: x = arg(0, name=x) -13:52:44,191 numba.core.ssa DEBUG on stmt: y = arg(1, name=y) -13:52:44,191 numba.core.ssa DEBUG on stmt: result = const(float, 0.0) -13:52:44,191 numba.core.ssa DEBUG on stmt: $8load_global.1 = global(range: ) -13:52:44,191 numba.core.ssa DEBUG on stmt: $22load_attr.4 = getattr(value=x, attr=shape) -13:52:44,191 numba.core.ssa DEBUG on stmt: $const32.5 = const(int, 0) -13:52:44,191 numba.core.ssa DEBUG on stmt: $34binary_subscr.6 = static_getitem(value=$22load_attr.4, index=0, index_var=$const32.5, fn=) -13:52:44,191 numba.core.ssa DEBUG on stmt: $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,191 numba.core.ssa DEBUG on stmt: $58get_iter.8 = getiter(value=$48call.7) -13:52:44,191 numba.core.ssa DEBUG on stmt: $phi60.0 = $58get_iter.8 -13:52:44,191 numba.core.ssa DEBUG on stmt: jump 60 -13:52:44,192 numba.core.ssa DEBUG ==== SSA block analysis pass on 60 -13:52:44,192 numba.core.ssa DEBUG Running -13:52:44,192 numba.core.ssa DEBUG on stmt: $60for_iter.1 = iternext(value=$phi60.0) -13:52:44,192 numba.core.ssa DEBUG on stmt: $60for_iter.2 = pair_first(value=$60for_iter.1) -13:52:44,192 numba.core.ssa DEBUG on stmt: $60for_iter.3 = pair_second(value=$60for_iter.1) -13:52:44,192 numba.core.ssa DEBUG on stmt: $phi62.1 = $60for_iter.2 -13:52:44,192 numba.core.ssa DEBUG on stmt: branch $60for_iter.3, 62, 112 -13:52:44,192 numba.core.ssa DEBUG ==== SSA block analysis pass on 62 -13:52:44,192 numba.core.ssa DEBUG Running -13:52:44,192 numba.core.ssa DEBUG on stmt: i = $phi62.1 -13:52:44,192 numba.core.ssa DEBUG on stmt: $70binary_subscr.5 = getitem(value=x, index=i, fn=) -13:52:44,192 numba.core.ssa DEBUG on stmt: $84binary_subscr.8 = getitem(value=y, index=i, fn=) -13:52:44,192 numba.core.ssa DEBUG on stmt: $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 -13:52:44,192 numba.core.ssa DEBUG on stmt: $const98.10 = const(int, 2) -13:52:44,192 numba.core.ssa DEBUG on stmt: $binop_pow100.11 = $binop_sub94.9 ** $const98.10 -13:52:44,192 numba.core.ssa DEBUG on stmt: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,192 numba.core.ssa DEBUG on stmt: result = $binop_iadd104.12 -13:52:44,192 numba.core.ssa DEBUG on stmt: jump 60 -13:52:44,192 numba.core.ssa DEBUG ==== SSA block analysis pass on 112 -13:52:44,192 numba.core.ssa DEBUG Running -13:52:44,192 numba.core.ssa DEBUG on stmt: $112load_global.0 = global(np: ) -13:52:44,192 numba.core.ssa DEBUG on stmt: $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) -13:52:44,192 numba.core.ssa DEBUG on stmt: $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,192 numba.core.ssa DEBUG on stmt: $150return_value.5 = cast(value=$140call.4) -13:52:44,192 numba.core.ssa DEBUG on stmt: return $150return_value.5 -13:52:44,193 numba.core.ssa DEBUG defs defaultdict(, - {'$112load_global.0': [(, - 112)], - '$124load_attr.2': [(, - 112)], - '$140call.4': [(, - 112)], - '$150return_value.5': [(, - 112)], - '$22load_attr.4': [(, - 0)], - '$34binary_subscr.6': [(, - 0)], - '$48call.7': [(, - 0)], - '$58get_iter.8': [(, - 0)], - '$60for_iter.1': [(, - 60)], - '$60for_iter.2': [(, - 60)], - '$60for_iter.3': [(, - 60)], - '$70binary_subscr.5': [(, - 62)], - '$84binary_subscr.8': [(, - 62)], - '$8load_global.1': [(, - 0)], - '$binop_iadd104.12': [(, - 62)], - '$binop_pow100.11': [(, - 62)], - '$binop_sub94.9': [(, - 62)], - '$const32.5': [(, - 0)], - '$const98.10': [(, - 62)], - '$phi60.0': [(, - 0)], - '$phi62.1': [(, - 60)], - 'i': [(, 62)], - 'result': [(, - 0), - (, - 62)], - 'x': [(, 0)], - 'y': [(, 0)]}) -13:52:44,193 numba.core.ssa DEBUG SSA violators -13:52:44,193 numba.core.ssa DEBUG Fix SSA violator on var result -13:52:44,193 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,193 numba.core.ssa DEBUG Running -13:52:44,193 numba.core.ssa DEBUG on stmt: x = arg(0, name=x) -13:52:44,193 numba.core.ssa DEBUG on stmt: y = arg(1, name=y) -13:52:44,193 numba.core.ssa DEBUG on stmt: result = const(float, 0.0) -13:52:44,193 numba.core.ssa DEBUG first assign: result -13:52:44,193 numba.core.ssa DEBUG replaced with: result = const(float, 0.0) -13:52:44,194 numba.core.ssa DEBUG on stmt: $8load_global.1 = global(range: ) -13:52:44,194 numba.core.ssa DEBUG on stmt: $22load_attr.4 = getattr(value=x, attr=shape) -13:52:44,194 numba.core.ssa DEBUG on stmt: $const32.5 = const(int, 0) -13:52:44,194 numba.core.ssa DEBUG on stmt: $34binary_subscr.6 = static_getitem(value=$22load_attr.4, index=0, index_var=$const32.5, fn=) -13:52:44,194 numba.core.ssa DEBUG on stmt: $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,194 numba.core.ssa DEBUG on stmt: $58get_iter.8 = getiter(value=$48call.7) -13:52:44,194 numba.core.ssa DEBUG on stmt: $phi60.0 = $58get_iter.8 -13:52:44,194 numba.core.ssa DEBUG on stmt: jump 60 -13:52:44,194 numba.core.ssa DEBUG ==== SSA block rewrite pass on 60 -13:52:44,194 numba.core.ssa DEBUG Running -13:52:44,194 numba.core.ssa DEBUG on stmt: $60for_iter.1 = iternext(value=$phi60.0) -13:52:44,194 numba.core.ssa DEBUG on stmt: $60for_iter.2 = pair_first(value=$60for_iter.1) -13:52:44,194 numba.core.ssa DEBUG on stmt: $60for_iter.3 = pair_second(value=$60for_iter.1) -13:52:44,194 numba.core.ssa DEBUG on stmt: $phi62.1 = $60for_iter.2 -13:52:44,194 numba.core.ssa DEBUG on stmt: branch $60for_iter.3, 62, 112 -13:52:44,194 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,194 numba.core.ssa DEBUG Running -13:52:44,194 numba.core.ssa DEBUG on stmt: i = $phi62.1 -13:52:44,194 numba.core.ssa DEBUG on stmt: $70binary_subscr.5 = getitem(value=x, index=i, fn=) -13:52:44,194 numba.core.ssa DEBUG on stmt: $84binary_subscr.8 = getitem(value=y, index=i, fn=) -13:52:44,194 numba.core.ssa DEBUG on stmt: $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 -13:52:44,194 numba.core.ssa DEBUG on stmt: $const98.10 = const(int, 2) -13:52:44,194 numba.core.ssa DEBUG on stmt: $binop_pow100.11 = $binop_sub94.9 ** $const98.10 -13:52:44,194 numba.core.ssa DEBUG on stmt: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,194 numba.core.ssa DEBUG on stmt: result = $binop_iadd104.12 -13:52:44,194 numba.core.ssa DEBUG replaced with: result.1 = $binop_iadd104.12 -13:52:44,194 numba.core.ssa DEBUG on stmt: jump 60 -13:52:44,194 numba.core.ssa DEBUG ==== SSA block rewrite pass on 112 -13:52:44,194 numba.core.ssa DEBUG Running -13:52:44,194 numba.core.ssa DEBUG on stmt: $112load_global.0 = global(np: ) -13:52:44,194 numba.core.ssa DEBUG on stmt: $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) -13:52:44,194 numba.core.ssa DEBUG on stmt: $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,194 numba.core.ssa DEBUG on stmt: $150return_value.5 = cast(value=$140call.4) -13:52:44,194 numba.core.ssa DEBUG on stmt: return $150return_value.5 -13:52:44,195 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 62: []}) -13:52:44,195 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,195 numba.core.ssa DEBUG Running -13:52:44,195 numba.core.ssa DEBUG on stmt: x = arg(0, name=x) -13:52:44,195 numba.core.ssa DEBUG on stmt: y = arg(1, name=y) -13:52:44,195 numba.core.ssa DEBUG on stmt: result = const(float, 0.0) -13:52:44,195 numba.core.ssa DEBUG on stmt: $8load_global.1 = global(range: ) -13:52:44,195 numba.core.ssa DEBUG on stmt: $22load_attr.4 = getattr(value=x, attr=shape) -13:52:44,195 numba.core.ssa DEBUG on stmt: $const32.5 = const(int, 0) -13:52:44,195 numba.core.ssa DEBUG on stmt: $34binary_subscr.6 = static_getitem(value=$22load_attr.4, index=0, index_var=$const32.5, fn=) -13:52:44,195 numba.core.ssa DEBUG on stmt: $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,195 numba.core.ssa DEBUG on stmt: $58get_iter.8 = getiter(value=$48call.7) -13:52:44,195 numba.core.ssa DEBUG on stmt: $phi60.0 = $58get_iter.8 -13:52:44,195 numba.core.ssa DEBUG on stmt: jump 60 -13:52:44,195 numba.core.ssa DEBUG ==== SSA block rewrite pass on 60 -13:52:44,195 numba.core.ssa DEBUG Running -13:52:44,195 numba.core.ssa DEBUG on stmt: $60for_iter.1 = iternext(value=$phi60.0) -13:52:44,195 numba.core.ssa DEBUG on stmt: $60for_iter.2 = pair_first(value=$60for_iter.1) -13:52:44,195 numba.core.ssa DEBUG on stmt: $60for_iter.3 = pair_second(value=$60for_iter.1) -13:52:44,195 numba.core.ssa DEBUG on stmt: $phi62.1 = $60for_iter.2 -13:52:44,195 numba.core.ssa DEBUG on stmt: branch $60for_iter.3, 62, 112 -13:52:44,195 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,195 numba.core.ssa DEBUG Running -13:52:44,195 numba.core.ssa DEBUG on stmt: i = $phi62.1 -13:52:44,195 numba.core.ssa DEBUG on stmt: $70binary_subscr.5 = getitem(value=x, index=i, fn=) -13:52:44,195 numba.core.ssa DEBUG on stmt: $84binary_subscr.8 = getitem(value=y, index=i, fn=) -13:52:44,195 numba.core.ssa DEBUG on stmt: $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 -13:52:44,196 numba.core.ssa DEBUG on stmt: $const98.10 = const(int, 2) -13:52:44,196 numba.core.ssa DEBUG on stmt: $binop_pow100.11 = $binop_sub94.9 ** $const98.10 -13:52:44,196 numba.core.ssa DEBUG on stmt: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,196 numba.core.ssa DEBUG find_def var='result' stmt=$binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,196 numba.core.ssa DEBUG find_def_from_top label 62 -13:52:44,196 numba.core.ssa DEBUG idom 60 from label 62 -13:52:44,196 numba.core.ssa DEBUG find_def_from_bottom label 60 -13:52:44,196 numba.core.ssa DEBUG find_def_from_top label 60 -13:52:44,196 numba.core.ssa DEBUG insert phi node result.2 = phi(incoming_values=[], incoming_blocks=[]) at 60 -13:52:44,196 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:44,196 numba.core.ssa DEBUG incoming_def result = const(float, 0.0) -13:52:44,196 numba.core.ssa DEBUG find_def_from_bottom label 62 -13:52:44,196 numba.core.ssa DEBUG incoming_def result.1 = $binop_iadd104.12 -13:52:44,196 numba.core.ssa DEBUG replaced with: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result.2, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,196 numba.core.ssa DEBUG on stmt: result.1 = $binop_iadd104.12 -13:52:44,196 numba.core.ssa DEBUG on stmt: jump 60 -13:52:44,196 numba.core.ssa DEBUG ==== SSA block rewrite pass on 112 -13:52:44,196 numba.core.ssa DEBUG Running -13:52:44,196 numba.core.ssa DEBUG on stmt: $112load_global.0 = global(np: ) -13:52:44,196 numba.core.ssa DEBUG on stmt: $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) -13:52:44,196 numba.core.ssa DEBUG on stmt: $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,196 numba.core.ssa DEBUG find_def var='result' stmt=$140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,196 numba.core.ssa DEBUG find_def_from_top label 112 -13:52:44,196 numba.core.ssa DEBUG idom 60 from label 112 -13:52:44,196 numba.core.ssa DEBUG find_def_from_bottom label 60 -13:52:44,196 numba.core.ssa DEBUG replaced with: $140call.4 = call $124load_attr.2(result.2, func=$124load_attr.2, args=[Var(result.2, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,196 numba.core.ssa DEBUG on stmt: $150return_value.5 = cast(value=$140call.4) -13:52:44,196 numba.core.ssa DEBUG on stmt: return $150return_value.5 -13:52:44,218 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=214) - 2 COPY_FREE_VARS(arg=3, lineno=214) - 4 RESUME(arg=0, lineno=214) - 6 PUSH_NULL(arg=None, lineno=216) - 8 LOAD_DEREF(arg=6, lineno=216) - 10 LOAD_CONST(arg=1, lineno=216) - 12 PRECALL(arg=1, lineno=216) - 16 CALL(arg=1, lineno=216) - 26 STORE_FAST(arg=2, lineno=216) - 28 PUSH_NULL(arg=None, lineno=217) - 30 LOAD_DEREF(arg=6, lineno=217) - 32 LOAD_FAST(arg=0, lineno=217) - 34 PRECALL(arg=1, lineno=217) - 38 CALL(arg=1, lineno=217) - 48 STORE_FAST(arg=0, lineno=217) - 50 LOAD_FAST(arg=1, lineno=218) - 52 LOAD_CONST(arg=2, lineno=218) - 54 COMPARE_OP(arg=0, lineno=218) - 60 POP_JUMP_FORWARD_IF_FALSE(arg=60, lineno=218) - 62 LOAD_CONST(arg=3, lineno=219) - 64 STORE_FAST(arg=3, lineno=219) - 66 LOAD_FAST(arg=1, lineno=220) - 68 UNARY_NEGATIVE(arg=None, lineno=220) - 70 STORE_FAST(arg=4, lineno=220) - 72 LOAD_FAST(arg=4, lineno=221) - 74 LOAD_CONST(arg=2, lineno=221) - 76 COMPARE_OP(arg=0, lineno=221) - 82 POP_JUMP_FORWARD_IF_FALSE(arg=7, lineno=221) - 84 LOAD_GLOBAL(arg=0, lineno=222) - 96 RAISE_VARARGS(arg=1, lineno=222) -> 98 LOAD_DEREF(arg=5, lineno=223) - 100 POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=223) - 102 LOAD_FAST(arg=0, lineno=224) - 104 LOAD_CONST(arg=2, lineno=224) - 106 COMPARE_OP(arg=2, lineno=224) - 112 POP_JUMP_FORWARD_IF_FALSE(arg=19, lineno=224) - 114 LOAD_DEREF(arg=7, lineno=225) - 116 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=225) - 118 LOAD_DEREF(arg=7, lineno=226) - 120 RETURN_VALUE(arg=None, lineno=226) -> 122 LOAD_GLOBAL(arg=3, lineno=228) - 134 LOAD_CONST(arg=4, lineno=228) - 136 PRECALL(arg=1, lineno=228) - 140 CALL(arg=1, lineno=228) - 150 RAISE_VARARGS(arg=1, lineno=228) -> 152 LOAD_FAST(arg=0, lineno=229) - 154 LOAD_CONST(arg=1, lineno=229) - 156 COMPARE_OP(arg=3, lineno=229) - 162 POP_JUMP_FORWARD_IF_FALSE(arg=8, lineno=229) - 164 LOAD_FAST(arg=0, lineno=229) - 166 LOAD_CONST(arg=5, lineno=229) - 168 COMPARE_OP(arg=3, lineno=229) - 174 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=229) - 176 LOAD_CONST(arg=2, lineno=230) - 178 RETURN_VALUE(arg=None, lineno=230) -> 180 JUMP_FORWARD(arg=4, lineno=230) -> 182 LOAD_CONST(arg=6, lineno=232) - 184 STORE_FAST(arg=3, lineno=232) - 186 LOAD_FAST(arg=1, lineno=233) - 188 STORE_FAST(arg=4, lineno=233) -> 190 LOAD_FAST(arg=4, lineno=234) - 192 LOAD_CONST(arg=7, lineno=234) - 194 COMPARE_OP(arg=4, lineno=234) - 200 POP_JUMP_FORWARD_IF_FALSE(arg=34, lineno=234) - 202 LOAD_GLOBAL(arg=5, lineno=236) - 214 LOAD_ATTR(arg=3, lineno=236) - 224 LOAD_FAST(arg=0, lineno=236) - 226 LOAD_GLOBAL(arg=9, lineno=236) - 238 LOAD_FAST(arg=1, lineno=236) - 240 PRECALL(arg=1, lineno=236) - 244 CALL(arg=1, lineno=236) - 254 PRECALL(arg=2, lineno=236) - 258 CALL(arg=2, lineno=236) - 268 RETURN_VALUE(arg=None, lineno=236) -> 270 LOAD_FAST(arg=4, lineno=237) - 272 LOAD_CONST(arg=2, lineno=237) - 274 COMPARE_OP(arg=3, lineno=237) - 280 POP_JUMP_FORWARD_IF_FALSE(arg=26, lineno=237) -> 282 LOAD_FAST(arg=4, lineno=238) - 284 LOAD_CONST(arg=1, lineno=238) - 286 BINARY_OP(arg=1, lineno=238) - 290 POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=238) - 292 LOAD_FAST(arg=2, lineno=239) - 294 LOAD_FAST(arg=0, lineno=239) - 296 BINARY_OP(arg=18, lineno=239) - 300 STORE_FAST(arg=2, lineno=239) -> 302 LOAD_FAST(arg=4, lineno=240) - 304 LOAD_CONST(arg=1, lineno=240) - 306 BINARY_OP(arg=22, lineno=240) - 310 STORE_FAST(arg=4, lineno=240) - 312 LOAD_FAST(arg=0, lineno=241) - 314 LOAD_FAST(arg=0, lineno=241) - 316 BINARY_OP(arg=18, lineno=241) - 320 STORE_FAST(arg=0, lineno=241) - 322 LOAD_FAST(arg=4, lineno=237) - 324 LOAD_CONST(arg=2, lineno=237) - 326 COMPARE_OP(arg=3, lineno=237) - 332 POP_JUMP_BACKWARD_IF_TRUE(arg=26, lineno=237) -> 334 LOAD_FAST(arg=3, lineno=243) - 336 POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=243) - 338 LOAD_CONST(arg=8, lineno=243) - 340 LOAD_FAST(arg=2, lineno=243) - 342 BINARY_OP(arg=11, lineno=243) - 346 JUMP_FORWARD(arg=1, lineno=243) -> 348 LOAD_FAST(arg=2, lineno=243) -> 350 RETURN_VALUE(arg=None, lineno=243) -13:52:44,218 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,218 numba.core.byteflow DEBUG stack: [] -13:52:44,218 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,218 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=214) -13:52:44,218 numba.core.byteflow DEBUG stack [] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=3, lineno=214) -13:52:44,219 numba.core.byteflow DEBUG stack [] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=214) -13:52:44,219 numba.core.byteflow DEBUG stack [] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=6, inst=PUSH_NULL(arg=None, lineno=216) -13:52:44,219 numba.core.byteflow DEBUG stack [] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_DEREF(arg=6, lineno=216) -13:52:44,219 numba.core.byteflow DEBUG stack ['$null$6.0'] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=10, inst=LOAD_CONST(arg=1, lineno=216) -13:52:44,219 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1'] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=12, inst=PRECALL(arg=1, lineno=216) -13:52:44,219 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$const10.2'] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=16, inst=CALL(arg=1, lineno=216) -13:52:44,219 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$const10.2'] -13:52:44,219 numba.core.byteflow DEBUG dispatch pc=26, inst=STORE_FAST(arg=2, lineno=216) -13:52:44,219 numba.core.byteflow DEBUG stack ['$16call.3'] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=28, inst=PUSH_NULL(arg=None, lineno=217) -13:52:44,220 numba.core.byteflow DEBUG stack [] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_DEREF(arg=6, lineno=217) -13:52:44,220 numba.core.byteflow DEBUG stack ['$null$28.4'] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_FAST(arg=0, lineno=217) -13:52:44,220 numba.core.byteflow DEBUG stack ['$null$28.4', '$30load_deref.5'] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=34, inst=PRECALL(arg=1, lineno=217) -13:52:44,220 numba.core.byteflow DEBUG stack ['$null$28.4', '$30load_deref.5', '$a32.6'] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=38, inst=CALL(arg=1, lineno=217) -13:52:44,220 numba.core.byteflow DEBUG stack ['$null$28.4', '$30load_deref.5', '$a32.6'] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=48, inst=STORE_FAST(arg=0, lineno=217) -13:52:44,220 numba.core.byteflow DEBUG stack ['$38call.7'] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_FAST(arg=1, lineno=218) -13:52:44,220 numba.core.byteflow DEBUG stack [] -13:52:44,220 numba.core.byteflow DEBUG dispatch pc=52, inst=LOAD_CONST(arg=2, lineno=218) -13:52:44,220 numba.core.byteflow DEBUG stack ['$b50.8'] -13:52:44,221 numba.core.byteflow DEBUG dispatch pc=54, inst=COMPARE_OP(arg=0, lineno=218) -13:52:44,221 numba.core.byteflow DEBUG stack ['$b50.8', '$const52.9'] -13:52:44,221 numba.core.byteflow DEBUG dispatch pc=60, inst=POP_JUMP_FORWARD_IF_FALSE(arg=60, lineno=218) -13:52:44,221 numba.core.byteflow DEBUG stack ['$54compare_op.10'] -13:52:44,221 numba.core.byteflow DEBUG end state. edges=[Edge(pc=62, stack=(), blockstack=(), npush=0), Edge(pc=182, stack=(), blockstack=(), npush=0)] -13:52:44,221 numba.core.byteflow DEBUG pending: deque([State(pc_initial=62 nstack_initial=0), State(pc_initial=182 nstack_initial=0)]) -13:52:44,221 numba.core.byteflow DEBUG stack: [] -13:52:44,221 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=62 nstack_initial=0) -13:52:44,221 numba.core.byteflow DEBUG dispatch pc=62, inst=LOAD_CONST(arg=3, lineno=219) -13:52:44,221 numba.core.byteflow DEBUG stack [] -13:52:44,221 numba.core.byteflow DEBUG dispatch pc=64, inst=STORE_FAST(arg=3, lineno=219) -13:52:44,221 numba.core.byteflow DEBUG stack ['$const62.0'] -13:52:44,221 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_FAST(arg=1, lineno=220) -13:52:44,221 numba.core.byteflow DEBUG stack [] -13:52:44,221 numba.core.byteflow DEBUG dispatch pc=68, inst=UNARY_NEGATIVE(arg=None, lineno=220) -13:52:44,221 numba.core.byteflow DEBUG stack ['$b66.1'] -13:52:44,221 numba.core.byteflow DEBUG dispatch pc=70, inst=STORE_FAST(arg=4, lineno=220) -13:52:44,222 numba.core.byteflow DEBUG stack ['$68unary_negative.2'] -13:52:44,222 numba.core.byteflow DEBUG dispatch pc=72, inst=LOAD_FAST(arg=4, lineno=221) -13:52:44,222 numba.core.byteflow DEBUG stack [] -13:52:44,222 numba.core.byteflow DEBUG dispatch pc=74, inst=LOAD_CONST(arg=2, lineno=221) -13:52:44,222 numba.core.byteflow DEBUG stack ['$exp72.3'] -13:52:44,222 numba.core.byteflow DEBUG dispatch pc=76, inst=COMPARE_OP(arg=0, lineno=221) -13:52:44,222 numba.core.byteflow DEBUG stack ['$exp72.3', '$const74.4'] -13:52:44,222 numba.core.byteflow DEBUG dispatch pc=82, inst=POP_JUMP_FORWARD_IF_FALSE(arg=7, lineno=221) -13:52:44,222 numba.core.byteflow DEBUG stack ['$76compare_op.5'] -13:52:44,222 numba.core.byteflow DEBUG end state. edges=[Edge(pc=84, stack=(), blockstack=(), npush=0), Edge(pc=98, stack=(), blockstack=(), npush=0)] -13:52:44,222 numba.core.byteflow DEBUG pending: deque([State(pc_initial=182 nstack_initial=0), State(pc_initial=84 nstack_initial=0), State(pc_initial=98 nstack_initial=0)]) -13:52:44,222 numba.core.byteflow DEBUG stack: [] -13:52:44,222 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=182 nstack_initial=0) -13:52:44,222 numba.core.byteflow DEBUG dispatch pc=182, inst=LOAD_CONST(arg=6, lineno=232) -13:52:44,222 numba.core.byteflow DEBUG stack [] -13:52:44,222 numba.core.byteflow DEBUG dispatch pc=184, inst=STORE_FAST(arg=3, lineno=232) -13:52:44,222 numba.core.byteflow DEBUG stack ['$const182.0'] -13:52:44,223 numba.core.byteflow DEBUG dispatch pc=186, inst=LOAD_FAST(arg=1, lineno=233) -13:52:44,223 numba.core.byteflow DEBUG stack [] -13:52:44,223 numba.core.byteflow DEBUG dispatch pc=188, inst=STORE_FAST(arg=4, lineno=233) -13:52:44,223 numba.core.byteflow DEBUG stack ['$b186.1'] -13:52:44,223 numba.core.byteflow DEBUG end state. edges=[Edge(pc=190, stack=(), blockstack=(), npush=0)] -13:52:44,223 numba.core.byteflow DEBUG pending: deque([State(pc_initial=84 nstack_initial=0), State(pc_initial=98 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:44,223 numba.core.byteflow DEBUG stack: [] -13:52:44,223 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=84 nstack_initial=0) -13:52:44,223 numba.core.byteflow DEBUG dispatch pc=84, inst=LOAD_GLOBAL(arg=0, lineno=222) -13:52:44,223 numba.core.byteflow DEBUG stack [] -13:52:44,223 numba.core.byteflow DEBUG dispatch pc=96, inst=RAISE_VARARGS(arg=1, lineno=222) -13:52:44,223 numba.core.byteflow DEBUG stack ['$84load_global.0'] -13:52:44,223 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,223 numba.core.byteflow DEBUG pending: deque([State(pc_initial=98 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:44,223 numba.core.byteflow DEBUG stack: [] -13:52:44,223 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=98 nstack_initial=0) -13:52:44,223 numba.core.byteflow DEBUG dispatch pc=98, inst=LOAD_DEREF(arg=5, lineno=223) -13:52:44,224 numba.core.byteflow DEBUG stack [] -13:52:44,224 numba.core.byteflow DEBUG dispatch pc=100, inst=POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=223) -13:52:44,224 numba.core.byteflow DEBUG stack ['$98load_deref.0'] -13:52:44,224 numba.core.byteflow DEBUG end state. edges=[Edge(pc=102, stack=(), blockstack=(), npush=0), Edge(pc=180, stack=(), blockstack=(), npush=0)] -13:52:44,224 numba.core.byteflow DEBUG pending: deque([State(pc_initial=190 nstack_initial=0), State(pc_initial=102 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:44,224 numba.core.byteflow DEBUG stack: [] -13:52:44,224 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=190 nstack_initial=0) -13:52:44,224 numba.core.byteflow DEBUG dispatch pc=190, inst=LOAD_FAST(arg=4, lineno=234) -13:52:44,224 numba.core.byteflow DEBUG stack [] -13:52:44,224 numba.core.byteflow DEBUG dispatch pc=192, inst=LOAD_CONST(arg=7, lineno=234) -13:52:44,224 numba.core.byteflow DEBUG stack ['$exp190.0'] -13:52:44,224 numba.core.byteflow DEBUG dispatch pc=194, inst=COMPARE_OP(arg=4, lineno=234) -13:52:44,224 numba.core.byteflow DEBUG stack ['$exp190.0', '$const192.1'] -13:52:44,224 numba.core.byteflow DEBUG dispatch pc=200, inst=POP_JUMP_FORWARD_IF_FALSE(arg=34, lineno=234) -13:52:44,224 numba.core.byteflow DEBUG stack ['$194compare_op.2'] -13:52:44,224 numba.core.byteflow DEBUG end state. edges=[Edge(pc=202, stack=(), blockstack=(), npush=0), Edge(pc=270, stack=(), blockstack=(), npush=0)] -13:52:44,225 numba.core.byteflow DEBUG pending: deque([State(pc_initial=102 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=202 nstack_initial=0), State(pc_initial=270 nstack_initial=0)]) -13:52:44,225 numba.core.byteflow DEBUG stack: [] -13:52:44,225 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=102 nstack_initial=0) -13:52:44,225 numba.core.byteflow DEBUG dispatch pc=102, inst=LOAD_FAST(arg=0, lineno=224) -13:52:44,225 numba.core.byteflow DEBUG stack [] -13:52:44,225 numba.core.byteflow DEBUG dispatch pc=104, inst=LOAD_CONST(arg=2, lineno=224) -13:52:44,225 numba.core.byteflow DEBUG stack ['$a102.0'] -13:52:44,225 numba.core.byteflow DEBUG dispatch pc=106, inst=COMPARE_OP(arg=2, lineno=224) -13:52:44,225 numba.core.byteflow DEBUG stack ['$a102.0', '$const104.1'] -13:52:44,225 numba.core.byteflow DEBUG dispatch pc=112, inst=POP_JUMP_FORWARD_IF_FALSE(arg=19, lineno=224) -13:52:44,225 numba.core.byteflow DEBUG stack ['$106compare_op.2'] -13:52:44,225 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=(), blockstack=(), npush=0), Edge(pc=152, stack=(), blockstack=(), npush=0)] -13:52:44,226 numba.core.byteflow DEBUG pending: deque([State(pc_initial=180 nstack_initial=0), State(pc_initial=202 nstack_initial=0), State(pc_initial=270 nstack_initial=0), State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0)]) -13:52:44,226 numba.core.byteflow DEBUG stack: [] -13:52:44,226 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=180 nstack_initial=0) -13:52:44,226 numba.core.byteflow DEBUG dispatch pc=180, inst=JUMP_FORWARD(arg=4, lineno=230) -13:52:44,226 numba.core.byteflow DEBUG stack [] -13:52:44,226 numba.core.byteflow DEBUG end state. edges=[Edge(pc=190, stack=(), blockstack=(), npush=0)] -13:52:44,226 numba.core.byteflow DEBUG pending: deque([State(pc_initial=202 nstack_initial=0), State(pc_initial=270 nstack_initial=0), State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:44,226 numba.core.byteflow DEBUG stack: [] -13:52:44,226 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=202 nstack_initial=0) -13:52:44,226 numba.core.byteflow DEBUG dispatch pc=202, inst=LOAD_GLOBAL(arg=5, lineno=236) -13:52:44,226 numba.core.byteflow DEBUG stack [] -13:52:44,227 numba.core.byteflow DEBUG dispatch pc=214, inst=LOAD_ATTR(arg=3, lineno=236) -13:52:44,227 numba.core.byteflow DEBUG stack ['$null$202.1', '$202load_global.0'] -13:52:44,227 numba.core.byteflow DEBUG dispatch pc=224, inst=LOAD_FAST(arg=0, lineno=236) -13:52:44,227 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2'] -13:52:44,227 numba.core.byteflow DEBUG dispatch pc=226, inst=LOAD_GLOBAL(arg=9, lineno=236) -13:52:44,227 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3'] -13:52:44,227 numba.core.byteflow DEBUG dispatch pc=238, inst=LOAD_FAST(arg=1, lineno=236) -13:52:44,227 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$null$226.5', '$226load_global.4'] -13:52:44,227 numba.core.byteflow DEBUG dispatch pc=240, inst=PRECALL(arg=1, lineno=236) -13:52:44,227 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$null$226.5', '$226load_global.4', '$b238.6'] -13:52:44,228 numba.core.byteflow DEBUG dispatch pc=244, inst=CALL(arg=1, lineno=236) -13:52:44,228 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$null$226.5', '$226load_global.4', '$b238.6'] -13:52:44,228 numba.core.byteflow DEBUG dispatch pc=254, inst=PRECALL(arg=2, lineno=236) -13:52:44,228 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$244call.7'] -13:52:44,228 numba.core.byteflow DEBUG dispatch pc=258, inst=CALL(arg=2, lineno=236) -13:52:44,228 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$244call.7'] -13:52:44,228 numba.core.byteflow DEBUG dispatch pc=268, inst=RETURN_VALUE(arg=None, lineno=236) -13:52:44,228 numba.core.byteflow DEBUG stack ['$258call.8'] -13:52:44,228 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,228 numba.core.byteflow DEBUG pending: deque([State(pc_initial=270 nstack_initial=0), State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:44,228 numba.core.byteflow DEBUG stack: [] -13:52:44,228 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=270 nstack_initial=0) -13:52:44,228 numba.core.byteflow DEBUG dispatch pc=270, inst=LOAD_FAST(arg=4, lineno=237) -13:52:44,228 numba.core.byteflow DEBUG stack [] -13:52:44,229 numba.core.byteflow DEBUG dispatch pc=272, inst=LOAD_CONST(arg=2, lineno=237) -13:52:44,229 numba.core.byteflow DEBUG stack ['$exp270.0'] -13:52:44,229 numba.core.byteflow DEBUG dispatch pc=274, inst=COMPARE_OP(arg=3, lineno=237) -13:52:44,229 numba.core.byteflow DEBUG stack ['$exp270.0', '$const272.1'] -13:52:44,229 numba.core.byteflow DEBUG dispatch pc=280, inst=POP_JUMP_FORWARD_IF_FALSE(arg=26, lineno=237) -13:52:44,229 numba.core.byteflow DEBUG stack ['$274compare_op.2'] -13:52:44,229 numba.core.byteflow DEBUG end state. edges=[Edge(pc=282, stack=(), blockstack=(), npush=0), Edge(pc=334, stack=(), blockstack=(), npush=0)] -13:52:44,229 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0)]) -13:52:44,229 numba.core.byteflow DEBUG stack: [] -13:52:44,229 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=114 nstack_initial=0) -13:52:44,229 numba.core.byteflow DEBUG dispatch pc=114, inst=LOAD_DEREF(arg=7, lineno=225) -13:52:44,229 numba.core.byteflow DEBUG stack [] -13:52:44,229 numba.core.byteflow DEBUG dispatch pc=116, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=225) -13:52:44,229 numba.core.byteflow DEBUG stack ['$114load_deref.0'] -13:52:44,229 numba.core.byteflow DEBUG end state. edges=[Edge(pc=118, stack=(), blockstack=(), npush=0), Edge(pc=122, stack=(), blockstack=(), npush=0)] -13:52:44,229 numba.core.byteflow DEBUG pending: deque([State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0)]) -13:52:44,230 numba.core.byteflow DEBUG stack: [] -13:52:44,230 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=152 nstack_initial=0) -13:52:44,230 numba.core.byteflow DEBUG dispatch pc=152, inst=LOAD_FAST(arg=0, lineno=229) -13:52:44,230 numba.core.byteflow DEBUG stack [] -13:52:44,230 numba.core.byteflow DEBUG dispatch pc=154, inst=LOAD_CONST(arg=1, lineno=229) -13:52:44,230 numba.core.byteflow DEBUG stack ['$a152.0'] -13:52:44,230 numba.core.byteflow DEBUG dispatch pc=156, inst=COMPARE_OP(arg=3, lineno=229) -13:52:44,230 numba.core.byteflow DEBUG stack ['$a152.0', '$const154.1'] -13:52:44,230 numba.core.byteflow DEBUG dispatch pc=162, inst=POP_JUMP_FORWARD_IF_FALSE(arg=8, lineno=229) -13:52:44,230 numba.core.byteflow DEBUG stack ['$156compare_op.2'] -13:52:44,230 numba.core.byteflow DEBUG end state. edges=[Edge(pc=164, stack=(), blockstack=(), npush=0), Edge(pc=180, stack=(), blockstack=(), npush=0)] -13:52:44,230 numba.core.byteflow DEBUG pending: deque([State(pc_initial=190 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:44,230 numba.core.byteflow DEBUG pending: deque([State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:44,230 numba.core.byteflow DEBUG stack: [] -13:52:44,230 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=282 nstack_initial=0) -13:52:44,230 numba.core.byteflow DEBUG dispatch pc=282, inst=LOAD_FAST(arg=4, lineno=238) -13:52:44,230 numba.core.byteflow DEBUG stack [] -13:52:44,231 numba.core.byteflow DEBUG dispatch pc=284, inst=LOAD_CONST(arg=1, lineno=238) -13:52:44,231 numba.core.byteflow DEBUG stack ['$exp282.0'] -13:52:44,231 numba.core.byteflow DEBUG dispatch pc=286, inst=BINARY_OP(arg=1, lineno=238) -13:52:44,231 numba.core.byteflow DEBUG stack ['$exp282.0', '$const284.1'] -13:52:44,231 numba.core.byteflow DEBUG dispatch pc=290, inst=POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=238) -13:52:44,231 numba.core.byteflow DEBUG stack ['$binop_and_286.2'] -13:52:44,231 numba.core.byteflow DEBUG end state. edges=[Edge(pc=292, stack=(), blockstack=(), npush=0), Edge(pc=302, stack=(), blockstack=(), npush=0)] -13:52:44,231 numba.core.byteflow DEBUG pending: deque([State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0)]) -13:52:44,231 numba.core.byteflow DEBUG stack: [] -13:52:44,231 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=334 nstack_initial=0) -13:52:44,231 numba.core.byteflow DEBUG dispatch pc=334, inst=LOAD_FAST(arg=3, lineno=243) -13:52:44,231 numba.core.byteflow DEBUG stack [] -13:52:44,231 numba.core.byteflow DEBUG dispatch pc=336, inst=POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=243) -13:52:44,231 numba.core.byteflow DEBUG stack ['$invert334.0'] -13:52:44,231 numba.core.byteflow DEBUG end state. edges=[Edge(pc=338, stack=(), blockstack=(), npush=0), Edge(pc=348, stack=(), blockstack=(), npush=0)] -13:52:44,231 numba.core.byteflow DEBUG pending: deque([State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0)]) -13:52:44,232 numba.core.byteflow DEBUG stack: [] -13:52:44,232 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=118 nstack_initial=0) -13:52:44,232 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_DEREF(arg=7, lineno=226) -13:52:44,232 numba.core.byteflow DEBUG stack [] -13:52:44,232 numba.core.byteflow DEBUG dispatch pc=120, inst=RETURN_VALUE(arg=None, lineno=226) -13:52:44,232 numba.core.byteflow DEBUG stack ['$118load_deref.0'] -13:52:44,232 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,232 numba.core.byteflow DEBUG pending: deque([State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0)]) -13:52:44,232 numba.core.byteflow DEBUG stack: [] -13:52:44,232 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=122 nstack_initial=0) -13:52:44,232 numba.core.byteflow DEBUG dispatch pc=122, inst=LOAD_GLOBAL(arg=3, lineno=228) -13:52:44,232 numba.core.byteflow DEBUG stack [] -13:52:44,232 numba.core.byteflow DEBUG dispatch pc=134, inst=LOAD_CONST(arg=4, lineno=228) -13:52:44,232 numba.core.byteflow DEBUG stack ['$null$122.1', '$122load_global.0'] -13:52:44,232 numba.core.byteflow DEBUG dispatch pc=136, inst=PRECALL(arg=1, lineno=228) -13:52:44,232 numba.core.byteflow DEBUG stack ['$null$122.1', '$122load_global.0', '$const134.2'] -13:52:44,233 numba.core.byteflow DEBUG dispatch pc=140, inst=CALL(arg=1, lineno=228) -13:52:44,233 numba.core.byteflow DEBUG stack ['$null$122.1', '$122load_global.0', '$const134.2'] -13:52:44,233 numba.core.byteflow DEBUG dispatch pc=150, inst=RAISE_VARARGS(arg=1, lineno=228) -13:52:44,233 numba.core.byteflow DEBUG stack ['$140call.3'] -13:52:44,233 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,233 numba.core.byteflow DEBUG pending: deque([State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0)]) -13:52:44,233 numba.core.byteflow DEBUG stack: [] -13:52:44,233 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=164 nstack_initial=0) -13:52:44,233 numba.core.byteflow DEBUG dispatch pc=164, inst=LOAD_FAST(arg=0, lineno=229) -13:52:44,233 numba.core.byteflow DEBUG stack [] -13:52:44,233 numba.core.byteflow DEBUG dispatch pc=166, inst=LOAD_CONST(arg=5, lineno=229) -13:52:44,233 numba.core.byteflow DEBUG stack ['$a164.0'] -13:52:44,233 numba.core.byteflow DEBUG dispatch pc=168, inst=COMPARE_OP(arg=3, lineno=229) -13:52:44,233 numba.core.byteflow DEBUG stack ['$a164.0', '$const166.1'] -13:52:44,233 numba.core.byteflow DEBUG dispatch pc=174, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=229) -13:52:44,233 numba.core.byteflow DEBUG stack ['$168compare_op.2'] -13:52:44,233 numba.core.byteflow DEBUG end state. edges=[Edge(pc=176, stack=(), blockstack=(), npush=0), Edge(pc=180, stack=(), blockstack=(), npush=0)] -13:52:44,234 numba.core.byteflow DEBUG pending: deque([State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:44,234 numba.core.byteflow DEBUG pending: deque([State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:44,234 numba.core.byteflow DEBUG stack: [] -13:52:44,234 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=292 nstack_initial=0) -13:52:44,234 numba.core.byteflow DEBUG dispatch pc=292, inst=LOAD_FAST(arg=2, lineno=239) -13:52:44,234 numba.core.byteflow DEBUG stack [] -13:52:44,234 numba.core.byteflow DEBUG dispatch pc=294, inst=LOAD_FAST(arg=0, lineno=239) -13:52:44,234 numba.core.byteflow DEBUG stack ['$r292.0'] -13:52:44,234 numba.core.byteflow DEBUG dispatch pc=296, inst=BINARY_OP(arg=18, lineno=239) -13:52:44,234 numba.core.byteflow DEBUG stack ['$r292.0', '$a294.1'] -13:52:44,234 numba.core.byteflow DEBUG dispatch pc=300, inst=STORE_FAST(arg=2, lineno=239) -13:52:44,234 numba.core.byteflow DEBUG stack ['$binop_imul296.2'] -13:52:44,234 numba.core.byteflow DEBUG end state. edges=[Edge(pc=302, stack=(), blockstack=(), npush=0)] -13:52:44,234 numba.core.byteflow DEBUG pending: deque([State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0)]) -13:52:44,234 numba.core.byteflow DEBUG stack: [] -13:52:44,234 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=302 nstack_initial=0) -13:52:44,234 numba.core.byteflow DEBUG dispatch pc=302, inst=LOAD_FAST(arg=4, lineno=240) -13:52:44,235 numba.core.byteflow DEBUG stack [] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=304, inst=LOAD_CONST(arg=1, lineno=240) -13:52:44,235 numba.core.byteflow DEBUG stack ['$exp302.0'] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=306, inst=BINARY_OP(arg=22, lineno=240) -13:52:44,235 numba.core.byteflow DEBUG stack ['$exp302.0', '$const304.1'] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=310, inst=STORE_FAST(arg=4, lineno=240) -13:52:44,235 numba.core.byteflow DEBUG stack ['$binop_irshift306.2'] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=312, inst=LOAD_FAST(arg=0, lineno=241) -13:52:44,235 numba.core.byteflow DEBUG stack [] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=314, inst=LOAD_FAST(arg=0, lineno=241) -13:52:44,235 numba.core.byteflow DEBUG stack ['$a312.3'] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=316, inst=BINARY_OP(arg=18, lineno=241) -13:52:44,235 numba.core.byteflow DEBUG stack ['$a312.3', '$a314.4'] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=320, inst=STORE_FAST(arg=0, lineno=241) -13:52:44,235 numba.core.byteflow DEBUG stack ['$binop_imul316.5'] -13:52:44,235 numba.core.byteflow DEBUG dispatch pc=322, inst=LOAD_FAST(arg=4, lineno=237) -13:52:44,235 numba.core.byteflow DEBUG stack [] -13:52:44,236 numba.core.byteflow DEBUG dispatch pc=324, inst=LOAD_CONST(arg=2, lineno=237) -13:52:44,236 numba.core.byteflow DEBUG stack ['$exp322.6'] -13:52:44,236 numba.core.byteflow DEBUG dispatch pc=326, inst=COMPARE_OP(arg=3, lineno=237) -13:52:44,236 numba.core.byteflow DEBUG stack ['$exp322.6', '$const324.7'] -13:52:44,236 numba.core.byteflow DEBUG dispatch pc=332, inst=POP_JUMP_BACKWARD_IF_TRUE(arg=26, lineno=237) -13:52:44,236 numba.core.byteflow DEBUG stack ['$326compare_op.8'] -13:52:44,236 numba.core.byteflow DEBUG end state. edges=[Edge(pc=334, stack=(), blockstack=(), npush=0), Edge(pc=282, stack=(), blockstack=(), npush=0)] -13:52:44,236 numba.core.byteflow DEBUG pending: deque([State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0)]) -13:52:44,236 numba.core.byteflow DEBUG stack: [] -13:52:44,236 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=338 nstack_initial=0) -13:52:44,236 numba.core.byteflow DEBUG dispatch pc=338, inst=LOAD_CONST(arg=8, lineno=243) -13:52:44,236 numba.core.byteflow DEBUG stack [] -13:52:44,236 numba.core.byteflow DEBUG dispatch pc=340, inst=LOAD_FAST(arg=2, lineno=243) -13:52:44,236 numba.core.byteflow DEBUG stack ['$const338.0'] -13:52:44,236 numba.core.byteflow DEBUG dispatch pc=342, inst=BINARY_OP(arg=11, lineno=243) -13:52:44,236 numba.core.byteflow DEBUG stack ['$const338.0', '$r340.1'] -13:52:44,237 numba.core.byteflow DEBUG dispatch pc=346, inst=JUMP_FORWARD(arg=1, lineno=243) -13:52:44,237 numba.core.byteflow DEBUG stack ['$binop_truediv342.2'] -13:52:44,237 numba.core.byteflow DEBUG end state. edges=[Edge(pc=350, stack=('$binop_truediv342.2',), blockstack=(), npush=0)] -13:52:44,237 numba.core.byteflow DEBUG pending: deque([State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1)]) -13:52:44,237 numba.core.byteflow DEBUG stack: [] -13:52:44,237 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=348 nstack_initial=0) -13:52:44,237 numba.core.byteflow DEBUG dispatch pc=348, inst=LOAD_FAST(arg=2, lineno=243) -13:52:44,237 numba.core.byteflow DEBUG stack [] -13:52:44,237 numba.core.byteflow DEBUG end state. edges=[Edge(pc=350, stack=('$r348.0',), blockstack=(), npush=0)] -13:52:44,237 numba.core.byteflow DEBUG pending: deque([State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:44,237 numba.core.byteflow DEBUG stack: [] -13:52:44,237 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=176 nstack_initial=0) -13:52:44,237 numba.core.byteflow DEBUG dispatch pc=176, inst=LOAD_CONST(arg=2, lineno=230) -13:52:44,237 numba.core.byteflow DEBUG stack [] -13:52:44,237 numba.core.byteflow DEBUG dispatch pc=178, inst=RETURN_VALUE(arg=None, lineno=230) -13:52:44,237 numba.core.byteflow DEBUG stack ['$const176.0'] -13:52:44,237 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,237 numba.core.byteflow DEBUG pending: deque([State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:44,238 numba.core.byteflow DEBUG pending: deque([State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:44,238 numba.core.byteflow DEBUG pending: deque([State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:44,238 numba.core.byteflow DEBUG pending: deque([State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:44,238 numba.core.byteflow DEBUG pending: deque([State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:44,238 numba.core.byteflow DEBUG stack: ['$phi350.0'] -13:52:44,238 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=350 nstack_initial=1) -13:52:44,238 numba.core.byteflow DEBUG dispatch pc=350, inst=RETURN_VALUE(arg=None, lineno=243) -13:52:44,238 numba.core.byteflow DEBUG stack ['$phi350.0'] -13:52:44,238 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,238 numba.core.byteflow DEBUG pending: deque([State(pc_initial=350 nstack_initial=1)]) -13:52:44,238 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,238 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=62 nstack_initial=0): set(), - State(pc_initial=84 nstack_initial=0): set(), - State(pc_initial=98 nstack_initial=0): set(), - State(pc_initial=102 nstack_initial=0): set(), - State(pc_initial=114 nstack_initial=0): set(), - State(pc_initial=118 nstack_initial=0): set(), - State(pc_initial=122 nstack_initial=0): set(), - State(pc_initial=152 nstack_initial=0): set(), - State(pc_initial=164 nstack_initial=0): set(), - State(pc_initial=176 nstack_initial=0): set(), - State(pc_initial=180 nstack_initial=0): set(), - State(pc_initial=182 nstack_initial=0): set(), - State(pc_initial=190 nstack_initial=0): set(), - State(pc_initial=202 nstack_initial=0): set(), - State(pc_initial=270 nstack_initial=0): set(), - State(pc_initial=282 nstack_initial=0): set(), - State(pc_initial=292 nstack_initial=0): set(), - State(pc_initial=302 nstack_initial=0): set(), - State(pc_initial=334 nstack_initial=0): set(), - State(pc_initial=338 nstack_initial=0): set(), - State(pc_initial=348 nstack_initial=0): set(), - State(pc_initial=350 nstack_initial=1): {'$phi350.0'}}) -13:52:44,238 numba.core.byteflow DEBUG defmap: {'$phi350.0': State(pc_initial=348 nstack_initial=0)} -13:52:44,238 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi350.0': {('$binop_truediv342.2', - State(pc_initial=338 nstack_initial=0)), - ('$r348.0', - State(pc_initial=348 nstack_initial=0))}}) -13:52:44,239 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi350.0': {('$binop_truediv342.2', - State(pc_initial=338 nstack_initial=0)), - ('$r348.0', - State(pc_initial=348 nstack_initial=0))}}) -13:52:44,239 numba.core.byteflow DEBUG keep phismap: {'$phi350.0': {('$binop_truediv342.2', State(pc_initial=338 nstack_initial=0)), - ('$r348.0', State(pc_initial=348 nstack_initial=0))}} -13:52:44,239 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=338 nstack_initial=0): {'$phi350.0': '$binop_truediv342.2'}, - State(pc_initial=348 nstack_initial=0): {'$phi350.0': '$r348.0'}}) -13:52:44,239 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {}), (8, {'res': '$8load_deref.1'}), (10, {'res': '$const10.2'}), (12, {}), (14, {}), (16, {'func': '$8load_deref.1', 'args': ['$const10.2'], 'kw_names': None, 'res': '$16call.3'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'value': '$16call.3'}), (28, {}), (30, {'res': '$30load_deref.5'}), (32, {'res': '$a32.6'}), (34, {}), (36, {}), (38, {'func': '$30load_deref.5', 'args': ['$a32.6'], 'kw_names': None, 'res': '$38call.7'}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {'value': '$38call.7'}), (50, {'res': '$b50.8'}), (52, {'res': '$const52.9'}), (54, {'lhs': '$b50.8', 'rhs': '$const52.9', 'res': '$54compare_op.10'}), (56, {}), (58, {}), (60, {'pred': '$54compare_op.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={62: (), 182: ()}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=62 nstack_initial=0): -AdaptBlockInfo(insts=((62, {'res': '$const62.0'}), (64, {'value': '$const62.0'}), (66, {'res': '$b66.1'}), (68, {'value': '$b66.1', 'res': '$68unary_negative.2'}), (70, {'value': '$68unary_negative.2'}), (72, {'res': '$exp72.3'}), (74, {'res': '$const74.4'}), (76, {'lhs': '$exp72.3', 'rhs': '$const74.4', 'res': '$76compare_op.5'}), (78, {}), (80, {}), (82, {'pred': '$76compare_op.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={84: (), 98: ()}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=84 nstack_initial=0): -AdaptBlockInfo(insts=((84, {'idx': 0, 'res': '$84load_global.0'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {}), (96, {'exc': '$84load_global.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=98 nstack_initial=0): -AdaptBlockInfo(insts=((98, {'res': '$98load_deref.0'}), (100, {'pred': '$98load_deref.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={102: (), 180: ()}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=102 nstack_initial=0): -AdaptBlockInfo(insts=((102, {'res': '$a102.0'}), (104, {'res': '$const104.1'}), (106, {'lhs': '$a102.0', 'rhs': '$const104.1', 'res': '$106compare_op.2'}), (108, {}), (110, {}), (112, {'pred': '$106compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: (), 152: ()}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=114 nstack_initial=0): -AdaptBlockInfo(insts=((114, {'res': '$114load_deref.0'}), (116, {'pred': '$114load_deref.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={118: (), 122: ()}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=118 nstack_initial=0): -AdaptBlockInfo(insts=((118, {'res': '$118load_deref.0'}), (120, {'retval': '$118load_deref.0', 'castval': '$120return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=122 nstack_initial=0): -AdaptBlockInfo(insts=((122, {'idx': 1, 'res': '$122load_global.0'}), (124, {}), (126, {}), (128, {}), (130, {}), (132, {}), (134, {'res': '$const134.2'}), (136, {}), (138, {}), (140, {'func': '$122load_global.0', 'args': ['$const134.2'], 'kw_names': None, 'res': '$140call.3'}), (142, {}), (144, {}), (146, {}), (148, {}), (150, {'exc': '$140call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=152 nstack_initial=0): -AdaptBlockInfo(insts=((152, {'res': '$a152.0'}), (154, {'res': '$const154.1'}), (156, {'lhs': '$a152.0', 'rhs': '$const154.1', 'res': '$156compare_op.2'}), (158, {}), (160, {}), (162, {'pred': '$156compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={164: (), 180: ()}) -13:52:44,239 numba.core.byteflow DEBUG block_infos State(pc_initial=164 nstack_initial=0): -AdaptBlockInfo(insts=((164, {'res': '$a164.0'}), (166, {'res': '$const166.1'}), (168, {'lhs': '$a164.0', 'rhs': '$const166.1', 'res': '$168compare_op.2'}), (170, {}), (172, {}), (174, {'pred': '$168compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={176: (), 180: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=176 nstack_initial=0): -AdaptBlockInfo(insts=((176, {'res': '$const176.0'}), (178, {'retval': '$const176.0', 'castval': '$178return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=180 nstack_initial=0): -AdaptBlockInfo(insts=((180, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={190: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=182 nstack_initial=0): -AdaptBlockInfo(insts=((182, {'res': '$const182.0'}), (184, {'value': '$const182.0'}), (186, {'res': '$b186.1'}), (188, {'value': '$b186.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={190: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=190 nstack_initial=0): -AdaptBlockInfo(insts=((190, {'res': '$exp190.0'}), (192, {'res': '$const192.1'}), (194, {'lhs': '$exp190.0', 'rhs': '$const192.1', 'res': '$194compare_op.2'}), (196, {}), (198, {}), (200, {'pred': '$194compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={202: (), 270: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=202 nstack_initial=0): -AdaptBlockInfo(insts=((202, {'idx': 2, 'res': '$202load_global.0'}), (204, {}), (206, {}), (208, {}), (210, {}), (212, {}), (214, {'item': '$202load_global.0', 'res': '$214load_attr.2'}), (216, {}), (218, {}), (220, {}), (222, {}), (224, {'res': '$a224.3'}), (226, {'idx': 4, 'res': '$226load_global.4'}), (228, {}), (230, {}), (232, {}), (234, {}), (236, {}), (238, {'res': '$b238.6'}), (240, {}), (242, {}), (244, {'func': '$226load_global.4', 'args': ['$b238.6'], 'kw_names': None, 'res': '$244call.7'}), (246, {}), (248, {}), (250, {}), (252, {}), (254, {}), (256, {}), (258, {'func': '$214load_attr.2', 'args': ['$a224.3', '$244call.7'], 'kw_names': None, 'res': '$258call.8'}), (260, {}), (262, {}), (264, {}), (266, {}), (268, {'retval': '$258call.8', 'castval': '$268return_value.9'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=270 nstack_initial=0): -AdaptBlockInfo(insts=((270, {'res': '$exp270.0'}), (272, {'res': '$const272.1'}), (274, {'lhs': '$exp270.0', 'rhs': '$const272.1', 'res': '$274compare_op.2'}), (276, {}), (278, {}), (280, {'pred': '$274compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={282: (), 334: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=282 nstack_initial=0): -AdaptBlockInfo(insts=((282, {'res': '$exp282.0'}), (284, {'res': '$const284.1'}), (286, {'op': '&', 'lhs': '$exp282.0', 'rhs': '$const284.1', 'res': '$binop_and_286.2'}), (288, {}), (290, {'pred': '$binop_and_286.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={292: (), 302: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=292 nstack_initial=0): -AdaptBlockInfo(insts=((292, {'res': '$r292.0'}), (294, {'res': '$a294.1'}), (296, {'op': '*=', 'lhs': '$r292.0', 'rhs': '$a294.1', 'res': '$binop_imul296.2'}), (298, {}), (300, {'value': '$binop_imul296.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={302: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=302 nstack_initial=0): -AdaptBlockInfo(insts=((302, {'res': '$exp302.0'}), (304, {'res': '$const304.1'}), (306, {'op': '>>=', 'lhs': '$exp302.0', 'rhs': '$const304.1', 'res': '$binop_irshift306.2'}), (308, {}), (310, {'value': '$binop_irshift306.2'}), (312, {'res': '$a312.3'}), (314, {'res': '$a314.4'}), (316, {'op': '*=', 'lhs': '$a312.3', 'rhs': '$a314.4', 'res': '$binop_imul316.5'}), (318, {}), (320, {'value': '$binop_imul316.5'}), (322, {'res': '$exp322.6'}), (324, {'res': '$const324.7'}), (326, {'lhs': '$exp322.6', 'rhs': '$const324.7', 'res': '$326compare_op.8'}), (328, {}), (330, {}), (332, {'pred': '$326compare_op.8'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={334: (), 282: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=334 nstack_initial=0): -AdaptBlockInfo(insts=((334, {'res': '$invert334.0'}), (336, {'pred': '$invert334.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={338: (), 348: ()}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=338 nstack_initial=0): -AdaptBlockInfo(insts=((338, {'res': '$const338.0'}), (340, {'res': '$r340.1'}), (342, {'op': '/', 'lhs': '$const338.0', 'rhs': '$r340.1', 'res': '$binop_truediv342.2'}), (344, {}), (346, {})), outgoing_phis={'$phi350.0': '$binop_truediv342.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={350: ('$binop_truediv342.2',)}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=348 nstack_initial=0): -AdaptBlockInfo(insts=((348, {'res': '$r348.0'}),), outgoing_phis={'$phi350.0': '$r348.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={350: ('$r348.0',)}) -13:52:44,240 numba.core.byteflow DEBUG block_infos State(pc_initial=350 nstack_initial=1): -AdaptBlockInfo(insts=((350, {'retval': '$phi350.0', 'castval': '$350return_value.1'}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,243 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - b = arg(1, name=b) ['b'] - $8load_deref.1 = freevar(tp: float32) ['$8load_deref.1'] - $const10.2 = const(int, 1) ['$const10.2'] - r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) ['$8load_deref.1', '$const10.2', 'r'] - $30load_deref.5 = freevar(tp: float32) ['$30load_deref.5'] - a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) ['$30load_deref.5', 'a', 'a.1'] - $const52.9 = const(int, 0) ['$const52.9'] - $54compare_op.10 = b < $const52.9 ['$54compare_op.10', '$const52.9', 'b'] - bool60 = global(bool: ) ['bool60'] - $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) ['$54compare_op.10', '$60pred', 'bool60'] - branch $60pred, 62, 182 ['$60pred'] -label 62: - invert = const(bool, True) ['invert'] - exp = unary(fn=, value=b) ['b', 'exp'] - $const74.4 = const(int, 0) ['$const74.4'] - $76compare_op.5 = exp < $const74.4 ['$76compare_op.5', '$const74.4', 'exp'] - bool82 = global(bool: ) ['bool82'] - $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) ['$76compare_op.5', '$82pred', 'bool82'] - branch $82pred, 84, 98 ['$82pred'] -label 84: - $84load_global.0 = global(OverflowError: ) ['$84load_global.0'] - raise $84load_global.0 ['$84load_global.0'] -label 98: - $98load_deref.0 = freevar(is_integer: False) ['$98load_deref.0'] - bool100 = global(bool: ) ['bool100'] - $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) ['$100pred', '$98load_deref.0', 'bool100'] - branch $100pred, 102, 180 ['$100pred'] -label 102: - $const104.1 = const(int, 0) ['$const104.1'] - $106compare_op.2 = a.1 == $const104.1 ['$106compare_op.2', '$const104.1', 'a.1'] - bool112 = global(bool: ) ['bool112'] - $112pred = call bool112($106compare_op.2, func=bool112, args=(Var($106compare_op.2, numbers.py:224),), kws=(), vararg=None, varkwarg=None, target=None) ['$106compare_op.2', '$112pred', 'bool112'] - branch $112pred, 114, 152 ['$112pred'] -label 114: - $114load_deref.0 = freevar(zerodiv_return: False) ['$114load_deref.0'] - bool116 = global(bool: ) ['bool116'] - $116pred = call bool116($114load_deref.0, func=bool116, args=(Var($114load_deref.0, numbers.py:225),), kws=(), vararg=None, varkwarg=None, target=None) ['$114load_deref.0', '$116pred', 'bool116'] - branch $116pred, 118, 122 ['$116pred'] -label 118: - $118load_deref.0 = freevar(zerodiv_return: False) ['$118load_deref.0'] - $120return_value.1 = cast(value=$118load_deref.0) ['$118load_deref.0', '$120return_value.1'] - return $120return_value.1 ['$120return_value.1'] -label 122: - $122load_global.0 = global(ZeroDivisionError: ) ['$122load_global.0'] - $const134.2 = const(str, 0 cannot be raised to a negative power) ['$const134.2'] - $140call.3 = call $122load_global.0($const134.2, func=$122load_global.0, args=[Var($const134.2, numbers.py:228)], kws=(), vararg=None, varkwarg=None, target=None) ['$122load_global.0', '$140call.3', '$const134.2'] - raise $140call.3 ['$140call.3'] -label 152: - $const154.1 = const(int, 1) ['$const154.1'] - $156compare_op.2 = a.1 != $const154.1 ['$156compare_op.2', '$const154.1', 'a.1'] - bool162 = global(bool: ) ['bool162'] - $162pred = call bool162($156compare_op.2, func=bool162, args=(Var($156compare_op.2, numbers.py:229),), kws=(), vararg=None, varkwarg=None, target=None) ['$156compare_op.2', '$162pred', 'bool162'] - branch $162pred, 164, 180 ['$162pred'] -label 164: - $const166.1 = const(int, -1) ['$const166.1'] - $168compare_op.2 = a.1 != $const166.1 ['$168compare_op.2', '$const166.1', 'a.1'] - bool174 = global(bool: ) ['bool174'] - $174pred = call bool174($168compare_op.2, func=bool174, args=(Var($168compare_op.2, numbers.py:229),), kws=(), vararg=None, varkwarg=None, target=None) ['$168compare_op.2', '$174pred', 'bool174'] - branch $174pred, 176, 180 ['$174pred'] -label 176: - $const176.0 = const(int, 0) ['$const176.0'] - $178return_value.1 = cast(value=$const176.0) ['$178return_value.1', '$const176.0'] - return $178return_value.1 ['$178return_value.1'] -label 180: - jump 190 [] -label 182: - invert = const(bool, False) ['invert'] - exp = b ['b', 'exp'] - jump 190 [] -label 190: - $const192.1 = const(int, 65536) ['$const192.1'] - $194compare_op.2 = exp > $const192.1 ['$194compare_op.2', '$const192.1', 'exp'] - bool200 = global(bool: ) ['bool200'] - $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) ['$194compare_op.2', '$200pred', 'bool200'] - branch $200pred, 202, 270 ['$200pred'] -label 202: - $202load_global.0 = global(math: ) ['$202load_global.0'] - $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) ['$202load_global.0', '$214load_attr.2'] - $226load_global.4 = global(float: ) ['$226load_global.4'] - $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) ['$226load_global.4', '$244call.7', 'b'] - $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) ['$214load_attr.2', '$244call.7', '$258call.8', 'a.1'] - $268return_value.9 = cast(value=$258call.8) ['$258call.8', '$268return_value.9'] - return $268return_value.9 ['$268return_value.9'] -label 270: - $const272.1 = const(int, 0) ['$const272.1'] - $274compare_op.2 = exp != $const272.1 ['$274compare_op.2', '$const272.1', 'exp'] - bool280 = global(bool: ) ['bool280'] - $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) ['$274compare_op.2', '$280pred', 'bool280'] - branch $280pred, 282, 334 ['$280pred'] -label 282: - $const284.1 = const(int, 1) ['$const284.1'] - $binop_and_286.2 = exp & $const284.1 ['$binop_and_286.2', '$const284.1', 'exp'] - bool290 = global(bool: ) ['bool290'] - $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) ['$290pred', '$binop_and_286.2', 'bool290'] - branch $290pred, 292, 302 ['$290pred'] -label 292: - $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_imul296.2', 'a.1', 'r'] - r = $binop_imul296.2 ['$binop_imul296.2', 'r'] - jump 302 [] -label 302: - $const304.1 = const(int, 1) ['$const304.1'] - $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_irshift306.2', '$const304.1', 'exp'] - exp = $binop_irshift306.2 ['$binop_irshift306.2', 'exp'] - $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_imul316.5', 'a.1', 'a.1'] - a.1 = $binop_imul316.5 ['$binop_imul316.5', 'a.1'] - $const324.7 = const(int, 0) ['$const324.7'] - $326compare_op.8 = exp != $const324.7 ['$326compare_op.8', '$const324.7', 'exp'] - bool332 = global(bool: ) ['bool332'] - $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) ['$326compare_op.8', '$332pred', 'bool332'] - branch $332pred, 282, 334 ['$332pred'] -label 334: - bool336 = global(bool: ) ['bool336'] - $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) ['$336pred', 'bool336', 'invert'] - branch $336pred, 338, 348 ['$336pred'] -label 338: - $const338.0 = const(float, 1.0) ['$const338.0'] - $binop_truediv342.2 = $const338.0 / r ['$binop_truediv342.2', '$const338.0', 'r'] - $phi350.0 = $binop_truediv342.2 ['$binop_truediv342.2', '$phi350.0'] - jump 350 [] -label 348: - $phi350.0 = r ['$phi350.0', 'r'] - jump 350 [] -label 350: - $350return_value.1 = cast(value=$phi350.0) ['$350return_value.1', '$phi350.0'] - return $350return_value.1 ['$350return_value.1'] - -13:52:44,256 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,256 numba.core.ssa DEBUG Running -13:52:44,257 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,257 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,257 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,257 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,257 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,257 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,257 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,257 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,257 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,257 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,257 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,257 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,257 numba.core.ssa DEBUG ==== SSA block analysis pass on 62 -13:52:44,257 numba.core.ssa DEBUG Running -13:52:44,257 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,258 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,258 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,258 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,258 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,258 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,258 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,258 numba.core.ssa DEBUG ==== SSA block analysis pass on 84 -13:52:44,258 numba.core.ssa DEBUG Running -13:52:44,258 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,258 numba.core.ssa DEBUG on stmt: raise -13:52:44,258 numba.core.ssa DEBUG ==== SSA block analysis pass on 98 -13:52:44,258 numba.core.ssa DEBUG Running -13:52:44,258 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,258 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,259 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,259 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,259 numba.core.ssa DEBUG ==== SSA block analysis pass on 180 -13:52:44,259 numba.core.ssa DEBUG Running -13:52:44,259 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,259 numba.core.ssa DEBUG ==== SSA block analysis pass on 182 -13:52:44,259 numba.core.ssa DEBUG Running -13:52:44,259 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:44,259 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,259 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,259 numba.core.ssa DEBUG ==== SSA block analysis pass on 190 -13:52:44,259 numba.core.ssa DEBUG Running -13:52:44,259 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,259 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,259 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,259 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,260 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,260 numba.core.ssa DEBUG ==== SSA block analysis pass on 202 -13:52:44,260 numba.core.ssa DEBUG Running -13:52:44,260 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,260 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,260 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,260 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,260 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,260 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,260 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,260 numba.core.ssa DEBUG ==== SSA block analysis pass on 270 -13:52:44,260 numba.core.ssa DEBUG Running -13:52:44,260 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,260 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,260 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,261 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,261 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,261 numba.core.ssa DEBUG ==== SSA block analysis pass on 282 -13:52:44,261 numba.core.ssa DEBUG Running -13:52:44,261 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,261 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,261 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,261 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,261 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,261 numba.core.ssa DEBUG ==== SSA block analysis pass on 292 -13:52:44,261 numba.core.ssa DEBUG Running -13:52:44,261 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,261 numba.core.ssa DEBUG on stmt: r = $binop_imul296.2 -13:52:44,261 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,261 numba.core.ssa DEBUG ==== SSA block analysis pass on 302 -13:52:44,261 numba.core.ssa DEBUG Running -13:52:44,261 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,262 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,262 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,262 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,262 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:44,262 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,262 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,262 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,262 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,262 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,262 numba.core.ssa DEBUG ==== SSA block analysis pass on 334 -13:52:44,262 numba.core.ssa DEBUG Running -13:52:44,262 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,262 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,262 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,262 numba.core.ssa DEBUG ==== SSA block analysis pass on 338 -13:52:44,262 numba.core.ssa DEBUG Running -13:52:44,263 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,263 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r -13:52:44,263 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,263 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,263 numba.core.ssa DEBUG ==== SSA block analysis pass on 348 -13:52:44,263 numba.core.ssa DEBUG Running -13:52:44,263 numba.core.ssa DEBUG on stmt: $phi350.0 = r -13:52:44,263 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,263 numba.core.ssa DEBUG ==== SSA block analysis pass on 350 -13:52:44,263 numba.core.ssa DEBUG Running -13:52:44,263 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,263 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,265 numba.core.ssa DEBUG defs defaultdict(, - {'$100pred': [(, - 98)], - '$194compare_op.2': [(, - 190)], - '$200pred': [(, - 190)], - '$202load_global.0': [(, - 202)], - '$214load_attr.2': [(, - 202)], - '$226load_global.4': [(, - 202)], - '$244call.7': [(, - 202)], - '$258call.8': [(, - 202)], - '$268return_value.9': [(, - 202)], - '$274compare_op.2': [(, - 270)], - '$280pred': [(, - 270)], - '$290pred': [(, - 282)], - '$30load_deref.5': [(, - 0)], - '$326compare_op.8': [(, - 302)], - '$332pred': [(, - 302)], - '$336pred': [(, - 334)], - '$350return_value.1': [(, - 350)], - '$54compare_op.10': [(, - 0)], - '$60pred': [(, - 0)], - '$76compare_op.5': [(, - 62)], - '$82pred': [(, - 62)], - '$84load_global.0': [(, - 84)], - '$8load_deref.1': [(, - 0)], - '$98load_deref.0': [(, - 98)], - '$binop_and_286.2': [(, - 282)], - '$binop_imul296.2': [(, - 292)], - '$binop_imul316.5': [(, - 302)], - '$binop_irshift306.2': [(, - 302)], - '$binop_truediv342.2': [(, - 338)], - '$const10.2': [(, - 0)], - '$const192.1': [(, - 190)], - '$const272.1': [(, - 270)], - '$const284.1': [(, - 282)], - '$const304.1': [(, - 302)], - '$const324.7': [(, - 302)], - '$const338.0': [(, - 338)], - '$const52.9': [(, - 0)], - '$const74.4': [(, - 62)], - '$phi350.0': [(, - 338), - (, - 348)], - 'a': [(, 0)], - 'a.1': [(, 0), - (, - 302)], - 'b': [(, 0)], - 'bool100': [(, - 98)], - 'bool200': [(, - 190)], - 'bool280': [(, - 270)], - 'bool290': [(, - 282)], - 'bool332': [(, - 302)], - 'bool336': [(, - 334)], - 'bool60': [(, - 0)], - 'bool82': [(, - 62)], - 'exp': [(, 62), - (, 182), - (, - 302)], - 'invert': [(, - 62), - (, - 182)], - 'r': [(, 0), - (, 292)]}) -13:52:44,265 numba.core.ssa DEBUG SSA violators -13:52:44,265 numba.core.ssa DEBUG Fix SSA violator on var r -13:52:44,265 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,265 numba.core.ssa DEBUG Running -13:52:44,266 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,266 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,266 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,266 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,266 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,266 numba.core.ssa DEBUG first assign: r -13:52:44,266 numba.core.ssa DEBUG replaced with: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,266 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,266 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,266 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,266 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,266 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,266 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,266 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,266 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,266 numba.core.ssa DEBUG Running -13:52:44,267 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,267 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,267 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,267 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,267 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,267 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,267 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,267 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,267 numba.core.ssa DEBUG Running -13:52:44,267 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,267 numba.core.ssa DEBUG on stmt: raise -13:52:44,267 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,267 numba.core.ssa DEBUG Running -13:52:44,267 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,267 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,267 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,267 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,268 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,268 numba.core.ssa DEBUG Running -13:52:44,268 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,268 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,268 numba.core.ssa DEBUG Running -13:52:44,268 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:44,268 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,268 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,268 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,268 numba.core.ssa DEBUG Running -13:52:44,268 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,268 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,268 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,268 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,268 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,268 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,268 numba.core.ssa DEBUG Running -13:52:44,268 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,269 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,269 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,269 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,269 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,269 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,269 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,269 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,269 numba.core.ssa DEBUG Running -13:52:44,269 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,269 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,269 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,269 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,269 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,269 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,269 numba.core.ssa DEBUG Running -13:52:44,269 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,269 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,270 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,270 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,270 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,270 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,270 numba.core.ssa DEBUG Running -13:52:44,270 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,270 numba.core.ssa DEBUG on stmt: r = $binop_imul296.2 -13:52:44,270 numba.core.ssa DEBUG replaced with: r.1 = $binop_imul296.2 -13:52:44,270 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,270 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,270 numba.core.ssa DEBUG Running -13:52:44,270 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,270 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,270 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,270 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,270 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:44,270 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,271 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,271 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,271 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,271 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,271 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,271 numba.core.ssa DEBUG Running -13:52:44,271 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,271 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,271 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,271 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,271 numba.core.ssa DEBUG Running -13:52:44,271 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,271 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r -13:52:44,271 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,271 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,271 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,271 numba.core.ssa DEBUG Running -13:52:44,272 numba.core.ssa DEBUG on stmt: $phi350.0 = r -13:52:44,272 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,272 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,272 numba.core.ssa DEBUG Running -13:52:44,272 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,272 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,272 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 292: []}) -13:52:44,272 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,272 numba.core.ssa DEBUG Running -13:52:44,272 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,272 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,272 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,272 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,272 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,272 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,272 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,272 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,272 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,273 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,273 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,273 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,273 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,273 numba.core.ssa DEBUG Running -13:52:44,273 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,273 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,273 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,273 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,273 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,273 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,273 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,273 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,273 numba.core.ssa DEBUG Running -13:52:44,273 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,273 numba.core.ssa DEBUG on stmt: raise -13:52:44,273 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,273 numba.core.ssa DEBUG Running -13:52:44,273 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,274 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,274 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,274 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,274 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,274 numba.core.ssa DEBUG Running -13:52:44,274 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,274 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,274 numba.core.ssa DEBUG Running -13:52:44,274 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:44,274 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,274 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,274 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,274 numba.core.ssa DEBUG Running -13:52:44,274 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,274 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,274 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,274 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,274 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,274 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,275 numba.core.ssa DEBUG Running -13:52:44,275 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,275 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,275 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,275 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,275 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,275 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,275 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,275 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,275 numba.core.ssa DEBUG Running -13:52:44,275 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,275 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,275 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,275 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,275 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,275 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,275 numba.core.ssa DEBUG Running -13:52:44,275 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,275 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,276 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,276 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,276 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,276 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,276 numba.core.ssa DEBUG Running -13:52:44,276 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,276 numba.core.ssa DEBUG find_def var='r' stmt=$binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,276 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,276 numba.core.ssa DEBUG idom 282 from label 292 -13:52:44,276 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:44,276 numba.core.ssa DEBUG find_def_from_top label 282 -13:52:44,276 numba.core.ssa DEBUG insert phi node r.2 = phi(incoming_values=[], incoming_blocks=[]) at 282 -13:52:44,276 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:44,276 numba.core.ssa DEBUG find_def_from_top label 302 -13:52:44,276 numba.core.ssa DEBUG insert phi node r.3 = phi(incoming_values=[], incoming_blocks=[]) at 302 -13:52:44,276 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:44,276 numba.core.ssa DEBUG incoming_def r.2 = phi(incoming_values=[], incoming_blocks=[]) -13:52:44,276 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,276 numba.core.ssa DEBUG incoming_def r.1 = $binop_imul296.2 -13:52:44,276 numba.core.ssa DEBUG incoming_def r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,276 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:44,276 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:44,276 numba.core.ssa DEBUG idom 190 from label 270 -13:52:44,276 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:44,276 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:44,276 numba.core.ssa DEBUG idom 0 from label 190 -13:52:44,276 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:44,276 numba.core.ssa DEBUG incoming_def r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,277 numba.core.ssa DEBUG replaced with: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,277 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,277 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,277 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,277 numba.core.ssa DEBUG Running -13:52:44,277 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,277 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,277 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,277 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,277 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:44,277 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,277 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,277 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,277 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,277 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,277 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,277 numba.core.ssa DEBUG Running -13:52:44,277 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,277 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,277 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,278 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,278 numba.core.ssa DEBUG Running -13:52:44,278 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,278 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r -13:52:44,278 numba.core.ssa DEBUG find_def var='r' stmt=$binop_truediv342.2 = $const338.0 / r -13:52:44,278 numba.core.ssa DEBUG find_def_from_top label 338 -13:52:44,278 numba.core.ssa DEBUG idom 334 from label 338 -13:52:44,278 numba.core.ssa DEBUG find_def_from_bottom label 334 -13:52:44,278 numba.core.ssa DEBUG find_def_from_top label 334 -13:52:44,278 numba.core.ssa DEBUG insert phi node r.4 = phi(incoming_values=[], incoming_blocks=[]) at 334 -13:52:44,278 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:44,278 numba.core.ssa DEBUG incoming_def r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,278 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:44,278 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:44,278 numba.core.ssa DEBUG idom 190 from label 270 -13:52:44,278 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:44,278 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:44,278 numba.core.ssa DEBUG idom 0 from label 190 -13:52:44,278 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:44,278 numba.core.ssa DEBUG incoming_def r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,278 numba.core.ssa DEBUG replaced with: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,278 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,278 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,278 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,278 numba.core.ssa DEBUG Running -13:52:44,278 numba.core.ssa DEBUG on stmt: $phi350.0 = r -13:52:44,279 numba.core.ssa DEBUG find_def var='r' stmt=$phi350.0 = r -13:52:44,279 numba.core.ssa DEBUG find_def_from_top label 348 -13:52:44,279 numba.core.ssa DEBUG idom 334 from label 348 -13:52:44,279 numba.core.ssa DEBUG find_def_from_bottom label 334 -13:52:44,279 numba.core.ssa DEBUG replaced with: $phi350.0 = r.4 -13:52:44,279 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,279 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,279 numba.core.ssa DEBUG Running -13:52:44,279 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,279 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,279 numba.core.ssa DEBUG Fix SSA violator on var a.1 -13:52:44,279 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,279 numba.core.ssa DEBUG Running -13:52:44,279 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,279 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,279 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,279 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,279 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,279 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,279 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,280 numba.core.ssa DEBUG first assign: a.1 -13:52:44,280 numba.core.ssa DEBUG replaced with: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,280 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,280 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,280 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,280 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,280 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,280 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,280 numba.core.ssa DEBUG Running -13:52:44,280 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,280 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,280 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,280 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,280 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,280 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,280 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,280 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,280 numba.core.ssa DEBUG Running -13:52:44,281 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,281 numba.core.ssa DEBUG on stmt: raise -13:52:44,281 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,281 numba.core.ssa DEBUG Running -13:52:44,281 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,281 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,281 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,281 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,281 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,281 numba.core.ssa DEBUG Running -13:52:44,281 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,281 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,281 numba.core.ssa DEBUG Running -13:52:44,281 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:44,281 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,281 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,281 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,281 numba.core.ssa DEBUG Running -13:52:44,281 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,282 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,282 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,282 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,282 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,282 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,282 numba.core.ssa DEBUG Running -13:52:44,282 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,282 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,282 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,282 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,282 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,282 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,282 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,282 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,282 numba.core.ssa DEBUG Running -13:52:44,282 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,282 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,282 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,283 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,283 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,283 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,283 numba.core.ssa DEBUG Running -13:52:44,283 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,283 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,283 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,283 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,283 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,283 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,283 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,283 numba.core.ssa DEBUG Running -13:52:44,283 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,283 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,283 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,283 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,283 numba.core.ssa DEBUG Running -13:52:44,283 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,284 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,284 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,284 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,284 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,284 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:44,284 numba.core.ssa DEBUG replaced with: a.1.1 = $binop_imul316.5 -13:52:44,284 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,284 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,284 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,284 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,284 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,284 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,284 numba.core.ssa DEBUG Running -13:52:44,284 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,284 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,284 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,284 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,285 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,285 numba.core.ssa DEBUG Running -13:52:44,285 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,285 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,285 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,285 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,285 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,285 numba.core.ssa DEBUG Running -13:52:44,285 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:44,285 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,285 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,285 numba.core.ssa DEBUG Running -13:52:44,285 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,285 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,285 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 302: []}) -13:52:44,285 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,285 numba.core.ssa DEBUG Running -13:52:44,285 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,286 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,286 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,286 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,286 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,286 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,286 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,286 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,286 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,286 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,286 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,286 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,286 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,286 numba.core.ssa DEBUG Running -13:52:44,286 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,286 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,286 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,286 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,286 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,286 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,286 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,286 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,287 numba.core.ssa DEBUG Running -13:52:44,287 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,287 numba.core.ssa DEBUG on stmt: raise -13:52:44,287 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,287 numba.core.ssa DEBUG Running -13:52:44,287 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,287 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,287 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,287 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,287 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,287 numba.core.ssa DEBUG Running -13:52:44,287 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,287 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,287 numba.core.ssa DEBUG Running -13:52:44,287 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:44,287 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,287 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,287 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,287 numba.core.ssa DEBUG Running -13:52:44,287 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,287 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,288 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,288 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,288 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,288 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,288 numba.core.ssa DEBUG Running -13:52:44,288 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,288 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,288 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,288 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,288 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,288 numba.core.ssa DEBUG find_def var='a.1' stmt=$258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,288 numba.core.ssa DEBUG find_def_from_top label 202 -13:52:44,288 numba.core.ssa DEBUG idom 190 from label 202 -13:52:44,288 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:44,288 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:44,288 numba.core.ssa DEBUG idom 0 from label 190 -13:52:44,288 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:44,288 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,288 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,288 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,288 numba.core.ssa DEBUG Running -13:52:44,288 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,289 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,289 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,289 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,289 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,289 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,289 numba.core.ssa DEBUG Running -13:52:44,289 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,289 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,289 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,289 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,289 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,289 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,289 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,289 numba.core.ssa DEBUG Running -13:52:44,289 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,289 numba.core.ssa DEBUG find_def var='a.1' stmt=$binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,289 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,289 numba.core.ssa DEBUG idom 282 from label 292 -13:52:44,289 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:44,289 numba.core.ssa DEBUG find_def_from_top label 282 -13:52:44,289 numba.core.ssa DEBUG insert phi node a.1.2 = phi(incoming_values=[], incoming_blocks=[]) at 282 -13:52:44,289 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:44,290 numba.core.ssa DEBUG incoming_def a.1.1 = $binop_imul316.5 -13:52:44,290 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:44,290 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:44,290 numba.core.ssa DEBUG idom 190 from label 270 -13:52:44,290 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:44,290 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:44,290 numba.core.ssa DEBUG idom 0 from label 190 -13:52:44,290 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:44,290 numba.core.ssa DEBUG incoming_def a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,290 numba.core.ssa DEBUG replaced with: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,290 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,290 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,290 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,290 numba.core.ssa DEBUG Running -13:52:44,290 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,290 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,290 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,290 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,290 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,290 numba.core.ssa DEBUG find_def var='a.1' stmt=$binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,290 numba.core.ssa DEBUG find_def_from_top label 302 -13:52:44,290 numba.core.ssa DEBUG idom 282 from label 302 -13:52:44,290 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:44,290 numba.core.ssa DEBUG replaced with: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,290 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:44,291 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,291 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,291 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,291 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,291 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,291 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,291 numba.core.ssa DEBUG Running -13:52:44,291 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,291 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,291 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,291 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,291 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,291 numba.core.ssa DEBUG Running -13:52:44,291 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,291 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,291 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,291 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,291 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,291 numba.core.ssa DEBUG Running -13:52:44,291 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:44,292 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,292 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,292 numba.core.ssa DEBUG Running -13:52:44,292 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,292 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,292 numba.core.ssa DEBUG Fix SSA violator on var invert -13:52:44,292 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,292 numba.core.ssa DEBUG Running -13:52:44,292 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,292 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,292 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,292 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,292 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,292 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,292 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,292 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,292 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,292 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,292 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,293 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,293 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,293 numba.core.ssa DEBUG Running -13:52:44,293 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,293 numba.core.ssa DEBUG first assign: invert -13:52:44,293 numba.core.ssa DEBUG replaced with: invert = const(bool, True) -13:52:44,293 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,293 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,293 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,293 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,293 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,293 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,293 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,293 numba.core.ssa DEBUG Running -13:52:44,293 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,293 numba.core.ssa DEBUG on stmt: raise -13:52:44,293 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,293 numba.core.ssa DEBUG Running -13:52:44,294 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,294 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,294 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,294 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,294 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,294 numba.core.ssa DEBUG Running -13:52:44,294 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,294 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,294 numba.core.ssa DEBUG Running -13:52:44,294 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:44,294 numba.core.ssa DEBUG replaced with: invert.1 = const(bool, False) -13:52:44,294 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,294 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,294 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,294 numba.core.ssa DEBUG Running -13:52:44,294 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,294 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,294 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,294 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,295 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,295 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,295 numba.core.ssa DEBUG Running -13:52:44,295 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,295 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,295 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,295 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,295 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,295 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,295 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,295 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,295 numba.core.ssa DEBUG Running -13:52:44,295 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,295 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,295 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,295 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,295 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,296 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,296 numba.core.ssa DEBUG Running -13:52:44,296 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:44,296 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,296 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,296 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,296 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,296 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,296 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,296 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,296 numba.core.ssa DEBUG Running -13:52:44,296 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,296 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,296 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,296 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,296 numba.core.ssa DEBUG Running -13:52:44,296 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,296 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,297 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,297 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,297 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,297 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:44,297 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,297 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,297 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,297 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,297 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,297 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,297 numba.core.ssa DEBUG Running -13:52:44,297 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,297 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,297 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,297 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,297 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,297 numba.core.ssa DEBUG Running -13:52:44,297 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,298 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,298 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,298 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,298 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,298 numba.core.ssa DEBUG Running -13:52:44,298 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:44,298 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,298 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,298 numba.core.ssa DEBUG Running -13:52:44,298 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,298 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,298 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {62: [], - 182: []}) -13:52:44,298 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,298 numba.core.ssa DEBUG Running -13:52:44,298 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,298 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,298 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,298 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,299 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,299 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,299 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,299 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,299 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,299 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,299 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,299 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,299 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,299 numba.core.ssa DEBUG Running -13:52:44,299 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,299 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,299 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,299 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,299 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,299 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,299 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,299 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,299 numba.core.ssa DEBUG Running -13:52:44,299 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,300 numba.core.ssa DEBUG on stmt: raise -13:52:44,300 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,300 numba.core.ssa DEBUG Running -13:52:44,300 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,300 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,300 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,300 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,300 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,300 numba.core.ssa DEBUG Running -13:52:44,300 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,300 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,300 numba.core.ssa DEBUG Running -13:52:44,300 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:44,300 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,300 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,300 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,300 numba.core.ssa DEBUG Running -13:52:44,300 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,300 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,300 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,300 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,301 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,301 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,301 numba.core.ssa DEBUG Running -13:52:44,301 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,301 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,301 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,301 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,301 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,301 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,301 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,301 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,301 numba.core.ssa DEBUG Running -13:52:44,301 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,301 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,301 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,301 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,301 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,301 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,301 numba.core.ssa DEBUG Running -13:52:44,301 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:44,302 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,302 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,302 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,302 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,302 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,302 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,302 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,302 numba.core.ssa DEBUG Running -13:52:44,302 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,302 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,302 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,302 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,302 numba.core.ssa DEBUG Running -13:52:44,302 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,302 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,302 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,302 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,302 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,302 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:44,303 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,303 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,303 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,303 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,303 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,303 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,303 numba.core.ssa DEBUG Running -13:52:44,303 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,303 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,303 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,303 numba.core.ssa DEBUG find_def var='invert' stmt=$336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,303 numba.core.ssa DEBUG find_def_from_top label 334 -13:52:44,303 numba.core.ssa DEBUG idom 270 from label 334 -13:52:44,303 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:44,303 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:44,303 numba.core.ssa DEBUG idom 190 from label 270 -13:52:44,303 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:44,303 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:44,303 numba.core.ssa DEBUG insert phi node invert.2 = phi(incoming_values=[], incoming_blocks=[]) at 190 -13:52:44,303 numba.core.ssa DEBUG find_def_from_bottom label 180 -13:52:44,303 numba.core.ssa DEBUG find_def_from_top label 180 -13:52:44,303 numba.core.ssa DEBUG idom 98 from label 180 -13:52:44,303 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:44,303 numba.core.ssa DEBUG find_def_from_top label 98 -13:52:44,303 numba.core.ssa DEBUG idom 62 from label 98 -13:52:44,303 numba.core.ssa DEBUG find_def_from_bottom label 62 -13:52:44,304 numba.core.ssa DEBUG incoming_def invert = const(bool, True) -13:52:44,304 numba.core.ssa DEBUG find_def_from_bottom label 182 -13:52:44,304 numba.core.ssa DEBUG incoming_def invert.1 = const(bool, False) -13:52:44,304 numba.core.ssa DEBUG replaced with: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,304 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,304 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,304 numba.core.ssa DEBUG Running -13:52:44,304 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,304 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,304 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,304 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,304 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,304 numba.core.ssa DEBUG Running -13:52:44,304 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:44,304 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,304 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,304 numba.core.ssa DEBUG Running -13:52:44,304 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,304 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,304 numba.core.ssa DEBUG Fix SSA violator on var exp -13:52:44,304 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,305 numba.core.ssa DEBUG Running -13:52:44,305 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,305 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,305 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,305 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,305 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,305 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,305 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,305 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,305 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,305 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,305 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,305 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,305 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,305 numba.core.ssa DEBUG Running -13:52:44,305 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,306 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,306 numba.core.ssa DEBUG first assign: exp -13:52:44,306 numba.core.ssa DEBUG replaced with: exp = unary(fn=, value=b) -13:52:44,306 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,306 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,306 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,306 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,306 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,306 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,306 numba.core.ssa DEBUG Running -13:52:44,306 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,306 numba.core.ssa DEBUG on stmt: raise -13:52:44,306 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,306 numba.core.ssa DEBUG Running -13:52:44,306 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,306 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,306 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,307 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,307 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,307 numba.core.ssa DEBUG Running -13:52:44,307 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,307 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,307 numba.core.ssa DEBUG Running -13:52:44,307 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:44,307 numba.core.ssa DEBUG on stmt: exp = b -13:52:44,307 numba.core.ssa DEBUG replaced with: exp.1 = b -13:52:44,307 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,307 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,307 numba.core.ssa DEBUG Running -13:52:44,307 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:44,307 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,307 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,307 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,307 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,307 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,308 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,308 numba.core.ssa DEBUG Running -13:52:44,308 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,308 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,308 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,308 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,308 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,308 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,308 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,308 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,308 numba.core.ssa DEBUG Running -13:52:44,308 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,308 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,308 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,308 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,308 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,308 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,309 numba.core.ssa DEBUG Running -13:52:44,309 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:44,309 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,309 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,309 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,309 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,309 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,309 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,309 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,309 numba.core.ssa DEBUG Running -13:52:44,309 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,309 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,309 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,309 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,309 numba.core.ssa DEBUG Running -13:52:44,309 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,309 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,310 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,310 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:44,310 numba.core.ssa DEBUG replaced with: exp.2 = $binop_irshift306.2 -13:52:44,310 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,310 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:44,310 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,310 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,310 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,310 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,310 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,310 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,310 numba.core.ssa DEBUG Running -13:52:44,310 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,310 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,310 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,310 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,310 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,310 numba.core.ssa DEBUG Running -13:52:44,311 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,311 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,311 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,311 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,311 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,311 numba.core.ssa DEBUG Running -13:52:44,311 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:44,311 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,311 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,311 numba.core.ssa DEBUG Running -13:52:44,311 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,311 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,311 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {62: [], - 182: [], - 302: []}) -13:52:44,311 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,311 numba.core.ssa DEBUG Running -13:52:44,311 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,311 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,312 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,312 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,312 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,312 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,312 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,312 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,312 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,312 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,312 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,312 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,312 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,312 numba.core.ssa DEBUG Running -13:52:44,312 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,312 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,312 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,312 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,312 numba.core.ssa DEBUG find_def var='exp' stmt=$76compare_op.5 = exp < $const74.4 -13:52:44,312 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,312 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,312 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,313 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,313 numba.core.ssa DEBUG Running -13:52:44,313 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,313 numba.core.ssa DEBUG on stmt: raise -13:52:44,313 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,313 numba.core.ssa DEBUG Running -13:52:44,313 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,313 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,313 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,313 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,313 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,313 numba.core.ssa DEBUG Running -13:52:44,313 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,313 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,313 numba.core.ssa DEBUG Running -13:52:44,313 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:44,313 numba.core.ssa DEBUG on stmt: exp.1 = b -13:52:44,313 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,313 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,313 numba.core.ssa DEBUG Running -13:52:44,313 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:44,314 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,314 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:44,314 numba.core.ssa DEBUG find_def var='exp' stmt=$194compare_op.2 = exp > $const192.1 -13:52:44,314 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:44,314 numba.core.ssa DEBUG insert phi node exp.3 = phi(incoming_values=[], incoming_blocks=[]) at 190 -13:52:44,314 numba.core.ssa DEBUG find_def_from_bottom label 180 -13:52:44,314 numba.core.ssa DEBUG find_def_from_top label 180 -13:52:44,314 numba.core.ssa DEBUG idom 98 from label 180 -13:52:44,314 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:44,314 numba.core.ssa DEBUG find_def_from_top label 98 -13:52:44,314 numba.core.ssa DEBUG idom 62 from label 98 -13:52:44,314 numba.core.ssa DEBUG find_def_from_bottom label 62 -13:52:44,314 numba.core.ssa DEBUG incoming_def exp = unary(fn=, value=b) -13:52:44,314 numba.core.ssa DEBUG find_def_from_bottom label 182 -13:52:44,314 numba.core.ssa DEBUG incoming_def exp.1 = b -13:52:44,314 numba.core.ssa DEBUG replaced with: $194compare_op.2 = exp.3 > $const192.1 -13:52:44,314 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,314 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,314 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,314 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,314 numba.core.ssa DEBUG Running -13:52:44,314 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,314 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,314 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,314 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,315 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,315 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,315 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,315 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,315 numba.core.ssa DEBUG Running -13:52:44,315 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,315 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:44,315 numba.core.ssa DEBUG find_def var='exp' stmt=$274compare_op.2 = exp != $const272.1 -13:52:44,315 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:44,315 numba.core.ssa DEBUG idom 190 from label 270 -13:52:44,315 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:44,315 numba.core.ssa DEBUG replaced with: $274compare_op.2 = exp.3 != $const272.1 -13:52:44,315 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,315 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,315 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,315 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,315 numba.core.ssa DEBUG Running -13:52:44,315 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:44,315 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,315 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,315 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:44,316 numba.core.ssa DEBUG find_def var='exp' stmt=$binop_and_286.2 = exp & $const284.1 -13:52:44,316 numba.core.ssa DEBUG find_def_from_top label 282 -13:52:44,316 numba.core.ssa DEBUG insert phi node exp.4 = phi(incoming_values=[], incoming_blocks=[]) at 282 -13:52:44,316 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:44,316 numba.core.ssa DEBUG incoming_def exp.2 = $binop_irshift306.2 -13:52:44,316 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:44,316 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:44,316 numba.core.ssa DEBUG idom 190 from label 270 -13:52:44,316 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:44,316 numba.core.ssa DEBUG incoming_def exp.3 = phi(incoming_values=[Var(exp, numbers.py:220), Var(exp.1, numbers.py:233)], incoming_blocks=[180, 182]) -13:52:44,316 numba.core.ssa DEBUG replaced with: $binop_and_286.2 = exp.4 & $const284.1 -13:52:44,316 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,316 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,316 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,316 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,316 numba.core.ssa DEBUG Running -13:52:44,316 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,316 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,316 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,316 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,316 numba.core.ssa DEBUG Running -13:52:44,316 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,316 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,317 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,317 numba.core.ssa DEBUG find_def var='exp' stmt=$binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,317 numba.core.ssa DEBUG find_def_from_top label 302 -13:52:44,317 numba.core.ssa DEBUG idom 282 from label 302 -13:52:44,317 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:44,317 numba.core.ssa DEBUG replaced with: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp.4, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,317 numba.core.ssa DEBUG on stmt: exp.2 = $binop_irshift306.2 -13:52:44,317 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,317 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:44,317 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,317 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:44,317 numba.core.ssa DEBUG find_def var='exp' stmt=$326compare_op.8 = exp != $const324.7 -13:52:44,317 numba.core.ssa DEBUG replaced with: $326compare_op.8 = exp.2 != $const324.7 -13:52:44,317 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,317 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,317 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,317 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,317 numba.core.ssa DEBUG Running -13:52:44,317 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,317 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,317 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,318 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,318 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,318 numba.core.ssa DEBUG Running -13:52:44,318 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,318 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,318 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,318 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,318 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,318 numba.core.ssa DEBUG Running -13:52:44,318 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:44,318 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,318 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,318 numba.core.ssa DEBUG Running -13:52:44,318 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,318 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,318 numba.core.ssa DEBUG Fix SSA violator on var $phi350.0 -13:52:44,318 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,318 numba.core.ssa DEBUG Running -13:52:44,318 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,318 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,318 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,319 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,319 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,319 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,319 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,319 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,319 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,319 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,319 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,319 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,319 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,319 numba.core.ssa DEBUG Running -13:52:44,319 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,319 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,319 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,319 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,319 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,319 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,320 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,320 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,320 numba.core.ssa DEBUG Running -13:52:44,320 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,320 numba.core.ssa DEBUG on stmt: raise -13:52:44,320 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,320 numba.core.ssa DEBUG Running -13:52:44,320 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,320 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,320 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,320 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,320 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,320 numba.core.ssa DEBUG Running -13:52:44,320 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,320 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,320 numba.core.ssa DEBUG Running -13:52:44,320 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:44,320 numba.core.ssa DEBUG on stmt: exp.1 = b -13:52:44,321 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,321 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,321 numba.core.ssa DEBUG Running -13:52:44,321 numba.core.ssa DEBUG on stmt: exp.3 = phi(incoming_values=[Var(exp, numbers.py:220), Var(exp.1, numbers.py:233)], incoming_blocks=[180, 182]) -13:52:44,321 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:44,321 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,321 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp.3 > $const192.1 -13:52:44,321 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,321 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,321 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,321 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,321 numba.core.ssa DEBUG Running -13:52:44,321 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,321 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,321 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,321 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,321 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,321 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,322 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,322 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,322 numba.core.ssa DEBUG Running -13:52:44,322 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,322 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp.3 != $const272.1 -13:52:44,322 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,322 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,322 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,322 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,322 numba.core.ssa DEBUG Running -13:52:44,322 numba.core.ssa DEBUG on stmt: exp.4 = phi(incoming_values=[Var(exp.2, numbers.py:240), Var(exp.3, numbers.py:234)], incoming_blocks=[302, 270]) -13:52:44,322 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:44,322 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,322 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,322 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp.4 & $const284.1 -13:52:44,322 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,322 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,323 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,323 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,323 numba.core.ssa DEBUG Running -13:52:44,323 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,323 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,323 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,323 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,323 numba.core.ssa DEBUG Running -13:52:44,323 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,323 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,323 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp.4, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,323 numba.core.ssa DEBUG on stmt: exp.2 = $binop_irshift306.2 -13:52:44,323 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,323 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:44,323 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,323 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp.2 != $const324.7 -13:52:44,323 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,323 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,324 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,324 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,324 numba.core.ssa DEBUG Running -13:52:44,324 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,324 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,324 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,324 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,324 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,324 numba.core.ssa DEBUG Running -13:52:44,324 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,324 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,324 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,324 numba.core.ssa DEBUG first assign: $phi350.0 -13:52:44,324 numba.core.ssa DEBUG replaced with: $phi350.0 = $binop_truediv342.2 -13:52:44,324 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,324 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,324 numba.core.ssa DEBUG Running -13:52:44,324 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:44,324 numba.core.ssa DEBUG replaced with: $phi350.0.1 = r.4 -13:52:44,325 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,325 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,325 numba.core.ssa DEBUG Running -13:52:44,325 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,325 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,325 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {338: [], - 348: []}) -13:52:44,325 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,325 numba.core.ssa DEBUG Running -13:52:44,325 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:44,325 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:44,325 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float32) -13:52:44,325 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:44,325 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,325 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float32) -13:52:44,325 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,325 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:44,325 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:44,325 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:44,326 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,326 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:44,326 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:44,326 numba.core.ssa DEBUG Running -13:52:44,326 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:44,326 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:44,326 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:44,326 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:44,326 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:44,326 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,326 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:44,326 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:44,326 numba.core.ssa DEBUG Running -13:52:44,326 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:44,326 numba.core.ssa DEBUG on stmt: raise -13:52:44,326 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:44,326 numba.core.ssa DEBUG Running -13:52:44,326 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:44,326 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:44,326 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,326 numba.core.ssa DEBUG on stmt: jump 180 -13:52:44,327 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:44,327 numba.core.ssa DEBUG Running -13:52:44,327 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,327 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:44,327 numba.core.ssa DEBUG Running -13:52:44,327 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:44,327 numba.core.ssa DEBUG on stmt: exp.1 = b -13:52:44,327 numba.core.ssa DEBUG on stmt: jump 190 -13:52:44,327 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:44,327 numba.core.ssa DEBUG Running -13:52:44,327 numba.core.ssa DEBUG on stmt: exp.3 = phi(incoming_values=[Var(exp, numbers.py:220), Var(exp.1, numbers.py:233)], incoming_blocks=[180, 182]) -13:52:44,327 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:44,327 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:44,327 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp.3 > $const192.1 -13:52:44,327 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:44,327 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,327 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:44,327 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:44,327 numba.core.ssa DEBUG Running -13:52:44,327 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:44,328 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:44,328 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:44,328 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,328 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,328 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:44,328 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:44,328 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:44,328 numba.core.ssa DEBUG Running -13:52:44,328 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:44,328 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp.3 != $const272.1 -13:52:44,328 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:44,328 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,328 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:44,328 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:44,328 numba.core.ssa DEBUG Running -13:52:44,328 numba.core.ssa DEBUG on stmt: exp.4 = phi(incoming_values=[Var(exp.2, numbers.py:240), Var(exp.3, numbers.py:234)], incoming_blocks=[302, 270]) -13:52:44,328 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:44,328 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,328 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:44,329 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp.4 & $const284.1 -13:52:44,329 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:44,329 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,329 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:44,329 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,329 numba.core.ssa DEBUG Running -13:52:44,329 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,329 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:44,329 numba.core.ssa DEBUG on stmt: jump 302 -13:52:44,329 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:44,329 numba.core.ssa DEBUG Running -13:52:44,329 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:44,329 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:44,329 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp.4, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,329 numba.core.ssa DEBUG on stmt: exp.2 = $binop_irshift306.2 -13:52:44,329 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,329 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:44,329 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:44,329 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp.2 != $const324.7 -13:52:44,329 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:44,329 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,330 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:44,330 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:44,330 numba.core.ssa DEBUG Running -13:52:44,330 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:44,330 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:44,330 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,330 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:44,330 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:44,330 numba.core.ssa DEBUG Running -13:52:44,330 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:44,330 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:44,330 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:44,330 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,330 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:44,330 numba.core.ssa DEBUG Running -13:52:44,330 numba.core.ssa DEBUG on stmt: $phi350.0.1 = r.4 -13:52:44,330 numba.core.ssa DEBUG on stmt: jump 350 -13:52:44,330 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:44,330 numba.core.ssa DEBUG Running -13:52:44,330 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:44,330 numba.core.ssa DEBUG find_def var='$phi350.0' stmt=$350return_value.1 = cast(value=$phi350.0) -13:52:44,331 numba.core.ssa DEBUG find_def_from_top label 350 -13:52:44,331 numba.core.ssa DEBUG insert phi node $phi350.0.2 = phi(incoming_values=[], incoming_blocks=[]) at 350 -13:52:44,331 numba.core.ssa DEBUG find_def_from_bottom label 338 -13:52:44,331 numba.core.ssa DEBUG incoming_def $phi350.0 = $binop_truediv342.2 -13:52:44,331 numba.core.ssa DEBUG find_def_from_bottom label 348 -13:52:44,331 numba.core.ssa DEBUG incoming_def $phi350.0.1 = r.4 -13:52:44,331 numba.core.ssa DEBUG replaced with: $350return_value.1 = cast(value=$phi350.0.2) -13:52:44,331 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:44,513 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=14) - 2 RESUME(arg=0, lineno=14) - 4 LOAD_GLOBAL(arg=1, lineno=31) - 16 LOAD_ATTR(arg=1, lineno=31) - 26 LOAD_FAST(arg=0, lineno=31) - 28 LOAD_ATTR(arg=2, lineno=31) - 38 LOAD_CONST(arg=1, lineno=31) - 40 BINARY_SUBSCR(arg=None, lineno=31) - 50 LOAD_FAST(arg=1, lineno=31) - 52 BUILD_TUPLE(arg=2, lineno=31) - 54 LOAD_GLOBAL(arg=0, lineno=31) - 66 LOAD_ATTR(arg=3, lineno=31) - 76 KW_NAMES(arg=2, lineno=31) - 78 PRECALL(arg=2, lineno=31) - 82 CALL(arg=2, lineno=31) - 92 STORE_FAST(arg=2, lineno=31) - 94 LOAD_GLOBAL(arg=9, lineno=32) - 106 LOAD_ATTR(arg=5, lineno=32) - 116 LOAD_FAST(arg=0, lineno=32) - 118 LOAD_ATTR(arg=2, lineno=32) - 128 LOAD_CONST(arg=1, lineno=32) - 130 BINARY_SUBSCR(arg=None, lineno=32) - 140 PRECALL(arg=1, lineno=32) - 144 CALL(arg=1, lineno=32) - 154 GET_ITER(arg=None, lineno=32) -> 156 FOR_ITER(arg=45, lineno=32) - 158 STORE_FAST(arg=3, lineno=32) - 160 LOAD_FAST(arg=0, lineno=34) - 162 LOAD_FAST(arg=3, lineno=34) - 164 BINARY_SUBSCR(arg=None, lineno=34) - 174 LOAD_METHOD(arg=6, lineno=34) - 196 LOAD_CONST(arg=3, lineno=34) - 198 KW_NAMES(arg=4, lineno=34) - 200 PRECALL(arg=1, lineno=34) - 204 CALL(arg=1, lineno=34) - 214 STORE_FAST(arg=4, lineno=34) - 216 LOAD_FAST(arg=4, lineno=35) - 218 LOAD_CONST(arg=5, lineno=35) - 220 LOAD_FAST(arg=1, lineno=35) - 222 BUILD_SLICE(arg=2, lineno=35) - 224 BINARY_SUBSCR(arg=None, lineno=35) - 234 STORE_FAST(arg=4, lineno=35) - 236 LOAD_FAST(arg=4, lineno=36) - 238 LOAD_FAST(arg=2, lineno=36) - 240 LOAD_FAST(arg=3, lineno=36) - 242 STORE_SUBSCR(arg=None, lineno=36) - 246 JUMP_BACKWARD(arg=46, lineno=36) -> 248 LOAD_FAST(arg=2, lineno=37) - 250 RETURN_VALUE(arg=None, lineno=37) -13:52:44,513 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,513 numba.core.byteflow DEBUG stack: [] -13:52:44,513 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,513 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=14) -13:52:44,513 numba.core.byteflow DEBUG stack [] -13:52:44,513 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=14) -13:52:44,513 numba.core.byteflow DEBUG stack [] -13:52:44,513 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=31) -13:52:44,513 numba.core.byteflow DEBUG stack [] -13:52:44,513 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_ATTR(arg=1, lineno=31) -13:52:44,513 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=0, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_ATTR(arg=2, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$X26.3'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=38, inst=LOAD_CONST(arg=1, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$28load_attr.4'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=40, inst=BINARY_SUBSCR(arg=None, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$28load_attr.4', '$const38.5'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_FAST(arg=1, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$40binary_subscr.6'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=52, inst=BUILD_TUPLE(arg=2, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$40binary_subscr.6', '$n_neighbors50.7'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=54, inst=LOAD_GLOBAL(arg=0, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$52build_tuple.8'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_ATTR(arg=3, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$52build_tuple.8', '$54load_global.9'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=76, inst=KW_NAMES(arg=2, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$52build_tuple.8', '$66load_attr.10'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=78, inst=PRECALL(arg=2, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$52build_tuple.8', '$66load_attr.10'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=82, inst=CALL(arg=2, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$52build_tuple.8', '$66load_attr.10'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=92, inst=STORE_FAST(arg=2, lineno=31) -13:52:44,514 numba.core.byteflow DEBUG stack ['$82call.11'] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=94, inst=LOAD_GLOBAL(arg=9, lineno=32) -13:52:44,514 numba.core.byteflow DEBUG stack [] -13:52:44,514 numba.core.byteflow DEBUG dispatch pc=106, inst=LOAD_ATTR(arg=5, lineno=32) -13:52:44,514 numba.core.byteflow DEBUG stack ['$null$94.13', '$94load_global.12'] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=116, inst=LOAD_FAST(arg=0, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$null$94.13', '$106load_attr.14'] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_ATTR(arg=2, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$null$94.13', '$106load_attr.14', '$X116.15'] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=128, inst=LOAD_CONST(arg=1, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$null$94.13', '$106load_attr.14', '$118load_attr.16'] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=130, inst=BINARY_SUBSCR(arg=None, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$null$94.13', '$106load_attr.14', '$118load_attr.16', '$const128.17'] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=140, inst=PRECALL(arg=1, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$null$94.13', '$106load_attr.14', '$130binary_subscr.18'] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=144, inst=CALL(arg=1, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$null$94.13', '$106load_attr.14', '$130binary_subscr.18'] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=154, inst=GET_ITER(arg=None, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$144call.19'] -13:52:44,515 numba.core.byteflow DEBUG end state. edges=[Edge(pc=156, stack=('$154get_iter.20',), blockstack=(), npush=0)] -13:52:44,515 numba.core.byteflow DEBUG pending: deque([State(pc_initial=156 nstack_initial=1)]) -13:52:44,515 numba.core.byteflow DEBUG stack: ['$phi156.0'] -13:52:44,515 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=156 nstack_initial=1) -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=156, inst=FOR_ITER(arg=45, lineno=32) -13:52:44,515 numba.core.byteflow DEBUG stack ['$phi156.0'] -13:52:44,515 numba.core.byteflow DEBUG end state. edges=[Edge(pc=248, stack=(), blockstack=(), npush=0), Edge(pc=158, stack=('$phi156.0', '$156for_iter.2'), blockstack=(), npush=0)] -13:52:44,515 numba.core.byteflow DEBUG pending: deque([State(pc_initial=248 nstack_initial=0), State(pc_initial=158 nstack_initial=2)]) -13:52:44,515 numba.core.byteflow DEBUG stack: [] -13:52:44,515 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=248 nstack_initial=0) -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=248, inst=LOAD_FAST(arg=2, lineno=37) -13:52:44,515 numba.core.byteflow DEBUG stack [] -13:52:44,515 numba.core.byteflow DEBUG dispatch pc=250, inst=RETURN_VALUE(arg=None, lineno=37) -13:52:44,515 numba.core.byteflow DEBUG stack ['$knn_indices248.0'] -13:52:44,515 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,515 numba.core.byteflow DEBUG pending: deque([State(pc_initial=158 nstack_initial=2)]) -13:52:44,516 numba.core.byteflow DEBUG stack: ['$phi158.0', '$phi158.1'] -13:52:44,516 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=158 nstack_initial=2) -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=158, inst=STORE_FAST(arg=3, lineno=32) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$phi158.1'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=160, inst=LOAD_FAST(arg=0, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=162, inst=LOAD_FAST(arg=3, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$X160.2'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=164, inst=BINARY_SUBSCR(arg=None, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$X160.2', '$row162.3'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=174, inst=LOAD_METHOD(arg=6, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$164binary_subscr.4'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=196, inst=LOAD_CONST(arg=3, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$null$174.5', '$174load_method.6'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=198, inst=KW_NAMES(arg=4, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$null$174.5', '$174load_method.6', '$const196.7'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=200, inst=PRECALL(arg=1, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$null$174.5', '$174load_method.6', '$const196.7'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=204, inst=CALL(arg=1, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$null$174.5', '$174load_method.6', '$const196.7'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=214, inst=STORE_FAST(arg=4, lineno=34) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$204call.8'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=216, inst=LOAD_FAST(arg=4, lineno=35) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=218, inst=LOAD_CONST(arg=5, lineno=35) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$v216.9'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=220, inst=LOAD_FAST(arg=1, lineno=35) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$v216.9', '$const218.10'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=222, inst=BUILD_SLICE(arg=2, lineno=35) -13:52:44,516 numba.core.byteflow DEBUG stack ['$phi158.0', '$v216.9', '$const218.10', '$n_neighbors220.11'] -13:52:44,516 numba.core.byteflow DEBUG dispatch pc=224, inst=BINARY_SUBSCR(arg=None, lineno=35) -13:52:44,517 numba.core.byteflow DEBUG stack ['$phi158.0', '$v216.9', '$222build_slice.13'] -13:52:44,517 numba.core.byteflow DEBUG dispatch pc=234, inst=STORE_FAST(arg=4, lineno=35) -13:52:44,517 numba.core.byteflow DEBUG stack ['$phi158.0', '$224binary_subscr.14'] -13:52:44,517 numba.core.byteflow DEBUG dispatch pc=236, inst=LOAD_FAST(arg=4, lineno=36) -13:52:44,517 numba.core.byteflow DEBUG stack ['$phi158.0'] -13:52:44,517 numba.core.byteflow DEBUG dispatch pc=238, inst=LOAD_FAST(arg=2, lineno=36) -13:52:44,517 numba.core.byteflow DEBUG stack ['$phi158.0', '$v236.15'] -13:52:44,517 numba.core.byteflow DEBUG dispatch pc=240, inst=LOAD_FAST(arg=3, lineno=36) -13:52:44,517 numba.core.byteflow DEBUG stack ['$phi158.0', '$v236.15', '$knn_indices238.16'] -13:52:44,517 numba.core.byteflow DEBUG dispatch pc=242, inst=STORE_SUBSCR(arg=None, lineno=36) -13:52:44,517 numba.core.byteflow DEBUG stack ['$phi158.0', '$v236.15', '$knn_indices238.16', '$row240.17'] -13:52:44,517 numba.core.byteflow DEBUG dispatch pc=246, inst=JUMP_BACKWARD(arg=46, lineno=36) -13:52:44,517 numba.core.byteflow DEBUG stack ['$phi158.0'] -13:52:44,517 numba.core.byteflow DEBUG end state. edges=[Edge(pc=156, stack=('$phi158.0',), blockstack=(), npush=0)] -13:52:44,517 numba.core.byteflow DEBUG pending: deque([State(pc_initial=156 nstack_initial=1)]) -13:52:44,517 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,517 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=156 nstack_initial=1): {'$phi156.0'}, - State(pc_initial=158 nstack_initial=2): {'$phi158.1'}, - State(pc_initial=248 nstack_initial=0): set()}) -13:52:44,517 numba.core.byteflow DEBUG defmap: {'$phi156.0': State(pc_initial=0 nstack_initial=0), - '$phi158.1': State(pc_initial=156 nstack_initial=1)} -13:52:44,517 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi156.0': {('$154get_iter.20', - State(pc_initial=0 nstack_initial=0)), - ('$phi158.0', - State(pc_initial=158 nstack_initial=2))}, - '$phi158.0': {('$phi156.0', - State(pc_initial=156 nstack_initial=1))}, - '$phi158.1': {('$156for_iter.2', - State(pc_initial=156 nstack_initial=1))}}) -13:52:44,517 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi156.0': {('$154get_iter.20', - State(pc_initial=0 nstack_initial=0)), - ('$phi156.0', - State(pc_initial=156 nstack_initial=1))}, - '$phi158.0': {('$154get_iter.20', - State(pc_initial=0 nstack_initial=0))}, - '$phi158.1': {('$156for_iter.2', - State(pc_initial=156 nstack_initial=1))}}) -13:52:44,517 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi156.0': {('$154get_iter.20', - State(pc_initial=0 nstack_initial=0))}, - '$phi158.0': {('$154get_iter.20', - State(pc_initial=0 nstack_initial=0))}, - '$phi158.1': {('$156for_iter.2', - State(pc_initial=156 nstack_initial=1))}}) -13:52:44,518 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi156.0': {('$154get_iter.20', - State(pc_initial=0 nstack_initial=0))}, - '$phi158.0': {('$154get_iter.20', - State(pc_initial=0 nstack_initial=0))}, - '$phi158.1': {('$156for_iter.2', - State(pc_initial=156 nstack_initial=1))}}) -13:52:44,518 numba.core.byteflow DEBUG keep phismap: {'$phi156.0': {('$154get_iter.20', State(pc_initial=0 nstack_initial=0))}, - '$phi158.1': {('$156for_iter.2', State(pc_initial=156 nstack_initial=1))}} -13:52:44,518 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi156.0': '$154get_iter.20'}, - State(pc_initial=156 nstack_initial=1): {'$phi158.1': '$156for_iter.2'}}) -13:52:44,518 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,518 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'item': '$4load_global.0', 'res': '$16load_attr.2'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'res': '$X26.3'}), (28, {'item': '$X26.3', 'res': '$28load_attr.4'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'res': '$const38.5'}), (40, {'index': '$const38.5', 'target': '$28load_attr.4', 'res': '$40binary_subscr.6'}), (42, {}), (44, {}), (46, {}), (48, {}), (50, {'res': '$n_neighbors50.7'}), (52, {'items': ['$40binary_subscr.6', '$n_neighbors50.7'], 'res': '$52build_tuple.8'}), (54, {'idx': 0, 'res': '$54load_global.9'}), (56, {}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {'item': '$54load_global.9', 'res': '$66load_attr.10'}), (68, {}), (70, {}), (72, {}), (74, {}), (78, {}), (80, {}), (82, {'func': '$16load_attr.2', 'args': ['$52build_tuple.8', '$66load_attr.10'], 'kw_names': 2, 'res': '$82call.11'}), (84, {}), (86, {}), (88, {}), (90, {}), (92, {'value': '$82call.11'}), (94, {'idx': 4, 'res': '$94load_global.12'}), (96, {}), (98, {}), (100, {}), (102, {}), (104, {}), (106, {'item': '$94load_global.12', 'res': '$106load_attr.14'}), (108, {}), (110, {}), (112, {}), (114, {}), (116, {'res': '$X116.15'}), (118, {'item': '$X116.15', 'res': '$118load_attr.16'}), (120, {}), (122, {}), (124, {}), (126, {}), (128, {'res': '$const128.17'}), (130, {'index': '$const128.17', 'target': '$118load_attr.16', 'res': '$130binary_subscr.18'}), (132, {}), (134, {}), (136, {}), (138, {}), (140, {}), (142, {}), (144, {'func': '$106load_attr.14', 'args': ['$130binary_subscr.18'], 'kw_names': None, 'res': '$144call.19'}), (146, {}), (148, {}), (150, {}), (152, {}), (154, {'value': '$144call.19', 'res': '$154get_iter.20'})), outgoing_phis={'$phi156.0': '$154get_iter.20'}, blockstack=(), active_try_block=None, outgoing_edgepushed={156: ('$154get_iter.20',)}) -13:52:44,518 numba.core.byteflow DEBUG block_infos State(pc_initial=156 nstack_initial=1): -AdaptBlockInfo(insts=((156, {'iterator': '$phi156.0', 'pair': '$156for_iter.1', 'indval': '$156for_iter.2', 'pred': '$156for_iter.3'}),), outgoing_phis={'$phi158.1': '$156for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={248: (), 158: ('$phi156.0', '$156for_iter.2')}) -13:52:44,518 numba.core.byteflow DEBUG block_infos State(pc_initial=158 nstack_initial=2): -AdaptBlockInfo(insts=((158, {'value': '$phi158.1'}), (160, {'res': '$X160.2'}), (162, {'res': '$row162.3'}), (164, {'index': '$row162.3', 'target': '$X160.2', 'res': '$164binary_subscr.4'}), (166, {}), (168, {}), (170, {}), (172, {}), (174, {'item': '$164binary_subscr.4', 'res': '$174load_method.6'}), (176, {}), (178, {}), (180, {}), (182, {}), (184, {}), (186, {}), (188, {}), (190, {}), (192, {}), (194, {}), (196, {'res': '$const196.7'}), (200, {}), (202, {}), (204, {'func': '$174load_method.6', 'args': ['$const196.7'], 'kw_names': 4, 'res': '$204call.8'}), (206, {}), (208, {}), (210, {}), (212, {}), (214, {'value': '$204call.8'}), (216, {'res': '$v216.9'}), (218, {'res': '$const218.10'}), (220, {'res': '$n_neighbors220.11'}), (222, {'start': '$const218.10', 'stop': '$n_neighbors220.11', 'step': None, 'res': '$222build_slice.13', 'slicevar': '$222build_slice.12'}), (224, {'index': '$222build_slice.13', 'target': '$v216.9', 'res': '$224binary_subscr.14'}), (226, {}), (228, {}), (230, {}), (232, {}), (234, {'value': '$224binary_subscr.14'}), (236, {'res': '$v236.15'}), (238, {'res': '$knn_indices238.16'}), (240, {'res': '$row240.17'}), (242, {'target': '$knn_indices238.16', 'index': '$row240.17', 'value': '$v236.15'}), (244, {}), (246, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={156: ('$phi158.0',)}) -13:52:44,518 numba.core.byteflow DEBUG block_infos State(pc_initial=248 nstack_initial=0): -AdaptBlockInfo(insts=((248, {'res': '$knn_indices248.0'}), (250, {'retval': '$knn_indices248.0', 'castval': '$250return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,519 numba.core.interpreter DEBUG label 0: - X = arg(0, name=X) ['X'] - n_neighbors = arg(1, name=n_neighbors) ['n_neighbors'] - $4load_global.0 = global(np: ) ['$4load_global.0'] - $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) ['$16load_attr.2', '$4load_global.0'] - $28load_attr.4 = getattr(value=X, attr=shape) ['$28load_attr.4', 'X'] - $const38.5 = const(int, 0) ['$const38.5'] - $40binary_subscr.6 = getitem(value=$28load_attr.4, index=$const38.5, fn=) ['$28load_attr.4', '$40binary_subscr.6', '$const38.5'] - $52build_tuple.8 = build_tuple(items=[Var($40binary_subscr.6, utils.py:31), Var(n_neighbors, utils.py:14)]) ['$40binary_subscr.6', '$52build_tuple.8', 'n_neighbors'] - $54load_global.9 = global(np: ) ['$54load_global.9'] - $66load_attr.10 = getattr(value=$54load_global.9, attr=int32) ['$54load_global.9', '$66load_attr.10'] - knn_indices = call $16load_attr.2($52build_tuple.8, func=$16load_attr.2, args=[Var($52build_tuple.8, utils.py:31)], kws=[('dtype', Var($66load_attr.10, utils.py:31))], vararg=None, varkwarg=None, target=None) ['$16load_attr.2', '$52build_tuple.8', '$66load_attr.10', 'knn_indices'] - $94load_global.12 = global(numba: ) ['$94load_global.12'] - $106load_attr.14 = getattr(value=$94load_global.12, attr=prange) ['$106load_attr.14', '$94load_global.12'] - $118load_attr.16 = getattr(value=X, attr=shape) ['$118load_attr.16', 'X'] - $const128.17 = const(int, 0) ['$const128.17'] - $130binary_subscr.18 = getitem(value=$118load_attr.16, index=$const128.17, fn=) ['$118load_attr.16', '$130binary_subscr.18', '$const128.17'] - $144call.19 = call $106load_attr.14($130binary_subscr.18, func=$106load_attr.14, args=[Var($130binary_subscr.18, utils.py:32)], kws=(), vararg=None, varkwarg=None, target=None) ['$106load_attr.14', '$130binary_subscr.18', '$144call.19'] - $154get_iter.20 = getiter(value=$144call.19) ['$144call.19', '$154get_iter.20'] - $phi156.0 = $154get_iter.20 ['$154get_iter.20', '$phi156.0'] - jump 156 [] -label 156: - $156for_iter.1 = iternext(value=$phi156.0) ['$156for_iter.1', '$phi156.0'] - $156for_iter.2 = pair_first(value=$156for_iter.1) ['$156for_iter.1', '$156for_iter.2'] - $156for_iter.3 = pair_second(value=$156for_iter.1) ['$156for_iter.1', '$156for_iter.3'] - $phi158.1 = $156for_iter.2 ['$156for_iter.2', '$phi158.1'] - branch $156for_iter.3, 158, 248 ['$156for_iter.3'] -label 158: - row = $phi158.1 ['$phi158.1', 'row'] - $164binary_subscr.4 = getitem(value=X, index=row, fn=) ['$164binary_subscr.4', 'X', 'row'] - $174load_method.6 = getattr(value=$164binary_subscr.4, attr=argsort) ['$164binary_subscr.4', '$174load_method.6'] - $const196.7 = const(str, quicksort) ['$const196.7'] - v = call $174load_method.6(func=$174load_method.6, args=[], kws=[('kind', Var($const196.7, utils.py:34))], vararg=None, varkwarg=None, target=None) ['$174load_method.6', '$const196.7', 'v'] - $const218.10 = const(NoneType, None) ['$const218.10'] - $222build_slice.12 = global(slice: ) ['$222build_slice.12'] - $222build_slice.13 = call $222build_slice.12($const218.10, n_neighbors, func=$222build_slice.12, args=(Var($const218.10, utils.py:35), Var(n_neighbors, utils.py:14)), kws=(), vararg=None, varkwarg=None, target=None) ['$222build_slice.12', '$222build_slice.13', '$const218.10', 'n_neighbors'] - v = getitem(value=v, index=$222build_slice.13, fn=) ['$222build_slice.13', 'v', 'v'] - knn_indices[row] = v ['knn_indices', 'row', 'v'] - jump 156 [] -label 248: - $250return_value.1 = cast(value=knn_indices) ['$250return_value.1', 'knn_indices'] - return $250return_value.1 ['$250return_value.1'] - -13:52:44,534 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,534 numba.core.ssa DEBUG Running -13:52:44,534 numba.core.ssa DEBUG on stmt: X = arg(0, name=X) -13:52:44,534 numba.core.ssa DEBUG on stmt: n_neighbors = arg(1, name=n_neighbors) -13:52:44,534 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:44,534 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) -13:52:44,534 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=X, attr=shape) -13:52:44,534 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:44,534 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:44,534 numba.core.ssa DEBUG on stmt: $52build_tuple.8 = build_tuple(items=[Var($40binary_subscr.6, utils.py:31), Var(n_neighbors, utils.py:14)]) -13:52:44,534 numba.core.ssa DEBUG on stmt: $54load_global.9 = global(np: ) -13:52:44,534 numba.core.ssa DEBUG on stmt: $66load_attr.10 = getattr(value=$54load_global.9, attr=int32) -13:52:44,534 numba.core.ssa DEBUG on stmt: knn_indices = call $16load_attr.2($52build_tuple.8, func=$16load_attr.2, args=[Var($52build_tuple.8, utils.py:31)], kws=[('dtype', Var($66load_attr.10, utils.py:31))], vararg=None, varkwarg=None, target=None) -13:52:44,534 numba.core.ssa DEBUG on stmt: $94load_global.12 = global(numba: ) -13:52:44,534 numba.core.ssa DEBUG on stmt: $106load_attr.14 = getattr(value=$94load_global.12, attr=prange) -13:52:44,534 numba.core.ssa DEBUG on stmt: $118load_attr.16 = getattr(value=X, attr=shape) -13:52:44,534 numba.core.ssa DEBUG on stmt: $const128.17 = const(int, 0) -13:52:44,534 numba.core.ssa DEBUG on stmt: $130binary_subscr.18 = static_getitem(value=$118load_attr.16, index=0, index_var=$const128.17, fn=) -13:52:44,534 numba.core.ssa DEBUG on stmt: $144call.19 = call $106load_attr.14($130binary_subscr.18, func=$106load_attr.14, args=[Var($130binary_subscr.18, utils.py:32)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,534 numba.core.ssa DEBUG on stmt: $154get_iter.20 = getiter(value=$144call.19) -13:52:44,534 numba.core.ssa DEBUG on stmt: $phi156.0 = $154get_iter.20 -13:52:44,534 numba.core.ssa DEBUG on stmt: jump 156 -13:52:44,535 numba.core.ssa DEBUG ==== SSA block analysis pass on 156 -13:52:44,535 numba.core.ssa DEBUG Running -13:52:44,535 numba.core.ssa DEBUG on stmt: $156for_iter.1 = iternext(value=$phi156.0) -13:52:44,535 numba.core.ssa DEBUG on stmt: $156for_iter.2 = pair_first(value=$156for_iter.1) -13:52:44,535 numba.core.ssa DEBUG on stmt: $156for_iter.3 = pair_second(value=$156for_iter.1) -13:52:44,535 numba.core.ssa DEBUG on stmt: $phi158.1 = $156for_iter.2 -13:52:44,535 numba.core.ssa DEBUG on stmt: branch $156for_iter.3, 158, 248 -13:52:44,535 numba.core.ssa DEBUG ==== SSA block analysis pass on 158 -13:52:44,535 numba.core.ssa DEBUG Running -13:52:44,535 numba.core.ssa DEBUG on stmt: row = $phi158.1 -13:52:44,535 numba.core.ssa DEBUG on stmt: $164binary_subscr.4 = getitem(value=X, index=row, fn=) -13:52:44,535 numba.core.ssa DEBUG on stmt: $174load_method.6 = getattr(value=$164binary_subscr.4, attr=argsort) -13:52:44,535 numba.core.ssa DEBUG on stmt: $const196.7 = const(str, quicksort) -13:52:44,535 numba.core.ssa DEBUG on stmt: v = call $174load_method.6(func=$174load_method.6, args=[], kws=[('kind', Var($const196.7, utils.py:34))], vararg=None, varkwarg=None, target=None) -13:52:44,535 numba.core.ssa DEBUG on stmt: $const218.10 = const(NoneType, None) -13:52:44,535 numba.core.ssa DEBUG on stmt: $222build_slice.12 = global(slice: ) -13:52:44,535 numba.core.ssa DEBUG on stmt: $222build_slice.13 = call $222build_slice.12($const218.10, n_neighbors, func=$222build_slice.12, args=(Var($const218.10, utils.py:35), Var(n_neighbors, utils.py:14)), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,535 numba.core.ssa DEBUG on stmt: v = getitem(value=v, index=$222build_slice.13, fn=) -13:52:44,535 numba.core.ssa DEBUG on stmt: knn_indices[row] = v -13:52:44,535 numba.core.ssa DEBUG on stmt: jump 156 -13:52:44,535 numba.core.ssa DEBUG ==== SSA block analysis pass on 248 -13:52:44,535 numba.core.ssa DEBUG Running -13:52:44,535 numba.core.ssa DEBUG on stmt: $250return_value.1 = cast(value=knn_indices) -13:52:44,536 numba.core.ssa DEBUG on stmt: return $250return_value.1 -13:52:44,536 numba.core.ssa DEBUG defs defaultdict(, - {'$106load_attr.14': [(, - 0)], - '$118load_attr.16': [(, - 0)], - '$130binary_subscr.18': [(, - 0)], - '$144call.19': [(, - 0)], - '$154get_iter.20': [(, - 0)], - '$156for_iter.1': [(, - 156)], - '$156for_iter.2': [(, - 156)], - '$156for_iter.3': [(, - 156)], - '$164binary_subscr.4': [(, - 158)], - '$16load_attr.2': [(, - 0)], - '$174load_method.6': [(, - 158)], - '$222build_slice.12': [(, - 158)], - '$222build_slice.13': [(, - 158)], - '$250return_value.1': [(, - 248)], - '$28load_attr.4': [(, - 0)], - '$40binary_subscr.6': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$52build_tuple.8': [(, - 0)], - '$54load_global.9': [(, - 0)], - '$66load_attr.10': [(, - 0)], - '$94load_global.12': [(, - 0)], - '$const128.17': [(, - 0)], - '$const196.7': [(, - 158)], - '$const218.10': [(, - 158)], - '$const38.5': [(, - 0)], - '$phi156.0': [(, - 0)], - '$phi158.1': [(, - 156)], - 'X': [(, 0)], - 'knn_indices': [(, - 0)], - 'n_neighbors': [(, - 0)], - 'row': [(, - 158)], - 'v': [(, 158), - (, 158)]}) -13:52:44,536 numba.core.ssa DEBUG SSA violators -13:52:44,536 numba.core.ssa DEBUG Fix SSA violator on var v -13:52:44,536 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,536 numba.core.ssa DEBUG Running -13:52:44,536 numba.core.ssa DEBUG on stmt: X = arg(0, name=X) -13:52:44,536 numba.core.ssa DEBUG on stmt: n_neighbors = arg(1, name=n_neighbors) -13:52:44,536 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:44,536 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) -13:52:44,536 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=X, attr=shape) -13:52:44,536 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:44,536 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:44,536 numba.core.ssa DEBUG on stmt: $52build_tuple.8 = build_tuple(items=[Var($40binary_subscr.6, utils.py:31), Var(n_neighbors, utils.py:14)]) -13:52:44,536 numba.core.ssa DEBUG on stmt: $54load_global.9 = global(np: ) -13:52:44,537 numba.core.ssa DEBUG on stmt: $66load_attr.10 = getattr(value=$54load_global.9, attr=int32) -13:52:44,537 numba.core.ssa DEBUG on stmt: knn_indices = call $16load_attr.2($52build_tuple.8, func=$16load_attr.2, args=[Var($52build_tuple.8, utils.py:31)], kws=[('dtype', Var($66load_attr.10, utils.py:31))], vararg=None, varkwarg=None, target=None) -13:52:44,537 numba.core.ssa DEBUG on stmt: $94load_global.12 = global(numba: ) -13:52:44,537 numba.core.ssa DEBUG on stmt: $106load_attr.14 = getattr(value=$94load_global.12, attr=prange) -13:52:44,537 numba.core.ssa DEBUG on stmt: $118load_attr.16 = getattr(value=X, attr=shape) -13:52:44,537 numba.core.ssa DEBUG on stmt: $const128.17 = const(int, 0) -13:52:44,537 numba.core.ssa DEBUG on stmt: $130binary_subscr.18 = static_getitem(value=$118load_attr.16, index=0, index_var=$const128.17, fn=) -13:52:44,537 numba.core.ssa DEBUG on stmt: $144call.19 = call $106load_attr.14($130binary_subscr.18, func=$106load_attr.14, args=[Var($130binary_subscr.18, utils.py:32)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,537 numba.core.ssa DEBUG on stmt: $154get_iter.20 = getiter(value=$144call.19) -13:52:44,537 numba.core.ssa DEBUG on stmt: $phi156.0 = $154get_iter.20 -13:52:44,537 numba.core.ssa DEBUG on stmt: jump 156 -13:52:44,537 numba.core.ssa DEBUG ==== SSA block rewrite pass on 156 -13:52:44,537 numba.core.ssa DEBUG Running -13:52:44,537 numba.core.ssa DEBUG on stmt: $156for_iter.1 = iternext(value=$phi156.0) -13:52:44,537 numba.core.ssa DEBUG on stmt: $156for_iter.2 = pair_first(value=$156for_iter.1) -13:52:44,537 numba.core.ssa DEBUG on stmt: $156for_iter.3 = pair_second(value=$156for_iter.1) -13:52:44,537 numba.core.ssa DEBUG on stmt: $phi158.1 = $156for_iter.2 -13:52:44,537 numba.core.ssa DEBUG on stmt: branch $156for_iter.3, 158, 248 -13:52:44,537 numba.core.ssa DEBUG ==== SSA block rewrite pass on 158 -13:52:44,537 numba.core.ssa DEBUG Running -13:52:44,537 numba.core.ssa DEBUG on stmt: row = $phi158.1 -13:52:44,537 numba.core.ssa DEBUG on stmt: $164binary_subscr.4 = getitem(value=X, index=row, fn=) -13:52:44,537 numba.core.ssa DEBUG on stmt: $174load_method.6 = getattr(value=$164binary_subscr.4, attr=argsort) -13:52:44,537 numba.core.ssa DEBUG on stmt: $const196.7 = const(str, quicksort) -13:52:44,537 numba.core.ssa DEBUG on stmt: v = call $174load_method.6(func=$174load_method.6, args=[], kws=[('kind', Var($const196.7, utils.py:34))], vararg=None, varkwarg=None, target=None) -13:52:44,537 numba.core.ssa DEBUG first assign: v -13:52:44,537 numba.core.ssa DEBUG replaced with: v = call $174load_method.6(func=$174load_method.6, args=[], kws=[('kind', Var($const196.7, utils.py:34))], vararg=None, varkwarg=None, target=None) -13:52:44,537 numba.core.ssa DEBUG on stmt: $const218.10 = const(NoneType, None) -13:52:44,537 numba.core.ssa DEBUG on stmt: $222build_slice.12 = global(slice: ) -13:52:44,537 numba.core.ssa DEBUG on stmt: $222build_slice.13 = call $222build_slice.12($const218.10, n_neighbors, func=$222build_slice.12, args=(Var($const218.10, utils.py:35), Var(n_neighbors, utils.py:14)), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,537 numba.core.ssa DEBUG on stmt: v = getitem(value=v, index=$222build_slice.13, fn=) -13:52:44,537 numba.core.ssa DEBUG replaced with: v.1 = getitem(value=v, index=$222build_slice.13, fn=) -13:52:44,537 numba.core.ssa DEBUG on stmt: knn_indices[row] = v -13:52:44,538 numba.core.ssa DEBUG on stmt: jump 156 -13:52:44,538 numba.core.ssa DEBUG ==== SSA block rewrite pass on 248 -13:52:44,538 numba.core.ssa DEBUG Running -13:52:44,538 numba.core.ssa DEBUG on stmt: $250return_value.1 = cast(value=knn_indices) -13:52:44,538 numba.core.ssa DEBUG on stmt: return $250return_value.1 -13:52:44,538 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {158: [, - ]}) -13:52:44,538 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,538 numba.core.ssa DEBUG Running -13:52:44,538 numba.core.ssa DEBUG on stmt: X = arg(0, name=X) -13:52:44,538 numba.core.ssa DEBUG on stmt: n_neighbors = arg(1, name=n_neighbors) -13:52:44,538 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:44,538 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) -13:52:44,538 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=X, attr=shape) -13:52:44,538 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:44,538 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:44,538 numba.core.ssa DEBUG on stmt: $52build_tuple.8 = build_tuple(items=[Var($40binary_subscr.6, utils.py:31), Var(n_neighbors, utils.py:14)]) -13:52:44,538 numba.core.ssa DEBUG on stmt: $54load_global.9 = global(np: ) -13:52:44,538 numba.core.ssa DEBUG on stmt: $66load_attr.10 = getattr(value=$54load_global.9, attr=int32) -13:52:44,538 numba.core.ssa DEBUG on stmt: knn_indices = call $16load_attr.2($52build_tuple.8, func=$16load_attr.2, args=[Var($52build_tuple.8, utils.py:31)], kws=[('dtype', Var($66load_attr.10, utils.py:31))], vararg=None, varkwarg=None, target=None) -13:52:44,538 numba.core.ssa DEBUG on stmt: $94load_global.12 = global(numba: ) -13:52:44,538 numba.core.ssa DEBUG on stmt: $106load_attr.14 = getattr(value=$94load_global.12, attr=prange) -13:52:44,538 numba.core.ssa DEBUG on stmt: $118load_attr.16 = getattr(value=X, attr=shape) -13:52:44,538 numba.core.ssa DEBUG on stmt: $const128.17 = const(int, 0) -13:52:44,538 numba.core.ssa DEBUG on stmt: $130binary_subscr.18 = static_getitem(value=$118load_attr.16, index=0, index_var=$const128.17, fn=) -13:52:44,538 numba.core.ssa DEBUG on stmt: $144call.19 = call $106load_attr.14($130binary_subscr.18, func=$106load_attr.14, args=[Var($130binary_subscr.18, utils.py:32)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,538 numba.core.ssa DEBUG on stmt: $154get_iter.20 = getiter(value=$144call.19) -13:52:44,538 numba.core.ssa DEBUG on stmt: $phi156.0 = $154get_iter.20 -13:52:44,538 numba.core.ssa DEBUG on stmt: jump 156 -13:52:44,539 numba.core.ssa DEBUG ==== SSA block rewrite pass on 156 -13:52:44,539 numba.core.ssa DEBUG Running -13:52:44,539 numba.core.ssa DEBUG on stmt: $156for_iter.1 = iternext(value=$phi156.0) -13:52:44,539 numba.core.ssa DEBUG on stmt: $156for_iter.2 = pair_first(value=$156for_iter.1) -13:52:44,539 numba.core.ssa DEBUG on stmt: $156for_iter.3 = pair_second(value=$156for_iter.1) -13:52:44,539 numba.core.ssa DEBUG on stmt: $phi158.1 = $156for_iter.2 -13:52:44,539 numba.core.ssa DEBUG on stmt: branch $156for_iter.3, 158, 248 -13:52:44,539 numba.core.ssa DEBUG ==== SSA block rewrite pass on 158 -13:52:44,539 numba.core.ssa DEBUG Running -13:52:44,539 numba.core.ssa DEBUG on stmt: row = $phi158.1 -13:52:44,539 numba.core.ssa DEBUG on stmt: $164binary_subscr.4 = getitem(value=X, index=row, fn=) -13:52:44,539 numba.core.ssa DEBUG on stmt: $174load_method.6 = getattr(value=$164binary_subscr.4, attr=argsort) -13:52:44,539 numba.core.ssa DEBUG on stmt: $const196.7 = const(str, quicksort) -13:52:44,539 numba.core.ssa DEBUG on stmt: v = call $174load_method.6(func=$174load_method.6, args=[], kws=[('kind', Var($const196.7, utils.py:34))], vararg=None, varkwarg=None, target=None) -13:52:44,539 numba.core.ssa DEBUG on stmt: $const218.10 = const(NoneType, None) -13:52:44,539 numba.core.ssa DEBUG on stmt: $222build_slice.12 = global(slice: ) -13:52:44,539 numba.core.ssa DEBUG on stmt: $222build_slice.13 = call $222build_slice.12($const218.10, n_neighbors, func=$222build_slice.12, args=(Var($const218.10, utils.py:35), Var(n_neighbors, utils.py:14)), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,539 numba.core.ssa DEBUG on stmt: v.1 = getitem(value=v, index=$222build_slice.13, fn=) -13:52:44,539 numba.core.ssa DEBUG find_def var='v' stmt=v.1 = getitem(value=v, index=$222build_slice.13, fn=) -13:52:44,539 numba.core.ssa DEBUG on stmt: knn_indices[row] = v -13:52:44,539 numba.core.ssa DEBUG find_def var='v' stmt=knn_indices[row] = v -13:52:44,539 numba.core.ssa DEBUG replaced with: knn_indices[row] = v.1 -13:52:44,539 numba.core.ssa DEBUG on stmt: jump 156 -13:52:44,539 numba.core.ssa DEBUG ==== SSA block rewrite pass on 248 -13:52:44,539 numba.core.ssa DEBUG Running -13:52:44,539 numba.core.ssa DEBUG on stmt: $250return_value.1 = cast(value=knn_indices) -13:52:44,539 numba.core.ssa DEBUG on stmt: return $250return_value.1 -13:52:44,545 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4388) - 2 COPY_FREE_VARS(arg=1, lineno=4388) - 4 RESUME(arg=0, lineno=4388) - 6 LOAD_GLOBAL(arg=1, lineno=4389) - 18 LOAD_FAST(arg=0, lineno=4389) - 20 LOAD_FAST(arg=1, lineno=4389) - 22 LOAD_DEREF(arg=2, lineno=4389) - 24 PRECALL(arg=3, lineno=4389) - 28 CALL(arg=3, lineno=4389) - 38 RETURN_VALUE(arg=None, lineno=4389) -13:52:44,545 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,545 numba.core.byteflow DEBUG stack: [] -13:52:44,545 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,545 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4388) -13:52:44,545 numba.core.byteflow DEBUG stack [] -13:52:44,545 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=4388) -13:52:44,546 numba.core.byteflow DEBUG stack [] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=4388) -13:52:44,546 numba.core.byteflow DEBUG stack [] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_GLOBAL(arg=1, lineno=4389) -13:52:44,546 numba.core.byteflow DEBUG stack [] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_FAST(arg=0, lineno=4389) -13:52:44,546 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0'] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=1, lineno=4389) -13:52:44,546 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2'] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_DEREF(arg=2, lineno=4389) -13:52:44,546 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3'] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=24, inst=PRECALL(arg=3, lineno=4389) -13:52:44,546 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=28, inst=CALL(arg=3, lineno=4389) -13:52:44,546 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:44,546 numba.core.byteflow DEBUG dispatch pc=38, inst=RETURN_VALUE(arg=None, lineno=4389) -13:52:44,546 numba.core.byteflow DEBUG stack ['$28call.5'] -13:52:44,547 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,547 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,547 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:44,547 numba.core.byteflow DEBUG defmap: {} -13:52:44,547 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:44,547 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:44,547 numba.core.byteflow DEBUG keep phismap: {} -13:52:44,547 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:44,547 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,547 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'idx': 0, 'res': '$6load_global.0'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$shape18.2'}), (20, {'res': '$dtype20.3'}), (22, {'res': '$22load_deref.4'}), (24, {}), (26, {}), (28, {'func': '$6load_global.0', 'args': ['$shape18.2', '$dtype20.3', '$22load_deref.4'], 'kw_names': None, 'res': '$28call.5'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'retval': '$28call.5', 'castval': '$38return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,547 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $6load_global.0 = global(numpy_empty_nd: ) ['$6load_global.0'] - $22load_deref.4 = freevar(retty: array(int32, 2d, C)) ['$22load_deref.4'] - $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_deref.4', '$28call.5', '$6load_global.0', 'dtype', 'shape'] - $38return_value.6 = cast(value=$28call.5) ['$28call.5', '$38return_value.6'] - return $38return_value.6 ['$38return_value.6'] - -13:52:44,552 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,552 numba.core.ssa DEBUG Running -13:52:44,552 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:44,552 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:44,553 numba.core.ssa DEBUG on stmt: $6load_global.0 = global(numpy_empty_nd: ) -13:52:44,553 numba.core.ssa DEBUG on stmt: $22load_deref.4 = freevar(retty: array(int32, 2d, C)) -13:52:44,553 numba.core.ssa DEBUG on stmt: $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,553 numba.core.ssa DEBUG on stmt: $38return_value.6 = cast(value=$28call.5) -13:52:44,553 numba.core.ssa DEBUG on stmt: return $38return_value.6 -13:52:44,553 numba.core.ssa DEBUG defs defaultdict(, - {'$22load_deref.4': [(, - 0)], - '$28call.5': [(, - 0)], - '$38return_value.6': [(, - 0)], - '$6load_global.0': [(, - 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:44,553 numba.core.ssa DEBUG SSA violators -13:52:44,613 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=1) - 2 RESUME(arg=0, lineno=1) - 4 LOAD_GLOBAL(arg=1, lineno=2) - 16 LOAD_FAST(arg=0, lineno=2) - 18 LOAD_CONST(arg=1, lineno=2) - 20 BINARY_SUBSCR(arg=None, lineno=2) - 30 LOAD_FAST(arg=0, lineno=2) - 32 LOAD_CONST(arg=2, lineno=2) - 34 BINARY_SUBSCR(arg=None, lineno=2) - 44 LOAD_GLOBAL(arg=2, lineno=2) - 56 LOAD_METHOD(arg=2, lineno=2) - 78 LOAD_CONST(arg=2, lineno=2) - 80 PRECALL(arg=1, lineno=2) - 84 CALL(arg=1, lineno=2) - 94 BINARY_OP(arg=0, lineno=2) - 98 PRECALL(arg=2, lineno=2) - 102 CALL(arg=2, lineno=2) - 112 GET_ITER(arg=None, lineno=2) -> 114 FOR_ITER(arg=4, lineno=2) - 116 STORE_FAST(arg=4, lineno=2) - 118 LOAD_CONST(arg=1, lineno=3) - 120 STORE_FAST(arg=5, lineno=3) - 122 JUMP_BACKWARD(arg=5, lineno=3) -> 124 LOAD_CONST(arg=0, lineno=4) - 126 RETURN_VALUE(arg=None, lineno=4) -13:52:44,613 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,614 numba.core.byteflow DEBUG stack: [] -13:52:44,614 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=1) -13:52:44,614 numba.core.byteflow DEBUG stack [] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=1) -13:52:44,614 numba.core.byteflow DEBUG stack [] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack [] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=20, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2', '$const18.3'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_FAST(arg=0, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=34, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5', '$const32.6'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=44, inst=LOAD_GLOBAL(arg=2, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_METHOD(arg=2, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$44load_global.8'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_CONST(arg=2, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=1, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:44,614 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=1, lineno=2) -13:52:44,614 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=0, lineno=2) -13:52:44,615 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$84call.12'] -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=98, inst=PRECALL(arg=2, lineno=2) -13:52:44,615 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=102, inst=CALL(arg=2, lineno=2) -13:52:44,615 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=112, inst=GET_ITER(arg=None, lineno=2) -13:52:44,615 numba.core.byteflow DEBUG stack ['$102call.14'] -13:52:44,615 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$112get_iter.15',), blockstack=(), npush=0)] -13:52:44,615 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:44,615 numba.core.byteflow DEBUG stack: ['$phi114.0'] -13:52:44,615 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=114 nstack_initial=1) -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=114, inst=FOR_ITER(arg=4, lineno=2) -13:52:44,615 numba.core.byteflow DEBUG stack ['$phi114.0'] -13:52:44,615 numba.core.byteflow DEBUG end state. edges=[Edge(pc=124, stack=(), blockstack=(), npush=0), Edge(pc=116, stack=('$phi114.0', '$114for_iter.2'), blockstack=(), npush=0)] -13:52:44,615 numba.core.byteflow DEBUG pending: deque([State(pc_initial=124 nstack_initial=0), State(pc_initial=116 nstack_initial=2)]) -13:52:44,615 numba.core.byteflow DEBUG stack: [] -13:52:44,615 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=124 nstack_initial=0) -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_CONST(arg=0, lineno=4) -13:52:44,615 numba.core.byteflow DEBUG stack [] -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=126, inst=RETURN_VALUE(arg=None, lineno=4) -13:52:44,615 numba.core.byteflow DEBUG stack ['$const124.0'] -13:52:44,615 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,615 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=2)]) -13:52:44,615 numba.core.byteflow DEBUG stack: ['$phi116.0', '$phi116.1'] -13:52:44,615 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=116 nstack_initial=2) -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=116, inst=STORE_FAST(arg=4, lineno=2) -13:52:44,615 numba.core.byteflow DEBUG stack ['$phi116.0', '$phi116.1'] -13:52:44,615 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_CONST(arg=1, lineno=3) -13:52:44,616 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:44,616 numba.core.byteflow DEBUG dispatch pc=120, inst=STORE_FAST(arg=5, lineno=3) -13:52:44,616 numba.core.byteflow DEBUG stack ['$phi116.0', '$const118.2'] -13:52:44,616 numba.core.byteflow DEBUG dispatch pc=122, inst=JUMP_BACKWARD(arg=5, lineno=3) -13:52:44,616 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:44,616 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$phi116.0',), blockstack=(), npush=0)] -13:52:44,616 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:44,616 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,616 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=114 nstack_initial=1): {'$phi114.0'}, - State(pc_initial=116 nstack_initial=2): {'$phi116.1'}, - State(pc_initial=124 nstack_initial=0): set()}) -13:52:44,616 numba.core.byteflow DEBUG defmap: {'$phi114.0': State(pc_initial=0 nstack_initial=0), - '$phi116.1': State(pc_initial=114 nstack_initial=1)} -13:52:44,616 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi116.0', - State(pc_initial=116 nstack_initial=2))}, - '$phi116.0': {('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:44,616 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:44,616 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:44,616 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:44,617 numba.core.byteflow DEBUG keep phismap: {'$phi114.0': {('$112get_iter.15', State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', State(pc_initial=114 nstack_initial=1))}} -13:52:44,617 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi114.0': '$112get_iter.15'}, - State(pc_initial=114 nstack_initial=1): {'$phi116.1': '$114for_iter.2'}}) -13:52:44,617 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,617 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$sched16.2'}), (18, {'res': '$const18.3'}), (20, {'index': '$const18.3', 'target': '$sched16.2', 'res': '$20binary_subscr.4'}), (22, {}), (24, {}), (26, {}), (28, {}), (30, {'res': '$sched30.5'}), (32, {'res': '$const32.6'}), (34, {'index': '$const32.6', 'target': '$sched30.5', 'res': '$34binary_subscr.7'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {'idx': 1, 'res': '$44load_global.8'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {}), (56, {'item': '$44load_global.8', 'res': '$56load_method.10'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {'res': '$const78.11'}), (80, {}), (82, {}), (84, {'func': '$56load_method.10', 'args': ['$const78.11'], 'kw_names': None, 'res': '$84call.12'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '+', 'lhs': '$34binary_subscr.7', 'rhs': '$84call.12', 'res': '$binop_add94.13'}), (96, {}), (98, {}), (100, {}), (102, {'func': '$4load_global.0', 'args': ['$20binary_subscr.4', '$binop_add94.13'], 'kw_names': None, 'res': '$102call.14'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {'value': '$102call.14', 'res': '$112get_iter.15'})), outgoing_phis={'$phi114.0': '$112get_iter.15'}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$112get_iter.15',)}) -13:52:44,617 numba.core.byteflow DEBUG block_infos State(pc_initial=114 nstack_initial=1): -AdaptBlockInfo(insts=((114, {'iterator': '$phi114.0', 'pair': '$114for_iter.1', 'indval': '$114for_iter.2', 'pred': '$114for_iter.3'}),), outgoing_phis={'$phi116.1': '$114for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={124: (), 116: ('$phi114.0', '$114for_iter.2')}) -13:52:44,617 numba.core.byteflow DEBUG block_infos State(pc_initial=116 nstack_initial=2): -AdaptBlockInfo(insts=((116, {'value': '$phi116.1'}), (118, {'res': '$const118.2'}), (120, {'value': '$const118.2'}), (122, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$phi116.0',)}) -13:52:44,617 numba.core.byteflow DEBUG block_infos State(pc_initial=124 nstack_initial=0): -AdaptBlockInfo(insts=((124, {'res': '$const124.0'}), (126, {'retval': '$const124.0', 'castval': '$126return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,618 numba.core.interpreter DEBUG label 0: - sched = arg(0, name=sched) ['sched'] - X = arg(1, name=X) ['X'] - n__neighbors = arg(2, name=n__neighbors) ['n__neighbors'] - knn__indices = arg(3, name=knn__indices) ['knn__indices'] - $4load_global.0 = global(range: ) ['$4load_global.0'] - $const18.3 = const(int, 0) ['$const18.3'] - $20binary_subscr.4 = getitem(value=sched, index=$const18.3, fn=) ['$20binary_subscr.4', '$const18.3', 'sched'] - $const32.6 = const(int, 1) ['$const32.6'] - $34binary_subscr.7 = getitem(value=sched, index=$const32.6, fn=) ['$34binary_subscr.7', '$const32.6', 'sched'] - $44load_global.8 = global(np: ) ['$44load_global.8'] - $56load_method.10 = getattr(value=$44load_global.8, attr=uint8) ['$44load_global.8', '$56load_method.10'] - $const78.11 = const(int, 1) ['$const78.11'] - $84call.12 = call $56load_method.10($const78.11, func=$56load_method.10, args=[Var($const78.11, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$56load_method.10', '$84call.12', '$const78.11'] - $binop_add94.13 = $34binary_subscr.7 + $84call.12 ['$34binary_subscr.7', '$84call.12', '$binop_add94.13'] - $102call.14 = call $4load_global.0($20binary_subscr.4, $binop_add94.13, func=$4load_global.0, args=[Var($20binary_subscr.4, :2), Var($binop_add94.13, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$102call.14', '$20binary_subscr.4', '$4load_global.0', '$binop_add94.13'] - $112get_iter.15 = getiter(value=$102call.14) ['$102call.14', '$112get_iter.15'] - $phi114.0 = $112get_iter.15 ['$112get_iter.15', '$phi114.0'] - jump 114 [] -label 114: - $114for_iter.1 = iternext(value=$phi114.0) ['$114for_iter.1', '$phi114.0'] - $114for_iter.2 = pair_first(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.2'] - $114for_iter.3 = pair_second(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.3'] - $phi116.1 = $114for_iter.2 ['$114for_iter.2', '$phi116.1'] - branch $114for_iter.3, 116, 124 ['$114for_iter.3'] -label 116: - parfor__index_18 = $phi116.1 ['$phi116.1', 'parfor__index_18'] - __sentinel__0 = const(int, 0) ['__sentinel__0'] - jump 114 [] -label 124: - $const124.0 = const(NoneType, None) ['$const124.0'] - $126return_value.1 = cast(value=$const124.0) ['$126return_value.1', '$const124.0'] - return $126return_value.1 ['$126return_value.1'] - -13:52:44,647 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=6445) - 2 COPY_FREE_VARS(arg=1, lineno=6445) - 4 RESUME(arg=0, lineno=6445) - 6 PUSH_NULL(arg=None, lineno=6446) - 8 LOAD_DEREF(arg=1, lineno=6446) - 10 LOAD_FAST(arg=0, lineno=6446) - 12 PRECALL(arg=1, lineno=6446) - 16 CALL(arg=1, lineno=6446) - 26 RETURN_VALUE(arg=None, lineno=6446) -13:52:44,647 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,647 numba.core.byteflow DEBUG stack: [] -13:52:44,647 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=6445) -13:52:44,647 numba.core.byteflow DEBUG stack [] -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=6445) -13:52:44,647 numba.core.byteflow DEBUG stack [] -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=6445) -13:52:44,647 numba.core.byteflow DEBUG stack [] -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=6, inst=PUSH_NULL(arg=None, lineno=6446) -13:52:44,647 numba.core.byteflow DEBUG stack [] -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_DEREF(arg=1, lineno=6446) -13:52:44,647 numba.core.byteflow DEBUG stack ['$null$6.0'] -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=10, inst=LOAD_FAST(arg=0, lineno=6446) -13:52:44,647 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1'] -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=12, inst=PRECALL(arg=1, lineno=6446) -13:52:44,647 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$arr10.2'] -13:52:44,647 numba.core.byteflow DEBUG dispatch pc=16, inst=CALL(arg=1, lineno=6446) -13:52:44,647 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$arr10.2'] -13:52:44,648 numba.core.byteflow DEBUG dispatch pc=26, inst=RETURN_VALUE(arg=None, lineno=6446) -13:52:44,648 numba.core.byteflow DEBUG stack ['$16call.3'] -13:52:44,648 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,648 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,648 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:44,648 numba.core.byteflow DEBUG defmap: {} -13:52:44,648 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:44,648 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:44,648 numba.core.byteflow DEBUG keep phismap: {} -13:52:44,648 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:44,648 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,648 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {}), (8, {'res': '$8load_deref.1'}), (10, {'res': '$arr10.2'}), (12, {}), (14, {}), (16, {'func': '$8load_deref.1', 'args': ['$arr10.2'], 'kw_names': None, 'res': '$16call.3'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'retval': '$16call.3', 'castval': '$26return_value.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,648 numba.core.interpreter DEBUG label 0: - arr = arg(0, name=arr) ['arr'] - $8load_deref.1 = freevar(sort_func: .run_quicksort at 0x000001C3DB594D60>) ['$8load_deref.1'] - $16call.3 = call $8load_deref.1(arr, func=$8load_deref.1, args=[Var(arr, arrayobj.py:6445)], kws=(), vararg=None, varkwarg=None, target=None) ['$16call.3', '$8load_deref.1', 'arr'] - $26return_value.4 = cast(value=$16call.3) ['$16call.3', '$26return_value.4'] - return $26return_value.4 ['$26return_value.4'] - -13:52:44,651 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,651 numba.core.ssa DEBUG Running -13:52:44,651 numba.core.ssa DEBUG on stmt: arr = arg(0, name=arr) -13:52:44,651 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(sort_func: .run_quicksort at 0x000001C3DB594D60>) -13:52:44,651 numba.core.ssa DEBUG on stmt: $16call.3 = call $8load_deref.1(arr, func=$8load_deref.1, args=[Var(arr, arrayobj.py:6445)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,651 numba.core.ssa DEBUG on stmt: $26return_value.4 = cast(value=$16call.3) -13:52:44,651 numba.core.ssa DEBUG on stmt: return $26return_value.4 -13:52:44,651 numba.core.ssa DEBUG defs defaultdict(, - {'$16call.3': [(, - 0)], - '$26return_value.4': [(, - 0)], - '$8load_deref.1': [(, - 0)], - 'arr': [(, 0)]}) -13:52:44,651 numba.core.ssa DEBUG SSA violators -13:52:44,653 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=200) - 2 COPY_FREE_VARS(arg=1, lineno=200) - 4 RESUME(arg=0, lineno=200) - 6 LOAD_FAST(arg=0, lineno=202) - 8 LOAD_ATTR(arg=0, lineno=202) - 18 LOAD_CONST(arg=1, lineno=202) - 20 COMPARE_OP(arg=2, lineno=202) - 26 POP_JUMP_FORWARD_IF_FALSE(arg=11, lineno=202) - 28 PUSH_NULL(arg=None, lineno=203) - 30 LOAD_DEREF(arg=2, lineno=203) - 32 LOAD_FAST(arg=0, lineno=203) - 34 PRECALL(arg=1, lineno=203) - 38 CALL(arg=1, lineno=203) - 48 RETURN_VALUE(arg=None, lineno=203) -> 50 LOAD_GLOBAL(arg=3, lineno=205) - 62 LOAD_ATTR(arg=2, lineno=205) - 72 LOAD_FAST(arg=0, lineno=205) - 74 LOAD_ATTR(arg=3, lineno=205) - 84 LOAD_CONST(arg=0, lineno=205) - 86 LOAD_CONST(arg=2, lineno=205) - 88 BUILD_SLICE(arg=2, lineno=205) - 90 BINARY_SUBSCR(arg=None, lineno=205) - 100 PRECALL(arg=1, lineno=205) - 104 CALL(arg=1, lineno=205) - 114 GET_ITER(arg=None, lineno=205) -> 116 FOR_ITER(arg=19, lineno=205) - 118 STORE_FAST(arg=1, lineno=205) - 120 PUSH_NULL(arg=None, lineno=206) - 122 LOAD_DEREF(arg=2, lineno=206) - 124 LOAD_FAST(arg=0, lineno=206) - 126 LOAD_FAST(arg=1, lineno=206) - 128 BINARY_SUBSCR(arg=None, lineno=206) - 138 PRECALL(arg=1, lineno=206) - 142 CALL(arg=1, lineno=206) - 152 POP_TOP(arg=None, lineno=206) - 154 JUMP_BACKWARD(arg=20, lineno=206) -> 156 LOAD_FAST(arg=0, lineno=207) - 158 RETURN_VALUE(arg=None, lineno=207) -13:52:44,653 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,653 numba.core.byteflow DEBUG stack: [] -13:52:44,653 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,653 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=200) -13:52:44,653 numba.core.byteflow DEBUG stack [] -13:52:44,653 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=200) -13:52:44,653 numba.core.byteflow DEBUG stack [] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=200) -13:52:44,654 numba.core.byteflow DEBUG stack [] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=0, lineno=202) -13:52:44,654 numba.core.byteflow DEBUG stack [] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_ATTR(arg=0, lineno=202) -13:52:44,654 numba.core.byteflow DEBUG stack ['$A6.0'] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=202) -13:52:44,654 numba.core.byteflow DEBUG stack ['$8load_attr.1'] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=20, inst=COMPARE_OP(arg=2, lineno=202) -13:52:44,654 numba.core.byteflow DEBUG stack ['$8load_attr.1', '$const18.2'] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=26, inst=POP_JUMP_FORWARD_IF_FALSE(arg=11, lineno=202) -13:52:44,654 numba.core.byteflow DEBUG stack ['$20compare_op.3'] -13:52:44,654 numba.core.byteflow DEBUG end state. edges=[Edge(pc=28, stack=(), blockstack=(), npush=0), Edge(pc=50, stack=(), blockstack=(), npush=0)] -13:52:44,654 numba.core.byteflow DEBUG pending: deque([State(pc_initial=28 nstack_initial=0), State(pc_initial=50 nstack_initial=0)]) -13:52:44,654 numba.core.byteflow DEBUG stack: [] -13:52:44,654 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=28 nstack_initial=0) -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=28, inst=PUSH_NULL(arg=None, lineno=203) -13:52:44,654 numba.core.byteflow DEBUG stack [] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_DEREF(arg=2, lineno=203) -13:52:44,654 numba.core.byteflow DEBUG stack ['$null$28.0'] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_FAST(arg=0, lineno=203) -13:52:44,654 numba.core.byteflow DEBUG stack ['$null$28.0', '$30load_deref.1'] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=34, inst=PRECALL(arg=1, lineno=203) -13:52:44,654 numba.core.byteflow DEBUG stack ['$null$28.0', '$30load_deref.1', '$A32.2'] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=38, inst=CALL(arg=1, lineno=203) -13:52:44,654 numba.core.byteflow DEBUG stack ['$null$28.0', '$30load_deref.1', '$A32.2'] -13:52:44,654 numba.core.byteflow DEBUG dispatch pc=48, inst=RETURN_VALUE(arg=None, lineno=203) -13:52:44,654 numba.core.byteflow DEBUG stack ['$38call.3'] -13:52:44,654 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,654 numba.core.byteflow DEBUG pending: deque([State(pc_initial=50 nstack_initial=0)]) -13:52:44,654 numba.core.byteflow DEBUG stack: [] -13:52:44,654 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=50 nstack_initial=0) -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_GLOBAL(arg=3, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack [] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=62, inst=LOAD_ATTR(arg=2, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$50load_global.0'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=72, inst=LOAD_FAST(arg=0, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=74, inst=LOAD_ATTR(arg=3, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2', '$A72.3'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=84, inst=LOAD_CONST(arg=0, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2', '$74load_attr.4'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=86, inst=LOAD_CONST(arg=2, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2', '$74load_attr.4', '$const84.5'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=88, inst=BUILD_SLICE(arg=2, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2', '$74load_attr.4', '$const84.5', '$const86.6'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=90, inst=BINARY_SUBSCR(arg=None, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2', '$74load_attr.4', '$88build_slice.8'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=100, inst=PRECALL(arg=1, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2', '$90binary_subscr.9'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=104, inst=CALL(arg=1, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$null$50.1', '$62load_attr.2', '$90binary_subscr.9'] -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=114, inst=GET_ITER(arg=None, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$104call.10'] -13:52:44,655 numba.core.byteflow DEBUG end state. edges=[Edge(pc=116, stack=('$114get_iter.11',), blockstack=(), npush=0)] -13:52:44,655 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=1)]) -13:52:44,655 numba.core.byteflow DEBUG stack: ['$phi116.0'] -13:52:44,655 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=116 nstack_initial=1) -13:52:44,655 numba.core.byteflow DEBUG dispatch pc=116, inst=FOR_ITER(arg=19, lineno=205) -13:52:44,655 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:44,655 numba.core.byteflow DEBUG end state. edges=[Edge(pc=156, stack=(), blockstack=(), npush=0), Edge(pc=118, stack=('$phi116.0', '$116for_iter.2'), blockstack=(), npush=0)] -13:52:44,655 numba.core.byteflow DEBUG pending: deque([State(pc_initial=156 nstack_initial=0), State(pc_initial=118 nstack_initial=2)]) -13:52:44,656 numba.core.byteflow DEBUG stack: [] -13:52:44,656 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=156 nstack_initial=0) -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=156, inst=LOAD_FAST(arg=0, lineno=207) -13:52:44,656 numba.core.byteflow DEBUG stack [] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=158, inst=RETURN_VALUE(arg=None, lineno=207) -13:52:44,656 numba.core.byteflow DEBUG stack ['$A156.0'] -13:52:44,656 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,656 numba.core.byteflow DEBUG pending: deque([State(pc_initial=118 nstack_initial=2)]) -13:52:44,656 numba.core.byteflow DEBUG stack: ['$phi118.0', '$phi118.1'] -13:52:44,656 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=118 nstack_initial=2) -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=118, inst=STORE_FAST(arg=1, lineno=205) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$phi118.1'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=120, inst=PUSH_NULL(arg=None, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=122, inst=LOAD_DEREF(arg=2, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$null$120.2'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_FAST(arg=0, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$null$120.2', '$122load_deref.3'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=126, inst=LOAD_FAST(arg=1, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$null$120.2', '$122load_deref.3', '$A124.4'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=128, inst=BINARY_SUBSCR(arg=None, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$null$120.2', '$122load_deref.3', '$A124.4', '$idx126.5'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=138, inst=PRECALL(arg=1, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$null$120.2', '$122load_deref.3', '$128binary_subscr.6'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=142, inst=CALL(arg=1, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$null$120.2', '$122load_deref.3', '$128binary_subscr.6'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=152, inst=POP_TOP(arg=None, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0', '$142call.7'] -13:52:44,656 numba.core.byteflow DEBUG dispatch pc=154, inst=JUMP_BACKWARD(arg=20, lineno=206) -13:52:44,656 numba.core.byteflow DEBUG stack ['$phi118.0'] -13:52:44,656 numba.core.byteflow DEBUG end state. edges=[Edge(pc=116, stack=('$phi118.0',), blockstack=(), npush=0)] -13:52:44,656 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=1)]) -13:52:44,657 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,657 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=28 nstack_initial=0): set(), - State(pc_initial=50 nstack_initial=0): set(), - State(pc_initial=116 nstack_initial=1): {'$phi116.0'}, - State(pc_initial=118 nstack_initial=2): {'$phi118.1'}, - State(pc_initial=156 nstack_initial=0): set()}) -13:52:44,657 numba.core.byteflow DEBUG defmap: {'$phi116.0': State(pc_initial=50 nstack_initial=0), - '$phi118.1': State(pc_initial=116 nstack_initial=1)} -13:52:44,657 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi116.0': {('$114get_iter.11', - State(pc_initial=50 nstack_initial=0)), - ('$phi118.0', - State(pc_initial=118 nstack_initial=2))}, - '$phi118.0': {('$phi116.0', - State(pc_initial=116 nstack_initial=1))}, - '$phi118.1': {('$116for_iter.2', - State(pc_initial=116 nstack_initial=1))}}) -13:52:44,657 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi116.0': {('$114get_iter.11', - State(pc_initial=50 nstack_initial=0)), - ('$phi116.0', - State(pc_initial=116 nstack_initial=1))}, - '$phi118.0': {('$114get_iter.11', - State(pc_initial=50 nstack_initial=0))}, - '$phi118.1': {('$116for_iter.2', - State(pc_initial=116 nstack_initial=1))}}) -13:52:44,657 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi116.0': {('$114get_iter.11', - State(pc_initial=50 nstack_initial=0))}, - '$phi118.0': {('$114get_iter.11', - State(pc_initial=50 nstack_initial=0))}, - '$phi118.1': {('$116for_iter.2', - State(pc_initial=116 nstack_initial=1))}}) -13:52:44,657 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi116.0': {('$114get_iter.11', - State(pc_initial=50 nstack_initial=0))}, - '$phi118.0': {('$114get_iter.11', - State(pc_initial=50 nstack_initial=0))}, - '$phi118.1': {('$116for_iter.2', - State(pc_initial=116 nstack_initial=1))}}) -13:52:44,657 numba.core.byteflow DEBUG keep phismap: {'$phi116.0': {('$114get_iter.11', State(pc_initial=50 nstack_initial=0))}, - '$phi118.1': {('$116for_iter.2', State(pc_initial=116 nstack_initial=1))}} -13:52:44,657 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=50 nstack_initial=0): {'$phi116.0': '$114get_iter.11'}, - State(pc_initial=116 nstack_initial=1): {'$phi118.1': '$116for_iter.2'}}) -13:52:44,657 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,657 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'res': '$A6.0'}), (8, {'item': '$A6.0', 'res': '$8load_attr.1'}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$const18.2'}), (20, {'lhs': '$8load_attr.1', 'rhs': '$const18.2', 'res': '$20compare_op.3'}), (22, {}), (24, {}), (26, {'pred': '$20compare_op.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={28: (), 50: ()}) -13:52:44,657 numba.core.byteflow DEBUG block_infos State(pc_initial=28 nstack_initial=0): -AdaptBlockInfo(insts=((28, {}), (30, {'res': '$30load_deref.1'}), (32, {'res': '$A32.2'}), (34, {}), (36, {}), (38, {'func': '$30load_deref.1', 'args': ['$A32.2'], 'kw_names': None, 'res': '$38call.3'}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {'retval': '$38call.3', 'castval': '$48return_value.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,657 numba.core.byteflow DEBUG block_infos State(pc_initial=50 nstack_initial=0): -AdaptBlockInfo(insts=((50, {'idx': 1, 'res': '$50load_global.0'}), (52, {}), (54, {}), (56, {}), (58, {}), (60, {}), (62, {'item': '$50load_global.0', 'res': '$62load_attr.2'}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {'res': '$A72.3'}), (74, {'item': '$A72.3', 'res': '$74load_attr.4'}), (76, {}), (78, {}), (80, {}), (82, {}), (84, {'res': '$const84.5'}), (86, {'res': '$const86.6'}), (88, {'start': '$const84.5', 'stop': '$const86.6', 'step': None, 'res': '$88build_slice.8', 'slicevar': '$88build_slice.7'}), (90, {'index': '$88build_slice.8', 'target': '$74load_attr.4', 'res': '$90binary_subscr.9'}), (92, {}), (94, {}), (96, {}), (98, {}), (100, {}), (102, {}), (104, {'func': '$62load_attr.2', 'args': ['$90binary_subscr.9'], 'kw_names': None, 'res': '$104call.10'}), (106, {}), (108, {}), (110, {}), (112, {}), (114, {'value': '$104call.10', 'res': '$114get_iter.11'})), outgoing_phis={'$phi116.0': '$114get_iter.11'}, blockstack=(), active_try_block=None, outgoing_edgepushed={116: ('$114get_iter.11',)}) -13:52:44,657 numba.core.byteflow DEBUG block_infos State(pc_initial=116 nstack_initial=1): -AdaptBlockInfo(insts=((116, {'iterator': '$phi116.0', 'pair': '$116for_iter.1', 'indval': '$116for_iter.2', 'pred': '$116for_iter.3'}),), outgoing_phis={'$phi118.1': '$116for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={156: (), 118: ('$phi116.0', '$116for_iter.2')}) -13:52:44,657 numba.core.byteflow DEBUG block_infos State(pc_initial=118 nstack_initial=2): -AdaptBlockInfo(insts=((118, {'value': '$phi118.1'}), (120, {}), (122, {'res': '$122load_deref.3'}), (124, {'res': '$A124.4'}), (126, {'res': '$idx126.5'}), (128, {'index': '$idx126.5', 'target': '$A124.4', 'res': '$128binary_subscr.6'}), (130, {}), (132, {}), (134, {}), (136, {}), (138, {}), (140, {}), (142, {'func': '$122load_deref.3', 'args': ['$128binary_subscr.6'], 'kw_names': None, 'res': '$142call.7'}), (144, {}), (146, {}), (148, {}), (150, {}), (154, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={116: ('$phi118.0',)}) -13:52:44,658 numba.core.byteflow DEBUG block_infos State(pc_initial=156 nstack_initial=0): -AdaptBlockInfo(insts=((156, {'res': '$A156.0'}), (158, {'retval': '$A156.0', 'castval': '$158return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,658 numba.core.interpreter DEBUG label 0: - A = arg(0, name=A) ['A'] - $8load_attr.1 = getattr(value=A, attr=ndim) ['$8load_attr.1', 'A'] - $const18.2 = const(int, 1) ['$const18.2'] - $20compare_op.3 = $8load_attr.1 == $const18.2 ['$20compare_op.3', '$8load_attr.1', '$const18.2'] - bool26 = global(bool: ) ['bool26'] - $26pred = call bool26($20compare_op.3, func=bool26, args=(Var($20compare_op.3, quicksort.py:202),), kws=(), vararg=None, varkwarg=None, target=None) ['$20compare_op.3', '$26pred', 'bool26'] - branch $26pred, 28, 50 ['$26pred'] -label 28: - $30load_deref.1 = freevar(run_quicksort1: .run_quicksort1 at 0x000001C3DB596160>) ['$30load_deref.1'] - $38call.3 = call $30load_deref.1(A, func=$30load_deref.1, args=[Var(A, quicksort.py:200)], kws=(), vararg=None, varkwarg=None, target=None) ['$30load_deref.1', '$38call.3', 'A'] - $48return_value.4 = cast(value=$38call.3) ['$38call.3', '$48return_value.4'] - return $48return_value.4 ['$48return_value.4'] -label 50: - $50load_global.0 = global(np: ) ['$50load_global.0'] - $62load_attr.2 = getattr(value=$50load_global.0, attr=ndindex) ['$50load_global.0', '$62load_attr.2'] - $74load_attr.4 = getattr(value=A, attr=shape) ['$74load_attr.4', 'A'] - $const84.5 = const(NoneType, None) ['$const84.5'] - $const86.6 = const(int, -1) ['$const86.6'] - $88build_slice.7 = global(slice: ) ['$88build_slice.7'] - $88build_slice.8 = call $88build_slice.7($const84.5, $const86.6, func=$88build_slice.7, args=(Var($const84.5, quicksort.py:205), Var($const86.6, quicksort.py:205)), kws=(), vararg=None, varkwarg=None, target=None) ['$88build_slice.7', '$88build_slice.8', '$const84.5', '$const86.6'] - $90binary_subscr.9 = getitem(value=$74load_attr.4, index=$88build_slice.8, fn=) ['$74load_attr.4', '$88build_slice.8', '$90binary_subscr.9'] - $104call.10 = call $62load_attr.2($90binary_subscr.9, func=$62load_attr.2, args=[Var($90binary_subscr.9, quicksort.py:205)], kws=(), vararg=None, varkwarg=None, target=None) ['$104call.10', '$62load_attr.2', '$90binary_subscr.9'] - $114get_iter.11 = getiter(value=$104call.10) ['$104call.10', '$114get_iter.11'] - $phi116.0 = $114get_iter.11 ['$114get_iter.11', '$phi116.0'] - jump 116 [] -label 116: - $116for_iter.1 = iternext(value=$phi116.0) ['$116for_iter.1', '$phi116.0'] - $116for_iter.2 = pair_first(value=$116for_iter.1) ['$116for_iter.1', '$116for_iter.2'] - $116for_iter.3 = pair_second(value=$116for_iter.1) ['$116for_iter.1', '$116for_iter.3'] - $phi118.1 = $116for_iter.2 ['$116for_iter.2', '$phi118.1'] - branch $116for_iter.3, 118, 156 ['$116for_iter.3'] -label 118: - idx = $phi118.1 ['$phi118.1', 'idx'] - $122load_deref.3 = freevar(run_quicksort1: .run_quicksort1 at 0x000001C3DB596160>) ['$122load_deref.3'] - $128binary_subscr.6 = getitem(value=A, index=idx, fn=) ['$128binary_subscr.6', 'A', 'idx'] - $142call.7 = call $122load_deref.3($128binary_subscr.6, func=$122load_deref.3, args=[Var($128binary_subscr.6, quicksort.py:206)], kws=(), vararg=None, varkwarg=None, target=None) ['$122load_deref.3', '$128binary_subscr.6', '$142call.7'] - jump 116 [] -label 156: - $158return_value.1 = cast(value=A) ['$158return_value.1', 'A'] - return $158return_value.1 ['$158return_value.1'] - -13:52:44,662 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,662 numba.core.ssa DEBUG Running -13:52:44,662 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,662 numba.core.ssa DEBUG on stmt: $8load_attr.1 = const(int, 1) -13:52:44,662 numba.core.ssa DEBUG on stmt: $const18.2 = const(int, 1) -13:52:44,662 numba.core.ssa DEBUG on stmt: $20compare_op.3 = const(int, 1) -13:52:44,662 numba.core.ssa DEBUG on stmt: bool26 = global(bool: ) -13:52:44,662 numba.core.ssa DEBUG on stmt: $26pred = call bool26($20compare_op.3, func=bool26, args=(Var($20compare_op.3, quicksort.py:202),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,662 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,662 numba.core.ssa DEBUG ==== SSA block analysis pass on 28 -13:52:44,662 numba.core.ssa DEBUG Running -13:52:44,662 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(run_quicksort1: .run_quicksort1 at 0x000001C3DB596160>) -13:52:44,662 numba.core.ssa DEBUG on stmt: $38call.3 = call $30load_deref.1(A, func=$30load_deref.1, args=[Var(A, quicksort.py:200)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,662 numba.core.ssa DEBUG on stmt: $48return_value.4 = cast(value=$38call.3) -13:52:44,662 numba.core.ssa DEBUG on stmt: return $48return_value.4 -13:52:44,663 numba.core.ssa DEBUG defs defaultdict(, - {'$20compare_op.3': [(, - 0)], - '$26pred': [(, - 0)], - '$30load_deref.1': [(, - 28)], - '$38call.3': [(, - 28)], - '$48return_value.4': [(, - 28)], - '$8load_attr.1': [(, - 0)], - '$const18.2': [(, - 0)], - 'A': [(, 0)], - 'bool26': [(, - 0)]}) -13:52:44,663 numba.core.ssa DEBUG SSA violators -13:52:44,666 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=164) - 2 COPY_FREE_VARS(arg=4, lineno=164) - 4 RESUME(arg=0, lineno=164) - 6 PUSH_NULL(arg=None, lineno=166) - 8 LOAD_DEREF(arg=8, lineno=166) - 10 LOAD_FAST(arg=0, lineno=166) - 12 PRECALL(arg=1, lineno=166) - 16 CALL(arg=1, lineno=166) - 26 STORE_FAST(arg=1, lineno=166) - 28 LOAD_GLOBAL(arg=1, lineno=168) - 40 LOAD_FAST(arg=0, lineno=168) - 42 PRECALL(arg=1, lineno=168) - 46 CALL(arg=1, lineno=168) - 56 LOAD_CONST(arg=1, lineno=168) - 58 COMPARE_OP(arg=0, lineno=168) - 64 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=168) - 66 LOAD_FAST(arg=1, lineno=169) - 68 RETURN_VALUE(arg=None, lineno=169) -> 70 LOAD_GLOBAL(arg=3, lineno=171) - 82 LOAD_DEREF(arg=10, lineno=171) - 84 LOAD_DEREF(arg=10, lineno=171) - 86 PRECALL(arg=2, lineno=171) - 90 CALL(arg=2, lineno=171) - 100 BUILD_LIST(arg=1, lineno=171) - 102 LOAD_GLOBAL(arg=4, lineno=171) - 114 BINARY_OP(arg=5, lineno=171) - 118 STORE_FAST(arg=2, lineno=171) - 120 LOAD_GLOBAL(arg=3, lineno=172) - 132 LOAD_DEREF(arg=10, lineno=172) - 134 LOAD_GLOBAL(arg=1, lineno=172) - 146 LOAD_FAST(arg=0, lineno=172) - 148 PRECALL(arg=1, lineno=172) - 152 CALL(arg=1, lineno=172) - 162 LOAD_CONST(arg=2, lineno=172) - 164 BINARY_OP(arg=10, lineno=172) - 168 PRECALL(arg=2, lineno=172) - 172 CALL(arg=2, lineno=172) - 182 LOAD_FAST(arg=2, lineno=172) - 184 LOAD_CONST(arg=3, lineno=172) - 186 STORE_SUBSCR(arg=None, lineno=172) - 190 LOAD_CONST(arg=2, lineno=173) - 192 STORE_FAST(arg=3, lineno=173) - 194 LOAD_FAST(arg=3, lineno=175) - 196 LOAD_CONST(arg=3, lineno=175) - 198 COMPARE_OP(arg=4, lineno=175) - 204 POP_JUMP_FORWARD_IF_FALSE(arg=180, lineno=175) -> 206 LOAD_FAST(arg=3, lineno=176) - 208 LOAD_CONST(arg=2, lineno=176) - 210 BINARY_OP(arg=23, lineno=176) - 214 STORE_FAST(arg=3, lineno=176) - 216 LOAD_FAST(arg=2, lineno=177) - 218 LOAD_FAST(arg=3, lineno=177) - 220 BINARY_SUBSCR(arg=None, lineno=177) - 230 UNPACK_SEQUENCE(arg=2, lineno=177) - 234 STORE_FAST(arg=4, lineno=177) - 236 STORE_FAST(arg=5, lineno=177) - 238 LOAD_FAST(arg=5, lineno=179) - 240 LOAD_FAST(arg=4, lineno=179) - 242 BINARY_OP(arg=10, lineno=179) - 246 LOAD_GLOBAL(arg=6, lineno=179) - 258 COMPARE_OP(arg=5, lineno=179) - 264 POP_JUMP_FORWARD_IF_FALSE(arg=130, lineno=179) -> 266 LOAD_FAST(arg=3, lineno=180) - 268 LOAD_GLOBAL(arg=4, lineno=180) - 280 COMPARE_OP(arg=0, lineno=180) - 286 POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=180) - 288 LOAD_ASSERTION_ERROR(arg=None, lineno=180) - 290 RAISE_VARARGS(arg=1, lineno=180) -> 292 PUSH_NULL(arg=None, lineno=181) - 294 LOAD_DEREF(arg=9, lineno=181) - 296 LOAD_FAST(arg=0, lineno=181) - 298 LOAD_FAST(arg=1, lineno=181) - 300 LOAD_FAST(arg=4, lineno=181) - 302 LOAD_FAST(arg=5, lineno=181) - 304 PRECALL(arg=4, lineno=181) - 308 CALL(arg=4, lineno=181) - 318 STORE_FAST(arg=6, lineno=181) - 320 LOAD_FAST(arg=5, lineno=183) - 322 LOAD_FAST(arg=6, lineno=183) - 324 BINARY_OP(arg=10, lineno=183) - 328 LOAD_FAST(arg=6, lineno=183) - 330 LOAD_FAST(arg=4, lineno=183) - 332 BINARY_OP(arg=10, lineno=183) - 336 COMPARE_OP(arg=4, lineno=183) - 342 POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=183) - 344 LOAD_FAST(arg=5, lineno=185) - 346 LOAD_FAST(arg=6, lineno=185) - 348 COMPARE_OP(arg=4, lineno=185) - 354 POP_JUMP_FORWARD_IF_FALSE(arg=27, lineno=185) - 356 LOAD_GLOBAL(arg=3, lineno=186) - 368 LOAD_FAST(arg=6, lineno=186) - 370 LOAD_CONST(arg=2, lineno=186) - 372 BINARY_OP(arg=0, lineno=186) - 376 LOAD_FAST(arg=5, lineno=186) - 378 PRECALL(arg=2, lineno=186) - 382 CALL(arg=2, lineno=186) - 392 LOAD_FAST(arg=2, lineno=186) - 394 LOAD_FAST(arg=3, lineno=186) - 396 STORE_SUBSCR(arg=None, lineno=186) - 400 LOAD_FAST(arg=3, lineno=187) - 402 LOAD_CONST(arg=2, lineno=187) - 404 BINARY_OP(arg=13, lineno=187) - 408 STORE_FAST(arg=3, lineno=187) -> 410 LOAD_FAST(arg=6, lineno=188) - 412 LOAD_CONST(arg=2, lineno=188) - 414 BINARY_OP(arg=10, lineno=188) - 418 STORE_FAST(arg=5, lineno=188) - 420 JUMP_FORWARD(arg=38, lineno=188) -> 422 LOAD_FAST(arg=6, lineno=190) - 424 LOAD_FAST(arg=4, lineno=190) - 426 COMPARE_OP(arg=4, lineno=190) - 432 POP_JUMP_FORWARD_IF_FALSE(arg=27, lineno=190) - 434 LOAD_GLOBAL(arg=3, lineno=191) - 446 LOAD_FAST(arg=4, lineno=191) - 448 LOAD_FAST(arg=6, lineno=191) - 450 LOAD_CONST(arg=2, lineno=191) - 452 BINARY_OP(arg=10, lineno=191) - 456 PRECALL(arg=2, lineno=191) - 460 CALL(arg=2, lineno=191) - 470 LOAD_FAST(arg=2, lineno=191) - 472 LOAD_FAST(arg=3, lineno=191) - 474 STORE_SUBSCR(arg=None, lineno=191) - 478 LOAD_FAST(arg=3, lineno=192) - 480 LOAD_CONST(arg=2, lineno=192) - 482 BINARY_OP(arg=13, lineno=192) - 486 STORE_FAST(arg=3, lineno=192) -> 488 LOAD_FAST(arg=6, lineno=193) - 490 LOAD_CONST(arg=2, lineno=193) - 492 BINARY_OP(arg=0, lineno=193) - 496 STORE_FAST(arg=4, lineno=193) -> 498 LOAD_FAST(arg=5, lineno=179) - 500 LOAD_FAST(arg=4, lineno=179) - 502 BINARY_OP(arg=10, lineno=179) - 506 LOAD_GLOBAL(arg=6, lineno=179) - 518 COMPARE_OP(arg=5, lineno=179) - 524 POP_JUMP_BACKWARD_IF_TRUE(arg=130, lineno=179) -> 526 PUSH_NULL(arg=None, lineno=195) - 528 LOAD_DEREF(arg=7, lineno=195) - 530 LOAD_FAST(arg=0, lineno=195) - 532 LOAD_FAST(arg=1, lineno=195) - 534 LOAD_FAST(arg=4, lineno=195) - 536 LOAD_FAST(arg=5, lineno=195) - 538 PRECALL(arg=4, lineno=195) - 542 CALL(arg=4, lineno=195) - 552 POP_TOP(arg=None, lineno=195) - 554 LOAD_FAST(arg=3, lineno=175) - 556 LOAD_CONST(arg=3, lineno=175) - 558 COMPARE_OP(arg=4, lineno=175) - 564 POP_JUMP_BACKWARD_IF_TRUE(arg=180, lineno=175) -> 566 LOAD_FAST(arg=1, lineno=197) - 568 RETURN_VALUE(arg=None, lineno=197) -13:52:44,666 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,666 numba.core.byteflow DEBUG stack: [] -13:52:44,666 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,666 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=164) -13:52:44,666 numba.core.byteflow DEBUG stack [] -13:52:44,666 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=4, lineno=164) -13:52:44,666 numba.core.byteflow DEBUG stack [] -13:52:44,666 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=164) -13:52:44,666 numba.core.byteflow DEBUG stack [] -13:52:44,666 numba.core.byteflow DEBUG dispatch pc=6, inst=PUSH_NULL(arg=None, lineno=166) -13:52:44,666 numba.core.byteflow DEBUG stack [] -13:52:44,666 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_DEREF(arg=8, lineno=166) -13:52:44,666 numba.core.byteflow DEBUG stack ['$null$6.0'] -13:52:44,666 numba.core.byteflow DEBUG dispatch pc=10, inst=LOAD_FAST(arg=0, lineno=166) -13:52:44,667 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=12, inst=PRECALL(arg=1, lineno=166) -13:52:44,667 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$A10.2'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=16, inst=CALL(arg=1, lineno=166) -13:52:44,667 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$A10.2'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=26, inst=STORE_FAST(arg=1, lineno=166) -13:52:44,667 numba.core.byteflow DEBUG stack ['$16call.3'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_GLOBAL(arg=1, lineno=168) -13:52:44,667 numba.core.byteflow DEBUG stack [] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=40, inst=LOAD_FAST(arg=0, lineno=168) -13:52:44,667 numba.core.byteflow DEBUG stack ['$null$28.5', '$28load_global.4'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=42, inst=PRECALL(arg=1, lineno=168) -13:52:44,667 numba.core.byteflow DEBUG stack ['$null$28.5', '$28load_global.4', '$A40.6'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=46, inst=CALL(arg=1, lineno=168) -13:52:44,667 numba.core.byteflow DEBUG stack ['$null$28.5', '$28load_global.4', '$A40.6'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_CONST(arg=1, lineno=168) -13:52:44,667 numba.core.byteflow DEBUG stack ['$46call.7'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=58, inst=COMPARE_OP(arg=0, lineno=168) -13:52:44,667 numba.core.byteflow DEBUG stack ['$46call.7', '$const56.8'] -13:52:44,667 numba.core.byteflow DEBUG dispatch pc=64, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=168) -13:52:44,668 numba.core.byteflow DEBUG stack ['$58compare_op.9'] -13:52:44,668 numba.core.byteflow DEBUG end state. edges=[Edge(pc=66, stack=(), blockstack=(), npush=0), Edge(pc=70, stack=(), blockstack=(), npush=0)] -13:52:44,668 numba.core.byteflow DEBUG pending: deque([State(pc_initial=66 nstack_initial=0), State(pc_initial=70 nstack_initial=0)]) -13:52:44,668 numba.core.byteflow DEBUG stack: [] -13:52:44,668 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=66 nstack_initial=0) -13:52:44,668 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_FAST(arg=1, lineno=169) -13:52:44,668 numba.core.byteflow DEBUG stack [] -13:52:44,668 numba.core.byteflow DEBUG dispatch pc=68, inst=RETURN_VALUE(arg=None, lineno=169) -13:52:44,668 numba.core.byteflow DEBUG stack ['$R66.0'] -13:52:44,668 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,668 numba.core.byteflow DEBUG pending: deque([State(pc_initial=70 nstack_initial=0)]) -13:52:44,668 numba.core.byteflow DEBUG stack: [] -13:52:44,668 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=70 nstack_initial=0) -13:52:44,668 numba.core.byteflow DEBUG dispatch pc=70, inst=LOAD_GLOBAL(arg=3, lineno=171) -13:52:44,668 numba.core.byteflow DEBUG stack [] -13:52:44,668 numba.core.byteflow DEBUG dispatch pc=82, inst=LOAD_DEREF(arg=10, lineno=171) -13:52:44,668 numba.core.byteflow DEBUG stack ['$null$70.1', '$70load_global.0'] -13:52:44,668 numba.core.byteflow DEBUG dispatch pc=84, inst=LOAD_DEREF(arg=10, lineno=171) -13:52:44,668 numba.core.byteflow DEBUG stack ['$null$70.1', '$70load_global.0', '$82load_deref.2'] -13:52:44,668 numba.core.byteflow DEBUG dispatch pc=86, inst=PRECALL(arg=2, lineno=171) -13:52:44,668 numba.core.byteflow DEBUG stack ['$null$70.1', '$70load_global.0', '$82load_deref.2', '$84load_deref.3'] -13:52:44,668 numba.core.byteflow DEBUG dispatch pc=90, inst=CALL(arg=2, lineno=171) -13:52:44,668 numba.core.byteflow DEBUG stack ['$null$70.1', '$70load_global.0', '$82load_deref.2', '$84load_deref.3'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=100, inst=BUILD_LIST(arg=1, lineno=171) -13:52:44,669 numba.core.byteflow DEBUG stack ['$90call.4'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=102, inst=LOAD_GLOBAL(arg=4, lineno=171) -13:52:44,669 numba.core.byteflow DEBUG stack ['$100build_list.5'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=114, inst=BINARY_OP(arg=5, lineno=171) -13:52:44,669 numba.core.byteflow DEBUG stack ['$100build_list.5', '$102load_global.6'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=118, inst=STORE_FAST(arg=2, lineno=171) -13:52:44,669 numba.core.byteflow DEBUG stack ['$binop_mul114.7'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=120, inst=LOAD_GLOBAL(arg=3, lineno=172) -13:52:44,669 numba.core.byteflow DEBUG stack [] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=132, inst=LOAD_DEREF(arg=10, lineno=172) -13:52:44,669 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=134, inst=LOAD_GLOBAL(arg=1, lineno=172) -13:52:44,669 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=146, inst=LOAD_FAST(arg=0, lineno=172) -13:52:44,669 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10', '$null$134.12', '$134load_global.11'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=148, inst=PRECALL(arg=1, lineno=172) -13:52:44,669 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10', '$null$134.12', '$134load_global.11', '$A146.13'] -13:52:44,669 numba.core.byteflow DEBUG dispatch pc=152, inst=CALL(arg=1, lineno=172) -13:52:44,669 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10', '$null$134.12', '$134load_global.11', '$A146.13'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=162, inst=LOAD_CONST(arg=2, lineno=172) -13:52:44,670 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10', '$152call.14'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=164, inst=BINARY_OP(arg=10, lineno=172) -13:52:44,670 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10', '$152call.14', '$const162.15'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=168, inst=PRECALL(arg=2, lineno=172) -13:52:44,670 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10', '$binop_sub164.16'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=172, inst=CALL(arg=2, lineno=172) -13:52:44,670 numba.core.byteflow DEBUG stack ['$null$120.9', '$120load_global.8', '$132load_deref.10', '$binop_sub164.16'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=182, inst=LOAD_FAST(arg=2, lineno=172) -13:52:44,670 numba.core.byteflow DEBUG stack ['$172call.17'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=184, inst=LOAD_CONST(arg=3, lineno=172) -13:52:44,670 numba.core.byteflow DEBUG stack ['$172call.17', '$stack182.18'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=186, inst=STORE_SUBSCR(arg=None, lineno=172) -13:52:44,670 numba.core.byteflow DEBUG stack ['$172call.17', '$stack182.18', '$const184.19'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=190, inst=LOAD_CONST(arg=2, lineno=173) -13:52:44,670 numba.core.byteflow DEBUG stack [] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=192, inst=STORE_FAST(arg=3, lineno=173) -13:52:44,670 numba.core.byteflow DEBUG stack ['$const190.20'] -13:52:44,670 numba.core.byteflow DEBUG dispatch pc=194, inst=LOAD_FAST(arg=3, lineno=175) -13:52:44,671 numba.core.byteflow DEBUG stack [] -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=196, inst=LOAD_CONST(arg=3, lineno=175) -13:52:44,671 numba.core.byteflow DEBUG stack ['$n194.21'] -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=198, inst=COMPARE_OP(arg=4, lineno=175) -13:52:44,671 numba.core.byteflow DEBUG stack ['$n194.21', '$const196.22'] -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=204, inst=POP_JUMP_FORWARD_IF_FALSE(arg=180, lineno=175) -13:52:44,671 numba.core.byteflow DEBUG stack ['$198compare_op.23'] -13:52:44,671 numba.core.byteflow DEBUG end state. edges=[Edge(pc=206, stack=(), blockstack=(), npush=0), Edge(pc=566, stack=(), blockstack=(), npush=0)] -13:52:44,671 numba.core.byteflow DEBUG pending: deque([State(pc_initial=206 nstack_initial=0), State(pc_initial=566 nstack_initial=0)]) -13:52:44,671 numba.core.byteflow DEBUG stack: [] -13:52:44,671 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=206 nstack_initial=0) -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=206, inst=LOAD_FAST(arg=3, lineno=176) -13:52:44,671 numba.core.byteflow DEBUG stack [] -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=208, inst=LOAD_CONST(arg=2, lineno=176) -13:52:44,671 numba.core.byteflow DEBUG stack ['$n206.0'] -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=210, inst=BINARY_OP(arg=23, lineno=176) -13:52:44,671 numba.core.byteflow DEBUG stack ['$n206.0', '$const208.1'] -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=214, inst=STORE_FAST(arg=3, lineno=176) -13:52:44,671 numba.core.byteflow DEBUG stack ['$binop_isub210.2'] -13:52:44,671 numba.core.byteflow DEBUG dispatch pc=216, inst=LOAD_FAST(arg=2, lineno=177) -13:52:44,672 numba.core.byteflow DEBUG stack [] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=218, inst=LOAD_FAST(arg=3, lineno=177) -13:52:44,672 numba.core.byteflow DEBUG stack ['$stack216.3'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=220, inst=BINARY_SUBSCR(arg=None, lineno=177) -13:52:44,672 numba.core.byteflow DEBUG stack ['$stack216.3', '$n218.4'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=230, inst=UNPACK_SEQUENCE(arg=2, lineno=177) -13:52:44,672 numba.core.byteflow DEBUG stack ['$220binary_subscr.5'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=234, inst=STORE_FAST(arg=4, lineno=177) -13:52:44,672 numba.core.byteflow DEBUG stack ['$230unpack_sequence.7', '$230unpack_sequence.6'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=236, inst=STORE_FAST(arg=5, lineno=177) -13:52:44,672 numba.core.byteflow DEBUG stack ['$230unpack_sequence.7'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=238, inst=LOAD_FAST(arg=5, lineno=179) -13:52:44,672 numba.core.byteflow DEBUG stack [] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=240, inst=LOAD_FAST(arg=4, lineno=179) -13:52:44,672 numba.core.byteflow DEBUG stack ['$high238.9'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=242, inst=BINARY_OP(arg=10, lineno=179) -13:52:44,672 numba.core.byteflow DEBUG stack ['$high238.9', '$low240.10'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=246, inst=LOAD_GLOBAL(arg=6, lineno=179) -13:52:44,672 numba.core.byteflow DEBUG stack ['$binop_sub242.11'] -13:52:44,672 numba.core.byteflow DEBUG dispatch pc=258, inst=COMPARE_OP(arg=5, lineno=179) -13:52:44,673 numba.core.byteflow DEBUG stack ['$binop_sub242.11', '$246load_global.12'] -13:52:44,673 numba.core.byteflow DEBUG dispatch pc=264, inst=POP_JUMP_FORWARD_IF_FALSE(arg=130, lineno=179) -13:52:44,673 numba.core.byteflow DEBUG stack ['$258compare_op.13'] -13:52:44,673 numba.core.byteflow DEBUG end state. edges=[Edge(pc=266, stack=(), blockstack=(), npush=0), Edge(pc=526, stack=(), blockstack=(), npush=0)] -13:52:44,673 numba.core.byteflow DEBUG pending: deque([State(pc_initial=566 nstack_initial=0), State(pc_initial=266 nstack_initial=0), State(pc_initial=526 nstack_initial=0)]) -13:52:44,673 numba.core.byteflow DEBUG stack: [] -13:52:44,673 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=566 nstack_initial=0) -13:52:44,673 numba.core.byteflow DEBUG dispatch pc=566, inst=LOAD_FAST(arg=1, lineno=197) -13:52:44,673 numba.core.byteflow DEBUG stack [] -13:52:44,673 numba.core.byteflow DEBUG dispatch pc=568, inst=RETURN_VALUE(arg=None, lineno=197) -13:52:44,673 numba.core.byteflow DEBUG stack ['$R566.0'] -13:52:44,673 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,673 numba.core.byteflow DEBUG pending: deque([State(pc_initial=266 nstack_initial=0), State(pc_initial=526 nstack_initial=0)]) -13:52:44,673 numba.core.byteflow DEBUG stack: [] -13:52:44,673 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=266 nstack_initial=0) -13:52:44,673 numba.core.byteflow DEBUG dispatch pc=266, inst=LOAD_FAST(arg=3, lineno=180) -13:52:44,673 numba.core.byteflow DEBUG stack [] -13:52:44,673 numba.core.byteflow DEBUG dispatch pc=268, inst=LOAD_GLOBAL(arg=4, lineno=180) -13:52:44,673 numba.core.byteflow DEBUG stack ['$n266.0'] -13:52:44,673 numba.core.byteflow DEBUG dispatch pc=280, inst=COMPARE_OP(arg=0, lineno=180) -13:52:44,673 numba.core.byteflow DEBUG stack ['$n266.0', '$268load_global.1'] -13:52:44,673 numba.core.byteflow DEBUG dispatch pc=286, inst=POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=180) -13:52:44,673 numba.core.byteflow DEBUG stack ['$280compare_op.2'] -13:52:44,674 numba.core.byteflow DEBUG end state. edges=[Edge(pc=288, stack=(), blockstack=(), npush=0), Edge(pc=292, stack=(), blockstack=(), npush=0)] -13:52:44,674 numba.core.byteflow DEBUG pending: deque([State(pc_initial=526 nstack_initial=0), State(pc_initial=288 nstack_initial=0), State(pc_initial=292 nstack_initial=0)]) -13:52:44,674 numba.core.byteflow DEBUG stack: [] -13:52:44,674 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=526 nstack_initial=0) -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=526, inst=PUSH_NULL(arg=None, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack [] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=528, inst=LOAD_DEREF(arg=7, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$null$526.0'] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=530, inst=LOAD_FAST(arg=0, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$null$526.0', '$528load_deref.1'] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=532, inst=LOAD_FAST(arg=1, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$null$526.0', '$528load_deref.1', '$A530.2'] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=534, inst=LOAD_FAST(arg=4, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$null$526.0', '$528load_deref.1', '$A530.2', '$R532.3'] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=536, inst=LOAD_FAST(arg=5, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$null$526.0', '$528load_deref.1', '$A530.2', '$R532.3', '$low534.4'] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=538, inst=PRECALL(arg=4, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$null$526.0', '$528load_deref.1', '$A530.2', '$R532.3', '$low534.4', '$high536.5'] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=542, inst=CALL(arg=4, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$null$526.0', '$528load_deref.1', '$A530.2', '$R532.3', '$low534.4', '$high536.5'] -13:52:44,674 numba.core.byteflow DEBUG dispatch pc=552, inst=POP_TOP(arg=None, lineno=195) -13:52:44,674 numba.core.byteflow DEBUG stack ['$542call.6'] -13:52:44,675 numba.core.byteflow DEBUG dispatch pc=554, inst=LOAD_FAST(arg=3, lineno=175) -13:52:44,675 numba.core.byteflow DEBUG stack [] -13:52:44,675 numba.core.byteflow DEBUG dispatch pc=556, inst=LOAD_CONST(arg=3, lineno=175) -13:52:44,675 numba.core.byteflow DEBUG stack ['$n554.7'] -13:52:44,675 numba.core.byteflow DEBUG dispatch pc=558, inst=COMPARE_OP(arg=4, lineno=175) -13:52:44,675 numba.core.byteflow DEBUG stack ['$n554.7', '$const556.8'] -13:52:44,675 numba.core.byteflow DEBUG dispatch pc=564, inst=POP_JUMP_BACKWARD_IF_TRUE(arg=180, lineno=175) -13:52:44,675 numba.core.byteflow DEBUG stack ['$558compare_op.9'] -13:52:44,675 numba.core.byteflow DEBUG end state. edges=[Edge(pc=566, stack=(), blockstack=(), npush=0), Edge(pc=206, stack=(), blockstack=(), npush=0)] -13:52:44,675 numba.core.byteflow DEBUG pending: deque([State(pc_initial=288 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=566 nstack_initial=0), State(pc_initial=206 nstack_initial=0)]) -13:52:44,675 numba.core.byteflow DEBUG stack: [] -13:52:44,675 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=288 nstack_initial=0) -13:52:44,675 numba.core.byteflow DEBUG dispatch pc=288, inst=LOAD_ASSERTION_ERROR(arg=None, lineno=180) -13:52:44,675 numba.core.byteflow DEBUG stack [] -13:52:44,675 numba.core.byteflow DEBUG dispatch pc=290, inst=RAISE_VARARGS(arg=1, lineno=180) -13:52:44,675 numba.core.byteflow DEBUG stack ['$assertion_error288.0'] -13:52:44,675 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,675 numba.core.byteflow DEBUG pending: deque([State(pc_initial=292 nstack_initial=0), State(pc_initial=566 nstack_initial=0), State(pc_initial=206 nstack_initial=0)]) -13:52:44,675 numba.core.byteflow DEBUG stack: [] -13:52:44,675 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=292 nstack_initial=0) -13:52:44,675 numba.core.byteflow DEBUG dispatch pc=292, inst=PUSH_NULL(arg=None, lineno=181) -13:52:44,675 numba.core.byteflow DEBUG stack [] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=294, inst=LOAD_DEREF(arg=9, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$null$292.0'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=296, inst=LOAD_FAST(arg=0, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$null$292.0', '$294load_deref.1'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=298, inst=LOAD_FAST(arg=1, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$null$292.0', '$294load_deref.1', '$A296.2'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=300, inst=LOAD_FAST(arg=4, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$null$292.0', '$294load_deref.1', '$A296.2', '$R298.3'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=302, inst=LOAD_FAST(arg=5, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$null$292.0', '$294load_deref.1', '$A296.2', '$R298.3', '$low300.4'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=304, inst=PRECALL(arg=4, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$null$292.0', '$294load_deref.1', '$A296.2', '$R298.3', '$low300.4', '$high302.5'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=308, inst=CALL(arg=4, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$null$292.0', '$294load_deref.1', '$A296.2', '$R298.3', '$low300.4', '$high302.5'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=318, inst=STORE_FAST(arg=6, lineno=181) -13:52:44,676 numba.core.byteflow DEBUG stack ['$308call.6'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=320, inst=LOAD_FAST(arg=5, lineno=183) -13:52:44,676 numba.core.byteflow DEBUG stack [] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=322, inst=LOAD_FAST(arg=6, lineno=183) -13:52:44,676 numba.core.byteflow DEBUG stack ['$high320.7'] -13:52:44,676 numba.core.byteflow DEBUG dispatch pc=324, inst=BINARY_OP(arg=10, lineno=183) -13:52:44,677 numba.core.byteflow DEBUG stack ['$high320.7', '$i322.8'] -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=328, inst=LOAD_FAST(arg=6, lineno=183) -13:52:44,677 numba.core.byteflow DEBUG stack ['$binop_sub324.9'] -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=330, inst=LOAD_FAST(arg=4, lineno=183) -13:52:44,677 numba.core.byteflow DEBUG stack ['$binop_sub324.9', '$i328.10'] -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=332, inst=BINARY_OP(arg=10, lineno=183) -13:52:44,677 numba.core.byteflow DEBUG stack ['$binop_sub324.9', '$i328.10', '$low330.11'] -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=336, inst=COMPARE_OP(arg=4, lineno=183) -13:52:44,677 numba.core.byteflow DEBUG stack ['$binop_sub324.9', '$binop_sub332.12'] -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=342, inst=POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=183) -13:52:44,677 numba.core.byteflow DEBUG stack ['$336compare_op.13'] -13:52:44,677 numba.core.byteflow DEBUG end state. edges=[Edge(pc=344, stack=(), blockstack=(), npush=0), Edge(pc=422, stack=(), blockstack=(), npush=0)] -13:52:44,677 numba.core.byteflow DEBUG pending: deque([State(pc_initial=566 nstack_initial=0), State(pc_initial=206 nstack_initial=0), State(pc_initial=344 nstack_initial=0), State(pc_initial=422 nstack_initial=0)]) -13:52:44,677 numba.core.byteflow DEBUG pending: deque([State(pc_initial=206 nstack_initial=0), State(pc_initial=344 nstack_initial=0), State(pc_initial=422 nstack_initial=0)]) -13:52:44,677 numba.core.byteflow DEBUG pending: deque([State(pc_initial=344 nstack_initial=0), State(pc_initial=422 nstack_initial=0)]) -13:52:44,677 numba.core.byteflow DEBUG stack: [] -13:52:44,677 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=344 nstack_initial=0) -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=344, inst=LOAD_FAST(arg=5, lineno=185) -13:52:44,677 numba.core.byteflow DEBUG stack [] -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=346, inst=LOAD_FAST(arg=6, lineno=185) -13:52:44,677 numba.core.byteflow DEBUG stack ['$high344.0'] -13:52:44,677 numba.core.byteflow DEBUG dispatch pc=348, inst=COMPARE_OP(arg=4, lineno=185) -13:52:44,678 numba.core.byteflow DEBUG stack ['$high344.0', '$i346.1'] -13:52:44,678 numba.core.byteflow DEBUG dispatch pc=354, inst=POP_JUMP_FORWARD_IF_FALSE(arg=27, lineno=185) -13:52:44,678 numba.core.byteflow DEBUG stack ['$348compare_op.2'] -13:52:44,678 numba.core.byteflow DEBUG end state. edges=[Edge(pc=356, stack=(), blockstack=(), npush=0), Edge(pc=410, stack=(), blockstack=(), npush=0)] -13:52:44,678 numba.core.byteflow DEBUG pending: deque([State(pc_initial=422 nstack_initial=0), State(pc_initial=356 nstack_initial=0), State(pc_initial=410 nstack_initial=0)]) -13:52:44,678 numba.core.byteflow DEBUG stack: [] -13:52:44,678 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=422 nstack_initial=0) -13:52:44,678 numba.core.byteflow DEBUG dispatch pc=422, inst=LOAD_FAST(arg=6, lineno=190) -13:52:44,678 numba.core.byteflow DEBUG stack [] -13:52:44,678 numba.core.byteflow DEBUG dispatch pc=424, inst=LOAD_FAST(arg=4, lineno=190) -13:52:44,678 numba.core.byteflow DEBUG stack ['$i422.0'] -13:52:44,678 numba.core.byteflow DEBUG dispatch pc=426, inst=COMPARE_OP(arg=4, lineno=190) -13:52:44,678 numba.core.byteflow DEBUG stack ['$i422.0', '$low424.1'] -13:52:44,678 numba.core.byteflow DEBUG dispatch pc=432, inst=POP_JUMP_FORWARD_IF_FALSE(arg=27, lineno=190) -13:52:44,678 numba.core.byteflow DEBUG stack ['$426compare_op.2'] -13:52:44,678 numba.core.byteflow DEBUG end state. edges=[Edge(pc=434, stack=(), blockstack=(), npush=0), Edge(pc=488, stack=(), blockstack=(), npush=0)] -13:52:44,678 numba.core.byteflow DEBUG pending: deque([State(pc_initial=356 nstack_initial=0), State(pc_initial=410 nstack_initial=0), State(pc_initial=434 nstack_initial=0), State(pc_initial=488 nstack_initial=0)]) -13:52:44,678 numba.core.byteflow DEBUG stack: [] -13:52:44,678 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=356 nstack_initial=0) -13:52:44,678 numba.core.byteflow DEBUG dispatch pc=356, inst=LOAD_GLOBAL(arg=3, lineno=186) -13:52:44,678 numba.core.byteflow DEBUG stack [] -13:52:44,678 numba.core.byteflow DEBUG dispatch pc=368, inst=LOAD_FAST(arg=6, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=370, inst=LOAD_CONST(arg=2, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$i368.2'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=372, inst=BINARY_OP(arg=0, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$i368.2', '$const370.3'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=376, inst=LOAD_FAST(arg=5, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$binop_add372.4'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=378, inst=PRECALL(arg=2, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$binop_add372.4', '$high376.5'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=382, inst=CALL(arg=2, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$binop_add372.4', '$high376.5'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=392, inst=LOAD_FAST(arg=2, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$382call.6'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=394, inst=LOAD_FAST(arg=3, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$382call.6', '$stack392.7'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=396, inst=STORE_SUBSCR(arg=None, lineno=186) -13:52:44,679 numba.core.byteflow DEBUG stack ['$382call.6', '$stack392.7', '$n394.8'] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=400, inst=LOAD_FAST(arg=3, lineno=187) -13:52:44,679 numba.core.byteflow DEBUG stack [] -13:52:44,679 numba.core.byteflow DEBUG dispatch pc=402, inst=LOAD_CONST(arg=2, lineno=187) -13:52:44,679 numba.core.byteflow DEBUG stack ['$n400.9'] -13:52:44,680 numba.core.byteflow DEBUG dispatch pc=404, inst=BINARY_OP(arg=13, lineno=187) -13:52:44,680 numba.core.byteflow DEBUG stack ['$n400.9', '$const402.10'] -13:52:44,680 numba.core.byteflow DEBUG dispatch pc=408, inst=STORE_FAST(arg=3, lineno=187) -13:52:44,680 numba.core.byteflow DEBUG stack ['$binop_iadd404.11'] -13:52:44,680 numba.core.byteflow DEBUG end state. edges=[Edge(pc=410, stack=(), blockstack=(), npush=0)] -13:52:44,680 numba.core.byteflow DEBUG pending: deque([State(pc_initial=410 nstack_initial=0), State(pc_initial=434 nstack_initial=0), State(pc_initial=488 nstack_initial=0), State(pc_initial=410 nstack_initial=0)]) -13:52:44,680 numba.core.byteflow DEBUG stack: [] -13:52:44,680 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=410 nstack_initial=0) -13:52:44,680 numba.core.byteflow DEBUG dispatch pc=410, inst=LOAD_FAST(arg=6, lineno=188) -13:52:44,680 numba.core.byteflow DEBUG stack [] -13:52:44,680 numba.core.byteflow DEBUG dispatch pc=412, inst=LOAD_CONST(arg=2, lineno=188) -13:52:44,680 numba.core.byteflow DEBUG stack ['$i410.0'] -13:52:44,680 numba.core.byteflow DEBUG dispatch pc=414, inst=BINARY_OP(arg=10, lineno=188) -13:52:44,680 numba.core.byteflow DEBUG stack ['$i410.0', '$const412.1'] -13:52:44,680 numba.core.byteflow DEBUG dispatch pc=418, inst=STORE_FAST(arg=5, lineno=188) -13:52:44,680 numba.core.byteflow DEBUG stack ['$binop_sub414.2'] -13:52:44,680 numba.core.byteflow DEBUG dispatch pc=420, inst=JUMP_FORWARD(arg=38, lineno=188) -13:52:44,680 numba.core.byteflow DEBUG stack [] -13:52:44,680 numba.core.byteflow DEBUG end state. edges=[Edge(pc=498, stack=(), blockstack=(), npush=0)] -13:52:44,680 numba.core.byteflow DEBUG pending: deque([State(pc_initial=434 nstack_initial=0), State(pc_initial=488 nstack_initial=0), State(pc_initial=410 nstack_initial=0), State(pc_initial=498 nstack_initial=0)]) -13:52:44,680 numba.core.byteflow DEBUG stack: [] -13:52:44,680 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=434 nstack_initial=0) -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=434, inst=LOAD_GLOBAL(arg=3, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack [] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=446, inst=LOAD_FAST(arg=4, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$null$434.1', '$434load_global.0'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=448, inst=LOAD_FAST(arg=6, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$null$434.1', '$434load_global.0', '$low446.2'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=450, inst=LOAD_CONST(arg=2, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$null$434.1', '$434load_global.0', '$low446.2', '$i448.3'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=452, inst=BINARY_OP(arg=10, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$null$434.1', '$434load_global.0', '$low446.2', '$i448.3', '$const450.4'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=456, inst=PRECALL(arg=2, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$null$434.1', '$434load_global.0', '$low446.2', '$binop_sub452.5'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=460, inst=CALL(arg=2, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$null$434.1', '$434load_global.0', '$low446.2', '$binop_sub452.5'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=470, inst=LOAD_FAST(arg=2, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$460call.6'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=472, inst=LOAD_FAST(arg=3, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$460call.6', '$stack470.7'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=474, inst=STORE_SUBSCR(arg=None, lineno=191) -13:52:44,681 numba.core.byteflow DEBUG stack ['$460call.6', '$stack470.7', '$n472.8'] -13:52:44,681 numba.core.byteflow DEBUG dispatch pc=478, inst=LOAD_FAST(arg=3, lineno=192) -13:52:44,682 numba.core.byteflow DEBUG stack [] -13:52:44,682 numba.core.byteflow DEBUG dispatch pc=480, inst=LOAD_CONST(arg=2, lineno=192) -13:52:44,682 numba.core.byteflow DEBUG stack ['$n478.9'] -13:52:44,682 numba.core.byteflow DEBUG dispatch pc=482, inst=BINARY_OP(arg=13, lineno=192) -13:52:44,682 numba.core.byteflow DEBUG stack ['$n478.9', '$const480.10'] -13:52:44,682 numba.core.byteflow DEBUG dispatch pc=486, inst=STORE_FAST(arg=3, lineno=192) -13:52:44,682 numba.core.byteflow DEBUG stack ['$binop_iadd482.11'] -13:52:44,682 numba.core.byteflow DEBUG end state. edges=[Edge(pc=488, stack=(), blockstack=(), npush=0)] -13:52:44,682 numba.core.byteflow DEBUG pending: deque([State(pc_initial=488 nstack_initial=0), State(pc_initial=410 nstack_initial=0), State(pc_initial=498 nstack_initial=0), State(pc_initial=488 nstack_initial=0)]) -13:52:44,682 numba.core.byteflow DEBUG stack: [] -13:52:44,682 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=488 nstack_initial=0) -13:52:44,682 numba.core.byteflow DEBUG dispatch pc=488, inst=LOAD_FAST(arg=6, lineno=193) -13:52:44,682 numba.core.byteflow DEBUG stack [] -13:52:44,682 numba.core.byteflow DEBUG dispatch pc=490, inst=LOAD_CONST(arg=2, lineno=193) -13:52:44,682 numba.core.byteflow DEBUG stack ['$i488.0'] -13:52:44,682 numba.core.byteflow DEBUG dispatch pc=492, inst=BINARY_OP(arg=0, lineno=193) -13:52:44,682 numba.core.byteflow DEBUG stack ['$i488.0', '$const490.1'] -13:52:44,682 numba.core.byteflow DEBUG dispatch pc=496, inst=STORE_FAST(arg=4, lineno=193) -13:52:44,682 numba.core.byteflow DEBUG stack ['$binop_add492.2'] -13:52:44,682 numba.core.byteflow DEBUG end state. edges=[Edge(pc=498, stack=(), blockstack=(), npush=0)] -13:52:44,682 numba.core.byteflow DEBUG pending: deque([State(pc_initial=410 nstack_initial=0), State(pc_initial=498 nstack_initial=0), State(pc_initial=488 nstack_initial=0), State(pc_initial=498 nstack_initial=0)]) -13:52:44,682 numba.core.byteflow DEBUG pending: deque([State(pc_initial=498 nstack_initial=0), State(pc_initial=488 nstack_initial=0), State(pc_initial=498 nstack_initial=0)]) -13:52:44,682 numba.core.byteflow DEBUG stack: [] -13:52:44,683 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=498 nstack_initial=0) -13:52:44,683 numba.core.byteflow DEBUG dispatch pc=498, inst=LOAD_FAST(arg=5, lineno=179) -13:52:44,683 numba.core.byteflow DEBUG stack [] -13:52:44,683 numba.core.byteflow DEBUG dispatch pc=500, inst=LOAD_FAST(arg=4, lineno=179) -13:52:44,683 numba.core.byteflow DEBUG stack ['$high498.0'] -13:52:44,683 numba.core.byteflow DEBUG dispatch pc=502, inst=BINARY_OP(arg=10, lineno=179) -13:52:44,683 numba.core.byteflow DEBUG stack ['$high498.0', '$low500.1'] -13:52:44,683 numba.core.byteflow DEBUG dispatch pc=506, inst=LOAD_GLOBAL(arg=6, lineno=179) -13:52:44,683 numba.core.byteflow DEBUG stack ['$binop_sub502.2'] -13:52:44,683 numba.core.byteflow DEBUG dispatch pc=518, inst=COMPARE_OP(arg=5, lineno=179) -13:52:44,683 numba.core.byteflow DEBUG stack ['$binop_sub502.2', '$506load_global.3'] -13:52:44,683 numba.core.byteflow DEBUG dispatch pc=524, inst=POP_JUMP_BACKWARD_IF_TRUE(arg=130, lineno=179) -13:52:44,683 numba.core.byteflow DEBUG stack ['$518compare_op.4'] -13:52:44,683 numba.core.byteflow DEBUG end state. edges=[Edge(pc=526, stack=(), blockstack=(), npush=0), Edge(pc=266, stack=(), blockstack=(), npush=0)] -13:52:44,683 numba.core.byteflow DEBUG pending: deque([State(pc_initial=488 nstack_initial=0), State(pc_initial=498 nstack_initial=0), State(pc_initial=526 nstack_initial=0), State(pc_initial=266 nstack_initial=0)]) -13:52:44,683 numba.core.byteflow DEBUG pending: deque([State(pc_initial=498 nstack_initial=0), State(pc_initial=526 nstack_initial=0), State(pc_initial=266 nstack_initial=0)]) -13:52:44,683 numba.core.byteflow DEBUG pending: deque([State(pc_initial=526 nstack_initial=0), State(pc_initial=266 nstack_initial=0)]) -13:52:44,683 numba.core.byteflow DEBUG pending: deque([State(pc_initial=266 nstack_initial=0)]) -13:52:44,683 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,683 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=66 nstack_initial=0): set(), - State(pc_initial=70 nstack_initial=0): set(), - State(pc_initial=206 nstack_initial=0): set(), - State(pc_initial=266 nstack_initial=0): set(), - State(pc_initial=288 nstack_initial=0): set(), - State(pc_initial=292 nstack_initial=0): set(), - State(pc_initial=344 nstack_initial=0): set(), - State(pc_initial=356 nstack_initial=0): set(), - State(pc_initial=410 nstack_initial=0): set(), - State(pc_initial=422 nstack_initial=0): set(), - State(pc_initial=434 nstack_initial=0): set(), - State(pc_initial=488 nstack_initial=0): set(), - State(pc_initial=498 nstack_initial=0): set(), - State(pc_initial=526 nstack_initial=0): set(), - State(pc_initial=566 nstack_initial=0): set()}) -13:52:44,684 numba.core.byteflow DEBUG defmap: {} -13:52:44,684 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:44,684 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:44,684 numba.core.byteflow DEBUG keep phismap: {} -13:52:44,684 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:44,684 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {}), (8, {'res': '$8load_deref.1'}), (10, {'res': '$A10.2'}), (12, {}), (14, {}), (16, {'func': '$8load_deref.1', 'args': ['$A10.2'], 'kw_names': None, 'res': '$16call.3'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'value': '$16call.3'}), (28, {'idx': 0, 'res': '$28load_global.4'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {}), (40, {'res': '$A40.6'}), (42, {}), (44, {}), (46, {'func': '$28load_global.4', 'args': ['$A40.6'], 'kw_names': None, 'res': '$46call.7'}), (48, {}), (50, {}), (52, {}), (54, {}), (56, {'res': '$const56.8'}), (58, {'lhs': '$46call.7', 'rhs': '$const56.8', 'res': '$58compare_op.9'}), (60, {}), (62, {}), (64, {'pred': '$58compare_op.9'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={66: (), 70: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=66 nstack_initial=0): -AdaptBlockInfo(insts=((66, {'res': '$R66.0'}), (68, {'retval': '$R66.0', 'castval': '$68return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=70 nstack_initial=0): -AdaptBlockInfo(insts=((70, {'idx': 1, 'res': '$70load_global.0'}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {}), (82, {'res': '$82load_deref.2'}), (84, {'res': '$84load_deref.3'}), (86, {}), (88, {}), (90, {'func': '$70load_global.0', 'args': ['$82load_deref.2', '$84load_deref.3'], 'kw_names': None, 'res': '$90call.4'}), (92, {}), (94, {}), (96, {}), (98, {}), (100, {'items': ['$90call.4'], 'res': '$100build_list.5'}), (102, {'idx': 2, 'res': '$102load_global.6'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {}), (114, {'op': '*', 'lhs': '$100build_list.5', 'rhs': '$102load_global.6', 'res': '$binop_mul114.7'}), (116, {}), (118, {'value': '$binop_mul114.7'}), (120, {'idx': 1, 'res': '$120load_global.8'}), (122, {}), (124, {}), (126, {}), (128, {}), (130, {}), (132, {'res': '$132load_deref.10'}), (134, {'idx': 0, 'res': '$134load_global.11'}), (136, {}), (138, {}), (140, {}), (142, {}), (144, {}), (146, {'res': '$A146.13'}), (148, {}), (150, {}), (152, {'func': '$134load_global.11', 'args': ['$A146.13'], 'kw_names': None, 'res': '$152call.14'}), (154, {}), (156, {}), (158, {}), (160, {}), (162, {'res': '$const162.15'}), (164, {'op': '-', 'lhs': '$152call.14', 'rhs': '$const162.15', 'res': '$binop_sub164.16'}), (166, {}), (168, {}), (170, {}), (172, {'func': '$120load_global.8', 'args': ['$132load_deref.10', '$binop_sub164.16'], 'kw_names': None, 'res': '$172call.17'}), (174, {}), (176, {}), (178, {}), (180, {}), (182, {'res': '$stack182.18'}), (184, {'res': '$const184.19'}), (186, {'target': '$stack182.18', 'index': '$const184.19', 'value': '$172call.17'}), (188, {}), (190, {'res': '$const190.20'}), (192, {'value': '$const190.20'}), (194, {'res': '$n194.21'}), (196, {'res': '$const196.22'}), (198, {'lhs': '$n194.21', 'rhs': '$const196.22', 'res': '$198compare_op.23'}), (200, {}), (202, {}), (204, {'pred': '$198compare_op.23'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={206: (), 566: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=206 nstack_initial=0): -AdaptBlockInfo(insts=((206, {'res': '$n206.0'}), (208, {'res': '$const208.1'}), (210, {'op': '-=', 'lhs': '$n206.0', 'rhs': '$const208.1', 'res': '$binop_isub210.2'}), (212, {}), (214, {'value': '$binop_isub210.2'}), (216, {'res': '$stack216.3'}), (218, {'res': '$n218.4'}), (220, {'index': '$n218.4', 'target': '$stack216.3', 'res': '$220binary_subscr.5'}), (222, {}), (224, {}), (226, {}), (228, {}), (230, {'iterable': '$220binary_subscr.5', 'stores': ['$230unpack_sequence.6', '$230unpack_sequence.7'], 'tupleobj': '$230unpack_sequence.8'}), (232, {}), (234, {'value': '$230unpack_sequence.6'}), (236, {'value': '$230unpack_sequence.7'}), (238, {'res': '$high238.9'}), (240, {'res': '$low240.10'}), (242, {'op': '-', 'lhs': '$high238.9', 'rhs': '$low240.10', 'res': '$binop_sub242.11'}), (244, {}), (246, {'idx': 3, 'res': '$246load_global.12'}), (248, {}), (250, {}), (252, {}), (254, {}), (256, {}), (258, {'lhs': '$binop_sub242.11', 'rhs': '$246load_global.12', 'res': '$258compare_op.13'}), (260, {}), (262, {}), (264, {'pred': '$258compare_op.13'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={266: (), 526: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=266 nstack_initial=0): -AdaptBlockInfo(insts=((266, {'res': '$n266.0'}), (268, {'idx': 2, 'res': '$268load_global.1'}), (270, {}), (272, {}), (274, {}), (276, {}), (278, {}), (280, {'lhs': '$n266.0', 'rhs': '$268load_global.1', 'res': '$280compare_op.2'}), (282, {}), (284, {}), (286, {'pred': '$280compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={288: (), 292: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=288 nstack_initial=0): -AdaptBlockInfo(insts=((288, {'res': '$assertion_error288.0'}), (290, {'exc': '$assertion_error288.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=292 nstack_initial=0): -AdaptBlockInfo(insts=((292, {}), (294, {'res': '$294load_deref.1'}), (296, {'res': '$A296.2'}), (298, {'res': '$R298.3'}), (300, {'res': '$low300.4'}), (302, {'res': '$high302.5'}), (304, {}), (306, {}), (308, {'func': '$294load_deref.1', 'args': ['$A296.2', '$R298.3', '$low300.4', '$high302.5'], 'kw_names': None, 'res': '$308call.6'}), (310, {}), (312, {}), (314, {}), (316, {}), (318, {'value': '$308call.6'}), (320, {'res': '$high320.7'}), (322, {'res': '$i322.8'}), (324, {'op': '-', 'lhs': '$high320.7', 'rhs': '$i322.8', 'res': '$binop_sub324.9'}), (326, {}), (328, {'res': '$i328.10'}), (330, {'res': '$low330.11'}), (332, {'op': '-', 'lhs': '$i328.10', 'rhs': '$low330.11', 'res': '$binop_sub332.12'}), (334, {}), (336, {'lhs': '$binop_sub324.9', 'rhs': '$binop_sub332.12', 'res': '$336compare_op.13'}), (338, {}), (340, {}), (342, {'pred': '$336compare_op.13'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={344: (), 422: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=344 nstack_initial=0): -AdaptBlockInfo(insts=((344, {'res': '$high344.0'}), (346, {'res': '$i346.1'}), (348, {'lhs': '$high344.0', 'rhs': '$i346.1', 'res': '$348compare_op.2'}), (350, {}), (352, {}), (354, {'pred': '$348compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={356: (), 410: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=356 nstack_initial=0): -AdaptBlockInfo(insts=((356, {'idx': 1, 'res': '$356load_global.0'}), (358, {}), (360, {}), (362, {}), (364, {}), (366, {}), (368, {'res': '$i368.2'}), (370, {'res': '$const370.3'}), (372, {'op': '+', 'lhs': '$i368.2', 'rhs': '$const370.3', 'res': '$binop_add372.4'}), (374, {}), (376, {'res': '$high376.5'}), (378, {}), (380, {}), (382, {'func': '$356load_global.0', 'args': ['$binop_add372.4', '$high376.5'], 'kw_names': None, 'res': '$382call.6'}), (384, {}), (386, {}), (388, {}), (390, {}), (392, {'res': '$stack392.7'}), (394, {'res': '$n394.8'}), (396, {'target': '$stack392.7', 'index': '$n394.8', 'value': '$382call.6'}), (398, {}), (400, {'res': '$n400.9'}), (402, {'res': '$const402.10'}), (404, {'op': '+=', 'lhs': '$n400.9', 'rhs': '$const402.10', 'res': '$binop_iadd404.11'}), (406, {}), (408, {'value': '$binop_iadd404.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={410: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=410 nstack_initial=0): -AdaptBlockInfo(insts=((410, {'res': '$i410.0'}), (412, {'res': '$const412.1'}), (414, {'op': '-', 'lhs': '$i410.0', 'rhs': '$const412.1', 'res': '$binop_sub414.2'}), (416, {}), (418, {'value': '$binop_sub414.2'}), (420, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={498: ()}) -13:52:44,684 numba.core.byteflow DEBUG block_infos State(pc_initial=422 nstack_initial=0): -AdaptBlockInfo(insts=((422, {'res': '$i422.0'}), (424, {'res': '$low424.1'}), (426, {'lhs': '$i422.0', 'rhs': '$low424.1', 'res': '$426compare_op.2'}), (428, {}), (430, {}), (432, {'pred': '$426compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={434: (), 488: ()}) -13:52:44,685 numba.core.byteflow DEBUG block_infos State(pc_initial=434 nstack_initial=0): -AdaptBlockInfo(insts=((434, {'idx': 1, 'res': '$434load_global.0'}), (436, {}), (438, {}), (440, {}), (442, {}), (444, {}), (446, {'res': '$low446.2'}), (448, {'res': '$i448.3'}), (450, {'res': '$const450.4'}), (452, {'op': '-', 'lhs': '$i448.3', 'rhs': '$const450.4', 'res': '$binop_sub452.5'}), (454, {}), (456, {}), (458, {}), (460, {'func': '$434load_global.0', 'args': ['$low446.2', '$binop_sub452.5'], 'kw_names': None, 'res': '$460call.6'}), (462, {}), (464, {}), (466, {}), (468, {}), (470, {'res': '$stack470.7'}), (472, {'res': '$n472.8'}), (474, {'target': '$stack470.7', 'index': '$n472.8', 'value': '$460call.6'}), (476, {}), (478, {'res': '$n478.9'}), (480, {'res': '$const480.10'}), (482, {'op': '+=', 'lhs': '$n478.9', 'rhs': '$const480.10', 'res': '$binop_iadd482.11'}), (484, {}), (486, {'value': '$binop_iadd482.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={488: ()}) -13:52:44,685 numba.core.byteflow DEBUG block_infos State(pc_initial=488 nstack_initial=0): -AdaptBlockInfo(insts=((488, {'res': '$i488.0'}), (490, {'res': '$const490.1'}), (492, {'op': '+', 'lhs': '$i488.0', 'rhs': '$const490.1', 'res': '$binop_add492.2'}), (494, {}), (496, {'value': '$binop_add492.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={498: ()}) -13:52:44,685 numba.core.byteflow DEBUG block_infos State(pc_initial=498 nstack_initial=0): -AdaptBlockInfo(insts=((498, {'res': '$high498.0'}), (500, {'res': '$low500.1'}), (502, {'op': '-', 'lhs': '$high498.0', 'rhs': '$low500.1', 'res': '$binop_sub502.2'}), (504, {}), (506, {'idx': 3, 'res': '$506load_global.3'}), (508, {}), (510, {}), (512, {}), (514, {}), (516, {}), (518, {'lhs': '$binop_sub502.2', 'rhs': '$506load_global.3', 'res': '$518compare_op.4'}), (520, {}), (522, {}), (524, {'pred': '$518compare_op.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={526: (), 266: ()}) -13:52:44,685 numba.core.byteflow DEBUG block_infos State(pc_initial=526 nstack_initial=0): -AdaptBlockInfo(insts=((526, {}), (528, {'res': '$528load_deref.1'}), (530, {'res': '$A530.2'}), (532, {'res': '$R532.3'}), (534, {'res': '$low534.4'}), (536, {'res': '$high536.5'}), (538, {}), (540, {}), (542, {'func': '$528load_deref.1', 'args': ['$A530.2', '$R532.3', '$low534.4', '$high536.5'], 'kw_names': None, 'res': '$542call.6'}), (544, {}), (546, {}), (548, {}), (550, {}), (554, {'res': '$n554.7'}), (556, {'res': '$const556.8'}), (558, {'lhs': '$n554.7', 'rhs': '$const556.8', 'res': '$558compare_op.9'}), (560, {}), (562, {}), (564, {'pred': '$558compare_op.9'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={566: (), 206: ()}) -13:52:44,685 numba.core.byteflow DEBUG block_infos State(pc_initial=566 nstack_initial=0): -AdaptBlockInfo(insts=((566, {'res': '$R566.0'}), (568, {'retval': '$R566.0', 'castval': '$568return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,687 numba.core.interpreter DEBUG label 0: - A = arg(0, name=A) ['A'] - $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) ['$8load_deref.1'] - R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) ['$8load_deref.1', 'A', 'R'] - $28load_global.4 = global(len: ) ['$28load_global.4'] - $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) ['$28load_global.4', '$46call.7', 'A'] - $const56.8 = const(int, 2) ['$const56.8'] - $58compare_op.9 = $46call.7 < $const56.8 ['$46call.7', '$58compare_op.9', '$const56.8'] - bool64 = global(bool: ) ['bool64'] - $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) ['$58compare_op.9', '$64pred', 'bool64'] - branch $64pred, 66, 70 ['$64pred'] -label 66: - $68return_value.1 = cast(value=R) ['$68return_value.1', 'R'] - return $68return_value.1 ['$68return_value.1'] -label 70: - $70load_global.0 = global(Partition: ) ['$70load_global.0'] - $82load_deref.2 = freevar(zero: 0) ['$82load_deref.2'] - $84load_deref.3 = freevar(zero: 0) ['$84load_deref.3'] - $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) ['$70load_global.0', '$82load_deref.2', '$84load_deref.3', '$90call.4'] - $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) ['$100build_list.5', '$90call.4'] - $102load_global.6 = global(MAX_STACK: 100) ['$102load_global.6'] - stack = $100build_list.5 * $102load_global.6 ['$100build_list.5', '$102load_global.6', 'stack'] - $120load_global.8 = global(Partition: ) ['$120load_global.8'] - $132load_deref.10 = freevar(zero: 0) ['$132load_deref.10'] - $134load_global.11 = global(len: ) ['$134load_global.11'] - $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) ['$134load_global.11', '$152call.14', 'A'] - $const162.15 = const(int, 1) ['$const162.15'] - $binop_sub164.16 = $152call.14 - $const162.15 ['$152call.14', '$binop_sub164.16', '$const162.15'] - $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) ['$120load_global.8', '$132load_deref.10', '$172call.17', '$binop_sub164.16'] - $const184.19 = const(int, 0) ['$const184.19'] - stack[$const184.19] = $172call.17 ['$172call.17', '$const184.19', 'stack'] - n = const(int, 1) ['n'] - $const196.22 = const(int, 0) ['$const196.22'] - $198compare_op.23 = n > $const196.22 ['$198compare_op.23', '$const196.22', 'n'] - bool204 = global(bool: ) ['bool204'] - $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) ['$198compare_op.23', '$204pred', 'bool204'] - branch $204pred, 206, 566 ['$204pred'] -label 206: - $const208.1 = const(int, 1) ['$const208.1'] - $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_isub210.2', '$const208.1', 'n'] - n = $binop_isub210.2 ['$binop_isub210.2', 'n'] - $220binary_subscr.5 = getitem(value=stack, index=n, fn=) ['$220binary_subscr.5', 'n', 'stack'] - $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) ['$220binary_subscr.5', '$230unpack_sequence.8'] - $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) ['$230unpack_sequence.6', '$230unpack_sequence.8'] - $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) ['$230unpack_sequence.7', '$230unpack_sequence.8'] - low = $230unpack_sequence.6 ['$230unpack_sequence.6', 'low'] - high = $230unpack_sequence.7 ['$230unpack_sequence.7', 'high'] - $binop_sub242.11 = high - low ['$binop_sub242.11', 'high', 'low'] - $246load_global.12 = global(SMALL_QUICKSORT: 15) ['$246load_global.12'] - $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 ['$246load_global.12', '$258compare_op.13', '$binop_sub242.11'] - bool264 = global(bool: ) ['bool264'] - $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) ['$258compare_op.13', '$264pred', 'bool264'] - branch $264pred, 266, 526 ['$264pred'] -label 266: - $268load_global.1 = global(MAX_STACK: 100) ['$268load_global.1'] - $280compare_op.2 = n < $268load_global.1 ['$268load_global.1', '$280compare_op.2', 'n'] - bool286 = global(bool: ) ['bool286'] - $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) ['$280compare_op.2', '$286pred', 'bool286'] - branch $286pred, 292, 288 ['$286pred'] -label 288: - $assertion_error288.0 = global(AssertionError: ) ['$assertion_error288.0'] - raise $assertion_error288.0 ['$assertion_error288.0'] -label 292: - $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) ['$294load_deref.1'] - i = call $294load_deref.1(A, R, low, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) ['$294load_deref.1', 'A', 'R', 'high', 'i', 'low'] - $binop_sub324.9 = high - i ['$binop_sub324.9', 'high', 'i'] - $binop_sub332.12 = i - low ['$binop_sub332.12', 'i', 'low'] - $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 ['$336compare_op.13', '$binop_sub324.9', '$binop_sub332.12'] - bool342 = global(bool: ) ['bool342'] - $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) ['$336compare_op.13', '$342pred', 'bool342'] - branch $342pred, 344, 422 ['$342pred'] -label 344: - $348compare_op.2 = high > i ['$348compare_op.2', 'high', 'i'] - bool354 = global(bool: ) ['bool354'] - $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) ['$348compare_op.2', '$354pred', 'bool354'] - branch $354pred, 356, 410 ['$354pred'] -label 356: - $356load_global.0 = global(Partition: ) ['$356load_global.0'] - $const370.3 = const(int, 1) ['$const370.3'] - $binop_add372.4 = i + $const370.3 ['$binop_add372.4', '$const370.3', 'i'] - $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) ['$356load_global.0', '$382call.6', '$binop_add372.4', 'high'] - stack[n] = $382call.6 ['$382call.6', 'n', 'stack'] - $const402.10 = const(int, 1) ['$const402.10'] - $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd404.11', '$const402.10', 'n'] - n = $binop_iadd404.11 ['$binop_iadd404.11', 'n'] - jump 410 [] -label 410: - $const412.1 = const(int, 1) ['$const412.1'] - high = i - $const412.1 ['$const412.1', 'high', 'i'] - jump 498 [] -label 422: - $426compare_op.2 = i > low ['$426compare_op.2', 'i', 'low'] - bool432 = global(bool: ) ['bool432'] - $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) ['$426compare_op.2', '$432pred', 'bool432'] - branch $432pred, 434, 488 ['$432pred'] -label 434: - $434load_global.0 = global(Partition: ) ['$434load_global.0'] - $const450.4 = const(int, 1) ['$const450.4'] - $binop_sub452.5 = i - $const450.4 ['$binop_sub452.5', '$const450.4', 'i'] - $460call.6 = call $434load_global.0(low, $binop_sub452.5, func=$434load_global.0, args=[Var(low, quicksort.py:177), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) ['$434load_global.0', '$460call.6', '$binop_sub452.5', 'low'] - stack[n] = $460call.6 ['$460call.6', 'n', 'stack'] - $const480.10 = const(int, 1) ['$const480.10'] - $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd482.11', '$const480.10', 'n'] - n = $binop_iadd482.11 ['$binop_iadd482.11', 'n'] - jump 488 [] -label 488: - $const490.1 = const(int, 1) ['$const490.1'] - low = i + $const490.1 ['$const490.1', 'i', 'low'] - jump 498 [] -label 498: - $binop_sub502.2 = high - low ['$binop_sub502.2', 'high', 'low'] - $506load_global.3 = global(SMALL_QUICKSORT: 15) ['$506load_global.3'] - $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 ['$506load_global.3', '$518compare_op.4', '$binop_sub502.2'] - bool524 = global(bool: ) ['bool524'] - $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) ['$518compare_op.4', '$524pred', 'bool524'] - branch $524pred, 266, 526 ['$524pred'] -label 526: - $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) ['$528load_deref.1'] - $542call.6 = call $528load_deref.1(A, R, low, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) ['$528load_deref.1', '$542call.6', 'A', 'R', 'high', 'low'] - $const556.8 = const(int, 0) ['$const556.8'] - $558compare_op.9 = n > $const556.8 ['$558compare_op.9', '$const556.8', 'n'] - bool564 = global(bool: ) ['bool564'] - $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) ['$558compare_op.9', '$564pred', 'bool564'] - branch $564pred, 206, 566 ['$564pred'] -label 566: - $568return_value.1 = cast(value=R) ['$568return_value.1', 'R'] - return $568return_value.1 ['$568return_value.1'] - -13:52:44,697 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,697 numba.core.ssa DEBUG Running -13:52:44,697 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,697 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) -13:52:44,697 numba.core.ssa DEBUG on stmt: R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,697 numba.core.ssa DEBUG on stmt: $28load_global.4 = global(len: ) -13:52:44,697 numba.core.ssa DEBUG on stmt: $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,697 numba.core.ssa DEBUG on stmt: $const56.8 = const(int, 2) -13:52:44,697 numba.core.ssa DEBUG on stmt: $58compare_op.9 = $46call.7 < $const56.8 -13:52:44,697 numba.core.ssa DEBUG on stmt: bool64 = global(bool: ) -13:52:44,697 numba.core.ssa DEBUG on stmt: $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,698 numba.core.ssa DEBUG on stmt: branch $64pred, 66, 70 -13:52:44,698 numba.core.ssa DEBUG ==== SSA block analysis pass on 66 -13:52:44,698 numba.core.ssa DEBUG Running -13:52:44,698 numba.core.ssa DEBUG on stmt: $68return_value.1 = cast(value=R) -13:52:44,698 numba.core.ssa DEBUG on stmt: return $68return_value.1 -13:52:44,698 numba.core.ssa DEBUG ==== SSA block analysis pass on 70 -13:52:44,698 numba.core.ssa DEBUG Running -13:52:44,698 numba.core.ssa DEBUG on stmt: $70load_global.0 = global(Partition: ) -13:52:44,698 numba.core.ssa DEBUG on stmt: $82load_deref.2 = freevar(zero: 0) -13:52:44,698 numba.core.ssa DEBUG on stmt: $84load_deref.3 = freevar(zero: 0) -13:52:44,698 numba.core.ssa DEBUG on stmt: $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,698 numba.core.ssa DEBUG on stmt: $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) -13:52:44,698 numba.core.ssa DEBUG on stmt: $102load_global.6 = global(MAX_STACK: 100) -13:52:44,698 numba.core.ssa DEBUG on stmt: stack = $100build_list.5 * $102load_global.6 -13:52:44,698 numba.core.ssa DEBUG on stmt: $120load_global.8 = global(Partition: ) -13:52:44,698 numba.core.ssa DEBUG on stmt: $132load_deref.10 = freevar(zero: 0) -13:52:44,698 numba.core.ssa DEBUG on stmt: $134load_global.11 = global(len: ) -13:52:44,698 numba.core.ssa DEBUG on stmt: $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,698 numba.core.ssa DEBUG on stmt: $const162.15 = const(int, 1) -13:52:44,698 numba.core.ssa DEBUG on stmt: $binop_sub164.16 = $152call.14 - $const162.15 -13:52:44,698 numba.core.ssa DEBUG on stmt: $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,699 numba.core.ssa DEBUG on stmt: $const184.19 = const(int, 0) -13:52:44,699 numba.core.ssa DEBUG on stmt: stack[0] = $172call.17 -13:52:44,699 numba.core.ssa DEBUG on stmt: n = const(int, 1) -13:52:44,699 numba.core.ssa DEBUG on stmt: $const196.22 = const(int, 0) -13:52:44,699 numba.core.ssa DEBUG on stmt: $198compare_op.23 = n > $const196.22 -13:52:44,699 numba.core.ssa DEBUG on stmt: bool204 = global(bool: ) -13:52:44,699 numba.core.ssa DEBUG on stmt: $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,699 numba.core.ssa DEBUG on stmt: branch $204pred, 206, 566 -13:52:44,699 numba.core.ssa DEBUG ==== SSA block analysis pass on 206 -13:52:44,699 numba.core.ssa DEBUG Running -13:52:44,699 numba.core.ssa DEBUG on stmt: $const208.1 = const(int, 1) -13:52:44,699 numba.core.ssa DEBUG on stmt: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,700 numba.core.ssa DEBUG on stmt: n = $binop_isub210.2 -13:52:44,700 numba.core.ssa DEBUG on stmt: $220binary_subscr.5 = getitem(value=stack, index=n, fn=) -13:52:44,700 numba.core.ssa DEBUG on stmt: $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) -13:52:44,700 numba.core.ssa DEBUG on stmt: $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) -13:52:44,700 numba.core.ssa DEBUG on stmt: $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) -13:52:44,700 numba.core.ssa DEBUG on stmt: low = $230unpack_sequence.6 -13:52:44,700 numba.core.ssa DEBUG on stmt: high = $230unpack_sequence.7 -13:52:44,700 numba.core.ssa DEBUG on stmt: $binop_sub242.11 = high - low -13:52:44,700 numba.core.ssa DEBUG on stmt: $246load_global.12 = global(SMALL_QUICKSORT: 15) -13:52:44,700 numba.core.ssa DEBUG on stmt: $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 -13:52:44,700 numba.core.ssa DEBUG on stmt: bool264 = global(bool: ) -13:52:44,700 numba.core.ssa DEBUG on stmt: $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,700 numba.core.ssa DEBUG on stmt: branch $264pred, 266, 526 -13:52:44,700 numba.core.ssa DEBUG ==== SSA block analysis pass on 266 -13:52:44,700 numba.core.ssa DEBUG Running -13:52:44,700 numba.core.ssa DEBUG on stmt: $268load_global.1 = global(MAX_STACK: 100) -13:52:44,700 numba.core.ssa DEBUG on stmt: $280compare_op.2 = n < $268load_global.1 -13:52:44,700 numba.core.ssa DEBUG on stmt: bool286 = global(bool: ) -13:52:44,700 numba.core.ssa DEBUG on stmt: $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,701 numba.core.ssa DEBUG on stmt: branch $286pred, 292, 288 -13:52:44,701 numba.core.ssa DEBUG ==== SSA block analysis pass on 288 -13:52:44,701 numba.core.ssa DEBUG Running -13:52:44,701 numba.core.ssa DEBUG on stmt: $assertion_error288.0 = global(AssertionError: ) -13:52:44,701 numba.core.ssa DEBUG on stmt: raise -13:52:44,701 numba.core.ssa DEBUG ==== SSA block analysis pass on 292 -13:52:44,701 numba.core.ssa DEBUG Running -13:52:44,701 numba.core.ssa DEBUG on stmt: $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) -13:52:44,701 numba.core.ssa DEBUG on stmt: i = call $294load_deref.1(A, R, low, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,701 numba.core.ssa DEBUG on stmt: $binop_sub324.9 = high - i -13:52:44,701 numba.core.ssa DEBUG on stmt: $binop_sub332.12 = i - low -13:52:44,701 numba.core.ssa DEBUG on stmt: $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 -13:52:44,701 numba.core.ssa DEBUG on stmt: bool342 = global(bool: ) -13:52:44,701 numba.core.ssa DEBUG on stmt: $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,701 numba.core.ssa DEBUG on stmt: branch $342pred, 344, 422 -13:52:44,701 numba.core.ssa DEBUG ==== SSA block analysis pass on 344 -13:52:44,701 numba.core.ssa DEBUG Running -13:52:44,701 numba.core.ssa DEBUG on stmt: $348compare_op.2 = high > i -13:52:44,701 numba.core.ssa DEBUG on stmt: bool354 = global(bool: ) -13:52:44,701 numba.core.ssa DEBUG on stmt: $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,701 numba.core.ssa DEBUG on stmt: branch $354pred, 356, 410 -13:52:44,701 numba.core.ssa DEBUG ==== SSA block analysis pass on 356 -13:52:44,702 numba.core.ssa DEBUG Running -13:52:44,702 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(Partition: ) -13:52:44,702 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 1) -13:52:44,702 numba.core.ssa DEBUG on stmt: $binop_add372.4 = i + $const370.3 -13:52:44,702 numba.core.ssa DEBUG on stmt: $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,702 numba.core.ssa DEBUG on stmt: stack[n] = $382call.6 -13:52:44,702 numba.core.ssa DEBUG on stmt: $const402.10 = const(int, 1) -13:52:44,702 numba.core.ssa DEBUG on stmt: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,702 numba.core.ssa DEBUG on stmt: n = $binop_iadd404.11 -13:52:44,702 numba.core.ssa DEBUG on stmt: jump 410 -13:52:44,702 numba.core.ssa DEBUG ==== SSA block analysis pass on 410 -13:52:44,702 numba.core.ssa DEBUG Running -13:52:44,702 numba.core.ssa DEBUG on stmt: $const412.1 = const(int, 1) -13:52:44,702 numba.core.ssa DEBUG on stmt: high = i - $const412.1 -13:52:44,702 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,702 numba.core.ssa DEBUG ==== SSA block analysis pass on 422 -13:52:44,702 numba.core.ssa DEBUG Running -13:52:44,702 numba.core.ssa DEBUG on stmt: $426compare_op.2 = i > low -13:52:44,702 numba.core.ssa DEBUG on stmt: bool432 = global(bool: ) -13:52:44,702 numba.core.ssa DEBUG on stmt: $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,702 numba.core.ssa DEBUG on stmt: branch $432pred, 434, 488 -13:52:44,702 numba.core.ssa DEBUG ==== SSA block analysis pass on 434 -13:52:44,703 numba.core.ssa DEBUG Running -13:52:44,703 numba.core.ssa DEBUG on stmt: $434load_global.0 = global(Partition: ) -13:52:44,703 numba.core.ssa DEBUG on stmt: $const450.4 = const(int, 1) -13:52:44,703 numba.core.ssa DEBUG on stmt: $binop_sub452.5 = i - $const450.4 -13:52:44,703 numba.core.ssa DEBUG on stmt: $460call.6 = call $434load_global.0(low, $binop_sub452.5, func=$434load_global.0, args=[Var(low, quicksort.py:177), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,703 numba.core.ssa DEBUG on stmt: stack[n] = $460call.6 -13:52:44,703 numba.core.ssa DEBUG on stmt: $const480.10 = const(int, 1) -13:52:44,703 numba.core.ssa DEBUG on stmt: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,703 numba.core.ssa DEBUG on stmt: n = $binop_iadd482.11 -13:52:44,703 numba.core.ssa DEBUG on stmt: jump 488 -13:52:44,703 numba.core.ssa DEBUG ==== SSA block analysis pass on 488 -13:52:44,703 numba.core.ssa DEBUG Running -13:52:44,703 numba.core.ssa DEBUG on stmt: $const490.1 = const(int, 1) -13:52:44,703 numba.core.ssa DEBUG on stmt: low = i + $const490.1 -13:52:44,703 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,703 numba.core.ssa DEBUG ==== SSA block analysis pass on 498 -13:52:44,703 numba.core.ssa DEBUG Running -13:52:44,703 numba.core.ssa DEBUG on stmt: $binop_sub502.2 = high - low -13:52:44,703 numba.core.ssa DEBUG on stmt: $506load_global.3 = global(SMALL_QUICKSORT: 15) -13:52:44,703 numba.core.ssa DEBUG on stmt: $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 -13:52:44,703 numba.core.ssa DEBUG on stmt: bool524 = global(bool: ) -13:52:44,703 numba.core.ssa DEBUG on stmt: $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,704 numba.core.ssa DEBUG on stmt: branch $524pred, 266, 526 -13:52:44,704 numba.core.ssa DEBUG ==== SSA block analysis pass on 526 -13:52:44,704 numba.core.ssa DEBUG Running -13:52:44,704 numba.core.ssa DEBUG on stmt: $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) -13:52:44,704 numba.core.ssa DEBUG on stmt: $542call.6 = call $528load_deref.1(A, R, low, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,704 numba.core.ssa DEBUG on stmt: $const556.8 = const(int, 0) -13:52:44,704 numba.core.ssa DEBUG on stmt: $558compare_op.9 = n > $const556.8 -13:52:44,704 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:44,704 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,704 numba.core.ssa DEBUG on stmt: branch $564pred, 206, 566 -13:52:44,704 numba.core.ssa DEBUG ==== SSA block analysis pass on 566 -13:52:44,704 numba.core.ssa DEBUG Running -13:52:44,704 numba.core.ssa DEBUG on stmt: $568return_value.1 = cast(value=R) -13:52:44,704 numba.core.ssa DEBUG on stmt: return $568return_value.1 -13:52:44,706 numba.core.ssa DEBUG defs defaultdict(, - {'$100build_list.5': [(, - 70)], - '$102load_global.6': [(, - 70)], - '$120load_global.8': [(, - 70)], - '$132load_deref.10': [(, - 70)], - '$134load_global.11': [(, - 70)], - '$152call.14': [(, - 70)], - '$172call.17': [(, - 70)], - '$198compare_op.23': [(, - 70)], - '$204pred': [(, - 70)], - '$220binary_subscr.5': [(, - 206)], - '$230unpack_sequence.6': [(, - 206)], - '$230unpack_sequence.7': [(, - 206)], - '$230unpack_sequence.8': [(, - 206)], - '$246load_global.12': [(, - 206)], - '$258compare_op.13': [(, - 206)], - '$264pred': [(, - 206)], - '$268load_global.1': [(, - 266)], - '$280compare_op.2': [(, - 266)], - '$286pred': [(, - 266)], - '$28load_global.4': [(, - 0)], - '$294load_deref.1': [(, - 292)], - '$336compare_op.13': [(, - 292)], - '$342pred': [(, - 292)], - '$348compare_op.2': [(, - 344)], - '$354pred': [(, - 344)], - '$356load_global.0': [(, - 356)], - '$382call.6': [(, - 356)], - '$426compare_op.2': [(, - 422)], - '$432pred': [(, - 422)], - '$434load_global.0': [(, - 434)], - '$460call.6': [(, - 434)], - '$46call.7': [(, - 0)], - '$506load_global.3': [(, - 498)], - '$518compare_op.4': [(, - 498)], - '$524pred': [(, - 498)], - '$528load_deref.1': [(, - 526)], - '$542call.6': [(, - 526)], - '$558compare_op.9': [(, - 526)], - '$564pred': [(, - 526)], - '$568return_value.1': [(, - 566)], - '$58compare_op.9': [(, - 0)], - '$64pred': [(, - 0)], - '$68return_value.1': [(, - 66)], - '$70load_global.0': [(, - 70)], - '$82load_deref.2': [(, - 70)], - '$84load_deref.3': [(, - 70)], - '$8load_deref.1': [(, - 0)], - '$90call.4': [(, - 70)], - '$assertion_error288.0': [(, - 288)], - '$binop_add372.4': [(, - 356)], - '$binop_iadd404.11': [(, - 356)], - '$binop_iadd482.11': [(, - 434)], - '$binop_isub210.2': [(, - 206)], - '$binop_sub164.16': [(, - 70)], - '$binop_sub242.11': [(, - 206)], - '$binop_sub324.9': [(, - 292)], - '$binop_sub332.12': [(, - 292)], - '$binop_sub452.5': [(, - 434)], - '$binop_sub502.2': [(, - 498)], - '$const162.15': [(, - 70)], - '$const184.19': [(, - 70)], - '$const196.22': [(, - 70)], - '$const208.1': [(, - 206)], - '$const370.3': [(, - 356)], - '$const402.10': [(, - 356)], - '$const412.1': [(, - 410)], - '$const450.4': [(, - 434)], - '$const480.10': [(, - 434)], - '$const490.1': [(, - 488)], - '$const556.8': [(, - 526)], - '$const56.8': [(, - 0)], - 'A': [(, 0)], - 'R': [(, 0)], - 'bool204': [(, - 70)], - 'bool264': [(, - 206)], - 'bool286': [(, - 266)], - 'bool342': [(, - 292)], - 'bool354': [(, - 344)], - 'bool432': [(, - 422)], - 'bool524': [(, - 498)], - 'bool564': [(, - 526)], - 'bool64': [(, - 0)], - 'high': [(, - 206), - (, - 410)], - 'i': [(, 292)], - 'low': [(, 206), - (, - 488)], - 'n': [(, 70), - (, 206), - (, 356), - (, 434)], - 'stack': [(, - 70)]}) -13:52:44,706 numba.core.ssa DEBUG SSA violators -13:52:44,706 numba.core.ssa DEBUG Fix SSA violator on var n -13:52:44,706 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,706 numba.core.ssa DEBUG Running -13:52:44,706 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,706 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) -13:52:44,706 numba.core.ssa DEBUG on stmt: R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,707 numba.core.ssa DEBUG on stmt: $28load_global.4 = global(len: ) -13:52:44,707 numba.core.ssa DEBUG on stmt: $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,707 numba.core.ssa DEBUG on stmt: $const56.8 = const(int, 2) -13:52:44,707 numba.core.ssa DEBUG on stmt: $58compare_op.9 = $46call.7 < $const56.8 -13:52:44,707 numba.core.ssa DEBUG on stmt: bool64 = global(bool: ) -13:52:44,707 numba.core.ssa DEBUG on stmt: $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,707 numba.core.ssa DEBUG on stmt: branch $64pred, 66, 70 -13:52:44,707 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:44,707 numba.core.ssa DEBUG Running -13:52:44,707 numba.core.ssa DEBUG on stmt: $68return_value.1 = cast(value=R) -13:52:44,707 numba.core.ssa DEBUG on stmt: return $68return_value.1 -13:52:44,707 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:44,707 numba.core.ssa DEBUG Running -13:52:44,707 numba.core.ssa DEBUG on stmt: $70load_global.0 = global(Partition: ) -13:52:44,707 numba.core.ssa DEBUG on stmt: $82load_deref.2 = freevar(zero: 0) -13:52:44,707 numba.core.ssa DEBUG on stmt: $84load_deref.3 = freevar(zero: 0) -13:52:44,707 numba.core.ssa DEBUG on stmt: $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,707 numba.core.ssa DEBUG on stmt: $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) -13:52:44,707 numba.core.ssa DEBUG on stmt: $102load_global.6 = global(MAX_STACK: 100) -13:52:44,707 numba.core.ssa DEBUG on stmt: stack = $100build_list.5 * $102load_global.6 -13:52:44,707 numba.core.ssa DEBUG on stmt: $120load_global.8 = global(Partition: ) -13:52:44,707 numba.core.ssa DEBUG on stmt: $132load_deref.10 = freevar(zero: 0) -13:52:44,707 numba.core.ssa DEBUG on stmt: $134load_global.11 = global(len: ) -13:52:44,707 numba.core.ssa DEBUG on stmt: $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,708 numba.core.ssa DEBUG on stmt: $const162.15 = const(int, 1) -13:52:44,708 numba.core.ssa DEBUG on stmt: $binop_sub164.16 = $152call.14 - $const162.15 -13:52:44,708 numba.core.ssa DEBUG on stmt: $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,708 numba.core.ssa DEBUG on stmt: $const184.19 = const(int, 0) -13:52:44,708 numba.core.ssa DEBUG on stmt: stack[0] = $172call.17 -13:52:44,708 numba.core.ssa DEBUG on stmt: n = const(int, 1) -13:52:44,708 numba.core.ssa DEBUG first assign: n -13:52:44,708 numba.core.ssa DEBUG replaced with: n = const(int, 1) -13:52:44,708 numba.core.ssa DEBUG on stmt: $const196.22 = const(int, 0) -13:52:44,708 numba.core.ssa DEBUG on stmt: $198compare_op.23 = n > $const196.22 -13:52:44,708 numba.core.ssa DEBUG on stmt: bool204 = global(bool: ) -13:52:44,708 numba.core.ssa DEBUG on stmt: $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,708 numba.core.ssa DEBUG on stmt: branch $204pred, 206, 566 -13:52:44,708 numba.core.ssa DEBUG ==== SSA block rewrite pass on 206 -13:52:44,708 numba.core.ssa DEBUG Running -13:52:44,708 numba.core.ssa DEBUG on stmt: $const208.1 = const(int, 1) -13:52:44,708 numba.core.ssa DEBUG on stmt: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,708 numba.core.ssa DEBUG on stmt: n = $binop_isub210.2 -13:52:44,708 numba.core.ssa DEBUG replaced with: n.1 = $binop_isub210.2 -13:52:44,708 numba.core.ssa DEBUG on stmt: $220binary_subscr.5 = getitem(value=stack, index=n, fn=) -13:52:44,708 numba.core.ssa DEBUG on stmt: $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) -13:52:44,708 numba.core.ssa DEBUG on stmt: $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) -13:52:44,708 numba.core.ssa DEBUG on stmt: $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) -13:52:44,708 numba.core.ssa DEBUG on stmt: low = $230unpack_sequence.6 -13:52:44,708 numba.core.ssa DEBUG on stmt: high = $230unpack_sequence.7 -13:52:44,709 numba.core.ssa DEBUG on stmt: $binop_sub242.11 = high - low -13:52:44,709 numba.core.ssa DEBUG on stmt: $246load_global.12 = global(SMALL_QUICKSORT: 15) -13:52:44,709 numba.core.ssa DEBUG on stmt: $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 -13:52:44,709 numba.core.ssa DEBUG on stmt: bool264 = global(bool: ) -13:52:44,709 numba.core.ssa DEBUG on stmt: $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,709 numba.core.ssa DEBUG on stmt: branch $264pred, 266, 526 -13:52:44,709 numba.core.ssa DEBUG ==== SSA block rewrite pass on 266 -13:52:44,709 numba.core.ssa DEBUG Running -13:52:44,709 numba.core.ssa DEBUG on stmt: $268load_global.1 = global(MAX_STACK: 100) -13:52:44,709 numba.core.ssa DEBUG on stmt: $280compare_op.2 = n < $268load_global.1 -13:52:44,709 numba.core.ssa DEBUG on stmt: bool286 = global(bool: ) -13:52:44,709 numba.core.ssa DEBUG on stmt: $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,709 numba.core.ssa DEBUG on stmt: branch $286pred, 292, 288 -13:52:44,709 numba.core.ssa DEBUG ==== SSA block rewrite pass on 288 -13:52:44,709 numba.core.ssa DEBUG Running -13:52:44,709 numba.core.ssa DEBUG on stmt: $assertion_error288.0 = global(AssertionError: ) -13:52:44,709 numba.core.ssa DEBUG on stmt: raise -13:52:44,709 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,709 numba.core.ssa DEBUG Running -13:52:44,709 numba.core.ssa DEBUG on stmt: $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) -13:52:44,709 numba.core.ssa DEBUG on stmt: i = call $294load_deref.1(A, R, low, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,709 numba.core.ssa DEBUG on stmt: $binop_sub324.9 = high - i -13:52:44,709 numba.core.ssa DEBUG on stmt: $binop_sub332.12 = i - low -13:52:44,709 numba.core.ssa DEBUG on stmt: $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 -13:52:44,709 numba.core.ssa DEBUG on stmt: bool342 = global(bool: ) -13:52:44,710 numba.core.ssa DEBUG on stmt: $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,710 numba.core.ssa DEBUG on stmt: branch $342pred, 344, 422 -13:52:44,710 numba.core.ssa DEBUG ==== SSA block rewrite pass on 344 -13:52:44,710 numba.core.ssa DEBUG Running -13:52:44,710 numba.core.ssa DEBUG on stmt: $348compare_op.2 = high > i -13:52:44,710 numba.core.ssa DEBUG on stmt: bool354 = global(bool: ) -13:52:44,710 numba.core.ssa DEBUG on stmt: $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,710 numba.core.ssa DEBUG on stmt: branch $354pred, 356, 410 -13:52:44,710 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,710 numba.core.ssa DEBUG Running -13:52:44,710 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(Partition: ) -13:52:44,710 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 1) -13:52:44,710 numba.core.ssa DEBUG on stmt: $binop_add372.4 = i + $const370.3 -13:52:44,710 numba.core.ssa DEBUG on stmt: $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,710 numba.core.ssa DEBUG on stmt: stack[n] = $382call.6 -13:52:44,710 numba.core.ssa DEBUG on stmt: $const402.10 = const(int, 1) -13:52:44,710 numba.core.ssa DEBUG on stmt: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,710 numba.core.ssa DEBUG on stmt: n = $binop_iadd404.11 -13:52:44,710 numba.core.ssa DEBUG replaced with: n.2 = $binop_iadd404.11 -13:52:44,710 numba.core.ssa DEBUG on stmt: jump 410 -13:52:44,710 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:44,710 numba.core.ssa DEBUG Running -13:52:44,710 numba.core.ssa DEBUG on stmt: $const412.1 = const(int, 1) -13:52:44,710 numba.core.ssa DEBUG on stmt: high = i - $const412.1 -13:52:44,710 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,711 numba.core.ssa DEBUG ==== SSA block rewrite pass on 422 -13:52:44,711 numba.core.ssa DEBUG Running -13:52:44,711 numba.core.ssa DEBUG on stmt: $426compare_op.2 = i > low -13:52:44,711 numba.core.ssa DEBUG on stmt: bool432 = global(bool: ) -13:52:44,711 numba.core.ssa DEBUG on stmt: $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,711 numba.core.ssa DEBUG on stmt: branch $432pred, 434, 488 -13:52:44,711 numba.core.ssa DEBUG ==== SSA block rewrite pass on 434 -13:52:44,711 numba.core.ssa DEBUG Running -13:52:44,711 numba.core.ssa DEBUG on stmt: $434load_global.0 = global(Partition: ) -13:52:44,711 numba.core.ssa DEBUG on stmt: $const450.4 = const(int, 1) -13:52:44,711 numba.core.ssa DEBUG on stmt: $binop_sub452.5 = i - $const450.4 -13:52:44,711 numba.core.ssa DEBUG on stmt: $460call.6 = call $434load_global.0(low, $binop_sub452.5, func=$434load_global.0, args=[Var(low, quicksort.py:177), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,711 numba.core.ssa DEBUG on stmt: stack[n] = $460call.6 -13:52:44,711 numba.core.ssa DEBUG on stmt: $const480.10 = const(int, 1) -13:52:44,711 numba.core.ssa DEBUG on stmt: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,711 numba.core.ssa DEBUG on stmt: n = $binop_iadd482.11 -13:52:44,711 numba.core.ssa DEBUG replaced with: n.3 = $binop_iadd482.11 -13:52:44,711 numba.core.ssa DEBUG on stmt: jump 488 -13:52:44,711 numba.core.ssa DEBUG ==== SSA block rewrite pass on 488 -13:52:44,711 numba.core.ssa DEBUG Running -13:52:44,711 numba.core.ssa DEBUG on stmt: $const490.1 = const(int, 1) -13:52:44,711 numba.core.ssa DEBUG on stmt: low = i + $const490.1 -13:52:44,711 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,711 numba.core.ssa DEBUG ==== SSA block rewrite pass on 498 -13:52:44,711 numba.core.ssa DEBUG Running -13:52:44,711 numba.core.ssa DEBUG on stmt: $binop_sub502.2 = high - low -13:52:44,712 numba.core.ssa DEBUG on stmt: $506load_global.3 = global(SMALL_QUICKSORT: 15) -13:52:44,712 numba.core.ssa DEBUG on stmt: $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 -13:52:44,712 numba.core.ssa DEBUG on stmt: bool524 = global(bool: ) -13:52:44,712 numba.core.ssa DEBUG on stmt: $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,712 numba.core.ssa DEBUG on stmt: branch $524pred, 266, 526 -13:52:44,712 numba.core.ssa DEBUG ==== SSA block rewrite pass on 526 -13:52:44,712 numba.core.ssa DEBUG Running -13:52:44,712 numba.core.ssa DEBUG on stmt: $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) -13:52:44,712 numba.core.ssa DEBUG on stmt: $542call.6 = call $528load_deref.1(A, R, low, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,712 numba.core.ssa DEBUG on stmt: $const556.8 = const(int, 0) -13:52:44,712 numba.core.ssa DEBUG on stmt: $558compare_op.9 = n > $const556.8 -13:52:44,712 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:44,712 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,712 numba.core.ssa DEBUG on stmt: branch $564pred, 206, 566 -13:52:44,712 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:44,712 numba.core.ssa DEBUG Running -13:52:44,712 numba.core.ssa DEBUG on stmt: $568return_value.1 = cast(value=R) -13:52:44,712 numba.core.ssa DEBUG on stmt: return $568return_value.1 -13:52:44,712 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {70: [], - 206: [], - 356: [], - 434: []}) -13:52:44,712 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,712 numba.core.ssa DEBUG Running -13:52:44,712 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,713 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) -13:52:44,713 numba.core.ssa DEBUG on stmt: R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,713 numba.core.ssa DEBUG on stmt: $28load_global.4 = global(len: ) -13:52:44,713 numba.core.ssa DEBUG on stmt: $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,713 numba.core.ssa DEBUG on stmt: $const56.8 = const(int, 2) -13:52:44,713 numba.core.ssa DEBUG on stmt: $58compare_op.9 = $46call.7 < $const56.8 -13:52:44,713 numba.core.ssa DEBUG on stmt: bool64 = global(bool: ) -13:52:44,713 numba.core.ssa DEBUG on stmt: $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,713 numba.core.ssa DEBUG on stmt: branch $64pred, 66, 70 -13:52:44,713 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:44,713 numba.core.ssa DEBUG Running -13:52:44,713 numba.core.ssa DEBUG on stmt: $68return_value.1 = cast(value=R) -13:52:44,713 numba.core.ssa DEBUG on stmt: return $68return_value.1 -13:52:44,713 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:44,713 numba.core.ssa DEBUG Running -13:52:44,713 numba.core.ssa DEBUG on stmt: $70load_global.0 = global(Partition: ) -13:52:44,713 numba.core.ssa DEBUG on stmt: $82load_deref.2 = freevar(zero: 0) -13:52:44,713 numba.core.ssa DEBUG on stmt: $84load_deref.3 = freevar(zero: 0) -13:52:44,713 numba.core.ssa DEBUG on stmt: $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,713 numba.core.ssa DEBUG on stmt: $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) -13:52:44,714 numba.core.ssa DEBUG on stmt: $102load_global.6 = global(MAX_STACK: 100) -13:52:44,714 numba.core.ssa DEBUG on stmt: stack = $100build_list.5 * $102load_global.6 -13:52:44,714 numba.core.ssa DEBUG on stmt: $120load_global.8 = global(Partition: ) -13:52:44,714 numba.core.ssa DEBUG on stmt: $132load_deref.10 = freevar(zero: 0) -13:52:44,714 numba.core.ssa DEBUG on stmt: $134load_global.11 = global(len: ) -13:52:44,714 numba.core.ssa DEBUG on stmt: $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,714 numba.core.ssa DEBUG on stmt: $const162.15 = const(int, 1) -13:52:44,714 numba.core.ssa DEBUG on stmt: $binop_sub164.16 = $152call.14 - $const162.15 -13:52:44,714 numba.core.ssa DEBUG on stmt: $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,714 numba.core.ssa DEBUG on stmt: $const184.19 = const(int, 0) -13:52:44,714 numba.core.ssa DEBUG on stmt: stack[0] = $172call.17 -13:52:44,714 numba.core.ssa DEBUG on stmt: n = const(int, 1) -13:52:44,714 numba.core.ssa DEBUG on stmt: $const196.22 = const(int, 0) -13:52:44,714 numba.core.ssa DEBUG on stmt: $198compare_op.23 = n > $const196.22 -13:52:44,714 numba.core.ssa DEBUG find_def var='n' stmt=$198compare_op.23 = n > $const196.22 -13:52:44,714 numba.core.ssa DEBUG on stmt: bool204 = global(bool: ) -13:52:44,714 numba.core.ssa DEBUG on stmt: $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,714 numba.core.ssa DEBUG on stmt: branch $204pred, 206, 566 -13:52:44,714 numba.core.ssa DEBUG ==== SSA block rewrite pass on 206 -13:52:44,715 numba.core.ssa DEBUG Running -13:52:44,715 numba.core.ssa DEBUG on stmt: $const208.1 = const(int, 1) -13:52:44,715 numba.core.ssa DEBUG on stmt: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,715 numba.core.ssa DEBUG find_def var='n' stmt=$binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,715 numba.core.ssa DEBUG find_def_from_top label 206 -13:52:44,715 numba.core.ssa DEBUG insert phi node n.4 = phi(incoming_values=[], incoming_blocks=[]) at 206 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 70 -13:52:44,715 numba.core.ssa DEBUG incoming_def n = const(int, 1) -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 526 -13:52:44,715 numba.core.ssa DEBUG find_def_from_top label 526 -13:52:44,715 numba.core.ssa DEBUG insert phi node n.5 = phi(incoming_values=[], incoming_blocks=[]) at 526 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 498 -13:52:44,715 numba.core.ssa DEBUG find_def_from_top label 498 -13:52:44,715 numba.core.ssa DEBUG insert phi node n.6 = phi(incoming_values=[], incoming_blocks=[]) at 498 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 488 -13:52:44,715 numba.core.ssa DEBUG find_def_from_top label 488 -13:52:44,715 numba.core.ssa DEBUG insert phi node n.7 = phi(incoming_values=[], incoming_blocks=[]) at 488 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 434 -13:52:44,715 numba.core.ssa DEBUG incoming_def n.3 = $binop_iadd482.11 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 422 -13:52:44,715 numba.core.ssa DEBUG find_def_from_top label 422 -13:52:44,715 numba.core.ssa DEBUG idom 292 from label 422 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,715 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,715 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,715 numba.core.ssa DEBUG find_def_from_top label 266 -13:52:44,715 numba.core.ssa DEBUG insert phi node n.8 = phi(incoming_values=[], incoming_blocks=[]) at 266 -13:52:44,715 numba.core.ssa DEBUG find_def_from_bottom label 498 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.6 = phi(incoming_values=[], incoming_blocks=[]) -13:52:44,716 numba.core.ssa DEBUG find_def_from_bottom label 206 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.1 = $binop_isub210.2 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.8 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,716 numba.core.ssa DEBUG incoming_def n.7 = phi(incoming_values=[Var(n.3, quicksort.py:192), Var(n.8, quicksort.py:176)], incoming_blocks=[434, 422]) -13:52:44,716 numba.core.ssa DEBUG find_def_from_bottom label 410 -13:52:44,716 numba.core.ssa DEBUG find_def_from_top label 410 -13:52:44,716 numba.core.ssa DEBUG insert phi node n.9 = phi(incoming_values=[], incoming_blocks=[]) at 410 -13:52:44,716 numba.core.ssa DEBUG find_def_from_bottom label 344 -13:52:44,716 numba.core.ssa DEBUG find_def_from_top label 344 -13:52:44,716 numba.core.ssa DEBUG idom 292 from label 344 -13:52:44,716 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,716 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,716 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,716 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.8 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,716 numba.core.ssa DEBUG find_def_from_bottom label 356 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.2 = $binop_iadd404.11 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.9 = phi(incoming_values=[Var(n.8, quicksort.py:176), Var(n.2, quicksort.py:187)], incoming_blocks=[344, 356]) -13:52:44,716 numba.core.ssa DEBUG incoming_def n.6 = phi(incoming_values=[Var(n.7, quicksort.py:176), Var(n.9, quicksort.py:176)], incoming_blocks=[488, 410]) -13:52:44,716 numba.core.ssa DEBUG find_def_from_bottom label 206 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.1 = $binop_isub210.2 -13:52:44,716 numba.core.ssa DEBUG incoming_def n.5 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,716 numba.core.ssa DEBUG replaced with: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n.4, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,716 numba.core.ssa DEBUG on stmt: n.1 = $binop_isub210.2 -13:52:44,716 numba.core.ssa DEBUG on stmt: $220binary_subscr.5 = getitem(value=stack, index=n, fn=) -13:52:44,716 numba.core.ssa DEBUG find_def var='n' stmt=$220binary_subscr.5 = getitem(value=stack, index=n, fn=) -13:52:44,716 numba.core.ssa DEBUG replaced with: $220binary_subscr.5 = getitem(value=stack, index=n.1, fn=) -13:52:44,717 numba.core.ssa DEBUG on stmt: $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) -13:52:44,717 numba.core.ssa DEBUG on stmt: $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) -13:52:44,717 numba.core.ssa DEBUG on stmt: $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) -13:52:44,717 numba.core.ssa DEBUG on stmt: low = $230unpack_sequence.6 -13:52:44,717 numba.core.ssa DEBUG on stmt: high = $230unpack_sequence.7 -13:52:44,717 numba.core.ssa DEBUG on stmt: $binop_sub242.11 = high - low -13:52:44,717 numba.core.ssa DEBUG on stmt: $246load_global.12 = global(SMALL_QUICKSORT: 15) -13:52:44,717 numba.core.ssa DEBUG on stmt: $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 -13:52:44,717 numba.core.ssa DEBUG on stmt: bool264 = global(bool: ) -13:52:44,717 numba.core.ssa DEBUG on stmt: $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,717 numba.core.ssa DEBUG on stmt: branch $264pred, 266, 526 -13:52:44,717 numba.core.ssa DEBUG ==== SSA block rewrite pass on 266 -13:52:44,717 numba.core.ssa DEBUG Running -13:52:44,717 numba.core.ssa DEBUG on stmt: $268load_global.1 = global(MAX_STACK: 100) -13:52:44,717 numba.core.ssa DEBUG on stmt: $280compare_op.2 = n < $268load_global.1 -13:52:44,717 numba.core.ssa DEBUG find_def var='n' stmt=$280compare_op.2 = n < $268load_global.1 -13:52:44,717 numba.core.ssa DEBUG replaced with: $280compare_op.2 = n.8 < $268load_global.1 -13:52:44,717 numba.core.ssa DEBUG on stmt: bool286 = global(bool: ) -13:52:44,717 numba.core.ssa DEBUG on stmt: $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,721 numba.core.ssa DEBUG on stmt: branch $286pred, 292, 288 -13:52:44,722 numba.core.ssa DEBUG ==== SSA block rewrite pass on 288 -13:52:44,722 numba.core.ssa DEBUG Running -13:52:44,722 numba.core.ssa DEBUG on stmt: $assertion_error288.0 = global(AssertionError: ) -13:52:44,722 numba.core.ssa DEBUG on stmt: raise -13:52:44,722 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,722 numba.core.ssa DEBUG Running -13:52:44,722 numba.core.ssa DEBUG on stmt: $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) -13:52:44,722 numba.core.ssa DEBUG on stmt: i = call $294load_deref.1(A, R, low, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,722 numba.core.ssa DEBUG on stmt: $binop_sub324.9 = high - i -13:52:44,722 numba.core.ssa DEBUG on stmt: $binop_sub332.12 = i - low -13:52:44,722 numba.core.ssa DEBUG on stmt: $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 -13:52:44,722 numba.core.ssa DEBUG on stmt: bool342 = global(bool: ) -13:52:44,722 numba.core.ssa DEBUG on stmt: $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,722 numba.core.ssa DEBUG on stmt: branch $342pred, 344, 422 -13:52:44,722 numba.core.ssa DEBUG ==== SSA block rewrite pass on 344 -13:52:44,722 numba.core.ssa DEBUG Running -13:52:44,722 numba.core.ssa DEBUG on stmt: $348compare_op.2 = high > i -13:52:44,722 numba.core.ssa DEBUG on stmt: bool354 = global(bool: ) -13:52:44,723 numba.core.ssa DEBUG on stmt: $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,723 numba.core.ssa DEBUG on stmt: branch $354pred, 356, 410 -13:52:44,723 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,723 numba.core.ssa DEBUG Running -13:52:44,723 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(Partition: ) -13:52:44,723 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 1) -13:52:44,723 numba.core.ssa DEBUG on stmt: $binop_add372.4 = i + $const370.3 -13:52:44,723 numba.core.ssa DEBUG on stmt: $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,723 numba.core.ssa DEBUG on stmt: stack[n] = $382call.6 -13:52:44,723 numba.core.ssa DEBUG find_def var='n' stmt=stack[n] = $382call.6 -13:52:44,723 numba.core.ssa DEBUG find_def_from_top label 356 -13:52:44,723 numba.core.ssa DEBUG idom 344 from label 356 -13:52:44,723 numba.core.ssa DEBUG find_def_from_bottom label 344 -13:52:44,723 numba.core.ssa DEBUG find_def_from_top label 344 -13:52:44,723 numba.core.ssa DEBUG idom 292 from label 344 -13:52:44,723 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,723 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,723 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,723 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,723 numba.core.ssa DEBUG replaced with: stack[n.8] = $382call.6 -13:52:44,723 numba.core.ssa DEBUG on stmt: $const402.10 = const(int, 1) -13:52:44,723 numba.core.ssa DEBUG on stmt: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,723 numba.core.ssa DEBUG find_def var='n' stmt=$binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,724 numba.core.ssa DEBUG find_def_from_top label 356 -13:52:44,724 numba.core.ssa DEBUG idom 344 from label 356 -13:52:44,724 numba.core.ssa DEBUG find_def_from_bottom label 344 -13:52:44,724 numba.core.ssa DEBUG find_def_from_top label 344 -13:52:44,724 numba.core.ssa DEBUG idom 292 from label 344 -13:52:44,724 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,724 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,724 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,724 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,724 numba.core.ssa DEBUG replaced with: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,724 numba.core.ssa DEBUG on stmt: n.2 = $binop_iadd404.11 -13:52:44,724 numba.core.ssa DEBUG on stmt: jump 410 -13:52:44,724 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:44,724 numba.core.ssa DEBUG Running -13:52:44,724 numba.core.ssa DEBUG on stmt: $const412.1 = const(int, 1) -13:52:44,724 numba.core.ssa DEBUG on stmt: high = i - $const412.1 -13:52:44,724 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,724 numba.core.ssa DEBUG ==== SSA block rewrite pass on 422 -13:52:44,724 numba.core.ssa DEBUG Running -13:52:44,724 numba.core.ssa DEBUG on stmt: $426compare_op.2 = i > low -13:52:44,724 numba.core.ssa DEBUG on stmt: bool432 = global(bool: ) -13:52:44,724 numba.core.ssa DEBUG on stmt: $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,724 numba.core.ssa DEBUG on stmt: branch $432pred, 434, 488 -13:52:44,725 numba.core.ssa DEBUG ==== SSA block rewrite pass on 434 -13:52:44,725 numba.core.ssa DEBUG Running -13:52:44,725 numba.core.ssa DEBUG on stmt: $434load_global.0 = global(Partition: ) -13:52:44,725 numba.core.ssa DEBUG on stmt: $const450.4 = const(int, 1) -13:52:44,725 numba.core.ssa DEBUG on stmt: $binop_sub452.5 = i - $const450.4 -13:52:44,725 numba.core.ssa DEBUG on stmt: $460call.6 = call $434load_global.0(low, $binop_sub452.5, func=$434load_global.0, args=[Var(low, quicksort.py:177), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,725 numba.core.ssa DEBUG on stmt: stack[n] = $460call.6 -13:52:44,725 numba.core.ssa DEBUG find_def var='n' stmt=stack[n] = $460call.6 -13:52:44,725 numba.core.ssa DEBUG find_def_from_top label 434 -13:52:44,725 numba.core.ssa DEBUG idom 422 from label 434 -13:52:44,725 numba.core.ssa DEBUG find_def_from_bottom label 422 -13:52:44,725 numba.core.ssa DEBUG find_def_from_top label 422 -13:52:44,725 numba.core.ssa DEBUG idom 292 from label 422 -13:52:44,725 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,725 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,725 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,725 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,725 numba.core.ssa DEBUG replaced with: stack[n.8] = $460call.6 -13:52:44,725 numba.core.ssa DEBUG on stmt: $const480.10 = const(int, 1) -13:52:44,725 numba.core.ssa DEBUG on stmt: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,725 numba.core.ssa DEBUG find_def var='n' stmt=$binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,725 numba.core.ssa DEBUG find_def_from_top label 434 -13:52:44,725 numba.core.ssa DEBUG idom 422 from label 434 -13:52:44,726 numba.core.ssa DEBUG find_def_from_bottom label 422 -13:52:44,726 numba.core.ssa DEBUG find_def_from_top label 422 -13:52:44,726 numba.core.ssa DEBUG idom 292 from label 422 -13:52:44,726 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,726 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,726 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,726 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,726 numba.core.ssa DEBUG replaced with: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,726 numba.core.ssa DEBUG on stmt: n.3 = $binop_iadd482.11 -13:52:44,726 numba.core.ssa DEBUG on stmt: jump 488 -13:52:44,726 numba.core.ssa DEBUG ==== SSA block rewrite pass on 488 -13:52:44,726 numba.core.ssa DEBUG Running -13:52:44,726 numba.core.ssa DEBUG on stmt: $const490.1 = const(int, 1) -13:52:44,726 numba.core.ssa DEBUG on stmt: low = i + $const490.1 -13:52:44,726 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,726 numba.core.ssa DEBUG ==== SSA block rewrite pass on 498 -13:52:44,726 numba.core.ssa DEBUG Running -13:52:44,726 numba.core.ssa DEBUG on stmt: $binop_sub502.2 = high - low -13:52:44,726 numba.core.ssa DEBUG on stmt: $506load_global.3 = global(SMALL_QUICKSORT: 15) -13:52:44,726 numba.core.ssa DEBUG on stmt: $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 -13:52:44,726 numba.core.ssa DEBUG on stmt: bool524 = global(bool: ) -13:52:44,726 numba.core.ssa DEBUG on stmt: $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,726 numba.core.ssa DEBUG on stmt: branch $524pred, 266, 526 -13:52:44,727 numba.core.ssa DEBUG ==== SSA block rewrite pass on 526 -13:52:44,727 numba.core.ssa DEBUG Running -13:52:44,727 numba.core.ssa DEBUG on stmt: $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) -13:52:44,727 numba.core.ssa DEBUG on stmt: $542call.6 = call $528load_deref.1(A, R, low, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,727 numba.core.ssa DEBUG on stmt: $const556.8 = const(int, 0) -13:52:44,727 numba.core.ssa DEBUG on stmt: $558compare_op.9 = n > $const556.8 -13:52:44,727 numba.core.ssa DEBUG find_def var='n' stmt=$558compare_op.9 = n > $const556.8 -13:52:44,727 numba.core.ssa DEBUG replaced with: $558compare_op.9 = n.5 > $const556.8 -13:52:44,727 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:44,727 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,727 numba.core.ssa DEBUG on stmt: branch $564pred, 206, 566 -13:52:44,727 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:44,727 numba.core.ssa DEBUG Running -13:52:44,727 numba.core.ssa DEBUG on stmt: $568return_value.1 = cast(value=R) -13:52:44,727 numba.core.ssa DEBUG on stmt: return $568return_value.1 -13:52:44,727 numba.core.ssa DEBUG Fix SSA violator on var low -13:52:44,727 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,727 numba.core.ssa DEBUG Running -13:52:44,727 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,727 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) -13:52:44,727 numba.core.ssa DEBUG on stmt: R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,728 numba.core.ssa DEBUG on stmt: $28load_global.4 = global(len: ) -13:52:44,728 numba.core.ssa DEBUG on stmt: $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,728 numba.core.ssa DEBUG on stmt: $const56.8 = const(int, 2) -13:52:44,728 numba.core.ssa DEBUG on stmt: $58compare_op.9 = $46call.7 < $const56.8 -13:52:44,728 numba.core.ssa DEBUG on stmt: bool64 = global(bool: ) -13:52:44,728 numba.core.ssa DEBUG on stmt: $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,728 numba.core.ssa DEBUG on stmt: branch $64pred, 66, 70 -13:52:44,728 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:44,728 numba.core.ssa DEBUG Running -13:52:44,728 numba.core.ssa DEBUG on stmt: $68return_value.1 = cast(value=R) -13:52:44,728 numba.core.ssa DEBUG on stmt: return $68return_value.1 -13:52:44,728 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:44,728 numba.core.ssa DEBUG Running -13:52:44,728 numba.core.ssa DEBUG on stmt: $70load_global.0 = global(Partition: ) -13:52:44,728 numba.core.ssa DEBUG on stmt: $82load_deref.2 = freevar(zero: 0) -13:52:44,728 numba.core.ssa DEBUG on stmt: $84load_deref.3 = freevar(zero: 0) -13:52:44,728 numba.core.ssa DEBUG on stmt: $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,728 numba.core.ssa DEBUG on stmt: $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) -13:52:44,728 numba.core.ssa DEBUG on stmt: $102load_global.6 = global(MAX_STACK: 100) -13:52:44,728 numba.core.ssa DEBUG on stmt: stack = $100build_list.5 * $102load_global.6 -13:52:44,728 numba.core.ssa DEBUG on stmt: $120load_global.8 = global(Partition: ) -13:52:44,728 numba.core.ssa DEBUG on stmt: $132load_deref.10 = freevar(zero: 0) -13:52:44,728 numba.core.ssa DEBUG on stmt: $134load_global.11 = global(len: ) -13:52:44,728 numba.core.ssa DEBUG on stmt: $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,728 numba.core.ssa DEBUG on stmt: $const162.15 = const(int, 1) -13:52:44,729 numba.core.ssa DEBUG on stmt: $binop_sub164.16 = $152call.14 - $const162.15 -13:52:44,729 numba.core.ssa DEBUG on stmt: $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,729 numba.core.ssa DEBUG on stmt: $const184.19 = const(int, 0) -13:52:44,729 numba.core.ssa DEBUG on stmt: stack[0] = $172call.17 -13:52:44,729 numba.core.ssa DEBUG on stmt: n = const(int, 1) -13:52:44,729 numba.core.ssa DEBUG on stmt: $const196.22 = const(int, 0) -13:52:44,729 numba.core.ssa DEBUG on stmt: $198compare_op.23 = n > $const196.22 -13:52:44,729 numba.core.ssa DEBUG on stmt: bool204 = global(bool: ) -13:52:44,729 numba.core.ssa DEBUG on stmt: $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,729 numba.core.ssa DEBUG on stmt: branch $204pred, 206, 566 -13:52:44,729 numba.core.ssa DEBUG ==== SSA block rewrite pass on 206 -13:52:44,729 numba.core.ssa DEBUG Running -13:52:44,729 numba.core.ssa DEBUG on stmt: n.4 = phi(incoming_values=[Var(n, quicksort.py:173), Var(n.5, quicksort.py:176)], incoming_blocks=[70, 526]) -13:52:44,729 numba.core.ssa DEBUG on stmt: $const208.1 = const(int, 1) -13:52:44,729 numba.core.ssa DEBUG on stmt: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n.4, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,729 numba.core.ssa DEBUG on stmt: n.1 = $binop_isub210.2 -13:52:44,729 numba.core.ssa DEBUG on stmt: $220binary_subscr.5 = getitem(value=stack, index=n.1, fn=) -13:52:44,729 numba.core.ssa DEBUG on stmt: $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) -13:52:44,729 numba.core.ssa DEBUG on stmt: $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) -13:52:44,729 numba.core.ssa DEBUG on stmt: $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) -13:52:44,729 numba.core.ssa DEBUG on stmt: low = $230unpack_sequence.6 -13:52:44,729 numba.core.ssa DEBUG first assign: low -13:52:44,729 numba.core.ssa DEBUG replaced with: low = $230unpack_sequence.6 -13:52:44,729 numba.core.ssa DEBUG on stmt: high = $230unpack_sequence.7 -13:52:44,729 numba.core.ssa DEBUG on stmt: $binop_sub242.11 = high - low -13:52:44,730 numba.core.ssa DEBUG on stmt: $246load_global.12 = global(SMALL_QUICKSORT: 15) -13:52:44,730 numba.core.ssa DEBUG on stmt: $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 -13:52:44,730 numba.core.ssa DEBUG on stmt: bool264 = global(bool: ) -13:52:44,730 numba.core.ssa DEBUG on stmt: $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,730 numba.core.ssa DEBUG on stmt: branch $264pred, 266, 526 -13:52:44,730 numba.core.ssa DEBUG ==== SSA block rewrite pass on 266 -13:52:44,730 numba.core.ssa DEBUG Running -13:52:44,730 numba.core.ssa DEBUG on stmt: n.8 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,730 numba.core.ssa DEBUG on stmt: $268load_global.1 = global(MAX_STACK: 100) -13:52:44,730 numba.core.ssa DEBUG on stmt: $280compare_op.2 = n.8 < $268load_global.1 -13:52:44,730 numba.core.ssa DEBUG on stmt: bool286 = global(bool: ) -13:52:44,730 numba.core.ssa DEBUG on stmt: $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,730 numba.core.ssa DEBUG on stmt: branch $286pred, 292, 288 -13:52:44,730 numba.core.ssa DEBUG ==== SSA block rewrite pass on 288 -13:52:44,730 numba.core.ssa DEBUG Running -13:52:44,730 numba.core.ssa DEBUG on stmt: $assertion_error288.0 = global(AssertionError: ) -13:52:44,730 numba.core.ssa DEBUG on stmt: raise -13:52:44,730 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,730 numba.core.ssa DEBUG Running -13:52:44,730 numba.core.ssa DEBUG on stmt: $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) -13:52:44,730 numba.core.ssa DEBUG on stmt: i = call $294load_deref.1(A, R, low, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,730 numba.core.ssa DEBUG on stmt: $binop_sub324.9 = high - i -13:52:44,730 numba.core.ssa DEBUG on stmt: $binop_sub332.12 = i - low -13:52:44,730 numba.core.ssa DEBUG on stmt: $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 -13:52:44,730 numba.core.ssa DEBUG on stmt: bool342 = global(bool: ) -13:52:44,731 numba.core.ssa DEBUG on stmt: $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,731 numba.core.ssa DEBUG on stmt: branch $342pred, 344, 422 -13:52:44,731 numba.core.ssa DEBUG ==== SSA block rewrite pass on 344 -13:52:44,731 numba.core.ssa DEBUG Running -13:52:44,731 numba.core.ssa DEBUG on stmt: $348compare_op.2 = high > i -13:52:44,731 numba.core.ssa DEBUG on stmt: bool354 = global(bool: ) -13:52:44,731 numba.core.ssa DEBUG on stmt: $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,731 numba.core.ssa DEBUG on stmt: branch $354pred, 356, 410 -13:52:44,731 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,731 numba.core.ssa DEBUG Running -13:52:44,731 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(Partition: ) -13:52:44,731 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 1) -13:52:44,731 numba.core.ssa DEBUG on stmt: $binop_add372.4 = i + $const370.3 -13:52:44,731 numba.core.ssa DEBUG on stmt: $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,731 numba.core.ssa DEBUG on stmt: stack[n.8] = $382call.6 -13:52:44,731 numba.core.ssa DEBUG on stmt: $const402.10 = const(int, 1) -13:52:44,731 numba.core.ssa DEBUG on stmt: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,731 numba.core.ssa DEBUG on stmt: n.2 = $binop_iadd404.11 -13:52:44,731 numba.core.ssa DEBUG on stmt: jump 410 -13:52:44,731 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:44,731 numba.core.ssa DEBUG Running -13:52:44,731 numba.core.ssa DEBUG on stmt: n.9 = phi(incoming_values=[Var(n.8, quicksort.py:176), Var(n.2, quicksort.py:187)], incoming_blocks=[344, 356]) -13:52:44,731 numba.core.ssa DEBUG on stmt: $const412.1 = const(int, 1) -13:52:44,731 numba.core.ssa DEBUG on stmt: high = i - $const412.1 -13:52:44,731 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,731 numba.core.ssa DEBUG ==== SSA block rewrite pass on 422 -13:52:44,732 numba.core.ssa DEBUG Running -13:52:44,732 numba.core.ssa DEBUG on stmt: $426compare_op.2 = i > low -13:52:44,732 numba.core.ssa DEBUG on stmt: bool432 = global(bool: ) -13:52:44,732 numba.core.ssa DEBUG on stmt: $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,732 numba.core.ssa DEBUG on stmt: branch $432pred, 434, 488 -13:52:44,732 numba.core.ssa DEBUG ==== SSA block rewrite pass on 434 -13:52:44,732 numba.core.ssa DEBUG Running -13:52:44,732 numba.core.ssa DEBUG on stmt: $434load_global.0 = global(Partition: ) -13:52:44,732 numba.core.ssa DEBUG on stmt: $const450.4 = const(int, 1) -13:52:44,732 numba.core.ssa DEBUG on stmt: $binop_sub452.5 = i - $const450.4 -13:52:44,732 numba.core.ssa DEBUG on stmt: $460call.6 = call $434load_global.0(low, $binop_sub452.5, func=$434load_global.0, args=[Var(low, quicksort.py:177), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,732 numba.core.ssa DEBUG on stmt: stack[n.8] = $460call.6 -13:52:44,732 numba.core.ssa DEBUG on stmt: $const480.10 = const(int, 1) -13:52:44,732 numba.core.ssa DEBUG on stmt: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,732 numba.core.ssa DEBUG on stmt: n.3 = $binop_iadd482.11 -13:52:44,732 numba.core.ssa DEBUG on stmt: jump 488 -13:52:44,732 numba.core.ssa DEBUG ==== SSA block rewrite pass on 488 -13:52:44,732 numba.core.ssa DEBUG Running -13:52:44,732 numba.core.ssa DEBUG on stmt: n.7 = phi(incoming_values=[Var(n.3, quicksort.py:192), Var(n.8, quicksort.py:176)], incoming_blocks=[434, 422]) -13:52:44,732 numba.core.ssa DEBUG on stmt: $const490.1 = const(int, 1) -13:52:44,732 numba.core.ssa DEBUG on stmt: low = i + $const490.1 -13:52:44,732 numba.core.ssa DEBUG replaced with: low.1 = i + $const490.1 -13:52:44,732 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,732 numba.core.ssa DEBUG ==== SSA block rewrite pass on 498 -13:52:44,732 numba.core.ssa DEBUG Running -13:52:44,733 numba.core.ssa DEBUG on stmt: n.6 = phi(incoming_values=[Var(n.7, quicksort.py:176), Var(n.9, quicksort.py:176)], incoming_blocks=[488, 410]) -13:52:44,733 numba.core.ssa DEBUG on stmt: $binop_sub502.2 = high - low -13:52:44,733 numba.core.ssa DEBUG on stmt: $506load_global.3 = global(SMALL_QUICKSORT: 15) -13:52:44,733 numba.core.ssa DEBUG on stmt: $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 -13:52:44,733 numba.core.ssa DEBUG on stmt: bool524 = global(bool: ) -13:52:44,733 numba.core.ssa DEBUG on stmt: $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,733 numba.core.ssa DEBUG on stmt: branch $524pred, 266, 526 -13:52:44,733 numba.core.ssa DEBUG ==== SSA block rewrite pass on 526 -13:52:44,733 numba.core.ssa DEBUG Running -13:52:44,733 numba.core.ssa DEBUG on stmt: n.5 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,733 numba.core.ssa DEBUG on stmt: $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) -13:52:44,733 numba.core.ssa DEBUG on stmt: $542call.6 = call $528load_deref.1(A, R, low, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,733 numba.core.ssa DEBUG on stmt: $const556.8 = const(int, 0) -13:52:44,733 numba.core.ssa DEBUG on stmt: $558compare_op.9 = n.5 > $const556.8 -13:52:44,733 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:44,733 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,733 numba.core.ssa DEBUG on stmt: branch $564pred, 206, 566 -13:52:44,733 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:44,733 numba.core.ssa DEBUG Running -13:52:44,734 numba.core.ssa DEBUG on stmt: $568return_value.1 = cast(value=R) -13:52:44,734 numba.core.ssa DEBUG on stmt: return $568return_value.1 -13:52:44,734 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {206: [], - 488: []}) -13:52:44,734 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,734 numba.core.ssa DEBUG Running -13:52:44,734 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,734 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) -13:52:44,734 numba.core.ssa DEBUG on stmt: R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,734 numba.core.ssa DEBUG on stmt: $28load_global.4 = global(len: ) -13:52:44,734 numba.core.ssa DEBUG on stmt: $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,734 numba.core.ssa DEBUG on stmt: $const56.8 = const(int, 2) -13:52:44,734 numba.core.ssa DEBUG on stmt: $58compare_op.9 = $46call.7 < $const56.8 -13:52:44,734 numba.core.ssa DEBUG on stmt: bool64 = global(bool: ) -13:52:44,734 numba.core.ssa DEBUG on stmt: $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,734 numba.core.ssa DEBUG on stmt: branch $64pred, 66, 70 -13:52:44,734 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:44,734 numba.core.ssa DEBUG Running -13:52:44,734 numba.core.ssa DEBUG on stmt: $68return_value.1 = cast(value=R) -13:52:44,735 numba.core.ssa DEBUG on stmt: return $68return_value.1 -13:52:44,735 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:44,735 numba.core.ssa DEBUG Running -13:52:44,735 numba.core.ssa DEBUG on stmt: $70load_global.0 = global(Partition: ) -13:52:44,735 numba.core.ssa DEBUG on stmt: $82load_deref.2 = freevar(zero: 0) -13:52:44,735 numba.core.ssa DEBUG on stmt: $84load_deref.3 = freevar(zero: 0) -13:52:44,735 numba.core.ssa DEBUG on stmt: $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,735 numba.core.ssa DEBUG on stmt: $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) -13:52:44,735 numba.core.ssa DEBUG on stmt: $102load_global.6 = global(MAX_STACK: 100) -13:52:44,735 numba.core.ssa DEBUG on stmt: stack = $100build_list.5 * $102load_global.6 -13:52:44,735 numba.core.ssa DEBUG on stmt: $120load_global.8 = global(Partition: ) -13:52:44,735 numba.core.ssa DEBUG on stmt: $132load_deref.10 = freevar(zero: 0) -13:52:44,735 numba.core.ssa DEBUG on stmt: $134load_global.11 = global(len: ) -13:52:44,735 numba.core.ssa DEBUG on stmt: $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,735 numba.core.ssa DEBUG on stmt: $const162.15 = const(int, 1) -13:52:44,735 numba.core.ssa DEBUG on stmt: $binop_sub164.16 = $152call.14 - $const162.15 -13:52:44,735 numba.core.ssa DEBUG on stmt: $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,735 numba.core.ssa DEBUG on stmt: $const184.19 = const(int, 0) -13:52:44,735 numba.core.ssa DEBUG on stmt: stack[0] = $172call.17 -13:52:44,735 numba.core.ssa DEBUG on stmt: n = const(int, 1) -13:52:44,736 numba.core.ssa DEBUG on stmt: $const196.22 = const(int, 0) -13:52:44,736 numba.core.ssa DEBUG on stmt: $198compare_op.23 = n > $const196.22 -13:52:44,736 numba.core.ssa DEBUG on stmt: bool204 = global(bool: ) -13:52:44,736 numba.core.ssa DEBUG on stmt: $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,736 numba.core.ssa DEBUG on stmt: branch $204pred, 206, 566 -13:52:44,736 numba.core.ssa DEBUG ==== SSA block rewrite pass on 206 -13:52:44,736 numba.core.ssa DEBUG Running -13:52:44,736 numba.core.ssa DEBUG on stmt: n.4 = phi(incoming_values=[Var(n, quicksort.py:173), Var(n.5, quicksort.py:176)], incoming_blocks=[70, 526]) -13:52:44,736 numba.core.ssa DEBUG on stmt: $const208.1 = const(int, 1) -13:52:44,736 numba.core.ssa DEBUG on stmt: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n.4, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,736 numba.core.ssa DEBUG on stmt: n.1 = $binop_isub210.2 -13:52:44,736 numba.core.ssa DEBUG on stmt: $220binary_subscr.5 = getitem(value=stack, index=n.1, fn=) -13:52:44,736 numba.core.ssa DEBUG on stmt: $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) -13:52:44,736 numba.core.ssa DEBUG on stmt: $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) -13:52:44,736 numba.core.ssa DEBUG on stmt: $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) -13:52:44,736 numba.core.ssa DEBUG on stmt: low = $230unpack_sequence.6 -13:52:44,736 numba.core.ssa DEBUG on stmt: high = $230unpack_sequence.7 -13:52:44,736 numba.core.ssa DEBUG on stmt: $binop_sub242.11 = high - low -13:52:44,736 numba.core.ssa DEBUG find_def var='low' stmt=$binop_sub242.11 = high - low -13:52:44,736 numba.core.ssa DEBUG on stmt: $246load_global.12 = global(SMALL_QUICKSORT: 15) -13:52:44,737 numba.core.ssa DEBUG on stmt: $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 -13:52:44,737 numba.core.ssa DEBUG on stmt: bool264 = global(bool: ) -13:52:44,737 numba.core.ssa DEBUG on stmt: $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,737 numba.core.ssa DEBUG on stmt: branch $264pred, 266, 526 -13:52:44,737 numba.core.ssa DEBUG ==== SSA block rewrite pass on 266 -13:52:44,737 numba.core.ssa DEBUG Running -13:52:44,737 numba.core.ssa DEBUG on stmt: n.8 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,737 numba.core.ssa DEBUG on stmt: $268load_global.1 = global(MAX_STACK: 100) -13:52:44,737 numba.core.ssa DEBUG on stmt: $280compare_op.2 = n.8 < $268load_global.1 -13:52:44,737 numba.core.ssa DEBUG on stmt: bool286 = global(bool: ) -13:52:44,737 numba.core.ssa DEBUG on stmt: $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,737 numba.core.ssa DEBUG on stmt: branch $286pred, 292, 288 -13:52:44,737 numba.core.ssa DEBUG ==== SSA block rewrite pass on 288 -13:52:44,737 numba.core.ssa DEBUG Running -13:52:44,737 numba.core.ssa DEBUG on stmt: $assertion_error288.0 = global(AssertionError: ) -13:52:44,737 numba.core.ssa DEBUG on stmt: raise -13:52:44,737 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,737 numba.core.ssa DEBUG Running -13:52:44,737 numba.core.ssa DEBUG on stmt: $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) -13:52:44,737 numba.core.ssa DEBUG on stmt: i = call $294load_deref.1(A, R, low, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,738 numba.core.ssa DEBUG find_def var='low' stmt=i = call $294load_deref.1(A, R, low, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,738 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,738 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,738 numba.core.ssa DEBUG find_def_from_top label 266 -13:52:44,738 numba.core.ssa DEBUG insert phi node low.2 = phi(incoming_values=[], incoming_blocks=[]) at 266 -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 498 -13:52:44,738 numba.core.ssa DEBUG find_def_from_top label 498 -13:52:44,738 numba.core.ssa DEBUG insert phi node low.3 = phi(incoming_values=[], incoming_blocks=[]) at 498 -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 488 -13:52:44,738 numba.core.ssa DEBUG incoming_def low.1 = i + $const490.1 -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 410 -13:52:44,738 numba.core.ssa DEBUG find_def_from_top label 410 -13:52:44,738 numba.core.ssa DEBUG idom 344 from label 410 -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 344 -13:52:44,738 numba.core.ssa DEBUG find_def_from_top label 344 -13:52:44,738 numba.core.ssa DEBUG idom 292 from label 344 -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,738 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,738 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,738 numba.core.ssa DEBUG incoming_def low.2 = phi(incoming_values=[], incoming_blocks=[]) -13:52:44,738 numba.core.ssa DEBUG incoming_def low.3 = phi(incoming_values=[Var(low.1, quicksort.py:193), Var(low.2, quicksort.py:181)], incoming_blocks=[488, 410]) -13:52:44,738 numba.core.ssa DEBUG find_def_from_bottom label 206 -13:52:44,738 numba.core.ssa DEBUG incoming_def low = $230unpack_sequence.6 -13:52:44,738 numba.core.ssa DEBUG replaced with: i = call $294load_deref.1(A, R, low.2, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.2, quicksort.py:181), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,738 numba.core.ssa DEBUG on stmt: $binop_sub324.9 = high - i -13:52:44,739 numba.core.ssa DEBUG on stmt: $binop_sub332.12 = i - low -13:52:44,739 numba.core.ssa DEBUG find_def var='low' stmt=$binop_sub332.12 = i - low -13:52:44,739 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,739 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,739 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,739 numba.core.ssa DEBUG replaced with: $binop_sub332.12 = i - low.2 -13:52:44,739 numba.core.ssa DEBUG on stmt: $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 -13:52:44,739 numba.core.ssa DEBUG on stmt: bool342 = global(bool: ) -13:52:44,739 numba.core.ssa DEBUG on stmt: $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,739 numba.core.ssa DEBUG on stmt: branch $342pred, 344, 422 -13:52:44,739 numba.core.ssa DEBUG ==== SSA block rewrite pass on 344 -13:52:44,739 numba.core.ssa DEBUG Running -13:52:44,739 numba.core.ssa DEBUG on stmt: $348compare_op.2 = high > i -13:52:44,739 numba.core.ssa DEBUG on stmt: bool354 = global(bool: ) -13:52:44,739 numba.core.ssa DEBUG on stmt: $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,739 numba.core.ssa DEBUG on stmt: branch $354pred, 356, 410 -13:52:44,739 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,739 numba.core.ssa DEBUG Running -13:52:44,739 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(Partition: ) -13:52:44,739 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 1) -13:52:44,740 numba.core.ssa DEBUG on stmt: $binop_add372.4 = i + $const370.3 -13:52:44,740 numba.core.ssa DEBUG on stmt: $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,740 numba.core.ssa DEBUG on stmt: stack[n.8] = $382call.6 -13:52:44,740 numba.core.ssa DEBUG on stmt: $const402.10 = const(int, 1) -13:52:44,740 numba.core.ssa DEBUG on stmt: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,740 numba.core.ssa DEBUG on stmt: n.2 = $binop_iadd404.11 -13:52:44,740 numba.core.ssa DEBUG on stmt: jump 410 -13:52:44,740 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:44,740 numba.core.ssa DEBUG Running -13:52:44,740 numba.core.ssa DEBUG on stmt: n.9 = phi(incoming_values=[Var(n.8, quicksort.py:176), Var(n.2, quicksort.py:187)], incoming_blocks=[344, 356]) -13:52:44,740 numba.core.ssa DEBUG on stmt: $const412.1 = const(int, 1) -13:52:44,740 numba.core.ssa DEBUG on stmt: high = i - $const412.1 -13:52:44,740 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,740 numba.core.ssa DEBUG ==== SSA block rewrite pass on 422 -13:52:44,740 numba.core.ssa DEBUG Running -13:52:44,740 numba.core.ssa DEBUG on stmt: $426compare_op.2 = i > low -13:52:44,740 numba.core.ssa DEBUG find_def var='low' stmt=$426compare_op.2 = i > low -13:52:44,740 numba.core.ssa DEBUG find_def_from_top label 422 -13:52:44,740 numba.core.ssa DEBUG idom 292 from label 422 -13:52:44,740 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,740 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,741 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,741 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,741 numba.core.ssa DEBUG replaced with: $426compare_op.2 = i > low.2 -13:52:44,741 numba.core.ssa DEBUG on stmt: bool432 = global(bool: ) -13:52:44,741 numba.core.ssa DEBUG on stmt: $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,741 numba.core.ssa DEBUG on stmt: branch $432pred, 434, 488 -13:52:44,741 numba.core.ssa DEBUG ==== SSA block rewrite pass on 434 -13:52:44,741 numba.core.ssa DEBUG Running -13:52:44,741 numba.core.ssa DEBUG on stmt: $434load_global.0 = global(Partition: ) -13:52:44,741 numba.core.ssa DEBUG on stmt: $const450.4 = const(int, 1) -13:52:44,741 numba.core.ssa DEBUG on stmt: $binop_sub452.5 = i - $const450.4 -13:52:44,741 numba.core.ssa DEBUG on stmt: $460call.6 = call $434load_global.0(low, $binop_sub452.5, func=$434load_global.0, args=[Var(low, quicksort.py:177), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,741 numba.core.ssa DEBUG find_def var='low' stmt=$460call.6 = call $434load_global.0(low, $binop_sub452.5, func=$434load_global.0, args=[Var(low, quicksort.py:177), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,741 numba.core.ssa DEBUG find_def_from_top label 434 -13:52:44,741 numba.core.ssa DEBUG idom 422 from label 434 -13:52:44,741 numba.core.ssa DEBUG find_def_from_bottom label 422 -13:52:44,741 numba.core.ssa DEBUG find_def_from_top label 422 -13:52:44,741 numba.core.ssa DEBUG idom 292 from label 422 -13:52:44,741 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,741 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,741 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,741 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,741 numba.core.ssa DEBUG replaced with: $460call.6 = call $434load_global.0(low.2, $binop_sub452.5, func=$434load_global.0, args=[Var(low.2, quicksort.py:181), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,742 numba.core.ssa DEBUG on stmt: stack[n.8] = $460call.6 -13:52:44,742 numba.core.ssa DEBUG on stmt: $const480.10 = const(int, 1) -13:52:44,742 numba.core.ssa DEBUG on stmt: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,742 numba.core.ssa DEBUG on stmt: n.3 = $binop_iadd482.11 -13:52:44,742 numba.core.ssa DEBUG on stmt: jump 488 -13:52:44,742 numba.core.ssa DEBUG ==== SSA block rewrite pass on 488 -13:52:44,742 numba.core.ssa DEBUG Running -13:52:44,742 numba.core.ssa DEBUG on stmt: n.7 = phi(incoming_values=[Var(n.3, quicksort.py:192), Var(n.8, quicksort.py:176)], incoming_blocks=[434, 422]) -13:52:44,742 numba.core.ssa DEBUG on stmt: $const490.1 = const(int, 1) -13:52:44,742 numba.core.ssa DEBUG on stmt: low.1 = i + $const490.1 -13:52:44,742 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,742 numba.core.ssa DEBUG ==== SSA block rewrite pass on 498 -13:52:44,742 numba.core.ssa DEBUG Running -13:52:44,742 numba.core.ssa DEBUG on stmt: n.6 = phi(incoming_values=[Var(n.7, quicksort.py:176), Var(n.9, quicksort.py:176)], incoming_blocks=[488, 410]) -13:52:44,742 numba.core.ssa DEBUG on stmt: $binop_sub502.2 = high - low -13:52:44,742 numba.core.ssa DEBUG find_def var='low' stmt=$binop_sub502.2 = high - low -13:52:44,742 numba.core.ssa DEBUG replaced with: $binop_sub502.2 = high - low.3 -13:52:44,742 numba.core.ssa DEBUG on stmt: $506load_global.3 = global(SMALL_QUICKSORT: 15) -13:52:44,742 numba.core.ssa DEBUG on stmt: $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 -13:52:44,743 numba.core.ssa DEBUG on stmt: bool524 = global(bool: ) -13:52:44,743 numba.core.ssa DEBUG on stmt: $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,743 numba.core.ssa DEBUG on stmt: branch $524pred, 266, 526 -13:52:44,743 numba.core.ssa DEBUG ==== SSA block rewrite pass on 526 -13:52:44,743 numba.core.ssa DEBUG Running -13:52:44,743 numba.core.ssa DEBUG on stmt: n.5 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,743 numba.core.ssa DEBUG on stmt: $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) -13:52:44,743 numba.core.ssa DEBUG on stmt: $542call.6 = call $528load_deref.1(A, R, low, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,743 numba.core.ssa DEBUG find_def var='low' stmt=$542call.6 = call $528load_deref.1(A, R, low, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low, quicksort.py:177), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,743 numba.core.ssa DEBUG find_def_from_top label 526 -13:52:44,743 numba.core.ssa DEBUG insert phi node low.4 = phi(incoming_values=[], incoming_blocks=[]) at 526 -13:52:44,743 numba.core.ssa DEBUG find_def_from_bottom label 498 -13:52:44,743 numba.core.ssa DEBUG incoming_def low.3 = phi(incoming_values=[Var(low.1, quicksort.py:193), Var(low.2, quicksort.py:181)], incoming_blocks=[488, 410]) -13:52:44,743 numba.core.ssa DEBUG find_def_from_bottom label 206 -13:52:44,743 numba.core.ssa DEBUG incoming_def low = $230unpack_sequence.6 -13:52:44,743 numba.core.ssa DEBUG replaced with: $542call.6 = call $528load_deref.1(A, R, low.4, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.4, quicksort.py:195), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,743 numba.core.ssa DEBUG on stmt: $const556.8 = const(int, 0) -13:52:44,743 numba.core.ssa DEBUG on stmt: $558compare_op.9 = n.5 > $const556.8 -13:52:44,743 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:44,744 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,744 numba.core.ssa DEBUG on stmt: branch $564pred, 206, 566 -13:52:44,744 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:44,744 numba.core.ssa DEBUG Running -13:52:44,744 numba.core.ssa DEBUG on stmt: $568return_value.1 = cast(value=R) -13:52:44,744 numba.core.ssa DEBUG on stmt: return $568return_value.1 -13:52:44,744 numba.core.ssa DEBUG Fix SSA violator on var high -13:52:44,744 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,744 numba.core.ssa DEBUG Running -13:52:44,744 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,744 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) -13:52:44,744 numba.core.ssa DEBUG on stmt: R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,744 numba.core.ssa DEBUG on stmt: $28load_global.4 = global(len: ) -13:52:44,744 numba.core.ssa DEBUG on stmt: $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,744 numba.core.ssa DEBUG on stmt: $const56.8 = const(int, 2) -13:52:44,744 numba.core.ssa DEBUG on stmt: $58compare_op.9 = $46call.7 < $const56.8 -13:52:44,744 numba.core.ssa DEBUG on stmt: bool64 = global(bool: ) -13:52:44,744 numba.core.ssa DEBUG on stmt: $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,744 numba.core.ssa DEBUG on stmt: branch $64pred, 66, 70 -13:52:44,744 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:44,744 numba.core.ssa DEBUG Running -13:52:44,744 numba.core.ssa DEBUG on stmt: $68return_value.1 = cast(value=R) -13:52:44,745 numba.core.ssa DEBUG on stmt: return $68return_value.1 -13:52:44,745 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:44,745 numba.core.ssa DEBUG Running -13:52:44,745 numba.core.ssa DEBUG on stmt: $70load_global.0 = global(Partition: ) -13:52:44,745 numba.core.ssa DEBUG on stmt: $82load_deref.2 = freevar(zero: 0) -13:52:44,745 numba.core.ssa DEBUG on stmt: $84load_deref.3 = freevar(zero: 0) -13:52:44,745 numba.core.ssa DEBUG on stmt: $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,745 numba.core.ssa DEBUG on stmt: $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) -13:52:44,745 numba.core.ssa DEBUG on stmt: $102load_global.6 = global(MAX_STACK: 100) -13:52:44,745 numba.core.ssa DEBUG on stmt: stack = $100build_list.5 * $102load_global.6 -13:52:44,745 numba.core.ssa DEBUG on stmt: $120load_global.8 = global(Partition: ) -13:52:44,745 numba.core.ssa DEBUG on stmt: $132load_deref.10 = freevar(zero: 0) -13:52:44,745 numba.core.ssa DEBUG on stmt: $134load_global.11 = global(len: ) -13:52:44,745 numba.core.ssa DEBUG on stmt: $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,745 numba.core.ssa DEBUG on stmt: $const162.15 = const(int, 1) -13:52:44,745 numba.core.ssa DEBUG on stmt: $binop_sub164.16 = $152call.14 - $const162.15 -13:52:44,745 numba.core.ssa DEBUG on stmt: $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,745 numba.core.ssa DEBUG on stmt: $const184.19 = const(int, 0) -13:52:44,745 numba.core.ssa DEBUG on stmt: stack[0] = $172call.17 -13:52:44,745 numba.core.ssa DEBUG on stmt: n = const(int, 1) -13:52:44,745 numba.core.ssa DEBUG on stmt: $const196.22 = const(int, 0) -13:52:44,745 numba.core.ssa DEBUG on stmt: $198compare_op.23 = n > $const196.22 -13:52:44,745 numba.core.ssa DEBUG on stmt: bool204 = global(bool: ) -13:52:44,745 numba.core.ssa DEBUG on stmt: $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,745 numba.core.ssa DEBUG on stmt: branch $204pred, 206, 566 -13:52:44,746 numba.core.ssa DEBUG ==== SSA block rewrite pass on 206 -13:52:44,746 numba.core.ssa DEBUG Running -13:52:44,746 numba.core.ssa DEBUG on stmt: n.4 = phi(incoming_values=[Var(n, quicksort.py:173), Var(n.5, quicksort.py:176)], incoming_blocks=[70, 526]) -13:52:44,746 numba.core.ssa DEBUG on stmt: $const208.1 = const(int, 1) -13:52:44,746 numba.core.ssa DEBUG on stmt: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n.4, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,746 numba.core.ssa DEBUG on stmt: n.1 = $binop_isub210.2 -13:52:44,746 numba.core.ssa DEBUG on stmt: $220binary_subscr.5 = getitem(value=stack, index=n.1, fn=) -13:52:44,746 numba.core.ssa DEBUG on stmt: $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) -13:52:44,746 numba.core.ssa DEBUG on stmt: $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) -13:52:44,746 numba.core.ssa DEBUG on stmt: $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) -13:52:44,746 numba.core.ssa DEBUG on stmt: low = $230unpack_sequence.6 -13:52:44,746 numba.core.ssa DEBUG on stmt: high = $230unpack_sequence.7 -13:52:44,746 numba.core.ssa DEBUG first assign: high -13:52:44,746 numba.core.ssa DEBUG replaced with: high = $230unpack_sequence.7 -13:52:44,746 numba.core.ssa DEBUG on stmt: $binop_sub242.11 = high - low -13:52:44,746 numba.core.ssa DEBUG on stmt: $246load_global.12 = global(SMALL_QUICKSORT: 15) -13:52:44,746 numba.core.ssa DEBUG on stmt: $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 -13:52:44,746 numba.core.ssa DEBUG on stmt: bool264 = global(bool: ) -13:52:44,746 numba.core.ssa DEBUG on stmt: $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,746 numba.core.ssa DEBUG on stmt: branch $264pred, 266, 526 -13:52:44,746 numba.core.ssa DEBUG ==== SSA block rewrite pass on 266 -13:52:44,746 numba.core.ssa DEBUG Running -13:52:44,746 numba.core.ssa DEBUG on stmt: low.2 = phi(incoming_values=[Var(low.3, quicksort.py:181), Var(low, quicksort.py:177)], incoming_blocks=[498, 206]) -13:52:44,746 numba.core.ssa DEBUG on stmt: n.8 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,746 numba.core.ssa DEBUG on stmt: $268load_global.1 = global(MAX_STACK: 100) -13:52:44,747 numba.core.ssa DEBUG on stmt: $280compare_op.2 = n.8 < $268load_global.1 -13:52:44,747 numba.core.ssa DEBUG on stmt: bool286 = global(bool: ) -13:52:44,747 numba.core.ssa DEBUG on stmt: $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,747 numba.core.ssa DEBUG on stmt: branch $286pred, 292, 288 -13:52:44,747 numba.core.ssa DEBUG ==== SSA block rewrite pass on 288 -13:52:44,747 numba.core.ssa DEBUG Running -13:52:44,747 numba.core.ssa DEBUG on stmt: $assertion_error288.0 = global(AssertionError: ) -13:52:44,747 numba.core.ssa DEBUG on stmt: raise -13:52:44,747 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,747 numba.core.ssa DEBUG Running -13:52:44,747 numba.core.ssa DEBUG on stmt: $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) -13:52:44,747 numba.core.ssa DEBUG on stmt: i = call $294load_deref.1(A, R, low.2, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.2, quicksort.py:181), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,747 numba.core.ssa DEBUG on stmt: $binop_sub324.9 = high - i -13:52:44,747 numba.core.ssa DEBUG on stmt: $binop_sub332.12 = i - low.2 -13:52:44,747 numba.core.ssa DEBUG on stmt: $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 -13:52:44,747 numba.core.ssa DEBUG on stmt: bool342 = global(bool: ) -13:52:44,747 numba.core.ssa DEBUG on stmt: $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,747 numba.core.ssa DEBUG on stmt: branch $342pred, 344, 422 -13:52:44,747 numba.core.ssa DEBUG ==== SSA block rewrite pass on 344 -13:52:44,747 numba.core.ssa DEBUG Running -13:52:44,747 numba.core.ssa DEBUG on stmt: $348compare_op.2 = high > i -13:52:44,747 numba.core.ssa DEBUG on stmt: bool354 = global(bool: ) -13:52:44,747 numba.core.ssa DEBUG on stmt: $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,747 numba.core.ssa DEBUG on stmt: branch $354pred, 356, 410 -13:52:44,748 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,748 numba.core.ssa DEBUG Running -13:52:44,748 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(Partition: ) -13:52:44,748 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 1) -13:52:44,748 numba.core.ssa DEBUG on stmt: $binop_add372.4 = i + $const370.3 -13:52:44,748 numba.core.ssa DEBUG on stmt: $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,748 numba.core.ssa DEBUG on stmt: stack[n.8] = $382call.6 -13:52:44,748 numba.core.ssa DEBUG on stmt: $const402.10 = const(int, 1) -13:52:44,748 numba.core.ssa DEBUG on stmt: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,748 numba.core.ssa DEBUG on stmt: n.2 = $binop_iadd404.11 -13:52:44,748 numba.core.ssa DEBUG on stmt: jump 410 -13:52:44,748 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:44,748 numba.core.ssa DEBUG Running -13:52:44,748 numba.core.ssa DEBUG on stmt: n.9 = phi(incoming_values=[Var(n.8, quicksort.py:176), Var(n.2, quicksort.py:187)], incoming_blocks=[344, 356]) -13:52:44,748 numba.core.ssa DEBUG on stmt: $const412.1 = const(int, 1) -13:52:44,748 numba.core.ssa DEBUG on stmt: high = i - $const412.1 -13:52:44,748 numba.core.ssa DEBUG replaced with: high.1 = i - $const412.1 -13:52:44,748 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,748 numba.core.ssa DEBUG ==== SSA block rewrite pass on 422 -13:52:44,748 numba.core.ssa DEBUG Running -13:52:44,748 numba.core.ssa DEBUG on stmt: $426compare_op.2 = i > low.2 -13:52:44,748 numba.core.ssa DEBUG on stmt: bool432 = global(bool: ) -13:52:44,748 numba.core.ssa DEBUG on stmt: $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,748 numba.core.ssa DEBUG on stmt: branch $432pred, 434, 488 -13:52:44,749 numba.core.ssa DEBUG ==== SSA block rewrite pass on 434 -13:52:44,749 numba.core.ssa DEBUG Running -13:52:44,749 numba.core.ssa DEBUG on stmt: $434load_global.0 = global(Partition: ) -13:52:44,749 numba.core.ssa DEBUG on stmt: $const450.4 = const(int, 1) -13:52:44,749 numba.core.ssa DEBUG on stmt: $binop_sub452.5 = i - $const450.4 -13:52:44,749 numba.core.ssa DEBUG on stmt: $460call.6 = call $434load_global.0(low.2, $binop_sub452.5, func=$434load_global.0, args=[Var(low.2, quicksort.py:181), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,749 numba.core.ssa DEBUG on stmt: stack[n.8] = $460call.6 -13:52:44,749 numba.core.ssa DEBUG on stmt: $const480.10 = const(int, 1) -13:52:44,749 numba.core.ssa DEBUG on stmt: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,749 numba.core.ssa DEBUG on stmt: n.3 = $binop_iadd482.11 -13:52:44,749 numba.core.ssa DEBUG on stmt: jump 488 -13:52:44,749 numba.core.ssa DEBUG ==== SSA block rewrite pass on 488 -13:52:44,749 numba.core.ssa DEBUG Running -13:52:44,749 numba.core.ssa DEBUG on stmt: n.7 = phi(incoming_values=[Var(n.3, quicksort.py:192), Var(n.8, quicksort.py:176)], incoming_blocks=[434, 422]) -13:52:44,749 numba.core.ssa DEBUG on stmt: $const490.1 = const(int, 1) -13:52:44,749 numba.core.ssa DEBUG on stmt: low.1 = i + $const490.1 -13:52:44,749 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,749 numba.core.ssa DEBUG ==== SSA block rewrite pass on 498 -13:52:44,749 numba.core.ssa DEBUG Running -13:52:44,749 numba.core.ssa DEBUG on stmt: low.3 = phi(incoming_values=[Var(low.1, quicksort.py:193), Var(low.2, quicksort.py:181)], incoming_blocks=[488, 410]) -13:52:44,749 numba.core.ssa DEBUG on stmt: n.6 = phi(incoming_values=[Var(n.7, quicksort.py:176), Var(n.9, quicksort.py:176)], incoming_blocks=[488, 410]) -13:52:44,750 numba.core.ssa DEBUG on stmt: $binop_sub502.2 = high - low.3 -13:52:44,750 numba.core.ssa DEBUG on stmt: $506load_global.3 = global(SMALL_QUICKSORT: 15) -13:52:44,750 numba.core.ssa DEBUG on stmt: $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 -13:52:44,750 numba.core.ssa DEBUG on stmt: bool524 = global(bool: ) -13:52:44,750 numba.core.ssa DEBUG on stmt: $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,750 numba.core.ssa DEBUG on stmt: branch $524pred, 266, 526 -13:52:44,750 numba.core.ssa DEBUG ==== SSA block rewrite pass on 526 -13:52:44,750 numba.core.ssa DEBUG Running -13:52:44,750 numba.core.ssa DEBUG on stmt: low.4 = phi(incoming_values=[Var(low.3, quicksort.py:181), Var(low, quicksort.py:177)], incoming_blocks=[498, 206]) -13:52:44,750 numba.core.ssa DEBUG on stmt: n.5 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,750 numba.core.ssa DEBUG on stmt: $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) -13:52:44,750 numba.core.ssa DEBUG on stmt: $542call.6 = call $528load_deref.1(A, R, low.4, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.4, quicksort.py:195), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,750 numba.core.ssa DEBUG on stmt: $const556.8 = const(int, 0) -13:52:44,750 numba.core.ssa DEBUG on stmt: $558compare_op.9 = n.5 > $const556.8 -13:52:44,750 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:44,750 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,750 numba.core.ssa DEBUG on stmt: branch $564pred, 206, 566 -13:52:44,750 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:44,750 numba.core.ssa DEBUG Running -13:52:44,750 numba.core.ssa DEBUG on stmt: $568return_value.1 = cast(value=R) -13:52:44,750 numba.core.ssa DEBUG on stmt: return $568return_value.1 -13:52:44,751 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {206: [], - 410: []}) -13:52:44,751 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,751 numba.core.ssa DEBUG Running -13:52:44,751 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,751 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(make_res: .make_res at 0x000001C3DB4DFC40>) -13:52:44,751 numba.core.ssa DEBUG on stmt: R = call $8load_deref.1(A, func=$8load_deref.1, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,751 numba.core.ssa DEBUG on stmt: $28load_global.4 = global(len: ) -13:52:44,751 numba.core.ssa DEBUG on stmt: $46call.7 = call $28load_global.4(A, func=$28load_global.4, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,751 numba.core.ssa DEBUG on stmt: $const56.8 = const(int, 2) -13:52:44,751 numba.core.ssa DEBUG on stmt: $58compare_op.9 = $46call.7 < $const56.8 -13:52:44,751 numba.core.ssa DEBUG on stmt: bool64 = global(bool: ) -13:52:44,751 numba.core.ssa DEBUG on stmt: $64pred = call bool64($58compare_op.9, func=bool64, args=(Var($58compare_op.9, quicksort.py:168),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,751 numba.core.ssa DEBUG on stmt: branch $64pred, 66, 70 -13:52:44,751 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:44,751 numba.core.ssa DEBUG Running -13:52:44,751 numba.core.ssa DEBUG on stmt: $68return_value.1 = cast(value=R) -13:52:44,751 numba.core.ssa DEBUG on stmt: return $68return_value.1 -13:52:44,752 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:44,752 numba.core.ssa DEBUG Running -13:52:44,752 numba.core.ssa DEBUG on stmt: $70load_global.0 = global(Partition: ) -13:52:44,752 numba.core.ssa DEBUG on stmt: $82load_deref.2 = freevar(zero: 0) -13:52:44,752 numba.core.ssa DEBUG on stmt: $84load_deref.3 = freevar(zero: 0) -13:52:44,752 numba.core.ssa DEBUG on stmt: $90call.4 = call $70load_global.0($82load_deref.2, $84load_deref.3, func=$70load_global.0, args=[Var($82load_deref.2, quicksort.py:171), Var($84load_deref.3, quicksort.py:171)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,752 numba.core.ssa DEBUG on stmt: $100build_list.5 = build_list(items=[Var($90call.4, quicksort.py:171)]) -13:52:44,752 numba.core.ssa DEBUG on stmt: $102load_global.6 = global(MAX_STACK: 100) -13:52:44,752 numba.core.ssa DEBUG on stmt: stack = $100build_list.5 * $102load_global.6 -13:52:44,752 numba.core.ssa DEBUG on stmt: $120load_global.8 = global(Partition: ) -13:52:44,752 numba.core.ssa DEBUG on stmt: $132load_deref.10 = freevar(zero: 0) -13:52:44,752 numba.core.ssa DEBUG on stmt: $134load_global.11 = global(len: ) -13:52:44,752 numba.core.ssa DEBUG on stmt: $152call.14 = call $134load_global.11(A, func=$134load_global.11, args=[Var(A, quicksort.py:164)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,752 numba.core.ssa DEBUG on stmt: $const162.15 = const(int, 1) -13:52:44,752 numba.core.ssa DEBUG on stmt: $binop_sub164.16 = $152call.14 - $const162.15 -13:52:44,752 numba.core.ssa DEBUG on stmt: $172call.17 = call $120load_global.8($132load_deref.10, $binop_sub164.16, func=$120load_global.8, args=[Var($132load_deref.10, quicksort.py:172), Var($binop_sub164.16, quicksort.py:172)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,752 numba.core.ssa DEBUG on stmt: $const184.19 = const(int, 0) -13:52:44,752 numba.core.ssa DEBUG on stmt: stack[0] = $172call.17 -13:52:44,752 numba.core.ssa DEBUG on stmt: n = const(int, 1) -13:52:44,753 numba.core.ssa DEBUG on stmt: $const196.22 = const(int, 0) -13:52:44,753 numba.core.ssa DEBUG on stmt: $198compare_op.23 = n > $const196.22 -13:52:44,753 numba.core.ssa DEBUG on stmt: bool204 = global(bool: ) -13:52:44,753 numba.core.ssa DEBUG on stmt: $204pred = call bool204($198compare_op.23, func=bool204, args=(Var($198compare_op.23, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,753 numba.core.ssa DEBUG on stmt: branch $204pred, 206, 566 -13:52:44,753 numba.core.ssa DEBUG ==== SSA block rewrite pass on 206 -13:52:44,753 numba.core.ssa DEBUG Running -13:52:44,753 numba.core.ssa DEBUG on stmt: n.4 = phi(incoming_values=[Var(n, quicksort.py:173), Var(n.5, quicksort.py:176)], incoming_blocks=[70, 526]) -13:52:44,753 numba.core.ssa DEBUG on stmt: $const208.1 = const(int, 1) -13:52:44,753 numba.core.ssa DEBUG on stmt: $binop_isub210.2 = inplace_binop(fn=, immutable_fn=, lhs=n.4, rhs=$const208.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,753 numba.core.ssa DEBUG on stmt: n.1 = $binop_isub210.2 -13:52:44,753 numba.core.ssa DEBUG on stmt: $220binary_subscr.5 = getitem(value=stack, index=n.1, fn=) -13:52:44,753 numba.core.ssa DEBUG on stmt: $230unpack_sequence.8 = exhaust_iter(value=$220binary_subscr.5, count=2) -13:52:44,753 numba.core.ssa DEBUG on stmt: $230unpack_sequence.6 = static_getitem(value=$230unpack_sequence.8, index=0, index_var=None, fn=) -13:52:44,753 numba.core.ssa DEBUG on stmt: $230unpack_sequence.7 = static_getitem(value=$230unpack_sequence.8, index=1, index_var=None, fn=) -13:52:44,753 numba.core.ssa DEBUG on stmt: low = $230unpack_sequence.6 -13:52:44,753 numba.core.ssa DEBUG on stmt: high = $230unpack_sequence.7 -13:52:44,753 numba.core.ssa DEBUG on stmt: $binop_sub242.11 = high - low -13:52:44,753 numba.core.ssa DEBUG find_def var='high' stmt=$binop_sub242.11 = high - low -13:52:44,753 numba.core.ssa DEBUG on stmt: $246load_global.12 = global(SMALL_QUICKSORT: 15) -13:52:44,754 numba.core.ssa DEBUG on stmt: $258compare_op.13 = $binop_sub242.11 >= $246load_global.12 -13:52:44,754 numba.core.ssa DEBUG on stmt: bool264 = global(bool: ) -13:52:44,754 numba.core.ssa DEBUG on stmt: $264pred = call bool264($258compare_op.13, func=bool264, args=(Var($258compare_op.13, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,754 numba.core.ssa DEBUG on stmt: branch $264pred, 266, 526 -13:52:44,754 numba.core.ssa DEBUG ==== SSA block rewrite pass on 266 -13:52:44,754 numba.core.ssa DEBUG Running -13:52:44,754 numba.core.ssa DEBUG on stmt: low.2 = phi(incoming_values=[Var(low.3, quicksort.py:181), Var(low, quicksort.py:177)], incoming_blocks=[498, 206]) -13:52:44,754 numba.core.ssa DEBUG on stmt: n.8 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,754 numba.core.ssa DEBUG on stmt: $268load_global.1 = global(MAX_STACK: 100) -13:52:44,754 numba.core.ssa DEBUG on stmt: $280compare_op.2 = n.8 < $268load_global.1 -13:52:44,754 numba.core.ssa DEBUG on stmt: bool286 = global(bool: ) -13:52:44,754 numba.core.ssa DEBUG on stmt: $286pred = call bool286($280compare_op.2, func=bool286, args=(Var($280compare_op.2, quicksort.py:180),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,754 numba.core.ssa DEBUG on stmt: branch $286pred, 292, 288 -13:52:44,754 numba.core.ssa DEBUG ==== SSA block rewrite pass on 288 -13:52:44,754 numba.core.ssa DEBUG Running -13:52:44,754 numba.core.ssa DEBUG on stmt: $assertion_error288.0 = global(AssertionError: ) -13:52:44,754 numba.core.ssa DEBUG on stmt: raise -13:52:44,754 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:44,754 numba.core.ssa DEBUG Running -13:52:44,754 numba.core.ssa DEBUG on stmt: $294load_deref.1 = freevar(partition: .partition at 0x000001C3DB597600>) -13:52:44,755 numba.core.ssa DEBUG on stmt: i = call $294load_deref.1(A, R, low.2, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.2, quicksort.py:181), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,755 numba.core.ssa DEBUG find_def var='high' stmt=i = call $294load_deref.1(A, R, low.2, high, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.2, quicksort.py:181), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,755 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,755 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,755 numba.core.ssa DEBUG find_def_from_top label 266 -13:52:44,755 numba.core.ssa DEBUG insert phi node high.2 = phi(incoming_values=[], incoming_blocks=[]) at 266 -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 498 -13:52:44,755 numba.core.ssa DEBUG find_def_from_top label 498 -13:52:44,755 numba.core.ssa DEBUG insert phi node high.3 = phi(incoming_values=[], incoming_blocks=[]) at 498 -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 488 -13:52:44,755 numba.core.ssa DEBUG find_def_from_top label 488 -13:52:44,755 numba.core.ssa DEBUG idom 422 from label 488 -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 422 -13:52:44,755 numba.core.ssa DEBUG find_def_from_top label 422 -13:52:44,755 numba.core.ssa DEBUG idom 292 from label 422 -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,755 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,755 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,755 numba.core.ssa DEBUG incoming_def high.2 = phi(incoming_values=[], incoming_blocks=[]) -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 410 -13:52:44,755 numba.core.ssa DEBUG incoming_def high.1 = i - $const412.1 -13:52:44,755 numba.core.ssa DEBUG incoming_def high.3 = phi(incoming_values=[Var(high.2, quicksort.py:181), Var(high.1, quicksort.py:188)], incoming_blocks=[488, 410]) -13:52:44,755 numba.core.ssa DEBUG find_def_from_bottom label 206 -13:52:44,755 numba.core.ssa DEBUG incoming_def high = $230unpack_sequence.7 -13:52:44,755 numba.core.ssa DEBUG replaced with: i = call $294load_deref.1(A, R, low.2, high.2, func=$294load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.2, quicksort.py:181), Var(high.2, quicksort.py:181)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,756 numba.core.ssa DEBUG on stmt: $binop_sub324.9 = high - i -13:52:44,756 numba.core.ssa DEBUG find_def var='high' stmt=$binop_sub324.9 = high - i -13:52:44,756 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,756 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,756 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,756 numba.core.ssa DEBUG replaced with: $binop_sub324.9 = high.2 - i -13:52:44,756 numba.core.ssa DEBUG on stmt: $binop_sub332.12 = i - low.2 -13:52:44,756 numba.core.ssa DEBUG on stmt: $336compare_op.13 = $binop_sub324.9 > $binop_sub332.12 -13:52:44,756 numba.core.ssa DEBUG on stmt: bool342 = global(bool: ) -13:52:44,756 numba.core.ssa DEBUG on stmt: $342pred = call bool342($336compare_op.13, func=bool342, args=(Var($336compare_op.13, quicksort.py:183),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,756 numba.core.ssa DEBUG on stmt: branch $342pred, 344, 422 -13:52:44,756 numba.core.ssa DEBUG ==== SSA block rewrite pass on 344 -13:52:44,756 numba.core.ssa DEBUG Running -13:52:44,756 numba.core.ssa DEBUG on stmt: $348compare_op.2 = high > i -13:52:44,756 numba.core.ssa DEBUG find_def var='high' stmt=$348compare_op.2 = high > i -13:52:44,756 numba.core.ssa DEBUG find_def_from_top label 344 -13:52:44,756 numba.core.ssa DEBUG idom 292 from label 344 -13:52:44,756 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,756 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,756 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,756 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,757 numba.core.ssa DEBUG replaced with: $348compare_op.2 = high.2 > i -13:52:44,757 numba.core.ssa DEBUG on stmt: bool354 = global(bool: ) -13:52:44,757 numba.core.ssa DEBUG on stmt: $354pred = call bool354($348compare_op.2, func=bool354, args=(Var($348compare_op.2, quicksort.py:185),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,757 numba.core.ssa DEBUG on stmt: branch $354pred, 356, 410 -13:52:44,757 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,757 numba.core.ssa DEBUG Running -13:52:44,757 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(Partition: ) -13:52:44,757 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 1) -13:52:44,757 numba.core.ssa DEBUG on stmt: $binop_add372.4 = i + $const370.3 -13:52:44,757 numba.core.ssa DEBUG on stmt: $382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,757 numba.core.ssa DEBUG find_def var='high' stmt=$382call.6 = call $356load_global.0($binop_add372.4, high, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,757 numba.core.ssa DEBUG find_def_from_top label 356 -13:52:44,757 numba.core.ssa DEBUG idom 344 from label 356 -13:52:44,757 numba.core.ssa DEBUG find_def_from_bottom label 344 -13:52:44,757 numba.core.ssa DEBUG find_def_from_top label 344 -13:52:44,757 numba.core.ssa DEBUG idom 292 from label 344 -13:52:44,757 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:44,757 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:44,757 numba.core.ssa DEBUG idom 266 from label 292 -13:52:44,757 numba.core.ssa DEBUG find_def_from_bottom label 266 -13:52:44,757 numba.core.ssa DEBUG replaced with: $382call.6 = call $356load_global.0($binop_add372.4, high.2, func=$356load_global.0, args=[Var($binop_add372.4, quicksort.py:186), Var(high.2, quicksort.py:181)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,757 numba.core.ssa DEBUG on stmt: stack[n.8] = $382call.6 -13:52:44,758 numba.core.ssa DEBUG on stmt: $const402.10 = const(int, 1) -13:52:44,758 numba.core.ssa DEBUG on stmt: $binop_iadd404.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const402.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,758 numba.core.ssa DEBUG on stmt: n.2 = $binop_iadd404.11 -13:52:44,758 numba.core.ssa DEBUG on stmt: jump 410 -13:52:44,758 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:44,758 numba.core.ssa DEBUG Running -13:52:44,758 numba.core.ssa DEBUG on stmt: n.9 = phi(incoming_values=[Var(n.8, quicksort.py:176), Var(n.2, quicksort.py:187)], incoming_blocks=[344, 356]) -13:52:44,758 numba.core.ssa DEBUG on stmt: $const412.1 = const(int, 1) -13:52:44,758 numba.core.ssa DEBUG on stmt: high.1 = i - $const412.1 -13:52:44,758 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,758 numba.core.ssa DEBUG ==== SSA block rewrite pass on 422 -13:52:44,758 numba.core.ssa DEBUG Running -13:52:44,758 numba.core.ssa DEBUG on stmt: $426compare_op.2 = i > low.2 -13:52:44,758 numba.core.ssa DEBUG on stmt: bool432 = global(bool: ) -13:52:44,758 numba.core.ssa DEBUG on stmt: $432pred = call bool432($426compare_op.2, func=bool432, args=(Var($426compare_op.2, quicksort.py:190),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,758 numba.core.ssa DEBUG on stmt: branch $432pred, 434, 488 -13:52:44,758 numba.core.ssa DEBUG ==== SSA block rewrite pass on 434 -13:52:44,758 numba.core.ssa DEBUG Running -13:52:44,758 numba.core.ssa DEBUG on stmt: $434load_global.0 = global(Partition: ) -13:52:44,758 numba.core.ssa DEBUG on stmt: $const450.4 = const(int, 1) -13:52:44,758 numba.core.ssa DEBUG on stmt: $binop_sub452.5 = i - $const450.4 -13:52:44,759 numba.core.ssa DEBUG on stmt: $460call.6 = call $434load_global.0(low.2, $binop_sub452.5, func=$434load_global.0, args=[Var(low.2, quicksort.py:181), Var($binop_sub452.5, quicksort.py:191)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,759 numba.core.ssa DEBUG on stmt: stack[n.8] = $460call.6 -13:52:44,759 numba.core.ssa DEBUG on stmt: $const480.10 = const(int, 1) -13:52:44,759 numba.core.ssa DEBUG on stmt: $binop_iadd482.11 = inplace_binop(fn=, immutable_fn=, lhs=n.8, rhs=$const480.10, static_lhs=Undefined, static_rhs=Undefined) -13:52:44,759 numba.core.ssa DEBUG on stmt: n.3 = $binop_iadd482.11 -13:52:44,759 numba.core.ssa DEBUG on stmt: jump 488 -13:52:44,759 numba.core.ssa DEBUG ==== SSA block rewrite pass on 488 -13:52:44,759 numba.core.ssa DEBUG Running -13:52:44,759 numba.core.ssa DEBUG on stmt: n.7 = phi(incoming_values=[Var(n.3, quicksort.py:192), Var(n.8, quicksort.py:176)], incoming_blocks=[434, 422]) -13:52:44,759 numba.core.ssa DEBUG on stmt: $const490.1 = const(int, 1) -13:52:44,759 numba.core.ssa DEBUG on stmt: low.1 = i + $const490.1 -13:52:44,759 numba.core.ssa DEBUG on stmt: jump 498 -13:52:44,759 numba.core.ssa DEBUG ==== SSA block rewrite pass on 498 -13:52:44,759 numba.core.ssa DEBUG Running -13:52:44,759 numba.core.ssa DEBUG on stmt: low.3 = phi(incoming_values=[Var(low.1, quicksort.py:193), Var(low.2, quicksort.py:181)], incoming_blocks=[488, 410]) -13:52:44,759 numba.core.ssa DEBUG on stmt: n.6 = phi(incoming_values=[Var(n.7, quicksort.py:176), Var(n.9, quicksort.py:176)], incoming_blocks=[488, 410]) -13:52:44,759 numba.core.ssa DEBUG on stmt: $binop_sub502.2 = high - low.3 -13:52:44,759 numba.core.ssa DEBUG find_def var='high' stmt=$binop_sub502.2 = high - low.3 -13:52:44,759 numba.core.ssa DEBUG replaced with: $binop_sub502.2 = high.3 - low.3 -13:52:44,760 numba.core.ssa DEBUG on stmt: $506load_global.3 = global(SMALL_QUICKSORT: 15) -13:52:44,760 numba.core.ssa DEBUG on stmt: $518compare_op.4 = $binop_sub502.2 >= $506load_global.3 -13:52:44,760 numba.core.ssa DEBUG on stmt: bool524 = global(bool: ) -13:52:44,760 numba.core.ssa DEBUG on stmt: $524pred = call bool524($518compare_op.4, func=bool524, args=(Var($518compare_op.4, quicksort.py:179),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,760 numba.core.ssa DEBUG on stmt: branch $524pred, 266, 526 -13:52:44,760 numba.core.ssa DEBUG ==== SSA block rewrite pass on 526 -13:52:44,760 numba.core.ssa DEBUG Running -13:52:44,760 numba.core.ssa DEBUG on stmt: low.4 = phi(incoming_values=[Var(low.3, quicksort.py:181), Var(low, quicksort.py:177)], incoming_blocks=[498, 206]) -13:52:44,760 numba.core.ssa DEBUG on stmt: n.5 = phi(incoming_values=[Var(n.6, quicksort.py:176), Var(n.1, quicksort.py:176)], incoming_blocks=[498, 206]) -13:52:44,760 numba.core.ssa DEBUG on stmt: $528load_deref.1 = freevar(insertion_sort: .insertion_sort at 0x000001C3DB4DFB00>) -13:52:44,760 numba.core.ssa DEBUG on stmt: $542call.6 = call $528load_deref.1(A, R, low.4, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.4, quicksort.py:195), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,760 numba.core.ssa DEBUG find_def var='high' stmt=$542call.6 = call $528load_deref.1(A, R, low.4, high, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.4, quicksort.py:195), Var(high, quicksort.py:177)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,760 numba.core.ssa DEBUG find_def_from_top label 526 -13:52:44,760 numba.core.ssa DEBUG insert phi node high.4 = phi(incoming_values=[], incoming_blocks=[]) at 526 -13:52:44,760 numba.core.ssa DEBUG find_def_from_bottom label 498 -13:52:44,760 numba.core.ssa DEBUG incoming_def high.3 = phi(incoming_values=[Var(high.2, quicksort.py:181), Var(high.1, quicksort.py:188)], incoming_blocks=[488, 410]) -13:52:44,760 numba.core.ssa DEBUG find_def_from_bottom label 206 -13:52:44,760 numba.core.ssa DEBUG incoming_def high = $230unpack_sequence.7 -13:52:44,760 numba.core.ssa DEBUG replaced with: $542call.6 = call $528load_deref.1(A, R, low.4, high.4, func=$528load_deref.1, args=[Var(A, quicksort.py:164), Var(R, quicksort.py:166), Var(low.4, quicksort.py:195), Var(high.4, quicksort.py:195)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,761 numba.core.ssa DEBUG on stmt: $const556.8 = const(int, 0) -13:52:44,761 numba.core.ssa DEBUG on stmt: $558compare_op.9 = n.5 > $const556.8 -13:52:44,761 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:44,761 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.9, func=bool564, args=(Var($558compare_op.9, quicksort.py:175),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,761 numba.core.ssa DEBUG on stmt: branch $564pred, 206, 566 -13:52:44,761 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:44,761 numba.core.ssa DEBUG Running -13:52:44,761 numba.core.ssa DEBUG on stmt: $568return_value.1 = cast(value=R) -13:52:44,761 numba.core.ssa DEBUG on stmt: return $568return_value.1 -13:52:44,775 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=41) - 2 RESUME(arg=0, lineno=41) - 4 LOAD_GLOBAL(arg=1, lineno=43) - 16 LOAD_ATTR(arg=1, lineno=43) - 26 LOAD_FAST(arg=0, lineno=43) - 28 LOAD_ATTR(arg=2, lineno=43) - 38 PRECALL(arg=1, lineno=43) - 42 CALL(arg=1, lineno=43) - 52 RETURN_VALUE(arg=None, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,775 numba.core.byteflow DEBUG stack: [] -13:52:44,775 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=41) -13:52:44,775 numba.core.byteflow DEBUG stack [] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=41) -13:52:44,775 numba.core.byteflow DEBUG stack [] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG stack [] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_ATTR(arg=1, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=0, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2'] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_ATTR(arg=2, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$A26.3'] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=38, inst=PRECALL(arg=1, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$28load_attr.4'] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=42, inst=CALL(arg=1, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$28load_attr.4'] -13:52:44,775 numba.core.byteflow DEBUG dispatch pc=52, inst=RETURN_VALUE(arg=None, lineno=43) -13:52:44,775 numba.core.byteflow DEBUG stack ['$42call.5'] -13:52:44,775 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,775 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,775 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:44,775 numba.core.byteflow DEBUG defmap: {} -13:52:44,775 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:44,776 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:44,776 numba.core.byteflow DEBUG keep phismap: {} -13:52:44,776 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:44,776 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,776 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'item': '$4load_global.0', 'res': '$16load_attr.2'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'res': '$A26.3'}), (28, {'item': '$A26.3', 'res': '$28load_attr.4'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {}), (40, {}), (42, {'func': '$16load_attr.2', 'args': ['$28load_attr.4'], 'kw_names': None, 'res': '$42call.5'}), (44, {}), (46, {}), (48, {}), (50, {}), (52, {'retval': '$42call.5', 'castval': '$52return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,776 numba.core.interpreter DEBUG label 0: - A = arg(0, name=A) ['A'] - $4load_global.0 = global(np: ) ['$4load_global.0'] - $16load_attr.2 = getattr(value=$4load_global.0, attr=arange) ['$16load_attr.2', '$4load_global.0'] - $28load_attr.4 = getattr(value=A, attr=size) ['$28load_attr.4', 'A'] - $42call.5 = call $16load_attr.2($28load_attr.4, func=$16load_attr.2, args=[Var($28load_attr.4, quicksort.py:43)], kws=(), vararg=None, varkwarg=None, target=None) ['$16load_attr.2', '$28load_attr.4', '$42call.5'] - $52return_value.6 = cast(value=$42call.5) ['$42call.5', '$52return_value.6'] - return $52return_value.6 ['$52return_value.6'] - -13:52:44,781 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,781 numba.core.ssa DEBUG Running -13:52:44,781 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:44,781 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:44,781 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=arange) -13:52:44,781 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=A, attr=size) -13:52:44,781 numba.core.ssa DEBUG on stmt: $42call.5 = call $16load_attr.2($28load_attr.4, func=$16load_attr.2, args=[Var($28load_attr.4, quicksort.py:43)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,781 numba.core.ssa DEBUG on stmt: $52return_value.6 = cast(value=$42call.5) -13:52:44,782 numba.core.ssa DEBUG on stmt: return $52return_value.6 -13:52:44,782 numba.core.ssa DEBUG defs defaultdict(, - {'$16load_attr.2': [(, - 0)], - '$28load_attr.4': [(, - 0)], - '$42call.5': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$52return_value.6': [(, - 0)], - 'A': [(, 0)]}) -13:52:44,782 numba.core.ssa DEBUG SSA violators -13:52:44,785 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4795) - 2 COPY_FREE_VARS(arg=5, lineno=4795) - 4 RESUME(arg=0, lineno=4795) - 6 LOAD_DEREF(arg=17, lineno=4797) - 8 POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4797) - 10 LOAD_DEREF(arg=17, lineno=4797) - 12 JUMP_FORWARD(arg=1, lineno=4797) -> 14 LOAD_FAST(arg=0, lineno=4797) -> 16 STORE_FAST(arg=4, lineno=4797) - 18 LOAD_DEREF(arg=19, lineno=4798) - 20 POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4798) - 22 LOAD_DEREF(arg=19, lineno=4798) - 24 JUMP_FORWARD(arg=1, lineno=4798) -> 26 LOAD_FAST(arg=1, lineno=4798) -> 28 STORE_FAST(arg=5, lineno=4798) - 30 LOAD_DEREF(arg=18, lineno=4799) - 32 POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4799) - 34 LOAD_DEREF(arg=18, lineno=4799) - 36 JUMP_FORWARD(arg=1, lineno=4799) -> 38 LOAD_FAST(arg=2, lineno=4799) -> 40 STORE_FAST(arg=6, lineno=4799) - 42 LOAD_FAST(arg=6, lineno=4801) - 44 POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4801) - 46 LOAD_FAST(arg=6, lineno=4801) - 48 JUMP_FORWARD(arg=1, lineno=4801) -> 50 LOAD_CONST(arg=1, lineno=4801) -> 52 STORE_FAST(arg=7, lineno=4801) - 54 LOAD_FAST(arg=5, lineno=4802) - 56 POP_JUMP_FORWARD_IF_NOT_NONE(arg=5, lineno=4802) - 58 LOAD_CONST(arg=2, lineno=4803) - 60 LOAD_FAST(arg=4, lineno=4803) - 62 STORE_FAST(arg=9, lineno=4803) - 64 STORE_FAST(arg=8, lineno=4803) - 66 JUMP_FORWARD(arg=4, lineno=4803) -> 68 LOAD_FAST(arg=4, lineno=4805) - 70 LOAD_FAST(arg=5, lineno=4805) - 72 STORE_FAST(arg=9, lineno=4805) - 74 STORE_FAST(arg=8, lineno=4805) -> 76 LOAD_FAST(arg=7, lineno=4807) - 78 LOAD_CONST(arg=2, lineno=4807) - 80 COMPARE_OP(arg=2, lineno=4807) - 86 POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=4807) - 88 LOAD_GLOBAL(arg=1, lineno=4808) - 100 LOAD_CONST(arg=3, lineno=4808) - 102 PRECALL(arg=1, lineno=4808) - 106 CALL(arg=1, lineno=4808) - 116 RAISE_VARARGS(arg=1, lineno=4808) -> 118 LOAD_FAST(arg=9, lineno=4810) - 120 LOAD_FAST(arg=8, lineno=4810) - 122 BINARY_OP(arg=10, lineno=4810) - 126 LOAD_FAST(arg=7, lineno=4810) - 128 BINARY_OP(arg=11, lineno=4810) - 132 STORE_FAST(arg=10, lineno=4810) - 134 LOAD_GLOBAL(arg=3, lineno=4811) - 146 LOAD_GLOBAL(arg=5, lineno=4811) - 158 LOAD_ATTR(arg=3, lineno=4811) - 168 LOAD_FAST(arg=10, lineno=4811) - 170 LOAD_ATTR(arg=4, lineno=4811) - 180 PRECALL(arg=1, lineno=4811) - 184 CALL(arg=1, lineno=4811) - 194 PRECALL(arg=1, lineno=4811) - 198 CALL(arg=1, lineno=4811) - 208 STORE_FAST(arg=11, lineno=4811) - 210 LOAD_DEREF(arg=21, lineno=4814) - 212 LOAD_CONST(arg=4, lineno=4814) - 214 IS_OP(arg=0, lineno=4814) - 216 POP_JUMP_FORWARD_IF_FALSE(arg=69, lineno=4814) - 218 LOAD_GLOBAL(arg=3, lineno=4815) - 230 LOAD_GLOBAL(arg=5, lineno=4815) - 242 LOAD_ATTR(arg=3, lineno=4815) - 252 LOAD_FAST(arg=10, lineno=4815) - 254 LOAD_ATTR(arg=5, lineno=4815) - 264 PRECALL(arg=1, lineno=4815) - 268 CALL(arg=1, lineno=4815) - 278 PRECALL(arg=1, lineno=4815) - 282 CALL(arg=1, lineno=4815) - 292 STORE_FAST(arg=12, lineno=4815) - 294 LOAD_GLOBAL(arg=13, lineno=4816) - 306 LOAD_GLOBAL(arg=15, lineno=4816) - 318 LOAD_FAST(arg=12, lineno=4816) - 320 LOAD_FAST(arg=11, lineno=4816) - 322 PRECALL(arg=2, lineno=4816) - 326 CALL(arg=2, lineno=4816) - 336 LOAD_CONST(arg=2, lineno=4816) - 338 PRECALL(arg=2, lineno=4816) - 342 CALL(arg=2, lineno=4816) - 352 STORE_FAST(arg=13, lineno=4816) - 354 JUMP_FORWARD(arg=16, lineno=4816) -> 356 LOAD_GLOBAL(arg=13, lineno=4818) - 368 LOAD_FAST(arg=11, lineno=4818) - 370 LOAD_CONST(arg=2, lineno=4818) - 372 PRECALL(arg=2, lineno=4818) - 376 CALL(arg=2, lineno=4818) - 386 STORE_FAST(arg=13, lineno=4818) -> 388 LOAD_GLOBAL(arg=17, lineno=4819) - 400 LOAD_ATTR(arg=9, lineno=4819) - 410 LOAD_FAST(arg=13, lineno=4819) - 412 LOAD_DEREF(arg=20, lineno=4819) - 414 PRECALL(arg=2, lineno=4819) - 418 CALL(arg=2, lineno=4819) - 428 STORE_FAST(arg=14, lineno=4819) - 430 LOAD_FAST(arg=8, lineno=4820) - 432 STORE_FAST(arg=15, lineno=4820) - 434 LOAD_GLOBAL(arg=21, lineno=4821) - 446 LOAD_FAST(arg=13, lineno=4821) - 448 PRECALL(arg=1, lineno=4821) - 452 CALL(arg=1, lineno=4821) - 462 GET_ITER(arg=None, lineno=4821) -> 464 FOR_ITER(arg=13, lineno=4821) - 466 STORE_FAST(arg=16, lineno=4821) - 468 LOAD_FAST(arg=15, lineno=4822) - 470 LOAD_FAST(arg=16, lineno=4822) - 472 LOAD_FAST(arg=7, lineno=4822) - 474 BINARY_OP(arg=5, lineno=4822) - 478 BINARY_OP(arg=0, lineno=4822) - 482 LOAD_FAST(arg=14, lineno=4822) - 484 LOAD_FAST(arg=16, lineno=4822) - 486 STORE_SUBSCR(arg=None, lineno=4822) - 490 JUMP_BACKWARD(arg=14, lineno=4822) -> 492 LOAD_FAST(arg=14, lineno=4823) - 494 RETURN_VALUE(arg=None, lineno=4823) -13:52:44,785 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,785 numba.core.byteflow DEBUG stack: [] -13:52:44,785 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4795) -13:52:44,785 numba.core.byteflow DEBUG stack [] -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=5, lineno=4795) -13:52:44,785 numba.core.byteflow DEBUG stack [] -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=4795) -13:52:44,785 numba.core.byteflow DEBUG stack [] -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_DEREF(arg=17, lineno=4797) -13:52:44,785 numba.core.byteflow DEBUG stack [] -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=8, inst=POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4797) -13:52:44,785 numba.core.byteflow DEBUG stack ['$6load_deref.0'] -13:52:44,785 numba.core.byteflow DEBUG end state. edges=[Edge(pc=10, stack=(), blockstack=(), npush=0), Edge(pc=14, stack=(), blockstack=(), npush=0)] -13:52:44,785 numba.core.byteflow DEBUG pending: deque([State(pc_initial=10 nstack_initial=0), State(pc_initial=14 nstack_initial=0)]) -13:52:44,785 numba.core.byteflow DEBUG stack: [] -13:52:44,785 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=10 nstack_initial=0) -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=10, inst=LOAD_DEREF(arg=17, lineno=4797) -13:52:44,785 numba.core.byteflow DEBUG stack [] -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=12, inst=JUMP_FORWARD(arg=1, lineno=4797) -13:52:44,785 numba.core.byteflow DEBUG stack ['$10load_deref.0'] -13:52:44,785 numba.core.byteflow DEBUG end state. edges=[Edge(pc=16, stack=('$10load_deref.0',), blockstack=(), npush=0)] -13:52:44,785 numba.core.byteflow DEBUG pending: deque([State(pc_initial=14 nstack_initial=0), State(pc_initial=16 nstack_initial=1)]) -13:52:44,785 numba.core.byteflow DEBUG stack: [] -13:52:44,785 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=14 nstack_initial=0) -13:52:44,785 numba.core.byteflow DEBUG dispatch pc=14, inst=LOAD_FAST(arg=0, lineno=4797) -13:52:44,785 numba.core.byteflow DEBUG stack [] -13:52:44,786 numba.core.byteflow DEBUG end state. edges=[Edge(pc=16, stack=('$start14.0',), blockstack=(), npush=0)] -13:52:44,786 numba.core.byteflow DEBUG pending: deque([State(pc_initial=16 nstack_initial=1), State(pc_initial=16 nstack_initial=1)]) -13:52:44,786 numba.core.byteflow DEBUG stack: ['$phi16.0'] -13:52:44,786 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=16 nstack_initial=1) -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=16, inst=STORE_FAST(arg=4, lineno=4797) -13:52:44,786 numba.core.byteflow DEBUG stack ['$phi16.0'] -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_DEREF(arg=19, lineno=4798) -13:52:44,786 numba.core.byteflow DEBUG stack [] -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=20, inst=POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4798) -13:52:44,786 numba.core.byteflow DEBUG stack ['$18load_deref.1'] -13:52:44,786 numba.core.byteflow DEBUG end state. edges=[Edge(pc=22, stack=(), blockstack=(), npush=0), Edge(pc=26, stack=(), blockstack=(), npush=0)] -13:52:44,786 numba.core.byteflow DEBUG pending: deque([State(pc_initial=16 nstack_initial=1), State(pc_initial=22 nstack_initial=0), State(pc_initial=26 nstack_initial=0)]) -13:52:44,786 numba.core.byteflow DEBUG pending: deque([State(pc_initial=22 nstack_initial=0), State(pc_initial=26 nstack_initial=0)]) -13:52:44,786 numba.core.byteflow DEBUG stack: [] -13:52:44,786 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=22 nstack_initial=0) -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_DEREF(arg=19, lineno=4798) -13:52:44,786 numba.core.byteflow DEBUG stack [] -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=24, inst=JUMP_FORWARD(arg=1, lineno=4798) -13:52:44,786 numba.core.byteflow DEBUG stack ['$22load_deref.0'] -13:52:44,786 numba.core.byteflow DEBUG end state. edges=[Edge(pc=28, stack=('$22load_deref.0',), blockstack=(), npush=0)] -13:52:44,786 numba.core.byteflow DEBUG pending: deque([State(pc_initial=26 nstack_initial=0), State(pc_initial=28 nstack_initial=1)]) -13:52:44,786 numba.core.byteflow DEBUG stack: [] -13:52:44,786 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=26 nstack_initial=0) -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=1, lineno=4798) -13:52:44,786 numba.core.byteflow DEBUG stack [] -13:52:44,786 numba.core.byteflow DEBUG end state. edges=[Edge(pc=28, stack=('$stop26.0',), blockstack=(), npush=0)] -13:52:44,786 numba.core.byteflow DEBUG pending: deque([State(pc_initial=28 nstack_initial=1), State(pc_initial=28 nstack_initial=1)]) -13:52:44,786 numba.core.byteflow DEBUG stack: ['$phi28.0'] -13:52:44,786 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=28 nstack_initial=1) -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=28, inst=STORE_FAST(arg=5, lineno=4798) -13:52:44,786 numba.core.byteflow DEBUG stack ['$phi28.0'] -13:52:44,786 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_DEREF(arg=18, lineno=4799) -13:52:44,786 numba.core.byteflow DEBUG stack [] -13:52:44,787 numba.core.byteflow DEBUG dispatch pc=32, inst=POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4799) -13:52:44,787 numba.core.byteflow DEBUG stack ['$30load_deref.1'] -13:52:44,787 numba.core.byteflow DEBUG end state. edges=[Edge(pc=34, stack=(), blockstack=(), npush=0), Edge(pc=38, stack=(), blockstack=(), npush=0)] -13:52:44,787 numba.core.byteflow DEBUG pending: deque([State(pc_initial=28 nstack_initial=1), State(pc_initial=34 nstack_initial=0), State(pc_initial=38 nstack_initial=0)]) -13:52:44,787 numba.core.byteflow DEBUG pending: deque([State(pc_initial=34 nstack_initial=0), State(pc_initial=38 nstack_initial=0)]) -13:52:44,787 numba.core.byteflow DEBUG stack: [] -13:52:44,787 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=34 nstack_initial=0) -13:52:44,787 numba.core.byteflow DEBUG dispatch pc=34, inst=LOAD_DEREF(arg=18, lineno=4799) -13:52:44,787 numba.core.byteflow DEBUG stack [] -13:52:44,787 numba.core.byteflow DEBUG dispatch pc=36, inst=JUMP_FORWARD(arg=1, lineno=4799) -13:52:44,787 numba.core.byteflow DEBUG stack ['$34load_deref.0'] -13:52:44,787 numba.core.byteflow DEBUG end state. edges=[Edge(pc=40, stack=('$34load_deref.0',), blockstack=(), npush=0)] -13:52:44,787 numba.core.byteflow DEBUG pending: deque([State(pc_initial=38 nstack_initial=0), State(pc_initial=40 nstack_initial=1)]) -13:52:44,787 numba.core.byteflow DEBUG stack: [] -13:52:44,787 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=38 nstack_initial=0) -13:52:44,787 numba.core.byteflow DEBUG dispatch pc=38, inst=LOAD_FAST(arg=2, lineno=4799) -13:52:44,787 numba.core.byteflow DEBUG stack [] -13:52:44,787 numba.core.byteflow DEBUG end state. edges=[Edge(pc=40, stack=('$step38.0',), blockstack=(), npush=0)] -13:52:44,787 numba.core.byteflow DEBUG pending: deque([State(pc_initial=40 nstack_initial=1), State(pc_initial=40 nstack_initial=1)]) -13:52:44,787 numba.core.byteflow DEBUG stack: ['$phi40.0'] -13:52:44,787 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=40 nstack_initial=1) -13:52:44,787 numba.core.byteflow DEBUG dispatch pc=40, inst=STORE_FAST(arg=6, lineno=4799) -13:52:44,787 numba.core.byteflow DEBUG stack ['$phi40.0'] -13:52:44,787 numba.core.byteflow DEBUG dispatch pc=42, inst=LOAD_FAST(arg=6, lineno=4801) -13:52:44,787 numba.core.byteflow DEBUG stack [] -13:52:44,787 numba.core.byteflow DEBUG dispatch pc=44, inst=POP_JUMP_FORWARD_IF_NONE(arg=2, lineno=4801) -13:52:44,787 numba.core.byteflow DEBUG stack ['$lit_step42.1'] -13:52:44,787 numba.core.byteflow DEBUG end state. edges=[Edge(pc=46, stack=(), blockstack=(), npush=0), Edge(pc=50, stack=(), blockstack=(), npush=0)] -13:52:44,787 numba.core.byteflow DEBUG pending: deque([State(pc_initial=40 nstack_initial=1), State(pc_initial=46 nstack_initial=0), State(pc_initial=50 nstack_initial=0)]) -13:52:44,787 numba.core.byteflow DEBUG pending: deque([State(pc_initial=46 nstack_initial=0), State(pc_initial=50 nstack_initial=0)]) -13:52:44,787 numba.core.byteflow DEBUG stack: [] -13:52:44,788 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=46 nstack_initial=0) -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=46, inst=LOAD_FAST(arg=6, lineno=4801) -13:52:44,788 numba.core.byteflow DEBUG stack [] -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=48, inst=JUMP_FORWARD(arg=1, lineno=4801) -13:52:44,788 numba.core.byteflow DEBUG stack ['$lit_step46.0'] -13:52:44,788 numba.core.byteflow DEBUG end state. edges=[Edge(pc=52, stack=('$lit_step46.0',), blockstack=(), npush=0)] -13:52:44,788 numba.core.byteflow DEBUG pending: deque([State(pc_initial=50 nstack_initial=0), State(pc_initial=52 nstack_initial=1)]) -13:52:44,788 numba.core.byteflow DEBUG stack: [] -13:52:44,788 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=50 nstack_initial=0) -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_CONST(arg=1, lineno=4801) -13:52:44,788 numba.core.byteflow DEBUG stack [] -13:52:44,788 numba.core.byteflow DEBUG end state. edges=[Edge(pc=52, stack=('$const50.0',), blockstack=(), npush=0)] -13:52:44,788 numba.core.byteflow DEBUG pending: deque([State(pc_initial=52 nstack_initial=1), State(pc_initial=52 nstack_initial=1)]) -13:52:44,788 numba.core.byteflow DEBUG stack: ['$phi52.0'] -13:52:44,788 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=52 nstack_initial=1) -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=52, inst=STORE_FAST(arg=7, lineno=4801) -13:52:44,788 numba.core.byteflow DEBUG stack ['$phi52.0'] -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=54, inst=LOAD_FAST(arg=5, lineno=4802) -13:52:44,788 numba.core.byteflow DEBUG stack [] -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=56, inst=POP_JUMP_FORWARD_IF_NOT_NONE(arg=5, lineno=4802) -13:52:44,788 numba.core.byteflow DEBUG stack ['$lit_stop54.1'] -13:52:44,788 numba.core.byteflow DEBUG end state. edges=[Edge(pc=58, stack=(), blockstack=(), npush=0), Edge(pc=68, stack=(), blockstack=(), npush=0)] -13:52:44,788 numba.core.byteflow DEBUG pending: deque([State(pc_initial=52 nstack_initial=1), State(pc_initial=58 nstack_initial=0), State(pc_initial=68 nstack_initial=0)]) -13:52:44,788 numba.core.byteflow DEBUG pending: deque([State(pc_initial=58 nstack_initial=0), State(pc_initial=68 nstack_initial=0)]) -13:52:44,788 numba.core.byteflow DEBUG stack: [] -13:52:44,788 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=58 nstack_initial=0) -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=58, inst=LOAD_CONST(arg=2, lineno=4803) -13:52:44,788 numba.core.byteflow DEBUG stack [] -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=60, inst=LOAD_FAST(arg=4, lineno=4803) -13:52:44,788 numba.core.byteflow DEBUG stack ['$const58.0'] -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=62, inst=STORE_FAST(arg=9, lineno=4803) -13:52:44,788 numba.core.byteflow DEBUG stack ['$const58.0', '$lit_start60.1'] -13:52:44,788 numba.core.byteflow DEBUG dispatch pc=64, inst=STORE_FAST(arg=8, lineno=4803) -13:52:44,788 numba.core.byteflow DEBUG stack ['$const58.0'] -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=66, inst=JUMP_FORWARD(arg=4, lineno=4803) -13:52:44,789 numba.core.byteflow DEBUG stack [] -13:52:44,789 numba.core.byteflow DEBUG end state. edges=[Edge(pc=76, stack=(), blockstack=(), npush=0)] -13:52:44,789 numba.core.byteflow DEBUG pending: deque([State(pc_initial=68 nstack_initial=0), State(pc_initial=76 nstack_initial=0)]) -13:52:44,789 numba.core.byteflow DEBUG stack: [] -13:52:44,789 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=68 nstack_initial=0) -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=68, inst=LOAD_FAST(arg=4, lineno=4805) -13:52:44,789 numba.core.byteflow DEBUG stack [] -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=70, inst=LOAD_FAST(arg=5, lineno=4805) -13:52:44,789 numba.core.byteflow DEBUG stack ['$lit_start68.0'] -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=72, inst=STORE_FAST(arg=9, lineno=4805) -13:52:44,789 numba.core.byteflow DEBUG stack ['$lit_start68.0', '$lit_stop70.1'] -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=74, inst=STORE_FAST(arg=8, lineno=4805) -13:52:44,789 numba.core.byteflow DEBUG stack ['$lit_start68.0'] -13:52:44,789 numba.core.byteflow DEBUG end state. edges=[Edge(pc=76, stack=(), blockstack=(), npush=0)] -13:52:44,789 numba.core.byteflow DEBUG pending: deque([State(pc_initial=76 nstack_initial=0), State(pc_initial=76 nstack_initial=0)]) -13:52:44,789 numba.core.byteflow DEBUG stack: [] -13:52:44,789 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=76 nstack_initial=0) -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=76, inst=LOAD_FAST(arg=7, lineno=4807) -13:52:44,789 numba.core.byteflow DEBUG stack [] -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_CONST(arg=2, lineno=4807) -13:52:44,789 numba.core.byteflow DEBUG stack ['$_step76.0'] -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=80, inst=COMPARE_OP(arg=2, lineno=4807) -13:52:44,789 numba.core.byteflow DEBUG stack ['$_step76.0', '$const78.1'] -13:52:44,789 numba.core.byteflow DEBUG dispatch pc=86, inst=POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=4807) -13:52:44,789 numba.core.byteflow DEBUG stack ['$80compare_op.2'] -13:52:44,789 numba.core.byteflow DEBUG end state. edges=[Edge(pc=88, stack=(), blockstack=(), npush=0), Edge(pc=118, stack=(), blockstack=(), npush=0)] -13:52:44,789 numba.core.byteflow DEBUG pending: deque([State(pc_initial=76 nstack_initial=0), State(pc_initial=88 nstack_initial=0), State(pc_initial=118 nstack_initial=0)]) -13:52:44,789 numba.core.byteflow DEBUG pending: deque([State(pc_initial=88 nstack_initial=0), State(pc_initial=118 nstack_initial=0)]) -13:52:44,789 numba.core.byteflow DEBUG stack: [] -13:52:44,789 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=88 nstack_initial=0) -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=88, inst=LOAD_GLOBAL(arg=1, lineno=4808) -13:52:44,790 numba.core.byteflow DEBUG stack [] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=100, inst=LOAD_CONST(arg=3, lineno=4808) -13:52:44,790 numba.core.byteflow DEBUG stack ['$null$88.1', '$88load_global.0'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=102, inst=PRECALL(arg=1, lineno=4808) -13:52:44,790 numba.core.byteflow DEBUG stack ['$null$88.1', '$88load_global.0', '$const100.2'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=106, inst=CALL(arg=1, lineno=4808) -13:52:44,790 numba.core.byteflow DEBUG stack ['$null$88.1', '$88load_global.0', '$const100.2'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=116, inst=RAISE_VARARGS(arg=1, lineno=4808) -13:52:44,790 numba.core.byteflow DEBUG stack ['$106call.3'] -13:52:44,790 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,790 numba.core.byteflow DEBUG pending: deque([State(pc_initial=118 nstack_initial=0)]) -13:52:44,790 numba.core.byteflow DEBUG stack: [] -13:52:44,790 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=118 nstack_initial=0) -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_FAST(arg=9, lineno=4810) -13:52:44,790 numba.core.byteflow DEBUG stack [] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=120, inst=LOAD_FAST(arg=8, lineno=4810) -13:52:44,790 numba.core.byteflow DEBUG stack ['$_stop118.0'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=122, inst=BINARY_OP(arg=10, lineno=4810) -13:52:44,790 numba.core.byteflow DEBUG stack ['$_stop118.0', '$_start120.1'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=126, inst=LOAD_FAST(arg=7, lineno=4810) -13:52:44,790 numba.core.byteflow DEBUG stack ['$binop_sub122.2'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=128, inst=BINARY_OP(arg=11, lineno=4810) -13:52:44,790 numba.core.byteflow DEBUG stack ['$binop_sub122.2', '$_step126.3'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=132, inst=STORE_FAST(arg=10, lineno=4810) -13:52:44,790 numba.core.byteflow DEBUG stack ['$binop_truediv128.4'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=134, inst=LOAD_GLOBAL(arg=3, lineno=4811) -13:52:44,790 numba.core.byteflow DEBUG stack [] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=146, inst=LOAD_GLOBAL(arg=5, lineno=4811) -13:52:44,790 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5'] -13:52:44,790 numba.core.byteflow DEBUG dispatch pc=158, inst=LOAD_ATTR(arg=3, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5', '$null$146.8', '$146load_global.7'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=168, inst=LOAD_FAST(arg=10, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5', '$null$146.8', '$158load_attr.9'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=170, inst=LOAD_ATTR(arg=4, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5', '$null$146.8', '$158load_attr.9', '$nitems_c168.10'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=180, inst=PRECALL(arg=1, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5', '$null$146.8', '$158load_attr.9', '$170load_attr.11'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=184, inst=CALL(arg=1, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5', '$null$146.8', '$158load_attr.9', '$170load_attr.11'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=194, inst=PRECALL(arg=1, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5', '$184call.12'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=198, inst=CALL(arg=1, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$134.6', '$134load_global.5', '$184call.12'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=208, inst=STORE_FAST(arg=11, lineno=4811) -13:52:44,791 numba.core.byteflow DEBUG stack ['$198call.13'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=210, inst=LOAD_DEREF(arg=21, lineno=4814) -13:52:44,791 numba.core.byteflow DEBUG stack [] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=212, inst=LOAD_CONST(arg=4, lineno=4814) -13:52:44,791 numba.core.byteflow DEBUG stack ['$210load_deref.14'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=214, inst=IS_OP(arg=0, lineno=4814) -13:52:44,791 numba.core.byteflow DEBUG stack ['$210load_deref.14', '$const212.15'] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=216, inst=POP_JUMP_FORWARD_IF_FALSE(arg=69, lineno=4814) -13:52:44,791 numba.core.byteflow DEBUG stack ['$214is_op.16'] -13:52:44,791 numba.core.byteflow DEBUG end state. edges=[Edge(pc=218, stack=(), blockstack=(), npush=0), Edge(pc=356, stack=(), blockstack=(), npush=0)] -13:52:44,791 numba.core.byteflow DEBUG pending: deque([State(pc_initial=218 nstack_initial=0), State(pc_initial=356 nstack_initial=0)]) -13:52:44,791 numba.core.byteflow DEBUG stack: [] -13:52:44,791 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=218 nstack_initial=0) -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=218, inst=LOAD_GLOBAL(arg=3, lineno=4815) -13:52:44,791 numba.core.byteflow DEBUG stack [] -13:52:44,791 numba.core.byteflow DEBUG dispatch pc=230, inst=LOAD_GLOBAL(arg=5, lineno=4815) -13:52:44,791 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=242, inst=LOAD_ATTR(arg=3, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0', '$null$230.3', '$230load_global.2'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=252, inst=LOAD_FAST(arg=10, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0', '$null$230.3', '$242load_attr.4'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=254, inst=LOAD_ATTR(arg=5, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0', '$null$230.3', '$242load_attr.4', '$nitems_c252.5'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=264, inst=PRECALL(arg=1, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0', '$null$230.3', '$242load_attr.4', '$254load_attr.6'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=268, inst=CALL(arg=1, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0', '$null$230.3', '$242load_attr.4', '$254load_attr.6'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=278, inst=PRECALL(arg=1, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0', '$268call.7'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=282, inst=CALL(arg=1, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$218.1', '$218load_global.0', '$268call.7'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=292, inst=STORE_FAST(arg=12, lineno=4815) -13:52:44,792 numba.core.byteflow DEBUG stack ['$282call.8'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=294, inst=LOAD_GLOBAL(arg=13, lineno=4816) -13:52:44,792 numba.core.byteflow DEBUG stack [] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=306, inst=LOAD_GLOBAL(arg=15, lineno=4816) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=318, inst=LOAD_FAST(arg=12, lineno=4816) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9', '$null$306.12', '$306load_global.11'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=320, inst=LOAD_FAST(arg=11, lineno=4816) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9', '$null$306.12', '$306load_global.11', '$nitems_i318.13'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=322, inst=PRECALL(arg=2, lineno=4816) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9', '$null$306.12', '$306load_global.11', '$nitems_i318.13', '$nitems_r320.14'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=326, inst=CALL(arg=2, lineno=4816) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9', '$null$306.12', '$306load_global.11', '$nitems_i318.13', '$nitems_r320.14'] -13:52:44,792 numba.core.byteflow DEBUG dispatch pc=336, inst=LOAD_CONST(arg=2, lineno=4816) -13:52:44,792 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9', '$326call.15'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=338, inst=PRECALL(arg=2, lineno=4816) -13:52:44,793 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9', '$326call.15', '$const336.16'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=342, inst=CALL(arg=2, lineno=4816) -13:52:44,793 numba.core.byteflow DEBUG stack ['$null$294.10', '$294load_global.9', '$326call.15', '$const336.16'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=352, inst=STORE_FAST(arg=13, lineno=4816) -13:52:44,793 numba.core.byteflow DEBUG stack ['$342call.17'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=354, inst=JUMP_FORWARD(arg=16, lineno=4816) -13:52:44,793 numba.core.byteflow DEBUG stack [] -13:52:44,793 numba.core.byteflow DEBUG end state. edges=[Edge(pc=388, stack=(), blockstack=(), npush=0)] -13:52:44,793 numba.core.byteflow DEBUG pending: deque([State(pc_initial=356 nstack_initial=0), State(pc_initial=388 nstack_initial=0)]) -13:52:44,793 numba.core.byteflow DEBUG stack: [] -13:52:44,793 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=356 nstack_initial=0) -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=356, inst=LOAD_GLOBAL(arg=13, lineno=4818) -13:52:44,793 numba.core.byteflow DEBUG stack [] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=368, inst=LOAD_FAST(arg=11, lineno=4818) -13:52:44,793 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=370, inst=LOAD_CONST(arg=2, lineno=4818) -13:52:44,793 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$nitems_r368.2'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=372, inst=PRECALL(arg=2, lineno=4818) -13:52:44,793 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$nitems_r368.2', '$const370.3'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=376, inst=CALL(arg=2, lineno=4818) -13:52:44,793 numba.core.byteflow DEBUG stack ['$null$356.1', '$356load_global.0', '$nitems_r368.2', '$const370.3'] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=386, inst=STORE_FAST(arg=13, lineno=4818) -13:52:44,793 numba.core.byteflow DEBUG stack ['$376call.4'] -13:52:44,793 numba.core.byteflow DEBUG end state. edges=[Edge(pc=388, stack=(), blockstack=(), npush=0)] -13:52:44,793 numba.core.byteflow DEBUG pending: deque([State(pc_initial=388 nstack_initial=0), State(pc_initial=388 nstack_initial=0)]) -13:52:44,793 numba.core.byteflow DEBUG stack: [] -13:52:44,793 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=388 nstack_initial=0) -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=388, inst=LOAD_GLOBAL(arg=17, lineno=4819) -13:52:44,793 numba.core.byteflow DEBUG stack [] -13:52:44,793 numba.core.byteflow DEBUG dispatch pc=400, inst=LOAD_ATTR(arg=9, lineno=4819) -13:52:44,793 numba.core.byteflow DEBUG stack ['$null$388.1', '$388load_global.0'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=410, inst=LOAD_FAST(arg=13, lineno=4819) -13:52:44,794 numba.core.byteflow DEBUG stack ['$null$388.1', '$400load_attr.2'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=412, inst=LOAD_DEREF(arg=20, lineno=4819) -13:52:44,794 numba.core.byteflow DEBUG stack ['$null$388.1', '$400load_attr.2', '$nitems410.3'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=414, inst=PRECALL(arg=2, lineno=4819) -13:52:44,794 numba.core.byteflow DEBUG stack ['$null$388.1', '$400load_attr.2', '$nitems410.3', '$412load_deref.4'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=418, inst=CALL(arg=2, lineno=4819) -13:52:44,794 numba.core.byteflow DEBUG stack ['$null$388.1', '$400load_attr.2', '$nitems410.3', '$412load_deref.4'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=428, inst=STORE_FAST(arg=14, lineno=4819) -13:52:44,794 numba.core.byteflow DEBUG stack ['$418call.5'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=430, inst=LOAD_FAST(arg=8, lineno=4820) -13:52:44,794 numba.core.byteflow DEBUG stack [] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=432, inst=STORE_FAST(arg=15, lineno=4820) -13:52:44,794 numba.core.byteflow DEBUG stack ['$_start430.6'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=434, inst=LOAD_GLOBAL(arg=21, lineno=4821) -13:52:44,794 numba.core.byteflow DEBUG stack [] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=446, inst=LOAD_FAST(arg=13, lineno=4821) -13:52:44,794 numba.core.byteflow DEBUG stack ['$null$434.8', '$434load_global.7'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=448, inst=PRECALL(arg=1, lineno=4821) -13:52:44,794 numba.core.byteflow DEBUG stack ['$null$434.8', '$434load_global.7', '$nitems446.9'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=452, inst=CALL(arg=1, lineno=4821) -13:52:44,794 numba.core.byteflow DEBUG stack ['$null$434.8', '$434load_global.7', '$nitems446.9'] -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=462, inst=GET_ITER(arg=None, lineno=4821) -13:52:44,794 numba.core.byteflow DEBUG stack ['$452call.10'] -13:52:44,794 numba.core.byteflow DEBUG end state. edges=[Edge(pc=464, stack=('$462get_iter.11',), blockstack=(), npush=0)] -13:52:44,794 numba.core.byteflow DEBUG pending: deque([State(pc_initial=388 nstack_initial=0), State(pc_initial=464 nstack_initial=1)]) -13:52:44,794 numba.core.byteflow DEBUG pending: deque([State(pc_initial=464 nstack_initial=1)]) -13:52:44,794 numba.core.byteflow DEBUG stack: ['$phi464.0'] -13:52:44,794 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=464 nstack_initial=1) -13:52:44,794 numba.core.byteflow DEBUG dispatch pc=464, inst=FOR_ITER(arg=13, lineno=4821) -13:52:44,794 numba.core.byteflow DEBUG stack ['$phi464.0'] -13:52:44,794 numba.core.byteflow DEBUG end state. edges=[Edge(pc=492, stack=(), blockstack=(), npush=0), Edge(pc=466, stack=('$phi464.0', '$464for_iter.2'), blockstack=(), npush=0)] -13:52:44,795 numba.core.byteflow DEBUG pending: deque([State(pc_initial=492 nstack_initial=0), State(pc_initial=466 nstack_initial=2)]) -13:52:44,795 numba.core.byteflow DEBUG stack: [] -13:52:44,795 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=492 nstack_initial=0) -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=492, inst=LOAD_FAST(arg=14, lineno=4823) -13:52:44,795 numba.core.byteflow DEBUG stack [] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=494, inst=RETURN_VALUE(arg=None, lineno=4823) -13:52:44,795 numba.core.byteflow DEBUG stack ['$arr492.0'] -13:52:44,795 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,795 numba.core.byteflow DEBUG pending: deque([State(pc_initial=466 nstack_initial=2)]) -13:52:44,795 numba.core.byteflow DEBUG stack: ['$phi466.0', '$phi466.1'] -13:52:44,795 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=466 nstack_initial=2) -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=466, inst=STORE_FAST(arg=16, lineno=4821) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$phi466.1'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=468, inst=LOAD_FAST(arg=15, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=470, inst=LOAD_FAST(arg=16, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$val468.2'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=472, inst=LOAD_FAST(arg=7, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$val468.2', '$i470.3'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=474, inst=BINARY_OP(arg=5, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$val468.2', '$i470.3', '$_step472.4'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=478, inst=BINARY_OP(arg=0, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$val468.2', '$binop_mul474.5'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=482, inst=LOAD_FAST(arg=14, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$binop_add478.6'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=484, inst=LOAD_FAST(arg=16, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$binop_add478.6', '$arr482.7'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=486, inst=STORE_SUBSCR(arg=None, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0', '$binop_add478.6', '$arr482.7', '$i484.8'] -13:52:44,795 numba.core.byteflow DEBUG dispatch pc=490, inst=JUMP_BACKWARD(arg=14, lineno=4822) -13:52:44,795 numba.core.byteflow DEBUG stack ['$phi466.0'] -13:52:44,795 numba.core.byteflow DEBUG end state. edges=[Edge(pc=464, stack=('$phi466.0',), blockstack=(), npush=0)] -13:52:44,795 numba.core.byteflow DEBUG pending: deque([State(pc_initial=464 nstack_initial=1)]) -13:52:44,796 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,796 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=10 nstack_initial=0): set(), - State(pc_initial=14 nstack_initial=0): set(), - State(pc_initial=16 nstack_initial=1): {'$phi16.0'}, - State(pc_initial=22 nstack_initial=0): set(), - State(pc_initial=26 nstack_initial=0): set(), - State(pc_initial=28 nstack_initial=1): {'$phi28.0'}, - State(pc_initial=34 nstack_initial=0): set(), - State(pc_initial=38 nstack_initial=0): set(), - State(pc_initial=40 nstack_initial=1): {'$phi40.0'}, - State(pc_initial=46 nstack_initial=0): set(), - State(pc_initial=50 nstack_initial=0): set(), - State(pc_initial=52 nstack_initial=1): {'$phi52.0'}, - State(pc_initial=58 nstack_initial=0): set(), - State(pc_initial=68 nstack_initial=0): set(), - State(pc_initial=76 nstack_initial=0): set(), - State(pc_initial=88 nstack_initial=0): set(), - State(pc_initial=118 nstack_initial=0): set(), - State(pc_initial=218 nstack_initial=0): set(), - State(pc_initial=356 nstack_initial=0): set(), - State(pc_initial=388 nstack_initial=0): set(), - State(pc_initial=464 nstack_initial=1): {'$phi464.0'}, - State(pc_initial=466 nstack_initial=2): {'$phi466.1'}, - State(pc_initial=492 nstack_initial=0): set()}) -13:52:44,796 numba.core.byteflow DEBUG defmap: {'$phi16.0': State(pc_initial=14 nstack_initial=0), - '$phi28.0': State(pc_initial=26 nstack_initial=0), - '$phi40.0': State(pc_initial=38 nstack_initial=0), - '$phi464.0': State(pc_initial=388 nstack_initial=0), - '$phi466.1': State(pc_initial=464 nstack_initial=1), - '$phi52.0': State(pc_initial=46 nstack_initial=0)} -13:52:44,796 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi16.0': {('$10load_deref.0', - State(pc_initial=10 nstack_initial=0)), - ('$start14.0', - State(pc_initial=14 nstack_initial=0))}, - '$phi28.0': {('$22load_deref.0', - State(pc_initial=22 nstack_initial=0)), - ('$stop26.0', State(pc_initial=26 nstack_initial=0))}, - '$phi40.0': {('$34load_deref.0', - State(pc_initial=34 nstack_initial=0)), - ('$step38.0', State(pc_initial=38 nstack_initial=0))}, - '$phi464.0': {('$462get_iter.11', - State(pc_initial=388 nstack_initial=0)), - ('$phi466.0', - State(pc_initial=466 nstack_initial=2))}, - '$phi466.0': {('$phi464.0', - State(pc_initial=464 nstack_initial=1))}, - '$phi466.1': {('$464for_iter.2', - State(pc_initial=464 nstack_initial=1))}, - '$phi52.0': {('$const50.0', State(pc_initial=50 nstack_initial=0)), - ('$lit_step46.0', - State(pc_initial=46 nstack_initial=0))}}) -13:52:44,796 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi16.0': {('$10load_deref.0', - State(pc_initial=10 nstack_initial=0)), - ('$start14.0', - State(pc_initial=14 nstack_initial=0))}, - '$phi28.0': {('$22load_deref.0', - State(pc_initial=22 nstack_initial=0)), - ('$stop26.0', State(pc_initial=26 nstack_initial=0))}, - '$phi40.0': {('$34load_deref.0', - State(pc_initial=34 nstack_initial=0)), - ('$step38.0', State(pc_initial=38 nstack_initial=0))}, - '$phi464.0': {('$462get_iter.11', - State(pc_initial=388 nstack_initial=0)), - ('$phi464.0', - State(pc_initial=464 nstack_initial=1))}, - '$phi466.0': {('$462get_iter.11', - State(pc_initial=388 nstack_initial=0))}, - '$phi466.1': {('$464for_iter.2', - State(pc_initial=464 nstack_initial=1))}, - '$phi52.0': {('$const50.0', State(pc_initial=50 nstack_initial=0)), - ('$lit_step46.0', - State(pc_initial=46 nstack_initial=0))}}) -13:52:44,796 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi16.0': {('$10load_deref.0', - State(pc_initial=10 nstack_initial=0)), - ('$start14.0', - State(pc_initial=14 nstack_initial=0))}, - '$phi28.0': {('$22load_deref.0', - State(pc_initial=22 nstack_initial=0)), - ('$stop26.0', State(pc_initial=26 nstack_initial=0))}, - '$phi40.0': {('$34load_deref.0', - State(pc_initial=34 nstack_initial=0)), - ('$step38.0', State(pc_initial=38 nstack_initial=0))}, - '$phi464.0': {('$462get_iter.11', - State(pc_initial=388 nstack_initial=0))}, - '$phi466.0': {('$462get_iter.11', - State(pc_initial=388 nstack_initial=0))}, - '$phi466.1': {('$464for_iter.2', - State(pc_initial=464 nstack_initial=1))}, - '$phi52.0': {('$const50.0', State(pc_initial=50 nstack_initial=0)), - ('$lit_step46.0', - State(pc_initial=46 nstack_initial=0))}}) -13:52:44,797 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi16.0': {('$10load_deref.0', - State(pc_initial=10 nstack_initial=0)), - ('$start14.0', - State(pc_initial=14 nstack_initial=0))}, - '$phi28.0': {('$22load_deref.0', - State(pc_initial=22 nstack_initial=0)), - ('$stop26.0', State(pc_initial=26 nstack_initial=0))}, - '$phi40.0': {('$34load_deref.0', - State(pc_initial=34 nstack_initial=0)), - ('$step38.0', State(pc_initial=38 nstack_initial=0))}, - '$phi464.0': {('$462get_iter.11', - State(pc_initial=388 nstack_initial=0))}, - '$phi466.0': {('$462get_iter.11', - State(pc_initial=388 nstack_initial=0))}, - '$phi466.1': {('$464for_iter.2', - State(pc_initial=464 nstack_initial=1))}, - '$phi52.0': {('$const50.0', State(pc_initial=50 nstack_initial=0)), - ('$lit_step46.0', - State(pc_initial=46 nstack_initial=0))}}) -13:52:44,797 numba.core.byteflow DEBUG keep phismap: {'$phi16.0': {('$10load_deref.0', State(pc_initial=10 nstack_initial=0)), - ('$start14.0', State(pc_initial=14 nstack_initial=0))}, - '$phi28.0': {('$22load_deref.0', State(pc_initial=22 nstack_initial=0)), - ('$stop26.0', State(pc_initial=26 nstack_initial=0))}, - '$phi40.0': {('$34load_deref.0', State(pc_initial=34 nstack_initial=0)), - ('$step38.0', State(pc_initial=38 nstack_initial=0))}, - '$phi464.0': {('$462get_iter.11', State(pc_initial=388 nstack_initial=0))}, - '$phi466.1': {('$464for_iter.2', State(pc_initial=464 nstack_initial=1))}, - '$phi52.0': {('$const50.0', State(pc_initial=50 nstack_initial=0)), - ('$lit_step46.0', State(pc_initial=46 nstack_initial=0))}} -13:52:44,797 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=10 nstack_initial=0): {'$phi16.0': '$10load_deref.0'}, - State(pc_initial=14 nstack_initial=0): {'$phi16.0': '$start14.0'}, - State(pc_initial=22 nstack_initial=0): {'$phi28.0': '$22load_deref.0'}, - State(pc_initial=26 nstack_initial=0): {'$phi28.0': '$stop26.0'}, - State(pc_initial=34 nstack_initial=0): {'$phi40.0': '$34load_deref.0'}, - State(pc_initial=38 nstack_initial=0): {'$phi40.0': '$step38.0'}, - State(pc_initial=46 nstack_initial=0): {'$phi52.0': '$lit_step46.0'}, - State(pc_initial=50 nstack_initial=0): {'$phi52.0': '$const50.0'}, - State(pc_initial=388 nstack_initial=0): {'$phi464.0': '$462get_iter.11'}, - State(pc_initial=464 nstack_initial=1): {'$phi466.1': '$464for_iter.2'}}) -13:52:44,797 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'res': '$6load_deref.0'}), (8, {'pred': '$6load_deref.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={10: (), 14: ()}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=10 nstack_initial=0): -AdaptBlockInfo(insts=((10, {'res': '$10load_deref.0'}), (12, {})), outgoing_phis={'$phi16.0': '$10load_deref.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={16: ('$10load_deref.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=14 nstack_initial=0): -AdaptBlockInfo(insts=((14, {'res': '$start14.0'}),), outgoing_phis={'$phi16.0': '$start14.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={16: ('$start14.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=16 nstack_initial=1): -AdaptBlockInfo(insts=((16, {'value': '$phi16.0'}), (18, {'res': '$18load_deref.1'}), (20, {'pred': '$18load_deref.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={22: (), 26: ()}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=22 nstack_initial=0): -AdaptBlockInfo(insts=((22, {'res': '$22load_deref.0'}), (24, {})), outgoing_phis={'$phi28.0': '$22load_deref.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={28: ('$22load_deref.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=26 nstack_initial=0): -AdaptBlockInfo(insts=((26, {'res': '$stop26.0'}),), outgoing_phis={'$phi28.0': '$stop26.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={28: ('$stop26.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=28 nstack_initial=1): -AdaptBlockInfo(insts=((28, {'value': '$phi28.0'}), (30, {'res': '$30load_deref.1'}), (32, {'pred': '$30load_deref.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={34: (), 38: ()}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=34 nstack_initial=0): -AdaptBlockInfo(insts=((34, {'res': '$34load_deref.0'}), (36, {})), outgoing_phis={'$phi40.0': '$34load_deref.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={40: ('$34load_deref.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=38 nstack_initial=0): -AdaptBlockInfo(insts=((38, {'res': '$step38.0'}),), outgoing_phis={'$phi40.0': '$step38.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={40: ('$step38.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=40 nstack_initial=1): -AdaptBlockInfo(insts=((40, {'value': '$phi40.0'}), (42, {'res': '$lit_step42.1'}), (44, {'pred': '$lit_step42.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={46: (), 50: ()}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=46 nstack_initial=0): -AdaptBlockInfo(insts=((46, {'res': '$lit_step46.0'}), (48, {})), outgoing_phis={'$phi52.0': '$lit_step46.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={52: ('$lit_step46.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=50 nstack_initial=0): -AdaptBlockInfo(insts=((50, {'res': '$const50.0'}),), outgoing_phis={'$phi52.0': '$const50.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={52: ('$const50.0',)}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=52 nstack_initial=1): -AdaptBlockInfo(insts=((52, {'value': '$phi52.0'}), (54, {'res': '$lit_stop54.1'}), (56, {'pred': '$lit_stop54.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={58: (), 68: ()}) -13:52:44,797 numba.core.byteflow DEBUG block_infos State(pc_initial=58 nstack_initial=0): -AdaptBlockInfo(insts=((58, {'res': '$const58.0'}), (60, {'res': '$lit_start60.1'}), (62, {'value': '$lit_start60.1'}), (64, {'value': '$const58.0'}), (66, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={76: ()}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=68 nstack_initial=0): -AdaptBlockInfo(insts=((68, {'res': '$lit_start68.0'}), (70, {'res': '$lit_stop70.1'}), (72, {'value': '$lit_stop70.1'}), (74, {'value': '$lit_start68.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={76: ()}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=76 nstack_initial=0): -AdaptBlockInfo(insts=((76, {'res': '$_step76.0'}), (78, {'res': '$const78.1'}), (80, {'lhs': '$_step76.0', 'rhs': '$const78.1', 'res': '$80compare_op.2'}), (82, {}), (84, {}), (86, {'pred': '$80compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={88: (), 118: ()}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=88 nstack_initial=0): -AdaptBlockInfo(insts=((88, {'idx': 0, 'res': '$88load_global.0'}), (90, {}), (92, {}), (94, {}), (96, {}), (98, {}), (100, {'res': '$const100.2'}), (102, {}), (104, {}), (106, {'func': '$88load_global.0', 'args': ['$const100.2'], 'kw_names': None, 'res': '$106call.3'}), (108, {}), (110, {}), (112, {}), (114, {}), (116, {'exc': '$106call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=118 nstack_initial=0): -AdaptBlockInfo(insts=((118, {'res': '$_stop118.0'}), (120, {'res': '$_start120.1'}), (122, {'op': '-', 'lhs': '$_stop118.0', 'rhs': '$_start120.1', 'res': '$binop_sub122.2'}), (124, {}), (126, {'res': '$_step126.3'}), (128, {'op': '/', 'lhs': '$binop_sub122.2', 'rhs': '$_step126.3', 'res': '$binop_truediv128.4'}), (130, {}), (132, {'value': '$binop_truediv128.4'}), (134, {'idx': 1, 'res': '$134load_global.5'}), (136, {}), (138, {}), (140, {}), (142, {}), (144, {}), (146, {'idx': 2, 'res': '$146load_global.7'}), (148, {}), (150, {}), (152, {}), (154, {}), (156, {}), (158, {'item': '$146load_global.7', 'res': '$158load_attr.9'}), (160, {}), (162, {}), (164, {}), (166, {}), (168, {'res': '$nitems_c168.10'}), (170, {'item': '$nitems_c168.10', 'res': '$170load_attr.11'}), (172, {}), (174, {}), (176, {}), (178, {}), (180, {}), (182, {}), (184, {'func': '$158load_attr.9', 'args': ['$170load_attr.11'], 'kw_names': None, 'res': '$184call.12'}), (186, {}), (188, {}), (190, {}), (192, {}), (194, {}), (196, {}), (198, {'func': '$134load_global.5', 'args': ['$184call.12'], 'kw_names': None, 'res': '$198call.13'}), (200, {}), (202, {}), (204, {}), (206, {}), (208, {'value': '$198call.13'}), (210, {'res': '$210load_deref.14'}), (212, {'res': '$const212.15'}), (214, {'lhs': '$210load_deref.14', 'rhs': '$const212.15', 'res': '$214is_op.16'}), (216, {'pred': '$214is_op.16'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={218: (), 356: ()}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=218 nstack_initial=0): -AdaptBlockInfo(insts=((218, {'idx': 1, 'res': '$218load_global.0'}), (220, {}), (222, {}), (224, {}), (226, {}), (228, {}), (230, {'idx': 2, 'res': '$230load_global.2'}), (232, {}), (234, {}), (236, {}), (238, {}), (240, {}), (242, {'item': '$230load_global.2', 'res': '$242load_attr.4'}), (244, {}), (246, {}), (248, {}), (250, {}), (252, {'res': '$nitems_c252.5'}), (254, {'item': '$nitems_c252.5', 'res': '$254load_attr.6'}), (256, {}), (258, {}), (260, {}), (262, {}), (264, {}), (266, {}), (268, {'func': '$242load_attr.4', 'args': ['$254load_attr.6'], 'kw_names': None, 'res': '$268call.7'}), (270, {}), (272, {}), (274, {}), (276, {}), (278, {}), (280, {}), (282, {'func': '$218load_global.0', 'args': ['$268call.7'], 'kw_names': None, 'res': '$282call.8'}), (284, {}), (286, {}), (288, {}), (290, {}), (292, {'value': '$282call.8'}), (294, {'idx': 6, 'res': '$294load_global.9'}), (296, {}), (298, {}), (300, {}), (302, {}), (304, {}), (306, {'idx': 7, 'res': '$306load_global.11'}), (308, {}), (310, {}), (312, {}), (314, {}), (316, {}), (318, {'res': '$nitems_i318.13'}), (320, {'res': '$nitems_r320.14'}), (322, {}), (324, {}), (326, {'func': '$306load_global.11', 'args': ['$nitems_i318.13', '$nitems_r320.14'], 'kw_names': None, 'res': '$326call.15'}), (328, {}), (330, {}), (332, {}), (334, {}), (336, {'res': '$const336.16'}), (338, {}), (340, {}), (342, {'func': '$294load_global.9', 'args': ['$326call.15', '$const336.16'], 'kw_names': None, 'res': '$342call.17'}), (344, {}), (346, {}), (348, {}), (350, {}), (352, {'value': '$342call.17'}), (354, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={388: ()}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=356 nstack_initial=0): -AdaptBlockInfo(insts=((356, {'idx': 6, 'res': '$356load_global.0'}), (358, {}), (360, {}), (362, {}), (364, {}), (366, {}), (368, {'res': '$nitems_r368.2'}), (370, {'res': '$const370.3'}), (372, {}), (374, {}), (376, {'func': '$356load_global.0', 'args': ['$nitems_r368.2', '$const370.3'], 'kw_names': None, 'res': '$376call.4'}), (378, {}), (380, {}), (382, {}), (384, {}), (386, {'value': '$376call.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={388: ()}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=388 nstack_initial=0): -AdaptBlockInfo(insts=((388, {'idx': 8, 'res': '$388load_global.0'}), (390, {}), (392, {}), (394, {}), (396, {}), (398, {}), (400, {'item': '$388load_global.0', 'res': '$400load_attr.2'}), (402, {}), (404, {}), (406, {}), (408, {}), (410, {'res': '$nitems410.3'}), (412, {'res': '$412load_deref.4'}), (414, {}), (416, {}), (418, {'func': '$400load_attr.2', 'args': ['$nitems410.3', '$412load_deref.4'], 'kw_names': None, 'res': '$418call.5'}), (420, {}), (422, {}), (424, {}), (426, {}), (428, {'value': '$418call.5'}), (430, {'res': '$_start430.6'}), (432, {'value': '$_start430.6'}), (434, {'idx': 10, 'res': '$434load_global.7'}), (436, {}), (438, {}), (440, {}), (442, {}), (444, {}), (446, {'res': '$nitems446.9'}), (448, {}), (450, {}), (452, {'func': '$434load_global.7', 'args': ['$nitems446.9'], 'kw_names': None, 'res': '$452call.10'}), (454, {}), (456, {}), (458, {}), (460, {}), (462, {'value': '$452call.10', 'res': '$462get_iter.11'})), outgoing_phis={'$phi464.0': '$462get_iter.11'}, blockstack=(), active_try_block=None, outgoing_edgepushed={464: ('$462get_iter.11',)}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=464 nstack_initial=1): -AdaptBlockInfo(insts=((464, {'iterator': '$phi464.0', 'pair': '$464for_iter.1', 'indval': '$464for_iter.2', 'pred': '$464for_iter.3'}),), outgoing_phis={'$phi466.1': '$464for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={492: (), 466: ('$phi464.0', '$464for_iter.2')}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=466 nstack_initial=2): -AdaptBlockInfo(insts=((466, {'value': '$phi466.1'}), (468, {'res': '$val468.2'}), (470, {'res': '$i470.3'}), (472, {'res': '$_step472.4'}), (474, {'op': '*', 'lhs': '$i470.3', 'rhs': '$_step472.4', 'res': '$binop_mul474.5'}), (476, {}), (478, {'op': '+', 'lhs': '$val468.2', 'rhs': '$binop_mul474.5', 'res': '$binop_add478.6'}), (480, {}), (482, {'res': '$arr482.7'}), (484, {'res': '$i484.8'}), (486, {'target': '$arr482.7', 'index': '$i484.8', 'value': '$binop_add478.6'}), (488, {}), (490, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={464: ('$phi466.0',)}) -13:52:44,798 numba.core.byteflow DEBUG block_infos State(pc_initial=492 nstack_initial=0): -AdaptBlockInfo(insts=((492, {'res': '$arr492.0'}), (494, {'retval': '$arr492.0', 'castval': '$494return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,800 numba.core.interpreter DEBUG label 0: - start = arg(0, name=start) ['start'] - stop = arg(1, name=stop) ['stop'] - step = arg(2, name=step) ['step'] - dtype = arg(3, name=dtype) ['dtype'] - $6load_deref.0 = freevar(start_value: None) ['$6load_deref.0'] - $constNone8 = const(NoneType, None) ['$constNone8'] - $maybeNone8 = $6load_deref.0 is not $constNone8 ['$6load_deref.0', '$constNone8', '$maybeNone8'] - $bool8 = global(bool: ) ['$bool8'] - $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) ['$bool8', '$maybeNone8', '$pred8'] - branch $pred8, 10, 14 ['$pred8'] -label 10: - $10load_deref.0 = freevar(start_value: None) ['$10load_deref.0'] - $phi16.0 = $10load_deref.0 ['$10load_deref.0', '$phi16.0'] - jump 16 [] -label 14: - $phi16.0 = start ['$phi16.0', 'start'] - jump 16 [] -label 16: - lit_start = $phi16.0 ['$phi16.0', 'lit_start'] - $18load_deref.1 = freevar(stop_value: None) ['$18load_deref.1'] - $constNone20 = const(NoneType, None) ['$constNone20'] - $maybeNone20 = $18load_deref.1 is not $constNone20 ['$18load_deref.1', '$constNone20', '$maybeNone20'] - $bool20 = global(bool: ) ['$bool20'] - $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) ['$bool20', '$maybeNone20', '$pred20'] - branch $pred20, 22, 26 ['$pred20'] -label 22: - $22load_deref.0 = freevar(stop_value: None) ['$22load_deref.0'] - $phi28.0 = $22load_deref.0 ['$22load_deref.0', '$phi28.0'] - jump 28 [] -label 26: - $phi28.0 = stop ['$phi28.0', 'stop'] - jump 28 [] -label 28: - lit_stop = $phi28.0 ['$phi28.0', 'lit_stop'] - $30load_deref.1 = freevar(step_value: None) ['$30load_deref.1'] - $constNone32 = const(NoneType, None) ['$constNone32'] - $maybeNone32 = $30load_deref.1 is not $constNone32 ['$30load_deref.1', '$constNone32', '$maybeNone32'] - $bool32 = global(bool: ) ['$bool32'] - $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) ['$bool32', '$maybeNone32', '$pred32'] - branch $pred32, 34, 38 ['$pred32'] -label 34: - $34load_deref.0 = freevar(step_value: None) ['$34load_deref.0'] - $phi40.0 = $34load_deref.0 ['$34load_deref.0', '$phi40.0'] - jump 40 [] -label 38: - $phi40.0 = step ['$phi40.0', 'step'] - jump 40 [] -label 40: - lit_step = $phi40.0 ['$phi40.0', 'lit_step'] - $constNone44 = const(NoneType, None) ['$constNone44'] - $maybeNone44 = lit_step is not $constNone44 ['$constNone44', '$maybeNone44', 'lit_step'] - $bool44 = global(bool: ) ['$bool44'] - $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) ['$bool44', '$maybeNone44', '$pred44'] - branch $pred44, 46, 50 ['$pred44'] -label 46: - $phi52.0 = lit_step ['$phi52.0', 'lit_step'] - jump 52 [] -label 50: - $const50.0 = const(int, 1) ['$const50.0'] - $phi52.0 = $const50.0 ['$const50.0', '$phi52.0'] - jump 52 [] -label 52: - _step = $phi52.0 ['$phi52.0', '_step'] - $constNone56 = const(NoneType, None) ['$constNone56'] - $maybeNone56 = lit_stop is $constNone56 ['$constNone56', '$maybeNone56', 'lit_stop'] - $bool56 = global(bool: ) ['$bool56'] - $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) ['$bool56', '$maybeNone56', '$pred56'] - branch $pred56, 58, 68 ['$pred56'] -label 58: - $const58.0 = const(int, 0) ['$const58.0'] - _stop = lit_start ['_stop', 'lit_start'] - _start = $const58.0 ['$const58.0', '_start'] - jump 76 [] -label 68: - _stop = lit_stop ['_stop', 'lit_stop'] - _start = lit_start ['_start', 'lit_start'] - jump 76 [] -label 76: - $const78.1 = const(int, 0) ['$const78.1'] - $80compare_op.2 = _step == $const78.1 ['$80compare_op.2', '$const78.1', '_step'] - bool86 = global(bool: ) ['bool86'] - $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) ['$80compare_op.2', '$86pred', 'bool86'] - branch $86pred, 88, 118 ['$86pred'] -label 88: - $88load_global.0 = global(ValueError: ) ['$88load_global.0'] - $const100.2 = const(str, Maximum allowed size exceeded) ['$const100.2'] - $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) ['$106call.3', '$88load_global.0', '$const100.2'] - raise $106call.3 ['$106call.3'] -label 118: - $binop_sub122.2 = _stop - _start ['$binop_sub122.2', '_start', '_stop'] - nitems_c = $binop_sub122.2 / _step ['$binop_sub122.2', '_step', 'nitems_c'] - $134load_global.5 = global(int: ) ['$134load_global.5'] - $146load_global.7 = global(math: ) ['$146load_global.7'] - $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) ['$146load_global.7', '$158load_attr.9'] - $170load_attr.11 = getattr(value=nitems_c, attr=real) ['$170load_attr.11', 'nitems_c'] - $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) ['$158load_attr.9', '$170load_attr.11', '$184call.12'] - nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) ['$134load_global.5', '$184call.12', 'nitems_r'] - $210load_deref.14 = freevar(use_complex: False) ['$210load_deref.14'] - $const212.15 = const(bool, True) ['$const212.15'] - $214is_op.16 = $210load_deref.14 is $const212.15 ['$210load_deref.14', '$214is_op.16', '$const212.15'] - bool216 = global(bool: ) ['bool216'] - $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) ['$214is_op.16', '$216pred', 'bool216'] - branch $216pred, 218, 356 ['$216pred'] -label 218: - $218load_global.0 = global(int: ) ['$218load_global.0'] - $230load_global.2 = global(math: ) ['$230load_global.2'] - $242load_attr.4 = getattr(value=$230load_global.2, attr=ceil) ['$230load_global.2', '$242load_attr.4'] - $254load_attr.6 = getattr(value=nitems_c, attr=imag) ['$254load_attr.6', 'nitems_c'] - $268call.7 = call $242load_attr.4($254load_attr.6, func=$242load_attr.4, args=[Var($254load_attr.6, arrayobj.py:4815)], kws=(), vararg=None, varkwarg=None, target=None) ['$242load_attr.4', '$254load_attr.6', '$268call.7'] - nitems_i = call $218load_global.0($268call.7, func=$218load_global.0, args=[Var($268call.7, arrayobj.py:4815)], kws=(), vararg=None, varkwarg=None, target=None) ['$218load_global.0', '$268call.7', 'nitems_i'] - $294load_global.9 = global(max: ) ['$294load_global.9'] - $306load_global.11 = global(min: ) ['$306load_global.11'] - $326call.15 = call $306load_global.11(nitems_i, nitems_r, func=$306load_global.11, args=[Var(nitems_i, arrayobj.py:4815), Var(nitems_r, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) ['$306load_global.11', '$326call.15', 'nitems_i', 'nitems_r'] - $const336.16 = const(int, 0) ['$const336.16'] - nitems = call $294load_global.9($326call.15, $const336.16, func=$294load_global.9, args=[Var($326call.15, arrayobj.py:4816), Var($const336.16, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) ['$294load_global.9', '$326call.15', '$const336.16', 'nitems'] - jump 388 [] -label 356: - $356load_global.0 = global(max: ) ['$356load_global.0'] - $const370.3 = const(int, 0) ['$const370.3'] - nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) ['$356load_global.0', '$const370.3', 'nitems', 'nitems_r'] - jump 388 [] -label 388: - $388load_global.0 = global(np: ) ['$388load_global.0'] - $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) ['$388load_global.0', '$400load_attr.2'] - $412load_deref.4 = freevar(true_dtype: int64) ['$412load_deref.4'] - arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) ['$400load_attr.2', '$412load_deref.4', 'arr', 'nitems'] - val = _start ['_start', 'val'] - $434load_global.7 = global(range: ) ['$434load_global.7'] - $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) ['$434load_global.7', '$452call.10', 'nitems'] - $462get_iter.11 = getiter(value=$452call.10) ['$452call.10', '$462get_iter.11'] - $phi464.0 = $462get_iter.11 ['$462get_iter.11', '$phi464.0'] - jump 464 [] -label 464: - $464for_iter.1 = iternext(value=$phi464.0) ['$464for_iter.1', '$phi464.0'] - $464for_iter.2 = pair_first(value=$464for_iter.1) ['$464for_iter.1', '$464for_iter.2'] - $464for_iter.3 = pair_second(value=$464for_iter.1) ['$464for_iter.1', '$464for_iter.3'] - $phi466.1 = $464for_iter.2 ['$464for_iter.2', '$phi466.1'] - branch $464for_iter.3, 466, 492 ['$464for_iter.3'] -label 466: - i = $phi466.1 ['$phi466.1', 'i'] - $binop_mul474.5 = i * _step ['$binop_mul474.5', '_step', 'i'] - $binop_add478.6 = val + $binop_mul474.5 ['$binop_add478.6', '$binop_mul474.5', 'val'] - arr[i] = $binop_add478.6 ['$binop_add478.6', 'arr', 'i'] - jump 464 [] -label 492: - $494return_value.1 = cast(value=arr) ['$494return_value.1', 'arr'] - return $494return_value.1 ['$494return_value.1'] - -13:52:44,813 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,813 numba.core.ssa DEBUG Running -13:52:44,813 numba.core.ssa DEBUG on stmt: start = arg(0, name=start) -13:52:44,814 numba.core.ssa DEBUG on stmt: stop = arg(1, name=stop) -13:52:44,814 numba.core.ssa DEBUG on stmt: step = arg(2, name=step) -13:52:44,814 numba.core.ssa DEBUG on stmt: dtype = arg(3, name=dtype) -13:52:44,814 numba.core.ssa DEBUG on stmt: $6load_deref.0 = freevar(start_value: None) -13:52:44,814 numba.core.ssa DEBUG on stmt: $constNone8 = const(NoneType, None) -13:52:44,814 numba.core.ssa DEBUG on stmt: $maybeNone8 = const(int, 0) -13:52:44,814 numba.core.ssa DEBUG on stmt: $bool8 = global(bool: ) -13:52:44,814 numba.core.ssa DEBUG on stmt: $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,814 numba.core.ssa DEBUG on stmt: jump 14 -13:52:44,814 numba.core.ssa DEBUG ==== SSA block analysis pass on 14 -13:52:44,814 numba.core.ssa DEBUG Running -13:52:44,814 numba.core.ssa DEBUG on stmt: $phi16.0 = start -13:52:44,814 numba.core.ssa DEBUG on stmt: jump 16 -13:52:44,814 numba.core.ssa DEBUG ==== SSA block analysis pass on 16 -13:52:44,814 numba.core.ssa DEBUG Running -13:52:44,814 numba.core.ssa DEBUG on stmt: lit_start = $phi16.0 -13:52:44,814 numba.core.ssa DEBUG on stmt: $18load_deref.1 = freevar(stop_value: None) -13:52:44,814 numba.core.ssa DEBUG on stmt: $constNone20 = const(NoneType, None) -13:52:44,814 numba.core.ssa DEBUG on stmt: $maybeNone20 = const(int, 0) -13:52:44,814 numba.core.ssa DEBUG on stmt: $bool20 = global(bool: ) -13:52:44,814 numba.core.ssa DEBUG on stmt: $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,814 numba.core.ssa DEBUG on stmt: jump 26 -13:52:44,814 numba.core.ssa DEBUG ==== SSA block analysis pass on 26 -13:52:44,814 numba.core.ssa DEBUG Running -13:52:44,814 numba.core.ssa DEBUG on stmt: $phi28.0 = stop -13:52:44,814 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,814 numba.core.ssa DEBUG ==== SSA block analysis pass on 28 -13:52:44,814 numba.core.ssa DEBUG Running -13:52:44,814 numba.core.ssa DEBUG on stmt: lit_stop = $phi28.0 -13:52:44,814 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(step_value: None) -13:52:44,814 numba.core.ssa DEBUG on stmt: $constNone32 = const(NoneType, None) -13:52:44,814 numba.core.ssa DEBUG on stmt: $maybeNone32 = const(int, 0) -13:52:44,814 numba.core.ssa DEBUG on stmt: $bool32 = global(bool: ) -13:52:44,815 numba.core.ssa DEBUG on stmt: $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,815 numba.core.ssa DEBUG on stmt: jump 38 -13:52:44,815 numba.core.ssa DEBUG ==== SSA block analysis pass on 38 -13:52:44,815 numba.core.ssa DEBUG Running -13:52:44,815 numba.core.ssa DEBUG on stmt: $phi40.0 = step -13:52:44,815 numba.core.ssa DEBUG on stmt: jump 40 -13:52:44,815 numba.core.ssa DEBUG ==== SSA block analysis pass on 40 -13:52:44,815 numba.core.ssa DEBUG Running -13:52:44,815 numba.core.ssa DEBUG on stmt: lit_step = $phi40.0 -13:52:44,815 numba.core.ssa DEBUG on stmt: $constNone44 = const(NoneType, None) -13:52:44,815 numba.core.ssa DEBUG on stmt: $maybeNone44 = lit_step is not $constNone44 -13:52:44,815 numba.core.ssa DEBUG on stmt: $bool44 = global(bool: ) -13:52:44,815 numba.core.ssa DEBUG on stmt: $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,815 numba.core.ssa DEBUG on stmt: branch $pred44, 46, 50 -13:52:44,815 numba.core.ssa DEBUG ==== SSA block analysis pass on 46 -13:52:44,815 numba.core.ssa DEBUG Running -13:52:44,815 numba.core.ssa DEBUG on stmt: $phi52.0 = lit_step -13:52:44,815 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,815 numba.core.ssa DEBUG ==== SSA block analysis pass on 50 -13:52:44,815 numba.core.ssa DEBUG Running -13:52:44,815 numba.core.ssa DEBUG on stmt: $const50.0 = const(int, 1) -13:52:44,815 numba.core.ssa DEBUG on stmt: $phi52.0 = $const50.0 -13:52:44,815 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,815 numba.core.ssa DEBUG ==== SSA block analysis pass on 52 -13:52:44,815 numba.core.ssa DEBUG Running -13:52:44,815 numba.core.ssa DEBUG on stmt: _step = $phi52.0 -13:52:44,815 numba.core.ssa DEBUG on stmt: $constNone56 = const(NoneType, None) -13:52:44,815 numba.core.ssa DEBUG on stmt: $maybeNone56 = lit_stop is $constNone56 -13:52:44,815 numba.core.ssa DEBUG on stmt: $bool56 = global(bool: ) -13:52:44,815 numba.core.ssa DEBUG on stmt: $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,815 numba.core.ssa DEBUG on stmt: branch $pred56, 58, 68 -13:52:44,815 numba.core.ssa DEBUG ==== SSA block analysis pass on 58 -13:52:44,815 numba.core.ssa DEBUG Running -13:52:44,816 numba.core.ssa DEBUG on stmt: $const58.0 = const(int, 0) -13:52:44,816 numba.core.ssa DEBUG on stmt: _stop = lit_start -13:52:44,816 numba.core.ssa DEBUG on stmt: _start = $const58.0 -13:52:44,816 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,816 numba.core.ssa DEBUG ==== SSA block analysis pass on 68 -13:52:44,816 numba.core.ssa DEBUG Running -13:52:44,816 numba.core.ssa DEBUG on stmt: _stop = lit_stop -13:52:44,816 numba.core.ssa DEBUG on stmt: _start = lit_start -13:52:44,816 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,816 numba.core.ssa DEBUG ==== SSA block analysis pass on 76 -13:52:44,816 numba.core.ssa DEBUG Running -13:52:44,816 numba.core.ssa DEBUG on stmt: $const78.1 = const(int, 0) -13:52:44,816 numba.core.ssa DEBUG on stmt: $80compare_op.2 = _step == $const78.1 -13:52:44,816 numba.core.ssa DEBUG on stmt: bool86 = global(bool: ) -13:52:44,816 numba.core.ssa DEBUG on stmt: $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,816 numba.core.ssa DEBUG on stmt: branch $86pred, 88, 118 -13:52:44,816 numba.core.ssa DEBUG ==== SSA block analysis pass on 88 -13:52:44,816 numba.core.ssa DEBUG Running -13:52:44,816 numba.core.ssa DEBUG on stmt: $88load_global.0 = global(ValueError: ) -13:52:44,816 numba.core.ssa DEBUG on stmt: $const100.2 = const(str, Maximum allowed size exceeded) -13:52:44,816 numba.core.ssa DEBUG on stmt: $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,816 numba.core.ssa DEBUG on stmt: raise ('Maximum allowed size exceeded') -13:52:44,816 numba.core.ssa DEBUG ==== SSA block analysis pass on 118 -13:52:44,816 numba.core.ssa DEBUG Running -13:52:44,816 numba.core.ssa DEBUG on stmt: $binop_sub122.2 = _stop - _start -13:52:44,816 numba.core.ssa DEBUG on stmt: nitems_c = $binop_sub122.2 / _step -13:52:44,816 numba.core.ssa DEBUG on stmt: $134load_global.5 = global(int: ) -13:52:44,816 numba.core.ssa DEBUG on stmt: $146load_global.7 = global(math: ) -13:52:44,816 numba.core.ssa DEBUG on stmt: $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) -13:52:44,816 numba.core.ssa DEBUG on stmt: $170load_attr.11 = getattr(value=nitems_c, attr=real) -13:52:44,816 numba.core.ssa DEBUG on stmt: $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,816 numba.core.ssa DEBUG on stmt: nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,817 numba.core.ssa DEBUG on stmt: $210load_deref.14 = freevar(use_complex: False) -13:52:44,817 numba.core.ssa DEBUG on stmt: $const212.15 = const(bool, True) -13:52:44,817 numba.core.ssa DEBUG on stmt: $214is_op.16 = const(int, 0) -13:52:44,817 numba.core.ssa DEBUG on stmt: bool216 = global(bool: ) -13:52:44,817 numba.core.ssa DEBUG on stmt: $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,817 numba.core.ssa DEBUG on stmt: jump 356 -13:52:44,817 numba.core.ssa DEBUG ==== SSA block analysis pass on 356 -13:52:44,817 numba.core.ssa DEBUG Running -13:52:44,817 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(max: ) -13:52:44,817 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 0) -13:52:44,817 numba.core.ssa DEBUG on stmt: nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,817 numba.core.ssa DEBUG on stmt: jump 388 -13:52:44,817 numba.core.ssa DEBUG ==== SSA block analysis pass on 388 -13:52:44,817 numba.core.ssa DEBUG Running -13:52:44,817 numba.core.ssa DEBUG on stmt: $388load_global.0 = global(np: ) -13:52:44,817 numba.core.ssa DEBUG on stmt: $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) -13:52:44,817 numba.core.ssa DEBUG on stmt: $412load_deref.4 = freevar(true_dtype: int64) -13:52:44,817 numba.core.ssa DEBUG on stmt: arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,817 numba.core.ssa DEBUG on stmt: val = _start -13:52:44,817 numba.core.ssa DEBUG on stmt: $434load_global.7 = global(range: ) -13:52:44,817 numba.core.ssa DEBUG on stmt: $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,817 numba.core.ssa DEBUG on stmt: $462get_iter.11 = getiter(value=$452call.10) -13:52:44,817 numba.core.ssa DEBUG on stmt: $phi464.0 = $462get_iter.11 -13:52:44,817 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,817 numba.core.ssa DEBUG ==== SSA block analysis pass on 464 -13:52:44,817 numba.core.ssa DEBUG Running -13:52:44,818 numba.core.ssa DEBUG on stmt: $464for_iter.1 = iternext(value=$phi464.0) -13:52:44,818 numba.core.ssa DEBUG on stmt: $464for_iter.2 = pair_first(value=$464for_iter.1) -13:52:44,818 numba.core.ssa DEBUG on stmt: $464for_iter.3 = pair_second(value=$464for_iter.1) -13:52:44,818 numba.core.ssa DEBUG on stmt: $phi466.1 = $464for_iter.2 -13:52:44,818 numba.core.ssa DEBUG on stmt: branch $464for_iter.3, 466, 492 -13:52:44,818 numba.core.ssa DEBUG ==== SSA block analysis pass on 466 -13:52:44,818 numba.core.ssa DEBUG Running -13:52:44,818 numba.core.ssa DEBUG on stmt: i = $phi466.1 -13:52:44,818 numba.core.ssa DEBUG on stmt: $binop_mul474.5 = i * _step -13:52:44,818 numba.core.ssa DEBUG on stmt: $binop_add478.6 = val + $binop_mul474.5 -13:52:44,818 numba.core.ssa DEBUG on stmt: arr[i] = $binop_add478.6 -13:52:44,818 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,818 numba.core.ssa DEBUG ==== SSA block analysis pass on 492 -13:52:44,818 numba.core.ssa DEBUG Running -13:52:44,818 numba.core.ssa DEBUG on stmt: $494return_value.1 = cast(value=arr) -13:52:44,818 numba.core.ssa DEBUG on stmt: return $494return_value.1 -13:52:44,819 numba.core.ssa DEBUG defs defaultdict(, - {'$106call.3': [(, - 88)], - '$134load_global.5': [(, - 118)], - '$146load_global.7': [(, - 118)], - '$158load_attr.9': [(, - 118)], - '$170load_attr.11': [(, - 118)], - '$184call.12': [(, - 118)], - '$18load_deref.1': [(, - 16)], - '$210load_deref.14': [(, - 118)], - '$214is_op.16': [(, - 118)], - '$216pred': [(, - 118)], - '$30load_deref.1': [(, - 28)], - '$356load_global.0': [(, - 356)], - '$388load_global.0': [(, - 388)], - '$400load_attr.2': [(, - 388)], - '$412load_deref.4': [(, - 388)], - '$434load_global.7': [(, - 388)], - '$452call.10': [(, - 388)], - '$462get_iter.11': [(, - 388)], - '$464for_iter.1': [(, - 464)], - '$464for_iter.2': [(, - 464)], - '$464for_iter.3': [(, - 464)], - '$494return_value.1': [(, - 492)], - '$6load_deref.0': [(, - 0)], - '$80compare_op.2': [(, - 76)], - '$86pred': [(, - 76)], - '$88load_global.0': [(, - 88)], - '$binop_add478.6': [(, - 466)], - '$binop_mul474.5': [(, - 466)], - '$binop_sub122.2': [(, - 118)], - '$bool20': [(, - 16)], - '$bool32': [(, - 28)], - '$bool44': [(, - 40)], - '$bool56': [(, - 52)], - '$bool8': [(, - 0)], - '$const100.2': [(, - 88)], - '$const212.15': [(, - 118)], - '$const370.3': [(, - 356)], - '$const50.0': [(, - 50)], - '$const58.0': [(, - 58)], - '$const78.1': [(, - 76)], - '$constNone20': [(, - 16)], - '$constNone32': [(, - 28)], - '$constNone44': [(, - 40)], - '$constNone56': [(, - 52)], - '$constNone8': [(, - 0)], - '$maybeNone20': [(, - 16)], - '$maybeNone32': [(, - 28)], - '$maybeNone44': [(, - 40)], - '$maybeNone56': [(, - 52)], - '$maybeNone8': [(, - 0)], - '$phi16.0': [(, - 14)], - '$phi28.0': [(, - 26)], - '$phi40.0': [(, - 38)], - '$phi464.0': [(, - 388)], - '$phi466.1': [(, - 464)], - '$phi52.0': [(, - 46), - (, - 50)], - '$pred20': [(, - 16)], - '$pred32': [(, - 28)], - '$pred44': [(, - 40)], - '$pred56': [(, - 52)], - '$pred8': [(, - 0)], - '_start': [(, - 58), - (, - 68)], - '_step': [(, - 52)], - '_stop': [(, - 58), - (, - 68)], - 'arr': [(, - 388)], - 'bool216': [(, - 118)], - 'bool86': [(, - 76)], - 'dtype': [(, - 0)], - 'i': [(, 466)], - 'lit_start': [(, - 16)], - 'lit_step': [(, - 40)], - 'lit_stop': [(, - 28)], - 'nitems': [(, - 356)], - 'nitems_c': [(, - 118)], - 'nitems_r': [(, - 118)], - 'start': [(, - 0)], - 'step': [(, 0)], - 'stop': [(, 0)], - 'val': [(, - 388)]}) -13:52:44,819 numba.core.ssa DEBUG SSA violators -13:52:44,819 numba.core.ssa DEBUG Fix SSA violator on var $phi52.0 -13:52:44,819 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,819 numba.core.ssa DEBUG Running -13:52:44,819 numba.core.ssa DEBUG on stmt: start = arg(0, name=start) -13:52:44,819 numba.core.ssa DEBUG on stmt: stop = arg(1, name=stop) -13:52:44,820 numba.core.ssa DEBUG on stmt: step = arg(2, name=step) -13:52:44,820 numba.core.ssa DEBUG on stmt: dtype = arg(3, name=dtype) -13:52:44,820 numba.core.ssa DEBUG on stmt: $6load_deref.0 = freevar(start_value: None) -13:52:44,820 numba.core.ssa DEBUG on stmt: $constNone8 = const(NoneType, None) -13:52:44,820 numba.core.ssa DEBUG on stmt: $maybeNone8 = const(int, 0) -13:52:44,820 numba.core.ssa DEBUG on stmt: $bool8 = global(bool: ) -13:52:44,820 numba.core.ssa DEBUG on stmt: $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,820 numba.core.ssa DEBUG on stmt: jump 14 -13:52:44,820 numba.core.ssa DEBUG ==== SSA block rewrite pass on 14 -13:52:44,820 numba.core.ssa DEBUG Running -13:52:44,820 numba.core.ssa DEBUG on stmt: $phi16.0 = start -13:52:44,820 numba.core.ssa DEBUG on stmt: jump 16 -13:52:44,820 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:44,820 numba.core.ssa DEBUG Running -13:52:44,820 numba.core.ssa DEBUG on stmt: lit_start = $phi16.0 -13:52:44,820 numba.core.ssa DEBUG on stmt: $18load_deref.1 = freevar(stop_value: None) -13:52:44,820 numba.core.ssa DEBUG on stmt: $constNone20 = const(NoneType, None) -13:52:44,820 numba.core.ssa DEBUG on stmt: $maybeNone20 = const(int, 0) -13:52:44,820 numba.core.ssa DEBUG on stmt: $bool20 = global(bool: ) -13:52:44,820 numba.core.ssa DEBUG on stmt: $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,820 numba.core.ssa DEBUG on stmt: jump 26 -13:52:44,820 numba.core.ssa DEBUG ==== SSA block rewrite pass on 26 -13:52:44,820 numba.core.ssa DEBUG Running -13:52:44,820 numba.core.ssa DEBUG on stmt: $phi28.0 = stop -13:52:44,820 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,820 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:44,820 numba.core.ssa DEBUG Running -13:52:44,820 numba.core.ssa DEBUG on stmt: lit_stop = $phi28.0 -13:52:44,820 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(step_value: None) -13:52:44,820 numba.core.ssa DEBUG on stmt: $constNone32 = const(NoneType, None) -13:52:44,820 numba.core.ssa DEBUG on stmt: $maybeNone32 = const(int, 0) -13:52:44,820 numba.core.ssa DEBUG on stmt: $bool32 = global(bool: ) -13:52:44,820 numba.core.ssa DEBUG on stmt: $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,820 numba.core.ssa DEBUG on stmt: jump 38 -13:52:44,820 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:44,820 numba.core.ssa DEBUG Running -13:52:44,821 numba.core.ssa DEBUG on stmt: $phi40.0 = step -13:52:44,821 numba.core.ssa DEBUG on stmt: jump 40 -13:52:44,821 numba.core.ssa DEBUG ==== SSA block rewrite pass on 40 -13:52:44,821 numba.core.ssa DEBUG Running -13:52:44,821 numba.core.ssa DEBUG on stmt: lit_step = $phi40.0 -13:52:44,821 numba.core.ssa DEBUG on stmt: $constNone44 = const(NoneType, None) -13:52:44,821 numba.core.ssa DEBUG on stmt: $maybeNone44 = lit_step is not $constNone44 -13:52:44,821 numba.core.ssa DEBUG on stmt: $bool44 = global(bool: ) -13:52:44,821 numba.core.ssa DEBUG on stmt: $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,821 numba.core.ssa DEBUG on stmt: branch $pred44, 46, 50 -13:52:44,821 numba.core.ssa DEBUG ==== SSA block rewrite pass on 46 -13:52:44,821 numba.core.ssa DEBUG Running -13:52:44,821 numba.core.ssa DEBUG on stmt: $phi52.0 = lit_step -13:52:44,821 numba.core.ssa DEBUG first assign: $phi52.0 -13:52:44,821 numba.core.ssa DEBUG replaced with: $phi52.0 = lit_step -13:52:44,821 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,821 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:44,821 numba.core.ssa DEBUG Running -13:52:44,821 numba.core.ssa DEBUG on stmt: $const50.0 = const(int, 1) -13:52:44,821 numba.core.ssa DEBUG on stmt: $phi52.0 = $const50.0 -13:52:44,821 numba.core.ssa DEBUG replaced with: $phi52.0.1 = $const50.0 -13:52:44,821 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,821 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:44,821 numba.core.ssa DEBUG Running -13:52:44,821 numba.core.ssa DEBUG on stmt: _step = $phi52.0 -13:52:44,821 numba.core.ssa DEBUG on stmt: $constNone56 = const(NoneType, None) -13:52:44,821 numba.core.ssa DEBUG on stmt: $maybeNone56 = lit_stop is $constNone56 -13:52:44,821 numba.core.ssa DEBUG on stmt: $bool56 = global(bool: ) -13:52:44,821 numba.core.ssa DEBUG on stmt: $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,821 numba.core.ssa DEBUG on stmt: branch $pred56, 58, 68 -13:52:44,821 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:44,821 numba.core.ssa DEBUG Running -13:52:44,821 numba.core.ssa DEBUG on stmt: $const58.0 = const(int, 0) -13:52:44,821 numba.core.ssa DEBUG on stmt: _stop = lit_start -13:52:44,821 numba.core.ssa DEBUG on stmt: _start = $const58.0 -13:52:44,821 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,821 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:44,822 numba.core.ssa DEBUG Running -13:52:44,822 numba.core.ssa DEBUG on stmt: _stop = lit_stop -13:52:44,822 numba.core.ssa DEBUG on stmt: _start = lit_start -13:52:44,822 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,822 numba.core.ssa DEBUG ==== SSA block rewrite pass on 76 -13:52:44,822 numba.core.ssa DEBUG Running -13:52:44,822 numba.core.ssa DEBUG on stmt: $const78.1 = const(int, 0) -13:52:44,822 numba.core.ssa DEBUG on stmt: $80compare_op.2 = _step == $const78.1 -13:52:44,822 numba.core.ssa DEBUG on stmt: bool86 = global(bool: ) -13:52:44,822 numba.core.ssa DEBUG on stmt: $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,822 numba.core.ssa DEBUG on stmt: branch $86pred, 88, 118 -13:52:44,822 numba.core.ssa DEBUG ==== SSA block rewrite pass on 88 -13:52:44,822 numba.core.ssa DEBUG Running -13:52:44,822 numba.core.ssa DEBUG on stmt: $88load_global.0 = global(ValueError: ) -13:52:44,822 numba.core.ssa DEBUG on stmt: $const100.2 = const(str, Maximum allowed size exceeded) -13:52:44,822 numba.core.ssa DEBUG on stmt: $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,822 numba.core.ssa DEBUG on stmt: raise ('Maximum allowed size exceeded') -13:52:44,822 numba.core.ssa DEBUG ==== SSA block rewrite pass on 118 -13:52:44,822 numba.core.ssa DEBUG Running -13:52:44,822 numba.core.ssa DEBUG on stmt: $binop_sub122.2 = _stop - _start -13:52:44,822 numba.core.ssa DEBUG on stmt: nitems_c = $binop_sub122.2 / _step -13:52:44,822 numba.core.ssa DEBUG on stmt: $134load_global.5 = global(int: ) -13:52:44,822 numba.core.ssa DEBUG on stmt: $146load_global.7 = global(math: ) -13:52:44,822 numba.core.ssa DEBUG on stmt: $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) -13:52:44,822 numba.core.ssa DEBUG on stmt: $170load_attr.11 = getattr(value=nitems_c, attr=real) -13:52:44,822 numba.core.ssa DEBUG on stmt: $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,822 numba.core.ssa DEBUG on stmt: nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,822 numba.core.ssa DEBUG on stmt: $210load_deref.14 = freevar(use_complex: False) -13:52:44,822 numba.core.ssa DEBUG on stmt: $const212.15 = const(bool, True) -13:52:44,822 numba.core.ssa DEBUG on stmt: $214is_op.16 = const(int, 0) -13:52:44,822 numba.core.ssa DEBUG on stmt: bool216 = global(bool: ) -13:52:44,822 numba.core.ssa DEBUG on stmt: $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,822 numba.core.ssa DEBUG on stmt: jump 356 -13:52:44,822 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,822 numba.core.ssa DEBUG Running -13:52:44,823 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(max: ) -13:52:44,823 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 0) -13:52:44,823 numba.core.ssa DEBUG on stmt: nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,823 numba.core.ssa DEBUG on stmt: jump 388 -13:52:44,823 numba.core.ssa DEBUG ==== SSA block rewrite pass on 388 -13:52:44,823 numba.core.ssa DEBUG Running -13:52:44,823 numba.core.ssa DEBUG on stmt: $388load_global.0 = global(np: ) -13:52:44,823 numba.core.ssa DEBUG on stmt: $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) -13:52:44,823 numba.core.ssa DEBUG on stmt: $412load_deref.4 = freevar(true_dtype: int64) -13:52:44,823 numba.core.ssa DEBUG on stmt: arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,823 numba.core.ssa DEBUG on stmt: val = _start -13:52:44,823 numba.core.ssa DEBUG on stmt: $434load_global.7 = global(range: ) -13:52:44,823 numba.core.ssa DEBUG on stmt: $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,823 numba.core.ssa DEBUG on stmt: $462get_iter.11 = getiter(value=$452call.10) -13:52:44,823 numba.core.ssa DEBUG on stmt: $phi464.0 = $462get_iter.11 -13:52:44,823 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,823 numba.core.ssa DEBUG ==== SSA block rewrite pass on 464 -13:52:44,823 numba.core.ssa DEBUG Running -13:52:44,823 numba.core.ssa DEBUG on stmt: $464for_iter.1 = iternext(value=$phi464.0) -13:52:44,823 numba.core.ssa DEBUG on stmt: $464for_iter.2 = pair_first(value=$464for_iter.1) -13:52:44,823 numba.core.ssa DEBUG on stmt: $464for_iter.3 = pair_second(value=$464for_iter.1) -13:52:44,823 numba.core.ssa DEBUG on stmt: $phi466.1 = $464for_iter.2 -13:52:44,823 numba.core.ssa DEBUG on stmt: branch $464for_iter.3, 466, 492 -13:52:44,823 numba.core.ssa DEBUG ==== SSA block rewrite pass on 466 -13:52:44,823 numba.core.ssa DEBUG Running -13:52:44,823 numba.core.ssa DEBUG on stmt: i = $phi466.1 -13:52:44,823 numba.core.ssa DEBUG on stmt: $binop_mul474.5 = i * _step -13:52:44,823 numba.core.ssa DEBUG on stmt: $binop_add478.6 = val + $binop_mul474.5 -13:52:44,823 numba.core.ssa DEBUG on stmt: arr[i] = $binop_add478.6 -13:52:44,823 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,823 numba.core.ssa DEBUG ==== SSA block rewrite pass on 492 -13:52:44,823 numba.core.ssa DEBUG Running -13:52:44,823 numba.core.ssa DEBUG on stmt: $494return_value.1 = cast(value=arr) -13:52:44,823 numba.core.ssa DEBUG on stmt: return $494return_value.1 -13:52:44,823 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {46: [], - 50: []}) -13:52:44,824 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,824 numba.core.ssa DEBUG Running -13:52:44,824 numba.core.ssa DEBUG on stmt: start = arg(0, name=start) -13:52:44,824 numba.core.ssa DEBUG on stmt: stop = arg(1, name=stop) -13:52:44,824 numba.core.ssa DEBUG on stmt: step = arg(2, name=step) -13:52:44,824 numba.core.ssa DEBUG on stmt: dtype = arg(3, name=dtype) -13:52:44,824 numba.core.ssa DEBUG on stmt: $6load_deref.0 = freevar(start_value: None) -13:52:44,824 numba.core.ssa DEBUG on stmt: $constNone8 = const(NoneType, None) -13:52:44,824 numba.core.ssa DEBUG on stmt: $maybeNone8 = const(int, 0) -13:52:44,824 numba.core.ssa DEBUG on stmt: $bool8 = global(bool: ) -13:52:44,824 numba.core.ssa DEBUG on stmt: $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,824 numba.core.ssa DEBUG on stmt: jump 14 -13:52:44,824 numba.core.ssa DEBUG ==== SSA block rewrite pass on 14 -13:52:44,824 numba.core.ssa DEBUG Running -13:52:44,824 numba.core.ssa DEBUG on stmt: $phi16.0 = start -13:52:44,824 numba.core.ssa DEBUG on stmt: jump 16 -13:52:44,824 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:44,824 numba.core.ssa DEBUG Running -13:52:44,824 numba.core.ssa DEBUG on stmt: lit_start = $phi16.0 -13:52:44,824 numba.core.ssa DEBUG on stmt: $18load_deref.1 = freevar(stop_value: None) -13:52:44,824 numba.core.ssa DEBUG on stmt: $constNone20 = const(NoneType, None) -13:52:44,824 numba.core.ssa DEBUG on stmt: $maybeNone20 = const(int, 0) -13:52:44,824 numba.core.ssa DEBUG on stmt: $bool20 = global(bool: ) -13:52:44,824 numba.core.ssa DEBUG on stmt: $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,824 numba.core.ssa DEBUG on stmt: jump 26 -13:52:44,824 numba.core.ssa DEBUG ==== SSA block rewrite pass on 26 -13:52:44,824 numba.core.ssa DEBUG Running -13:52:44,824 numba.core.ssa DEBUG on stmt: $phi28.0 = stop -13:52:44,824 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,824 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:44,824 numba.core.ssa DEBUG Running -13:52:44,824 numba.core.ssa DEBUG on stmt: lit_stop = $phi28.0 -13:52:44,824 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(step_value: None) -13:52:44,824 numba.core.ssa DEBUG on stmt: $constNone32 = const(NoneType, None) -13:52:44,824 numba.core.ssa DEBUG on stmt: $maybeNone32 = const(int, 0) -13:52:44,824 numba.core.ssa DEBUG on stmt: $bool32 = global(bool: ) -13:52:44,825 numba.core.ssa DEBUG on stmt: $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,825 numba.core.ssa DEBUG on stmt: jump 38 -13:52:44,825 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:44,825 numba.core.ssa DEBUG Running -13:52:44,825 numba.core.ssa DEBUG on stmt: $phi40.0 = step -13:52:44,825 numba.core.ssa DEBUG on stmt: jump 40 -13:52:44,825 numba.core.ssa DEBUG ==== SSA block rewrite pass on 40 -13:52:44,825 numba.core.ssa DEBUG Running -13:52:44,825 numba.core.ssa DEBUG on stmt: lit_step = $phi40.0 -13:52:44,825 numba.core.ssa DEBUG on stmt: $constNone44 = const(NoneType, None) -13:52:44,825 numba.core.ssa DEBUG on stmt: $maybeNone44 = lit_step is not $constNone44 -13:52:44,825 numba.core.ssa DEBUG on stmt: $bool44 = global(bool: ) -13:52:44,825 numba.core.ssa DEBUG on stmt: $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,825 numba.core.ssa DEBUG on stmt: branch $pred44, 46, 50 -13:52:44,825 numba.core.ssa DEBUG ==== SSA block rewrite pass on 46 -13:52:44,825 numba.core.ssa DEBUG Running -13:52:44,825 numba.core.ssa DEBUG on stmt: $phi52.0 = lit_step -13:52:44,825 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,825 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:44,825 numba.core.ssa DEBUG Running -13:52:44,825 numba.core.ssa DEBUG on stmt: $const50.0 = const(int, 1) -13:52:44,825 numba.core.ssa DEBUG on stmt: $phi52.0.1 = $const50.0 -13:52:44,825 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,825 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:44,825 numba.core.ssa DEBUG Running -13:52:44,825 numba.core.ssa DEBUG on stmt: _step = $phi52.0 -13:52:44,825 numba.core.ssa DEBUG find_def var='$phi52.0' stmt=_step = $phi52.0 -13:52:44,825 numba.core.ssa DEBUG find_def_from_top label 52 -13:52:44,825 numba.core.ssa DEBUG insert phi node $phi52.0.2 = phi(incoming_values=[], incoming_blocks=[]) at 52 -13:52:44,825 numba.core.ssa DEBUG find_def_from_bottom label 50 -13:52:44,825 numba.core.ssa DEBUG incoming_def $phi52.0.1 = $const50.0 -13:52:44,825 numba.core.ssa DEBUG find_def_from_bottom label 46 -13:52:44,825 numba.core.ssa DEBUG incoming_def $phi52.0 = lit_step -13:52:44,825 numba.core.ssa DEBUG replaced with: _step = $phi52.0.2 -13:52:44,825 numba.core.ssa DEBUG on stmt: $constNone56 = const(NoneType, None) -13:52:44,826 numba.core.ssa DEBUG on stmt: $maybeNone56 = lit_stop is $constNone56 -13:52:44,826 numba.core.ssa DEBUG on stmt: $bool56 = global(bool: ) -13:52:44,826 numba.core.ssa DEBUG on stmt: $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,826 numba.core.ssa DEBUG on stmt: branch $pred56, 58, 68 -13:52:44,826 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:44,826 numba.core.ssa DEBUG Running -13:52:44,826 numba.core.ssa DEBUG on stmt: $const58.0 = const(int, 0) -13:52:44,826 numba.core.ssa DEBUG on stmt: _stop = lit_start -13:52:44,826 numba.core.ssa DEBUG on stmt: _start = $const58.0 -13:52:44,826 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,826 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:44,826 numba.core.ssa DEBUG Running -13:52:44,826 numba.core.ssa DEBUG on stmt: _stop = lit_stop -13:52:44,826 numba.core.ssa DEBUG on stmt: _start = lit_start -13:52:44,826 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,826 numba.core.ssa DEBUG ==== SSA block rewrite pass on 76 -13:52:44,826 numba.core.ssa DEBUG Running -13:52:44,826 numba.core.ssa DEBUG on stmt: $const78.1 = const(int, 0) -13:52:44,826 numba.core.ssa DEBUG on stmt: $80compare_op.2 = _step == $const78.1 -13:52:44,826 numba.core.ssa DEBUG on stmt: bool86 = global(bool: ) -13:52:44,826 numba.core.ssa DEBUG on stmt: $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,826 numba.core.ssa DEBUG on stmt: branch $86pred, 88, 118 -13:52:44,826 numba.core.ssa DEBUG ==== SSA block rewrite pass on 88 -13:52:44,826 numba.core.ssa DEBUG Running -13:52:44,826 numba.core.ssa DEBUG on stmt: $88load_global.0 = global(ValueError: ) -13:52:44,826 numba.core.ssa DEBUG on stmt: $const100.2 = const(str, Maximum allowed size exceeded) -13:52:44,826 numba.core.ssa DEBUG on stmt: $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,826 numba.core.ssa DEBUG on stmt: raise ('Maximum allowed size exceeded') -13:52:44,826 numba.core.ssa DEBUG ==== SSA block rewrite pass on 118 -13:52:44,827 numba.core.ssa DEBUG Running -13:52:44,827 numba.core.ssa DEBUG on stmt: $binop_sub122.2 = _stop - _start -13:52:44,827 numba.core.ssa DEBUG on stmt: nitems_c = $binop_sub122.2 / _step -13:52:44,827 numba.core.ssa DEBUG on stmt: $134load_global.5 = global(int: ) -13:52:44,827 numba.core.ssa DEBUG on stmt: $146load_global.7 = global(math: ) -13:52:44,827 numba.core.ssa DEBUG on stmt: $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) -13:52:44,827 numba.core.ssa DEBUG on stmt: $170load_attr.11 = getattr(value=nitems_c, attr=real) -13:52:44,827 numba.core.ssa DEBUG on stmt: $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,827 numba.core.ssa DEBUG on stmt: nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,827 numba.core.ssa DEBUG on stmt: $210load_deref.14 = freevar(use_complex: False) -13:52:44,827 numba.core.ssa DEBUG on stmt: $const212.15 = const(bool, True) -13:52:44,827 numba.core.ssa DEBUG on stmt: $214is_op.16 = const(int, 0) -13:52:44,827 numba.core.ssa DEBUG on stmt: bool216 = global(bool: ) -13:52:44,827 numba.core.ssa DEBUG on stmt: $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,827 numba.core.ssa DEBUG on stmt: jump 356 -13:52:44,827 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,827 numba.core.ssa DEBUG Running -13:52:44,827 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(max: ) -13:52:44,827 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 0) -13:52:44,827 numba.core.ssa DEBUG on stmt: nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,827 numba.core.ssa DEBUG on stmt: jump 388 -13:52:44,827 numba.core.ssa DEBUG ==== SSA block rewrite pass on 388 -13:52:44,827 numba.core.ssa DEBUG Running -13:52:44,827 numba.core.ssa DEBUG on stmt: $388load_global.0 = global(np: ) -13:52:44,827 numba.core.ssa DEBUG on stmt: $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) -13:52:44,827 numba.core.ssa DEBUG on stmt: $412load_deref.4 = freevar(true_dtype: int64) -13:52:44,827 numba.core.ssa DEBUG on stmt: arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,827 numba.core.ssa DEBUG on stmt: val = _start -13:52:44,827 numba.core.ssa DEBUG on stmt: $434load_global.7 = global(range: ) -13:52:44,827 numba.core.ssa DEBUG on stmt: $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,827 numba.core.ssa DEBUG on stmt: $462get_iter.11 = getiter(value=$452call.10) -13:52:44,827 numba.core.ssa DEBUG on stmt: $phi464.0 = $462get_iter.11 -13:52:44,828 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,828 numba.core.ssa DEBUG ==== SSA block rewrite pass on 464 -13:52:44,828 numba.core.ssa DEBUG Running -13:52:44,828 numba.core.ssa DEBUG on stmt: $464for_iter.1 = iternext(value=$phi464.0) -13:52:44,828 numba.core.ssa DEBUG on stmt: $464for_iter.2 = pair_first(value=$464for_iter.1) -13:52:44,828 numba.core.ssa DEBUG on stmt: $464for_iter.3 = pair_second(value=$464for_iter.1) -13:52:44,828 numba.core.ssa DEBUG on stmt: $phi466.1 = $464for_iter.2 -13:52:44,828 numba.core.ssa DEBUG on stmt: branch $464for_iter.3, 466, 492 -13:52:44,828 numba.core.ssa DEBUG ==== SSA block rewrite pass on 466 -13:52:44,828 numba.core.ssa DEBUG Running -13:52:44,828 numba.core.ssa DEBUG on stmt: i = $phi466.1 -13:52:44,828 numba.core.ssa DEBUG on stmt: $binop_mul474.5 = i * _step -13:52:44,828 numba.core.ssa DEBUG on stmt: $binop_add478.6 = val + $binop_mul474.5 -13:52:44,828 numba.core.ssa DEBUG on stmt: arr[i] = $binop_add478.6 -13:52:44,828 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,828 numba.core.ssa DEBUG ==== SSA block rewrite pass on 492 -13:52:44,828 numba.core.ssa DEBUG Running -13:52:44,828 numba.core.ssa DEBUG on stmt: $494return_value.1 = cast(value=arr) -13:52:44,828 numba.core.ssa DEBUG on stmt: return $494return_value.1 -13:52:44,828 numba.core.ssa DEBUG Fix SSA violator on var _stop -13:52:44,828 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,828 numba.core.ssa DEBUG Running -13:52:44,828 numba.core.ssa DEBUG on stmt: start = arg(0, name=start) -13:52:44,828 numba.core.ssa DEBUG on stmt: stop = arg(1, name=stop) -13:52:44,828 numba.core.ssa DEBUG on stmt: step = arg(2, name=step) -13:52:44,828 numba.core.ssa DEBUG on stmt: dtype = arg(3, name=dtype) -13:52:44,828 numba.core.ssa DEBUG on stmt: $6load_deref.0 = freevar(start_value: None) -13:52:44,828 numba.core.ssa DEBUG on stmt: $constNone8 = const(NoneType, None) -13:52:44,828 numba.core.ssa DEBUG on stmt: $maybeNone8 = const(int, 0) -13:52:44,828 numba.core.ssa DEBUG on stmt: $bool8 = global(bool: ) -13:52:44,828 numba.core.ssa DEBUG on stmt: $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,828 numba.core.ssa DEBUG on stmt: jump 14 -13:52:44,828 numba.core.ssa DEBUG ==== SSA block rewrite pass on 14 -13:52:44,828 numba.core.ssa DEBUG Running -13:52:44,828 numba.core.ssa DEBUG on stmt: $phi16.0 = start -13:52:44,828 numba.core.ssa DEBUG on stmt: jump 16 -13:52:44,829 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:44,829 numba.core.ssa DEBUG Running -13:52:44,829 numba.core.ssa DEBUG on stmt: lit_start = $phi16.0 -13:52:44,829 numba.core.ssa DEBUG on stmt: $18load_deref.1 = freevar(stop_value: None) -13:52:44,829 numba.core.ssa DEBUG on stmt: $constNone20 = const(NoneType, None) -13:52:44,829 numba.core.ssa DEBUG on stmt: $maybeNone20 = const(int, 0) -13:52:44,829 numba.core.ssa DEBUG on stmt: $bool20 = global(bool: ) -13:52:44,829 numba.core.ssa DEBUG on stmt: $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,829 numba.core.ssa DEBUG on stmt: jump 26 -13:52:44,829 numba.core.ssa DEBUG ==== SSA block rewrite pass on 26 -13:52:44,829 numba.core.ssa DEBUG Running -13:52:44,829 numba.core.ssa DEBUG on stmt: $phi28.0 = stop -13:52:44,829 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,829 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:44,829 numba.core.ssa DEBUG Running -13:52:44,829 numba.core.ssa DEBUG on stmt: lit_stop = $phi28.0 -13:52:44,829 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(step_value: None) -13:52:44,829 numba.core.ssa DEBUG on stmt: $constNone32 = const(NoneType, None) -13:52:44,829 numba.core.ssa DEBUG on stmt: $maybeNone32 = const(int, 0) -13:52:44,829 numba.core.ssa DEBUG on stmt: $bool32 = global(bool: ) -13:52:44,829 numba.core.ssa DEBUG on stmt: $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,829 numba.core.ssa DEBUG on stmt: jump 38 -13:52:44,829 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:44,829 numba.core.ssa DEBUG Running -13:52:44,829 numba.core.ssa DEBUG on stmt: $phi40.0 = step -13:52:44,829 numba.core.ssa DEBUG on stmt: jump 40 -13:52:44,829 numba.core.ssa DEBUG ==== SSA block rewrite pass on 40 -13:52:44,829 numba.core.ssa DEBUG Running -13:52:44,829 numba.core.ssa DEBUG on stmt: lit_step = $phi40.0 -13:52:44,829 numba.core.ssa DEBUG on stmt: $constNone44 = const(NoneType, None) -13:52:44,829 numba.core.ssa DEBUG on stmt: $maybeNone44 = lit_step is not $constNone44 -13:52:44,829 numba.core.ssa DEBUG on stmt: $bool44 = global(bool: ) -13:52:44,829 numba.core.ssa DEBUG on stmt: $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,829 numba.core.ssa DEBUG on stmt: branch $pred44, 46, 50 -13:52:44,829 numba.core.ssa DEBUG ==== SSA block rewrite pass on 46 -13:52:44,829 numba.core.ssa DEBUG Running -13:52:44,829 numba.core.ssa DEBUG on stmt: $phi52.0 = lit_step -13:52:44,830 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,830 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:44,830 numba.core.ssa DEBUG Running -13:52:44,830 numba.core.ssa DEBUG on stmt: $const50.0 = const(int, 1) -13:52:44,830 numba.core.ssa DEBUG on stmt: $phi52.0.1 = $const50.0 -13:52:44,830 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,830 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:44,830 numba.core.ssa DEBUG Running -13:52:44,830 numba.core.ssa DEBUG on stmt: $phi52.0.2 = phi(incoming_values=[Var($phi52.0.1, arrayobj.py:4801), Var($phi52.0, arrayobj.py:4801)], incoming_blocks=[50, 46]) -13:52:44,830 numba.core.ssa DEBUG on stmt: _step = $phi52.0.2 -13:52:44,830 numba.core.ssa DEBUG on stmt: $constNone56 = const(NoneType, None) -13:52:44,830 numba.core.ssa DEBUG on stmt: $maybeNone56 = lit_stop is $constNone56 -13:52:44,830 numba.core.ssa DEBUG on stmt: $bool56 = global(bool: ) -13:52:44,830 numba.core.ssa DEBUG on stmt: $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,830 numba.core.ssa DEBUG on stmt: branch $pred56, 58, 68 -13:52:44,830 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:44,830 numba.core.ssa DEBUG Running -13:52:44,830 numba.core.ssa DEBUG on stmt: $const58.0 = const(int, 0) -13:52:44,830 numba.core.ssa DEBUG on stmt: _stop = lit_start -13:52:44,830 numba.core.ssa DEBUG first assign: _stop -13:52:44,830 numba.core.ssa DEBUG replaced with: _stop = lit_start -13:52:44,830 numba.core.ssa DEBUG on stmt: _start = $const58.0 -13:52:44,830 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,830 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:44,830 numba.core.ssa DEBUG Running -13:52:44,830 numba.core.ssa DEBUG on stmt: _stop = lit_stop -13:52:44,830 numba.core.ssa DEBUG replaced with: _stop.1 = lit_stop -13:52:44,830 numba.core.ssa DEBUG on stmt: _start = lit_start -13:52:44,830 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,830 numba.core.ssa DEBUG ==== SSA block rewrite pass on 76 -13:52:44,830 numba.core.ssa DEBUG Running -13:52:44,830 numba.core.ssa DEBUG on stmt: $const78.1 = const(int, 0) -13:52:44,830 numba.core.ssa DEBUG on stmt: $80compare_op.2 = _step == $const78.1 -13:52:44,830 numba.core.ssa DEBUG on stmt: bool86 = global(bool: ) -13:52:44,830 numba.core.ssa DEBUG on stmt: $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,830 numba.core.ssa DEBUG on stmt: branch $86pred, 88, 118 -13:52:44,830 numba.core.ssa DEBUG ==== SSA block rewrite pass on 88 -13:52:44,831 numba.core.ssa DEBUG Running -13:52:44,831 numba.core.ssa DEBUG on stmt: $88load_global.0 = global(ValueError: ) -13:52:44,831 numba.core.ssa DEBUG on stmt: $const100.2 = const(str, Maximum allowed size exceeded) -13:52:44,831 numba.core.ssa DEBUG on stmt: $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,831 numba.core.ssa DEBUG on stmt: raise ('Maximum allowed size exceeded') -13:52:44,831 numba.core.ssa DEBUG ==== SSA block rewrite pass on 118 -13:52:44,831 numba.core.ssa DEBUG Running -13:52:44,831 numba.core.ssa DEBUG on stmt: $binop_sub122.2 = _stop - _start -13:52:44,831 numba.core.ssa DEBUG on stmt: nitems_c = $binop_sub122.2 / _step -13:52:44,831 numba.core.ssa DEBUG on stmt: $134load_global.5 = global(int: ) -13:52:44,831 numba.core.ssa DEBUG on stmt: $146load_global.7 = global(math: ) -13:52:44,831 numba.core.ssa DEBUG on stmt: $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) -13:52:44,831 numba.core.ssa DEBUG on stmt: $170load_attr.11 = getattr(value=nitems_c, attr=real) -13:52:44,831 numba.core.ssa DEBUG on stmt: $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,831 numba.core.ssa DEBUG on stmt: nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,831 numba.core.ssa DEBUG on stmt: $210load_deref.14 = freevar(use_complex: False) -13:52:44,831 numba.core.ssa DEBUG on stmt: $const212.15 = const(bool, True) -13:52:44,831 numba.core.ssa DEBUG on stmt: $214is_op.16 = const(int, 0) -13:52:44,831 numba.core.ssa DEBUG on stmt: bool216 = global(bool: ) -13:52:44,831 numba.core.ssa DEBUG on stmt: $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,831 numba.core.ssa DEBUG on stmt: jump 356 -13:52:44,831 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,831 numba.core.ssa DEBUG Running -13:52:44,831 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(max: ) -13:52:44,831 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 0) -13:52:44,831 numba.core.ssa DEBUG on stmt: nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,831 numba.core.ssa DEBUG on stmt: jump 388 -13:52:44,831 numba.core.ssa DEBUG ==== SSA block rewrite pass on 388 -13:52:44,831 numba.core.ssa DEBUG Running -13:52:44,831 numba.core.ssa DEBUG on stmt: $388load_global.0 = global(np: ) -13:52:44,831 numba.core.ssa DEBUG on stmt: $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) -13:52:44,831 numba.core.ssa DEBUG on stmt: $412load_deref.4 = freevar(true_dtype: int64) -13:52:44,831 numba.core.ssa DEBUG on stmt: arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,831 numba.core.ssa DEBUG on stmt: val = _start -13:52:44,831 numba.core.ssa DEBUG on stmt: $434load_global.7 = global(range: ) -13:52:44,832 numba.core.ssa DEBUG on stmt: $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,832 numba.core.ssa DEBUG on stmt: $462get_iter.11 = getiter(value=$452call.10) -13:52:44,832 numba.core.ssa DEBUG on stmt: $phi464.0 = $462get_iter.11 -13:52:44,832 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,832 numba.core.ssa DEBUG ==== SSA block rewrite pass on 464 -13:52:44,832 numba.core.ssa DEBUG Running -13:52:44,832 numba.core.ssa DEBUG on stmt: $464for_iter.1 = iternext(value=$phi464.0) -13:52:44,832 numba.core.ssa DEBUG on stmt: $464for_iter.2 = pair_first(value=$464for_iter.1) -13:52:44,832 numba.core.ssa DEBUG on stmt: $464for_iter.3 = pair_second(value=$464for_iter.1) -13:52:44,832 numba.core.ssa DEBUG on stmt: $phi466.1 = $464for_iter.2 -13:52:44,832 numba.core.ssa DEBUG on stmt: branch $464for_iter.3, 466, 492 -13:52:44,832 numba.core.ssa DEBUG ==== SSA block rewrite pass on 466 -13:52:44,832 numba.core.ssa DEBUG Running -13:52:44,832 numba.core.ssa DEBUG on stmt: i = $phi466.1 -13:52:44,832 numba.core.ssa DEBUG on stmt: $binop_mul474.5 = i * _step -13:52:44,832 numba.core.ssa DEBUG on stmt: $binop_add478.6 = val + $binop_mul474.5 -13:52:44,832 numba.core.ssa DEBUG on stmt: arr[i] = $binop_add478.6 -13:52:44,832 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,832 numba.core.ssa DEBUG ==== SSA block rewrite pass on 492 -13:52:44,832 numba.core.ssa DEBUG Running -13:52:44,832 numba.core.ssa DEBUG on stmt: $494return_value.1 = cast(value=arr) -13:52:44,832 numba.core.ssa DEBUG on stmt: return $494return_value.1 -13:52:44,832 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {58: [], - 68: []}) -13:52:44,832 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,832 numba.core.ssa DEBUG Running -13:52:44,832 numba.core.ssa DEBUG on stmt: start = arg(0, name=start) -13:52:44,832 numba.core.ssa DEBUG on stmt: stop = arg(1, name=stop) -13:52:44,832 numba.core.ssa DEBUG on stmt: step = arg(2, name=step) -13:52:44,832 numba.core.ssa DEBUG on stmt: dtype = arg(3, name=dtype) -13:52:44,832 numba.core.ssa DEBUG on stmt: $6load_deref.0 = freevar(start_value: None) -13:52:44,832 numba.core.ssa DEBUG on stmt: $constNone8 = const(NoneType, None) -13:52:44,832 numba.core.ssa DEBUG on stmt: $maybeNone8 = const(int, 0) -13:52:44,832 numba.core.ssa DEBUG on stmt: $bool8 = global(bool: ) -13:52:44,832 numba.core.ssa DEBUG on stmt: $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,832 numba.core.ssa DEBUG on stmt: jump 14 -13:52:44,832 numba.core.ssa DEBUG ==== SSA block rewrite pass on 14 -13:52:44,833 numba.core.ssa DEBUG Running -13:52:44,833 numba.core.ssa DEBUG on stmt: $phi16.0 = start -13:52:44,833 numba.core.ssa DEBUG on stmt: jump 16 -13:52:44,833 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:44,833 numba.core.ssa DEBUG Running -13:52:44,833 numba.core.ssa DEBUG on stmt: lit_start = $phi16.0 -13:52:44,833 numba.core.ssa DEBUG on stmt: $18load_deref.1 = freevar(stop_value: None) -13:52:44,833 numba.core.ssa DEBUG on stmt: $constNone20 = const(NoneType, None) -13:52:44,833 numba.core.ssa DEBUG on stmt: $maybeNone20 = const(int, 0) -13:52:44,833 numba.core.ssa DEBUG on stmt: $bool20 = global(bool: ) -13:52:44,833 numba.core.ssa DEBUG on stmt: $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,833 numba.core.ssa DEBUG on stmt: jump 26 -13:52:44,833 numba.core.ssa DEBUG ==== SSA block rewrite pass on 26 -13:52:44,833 numba.core.ssa DEBUG Running -13:52:44,833 numba.core.ssa DEBUG on stmt: $phi28.0 = stop -13:52:44,833 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,833 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:44,833 numba.core.ssa DEBUG Running -13:52:44,833 numba.core.ssa DEBUG on stmt: lit_stop = $phi28.0 -13:52:44,833 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(step_value: None) -13:52:44,833 numba.core.ssa DEBUG on stmt: $constNone32 = const(NoneType, None) -13:52:44,833 numba.core.ssa DEBUG on stmt: $maybeNone32 = const(int, 0) -13:52:44,833 numba.core.ssa DEBUG on stmt: $bool32 = global(bool: ) -13:52:44,833 numba.core.ssa DEBUG on stmt: $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,833 numba.core.ssa DEBUG on stmt: jump 38 -13:52:44,833 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:44,833 numba.core.ssa DEBUG Running -13:52:44,833 numba.core.ssa DEBUG on stmt: $phi40.0 = step -13:52:44,833 numba.core.ssa DEBUG on stmt: jump 40 -13:52:44,833 numba.core.ssa DEBUG ==== SSA block rewrite pass on 40 -13:52:44,833 numba.core.ssa DEBUG Running -13:52:44,833 numba.core.ssa DEBUG on stmt: lit_step = $phi40.0 -13:52:44,833 numba.core.ssa DEBUG on stmt: $constNone44 = const(NoneType, None) -13:52:44,833 numba.core.ssa DEBUG on stmt: $maybeNone44 = lit_step is not $constNone44 -13:52:44,833 numba.core.ssa DEBUG on stmt: $bool44 = global(bool: ) -13:52:44,833 numba.core.ssa DEBUG on stmt: $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,834 numba.core.ssa DEBUG on stmt: branch $pred44, 46, 50 -13:52:44,834 numba.core.ssa DEBUG ==== SSA block rewrite pass on 46 -13:52:44,834 numba.core.ssa DEBUG Running -13:52:44,834 numba.core.ssa DEBUG on stmt: $phi52.0 = lit_step -13:52:44,834 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,834 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:44,834 numba.core.ssa DEBUG Running -13:52:44,834 numba.core.ssa DEBUG on stmt: $const50.0 = const(int, 1) -13:52:44,834 numba.core.ssa DEBUG on stmt: $phi52.0.1 = $const50.0 -13:52:44,834 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,834 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:44,834 numba.core.ssa DEBUG Running -13:52:44,834 numba.core.ssa DEBUG on stmt: $phi52.0.2 = phi(incoming_values=[Var($phi52.0.1, arrayobj.py:4801), Var($phi52.0, arrayobj.py:4801)], incoming_blocks=[50, 46]) -13:52:44,834 numba.core.ssa DEBUG on stmt: _step = $phi52.0.2 -13:52:44,834 numba.core.ssa DEBUG on stmt: $constNone56 = const(NoneType, None) -13:52:44,834 numba.core.ssa DEBUG on stmt: $maybeNone56 = lit_stop is $constNone56 -13:52:44,834 numba.core.ssa DEBUG on stmt: $bool56 = global(bool: ) -13:52:44,834 numba.core.ssa DEBUG on stmt: $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,834 numba.core.ssa DEBUG on stmt: branch $pred56, 58, 68 -13:52:44,834 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:44,834 numba.core.ssa DEBUG Running -13:52:44,834 numba.core.ssa DEBUG on stmt: $const58.0 = const(int, 0) -13:52:44,834 numba.core.ssa DEBUG on stmt: _stop = lit_start -13:52:44,834 numba.core.ssa DEBUG on stmt: _start = $const58.0 -13:52:44,834 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,834 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:44,834 numba.core.ssa DEBUG Running -13:52:44,834 numba.core.ssa DEBUG on stmt: _stop.1 = lit_stop -13:52:44,834 numba.core.ssa DEBUG on stmt: _start = lit_start -13:52:44,834 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,834 numba.core.ssa DEBUG ==== SSA block rewrite pass on 76 -13:52:44,834 numba.core.ssa DEBUG Running -13:52:44,834 numba.core.ssa DEBUG on stmt: $const78.1 = const(int, 0) -13:52:44,834 numba.core.ssa DEBUG on stmt: $80compare_op.2 = _step == $const78.1 -13:52:44,834 numba.core.ssa DEBUG on stmt: bool86 = global(bool: ) -13:52:44,834 numba.core.ssa DEBUG on stmt: $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,834 numba.core.ssa DEBUG on stmt: branch $86pred, 88, 118 -13:52:44,835 numba.core.ssa DEBUG ==== SSA block rewrite pass on 88 -13:52:44,835 numba.core.ssa DEBUG Running -13:52:44,835 numba.core.ssa DEBUG on stmt: $88load_global.0 = global(ValueError: ) -13:52:44,835 numba.core.ssa DEBUG on stmt: $const100.2 = const(str, Maximum allowed size exceeded) -13:52:44,835 numba.core.ssa DEBUG on stmt: $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,835 numba.core.ssa DEBUG on stmt: raise ('Maximum allowed size exceeded') -13:52:44,835 numba.core.ssa DEBUG ==== SSA block rewrite pass on 118 -13:52:44,835 numba.core.ssa DEBUG Running -13:52:44,835 numba.core.ssa DEBUG on stmt: $binop_sub122.2 = _stop - _start -13:52:44,835 numba.core.ssa DEBUG find_def var='_stop' stmt=$binop_sub122.2 = _stop - _start -13:52:44,835 numba.core.ssa DEBUG find_def_from_top label 118 -13:52:44,835 numba.core.ssa DEBUG idom 76 from label 118 -13:52:44,835 numba.core.ssa DEBUG find_def_from_bottom label 76 -13:52:44,835 numba.core.ssa DEBUG find_def_from_top label 76 -13:52:44,835 numba.core.ssa DEBUG insert phi node _stop.2 = phi(incoming_values=[], incoming_blocks=[]) at 76 -13:52:44,835 numba.core.ssa DEBUG find_def_from_bottom label 58 -13:52:44,835 numba.core.ssa DEBUG incoming_def _stop = lit_start -13:52:44,835 numba.core.ssa DEBUG find_def_from_bottom label 68 -13:52:44,835 numba.core.ssa DEBUG incoming_def _stop.1 = lit_stop -13:52:44,835 numba.core.ssa DEBUG replaced with: $binop_sub122.2 = _stop.2 - _start -13:52:44,835 numba.core.ssa DEBUG on stmt: nitems_c = $binop_sub122.2 / _step -13:52:44,835 numba.core.ssa DEBUG on stmt: $134load_global.5 = global(int: ) -13:52:44,835 numba.core.ssa DEBUG on stmt: $146load_global.7 = global(math: ) -13:52:44,835 numba.core.ssa DEBUG on stmt: $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) -13:52:44,835 numba.core.ssa DEBUG on stmt: $170load_attr.11 = getattr(value=nitems_c, attr=real) -13:52:44,835 numba.core.ssa DEBUG on stmt: $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,835 numba.core.ssa DEBUG on stmt: nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,835 numba.core.ssa DEBUG on stmt: $210load_deref.14 = freevar(use_complex: False) -13:52:44,835 numba.core.ssa DEBUG on stmt: $const212.15 = const(bool, True) -13:52:44,835 numba.core.ssa DEBUG on stmt: $214is_op.16 = const(int, 0) -13:52:44,835 numba.core.ssa DEBUG on stmt: bool216 = global(bool: ) -13:52:44,835 numba.core.ssa DEBUG on stmt: $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,835 numba.core.ssa DEBUG on stmt: jump 356 -13:52:44,836 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,836 numba.core.ssa DEBUG Running -13:52:44,836 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(max: ) -13:52:44,836 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 0) -13:52:44,836 numba.core.ssa DEBUG on stmt: nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,836 numba.core.ssa DEBUG on stmt: jump 388 -13:52:44,836 numba.core.ssa DEBUG ==== SSA block rewrite pass on 388 -13:52:44,836 numba.core.ssa DEBUG Running -13:52:44,836 numba.core.ssa DEBUG on stmt: $388load_global.0 = global(np: ) -13:52:44,836 numba.core.ssa DEBUG on stmt: $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) -13:52:44,836 numba.core.ssa DEBUG on stmt: $412load_deref.4 = freevar(true_dtype: int64) -13:52:44,836 numba.core.ssa DEBUG on stmt: arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,836 numba.core.ssa DEBUG on stmt: val = _start -13:52:44,836 numba.core.ssa DEBUG on stmt: $434load_global.7 = global(range: ) -13:52:44,836 numba.core.ssa DEBUG on stmt: $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,836 numba.core.ssa DEBUG on stmt: $462get_iter.11 = getiter(value=$452call.10) -13:52:44,836 numba.core.ssa DEBUG on stmt: $phi464.0 = $462get_iter.11 -13:52:44,836 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,836 numba.core.ssa DEBUG ==== SSA block rewrite pass on 464 -13:52:44,836 numba.core.ssa DEBUG Running -13:52:44,836 numba.core.ssa DEBUG on stmt: $464for_iter.1 = iternext(value=$phi464.0) -13:52:44,836 numba.core.ssa DEBUG on stmt: $464for_iter.2 = pair_first(value=$464for_iter.1) -13:52:44,836 numba.core.ssa DEBUG on stmt: $464for_iter.3 = pair_second(value=$464for_iter.1) -13:52:44,836 numba.core.ssa DEBUG on stmt: $phi466.1 = $464for_iter.2 -13:52:44,836 numba.core.ssa DEBUG on stmt: branch $464for_iter.3, 466, 492 -13:52:44,836 numba.core.ssa DEBUG ==== SSA block rewrite pass on 466 -13:52:44,836 numba.core.ssa DEBUG Running -13:52:44,836 numba.core.ssa DEBUG on stmt: i = $phi466.1 -13:52:44,836 numba.core.ssa DEBUG on stmt: $binop_mul474.5 = i * _step -13:52:44,836 numba.core.ssa DEBUG on stmt: $binop_add478.6 = val + $binop_mul474.5 -13:52:44,836 numba.core.ssa DEBUG on stmt: arr[i] = $binop_add478.6 -13:52:44,836 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,836 numba.core.ssa DEBUG ==== SSA block rewrite pass on 492 -13:52:44,836 numba.core.ssa DEBUG Running -13:52:44,836 numba.core.ssa DEBUG on stmt: $494return_value.1 = cast(value=arr) -13:52:44,837 numba.core.ssa DEBUG on stmt: return $494return_value.1 -13:52:44,837 numba.core.ssa DEBUG Fix SSA violator on var _start -13:52:44,837 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,837 numba.core.ssa DEBUG Running -13:52:44,837 numba.core.ssa DEBUG on stmt: start = arg(0, name=start) -13:52:44,837 numba.core.ssa DEBUG on stmt: stop = arg(1, name=stop) -13:52:44,837 numba.core.ssa DEBUG on stmt: step = arg(2, name=step) -13:52:44,837 numba.core.ssa DEBUG on stmt: dtype = arg(3, name=dtype) -13:52:44,837 numba.core.ssa DEBUG on stmt: $6load_deref.0 = freevar(start_value: None) -13:52:44,837 numba.core.ssa DEBUG on stmt: $constNone8 = const(NoneType, None) -13:52:44,837 numba.core.ssa DEBUG on stmt: $maybeNone8 = const(int, 0) -13:52:44,837 numba.core.ssa DEBUG on stmt: $bool8 = global(bool: ) -13:52:44,837 numba.core.ssa DEBUG on stmt: $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,837 numba.core.ssa DEBUG on stmt: jump 14 -13:52:44,837 numba.core.ssa DEBUG ==== SSA block rewrite pass on 14 -13:52:44,837 numba.core.ssa DEBUG Running -13:52:44,837 numba.core.ssa DEBUG on stmt: $phi16.0 = start -13:52:44,837 numba.core.ssa DEBUG on stmt: jump 16 -13:52:44,837 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:44,837 numba.core.ssa DEBUG Running -13:52:44,837 numba.core.ssa DEBUG on stmt: lit_start = $phi16.0 -13:52:44,837 numba.core.ssa DEBUG on stmt: $18load_deref.1 = freevar(stop_value: None) -13:52:44,837 numba.core.ssa DEBUG on stmt: $constNone20 = const(NoneType, None) -13:52:44,837 numba.core.ssa DEBUG on stmt: $maybeNone20 = const(int, 0) -13:52:44,837 numba.core.ssa DEBUG on stmt: $bool20 = global(bool: ) -13:52:44,837 numba.core.ssa DEBUG on stmt: $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,837 numba.core.ssa DEBUG on stmt: jump 26 -13:52:44,837 numba.core.ssa DEBUG ==== SSA block rewrite pass on 26 -13:52:44,837 numba.core.ssa DEBUG Running -13:52:44,837 numba.core.ssa DEBUG on stmt: $phi28.0 = stop -13:52:44,837 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,837 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:44,837 numba.core.ssa DEBUG Running -13:52:44,837 numba.core.ssa DEBUG on stmt: lit_stop = $phi28.0 -13:52:44,837 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(step_value: None) -13:52:44,837 numba.core.ssa DEBUG on stmt: $constNone32 = const(NoneType, None) -13:52:44,837 numba.core.ssa DEBUG on stmt: $maybeNone32 = const(int, 0) -13:52:44,837 numba.core.ssa DEBUG on stmt: $bool32 = global(bool: ) -13:52:44,838 numba.core.ssa DEBUG on stmt: $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,838 numba.core.ssa DEBUG on stmt: jump 38 -13:52:44,838 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:44,838 numba.core.ssa DEBUG Running -13:52:44,838 numba.core.ssa DEBUG on stmt: $phi40.0 = step -13:52:44,838 numba.core.ssa DEBUG on stmt: jump 40 -13:52:44,838 numba.core.ssa DEBUG ==== SSA block rewrite pass on 40 -13:52:44,838 numba.core.ssa DEBUG Running -13:52:44,838 numba.core.ssa DEBUG on stmt: lit_step = $phi40.0 -13:52:44,838 numba.core.ssa DEBUG on stmt: $constNone44 = const(NoneType, None) -13:52:44,838 numba.core.ssa DEBUG on stmt: $maybeNone44 = lit_step is not $constNone44 -13:52:44,838 numba.core.ssa DEBUG on stmt: $bool44 = global(bool: ) -13:52:44,838 numba.core.ssa DEBUG on stmt: $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,838 numba.core.ssa DEBUG on stmt: branch $pred44, 46, 50 -13:52:44,838 numba.core.ssa DEBUG ==== SSA block rewrite pass on 46 -13:52:44,838 numba.core.ssa DEBUG Running -13:52:44,838 numba.core.ssa DEBUG on stmt: $phi52.0 = lit_step -13:52:44,838 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,838 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:44,838 numba.core.ssa DEBUG Running -13:52:44,838 numba.core.ssa DEBUG on stmt: $const50.0 = const(int, 1) -13:52:44,838 numba.core.ssa DEBUG on stmt: $phi52.0.1 = $const50.0 -13:52:44,838 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,838 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:44,838 numba.core.ssa DEBUG Running -13:52:44,838 numba.core.ssa DEBUG on stmt: $phi52.0.2 = phi(incoming_values=[Var($phi52.0.1, arrayobj.py:4801), Var($phi52.0, arrayobj.py:4801)], incoming_blocks=[50, 46]) -13:52:44,838 numba.core.ssa DEBUG on stmt: _step = $phi52.0.2 -13:52:44,838 numba.core.ssa DEBUG on stmt: $constNone56 = const(NoneType, None) -13:52:44,838 numba.core.ssa DEBUG on stmt: $maybeNone56 = lit_stop is $constNone56 -13:52:44,838 numba.core.ssa DEBUG on stmt: $bool56 = global(bool: ) -13:52:44,838 numba.core.ssa DEBUG on stmt: $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,838 numba.core.ssa DEBUG on stmt: branch $pred56, 58, 68 -13:52:44,838 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:44,838 numba.core.ssa DEBUG Running -13:52:44,838 numba.core.ssa DEBUG on stmt: $const58.0 = const(int, 0) -13:52:44,838 numba.core.ssa DEBUG on stmt: _stop = lit_start -13:52:44,839 numba.core.ssa DEBUG on stmt: _start = $const58.0 -13:52:44,839 numba.core.ssa DEBUG first assign: _start -13:52:44,839 numba.core.ssa DEBUG replaced with: _start = $const58.0 -13:52:44,839 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,839 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:44,839 numba.core.ssa DEBUG Running -13:52:44,839 numba.core.ssa DEBUG on stmt: _stop.1 = lit_stop -13:52:44,839 numba.core.ssa DEBUG on stmt: _start = lit_start -13:52:44,839 numba.core.ssa DEBUG replaced with: _start.1 = lit_start -13:52:44,839 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,839 numba.core.ssa DEBUG ==== SSA block rewrite pass on 76 -13:52:44,839 numba.core.ssa DEBUG Running -13:52:44,839 numba.core.ssa DEBUG on stmt: _stop.2 = phi(incoming_values=[Var(_stop, arrayobj.py:4803), Var(_stop.1, arrayobj.py:4805)], incoming_blocks=[58, 68]) -13:52:44,839 numba.core.ssa DEBUG on stmt: $const78.1 = const(int, 0) -13:52:44,839 numba.core.ssa DEBUG on stmt: $80compare_op.2 = _step == $const78.1 -13:52:44,839 numba.core.ssa DEBUG on stmt: bool86 = global(bool: ) -13:52:44,839 numba.core.ssa DEBUG on stmt: $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,839 numba.core.ssa DEBUG on stmt: branch $86pred, 88, 118 -13:52:44,839 numba.core.ssa DEBUG ==== SSA block rewrite pass on 88 -13:52:44,839 numba.core.ssa DEBUG Running -13:52:44,839 numba.core.ssa DEBUG on stmt: $88load_global.0 = global(ValueError: ) -13:52:44,839 numba.core.ssa DEBUG on stmt: $const100.2 = const(str, Maximum allowed size exceeded) -13:52:44,839 numba.core.ssa DEBUG on stmt: $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,839 numba.core.ssa DEBUG on stmt: raise ('Maximum allowed size exceeded') -13:52:44,839 numba.core.ssa DEBUG ==== SSA block rewrite pass on 118 -13:52:44,839 numba.core.ssa DEBUG Running -13:52:44,839 numba.core.ssa DEBUG on stmt: $binop_sub122.2 = _stop.2 - _start -13:52:44,839 numba.core.ssa DEBUG on stmt: nitems_c = $binop_sub122.2 / _step -13:52:44,839 numba.core.ssa DEBUG on stmt: $134load_global.5 = global(int: ) -13:52:44,839 numba.core.ssa DEBUG on stmt: $146load_global.7 = global(math: ) -13:52:44,839 numba.core.ssa DEBUG on stmt: $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) -13:52:44,839 numba.core.ssa DEBUG on stmt: $170load_attr.11 = getattr(value=nitems_c, attr=real) -13:52:44,839 numba.core.ssa DEBUG on stmt: $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,839 numba.core.ssa DEBUG on stmt: nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,839 numba.core.ssa DEBUG on stmt: $210load_deref.14 = freevar(use_complex: False) -13:52:44,839 numba.core.ssa DEBUG on stmt: $const212.15 = const(bool, True) -13:52:44,840 numba.core.ssa DEBUG on stmt: $214is_op.16 = const(int, 0) -13:52:44,840 numba.core.ssa DEBUG on stmt: bool216 = global(bool: ) -13:52:44,840 numba.core.ssa DEBUG on stmt: $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,840 numba.core.ssa DEBUG on stmt: jump 356 -13:52:44,840 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,840 numba.core.ssa DEBUG Running -13:52:44,840 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(max: ) -13:52:44,840 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 0) -13:52:44,840 numba.core.ssa DEBUG on stmt: nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,840 numba.core.ssa DEBUG on stmt: jump 388 -13:52:44,840 numba.core.ssa DEBUG ==== SSA block rewrite pass on 388 -13:52:44,840 numba.core.ssa DEBUG Running -13:52:44,840 numba.core.ssa DEBUG on stmt: $388load_global.0 = global(np: ) -13:52:44,840 numba.core.ssa DEBUG on stmt: $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) -13:52:44,840 numba.core.ssa DEBUG on stmt: $412load_deref.4 = freevar(true_dtype: int64) -13:52:44,840 numba.core.ssa DEBUG on stmt: arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,840 numba.core.ssa DEBUG on stmt: val = _start -13:52:44,840 numba.core.ssa DEBUG on stmt: $434load_global.7 = global(range: ) -13:52:44,840 numba.core.ssa DEBUG on stmt: $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,840 numba.core.ssa DEBUG on stmt: $462get_iter.11 = getiter(value=$452call.10) -13:52:44,840 numba.core.ssa DEBUG on stmt: $phi464.0 = $462get_iter.11 -13:52:44,840 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,840 numba.core.ssa DEBUG ==== SSA block rewrite pass on 464 -13:52:44,840 numba.core.ssa DEBUG Running -13:52:44,840 numba.core.ssa DEBUG on stmt: $464for_iter.1 = iternext(value=$phi464.0) -13:52:44,840 numba.core.ssa DEBUG on stmt: $464for_iter.2 = pair_first(value=$464for_iter.1) -13:52:44,840 numba.core.ssa DEBUG on stmt: $464for_iter.3 = pair_second(value=$464for_iter.1) -13:52:44,840 numba.core.ssa DEBUG on stmt: $phi466.1 = $464for_iter.2 -13:52:44,840 numba.core.ssa DEBUG on stmt: branch $464for_iter.3, 466, 492 -13:52:44,840 numba.core.ssa DEBUG ==== SSA block rewrite pass on 466 -13:52:44,840 numba.core.ssa DEBUG Running -13:52:44,840 numba.core.ssa DEBUG on stmt: i = $phi466.1 -13:52:44,840 numba.core.ssa DEBUG on stmt: $binop_mul474.5 = i * _step -13:52:44,840 numba.core.ssa DEBUG on stmt: $binop_add478.6 = val + $binop_mul474.5 -13:52:44,840 numba.core.ssa DEBUG on stmt: arr[i] = $binop_add478.6 -13:52:44,840 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,841 numba.core.ssa DEBUG ==== SSA block rewrite pass on 492 -13:52:44,841 numba.core.ssa DEBUG Running -13:52:44,841 numba.core.ssa DEBUG on stmt: $494return_value.1 = cast(value=arr) -13:52:44,841 numba.core.ssa DEBUG on stmt: return $494return_value.1 -13:52:44,841 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {58: [], - 68: []}) -13:52:44,841 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:44,841 numba.core.ssa DEBUG Running -13:52:44,841 numba.core.ssa DEBUG on stmt: start = arg(0, name=start) -13:52:44,841 numba.core.ssa DEBUG on stmt: stop = arg(1, name=stop) -13:52:44,841 numba.core.ssa DEBUG on stmt: step = arg(2, name=step) -13:52:44,841 numba.core.ssa DEBUG on stmt: dtype = arg(3, name=dtype) -13:52:44,841 numba.core.ssa DEBUG on stmt: $6load_deref.0 = freevar(start_value: None) -13:52:44,841 numba.core.ssa DEBUG on stmt: $constNone8 = const(NoneType, None) -13:52:44,841 numba.core.ssa DEBUG on stmt: $maybeNone8 = const(int, 0) -13:52:44,841 numba.core.ssa DEBUG on stmt: $bool8 = global(bool: ) -13:52:44,841 numba.core.ssa DEBUG on stmt: $pred8 = call $bool8($maybeNone8, func=$bool8, args=(Var($maybeNone8, arrayobj.py:4797),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,841 numba.core.ssa DEBUG on stmt: jump 14 -13:52:44,841 numba.core.ssa DEBUG ==== SSA block rewrite pass on 14 -13:52:44,841 numba.core.ssa DEBUG Running -13:52:44,841 numba.core.ssa DEBUG on stmt: $phi16.0 = start -13:52:44,841 numba.core.ssa DEBUG on stmt: jump 16 -13:52:44,841 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:44,841 numba.core.ssa DEBUG Running -13:52:44,841 numba.core.ssa DEBUG on stmt: lit_start = $phi16.0 -13:52:44,841 numba.core.ssa DEBUG on stmt: $18load_deref.1 = freevar(stop_value: None) -13:52:44,841 numba.core.ssa DEBUG on stmt: $constNone20 = const(NoneType, None) -13:52:44,841 numba.core.ssa DEBUG on stmt: $maybeNone20 = const(int, 0) -13:52:44,841 numba.core.ssa DEBUG on stmt: $bool20 = global(bool: ) -13:52:44,841 numba.core.ssa DEBUG on stmt: $pred20 = call $bool20($maybeNone20, func=$bool20, args=(Var($maybeNone20, arrayobj.py:4798),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,841 numba.core.ssa DEBUG on stmt: jump 26 -13:52:44,841 numba.core.ssa DEBUG ==== SSA block rewrite pass on 26 -13:52:44,841 numba.core.ssa DEBUG Running -13:52:44,841 numba.core.ssa DEBUG on stmt: $phi28.0 = stop -13:52:44,841 numba.core.ssa DEBUG on stmt: jump 28 -13:52:44,841 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:44,842 numba.core.ssa DEBUG Running -13:52:44,842 numba.core.ssa DEBUG on stmt: lit_stop = $phi28.0 -13:52:44,842 numba.core.ssa DEBUG on stmt: $30load_deref.1 = freevar(step_value: None) -13:52:44,842 numba.core.ssa DEBUG on stmt: $constNone32 = const(NoneType, None) -13:52:44,842 numba.core.ssa DEBUG on stmt: $maybeNone32 = const(int, 0) -13:52:44,842 numba.core.ssa DEBUG on stmt: $bool32 = global(bool: ) -13:52:44,842 numba.core.ssa DEBUG on stmt: $pred32 = call $bool32($maybeNone32, func=$bool32, args=(Var($maybeNone32, arrayobj.py:4799),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,842 numba.core.ssa DEBUG on stmt: jump 38 -13:52:44,842 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:44,842 numba.core.ssa DEBUG Running -13:52:44,842 numba.core.ssa DEBUG on stmt: $phi40.0 = step -13:52:44,842 numba.core.ssa DEBUG on stmt: jump 40 -13:52:44,842 numba.core.ssa DEBUG ==== SSA block rewrite pass on 40 -13:52:44,842 numba.core.ssa DEBUG Running -13:52:44,842 numba.core.ssa DEBUG on stmt: lit_step = $phi40.0 -13:52:44,842 numba.core.ssa DEBUG on stmt: $constNone44 = const(NoneType, None) -13:52:44,842 numba.core.ssa DEBUG on stmt: $maybeNone44 = lit_step is not $constNone44 -13:52:44,842 numba.core.ssa DEBUG on stmt: $bool44 = global(bool: ) -13:52:44,842 numba.core.ssa DEBUG on stmt: $pred44 = call $bool44($maybeNone44, func=$bool44, args=(Var($maybeNone44, arrayobj.py:4801),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,842 numba.core.ssa DEBUG on stmt: branch $pred44, 46, 50 -13:52:44,842 numba.core.ssa DEBUG ==== SSA block rewrite pass on 46 -13:52:44,842 numba.core.ssa DEBUG Running -13:52:44,842 numba.core.ssa DEBUG on stmt: $phi52.0 = lit_step -13:52:44,842 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,842 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:44,842 numba.core.ssa DEBUG Running -13:52:44,842 numba.core.ssa DEBUG on stmt: $const50.0 = const(int, 1) -13:52:44,842 numba.core.ssa DEBUG on stmt: $phi52.0.1 = $const50.0 -13:52:44,842 numba.core.ssa DEBUG on stmt: jump 52 -13:52:44,842 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:44,842 numba.core.ssa DEBUG Running -13:52:44,842 numba.core.ssa DEBUG on stmt: $phi52.0.2 = phi(incoming_values=[Var($phi52.0.1, arrayobj.py:4801), Var($phi52.0, arrayobj.py:4801)], incoming_blocks=[50, 46]) -13:52:44,842 numba.core.ssa DEBUG on stmt: _step = $phi52.0.2 -13:52:44,842 numba.core.ssa DEBUG on stmt: $constNone56 = const(NoneType, None) -13:52:44,842 numba.core.ssa DEBUG on stmt: $maybeNone56 = lit_stop is $constNone56 -13:52:44,842 numba.core.ssa DEBUG on stmt: $bool56 = global(bool: ) -13:52:44,843 numba.core.ssa DEBUG on stmt: $pred56 = call $bool56($maybeNone56, func=$bool56, args=(Var($maybeNone56, arrayobj.py:4802),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,843 numba.core.ssa DEBUG on stmt: branch $pred56, 58, 68 -13:52:44,843 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:44,843 numba.core.ssa DEBUG Running -13:52:44,843 numba.core.ssa DEBUG on stmt: $const58.0 = const(int, 0) -13:52:44,843 numba.core.ssa DEBUG on stmt: _stop = lit_start -13:52:44,843 numba.core.ssa DEBUG on stmt: _start = $const58.0 -13:52:44,843 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,843 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:44,843 numba.core.ssa DEBUG Running -13:52:44,843 numba.core.ssa DEBUG on stmt: _stop.1 = lit_stop -13:52:44,843 numba.core.ssa DEBUG on stmt: _start.1 = lit_start -13:52:44,843 numba.core.ssa DEBUG on stmt: jump 76 -13:52:44,843 numba.core.ssa DEBUG ==== SSA block rewrite pass on 76 -13:52:44,843 numba.core.ssa DEBUG Running -13:52:44,843 numba.core.ssa DEBUG on stmt: _stop.2 = phi(incoming_values=[Var(_stop, arrayobj.py:4803), Var(_stop.1, arrayobj.py:4805)], incoming_blocks=[58, 68]) -13:52:44,843 numba.core.ssa DEBUG on stmt: $const78.1 = const(int, 0) -13:52:44,843 numba.core.ssa DEBUG on stmt: $80compare_op.2 = _step == $const78.1 -13:52:44,843 numba.core.ssa DEBUG on stmt: bool86 = global(bool: ) -13:52:44,843 numba.core.ssa DEBUG on stmt: $86pred = call bool86($80compare_op.2, func=bool86, args=(Var($80compare_op.2, arrayobj.py:4807),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,843 numba.core.ssa DEBUG on stmt: branch $86pred, 88, 118 -13:52:44,843 numba.core.ssa DEBUG ==== SSA block rewrite pass on 88 -13:52:44,843 numba.core.ssa DEBUG Running -13:52:44,843 numba.core.ssa DEBUG on stmt: $88load_global.0 = global(ValueError: ) -13:52:44,843 numba.core.ssa DEBUG on stmt: $const100.2 = const(str, Maximum allowed size exceeded) -13:52:44,843 numba.core.ssa DEBUG on stmt: $106call.3 = call $88load_global.0($const100.2, func=$88load_global.0, args=[Var($const100.2, arrayobj.py:4808)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,843 numba.core.ssa DEBUG on stmt: raise ('Maximum allowed size exceeded') -13:52:44,843 numba.core.ssa DEBUG ==== SSA block rewrite pass on 118 -13:52:44,843 numba.core.ssa DEBUG Running -13:52:44,843 numba.core.ssa DEBUG on stmt: $binop_sub122.2 = _stop.2 - _start -13:52:44,843 numba.core.ssa DEBUG find_def var='_start' stmt=$binop_sub122.2 = _stop.2 - _start -13:52:44,843 numba.core.ssa DEBUG find_def_from_top label 118 -13:52:44,843 numba.core.ssa DEBUG idom 76 from label 118 -13:52:44,843 numba.core.ssa DEBUG find_def_from_bottom label 76 -13:52:44,843 numba.core.ssa DEBUG find_def_from_top label 76 -13:52:44,844 numba.core.ssa DEBUG insert phi node _start.2 = phi(incoming_values=[], incoming_blocks=[]) at 76 -13:52:44,844 numba.core.ssa DEBUG find_def_from_bottom label 58 -13:52:44,844 numba.core.ssa DEBUG incoming_def _start = $const58.0 -13:52:44,844 numba.core.ssa DEBUG find_def_from_bottom label 68 -13:52:44,844 numba.core.ssa DEBUG incoming_def _start.1 = lit_start -13:52:44,844 numba.core.ssa DEBUG replaced with: $binop_sub122.2 = _stop.2 - _start.2 -13:52:44,844 numba.core.ssa DEBUG on stmt: nitems_c = $binop_sub122.2 / _step -13:52:44,844 numba.core.ssa DEBUG on stmt: $134load_global.5 = global(int: ) -13:52:44,844 numba.core.ssa DEBUG on stmt: $146load_global.7 = global(math: ) -13:52:44,844 numba.core.ssa DEBUG on stmt: $158load_attr.9 = getattr(value=$146load_global.7, attr=ceil) -13:52:44,844 numba.core.ssa DEBUG on stmt: $170load_attr.11 = getattr(value=nitems_c, attr=real) -13:52:44,844 numba.core.ssa DEBUG on stmt: $184call.12 = call $158load_attr.9($170load_attr.11, func=$158load_attr.9, args=[Var($170load_attr.11, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,844 numba.core.ssa DEBUG on stmt: nitems_r = call $134load_global.5($184call.12, func=$134load_global.5, args=[Var($184call.12, arrayobj.py:4811)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,844 numba.core.ssa DEBUG on stmt: $210load_deref.14 = freevar(use_complex: False) -13:52:44,844 numba.core.ssa DEBUG on stmt: $const212.15 = const(bool, True) -13:52:44,844 numba.core.ssa DEBUG on stmt: $214is_op.16 = const(int, 0) -13:52:44,844 numba.core.ssa DEBUG on stmt: bool216 = global(bool: ) -13:52:44,844 numba.core.ssa DEBUG on stmt: $216pred = call bool216($214is_op.16, func=bool216, args=(Var($214is_op.16, arrayobj.py:4814),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,844 numba.core.ssa DEBUG on stmt: jump 356 -13:52:44,844 numba.core.ssa DEBUG ==== SSA block rewrite pass on 356 -13:52:44,844 numba.core.ssa DEBUG Running -13:52:44,844 numba.core.ssa DEBUG on stmt: $356load_global.0 = global(max: ) -13:52:44,844 numba.core.ssa DEBUG on stmt: $const370.3 = const(int, 0) -13:52:44,844 numba.core.ssa DEBUG on stmt: nitems = call $356load_global.0(nitems_r, $const370.3, func=$356load_global.0, args=[Var(nitems_r, arrayobj.py:4811), Var($const370.3, arrayobj.py:4818)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,844 numba.core.ssa DEBUG on stmt: jump 388 -13:52:44,844 numba.core.ssa DEBUG ==== SSA block rewrite pass on 388 -13:52:44,844 numba.core.ssa DEBUG Running -13:52:44,844 numba.core.ssa DEBUG on stmt: $388load_global.0 = global(np: ) -13:52:44,844 numba.core.ssa DEBUG on stmt: $400load_attr.2 = getattr(value=$388load_global.0, attr=empty) -13:52:44,844 numba.core.ssa DEBUG on stmt: $412load_deref.4 = freevar(true_dtype: int64) -13:52:44,844 numba.core.ssa DEBUG on stmt: arr = call $400load_attr.2(nitems, $412load_deref.4, func=$400load_attr.2, args=[Var(nitems, arrayobj.py:4816), Var($412load_deref.4, arrayobj.py:4819)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,844 numba.core.ssa DEBUG on stmt: val = _start -13:52:44,845 numba.core.ssa DEBUG find_def var='_start' stmt=val = _start -13:52:44,845 numba.core.ssa DEBUG find_def_from_top label 388 -13:52:44,845 numba.core.ssa DEBUG idom 356 from label 388 -13:52:44,845 numba.core.ssa DEBUG find_def_from_bottom label 356 -13:52:44,845 numba.core.ssa DEBUG find_def_from_top label 356 -13:52:44,845 numba.core.ssa DEBUG idom 118 from label 356 -13:52:44,845 numba.core.ssa DEBUG find_def_from_bottom label 118 -13:52:44,845 numba.core.ssa DEBUG find_def_from_top label 118 -13:52:44,845 numba.core.ssa DEBUG idom 76 from label 118 -13:52:44,845 numba.core.ssa DEBUG find_def_from_bottom label 76 -13:52:44,845 numba.core.ssa DEBUG replaced with: val = _start.2 -13:52:44,845 numba.core.ssa DEBUG on stmt: $434load_global.7 = global(range: ) -13:52:44,845 numba.core.ssa DEBUG on stmt: $452call.10 = call $434load_global.7(nitems, func=$434load_global.7, args=[Var(nitems, arrayobj.py:4816)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,845 numba.core.ssa DEBUG on stmt: $462get_iter.11 = getiter(value=$452call.10) -13:52:44,845 numba.core.ssa DEBUG on stmt: $phi464.0 = $462get_iter.11 -13:52:44,845 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,845 numba.core.ssa DEBUG ==== SSA block rewrite pass on 464 -13:52:44,845 numba.core.ssa DEBUG Running -13:52:44,845 numba.core.ssa DEBUG on stmt: $464for_iter.1 = iternext(value=$phi464.0) -13:52:44,845 numba.core.ssa DEBUG on stmt: $464for_iter.2 = pair_first(value=$464for_iter.1) -13:52:44,845 numba.core.ssa DEBUG on stmt: $464for_iter.3 = pair_second(value=$464for_iter.1) -13:52:44,845 numba.core.ssa DEBUG on stmt: $phi466.1 = $464for_iter.2 -13:52:44,845 numba.core.ssa DEBUG on stmt: branch $464for_iter.3, 466, 492 -13:52:44,845 numba.core.ssa DEBUG ==== SSA block rewrite pass on 466 -13:52:44,845 numba.core.ssa DEBUG Running -13:52:44,845 numba.core.ssa DEBUG on stmt: i = $phi466.1 -13:52:44,845 numba.core.ssa DEBUG on stmt: $binop_mul474.5 = i * _step -13:52:44,845 numba.core.ssa DEBUG on stmt: $binop_add478.6 = val + $binop_mul474.5 -13:52:44,845 numba.core.ssa DEBUG on stmt: arr[i] = $binop_add478.6 -13:52:44,845 numba.core.ssa DEBUG on stmt: jump 464 -13:52:44,845 numba.core.ssa DEBUG ==== SSA block rewrite pass on 492 -13:52:44,845 numba.core.ssa DEBUG Running -13:52:44,845 numba.core.ssa DEBUG on stmt: $494return_value.1 = cast(value=arr) -13:52:44,845 numba.core.ssa DEBUG on stmt: return $494return_value.1 -13:52:44,861 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4388) - 2 COPY_FREE_VARS(arg=1, lineno=4388) - 4 RESUME(arg=0, lineno=4388) - 6 LOAD_GLOBAL(arg=1, lineno=4389) - 18 LOAD_FAST(arg=0, lineno=4389) - 20 LOAD_FAST(arg=1, lineno=4389) - 22 LOAD_DEREF(arg=2, lineno=4389) - 24 PRECALL(arg=3, lineno=4389) - 28 CALL(arg=3, lineno=4389) - 38 RETURN_VALUE(arg=None, lineno=4389) -13:52:44,861 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:44,861 numba.core.byteflow DEBUG stack: [] -13:52:44,861 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:44,861 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4388) -13:52:44,861 numba.core.byteflow DEBUG stack [] -13:52:44,861 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=4388) -13:52:44,862 numba.core.byteflow DEBUG stack [] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=4388) -13:52:44,862 numba.core.byteflow DEBUG stack [] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_GLOBAL(arg=1, lineno=4389) -13:52:44,862 numba.core.byteflow DEBUG stack [] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_FAST(arg=0, lineno=4389) -13:52:44,862 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0'] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=1, lineno=4389) -13:52:44,862 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2'] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_DEREF(arg=2, lineno=4389) -13:52:44,862 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3'] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=24, inst=PRECALL(arg=3, lineno=4389) -13:52:44,862 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=28, inst=CALL(arg=3, lineno=4389) -13:52:44,862 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:44,862 numba.core.byteflow DEBUG dispatch pc=38, inst=RETURN_VALUE(arg=None, lineno=4389) -13:52:44,862 numba.core.byteflow DEBUG stack ['$28call.5'] -13:52:44,862 numba.core.byteflow DEBUG end state. edges=[] -13:52:44,862 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:44,862 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:44,863 numba.core.byteflow DEBUG defmap: {} -13:52:44,863 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:44,863 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:44,863 numba.core.byteflow DEBUG keep phismap: {} -13:52:44,863 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:44,863 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:44,863 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'idx': 0, 'res': '$6load_global.0'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$shape18.2'}), (20, {'res': '$dtype20.3'}), (22, {'res': '$22load_deref.4'}), (24, {}), (26, {}), (28, {'func': '$6load_global.0', 'args': ['$shape18.2', '$dtype20.3', '$22load_deref.4'], 'kw_names': None, 'res': '$28call.5'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'retval': '$28call.5', 'castval': '$38return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:44,863 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $6load_global.0 = global(numpy_empty_nd: ) ['$6load_global.0'] - $22load_deref.4 = freevar(retty: array(int64, 1d, C)) ['$22load_deref.4'] - $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_deref.4', '$28call.5', '$6load_global.0', 'dtype', 'shape'] - $38return_value.6 = cast(value=$28call.5) ['$28call.5', '$38return_value.6'] - return $38return_value.6 ['$38return_value.6'] - -13:52:44,871 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:44,871 numba.core.ssa DEBUG Running -13:52:44,871 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:44,871 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:44,871 numba.core.ssa DEBUG on stmt: $6load_global.0 = global(numpy_empty_nd: ) -13:52:44,871 numba.core.ssa DEBUG on stmt: $22load_deref.4 = freevar(retty: array(int64, 1d, C)) -13:52:44,871 numba.core.ssa DEBUG on stmt: $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:44,871 numba.core.ssa DEBUG on stmt: $38return_value.6 = cast(value=$28call.5) -13:52:44,872 numba.core.ssa DEBUG on stmt: return $38return_value.6 -13:52:44,872 numba.core.ssa DEBUG defs defaultdict(, - {'$22load_deref.4': [(, - 0)], - '$28call.5': [(, - 0)], - '$38return_value.6': [(, - 0)], - '$6load_global.0': [(, - 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:44,872 numba.core.ssa DEBUG SSA violators -13:52:45,76 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=86) - 2 COPY_FREE_VARS(arg=2, lineno=86) - 4 RESUME(arg=0, lineno=86) - 6 LOAD_FAST(arg=2, lineno=92) - 8 LOAD_CONST(arg=1, lineno=92) - 10 COMPARE_OP(arg=5, lineno=92) - 16 POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=92) - 18 LOAD_ASSERTION_ERROR(arg=None, lineno=92) - 20 RAISE_VARARGS(arg=1, lineno=92) -> 22 LOAD_FAST(arg=3, lineno=93) - 24 LOAD_FAST(arg=2, lineno=93) - 26 COMPARE_OP(arg=4, lineno=93) - 32 POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=93) - 34 LOAD_ASSERTION_ERROR(arg=None, lineno=93) - 36 RAISE_VARARGS(arg=1, lineno=93) -> 38 LOAD_FAST(arg=2, lineno=95) - 40 LOAD_FAST(arg=3, lineno=95) - 42 BINARY_OP(arg=0, lineno=95) - 46 LOAD_CONST(arg=2, lineno=95) - 48 BINARY_OP(arg=9, lineno=95) - 52 STORE_FAST(arg=4, lineno=95) - 54 PUSH_NULL(arg=None, lineno=102) - 56 LOAD_DEREF(arg=9, lineno=102) - 58 PUSH_NULL(arg=None, lineno=102) - 60 LOAD_DEREF(arg=8, lineno=102) - 62 LOAD_FAST(arg=0, lineno=102) - 64 LOAD_FAST(arg=1, lineno=102) - 66 LOAD_FAST(arg=4, lineno=102) - 68 BINARY_SUBSCR(arg=None, lineno=102) - 78 PRECALL(arg=2, lineno=102) - 82 CALL(arg=2, lineno=102) - 92 PUSH_NULL(arg=None, lineno=102) - 94 LOAD_DEREF(arg=8, lineno=102) - 96 LOAD_FAST(arg=0, lineno=102) - 98 LOAD_FAST(arg=1, lineno=102) - 100 LOAD_FAST(arg=2, lineno=102) - 102 BINARY_SUBSCR(arg=None, lineno=102) - 112 PRECALL(arg=2, lineno=102) - 116 CALL(arg=2, lineno=102) - 126 PRECALL(arg=2, lineno=102) - 130 CALL(arg=2, lineno=102) - 140 POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=102) - 142 LOAD_FAST(arg=1, lineno=103) - 144 LOAD_FAST(arg=4, lineno=103) - 146 BINARY_SUBSCR(arg=None, lineno=103) - 156 LOAD_FAST(arg=1, lineno=103) - 158 LOAD_FAST(arg=2, lineno=103) - 160 BINARY_SUBSCR(arg=None, lineno=103) - 170 SWAP(arg=2, lineno=103) - 172 LOAD_FAST(arg=1, lineno=103) - 174 LOAD_FAST(arg=2, lineno=103) - 176 STORE_SUBSCR(arg=None, lineno=103) - 180 LOAD_FAST(arg=1, lineno=103) - 182 LOAD_FAST(arg=4, lineno=103) - 184 STORE_SUBSCR(arg=None, lineno=103) -> 188 PUSH_NULL(arg=None, lineno=104) - 190 LOAD_DEREF(arg=9, lineno=104) - 192 PUSH_NULL(arg=None, lineno=104) - 194 LOAD_DEREF(arg=8, lineno=104) - 196 LOAD_FAST(arg=0, lineno=104) - 198 LOAD_FAST(arg=1, lineno=104) - 200 LOAD_FAST(arg=3, lineno=104) - 202 BINARY_SUBSCR(arg=None, lineno=104) - 212 PRECALL(arg=2, lineno=104) - 216 CALL(arg=2, lineno=104) - 226 PUSH_NULL(arg=None, lineno=104) - 228 LOAD_DEREF(arg=8, lineno=104) - 230 LOAD_FAST(arg=0, lineno=104) - 232 LOAD_FAST(arg=1, lineno=104) - 234 LOAD_FAST(arg=4, lineno=104) - 236 BINARY_SUBSCR(arg=None, lineno=104) - 246 PRECALL(arg=2, lineno=104) - 250 CALL(arg=2, lineno=104) - 260 PRECALL(arg=2, lineno=104) - 264 CALL(arg=2, lineno=104) - 274 POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=104) - 276 LOAD_FAST(arg=1, lineno=105) - 278 LOAD_FAST(arg=4, lineno=105) - 280 BINARY_SUBSCR(arg=None, lineno=105) - 290 LOAD_FAST(arg=1, lineno=105) - 292 LOAD_FAST(arg=3, lineno=105) - 294 BINARY_SUBSCR(arg=None, lineno=105) - 304 SWAP(arg=2, lineno=105) - 306 LOAD_FAST(arg=1, lineno=105) - 308 LOAD_FAST(arg=3, lineno=105) - 310 STORE_SUBSCR(arg=None, lineno=105) - 314 LOAD_FAST(arg=1, lineno=105) - 316 LOAD_FAST(arg=4, lineno=105) - 318 STORE_SUBSCR(arg=None, lineno=105) -> 322 PUSH_NULL(arg=None, lineno=106) - 324 LOAD_DEREF(arg=9, lineno=106) - 326 PUSH_NULL(arg=None, lineno=106) - 328 LOAD_DEREF(arg=8, lineno=106) - 330 LOAD_FAST(arg=0, lineno=106) - 332 LOAD_FAST(arg=1, lineno=106) - 334 LOAD_FAST(arg=4, lineno=106) - 336 BINARY_SUBSCR(arg=None, lineno=106) - 346 PRECALL(arg=2, lineno=106) - 350 CALL(arg=2, lineno=106) - 360 PUSH_NULL(arg=None, lineno=106) - 362 LOAD_DEREF(arg=8, lineno=106) - 364 LOAD_FAST(arg=0, lineno=106) - 366 LOAD_FAST(arg=1, lineno=106) - 368 LOAD_FAST(arg=2, lineno=106) - 370 BINARY_SUBSCR(arg=None, lineno=106) - 380 PRECALL(arg=2, lineno=106) - 384 CALL(arg=2, lineno=106) - 394 PRECALL(arg=2, lineno=106) - 398 CALL(arg=2, lineno=106) - 408 POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=106) - 410 LOAD_FAST(arg=1, lineno=107) - 412 LOAD_FAST(arg=4, lineno=107) - 414 BINARY_SUBSCR(arg=None, lineno=107) - 424 LOAD_FAST(arg=1, lineno=107) - 426 LOAD_FAST(arg=2, lineno=107) - 428 BINARY_SUBSCR(arg=None, lineno=107) - 438 SWAP(arg=2, lineno=107) - 440 LOAD_FAST(arg=1, lineno=107) - 442 LOAD_FAST(arg=2, lineno=107) - 444 STORE_SUBSCR(arg=None, lineno=107) - 448 LOAD_FAST(arg=1, lineno=107) - 450 LOAD_FAST(arg=4, lineno=107) - 452 STORE_SUBSCR(arg=None, lineno=107) -> 456 PUSH_NULL(arg=None, lineno=108) - 458 LOAD_DEREF(arg=8, lineno=108) - 460 LOAD_FAST(arg=0, lineno=108) - 462 LOAD_FAST(arg=1, lineno=108) - 464 LOAD_FAST(arg=4, lineno=108) - 466 BINARY_SUBSCR(arg=None, lineno=108) - 476 PRECALL(arg=2, lineno=108) - 480 CALL(arg=2, lineno=108) - 490 STORE_FAST(arg=5, lineno=108) - 492 LOAD_FAST(arg=1, lineno=111) - 494 LOAD_FAST(arg=4, lineno=111) - 496 BINARY_SUBSCR(arg=None, lineno=111) - 506 LOAD_FAST(arg=1, lineno=111) - 508 LOAD_FAST(arg=3, lineno=111) - 510 BINARY_SUBSCR(arg=None, lineno=111) - 520 SWAP(arg=2, lineno=111) - 522 LOAD_FAST(arg=1, lineno=111) - 524 LOAD_FAST(arg=3, lineno=111) - 526 STORE_SUBSCR(arg=None, lineno=111) - 530 LOAD_FAST(arg=1, lineno=111) - 532 LOAD_FAST(arg=4, lineno=111) - 534 STORE_SUBSCR(arg=None, lineno=111) - 538 LOAD_FAST(arg=2, lineno=112) - 540 STORE_FAST(arg=6, lineno=112) - 542 LOAD_FAST(arg=3, lineno=113) - 544 LOAD_CONST(arg=2, lineno=113) - 546 BINARY_OP(arg=10, lineno=113) - 550 STORE_FAST(arg=7, lineno=113) - 552 NOP(arg=None, lineno=114) -> 554 LOAD_FAST(arg=6, lineno=115) - 556 LOAD_FAST(arg=3, lineno=115) - 558 COMPARE_OP(arg=0, lineno=115) - 564 POP_JUMP_FORWARD_IF_FALSE(arg=67, lineno=115) - 566 PUSH_NULL(arg=None, lineno=115) - 568 LOAD_DEREF(arg=9, lineno=115) - 570 PUSH_NULL(arg=None, lineno=115) - 572 LOAD_DEREF(arg=8, lineno=115) - 574 LOAD_FAST(arg=0, lineno=115) - 576 LOAD_FAST(arg=1, lineno=115) - 578 LOAD_FAST(arg=6, lineno=115) - 580 BINARY_SUBSCR(arg=None, lineno=115) - 590 PRECALL(arg=2, lineno=115) - 594 CALL(arg=2, lineno=115) - 604 LOAD_FAST(arg=5, lineno=115) - 606 PRECALL(arg=2, lineno=115) - 610 CALL(arg=2, lineno=115) - 620 POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=115) -> 622 LOAD_FAST(arg=6, lineno=116) - 624 LOAD_CONST(arg=2, lineno=116) - 626 BINARY_OP(arg=13, lineno=116) - 630 STORE_FAST(arg=6, lineno=116) - 632 LOAD_FAST(arg=6, lineno=115) - 634 LOAD_FAST(arg=3, lineno=115) - 636 COMPARE_OP(arg=0, lineno=115) - 642 POP_JUMP_FORWARD_IF_FALSE(arg=28, lineno=115) - 644 PUSH_NULL(arg=None, lineno=115) - 646 LOAD_DEREF(arg=9, lineno=115) - 648 PUSH_NULL(arg=None, lineno=115) - 650 LOAD_DEREF(arg=8, lineno=115) - 652 LOAD_FAST(arg=0, lineno=115) - 654 LOAD_FAST(arg=1, lineno=115) - 656 LOAD_FAST(arg=6, lineno=115) - 658 BINARY_SUBSCR(arg=None, lineno=115) - 668 PRECALL(arg=2, lineno=115) - 672 CALL(arg=2, lineno=115) - 682 LOAD_FAST(arg=5, lineno=115) - 684 PRECALL(arg=2, lineno=115) - 688 CALL(arg=2, lineno=115) - 698 POP_JUMP_BACKWARD_IF_TRUE(arg=39, lineno=115) -> 700 LOAD_FAST(arg=7, lineno=117) - 702 LOAD_FAST(arg=2, lineno=117) - 704 COMPARE_OP(arg=5, lineno=117) - 710 POP_JUMP_FORWARD_IF_FALSE(arg=67, lineno=117) - 712 PUSH_NULL(arg=None, lineno=117) - 714 LOAD_DEREF(arg=9, lineno=117) - 716 LOAD_FAST(arg=5, lineno=117) - 718 PUSH_NULL(arg=None, lineno=117) - 720 LOAD_DEREF(arg=8, lineno=117) - 722 LOAD_FAST(arg=0, lineno=117) - 724 LOAD_FAST(arg=1, lineno=117) - 726 LOAD_FAST(arg=7, lineno=117) - 728 BINARY_SUBSCR(arg=None, lineno=117) - 738 PRECALL(arg=2, lineno=117) - 742 CALL(arg=2, lineno=117) - 752 PRECALL(arg=2, lineno=117) - 756 CALL(arg=2, lineno=117) - 766 POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=117) -> 768 LOAD_FAST(arg=7, lineno=118) - 770 LOAD_CONST(arg=2, lineno=118) - 772 BINARY_OP(arg=23, lineno=118) - 776 STORE_FAST(arg=7, lineno=118) - 778 LOAD_FAST(arg=7, lineno=117) - 780 LOAD_FAST(arg=2, lineno=117) - 782 COMPARE_OP(arg=5, lineno=117) - 788 POP_JUMP_FORWARD_IF_FALSE(arg=28, lineno=117) - 790 PUSH_NULL(arg=None, lineno=117) - 792 LOAD_DEREF(arg=9, lineno=117) - 794 LOAD_FAST(arg=5, lineno=117) - 796 PUSH_NULL(arg=None, lineno=117) - 798 LOAD_DEREF(arg=8, lineno=117) - 800 LOAD_FAST(arg=0, lineno=117) - 802 LOAD_FAST(arg=1, lineno=117) - 804 LOAD_FAST(arg=7, lineno=117) - 806 BINARY_SUBSCR(arg=None, lineno=117) - 816 PRECALL(arg=2, lineno=117) - 820 CALL(arg=2, lineno=117) - 830 PRECALL(arg=2, lineno=117) - 834 CALL(arg=2, lineno=117) - 844 POP_JUMP_BACKWARD_IF_TRUE(arg=39, lineno=117) -> 846 LOAD_FAST(arg=6, lineno=119) - 848 LOAD_FAST(arg=7, lineno=119) - 850 COMPARE_OP(arg=5, lineno=119) - 856 POP_JUMP_FORWARD_IF_FALSE(arg=1, lineno=119) - 858 JUMP_FORWARD(arg=34, lineno=120) -> 860 LOAD_FAST(arg=1, lineno=121) - 862 LOAD_FAST(arg=7, lineno=121) - 864 BINARY_SUBSCR(arg=None, lineno=121) - 874 LOAD_FAST(arg=1, lineno=121) - 876 LOAD_FAST(arg=6, lineno=121) - 878 BINARY_SUBSCR(arg=None, lineno=121) - 888 SWAP(arg=2, lineno=121) - 890 LOAD_FAST(arg=1, lineno=121) - 892 LOAD_FAST(arg=6, lineno=121) - 894 STORE_SUBSCR(arg=None, lineno=121) - 898 LOAD_FAST(arg=1, lineno=121) - 900 LOAD_FAST(arg=7, lineno=121) - 902 STORE_SUBSCR(arg=None, lineno=121) - 906 LOAD_FAST(arg=6, lineno=122) - 908 LOAD_CONST(arg=2, lineno=122) - 910 BINARY_OP(arg=13, lineno=122) - 914 STORE_FAST(arg=6, lineno=122) - 916 LOAD_FAST(arg=7, lineno=123) - 918 LOAD_CONST(arg=2, lineno=123) - 920 BINARY_OP(arg=23, lineno=123) - 924 STORE_FAST(arg=7, lineno=123) - 926 JUMP_BACKWARD(arg=187, lineno=114) -> 928 LOAD_FAST(arg=1, lineno=126) - 930 LOAD_FAST(arg=3, lineno=126) - 932 BINARY_SUBSCR(arg=None, lineno=126) - 942 LOAD_FAST(arg=1, lineno=126) - 944 LOAD_FAST(arg=6, lineno=126) - 946 BINARY_SUBSCR(arg=None, lineno=126) - 956 SWAP(arg=2, lineno=126) - 958 LOAD_FAST(arg=1, lineno=126) - 960 LOAD_FAST(arg=6, lineno=126) - 962 STORE_SUBSCR(arg=None, lineno=126) - 966 LOAD_FAST(arg=1, lineno=126) - 968 LOAD_FAST(arg=3, lineno=126) - 970 STORE_SUBSCR(arg=None, lineno=126) - 974 LOAD_FAST(arg=6, lineno=127) - 976 RETURN_VALUE(arg=None, lineno=127) -13:52:45,76 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:45,76 numba.core.byteflow DEBUG stack: [] -13:52:45,76 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=86) -13:52:45,76 numba.core.byteflow DEBUG stack [] -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=2, lineno=86) -13:52:45,76 numba.core.byteflow DEBUG stack [] -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=86) -13:52:45,76 numba.core.byteflow DEBUG stack [] -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=2, lineno=92) -13:52:45,76 numba.core.byteflow DEBUG stack [] -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_CONST(arg=1, lineno=92) -13:52:45,76 numba.core.byteflow DEBUG stack ['$low6.0'] -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=10, inst=COMPARE_OP(arg=5, lineno=92) -13:52:45,76 numba.core.byteflow DEBUG stack ['$low6.0', '$const8.1'] -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=16, inst=POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=92) -13:52:45,76 numba.core.byteflow DEBUG stack ['$10compare_op.2'] -13:52:45,76 numba.core.byteflow DEBUG end state. edges=[Edge(pc=18, stack=(), blockstack=(), npush=0), Edge(pc=22, stack=(), blockstack=(), npush=0)] -13:52:45,76 numba.core.byteflow DEBUG pending: deque([State(pc_initial=18 nstack_initial=0), State(pc_initial=22 nstack_initial=0)]) -13:52:45,76 numba.core.byteflow DEBUG stack: [] -13:52:45,76 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=18 nstack_initial=0) -13:52:45,76 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_ASSERTION_ERROR(arg=None, lineno=92) -13:52:45,77 numba.core.byteflow DEBUG stack [] -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=20, inst=RAISE_VARARGS(arg=1, lineno=92) -13:52:45,77 numba.core.byteflow DEBUG stack ['$assertion_error18.0'] -13:52:45,77 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,77 numba.core.byteflow DEBUG pending: deque([State(pc_initial=22 nstack_initial=0)]) -13:52:45,77 numba.core.byteflow DEBUG stack: [] -13:52:45,77 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=22 nstack_initial=0) -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_FAST(arg=3, lineno=93) -13:52:45,77 numba.core.byteflow DEBUG stack [] -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=24, inst=LOAD_FAST(arg=2, lineno=93) -13:52:45,77 numba.core.byteflow DEBUG stack ['$high22.0'] -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=26, inst=COMPARE_OP(arg=4, lineno=93) -13:52:45,77 numba.core.byteflow DEBUG stack ['$high22.0', '$low24.1'] -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=32, inst=POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=93) -13:52:45,77 numba.core.byteflow DEBUG stack ['$26compare_op.2'] -13:52:45,77 numba.core.byteflow DEBUG end state. edges=[Edge(pc=34, stack=(), blockstack=(), npush=0), Edge(pc=38, stack=(), blockstack=(), npush=0)] -13:52:45,77 numba.core.byteflow DEBUG pending: deque([State(pc_initial=34 nstack_initial=0), State(pc_initial=38 nstack_initial=0)]) -13:52:45,77 numba.core.byteflow DEBUG stack: [] -13:52:45,77 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=34 nstack_initial=0) -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=34, inst=LOAD_ASSERTION_ERROR(arg=None, lineno=93) -13:52:45,77 numba.core.byteflow DEBUG stack [] -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=36, inst=RAISE_VARARGS(arg=1, lineno=93) -13:52:45,77 numba.core.byteflow DEBUG stack ['$assertion_error34.0'] -13:52:45,77 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,77 numba.core.byteflow DEBUG pending: deque([State(pc_initial=38 nstack_initial=0)]) -13:52:45,77 numba.core.byteflow DEBUG stack: [] -13:52:45,77 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=38 nstack_initial=0) -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=38, inst=LOAD_FAST(arg=2, lineno=95) -13:52:45,77 numba.core.byteflow DEBUG stack [] -13:52:45,77 numba.core.byteflow DEBUG dispatch pc=40, inst=LOAD_FAST(arg=3, lineno=95) -13:52:45,78 numba.core.byteflow DEBUG stack ['$low38.0'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=42, inst=BINARY_OP(arg=0, lineno=95) -13:52:45,78 numba.core.byteflow DEBUG stack ['$low38.0', '$high40.1'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=46, inst=LOAD_CONST(arg=2, lineno=95) -13:52:45,78 numba.core.byteflow DEBUG stack ['$binop_add42.2'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=48, inst=BINARY_OP(arg=9, lineno=95) -13:52:45,78 numba.core.byteflow DEBUG stack ['$binop_add42.2', '$const46.3'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=52, inst=STORE_FAST(arg=4, lineno=95) -13:52:45,78 numba.core.byteflow DEBUG stack ['$binop_rshift48.4'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=54, inst=PUSH_NULL(arg=None, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack [] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_DEREF(arg=9, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=58, inst=PUSH_NULL(arg=None, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=60, inst=LOAD_DEREF(arg=8, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$null$58.7'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=62, inst=LOAD_FAST(arg=0, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$null$58.7', '$60load_deref.8'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=64, inst=LOAD_FAST(arg=1, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$null$58.7', '$60load_deref.8', '$A62.9'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_FAST(arg=4, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$null$58.7', '$60load_deref.8', '$A62.9', '$R64.10'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=68, inst=BINARY_SUBSCR(arg=None, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$null$58.7', '$60load_deref.8', '$A62.9', '$R64.10', '$mid66.11'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=78, inst=PRECALL(arg=2, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$null$58.7', '$60load_deref.8', '$A62.9', '$68binary_subscr.12'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=82, inst=CALL(arg=2, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$null$58.7', '$60load_deref.8', '$A62.9', '$68binary_subscr.12'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=92, inst=PUSH_NULL(arg=None, lineno=102) -13:52:45,78 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13'] -13:52:45,78 numba.core.byteflow DEBUG dispatch pc=94, inst=LOAD_DEREF(arg=8, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$null$92.14'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=96, inst=LOAD_FAST(arg=0, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$null$92.14', '$94load_deref.15'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=98, inst=LOAD_FAST(arg=1, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$null$92.14', '$94load_deref.15', '$A96.16'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=100, inst=LOAD_FAST(arg=2, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$null$92.14', '$94load_deref.15', '$A96.16', '$R98.17'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=102, inst=BINARY_SUBSCR(arg=None, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$null$92.14', '$94load_deref.15', '$A96.16', '$R98.17', '$low100.18'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=112, inst=PRECALL(arg=2, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$null$92.14', '$94load_deref.15', '$A96.16', '$102binary_subscr.19'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=116, inst=CALL(arg=2, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$null$92.14', '$94load_deref.15', '$A96.16', '$102binary_subscr.19'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=126, inst=PRECALL(arg=2, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$116call.20'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=130, inst=CALL(arg=2, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$null$54.5', '$56load_deref.6', '$82call.13', '$116call.20'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=140, inst=POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=102) -13:52:45,79 numba.core.byteflow DEBUG stack ['$130call.21'] -13:52:45,79 numba.core.byteflow DEBUG end state. edges=[Edge(pc=142, stack=(), blockstack=(), npush=0), Edge(pc=188, stack=(), blockstack=(), npush=0)] -13:52:45,79 numba.core.byteflow DEBUG pending: deque([State(pc_initial=142 nstack_initial=0), State(pc_initial=188 nstack_initial=0)]) -13:52:45,79 numba.core.byteflow DEBUG stack: [] -13:52:45,79 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=142 nstack_initial=0) -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=142, inst=LOAD_FAST(arg=1, lineno=103) -13:52:45,79 numba.core.byteflow DEBUG stack [] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=144, inst=LOAD_FAST(arg=4, lineno=103) -13:52:45,79 numba.core.byteflow DEBUG stack ['$R142.0'] -13:52:45,79 numba.core.byteflow DEBUG dispatch pc=146, inst=BINARY_SUBSCR(arg=None, lineno=103) -13:52:45,79 numba.core.byteflow DEBUG stack ['$R142.0', '$mid144.1'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=156, inst=LOAD_FAST(arg=1, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$146binary_subscr.2'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=158, inst=LOAD_FAST(arg=2, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$146binary_subscr.2', '$R156.3'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=160, inst=BINARY_SUBSCR(arg=None, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$146binary_subscr.2', '$R156.3', '$low158.4'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=170, inst=SWAP(arg=2, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$146binary_subscr.2', '$160binary_subscr.5'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=172, inst=LOAD_FAST(arg=1, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$160binary_subscr.5', '$146binary_subscr.2'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=174, inst=LOAD_FAST(arg=2, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$160binary_subscr.5', '$146binary_subscr.2', '$R172.6'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=176, inst=STORE_SUBSCR(arg=None, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$160binary_subscr.5', '$146binary_subscr.2', '$R172.6', '$low174.7'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=180, inst=LOAD_FAST(arg=1, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$160binary_subscr.5'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=182, inst=LOAD_FAST(arg=4, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$160binary_subscr.5', '$R180.8'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=184, inst=STORE_SUBSCR(arg=None, lineno=103) -13:52:45,80 numba.core.byteflow DEBUG stack ['$160binary_subscr.5', '$R180.8', '$mid182.9'] -13:52:45,80 numba.core.byteflow DEBUG end state. edges=[Edge(pc=188, stack=(), blockstack=(), npush=0)] -13:52:45,80 numba.core.byteflow DEBUG pending: deque([State(pc_initial=188 nstack_initial=0), State(pc_initial=188 nstack_initial=0)]) -13:52:45,80 numba.core.byteflow DEBUG stack: [] -13:52:45,80 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=188 nstack_initial=0) -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=188, inst=PUSH_NULL(arg=None, lineno=104) -13:52:45,80 numba.core.byteflow DEBUG stack [] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=190, inst=LOAD_DEREF(arg=9, lineno=104) -13:52:45,80 numba.core.byteflow DEBUG stack ['$null$188.0'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=192, inst=PUSH_NULL(arg=None, lineno=104) -13:52:45,80 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1'] -13:52:45,80 numba.core.byteflow DEBUG dispatch pc=194, inst=LOAD_DEREF(arg=8, lineno=104) -13:52:45,80 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$null$192.2'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=196, inst=LOAD_FAST(arg=0, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$null$192.2', '$194load_deref.3'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=198, inst=LOAD_FAST(arg=1, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$null$192.2', '$194load_deref.3', '$A196.4'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=200, inst=LOAD_FAST(arg=3, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$null$192.2', '$194load_deref.3', '$A196.4', '$R198.5'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=202, inst=BINARY_SUBSCR(arg=None, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$null$192.2', '$194load_deref.3', '$A196.4', '$R198.5', '$high200.6'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=212, inst=PRECALL(arg=2, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$null$192.2', '$194load_deref.3', '$A196.4', '$202binary_subscr.7'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=216, inst=CALL(arg=2, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$null$192.2', '$194load_deref.3', '$A196.4', '$202binary_subscr.7'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=226, inst=PUSH_NULL(arg=None, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=228, inst=LOAD_DEREF(arg=8, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$null$226.9'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=230, inst=LOAD_FAST(arg=0, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$null$226.9', '$228load_deref.10'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=232, inst=LOAD_FAST(arg=1, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$null$226.9', '$228load_deref.10', '$A230.11'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=234, inst=LOAD_FAST(arg=4, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$null$226.9', '$228load_deref.10', '$A230.11', '$R232.12'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=236, inst=BINARY_SUBSCR(arg=None, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$null$226.9', '$228load_deref.10', '$A230.11', '$R232.12', '$mid234.13'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=246, inst=PRECALL(arg=2, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$null$226.9', '$228load_deref.10', '$A230.11', '$236binary_subscr.14'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=250, inst=CALL(arg=2, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$null$226.9', '$228load_deref.10', '$A230.11', '$236binary_subscr.14'] -13:52:45,81 numba.core.byteflow DEBUG dispatch pc=260, inst=PRECALL(arg=2, lineno=104) -13:52:45,81 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$250call.15'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=264, inst=CALL(arg=2, lineno=104) -13:52:45,82 numba.core.byteflow DEBUG stack ['$null$188.0', '$190load_deref.1', '$216call.8', '$250call.15'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=274, inst=POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=104) -13:52:45,82 numba.core.byteflow DEBUG stack ['$264call.16'] -13:52:45,82 numba.core.byteflow DEBUG end state. edges=[Edge(pc=276, stack=(), blockstack=(), npush=0), Edge(pc=322, stack=(), blockstack=(), npush=0)] -13:52:45,82 numba.core.byteflow DEBUG pending: deque([State(pc_initial=188 nstack_initial=0), State(pc_initial=276 nstack_initial=0), State(pc_initial=322 nstack_initial=0)]) -13:52:45,82 numba.core.byteflow DEBUG pending: deque([State(pc_initial=276 nstack_initial=0), State(pc_initial=322 nstack_initial=0)]) -13:52:45,82 numba.core.byteflow DEBUG stack: [] -13:52:45,82 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=276 nstack_initial=0) -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=276, inst=LOAD_FAST(arg=1, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack [] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=278, inst=LOAD_FAST(arg=4, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$R276.0'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=280, inst=BINARY_SUBSCR(arg=None, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$R276.0', '$mid278.1'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=290, inst=LOAD_FAST(arg=1, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$280binary_subscr.2'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=292, inst=LOAD_FAST(arg=3, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$280binary_subscr.2', '$R290.3'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=294, inst=BINARY_SUBSCR(arg=None, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$280binary_subscr.2', '$R290.3', '$high292.4'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=304, inst=SWAP(arg=2, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$280binary_subscr.2', '$294binary_subscr.5'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=306, inst=LOAD_FAST(arg=1, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$294binary_subscr.5', '$280binary_subscr.2'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=308, inst=LOAD_FAST(arg=3, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$294binary_subscr.5', '$280binary_subscr.2', '$R306.6'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=310, inst=STORE_SUBSCR(arg=None, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$294binary_subscr.5', '$280binary_subscr.2', '$R306.6', '$high308.7'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=314, inst=LOAD_FAST(arg=1, lineno=105) -13:52:45,82 numba.core.byteflow DEBUG stack ['$294binary_subscr.5'] -13:52:45,82 numba.core.byteflow DEBUG dispatch pc=316, inst=LOAD_FAST(arg=4, lineno=105) -13:52:45,83 numba.core.byteflow DEBUG stack ['$294binary_subscr.5', '$R314.8'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=318, inst=STORE_SUBSCR(arg=None, lineno=105) -13:52:45,83 numba.core.byteflow DEBUG stack ['$294binary_subscr.5', '$R314.8', '$mid316.9'] -13:52:45,83 numba.core.byteflow DEBUG end state. edges=[Edge(pc=322, stack=(), blockstack=(), npush=0)] -13:52:45,83 numba.core.byteflow DEBUG pending: deque([State(pc_initial=322 nstack_initial=0), State(pc_initial=322 nstack_initial=0)]) -13:52:45,83 numba.core.byteflow DEBUG stack: [] -13:52:45,83 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=322 nstack_initial=0) -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=322, inst=PUSH_NULL(arg=None, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack [] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=324, inst=LOAD_DEREF(arg=9, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=326, inst=PUSH_NULL(arg=None, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=328, inst=LOAD_DEREF(arg=8, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$null$326.2'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=330, inst=LOAD_FAST(arg=0, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$null$326.2', '$328load_deref.3'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=332, inst=LOAD_FAST(arg=1, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$null$326.2', '$328load_deref.3', '$A330.4'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=334, inst=LOAD_FAST(arg=4, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$null$326.2', '$328load_deref.3', '$A330.4', '$R332.5'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=336, inst=BINARY_SUBSCR(arg=None, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$null$326.2', '$328load_deref.3', '$A330.4', '$R332.5', '$mid334.6'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=346, inst=PRECALL(arg=2, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$null$326.2', '$328load_deref.3', '$A330.4', '$336binary_subscr.7'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=350, inst=CALL(arg=2, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$null$326.2', '$328load_deref.3', '$A330.4', '$336binary_subscr.7'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=360, inst=PUSH_NULL(arg=None, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=362, inst=LOAD_DEREF(arg=8, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$null$360.9'] -13:52:45,83 numba.core.byteflow DEBUG dispatch pc=364, inst=LOAD_FAST(arg=0, lineno=106) -13:52:45,83 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$null$360.9', '$362load_deref.10'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=366, inst=LOAD_FAST(arg=1, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$null$360.9', '$362load_deref.10', '$A364.11'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=368, inst=LOAD_FAST(arg=2, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$null$360.9', '$362load_deref.10', '$A364.11', '$R366.12'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=370, inst=BINARY_SUBSCR(arg=None, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$null$360.9', '$362load_deref.10', '$A364.11', '$R366.12', '$low368.13'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=380, inst=PRECALL(arg=2, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$null$360.9', '$362load_deref.10', '$A364.11', '$370binary_subscr.14'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=384, inst=CALL(arg=2, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$null$360.9', '$362load_deref.10', '$A364.11', '$370binary_subscr.14'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=394, inst=PRECALL(arg=2, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$384call.15'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=398, inst=CALL(arg=2, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$null$322.0', '$324load_deref.1', '$350call.8', '$384call.15'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=408, inst=POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=106) -13:52:45,84 numba.core.byteflow DEBUG stack ['$398call.16'] -13:52:45,84 numba.core.byteflow DEBUG end state. edges=[Edge(pc=410, stack=(), blockstack=(), npush=0), Edge(pc=456, stack=(), blockstack=(), npush=0)] -13:52:45,84 numba.core.byteflow DEBUG pending: deque([State(pc_initial=322 nstack_initial=0), State(pc_initial=410 nstack_initial=0), State(pc_initial=456 nstack_initial=0)]) -13:52:45,84 numba.core.byteflow DEBUG pending: deque([State(pc_initial=410 nstack_initial=0), State(pc_initial=456 nstack_initial=0)]) -13:52:45,84 numba.core.byteflow DEBUG stack: [] -13:52:45,84 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=410 nstack_initial=0) -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=410, inst=LOAD_FAST(arg=1, lineno=107) -13:52:45,84 numba.core.byteflow DEBUG stack [] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=412, inst=LOAD_FAST(arg=4, lineno=107) -13:52:45,84 numba.core.byteflow DEBUG stack ['$R410.0'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=414, inst=BINARY_SUBSCR(arg=None, lineno=107) -13:52:45,84 numba.core.byteflow DEBUG stack ['$R410.0', '$mid412.1'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=424, inst=LOAD_FAST(arg=1, lineno=107) -13:52:45,84 numba.core.byteflow DEBUG stack ['$414binary_subscr.2'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=426, inst=LOAD_FAST(arg=2, lineno=107) -13:52:45,84 numba.core.byteflow DEBUG stack ['$414binary_subscr.2', '$R424.3'] -13:52:45,84 numba.core.byteflow DEBUG dispatch pc=428, inst=BINARY_SUBSCR(arg=None, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$414binary_subscr.2', '$R424.3', '$low426.4'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=438, inst=SWAP(arg=2, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$414binary_subscr.2', '$428binary_subscr.5'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=440, inst=LOAD_FAST(arg=1, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$428binary_subscr.5', '$414binary_subscr.2'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=442, inst=LOAD_FAST(arg=2, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$428binary_subscr.5', '$414binary_subscr.2', '$R440.6'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=444, inst=STORE_SUBSCR(arg=None, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$428binary_subscr.5', '$414binary_subscr.2', '$R440.6', '$low442.7'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=448, inst=LOAD_FAST(arg=1, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$428binary_subscr.5'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=450, inst=LOAD_FAST(arg=4, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$428binary_subscr.5', '$R448.8'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=452, inst=STORE_SUBSCR(arg=None, lineno=107) -13:52:45,85 numba.core.byteflow DEBUG stack ['$428binary_subscr.5', '$R448.8', '$mid450.9'] -13:52:45,85 numba.core.byteflow DEBUG end state. edges=[Edge(pc=456, stack=(), blockstack=(), npush=0)] -13:52:45,85 numba.core.byteflow DEBUG pending: deque([State(pc_initial=456 nstack_initial=0), State(pc_initial=456 nstack_initial=0)]) -13:52:45,85 numba.core.byteflow DEBUG stack: [] -13:52:45,85 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=456 nstack_initial=0) -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=456, inst=PUSH_NULL(arg=None, lineno=108) -13:52:45,85 numba.core.byteflow DEBUG stack [] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=458, inst=LOAD_DEREF(arg=8, lineno=108) -13:52:45,85 numba.core.byteflow DEBUG stack ['$null$456.0'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=460, inst=LOAD_FAST(arg=0, lineno=108) -13:52:45,85 numba.core.byteflow DEBUG stack ['$null$456.0', '$458load_deref.1'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=462, inst=LOAD_FAST(arg=1, lineno=108) -13:52:45,85 numba.core.byteflow DEBUG stack ['$null$456.0', '$458load_deref.1', '$A460.2'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=464, inst=LOAD_FAST(arg=4, lineno=108) -13:52:45,85 numba.core.byteflow DEBUG stack ['$null$456.0', '$458load_deref.1', '$A460.2', '$R462.3'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=466, inst=BINARY_SUBSCR(arg=None, lineno=108) -13:52:45,85 numba.core.byteflow DEBUG stack ['$null$456.0', '$458load_deref.1', '$A460.2', '$R462.3', '$mid464.4'] -13:52:45,85 numba.core.byteflow DEBUG dispatch pc=476, inst=PRECALL(arg=2, lineno=108) -13:52:45,85 numba.core.byteflow DEBUG stack ['$null$456.0', '$458load_deref.1', '$A460.2', '$466binary_subscr.5'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=480, inst=CALL(arg=2, lineno=108) -13:52:45,86 numba.core.byteflow DEBUG stack ['$null$456.0', '$458load_deref.1', '$A460.2', '$466binary_subscr.5'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=490, inst=STORE_FAST(arg=5, lineno=108) -13:52:45,86 numba.core.byteflow DEBUG stack ['$480call.6'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=492, inst=LOAD_FAST(arg=1, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack [] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=494, inst=LOAD_FAST(arg=4, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$R492.7'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=496, inst=BINARY_SUBSCR(arg=None, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$R492.7', '$mid494.8'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=506, inst=LOAD_FAST(arg=1, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$496binary_subscr.9'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=508, inst=LOAD_FAST(arg=3, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$496binary_subscr.9', '$R506.10'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=510, inst=BINARY_SUBSCR(arg=None, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$496binary_subscr.9', '$R506.10', '$high508.11'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=520, inst=SWAP(arg=2, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$496binary_subscr.9', '$510binary_subscr.12'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=522, inst=LOAD_FAST(arg=1, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$510binary_subscr.12', '$496binary_subscr.9'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=524, inst=LOAD_FAST(arg=3, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$510binary_subscr.12', '$496binary_subscr.9', '$R522.13'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=526, inst=STORE_SUBSCR(arg=None, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$510binary_subscr.12', '$496binary_subscr.9', '$R522.13', '$high524.14'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=530, inst=LOAD_FAST(arg=1, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$510binary_subscr.12'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=532, inst=LOAD_FAST(arg=4, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$510binary_subscr.12', '$R530.15'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=534, inst=STORE_SUBSCR(arg=None, lineno=111) -13:52:45,86 numba.core.byteflow DEBUG stack ['$510binary_subscr.12', '$R530.15', '$mid532.16'] -13:52:45,86 numba.core.byteflow DEBUG dispatch pc=538, inst=LOAD_FAST(arg=2, lineno=112) -13:52:45,86 numba.core.byteflow DEBUG stack [] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=540, inst=STORE_FAST(arg=6, lineno=112) -13:52:45,87 numba.core.byteflow DEBUG stack ['$low538.17'] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=542, inst=LOAD_FAST(arg=3, lineno=113) -13:52:45,87 numba.core.byteflow DEBUG stack [] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=544, inst=LOAD_CONST(arg=2, lineno=113) -13:52:45,87 numba.core.byteflow DEBUG stack ['$high542.18'] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=546, inst=BINARY_OP(arg=10, lineno=113) -13:52:45,87 numba.core.byteflow DEBUG stack ['$high542.18', '$const544.19'] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=550, inst=STORE_FAST(arg=7, lineno=113) -13:52:45,87 numba.core.byteflow DEBUG stack ['$binop_sub546.20'] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=552, inst=NOP(arg=None, lineno=114) -13:52:45,87 numba.core.byteflow DEBUG stack [] -13:52:45,87 numba.core.byteflow DEBUG end state. edges=[Edge(pc=554, stack=(), blockstack=(), npush=0)] -13:52:45,87 numba.core.byteflow DEBUG pending: deque([State(pc_initial=456 nstack_initial=0), State(pc_initial=554 nstack_initial=0)]) -13:52:45,87 numba.core.byteflow DEBUG pending: deque([State(pc_initial=554 nstack_initial=0)]) -13:52:45,87 numba.core.byteflow DEBUG stack: [] -13:52:45,87 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=554 nstack_initial=0) -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=554, inst=LOAD_FAST(arg=6, lineno=115) -13:52:45,87 numba.core.byteflow DEBUG stack [] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=556, inst=LOAD_FAST(arg=3, lineno=115) -13:52:45,87 numba.core.byteflow DEBUG stack ['$i554.0'] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=558, inst=COMPARE_OP(arg=0, lineno=115) -13:52:45,87 numba.core.byteflow DEBUG stack ['$i554.0', '$high556.1'] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=564, inst=POP_JUMP_FORWARD_IF_FALSE(arg=67, lineno=115) -13:52:45,87 numba.core.byteflow DEBUG stack ['$558compare_op.2'] -13:52:45,87 numba.core.byteflow DEBUG end state. edges=[Edge(pc=566, stack=(), blockstack=(), npush=0), Edge(pc=700, stack=(), blockstack=(), npush=0)] -13:52:45,87 numba.core.byteflow DEBUG pending: deque([State(pc_initial=566 nstack_initial=0), State(pc_initial=700 nstack_initial=0)]) -13:52:45,87 numba.core.byteflow DEBUG stack: [] -13:52:45,87 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=566 nstack_initial=0) -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=566, inst=PUSH_NULL(arg=None, lineno=115) -13:52:45,87 numba.core.byteflow DEBUG stack [] -13:52:45,87 numba.core.byteflow DEBUG dispatch pc=568, inst=LOAD_DEREF(arg=9, lineno=115) -13:52:45,87 numba.core.byteflow DEBUG stack ['$null$566.0'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=570, inst=PUSH_NULL(arg=None, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=572, inst=LOAD_DEREF(arg=8, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$null$570.2'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=574, inst=LOAD_FAST(arg=0, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$null$570.2', '$572load_deref.3'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=576, inst=LOAD_FAST(arg=1, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$null$570.2', '$572load_deref.3', '$A574.4'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=578, inst=LOAD_FAST(arg=6, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$null$570.2', '$572load_deref.3', '$A574.4', '$R576.5'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=580, inst=BINARY_SUBSCR(arg=None, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$null$570.2', '$572load_deref.3', '$A574.4', '$R576.5', '$i578.6'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=590, inst=PRECALL(arg=2, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$null$570.2', '$572load_deref.3', '$A574.4', '$580binary_subscr.7'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=594, inst=CALL(arg=2, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$null$570.2', '$572load_deref.3', '$A574.4', '$580binary_subscr.7'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=604, inst=LOAD_FAST(arg=5, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$594call.8'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=606, inst=PRECALL(arg=2, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$594call.8', '$pivot604.9'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=610, inst=CALL(arg=2, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$null$566.0', '$568load_deref.1', '$594call.8', '$pivot604.9'] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=620, inst=POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=115) -13:52:45,88 numba.core.byteflow DEBUG stack ['$610call.10'] -13:52:45,88 numba.core.byteflow DEBUG end state. edges=[Edge(pc=622, stack=(), blockstack=(), npush=0), Edge(pc=700, stack=(), blockstack=(), npush=0)] -13:52:45,88 numba.core.byteflow DEBUG pending: deque([State(pc_initial=700 nstack_initial=0), State(pc_initial=622 nstack_initial=0), State(pc_initial=700 nstack_initial=0)]) -13:52:45,88 numba.core.byteflow DEBUG stack: [] -13:52:45,88 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=700 nstack_initial=0) -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=700, inst=LOAD_FAST(arg=7, lineno=117) -13:52:45,88 numba.core.byteflow DEBUG stack [] -13:52:45,88 numba.core.byteflow DEBUG dispatch pc=702, inst=LOAD_FAST(arg=2, lineno=117) -13:52:45,88 numba.core.byteflow DEBUG stack ['$j700.0'] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=704, inst=COMPARE_OP(arg=5, lineno=117) -13:52:45,89 numba.core.byteflow DEBUG stack ['$j700.0', '$low702.1'] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=710, inst=POP_JUMP_FORWARD_IF_FALSE(arg=67, lineno=117) -13:52:45,89 numba.core.byteflow DEBUG stack ['$704compare_op.2'] -13:52:45,89 numba.core.byteflow DEBUG end state. edges=[Edge(pc=712, stack=(), blockstack=(), npush=0), Edge(pc=846, stack=(), blockstack=(), npush=0)] -13:52:45,89 numba.core.byteflow DEBUG pending: deque([State(pc_initial=622 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=712 nstack_initial=0), State(pc_initial=846 nstack_initial=0)]) -13:52:45,89 numba.core.byteflow DEBUG stack: [] -13:52:45,89 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=622 nstack_initial=0) -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=622, inst=LOAD_FAST(arg=6, lineno=116) -13:52:45,89 numba.core.byteflow DEBUG stack [] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=624, inst=LOAD_CONST(arg=2, lineno=116) -13:52:45,89 numba.core.byteflow DEBUG stack ['$i622.0'] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=626, inst=BINARY_OP(arg=13, lineno=116) -13:52:45,89 numba.core.byteflow DEBUG stack ['$i622.0', '$const624.1'] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=630, inst=STORE_FAST(arg=6, lineno=116) -13:52:45,89 numba.core.byteflow DEBUG stack ['$binop_iadd626.2'] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=632, inst=LOAD_FAST(arg=6, lineno=115) -13:52:45,89 numba.core.byteflow DEBUG stack [] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=634, inst=LOAD_FAST(arg=3, lineno=115) -13:52:45,89 numba.core.byteflow DEBUG stack ['$i632.3'] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=636, inst=COMPARE_OP(arg=0, lineno=115) -13:52:45,89 numba.core.byteflow DEBUG stack ['$i632.3', '$high634.4'] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=642, inst=POP_JUMP_FORWARD_IF_FALSE(arg=28, lineno=115) -13:52:45,89 numba.core.byteflow DEBUG stack ['$636compare_op.5'] -13:52:45,89 numba.core.byteflow DEBUG end state. edges=[Edge(pc=644, stack=(), blockstack=(), npush=0), Edge(pc=700, stack=(), blockstack=(), npush=0)] -13:52:45,89 numba.core.byteflow DEBUG pending: deque([State(pc_initial=700 nstack_initial=0), State(pc_initial=712 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=644 nstack_initial=0), State(pc_initial=700 nstack_initial=0)]) -13:52:45,89 numba.core.byteflow DEBUG pending: deque([State(pc_initial=712 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=644 nstack_initial=0), State(pc_initial=700 nstack_initial=0)]) -13:52:45,89 numba.core.byteflow DEBUG stack: [] -13:52:45,89 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=712 nstack_initial=0) -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=712, inst=PUSH_NULL(arg=None, lineno=117) -13:52:45,89 numba.core.byteflow DEBUG stack [] -13:52:45,89 numba.core.byteflow DEBUG dispatch pc=714, inst=LOAD_DEREF(arg=9, lineno=117) -13:52:45,89 numba.core.byteflow DEBUG stack ['$null$712.0'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=716, inst=LOAD_FAST(arg=5, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=718, inst=PUSH_NULL(arg=None, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=720, inst=LOAD_DEREF(arg=8, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$null$718.3'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=722, inst=LOAD_FAST(arg=0, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$null$718.3', '$720load_deref.4'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=724, inst=LOAD_FAST(arg=1, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$null$718.3', '$720load_deref.4', '$A722.5'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=726, inst=LOAD_FAST(arg=7, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$null$718.3', '$720load_deref.4', '$A722.5', '$R724.6'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=728, inst=BINARY_SUBSCR(arg=None, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$null$718.3', '$720load_deref.4', '$A722.5', '$R724.6', '$j726.7'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=738, inst=PRECALL(arg=2, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$null$718.3', '$720load_deref.4', '$A722.5', '$728binary_subscr.8'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=742, inst=CALL(arg=2, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$null$718.3', '$720load_deref.4', '$A722.5', '$728binary_subscr.8'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=752, inst=PRECALL(arg=2, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$742call.9'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=756, inst=CALL(arg=2, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$null$712.0', '$714load_deref.1', '$pivot716.2', '$742call.9'] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=766, inst=POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=117) -13:52:45,90 numba.core.byteflow DEBUG stack ['$756call.10'] -13:52:45,90 numba.core.byteflow DEBUG end state. edges=[Edge(pc=768, stack=(), blockstack=(), npush=0), Edge(pc=846, stack=(), blockstack=(), npush=0)] -13:52:45,90 numba.core.byteflow DEBUG pending: deque([State(pc_initial=846 nstack_initial=0), State(pc_initial=644 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=768 nstack_initial=0), State(pc_initial=846 nstack_initial=0)]) -13:52:45,90 numba.core.byteflow DEBUG stack: [] -13:52:45,90 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=846 nstack_initial=0) -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=846, inst=LOAD_FAST(arg=6, lineno=119) -13:52:45,90 numba.core.byteflow DEBUG stack [] -13:52:45,90 numba.core.byteflow DEBUG dispatch pc=848, inst=LOAD_FAST(arg=7, lineno=119) -13:52:45,90 numba.core.byteflow DEBUG stack ['$i846.0'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=850, inst=COMPARE_OP(arg=5, lineno=119) -13:52:45,91 numba.core.byteflow DEBUG stack ['$i846.0', '$j848.1'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=856, inst=POP_JUMP_FORWARD_IF_FALSE(arg=1, lineno=119) -13:52:45,91 numba.core.byteflow DEBUG stack ['$850compare_op.2'] -13:52:45,91 numba.core.byteflow DEBUG end state. edges=[Edge(pc=858, stack=(), blockstack=(), npush=0), Edge(pc=860, stack=(), blockstack=(), npush=0)] -13:52:45,91 numba.core.byteflow DEBUG pending: deque([State(pc_initial=644 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=768 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=858 nstack_initial=0), State(pc_initial=860 nstack_initial=0)]) -13:52:45,91 numba.core.byteflow DEBUG stack: [] -13:52:45,91 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=644 nstack_initial=0) -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=644, inst=PUSH_NULL(arg=None, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack [] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=646, inst=LOAD_DEREF(arg=9, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=648, inst=PUSH_NULL(arg=None, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=650, inst=LOAD_DEREF(arg=8, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$null$648.2'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=652, inst=LOAD_FAST(arg=0, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$null$648.2', '$650load_deref.3'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=654, inst=LOAD_FAST(arg=1, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$null$648.2', '$650load_deref.3', '$A652.4'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=656, inst=LOAD_FAST(arg=6, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$null$648.2', '$650load_deref.3', '$A652.4', '$R654.5'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=658, inst=BINARY_SUBSCR(arg=None, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$null$648.2', '$650load_deref.3', '$A652.4', '$R654.5', '$i656.6'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=668, inst=PRECALL(arg=2, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$null$648.2', '$650load_deref.3', '$A652.4', '$658binary_subscr.7'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=672, inst=CALL(arg=2, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$null$648.2', '$650load_deref.3', '$A652.4', '$658binary_subscr.7'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=682, inst=LOAD_FAST(arg=5, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$672call.8'] -13:52:45,91 numba.core.byteflow DEBUG dispatch pc=684, inst=PRECALL(arg=2, lineno=115) -13:52:45,91 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$672call.8', '$pivot682.9'] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=688, inst=CALL(arg=2, lineno=115) -13:52:45,92 numba.core.byteflow DEBUG stack ['$null$644.0', '$646load_deref.1', '$672call.8', '$pivot682.9'] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=698, inst=POP_JUMP_BACKWARD_IF_TRUE(arg=39, lineno=115) -13:52:45,92 numba.core.byteflow DEBUG stack ['$688call.10'] -13:52:45,92 numba.core.byteflow DEBUG end state. edges=[Edge(pc=700, stack=(), blockstack=(), npush=0), Edge(pc=622, stack=(), blockstack=(), npush=0)] -13:52:45,92 numba.core.byteflow DEBUG pending: deque([State(pc_initial=700 nstack_initial=0), State(pc_initial=768 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=858 nstack_initial=0), State(pc_initial=860 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=622 nstack_initial=0)]) -13:52:45,92 numba.core.byteflow DEBUG pending: deque([State(pc_initial=768 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=858 nstack_initial=0), State(pc_initial=860 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=622 nstack_initial=0)]) -13:52:45,92 numba.core.byteflow DEBUG stack: [] -13:52:45,92 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=768 nstack_initial=0) -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=768, inst=LOAD_FAST(arg=7, lineno=118) -13:52:45,92 numba.core.byteflow DEBUG stack [] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=770, inst=LOAD_CONST(arg=2, lineno=118) -13:52:45,92 numba.core.byteflow DEBUG stack ['$j768.0'] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=772, inst=BINARY_OP(arg=23, lineno=118) -13:52:45,92 numba.core.byteflow DEBUG stack ['$j768.0', '$const770.1'] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=776, inst=STORE_FAST(arg=7, lineno=118) -13:52:45,92 numba.core.byteflow DEBUG stack ['$binop_isub772.2'] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=778, inst=LOAD_FAST(arg=7, lineno=117) -13:52:45,92 numba.core.byteflow DEBUG stack [] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=780, inst=LOAD_FAST(arg=2, lineno=117) -13:52:45,92 numba.core.byteflow DEBUG stack ['$j778.3'] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=782, inst=COMPARE_OP(arg=5, lineno=117) -13:52:45,92 numba.core.byteflow DEBUG stack ['$j778.3', '$low780.4'] -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=788, inst=POP_JUMP_FORWARD_IF_FALSE(arg=28, lineno=117) -13:52:45,92 numba.core.byteflow DEBUG stack ['$782compare_op.5'] -13:52:45,92 numba.core.byteflow DEBUG end state. edges=[Edge(pc=790, stack=(), blockstack=(), npush=0), Edge(pc=846, stack=(), blockstack=(), npush=0)] -13:52:45,92 numba.core.byteflow DEBUG pending: deque([State(pc_initial=846 nstack_initial=0), State(pc_initial=858 nstack_initial=0), State(pc_initial=860 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=622 nstack_initial=0), State(pc_initial=790 nstack_initial=0), State(pc_initial=846 nstack_initial=0)]) -13:52:45,92 numba.core.byteflow DEBUG pending: deque([State(pc_initial=858 nstack_initial=0), State(pc_initial=860 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=622 nstack_initial=0), State(pc_initial=790 nstack_initial=0), State(pc_initial=846 nstack_initial=0)]) -13:52:45,92 numba.core.byteflow DEBUG stack: [] -13:52:45,92 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=858 nstack_initial=0) -13:52:45,92 numba.core.byteflow DEBUG dispatch pc=858, inst=JUMP_FORWARD(arg=34, lineno=120) -13:52:45,92 numba.core.byteflow DEBUG stack [] -13:52:45,92 numba.core.byteflow DEBUG end state. edges=[Edge(pc=928, stack=(), blockstack=(), npush=0)] -13:52:45,93 numba.core.byteflow DEBUG pending: deque([State(pc_initial=860 nstack_initial=0), State(pc_initial=700 nstack_initial=0), State(pc_initial=622 nstack_initial=0), State(pc_initial=790 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=928 nstack_initial=0)]) -13:52:45,93 numba.core.byteflow DEBUG stack: [] -13:52:45,93 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=860 nstack_initial=0) -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=860, inst=LOAD_FAST(arg=1, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack [] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=862, inst=LOAD_FAST(arg=7, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$R860.0'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=864, inst=BINARY_SUBSCR(arg=None, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$R860.0', '$j862.1'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=874, inst=LOAD_FAST(arg=1, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$864binary_subscr.2'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=876, inst=LOAD_FAST(arg=6, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$864binary_subscr.2', '$R874.3'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=878, inst=BINARY_SUBSCR(arg=None, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$864binary_subscr.2', '$R874.3', '$i876.4'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=888, inst=SWAP(arg=2, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$864binary_subscr.2', '$878binary_subscr.5'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=890, inst=LOAD_FAST(arg=1, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$878binary_subscr.5', '$864binary_subscr.2'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=892, inst=LOAD_FAST(arg=6, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$878binary_subscr.5', '$864binary_subscr.2', '$R890.6'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=894, inst=STORE_SUBSCR(arg=None, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$878binary_subscr.5', '$864binary_subscr.2', '$R890.6', '$i892.7'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=898, inst=LOAD_FAST(arg=1, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$878binary_subscr.5'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=900, inst=LOAD_FAST(arg=7, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$878binary_subscr.5', '$R898.8'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=902, inst=STORE_SUBSCR(arg=None, lineno=121) -13:52:45,93 numba.core.byteflow DEBUG stack ['$878binary_subscr.5', '$R898.8', '$j900.9'] -13:52:45,93 numba.core.byteflow DEBUG dispatch pc=906, inst=LOAD_FAST(arg=6, lineno=122) -13:52:45,93 numba.core.byteflow DEBUG stack [] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=908, inst=LOAD_CONST(arg=2, lineno=122) -13:52:45,94 numba.core.byteflow DEBUG stack ['$i906.10'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=910, inst=BINARY_OP(arg=13, lineno=122) -13:52:45,94 numba.core.byteflow DEBUG stack ['$i906.10', '$const908.11'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=914, inst=STORE_FAST(arg=6, lineno=122) -13:52:45,94 numba.core.byteflow DEBUG stack ['$binop_iadd910.12'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=916, inst=LOAD_FAST(arg=7, lineno=123) -13:52:45,94 numba.core.byteflow DEBUG stack [] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=918, inst=LOAD_CONST(arg=2, lineno=123) -13:52:45,94 numba.core.byteflow DEBUG stack ['$j916.13'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=920, inst=BINARY_OP(arg=23, lineno=123) -13:52:45,94 numba.core.byteflow DEBUG stack ['$j916.13', '$const918.14'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=924, inst=STORE_FAST(arg=7, lineno=123) -13:52:45,94 numba.core.byteflow DEBUG stack ['$binop_isub920.15'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=926, inst=JUMP_BACKWARD(arg=187, lineno=114) -13:52:45,94 numba.core.byteflow DEBUG stack [] -13:52:45,94 numba.core.byteflow DEBUG end state. edges=[Edge(pc=554, stack=(), blockstack=(), npush=0)] -13:52:45,94 numba.core.byteflow DEBUG pending: deque([State(pc_initial=700 nstack_initial=0), State(pc_initial=622 nstack_initial=0), State(pc_initial=790 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=928 nstack_initial=0), State(pc_initial=554 nstack_initial=0)]) -13:52:45,94 numba.core.byteflow DEBUG pending: deque([State(pc_initial=622 nstack_initial=0), State(pc_initial=790 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=928 nstack_initial=0), State(pc_initial=554 nstack_initial=0)]) -13:52:45,94 numba.core.byteflow DEBUG pending: deque([State(pc_initial=790 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=928 nstack_initial=0), State(pc_initial=554 nstack_initial=0)]) -13:52:45,94 numba.core.byteflow DEBUG stack: [] -13:52:45,94 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=790 nstack_initial=0) -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=790, inst=PUSH_NULL(arg=None, lineno=117) -13:52:45,94 numba.core.byteflow DEBUG stack [] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=792, inst=LOAD_DEREF(arg=9, lineno=117) -13:52:45,94 numba.core.byteflow DEBUG stack ['$null$790.0'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=794, inst=LOAD_FAST(arg=5, lineno=117) -13:52:45,94 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=796, inst=PUSH_NULL(arg=None, lineno=117) -13:52:45,94 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=798, inst=LOAD_DEREF(arg=8, lineno=117) -13:52:45,94 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$null$796.3'] -13:52:45,94 numba.core.byteflow DEBUG dispatch pc=800, inst=LOAD_FAST(arg=0, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$null$796.3', '$798load_deref.4'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=802, inst=LOAD_FAST(arg=1, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$null$796.3', '$798load_deref.4', '$A800.5'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=804, inst=LOAD_FAST(arg=7, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$null$796.3', '$798load_deref.4', '$A800.5', '$R802.6'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=806, inst=BINARY_SUBSCR(arg=None, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$null$796.3', '$798load_deref.4', '$A800.5', '$R802.6', '$j804.7'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=816, inst=PRECALL(arg=2, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$null$796.3', '$798load_deref.4', '$A800.5', '$806binary_subscr.8'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=820, inst=CALL(arg=2, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$null$796.3', '$798load_deref.4', '$A800.5', '$806binary_subscr.8'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=830, inst=PRECALL(arg=2, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$820call.9'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=834, inst=CALL(arg=2, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$null$790.0', '$792load_deref.1', '$pivot794.2', '$820call.9'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=844, inst=POP_JUMP_BACKWARD_IF_TRUE(arg=39, lineno=117) -13:52:45,95 numba.core.byteflow DEBUG stack ['$834call.10'] -13:52:45,95 numba.core.byteflow DEBUG end state. edges=[Edge(pc=846, stack=(), blockstack=(), npush=0), Edge(pc=768, stack=(), blockstack=(), npush=0)] -13:52:45,95 numba.core.byteflow DEBUG pending: deque([State(pc_initial=846 nstack_initial=0), State(pc_initial=928 nstack_initial=0), State(pc_initial=554 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=768 nstack_initial=0)]) -13:52:45,95 numba.core.byteflow DEBUG pending: deque([State(pc_initial=928 nstack_initial=0), State(pc_initial=554 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=768 nstack_initial=0)]) -13:52:45,95 numba.core.byteflow DEBUG stack: [] -13:52:45,95 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=928 nstack_initial=0) -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=928, inst=LOAD_FAST(arg=1, lineno=126) -13:52:45,95 numba.core.byteflow DEBUG stack [] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=930, inst=LOAD_FAST(arg=3, lineno=126) -13:52:45,95 numba.core.byteflow DEBUG stack ['$R928.0'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=932, inst=BINARY_SUBSCR(arg=None, lineno=126) -13:52:45,95 numba.core.byteflow DEBUG stack ['$R928.0', '$high930.1'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=942, inst=LOAD_FAST(arg=1, lineno=126) -13:52:45,95 numba.core.byteflow DEBUG stack ['$932binary_subscr.2'] -13:52:45,95 numba.core.byteflow DEBUG dispatch pc=944, inst=LOAD_FAST(arg=6, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$932binary_subscr.2', '$R942.3'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=946, inst=BINARY_SUBSCR(arg=None, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$932binary_subscr.2', '$R942.3', '$i944.4'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=956, inst=SWAP(arg=2, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$932binary_subscr.2', '$946binary_subscr.5'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=958, inst=LOAD_FAST(arg=1, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$946binary_subscr.5', '$932binary_subscr.2'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=960, inst=LOAD_FAST(arg=6, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$946binary_subscr.5', '$932binary_subscr.2', '$R958.6'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=962, inst=STORE_SUBSCR(arg=None, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$946binary_subscr.5', '$932binary_subscr.2', '$R958.6', '$i960.7'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=966, inst=LOAD_FAST(arg=1, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$946binary_subscr.5'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=968, inst=LOAD_FAST(arg=3, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$946binary_subscr.5', '$R966.8'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=970, inst=STORE_SUBSCR(arg=None, lineno=126) -13:52:45,96 numba.core.byteflow DEBUG stack ['$946binary_subscr.5', '$R966.8', '$high968.9'] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=974, inst=LOAD_FAST(arg=6, lineno=127) -13:52:45,96 numba.core.byteflow DEBUG stack [] -13:52:45,96 numba.core.byteflow DEBUG dispatch pc=976, inst=RETURN_VALUE(arg=None, lineno=127) -13:52:45,96 numba.core.byteflow DEBUG stack ['$i974.10'] -13:52:45,96 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,96 numba.core.byteflow DEBUG pending: deque([State(pc_initial=554 nstack_initial=0), State(pc_initial=846 nstack_initial=0), State(pc_initial=768 nstack_initial=0)]) -13:52:45,96 numba.core.byteflow DEBUG pending: deque([State(pc_initial=846 nstack_initial=0), State(pc_initial=768 nstack_initial=0)]) -13:52:45,96 numba.core.byteflow DEBUG pending: deque([State(pc_initial=768 nstack_initial=0)]) -13:52:45,96 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:45,96 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=18 nstack_initial=0): set(), - State(pc_initial=22 nstack_initial=0): set(), - State(pc_initial=34 nstack_initial=0): set(), - State(pc_initial=38 nstack_initial=0): set(), - State(pc_initial=142 nstack_initial=0): set(), - State(pc_initial=188 nstack_initial=0): set(), - State(pc_initial=276 nstack_initial=0): set(), - State(pc_initial=322 nstack_initial=0): set(), - State(pc_initial=410 nstack_initial=0): set(), - State(pc_initial=456 nstack_initial=0): set(), - State(pc_initial=554 nstack_initial=0): set(), - State(pc_initial=566 nstack_initial=0): set(), - State(pc_initial=622 nstack_initial=0): set(), - State(pc_initial=644 nstack_initial=0): set(), - State(pc_initial=700 nstack_initial=0): set(), - State(pc_initial=712 nstack_initial=0): set(), - State(pc_initial=768 nstack_initial=0): set(), - State(pc_initial=790 nstack_initial=0): set(), - State(pc_initial=846 nstack_initial=0): set(), - State(pc_initial=858 nstack_initial=0): set(), - State(pc_initial=860 nstack_initial=0): set(), - State(pc_initial=928 nstack_initial=0): set()}) -13:52:45,97 numba.core.byteflow DEBUG defmap: {} -13:52:45,97 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:45,97 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:45,97 numba.core.byteflow DEBUG keep phismap: {} -13:52:45,97 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:45,97 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'res': '$low6.0'}), (8, {'res': '$const8.1'}), (10, {'lhs': '$low6.0', 'rhs': '$const8.1', 'res': '$10compare_op.2'}), (12, {}), (14, {}), (16, {'pred': '$10compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={18: (), 22: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=18 nstack_initial=0): -AdaptBlockInfo(insts=((18, {'res': '$assertion_error18.0'}), (20, {'exc': '$assertion_error18.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=22 nstack_initial=0): -AdaptBlockInfo(insts=((22, {'res': '$high22.0'}), (24, {'res': '$low24.1'}), (26, {'lhs': '$high22.0', 'rhs': '$low24.1', 'res': '$26compare_op.2'}), (28, {}), (30, {}), (32, {'pred': '$26compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={34: (), 38: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=34 nstack_initial=0): -AdaptBlockInfo(insts=((34, {'res': '$assertion_error34.0'}), (36, {'exc': '$assertion_error34.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=38 nstack_initial=0): -AdaptBlockInfo(insts=((38, {'res': '$low38.0'}), (40, {'res': '$high40.1'}), (42, {'op': '+', 'lhs': '$low38.0', 'rhs': '$high40.1', 'res': '$binop_add42.2'}), (44, {}), (46, {'res': '$const46.3'}), (48, {'op': '>>', 'lhs': '$binop_add42.2', 'rhs': '$const46.3', 'res': '$binop_rshift48.4'}), (50, {}), (52, {'value': '$binop_rshift48.4'}), (54, {}), (56, {'res': '$56load_deref.6'}), (58, {}), (60, {'res': '$60load_deref.8'}), (62, {'res': '$A62.9'}), (64, {'res': '$R64.10'}), (66, {'res': '$mid66.11'}), (68, {'index': '$mid66.11', 'target': '$R64.10', 'res': '$68binary_subscr.12'}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {}), (82, {'func': '$60load_deref.8', 'args': ['$A62.9', '$68binary_subscr.12'], 'kw_names': None, 'res': '$82call.13'}), (84, {}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'res': '$94load_deref.15'}), (96, {'res': '$A96.16'}), (98, {'res': '$R98.17'}), (100, {'res': '$low100.18'}), (102, {'index': '$low100.18', 'target': '$R98.17', 'res': '$102binary_subscr.19'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {}), (114, {}), (116, {'func': '$94load_deref.15', 'args': ['$A96.16', '$102binary_subscr.19'], 'kw_names': None, 'res': '$116call.20'}), (118, {}), (120, {}), (122, {}), (124, {}), (126, {}), (128, {}), (130, {'func': '$56load_deref.6', 'args': ['$82call.13', '$116call.20'], 'kw_names': None, 'res': '$130call.21'}), (132, {}), (134, {}), (136, {}), (138, {}), (140, {'pred': '$130call.21'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={142: (), 188: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=142 nstack_initial=0): -AdaptBlockInfo(insts=((142, {'res': '$R142.0'}), (144, {'res': '$mid144.1'}), (146, {'index': '$mid144.1', 'target': '$R142.0', 'res': '$146binary_subscr.2'}), (148, {}), (150, {}), (152, {}), (154, {}), (156, {'res': '$R156.3'}), (158, {'res': '$low158.4'}), (160, {'index': '$low158.4', 'target': '$R156.3', 'res': '$160binary_subscr.5'}), (162, {}), (164, {}), (166, {}), (168, {}), (172, {'res': '$R172.6'}), (174, {'res': '$low174.7'}), (176, {'target': '$R172.6', 'index': '$low174.7', 'value': '$146binary_subscr.2'}), (178, {}), (180, {'res': '$R180.8'}), (182, {'res': '$mid182.9'}), (184, {'target': '$R180.8', 'index': '$mid182.9', 'value': '$160binary_subscr.5'}), (186, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={188: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=188 nstack_initial=0): -AdaptBlockInfo(insts=((188, {}), (190, {'res': '$190load_deref.1'}), (192, {}), (194, {'res': '$194load_deref.3'}), (196, {'res': '$A196.4'}), (198, {'res': '$R198.5'}), (200, {'res': '$high200.6'}), (202, {'index': '$high200.6', 'target': '$R198.5', 'res': '$202binary_subscr.7'}), (204, {}), (206, {}), (208, {}), (210, {}), (212, {}), (214, {}), (216, {'func': '$194load_deref.3', 'args': ['$A196.4', '$202binary_subscr.7'], 'kw_names': None, 'res': '$216call.8'}), (218, {}), (220, {}), (222, {}), (224, {}), (226, {}), (228, {'res': '$228load_deref.10'}), (230, {'res': '$A230.11'}), (232, {'res': '$R232.12'}), (234, {'res': '$mid234.13'}), (236, {'index': '$mid234.13', 'target': '$R232.12', 'res': '$236binary_subscr.14'}), (238, {}), (240, {}), (242, {}), (244, {}), (246, {}), (248, {}), (250, {'func': '$228load_deref.10', 'args': ['$A230.11', '$236binary_subscr.14'], 'kw_names': None, 'res': '$250call.15'}), (252, {}), (254, {}), (256, {}), (258, {}), (260, {}), (262, {}), (264, {'func': '$190load_deref.1', 'args': ['$216call.8', '$250call.15'], 'kw_names': None, 'res': '$264call.16'}), (266, {}), (268, {}), (270, {}), (272, {}), (274, {'pred': '$264call.16'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={276: (), 322: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=276 nstack_initial=0): -AdaptBlockInfo(insts=((276, {'res': '$R276.0'}), (278, {'res': '$mid278.1'}), (280, {'index': '$mid278.1', 'target': '$R276.0', 'res': '$280binary_subscr.2'}), (282, {}), (284, {}), (286, {}), (288, {}), (290, {'res': '$R290.3'}), (292, {'res': '$high292.4'}), (294, {'index': '$high292.4', 'target': '$R290.3', 'res': '$294binary_subscr.5'}), (296, {}), (298, {}), (300, {}), (302, {}), (306, {'res': '$R306.6'}), (308, {'res': '$high308.7'}), (310, {'target': '$R306.6', 'index': '$high308.7', 'value': '$280binary_subscr.2'}), (312, {}), (314, {'res': '$R314.8'}), (316, {'res': '$mid316.9'}), (318, {'target': '$R314.8', 'index': '$mid316.9', 'value': '$294binary_subscr.5'}), (320, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={322: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=322 nstack_initial=0): -AdaptBlockInfo(insts=((322, {}), (324, {'res': '$324load_deref.1'}), (326, {}), (328, {'res': '$328load_deref.3'}), (330, {'res': '$A330.4'}), (332, {'res': '$R332.5'}), (334, {'res': '$mid334.6'}), (336, {'index': '$mid334.6', 'target': '$R332.5', 'res': '$336binary_subscr.7'}), (338, {}), (340, {}), (342, {}), (344, {}), (346, {}), (348, {}), (350, {'func': '$328load_deref.3', 'args': ['$A330.4', '$336binary_subscr.7'], 'kw_names': None, 'res': '$350call.8'}), (352, {}), (354, {}), (356, {}), (358, {}), (360, {}), (362, {'res': '$362load_deref.10'}), (364, {'res': '$A364.11'}), (366, {'res': '$R366.12'}), (368, {'res': '$low368.13'}), (370, {'index': '$low368.13', 'target': '$R366.12', 'res': '$370binary_subscr.14'}), (372, {}), (374, {}), (376, {}), (378, {}), (380, {}), (382, {}), (384, {'func': '$362load_deref.10', 'args': ['$A364.11', '$370binary_subscr.14'], 'kw_names': None, 'res': '$384call.15'}), (386, {}), (388, {}), (390, {}), (392, {}), (394, {}), (396, {}), (398, {'func': '$324load_deref.1', 'args': ['$350call.8', '$384call.15'], 'kw_names': None, 'res': '$398call.16'}), (400, {}), (402, {}), (404, {}), (406, {}), (408, {'pred': '$398call.16'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={410: (), 456: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=410 nstack_initial=0): -AdaptBlockInfo(insts=((410, {'res': '$R410.0'}), (412, {'res': '$mid412.1'}), (414, {'index': '$mid412.1', 'target': '$R410.0', 'res': '$414binary_subscr.2'}), (416, {}), (418, {}), (420, {}), (422, {}), (424, {'res': '$R424.3'}), (426, {'res': '$low426.4'}), (428, {'index': '$low426.4', 'target': '$R424.3', 'res': '$428binary_subscr.5'}), (430, {}), (432, {}), (434, {}), (436, {}), (440, {'res': '$R440.6'}), (442, {'res': '$low442.7'}), (444, {'target': '$R440.6', 'index': '$low442.7', 'value': '$414binary_subscr.2'}), (446, {}), (448, {'res': '$R448.8'}), (450, {'res': '$mid450.9'}), (452, {'target': '$R448.8', 'index': '$mid450.9', 'value': '$428binary_subscr.5'}), (454, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={456: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=456 nstack_initial=0): -AdaptBlockInfo(insts=((456, {}), (458, {'res': '$458load_deref.1'}), (460, {'res': '$A460.2'}), (462, {'res': '$R462.3'}), (464, {'res': '$mid464.4'}), (466, {'index': '$mid464.4', 'target': '$R462.3', 'res': '$466binary_subscr.5'}), (468, {}), (470, {}), (472, {}), (474, {}), (476, {}), (478, {}), (480, {'func': '$458load_deref.1', 'args': ['$A460.2', '$466binary_subscr.5'], 'kw_names': None, 'res': '$480call.6'}), (482, {}), (484, {}), (486, {}), (488, {}), (490, {'value': '$480call.6'}), (492, {'res': '$R492.7'}), (494, {'res': '$mid494.8'}), (496, {'index': '$mid494.8', 'target': '$R492.7', 'res': '$496binary_subscr.9'}), (498, {}), (500, {}), (502, {}), (504, {}), (506, {'res': '$R506.10'}), (508, {'res': '$high508.11'}), (510, {'index': '$high508.11', 'target': '$R506.10', 'res': '$510binary_subscr.12'}), (512, {}), (514, {}), (516, {}), (518, {}), (522, {'res': '$R522.13'}), (524, {'res': '$high524.14'}), (526, {'target': '$R522.13', 'index': '$high524.14', 'value': '$496binary_subscr.9'}), (528, {}), (530, {'res': '$R530.15'}), (532, {'res': '$mid532.16'}), (534, {'target': '$R530.15', 'index': '$mid532.16', 'value': '$510binary_subscr.12'}), (536, {}), (538, {'res': '$low538.17'}), (540, {'value': '$low538.17'}), (542, {'res': '$high542.18'}), (544, {'res': '$const544.19'}), (546, {'op': '-', 'lhs': '$high542.18', 'rhs': '$const544.19', 'res': '$binop_sub546.20'}), (548, {}), (550, {'value': '$binop_sub546.20'}), (552, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={554: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=554 nstack_initial=0): -AdaptBlockInfo(insts=((554, {'res': '$i554.0'}), (556, {'res': '$high556.1'}), (558, {'lhs': '$i554.0', 'rhs': '$high556.1', 'res': '$558compare_op.2'}), (560, {}), (562, {}), (564, {'pred': '$558compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={566: (), 700: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=566 nstack_initial=0): -AdaptBlockInfo(insts=((566, {}), (568, {'res': '$568load_deref.1'}), (570, {}), (572, {'res': '$572load_deref.3'}), (574, {'res': '$A574.4'}), (576, {'res': '$R576.5'}), (578, {'res': '$i578.6'}), (580, {'index': '$i578.6', 'target': '$R576.5', 'res': '$580binary_subscr.7'}), (582, {}), (584, {}), (586, {}), (588, {}), (590, {}), (592, {}), (594, {'func': '$572load_deref.3', 'args': ['$A574.4', '$580binary_subscr.7'], 'kw_names': None, 'res': '$594call.8'}), (596, {}), (598, {}), (600, {}), (602, {}), (604, {'res': '$pivot604.9'}), (606, {}), (608, {}), (610, {'func': '$568load_deref.1', 'args': ['$594call.8', '$pivot604.9'], 'kw_names': None, 'res': '$610call.10'}), (612, {}), (614, {}), (616, {}), (618, {}), (620, {'pred': '$610call.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={622: (), 700: ()}) -13:52:45,97 numba.core.byteflow DEBUG block_infos State(pc_initial=622 nstack_initial=0): -AdaptBlockInfo(insts=((622, {'res': '$i622.0'}), (624, {'res': '$const624.1'}), (626, {'op': '+=', 'lhs': '$i622.0', 'rhs': '$const624.1', 'res': '$binop_iadd626.2'}), (628, {}), (630, {'value': '$binop_iadd626.2'}), (632, {'res': '$i632.3'}), (634, {'res': '$high634.4'}), (636, {'lhs': '$i632.3', 'rhs': '$high634.4', 'res': '$636compare_op.5'}), (638, {}), (640, {}), (642, {'pred': '$636compare_op.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={644: (), 700: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=644 nstack_initial=0): -AdaptBlockInfo(insts=((644, {}), (646, {'res': '$646load_deref.1'}), (648, {}), (650, {'res': '$650load_deref.3'}), (652, {'res': '$A652.4'}), (654, {'res': '$R654.5'}), (656, {'res': '$i656.6'}), (658, {'index': '$i656.6', 'target': '$R654.5', 'res': '$658binary_subscr.7'}), (660, {}), (662, {}), (664, {}), (666, {}), (668, {}), (670, {}), (672, {'func': '$650load_deref.3', 'args': ['$A652.4', '$658binary_subscr.7'], 'kw_names': None, 'res': '$672call.8'}), (674, {}), (676, {}), (678, {}), (680, {}), (682, {'res': '$pivot682.9'}), (684, {}), (686, {}), (688, {'func': '$646load_deref.1', 'args': ['$672call.8', '$pivot682.9'], 'kw_names': None, 'res': '$688call.10'}), (690, {}), (692, {}), (694, {}), (696, {}), (698, {'pred': '$688call.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={700: (), 622: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=700 nstack_initial=0): -AdaptBlockInfo(insts=((700, {'res': '$j700.0'}), (702, {'res': '$low702.1'}), (704, {'lhs': '$j700.0', 'rhs': '$low702.1', 'res': '$704compare_op.2'}), (706, {}), (708, {}), (710, {'pred': '$704compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={712: (), 846: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=712 nstack_initial=0): -AdaptBlockInfo(insts=((712, {}), (714, {'res': '$714load_deref.1'}), (716, {'res': '$pivot716.2'}), (718, {}), (720, {'res': '$720load_deref.4'}), (722, {'res': '$A722.5'}), (724, {'res': '$R724.6'}), (726, {'res': '$j726.7'}), (728, {'index': '$j726.7', 'target': '$R724.6', 'res': '$728binary_subscr.8'}), (730, {}), (732, {}), (734, {}), (736, {}), (738, {}), (740, {}), (742, {'func': '$720load_deref.4', 'args': ['$A722.5', '$728binary_subscr.8'], 'kw_names': None, 'res': '$742call.9'}), (744, {}), (746, {}), (748, {}), (750, {}), (752, {}), (754, {}), (756, {'func': '$714load_deref.1', 'args': ['$pivot716.2', '$742call.9'], 'kw_names': None, 'res': '$756call.10'}), (758, {}), (760, {}), (762, {}), (764, {}), (766, {'pred': '$756call.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={768: (), 846: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=768 nstack_initial=0): -AdaptBlockInfo(insts=((768, {'res': '$j768.0'}), (770, {'res': '$const770.1'}), (772, {'op': '-=', 'lhs': '$j768.0', 'rhs': '$const770.1', 'res': '$binop_isub772.2'}), (774, {}), (776, {'value': '$binop_isub772.2'}), (778, {'res': '$j778.3'}), (780, {'res': '$low780.4'}), (782, {'lhs': '$j778.3', 'rhs': '$low780.4', 'res': '$782compare_op.5'}), (784, {}), (786, {}), (788, {'pred': '$782compare_op.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={790: (), 846: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=790 nstack_initial=0): -AdaptBlockInfo(insts=((790, {}), (792, {'res': '$792load_deref.1'}), (794, {'res': '$pivot794.2'}), (796, {}), (798, {'res': '$798load_deref.4'}), (800, {'res': '$A800.5'}), (802, {'res': '$R802.6'}), (804, {'res': '$j804.7'}), (806, {'index': '$j804.7', 'target': '$R802.6', 'res': '$806binary_subscr.8'}), (808, {}), (810, {}), (812, {}), (814, {}), (816, {}), (818, {}), (820, {'func': '$798load_deref.4', 'args': ['$A800.5', '$806binary_subscr.8'], 'kw_names': None, 'res': '$820call.9'}), (822, {}), (824, {}), (826, {}), (828, {}), (830, {}), (832, {}), (834, {'func': '$792load_deref.1', 'args': ['$pivot794.2', '$820call.9'], 'kw_names': None, 'res': '$834call.10'}), (836, {}), (838, {}), (840, {}), (842, {}), (844, {'pred': '$834call.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={846: (), 768: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=846 nstack_initial=0): -AdaptBlockInfo(insts=((846, {'res': '$i846.0'}), (848, {'res': '$j848.1'}), (850, {'lhs': '$i846.0', 'rhs': '$j848.1', 'res': '$850compare_op.2'}), (852, {}), (854, {}), (856, {'pred': '$850compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={858: (), 860: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=858 nstack_initial=0): -AdaptBlockInfo(insts=((858, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={928: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=860 nstack_initial=0): -AdaptBlockInfo(insts=((860, {'res': '$R860.0'}), (862, {'res': '$j862.1'}), (864, {'index': '$j862.1', 'target': '$R860.0', 'res': '$864binary_subscr.2'}), (866, {}), (868, {}), (870, {}), (872, {}), (874, {'res': '$R874.3'}), (876, {'res': '$i876.4'}), (878, {'index': '$i876.4', 'target': '$R874.3', 'res': '$878binary_subscr.5'}), (880, {}), (882, {}), (884, {}), (886, {}), (890, {'res': '$R890.6'}), (892, {'res': '$i892.7'}), (894, {'target': '$R890.6', 'index': '$i892.7', 'value': '$864binary_subscr.2'}), (896, {}), (898, {'res': '$R898.8'}), (900, {'res': '$j900.9'}), (902, {'target': '$R898.8', 'index': '$j900.9', 'value': '$878binary_subscr.5'}), (904, {}), (906, {'res': '$i906.10'}), (908, {'res': '$const908.11'}), (910, {'op': '+=', 'lhs': '$i906.10', 'rhs': '$const908.11', 'res': '$binop_iadd910.12'}), (912, {}), (914, {'value': '$binop_iadd910.12'}), (916, {'res': '$j916.13'}), (918, {'res': '$const918.14'}), (920, {'op': '-=', 'lhs': '$j916.13', 'rhs': '$const918.14', 'res': '$binop_isub920.15'}), (922, {}), (924, {'value': '$binop_isub920.15'}), (926, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={554: ()}) -13:52:45,98 numba.core.byteflow DEBUG block_infos State(pc_initial=928 nstack_initial=0): -AdaptBlockInfo(insts=((928, {'res': '$R928.0'}), (930, {'res': '$high930.1'}), (932, {'index': '$high930.1', 'target': '$R928.0', 'res': '$932binary_subscr.2'}), (934, {}), (936, {}), (938, {}), (940, {}), (942, {'res': '$R942.3'}), (944, {'res': '$i944.4'}), (946, {'index': '$i944.4', 'target': '$R942.3', 'res': '$946binary_subscr.5'}), (948, {}), (950, {}), (952, {}), (954, {}), (958, {'res': '$R958.6'}), (960, {'res': '$i960.7'}), (962, {'target': '$R958.6', 'index': '$i960.7', 'value': '$932binary_subscr.2'}), (964, {}), (966, {'res': '$R966.8'}), (968, {'res': '$high968.9'}), (970, {'target': '$R966.8', 'index': '$high968.9', 'value': '$946binary_subscr.5'}), (972, {}), (974, {'res': '$i974.10'}), (976, {'retval': '$i974.10', 'castval': '$976return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,101 numba.core.interpreter DEBUG label 0: - A = arg(0, name=A) ['A'] - R = arg(1, name=R) ['R'] - low = arg(2, name=low) ['low'] - high = arg(3, name=high) ['high'] - $const8.1 = const(int, 0) ['$const8.1'] - $10compare_op.2 = low >= $const8.1 ['$10compare_op.2', '$const8.1', 'low'] - bool16 = global(bool: ) ['bool16'] - $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:92),), kws=(), vararg=None, varkwarg=None, target=None) ['$10compare_op.2', '$16pred', 'bool16'] - branch $16pred, 22, 18 ['$16pred'] -label 18: - $assertion_error18.0 = global(AssertionError: ) ['$assertion_error18.0'] - raise $assertion_error18.0 ['$assertion_error18.0'] -label 22: - $26compare_op.2 = high > low ['$26compare_op.2', 'high', 'low'] - bool32 = global(bool: ) ['bool32'] - $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:93),), kws=(), vararg=None, varkwarg=None, target=None) ['$26compare_op.2', '$32pred', 'bool32'] - branch $32pred, 38, 34 ['$32pred'] -label 34: - $assertion_error34.0 = global(AssertionError: ) ['$assertion_error34.0'] - raise $assertion_error34.0 ['$assertion_error34.0'] -label 38: - $binop_add42.2 = low + high ['$binop_add42.2', 'high', 'low'] - $const46.3 = const(int, 1) ['$const46.3'] - mid = $binop_add42.2 >> $const46.3 ['$binop_add42.2', '$const46.3', 'mid'] - $56load_deref.6 = freevar(LT: ) ['$56load_deref.6'] - $60load_deref.8 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$60load_deref.8'] - $68binary_subscr.12 = getitem(value=R, index=mid, fn=) ['$68binary_subscr.12', 'R', 'mid'] - $82call.13 = call $60load_deref.8(A, $68binary_subscr.12, func=$60load_deref.8, args=[Var(A, quicksort.py:86), Var($68binary_subscr.12, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) ['$60load_deref.8', '$68binary_subscr.12', '$82call.13', 'A'] - $94load_deref.15 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$94load_deref.15'] - $102binary_subscr.19 = getitem(value=R, index=low, fn=) ['$102binary_subscr.19', 'R', 'low'] - $116call.20 = call $94load_deref.15(A, $102binary_subscr.19, func=$94load_deref.15, args=[Var(A, quicksort.py:86), Var($102binary_subscr.19, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) ['$102binary_subscr.19', '$116call.20', '$94load_deref.15', 'A'] - $130call.21 = call $56load_deref.6($82call.13, $116call.20, func=$56load_deref.6, args=[Var($82call.13, quicksort.py:102), Var($116call.20, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) ['$116call.20', '$130call.21', '$56load_deref.6', '$82call.13'] - bool140 = global(bool: ) ['bool140'] - $140pred = call bool140($130call.21, func=bool140, args=(Var($130call.21, quicksort.py:102),), kws=(), vararg=None, varkwarg=None, target=None) ['$130call.21', '$140pred', 'bool140'] - branch $140pred, 142, 188 ['$140pred'] -label 142: - $146binary_subscr.2 = getitem(value=R, index=mid, fn=) ['$146binary_subscr.2', 'R', 'mid'] - $160binary_subscr.5 = getitem(value=R, index=low, fn=) ['$160binary_subscr.5', 'R', 'low'] - R[low] = $146binary_subscr.2 ['$146binary_subscr.2', 'R', 'low'] - R[mid] = $160binary_subscr.5 ['$160binary_subscr.5', 'R', 'mid'] - jump 188 [] -label 188: - $190load_deref.1 = freevar(LT: ) ['$190load_deref.1'] - $194load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$194load_deref.3'] - $202binary_subscr.7 = getitem(value=R, index=high, fn=) ['$202binary_subscr.7', 'R', 'high'] - $216call.8 = call $194load_deref.3(A, $202binary_subscr.7, func=$194load_deref.3, args=[Var(A, quicksort.py:86), Var($202binary_subscr.7, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) ['$194load_deref.3', '$202binary_subscr.7', '$216call.8', 'A'] - $228load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$228load_deref.10'] - $236binary_subscr.14 = getitem(value=R, index=mid, fn=) ['$236binary_subscr.14', 'R', 'mid'] - $250call.15 = call $228load_deref.10(A, $236binary_subscr.14, func=$228load_deref.10, args=[Var(A, quicksort.py:86), Var($236binary_subscr.14, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) ['$228load_deref.10', '$236binary_subscr.14', '$250call.15', 'A'] - $264call.16 = call $190load_deref.1($216call.8, $250call.15, func=$190load_deref.1, args=[Var($216call.8, quicksort.py:104), Var($250call.15, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) ['$190load_deref.1', '$216call.8', '$250call.15', '$264call.16'] - bool274 = global(bool: ) ['bool274'] - $274pred = call bool274($264call.16, func=bool274, args=(Var($264call.16, quicksort.py:104),), kws=(), vararg=None, varkwarg=None, target=None) ['$264call.16', '$274pred', 'bool274'] - branch $274pred, 276, 322 ['$274pred'] -label 276: - $280binary_subscr.2 = getitem(value=R, index=mid, fn=) ['$280binary_subscr.2', 'R', 'mid'] - $294binary_subscr.5 = getitem(value=R, index=high, fn=) ['$294binary_subscr.5', 'R', 'high'] - R[high] = $280binary_subscr.2 ['$280binary_subscr.2', 'R', 'high'] - R[mid] = $294binary_subscr.5 ['$294binary_subscr.5', 'R', 'mid'] - jump 322 [] -label 322: - $324load_deref.1 = freevar(LT: ) ['$324load_deref.1'] - $328load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$328load_deref.3'] - $336binary_subscr.7 = getitem(value=R, index=mid, fn=) ['$336binary_subscr.7', 'R', 'mid'] - $350call.8 = call $328load_deref.3(A, $336binary_subscr.7, func=$328load_deref.3, args=[Var(A, quicksort.py:86), Var($336binary_subscr.7, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) ['$328load_deref.3', '$336binary_subscr.7', '$350call.8', 'A'] - $362load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$362load_deref.10'] - $370binary_subscr.14 = getitem(value=R, index=low, fn=) ['$370binary_subscr.14', 'R', 'low'] - $384call.15 = call $362load_deref.10(A, $370binary_subscr.14, func=$362load_deref.10, args=[Var(A, quicksort.py:86), Var($370binary_subscr.14, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) ['$362load_deref.10', '$370binary_subscr.14', '$384call.15', 'A'] - $398call.16 = call $324load_deref.1($350call.8, $384call.15, func=$324load_deref.1, args=[Var($350call.8, quicksort.py:106), Var($384call.15, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) ['$324load_deref.1', '$350call.8', '$384call.15', '$398call.16'] - bool408 = global(bool: ) ['bool408'] - $408pred = call bool408($398call.16, func=bool408, args=(Var($398call.16, quicksort.py:106),), kws=(), vararg=None, varkwarg=None, target=None) ['$398call.16', '$408pred', 'bool408'] - branch $408pred, 410, 456 ['$408pred'] -label 410: - $414binary_subscr.2 = getitem(value=R, index=mid, fn=) ['$414binary_subscr.2', 'R', 'mid'] - $428binary_subscr.5 = getitem(value=R, index=low, fn=) ['$428binary_subscr.5', 'R', 'low'] - R[low] = $414binary_subscr.2 ['$414binary_subscr.2', 'R', 'low'] - R[mid] = $428binary_subscr.5 ['$428binary_subscr.5', 'R', 'mid'] - jump 456 [] -label 456: - $458load_deref.1 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$458load_deref.1'] - $466binary_subscr.5 = getitem(value=R, index=mid, fn=) ['$466binary_subscr.5', 'R', 'mid'] - pivot = call $458load_deref.1(A, $466binary_subscr.5, func=$458load_deref.1, args=[Var(A, quicksort.py:86), Var($466binary_subscr.5, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) ['$458load_deref.1', '$466binary_subscr.5', 'A', 'pivot'] - $496binary_subscr.9 = getitem(value=R, index=mid, fn=) ['$496binary_subscr.9', 'R', 'mid'] - $510binary_subscr.12 = getitem(value=R, index=high, fn=) ['$510binary_subscr.12', 'R', 'high'] - R[high] = $496binary_subscr.9 ['$496binary_subscr.9', 'R', 'high'] - R[mid] = $510binary_subscr.12 ['$510binary_subscr.12', 'R', 'mid'] - i = low ['i', 'low'] - $const544.19 = const(int, 1) ['$const544.19'] - j = high - $const544.19 ['$const544.19', 'high', 'j'] - jump 554 [] -label 554: - $558compare_op.2 = i < high ['$558compare_op.2', 'high', 'i'] - bool564 = global(bool: ) ['bool564'] - $564pred = call bool564($558compare_op.2, func=bool564, args=(Var($558compare_op.2, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) ['$558compare_op.2', '$564pred', 'bool564'] - branch $564pred, 566, 700 ['$564pred'] -label 566: - $568load_deref.1 = freevar(LT: ) ['$568load_deref.1'] - $572load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$572load_deref.3'] - $580binary_subscr.7 = getitem(value=R, index=i, fn=) ['$580binary_subscr.7', 'R', 'i'] - $594call.8 = call $572load_deref.3(A, $580binary_subscr.7, func=$572load_deref.3, args=[Var(A, quicksort.py:86), Var($580binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) ['$572load_deref.3', '$580binary_subscr.7', '$594call.8', 'A'] - $610call.10 = call $568load_deref.1($594call.8, pivot, func=$568load_deref.1, args=[Var($594call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) ['$568load_deref.1', '$594call.8', '$610call.10', 'pivot'] - bool620 = global(bool: ) ['bool620'] - $620pred = call bool620($610call.10, func=bool620, args=(Var($610call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) ['$610call.10', '$620pred', 'bool620'] - branch $620pred, 622, 700 ['$620pred'] -label 622: - $const624.1 = const(int, 1) ['$const624.1'] - $binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd626.2', '$const624.1', 'i'] - i = $binop_iadd626.2 ['$binop_iadd626.2', 'i'] - $636compare_op.5 = i < high ['$636compare_op.5', 'high', 'i'] - bool642 = global(bool: ) ['bool642'] - $642pred = call bool642($636compare_op.5, func=bool642, args=(Var($636compare_op.5, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) ['$636compare_op.5', '$642pred', 'bool642'] - branch $642pred, 644, 700 ['$642pred'] -label 644: - $646load_deref.1 = freevar(LT: ) ['$646load_deref.1'] - $650load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$650load_deref.3'] - $658binary_subscr.7 = getitem(value=R, index=i, fn=) ['$658binary_subscr.7', 'R', 'i'] - $672call.8 = call $650load_deref.3(A, $658binary_subscr.7, func=$650load_deref.3, args=[Var(A, quicksort.py:86), Var($658binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) ['$650load_deref.3', '$658binary_subscr.7', '$672call.8', 'A'] - $688call.10 = call $646load_deref.1($672call.8, pivot, func=$646load_deref.1, args=[Var($672call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) ['$646load_deref.1', '$672call.8', '$688call.10', 'pivot'] - bool698 = global(bool: ) ['bool698'] - $698pred = call bool698($688call.10, func=bool698, args=(Var($688call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) ['$688call.10', '$698pred', 'bool698'] - branch $698pred, 622, 700 ['$698pred'] -label 700: - $704compare_op.2 = j >= low ['$704compare_op.2', 'j', 'low'] - bool710 = global(bool: ) ['bool710'] - $710pred = call bool710($704compare_op.2, func=bool710, args=(Var($704compare_op.2, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) ['$704compare_op.2', '$710pred', 'bool710'] - branch $710pred, 712, 846 ['$710pred'] -label 712: - $714load_deref.1 = freevar(LT: ) ['$714load_deref.1'] - $720load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$720load_deref.4'] - $728binary_subscr.8 = getitem(value=R, index=j, fn=) ['$728binary_subscr.8', 'R', 'j'] - $742call.9 = call $720load_deref.4(A, $728binary_subscr.8, func=$720load_deref.4, args=[Var(A, quicksort.py:86), Var($728binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) ['$720load_deref.4', '$728binary_subscr.8', '$742call.9', 'A'] - $756call.10 = call $714load_deref.1(pivot, $742call.9, func=$714load_deref.1, args=[Var(pivot, quicksort.py:108), Var($742call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) ['$714load_deref.1', '$742call.9', '$756call.10', 'pivot'] - bool766 = global(bool: ) ['bool766'] - $766pred = call bool766($756call.10, func=bool766, args=(Var($756call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) ['$756call.10', '$766pred', 'bool766'] - branch $766pred, 768, 846 ['$766pred'] -label 768: - $const770.1 = const(int, 1) ['$const770.1'] - $binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_isub772.2', '$const770.1', 'j'] - j = $binop_isub772.2 ['$binop_isub772.2', 'j'] - $782compare_op.5 = j >= low ['$782compare_op.5', 'j', 'low'] - bool788 = global(bool: ) ['bool788'] - $788pred = call bool788($782compare_op.5, func=bool788, args=(Var($782compare_op.5, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) ['$782compare_op.5', '$788pred', 'bool788'] - branch $788pred, 790, 846 ['$788pred'] -label 790: - $792load_deref.1 = freevar(LT: ) ['$792load_deref.1'] - $798load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$798load_deref.4'] - $806binary_subscr.8 = getitem(value=R, index=j, fn=) ['$806binary_subscr.8', 'R', 'j'] - $820call.9 = call $798load_deref.4(A, $806binary_subscr.8, func=$798load_deref.4, args=[Var(A, quicksort.py:86), Var($806binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) ['$798load_deref.4', '$806binary_subscr.8', '$820call.9', 'A'] - $834call.10 = call $792load_deref.1(pivot, $820call.9, func=$792load_deref.1, args=[Var(pivot, quicksort.py:108), Var($820call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) ['$792load_deref.1', '$820call.9', '$834call.10', 'pivot'] - bool844 = global(bool: ) ['bool844'] - $844pred = call bool844($834call.10, func=bool844, args=(Var($834call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) ['$834call.10', '$844pred', 'bool844'] - branch $844pred, 768, 846 ['$844pred'] -label 846: - $850compare_op.2 = i >= j ['$850compare_op.2', 'i', 'j'] - bool856 = global(bool: ) ['bool856'] - $856pred = call bool856($850compare_op.2, func=bool856, args=(Var($850compare_op.2, quicksort.py:119),), kws=(), vararg=None, varkwarg=None, target=None) ['$850compare_op.2', '$856pred', 'bool856'] - branch $856pred, 858, 860 ['$856pred'] -label 858: - jump 928 [] -label 860: - $864binary_subscr.2 = getitem(value=R, index=j, fn=) ['$864binary_subscr.2', 'R', 'j'] - $878binary_subscr.5 = getitem(value=R, index=i, fn=) ['$878binary_subscr.5', 'R', 'i'] - R[i] = $864binary_subscr.2 ['$864binary_subscr.2', 'R', 'i'] - R[j] = $878binary_subscr.5 ['$878binary_subscr.5', 'R', 'j'] - $const908.11 = const(int, 1) ['$const908.11'] - $binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd910.12', '$const908.11', 'i'] - i = $binop_iadd910.12 ['$binop_iadd910.12', 'i'] - $const918.14 = const(int, 1) ['$const918.14'] - $binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) ['$binop_isub920.15', '$const918.14', 'j'] - j = $binop_isub920.15 ['$binop_isub920.15', 'j'] - jump 554 [] -label 928: - $932binary_subscr.2 = getitem(value=R, index=high, fn=) ['$932binary_subscr.2', 'R', 'high'] - $946binary_subscr.5 = getitem(value=R, index=i, fn=) ['$946binary_subscr.5', 'R', 'i'] - R[i] = $932binary_subscr.2 ['$932binary_subscr.2', 'R', 'i'] - R[high] = $946binary_subscr.5 ['$946binary_subscr.5', 'R', 'high'] - $976return_value.11 = cast(value=i) ['$976return_value.11', 'i'] - return $976return_value.11 ['$976return_value.11'] - -13:52:45,123 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:45,123 numba.core.ssa DEBUG Running -13:52:45,123 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,123 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,123 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,123 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,123 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,123 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,123 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,123 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:92),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,123 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,123 numba.core.ssa DEBUG ==== SSA block analysis pass on 18 -13:52:45,123 numba.core.ssa DEBUG Running -13:52:45,123 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,123 numba.core.ssa DEBUG on stmt: raise -13:52:45,123 numba.core.ssa DEBUG ==== SSA block analysis pass on 22 -13:52:45,123 numba.core.ssa DEBUG Running -13:52:45,123 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high > low -13:52:45,123 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,123 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,123 numba.core.ssa DEBUG on stmt: branch $32pred, 38, 34 -13:52:45,123 numba.core.ssa DEBUG ==== SSA block analysis pass on 34 -13:52:45,123 numba.core.ssa DEBUG Running -13:52:45,124 numba.core.ssa DEBUG on stmt: $assertion_error34.0 = global(AssertionError: ) -13:52:45,124 numba.core.ssa DEBUG on stmt: raise -13:52:45,124 numba.core.ssa DEBUG ==== SSA block analysis pass on 38 -13:52:45,124 numba.core.ssa DEBUG Running -13:52:45,124 numba.core.ssa DEBUG on stmt: $binop_add42.2 = low + high -13:52:45,124 numba.core.ssa DEBUG on stmt: $const46.3 = const(int, 1) -13:52:45,124 numba.core.ssa DEBUG on stmt: mid = $binop_add42.2 >> $const46.3 -13:52:45,124 numba.core.ssa DEBUG on stmt: $56load_deref.6 = freevar(LT: ) -13:52:45,124 numba.core.ssa DEBUG on stmt: $60load_deref.8 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,124 numba.core.ssa DEBUG on stmt: $68binary_subscr.12 = getitem(value=R, index=mid, fn=) -13:52:45,124 numba.core.ssa DEBUG on stmt: $82call.13 = call $60load_deref.8(A, $68binary_subscr.12, func=$60load_deref.8, args=[Var(A, quicksort.py:86), Var($68binary_subscr.12, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,124 numba.core.ssa DEBUG on stmt: $94load_deref.15 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,124 numba.core.ssa DEBUG on stmt: $102binary_subscr.19 = getitem(value=R, index=low, fn=) -13:52:45,124 numba.core.ssa DEBUG on stmt: $116call.20 = call $94load_deref.15(A, $102binary_subscr.19, func=$94load_deref.15, args=[Var(A, quicksort.py:86), Var($102binary_subscr.19, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,124 numba.core.ssa DEBUG on stmt: $130call.21 = call $56load_deref.6($82call.13, $116call.20, func=$56load_deref.6, args=[Var($82call.13, quicksort.py:102), Var($116call.20, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,124 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,124 numba.core.ssa DEBUG on stmt: $140pred = call bool140($130call.21, func=bool140, args=(Var($130call.21, quicksort.py:102),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,124 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 188 -13:52:45,124 numba.core.ssa DEBUG ==== SSA block analysis pass on 142 -13:52:45,124 numba.core.ssa DEBUG Running -13:52:45,124 numba.core.ssa DEBUG on stmt: $146binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,124 numba.core.ssa DEBUG on stmt: $160binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,124 numba.core.ssa DEBUG on stmt: R[low] = $146binary_subscr.2 -13:52:45,124 numba.core.ssa DEBUG on stmt: R[mid] = $160binary_subscr.5 -13:52:45,124 numba.core.ssa DEBUG on stmt: jump 188 -13:52:45,124 numba.core.ssa DEBUG ==== SSA block analysis pass on 188 -13:52:45,124 numba.core.ssa DEBUG Running -13:52:45,124 numba.core.ssa DEBUG on stmt: $190load_deref.1 = freevar(LT: ) -13:52:45,124 numba.core.ssa DEBUG on stmt: $194load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,124 numba.core.ssa DEBUG on stmt: $202binary_subscr.7 = getitem(value=R, index=high, fn=) -13:52:45,124 numba.core.ssa DEBUG on stmt: $216call.8 = call $194load_deref.3(A, $202binary_subscr.7, func=$194load_deref.3, args=[Var(A, quicksort.py:86), Var($202binary_subscr.7, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: $228load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,125 numba.core.ssa DEBUG on stmt: $236binary_subscr.14 = getitem(value=R, index=mid, fn=) -13:52:45,125 numba.core.ssa DEBUG on stmt: $250call.15 = call $228load_deref.10(A, $236binary_subscr.14, func=$228load_deref.10, args=[Var(A, quicksort.py:86), Var($236binary_subscr.14, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: $264call.16 = call $190load_deref.1($216call.8, $250call.15, func=$190load_deref.1, args=[Var($216call.8, quicksort.py:104), Var($250call.15, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: bool274 = global(bool: ) -13:52:45,125 numba.core.ssa DEBUG on stmt: $274pred = call bool274($264call.16, func=bool274, args=(Var($264call.16, quicksort.py:104),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: branch $274pred, 276, 322 -13:52:45,125 numba.core.ssa DEBUG ==== SSA block analysis pass on 276 -13:52:45,125 numba.core.ssa DEBUG Running -13:52:45,125 numba.core.ssa DEBUG on stmt: $280binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,125 numba.core.ssa DEBUG on stmt: $294binary_subscr.5 = getitem(value=R, index=high, fn=) -13:52:45,125 numba.core.ssa DEBUG on stmt: R[high] = $280binary_subscr.2 -13:52:45,125 numba.core.ssa DEBUG on stmt: R[mid] = $294binary_subscr.5 -13:52:45,125 numba.core.ssa DEBUG on stmt: jump 322 -13:52:45,125 numba.core.ssa DEBUG ==== SSA block analysis pass on 322 -13:52:45,125 numba.core.ssa DEBUG Running -13:52:45,125 numba.core.ssa DEBUG on stmt: $324load_deref.1 = freevar(LT: ) -13:52:45,125 numba.core.ssa DEBUG on stmt: $328load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,125 numba.core.ssa DEBUG on stmt: $336binary_subscr.7 = getitem(value=R, index=mid, fn=) -13:52:45,125 numba.core.ssa DEBUG on stmt: $350call.8 = call $328load_deref.3(A, $336binary_subscr.7, func=$328load_deref.3, args=[Var(A, quicksort.py:86), Var($336binary_subscr.7, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: $362load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,125 numba.core.ssa DEBUG on stmt: $370binary_subscr.14 = getitem(value=R, index=low, fn=) -13:52:45,125 numba.core.ssa DEBUG on stmt: $384call.15 = call $362load_deref.10(A, $370binary_subscr.14, func=$362load_deref.10, args=[Var(A, quicksort.py:86), Var($370binary_subscr.14, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: $398call.16 = call $324load_deref.1($350call.8, $384call.15, func=$324load_deref.1, args=[Var($350call.8, quicksort.py:106), Var($384call.15, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: bool408 = global(bool: ) -13:52:45,125 numba.core.ssa DEBUG on stmt: $408pred = call bool408($398call.16, func=bool408, args=(Var($398call.16, quicksort.py:106),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,125 numba.core.ssa DEBUG on stmt: branch $408pred, 410, 456 -13:52:45,125 numba.core.ssa DEBUG ==== SSA block analysis pass on 410 -13:52:45,126 numba.core.ssa DEBUG Running -13:52:45,126 numba.core.ssa DEBUG on stmt: $414binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,126 numba.core.ssa DEBUG on stmt: $428binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,126 numba.core.ssa DEBUG on stmt: R[low] = $414binary_subscr.2 -13:52:45,126 numba.core.ssa DEBUG on stmt: R[mid] = $428binary_subscr.5 -13:52:45,126 numba.core.ssa DEBUG on stmt: jump 456 -13:52:45,126 numba.core.ssa DEBUG ==== SSA block analysis pass on 456 -13:52:45,126 numba.core.ssa DEBUG Running -13:52:45,126 numba.core.ssa DEBUG on stmt: $458load_deref.1 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,126 numba.core.ssa DEBUG on stmt: $466binary_subscr.5 = getitem(value=R, index=mid, fn=) -13:52:45,126 numba.core.ssa DEBUG on stmt: pivot = call $458load_deref.1(A, $466binary_subscr.5, func=$458load_deref.1, args=[Var(A, quicksort.py:86), Var($466binary_subscr.5, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,126 numba.core.ssa DEBUG on stmt: $496binary_subscr.9 = getitem(value=R, index=mid, fn=) -13:52:45,126 numba.core.ssa DEBUG on stmt: $510binary_subscr.12 = getitem(value=R, index=high, fn=) -13:52:45,126 numba.core.ssa DEBUG on stmt: R[high] = $496binary_subscr.9 -13:52:45,126 numba.core.ssa DEBUG on stmt: R[mid] = $510binary_subscr.12 -13:52:45,126 numba.core.ssa DEBUG on stmt: i = low -13:52:45,126 numba.core.ssa DEBUG on stmt: $const544.19 = const(int, 1) -13:52:45,126 numba.core.ssa DEBUG on stmt: j = high - $const544.19 -13:52:45,126 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,126 numba.core.ssa DEBUG ==== SSA block analysis pass on 554 -13:52:45,126 numba.core.ssa DEBUG Running -13:52:45,126 numba.core.ssa DEBUG on stmt: $558compare_op.2 = i < high -13:52:45,126 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:45,126 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.2, func=bool564, args=(Var($558compare_op.2, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,126 numba.core.ssa DEBUG on stmt: branch $564pred, 566, 700 -13:52:45,126 numba.core.ssa DEBUG ==== SSA block analysis pass on 566 -13:52:45,127 numba.core.ssa DEBUG Running -13:52:45,127 numba.core.ssa DEBUG on stmt: $568load_deref.1 = freevar(LT: ) -13:52:45,127 numba.core.ssa DEBUG on stmt: $572load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,127 numba.core.ssa DEBUG on stmt: $580binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,127 numba.core.ssa DEBUG on stmt: $594call.8 = call $572load_deref.3(A, $580binary_subscr.7, func=$572load_deref.3, args=[Var(A, quicksort.py:86), Var($580binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,127 numba.core.ssa DEBUG on stmt: $610call.10 = call $568load_deref.1($594call.8, pivot, func=$568load_deref.1, args=[Var($594call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,127 numba.core.ssa DEBUG on stmt: bool620 = global(bool: ) -13:52:45,127 numba.core.ssa DEBUG on stmt: $620pred = call bool620($610call.10, func=bool620, args=(Var($610call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,127 numba.core.ssa DEBUG on stmt: branch $620pred, 622, 700 -13:52:45,127 numba.core.ssa DEBUG ==== SSA block analysis pass on 622 -13:52:45,127 numba.core.ssa DEBUG Running -13:52:45,127 numba.core.ssa DEBUG on stmt: $const624.1 = const(int, 1) -13:52:45,127 numba.core.ssa DEBUG on stmt: $binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,127 numba.core.ssa DEBUG on stmt: i = $binop_iadd626.2 -13:52:45,127 numba.core.ssa DEBUG on stmt: $636compare_op.5 = i < high -13:52:45,127 numba.core.ssa DEBUG on stmt: bool642 = global(bool: ) -13:52:45,127 numba.core.ssa DEBUG on stmt: $642pred = call bool642($636compare_op.5, func=bool642, args=(Var($636compare_op.5, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,127 numba.core.ssa DEBUG on stmt: branch $642pred, 644, 700 -13:52:45,127 numba.core.ssa DEBUG ==== SSA block analysis pass on 644 -13:52:45,127 numba.core.ssa DEBUG Running -13:52:45,127 numba.core.ssa DEBUG on stmt: $646load_deref.1 = freevar(LT: ) -13:52:45,127 numba.core.ssa DEBUG on stmt: $650load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,127 numba.core.ssa DEBUG on stmt: $658binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,127 numba.core.ssa DEBUG on stmt: $672call.8 = call $650load_deref.3(A, $658binary_subscr.7, func=$650load_deref.3, args=[Var(A, quicksort.py:86), Var($658binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,127 numba.core.ssa DEBUG on stmt: $688call.10 = call $646load_deref.1($672call.8, pivot, func=$646load_deref.1, args=[Var($672call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,127 numba.core.ssa DEBUG on stmt: bool698 = global(bool: ) -13:52:45,127 numba.core.ssa DEBUG on stmt: $698pred = call bool698($688call.10, func=bool698, args=(Var($688call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,127 numba.core.ssa DEBUG on stmt: branch $698pred, 622, 700 -13:52:45,127 numba.core.ssa DEBUG ==== SSA block analysis pass on 700 -13:52:45,127 numba.core.ssa DEBUG Running -13:52:45,128 numba.core.ssa DEBUG on stmt: $704compare_op.2 = j >= low -13:52:45,128 numba.core.ssa DEBUG on stmt: bool710 = global(bool: ) -13:52:45,128 numba.core.ssa DEBUG on stmt: $710pred = call bool710($704compare_op.2, func=bool710, args=(Var($704compare_op.2, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,128 numba.core.ssa DEBUG on stmt: branch $710pred, 712, 846 -13:52:45,128 numba.core.ssa DEBUG ==== SSA block analysis pass on 712 -13:52:45,128 numba.core.ssa DEBUG Running -13:52:45,128 numba.core.ssa DEBUG on stmt: $714load_deref.1 = freevar(LT: ) -13:52:45,128 numba.core.ssa DEBUG on stmt: $720load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,128 numba.core.ssa DEBUG on stmt: $728binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,128 numba.core.ssa DEBUG on stmt: $742call.9 = call $720load_deref.4(A, $728binary_subscr.8, func=$720load_deref.4, args=[Var(A, quicksort.py:86), Var($728binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,128 numba.core.ssa DEBUG on stmt: $756call.10 = call $714load_deref.1(pivot, $742call.9, func=$714load_deref.1, args=[Var(pivot, quicksort.py:108), Var($742call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,128 numba.core.ssa DEBUG on stmt: bool766 = global(bool: ) -13:52:45,128 numba.core.ssa DEBUG on stmt: $766pred = call bool766($756call.10, func=bool766, args=(Var($756call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,128 numba.core.ssa DEBUG on stmt: branch $766pred, 768, 846 -13:52:45,128 numba.core.ssa DEBUG ==== SSA block analysis pass on 768 -13:52:45,128 numba.core.ssa DEBUG Running -13:52:45,128 numba.core.ssa DEBUG on stmt: $const770.1 = const(int, 1) -13:52:45,128 numba.core.ssa DEBUG on stmt: $binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,128 numba.core.ssa DEBUG on stmt: j = $binop_isub772.2 -13:52:45,128 numba.core.ssa DEBUG on stmt: $782compare_op.5 = j >= low -13:52:45,128 numba.core.ssa DEBUG on stmt: bool788 = global(bool: ) -13:52:45,128 numba.core.ssa DEBUG on stmt: $788pred = call bool788($782compare_op.5, func=bool788, args=(Var($782compare_op.5, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,128 numba.core.ssa DEBUG on stmt: branch $788pred, 790, 846 -13:52:45,128 numba.core.ssa DEBUG ==== SSA block analysis pass on 790 -13:52:45,128 numba.core.ssa DEBUG Running -13:52:45,128 numba.core.ssa DEBUG on stmt: $792load_deref.1 = freevar(LT: ) -13:52:45,128 numba.core.ssa DEBUG on stmt: $798load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,128 numba.core.ssa DEBUG on stmt: $806binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,128 numba.core.ssa DEBUG on stmt: $820call.9 = call $798load_deref.4(A, $806binary_subscr.8, func=$798load_deref.4, args=[Var(A, quicksort.py:86), Var($806binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,128 numba.core.ssa DEBUG on stmt: $834call.10 = call $792load_deref.1(pivot, $820call.9, func=$792load_deref.1, args=[Var(pivot, quicksort.py:108), Var($820call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,129 numba.core.ssa DEBUG on stmt: bool844 = global(bool: ) -13:52:45,129 numba.core.ssa DEBUG on stmt: $844pred = call bool844($834call.10, func=bool844, args=(Var($834call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,129 numba.core.ssa DEBUG on stmt: branch $844pred, 768, 846 -13:52:45,129 numba.core.ssa DEBUG ==== SSA block analysis pass on 846 -13:52:45,129 numba.core.ssa DEBUG Running -13:52:45,129 numba.core.ssa DEBUG on stmt: $850compare_op.2 = i >= j -13:52:45,129 numba.core.ssa DEBUG on stmt: bool856 = global(bool: ) -13:52:45,129 numba.core.ssa DEBUG on stmt: $856pred = call bool856($850compare_op.2, func=bool856, args=(Var($850compare_op.2, quicksort.py:119),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,129 numba.core.ssa DEBUG on stmt: branch $856pred, 858, 860 -13:52:45,129 numba.core.ssa DEBUG ==== SSA block analysis pass on 858 -13:52:45,129 numba.core.ssa DEBUG Running -13:52:45,129 numba.core.ssa DEBUG on stmt: jump 928 -13:52:45,129 numba.core.ssa DEBUG ==== SSA block analysis pass on 860 -13:52:45,129 numba.core.ssa DEBUG Running -13:52:45,129 numba.core.ssa DEBUG on stmt: $864binary_subscr.2 = getitem(value=R, index=j, fn=) -13:52:45,129 numba.core.ssa DEBUG on stmt: $878binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,129 numba.core.ssa DEBUG on stmt: R[i] = $864binary_subscr.2 -13:52:45,129 numba.core.ssa DEBUG on stmt: R[j] = $878binary_subscr.5 -13:52:45,129 numba.core.ssa DEBUG on stmt: $const908.11 = const(int, 1) -13:52:45,129 numba.core.ssa DEBUG on stmt: $binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,129 numba.core.ssa DEBUG on stmt: i = $binop_iadd910.12 -13:52:45,129 numba.core.ssa DEBUG on stmt: $const918.14 = const(int, 1) -13:52:45,129 numba.core.ssa DEBUG on stmt: $binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,129 numba.core.ssa DEBUG on stmt: j = $binop_isub920.15 -13:52:45,129 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,129 numba.core.ssa DEBUG ==== SSA block analysis pass on 928 -13:52:45,129 numba.core.ssa DEBUG Running -13:52:45,129 numba.core.ssa DEBUG on stmt: $932binary_subscr.2 = getitem(value=R, index=high, fn=) -13:52:45,129 numba.core.ssa DEBUG on stmt: $946binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,129 numba.core.ssa DEBUG on stmt: R[i] = $932binary_subscr.2 -13:52:45,129 numba.core.ssa DEBUG on stmt: R[high] = $946binary_subscr.5 -13:52:45,129 numba.core.ssa DEBUG on stmt: $976return_value.11 = cast(value=i) -13:52:45,129 numba.core.ssa DEBUG on stmt: return $976return_value.11 -13:52:45,132 numba.core.ssa DEBUG defs defaultdict(, - {'$102binary_subscr.19': [(, - 38)], - '$10compare_op.2': [(, - 0)], - '$116call.20': [(, - 38)], - '$130call.21': [(, - 38)], - '$140pred': [(, - 38)], - '$146binary_subscr.2': [(, - 142)], - '$160binary_subscr.5': [(, - 142)], - '$16pred': [(, - 0)], - '$190load_deref.1': [(, - 188)], - '$194load_deref.3': [(, - 188)], - '$202binary_subscr.7': [(, - 188)], - '$216call.8': [(, - 188)], - '$228load_deref.10': [(, - 188)], - '$236binary_subscr.14': [(, - 188)], - '$250call.15': [(, - 188)], - '$264call.16': [(, - 188)], - '$26compare_op.2': [(, - 22)], - '$274pred': [(, - 188)], - '$280binary_subscr.2': [(, - 276)], - '$294binary_subscr.5': [(, - 276)], - '$324load_deref.1': [(, - 322)], - '$328load_deref.3': [(, - 322)], - '$32pred': [(, - 22)], - '$336binary_subscr.7': [(, - 322)], - '$350call.8': [(, - 322)], - '$362load_deref.10': [(, - 322)], - '$370binary_subscr.14': [(, - 322)], - '$384call.15': [(, - 322)], - '$398call.16': [(, - 322)], - '$408pred': [(, - 322)], - '$414binary_subscr.2': [(, - 410)], - '$428binary_subscr.5': [(, - 410)], - '$458load_deref.1': [(, - 456)], - '$466binary_subscr.5': [(, - 456)], - '$496binary_subscr.9': [(, - 456)], - '$510binary_subscr.12': [(, - 456)], - '$558compare_op.2': [(, - 554)], - '$564pred': [(, - 554)], - '$568load_deref.1': [(, - 566)], - '$56load_deref.6': [(, - 38)], - '$572load_deref.3': [(, - 566)], - '$580binary_subscr.7': [(, - 566)], - '$594call.8': [(, - 566)], - '$60load_deref.8': [(, - 38)], - '$610call.10': [(, - 566)], - '$620pred': [(, - 566)], - '$636compare_op.5': [(, - 622)], - '$642pred': [(, - 622)], - '$646load_deref.1': [(, - 644)], - '$650load_deref.3': [(, - 644)], - '$658binary_subscr.7': [(, - 644)], - '$672call.8': [(, - 644)], - '$688call.10': [(, - 644)], - '$68binary_subscr.12': [(, - 38)], - '$698pred': [(, - 644)], - '$704compare_op.2': [(, - 700)], - '$710pred': [(, - 700)], - '$714load_deref.1': [(, - 712)], - '$720load_deref.4': [(, - 712)], - '$728binary_subscr.8': [(, - 712)], - '$742call.9': [(, - 712)], - '$756call.10': [(, - 712)], - '$766pred': [(, - 712)], - '$782compare_op.5': [(, - 768)], - '$788pred': [(, - 768)], - '$792load_deref.1': [(, - 790)], - '$798load_deref.4': [(, - 790)], - '$806binary_subscr.8': [(, - 790)], - '$820call.9': [(, - 790)], - '$82call.13': [(, - 38)], - '$834call.10': [(, - 790)], - '$844pred': [(, - 790)], - '$850compare_op.2': [(, - 846)], - '$856pred': [(, - 846)], - '$864binary_subscr.2': [(, - 860)], - '$878binary_subscr.5': [(, - 860)], - '$932binary_subscr.2': [(, - 928)], - '$946binary_subscr.5': [(, - 928)], - '$94load_deref.15': [(, - 38)], - '$976return_value.11': [(, - 928)], - '$assertion_error18.0': [(, - 18)], - '$assertion_error34.0': [(, - 34)], - '$binop_add42.2': [(, - 38)], - '$binop_iadd626.2': [(, - 622)], - '$binop_iadd910.12': [(, - 860)], - '$binop_isub772.2': [(, - 768)], - '$binop_isub920.15': [(, - 860)], - '$const46.3': [(, - 38)], - '$const544.19': [(, - 456)], - '$const624.1': [(, - 622)], - '$const770.1': [(, - 768)], - '$const8.1': [(, - 0)], - '$const908.11': [(, - 860)], - '$const918.14': [(, - 860)], - 'A': [(, 0)], - 'R': [(, 0)], - 'bool140': [(, - 38)], - 'bool16': [(, - 0)], - 'bool274': [(, - 188)], - 'bool32': [(, - 22)], - 'bool408': [(, - 322)], - 'bool564': [(, - 554)], - 'bool620': [(, - 566)], - 'bool642': [(, - 622)], - 'bool698': [(, - 644)], - 'bool710': [(, - 700)], - 'bool766': [(, - 712)], - 'bool788': [(, - 768)], - 'bool844': [(, - 790)], - 'bool856': [(, - 846)], - 'high': [(, 0)], - 'i': [(, 456), - (, 622), - (, 860)], - 'j': [(, 456), - (, 768), - (, 860)], - 'low': [(, 0)], - 'mid': [(, 38)], - 'pivot': [(, - 456)]}) -13:52:45,133 numba.core.ssa DEBUG SSA violators -13:52:45,133 numba.core.ssa DEBUG Fix SSA violator on var i -13:52:45,133 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,133 numba.core.ssa DEBUG Running -13:52:45,133 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,133 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,133 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,133 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,133 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,133 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,133 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,133 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:92),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,133 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,133 numba.core.ssa DEBUG ==== SSA block rewrite pass on 18 -13:52:45,133 numba.core.ssa DEBUG Running -13:52:45,133 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,133 numba.core.ssa DEBUG on stmt: raise -13:52:45,133 numba.core.ssa DEBUG ==== SSA block rewrite pass on 22 -13:52:45,133 numba.core.ssa DEBUG Running -13:52:45,133 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high > low -13:52:45,133 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,133 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,133 numba.core.ssa DEBUG on stmt: branch $32pred, 38, 34 -13:52:45,133 numba.core.ssa DEBUG ==== SSA block rewrite pass on 34 -13:52:45,133 numba.core.ssa DEBUG Running -13:52:45,133 numba.core.ssa DEBUG on stmt: $assertion_error34.0 = global(AssertionError: ) -13:52:45,133 numba.core.ssa DEBUG on stmt: raise -13:52:45,133 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:45,133 numba.core.ssa DEBUG Running -13:52:45,133 numba.core.ssa DEBUG on stmt: $binop_add42.2 = low + high -13:52:45,133 numba.core.ssa DEBUG on stmt: $const46.3 = const(int, 1) -13:52:45,133 numba.core.ssa DEBUG on stmt: mid = $binop_add42.2 >> $const46.3 -13:52:45,133 numba.core.ssa DEBUG on stmt: $56load_deref.6 = freevar(LT: ) -13:52:45,133 numba.core.ssa DEBUG on stmt: $60load_deref.8 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,134 numba.core.ssa DEBUG on stmt: $68binary_subscr.12 = getitem(value=R, index=mid, fn=) -13:52:45,134 numba.core.ssa DEBUG on stmt: $82call.13 = call $60load_deref.8(A, $68binary_subscr.12, func=$60load_deref.8, args=[Var(A, quicksort.py:86), Var($68binary_subscr.12, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: $94load_deref.15 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,134 numba.core.ssa DEBUG on stmt: $102binary_subscr.19 = getitem(value=R, index=low, fn=) -13:52:45,134 numba.core.ssa DEBUG on stmt: $116call.20 = call $94load_deref.15(A, $102binary_subscr.19, func=$94load_deref.15, args=[Var(A, quicksort.py:86), Var($102binary_subscr.19, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: $130call.21 = call $56load_deref.6($82call.13, $116call.20, func=$56load_deref.6, args=[Var($82call.13, quicksort.py:102), Var($116call.20, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,134 numba.core.ssa DEBUG on stmt: $140pred = call bool140($130call.21, func=bool140, args=(Var($130call.21, quicksort.py:102),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 188 -13:52:45,134 numba.core.ssa DEBUG ==== SSA block rewrite pass on 142 -13:52:45,134 numba.core.ssa DEBUG Running -13:52:45,134 numba.core.ssa DEBUG on stmt: $146binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,134 numba.core.ssa DEBUG on stmt: $160binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,134 numba.core.ssa DEBUG on stmt: R[low] = $146binary_subscr.2 -13:52:45,134 numba.core.ssa DEBUG on stmt: R[mid] = $160binary_subscr.5 -13:52:45,134 numba.core.ssa DEBUG on stmt: jump 188 -13:52:45,134 numba.core.ssa DEBUG ==== SSA block rewrite pass on 188 -13:52:45,134 numba.core.ssa DEBUG Running -13:52:45,134 numba.core.ssa DEBUG on stmt: $190load_deref.1 = freevar(LT: ) -13:52:45,134 numba.core.ssa DEBUG on stmt: $194load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,134 numba.core.ssa DEBUG on stmt: $202binary_subscr.7 = getitem(value=R, index=high, fn=) -13:52:45,134 numba.core.ssa DEBUG on stmt: $216call.8 = call $194load_deref.3(A, $202binary_subscr.7, func=$194load_deref.3, args=[Var(A, quicksort.py:86), Var($202binary_subscr.7, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: $228load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,134 numba.core.ssa DEBUG on stmt: $236binary_subscr.14 = getitem(value=R, index=mid, fn=) -13:52:45,134 numba.core.ssa DEBUG on stmt: $250call.15 = call $228load_deref.10(A, $236binary_subscr.14, func=$228load_deref.10, args=[Var(A, quicksort.py:86), Var($236binary_subscr.14, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: $264call.16 = call $190load_deref.1($216call.8, $250call.15, func=$190load_deref.1, args=[Var($216call.8, quicksort.py:104), Var($250call.15, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: bool274 = global(bool: ) -13:52:45,134 numba.core.ssa DEBUG on stmt: $274pred = call bool274($264call.16, func=bool274, args=(Var($264call.16, quicksort.py:104),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,134 numba.core.ssa DEBUG on stmt: branch $274pred, 276, 322 -13:52:45,134 numba.core.ssa DEBUG ==== SSA block rewrite pass on 276 -13:52:45,134 numba.core.ssa DEBUG Running -13:52:45,134 numba.core.ssa DEBUG on stmt: $280binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: $294binary_subscr.5 = getitem(value=R, index=high, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: R[high] = $280binary_subscr.2 -13:52:45,135 numba.core.ssa DEBUG on stmt: R[mid] = $294binary_subscr.5 -13:52:45,135 numba.core.ssa DEBUG on stmt: jump 322 -13:52:45,135 numba.core.ssa DEBUG ==== SSA block rewrite pass on 322 -13:52:45,135 numba.core.ssa DEBUG Running -13:52:45,135 numba.core.ssa DEBUG on stmt: $324load_deref.1 = freevar(LT: ) -13:52:45,135 numba.core.ssa DEBUG on stmt: $328load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,135 numba.core.ssa DEBUG on stmt: $336binary_subscr.7 = getitem(value=R, index=mid, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: $350call.8 = call $328load_deref.3(A, $336binary_subscr.7, func=$328load_deref.3, args=[Var(A, quicksort.py:86), Var($336binary_subscr.7, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,135 numba.core.ssa DEBUG on stmt: $362load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,135 numba.core.ssa DEBUG on stmt: $370binary_subscr.14 = getitem(value=R, index=low, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: $384call.15 = call $362load_deref.10(A, $370binary_subscr.14, func=$362load_deref.10, args=[Var(A, quicksort.py:86), Var($370binary_subscr.14, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,135 numba.core.ssa DEBUG on stmt: $398call.16 = call $324load_deref.1($350call.8, $384call.15, func=$324load_deref.1, args=[Var($350call.8, quicksort.py:106), Var($384call.15, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,135 numba.core.ssa DEBUG on stmt: bool408 = global(bool: ) -13:52:45,135 numba.core.ssa DEBUG on stmt: $408pred = call bool408($398call.16, func=bool408, args=(Var($398call.16, quicksort.py:106),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,135 numba.core.ssa DEBUG on stmt: branch $408pred, 410, 456 -13:52:45,135 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:45,135 numba.core.ssa DEBUG Running -13:52:45,135 numba.core.ssa DEBUG on stmt: $414binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: $428binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: R[low] = $414binary_subscr.2 -13:52:45,135 numba.core.ssa DEBUG on stmt: R[mid] = $428binary_subscr.5 -13:52:45,135 numba.core.ssa DEBUG on stmt: jump 456 -13:52:45,135 numba.core.ssa DEBUG ==== SSA block rewrite pass on 456 -13:52:45,135 numba.core.ssa DEBUG Running -13:52:45,135 numba.core.ssa DEBUG on stmt: $458load_deref.1 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,135 numba.core.ssa DEBUG on stmt: $466binary_subscr.5 = getitem(value=R, index=mid, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: pivot = call $458load_deref.1(A, $466binary_subscr.5, func=$458load_deref.1, args=[Var(A, quicksort.py:86), Var($466binary_subscr.5, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,135 numba.core.ssa DEBUG on stmt: $496binary_subscr.9 = getitem(value=R, index=mid, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: $510binary_subscr.12 = getitem(value=R, index=high, fn=) -13:52:45,135 numba.core.ssa DEBUG on stmt: R[high] = $496binary_subscr.9 -13:52:45,135 numba.core.ssa DEBUG on stmt: R[mid] = $510binary_subscr.12 -13:52:45,135 numba.core.ssa DEBUG on stmt: i = low -13:52:45,135 numba.core.ssa DEBUG first assign: i -13:52:45,136 numba.core.ssa DEBUG replaced with: i = low -13:52:45,136 numba.core.ssa DEBUG on stmt: $const544.19 = const(int, 1) -13:52:45,136 numba.core.ssa DEBUG on stmt: j = high - $const544.19 -13:52:45,136 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,136 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:45,136 numba.core.ssa DEBUG Running -13:52:45,136 numba.core.ssa DEBUG on stmt: $558compare_op.2 = i < high -13:52:45,136 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:45,136 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.2, func=bool564, args=(Var($558compare_op.2, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,136 numba.core.ssa DEBUG on stmt: branch $564pred, 566, 700 -13:52:45,136 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:45,136 numba.core.ssa DEBUG Running -13:52:45,136 numba.core.ssa DEBUG on stmt: $568load_deref.1 = freevar(LT: ) -13:52:45,136 numba.core.ssa DEBUG on stmt: $572load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,136 numba.core.ssa DEBUG on stmt: $580binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,136 numba.core.ssa DEBUG on stmt: $594call.8 = call $572load_deref.3(A, $580binary_subscr.7, func=$572load_deref.3, args=[Var(A, quicksort.py:86), Var($580binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,136 numba.core.ssa DEBUG on stmt: $610call.10 = call $568load_deref.1($594call.8, pivot, func=$568load_deref.1, args=[Var($594call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,136 numba.core.ssa DEBUG on stmt: bool620 = global(bool: ) -13:52:45,136 numba.core.ssa DEBUG on stmt: $620pred = call bool620($610call.10, func=bool620, args=(Var($610call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,136 numba.core.ssa DEBUG on stmt: branch $620pred, 622, 700 -13:52:45,136 numba.core.ssa DEBUG ==== SSA block rewrite pass on 622 -13:52:45,136 numba.core.ssa DEBUG Running -13:52:45,136 numba.core.ssa DEBUG on stmt: $const624.1 = const(int, 1) -13:52:45,136 numba.core.ssa DEBUG on stmt: $binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,136 numba.core.ssa DEBUG on stmt: i = $binop_iadd626.2 -13:52:45,136 numba.core.ssa DEBUG replaced with: i.1 = $binop_iadd626.2 -13:52:45,136 numba.core.ssa DEBUG on stmt: $636compare_op.5 = i < high -13:52:45,136 numba.core.ssa DEBUG on stmt: bool642 = global(bool: ) -13:52:45,136 numba.core.ssa DEBUG on stmt: $642pred = call bool642($636compare_op.5, func=bool642, args=(Var($636compare_op.5, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,136 numba.core.ssa DEBUG on stmt: branch $642pred, 644, 700 -13:52:45,136 numba.core.ssa DEBUG ==== SSA block rewrite pass on 644 -13:52:45,136 numba.core.ssa DEBUG Running -13:52:45,136 numba.core.ssa DEBUG on stmt: $646load_deref.1 = freevar(LT: ) -13:52:45,136 numba.core.ssa DEBUG on stmt: $650load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,137 numba.core.ssa DEBUG on stmt: $658binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,137 numba.core.ssa DEBUG on stmt: $672call.8 = call $650load_deref.3(A, $658binary_subscr.7, func=$650load_deref.3, args=[Var(A, quicksort.py:86), Var($658binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: $688call.10 = call $646load_deref.1($672call.8, pivot, func=$646load_deref.1, args=[Var($672call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: bool698 = global(bool: ) -13:52:45,137 numba.core.ssa DEBUG on stmt: $698pred = call bool698($688call.10, func=bool698, args=(Var($688call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: branch $698pred, 622, 700 -13:52:45,137 numba.core.ssa DEBUG ==== SSA block rewrite pass on 700 -13:52:45,137 numba.core.ssa DEBUG Running -13:52:45,137 numba.core.ssa DEBUG on stmt: $704compare_op.2 = j >= low -13:52:45,137 numba.core.ssa DEBUG on stmt: bool710 = global(bool: ) -13:52:45,137 numba.core.ssa DEBUG on stmt: $710pred = call bool710($704compare_op.2, func=bool710, args=(Var($704compare_op.2, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: branch $710pred, 712, 846 -13:52:45,137 numba.core.ssa DEBUG ==== SSA block rewrite pass on 712 -13:52:45,137 numba.core.ssa DEBUG Running -13:52:45,137 numba.core.ssa DEBUG on stmt: $714load_deref.1 = freevar(LT: ) -13:52:45,137 numba.core.ssa DEBUG on stmt: $720load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,137 numba.core.ssa DEBUG on stmt: $728binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,137 numba.core.ssa DEBUG on stmt: $742call.9 = call $720load_deref.4(A, $728binary_subscr.8, func=$720load_deref.4, args=[Var(A, quicksort.py:86), Var($728binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: $756call.10 = call $714load_deref.1(pivot, $742call.9, func=$714load_deref.1, args=[Var(pivot, quicksort.py:108), Var($742call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: bool766 = global(bool: ) -13:52:45,137 numba.core.ssa DEBUG on stmt: $766pred = call bool766($756call.10, func=bool766, args=(Var($756call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: branch $766pred, 768, 846 -13:52:45,137 numba.core.ssa DEBUG ==== SSA block rewrite pass on 768 -13:52:45,137 numba.core.ssa DEBUG Running -13:52:45,137 numba.core.ssa DEBUG on stmt: $const770.1 = const(int, 1) -13:52:45,137 numba.core.ssa DEBUG on stmt: $binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,137 numba.core.ssa DEBUG on stmt: j = $binop_isub772.2 -13:52:45,137 numba.core.ssa DEBUG on stmt: $782compare_op.5 = j >= low -13:52:45,137 numba.core.ssa DEBUG on stmt: bool788 = global(bool: ) -13:52:45,137 numba.core.ssa DEBUG on stmt: $788pred = call bool788($782compare_op.5, func=bool788, args=(Var($782compare_op.5, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,137 numba.core.ssa DEBUG on stmt: branch $788pred, 790, 846 -13:52:45,137 numba.core.ssa DEBUG ==== SSA block rewrite pass on 790 -13:52:45,137 numba.core.ssa DEBUG Running -13:52:45,137 numba.core.ssa DEBUG on stmt: $792load_deref.1 = freevar(LT: ) -13:52:45,138 numba.core.ssa DEBUG on stmt: $798load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,138 numba.core.ssa DEBUG on stmt: $806binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,138 numba.core.ssa DEBUG on stmt: $820call.9 = call $798load_deref.4(A, $806binary_subscr.8, func=$798load_deref.4, args=[Var(A, quicksort.py:86), Var($806binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,138 numba.core.ssa DEBUG on stmt: $834call.10 = call $792load_deref.1(pivot, $820call.9, func=$792load_deref.1, args=[Var(pivot, quicksort.py:108), Var($820call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,138 numba.core.ssa DEBUG on stmt: bool844 = global(bool: ) -13:52:45,138 numba.core.ssa DEBUG on stmt: $844pred = call bool844($834call.10, func=bool844, args=(Var($834call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,138 numba.core.ssa DEBUG on stmt: branch $844pred, 768, 846 -13:52:45,138 numba.core.ssa DEBUG ==== SSA block rewrite pass on 846 -13:52:45,138 numba.core.ssa DEBUG Running -13:52:45,138 numba.core.ssa DEBUG on stmt: $850compare_op.2 = i >= j -13:52:45,138 numba.core.ssa DEBUG on stmt: bool856 = global(bool: ) -13:52:45,138 numba.core.ssa DEBUG on stmt: $856pred = call bool856($850compare_op.2, func=bool856, args=(Var($850compare_op.2, quicksort.py:119),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,138 numba.core.ssa DEBUG on stmt: branch $856pred, 858, 860 -13:52:45,138 numba.core.ssa DEBUG ==== SSA block rewrite pass on 858 -13:52:45,138 numba.core.ssa DEBUG Running -13:52:45,138 numba.core.ssa DEBUG on stmt: jump 928 -13:52:45,138 numba.core.ssa DEBUG ==== SSA block rewrite pass on 860 -13:52:45,138 numba.core.ssa DEBUG Running -13:52:45,138 numba.core.ssa DEBUG on stmt: $864binary_subscr.2 = getitem(value=R, index=j, fn=) -13:52:45,138 numba.core.ssa DEBUG on stmt: $878binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,138 numba.core.ssa DEBUG on stmt: R[i] = $864binary_subscr.2 -13:52:45,138 numba.core.ssa DEBUG on stmt: R[j] = $878binary_subscr.5 -13:52:45,138 numba.core.ssa DEBUG on stmt: $const908.11 = const(int, 1) -13:52:45,138 numba.core.ssa DEBUG on stmt: $binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,138 numba.core.ssa DEBUG on stmt: i = $binop_iadd910.12 -13:52:45,138 numba.core.ssa DEBUG replaced with: i.2 = $binop_iadd910.12 -13:52:45,138 numba.core.ssa DEBUG on stmt: $const918.14 = const(int, 1) -13:52:45,138 numba.core.ssa DEBUG on stmt: $binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,138 numba.core.ssa DEBUG on stmt: j = $binop_isub920.15 -13:52:45,138 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,138 numba.core.ssa DEBUG ==== SSA block rewrite pass on 928 -13:52:45,138 numba.core.ssa DEBUG Running -13:52:45,138 numba.core.ssa DEBUG on stmt: $932binary_subscr.2 = getitem(value=R, index=high, fn=) -13:52:45,138 numba.core.ssa DEBUG on stmt: $946binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,138 numba.core.ssa DEBUG on stmt: R[i] = $932binary_subscr.2 -13:52:45,139 numba.core.ssa DEBUG on stmt: R[high] = $946binary_subscr.5 -13:52:45,139 numba.core.ssa DEBUG on stmt: $976return_value.11 = cast(value=i) -13:52:45,139 numba.core.ssa DEBUG on stmt: return $976return_value.11 -13:52:45,139 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {456: [], - 622: [], - 860: []}) -13:52:45,139 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,139 numba.core.ssa DEBUG Running -13:52:45,139 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,139 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,139 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,139 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,139 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,139 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,139 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,139 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:92),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,139 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,139 numba.core.ssa DEBUG ==== SSA block rewrite pass on 18 -13:52:45,139 numba.core.ssa DEBUG Running -13:52:45,139 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,139 numba.core.ssa DEBUG on stmt: raise -13:52:45,139 numba.core.ssa DEBUG ==== SSA block rewrite pass on 22 -13:52:45,139 numba.core.ssa DEBUG Running -13:52:45,139 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high > low -13:52:45,139 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,139 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,139 numba.core.ssa DEBUG on stmt: branch $32pred, 38, 34 -13:52:45,139 numba.core.ssa DEBUG ==== SSA block rewrite pass on 34 -13:52:45,139 numba.core.ssa DEBUG Running -13:52:45,139 numba.core.ssa DEBUG on stmt: $assertion_error34.0 = global(AssertionError: ) -13:52:45,139 numba.core.ssa DEBUG on stmt: raise -13:52:45,139 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:45,139 numba.core.ssa DEBUG Running -13:52:45,139 numba.core.ssa DEBUG on stmt: $binop_add42.2 = low + high -13:52:45,139 numba.core.ssa DEBUG on stmt: $const46.3 = const(int, 1) -13:52:45,140 numba.core.ssa DEBUG on stmt: mid = $binop_add42.2 >> $const46.3 -13:52:45,140 numba.core.ssa DEBUG on stmt: $56load_deref.6 = freevar(LT: ) -13:52:45,140 numba.core.ssa DEBUG on stmt: $60load_deref.8 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,140 numba.core.ssa DEBUG on stmt: $68binary_subscr.12 = getitem(value=R, index=mid, fn=) -13:52:45,140 numba.core.ssa DEBUG on stmt: $82call.13 = call $60load_deref.8(A, $68binary_subscr.12, func=$60load_deref.8, args=[Var(A, quicksort.py:86), Var($68binary_subscr.12, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,140 numba.core.ssa DEBUG on stmt: $94load_deref.15 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,140 numba.core.ssa DEBUG on stmt: $102binary_subscr.19 = getitem(value=R, index=low, fn=) -13:52:45,140 numba.core.ssa DEBUG on stmt: $116call.20 = call $94load_deref.15(A, $102binary_subscr.19, func=$94load_deref.15, args=[Var(A, quicksort.py:86), Var($102binary_subscr.19, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,140 numba.core.ssa DEBUG on stmt: $130call.21 = call $56load_deref.6($82call.13, $116call.20, func=$56load_deref.6, args=[Var($82call.13, quicksort.py:102), Var($116call.20, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,140 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,140 numba.core.ssa DEBUG on stmt: $140pred = call bool140($130call.21, func=bool140, args=(Var($130call.21, quicksort.py:102),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,140 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 188 -13:52:45,140 numba.core.ssa DEBUG ==== SSA block rewrite pass on 142 -13:52:45,140 numba.core.ssa DEBUG Running -13:52:45,140 numba.core.ssa DEBUG on stmt: $146binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,140 numba.core.ssa DEBUG on stmt: $160binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,140 numba.core.ssa DEBUG on stmt: R[low] = $146binary_subscr.2 -13:52:45,140 numba.core.ssa DEBUG on stmt: R[mid] = $160binary_subscr.5 -13:52:45,140 numba.core.ssa DEBUG on stmt: jump 188 -13:52:45,140 numba.core.ssa DEBUG ==== SSA block rewrite pass on 188 -13:52:45,140 numba.core.ssa DEBUG Running -13:52:45,140 numba.core.ssa DEBUG on stmt: $190load_deref.1 = freevar(LT: ) -13:52:45,140 numba.core.ssa DEBUG on stmt: $194load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,140 numba.core.ssa DEBUG on stmt: $202binary_subscr.7 = getitem(value=R, index=high, fn=) -13:52:45,140 numba.core.ssa DEBUG on stmt: $216call.8 = call $194load_deref.3(A, $202binary_subscr.7, func=$194load_deref.3, args=[Var(A, quicksort.py:86), Var($202binary_subscr.7, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,140 numba.core.ssa DEBUG on stmt: $228load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,140 numba.core.ssa DEBUG on stmt: $236binary_subscr.14 = getitem(value=R, index=mid, fn=) -13:52:45,140 numba.core.ssa DEBUG on stmt: $250call.15 = call $228load_deref.10(A, $236binary_subscr.14, func=$228load_deref.10, args=[Var(A, quicksort.py:86), Var($236binary_subscr.14, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,140 numba.core.ssa DEBUG on stmt: $264call.16 = call $190load_deref.1($216call.8, $250call.15, func=$190load_deref.1, args=[Var($216call.8, quicksort.py:104), Var($250call.15, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,140 numba.core.ssa DEBUG on stmt: bool274 = global(bool: ) -13:52:45,141 numba.core.ssa DEBUG on stmt: $274pred = call bool274($264call.16, func=bool274, args=(Var($264call.16, quicksort.py:104),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,141 numba.core.ssa DEBUG on stmt: branch $274pred, 276, 322 -13:52:45,141 numba.core.ssa DEBUG ==== SSA block rewrite pass on 276 -13:52:45,141 numba.core.ssa DEBUG Running -13:52:45,141 numba.core.ssa DEBUG on stmt: $280binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,141 numba.core.ssa DEBUG on stmt: $294binary_subscr.5 = getitem(value=R, index=high, fn=) -13:52:45,141 numba.core.ssa DEBUG on stmt: R[high] = $280binary_subscr.2 -13:52:45,141 numba.core.ssa DEBUG on stmt: R[mid] = $294binary_subscr.5 -13:52:45,141 numba.core.ssa DEBUG on stmt: jump 322 -13:52:45,141 numba.core.ssa DEBUG ==== SSA block rewrite pass on 322 -13:52:45,141 numba.core.ssa DEBUG Running -13:52:45,141 numba.core.ssa DEBUG on stmt: $324load_deref.1 = freevar(LT: ) -13:52:45,141 numba.core.ssa DEBUG on stmt: $328load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,141 numba.core.ssa DEBUG on stmt: $336binary_subscr.7 = getitem(value=R, index=mid, fn=) -13:52:45,141 numba.core.ssa DEBUG on stmt: $350call.8 = call $328load_deref.3(A, $336binary_subscr.7, func=$328load_deref.3, args=[Var(A, quicksort.py:86), Var($336binary_subscr.7, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,141 numba.core.ssa DEBUG on stmt: $362load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,141 numba.core.ssa DEBUG on stmt: $370binary_subscr.14 = getitem(value=R, index=low, fn=) -13:52:45,141 numba.core.ssa DEBUG on stmt: $384call.15 = call $362load_deref.10(A, $370binary_subscr.14, func=$362load_deref.10, args=[Var(A, quicksort.py:86), Var($370binary_subscr.14, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,141 numba.core.ssa DEBUG on stmt: $398call.16 = call $324load_deref.1($350call.8, $384call.15, func=$324load_deref.1, args=[Var($350call.8, quicksort.py:106), Var($384call.15, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,141 numba.core.ssa DEBUG on stmt: bool408 = global(bool: ) -13:52:45,141 numba.core.ssa DEBUG on stmt: $408pred = call bool408($398call.16, func=bool408, args=(Var($398call.16, quicksort.py:106),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,141 numba.core.ssa DEBUG on stmt: branch $408pred, 410, 456 -13:52:45,141 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:45,141 numba.core.ssa DEBUG Running -13:52:45,141 numba.core.ssa DEBUG on stmt: $414binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,141 numba.core.ssa DEBUG on stmt: $428binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,141 numba.core.ssa DEBUG on stmt: R[low] = $414binary_subscr.2 -13:52:45,141 numba.core.ssa DEBUG on stmt: R[mid] = $428binary_subscr.5 -13:52:45,141 numba.core.ssa DEBUG on stmt: jump 456 -13:52:45,141 numba.core.ssa DEBUG ==== SSA block rewrite pass on 456 -13:52:45,141 numba.core.ssa DEBUG Running -13:52:45,141 numba.core.ssa DEBUG on stmt: $458load_deref.1 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,142 numba.core.ssa DEBUG on stmt: $466binary_subscr.5 = getitem(value=R, index=mid, fn=) -13:52:45,142 numba.core.ssa DEBUG on stmt: pivot = call $458load_deref.1(A, $466binary_subscr.5, func=$458load_deref.1, args=[Var(A, quicksort.py:86), Var($466binary_subscr.5, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,142 numba.core.ssa DEBUG on stmt: $496binary_subscr.9 = getitem(value=R, index=mid, fn=) -13:52:45,142 numba.core.ssa DEBUG on stmt: $510binary_subscr.12 = getitem(value=R, index=high, fn=) -13:52:45,142 numba.core.ssa DEBUG on stmt: R[high] = $496binary_subscr.9 -13:52:45,142 numba.core.ssa DEBUG on stmt: R[mid] = $510binary_subscr.12 -13:52:45,142 numba.core.ssa DEBUG on stmt: i = low -13:52:45,142 numba.core.ssa DEBUG on stmt: $const544.19 = const(int, 1) -13:52:45,142 numba.core.ssa DEBUG on stmt: j = high - $const544.19 -13:52:45,142 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,142 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:45,142 numba.core.ssa DEBUG Running -13:52:45,142 numba.core.ssa DEBUG on stmt: $558compare_op.2 = i < high -13:52:45,142 numba.core.ssa DEBUG find_def var='i' stmt=$558compare_op.2 = i < high -13:52:45,142 numba.core.ssa DEBUG find_def_from_top label 554 -13:52:45,142 numba.core.ssa DEBUG insert phi node i.3 = phi(incoming_values=[], incoming_blocks=[]) at 554 -13:52:45,142 numba.core.ssa DEBUG find_def_from_bottom label 456 -13:52:45,142 numba.core.ssa DEBUG incoming_def i = low -13:52:45,142 numba.core.ssa DEBUG find_def_from_bottom label 860 -13:52:45,142 numba.core.ssa DEBUG incoming_def i.2 = $binop_iadd910.12 -13:52:45,142 numba.core.ssa DEBUG replaced with: $558compare_op.2 = i.3 < high -13:52:45,142 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:45,142 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.2, func=bool564, args=(Var($558compare_op.2, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,142 numba.core.ssa DEBUG on stmt: branch $564pred, 566, 700 -13:52:45,142 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:45,142 numba.core.ssa DEBUG Running -13:52:45,142 numba.core.ssa DEBUG on stmt: $568load_deref.1 = freevar(LT: ) -13:52:45,142 numba.core.ssa DEBUG on stmt: $572load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,142 numba.core.ssa DEBUG on stmt: $580binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,142 numba.core.ssa DEBUG find_def var='i' stmt=$580binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,142 numba.core.ssa DEBUG find_def_from_top label 566 -13:52:45,142 numba.core.ssa DEBUG idom 554 from label 566 -13:52:45,143 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,143 numba.core.ssa DEBUG replaced with: $580binary_subscr.7 = getitem(value=R, index=i.3, fn=) -13:52:45,143 numba.core.ssa DEBUG on stmt: $594call.8 = call $572load_deref.3(A, $580binary_subscr.7, func=$572load_deref.3, args=[Var(A, quicksort.py:86), Var($580binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,143 numba.core.ssa DEBUG on stmt: $610call.10 = call $568load_deref.1($594call.8, pivot, func=$568load_deref.1, args=[Var($594call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,143 numba.core.ssa DEBUG on stmt: bool620 = global(bool: ) -13:52:45,143 numba.core.ssa DEBUG on stmt: $620pred = call bool620($610call.10, func=bool620, args=(Var($610call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,143 numba.core.ssa DEBUG on stmt: branch $620pred, 622, 700 -13:52:45,143 numba.core.ssa DEBUG ==== SSA block rewrite pass on 622 -13:52:45,143 numba.core.ssa DEBUG Running -13:52:45,143 numba.core.ssa DEBUG on stmt: $const624.1 = const(int, 1) -13:52:45,143 numba.core.ssa DEBUG on stmt: $binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,143 numba.core.ssa DEBUG find_def var='i' stmt=$binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,143 numba.core.ssa DEBUG find_def_from_top label 622 -13:52:45,143 numba.core.ssa DEBUG insert phi node i.4 = phi(incoming_values=[], incoming_blocks=[]) at 622 -13:52:45,143 numba.core.ssa DEBUG find_def_from_bottom label 644 -13:52:45,143 numba.core.ssa DEBUG find_def_from_top label 644 -13:52:45,143 numba.core.ssa DEBUG idom 622 from label 644 -13:52:45,143 numba.core.ssa DEBUG find_def_from_bottom label 622 -13:52:45,143 numba.core.ssa DEBUG incoming_def i.1 = $binop_iadd626.2 -13:52:45,143 numba.core.ssa DEBUG find_def_from_bottom label 566 -13:52:45,143 numba.core.ssa DEBUG find_def_from_top label 566 -13:52:45,143 numba.core.ssa DEBUG idom 554 from label 566 -13:52:45,143 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,143 numba.core.ssa DEBUG incoming_def i.3 = phi(incoming_values=[Var(i, quicksort.py:112), Var(i.2, quicksort.py:122)], incoming_blocks=[456, 860]) -13:52:45,143 numba.core.ssa DEBUG replaced with: $binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i.4, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,143 numba.core.ssa DEBUG on stmt: i.1 = $binop_iadd626.2 -13:52:45,143 numba.core.ssa DEBUG on stmt: $636compare_op.5 = i < high -13:52:45,143 numba.core.ssa DEBUG find_def var='i' stmt=$636compare_op.5 = i < high -13:52:45,143 numba.core.ssa DEBUG replaced with: $636compare_op.5 = i.1 < high -13:52:45,143 numba.core.ssa DEBUG on stmt: bool642 = global(bool: ) -13:52:45,143 numba.core.ssa DEBUG on stmt: $642pred = call bool642($636compare_op.5, func=bool642, args=(Var($636compare_op.5, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,144 numba.core.ssa DEBUG on stmt: branch $642pred, 644, 700 -13:52:45,144 numba.core.ssa DEBUG ==== SSA block rewrite pass on 644 -13:52:45,144 numba.core.ssa DEBUG Running -13:52:45,144 numba.core.ssa DEBUG on stmt: $646load_deref.1 = freevar(LT: ) -13:52:45,144 numba.core.ssa DEBUG on stmt: $650load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,144 numba.core.ssa DEBUG on stmt: $658binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,144 numba.core.ssa DEBUG find_def var='i' stmt=$658binary_subscr.7 = getitem(value=R, index=i, fn=) -13:52:45,144 numba.core.ssa DEBUG find_def_from_top label 644 -13:52:45,144 numba.core.ssa DEBUG idom 622 from label 644 -13:52:45,144 numba.core.ssa DEBUG find_def_from_bottom label 622 -13:52:45,144 numba.core.ssa DEBUG replaced with: $658binary_subscr.7 = getitem(value=R, index=i.1, fn=) -13:52:45,144 numba.core.ssa DEBUG on stmt: $672call.8 = call $650load_deref.3(A, $658binary_subscr.7, func=$650load_deref.3, args=[Var(A, quicksort.py:86), Var($658binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,144 numba.core.ssa DEBUG on stmt: $688call.10 = call $646load_deref.1($672call.8, pivot, func=$646load_deref.1, args=[Var($672call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,144 numba.core.ssa DEBUG on stmt: bool698 = global(bool: ) -13:52:45,144 numba.core.ssa DEBUG on stmt: $698pred = call bool698($688call.10, func=bool698, args=(Var($688call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,144 numba.core.ssa DEBUG on stmt: branch $698pred, 622, 700 -13:52:45,144 numba.core.ssa DEBUG ==== SSA block rewrite pass on 700 -13:52:45,144 numba.core.ssa DEBUG Running -13:52:45,144 numba.core.ssa DEBUG on stmt: $704compare_op.2 = j >= low -13:52:45,144 numba.core.ssa DEBUG on stmt: bool710 = global(bool: ) -13:52:45,144 numba.core.ssa DEBUG on stmt: $710pred = call bool710($704compare_op.2, func=bool710, args=(Var($704compare_op.2, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,144 numba.core.ssa DEBUG on stmt: branch $710pred, 712, 846 -13:52:45,144 numba.core.ssa DEBUG ==== SSA block rewrite pass on 712 -13:52:45,144 numba.core.ssa DEBUG Running -13:52:45,144 numba.core.ssa DEBUG on stmt: $714load_deref.1 = freevar(LT: ) -13:52:45,144 numba.core.ssa DEBUG on stmt: $720load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,144 numba.core.ssa DEBUG on stmt: $728binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,144 numba.core.ssa DEBUG on stmt: $742call.9 = call $720load_deref.4(A, $728binary_subscr.8, func=$720load_deref.4, args=[Var(A, quicksort.py:86), Var($728binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,144 numba.core.ssa DEBUG on stmt: $756call.10 = call $714load_deref.1(pivot, $742call.9, func=$714load_deref.1, args=[Var(pivot, quicksort.py:108), Var($742call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,144 numba.core.ssa DEBUG on stmt: bool766 = global(bool: ) -13:52:45,145 numba.core.ssa DEBUG on stmt: $766pred = call bool766($756call.10, func=bool766, args=(Var($756call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,145 numba.core.ssa DEBUG on stmt: branch $766pred, 768, 846 -13:52:45,145 numba.core.ssa DEBUG ==== SSA block rewrite pass on 768 -13:52:45,145 numba.core.ssa DEBUG Running -13:52:45,145 numba.core.ssa DEBUG on stmt: $const770.1 = const(int, 1) -13:52:45,145 numba.core.ssa DEBUG on stmt: $binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,145 numba.core.ssa DEBUG on stmt: j = $binop_isub772.2 -13:52:45,145 numba.core.ssa DEBUG on stmt: $782compare_op.5 = j >= low -13:52:45,145 numba.core.ssa DEBUG on stmt: bool788 = global(bool: ) -13:52:45,145 numba.core.ssa DEBUG on stmt: $788pred = call bool788($782compare_op.5, func=bool788, args=(Var($782compare_op.5, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,145 numba.core.ssa DEBUG on stmt: branch $788pred, 790, 846 -13:52:45,145 numba.core.ssa DEBUG ==== SSA block rewrite pass on 790 -13:52:45,145 numba.core.ssa DEBUG Running -13:52:45,145 numba.core.ssa DEBUG on stmt: $792load_deref.1 = freevar(LT: ) -13:52:45,145 numba.core.ssa DEBUG on stmt: $798load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,145 numba.core.ssa DEBUG on stmt: $806binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,145 numba.core.ssa DEBUG on stmt: $820call.9 = call $798load_deref.4(A, $806binary_subscr.8, func=$798load_deref.4, args=[Var(A, quicksort.py:86), Var($806binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,145 numba.core.ssa DEBUG on stmt: $834call.10 = call $792load_deref.1(pivot, $820call.9, func=$792load_deref.1, args=[Var(pivot, quicksort.py:108), Var($820call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,145 numba.core.ssa DEBUG on stmt: bool844 = global(bool: ) -13:52:45,145 numba.core.ssa DEBUG on stmt: $844pred = call bool844($834call.10, func=bool844, args=(Var($834call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,145 numba.core.ssa DEBUG on stmt: branch $844pred, 768, 846 -13:52:45,145 numba.core.ssa DEBUG ==== SSA block rewrite pass on 846 -13:52:45,145 numba.core.ssa DEBUG Running -13:52:45,145 numba.core.ssa DEBUG on stmt: $850compare_op.2 = i >= j -13:52:45,145 numba.core.ssa DEBUG find_def var='i' stmt=$850compare_op.2 = i >= j -13:52:45,145 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,145 numba.core.ssa DEBUG idom 700 from label 846 -13:52:45,145 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,145 numba.core.ssa DEBUG find_def_from_top label 700 -13:52:45,145 numba.core.ssa DEBUG insert phi node i.5 = phi(incoming_values=[], incoming_blocks=[]) at 700 -13:52:45,145 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,145 numba.core.ssa DEBUG incoming_def i.3 = phi(incoming_values=[Var(i, quicksort.py:112), Var(i.2, quicksort.py:122)], incoming_blocks=[456, 860]) -13:52:45,146 numba.core.ssa DEBUG find_def_from_bottom label 622 -13:52:45,146 numba.core.ssa DEBUG incoming_def i.1 = $binop_iadd626.2 -13:52:45,146 numba.core.ssa DEBUG find_def_from_bottom label 644 -13:52:45,146 numba.core.ssa DEBUG find_def_from_top label 644 -13:52:45,146 numba.core.ssa DEBUG idom 622 from label 644 -13:52:45,146 numba.core.ssa DEBUG find_def_from_bottom label 622 -13:52:45,146 numba.core.ssa DEBUG incoming_def i.1 = $binop_iadd626.2 -13:52:45,146 numba.core.ssa DEBUG find_def_from_bottom label 566 -13:52:45,146 numba.core.ssa DEBUG find_def_from_top label 566 -13:52:45,146 numba.core.ssa DEBUG idom 554 from label 566 -13:52:45,146 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,146 numba.core.ssa DEBUG incoming_def i.3 = phi(incoming_values=[Var(i, quicksort.py:112), Var(i.2, quicksort.py:122)], incoming_blocks=[456, 860]) -13:52:45,146 numba.core.ssa DEBUG replaced with: $850compare_op.2 = i.5 >= j -13:52:45,146 numba.core.ssa DEBUG on stmt: bool856 = global(bool: ) -13:52:45,146 numba.core.ssa DEBUG on stmt: $856pred = call bool856($850compare_op.2, func=bool856, args=(Var($850compare_op.2, quicksort.py:119),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,146 numba.core.ssa DEBUG on stmt: branch $856pred, 858, 860 -13:52:45,146 numba.core.ssa DEBUG ==== SSA block rewrite pass on 858 -13:52:45,146 numba.core.ssa DEBUG Running -13:52:45,146 numba.core.ssa DEBUG on stmt: jump 928 -13:52:45,146 numba.core.ssa DEBUG ==== SSA block rewrite pass on 860 -13:52:45,146 numba.core.ssa DEBUG Running -13:52:45,146 numba.core.ssa DEBUG on stmt: $864binary_subscr.2 = getitem(value=R, index=j, fn=) -13:52:45,146 numba.core.ssa DEBUG on stmt: $878binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,146 numba.core.ssa DEBUG find_def var='i' stmt=$878binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,146 numba.core.ssa DEBUG find_def_from_top label 860 -13:52:45,146 numba.core.ssa DEBUG idom 846 from label 860 -13:52:45,146 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,146 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,146 numba.core.ssa DEBUG idom 700 from label 846 -13:52:45,146 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,146 numba.core.ssa DEBUG replaced with: $878binary_subscr.5 = getitem(value=R, index=i.5, fn=) -13:52:45,146 numba.core.ssa DEBUG on stmt: R[i] = $864binary_subscr.2 -13:52:45,146 numba.core.ssa DEBUG find_def var='i' stmt=R[i] = $864binary_subscr.2 -13:52:45,146 numba.core.ssa DEBUG find_def_from_top label 860 -13:52:45,146 numba.core.ssa DEBUG idom 846 from label 860 -13:52:45,147 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,147 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,147 numba.core.ssa DEBUG idom 700 from label 846 -13:52:45,147 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,147 numba.core.ssa DEBUG replaced with: R[i.5] = $864binary_subscr.2 -13:52:45,147 numba.core.ssa DEBUG on stmt: R[j] = $878binary_subscr.5 -13:52:45,147 numba.core.ssa DEBUG on stmt: $const908.11 = const(int, 1) -13:52:45,147 numba.core.ssa DEBUG on stmt: $binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,147 numba.core.ssa DEBUG find_def var='i' stmt=$binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,147 numba.core.ssa DEBUG find_def_from_top label 860 -13:52:45,147 numba.core.ssa DEBUG idom 846 from label 860 -13:52:45,147 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,147 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,147 numba.core.ssa DEBUG idom 700 from label 846 -13:52:45,147 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,147 numba.core.ssa DEBUG replaced with: $binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i.5, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,147 numba.core.ssa DEBUG on stmt: i.2 = $binop_iadd910.12 -13:52:45,147 numba.core.ssa DEBUG on stmt: $const918.14 = const(int, 1) -13:52:45,147 numba.core.ssa DEBUG on stmt: $binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,147 numba.core.ssa DEBUG on stmt: j = $binop_isub920.15 -13:52:45,147 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,147 numba.core.ssa DEBUG ==== SSA block rewrite pass on 928 -13:52:45,147 numba.core.ssa DEBUG Running -13:52:45,147 numba.core.ssa DEBUG on stmt: $932binary_subscr.2 = getitem(value=R, index=high, fn=) -13:52:45,147 numba.core.ssa DEBUG on stmt: $946binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,147 numba.core.ssa DEBUG find_def var='i' stmt=$946binary_subscr.5 = getitem(value=R, index=i, fn=) -13:52:45,147 numba.core.ssa DEBUG find_def_from_top label 928 -13:52:45,147 numba.core.ssa DEBUG idom 858 from label 928 -13:52:45,147 numba.core.ssa DEBUG find_def_from_bottom label 858 -13:52:45,147 numba.core.ssa DEBUG find_def_from_top label 858 -13:52:45,147 numba.core.ssa DEBUG idom 846 from label 858 -13:52:45,147 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,147 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,147 numba.core.ssa DEBUG idom 700 from label 846 -13:52:45,147 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,147 numba.core.ssa DEBUG replaced with: $946binary_subscr.5 = getitem(value=R, index=i.5, fn=) -13:52:45,148 numba.core.ssa DEBUG on stmt: R[i] = $932binary_subscr.2 -13:52:45,148 numba.core.ssa DEBUG find_def var='i' stmt=R[i] = $932binary_subscr.2 -13:52:45,148 numba.core.ssa DEBUG find_def_from_top label 928 -13:52:45,148 numba.core.ssa DEBUG idom 858 from label 928 -13:52:45,148 numba.core.ssa DEBUG find_def_from_bottom label 858 -13:52:45,148 numba.core.ssa DEBUG find_def_from_top label 858 -13:52:45,148 numba.core.ssa DEBUG idom 846 from label 858 -13:52:45,148 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,148 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,148 numba.core.ssa DEBUG idom 700 from label 846 -13:52:45,148 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,148 numba.core.ssa DEBUG replaced with: R[i.5] = $932binary_subscr.2 -13:52:45,148 numba.core.ssa DEBUG on stmt: R[high] = $946binary_subscr.5 -13:52:45,148 numba.core.ssa DEBUG on stmt: $976return_value.11 = cast(value=i) -13:52:45,148 numba.core.ssa DEBUG find_def var='i' stmt=$976return_value.11 = cast(value=i) -13:52:45,148 numba.core.ssa DEBUG find_def_from_top label 928 -13:52:45,148 numba.core.ssa DEBUG idom 858 from label 928 -13:52:45,148 numba.core.ssa DEBUG find_def_from_bottom label 858 -13:52:45,148 numba.core.ssa DEBUG find_def_from_top label 858 -13:52:45,148 numba.core.ssa DEBUG idom 846 from label 858 -13:52:45,148 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,148 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,148 numba.core.ssa DEBUG idom 700 from label 846 -13:52:45,148 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,148 numba.core.ssa DEBUG replaced with: $976return_value.11 = cast(value=i.5) -13:52:45,148 numba.core.ssa DEBUG on stmt: return $976return_value.11 -13:52:45,148 numba.core.ssa DEBUG Fix SSA violator on var j -13:52:45,148 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,148 numba.core.ssa DEBUG Running -13:52:45,148 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,148 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,148 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,148 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,148 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,148 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,148 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,148 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:92),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,149 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,149 numba.core.ssa DEBUG ==== SSA block rewrite pass on 18 -13:52:45,149 numba.core.ssa DEBUG Running -13:52:45,149 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,149 numba.core.ssa DEBUG on stmt: raise -13:52:45,149 numba.core.ssa DEBUG ==== SSA block rewrite pass on 22 -13:52:45,149 numba.core.ssa DEBUG Running -13:52:45,149 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high > low -13:52:45,149 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,149 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,149 numba.core.ssa DEBUG on stmt: branch $32pred, 38, 34 -13:52:45,149 numba.core.ssa DEBUG ==== SSA block rewrite pass on 34 -13:52:45,149 numba.core.ssa DEBUG Running -13:52:45,149 numba.core.ssa DEBUG on stmt: $assertion_error34.0 = global(AssertionError: ) -13:52:45,149 numba.core.ssa DEBUG on stmt: raise -13:52:45,149 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:45,149 numba.core.ssa DEBUG Running -13:52:45,149 numba.core.ssa DEBUG on stmt: $binop_add42.2 = low + high -13:52:45,149 numba.core.ssa DEBUG on stmt: $const46.3 = const(int, 1) -13:52:45,149 numba.core.ssa DEBUG on stmt: mid = $binop_add42.2 >> $const46.3 -13:52:45,149 numba.core.ssa DEBUG on stmt: $56load_deref.6 = freevar(LT: ) -13:52:45,149 numba.core.ssa DEBUG on stmt: $60load_deref.8 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,149 numba.core.ssa DEBUG on stmt: $68binary_subscr.12 = getitem(value=R, index=mid, fn=) -13:52:45,149 numba.core.ssa DEBUG on stmt: $82call.13 = call $60load_deref.8(A, $68binary_subscr.12, func=$60load_deref.8, args=[Var(A, quicksort.py:86), Var($68binary_subscr.12, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,149 numba.core.ssa DEBUG on stmt: $94load_deref.15 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,149 numba.core.ssa DEBUG on stmt: $102binary_subscr.19 = getitem(value=R, index=low, fn=) -13:52:45,149 numba.core.ssa DEBUG on stmt: $116call.20 = call $94load_deref.15(A, $102binary_subscr.19, func=$94load_deref.15, args=[Var(A, quicksort.py:86), Var($102binary_subscr.19, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,149 numba.core.ssa DEBUG on stmt: $130call.21 = call $56load_deref.6($82call.13, $116call.20, func=$56load_deref.6, args=[Var($82call.13, quicksort.py:102), Var($116call.20, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,149 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,149 numba.core.ssa DEBUG on stmt: $140pred = call bool140($130call.21, func=bool140, args=(Var($130call.21, quicksort.py:102),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,149 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 188 -13:52:45,149 numba.core.ssa DEBUG ==== SSA block rewrite pass on 142 -13:52:45,150 numba.core.ssa DEBUG Running -13:52:45,150 numba.core.ssa DEBUG on stmt: $146binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: $160binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: R[low] = $146binary_subscr.2 -13:52:45,150 numba.core.ssa DEBUG on stmt: R[mid] = $160binary_subscr.5 -13:52:45,150 numba.core.ssa DEBUG on stmt: jump 188 -13:52:45,150 numba.core.ssa DEBUG ==== SSA block rewrite pass on 188 -13:52:45,150 numba.core.ssa DEBUG Running -13:52:45,150 numba.core.ssa DEBUG on stmt: $190load_deref.1 = freevar(LT: ) -13:52:45,150 numba.core.ssa DEBUG on stmt: $194load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,150 numba.core.ssa DEBUG on stmt: $202binary_subscr.7 = getitem(value=R, index=high, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: $216call.8 = call $194load_deref.3(A, $202binary_subscr.7, func=$194load_deref.3, args=[Var(A, quicksort.py:86), Var($202binary_subscr.7, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,150 numba.core.ssa DEBUG on stmt: $228load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,150 numba.core.ssa DEBUG on stmt: $236binary_subscr.14 = getitem(value=R, index=mid, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: $250call.15 = call $228load_deref.10(A, $236binary_subscr.14, func=$228load_deref.10, args=[Var(A, quicksort.py:86), Var($236binary_subscr.14, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,150 numba.core.ssa DEBUG on stmt: $264call.16 = call $190load_deref.1($216call.8, $250call.15, func=$190load_deref.1, args=[Var($216call.8, quicksort.py:104), Var($250call.15, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,150 numba.core.ssa DEBUG on stmt: bool274 = global(bool: ) -13:52:45,150 numba.core.ssa DEBUG on stmt: $274pred = call bool274($264call.16, func=bool274, args=(Var($264call.16, quicksort.py:104),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,150 numba.core.ssa DEBUG on stmt: branch $274pred, 276, 322 -13:52:45,150 numba.core.ssa DEBUG ==== SSA block rewrite pass on 276 -13:52:45,150 numba.core.ssa DEBUG Running -13:52:45,150 numba.core.ssa DEBUG on stmt: $280binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: $294binary_subscr.5 = getitem(value=R, index=high, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: R[high] = $280binary_subscr.2 -13:52:45,150 numba.core.ssa DEBUG on stmt: R[mid] = $294binary_subscr.5 -13:52:45,150 numba.core.ssa DEBUG on stmt: jump 322 -13:52:45,150 numba.core.ssa DEBUG ==== SSA block rewrite pass on 322 -13:52:45,150 numba.core.ssa DEBUG Running -13:52:45,150 numba.core.ssa DEBUG on stmt: $324load_deref.1 = freevar(LT: ) -13:52:45,150 numba.core.ssa DEBUG on stmt: $328load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,150 numba.core.ssa DEBUG on stmt: $336binary_subscr.7 = getitem(value=R, index=mid, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: $350call.8 = call $328load_deref.3(A, $336binary_subscr.7, func=$328load_deref.3, args=[Var(A, quicksort.py:86), Var($336binary_subscr.7, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,150 numba.core.ssa DEBUG on stmt: $362load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,150 numba.core.ssa DEBUG on stmt: $370binary_subscr.14 = getitem(value=R, index=low, fn=) -13:52:45,150 numba.core.ssa DEBUG on stmt: $384call.15 = call $362load_deref.10(A, $370binary_subscr.14, func=$362load_deref.10, args=[Var(A, quicksort.py:86), Var($370binary_subscr.14, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,151 numba.core.ssa DEBUG on stmt: $398call.16 = call $324load_deref.1($350call.8, $384call.15, func=$324load_deref.1, args=[Var($350call.8, quicksort.py:106), Var($384call.15, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,151 numba.core.ssa DEBUG on stmt: bool408 = global(bool: ) -13:52:45,151 numba.core.ssa DEBUG on stmt: $408pred = call bool408($398call.16, func=bool408, args=(Var($398call.16, quicksort.py:106),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,151 numba.core.ssa DEBUG on stmt: branch $408pred, 410, 456 -13:52:45,151 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:45,151 numba.core.ssa DEBUG Running -13:52:45,151 numba.core.ssa DEBUG on stmt: $414binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,151 numba.core.ssa DEBUG on stmt: $428binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,151 numba.core.ssa DEBUG on stmt: R[low] = $414binary_subscr.2 -13:52:45,151 numba.core.ssa DEBUG on stmt: R[mid] = $428binary_subscr.5 -13:52:45,151 numba.core.ssa DEBUG on stmt: jump 456 -13:52:45,151 numba.core.ssa DEBUG ==== SSA block rewrite pass on 456 -13:52:45,151 numba.core.ssa DEBUG Running -13:52:45,151 numba.core.ssa DEBUG on stmt: $458load_deref.1 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,151 numba.core.ssa DEBUG on stmt: $466binary_subscr.5 = getitem(value=R, index=mid, fn=) -13:52:45,151 numba.core.ssa DEBUG on stmt: pivot = call $458load_deref.1(A, $466binary_subscr.5, func=$458load_deref.1, args=[Var(A, quicksort.py:86), Var($466binary_subscr.5, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,151 numba.core.ssa DEBUG on stmt: $496binary_subscr.9 = getitem(value=R, index=mid, fn=) -13:52:45,151 numba.core.ssa DEBUG on stmt: $510binary_subscr.12 = getitem(value=R, index=high, fn=) -13:52:45,151 numba.core.ssa DEBUG on stmt: R[high] = $496binary_subscr.9 -13:52:45,151 numba.core.ssa DEBUG on stmt: R[mid] = $510binary_subscr.12 -13:52:45,151 numba.core.ssa DEBUG on stmt: i = low -13:52:45,151 numba.core.ssa DEBUG on stmt: $const544.19 = const(int, 1) -13:52:45,151 numba.core.ssa DEBUG on stmt: j = high - $const544.19 -13:52:45,151 numba.core.ssa DEBUG first assign: j -13:52:45,151 numba.core.ssa DEBUG replaced with: j = high - $const544.19 -13:52:45,151 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,151 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:45,151 numba.core.ssa DEBUG Running -13:52:45,151 numba.core.ssa DEBUG on stmt: i.3 = phi(incoming_values=[Var(i, quicksort.py:112), Var(i.2, quicksort.py:122)], incoming_blocks=[456, 860]) -13:52:45,151 numba.core.ssa DEBUG on stmt: $558compare_op.2 = i.3 < high -13:52:45,151 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:45,151 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.2, func=bool564, args=(Var($558compare_op.2, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,151 numba.core.ssa DEBUG on stmt: branch $564pred, 566, 700 -13:52:45,151 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:45,151 numba.core.ssa DEBUG Running -13:52:45,152 numba.core.ssa DEBUG on stmt: $568load_deref.1 = freevar(LT: ) -13:52:45,152 numba.core.ssa DEBUG on stmt: $572load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,152 numba.core.ssa DEBUG on stmt: $580binary_subscr.7 = getitem(value=R, index=i.3, fn=) -13:52:45,152 numba.core.ssa DEBUG on stmt: $594call.8 = call $572load_deref.3(A, $580binary_subscr.7, func=$572load_deref.3, args=[Var(A, quicksort.py:86), Var($580binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,152 numba.core.ssa DEBUG on stmt: $610call.10 = call $568load_deref.1($594call.8, pivot, func=$568load_deref.1, args=[Var($594call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,152 numba.core.ssa DEBUG on stmt: bool620 = global(bool: ) -13:52:45,152 numba.core.ssa DEBUG on stmt: $620pred = call bool620($610call.10, func=bool620, args=(Var($610call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,152 numba.core.ssa DEBUG on stmt: branch $620pred, 622, 700 -13:52:45,152 numba.core.ssa DEBUG ==== SSA block rewrite pass on 622 -13:52:45,152 numba.core.ssa DEBUG Running -13:52:45,152 numba.core.ssa DEBUG on stmt: i.4 = phi(incoming_values=[Var(i.1, quicksort.py:116), Var(i.3, quicksort.py:115)], incoming_blocks=[644, 566]) -13:52:45,152 numba.core.ssa DEBUG on stmt: $const624.1 = const(int, 1) -13:52:45,152 numba.core.ssa DEBUG on stmt: $binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i.4, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,152 numba.core.ssa DEBUG on stmt: i.1 = $binop_iadd626.2 -13:52:45,152 numba.core.ssa DEBUG on stmt: $636compare_op.5 = i.1 < high -13:52:45,152 numba.core.ssa DEBUG on stmt: bool642 = global(bool: ) -13:52:45,152 numba.core.ssa DEBUG on stmt: $642pred = call bool642($636compare_op.5, func=bool642, args=(Var($636compare_op.5, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,152 numba.core.ssa DEBUG on stmt: branch $642pred, 644, 700 -13:52:45,152 numba.core.ssa DEBUG ==== SSA block rewrite pass on 644 -13:52:45,152 numba.core.ssa DEBUG Running -13:52:45,152 numba.core.ssa DEBUG on stmt: $646load_deref.1 = freevar(LT: ) -13:52:45,152 numba.core.ssa DEBUG on stmt: $650load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,152 numba.core.ssa DEBUG on stmt: $658binary_subscr.7 = getitem(value=R, index=i.1, fn=) -13:52:45,152 numba.core.ssa DEBUG on stmt: $672call.8 = call $650load_deref.3(A, $658binary_subscr.7, func=$650load_deref.3, args=[Var(A, quicksort.py:86), Var($658binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,152 numba.core.ssa DEBUG on stmt: $688call.10 = call $646load_deref.1($672call.8, pivot, func=$646load_deref.1, args=[Var($672call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,152 numba.core.ssa DEBUG on stmt: bool698 = global(bool: ) -13:52:45,152 numba.core.ssa DEBUG on stmt: $698pred = call bool698($688call.10, func=bool698, args=(Var($688call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,152 numba.core.ssa DEBUG on stmt: branch $698pred, 622, 700 -13:52:45,152 numba.core.ssa DEBUG ==== SSA block rewrite pass on 700 -13:52:45,152 numba.core.ssa DEBUG Running -13:52:45,152 numba.core.ssa DEBUG on stmt: i.5 = phi(incoming_values=[Var(i.3, quicksort.py:115), Var(i.1, quicksort.py:116), Var(i.1, quicksort.py:116), Var(i.3, quicksort.py:115)], incoming_blocks=[554, 622, 644, 566]) -13:52:45,152 numba.core.ssa DEBUG on stmt: $704compare_op.2 = j >= low -13:52:45,152 numba.core.ssa DEBUG on stmt: bool710 = global(bool: ) -13:52:45,153 numba.core.ssa DEBUG on stmt: $710pred = call bool710($704compare_op.2, func=bool710, args=(Var($704compare_op.2, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: branch $710pred, 712, 846 -13:52:45,153 numba.core.ssa DEBUG ==== SSA block rewrite pass on 712 -13:52:45,153 numba.core.ssa DEBUG Running -13:52:45,153 numba.core.ssa DEBUG on stmt: $714load_deref.1 = freevar(LT: ) -13:52:45,153 numba.core.ssa DEBUG on stmt: $720load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,153 numba.core.ssa DEBUG on stmt: $728binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,153 numba.core.ssa DEBUG on stmt: $742call.9 = call $720load_deref.4(A, $728binary_subscr.8, func=$720load_deref.4, args=[Var(A, quicksort.py:86), Var($728binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: $756call.10 = call $714load_deref.1(pivot, $742call.9, func=$714load_deref.1, args=[Var(pivot, quicksort.py:108), Var($742call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: bool766 = global(bool: ) -13:52:45,153 numba.core.ssa DEBUG on stmt: $766pred = call bool766($756call.10, func=bool766, args=(Var($756call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: branch $766pred, 768, 846 -13:52:45,153 numba.core.ssa DEBUG ==== SSA block rewrite pass on 768 -13:52:45,153 numba.core.ssa DEBUG Running -13:52:45,153 numba.core.ssa DEBUG on stmt: $const770.1 = const(int, 1) -13:52:45,153 numba.core.ssa DEBUG on stmt: $binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,153 numba.core.ssa DEBUG on stmt: j = $binop_isub772.2 -13:52:45,153 numba.core.ssa DEBUG replaced with: j.1 = $binop_isub772.2 -13:52:45,153 numba.core.ssa DEBUG on stmt: $782compare_op.5 = j >= low -13:52:45,153 numba.core.ssa DEBUG on stmt: bool788 = global(bool: ) -13:52:45,153 numba.core.ssa DEBUG on stmt: $788pred = call bool788($782compare_op.5, func=bool788, args=(Var($782compare_op.5, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: branch $788pred, 790, 846 -13:52:45,153 numba.core.ssa DEBUG ==== SSA block rewrite pass on 790 -13:52:45,153 numba.core.ssa DEBUG Running -13:52:45,153 numba.core.ssa DEBUG on stmt: $792load_deref.1 = freevar(LT: ) -13:52:45,153 numba.core.ssa DEBUG on stmt: $798load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,153 numba.core.ssa DEBUG on stmt: $806binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,153 numba.core.ssa DEBUG on stmt: $820call.9 = call $798load_deref.4(A, $806binary_subscr.8, func=$798load_deref.4, args=[Var(A, quicksort.py:86), Var($806binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: $834call.10 = call $792load_deref.1(pivot, $820call.9, func=$792load_deref.1, args=[Var(pivot, quicksort.py:108), Var($820call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: bool844 = global(bool: ) -13:52:45,153 numba.core.ssa DEBUG on stmt: $844pred = call bool844($834call.10, func=bool844, args=(Var($834call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,153 numba.core.ssa DEBUG on stmt: branch $844pred, 768, 846 -13:52:45,153 numba.core.ssa DEBUG ==== SSA block rewrite pass on 846 -13:52:45,154 numba.core.ssa DEBUG Running -13:52:45,154 numba.core.ssa DEBUG on stmt: $850compare_op.2 = i.5 >= j -13:52:45,154 numba.core.ssa DEBUG on stmt: bool856 = global(bool: ) -13:52:45,154 numba.core.ssa DEBUG on stmt: $856pred = call bool856($850compare_op.2, func=bool856, args=(Var($850compare_op.2, quicksort.py:119),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,154 numba.core.ssa DEBUG on stmt: branch $856pred, 858, 860 -13:52:45,154 numba.core.ssa DEBUG ==== SSA block rewrite pass on 858 -13:52:45,154 numba.core.ssa DEBUG Running -13:52:45,154 numba.core.ssa DEBUG on stmt: jump 928 -13:52:45,154 numba.core.ssa DEBUG ==== SSA block rewrite pass on 860 -13:52:45,154 numba.core.ssa DEBUG Running -13:52:45,154 numba.core.ssa DEBUG on stmt: $864binary_subscr.2 = getitem(value=R, index=j, fn=) -13:52:45,154 numba.core.ssa DEBUG on stmt: $878binary_subscr.5 = getitem(value=R, index=i.5, fn=) -13:52:45,154 numba.core.ssa DEBUG on stmt: R[i.5] = $864binary_subscr.2 -13:52:45,154 numba.core.ssa DEBUG on stmt: R[j] = $878binary_subscr.5 -13:52:45,154 numba.core.ssa DEBUG on stmt: $const908.11 = const(int, 1) -13:52:45,154 numba.core.ssa DEBUG on stmt: $binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i.5, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,154 numba.core.ssa DEBUG on stmt: i.2 = $binop_iadd910.12 -13:52:45,154 numba.core.ssa DEBUG on stmt: $const918.14 = const(int, 1) -13:52:45,154 numba.core.ssa DEBUG on stmt: $binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,154 numba.core.ssa DEBUG on stmt: j = $binop_isub920.15 -13:52:45,154 numba.core.ssa DEBUG replaced with: j.2 = $binop_isub920.15 -13:52:45,154 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,154 numba.core.ssa DEBUG ==== SSA block rewrite pass on 928 -13:52:45,154 numba.core.ssa DEBUG Running -13:52:45,154 numba.core.ssa DEBUG on stmt: $932binary_subscr.2 = getitem(value=R, index=high, fn=) -13:52:45,154 numba.core.ssa DEBUG on stmt: $946binary_subscr.5 = getitem(value=R, index=i.5, fn=) -13:52:45,154 numba.core.ssa DEBUG on stmt: R[i.5] = $932binary_subscr.2 -13:52:45,154 numba.core.ssa DEBUG on stmt: R[high] = $946binary_subscr.5 -13:52:45,154 numba.core.ssa DEBUG on stmt: $976return_value.11 = cast(value=i.5) -13:52:45,154 numba.core.ssa DEBUG on stmt: return $976return_value.11 -13:52:45,154 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {456: [], - 768: [], - 860: []}) -13:52:45,154 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,154 numba.core.ssa DEBUG Running -13:52:45,154 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,154 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,155 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,155 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,155 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,155 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,155 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,155 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:92),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,155 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,155 numba.core.ssa DEBUG ==== SSA block rewrite pass on 18 -13:52:45,155 numba.core.ssa DEBUG Running -13:52:45,155 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,155 numba.core.ssa DEBUG on stmt: raise -13:52:45,155 numba.core.ssa DEBUG ==== SSA block rewrite pass on 22 -13:52:45,155 numba.core.ssa DEBUG Running -13:52:45,155 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high > low -13:52:45,155 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,155 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,155 numba.core.ssa DEBUG on stmt: branch $32pred, 38, 34 -13:52:45,155 numba.core.ssa DEBUG ==== SSA block rewrite pass on 34 -13:52:45,155 numba.core.ssa DEBUG Running -13:52:45,155 numba.core.ssa DEBUG on stmt: $assertion_error34.0 = global(AssertionError: ) -13:52:45,155 numba.core.ssa DEBUG on stmt: raise -13:52:45,155 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:45,155 numba.core.ssa DEBUG Running -13:52:45,155 numba.core.ssa DEBUG on stmt: $binop_add42.2 = low + high -13:52:45,155 numba.core.ssa DEBUG on stmt: $const46.3 = const(int, 1) -13:52:45,155 numba.core.ssa DEBUG on stmt: mid = $binop_add42.2 >> $const46.3 -13:52:45,155 numba.core.ssa DEBUG on stmt: $56load_deref.6 = freevar(LT: ) -13:52:45,155 numba.core.ssa DEBUG on stmt: $60load_deref.8 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,155 numba.core.ssa DEBUG on stmt: $68binary_subscr.12 = getitem(value=R, index=mid, fn=) -13:52:45,155 numba.core.ssa DEBUG on stmt: $82call.13 = call $60load_deref.8(A, $68binary_subscr.12, func=$60load_deref.8, args=[Var(A, quicksort.py:86), Var($68binary_subscr.12, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,155 numba.core.ssa DEBUG on stmt: $94load_deref.15 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,155 numba.core.ssa DEBUG on stmt: $102binary_subscr.19 = getitem(value=R, index=low, fn=) -13:52:45,155 numba.core.ssa DEBUG on stmt: $116call.20 = call $94load_deref.15(A, $102binary_subscr.19, func=$94load_deref.15, args=[Var(A, quicksort.py:86), Var($102binary_subscr.19, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,155 numba.core.ssa DEBUG on stmt: $130call.21 = call $56load_deref.6($82call.13, $116call.20, func=$56load_deref.6, args=[Var($82call.13, quicksort.py:102), Var($116call.20, quicksort.py:102)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,156 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,156 numba.core.ssa DEBUG on stmt: $140pred = call bool140($130call.21, func=bool140, args=(Var($130call.21, quicksort.py:102),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,156 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 188 -13:52:45,156 numba.core.ssa DEBUG ==== SSA block rewrite pass on 142 -13:52:45,156 numba.core.ssa DEBUG Running -13:52:45,156 numba.core.ssa DEBUG on stmt: $146binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,156 numba.core.ssa DEBUG on stmt: $160binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,156 numba.core.ssa DEBUG on stmt: R[low] = $146binary_subscr.2 -13:52:45,156 numba.core.ssa DEBUG on stmt: R[mid] = $160binary_subscr.5 -13:52:45,156 numba.core.ssa DEBUG on stmt: jump 188 -13:52:45,156 numba.core.ssa DEBUG ==== SSA block rewrite pass on 188 -13:52:45,156 numba.core.ssa DEBUG Running -13:52:45,156 numba.core.ssa DEBUG on stmt: $190load_deref.1 = freevar(LT: ) -13:52:45,156 numba.core.ssa DEBUG on stmt: $194load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,156 numba.core.ssa DEBUG on stmt: $202binary_subscr.7 = getitem(value=R, index=high, fn=) -13:52:45,156 numba.core.ssa DEBUG on stmt: $216call.8 = call $194load_deref.3(A, $202binary_subscr.7, func=$194load_deref.3, args=[Var(A, quicksort.py:86), Var($202binary_subscr.7, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,156 numba.core.ssa DEBUG on stmt: $228load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,156 numba.core.ssa DEBUG on stmt: $236binary_subscr.14 = getitem(value=R, index=mid, fn=) -13:52:45,156 numba.core.ssa DEBUG on stmt: $250call.15 = call $228load_deref.10(A, $236binary_subscr.14, func=$228load_deref.10, args=[Var(A, quicksort.py:86), Var($236binary_subscr.14, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,156 numba.core.ssa DEBUG on stmt: $264call.16 = call $190load_deref.1($216call.8, $250call.15, func=$190load_deref.1, args=[Var($216call.8, quicksort.py:104), Var($250call.15, quicksort.py:104)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,156 numba.core.ssa DEBUG on stmt: bool274 = global(bool: ) -13:52:45,156 numba.core.ssa DEBUG on stmt: $274pred = call bool274($264call.16, func=bool274, args=(Var($264call.16, quicksort.py:104),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,156 numba.core.ssa DEBUG on stmt: branch $274pred, 276, 322 -13:52:45,156 numba.core.ssa DEBUG ==== SSA block rewrite pass on 276 -13:52:45,156 numba.core.ssa DEBUG Running -13:52:45,156 numba.core.ssa DEBUG on stmt: $280binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,156 numba.core.ssa DEBUG on stmt: $294binary_subscr.5 = getitem(value=R, index=high, fn=) -13:52:45,156 numba.core.ssa DEBUG on stmt: R[high] = $280binary_subscr.2 -13:52:45,156 numba.core.ssa DEBUG on stmt: R[mid] = $294binary_subscr.5 -13:52:45,156 numba.core.ssa DEBUG on stmt: jump 322 -13:52:45,156 numba.core.ssa DEBUG ==== SSA block rewrite pass on 322 -13:52:45,156 numba.core.ssa DEBUG Running -13:52:45,157 numba.core.ssa DEBUG on stmt: $324load_deref.1 = freevar(LT: ) -13:52:45,157 numba.core.ssa DEBUG on stmt: $328load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,157 numba.core.ssa DEBUG on stmt: $336binary_subscr.7 = getitem(value=R, index=mid, fn=) -13:52:45,157 numba.core.ssa DEBUG on stmt: $350call.8 = call $328load_deref.3(A, $336binary_subscr.7, func=$328load_deref.3, args=[Var(A, quicksort.py:86), Var($336binary_subscr.7, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,157 numba.core.ssa DEBUG on stmt: $362load_deref.10 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,157 numba.core.ssa DEBUG on stmt: $370binary_subscr.14 = getitem(value=R, index=low, fn=) -13:52:45,157 numba.core.ssa DEBUG on stmt: $384call.15 = call $362load_deref.10(A, $370binary_subscr.14, func=$362load_deref.10, args=[Var(A, quicksort.py:86), Var($370binary_subscr.14, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,157 numba.core.ssa DEBUG on stmt: $398call.16 = call $324load_deref.1($350call.8, $384call.15, func=$324load_deref.1, args=[Var($350call.8, quicksort.py:106), Var($384call.15, quicksort.py:106)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,157 numba.core.ssa DEBUG on stmt: bool408 = global(bool: ) -13:52:45,157 numba.core.ssa DEBUG on stmt: $408pred = call bool408($398call.16, func=bool408, args=(Var($398call.16, quicksort.py:106),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,157 numba.core.ssa DEBUG on stmt: branch $408pred, 410, 456 -13:52:45,157 numba.core.ssa DEBUG ==== SSA block rewrite pass on 410 -13:52:45,157 numba.core.ssa DEBUG Running -13:52:45,157 numba.core.ssa DEBUG on stmt: $414binary_subscr.2 = getitem(value=R, index=mid, fn=) -13:52:45,157 numba.core.ssa DEBUG on stmt: $428binary_subscr.5 = getitem(value=R, index=low, fn=) -13:52:45,157 numba.core.ssa DEBUG on stmt: R[low] = $414binary_subscr.2 -13:52:45,157 numba.core.ssa DEBUG on stmt: R[mid] = $428binary_subscr.5 -13:52:45,157 numba.core.ssa DEBUG on stmt: jump 456 -13:52:45,157 numba.core.ssa DEBUG ==== SSA block rewrite pass on 456 -13:52:45,157 numba.core.ssa DEBUG Running -13:52:45,157 numba.core.ssa DEBUG on stmt: $458load_deref.1 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,157 numba.core.ssa DEBUG on stmt: $466binary_subscr.5 = getitem(value=R, index=mid, fn=) -13:52:45,157 numba.core.ssa DEBUG on stmt: pivot = call $458load_deref.1(A, $466binary_subscr.5, func=$458load_deref.1, args=[Var(A, quicksort.py:86), Var($466binary_subscr.5, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,157 numba.core.ssa DEBUG on stmt: $496binary_subscr.9 = getitem(value=R, index=mid, fn=) -13:52:45,157 numba.core.ssa DEBUG on stmt: $510binary_subscr.12 = getitem(value=R, index=high, fn=) -13:52:45,157 numba.core.ssa DEBUG on stmt: R[high] = $496binary_subscr.9 -13:52:45,157 numba.core.ssa DEBUG on stmt: R[mid] = $510binary_subscr.12 -13:52:45,157 numba.core.ssa DEBUG on stmt: i = low -13:52:45,157 numba.core.ssa DEBUG on stmt: $const544.19 = const(int, 1) -13:52:45,157 numba.core.ssa DEBUG on stmt: j = high - $const544.19 -13:52:45,157 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,157 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:45,157 numba.core.ssa DEBUG Running -13:52:45,158 numba.core.ssa DEBUG on stmt: i.3 = phi(incoming_values=[Var(i, quicksort.py:112), Var(i.2, quicksort.py:122)], incoming_blocks=[456, 860]) -13:52:45,158 numba.core.ssa DEBUG on stmt: $558compare_op.2 = i.3 < high -13:52:45,158 numba.core.ssa DEBUG on stmt: bool564 = global(bool: ) -13:52:45,158 numba.core.ssa DEBUG on stmt: $564pred = call bool564($558compare_op.2, func=bool564, args=(Var($558compare_op.2, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,158 numba.core.ssa DEBUG on stmt: branch $564pred, 566, 700 -13:52:45,158 numba.core.ssa DEBUG ==== SSA block rewrite pass on 566 -13:52:45,158 numba.core.ssa DEBUG Running -13:52:45,158 numba.core.ssa DEBUG on stmt: $568load_deref.1 = freevar(LT: ) -13:52:45,158 numba.core.ssa DEBUG on stmt: $572load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,158 numba.core.ssa DEBUG on stmt: $580binary_subscr.7 = getitem(value=R, index=i.3, fn=) -13:52:45,158 numba.core.ssa DEBUG on stmt: $594call.8 = call $572load_deref.3(A, $580binary_subscr.7, func=$572load_deref.3, args=[Var(A, quicksort.py:86), Var($580binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,158 numba.core.ssa DEBUG on stmt: $610call.10 = call $568load_deref.1($594call.8, pivot, func=$568load_deref.1, args=[Var($594call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,158 numba.core.ssa DEBUG on stmt: bool620 = global(bool: ) -13:52:45,158 numba.core.ssa DEBUG on stmt: $620pred = call bool620($610call.10, func=bool620, args=(Var($610call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,158 numba.core.ssa DEBUG on stmt: branch $620pred, 622, 700 -13:52:45,158 numba.core.ssa DEBUG ==== SSA block rewrite pass on 622 -13:52:45,158 numba.core.ssa DEBUG Running -13:52:45,158 numba.core.ssa DEBUG on stmt: i.4 = phi(incoming_values=[Var(i.1, quicksort.py:116), Var(i.3, quicksort.py:115)], incoming_blocks=[644, 566]) -13:52:45,158 numba.core.ssa DEBUG on stmt: $const624.1 = const(int, 1) -13:52:45,158 numba.core.ssa DEBUG on stmt: $binop_iadd626.2 = inplace_binop(fn=, immutable_fn=, lhs=i.4, rhs=$const624.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,158 numba.core.ssa DEBUG on stmt: i.1 = $binop_iadd626.2 -13:52:45,158 numba.core.ssa DEBUG on stmt: $636compare_op.5 = i.1 < high -13:52:45,158 numba.core.ssa DEBUG on stmt: bool642 = global(bool: ) -13:52:45,158 numba.core.ssa DEBUG on stmt: $642pred = call bool642($636compare_op.5, func=bool642, args=(Var($636compare_op.5, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,158 numba.core.ssa DEBUG on stmt: branch $642pred, 644, 700 -13:52:45,158 numba.core.ssa DEBUG ==== SSA block rewrite pass on 644 -13:52:45,158 numba.core.ssa DEBUG Running -13:52:45,158 numba.core.ssa DEBUG on stmt: $646load_deref.1 = freevar(LT: ) -13:52:45,158 numba.core.ssa DEBUG on stmt: $650load_deref.3 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,158 numba.core.ssa DEBUG on stmt: $658binary_subscr.7 = getitem(value=R, index=i.1, fn=) -13:52:45,158 numba.core.ssa DEBUG on stmt: $672call.8 = call $650load_deref.3(A, $658binary_subscr.7, func=$650load_deref.3, args=[Var(A, quicksort.py:86), Var($658binary_subscr.7, quicksort.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,158 numba.core.ssa DEBUG on stmt: $688call.10 = call $646load_deref.1($672call.8, pivot, func=$646load_deref.1, args=[Var($672call.8, quicksort.py:115), Var(pivot, quicksort.py:108)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,159 numba.core.ssa DEBUG on stmt: bool698 = global(bool: ) -13:52:45,159 numba.core.ssa DEBUG on stmt: $698pred = call bool698($688call.10, func=bool698, args=(Var($688call.10, quicksort.py:115),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,159 numba.core.ssa DEBUG on stmt: branch $698pred, 622, 700 -13:52:45,159 numba.core.ssa DEBUG ==== SSA block rewrite pass on 700 -13:52:45,159 numba.core.ssa DEBUG Running -13:52:45,159 numba.core.ssa DEBUG on stmt: i.5 = phi(incoming_values=[Var(i.3, quicksort.py:115), Var(i.1, quicksort.py:116), Var(i.1, quicksort.py:116), Var(i.3, quicksort.py:115)], incoming_blocks=[554, 622, 644, 566]) -13:52:45,159 numba.core.ssa DEBUG on stmt: $704compare_op.2 = j >= low -13:52:45,159 numba.core.ssa DEBUG find_def var='j' stmt=$704compare_op.2 = j >= low -13:52:45,159 numba.core.ssa DEBUG find_def_from_top label 700 -13:52:45,159 numba.core.ssa DEBUG idom 554 from label 700 -13:52:45,159 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,159 numba.core.ssa DEBUG find_def_from_top label 554 -13:52:45,159 numba.core.ssa DEBUG insert phi node j.3 = phi(incoming_values=[], incoming_blocks=[]) at 554 -13:52:45,159 numba.core.ssa DEBUG find_def_from_bottom label 456 -13:52:45,159 numba.core.ssa DEBUG incoming_def j = high - $const544.19 -13:52:45,159 numba.core.ssa DEBUG find_def_from_bottom label 860 -13:52:45,159 numba.core.ssa DEBUG incoming_def j.2 = $binop_isub920.15 -13:52:45,159 numba.core.ssa DEBUG replaced with: $704compare_op.2 = j.3 >= low -13:52:45,159 numba.core.ssa DEBUG on stmt: bool710 = global(bool: ) -13:52:45,159 numba.core.ssa DEBUG on stmt: $710pred = call bool710($704compare_op.2, func=bool710, args=(Var($704compare_op.2, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,159 numba.core.ssa DEBUG on stmt: branch $710pred, 712, 846 -13:52:45,159 numba.core.ssa DEBUG ==== SSA block rewrite pass on 712 -13:52:45,159 numba.core.ssa DEBUG Running -13:52:45,159 numba.core.ssa DEBUG on stmt: $714load_deref.1 = freevar(LT: ) -13:52:45,159 numba.core.ssa DEBUG on stmt: $720load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,159 numba.core.ssa DEBUG on stmt: $728binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,159 numba.core.ssa DEBUG find_def var='j' stmt=$728binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,159 numba.core.ssa DEBUG find_def_from_top label 712 -13:52:45,159 numba.core.ssa DEBUG idom 700 from label 712 -13:52:45,159 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,159 numba.core.ssa DEBUG find_def_from_top label 700 -13:52:45,159 numba.core.ssa DEBUG idom 554 from label 700 -13:52:45,159 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,160 numba.core.ssa DEBUG replaced with: $728binary_subscr.8 = getitem(value=R, index=j.3, fn=) -13:52:45,160 numba.core.ssa DEBUG on stmt: $742call.9 = call $720load_deref.4(A, $728binary_subscr.8, func=$720load_deref.4, args=[Var(A, quicksort.py:86), Var($728binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,160 numba.core.ssa DEBUG on stmt: $756call.10 = call $714load_deref.1(pivot, $742call.9, func=$714load_deref.1, args=[Var(pivot, quicksort.py:108), Var($742call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,160 numba.core.ssa DEBUG on stmt: bool766 = global(bool: ) -13:52:45,160 numba.core.ssa DEBUG on stmt: $766pred = call bool766($756call.10, func=bool766, args=(Var($756call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,160 numba.core.ssa DEBUG on stmt: branch $766pred, 768, 846 -13:52:45,160 numba.core.ssa DEBUG ==== SSA block rewrite pass on 768 -13:52:45,160 numba.core.ssa DEBUG Running -13:52:45,160 numba.core.ssa DEBUG on stmt: $const770.1 = const(int, 1) -13:52:45,160 numba.core.ssa DEBUG on stmt: $binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,160 numba.core.ssa DEBUG find_def var='j' stmt=$binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,160 numba.core.ssa DEBUG find_def_from_top label 768 -13:52:45,160 numba.core.ssa DEBUG insert phi node j.4 = phi(incoming_values=[], incoming_blocks=[]) at 768 -13:52:45,160 numba.core.ssa DEBUG find_def_from_bottom label 712 -13:52:45,160 numba.core.ssa DEBUG find_def_from_top label 712 -13:52:45,160 numba.core.ssa DEBUG idom 700 from label 712 -13:52:45,160 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,160 numba.core.ssa DEBUG find_def_from_top label 700 -13:52:45,160 numba.core.ssa DEBUG idom 554 from label 700 -13:52:45,160 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,160 numba.core.ssa DEBUG incoming_def j.3 = phi(incoming_values=[Var(j, quicksort.py:113), Var(j.2, quicksort.py:123)], incoming_blocks=[456, 860]) -13:52:45,160 numba.core.ssa DEBUG find_def_from_bottom label 790 -13:52:45,160 numba.core.ssa DEBUG find_def_from_top label 790 -13:52:45,160 numba.core.ssa DEBUG idom 768 from label 790 -13:52:45,160 numba.core.ssa DEBUG find_def_from_bottom label 768 -13:52:45,160 numba.core.ssa DEBUG incoming_def j.1 = $binop_isub772.2 -13:52:45,160 numba.core.ssa DEBUG replaced with: $binop_isub772.2 = inplace_binop(fn=, immutable_fn=, lhs=j.4, rhs=$const770.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,160 numba.core.ssa DEBUG on stmt: j.1 = $binop_isub772.2 -13:52:45,160 numba.core.ssa DEBUG on stmt: $782compare_op.5 = j >= low -13:52:45,160 numba.core.ssa DEBUG find_def var='j' stmt=$782compare_op.5 = j >= low -13:52:45,160 numba.core.ssa DEBUG replaced with: $782compare_op.5 = j.1 >= low -13:52:45,160 numba.core.ssa DEBUG on stmt: bool788 = global(bool: ) -13:52:45,160 numba.core.ssa DEBUG on stmt: $788pred = call bool788($782compare_op.5, func=bool788, args=(Var($782compare_op.5, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,161 numba.core.ssa DEBUG on stmt: branch $788pred, 790, 846 -13:52:45,161 numba.core.ssa DEBUG ==== SSA block rewrite pass on 790 -13:52:45,161 numba.core.ssa DEBUG Running -13:52:45,161 numba.core.ssa DEBUG on stmt: $792load_deref.1 = freevar(LT: ) -13:52:45,161 numba.core.ssa DEBUG on stmt: $798load_deref.4 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,161 numba.core.ssa DEBUG on stmt: $806binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,161 numba.core.ssa DEBUG find_def var='j' stmt=$806binary_subscr.8 = getitem(value=R, index=j, fn=) -13:52:45,161 numba.core.ssa DEBUG find_def_from_top label 790 -13:52:45,161 numba.core.ssa DEBUG idom 768 from label 790 -13:52:45,161 numba.core.ssa DEBUG find_def_from_bottom label 768 -13:52:45,161 numba.core.ssa DEBUG replaced with: $806binary_subscr.8 = getitem(value=R, index=j.1, fn=) -13:52:45,161 numba.core.ssa DEBUG on stmt: $820call.9 = call $798load_deref.4(A, $806binary_subscr.8, func=$798load_deref.4, args=[Var(A, quicksort.py:86), Var($806binary_subscr.8, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,161 numba.core.ssa DEBUG on stmt: $834call.10 = call $792load_deref.1(pivot, $820call.9, func=$792load_deref.1, args=[Var(pivot, quicksort.py:108), Var($820call.9, quicksort.py:117)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,161 numba.core.ssa DEBUG on stmt: bool844 = global(bool: ) -13:52:45,161 numba.core.ssa DEBUG on stmt: $844pred = call bool844($834call.10, func=bool844, args=(Var($834call.10, quicksort.py:117),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,161 numba.core.ssa DEBUG on stmt: branch $844pred, 768, 846 -13:52:45,161 numba.core.ssa DEBUG ==== SSA block rewrite pass on 846 -13:52:45,161 numba.core.ssa DEBUG Running -13:52:45,161 numba.core.ssa DEBUG on stmt: $850compare_op.2 = i.5 >= j -13:52:45,161 numba.core.ssa DEBUG find_def var='j' stmt=$850compare_op.2 = i.5 >= j -13:52:45,161 numba.core.ssa DEBUG find_def_from_top label 846 -13:52:45,161 numba.core.ssa DEBUG insert phi node j.5 = phi(incoming_values=[], incoming_blocks=[]) at 846 -13:52:45,161 numba.core.ssa DEBUG find_def_from_bottom label 712 -13:52:45,161 numba.core.ssa DEBUG find_def_from_top label 712 -13:52:45,161 numba.core.ssa DEBUG idom 700 from label 712 -13:52:45,161 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,161 numba.core.ssa DEBUG find_def_from_top label 700 -13:52:45,161 numba.core.ssa DEBUG idom 554 from label 700 -13:52:45,161 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,161 numba.core.ssa DEBUG incoming_def j.3 = phi(incoming_values=[Var(j, quicksort.py:113), Var(j.2, quicksort.py:123)], incoming_blocks=[456, 860]) -13:52:45,161 numba.core.ssa DEBUG find_def_from_bottom label 768 -13:52:45,161 numba.core.ssa DEBUG incoming_def j.1 = $binop_isub772.2 -13:52:45,161 numba.core.ssa DEBUG find_def_from_bottom label 700 -13:52:45,161 numba.core.ssa DEBUG find_def_from_top label 700 -13:52:45,162 numba.core.ssa DEBUG idom 554 from label 700 -13:52:45,162 numba.core.ssa DEBUG find_def_from_bottom label 554 -13:52:45,162 numba.core.ssa DEBUG incoming_def j.3 = phi(incoming_values=[Var(j, quicksort.py:113), Var(j.2, quicksort.py:123)], incoming_blocks=[456, 860]) -13:52:45,162 numba.core.ssa DEBUG find_def_from_bottom label 790 -13:52:45,162 numba.core.ssa DEBUG find_def_from_top label 790 -13:52:45,162 numba.core.ssa DEBUG idom 768 from label 790 -13:52:45,162 numba.core.ssa DEBUG find_def_from_bottom label 768 -13:52:45,162 numba.core.ssa DEBUG incoming_def j.1 = $binop_isub772.2 -13:52:45,162 numba.core.ssa DEBUG replaced with: $850compare_op.2 = i.5 >= j.5 -13:52:45,162 numba.core.ssa DEBUG on stmt: bool856 = global(bool: ) -13:52:45,162 numba.core.ssa DEBUG on stmt: $856pred = call bool856($850compare_op.2, func=bool856, args=(Var($850compare_op.2, quicksort.py:119),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,162 numba.core.ssa DEBUG on stmt: branch $856pred, 858, 860 -13:52:45,162 numba.core.ssa DEBUG ==== SSA block rewrite pass on 858 -13:52:45,162 numba.core.ssa DEBUG Running -13:52:45,162 numba.core.ssa DEBUG on stmt: jump 928 -13:52:45,162 numba.core.ssa DEBUG ==== SSA block rewrite pass on 860 -13:52:45,162 numba.core.ssa DEBUG Running -13:52:45,162 numba.core.ssa DEBUG on stmt: $864binary_subscr.2 = getitem(value=R, index=j, fn=) -13:52:45,162 numba.core.ssa DEBUG find_def var='j' stmt=$864binary_subscr.2 = getitem(value=R, index=j, fn=) -13:52:45,162 numba.core.ssa DEBUG find_def_from_top label 860 -13:52:45,162 numba.core.ssa DEBUG idom 846 from label 860 -13:52:45,162 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,162 numba.core.ssa DEBUG replaced with: $864binary_subscr.2 = getitem(value=R, index=j.5, fn=) -13:52:45,162 numba.core.ssa DEBUG on stmt: $878binary_subscr.5 = getitem(value=R, index=i.5, fn=) -13:52:45,162 numba.core.ssa DEBUG on stmt: R[i.5] = $864binary_subscr.2 -13:52:45,162 numba.core.ssa DEBUG on stmt: R[j] = $878binary_subscr.5 -13:52:45,162 numba.core.ssa DEBUG find_def var='j' stmt=R[j] = $878binary_subscr.5 -13:52:45,162 numba.core.ssa DEBUG find_def_from_top label 860 -13:52:45,162 numba.core.ssa DEBUG idom 846 from label 860 -13:52:45,162 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,162 numba.core.ssa DEBUG replaced with: R[j.5] = $878binary_subscr.5 -13:52:45,162 numba.core.ssa DEBUG on stmt: $const908.11 = const(int, 1) -13:52:45,162 numba.core.ssa DEBUG on stmt: $binop_iadd910.12 = inplace_binop(fn=, immutable_fn=, lhs=i.5, rhs=$const908.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,162 numba.core.ssa DEBUG on stmt: i.2 = $binop_iadd910.12 -13:52:45,162 numba.core.ssa DEBUG on stmt: $const918.14 = const(int, 1) -13:52:45,163 numba.core.ssa DEBUG on stmt: $binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,163 numba.core.ssa DEBUG find_def var='j' stmt=$binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,163 numba.core.ssa DEBUG find_def_from_top label 860 -13:52:45,163 numba.core.ssa DEBUG idom 846 from label 860 -13:52:45,163 numba.core.ssa DEBUG find_def_from_bottom label 846 -13:52:45,163 numba.core.ssa DEBUG replaced with: $binop_isub920.15 = inplace_binop(fn=, immutable_fn=, lhs=j.5, rhs=$const918.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,163 numba.core.ssa DEBUG on stmt: j.2 = $binop_isub920.15 -13:52:45,163 numba.core.ssa DEBUG on stmt: jump 554 -13:52:45,163 numba.core.ssa DEBUG ==== SSA block rewrite pass on 928 -13:52:45,163 numba.core.ssa DEBUG Running -13:52:45,163 numba.core.ssa DEBUG on stmt: $932binary_subscr.2 = getitem(value=R, index=high, fn=) -13:52:45,163 numba.core.ssa DEBUG on stmt: $946binary_subscr.5 = getitem(value=R, index=i.5, fn=) -13:52:45,163 numba.core.ssa DEBUG on stmt: R[i.5] = $932binary_subscr.2 -13:52:45,163 numba.core.ssa DEBUG on stmt: R[high] = $946binary_subscr.5 -13:52:45,163 numba.core.ssa DEBUG on stmt: $976return_value.11 = cast(value=i.5) -13:52:45,163 numba.core.ssa DEBUG on stmt: return $976return_value.11 -13:52:45,182 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=45) - 2 RESUME(arg=0, lineno=45) - 4 LOAD_FAST(arg=0, lineno=47) - 6 LOAD_FAST(arg=1, lineno=47) - 8 BINARY_SUBSCR(arg=None, lineno=47) - 18 RETURN_VALUE(arg=None, lineno=47) -13:52:45,182 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:45,182 numba.core.byteflow DEBUG stack: [] -13:52:45,182 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:45,182 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=45) -13:52:45,182 numba.core.byteflow DEBUG stack [] -13:52:45,182 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=45) -13:52:45,182 numba.core.byteflow DEBUG stack [] -13:52:45,182 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=47) -13:52:45,182 numba.core.byteflow DEBUG stack [] -13:52:45,183 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=1, lineno=47) -13:52:45,183 numba.core.byteflow DEBUG stack ['$A4.0'] -13:52:45,183 numba.core.byteflow DEBUG dispatch pc=8, inst=BINARY_SUBSCR(arg=None, lineno=47) -13:52:45,183 numba.core.byteflow DEBUG stack ['$A4.0', '$idx_or_val6.1'] -13:52:45,183 numba.core.byteflow DEBUG dispatch pc=18, inst=RETURN_VALUE(arg=None, lineno=47) -13:52:45,183 numba.core.byteflow DEBUG stack ['$8binary_subscr.2'] -13:52:45,183 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,183 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:45,183 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:45,183 numba.core.byteflow DEBUG defmap: {} -13:52:45,183 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:45,183 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:45,183 numba.core.byteflow DEBUG keep phismap: {} -13:52:45,183 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:45,183 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:45,183 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$A4.0'}), (6, {'res': '$idx_or_val6.1'}), (8, {'index': '$idx_or_val6.1', 'target': '$A4.0', 'res': '$8binary_subscr.2'}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'retval': '$8binary_subscr.2', 'castval': '$18return_value.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,183 numba.core.interpreter DEBUG label 0: - A = arg(0, name=A) ['A'] - idx_or_val = arg(1, name=idx_or_val) ['idx_or_val'] - $8binary_subscr.2 = getitem(value=A, index=idx_or_val, fn=) ['$8binary_subscr.2', 'A', 'idx_or_val'] - $18return_value.3 = cast(value=$8binary_subscr.2) ['$18return_value.3', '$8binary_subscr.2'] - return $18return_value.3 ['$18return_value.3'] - -13:52:45,187 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:45,187 numba.core.ssa DEBUG Running -13:52:45,187 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,187 numba.core.ssa DEBUG on stmt: idx_or_val = arg(1, name=idx_or_val) -13:52:45,187 numba.core.ssa DEBUG on stmt: $8binary_subscr.2 = getitem(value=A, index=idx_or_val, fn=) -13:52:45,187 numba.core.ssa DEBUG on stmt: $18return_value.3 = cast(value=$8binary_subscr.2) -13:52:45,187 numba.core.ssa DEBUG on stmt: return $18return_value.3 -13:52:45,188 numba.core.ssa DEBUG defs defaultdict(, - {'$18return_value.3': [(, - 0)], - '$8binary_subscr.2': [(, - 0)], - 'A': [(, 0)], - 'idx_or_val': [(, - 0)]}) -13:52:45,188 numba.core.ssa DEBUG SSA violators -13:52:45,205 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=734) - 2 RESUME(arg=0, lineno=734) - 4 LOAD_FAST(arg=0, lineno=739) - 6 LOAD_FAST(arg=1, lineno=739) - 8 COMPARE_OP(arg=0, lineno=739) - 14 JUMP_IF_TRUE_OR_POP(arg=40, lineno=739) - 16 LOAD_GLOBAL(arg=1, lineno=739) - 28 LOAD_ATTR(arg=1, lineno=739) - 38 LOAD_FAST(arg=1, lineno=739) - 40 PRECALL(arg=1, lineno=739) - 44 CALL(arg=1, lineno=739) - 54 JUMP_IF_FALSE_OR_POP(arg=20, lineno=739) - 56 LOAD_GLOBAL(arg=1, lineno=739) - 68 LOAD_ATTR(arg=1, lineno=739) - 78 LOAD_FAST(arg=0, lineno=739) - 80 PRECALL(arg=1, lineno=739) - 84 CALL(arg=1, lineno=739) - 94 UNARY_NOT(arg=None, lineno=739) -> 96 RETURN_VALUE(arg=None, lineno=739) -13:52:45,205 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:45,205 numba.core.byteflow DEBUG stack: [] -13:52:45,205 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:45,205 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=734) -13:52:45,205 numba.core.byteflow DEBUG stack [] -13:52:45,205 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=734) -13:52:45,205 numba.core.byteflow DEBUG stack [] -13:52:45,205 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=739) -13:52:45,205 numba.core.byteflow DEBUG stack [] -13:52:45,205 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=1, lineno=739) -13:52:45,205 numba.core.byteflow DEBUG stack ['$a4.0'] -13:52:45,205 numba.core.byteflow DEBUG dispatch pc=8, inst=COMPARE_OP(arg=0, lineno=739) -13:52:45,205 numba.core.byteflow DEBUG stack ['$a4.0', '$b6.1'] -13:52:45,205 numba.core.byteflow DEBUG dispatch pc=14, inst=JUMP_IF_TRUE_OR_POP(arg=40, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack ['$8compare_op.2'] -13:52:45,206 numba.core.byteflow DEBUG end state. edges=[Edge(pc=16, stack=(), blockstack=(), npush=0), Edge(pc=96, stack=('$8compare_op.2',), blockstack=(), npush=0)] -13:52:45,206 numba.core.byteflow DEBUG pending: deque([State(pc_initial=16 nstack_initial=0), State(pc_initial=96 nstack_initial=1)]) -13:52:45,206 numba.core.byteflow DEBUG stack: [] -13:52:45,206 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=16 nstack_initial=0) -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_GLOBAL(arg=1, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack [] -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_ATTR(arg=1, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack ['$null$16.1', '$16load_global.0'] -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=38, inst=LOAD_FAST(arg=1, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack ['$null$16.1', '$28load_attr.2'] -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=40, inst=PRECALL(arg=1, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack ['$null$16.1', '$28load_attr.2', '$b38.3'] -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=44, inst=CALL(arg=1, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack ['$null$16.1', '$28load_attr.2', '$b38.3'] -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=54, inst=JUMP_IF_FALSE_OR_POP(arg=20, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack ['$44call.4'] -13:52:45,206 numba.core.byteflow DEBUG end state. edges=[Edge(pc=56, stack=(), blockstack=(), npush=0), Edge(pc=96, stack=('$44call.4',), blockstack=(), npush=0)] -13:52:45,206 numba.core.byteflow DEBUG pending: deque([State(pc_initial=96 nstack_initial=1), State(pc_initial=56 nstack_initial=0), State(pc_initial=96 nstack_initial=1)]) -13:52:45,206 numba.core.byteflow DEBUG stack: ['$phi96.0'] -13:52:45,206 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=96 nstack_initial=1) -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=96, inst=RETURN_VALUE(arg=None, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack ['$phi96.0'] -13:52:45,206 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,206 numba.core.byteflow DEBUG pending: deque([State(pc_initial=56 nstack_initial=0), State(pc_initial=96 nstack_initial=1)]) -13:52:45,206 numba.core.byteflow DEBUG stack: [] -13:52:45,206 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=56 nstack_initial=0) -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_GLOBAL(arg=1, lineno=739) -13:52:45,206 numba.core.byteflow DEBUG stack [] -13:52:45,206 numba.core.byteflow DEBUG dispatch pc=68, inst=LOAD_ATTR(arg=1, lineno=739) -13:52:45,207 numba.core.byteflow DEBUG stack ['$null$56.1', '$56load_global.0'] -13:52:45,207 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_FAST(arg=0, lineno=739) -13:52:45,207 numba.core.byteflow DEBUG stack ['$null$56.1', '$68load_attr.2'] -13:52:45,207 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=1, lineno=739) -13:52:45,207 numba.core.byteflow DEBUG stack ['$null$56.1', '$68load_attr.2', '$a78.3'] -13:52:45,207 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=1, lineno=739) -13:52:45,207 numba.core.byteflow DEBUG stack ['$null$56.1', '$68load_attr.2', '$a78.3'] -13:52:45,207 numba.core.byteflow DEBUG dispatch pc=94, inst=UNARY_NOT(arg=None, lineno=739) -13:52:45,207 numba.core.byteflow DEBUG stack ['$84call.4'] -13:52:45,207 numba.core.byteflow DEBUG end state. edges=[Edge(pc=96, stack=('$94unary_not.5',), blockstack=(), npush=0)] -13:52:45,207 numba.core.byteflow DEBUG pending: deque([State(pc_initial=96 nstack_initial=1), State(pc_initial=96 nstack_initial=1)]) -13:52:45,207 numba.core.byteflow DEBUG pending: deque([State(pc_initial=96 nstack_initial=1)]) -13:52:45,207 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:45,207 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=16 nstack_initial=0): set(), - State(pc_initial=56 nstack_initial=0): set(), - State(pc_initial=96 nstack_initial=1): {'$phi96.0'}}) -13:52:45,207 numba.core.byteflow DEBUG defmap: {'$phi96.0': State(pc_initial=0 nstack_initial=0)} -13:52:45,207 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi96.0': {('$44call.4', State(pc_initial=16 nstack_initial=0)), - ('$8compare_op.2', - State(pc_initial=0 nstack_initial=0)), - ('$94unary_not.5', - State(pc_initial=56 nstack_initial=0))}}) -13:52:45,207 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi96.0': {('$44call.4', State(pc_initial=16 nstack_initial=0)), - ('$8compare_op.2', - State(pc_initial=0 nstack_initial=0)), - ('$94unary_not.5', - State(pc_initial=56 nstack_initial=0))}}) -13:52:45,207 numba.core.byteflow DEBUG keep phismap: {'$phi96.0': {('$44call.4', State(pc_initial=16 nstack_initial=0)), - ('$8compare_op.2', State(pc_initial=0 nstack_initial=0)), - ('$94unary_not.5', State(pc_initial=56 nstack_initial=0))}} -13:52:45,207 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi96.0': '$8compare_op.2'}, - State(pc_initial=16 nstack_initial=0): {'$phi96.0': '$44call.4'}, - State(pc_initial=56 nstack_initial=0): {'$phi96.0': '$94unary_not.5'}}) -13:52:45,207 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:45,207 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$a4.0'}), (6, {'res': '$b6.1'}), (8, {'lhs': '$a4.0', 'rhs': '$b6.1', 'res': '$8compare_op.2'}), (10, {}), (12, {}), (14, {'pred': '$8compare_op.2'})), outgoing_phis={'$phi96.0': '$8compare_op.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={16: (), 96: ('$8compare_op.2',)}) -13:52:45,208 numba.core.byteflow DEBUG block_infos State(pc_initial=16 nstack_initial=0): -AdaptBlockInfo(insts=((16, {'idx': 0, 'res': '$16load_global.0'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {}), (28, {'item': '$16load_global.0', 'res': '$28load_attr.2'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'res': '$b38.3'}), (40, {}), (42, {}), (44, {'func': '$28load_attr.2', 'args': ['$b38.3'], 'kw_names': None, 'res': '$44call.4'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {'pred': '$44call.4'})), outgoing_phis={'$phi96.0': '$44call.4'}, blockstack=(), active_try_block=None, outgoing_edgepushed={56: (), 96: ('$44call.4',)}) -13:52:45,208 numba.core.byteflow DEBUG block_infos State(pc_initial=56 nstack_initial=0): -AdaptBlockInfo(insts=((56, {'idx': 0, 'res': '$56load_global.0'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {'item': '$56load_global.0', 'res': '$68load_attr.2'}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {'res': '$a78.3'}), (80, {}), (82, {}), (84, {'func': '$68load_attr.2', 'args': ['$a78.3'], 'kw_names': None, 'res': '$84call.4'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'value': '$84call.4', 'res': '$94unary_not.5'})), outgoing_phis={'$phi96.0': '$94unary_not.5'}, blockstack=(), active_try_block=None, outgoing_edgepushed={96: ('$94unary_not.5',)}) -13:52:45,208 numba.core.byteflow DEBUG block_infos State(pc_initial=96 nstack_initial=1): -AdaptBlockInfo(insts=((96, {'retval': '$phi96.0', 'castval': '$96return_value.1'}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,208 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - b = arg(1, name=b) ['b'] - $8compare_op.2 = a < b ['$8compare_op.2', 'a', 'b'] - bool14 = global(bool: ) ['bool14'] - $14pred = call bool14($8compare_op.2, func=bool14, args=(Var($8compare_op.2, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) ['$14pred', '$8compare_op.2', 'bool14'] - $phi96.0 = $8compare_op.2 ['$8compare_op.2', '$phi96.0'] - branch $14pred, 96, 16 ['$14pred'] -label 16: - $16load_global.0 = global(np: ) ['$16load_global.0'] - $28load_attr.2 = getattr(value=$16load_global.0, attr=isnan) ['$16load_global.0', '$28load_attr.2'] - $44call.4 = call $28load_attr.2(b, func=$28load_attr.2, args=[Var(b, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) ['$28load_attr.2', '$44call.4', 'b'] - bool54 = global(bool: ) ['bool54'] - $54pred = call bool54($44call.4, func=bool54, args=(Var($44call.4, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) ['$44call.4', '$54pred', 'bool54'] - $phi96.0 = $44call.4 ['$44call.4', '$phi96.0'] - branch $54pred, 56, 96 ['$54pred'] -label 56: - $56load_global.0 = global(np: ) ['$56load_global.0'] - $68load_attr.2 = getattr(value=$56load_global.0, attr=isnan) ['$56load_global.0', '$68load_attr.2'] - $84call.4 = call $68load_attr.2(a, func=$68load_attr.2, args=[Var(a, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) ['$68load_attr.2', '$84call.4', 'a'] - $94unary_not.5 = unary(fn=, value=$84call.4) ['$84call.4', '$94unary_not.5'] - $phi96.0 = $94unary_not.5 ['$94unary_not.5', '$phi96.0'] - jump 96 [] -label 96: - $96return_value.1 = cast(value=$phi96.0) ['$96return_value.1', '$phi96.0'] - return $96return_value.1 ['$96return_value.1'] - -13:52:45,214 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:45,214 numba.core.ssa DEBUG Running -13:52:45,214 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:45,214 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:45,214 numba.core.ssa DEBUG on stmt: $8compare_op.2 = a < b -13:52:45,214 numba.core.ssa DEBUG on stmt: bool14 = global(bool: ) -13:52:45,214 numba.core.ssa DEBUG on stmt: $14pred = call bool14($8compare_op.2, func=bool14, args=(Var($8compare_op.2, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,215 numba.core.ssa DEBUG on stmt: $phi96.0 = $8compare_op.2 -13:52:45,215 numba.core.ssa DEBUG on stmt: branch $14pred, 96, 16 -13:52:45,215 numba.core.ssa DEBUG ==== SSA block analysis pass on 16 -13:52:45,215 numba.core.ssa DEBUG Running -13:52:45,215 numba.core.ssa DEBUG on stmt: $16load_global.0 = global(np: ) -13:52:45,215 numba.core.ssa DEBUG on stmt: $28load_attr.2 = getattr(value=$16load_global.0, attr=isnan) -13:52:45,215 numba.core.ssa DEBUG on stmt: $44call.4 = call $28load_attr.2(b, func=$28load_attr.2, args=[Var(b, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,215 numba.core.ssa DEBUG on stmt: bool54 = global(bool: ) -13:52:45,215 numba.core.ssa DEBUG on stmt: $54pred = call bool54($44call.4, func=bool54, args=(Var($44call.4, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,215 numba.core.ssa DEBUG on stmt: $phi96.0 = $44call.4 -13:52:45,215 numba.core.ssa DEBUG on stmt: branch $54pred, 56, 96 -13:52:45,215 numba.core.ssa DEBUG ==== SSA block analysis pass on 56 -13:52:45,215 numba.core.ssa DEBUG Running -13:52:45,215 numba.core.ssa DEBUG on stmt: $56load_global.0 = global(np: ) -13:52:45,215 numba.core.ssa DEBUG on stmt: $68load_attr.2 = getattr(value=$56load_global.0, attr=isnan) -13:52:45,215 numba.core.ssa DEBUG on stmt: $84call.4 = call $68load_attr.2(a, func=$68load_attr.2, args=[Var(a, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,215 numba.core.ssa DEBUG on stmt: $94unary_not.5 = unary(fn=, value=$84call.4) -13:52:45,215 numba.core.ssa DEBUG on stmt: $phi96.0 = $94unary_not.5 -13:52:45,215 numba.core.ssa DEBUG on stmt: jump 96 -13:52:45,215 numba.core.ssa DEBUG ==== SSA block analysis pass on 96 -13:52:45,215 numba.core.ssa DEBUG Running -13:52:45,215 numba.core.ssa DEBUG on stmt: $96return_value.1 = cast(value=$phi96.0) -13:52:45,215 numba.core.ssa DEBUG on stmt: return $96return_value.1 -13:52:45,215 numba.core.ssa DEBUG defs defaultdict(, - {'$14pred': [(, - 0)], - '$16load_global.0': [(, - 16)], - '$28load_attr.2': [(, - 16)], - '$44call.4': [(, - 16)], - '$54pred': [(, - 16)], - '$56load_global.0': [(, - 56)], - '$68load_attr.2': [(, - 56)], - '$84call.4': [(, - 56)], - '$8compare_op.2': [(, - 0)], - '$94unary_not.5': [(, - 56)], - '$96return_value.1': [(, - 96)], - '$phi96.0': [(, - 0), - (, - 16), - (, - 56)], - 'a': [(, 0)], - 'b': [(, 0)], - 'bool14': [(, - 0)], - 'bool54': [(, - 16)]}) -13:52:45,216 numba.core.ssa DEBUG SSA violators -13:52:45,216 numba.core.ssa DEBUG Fix SSA violator on var $phi96.0 -13:52:45,216 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,216 numba.core.ssa DEBUG Running -13:52:45,216 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:45,216 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:45,216 numba.core.ssa DEBUG on stmt: $8compare_op.2 = a < b -13:52:45,216 numba.core.ssa DEBUG on stmt: bool14 = global(bool: ) -13:52:45,216 numba.core.ssa DEBUG on stmt: $14pred = call bool14($8compare_op.2, func=bool14, args=(Var($8compare_op.2, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,216 numba.core.ssa DEBUG on stmt: $phi96.0 = $8compare_op.2 -13:52:45,216 numba.core.ssa DEBUG first assign: $phi96.0 -13:52:45,216 numba.core.ssa DEBUG replaced with: $phi96.0 = $8compare_op.2 -13:52:45,216 numba.core.ssa DEBUG on stmt: branch $14pred, 96, 16 -13:52:45,216 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:45,216 numba.core.ssa DEBUG Running -13:52:45,216 numba.core.ssa DEBUG on stmt: $16load_global.0 = global(np: ) -13:52:45,216 numba.core.ssa DEBUG on stmt: $28load_attr.2 = getattr(value=$16load_global.0, attr=isnan) -13:52:45,216 numba.core.ssa DEBUG on stmt: $44call.4 = call $28load_attr.2(b, func=$28load_attr.2, args=[Var(b, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,216 numba.core.ssa DEBUG on stmt: bool54 = global(bool: ) -13:52:45,216 numba.core.ssa DEBUG on stmt: $54pred = call bool54($44call.4, func=bool54, args=(Var($44call.4, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,216 numba.core.ssa DEBUG on stmt: $phi96.0 = $44call.4 -13:52:45,216 numba.core.ssa DEBUG replaced with: $phi96.0.1 = $44call.4 -13:52:45,216 numba.core.ssa DEBUG on stmt: branch $54pred, 56, 96 -13:52:45,216 numba.core.ssa DEBUG ==== SSA block rewrite pass on 56 -13:52:45,216 numba.core.ssa DEBUG Running -13:52:45,216 numba.core.ssa DEBUG on stmt: $56load_global.0 = global(np: ) -13:52:45,216 numba.core.ssa DEBUG on stmt: $68load_attr.2 = getattr(value=$56load_global.0, attr=isnan) -13:52:45,216 numba.core.ssa DEBUG on stmt: $84call.4 = call $68load_attr.2(a, func=$68load_attr.2, args=[Var(a, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,216 numba.core.ssa DEBUG on stmt: $94unary_not.5 = unary(fn=, value=$84call.4) -13:52:45,216 numba.core.ssa DEBUG on stmt: $phi96.0 = $94unary_not.5 -13:52:45,217 numba.core.ssa DEBUG replaced with: $phi96.0.2 = $94unary_not.5 -13:52:45,217 numba.core.ssa DEBUG on stmt: jump 96 -13:52:45,217 numba.core.ssa DEBUG ==== SSA block rewrite pass on 96 -13:52:45,217 numba.core.ssa DEBUG Running -13:52:45,217 numba.core.ssa DEBUG on stmt: $96return_value.1 = cast(value=$phi96.0) -13:52:45,217 numba.core.ssa DEBUG on stmt: return $96return_value.1 -13:52:45,217 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 16: [], - 56: []}) -13:52:45,217 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,217 numba.core.ssa DEBUG Running -13:52:45,217 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:45,217 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:45,217 numba.core.ssa DEBUG on stmt: $8compare_op.2 = a < b -13:52:45,217 numba.core.ssa DEBUG on stmt: bool14 = global(bool: ) -13:52:45,217 numba.core.ssa DEBUG on stmt: $14pred = call bool14($8compare_op.2, func=bool14, args=(Var($8compare_op.2, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,217 numba.core.ssa DEBUG on stmt: $phi96.0 = $8compare_op.2 -13:52:45,217 numba.core.ssa DEBUG on stmt: branch $14pred, 96, 16 -13:52:45,217 numba.core.ssa DEBUG ==== SSA block rewrite pass on 16 -13:52:45,217 numba.core.ssa DEBUG Running -13:52:45,217 numba.core.ssa DEBUG on stmt: $16load_global.0 = global(np: ) -13:52:45,217 numba.core.ssa DEBUG on stmt: $28load_attr.2 = getattr(value=$16load_global.0, attr=isnan) -13:52:45,217 numba.core.ssa DEBUG on stmt: $44call.4 = call $28load_attr.2(b, func=$28load_attr.2, args=[Var(b, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,217 numba.core.ssa DEBUG on stmt: bool54 = global(bool: ) -13:52:45,217 numba.core.ssa DEBUG on stmt: $54pred = call bool54($44call.4, func=bool54, args=(Var($44call.4, numpy_support.py:739),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,217 numba.core.ssa DEBUG on stmt: $phi96.0.1 = $44call.4 -13:52:45,217 numba.core.ssa DEBUG on stmt: branch $54pred, 56, 96 -13:52:45,217 numba.core.ssa DEBUG ==== SSA block rewrite pass on 56 -13:52:45,217 numba.core.ssa DEBUG Running -13:52:45,217 numba.core.ssa DEBUG on stmt: $56load_global.0 = global(np: ) -13:52:45,217 numba.core.ssa DEBUG on stmt: $68load_attr.2 = getattr(value=$56load_global.0, attr=isnan) -13:52:45,217 numba.core.ssa DEBUG on stmt: $84call.4 = call $68load_attr.2(a, func=$68load_attr.2, args=[Var(a, numpy_support.py:734)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,217 numba.core.ssa DEBUG on stmt: $94unary_not.5 = unary(fn=, value=$84call.4) -13:52:45,218 numba.core.ssa DEBUG on stmt: $phi96.0.2 = $94unary_not.5 -13:52:45,218 numba.core.ssa DEBUG on stmt: jump 96 -13:52:45,218 numba.core.ssa DEBUG ==== SSA block rewrite pass on 96 -13:52:45,218 numba.core.ssa DEBUG Running -13:52:45,218 numba.core.ssa DEBUG on stmt: $96return_value.1 = cast(value=$phi96.0) -13:52:45,218 numba.core.ssa DEBUG find_def var='$phi96.0' stmt=$96return_value.1 = cast(value=$phi96.0) -13:52:45,218 numba.core.ssa DEBUG find_def_from_top label 96 -13:52:45,218 numba.core.ssa DEBUG insert phi node $phi96.0.3 = phi(incoming_values=[], incoming_blocks=[]) at 96 -13:52:45,218 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:45,218 numba.core.ssa DEBUG incoming_def $phi96.0 = $8compare_op.2 -13:52:45,218 numba.core.ssa DEBUG find_def_from_bottom label 16 -13:52:45,218 numba.core.ssa DEBUG incoming_def $phi96.0.1 = $44call.4 -13:52:45,218 numba.core.ssa DEBUG find_def_from_bottom label 56 -13:52:45,218 numba.core.ssa DEBUG incoming_def $phi96.0.2 = $94unary_not.5 -13:52:45,218 numba.core.ssa DEBUG replaced with: $96return_value.1 = cast(value=$phi96.0.3) -13:52:45,218 numba.core.ssa DEBUG on stmt: return $96return_value.1 -13:52:45,442 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=66) - 2 COPY_FREE_VARS(arg=2, lineno=66) - 4 RESUME(arg=0, lineno=66) - 6 LOAD_FAST(arg=2, lineno=71) - 8 LOAD_CONST(arg=1, lineno=71) - 10 COMPARE_OP(arg=5, lineno=71) - 16 POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=71) - 18 LOAD_ASSERTION_ERROR(arg=None, lineno=71) - 20 RAISE_VARARGS(arg=1, lineno=71) -> 22 LOAD_FAST(arg=3, lineno=72) - 24 LOAD_FAST(arg=2, lineno=72) - 26 COMPARE_OP(arg=1, lineno=72) - 32 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=72) - 34 LOAD_CONST(arg=2, lineno=73) - 36 RETURN_VALUE(arg=None, lineno=73) -> 38 LOAD_GLOBAL(arg=1, lineno=75) - 50 LOAD_FAST(arg=2, lineno=75) - 52 LOAD_CONST(arg=3, lineno=75) - 54 BINARY_OP(arg=0, lineno=75) - 58 LOAD_FAST(arg=3, lineno=75) - 60 LOAD_CONST(arg=3, lineno=75) - 62 BINARY_OP(arg=0, lineno=75) - 66 PRECALL(arg=2, lineno=75) - 70 CALL(arg=2, lineno=75) - 80 GET_ITER(arg=None, lineno=75) -> 82 FOR_ITER(arg=122, lineno=75) - 84 STORE_FAST(arg=4, lineno=75) - 86 LOAD_FAST(arg=1, lineno=76) - 88 LOAD_FAST(arg=4, lineno=76) - 90 BINARY_SUBSCR(arg=None, lineno=76) - 100 STORE_FAST(arg=5, lineno=76) - 102 PUSH_NULL(arg=None, lineno=77) - 104 LOAD_DEREF(arg=8, lineno=77) - 106 LOAD_FAST(arg=0, lineno=77) - 108 LOAD_FAST(arg=5, lineno=77) - 110 PRECALL(arg=2, lineno=77) - 114 CALL(arg=2, lineno=77) - 124 STORE_FAST(arg=6, lineno=77) - 126 LOAD_FAST(arg=4, lineno=79) - 128 STORE_FAST(arg=7, lineno=79) - 130 LOAD_FAST(arg=7, lineno=80) - 132 LOAD_FAST(arg=2, lineno=80) - 134 COMPARE_OP(arg=4, lineno=80) - 140 POP_JUMP_FORWARD_IF_FALSE(arg=87, lineno=80) - 142 PUSH_NULL(arg=None, lineno=80) - 144 LOAD_DEREF(arg=9, lineno=80) - 146 LOAD_FAST(arg=6, lineno=80) - 148 PUSH_NULL(arg=None, lineno=80) - 150 LOAD_DEREF(arg=8, lineno=80) - 152 LOAD_FAST(arg=0, lineno=80) - 154 LOAD_FAST(arg=1, lineno=80) - 156 LOAD_FAST(arg=7, lineno=80) - 158 LOAD_CONST(arg=3, lineno=80) - 160 BINARY_OP(arg=10, lineno=80) - 164 BINARY_SUBSCR(arg=None, lineno=80) - 174 PRECALL(arg=2, lineno=80) - 178 CALL(arg=2, lineno=80) - 188 PRECALL(arg=2, lineno=80) - 192 CALL(arg=2, lineno=80) - 202 POP_JUMP_FORWARD_IF_FALSE(arg=56, lineno=80) -> 204 LOAD_FAST(arg=1, lineno=82) - 206 LOAD_FAST(arg=7, lineno=82) - 208 LOAD_CONST(arg=3, lineno=82) - 210 BINARY_OP(arg=10, lineno=82) - 214 BINARY_SUBSCR(arg=None, lineno=82) - 224 LOAD_FAST(arg=1, lineno=82) - 226 LOAD_FAST(arg=7, lineno=82) - 228 STORE_SUBSCR(arg=None, lineno=82) - 232 LOAD_FAST(arg=7, lineno=83) - 234 LOAD_CONST(arg=3, lineno=83) - 236 BINARY_OP(arg=23, lineno=83) - 240 STORE_FAST(arg=7, lineno=83) - 242 LOAD_FAST(arg=7, lineno=80) - 244 LOAD_FAST(arg=2, lineno=80) - 246 COMPARE_OP(arg=4, lineno=80) - 252 POP_JUMP_FORWARD_IF_FALSE(arg=31, lineno=80) - 254 PUSH_NULL(arg=None, lineno=80) - 256 LOAD_DEREF(arg=9, lineno=80) - 258 LOAD_FAST(arg=6, lineno=80) - 260 PUSH_NULL(arg=None, lineno=80) - 262 LOAD_DEREF(arg=8, lineno=80) - 264 LOAD_FAST(arg=0, lineno=80) - 266 LOAD_FAST(arg=1, lineno=80) - 268 LOAD_FAST(arg=7, lineno=80) - 270 LOAD_CONST(arg=3, lineno=80) - 272 BINARY_OP(arg=10, lineno=80) - 276 BINARY_SUBSCR(arg=None, lineno=80) - 286 PRECALL(arg=2, lineno=80) - 290 CALL(arg=2, lineno=80) - 300 PRECALL(arg=2, lineno=80) - 304 CALL(arg=2, lineno=80) - 314 POP_JUMP_BACKWARD_IF_TRUE(arg=56, lineno=80) -> 316 LOAD_FAST(arg=5, lineno=84) - 318 LOAD_FAST(arg=1, lineno=84) - 320 LOAD_FAST(arg=7, lineno=84) - 322 STORE_SUBSCR(arg=None, lineno=84) - 326 JUMP_BACKWARD(arg=123, lineno=84) -> 328 LOAD_CONST(arg=2, lineno=75) - 330 RETURN_VALUE(arg=None, lineno=75) -13:52:45,442 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:45,442 numba.core.byteflow DEBUG stack: [] -13:52:45,442 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=66) -13:52:45,442 numba.core.byteflow DEBUG stack [] -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=2, lineno=66) -13:52:45,442 numba.core.byteflow DEBUG stack [] -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=66) -13:52:45,442 numba.core.byteflow DEBUG stack [] -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=2, lineno=71) -13:52:45,442 numba.core.byteflow DEBUG stack [] -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_CONST(arg=1, lineno=71) -13:52:45,442 numba.core.byteflow DEBUG stack ['$low6.0'] -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=10, inst=COMPARE_OP(arg=5, lineno=71) -13:52:45,442 numba.core.byteflow DEBUG stack ['$low6.0', '$const8.1'] -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=16, inst=POP_JUMP_FORWARD_IF_TRUE(arg=2, lineno=71) -13:52:45,442 numba.core.byteflow DEBUG stack ['$10compare_op.2'] -13:52:45,442 numba.core.byteflow DEBUG end state. edges=[Edge(pc=18, stack=(), blockstack=(), npush=0), Edge(pc=22, stack=(), blockstack=(), npush=0)] -13:52:45,442 numba.core.byteflow DEBUG pending: deque([State(pc_initial=18 nstack_initial=0), State(pc_initial=22 nstack_initial=0)]) -13:52:45,442 numba.core.byteflow DEBUG stack: [] -13:52:45,442 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=18 nstack_initial=0) -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_ASSERTION_ERROR(arg=None, lineno=71) -13:52:45,442 numba.core.byteflow DEBUG stack [] -13:52:45,442 numba.core.byteflow DEBUG dispatch pc=20, inst=RAISE_VARARGS(arg=1, lineno=71) -13:52:45,442 numba.core.byteflow DEBUG stack ['$assertion_error18.0'] -13:52:45,442 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,443 numba.core.byteflow DEBUG pending: deque([State(pc_initial=22 nstack_initial=0)]) -13:52:45,443 numba.core.byteflow DEBUG stack: [] -13:52:45,443 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=22 nstack_initial=0) -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_FAST(arg=3, lineno=72) -13:52:45,443 numba.core.byteflow DEBUG stack [] -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=24, inst=LOAD_FAST(arg=2, lineno=72) -13:52:45,443 numba.core.byteflow DEBUG stack ['$high22.0'] -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=26, inst=COMPARE_OP(arg=1, lineno=72) -13:52:45,443 numba.core.byteflow DEBUG stack ['$high22.0', '$low24.1'] -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=32, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=72) -13:52:45,443 numba.core.byteflow DEBUG stack ['$26compare_op.2'] -13:52:45,443 numba.core.byteflow DEBUG end state. edges=[Edge(pc=34, stack=(), blockstack=(), npush=0), Edge(pc=38, stack=(), blockstack=(), npush=0)] -13:52:45,443 numba.core.byteflow DEBUG pending: deque([State(pc_initial=34 nstack_initial=0), State(pc_initial=38 nstack_initial=0)]) -13:52:45,443 numba.core.byteflow DEBUG stack: [] -13:52:45,443 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=34 nstack_initial=0) -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=34, inst=LOAD_CONST(arg=2, lineno=73) -13:52:45,443 numba.core.byteflow DEBUG stack [] -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=36, inst=RETURN_VALUE(arg=None, lineno=73) -13:52:45,443 numba.core.byteflow DEBUG stack ['$const34.0'] -13:52:45,443 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,443 numba.core.byteflow DEBUG pending: deque([State(pc_initial=38 nstack_initial=0)]) -13:52:45,443 numba.core.byteflow DEBUG stack: [] -13:52:45,443 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=38 nstack_initial=0) -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=38, inst=LOAD_GLOBAL(arg=1, lineno=75) -13:52:45,443 numba.core.byteflow DEBUG stack [] -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_FAST(arg=2, lineno=75) -13:52:45,443 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0'] -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=52, inst=LOAD_CONST(arg=3, lineno=75) -13:52:45,443 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0', '$low50.2'] -13:52:45,443 numba.core.byteflow DEBUG dispatch pc=54, inst=BINARY_OP(arg=0, lineno=75) -13:52:45,443 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0', '$low50.2', '$const52.3'] -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=58, inst=LOAD_FAST(arg=3, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0', '$binop_add54.4'] -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=60, inst=LOAD_CONST(arg=3, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0', '$binop_add54.4', '$high58.5'] -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=62, inst=BINARY_OP(arg=0, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0', '$binop_add54.4', '$high58.5', '$const60.6'] -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=66, inst=PRECALL(arg=2, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0', '$binop_add54.4', '$binop_add62.7'] -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=70, inst=CALL(arg=2, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$null$38.1', '$38load_global.0', '$binop_add54.4', '$binop_add62.7'] -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=80, inst=GET_ITER(arg=None, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$70call.8'] -13:52:45,444 numba.core.byteflow DEBUG end state. edges=[Edge(pc=82, stack=('$80get_iter.9',), blockstack=(), npush=0)] -13:52:45,444 numba.core.byteflow DEBUG pending: deque([State(pc_initial=82 nstack_initial=1)]) -13:52:45,444 numba.core.byteflow DEBUG stack: ['$phi82.0'] -13:52:45,444 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=82 nstack_initial=1) -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=82, inst=FOR_ITER(arg=122, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$phi82.0'] -13:52:45,444 numba.core.byteflow DEBUG end state. edges=[Edge(pc=328, stack=(), blockstack=(), npush=0), Edge(pc=84, stack=('$phi82.0', '$82for_iter.2'), blockstack=(), npush=0)] -13:52:45,444 numba.core.byteflow DEBUG pending: deque([State(pc_initial=328 nstack_initial=0), State(pc_initial=84 nstack_initial=2)]) -13:52:45,444 numba.core.byteflow DEBUG stack: [] -13:52:45,444 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=328 nstack_initial=0) -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=328, inst=LOAD_CONST(arg=2, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack [] -13:52:45,444 numba.core.byteflow DEBUG dispatch pc=330, inst=RETURN_VALUE(arg=None, lineno=75) -13:52:45,444 numba.core.byteflow DEBUG stack ['$const328.0'] -13:52:45,444 numba.core.byteflow DEBUG end state. edges=[] -13:52:45,444 numba.core.byteflow DEBUG pending: deque([State(pc_initial=84 nstack_initial=2)]) -13:52:45,444 numba.core.byteflow DEBUG stack: ['$phi84.0', '$phi84.1'] -13:52:45,445 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=84 nstack_initial=2) -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=84, inst=STORE_FAST(arg=4, lineno=75) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$phi84.1'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=86, inst=LOAD_FAST(arg=1, lineno=76) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=88, inst=LOAD_FAST(arg=4, lineno=76) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$R86.2'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=90, inst=BINARY_SUBSCR(arg=None, lineno=76) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$R86.2', '$i88.3'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=100, inst=STORE_FAST(arg=5, lineno=76) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$90binary_subscr.4'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=102, inst=PUSH_NULL(arg=None, lineno=77) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=104, inst=LOAD_DEREF(arg=8, lineno=77) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$null$102.5'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=106, inst=LOAD_FAST(arg=0, lineno=77) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$null$102.5', '$104load_deref.6'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=108, inst=LOAD_FAST(arg=5, lineno=77) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$null$102.5', '$104load_deref.6', '$A106.7'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=110, inst=PRECALL(arg=2, lineno=77) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$null$102.5', '$104load_deref.6', '$A106.7', '$k108.8'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=114, inst=CALL(arg=2, lineno=77) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$null$102.5', '$104load_deref.6', '$A106.7', '$k108.8'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=124, inst=STORE_FAST(arg=6, lineno=77) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0', '$114call.9'] -13:52:45,445 numba.core.byteflow DEBUG dispatch pc=126, inst=LOAD_FAST(arg=4, lineno=79) -13:52:45,445 numba.core.byteflow DEBUG stack ['$phi84.0'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=128, inst=STORE_FAST(arg=7, lineno=79) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi84.0', '$i126.10'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=130, inst=LOAD_FAST(arg=7, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi84.0'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=132, inst=LOAD_FAST(arg=2, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi84.0', '$j130.11'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=134, inst=COMPARE_OP(arg=4, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi84.0', '$j130.11', '$low132.12'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=140, inst=POP_JUMP_FORWARD_IF_FALSE(arg=87, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi84.0', '$134compare_op.13'] -13:52:45,446 numba.core.byteflow DEBUG end state. edges=[Edge(pc=142, stack=('$phi84.0',), blockstack=(), npush=0), Edge(pc=316, stack=('$phi84.0',), blockstack=(), npush=0)] -13:52:45,446 numba.core.byteflow DEBUG pending: deque([State(pc_initial=142 nstack_initial=1), State(pc_initial=316 nstack_initial=1)]) -13:52:45,446 numba.core.byteflow DEBUG stack: ['$phi142.0'] -13:52:45,446 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=142 nstack_initial=1) -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=142, inst=PUSH_NULL(arg=None, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=144, inst=LOAD_DEREF(arg=9, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=146, inst=LOAD_FAST(arg=6, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=148, inst=PUSH_NULL(arg=None, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=150, inst=LOAD_DEREF(arg=8, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=152, inst=LOAD_FAST(arg=0, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=154, inst=LOAD_FAST(arg=1, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5', '$A152.6'] -13:52:45,446 numba.core.byteflow DEBUG dispatch pc=156, inst=LOAD_FAST(arg=7, lineno=80) -13:52:45,446 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5', '$A152.6', '$R154.7'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=158, inst=LOAD_CONST(arg=3, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5', '$A152.6', '$R154.7', '$j156.8'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=160, inst=BINARY_OP(arg=10, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5', '$A152.6', '$R154.7', '$j156.8', '$const158.9'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=164, inst=BINARY_SUBSCR(arg=None, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5', '$A152.6', '$R154.7', '$binop_sub160.10'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=174, inst=PRECALL(arg=2, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5', '$A152.6', '$164binary_subscr.11'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=178, inst=CALL(arg=2, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$null$148.4', '$150load_deref.5', '$A152.6', '$164binary_subscr.11'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=188, inst=PRECALL(arg=2, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$178call.12'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=192, inst=CALL(arg=2, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.1', '$144load_deref.2', '$v146.3', '$178call.12'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=202, inst=POP_JUMP_FORWARD_IF_FALSE(arg=56, lineno=80) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi142.0', '$192call.13'] -13:52:45,447 numba.core.byteflow DEBUG end state. edges=[Edge(pc=204, stack=('$phi142.0',), blockstack=(), npush=0), Edge(pc=316, stack=('$phi142.0',), blockstack=(), npush=0)] -13:52:45,447 numba.core.byteflow DEBUG pending: deque([State(pc_initial=316 nstack_initial=1), State(pc_initial=204 nstack_initial=1), State(pc_initial=316 nstack_initial=1)]) -13:52:45,447 numba.core.byteflow DEBUG stack: ['$phi316.0'] -13:52:45,447 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=316 nstack_initial=1) -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=316, inst=LOAD_FAST(arg=5, lineno=84) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi316.0'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=318, inst=LOAD_FAST(arg=1, lineno=84) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi316.0', '$k316.1'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=320, inst=LOAD_FAST(arg=7, lineno=84) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi316.0', '$k316.1', '$R318.2'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=322, inst=STORE_SUBSCR(arg=None, lineno=84) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi316.0', '$k316.1', '$R318.2', '$j320.3'] -13:52:45,447 numba.core.byteflow DEBUG dispatch pc=326, inst=JUMP_BACKWARD(arg=123, lineno=84) -13:52:45,447 numba.core.byteflow DEBUG stack ['$phi316.0'] -13:52:45,448 numba.core.byteflow DEBUG end state. edges=[Edge(pc=82, stack=('$phi316.0',), blockstack=(), npush=0)] -13:52:45,448 numba.core.byteflow DEBUG pending: deque([State(pc_initial=204 nstack_initial=1), State(pc_initial=316 nstack_initial=1), State(pc_initial=82 nstack_initial=1)]) -13:52:45,448 numba.core.byteflow DEBUG stack: ['$phi204.0'] -13:52:45,448 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=204 nstack_initial=1) -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=204, inst=LOAD_FAST(arg=1, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=206, inst=LOAD_FAST(arg=7, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$R204.1'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=208, inst=LOAD_CONST(arg=3, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$R204.1', '$j206.2'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=210, inst=BINARY_OP(arg=10, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$R204.1', '$j206.2', '$const208.3'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=214, inst=BINARY_SUBSCR(arg=None, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$R204.1', '$binop_sub210.4'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=224, inst=LOAD_FAST(arg=1, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$214binary_subscr.5'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=226, inst=LOAD_FAST(arg=7, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$214binary_subscr.5', '$R224.6'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=228, inst=STORE_SUBSCR(arg=None, lineno=82) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$214binary_subscr.5', '$R224.6', '$j226.7'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=232, inst=LOAD_FAST(arg=7, lineno=83) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=234, inst=LOAD_CONST(arg=3, lineno=83) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$j232.8'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=236, inst=BINARY_OP(arg=23, lineno=83) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$j232.8', '$const234.9'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=240, inst=STORE_FAST(arg=7, lineno=83) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$binop_isub236.10'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=242, inst=LOAD_FAST(arg=7, lineno=80) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=244, inst=LOAD_FAST(arg=2, lineno=80) -13:52:45,448 numba.core.byteflow DEBUG stack ['$phi204.0', '$j242.11'] -13:52:45,448 numba.core.byteflow DEBUG dispatch pc=246, inst=COMPARE_OP(arg=4, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi204.0', '$j242.11', '$low244.12'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=252, inst=POP_JUMP_FORWARD_IF_FALSE(arg=31, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi204.0', '$246compare_op.13'] -13:52:45,449 numba.core.byteflow DEBUG end state. edges=[Edge(pc=254, stack=('$phi204.0',), blockstack=(), npush=0), Edge(pc=316, stack=('$phi204.0',), blockstack=(), npush=0)] -13:52:45,449 numba.core.byteflow DEBUG pending: deque([State(pc_initial=316 nstack_initial=1), State(pc_initial=82 nstack_initial=1), State(pc_initial=254 nstack_initial=1), State(pc_initial=316 nstack_initial=1)]) -13:52:45,449 numba.core.byteflow DEBUG pending: deque([State(pc_initial=82 nstack_initial=1), State(pc_initial=254 nstack_initial=1), State(pc_initial=316 nstack_initial=1)]) -13:52:45,449 numba.core.byteflow DEBUG pending: deque([State(pc_initial=254 nstack_initial=1), State(pc_initial=316 nstack_initial=1)]) -13:52:45,449 numba.core.byteflow DEBUG stack: ['$phi254.0'] -13:52:45,449 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=254 nstack_initial=1) -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=254, inst=PUSH_NULL(arg=None, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=256, inst=LOAD_DEREF(arg=9, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=258, inst=LOAD_FAST(arg=6, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=260, inst=PUSH_NULL(arg=None, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=262, inst=LOAD_DEREF(arg=8, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=264, inst=LOAD_FAST(arg=0, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=266, inst=LOAD_FAST(arg=1, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5', '$A264.6'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=268, inst=LOAD_FAST(arg=7, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5', '$A264.6', '$R266.7'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=270, inst=LOAD_CONST(arg=3, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5', '$A264.6', '$R266.7', '$j268.8'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=272, inst=BINARY_OP(arg=10, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5', '$A264.6', '$R266.7', '$j268.8', '$const270.9'] -13:52:45,449 numba.core.byteflow DEBUG dispatch pc=276, inst=BINARY_SUBSCR(arg=None, lineno=80) -13:52:45,449 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5', '$A264.6', '$R266.7', '$binop_sub272.10'] -13:52:45,450 numba.core.byteflow DEBUG dispatch pc=286, inst=PRECALL(arg=2, lineno=80) -13:52:45,450 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5', '$A264.6', '$276binary_subscr.11'] -13:52:45,450 numba.core.byteflow DEBUG dispatch pc=290, inst=CALL(arg=2, lineno=80) -13:52:45,450 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$null$260.4', '$262load_deref.5', '$A264.6', '$276binary_subscr.11'] -13:52:45,450 numba.core.byteflow DEBUG dispatch pc=300, inst=PRECALL(arg=2, lineno=80) -13:52:45,450 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$290call.12'] -13:52:45,450 numba.core.byteflow DEBUG dispatch pc=304, inst=CALL(arg=2, lineno=80) -13:52:45,450 numba.core.byteflow DEBUG stack ['$phi254.0', '$null$254.1', '$256load_deref.2', '$v258.3', '$290call.12'] -13:52:45,450 numba.core.byteflow DEBUG dispatch pc=314, inst=POP_JUMP_BACKWARD_IF_TRUE(arg=56, lineno=80) -13:52:45,450 numba.core.byteflow DEBUG stack ['$phi254.0', '$304call.13'] -13:52:45,450 numba.core.byteflow DEBUG end state. edges=[Edge(pc=316, stack=('$phi254.0',), blockstack=(), npush=0), Edge(pc=204, stack=('$phi254.0',), blockstack=(), npush=0)] -13:52:45,450 numba.core.byteflow DEBUG pending: deque([State(pc_initial=316 nstack_initial=1), State(pc_initial=316 nstack_initial=1), State(pc_initial=204 nstack_initial=1)]) -13:52:45,450 numba.core.byteflow DEBUG pending: deque([State(pc_initial=316 nstack_initial=1), State(pc_initial=204 nstack_initial=1)]) -13:52:45,450 numba.core.byteflow DEBUG pending: deque([State(pc_initial=204 nstack_initial=1)]) -13:52:45,450 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:45,450 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=18 nstack_initial=0): set(), - State(pc_initial=22 nstack_initial=0): set(), - State(pc_initial=34 nstack_initial=0): set(), - State(pc_initial=38 nstack_initial=0): set(), - State(pc_initial=82 nstack_initial=1): {'$phi82.0'}, - State(pc_initial=84 nstack_initial=2): {'$phi84.1'}, - State(pc_initial=142 nstack_initial=1): set(), - State(pc_initial=204 nstack_initial=1): set(), - State(pc_initial=254 nstack_initial=1): set(), - State(pc_initial=316 nstack_initial=1): set(), - State(pc_initial=328 nstack_initial=0): set()}) -13:52:45,450 numba.core.byteflow DEBUG defmap: {'$phi82.0': State(pc_initial=38 nstack_initial=0), - '$phi84.1': State(pc_initial=82 nstack_initial=1)} -13:52:45,450 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi142.0': {('$phi84.0', State(pc_initial=84 nstack_initial=2))}, - '$phi204.0': {('$phi142.0', - State(pc_initial=142 nstack_initial=1)), - ('$phi254.0', - State(pc_initial=254 nstack_initial=1))}, - '$phi254.0': {('$phi204.0', - State(pc_initial=204 nstack_initial=1))}, - '$phi316.0': {('$phi142.0', - State(pc_initial=142 nstack_initial=1)), - ('$phi204.0', - State(pc_initial=204 nstack_initial=1)), - ('$phi254.0', - State(pc_initial=254 nstack_initial=1)), - ('$phi84.0', State(pc_initial=84 nstack_initial=2))}, - '$phi82.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0)), - ('$phi316.0', - State(pc_initial=316 nstack_initial=1))}, - '$phi84.0': {('$phi82.0', State(pc_initial=82 nstack_initial=1))}, - '$phi84.1': {('$82for_iter.2', - State(pc_initial=82 nstack_initial=1))}}) -13:52:45,450 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi142.0': {('$phi82.0', State(pc_initial=82 nstack_initial=1))}, - '$phi204.0': {('$phi204.0', - State(pc_initial=204 nstack_initial=1)), - ('$phi82.0', State(pc_initial=82 nstack_initial=1))}, - '$phi254.0': {('$phi82.0', State(pc_initial=82 nstack_initial=1))}, - '$phi316.0': {('$phi82.0', State(pc_initial=82 nstack_initial=1))}, - '$phi82.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0)), - ('$phi82.0', State(pc_initial=82 nstack_initial=1))}, - '$phi84.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi84.1': {('$82for_iter.2', - State(pc_initial=82 nstack_initial=1))}}) -13:52:45,451 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi142.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi204.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi254.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi316.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi82.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi84.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi84.1': {('$82for_iter.2', - State(pc_initial=82 nstack_initial=1))}}) -13:52:45,451 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi142.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi204.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi254.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi316.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi82.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi84.0': {('$80get_iter.9', - State(pc_initial=38 nstack_initial=0))}, - '$phi84.1': {('$82for_iter.2', - State(pc_initial=82 nstack_initial=1))}}) -13:52:45,451 numba.core.byteflow DEBUG keep phismap: {'$phi82.0': {('$80get_iter.9', State(pc_initial=38 nstack_initial=0))}, - '$phi84.1': {('$82for_iter.2', State(pc_initial=82 nstack_initial=1))}} -13:52:45,451 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=38 nstack_initial=0): {'$phi82.0': '$80get_iter.9'}, - State(pc_initial=82 nstack_initial=1): {'$phi84.1': '$82for_iter.2'}}) -13:52:45,451 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'res': '$low6.0'}), (8, {'res': '$const8.1'}), (10, {'lhs': '$low6.0', 'rhs': '$const8.1', 'res': '$10compare_op.2'}), (12, {}), (14, {}), (16, {'pred': '$10compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={18: (), 22: ()}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=18 nstack_initial=0): -AdaptBlockInfo(insts=((18, {'res': '$assertion_error18.0'}), (20, {'exc': '$assertion_error18.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=22 nstack_initial=0): -AdaptBlockInfo(insts=((22, {'res': '$high22.0'}), (24, {'res': '$low24.1'}), (26, {'lhs': '$high22.0', 'rhs': '$low24.1', 'res': '$26compare_op.2'}), (28, {}), (30, {}), (32, {'pred': '$26compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={34: (), 38: ()}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=34 nstack_initial=0): -AdaptBlockInfo(insts=((34, {'res': '$const34.0'}), (36, {'retval': '$const34.0', 'castval': '$36return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=38 nstack_initial=0): -AdaptBlockInfo(insts=((38, {'idx': 0, 'res': '$38load_global.0'}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {}), (50, {'res': '$low50.2'}), (52, {'res': '$const52.3'}), (54, {'op': '+', 'lhs': '$low50.2', 'rhs': '$const52.3', 'res': '$binop_add54.4'}), (56, {}), (58, {'res': '$high58.5'}), (60, {'res': '$const60.6'}), (62, {'op': '+', 'lhs': '$high58.5', 'rhs': '$const60.6', 'res': '$binop_add62.7'}), (64, {}), (66, {}), (68, {}), (70, {'func': '$38load_global.0', 'args': ['$binop_add54.4', '$binop_add62.7'], 'kw_names': None, 'res': '$70call.8'}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {'value': '$70call.8', 'res': '$80get_iter.9'})), outgoing_phis={'$phi82.0': '$80get_iter.9'}, blockstack=(), active_try_block=None, outgoing_edgepushed={82: ('$80get_iter.9',)}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=82 nstack_initial=1): -AdaptBlockInfo(insts=((82, {'iterator': '$phi82.0', 'pair': '$82for_iter.1', 'indval': '$82for_iter.2', 'pred': '$82for_iter.3'}),), outgoing_phis={'$phi84.1': '$82for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={328: (), 84: ('$phi82.0', '$82for_iter.2')}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=84 nstack_initial=2): -AdaptBlockInfo(insts=((84, {'value': '$phi84.1'}), (86, {'res': '$R86.2'}), (88, {'res': '$i88.3'}), (90, {'index': '$i88.3', 'target': '$R86.2', 'res': '$90binary_subscr.4'}), (92, {}), (94, {}), (96, {}), (98, {}), (100, {'value': '$90binary_subscr.4'}), (102, {}), (104, {'res': '$104load_deref.6'}), (106, {'res': '$A106.7'}), (108, {'res': '$k108.8'}), (110, {}), (112, {}), (114, {'func': '$104load_deref.6', 'args': ['$A106.7', '$k108.8'], 'kw_names': None, 'res': '$114call.9'}), (116, {}), (118, {}), (120, {}), (122, {}), (124, {'value': '$114call.9'}), (126, {'res': '$i126.10'}), (128, {'value': '$i126.10'}), (130, {'res': '$j130.11'}), (132, {'res': '$low132.12'}), (134, {'lhs': '$j130.11', 'rhs': '$low132.12', 'res': '$134compare_op.13'}), (136, {}), (138, {}), (140, {'pred': '$134compare_op.13'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={142: ('$phi84.0',), 316: ('$phi84.0',)}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=142 nstack_initial=1): -AdaptBlockInfo(insts=((142, {}), (144, {'res': '$144load_deref.2'}), (146, {'res': '$v146.3'}), (148, {}), (150, {'res': '$150load_deref.5'}), (152, {'res': '$A152.6'}), (154, {'res': '$R154.7'}), (156, {'res': '$j156.8'}), (158, {'res': '$const158.9'}), (160, {'op': '-', 'lhs': '$j156.8', 'rhs': '$const158.9', 'res': '$binop_sub160.10'}), (162, {}), (164, {'index': '$binop_sub160.10', 'target': '$R154.7', 'res': '$164binary_subscr.11'}), (166, {}), (168, {}), (170, {}), (172, {}), (174, {}), (176, {}), (178, {'func': '$150load_deref.5', 'args': ['$A152.6', '$164binary_subscr.11'], 'kw_names': None, 'res': '$178call.12'}), (180, {}), (182, {}), (184, {}), (186, {}), (188, {}), (190, {}), (192, {'func': '$144load_deref.2', 'args': ['$v146.3', '$178call.12'], 'kw_names': None, 'res': '$192call.13'}), (194, {}), (196, {}), (198, {}), (200, {}), (202, {'pred': '$192call.13'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={204: ('$phi142.0',), 316: ('$phi142.0',)}) -13:52:45,451 numba.core.byteflow DEBUG block_infos State(pc_initial=204 nstack_initial=1): -AdaptBlockInfo(insts=((204, {'res': '$R204.1'}), (206, {'res': '$j206.2'}), (208, {'res': '$const208.3'}), (210, {'op': '-', 'lhs': '$j206.2', 'rhs': '$const208.3', 'res': '$binop_sub210.4'}), (212, {}), (214, {'index': '$binop_sub210.4', 'target': '$R204.1', 'res': '$214binary_subscr.5'}), (216, {}), (218, {}), (220, {}), (222, {}), (224, {'res': '$R224.6'}), (226, {'res': '$j226.7'}), (228, {'target': '$R224.6', 'index': '$j226.7', 'value': '$214binary_subscr.5'}), (230, {}), (232, {'res': '$j232.8'}), (234, {'res': '$const234.9'}), (236, {'op': '-=', 'lhs': '$j232.8', 'rhs': '$const234.9', 'res': '$binop_isub236.10'}), (238, {}), (240, {'value': '$binop_isub236.10'}), (242, {'res': '$j242.11'}), (244, {'res': '$low244.12'}), (246, {'lhs': '$j242.11', 'rhs': '$low244.12', 'res': '$246compare_op.13'}), (248, {}), (250, {}), (252, {'pred': '$246compare_op.13'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={254: ('$phi204.0',), 316: ('$phi204.0',)}) -13:52:45,452 numba.core.byteflow DEBUG block_infos State(pc_initial=254 nstack_initial=1): -AdaptBlockInfo(insts=((254, {}), (256, {'res': '$256load_deref.2'}), (258, {'res': '$v258.3'}), (260, {}), (262, {'res': '$262load_deref.5'}), (264, {'res': '$A264.6'}), (266, {'res': '$R266.7'}), (268, {'res': '$j268.8'}), (270, {'res': '$const270.9'}), (272, {'op': '-', 'lhs': '$j268.8', 'rhs': '$const270.9', 'res': '$binop_sub272.10'}), (274, {}), (276, {'index': '$binop_sub272.10', 'target': '$R266.7', 'res': '$276binary_subscr.11'}), (278, {}), (280, {}), (282, {}), (284, {}), (286, {}), (288, {}), (290, {'func': '$262load_deref.5', 'args': ['$A264.6', '$276binary_subscr.11'], 'kw_names': None, 'res': '$290call.12'}), (292, {}), (294, {}), (296, {}), (298, {}), (300, {}), (302, {}), (304, {'func': '$256load_deref.2', 'args': ['$v258.3', '$290call.12'], 'kw_names': None, 'res': '$304call.13'}), (306, {}), (308, {}), (310, {}), (312, {}), (314, {'pred': '$304call.13'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={316: ('$phi254.0',), 204: ('$phi254.0',)}) -13:52:45,452 numba.core.byteflow DEBUG block_infos State(pc_initial=316 nstack_initial=1): -AdaptBlockInfo(insts=((316, {'res': '$k316.1'}), (318, {'res': '$R318.2'}), (320, {'res': '$j320.3'}), (322, {'target': '$R318.2', 'index': '$j320.3', 'value': '$k316.1'}), (324, {}), (326, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={82: ('$phi316.0',)}) -13:52:45,452 numba.core.byteflow DEBUG block_infos State(pc_initial=328 nstack_initial=0): -AdaptBlockInfo(insts=((328, {'res': '$const328.0'}), (330, {'retval': '$const328.0', 'castval': '$330return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:45,453 numba.core.interpreter DEBUG label 0: - A = arg(0, name=A) ['A'] - R = arg(1, name=R) ['R'] - low = arg(2, name=low) ['low'] - high = arg(3, name=high) ['high'] - $const8.1 = const(int, 0) ['$const8.1'] - $10compare_op.2 = low >= $const8.1 ['$10compare_op.2', '$const8.1', 'low'] - bool16 = global(bool: ) ['bool16'] - $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:71),), kws=(), vararg=None, varkwarg=None, target=None) ['$10compare_op.2', '$16pred', 'bool16'] - branch $16pred, 22, 18 ['$16pred'] -label 18: - $assertion_error18.0 = global(AssertionError: ) ['$assertion_error18.0'] - raise $assertion_error18.0 ['$assertion_error18.0'] -label 22: - $26compare_op.2 = high <= low ['$26compare_op.2', 'high', 'low'] - bool32 = global(bool: ) ['bool32'] - $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:72),), kws=(), vararg=None, varkwarg=None, target=None) ['$26compare_op.2', '$32pred', 'bool32'] - branch $32pred, 34, 38 ['$32pred'] -label 34: - $const34.0 = const(NoneType, None) ['$const34.0'] - $36return_value.1 = cast(value=$const34.0) ['$36return_value.1', '$const34.0'] - return $36return_value.1 ['$36return_value.1'] -label 38: - $38load_global.0 = global(range: ) ['$38load_global.0'] - $const52.3 = const(int, 1) ['$const52.3'] - $binop_add54.4 = low + $const52.3 ['$binop_add54.4', '$const52.3', 'low'] - $const60.6 = const(int, 1) ['$const60.6'] - $binop_add62.7 = high + $const60.6 ['$binop_add62.7', '$const60.6', 'high'] - $70call.8 = call $38load_global.0($binop_add54.4, $binop_add62.7, func=$38load_global.0, args=[Var($binop_add54.4, quicksort.py:75), Var($binop_add62.7, quicksort.py:75)], kws=(), vararg=None, varkwarg=None, target=None) ['$38load_global.0', '$70call.8', '$binop_add54.4', '$binop_add62.7'] - $80get_iter.9 = getiter(value=$70call.8) ['$70call.8', '$80get_iter.9'] - $phi82.0 = $80get_iter.9 ['$80get_iter.9', '$phi82.0'] - jump 82 [] -label 82: - $82for_iter.1 = iternext(value=$phi82.0) ['$82for_iter.1', '$phi82.0'] - $82for_iter.2 = pair_first(value=$82for_iter.1) ['$82for_iter.1', '$82for_iter.2'] - $82for_iter.3 = pair_second(value=$82for_iter.1) ['$82for_iter.1', '$82for_iter.3'] - $phi84.1 = $82for_iter.2 ['$82for_iter.2', '$phi84.1'] - branch $82for_iter.3, 84, 328 ['$82for_iter.3'] -label 84: - i = $phi84.1 ['$phi84.1', 'i'] - k = getitem(value=R, index=i, fn=) ['R', 'i', 'k'] - $104load_deref.6 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$104load_deref.6'] - v = call $104load_deref.6(A, k, func=$104load_deref.6, args=[Var(A, quicksort.py:66), Var(k, quicksort.py:76)], kws=(), vararg=None, varkwarg=None, target=None) ['$104load_deref.6', 'A', 'k', 'v'] - j = i ['i', 'j'] - $134compare_op.13 = j > low ['$134compare_op.13', 'j', 'low'] - bool140 = global(bool: ) ['bool140'] - $140pred = call bool140($134compare_op.13, func=bool140, args=(Var($134compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) ['$134compare_op.13', '$140pred', 'bool140'] - branch $140pred, 142, 316 ['$140pred'] -label 142: - $144load_deref.2 = freevar(LT: ) ['$144load_deref.2'] - $150load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$150load_deref.5'] - $const158.9 = const(int, 1) ['$const158.9'] - $binop_sub160.10 = j - $const158.9 ['$binop_sub160.10', '$const158.9', 'j'] - $164binary_subscr.11 = getitem(value=R, index=$binop_sub160.10, fn=) ['$164binary_subscr.11', '$binop_sub160.10', 'R'] - $178call.12 = call $150load_deref.5(A, $164binary_subscr.11, func=$150load_deref.5, args=[Var(A, quicksort.py:66), Var($164binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) ['$150load_deref.5', '$164binary_subscr.11', '$178call.12', 'A'] - $192call.13 = call $144load_deref.2(v, $178call.12, func=$144load_deref.2, args=[Var(v, quicksort.py:77), Var($178call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) ['$144load_deref.2', '$178call.12', '$192call.13', 'v'] - bool202 = global(bool: ) ['bool202'] - $202pred = call bool202($192call.13, func=bool202, args=(Var($192call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) ['$192call.13', '$202pred', 'bool202'] - branch $202pred, 204, 316 ['$202pred'] -label 204: - $const208.3 = const(int, 1) ['$const208.3'] - $binop_sub210.4 = j - $const208.3 ['$binop_sub210.4', '$const208.3', 'j'] - $214binary_subscr.5 = getitem(value=R, index=$binop_sub210.4, fn=) ['$214binary_subscr.5', '$binop_sub210.4', 'R'] - R[j] = $214binary_subscr.5 ['$214binary_subscr.5', 'R', 'j'] - $const234.9 = const(int, 1) ['$const234.9'] - $binop_isub236.10 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const234.9, static_lhs=Undefined, static_rhs=Undefined) ['$binop_isub236.10', '$const234.9', 'j'] - j = $binop_isub236.10 ['$binop_isub236.10', 'j'] - $246compare_op.13 = j > low ['$246compare_op.13', 'j', 'low'] - bool252 = global(bool: ) ['bool252'] - $252pred = call bool252($246compare_op.13, func=bool252, args=(Var($246compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) ['$246compare_op.13', '$252pred', 'bool252'] - branch $252pred, 254, 316 ['$252pred'] -label 254: - $256load_deref.2 = freevar(LT: ) ['$256load_deref.2'] - $262load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) ['$262load_deref.5'] - $const270.9 = const(int, 1) ['$const270.9'] - $binop_sub272.10 = j - $const270.9 ['$binop_sub272.10', '$const270.9', 'j'] - $276binary_subscr.11 = getitem(value=R, index=$binop_sub272.10, fn=) ['$276binary_subscr.11', '$binop_sub272.10', 'R'] - $290call.12 = call $262load_deref.5(A, $276binary_subscr.11, func=$262load_deref.5, args=[Var(A, quicksort.py:66), Var($276binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) ['$262load_deref.5', '$276binary_subscr.11', '$290call.12', 'A'] - $304call.13 = call $256load_deref.2(v, $290call.12, func=$256load_deref.2, args=[Var(v, quicksort.py:77), Var($290call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) ['$256load_deref.2', '$290call.12', '$304call.13', 'v'] - bool314 = global(bool: ) ['bool314'] - $314pred = call bool314($304call.13, func=bool314, args=(Var($304call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) ['$304call.13', '$314pred', 'bool314'] - branch $314pred, 204, 316 ['$314pred'] -label 316: - R[j] = k ['R', 'j', 'k'] - jump 82 [] -label 328: - $const328.0 = const(NoneType, None) ['$const328.0'] - $330return_value.1 = cast(value=$const328.0) ['$330return_value.1', '$const328.0'] - return $330return_value.1 ['$330return_value.1'] - -13:52:45,467 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:45,467 numba.core.ssa DEBUG Running -13:52:45,467 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,467 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,467 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,467 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,467 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,468 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,468 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,468 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:71),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,468 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,468 numba.core.ssa DEBUG ==== SSA block analysis pass on 18 -13:52:45,468 numba.core.ssa DEBUG Running -13:52:45,468 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,468 numba.core.ssa DEBUG on stmt: raise -13:52:45,468 numba.core.ssa DEBUG ==== SSA block analysis pass on 22 -13:52:45,468 numba.core.ssa DEBUG Running -13:52:45,468 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high <= low -13:52:45,468 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,468 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:72),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,468 numba.core.ssa DEBUG on stmt: branch $32pred, 34, 38 -13:52:45,468 numba.core.ssa DEBUG ==== SSA block analysis pass on 34 -13:52:45,468 numba.core.ssa DEBUG Running -13:52:45,468 numba.core.ssa DEBUG on stmt: $const34.0 = const(NoneType, None) -13:52:45,468 numba.core.ssa DEBUG on stmt: $36return_value.1 = cast(value=$const34.0) -13:52:45,468 numba.core.ssa DEBUG on stmt: return $36return_value.1 -13:52:45,468 numba.core.ssa DEBUG ==== SSA block analysis pass on 38 -13:52:45,468 numba.core.ssa DEBUG Running -13:52:45,468 numba.core.ssa DEBUG on stmt: $38load_global.0 = global(range: ) -13:52:45,468 numba.core.ssa DEBUG on stmt: $const52.3 = const(int, 1) -13:52:45,468 numba.core.ssa DEBUG on stmt: $binop_add54.4 = low + $const52.3 -13:52:45,468 numba.core.ssa DEBUG on stmt: $const60.6 = const(int, 1) -13:52:45,468 numba.core.ssa DEBUG on stmt: $binop_add62.7 = high + $const60.6 -13:52:45,468 numba.core.ssa DEBUG on stmt: $70call.8 = call $38load_global.0($binop_add54.4, $binop_add62.7, func=$38load_global.0, args=[Var($binop_add54.4, quicksort.py:75), Var($binop_add62.7, quicksort.py:75)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,468 numba.core.ssa DEBUG on stmt: $80get_iter.9 = getiter(value=$70call.8) -13:52:45,468 numba.core.ssa DEBUG on stmt: $phi82.0 = $80get_iter.9 -13:52:45,468 numba.core.ssa DEBUG on stmt: jump 82 -13:52:45,469 numba.core.ssa DEBUG ==== SSA block analysis pass on 82 -13:52:45,469 numba.core.ssa DEBUG Running -13:52:45,469 numba.core.ssa DEBUG on stmt: $82for_iter.1 = iternext(value=$phi82.0) -13:52:45,469 numba.core.ssa DEBUG on stmt: $82for_iter.2 = pair_first(value=$82for_iter.1) -13:52:45,469 numba.core.ssa DEBUG on stmt: $82for_iter.3 = pair_second(value=$82for_iter.1) -13:52:45,469 numba.core.ssa DEBUG on stmt: $phi84.1 = $82for_iter.2 -13:52:45,469 numba.core.ssa DEBUG on stmt: branch $82for_iter.3, 84, 328 -13:52:45,469 numba.core.ssa DEBUG ==== SSA block analysis pass on 84 -13:52:45,469 numba.core.ssa DEBUG Running -13:52:45,469 numba.core.ssa DEBUG on stmt: i = $phi84.1 -13:52:45,469 numba.core.ssa DEBUG on stmt: k = getitem(value=R, index=i, fn=) -13:52:45,469 numba.core.ssa DEBUG on stmt: $104load_deref.6 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,469 numba.core.ssa DEBUG on stmt: v = call $104load_deref.6(A, k, func=$104load_deref.6, args=[Var(A, quicksort.py:66), Var(k, quicksort.py:76)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,469 numba.core.ssa DEBUG on stmt: j = i -13:52:45,469 numba.core.ssa DEBUG on stmt: $134compare_op.13 = j > low -13:52:45,469 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,469 numba.core.ssa DEBUG on stmt: $140pred = call bool140($134compare_op.13, func=bool140, args=(Var($134compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,469 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 316 -13:52:45,469 numba.core.ssa DEBUG ==== SSA block analysis pass on 142 -13:52:45,469 numba.core.ssa DEBUG Running -13:52:45,469 numba.core.ssa DEBUG on stmt: $144load_deref.2 = freevar(LT: ) -13:52:45,469 numba.core.ssa DEBUG on stmt: $150load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,469 numba.core.ssa DEBUG on stmt: $const158.9 = const(int, 1) -13:52:45,469 numba.core.ssa DEBUG on stmt: $binop_sub160.10 = j - $const158.9 -13:52:45,469 numba.core.ssa DEBUG on stmt: $164binary_subscr.11 = getitem(value=R, index=$binop_sub160.10, fn=) -13:52:45,470 numba.core.ssa DEBUG on stmt: $178call.12 = call $150load_deref.5(A, $164binary_subscr.11, func=$150load_deref.5, args=[Var(A, quicksort.py:66), Var($164binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,470 numba.core.ssa DEBUG on stmt: $192call.13 = call $144load_deref.2(v, $178call.12, func=$144load_deref.2, args=[Var(v, quicksort.py:77), Var($178call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,470 numba.core.ssa DEBUG on stmt: bool202 = global(bool: ) -13:52:45,470 numba.core.ssa DEBUG on stmt: $202pred = call bool202($192call.13, func=bool202, args=(Var($192call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,470 numba.core.ssa DEBUG on stmt: branch $202pred, 204, 316 -13:52:45,470 numba.core.ssa DEBUG ==== SSA block analysis pass on 204 -13:52:45,470 numba.core.ssa DEBUG Running -13:52:45,470 numba.core.ssa DEBUG on stmt: $const208.3 = const(int, 1) -13:52:45,470 numba.core.ssa DEBUG on stmt: $binop_sub210.4 = j - $const208.3 -13:52:45,470 numba.core.ssa DEBUG on stmt: $214binary_subscr.5 = getitem(value=R, index=$binop_sub210.4, fn=) -13:52:45,470 numba.core.ssa DEBUG on stmt: R[j] = $214binary_subscr.5 -13:52:45,470 numba.core.ssa DEBUG on stmt: $const234.9 = const(int, 1) -13:52:45,470 numba.core.ssa DEBUG on stmt: $binop_isub236.10 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const234.9, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,470 numba.core.ssa DEBUG on stmt: j = $binop_isub236.10 -13:52:45,470 numba.core.ssa DEBUG on stmt: $246compare_op.13 = j > low -13:52:45,470 numba.core.ssa DEBUG on stmt: bool252 = global(bool: ) -13:52:45,470 numba.core.ssa DEBUG on stmt: $252pred = call bool252($246compare_op.13, func=bool252, args=(Var($246compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,470 numba.core.ssa DEBUG on stmt: branch $252pred, 254, 316 -13:52:45,470 numba.core.ssa DEBUG ==== SSA block analysis pass on 254 -13:52:45,470 numba.core.ssa DEBUG Running -13:52:45,470 numba.core.ssa DEBUG on stmt: $256load_deref.2 = freevar(LT: ) -13:52:45,470 numba.core.ssa DEBUG on stmt: $262load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,470 numba.core.ssa DEBUG on stmt: $const270.9 = const(int, 1) -13:52:45,470 numba.core.ssa DEBUG on stmt: $binop_sub272.10 = j - $const270.9 -13:52:45,470 numba.core.ssa DEBUG on stmt: $276binary_subscr.11 = getitem(value=R, index=$binop_sub272.10, fn=) -13:52:45,470 numba.core.ssa DEBUG on stmt: $290call.12 = call $262load_deref.5(A, $276binary_subscr.11, func=$262load_deref.5, args=[Var(A, quicksort.py:66), Var($276binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,471 numba.core.ssa DEBUG on stmt: $304call.13 = call $256load_deref.2(v, $290call.12, func=$256load_deref.2, args=[Var(v, quicksort.py:77), Var($290call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,471 numba.core.ssa DEBUG on stmt: bool314 = global(bool: ) -13:52:45,471 numba.core.ssa DEBUG on stmt: $314pred = call bool314($304call.13, func=bool314, args=(Var($304call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,471 numba.core.ssa DEBUG on stmt: branch $314pred, 204, 316 -13:52:45,471 numba.core.ssa DEBUG ==== SSA block analysis pass on 316 -13:52:45,471 numba.core.ssa DEBUG Running -13:52:45,471 numba.core.ssa DEBUG on stmt: R[j] = k -13:52:45,471 numba.core.ssa DEBUG on stmt: jump 82 -13:52:45,471 numba.core.ssa DEBUG ==== SSA block analysis pass on 328 -13:52:45,471 numba.core.ssa DEBUG Running -13:52:45,471 numba.core.ssa DEBUG on stmt: $const328.0 = const(NoneType, None) -13:52:45,471 numba.core.ssa DEBUG on stmt: $330return_value.1 = cast(value=$const328.0) -13:52:45,471 numba.core.ssa DEBUG on stmt: return $330return_value.1 -13:52:45,473 numba.core.ssa DEBUG defs defaultdict(, - {'$104load_deref.6': [(, - 84)], - '$10compare_op.2': [(, - 0)], - '$134compare_op.13': [(, - 84)], - '$140pred': [(, - 84)], - '$144load_deref.2': [(, - 142)], - '$150load_deref.5': [(, - 142)], - '$164binary_subscr.11': [(, - 142)], - '$16pred': [(, - 0)], - '$178call.12': [(, - 142)], - '$192call.13': [(, - 142)], - '$202pred': [(, - 142)], - '$214binary_subscr.5': [(, - 204)], - '$246compare_op.13': [(, - 204)], - '$252pred': [(, - 204)], - '$256load_deref.2': [(, - 254)], - '$262load_deref.5': [(, - 254)], - '$26compare_op.2': [(, - 22)], - '$276binary_subscr.11': [(, - 254)], - '$290call.12': [(, - 254)], - '$304call.13': [(, - 254)], - '$314pred': [(, - 254)], - '$32pred': [(, - 22)], - '$330return_value.1': [(, - 328)], - '$36return_value.1': [(, - 34)], - '$38load_global.0': [(, - 38)], - '$70call.8': [(, - 38)], - '$80get_iter.9': [(, - 38)], - '$82for_iter.1': [(, - 82)], - '$82for_iter.2': [(, - 82)], - '$82for_iter.3': [(, - 82)], - '$assertion_error18.0': [(, - 18)], - '$binop_add54.4': [(, - 38)], - '$binop_add62.7': [(, - 38)], - '$binop_isub236.10': [(, - 204)], - '$binop_sub160.10': [(, - 142)], - '$binop_sub210.4': [(, - 204)], - '$binop_sub272.10': [(, - 254)], - '$const158.9': [(, - 142)], - '$const208.3': [(, - 204)], - '$const234.9': [(, - 204)], - '$const270.9': [(, - 254)], - '$const328.0': [(, - 328)], - '$const34.0': [(, - 34)], - '$const52.3': [(, - 38)], - '$const60.6': [(, - 38)], - '$const8.1': [(, - 0)], - '$phi82.0': [(, - 38)], - '$phi84.1': [(, - 82)], - 'A': [(, 0)], - 'R': [(, 0)], - 'bool140': [(, - 84)], - 'bool16': [(, - 0)], - 'bool202': [(, - 142)], - 'bool252': [(, - 204)], - 'bool314': [(, - 254)], - 'bool32': [(, - 22)], - 'high': [(, 0)], - 'i': [(, 84)], - 'j': [(, 84), - (, 204)], - 'k': [(, 84)], - 'low': [(, 0)], - 'v': [(, 84)]}) -13:52:45,473 numba.core.ssa DEBUG SSA violators -13:52:45,473 numba.core.ssa DEBUG Fix SSA violator on var j -13:52:45,473 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,473 numba.core.ssa DEBUG Running -13:52:45,473 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,473 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,473 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,473 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,473 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,473 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,473 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,473 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:71),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,473 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,473 numba.core.ssa DEBUG ==== SSA block rewrite pass on 18 -13:52:45,473 numba.core.ssa DEBUG Running -13:52:45,473 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,474 numba.core.ssa DEBUG on stmt: raise -13:52:45,474 numba.core.ssa DEBUG ==== SSA block rewrite pass on 22 -13:52:45,474 numba.core.ssa DEBUG Running -13:52:45,474 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high <= low -13:52:45,474 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,474 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:72),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,474 numba.core.ssa DEBUG on stmt: branch $32pred, 34, 38 -13:52:45,474 numba.core.ssa DEBUG ==== SSA block rewrite pass on 34 -13:52:45,474 numba.core.ssa DEBUG Running -13:52:45,474 numba.core.ssa DEBUG on stmt: $const34.0 = const(NoneType, None) -13:52:45,474 numba.core.ssa DEBUG on stmt: $36return_value.1 = cast(value=$const34.0) -13:52:45,474 numba.core.ssa DEBUG on stmt: return $36return_value.1 -13:52:45,474 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:45,474 numba.core.ssa DEBUG Running -13:52:45,474 numba.core.ssa DEBUG on stmt: $38load_global.0 = global(range: ) -13:52:45,474 numba.core.ssa DEBUG on stmt: $const52.3 = const(int, 1) -13:52:45,474 numba.core.ssa DEBUG on stmt: $binop_add54.4 = low + $const52.3 -13:52:45,474 numba.core.ssa DEBUG on stmt: $const60.6 = const(int, 1) -13:52:45,474 numba.core.ssa DEBUG on stmt: $binop_add62.7 = high + $const60.6 -13:52:45,474 numba.core.ssa DEBUG on stmt: $70call.8 = call $38load_global.0($binop_add54.4, $binop_add62.7, func=$38load_global.0, args=[Var($binop_add54.4, quicksort.py:75), Var($binop_add62.7, quicksort.py:75)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,474 numba.core.ssa DEBUG on stmt: $80get_iter.9 = getiter(value=$70call.8) -13:52:45,474 numba.core.ssa DEBUG on stmt: $phi82.0 = $80get_iter.9 -13:52:45,474 numba.core.ssa DEBUG on stmt: jump 82 -13:52:45,474 numba.core.ssa DEBUG ==== SSA block rewrite pass on 82 -13:52:45,474 numba.core.ssa DEBUG Running -13:52:45,474 numba.core.ssa DEBUG on stmt: $82for_iter.1 = iternext(value=$phi82.0) -13:52:45,474 numba.core.ssa DEBUG on stmt: $82for_iter.2 = pair_first(value=$82for_iter.1) -13:52:45,474 numba.core.ssa DEBUG on stmt: $82for_iter.3 = pair_second(value=$82for_iter.1) -13:52:45,474 numba.core.ssa DEBUG on stmt: $phi84.1 = $82for_iter.2 -13:52:45,474 numba.core.ssa DEBUG on stmt: branch $82for_iter.3, 84, 328 -13:52:45,474 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:45,474 numba.core.ssa DEBUG Running -13:52:45,474 numba.core.ssa DEBUG on stmt: i = $phi84.1 -13:52:45,474 numba.core.ssa DEBUG on stmt: k = getitem(value=R, index=i, fn=) -13:52:45,474 numba.core.ssa DEBUG on stmt: $104load_deref.6 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,475 numba.core.ssa DEBUG on stmt: v = call $104load_deref.6(A, k, func=$104load_deref.6, args=[Var(A, quicksort.py:66), Var(k, quicksort.py:76)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,475 numba.core.ssa DEBUG on stmt: j = i -13:52:45,475 numba.core.ssa DEBUG first assign: j -13:52:45,475 numba.core.ssa DEBUG replaced with: j = i -13:52:45,475 numba.core.ssa DEBUG on stmt: $134compare_op.13 = j > low -13:52:45,475 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,475 numba.core.ssa DEBUG on stmt: $140pred = call bool140($134compare_op.13, func=bool140, args=(Var($134compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,475 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 316 -13:52:45,475 numba.core.ssa DEBUG ==== SSA block rewrite pass on 142 -13:52:45,475 numba.core.ssa DEBUG Running -13:52:45,475 numba.core.ssa DEBUG on stmt: $144load_deref.2 = freevar(LT: ) -13:52:45,475 numba.core.ssa DEBUG on stmt: $150load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,475 numba.core.ssa DEBUG on stmt: $const158.9 = const(int, 1) -13:52:45,475 numba.core.ssa DEBUG on stmt: $binop_sub160.10 = j - $const158.9 -13:52:45,475 numba.core.ssa DEBUG on stmt: $164binary_subscr.11 = getitem(value=R, index=$binop_sub160.10, fn=) -13:52:45,475 numba.core.ssa DEBUG on stmt: $178call.12 = call $150load_deref.5(A, $164binary_subscr.11, func=$150load_deref.5, args=[Var(A, quicksort.py:66), Var($164binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,475 numba.core.ssa DEBUG on stmt: $192call.13 = call $144load_deref.2(v, $178call.12, func=$144load_deref.2, args=[Var(v, quicksort.py:77), Var($178call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,475 numba.core.ssa DEBUG on stmt: bool202 = global(bool: ) -13:52:45,475 numba.core.ssa DEBUG on stmt: $202pred = call bool202($192call.13, func=bool202, args=(Var($192call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,475 numba.core.ssa DEBUG on stmt: branch $202pred, 204, 316 -13:52:45,475 numba.core.ssa DEBUG ==== SSA block rewrite pass on 204 -13:52:45,475 numba.core.ssa DEBUG Running -13:52:45,475 numba.core.ssa DEBUG on stmt: $const208.3 = const(int, 1) -13:52:45,475 numba.core.ssa DEBUG on stmt: $binop_sub210.4 = j - $const208.3 -13:52:45,475 numba.core.ssa DEBUG on stmt: $214binary_subscr.5 = getitem(value=R, index=$binop_sub210.4, fn=) -13:52:45,475 numba.core.ssa DEBUG on stmt: R[j] = $214binary_subscr.5 -13:52:45,475 numba.core.ssa DEBUG on stmt: $const234.9 = const(int, 1) -13:52:45,475 numba.core.ssa DEBUG on stmt: $binop_isub236.10 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const234.9, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,475 numba.core.ssa DEBUG on stmt: j = $binop_isub236.10 -13:52:45,475 numba.core.ssa DEBUG replaced with: j.1 = $binop_isub236.10 -13:52:45,475 numba.core.ssa DEBUG on stmt: $246compare_op.13 = j > low -13:52:45,475 numba.core.ssa DEBUG on stmt: bool252 = global(bool: ) -13:52:45,475 numba.core.ssa DEBUG on stmt: $252pred = call bool252($246compare_op.13, func=bool252, args=(Var($246compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,476 numba.core.ssa DEBUG on stmt: branch $252pred, 254, 316 -13:52:45,476 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:45,476 numba.core.ssa DEBUG Running -13:52:45,476 numba.core.ssa DEBUG on stmt: $256load_deref.2 = freevar(LT: ) -13:52:45,476 numba.core.ssa DEBUG on stmt: $262load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,476 numba.core.ssa DEBUG on stmt: $const270.9 = const(int, 1) -13:52:45,476 numba.core.ssa DEBUG on stmt: $binop_sub272.10 = j - $const270.9 -13:52:45,476 numba.core.ssa DEBUG on stmt: $276binary_subscr.11 = getitem(value=R, index=$binop_sub272.10, fn=) -13:52:45,476 numba.core.ssa DEBUG on stmt: $290call.12 = call $262load_deref.5(A, $276binary_subscr.11, func=$262load_deref.5, args=[Var(A, quicksort.py:66), Var($276binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,476 numba.core.ssa DEBUG on stmt: $304call.13 = call $256load_deref.2(v, $290call.12, func=$256load_deref.2, args=[Var(v, quicksort.py:77), Var($290call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,476 numba.core.ssa DEBUG on stmt: bool314 = global(bool: ) -13:52:45,476 numba.core.ssa DEBUG on stmt: $314pred = call bool314($304call.13, func=bool314, args=(Var($304call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,476 numba.core.ssa DEBUG on stmt: branch $314pred, 204, 316 -13:52:45,476 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:45,476 numba.core.ssa DEBUG Running -13:52:45,476 numba.core.ssa DEBUG on stmt: R[j] = k -13:52:45,476 numba.core.ssa DEBUG on stmt: jump 82 -13:52:45,476 numba.core.ssa DEBUG ==== SSA block rewrite pass on 328 -13:52:45,476 numba.core.ssa DEBUG Running -13:52:45,476 numba.core.ssa DEBUG on stmt: $const328.0 = const(NoneType, None) -13:52:45,476 numba.core.ssa DEBUG on stmt: $330return_value.1 = cast(value=$const328.0) -13:52:45,476 numba.core.ssa DEBUG on stmt: return $330return_value.1 -13:52:45,476 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {84: [], - 204: []}) -13:52:45,476 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:45,476 numba.core.ssa DEBUG Running -13:52:45,476 numba.core.ssa DEBUG on stmt: A = arg(0, name=A) -13:52:45,476 numba.core.ssa DEBUG on stmt: R = arg(1, name=R) -13:52:45,476 numba.core.ssa DEBUG on stmt: low = arg(2, name=low) -13:52:45,476 numba.core.ssa DEBUG on stmt: high = arg(3, name=high) -13:52:45,476 numba.core.ssa DEBUG on stmt: $const8.1 = const(int, 0) -13:52:45,476 numba.core.ssa DEBUG on stmt: $10compare_op.2 = low >= $const8.1 -13:52:45,476 numba.core.ssa DEBUG on stmt: bool16 = global(bool: ) -13:52:45,476 numba.core.ssa DEBUG on stmt: $16pred = call bool16($10compare_op.2, func=bool16, args=(Var($10compare_op.2, quicksort.py:71),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,477 numba.core.ssa DEBUG on stmt: branch $16pred, 22, 18 -13:52:45,477 numba.core.ssa DEBUG ==== SSA block rewrite pass on 18 -13:52:45,477 numba.core.ssa DEBUG Running -13:52:45,477 numba.core.ssa DEBUG on stmt: $assertion_error18.0 = global(AssertionError: ) -13:52:45,477 numba.core.ssa DEBUG on stmt: raise -13:52:45,477 numba.core.ssa DEBUG ==== SSA block rewrite pass on 22 -13:52:45,477 numba.core.ssa DEBUG Running -13:52:45,477 numba.core.ssa DEBUG on stmt: $26compare_op.2 = high <= low -13:52:45,477 numba.core.ssa DEBUG on stmt: bool32 = global(bool: ) -13:52:45,477 numba.core.ssa DEBUG on stmt: $32pred = call bool32($26compare_op.2, func=bool32, args=(Var($26compare_op.2, quicksort.py:72),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,477 numba.core.ssa DEBUG on stmt: branch $32pred, 34, 38 -13:52:45,477 numba.core.ssa DEBUG ==== SSA block rewrite pass on 34 -13:52:45,477 numba.core.ssa DEBUG Running -13:52:45,477 numba.core.ssa DEBUG on stmt: $const34.0 = const(NoneType, None) -13:52:45,477 numba.core.ssa DEBUG on stmt: $36return_value.1 = cast(value=$const34.0) -13:52:45,477 numba.core.ssa DEBUG on stmt: return $36return_value.1 -13:52:45,477 numba.core.ssa DEBUG ==== SSA block rewrite pass on 38 -13:52:45,477 numba.core.ssa DEBUG Running -13:52:45,477 numba.core.ssa DEBUG on stmt: $38load_global.0 = global(range: ) -13:52:45,477 numba.core.ssa DEBUG on stmt: $const52.3 = const(int, 1) -13:52:45,477 numba.core.ssa DEBUG on stmt: $binop_add54.4 = low + $const52.3 -13:52:45,477 numba.core.ssa DEBUG on stmt: $const60.6 = const(int, 1) -13:52:45,477 numba.core.ssa DEBUG on stmt: $binop_add62.7 = high + $const60.6 -13:52:45,477 numba.core.ssa DEBUG on stmt: $70call.8 = call $38load_global.0($binop_add54.4, $binop_add62.7, func=$38load_global.0, args=[Var($binop_add54.4, quicksort.py:75), Var($binop_add62.7, quicksort.py:75)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,477 numba.core.ssa DEBUG on stmt: $80get_iter.9 = getiter(value=$70call.8) -13:52:45,477 numba.core.ssa DEBUG on stmt: $phi82.0 = $80get_iter.9 -13:52:45,477 numba.core.ssa DEBUG on stmt: jump 82 -13:52:45,477 numba.core.ssa DEBUG ==== SSA block rewrite pass on 82 -13:52:45,477 numba.core.ssa DEBUG Running -13:52:45,477 numba.core.ssa DEBUG on stmt: $82for_iter.1 = iternext(value=$phi82.0) -13:52:45,477 numba.core.ssa DEBUG on stmt: $82for_iter.2 = pair_first(value=$82for_iter.1) -13:52:45,477 numba.core.ssa DEBUG on stmt: $82for_iter.3 = pair_second(value=$82for_iter.1) -13:52:45,477 numba.core.ssa DEBUG on stmt: $phi84.1 = $82for_iter.2 -13:52:45,478 numba.core.ssa DEBUG on stmt: branch $82for_iter.3, 84, 328 -13:52:45,478 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:45,478 numba.core.ssa DEBUG Running -13:52:45,478 numba.core.ssa DEBUG on stmt: i = $phi84.1 -13:52:45,478 numba.core.ssa DEBUG on stmt: k = getitem(value=R, index=i, fn=) -13:52:45,478 numba.core.ssa DEBUG on stmt: $104load_deref.6 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,478 numba.core.ssa DEBUG on stmt: v = call $104load_deref.6(A, k, func=$104load_deref.6, args=[Var(A, quicksort.py:66), Var(k, quicksort.py:76)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,478 numba.core.ssa DEBUG on stmt: j = i -13:52:45,478 numba.core.ssa DEBUG on stmt: $134compare_op.13 = j > low -13:52:45,478 numba.core.ssa DEBUG find_def var='j' stmt=$134compare_op.13 = j > low -13:52:45,478 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:45,478 numba.core.ssa DEBUG on stmt: $140pred = call bool140($134compare_op.13, func=bool140, args=(Var($134compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,478 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 316 -13:52:45,478 numba.core.ssa DEBUG ==== SSA block rewrite pass on 142 -13:52:45,478 numba.core.ssa DEBUG Running -13:52:45,478 numba.core.ssa DEBUG on stmt: $144load_deref.2 = freevar(LT: ) -13:52:45,478 numba.core.ssa DEBUG on stmt: $150load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,478 numba.core.ssa DEBUG on stmt: $const158.9 = const(int, 1) -13:52:45,478 numba.core.ssa DEBUG on stmt: $binop_sub160.10 = j - $const158.9 -13:52:45,478 numba.core.ssa DEBUG find_def var='j' stmt=$binop_sub160.10 = j - $const158.9 -13:52:45,478 numba.core.ssa DEBUG find_def_from_top label 142 -13:52:45,478 numba.core.ssa DEBUG idom 84 from label 142 -13:52:45,478 numba.core.ssa DEBUG find_def_from_bottom label 84 -13:52:45,478 numba.core.ssa DEBUG on stmt: $164binary_subscr.11 = getitem(value=R, index=$binop_sub160.10, fn=) -13:52:45,478 numba.core.ssa DEBUG on stmt: $178call.12 = call $150load_deref.5(A, $164binary_subscr.11, func=$150load_deref.5, args=[Var(A, quicksort.py:66), Var($164binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,478 numba.core.ssa DEBUG on stmt: $192call.13 = call $144load_deref.2(v, $178call.12, func=$144load_deref.2, args=[Var(v, quicksort.py:77), Var($178call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,478 numba.core.ssa DEBUG on stmt: bool202 = global(bool: ) -13:52:45,478 numba.core.ssa DEBUG on stmt: $202pred = call bool202($192call.13, func=bool202, args=(Var($192call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,478 numba.core.ssa DEBUG on stmt: branch $202pred, 204, 316 -13:52:45,478 numba.core.ssa DEBUG ==== SSA block rewrite pass on 204 -13:52:45,478 numba.core.ssa DEBUG Running -13:52:45,479 numba.core.ssa DEBUG on stmt: $const208.3 = const(int, 1) -13:52:45,479 numba.core.ssa DEBUG on stmt: $binop_sub210.4 = j - $const208.3 -13:52:45,479 numba.core.ssa DEBUG find_def var='j' stmt=$binop_sub210.4 = j - $const208.3 -13:52:45,479 numba.core.ssa DEBUG find_def_from_top label 204 -13:52:45,479 numba.core.ssa DEBUG insert phi node j.2 = phi(incoming_values=[], incoming_blocks=[]) at 204 -13:52:45,479 numba.core.ssa DEBUG find_def_from_bottom label 142 -13:52:45,479 numba.core.ssa DEBUG find_def_from_top label 142 -13:52:45,479 numba.core.ssa DEBUG idom 84 from label 142 -13:52:45,479 numba.core.ssa DEBUG find_def_from_bottom label 84 -13:52:45,479 numba.core.ssa DEBUG incoming_def j = i -13:52:45,479 numba.core.ssa DEBUG find_def_from_bottom label 254 -13:52:45,479 numba.core.ssa DEBUG find_def_from_top label 254 -13:52:45,479 numba.core.ssa DEBUG idom 204 from label 254 -13:52:45,479 numba.core.ssa DEBUG find_def_from_bottom label 204 -13:52:45,479 numba.core.ssa DEBUG incoming_def j.1 = $binop_isub236.10 -13:52:45,479 numba.core.ssa DEBUG replaced with: $binop_sub210.4 = j.2 - $const208.3 -13:52:45,479 numba.core.ssa DEBUG on stmt: $214binary_subscr.5 = getitem(value=R, index=$binop_sub210.4, fn=) -13:52:45,479 numba.core.ssa DEBUG on stmt: R[j] = $214binary_subscr.5 -13:52:45,479 numba.core.ssa DEBUG find_def var='j' stmt=R[j] = $214binary_subscr.5 -13:52:45,479 numba.core.ssa DEBUG replaced with: R[j.2] = $214binary_subscr.5 -13:52:45,479 numba.core.ssa DEBUG on stmt: $const234.9 = const(int, 1) -13:52:45,479 numba.core.ssa DEBUG on stmt: $binop_isub236.10 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const234.9, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,479 numba.core.ssa DEBUG find_def var='j' stmt=$binop_isub236.10 = inplace_binop(fn=, immutable_fn=, lhs=j, rhs=$const234.9, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,479 numba.core.ssa DEBUG replaced with: $binop_isub236.10 = inplace_binop(fn=, immutable_fn=, lhs=j.2, rhs=$const234.9, static_lhs=Undefined, static_rhs=Undefined) -13:52:45,479 numba.core.ssa DEBUG on stmt: j.1 = $binop_isub236.10 -13:52:45,479 numba.core.ssa DEBUG on stmt: $246compare_op.13 = j > low -13:52:45,479 numba.core.ssa DEBUG find_def var='j' stmt=$246compare_op.13 = j > low -13:52:45,479 numba.core.ssa DEBUG replaced with: $246compare_op.13 = j.1 > low -13:52:45,479 numba.core.ssa DEBUG on stmt: bool252 = global(bool: ) -13:52:45,479 numba.core.ssa DEBUG on stmt: $252pred = call bool252($246compare_op.13, func=bool252, args=(Var($246compare_op.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,479 numba.core.ssa DEBUG on stmt: branch $252pred, 254, 316 -13:52:45,480 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:45,480 numba.core.ssa DEBUG Running -13:52:45,480 numba.core.ssa DEBUG on stmt: $256load_deref.2 = freevar(LT: ) -13:52:45,480 numba.core.ssa DEBUG on stmt: $262load_deref.5 = freevar(GET: .GET at 0x000001C3DB4DF380>) -13:52:45,480 numba.core.ssa DEBUG on stmt: $const270.9 = const(int, 1) -13:52:45,480 numba.core.ssa DEBUG on stmt: $binop_sub272.10 = j - $const270.9 -13:52:45,480 numba.core.ssa DEBUG find_def var='j' stmt=$binop_sub272.10 = j - $const270.9 -13:52:45,480 numba.core.ssa DEBUG find_def_from_top label 254 -13:52:45,480 numba.core.ssa DEBUG idom 204 from label 254 -13:52:45,480 numba.core.ssa DEBUG find_def_from_bottom label 204 -13:52:45,480 numba.core.ssa DEBUG replaced with: $binop_sub272.10 = j.1 - $const270.9 -13:52:45,480 numba.core.ssa DEBUG on stmt: $276binary_subscr.11 = getitem(value=R, index=$binop_sub272.10, fn=) -13:52:45,480 numba.core.ssa DEBUG on stmt: $290call.12 = call $262load_deref.5(A, $276binary_subscr.11, func=$262load_deref.5, args=[Var(A, quicksort.py:66), Var($276binary_subscr.11, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,480 numba.core.ssa DEBUG on stmt: $304call.13 = call $256load_deref.2(v, $290call.12, func=$256load_deref.2, args=[Var(v, quicksort.py:77), Var($290call.12, quicksort.py:80)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,480 numba.core.ssa DEBUG on stmt: bool314 = global(bool: ) -13:52:45,480 numba.core.ssa DEBUG on stmt: $314pred = call bool314($304call.13, func=bool314, args=(Var($304call.13, quicksort.py:80),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:45,480 numba.core.ssa DEBUG on stmt: branch $314pred, 204, 316 -13:52:45,480 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:45,480 numba.core.ssa DEBUG Running -13:52:45,480 numba.core.ssa DEBUG on stmt: R[j] = k -13:52:45,480 numba.core.ssa DEBUG find_def var='j' stmt=R[j] = k -13:52:45,480 numba.core.ssa DEBUG find_def_from_top label 316 -13:52:45,480 numba.core.ssa DEBUG insert phi node j.3 = phi(incoming_values=[], incoming_blocks=[]) at 316 -13:52:45,480 numba.core.ssa DEBUG find_def_from_bottom label 204 -13:52:45,480 numba.core.ssa DEBUG incoming_def j.1 = $binop_isub236.10 -13:52:45,480 numba.core.ssa DEBUG find_def_from_bottom label 84 -13:52:45,480 numba.core.ssa DEBUG incoming_def j = i -13:52:45,480 numba.core.ssa DEBUG find_def_from_bottom label 142 -13:52:45,480 numba.core.ssa DEBUG find_def_from_top label 142 -13:52:45,480 numba.core.ssa DEBUG idom 84 from label 142 -13:52:45,480 numba.core.ssa DEBUG find_def_from_bottom label 84 -13:52:45,480 numba.core.ssa DEBUG incoming_def j = i -13:52:45,480 numba.core.ssa DEBUG find_def_from_bottom label 254 -13:52:45,481 numba.core.ssa DEBUG find_def_from_top label 254 -13:52:45,481 numba.core.ssa DEBUG idom 204 from label 254 -13:52:45,481 numba.core.ssa DEBUG find_def_from_bottom label 204 -13:52:45,481 numba.core.ssa DEBUG incoming_def j.1 = $binop_isub236.10 -13:52:45,481 numba.core.ssa DEBUG replaced with: R[j.3] = k -13:52:45,481 numba.core.ssa DEBUG on stmt: jump 82 -13:52:45,481 numba.core.ssa DEBUG ==== SSA block rewrite pass on 328 -13:52:45,481 numba.core.ssa DEBUG Running -13:52:45,481 numba.core.ssa DEBUG on stmt: $const328.0 = const(NoneType, None) -13:52:45,481 numba.core.ssa DEBUG on stmt: $330return_value.1 = cast(value=$const328.0) -13:52:45,481 numba.core.ssa DEBUG on stmt: return $330return_value.1 -13:52:49,272 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=143) - 2 RESUME(arg=0, lineno=143) - 4 LOAD_GLOBAL(arg=1, lineno=191) - 16 LOAD_ATTR(arg=1, lineno=191) - 26 LOAD_FAST(arg=1, lineno=191) - 28 PRECALL(arg=1, lineno=191) - 32 CALL(arg=1, lineno=191) - 42 LOAD_FAST(arg=4, lineno=191) - 44 BINARY_OP(arg=5, lineno=191) - 48 STORE_FAST(arg=5, lineno=191) - 50 LOAD_GLOBAL(arg=1, lineno=192) - 62 LOAD_ATTR(arg=2, lineno=192) - 72 LOAD_FAST(arg=0, lineno=192) - 74 LOAD_ATTR(arg=3, lineno=192) - 84 LOAD_CONST(arg=1, lineno=192) - 86 BINARY_SUBSCR(arg=None, lineno=192) - 96 LOAD_GLOBAL(arg=0, lineno=192) - 108 LOAD_ATTR(arg=4, lineno=192) - 118 KW_NAMES(arg=2, lineno=192) - 120 PRECALL(arg=2, lineno=192) - 124 CALL(arg=2, lineno=192) - 134 STORE_FAST(arg=6, lineno=192) - 136 LOAD_GLOBAL(arg=1, lineno=193) - 148 LOAD_ATTR(arg=2, lineno=193) - 158 LOAD_FAST(arg=0, lineno=193) - 160 LOAD_ATTR(arg=3, lineno=193) - 170 LOAD_CONST(arg=1, lineno=193) - 172 BINARY_SUBSCR(arg=None, lineno=193) - 182 LOAD_GLOBAL(arg=0, lineno=193) - 194 LOAD_ATTR(arg=4, lineno=193) - 204 KW_NAMES(arg=2, lineno=193) - 206 PRECALL(arg=2, lineno=193) - 210 CALL(arg=2, lineno=193) - 220 STORE_FAST(arg=7, lineno=193) - 222 LOAD_GLOBAL(arg=1, lineno=195) - 234 LOAD_ATTR(arg=5, lineno=195) - 244 LOAD_FAST(arg=0, lineno=195) - 246 PRECALL(arg=1, lineno=195) - 250 CALL(arg=1, lineno=195) - 260 STORE_FAST(arg=8, lineno=195) - 262 LOAD_GLOBAL(arg=13, lineno=197) - 274 LOAD_FAST(arg=0, lineno=197) - 276 LOAD_ATTR(arg=3, lineno=197) - 286 LOAD_CONST(arg=1, lineno=197) - 288 BINARY_SUBSCR(arg=None, lineno=197) - 298 PRECALL(arg=1, lineno=197) - 302 CALL(arg=1, lineno=197) - 312 GET_ITER(arg=None, lineno=197) -> 314 NOP(arg=1, lineno=197) - 316 FOR_ITER(arg=504, lineno=197) - 318 STORE_FAST(arg=9, lineno=197) - 320 LOAD_CONST(arg=3, lineno=198) - 322 STORE_FAST(arg=10, lineno=198) - 324 LOAD_GLOBAL(arg=14, lineno=199) - 336 STORE_FAST(arg=11, lineno=199) - 338 LOAD_CONST(arg=4, lineno=200) - 340 STORE_FAST(arg=12, lineno=200) - 342 LOAD_FAST(arg=0, lineno=203) - 344 LOAD_FAST(arg=9, lineno=203) - 346 BINARY_SUBSCR(arg=None, lineno=203) - 356 STORE_FAST(arg=13, lineno=203) - 358 LOAD_FAST(arg=13, lineno=204) - 360 LOAD_FAST(arg=13, lineno=204) - 362 LOAD_CONST(arg=3, lineno=204) - 364 COMPARE_OP(arg=4, lineno=204) - 370 BINARY_SUBSCR(arg=None, lineno=204) - 380 STORE_FAST(arg=14, lineno=204) - 382 LOAD_FAST(arg=14, lineno=205) - 384 LOAD_ATTR(arg=3, lineno=205) - 394 LOAD_CONST(arg=1, lineno=205) - 396 BINARY_SUBSCR(arg=None, lineno=205) - 406 LOAD_FAST(arg=3, lineno=205) - 408 COMPARE_OP(arg=5, lineno=205) - 414 POP_JUMP_FORWARD_IF_FALSE(arg=122, lineno=205) - 416 LOAD_GLOBAL(arg=17, lineno=206) - 428 LOAD_GLOBAL(arg=1, lineno=206) - 440 LOAD_ATTR(arg=9, lineno=206) - 450 LOAD_FAST(arg=3, lineno=206) - 452 PRECALL(arg=1, lineno=206) - 456 CALL(arg=1, lineno=206) - 466 PRECALL(arg=1, lineno=206) - 470 CALL(arg=1, lineno=206) - 480 STORE_FAST(arg=15, lineno=206) - 482 LOAD_FAST(arg=3, lineno=207) - 484 LOAD_FAST(arg=15, lineno=207) - 486 BINARY_OP(arg=10, lineno=207) - 490 STORE_FAST(arg=16, lineno=207) - 492 LOAD_FAST(arg=15, lineno=208) - 494 LOAD_CONST(arg=1, lineno=208) - 496 COMPARE_OP(arg=4, lineno=208) - 502 POP_JUMP_FORWARD_IF_FALSE(arg=63, lineno=208) - 504 LOAD_FAST(arg=14, lineno=209) - 506 LOAD_FAST(arg=15, lineno=209) - 508 LOAD_CONST(arg=5, lineno=209) - 510 BINARY_OP(arg=10, lineno=209) - 514 BINARY_SUBSCR(arg=None, lineno=209) - 524 LOAD_FAST(arg=6, lineno=209) - 526 LOAD_FAST(arg=9, lineno=209) - 528 STORE_SUBSCR(arg=None, lineno=209) - 532 LOAD_FAST(arg=16, lineno=210) - 534 LOAD_GLOBAL(arg=20, lineno=210) - 546 COMPARE_OP(arg=4, lineno=210) - 552 POP_JUMP_FORWARD_IF_FALSE(arg=37, lineno=210) - 554 LOAD_FAST(arg=6, lineno=211) - 556 LOAD_FAST(arg=9, lineno=211) - 558 COPY(arg=2, lineno=211) - 560 COPY(arg=2, lineno=211) - 562 BINARY_SUBSCR(arg=None, lineno=211) - 572 LOAD_FAST(arg=16, lineno=211) - 574 LOAD_FAST(arg=14, lineno=212) - 576 LOAD_FAST(arg=15, lineno=212) - 578 BINARY_SUBSCR(arg=None, lineno=212) - 588 LOAD_FAST(arg=14, lineno=212) - 590 LOAD_FAST(arg=15, lineno=212) - 592 LOAD_CONST(arg=5, lineno=212) - 594 BINARY_OP(arg=10, lineno=212) - 598 BINARY_SUBSCR(arg=None, lineno=212) - 608 BINARY_OP(arg=10, lineno=212) - 612 BINARY_OP(arg=5, lineno=211) - 616 BINARY_OP(arg=13, lineno=211) - 620 SWAP(arg=3, lineno=211) - 622 SWAP(arg=2, lineno=211) - 624 STORE_SUBSCR(arg=None, lineno=211) -> 628 JUMP_FORWARD(arg=55, lineno=211) -> 630 LOAD_FAST(arg=16, lineno=215) - 632 LOAD_FAST(arg=14, lineno=215) - 634 LOAD_CONST(arg=1, lineno=215) - 636 BINARY_SUBSCR(arg=None, lineno=215) - 646 BINARY_OP(arg=5, lineno=215) - 650 LOAD_FAST(arg=6, lineno=215) - 652 LOAD_FAST(arg=9, lineno=215) - 654 STORE_SUBSCR(arg=None, lineno=215) - 658 JUMP_FORWARD(arg=40, lineno=215) -> 660 LOAD_FAST(arg=14, lineno=216) - 662 LOAD_ATTR(arg=3, lineno=216) - 672 LOAD_CONST(arg=1, lineno=216) - 674 BINARY_SUBSCR(arg=None, lineno=216) - 684 LOAD_CONST(arg=1, lineno=216) - 686 COMPARE_OP(arg=4, lineno=216) - 692 POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=216) - 694 LOAD_GLOBAL(arg=1, lineno=217) - 706 LOAD_ATTR(arg=11, lineno=217) - 716 LOAD_FAST(arg=14, lineno=217) - 718 PRECALL(arg=1, lineno=217) - 722 CALL(arg=1, lineno=217) - 732 LOAD_FAST(arg=6, lineno=217) - 734 LOAD_FAST(arg=9, lineno=217) - 736 STORE_SUBSCR(arg=None, lineno=217) -> 740 LOAD_GLOBAL(arg=13, lineno=219) - 752 LOAD_FAST(arg=2, lineno=219) - 754 PRECALL(arg=1, lineno=219) - 758 CALL(arg=1, lineno=219) - 768 GET_ITER(arg=None, lineno=219) -> 770 FOR_ITER(arg=170, lineno=219) - 772 STORE_FAST(arg=17, lineno=219) - 774 LOAD_CONST(arg=3, lineno=221) - 776 STORE_FAST(arg=18, lineno=221) - 778 LOAD_GLOBAL(arg=13, lineno=222) - 790 LOAD_CONST(arg=5, lineno=222) - 792 LOAD_FAST(arg=0, lineno=222) - 794 LOAD_ATTR(arg=3, lineno=222) - 804 LOAD_CONST(arg=5, lineno=222) - 806 BINARY_SUBSCR(arg=None, lineno=222) - 816 PRECALL(arg=2, lineno=222) - 820 CALL(arg=2, lineno=222) - 830 GET_ITER(arg=None, lineno=222) -> 832 FOR_ITER(arg=60, lineno=222) - 834 STORE_FAST(arg=19, lineno=222) - 836 LOAD_FAST(arg=0, lineno=223) - 838 LOAD_FAST(arg=9, lineno=223) - 840 LOAD_FAST(arg=19, lineno=223) - 842 BUILD_TUPLE(arg=2, lineno=223) - 844 BINARY_SUBSCR(arg=None, lineno=223) - 854 LOAD_FAST(arg=6, lineno=223) - 856 LOAD_FAST(arg=9, lineno=223) - 858 BINARY_SUBSCR(arg=None, lineno=223) - 868 BINARY_OP(arg=10, lineno=223) - 872 STORE_FAST(arg=20, lineno=223) - 874 LOAD_FAST(arg=20, lineno=224) - 876 LOAD_CONST(arg=1, lineno=224) - 878 COMPARE_OP(arg=4, lineno=224) - 884 POP_JUMP_FORWARD_IF_FALSE(arg=28, lineno=224) - 886 LOAD_FAST(arg=18, lineno=225) - 888 LOAD_GLOBAL(arg=1, lineno=225) - 900 LOAD_ATTR(arg=12, lineno=225) - 910 LOAD_FAST(arg=20, lineno=225) - 912 LOAD_FAST(arg=12, lineno=225) - 914 BINARY_OP(arg=11, lineno=225) - 918 UNARY_NEGATIVE(arg=None, lineno=225) - 920 PRECALL(arg=1, lineno=225) - 924 CALL(arg=1, lineno=225) - 934 BINARY_OP(arg=13, lineno=225) - 938 STORE_FAST(arg=18, lineno=225) - 940 JUMP_BACKWARD(arg=55, lineno=225) -> 942 LOAD_FAST(arg=18, lineno=227) - 944 LOAD_CONST(arg=4, lineno=227) - 946 BINARY_OP(arg=13, lineno=227) - 950 STORE_FAST(arg=18, lineno=227) - 952 JUMP_BACKWARD(arg=61, lineno=227) -> 954 LOAD_GLOBAL(arg=1, lineno=229) - 966 LOAD_ATTR(arg=13, lineno=229) - 976 LOAD_FAST(arg=18, lineno=229) - 978 LOAD_FAST(arg=5, lineno=229) - 980 BINARY_OP(arg=10, lineno=229) - 984 PRECALL(arg=1, lineno=229) - 988 CALL(arg=1, lineno=229) - 998 LOAD_GLOBAL(arg=20, lineno=229) - 1010 COMPARE_OP(arg=0, lineno=229) - 1016 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=229) - 1018 POP_TOP(arg=None, lineno=230) - 1020 JUMP_FORWARD(arg=45, lineno=230) -> 1022 LOAD_FAST(arg=18, lineno=232) - 1024 LOAD_FAST(arg=5, lineno=232) - 1026 COMPARE_OP(arg=4, lineno=232) - 1032 POP_JUMP_FORWARD_IF_FALSE(arg=11, lineno=232) - 1034 LOAD_FAST(arg=12, lineno=233) - 1036 STORE_FAST(arg=11, lineno=233) - 1038 LOAD_FAST(arg=10, lineno=234) - 1040 LOAD_FAST(arg=11, lineno=234) - 1042 BINARY_OP(arg=0, lineno=234) - 1046 LOAD_CONST(arg=6, lineno=234) - 1048 BINARY_OP(arg=11, lineno=234) - 1052 STORE_FAST(arg=12, lineno=234) - 1054 JUMP_BACKWARD(arg=143, lineno=234) -> 1056 LOAD_FAST(arg=12, lineno=236) - 1058 STORE_FAST(arg=10, lineno=236) - 1060 LOAD_FAST(arg=11, lineno=237) - 1062 LOAD_GLOBAL(arg=14, lineno=237) - 1074 COMPARE_OP(arg=2, lineno=237) - 1080 POP_JUMP_FORWARD_IF_FALSE(arg=6, lineno=237) - 1082 LOAD_FAST(arg=12, lineno=238) - 1084 LOAD_CONST(arg=7, lineno=238) - 1086 BINARY_OP(arg=18, lineno=238) - 1090 STORE_FAST(arg=12, lineno=238) - 1092 JUMP_BACKWARD(arg=162, lineno=238) -> 1094 LOAD_FAST(arg=10, lineno=240) - 1096 LOAD_FAST(arg=11, lineno=240) - 1098 BINARY_OP(arg=0, lineno=240) - 1102 LOAD_CONST(arg=6, lineno=240) - 1104 BINARY_OP(arg=11, lineno=240) - 1108 STORE_FAST(arg=12, lineno=240) - 1110 JUMP_BACKWARD(arg=171, lineno=240) -> 1112 LOAD_FAST(arg=12, lineno=242) - 1114 LOAD_FAST(arg=7, lineno=242) - 1116 LOAD_FAST(arg=9, lineno=242) - 1118 STORE_SUBSCR(arg=None, lineno=242) - 1122 LOAD_FAST(arg=6, lineno=245) - 1124 LOAD_FAST(arg=9, lineno=245) - 1126 BINARY_SUBSCR(arg=None, lineno=245) - 1136 LOAD_CONST(arg=3, lineno=245) - 1138 COMPARE_OP(arg=4, lineno=245) - 1144 POP_JUMP_FORWARD_IF_FALSE(arg=55, lineno=245) - 1146 LOAD_GLOBAL(arg=1, lineno=246) - 1158 LOAD_ATTR(arg=5, lineno=246) - 1168 LOAD_FAST(arg=13, lineno=246) - 1170 PRECALL(arg=1, lineno=246) - 1174 CALL(arg=1, lineno=246) - 1184 STORE_FAST(arg=21, lineno=246) - 1186 LOAD_FAST(arg=7, lineno=247) - 1188 LOAD_FAST(arg=9, lineno=247) - 1190 BINARY_SUBSCR(arg=None, lineno=247) - 1200 LOAD_GLOBAL(arg=28, lineno=247) - 1212 LOAD_FAST(arg=21, lineno=247) - 1214 BINARY_OP(arg=5, lineno=247) - 1218 COMPARE_OP(arg=0, lineno=247) - 1224 POP_JUMP_FORWARD_IF_FALSE(arg=13, lineno=247) - 1226 LOAD_GLOBAL(arg=28, lineno=248) - 1238 LOAD_FAST(arg=21, lineno=248) - 1240 BINARY_OP(arg=5, lineno=248) - 1244 LOAD_FAST(arg=7, lineno=248) - 1246 LOAD_FAST(arg=9, lineno=248) - 1248 STORE_SUBSCR(arg=None, lineno=248) -> 1252 NOP(arg=1, lineno=248) - 1254 JUMP_BACKWARD(arg=471, lineno=248) -> 1256 LOAD_FAST(arg=7, lineno=250) - 1258 LOAD_FAST(arg=9, lineno=250) - 1260 BINARY_SUBSCR(arg=None, lineno=250) - 1270 LOAD_GLOBAL(arg=28, lineno=250) - 1282 LOAD_FAST(arg=8, lineno=250) - 1284 BINARY_OP(arg=5, lineno=250) - 1288 COMPARE_OP(arg=0, lineno=250) - 1294 POP_JUMP_FORWARD_IF_FALSE(arg=13, lineno=250) - 1296 LOAD_GLOBAL(arg=28, lineno=251) - 1308 LOAD_FAST(arg=8, lineno=251) - 1310 BINARY_OP(arg=5, lineno=251) - 1314 LOAD_FAST(arg=7, lineno=251) - 1316 LOAD_FAST(arg=9, lineno=251) - 1318 STORE_SUBSCR(arg=None, lineno=251) -> 1322 NOP(arg=1, lineno=251) - 1324 JUMP_BACKWARD(arg=506, lineno=251) -> 1326 LOAD_FAST(arg=7, lineno=253) - 1328 LOAD_FAST(arg=6, lineno=253) - 1330 BUILD_TUPLE(arg=2, lineno=253) - 1332 RETURN_VALUE(arg=None, lineno=253) -13:52:49,272 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,272 numba.core.byteflow DEBUG stack: [] -13:52:49,273 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=143) -13:52:49,273 numba.core.byteflow DEBUG stack [] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=143) -13:52:49,273 numba.core.byteflow DEBUG stack [] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack [] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_ATTR(arg=1, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=1, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=28, inst=PRECALL(arg=1, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$k26.3'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=32, inst=CALL(arg=1, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$k26.3'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=42, inst=LOAD_FAST(arg=4, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack ['$32call.4'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=44, inst=BINARY_OP(arg=5, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack ['$32call.4', '$bandwidth42.5'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=48, inst=STORE_FAST(arg=5, lineno=191) -13:52:49,273 numba.core.byteflow DEBUG stack ['$binop_mul44.6'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_GLOBAL(arg=1, lineno=192) -13:52:49,273 numba.core.byteflow DEBUG stack [] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=62, inst=LOAD_ATTR(arg=2, lineno=192) -13:52:49,273 numba.core.byteflow DEBUG stack ['$null$50.8', '$50load_global.7'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=72, inst=LOAD_FAST(arg=0, lineno=192) -13:52:49,273 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9'] -13:52:49,273 numba.core.byteflow DEBUG dispatch pc=74, inst=LOAD_ATTR(arg=3, lineno=192) -13:52:49,273 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$distances72.10'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=84, inst=LOAD_CONST(arg=1, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$74load_attr.11'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=86, inst=BINARY_SUBSCR(arg=None, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$74load_attr.11', '$const84.12'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=96, inst=LOAD_GLOBAL(arg=0, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$86binary_subscr.13'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=108, inst=LOAD_ATTR(arg=4, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$86binary_subscr.13', '$96load_global.14'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=118, inst=KW_NAMES(arg=2, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$86binary_subscr.13', '$108load_attr.15'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=120, inst=PRECALL(arg=2, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$86binary_subscr.13', '$108load_attr.15'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=124, inst=CALL(arg=2, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$50.8', '$62load_attr.9', '$86binary_subscr.13', '$108load_attr.15'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=134, inst=STORE_FAST(arg=6, lineno=192) -13:52:49,274 numba.core.byteflow DEBUG stack ['$124call.16'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=136, inst=LOAD_GLOBAL(arg=1, lineno=193) -13:52:49,274 numba.core.byteflow DEBUG stack [] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=148, inst=LOAD_ATTR(arg=2, lineno=193) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$136.18', '$136load_global.17'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=158, inst=LOAD_FAST(arg=0, lineno=193) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=160, inst=LOAD_ATTR(arg=3, lineno=193) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$distances158.20'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=170, inst=LOAD_CONST(arg=1, lineno=193) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$160load_attr.21'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=172, inst=BINARY_SUBSCR(arg=None, lineno=193) -13:52:49,274 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$160load_attr.21', '$const170.22'] -13:52:49,274 numba.core.byteflow DEBUG dispatch pc=182, inst=LOAD_GLOBAL(arg=0, lineno=193) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$172binary_subscr.23'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=194, inst=LOAD_ATTR(arg=4, lineno=193) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$172binary_subscr.23', '$182load_global.24'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=204, inst=KW_NAMES(arg=2, lineno=193) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$172binary_subscr.23', '$194load_attr.25'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=206, inst=PRECALL(arg=2, lineno=193) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$172binary_subscr.23', '$194load_attr.25'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=210, inst=CALL(arg=2, lineno=193) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$136.18', '$148load_attr.19', '$172binary_subscr.23', '$194load_attr.25'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=220, inst=STORE_FAST(arg=7, lineno=193) -13:52:49,275 numba.core.byteflow DEBUG stack ['$210call.26'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=222, inst=LOAD_GLOBAL(arg=1, lineno=195) -13:52:49,275 numba.core.byteflow DEBUG stack [] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=234, inst=LOAD_ATTR(arg=5, lineno=195) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$222.28', '$222load_global.27'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=244, inst=LOAD_FAST(arg=0, lineno=195) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$222.28', '$234load_attr.29'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=246, inst=PRECALL(arg=1, lineno=195) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$222.28', '$234load_attr.29', '$distances244.30'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=250, inst=CALL(arg=1, lineno=195) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$222.28', '$234load_attr.29', '$distances244.30'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=260, inst=STORE_FAST(arg=8, lineno=195) -13:52:49,275 numba.core.byteflow DEBUG stack ['$250call.31'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=262, inst=LOAD_GLOBAL(arg=13, lineno=197) -13:52:49,275 numba.core.byteflow DEBUG stack [] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=274, inst=LOAD_FAST(arg=0, lineno=197) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$262.33', '$262load_global.32'] -13:52:49,275 numba.core.byteflow DEBUG dispatch pc=276, inst=LOAD_ATTR(arg=3, lineno=197) -13:52:49,275 numba.core.byteflow DEBUG stack ['$null$262.33', '$262load_global.32', '$distances274.34'] -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=286, inst=LOAD_CONST(arg=1, lineno=197) -13:52:49,276 numba.core.byteflow DEBUG stack ['$null$262.33', '$262load_global.32', '$276load_attr.35'] -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=288, inst=BINARY_SUBSCR(arg=None, lineno=197) -13:52:49,276 numba.core.byteflow DEBUG stack ['$null$262.33', '$262load_global.32', '$276load_attr.35', '$const286.36'] -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=298, inst=PRECALL(arg=1, lineno=197) -13:52:49,276 numba.core.byteflow DEBUG stack ['$null$262.33', '$262load_global.32', '$288binary_subscr.37'] -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=302, inst=CALL(arg=1, lineno=197) -13:52:49,276 numba.core.byteflow DEBUG stack ['$null$262.33', '$262load_global.32', '$288binary_subscr.37'] -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=312, inst=GET_ITER(arg=None, lineno=197) -13:52:49,276 numba.core.byteflow DEBUG stack ['$302call.38'] -13:52:49,276 numba.core.byteflow DEBUG end state. edges=[Edge(pc=314, stack=('$312get_iter.39',), blockstack=(), npush=0)] -13:52:49,276 numba.core.byteflow DEBUG pending: deque([State(pc_initial=314 nstack_initial=1)]) -13:52:49,276 numba.core.byteflow DEBUG stack: ['$phi314.0'] -13:52:49,276 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=314 nstack_initial=1) -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=314, inst=NOP(arg=1, lineno=197) -13:52:49,276 numba.core.byteflow DEBUG stack ['$phi314.0'] -13:52:49,276 numba.core.byteflow DEBUG end state. edges=[Edge(pc=316, stack=('$phi314.0',), blockstack=(), npush=0)] -13:52:49,276 numba.core.byteflow DEBUG pending: deque([State(pc_initial=316 nstack_initial=1)]) -13:52:49,276 numba.core.byteflow DEBUG stack: ['$phi316.0'] -13:52:49,276 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=316 nstack_initial=1) -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=316, inst=FOR_ITER(arg=504, lineno=197) -13:52:49,276 numba.core.byteflow DEBUG stack ['$phi316.0'] -13:52:49,276 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1326, stack=(), blockstack=(), npush=0), Edge(pc=318, stack=('$phi316.0', '$316for_iter.2'), blockstack=(), npush=0)] -13:52:49,276 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1326 nstack_initial=0), State(pc_initial=318 nstack_initial=2)]) -13:52:49,276 numba.core.byteflow DEBUG stack: [] -13:52:49,276 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1326 nstack_initial=0) -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=1326, inst=LOAD_FAST(arg=7, lineno=253) -13:52:49,276 numba.core.byteflow DEBUG stack [] -13:52:49,276 numba.core.byteflow DEBUG dispatch pc=1328, inst=LOAD_FAST(arg=6, lineno=253) -13:52:49,277 numba.core.byteflow DEBUG stack ['$result1326.0'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=1330, inst=BUILD_TUPLE(arg=2, lineno=253) -13:52:49,277 numba.core.byteflow DEBUG stack ['$result1326.0', '$rho1328.1'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=1332, inst=RETURN_VALUE(arg=None, lineno=253) -13:52:49,277 numba.core.byteflow DEBUG stack ['$1330build_tuple.2'] -13:52:49,277 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,277 numba.core.byteflow DEBUG pending: deque([State(pc_initial=318 nstack_initial=2)]) -13:52:49,277 numba.core.byteflow DEBUG stack: ['$phi318.0', '$phi318.1'] -13:52:49,277 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=318 nstack_initial=2) -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=318, inst=STORE_FAST(arg=9, lineno=197) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0', '$phi318.1'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=320, inst=LOAD_CONST(arg=3, lineno=198) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=322, inst=STORE_FAST(arg=10, lineno=198) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0', '$const320.2'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=324, inst=LOAD_GLOBAL(arg=14, lineno=199) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=336, inst=STORE_FAST(arg=11, lineno=199) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0', '$324load_global.3'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=338, inst=LOAD_CONST(arg=4, lineno=200) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=340, inst=STORE_FAST(arg=12, lineno=200) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0', '$const338.4'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=342, inst=LOAD_FAST(arg=0, lineno=203) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=344, inst=LOAD_FAST(arg=9, lineno=203) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0', '$distances342.5'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=346, inst=BINARY_SUBSCR(arg=None, lineno=203) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0', '$distances342.5', '$i344.6'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=356, inst=STORE_FAST(arg=13, lineno=203) -13:52:49,277 numba.core.byteflow DEBUG stack ['$phi318.0', '$346binary_subscr.7'] -13:52:49,277 numba.core.byteflow DEBUG dispatch pc=358, inst=LOAD_FAST(arg=13, lineno=204) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=360, inst=LOAD_FAST(arg=13, lineno=204) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$ith_distances358.8'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=362, inst=LOAD_CONST(arg=3, lineno=204) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$ith_distances358.8', '$ith_distances360.9'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=364, inst=COMPARE_OP(arg=4, lineno=204) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$ith_distances358.8', '$ith_distances360.9', '$const362.10'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=370, inst=BINARY_SUBSCR(arg=None, lineno=204) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$ith_distances358.8', '$364compare_op.11'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=380, inst=STORE_FAST(arg=14, lineno=204) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$370binary_subscr.12'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=382, inst=LOAD_FAST(arg=14, lineno=205) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=384, inst=LOAD_ATTR(arg=3, lineno=205) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$non_zero_dists382.13'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=394, inst=LOAD_CONST(arg=1, lineno=205) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$384load_attr.14'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=396, inst=BINARY_SUBSCR(arg=None, lineno=205) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$384load_attr.14', '$const394.15'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=406, inst=LOAD_FAST(arg=3, lineno=205) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$396binary_subscr.16'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=408, inst=COMPARE_OP(arg=5, lineno=205) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$396binary_subscr.16', '$local_connectivity406.17'] -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=414, inst=POP_JUMP_FORWARD_IF_FALSE(arg=122, lineno=205) -13:52:49,278 numba.core.byteflow DEBUG stack ['$phi318.0', '$408compare_op.18'] -13:52:49,278 numba.core.byteflow DEBUG end state. edges=[Edge(pc=416, stack=('$phi318.0',), blockstack=(), npush=0), Edge(pc=660, stack=('$phi318.0',), blockstack=(), npush=0)] -13:52:49,278 numba.core.byteflow DEBUG pending: deque([State(pc_initial=416 nstack_initial=1), State(pc_initial=660 nstack_initial=1)]) -13:52:49,278 numba.core.byteflow DEBUG stack: ['$phi416.0'] -13:52:49,278 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=416 nstack_initial=1) -13:52:49,278 numba.core.byteflow DEBUG dispatch pc=416, inst=LOAD_GLOBAL(arg=17, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=428, inst=LOAD_GLOBAL(arg=1, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$null$416.2', '$416load_global.1'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=440, inst=LOAD_ATTR(arg=9, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$null$416.2', '$416load_global.1', '$null$428.4', '$428load_global.3'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=450, inst=LOAD_FAST(arg=3, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$null$416.2', '$416load_global.1', '$null$428.4', '$440load_attr.5'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=452, inst=PRECALL(arg=1, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$null$416.2', '$416load_global.1', '$null$428.4', '$440load_attr.5', '$local_connectivity450.6'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=456, inst=CALL(arg=1, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$null$416.2', '$416load_global.1', '$null$428.4', '$440load_attr.5', '$local_connectivity450.6'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=466, inst=PRECALL(arg=1, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$null$416.2', '$416load_global.1', '$456call.7'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=470, inst=CALL(arg=1, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$null$416.2', '$416load_global.1', '$456call.7'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=480, inst=STORE_FAST(arg=15, lineno=206) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$470call.8'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=482, inst=LOAD_FAST(arg=3, lineno=207) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=484, inst=LOAD_FAST(arg=15, lineno=207) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$local_connectivity482.9'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=486, inst=BINARY_OP(arg=10, lineno=207) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$local_connectivity482.9', '$index484.10'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=490, inst=STORE_FAST(arg=16, lineno=207) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$binop_sub486.11'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=492, inst=LOAD_FAST(arg=15, lineno=208) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=494, inst=LOAD_CONST(arg=1, lineno=208) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$index492.12'] -13:52:49,279 numba.core.byteflow DEBUG dispatch pc=496, inst=COMPARE_OP(arg=4, lineno=208) -13:52:49,279 numba.core.byteflow DEBUG stack ['$phi416.0', '$index492.12', '$const494.13'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=502, inst=POP_JUMP_FORWARD_IF_FALSE(arg=63, lineno=208) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi416.0', '$496compare_op.14'] -13:52:49,280 numba.core.byteflow DEBUG end state. edges=[Edge(pc=504, stack=('$phi416.0',), blockstack=(), npush=0), Edge(pc=630, stack=('$phi416.0',), blockstack=(), npush=0)] -13:52:49,280 numba.core.byteflow DEBUG pending: deque([State(pc_initial=660 nstack_initial=1), State(pc_initial=504 nstack_initial=1), State(pc_initial=630 nstack_initial=1)]) -13:52:49,280 numba.core.byteflow DEBUG stack: ['$phi660.0'] -13:52:49,280 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=660 nstack_initial=1) -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=660, inst=LOAD_FAST(arg=14, lineno=216) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi660.0'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=662, inst=LOAD_ATTR(arg=3, lineno=216) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi660.0', '$non_zero_dists660.1'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=672, inst=LOAD_CONST(arg=1, lineno=216) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi660.0', '$662load_attr.2'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=674, inst=BINARY_SUBSCR(arg=None, lineno=216) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi660.0', '$662load_attr.2', '$const672.3'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=684, inst=LOAD_CONST(arg=1, lineno=216) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi660.0', '$674binary_subscr.4'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=686, inst=COMPARE_OP(arg=4, lineno=216) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi660.0', '$674binary_subscr.4', '$const684.5'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=692, inst=POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=216) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi660.0', '$686compare_op.6'] -13:52:49,280 numba.core.byteflow DEBUG end state. edges=[Edge(pc=694, stack=('$phi660.0',), blockstack=(), npush=0), Edge(pc=740, stack=('$phi660.0',), blockstack=(), npush=0)] -13:52:49,280 numba.core.byteflow DEBUG pending: deque([State(pc_initial=504 nstack_initial=1), State(pc_initial=630 nstack_initial=1), State(pc_initial=694 nstack_initial=1), State(pc_initial=740 nstack_initial=1)]) -13:52:49,280 numba.core.byteflow DEBUG stack: ['$phi504.0'] -13:52:49,280 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=504 nstack_initial=1) -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=504, inst=LOAD_FAST(arg=14, lineno=209) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi504.0'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=506, inst=LOAD_FAST(arg=15, lineno=209) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi504.0', '$non_zero_dists504.1'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=508, inst=LOAD_CONST(arg=5, lineno=209) -13:52:49,280 numba.core.byteflow DEBUG stack ['$phi504.0', '$non_zero_dists504.1', '$index506.2'] -13:52:49,280 numba.core.byteflow DEBUG dispatch pc=510, inst=BINARY_OP(arg=10, lineno=209) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$non_zero_dists504.1', '$index506.2', '$const508.3'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=514, inst=BINARY_SUBSCR(arg=None, lineno=209) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$non_zero_dists504.1', '$binop_sub510.4'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=524, inst=LOAD_FAST(arg=6, lineno=209) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$514binary_subscr.5'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=526, inst=LOAD_FAST(arg=9, lineno=209) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$514binary_subscr.5', '$rho524.6'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=528, inst=STORE_SUBSCR(arg=None, lineno=209) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$514binary_subscr.5', '$rho524.6', '$i526.7'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=532, inst=LOAD_FAST(arg=16, lineno=210) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=534, inst=LOAD_GLOBAL(arg=20, lineno=210) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$interpolation532.8'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=546, inst=COMPARE_OP(arg=4, lineno=210) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$interpolation532.8', '$534load_global.9'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=552, inst=POP_JUMP_FORWARD_IF_FALSE(arg=37, lineno=210) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi504.0', '$546compare_op.10'] -13:52:49,281 numba.core.byteflow DEBUG end state. edges=[Edge(pc=554, stack=('$phi504.0',), blockstack=(), npush=0), Edge(pc=628, stack=('$phi504.0',), blockstack=(), npush=0)] -13:52:49,281 numba.core.byteflow DEBUG pending: deque([State(pc_initial=630 nstack_initial=1), State(pc_initial=694 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=554 nstack_initial=1), State(pc_initial=628 nstack_initial=1)]) -13:52:49,281 numba.core.byteflow DEBUG stack: ['$phi630.0'] -13:52:49,281 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=630 nstack_initial=1) -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=630, inst=LOAD_FAST(arg=16, lineno=215) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi630.0'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=632, inst=LOAD_FAST(arg=14, lineno=215) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi630.0', '$interpolation630.1'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=634, inst=LOAD_CONST(arg=1, lineno=215) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi630.0', '$interpolation630.1', '$non_zero_dists632.2'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=636, inst=BINARY_SUBSCR(arg=None, lineno=215) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi630.0', '$interpolation630.1', '$non_zero_dists632.2', '$const634.3'] -13:52:49,281 numba.core.byteflow DEBUG dispatch pc=646, inst=BINARY_OP(arg=5, lineno=215) -13:52:49,281 numba.core.byteflow DEBUG stack ['$phi630.0', '$interpolation630.1', '$636binary_subscr.4'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=650, inst=LOAD_FAST(arg=6, lineno=215) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi630.0', '$binop_mul646.5'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=652, inst=LOAD_FAST(arg=9, lineno=215) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi630.0', '$binop_mul646.5', '$rho650.6'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=654, inst=STORE_SUBSCR(arg=None, lineno=215) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi630.0', '$binop_mul646.5', '$rho650.6', '$i652.7'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=658, inst=JUMP_FORWARD(arg=40, lineno=215) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi630.0'] -13:52:49,282 numba.core.byteflow DEBUG end state. edges=[Edge(pc=740, stack=('$phi630.0',), blockstack=(), npush=0)] -13:52:49,282 numba.core.byteflow DEBUG pending: deque([State(pc_initial=694 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=554 nstack_initial=1), State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1)]) -13:52:49,282 numba.core.byteflow DEBUG stack: ['$phi694.0'] -13:52:49,282 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=694 nstack_initial=1) -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=694, inst=LOAD_GLOBAL(arg=1, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=706, inst=LOAD_ATTR(arg=11, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0', '$null$694.2', '$694load_global.1'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=716, inst=LOAD_FAST(arg=14, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0', '$null$694.2', '$706load_attr.3'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=718, inst=PRECALL(arg=1, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0', '$null$694.2', '$706load_attr.3', '$non_zero_dists716.4'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=722, inst=CALL(arg=1, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0', '$null$694.2', '$706load_attr.3', '$non_zero_dists716.4'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=732, inst=LOAD_FAST(arg=6, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0', '$722call.5'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=734, inst=LOAD_FAST(arg=9, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0', '$722call.5', '$rho732.6'] -13:52:49,282 numba.core.byteflow DEBUG dispatch pc=736, inst=STORE_SUBSCR(arg=None, lineno=217) -13:52:49,282 numba.core.byteflow DEBUG stack ['$phi694.0', '$722call.5', '$rho732.6', '$i734.7'] -13:52:49,282 numba.core.byteflow DEBUG end state. edges=[Edge(pc=740, stack=('$phi694.0',), blockstack=(), npush=0)] -13:52:49,282 numba.core.byteflow DEBUG pending: deque([State(pc_initial=740 nstack_initial=1), State(pc_initial=554 nstack_initial=1), State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=740 nstack_initial=1)]) -13:52:49,282 numba.core.byteflow DEBUG stack: ['$phi740.0'] -13:52:49,282 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=740 nstack_initial=1) -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=740, inst=LOAD_GLOBAL(arg=13, lineno=219) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi740.0'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=752, inst=LOAD_FAST(arg=2, lineno=219) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi740.0', '$null$740.2', '$740load_global.1'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=754, inst=PRECALL(arg=1, lineno=219) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi740.0', '$null$740.2', '$740load_global.1', '$n_iter752.3'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=758, inst=CALL(arg=1, lineno=219) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi740.0', '$null$740.2', '$740load_global.1', '$n_iter752.3'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=768, inst=GET_ITER(arg=None, lineno=219) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi740.0', '$758call.4'] -13:52:49,283 numba.core.byteflow DEBUG end state. edges=[Edge(pc=770, stack=('$phi740.0', '$768get_iter.5'), blockstack=(), npush=0)] -13:52:49,283 numba.core.byteflow DEBUG pending: deque([State(pc_initial=554 nstack_initial=1), State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=770 nstack_initial=2)]) -13:52:49,283 numba.core.byteflow DEBUG stack: ['$phi554.0'] -13:52:49,283 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=554 nstack_initial=1) -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=554, inst=LOAD_FAST(arg=6, lineno=211) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=556, inst=LOAD_FAST(arg=9, lineno=211) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=558, inst=COPY(arg=2, lineno=211) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=560, inst=COPY(arg=2, lineno=211) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$rho554.1'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=562, inst=BINARY_SUBSCR(arg=None, lineno=211) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$rho554.1', '$i556.2'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=572, inst=LOAD_FAST(arg=16, lineno=211) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=574, inst=LOAD_FAST(arg=14, lineno=212) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=576, inst=LOAD_FAST(arg=15, lineno=212) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$non_zero_dists574.5'] -13:52:49,283 numba.core.byteflow DEBUG dispatch pc=578, inst=BINARY_SUBSCR(arg=None, lineno=212) -13:52:49,283 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$non_zero_dists574.5', '$index576.6'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=588, inst=LOAD_FAST(arg=14, lineno=212) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$578binary_subscr.7'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=590, inst=LOAD_FAST(arg=15, lineno=212) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$578binary_subscr.7', '$non_zero_dists588.8'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=592, inst=LOAD_CONST(arg=5, lineno=212) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$578binary_subscr.7', '$non_zero_dists588.8', '$index590.9'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=594, inst=BINARY_OP(arg=10, lineno=212) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$578binary_subscr.7', '$non_zero_dists588.8', '$index590.9', '$const592.10'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=598, inst=BINARY_SUBSCR(arg=None, lineno=212) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$578binary_subscr.7', '$non_zero_dists588.8', '$binop_sub594.11'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=608, inst=BINARY_OP(arg=10, lineno=212) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$578binary_subscr.7', '$598binary_subscr.12'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=612, inst=BINARY_OP(arg=5, lineno=211) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$interpolation572.4', '$binop_sub608.13'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=616, inst=BINARY_OP(arg=13, lineno=211) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$562binary_subscr.3', '$binop_mul612.14'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=620, inst=SWAP(arg=3, lineno=211) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$rho554.1', '$i556.2', '$binop_iadd616.15'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=622, inst=SWAP(arg=2, lineno=211) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$binop_iadd616.15', '$i556.2', '$rho554.1'] -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=624, inst=STORE_SUBSCR(arg=None, lineno=211) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi554.0', '$binop_iadd616.15', '$rho554.1', '$i556.2'] -13:52:49,284 numba.core.byteflow DEBUG end state. edges=[Edge(pc=628, stack=('$phi554.0',), blockstack=(), npush=0)] -13:52:49,284 numba.core.byteflow DEBUG pending: deque([State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=770 nstack_initial=2), State(pc_initial=628 nstack_initial=1)]) -13:52:49,284 numba.core.byteflow DEBUG stack: ['$phi628.0'] -13:52:49,284 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=628 nstack_initial=1) -13:52:49,284 numba.core.byteflow DEBUG dispatch pc=628, inst=JUMP_FORWARD(arg=55, lineno=211) -13:52:49,284 numba.core.byteflow DEBUG stack ['$phi628.0'] -13:52:49,284 numba.core.byteflow DEBUG end state. edges=[Edge(pc=740, stack=('$phi628.0',), blockstack=(), npush=0)] -13:52:49,284 numba.core.byteflow DEBUG pending: deque([State(pc_initial=740 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=770 nstack_initial=2), State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1)]) -13:52:49,285 numba.core.byteflow DEBUG pending: deque([State(pc_initial=740 nstack_initial=1), State(pc_initial=770 nstack_initial=2), State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1)]) -13:52:49,285 numba.core.byteflow DEBUG pending: deque([State(pc_initial=770 nstack_initial=2), State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1)]) -13:52:49,285 numba.core.byteflow DEBUG stack: ['$phi770.0', '$phi770.1'] -13:52:49,285 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=770 nstack_initial=2) -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=770, inst=FOR_ITER(arg=170, lineno=219) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi770.0', '$phi770.1'] -13:52:49,285 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1112, stack=('$phi770.0',), blockstack=(), npush=0), Edge(pc=772, stack=('$phi770.0', '$phi770.1', '$770for_iter.3'), blockstack=(), npush=0)] -13:52:49,285 numba.core.byteflow DEBUG pending: deque([State(pc_initial=628 nstack_initial=1), State(pc_initial=740 nstack_initial=1), State(pc_initial=1112 nstack_initial=1), State(pc_initial=772 nstack_initial=3)]) -13:52:49,285 numba.core.byteflow DEBUG pending: deque([State(pc_initial=740 nstack_initial=1), State(pc_initial=1112 nstack_initial=1), State(pc_initial=772 nstack_initial=3)]) -13:52:49,285 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1112 nstack_initial=1), State(pc_initial=772 nstack_initial=3)]) -13:52:49,285 numba.core.byteflow DEBUG stack: ['$phi1112.0'] -13:52:49,285 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1112 nstack_initial=1) -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1112, inst=LOAD_FAST(arg=12, lineno=242) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1114, inst=LOAD_FAST(arg=7, lineno=242) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0', '$mid1112.1'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1116, inst=LOAD_FAST(arg=9, lineno=242) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0', '$mid1112.1', '$result1114.2'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1118, inst=STORE_SUBSCR(arg=None, lineno=242) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0', '$mid1112.1', '$result1114.2', '$i1116.3'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1122, inst=LOAD_FAST(arg=6, lineno=245) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1124, inst=LOAD_FAST(arg=9, lineno=245) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0', '$rho1122.4'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1126, inst=BINARY_SUBSCR(arg=None, lineno=245) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0', '$rho1122.4', '$i1124.5'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1136, inst=LOAD_CONST(arg=3, lineno=245) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0', '$1126binary_subscr.6'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1138, inst=COMPARE_OP(arg=4, lineno=245) -13:52:49,285 numba.core.byteflow DEBUG stack ['$phi1112.0', '$1126binary_subscr.6', '$const1136.7'] -13:52:49,285 numba.core.byteflow DEBUG dispatch pc=1144, inst=POP_JUMP_FORWARD_IF_FALSE(arg=55, lineno=245) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi1112.0', '$1138compare_op.8'] -13:52:49,286 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1146, stack=('$phi1112.0',), blockstack=(), npush=0), Edge(pc=1256, stack=('$phi1112.0',), blockstack=(), npush=0)] -13:52:49,286 numba.core.byteflow DEBUG pending: deque([State(pc_initial=772 nstack_initial=3), State(pc_initial=1146 nstack_initial=1), State(pc_initial=1256 nstack_initial=1)]) -13:52:49,286 numba.core.byteflow DEBUG stack: ['$phi772.0', '$phi772.1', '$phi772.2'] -13:52:49,286 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=772 nstack_initial=3) -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=772, inst=STORE_FAST(arg=17, lineno=219) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$phi772.2'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=774, inst=LOAD_CONST(arg=3, lineno=221) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=776, inst=STORE_FAST(arg=18, lineno=221) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$const774.3'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=778, inst=LOAD_GLOBAL(arg=13, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=790, inst=LOAD_CONST(arg=5, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$null$778.5', '$778load_global.4'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=792, inst=LOAD_FAST(arg=0, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$null$778.5', '$778load_global.4', '$const790.6'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=794, inst=LOAD_ATTR(arg=3, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$null$778.5', '$778load_global.4', '$const790.6', '$distances792.7'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=804, inst=LOAD_CONST(arg=5, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$null$778.5', '$778load_global.4', '$const790.6', '$794load_attr.8'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=806, inst=BINARY_SUBSCR(arg=None, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$null$778.5', '$778load_global.4', '$const790.6', '$794load_attr.8', '$const804.9'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=816, inst=PRECALL(arg=2, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$null$778.5', '$778load_global.4', '$const790.6', '$806binary_subscr.10'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=820, inst=CALL(arg=2, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$null$778.5', '$778load_global.4', '$const790.6', '$806binary_subscr.10'] -13:52:49,286 numba.core.byteflow DEBUG dispatch pc=830, inst=GET_ITER(arg=None, lineno=222) -13:52:49,286 numba.core.byteflow DEBUG stack ['$phi772.0', '$phi772.1', '$820call.11'] -13:52:49,286 numba.core.byteflow DEBUG end state. edges=[Edge(pc=832, stack=('$phi772.0', '$phi772.1', '$830get_iter.12'), blockstack=(), npush=0)] -13:52:49,287 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1146 nstack_initial=1), State(pc_initial=1256 nstack_initial=1), State(pc_initial=832 nstack_initial=3)]) -13:52:49,287 numba.core.byteflow DEBUG stack: ['$phi1146.0'] -13:52:49,287 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1146 nstack_initial=1) -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1146, inst=LOAD_GLOBAL(arg=1, lineno=246) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1158, inst=LOAD_ATTR(arg=5, lineno=246) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$null$1146.2', '$1146load_global.1'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1168, inst=LOAD_FAST(arg=13, lineno=246) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$null$1146.2', '$1158load_attr.3'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1170, inst=PRECALL(arg=1, lineno=246) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$null$1146.2', '$1158load_attr.3', '$ith_distances1168.4'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1174, inst=CALL(arg=1, lineno=246) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$null$1146.2', '$1158load_attr.3', '$ith_distances1168.4'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1184, inst=STORE_FAST(arg=21, lineno=246) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$1174call.5'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1186, inst=LOAD_FAST(arg=7, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1188, inst=LOAD_FAST(arg=9, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$result1186.6'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1190, inst=BINARY_SUBSCR(arg=None, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$result1186.6', '$i1188.7'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1200, inst=LOAD_GLOBAL(arg=28, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$1190binary_subscr.8'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1212, inst=LOAD_FAST(arg=21, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$1190binary_subscr.8', '$1200load_global.9'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1214, inst=BINARY_OP(arg=5, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$1190binary_subscr.8', '$1200load_global.9', '$mean_ith_distances1212.10'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1218, inst=COMPARE_OP(arg=0, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$1190binary_subscr.8', '$binop_mul1214.11'] -13:52:49,287 numba.core.byteflow DEBUG dispatch pc=1224, inst=POP_JUMP_FORWARD_IF_FALSE(arg=13, lineno=247) -13:52:49,287 numba.core.byteflow DEBUG stack ['$phi1146.0', '$1218compare_op.12'] -13:52:49,288 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1226, stack=('$phi1146.0',), blockstack=(), npush=0), Edge(pc=1252, stack=('$phi1146.0',), blockstack=(), npush=0)] -13:52:49,288 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1256 nstack_initial=1), State(pc_initial=832 nstack_initial=3), State(pc_initial=1226 nstack_initial=1), State(pc_initial=1252 nstack_initial=1)]) -13:52:49,288 numba.core.byteflow DEBUG stack: ['$phi1256.0'] -13:52:49,288 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1256 nstack_initial=1) -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1256, inst=LOAD_FAST(arg=7, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0'] -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1258, inst=LOAD_FAST(arg=9, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0', '$result1256.1'] -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1260, inst=BINARY_SUBSCR(arg=None, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0', '$result1256.1', '$i1258.2'] -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1270, inst=LOAD_GLOBAL(arg=28, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0', '$1260binary_subscr.3'] -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1282, inst=LOAD_FAST(arg=8, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0', '$1260binary_subscr.3', '$1270load_global.4'] -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1284, inst=BINARY_OP(arg=5, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0', '$1260binary_subscr.3', '$1270load_global.4', '$mean_distances1282.5'] -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1288, inst=COMPARE_OP(arg=0, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0', '$1260binary_subscr.3', '$binop_mul1284.6'] -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=1294, inst=POP_JUMP_FORWARD_IF_FALSE(arg=13, lineno=250) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi1256.0', '$1288compare_op.7'] -13:52:49,288 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1296, stack=('$phi1256.0',), blockstack=(), npush=0), Edge(pc=1322, stack=('$phi1256.0',), blockstack=(), npush=0)] -13:52:49,288 numba.core.byteflow DEBUG pending: deque([State(pc_initial=832 nstack_initial=3), State(pc_initial=1226 nstack_initial=1), State(pc_initial=1252 nstack_initial=1), State(pc_initial=1296 nstack_initial=1), State(pc_initial=1322 nstack_initial=1)]) -13:52:49,288 numba.core.byteflow DEBUG stack: ['$phi832.0', '$phi832.1', '$phi832.2'] -13:52:49,288 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=832 nstack_initial=3) -13:52:49,288 numba.core.byteflow DEBUG dispatch pc=832, inst=FOR_ITER(arg=60, lineno=222) -13:52:49,288 numba.core.byteflow DEBUG stack ['$phi832.0', '$phi832.1', '$phi832.2'] -13:52:49,288 numba.core.byteflow DEBUG end state. edges=[Edge(pc=954, stack=('$phi832.0', '$phi832.1'), blockstack=(), npush=0), Edge(pc=834, stack=('$phi832.0', '$phi832.1', '$phi832.2', '$832for_iter.4'), blockstack=(), npush=0)] -13:52:49,288 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1226 nstack_initial=1), State(pc_initial=1252 nstack_initial=1), State(pc_initial=1296 nstack_initial=1), State(pc_initial=1322 nstack_initial=1), State(pc_initial=954 nstack_initial=2), State(pc_initial=834 nstack_initial=4)]) -13:52:49,288 numba.core.byteflow DEBUG stack: ['$phi1226.0'] -13:52:49,289 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1226 nstack_initial=1) -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1226, inst=LOAD_GLOBAL(arg=28, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1226.0'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1238, inst=LOAD_FAST(arg=21, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1226.0', '$1226load_global.1'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1240, inst=BINARY_OP(arg=5, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1226.0', '$1226load_global.1', '$mean_ith_distances1238.2'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1244, inst=LOAD_FAST(arg=7, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1226.0', '$binop_mul1240.3'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1246, inst=LOAD_FAST(arg=9, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1226.0', '$binop_mul1240.3', '$result1244.4'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1248, inst=STORE_SUBSCR(arg=None, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1226.0', '$binop_mul1240.3', '$result1244.4', '$i1246.5'] -13:52:49,289 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1252, stack=('$phi1226.0',), blockstack=(), npush=0)] -13:52:49,289 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1252 nstack_initial=1), State(pc_initial=1296 nstack_initial=1), State(pc_initial=1322 nstack_initial=1), State(pc_initial=954 nstack_initial=2), State(pc_initial=834 nstack_initial=4), State(pc_initial=1252 nstack_initial=1)]) -13:52:49,289 numba.core.byteflow DEBUG stack: ['$phi1252.0'] -13:52:49,289 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1252 nstack_initial=1) -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1252, inst=NOP(arg=1, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1252.0'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1254, inst=JUMP_BACKWARD(arg=471, lineno=248) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1252.0'] -13:52:49,289 numba.core.byteflow DEBUG end state. edges=[Edge(pc=314, stack=('$phi1252.0',), blockstack=(), npush=0)] -13:52:49,289 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1296 nstack_initial=1), State(pc_initial=1322 nstack_initial=1), State(pc_initial=954 nstack_initial=2), State(pc_initial=834 nstack_initial=4), State(pc_initial=1252 nstack_initial=1), State(pc_initial=314 nstack_initial=1)]) -13:52:49,289 numba.core.byteflow DEBUG stack: ['$phi1296.0'] -13:52:49,289 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1296 nstack_initial=1) -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1296, inst=LOAD_GLOBAL(arg=28, lineno=251) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1296.0'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1308, inst=LOAD_FAST(arg=8, lineno=251) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1296.0', '$1296load_global.1'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1310, inst=BINARY_OP(arg=5, lineno=251) -13:52:49,289 numba.core.byteflow DEBUG stack ['$phi1296.0', '$1296load_global.1', '$mean_distances1308.2'] -13:52:49,289 numba.core.byteflow DEBUG dispatch pc=1314, inst=LOAD_FAST(arg=7, lineno=251) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi1296.0', '$binop_mul1310.3'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=1316, inst=LOAD_FAST(arg=9, lineno=251) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi1296.0', '$binop_mul1310.3', '$result1314.4'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=1318, inst=STORE_SUBSCR(arg=None, lineno=251) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi1296.0', '$binop_mul1310.3', '$result1314.4', '$i1316.5'] -13:52:49,290 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1322, stack=('$phi1296.0',), blockstack=(), npush=0)] -13:52:49,290 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1322 nstack_initial=1), State(pc_initial=954 nstack_initial=2), State(pc_initial=834 nstack_initial=4), State(pc_initial=1252 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1322 nstack_initial=1)]) -13:52:49,290 numba.core.byteflow DEBUG stack: ['$phi1322.0'] -13:52:49,290 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1322 nstack_initial=1) -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=1322, inst=NOP(arg=1, lineno=251) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi1322.0'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=1324, inst=JUMP_BACKWARD(arg=506, lineno=251) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi1322.0'] -13:52:49,290 numba.core.byteflow DEBUG end state. edges=[Edge(pc=314, stack=('$phi1322.0',), blockstack=(), npush=0)] -13:52:49,290 numba.core.byteflow DEBUG pending: deque([State(pc_initial=954 nstack_initial=2), State(pc_initial=834 nstack_initial=4), State(pc_initial=1252 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1322 nstack_initial=1), State(pc_initial=314 nstack_initial=1)]) -13:52:49,290 numba.core.byteflow DEBUG stack: ['$phi954.0', '$phi954.1'] -13:52:49,290 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=954 nstack_initial=2) -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=954, inst=LOAD_GLOBAL(arg=1, lineno=229) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=966, inst=LOAD_ATTR(arg=13, lineno=229) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$null$954.3', '$954load_global.2'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=976, inst=LOAD_FAST(arg=18, lineno=229) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$null$954.3', '$966load_attr.4'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=978, inst=LOAD_FAST(arg=5, lineno=229) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$null$954.3', '$966load_attr.4', '$psum976.5'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=980, inst=BINARY_OP(arg=10, lineno=229) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$null$954.3', '$966load_attr.4', '$psum976.5', '$target978.6'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=984, inst=PRECALL(arg=1, lineno=229) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$null$954.3', '$966load_attr.4', '$binop_sub980.7'] -13:52:49,290 numba.core.byteflow DEBUG dispatch pc=988, inst=CALL(arg=1, lineno=229) -13:52:49,290 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$null$954.3', '$966load_attr.4', '$binop_sub980.7'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=998, inst=LOAD_GLOBAL(arg=20, lineno=229) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$988call.8'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=1010, inst=COMPARE_OP(arg=0, lineno=229) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$988call.8', '$998load_global.9'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=1016, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=229) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi954.0', '$phi954.1', '$1010compare_op.10'] -13:52:49,291 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1018, stack=('$phi954.0', '$phi954.1'), blockstack=(), npush=0), Edge(pc=1022, stack=('$phi954.0', '$phi954.1'), blockstack=(), npush=0)] -13:52:49,291 numba.core.byteflow DEBUG pending: deque([State(pc_initial=834 nstack_initial=4), State(pc_initial=1252 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1322 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1018 nstack_initial=2), State(pc_initial=1022 nstack_initial=2)]) -13:52:49,291 numba.core.byteflow DEBUG stack: ['$phi834.0', '$phi834.1', '$phi834.2', '$phi834.3'] -13:52:49,291 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=834 nstack_initial=4) -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=834, inst=STORE_FAST(arg=19, lineno=222) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$phi834.3'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=836, inst=LOAD_FAST(arg=0, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=838, inst=LOAD_FAST(arg=9, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$distances836.4'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=840, inst=LOAD_FAST(arg=19, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$distances836.4', '$i838.5'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=842, inst=BUILD_TUPLE(arg=2, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$distances836.4', '$i838.5', '$j840.6'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=844, inst=BINARY_SUBSCR(arg=None, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$distances836.4', '$842build_tuple.7'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=854, inst=LOAD_FAST(arg=6, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$844binary_subscr.8'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=856, inst=LOAD_FAST(arg=9, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$844binary_subscr.8', '$rho854.9'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=858, inst=BINARY_SUBSCR(arg=None, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$844binary_subscr.8', '$rho854.9', '$i856.10'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=868, inst=BINARY_OP(arg=10, lineno=223) -13:52:49,291 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$844binary_subscr.8', '$858binary_subscr.11'] -13:52:49,291 numba.core.byteflow DEBUG dispatch pc=872, inst=STORE_FAST(arg=20, lineno=223) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$binop_sub868.12'] -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=874, inst=LOAD_FAST(arg=20, lineno=224) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2'] -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=876, inst=LOAD_CONST(arg=1, lineno=224) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$d874.13'] -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=878, inst=COMPARE_OP(arg=4, lineno=224) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$d874.13', '$const876.14'] -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=884, inst=POP_JUMP_FORWARD_IF_FALSE(arg=28, lineno=224) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi834.0', '$phi834.1', '$phi834.2', '$878compare_op.15'] -13:52:49,292 numba.core.byteflow DEBUG end state. edges=[Edge(pc=886, stack=('$phi834.0', '$phi834.1', '$phi834.2'), blockstack=(), npush=0), Edge(pc=942, stack=('$phi834.0', '$phi834.1', '$phi834.2'), blockstack=(), npush=0)] -13:52:49,292 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1252 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1322 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1018 nstack_initial=2), State(pc_initial=1022 nstack_initial=2), State(pc_initial=886 nstack_initial=3), State(pc_initial=942 nstack_initial=3)]) -13:52:49,292 numba.core.byteflow DEBUG pending: deque([State(pc_initial=314 nstack_initial=1), State(pc_initial=1322 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1018 nstack_initial=2), State(pc_initial=1022 nstack_initial=2), State(pc_initial=886 nstack_initial=3), State(pc_initial=942 nstack_initial=3)]) -13:52:49,292 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1322 nstack_initial=1), State(pc_initial=314 nstack_initial=1), State(pc_initial=1018 nstack_initial=2), State(pc_initial=1022 nstack_initial=2), State(pc_initial=886 nstack_initial=3), State(pc_initial=942 nstack_initial=3)]) -13:52:49,292 numba.core.byteflow DEBUG pending: deque([State(pc_initial=314 nstack_initial=1), State(pc_initial=1018 nstack_initial=2), State(pc_initial=1022 nstack_initial=2), State(pc_initial=886 nstack_initial=3), State(pc_initial=942 nstack_initial=3)]) -13:52:49,292 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1018 nstack_initial=2), State(pc_initial=1022 nstack_initial=2), State(pc_initial=886 nstack_initial=3), State(pc_initial=942 nstack_initial=3)]) -13:52:49,292 numba.core.byteflow DEBUG stack: ['$phi1018.0', '$phi1018.1'] -13:52:49,292 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1018 nstack_initial=2) -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=1018, inst=POP_TOP(arg=None, lineno=230) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi1018.0', '$phi1018.1'] -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=1020, inst=JUMP_FORWARD(arg=45, lineno=230) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi1018.0'] -13:52:49,292 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1112, stack=('$phi1018.0',), blockstack=(), npush=0)] -13:52:49,292 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1022 nstack_initial=2), State(pc_initial=886 nstack_initial=3), State(pc_initial=942 nstack_initial=3), State(pc_initial=1112 nstack_initial=1)]) -13:52:49,292 numba.core.byteflow DEBUG stack: ['$phi1022.0', '$phi1022.1'] -13:52:49,292 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1022 nstack_initial=2) -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=1022, inst=LOAD_FAST(arg=18, lineno=232) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi1022.0', '$phi1022.1'] -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=1024, inst=LOAD_FAST(arg=5, lineno=232) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi1022.0', '$phi1022.1', '$psum1022.2'] -13:52:49,292 numba.core.byteflow DEBUG dispatch pc=1026, inst=COMPARE_OP(arg=4, lineno=232) -13:52:49,292 numba.core.byteflow DEBUG stack ['$phi1022.0', '$phi1022.1', '$psum1022.2', '$target1024.3'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=1032, inst=POP_JUMP_FORWARD_IF_FALSE(arg=11, lineno=232) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi1022.0', '$phi1022.1', '$1026compare_op.4'] -13:52:49,293 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1034, stack=('$phi1022.0', '$phi1022.1'), blockstack=(), npush=0), Edge(pc=1056, stack=('$phi1022.0', '$phi1022.1'), blockstack=(), npush=0)] -13:52:49,293 numba.core.byteflow DEBUG pending: deque([State(pc_initial=886 nstack_initial=3), State(pc_initial=942 nstack_initial=3), State(pc_initial=1112 nstack_initial=1), State(pc_initial=1034 nstack_initial=2), State(pc_initial=1056 nstack_initial=2)]) -13:52:49,293 numba.core.byteflow DEBUG stack: ['$phi886.0', '$phi886.1', '$phi886.2'] -13:52:49,293 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=886 nstack_initial=3) -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=886, inst=LOAD_FAST(arg=18, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=888, inst=LOAD_GLOBAL(arg=1, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=900, inst=LOAD_ATTR(arg=12, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$null$888.5', '$888load_global.4'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=910, inst=LOAD_FAST(arg=20, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$null$888.5', '$900load_attr.6'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=912, inst=LOAD_FAST(arg=12, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$null$888.5', '$900load_attr.6', '$d910.7'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=914, inst=BINARY_OP(arg=11, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$null$888.5', '$900load_attr.6', '$d910.7', '$mid912.8'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=918, inst=UNARY_NEGATIVE(arg=None, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$null$888.5', '$900load_attr.6', '$binop_truediv914.9'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=920, inst=PRECALL(arg=1, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$null$888.5', '$900load_attr.6', '$918unary_negative.10'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=924, inst=CALL(arg=1, lineno=225) -13:52:49,293 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$null$888.5', '$900load_attr.6', '$918unary_negative.10'] -13:52:49,293 numba.core.byteflow DEBUG dispatch pc=934, inst=BINARY_OP(arg=13, lineno=225) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$psum886.3', '$924call.11'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=938, inst=STORE_FAST(arg=18, lineno=225) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2', '$binop_iadd934.12'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=940, inst=JUMP_BACKWARD(arg=55, lineno=225) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi886.0', '$phi886.1', '$phi886.2'] -13:52:49,294 numba.core.byteflow DEBUG end state. edges=[Edge(pc=832, stack=('$phi886.0', '$phi886.1', '$phi886.2'), blockstack=(), npush=0)] -13:52:49,294 numba.core.byteflow DEBUG pending: deque([State(pc_initial=942 nstack_initial=3), State(pc_initial=1112 nstack_initial=1), State(pc_initial=1034 nstack_initial=2), State(pc_initial=1056 nstack_initial=2), State(pc_initial=832 nstack_initial=3)]) -13:52:49,294 numba.core.byteflow DEBUG stack: ['$phi942.0', '$phi942.1', '$phi942.2'] -13:52:49,294 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=942 nstack_initial=3) -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=942, inst=LOAD_FAST(arg=18, lineno=227) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi942.0', '$phi942.1', '$phi942.2'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=944, inst=LOAD_CONST(arg=4, lineno=227) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi942.0', '$phi942.1', '$phi942.2', '$psum942.3'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=946, inst=BINARY_OP(arg=13, lineno=227) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi942.0', '$phi942.1', '$phi942.2', '$psum942.3', '$const944.4'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=950, inst=STORE_FAST(arg=18, lineno=227) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi942.0', '$phi942.1', '$phi942.2', '$binop_iadd946.5'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=952, inst=JUMP_BACKWARD(arg=61, lineno=227) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi942.0', '$phi942.1', '$phi942.2'] -13:52:49,294 numba.core.byteflow DEBUG end state. edges=[Edge(pc=832, stack=('$phi942.0', '$phi942.1', '$phi942.2'), blockstack=(), npush=0)] -13:52:49,294 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1112 nstack_initial=1), State(pc_initial=1034 nstack_initial=2), State(pc_initial=1056 nstack_initial=2), State(pc_initial=832 nstack_initial=3), State(pc_initial=832 nstack_initial=3)]) -13:52:49,294 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1034 nstack_initial=2), State(pc_initial=1056 nstack_initial=2), State(pc_initial=832 nstack_initial=3), State(pc_initial=832 nstack_initial=3)]) -13:52:49,294 numba.core.byteflow DEBUG stack: ['$phi1034.0', '$phi1034.1'] -13:52:49,294 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1034 nstack_initial=2) -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=1034, inst=LOAD_FAST(arg=12, lineno=233) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=1036, inst=STORE_FAST(arg=11, lineno=233) -13:52:49,294 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1', '$mid1034.2'] -13:52:49,294 numba.core.byteflow DEBUG dispatch pc=1038, inst=LOAD_FAST(arg=10, lineno=234) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1040, inst=LOAD_FAST(arg=11, lineno=234) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1', '$lo1038.3'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1042, inst=BINARY_OP(arg=0, lineno=234) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1', '$lo1038.3', '$hi1040.4'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1046, inst=LOAD_CONST(arg=6, lineno=234) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1', '$binop_add1042.5'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1048, inst=BINARY_OP(arg=11, lineno=234) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1', '$binop_add1042.5', '$const1046.6'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1052, inst=STORE_FAST(arg=12, lineno=234) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1', '$binop_truediv1048.7'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1054, inst=JUMP_BACKWARD(arg=143, lineno=234) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1034.0', '$phi1034.1'] -13:52:49,295 numba.core.byteflow DEBUG end state. edges=[Edge(pc=770, stack=('$phi1034.0', '$phi1034.1'), blockstack=(), npush=0)] -13:52:49,295 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1056 nstack_initial=2), State(pc_initial=832 nstack_initial=3), State(pc_initial=832 nstack_initial=3), State(pc_initial=770 nstack_initial=2)]) -13:52:49,295 numba.core.byteflow DEBUG stack: ['$phi1056.0', '$phi1056.1'] -13:52:49,295 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1056 nstack_initial=2) -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1056, inst=LOAD_FAST(arg=12, lineno=236) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1056.0', '$phi1056.1'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1058, inst=STORE_FAST(arg=10, lineno=236) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1056.0', '$phi1056.1', '$mid1056.2'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1060, inst=LOAD_FAST(arg=11, lineno=237) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1056.0', '$phi1056.1'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1062, inst=LOAD_GLOBAL(arg=14, lineno=237) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1056.0', '$phi1056.1', '$hi1060.3'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1074, inst=COMPARE_OP(arg=2, lineno=237) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1056.0', '$phi1056.1', '$hi1060.3', '$1062load_global.4'] -13:52:49,295 numba.core.byteflow DEBUG dispatch pc=1080, inst=POP_JUMP_FORWARD_IF_FALSE(arg=6, lineno=237) -13:52:49,295 numba.core.byteflow DEBUG stack ['$phi1056.0', '$phi1056.1', '$1074compare_op.5'] -13:52:49,295 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1082, stack=('$phi1056.0', '$phi1056.1'), blockstack=(), npush=0), Edge(pc=1094, stack=('$phi1056.0', '$phi1056.1'), blockstack=(), npush=0)] -13:52:49,295 numba.core.byteflow DEBUG pending: deque([State(pc_initial=832 nstack_initial=3), State(pc_initial=832 nstack_initial=3), State(pc_initial=770 nstack_initial=2), State(pc_initial=1082 nstack_initial=2), State(pc_initial=1094 nstack_initial=2)]) -13:52:49,296 numba.core.byteflow DEBUG pending: deque([State(pc_initial=832 nstack_initial=3), State(pc_initial=770 nstack_initial=2), State(pc_initial=1082 nstack_initial=2), State(pc_initial=1094 nstack_initial=2)]) -13:52:49,296 numba.core.byteflow DEBUG pending: deque([State(pc_initial=770 nstack_initial=2), State(pc_initial=1082 nstack_initial=2), State(pc_initial=1094 nstack_initial=2)]) -13:52:49,296 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1082 nstack_initial=2), State(pc_initial=1094 nstack_initial=2)]) -13:52:49,296 numba.core.byteflow DEBUG stack: ['$phi1082.0', '$phi1082.1'] -13:52:49,296 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1082 nstack_initial=2) -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1082, inst=LOAD_FAST(arg=12, lineno=238) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1082.0', '$phi1082.1'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1084, inst=LOAD_CONST(arg=7, lineno=238) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1082.0', '$phi1082.1', '$mid1082.2'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1086, inst=BINARY_OP(arg=18, lineno=238) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1082.0', '$phi1082.1', '$mid1082.2', '$const1084.3'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1090, inst=STORE_FAST(arg=12, lineno=238) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1082.0', '$phi1082.1', '$binop_imul1086.4'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1092, inst=JUMP_BACKWARD(arg=162, lineno=238) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1082.0', '$phi1082.1'] -13:52:49,296 numba.core.byteflow DEBUG end state. edges=[Edge(pc=770, stack=('$phi1082.0', '$phi1082.1'), blockstack=(), npush=0)] -13:52:49,296 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1094 nstack_initial=2), State(pc_initial=770 nstack_initial=2)]) -13:52:49,296 numba.core.byteflow DEBUG stack: ['$phi1094.0', '$phi1094.1'] -13:52:49,296 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1094 nstack_initial=2) -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1094, inst=LOAD_FAST(arg=10, lineno=240) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1094.0', '$phi1094.1'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1096, inst=LOAD_FAST(arg=11, lineno=240) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1094.0', '$phi1094.1', '$lo1094.2'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1098, inst=BINARY_OP(arg=0, lineno=240) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1094.0', '$phi1094.1', '$lo1094.2', '$hi1096.3'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1102, inst=LOAD_CONST(arg=6, lineno=240) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1094.0', '$phi1094.1', '$binop_add1098.4'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1104, inst=BINARY_OP(arg=11, lineno=240) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1094.0', '$phi1094.1', '$binop_add1098.4', '$const1102.5'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1108, inst=STORE_FAST(arg=12, lineno=240) -13:52:49,296 numba.core.byteflow DEBUG stack ['$phi1094.0', '$phi1094.1', '$binop_truediv1104.6'] -13:52:49,296 numba.core.byteflow DEBUG dispatch pc=1110, inst=JUMP_BACKWARD(arg=171, lineno=240) -13:52:49,297 numba.core.byteflow DEBUG stack ['$phi1094.0', '$phi1094.1'] -13:52:49,297 numba.core.byteflow DEBUG end state. edges=[Edge(pc=770, stack=('$phi1094.0', '$phi1094.1'), blockstack=(), npush=0)] -13:52:49,297 numba.core.byteflow DEBUG pending: deque([State(pc_initial=770 nstack_initial=2), State(pc_initial=770 nstack_initial=2)]) -13:52:49,297 numba.core.byteflow DEBUG pending: deque([State(pc_initial=770 nstack_initial=2)]) -13:52:49,297 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,297 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=314 nstack_initial=1): set(), - State(pc_initial=316 nstack_initial=1): {'$phi316.0'}, - State(pc_initial=318 nstack_initial=2): {'$phi318.1'}, - State(pc_initial=416 nstack_initial=1): set(), - State(pc_initial=504 nstack_initial=1): set(), - State(pc_initial=554 nstack_initial=1): set(), - State(pc_initial=628 nstack_initial=1): set(), - State(pc_initial=630 nstack_initial=1): set(), - State(pc_initial=660 nstack_initial=1): set(), - State(pc_initial=694 nstack_initial=1): set(), - State(pc_initial=740 nstack_initial=1): set(), - State(pc_initial=770 nstack_initial=2): {'$phi770.1'}, - State(pc_initial=772 nstack_initial=3): {'$phi772.2'}, - State(pc_initial=832 nstack_initial=3): {'$phi832.2'}, - State(pc_initial=834 nstack_initial=4): {'$phi834.3'}, - State(pc_initial=886 nstack_initial=3): set(), - State(pc_initial=942 nstack_initial=3): set(), - State(pc_initial=954 nstack_initial=2): set(), - State(pc_initial=1018 nstack_initial=2): set(), - State(pc_initial=1022 nstack_initial=2): set(), - State(pc_initial=1034 nstack_initial=2): set(), - State(pc_initial=1056 nstack_initial=2): set(), - State(pc_initial=1082 nstack_initial=2): set(), - State(pc_initial=1094 nstack_initial=2): set(), - State(pc_initial=1112 nstack_initial=1): set(), - State(pc_initial=1146 nstack_initial=1): set(), - State(pc_initial=1226 nstack_initial=1): set(), - State(pc_initial=1252 nstack_initial=1): set(), - State(pc_initial=1256 nstack_initial=1): set(), - State(pc_initial=1296 nstack_initial=1): set(), - State(pc_initial=1322 nstack_initial=1): set(), - State(pc_initial=1326 nstack_initial=0): set()}) -13:52:49,297 numba.core.byteflow DEBUG defmap: {'$phi314.0': State(pc_initial=0 nstack_initial=0), - '$phi318.1': State(pc_initial=316 nstack_initial=1), - '$phi770.1': State(pc_initial=740 nstack_initial=1), - '$phi772.2': State(pc_initial=770 nstack_initial=2), - '$phi832.2': State(pc_initial=772 nstack_initial=3), - '$phi834.3': State(pc_initial=832 nstack_initial=3)} -13:52:49,297 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi1018.0': {('$phi954.0', - State(pc_initial=954 nstack_initial=2))}, - '$phi1018.1': {('$phi954.1', - State(pc_initial=954 nstack_initial=2))}, - '$phi1022.0': {('$phi954.0', - State(pc_initial=954 nstack_initial=2))}, - '$phi1022.1': {('$phi954.1', - State(pc_initial=954 nstack_initial=2))}, - '$phi1034.0': {('$phi1022.0', - State(pc_initial=1022 nstack_initial=2))}, - '$phi1034.1': {('$phi1022.1', - State(pc_initial=1022 nstack_initial=2))}, - '$phi1056.0': {('$phi1022.0', - State(pc_initial=1022 nstack_initial=2))}, - '$phi1056.1': {('$phi1022.1', - State(pc_initial=1022 nstack_initial=2))}, - '$phi1082.0': {('$phi1056.0', - State(pc_initial=1056 nstack_initial=2))}, - '$phi1082.1': {('$phi1056.1', - State(pc_initial=1056 nstack_initial=2))}, - '$phi1094.0': {('$phi1056.0', - State(pc_initial=1056 nstack_initial=2))}, - '$phi1094.1': {('$phi1056.1', - State(pc_initial=1056 nstack_initial=2))}, - '$phi1112.0': {('$phi1018.0', - State(pc_initial=1018 nstack_initial=2)), - ('$phi770.0', - State(pc_initial=770 nstack_initial=2))}, - '$phi1146.0': {('$phi1112.0', - State(pc_initial=1112 nstack_initial=1))}, - '$phi1226.0': {('$phi1146.0', - State(pc_initial=1146 nstack_initial=1))}, - '$phi1252.0': {('$phi1146.0', - State(pc_initial=1146 nstack_initial=1)), - ('$phi1226.0', - State(pc_initial=1226 nstack_initial=1))}, - '$phi1256.0': {('$phi1112.0', - State(pc_initial=1112 nstack_initial=1))}, - '$phi1296.0': {('$phi1256.0', - State(pc_initial=1256 nstack_initial=1))}, - '$phi1322.0': {('$phi1256.0', - State(pc_initial=1256 nstack_initial=1)), - ('$phi1296.0', - State(pc_initial=1296 nstack_initial=1))}, - '$phi314.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1252.0', - State(pc_initial=1252 nstack_initial=1)), - ('$phi1322.0', - State(pc_initial=1322 nstack_initial=1))}, - '$phi316.0': {('$phi314.0', - State(pc_initial=314 nstack_initial=1))}, - '$phi318.0': {('$phi316.0', - State(pc_initial=316 nstack_initial=1))}, - '$phi318.1': {('$316for_iter.2', - State(pc_initial=316 nstack_initial=1))}, - '$phi416.0': {('$phi318.0', - State(pc_initial=318 nstack_initial=2))}, - '$phi504.0': {('$phi416.0', - State(pc_initial=416 nstack_initial=1))}, - '$phi554.0': {('$phi504.0', - State(pc_initial=504 nstack_initial=1))}, - '$phi628.0': {('$phi504.0', - State(pc_initial=504 nstack_initial=1)), - ('$phi554.0', - State(pc_initial=554 nstack_initial=1))}, - '$phi630.0': {('$phi416.0', - State(pc_initial=416 nstack_initial=1))}, - '$phi660.0': {('$phi318.0', - State(pc_initial=318 nstack_initial=2))}, - '$phi694.0': {('$phi660.0', - State(pc_initial=660 nstack_initial=1))}, - '$phi740.0': {('$phi628.0', - State(pc_initial=628 nstack_initial=1)), - ('$phi630.0', - State(pc_initial=630 nstack_initial=1)), - ('$phi660.0', - State(pc_initial=660 nstack_initial=1)), - ('$phi694.0', - State(pc_initial=694 nstack_initial=1))}, - '$phi770.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1))}, - '$phi770.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi1034.1', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.1', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.1', - State(pc_initial=1094 nstack_initial=2))}, - '$phi772.0': {('$phi770.0', - State(pc_initial=770 nstack_initial=2))}, - '$phi772.1': {('$phi770.1', - State(pc_initial=770 nstack_initial=2))}, - '$phi772.2': {('$770for_iter.3', - State(pc_initial=770 nstack_initial=2))}, - '$phi832.0': {('$phi772.0', - State(pc_initial=772 nstack_initial=3)), - ('$phi886.0', - State(pc_initial=886 nstack_initial=3)), - ('$phi942.0', - State(pc_initial=942 nstack_initial=3))}, - '$phi832.1': {('$phi772.1', - State(pc_initial=772 nstack_initial=3)), - ('$phi886.1', - State(pc_initial=886 nstack_initial=3)), - ('$phi942.1', - State(pc_initial=942 nstack_initial=3))}, - '$phi832.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3)), - ('$phi886.2', - State(pc_initial=886 nstack_initial=3)), - ('$phi942.2', - State(pc_initial=942 nstack_initial=3))}, - '$phi834.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi834.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi834.2': {('$phi832.2', - State(pc_initial=832 nstack_initial=3))}, - '$phi834.3': {('$832for_iter.4', - State(pc_initial=832 nstack_initial=3))}, - '$phi886.0': {('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi886.1': {('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi886.2': {('$phi834.2', - State(pc_initial=834 nstack_initial=4))}, - '$phi942.0': {('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi942.1': {('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi942.2': {('$phi834.2', - State(pc_initial=834 nstack_initial=4))}, - '$phi954.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi954.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}}) -13:52:49,298 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1018.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1018.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi1022.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1022.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi1034.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1034.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi1056.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1056.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi1082.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1082.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi1094.0': {('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1094.1': {('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi1112.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1146.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1226.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1252.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1256.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1296.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi1322.0': {('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi314.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi316.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi318.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi318.1': {('$316for_iter.2', - State(pc_initial=316 nstack_initial=1))}, - '$phi416.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi504.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi554.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi628.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi630.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi660.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi694.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi740.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi1034.0', - State(pc_initial=1034 nstack_initial=2)), - ('$phi1082.0', - State(pc_initial=1082 nstack_initial=2)), - ('$phi1094.0', - State(pc_initial=1094 nstack_initial=2)), - ('$phi740.0', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi770.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi770.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi772.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3))}, - '$phi772.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.1', - State(pc_initial=832 nstack_initial=3))}, - '$phi772.2': {('$770for_iter.3', - State(pc_initial=770 nstack_initial=2))}, - '$phi832.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi832.0', - State(pc_initial=832 nstack_initial=3)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi832.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi832.1', - State(pc_initial=832 nstack_initial=3)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi832.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3)), - ('$phi834.2', - State(pc_initial=834 nstack_initial=4))}, - '$phi834.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi834.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi834.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3)), - ('$phi834.2', - State(pc_initial=834 nstack_initial=4))}, - '$phi834.3': {('$832for_iter.4', - State(pc_initial=832 nstack_initial=3))}, - '$phi886.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi886.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi886.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi942.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi942.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi942.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi954.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi954.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}}) -13:52:49,300 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1018.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1018.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi1022.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1022.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi1034.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1034.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi1056.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1056.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi1082.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1082.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi1094.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1094.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi1112.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1146.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1226.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1252.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1256.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1296.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi1322.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi314.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi316.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi318.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi318.1': {('$316for_iter.2', - State(pc_initial=316 nstack_initial=1))}, - '$phi416.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi504.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi554.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi628.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi630.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi660.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi694.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi740.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi770.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi770.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi772.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0)), - ('$phi834.0', - State(pc_initial=834 nstack_initial=4))}, - '$phi772.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1)), - ('$phi834.1', - State(pc_initial=834 nstack_initial=4))}, - '$phi772.2': {('$770for_iter.3', - State(pc_initial=770 nstack_initial=2))}, - '$phi832.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi832.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi832.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi834.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi834.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi834.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi834.3': {('$832for_iter.4', - State(pc_initial=832 nstack_initial=3))}, - '$phi886.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi886.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi886.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi942.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi942.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi942.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi954.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi954.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}}) -13:52:49,301 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1018.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1018.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1022.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1022.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1034.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1034.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1056.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1056.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1082.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1082.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1094.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1094.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1112.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1146.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1226.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1252.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1256.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1296.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1322.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi314.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi316.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi318.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi318.1': {('$316for_iter.2', - State(pc_initial=316 nstack_initial=1))}, - '$phi416.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi504.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi554.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi628.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi630.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi660.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi694.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi740.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi770.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi770.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi772.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi772.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi772.2': {('$770for_iter.3', - State(pc_initial=770 nstack_initial=2))}, - '$phi832.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi832.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi832.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi834.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi834.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi834.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi834.3': {('$832for_iter.4', - State(pc_initial=832 nstack_initial=3))}, - '$phi886.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi886.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi886.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi942.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi942.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi942.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi954.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi954.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}}) -13:52:49,301 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1018.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1018.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1022.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1022.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1034.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1034.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1056.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1056.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1082.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1082.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1094.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1094.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi1112.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1146.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1226.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1252.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1256.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1296.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi1322.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi314.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi316.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi318.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi318.1': {('$316for_iter.2', - State(pc_initial=316 nstack_initial=1))}, - '$phi416.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi504.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi554.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi628.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi630.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi660.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi694.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi740.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi770.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi770.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi772.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi772.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi772.2': {('$770for_iter.3', - State(pc_initial=770 nstack_initial=2))}, - '$phi832.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi832.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi832.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi834.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi834.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi834.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi834.3': {('$832for_iter.4', - State(pc_initial=832 nstack_initial=3))}, - '$phi886.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi886.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi886.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi942.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi942.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}, - '$phi942.2': {('$830get_iter.12', - State(pc_initial=772 nstack_initial=3))}, - '$phi954.0': {('$312get_iter.39', - State(pc_initial=0 nstack_initial=0))}, - '$phi954.1': {('$768get_iter.5', - State(pc_initial=740 nstack_initial=1))}}) -13:52:49,302 numba.core.byteflow DEBUG keep phismap: {'$phi316.0': {('$312get_iter.39', State(pc_initial=0 nstack_initial=0))}, - '$phi318.1': {('$316for_iter.2', State(pc_initial=316 nstack_initial=1))}, - '$phi770.1': {('$768get_iter.5', State(pc_initial=740 nstack_initial=1))}, - '$phi772.2': {('$770for_iter.3', State(pc_initial=770 nstack_initial=2))}, - '$phi832.2': {('$830get_iter.12', State(pc_initial=772 nstack_initial=3))}, - '$phi834.3': {('$832for_iter.4', State(pc_initial=832 nstack_initial=3))}} -13:52:49,302 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi316.0': '$312get_iter.39'}, - State(pc_initial=316 nstack_initial=1): {'$phi318.1': '$316for_iter.2'}, - State(pc_initial=740 nstack_initial=1): {'$phi770.1': '$768get_iter.5'}, - State(pc_initial=770 nstack_initial=2): {'$phi772.2': '$770for_iter.3'}, - State(pc_initial=772 nstack_initial=3): {'$phi832.2': '$830get_iter.12'}, - State(pc_initial=832 nstack_initial=3): {'$phi834.3': '$832for_iter.4'}}) -13:52:49,302 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,302 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'item': '$4load_global.0', 'res': '$16load_attr.2'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'res': '$k26.3'}), (28, {}), (30, {}), (32, {'func': '$16load_attr.2', 'args': ['$k26.3'], 'kw_names': None, 'res': '$32call.4'}), (34, {}), (36, {}), (38, {}), (40, {}), (42, {'res': '$bandwidth42.5'}), (44, {'op': '*', 'lhs': '$32call.4', 'rhs': '$bandwidth42.5', 'res': '$binop_mul44.6'}), (46, {}), (48, {'value': '$binop_mul44.6'}), (50, {'idx': 0, 'res': '$50load_global.7'}), (52, {}), (54, {}), (56, {}), (58, {}), (60, {}), (62, {'item': '$50load_global.7', 'res': '$62load_attr.9'}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {'res': '$distances72.10'}), (74, {'item': '$distances72.10', 'res': '$74load_attr.11'}), (76, {}), (78, {}), (80, {}), (82, {}), (84, {'res': '$const84.12'}), (86, {'index': '$const84.12', 'target': '$74load_attr.11', 'res': '$86binary_subscr.13'}), (88, {}), (90, {}), (92, {}), (94, {}), (96, {'idx': 0, 'res': '$96load_global.14'}), (98, {}), (100, {}), (102, {}), (104, {}), (106, {}), (108, {'item': '$96load_global.14', 'res': '$108load_attr.15'}), (110, {}), (112, {}), (114, {}), (116, {}), (120, {}), (122, {}), (124, {'func': '$62load_attr.9', 'args': ['$86binary_subscr.13', '$108load_attr.15'], 'kw_names': 2, 'res': '$124call.16'}), (126, {}), (128, {}), (130, {}), (132, {}), (134, {'value': '$124call.16'}), (136, {'idx': 0, 'res': '$136load_global.17'}), (138, {}), (140, {}), (142, {}), (144, {}), (146, {}), (148, {'item': '$136load_global.17', 'res': '$148load_attr.19'}), (150, {}), (152, {}), (154, {}), (156, {}), (158, {'res': '$distances158.20'}), (160, {'item': '$distances158.20', 'res': '$160load_attr.21'}), (162, {}), (164, {}), (166, {}), (168, {}), (170, {'res': '$const170.22'}), (172, {'index': '$const170.22', 'target': '$160load_attr.21', 'res': '$172binary_subscr.23'}), (174, {}), (176, {}), (178, {}), (180, {}), (182, {'idx': 0, 'res': '$182load_global.24'}), (184, {}), (186, {}), (188, {}), (190, {}), (192, {}), (194, {'item': '$182load_global.24', 'res': '$194load_attr.25'}), (196, {}), (198, {}), (200, {}), (202, {}), (206, {}), (208, {}), (210, {'func': '$148load_attr.19', 'args': ['$172binary_subscr.23', '$194load_attr.25'], 'kw_names': 2, 'res': '$210call.26'}), (212, {}), (214, {}), (216, {}), (218, {}), (220, {'value': '$210call.26'}), (222, {'idx': 0, 'res': '$222load_global.27'}), (224, {}), (226, {}), (228, {}), (230, {}), (232, {}), (234, {'item': '$222load_global.27', 'res': '$234load_attr.29'}), (236, {}), (238, {}), (240, {}), (242, {}), (244, {'res': '$distances244.30'}), (246, {}), (248, {}), (250, {'func': '$234load_attr.29', 'args': ['$distances244.30'], 'kw_names': None, 'res': '$250call.31'}), (252, {}), (254, {}), (256, {}), (258, {}), (260, {'value': '$250call.31'}), (262, {'idx': 6, 'res': '$262load_global.32'}), (264, {}), (266, {}), (268, {}), (270, {}), (272, {}), (274, {'res': '$distances274.34'}), (276, {'item': '$distances274.34', 'res': '$276load_attr.35'}), (278, {}), (280, {}), (282, {}), (284, {}), (286, {'res': '$const286.36'}), (288, {'index': '$const286.36', 'target': '$276load_attr.35', 'res': '$288binary_subscr.37'}), (290, {}), (292, {}), (294, {}), (296, {}), (298, {}), (300, {}), (302, {'func': '$262load_global.32', 'args': ['$288binary_subscr.37'], 'kw_names': None, 'res': '$302call.38'}), (304, {}), (306, {}), (308, {}), (310, {}), (312, {'value': '$302call.38', 'res': '$312get_iter.39'})), outgoing_phis={'$phi316.0': '$312get_iter.39'}, blockstack=(), active_try_block=None, outgoing_edgepushed={314: ('$312get_iter.39',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=314 nstack_initial=1): -AdaptBlockInfo(insts=((314, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={316: ('$phi314.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=316 nstack_initial=1): -AdaptBlockInfo(insts=((316, {'iterator': '$phi316.0', 'pair': '$316for_iter.1', 'indval': '$316for_iter.2', 'pred': '$316for_iter.3'}),), outgoing_phis={'$phi318.1': '$316for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1326: (), 318: ('$phi316.0', '$316for_iter.2')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=318 nstack_initial=2): -AdaptBlockInfo(insts=((318, {'value': '$phi318.1'}), (320, {'res': '$const320.2'}), (322, {'value': '$const320.2'}), (324, {'idx': 7, 'res': '$324load_global.3'}), (326, {}), (328, {}), (330, {}), (332, {}), (334, {}), (336, {'value': '$324load_global.3'}), (338, {'res': '$const338.4'}), (340, {'value': '$const338.4'}), (342, {'res': '$distances342.5'}), (344, {'res': '$i344.6'}), (346, {'index': '$i344.6', 'target': '$distances342.5', 'res': '$346binary_subscr.7'}), (348, {}), (350, {}), (352, {}), (354, {}), (356, {'value': '$346binary_subscr.7'}), (358, {'res': '$ith_distances358.8'}), (360, {'res': '$ith_distances360.9'}), (362, {'res': '$const362.10'}), (364, {'lhs': '$ith_distances360.9', 'rhs': '$const362.10', 'res': '$364compare_op.11'}), (366, {}), (368, {}), (370, {'index': '$364compare_op.11', 'target': '$ith_distances358.8', 'res': '$370binary_subscr.12'}), (372, {}), (374, {}), (376, {}), (378, {}), (380, {'value': '$370binary_subscr.12'}), (382, {'res': '$non_zero_dists382.13'}), (384, {'item': '$non_zero_dists382.13', 'res': '$384load_attr.14'}), (386, {}), (388, {}), (390, {}), (392, {}), (394, {'res': '$const394.15'}), (396, {'index': '$const394.15', 'target': '$384load_attr.14', 'res': '$396binary_subscr.16'}), (398, {}), (400, {}), (402, {}), (404, {}), (406, {'res': '$local_connectivity406.17'}), (408, {'lhs': '$396binary_subscr.16', 'rhs': '$local_connectivity406.17', 'res': '$408compare_op.18'}), (410, {}), (412, {}), (414, {'pred': '$408compare_op.18'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={416: ('$phi318.0',), 660: ('$phi318.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=416 nstack_initial=1): -AdaptBlockInfo(insts=((416, {'idx': 8, 'res': '$416load_global.1'}), (418, {}), (420, {}), (422, {}), (424, {}), (426, {}), (428, {'idx': 0, 'res': '$428load_global.3'}), (430, {}), (432, {}), (434, {}), (436, {}), (438, {}), (440, {'item': '$428load_global.3', 'res': '$440load_attr.5'}), (442, {}), (444, {}), (446, {}), (448, {}), (450, {'res': '$local_connectivity450.6'}), (452, {}), (454, {}), (456, {'func': '$440load_attr.5', 'args': ['$local_connectivity450.6'], 'kw_names': None, 'res': '$456call.7'}), (458, {}), (460, {}), (462, {}), (464, {}), (466, {}), (468, {}), (470, {'func': '$416load_global.1', 'args': ['$456call.7'], 'kw_names': None, 'res': '$470call.8'}), (472, {}), (474, {}), (476, {}), (478, {}), (480, {'value': '$470call.8'}), (482, {'res': '$local_connectivity482.9'}), (484, {'res': '$index484.10'}), (486, {'op': '-', 'lhs': '$local_connectivity482.9', 'rhs': '$index484.10', 'res': '$binop_sub486.11'}), (488, {}), (490, {'value': '$binop_sub486.11'}), (492, {'res': '$index492.12'}), (494, {'res': '$const494.13'}), (496, {'lhs': '$index492.12', 'rhs': '$const494.13', 'res': '$496compare_op.14'}), (498, {}), (500, {}), (502, {'pred': '$496compare_op.14'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={504: ('$phi416.0',), 630: ('$phi416.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=504 nstack_initial=1): -AdaptBlockInfo(insts=((504, {'res': '$non_zero_dists504.1'}), (506, {'res': '$index506.2'}), (508, {'res': '$const508.3'}), (510, {'op': '-', 'lhs': '$index506.2', 'rhs': '$const508.3', 'res': '$binop_sub510.4'}), (512, {}), (514, {'index': '$binop_sub510.4', 'target': '$non_zero_dists504.1', 'res': '$514binary_subscr.5'}), (516, {}), (518, {}), (520, {}), (522, {}), (524, {'res': '$rho524.6'}), (526, {'res': '$i526.7'}), (528, {'target': '$rho524.6', 'index': '$i526.7', 'value': '$514binary_subscr.5'}), (530, {}), (532, {'res': '$interpolation532.8'}), (534, {'idx': 10, 'res': '$534load_global.9'}), (536, {}), (538, {}), (540, {}), (542, {}), (544, {}), (546, {'lhs': '$interpolation532.8', 'rhs': '$534load_global.9', 'res': '$546compare_op.10'}), (548, {}), (550, {}), (552, {'pred': '$546compare_op.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={554: ('$phi504.0',), 628: ('$phi504.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=554 nstack_initial=1): -AdaptBlockInfo(insts=((554, {'res': '$rho554.1'}), (556, {'res': '$i556.2'}), (562, {'index': '$i556.2', 'target': '$rho554.1', 'res': '$562binary_subscr.3'}), (564, {}), (566, {}), (568, {}), (570, {}), (572, {'res': '$interpolation572.4'}), (574, {'res': '$non_zero_dists574.5'}), (576, {'res': '$index576.6'}), (578, {'index': '$index576.6', 'target': '$non_zero_dists574.5', 'res': '$578binary_subscr.7'}), (580, {}), (582, {}), (584, {}), (586, {}), (588, {'res': '$non_zero_dists588.8'}), (590, {'res': '$index590.9'}), (592, {'res': '$const592.10'}), (594, {'op': '-', 'lhs': '$index590.9', 'rhs': '$const592.10', 'res': '$binop_sub594.11'}), (596, {}), (598, {'index': '$binop_sub594.11', 'target': '$non_zero_dists588.8', 'res': '$598binary_subscr.12'}), (600, {}), (602, {}), (604, {}), (606, {}), (608, {'op': '-', 'lhs': '$578binary_subscr.7', 'rhs': '$598binary_subscr.12', 'res': '$binop_sub608.13'}), (610, {}), (612, {'op': '*', 'lhs': '$interpolation572.4', 'rhs': '$binop_sub608.13', 'res': '$binop_mul612.14'}), (614, {}), (616, {'op': '+=', 'lhs': '$562binary_subscr.3', 'rhs': '$binop_mul612.14', 'res': '$binop_iadd616.15'}), (618, {}), (624, {'target': '$rho554.1', 'index': '$i556.2', 'value': '$binop_iadd616.15'}), (626, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={628: ('$phi554.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=628 nstack_initial=1): -AdaptBlockInfo(insts=((628, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={740: ('$phi628.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=630 nstack_initial=1): -AdaptBlockInfo(insts=((630, {'res': '$interpolation630.1'}), (632, {'res': '$non_zero_dists632.2'}), (634, {'res': '$const634.3'}), (636, {'index': '$const634.3', 'target': '$non_zero_dists632.2', 'res': '$636binary_subscr.4'}), (638, {}), (640, {}), (642, {}), (644, {}), (646, {'op': '*', 'lhs': '$interpolation630.1', 'rhs': '$636binary_subscr.4', 'res': '$binop_mul646.5'}), (648, {}), (650, {'res': '$rho650.6'}), (652, {'res': '$i652.7'}), (654, {'target': '$rho650.6', 'index': '$i652.7', 'value': '$binop_mul646.5'}), (656, {}), (658, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={740: ('$phi630.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=660 nstack_initial=1): -AdaptBlockInfo(insts=((660, {'res': '$non_zero_dists660.1'}), (662, {'item': '$non_zero_dists660.1', 'res': '$662load_attr.2'}), (664, {}), (666, {}), (668, {}), (670, {}), (672, {'res': '$const672.3'}), (674, {'index': '$const672.3', 'target': '$662load_attr.2', 'res': '$674binary_subscr.4'}), (676, {}), (678, {}), (680, {}), (682, {}), (684, {'res': '$const684.5'}), (686, {'lhs': '$674binary_subscr.4', 'rhs': '$const684.5', 'res': '$686compare_op.6'}), (688, {}), (690, {}), (692, {'pred': '$686compare_op.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={694: ('$phi660.0',), 740: ('$phi660.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=694 nstack_initial=1): -AdaptBlockInfo(insts=((694, {'idx': 0, 'res': '$694load_global.1'}), (696, {}), (698, {}), (700, {}), (702, {}), (704, {}), (706, {'item': '$694load_global.1', 'res': '$706load_attr.3'}), (708, {}), (710, {}), (712, {}), (714, {}), (716, {'res': '$non_zero_dists716.4'}), (718, {}), (720, {}), (722, {'func': '$706load_attr.3', 'args': ['$non_zero_dists716.4'], 'kw_names': None, 'res': '$722call.5'}), (724, {}), (726, {}), (728, {}), (730, {}), (732, {'res': '$rho732.6'}), (734, {'res': '$i734.7'}), (736, {'target': '$rho732.6', 'index': '$i734.7', 'value': '$722call.5'}), (738, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={740: ('$phi694.0',)}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=740 nstack_initial=1): -AdaptBlockInfo(insts=((740, {'idx': 6, 'res': '$740load_global.1'}), (742, {}), (744, {}), (746, {}), (748, {}), (750, {}), (752, {'res': '$n_iter752.3'}), (754, {}), (756, {}), (758, {'func': '$740load_global.1', 'args': ['$n_iter752.3'], 'kw_names': None, 'res': '$758call.4'}), (760, {}), (762, {}), (764, {}), (766, {}), (768, {'value': '$758call.4', 'res': '$768get_iter.5'})), outgoing_phis={'$phi770.1': '$768get_iter.5'}, blockstack=(), active_try_block=None, outgoing_edgepushed={770: ('$phi740.0', '$768get_iter.5')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=770 nstack_initial=2): -AdaptBlockInfo(insts=((770, {'iterator': '$phi770.1', 'pair': '$770for_iter.2', 'indval': '$770for_iter.3', 'pred': '$770for_iter.4'}),), outgoing_phis={'$phi772.2': '$770for_iter.3'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1112: ('$phi770.0',), 772: ('$phi770.0', '$phi770.1', '$770for_iter.3')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=772 nstack_initial=3): -AdaptBlockInfo(insts=((772, {'value': '$phi772.2'}), (774, {'res': '$const774.3'}), (776, {'value': '$const774.3'}), (778, {'idx': 6, 'res': '$778load_global.4'}), (780, {}), (782, {}), (784, {}), (786, {}), (788, {}), (790, {'res': '$const790.6'}), (792, {'res': '$distances792.7'}), (794, {'item': '$distances792.7', 'res': '$794load_attr.8'}), (796, {}), (798, {}), (800, {}), (802, {}), (804, {'res': '$const804.9'}), (806, {'index': '$const804.9', 'target': '$794load_attr.8', 'res': '$806binary_subscr.10'}), (808, {}), (810, {}), (812, {}), (814, {}), (816, {}), (818, {}), (820, {'func': '$778load_global.4', 'args': ['$const790.6', '$806binary_subscr.10'], 'kw_names': None, 'res': '$820call.11'}), (822, {}), (824, {}), (826, {}), (828, {}), (830, {'value': '$820call.11', 'res': '$830get_iter.12'})), outgoing_phis={'$phi832.2': '$830get_iter.12'}, blockstack=(), active_try_block=None, outgoing_edgepushed={832: ('$phi772.0', '$phi772.1', '$830get_iter.12')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=832 nstack_initial=3): -AdaptBlockInfo(insts=((832, {'iterator': '$phi832.2', 'pair': '$832for_iter.3', 'indval': '$832for_iter.4', 'pred': '$832for_iter.5'}),), outgoing_phis={'$phi834.3': '$832for_iter.4'}, blockstack=(), active_try_block=None, outgoing_edgepushed={954: ('$phi832.0', '$phi832.1'), 834: ('$phi832.0', '$phi832.1', '$phi832.2', '$832for_iter.4')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=834 nstack_initial=4): -AdaptBlockInfo(insts=((834, {'value': '$phi834.3'}), (836, {'res': '$distances836.4'}), (838, {'res': '$i838.5'}), (840, {'res': '$j840.6'}), (842, {'items': ['$i838.5', '$j840.6'], 'res': '$842build_tuple.7'}), (844, {'index': '$842build_tuple.7', 'target': '$distances836.4', 'res': '$844binary_subscr.8'}), (846, {}), (848, {}), (850, {}), (852, {}), (854, {'res': '$rho854.9'}), (856, {'res': '$i856.10'}), (858, {'index': '$i856.10', 'target': '$rho854.9', 'res': '$858binary_subscr.11'}), (860, {}), (862, {}), (864, {}), (866, {}), (868, {'op': '-', 'lhs': '$844binary_subscr.8', 'rhs': '$858binary_subscr.11', 'res': '$binop_sub868.12'}), (870, {}), (872, {'value': '$binop_sub868.12'}), (874, {'res': '$d874.13'}), (876, {'res': '$const876.14'}), (878, {'lhs': '$d874.13', 'rhs': '$const876.14', 'res': '$878compare_op.15'}), (880, {}), (882, {}), (884, {'pred': '$878compare_op.15'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={886: ('$phi834.0', '$phi834.1', '$phi834.2'), 942: ('$phi834.0', '$phi834.1', '$phi834.2')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=886 nstack_initial=3): -AdaptBlockInfo(insts=((886, {'res': '$psum886.3'}), (888, {'idx': 0, 'res': '$888load_global.4'}), (890, {}), (892, {}), (894, {}), (896, {}), (898, {}), (900, {'item': '$888load_global.4', 'res': '$900load_attr.6'}), (902, {}), (904, {}), (906, {}), (908, {}), (910, {'res': '$d910.7'}), (912, {'res': '$mid912.8'}), (914, {'op': '/', 'lhs': '$d910.7', 'rhs': '$mid912.8', 'res': '$binop_truediv914.9'}), (916, {}), (918, {'value': '$binop_truediv914.9', 'res': '$918unary_negative.10'}), (920, {}), (922, {}), (924, {'func': '$900load_attr.6', 'args': ['$918unary_negative.10'], 'kw_names': None, 'res': '$924call.11'}), (926, {}), (928, {}), (930, {}), (932, {}), (934, {'op': '+=', 'lhs': '$psum886.3', 'rhs': '$924call.11', 'res': '$binop_iadd934.12'}), (936, {}), (938, {'value': '$binop_iadd934.12'}), (940, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={832: ('$phi886.0', '$phi886.1', '$phi886.2')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=942 nstack_initial=3): -AdaptBlockInfo(insts=((942, {'res': '$psum942.3'}), (944, {'res': '$const944.4'}), (946, {'op': '+=', 'lhs': '$psum942.3', 'rhs': '$const944.4', 'res': '$binop_iadd946.5'}), (948, {}), (950, {'value': '$binop_iadd946.5'}), (952, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={832: ('$phi942.0', '$phi942.1', '$phi942.2')}) -13:52:49,303 numba.core.byteflow DEBUG block_infos State(pc_initial=954 nstack_initial=2): -AdaptBlockInfo(insts=((954, {'idx': 0, 'res': '$954load_global.2'}), (956, {}), (958, {}), (960, {}), (962, {}), (964, {}), (966, {'item': '$954load_global.2', 'res': '$966load_attr.4'}), (968, {}), (970, {}), (972, {}), (974, {}), (976, {'res': '$psum976.5'}), (978, {'res': '$target978.6'}), (980, {'op': '-', 'lhs': '$psum976.5', 'rhs': '$target978.6', 'res': '$binop_sub980.7'}), (982, {}), (984, {}), (986, {}), (988, {'func': '$966load_attr.4', 'args': ['$binop_sub980.7'], 'kw_names': None, 'res': '$988call.8'}), (990, {}), (992, {}), (994, {}), (996, {}), (998, {'idx': 10, 'res': '$998load_global.9'}), (1000, {}), (1002, {}), (1004, {}), (1006, {}), (1008, {}), (1010, {'lhs': '$988call.8', 'rhs': '$998load_global.9', 'res': '$1010compare_op.10'}), (1012, {}), (1014, {}), (1016, {'pred': '$1010compare_op.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1018: ('$phi954.0', '$phi954.1'), 1022: ('$phi954.0', '$phi954.1')}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1018 nstack_initial=2): -AdaptBlockInfo(insts=((1020, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1112: ('$phi1018.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1022 nstack_initial=2): -AdaptBlockInfo(insts=((1022, {'res': '$psum1022.2'}), (1024, {'res': '$target1024.3'}), (1026, {'lhs': '$psum1022.2', 'rhs': '$target1024.3', 'res': '$1026compare_op.4'}), (1028, {}), (1030, {}), (1032, {'pred': '$1026compare_op.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1034: ('$phi1022.0', '$phi1022.1'), 1056: ('$phi1022.0', '$phi1022.1')}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1034 nstack_initial=2): -AdaptBlockInfo(insts=((1034, {'res': '$mid1034.2'}), (1036, {'value': '$mid1034.2'}), (1038, {'res': '$lo1038.3'}), (1040, {'res': '$hi1040.4'}), (1042, {'op': '+', 'lhs': '$lo1038.3', 'rhs': '$hi1040.4', 'res': '$binop_add1042.5'}), (1044, {}), (1046, {'res': '$const1046.6'}), (1048, {'op': '/', 'lhs': '$binop_add1042.5', 'rhs': '$const1046.6', 'res': '$binop_truediv1048.7'}), (1050, {}), (1052, {'value': '$binop_truediv1048.7'}), (1054, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={770: ('$phi1034.0', '$phi1034.1')}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1056 nstack_initial=2): -AdaptBlockInfo(insts=((1056, {'res': '$mid1056.2'}), (1058, {'value': '$mid1056.2'}), (1060, {'res': '$hi1060.3'}), (1062, {'idx': 7, 'res': '$1062load_global.4'}), (1064, {}), (1066, {}), (1068, {}), (1070, {}), (1072, {}), (1074, {'lhs': '$hi1060.3', 'rhs': '$1062load_global.4', 'res': '$1074compare_op.5'}), (1076, {}), (1078, {}), (1080, {'pred': '$1074compare_op.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1082: ('$phi1056.0', '$phi1056.1'), 1094: ('$phi1056.0', '$phi1056.1')}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1082 nstack_initial=2): -AdaptBlockInfo(insts=((1082, {'res': '$mid1082.2'}), (1084, {'res': '$const1084.3'}), (1086, {'op': '*=', 'lhs': '$mid1082.2', 'rhs': '$const1084.3', 'res': '$binop_imul1086.4'}), (1088, {}), (1090, {'value': '$binop_imul1086.4'}), (1092, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={770: ('$phi1082.0', '$phi1082.1')}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1094 nstack_initial=2): -AdaptBlockInfo(insts=((1094, {'res': '$lo1094.2'}), (1096, {'res': '$hi1096.3'}), (1098, {'op': '+', 'lhs': '$lo1094.2', 'rhs': '$hi1096.3', 'res': '$binop_add1098.4'}), (1100, {}), (1102, {'res': '$const1102.5'}), (1104, {'op': '/', 'lhs': '$binop_add1098.4', 'rhs': '$const1102.5', 'res': '$binop_truediv1104.6'}), (1106, {}), (1108, {'value': '$binop_truediv1104.6'}), (1110, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={770: ('$phi1094.0', '$phi1094.1')}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1112 nstack_initial=1): -AdaptBlockInfo(insts=((1112, {'res': '$mid1112.1'}), (1114, {'res': '$result1114.2'}), (1116, {'res': '$i1116.3'}), (1118, {'target': '$result1114.2', 'index': '$i1116.3', 'value': '$mid1112.1'}), (1120, {}), (1122, {'res': '$rho1122.4'}), (1124, {'res': '$i1124.5'}), (1126, {'index': '$i1124.5', 'target': '$rho1122.4', 'res': '$1126binary_subscr.6'}), (1128, {}), (1130, {}), (1132, {}), (1134, {}), (1136, {'res': '$const1136.7'}), (1138, {'lhs': '$1126binary_subscr.6', 'rhs': '$const1136.7', 'res': '$1138compare_op.8'}), (1140, {}), (1142, {}), (1144, {'pred': '$1138compare_op.8'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1146: ('$phi1112.0',), 1256: ('$phi1112.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1146 nstack_initial=1): -AdaptBlockInfo(insts=((1146, {'idx': 0, 'res': '$1146load_global.1'}), (1148, {}), (1150, {}), (1152, {}), (1154, {}), (1156, {}), (1158, {'item': '$1146load_global.1', 'res': '$1158load_attr.3'}), (1160, {}), (1162, {}), (1164, {}), (1166, {}), (1168, {'res': '$ith_distances1168.4'}), (1170, {}), (1172, {}), (1174, {'func': '$1158load_attr.3', 'args': ['$ith_distances1168.4'], 'kw_names': None, 'res': '$1174call.5'}), (1176, {}), (1178, {}), (1180, {}), (1182, {}), (1184, {'value': '$1174call.5'}), (1186, {'res': '$result1186.6'}), (1188, {'res': '$i1188.7'}), (1190, {'index': '$i1188.7', 'target': '$result1186.6', 'res': '$1190binary_subscr.8'}), (1192, {}), (1194, {}), (1196, {}), (1198, {}), (1200, {'idx': 14, 'res': '$1200load_global.9'}), (1202, {}), (1204, {}), (1206, {}), (1208, {}), (1210, {}), (1212, {'res': '$mean_ith_distances1212.10'}), (1214, {'op': '*', 'lhs': '$1200load_global.9', 'rhs': '$mean_ith_distances1212.10', 'res': '$binop_mul1214.11'}), (1216, {}), (1218, {'lhs': '$1190binary_subscr.8', 'rhs': '$binop_mul1214.11', 'res': '$1218compare_op.12'}), (1220, {}), (1222, {}), (1224, {'pred': '$1218compare_op.12'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1226: ('$phi1146.0',), 1252: ('$phi1146.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1226 nstack_initial=1): -AdaptBlockInfo(insts=((1226, {'idx': 14, 'res': '$1226load_global.1'}), (1228, {}), (1230, {}), (1232, {}), (1234, {}), (1236, {}), (1238, {'res': '$mean_ith_distances1238.2'}), (1240, {'op': '*', 'lhs': '$1226load_global.1', 'rhs': '$mean_ith_distances1238.2', 'res': '$binop_mul1240.3'}), (1242, {}), (1244, {'res': '$result1244.4'}), (1246, {'res': '$i1246.5'}), (1248, {'target': '$result1244.4', 'index': '$i1246.5', 'value': '$binop_mul1240.3'}), (1250, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1252: ('$phi1226.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1252 nstack_initial=1): -AdaptBlockInfo(insts=((1252, {}), (1254, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={314: ('$phi1252.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1256 nstack_initial=1): -AdaptBlockInfo(insts=((1256, {'res': '$result1256.1'}), (1258, {'res': '$i1258.2'}), (1260, {'index': '$i1258.2', 'target': '$result1256.1', 'res': '$1260binary_subscr.3'}), (1262, {}), (1264, {}), (1266, {}), (1268, {}), (1270, {'idx': 14, 'res': '$1270load_global.4'}), (1272, {}), (1274, {}), (1276, {}), (1278, {}), (1280, {}), (1282, {'res': '$mean_distances1282.5'}), (1284, {'op': '*', 'lhs': '$1270load_global.4', 'rhs': '$mean_distances1282.5', 'res': '$binop_mul1284.6'}), (1286, {}), (1288, {'lhs': '$1260binary_subscr.3', 'rhs': '$binop_mul1284.6', 'res': '$1288compare_op.7'}), (1290, {}), (1292, {}), (1294, {'pred': '$1288compare_op.7'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1296: ('$phi1256.0',), 1322: ('$phi1256.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1296 nstack_initial=1): -AdaptBlockInfo(insts=((1296, {'idx': 14, 'res': '$1296load_global.1'}), (1298, {}), (1300, {}), (1302, {}), (1304, {}), (1306, {}), (1308, {'res': '$mean_distances1308.2'}), (1310, {'op': '*', 'lhs': '$1296load_global.1', 'rhs': '$mean_distances1308.2', 'res': '$binop_mul1310.3'}), (1312, {}), (1314, {'res': '$result1314.4'}), (1316, {'res': '$i1316.5'}), (1318, {'target': '$result1314.4', 'index': '$i1316.5', 'value': '$binop_mul1310.3'}), (1320, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1322: ('$phi1296.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1322 nstack_initial=1): -AdaptBlockInfo(insts=((1322, {}), (1324, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={314: ('$phi1322.0',)}) -13:52:49,304 numba.core.byteflow DEBUG block_infos State(pc_initial=1326 nstack_initial=0): -AdaptBlockInfo(insts=((1326, {'res': '$result1326.0'}), (1328, {'res': '$rho1328.1'}), (1330, {'items': ['$result1326.0', '$rho1328.1'], 'res': '$1330build_tuple.2'}), (1332, {'retval': '$1330build_tuple.2', 'castval': '$1332return_value.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,308 numba.core.interpreter DEBUG label 0: - distances = arg(0, name=distances) ['distances'] - k = arg(1, name=k) ['k'] - n_iter = arg(2, name=n_iter) ['n_iter'] - local_connectivity = arg(3, name=local_connectivity) ['local_connectivity'] - bandwidth = arg(4, name=bandwidth) ['bandwidth'] - $4load_global.0 = global(np: ) ['$4load_global.0'] - $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) ['$16load_attr.2', '$4load_global.0'] - $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) ['$16load_attr.2', '$32call.4', 'k'] - target = $32call.4 * bandwidth ['$32call.4', 'bandwidth', 'target'] - $50load_global.7 = global(np: ) ['$50load_global.7'] - $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) ['$50load_global.7', '$62load_attr.9'] - $74load_attr.11 = getattr(value=distances, attr=shape) ['$74load_attr.11', 'distances'] - $const84.12 = const(int, 0) ['$const84.12'] - $86binary_subscr.13 = getitem(value=$74load_attr.11, index=$const84.12, fn=) ['$74load_attr.11', '$86binary_subscr.13', '$const84.12'] - $96load_global.14 = global(np: ) ['$96load_global.14'] - $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) ['$108load_attr.15', '$96load_global.14'] - rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) ['$108load_attr.15', '$62load_attr.9', '$86binary_subscr.13', 'rho'] - $136load_global.17 = global(np: ) ['$136load_global.17'] - $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) ['$136load_global.17', '$148load_attr.19'] - $160load_attr.21 = getattr(value=distances, attr=shape) ['$160load_attr.21', 'distances'] - $const170.22 = const(int, 0) ['$const170.22'] - $172binary_subscr.23 = getitem(value=$160load_attr.21, index=$const170.22, fn=) ['$160load_attr.21', '$172binary_subscr.23', '$const170.22'] - $182load_global.24 = global(np: ) ['$182load_global.24'] - $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) ['$182load_global.24', '$194load_attr.25'] - result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) ['$148load_attr.19', '$172binary_subscr.23', '$194load_attr.25', 'result'] - $222load_global.27 = global(np: ) ['$222load_global.27'] - $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) ['$222load_global.27', '$234load_attr.29'] - mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) ['$234load_attr.29', 'distances', 'mean_distances'] - $262load_global.32 = global(range: ) ['$262load_global.32'] - $276load_attr.35 = getattr(value=distances, attr=shape) ['$276load_attr.35', 'distances'] - $const286.36 = const(int, 0) ['$const286.36'] - $288binary_subscr.37 = getitem(value=$276load_attr.35, index=$const286.36, fn=) ['$276load_attr.35', '$288binary_subscr.37', '$const286.36'] - $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) ['$262load_global.32', '$288binary_subscr.37', '$302call.38'] - $312get_iter.39 = getiter(value=$302call.38) ['$302call.38', '$312get_iter.39'] - $phi316.0 = $312get_iter.39 ['$312get_iter.39', '$phi316.0'] - jump 314 [] -label 314: - jump 316 [] -label 316: - $316for_iter.1 = iternext(value=$phi316.0) ['$316for_iter.1', '$phi316.0'] - $316for_iter.2 = pair_first(value=$316for_iter.1) ['$316for_iter.1', '$316for_iter.2'] - $316for_iter.3 = pair_second(value=$316for_iter.1) ['$316for_iter.1', '$316for_iter.3'] - $phi318.1 = $316for_iter.2 ['$316for_iter.2', '$phi318.1'] - branch $316for_iter.3, 318, 1326 ['$316for_iter.3'] -label 318: - i = $phi318.1 ['$phi318.1', 'i'] - lo = const(float, 0.0) ['lo'] - hi = global(NPY_INFINITY: inf) ['hi'] - mid = const(float, 1.0) ['mid'] - ith_distances = getitem(value=distances, index=i, fn=) ['distances', 'i', 'ith_distances'] - $const362.10 = const(float, 0.0) ['$const362.10'] - $364compare_op.11 = ith_distances > $const362.10 ['$364compare_op.11', '$const362.10', 'ith_distances'] - non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) ['$364compare_op.11', 'ith_distances', 'non_zero_dists'] - $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) ['$384load_attr.14', 'non_zero_dists'] - $const394.15 = const(int, 0) ['$const394.15'] - $396binary_subscr.16 = getitem(value=$384load_attr.14, index=$const394.15, fn=) ['$384load_attr.14', '$396binary_subscr.16', '$const394.15'] - $408compare_op.18 = $396binary_subscr.16 >= local_connectivity ['$396binary_subscr.16', '$408compare_op.18', 'local_connectivity'] - bool414 = global(bool: ) ['bool414'] - $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) ['$408compare_op.18', '$414pred', 'bool414'] - branch $414pred, 416, 660 ['$414pred'] -label 416: - $416load_global.1 = global(int: ) ['$416load_global.1'] - $428load_global.3 = global(np: ) ['$428load_global.3'] - $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) ['$428load_global.3', '$440load_attr.5'] - $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) ['$440load_attr.5', '$456call.7', 'local_connectivity'] - index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) ['$416load_global.1', '$456call.7', 'index'] - interpolation = local_connectivity - index ['index', 'interpolation', 'local_connectivity'] - $const494.13 = const(int, 0) ['$const494.13'] - $496compare_op.14 = index > $const494.13 ['$496compare_op.14', '$const494.13', 'index'] - bool502 = global(bool: ) ['bool502'] - $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) ['$496compare_op.14', '$502pred', 'bool502'] - branch $502pred, 504, 630 ['$502pred'] -label 504: - $const508.3 = const(int, 1) ['$const508.3'] - $binop_sub510.4 = index - $const508.3 ['$binop_sub510.4', '$const508.3', 'index'] - $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) ['$514binary_subscr.5', '$binop_sub510.4', 'non_zero_dists'] - rho[i] = $514binary_subscr.5 ['$514binary_subscr.5', 'i', 'rho'] - $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) ['$534load_global.9'] - $546compare_op.10 = interpolation > $534load_global.9 ['$534load_global.9', '$546compare_op.10', 'interpolation'] - bool552 = global(bool: ) ['bool552'] - $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) ['$546compare_op.10', '$552pred', 'bool552'] - branch $552pred, 554, 628 ['$552pred'] -label 554: - $562binary_subscr.3 = getitem(value=rho, index=i, fn=) ['$562binary_subscr.3', 'i', 'rho'] - $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) ['$578binary_subscr.7', 'index', 'non_zero_dists'] - $const592.10 = const(int, 1) ['$const592.10'] - $binop_sub594.11 = index - $const592.10 ['$binop_sub594.11', '$const592.10', 'index'] - $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) ['$598binary_subscr.12', '$binop_sub594.11', 'non_zero_dists'] - $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 ['$578binary_subscr.7', '$598binary_subscr.12', '$binop_sub608.13'] - $binop_mul612.14 = interpolation * $binop_sub608.13 ['$binop_mul612.14', '$binop_sub608.13', 'interpolation'] - $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) ['$562binary_subscr.3', '$binop_iadd616.15', '$binop_mul612.14'] - rho[i] = $binop_iadd616.15 ['$binop_iadd616.15', 'i', 'rho'] - jump 628 [] -label 628: - jump 740 [] -label 630: - $const634.3 = const(int, 0) ['$const634.3'] - $636binary_subscr.4 = getitem(value=non_zero_dists, index=$const634.3, fn=) ['$636binary_subscr.4', '$const634.3', 'non_zero_dists'] - $binop_mul646.5 = interpolation * $636binary_subscr.4 ['$636binary_subscr.4', '$binop_mul646.5', 'interpolation'] - rho[i] = $binop_mul646.5 ['$binop_mul646.5', 'i', 'rho'] - jump 740 [] -label 660: - $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) ['$662load_attr.2', 'non_zero_dists'] - $const672.3 = const(int, 0) ['$const672.3'] - $674binary_subscr.4 = getitem(value=$662load_attr.2, index=$const672.3, fn=) ['$662load_attr.2', '$674binary_subscr.4', '$const672.3'] - $const684.5 = const(int, 0) ['$const684.5'] - $686compare_op.6 = $674binary_subscr.4 > $const684.5 ['$674binary_subscr.4', '$686compare_op.6', '$const684.5'] - bool692 = global(bool: ) ['bool692'] - $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) ['$686compare_op.6', '$692pred', 'bool692'] - branch $692pred, 694, 740 ['$692pred'] -label 694: - $694load_global.1 = global(np: ) ['$694load_global.1'] - $706load_attr.3 = getattr(value=$694load_global.1, attr=max) ['$694load_global.1', '$706load_attr.3'] - $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) ['$706load_attr.3', '$722call.5', 'non_zero_dists'] - rho[i] = $722call.5 ['$722call.5', 'i', 'rho'] - jump 740 [] -label 740: - $740load_global.1 = global(range: ) ['$740load_global.1'] - $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) ['$740load_global.1', '$758call.4', 'n_iter'] - $768get_iter.5 = getiter(value=$758call.4) ['$758call.4', '$768get_iter.5'] - $phi770.1 = $768get_iter.5 ['$768get_iter.5', '$phi770.1'] - jump 770 [] -label 770: - $770for_iter.2 = iternext(value=$phi770.1) ['$770for_iter.2', '$phi770.1'] - $770for_iter.3 = pair_first(value=$770for_iter.2) ['$770for_iter.2', '$770for_iter.3'] - $770for_iter.4 = pair_second(value=$770for_iter.2) ['$770for_iter.2', '$770for_iter.4'] - $phi772.2 = $770for_iter.3 ['$770for_iter.3', '$phi772.2'] - branch $770for_iter.4, 772, 1112 ['$770for_iter.4'] -label 772: - n = $phi772.2 ['$phi772.2', 'n'] - psum = const(float, 0.0) ['psum'] - $778load_global.4 = global(range: ) ['$778load_global.4'] - $const790.6 = const(int, 1) ['$const790.6'] - $794load_attr.8 = getattr(value=distances, attr=shape) ['$794load_attr.8', 'distances'] - $const804.9 = const(int, 1) ['$const804.9'] - $806binary_subscr.10 = getitem(value=$794load_attr.8, index=$const804.9, fn=) ['$794load_attr.8', '$806binary_subscr.10', '$const804.9'] - $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) ['$778load_global.4', '$806binary_subscr.10', '$820call.11', '$const790.6'] - $830get_iter.12 = getiter(value=$820call.11) ['$820call.11', '$830get_iter.12'] - $phi832.2 = $830get_iter.12 ['$830get_iter.12', '$phi832.2'] - jump 832 [] -label 832: - $832for_iter.3 = iternext(value=$phi832.2) ['$832for_iter.3', '$phi832.2'] - $832for_iter.4 = pair_first(value=$832for_iter.3) ['$832for_iter.3', '$832for_iter.4'] - $832for_iter.5 = pair_second(value=$832for_iter.3) ['$832for_iter.3', '$832for_iter.5'] - $phi834.3 = $832for_iter.4 ['$832for_iter.4', '$phi834.3'] - branch $832for_iter.5, 834, 954 ['$832for_iter.5'] -label 834: - j = $phi834.3 ['$phi834.3', 'j'] - $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) ['$842build_tuple.7', 'i', 'j'] - $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) ['$842build_tuple.7', '$844binary_subscr.8', 'distances'] - $858binary_subscr.11 = getitem(value=rho, index=i, fn=) ['$858binary_subscr.11', 'i', 'rho'] - d = $844binary_subscr.8 - $858binary_subscr.11 ['$844binary_subscr.8', '$858binary_subscr.11', 'd'] - $const876.14 = const(int, 0) ['$const876.14'] - $878compare_op.15 = d > $const876.14 ['$878compare_op.15', '$const876.14', 'd'] - bool884 = global(bool: ) ['bool884'] - $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) ['$878compare_op.15', '$884pred', 'bool884'] - branch $884pred, 886, 942 ['$884pred'] -label 886: - $888load_global.4 = global(np: ) ['$888load_global.4'] - $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) ['$888load_global.4', '$900load_attr.6'] - $binop_truediv914.9 = d / mid ['$binop_truediv914.9', 'd', 'mid'] - $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) ['$918unary_negative.10', '$binop_truediv914.9'] - $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) ['$900load_attr.6', '$918unary_negative.10', '$924call.11'] - $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) ['$924call.11', '$binop_iadd934.12', 'psum'] - psum = $binop_iadd934.12 ['$binop_iadd934.12', 'psum'] - jump 832 [] -label 942: - $const944.4 = const(float, 1.0) ['$const944.4'] - $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd946.5', '$const944.4', 'psum'] - psum = $binop_iadd946.5 ['$binop_iadd946.5', 'psum'] - jump 832 [] -label 954: - $954load_global.2 = global(np: ) ['$954load_global.2'] - $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) ['$954load_global.2', '$966load_attr.4'] - $binop_sub980.7 = psum - target ['$binop_sub980.7', 'psum', 'target'] - $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) ['$966load_attr.4', '$988call.8', '$binop_sub980.7'] - $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) ['$998load_global.9'] - $1010compare_op.10 = $988call.8 < $998load_global.9 ['$1010compare_op.10', '$988call.8', '$998load_global.9'] - bool1016 = global(bool: ) ['bool1016'] - $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) ['$1010compare_op.10', '$1016pred', 'bool1016'] - branch $1016pred, 1018, 1022 ['$1016pred'] -label 1018: - jump 1112 [] -label 1022: - $1026compare_op.4 = psum > target ['$1026compare_op.4', 'psum', 'target'] - bool1032 = global(bool: ) ['bool1032'] - $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) ['$1026compare_op.4', '$1032pred', 'bool1032'] - branch $1032pred, 1034, 1056 ['$1032pred'] -label 1034: - hi = mid ['hi', 'mid'] - $binop_add1042.5 = lo + hi ['$binop_add1042.5', 'hi', 'lo'] - $const1046.6 = const(float, 2.0) ['$const1046.6'] - mid = $binop_add1042.5 / $const1046.6 ['$binop_add1042.5', '$const1046.6', 'mid'] - jump 770 [] -label 1056: - lo = mid ['lo', 'mid'] - $1062load_global.4 = global(NPY_INFINITY: inf) ['$1062load_global.4'] - $1074compare_op.5 = hi == $1062load_global.4 ['$1062load_global.4', '$1074compare_op.5', 'hi'] - bool1080 = global(bool: ) ['bool1080'] - $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) ['$1074compare_op.5', '$1080pred', 'bool1080'] - branch $1080pred, 1082, 1094 ['$1080pred'] -label 1082: - $const1084.3 = const(int, 2) ['$const1084.3'] - $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) ['$binop_imul1086.4', '$const1084.3', 'mid'] - mid = $binop_imul1086.4 ['$binop_imul1086.4', 'mid'] - jump 770 [] -label 1094: - $binop_add1098.4 = lo + hi ['$binop_add1098.4', 'hi', 'lo'] - $const1102.5 = const(float, 2.0) ['$const1102.5'] - mid = $binop_add1098.4 / $const1102.5 ['$binop_add1098.4', '$const1102.5', 'mid'] - jump 770 [] -label 1112: - result[i] = mid ['i', 'mid', 'result'] - $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) ['$1126binary_subscr.6', 'i', 'rho'] - $const1136.7 = const(float, 0.0) ['$const1136.7'] - $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 ['$1126binary_subscr.6', '$1138compare_op.8', '$const1136.7'] - bool1144 = global(bool: ) ['bool1144'] - $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) ['$1138compare_op.8', '$1144pred', 'bool1144'] - branch $1144pred, 1146, 1256 ['$1144pred'] -label 1146: - $1146load_global.1 = global(np: ) ['$1146load_global.1'] - $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) ['$1146load_global.1', '$1158load_attr.3'] - mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) ['$1158load_attr.3', 'ith_distances', 'mean_ith_distances'] - $1190binary_subscr.8 = getitem(value=result, index=i, fn=) ['$1190binary_subscr.8', 'i', 'result'] - $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) ['$1200load_global.9'] - $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances ['$1200load_global.9', '$binop_mul1214.11', 'mean_ith_distances'] - $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 ['$1190binary_subscr.8', '$1218compare_op.12', '$binop_mul1214.11'] - bool1224 = global(bool: ) ['bool1224'] - $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) ['$1218compare_op.12', '$1224pred', 'bool1224'] - branch $1224pred, 1226, 1252 ['$1224pred'] -label 1226: - $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) ['$1226load_global.1'] - $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances ['$1226load_global.1', '$binop_mul1240.3', 'mean_ith_distances'] - result[i] = $binop_mul1240.3 ['$binop_mul1240.3', 'i', 'result'] - jump 1252 [] -label 1252: - jump 314 [] -label 1256: - $1260binary_subscr.3 = getitem(value=result, index=i, fn=) ['$1260binary_subscr.3', 'i', 'result'] - $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) ['$1270load_global.4'] - $binop_mul1284.6 = $1270load_global.4 * mean_distances ['$1270load_global.4', '$binop_mul1284.6', 'mean_distances'] - $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 ['$1260binary_subscr.3', '$1288compare_op.7', '$binop_mul1284.6'] - bool1294 = global(bool: ) ['bool1294'] - $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) ['$1288compare_op.7', '$1294pred', 'bool1294'] - branch $1294pred, 1296, 1322 ['$1294pred'] -label 1296: - $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) ['$1296load_global.1'] - $binop_mul1310.3 = $1296load_global.1 * mean_distances ['$1296load_global.1', '$binop_mul1310.3', 'mean_distances'] - result[i] = $binop_mul1310.3 ['$binop_mul1310.3', 'i', 'result'] - jump 1322 [] -label 1322: - jump 314 [] -label 1326: - $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) ['$1330build_tuple.2', 'result', 'rho'] - $1332return_value.3 = cast(value=$1330build_tuple.2) ['$1330build_tuple.2', '$1332return_value.3'] - return $1332return_value.3 ['$1332return_value.3'] - -13:52:49,349 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,349 numba.core.ssa DEBUG Running -13:52:49,349 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,349 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,349 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,349 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,349 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,349 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,349 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,349 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,349 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,349 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,349 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,349 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,349 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,349 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,349 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,349 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,349 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,350 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,350 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,350 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,350 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,350 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,350 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,350 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,350 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,350 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,350 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,350 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,350 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,350 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,350 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,350 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,350 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,350 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,350 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,350 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,350 numba.core.ssa DEBUG ==== SSA block analysis pass on 314 -13:52:49,350 numba.core.ssa DEBUG Running -13:52:49,350 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,350 numba.core.ssa DEBUG ==== SSA block analysis pass on 316 -13:52:49,350 numba.core.ssa DEBUG Running -13:52:49,350 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,350 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,350 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,350 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,351 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,351 numba.core.ssa DEBUG ==== SSA block analysis pass on 318 -13:52:49,351 numba.core.ssa DEBUG Running -13:52:49,351 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,351 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,351 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,351 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,351 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,351 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,351 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,351 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,351 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,351 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,351 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,351 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,351 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,351 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,351 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,351 numba.core.ssa DEBUG ==== SSA block analysis pass on 416 -13:52:49,351 numba.core.ssa DEBUG Running -13:52:49,351 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,351 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,351 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,351 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,351 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,351 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,351 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,351 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,351 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,351 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,352 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,352 numba.core.ssa DEBUG ==== SSA block analysis pass on 504 -13:52:49,352 numba.core.ssa DEBUG Running -13:52:49,352 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,352 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,352 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,352 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,352 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,352 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,352 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,352 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,352 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,352 numba.core.ssa DEBUG ==== SSA block analysis pass on 554 -13:52:49,352 numba.core.ssa DEBUG Running -13:52:49,352 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,352 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,352 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,352 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,352 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,352 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,352 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,352 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,352 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,352 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,352 numba.core.ssa DEBUG ==== SSA block analysis pass on 628 -13:52:49,352 numba.core.ssa DEBUG Running -13:52:49,352 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,352 numba.core.ssa DEBUG ==== SSA block analysis pass on 630 -13:52:49,353 numba.core.ssa DEBUG Running -13:52:49,353 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,353 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,353 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,353 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,353 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,353 numba.core.ssa DEBUG ==== SSA block analysis pass on 660 -13:52:49,353 numba.core.ssa DEBUG Running -13:52:49,353 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,353 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,353 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,353 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,353 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,353 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,353 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,353 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,353 numba.core.ssa DEBUG ==== SSA block analysis pass on 694 -13:52:49,353 numba.core.ssa DEBUG Running -13:52:49,353 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,353 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,353 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,353 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,353 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,353 numba.core.ssa DEBUG ==== SSA block analysis pass on 740 -13:52:49,353 numba.core.ssa DEBUG Running -13:52:49,353 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,353 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,353 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,353 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,353 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,353 numba.core.ssa DEBUG ==== SSA block analysis pass on 770 -13:52:49,353 numba.core.ssa DEBUG Running -13:52:49,353 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,354 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,354 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,354 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,354 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,354 numba.core.ssa DEBUG ==== SSA block analysis pass on 772 -13:52:49,354 numba.core.ssa DEBUG Running -13:52:49,354 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,354 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,354 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,354 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,354 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,354 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,354 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,354 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,354 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,354 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,354 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,354 numba.core.ssa DEBUG ==== SSA block analysis pass on 832 -13:52:49,354 numba.core.ssa DEBUG Running -13:52:49,354 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,354 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,354 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,354 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,354 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,354 numba.core.ssa DEBUG ==== SSA block analysis pass on 834 -13:52:49,354 numba.core.ssa DEBUG Running -13:52:49,354 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,354 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,354 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,354 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,354 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,354 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,355 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,355 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,355 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,355 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,355 numba.core.ssa DEBUG ==== SSA block analysis pass on 886 -13:52:49,355 numba.core.ssa DEBUG Running -13:52:49,355 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,355 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,355 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid -13:52:49,355 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,355 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,355 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,355 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,355 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,355 numba.core.ssa DEBUG ==== SSA block analysis pass on 942 -13:52:49,355 numba.core.ssa DEBUG Running -13:52:49,355 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,355 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,355 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,355 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,355 numba.core.ssa DEBUG ==== SSA block analysis pass on 954 -13:52:49,355 numba.core.ssa DEBUG Running -13:52:49,355 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,355 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,355 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,355 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,355 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,355 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,355 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,355 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,355 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,356 numba.core.ssa DEBUG ==== SSA block analysis pass on 1018 -13:52:49,356 numba.core.ssa DEBUG Running -13:52:49,356 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,356 numba.core.ssa DEBUG ==== SSA block analysis pass on 1022 -13:52:49,356 numba.core.ssa DEBUG Running -13:52:49,356 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,356 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,356 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,356 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,356 numba.core.ssa DEBUG ==== SSA block analysis pass on 1034 -13:52:49,356 numba.core.ssa DEBUG Running -13:52:49,356 numba.core.ssa DEBUG on stmt: hi = mid -13:52:49,356 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo + hi -13:52:49,356 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,356 numba.core.ssa DEBUG on stmt: mid = $binop_add1042.5 / $const1046.6 -13:52:49,356 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,356 numba.core.ssa DEBUG ==== SSA block analysis pass on 1056 -13:52:49,356 numba.core.ssa DEBUG Running -13:52:49,356 numba.core.ssa DEBUG on stmt: lo = mid -13:52:49,356 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,356 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi == $1062load_global.4 -13:52:49,356 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,356 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,356 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,356 numba.core.ssa DEBUG ==== SSA block analysis pass on 1082 -13:52:49,356 numba.core.ssa DEBUG Running -13:52:49,356 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,356 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,356 numba.core.ssa DEBUG on stmt: mid = $binop_imul1086.4 -13:52:49,356 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,356 numba.core.ssa DEBUG ==== SSA block analysis pass on 1094 -13:52:49,356 numba.core.ssa DEBUG Running -13:52:49,356 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo + hi -13:52:49,356 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,357 numba.core.ssa DEBUG on stmt: mid = $binop_add1098.4 / $const1102.5 -13:52:49,357 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,357 numba.core.ssa DEBUG ==== SSA block analysis pass on 1112 -13:52:49,357 numba.core.ssa DEBUG Running -13:52:49,357 numba.core.ssa DEBUG on stmt: result[i] = mid -13:52:49,357 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,357 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,357 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,357 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,357 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,357 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,357 numba.core.ssa DEBUG ==== SSA block analysis pass on 1146 -13:52:49,357 numba.core.ssa DEBUG Running -13:52:49,357 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,357 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,357 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,357 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,357 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,357 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,357 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,357 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,357 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,357 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,357 numba.core.ssa DEBUG ==== SSA block analysis pass on 1226 -13:52:49,357 numba.core.ssa DEBUG Running -13:52:49,357 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,357 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,357 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,357 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,357 numba.core.ssa DEBUG ==== SSA block analysis pass on 1252 -13:52:49,357 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,358 numba.core.ssa DEBUG ==== SSA block analysis pass on 1256 -13:52:49,358 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,358 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,358 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,358 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,358 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,358 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,358 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,358 numba.core.ssa DEBUG ==== SSA block analysis pass on 1296 -13:52:49,358 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,358 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,358 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,358 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,358 numba.core.ssa DEBUG ==== SSA block analysis pass on 1322 -13:52:49,358 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,358 numba.core.ssa DEBUG ==== SSA block analysis pass on 1326 -13:52:49,358 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,358 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,358 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,358 numba.core.ssa DEBUG ==== SSA block analysis pass on 1327 -13:52:49,358 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,358 numba.core.ssa DEBUG ==== SSA block analysis pass on 1328 -13:52:49,358 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,358 numba.core.ssa DEBUG ==== SSA block analysis pass on 1329 -13:52:49,358 numba.core.ssa DEBUG Running -13:52:49,358 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,361 numba.core.ssa DEBUG defs defaultdict(, - {'$1010compare_op.10': [(, - 954)], - '$1016pred': [(, - 954)], - '$1026compare_op.4': [(, - 1022)], - '$1032pred': [(, - 1022)], - '$1062load_global.4': [(, - 1056)], - '$1074compare_op.5': [(, - 1056)], - '$1080pred': [(, - 1056)], - '$108load_attr.15': [(, - 0)], - '$1126binary_subscr.6': [(, - 1112)], - '$1138compare_op.8': [(, - 1112)], - '$1144pred': [(, - 1112)], - '$1146load_global.1': [(, - 1146)], - '$1158load_attr.3': [(, - 1146)], - '$1190binary_subscr.8': [(, - 1146)], - '$1200load_global.9': [(, - 1146)], - '$1218compare_op.12': [(, - 1146)], - '$1224pred': [(, - 1146)], - '$1226load_global.1': [(, - 1226)], - '$1260binary_subscr.3': [(, - 1256)], - '$1270load_global.4': [(, - 1256)], - '$1288compare_op.7': [(, - 1256)], - '$1294pred': [(, - 1256)], - '$1296load_global.1': [(, - 1296)], - '$1330build_tuple.2': [(, - 1326)], - '$1332return_value.3': [(, - 1326)], - '$136load_global.17': [(, - 0)], - '$148load_attr.19': [(, - 0)], - '$160load_attr.21': [(, - 0)], - '$16load_attr.2': [(, - 0)], - '$172binary_subscr.23': [(, - 0)], - '$182load_global.24': [(, - 0)], - '$194load_attr.25': [(, - 0)], - '$222load_global.27': [(, - 0)], - '$234load_attr.29': [(, - 0)], - '$262load_global.32': [(, - 0)], - '$276load_attr.35': [(, - 0)], - '$288binary_subscr.37': [(, - 0)], - '$302call.38': [(, - 0)], - '$312get_iter.39': [(, - 0)], - '$316for_iter.1': [(, - 316)], - '$316for_iter.2': [(, - 316)], - '$316for_iter.3': [(, - 316)], - '$32call.4': [(, - 0)], - '$364compare_op.11': [(, - 318)], - '$384load_attr.14': [(, - 318)], - '$396binary_subscr.16': [(, - 318)], - '$408compare_op.18': [(, - 318)], - '$414pred': [(, - 318)], - '$416load_global.1': [(, - 416)], - '$428load_global.3': [(, - 416)], - '$440load_attr.5': [(, - 416)], - '$456call.7': [(, - 416)], - '$496compare_op.14': [(, - 416)], - '$4load_global.0': [(, - 0)], - '$502pred': [(, - 416)], - '$50load_global.7': [(, - 0)], - '$514binary_subscr.5': [(, - 504)], - '$534load_global.9': [(, - 504)], - '$546compare_op.10': [(, - 504)], - '$552pred': [(, - 504)], - '$562binary_subscr.3': [(, - 554)], - '$578binary_subscr.7': [(, - 554)], - '$598binary_subscr.12': [(, - 554)], - '$62load_attr.9': [(, - 0)], - '$636binary_subscr.4': [(, - 630)], - '$662load_attr.2': [(, - 660)], - '$674binary_subscr.4': [(, - 660)], - '$686compare_op.6': [(, - 660)], - '$692pred': [(, - 660)], - '$694load_global.1': [(, - 694)], - '$706load_attr.3': [(, - 694)], - '$722call.5': [(, - 694)], - '$740load_global.1': [(, - 740)], - '$74load_attr.11': [(, - 0)], - '$758call.4': [(, - 740)], - '$768get_iter.5': [(, - 740)], - '$770for_iter.2': [(, - 770)], - '$770for_iter.3': [(, - 770)], - '$770for_iter.4': [(, - 770)], - '$778load_global.4': [(, - 772)], - '$794load_attr.8': [(, - 772)], - '$806binary_subscr.10': [(, - 772)], - '$820call.11': [(, - 772)], - '$830get_iter.12': [(, - 772)], - '$832for_iter.3': [(, - 832)], - '$832for_iter.4': [(, - 832)], - '$832for_iter.5': [(, - 832)], - '$842build_tuple.7': [(, - 834)], - '$844binary_subscr.8': [(, - 834)], - '$858binary_subscr.11': [(, - 834)], - '$86binary_subscr.13': [(, - 0)], - '$878compare_op.15': [(, - 834)], - '$884pred': [(, - 834)], - '$888load_global.4': [(, - 886)], - '$900load_attr.6': [(, - 886)], - '$918unary_negative.10': [(, - 886)], - '$924call.11': [(, - 886)], - '$954load_global.2': [(, - 954)], - '$966load_attr.4': [(, - 954)], - '$96load_global.14': [(, - 0)], - '$988call.8': [(, - 954)], - '$998load_global.9': [(, - 954)], - '$binop_add1042.5': [(, - 1034)], - '$binop_add1098.4': [(, - 1094)], - '$binop_iadd616.15': [(, - 554)], - '$binop_iadd934.12': [(, - 886)], - '$binop_iadd946.5': [(, - 942)], - '$binop_imul1086.4': [(, - 1082)], - '$binop_mul1214.11': [(, - 1146)], - '$binop_mul1240.3': [(, - 1226)], - '$binop_mul1284.6': [(, - 1256)], - '$binop_mul1310.3': [(, - 1296)], - '$binop_mul612.14': [(, - 554)], - '$binop_mul646.5': [(, - 630)], - '$binop_sub510.4': [(, - 504)], - '$binop_sub594.11': [(, - 554)], - '$binop_sub608.13': [(, - 554)], - '$binop_sub980.7': [(, - 954)], - '$binop_truediv914.9': [(, - 886)], - '$const1046.6': [(, - 1034)], - '$const1084.3': [(, - 1082)], - '$const1102.5': [(, - 1094)], - '$const1136.7': [(, - 1112)], - '$const170.22': [(, - 0)], - '$const286.36': [(, - 0)], - '$const362.10': [(, - 318)], - '$const394.15': [(, - 318)], - '$const494.13': [(, - 416)], - '$const508.3': [(, - 504)], - '$const592.10': [(, - 554)], - '$const634.3': [(, - 630)], - '$const672.3': [(, - 660)], - '$const684.5': [(, - 660)], - '$const790.6': [(, - 772)], - '$const804.9': [(, - 772)], - '$const84.12': [(, - 0)], - '$const876.14': [(, - 834)], - '$const944.4': [(, - 942)], - '$phi316.0': [(, - 0)], - '$phi318.1': [(, - 316)], - '$phi770.1': [(, - 740)], - '$phi772.2': [(, - 770)], - '$phi832.2': [(, - 772)], - '$phi834.3': [(, - 832)], - 'bandwidth': [(, - 0)], - 'bool1016': [(, - 954)], - 'bool1032': [(, - 1022)], - 'bool1080': [(, - 1056)], - 'bool1144': [(, - 1112)], - 'bool1224': [(, - 1146)], - 'bool1294': [(, - 1256)], - 'bool414': [(, - 318)], - 'bool502': [(, - 416)], - 'bool552': [(, - 504)], - 'bool692': [(, - 660)], - 'bool884': [(, - 834)], - 'd': [(, 834)], - 'distances': [(, - 0)], - 'hi': [(, 318), - (, - 1034)], - 'i': [(, 318)], - 'index': [(, - 416)], - 'interpolation': [(, - 416)], - 'ith_distances': [(, - 318)], - 'j': [(, 834)], - 'k': [(, 0)], - 'lo': [(, 318), - (, - 1056)], - 'local_connectivity': [(, - 0)], - 'mean_distances': [(, - 0)], - 'mean_ith_distances': [(, - 1146)], - 'mid': [(, 318), - (, - 1034), - (, - 1082), - (, - 1094)], - 'n': [(, 772)], - 'n_iter': [(, - 0)], - 'non_zero_dists': [(, - 318)], - 'psum': [(, - 772), - (, - 886), - (, - 942)], - 'result': [(, - 0)], - 'rho': [(, 0)], - 'target': [(, - 0)]}) -13:52:49,361 numba.core.ssa DEBUG SSA violators -13:52:49,361 numba.core.ssa DEBUG Fix SSA violator on var lo -13:52:49,361 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,362 numba.core.ssa DEBUG Running -13:52:49,362 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,362 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,362 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,362 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,362 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,362 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,362 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,362 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,362 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,362 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,362 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,362 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,362 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,362 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,362 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,362 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,362 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,362 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,362 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,362 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,362 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,362 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,362 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,362 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,362 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,362 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,362 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,362 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,362 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,362 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,362 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,362 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,363 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,363 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,363 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,363 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,363 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,363 numba.core.ssa DEBUG Running -13:52:49,363 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,363 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,363 numba.core.ssa DEBUG Running -13:52:49,363 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,363 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,363 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,363 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,363 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,363 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,363 numba.core.ssa DEBUG Running -13:52:49,363 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,363 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,363 numba.core.ssa DEBUG first assign: lo -13:52:49,363 numba.core.ssa DEBUG replaced with: lo = const(float, 0.0) -13:52:49,363 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,363 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,363 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,363 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,363 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,363 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,363 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,363 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,363 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,363 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,363 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,363 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,363 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,363 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,363 numba.core.ssa DEBUG Running -13:52:49,363 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,364 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,364 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,364 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,364 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,364 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,364 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,364 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,364 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,364 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,364 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,364 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,364 numba.core.ssa DEBUG Running -13:52:49,364 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,364 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,364 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,364 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,364 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,364 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,364 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,364 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,364 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,364 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,364 numba.core.ssa DEBUG Running -13:52:49,364 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,364 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,364 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,364 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,364 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,364 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,364 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,364 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,364 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,364 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,364 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,365 numba.core.ssa DEBUG Running -13:52:49,365 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,365 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,365 numba.core.ssa DEBUG Running -13:52:49,365 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,365 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,365 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,365 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,365 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,365 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,365 numba.core.ssa DEBUG Running -13:52:49,365 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,365 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,365 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,365 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,365 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,365 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,365 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,365 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,365 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,365 numba.core.ssa DEBUG Running -13:52:49,365 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,365 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,365 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,365 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,365 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,365 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,365 numba.core.ssa DEBUG Running -13:52:49,365 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,365 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,365 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,365 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,365 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,365 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,365 numba.core.ssa DEBUG Running -13:52:49,365 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,365 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,366 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,366 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,366 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,366 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,366 numba.core.ssa DEBUG Running -13:52:49,366 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,366 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,366 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,366 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,366 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,366 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,366 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,366 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,366 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,366 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,366 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,366 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,366 numba.core.ssa DEBUG Running -13:52:49,366 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,366 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,366 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,366 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,366 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,366 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,366 numba.core.ssa DEBUG Running -13:52:49,366 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,366 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,366 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,366 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,366 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,366 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,366 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,366 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,366 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,366 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,366 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,367 numba.core.ssa DEBUG Running -13:52:49,367 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,367 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,367 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid -13:52:49,367 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,367 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,367 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,367 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,367 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,367 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,367 numba.core.ssa DEBUG Running -13:52:49,367 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,367 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,367 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,367 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,367 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,367 numba.core.ssa DEBUG Running -13:52:49,367 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,367 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,367 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,367 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,367 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,367 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,367 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,367 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,367 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,367 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,367 numba.core.ssa DEBUG Running -13:52:49,367 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,367 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,367 numba.core.ssa DEBUG Running -13:52:49,367 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,367 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,367 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,367 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,367 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,368 numba.core.ssa DEBUG Running -13:52:49,368 numba.core.ssa DEBUG on stmt: hi = mid -13:52:49,368 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo + hi -13:52:49,368 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,368 numba.core.ssa DEBUG on stmt: mid = $binop_add1042.5 / $const1046.6 -13:52:49,368 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,368 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,368 numba.core.ssa DEBUG Running -13:52:49,368 numba.core.ssa DEBUG on stmt: lo = mid -13:52:49,368 numba.core.ssa DEBUG replaced with: lo.1 = mid -13:52:49,368 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,368 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi == $1062load_global.4 -13:52:49,368 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,368 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,368 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,368 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,368 numba.core.ssa DEBUG Running -13:52:49,368 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,368 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,368 numba.core.ssa DEBUG on stmt: mid = $binop_imul1086.4 -13:52:49,368 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,368 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,368 numba.core.ssa DEBUG Running -13:52:49,368 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo + hi -13:52:49,368 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,368 numba.core.ssa DEBUG on stmt: mid = $binop_add1098.4 / $const1102.5 -13:52:49,368 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,368 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,368 numba.core.ssa DEBUG Running -13:52:49,368 numba.core.ssa DEBUG on stmt: result[i] = mid -13:52:49,368 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,368 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,368 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,368 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,368 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,369 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,369 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,369 numba.core.ssa DEBUG Running -13:52:49,369 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,369 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,369 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,369 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,369 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,369 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,369 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,369 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,369 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,369 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,369 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,369 numba.core.ssa DEBUG Running -13:52:49,369 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,369 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,369 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,369 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,369 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,369 numba.core.ssa DEBUG Running -13:52:49,369 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,369 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,369 numba.core.ssa DEBUG Running -13:52:49,369 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,369 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,369 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,369 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,369 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,369 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,369 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,369 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,369 numba.core.ssa DEBUG Running -13:52:49,369 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,369 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,370 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,370 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,370 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,370 numba.core.ssa DEBUG Running -13:52:49,370 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,370 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,370 numba.core.ssa DEBUG Running -13:52:49,370 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,370 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,370 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,370 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,370 numba.core.ssa DEBUG Running -13:52:49,370 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,370 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,370 numba.core.ssa DEBUG Running -13:52:49,370 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,370 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,370 numba.core.ssa DEBUG Running -13:52:49,370 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,370 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {318: [], - 1056: []}) -13:52:49,370 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,370 numba.core.ssa DEBUG Running -13:52:49,370 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,370 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,370 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,370 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,370 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,370 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,370 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,370 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,370 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,370 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,370 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,370 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,370 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,371 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,371 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,371 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,371 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,371 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,371 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,371 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,371 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,371 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,371 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,371 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,371 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,371 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,371 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,371 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,371 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,371 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,371 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,371 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,371 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,371 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,371 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,371 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,371 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,371 numba.core.ssa DEBUG Running -13:52:49,371 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,371 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,371 numba.core.ssa DEBUG Running -13:52:49,371 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,371 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,371 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,372 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,372 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,372 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,372 numba.core.ssa DEBUG Running -13:52:49,372 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,372 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,372 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,372 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,372 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,372 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,372 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,372 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,372 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,372 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,372 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,372 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,372 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,372 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,372 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,372 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,372 numba.core.ssa DEBUG Running -13:52:49,372 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,372 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,372 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,372 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,372 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,372 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,372 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,372 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,372 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,372 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,373 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,373 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,373 numba.core.ssa DEBUG Running -13:52:49,373 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,373 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,373 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,373 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,373 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,373 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,373 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,373 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,373 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,373 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,373 numba.core.ssa DEBUG Running -13:52:49,373 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,373 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,373 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,373 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,373 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,373 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,373 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,373 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,373 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,373 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,373 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,373 numba.core.ssa DEBUG Running -13:52:49,373 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,373 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,373 numba.core.ssa DEBUG Running -13:52:49,373 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,373 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,373 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,373 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,374 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,374 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,374 numba.core.ssa DEBUG Running -13:52:49,374 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,374 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,374 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,374 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,374 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,374 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,374 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,374 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,374 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,374 numba.core.ssa DEBUG Running -13:52:49,374 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,374 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,374 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,374 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,374 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,374 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,374 numba.core.ssa DEBUG Running -13:52:49,374 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,374 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,374 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,374 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,374 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,374 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,374 numba.core.ssa DEBUG Running -13:52:49,374 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,374 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,374 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,374 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,374 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,374 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,374 numba.core.ssa DEBUG Running -13:52:49,375 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,375 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,375 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,375 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,375 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,375 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,375 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,375 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,375 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,375 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,375 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,375 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,375 numba.core.ssa DEBUG Running -13:52:49,375 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,375 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,375 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,375 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,375 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,375 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,375 numba.core.ssa DEBUG Running -13:52:49,375 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,375 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,375 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,375 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,375 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,375 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,375 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,375 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,375 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,375 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,375 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,375 numba.core.ssa DEBUG Running -13:52:49,375 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,376 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,376 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid -13:52:49,376 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,376 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,376 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,376 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,376 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,376 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,376 numba.core.ssa DEBUG Running -13:52:49,376 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,376 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,376 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,376 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,376 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,376 numba.core.ssa DEBUG Running -13:52:49,376 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,376 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,376 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,376 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,376 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,376 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,376 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,376 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,376 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,376 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,376 numba.core.ssa DEBUG Running -13:52:49,376 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,376 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,376 numba.core.ssa DEBUG Running -13:52:49,376 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,376 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,376 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,376 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,377 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,377 numba.core.ssa DEBUG Running -13:52:49,377 numba.core.ssa DEBUG on stmt: hi = mid -13:52:49,377 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo + hi -13:52:49,377 numba.core.ssa DEBUG find_def var='lo' stmt=$binop_add1042.5 = lo + hi -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 1034 -13:52:49,377 numba.core.ssa DEBUG idom 1022 from label 1034 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,377 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,377 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,377 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,377 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 770 -13:52:49,377 numba.core.ssa DEBUG insert phi node lo.2 = phi(incoming_values=[], incoming_blocks=[]) at 770 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 1328 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 1328 -13:52:49,377 numba.core.ssa DEBUG insert phi node lo.3 = phi(incoming_values=[], incoming_blocks=[]) at 1328 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 1034 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 1034 -13:52:49,377 numba.core.ssa DEBUG idom 1022 from label 1034 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,377 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,377 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,377 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,377 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,378 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,378 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,378 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,378 numba.core.ssa DEBUG incoming_def lo.2 = phi(incoming_values=[], incoming_blocks=[]) -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 1082 -13:52:49,378 numba.core.ssa DEBUG find_def_from_top label 1082 -13:52:49,378 numba.core.ssa DEBUG idom 1056 from label 1082 -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 1056 -13:52:49,378 numba.core.ssa DEBUG incoming_def lo.1 = mid -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 1094 -13:52:49,378 numba.core.ssa DEBUG find_def_from_top label 1094 -13:52:49,378 numba.core.ssa DEBUG idom 1056 from label 1094 -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 1056 -13:52:49,378 numba.core.ssa DEBUG incoming_def lo.1 = mid -13:52:49,378 numba.core.ssa DEBUG incoming_def lo.3 = phi(incoming_values=[Var(lo.2, umap_.py:233), Var(lo.1, umap_.py:236), Var(lo.1, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 740 -13:52:49,378 numba.core.ssa DEBUG find_def_from_top label 740 -13:52:49,378 numba.core.ssa DEBUG idom 318 from label 740 -13:52:49,378 numba.core.ssa DEBUG find_def_from_bottom label 318 -13:52:49,378 numba.core.ssa DEBUG incoming_def lo = const(float, 0.0) -13:52:49,378 numba.core.ssa DEBUG replaced with: $binop_add1042.5 = lo.2 + hi -13:52:49,378 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,378 numba.core.ssa DEBUG on stmt: mid = $binop_add1042.5 / $const1046.6 -13:52:49,378 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,378 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,378 numba.core.ssa DEBUG Running -13:52:49,378 numba.core.ssa DEBUG on stmt: lo.1 = mid -13:52:49,378 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,378 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi == $1062load_global.4 -13:52:49,378 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,379 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,379 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,379 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,379 numba.core.ssa DEBUG Running -13:52:49,379 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,379 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,379 numba.core.ssa DEBUG on stmt: mid = $binop_imul1086.4 -13:52:49,379 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,379 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,379 numba.core.ssa DEBUG Running -13:52:49,379 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo + hi -13:52:49,379 numba.core.ssa DEBUG find_def var='lo' stmt=$binop_add1098.4 = lo + hi -13:52:49,379 numba.core.ssa DEBUG find_def_from_top label 1094 -13:52:49,379 numba.core.ssa DEBUG idom 1056 from label 1094 -13:52:49,379 numba.core.ssa DEBUG find_def_from_bottom label 1056 -13:52:49,379 numba.core.ssa DEBUG replaced with: $binop_add1098.4 = lo.1 + hi -13:52:49,379 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,379 numba.core.ssa DEBUG on stmt: mid = $binop_add1098.4 / $const1102.5 -13:52:49,379 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,379 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,379 numba.core.ssa DEBUG Running -13:52:49,379 numba.core.ssa DEBUG on stmt: result[i] = mid -13:52:49,379 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,379 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,379 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,379 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,379 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,379 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,379 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,379 numba.core.ssa DEBUG Running -13:52:49,379 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,379 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,379 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,380 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,380 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,380 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,380 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,380 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,380 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,380 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,380 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,380 numba.core.ssa DEBUG Running -13:52:49,380 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,380 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,380 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,380 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,380 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,380 numba.core.ssa DEBUG Running -13:52:49,380 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,380 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,380 numba.core.ssa DEBUG Running -13:52:49,380 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,380 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,380 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,380 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,380 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,380 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,380 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,380 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,380 numba.core.ssa DEBUG Running -13:52:49,380 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,380 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,380 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,380 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,380 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,380 numba.core.ssa DEBUG Running -13:52:49,381 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,381 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,381 numba.core.ssa DEBUG Running -13:52:49,381 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,381 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,381 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,381 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,381 numba.core.ssa DEBUG Running -13:52:49,381 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,381 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,381 numba.core.ssa DEBUG Running -13:52:49,381 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,381 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,381 numba.core.ssa DEBUG Running -13:52:49,381 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,381 numba.core.ssa DEBUG Fix SSA violator on var hi -13:52:49,381 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,381 numba.core.ssa DEBUG Running -13:52:49,381 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,381 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,381 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,381 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,381 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,381 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,381 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,381 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,381 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,381 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,381 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,381 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,381 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,381 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,381 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,381 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,381 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,382 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,382 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,382 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,382 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,382 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,382 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,382 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,382 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,382 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,382 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,382 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,382 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,382 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,382 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,382 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,382 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,382 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,382 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,382 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,382 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,382 numba.core.ssa DEBUG Running -13:52:49,382 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,382 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,382 numba.core.ssa DEBUG Running -13:52:49,382 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,382 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,382 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,382 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,382 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,382 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,382 numba.core.ssa DEBUG Running -13:52:49,382 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,382 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,382 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,382 numba.core.ssa DEBUG first assign: hi -13:52:49,383 numba.core.ssa DEBUG replaced with: hi = global(NPY_INFINITY: inf) -13:52:49,383 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,383 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,383 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,383 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,383 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,383 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,383 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,383 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,383 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,383 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,383 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,383 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,383 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,383 numba.core.ssa DEBUG Running -13:52:49,383 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,383 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,383 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,383 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,383 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,383 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,383 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,383 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,383 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,383 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,383 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,383 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,383 numba.core.ssa DEBUG Running -13:52:49,383 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,383 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,383 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,383 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,383 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,383 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,383 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,383 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,384 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,384 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,384 numba.core.ssa DEBUG Running -13:52:49,384 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,384 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,384 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,384 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,384 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,384 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,384 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,384 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,384 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,384 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,384 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,384 numba.core.ssa DEBUG Running -13:52:49,384 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,384 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,384 numba.core.ssa DEBUG Running -13:52:49,384 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,384 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,384 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,384 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,384 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,384 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,384 numba.core.ssa DEBUG Running -13:52:49,384 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,384 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,384 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,384 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,384 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,384 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,384 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,385 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,385 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,385 numba.core.ssa DEBUG Running -13:52:49,385 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,385 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,385 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,385 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,385 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,385 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,385 numba.core.ssa DEBUG Running -13:52:49,385 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,385 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,385 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,385 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,385 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,385 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,385 numba.core.ssa DEBUG Running -13:52:49,385 numba.core.ssa DEBUG on stmt: lo.2 = phi(incoming_values=[Var(lo.3, umap_.py:233), Var(lo, umap_.py:198)], incoming_blocks=[1328, 740]) -13:52:49,385 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,385 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,385 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,385 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,385 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,385 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,385 numba.core.ssa DEBUG Running -13:52:49,385 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,385 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,385 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,385 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,385 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,385 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,385 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,385 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,385 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,385 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,386 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,386 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,386 numba.core.ssa DEBUG Running -13:52:49,386 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,386 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,386 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,386 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,386 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,386 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,386 numba.core.ssa DEBUG Running -13:52:49,386 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,386 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,386 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,386 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,386 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,386 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,386 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,386 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,386 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,386 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,386 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,386 numba.core.ssa DEBUG Running -13:52:49,386 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,386 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,386 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid -13:52:49,386 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,386 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,386 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,386 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,386 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,386 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,386 numba.core.ssa DEBUG Running -13:52:49,386 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,386 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,386 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,387 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,387 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,387 numba.core.ssa DEBUG Running -13:52:49,387 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,387 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,387 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,387 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,387 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,387 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,387 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,387 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,387 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,387 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,387 numba.core.ssa DEBUG Running -13:52:49,387 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,387 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,387 numba.core.ssa DEBUG Running -13:52:49,387 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,387 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,387 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,387 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,387 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,387 numba.core.ssa DEBUG Running -13:52:49,387 numba.core.ssa DEBUG on stmt: hi = mid -13:52:49,387 numba.core.ssa DEBUG replaced with: hi.1 = mid -13:52:49,387 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo.2 + hi -13:52:49,387 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,387 numba.core.ssa DEBUG on stmt: mid = $binop_add1042.5 / $const1046.6 -13:52:49,387 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,387 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,387 numba.core.ssa DEBUG Running -13:52:49,387 numba.core.ssa DEBUG on stmt: lo.1 = mid -13:52:49,387 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,387 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi == $1062load_global.4 -13:52:49,387 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,387 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,388 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,388 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,388 numba.core.ssa DEBUG Running -13:52:49,388 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,388 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,388 numba.core.ssa DEBUG on stmt: mid = $binop_imul1086.4 -13:52:49,388 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,388 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,388 numba.core.ssa DEBUG Running -13:52:49,388 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo.1 + hi -13:52:49,388 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,388 numba.core.ssa DEBUG on stmt: mid = $binop_add1098.4 / $const1102.5 -13:52:49,388 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,388 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,388 numba.core.ssa DEBUG Running -13:52:49,388 numba.core.ssa DEBUG on stmt: result[i] = mid -13:52:49,388 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,388 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,388 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,388 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,388 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,388 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,388 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,388 numba.core.ssa DEBUG Running -13:52:49,388 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,388 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,388 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,388 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,388 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,388 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,388 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,388 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,388 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,388 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,389 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,389 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,389 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,389 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,389 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,389 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,389 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,389 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,389 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,389 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,389 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,389 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,389 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,389 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,389 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,389 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,389 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,389 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,389 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,389 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,389 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,389 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,389 numba.core.ssa DEBUG Running -13:52:49,390 numba.core.ssa DEBUG on stmt: lo.3 = phi(incoming_values=[Var(lo.2, umap_.py:233), Var(lo.1, umap_.py:236), Var(lo.1, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,390 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,390 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,390 numba.core.ssa DEBUG Running -13:52:49,390 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,390 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {318: [], - 1034: []}) -13:52:49,390 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,390 numba.core.ssa DEBUG Running -13:52:49,390 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,390 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,390 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,390 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,390 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,390 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,390 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,390 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,390 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,390 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,390 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,390 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,390 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,390 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,390 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,390 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,390 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,390 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,390 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,390 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,390 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,390 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,390 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,390 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,390 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,391 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,391 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,391 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,391 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,391 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,391 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,391 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,391 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,391 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,391 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,391 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,391 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,391 numba.core.ssa DEBUG Running -13:52:49,391 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,391 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,391 numba.core.ssa DEBUG Running -13:52:49,391 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,391 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,391 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,391 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,391 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,391 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,391 numba.core.ssa DEBUG Running -13:52:49,391 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,391 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,391 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,391 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,391 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,391 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,391 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,391 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,391 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,391 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,391 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,392 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,392 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,392 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,392 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,392 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,392 numba.core.ssa DEBUG Running -13:52:49,392 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,392 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,392 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,392 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,392 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,392 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,392 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,392 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,392 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,392 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,392 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,392 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,392 numba.core.ssa DEBUG Running -13:52:49,392 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,392 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,392 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,392 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,392 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,392 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,392 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,392 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,392 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,392 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,392 numba.core.ssa DEBUG Running -13:52:49,392 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,392 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,393 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,393 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,393 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,393 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,393 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,393 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,393 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,393 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,393 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,393 numba.core.ssa DEBUG Running -13:52:49,393 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,393 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,393 numba.core.ssa DEBUG Running -13:52:49,393 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,393 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,393 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,393 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,393 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,393 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,393 numba.core.ssa DEBUG Running -13:52:49,393 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,393 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,393 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,393 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,393 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,393 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,393 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,393 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,393 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,393 numba.core.ssa DEBUG Running -13:52:49,393 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,393 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,393 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,393 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,394 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,394 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,394 numba.core.ssa DEBUG Running -13:52:49,394 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,394 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,394 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,394 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,394 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,394 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,394 numba.core.ssa DEBUG Running -13:52:49,394 numba.core.ssa DEBUG on stmt: lo.2 = phi(incoming_values=[Var(lo.3, umap_.py:233), Var(lo, umap_.py:198)], incoming_blocks=[1328, 740]) -13:52:49,394 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,394 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,394 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,394 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,394 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,394 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,394 numba.core.ssa DEBUG Running -13:52:49,394 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,394 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,394 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,394 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,394 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,394 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,394 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,394 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,394 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,394 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,394 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,394 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,394 numba.core.ssa DEBUG Running -13:52:49,394 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,394 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,394 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,394 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,395 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,395 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,395 numba.core.ssa DEBUG Running -13:52:49,395 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,395 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,395 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,395 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,395 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,395 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,395 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,395 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,395 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,395 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,395 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,395 numba.core.ssa DEBUG Running -13:52:49,395 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,395 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,395 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid -13:52:49,395 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,395 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,395 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,395 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,395 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,395 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,395 numba.core.ssa DEBUG Running -13:52:49,395 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,395 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,395 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,395 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,395 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,395 numba.core.ssa DEBUG Running -13:52:49,395 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,395 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,395 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,395 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,396 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,396 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,396 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,396 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,396 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,396 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,396 numba.core.ssa DEBUG Running -13:52:49,396 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,396 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,396 numba.core.ssa DEBUG Running -13:52:49,396 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,396 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,396 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,396 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,396 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,396 numba.core.ssa DEBUG Running -13:52:49,396 numba.core.ssa DEBUG on stmt: hi.1 = mid -13:52:49,396 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo.2 + hi -13:52:49,396 numba.core.ssa DEBUG find_def var='hi' stmt=$binop_add1042.5 = lo.2 + hi -13:52:49,396 numba.core.ssa DEBUG replaced with: $binop_add1042.5 = lo.2 + hi.1 -13:52:49,396 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,396 numba.core.ssa DEBUG on stmt: mid = $binop_add1042.5 / $const1046.6 -13:52:49,396 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,396 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,396 numba.core.ssa DEBUG Running -13:52:49,396 numba.core.ssa DEBUG on stmt: lo.1 = mid -13:52:49,396 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,396 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi == $1062load_global.4 -13:52:49,396 numba.core.ssa DEBUG find_def var='hi' stmt=$1074compare_op.5 = hi == $1062load_global.4 -13:52:49,396 numba.core.ssa DEBUG find_def_from_top label 1056 -13:52:49,396 numba.core.ssa DEBUG idom 1022 from label 1056 -13:52:49,396 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,396 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,396 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,397 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,397 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,397 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 770 -13:52:49,397 numba.core.ssa DEBUG insert phi node hi.2 = phi(incoming_values=[], incoming_blocks=[]) at 770 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 1328 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 1328 -13:52:49,397 numba.core.ssa DEBUG insert phi node hi.3 = phi(incoming_values=[], incoming_blocks=[]) at 1328 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 1034 -13:52:49,397 numba.core.ssa DEBUG incoming_def hi.1 = mid -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 1082 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 1082 -13:52:49,397 numba.core.ssa DEBUG idom 1056 from label 1082 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 1056 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 1056 -13:52:49,397 numba.core.ssa DEBUG idom 1022 from label 1056 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,397 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,397 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,397 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,397 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,397 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,398 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,398 numba.core.ssa DEBUG incoming_def hi.2 = phi(incoming_values=[], incoming_blocks=[]) -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 1094 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 1094 -13:52:49,398 numba.core.ssa DEBUG idom 1056 from label 1094 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 1056 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 1056 -13:52:49,398 numba.core.ssa DEBUG idom 1022 from label 1056 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,398 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,398 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,398 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,398 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,398 numba.core.ssa DEBUG incoming_def hi.2 = phi(incoming_values=[], incoming_blocks=[]) -13:52:49,398 numba.core.ssa DEBUG incoming_def hi.3 = phi(incoming_values=[Var(hi.1, umap_.py:233), Var(hi.2, umap_.py:236), Var(hi.2, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 740 -13:52:49,398 numba.core.ssa DEBUG find_def_from_top label 740 -13:52:49,398 numba.core.ssa DEBUG idom 318 from label 740 -13:52:49,398 numba.core.ssa DEBUG find_def_from_bottom label 318 -13:52:49,398 numba.core.ssa DEBUG incoming_def hi = global(NPY_INFINITY: inf) -13:52:49,399 numba.core.ssa DEBUG replaced with: $1074compare_op.5 = hi.2 == $1062load_global.4 -13:52:49,399 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,399 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,399 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,399 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,399 numba.core.ssa DEBUG Running -13:52:49,399 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,399 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,399 numba.core.ssa DEBUG on stmt: mid = $binop_imul1086.4 -13:52:49,399 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,399 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,399 numba.core.ssa DEBUG Running -13:52:49,399 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo.1 + hi -13:52:49,399 numba.core.ssa DEBUG find_def var='hi' stmt=$binop_add1098.4 = lo.1 + hi -13:52:49,399 numba.core.ssa DEBUG find_def_from_top label 1094 -13:52:49,399 numba.core.ssa DEBUG idom 1056 from label 1094 -13:52:49,399 numba.core.ssa DEBUG find_def_from_bottom label 1056 -13:52:49,399 numba.core.ssa DEBUG find_def_from_top label 1056 -13:52:49,399 numba.core.ssa DEBUG idom 1022 from label 1056 -13:52:49,399 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,399 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,399 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,399 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,399 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,399 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,399 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,399 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,399 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,399 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,399 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,399 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,399 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,399 numba.core.ssa DEBUG replaced with: $binop_add1098.4 = lo.1 + hi.2 -13:52:49,399 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,399 numba.core.ssa DEBUG on stmt: mid = $binop_add1098.4 / $const1102.5 -13:52:49,400 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,400 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,400 numba.core.ssa DEBUG Running -13:52:49,400 numba.core.ssa DEBUG on stmt: result[i] = mid -13:52:49,400 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,400 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,400 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,400 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,400 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,400 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,400 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,400 numba.core.ssa DEBUG Running -13:52:49,400 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,400 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,400 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,400 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,400 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,400 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,400 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,400 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,400 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,400 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,400 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,400 numba.core.ssa DEBUG Running -13:52:49,400 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,400 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,400 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,400 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,400 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,400 numba.core.ssa DEBUG Running -13:52:49,400 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,400 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,400 numba.core.ssa DEBUG Running -13:52:49,400 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,401 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,401 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,401 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,401 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,401 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,401 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,401 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,401 numba.core.ssa DEBUG Running -13:52:49,401 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,401 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,401 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,401 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,401 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,401 numba.core.ssa DEBUG Running -13:52:49,401 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,401 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,401 numba.core.ssa DEBUG Running -13:52:49,401 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,401 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,401 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,401 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,401 numba.core.ssa DEBUG Running -13:52:49,401 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,401 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,401 numba.core.ssa DEBUG Running -13:52:49,401 numba.core.ssa DEBUG on stmt: lo.3 = phi(incoming_values=[Var(lo.2, umap_.py:233), Var(lo.1, umap_.py:236), Var(lo.1, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,401 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,401 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,401 numba.core.ssa DEBUG Running -13:52:49,401 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,401 numba.core.ssa DEBUG Fix SSA violator on var mid -13:52:49,401 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,401 numba.core.ssa DEBUG Running -13:52:49,401 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,401 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,401 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,402 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,402 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,402 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,402 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,402 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,402 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,402 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,402 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,402 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,402 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,402 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,402 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,402 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,402 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,402 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,402 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,402 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,402 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,402 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,402 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,402 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,402 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,402 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,402 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,402 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,402 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,402 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,402 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,402 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,402 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,402 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,402 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,403 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,403 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,403 numba.core.ssa DEBUG Running -13:52:49,403 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,403 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,403 numba.core.ssa DEBUG Running -13:52:49,403 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,403 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,403 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,403 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,403 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,403 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,403 numba.core.ssa DEBUG Running -13:52:49,403 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,403 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,403 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,403 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,403 numba.core.ssa DEBUG first assign: mid -13:52:49,403 numba.core.ssa DEBUG replaced with: mid = const(float, 1.0) -13:52:49,403 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,403 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,403 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,403 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,403 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,403 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,403 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,403 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,403 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,403 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,403 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,403 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,403 numba.core.ssa DEBUG Running -13:52:49,403 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,403 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,403 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,403 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,404 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,404 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,404 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,404 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,404 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,404 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,404 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,404 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,404 numba.core.ssa DEBUG Running -13:52:49,404 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,404 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,404 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,404 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,404 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,404 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,404 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,404 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,404 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,404 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,404 numba.core.ssa DEBUG Running -13:52:49,404 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,404 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,404 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,404 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,404 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,404 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,404 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,404 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,404 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,404 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,404 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,404 numba.core.ssa DEBUG Running -13:52:49,404 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,404 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,404 numba.core.ssa DEBUG Running -13:52:49,405 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,405 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,405 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,405 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,405 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,405 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,405 numba.core.ssa DEBUG Running -13:52:49,405 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,405 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,405 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,405 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,405 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,405 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,405 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,405 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,405 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,405 numba.core.ssa DEBUG Running -13:52:49,405 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,405 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,405 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,405 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,405 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,405 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,405 numba.core.ssa DEBUG Running -13:52:49,405 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,405 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,405 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,405 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,405 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,405 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,405 numba.core.ssa DEBUG Running -13:52:49,405 numba.core.ssa DEBUG on stmt: hi.2 = phi(incoming_values=[Var(hi.3, umap_.py:236), Var(hi, umap_.py:199)], incoming_blocks=[1328, 740]) -13:52:49,405 numba.core.ssa DEBUG on stmt: lo.2 = phi(incoming_values=[Var(lo.3, umap_.py:233), Var(lo, umap_.py:198)], incoming_blocks=[1328, 740]) -13:52:49,405 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,405 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,406 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,406 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,406 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,406 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,406 numba.core.ssa DEBUG Running -13:52:49,406 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,406 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,406 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,406 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,406 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,406 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,406 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,406 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,406 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,406 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,406 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,406 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,406 numba.core.ssa DEBUG Running -13:52:49,406 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,406 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,406 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,406 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,406 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,406 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,406 numba.core.ssa DEBUG Running -13:52:49,406 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,406 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,406 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,406 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,406 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,406 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,406 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,406 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,406 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,406 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,406 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,406 numba.core.ssa DEBUG Running -13:52:49,407 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,407 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,407 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid -13:52:49,407 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,407 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,407 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,407 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,407 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,407 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,407 numba.core.ssa DEBUG Running -13:52:49,407 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,407 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,407 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,407 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,407 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,407 numba.core.ssa DEBUG Running -13:52:49,407 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,407 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,407 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,407 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,407 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,407 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,407 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,407 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,407 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,407 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,407 numba.core.ssa DEBUG Running -13:52:49,407 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,407 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,407 numba.core.ssa DEBUG Running -13:52:49,407 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,407 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,407 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,407 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,407 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,408 numba.core.ssa DEBUG Running -13:52:49,408 numba.core.ssa DEBUG on stmt: hi.1 = mid -13:52:49,408 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo.2 + hi.1 -13:52:49,408 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,408 numba.core.ssa DEBUG on stmt: mid = $binop_add1042.5 / $const1046.6 -13:52:49,408 numba.core.ssa DEBUG replaced with: mid.1 = $binop_add1042.5 / $const1046.6 -13:52:49,408 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,408 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,408 numba.core.ssa DEBUG Running -13:52:49,408 numba.core.ssa DEBUG on stmt: lo.1 = mid -13:52:49,408 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,408 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi.2 == $1062load_global.4 -13:52:49,408 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,408 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,408 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,408 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,408 numba.core.ssa DEBUG Running -13:52:49,408 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,408 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,408 numba.core.ssa DEBUG on stmt: mid = $binop_imul1086.4 -13:52:49,408 numba.core.ssa DEBUG replaced with: mid.2 = $binop_imul1086.4 -13:52:49,408 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,408 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,408 numba.core.ssa DEBUG Running -13:52:49,408 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo.1 + hi.2 -13:52:49,408 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,408 numba.core.ssa DEBUG on stmt: mid = $binop_add1098.4 / $const1102.5 -13:52:49,408 numba.core.ssa DEBUG replaced with: mid.3 = $binop_add1098.4 / $const1102.5 -13:52:49,408 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,408 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,408 numba.core.ssa DEBUG Running -13:52:49,408 numba.core.ssa DEBUG on stmt: result[i] = mid -13:52:49,408 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,408 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,408 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,409 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,409 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,409 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,409 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,409 numba.core.ssa DEBUG Running -13:52:49,409 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,409 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,409 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,409 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,409 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,409 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,409 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,409 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,409 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,409 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,409 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,409 numba.core.ssa DEBUG Running -13:52:49,409 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,409 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,409 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,409 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,409 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,409 numba.core.ssa DEBUG Running -13:52:49,409 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,409 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,409 numba.core.ssa DEBUG Running -13:52:49,409 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,409 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,409 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,409 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,409 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,409 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,409 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,409 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,409 numba.core.ssa DEBUG Running -13:52:49,409 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,410 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,410 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,410 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,410 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,410 numba.core.ssa DEBUG Running -13:52:49,410 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,410 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,410 numba.core.ssa DEBUG Running -13:52:49,410 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,410 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,410 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,410 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,410 numba.core.ssa DEBUG Running -13:52:49,410 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,410 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,410 numba.core.ssa DEBUG Running -13:52:49,410 numba.core.ssa DEBUG on stmt: hi.3 = phi(incoming_values=[Var(hi.1, umap_.py:233), Var(hi.2, umap_.py:236), Var(hi.2, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,410 numba.core.ssa DEBUG on stmt: lo.3 = phi(incoming_values=[Var(lo.2, umap_.py:233), Var(lo.1, umap_.py:236), Var(lo.1, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,410 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,410 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,410 numba.core.ssa DEBUG Running -13:52:49,410 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,410 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {318: [], - 1034: [], - 1082: [], - 1094: []}) -13:52:49,410 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,410 numba.core.ssa DEBUG Running -13:52:49,410 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,410 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,410 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,410 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,410 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,410 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,410 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,410 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,410 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,411 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,411 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,411 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,411 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,411 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,411 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,411 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,411 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,411 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,411 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,411 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,411 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,411 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,411 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,411 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,411 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,411 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,411 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,411 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,411 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,411 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,411 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,411 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,411 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,411 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,411 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,411 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,411 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,411 numba.core.ssa DEBUG Running -13:52:49,411 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,412 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,412 numba.core.ssa DEBUG Running -13:52:49,412 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,412 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,412 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,412 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,412 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,412 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,412 numba.core.ssa DEBUG Running -13:52:49,412 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,412 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,412 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,412 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,412 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,412 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,412 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,412 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,412 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,412 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,412 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,412 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,412 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,412 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,412 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,412 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,412 numba.core.ssa DEBUG Running -13:52:49,412 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,412 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,412 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,412 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,412 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,412 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,412 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,412 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,413 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,413 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,413 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,413 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,413 numba.core.ssa DEBUG Running -13:52:49,413 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,413 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,413 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,413 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,413 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,413 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,413 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,413 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,413 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,413 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,413 numba.core.ssa DEBUG Running -13:52:49,413 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,413 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,413 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,413 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,413 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,413 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,413 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,413 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,413 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,413 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,413 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,413 numba.core.ssa DEBUG Running -13:52:49,413 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,413 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,413 numba.core.ssa DEBUG Running -13:52:49,413 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,413 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,413 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,413 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,414 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,414 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,414 numba.core.ssa DEBUG Running -13:52:49,414 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,414 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,414 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,414 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,414 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,414 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,414 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,414 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,414 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,414 numba.core.ssa DEBUG Running -13:52:49,414 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,414 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,414 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,414 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,414 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,414 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,414 numba.core.ssa DEBUG Running -13:52:49,414 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,414 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,414 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,414 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,414 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,414 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,414 numba.core.ssa DEBUG Running -13:52:49,414 numba.core.ssa DEBUG on stmt: hi.2 = phi(incoming_values=[Var(hi.3, umap_.py:236), Var(hi, umap_.py:199)], incoming_blocks=[1328, 740]) -13:52:49,414 numba.core.ssa DEBUG on stmt: lo.2 = phi(incoming_values=[Var(lo.3, umap_.py:233), Var(lo, umap_.py:198)], incoming_blocks=[1328, 740]) -13:52:49,414 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,414 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,414 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,414 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,415 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,415 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,415 numba.core.ssa DEBUG Running -13:52:49,415 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,415 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,415 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,415 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,415 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,415 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,415 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,415 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,415 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,415 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,415 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,415 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,415 numba.core.ssa DEBUG Running -13:52:49,415 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,415 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,415 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,415 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,415 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,415 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,415 numba.core.ssa DEBUG Running -13:52:49,415 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,415 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,415 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,415 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,415 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,415 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,415 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,415 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,415 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,415 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,415 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,415 numba.core.ssa DEBUG Running -13:52:49,416 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,416 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,416 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid -13:52:49,416 numba.core.ssa DEBUG find_def var='mid' stmt=$binop_truediv914.9 = d / mid -13:52:49,416 numba.core.ssa DEBUG find_def_from_top label 886 -13:52:49,416 numba.core.ssa DEBUG idom 834 from label 886 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 834 -13:52:49,416 numba.core.ssa DEBUG find_def_from_top label 834 -13:52:49,416 numba.core.ssa DEBUG idom 832 from label 834 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,416 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,416 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,416 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,416 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,416 numba.core.ssa DEBUG find_def_from_top label 770 -13:52:49,416 numba.core.ssa DEBUG insert phi node mid.4 = phi(incoming_values=[], incoming_blocks=[]) at 770 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 1328 -13:52:49,416 numba.core.ssa DEBUG find_def_from_top label 1328 -13:52:49,416 numba.core.ssa DEBUG insert phi node mid.5 = phi(incoming_values=[], incoming_blocks=[]) at 1328 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 1034 -13:52:49,416 numba.core.ssa DEBUG incoming_def mid.1 = $binop_add1042.5 / $const1046.6 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 1082 -13:52:49,416 numba.core.ssa DEBUG incoming_def mid.2 = $binop_imul1086.4 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 1094 -13:52:49,416 numba.core.ssa DEBUG incoming_def mid.3 = $binop_add1098.4 / $const1102.5 -13:52:49,416 numba.core.ssa DEBUG incoming_def mid.5 = phi(incoming_values=[Var(mid.1, umap_.py:234), Var(mid.2, umap_.py:238), Var(mid.3, umap_.py:240)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 740 -13:52:49,416 numba.core.ssa DEBUG find_def_from_top label 740 -13:52:49,416 numba.core.ssa DEBUG idom 318 from label 740 -13:52:49,416 numba.core.ssa DEBUG find_def_from_bottom label 318 -13:52:49,416 numba.core.ssa DEBUG incoming_def mid = const(float, 1.0) -13:52:49,416 numba.core.ssa DEBUG replaced with: $binop_truediv914.9 = d / mid.4 -13:52:49,416 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,416 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,417 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,417 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,417 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,417 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,417 numba.core.ssa DEBUG Running -13:52:49,417 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,417 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,417 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,417 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,417 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,417 numba.core.ssa DEBUG Running -13:52:49,417 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,417 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,417 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,417 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,417 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,417 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,417 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,417 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,417 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,417 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,417 numba.core.ssa DEBUG Running -13:52:49,417 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,417 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,417 numba.core.ssa DEBUG Running -13:52:49,417 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,417 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,417 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,417 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,417 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,417 numba.core.ssa DEBUG Running -13:52:49,417 numba.core.ssa DEBUG on stmt: hi.1 = mid -13:52:49,417 numba.core.ssa DEBUG find_def var='mid' stmt=hi.1 = mid -13:52:49,417 numba.core.ssa DEBUG find_def_from_top label 1034 -13:52:49,417 numba.core.ssa DEBUG idom 1022 from label 1034 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,418 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,418 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,418 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,418 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,418 numba.core.ssa DEBUG replaced with: hi.1 = mid.4 -13:52:49,418 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo.2 + hi.1 -13:52:49,418 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,418 numba.core.ssa DEBUG on stmt: mid.1 = $binop_add1042.5 / $const1046.6 -13:52:49,418 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,418 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,418 numba.core.ssa DEBUG Running -13:52:49,418 numba.core.ssa DEBUG on stmt: lo.1 = mid -13:52:49,418 numba.core.ssa DEBUG find_def var='mid' stmt=lo.1 = mid -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 1056 -13:52:49,418 numba.core.ssa DEBUG idom 1022 from label 1056 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,418 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,418 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,418 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,418 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,418 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,418 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,418 numba.core.ssa DEBUG replaced with: lo.1 = mid.4 -13:52:49,418 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,418 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi.2 == $1062load_global.4 -13:52:49,419 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,419 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,419 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,419 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,419 numba.core.ssa DEBUG Running -13:52:49,419 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,419 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,419 numba.core.ssa DEBUG find_def var='mid' stmt=$binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,419 numba.core.ssa DEBUG find_def_from_top label 1082 -13:52:49,419 numba.core.ssa DEBUG idom 1056 from label 1082 -13:52:49,419 numba.core.ssa DEBUG find_def_from_bottom label 1056 -13:52:49,419 numba.core.ssa DEBUG find_def_from_top label 1056 -13:52:49,419 numba.core.ssa DEBUG idom 1022 from label 1056 -13:52:49,419 numba.core.ssa DEBUG find_def_from_bottom label 1022 -13:52:49,419 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,419 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,419 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,419 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,419 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,419 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,419 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,419 numba.core.ssa DEBUG idom 772 from label 832 -13:52:49,419 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,419 numba.core.ssa DEBUG find_def_from_top label 772 -13:52:49,419 numba.core.ssa DEBUG idom 770 from label 772 -13:52:49,419 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,419 numba.core.ssa DEBUG replaced with: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid.4, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,419 numba.core.ssa DEBUG on stmt: mid.2 = $binop_imul1086.4 -13:52:49,419 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,419 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,419 numba.core.ssa DEBUG Running -13:52:49,419 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo.1 + hi.2 -13:52:49,419 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,419 numba.core.ssa DEBUG on stmt: mid.3 = $binop_add1098.4 / $const1102.5 -13:52:49,419 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,419 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,420 numba.core.ssa DEBUG Running -13:52:49,420 numba.core.ssa DEBUG on stmt: result[i] = mid -13:52:49,420 numba.core.ssa DEBUG find_def var='mid' stmt=result[i] = mid -13:52:49,420 numba.core.ssa DEBUG find_def_from_top label 1112 -13:52:49,420 numba.core.ssa DEBUG idom 770 from label 1112 -13:52:49,420 numba.core.ssa DEBUG find_def_from_bottom label 770 -13:52:49,420 numba.core.ssa DEBUG replaced with: result[i] = mid.4 -13:52:49,420 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,420 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,420 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,420 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,420 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,420 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,420 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,420 numba.core.ssa DEBUG Running -13:52:49,420 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,420 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,420 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,420 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,420 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,420 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,420 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,420 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,420 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,420 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,420 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,420 numba.core.ssa DEBUG Running -13:52:49,420 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,420 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,420 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,420 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,420 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,420 numba.core.ssa DEBUG Running -13:52:49,420 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,420 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,421 numba.core.ssa DEBUG Running -13:52:49,421 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,421 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,421 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,421 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,421 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,421 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,421 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,421 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,421 numba.core.ssa DEBUG Running -13:52:49,421 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,421 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,421 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,421 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,421 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,421 numba.core.ssa DEBUG Running -13:52:49,421 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,421 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,421 numba.core.ssa DEBUG Running -13:52:49,421 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,421 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,421 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,421 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,421 numba.core.ssa DEBUG Running -13:52:49,421 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,421 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,421 numba.core.ssa DEBUG Running -13:52:49,421 numba.core.ssa DEBUG on stmt: hi.3 = phi(incoming_values=[Var(hi.1, umap_.py:233), Var(hi.2, umap_.py:236), Var(hi.2, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,421 numba.core.ssa DEBUG on stmt: lo.3 = phi(incoming_values=[Var(lo.2, umap_.py:233), Var(lo.1, umap_.py:236), Var(lo.1, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,421 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,421 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,421 numba.core.ssa DEBUG Running -13:52:49,421 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,421 numba.core.ssa DEBUG Fix SSA violator on var psum -13:52:49,421 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,422 numba.core.ssa DEBUG Running -13:52:49,422 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,422 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,422 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,422 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,422 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,422 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,422 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,422 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,422 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,422 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,422 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,422 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,422 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,422 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,422 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,422 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,422 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,422 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,422 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,422 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,422 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,422 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,422 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,422 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,422 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,422 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,422 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,422 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,422 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,422 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,422 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,422 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,422 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,423 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,423 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,423 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,423 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,423 numba.core.ssa DEBUG Running -13:52:49,423 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,423 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,423 numba.core.ssa DEBUG Running -13:52:49,423 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,423 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,423 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,423 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,423 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,423 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,423 numba.core.ssa DEBUG Running -13:52:49,423 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,423 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,423 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,423 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,423 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,423 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,423 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,423 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,423 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,423 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,423 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,423 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,423 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,423 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,423 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,423 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,423 numba.core.ssa DEBUG Running -13:52:49,423 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,423 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,423 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,423 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,424 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,424 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,424 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,424 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,424 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,424 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,424 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,424 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,424 numba.core.ssa DEBUG Running -13:52:49,424 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,424 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,424 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,424 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,424 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,424 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,424 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,424 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,424 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,424 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,424 numba.core.ssa DEBUG Running -13:52:49,424 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,424 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,424 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,424 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,424 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,424 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,424 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,424 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,424 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,424 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,424 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,424 numba.core.ssa DEBUG Running -13:52:49,424 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,424 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,425 numba.core.ssa DEBUG Running -13:52:49,425 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,425 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,425 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,425 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,425 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,425 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,425 numba.core.ssa DEBUG Running -13:52:49,425 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,425 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,425 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,425 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,425 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,425 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,425 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,425 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,425 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,425 numba.core.ssa DEBUG Running -13:52:49,425 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,425 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,425 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,425 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,425 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,425 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,425 numba.core.ssa DEBUG Running -13:52:49,425 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,425 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,425 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,425 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,425 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,425 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,425 numba.core.ssa DEBUG Running -13:52:49,425 numba.core.ssa DEBUG on stmt: mid.4 = phi(incoming_values=[Var(mid.5, umap_.py:225), Var(mid, umap_.py:200)], incoming_blocks=[1328, 740]) -13:52:49,425 numba.core.ssa DEBUG on stmt: hi.2 = phi(incoming_values=[Var(hi.3, umap_.py:236), Var(hi, umap_.py:199)], incoming_blocks=[1328, 740]) -13:52:49,425 numba.core.ssa DEBUG on stmt: lo.2 = phi(incoming_values=[Var(lo.3, umap_.py:233), Var(lo, umap_.py:198)], incoming_blocks=[1328, 740]) -13:52:49,425 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,426 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,426 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,426 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,426 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,426 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,426 numba.core.ssa DEBUG Running -13:52:49,426 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,426 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,426 numba.core.ssa DEBUG first assign: psum -13:52:49,426 numba.core.ssa DEBUG replaced with: psum = const(float, 0.0) -13:52:49,426 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,426 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,426 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,426 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,426 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,426 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,426 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,426 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,426 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,426 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,426 numba.core.ssa DEBUG Running -13:52:49,426 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,426 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,426 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,426 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,426 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,426 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,426 numba.core.ssa DEBUG Running -13:52:49,426 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,426 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,426 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,426 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,426 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,426 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,426 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,426 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,427 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,427 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,427 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,427 numba.core.ssa DEBUG Running -13:52:49,427 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,427 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,427 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid.4 -13:52:49,427 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,427 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,427 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,427 numba.core.ssa DEBUG on stmt: psum = $binop_iadd934.12 -13:52:49,427 numba.core.ssa DEBUG replaced with: psum.1 = $binop_iadd934.12 -13:52:49,427 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,427 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,427 numba.core.ssa DEBUG Running -13:52:49,427 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,427 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,427 numba.core.ssa DEBUG on stmt: psum = $binop_iadd946.5 -13:52:49,427 numba.core.ssa DEBUG replaced with: psum.2 = $binop_iadd946.5 -13:52:49,427 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,427 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,427 numba.core.ssa DEBUG Running -13:52:49,427 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,427 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,427 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,427 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,427 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,427 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,427 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,427 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,427 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,427 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,427 numba.core.ssa DEBUG Running -13:52:49,427 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,428 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,428 numba.core.ssa DEBUG Running -13:52:49,428 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,428 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,428 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,428 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,428 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,428 numba.core.ssa DEBUG Running -13:52:49,428 numba.core.ssa DEBUG on stmt: hi.1 = mid.4 -13:52:49,428 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo.2 + hi.1 -13:52:49,428 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,428 numba.core.ssa DEBUG on stmt: mid.1 = $binop_add1042.5 / $const1046.6 -13:52:49,428 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,428 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,428 numba.core.ssa DEBUG Running -13:52:49,428 numba.core.ssa DEBUG on stmt: lo.1 = mid.4 -13:52:49,428 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,428 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi.2 == $1062load_global.4 -13:52:49,428 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,428 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,428 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,428 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,428 numba.core.ssa DEBUG Running -13:52:49,428 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,428 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid.4, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,428 numba.core.ssa DEBUG on stmt: mid.2 = $binop_imul1086.4 -13:52:49,428 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,428 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,428 numba.core.ssa DEBUG Running -13:52:49,428 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo.1 + hi.2 -13:52:49,428 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,428 numba.core.ssa DEBUG on stmt: mid.3 = $binop_add1098.4 / $const1102.5 -13:52:49,428 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,428 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,428 numba.core.ssa DEBUG Running -13:52:49,428 numba.core.ssa DEBUG on stmt: result[i] = mid.4 -13:52:49,428 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,429 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,429 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,429 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,429 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,429 numba.core.ssa DEBUG Running -13:52:49,429 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,429 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,429 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,429 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,429 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,429 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,429 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,429 numba.core.ssa DEBUG Running -13:52:49,429 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,429 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,429 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,429 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,429 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,429 numba.core.ssa DEBUG Running -13:52:49,429 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,429 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,429 numba.core.ssa DEBUG Running -13:52:49,429 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,429 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,429 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,429 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,429 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,429 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,430 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,430 numba.core.ssa DEBUG Running -13:52:49,430 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,430 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,430 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,430 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,430 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,430 numba.core.ssa DEBUG Running -13:52:49,430 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,430 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,430 numba.core.ssa DEBUG Running -13:52:49,430 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,430 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,430 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,430 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,430 numba.core.ssa DEBUG Running -13:52:49,430 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,430 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,430 numba.core.ssa DEBUG Running -13:52:49,430 numba.core.ssa DEBUG on stmt: mid.5 = phi(incoming_values=[Var(mid.1, umap_.py:234), Var(mid.2, umap_.py:238), Var(mid.3, umap_.py:240)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,430 numba.core.ssa DEBUG on stmt: hi.3 = phi(incoming_values=[Var(hi.1, umap_.py:233), Var(hi.2, umap_.py:236), Var(hi.2, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,430 numba.core.ssa DEBUG on stmt: lo.3 = phi(incoming_values=[Var(lo.2, umap_.py:233), Var(lo.1, umap_.py:236), Var(lo.1, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,430 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,430 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,430 numba.core.ssa DEBUG Running -13:52:49,430 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,430 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {772: [], - 886: [], - 942: []}) -13:52:49,430 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,431 numba.core.ssa DEBUG Running -13:52:49,431 numba.core.ssa DEBUG on stmt: distances = arg(0, name=distances) -13:52:49,431 numba.core.ssa DEBUG on stmt: k = arg(1, name=k) -13:52:49,431 numba.core.ssa DEBUG on stmt: n_iter = arg(2, name=n_iter) -13:52:49,431 numba.core.ssa DEBUG on stmt: local_connectivity = arg(3, name=local_connectivity) -13:52:49,431 numba.core.ssa DEBUG on stmt: bandwidth = arg(4, name=bandwidth) -13:52:49,431 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,431 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=log2) -13:52:49,431 numba.core.ssa DEBUG on stmt: $32call.4 = call $16load_attr.2(k, func=$16load_attr.2, args=[Var(k, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,431 numba.core.ssa DEBUG on stmt: target = $32call.4 * bandwidth -13:52:49,431 numba.core.ssa DEBUG on stmt: $50load_global.7 = global(np: ) -13:52:49,431 numba.core.ssa DEBUG on stmt: $62load_attr.9 = getattr(value=$50load_global.7, attr=zeros) -13:52:49,431 numba.core.ssa DEBUG on stmt: $74load_attr.11 = getattr(value=distances, attr=shape) -13:52:49,431 numba.core.ssa DEBUG on stmt: $const84.12 = const(int, 0) -13:52:49,431 numba.core.ssa DEBUG on stmt: $86binary_subscr.13 = static_getitem(value=$74load_attr.11, index=0, index_var=$const84.12, fn=) -13:52:49,431 numba.core.ssa DEBUG on stmt: $96load_global.14 = global(np: ) -13:52:49,431 numba.core.ssa DEBUG on stmt: $108load_attr.15 = getattr(value=$96load_global.14, attr=float32) -13:52:49,431 numba.core.ssa DEBUG on stmt: rho = call $62load_attr.9($86binary_subscr.13, func=$62load_attr.9, args=[Var($86binary_subscr.13, umap_.py:192)], kws=[('dtype', Var($108load_attr.15, umap_.py:192))], vararg=None, varkwarg=None, target=None) -13:52:49,431 numba.core.ssa DEBUG on stmt: $136load_global.17 = global(np: ) -13:52:49,431 numba.core.ssa DEBUG on stmt: $148load_attr.19 = getattr(value=$136load_global.17, attr=zeros) -13:52:49,431 numba.core.ssa DEBUG on stmt: $160load_attr.21 = getattr(value=distances, attr=shape) -13:52:49,431 numba.core.ssa DEBUG on stmt: $const170.22 = const(int, 0) -13:52:49,431 numba.core.ssa DEBUG on stmt: $172binary_subscr.23 = static_getitem(value=$160load_attr.21, index=0, index_var=$const170.22, fn=) -13:52:49,431 numba.core.ssa DEBUG on stmt: $182load_global.24 = global(np: ) -13:52:49,431 numba.core.ssa DEBUG on stmt: $194load_attr.25 = getattr(value=$182load_global.24, attr=float32) -13:52:49,431 numba.core.ssa DEBUG on stmt: result = call $148load_attr.19($172binary_subscr.23, func=$148load_attr.19, args=[Var($172binary_subscr.23, umap_.py:193)], kws=[('dtype', Var($194load_attr.25, umap_.py:193))], vararg=None, varkwarg=None, target=None) -13:52:49,431 numba.core.ssa DEBUG on stmt: $222load_global.27 = global(np: ) -13:52:49,431 numba.core.ssa DEBUG on stmt: $234load_attr.29 = getattr(value=$222load_global.27, attr=mean) -13:52:49,431 numba.core.ssa DEBUG on stmt: mean_distances = call $234load_attr.29(distances, func=$234load_attr.29, args=[Var(distances, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,431 numba.core.ssa DEBUG on stmt: $262load_global.32 = global(range: ) -13:52:49,431 numba.core.ssa DEBUG on stmt: $276load_attr.35 = getattr(value=distances, attr=shape) -13:52:49,431 numba.core.ssa DEBUG on stmt: $const286.36 = const(int, 0) -13:52:49,432 numba.core.ssa DEBUG on stmt: $288binary_subscr.37 = static_getitem(value=$276load_attr.35, index=0, index_var=$const286.36, fn=) -13:52:49,432 numba.core.ssa DEBUG on stmt: $302call.38 = call $262load_global.32($288binary_subscr.37, func=$262load_global.32, args=[Var($288binary_subscr.37, umap_.py:197)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,432 numba.core.ssa DEBUG on stmt: $312get_iter.39 = getiter(value=$302call.38) -13:52:49,432 numba.core.ssa DEBUG on stmt: $phi316.0 = $312get_iter.39 -13:52:49,432 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,432 numba.core.ssa DEBUG ==== SSA block rewrite pass on 314 -13:52:49,432 numba.core.ssa DEBUG Running -13:52:49,432 numba.core.ssa DEBUG on stmt: jump 316 -13:52:49,432 numba.core.ssa DEBUG ==== SSA block rewrite pass on 316 -13:52:49,432 numba.core.ssa DEBUG Running -13:52:49,432 numba.core.ssa DEBUG on stmt: $316for_iter.1 = iternext(value=$phi316.0) -13:52:49,432 numba.core.ssa DEBUG on stmt: $316for_iter.2 = pair_first(value=$316for_iter.1) -13:52:49,432 numba.core.ssa DEBUG on stmt: $316for_iter.3 = pair_second(value=$316for_iter.1) -13:52:49,432 numba.core.ssa DEBUG on stmt: $phi318.1 = $316for_iter.2 -13:52:49,432 numba.core.ssa DEBUG on stmt: branch $316for_iter.3, 318, 1326 -13:52:49,432 numba.core.ssa DEBUG ==== SSA block rewrite pass on 318 -13:52:49,432 numba.core.ssa DEBUG Running -13:52:49,432 numba.core.ssa DEBUG on stmt: i = $phi318.1 -13:52:49,432 numba.core.ssa DEBUG on stmt: lo = const(float, 0.0) -13:52:49,432 numba.core.ssa DEBUG on stmt: hi = global(NPY_INFINITY: inf) -13:52:49,432 numba.core.ssa DEBUG on stmt: mid = const(float, 1.0) -13:52:49,432 numba.core.ssa DEBUG on stmt: ith_distances = getitem(value=distances, index=i, fn=) -13:52:49,432 numba.core.ssa DEBUG on stmt: $const362.10 = const(float, 0.0) -13:52:49,432 numba.core.ssa DEBUG on stmt: $364compare_op.11 = ith_distances > $const362.10 -13:52:49,432 numba.core.ssa DEBUG on stmt: non_zero_dists = getitem(value=ith_distances, index=$364compare_op.11, fn=) -13:52:49,432 numba.core.ssa DEBUG on stmt: $384load_attr.14 = getattr(value=non_zero_dists, attr=shape) -13:52:49,432 numba.core.ssa DEBUG on stmt: $const394.15 = const(int, 0) -13:52:49,432 numba.core.ssa DEBUG on stmt: $396binary_subscr.16 = static_getitem(value=$384load_attr.14, index=0, index_var=$const394.15, fn=) -13:52:49,432 numba.core.ssa DEBUG on stmt: $408compare_op.18 = $396binary_subscr.16 >= local_connectivity -13:52:49,432 numba.core.ssa DEBUG on stmt: bool414 = global(bool: ) -13:52:49,432 numba.core.ssa DEBUG on stmt: $414pred = call bool414($408compare_op.18, func=bool414, args=(Var($408compare_op.18, umap_.py:205),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,432 numba.core.ssa DEBUG on stmt: branch $414pred, 416, 660 -13:52:49,432 numba.core.ssa DEBUG ==== SSA block rewrite pass on 416 -13:52:49,432 numba.core.ssa DEBUG Running -13:52:49,432 numba.core.ssa DEBUG on stmt: $416load_global.1 = global(int: ) -13:52:49,433 numba.core.ssa DEBUG on stmt: $428load_global.3 = global(np: ) -13:52:49,433 numba.core.ssa DEBUG on stmt: $440load_attr.5 = getattr(value=$428load_global.3, attr=floor) -13:52:49,433 numba.core.ssa DEBUG on stmt: $456call.7 = call $440load_attr.5(local_connectivity, func=$440load_attr.5, args=[Var(local_connectivity, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,433 numba.core.ssa DEBUG on stmt: index = call $416load_global.1($456call.7, func=$416load_global.1, args=[Var($456call.7, umap_.py:206)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,433 numba.core.ssa DEBUG on stmt: interpolation = local_connectivity - index -13:52:49,433 numba.core.ssa DEBUG on stmt: $const494.13 = const(int, 0) -13:52:49,433 numba.core.ssa DEBUG on stmt: $496compare_op.14 = index > $const494.13 -13:52:49,433 numba.core.ssa DEBUG on stmt: bool502 = global(bool: ) -13:52:49,433 numba.core.ssa DEBUG on stmt: $502pred = call bool502($496compare_op.14, func=bool502, args=(Var($496compare_op.14, umap_.py:208),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,433 numba.core.ssa DEBUG on stmt: branch $502pred, 504, 630 -13:52:49,433 numba.core.ssa DEBUG ==== SSA block rewrite pass on 504 -13:52:49,433 numba.core.ssa DEBUG Running -13:52:49,433 numba.core.ssa DEBUG on stmt: $const508.3 = const(int, 1) -13:52:49,433 numba.core.ssa DEBUG on stmt: $binop_sub510.4 = index - $const508.3 -13:52:49,433 numba.core.ssa DEBUG on stmt: $514binary_subscr.5 = getitem(value=non_zero_dists, index=$binop_sub510.4, fn=) -13:52:49,433 numba.core.ssa DEBUG on stmt: rho[i] = $514binary_subscr.5 -13:52:49,433 numba.core.ssa DEBUG on stmt: $534load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,433 numba.core.ssa DEBUG on stmt: $546compare_op.10 = interpolation > $534load_global.9 -13:52:49,433 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:49,433 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.10, func=bool552, args=(Var($546compare_op.10, umap_.py:210),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,433 numba.core.ssa DEBUG on stmt: branch $552pred, 554, 628 -13:52:49,433 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:49,433 numba.core.ssa DEBUG Running -13:52:49,433 numba.core.ssa DEBUG on stmt: $562binary_subscr.3 = getitem(value=rho, index=i, fn=) -13:52:49,433 numba.core.ssa DEBUG on stmt: $578binary_subscr.7 = getitem(value=non_zero_dists, index=index, fn=) -13:52:49,433 numba.core.ssa DEBUG on stmt: $const592.10 = const(int, 1) -13:52:49,433 numba.core.ssa DEBUG on stmt: $binop_sub594.11 = index - $const592.10 -13:52:49,433 numba.core.ssa DEBUG on stmt: $598binary_subscr.12 = getitem(value=non_zero_dists, index=$binop_sub594.11, fn=) -13:52:49,433 numba.core.ssa DEBUG on stmt: $binop_sub608.13 = $578binary_subscr.7 - $598binary_subscr.12 -13:52:49,433 numba.core.ssa DEBUG on stmt: $binop_mul612.14 = interpolation * $binop_sub608.13 -13:52:49,433 numba.core.ssa DEBUG on stmt: $binop_iadd616.15 = inplace_binop(fn=, immutable_fn=, lhs=$562binary_subscr.3, rhs=$binop_mul612.14, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,433 numba.core.ssa DEBUG on stmt: rho[i] = $binop_iadd616.15 -13:52:49,433 numba.core.ssa DEBUG on stmt: jump 628 -13:52:49,434 numba.core.ssa DEBUG ==== SSA block rewrite pass on 628 -13:52:49,434 numba.core.ssa DEBUG Running -13:52:49,434 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,434 numba.core.ssa DEBUG ==== SSA block rewrite pass on 630 -13:52:49,434 numba.core.ssa DEBUG Running -13:52:49,434 numba.core.ssa DEBUG on stmt: $const634.3 = const(int, 0) -13:52:49,434 numba.core.ssa DEBUG on stmt: $636binary_subscr.4 = static_getitem(value=non_zero_dists, index=0, index_var=$const634.3, fn=) -13:52:49,434 numba.core.ssa DEBUG on stmt: $binop_mul646.5 = interpolation * $636binary_subscr.4 -13:52:49,434 numba.core.ssa DEBUG on stmt: rho[i] = $binop_mul646.5 -13:52:49,434 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,434 numba.core.ssa DEBUG ==== SSA block rewrite pass on 660 -13:52:49,434 numba.core.ssa DEBUG Running -13:52:49,434 numba.core.ssa DEBUG on stmt: $662load_attr.2 = getattr(value=non_zero_dists, attr=shape) -13:52:49,434 numba.core.ssa DEBUG on stmt: $const672.3 = const(int, 0) -13:52:49,434 numba.core.ssa DEBUG on stmt: $674binary_subscr.4 = static_getitem(value=$662load_attr.2, index=0, index_var=$const672.3, fn=) -13:52:49,434 numba.core.ssa DEBUG on stmt: $const684.5 = const(int, 0) -13:52:49,434 numba.core.ssa DEBUG on stmt: $686compare_op.6 = $674binary_subscr.4 > $const684.5 -13:52:49,434 numba.core.ssa DEBUG on stmt: bool692 = global(bool: ) -13:52:49,434 numba.core.ssa DEBUG on stmt: $692pred = call bool692($686compare_op.6, func=bool692, args=(Var($686compare_op.6, umap_.py:216),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,434 numba.core.ssa DEBUG on stmt: branch $692pred, 694, 740 -13:52:49,434 numba.core.ssa DEBUG ==== SSA block rewrite pass on 694 -13:52:49,434 numba.core.ssa DEBUG Running -13:52:49,434 numba.core.ssa DEBUG on stmt: $694load_global.1 = global(np: ) -13:52:49,434 numba.core.ssa DEBUG on stmt: $706load_attr.3 = getattr(value=$694load_global.1, attr=max) -13:52:49,434 numba.core.ssa DEBUG on stmt: $722call.5 = call $706load_attr.3(non_zero_dists, func=$706load_attr.3, args=[Var(non_zero_dists, umap_.py:204)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,434 numba.core.ssa DEBUG on stmt: rho[i] = $722call.5 -13:52:49,434 numba.core.ssa DEBUG on stmt: jump 740 -13:52:49,434 numba.core.ssa DEBUG ==== SSA block rewrite pass on 740 -13:52:49,434 numba.core.ssa DEBUG Running -13:52:49,434 numba.core.ssa DEBUG on stmt: $740load_global.1 = global(range: ) -13:52:49,434 numba.core.ssa DEBUG on stmt: $758call.4 = call $740load_global.1(n_iter, func=$740load_global.1, args=[Var(n_iter, umap_.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,434 numba.core.ssa DEBUG on stmt: $768get_iter.5 = getiter(value=$758call.4) -13:52:49,434 numba.core.ssa DEBUG on stmt: $phi770.1 = $768get_iter.5 -13:52:49,434 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,435 numba.core.ssa DEBUG ==== SSA block rewrite pass on 770 -13:52:49,435 numba.core.ssa DEBUG Running -13:52:49,435 numba.core.ssa DEBUG on stmt: mid.4 = phi(incoming_values=[Var(mid.5, umap_.py:225), Var(mid, umap_.py:200)], incoming_blocks=[1328, 740]) -13:52:49,435 numba.core.ssa DEBUG on stmt: hi.2 = phi(incoming_values=[Var(hi.3, umap_.py:236), Var(hi, umap_.py:199)], incoming_blocks=[1328, 740]) -13:52:49,435 numba.core.ssa DEBUG on stmt: lo.2 = phi(incoming_values=[Var(lo.3, umap_.py:233), Var(lo, umap_.py:198)], incoming_blocks=[1328, 740]) -13:52:49,435 numba.core.ssa DEBUG on stmt: $770for_iter.2 = iternext(value=$phi770.1) -13:52:49,435 numba.core.ssa DEBUG on stmt: $770for_iter.3 = pair_first(value=$770for_iter.2) -13:52:49,435 numba.core.ssa DEBUG on stmt: $770for_iter.4 = pair_second(value=$770for_iter.2) -13:52:49,435 numba.core.ssa DEBUG on stmt: $phi772.2 = $770for_iter.3 -13:52:49,435 numba.core.ssa DEBUG on stmt: branch $770for_iter.4, 772, 1112 -13:52:49,435 numba.core.ssa DEBUG ==== SSA block rewrite pass on 772 -13:52:49,435 numba.core.ssa DEBUG Running -13:52:49,435 numba.core.ssa DEBUG on stmt: n = $phi772.2 -13:52:49,435 numba.core.ssa DEBUG on stmt: psum = const(float, 0.0) -13:52:49,435 numba.core.ssa DEBUG on stmt: $778load_global.4 = global(range: ) -13:52:49,435 numba.core.ssa DEBUG on stmt: $const790.6 = const(int, 1) -13:52:49,435 numba.core.ssa DEBUG on stmt: $794load_attr.8 = getattr(value=distances, attr=shape) -13:52:49,435 numba.core.ssa DEBUG on stmt: $const804.9 = const(int, 1) -13:52:49,435 numba.core.ssa DEBUG on stmt: $806binary_subscr.10 = static_getitem(value=$794load_attr.8, index=1, index_var=$const804.9, fn=) -13:52:49,435 numba.core.ssa DEBUG on stmt: $820call.11 = call $778load_global.4($const790.6, $806binary_subscr.10, func=$778load_global.4, args=[Var($const790.6, umap_.py:222), Var($806binary_subscr.10, umap_.py:222)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,435 numba.core.ssa DEBUG on stmt: $830get_iter.12 = getiter(value=$820call.11) -13:52:49,435 numba.core.ssa DEBUG on stmt: $phi832.2 = $830get_iter.12 -13:52:49,435 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,435 numba.core.ssa DEBUG ==== SSA block rewrite pass on 832 -13:52:49,435 numba.core.ssa DEBUG Running -13:52:49,435 numba.core.ssa DEBUG on stmt: $832for_iter.3 = iternext(value=$phi832.2) -13:52:49,435 numba.core.ssa DEBUG on stmt: $832for_iter.4 = pair_first(value=$832for_iter.3) -13:52:49,435 numba.core.ssa DEBUG on stmt: $832for_iter.5 = pair_second(value=$832for_iter.3) -13:52:49,435 numba.core.ssa DEBUG on stmt: $phi834.3 = $832for_iter.4 -13:52:49,435 numba.core.ssa DEBUG on stmt: branch $832for_iter.5, 834, 954 -13:52:49,435 numba.core.ssa DEBUG ==== SSA block rewrite pass on 834 -13:52:49,435 numba.core.ssa DEBUG Running -13:52:49,435 numba.core.ssa DEBUG on stmt: j = $phi834.3 -13:52:49,435 numba.core.ssa DEBUG on stmt: $842build_tuple.7 = build_tuple(items=[Var(i, umap_.py:197), Var(j, umap_.py:222)]) -13:52:49,435 numba.core.ssa DEBUG on stmt: $844binary_subscr.8 = getitem(value=distances, index=$842build_tuple.7, fn=) -13:52:49,436 numba.core.ssa DEBUG on stmt: $858binary_subscr.11 = getitem(value=rho, index=i, fn=) -13:52:49,436 numba.core.ssa DEBUG on stmt: d = $844binary_subscr.8 - $858binary_subscr.11 -13:52:49,436 numba.core.ssa DEBUG on stmt: $const876.14 = const(int, 0) -13:52:49,436 numba.core.ssa DEBUG on stmt: $878compare_op.15 = d > $const876.14 -13:52:49,436 numba.core.ssa DEBUG on stmt: bool884 = global(bool: ) -13:52:49,436 numba.core.ssa DEBUG on stmt: $884pred = call bool884($878compare_op.15, func=bool884, args=(Var($878compare_op.15, umap_.py:224),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,436 numba.core.ssa DEBUG on stmt: branch $884pred, 886, 942 -13:52:49,436 numba.core.ssa DEBUG ==== SSA block rewrite pass on 886 -13:52:49,436 numba.core.ssa DEBUG Running -13:52:49,436 numba.core.ssa DEBUG on stmt: $888load_global.4 = global(np: ) -13:52:49,436 numba.core.ssa DEBUG on stmt: $900load_attr.6 = getattr(value=$888load_global.4, attr=exp) -13:52:49,436 numba.core.ssa DEBUG on stmt: $binop_truediv914.9 = d / mid.4 -13:52:49,436 numba.core.ssa DEBUG on stmt: $918unary_negative.10 = unary(fn=, value=$binop_truediv914.9) -13:52:49,436 numba.core.ssa DEBUG on stmt: $924call.11 = call $900load_attr.6($918unary_negative.10, func=$900load_attr.6, args=[Var($918unary_negative.10, umap_.py:225)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,436 numba.core.ssa DEBUG on stmt: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,436 numba.core.ssa DEBUG find_def var='psum' stmt=$binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,436 numba.core.ssa DEBUG find_def_from_top label 886 -13:52:49,436 numba.core.ssa DEBUG idom 834 from label 886 -13:52:49,436 numba.core.ssa DEBUG find_def_from_bottom label 834 -13:52:49,436 numba.core.ssa DEBUG find_def_from_top label 834 -13:52:49,436 numba.core.ssa DEBUG idom 832 from label 834 -13:52:49,436 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,436 numba.core.ssa DEBUG find_def_from_top label 832 -13:52:49,436 numba.core.ssa DEBUG insert phi node psum.3 = phi(incoming_values=[], incoming_blocks=[]) at 832 -13:52:49,436 numba.core.ssa DEBUG find_def_from_bottom label 1329 -13:52:49,436 numba.core.ssa DEBUG find_def_from_top label 1329 -13:52:49,436 numba.core.ssa DEBUG insert phi node psum.4 = phi(incoming_values=[], incoming_blocks=[]) at 1329 -13:52:49,436 numba.core.ssa DEBUG find_def_from_bottom label 942 -13:52:49,436 numba.core.ssa DEBUG incoming_def psum.2 = $binop_iadd946.5 -13:52:49,436 numba.core.ssa DEBUG find_def_from_bottom label 886 -13:52:49,436 numba.core.ssa DEBUG incoming_def psum.1 = $binop_iadd934.12 -13:52:49,436 numba.core.ssa DEBUG incoming_def psum.4 = phi(incoming_values=[Var(psum.2, umap_.py:227), Var(psum.1, umap_.py:225)], incoming_blocks=[942, 886]) -13:52:49,436 numba.core.ssa DEBUG find_def_from_bottom label 772 -13:52:49,436 numba.core.ssa DEBUG incoming_def psum = const(float, 0.0) -13:52:49,437 numba.core.ssa DEBUG replaced with: $binop_iadd934.12 = inplace_binop(fn=, immutable_fn=, lhs=psum.3, rhs=$924call.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,437 numba.core.ssa DEBUG on stmt: psum.1 = $binop_iadd934.12 -13:52:49,437 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,437 numba.core.ssa DEBUG ==== SSA block rewrite pass on 942 -13:52:49,437 numba.core.ssa DEBUG Running -13:52:49,437 numba.core.ssa DEBUG on stmt: $const944.4 = const(float, 1.0) -13:52:49,437 numba.core.ssa DEBUG on stmt: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,437 numba.core.ssa DEBUG find_def var='psum' stmt=$binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,437 numba.core.ssa DEBUG find_def_from_top label 942 -13:52:49,437 numba.core.ssa DEBUG idom 834 from label 942 -13:52:49,437 numba.core.ssa DEBUG find_def_from_bottom label 834 -13:52:49,437 numba.core.ssa DEBUG find_def_from_top label 834 -13:52:49,437 numba.core.ssa DEBUG idom 832 from label 834 -13:52:49,437 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,437 numba.core.ssa DEBUG replaced with: $binop_iadd946.5 = inplace_binop(fn=, immutable_fn=, lhs=psum.3, rhs=$const944.4, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,437 numba.core.ssa DEBUG on stmt: psum.2 = $binop_iadd946.5 -13:52:49,437 numba.core.ssa DEBUG on stmt: jump 1329 -13:52:49,437 numba.core.ssa DEBUG ==== SSA block rewrite pass on 954 -13:52:49,437 numba.core.ssa DEBUG Running -13:52:49,437 numba.core.ssa DEBUG on stmt: $954load_global.2 = global(np: ) -13:52:49,437 numba.core.ssa DEBUG on stmt: $966load_attr.4 = getattr(value=$954load_global.2, attr=fabs) -13:52:49,437 numba.core.ssa DEBUG on stmt: $binop_sub980.7 = psum - target -13:52:49,437 numba.core.ssa DEBUG find_def var='psum' stmt=$binop_sub980.7 = psum - target -13:52:49,437 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,437 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,437 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,437 numba.core.ssa DEBUG replaced with: $binop_sub980.7 = psum.3 - target -13:52:49,437 numba.core.ssa DEBUG on stmt: $988call.8 = call $966load_attr.4($binop_sub980.7, func=$966load_attr.4, args=[Var($binop_sub980.7, umap_.py:229)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,437 numba.core.ssa DEBUG on stmt: $998load_global.9 = global(SMOOTH_K_TOLERANCE: 1e-05) -13:52:49,437 numba.core.ssa DEBUG on stmt: $1010compare_op.10 = $988call.8 < $998load_global.9 -13:52:49,437 numba.core.ssa DEBUG on stmt: bool1016 = global(bool: ) -13:52:49,437 numba.core.ssa DEBUG on stmt: $1016pred = call bool1016($1010compare_op.10, func=bool1016, args=(Var($1010compare_op.10, umap_.py:229),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,437 numba.core.ssa DEBUG on stmt: branch $1016pred, 1018, 1022 -13:52:49,438 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1018 -13:52:49,438 numba.core.ssa DEBUG Running -13:52:49,438 numba.core.ssa DEBUG on stmt: jump 1112 -13:52:49,438 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1022 -13:52:49,438 numba.core.ssa DEBUG Running -13:52:49,438 numba.core.ssa DEBUG on stmt: $1026compare_op.4 = psum > target -13:52:49,438 numba.core.ssa DEBUG find_def var='psum' stmt=$1026compare_op.4 = psum > target -13:52:49,438 numba.core.ssa DEBUG find_def_from_top label 1022 -13:52:49,438 numba.core.ssa DEBUG idom 954 from label 1022 -13:52:49,438 numba.core.ssa DEBUG find_def_from_bottom label 954 -13:52:49,438 numba.core.ssa DEBUG find_def_from_top label 954 -13:52:49,438 numba.core.ssa DEBUG idom 832 from label 954 -13:52:49,438 numba.core.ssa DEBUG find_def_from_bottom label 832 -13:52:49,438 numba.core.ssa DEBUG replaced with: $1026compare_op.4 = psum.3 > target -13:52:49,438 numba.core.ssa DEBUG on stmt: bool1032 = global(bool: ) -13:52:49,438 numba.core.ssa DEBUG on stmt: $1032pred = call bool1032($1026compare_op.4, func=bool1032, args=(Var($1026compare_op.4, umap_.py:232),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,438 numba.core.ssa DEBUG on stmt: branch $1032pred, 1034, 1056 -13:52:49,438 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1034 -13:52:49,438 numba.core.ssa DEBUG Running -13:52:49,438 numba.core.ssa DEBUG on stmt: hi.1 = mid.4 -13:52:49,438 numba.core.ssa DEBUG on stmt: $binop_add1042.5 = lo.2 + hi.1 -13:52:49,438 numba.core.ssa DEBUG on stmt: $const1046.6 = const(float, 2.0) -13:52:49,438 numba.core.ssa DEBUG on stmt: mid.1 = $binop_add1042.5 / $const1046.6 -13:52:49,438 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,438 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1056 -13:52:49,438 numba.core.ssa DEBUG Running -13:52:49,438 numba.core.ssa DEBUG on stmt: lo.1 = mid.4 -13:52:49,438 numba.core.ssa DEBUG on stmt: $1062load_global.4 = global(NPY_INFINITY: inf) -13:52:49,438 numba.core.ssa DEBUG on stmt: $1074compare_op.5 = hi.2 == $1062load_global.4 -13:52:49,438 numba.core.ssa DEBUG on stmt: bool1080 = global(bool: ) -13:52:49,438 numba.core.ssa DEBUG on stmt: $1080pred = call bool1080($1074compare_op.5, func=bool1080, args=(Var($1074compare_op.5, umap_.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,438 numba.core.ssa DEBUG on stmt: branch $1080pred, 1082, 1094 -13:52:49,438 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1082 -13:52:49,438 numba.core.ssa DEBUG Running -13:52:49,438 numba.core.ssa DEBUG on stmt: $const1084.3 = const(int, 2) -13:52:49,438 numba.core.ssa DEBUG on stmt: $binop_imul1086.4 = inplace_binop(fn=, immutable_fn=, lhs=mid.4, rhs=$const1084.3, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,439 numba.core.ssa DEBUG on stmt: mid.2 = $binop_imul1086.4 -13:52:49,439 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,439 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1094 -13:52:49,439 numba.core.ssa DEBUG Running -13:52:49,439 numba.core.ssa DEBUG on stmt: $binop_add1098.4 = lo.1 + hi.2 -13:52:49,439 numba.core.ssa DEBUG on stmt: $const1102.5 = const(float, 2.0) -13:52:49,439 numba.core.ssa DEBUG on stmt: mid.3 = $binop_add1098.4 / $const1102.5 -13:52:49,439 numba.core.ssa DEBUG on stmt: jump 1328 -13:52:49,439 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1112 -13:52:49,439 numba.core.ssa DEBUG Running -13:52:49,439 numba.core.ssa DEBUG on stmt: result[i] = mid.4 -13:52:49,439 numba.core.ssa DEBUG on stmt: $1126binary_subscr.6 = getitem(value=rho, index=i, fn=) -13:52:49,439 numba.core.ssa DEBUG on stmt: $const1136.7 = const(float, 0.0) -13:52:49,439 numba.core.ssa DEBUG on stmt: $1138compare_op.8 = $1126binary_subscr.6 > $const1136.7 -13:52:49,439 numba.core.ssa DEBUG on stmt: bool1144 = global(bool: ) -13:52:49,439 numba.core.ssa DEBUG on stmt: $1144pred = call bool1144($1138compare_op.8, func=bool1144, args=(Var($1138compare_op.8, umap_.py:245),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,439 numba.core.ssa DEBUG on stmt: branch $1144pred, 1146, 1256 -13:52:49,439 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1146 -13:52:49,439 numba.core.ssa DEBUG Running -13:52:49,439 numba.core.ssa DEBUG on stmt: $1146load_global.1 = global(np: ) -13:52:49,439 numba.core.ssa DEBUG on stmt: $1158load_attr.3 = getattr(value=$1146load_global.1, attr=mean) -13:52:49,439 numba.core.ssa DEBUG on stmt: mean_ith_distances = call $1158load_attr.3(ith_distances, func=$1158load_attr.3, args=[Var(ith_distances, umap_.py:203)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,439 numba.core.ssa DEBUG on stmt: $1190binary_subscr.8 = getitem(value=result, index=i, fn=) -13:52:49,439 numba.core.ssa DEBUG on stmt: $1200load_global.9 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,439 numba.core.ssa DEBUG on stmt: $binop_mul1214.11 = $1200load_global.9 * mean_ith_distances -13:52:49,439 numba.core.ssa DEBUG on stmt: $1218compare_op.12 = $1190binary_subscr.8 < $binop_mul1214.11 -13:52:49,439 numba.core.ssa DEBUG on stmt: bool1224 = global(bool: ) -13:52:49,439 numba.core.ssa DEBUG on stmt: $1224pred = call bool1224($1218compare_op.12, func=bool1224, args=(Var($1218compare_op.12, umap_.py:247),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,439 numba.core.ssa DEBUG on stmt: branch $1224pred, 1226, 1252 -13:52:49,439 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1226 -13:52:49,439 numba.core.ssa DEBUG Running -13:52:49,439 numba.core.ssa DEBUG on stmt: $1226load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,439 numba.core.ssa DEBUG on stmt: $binop_mul1240.3 = $1226load_global.1 * mean_ith_distances -13:52:49,439 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1240.3 -13:52:49,440 numba.core.ssa DEBUG on stmt: jump 1252 -13:52:49,440 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1252 -13:52:49,440 numba.core.ssa DEBUG Running -13:52:49,440 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,440 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1256 -13:52:49,440 numba.core.ssa DEBUG Running -13:52:49,440 numba.core.ssa DEBUG on stmt: $1260binary_subscr.3 = getitem(value=result, index=i, fn=) -13:52:49,440 numba.core.ssa DEBUG on stmt: $1270load_global.4 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,440 numba.core.ssa DEBUG on stmt: $binop_mul1284.6 = $1270load_global.4 * mean_distances -13:52:49,440 numba.core.ssa DEBUG on stmt: $1288compare_op.7 = $1260binary_subscr.3 < $binop_mul1284.6 -13:52:49,440 numba.core.ssa DEBUG on stmt: bool1294 = global(bool: ) -13:52:49,440 numba.core.ssa DEBUG on stmt: $1294pred = call bool1294($1288compare_op.7, func=bool1294, args=(Var($1288compare_op.7, umap_.py:250),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,440 numba.core.ssa DEBUG on stmt: branch $1294pred, 1296, 1322 -13:52:49,440 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1296 -13:52:49,440 numba.core.ssa DEBUG Running -13:52:49,440 numba.core.ssa DEBUG on stmt: $1296load_global.1 = global(MIN_K_DIST_SCALE: 0.001) -13:52:49,440 numba.core.ssa DEBUG on stmt: $binop_mul1310.3 = $1296load_global.1 * mean_distances -13:52:49,440 numba.core.ssa DEBUG on stmt: result[i] = $binop_mul1310.3 -13:52:49,440 numba.core.ssa DEBUG on stmt: jump 1322 -13:52:49,440 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1322 -13:52:49,440 numba.core.ssa DEBUG Running -13:52:49,440 numba.core.ssa DEBUG on stmt: jump 1327 -13:52:49,440 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1326 -13:52:49,440 numba.core.ssa DEBUG Running -13:52:49,440 numba.core.ssa DEBUG on stmt: $1330build_tuple.2 = build_tuple(items=[Var(result, umap_.py:193), Var(rho, umap_.py:192)]) -13:52:49,440 numba.core.ssa DEBUG on stmt: $1332return_value.3 = cast(value=$1330build_tuple.2) -13:52:49,440 numba.core.ssa DEBUG on stmt: return $1332return_value.3 -13:52:49,440 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1327 -13:52:49,440 numba.core.ssa DEBUG Running -13:52:49,440 numba.core.ssa DEBUG on stmt: jump 314 -13:52:49,440 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1328 -13:52:49,440 numba.core.ssa DEBUG Running -13:52:49,440 numba.core.ssa DEBUG on stmt: mid.5 = phi(incoming_values=[Var(mid.1, umap_.py:234), Var(mid.2, umap_.py:238), Var(mid.3, umap_.py:240)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,440 numba.core.ssa DEBUG on stmt: hi.3 = phi(incoming_values=[Var(hi.1, umap_.py:233), Var(hi.2, umap_.py:236), Var(hi.2, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,440 numba.core.ssa DEBUG on stmt: lo.3 = phi(incoming_values=[Var(lo.2, umap_.py:233), Var(lo.1, umap_.py:236), Var(lo.1, umap_.py:236)], incoming_blocks=[1034, 1082, 1094]) -13:52:49,441 numba.core.ssa DEBUG on stmt: jump 770 -13:52:49,441 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1329 -13:52:49,441 numba.core.ssa DEBUG Running -13:52:49,441 numba.core.ssa DEBUG on stmt: jump 832 -13:52:49,463 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4456) - 2 RESUME(arg=0, lineno=4456) - 4 LOAD_GLOBAL(arg=1, lineno=4457) - 16 LOAD_ATTR(arg=1, lineno=4457) - 26 LOAD_FAST(arg=0, lineno=4457) - 28 LOAD_FAST(arg=1, lineno=4457) - 30 KW_NAMES(arg=1, lineno=4457) - 32 PRECALL(arg=2, lineno=4457) - 36 CALL(arg=2, lineno=4457) - 46 STORE_FAST(arg=2, lineno=4457) - 48 LOAD_FAST(arg=2, lineno=4458) - 50 LOAD_METHOD(arg=2, lineno=4458) - 72 PRECALL(arg=0, lineno=4458) - 76 CALL(arg=0, lineno=4458) - 86 POP_TOP(arg=None, lineno=4458) - 88 LOAD_FAST(arg=2, lineno=4459) - 90 RETURN_VALUE(arg=None, lineno=4459) -13:52:49,463 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,463 numba.core.byteflow DEBUG stack: [] -13:52:49,463 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,463 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4456) -13:52:49,464 numba.core.byteflow DEBUG stack [] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=4456) -13:52:49,464 numba.core.byteflow DEBUG stack [] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack [] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_ATTR(arg=1, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=0, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2'] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_FAST(arg=1, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3'] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=30, inst=KW_NAMES(arg=1, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=32, inst=PRECALL(arg=2, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=36, inst=CALL(arg=2, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=46, inst=STORE_FAST(arg=2, lineno=4457) -13:52:49,464 numba.core.byteflow DEBUG stack ['$36call.5'] -13:52:49,464 numba.core.byteflow DEBUG dispatch pc=48, inst=LOAD_FAST(arg=2, lineno=4458) -13:52:49,464 numba.core.byteflow DEBUG stack [] -13:52:49,465 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_METHOD(arg=2, lineno=4458) -13:52:49,465 numba.core.byteflow DEBUG stack ['$arr48.6'] -13:52:49,465 numba.core.byteflow DEBUG dispatch pc=72, inst=PRECALL(arg=0, lineno=4458) -13:52:49,465 numba.core.byteflow DEBUG stack ['$null$50.7', '$50load_method.8'] -13:52:49,465 numba.core.byteflow DEBUG dispatch pc=76, inst=CALL(arg=0, lineno=4458) -13:52:49,465 numba.core.byteflow DEBUG stack ['$null$50.7', '$50load_method.8'] -13:52:49,465 numba.core.byteflow DEBUG dispatch pc=86, inst=POP_TOP(arg=None, lineno=4458) -13:52:49,465 numba.core.byteflow DEBUG stack ['$76call.9'] -13:52:49,465 numba.core.byteflow DEBUG dispatch pc=88, inst=LOAD_FAST(arg=2, lineno=4459) -13:52:49,465 numba.core.byteflow DEBUG stack [] -13:52:49,465 numba.core.byteflow DEBUG dispatch pc=90, inst=RETURN_VALUE(arg=None, lineno=4459) -13:52:49,465 numba.core.byteflow DEBUG stack ['$arr88.10'] -13:52:49,465 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,465 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,465 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:49,465 numba.core.byteflow DEBUG defmap: {} -13:52:49,465 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:49,465 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:49,465 numba.core.byteflow DEBUG keep phismap: {} -13:52:49,465 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:49,465 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,466 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'item': '$4load_global.0', 'res': '$16load_attr.2'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'res': '$shape26.3'}), (28, {'res': '$dtype28.4'}), (32, {}), (34, {}), (36, {'func': '$16load_attr.2', 'args': ['$shape26.3', '$dtype28.4'], 'kw_names': 1, 'res': '$36call.5'}), (38, {}), (40, {}), (42, {}), (44, {}), (46, {'value': '$36call.5'}), (48, {'res': '$arr48.6'}), (50, {'item': '$arr48.6', 'res': '$50load_method.8'}), (52, {}), (54, {}), (56, {}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {'func': '$50load_method.8', 'args': [], 'kw_names': None, 'res': '$76call.9'}), (78, {}), (80, {}), (82, {}), (84, {}), (88, {'res': '$arr88.10'}), (90, {'retval': '$arr88.10', 'castval': '$90return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,466 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $4load_global.0 = global(np: ) ['$4load_global.0'] - $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) ['$16load_attr.2', '$4load_global.0'] - arr = call $16load_attr.2(shape, func=$16load_attr.2, args=[Var(shape, arrayobj.py:4456)], kws=[('dtype', Var(dtype, arrayobj.py:4456))], vararg=None, varkwarg=None, target=None) ['$16load_attr.2', 'arr', 'dtype', 'shape'] - $50load_method.8 = getattr(value=arr, attr=_zero_fill) ['$50load_method.8', 'arr'] - $76call.9 = call $50load_method.8(func=$50load_method.8, args=[], kws=(), vararg=None, varkwarg=None, target=None) ['$50load_method.8', '$76call.9'] - $90return_value.11 = cast(value=arr) ['$90return_value.11', 'arr'] - return $90return_value.11 ['$90return_value.11'] - -13:52:49,482 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,482 numba.core.ssa DEBUG Running -13:52:49,482 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:49,482 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:49,482 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:49,482 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) -13:52:49,482 numba.core.ssa DEBUG on stmt: arr = call $16load_attr.2(shape, func=$16load_attr.2, args=[Var(shape, arrayobj.py:4456)], kws=[('dtype', Var(dtype, arrayobj.py:4456))], vararg=None, varkwarg=None, target=None) -13:52:49,482 numba.core.ssa DEBUG on stmt: $50load_method.8 = getattr(value=arr, attr=_zero_fill) -13:52:49,482 numba.core.ssa DEBUG on stmt: $76call.9 = call $50load_method.8(func=$50load_method.8, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,482 numba.core.ssa DEBUG on stmt: $90return_value.11 = cast(value=arr) -13:52:49,482 numba.core.ssa DEBUG on stmt: return $90return_value.11 -13:52:49,483 numba.core.ssa DEBUG defs defaultdict(, - {'$16load_attr.2': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$50load_method.8': [(, - 0)], - '$76call.9': [(, - 0)], - '$90return_value.11': [(, - 0)], - 'arr': [(, 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:49,483 numba.core.ssa DEBUG SSA violators -13:52:49,486 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4388) - 2 COPY_FREE_VARS(arg=1, lineno=4388) - 4 RESUME(arg=0, lineno=4388) - 6 LOAD_GLOBAL(arg=1, lineno=4389) - 18 LOAD_FAST(arg=0, lineno=4389) - 20 LOAD_FAST(arg=1, lineno=4389) - 22 LOAD_DEREF(arg=2, lineno=4389) - 24 PRECALL(arg=3, lineno=4389) - 28 CALL(arg=3, lineno=4389) - 38 RETURN_VALUE(arg=None, lineno=4389) -13:52:49,486 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,486 numba.core.byteflow DEBUG stack: [] -13:52:49,486 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,486 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4388) -13:52:49,486 numba.core.byteflow DEBUG stack [] -13:52:49,486 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=4388) -13:52:49,486 numba.core.byteflow DEBUG stack [] -13:52:49,486 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=4388) -13:52:49,487 numba.core.byteflow DEBUG stack [] -13:52:49,487 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_GLOBAL(arg=1, lineno=4389) -13:52:49,487 numba.core.byteflow DEBUG stack [] -13:52:49,487 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_FAST(arg=0, lineno=4389) -13:52:49,487 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0'] -13:52:49,487 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=1, lineno=4389) -13:52:49,487 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2'] -13:52:49,487 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_DEREF(arg=2, lineno=4389) -13:52:49,487 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3'] -13:52:49,487 numba.core.byteflow DEBUG dispatch pc=24, inst=PRECALL(arg=3, lineno=4389) -13:52:49,487 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:49,487 numba.core.byteflow DEBUG dispatch pc=28, inst=CALL(arg=3, lineno=4389) -13:52:49,487 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:49,487 numba.core.byteflow DEBUG dispatch pc=38, inst=RETURN_VALUE(arg=None, lineno=4389) -13:52:49,487 numba.core.byteflow DEBUG stack ['$28call.5'] -13:52:49,487 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,487 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,487 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:49,487 numba.core.byteflow DEBUG defmap: {} -13:52:49,487 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:49,487 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:49,487 numba.core.byteflow DEBUG keep phismap: {} -13:52:49,487 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:49,487 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,487 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'idx': 0, 'res': '$6load_global.0'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$shape18.2'}), (20, {'res': '$dtype20.3'}), (22, {'res': '$22load_deref.4'}), (24, {}), (26, {}), (28, {'func': '$6load_global.0', 'args': ['$shape18.2', '$dtype20.3', '$22load_deref.4'], 'kw_names': None, 'res': '$28call.5'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'retval': '$28call.5', 'castval': '$38return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,488 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $6load_global.0 = global(numpy_empty_nd: ) ['$6load_global.0'] - $22load_deref.4 = freevar(retty: array(float32, 1d, C)) ['$22load_deref.4'] - $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_deref.4', '$28call.5', '$6load_global.0', 'dtype', 'shape'] - $38return_value.6 = cast(value=$28call.5) ['$28call.5', '$38return_value.6'] - return $38return_value.6 ['$38return_value.6'] - -13:52:49,490 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,490 numba.core.ssa DEBUG Running -13:52:49,490 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:49,490 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:49,490 numba.core.ssa DEBUG on stmt: $6load_global.0 = global(numpy_empty_nd: ) -13:52:49,490 numba.core.ssa DEBUG on stmt: $22load_deref.4 = freevar(retty: array(float32, 1d, C)) -13:52:49,490 numba.core.ssa DEBUG on stmt: $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,490 numba.core.ssa DEBUG on stmt: $38return_value.6 = cast(value=$28call.5) -13:52:49,490 numba.core.ssa DEBUG on stmt: return $38return_value.6 -13:52:49,491 numba.core.ssa DEBUG defs defaultdict(, - {'$22load_deref.4': [(, - 0)], - '$28call.5': [(, - 0)], - '$38return_value.6': [(, - 0)], - '$6load_global.0': [(, - 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:49,491 numba.core.ssa DEBUG SSA violators -13:52:49,521 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4447) - 2 RESUME(arg=0, lineno=4447) - 4 LOAD_GLOBAL(arg=1, lineno=4448) - 16 LOAD_FAST(arg=0, lineno=4448) - 18 PRECALL(arg=1, lineno=4448) - 22 CALL(arg=1, lineno=4448) - 32 POP_TOP(arg=None, lineno=4448) - 34 LOAD_CONST(arg=0, lineno=4448) - 36 RETURN_VALUE(arg=None, lineno=4448) -13:52:49,521 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,521 numba.core.byteflow DEBUG stack: [] -13:52:49,521 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,521 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4447) -13:52:49,521 numba.core.byteflow DEBUG stack [] -13:52:49,521 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=4447) -13:52:49,521 numba.core.byteflow DEBUG stack [] -13:52:49,521 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=4448) -13:52:49,521 numba.core.byteflow DEBUG stack [] -13:52:49,521 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=4448) -13:52:49,522 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:49,522 numba.core.byteflow DEBUG dispatch pc=18, inst=PRECALL(arg=1, lineno=4448) -13:52:49,522 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$self16.2'] -13:52:49,522 numba.core.byteflow DEBUG dispatch pc=22, inst=CALL(arg=1, lineno=4448) -13:52:49,522 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$self16.2'] -13:52:49,522 numba.core.byteflow DEBUG dispatch pc=32, inst=POP_TOP(arg=None, lineno=4448) -13:52:49,522 numba.core.byteflow DEBUG stack ['$22call.3'] -13:52:49,522 numba.core.byteflow DEBUG dispatch pc=34, inst=LOAD_CONST(arg=0, lineno=4448) -13:52:49,522 numba.core.byteflow DEBUG stack [] -13:52:49,522 numba.core.byteflow DEBUG dispatch pc=36, inst=RETURN_VALUE(arg=None, lineno=4448) -13:52:49,522 numba.core.byteflow DEBUG stack ['$const34.4'] -13:52:49,522 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,522 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,522 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:49,522 numba.core.byteflow DEBUG defmap: {} -13:52:49,522 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:49,522 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:49,522 numba.core.byteflow DEBUG keep phismap: {} -13:52:49,522 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:49,522 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,522 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$self16.2'}), (18, {}), (20, {}), (22, {'func': '$4load_global.0', 'args': ['$self16.2'], 'kw_names': None, 'res': '$22call.3'}), (24, {}), (26, {}), (28, {}), (30, {}), (34, {'res': '$const34.4'}), (36, {'retval': '$const34.4', 'castval': '$36return_value.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,523 numba.core.interpreter DEBUG label 0: - self = arg(0, name=self) ['self'] - $4load_global.0 = global(_zero_fill_array_method: ) ['$4load_global.0'] - $22call.3 = call $4load_global.0(self, func=$4load_global.0, args=[Var(self, arrayobj.py:4447)], kws=(), vararg=None, varkwarg=None, target=None) ['$22call.3', '$4load_global.0', 'self'] - $const34.4 = const(NoneType, None) ['$const34.4'] - $36return_value.5 = cast(value=$const34.4) ['$36return_value.5', '$const34.4'] - return $36return_value.5 ['$36return_value.5'] - -13:52:49,525 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,525 numba.core.ssa DEBUG Running -13:52:49,525 numba.core.ssa DEBUG on stmt: self = arg(0, name=self) -13:52:49,525 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(_zero_fill_array_method: ) -13:52:49,525 numba.core.ssa DEBUG on stmt: $22call.3 = call $4load_global.0(self, func=$4load_global.0, args=[Var(self, arrayobj.py:4447)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,525 numba.core.ssa DEBUG on stmt: $const34.4 = const(NoneType, None) -13:52:49,526 numba.core.ssa DEBUG on stmt: $36return_value.5 = cast(value=$const34.4) -13:52:49,526 numba.core.ssa DEBUG on stmt: return $36return_value.5 -13:52:49,526 numba.core.ssa DEBUG defs defaultdict(, - {'$22call.3': [(, - 0)], - '$36return_value.5': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$const34.4': [(, - 0)], - 'self': [(, - 0)]}) -13:52:49,526 numba.core.ssa DEBUG SSA violators -13:52:49,585 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=437) - 2 COPY_FREE_VARS(arg=1, lineno=437) - 4 RESUME(arg=0, lineno=437) - 6 LOAD_DEREF(arg=3, lineno=440) - 8 STORE_FAST(arg=1, lineno=440) - 10 LOAD_GLOBAL(arg=1, lineno=441) - 22 LOAD_ATTR(arg=1, lineno=441) - 32 LOAD_FAST(arg=0, lineno=441) - 34 PRECALL(arg=1, lineno=441) - 38 CALL(arg=1, lineno=441) - 48 GET_ITER(arg=None, lineno=441) -> 50 FOR_ITER(arg=25, lineno=441) - 52 STORE_FAST(arg=2, lineno=441) - 54 LOAD_FAST(arg=1, lineno=442) - 56 LOAD_FAST(arg=2, lineno=442) - 58 LOAD_METHOD(arg=2, lineno=442) - 80 PRECALL(arg=0, lineno=442) - 84 CALL(arg=0, lineno=442) - 94 BINARY_OP(arg=13, lineno=442) - 98 STORE_FAST(arg=1, lineno=442) - 100 JUMP_BACKWARD(arg=26, lineno=442) -> 102 LOAD_FAST(arg=1, lineno=443) - 104 LOAD_FAST(arg=0, lineno=443) - 106 LOAD_ATTR(arg=3, lineno=443) - 116 BINARY_OP(arg=11, lineno=443) - 120 RETURN_VALUE(arg=None, lineno=443) -13:52:49,585 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,585 numba.core.byteflow DEBUG stack: [] -13:52:49,585 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,585 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=437) -13:52:49,585 numba.core.byteflow DEBUG stack [] -13:52:49,585 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=437) -13:52:49,585 numba.core.byteflow DEBUG stack [] -13:52:49,585 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=437) -13:52:49,585 numba.core.byteflow DEBUG stack [] -13:52:49,585 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_DEREF(arg=3, lineno=440) -13:52:49,585 numba.core.byteflow DEBUG stack [] -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=8, inst=STORE_FAST(arg=1, lineno=440) -13:52:49,586 numba.core.byteflow DEBUG stack ['$6load_deref.0'] -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=10, inst=LOAD_GLOBAL(arg=1, lineno=441) -13:52:49,586 numba.core.byteflow DEBUG stack [] -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_ATTR(arg=1, lineno=441) -13:52:49,586 numba.core.byteflow DEBUG stack ['$null$10.2', '$10load_global.1'] -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_FAST(arg=0, lineno=441) -13:52:49,586 numba.core.byteflow DEBUG stack ['$null$10.2', '$22load_attr.3'] -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=34, inst=PRECALL(arg=1, lineno=441) -13:52:49,586 numba.core.byteflow DEBUG stack ['$null$10.2', '$22load_attr.3', '$a32.4'] -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=38, inst=CALL(arg=1, lineno=441) -13:52:49,586 numba.core.byteflow DEBUG stack ['$null$10.2', '$22load_attr.3', '$a32.4'] -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=48, inst=GET_ITER(arg=None, lineno=441) -13:52:49,586 numba.core.byteflow DEBUG stack ['$38call.5'] -13:52:49,586 numba.core.byteflow DEBUG end state. edges=[Edge(pc=50, stack=('$48get_iter.6',), blockstack=(), npush=0)] -13:52:49,586 numba.core.byteflow DEBUG pending: deque([State(pc_initial=50 nstack_initial=1)]) -13:52:49,586 numba.core.byteflow DEBUG stack: ['$phi50.0'] -13:52:49,586 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=50 nstack_initial=1) -13:52:49,586 numba.core.byteflow DEBUG dispatch pc=50, inst=FOR_ITER(arg=25, lineno=441) -13:52:49,586 numba.core.byteflow DEBUG stack ['$phi50.0'] -13:52:49,587 numba.core.byteflow DEBUG end state. edges=[Edge(pc=102, stack=(), blockstack=(), npush=0), Edge(pc=52, stack=('$phi50.0', '$50for_iter.2'), blockstack=(), npush=0)] -13:52:49,587 numba.core.byteflow DEBUG pending: deque([State(pc_initial=102 nstack_initial=0), State(pc_initial=52 nstack_initial=2)]) -13:52:49,587 numba.core.byteflow DEBUG stack: [] -13:52:49,587 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=102 nstack_initial=0) -13:52:49,587 numba.core.byteflow DEBUG dispatch pc=102, inst=LOAD_FAST(arg=1, lineno=443) -13:52:49,587 numba.core.byteflow DEBUG stack [] -13:52:49,587 numba.core.byteflow DEBUG dispatch pc=104, inst=LOAD_FAST(arg=0, lineno=443) -13:52:49,587 numba.core.byteflow DEBUG stack ['$c102.0'] -13:52:49,587 numba.core.byteflow DEBUG dispatch pc=106, inst=LOAD_ATTR(arg=3, lineno=443) -13:52:49,587 numba.core.byteflow DEBUG stack ['$c102.0', '$a104.1'] -13:52:49,587 numba.core.byteflow DEBUG dispatch pc=116, inst=BINARY_OP(arg=11, lineno=443) -13:52:49,587 numba.core.byteflow DEBUG stack ['$c102.0', '$106load_attr.2'] -13:52:49,587 numba.core.byteflow DEBUG dispatch pc=120, inst=RETURN_VALUE(arg=None, lineno=443) -13:52:49,587 numba.core.byteflow DEBUG stack ['$binop_truediv116.3'] -13:52:49,587 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,587 numba.core.byteflow DEBUG pending: deque([State(pc_initial=52 nstack_initial=2)]) -13:52:49,587 numba.core.byteflow DEBUG stack: ['$phi52.0', '$phi52.1'] -13:52:49,587 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=52 nstack_initial=2) -13:52:49,587 numba.core.byteflow DEBUG dispatch pc=52, inst=STORE_FAST(arg=2, lineno=441) -13:52:49,587 numba.core.byteflow DEBUG stack ['$phi52.0', '$phi52.1'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=54, inst=LOAD_FAST(arg=1, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_FAST(arg=2, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=58, inst=LOAD_METHOD(arg=2, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$v56.3'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=0, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$null$58.4', '$58load_method.5'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=0, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$null$58.4', '$58load_method.5'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=13, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$84call.6'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=98, inst=STORE_FAST(arg=1, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0', '$binop_iadd94.7'] -13:52:49,588 numba.core.byteflow DEBUG dispatch pc=100, inst=JUMP_BACKWARD(arg=26, lineno=442) -13:52:49,588 numba.core.byteflow DEBUG stack ['$phi52.0'] -13:52:49,588 numba.core.byteflow DEBUG end state. edges=[Edge(pc=50, stack=('$phi52.0',), blockstack=(), npush=0)] -13:52:49,588 numba.core.byteflow DEBUG pending: deque([State(pc_initial=50 nstack_initial=1)]) -13:52:49,588 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,588 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=50 nstack_initial=1): {'$phi50.0'}, - State(pc_initial=52 nstack_initial=2): {'$phi52.1'}, - State(pc_initial=102 nstack_initial=0): set()}) -13:52:49,589 numba.core.byteflow DEBUG defmap: {'$phi50.0': State(pc_initial=0 nstack_initial=0), - '$phi52.1': State(pc_initial=50 nstack_initial=1)} -13:52:49,589 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0)), - ('$phi52.0', State(pc_initial=52 nstack_initial=2))}, - '$phi52.0': {('$phi50.0', State(pc_initial=50 nstack_initial=1))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:49,589 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0)), - ('$phi50.0', State(pc_initial=50 nstack_initial=1))}, - '$phi52.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:49,589 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:49,589 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:49,589 numba.core.byteflow DEBUG keep phismap: {'$phi50.0': {('$48get_iter.6', State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', State(pc_initial=50 nstack_initial=1))}} -13:52:49,589 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi50.0': '$48get_iter.6'}, - State(pc_initial=50 nstack_initial=1): {'$phi52.1': '$50for_iter.2'}}) -13:52:49,589 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,589 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'res': '$6load_deref.0'}), (8, {'value': '$6load_deref.0'}), (10, {'idx': 0, 'res': '$10load_global.1'}), (12, {}), (14, {}), (16, {}), (18, {}), (20, {}), (22, {'item': '$10load_global.1', 'res': '$22load_attr.3'}), (24, {}), (26, {}), (28, {}), (30, {}), (32, {'res': '$a32.4'}), (34, {}), (36, {}), (38, {'func': '$22load_attr.3', 'args': ['$a32.4'], 'kw_names': None, 'res': '$38call.5'}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {'value': '$38call.5', 'res': '$48get_iter.6'})), outgoing_phis={'$phi50.0': '$48get_iter.6'}, blockstack=(), active_try_block=None, outgoing_edgepushed={50: ('$48get_iter.6',)}) -13:52:49,589 numba.core.byteflow DEBUG block_infos State(pc_initial=50 nstack_initial=1): -AdaptBlockInfo(insts=((50, {'iterator': '$phi50.0', 'pair': '$50for_iter.1', 'indval': '$50for_iter.2', 'pred': '$50for_iter.3'}),), outgoing_phis={'$phi52.1': '$50for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={102: (), 52: ('$phi50.0', '$50for_iter.2')}) -13:52:49,590 numba.core.byteflow DEBUG block_infos State(pc_initial=52 nstack_initial=2): -AdaptBlockInfo(insts=((52, {'value': '$phi52.1'}), (54, {'res': '$c54.2'}), (56, {'res': '$v56.3'}), (58, {'item': '$v56.3', 'res': '$58load_method.5'}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {}), (82, {}), (84, {'func': '$58load_method.5', 'args': [], 'kw_names': None, 'res': '$84call.6'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '+=', 'lhs': '$c54.2', 'rhs': '$84call.6', 'res': '$binop_iadd94.7'}), (96, {}), (98, {'value': '$binop_iadd94.7'}), (100, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={50: ('$phi52.0',)}) -13:52:49,590 numba.core.byteflow DEBUG block_infos State(pc_initial=102 nstack_initial=0): -AdaptBlockInfo(insts=((102, {'res': '$c102.0'}), (104, {'res': '$a104.1'}), (106, {'item': '$a104.1', 'res': '$106load_attr.2'}), (108, {}), (110, {}), (112, {}), (114, {}), (116, {'op': '/', 'lhs': '$c102.0', 'rhs': '$106load_attr.2', 'res': '$binop_truediv116.3'}), (118, {}), (120, {'retval': '$binop_truediv116.3', 'castval': '$120return_value.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,591 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - c = freevar(acc_init: 0.0) ['c'] - $10load_global.1 = global(np: ) ['$10load_global.1'] - $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) ['$10load_global.1', '$22load_attr.3'] - $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_attr.3', '$38call.5', 'a'] - $48get_iter.6 = getiter(value=$38call.5) ['$38call.5', '$48get_iter.6'] - $phi50.0 = $48get_iter.6 ['$48get_iter.6', '$phi50.0'] - jump 50 [] -label 50: - $50for_iter.1 = iternext(value=$phi50.0) ['$50for_iter.1', '$phi50.0'] - $50for_iter.2 = pair_first(value=$50for_iter.1) ['$50for_iter.1', '$50for_iter.2'] - $50for_iter.3 = pair_second(value=$50for_iter.1) ['$50for_iter.1', '$50for_iter.3'] - $phi52.1 = $50for_iter.2 ['$50for_iter.2', '$phi52.1'] - branch $50for_iter.3, 52, 102 ['$50for_iter.3'] -label 52: - v = $phi52.1 ['$phi52.1', 'v'] - $58load_method.5 = getattr(value=v, attr=item) ['$58load_method.5', 'v'] - $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) ['$58load_method.5', '$84call.6'] - $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) ['$84call.6', '$binop_iadd94.7', 'c'] - c = $binop_iadd94.7 ['$binop_iadd94.7', 'c'] - jump 50 [] -label 102: - $106load_attr.2 = getattr(value=a, attr=size) ['$106load_attr.2', 'a'] - $binop_truediv116.3 = c / $106load_attr.2 ['$106load_attr.2', '$binop_truediv116.3', 'c'] - $120return_value.4 = cast(value=$binop_truediv116.3) ['$120return_value.4', '$binop_truediv116.3'] - return $120return_value.4 ['$120return_value.4'] - -13:52:49,608 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,608 numba.core.ssa DEBUG Running -13:52:49,608 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:49,608 numba.core.ssa DEBUG on stmt: c = freevar(acc_init: 0.0) -13:52:49,608 numba.core.ssa DEBUG on stmt: $10load_global.1 = global(np: ) -13:52:49,608 numba.core.ssa DEBUG on stmt: $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) -13:52:49,608 numba.core.ssa DEBUG on stmt: $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,608 numba.core.ssa DEBUG on stmt: $48get_iter.6 = getiter(value=$38call.5) -13:52:49,608 numba.core.ssa DEBUG on stmt: $phi50.0 = $48get_iter.6 -13:52:49,608 numba.core.ssa DEBUG on stmt: jump 50 -13:52:49,608 numba.core.ssa DEBUG ==== SSA block analysis pass on 50 -13:52:49,608 numba.core.ssa DEBUG Running -13:52:49,608 numba.core.ssa DEBUG on stmt: $50for_iter.1 = iternext(value=$phi50.0) -13:52:49,608 numba.core.ssa DEBUG on stmt: $50for_iter.2 = pair_first(value=$50for_iter.1) -13:52:49,608 numba.core.ssa DEBUG on stmt: $50for_iter.3 = pair_second(value=$50for_iter.1) -13:52:49,608 numba.core.ssa DEBUG on stmt: $phi52.1 = $50for_iter.2 -13:52:49,608 numba.core.ssa DEBUG on stmt: branch $50for_iter.3, 52, 102 -13:52:49,609 numba.core.ssa DEBUG ==== SSA block analysis pass on 52 -13:52:49,609 numba.core.ssa DEBUG Running -13:52:49,609 numba.core.ssa DEBUG on stmt: v = $phi52.1 -13:52:49,609 numba.core.ssa DEBUG on stmt: $58load_method.5 = getattr(value=v, attr=item) -13:52:49,609 numba.core.ssa DEBUG on stmt: $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,609 numba.core.ssa DEBUG on stmt: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,609 numba.core.ssa DEBUG on stmt: c = $binop_iadd94.7 -13:52:49,609 numba.core.ssa DEBUG on stmt: jump 50 -13:52:49,609 numba.core.ssa DEBUG ==== SSA block analysis pass on 102 -13:52:49,609 numba.core.ssa DEBUG Running -13:52:49,609 numba.core.ssa DEBUG on stmt: $106load_attr.2 = getattr(value=a, attr=size) -13:52:49,609 numba.core.ssa DEBUG on stmt: $binop_truediv116.3 = c / $106load_attr.2 -13:52:49,609 numba.core.ssa DEBUG on stmt: $120return_value.4 = cast(value=$binop_truediv116.3) -13:52:49,609 numba.core.ssa DEBUG on stmt: return $120return_value.4 -13:52:49,609 numba.core.ssa DEBUG defs defaultdict(, - {'$106load_attr.2': [(, - 102)], - '$10load_global.1': [(, - 0)], - '$120return_value.4': [(, - 102)], - '$22load_attr.3': [(, - 0)], - '$38call.5': [(, - 0)], - '$48get_iter.6': [(, - 0)], - '$50for_iter.1': [(, - 50)], - '$50for_iter.2': [(, - 50)], - '$50for_iter.3': [(, - 50)], - '$58load_method.5': [(, - 52)], - '$84call.6': [(, - 52)], - '$binop_iadd94.7': [(, - 52)], - '$binop_truediv116.3': [(, - 102)], - '$phi50.0': [(, - 0)], - '$phi52.1': [(, - 50)], - 'a': [(, 0)], - 'c': [(, 0), - (, 52)], - 'v': [(, 52)]}) -13:52:49,610 numba.core.ssa DEBUG SSA violators -13:52:49,610 numba.core.ssa DEBUG Fix SSA violator on var c -13:52:49,610 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,610 numba.core.ssa DEBUG Running -13:52:49,610 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:49,610 numba.core.ssa DEBUG on stmt: c = freevar(acc_init: 0.0) -13:52:49,610 numba.core.ssa DEBUG first assign: c -13:52:49,610 numba.core.ssa DEBUG replaced with: c = freevar(acc_init: 0.0) -13:52:49,610 numba.core.ssa DEBUG on stmt: $10load_global.1 = global(np: ) -13:52:49,610 numba.core.ssa DEBUG on stmt: $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) -13:52:49,610 numba.core.ssa DEBUG on stmt: $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,610 numba.core.ssa DEBUG on stmt: $48get_iter.6 = getiter(value=$38call.5) -13:52:49,610 numba.core.ssa DEBUG on stmt: $phi50.0 = $48get_iter.6 -13:52:49,610 numba.core.ssa DEBUG on stmt: jump 50 -13:52:49,610 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:49,610 numba.core.ssa DEBUG Running -13:52:49,610 numba.core.ssa DEBUG on stmt: $50for_iter.1 = iternext(value=$phi50.0) -13:52:49,610 numba.core.ssa DEBUG on stmt: $50for_iter.2 = pair_first(value=$50for_iter.1) -13:52:49,610 numba.core.ssa DEBUG on stmt: $50for_iter.3 = pair_second(value=$50for_iter.1) -13:52:49,610 numba.core.ssa DEBUG on stmt: $phi52.1 = $50for_iter.2 -13:52:49,610 numba.core.ssa DEBUG on stmt: branch $50for_iter.3, 52, 102 -13:52:49,610 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:49,611 numba.core.ssa DEBUG Running -13:52:49,611 numba.core.ssa DEBUG on stmt: v = $phi52.1 -13:52:49,611 numba.core.ssa DEBUG on stmt: $58load_method.5 = getattr(value=v, attr=item) -13:52:49,611 numba.core.ssa DEBUG on stmt: $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,611 numba.core.ssa DEBUG on stmt: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,611 numba.core.ssa DEBUG on stmt: c = $binop_iadd94.7 -13:52:49,611 numba.core.ssa DEBUG replaced with: c.1 = $binop_iadd94.7 -13:52:49,611 numba.core.ssa DEBUG on stmt: jump 50 -13:52:49,611 numba.core.ssa DEBUG ==== SSA block rewrite pass on 102 -13:52:49,611 numba.core.ssa DEBUG Running -13:52:49,611 numba.core.ssa DEBUG on stmt: $106load_attr.2 = getattr(value=a, attr=size) -13:52:49,611 numba.core.ssa DEBUG on stmt: $binop_truediv116.3 = c / $106load_attr.2 -13:52:49,611 numba.core.ssa DEBUG on stmt: $120return_value.4 = cast(value=$binop_truediv116.3) -13:52:49,611 numba.core.ssa DEBUG on stmt: return $120return_value.4 -13:52:49,611 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 52: []}) -13:52:49,611 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,611 numba.core.ssa DEBUG Running -13:52:49,611 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:49,611 numba.core.ssa DEBUG on stmt: c = freevar(acc_init: 0.0) -13:52:49,611 numba.core.ssa DEBUG on stmt: $10load_global.1 = global(np: ) -13:52:49,611 numba.core.ssa DEBUG on stmt: $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) -13:52:49,611 numba.core.ssa DEBUG on stmt: $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,611 numba.core.ssa DEBUG on stmt: $48get_iter.6 = getiter(value=$38call.5) -13:52:49,612 numba.core.ssa DEBUG on stmt: $phi50.0 = $48get_iter.6 -13:52:49,612 numba.core.ssa DEBUG on stmt: jump 50 -13:52:49,612 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:49,612 numba.core.ssa DEBUG Running -13:52:49,612 numba.core.ssa DEBUG on stmt: $50for_iter.1 = iternext(value=$phi50.0) -13:52:49,612 numba.core.ssa DEBUG on stmt: $50for_iter.2 = pair_first(value=$50for_iter.1) -13:52:49,612 numba.core.ssa DEBUG on stmt: $50for_iter.3 = pair_second(value=$50for_iter.1) -13:52:49,612 numba.core.ssa DEBUG on stmt: $phi52.1 = $50for_iter.2 -13:52:49,612 numba.core.ssa DEBUG on stmt: branch $50for_iter.3, 52, 102 -13:52:49,612 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:49,612 numba.core.ssa DEBUG Running -13:52:49,612 numba.core.ssa DEBUG on stmt: v = $phi52.1 -13:52:49,612 numba.core.ssa DEBUG on stmt: $58load_method.5 = getattr(value=v, attr=item) -13:52:49,612 numba.core.ssa DEBUG on stmt: $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,612 numba.core.ssa DEBUG on stmt: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,612 numba.core.ssa DEBUG find_def var='c' stmt=$binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,612 numba.core.ssa DEBUG find_def_from_top label 52 -13:52:49,612 numba.core.ssa DEBUG idom 50 from label 52 -13:52:49,612 numba.core.ssa DEBUG find_def_from_bottom label 50 -13:52:49,612 numba.core.ssa DEBUG find_def_from_top label 50 -13:52:49,612 numba.core.ssa DEBUG insert phi node c.2 = phi(incoming_values=[], incoming_blocks=[]) at 50 -13:52:49,612 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:49,612 numba.core.ssa DEBUG incoming_def c = freevar(acc_init: 0.0) -13:52:49,612 numba.core.ssa DEBUG find_def_from_bottom label 52 -13:52:49,612 numba.core.ssa DEBUG incoming_def c.1 = $binop_iadd94.7 -13:52:49,613 numba.core.ssa DEBUG replaced with: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c.2, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,613 numba.core.ssa DEBUG on stmt: c.1 = $binop_iadd94.7 -13:52:49,613 numba.core.ssa DEBUG on stmt: jump 50 -13:52:49,613 numba.core.ssa DEBUG ==== SSA block rewrite pass on 102 -13:52:49,613 numba.core.ssa DEBUG Running -13:52:49,613 numba.core.ssa DEBUG on stmt: $106load_attr.2 = getattr(value=a, attr=size) -13:52:49,613 numba.core.ssa DEBUG on stmt: $binop_truediv116.3 = c / $106load_attr.2 -13:52:49,613 numba.core.ssa DEBUG find_def var='c' stmt=$binop_truediv116.3 = c / $106load_attr.2 -13:52:49,613 numba.core.ssa DEBUG find_def_from_top label 102 -13:52:49,613 numba.core.ssa DEBUG idom 50 from label 102 -13:52:49,613 numba.core.ssa DEBUG find_def_from_bottom label 50 -13:52:49,613 numba.core.ssa DEBUG replaced with: $binop_truediv116.3 = c.2 / $106load_attr.2 -13:52:49,613 numba.core.ssa DEBUG on stmt: $120return_value.4 = cast(value=$binop_truediv116.3) -13:52:49,613 numba.core.ssa DEBUG on stmt: return $120return_value.4 -13:52:49,634 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=3535) - 2 RESUME(arg=0, lineno=3535) - 4 LOAD_GLOBAL(arg=1, lineno=3536) - 16 LOAD_FAST(arg=0, lineno=3536) - 18 PRECALL(arg=1, lineno=3536) - 22 CALL(arg=1, lineno=3536) - 32 STORE_FAST(arg=2, lineno=3536) - 34 LOAD_GLOBAL(arg=3, lineno=3537) - 46 LOAD_FAST(arg=2, lineno=3537) - 48 PRECALL(arg=1, lineno=3537) - 52 CALL(arg=1, lineno=3537) - 62 GET_ITER(arg=None, lineno=3537) -> 64 FOR_ITER(arg=54, lineno=3537) - 66 STORE_FAST(arg=3, lineno=3537) - 68 LOAD_FAST(arg=0, lineno=3538) - 70 LOAD_FAST(arg=3, lineno=3538) - 72 BINARY_SUBSCR(arg=None, lineno=3538) - 82 LOAD_FAST(arg=1, lineno=3538) - 84 LOAD_GLOBAL(arg=1, lineno=3538) - 96 LOAD_FAST(arg=1, lineno=3538) - 98 PRECALL(arg=1, lineno=3538) - 102 CALL(arg=1, lineno=3538) - 112 LOAD_FAST(arg=2, lineno=3538) - 114 BINARY_OP(arg=10, lineno=3538) - 118 LOAD_FAST(arg=3, lineno=3538) - 120 BINARY_OP(arg=0, lineno=3538) - 124 BINARY_SUBSCR(arg=None, lineno=3538) - 134 COMPARE_OP(arg=3, lineno=3538) - 140 POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=3538) - 142 LOAD_GLOBAL(arg=5, lineno=3539) - 154 LOAD_CONST(arg=1, lineno=3539) - 156 PRECALL(arg=1, lineno=3539) - 160 CALL(arg=1, lineno=3539) - 170 RAISE_VARARGS(arg=1, lineno=3539) -> 172 JUMP_BACKWARD(arg=55, lineno=3538) -> 174 LOAD_CONST(arg=0, lineno=3537) - 176 RETURN_VALUE(arg=None, lineno=3537) -13:52:49,634 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,634 numba.core.byteflow DEBUG stack: [] -13:52:49,634 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=3535) -13:52:49,634 numba.core.byteflow DEBUG stack [] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=3535) -13:52:49,634 numba.core.byteflow DEBUG stack [] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=3536) -13:52:49,634 numba.core.byteflow DEBUG stack [] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=3536) -13:52:49,634 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=18, inst=PRECALL(arg=1, lineno=3536) -13:52:49,634 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$shape16.2'] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=22, inst=CALL(arg=1, lineno=3536) -13:52:49,634 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$shape16.2'] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=32, inst=STORE_FAST(arg=2, lineno=3536) -13:52:49,634 numba.core.byteflow DEBUG stack ['$22call.3'] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=34, inst=LOAD_GLOBAL(arg=3, lineno=3537) -13:52:49,634 numba.core.byteflow DEBUG stack [] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=46, inst=LOAD_FAST(arg=2, lineno=3537) -13:52:49,634 numba.core.byteflow DEBUG stack ['$null$34.5', '$34load_global.4'] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=48, inst=PRECALL(arg=1, lineno=3537) -13:52:49,634 numba.core.byteflow DEBUG stack ['$null$34.5', '$34load_global.4', '$n46.6'] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=52, inst=CALL(arg=1, lineno=3537) -13:52:49,634 numba.core.byteflow DEBUG stack ['$null$34.5', '$34load_global.4', '$n46.6'] -13:52:49,634 numba.core.byteflow DEBUG dispatch pc=62, inst=GET_ITER(arg=None, lineno=3537) -13:52:49,634 numba.core.byteflow DEBUG stack ['$52call.7'] -13:52:49,635 numba.core.byteflow DEBUG end state. edges=[Edge(pc=64, stack=('$62get_iter.8',), blockstack=(), npush=0)] -13:52:49,635 numba.core.byteflow DEBUG pending: deque([State(pc_initial=64 nstack_initial=1)]) -13:52:49,635 numba.core.byteflow DEBUG stack: ['$phi64.0'] -13:52:49,635 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=64 nstack_initial=1) -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=64, inst=FOR_ITER(arg=54, lineno=3537) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi64.0'] -13:52:49,635 numba.core.byteflow DEBUG end state. edges=[Edge(pc=174, stack=(), blockstack=(), npush=0), Edge(pc=66, stack=('$phi64.0', '$64for_iter.2'), blockstack=(), npush=0)] -13:52:49,635 numba.core.byteflow DEBUG pending: deque([State(pc_initial=174 nstack_initial=0), State(pc_initial=66 nstack_initial=2)]) -13:52:49,635 numba.core.byteflow DEBUG stack: [] -13:52:49,635 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=174 nstack_initial=0) -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=174, inst=LOAD_CONST(arg=0, lineno=3537) -13:52:49,635 numba.core.byteflow DEBUG stack [] -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=176, inst=RETURN_VALUE(arg=None, lineno=3537) -13:52:49,635 numba.core.byteflow DEBUG stack ['$const174.0'] -13:52:49,635 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,635 numba.core.byteflow DEBUG pending: deque([State(pc_initial=66 nstack_initial=2)]) -13:52:49,635 numba.core.byteflow DEBUG stack: ['$phi66.0', '$phi66.1'] -13:52:49,635 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=66 nstack_initial=2) -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=66, inst=STORE_FAST(arg=3, lineno=3537) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi66.0', '$phi66.1'] -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=68, inst=LOAD_FAST(arg=0, lineno=3538) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi66.0'] -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=70, inst=LOAD_FAST(arg=3, lineno=3538) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi66.0', '$shape68.2'] -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=72, inst=BINARY_SUBSCR(arg=None, lineno=3538) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi66.0', '$shape68.2', '$i70.3'] -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=82, inst=LOAD_FAST(arg=1, lineno=3538) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4'] -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=84, inst=LOAD_GLOBAL(arg=1, lineno=3538) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5'] -13:52:49,635 numba.core.byteflow DEBUG dispatch pc=96, inst=LOAD_FAST(arg=1, lineno=3538) -13:52:49,635 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$null$84.7', '$84load_global.6'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=98, inst=PRECALL(arg=1, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$null$84.7', '$84load_global.6', '$main_shape96.8'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=102, inst=CALL(arg=1, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$null$84.7', '$84load_global.6', '$main_shape96.8'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=112, inst=LOAD_FAST(arg=2, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$102call.9'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=114, inst=BINARY_OP(arg=10, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$102call.9', '$n112.10'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_FAST(arg=3, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$binop_sub114.11'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=120, inst=BINARY_OP(arg=0, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$binop_sub114.11', '$i118.12'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=124, inst=BINARY_SUBSCR(arg=None, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$main_shape82.5', '$binop_add120.13'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=134, inst=COMPARE_OP(arg=3, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$72binary_subscr.4', '$124binary_subscr.14'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=140, inst=POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=3538) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi66.0', '$134compare_op.15'] -13:52:49,636 numba.core.byteflow DEBUG end state. edges=[Edge(pc=142, stack=('$phi66.0',), blockstack=(), npush=0), Edge(pc=172, stack=('$phi66.0',), blockstack=(), npush=0)] -13:52:49,636 numba.core.byteflow DEBUG pending: deque([State(pc_initial=142 nstack_initial=1), State(pc_initial=172 nstack_initial=1)]) -13:52:49,636 numba.core.byteflow DEBUG stack: ['$phi142.0'] -13:52:49,636 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=142 nstack_initial=1) -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=142, inst=LOAD_GLOBAL(arg=5, lineno=3539) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi142.0'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=154, inst=LOAD_CONST(arg=1, lineno=3539) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.2', '$142load_global.1'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=156, inst=PRECALL(arg=1, lineno=3539) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.2', '$142load_global.1', '$const154.3'] -13:52:49,636 numba.core.byteflow DEBUG dispatch pc=160, inst=CALL(arg=1, lineno=3539) -13:52:49,636 numba.core.byteflow DEBUG stack ['$phi142.0', '$null$142.2', '$142load_global.1', '$const154.3'] -13:52:49,637 numba.core.byteflow DEBUG dispatch pc=170, inst=RAISE_VARARGS(arg=1, lineno=3539) -13:52:49,637 numba.core.byteflow DEBUG stack ['$phi142.0', '$160call.4'] -13:52:49,637 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,637 numba.core.byteflow DEBUG pending: deque([State(pc_initial=172 nstack_initial=1)]) -13:52:49,637 numba.core.byteflow DEBUG stack: ['$phi172.0'] -13:52:49,637 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=172 nstack_initial=1) -13:52:49,637 numba.core.byteflow DEBUG dispatch pc=172, inst=JUMP_BACKWARD(arg=55, lineno=3538) -13:52:49,637 numba.core.byteflow DEBUG stack ['$phi172.0'] -13:52:49,637 numba.core.byteflow DEBUG end state. edges=[Edge(pc=64, stack=('$phi172.0',), blockstack=(), npush=0)] -13:52:49,637 numba.core.byteflow DEBUG pending: deque([State(pc_initial=64 nstack_initial=1)]) -13:52:49,637 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,637 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=64 nstack_initial=1): {'$phi64.0'}, - State(pc_initial=66 nstack_initial=2): {'$phi66.1'}, - State(pc_initial=142 nstack_initial=1): set(), - State(pc_initial=172 nstack_initial=1): set(), - State(pc_initial=174 nstack_initial=0): set()}) -13:52:49,637 numba.core.byteflow DEBUG defmap: {'$phi64.0': State(pc_initial=0 nstack_initial=0), - '$phi66.1': State(pc_initial=64 nstack_initial=1)} -13:52:49,637 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi142.0': {('$phi66.0', State(pc_initial=66 nstack_initial=2))}, - '$phi172.0': {('$phi66.0', State(pc_initial=66 nstack_initial=2))}, - '$phi64.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi172.0', - State(pc_initial=172 nstack_initial=1))}, - '$phi66.0': {('$phi64.0', State(pc_initial=64 nstack_initial=1))}, - '$phi66.1': {('$64for_iter.2', - State(pc_initial=64 nstack_initial=1))}}) -13:52:49,637 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi142.0': {('$phi64.0', State(pc_initial=64 nstack_initial=1))}, - '$phi172.0': {('$phi64.0', State(pc_initial=64 nstack_initial=1))}, - '$phi64.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi64.0', State(pc_initial=64 nstack_initial=1))}, - '$phi66.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi66.1': {('$64for_iter.2', - State(pc_initial=64 nstack_initial=1))}}) -13:52:49,637 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi142.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi172.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi64.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi66.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi66.1': {('$64for_iter.2', - State(pc_initial=64 nstack_initial=1))}}) -13:52:49,637 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi142.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi172.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi64.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi66.0': {('$62get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi66.1': {('$64for_iter.2', - State(pc_initial=64 nstack_initial=1))}}) -13:52:49,638 numba.core.byteflow DEBUG keep phismap: {'$phi64.0': {('$62get_iter.8', State(pc_initial=0 nstack_initial=0))}, - '$phi66.1': {('$64for_iter.2', State(pc_initial=64 nstack_initial=1))}} -13:52:49,638 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi64.0': '$62get_iter.8'}, - State(pc_initial=64 nstack_initial=1): {'$phi66.1': '$64for_iter.2'}}) -13:52:49,638 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,638 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$shape16.2'}), (18, {}), (20, {}), (22, {'func': '$4load_global.0', 'args': ['$shape16.2'], 'kw_names': None, 'res': '$22call.3'}), (24, {}), (26, {}), (28, {}), (30, {}), (32, {'value': '$22call.3'}), (34, {'idx': 1, 'res': '$34load_global.4'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {}), (46, {'res': '$n46.6'}), (48, {}), (50, {}), (52, {'func': '$34load_global.4', 'args': ['$n46.6'], 'kw_names': None, 'res': '$52call.7'}), (54, {}), (56, {}), (58, {}), (60, {}), (62, {'value': '$52call.7', 'res': '$62get_iter.8'})), outgoing_phis={'$phi64.0': '$62get_iter.8'}, blockstack=(), active_try_block=None, outgoing_edgepushed={64: ('$62get_iter.8',)}) -13:52:49,638 numba.core.byteflow DEBUG block_infos State(pc_initial=64 nstack_initial=1): -AdaptBlockInfo(insts=((64, {'iterator': '$phi64.0', 'pair': '$64for_iter.1', 'indval': '$64for_iter.2', 'pred': '$64for_iter.3'}),), outgoing_phis={'$phi66.1': '$64for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={174: (), 66: ('$phi64.0', '$64for_iter.2')}) -13:52:49,638 numba.core.byteflow DEBUG block_infos State(pc_initial=66 nstack_initial=2): -AdaptBlockInfo(insts=((66, {'value': '$phi66.1'}), (68, {'res': '$shape68.2'}), (70, {'res': '$i70.3'}), (72, {'index': '$i70.3', 'target': '$shape68.2', 'res': '$72binary_subscr.4'}), (74, {}), (76, {}), (78, {}), (80, {}), (82, {'res': '$main_shape82.5'}), (84, {'idx': 0, 'res': '$84load_global.6'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {}), (96, {'res': '$main_shape96.8'}), (98, {}), (100, {}), (102, {'func': '$84load_global.6', 'args': ['$main_shape96.8'], 'kw_names': None, 'res': '$102call.9'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {'res': '$n112.10'}), (114, {'op': '-', 'lhs': '$102call.9', 'rhs': '$n112.10', 'res': '$binop_sub114.11'}), (116, {}), (118, {'res': '$i118.12'}), (120, {'op': '+', 'lhs': '$binop_sub114.11', 'rhs': '$i118.12', 'res': '$binop_add120.13'}), (122, {}), (124, {'index': '$binop_add120.13', 'target': '$main_shape82.5', 'res': '$124binary_subscr.14'}), (126, {}), (128, {}), (130, {}), (132, {}), (134, {'lhs': '$72binary_subscr.4', 'rhs': '$124binary_subscr.14', 'res': '$134compare_op.15'}), (136, {}), (138, {}), (140, {'pred': '$134compare_op.15'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={142: ('$phi66.0',), 172: ('$phi66.0',)}) -13:52:49,638 numba.core.byteflow DEBUG block_infos State(pc_initial=142 nstack_initial=1): -AdaptBlockInfo(insts=((142, {'idx': 2, 'res': '$142load_global.1'}), (144, {}), (146, {}), (148, {}), (150, {}), (152, {}), (154, {'res': '$const154.3'}), (156, {}), (158, {}), (160, {'func': '$142load_global.1', 'args': ['$const154.3'], 'kw_names': None, 'res': '$160call.4'}), (162, {}), (164, {}), (166, {}), (168, {}), (170, {'exc': '$160call.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,638 numba.core.byteflow DEBUG block_infos State(pc_initial=172 nstack_initial=1): -AdaptBlockInfo(insts=((172, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={64: ('$phi172.0',)}) -13:52:49,638 numba.core.byteflow DEBUG block_infos State(pc_initial=174 nstack_initial=0): -AdaptBlockInfo(insts=((174, {'res': '$const174.0'}), (176, {'retval': '$const174.0', 'castval': '$176return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,639 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - main_shape = arg(1, name=main_shape) ['main_shape'] - $4load_global.0 = global(len: ) ['$4load_global.0'] - n = call $4load_global.0(shape, func=$4load_global.0, args=[Var(shape, arrayobj.py:3535)], kws=(), vararg=None, varkwarg=None, target=None) ['$4load_global.0', 'n', 'shape'] - $34load_global.4 = global(range: ) ['$34load_global.4'] - $52call.7 = call $34load_global.4(n, func=$34load_global.4, args=[Var(n, arrayobj.py:3536)], kws=(), vararg=None, varkwarg=None, target=None) ['$34load_global.4', '$52call.7', 'n'] - $62get_iter.8 = getiter(value=$52call.7) ['$52call.7', '$62get_iter.8'] - $phi64.0 = $62get_iter.8 ['$62get_iter.8', '$phi64.0'] - jump 64 [] -label 64: - $64for_iter.1 = iternext(value=$phi64.0) ['$64for_iter.1', '$phi64.0'] - $64for_iter.2 = pair_first(value=$64for_iter.1) ['$64for_iter.1', '$64for_iter.2'] - $64for_iter.3 = pair_second(value=$64for_iter.1) ['$64for_iter.1', '$64for_iter.3'] - $phi66.1 = $64for_iter.2 ['$64for_iter.2', '$phi66.1'] - branch $64for_iter.3, 66, 174 ['$64for_iter.3'] -label 66: - i = $phi66.1 ['$phi66.1', 'i'] - $72binary_subscr.4 = getitem(value=shape, index=i, fn=) ['$72binary_subscr.4', 'i', 'shape'] - $84load_global.6 = global(len: ) ['$84load_global.6'] - $102call.9 = call $84load_global.6(main_shape, func=$84load_global.6, args=[Var(main_shape, arrayobj.py:3535)], kws=(), vararg=None, varkwarg=None, target=None) ['$102call.9', '$84load_global.6', 'main_shape'] - $binop_sub114.11 = $102call.9 - n ['$102call.9', '$binop_sub114.11', 'n'] - $binop_add120.13 = $binop_sub114.11 + i ['$binop_add120.13', '$binop_sub114.11', 'i'] - $124binary_subscr.14 = getitem(value=main_shape, index=$binop_add120.13, fn=) ['$124binary_subscr.14', '$binop_add120.13', 'main_shape'] - $134compare_op.15 = $72binary_subscr.4 != $124binary_subscr.14 ['$124binary_subscr.14', '$134compare_op.15', '$72binary_subscr.4'] - bool140 = global(bool: ) ['bool140'] - $140pred = call bool140($134compare_op.15, func=bool140, args=(Var($134compare_op.15, arrayobj.py:3538),), kws=(), vararg=None, varkwarg=None, target=None) ['$134compare_op.15', '$140pred', 'bool140'] - branch $140pred, 142, 172 ['$140pred'] -label 142: - $142load_global.1 = global(ValueError: ) ['$142load_global.1'] - $const154.3 = const(str, nditer(): operands could not be broadcast together) ['$const154.3'] - $160call.4 = call $142load_global.1($const154.3, func=$142load_global.1, args=[Var($const154.3, arrayobj.py:3539)], kws=(), vararg=None, varkwarg=None, target=None) ['$142load_global.1', '$160call.4', '$const154.3'] - raise $160call.4 ['$160call.4'] -label 172: - jump 64 [] -label 174: - $const174.0 = const(NoneType, None) ['$const174.0'] - $176return_value.1 = cast(value=$const174.0) ['$176return_value.1', '$const174.0'] - return $176return_value.1 ['$176return_value.1'] - -13:52:49,647 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,647 numba.core.ssa DEBUG Running -13:52:49,647 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:49,647 numba.core.ssa DEBUG on stmt: main_shape = arg(1, name=main_shape) -13:52:49,647 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(len: ) -13:52:49,647 numba.core.ssa DEBUG on stmt: n = const(int, 2) -13:52:49,647 numba.core.ssa DEBUG on stmt: $34load_global.4 = global(range: ) -13:52:49,647 numba.core.ssa DEBUG on stmt: $52call.7 = call $34load_global.4(n, func=$34load_global.4, args=[Var(n, arrayobj.py:3536)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,647 numba.core.ssa DEBUG on stmt: $62get_iter.8 = getiter(value=$52call.7) -13:52:49,647 numba.core.ssa DEBUG on stmt: $phi64.0 = $62get_iter.8 -13:52:49,647 numba.core.ssa DEBUG on stmt: jump 64 -13:52:49,647 numba.core.ssa DEBUG ==== SSA block analysis pass on 64 -13:52:49,647 numba.core.ssa DEBUG Running -13:52:49,647 numba.core.ssa DEBUG on stmt: $64for_iter.1 = iternext(value=$phi64.0) -13:52:49,647 numba.core.ssa DEBUG on stmt: $64for_iter.2 = pair_first(value=$64for_iter.1) -13:52:49,647 numba.core.ssa DEBUG on stmt: $64for_iter.3 = pair_second(value=$64for_iter.1) -13:52:49,647 numba.core.ssa DEBUG on stmt: $phi66.1 = $64for_iter.2 -13:52:49,647 numba.core.ssa DEBUG on stmt: branch $64for_iter.3, 66, 174 -13:52:49,647 numba.core.ssa DEBUG ==== SSA block analysis pass on 66 -13:52:49,647 numba.core.ssa DEBUG Running -13:52:49,647 numba.core.ssa DEBUG on stmt: i = $phi66.1 -13:52:49,647 numba.core.ssa DEBUG on stmt: $72binary_subscr.4 = getitem(value=shape, index=i, fn=) -13:52:49,647 numba.core.ssa DEBUG on stmt: $84load_global.6 = global(len: ) -13:52:49,647 numba.core.ssa DEBUG on stmt: $102call.9 = const(int, 2) -13:52:49,647 numba.core.ssa DEBUG on stmt: $binop_sub114.11 = $102call.9 - n -13:52:49,647 numba.core.ssa DEBUG on stmt: $binop_add120.13 = $binop_sub114.11 + i -13:52:49,647 numba.core.ssa DEBUG on stmt: $124binary_subscr.14 = getitem(value=main_shape, index=$binop_add120.13, fn=) -13:52:49,647 numba.core.ssa DEBUG on stmt: $134compare_op.15 = $72binary_subscr.4 != $124binary_subscr.14 -13:52:49,648 numba.core.ssa DEBUG on stmt: bool140 = global(bool: ) -13:52:49,648 numba.core.ssa DEBUG on stmt: $140pred = call bool140($134compare_op.15, func=bool140, args=(Var($134compare_op.15, arrayobj.py:3538),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,648 numba.core.ssa DEBUG on stmt: branch $140pred, 142, 172 -13:52:49,648 numba.core.ssa DEBUG ==== SSA block analysis pass on 142 -13:52:49,648 numba.core.ssa DEBUG Running -13:52:49,648 numba.core.ssa DEBUG on stmt: $142load_global.1 = global(ValueError: ) -13:52:49,648 numba.core.ssa DEBUG on stmt: $const154.3 = const(str, nditer(): operands could not be broadcast together) -13:52:49,648 numba.core.ssa DEBUG on stmt: $160call.4 = call $142load_global.1($const154.3, func=$142load_global.1, args=[Var($const154.3, arrayobj.py:3539)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,648 numba.core.ssa DEBUG on stmt: raise ('nditer(): operands could not be broadcast together') -13:52:49,648 numba.core.ssa DEBUG ==== SSA block analysis pass on 172 -13:52:49,648 numba.core.ssa DEBUG Running -13:52:49,648 numba.core.ssa DEBUG on stmt: jump 64 -13:52:49,648 numba.core.ssa DEBUG ==== SSA block analysis pass on 174 -13:52:49,648 numba.core.ssa DEBUG Running -13:52:49,648 numba.core.ssa DEBUG on stmt: $const174.0 = const(NoneType, None) -13:52:49,648 numba.core.ssa DEBUG on stmt: $176return_value.1 = cast(value=$const174.0) -13:52:49,648 numba.core.ssa DEBUG on stmt: return $176return_value.1 -13:52:49,649 numba.core.ssa DEBUG defs defaultdict(, - {'$102call.9': [(, - 66)], - '$124binary_subscr.14': [(, - 66)], - '$134compare_op.15': [(, - 66)], - '$140pred': [(, - 66)], - '$142load_global.1': [(, - 142)], - '$160call.4': [(, - 142)], - '$176return_value.1': [(, - 174)], - '$34load_global.4': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$52call.7': [(, - 0)], - '$62get_iter.8': [(, - 0)], - '$64for_iter.1': [(, - 64)], - '$64for_iter.2': [(, - 64)], - '$64for_iter.3': [(, - 64)], - '$72binary_subscr.4': [(, - 66)], - '$84load_global.6': [(, - 66)], - '$binop_add120.13': [(, - 66)], - '$binop_sub114.11': [(, - 66)], - '$const154.3': [(, - 142)], - '$const174.0': [(, - 174)], - '$phi64.0': [(, - 0)], - '$phi66.1': [(, - 64)], - 'bool140': [(, - 66)], - 'i': [(, 66)], - 'main_shape': [(, - 0)], - 'n': [(, 0)], - 'shape': [(, - 0)]}) -13:52:49,649 numba.core.ssa DEBUG SSA violators -13:52:49,735 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=570) - 2 COPY_FREE_VARS(arg=2, lineno=570) - 4 RESUME(arg=0, lineno=570) - 6 LOAD_FAST(arg=0, lineno=571) - 8 LOAD_ATTR(arg=0, lineno=571) - 18 LOAD_CONST(arg=1, lineno=571) - 20 COMPARE_OP(arg=2, lineno=571) - 26 POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=571) - 28 LOAD_GLOBAL(arg=3, lineno=572) - 40 LOAD_CONST(arg=2, lineno=572) - 42 PRECALL(arg=1, lineno=572) - 46 CALL(arg=1, lineno=572) - 56 RAISE_VARARGS(arg=1, lineno=572) -> 58 LOAD_GLOBAL(arg=5, lineno=575) - 70 LOAD_ATTR(arg=3, lineno=575) - 80 LOAD_FAST(arg=0, lineno=575) - 82 PRECALL(arg=1, lineno=575) - 86 CALL(arg=1, lineno=575) - 96 STORE_FAST(arg=1, lineno=575) - 98 LOAD_GLOBAL(arg=9, lineno=576) - 110 LOAD_FAST(arg=1, lineno=576) - 112 PRECALL(arg=1, lineno=576) - 116 CALL(arg=1, lineno=576) - 126 LOAD_METHOD(arg=5, lineno=576) - 148 LOAD_CONST(arg=1, lineno=576) - 150 PRECALL(arg=1, lineno=576) - 154 CALL(arg=1, lineno=576) - 164 STORE_FAST(arg=2, lineno=576) - 166 PUSH_NULL(arg=None, lineno=577) - 168 LOAD_DEREF(arg=6, lineno=577) - 170 LOAD_FAST(arg=2, lineno=577) - 172 PRECALL(arg=1, lineno=577) - 176 CALL(arg=1, lineno=577) - 186 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=577) - 188 LOAD_FAST(arg=2, lineno=578) - 190 RETURN_VALUE(arg=None, lineno=578) -> 192 LOAD_FAST(arg=1, lineno=580) - 194 GET_ITER(arg=None, lineno=580) -> 196 FOR_ITER(arg=51, lineno=580) - 198 STORE_FAST(arg=3, lineno=580) - 200 LOAD_FAST(arg=3, lineno=581) - 202 LOAD_METHOD(arg=6, lineno=581) - 224 PRECALL(arg=0, lineno=581) - 228 CALL(arg=0, lineno=581) - 238 STORE_FAST(arg=4, lineno=581) - 240 PUSH_NULL(arg=None, lineno=582) - 242 LOAD_DEREF(arg=6, lineno=582) - 244 LOAD_FAST(arg=4, lineno=582) - 246 PRECALL(arg=1, lineno=582) - 250 CALL(arg=1, lineno=582) - 260 POP_JUMP_FORWARD_IF_FALSE(arg=4, lineno=582) - 262 LOAD_FAST(arg=4, lineno=583) - 264 SWAP(arg=2, lineno=583) - 266 POP_TOP(arg=None, lineno=583) - 268 RETURN_VALUE(arg=None, lineno=583) -> 270 PUSH_NULL(arg=None, lineno=584) - 272 LOAD_DEREF(arg=5, lineno=584) - 274 LOAD_FAST(arg=4, lineno=584) - 276 LOAD_FAST(arg=2, lineno=584) - 278 PRECALL(arg=2, lineno=584) - 282 CALL(arg=2, lineno=584) - 292 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=584) - 294 LOAD_FAST(arg=4, lineno=585) - 296 STORE_FAST(arg=2, lineno=585) -> 298 JUMP_BACKWARD(arg=52, lineno=585) -> 300 LOAD_FAST(arg=2, lineno=586) - 302 RETURN_VALUE(arg=None, lineno=586) -13:52:49,735 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,735 numba.core.byteflow DEBUG stack: [] -13:52:49,735 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,735 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=570) -13:52:49,735 numba.core.byteflow DEBUG stack [] -13:52:49,735 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=2, lineno=570) -13:52:49,736 numba.core.byteflow DEBUG stack [] -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=570) -13:52:49,736 numba.core.byteflow DEBUG stack [] -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=0, lineno=571) -13:52:49,736 numba.core.byteflow DEBUG stack [] -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_ATTR(arg=0, lineno=571) -13:52:49,736 numba.core.byteflow DEBUG stack ['$a6.0'] -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=571) -13:52:49,736 numba.core.byteflow DEBUG stack ['$8load_attr.1'] -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=20, inst=COMPARE_OP(arg=2, lineno=571) -13:52:49,736 numba.core.byteflow DEBUG stack ['$8load_attr.1', '$const18.2'] -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=26, inst=POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=571) -13:52:49,736 numba.core.byteflow DEBUG stack ['$20compare_op.3'] -13:52:49,736 numba.core.byteflow DEBUG end state. edges=[Edge(pc=28, stack=(), blockstack=(), npush=0), Edge(pc=58, stack=(), blockstack=(), npush=0)] -13:52:49,736 numba.core.byteflow DEBUG pending: deque([State(pc_initial=28 nstack_initial=0), State(pc_initial=58 nstack_initial=0)]) -13:52:49,736 numba.core.byteflow DEBUG stack: [] -13:52:49,736 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=28 nstack_initial=0) -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_GLOBAL(arg=3, lineno=572) -13:52:49,736 numba.core.byteflow DEBUG stack [] -13:52:49,736 numba.core.byteflow DEBUG dispatch pc=40, inst=LOAD_CONST(arg=2, lineno=572) -13:52:49,737 numba.core.byteflow DEBUG stack ['$null$28.1', '$28load_global.0'] -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=42, inst=PRECALL(arg=1, lineno=572) -13:52:49,737 numba.core.byteflow DEBUG stack ['$null$28.1', '$28load_global.0', '$const40.2'] -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=46, inst=CALL(arg=1, lineno=572) -13:52:49,737 numba.core.byteflow DEBUG stack ['$null$28.1', '$28load_global.0', '$const40.2'] -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=56, inst=RAISE_VARARGS(arg=1, lineno=572) -13:52:49,737 numba.core.byteflow DEBUG stack ['$46call.3'] -13:52:49,737 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,737 numba.core.byteflow DEBUG pending: deque([State(pc_initial=58 nstack_initial=0)]) -13:52:49,737 numba.core.byteflow DEBUG stack: [] -13:52:49,737 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=58 nstack_initial=0) -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=58, inst=LOAD_GLOBAL(arg=5, lineno=575) -13:52:49,737 numba.core.byteflow DEBUG stack [] -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=70, inst=LOAD_ATTR(arg=3, lineno=575) -13:52:49,737 numba.core.byteflow DEBUG stack ['$null$58.1', '$58load_global.0'] -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=80, inst=LOAD_FAST(arg=0, lineno=575) -13:52:49,737 numba.core.byteflow DEBUG stack ['$null$58.1', '$70load_attr.2'] -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=82, inst=PRECALL(arg=1, lineno=575) -13:52:49,737 numba.core.byteflow DEBUG stack ['$null$58.1', '$70load_attr.2', '$a80.3'] -13:52:49,737 numba.core.byteflow DEBUG dispatch pc=86, inst=CALL(arg=1, lineno=575) -13:52:49,737 numba.core.byteflow DEBUG stack ['$null$58.1', '$70load_attr.2', '$a80.3'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=96, inst=STORE_FAST(arg=1, lineno=575) -13:52:49,738 numba.core.byteflow DEBUG stack ['$86call.4'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=98, inst=LOAD_GLOBAL(arg=9, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack [] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=110, inst=LOAD_FAST(arg=1, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$null$98.6', '$98load_global.5'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=112, inst=PRECALL(arg=1, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$null$98.6', '$98load_global.5', '$it110.7'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=116, inst=CALL(arg=1, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$null$98.6', '$98load_global.5', '$it110.7'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=126, inst=LOAD_METHOD(arg=5, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$116call.8'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=148, inst=LOAD_CONST(arg=1, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$null$126.9', '$126load_method.10'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=150, inst=PRECALL(arg=1, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$null$126.9', '$126load_method.10', '$const148.11'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=154, inst=CALL(arg=1, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$null$126.9', '$126load_method.10', '$const148.11'] -13:52:49,738 numba.core.byteflow DEBUG dispatch pc=164, inst=STORE_FAST(arg=2, lineno=576) -13:52:49,738 numba.core.byteflow DEBUG stack ['$154call.12'] -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=166, inst=PUSH_NULL(arg=None, lineno=577) -13:52:49,739 numba.core.byteflow DEBUG stack [] -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=168, inst=LOAD_DEREF(arg=6, lineno=577) -13:52:49,739 numba.core.byteflow DEBUG stack ['$null$166.13'] -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=170, inst=LOAD_FAST(arg=2, lineno=577) -13:52:49,739 numba.core.byteflow DEBUG stack ['$null$166.13', '$168load_deref.14'] -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=172, inst=PRECALL(arg=1, lineno=577) -13:52:49,739 numba.core.byteflow DEBUG stack ['$null$166.13', '$168load_deref.14', '$max_value170.15'] -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=176, inst=CALL(arg=1, lineno=577) -13:52:49,739 numba.core.byteflow DEBUG stack ['$null$166.13', '$168load_deref.14', '$max_value170.15'] -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=186, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=577) -13:52:49,739 numba.core.byteflow DEBUG stack ['$176call.16'] -13:52:49,739 numba.core.byteflow DEBUG end state. edges=[Edge(pc=188, stack=(), blockstack=(), npush=0), Edge(pc=192, stack=(), blockstack=(), npush=0)] -13:52:49,739 numba.core.byteflow DEBUG pending: deque([State(pc_initial=188 nstack_initial=0), State(pc_initial=192 nstack_initial=0)]) -13:52:49,739 numba.core.byteflow DEBUG stack: [] -13:52:49,739 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=188 nstack_initial=0) -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=188, inst=LOAD_FAST(arg=2, lineno=578) -13:52:49,739 numba.core.byteflow DEBUG stack [] -13:52:49,739 numba.core.byteflow DEBUG dispatch pc=190, inst=RETURN_VALUE(arg=None, lineno=578) -13:52:49,740 numba.core.byteflow DEBUG stack ['$max_value188.0'] -13:52:49,740 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,740 numba.core.byteflow DEBUG pending: deque([State(pc_initial=192 nstack_initial=0)]) -13:52:49,740 numba.core.byteflow DEBUG stack: [] -13:52:49,740 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=192 nstack_initial=0) -13:52:49,740 numba.core.byteflow DEBUG dispatch pc=192, inst=LOAD_FAST(arg=1, lineno=580) -13:52:49,740 numba.core.byteflow DEBUG stack [] -13:52:49,740 numba.core.byteflow DEBUG dispatch pc=194, inst=GET_ITER(arg=None, lineno=580) -13:52:49,740 numba.core.byteflow DEBUG stack ['$it192.0'] -13:52:49,740 numba.core.byteflow DEBUG end state. edges=[Edge(pc=196, stack=('$194get_iter.1',), blockstack=(), npush=0)] -13:52:49,740 numba.core.byteflow DEBUG pending: deque([State(pc_initial=196 nstack_initial=1)]) -13:52:49,740 numba.core.byteflow DEBUG stack: ['$phi196.0'] -13:52:49,740 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=196 nstack_initial=1) -13:52:49,740 numba.core.byteflow DEBUG dispatch pc=196, inst=FOR_ITER(arg=51, lineno=580) -13:52:49,740 numba.core.byteflow DEBUG stack ['$phi196.0'] -13:52:49,740 numba.core.byteflow DEBUG end state. edges=[Edge(pc=300, stack=(), blockstack=(), npush=0), Edge(pc=198, stack=('$phi196.0', '$196for_iter.2'), blockstack=(), npush=0)] -13:52:49,740 numba.core.byteflow DEBUG pending: deque([State(pc_initial=300 nstack_initial=0), State(pc_initial=198 nstack_initial=2)]) -13:52:49,740 numba.core.byteflow DEBUG stack: [] -13:52:49,740 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=300 nstack_initial=0) -13:52:49,740 numba.core.byteflow DEBUG dispatch pc=300, inst=LOAD_FAST(arg=2, lineno=586) -13:52:49,741 numba.core.byteflow DEBUG stack [] -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=302, inst=RETURN_VALUE(arg=None, lineno=586) -13:52:49,741 numba.core.byteflow DEBUG stack ['$max_value300.0'] -13:52:49,741 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,741 numba.core.byteflow DEBUG pending: deque([State(pc_initial=198 nstack_initial=2)]) -13:52:49,741 numba.core.byteflow DEBUG stack: ['$phi198.0', '$phi198.1'] -13:52:49,741 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=198 nstack_initial=2) -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=198, inst=STORE_FAST(arg=3, lineno=580) -13:52:49,741 numba.core.byteflow DEBUG stack ['$phi198.0', '$phi198.1'] -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=200, inst=LOAD_FAST(arg=3, lineno=581) -13:52:49,741 numba.core.byteflow DEBUG stack ['$phi198.0'] -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=202, inst=LOAD_METHOD(arg=6, lineno=581) -13:52:49,741 numba.core.byteflow DEBUG stack ['$phi198.0', '$view200.2'] -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=224, inst=PRECALL(arg=0, lineno=581) -13:52:49,741 numba.core.byteflow DEBUG stack ['$phi198.0', '$null$202.3', '$202load_method.4'] -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=228, inst=CALL(arg=0, lineno=581) -13:52:49,741 numba.core.byteflow DEBUG stack ['$phi198.0', '$null$202.3', '$202load_method.4'] -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=238, inst=STORE_FAST(arg=4, lineno=581) -13:52:49,741 numba.core.byteflow DEBUG stack ['$phi198.0', '$228call.5'] -13:52:49,741 numba.core.byteflow DEBUG dispatch pc=240, inst=PUSH_NULL(arg=None, lineno=582) -13:52:49,741 numba.core.byteflow DEBUG stack ['$phi198.0'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=242, inst=LOAD_DEREF(arg=6, lineno=582) -13:52:49,742 numba.core.byteflow DEBUG stack ['$phi198.0', '$null$240.6'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=244, inst=LOAD_FAST(arg=4, lineno=582) -13:52:49,742 numba.core.byteflow DEBUG stack ['$phi198.0', '$null$240.6', '$242load_deref.7'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=246, inst=PRECALL(arg=1, lineno=582) -13:52:49,742 numba.core.byteflow DEBUG stack ['$phi198.0', '$null$240.6', '$242load_deref.7', '$v244.8'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=250, inst=CALL(arg=1, lineno=582) -13:52:49,742 numba.core.byteflow DEBUG stack ['$phi198.0', '$null$240.6', '$242load_deref.7', '$v244.8'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=260, inst=POP_JUMP_FORWARD_IF_FALSE(arg=4, lineno=582) -13:52:49,742 numba.core.byteflow DEBUG stack ['$phi198.0', '$250call.9'] -13:52:49,742 numba.core.byteflow DEBUG end state. edges=[Edge(pc=262, stack=('$phi198.0',), blockstack=(), npush=0), Edge(pc=270, stack=('$phi198.0',), blockstack=(), npush=0)] -13:52:49,742 numba.core.byteflow DEBUG pending: deque([State(pc_initial=262 nstack_initial=1), State(pc_initial=270 nstack_initial=1)]) -13:52:49,742 numba.core.byteflow DEBUG stack: ['$phi262.0'] -13:52:49,742 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=262 nstack_initial=1) -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=262, inst=LOAD_FAST(arg=4, lineno=583) -13:52:49,742 numba.core.byteflow DEBUG stack ['$phi262.0'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=264, inst=SWAP(arg=2, lineno=583) -13:52:49,742 numba.core.byteflow DEBUG stack ['$phi262.0', '$v262.1'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=266, inst=POP_TOP(arg=None, lineno=583) -13:52:49,742 numba.core.byteflow DEBUG stack ['$v262.1', '$phi262.0'] -13:52:49,742 numba.core.byteflow DEBUG dispatch pc=268, inst=RETURN_VALUE(arg=None, lineno=583) -13:52:49,743 numba.core.byteflow DEBUG stack ['$v262.1'] -13:52:49,743 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,743 numba.core.byteflow DEBUG pending: deque([State(pc_initial=270 nstack_initial=1)]) -13:52:49,743 numba.core.byteflow DEBUG stack: ['$phi270.0'] -13:52:49,743 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=270 nstack_initial=1) -13:52:49,743 numba.core.byteflow DEBUG dispatch pc=270, inst=PUSH_NULL(arg=None, lineno=584) -13:52:49,743 numba.core.byteflow DEBUG stack ['$phi270.0'] -13:52:49,743 numba.core.byteflow DEBUG dispatch pc=272, inst=LOAD_DEREF(arg=5, lineno=584) -13:52:49,743 numba.core.byteflow DEBUG stack ['$phi270.0', '$null$270.1'] -13:52:49,743 numba.core.byteflow DEBUG dispatch pc=274, inst=LOAD_FAST(arg=4, lineno=584) -13:52:49,743 numba.core.byteflow DEBUG stack ['$phi270.0', '$null$270.1', '$272load_deref.2'] -13:52:49,743 numba.core.byteflow DEBUG dispatch pc=276, inst=LOAD_FAST(arg=2, lineno=584) -13:52:49,743 numba.core.byteflow DEBUG stack ['$phi270.0', '$null$270.1', '$272load_deref.2', '$v274.3'] -13:52:49,743 numba.core.byteflow DEBUG dispatch pc=278, inst=PRECALL(arg=2, lineno=584) -13:52:49,743 numba.core.byteflow DEBUG stack ['$phi270.0', '$null$270.1', '$272load_deref.2', '$v274.3', '$max_value276.4'] -13:52:49,743 numba.core.byteflow DEBUG dispatch pc=282, inst=CALL(arg=2, lineno=584) -13:52:49,743 numba.core.byteflow DEBUG stack ['$phi270.0', '$null$270.1', '$272load_deref.2', '$v274.3', '$max_value276.4'] -13:52:49,743 numba.core.byteflow DEBUG dispatch pc=292, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=584) -13:52:49,743 numba.core.byteflow DEBUG stack ['$phi270.0', '$282call.5'] -13:52:49,743 numba.core.byteflow DEBUG end state. edges=[Edge(pc=294, stack=('$phi270.0',), blockstack=(), npush=0), Edge(pc=298, stack=('$phi270.0',), blockstack=(), npush=0)] -13:52:49,743 numba.core.byteflow DEBUG pending: deque([State(pc_initial=294 nstack_initial=1), State(pc_initial=298 nstack_initial=1)]) -13:52:49,744 numba.core.byteflow DEBUG stack: ['$phi294.0'] -13:52:49,744 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=294 nstack_initial=1) -13:52:49,744 numba.core.byteflow DEBUG dispatch pc=294, inst=LOAD_FAST(arg=4, lineno=585) -13:52:49,744 numba.core.byteflow DEBUG stack ['$phi294.0'] -13:52:49,744 numba.core.byteflow DEBUG dispatch pc=296, inst=STORE_FAST(arg=2, lineno=585) -13:52:49,744 numba.core.byteflow DEBUG stack ['$phi294.0', '$v294.1'] -13:52:49,744 numba.core.byteflow DEBUG end state. edges=[Edge(pc=298, stack=('$phi294.0',), blockstack=(), npush=0)] -13:52:49,744 numba.core.byteflow DEBUG pending: deque([State(pc_initial=298 nstack_initial=1), State(pc_initial=298 nstack_initial=1)]) -13:52:49,744 numba.core.byteflow DEBUG stack: ['$phi298.0'] -13:52:49,744 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=298 nstack_initial=1) -13:52:49,744 numba.core.byteflow DEBUG dispatch pc=298, inst=JUMP_BACKWARD(arg=52, lineno=585) -13:52:49,744 numba.core.byteflow DEBUG stack ['$phi298.0'] -13:52:49,744 numba.core.byteflow DEBUG end state. edges=[Edge(pc=196, stack=('$phi298.0',), blockstack=(), npush=0)] -13:52:49,744 numba.core.byteflow DEBUG pending: deque([State(pc_initial=298 nstack_initial=1), State(pc_initial=196 nstack_initial=1)]) -13:52:49,744 numba.core.byteflow DEBUG pending: deque([State(pc_initial=196 nstack_initial=1)]) -13:52:49,744 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,744 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=28 nstack_initial=0): set(), - State(pc_initial=58 nstack_initial=0): set(), - State(pc_initial=188 nstack_initial=0): set(), - State(pc_initial=192 nstack_initial=0): set(), - State(pc_initial=196 nstack_initial=1): {'$phi196.0'}, - State(pc_initial=198 nstack_initial=2): {'$phi198.1'}, - State(pc_initial=262 nstack_initial=1): set(), - State(pc_initial=270 nstack_initial=1): set(), - State(pc_initial=294 nstack_initial=1): set(), - State(pc_initial=298 nstack_initial=1): set(), - State(pc_initial=300 nstack_initial=0): set()}) -13:52:49,745 numba.core.byteflow DEBUG defmap: {'$phi196.0': State(pc_initial=192 nstack_initial=0), - '$phi198.1': State(pc_initial=196 nstack_initial=1)} -13:52:49,745 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi196.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0)), - ('$phi298.0', - State(pc_initial=298 nstack_initial=1))}, - '$phi198.0': {('$phi196.0', - State(pc_initial=196 nstack_initial=1))}, - '$phi198.1': {('$196for_iter.2', - State(pc_initial=196 nstack_initial=1))}, - '$phi262.0': {('$phi198.0', - State(pc_initial=198 nstack_initial=2))}, - '$phi270.0': {('$phi198.0', - State(pc_initial=198 nstack_initial=2))}, - '$phi294.0': {('$phi270.0', - State(pc_initial=270 nstack_initial=1))}, - '$phi298.0': {('$phi270.0', - State(pc_initial=270 nstack_initial=1)), - ('$phi294.0', - State(pc_initial=294 nstack_initial=1))}}) -13:52:49,745 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi196.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0)), - ('$phi270.0', - State(pc_initial=270 nstack_initial=1)), - ('$phi294.0', - State(pc_initial=294 nstack_initial=1))}, - '$phi198.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0)), - ('$phi270.0', - State(pc_initial=270 nstack_initial=1)), - ('$phi294.0', - State(pc_initial=294 nstack_initial=1))}, - '$phi198.1': {('$196for_iter.2', - State(pc_initial=196 nstack_initial=1))}, - '$phi262.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0)), - ('$phi270.0', - State(pc_initial=270 nstack_initial=1)), - ('$phi294.0', - State(pc_initial=294 nstack_initial=1))}, - '$phi270.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0)), - ('$phi270.0', - State(pc_initial=270 nstack_initial=1)), - ('$phi294.0', - State(pc_initial=294 nstack_initial=1))}, - '$phi294.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0)), - ('$phi294.0', - State(pc_initial=294 nstack_initial=1))}, - '$phi298.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}}) -13:52:49,745 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi196.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi198.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi198.1': {('$196for_iter.2', - State(pc_initial=196 nstack_initial=1))}, - '$phi262.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi270.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi294.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi298.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}}) -13:52:49,745 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi196.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi198.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi198.1': {('$196for_iter.2', - State(pc_initial=196 nstack_initial=1))}, - '$phi262.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi270.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi294.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}, - '$phi298.0': {('$194get_iter.1', - State(pc_initial=192 nstack_initial=0))}}) -13:52:49,745 numba.core.byteflow DEBUG keep phismap: {'$phi196.0': {('$194get_iter.1', State(pc_initial=192 nstack_initial=0))}, - '$phi198.1': {('$196for_iter.2', State(pc_initial=196 nstack_initial=1))}} -13:52:49,745 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=192 nstack_initial=0): {'$phi196.0': '$194get_iter.1'}, - State(pc_initial=196 nstack_initial=1): {'$phi198.1': '$196for_iter.2'}}) -13:52:49,746 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'res': '$a6.0'}), (8, {'item': '$a6.0', 'res': '$8load_attr.1'}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$const18.2'}), (20, {'lhs': '$8load_attr.1', 'rhs': '$const18.2', 'res': '$20compare_op.3'}), (22, {}), (24, {}), (26, {'pred': '$20compare_op.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={28: (), 58: ()}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=28 nstack_initial=0): -AdaptBlockInfo(insts=((28, {'idx': 1, 'res': '$28load_global.0'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {}), (40, {'res': '$const40.2'}), (42, {}), (44, {}), (46, {'func': '$28load_global.0', 'args': ['$const40.2'], 'kw_names': None, 'res': '$46call.3'}), (48, {}), (50, {}), (52, {}), (54, {}), (56, {'exc': '$46call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=58 nstack_initial=0): -AdaptBlockInfo(insts=((58, {'idx': 2, 'res': '$58load_global.0'}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {'item': '$58load_global.0', 'res': '$70load_attr.2'}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {'res': '$a80.3'}), (82, {}), (84, {}), (86, {'func': '$70load_attr.2', 'args': ['$a80.3'], 'kw_names': None, 'res': '$86call.4'}), (88, {}), (90, {}), (92, {}), (94, {}), (96, {'value': '$86call.4'}), (98, {'idx': 4, 'res': '$98load_global.5'}), (100, {}), (102, {}), (104, {}), (106, {}), (108, {}), (110, {'res': '$it110.7'}), (112, {}), (114, {}), (116, {'func': '$98load_global.5', 'args': ['$it110.7'], 'kw_names': None, 'res': '$116call.8'}), (118, {}), (120, {}), (122, {}), (124, {}), (126, {'item': '$116call.8', 'res': '$126load_method.10'}), (128, {}), (130, {}), (132, {}), (134, {}), (136, {}), (138, {}), (140, {}), (142, {}), (144, {}), (146, {}), (148, {'res': '$const148.11'}), (150, {}), (152, {}), (154, {'func': '$126load_method.10', 'args': ['$const148.11'], 'kw_names': None, 'res': '$154call.12'}), (156, {}), (158, {}), (160, {}), (162, {}), (164, {'value': '$154call.12'}), (166, {}), (168, {'res': '$168load_deref.14'}), (170, {'res': '$max_value170.15'}), (172, {}), (174, {}), (176, {'func': '$168load_deref.14', 'args': ['$max_value170.15'], 'kw_names': None, 'res': '$176call.16'}), (178, {}), (180, {}), (182, {}), (184, {}), (186, {'pred': '$176call.16'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={188: (), 192: ()}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=188 nstack_initial=0): -AdaptBlockInfo(insts=((188, {'res': '$max_value188.0'}), (190, {'retval': '$max_value188.0', 'castval': '$190return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=192 nstack_initial=0): -AdaptBlockInfo(insts=((192, {'res': '$it192.0'}), (194, {'value': '$it192.0', 'res': '$194get_iter.1'})), outgoing_phis={'$phi196.0': '$194get_iter.1'}, blockstack=(), active_try_block=None, outgoing_edgepushed={196: ('$194get_iter.1',)}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=196 nstack_initial=1): -AdaptBlockInfo(insts=((196, {'iterator': '$phi196.0', 'pair': '$196for_iter.1', 'indval': '$196for_iter.2', 'pred': '$196for_iter.3'}),), outgoing_phis={'$phi198.1': '$196for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={300: (), 198: ('$phi196.0', '$196for_iter.2')}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=198 nstack_initial=2): -AdaptBlockInfo(insts=((198, {'value': '$phi198.1'}), (200, {'res': '$view200.2'}), (202, {'item': '$view200.2', 'res': '$202load_method.4'}), (204, {}), (206, {}), (208, {}), (210, {}), (212, {}), (214, {}), (216, {}), (218, {}), (220, {}), (222, {}), (224, {}), (226, {}), (228, {'func': '$202load_method.4', 'args': [], 'kw_names': None, 'res': '$228call.5'}), (230, {}), (232, {}), (234, {}), (236, {}), (238, {'value': '$228call.5'}), (240, {}), (242, {'res': '$242load_deref.7'}), (244, {'res': '$v244.8'}), (246, {}), (248, {}), (250, {'func': '$242load_deref.7', 'args': ['$v244.8'], 'kw_names': None, 'res': '$250call.9'}), (252, {}), (254, {}), (256, {}), (258, {}), (260, {'pred': '$250call.9'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={262: ('$phi198.0',), 270: ('$phi198.0',)}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=262 nstack_initial=1): -AdaptBlockInfo(insts=((262, {'res': '$v262.1'}), (268, {'retval': '$v262.1', 'castval': '$268return_value.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=270 nstack_initial=1): -AdaptBlockInfo(insts=((270, {}), (272, {'res': '$272load_deref.2'}), (274, {'res': '$v274.3'}), (276, {'res': '$max_value276.4'}), (278, {}), (280, {}), (282, {'func': '$272load_deref.2', 'args': ['$v274.3', '$max_value276.4'], 'kw_names': None, 'res': '$282call.5'}), (284, {}), (286, {}), (288, {}), (290, {}), (292, {'pred': '$282call.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={294: ('$phi270.0',), 298: ('$phi270.0',)}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=294 nstack_initial=1): -AdaptBlockInfo(insts=((294, {'res': '$v294.1'}), (296, {'value': '$v294.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={298: ('$phi294.0',)}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=298 nstack_initial=1): -AdaptBlockInfo(insts=((298, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={196: ('$phi298.0',)}) -13:52:49,746 numba.core.byteflow DEBUG block_infos State(pc_initial=300 nstack_initial=0): -AdaptBlockInfo(insts=((300, {'res': '$max_value300.0'}), (302, {'retval': '$max_value300.0', 'castval': '$302return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,749 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - $8load_attr.1 = getattr(value=a, attr=size) ['$8load_attr.1', 'a'] - $const18.2 = const(int, 0) ['$const18.2'] - $20compare_op.3 = $8load_attr.1 == $const18.2 ['$20compare_op.3', '$8load_attr.1', '$const18.2'] - bool26 = global(bool: ) ['bool26'] - $26pred = call bool26($20compare_op.3, func=bool26, args=(Var($20compare_op.3, arraymath.py:571),), kws=(), vararg=None, varkwarg=None, target=None) ['$20compare_op.3', '$26pred', 'bool26'] - branch $26pred, 28, 58 ['$26pred'] -label 28: - $28load_global.0 = global(ValueError: ) ['$28load_global.0'] - $const40.2 = const(str, zero-size array to reduction operation maximum which has no identity) ['$const40.2'] - $46call.3 = call $28load_global.0($const40.2, func=$28load_global.0, args=[Var($const40.2, arraymath.py:572)], kws=(), vararg=None, varkwarg=None, target=None) ['$28load_global.0', '$46call.3', '$const40.2'] - raise $46call.3 ['$46call.3'] -label 58: - $58load_global.0 = global(np: ) ['$58load_global.0'] - $70load_attr.2 = getattr(value=$58load_global.0, attr=nditer) ['$58load_global.0', '$70load_attr.2'] - it = call $70load_attr.2(a, func=$70load_attr.2, args=[Var(a, arraymath.py:570)], kws=(), vararg=None, varkwarg=None, target=None) ['$70load_attr.2', 'a', 'it'] - $98load_global.5 = global(next: ) ['$98load_global.5'] - $116call.8 = call $98load_global.5(it, func=$98load_global.5, args=[Var(it, arraymath.py:575)], kws=(), vararg=None, varkwarg=None, target=None) ['$116call.8', '$98load_global.5', 'it'] - $126load_method.10 = getattr(value=$116call.8, attr=take) ['$116call.8', '$126load_method.10'] - $const148.11 = const(int, 0) ['$const148.11'] - max_value = call $126load_method.10($const148.11, func=$126load_method.10, args=[Var($const148.11, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) ['$126load_method.10', '$const148.11', 'max_value'] - $168load_deref.14 = freevar(pre_return_func: ) ['$168load_deref.14'] - $176call.16 = call $168load_deref.14(max_value, func=$168load_deref.14, args=[Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) ['$168load_deref.14', '$176call.16', 'max_value'] - bool186 = global(bool: ) ['bool186'] - $186pred = call bool186($176call.16, func=bool186, args=(Var($176call.16, arraymath.py:577),), kws=(), vararg=None, varkwarg=None, target=None) ['$176call.16', '$186pred', 'bool186'] - branch $186pred, 188, 192 ['$186pred'] -label 188: - $190return_value.1 = cast(value=max_value) ['$190return_value.1', 'max_value'] - return $190return_value.1 ['$190return_value.1'] -label 192: - $194get_iter.1 = getiter(value=it) ['$194get_iter.1', 'it'] - $phi196.0 = $194get_iter.1 ['$194get_iter.1', '$phi196.0'] - jump 196 [] -label 196: - $196for_iter.1 = iternext(value=$phi196.0) ['$196for_iter.1', '$phi196.0'] - $196for_iter.2 = pair_first(value=$196for_iter.1) ['$196for_iter.1', '$196for_iter.2'] - $196for_iter.3 = pair_second(value=$196for_iter.1) ['$196for_iter.1', '$196for_iter.3'] - $phi198.1 = $196for_iter.2 ['$196for_iter.2', '$phi198.1'] - branch $196for_iter.3, 198, 300 ['$196for_iter.3'] -label 198: - view = $phi198.1 ['$phi198.1', 'view'] - $202load_method.4 = getattr(value=view, attr=item) ['$202load_method.4', 'view'] - v = call $202load_method.4(func=$202load_method.4, args=[], kws=(), vararg=None, varkwarg=None, target=None) ['$202load_method.4', 'v'] - $242load_deref.7 = freevar(pre_return_func: ) ['$242load_deref.7'] - $250call.9 = call $242load_deref.7(v, func=$242load_deref.7, args=[Var(v, arraymath.py:581)], kws=(), vararg=None, varkwarg=None, target=None) ['$242load_deref.7', '$250call.9', 'v'] - bool260 = global(bool: ) ['bool260'] - $260pred = call bool260($250call.9, func=bool260, args=(Var($250call.9, arraymath.py:582),), kws=(), vararg=None, varkwarg=None, target=None) ['$250call.9', '$260pred', 'bool260'] - branch $260pred, 262, 270 ['$260pred'] -label 262: - $268return_value.2 = cast(value=v) ['$268return_value.2', 'v'] - return $268return_value.2 ['$268return_value.2'] -label 270: - $272load_deref.2 = freevar(comparator: ) ['$272load_deref.2'] - $282call.5 = call $272load_deref.2(v, max_value, func=$272load_deref.2, args=[Var(v, arraymath.py:581), Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) ['$272load_deref.2', '$282call.5', 'max_value', 'v'] - bool292 = global(bool: ) ['bool292'] - $292pred = call bool292($282call.5, func=bool292, args=(Var($282call.5, arraymath.py:584),), kws=(), vararg=None, varkwarg=None, target=None) ['$282call.5', '$292pred', 'bool292'] - branch $292pred, 294, 298 ['$292pred'] -label 294: - max_value = v ['max_value', 'v'] - jump 298 [] -label 298: - jump 196 [] -label 300: - $302return_value.1 = cast(value=max_value) ['$302return_value.1', 'max_value'] - return $302return_value.1 ['$302return_value.1'] - -13:52:49,780 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,780 numba.core.ssa DEBUG Running -13:52:49,780 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:49,780 numba.core.ssa DEBUG on stmt: $8load_attr.1 = getattr(value=a, attr=size) -13:52:49,780 numba.core.ssa DEBUG on stmt: $const18.2 = const(int, 0) -13:52:49,780 numba.core.ssa DEBUG on stmt: $20compare_op.3 = $8load_attr.1 == $const18.2 -13:52:49,780 numba.core.ssa DEBUG on stmt: bool26 = global(bool: ) -13:52:49,780 numba.core.ssa DEBUG on stmt: $26pred = call bool26($20compare_op.3, func=bool26, args=(Var($20compare_op.3, arraymath.py:571),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,780 numba.core.ssa DEBUG on stmt: branch $26pred, 28, 58 -13:52:49,780 numba.core.ssa DEBUG ==== SSA block analysis pass on 28 -13:52:49,780 numba.core.ssa DEBUG Running -13:52:49,780 numba.core.ssa DEBUG on stmt: $28load_global.0 = global(ValueError: ) -13:52:49,780 numba.core.ssa DEBUG on stmt: $const40.2 = const(str, zero-size array to reduction operation maximum which has no identity) -13:52:49,780 numba.core.ssa DEBUG on stmt: $46call.3 = call $28load_global.0($const40.2, func=$28load_global.0, args=[Var($const40.2, arraymath.py:572)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,780 numba.core.ssa DEBUG on stmt: raise ('zero-size array to reduction operation maximum which has no identity') -13:52:49,780 numba.core.ssa DEBUG ==== SSA block analysis pass on 58 -13:52:49,780 numba.core.ssa DEBUG Running -13:52:49,780 numba.core.ssa DEBUG on stmt: $58load_global.0 = global(np: ) -13:52:49,781 numba.core.ssa DEBUG on stmt: $70load_attr.2 = getattr(value=$58load_global.0, attr=nditer) -13:52:49,781 numba.core.ssa DEBUG on stmt: it = call $70load_attr.2(a, func=$70load_attr.2, args=[Var(a, arraymath.py:570)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,781 numba.core.ssa DEBUG on stmt: $98load_global.5 = global(next: ) -13:52:49,781 numba.core.ssa DEBUG on stmt: $116call.8 = call $98load_global.5(it, func=$98load_global.5, args=[Var(it, arraymath.py:575)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,781 numba.core.ssa DEBUG on stmt: $126load_method.10 = getattr(value=$116call.8, attr=take) -13:52:49,781 numba.core.ssa DEBUG on stmt: $const148.11 = const(int, 0) -13:52:49,781 numba.core.ssa DEBUG on stmt: max_value = call $126load_method.10($const148.11, func=$126load_method.10, args=[Var($const148.11, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,781 numba.core.ssa DEBUG on stmt: $168load_deref.14 = freevar(pre_return_func: ) -13:52:49,781 numba.core.ssa DEBUG on stmt: $176call.16 = call $168load_deref.14(max_value, func=$168load_deref.14, args=[Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,781 numba.core.ssa DEBUG on stmt: bool186 = global(bool: ) -13:52:49,781 numba.core.ssa DEBUG on stmt: $186pred = call bool186($176call.16, func=bool186, args=(Var($176call.16, arraymath.py:577),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,781 numba.core.ssa DEBUG on stmt: branch $186pred, 188, 192 -13:52:49,781 numba.core.ssa DEBUG ==== SSA block analysis pass on 188 -13:52:49,781 numba.core.ssa DEBUG Running -13:52:49,781 numba.core.ssa DEBUG on stmt: $190return_value.1 = cast(value=max_value) -13:52:49,781 numba.core.ssa DEBUG on stmt: return $190return_value.1 -13:52:49,781 numba.core.ssa DEBUG ==== SSA block analysis pass on 192 -13:52:49,781 numba.core.ssa DEBUG Running -13:52:49,781 numba.core.ssa DEBUG on stmt: $194get_iter.1 = getiter(value=it) -13:52:49,781 numba.core.ssa DEBUG on stmt: $phi196.0 = $194get_iter.1 -13:52:49,781 numba.core.ssa DEBUG on stmt: jump 196 -13:52:49,781 numba.core.ssa DEBUG ==== SSA block analysis pass on 196 -13:52:49,781 numba.core.ssa DEBUG Running -13:52:49,782 numba.core.ssa DEBUG on stmt: $196for_iter.1 = iternext(value=$phi196.0) -13:52:49,782 numba.core.ssa DEBUG on stmt: $196for_iter.2 = pair_first(value=$196for_iter.1) -13:52:49,782 numba.core.ssa DEBUG on stmt: $196for_iter.3 = pair_second(value=$196for_iter.1) -13:52:49,782 numba.core.ssa DEBUG on stmt: $phi198.1 = $196for_iter.2 -13:52:49,782 numba.core.ssa DEBUG on stmt: branch $196for_iter.3, 198, 300 -13:52:49,782 numba.core.ssa DEBUG ==== SSA block analysis pass on 198 -13:52:49,782 numba.core.ssa DEBUG Running -13:52:49,782 numba.core.ssa DEBUG on stmt: view = $phi198.1 -13:52:49,782 numba.core.ssa DEBUG on stmt: $202load_method.4 = getattr(value=view, attr=item) -13:52:49,782 numba.core.ssa DEBUG on stmt: v = call $202load_method.4(func=$202load_method.4, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,782 numba.core.ssa DEBUG on stmt: $242load_deref.7 = freevar(pre_return_func: ) -13:52:49,782 numba.core.ssa DEBUG on stmt: $250call.9 = call $242load_deref.7(v, func=$242load_deref.7, args=[Var(v, arraymath.py:581)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,782 numba.core.ssa DEBUG on stmt: bool260 = global(bool: ) -13:52:49,782 numba.core.ssa DEBUG on stmt: $260pred = call bool260($250call.9, func=bool260, args=(Var($250call.9, arraymath.py:582),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,782 numba.core.ssa DEBUG on stmt: branch $260pred, 262, 270 -13:52:49,782 numba.core.ssa DEBUG ==== SSA block analysis pass on 262 -13:52:49,782 numba.core.ssa DEBUG Running -13:52:49,782 numba.core.ssa DEBUG on stmt: $268return_value.2 = cast(value=v) -13:52:49,782 numba.core.ssa DEBUG on stmt: return $268return_value.2 -13:52:49,782 numba.core.ssa DEBUG ==== SSA block analysis pass on 270 -13:52:49,782 numba.core.ssa DEBUG Running -13:52:49,782 numba.core.ssa DEBUG on stmt: $272load_deref.2 = freevar(comparator: ) -13:52:49,782 numba.core.ssa DEBUG on stmt: $282call.5 = call $272load_deref.2(v, max_value, func=$272load_deref.2, args=[Var(v, arraymath.py:581), Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,782 numba.core.ssa DEBUG on stmt: bool292 = global(bool: ) -13:52:49,783 numba.core.ssa DEBUG on stmt: $292pred = call bool292($282call.5, func=bool292, args=(Var($282call.5, arraymath.py:584),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,783 numba.core.ssa DEBUG on stmt: branch $292pred, 294, 298 -13:52:49,783 numba.core.ssa DEBUG ==== SSA block analysis pass on 294 -13:52:49,783 numba.core.ssa DEBUG Running -13:52:49,783 numba.core.ssa DEBUG on stmt: max_value = v -13:52:49,783 numba.core.ssa DEBUG on stmt: jump 298 -13:52:49,783 numba.core.ssa DEBUG ==== SSA block analysis pass on 298 -13:52:49,783 numba.core.ssa DEBUG Running -13:52:49,783 numba.core.ssa DEBUG on stmt: jump 196 -13:52:49,783 numba.core.ssa DEBUG ==== SSA block analysis pass on 300 -13:52:49,783 numba.core.ssa DEBUG Running -13:52:49,783 numba.core.ssa DEBUG on stmt: $302return_value.1 = cast(value=max_value) -13:52:49,783 numba.core.ssa DEBUG on stmt: return $302return_value.1 -13:52:49,784 numba.core.ssa DEBUG defs defaultdict(, - {'$116call.8': [(, - 58)], - '$126load_method.10': [(, - 58)], - '$168load_deref.14': [(, - 58)], - '$176call.16': [(, - 58)], - '$186pred': [(, - 58)], - '$190return_value.1': [(, - 188)], - '$194get_iter.1': [(, - 192)], - '$196for_iter.1': [(, - 196)], - '$196for_iter.2': [(, - 196)], - '$196for_iter.3': [(, - 196)], - '$202load_method.4': [(, - 198)], - '$20compare_op.3': [(, - 0)], - '$242load_deref.7': [(, - 198)], - '$250call.9': [(, - 198)], - '$260pred': [(, - 198)], - '$268return_value.2': [(, - 262)], - '$26pred': [(, - 0)], - '$272load_deref.2': [(, - 270)], - '$282call.5': [(, - 270)], - '$28load_global.0': [(, - 28)], - '$292pred': [(, - 270)], - '$302return_value.1': [(, - 300)], - '$46call.3': [(, - 28)], - '$58load_global.0': [(, - 58)], - '$70load_attr.2': [(, - 58)], - '$8load_attr.1': [(, - 0)], - '$98load_global.5': [(, - 58)], - '$const148.11': [(, - 58)], - '$const18.2': [(, - 0)], - '$const40.2': [(, - 28)], - '$phi196.0': [(, - 192)], - '$phi198.1': [(, - 196)], - 'a': [(, 0)], - 'bool186': [(, - 58)], - 'bool26': [(, - 0)], - 'bool260': [(, - 198)], - 'bool292': [(, - 270)], - 'it': [(, 58)], - 'max_value': [(, - 58), - (, - 294)], - 'v': [(, 198)], - 'view': [(, - 198)]}) -13:52:49,784 numba.core.ssa DEBUG SSA violators -13:52:49,784 numba.core.ssa DEBUG Fix SSA violator on var max_value -13:52:49,784 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,784 numba.core.ssa DEBUG Running -13:52:49,784 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:49,784 numba.core.ssa DEBUG on stmt: $8load_attr.1 = getattr(value=a, attr=size) -13:52:49,784 numba.core.ssa DEBUG on stmt: $const18.2 = const(int, 0) -13:52:49,784 numba.core.ssa DEBUG on stmt: $20compare_op.3 = $8load_attr.1 == $const18.2 -13:52:49,784 numba.core.ssa DEBUG on stmt: bool26 = global(bool: ) -13:52:49,784 numba.core.ssa DEBUG on stmt: $26pred = call bool26($20compare_op.3, func=bool26, args=(Var($20compare_op.3, arraymath.py:571),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,784 numba.core.ssa DEBUG on stmt: branch $26pred, 28, 58 -13:52:49,784 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:49,784 numba.core.ssa DEBUG Running -13:52:49,785 numba.core.ssa DEBUG on stmt: $28load_global.0 = global(ValueError: ) -13:52:49,785 numba.core.ssa DEBUG on stmt: $const40.2 = const(str, zero-size array to reduction operation maximum which has no identity) -13:52:49,785 numba.core.ssa DEBUG on stmt: $46call.3 = call $28load_global.0($const40.2, func=$28load_global.0, args=[Var($const40.2, arraymath.py:572)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,785 numba.core.ssa DEBUG on stmt: raise ('zero-size array to reduction operation maximum which has no identity') -13:52:49,785 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:49,785 numba.core.ssa DEBUG Running -13:52:49,785 numba.core.ssa DEBUG on stmt: $58load_global.0 = global(np: ) -13:52:49,785 numba.core.ssa DEBUG on stmt: $70load_attr.2 = getattr(value=$58load_global.0, attr=nditer) -13:52:49,785 numba.core.ssa DEBUG on stmt: it = call $70load_attr.2(a, func=$70load_attr.2, args=[Var(a, arraymath.py:570)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,785 numba.core.ssa DEBUG on stmt: $98load_global.5 = global(next: ) -13:52:49,785 numba.core.ssa DEBUG on stmt: $116call.8 = call $98load_global.5(it, func=$98load_global.5, args=[Var(it, arraymath.py:575)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,785 numba.core.ssa DEBUG on stmt: $126load_method.10 = getattr(value=$116call.8, attr=take) -13:52:49,785 numba.core.ssa DEBUG on stmt: $const148.11 = const(int, 0) -13:52:49,785 numba.core.ssa DEBUG on stmt: max_value = call $126load_method.10($const148.11, func=$126load_method.10, args=[Var($const148.11, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,785 numba.core.ssa DEBUG first assign: max_value -13:52:49,785 numba.core.ssa DEBUG replaced with: max_value = call $126load_method.10($const148.11, func=$126load_method.10, args=[Var($const148.11, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,785 numba.core.ssa DEBUG on stmt: $168load_deref.14 = freevar(pre_return_func: ) -13:52:49,785 numba.core.ssa DEBUG on stmt: $176call.16 = call $168load_deref.14(max_value, func=$168load_deref.14, args=[Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,785 numba.core.ssa DEBUG on stmt: bool186 = global(bool: ) -13:52:49,785 numba.core.ssa DEBUG on stmt: $186pred = call bool186($176call.16, func=bool186, args=(Var($176call.16, arraymath.py:577),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,785 numba.core.ssa DEBUG on stmt: branch $186pred, 188, 192 -13:52:49,785 numba.core.ssa DEBUG ==== SSA block rewrite pass on 188 -13:52:49,786 numba.core.ssa DEBUG Running -13:52:49,786 numba.core.ssa DEBUG on stmt: $190return_value.1 = cast(value=max_value) -13:52:49,786 numba.core.ssa DEBUG on stmt: return $190return_value.1 -13:52:49,786 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,786 numba.core.ssa DEBUG Running -13:52:49,786 numba.core.ssa DEBUG on stmt: $194get_iter.1 = getiter(value=it) -13:52:49,786 numba.core.ssa DEBUG on stmt: $phi196.0 = $194get_iter.1 -13:52:49,786 numba.core.ssa DEBUG on stmt: jump 196 -13:52:49,786 numba.core.ssa DEBUG ==== SSA block rewrite pass on 196 -13:52:49,786 numba.core.ssa DEBUG Running -13:52:49,786 numba.core.ssa DEBUG on stmt: $196for_iter.1 = iternext(value=$phi196.0) -13:52:49,786 numba.core.ssa DEBUG on stmt: $196for_iter.2 = pair_first(value=$196for_iter.1) -13:52:49,786 numba.core.ssa DEBUG on stmt: $196for_iter.3 = pair_second(value=$196for_iter.1) -13:52:49,786 numba.core.ssa DEBUG on stmt: $phi198.1 = $196for_iter.2 -13:52:49,786 numba.core.ssa DEBUG on stmt: branch $196for_iter.3, 198, 300 -13:52:49,786 numba.core.ssa DEBUG ==== SSA block rewrite pass on 198 -13:52:49,786 numba.core.ssa DEBUG Running -13:52:49,786 numba.core.ssa DEBUG on stmt: view = $phi198.1 -13:52:49,786 numba.core.ssa DEBUG on stmt: $202load_method.4 = getattr(value=view, attr=item) -13:52:49,786 numba.core.ssa DEBUG on stmt: v = call $202load_method.4(func=$202load_method.4, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,786 numba.core.ssa DEBUG on stmt: $242load_deref.7 = freevar(pre_return_func: ) -13:52:49,786 numba.core.ssa DEBUG on stmt: $250call.9 = call $242load_deref.7(v, func=$242load_deref.7, args=[Var(v, arraymath.py:581)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,786 numba.core.ssa DEBUG on stmt: bool260 = global(bool: ) -13:52:49,786 numba.core.ssa DEBUG on stmt: $260pred = call bool260($250call.9, func=bool260, args=(Var($250call.9, arraymath.py:582),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,787 numba.core.ssa DEBUG on stmt: branch $260pred, 262, 270 -13:52:49,787 numba.core.ssa DEBUG ==== SSA block rewrite pass on 262 -13:52:49,787 numba.core.ssa DEBUG Running -13:52:49,787 numba.core.ssa DEBUG on stmt: $268return_value.2 = cast(value=v) -13:52:49,787 numba.core.ssa DEBUG on stmt: return $268return_value.2 -13:52:49,787 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:49,787 numba.core.ssa DEBUG Running -13:52:49,787 numba.core.ssa DEBUG on stmt: $272load_deref.2 = freevar(comparator: ) -13:52:49,787 numba.core.ssa DEBUG on stmt: $282call.5 = call $272load_deref.2(v, max_value, func=$272load_deref.2, args=[Var(v, arraymath.py:581), Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,787 numba.core.ssa DEBUG on stmt: bool292 = global(bool: ) -13:52:49,787 numba.core.ssa DEBUG on stmt: $292pred = call bool292($282call.5, func=bool292, args=(Var($282call.5, arraymath.py:584),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,787 numba.core.ssa DEBUG on stmt: branch $292pred, 294, 298 -13:52:49,787 numba.core.ssa DEBUG ==== SSA block rewrite pass on 294 -13:52:49,787 numba.core.ssa DEBUG Running -13:52:49,787 numba.core.ssa DEBUG on stmt: max_value = v -13:52:49,787 numba.core.ssa DEBUG replaced with: max_value.1 = v -13:52:49,787 numba.core.ssa DEBUG on stmt: jump 298 -13:52:49,787 numba.core.ssa DEBUG ==== SSA block rewrite pass on 298 -13:52:49,787 numba.core.ssa DEBUG Running -13:52:49,787 numba.core.ssa DEBUG on stmt: jump 196 -13:52:49,787 numba.core.ssa DEBUG ==== SSA block rewrite pass on 300 -13:52:49,787 numba.core.ssa DEBUG Running -13:52:49,787 numba.core.ssa DEBUG on stmt: $302return_value.1 = cast(value=max_value) -13:52:49,788 numba.core.ssa DEBUG on stmt: return $302return_value.1 -13:52:49,788 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {58: [], - 294: []}) -13:52:49,788 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,788 numba.core.ssa DEBUG Running -13:52:49,788 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:49,788 numba.core.ssa DEBUG on stmt: $8load_attr.1 = getattr(value=a, attr=size) -13:52:49,788 numba.core.ssa DEBUG on stmt: $const18.2 = const(int, 0) -13:52:49,788 numba.core.ssa DEBUG on stmt: $20compare_op.3 = $8load_attr.1 == $const18.2 -13:52:49,788 numba.core.ssa DEBUG on stmt: bool26 = global(bool: ) -13:52:49,788 numba.core.ssa DEBUG on stmt: $26pred = call bool26($20compare_op.3, func=bool26, args=(Var($20compare_op.3, arraymath.py:571),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,788 numba.core.ssa DEBUG on stmt: branch $26pred, 28, 58 -13:52:49,788 numba.core.ssa DEBUG ==== SSA block rewrite pass on 28 -13:52:49,788 numba.core.ssa DEBUG Running -13:52:49,788 numba.core.ssa DEBUG on stmt: $28load_global.0 = global(ValueError: ) -13:52:49,788 numba.core.ssa DEBUG on stmt: $const40.2 = const(str, zero-size array to reduction operation maximum which has no identity) -13:52:49,788 numba.core.ssa DEBUG on stmt: $46call.3 = call $28load_global.0($const40.2, func=$28load_global.0, args=[Var($const40.2, arraymath.py:572)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,788 numba.core.ssa DEBUG on stmt: raise ('zero-size array to reduction operation maximum which has no identity') -13:52:49,788 numba.core.ssa DEBUG ==== SSA block rewrite pass on 58 -13:52:49,788 numba.core.ssa DEBUG Running -13:52:49,788 numba.core.ssa DEBUG on stmt: $58load_global.0 = global(np: ) -13:52:49,788 numba.core.ssa DEBUG on stmt: $70load_attr.2 = getattr(value=$58load_global.0, attr=nditer) -13:52:49,788 numba.core.ssa DEBUG on stmt: it = call $70load_attr.2(a, func=$70load_attr.2, args=[Var(a, arraymath.py:570)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,789 numba.core.ssa DEBUG on stmt: $98load_global.5 = global(next: ) -13:52:49,789 numba.core.ssa DEBUG on stmt: $116call.8 = call $98load_global.5(it, func=$98load_global.5, args=[Var(it, arraymath.py:575)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,789 numba.core.ssa DEBUG on stmt: $126load_method.10 = getattr(value=$116call.8, attr=take) -13:52:49,789 numba.core.ssa DEBUG on stmt: $const148.11 = const(int, 0) -13:52:49,789 numba.core.ssa DEBUG on stmt: max_value = call $126load_method.10($const148.11, func=$126load_method.10, args=[Var($const148.11, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,789 numba.core.ssa DEBUG on stmt: $168load_deref.14 = freevar(pre_return_func: ) -13:52:49,789 numba.core.ssa DEBUG on stmt: $176call.16 = call $168load_deref.14(max_value, func=$168load_deref.14, args=[Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,789 numba.core.ssa DEBUG find_def var='max_value' stmt=$176call.16 = call $168load_deref.14(max_value, func=$168load_deref.14, args=[Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,789 numba.core.ssa DEBUG on stmt: bool186 = global(bool: ) -13:52:49,789 numba.core.ssa DEBUG on stmt: $186pred = call bool186($176call.16, func=bool186, args=(Var($176call.16, arraymath.py:577),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,789 numba.core.ssa DEBUG on stmt: branch $186pred, 188, 192 -13:52:49,789 numba.core.ssa DEBUG ==== SSA block rewrite pass on 188 -13:52:49,789 numba.core.ssa DEBUG Running -13:52:49,789 numba.core.ssa DEBUG on stmt: $190return_value.1 = cast(value=max_value) -13:52:49,789 numba.core.ssa DEBUG find_def var='max_value' stmt=$190return_value.1 = cast(value=max_value) -13:52:49,789 numba.core.ssa DEBUG find_def_from_top label 188 -13:52:49,789 numba.core.ssa DEBUG idom 58 from label 188 -13:52:49,789 numba.core.ssa DEBUG find_def_from_bottom label 58 -13:52:49,789 numba.core.ssa DEBUG on stmt: return $190return_value.1 -13:52:49,789 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,789 numba.core.ssa DEBUG Running -13:52:49,789 numba.core.ssa DEBUG on stmt: $194get_iter.1 = getiter(value=it) -13:52:49,789 numba.core.ssa DEBUG on stmt: $phi196.0 = $194get_iter.1 -13:52:49,790 numba.core.ssa DEBUG on stmt: jump 196 -13:52:49,790 numba.core.ssa DEBUG ==== SSA block rewrite pass on 196 -13:52:49,790 numba.core.ssa DEBUG Running -13:52:49,790 numba.core.ssa DEBUG on stmt: $196for_iter.1 = iternext(value=$phi196.0) -13:52:49,790 numba.core.ssa DEBUG on stmt: $196for_iter.2 = pair_first(value=$196for_iter.1) -13:52:49,790 numba.core.ssa DEBUG on stmt: $196for_iter.3 = pair_second(value=$196for_iter.1) -13:52:49,790 numba.core.ssa DEBUG on stmt: $phi198.1 = $196for_iter.2 -13:52:49,790 numba.core.ssa DEBUG on stmt: branch $196for_iter.3, 198, 300 -13:52:49,790 numba.core.ssa DEBUG ==== SSA block rewrite pass on 198 -13:52:49,790 numba.core.ssa DEBUG Running -13:52:49,790 numba.core.ssa DEBUG on stmt: view = $phi198.1 -13:52:49,790 numba.core.ssa DEBUG on stmt: $202load_method.4 = getattr(value=view, attr=item) -13:52:49,790 numba.core.ssa DEBUG on stmt: v = call $202load_method.4(func=$202load_method.4, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,790 numba.core.ssa DEBUG on stmt: $242load_deref.7 = freevar(pre_return_func: ) -13:52:49,790 numba.core.ssa DEBUG on stmt: $250call.9 = call $242load_deref.7(v, func=$242load_deref.7, args=[Var(v, arraymath.py:581)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,790 numba.core.ssa DEBUG on stmt: bool260 = global(bool: ) -13:52:49,790 numba.core.ssa DEBUG on stmt: $260pred = call bool260($250call.9, func=bool260, args=(Var($250call.9, arraymath.py:582),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,790 numba.core.ssa DEBUG on stmt: branch $260pred, 262, 270 -13:52:49,790 numba.core.ssa DEBUG ==== SSA block rewrite pass on 262 -13:52:49,790 numba.core.ssa DEBUG Running -13:52:49,790 numba.core.ssa DEBUG on stmt: $268return_value.2 = cast(value=v) -13:52:49,790 numba.core.ssa DEBUG on stmt: return $268return_value.2 -13:52:49,790 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:49,791 numba.core.ssa DEBUG Running -13:52:49,791 numba.core.ssa DEBUG on stmt: $272load_deref.2 = freevar(comparator: ) -13:52:49,791 numba.core.ssa DEBUG on stmt: $282call.5 = call $272load_deref.2(v, max_value, func=$272load_deref.2, args=[Var(v, arraymath.py:581), Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,791 numba.core.ssa DEBUG find_def var='max_value' stmt=$282call.5 = call $272load_deref.2(v, max_value, func=$272load_deref.2, args=[Var(v, arraymath.py:581), Var(max_value, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,791 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:49,791 numba.core.ssa DEBUG idom 198 from label 270 -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 198 -13:52:49,791 numba.core.ssa DEBUG find_def_from_top label 198 -13:52:49,791 numba.core.ssa DEBUG idom 196 from label 198 -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 196 -13:52:49,791 numba.core.ssa DEBUG find_def_from_top label 196 -13:52:49,791 numba.core.ssa DEBUG insert phi node max_value.2 = phi(incoming_values=[], incoming_blocks=[]) at 196 -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 192 -13:52:49,791 numba.core.ssa DEBUG find_def_from_top label 192 -13:52:49,791 numba.core.ssa DEBUG idom 58 from label 192 -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 58 -13:52:49,791 numba.core.ssa DEBUG incoming_def max_value = call $126load_method.10($const148.11, func=$126load_method.10, args=[Var($const148.11, arraymath.py:576)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 298 -13:52:49,791 numba.core.ssa DEBUG find_def_from_top label 298 -13:52:49,791 numba.core.ssa DEBUG insert phi node max_value.3 = phi(incoming_values=[], incoming_blocks=[]) at 298 -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 294 -13:52:49,791 numba.core.ssa DEBUG incoming_def max_value.1 = v -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:49,791 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:49,791 numba.core.ssa DEBUG idom 198 from label 270 -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 198 -13:52:49,791 numba.core.ssa DEBUG find_def_from_top label 198 -13:52:49,791 numba.core.ssa DEBUG idom 196 from label 198 -13:52:49,791 numba.core.ssa DEBUG find_def_from_bottom label 196 -13:52:49,791 numba.core.ssa DEBUG incoming_def max_value.2 = phi(incoming_values=[Var(max_value, arraymath.py:576)], incoming_blocks=[192]) -13:52:49,791 numba.core.ssa DEBUG incoming_def max_value.3 = phi(incoming_values=[Var(max_value.1, arraymath.py:585), Var(max_value.2, arraymath.py:584)], incoming_blocks=[294, 270]) -13:52:49,792 numba.core.ssa DEBUG replaced with: $282call.5 = call $272load_deref.2(v, max_value.2, func=$272load_deref.2, args=[Var(v, arraymath.py:581), Var(max_value.2, arraymath.py:584)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,792 numba.core.ssa DEBUG on stmt: bool292 = global(bool: ) -13:52:49,792 numba.core.ssa DEBUG on stmt: $292pred = call bool292($282call.5, func=bool292, args=(Var($282call.5, arraymath.py:584),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,792 numba.core.ssa DEBUG on stmt: branch $292pred, 294, 298 -13:52:49,792 numba.core.ssa DEBUG ==== SSA block rewrite pass on 294 -13:52:49,792 numba.core.ssa DEBUG Running -13:52:49,792 numba.core.ssa DEBUG on stmt: max_value.1 = v -13:52:49,792 numba.core.ssa DEBUG on stmt: jump 298 -13:52:49,792 numba.core.ssa DEBUG ==== SSA block rewrite pass on 298 -13:52:49,792 numba.core.ssa DEBUG Running -13:52:49,792 numba.core.ssa DEBUG on stmt: jump 196 -13:52:49,792 numba.core.ssa DEBUG ==== SSA block rewrite pass on 300 -13:52:49,792 numba.core.ssa DEBUG Running -13:52:49,792 numba.core.ssa DEBUG on stmt: $302return_value.1 = cast(value=max_value) -13:52:49,792 numba.core.ssa DEBUG find_def var='max_value' stmt=$302return_value.1 = cast(value=max_value) -13:52:49,792 numba.core.ssa DEBUG find_def_from_top label 300 -13:52:49,792 numba.core.ssa DEBUG idom 196 from label 300 -13:52:49,792 numba.core.ssa DEBUG find_def_from_bottom label 196 -13:52:49,792 numba.core.ssa DEBUG replaced with: $302return_value.1 = cast(value=max_value.2) -13:52:49,792 numba.core.ssa DEBUG on stmt: return $302return_value.1 -13:52:49,803 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4691) - 2 RESUME(arg=0, lineno=4691) - 4 LOAD_FAST(arg=1, lineno=4692) - 6 LOAD_FAST(arg=0, lineno=4692) - 8 LOAD_ATTR(arg=0, lineno=4692) - 18 LOAD_CONST(arg=1, lineno=4692) - 20 BINARY_OP(arg=10, lineno=4692) - 24 COMPARE_OP(arg=4, lineno=4692) - 30 POP_JUMP_FORWARD_IF_TRUE(arg=12, lineno=4692) - 32 LOAD_FAST(arg=1, lineno=4692) - 34 LOAD_FAST(arg=0, lineno=4692) - 36 LOAD_ATTR(arg=0, lineno=4692) - 46 UNARY_NEGATIVE(arg=None, lineno=4692) - 48 COMPARE_OP(arg=0, lineno=4692) - 54 POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=4692) -> 56 LOAD_GLOBAL(arg=3, lineno=4693) - 68 LOAD_CONST(arg=2, lineno=4693) - 70 PRECALL(arg=1, lineno=4693) - 74 CALL(arg=1, lineno=4693) - 84 RAISE_VARARGS(arg=1, lineno=4693) -> 86 LOAD_FAST(arg=0, lineno=4694) - 88 LOAD_METHOD(arg=2, lineno=4694) - 110 PRECALL(arg=0, lineno=4694) - 114 CALL(arg=0, lineno=4694) - 124 LOAD_FAST(arg=1, lineno=4694) - 126 BINARY_SUBSCR(arg=None, lineno=4694) - 136 RETURN_VALUE(arg=None, lineno=4694) -13:52:49,803 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,803 numba.core.byteflow DEBUG stack: [] -13:52:49,803 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,803 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4691) -13:52:49,803 numba.core.byteflow DEBUG stack [] -13:52:49,803 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=4691) -13:52:49,803 numba.core.byteflow DEBUG stack [] -13:52:49,803 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=1, lineno=4692) -13:52:49,803 numba.core.byteflow DEBUG stack [] -13:52:49,803 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=0, lineno=4692) -13:52:49,803 numba.core.byteflow DEBUG stack ['$indices4.0'] -13:52:49,803 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_ATTR(arg=0, lineno=4692) -13:52:49,803 numba.core.byteflow DEBUG stack ['$indices4.0', '$a6.1'] -13:52:49,803 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$indices4.0', '$8load_attr.2'] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=20, inst=BINARY_OP(arg=10, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$indices4.0', '$8load_attr.2', '$const18.3'] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=24, inst=COMPARE_OP(arg=4, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$indices4.0', '$binop_sub20.4'] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=30, inst=POP_JUMP_FORWARD_IF_TRUE(arg=12, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$24compare_op.5'] -13:52:49,804 numba.core.byteflow DEBUG end state. edges=[Edge(pc=32, stack=(), blockstack=(), npush=0), Edge(pc=56, stack=(), blockstack=(), npush=0)] -13:52:49,804 numba.core.byteflow DEBUG pending: deque([State(pc_initial=32 nstack_initial=0), State(pc_initial=56 nstack_initial=0)]) -13:52:49,804 numba.core.byteflow DEBUG stack: [] -13:52:49,804 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=32 nstack_initial=0) -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_FAST(arg=1, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack [] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=34, inst=LOAD_FAST(arg=0, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$indices32.0'] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=36, inst=LOAD_ATTR(arg=0, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$indices32.0', '$a34.1'] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=46, inst=UNARY_NEGATIVE(arg=None, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$indices32.0', '$36load_attr.2'] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=48, inst=COMPARE_OP(arg=0, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$indices32.0', '$46unary_negative.3'] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=54, inst=POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=4692) -13:52:49,804 numba.core.byteflow DEBUG stack ['$48compare_op.4'] -13:52:49,804 numba.core.byteflow DEBUG end state. edges=[Edge(pc=56, stack=(), blockstack=(), npush=0), Edge(pc=86, stack=(), blockstack=(), npush=0)] -13:52:49,804 numba.core.byteflow DEBUG pending: deque([State(pc_initial=56 nstack_initial=0), State(pc_initial=56 nstack_initial=0), State(pc_initial=86 nstack_initial=0)]) -13:52:49,804 numba.core.byteflow DEBUG stack: [] -13:52:49,804 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=56 nstack_initial=0) -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_GLOBAL(arg=3, lineno=4693) -13:52:49,804 numba.core.byteflow DEBUG stack [] -13:52:49,804 numba.core.byteflow DEBUG dispatch pc=68, inst=LOAD_CONST(arg=2, lineno=4693) -13:52:49,805 numba.core.byteflow DEBUG stack ['$null$56.1', '$56load_global.0'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=70, inst=PRECALL(arg=1, lineno=4693) -13:52:49,805 numba.core.byteflow DEBUG stack ['$null$56.1', '$56load_global.0', '$const68.2'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=74, inst=CALL(arg=1, lineno=4693) -13:52:49,805 numba.core.byteflow DEBUG stack ['$null$56.1', '$56load_global.0', '$const68.2'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=84, inst=RAISE_VARARGS(arg=1, lineno=4693) -13:52:49,805 numba.core.byteflow DEBUG stack ['$74call.3'] -13:52:49,805 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,805 numba.core.byteflow DEBUG pending: deque([State(pc_initial=56 nstack_initial=0), State(pc_initial=86 nstack_initial=0)]) -13:52:49,805 numba.core.byteflow DEBUG pending: deque([State(pc_initial=86 nstack_initial=0)]) -13:52:49,805 numba.core.byteflow DEBUG stack: [] -13:52:49,805 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=86 nstack_initial=0) -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=86, inst=LOAD_FAST(arg=0, lineno=4694) -13:52:49,805 numba.core.byteflow DEBUG stack [] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=88, inst=LOAD_METHOD(arg=2, lineno=4694) -13:52:49,805 numba.core.byteflow DEBUG stack ['$a86.0'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=110, inst=PRECALL(arg=0, lineno=4694) -13:52:49,805 numba.core.byteflow DEBUG stack ['$null$88.1', '$88load_method.2'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=114, inst=CALL(arg=0, lineno=4694) -13:52:49,805 numba.core.byteflow DEBUG stack ['$null$88.1', '$88load_method.2'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_FAST(arg=1, lineno=4694) -13:52:49,805 numba.core.byteflow DEBUG stack ['$114call.3'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=126, inst=BINARY_SUBSCR(arg=None, lineno=4694) -13:52:49,805 numba.core.byteflow DEBUG stack ['$114call.3', '$indices124.4'] -13:52:49,805 numba.core.byteflow DEBUG dispatch pc=136, inst=RETURN_VALUE(arg=None, lineno=4694) -13:52:49,805 numba.core.byteflow DEBUG stack ['$126binary_subscr.5'] -13:52:49,806 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,806 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,806 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=32 nstack_initial=0): set(), - State(pc_initial=56 nstack_initial=0): set(), - State(pc_initial=86 nstack_initial=0): set()}) -13:52:49,806 numba.core.byteflow DEBUG defmap: {} -13:52:49,806 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:49,806 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:49,806 numba.core.byteflow DEBUG keep phismap: {} -13:52:49,806 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:49,806 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,806 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$indices4.0'}), (6, {'res': '$a6.1'}), (8, {'item': '$a6.1', 'res': '$8load_attr.2'}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$const18.3'}), (20, {'op': '-', 'lhs': '$8load_attr.2', 'rhs': '$const18.3', 'res': '$binop_sub20.4'}), (22, {}), (24, {'lhs': '$indices4.0', 'rhs': '$binop_sub20.4', 'res': '$24compare_op.5'}), (26, {}), (28, {}), (30, {'pred': '$24compare_op.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={32: (), 56: ()}) -13:52:49,806 numba.core.byteflow DEBUG block_infos State(pc_initial=32 nstack_initial=0): -AdaptBlockInfo(insts=((32, {'res': '$indices32.0'}), (34, {'res': '$a34.1'}), (36, {'item': '$a34.1', 'res': '$36load_attr.2'}), (38, {}), (40, {}), (42, {}), (44, {}), (46, {'value': '$36load_attr.2', 'res': '$46unary_negative.3'}), (48, {'lhs': '$indices32.0', 'rhs': '$46unary_negative.3', 'res': '$48compare_op.4'}), (50, {}), (52, {}), (54, {'pred': '$48compare_op.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={56: (), 86: ()}) -13:52:49,806 numba.core.byteflow DEBUG block_infos State(pc_initial=56 nstack_initial=0): -AdaptBlockInfo(insts=((56, {'idx': 1, 'res': '$56load_global.0'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {'res': '$const68.2'}), (70, {}), (72, {}), (74, {'func': '$56load_global.0', 'args': ['$const68.2'], 'kw_names': None, 'res': '$74call.3'}), (76, {}), (78, {}), (80, {}), (82, {}), (84, {'exc': '$74call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,806 numba.core.byteflow DEBUG block_infos State(pc_initial=86 nstack_initial=0): -AdaptBlockInfo(insts=((86, {'res': '$a86.0'}), (88, {'item': '$a86.0', 'res': '$88load_method.2'}), (90, {}), (92, {}), (94, {}), (96, {}), (98, {}), (100, {}), (102, {}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {}), (114, {'func': '$88load_method.2', 'args': [], 'kw_names': None, 'res': '$114call.3'}), (116, {}), (118, {}), (120, {}), (122, {}), (124, {'res': '$indices124.4'}), (126, {'index': '$indices124.4', 'target': '$114call.3', 'res': '$126binary_subscr.5'}), (128, {}), (130, {}), (132, {}), (134, {}), (136, {'retval': '$126binary_subscr.5', 'castval': '$136return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,807 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - indices = arg(1, name=indices) ['indices'] - $8load_attr.2 = getattr(value=a, attr=size) ['$8load_attr.2', 'a'] - $const18.3 = const(int, 1) ['$const18.3'] - $binop_sub20.4 = $8load_attr.2 - $const18.3 ['$8load_attr.2', '$binop_sub20.4', '$const18.3'] - $24compare_op.5 = indices > $binop_sub20.4 ['$24compare_op.5', '$binop_sub20.4', 'indices'] - bool30 = global(bool: ) ['bool30'] - $30pred = call bool30($24compare_op.5, func=bool30, args=(Var($24compare_op.5, arrayobj.py:4692),), kws=(), vararg=None, varkwarg=None, target=None) ['$24compare_op.5', '$30pred', 'bool30'] - branch $30pred, 56, 32 ['$30pred'] -label 32: - $36load_attr.2 = getattr(value=a, attr=size) ['$36load_attr.2', 'a'] - $46unary_negative.3 = unary(fn=, value=$36load_attr.2) ['$36load_attr.2', '$46unary_negative.3'] - $48compare_op.4 = indices < $46unary_negative.3 ['$46unary_negative.3', '$48compare_op.4', 'indices'] - bool54 = global(bool: ) ['bool54'] - $54pred = call bool54($48compare_op.4, func=bool54, args=(Var($48compare_op.4, arrayobj.py:4692),), kws=(), vararg=None, varkwarg=None, target=None) ['$48compare_op.4', '$54pred', 'bool54'] - branch $54pred, 56, 86 ['$54pred'] -label 56: - $56load_global.0 = global(IndexError: ) ['$56load_global.0'] - $const68.2 = const(str, Index out of bounds) ['$const68.2'] - $74call.3 = call $56load_global.0($const68.2, func=$56load_global.0, args=[Var($const68.2, arrayobj.py:4693)], kws=(), vararg=None, varkwarg=None, target=None) ['$56load_global.0', '$74call.3', '$const68.2'] - raise $74call.3 ['$74call.3'] -label 86: - $88load_method.2 = getattr(value=a, attr=ravel) ['$88load_method.2', 'a'] - $114call.3 = call $88load_method.2(func=$88load_method.2, args=[], kws=(), vararg=None, varkwarg=None, target=None) ['$114call.3', '$88load_method.2'] - $126binary_subscr.5 = getitem(value=$114call.3, index=indices, fn=) ['$114call.3', '$126binary_subscr.5', 'indices'] - $136return_value.6 = cast(value=$126binary_subscr.5) ['$126binary_subscr.5', '$136return_value.6'] - return $136return_value.6 ['$136return_value.6'] - -13:52:49,816 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,816 numba.core.ssa DEBUG Running -13:52:49,816 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:49,816 numba.core.ssa DEBUG on stmt: indices = arg(1, name=indices) -13:52:49,816 numba.core.ssa DEBUG on stmt: $8load_attr.2 = getattr(value=a, attr=size) -13:52:49,816 numba.core.ssa DEBUG on stmt: $const18.3 = const(int, 1) -13:52:49,817 numba.core.ssa DEBUG on stmt: $binop_sub20.4 = $8load_attr.2 - $const18.3 -13:52:49,817 numba.core.ssa DEBUG on stmt: $24compare_op.5 = indices > $binop_sub20.4 -13:52:49,817 numba.core.ssa DEBUG on stmt: bool30 = global(bool: ) -13:52:49,817 numba.core.ssa DEBUG on stmt: $30pred = call bool30($24compare_op.5, func=bool30, args=(Var($24compare_op.5, arrayobj.py:4692),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,817 numba.core.ssa DEBUG on stmt: branch $30pred, 56, 32 -13:52:49,817 numba.core.ssa DEBUG ==== SSA block analysis pass on 32 -13:52:49,817 numba.core.ssa DEBUG Running -13:52:49,817 numba.core.ssa DEBUG on stmt: $36load_attr.2 = getattr(value=a, attr=size) -13:52:49,817 numba.core.ssa DEBUG on stmt: $46unary_negative.3 = unary(fn=, value=$36load_attr.2) -13:52:49,817 numba.core.ssa DEBUG on stmt: $48compare_op.4 = indices < $46unary_negative.3 -13:52:49,817 numba.core.ssa DEBUG on stmt: bool54 = global(bool: ) -13:52:49,817 numba.core.ssa DEBUG on stmt: $54pred = call bool54($48compare_op.4, func=bool54, args=(Var($48compare_op.4, arrayobj.py:4692),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,817 numba.core.ssa DEBUG on stmt: branch $54pred, 56, 86 -13:52:49,817 numba.core.ssa DEBUG ==== SSA block analysis pass on 56 -13:52:49,817 numba.core.ssa DEBUG Running -13:52:49,817 numba.core.ssa DEBUG on stmt: $56load_global.0 = global(IndexError: ) -13:52:49,817 numba.core.ssa DEBUG on stmt: $const68.2 = const(str, Index out of bounds) -13:52:49,817 numba.core.ssa DEBUG on stmt: $74call.3 = call $56load_global.0($const68.2, func=$56load_global.0, args=[Var($const68.2, arrayobj.py:4693)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,817 numba.core.ssa DEBUG on stmt: raise ('Index out of bounds') -13:52:49,817 numba.core.ssa DEBUG ==== SSA block analysis pass on 86 -13:52:49,817 numba.core.ssa DEBUG Running -13:52:49,817 numba.core.ssa DEBUG on stmt: $88load_method.2 = getattr(value=a, attr=ravel) -13:52:49,817 numba.core.ssa DEBUG on stmt: $114call.3 = call $88load_method.2(func=$88load_method.2, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,817 numba.core.ssa DEBUG on stmt: $126binary_subscr.5 = getitem(value=$114call.3, index=indices, fn=) -13:52:49,817 numba.core.ssa DEBUG on stmt: $136return_value.6 = cast(value=$126binary_subscr.5) -13:52:49,817 numba.core.ssa DEBUG on stmt: return $136return_value.6 -13:52:49,818 numba.core.ssa DEBUG defs defaultdict(, - {'$114call.3': [(, - 86)], - '$126binary_subscr.5': [(, - 86)], - '$136return_value.6': [(, - 86)], - '$24compare_op.5': [(, - 0)], - '$30pred': [(, - 0)], - '$36load_attr.2': [(, - 32)], - '$46unary_negative.3': [(, - 32)], - '$48compare_op.4': [(, - 32)], - '$54pred': [(, - 32)], - '$56load_global.0': [(, - 56)], - '$74call.3': [(, - 56)], - '$88load_method.2': [(, - 86)], - '$8load_attr.2': [(, - 0)], - '$binop_sub20.4': [(, - 0)], - '$const18.3': [(, - 0)], - '$const68.2': [(, - 56)], - 'a': [(, 0)], - 'bool30': [(, - 0)], - 'bool54': [(, - 32)], - 'indices': [(, - 0)]}) -13:52:49,818 numba.core.ssa DEBUG SSA violators -13:52:49,837 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=2230) - 2 RESUME(arg=0, lineno=2230) - 4 LOAD_FAST(arg=0, lineno=2232) - 6 LOAD_METHOD(arg=0, lineno=2232) - 28 LOAD_FAST(arg=0, lineno=2232) - 30 LOAD_ATTR(arg=1, lineno=2232) - 40 PRECALL(arg=1, lineno=2232) - 44 CALL(arg=1, lineno=2232) - 54 RETURN_VALUE(arg=None, lineno=2232) -13:52:49,837 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,837 numba.core.byteflow DEBUG stack: [] -13:52:49,837 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,837 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=2230) -13:52:49,837 numba.core.byteflow DEBUG stack [] -13:52:49,837 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=2230) -13:52:49,837 numba.core.byteflow DEBUG stack [] -13:52:49,838 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=2232) -13:52:49,838 numba.core.byteflow DEBUG stack [] -13:52:49,838 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_METHOD(arg=0, lineno=2232) -13:52:49,838 numba.core.byteflow DEBUG stack ['$ary4.0'] -13:52:49,838 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_FAST(arg=0, lineno=2232) -13:52:49,838 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_method.2'] -13:52:49,838 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_ATTR(arg=1, lineno=2232) -13:52:49,838 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_method.2', '$ary28.3'] -13:52:49,838 numba.core.byteflow DEBUG dispatch pc=40, inst=PRECALL(arg=1, lineno=2232) -13:52:49,838 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_method.2', '$30load_attr.4'] -13:52:49,838 numba.core.byteflow DEBUG dispatch pc=44, inst=CALL(arg=1, lineno=2232) -13:52:49,838 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_method.2', '$30load_attr.4'] -13:52:49,838 numba.core.byteflow DEBUG dispatch pc=54, inst=RETURN_VALUE(arg=None, lineno=2232) -13:52:49,838 numba.core.byteflow DEBUG stack ['$44call.5'] -13:52:49,838 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,838 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,838 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:49,838 numba.core.byteflow DEBUG defmap: {} -13:52:49,838 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:49,838 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:49,838 numba.core.byteflow DEBUG keep phismap: {} -13:52:49,838 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:49,838 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,838 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$ary4.0'}), (6, {'item': '$ary4.0', 'res': '$6load_method.2'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {}), (28, {'res': '$ary28.3'}), (30, {'item': '$ary28.3', 'res': '$30load_attr.4'}), (32, {}), (34, {}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {'func': '$6load_method.2', 'args': ['$30load_attr.4'], 'kw_names': None, 'res': '$44call.5'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {'retval': '$44call.5', 'castval': '$54return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,839 numba.core.interpreter DEBUG label 0: - ary = arg(0, name=ary) ['ary'] - $6load_method.2 = getattr(value=ary, attr=reshape) ['$6load_method.2', 'ary'] - $30load_attr.4 = getattr(value=ary, attr=size) ['$30load_attr.4', 'ary'] - $44call.5 = call $6load_method.2($30load_attr.4, func=$6load_method.2, args=[Var($30load_attr.4, arrayobj.py:2232)], kws=(), vararg=None, varkwarg=None, target=None) ['$30load_attr.4', '$44call.5', '$6load_method.2'] - $54return_value.6 = cast(value=$44call.5) ['$44call.5', '$54return_value.6'] - return $54return_value.6 ['$54return_value.6'] - -13:52:49,845 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,845 numba.core.ssa DEBUG Running -13:52:49,845 numba.core.ssa DEBUG on stmt: ary = arg(0, name=ary) -13:52:49,845 numba.core.ssa DEBUG on stmt: $6load_method.2 = getattr(value=ary, attr=reshape) -13:52:49,845 numba.core.ssa DEBUG on stmt: $30load_attr.4 = getattr(value=ary, attr=size) -13:52:49,845 numba.core.ssa DEBUG on stmt: $44call.5 = call $6load_method.2($30load_attr.4, func=$6load_method.2, args=[Var($30load_attr.4, arrayobj.py:2232)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,845 numba.core.ssa DEBUG on stmt: $54return_value.6 = cast(value=$44call.5) -13:52:49,845 numba.core.ssa DEBUG on stmt: return $54return_value.6 -13:52:49,845 numba.core.ssa DEBUG defs defaultdict(, - {'$30load_attr.4': [(, - 0)], - '$44call.5': [(, - 0)], - '$54return_value.6': [(, - 0)], - '$6load_method.2': [(, - 0)], - 'ary': [(, 0)]}) -13:52:49,845 numba.core.ssa DEBUG SSA violators -13:52:49,852 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=2046) - 2 RESUME(arg=0, lineno=2046) - 4 LOAD_CONST(arg=1, lineno=2047) - 6 STORE_FAST(arg=2, lineno=2047) - 8 LOAD_CONST(arg=2, lineno=2048) - 10 STORE_FAST(arg=3, lineno=2048) - 12 LOAD_GLOBAL(arg=1, lineno=2049) - 24 LOAD_FAST(arg=1, lineno=2049) - 26 PRECALL(arg=1, lineno=2049) - 30 CALL(arg=1, lineno=2049) - 40 GET_ITER(arg=None, lineno=2049) -> 42 FOR_ITER(arg=24, lineno=2049) - 44 UNPACK_SEQUENCE(arg=2, lineno=2049) - 48 STORE_FAST(arg=4, lineno=2049) - 50 STORE_FAST(arg=5, lineno=2049) - 52 LOAD_FAST(arg=5, lineno=2050) - 54 LOAD_CONST(arg=1, lineno=2050) - 56 COMPARE_OP(arg=0, lineno=2050) - 62 POP_JUMP_FORWARD_IF_FALSE(arg=8, lineno=2050) - 64 LOAD_FAST(arg=2, lineno=2051) - 66 LOAD_CONST(arg=2, lineno=2051) - 68 BINARY_OP(arg=13, lineno=2051) - 72 STORE_FAST(arg=2, lineno=2051) - 74 LOAD_FAST(arg=4, lineno=2052) - 76 STORE_FAST(arg=6, lineno=2052) - 78 JUMP_BACKWARD(arg=19, lineno=2052) -> 80 LOAD_FAST(arg=3, lineno=2054) - 82 LOAD_FAST(arg=5, lineno=2054) - 84 BINARY_OP(arg=18, lineno=2054) - 88 STORE_FAST(arg=3, lineno=2054) - 90 JUMP_BACKWARD(arg=25, lineno=2054) -> 92 LOAD_FAST(arg=2, lineno=2056) - 94 LOAD_CONST(arg=1, lineno=2056) - 96 COMPARE_OP(arg=2, lineno=2056) - 102 POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=2056) - 104 LOAD_FAST(arg=0, lineno=2057) - 106 LOAD_FAST(arg=3, lineno=2057) - 108 COMPARE_OP(arg=3, lineno=2057) - 114 POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=2057) - 116 LOAD_GLOBAL(arg=3, lineno=2058) - 128 LOAD_CONST(arg=3, lineno=2058) - 130 PRECALL(arg=1, lineno=2058) - 134 CALL(arg=1, lineno=2058) - 144 RAISE_VARARGS(arg=1, lineno=2058) -> 146 LOAD_CONST(arg=0, lineno=2057) - 148 RETURN_VALUE(arg=None, lineno=2057) -> 150 LOAD_FAST(arg=2, lineno=2060) - 152 LOAD_CONST(arg=2, lineno=2060) - 154 COMPARE_OP(arg=2, lineno=2060) - 160 POP_JUMP_FORWARD_IF_FALSE(arg=53, lineno=2060) - 162 LOAD_FAST(arg=3, lineno=2062) - 164 LOAD_CONST(arg=1, lineno=2062) - 166 COMPARE_OP(arg=2, lineno=2062) - 172 POP_JUMP_FORWARD_IF_FALSE(arg=9, lineno=2062) - 174 LOAD_CONST(arg=1, lineno=2063) - 176 STORE_FAST(arg=7, lineno=2063) - 178 LOAD_FAST(arg=0, lineno=2064) - 180 LOAD_CONST(arg=1, lineno=2064) - 182 COMPARE_OP(arg=2, lineno=2064) - 188 STORE_FAST(arg=8, lineno=2064) - 190 JUMP_FORWARD(arg=14, lineno=2064) -> 192 LOAD_FAST(arg=0, lineno=2066) - 194 LOAD_FAST(arg=3, lineno=2066) - 196 BINARY_OP(arg=2, lineno=2066) - 200 STORE_FAST(arg=7, lineno=2066) - 202 LOAD_FAST(arg=0, lineno=2067) - 204 LOAD_FAST(arg=3, lineno=2067) - 206 BINARY_OP(arg=6, lineno=2067) - 210 LOAD_CONST(arg=1, lineno=2067) - 212 COMPARE_OP(arg=2, lineno=2067) - 218 STORE_FAST(arg=8, lineno=2067) -> 220 LOAD_FAST(arg=8, lineno=2068) - 222 POP_JUMP_FORWARD_IF_TRUE(arg=15, lineno=2068) - 224 LOAD_GLOBAL(arg=3, lineno=2069) - 236 LOAD_CONST(arg=3, lineno=2069) - 238 PRECALL(arg=1, lineno=2069) - 242 CALL(arg=1, lineno=2069) - 252 RAISE_VARARGS(arg=1, lineno=2069) -> 254 LOAD_FAST(arg=7, lineno=2070) - 256 LOAD_FAST(arg=1, lineno=2070) - 258 LOAD_FAST(arg=6, lineno=2070) - 260 STORE_SUBSCR(arg=None, lineno=2070) - 264 LOAD_CONST(arg=0, lineno=2070) - 266 RETURN_VALUE(arg=None, lineno=2070) -> 268 LOAD_GLOBAL(arg=3, lineno=2073) - 280 LOAD_CONST(arg=4, lineno=2073) - 282 PRECALL(arg=1, lineno=2073) - 286 CALL(arg=1, lineno=2073) - 296 RAISE_VARARGS(arg=1, lineno=2073) -13:52:49,852 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:49,852 numba.core.byteflow DEBUG stack: [] -13:52:49,852 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:49,852 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=2046) -13:52:49,852 numba.core.byteflow DEBUG stack [] -13:52:49,852 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=2046) -13:52:49,852 numba.core.byteflow DEBUG stack [] -13:52:49,852 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_CONST(arg=1, lineno=2047) -13:52:49,852 numba.core.byteflow DEBUG stack [] -13:52:49,852 numba.core.byteflow DEBUG dispatch pc=6, inst=STORE_FAST(arg=2, lineno=2047) -13:52:49,852 numba.core.byteflow DEBUG stack ['$const4.0'] -13:52:49,852 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_CONST(arg=2, lineno=2048) -13:52:49,853 numba.core.byteflow DEBUG stack [] -13:52:49,853 numba.core.byteflow DEBUG dispatch pc=10, inst=STORE_FAST(arg=3, lineno=2048) -13:52:49,853 numba.core.byteflow DEBUG stack ['$const8.1'] -13:52:49,853 numba.core.byteflow DEBUG dispatch pc=12, inst=LOAD_GLOBAL(arg=1, lineno=2049) -13:52:49,853 numba.core.byteflow DEBUG stack [] -13:52:49,853 numba.core.byteflow DEBUG dispatch pc=24, inst=LOAD_FAST(arg=1, lineno=2049) -13:52:49,853 numba.core.byteflow DEBUG stack ['$null$12.3', '$12load_global.2'] -13:52:49,853 numba.core.byteflow DEBUG dispatch pc=26, inst=PRECALL(arg=1, lineno=2049) -13:52:49,853 numba.core.byteflow DEBUG stack ['$null$12.3', '$12load_global.2', '$shape24.4'] -13:52:49,853 numba.core.byteflow DEBUG dispatch pc=30, inst=CALL(arg=1, lineno=2049) -13:52:49,853 numba.core.byteflow DEBUG stack ['$null$12.3', '$12load_global.2', '$shape24.4'] -13:52:49,853 numba.core.byteflow DEBUG dispatch pc=40, inst=GET_ITER(arg=None, lineno=2049) -13:52:49,853 numba.core.byteflow DEBUG stack ['$30call.5'] -13:52:49,853 numba.core.byteflow DEBUG end state. edges=[Edge(pc=42, stack=('$40get_iter.6',), blockstack=(), npush=0)] -13:52:49,853 numba.core.byteflow DEBUG pending: deque([State(pc_initial=42 nstack_initial=1)]) -13:52:49,853 numba.core.byteflow DEBUG stack: ['$phi42.0'] -13:52:49,853 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=42 nstack_initial=1) -13:52:49,854 numba.core.byteflow DEBUG dispatch pc=42, inst=FOR_ITER(arg=24, lineno=2049) -13:52:49,854 numba.core.byteflow DEBUG stack ['$phi42.0'] -13:52:49,854 numba.core.byteflow DEBUG end state. edges=[Edge(pc=92, stack=(), blockstack=(), npush=0), Edge(pc=44, stack=('$phi42.0', '$42for_iter.2'), blockstack=(), npush=0)] -13:52:49,854 numba.core.byteflow DEBUG pending: deque([State(pc_initial=92 nstack_initial=0), State(pc_initial=44 nstack_initial=2)]) -13:52:49,854 numba.core.byteflow DEBUG stack: [] -13:52:49,854 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=92 nstack_initial=0) -13:52:49,854 numba.core.byteflow DEBUG dispatch pc=92, inst=LOAD_FAST(arg=2, lineno=2056) -13:52:49,854 numba.core.byteflow DEBUG stack [] -13:52:49,854 numba.core.byteflow DEBUG dispatch pc=94, inst=LOAD_CONST(arg=1, lineno=2056) -13:52:49,854 numba.core.byteflow DEBUG stack ['$num_neg_value92.0'] -13:52:49,854 numba.core.byteflow DEBUG dispatch pc=96, inst=COMPARE_OP(arg=2, lineno=2056) -13:52:49,854 numba.core.byteflow DEBUG stack ['$num_neg_value92.0', '$const94.1'] -13:52:49,854 numba.core.byteflow DEBUG dispatch pc=102, inst=POP_JUMP_FORWARD_IF_FALSE(arg=23, lineno=2056) -13:52:49,854 numba.core.byteflow DEBUG stack ['$96compare_op.2'] -13:52:49,854 numba.core.byteflow DEBUG end state. edges=[Edge(pc=104, stack=(), blockstack=(), npush=0), Edge(pc=150, stack=(), blockstack=(), npush=0)] -13:52:49,854 numba.core.byteflow DEBUG pending: deque([State(pc_initial=44 nstack_initial=2), State(pc_initial=104 nstack_initial=0), State(pc_initial=150 nstack_initial=0)]) -13:52:49,854 numba.core.byteflow DEBUG stack: ['$phi44.0', '$phi44.1'] -13:52:49,854 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=44 nstack_initial=2) -13:52:49,854 numba.core.byteflow DEBUG dispatch pc=44, inst=UNPACK_SEQUENCE(arg=2, lineno=2049) -13:52:49,854 numba.core.byteflow DEBUG stack ['$phi44.0', '$phi44.1'] -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=48, inst=STORE_FAST(arg=4, lineno=2049) -13:52:49,855 numba.core.byteflow DEBUG stack ['$phi44.0', '$44unpack_sequence.3', '$44unpack_sequence.2'] -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=50, inst=STORE_FAST(arg=5, lineno=2049) -13:52:49,855 numba.core.byteflow DEBUG stack ['$phi44.0', '$44unpack_sequence.3'] -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=52, inst=LOAD_FAST(arg=5, lineno=2050) -13:52:49,855 numba.core.byteflow DEBUG stack ['$phi44.0'] -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=54, inst=LOAD_CONST(arg=1, lineno=2050) -13:52:49,855 numba.core.byteflow DEBUG stack ['$phi44.0', '$s52.5'] -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=56, inst=COMPARE_OP(arg=0, lineno=2050) -13:52:49,855 numba.core.byteflow DEBUG stack ['$phi44.0', '$s52.5', '$const54.6'] -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=62, inst=POP_JUMP_FORWARD_IF_FALSE(arg=8, lineno=2050) -13:52:49,855 numba.core.byteflow DEBUG stack ['$phi44.0', '$56compare_op.7'] -13:52:49,855 numba.core.byteflow DEBUG end state. edges=[Edge(pc=64, stack=('$phi44.0',), blockstack=(), npush=0), Edge(pc=80, stack=('$phi44.0',), blockstack=(), npush=0)] -13:52:49,855 numba.core.byteflow DEBUG pending: deque([State(pc_initial=104 nstack_initial=0), State(pc_initial=150 nstack_initial=0), State(pc_initial=64 nstack_initial=1), State(pc_initial=80 nstack_initial=1)]) -13:52:49,855 numba.core.byteflow DEBUG stack: [] -13:52:49,855 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=104 nstack_initial=0) -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=104, inst=LOAD_FAST(arg=0, lineno=2057) -13:52:49,855 numba.core.byteflow DEBUG stack [] -13:52:49,855 numba.core.byteflow DEBUG dispatch pc=106, inst=LOAD_FAST(arg=3, lineno=2057) -13:52:49,855 numba.core.byteflow DEBUG stack ['$origsize104.0'] -13:52:49,856 numba.core.byteflow DEBUG dispatch pc=108, inst=COMPARE_OP(arg=3, lineno=2057) -13:52:49,856 numba.core.byteflow DEBUG stack ['$origsize104.0', '$known_size106.1'] -13:52:49,856 numba.core.byteflow DEBUG dispatch pc=114, inst=POP_JUMP_FORWARD_IF_FALSE(arg=15, lineno=2057) -13:52:49,856 numba.core.byteflow DEBUG stack ['$108compare_op.2'] -13:52:49,856 numba.core.byteflow DEBUG end state. edges=[Edge(pc=116, stack=(), blockstack=(), npush=0), Edge(pc=146, stack=(), blockstack=(), npush=0)] -13:52:49,856 numba.core.byteflow DEBUG pending: deque([State(pc_initial=150 nstack_initial=0), State(pc_initial=64 nstack_initial=1), State(pc_initial=80 nstack_initial=1), State(pc_initial=116 nstack_initial=0), State(pc_initial=146 nstack_initial=0)]) -13:52:49,856 numba.core.byteflow DEBUG stack: [] -13:52:49,856 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=150 nstack_initial=0) -13:52:49,856 numba.core.byteflow DEBUG dispatch pc=150, inst=LOAD_FAST(arg=2, lineno=2060) -13:52:49,856 numba.core.byteflow DEBUG stack [] -13:52:49,856 numba.core.byteflow DEBUG dispatch pc=152, inst=LOAD_CONST(arg=2, lineno=2060) -13:52:49,856 numba.core.byteflow DEBUG stack ['$num_neg_value150.0'] -13:52:49,856 numba.core.byteflow DEBUG dispatch pc=154, inst=COMPARE_OP(arg=2, lineno=2060) -13:52:49,856 numba.core.byteflow DEBUG stack ['$num_neg_value150.0', '$const152.1'] -13:52:49,856 numba.core.byteflow DEBUG dispatch pc=160, inst=POP_JUMP_FORWARD_IF_FALSE(arg=53, lineno=2060) -13:52:49,856 numba.core.byteflow DEBUG stack ['$154compare_op.2'] -13:52:49,856 numba.core.byteflow DEBUG end state. edges=[Edge(pc=162, stack=(), blockstack=(), npush=0), Edge(pc=268, stack=(), blockstack=(), npush=0)] -13:52:49,856 numba.core.byteflow DEBUG pending: deque([State(pc_initial=64 nstack_initial=1), State(pc_initial=80 nstack_initial=1), State(pc_initial=116 nstack_initial=0), State(pc_initial=146 nstack_initial=0), State(pc_initial=162 nstack_initial=0), State(pc_initial=268 nstack_initial=0)]) -13:52:49,856 numba.core.byteflow DEBUG stack: ['$phi64.0'] -13:52:49,856 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=64 nstack_initial=1) -13:52:49,856 numba.core.byteflow DEBUG dispatch pc=64, inst=LOAD_FAST(arg=2, lineno=2051) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi64.0'] -13:52:49,857 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_CONST(arg=2, lineno=2051) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi64.0', '$num_neg_value64.1'] -13:52:49,857 numba.core.byteflow DEBUG dispatch pc=68, inst=BINARY_OP(arg=13, lineno=2051) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi64.0', '$num_neg_value64.1', '$const66.2'] -13:52:49,857 numba.core.byteflow DEBUG dispatch pc=72, inst=STORE_FAST(arg=2, lineno=2051) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi64.0', '$binop_iadd68.3'] -13:52:49,857 numba.core.byteflow DEBUG dispatch pc=74, inst=LOAD_FAST(arg=4, lineno=2052) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi64.0'] -13:52:49,857 numba.core.byteflow DEBUG dispatch pc=76, inst=STORE_FAST(arg=6, lineno=2052) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi64.0', '$ax74.4'] -13:52:49,857 numba.core.byteflow DEBUG dispatch pc=78, inst=JUMP_BACKWARD(arg=19, lineno=2052) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi64.0'] -13:52:49,857 numba.core.byteflow DEBUG end state. edges=[Edge(pc=42, stack=('$phi64.0',), blockstack=(), npush=0)] -13:52:49,857 numba.core.byteflow DEBUG pending: deque([State(pc_initial=80 nstack_initial=1), State(pc_initial=116 nstack_initial=0), State(pc_initial=146 nstack_initial=0), State(pc_initial=162 nstack_initial=0), State(pc_initial=268 nstack_initial=0), State(pc_initial=42 nstack_initial=1)]) -13:52:49,857 numba.core.byteflow DEBUG stack: ['$phi80.0'] -13:52:49,857 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=80 nstack_initial=1) -13:52:49,857 numba.core.byteflow DEBUG dispatch pc=80, inst=LOAD_FAST(arg=3, lineno=2054) -13:52:49,857 numba.core.byteflow DEBUG stack ['$phi80.0'] -13:52:49,858 numba.core.byteflow DEBUG dispatch pc=82, inst=LOAD_FAST(arg=5, lineno=2054) -13:52:49,858 numba.core.byteflow DEBUG stack ['$phi80.0', '$known_size80.1'] -13:52:49,858 numba.core.byteflow DEBUG dispatch pc=84, inst=BINARY_OP(arg=18, lineno=2054) -13:52:49,858 numba.core.byteflow DEBUG stack ['$phi80.0', '$known_size80.1', '$s82.2'] -13:52:49,858 numba.core.byteflow DEBUG dispatch pc=88, inst=STORE_FAST(arg=3, lineno=2054) -13:52:49,858 numba.core.byteflow DEBUG stack ['$phi80.0', '$binop_imul84.3'] -13:52:49,858 numba.core.byteflow DEBUG dispatch pc=90, inst=JUMP_BACKWARD(arg=25, lineno=2054) -13:52:49,858 numba.core.byteflow DEBUG stack ['$phi80.0'] -13:52:49,858 numba.core.byteflow DEBUG end state. edges=[Edge(pc=42, stack=('$phi80.0',), blockstack=(), npush=0)] -13:52:49,858 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=0), State(pc_initial=146 nstack_initial=0), State(pc_initial=162 nstack_initial=0), State(pc_initial=268 nstack_initial=0), State(pc_initial=42 nstack_initial=1), State(pc_initial=42 nstack_initial=1)]) -13:52:49,858 numba.core.byteflow DEBUG stack: [] -13:52:49,858 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=116 nstack_initial=0) -13:52:49,858 numba.core.byteflow DEBUG dispatch pc=116, inst=LOAD_GLOBAL(arg=3, lineno=2058) -13:52:49,858 numba.core.byteflow DEBUG stack [] -13:52:49,858 numba.core.byteflow DEBUG dispatch pc=128, inst=LOAD_CONST(arg=3, lineno=2058) -13:52:49,858 numba.core.byteflow DEBUG stack ['$null$116.1', '$116load_global.0'] -13:52:49,858 numba.core.byteflow DEBUG dispatch pc=130, inst=PRECALL(arg=1, lineno=2058) -13:52:49,859 numba.core.byteflow DEBUG stack ['$null$116.1', '$116load_global.0', '$const128.2'] -13:52:49,859 numba.core.byteflow DEBUG dispatch pc=134, inst=CALL(arg=1, lineno=2058) -13:52:49,859 numba.core.byteflow DEBUG stack ['$null$116.1', '$116load_global.0', '$const128.2'] -13:52:49,859 numba.core.byteflow DEBUG dispatch pc=144, inst=RAISE_VARARGS(arg=1, lineno=2058) -13:52:49,859 numba.core.byteflow DEBUG stack ['$134call.3'] -13:52:49,859 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,859 numba.core.byteflow DEBUG pending: deque([State(pc_initial=146 nstack_initial=0), State(pc_initial=162 nstack_initial=0), State(pc_initial=268 nstack_initial=0), State(pc_initial=42 nstack_initial=1), State(pc_initial=42 nstack_initial=1)]) -13:52:49,859 numba.core.byteflow DEBUG stack: [] -13:52:49,859 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=146 nstack_initial=0) -13:52:49,859 numba.core.byteflow DEBUG dispatch pc=146, inst=LOAD_CONST(arg=0, lineno=2057) -13:52:49,859 numba.core.byteflow DEBUG stack [] -13:52:49,859 numba.core.byteflow DEBUG dispatch pc=148, inst=RETURN_VALUE(arg=None, lineno=2057) -13:52:49,859 numba.core.byteflow DEBUG stack ['$const146.0'] -13:52:49,859 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,859 numba.core.byteflow DEBUG pending: deque([State(pc_initial=162 nstack_initial=0), State(pc_initial=268 nstack_initial=0), State(pc_initial=42 nstack_initial=1), State(pc_initial=42 nstack_initial=1)]) -13:52:49,859 numba.core.byteflow DEBUG stack: [] -13:52:49,859 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=162 nstack_initial=0) -13:52:49,859 numba.core.byteflow DEBUG dispatch pc=162, inst=LOAD_FAST(arg=3, lineno=2062) -13:52:49,859 numba.core.byteflow DEBUG stack [] -13:52:49,859 numba.core.byteflow DEBUG dispatch pc=164, inst=LOAD_CONST(arg=1, lineno=2062) -13:52:49,859 numba.core.byteflow DEBUG stack ['$known_size162.0'] -13:52:49,859 numba.core.byteflow DEBUG dispatch pc=166, inst=COMPARE_OP(arg=2, lineno=2062) -13:52:49,860 numba.core.byteflow DEBUG stack ['$known_size162.0', '$const164.1'] -13:52:49,860 numba.core.byteflow DEBUG dispatch pc=172, inst=POP_JUMP_FORWARD_IF_FALSE(arg=9, lineno=2062) -13:52:49,860 numba.core.byteflow DEBUG stack ['$166compare_op.2'] -13:52:49,860 numba.core.byteflow DEBUG end state. edges=[Edge(pc=174, stack=(), blockstack=(), npush=0), Edge(pc=192, stack=(), blockstack=(), npush=0)] -13:52:49,860 numba.core.byteflow DEBUG pending: deque([State(pc_initial=268 nstack_initial=0), State(pc_initial=42 nstack_initial=1), State(pc_initial=42 nstack_initial=1), State(pc_initial=174 nstack_initial=0), State(pc_initial=192 nstack_initial=0)]) -13:52:49,860 numba.core.byteflow DEBUG stack: [] -13:52:49,860 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=268 nstack_initial=0) -13:52:49,860 numba.core.byteflow DEBUG dispatch pc=268, inst=LOAD_GLOBAL(arg=3, lineno=2073) -13:52:49,860 numba.core.byteflow DEBUG stack [] -13:52:49,860 numba.core.byteflow DEBUG dispatch pc=280, inst=LOAD_CONST(arg=4, lineno=2073) -13:52:49,860 numba.core.byteflow DEBUG stack ['$null$268.1', '$268load_global.0'] -13:52:49,860 numba.core.byteflow DEBUG dispatch pc=282, inst=PRECALL(arg=1, lineno=2073) -13:52:49,860 numba.core.byteflow DEBUG stack ['$null$268.1', '$268load_global.0', '$const280.2'] -13:52:49,860 numba.core.byteflow DEBUG dispatch pc=286, inst=CALL(arg=1, lineno=2073) -13:52:49,860 numba.core.byteflow DEBUG stack ['$null$268.1', '$268load_global.0', '$const280.2'] -13:52:49,860 numba.core.byteflow DEBUG dispatch pc=296, inst=RAISE_VARARGS(arg=1, lineno=2073) -13:52:49,860 numba.core.byteflow DEBUG stack ['$286call.3'] -13:52:49,861 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,861 numba.core.byteflow DEBUG pending: deque([State(pc_initial=42 nstack_initial=1), State(pc_initial=42 nstack_initial=1), State(pc_initial=174 nstack_initial=0), State(pc_initial=192 nstack_initial=0)]) -13:52:49,861 numba.core.byteflow DEBUG pending: deque([State(pc_initial=42 nstack_initial=1), State(pc_initial=174 nstack_initial=0), State(pc_initial=192 nstack_initial=0)]) -13:52:49,861 numba.core.byteflow DEBUG pending: deque([State(pc_initial=174 nstack_initial=0), State(pc_initial=192 nstack_initial=0)]) -13:52:49,861 numba.core.byteflow DEBUG stack: [] -13:52:49,861 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=174 nstack_initial=0) -13:52:49,861 numba.core.byteflow DEBUG dispatch pc=174, inst=LOAD_CONST(arg=1, lineno=2063) -13:52:49,861 numba.core.byteflow DEBUG stack [] -13:52:49,861 numba.core.byteflow DEBUG dispatch pc=176, inst=STORE_FAST(arg=7, lineno=2063) -13:52:49,861 numba.core.byteflow DEBUG stack ['$const174.0'] -13:52:49,861 numba.core.byteflow DEBUG dispatch pc=178, inst=LOAD_FAST(arg=0, lineno=2064) -13:52:49,861 numba.core.byteflow DEBUG stack [] -13:52:49,861 numba.core.byteflow DEBUG dispatch pc=180, inst=LOAD_CONST(arg=1, lineno=2064) -13:52:49,861 numba.core.byteflow DEBUG stack ['$origsize178.1'] -13:52:49,861 numba.core.byteflow DEBUG dispatch pc=182, inst=COMPARE_OP(arg=2, lineno=2064) -13:52:49,861 numba.core.byteflow DEBUG stack ['$origsize178.1', '$const180.2'] -13:52:49,861 numba.core.byteflow DEBUG dispatch pc=188, inst=STORE_FAST(arg=8, lineno=2064) -13:52:49,861 numba.core.byteflow DEBUG stack ['$182compare_op.3'] -13:52:49,861 numba.core.byteflow DEBUG dispatch pc=190, inst=JUMP_FORWARD(arg=14, lineno=2064) -13:52:49,861 numba.core.byteflow DEBUG stack [] -13:52:49,861 numba.core.byteflow DEBUG end state. edges=[Edge(pc=220, stack=(), blockstack=(), npush=0)] -13:52:49,862 numba.core.byteflow DEBUG pending: deque([State(pc_initial=192 nstack_initial=0), State(pc_initial=220 nstack_initial=0)]) -13:52:49,862 numba.core.byteflow DEBUG stack: [] -13:52:49,862 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=192 nstack_initial=0) -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=192, inst=LOAD_FAST(arg=0, lineno=2066) -13:52:49,862 numba.core.byteflow DEBUG stack [] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=194, inst=LOAD_FAST(arg=3, lineno=2066) -13:52:49,862 numba.core.byteflow DEBUG stack ['$origsize192.0'] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=196, inst=BINARY_OP(arg=2, lineno=2066) -13:52:49,862 numba.core.byteflow DEBUG stack ['$origsize192.0', '$known_size194.1'] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=200, inst=STORE_FAST(arg=7, lineno=2066) -13:52:49,862 numba.core.byteflow DEBUG stack ['$binop_floordiv196.2'] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=202, inst=LOAD_FAST(arg=0, lineno=2067) -13:52:49,862 numba.core.byteflow DEBUG stack [] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=204, inst=LOAD_FAST(arg=3, lineno=2067) -13:52:49,862 numba.core.byteflow DEBUG stack ['$origsize202.3'] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=206, inst=BINARY_OP(arg=6, lineno=2067) -13:52:49,862 numba.core.byteflow DEBUG stack ['$origsize202.3', '$known_size204.4'] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=210, inst=LOAD_CONST(arg=1, lineno=2067) -13:52:49,862 numba.core.byteflow DEBUG stack ['$binop_mod206.5'] -13:52:49,862 numba.core.byteflow DEBUG dispatch pc=212, inst=COMPARE_OP(arg=2, lineno=2067) -13:52:49,862 numba.core.byteflow DEBUG stack ['$binop_mod206.5', '$const210.6'] -13:52:49,863 numba.core.byteflow DEBUG dispatch pc=218, inst=STORE_FAST(arg=8, lineno=2067) -13:52:49,863 numba.core.byteflow DEBUG stack ['$212compare_op.7'] -13:52:49,863 numba.core.byteflow DEBUG end state. edges=[Edge(pc=220, stack=(), blockstack=(), npush=0)] -13:52:49,863 numba.core.byteflow DEBUG pending: deque([State(pc_initial=220 nstack_initial=0), State(pc_initial=220 nstack_initial=0)]) -13:52:49,863 numba.core.byteflow DEBUG stack: [] -13:52:49,863 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=220 nstack_initial=0) -13:52:49,863 numba.core.byteflow DEBUG dispatch pc=220, inst=LOAD_FAST(arg=8, lineno=2068) -13:52:49,863 numba.core.byteflow DEBUG stack [] -13:52:49,863 numba.core.byteflow DEBUG dispatch pc=222, inst=POP_JUMP_FORWARD_IF_TRUE(arg=15, lineno=2068) -13:52:49,863 numba.core.byteflow DEBUG stack ['$ok220.0'] -13:52:49,863 numba.core.byteflow DEBUG end state. edges=[Edge(pc=224, stack=(), blockstack=(), npush=0), Edge(pc=254, stack=(), blockstack=(), npush=0)] -13:52:49,863 numba.core.byteflow DEBUG pending: deque([State(pc_initial=220 nstack_initial=0), State(pc_initial=224 nstack_initial=0), State(pc_initial=254 nstack_initial=0)]) -13:52:49,863 numba.core.byteflow DEBUG pending: deque([State(pc_initial=224 nstack_initial=0), State(pc_initial=254 nstack_initial=0)]) -13:52:49,863 numba.core.byteflow DEBUG stack: [] -13:52:49,863 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=224 nstack_initial=0) -13:52:49,863 numba.core.byteflow DEBUG dispatch pc=224, inst=LOAD_GLOBAL(arg=3, lineno=2069) -13:52:49,863 numba.core.byteflow DEBUG stack [] -13:52:49,863 numba.core.byteflow DEBUG dispatch pc=236, inst=LOAD_CONST(arg=3, lineno=2069) -13:52:49,863 numba.core.byteflow DEBUG stack ['$null$224.1', '$224load_global.0'] -13:52:49,863 numba.core.byteflow DEBUG dispatch pc=238, inst=PRECALL(arg=1, lineno=2069) -13:52:49,864 numba.core.byteflow DEBUG stack ['$null$224.1', '$224load_global.0', '$const236.2'] -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=242, inst=CALL(arg=1, lineno=2069) -13:52:49,864 numba.core.byteflow DEBUG stack ['$null$224.1', '$224load_global.0', '$const236.2'] -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=252, inst=RAISE_VARARGS(arg=1, lineno=2069) -13:52:49,864 numba.core.byteflow DEBUG stack ['$242call.3'] -13:52:49,864 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,864 numba.core.byteflow DEBUG pending: deque([State(pc_initial=254 nstack_initial=0)]) -13:52:49,864 numba.core.byteflow DEBUG stack: [] -13:52:49,864 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=254 nstack_initial=0) -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=254, inst=LOAD_FAST(arg=7, lineno=2070) -13:52:49,864 numba.core.byteflow DEBUG stack [] -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=256, inst=LOAD_FAST(arg=1, lineno=2070) -13:52:49,864 numba.core.byteflow DEBUG stack ['$inferred254.0'] -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=258, inst=LOAD_FAST(arg=6, lineno=2070) -13:52:49,864 numba.core.byteflow DEBUG stack ['$inferred254.0', '$shape256.1'] -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=260, inst=STORE_SUBSCR(arg=None, lineno=2070) -13:52:49,864 numba.core.byteflow DEBUG stack ['$inferred254.0', '$shape256.1', '$neg_ax258.2'] -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=264, inst=LOAD_CONST(arg=0, lineno=2070) -13:52:49,864 numba.core.byteflow DEBUG stack [] -13:52:49,864 numba.core.byteflow DEBUG dispatch pc=266, inst=RETURN_VALUE(arg=None, lineno=2070) -13:52:49,865 numba.core.byteflow DEBUG stack ['$const264.3'] -13:52:49,865 numba.core.byteflow DEBUG end state. edges=[] -13:52:49,865 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:49,865 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=42 nstack_initial=1): {'$phi42.0'}, - State(pc_initial=44 nstack_initial=2): {'$phi44.1'}, - State(pc_initial=64 nstack_initial=1): set(), - State(pc_initial=80 nstack_initial=1): set(), - State(pc_initial=92 nstack_initial=0): set(), - State(pc_initial=104 nstack_initial=0): set(), - State(pc_initial=116 nstack_initial=0): set(), - State(pc_initial=146 nstack_initial=0): set(), - State(pc_initial=150 nstack_initial=0): set(), - State(pc_initial=162 nstack_initial=0): set(), - State(pc_initial=174 nstack_initial=0): set(), - State(pc_initial=192 nstack_initial=0): set(), - State(pc_initial=220 nstack_initial=0): set(), - State(pc_initial=224 nstack_initial=0): set(), - State(pc_initial=254 nstack_initial=0): set(), - State(pc_initial=268 nstack_initial=0): set()}) -13:52:49,865 numba.core.byteflow DEBUG defmap: {'$phi42.0': State(pc_initial=0 nstack_initial=0), - '$phi44.1': State(pc_initial=42 nstack_initial=1)} -13:52:49,865 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi42.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0)), - ('$phi64.0', State(pc_initial=64 nstack_initial=1)), - ('$phi80.0', State(pc_initial=80 nstack_initial=1))}, - '$phi44.0': {('$phi42.0', State(pc_initial=42 nstack_initial=1))}, - '$phi44.1': {('$42for_iter.2', - State(pc_initial=42 nstack_initial=1))}, - '$phi64.0': {('$phi44.0', State(pc_initial=44 nstack_initial=2))}, - '$phi80.0': {('$phi44.0', State(pc_initial=44 nstack_initial=2))}}) -13:52:49,865 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi42.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0)), - ('$phi44.0', State(pc_initial=44 nstack_initial=2))}, - '$phi44.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0)), - ('$phi44.0', State(pc_initial=44 nstack_initial=2))}, - '$phi44.1': {('$42for_iter.2', - State(pc_initial=42 nstack_initial=1))}, - '$phi64.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi80.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}}) -13:52:49,865 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi42.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi44.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi44.1': {('$42for_iter.2', - State(pc_initial=42 nstack_initial=1))}, - '$phi64.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi80.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}}) -13:52:49,865 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi42.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi44.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi44.1': {('$42for_iter.2', - State(pc_initial=42 nstack_initial=1))}, - '$phi64.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi80.0': {('$40get_iter.6', - State(pc_initial=0 nstack_initial=0))}}) -13:52:49,866 numba.core.byteflow DEBUG keep phismap: {'$phi42.0': {('$40get_iter.6', State(pc_initial=0 nstack_initial=0))}, - '$phi44.1': {('$42for_iter.2', State(pc_initial=42 nstack_initial=1))}} -13:52:49,866 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi42.0': '$40get_iter.6'}, - State(pc_initial=42 nstack_initial=1): {'$phi44.1': '$42for_iter.2'}}) -13:52:49,866 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$const4.0'}), (6, {'value': '$const4.0'}), (8, {'res': '$const8.1'}), (10, {'value': '$const8.1'}), (12, {'idx': 0, 'res': '$12load_global.2'}), (14, {}), (16, {}), (18, {}), (20, {}), (22, {}), (24, {'res': '$shape24.4'}), (26, {}), (28, {}), (30, {'func': '$12load_global.2', 'args': ['$shape24.4'], 'kw_names': None, 'res': '$30call.5'}), (32, {}), (34, {}), (36, {}), (38, {}), (40, {'value': '$30call.5', 'res': '$40get_iter.6'})), outgoing_phis={'$phi42.0': '$40get_iter.6'}, blockstack=(), active_try_block=None, outgoing_edgepushed={42: ('$40get_iter.6',)}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=42 nstack_initial=1): -AdaptBlockInfo(insts=((42, {'iterator': '$phi42.0', 'pair': '$42for_iter.1', 'indval': '$42for_iter.2', 'pred': '$42for_iter.3'}),), outgoing_phis={'$phi44.1': '$42for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={92: (), 44: ('$phi42.0', '$42for_iter.2')}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=44 nstack_initial=2): -AdaptBlockInfo(insts=((44, {'iterable': '$phi44.1', 'stores': ['$44unpack_sequence.2', '$44unpack_sequence.3'], 'tupleobj': '$44unpack_sequence.4'}), (46, {}), (48, {'value': '$44unpack_sequence.2'}), (50, {'value': '$44unpack_sequence.3'}), (52, {'res': '$s52.5'}), (54, {'res': '$const54.6'}), (56, {'lhs': '$s52.5', 'rhs': '$const54.6', 'res': '$56compare_op.7'}), (58, {}), (60, {}), (62, {'pred': '$56compare_op.7'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={64: ('$phi44.0',), 80: ('$phi44.0',)}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=64 nstack_initial=1): -AdaptBlockInfo(insts=((64, {'res': '$num_neg_value64.1'}), (66, {'res': '$const66.2'}), (68, {'op': '+=', 'lhs': '$num_neg_value64.1', 'rhs': '$const66.2', 'res': '$binop_iadd68.3'}), (70, {}), (72, {'value': '$binop_iadd68.3'}), (74, {'res': '$ax74.4'}), (76, {'value': '$ax74.4'}), (78, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={42: ('$phi64.0',)}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=80 nstack_initial=1): -AdaptBlockInfo(insts=((80, {'res': '$known_size80.1'}), (82, {'res': '$s82.2'}), (84, {'op': '*=', 'lhs': '$known_size80.1', 'rhs': '$s82.2', 'res': '$binop_imul84.3'}), (86, {}), (88, {'value': '$binop_imul84.3'}), (90, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={42: ('$phi80.0',)}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=92 nstack_initial=0): -AdaptBlockInfo(insts=((92, {'res': '$num_neg_value92.0'}), (94, {'res': '$const94.1'}), (96, {'lhs': '$num_neg_value92.0', 'rhs': '$const94.1', 'res': '$96compare_op.2'}), (98, {}), (100, {}), (102, {'pred': '$96compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={104: (), 150: ()}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=104 nstack_initial=0): -AdaptBlockInfo(insts=((104, {'res': '$origsize104.0'}), (106, {'res': '$known_size106.1'}), (108, {'lhs': '$origsize104.0', 'rhs': '$known_size106.1', 'res': '$108compare_op.2'}), (110, {}), (112, {}), (114, {'pred': '$108compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={116: (), 146: ()}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=116 nstack_initial=0): -AdaptBlockInfo(insts=((116, {'idx': 1, 'res': '$116load_global.0'}), (118, {}), (120, {}), (122, {}), (124, {}), (126, {}), (128, {'res': '$const128.2'}), (130, {}), (132, {}), (134, {'func': '$116load_global.0', 'args': ['$const128.2'], 'kw_names': None, 'res': '$134call.3'}), (136, {}), (138, {}), (140, {}), (142, {}), (144, {'exc': '$134call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=146 nstack_initial=0): -AdaptBlockInfo(insts=((146, {'res': '$const146.0'}), (148, {'retval': '$const146.0', 'castval': '$148return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=150 nstack_initial=0): -AdaptBlockInfo(insts=((150, {'res': '$num_neg_value150.0'}), (152, {'res': '$const152.1'}), (154, {'lhs': '$num_neg_value150.0', 'rhs': '$const152.1', 'res': '$154compare_op.2'}), (156, {}), (158, {}), (160, {'pred': '$154compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={162: (), 268: ()}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=162 nstack_initial=0): -AdaptBlockInfo(insts=((162, {'res': '$known_size162.0'}), (164, {'res': '$const164.1'}), (166, {'lhs': '$known_size162.0', 'rhs': '$const164.1', 'res': '$166compare_op.2'}), (168, {}), (170, {}), (172, {'pred': '$166compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={174: (), 192: ()}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=174 nstack_initial=0): -AdaptBlockInfo(insts=((174, {'res': '$const174.0'}), (176, {'value': '$const174.0'}), (178, {'res': '$origsize178.1'}), (180, {'res': '$const180.2'}), (182, {'lhs': '$origsize178.1', 'rhs': '$const180.2', 'res': '$182compare_op.3'}), (184, {}), (186, {}), (188, {'value': '$182compare_op.3'}), (190, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={220: ()}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=192 nstack_initial=0): -AdaptBlockInfo(insts=((192, {'res': '$origsize192.0'}), (194, {'res': '$known_size194.1'}), (196, {'op': '//', 'lhs': '$origsize192.0', 'rhs': '$known_size194.1', 'res': '$binop_floordiv196.2'}), (198, {}), (200, {'value': '$binop_floordiv196.2'}), (202, {'res': '$origsize202.3'}), (204, {'res': '$known_size204.4'}), (206, {'op': '%', 'lhs': '$origsize202.3', 'rhs': '$known_size204.4', 'res': '$binop_mod206.5'}), (208, {}), (210, {'res': '$const210.6'}), (212, {'lhs': '$binop_mod206.5', 'rhs': '$const210.6', 'res': '$212compare_op.7'}), (214, {}), (216, {}), (218, {'value': '$212compare_op.7'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={220: ()}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=220 nstack_initial=0): -AdaptBlockInfo(insts=((220, {'res': '$ok220.0'}), (222, {'pred': '$ok220.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={224: (), 254: ()}) -13:52:49,866 numba.core.byteflow DEBUG block_infos State(pc_initial=224 nstack_initial=0): -AdaptBlockInfo(insts=((224, {'idx': 1, 'res': '$224load_global.0'}), (226, {}), (228, {}), (230, {}), (232, {}), (234, {}), (236, {'res': '$const236.2'}), (238, {}), (240, {}), (242, {'func': '$224load_global.0', 'args': ['$const236.2'], 'kw_names': None, 'res': '$242call.3'}), (244, {}), (246, {}), (248, {}), (250, {}), (252, {'exc': '$242call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,867 numba.core.byteflow DEBUG block_infos State(pc_initial=254 nstack_initial=0): -AdaptBlockInfo(insts=((254, {'res': '$inferred254.0'}), (256, {'res': '$shape256.1'}), (258, {'res': '$neg_ax258.2'}), (260, {'target': '$shape256.1', 'index': '$neg_ax258.2', 'value': '$inferred254.0'}), (262, {}), (264, {'res': '$const264.3'}), (266, {'retval': '$const264.3', 'castval': '$266return_value.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,867 numba.core.byteflow DEBUG block_infos State(pc_initial=268 nstack_initial=0): -AdaptBlockInfo(insts=((268, {'idx': 1, 'res': '$268load_global.0'}), (270, {}), (272, {}), (274, {}), (276, {}), (278, {}), (280, {'res': '$const280.2'}), (282, {}), (284, {}), (286, {'func': '$268load_global.0', 'args': ['$const280.2'], 'kw_names': None, 'res': '$286call.3'}), (288, {}), (290, {}), (292, {}), (294, {}), (296, {'exc': '$286call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:49,869 numba.core.interpreter DEBUG label 0: - origsize = arg(0, name=origsize) ['origsize'] - shape = arg(1, name=shape) ['shape'] - num_neg_value = const(int, 0) ['num_neg_value'] - known_size = const(int, 1) ['known_size'] - $12load_global.2 = global(enumerate: ) ['$12load_global.2'] - $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) ['$12load_global.2', '$30call.5', 'shape'] - $40get_iter.6 = getiter(value=$30call.5) ['$30call.5', '$40get_iter.6'] - $phi42.0 = $40get_iter.6 ['$40get_iter.6', '$phi42.0'] - jump 42 [] -label 42: - $42for_iter.1 = iternext(value=$phi42.0) ['$42for_iter.1', '$phi42.0'] - $42for_iter.2 = pair_first(value=$42for_iter.1) ['$42for_iter.1', '$42for_iter.2'] - $42for_iter.3 = pair_second(value=$42for_iter.1) ['$42for_iter.1', '$42for_iter.3'] - $phi44.1 = $42for_iter.2 ['$42for_iter.2', '$phi44.1'] - branch $42for_iter.3, 44, 92 ['$42for_iter.3'] -label 44: - $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) ['$44unpack_sequence.4', '$phi44.1'] - $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) ['$44unpack_sequence.2', '$44unpack_sequence.4'] - $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) ['$44unpack_sequence.3', '$44unpack_sequence.4'] - ax = $44unpack_sequence.2 ['$44unpack_sequence.2', 'ax'] - s = $44unpack_sequence.3 ['$44unpack_sequence.3', 's'] - $const54.6 = const(int, 0) ['$const54.6'] - $56compare_op.7 = s < $const54.6 ['$56compare_op.7', '$const54.6', 's'] - bool62 = global(bool: ) ['bool62'] - $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) ['$56compare_op.7', '$62pred', 'bool62'] - branch $62pred, 64, 80 ['$62pred'] -label 64: - $const66.2 = const(int, 1) ['$const66.2'] - $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd68.3', '$const66.2', 'num_neg_value'] - num_neg_value = $binop_iadd68.3 ['$binop_iadd68.3', 'num_neg_value'] - neg_ax = ax ['ax', 'neg_ax'] - jump 42 [] -label 80: - $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size, rhs=s, static_lhs=Undefined, static_rhs=Undefined) ['$binop_imul84.3', 'known_size', 's'] - known_size = $binop_imul84.3 ['$binop_imul84.3', 'known_size'] - jump 42 [] -label 92: - $const94.1 = const(int, 0) ['$const94.1'] - $96compare_op.2 = num_neg_value == $const94.1 ['$96compare_op.2', '$const94.1', 'num_neg_value'] - bool102 = global(bool: ) ['bool102'] - $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) ['$102pred', '$96compare_op.2', 'bool102'] - branch $102pred, 104, 150 ['$102pred'] -label 104: - $108compare_op.2 = origsize != known_size ['$108compare_op.2', 'known_size', 'origsize'] - bool114 = global(bool: ) ['bool114'] - $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) ['$108compare_op.2', '$114pred', 'bool114'] - branch $114pred, 116, 146 ['$114pred'] -label 116: - $116load_global.0 = global(ValueError: ) ['$116load_global.0'] - $const128.2 = const(str, total size of new array must be unchanged) ['$const128.2'] - $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) ['$116load_global.0', '$134call.3', '$const128.2'] - raise $134call.3 ['$134call.3'] -label 146: - $const146.0 = const(NoneType, None) ['$const146.0'] - $148return_value.1 = cast(value=$const146.0) ['$148return_value.1', '$const146.0'] - return $148return_value.1 ['$148return_value.1'] -label 150: - $const152.1 = const(int, 1) ['$const152.1'] - $154compare_op.2 = num_neg_value == $const152.1 ['$154compare_op.2', '$const152.1', 'num_neg_value'] - bool160 = global(bool: ) ['bool160'] - $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) ['$154compare_op.2', '$160pred', 'bool160'] - branch $160pred, 162, 268 ['$160pred'] -label 162: - $const164.1 = const(int, 0) ['$const164.1'] - $166compare_op.2 = known_size == $const164.1 ['$166compare_op.2', '$const164.1', 'known_size'] - bool172 = global(bool: ) ['bool172'] - $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) ['$166compare_op.2', '$172pred', 'bool172'] - branch $172pred, 174, 192 ['$172pred'] -label 174: - inferred = const(int, 0) ['inferred'] - $const180.2 = const(int, 0) ['$const180.2'] - ok = origsize == $const180.2 ['$const180.2', 'ok', 'origsize'] - jump 220 [] -label 192: - inferred = origsize // known_size ['inferred', 'known_size', 'origsize'] - $binop_mod206.5 = origsize % known_size ['$binop_mod206.5', 'known_size', 'origsize'] - $const210.6 = const(int, 0) ['$const210.6'] - ok = $binop_mod206.5 == $const210.6 ['$binop_mod206.5', '$const210.6', 'ok'] - jump 220 [] -label 220: - bool222 = global(bool: ) ['bool222'] - $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) ['$222pred', 'bool222', 'ok'] - branch $222pred, 254, 224 ['$222pred'] -label 224: - $224load_global.0 = global(ValueError: ) ['$224load_global.0'] - $const236.2 = const(str, total size of new array must be unchanged) ['$const236.2'] - $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) ['$224load_global.0', '$242call.3', '$const236.2'] - raise $242call.3 ['$242call.3'] -label 254: - shape[neg_ax] = inferred ['inferred', 'neg_ax', 'shape'] - $const264.3 = const(NoneType, None) ['$const264.3'] - $266return_value.4 = cast(value=$const264.3) ['$266return_value.4', '$const264.3'] - return $266return_value.4 ['$266return_value.4'] -label 268: - $268load_global.0 = global(ValueError: ) ['$268load_global.0'] - $const280.2 = const(str, multiple negative shape values) ['$const280.2'] - $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) ['$268load_global.0', '$286call.3', '$const280.2'] - raise $286call.3 ['$286call.3'] - -13:52:49,886 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:49,886 numba.core.ssa DEBUG Running -13:52:49,887 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,887 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,887 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,887 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,887 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,887 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,887 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,887 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,887 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,887 numba.core.ssa DEBUG ==== SSA block analysis pass on 42 -13:52:49,887 numba.core.ssa DEBUG Running -13:52:49,887 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,887 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,887 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,887 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,887 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,887 numba.core.ssa DEBUG ==== SSA block analysis pass on 44 -13:52:49,887 numba.core.ssa DEBUG Running -13:52:49,887 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,887 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,887 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,887 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,887 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,887 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,888 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,888 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,888 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,888 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,888 numba.core.ssa DEBUG ==== SSA block analysis pass on 64 -13:52:49,888 numba.core.ssa DEBUG Running -13:52:49,888 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,888 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,888 numba.core.ssa DEBUG on stmt: num_neg_value = $binop_iadd68.3 -13:52:49,888 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,888 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,888 numba.core.ssa DEBUG ==== SSA block analysis pass on 80 -13:52:49,888 numba.core.ssa DEBUG Running -13:52:49,888 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,888 numba.core.ssa DEBUG on stmt: known_size = $binop_imul84.3 -13:52:49,888 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,888 numba.core.ssa DEBUG ==== SSA block analysis pass on 92 -13:52:49,888 numba.core.ssa DEBUG Running -13:52:49,888 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,888 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value == $const94.1 -13:52:49,888 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,888 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,888 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,888 numba.core.ssa DEBUG ==== SSA block analysis pass on 104 -13:52:49,889 numba.core.ssa DEBUG Running -13:52:49,889 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size -13:52:49,889 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,889 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,889 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,889 numba.core.ssa DEBUG ==== SSA block analysis pass on 116 -13:52:49,889 numba.core.ssa DEBUG Running -13:52:49,889 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,889 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,889 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,889 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,889 numba.core.ssa DEBUG ==== SSA block analysis pass on 146 -13:52:49,889 numba.core.ssa DEBUG Running -13:52:49,889 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,889 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,889 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,889 numba.core.ssa DEBUG ==== SSA block analysis pass on 150 -13:52:49,889 numba.core.ssa DEBUG Running -13:52:49,889 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,889 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value == $const152.1 -13:52:49,889 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,890 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,890 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,890 numba.core.ssa DEBUG ==== SSA block analysis pass on 162 -13:52:49,890 numba.core.ssa DEBUG Running -13:52:49,890 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,890 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size == $const164.1 -13:52:49,890 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,890 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,890 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,890 numba.core.ssa DEBUG ==== SSA block analysis pass on 174 -13:52:49,890 numba.core.ssa DEBUG Running -13:52:49,890 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,890 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,890 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,890 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,890 numba.core.ssa DEBUG ==== SSA block analysis pass on 192 -13:52:49,890 numba.core.ssa DEBUG Running -13:52:49,890 numba.core.ssa DEBUG on stmt: inferred = origsize // known_size -13:52:49,890 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size -13:52:49,890 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,890 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,890 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,890 numba.core.ssa DEBUG ==== SSA block analysis pass on 220 -13:52:49,891 numba.core.ssa DEBUG Running -13:52:49,891 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,891 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,891 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,891 numba.core.ssa DEBUG ==== SSA block analysis pass on 224 -13:52:49,891 numba.core.ssa DEBUG Running -13:52:49,891 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,891 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,891 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,891 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,891 numba.core.ssa DEBUG ==== SSA block analysis pass on 254 -13:52:49,891 numba.core.ssa DEBUG Running -13:52:49,891 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred -13:52:49,891 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,891 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,891 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,891 numba.core.ssa DEBUG ==== SSA block analysis pass on 268 -13:52:49,891 numba.core.ssa DEBUG Running -13:52:49,891 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,891 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,891 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,891 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,892 numba.core.ssa DEBUG ==== SSA block analysis pass on 269 -13:52:49,892 numba.core.ssa DEBUG Running -13:52:49,892 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,892 numba.core.ssa DEBUG defs defaultdict(, - {'$102pred': [(, - 92)], - '$108compare_op.2': [(, - 104)], - '$114pred': [(, - 104)], - '$116load_global.0': [(, - 116)], - '$12load_global.2': [(, - 0)], - '$134call.3': [(, - 116)], - '$148return_value.1': [(, - 146)], - '$154compare_op.2': [(, - 150)], - '$160pred': [(, - 150)], - '$166compare_op.2': [(, - 162)], - '$172pred': [(, - 162)], - '$222pred': [(, - 220)], - '$224load_global.0': [(, - 224)], - '$242call.3': [(, - 224)], - '$266return_value.4': [(, - 254)], - '$268load_global.0': [(, - 268)], - '$286call.3': [(, - 268)], - '$30call.5': [(, - 0)], - '$40get_iter.6': [(, - 0)], - '$42for_iter.1': [(, - 42)], - '$42for_iter.2': [(, - 42)], - '$42for_iter.3': [(, - 42)], - '$44unpack_sequence.2': [(, - 44)], - '$44unpack_sequence.3': [(, - 44)], - '$44unpack_sequence.4': [(, - 44)], - '$56compare_op.7': [(, - 44)], - '$62pred': [(, - 44)], - '$96compare_op.2': [(, - 92)], - '$binop_iadd68.3': [(, - 64)], - '$binop_imul84.3': [(, - 80)], - '$binop_mod206.5': [(, - 192)], - '$const128.2': [(, - 116)], - '$const146.0': [(, - 146)], - '$const152.1': [(, - 150)], - '$const164.1': [(, - 162)], - '$const180.2': [(, - 174)], - '$const210.6': [(, - 192)], - '$const236.2': [(, - 224)], - '$const264.3': [(, - 254)], - '$const280.2': [(, - 268)], - '$const54.6': [(, - 44)], - '$const66.2': [(, - 64)], - '$const94.1': [(, - 92)], - '$phi42.0': [(, - 0)], - '$phi44.1': [(, - 42)], - 'ax': [(, 44)], - 'bool102': [(, - 92)], - 'bool114': [(, - 104)], - 'bool160': [(, - 150)], - 'bool172': [(, - 162)], - 'bool222': [(, - 220)], - 'bool62': [(, - 44)], - 'inferred': [(, - 174), - (, - 192)], - 'known_size': [(, - 0), - (, - 80)], - 'neg_ax': [(, - 64)], - 'num_neg_value': [(, - 0), - (, - 64)], - 'ok': [(, 174), - (, 192)], - 'origsize': [(, - 0)], - 's': [(, 44)], - 'shape': [(, - 0)]}) -13:52:49,893 numba.core.ssa DEBUG SSA violators -13:52:49,893 numba.core.ssa DEBUG Fix SSA violator on var num_neg_value -13:52:49,893 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,893 numba.core.ssa DEBUG Running -13:52:49,893 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,893 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,893 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,893 numba.core.ssa DEBUG first assign: num_neg_value -13:52:49,893 numba.core.ssa DEBUG replaced with: num_neg_value = const(int, 0) -13:52:49,893 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,893 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,893 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,893 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,893 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,893 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,893 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,893 numba.core.ssa DEBUG Running -13:52:49,893 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,893 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,893 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,893 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,894 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,894 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,894 numba.core.ssa DEBUG Running -13:52:49,894 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,894 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,894 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,894 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,894 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,894 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,894 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,894 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,894 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,894 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,894 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,894 numba.core.ssa DEBUG Running -13:52:49,894 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,894 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,894 numba.core.ssa DEBUG on stmt: num_neg_value = $binop_iadd68.3 -13:52:49,894 numba.core.ssa DEBUG replaced with: num_neg_value.1 = $binop_iadd68.3 -13:52:49,894 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,894 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,894 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,894 numba.core.ssa DEBUG Running -13:52:49,894 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,894 numba.core.ssa DEBUG on stmt: known_size = $binop_imul84.3 -13:52:49,894 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,895 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,895 numba.core.ssa DEBUG Running -13:52:49,895 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,895 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value == $const94.1 -13:52:49,895 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,895 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,895 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,895 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,895 numba.core.ssa DEBUG Running -13:52:49,895 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size -13:52:49,895 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,895 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,895 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,895 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,895 numba.core.ssa DEBUG Running -13:52:49,895 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,895 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,895 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,895 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,895 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,895 numba.core.ssa DEBUG Running -13:52:49,895 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,895 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,895 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,895 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,896 numba.core.ssa DEBUG Running -13:52:49,896 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,896 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value == $const152.1 -13:52:49,896 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,896 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,896 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,896 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,896 numba.core.ssa DEBUG Running -13:52:49,896 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,896 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size == $const164.1 -13:52:49,896 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,896 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,896 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,896 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,896 numba.core.ssa DEBUG Running -13:52:49,896 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,896 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,896 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,896 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,896 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,896 numba.core.ssa DEBUG Running -13:52:49,896 numba.core.ssa DEBUG on stmt: inferred = origsize // known_size -13:52:49,896 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size -13:52:49,896 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,896 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,896 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,897 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,897 numba.core.ssa DEBUG Running -13:52:49,897 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,897 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,897 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,897 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,897 numba.core.ssa DEBUG Running -13:52:49,897 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,897 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,897 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,897 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,897 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,897 numba.core.ssa DEBUG Running -13:52:49,897 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred -13:52:49,897 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,897 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,897 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,897 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,897 numba.core.ssa DEBUG Running -13:52:49,897 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,897 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,897 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,897 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,897 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,897 numba.core.ssa DEBUG Running -13:52:49,897 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,898 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 64: []}) -13:52:49,898 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,898 numba.core.ssa DEBUG Running -13:52:49,898 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,898 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,898 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,898 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,898 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,898 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,898 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,898 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,898 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,898 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,898 numba.core.ssa DEBUG Running -13:52:49,898 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,898 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,898 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,898 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,898 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,898 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,898 numba.core.ssa DEBUG Running -13:52:49,898 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,898 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,899 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,899 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,899 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,899 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,899 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,899 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,899 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,899 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,899 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,899 numba.core.ssa DEBUG Running -13:52:49,899 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,899 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,899 numba.core.ssa DEBUG find_def var='num_neg_value' stmt=$binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,899 numba.core.ssa DEBUG find_def_from_top label 64 -13:52:49,899 numba.core.ssa DEBUG idom 44 from label 64 -13:52:49,899 numba.core.ssa DEBUG find_def_from_bottom label 44 -13:52:49,899 numba.core.ssa DEBUG find_def_from_top label 44 -13:52:49,899 numba.core.ssa DEBUG idom 42 from label 44 -13:52:49,899 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,899 numba.core.ssa DEBUG find_def_from_top label 42 -13:52:49,899 numba.core.ssa DEBUG insert phi node num_neg_value.2 = phi(incoming_values=[], incoming_blocks=[]) at 42 -13:52:49,899 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:49,899 numba.core.ssa DEBUG incoming_def num_neg_value = const(int, 0) -13:52:49,899 numba.core.ssa DEBUG find_def_from_bottom label 269 -13:52:49,899 numba.core.ssa DEBUG find_def_from_top label 269 -13:52:49,899 numba.core.ssa DEBUG insert phi node num_neg_value.3 = phi(incoming_values=[], incoming_blocks=[]) at 269 -13:52:49,899 numba.core.ssa DEBUG find_def_from_bottom label 64 -13:52:49,899 numba.core.ssa DEBUG incoming_def num_neg_value.1 = $binop_iadd68.3 -13:52:49,899 numba.core.ssa DEBUG find_def_from_bottom label 80 -13:52:49,900 numba.core.ssa DEBUG find_def_from_top label 80 -13:52:49,900 numba.core.ssa DEBUG idom 44 from label 80 -13:52:49,900 numba.core.ssa DEBUG find_def_from_bottom label 44 -13:52:49,900 numba.core.ssa DEBUG find_def_from_top label 44 -13:52:49,900 numba.core.ssa DEBUG idom 42 from label 44 -13:52:49,900 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,900 numba.core.ssa DEBUG incoming_def num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047)], incoming_blocks=[0]) -13:52:49,900 numba.core.ssa DEBUG incoming_def num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,900 numba.core.ssa DEBUG replaced with: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,900 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,900 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,900 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,900 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,900 numba.core.ssa DEBUG Running -13:52:49,900 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,900 numba.core.ssa DEBUG on stmt: known_size = $binop_imul84.3 -13:52:49,900 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,900 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,900 numba.core.ssa DEBUG Running -13:52:49,900 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,900 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value == $const94.1 -13:52:49,900 numba.core.ssa DEBUG find_def var='num_neg_value' stmt=$96compare_op.2 = num_neg_value == $const94.1 -13:52:49,900 numba.core.ssa DEBUG find_def_from_top label 92 -13:52:49,900 numba.core.ssa DEBUG idom 42 from label 92 -13:52:49,900 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,900 numba.core.ssa DEBUG replaced with: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,900 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,901 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,901 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,901 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,901 numba.core.ssa DEBUG Running -13:52:49,901 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size -13:52:49,901 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,901 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,901 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,901 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,901 numba.core.ssa DEBUG Running -13:52:49,901 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,901 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,901 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,901 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,901 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,901 numba.core.ssa DEBUG Running -13:52:49,901 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,901 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,901 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,901 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,901 numba.core.ssa DEBUG Running -13:52:49,901 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,901 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value == $const152.1 -13:52:49,901 numba.core.ssa DEBUG find_def var='num_neg_value' stmt=$154compare_op.2 = num_neg_value == $const152.1 -13:52:49,902 numba.core.ssa DEBUG find_def_from_top label 150 -13:52:49,902 numba.core.ssa DEBUG idom 92 from label 150 -13:52:49,902 numba.core.ssa DEBUG find_def_from_bottom label 92 -13:52:49,902 numba.core.ssa DEBUG find_def_from_top label 92 -13:52:49,902 numba.core.ssa DEBUG idom 42 from label 92 -13:52:49,902 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,902 numba.core.ssa DEBUG replaced with: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,902 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,902 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,902 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,902 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,902 numba.core.ssa DEBUG Running -13:52:49,902 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,902 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size == $const164.1 -13:52:49,902 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,902 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,902 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,902 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,902 numba.core.ssa DEBUG Running -13:52:49,902 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,902 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,902 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,902 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,902 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,902 numba.core.ssa DEBUG Running -13:52:49,902 numba.core.ssa DEBUG on stmt: inferred = origsize // known_size -13:52:49,903 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size -13:52:49,903 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,903 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,903 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,903 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,903 numba.core.ssa DEBUG Running -13:52:49,903 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,903 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,903 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,903 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,903 numba.core.ssa DEBUG Running -13:52:49,903 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,903 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,903 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,903 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,903 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,903 numba.core.ssa DEBUG Running -13:52:49,903 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred -13:52:49,903 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,903 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,903 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,903 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,903 numba.core.ssa DEBUG Running -13:52:49,903 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,903 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,904 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,904 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,904 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,904 numba.core.ssa DEBUG Running -13:52:49,904 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,904 numba.core.ssa DEBUG Fix SSA violator on var known_size -13:52:49,904 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,904 numba.core.ssa DEBUG Running -13:52:49,904 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,904 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,904 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,904 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,904 numba.core.ssa DEBUG first assign: known_size -13:52:49,904 numba.core.ssa DEBUG replaced with: known_size = const(int, 1) -13:52:49,904 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,904 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,904 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,904 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,904 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,904 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,904 numba.core.ssa DEBUG Running -13:52:49,904 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,904 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,904 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,904 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,904 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,905 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,905 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,905 numba.core.ssa DEBUG Running -13:52:49,905 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,905 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,905 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,905 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,905 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,905 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,905 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,905 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,905 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,905 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,905 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,905 numba.core.ssa DEBUG Running -13:52:49,905 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,905 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,905 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,905 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,905 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,905 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,905 numba.core.ssa DEBUG Running -13:52:49,905 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,905 numba.core.ssa DEBUG on stmt: known_size = $binop_imul84.3 -13:52:49,905 numba.core.ssa DEBUG replaced with: known_size.1 = $binop_imul84.3 -13:52:49,905 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,905 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,906 numba.core.ssa DEBUG Running -13:52:49,906 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,906 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,906 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,906 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,906 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,906 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,906 numba.core.ssa DEBUG Running -13:52:49,906 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size -13:52:49,906 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,906 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,906 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,906 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,906 numba.core.ssa DEBUG Running -13:52:49,906 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,906 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,906 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,906 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,906 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,906 numba.core.ssa DEBUG Running -13:52:49,906 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,906 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,906 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,906 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,906 numba.core.ssa DEBUG Running -13:52:49,906 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,907 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,907 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,907 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,907 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,907 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,907 numba.core.ssa DEBUG Running -13:52:49,907 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,907 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size == $const164.1 -13:52:49,907 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,907 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,907 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,907 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,907 numba.core.ssa DEBUG Running -13:52:49,907 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,907 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,907 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,907 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,907 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,907 numba.core.ssa DEBUG Running -13:52:49,907 numba.core.ssa DEBUG on stmt: inferred = origsize // known_size -13:52:49,907 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size -13:52:49,907 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,907 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,907 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,907 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,907 numba.core.ssa DEBUG Running -13:52:49,907 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,908 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,908 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,908 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,908 numba.core.ssa DEBUG Running -13:52:49,908 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,908 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,908 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,908 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,908 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,908 numba.core.ssa DEBUG Running -13:52:49,908 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred -13:52:49,908 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,908 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,908 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,908 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,908 numba.core.ssa DEBUG Running -13:52:49,908 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,908 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,908 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,908 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,908 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,908 numba.core.ssa DEBUG Running -13:52:49,908 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,908 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,908 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 80: []}) -13:52:49,909 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,909 numba.core.ssa DEBUG Running -13:52:49,909 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,909 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,909 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,909 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,909 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,909 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,909 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,909 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,909 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,909 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,909 numba.core.ssa DEBUG Running -13:52:49,909 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,909 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,909 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,909 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,909 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,909 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,909 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,909 numba.core.ssa DEBUG Running -13:52:49,909 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,909 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,909 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,909 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,909 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,910 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,910 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,910 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,910 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,910 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,910 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,910 numba.core.ssa DEBUG Running -13:52:49,910 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,910 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,910 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,910 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,910 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,910 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,910 numba.core.ssa DEBUG Running -13:52:49,910 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,910 numba.core.ssa DEBUG find_def var='known_size' stmt=$binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,910 numba.core.ssa DEBUG find_def_from_top label 80 -13:52:49,910 numba.core.ssa DEBUG idom 44 from label 80 -13:52:49,910 numba.core.ssa DEBUG find_def_from_bottom label 44 -13:52:49,910 numba.core.ssa DEBUG find_def_from_top label 44 -13:52:49,910 numba.core.ssa DEBUG idom 42 from label 44 -13:52:49,910 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,910 numba.core.ssa DEBUG find_def_from_top label 42 -13:52:49,910 numba.core.ssa DEBUG insert phi node known_size.2 = phi(incoming_values=[], incoming_blocks=[]) at 42 -13:52:49,910 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:49,910 numba.core.ssa DEBUG incoming_def known_size = const(int, 1) -13:52:49,910 numba.core.ssa DEBUG find_def_from_bottom label 269 -13:52:49,910 numba.core.ssa DEBUG find_def_from_top label 269 -13:52:49,910 numba.core.ssa DEBUG insert phi node known_size.3 = phi(incoming_values=[], incoming_blocks=[]) at 269 -13:52:49,911 numba.core.ssa DEBUG find_def_from_bottom label 64 -13:52:49,911 numba.core.ssa DEBUG find_def_from_top label 64 -13:52:49,911 numba.core.ssa DEBUG idom 44 from label 64 -13:52:49,911 numba.core.ssa DEBUG find_def_from_bottom label 44 -13:52:49,911 numba.core.ssa DEBUG find_def_from_top label 44 -13:52:49,911 numba.core.ssa DEBUG idom 42 from label 44 -13:52:49,911 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,911 numba.core.ssa DEBUG incoming_def known_size.2 = phi(incoming_values=[Var(known_size, arrayobj.py:2048)], incoming_blocks=[0]) -13:52:49,911 numba.core.ssa DEBUG find_def_from_bottom label 80 -13:52:49,911 numba.core.ssa DEBUG incoming_def known_size.1 = $binop_imul84.3 -13:52:49,911 numba.core.ssa DEBUG incoming_def known_size.3 = phi(incoming_values=[Var(known_size.2, arrayobj.py:2054), Var(known_size.1, arrayobj.py:2054)], incoming_blocks=[64, 80]) -13:52:49,911 numba.core.ssa DEBUG replaced with: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size.2, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,911 numba.core.ssa DEBUG on stmt: known_size.1 = $binop_imul84.3 -13:52:49,911 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,911 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,911 numba.core.ssa DEBUG Running -13:52:49,911 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,911 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,911 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,911 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,911 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,911 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,911 numba.core.ssa DEBUG Running -13:52:49,911 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size -13:52:49,911 numba.core.ssa DEBUG find_def var='known_size' stmt=$108compare_op.2 = origsize != known_size -13:52:49,911 numba.core.ssa DEBUG find_def_from_top label 104 -13:52:49,911 numba.core.ssa DEBUG idom 92 from label 104 -13:52:49,911 numba.core.ssa DEBUG find_def_from_bottom label 92 -13:52:49,911 numba.core.ssa DEBUG find_def_from_top label 92 -13:52:49,911 numba.core.ssa DEBUG idom 42 from label 92 -13:52:49,912 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,912 numba.core.ssa DEBUG replaced with: $108compare_op.2 = origsize != known_size.2 -13:52:49,912 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,912 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,912 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,912 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,912 numba.core.ssa DEBUG Running -13:52:49,912 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,912 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,912 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,912 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,912 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,912 numba.core.ssa DEBUG Running -13:52:49,912 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,912 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,912 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,912 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,912 numba.core.ssa DEBUG Running -13:52:49,912 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,912 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,912 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,912 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,912 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,912 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,912 numba.core.ssa DEBUG Running -13:52:49,912 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,913 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size == $const164.1 -13:52:49,913 numba.core.ssa DEBUG find_def var='known_size' stmt=$166compare_op.2 = known_size == $const164.1 -13:52:49,913 numba.core.ssa DEBUG find_def_from_top label 162 -13:52:49,913 numba.core.ssa DEBUG idom 150 from label 162 -13:52:49,913 numba.core.ssa DEBUG find_def_from_bottom label 150 -13:52:49,913 numba.core.ssa DEBUG find_def_from_top label 150 -13:52:49,913 numba.core.ssa DEBUG idom 92 from label 150 -13:52:49,913 numba.core.ssa DEBUG find_def_from_bottom label 92 -13:52:49,913 numba.core.ssa DEBUG find_def_from_top label 92 -13:52:49,913 numba.core.ssa DEBUG idom 42 from label 92 -13:52:49,913 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,913 numba.core.ssa DEBUG replaced with: $166compare_op.2 = known_size.2 == $const164.1 -13:52:49,913 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,913 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,913 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,913 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,913 numba.core.ssa DEBUG Running -13:52:49,913 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,913 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,913 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,913 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,913 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,913 numba.core.ssa DEBUG Running -13:52:49,913 numba.core.ssa DEBUG on stmt: inferred = origsize // known_size -13:52:49,913 numba.core.ssa DEBUG find_def var='known_size' stmt=inferred = origsize // known_size -13:52:49,913 numba.core.ssa DEBUG find_def_from_top label 192 -13:52:49,913 numba.core.ssa DEBUG idom 162 from label 192 -13:52:49,913 numba.core.ssa DEBUG find_def_from_bottom label 162 -13:52:49,913 numba.core.ssa DEBUG find_def_from_top label 162 -13:52:49,913 numba.core.ssa DEBUG idom 150 from label 162 -13:52:49,914 numba.core.ssa DEBUG find_def_from_bottom label 150 -13:52:49,914 numba.core.ssa DEBUG find_def_from_top label 150 -13:52:49,914 numba.core.ssa DEBUG idom 92 from label 150 -13:52:49,914 numba.core.ssa DEBUG find_def_from_bottom label 92 -13:52:49,914 numba.core.ssa DEBUG find_def_from_top label 92 -13:52:49,914 numba.core.ssa DEBUG idom 42 from label 92 -13:52:49,914 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,914 numba.core.ssa DEBUG replaced with: inferred = origsize // known_size.2 -13:52:49,914 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size -13:52:49,914 numba.core.ssa DEBUG find_def var='known_size' stmt=$binop_mod206.5 = origsize % known_size -13:52:49,914 numba.core.ssa DEBUG find_def_from_top label 192 -13:52:49,914 numba.core.ssa DEBUG idom 162 from label 192 -13:52:49,914 numba.core.ssa DEBUG find_def_from_bottom label 162 -13:52:49,914 numba.core.ssa DEBUG find_def_from_top label 162 -13:52:49,914 numba.core.ssa DEBUG idom 150 from label 162 -13:52:49,914 numba.core.ssa DEBUG find_def_from_bottom label 150 -13:52:49,914 numba.core.ssa DEBUG find_def_from_top label 150 -13:52:49,914 numba.core.ssa DEBUG idom 92 from label 150 -13:52:49,914 numba.core.ssa DEBUG find_def_from_bottom label 92 -13:52:49,914 numba.core.ssa DEBUG find_def_from_top label 92 -13:52:49,914 numba.core.ssa DEBUG idom 42 from label 92 -13:52:49,914 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,914 numba.core.ssa DEBUG replaced with: $binop_mod206.5 = origsize % known_size.2 -13:52:49,914 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,914 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,914 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,914 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,914 numba.core.ssa DEBUG Running -13:52:49,914 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,914 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,915 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,915 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,915 numba.core.ssa DEBUG Running -13:52:49,915 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,915 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,915 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,915 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,915 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,915 numba.core.ssa DEBUG Running -13:52:49,915 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred -13:52:49,915 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,915 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,915 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,915 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,915 numba.core.ssa DEBUG Running -13:52:49,915 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,915 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,915 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,915 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,915 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,915 numba.core.ssa DEBUG Running -13:52:49,915 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,915 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,915 numba.core.ssa DEBUG Fix SSA violator on var inferred -13:52:49,915 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,916 numba.core.ssa DEBUG Running -13:52:49,916 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,916 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,916 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,916 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,916 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,916 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,916 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,916 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,916 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,916 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,916 numba.core.ssa DEBUG Running -13:52:49,916 numba.core.ssa DEBUG on stmt: known_size.2 = phi(incoming_values=[Var(known_size, arrayobj.py:2048), Var(known_size.3, arrayobj.py:2054)], incoming_blocks=[0, 269]) -13:52:49,916 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,916 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,916 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,916 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,916 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,916 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,916 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,916 numba.core.ssa DEBUG Running -13:52:49,916 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,916 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,916 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,916 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,916 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,916 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,917 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,917 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,917 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,917 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,917 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,917 numba.core.ssa DEBUG Running -13:52:49,917 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,917 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,917 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,917 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,917 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,917 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,917 numba.core.ssa DEBUG Running -13:52:49,917 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size.2, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,917 numba.core.ssa DEBUG on stmt: known_size.1 = $binop_imul84.3 -13:52:49,917 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,917 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,917 numba.core.ssa DEBUG Running -13:52:49,917 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,917 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,917 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,917 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,917 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,917 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,917 numba.core.ssa DEBUG Running -13:52:49,917 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size.2 -13:52:49,917 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,918 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,918 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,918 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,918 numba.core.ssa DEBUG Running -13:52:49,918 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,918 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,918 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,918 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,918 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,918 numba.core.ssa DEBUG Running -13:52:49,918 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,918 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,918 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,918 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,918 numba.core.ssa DEBUG Running -13:52:49,918 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,918 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,918 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,918 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,918 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,918 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,918 numba.core.ssa DEBUG Running -13:52:49,918 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,918 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size.2 == $const164.1 -13:52:49,918 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,918 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,919 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,919 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,919 numba.core.ssa DEBUG Running -13:52:49,919 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,919 numba.core.ssa DEBUG first assign: inferred -13:52:49,919 numba.core.ssa DEBUG replaced with: inferred = const(int, 0) -13:52:49,919 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,919 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,919 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,919 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,919 numba.core.ssa DEBUG Running -13:52:49,919 numba.core.ssa DEBUG on stmt: inferred = origsize // known_size.2 -13:52:49,919 numba.core.ssa DEBUG replaced with: inferred.1 = origsize // known_size.2 -13:52:49,919 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size.2 -13:52:49,919 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,919 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,919 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,919 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,919 numba.core.ssa DEBUG Running -13:52:49,919 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,919 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,919 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,919 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,919 numba.core.ssa DEBUG Running -13:52:49,919 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,919 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,919 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,920 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,920 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,920 numba.core.ssa DEBUG Running -13:52:49,920 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred -13:52:49,920 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,920 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,920 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,920 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,920 numba.core.ssa DEBUG Running -13:52:49,920 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,920 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,920 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,920 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,920 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,920 numba.core.ssa DEBUG Running -13:52:49,920 numba.core.ssa DEBUG on stmt: known_size.3 = phi(incoming_values=[Var(known_size.2, arrayobj.py:2054), Var(known_size.1, arrayobj.py:2054)], incoming_blocks=[64, 80]) -13:52:49,920 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,920 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,920 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {174: [], - 192: []}) -13:52:49,920 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,920 numba.core.ssa DEBUG Running -13:52:49,920 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,920 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,920 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,920 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,921 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,921 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,921 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,921 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,921 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,921 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,921 numba.core.ssa DEBUG Running -13:52:49,921 numba.core.ssa DEBUG on stmt: known_size.2 = phi(incoming_values=[Var(known_size, arrayobj.py:2048), Var(known_size.3, arrayobj.py:2054)], incoming_blocks=[0, 269]) -13:52:49,921 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,921 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,921 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,921 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,921 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,921 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,921 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,921 numba.core.ssa DEBUG Running -13:52:49,921 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,921 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,921 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,921 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,921 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,921 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,921 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,921 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,921 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,922 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,922 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,922 numba.core.ssa DEBUG Running -13:52:49,922 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,922 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,922 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,922 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,922 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,922 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,922 numba.core.ssa DEBUG Running -13:52:49,922 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size.2, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,922 numba.core.ssa DEBUG on stmt: known_size.1 = $binop_imul84.3 -13:52:49,922 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,922 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,922 numba.core.ssa DEBUG Running -13:52:49,922 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,922 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,922 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,922 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,922 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,922 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,922 numba.core.ssa DEBUG Running -13:52:49,922 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size.2 -13:52:49,922 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,922 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,923 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,923 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,923 numba.core.ssa DEBUG Running -13:52:49,923 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,923 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,923 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,923 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,923 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,923 numba.core.ssa DEBUG Running -13:52:49,923 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,923 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,923 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,923 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,923 numba.core.ssa DEBUG Running -13:52:49,923 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,923 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,923 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,923 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,923 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,923 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,923 numba.core.ssa DEBUG Running -13:52:49,923 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,923 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size.2 == $const164.1 -13:52:49,923 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,923 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,923 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,924 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,924 numba.core.ssa DEBUG Running -13:52:49,924 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,924 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,924 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,924 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,924 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,924 numba.core.ssa DEBUG Running -13:52:49,924 numba.core.ssa DEBUG on stmt: inferred.1 = origsize // known_size.2 -13:52:49,924 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size.2 -13:52:49,924 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,924 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,924 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,924 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,924 numba.core.ssa DEBUG Running -13:52:49,924 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,924 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,924 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,924 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,924 numba.core.ssa DEBUG Running -13:52:49,924 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,924 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,924 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,924 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,924 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,924 numba.core.ssa DEBUG Running -13:52:49,925 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred -13:52:49,925 numba.core.ssa DEBUG find_def var='inferred' stmt=shape[neg_ax] = inferred -13:52:49,925 numba.core.ssa DEBUG find_def_from_top label 254 -13:52:49,925 numba.core.ssa DEBUG idom 220 from label 254 -13:52:49,925 numba.core.ssa DEBUG find_def_from_bottom label 220 -13:52:49,925 numba.core.ssa DEBUG find_def_from_top label 220 -13:52:49,925 numba.core.ssa DEBUG insert phi node inferred.2 = phi(incoming_values=[], incoming_blocks=[]) at 220 -13:52:49,925 numba.core.ssa DEBUG find_def_from_bottom label 192 -13:52:49,925 numba.core.ssa DEBUG incoming_def inferred.1 = origsize // known_size.2 -13:52:49,925 numba.core.ssa DEBUG find_def_from_bottom label 174 -13:52:49,925 numba.core.ssa DEBUG incoming_def inferred = const(int, 0) -13:52:49,925 numba.core.ssa DEBUG replaced with: shape[neg_ax] = inferred.2 -13:52:49,925 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,925 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,925 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,925 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,925 numba.core.ssa DEBUG Running -13:52:49,925 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,925 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,925 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,925 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,925 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,925 numba.core.ssa DEBUG Running -13:52:49,925 numba.core.ssa DEBUG on stmt: known_size.3 = phi(incoming_values=[Var(known_size.2, arrayobj.py:2054), Var(known_size.1, arrayobj.py:2054)], incoming_blocks=[64, 80]) -13:52:49,925 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,925 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,925 numba.core.ssa DEBUG Fix SSA violator on var ok -13:52:49,926 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,926 numba.core.ssa DEBUG Running -13:52:49,926 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,926 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,926 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,926 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,926 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,926 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,926 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,926 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,926 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,926 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,926 numba.core.ssa DEBUG Running -13:52:49,926 numba.core.ssa DEBUG on stmt: known_size.2 = phi(incoming_values=[Var(known_size, arrayobj.py:2048), Var(known_size.3, arrayobj.py:2054)], incoming_blocks=[0, 269]) -13:52:49,926 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,926 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,926 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,926 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,926 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,926 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,926 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,926 numba.core.ssa DEBUG Running -13:52:49,926 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,926 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,926 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,926 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,926 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,927 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,927 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,927 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,927 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,927 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,927 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,927 numba.core.ssa DEBUG Running -13:52:49,927 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,927 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,927 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,927 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,927 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,927 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,927 numba.core.ssa DEBUG Running -13:52:49,927 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size.2, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,927 numba.core.ssa DEBUG on stmt: known_size.1 = $binop_imul84.3 -13:52:49,927 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,927 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,927 numba.core.ssa DEBUG Running -13:52:49,927 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,927 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,927 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,927 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,927 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,927 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,927 numba.core.ssa DEBUG Running -13:52:49,927 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size.2 -13:52:49,928 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,928 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,928 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,928 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,928 numba.core.ssa DEBUG Running -13:52:49,928 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,928 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,928 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,928 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,928 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,928 numba.core.ssa DEBUG Running -13:52:49,928 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,928 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,928 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,928 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,928 numba.core.ssa DEBUG Running -13:52:49,928 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,928 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,928 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,928 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,928 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,928 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,928 numba.core.ssa DEBUG Running -13:52:49,928 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,928 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size.2 == $const164.1 -13:52:49,928 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,929 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,929 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,929 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,929 numba.core.ssa DEBUG Running -13:52:49,929 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,929 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,929 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,929 numba.core.ssa DEBUG first assign: ok -13:52:49,929 numba.core.ssa DEBUG replaced with: ok = origsize == $const180.2 -13:52:49,929 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,929 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,929 numba.core.ssa DEBUG Running -13:52:49,929 numba.core.ssa DEBUG on stmt: inferred.1 = origsize // known_size.2 -13:52:49,929 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size.2 -13:52:49,929 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,929 numba.core.ssa DEBUG on stmt: ok = $binop_mod206.5 == $const210.6 -13:52:49,929 numba.core.ssa DEBUG replaced with: ok.1 = $binop_mod206.5 == $const210.6 -13:52:49,929 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,929 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,929 numba.core.ssa DEBUG Running -13:52:49,929 numba.core.ssa DEBUG on stmt: inferred.2 = phi(incoming_values=[Var(inferred.1, arrayobj.py:2066), Var(inferred, arrayobj.py:2063)], incoming_blocks=[192, 174]) -13:52:49,929 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,929 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,929 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,929 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,929 numba.core.ssa DEBUG Running -13:52:49,930 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,930 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,930 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,930 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,930 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,930 numba.core.ssa DEBUG Running -13:52:49,930 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred.2 -13:52:49,930 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,930 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,930 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,930 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,930 numba.core.ssa DEBUG Running -13:52:49,930 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,930 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,930 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,930 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,930 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,930 numba.core.ssa DEBUG Running -13:52:49,930 numba.core.ssa DEBUG on stmt: known_size.3 = phi(incoming_values=[Var(known_size.2, arrayobj.py:2054), Var(known_size.1, arrayobj.py:2054)], incoming_blocks=[64, 80]) -13:52:49,930 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,930 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,931 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {174: [], - 192: []}) -13:52:49,931 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,931 numba.core.ssa DEBUG Running -13:52:49,931 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,931 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,931 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,931 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,931 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,931 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,931 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,931 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,931 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,931 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,931 numba.core.ssa DEBUG Running -13:52:49,931 numba.core.ssa DEBUG on stmt: known_size.2 = phi(incoming_values=[Var(known_size, arrayobj.py:2048), Var(known_size.3, arrayobj.py:2054)], incoming_blocks=[0, 269]) -13:52:49,931 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,931 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,931 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,931 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,931 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,931 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,931 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,931 numba.core.ssa DEBUG Running -13:52:49,931 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,931 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,932 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,932 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,932 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,932 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,932 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,932 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,932 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,932 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,932 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,932 numba.core.ssa DEBUG Running -13:52:49,932 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,932 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,932 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,932 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,932 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,932 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,932 numba.core.ssa DEBUG Running -13:52:49,932 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size.2, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,932 numba.core.ssa DEBUG on stmt: known_size.1 = $binop_imul84.3 -13:52:49,932 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,932 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,932 numba.core.ssa DEBUG Running -13:52:49,932 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,932 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,932 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,932 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,933 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,933 numba.core.ssa DEBUG Running -13:52:49,933 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size.2 -13:52:49,933 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,933 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,933 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,933 numba.core.ssa DEBUG Running -13:52:49,933 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,933 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,933 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,933 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,933 numba.core.ssa DEBUG Running -13:52:49,933 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,933 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,933 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,933 numba.core.ssa DEBUG Running -13:52:49,933 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,933 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,933 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,933 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,933 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,934 numba.core.ssa DEBUG Running -13:52:49,934 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,934 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size.2 == $const164.1 -13:52:49,934 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,934 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,934 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,934 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,934 numba.core.ssa DEBUG Running -13:52:49,934 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,934 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,934 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,934 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,934 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,934 numba.core.ssa DEBUG Running -13:52:49,934 numba.core.ssa DEBUG on stmt: inferred.1 = origsize // known_size.2 -13:52:49,934 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size.2 -13:52:49,934 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,934 numba.core.ssa DEBUG on stmt: ok.1 = $binop_mod206.5 == $const210.6 -13:52:49,934 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,934 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,934 numba.core.ssa DEBUG Running -13:52:49,934 numba.core.ssa DEBUG on stmt: inferred.2 = phi(incoming_values=[Var(inferred.1, arrayobj.py:2066), Var(inferred, arrayobj.py:2063)], incoming_blocks=[192, 174]) -13:52:49,934 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,934 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,934 numba.core.ssa DEBUG find_def var='ok' stmt=$222pred = call bool222(ok, func=bool222, args=(Var(ok, arrayobj.py:2064),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,935 numba.core.ssa DEBUG find_def_from_top label 220 -13:52:49,935 numba.core.ssa DEBUG insert phi node ok.2 = phi(incoming_values=[], incoming_blocks=[]) at 220 -13:52:49,935 numba.core.ssa DEBUG find_def_from_bottom label 192 -13:52:49,935 numba.core.ssa DEBUG incoming_def ok.1 = $binop_mod206.5 == $const210.6 -13:52:49,935 numba.core.ssa DEBUG find_def_from_bottom label 174 -13:52:49,935 numba.core.ssa DEBUG incoming_def ok = origsize == $const180.2 -13:52:49,935 numba.core.ssa DEBUG replaced with: $222pred = call bool222(ok.2, func=bool222, args=(Var(ok.2, arrayobj.py:2068),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,935 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,935 numba.core.ssa DEBUG Running -13:52:49,935 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,935 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,935 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,935 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,935 numba.core.ssa DEBUG Running -13:52:49,935 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred.2 -13:52:49,935 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,935 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,935 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,935 numba.core.ssa DEBUG Running -13:52:49,935 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,935 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,935 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,935 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,936 numba.core.ssa DEBUG Running -13:52:49,936 numba.core.ssa DEBUG on stmt: known_size.3 = phi(incoming_values=[Var(known_size.2, arrayobj.py:2054), Var(known_size.1, arrayobj.py:2054)], incoming_blocks=[64, 80]) -13:52:49,936 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,936 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,936 numba.core.ssa DEBUG Fix SSA violator on var neg_ax -13:52:49,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,936 numba.core.ssa DEBUG Running -13:52:49,936 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,936 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,936 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,936 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,936 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,936 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,936 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,936 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,936 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,936 numba.core.ssa DEBUG Running -13:52:49,936 numba.core.ssa DEBUG on stmt: known_size.2 = phi(incoming_values=[Var(known_size, arrayobj.py:2048), Var(known_size.3, arrayobj.py:2054)], incoming_blocks=[0, 269]) -13:52:49,936 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,936 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,936 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,936 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,936 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,936 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,937 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,937 numba.core.ssa DEBUG Running -13:52:49,937 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,937 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,937 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,937 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,937 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,937 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,937 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,937 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,937 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,937 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,937 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,937 numba.core.ssa DEBUG Running -13:52:49,937 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,937 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,937 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,937 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,937 numba.core.ssa DEBUG first assign: neg_ax -13:52:49,937 numba.core.ssa DEBUG replaced with: neg_ax = ax -13:52:49,937 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,937 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,937 numba.core.ssa DEBUG Running -13:52:49,937 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size.2, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,937 numba.core.ssa DEBUG on stmt: known_size.1 = $binop_imul84.3 -13:52:49,937 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,937 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,938 numba.core.ssa DEBUG Running -13:52:49,938 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,938 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,938 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,938 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,938 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,938 numba.core.ssa DEBUG Running -13:52:49,938 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size.2 -13:52:49,938 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,938 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,938 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,938 numba.core.ssa DEBUG Running -13:52:49,938 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,938 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,938 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,938 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,938 numba.core.ssa DEBUG Running -13:52:49,938 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,938 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,938 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,938 numba.core.ssa DEBUG Running -13:52:49,938 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,938 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,939 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,939 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,939 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,939 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,939 numba.core.ssa DEBUG Running -13:52:49,939 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,939 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size.2 == $const164.1 -13:52:49,939 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,939 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,939 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,939 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,939 numba.core.ssa DEBUG Running -13:52:49,939 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,939 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,939 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,939 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,939 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,939 numba.core.ssa DEBUG Running -13:52:49,939 numba.core.ssa DEBUG on stmt: inferred.1 = origsize // known_size.2 -13:52:49,939 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size.2 -13:52:49,939 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,939 numba.core.ssa DEBUG on stmt: ok.1 = $binop_mod206.5 == $const210.6 -13:52:49,939 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,939 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,939 numba.core.ssa DEBUG Running -13:52:49,940 numba.core.ssa DEBUG on stmt: ok.2 = phi(incoming_values=[Var(ok.1, arrayobj.py:2067), Var(ok, arrayobj.py:2064)], incoming_blocks=[192, 174]) -13:52:49,940 numba.core.ssa DEBUG on stmt: inferred.2 = phi(incoming_values=[Var(inferred.1, arrayobj.py:2066), Var(inferred, arrayobj.py:2063)], incoming_blocks=[192, 174]) -13:52:49,940 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,940 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok.2, func=bool222, args=(Var(ok.2, arrayobj.py:2068),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,940 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,940 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,940 numba.core.ssa DEBUG Running -13:52:49,940 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,940 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,940 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,940 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,940 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,940 numba.core.ssa DEBUG Running -13:52:49,940 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred.2 -13:52:49,940 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,940 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,940 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,940 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,940 numba.core.ssa DEBUG Running -13:52:49,940 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,940 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,940 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,940 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,940 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,940 numba.core.ssa DEBUG Running -13:52:49,940 numba.core.ssa DEBUG on stmt: known_size.3 = phi(incoming_values=[Var(known_size.2, arrayobj.py:2054), Var(known_size.1, arrayobj.py:2054)], incoming_blocks=[64, 80]) -13:52:49,940 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,941 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,941 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {64: []}) -13:52:49,941 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:49,941 numba.core.ssa DEBUG Running -13:52:49,941 numba.core.ssa DEBUG on stmt: origsize = arg(0, name=origsize) -13:52:49,941 numba.core.ssa DEBUG on stmt: shape = arg(1, name=shape) -13:52:49,941 numba.core.ssa DEBUG on stmt: num_neg_value = const(int, 0) -13:52:49,941 numba.core.ssa DEBUG on stmt: known_size = const(int, 1) -13:52:49,941 numba.core.ssa DEBUG on stmt: $12load_global.2 = global(enumerate: ) -13:52:49,941 numba.core.ssa DEBUG on stmt: $30call.5 = call $12load_global.2(shape, func=$12load_global.2, args=[Var(shape, arrayobj.py:2046)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,941 numba.core.ssa DEBUG on stmt: $40get_iter.6 = getiter(value=$30call.5) -13:52:49,941 numba.core.ssa DEBUG on stmt: $phi42.0 = $40get_iter.6 -13:52:49,941 numba.core.ssa DEBUG on stmt: jump 42 -13:52:49,941 numba.core.ssa DEBUG ==== SSA block rewrite pass on 42 -13:52:49,941 numba.core.ssa DEBUG Running -13:52:49,941 numba.core.ssa DEBUG on stmt: known_size.2 = phi(incoming_values=[Var(known_size, arrayobj.py:2048), Var(known_size.3, arrayobj.py:2054)], incoming_blocks=[0, 269]) -13:52:49,941 numba.core.ssa DEBUG on stmt: num_neg_value.2 = phi(incoming_values=[Var(num_neg_value, arrayobj.py:2047), Var(num_neg_value.3, arrayobj.py:2051)], incoming_blocks=[0, 269]) -13:52:49,941 numba.core.ssa DEBUG on stmt: $42for_iter.1 = iternext(value=$phi42.0) -13:52:49,941 numba.core.ssa DEBUG on stmt: $42for_iter.2 = pair_first(value=$42for_iter.1) -13:52:49,941 numba.core.ssa DEBUG on stmt: $42for_iter.3 = pair_second(value=$42for_iter.1) -13:52:49,941 numba.core.ssa DEBUG on stmt: $phi44.1 = $42for_iter.2 -13:52:49,941 numba.core.ssa DEBUG on stmt: branch $42for_iter.3, 44, 92 -13:52:49,941 numba.core.ssa DEBUG ==== SSA block rewrite pass on 44 -13:52:49,941 numba.core.ssa DEBUG Running -13:52:49,942 numba.core.ssa DEBUG on stmt: $44unpack_sequence.4 = exhaust_iter(value=$phi44.1, count=2) -13:52:49,942 numba.core.ssa DEBUG on stmt: $44unpack_sequence.2 = static_getitem(value=$44unpack_sequence.4, index=0, index_var=None, fn=) -13:52:49,942 numba.core.ssa DEBUG on stmt: $44unpack_sequence.3 = static_getitem(value=$44unpack_sequence.4, index=1, index_var=None, fn=) -13:52:49,942 numba.core.ssa DEBUG on stmt: ax = $44unpack_sequence.2 -13:52:49,942 numba.core.ssa DEBUG on stmt: s = $44unpack_sequence.3 -13:52:49,942 numba.core.ssa DEBUG on stmt: $const54.6 = const(int, 0) -13:52:49,942 numba.core.ssa DEBUG on stmt: $56compare_op.7 = s < $const54.6 -13:52:49,942 numba.core.ssa DEBUG on stmt: bool62 = global(bool: ) -13:52:49,942 numba.core.ssa DEBUG on stmt: $62pred = call bool62($56compare_op.7, func=bool62, args=(Var($56compare_op.7, arrayobj.py:2050),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,942 numba.core.ssa DEBUG on stmt: branch $62pred, 64, 80 -13:52:49,942 numba.core.ssa DEBUG ==== SSA block rewrite pass on 64 -13:52:49,942 numba.core.ssa DEBUG Running -13:52:49,942 numba.core.ssa DEBUG on stmt: $const66.2 = const(int, 1) -13:52:49,942 numba.core.ssa DEBUG on stmt: $binop_iadd68.3 = inplace_binop(fn=, immutable_fn=, lhs=num_neg_value.2, rhs=$const66.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,942 numba.core.ssa DEBUG on stmt: num_neg_value.1 = $binop_iadd68.3 -13:52:49,942 numba.core.ssa DEBUG on stmt: neg_ax = ax -13:52:49,942 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,942 numba.core.ssa DEBUG ==== SSA block rewrite pass on 80 -13:52:49,942 numba.core.ssa DEBUG Running -13:52:49,942 numba.core.ssa DEBUG on stmt: $binop_imul84.3 = inplace_binop(fn=, immutable_fn=, lhs=known_size.2, rhs=s, static_lhs=Undefined, static_rhs=Undefined) -13:52:49,942 numba.core.ssa DEBUG on stmt: known_size.1 = $binop_imul84.3 -13:52:49,942 numba.core.ssa DEBUG on stmt: jump 269 -13:52:49,942 numba.core.ssa DEBUG ==== SSA block rewrite pass on 92 -13:52:49,942 numba.core.ssa DEBUG Running -13:52:49,942 numba.core.ssa DEBUG on stmt: $const94.1 = const(int, 0) -13:52:49,942 numba.core.ssa DEBUG on stmt: $96compare_op.2 = num_neg_value.2 == $const94.1 -13:52:49,943 numba.core.ssa DEBUG on stmt: bool102 = global(bool: ) -13:52:49,943 numba.core.ssa DEBUG on stmt: $102pred = call bool102($96compare_op.2, func=bool102, args=(Var($96compare_op.2, arrayobj.py:2056),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,943 numba.core.ssa DEBUG on stmt: branch $102pred, 104, 150 -13:52:49,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 104 -13:52:49,943 numba.core.ssa DEBUG Running -13:52:49,943 numba.core.ssa DEBUG on stmt: $108compare_op.2 = origsize != known_size.2 -13:52:49,943 numba.core.ssa DEBUG on stmt: bool114 = global(bool: ) -13:52:49,943 numba.core.ssa DEBUG on stmt: $114pred = call bool114($108compare_op.2, func=bool114, args=(Var($108compare_op.2, arrayobj.py:2057),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,943 numba.core.ssa DEBUG on stmt: branch $114pred, 116, 146 -13:52:49,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 116 -13:52:49,943 numba.core.ssa DEBUG Running -13:52:49,943 numba.core.ssa DEBUG on stmt: $116load_global.0 = global(ValueError: ) -13:52:49,943 numba.core.ssa DEBUG on stmt: $const128.2 = const(str, total size of new array must be unchanged) -13:52:49,943 numba.core.ssa DEBUG on stmt: $134call.3 = call $116load_global.0($const128.2, func=$116load_global.0, args=[Var($const128.2, arrayobj.py:2058)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,943 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 146 -13:52:49,943 numba.core.ssa DEBUG Running -13:52:49,943 numba.core.ssa DEBUG on stmt: $const146.0 = const(NoneType, None) -13:52:49,943 numba.core.ssa DEBUG on stmt: $148return_value.1 = cast(value=$const146.0) -13:52:49,943 numba.core.ssa DEBUG on stmt: return $148return_value.1 -13:52:49,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 150 -13:52:49,943 numba.core.ssa DEBUG Running -13:52:49,943 numba.core.ssa DEBUG on stmt: $const152.1 = const(int, 1) -13:52:49,943 numba.core.ssa DEBUG on stmt: $154compare_op.2 = num_neg_value.2 == $const152.1 -13:52:49,943 numba.core.ssa DEBUG on stmt: bool160 = global(bool: ) -13:52:49,943 numba.core.ssa DEBUG on stmt: $160pred = call bool160($154compare_op.2, func=bool160, args=(Var($154compare_op.2, arrayobj.py:2060),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,944 numba.core.ssa DEBUG on stmt: branch $160pred, 162, 268 -13:52:49,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 162 -13:52:49,944 numba.core.ssa DEBUG Running -13:52:49,944 numba.core.ssa DEBUG on stmt: $const164.1 = const(int, 0) -13:52:49,944 numba.core.ssa DEBUG on stmt: $166compare_op.2 = known_size.2 == $const164.1 -13:52:49,944 numba.core.ssa DEBUG on stmt: bool172 = global(bool: ) -13:52:49,944 numba.core.ssa DEBUG on stmt: $172pred = call bool172($166compare_op.2, func=bool172, args=(Var($166compare_op.2, arrayobj.py:2062),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,944 numba.core.ssa DEBUG on stmt: branch $172pred, 174, 192 -13:52:49,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 174 -13:52:49,944 numba.core.ssa DEBUG Running -13:52:49,944 numba.core.ssa DEBUG on stmt: inferred = const(int, 0) -13:52:49,944 numba.core.ssa DEBUG on stmt: $const180.2 = const(int, 0) -13:52:49,944 numba.core.ssa DEBUG on stmt: ok = origsize == $const180.2 -13:52:49,944 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 192 -13:52:49,944 numba.core.ssa DEBUG Running -13:52:49,944 numba.core.ssa DEBUG on stmt: inferred.1 = origsize // known_size.2 -13:52:49,944 numba.core.ssa DEBUG on stmt: $binop_mod206.5 = origsize % known_size.2 -13:52:49,944 numba.core.ssa DEBUG on stmt: $const210.6 = const(int, 0) -13:52:49,944 numba.core.ssa DEBUG on stmt: ok.1 = $binop_mod206.5 == $const210.6 -13:52:49,944 numba.core.ssa DEBUG on stmt: jump 220 -13:52:49,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 220 -13:52:49,944 numba.core.ssa DEBUG Running -13:52:49,944 numba.core.ssa DEBUG on stmt: ok.2 = phi(incoming_values=[Var(ok.1, arrayobj.py:2067), Var(ok, arrayobj.py:2064)], incoming_blocks=[192, 174]) -13:52:49,944 numba.core.ssa DEBUG on stmt: inferred.2 = phi(incoming_values=[Var(inferred.1, arrayobj.py:2066), Var(inferred, arrayobj.py:2063)], incoming_blocks=[192, 174]) -13:52:49,945 numba.core.ssa DEBUG on stmt: bool222 = global(bool: ) -13:52:49,945 numba.core.ssa DEBUG on stmt: $222pred = call bool222(ok.2, func=bool222, args=(Var(ok.2, arrayobj.py:2068),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,945 numba.core.ssa DEBUG on stmt: branch $222pred, 254, 224 -13:52:49,945 numba.core.ssa DEBUG ==== SSA block rewrite pass on 224 -13:52:49,945 numba.core.ssa DEBUG Running -13:52:49,945 numba.core.ssa DEBUG on stmt: $224load_global.0 = global(ValueError: ) -13:52:49,945 numba.core.ssa DEBUG on stmt: $const236.2 = const(str, total size of new array must be unchanged) -13:52:49,945 numba.core.ssa DEBUG on stmt: $242call.3 = call $224load_global.0($const236.2, func=$224load_global.0, args=[Var($const236.2, arrayobj.py:2069)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,945 numba.core.ssa DEBUG on stmt: raise ('total size of new array must be unchanged') -13:52:49,945 numba.core.ssa DEBUG ==== SSA block rewrite pass on 254 -13:52:49,945 numba.core.ssa DEBUG Running -13:52:49,945 numba.core.ssa DEBUG on stmt: shape[neg_ax] = inferred.2 -13:52:49,945 numba.core.ssa DEBUG find_def var='neg_ax' stmt=shape[neg_ax] = inferred.2 -13:52:49,945 numba.core.ssa DEBUG find_def_from_top label 254 -13:52:49,945 numba.core.ssa DEBUG idom 220 from label 254 -13:52:49,945 numba.core.ssa DEBUG find_def_from_bottom label 220 -13:52:49,945 numba.core.ssa DEBUG find_def_from_top label 220 -13:52:49,945 numba.core.ssa DEBUG idom 162 from label 220 -13:52:49,945 numba.core.ssa DEBUG find_def_from_bottom label 162 -13:52:49,945 numba.core.ssa DEBUG find_def_from_top label 162 -13:52:49,945 numba.core.ssa DEBUG idom 150 from label 162 -13:52:49,945 numba.core.ssa DEBUG find_def_from_bottom label 150 -13:52:49,945 numba.core.ssa DEBUG find_def_from_top label 150 -13:52:49,945 numba.core.ssa DEBUG idom 92 from label 150 -13:52:49,945 numba.core.ssa DEBUG find_def_from_bottom label 92 -13:52:49,945 numba.core.ssa DEBUG find_def_from_top label 92 -13:52:49,945 numba.core.ssa DEBUG idom 42 from label 92 -13:52:49,945 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,945 numba.core.ssa DEBUG find_def_from_top label 42 -13:52:49,945 numba.core.ssa DEBUG insert phi node neg_ax.1 = phi(incoming_values=[], incoming_blocks=[]) at 42 -13:52:49,945 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:49,946 numba.core.ssa DEBUG find_def_from_top label 0 -13:52:49,946 numba.core.ssa DEBUG incoming_def -13:52:49,946 numba.core.ssa DEBUG find_def_from_bottom label 269 -13:52:49,946 numba.core.ssa DEBUG find_def_from_top label 269 -13:52:49,946 numba.core.ssa DEBUG insert phi node neg_ax.2 = phi(incoming_values=[], incoming_blocks=[]) at 269 -13:52:49,946 numba.core.ssa DEBUG find_def_from_bottom label 64 -13:52:49,946 numba.core.ssa DEBUG incoming_def neg_ax = ax -13:52:49,946 numba.core.ssa DEBUG find_def_from_bottom label 80 -13:52:49,946 numba.core.ssa DEBUG find_def_from_top label 80 -13:52:49,946 numba.core.ssa DEBUG idom 44 from label 80 -13:52:49,946 numba.core.ssa DEBUG find_def_from_bottom label 44 -13:52:49,946 numba.core.ssa DEBUG find_def_from_top label 44 -13:52:49,946 numba.core.ssa DEBUG idom 42 from label 44 -13:52:49,946 numba.core.ssa DEBUG find_def_from_bottom label 42 -13:52:49,946 numba.core.ssa DEBUG incoming_def neg_ax.1 = phi(incoming_values=[Undefined], incoming_blocks=[0]) -13:52:49,946 numba.core.ssa DEBUG incoming_def neg_ax.2 = phi(incoming_values=[Var(neg_ax, arrayobj.py:2052), Var(neg_ax.1, arrayobj.py:2070)], incoming_blocks=[64, 80]) -13:52:49,946 numba.core.ssa DEBUG replaced with: shape[neg_ax.1] = inferred.2 -13:52:49,946 numba.core.ssa DEBUG on stmt: $const264.3 = const(NoneType, None) -13:52:49,946 numba.core.ssa DEBUG on stmt: $266return_value.4 = cast(value=$const264.3) -13:52:49,946 numba.core.ssa DEBUG on stmt: return $266return_value.4 -13:52:49,946 numba.core.ssa DEBUG ==== SSA block rewrite pass on 268 -13:52:49,946 numba.core.ssa DEBUG Running -13:52:49,946 numba.core.ssa DEBUG on stmt: $268load_global.0 = global(ValueError: ) -13:52:49,946 numba.core.ssa DEBUG on stmt: $const280.2 = const(str, multiple negative shape values) -13:52:49,946 numba.core.ssa DEBUG on stmt: $286call.3 = call $268load_global.0($const280.2, func=$268load_global.0, args=[Var($const280.2, arrayobj.py:2073)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:49,947 numba.core.ssa DEBUG on stmt: raise ('multiple negative shape values') -13:52:49,947 numba.core.ssa DEBUG ==== SSA block rewrite pass on 269 -13:52:49,947 numba.core.ssa DEBUG Running -13:52:49,947 numba.core.ssa DEBUG on stmt: known_size.3 = phi(incoming_values=[Var(known_size.2, arrayobj.py:2054), Var(known_size.1, arrayobj.py:2054)], incoming_blocks=[64, 80]) -13:52:49,947 numba.core.ssa DEBUG on stmt: num_neg_value.3 = phi(incoming_values=[Var(num_neg_value.1, arrayobj.py:2051), Var(num_neg_value.2, arrayobj.py:2051)], incoming_blocks=[64, 80]) -13:52:49,947 numba.core.ssa DEBUG on stmt: jump 42 -13:52:50,116 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=481) - 2 RESUME(arg=0, lineno=481) - 4 LOAD_FAST(arg=0, lineno=483) - 6 LOAD_FAST(arg=1, lineno=483) - 8 COMPARE_OP(arg=4, lineno=483) - 14 RETURN_VALUE(arg=None, lineno=483) -13:52:50,116 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:50,116 numba.core.byteflow DEBUG stack: [] -13:52:50,116 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:50,116 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=481) -13:52:50,116 numba.core.byteflow DEBUG stack [] -13:52:50,116 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=481) -13:52:50,116 numba.core.byteflow DEBUG stack [] -13:52:50,116 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=483) -13:52:50,116 numba.core.byteflow DEBUG stack [] -13:52:50,116 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_FAST(arg=1, lineno=483) -13:52:50,116 numba.core.byteflow DEBUG stack ['$a4.0'] -13:52:50,116 numba.core.byteflow DEBUG dispatch pc=8, inst=COMPARE_OP(arg=4, lineno=483) -13:52:50,116 numba.core.byteflow DEBUG stack ['$a4.0', '$min_val6.1'] -13:52:50,116 numba.core.byteflow DEBUG dispatch pc=14, inst=RETURN_VALUE(arg=None, lineno=483) -13:52:50,116 numba.core.byteflow DEBUG stack ['$8compare_op.2'] -13:52:50,116 numba.core.byteflow DEBUG end state. edges=[] -13:52:50,116 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:50,117 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:50,117 numba.core.byteflow DEBUG defmap: {} -13:52:50,117 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:50,117 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:50,117 numba.core.byteflow DEBUG keep phismap: {} -13:52:50,117 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:50,117 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:50,117 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$a4.0'}), (6, {'res': '$min_val6.1'}), (8, {'lhs': '$a4.0', 'rhs': '$min_val6.1', 'res': '$8compare_op.2'}), (10, {}), (12, {}), (14, {'retval': '$8compare_op.2', 'castval': '$14return_value.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:50,117 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - min_val = arg(1, name=min_val) ['min_val'] - $8compare_op.2 = a > min_val ['$8compare_op.2', 'a', 'min_val'] - $14return_value.3 = cast(value=$8compare_op.2) ['$14return_value.3', '$8compare_op.2'] - return $14return_value.3 ['$14return_value.3'] - -13:52:50,120 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:50,120 numba.core.ssa DEBUG Running -13:52:50,120 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:50,120 numba.core.ssa DEBUG on stmt: min_val = arg(1, name=min_val) -13:52:50,120 numba.core.ssa DEBUG on stmt: $8compare_op.2 = a > min_val -13:52:50,120 numba.core.ssa DEBUG on stmt: $14return_value.3 = cast(value=$8compare_op.2) -13:52:50,120 numba.core.ssa DEBUG on stmt: return $14return_value.3 -13:52:50,120 numba.core.ssa DEBUG defs defaultdict(, - {'$14return_value.3': [(, - 0)], - '$8compare_op.2': [(, - 0)], - 'a': [(, 0)], - 'min_val': [(, - 0)]}) -13:52:50,120 numba.core.ssa DEBUG SSA violators -13:52:50,238 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=437) - 2 COPY_FREE_VARS(arg=1, lineno=437) - 4 RESUME(arg=0, lineno=437) - 6 LOAD_DEREF(arg=3, lineno=440) - 8 STORE_FAST(arg=1, lineno=440) - 10 LOAD_GLOBAL(arg=1, lineno=441) - 22 LOAD_ATTR(arg=1, lineno=441) - 32 LOAD_FAST(arg=0, lineno=441) - 34 PRECALL(arg=1, lineno=441) - 38 CALL(arg=1, lineno=441) - 48 GET_ITER(arg=None, lineno=441) -> 50 FOR_ITER(arg=25, lineno=441) - 52 STORE_FAST(arg=2, lineno=441) - 54 LOAD_FAST(arg=1, lineno=442) - 56 LOAD_FAST(arg=2, lineno=442) - 58 LOAD_METHOD(arg=2, lineno=442) - 80 PRECALL(arg=0, lineno=442) - 84 CALL(arg=0, lineno=442) - 94 BINARY_OP(arg=13, lineno=442) - 98 STORE_FAST(arg=1, lineno=442) - 100 JUMP_BACKWARD(arg=26, lineno=442) -> 102 LOAD_FAST(arg=1, lineno=443) - 104 LOAD_FAST(arg=0, lineno=443) - 106 LOAD_ATTR(arg=3, lineno=443) - 116 BINARY_OP(arg=11, lineno=443) - 120 RETURN_VALUE(arg=None, lineno=443) -13:52:50,239 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:50,239 numba.core.byteflow DEBUG stack: [] -13:52:50,239 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=437) -13:52:50,239 numba.core.byteflow DEBUG stack [] -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=437) -13:52:50,239 numba.core.byteflow DEBUG stack [] -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=437) -13:52:50,239 numba.core.byteflow DEBUG stack [] -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_DEREF(arg=3, lineno=440) -13:52:50,239 numba.core.byteflow DEBUG stack [] -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=8, inst=STORE_FAST(arg=1, lineno=440) -13:52:50,239 numba.core.byteflow DEBUG stack ['$6load_deref.0'] -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=10, inst=LOAD_GLOBAL(arg=1, lineno=441) -13:52:50,239 numba.core.byteflow DEBUG stack [] -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_ATTR(arg=1, lineno=441) -13:52:50,239 numba.core.byteflow DEBUG stack ['$null$10.2', '$10load_global.1'] -13:52:50,239 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_FAST(arg=0, lineno=441) -13:52:50,239 numba.core.byteflow DEBUG stack ['$null$10.2', '$22load_attr.3'] -13:52:50,240 numba.core.byteflow DEBUG dispatch pc=34, inst=PRECALL(arg=1, lineno=441) -13:52:50,240 numba.core.byteflow DEBUG stack ['$null$10.2', '$22load_attr.3', '$a32.4'] -13:52:50,240 numba.core.byteflow DEBUG dispatch pc=38, inst=CALL(arg=1, lineno=441) -13:52:50,240 numba.core.byteflow DEBUG stack ['$null$10.2', '$22load_attr.3', '$a32.4'] -13:52:50,240 numba.core.byteflow DEBUG dispatch pc=48, inst=GET_ITER(arg=None, lineno=441) -13:52:50,240 numba.core.byteflow DEBUG stack ['$38call.5'] -13:52:50,240 numba.core.byteflow DEBUG end state. edges=[Edge(pc=50, stack=('$48get_iter.6',), blockstack=(), npush=0)] -13:52:50,240 numba.core.byteflow DEBUG pending: deque([State(pc_initial=50 nstack_initial=1)]) -13:52:50,240 numba.core.byteflow DEBUG stack: ['$phi50.0'] -13:52:50,240 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=50 nstack_initial=1) -13:52:50,240 numba.core.byteflow DEBUG dispatch pc=50, inst=FOR_ITER(arg=25, lineno=441) -13:52:50,240 numba.core.byteflow DEBUG stack ['$phi50.0'] -13:52:50,240 numba.core.byteflow DEBUG end state. edges=[Edge(pc=102, stack=(), blockstack=(), npush=0), Edge(pc=52, stack=('$phi50.0', '$50for_iter.2'), blockstack=(), npush=0)] -13:52:50,240 numba.core.byteflow DEBUG pending: deque([State(pc_initial=102 nstack_initial=0), State(pc_initial=52 nstack_initial=2)]) -13:52:50,240 numba.core.byteflow DEBUG stack: [] -13:52:50,240 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=102 nstack_initial=0) -13:52:50,240 numba.core.byteflow DEBUG dispatch pc=102, inst=LOAD_FAST(arg=1, lineno=443) -13:52:50,240 numba.core.byteflow DEBUG stack [] -13:52:50,240 numba.core.byteflow DEBUG dispatch pc=104, inst=LOAD_FAST(arg=0, lineno=443) -13:52:50,241 numba.core.byteflow DEBUG stack ['$c102.0'] -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=106, inst=LOAD_ATTR(arg=3, lineno=443) -13:52:50,241 numba.core.byteflow DEBUG stack ['$c102.0', '$a104.1'] -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=116, inst=BINARY_OP(arg=11, lineno=443) -13:52:50,241 numba.core.byteflow DEBUG stack ['$c102.0', '$106load_attr.2'] -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=120, inst=RETURN_VALUE(arg=None, lineno=443) -13:52:50,241 numba.core.byteflow DEBUG stack ['$binop_truediv116.3'] -13:52:50,241 numba.core.byteflow DEBUG end state. edges=[] -13:52:50,241 numba.core.byteflow DEBUG pending: deque([State(pc_initial=52 nstack_initial=2)]) -13:52:50,241 numba.core.byteflow DEBUG stack: ['$phi52.0', '$phi52.1'] -13:52:50,241 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=52 nstack_initial=2) -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=52, inst=STORE_FAST(arg=2, lineno=441) -13:52:50,241 numba.core.byteflow DEBUG stack ['$phi52.0', '$phi52.1'] -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=54, inst=LOAD_FAST(arg=1, lineno=442) -13:52:50,241 numba.core.byteflow DEBUG stack ['$phi52.0'] -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_FAST(arg=2, lineno=442) -13:52:50,241 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2'] -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=58, inst=LOAD_METHOD(arg=2, lineno=442) -13:52:50,241 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$v56.3'] -13:52:50,241 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=0, lineno=442) -13:52:50,241 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$null$58.4', '$58load_method.5'] -13:52:50,242 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=0, lineno=442) -13:52:50,242 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$null$58.4', '$58load_method.5'] -13:52:50,242 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=13, lineno=442) -13:52:50,242 numba.core.byteflow DEBUG stack ['$phi52.0', '$c54.2', '$84call.6'] -13:52:50,242 numba.core.byteflow DEBUG dispatch pc=98, inst=STORE_FAST(arg=1, lineno=442) -13:52:50,242 numba.core.byteflow DEBUG stack ['$phi52.0', '$binop_iadd94.7'] -13:52:50,242 numba.core.byteflow DEBUG dispatch pc=100, inst=JUMP_BACKWARD(arg=26, lineno=442) -13:52:50,242 numba.core.byteflow DEBUG stack ['$phi52.0'] -13:52:50,242 numba.core.byteflow DEBUG end state. edges=[Edge(pc=50, stack=('$phi52.0',), blockstack=(), npush=0)] -13:52:50,242 numba.core.byteflow DEBUG pending: deque([State(pc_initial=50 nstack_initial=1)]) -13:52:50,242 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:50,242 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=50 nstack_initial=1): {'$phi50.0'}, - State(pc_initial=52 nstack_initial=2): {'$phi52.1'}, - State(pc_initial=102 nstack_initial=0): set()}) -13:52:50,242 numba.core.byteflow DEBUG defmap: {'$phi50.0': State(pc_initial=0 nstack_initial=0), - '$phi52.1': State(pc_initial=50 nstack_initial=1)} -13:52:50,242 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0)), - ('$phi52.0', State(pc_initial=52 nstack_initial=2))}, - '$phi52.0': {('$phi50.0', State(pc_initial=50 nstack_initial=1))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:50,242 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0)), - ('$phi50.0', State(pc_initial=50 nstack_initial=1))}, - '$phi52.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:50,242 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:50,243 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi50.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.0': {('$48get_iter.6', - State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', - State(pc_initial=50 nstack_initial=1))}}) -13:52:50,243 numba.core.byteflow DEBUG keep phismap: {'$phi50.0': {('$48get_iter.6', State(pc_initial=0 nstack_initial=0))}, - '$phi52.1': {('$50for_iter.2', State(pc_initial=50 nstack_initial=1))}} -13:52:50,243 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi50.0': '$48get_iter.6'}, - State(pc_initial=50 nstack_initial=1): {'$phi52.1': '$50for_iter.2'}}) -13:52:50,243 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:50,243 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'res': '$6load_deref.0'}), (8, {'value': '$6load_deref.0'}), (10, {'idx': 0, 'res': '$10load_global.1'}), (12, {}), (14, {}), (16, {}), (18, {}), (20, {}), (22, {'item': '$10load_global.1', 'res': '$22load_attr.3'}), (24, {}), (26, {}), (28, {}), (30, {}), (32, {'res': '$a32.4'}), (34, {}), (36, {}), (38, {'func': '$22load_attr.3', 'args': ['$a32.4'], 'kw_names': None, 'res': '$38call.5'}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {'value': '$38call.5', 'res': '$48get_iter.6'})), outgoing_phis={'$phi50.0': '$48get_iter.6'}, blockstack=(), active_try_block=None, outgoing_edgepushed={50: ('$48get_iter.6',)}) -13:52:50,243 numba.core.byteflow DEBUG block_infos State(pc_initial=50 nstack_initial=1): -AdaptBlockInfo(insts=((50, {'iterator': '$phi50.0', 'pair': '$50for_iter.1', 'indval': '$50for_iter.2', 'pred': '$50for_iter.3'}),), outgoing_phis={'$phi52.1': '$50for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={102: (), 52: ('$phi50.0', '$50for_iter.2')}) -13:52:50,243 numba.core.byteflow DEBUG block_infos State(pc_initial=52 nstack_initial=2): -AdaptBlockInfo(insts=((52, {'value': '$phi52.1'}), (54, {'res': '$c54.2'}), (56, {'res': '$v56.3'}), (58, {'item': '$v56.3', 'res': '$58load_method.5'}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {}), (82, {}), (84, {'func': '$58load_method.5', 'args': [], 'kw_names': None, 'res': '$84call.6'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '+=', 'lhs': '$c54.2', 'rhs': '$84call.6', 'res': '$binop_iadd94.7'}), (96, {}), (98, {'value': '$binop_iadd94.7'}), (100, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={50: ('$phi52.0',)}) -13:52:50,243 numba.core.byteflow DEBUG block_infos State(pc_initial=102 nstack_initial=0): -AdaptBlockInfo(insts=((102, {'res': '$c102.0'}), (104, {'res': '$a104.1'}), (106, {'item': '$a104.1', 'res': '$106load_attr.2'}), (108, {}), (110, {}), (112, {}), (114, {}), (116, {'op': '/', 'lhs': '$c102.0', 'rhs': '$106load_attr.2', 'res': '$binop_truediv116.3'}), (118, {}), (120, {'retval': '$binop_truediv116.3', 'castval': '$120return_value.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:50,244 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - c = freevar(acc_init: 0.0) ['c'] - $10load_global.1 = global(np: ) ['$10load_global.1'] - $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) ['$10load_global.1', '$22load_attr.3'] - $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_attr.3', '$38call.5', 'a'] - $48get_iter.6 = getiter(value=$38call.5) ['$38call.5', '$48get_iter.6'] - $phi50.0 = $48get_iter.6 ['$48get_iter.6', '$phi50.0'] - jump 50 [] -label 50: - $50for_iter.1 = iternext(value=$phi50.0) ['$50for_iter.1', '$phi50.0'] - $50for_iter.2 = pair_first(value=$50for_iter.1) ['$50for_iter.1', '$50for_iter.2'] - $50for_iter.3 = pair_second(value=$50for_iter.1) ['$50for_iter.1', '$50for_iter.3'] - $phi52.1 = $50for_iter.2 ['$50for_iter.2', '$phi52.1'] - branch $50for_iter.3, 52, 102 ['$50for_iter.3'] -label 52: - v = $phi52.1 ['$phi52.1', 'v'] - $58load_method.5 = getattr(value=v, attr=item) ['$58load_method.5', 'v'] - $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) ['$58load_method.5', '$84call.6'] - $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) ['$84call.6', '$binop_iadd94.7', 'c'] - c = $binop_iadd94.7 ['$binop_iadd94.7', 'c'] - jump 50 [] -label 102: - $106load_attr.2 = getattr(value=a, attr=size) ['$106load_attr.2', 'a'] - $binop_truediv116.3 = c / $106load_attr.2 ['$106load_attr.2', '$binop_truediv116.3', 'c'] - $120return_value.4 = cast(value=$binop_truediv116.3) ['$120return_value.4', '$binop_truediv116.3'] - return $120return_value.4 ['$120return_value.4'] - -13:52:50,261 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:50,261 numba.core.ssa DEBUG Running -13:52:50,262 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:50,262 numba.core.ssa DEBUG on stmt: c = freevar(acc_init: 0.0) -13:52:50,262 numba.core.ssa DEBUG on stmt: $10load_global.1 = global(np: ) -13:52:50,262 numba.core.ssa DEBUG on stmt: $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) -13:52:50,262 numba.core.ssa DEBUG on stmt: $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:50,262 numba.core.ssa DEBUG on stmt: $48get_iter.6 = getiter(value=$38call.5) -13:52:50,262 numba.core.ssa DEBUG on stmt: $phi50.0 = $48get_iter.6 -13:52:50,262 numba.core.ssa DEBUG on stmt: jump 50 -13:52:50,262 numba.core.ssa DEBUG ==== SSA block analysis pass on 50 -13:52:50,262 numba.core.ssa DEBUG Running -13:52:50,262 numba.core.ssa DEBUG on stmt: $50for_iter.1 = iternext(value=$phi50.0) -13:52:50,262 numba.core.ssa DEBUG on stmt: $50for_iter.2 = pair_first(value=$50for_iter.1) -13:52:50,262 numba.core.ssa DEBUG on stmt: $50for_iter.3 = pair_second(value=$50for_iter.1) -13:52:50,262 numba.core.ssa DEBUG on stmt: $phi52.1 = $50for_iter.2 -13:52:50,262 numba.core.ssa DEBUG on stmt: branch $50for_iter.3, 52, 102 -13:52:50,262 numba.core.ssa DEBUG ==== SSA block analysis pass on 52 -13:52:50,262 numba.core.ssa DEBUG Running -13:52:50,262 numba.core.ssa DEBUG on stmt: v = $phi52.1 -13:52:50,262 numba.core.ssa DEBUG on stmt: $58load_method.5 = getattr(value=v, attr=item) -13:52:50,262 numba.core.ssa DEBUG on stmt: $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:50,262 numba.core.ssa DEBUG on stmt: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:50,262 numba.core.ssa DEBUG on stmt: c = $binop_iadd94.7 -13:52:50,263 numba.core.ssa DEBUG on stmt: jump 50 -13:52:50,263 numba.core.ssa DEBUG ==== SSA block analysis pass on 102 -13:52:50,263 numba.core.ssa DEBUG Running -13:52:50,263 numba.core.ssa DEBUG on stmt: $106load_attr.2 = getattr(value=a, attr=size) -13:52:50,263 numba.core.ssa DEBUG on stmt: $binop_truediv116.3 = c / $106load_attr.2 -13:52:50,263 numba.core.ssa DEBUG on stmt: $120return_value.4 = cast(value=$binop_truediv116.3) -13:52:50,263 numba.core.ssa DEBUG on stmt: return $120return_value.4 -13:52:50,263 numba.core.ssa DEBUG defs defaultdict(, - {'$106load_attr.2': [(, - 102)], - '$10load_global.1': [(, - 0)], - '$120return_value.4': [(, - 102)], - '$22load_attr.3': [(, - 0)], - '$38call.5': [(, - 0)], - '$48get_iter.6': [(, - 0)], - '$50for_iter.1': [(, - 50)], - '$50for_iter.2': [(, - 50)], - '$50for_iter.3': [(, - 50)], - '$58load_method.5': [(, - 52)], - '$84call.6': [(, - 52)], - '$binop_iadd94.7': [(, - 52)], - '$binop_truediv116.3': [(, - 102)], - '$phi50.0': [(, - 0)], - '$phi52.1': [(, - 50)], - 'a': [(, 0)], - 'c': [(, 0), - (, 52)], - 'v': [(, 52)]}) -13:52:50,263 numba.core.ssa DEBUG SSA violators -13:52:50,263 numba.core.ssa DEBUG Fix SSA violator on var c -13:52:50,263 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:50,263 numba.core.ssa DEBUG Running -13:52:50,263 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:50,263 numba.core.ssa DEBUG on stmt: c = freevar(acc_init: 0.0) -13:52:50,264 numba.core.ssa DEBUG first assign: c -13:52:50,264 numba.core.ssa DEBUG replaced with: c = freevar(acc_init: 0.0) -13:52:50,264 numba.core.ssa DEBUG on stmt: $10load_global.1 = global(np: ) -13:52:50,264 numba.core.ssa DEBUG on stmt: $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) -13:52:50,264 numba.core.ssa DEBUG on stmt: $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:50,264 numba.core.ssa DEBUG on stmt: $48get_iter.6 = getiter(value=$38call.5) -13:52:50,264 numba.core.ssa DEBUG on stmt: $phi50.0 = $48get_iter.6 -13:52:50,264 numba.core.ssa DEBUG on stmt: jump 50 -13:52:50,264 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:50,264 numba.core.ssa DEBUG Running -13:52:50,264 numba.core.ssa DEBUG on stmt: $50for_iter.1 = iternext(value=$phi50.0) -13:52:50,264 numba.core.ssa DEBUG on stmt: $50for_iter.2 = pair_first(value=$50for_iter.1) -13:52:50,264 numba.core.ssa DEBUG on stmt: $50for_iter.3 = pair_second(value=$50for_iter.1) -13:52:50,264 numba.core.ssa DEBUG on stmt: $phi52.1 = $50for_iter.2 -13:52:50,264 numba.core.ssa DEBUG on stmt: branch $50for_iter.3, 52, 102 -13:52:50,264 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:50,264 numba.core.ssa DEBUG Running -13:52:50,264 numba.core.ssa DEBUG on stmt: v = $phi52.1 -13:52:50,264 numba.core.ssa DEBUG on stmt: $58load_method.5 = getattr(value=v, attr=item) -13:52:50,264 numba.core.ssa DEBUG on stmt: $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:50,264 numba.core.ssa DEBUG on stmt: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:50,264 numba.core.ssa DEBUG on stmt: c = $binop_iadd94.7 -13:52:50,265 numba.core.ssa DEBUG replaced with: c.1 = $binop_iadd94.7 -13:52:50,265 numba.core.ssa DEBUG on stmt: jump 50 -13:52:50,265 numba.core.ssa DEBUG ==== SSA block rewrite pass on 102 -13:52:50,265 numba.core.ssa DEBUG Running -13:52:50,265 numba.core.ssa DEBUG on stmt: $106load_attr.2 = getattr(value=a, attr=size) -13:52:50,265 numba.core.ssa DEBUG on stmt: $binop_truediv116.3 = c / $106load_attr.2 -13:52:50,265 numba.core.ssa DEBUG on stmt: $120return_value.4 = cast(value=$binop_truediv116.3) -13:52:50,265 numba.core.ssa DEBUG on stmt: return $120return_value.4 -13:52:50,265 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 52: []}) -13:52:50,265 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:50,265 numba.core.ssa DEBUG Running -13:52:50,265 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:50,265 numba.core.ssa DEBUG on stmt: c = freevar(acc_init: 0.0) -13:52:50,265 numba.core.ssa DEBUG on stmt: $10load_global.1 = global(np: ) -13:52:50,265 numba.core.ssa DEBUG on stmt: $22load_attr.3 = getattr(value=$10load_global.1, attr=nditer) -13:52:50,265 numba.core.ssa DEBUG on stmt: $38call.5 = call $22load_attr.3(a, func=$22load_attr.3, args=[Var(a, arraymath.py:437)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:50,265 numba.core.ssa DEBUG on stmt: $48get_iter.6 = getiter(value=$38call.5) -13:52:50,265 numba.core.ssa DEBUG on stmt: $phi50.0 = $48get_iter.6 -13:52:50,265 numba.core.ssa DEBUG on stmt: jump 50 -13:52:50,265 numba.core.ssa DEBUG ==== SSA block rewrite pass on 50 -13:52:50,265 numba.core.ssa DEBUG Running -13:52:50,265 numba.core.ssa DEBUG on stmt: $50for_iter.1 = iternext(value=$phi50.0) -13:52:50,265 numba.core.ssa DEBUG on stmt: $50for_iter.2 = pair_first(value=$50for_iter.1) -13:52:50,266 numba.core.ssa DEBUG on stmt: $50for_iter.3 = pair_second(value=$50for_iter.1) -13:52:50,266 numba.core.ssa DEBUG on stmt: $phi52.1 = $50for_iter.2 -13:52:50,266 numba.core.ssa DEBUG on stmt: branch $50for_iter.3, 52, 102 -13:52:50,266 numba.core.ssa DEBUG ==== SSA block rewrite pass on 52 -13:52:50,266 numba.core.ssa DEBUG Running -13:52:50,266 numba.core.ssa DEBUG on stmt: v = $phi52.1 -13:52:50,266 numba.core.ssa DEBUG on stmt: $58load_method.5 = getattr(value=v, attr=item) -13:52:50,266 numba.core.ssa DEBUG on stmt: $84call.6 = call $58load_method.5(func=$58load_method.5, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:50,266 numba.core.ssa DEBUG on stmt: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:50,266 numba.core.ssa DEBUG find_def var='c' stmt=$binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:50,266 numba.core.ssa DEBUG find_def_from_top label 52 -13:52:50,266 numba.core.ssa DEBUG idom 50 from label 52 -13:52:50,266 numba.core.ssa DEBUG find_def_from_bottom label 50 -13:52:50,266 numba.core.ssa DEBUG find_def_from_top label 50 -13:52:50,266 numba.core.ssa DEBUG insert phi node c.2 = phi(incoming_values=[], incoming_blocks=[]) at 50 -13:52:50,266 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:50,266 numba.core.ssa DEBUG incoming_def c = freevar(acc_init: 0.0) -13:52:50,266 numba.core.ssa DEBUG find_def_from_bottom label 52 -13:52:50,266 numba.core.ssa DEBUG incoming_def c.1 = $binop_iadd94.7 -13:52:50,266 numba.core.ssa DEBUG replaced with: $binop_iadd94.7 = inplace_binop(fn=, immutable_fn=, lhs=c.2, rhs=$84call.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:50,266 numba.core.ssa DEBUG on stmt: c.1 = $binop_iadd94.7 -13:52:50,266 numba.core.ssa DEBUG on stmt: jump 50 -13:52:50,266 numba.core.ssa DEBUG ==== SSA block rewrite pass on 102 -13:52:50,266 numba.core.ssa DEBUG Running -13:52:50,266 numba.core.ssa DEBUG on stmt: $106load_attr.2 = getattr(value=a, attr=size) -13:52:50,267 numba.core.ssa DEBUG on stmt: $binop_truediv116.3 = c / $106load_attr.2 -13:52:50,267 numba.core.ssa DEBUG find_def var='c' stmt=$binop_truediv116.3 = c / $106load_attr.2 -13:52:50,267 numba.core.ssa DEBUG find_def_from_top label 102 -13:52:50,267 numba.core.ssa DEBUG idom 50 from label 102 -13:52:50,267 numba.core.ssa DEBUG find_def_from_bottom label 50 -13:52:50,267 numba.core.ssa DEBUG replaced with: $binop_truediv116.3 = c.2 / $106load_attr.2 -13:52:50,267 numba.core.ssa DEBUG on stmt: $120return_value.4 = cast(value=$binop_truediv116.3) -13:52:50,267 numba.core.ssa DEBUG on stmt: return $120return_value.4 -13:52:50,406 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=1) - 2 RESUME(arg=0, lineno=1) - 4 LOAD_FAST(arg=0, lineno=1) - 6 LOAD_CONST(arg=1, lineno=1) - 8 COMPARE_OP(arg=4, lineno=1) - 14 RETURN_VALUE(arg=None, lineno=1) -13:52:50,406 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:50,406 numba.core.byteflow DEBUG stack: [] -13:52:50,406 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:50,406 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=1) -13:52:50,406 numba.core.byteflow DEBUG stack [] -13:52:50,406 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=1) -13:52:50,406 numba.core.byteflow DEBUG stack [] -13:52:50,407 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1) -13:52:50,407 numba.core.byteflow DEBUG stack [] -13:52:50,407 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_CONST(arg=1, lineno=1) -13:52:50,407 numba.core.byteflow DEBUG stack ['$ith_distances_14.0'] -13:52:50,407 numba.core.byteflow DEBUG dispatch pc=8, inst=COMPARE_OP(arg=4, lineno=1) -13:52:50,407 numba.core.byteflow DEBUG stack ['$ith_distances_14.0', '$const6.1'] -13:52:50,407 numba.core.byteflow DEBUG dispatch pc=14, inst=RETURN_VALUE(arg=None, lineno=1) -13:52:50,407 numba.core.byteflow DEBUG stack ['$8compare_op.2'] -13:52:50,407 numba.core.byteflow DEBUG end state. edges=[] -13:52:50,407 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:50,407 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:50,407 numba.core.byteflow DEBUG defmap: {} -13:52:50,407 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:50,407 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:50,407 numba.core.byteflow DEBUG keep phismap: {} -13:52:50,407 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:50,407 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:50,407 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$ith_distances_14.0'}), (6, {'res': '$const6.1'}), (8, {'lhs': '$ith_distances_14.0', 'rhs': '$const6.1', 'res': '$8compare_op.2'}), (10, {}), (12, {}), (14, {'retval': '$8compare_op.2', 'castval': '$14return_value.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:50,407 numba.core.interpreter DEBUG label 0: - ith_distances_1 = arg(0, name=ith_distances_1) ['ith_distances_1'] - $const6.1 = const(float, 0.0) ['$const6.1'] - $8compare_op.2 = ith_distances_1 > $const6.1 ['$8compare_op.2', '$const6.1', 'ith_distances_1'] - $14return_value.3 = cast(value=$8compare_op.2) ['$14return_value.3', '$8compare_op.2'] - return $14return_value.3 ['$14return_value.3'] - -13:52:50,410 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:50,410 numba.core.ssa DEBUG Running -13:52:50,410 numba.core.ssa DEBUG on stmt: ith_distances_1 = arg(0, name=ith_distances_1) -13:52:50,410 numba.core.ssa DEBUG on stmt: $const6.1 = const(float, 0.0) -13:52:50,410 numba.core.ssa DEBUG on stmt: $8compare_op.2 = ith_distances_1 > $const6.1 -13:52:50,410 numba.core.ssa DEBUG on stmt: $14return_value.3 = cast(value=$8compare_op.2) -13:52:50,410 numba.core.ssa DEBUG on stmt: return $14return_value.3 -13:52:50,410 numba.core.ssa DEBUG defs defaultdict(, - {'$14return_value.3': [(, - 0)], - '$8compare_op.2': [(, - 0)], - '$const6.1': [(, - 0)], - 'ith_distances_1': [(, - 0)]}) -13:52:50,410 numba.core.ssa DEBUG SSA violators -13:52:50,797 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=351) - 2 RESUME(arg=0, lineno=351) - 4 LOAD_FAST(arg=0, lineno=409) - 6 LOAD_ATTR(arg=0, lineno=409) - 16 LOAD_CONST(arg=1, lineno=409) - 18 BINARY_SUBSCR(arg=None, lineno=409) - 28 STORE_FAST(arg=6, lineno=409) - 30 LOAD_FAST(arg=0, lineno=410) - 32 LOAD_ATTR(arg=0, lineno=410) - 42 LOAD_CONST(arg=2, lineno=410) - 44 BINARY_SUBSCR(arg=None, lineno=410) - 54 STORE_FAST(arg=7, lineno=410) - 56 LOAD_GLOBAL(arg=3, lineno=412) - 68 LOAD_ATTR(arg=2, lineno=412) - 78 LOAD_FAST(arg=0, lineno=412) - 80 LOAD_ATTR(arg=3, lineno=412) - 90 LOAD_GLOBAL(arg=2, lineno=412) - 102 LOAD_ATTR(arg=4, lineno=412) - 112 KW_NAMES(arg=3, lineno=412) - 114 PRECALL(arg=2, lineno=412) - 118 CALL(arg=2, lineno=412) - 128 STORE_FAST(arg=8, lineno=412) - 130 LOAD_GLOBAL(arg=3, lineno=413) - 142 LOAD_ATTR(arg=2, lineno=413) - 152 LOAD_FAST(arg=0, lineno=413) - 154 LOAD_ATTR(arg=3, lineno=413) - 164 LOAD_GLOBAL(arg=2, lineno=413) - 176 LOAD_ATTR(arg=4, lineno=413) - 186 KW_NAMES(arg=3, lineno=413) - 188 PRECALL(arg=2, lineno=413) - 192 CALL(arg=2, lineno=413) - 202 STORE_FAST(arg=9, lineno=413) - 204 LOAD_GLOBAL(arg=3, lineno=414) - 216 LOAD_ATTR(arg=2, lineno=414) - 226 LOAD_FAST(arg=0, lineno=414) - 228 LOAD_ATTR(arg=3, lineno=414) - 238 LOAD_GLOBAL(arg=2, lineno=414) - 250 LOAD_ATTR(arg=5, lineno=414) - 260 KW_NAMES(arg=3, lineno=414) - 262 PRECALL(arg=2, lineno=414) - 266 CALL(arg=2, lineno=414) - 276 STORE_FAST(arg=10, lineno=414) - 278 LOAD_FAST(arg=4, lineno=415) - 280 POP_JUMP_FORWARD_IF_FALSE(arg=38, lineno=415) - 282 LOAD_GLOBAL(arg=3, lineno=416) - 294 LOAD_ATTR(arg=2, lineno=416) - 304 LOAD_FAST(arg=0, lineno=416) - 306 LOAD_ATTR(arg=3, lineno=416) - 316 LOAD_GLOBAL(arg=2, lineno=416) - 328 LOAD_ATTR(arg=5, lineno=416) - 338 KW_NAMES(arg=3, lineno=416) - 340 PRECALL(arg=2, lineno=416) - 344 CALL(arg=2, lineno=416) - 354 STORE_FAST(arg=11, lineno=416) - 356 JUMP_FORWARD(arg=2, lineno=416) -> 358 LOAD_CONST(arg=4, lineno=418) - 360 STORE_FAST(arg=11, lineno=418) -> 362 LOAD_GLOBAL(arg=13, lineno=420) - 374 LOAD_FAST(arg=6, lineno=420) - 376 PRECALL(arg=1, lineno=420) - 380 CALL(arg=1, lineno=420) - 390 GET_ITER(arg=None, lineno=420) -> 392 FOR_ITER(arg=206, lineno=420) - 394 STORE_FAST(arg=12, lineno=420) - 396 LOAD_GLOBAL(arg=13, lineno=421) - 408 LOAD_FAST(arg=7, lineno=421) - 410 PRECALL(arg=1, lineno=421) - 414 CALL(arg=1, lineno=421) - 424 GET_ITER(arg=None, lineno=421) -> 426 FOR_ITER(arg=188, lineno=421) - 428 STORE_FAST(arg=13, lineno=421) - 430 LOAD_FAST(arg=0, lineno=422) - 432 LOAD_FAST(arg=12, lineno=422) - 434 LOAD_FAST(arg=13, lineno=422) - 436 BUILD_TUPLE(arg=2, lineno=422) - 438 BINARY_SUBSCR(arg=None, lineno=422) - 448 LOAD_CONST(arg=5, lineno=422) - 450 COMPARE_OP(arg=2, lineno=422) - 456 POP_JUMP_FORWARD_IF_FALSE(arg=1, lineno=422) - 458 JUMP_BACKWARD(arg=17, lineno=423) -> 460 LOAD_FAST(arg=5, lineno=426) - 462 LOAD_CONST(arg=6, lineno=426) - 464 COMPARE_OP(arg=2, lineno=426) - 470 LOAD_FAST(arg=0, lineno=426) - 472 LOAD_FAST(arg=12, lineno=426) - 474 LOAD_FAST(arg=13, lineno=426) - 476 BUILD_TUPLE(arg=2, lineno=426) - 478 BINARY_SUBSCR(arg=None, lineno=426) - 488 LOAD_FAST(arg=12, lineno=426) - 490 COMPARE_OP(arg=2, lineno=426) - 496 BINARY_OP(arg=1, lineno=426) - 500 POP_JUMP_FORWARD_IF_FALSE(arg=3, lineno=426) - 502 LOAD_CONST(arg=7, lineno=427) - 504 STORE_FAST(arg=14, lineno=427) - 506 JUMP_FORWARD(arg=85, lineno=427) -> 508 LOAD_FAST(arg=1, lineno=428) - 510 LOAD_FAST(arg=12, lineno=428) - 512 LOAD_FAST(arg=13, lineno=428) - 514 BUILD_TUPLE(arg=2, lineno=428) - 516 BINARY_SUBSCR(arg=None, lineno=428) - 526 LOAD_FAST(arg=3, lineno=428) - 528 LOAD_FAST(arg=12, lineno=428) - 530 BINARY_SUBSCR(arg=None, lineno=428) - 540 BINARY_OP(arg=10, lineno=428) - 544 LOAD_CONST(arg=7, lineno=428) - 546 COMPARE_OP(arg=1, lineno=428) - 552 POP_JUMP_FORWARD_IF_TRUE(arg=12, lineno=428) - 554 LOAD_FAST(arg=2, lineno=428) - 556 LOAD_FAST(arg=12, lineno=428) - 558 BINARY_SUBSCR(arg=None, lineno=428) - 568 LOAD_CONST(arg=7, lineno=428) - 570 COMPARE_OP(arg=2, lineno=428) - 576 POP_JUMP_FORWARD_IF_FALSE(arg=3, lineno=428) -> 578 LOAD_CONST(arg=8, lineno=429) - 580 STORE_FAST(arg=14, lineno=429) - 582 JUMP_FORWARD(arg=47, lineno=429) -> 584 LOAD_GLOBAL(arg=3, lineno=431) - 596 LOAD_ATTR(arg=7, lineno=431) - 606 LOAD_FAST(arg=1, lineno=431) - 608 LOAD_FAST(arg=12, lineno=431) - 610 LOAD_FAST(arg=13, lineno=431) - 612 BUILD_TUPLE(arg=2, lineno=431) - 614 BINARY_SUBSCR(arg=None, lineno=431) - 624 LOAD_FAST(arg=3, lineno=431) - 626 LOAD_FAST(arg=12, lineno=431) - 628 BINARY_SUBSCR(arg=None, lineno=431) - 638 BINARY_OP(arg=10, lineno=431) - 642 LOAD_FAST(arg=2, lineno=431) - 644 LOAD_FAST(arg=12, lineno=431) - 646 BINARY_SUBSCR(arg=None, lineno=431) - 656 BINARY_OP(arg=11, lineno=431) - 660 UNARY_NEGATIVE(arg=None, lineno=431) - 662 PRECALL(arg=1, lineno=431) - 666 CALL(arg=1, lineno=431) - 676 STORE_FAST(arg=14, lineno=431) -> 678 LOAD_FAST(arg=12, lineno=433) - 680 LOAD_FAST(arg=8, lineno=433) - 682 LOAD_FAST(arg=12, lineno=433) - 684 LOAD_FAST(arg=7, lineno=433) - 686 BINARY_OP(arg=5, lineno=433) - 690 LOAD_FAST(arg=13, lineno=433) - 692 BINARY_OP(arg=0, lineno=433) - 696 STORE_SUBSCR(arg=None, lineno=433) - 700 LOAD_FAST(arg=0, lineno=434) - 702 LOAD_FAST(arg=12, lineno=434) - 704 LOAD_FAST(arg=13, lineno=434) - 706 BUILD_TUPLE(arg=2, lineno=434) - 708 BINARY_SUBSCR(arg=None, lineno=434) - 718 LOAD_FAST(arg=9, lineno=434) - 720 LOAD_FAST(arg=12, lineno=434) - 722 LOAD_FAST(arg=7, lineno=434) - 724 BINARY_OP(arg=5, lineno=434) - 728 LOAD_FAST(arg=13, lineno=434) - 730 BINARY_OP(arg=0, lineno=434) - 734 STORE_SUBSCR(arg=None, lineno=434) - 738 LOAD_FAST(arg=14, lineno=435) - 740 LOAD_FAST(arg=10, lineno=435) - 742 LOAD_FAST(arg=12, lineno=435) - 744 LOAD_FAST(arg=7, lineno=435) - 746 BINARY_OP(arg=5, lineno=435) - 750 LOAD_FAST(arg=13, lineno=435) - 752 BINARY_OP(arg=0, lineno=435) - 756 STORE_SUBSCR(arg=None, lineno=435) - 760 LOAD_FAST(arg=4, lineno=436) - 762 POP_JUMP_FORWARD_IF_FALSE(arg=19, lineno=436) - 764 LOAD_FAST(arg=1, lineno=437) - 766 LOAD_FAST(arg=12, lineno=437) - 768 LOAD_FAST(arg=13, lineno=437) - 770 BUILD_TUPLE(arg=2, lineno=437) - 772 BINARY_SUBSCR(arg=None, lineno=437) - 782 LOAD_FAST(arg=11, lineno=437) - 784 LOAD_FAST(arg=12, lineno=437) - 786 LOAD_FAST(arg=7, lineno=437) - 788 BINARY_OP(arg=5, lineno=437) - 792 LOAD_FAST(arg=13, lineno=437) - 794 BINARY_OP(arg=0, lineno=437) - 798 STORE_SUBSCR(arg=None, lineno=437) -> 802 JUMP_BACKWARD(arg=189, lineno=437) -> 804 JUMP_BACKWARD(arg=207, lineno=421) -> 806 LOAD_FAST(arg=8, lineno=439) - 808 LOAD_FAST(arg=9, lineno=439) - 810 LOAD_FAST(arg=10, lineno=439) - 812 LOAD_FAST(arg=11, lineno=439) - 814 BUILD_TUPLE(arg=4, lineno=439) - 816 RETURN_VALUE(arg=None, lineno=439) -13:52:50,797 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:50,797 numba.core.byteflow DEBUG stack: [] -13:52:50,797 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=351) -13:52:50,797 numba.core.byteflow DEBUG stack [] -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=351) -13:52:50,797 numba.core.byteflow DEBUG stack [] -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=409) -13:52:50,797 numba.core.byteflow DEBUG stack [] -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_ATTR(arg=0, lineno=409) -13:52:50,797 numba.core.byteflow DEBUG stack ['$knn_indices4.0'] -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_CONST(arg=1, lineno=409) -13:52:50,797 numba.core.byteflow DEBUG stack ['$6load_attr.1'] -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=18, inst=BINARY_SUBSCR(arg=None, lineno=409) -13:52:50,797 numba.core.byteflow DEBUG stack ['$6load_attr.1', '$const16.2'] -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=28, inst=STORE_FAST(arg=6, lineno=409) -13:52:50,797 numba.core.byteflow DEBUG stack ['$18binary_subscr.3'] -13:52:50,797 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_FAST(arg=0, lineno=410) -13:52:50,798 numba.core.byteflow DEBUG stack [] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_ATTR(arg=0, lineno=410) -13:52:50,798 numba.core.byteflow DEBUG stack ['$knn_indices30.4'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=42, inst=LOAD_CONST(arg=2, lineno=410) -13:52:50,798 numba.core.byteflow DEBUG stack ['$32load_attr.5'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=44, inst=BINARY_SUBSCR(arg=None, lineno=410) -13:52:50,798 numba.core.byteflow DEBUG stack ['$32load_attr.5', '$const42.6'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=54, inst=STORE_FAST(arg=7, lineno=410) -13:52:50,798 numba.core.byteflow DEBUG stack ['$44binary_subscr.7'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_GLOBAL(arg=3, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack [] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=68, inst=LOAD_ATTR(arg=2, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$56load_global.8'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_FAST(arg=0, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$68load_attr.10'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=80, inst=LOAD_ATTR(arg=3, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$68load_attr.10', '$knn_indices78.11'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=90, inst=LOAD_GLOBAL(arg=2, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$68load_attr.10', '$80load_attr.12'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=102, inst=LOAD_ATTR(arg=4, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$68load_attr.10', '$80load_attr.12', '$90load_global.13'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=112, inst=KW_NAMES(arg=3, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$68load_attr.10', '$80load_attr.12', '$102load_attr.14'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=114, inst=PRECALL(arg=2, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$68load_attr.10', '$80load_attr.12', '$102load_attr.14'] -13:52:50,798 numba.core.byteflow DEBUG dispatch pc=118, inst=CALL(arg=2, lineno=412) -13:52:50,798 numba.core.byteflow DEBUG stack ['$null$56.9', '$68load_attr.10', '$80load_attr.12', '$102load_attr.14'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=128, inst=STORE_FAST(arg=8, lineno=412) -13:52:50,799 numba.core.byteflow DEBUG stack ['$118call.15'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=130, inst=LOAD_GLOBAL(arg=3, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack [] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=142, inst=LOAD_ATTR(arg=2, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$130load_global.16'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=152, inst=LOAD_FAST(arg=0, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$142load_attr.18'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=154, inst=LOAD_ATTR(arg=3, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$142load_attr.18', '$knn_indices152.19'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=164, inst=LOAD_GLOBAL(arg=2, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$142load_attr.18', '$154load_attr.20'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=176, inst=LOAD_ATTR(arg=4, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$142load_attr.18', '$154load_attr.20', '$164load_global.21'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=186, inst=KW_NAMES(arg=3, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$142load_attr.18', '$154load_attr.20', '$176load_attr.22'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=188, inst=PRECALL(arg=2, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$142load_attr.18', '$154load_attr.20', '$176load_attr.22'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=192, inst=CALL(arg=2, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$130.17', '$142load_attr.18', '$154load_attr.20', '$176load_attr.22'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=202, inst=STORE_FAST(arg=9, lineno=413) -13:52:50,799 numba.core.byteflow DEBUG stack ['$192call.23'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=204, inst=LOAD_GLOBAL(arg=3, lineno=414) -13:52:50,799 numba.core.byteflow DEBUG stack [] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=216, inst=LOAD_ATTR(arg=2, lineno=414) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$204.25', '$204load_global.24'] -13:52:50,799 numba.core.byteflow DEBUG dispatch pc=226, inst=LOAD_FAST(arg=0, lineno=414) -13:52:50,799 numba.core.byteflow DEBUG stack ['$null$204.25', '$216load_attr.26'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=228, inst=LOAD_ATTR(arg=3, lineno=414) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$204.25', '$216load_attr.26', '$knn_indices226.27'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=238, inst=LOAD_GLOBAL(arg=2, lineno=414) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$204.25', '$216load_attr.26', '$228load_attr.28'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=250, inst=LOAD_ATTR(arg=5, lineno=414) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$204.25', '$216load_attr.26', '$228load_attr.28', '$238load_global.29'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=260, inst=KW_NAMES(arg=3, lineno=414) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$204.25', '$216load_attr.26', '$228load_attr.28', '$250load_attr.30'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=262, inst=PRECALL(arg=2, lineno=414) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$204.25', '$216load_attr.26', '$228load_attr.28', '$250load_attr.30'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=266, inst=CALL(arg=2, lineno=414) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$204.25', '$216load_attr.26', '$228load_attr.28', '$250load_attr.30'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=276, inst=STORE_FAST(arg=10, lineno=414) -13:52:50,800 numba.core.byteflow DEBUG stack ['$266call.31'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=278, inst=LOAD_FAST(arg=4, lineno=415) -13:52:50,800 numba.core.byteflow DEBUG stack [] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=280, inst=POP_JUMP_FORWARD_IF_FALSE(arg=38, lineno=415) -13:52:50,800 numba.core.byteflow DEBUG stack ['$return_dists278.32'] -13:52:50,800 numba.core.byteflow DEBUG end state. edges=[Edge(pc=282, stack=(), blockstack=(), npush=0), Edge(pc=358, stack=(), blockstack=(), npush=0)] -13:52:50,800 numba.core.byteflow DEBUG pending: deque([State(pc_initial=282 nstack_initial=0), State(pc_initial=358 nstack_initial=0)]) -13:52:50,800 numba.core.byteflow DEBUG stack: [] -13:52:50,800 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=282 nstack_initial=0) -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=282, inst=LOAD_GLOBAL(arg=3, lineno=416) -13:52:50,800 numba.core.byteflow DEBUG stack [] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=294, inst=LOAD_ATTR(arg=2, lineno=416) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$282.1', '$282load_global.0'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=304, inst=LOAD_FAST(arg=0, lineno=416) -13:52:50,800 numba.core.byteflow DEBUG stack ['$null$282.1', '$294load_attr.2'] -13:52:50,800 numba.core.byteflow DEBUG dispatch pc=306, inst=LOAD_ATTR(arg=3, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack ['$null$282.1', '$294load_attr.2', '$knn_indices304.3'] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=316, inst=LOAD_GLOBAL(arg=2, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack ['$null$282.1', '$294load_attr.2', '$306load_attr.4'] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=328, inst=LOAD_ATTR(arg=5, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack ['$null$282.1', '$294load_attr.2', '$306load_attr.4', '$316load_global.5'] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=338, inst=KW_NAMES(arg=3, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack ['$null$282.1', '$294load_attr.2', '$306load_attr.4', '$328load_attr.6'] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=340, inst=PRECALL(arg=2, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack ['$null$282.1', '$294load_attr.2', '$306load_attr.4', '$328load_attr.6'] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=344, inst=CALL(arg=2, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack ['$null$282.1', '$294load_attr.2', '$306load_attr.4', '$328load_attr.6'] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=354, inst=STORE_FAST(arg=11, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack ['$344call.7'] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=356, inst=JUMP_FORWARD(arg=2, lineno=416) -13:52:50,801 numba.core.byteflow DEBUG stack [] -13:52:50,801 numba.core.byteflow DEBUG end state. edges=[Edge(pc=362, stack=(), blockstack=(), npush=0)] -13:52:50,801 numba.core.byteflow DEBUG pending: deque([State(pc_initial=358 nstack_initial=0), State(pc_initial=362 nstack_initial=0)]) -13:52:50,801 numba.core.byteflow DEBUG stack: [] -13:52:50,801 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=358 nstack_initial=0) -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=358, inst=LOAD_CONST(arg=4, lineno=418) -13:52:50,801 numba.core.byteflow DEBUG stack [] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=360, inst=STORE_FAST(arg=11, lineno=418) -13:52:50,801 numba.core.byteflow DEBUG stack ['$const358.0'] -13:52:50,801 numba.core.byteflow DEBUG end state. edges=[Edge(pc=362, stack=(), blockstack=(), npush=0)] -13:52:50,801 numba.core.byteflow DEBUG pending: deque([State(pc_initial=362 nstack_initial=0), State(pc_initial=362 nstack_initial=0)]) -13:52:50,801 numba.core.byteflow DEBUG stack: [] -13:52:50,801 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=362 nstack_initial=0) -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=362, inst=LOAD_GLOBAL(arg=13, lineno=420) -13:52:50,801 numba.core.byteflow DEBUG stack [] -13:52:50,801 numba.core.byteflow DEBUG dispatch pc=374, inst=LOAD_FAST(arg=6, lineno=420) -13:52:50,802 numba.core.byteflow DEBUG stack ['$null$362.1', '$362load_global.0'] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=376, inst=PRECALL(arg=1, lineno=420) -13:52:50,802 numba.core.byteflow DEBUG stack ['$null$362.1', '$362load_global.0', '$n_samples374.2'] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=380, inst=CALL(arg=1, lineno=420) -13:52:50,802 numba.core.byteflow DEBUG stack ['$null$362.1', '$362load_global.0', '$n_samples374.2'] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=390, inst=GET_ITER(arg=None, lineno=420) -13:52:50,802 numba.core.byteflow DEBUG stack ['$380call.3'] -13:52:50,802 numba.core.byteflow DEBUG end state. edges=[Edge(pc=392, stack=('$390get_iter.4',), blockstack=(), npush=0)] -13:52:50,802 numba.core.byteflow DEBUG pending: deque([State(pc_initial=362 nstack_initial=0), State(pc_initial=392 nstack_initial=1)]) -13:52:50,802 numba.core.byteflow DEBUG pending: deque([State(pc_initial=392 nstack_initial=1)]) -13:52:50,802 numba.core.byteflow DEBUG stack: ['$phi392.0'] -13:52:50,802 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=392 nstack_initial=1) -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=392, inst=FOR_ITER(arg=206, lineno=420) -13:52:50,802 numba.core.byteflow DEBUG stack ['$phi392.0'] -13:52:50,802 numba.core.byteflow DEBUG end state. edges=[Edge(pc=806, stack=(), blockstack=(), npush=0), Edge(pc=394, stack=('$phi392.0', '$392for_iter.2'), blockstack=(), npush=0)] -13:52:50,802 numba.core.byteflow DEBUG pending: deque([State(pc_initial=806 nstack_initial=0), State(pc_initial=394 nstack_initial=2)]) -13:52:50,802 numba.core.byteflow DEBUG stack: [] -13:52:50,802 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=806 nstack_initial=0) -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=806, inst=LOAD_FAST(arg=8, lineno=439) -13:52:50,802 numba.core.byteflow DEBUG stack [] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=808, inst=LOAD_FAST(arg=9, lineno=439) -13:52:50,802 numba.core.byteflow DEBUG stack ['$rows806.0'] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=810, inst=LOAD_FAST(arg=10, lineno=439) -13:52:50,802 numba.core.byteflow DEBUG stack ['$rows806.0', '$cols808.1'] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=812, inst=LOAD_FAST(arg=11, lineno=439) -13:52:50,802 numba.core.byteflow DEBUG stack ['$rows806.0', '$cols808.1', '$vals810.2'] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=814, inst=BUILD_TUPLE(arg=4, lineno=439) -13:52:50,802 numba.core.byteflow DEBUG stack ['$rows806.0', '$cols808.1', '$vals810.2', '$dists812.3'] -13:52:50,802 numba.core.byteflow DEBUG dispatch pc=816, inst=RETURN_VALUE(arg=None, lineno=439) -13:52:50,802 numba.core.byteflow DEBUG stack ['$814build_tuple.4'] -13:52:50,802 numba.core.byteflow DEBUG end state. edges=[] -13:52:50,803 numba.core.byteflow DEBUG pending: deque([State(pc_initial=394 nstack_initial=2)]) -13:52:50,803 numba.core.byteflow DEBUG stack: ['$phi394.0', '$phi394.1'] -13:52:50,803 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=394 nstack_initial=2) -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=394, inst=STORE_FAST(arg=12, lineno=420) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi394.0', '$phi394.1'] -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=396, inst=LOAD_GLOBAL(arg=13, lineno=421) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi394.0'] -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=408, inst=LOAD_FAST(arg=7, lineno=421) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi394.0', '$null$396.3', '$396load_global.2'] -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=410, inst=PRECALL(arg=1, lineno=421) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi394.0', '$null$396.3', '$396load_global.2', '$n_neighbors408.4'] -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=414, inst=CALL(arg=1, lineno=421) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi394.0', '$null$396.3', '$396load_global.2', '$n_neighbors408.4'] -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=424, inst=GET_ITER(arg=None, lineno=421) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi394.0', '$414call.5'] -13:52:50,803 numba.core.byteflow DEBUG end state. edges=[Edge(pc=426, stack=('$phi394.0', '$424get_iter.6'), blockstack=(), npush=0)] -13:52:50,803 numba.core.byteflow DEBUG pending: deque([State(pc_initial=426 nstack_initial=2)]) -13:52:50,803 numba.core.byteflow DEBUG stack: ['$phi426.0', '$phi426.1'] -13:52:50,803 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=426 nstack_initial=2) -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=426, inst=FOR_ITER(arg=188, lineno=421) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi426.0', '$phi426.1'] -13:52:50,803 numba.core.byteflow DEBUG end state. edges=[Edge(pc=804, stack=('$phi426.0',), blockstack=(), npush=0), Edge(pc=428, stack=('$phi426.0', '$phi426.1', '$426for_iter.3'), blockstack=(), npush=0)] -13:52:50,803 numba.core.byteflow DEBUG pending: deque([State(pc_initial=804 nstack_initial=1), State(pc_initial=428 nstack_initial=3)]) -13:52:50,803 numba.core.byteflow DEBUG stack: ['$phi804.0'] -13:52:50,803 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=804 nstack_initial=1) -13:52:50,803 numba.core.byteflow DEBUG dispatch pc=804, inst=JUMP_BACKWARD(arg=207, lineno=421) -13:52:50,803 numba.core.byteflow DEBUG stack ['$phi804.0'] -13:52:50,803 numba.core.byteflow DEBUG end state. edges=[Edge(pc=392, stack=('$phi804.0',), blockstack=(), npush=0)] -13:52:50,803 numba.core.byteflow DEBUG pending: deque([State(pc_initial=428 nstack_initial=3), State(pc_initial=392 nstack_initial=1)]) -13:52:50,803 numba.core.byteflow DEBUG stack: ['$phi428.0', '$phi428.1', '$phi428.2'] -13:52:50,803 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=428 nstack_initial=3) -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=428, inst=STORE_FAST(arg=13, lineno=421) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$phi428.2'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=430, inst=LOAD_FAST(arg=0, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=432, inst=LOAD_FAST(arg=12, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$knn_indices430.3'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=434, inst=LOAD_FAST(arg=13, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$knn_indices430.3', '$i432.4'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=436, inst=BUILD_TUPLE(arg=2, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$knn_indices430.3', '$i432.4', '$j434.5'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=438, inst=BINARY_SUBSCR(arg=None, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$knn_indices430.3', '$436build_tuple.6'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=448, inst=LOAD_CONST(arg=5, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$438binary_subscr.7'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=450, inst=COMPARE_OP(arg=2, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$438binary_subscr.7', '$const448.8'] -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=456, inst=POP_JUMP_FORWARD_IF_FALSE(arg=1, lineno=422) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi428.0', '$phi428.1', '$450compare_op.9'] -13:52:50,804 numba.core.byteflow DEBUG end state. edges=[Edge(pc=458, stack=('$phi428.0', '$phi428.1'), blockstack=(), npush=0), Edge(pc=460, stack=('$phi428.0', '$phi428.1'), blockstack=(), npush=0)] -13:52:50,804 numba.core.byteflow DEBUG pending: deque([State(pc_initial=392 nstack_initial=1), State(pc_initial=458 nstack_initial=2), State(pc_initial=460 nstack_initial=2)]) -13:52:50,804 numba.core.byteflow DEBUG pending: deque([State(pc_initial=458 nstack_initial=2), State(pc_initial=460 nstack_initial=2)]) -13:52:50,804 numba.core.byteflow DEBUG stack: ['$phi458.0', '$phi458.1'] -13:52:50,804 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=458 nstack_initial=2) -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=458, inst=JUMP_BACKWARD(arg=17, lineno=423) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi458.0', '$phi458.1'] -13:52:50,804 numba.core.byteflow DEBUG end state. edges=[Edge(pc=426, stack=('$phi458.0', '$phi458.1'), blockstack=(), npush=0)] -13:52:50,804 numba.core.byteflow DEBUG pending: deque([State(pc_initial=460 nstack_initial=2), State(pc_initial=426 nstack_initial=2)]) -13:52:50,804 numba.core.byteflow DEBUG stack: ['$phi460.0', '$phi460.1'] -13:52:50,804 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=460 nstack_initial=2) -13:52:50,804 numba.core.byteflow DEBUG dispatch pc=460, inst=LOAD_FAST(arg=5, lineno=426) -13:52:50,804 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=462, inst=LOAD_CONST(arg=6, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$bipartite460.2'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=464, inst=COMPARE_OP(arg=2, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$bipartite460.2', '$const462.3'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=470, inst=LOAD_FAST(arg=0, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=472, inst=LOAD_FAST(arg=12, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4', '$knn_indices470.5'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=474, inst=LOAD_FAST(arg=13, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4', '$knn_indices470.5', '$i472.6'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=476, inst=BUILD_TUPLE(arg=2, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4', '$knn_indices470.5', '$i472.6', '$j474.7'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=478, inst=BINARY_SUBSCR(arg=None, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4', '$knn_indices470.5', '$476build_tuple.8'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=488, inst=LOAD_FAST(arg=12, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4', '$478binary_subscr.9'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=490, inst=COMPARE_OP(arg=2, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4', '$478binary_subscr.9', '$i488.10'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=496, inst=BINARY_OP(arg=1, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$464compare_op.4', '$490compare_op.11'] -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=500, inst=POP_JUMP_FORWARD_IF_FALSE(arg=3, lineno=426) -13:52:50,805 numba.core.byteflow DEBUG stack ['$phi460.0', '$phi460.1', '$binop_and_496.12'] -13:52:50,805 numba.core.byteflow DEBUG end state. edges=[Edge(pc=502, stack=('$phi460.0', '$phi460.1'), blockstack=(), npush=0), Edge(pc=508, stack=('$phi460.0', '$phi460.1'), blockstack=(), npush=0)] -13:52:50,805 numba.core.byteflow DEBUG pending: deque([State(pc_initial=426 nstack_initial=2), State(pc_initial=502 nstack_initial=2), State(pc_initial=508 nstack_initial=2)]) -13:52:50,805 numba.core.byteflow DEBUG pending: deque([State(pc_initial=502 nstack_initial=2), State(pc_initial=508 nstack_initial=2)]) -13:52:50,805 numba.core.byteflow DEBUG stack: ['$phi502.0', '$phi502.1'] -13:52:50,805 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=502 nstack_initial=2) -13:52:50,805 numba.core.byteflow DEBUG dispatch pc=502, inst=LOAD_CONST(arg=7, lineno=427) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi502.0', '$phi502.1'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=504, inst=STORE_FAST(arg=14, lineno=427) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi502.0', '$phi502.1', '$const502.2'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=506, inst=JUMP_FORWARD(arg=85, lineno=427) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi502.0', '$phi502.1'] -13:52:50,806 numba.core.byteflow DEBUG end state. edges=[Edge(pc=678, stack=('$phi502.0', '$phi502.1'), blockstack=(), npush=0)] -13:52:50,806 numba.core.byteflow DEBUG pending: deque([State(pc_initial=508 nstack_initial=2), State(pc_initial=678 nstack_initial=2)]) -13:52:50,806 numba.core.byteflow DEBUG stack: ['$phi508.0', '$phi508.1'] -13:52:50,806 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=508 nstack_initial=2) -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=508, inst=LOAD_FAST(arg=1, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=510, inst=LOAD_FAST(arg=12, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$knn_dists508.2'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=512, inst=LOAD_FAST(arg=13, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$knn_dists508.2', '$i510.3'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=514, inst=BUILD_TUPLE(arg=2, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$knn_dists508.2', '$i510.3', '$j512.4'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=516, inst=BINARY_SUBSCR(arg=None, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$knn_dists508.2', '$514build_tuple.5'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=526, inst=LOAD_FAST(arg=3, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$516binary_subscr.6'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=528, inst=LOAD_FAST(arg=12, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$516binary_subscr.6', '$rhos526.7'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=530, inst=BINARY_SUBSCR(arg=None, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$516binary_subscr.6', '$rhos526.7', '$i528.8'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=540, inst=BINARY_OP(arg=10, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$516binary_subscr.6', '$530binary_subscr.9'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=544, inst=LOAD_CONST(arg=7, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$binop_sub540.10'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=546, inst=COMPARE_OP(arg=1, lineno=428) -13:52:50,806 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$binop_sub540.10', '$const544.11'] -13:52:50,806 numba.core.byteflow DEBUG dispatch pc=552, inst=POP_JUMP_FORWARD_IF_TRUE(arg=12, lineno=428) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi508.0', '$phi508.1', '$546compare_op.12'] -13:52:50,807 numba.core.byteflow DEBUG end state. edges=[Edge(pc=554, stack=('$phi508.0', '$phi508.1'), blockstack=(), npush=0), Edge(pc=578, stack=('$phi508.0', '$phi508.1'), blockstack=(), npush=0)] -13:52:50,807 numba.core.byteflow DEBUG pending: deque([State(pc_initial=678 nstack_initial=2), State(pc_initial=554 nstack_initial=2), State(pc_initial=578 nstack_initial=2)]) -13:52:50,807 numba.core.byteflow DEBUG stack: ['$phi678.0', '$phi678.1'] -13:52:50,807 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=678 nstack_initial=2) -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=678, inst=LOAD_FAST(arg=12, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=680, inst=LOAD_FAST(arg=8, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$i678.2'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=682, inst=LOAD_FAST(arg=12, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$i678.2', '$rows680.3'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=684, inst=LOAD_FAST(arg=7, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$i678.2', '$rows680.3', '$i682.4'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=686, inst=BINARY_OP(arg=5, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$i678.2', '$rows680.3', '$i682.4', '$n_neighbors684.5'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=690, inst=LOAD_FAST(arg=13, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$i678.2', '$rows680.3', '$binop_mul686.6'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=692, inst=BINARY_OP(arg=0, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$i678.2', '$rows680.3', '$binop_mul686.6', '$j690.7'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=696, inst=STORE_SUBSCR(arg=None, lineno=433) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$i678.2', '$rows680.3', '$binop_add692.8'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=700, inst=LOAD_FAST(arg=0, lineno=434) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=702, inst=LOAD_FAST(arg=12, lineno=434) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$knn_indices700.9'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=704, inst=LOAD_FAST(arg=13, lineno=434) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$knn_indices700.9', '$i702.10'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=706, inst=BUILD_TUPLE(arg=2, lineno=434) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$knn_indices700.9', '$i702.10', '$j704.11'] -13:52:50,807 numba.core.byteflow DEBUG dispatch pc=708, inst=BINARY_SUBSCR(arg=None, lineno=434) -13:52:50,807 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$knn_indices700.9', '$706build_tuple.12'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=718, inst=LOAD_FAST(arg=9, lineno=434) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$708binary_subscr.13'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=720, inst=LOAD_FAST(arg=12, lineno=434) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$708binary_subscr.13', '$cols718.14'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=722, inst=LOAD_FAST(arg=7, lineno=434) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$708binary_subscr.13', '$cols718.14', '$i720.15'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=724, inst=BINARY_OP(arg=5, lineno=434) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$708binary_subscr.13', '$cols718.14', '$i720.15', '$n_neighbors722.16'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=728, inst=LOAD_FAST(arg=13, lineno=434) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$708binary_subscr.13', '$cols718.14', '$binop_mul724.17'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=730, inst=BINARY_OP(arg=0, lineno=434) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$708binary_subscr.13', '$cols718.14', '$binop_mul724.17', '$j728.18'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=734, inst=STORE_SUBSCR(arg=None, lineno=434) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$708binary_subscr.13', '$cols718.14', '$binop_add730.19'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=738, inst=LOAD_FAST(arg=14, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=740, inst=LOAD_FAST(arg=10, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$val738.20'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=742, inst=LOAD_FAST(arg=12, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$val738.20', '$vals740.21'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=744, inst=LOAD_FAST(arg=7, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$val738.20', '$vals740.21', '$i742.22'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=746, inst=BINARY_OP(arg=5, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$val738.20', '$vals740.21', '$i742.22', '$n_neighbors744.23'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=750, inst=LOAD_FAST(arg=13, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$val738.20', '$vals740.21', '$binop_mul746.24'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=752, inst=BINARY_OP(arg=0, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$val738.20', '$vals740.21', '$binop_mul746.24', '$j750.25'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=756, inst=STORE_SUBSCR(arg=None, lineno=435) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$val738.20', '$vals740.21', '$binop_add752.26'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=760, inst=LOAD_FAST(arg=4, lineno=436) -13:52:50,808 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1'] -13:52:50,808 numba.core.byteflow DEBUG dispatch pc=762, inst=POP_JUMP_FORWARD_IF_FALSE(arg=19, lineno=436) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi678.0', '$phi678.1', '$return_dists760.27'] -13:52:50,809 numba.core.byteflow DEBUG end state. edges=[Edge(pc=764, stack=('$phi678.0', '$phi678.1'), blockstack=(), npush=0), Edge(pc=802, stack=('$phi678.0', '$phi678.1'), blockstack=(), npush=0)] -13:52:50,809 numba.core.byteflow DEBUG pending: deque([State(pc_initial=554 nstack_initial=2), State(pc_initial=578 nstack_initial=2), State(pc_initial=764 nstack_initial=2), State(pc_initial=802 nstack_initial=2)]) -13:52:50,809 numba.core.byteflow DEBUG stack: ['$phi554.0', '$phi554.1'] -13:52:50,809 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=554 nstack_initial=2) -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=554, inst=LOAD_FAST(arg=2, lineno=428) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi554.0', '$phi554.1'] -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=556, inst=LOAD_FAST(arg=12, lineno=428) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi554.0', '$phi554.1', '$sigmas554.2'] -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=558, inst=BINARY_SUBSCR(arg=None, lineno=428) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi554.0', '$phi554.1', '$sigmas554.2', '$i556.3'] -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=568, inst=LOAD_CONST(arg=7, lineno=428) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi554.0', '$phi554.1', '$558binary_subscr.4'] -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=570, inst=COMPARE_OP(arg=2, lineno=428) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi554.0', '$phi554.1', '$558binary_subscr.4', '$const568.5'] -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=576, inst=POP_JUMP_FORWARD_IF_FALSE(arg=3, lineno=428) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi554.0', '$phi554.1', '$570compare_op.6'] -13:52:50,809 numba.core.byteflow DEBUG end state. edges=[Edge(pc=578, stack=('$phi554.0', '$phi554.1'), blockstack=(), npush=0), Edge(pc=584, stack=('$phi554.0', '$phi554.1'), blockstack=(), npush=0)] -13:52:50,809 numba.core.byteflow DEBUG pending: deque([State(pc_initial=578 nstack_initial=2), State(pc_initial=764 nstack_initial=2), State(pc_initial=802 nstack_initial=2), State(pc_initial=578 nstack_initial=2), State(pc_initial=584 nstack_initial=2)]) -13:52:50,809 numba.core.byteflow DEBUG stack: ['$phi578.0', '$phi578.1'] -13:52:50,809 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=578 nstack_initial=2) -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=578, inst=LOAD_CONST(arg=8, lineno=429) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi578.0', '$phi578.1'] -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=580, inst=STORE_FAST(arg=14, lineno=429) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi578.0', '$phi578.1', '$const578.2'] -13:52:50,809 numba.core.byteflow DEBUG dispatch pc=582, inst=JUMP_FORWARD(arg=47, lineno=429) -13:52:50,809 numba.core.byteflow DEBUG stack ['$phi578.0', '$phi578.1'] -13:52:50,809 numba.core.byteflow DEBUG end state. edges=[Edge(pc=678, stack=('$phi578.0', '$phi578.1'), blockstack=(), npush=0)] -13:52:50,809 numba.core.byteflow DEBUG pending: deque([State(pc_initial=764 nstack_initial=2), State(pc_initial=802 nstack_initial=2), State(pc_initial=578 nstack_initial=2), State(pc_initial=584 nstack_initial=2), State(pc_initial=678 nstack_initial=2)]) -13:52:50,809 numba.core.byteflow DEBUG stack: ['$phi764.0', '$phi764.1'] -13:52:50,810 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=764 nstack_initial=2) -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=764, inst=LOAD_FAST(arg=1, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=766, inst=LOAD_FAST(arg=12, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$knn_dists764.2'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=768, inst=LOAD_FAST(arg=13, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$knn_dists764.2', '$i766.3'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=770, inst=BUILD_TUPLE(arg=2, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$knn_dists764.2', '$i766.3', '$j768.4'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=772, inst=BINARY_SUBSCR(arg=None, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$knn_dists764.2', '$770build_tuple.5'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=782, inst=LOAD_FAST(arg=11, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$772binary_subscr.6'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=784, inst=LOAD_FAST(arg=12, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$772binary_subscr.6', '$dists782.7'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=786, inst=LOAD_FAST(arg=7, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$772binary_subscr.6', '$dists782.7', '$i784.8'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=788, inst=BINARY_OP(arg=5, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$772binary_subscr.6', '$dists782.7', '$i784.8', '$n_neighbors786.9'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=792, inst=LOAD_FAST(arg=13, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$772binary_subscr.6', '$dists782.7', '$binop_mul788.10'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=794, inst=BINARY_OP(arg=0, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$772binary_subscr.6', '$dists782.7', '$binop_mul788.10', '$j792.11'] -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=798, inst=STORE_SUBSCR(arg=None, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi764.0', '$phi764.1', '$772binary_subscr.6', '$dists782.7', '$binop_add794.12'] -13:52:50,810 numba.core.byteflow DEBUG end state. edges=[Edge(pc=802, stack=('$phi764.0', '$phi764.1'), blockstack=(), npush=0)] -13:52:50,810 numba.core.byteflow DEBUG pending: deque([State(pc_initial=802 nstack_initial=2), State(pc_initial=578 nstack_initial=2), State(pc_initial=584 nstack_initial=2), State(pc_initial=678 nstack_initial=2), State(pc_initial=802 nstack_initial=2)]) -13:52:50,810 numba.core.byteflow DEBUG stack: ['$phi802.0', '$phi802.1'] -13:52:50,810 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=802 nstack_initial=2) -13:52:50,810 numba.core.byteflow DEBUG dispatch pc=802, inst=JUMP_BACKWARD(arg=189, lineno=437) -13:52:50,810 numba.core.byteflow DEBUG stack ['$phi802.0', '$phi802.1'] -13:52:50,810 numba.core.byteflow DEBUG end state. edges=[Edge(pc=426, stack=('$phi802.0', '$phi802.1'), blockstack=(), npush=0)] -13:52:50,811 numba.core.byteflow DEBUG pending: deque([State(pc_initial=578 nstack_initial=2), State(pc_initial=584 nstack_initial=2), State(pc_initial=678 nstack_initial=2), State(pc_initial=802 nstack_initial=2), State(pc_initial=426 nstack_initial=2)]) -13:52:50,811 numba.core.byteflow DEBUG pending: deque([State(pc_initial=584 nstack_initial=2), State(pc_initial=678 nstack_initial=2), State(pc_initial=802 nstack_initial=2), State(pc_initial=426 nstack_initial=2)]) -13:52:50,811 numba.core.byteflow DEBUG stack: ['$phi584.0', '$phi584.1'] -13:52:50,811 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=584 nstack_initial=2) -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=584, inst=LOAD_GLOBAL(arg=3, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=596, inst=LOAD_ATTR(arg=7, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$584load_global.2'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=606, inst=LOAD_FAST(arg=1, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=608, inst=LOAD_FAST(arg=12, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$knn_dists606.5'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=610, inst=LOAD_FAST(arg=13, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$knn_dists606.5', '$i608.6'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=612, inst=BUILD_TUPLE(arg=2, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$knn_dists606.5', '$i608.6', '$j610.7'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=614, inst=BINARY_SUBSCR(arg=None, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$knn_dists606.5', '$612build_tuple.8'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=624, inst=LOAD_FAST(arg=3, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$614binary_subscr.9'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=626, inst=LOAD_FAST(arg=12, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$614binary_subscr.9', '$rhos624.10'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=628, inst=BINARY_SUBSCR(arg=None, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$614binary_subscr.9', '$rhos624.10', '$i626.11'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=638, inst=BINARY_OP(arg=10, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$614binary_subscr.9', '$628binary_subscr.12'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=642, inst=LOAD_FAST(arg=2, lineno=431) -13:52:50,811 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$binop_sub638.13'] -13:52:50,811 numba.core.byteflow DEBUG dispatch pc=644, inst=LOAD_FAST(arg=12, lineno=431) -13:52:50,812 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$binop_sub638.13', '$sigmas642.14'] -13:52:50,812 numba.core.byteflow DEBUG dispatch pc=646, inst=BINARY_SUBSCR(arg=None, lineno=431) -13:52:50,812 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$binop_sub638.13', '$sigmas642.14', '$i644.15'] -13:52:50,812 numba.core.byteflow DEBUG dispatch pc=656, inst=BINARY_OP(arg=11, lineno=431) -13:52:50,812 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$binop_sub638.13', '$646binary_subscr.16'] -13:52:50,812 numba.core.byteflow DEBUG dispatch pc=660, inst=UNARY_NEGATIVE(arg=None, lineno=431) -13:52:50,812 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$binop_truediv656.17'] -13:52:50,812 numba.core.byteflow DEBUG dispatch pc=662, inst=PRECALL(arg=1, lineno=431) -13:52:50,812 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$660unary_negative.18'] -13:52:50,812 numba.core.byteflow DEBUG dispatch pc=666, inst=CALL(arg=1, lineno=431) -13:52:50,812 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$null$584.3', '$596load_attr.4', '$660unary_negative.18'] -13:52:50,812 numba.core.byteflow DEBUG dispatch pc=676, inst=STORE_FAST(arg=14, lineno=431) -13:52:50,812 numba.core.byteflow DEBUG stack ['$phi584.0', '$phi584.1', '$666call.19'] -13:52:50,812 numba.core.byteflow DEBUG end state. edges=[Edge(pc=678, stack=('$phi584.0', '$phi584.1'), blockstack=(), npush=0)] -13:52:50,812 numba.core.byteflow DEBUG pending: deque([State(pc_initial=678 nstack_initial=2), State(pc_initial=802 nstack_initial=2), State(pc_initial=426 nstack_initial=2), State(pc_initial=678 nstack_initial=2)]) -13:52:50,812 numba.core.byteflow DEBUG pending: deque([State(pc_initial=802 nstack_initial=2), State(pc_initial=426 nstack_initial=2), State(pc_initial=678 nstack_initial=2)]) -13:52:50,812 numba.core.byteflow DEBUG pending: deque([State(pc_initial=426 nstack_initial=2), State(pc_initial=678 nstack_initial=2)]) -13:52:50,812 numba.core.byteflow DEBUG pending: deque([State(pc_initial=678 nstack_initial=2)]) -13:52:50,812 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:50,812 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=282 nstack_initial=0): set(), - State(pc_initial=358 nstack_initial=0): set(), - State(pc_initial=362 nstack_initial=0): set(), - State(pc_initial=392 nstack_initial=1): {'$phi392.0'}, - State(pc_initial=394 nstack_initial=2): {'$phi394.1'}, - State(pc_initial=426 nstack_initial=2): {'$phi426.1'}, - State(pc_initial=428 nstack_initial=3): {'$phi428.2'}, - State(pc_initial=458 nstack_initial=2): set(), - State(pc_initial=460 nstack_initial=2): set(), - State(pc_initial=502 nstack_initial=2): set(), - State(pc_initial=508 nstack_initial=2): set(), - State(pc_initial=554 nstack_initial=2): set(), - State(pc_initial=578 nstack_initial=2): set(), - State(pc_initial=584 nstack_initial=2): set(), - State(pc_initial=678 nstack_initial=2): set(), - State(pc_initial=764 nstack_initial=2): set(), - State(pc_initial=802 nstack_initial=2): set(), - State(pc_initial=804 nstack_initial=1): set(), - State(pc_initial=806 nstack_initial=0): set()}) -13:52:50,814 numba.core.byteflow DEBUG defmap: {'$phi392.0': State(pc_initial=362 nstack_initial=0), - '$phi394.1': State(pc_initial=392 nstack_initial=1), - '$phi426.1': State(pc_initial=394 nstack_initial=2), - '$phi428.2': State(pc_initial=426 nstack_initial=2)} -13:52:50,814 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi392.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi804.0', - State(pc_initial=804 nstack_initial=1))}, - '$phi394.0': {('$phi392.0', - State(pc_initial=392 nstack_initial=1))}, - '$phi394.1': {('$392for_iter.2', - State(pc_initial=392 nstack_initial=1))}, - '$phi426.0': {('$phi394.0', - State(pc_initial=394 nstack_initial=2)), - ('$phi458.0', - State(pc_initial=458 nstack_initial=2)), - ('$phi802.0', - State(pc_initial=802 nstack_initial=2))}, - '$phi426.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi458.1', - State(pc_initial=458 nstack_initial=2)), - ('$phi802.1', - State(pc_initial=802 nstack_initial=2))}, - '$phi428.0': {('$phi426.0', - State(pc_initial=426 nstack_initial=2))}, - '$phi428.1': {('$phi426.1', - State(pc_initial=426 nstack_initial=2))}, - '$phi428.2': {('$426for_iter.3', - State(pc_initial=426 nstack_initial=2))}, - '$phi458.0': {('$phi428.0', - State(pc_initial=428 nstack_initial=3))}, - '$phi458.1': {('$phi428.1', - State(pc_initial=428 nstack_initial=3))}, - '$phi460.0': {('$phi428.0', - State(pc_initial=428 nstack_initial=3))}, - '$phi460.1': {('$phi428.1', - State(pc_initial=428 nstack_initial=3))}, - '$phi502.0': {('$phi460.0', - State(pc_initial=460 nstack_initial=2))}, - '$phi502.1': {('$phi460.1', - State(pc_initial=460 nstack_initial=2))}, - '$phi508.0': {('$phi460.0', - State(pc_initial=460 nstack_initial=2))}, - '$phi508.1': {('$phi460.1', - State(pc_initial=460 nstack_initial=2))}, - '$phi554.0': {('$phi508.0', - State(pc_initial=508 nstack_initial=2))}, - '$phi554.1': {('$phi508.1', - State(pc_initial=508 nstack_initial=2))}, - '$phi578.0': {('$phi508.0', - State(pc_initial=508 nstack_initial=2)), - ('$phi554.0', - State(pc_initial=554 nstack_initial=2))}, - '$phi578.1': {('$phi508.1', - State(pc_initial=508 nstack_initial=2)), - ('$phi554.1', - State(pc_initial=554 nstack_initial=2))}, - '$phi584.0': {('$phi554.0', - State(pc_initial=554 nstack_initial=2))}, - '$phi584.1': {('$phi554.1', - State(pc_initial=554 nstack_initial=2))}, - '$phi678.0': {('$phi502.0', - State(pc_initial=502 nstack_initial=2)), - ('$phi578.0', - State(pc_initial=578 nstack_initial=2)), - ('$phi584.0', - State(pc_initial=584 nstack_initial=2))}, - '$phi678.1': {('$phi502.1', - State(pc_initial=502 nstack_initial=2)), - ('$phi578.1', - State(pc_initial=578 nstack_initial=2)), - ('$phi584.1', - State(pc_initial=584 nstack_initial=2))}, - '$phi764.0': {('$phi678.0', - State(pc_initial=678 nstack_initial=2))}, - '$phi764.1': {('$phi678.1', - State(pc_initial=678 nstack_initial=2))}, - '$phi802.0': {('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi802.1': {('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi804.0': {('$phi426.0', - State(pc_initial=426 nstack_initial=2))}}) -13:52:50,814 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi392.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi426.0', - State(pc_initial=426 nstack_initial=2))}, - '$phi394.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi426.0', - State(pc_initial=426 nstack_initial=2))}, - '$phi394.1': {('$392for_iter.2', - State(pc_initial=392 nstack_initial=1))}, - '$phi426.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi426.0', - State(pc_initial=426 nstack_initial=2)), - ('$phi428.0', - State(pc_initial=428 nstack_initial=3)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi426.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi428.1', - State(pc_initial=428 nstack_initial=3)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi428.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi428.0', - State(pc_initial=428 nstack_initial=3)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi428.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi428.1', - State(pc_initial=428 nstack_initial=3)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi428.2': {('$426for_iter.3', - State(pc_initial=426 nstack_initial=2))}, - '$phi458.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi458.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi460.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi460.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi502.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi502.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi508.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi508.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi554.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi554.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi578.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi578.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi584.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi584.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi678.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi678.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi678.1', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi764.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi764.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2)), - ('$phi764.1', - State(pc_initial=764 nstack_initial=2))}, - '$phi802.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi802.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi804.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi428.0', - State(pc_initial=428 nstack_initial=3)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}}) -13:52:50,815 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi392.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi428.0', - State(pc_initial=428 nstack_initial=3)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi394.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0)), - ('$phi428.0', - State(pc_initial=428 nstack_initial=3)), - ('$phi678.0', - State(pc_initial=678 nstack_initial=2)), - ('$phi764.0', - State(pc_initial=764 nstack_initial=2))}, - '$phi394.1': {('$392for_iter.2', - State(pc_initial=392 nstack_initial=1))}, - '$phi426.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi426.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi428.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi428.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi428.2': {('$426for_iter.3', - State(pc_initial=426 nstack_initial=2))}, - '$phi458.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi458.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi460.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi460.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi502.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi502.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi508.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi508.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi554.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi554.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi578.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi578.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi584.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi584.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi678.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi678.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi764.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi764.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi802.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi802.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi804.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}}) -13:52:50,816 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi392.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi394.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi394.1': {('$392for_iter.2', - State(pc_initial=392 nstack_initial=1))}, - '$phi426.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi426.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi428.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi428.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi428.2': {('$426for_iter.3', - State(pc_initial=426 nstack_initial=2))}, - '$phi458.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi458.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi460.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi460.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi502.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi502.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi508.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi508.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi554.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi554.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi578.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi578.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi584.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi584.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi678.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi678.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi764.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi764.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi802.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi802.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi804.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}}) -13:52:50,816 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi392.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi394.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi394.1': {('$392for_iter.2', - State(pc_initial=392 nstack_initial=1))}, - '$phi426.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi426.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi428.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi428.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi428.2': {('$426for_iter.3', - State(pc_initial=426 nstack_initial=2))}, - '$phi458.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi458.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi460.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi460.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi502.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi502.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi508.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi508.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi554.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi554.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi578.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi578.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi584.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi584.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi678.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi678.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi764.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi764.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi802.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}, - '$phi802.1': {('$424get_iter.6', - State(pc_initial=394 nstack_initial=2))}, - '$phi804.0': {('$390get_iter.4', - State(pc_initial=362 nstack_initial=0))}}) -13:52:50,817 numba.core.byteflow DEBUG keep phismap: {'$phi392.0': {('$390get_iter.4', State(pc_initial=362 nstack_initial=0))}, - '$phi394.1': {('$392for_iter.2', State(pc_initial=392 nstack_initial=1))}, - '$phi426.1': {('$424get_iter.6', State(pc_initial=394 nstack_initial=2))}, - '$phi428.2': {('$426for_iter.3', State(pc_initial=426 nstack_initial=2))}} -13:52:50,817 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=362 nstack_initial=0): {'$phi392.0': '$390get_iter.4'}, - State(pc_initial=392 nstack_initial=1): {'$phi394.1': '$392for_iter.2'}, - State(pc_initial=394 nstack_initial=2): {'$phi426.1': '$424get_iter.6'}, - State(pc_initial=426 nstack_initial=2): {'$phi428.2': '$426for_iter.3'}}) -13:52:50,817 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$knn_indices4.0'}), (6, {'item': '$knn_indices4.0', 'res': '$6load_attr.1'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$const16.2'}), (18, {'index': '$const16.2', 'target': '$6load_attr.1', 'res': '$18binary_subscr.3'}), (20, {}), (22, {}), (24, {}), (26, {}), (28, {'value': '$18binary_subscr.3'}), (30, {'res': '$knn_indices30.4'}), (32, {'item': '$knn_indices30.4', 'res': '$32load_attr.5'}), (34, {}), (36, {}), (38, {}), (40, {}), (42, {'res': '$const42.6'}), (44, {'index': '$const42.6', 'target': '$32load_attr.5', 'res': '$44binary_subscr.7'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {'value': '$44binary_subscr.7'}), (56, {'idx': 1, 'res': '$56load_global.8'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {'item': '$56load_global.8', 'res': '$68load_attr.10'}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {'res': '$knn_indices78.11'}), (80, {'item': '$knn_indices78.11', 'res': '$80load_attr.12'}), (82, {}), (84, {}), (86, {}), (88, {}), (90, {'idx': 1, 'res': '$90load_global.13'}), (92, {}), (94, {}), (96, {}), (98, {}), (100, {}), (102, {'item': '$90load_global.13', 'res': '$102load_attr.14'}), (104, {}), (106, {}), (108, {}), (110, {}), (114, {}), (116, {}), (118, {'func': '$68load_attr.10', 'args': ['$80load_attr.12', '$102load_attr.14'], 'kw_names': 3, 'res': '$118call.15'}), (120, {}), (122, {}), (124, {}), (126, {}), (128, {'value': '$118call.15'}), (130, {'idx': 1, 'res': '$130load_global.16'}), (132, {}), (134, {}), (136, {}), (138, {}), (140, {}), (142, {'item': '$130load_global.16', 'res': '$142load_attr.18'}), (144, {}), (146, {}), (148, {}), (150, {}), (152, {'res': '$knn_indices152.19'}), (154, {'item': '$knn_indices152.19', 'res': '$154load_attr.20'}), (156, {}), (158, {}), (160, {}), (162, {}), (164, {'idx': 1, 'res': '$164load_global.21'}), (166, {}), (168, {}), (170, {}), (172, {}), (174, {}), (176, {'item': '$164load_global.21', 'res': '$176load_attr.22'}), (178, {}), (180, {}), (182, {}), (184, {}), (188, {}), (190, {}), (192, {'func': '$142load_attr.18', 'args': ['$154load_attr.20', '$176load_attr.22'], 'kw_names': 3, 'res': '$192call.23'}), (194, {}), (196, {}), (198, {}), (200, {}), (202, {'value': '$192call.23'}), (204, {'idx': 1, 'res': '$204load_global.24'}), (206, {}), (208, {}), (210, {}), (212, {}), (214, {}), (216, {'item': '$204load_global.24', 'res': '$216load_attr.26'}), (218, {}), (220, {}), (222, {}), (224, {}), (226, {'res': '$knn_indices226.27'}), (228, {'item': '$knn_indices226.27', 'res': '$228load_attr.28'}), (230, {}), (232, {}), (234, {}), (236, {}), (238, {'idx': 1, 'res': '$238load_global.29'}), (240, {}), (242, {}), (244, {}), (246, {}), (248, {}), (250, {'item': '$238load_global.29', 'res': '$250load_attr.30'}), (252, {}), (254, {}), (256, {}), (258, {}), (262, {}), (264, {}), (266, {'func': '$216load_attr.26', 'args': ['$228load_attr.28', '$250load_attr.30'], 'kw_names': 3, 'res': '$266call.31'}), (268, {}), (270, {}), (272, {}), (274, {}), (276, {'value': '$266call.31'}), (278, {'res': '$return_dists278.32'}), (280, {'pred': '$return_dists278.32'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={282: (), 358: ()}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=282 nstack_initial=0): -AdaptBlockInfo(insts=((282, {'idx': 1, 'res': '$282load_global.0'}), (284, {}), (286, {}), (288, {}), (290, {}), (292, {}), (294, {'item': '$282load_global.0', 'res': '$294load_attr.2'}), (296, {}), (298, {}), (300, {}), (302, {}), (304, {'res': '$knn_indices304.3'}), (306, {'item': '$knn_indices304.3', 'res': '$306load_attr.4'}), (308, {}), (310, {}), (312, {}), (314, {}), (316, {'idx': 1, 'res': '$316load_global.5'}), (318, {}), (320, {}), (322, {}), (324, {}), (326, {}), (328, {'item': '$316load_global.5', 'res': '$328load_attr.6'}), (330, {}), (332, {}), (334, {}), (336, {}), (340, {}), (342, {}), (344, {'func': '$294load_attr.2', 'args': ['$306load_attr.4', '$328load_attr.6'], 'kw_names': 3, 'res': '$344call.7'}), (346, {}), (348, {}), (350, {}), (352, {}), (354, {'value': '$344call.7'}), (356, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={362: ()}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=358 nstack_initial=0): -AdaptBlockInfo(insts=((358, {'res': '$const358.0'}), (360, {'value': '$const358.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={362: ()}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=362 nstack_initial=0): -AdaptBlockInfo(insts=((362, {'idx': 6, 'res': '$362load_global.0'}), (364, {}), (366, {}), (368, {}), (370, {}), (372, {}), (374, {'res': '$n_samples374.2'}), (376, {}), (378, {}), (380, {'func': '$362load_global.0', 'args': ['$n_samples374.2'], 'kw_names': None, 'res': '$380call.3'}), (382, {}), (384, {}), (386, {}), (388, {}), (390, {'value': '$380call.3', 'res': '$390get_iter.4'})), outgoing_phis={'$phi392.0': '$390get_iter.4'}, blockstack=(), active_try_block=None, outgoing_edgepushed={392: ('$390get_iter.4',)}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=392 nstack_initial=1): -AdaptBlockInfo(insts=((392, {'iterator': '$phi392.0', 'pair': '$392for_iter.1', 'indval': '$392for_iter.2', 'pred': '$392for_iter.3'}),), outgoing_phis={'$phi394.1': '$392for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={806: (), 394: ('$phi392.0', '$392for_iter.2')}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=394 nstack_initial=2): -AdaptBlockInfo(insts=((394, {'value': '$phi394.1'}), (396, {'idx': 6, 'res': '$396load_global.2'}), (398, {}), (400, {}), (402, {}), (404, {}), (406, {}), (408, {'res': '$n_neighbors408.4'}), (410, {}), (412, {}), (414, {'func': '$396load_global.2', 'args': ['$n_neighbors408.4'], 'kw_names': None, 'res': '$414call.5'}), (416, {}), (418, {}), (420, {}), (422, {}), (424, {'value': '$414call.5', 'res': '$424get_iter.6'})), outgoing_phis={'$phi426.1': '$424get_iter.6'}, blockstack=(), active_try_block=None, outgoing_edgepushed={426: ('$phi394.0', '$424get_iter.6')}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=426 nstack_initial=2): -AdaptBlockInfo(insts=((426, {'iterator': '$phi426.1', 'pair': '$426for_iter.2', 'indval': '$426for_iter.3', 'pred': '$426for_iter.4'}),), outgoing_phis={'$phi428.2': '$426for_iter.3'}, blockstack=(), active_try_block=None, outgoing_edgepushed={804: ('$phi426.0',), 428: ('$phi426.0', '$phi426.1', '$426for_iter.3')}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=428 nstack_initial=3): -AdaptBlockInfo(insts=((428, {'value': '$phi428.2'}), (430, {'res': '$knn_indices430.3'}), (432, {'res': '$i432.4'}), (434, {'res': '$j434.5'}), (436, {'items': ['$i432.4', '$j434.5'], 'res': '$436build_tuple.6'}), (438, {'index': '$436build_tuple.6', 'target': '$knn_indices430.3', 'res': '$438binary_subscr.7'}), (440, {}), (442, {}), (444, {}), (446, {}), (448, {'res': '$const448.8'}), (450, {'lhs': '$438binary_subscr.7', 'rhs': '$const448.8', 'res': '$450compare_op.9'}), (452, {}), (454, {}), (456, {'pred': '$450compare_op.9'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={458: ('$phi428.0', '$phi428.1'), 460: ('$phi428.0', '$phi428.1')}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=458 nstack_initial=2): -AdaptBlockInfo(insts=((458, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={426: ('$phi458.0', '$phi458.1')}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=460 nstack_initial=2): -AdaptBlockInfo(insts=((460, {'res': '$bipartite460.2'}), (462, {'res': '$const462.3'}), (464, {'lhs': '$bipartite460.2', 'rhs': '$const462.3', 'res': '$464compare_op.4'}), (466, {}), (468, {}), (470, {'res': '$knn_indices470.5'}), (472, {'res': '$i472.6'}), (474, {'res': '$j474.7'}), (476, {'items': ['$i472.6', '$j474.7'], 'res': '$476build_tuple.8'}), (478, {'index': '$476build_tuple.8', 'target': '$knn_indices470.5', 'res': '$478binary_subscr.9'}), (480, {}), (482, {}), (484, {}), (486, {}), (488, {'res': '$i488.10'}), (490, {'lhs': '$478binary_subscr.9', 'rhs': '$i488.10', 'res': '$490compare_op.11'}), (492, {}), (494, {}), (496, {'op': '&', 'lhs': '$464compare_op.4', 'rhs': '$490compare_op.11', 'res': '$binop_and_496.12'}), (498, {}), (500, {'pred': '$binop_and_496.12'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={502: ('$phi460.0', '$phi460.1'), 508: ('$phi460.0', '$phi460.1')}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=502 nstack_initial=2): -AdaptBlockInfo(insts=((502, {'res': '$const502.2'}), (504, {'value': '$const502.2'}), (506, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={678: ('$phi502.0', '$phi502.1')}) -13:52:50,817 numba.core.byteflow DEBUG block_infos State(pc_initial=508 nstack_initial=2): -AdaptBlockInfo(insts=((508, {'res': '$knn_dists508.2'}), (510, {'res': '$i510.3'}), (512, {'res': '$j512.4'}), (514, {'items': ['$i510.3', '$j512.4'], 'res': '$514build_tuple.5'}), (516, {'index': '$514build_tuple.5', 'target': '$knn_dists508.2', 'res': '$516binary_subscr.6'}), (518, {}), (520, {}), (522, {}), (524, {}), (526, {'res': '$rhos526.7'}), (528, {'res': '$i528.8'}), (530, {'index': '$i528.8', 'target': '$rhos526.7', 'res': '$530binary_subscr.9'}), (532, {}), (534, {}), (536, {}), (538, {}), (540, {'op': '-', 'lhs': '$516binary_subscr.6', 'rhs': '$530binary_subscr.9', 'res': '$binop_sub540.10'}), (542, {}), (544, {'res': '$const544.11'}), (546, {'lhs': '$binop_sub540.10', 'rhs': '$const544.11', 'res': '$546compare_op.12'}), (548, {}), (550, {}), (552, {'pred': '$546compare_op.12'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={554: ('$phi508.0', '$phi508.1'), 578: ('$phi508.0', '$phi508.1')}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=554 nstack_initial=2): -AdaptBlockInfo(insts=((554, {'res': '$sigmas554.2'}), (556, {'res': '$i556.3'}), (558, {'index': '$i556.3', 'target': '$sigmas554.2', 'res': '$558binary_subscr.4'}), (560, {}), (562, {}), (564, {}), (566, {}), (568, {'res': '$const568.5'}), (570, {'lhs': '$558binary_subscr.4', 'rhs': '$const568.5', 'res': '$570compare_op.6'}), (572, {}), (574, {}), (576, {'pred': '$570compare_op.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={578: ('$phi554.0', '$phi554.1'), 584: ('$phi554.0', '$phi554.1')}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=578 nstack_initial=2): -AdaptBlockInfo(insts=((578, {'res': '$const578.2'}), (580, {'value': '$const578.2'}), (582, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={678: ('$phi578.0', '$phi578.1')}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=584 nstack_initial=2): -AdaptBlockInfo(insts=((584, {'idx': 1, 'res': '$584load_global.2'}), (586, {}), (588, {}), (590, {}), (592, {}), (594, {}), (596, {'item': '$584load_global.2', 'res': '$596load_attr.4'}), (598, {}), (600, {}), (602, {}), (604, {}), (606, {'res': '$knn_dists606.5'}), (608, {'res': '$i608.6'}), (610, {'res': '$j610.7'}), (612, {'items': ['$i608.6', '$j610.7'], 'res': '$612build_tuple.8'}), (614, {'index': '$612build_tuple.8', 'target': '$knn_dists606.5', 'res': '$614binary_subscr.9'}), (616, {}), (618, {}), (620, {}), (622, {}), (624, {'res': '$rhos624.10'}), (626, {'res': '$i626.11'}), (628, {'index': '$i626.11', 'target': '$rhos624.10', 'res': '$628binary_subscr.12'}), (630, {}), (632, {}), (634, {}), (636, {}), (638, {'op': '-', 'lhs': '$614binary_subscr.9', 'rhs': '$628binary_subscr.12', 'res': '$binop_sub638.13'}), (640, {}), (642, {'res': '$sigmas642.14'}), (644, {'res': '$i644.15'}), (646, {'index': '$i644.15', 'target': '$sigmas642.14', 'res': '$646binary_subscr.16'}), (648, {}), (650, {}), (652, {}), (654, {}), (656, {'op': '/', 'lhs': '$binop_sub638.13', 'rhs': '$646binary_subscr.16', 'res': '$binop_truediv656.17'}), (658, {}), (660, {'value': '$binop_truediv656.17', 'res': '$660unary_negative.18'}), (662, {}), (664, {}), (666, {'func': '$596load_attr.4', 'args': ['$660unary_negative.18'], 'kw_names': None, 'res': '$666call.19'}), (668, {}), (670, {}), (672, {}), (674, {}), (676, {'value': '$666call.19'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={678: ('$phi584.0', '$phi584.1')}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=678 nstack_initial=2): -AdaptBlockInfo(insts=((678, {'res': '$i678.2'}), (680, {'res': '$rows680.3'}), (682, {'res': '$i682.4'}), (684, {'res': '$n_neighbors684.5'}), (686, {'op': '*', 'lhs': '$i682.4', 'rhs': '$n_neighbors684.5', 'res': '$binop_mul686.6'}), (688, {}), (690, {'res': '$j690.7'}), (692, {'op': '+', 'lhs': '$binop_mul686.6', 'rhs': '$j690.7', 'res': '$binop_add692.8'}), (694, {}), (696, {'target': '$rows680.3', 'index': '$binop_add692.8', 'value': '$i678.2'}), (698, {}), (700, {'res': '$knn_indices700.9'}), (702, {'res': '$i702.10'}), (704, {'res': '$j704.11'}), (706, {'items': ['$i702.10', '$j704.11'], 'res': '$706build_tuple.12'}), (708, {'index': '$706build_tuple.12', 'target': '$knn_indices700.9', 'res': '$708binary_subscr.13'}), (710, {}), (712, {}), (714, {}), (716, {}), (718, {'res': '$cols718.14'}), (720, {'res': '$i720.15'}), (722, {'res': '$n_neighbors722.16'}), (724, {'op': '*', 'lhs': '$i720.15', 'rhs': '$n_neighbors722.16', 'res': '$binop_mul724.17'}), (726, {}), (728, {'res': '$j728.18'}), (730, {'op': '+', 'lhs': '$binop_mul724.17', 'rhs': '$j728.18', 'res': '$binop_add730.19'}), (732, {}), (734, {'target': '$cols718.14', 'index': '$binop_add730.19', 'value': '$708binary_subscr.13'}), (736, {}), (738, {'res': '$val738.20'}), (740, {'res': '$vals740.21'}), (742, {'res': '$i742.22'}), (744, {'res': '$n_neighbors744.23'}), (746, {'op': '*', 'lhs': '$i742.22', 'rhs': '$n_neighbors744.23', 'res': '$binop_mul746.24'}), (748, {}), (750, {'res': '$j750.25'}), (752, {'op': '+', 'lhs': '$binop_mul746.24', 'rhs': '$j750.25', 'res': '$binop_add752.26'}), (754, {}), (756, {'target': '$vals740.21', 'index': '$binop_add752.26', 'value': '$val738.20'}), (758, {}), (760, {'res': '$return_dists760.27'}), (762, {'pred': '$return_dists760.27'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={764: ('$phi678.0', '$phi678.1'), 802: ('$phi678.0', '$phi678.1')}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=764 nstack_initial=2): -AdaptBlockInfo(insts=((764, {'res': '$knn_dists764.2'}), (766, {'res': '$i766.3'}), (768, {'res': '$j768.4'}), (770, {'items': ['$i766.3', '$j768.4'], 'res': '$770build_tuple.5'}), (772, {'index': '$770build_tuple.5', 'target': '$knn_dists764.2', 'res': '$772binary_subscr.6'}), (774, {}), (776, {}), (778, {}), (780, {}), (782, {'res': '$dists782.7'}), (784, {'res': '$i784.8'}), (786, {'res': '$n_neighbors786.9'}), (788, {'op': '*', 'lhs': '$i784.8', 'rhs': '$n_neighbors786.9', 'res': '$binop_mul788.10'}), (790, {}), (792, {'res': '$j792.11'}), (794, {'op': '+', 'lhs': '$binop_mul788.10', 'rhs': '$j792.11', 'res': '$binop_add794.12'}), (796, {}), (798, {'target': '$dists782.7', 'index': '$binop_add794.12', 'value': '$772binary_subscr.6'}), (800, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={802: ('$phi764.0', '$phi764.1')}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=802 nstack_initial=2): -AdaptBlockInfo(insts=((802, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={426: ('$phi802.0', '$phi802.1')}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=804 nstack_initial=1): -AdaptBlockInfo(insts=((804, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={392: ('$phi804.0',)}) -13:52:50,818 numba.core.byteflow DEBUG block_infos State(pc_initial=806 nstack_initial=0): -AdaptBlockInfo(insts=((806, {'res': '$rows806.0'}), (808, {'res': '$cols808.1'}), (810, {'res': '$vals810.2'}), (812, {'res': '$dists812.3'}), (814, {'items': ['$rows806.0', '$cols808.1', '$vals810.2', '$dists812.3'], 'res': '$814build_tuple.4'}), (816, {'retval': '$814build_tuple.4', 'castval': '$816return_value.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:50,981 numba.core.interpreter DEBUG label 0: - knn_indices = arg(0, name=knn_indices) ['knn_indices'] - knn_dists = arg(1, name=knn_dists) ['knn_dists'] - sigmas = arg(2, name=sigmas) ['sigmas'] - rhos = arg(3, name=rhos) ['rhos'] - return_dists = arg(4, name=return_dists) ['return_dists'] - bipartite = arg(5, name=bipartite) ['bipartite'] - $6load_attr.1 = getattr(value=knn_indices, attr=shape) ['$6load_attr.1', 'knn_indices'] - $const16.2 = const(int, 0) ['$const16.2'] - n_samples = getitem(value=$6load_attr.1, index=$const16.2, fn=) ['$6load_attr.1', '$const16.2', 'n_samples'] - $32load_attr.5 = getattr(value=knn_indices, attr=shape) ['$32load_attr.5', 'knn_indices'] - $const42.6 = const(int, 1) ['$const42.6'] - n_neighbors = getitem(value=$32load_attr.5, index=$const42.6, fn=) ['$32load_attr.5', '$const42.6', 'n_neighbors'] - $56load_global.8 = global(np: ) ['$56load_global.8'] - $68load_attr.10 = getattr(value=$56load_global.8, attr=zeros) ['$56load_global.8', '$68load_attr.10'] - $80load_attr.12 = getattr(value=knn_indices, attr=size) ['$80load_attr.12', 'knn_indices'] - $90load_global.13 = global(np: ) ['$90load_global.13'] - $102load_attr.14 = getattr(value=$90load_global.13, attr=int32) ['$102load_attr.14', '$90load_global.13'] - rows = call $68load_attr.10($80load_attr.12, func=$68load_attr.10, args=[Var($80load_attr.12, umap_.py:412)], kws=[('dtype', Var($102load_attr.14, umap_.py:412))], vararg=None, varkwarg=None, target=None) ['$102load_attr.14', '$68load_attr.10', '$80load_attr.12', 'rows'] - $130load_global.16 = global(np: ) ['$130load_global.16'] - $142load_attr.18 = getattr(value=$130load_global.16, attr=zeros) ['$130load_global.16', '$142load_attr.18'] - $154load_attr.20 = getattr(value=knn_indices, attr=size) ['$154load_attr.20', 'knn_indices'] - $164load_global.21 = global(np: ) ['$164load_global.21'] - $176load_attr.22 = getattr(value=$164load_global.21, attr=int32) ['$164load_global.21', '$176load_attr.22'] - cols = call $142load_attr.18($154load_attr.20, func=$142load_attr.18, args=[Var($154load_attr.20, umap_.py:413)], kws=[('dtype', Var($176load_attr.22, umap_.py:413))], vararg=None, varkwarg=None, target=None) ['$142load_attr.18', '$154load_attr.20', '$176load_attr.22', 'cols'] - $204load_global.24 = global(np: ) ['$204load_global.24'] - $216load_attr.26 = getattr(value=$204load_global.24, attr=zeros) ['$204load_global.24', '$216load_attr.26'] - $228load_attr.28 = getattr(value=knn_indices, attr=size) ['$228load_attr.28', 'knn_indices'] - $238load_global.29 = global(np: ) ['$238load_global.29'] - $250load_attr.30 = getattr(value=$238load_global.29, attr=float32) ['$238load_global.29', '$250load_attr.30'] - vals = call $216load_attr.26($228load_attr.28, func=$216load_attr.26, args=[Var($228load_attr.28, umap_.py:414)], kws=[('dtype', Var($250load_attr.30, umap_.py:414))], vararg=None, varkwarg=None, target=None) ['$216load_attr.26', '$228load_attr.28', '$250load_attr.30', 'vals'] - bool280 = global(bool: ) ['bool280'] - $280pred = call bool280(return_dists, func=bool280, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) ['$280pred', 'bool280', 'return_dists'] - branch $280pred, 282, 358 ['$280pred'] -label 282: - $282load_global.0 = global(np: ) ['$282load_global.0'] - $294load_attr.2 = getattr(value=$282load_global.0, attr=zeros) ['$282load_global.0', '$294load_attr.2'] - $306load_attr.4 = getattr(value=knn_indices, attr=size) ['$306load_attr.4', 'knn_indices'] - $316load_global.5 = global(np: ) ['$316load_global.5'] - $328load_attr.6 = getattr(value=$316load_global.5, attr=float32) ['$316load_global.5', '$328load_attr.6'] - dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) ['$294load_attr.2', '$306load_attr.4', '$328load_attr.6', 'dists'] - jump 362 [] -label 358: - dists = const(NoneType, None) ['dists'] - jump 362 [] -label 362: - $362load_global.0 = global(range: ) ['$362load_global.0'] - $380call.3 = call $362load_global.0(n_samples, func=$362load_global.0, args=[Var(n_samples, umap_.py:409)], kws=(), vararg=None, varkwarg=None, target=None) ['$362load_global.0', '$380call.3', 'n_samples'] - $390get_iter.4 = getiter(value=$380call.3) ['$380call.3', '$390get_iter.4'] - $phi392.0 = $390get_iter.4 ['$390get_iter.4', '$phi392.0'] - jump 392 [] -label 392: - $392for_iter.1 = iternext(value=$phi392.0) ['$392for_iter.1', '$phi392.0'] - $392for_iter.2 = pair_first(value=$392for_iter.1) ['$392for_iter.1', '$392for_iter.2'] - $392for_iter.3 = pair_second(value=$392for_iter.1) ['$392for_iter.1', '$392for_iter.3'] - $phi394.1 = $392for_iter.2 ['$392for_iter.2', '$phi394.1'] - branch $392for_iter.3, 394, 806 ['$392for_iter.3'] -label 394: - i = $phi394.1 ['$phi394.1', 'i'] - $396load_global.2 = global(range: ) ['$396load_global.2'] - $414call.5 = call $396load_global.2(n_neighbors, func=$396load_global.2, args=[Var(n_neighbors, umap_.py:410)], kws=(), vararg=None, varkwarg=None, target=None) ['$396load_global.2', '$414call.5', 'n_neighbors'] - $424get_iter.6 = getiter(value=$414call.5) ['$414call.5', '$424get_iter.6'] - $phi426.1 = $424get_iter.6 ['$424get_iter.6', '$phi426.1'] - jump 426 [] -label 426: - $426for_iter.2 = iternext(value=$phi426.1) ['$426for_iter.2', '$phi426.1'] - $426for_iter.3 = pair_first(value=$426for_iter.2) ['$426for_iter.2', '$426for_iter.3'] - $426for_iter.4 = pair_second(value=$426for_iter.2) ['$426for_iter.2', '$426for_iter.4'] - $phi428.2 = $426for_iter.3 ['$426for_iter.3', '$phi428.2'] - branch $426for_iter.4, 428, 804 ['$426for_iter.4'] -label 428: - j = $phi428.2 ['$phi428.2', 'j'] - $436build_tuple.6 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) ['$436build_tuple.6', 'i', 'j'] - $438binary_subscr.7 = getitem(value=knn_indices, index=$436build_tuple.6, fn=) ['$436build_tuple.6', '$438binary_subscr.7', 'knn_indices'] - $const448.8 = const(int, -1) ['$const448.8'] - $450compare_op.9 = $438binary_subscr.7 == $const448.8 ['$438binary_subscr.7', '$450compare_op.9', '$const448.8'] - bool456 = global(bool: ) ['bool456'] - $456pred = call bool456($450compare_op.9, func=bool456, args=(Var($450compare_op.9, umap_.py:422),), kws=(), vararg=None, varkwarg=None, target=None) ['$450compare_op.9', '$456pred', 'bool456'] - branch $456pred, 458, 460 ['$456pred'] -label 458: - jump 426 [] -label 460: - $const462.3 = const(bool, False) ['$const462.3'] - $464compare_op.4 = bipartite == $const462.3 ['$464compare_op.4', '$const462.3', 'bipartite'] - $476build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) ['$476build_tuple.8', 'i', 'j'] - $478binary_subscr.9 = getitem(value=knn_indices, index=$476build_tuple.8, fn=) ['$476build_tuple.8', '$478binary_subscr.9', 'knn_indices'] - $490compare_op.11 = $478binary_subscr.9 == i ['$478binary_subscr.9', '$490compare_op.11', 'i'] - $binop_and_496.12 = $464compare_op.4 & $490compare_op.11 ['$464compare_op.4', '$490compare_op.11', '$binop_and_496.12'] - bool500 = global(bool: ) ['bool500'] - $500pred = call bool500($binop_and_496.12, func=bool500, args=(Var($binop_and_496.12, umap_.py:426),), kws=(), vararg=None, varkwarg=None, target=None) ['$500pred', '$binop_and_496.12', 'bool500'] - branch $500pred, 502, 508 ['$500pred'] -label 502: - val = const(float, 0.0) ['val'] - jump 678 [] -label 508: - $514build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) ['$514build_tuple.5', 'i', 'j'] - $516binary_subscr.6 = getitem(value=knn_dists, index=$514build_tuple.5, fn=) ['$514build_tuple.5', '$516binary_subscr.6', 'knn_dists'] - $530binary_subscr.9 = getitem(value=rhos, index=i, fn=) ['$530binary_subscr.9', 'i', 'rhos'] - $binop_sub540.10 = $516binary_subscr.6 - $530binary_subscr.9 ['$516binary_subscr.6', '$530binary_subscr.9', '$binop_sub540.10'] - $const544.11 = const(float, 0.0) ['$const544.11'] - $546compare_op.12 = $binop_sub540.10 <= $const544.11 ['$546compare_op.12', '$binop_sub540.10', '$const544.11'] - bool552 = global(bool: ) ['bool552'] - $552pred = call bool552($546compare_op.12, func=bool552, args=(Var($546compare_op.12, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) ['$546compare_op.12', '$552pred', 'bool552'] - branch $552pred, 578, 554 ['$552pred'] -label 554: - $558binary_subscr.4 = getitem(value=sigmas, index=i, fn=) ['$558binary_subscr.4', 'i', 'sigmas'] - $const568.5 = const(float, 0.0) ['$const568.5'] - $570compare_op.6 = $558binary_subscr.4 == $const568.5 ['$558binary_subscr.4', '$570compare_op.6', '$const568.5'] - bool576 = global(bool: ) ['bool576'] - $576pred = call bool576($570compare_op.6, func=bool576, args=(Var($570compare_op.6, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) ['$570compare_op.6', '$576pred', 'bool576'] - branch $576pred, 578, 584 ['$576pred'] -label 578: - val = const(float, 1.0) ['val'] - jump 678 [] -label 584: - $584load_global.2 = global(np: ) ['$584load_global.2'] - $596load_attr.4 = getattr(value=$584load_global.2, attr=exp) ['$584load_global.2', '$596load_attr.4'] - $612build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) ['$612build_tuple.8', 'i', 'j'] - $614binary_subscr.9 = getitem(value=knn_dists, index=$612build_tuple.8, fn=) ['$612build_tuple.8', '$614binary_subscr.9', 'knn_dists'] - $628binary_subscr.12 = getitem(value=rhos, index=i, fn=) ['$628binary_subscr.12', 'i', 'rhos'] - $binop_sub638.13 = $614binary_subscr.9 - $628binary_subscr.12 ['$614binary_subscr.9', '$628binary_subscr.12', '$binop_sub638.13'] - $646binary_subscr.16 = getitem(value=sigmas, index=i, fn=) ['$646binary_subscr.16', 'i', 'sigmas'] - $binop_truediv656.17 = $binop_sub638.13 / $646binary_subscr.16 ['$646binary_subscr.16', '$binop_sub638.13', '$binop_truediv656.17'] - $660unary_negative.18 = unary(fn=, value=$binop_truediv656.17) ['$660unary_negative.18', '$binop_truediv656.17'] - val = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) ['$596load_attr.4', '$660unary_negative.18', 'val'] - jump 678 [] -label 678: - $binop_mul686.6 = i * n_neighbors ['$binop_mul686.6', 'i', 'n_neighbors'] - $binop_add692.8 = $binop_mul686.6 + j ['$binop_add692.8', '$binop_mul686.6', 'j'] - rows[$binop_add692.8] = i ['$binop_add692.8', 'i', 'rows'] - $706build_tuple.12 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) ['$706build_tuple.12', 'i', 'j'] - $708binary_subscr.13 = getitem(value=knn_indices, index=$706build_tuple.12, fn=) ['$706build_tuple.12', '$708binary_subscr.13', 'knn_indices'] - $binop_mul724.17 = i * n_neighbors ['$binop_mul724.17', 'i', 'n_neighbors'] - $binop_add730.19 = $binop_mul724.17 + j ['$binop_add730.19', '$binop_mul724.17', 'j'] - cols[$binop_add730.19] = $708binary_subscr.13 ['$708binary_subscr.13', '$binop_add730.19', 'cols'] - $binop_mul746.24 = i * n_neighbors ['$binop_mul746.24', 'i', 'n_neighbors'] - $binop_add752.26 = $binop_mul746.24 + j ['$binop_add752.26', '$binop_mul746.24', 'j'] - vals[$binop_add752.26] = val ['$binop_add752.26', 'val', 'vals'] - bool762 = global(bool: ) ['bool762'] - $762pred = call bool762(return_dists, func=bool762, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) ['$762pred', 'bool762', 'return_dists'] - branch $762pred, 764, 802 ['$762pred'] -label 764: - $770build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) ['$770build_tuple.5', 'i', 'j'] - $772binary_subscr.6 = getitem(value=knn_dists, index=$770build_tuple.5, fn=) ['$770build_tuple.5', '$772binary_subscr.6', 'knn_dists'] - $binop_mul788.10 = i * n_neighbors ['$binop_mul788.10', 'i', 'n_neighbors'] - $binop_add794.12 = $binop_mul788.10 + j ['$binop_add794.12', '$binop_mul788.10', 'j'] - dists[$binop_add794.12] = $772binary_subscr.6 ['$772binary_subscr.6', '$binop_add794.12', 'dists'] - jump 802 [] -label 802: - jump 426 [] -label 804: - jump 392 [] -label 806: - $814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists, umap_.py:416)]) ['$814build_tuple.4', 'cols', 'dists', 'rows', 'vals'] - $816return_value.5 = cast(value=$814build_tuple.4) ['$814build_tuple.4', '$816return_value.5'] - return $816return_value.5 ['$816return_value.5'] - -13:52:51,18 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:51,18 numba.core.ssa DEBUG Running -13:52:51,18 numba.core.ssa DEBUG on stmt: knn_indices = arg(0, name=knn_indices) -13:52:51,18 numba.core.ssa DEBUG on stmt: knn_dists = arg(1, name=knn_dists) -13:52:51,18 numba.core.ssa DEBUG on stmt: sigmas = arg(2, name=sigmas) -13:52:51,18 numba.core.ssa DEBUG on stmt: rhos = arg(3, name=rhos) -13:52:51,18 numba.core.ssa DEBUG on stmt: return_dists = arg(4, name=return_dists) -13:52:51,18 numba.core.ssa DEBUG on stmt: bipartite = arg(5, name=bipartite) -13:52:51,18 numba.core.ssa DEBUG on stmt: $6load_attr.1 = getattr(value=knn_indices, attr=shape) -13:52:51,18 numba.core.ssa DEBUG on stmt: $const16.2 = const(int, 0) -13:52:51,18 numba.core.ssa DEBUG on stmt: n_samples = static_getitem(value=$6load_attr.1, index=0, index_var=$const16.2, fn=) -13:52:51,18 numba.core.ssa DEBUG on stmt: $32load_attr.5 = getattr(value=knn_indices, attr=shape) -13:52:51,18 numba.core.ssa DEBUG on stmt: $const42.6 = const(int, 1) -13:52:51,18 numba.core.ssa DEBUG on stmt: n_neighbors = static_getitem(value=$32load_attr.5, index=1, index_var=$const42.6, fn=) -13:52:51,18 numba.core.ssa DEBUG on stmt: $56load_global.8 = global(np: ) -13:52:51,18 numba.core.ssa DEBUG on stmt: $68load_attr.10 = getattr(value=$56load_global.8, attr=zeros) -13:52:51,18 numba.core.ssa DEBUG on stmt: $80load_attr.12 = getattr(value=knn_indices, attr=size) -13:52:51,18 numba.core.ssa DEBUG on stmt: $90load_global.13 = global(np: ) -13:52:51,18 numba.core.ssa DEBUG on stmt: $102load_attr.14 = getattr(value=$90load_global.13, attr=int32) -13:52:51,18 numba.core.ssa DEBUG on stmt: rows = call $68load_attr.10($80load_attr.12, func=$68load_attr.10, args=[Var($80load_attr.12, umap_.py:412)], kws=[('dtype', Var($102load_attr.14, umap_.py:412))], vararg=None, varkwarg=None, target=None) -13:52:51,18 numba.core.ssa DEBUG on stmt: $130load_global.16 = global(np: ) -13:52:51,18 numba.core.ssa DEBUG on stmt: $142load_attr.18 = getattr(value=$130load_global.16, attr=zeros) -13:52:51,18 numba.core.ssa DEBUG on stmt: $154load_attr.20 = getattr(value=knn_indices, attr=size) -13:52:51,18 numba.core.ssa DEBUG on stmt: $164load_global.21 = global(np: ) -13:52:51,18 numba.core.ssa DEBUG on stmt: $176load_attr.22 = getattr(value=$164load_global.21, attr=int32) -13:52:51,19 numba.core.ssa DEBUG on stmt: cols = call $142load_attr.18($154load_attr.20, func=$142load_attr.18, args=[Var($154load_attr.20, umap_.py:413)], kws=[('dtype', Var($176load_attr.22, umap_.py:413))], vararg=None, varkwarg=None, target=None) -13:52:51,19 numba.core.ssa DEBUG on stmt: $204load_global.24 = global(np: ) -13:52:51,19 numba.core.ssa DEBUG on stmt: $216load_attr.26 = getattr(value=$204load_global.24, attr=zeros) -13:52:51,19 numba.core.ssa DEBUG on stmt: $228load_attr.28 = getattr(value=knn_indices, attr=size) -13:52:51,19 numba.core.ssa DEBUG on stmt: $238load_global.29 = global(np: ) -13:52:51,19 numba.core.ssa DEBUG on stmt: $250load_attr.30 = getattr(value=$238load_global.29, attr=float32) -13:52:51,19 numba.core.ssa DEBUG on stmt: vals = call $216load_attr.26($228load_attr.28, func=$216load_attr.26, args=[Var($228load_attr.28, umap_.py:414)], kws=[('dtype', Var($250load_attr.30, umap_.py:414))], vararg=None, varkwarg=None, target=None) -13:52:51,19 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:51,19 numba.core.ssa DEBUG on stmt: $280pred = call bool280(return_dists, func=bool280, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,19 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 358 -13:52:51,19 numba.core.ssa DEBUG ==== SSA block analysis pass on 282 -13:52:51,19 numba.core.ssa DEBUG Running -13:52:51,19 numba.core.ssa DEBUG on stmt: $282load_global.0 = global(np: ) -13:52:51,19 numba.core.ssa DEBUG on stmt: $294load_attr.2 = getattr(value=$282load_global.0, attr=zeros) -13:52:51,19 numba.core.ssa DEBUG on stmt: $306load_attr.4 = getattr(value=knn_indices, attr=size) -13:52:51,19 numba.core.ssa DEBUG on stmt: $316load_global.5 = global(np: ) -13:52:51,19 numba.core.ssa DEBUG on stmt: $328load_attr.6 = getattr(value=$316load_global.5, attr=float32) -13:52:51,19 numba.core.ssa DEBUG on stmt: dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) -13:52:51,19 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,19 numba.core.ssa DEBUG ==== SSA block analysis pass on 358 -13:52:51,19 numba.core.ssa DEBUG Running -13:52:51,19 numba.core.ssa DEBUG on stmt: dists = const(NoneType, None) -13:52:51,19 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,19 numba.core.ssa DEBUG ==== SSA block analysis pass on 362 -13:52:51,19 numba.core.ssa DEBUG Running -13:52:51,19 numba.core.ssa DEBUG on stmt: $362load_global.0 = global(range: ) -13:52:51,19 numba.core.ssa DEBUG on stmt: $380call.3 = call $362load_global.0(n_samples, func=$362load_global.0, args=[Var(n_samples, umap_.py:409)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,19 numba.core.ssa DEBUG on stmt: $390get_iter.4 = getiter(value=$380call.3) -13:52:51,19 numba.core.ssa DEBUG on stmt: $phi392.0 = $390get_iter.4 -13:52:51,19 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,20 numba.core.ssa DEBUG ==== SSA block analysis pass on 392 -13:52:51,20 numba.core.ssa DEBUG Running -13:52:51,20 numba.core.ssa DEBUG on stmt: $392for_iter.1 = iternext(value=$phi392.0) -13:52:51,20 numba.core.ssa DEBUG on stmt: $392for_iter.2 = pair_first(value=$392for_iter.1) -13:52:51,20 numba.core.ssa DEBUG on stmt: $392for_iter.3 = pair_second(value=$392for_iter.1) -13:52:51,20 numba.core.ssa DEBUG on stmt: $phi394.1 = $392for_iter.2 -13:52:51,20 numba.core.ssa DEBUG on stmt: branch $392for_iter.3, 394, 806 -13:52:51,20 numba.core.ssa DEBUG ==== SSA block analysis pass on 394 -13:52:51,20 numba.core.ssa DEBUG Running -13:52:51,20 numba.core.ssa DEBUG on stmt: i = $phi394.1 -13:52:51,20 numba.core.ssa DEBUG on stmt: $396load_global.2 = global(range: ) -13:52:51,20 numba.core.ssa DEBUG on stmt: $414call.5 = call $396load_global.2(n_neighbors, func=$396load_global.2, args=[Var(n_neighbors, umap_.py:410)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,20 numba.core.ssa DEBUG on stmt: $424get_iter.6 = getiter(value=$414call.5) -13:52:51,20 numba.core.ssa DEBUG on stmt: $phi426.1 = $424get_iter.6 -13:52:51,20 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,20 numba.core.ssa DEBUG ==== SSA block analysis pass on 426 -13:52:51,20 numba.core.ssa DEBUG Running -13:52:51,20 numba.core.ssa DEBUG on stmt: $426for_iter.2 = iternext(value=$phi426.1) -13:52:51,20 numba.core.ssa DEBUG on stmt: $426for_iter.3 = pair_first(value=$426for_iter.2) -13:52:51,20 numba.core.ssa DEBUG on stmt: $426for_iter.4 = pair_second(value=$426for_iter.2) -13:52:51,20 numba.core.ssa DEBUG on stmt: $phi428.2 = $426for_iter.3 -13:52:51,20 numba.core.ssa DEBUG on stmt: branch $426for_iter.4, 428, 804 -13:52:51,20 numba.core.ssa DEBUG ==== SSA block analysis pass on 428 -13:52:51,20 numba.core.ssa DEBUG Running -13:52:51,20 numba.core.ssa DEBUG on stmt: j = $phi428.2 -13:52:51,20 numba.core.ssa DEBUG on stmt: $436build_tuple.6 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,20 numba.core.ssa DEBUG on stmt: $438binary_subscr.7 = getitem(value=knn_indices, index=$436build_tuple.6, fn=) -13:52:51,20 numba.core.ssa DEBUG on stmt: $const448.8 = const(int, -1) -13:52:51,20 numba.core.ssa DEBUG on stmt: $450compare_op.9 = $438binary_subscr.7 == $const448.8 -13:52:51,20 numba.core.ssa DEBUG on stmt: bool456 = global(bool: ) -13:52:51,20 numba.core.ssa DEBUG on stmt: $456pred = call bool456($450compare_op.9, func=bool456, args=(Var($450compare_op.9, umap_.py:422),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,20 numba.core.ssa DEBUG on stmt: branch $456pred, 458, 460 -13:52:51,20 numba.core.ssa DEBUG ==== SSA block analysis pass on 458 -13:52:51,21 numba.core.ssa DEBUG Running -13:52:51,21 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,21 numba.core.ssa DEBUG ==== SSA block analysis pass on 460 -13:52:51,21 numba.core.ssa DEBUG Running -13:52:51,21 numba.core.ssa DEBUG on stmt: $const462.3 = const(bool, False) -13:52:51,21 numba.core.ssa DEBUG on stmt: $464compare_op.4 = bipartite == $const462.3 -13:52:51,21 numba.core.ssa DEBUG on stmt: $476build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,21 numba.core.ssa DEBUG on stmt: $478binary_subscr.9 = getitem(value=knn_indices, index=$476build_tuple.8, fn=) -13:52:51,21 numba.core.ssa DEBUG on stmt: $490compare_op.11 = $478binary_subscr.9 == i -13:52:51,21 numba.core.ssa DEBUG on stmt: $binop_and_496.12 = $464compare_op.4 & $490compare_op.11 -13:52:51,21 numba.core.ssa DEBUG on stmt: bool500 = global(bool: ) -13:52:51,21 numba.core.ssa DEBUG on stmt: $500pred = call bool500($binop_and_496.12, func=bool500, args=(Var($binop_and_496.12, umap_.py:426),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,21 numba.core.ssa DEBUG on stmt: branch $500pred, 502, 508 -13:52:51,21 numba.core.ssa DEBUG ==== SSA block analysis pass on 502 -13:52:51,21 numba.core.ssa DEBUG Running -13:52:51,21 numba.core.ssa DEBUG on stmt: val = const(float, 0.0) -13:52:51,21 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,21 numba.core.ssa DEBUG ==== SSA block analysis pass on 508 -13:52:51,21 numba.core.ssa DEBUG Running -13:52:51,21 numba.core.ssa DEBUG on stmt: $514build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,21 numba.core.ssa DEBUG on stmt: $516binary_subscr.6 = getitem(value=knn_dists, index=$514build_tuple.5, fn=) -13:52:51,21 numba.core.ssa DEBUG on stmt: $530binary_subscr.9 = getitem(value=rhos, index=i, fn=) -13:52:51,21 numba.core.ssa DEBUG on stmt: $binop_sub540.10 = $516binary_subscr.6 - $530binary_subscr.9 -13:52:51,21 numba.core.ssa DEBUG on stmt: $const544.11 = const(float, 0.0) -13:52:51,21 numba.core.ssa DEBUG on stmt: $546compare_op.12 = $binop_sub540.10 <= $const544.11 -13:52:51,21 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:51,21 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.12, func=bool552, args=(Var($546compare_op.12, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,22 numba.core.ssa DEBUG on stmt: branch $552pred, 578, 554 -13:52:51,22 numba.core.ssa DEBUG ==== SSA block analysis pass on 554 -13:52:51,22 numba.core.ssa DEBUG Running -13:52:51,22 numba.core.ssa DEBUG on stmt: $558binary_subscr.4 = getitem(value=sigmas, index=i, fn=) -13:52:51,22 numba.core.ssa DEBUG on stmt: $const568.5 = const(float, 0.0) -13:52:51,22 numba.core.ssa DEBUG on stmt: $570compare_op.6 = $558binary_subscr.4 == $const568.5 -13:52:51,22 numba.core.ssa DEBUG on stmt: bool576 = global(bool: ) -13:52:51,22 numba.core.ssa DEBUG on stmt: $576pred = call bool576($570compare_op.6, func=bool576, args=(Var($570compare_op.6, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,22 numba.core.ssa DEBUG on stmt: branch $576pred, 578, 584 -13:52:51,22 numba.core.ssa DEBUG ==== SSA block analysis pass on 578 -13:52:51,22 numba.core.ssa DEBUG Running -13:52:51,22 numba.core.ssa DEBUG on stmt: val = const(float, 1.0) -13:52:51,22 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,22 numba.core.ssa DEBUG ==== SSA block analysis pass on 584 -13:52:51,22 numba.core.ssa DEBUG Running -13:52:51,22 numba.core.ssa DEBUG on stmt: $584load_global.2 = global(np: ) -13:52:51,22 numba.core.ssa DEBUG on stmt: $596load_attr.4 = getattr(value=$584load_global.2, attr=exp) -13:52:51,22 numba.core.ssa DEBUG on stmt: $612build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,22 numba.core.ssa DEBUG on stmt: $614binary_subscr.9 = getitem(value=knn_dists, index=$612build_tuple.8, fn=) -13:52:51,22 numba.core.ssa DEBUG on stmt: $628binary_subscr.12 = getitem(value=rhos, index=i, fn=) -13:52:51,22 numba.core.ssa DEBUG on stmt: $binop_sub638.13 = $614binary_subscr.9 - $628binary_subscr.12 -13:52:51,22 numba.core.ssa DEBUG on stmt: $646binary_subscr.16 = getitem(value=sigmas, index=i, fn=) -13:52:51,22 numba.core.ssa DEBUG on stmt: $binop_truediv656.17 = $binop_sub638.13 / $646binary_subscr.16 -13:52:51,22 numba.core.ssa DEBUG on stmt: $660unary_negative.18 = unary(fn=, value=$binop_truediv656.17) -13:52:51,22 numba.core.ssa DEBUG on stmt: val = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,22 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,22 numba.core.ssa DEBUG ==== SSA block analysis pass on 678 -13:52:51,22 numba.core.ssa DEBUG Running -13:52:51,22 numba.core.ssa DEBUG on stmt: $binop_mul686.6 = i * n_neighbors -13:52:51,22 numba.core.ssa DEBUG on stmt: $binop_add692.8 = $binop_mul686.6 + j -13:52:51,23 numba.core.ssa DEBUG on stmt: rows[$binop_add692.8] = i -13:52:51,23 numba.core.ssa DEBUG on stmt: $706build_tuple.12 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,23 numba.core.ssa DEBUG on stmt: $708binary_subscr.13 = getitem(value=knn_indices, index=$706build_tuple.12, fn=) -13:52:51,23 numba.core.ssa DEBUG on stmt: $binop_mul724.17 = i * n_neighbors -13:52:51,23 numba.core.ssa DEBUG on stmt: $binop_add730.19 = $binop_mul724.17 + j -13:52:51,23 numba.core.ssa DEBUG on stmt: cols[$binop_add730.19] = $708binary_subscr.13 -13:52:51,23 numba.core.ssa DEBUG on stmt: $binop_mul746.24 = i * n_neighbors -13:52:51,23 numba.core.ssa DEBUG on stmt: $binop_add752.26 = $binop_mul746.24 + j -13:52:51,23 numba.core.ssa DEBUG on stmt: vals[$binop_add752.26] = val -13:52:51,23 numba.core.ssa DEBUG on stmt: bool762 = global(bool: ) -13:52:51,23 numba.core.ssa DEBUG on stmt: $762pred = call bool762(return_dists, func=bool762, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,23 numba.core.ssa DEBUG on stmt: branch $762pred, 764, 802 -13:52:51,23 numba.core.ssa DEBUG ==== SSA block analysis pass on 764 -13:52:51,23 numba.core.ssa DEBUG Running -13:52:51,23 numba.core.ssa DEBUG on stmt: $770build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,23 numba.core.ssa DEBUG on stmt: $772binary_subscr.6 = getitem(value=knn_dists, index=$770build_tuple.5, fn=) -13:52:51,23 numba.core.ssa DEBUG on stmt: $binop_mul788.10 = i * n_neighbors -13:52:51,23 numba.core.ssa DEBUG on stmt: $binop_add794.12 = $binop_mul788.10 + j -13:52:51,23 numba.core.ssa DEBUG on stmt: dists[$binop_add794.12] = $772binary_subscr.6 -13:52:51,23 numba.core.ssa DEBUG on stmt: jump 802 -13:52:51,23 numba.core.ssa DEBUG ==== SSA block analysis pass on 802 -13:52:51,23 numba.core.ssa DEBUG Running -13:52:51,23 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,23 numba.core.ssa DEBUG ==== SSA block analysis pass on 804 -13:52:51,23 numba.core.ssa DEBUG Running -13:52:51,23 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,23 numba.core.ssa DEBUG ==== SSA block analysis pass on 806 -13:52:51,23 numba.core.ssa DEBUG Running -13:52:51,23 numba.core.ssa DEBUG on stmt: $814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists, umap_.py:416)]) -13:52:51,23 numba.core.ssa DEBUG on stmt: $816return_value.5 = cast(value=$814build_tuple.4) -13:52:51,23 numba.core.ssa DEBUG on stmt: return $816return_value.5 -13:52:51,23 numba.core.ssa DEBUG ==== SSA block analysis pass on 807 -13:52:51,24 numba.core.ssa DEBUG Running -13:52:51,24 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,25 numba.core.ssa DEBUG defs defaultdict(, - {'$102load_attr.14': [(, - 0)], - '$130load_global.16': [(, - 0)], - '$142load_attr.18': [(, - 0)], - '$154load_attr.20': [(, - 0)], - '$164load_global.21': [(, - 0)], - '$176load_attr.22': [(, - 0)], - '$204load_global.24': [(, - 0)], - '$216load_attr.26': [(, - 0)], - '$228load_attr.28': [(, - 0)], - '$238load_global.29': [(, - 0)], - '$250load_attr.30': [(, - 0)], - '$280pred': [(, - 0)], - '$282load_global.0': [(, - 282)], - '$294load_attr.2': [(, - 282)], - '$306load_attr.4': [(, - 282)], - '$316load_global.5': [(, - 282)], - '$328load_attr.6': [(, - 282)], - '$32load_attr.5': [(, - 0)], - '$362load_global.0': [(, - 362)], - '$380call.3': [(, - 362)], - '$390get_iter.4': [(, - 362)], - '$392for_iter.1': [(, - 392)], - '$392for_iter.2': [(, - 392)], - '$392for_iter.3': [(, - 392)], - '$396load_global.2': [(, - 394)], - '$414call.5': [(, - 394)], - '$424get_iter.6': [(, - 394)], - '$426for_iter.2': [(, - 426)], - '$426for_iter.3': [(, - 426)], - '$426for_iter.4': [(, - 426)], - '$436build_tuple.6': [(, - 428)], - '$438binary_subscr.7': [(, - 428)], - '$450compare_op.9': [(, - 428)], - '$456pred': [(, - 428)], - '$464compare_op.4': [(, - 460)], - '$476build_tuple.8': [(, - 460)], - '$478binary_subscr.9': [(, - 460)], - '$490compare_op.11': [(, - 460)], - '$500pred': [(, - 460)], - '$514build_tuple.5': [(, - 508)], - '$516binary_subscr.6': [(, - 508)], - '$530binary_subscr.9': [(, - 508)], - '$546compare_op.12': [(, - 508)], - '$552pred': [(, - 508)], - '$558binary_subscr.4': [(, - 554)], - '$56load_global.8': [(, - 0)], - '$570compare_op.6': [(, - 554)], - '$576pred': [(, - 554)], - '$584load_global.2': [(, - 584)], - '$596load_attr.4': [(, - 584)], - '$612build_tuple.8': [(, - 584)], - '$614binary_subscr.9': [(, - 584)], - '$628binary_subscr.12': [(, - 584)], - '$646binary_subscr.16': [(, - 584)], - '$660unary_negative.18': [(, - 584)], - '$68load_attr.10': [(, - 0)], - '$6load_attr.1': [(, - 0)], - '$706build_tuple.12': [(, - 678)], - '$708binary_subscr.13': [(, - 678)], - '$762pred': [(, - 678)], - '$770build_tuple.5': [(, - 764)], - '$772binary_subscr.6': [(, - 764)], - '$80load_attr.12': [(, - 0)], - '$814build_tuple.4': [(, - 806)], - '$816return_value.5': [(, - 806)], - '$90load_global.13': [(, - 0)], - '$binop_add692.8': [(, - 678)], - '$binop_add730.19': [(, - 678)], - '$binop_add752.26': [(, - 678)], - '$binop_add794.12': [(, - 764)], - '$binop_and_496.12': [(, - 460)], - '$binop_mul686.6': [(, - 678)], - '$binop_mul724.17': [(, - 678)], - '$binop_mul746.24': [(, - 678)], - '$binop_mul788.10': [(, - 764)], - '$binop_sub540.10': [(, - 508)], - '$binop_sub638.13': [(, - 584)], - '$binop_truediv656.17': [(, - 584)], - '$const16.2': [(, - 0)], - '$const42.6': [(, - 0)], - '$const448.8': [(, - 428)], - '$const462.3': [(, - 460)], - '$const544.11': [(, - 508)], - '$const568.5': [(, - 554)], - '$phi392.0': [(, - 362)], - '$phi394.1': [(, - 392)], - '$phi426.1': [(, - 394)], - '$phi428.2': [(, - 426)], - 'bipartite': [(, - 0)], - 'bool280': [(, - 0)], - 'bool456': [(, - 428)], - 'bool500': [(, - 460)], - 'bool552': [(, - 508)], - 'bool576': [(, - 554)], - 'bool762': [(, - 678)], - 'cols': [(, 0)], - 'dists': [(, - 282), - (, - 358)], - 'i': [(, 394)], - 'j': [(, 428)], - 'knn_dists': [(, - 0)], - 'knn_indices': [(, - 0)], - 'n_neighbors': [(, - 0)], - 'n_samples': [(, - 0)], - 'return_dists': [(, - 0)], - 'rhos': [(, 0)], - 'rows': [(, 0)], - 'sigmas': [(, - 0)], - 'val': [(, 502), - (, 578), - (, - 584)], - 'vals': [(, - 0)]}) -13:52:51,25 numba.core.ssa DEBUG SSA violators -13:52:51,25 numba.core.ssa DEBUG Fix SSA violator on var dists -13:52:51,26 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:51,26 numba.core.ssa DEBUG Running -13:52:51,26 numba.core.ssa DEBUG on stmt: knn_indices = arg(0, name=knn_indices) -13:52:51,26 numba.core.ssa DEBUG on stmt: knn_dists = arg(1, name=knn_dists) -13:52:51,26 numba.core.ssa DEBUG on stmt: sigmas = arg(2, name=sigmas) -13:52:51,26 numba.core.ssa DEBUG on stmt: rhos = arg(3, name=rhos) -13:52:51,26 numba.core.ssa DEBUG on stmt: return_dists = arg(4, name=return_dists) -13:52:51,26 numba.core.ssa DEBUG on stmt: bipartite = arg(5, name=bipartite) -13:52:51,26 numba.core.ssa DEBUG on stmt: $6load_attr.1 = getattr(value=knn_indices, attr=shape) -13:52:51,26 numba.core.ssa DEBUG on stmt: $const16.2 = const(int, 0) -13:52:51,26 numba.core.ssa DEBUG on stmt: n_samples = static_getitem(value=$6load_attr.1, index=0, index_var=$const16.2, fn=) -13:52:51,26 numba.core.ssa DEBUG on stmt: $32load_attr.5 = getattr(value=knn_indices, attr=shape) -13:52:51,26 numba.core.ssa DEBUG on stmt: $const42.6 = const(int, 1) -13:52:51,26 numba.core.ssa DEBUG on stmt: n_neighbors = static_getitem(value=$32load_attr.5, index=1, index_var=$const42.6, fn=) -13:52:51,26 numba.core.ssa DEBUG on stmt: $56load_global.8 = global(np: ) -13:52:51,26 numba.core.ssa DEBUG on stmt: $68load_attr.10 = getattr(value=$56load_global.8, attr=zeros) -13:52:51,26 numba.core.ssa DEBUG on stmt: $80load_attr.12 = getattr(value=knn_indices, attr=size) -13:52:51,26 numba.core.ssa DEBUG on stmt: $90load_global.13 = global(np: ) -13:52:51,26 numba.core.ssa DEBUG on stmt: $102load_attr.14 = getattr(value=$90load_global.13, attr=int32) -13:52:51,26 numba.core.ssa DEBUG on stmt: rows = call $68load_attr.10($80load_attr.12, func=$68load_attr.10, args=[Var($80load_attr.12, umap_.py:412)], kws=[('dtype', Var($102load_attr.14, umap_.py:412))], vararg=None, varkwarg=None, target=None) -13:52:51,26 numba.core.ssa DEBUG on stmt: $130load_global.16 = global(np: ) -13:52:51,26 numba.core.ssa DEBUG on stmt: $142load_attr.18 = getattr(value=$130load_global.16, attr=zeros) -13:52:51,26 numba.core.ssa DEBUG on stmt: $154load_attr.20 = getattr(value=knn_indices, attr=size) -13:52:51,26 numba.core.ssa DEBUG on stmt: $164load_global.21 = global(np: ) -13:52:51,26 numba.core.ssa DEBUG on stmt: $176load_attr.22 = getattr(value=$164load_global.21, attr=int32) -13:52:51,26 numba.core.ssa DEBUG on stmt: cols = call $142load_attr.18($154load_attr.20, func=$142load_attr.18, args=[Var($154load_attr.20, umap_.py:413)], kws=[('dtype', Var($176load_attr.22, umap_.py:413))], vararg=None, varkwarg=None, target=None) -13:52:51,26 numba.core.ssa DEBUG on stmt: $204load_global.24 = global(np: ) -13:52:51,26 numba.core.ssa DEBUG on stmt: $216load_attr.26 = getattr(value=$204load_global.24, attr=zeros) -13:52:51,26 numba.core.ssa DEBUG on stmt: $228load_attr.28 = getattr(value=knn_indices, attr=size) -13:52:51,26 numba.core.ssa DEBUG on stmt: $238load_global.29 = global(np: ) -13:52:51,26 numba.core.ssa DEBUG on stmt: $250load_attr.30 = getattr(value=$238load_global.29, attr=float32) -13:52:51,26 numba.core.ssa DEBUG on stmt: vals = call $216load_attr.26($228load_attr.28, func=$216load_attr.26, args=[Var($228load_attr.28, umap_.py:414)], kws=[('dtype', Var($250load_attr.30, umap_.py:414))], vararg=None, varkwarg=None, target=None) -13:52:51,26 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:51,26 numba.core.ssa DEBUG on stmt: $280pred = call bool280(return_dists, func=bool280, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,27 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 358 -13:52:51,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:51,27 numba.core.ssa DEBUG Running -13:52:51,27 numba.core.ssa DEBUG on stmt: $282load_global.0 = global(np: ) -13:52:51,27 numba.core.ssa DEBUG on stmt: $294load_attr.2 = getattr(value=$282load_global.0, attr=zeros) -13:52:51,27 numba.core.ssa DEBUG on stmt: $306load_attr.4 = getattr(value=knn_indices, attr=size) -13:52:51,27 numba.core.ssa DEBUG on stmt: $316load_global.5 = global(np: ) -13:52:51,27 numba.core.ssa DEBUG on stmt: $328load_attr.6 = getattr(value=$316load_global.5, attr=float32) -13:52:51,27 numba.core.ssa DEBUG on stmt: dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) -13:52:51,27 numba.core.ssa DEBUG first assign: dists -13:52:51,27 numba.core.ssa DEBUG replaced with: dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) -13:52:51,27 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 358 -13:52:51,27 numba.core.ssa DEBUG Running -13:52:51,27 numba.core.ssa DEBUG on stmt: dists = const(NoneType, None) -13:52:51,27 numba.core.ssa DEBUG replaced with: dists.1 = const(NoneType, None) -13:52:51,27 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 362 -13:52:51,27 numba.core.ssa DEBUG Running -13:52:51,27 numba.core.ssa DEBUG on stmt: $362load_global.0 = global(range: ) -13:52:51,27 numba.core.ssa DEBUG on stmt: $380call.3 = call $362load_global.0(n_samples, func=$362load_global.0, args=[Var(n_samples, umap_.py:409)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,27 numba.core.ssa DEBUG on stmt: $390get_iter.4 = getiter(value=$380call.3) -13:52:51,27 numba.core.ssa DEBUG on stmt: $phi392.0 = $390get_iter.4 -13:52:51,27 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 392 -13:52:51,27 numba.core.ssa DEBUG Running -13:52:51,27 numba.core.ssa DEBUG on stmt: $392for_iter.1 = iternext(value=$phi392.0) -13:52:51,27 numba.core.ssa DEBUG on stmt: $392for_iter.2 = pair_first(value=$392for_iter.1) -13:52:51,27 numba.core.ssa DEBUG on stmt: $392for_iter.3 = pair_second(value=$392for_iter.1) -13:52:51,27 numba.core.ssa DEBUG on stmt: $phi394.1 = $392for_iter.2 -13:52:51,27 numba.core.ssa DEBUG on stmt: branch $392for_iter.3, 394, 806 -13:52:51,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 394 -13:52:51,27 numba.core.ssa DEBUG Running -13:52:51,27 numba.core.ssa DEBUG on stmt: i = $phi394.1 -13:52:51,27 numba.core.ssa DEBUG on stmt: $396load_global.2 = global(range: ) -13:52:51,28 numba.core.ssa DEBUG on stmt: $414call.5 = call $396load_global.2(n_neighbors, func=$396load_global.2, args=[Var(n_neighbors, umap_.py:410)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,28 numba.core.ssa DEBUG on stmt: $424get_iter.6 = getiter(value=$414call.5) -13:52:51,28 numba.core.ssa DEBUG on stmt: $phi426.1 = $424get_iter.6 -13:52:51,28 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,28 numba.core.ssa DEBUG ==== SSA block rewrite pass on 426 -13:52:51,28 numba.core.ssa DEBUG Running -13:52:51,28 numba.core.ssa DEBUG on stmt: $426for_iter.2 = iternext(value=$phi426.1) -13:52:51,28 numba.core.ssa DEBUG on stmt: $426for_iter.3 = pair_first(value=$426for_iter.2) -13:52:51,28 numba.core.ssa DEBUG on stmt: $426for_iter.4 = pair_second(value=$426for_iter.2) -13:52:51,28 numba.core.ssa DEBUG on stmt: $phi428.2 = $426for_iter.3 -13:52:51,28 numba.core.ssa DEBUG on stmt: branch $426for_iter.4, 428, 804 -13:52:51,28 numba.core.ssa DEBUG ==== SSA block rewrite pass on 428 -13:52:51,28 numba.core.ssa DEBUG Running -13:52:51,28 numba.core.ssa DEBUG on stmt: j = $phi428.2 -13:52:51,28 numba.core.ssa DEBUG on stmt: $436build_tuple.6 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,28 numba.core.ssa DEBUG on stmt: $438binary_subscr.7 = getitem(value=knn_indices, index=$436build_tuple.6, fn=) -13:52:51,28 numba.core.ssa DEBUG on stmt: $const448.8 = const(int, -1) -13:52:51,28 numba.core.ssa DEBUG on stmt: $450compare_op.9 = $438binary_subscr.7 == $const448.8 -13:52:51,28 numba.core.ssa DEBUG on stmt: bool456 = global(bool: ) -13:52:51,28 numba.core.ssa DEBUG on stmt: $456pred = call bool456($450compare_op.9, func=bool456, args=(Var($450compare_op.9, umap_.py:422),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,28 numba.core.ssa DEBUG on stmt: branch $456pred, 458, 460 -13:52:51,28 numba.core.ssa DEBUG ==== SSA block rewrite pass on 458 -13:52:51,28 numba.core.ssa DEBUG Running -13:52:51,28 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,28 numba.core.ssa DEBUG ==== SSA block rewrite pass on 460 -13:52:51,28 numba.core.ssa DEBUG Running -13:52:51,28 numba.core.ssa DEBUG on stmt: $const462.3 = const(bool, False) -13:52:51,28 numba.core.ssa DEBUG on stmt: $464compare_op.4 = bipartite == $const462.3 -13:52:51,28 numba.core.ssa DEBUG on stmt: $476build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,28 numba.core.ssa DEBUG on stmt: $478binary_subscr.9 = getitem(value=knn_indices, index=$476build_tuple.8, fn=) -13:52:51,28 numba.core.ssa DEBUG on stmt: $490compare_op.11 = $478binary_subscr.9 == i -13:52:51,28 numba.core.ssa DEBUG on stmt: $binop_and_496.12 = $464compare_op.4 & $490compare_op.11 -13:52:51,28 numba.core.ssa DEBUG on stmt: bool500 = global(bool: ) -13:52:51,28 numba.core.ssa DEBUG on stmt: $500pred = call bool500($binop_and_496.12, func=bool500, args=(Var($binop_and_496.12, umap_.py:426),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,28 numba.core.ssa DEBUG on stmt: branch $500pred, 502, 508 -13:52:51,29 numba.core.ssa DEBUG ==== SSA block rewrite pass on 502 -13:52:51,29 numba.core.ssa DEBUG Running -13:52:51,29 numba.core.ssa DEBUG on stmt: val = const(float, 0.0) -13:52:51,29 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,29 numba.core.ssa DEBUG ==== SSA block rewrite pass on 508 -13:52:51,29 numba.core.ssa DEBUG Running -13:52:51,29 numba.core.ssa DEBUG on stmt: $514build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,29 numba.core.ssa DEBUG on stmt: $516binary_subscr.6 = getitem(value=knn_dists, index=$514build_tuple.5, fn=) -13:52:51,29 numba.core.ssa DEBUG on stmt: $530binary_subscr.9 = getitem(value=rhos, index=i, fn=) -13:52:51,29 numba.core.ssa DEBUG on stmt: $binop_sub540.10 = $516binary_subscr.6 - $530binary_subscr.9 -13:52:51,29 numba.core.ssa DEBUG on stmt: $const544.11 = const(float, 0.0) -13:52:51,29 numba.core.ssa DEBUG on stmt: $546compare_op.12 = $binop_sub540.10 <= $const544.11 -13:52:51,29 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:51,29 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.12, func=bool552, args=(Var($546compare_op.12, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,29 numba.core.ssa DEBUG on stmt: branch $552pred, 578, 554 -13:52:51,29 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:51,29 numba.core.ssa DEBUG Running -13:52:51,29 numba.core.ssa DEBUG on stmt: $558binary_subscr.4 = getitem(value=sigmas, index=i, fn=) -13:52:51,29 numba.core.ssa DEBUG on stmt: $const568.5 = const(float, 0.0) -13:52:51,29 numba.core.ssa DEBUG on stmt: $570compare_op.6 = $558binary_subscr.4 == $const568.5 -13:52:51,29 numba.core.ssa DEBUG on stmt: bool576 = global(bool: ) -13:52:51,29 numba.core.ssa DEBUG on stmt: $576pred = call bool576($570compare_op.6, func=bool576, args=(Var($570compare_op.6, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,29 numba.core.ssa DEBUG on stmt: branch $576pred, 578, 584 -13:52:51,29 numba.core.ssa DEBUG ==== SSA block rewrite pass on 578 -13:52:51,29 numba.core.ssa DEBUG Running -13:52:51,29 numba.core.ssa DEBUG on stmt: val = const(float, 1.0) -13:52:51,29 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,29 numba.core.ssa DEBUG ==== SSA block rewrite pass on 584 -13:52:51,29 numba.core.ssa DEBUG Running -13:52:51,29 numba.core.ssa DEBUG on stmt: $584load_global.2 = global(np: ) -13:52:51,29 numba.core.ssa DEBUG on stmt: $596load_attr.4 = getattr(value=$584load_global.2, attr=exp) -13:52:51,29 numba.core.ssa DEBUG on stmt: $612build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,29 numba.core.ssa DEBUG on stmt: $614binary_subscr.9 = getitem(value=knn_dists, index=$612build_tuple.8, fn=) -13:52:51,29 numba.core.ssa DEBUG on stmt: $628binary_subscr.12 = getitem(value=rhos, index=i, fn=) -13:52:51,29 numba.core.ssa DEBUG on stmt: $binop_sub638.13 = $614binary_subscr.9 - $628binary_subscr.12 -13:52:51,29 numba.core.ssa DEBUG on stmt: $646binary_subscr.16 = getitem(value=sigmas, index=i, fn=) -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_truediv656.17 = $binop_sub638.13 / $646binary_subscr.16 -13:52:51,30 numba.core.ssa DEBUG on stmt: $660unary_negative.18 = unary(fn=, value=$binop_truediv656.17) -13:52:51,30 numba.core.ssa DEBUG on stmt: val = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,30 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,30 numba.core.ssa DEBUG ==== SSA block rewrite pass on 678 -13:52:51,30 numba.core.ssa DEBUG Running -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_mul686.6 = i * n_neighbors -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_add692.8 = $binop_mul686.6 + j -13:52:51,30 numba.core.ssa DEBUG on stmt: rows[$binop_add692.8] = i -13:52:51,30 numba.core.ssa DEBUG on stmt: $706build_tuple.12 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,30 numba.core.ssa DEBUG on stmt: $708binary_subscr.13 = getitem(value=knn_indices, index=$706build_tuple.12, fn=) -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_mul724.17 = i * n_neighbors -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_add730.19 = $binop_mul724.17 + j -13:52:51,30 numba.core.ssa DEBUG on stmt: cols[$binop_add730.19] = $708binary_subscr.13 -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_mul746.24 = i * n_neighbors -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_add752.26 = $binop_mul746.24 + j -13:52:51,30 numba.core.ssa DEBUG on stmt: vals[$binop_add752.26] = val -13:52:51,30 numba.core.ssa DEBUG on stmt: bool762 = global(bool: ) -13:52:51,30 numba.core.ssa DEBUG on stmt: $762pred = call bool762(return_dists, func=bool762, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,30 numba.core.ssa DEBUG on stmt: branch $762pred, 764, 802 -13:52:51,30 numba.core.ssa DEBUG ==== SSA block rewrite pass on 764 -13:52:51,30 numba.core.ssa DEBUG Running -13:52:51,30 numba.core.ssa DEBUG on stmt: $770build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,30 numba.core.ssa DEBUG on stmt: $772binary_subscr.6 = getitem(value=knn_dists, index=$770build_tuple.5, fn=) -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_mul788.10 = i * n_neighbors -13:52:51,30 numba.core.ssa DEBUG on stmt: $binop_add794.12 = $binop_mul788.10 + j -13:52:51,30 numba.core.ssa DEBUG on stmt: dists[$binop_add794.12] = $772binary_subscr.6 -13:52:51,30 numba.core.ssa DEBUG on stmt: jump 802 -13:52:51,30 numba.core.ssa DEBUG ==== SSA block rewrite pass on 802 -13:52:51,30 numba.core.ssa DEBUG Running -13:52:51,30 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,30 numba.core.ssa DEBUG ==== SSA block rewrite pass on 804 -13:52:51,30 numba.core.ssa DEBUG Running -13:52:51,30 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,30 numba.core.ssa DEBUG ==== SSA block rewrite pass on 806 -13:52:51,31 numba.core.ssa DEBUG Running -13:52:51,31 numba.core.ssa DEBUG on stmt: $814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists, umap_.py:416)]) -13:52:51,31 numba.core.ssa DEBUG on stmt: $816return_value.5 = cast(value=$814build_tuple.4) -13:52:51,31 numba.core.ssa DEBUG on stmt: return $816return_value.5 -13:52:51,31 numba.core.ssa DEBUG ==== SSA block rewrite pass on 807 -13:52:51,31 numba.core.ssa DEBUG Running -13:52:51,31 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,31 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {282: [], - 358: []}) -13:52:51,31 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:51,31 numba.core.ssa DEBUG Running -13:52:51,31 numba.core.ssa DEBUG on stmt: knn_indices = arg(0, name=knn_indices) -13:52:51,31 numba.core.ssa DEBUG on stmt: knn_dists = arg(1, name=knn_dists) -13:52:51,31 numba.core.ssa DEBUG on stmt: sigmas = arg(2, name=sigmas) -13:52:51,31 numba.core.ssa DEBUG on stmt: rhos = arg(3, name=rhos) -13:52:51,31 numba.core.ssa DEBUG on stmt: return_dists = arg(4, name=return_dists) -13:52:51,31 numba.core.ssa DEBUG on stmt: bipartite = arg(5, name=bipartite) -13:52:51,31 numba.core.ssa DEBUG on stmt: $6load_attr.1 = getattr(value=knn_indices, attr=shape) -13:52:51,31 numba.core.ssa DEBUG on stmt: $const16.2 = const(int, 0) -13:52:51,31 numba.core.ssa DEBUG on stmt: n_samples = static_getitem(value=$6load_attr.1, index=0, index_var=$const16.2, fn=) -13:52:51,31 numba.core.ssa DEBUG on stmt: $32load_attr.5 = getattr(value=knn_indices, attr=shape) -13:52:51,31 numba.core.ssa DEBUG on stmt: $const42.6 = const(int, 1) -13:52:51,31 numba.core.ssa DEBUG on stmt: n_neighbors = static_getitem(value=$32load_attr.5, index=1, index_var=$const42.6, fn=) -13:52:51,31 numba.core.ssa DEBUG on stmt: $56load_global.8 = global(np: ) -13:52:51,31 numba.core.ssa DEBUG on stmt: $68load_attr.10 = getattr(value=$56load_global.8, attr=zeros) -13:52:51,31 numba.core.ssa DEBUG on stmt: $80load_attr.12 = getattr(value=knn_indices, attr=size) -13:52:51,31 numba.core.ssa DEBUG on stmt: $90load_global.13 = global(np: ) -13:52:51,31 numba.core.ssa DEBUG on stmt: $102load_attr.14 = getattr(value=$90load_global.13, attr=int32) -13:52:51,31 numba.core.ssa DEBUG on stmt: rows = call $68load_attr.10($80load_attr.12, func=$68load_attr.10, args=[Var($80load_attr.12, umap_.py:412)], kws=[('dtype', Var($102load_attr.14, umap_.py:412))], vararg=None, varkwarg=None, target=None) -13:52:51,31 numba.core.ssa DEBUG on stmt: $130load_global.16 = global(np: ) -13:52:51,31 numba.core.ssa DEBUG on stmt: $142load_attr.18 = getattr(value=$130load_global.16, attr=zeros) -13:52:51,31 numba.core.ssa DEBUG on stmt: $154load_attr.20 = getattr(value=knn_indices, attr=size) -13:52:51,31 numba.core.ssa DEBUG on stmt: $164load_global.21 = global(np: ) -13:52:51,31 numba.core.ssa DEBUG on stmt: $176load_attr.22 = getattr(value=$164load_global.21, attr=int32) -13:52:51,32 numba.core.ssa DEBUG on stmt: cols = call $142load_attr.18($154load_attr.20, func=$142load_attr.18, args=[Var($154load_attr.20, umap_.py:413)], kws=[('dtype', Var($176load_attr.22, umap_.py:413))], vararg=None, varkwarg=None, target=None) -13:52:51,32 numba.core.ssa DEBUG on stmt: $204load_global.24 = global(np: ) -13:52:51,32 numba.core.ssa DEBUG on stmt: $216load_attr.26 = getattr(value=$204load_global.24, attr=zeros) -13:52:51,32 numba.core.ssa DEBUG on stmt: $228load_attr.28 = getattr(value=knn_indices, attr=size) -13:52:51,32 numba.core.ssa DEBUG on stmt: $238load_global.29 = global(np: ) -13:52:51,32 numba.core.ssa DEBUG on stmt: $250load_attr.30 = getattr(value=$238load_global.29, attr=float32) -13:52:51,32 numba.core.ssa DEBUG on stmt: vals = call $216load_attr.26($228load_attr.28, func=$216load_attr.26, args=[Var($228load_attr.28, umap_.py:414)], kws=[('dtype', Var($250load_attr.30, umap_.py:414))], vararg=None, varkwarg=None, target=None) -13:52:51,32 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:51,32 numba.core.ssa DEBUG on stmt: $280pred = call bool280(return_dists, func=bool280, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,32 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 358 -13:52:51,32 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:51,32 numba.core.ssa DEBUG Running -13:52:51,32 numba.core.ssa DEBUG on stmt: $282load_global.0 = global(np: ) -13:52:51,32 numba.core.ssa DEBUG on stmt: $294load_attr.2 = getattr(value=$282load_global.0, attr=zeros) -13:52:51,32 numba.core.ssa DEBUG on stmt: $306load_attr.4 = getattr(value=knn_indices, attr=size) -13:52:51,32 numba.core.ssa DEBUG on stmt: $316load_global.5 = global(np: ) -13:52:51,32 numba.core.ssa DEBUG on stmt: $328load_attr.6 = getattr(value=$316load_global.5, attr=float32) -13:52:51,32 numba.core.ssa DEBUG on stmt: dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) -13:52:51,32 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,32 numba.core.ssa DEBUG ==== SSA block rewrite pass on 358 -13:52:51,32 numba.core.ssa DEBUG Running -13:52:51,32 numba.core.ssa DEBUG on stmt: dists.1 = const(NoneType, None) -13:52:51,32 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,32 numba.core.ssa DEBUG ==== SSA block rewrite pass on 362 -13:52:51,32 numba.core.ssa DEBUG Running -13:52:51,32 numba.core.ssa DEBUG on stmt: $362load_global.0 = global(range: ) -13:52:51,32 numba.core.ssa DEBUG on stmt: $380call.3 = call $362load_global.0(n_samples, func=$362load_global.0, args=[Var(n_samples, umap_.py:409)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,32 numba.core.ssa DEBUG on stmt: $390get_iter.4 = getiter(value=$380call.3) -13:52:51,32 numba.core.ssa DEBUG on stmt: $phi392.0 = $390get_iter.4 -13:52:51,32 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,32 numba.core.ssa DEBUG ==== SSA block rewrite pass on 392 -13:52:51,33 numba.core.ssa DEBUG Running -13:52:51,33 numba.core.ssa DEBUG on stmt: $392for_iter.1 = iternext(value=$phi392.0) -13:52:51,33 numba.core.ssa DEBUG on stmt: $392for_iter.2 = pair_first(value=$392for_iter.1) -13:52:51,33 numba.core.ssa DEBUG on stmt: $392for_iter.3 = pair_second(value=$392for_iter.1) -13:52:51,33 numba.core.ssa DEBUG on stmt: $phi394.1 = $392for_iter.2 -13:52:51,33 numba.core.ssa DEBUG on stmt: branch $392for_iter.3, 394, 806 -13:52:51,33 numba.core.ssa DEBUG ==== SSA block rewrite pass on 394 -13:52:51,33 numba.core.ssa DEBUG Running -13:52:51,33 numba.core.ssa DEBUG on stmt: i = $phi394.1 -13:52:51,33 numba.core.ssa DEBUG on stmt: $396load_global.2 = global(range: ) -13:52:51,33 numba.core.ssa DEBUG on stmt: $414call.5 = call $396load_global.2(n_neighbors, func=$396load_global.2, args=[Var(n_neighbors, umap_.py:410)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,33 numba.core.ssa DEBUG on stmt: $424get_iter.6 = getiter(value=$414call.5) -13:52:51,33 numba.core.ssa DEBUG on stmt: $phi426.1 = $424get_iter.6 -13:52:51,33 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,33 numba.core.ssa DEBUG ==== SSA block rewrite pass on 426 -13:52:51,33 numba.core.ssa DEBUG Running -13:52:51,33 numba.core.ssa DEBUG on stmt: $426for_iter.2 = iternext(value=$phi426.1) -13:52:51,33 numba.core.ssa DEBUG on stmt: $426for_iter.3 = pair_first(value=$426for_iter.2) -13:52:51,33 numba.core.ssa DEBUG on stmt: $426for_iter.4 = pair_second(value=$426for_iter.2) -13:52:51,33 numba.core.ssa DEBUG on stmt: $phi428.2 = $426for_iter.3 -13:52:51,33 numba.core.ssa DEBUG on stmt: branch $426for_iter.4, 428, 804 -13:52:51,33 numba.core.ssa DEBUG ==== SSA block rewrite pass on 428 -13:52:51,33 numba.core.ssa DEBUG Running -13:52:51,33 numba.core.ssa DEBUG on stmt: j = $phi428.2 -13:52:51,33 numba.core.ssa DEBUG on stmt: $436build_tuple.6 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,33 numba.core.ssa DEBUG on stmt: $438binary_subscr.7 = getitem(value=knn_indices, index=$436build_tuple.6, fn=) -13:52:51,33 numba.core.ssa DEBUG on stmt: $const448.8 = const(int, -1) -13:52:51,33 numba.core.ssa DEBUG on stmt: $450compare_op.9 = $438binary_subscr.7 == $const448.8 -13:52:51,33 numba.core.ssa DEBUG on stmt: bool456 = global(bool: ) -13:52:51,33 numba.core.ssa DEBUG on stmt: $456pred = call bool456($450compare_op.9, func=bool456, args=(Var($450compare_op.9, umap_.py:422),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,34 numba.core.ssa DEBUG on stmt: branch $456pred, 458, 460 -13:52:51,34 numba.core.ssa DEBUG ==== SSA block rewrite pass on 458 -13:52:51,34 numba.core.ssa DEBUG Running -13:52:51,34 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,34 numba.core.ssa DEBUG ==== SSA block rewrite pass on 460 -13:52:51,34 numba.core.ssa DEBUG Running -13:52:51,34 numba.core.ssa DEBUG on stmt: $const462.3 = const(bool, False) -13:52:51,34 numba.core.ssa DEBUG on stmt: $464compare_op.4 = bipartite == $const462.3 -13:52:51,34 numba.core.ssa DEBUG on stmt: $476build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,34 numba.core.ssa DEBUG on stmt: $478binary_subscr.9 = getitem(value=knn_indices, index=$476build_tuple.8, fn=) -13:52:51,34 numba.core.ssa DEBUG on stmt: $490compare_op.11 = $478binary_subscr.9 == i -13:52:51,34 numba.core.ssa DEBUG on stmt: $binop_and_496.12 = $464compare_op.4 & $490compare_op.11 -13:52:51,34 numba.core.ssa DEBUG on stmt: bool500 = global(bool: ) -13:52:51,34 numba.core.ssa DEBUG on stmt: $500pred = call bool500($binop_and_496.12, func=bool500, args=(Var($binop_and_496.12, umap_.py:426),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,34 numba.core.ssa DEBUG on stmt: branch $500pred, 502, 508 -13:52:51,34 numba.core.ssa DEBUG ==== SSA block rewrite pass on 502 -13:52:51,34 numba.core.ssa DEBUG Running -13:52:51,34 numba.core.ssa DEBUG on stmt: val = const(float, 0.0) -13:52:51,34 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,34 numba.core.ssa DEBUG ==== SSA block rewrite pass on 508 -13:52:51,34 numba.core.ssa DEBUG Running -13:52:51,34 numba.core.ssa DEBUG on stmt: $514build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,34 numba.core.ssa DEBUG on stmt: $516binary_subscr.6 = getitem(value=knn_dists, index=$514build_tuple.5, fn=) -13:52:51,34 numba.core.ssa DEBUG on stmt: $530binary_subscr.9 = getitem(value=rhos, index=i, fn=) -13:52:51,34 numba.core.ssa DEBUG on stmt: $binop_sub540.10 = $516binary_subscr.6 - $530binary_subscr.9 -13:52:51,34 numba.core.ssa DEBUG on stmt: $const544.11 = const(float, 0.0) -13:52:51,34 numba.core.ssa DEBUG on stmt: $546compare_op.12 = $binop_sub540.10 <= $const544.11 -13:52:51,34 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:51,34 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.12, func=bool552, args=(Var($546compare_op.12, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,34 numba.core.ssa DEBUG on stmt: branch $552pred, 578, 554 -13:52:51,34 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:51,34 numba.core.ssa DEBUG Running -13:52:51,34 numba.core.ssa DEBUG on stmt: $558binary_subscr.4 = getitem(value=sigmas, index=i, fn=) -13:52:51,35 numba.core.ssa DEBUG on stmt: $const568.5 = const(float, 0.0) -13:52:51,35 numba.core.ssa DEBUG on stmt: $570compare_op.6 = $558binary_subscr.4 == $const568.5 -13:52:51,35 numba.core.ssa DEBUG on stmt: bool576 = global(bool: ) -13:52:51,35 numba.core.ssa DEBUG on stmt: $576pred = call bool576($570compare_op.6, func=bool576, args=(Var($570compare_op.6, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,35 numba.core.ssa DEBUG on stmt: branch $576pred, 578, 584 -13:52:51,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 578 -13:52:51,35 numba.core.ssa DEBUG Running -13:52:51,35 numba.core.ssa DEBUG on stmt: val = const(float, 1.0) -13:52:51,35 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 584 -13:52:51,35 numba.core.ssa DEBUG Running -13:52:51,35 numba.core.ssa DEBUG on stmt: $584load_global.2 = global(np: ) -13:52:51,35 numba.core.ssa DEBUG on stmt: $596load_attr.4 = getattr(value=$584load_global.2, attr=exp) -13:52:51,35 numba.core.ssa DEBUG on stmt: $612build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,35 numba.core.ssa DEBUG on stmt: $614binary_subscr.9 = getitem(value=knn_dists, index=$612build_tuple.8, fn=) -13:52:51,35 numba.core.ssa DEBUG on stmt: $628binary_subscr.12 = getitem(value=rhos, index=i, fn=) -13:52:51,35 numba.core.ssa DEBUG on stmt: $binop_sub638.13 = $614binary_subscr.9 - $628binary_subscr.12 -13:52:51,35 numba.core.ssa DEBUG on stmt: $646binary_subscr.16 = getitem(value=sigmas, index=i, fn=) -13:52:51,35 numba.core.ssa DEBUG on stmt: $binop_truediv656.17 = $binop_sub638.13 / $646binary_subscr.16 -13:52:51,35 numba.core.ssa DEBUG on stmt: $660unary_negative.18 = unary(fn=, value=$binop_truediv656.17) -13:52:51,35 numba.core.ssa DEBUG on stmt: val = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,35 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 678 -13:52:51,35 numba.core.ssa DEBUG Running -13:52:51,35 numba.core.ssa DEBUG on stmt: $binop_mul686.6 = i * n_neighbors -13:52:51,35 numba.core.ssa DEBUG on stmt: $binop_add692.8 = $binop_mul686.6 + j -13:52:51,35 numba.core.ssa DEBUG on stmt: rows[$binop_add692.8] = i -13:52:51,35 numba.core.ssa DEBUG on stmt: $706build_tuple.12 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,35 numba.core.ssa DEBUG on stmt: $708binary_subscr.13 = getitem(value=knn_indices, index=$706build_tuple.12, fn=) -13:52:51,35 numba.core.ssa DEBUG on stmt: $binop_mul724.17 = i * n_neighbors -13:52:51,35 numba.core.ssa DEBUG on stmt: $binop_add730.19 = $binop_mul724.17 + j -13:52:51,36 numba.core.ssa DEBUG on stmt: cols[$binop_add730.19] = $708binary_subscr.13 -13:52:51,36 numba.core.ssa DEBUG on stmt: $binop_mul746.24 = i * n_neighbors -13:52:51,36 numba.core.ssa DEBUG on stmt: $binop_add752.26 = $binop_mul746.24 + j -13:52:51,36 numba.core.ssa DEBUG on stmt: vals[$binop_add752.26] = val -13:52:51,36 numba.core.ssa DEBUG on stmt: bool762 = global(bool: ) -13:52:51,36 numba.core.ssa DEBUG on stmt: $762pred = call bool762(return_dists, func=bool762, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,36 numba.core.ssa DEBUG on stmt: branch $762pred, 764, 802 -13:52:51,36 numba.core.ssa DEBUG ==== SSA block rewrite pass on 764 -13:52:51,36 numba.core.ssa DEBUG Running -13:52:51,36 numba.core.ssa DEBUG on stmt: $770build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,36 numba.core.ssa DEBUG on stmt: $772binary_subscr.6 = getitem(value=knn_dists, index=$770build_tuple.5, fn=) -13:52:51,36 numba.core.ssa DEBUG on stmt: $binop_mul788.10 = i * n_neighbors -13:52:51,36 numba.core.ssa DEBUG on stmt: $binop_add794.12 = $binop_mul788.10 + j -13:52:51,36 numba.core.ssa DEBUG on stmt: dists[$binop_add794.12] = $772binary_subscr.6 -13:52:51,36 numba.core.ssa DEBUG find_def var='dists' stmt=dists[$binop_add794.12] = $772binary_subscr.6 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 764 -13:52:51,36 numba.core.ssa DEBUG idom 678 from label 764 -13:52:51,36 numba.core.ssa DEBUG find_def_from_bottom label 678 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 678 -13:52:51,36 numba.core.ssa DEBUG idom 460 from label 678 -13:52:51,36 numba.core.ssa DEBUG find_def_from_bottom label 460 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 460 -13:52:51,36 numba.core.ssa DEBUG idom 428 from label 460 -13:52:51,36 numba.core.ssa DEBUG find_def_from_bottom label 428 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 428 -13:52:51,36 numba.core.ssa DEBUG idom 426 from label 428 -13:52:51,36 numba.core.ssa DEBUG find_def_from_bottom label 426 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 426 -13:52:51,36 numba.core.ssa DEBUG idom 394 from label 426 -13:52:51,36 numba.core.ssa DEBUG find_def_from_bottom label 394 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 394 -13:52:51,36 numba.core.ssa DEBUG idom 392 from label 394 -13:52:51,36 numba.core.ssa DEBUG find_def_from_bottom label 392 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 392 -13:52:51,36 numba.core.ssa DEBUG idom 362 from label 392 -13:52:51,36 numba.core.ssa DEBUG find_def_from_bottom label 362 -13:52:51,36 numba.core.ssa DEBUG find_def_from_top label 362 -13:52:51,37 numba.core.ssa DEBUG insert phi node dists.2 = phi(incoming_values=[], incoming_blocks=[]) at 362 -13:52:51,37 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:51,37 numba.core.ssa DEBUG incoming_def dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) -13:52:51,37 numba.core.ssa DEBUG find_def_from_bottom label 358 -13:52:51,37 numba.core.ssa DEBUG incoming_def dists.1 = const(NoneType, None) -13:52:51,37 numba.core.ssa DEBUG replaced with: dists.2[$binop_add794.12] = $772binary_subscr.6 -13:52:51,37 numba.core.ssa DEBUG on stmt: jump 802 -13:52:51,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 802 -13:52:51,37 numba.core.ssa DEBUG Running -13:52:51,37 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 804 -13:52:51,37 numba.core.ssa DEBUG Running -13:52:51,37 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 806 -13:52:51,37 numba.core.ssa DEBUG Running -13:52:51,37 numba.core.ssa DEBUG on stmt: $814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists, umap_.py:416)]) -13:52:51,37 numba.core.ssa DEBUG find_def var='dists' stmt=$814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists, umap_.py:416)]) -13:52:51,37 numba.core.ssa DEBUG find_def_from_top label 806 -13:52:51,37 numba.core.ssa DEBUG idom 392 from label 806 -13:52:51,37 numba.core.ssa DEBUG find_def_from_bottom label 392 -13:52:51,37 numba.core.ssa DEBUG find_def_from_top label 392 -13:52:51,37 numba.core.ssa DEBUG idom 362 from label 392 -13:52:51,37 numba.core.ssa DEBUG find_def_from_bottom label 362 -13:52:51,37 numba.core.ssa DEBUG replaced with: $814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists.2, umap_.py:437)]) -13:52:51,37 numba.core.ssa DEBUG on stmt: $816return_value.5 = cast(value=$814build_tuple.4) -13:52:51,37 numba.core.ssa DEBUG on stmt: return $816return_value.5 -13:52:51,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 807 -13:52:51,37 numba.core.ssa DEBUG Running -13:52:51,37 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,37 numba.core.ssa DEBUG Fix SSA violator on var val -13:52:51,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:51,37 numba.core.ssa DEBUG Running -13:52:51,37 numba.core.ssa DEBUG on stmt: knn_indices = arg(0, name=knn_indices) -13:52:51,38 numba.core.ssa DEBUG on stmt: knn_dists = arg(1, name=knn_dists) -13:52:51,38 numba.core.ssa DEBUG on stmt: sigmas = arg(2, name=sigmas) -13:52:51,38 numba.core.ssa DEBUG on stmt: rhos = arg(3, name=rhos) -13:52:51,38 numba.core.ssa DEBUG on stmt: return_dists = arg(4, name=return_dists) -13:52:51,38 numba.core.ssa DEBUG on stmt: bipartite = arg(5, name=bipartite) -13:52:51,38 numba.core.ssa DEBUG on stmt: $6load_attr.1 = getattr(value=knn_indices, attr=shape) -13:52:51,38 numba.core.ssa DEBUG on stmt: $const16.2 = const(int, 0) -13:52:51,38 numba.core.ssa DEBUG on stmt: n_samples = static_getitem(value=$6load_attr.1, index=0, index_var=$const16.2, fn=) -13:52:51,38 numba.core.ssa DEBUG on stmt: $32load_attr.5 = getattr(value=knn_indices, attr=shape) -13:52:51,38 numba.core.ssa DEBUG on stmt: $const42.6 = const(int, 1) -13:52:51,38 numba.core.ssa DEBUG on stmt: n_neighbors = static_getitem(value=$32load_attr.5, index=1, index_var=$const42.6, fn=) -13:52:51,38 numba.core.ssa DEBUG on stmt: $56load_global.8 = global(np: ) -13:52:51,38 numba.core.ssa DEBUG on stmt: $68load_attr.10 = getattr(value=$56load_global.8, attr=zeros) -13:52:51,38 numba.core.ssa DEBUG on stmt: $80load_attr.12 = getattr(value=knn_indices, attr=size) -13:52:51,38 numba.core.ssa DEBUG on stmt: $90load_global.13 = global(np: ) -13:52:51,38 numba.core.ssa DEBUG on stmt: $102load_attr.14 = getattr(value=$90load_global.13, attr=int32) -13:52:51,38 numba.core.ssa DEBUG on stmt: rows = call $68load_attr.10($80load_attr.12, func=$68load_attr.10, args=[Var($80load_attr.12, umap_.py:412)], kws=[('dtype', Var($102load_attr.14, umap_.py:412))], vararg=None, varkwarg=None, target=None) -13:52:51,38 numba.core.ssa DEBUG on stmt: $130load_global.16 = global(np: ) -13:52:51,38 numba.core.ssa DEBUG on stmt: $142load_attr.18 = getattr(value=$130load_global.16, attr=zeros) -13:52:51,38 numba.core.ssa DEBUG on stmt: $154load_attr.20 = getattr(value=knn_indices, attr=size) -13:52:51,38 numba.core.ssa DEBUG on stmt: $164load_global.21 = global(np: ) -13:52:51,38 numba.core.ssa DEBUG on stmt: $176load_attr.22 = getattr(value=$164load_global.21, attr=int32) -13:52:51,38 numba.core.ssa DEBUG on stmt: cols = call $142load_attr.18($154load_attr.20, func=$142load_attr.18, args=[Var($154load_attr.20, umap_.py:413)], kws=[('dtype', Var($176load_attr.22, umap_.py:413))], vararg=None, varkwarg=None, target=None) -13:52:51,38 numba.core.ssa DEBUG on stmt: $204load_global.24 = global(np: ) -13:52:51,38 numba.core.ssa DEBUG on stmt: $216load_attr.26 = getattr(value=$204load_global.24, attr=zeros) -13:52:51,38 numba.core.ssa DEBUG on stmt: $228load_attr.28 = getattr(value=knn_indices, attr=size) -13:52:51,38 numba.core.ssa DEBUG on stmt: $238load_global.29 = global(np: ) -13:52:51,38 numba.core.ssa DEBUG on stmt: $250load_attr.30 = getattr(value=$238load_global.29, attr=float32) -13:52:51,38 numba.core.ssa DEBUG on stmt: vals = call $216load_attr.26($228load_attr.28, func=$216load_attr.26, args=[Var($228load_attr.28, umap_.py:414)], kws=[('dtype', Var($250load_attr.30, umap_.py:414))], vararg=None, varkwarg=None, target=None) -13:52:51,38 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:51,38 numba.core.ssa DEBUG on stmt: $280pred = call bool280(return_dists, func=bool280, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,38 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 358 -13:52:51,38 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:51,38 numba.core.ssa DEBUG Running -13:52:51,39 numba.core.ssa DEBUG on stmt: $282load_global.0 = global(np: ) -13:52:51,39 numba.core.ssa DEBUG on stmt: $294load_attr.2 = getattr(value=$282load_global.0, attr=zeros) -13:52:51,39 numba.core.ssa DEBUG on stmt: $306load_attr.4 = getattr(value=knn_indices, attr=size) -13:52:51,39 numba.core.ssa DEBUG on stmt: $316load_global.5 = global(np: ) -13:52:51,39 numba.core.ssa DEBUG on stmt: $328load_attr.6 = getattr(value=$316load_global.5, attr=float32) -13:52:51,39 numba.core.ssa DEBUG on stmt: dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) -13:52:51,39 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 358 -13:52:51,39 numba.core.ssa DEBUG Running -13:52:51,39 numba.core.ssa DEBUG on stmt: dists.1 = const(NoneType, None) -13:52:51,39 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 362 -13:52:51,39 numba.core.ssa DEBUG Running -13:52:51,39 numba.core.ssa DEBUG on stmt: dists.2 = phi(incoming_values=[Var(dists, umap_.py:416), Var(dists.1, umap_.py:418)], incoming_blocks=[282, 358]) -13:52:51,39 numba.core.ssa DEBUG on stmt: $362load_global.0 = global(range: ) -13:52:51,39 numba.core.ssa DEBUG on stmt: $380call.3 = call $362load_global.0(n_samples, func=$362load_global.0, args=[Var(n_samples, umap_.py:409)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,39 numba.core.ssa DEBUG on stmt: $390get_iter.4 = getiter(value=$380call.3) -13:52:51,39 numba.core.ssa DEBUG on stmt: $phi392.0 = $390get_iter.4 -13:52:51,39 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 392 -13:52:51,39 numba.core.ssa DEBUG Running -13:52:51,39 numba.core.ssa DEBUG on stmt: $392for_iter.1 = iternext(value=$phi392.0) -13:52:51,39 numba.core.ssa DEBUG on stmt: $392for_iter.2 = pair_first(value=$392for_iter.1) -13:52:51,39 numba.core.ssa DEBUG on stmt: $392for_iter.3 = pair_second(value=$392for_iter.1) -13:52:51,39 numba.core.ssa DEBUG on stmt: $phi394.1 = $392for_iter.2 -13:52:51,39 numba.core.ssa DEBUG on stmt: branch $392for_iter.3, 394, 806 -13:52:51,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 394 -13:52:51,39 numba.core.ssa DEBUG Running -13:52:51,39 numba.core.ssa DEBUG on stmt: i = $phi394.1 -13:52:51,39 numba.core.ssa DEBUG on stmt: $396load_global.2 = global(range: ) -13:52:51,39 numba.core.ssa DEBUG on stmt: $414call.5 = call $396load_global.2(n_neighbors, func=$396load_global.2, args=[Var(n_neighbors, umap_.py:410)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,39 numba.core.ssa DEBUG on stmt: $424get_iter.6 = getiter(value=$414call.5) -13:52:51,39 numba.core.ssa DEBUG on stmt: $phi426.1 = $424get_iter.6 -13:52:51,39 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 426 -13:52:51,39 numba.core.ssa DEBUG Running -13:52:51,40 numba.core.ssa DEBUG on stmt: $426for_iter.2 = iternext(value=$phi426.1) -13:52:51,40 numba.core.ssa DEBUG on stmt: $426for_iter.3 = pair_first(value=$426for_iter.2) -13:52:51,40 numba.core.ssa DEBUG on stmt: $426for_iter.4 = pair_second(value=$426for_iter.2) -13:52:51,40 numba.core.ssa DEBUG on stmt: $phi428.2 = $426for_iter.3 -13:52:51,40 numba.core.ssa DEBUG on stmt: branch $426for_iter.4, 428, 804 -13:52:51,40 numba.core.ssa DEBUG ==== SSA block rewrite pass on 428 -13:52:51,40 numba.core.ssa DEBUG Running -13:52:51,40 numba.core.ssa DEBUG on stmt: j = $phi428.2 -13:52:51,40 numba.core.ssa DEBUG on stmt: $436build_tuple.6 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,40 numba.core.ssa DEBUG on stmt: $438binary_subscr.7 = getitem(value=knn_indices, index=$436build_tuple.6, fn=) -13:52:51,40 numba.core.ssa DEBUG on stmt: $const448.8 = const(int, -1) -13:52:51,40 numba.core.ssa DEBUG on stmt: $450compare_op.9 = $438binary_subscr.7 == $const448.8 -13:52:51,40 numba.core.ssa DEBUG on stmt: bool456 = global(bool: ) -13:52:51,40 numba.core.ssa DEBUG on stmt: $456pred = call bool456($450compare_op.9, func=bool456, args=(Var($450compare_op.9, umap_.py:422),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,40 numba.core.ssa DEBUG on stmt: branch $456pred, 458, 460 -13:52:51,40 numba.core.ssa DEBUG ==== SSA block rewrite pass on 458 -13:52:51,40 numba.core.ssa DEBUG Running -13:52:51,40 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,40 numba.core.ssa DEBUG ==== SSA block rewrite pass on 460 -13:52:51,40 numba.core.ssa DEBUG Running -13:52:51,40 numba.core.ssa DEBUG on stmt: $const462.3 = const(bool, False) -13:52:51,40 numba.core.ssa DEBUG on stmt: $464compare_op.4 = bipartite == $const462.3 -13:52:51,40 numba.core.ssa DEBUG on stmt: $476build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,40 numba.core.ssa DEBUG on stmt: $478binary_subscr.9 = getitem(value=knn_indices, index=$476build_tuple.8, fn=) -13:52:51,40 numba.core.ssa DEBUG on stmt: $490compare_op.11 = $478binary_subscr.9 == i -13:52:51,40 numba.core.ssa DEBUG on stmt: $binop_and_496.12 = $464compare_op.4 & $490compare_op.11 -13:52:51,40 numba.core.ssa DEBUG on stmt: bool500 = global(bool: ) -13:52:51,40 numba.core.ssa DEBUG on stmt: $500pred = call bool500($binop_and_496.12, func=bool500, args=(Var($binop_and_496.12, umap_.py:426),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,40 numba.core.ssa DEBUG on stmt: branch $500pred, 502, 508 -13:52:51,40 numba.core.ssa DEBUG ==== SSA block rewrite pass on 502 -13:52:51,40 numba.core.ssa DEBUG Running -13:52:51,40 numba.core.ssa DEBUG on stmt: val = const(float, 0.0) -13:52:51,40 numba.core.ssa DEBUG first assign: val -13:52:51,40 numba.core.ssa DEBUG replaced with: val = const(float, 0.0) -13:52:51,40 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,40 numba.core.ssa DEBUG ==== SSA block rewrite pass on 508 -13:52:51,41 numba.core.ssa DEBUG Running -13:52:51,41 numba.core.ssa DEBUG on stmt: $514build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,41 numba.core.ssa DEBUG on stmt: $516binary_subscr.6 = getitem(value=knn_dists, index=$514build_tuple.5, fn=) -13:52:51,41 numba.core.ssa DEBUG on stmt: $530binary_subscr.9 = getitem(value=rhos, index=i, fn=) -13:52:51,41 numba.core.ssa DEBUG on stmt: $binop_sub540.10 = $516binary_subscr.6 - $530binary_subscr.9 -13:52:51,41 numba.core.ssa DEBUG on stmt: $const544.11 = const(float, 0.0) -13:52:51,41 numba.core.ssa DEBUG on stmt: $546compare_op.12 = $binop_sub540.10 <= $const544.11 -13:52:51,41 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:51,41 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.12, func=bool552, args=(Var($546compare_op.12, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,41 numba.core.ssa DEBUG on stmt: branch $552pred, 578, 554 -13:52:51,41 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:51,41 numba.core.ssa DEBUG Running -13:52:51,41 numba.core.ssa DEBUG on stmt: $558binary_subscr.4 = getitem(value=sigmas, index=i, fn=) -13:52:51,41 numba.core.ssa DEBUG on stmt: $const568.5 = const(float, 0.0) -13:52:51,41 numba.core.ssa DEBUG on stmt: $570compare_op.6 = $558binary_subscr.4 == $const568.5 -13:52:51,41 numba.core.ssa DEBUG on stmt: bool576 = global(bool: ) -13:52:51,41 numba.core.ssa DEBUG on stmt: $576pred = call bool576($570compare_op.6, func=bool576, args=(Var($570compare_op.6, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,41 numba.core.ssa DEBUG on stmt: branch $576pred, 578, 584 -13:52:51,41 numba.core.ssa DEBUG ==== SSA block rewrite pass on 578 -13:52:51,41 numba.core.ssa DEBUG Running -13:52:51,41 numba.core.ssa DEBUG on stmt: val = const(float, 1.0) -13:52:51,41 numba.core.ssa DEBUG replaced with: val.1 = const(float, 1.0) -13:52:51,41 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,41 numba.core.ssa DEBUG ==== SSA block rewrite pass on 584 -13:52:51,41 numba.core.ssa DEBUG Running -13:52:51,41 numba.core.ssa DEBUG on stmt: $584load_global.2 = global(np: ) -13:52:51,41 numba.core.ssa DEBUG on stmt: $596load_attr.4 = getattr(value=$584load_global.2, attr=exp) -13:52:51,41 numba.core.ssa DEBUG on stmt: $612build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,41 numba.core.ssa DEBUG on stmt: $614binary_subscr.9 = getitem(value=knn_dists, index=$612build_tuple.8, fn=) -13:52:51,41 numba.core.ssa DEBUG on stmt: $628binary_subscr.12 = getitem(value=rhos, index=i, fn=) -13:52:51,41 numba.core.ssa DEBUG on stmt: $binop_sub638.13 = $614binary_subscr.9 - $628binary_subscr.12 -13:52:51,41 numba.core.ssa DEBUG on stmt: $646binary_subscr.16 = getitem(value=sigmas, index=i, fn=) -13:52:51,41 numba.core.ssa DEBUG on stmt: $binop_truediv656.17 = $binop_sub638.13 / $646binary_subscr.16 -13:52:51,41 numba.core.ssa DEBUG on stmt: $660unary_negative.18 = unary(fn=, value=$binop_truediv656.17) -13:52:51,41 numba.core.ssa DEBUG on stmt: val = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,42 numba.core.ssa DEBUG replaced with: val.2 = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,42 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,42 numba.core.ssa DEBUG ==== SSA block rewrite pass on 678 -13:52:51,42 numba.core.ssa DEBUG Running -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_mul686.6 = i * n_neighbors -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_add692.8 = $binop_mul686.6 + j -13:52:51,42 numba.core.ssa DEBUG on stmt: rows[$binop_add692.8] = i -13:52:51,42 numba.core.ssa DEBUG on stmt: $706build_tuple.12 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,42 numba.core.ssa DEBUG on stmt: $708binary_subscr.13 = getitem(value=knn_indices, index=$706build_tuple.12, fn=) -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_mul724.17 = i * n_neighbors -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_add730.19 = $binop_mul724.17 + j -13:52:51,42 numba.core.ssa DEBUG on stmt: cols[$binop_add730.19] = $708binary_subscr.13 -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_mul746.24 = i * n_neighbors -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_add752.26 = $binop_mul746.24 + j -13:52:51,42 numba.core.ssa DEBUG on stmt: vals[$binop_add752.26] = val -13:52:51,42 numba.core.ssa DEBUG on stmt: bool762 = global(bool: ) -13:52:51,42 numba.core.ssa DEBUG on stmt: $762pred = call bool762(return_dists, func=bool762, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,42 numba.core.ssa DEBUG on stmt: branch $762pred, 764, 802 -13:52:51,42 numba.core.ssa DEBUG ==== SSA block rewrite pass on 764 -13:52:51,42 numba.core.ssa DEBUG Running -13:52:51,42 numba.core.ssa DEBUG on stmt: $770build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,42 numba.core.ssa DEBUG on stmt: $772binary_subscr.6 = getitem(value=knn_dists, index=$770build_tuple.5, fn=) -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_mul788.10 = i * n_neighbors -13:52:51,42 numba.core.ssa DEBUG on stmt: $binop_add794.12 = $binop_mul788.10 + j -13:52:51,42 numba.core.ssa DEBUG on stmt: dists.2[$binop_add794.12] = $772binary_subscr.6 -13:52:51,42 numba.core.ssa DEBUG on stmt: jump 802 -13:52:51,42 numba.core.ssa DEBUG ==== SSA block rewrite pass on 802 -13:52:51,42 numba.core.ssa DEBUG Running -13:52:51,42 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,42 numba.core.ssa DEBUG ==== SSA block rewrite pass on 804 -13:52:51,42 numba.core.ssa DEBUG Running -13:52:51,42 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,42 numba.core.ssa DEBUG ==== SSA block rewrite pass on 806 -13:52:51,42 numba.core.ssa DEBUG Running -13:52:51,42 numba.core.ssa DEBUG on stmt: $814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists.2, umap_.py:437)]) -13:52:51,43 numba.core.ssa DEBUG on stmt: $816return_value.5 = cast(value=$814build_tuple.4) -13:52:51,43 numba.core.ssa DEBUG on stmt: return $816return_value.5 -13:52:51,43 numba.core.ssa DEBUG ==== SSA block rewrite pass on 807 -13:52:51,43 numba.core.ssa DEBUG Running -13:52:51,43 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,43 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {502: [], - 578: [], - 584: []}) -13:52:51,43 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:51,43 numba.core.ssa DEBUG Running -13:52:51,43 numba.core.ssa DEBUG on stmt: knn_indices = arg(0, name=knn_indices) -13:52:51,43 numba.core.ssa DEBUG on stmt: knn_dists = arg(1, name=knn_dists) -13:52:51,43 numba.core.ssa DEBUG on stmt: sigmas = arg(2, name=sigmas) -13:52:51,43 numba.core.ssa DEBUG on stmt: rhos = arg(3, name=rhos) -13:52:51,43 numba.core.ssa DEBUG on stmt: return_dists = arg(4, name=return_dists) -13:52:51,43 numba.core.ssa DEBUG on stmt: bipartite = arg(5, name=bipartite) -13:52:51,43 numba.core.ssa DEBUG on stmt: $6load_attr.1 = getattr(value=knn_indices, attr=shape) -13:52:51,43 numba.core.ssa DEBUG on stmt: $const16.2 = const(int, 0) -13:52:51,43 numba.core.ssa DEBUG on stmt: n_samples = static_getitem(value=$6load_attr.1, index=0, index_var=$const16.2, fn=) -13:52:51,43 numba.core.ssa DEBUG on stmt: $32load_attr.5 = getattr(value=knn_indices, attr=shape) -13:52:51,43 numba.core.ssa DEBUG on stmt: $const42.6 = const(int, 1) -13:52:51,43 numba.core.ssa DEBUG on stmt: n_neighbors = static_getitem(value=$32load_attr.5, index=1, index_var=$const42.6, fn=) -13:52:51,43 numba.core.ssa DEBUG on stmt: $56load_global.8 = global(np: ) -13:52:51,43 numba.core.ssa DEBUG on stmt: $68load_attr.10 = getattr(value=$56load_global.8, attr=zeros) -13:52:51,43 numba.core.ssa DEBUG on stmt: $80load_attr.12 = getattr(value=knn_indices, attr=size) -13:52:51,43 numba.core.ssa DEBUG on stmt: $90load_global.13 = global(np: ) -13:52:51,43 numba.core.ssa DEBUG on stmt: $102load_attr.14 = getattr(value=$90load_global.13, attr=int32) -13:52:51,43 numba.core.ssa DEBUG on stmt: rows = call $68load_attr.10($80load_attr.12, func=$68load_attr.10, args=[Var($80load_attr.12, umap_.py:412)], kws=[('dtype', Var($102load_attr.14, umap_.py:412))], vararg=None, varkwarg=None, target=None) -13:52:51,43 numba.core.ssa DEBUG on stmt: $130load_global.16 = global(np: ) -13:52:51,43 numba.core.ssa DEBUG on stmt: $142load_attr.18 = getattr(value=$130load_global.16, attr=zeros) -13:52:51,43 numba.core.ssa DEBUG on stmt: $154load_attr.20 = getattr(value=knn_indices, attr=size) -13:52:51,43 numba.core.ssa DEBUG on stmt: $164load_global.21 = global(np: ) -13:52:51,43 numba.core.ssa DEBUG on stmt: $176load_attr.22 = getattr(value=$164load_global.21, attr=int32) -13:52:51,43 numba.core.ssa DEBUG on stmt: cols = call $142load_attr.18($154load_attr.20, func=$142load_attr.18, args=[Var($154load_attr.20, umap_.py:413)], kws=[('dtype', Var($176load_attr.22, umap_.py:413))], vararg=None, varkwarg=None, target=None) -13:52:51,44 numba.core.ssa DEBUG on stmt: $204load_global.24 = global(np: ) -13:52:51,44 numba.core.ssa DEBUG on stmt: $216load_attr.26 = getattr(value=$204load_global.24, attr=zeros) -13:52:51,44 numba.core.ssa DEBUG on stmt: $228load_attr.28 = getattr(value=knn_indices, attr=size) -13:52:51,44 numba.core.ssa DEBUG on stmt: $238load_global.29 = global(np: ) -13:52:51,44 numba.core.ssa DEBUG on stmt: $250load_attr.30 = getattr(value=$238load_global.29, attr=float32) -13:52:51,44 numba.core.ssa DEBUG on stmt: vals = call $216load_attr.26($228load_attr.28, func=$216load_attr.26, args=[Var($228load_attr.28, umap_.py:414)], kws=[('dtype', Var($250load_attr.30, umap_.py:414))], vararg=None, varkwarg=None, target=None) -13:52:51,44 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:51,44 numba.core.ssa DEBUG on stmt: $280pred = call bool280(return_dists, func=bool280, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,44 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 358 -13:52:51,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:51,44 numba.core.ssa DEBUG Running -13:52:51,44 numba.core.ssa DEBUG on stmt: $282load_global.0 = global(np: ) -13:52:51,44 numba.core.ssa DEBUG on stmt: $294load_attr.2 = getattr(value=$282load_global.0, attr=zeros) -13:52:51,44 numba.core.ssa DEBUG on stmt: $306load_attr.4 = getattr(value=knn_indices, attr=size) -13:52:51,44 numba.core.ssa DEBUG on stmt: $316load_global.5 = global(np: ) -13:52:51,44 numba.core.ssa DEBUG on stmt: $328load_attr.6 = getattr(value=$316load_global.5, attr=float32) -13:52:51,44 numba.core.ssa DEBUG on stmt: dists = call $294load_attr.2($306load_attr.4, func=$294load_attr.2, args=[Var($306load_attr.4, umap_.py:416)], kws=[('dtype', Var($328load_attr.6, umap_.py:416))], vararg=None, varkwarg=None, target=None) -13:52:51,44 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 358 -13:52:51,44 numba.core.ssa DEBUG Running -13:52:51,44 numba.core.ssa DEBUG on stmt: dists.1 = const(NoneType, None) -13:52:51,44 numba.core.ssa DEBUG on stmt: jump 362 -13:52:51,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 362 -13:52:51,44 numba.core.ssa DEBUG Running -13:52:51,44 numba.core.ssa DEBUG on stmt: dists.2 = phi(incoming_values=[Var(dists, umap_.py:416), Var(dists.1, umap_.py:418)], incoming_blocks=[282, 358]) -13:52:51,44 numba.core.ssa DEBUG on stmt: $362load_global.0 = global(range: ) -13:52:51,44 numba.core.ssa DEBUG on stmt: $380call.3 = call $362load_global.0(n_samples, func=$362load_global.0, args=[Var(n_samples, umap_.py:409)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,44 numba.core.ssa DEBUG on stmt: $390get_iter.4 = getiter(value=$380call.3) -13:52:51,44 numba.core.ssa DEBUG on stmt: $phi392.0 = $390get_iter.4 -13:52:51,44 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 392 -13:52:51,44 numba.core.ssa DEBUG Running -13:52:51,44 numba.core.ssa DEBUG on stmt: $392for_iter.1 = iternext(value=$phi392.0) -13:52:51,44 numba.core.ssa DEBUG on stmt: $392for_iter.2 = pair_first(value=$392for_iter.1) -13:52:51,45 numba.core.ssa DEBUG on stmt: $392for_iter.3 = pair_second(value=$392for_iter.1) -13:52:51,45 numba.core.ssa DEBUG on stmt: $phi394.1 = $392for_iter.2 -13:52:51,45 numba.core.ssa DEBUG on stmt: branch $392for_iter.3, 394, 806 -13:52:51,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 394 -13:52:51,45 numba.core.ssa DEBUG Running -13:52:51,45 numba.core.ssa DEBUG on stmt: i = $phi394.1 -13:52:51,45 numba.core.ssa DEBUG on stmt: $396load_global.2 = global(range: ) -13:52:51,45 numba.core.ssa DEBUG on stmt: $414call.5 = call $396load_global.2(n_neighbors, func=$396load_global.2, args=[Var(n_neighbors, umap_.py:410)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,45 numba.core.ssa DEBUG on stmt: $424get_iter.6 = getiter(value=$414call.5) -13:52:51,45 numba.core.ssa DEBUG on stmt: $phi426.1 = $424get_iter.6 -13:52:51,45 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 426 -13:52:51,45 numba.core.ssa DEBUG Running -13:52:51,45 numba.core.ssa DEBUG on stmt: $426for_iter.2 = iternext(value=$phi426.1) -13:52:51,45 numba.core.ssa DEBUG on stmt: $426for_iter.3 = pair_first(value=$426for_iter.2) -13:52:51,45 numba.core.ssa DEBUG on stmt: $426for_iter.4 = pair_second(value=$426for_iter.2) -13:52:51,45 numba.core.ssa DEBUG on stmt: $phi428.2 = $426for_iter.3 -13:52:51,45 numba.core.ssa DEBUG on stmt: branch $426for_iter.4, 428, 804 -13:52:51,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 428 -13:52:51,45 numba.core.ssa DEBUG Running -13:52:51,45 numba.core.ssa DEBUG on stmt: j = $phi428.2 -13:52:51,45 numba.core.ssa DEBUG on stmt: $436build_tuple.6 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,45 numba.core.ssa DEBUG on stmt: $438binary_subscr.7 = getitem(value=knn_indices, index=$436build_tuple.6, fn=) -13:52:51,45 numba.core.ssa DEBUG on stmt: $const448.8 = const(int, -1) -13:52:51,45 numba.core.ssa DEBUG on stmt: $450compare_op.9 = $438binary_subscr.7 == $const448.8 -13:52:51,45 numba.core.ssa DEBUG on stmt: bool456 = global(bool: ) -13:52:51,45 numba.core.ssa DEBUG on stmt: $456pred = call bool456($450compare_op.9, func=bool456, args=(Var($450compare_op.9, umap_.py:422),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,45 numba.core.ssa DEBUG on stmt: branch $456pred, 458, 460 -13:52:51,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 458 -13:52:51,45 numba.core.ssa DEBUG Running -13:52:51,45 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 460 -13:52:51,45 numba.core.ssa DEBUG Running -13:52:51,45 numba.core.ssa DEBUG on stmt: $const462.3 = const(bool, False) -13:52:51,45 numba.core.ssa DEBUG on stmt: $464compare_op.4 = bipartite == $const462.3 -13:52:51,46 numba.core.ssa DEBUG on stmt: $476build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,46 numba.core.ssa DEBUG on stmt: $478binary_subscr.9 = getitem(value=knn_indices, index=$476build_tuple.8, fn=) -13:52:51,46 numba.core.ssa DEBUG on stmt: $490compare_op.11 = $478binary_subscr.9 == i -13:52:51,46 numba.core.ssa DEBUG on stmt: $binop_and_496.12 = $464compare_op.4 & $490compare_op.11 -13:52:51,46 numba.core.ssa DEBUG on stmt: bool500 = global(bool: ) -13:52:51,46 numba.core.ssa DEBUG on stmt: $500pred = call bool500($binop_and_496.12, func=bool500, args=(Var($binop_and_496.12, umap_.py:426),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,46 numba.core.ssa DEBUG on stmt: branch $500pred, 502, 508 -13:52:51,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 502 -13:52:51,46 numba.core.ssa DEBUG Running -13:52:51,46 numba.core.ssa DEBUG on stmt: val = const(float, 0.0) -13:52:51,46 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 508 -13:52:51,46 numba.core.ssa DEBUG Running -13:52:51,46 numba.core.ssa DEBUG on stmt: $514build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,46 numba.core.ssa DEBUG on stmt: $516binary_subscr.6 = getitem(value=knn_dists, index=$514build_tuple.5, fn=) -13:52:51,46 numba.core.ssa DEBUG on stmt: $530binary_subscr.9 = getitem(value=rhos, index=i, fn=) -13:52:51,46 numba.core.ssa DEBUG on stmt: $binop_sub540.10 = $516binary_subscr.6 - $530binary_subscr.9 -13:52:51,46 numba.core.ssa DEBUG on stmt: $const544.11 = const(float, 0.0) -13:52:51,46 numba.core.ssa DEBUG on stmt: $546compare_op.12 = $binop_sub540.10 <= $const544.11 -13:52:51,46 numba.core.ssa DEBUG on stmt: bool552 = global(bool: ) -13:52:51,46 numba.core.ssa DEBUG on stmt: $552pred = call bool552($546compare_op.12, func=bool552, args=(Var($546compare_op.12, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,46 numba.core.ssa DEBUG on stmt: branch $552pred, 578, 554 -13:52:51,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 554 -13:52:51,46 numba.core.ssa DEBUG Running -13:52:51,46 numba.core.ssa DEBUG on stmt: $558binary_subscr.4 = getitem(value=sigmas, index=i, fn=) -13:52:51,46 numba.core.ssa DEBUG on stmt: $const568.5 = const(float, 0.0) -13:52:51,46 numba.core.ssa DEBUG on stmt: $570compare_op.6 = $558binary_subscr.4 == $const568.5 -13:52:51,46 numba.core.ssa DEBUG on stmt: bool576 = global(bool: ) -13:52:51,46 numba.core.ssa DEBUG on stmt: $576pred = call bool576($570compare_op.6, func=bool576, args=(Var($570compare_op.6, umap_.py:428),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,46 numba.core.ssa DEBUG on stmt: branch $576pred, 578, 584 -13:52:51,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 578 -13:52:51,46 numba.core.ssa DEBUG Running -13:52:51,46 numba.core.ssa DEBUG on stmt: val.1 = const(float, 1.0) -13:52:51,46 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 584 -13:52:51,47 numba.core.ssa DEBUG Running -13:52:51,47 numba.core.ssa DEBUG on stmt: $584load_global.2 = global(np: ) -13:52:51,47 numba.core.ssa DEBUG on stmt: $596load_attr.4 = getattr(value=$584load_global.2, attr=exp) -13:52:51,47 numba.core.ssa DEBUG on stmt: $612build_tuple.8 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,47 numba.core.ssa DEBUG on stmt: $614binary_subscr.9 = getitem(value=knn_dists, index=$612build_tuple.8, fn=) -13:52:51,47 numba.core.ssa DEBUG on stmt: $628binary_subscr.12 = getitem(value=rhos, index=i, fn=) -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_sub638.13 = $614binary_subscr.9 - $628binary_subscr.12 -13:52:51,47 numba.core.ssa DEBUG on stmt: $646binary_subscr.16 = getitem(value=sigmas, index=i, fn=) -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_truediv656.17 = $binop_sub638.13 / $646binary_subscr.16 -13:52:51,47 numba.core.ssa DEBUG on stmt: $660unary_negative.18 = unary(fn=, value=$binop_truediv656.17) -13:52:51,47 numba.core.ssa DEBUG on stmt: val.2 = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,47 numba.core.ssa DEBUG on stmt: jump 678 -13:52:51,47 numba.core.ssa DEBUG ==== SSA block rewrite pass on 678 -13:52:51,47 numba.core.ssa DEBUG Running -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_mul686.6 = i * n_neighbors -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_add692.8 = $binop_mul686.6 + j -13:52:51,47 numba.core.ssa DEBUG on stmt: rows[$binop_add692.8] = i -13:52:51,47 numba.core.ssa DEBUG on stmt: $706build_tuple.12 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,47 numba.core.ssa DEBUG on stmt: $708binary_subscr.13 = getitem(value=knn_indices, index=$706build_tuple.12, fn=) -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_mul724.17 = i * n_neighbors -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_add730.19 = $binop_mul724.17 + j -13:52:51,47 numba.core.ssa DEBUG on stmt: cols[$binop_add730.19] = $708binary_subscr.13 -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_mul746.24 = i * n_neighbors -13:52:51,47 numba.core.ssa DEBUG on stmt: $binop_add752.26 = $binop_mul746.24 + j -13:52:51,47 numba.core.ssa DEBUG on stmt: vals[$binop_add752.26] = val -13:52:51,47 numba.core.ssa DEBUG find_def var='val' stmt=vals[$binop_add752.26] = val -13:52:51,47 numba.core.ssa DEBUG find_def_from_top label 678 -13:52:51,47 numba.core.ssa DEBUG insert phi node val.3 = phi(incoming_values=[], incoming_blocks=[]) at 678 -13:52:51,47 numba.core.ssa DEBUG find_def_from_bottom label 584 -13:52:51,47 numba.core.ssa DEBUG incoming_def val.2 = call $596load_attr.4($660unary_negative.18, func=$596load_attr.4, args=[Var($660unary_negative.18, umap_.py:431)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,47 numba.core.ssa DEBUG find_def_from_bottom label 578 -13:52:51,47 numba.core.ssa DEBUG incoming_def val.1 = const(float, 1.0) -13:52:51,47 numba.core.ssa DEBUG find_def_from_bottom label 502 -13:52:51,48 numba.core.ssa DEBUG incoming_def val = const(float, 0.0) -13:52:51,48 numba.core.ssa DEBUG replaced with: vals[$binop_add752.26] = val.3 -13:52:51,48 numba.core.ssa DEBUG on stmt: bool762 = global(bool: ) -13:52:51,48 numba.core.ssa DEBUG on stmt: $762pred = call bool762(return_dists, func=bool762, args=(Var(return_dists, umap_.py:351),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,48 numba.core.ssa DEBUG on stmt: branch $762pred, 764, 802 -13:52:51,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 764 -13:52:51,48 numba.core.ssa DEBUG Running -13:52:51,48 numba.core.ssa DEBUG on stmt: $770build_tuple.5 = build_tuple(items=[Var(i, umap_.py:420), Var(j, umap_.py:421)]) -13:52:51,48 numba.core.ssa DEBUG on stmt: $772binary_subscr.6 = getitem(value=knn_dists, index=$770build_tuple.5, fn=) -13:52:51,48 numba.core.ssa DEBUG on stmt: $binop_mul788.10 = i * n_neighbors -13:52:51,48 numba.core.ssa DEBUG on stmt: $binop_add794.12 = $binop_mul788.10 + j -13:52:51,48 numba.core.ssa DEBUG on stmt: dists.2[$binop_add794.12] = $772binary_subscr.6 -13:52:51,48 numba.core.ssa DEBUG on stmt: jump 802 -13:52:51,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 802 -13:52:51,48 numba.core.ssa DEBUG Running -13:52:51,48 numba.core.ssa DEBUG on stmt: jump 807 -13:52:51,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 804 -13:52:51,48 numba.core.ssa DEBUG Running -13:52:51,48 numba.core.ssa DEBUG on stmt: jump 392 -13:52:51,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 806 -13:52:51,48 numba.core.ssa DEBUG Running -13:52:51,48 numba.core.ssa DEBUG on stmt: $814build_tuple.4 = build_tuple(items=[Var(rows, umap_.py:412), Var(cols, umap_.py:413), Var(vals, umap_.py:414), Var(dists.2, umap_.py:437)]) -13:52:51,48 numba.core.ssa DEBUG on stmt: $816return_value.5 = cast(value=$814build_tuple.4) -13:52:51,48 numba.core.ssa DEBUG on stmt: return $816return_value.5 -13:52:51,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 807 -13:52:51,48 numba.core.ssa DEBUG Running -13:52:51,48 numba.core.ssa DEBUG on stmt: jump 426 -13:52:51,61 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4456) - 2 RESUME(arg=0, lineno=4456) - 4 LOAD_GLOBAL(arg=1, lineno=4457) - 16 LOAD_ATTR(arg=1, lineno=4457) - 26 LOAD_FAST(arg=0, lineno=4457) - 28 LOAD_FAST(arg=1, lineno=4457) - 30 KW_NAMES(arg=1, lineno=4457) - 32 PRECALL(arg=2, lineno=4457) - 36 CALL(arg=2, lineno=4457) - 46 STORE_FAST(arg=2, lineno=4457) - 48 LOAD_FAST(arg=2, lineno=4458) - 50 LOAD_METHOD(arg=2, lineno=4458) - 72 PRECALL(arg=0, lineno=4458) - 76 CALL(arg=0, lineno=4458) - 86 POP_TOP(arg=None, lineno=4458) - 88 LOAD_FAST(arg=2, lineno=4459) - 90 RETURN_VALUE(arg=None, lineno=4459) -13:52:51,61 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,61 numba.core.byteflow DEBUG stack: [] -13:52:51,61 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4456) -13:52:51,62 numba.core.byteflow DEBUG stack [] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=4456) -13:52:51,62 numba.core.byteflow DEBUG stack [] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack [] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_ATTR(arg=1, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=0, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2'] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_FAST(arg=1, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3'] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=30, inst=KW_NAMES(arg=1, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=32, inst=PRECALL(arg=2, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=36, inst=CALL(arg=2, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=46, inst=STORE_FAST(arg=2, lineno=4457) -13:52:51,62 numba.core.byteflow DEBUG stack ['$36call.5'] -13:52:51,62 numba.core.byteflow DEBUG dispatch pc=48, inst=LOAD_FAST(arg=2, lineno=4458) -13:52:51,63 numba.core.byteflow DEBUG stack [] -13:52:51,63 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_METHOD(arg=2, lineno=4458) -13:52:51,63 numba.core.byteflow DEBUG stack ['$arr48.6'] -13:52:51,63 numba.core.byteflow DEBUG dispatch pc=72, inst=PRECALL(arg=0, lineno=4458) -13:52:51,63 numba.core.byteflow DEBUG stack ['$null$50.7', '$50load_method.8'] -13:52:51,63 numba.core.byteflow DEBUG dispatch pc=76, inst=CALL(arg=0, lineno=4458) -13:52:51,63 numba.core.byteflow DEBUG stack ['$null$50.7', '$50load_method.8'] -13:52:51,63 numba.core.byteflow DEBUG dispatch pc=86, inst=POP_TOP(arg=None, lineno=4458) -13:52:51,63 numba.core.byteflow DEBUG stack ['$76call.9'] -13:52:51,63 numba.core.byteflow DEBUG dispatch pc=88, inst=LOAD_FAST(arg=2, lineno=4459) -13:52:51,63 numba.core.byteflow DEBUG stack [] -13:52:51,63 numba.core.byteflow DEBUG dispatch pc=90, inst=RETURN_VALUE(arg=None, lineno=4459) -13:52:51,63 numba.core.byteflow DEBUG stack ['$arr88.10'] -13:52:51,63 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,63 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,63 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:51,63 numba.core.byteflow DEBUG defmap: {} -13:52:51,63 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:51,63 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:51,63 numba.core.byteflow DEBUG keep phismap: {} -13:52:51,63 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:51,64 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,64 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'item': '$4load_global.0', 'res': '$16load_attr.2'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'res': '$shape26.3'}), (28, {'res': '$dtype28.4'}), (32, {}), (34, {}), (36, {'func': '$16load_attr.2', 'args': ['$shape26.3', '$dtype28.4'], 'kw_names': 1, 'res': '$36call.5'}), (38, {}), (40, {}), (42, {}), (44, {}), (46, {'value': '$36call.5'}), (48, {'res': '$arr48.6'}), (50, {'item': '$arr48.6', 'res': '$50load_method.8'}), (52, {}), (54, {}), (56, {}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {'func': '$50load_method.8', 'args': [], 'kw_names': None, 'res': '$76call.9'}), (78, {}), (80, {}), (82, {}), (84, {}), (88, {'res': '$arr88.10'}), (90, {'retval': '$arr88.10', 'castval': '$90return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,64 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $4load_global.0 = global(np: ) ['$4load_global.0'] - $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) ['$16load_attr.2', '$4load_global.0'] - arr = call $16load_attr.2(shape, func=$16load_attr.2, args=[Var(shape, arrayobj.py:4456)], kws=[('dtype', Var(dtype, arrayobj.py:4456))], vararg=None, varkwarg=None, target=None) ['$16load_attr.2', 'arr', 'dtype', 'shape'] - $50load_method.8 = getattr(value=arr, attr=_zero_fill) ['$50load_method.8', 'arr'] - $76call.9 = call $50load_method.8(func=$50load_method.8, args=[], kws=(), vararg=None, varkwarg=None, target=None) ['$50load_method.8', '$76call.9'] - $90return_value.11 = cast(value=arr) ['$90return_value.11', 'arr'] - return $90return_value.11 ['$90return_value.11'] - -13:52:51,79 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:51,79 numba.core.ssa DEBUG Running -13:52:51,79 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:51,79 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:51,80 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:51,80 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) -13:52:51,80 numba.core.ssa DEBUG on stmt: arr = call $16load_attr.2(shape, func=$16load_attr.2, args=[Var(shape, arrayobj.py:4456)], kws=[('dtype', Var(dtype, arrayobj.py:4456))], vararg=None, varkwarg=None, target=None) -13:52:51,80 numba.core.ssa DEBUG on stmt: $50load_method.8 = getattr(value=arr, attr=_zero_fill) -13:52:51,80 numba.core.ssa DEBUG on stmt: $76call.9 = call $50load_method.8(func=$50load_method.8, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,80 numba.core.ssa DEBUG on stmt: $90return_value.11 = cast(value=arr) -13:52:51,80 numba.core.ssa DEBUG on stmt: return $90return_value.11 -13:52:51,80 numba.core.ssa DEBUG defs defaultdict(, - {'$16load_attr.2': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$50load_method.8': [(, - 0)], - '$76call.9': [(, - 0)], - '$90return_value.11': [(, - 0)], - 'arr': [(, 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:51,80 numba.core.ssa DEBUG SSA violators -13:52:51,84 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4388) - 2 COPY_FREE_VARS(arg=1, lineno=4388) - 4 RESUME(arg=0, lineno=4388) - 6 LOAD_GLOBAL(arg=1, lineno=4389) - 18 LOAD_FAST(arg=0, lineno=4389) - 20 LOAD_FAST(arg=1, lineno=4389) - 22 LOAD_DEREF(arg=2, lineno=4389) - 24 PRECALL(arg=3, lineno=4389) - 28 CALL(arg=3, lineno=4389) - 38 RETURN_VALUE(arg=None, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,84 numba.core.byteflow DEBUG stack: [] -13:52:51,84 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4388) -13:52:51,84 numba.core.byteflow DEBUG stack [] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=4388) -13:52:51,84 numba.core.byteflow DEBUG stack [] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=4388) -13:52:51,84 numba.core.byteflow DEBUG stack [] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_GLOBAL(arg=1, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG stack [] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_FAST(arg=0, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0'] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=1, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2'] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_DEREF(arg=2, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3'] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=24, inst=PRECALL(arg=3, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=28, inst=CALL(arg=3, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:51,84 numba.core.byteflow DEBUG dispatch pc=38, inst=RETURN_VALUE(arg=None, lineno=4389) -13:52:51,84 numba.core.byteflow DEBUG stack ['$28call.5'] -13:52:51,85 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,85 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,85 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:51,85 numba.core.byteflow DEBUG defmap: {} -13:52:51,85 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:51,85 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:51,85 numba.core.byteflow DEBUG keep phismap: {} -13:52:51,85 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:51,85 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,85 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'idx': 0, 'res': '$6load_global.0'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$shape18.2'}), (20, {'res': '$dtype20.3'}), (22, {'res': '$22load_deref.4'}), (24, {}), (26, {}), (28, {'func': '$6load_global.0', 'args': ['$shape18.2', '$dtype20.3', '$22load_deref.4'], 'kw_names': None, 'res': '$28call.5'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'retval': '$28call.5', 'castval': '$38return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,85 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $6load_global.0 = global(numpy_empty_nd: ) ['$6load_global.0'] - $22load_deref.4 = freevar(retty: array(int32, 1d, C)) ['$22load_deref.4'] - $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_deref.4', '$28call.5', '$6load_global.0', 'dtype', 'shape'] - $38return_value.6 = cast(value=$28call.5) ['$28call.5', '$38return_value.6'] - return $38return_value.6 ['$38return_value.6'] - -13:52:51,88 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:51,88 numba.core.ssa DEBUG Running -13:52:51,88 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:51,88 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:51,88 numba.core.ssa DEBUG on stmt: $6load_global.0 = global(numpy_empty_nd: ) -13:52:51,88 numba.core.ssa DEBUG on stmt: $22load_deref.4 = freevar(retty: array(int32, 1d, C)) -13:52:51,88 numba.core.ssa DEBUG on stmt: $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,88 numba.core.ssa DEBUG on stmt: $38return_value.6 = cast(value=$28call.5) -13:52:51,88 numba.core.ssa DEBUG on stmt: return $38return_value.6 -13:52:51,88 numba.core.ssa DEBUG defs defaultdict(, - {'$22load_deref.4': [(, - 0)], - '$28call.5': [(, - 0)], - '$38return_value.6': [(, - 0)], - '$6load_global.0': [(, - 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:51,88 numba.core.ssa DEBUG SSA violators -13:52:51,118 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4447) - 2 RESUME(arg=0, lineno=4447) - 4 LOAD_GLOBAL(arg=1, lineno=4448) - 16 LOAD_FAST(arg=0, lineno=4448) - 18 PRECALL(arg=1, lineno=4448) - 22 CALL(arg=1, lineno=4448) - 32 POP_TOP(arg=None, lineno=4448) - 34 LOAD_CONST(arg=0, lineno=4448) - 36 RETURN_VALUE(arg=None, lineno=4448) -13:52:51,118 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,119 numba.core.byteflow DEBUG stack: [] -13:52:51,119 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4447) -13:52:51,119 numba.core.byteflow DEBUG stack [] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=4447) -13:52:51,119 numba.core.byteflow DEBUG stack [] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=4448) -13:52:51,119 numba.core.byteflow DEBUG stack [] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=4448) -13:52:51,119 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=18, inst=PRECALL(arg=1, lineno=4448) -13:52:51,119 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$self16.2'] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=22, inst=CALL(arg=1, lineno=4448) -13:52:51,119 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$self16.2'] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=32, inst=POP_TOP(arg=None, lineno=4448) -13:52:51,119 numba.core.byteflow DEBUG stack ['$22call.3'] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=34, inst=LOAD_CONST(arg=0, lineno=4448) -13:52:51,119 numba.core.byteflow DEBUG stack [] -13:52:51,119 numba.core.byteflow DEBUG dispatch pc=36, inst=RETURN_VALUE(arg=None, lineno=4448) -13:52:51,119 numba.core.byteflow DEBUG stack ['$const34.4'] -13:52:51,119 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,119 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,119 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:51,119 numba.core.byteflow DEBUG defmap: {} -13:52:51,119 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:51,119 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:51,119 numba.core.byteflow DEBUG keep phismap: {} -13:52:51,119 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:51,119 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,120 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$self16.2'}), (18, {}), (20, {}), (22, {'func': '$4load_global.0', 'args': ['$self16.2'], 'kw_names': None, 'res': '$22call.3'}), (24, {}), (26, {}), (28, {}), (30, {}), (34, {'res': '$const34.4'}), (36, {'retval': '$const34.4', 'castval': '$36return_value.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,120 numba.core.interpreter DEBUG label 0: - self = arg(0, name=self) ['self'] - $4load_global.0 = global(_zero_fill_array_method: ) ['$4load_global.0'] - $22call.3 = call $4load_global.0(self, func=$4load_global.0, args=[Var(self, arrayobj.py:4447)], kws=(), vararg=None, varkwarg=None, target=None) ['$22call.3', '$4load_global.0', 'self'] - $const34.4 = const(NoneType, None) ['$const34.4'] - $36return_value.5 = cast(value=$const34.4) ['$36return_value.5', '$const34.4'] - return $36return_value.5 ['$36return_value.5'] - -13:52:51,122 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:51,122 numba.core.ssa DEBUG Running -13:52:51,122 numba.core.ssa DEBUG on stmt: self = arg(0, name=self) -13:52:51,123 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(_zero_fill_array_method: ) -13:52:51,123 numba.core.ssa DEBUG on stmt: $22call.3 = call $4load_global.0(self, func=$4load_global.0, args=[Var(self, arrayobj.py:4447)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,123 numba.core.ssa DEBUG on stmt: $const34.4 = const(NoneType, None) -13:52:51,123 numba.core.ssa DEBUG on stmt: $36return_value.5 = cast(value=$const34.4) -13:52:51,123 numba.core.ssa DEBUG on stmt: return $36return_value.5 -13:52:51,123 numba.core.ssa DEBUG defs defaultdict(, - {'$22call.3': [(, - 0)], - '$36return_value.5': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$const34.4': [(, - 0)], - 'self': [(, - 0)]}) -13:52:51,123 numba.core.ssa DEBUG SSA violators -13:52:51,181 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4456) - 2 RESUME(arg=0, lineno=4456) - 4 LOAD_GLOBAL(arg=1, lineno=4457) - 16 LOAD_ATTR(arg=1, lineno=4457) - 26 LOAD_FAST(arg=0, lineno=4457) - 28 LOAD_FAST(arg=1, lineno=4457) - 30 KW_NAMES(arg=1, lineno=4457) - 32 PRECALL(arg=2, lineno=4457) - 36 CALL(arg=2, lineno=4457) - 46 STORE_FAST(arg=2, lineno=4457) - 48 LOAD_FAST(arg=2, lineno=4458) - 50 LOAD_METHOD(arg=2, lineno=4458) - 72 PRECALL(arg=0, lineno=4458) - 76 CALL(arg=0, lineno=4458) - 86 POP_TOP(arg=None, lineno=4458) - 88 LOAD_FAST(arg=2, lineno=4459) - 90 RETURN_VALUE(arg=None, lineno=4459) -13:52:51,181 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,181 numba.core.byteflow DEBUG stack: [] -13:52:51,181 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,181 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4456) -13:52:51,181 numba.core.byteflow DEBUG stack [] -13:52:51,181 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=4456) -13:52:51,181 numba.core.byteflow DEBUG stack [] -13:52:51,181 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=4457) -13:52:51,181 numba.core.byteflow DEBUG stack [] -13:52:51,181 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_ATTR(arg=1, lineno=4457) -13:52:51,182 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=0, lineno=4457) -13:52:51,182 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_FAST(arg=1, lineno=4457) -13:52:51,182 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=30, inst=KW_NAMES(arg=1, lineno=4457) -13:52:51,182 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=32, inst=PRECALL(arg=2, lineno=4457) -13:52:51,182 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=36, inst=CALL(arg=2, lineno=4457) -13:52:51,182 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$shape26.3', '$dtype28.4'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=46, inst=STORE_FAST(arg=2, lineno=4457) -13:52:51,182 numba.core.byteflow DEBUG stack ['$36call.5'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=48, inst=LOAD_FAST(arg=2, lineno=4458) -13:52:51,182 numba.core.byteflow DEBUG stack [] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_METHOD(arg=2, lineno=4458) -13:52:51,182 numba.core.byteflow DEBUG stack ['$arr48.6'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=72, inst=PRECALL(arg=0, lineno=4458) -13:52:51,182 numba.core.byteflow DEBUG stack ['$null$50.7', '$50load_method.8'] -13:52:51,182 numba.core.byteflow DEBUG dispatch pc=76, inst=CALL(arg=0, lineno=4458) -13:52:51,183 numba.core.byteflow DEBUG stack ['$null$50.7', '$50load_method.8'] -13:52:51,183 numba.core.byteflow DEBUG dispatch pc=86, inst=POP_TOP(arg=None, lineno=4458) -13:52:51,183 numba.core.byteflow DEBUG stack ['$76call.9'] -13:52:51,183 numba.core.byteflow DEBUG dispatch pc=88, inst=LOAD_FAST(arg=2, lineno=4459) -13:52:51,183 numba.core.byteflow DEBUG stack [] -13:52:51,183 numba.core.byteflow DEBUG dispatch pc=90, inst=RETURN_VALUE(arg=None, lineno=4459) -13:52:51,183 numba.core.byteflow DEBUG stack ['$arr88.10'] -13:52:51,183 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,183 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,183 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:51,183 numba.core.byteflow DEBUG defmap: {} -13:52:51,183 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:51,183 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:51,183 numba.core.byteflow DEBUG keep phismap: {} -13:52:51,183 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:51,183 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,183 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'item': '$4load_global.0', 'res': '$16load_attr.2'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'res': '$shape26.3'}), (28, {'res': '$dtype28.4'}), (32, {}), (34, {}), (36, {'func': '$16load_attr.2', 'args': ['$shape26.3', '$dtype28.4'], 'kw_names': 1, 'res': '$36call.5'}), (38, {}), (40, {}), (42, {}), (44, {}), (46, {'value': '$36call.5'}), (48, {'res': '$arr48.6'}), (50, {'item': '$arr48.6', 'res': '$50load_method.8'}), (52, {}), (54, {}), (56, {}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {'func': '$50load_method.8', 'args': [], 'kw_names': None, 'res': '$76call.9'}), (78, {}), (80, {}), (82, {}), (84, {}), (88, {'res': '$arr88.10'}), (90, {'retval': '$arr88.10', 'castval': '$90return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,184 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $4load_global.0 = global(np: ) ['$4load_global.0'] - $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) ['$16load_attr.2', '$4load_global.0'] - arr = call $16load_attr.2(shape, func=$16load_attr.2, args=[Var(shape, arrayobj.py:4456)], kws=[('dtype', Var(dtype, arrayobj.py:4456))], vararg=None, varkwarg=None, target=None) ['$16load_attr.2', 'arr', 'dtype', 'shape'] - $50load_method.8 = getattr(value=arr, attr=_zero_fill) ['$50load_method.8', 'arr'] - $76call.9 = call $50load_method.8(func=$50load_method.8, args=[], kws=(), vararg=None, varkwarg=None, target=None) ['$50load_method.8', '$76call.9'] - $90return_value.11 = cast(value=arr) ['$90return_value.11', 'arr'] - return $90return_value.11 ['$90return_value.11'] - -13:52:51,199 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:51,199 numba.core.ssa DEBUG Running -13:52:51,199 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:51,199 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:51,199 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(np: ) -13:52:51,199 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=empty) -13:52:51,199 numba.core.ssa DEBUG on stmt: arr = call $16load_attr.2(shape, func=$16load_attr.2, args=[Var(shape, arrayobj.py:4456)], kws=[('dtype', Var(dtype, arrayobj.py:4456))], vararg=None, varkwarg=None, target=None) -13:52:51,199 numba.core.ssa DEBUG on stmt: $50load_method.8 = getattr(value=arr, attr=_zero_fill) -13:52:51,200 numba.core.ssa DEBUG on stmt: $76call.9 = call $50load_method.8(func=$50load_method.8, args=[], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,200 numba.core.ssa DEBUG on stmt: $90return_value.11 = cast(value=arr) -13:52:51,200 numba.core.ssa DEBUG on stmt: return $90return_value.11 -13:52:51,200 numba.core.ssa DEBUG defs defaultdict(, - {'$16load_attr.2': [(, - 0)], - '$4load_global.0': [(, - 0)], - '$50load_method.8': [(, - 0)], - '$76call.9': [(, - 0)], - '$90return_value.11': [(, - 0)], - 'arr': [(, 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:51,200 numba.core.ssa DEBUG SSA violators -13:52:51,292 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4388) - 2 COPY_FREE_VARS(arg=1, lineno=4388) - 4 RESUME(arg=0, lineno=4388) - 6 LOAD_GLOBAL(arg=1, lineno=4389) - 18 LOAD_FAST(arg=0, lineno=4389) - 20 LOAD_FAST(arg=1, lineno=4389) - 22 LOAD_DEREF(arg=2, lineno=4389) - 24 PRECALL(arg=3, lineno=4389) - 28 CALL(arg=3, lineno=4389) - 38 RETURN_VALUE(arg=None, lineno=4389) -13:52:51,293 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,293 numba.core.byteflow DEBUG stack: [] -13:52:51,293 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,293 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4388) -13:52:51,293 numba.core.byteflow DEBUG stack [] -13:52:51,293 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=4388) -13:52:51,293 numba.core.byteflow DEBUG stack [] -13:52:51,293 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=4388) -13:52:51,293 numba.core.byteflow DEBUG stack [] -13:52:51,293 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_GLOBAL(arg=1, lineno=4389) -13:52:51,293 numba.core.byteflow DEBUG stack [] -13:52:51,293 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_FAST(arg=0, lineno=4389) -13:52:51,293 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0'] -13:52:51,293 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=1, lineno=4389) -13:52:51,293 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2'] -13:52:51,293 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_DEREF(arg=2, lineno=4389) -13:52:51,293 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3'] -13:52:51,294 numba.core.byteflow DEBUG dispatch pc=24, inst=PRECALL(arg=3, lineno=4389) -13:52:51,294 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:51,294 numba.core.byteflow DEBUG dispatch pc=28, inst=CALL(arg=3, lineno=4389) -13:52:51,294 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:51,294 numba.core.byteflow DEBUG dispatch pc=38, inst=RETURN_VALUE(arg=None, lineno=4389) -13:52:51,294 numba.core.byteflow DEBUG stack ['$28call.5'] -13:52:51,294 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,294 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,294 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:51,294 numba.core.byteflow DEBUG defmap: {} -13:52:51,294 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:51,294 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:51,294 numba.core.byteflow DEBUG keep phismap: {} -13:52:51,294 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:51,294 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,294 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'idx': 0, 'res': '$6load_global.0'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$shape18.2'}), (20, {'res': '$dtype20.3'}), (22, {'res': '$22load_deref.4'}), (24, {}), (26, {}), (28, {'func': '$6load_global.0', 'args': ['$shape18.2', '$dtype20.3', '$22load_deref.4'], 'kw_names': None, 'res': '$28call.5'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'retval': '$28call.5', 'castval': '$38return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,295 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $6load_global.0 = global(numpy_empty_nd: ) ['$6load_global.0'] - $22load_deref.4 = freevar(retty: array(int32, 1d, C)) ['$22load_deref.4'] - $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_deref.4', '$28call.5', '$6load_global.0', 'dtype', 'shape'] - $38return_value.6 = cast(value=$28call.5) ['$28call.5', '$38return_value.6'] - return $38return_value.6 ['$38return_value.6'] - -13:52:51,301 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:51,301 numba.core.ssa DEBUG Running -13:52:51,301 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:51,302 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:51,302 numba.core.ssa DEBUG on stmt: $6load_global.0 = global(numpy_empty_nd: ) -13:52:51,302 numba.core.ssa DEBUG on stmt: $22load_deref.4 = freevar(retty: array(int32, 1d, C)) -13:52:51,302 numba.core.ssa DEBUG on stmt: $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,302 numba.core.ssa DEBUG on stmt: $38return_value.6 = cast(value=$28call.5) -13:52:51,302 numba.core.ssa DEBUG on stmt: return $38return_value.6 -13:52:51,302 numba.core.ssa DEBUG defs defaultdict(, - {'$22load_deref.4': [(, - 0)], - '$28call.5': [(, - 0)], - '$38return_value.6': [(, - 0)], - '$6load_global.0': [(, - 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:51,302 numba.core.ssa DEBUG SSA violators -13:52:51,342 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=4388) - 2 COPY_FREE_VARS(arg=1, lineno=4388) - 4 RESUME(arg=0, lineno=4388) - 6 LOAD_GLOBAL(arg=1, lineno=4389) - 18 LOAD_FAST(arg=0, lineno=4389) - 20 LOAD_FAST(arg=1, lineno=4389) - 22 LOAD_DEREF(arg=2, lineno=4389) - 24 PRECALL(arg=3, lineno=4389) - 28 CALL(arg=3, lineno=4389) - 38 RETURN_VALUE(arg=None, lineno=4389) -13:52:51,342 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,342 numba.core.byteflow DEBUG stack: [] -13:52:51,342 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,342 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=4388) -13:52:51,342 numba.core.byteflow DEBUG stack [] -13:52:51,342 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=1, lineno=4388) -13:52:51,342 numba.core.byteflow DEBUG stack [] -13:52:51,342 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=4388) -13:52:51,342 numba.core.byteflow DEBUG stack [] -13:52:51,342 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_GLOBAL(arg=1, lineno=4389) -13:52:51,342 numba.core.byteflow DEBUG stack [] -13:52:51,342 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_FAST(arg=0, lineno=4389) -13:52:51,342 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0'] -13:52:51,342 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=1, lineno=4389) -13:52:51,342 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2'] -13:52:51,343 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_DEREF(arg=2, lineno=4389) -13:52:51,343 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3'] -13:52:51,343 numba.core.byteflow DEBUG dispatch pc=24, inst=PRECALL(arg=3, lineno=4389) -13:52:51,343 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:51,343 numba.core.byteflow DEBUG dispatch pc=28, inst=CALL(arg=3, lineno=4389) -13:52:51,343 numba.core.byteflow DEBUG stack ['$null$6.1', '$6load_global.0', '$shape18.2', '$dtype20.3', '$22load_deref.4'] -13:52:51,343 numba.core.byteflow DEBUG dispatch pc=38, inst=RETURN_VALUE(arg=None, lineno=4389) -13:52:51,343 numba.core.byteflow DEBUG stack ['$28call.5'] -13:52:51,343 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,343 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,343 numba.core.byteflow DEBUG Used_phis: defaultdict(, {State(pc_initial=0 nstack_initial=0): set()}) -13:52:51,343 numba.core.byteflow DEBUG defmap: {} -13:52:51,343 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:51,343 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:51,343 numba.core.byteflow DEBUG keep phismap: {} -13:52:51,343 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:51,343 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,343 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {'idx': 0, 'res': '$6load_global.0'}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {'res': '$shape18.2'}), (20, {'res': '$dtype20.3'}), (22, {'res': '$22load_deref.4'}), (24, {}), (26, {}), (28, {'func': '$6load_global.0', 'args': ['$shape18.2', '$dtype20.3', '$22load_deref.4'], 'kw_names': None, 'res': '$28call.5'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'retval': '$28call.5', 'castval': '$38return_value.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,344 numba.core.interpreter DEBUG label 0: - shape = arg(0, name=shape) ['shape'] - dtype = arg(1, name=dtype) ['dtype'] - $6load_global.0 = global(numpy_empty_nd: ) ['$6load_global.0'] - $22load_deref.4 = freevar(retty: array(float32, 1d, C)) ['$22load_deref.4'] - $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) ['$22load_deref.4', '$28call.5', '$6load_global.0', 'dtype', 'shape'] - $38return_value.6 = cast(value=$28call.5) ['$28call.5', '$38return_value.6'] - return $38return_value.6 ['$38return_value.6'] - -13:52:51,350 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:51,350 numba.core.ssa DEBUG Running -13:52:51,350 numba.core.ssa DEBUG on stmt: shape = arg(0, name=shape) -13:52:51,350 numba.core.ssa DEBUG on stmt: dtype = arg(1, name=dtype) -13:52:51,351 numba.core.ssa DEBUG on stmt: $6load_global.0 = global(numpy_empty_nd: ) -13:52:51,351 numba.core.ssa DEBUG on stmt: $22load_deref.4 = freevar(retty: array(float32, 1d, C)) -13:52:51,351 numba.core.ssa DEBUG on stmt: $28call.5 = call $6load_global.0(shape, dtype, $22load_deref.4, func=$6load_global.0, args=[Var(shape, arrayobj.py:4388), Var(dtype, arrayobj.py:4388), Var($22load_deref.4, arrayobj.py:4389)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:51,351 numba.core.ssa DEBUG on stmt: $38return_value.6 = cast(value=$28call.5) -13:52:51,351 numba.core.ssa DEBUG on stmt: return $38return_value.6 -13:52:51,351 numba.core.ssa DEBUG defs defaultdict(, - {'$22load_deref.4': [(, - 0)], - '$28call.5': [(, - 0)], - '$38return_value.6': [(, - 0)], - '$6load_global.0': [(, - 0)], - 'dtype': [(, - 0)], - 'shape': [(, - 0)]}) -13:52:51,351 numba.core.ssa DEBUG SSA violators -13:52:51,446 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=1) - 2 RESUME(arg=0, lineno=1) - 4 LOAD_GLOBAL(arg=1, lineno=2) - 16 LOAD_FAST(arg=0, lineno=2) - 18 LOAD_CONST(arg=1, lineno=2) - 20 BINARY_SUBSCR(arg=None, lineno=2) - 30 LOAD_FAST(arg=0, lineno=2) - 32 LOAD_CONST(arg=2, lineno=2) - 34 BINARY_SUBSCR(arg=None, lineno=2) - 44 LOAD_GLOBAL(arg=2, lineno=2) - 56 LOAD_METHOD(arg=2, lineno=2) - 78 LOAD_CONST(arg=2, lineno=2) - 80 PRECALL(arg=1, lineno=2) - 84 CALL(arg=1, lineno=2) - 94 BINARY_OP(arg=0, lineno=2) - 98 PRECALL(arg=2, lineno=2) - 102 CALL(arg=2, lineno=2) - 112 GET_ITER(arg=None, lineno=2) -> 114 FOR_ITER(arg=4, lineno=2) - 116 STORE_FAST(arg=2, lineno=2) - 118 LOAD_CONST(arg=1, lineno=3) - 120 STORE_FAST(arg=3, lineno=3) - 122 JUMP_BACKWARD(arg=5, lineno=3) -> 124 LOAD_CONST(arg=0, lineno=4) - 126 RETURN_VALUE(arg=None, lineno=4) -13:52:51,446 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,446 numba.core.byteflow DEBUG stack: [] -13:52:51,446 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=1) -13:52:51,446 numba.core.byteflow DEBUG stack [] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=1) -13:52:51,446 numba.core.byteflow DEBUG stack [] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack [] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2'] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=20, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2', '$const18.3'] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4'] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5'] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=34, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5', '$const32.6'] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=44, inst=LOAD_GLOBAL(arg=2, lineno=2) -13:52:51,446 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7'] -13:52:51,446 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_METHOD(arg=2, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$44load_global.8'] -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10'] -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=1, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=1, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=0, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$84call.12'] -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=98, inst=PRECALL(arg=2, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=102, inst=CALL(arg=2, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=112, inst=GET_ITER(arg=None, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$102call.14'] -13:52:51,447 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$112get_iter.15',), blockstack=(), npush=0)] -13:52:51,447 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,447 numba.core.byteflow DEBUG stack: ['$phi114.0'] -13:52:51,447 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=114 nstack_initial=1) -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=114, inst=FOR_ITER(arg=4, lineno=2) -13:52:51,447 numba.core.byteflow DEBUG stack ['$phi114.0'] -13:52:51,447 numba.core.byteflow DEBUG end state. edges=[Edge(pc=124, stack=(), blockstack=(), npush=0), Edge(pc=116, stack=('$phi114.0', '$114for_iter.2'), blockstack=(), npush=0)] -13:52:51,447 numba.core.byteflow DEBUG pending: deque([State(pc_initial=124 nstack_initial=0), State(pc_initial=116 nstack_initial=2)]) -13:52:51,447 numba.core.byteflow DEBUG stack: [] -13:52:51,447 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=124 nstack_initial=0) -13:52:51,447 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_CONST(arg=0, lineno=4) -13:52:51,448 numba.core.byteflow DEBUG stack [] -13:52:51,448 numba.core.byteflow DEBUG dispatch pc=126, inst=RETURN_VALUE(arg=None, lineno=4) -13:52:51,448 numba.core.byteflow DEBUG stack ['$const124.0'] -13:52:51,448 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,448 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=2)]) -13:52:51,448 numba.core.byteflow DEBUG stack: ['$phi116.0', '$phi116.1'] -13:52:51,448 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=116 nstack_initial=2) -13:52:51,448 numba.core.byteflow DEBUG dispatch pc=116, inst=STORE_FAST(arg=2, lineno=2) -13:52:51,448 numba.core.byteflow DEBUG stack ['$phi116.0', '$phi116.1'] -13:52:51,448 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_CONST(arg=1, lineno=3) -13:52:51,448 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,448 numba.core.byteflow DEBUG dispatch pc=120, inst=STORE_FAST(arg=3, lineno=3) -13:52:51,448 numba.core.byteflow DEBUG stack ['$phi116.0', '$const118.2'] -13:52:51,448 numba.core.byteflow DEBUG dispatch pc=122, inst=JUMP_BACKWARD(arg=5, lineno=3) -13:52:51,448 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,448 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$phi116.0',), blockstack=(), npush=0)] -13:52:51,448 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,448 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,448 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=114 nstack_initial=1): {'$phi114.0'}, - State(pc_initial=116 nstack_initial=2): {'$phi116.1'}, - State(pc_initial=124 nstack_initial=0): set()}) -13:52:51,448 numba.core.byteflow DEBUG defmap: {'$phi114.0': State(pc_initial=0 nstack_initial=0), - '$phi116.1': State(pc_initial=114 nstack_initial=1)} -13:52:51,448 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi116.0', - State(pc_initial=116 nstack_initial=2))}, - '$phi116.0': {('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,448 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,449 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,449 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,449 numba.core.byteflow DEBUG keep phismap: {'$phi114.0': {('$112get_iter.15', State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', State(pc_initial=114 nstack_initial=1))}} -13:52:51,449 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi114.0': '$112get_iter.15'}, - State(pc_initial=114 nstack_initial=1): {'$phi116.1': '$114for_iter.2'}}) -13:52:51,449 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,449 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$sched16.2'}), (18, {'res': '$const18.3'}), (20, {'index': '$const18.3', 'target': '$sched16.2', 'res': '$20binary_subscr.4'}), (22, {}), (24, {}), (26, {}), (28, {}), (30, {'res': '$sched30.5'}), (32, {'res': '$const32.6'}), (34, {'index': '$const32.6', 'target': '$sched30.5', 'res': '$34binary_subscr.7'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {'idx': 1, 'res': '$44load_global.8'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {}), (56, {'item': '$44load_global.8', 'res': '$56load_method.10'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {'res': '$const78.11'}), (80, {}), (82, {}), (84, {'func': '$56load_method.10', 'args': ['$const78.11'], 'kw_names': None, 'res': '$84call.12'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '+', 'lhs': '$34binary_subscr.7', 'rhs': '$84call.12', 'res': '$binop_add94.13'}), (96, {}), (98, {}), (100, {}), (102, {'func': '$4load_global.0', 'args': ['$20binary_subscr.4', '$binop_add94.13'], 'kw_names': None, 'res': '$102call.14'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {'value': '$102call.14', 'res': '$112get_iter.15'})), outgoing_phis={'$phi114.0': '$112get_iter.15'}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$112get_iter.15',)}) -13:52:51,449 numba.core.byteflow DEBUG block_infos State(pc_initial=114 nstack_initial=1): -AdaptBlockInfo(insts=((114, {'iterator': '$phi114.0', 'pair': '$114for_iter.1', 'indval': '$114for_iter.2', 'pred': '$114for_iter.3'}),), outgoing_phis={'$phi116.1': '$114for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={124: (), 116: ('$phi114.0', '$114for_iter.2')}) -13:52:51,449 numba.core.byteflow DEBUG block_infos State(pc_initial=116 nstack_initial=2): -AdaptBlockInfo(insts=((116, {'value': '$phi116.1'}), (118, {'res': '$const118.2'}), (120, {'value': '$const118.2'}), (122, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$phi116.0',)}) -13:52:51,449 numba.core.byteflow DEBUG block_infos State(pc_initial=124 nstack_initial=0): -AdaptBlockInfo(insts=((124, {'res': '$const124.0'}), (126, {'retval': '$const124.0', 'castval': '$126return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,450 numba.core.interpreter DEBUG label 0: - sched = arg(0, name=sched) ['sched'] - rows = arg(1, name=rows) ['rows'] - $4load_global.0 = global(range: ) ['$4load_global.0'] - $const18.3 = const(int, 0) ['$const18.3'] - $20binary_subscr.4 = getitem(value=sched, index=$const18.3, fn=) ['$20binary_subscr.4', '$const18.3', 'sched'] - $const32.6 = const(int, 1) ['$const32.6'] - $34binary_subscr.7 = getitem(value=sched, index=$const32.6, fn=) ['$34binary_subscr.7', '$const32.6', 'sched'] - $44load_global.8 = global(np: ) ['$44load_global.8'] - $56load_method.10 = getattr(value=$44load_global.8, attr=uint8) ['$44load_global.8', '$56load_method.10'] - $const78.11 = const(int, 1) ['$const78.11'] - $84call.12 = call $56load_method.10($const78.11, func=$56load_method.10, args=[Var($const78.11, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$56load_method.10', '$84call.12', '$const78.11'] - $binop_add94.13 = $34binary_subscr.7 + $84call.12 ['$34binary_subscr.7', '$84call.12', '$binop_add94.13'] - $102call.14 = call $4load_global.0($20binary_subscr.4, $binop_add94.13, func=$4load_global.0, args=[Var($20binary_subscr.4, :2), Var($binop_add94.13, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$102call.14', '$20binary_subscr.4', '$4load_global.0', '$binop_add94.13'] - $112get_iter.15 = getiter(value=$102call.14) ['$102call.14', '$112get_iter.15'] - $phi114.0 = $112get_iter.15 ['$112get_iter.15', '$phi114.0'] - jump 114 [] -label 114: - $114for_iter.1 = iternext(value=$phi114.0) ['$114for_iter.1', '$phi114.0'] - $114for_iter.2 = pair_first(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.2'] - $114for_iter.3 = pair_second(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.3'] - $phi116.1 = $114for_iter.2 ['$114for_iter.2', '$phi116.1'] - branch $114for_iter.3, 116, 124 ['$114for_iter.3'] -label 116: - parfor__index_60 = $phi116.1 ['$phi116.1', 'parfor__index_60'] - __sentinel__0 = const(int, 0) ['__sentinel__0'] - jump 114 [] -label 124: - $const124.0 = const(NoneType, None) ['$const124.0'] - $126return_value.1 = cast(value=$const124.0) ['$126return_value.1', '$const124.0'] - return $126return_value.1 ['$126return_value.1'] - -13:52:51,595 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=1) - 2 RESUME(arg=0, lineno=1) - 4 LOAD_GLOBAL(arg=1, lineno=2) - 16 LOAD_FAST(arg=0, lineno=2) - 18 LOAD_CONST(arg=1, lineno=2) - 20 BINARY_SUBSCR(arg=None, lineno=2) - 30 LOAD_FAST(arg=0, lineno=2) - 32 LOAD_CONST(arg=2, lineno=2) - 34 BINARY_SUBSCR(arg=None, lineno=2) - 44 LOAD_GLOBAL(arg=2, lineno=2) - 56 LOAD_METHOD(arg=2, lineno=2) - 78 LOAD_CONST(arg=2, lineno=2) - 80 PRECALL(arg=1, lineno=2) - 84 CALL(arg=1, lineno=2) - 94 BINARY_OP(arg=0, lineno=2) - 98 PRECALL(arg=2, lineno=2) - 102 CALL(arg=2, lineno=2) - 112 GET_ITER(arg=None, lineno=2) -> 114 FOR_ITER(arg=4, lineno=2) - 116 STORE_FAST(arg=2, lineno=2) - 118 LOAD_CONST(arg=1, lineno=3) - 120 STORE_FAST(arg=3, lineno=3) - 122 JUMP_BACKWARD(arg=5, lineno=3) -> 124 LOAD_CONST(arg=0, lineno=4) - 126 RETURN_VALUE(arg=None, lineno=4) -13:52:51,595 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,595 numba.core.byteflow DEBUG stack: [] -13:52:51,595 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,595 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=1) -13:52:51,595 numba.core.byteflow DEBUG stack [] -13:52:51,595 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=1) -13:52:51,595 numba.core.byteflow DEBUG stack [] -13:52:51,595 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=2) -13:52:51,595 numba.core.byteflow DEBUG stack [] -13:52:51,595 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,595 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:51,595 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=2) -13:52:51,595 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=20, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2', '$const18.3'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=34, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5', '$const32.6'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=44, inst=LOAD_GLOBAL(arg=2, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_METHOD(arg=2, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$44load_global.8'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=1, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=1, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=0, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$84call.12'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=98, inst=PRECALL(arg=2, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=102, inst=CALL(arg=2, lineno=2) -13:52:51,596 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,596 numba.core.byteflow DEBUG dispatch pc=112, inst=GET_ITER(arg=None, lineno=2) -13:52:51,597 numba.core.byteflow DEBUG stack ['$102call.14'] -13:52:51,597 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$112get_iter.15',), blockstack=(), npush=0)] -13:52:51,597 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,597 numba.core.byteflow DEBUG stack: ['$phi114.0'] -13:52:51,597 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=114 nstack_initial=1) -13:52:51,597 numba.core.byteflow DEBUG dispatch pc=114, inst=FOR_ITER(arg=4, lineno=2) -13:52:51,597 numba.core.byteflow DEBUG stack ['$phi114.0'] -13:52:51,597 numba.core.byteflow DEBUG end state. edges=[Edge(pc=124, stack=(), blockstack=(), npush=0), Edge(pc=116, stack=('$phi114.0', '$114for_iter.2'), blockstack=(), npush=0)] -13:52:51,597 numba.core.byteflow DEBUG pending: deque([State(pc_initial=124 nstack_initial=0), State(pc_initial=116 nstack_initial=2)]) -13:52:51,597 numba.core.byteflow DEBUG stack: [] -13:52:51,597 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=124 nstack_initial=0) -13:52:51,597 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_CONST(arg=0, lineno=4) -13:52:51,597 numba.core.byteflow DEBUG stack [] -13:52:51,597 numba.core.byteflow DEBUG dispatch pc=126, inst=RETURN_VALUE(arg=None, lineno=4) -13:52:51,597 numba.core.byteflow DEBUG stack ['$const124.0'] -13:52:51,597 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,597 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=2)]) -13:52:51,597 numba.core.byteflow DEBUG stack: ['$phi116.0', '$phi116.1'] -13:52:51,597 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=116 nstack_initial=2) -13:52:51,597 numba.core.byteflow DEBUG dispatch pc=116, inst=STORE_FAST(arg=2, lineno=2) -13:52:51,597 numba.core.byteflow DEBUG stack ['$phi116.0', '$phi116.1'] -13:52:51,597 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_CONST(arg=1, lineno=3) -13:52:51,597 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,597 numba.core.byteflow DEBUG dispatch pc=120, inst=STORE_FAST(arg=3, lineno=3) -13:52:51,597 numba.core.byteflow DEBUG stack ['$phi116.0', '$const118.2'] -13:52:51,597 numba.core.byteflow DEBUG dispatch pc=122, inst=JUMP_BACKWARD(arg=5, lineno=3) -13:52:51,597 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,597 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$phi116.0',), blockstack=(), npush=0)] -13:52:51,597 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,597 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,597 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=114 nstack_initial=1): {'$phi114.0'}, - State(pc_initial=116 nstack_initial=2): {'$phi116.1'}, - State(pc_initial=124 nstack_initial=0): set()}) -13:52:51,598 numba.core.byteflow DEBUG defmap: {'$phi114.0': State(pc_initial=0 nstack_initial=0), - '$phi116.1': State(pc_initial=114 nstack_initial=1)} -13:52:51,598 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi116.0', - State(pc_initial=116 nstack_initial=2))}, - '$phi116.0': {('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,598 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,598 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,598 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,598 numba.core.byteflow DEBUG keep phismap: {'$phi114.0': {('$112get_iter.15', State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', State(pc_initial=114 nstack_initial=1))}} -13:52:51,598 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi114.0': '$112get_iter.15'}, - State(pc_initial=114 nstack_initial=1): {'$phi116.1': '$114for_iter.2'}}) -13:52:51,598 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,598 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$sched16.2'}), (18, {'res': '$const18.3'}), (20, {'index': '$const18.3', 'target': '$sched16.2', 'res': '$20binary_subscr.4'}), (22, {}), (24, {}), (26, {}), (28, {}), (30, {'res': '$sched30.5'}), (32, {'res': '$const32.6'}), (34, {'index': '$const32.6', 'target': '$sched30.5', 'res': '$34binary_subscr.7'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {'idx': 1, 'res': '$44load_global.8'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {}), (56, {'item': '$44load_global.8', 'res': '$56load_method.10'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {'res': '$const78.11'}), (80, {}), (82, {}), (84, {'func': '$56load_method.10', 'args': ['$const78.11'], 'kw_names': None, 'res': '$84call.12'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '+', 'lhs': '$34binary_subscr.7', 'rhs': '$84call.12', 'res': '$binop_add94.13'}), (96, {}), (98, {}), (100, {}), (102, {'func': '$4load_global.0', 'args': ['$20binary_subscr.4', '$binop_add94.13'], 'kw_names': None, 'res': '$102call.14'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {'value': '$102call.14', 'res': '$112get_iter.15'})), outgoing_phis={'$phi114.0': '$112get_iter.15'}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$112get_iter.15',)}) -13:52:51,599 numba.core.byteflow DEBUG block_infos State(pc_initial=114 nstack_initial=1): -AdaptBlockInfo(insts=((114, {'iterator': '$phi114.0', 'pair': '$114for_iter.1', 'indval': '$114for_iter.2', 'pred': '$114for_iter.3'}),), outgoing_phis={'$phi116.1': '$114for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={124: (), 116: ('$phi114.0', '$114for_iter.2')}) -13:52:51,599 numba.core.byteflow DEBUG block_infos State(pc_initial=116 nstack_initial=2): -AdaptBlockInfo(insts=((116, {'value': '$phi116.1'}), (118, {'res': '$const118.2'}), (120, {'value': '$const118.2'}), (122, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$phi116.0',)}) -13:52:51,599 numba.core.byteflow DEBUG block_infos State(pc_initial=124 nstack_initial=0): -AdaptBlockInfo(insts=((124, {'res': '$const124.0'}), (126, {'retval': '$const124.0', 'castval': '$126return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,599 numba.core.interpreter DEBUG label 0: - sched = arg(0, name=sched) ['sched'] - cols = arg(1, name=cols) ['cols'] - $4load_global.0 = global(range: ) ['$4load_global.0'] - $const18.3 = const(int, 0) ['$const18.3'] - $20binary_subscr.4 = getitem(value=sched, index=$const18.3, fn=) ['$20binary_subscr.4', '$const18.3', 'sched'] - $const32.6 = const(int, 1) ['$const32.6'] - $34binary_subscr.7 = getitem(value=sched, index=$const32.6, fn=) ['$34binary_subscr.7', '$const32.6', 'sched'] - $44load_global.8 = global(np: ) ['$44load_global.8'] - $56load_method.10 = getattr(value=$44load_global.8, attr=uint8) ['$44load_global.8', '$56load_method.10'] - $const78.11 = const(int, 1) ['$const78.11'] - $84call.12 = call $56load_method.10($const78.11, func=$56load_method.10, args=[Var($const78.11, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$56load_method.10', '$84call.12', '$const78.11'] - $binop_add94.13 = $34binary_subscr.7 + $84call.12 ['$34binary_subscr.7', '$84call.12', '$binop_add94.13'] - $102call.14 = call $4load_global.0($20binary_subscr.4, $binop_add94.13, func=$4load_global.0, args=[Var($20binary_subscr.4, :2), Var($binop_add94.13, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$102call.14', '$20binary_subscr.4', '$4load_global.0', '$binop_add94.13'] - $112get_iter.15 = getiter(value=$102call.14) ['$102call.14', '$112get_iter.15'] - $phi114.0 = $112get_iter.15 ['$112get_iter.15', '$phi114.0'] - jump 114 [] -label 114: - $114for_iter.1 = iternext(value=$phi114.0) ['$114for_iter.1', '$phi114.0'] - $114for_iter.2 = pair_first(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.2'] - $114for_iter.3 = pair_second(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.3'] - $phi116.1 = $114for_iter.2 ['$114for_iter.2', '$phi116.1'] - branch $114for_iter.3, 116, 124 ['$114for_iter.3'] -label 116: - parfor__index_65 = $phi116.1 ['$phi116.1', 'parfor__index_65'] - __sentinel__0 = const(int, 0) ['__sentinel__0'] - jump 114 [] -label 124: - $const124.0 = const(NoneType, None) ['$const124.0'] - $126return_value.1 = cast(value=$const124.0) ['$126return_value.1', '$const124.0'] - return $126return_value.1 ['$126return_value.1'] - -13:52:51,744 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=1) - 2 RESUME(arg=0, lineno=1) - 4 LOAD_GLOBAL(arg=1, lineno=2) - 16 LOAD_FAST(arg=0, lineno=2) - 18 LOAD_CONST(arg=1, lineno=2) - 20 BINARY_SUBSCR(arg=None, lineno=2) - 30 LOAD_FAST(arg=0, lineno=2) - 32 LOAD_CONST(arg=2, lineno=2) - 34 BINARY_SUBSCR(arg=None, lineno=2) - 44 LOAD_GLOBAL(arg=2, lineno=2) - 56 LOAD_METHOD(arg=2, lineno=2) - 78 LOAD_CONST(arg=2, lineno=2) - 80 PRECALL(arg=1, lineno=2) - 84 CALL(arg=1, lineno=2) - 94 BINARY_OP(arg=0, lineno=2) - 98 PRECALL(arg=2, lineno=2) - 102 CALL(arg=2, lineno=2) - 112 GET_ITER(arg=None, lineno=2) -> 114 FOR_ITER(arg=4, lineno=2) - 116 STORE_FAST(arg=2, lineno=2) - 118 LOAD_CONST(arg=1, lineno=3) - 120 STORE_FAST(arg=3, lineno=3) - 122 JUMP_BACKWARD(arg=5, lineno=3) -> 124 LOAD_CONST(arg=0, lineno=4) - 126 RETURN_VALUE(arg=None, lineno=4) -13:52:51,744 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,744 numba.core.byteflow DEBUG stack: [] -13:52:51,744 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=1) -13:52:51,744 numba.core.byteflow DEBUG stack [] -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=1) -13:52:51,744 numba.core.byteflow DEBUG stack [] -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=2) -13:52:51,744 numba.core.byteflow DEBUG stack [] -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,744 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=2) -13:52:51,744 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2'] -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=20, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,744 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2', '$const18.3'] -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,744 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4'] -13:52:51,744 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=34, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5', '$const32.6'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=44, inst=LOAD_GLOBAL(arg=2, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_METHOD(arg=2, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$44load_global.8'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=1, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=1, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=0, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$84call.12'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=98, inst=PRECALL(arg=2, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=102, inst=CALL(arg=2, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=112, inst=GET_ITER(arg=None, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$102call.14'] -13:52:51,745 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$112get_iter.15',), blockstack=(), npush=0)] -13:52:51,745 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,745 numba.core.byteflow DEBUG stack: ['$phi114.0'] -13:52:51,745 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=114 nstack_initial=1) -13:52:51,745 numba.core.byteflow DEBUG dispatch pc=114, inst=FOR_ITER(arg=4, lineno=2) -13:52:51,745 numba.core.byteflow DEBUG stack ['$phi114.0'] -13:52:51,745 numba.core.byteflow DEBUG end state. edges=[Edge(pc=124, stack=(), blockstack=(), npush=0), Edge(pc=116, stack=('$phi114.0', '$114for_iter.2'), blockstack=(), npush=0)] -13:52:51,746 numba.core.byteflow DEBUG pending: deque([State(pc_initial=124 nstack_initial=0), State(pc_initial=116 nstack_initial=2)]) -13:52:51,746 numba.core.byteflow DEBUG stack: [] -13:52:51,746 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=124 nstack_initial=0) -13:52:51,746 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_CONST(arg=0, lineno=4) -13:52:51,746 numba.core.byteflow DEBUG stack [] -13:52:51,746 numba.core.byteflow DEBUG dispatch pc=126, inst=RETURN_VALUE(arg=None, lineno=4) -13:52:51,746 numba.core.byteflow DEBUG stack ['$const124.0'] -13:52:51,746 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,746 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=2)]) -13:52:51,746 numba.core.byteflow DEBUG stack: ['$phi116.0', '$phi116.1'] -13:52:51,746 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=116 nstack_initial=2) -13:52:51,746 numba.core.byteflow DEBUG dispatch pc=116, inst=STORE_FAST(arg=2, lineno=2) -13:52:51,746 numba.core.byteflow DEBUG stack ['$phi116.0', '$phi116.1'] -13:52:51,746 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_CONST(arg=1, lineno=3) -13:52:51,746 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,746 numba.core.byteflow DEBUG dispatch pc=120, inst=STORE_FAST(arg=3, lineno=3) -13:52:51,746 numba.core.byteflow DEBUG stack ['$phi116.0', '$const118.2'] -13:52:51,746 numba.core.byteflow DEBUG dispatch pc=122, inst=JUMP_BACKWARD(arg=5, lineno=3) -13:52:51,746 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,746 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$phi116.0',), blockstack=(), npush=0)] -13:52:51,746 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,746 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,746 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=114 nstack_initial=1): {'$phi114.0'}, - State(pc_initial=116 nstack_initial=2): {'$phi116.1'}, - State(pc_initial=124 nstack_initial=0): set()}) -13:52:51,746 numba.core.byteflow DEBUG defmap: {'$phi114.0': State(pc_initial=0 nstack_initial=0), - '$phi116.1': State(pc_initial=114 nstack_initial=1)} -13:52:51,746 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi116.0', - State(pc_initial=116 nstack_initial=2))}, - '$phi116.0': {('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,747 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,747 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,747 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,747 numba.core.byteflow DEBUG keep phismap: {'$phi114.0': {('$112get_iter.15', State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', State(pc_initial=114 nstack_initial=1))}} -13:52:51,747 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi114.0': '$112get_iter.15'}, - State(pc_initial=114 nstack_initial=1): {'$phi116.1': '$114for_iter.2'}}) -13:52:51,747 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,747 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$sched16.2'}), (18, {'res': '$const18.3'}), (20, {'index': '$const18.3', 'target': '$sched16.2', 'res': '$20binary_subscr.4'}), (22, {}), (24, {}), (26, {}), (28, {}), (30, {'res': '$sched30.5'}), (32, {'res': '$const32.6'}), (34, {'index': '$const32.6', 'target': '$sched30.5', 'res': '$34binary_subscr.7'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {'idx': 1, 'res': '$44load_global.8'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {}), (56, {'item': '$44load_global.8', 'res': '$56load_method.10'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {'res': '$const78.11'}), (80, {}), (82, {}), (84, {'func': '$56load_method.10', 'args': ['$const78.11'], 'kw_names': None, 'res': '$84call.12'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '+', 'lhs': '$34binary_subscr.7', 'rhs': '$84call.12', 'res': '$binop_add94.13'}), (96, {}), (98, {}), (100, {}), (102, {'func': '$4load_global.0', 'args': ['$20binary_subscr.4', '$binop_add94.13'], 'kw_names': None, 'res': '$102call.14'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {'value': '$102call.14', 'res': '$112get_iter.15'})), outgoing_phis={'$phi114.0': '$112get_iter.15'}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$112get_iter.15',)}) -13:52:51,747 numba.core.byteflow DEBUG block_infos State(pc_initial=114 nstack_initial=1): -AdaptBlockInfo(insts=((114, {'iterator': '$phi114.0', 'pair': '$114for_iter.1', 'indval': '$114for_iter.2', 'pred': '$114for_iter.3'}),), outgoing_phis={'$phi116.1': '$114for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={124: (), 116: ('$phi114.0', '$114for_iter.2')}) -13:52:51,747 numba.core.byteflow DEBUG block_infos State(pc_initial=116 nstack_initial=2): -AdaptBlockInfo(insts=((116, {'value': '$phi116.1'}), (118, {'res': '$const118.2'}), (120, {'value': '$const118.2'}), (122, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$phi116.0',)}) -13:52:51,747 numba.core.byteflow DEBUG block_infos State(pc_initial=124 nstack_initial=0): -AdaptBlockInfo(insts=((124, {'res': '$const124.0'}), (126, {'retval': '$const124.0', 'castval': '$126return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,748 numba.core.interpreter DEBUG label 0: - sched = arg(0, name=sched) ['sched'] - vals = arg(1, name=vals) ['vals'] - $4load_global.0 = global(range: ) ['$4load_global.0'] - $const18.3 = const(int, 0) ['$const18.3'] - $20binary_subscr.4 = getitem(value=sched, index=$const18.3, fn=) ['$20binary_subscr.4', '$const18.3', 'sched'] - $const32.6 = const(int, 1) ['$const32.6'] - $34binary_subscr.7 = getitem(value=sched, index=$const32.6, fn=) ['$34binary_subscr.7', '$const32.6', 'sched'] - $44load_global.8 = global(np: ) ['$44load_global.8'] - $56load_method.10 = getattr(value=$44load_global.8, attr=uint8) ['$44load_global.8', '$56load_method.10'] - $const78.11 = const(int, 1) ['$const78.11'] - $84call.12 = call $56load_method.10($const78.11, func=$56load_method.10, args=[Var($const78.11, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$56load_method.10', '$84call.12', '$const78.11'] - $binop_add94.13 = $34binary_subscr.7 + $84call.12 ['$34binary_subscr.7', '$84call.12', '$binop_add94.13'] - $102call.14 = call $4load_global.0($20binary_subscr.4, $binop_add94.13, func=$4load_global.0, args=[Var($20binary_subscr.4, :2), Var($binop_add94.13, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$102call.14', '$20binary_subscr.4', '$4load_global.0', '$binop_add94.13'] - $112get_iter.15 = getiter(value=$102call.14) ['$102call.14', '$112get_iter.15'] - $phi114.0 = $112get_iter.15 ['$112get_iter.15', '$phi114.0'] - jump 114 [] -label 114: - $114for_iter.1 = iternext(value=$phi114.0) ['$114for_iter.1', '$phi114.0'] - $114for_iter.2 = pair_first(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.2'] - $114for_iter.3 = pair_second(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.3'] - $phi116.1 = $114for_iter.2 ['$114for_iter.2', '$phi116.1'] - branch $114for_iter.3, 116, 124 ['$114for_iter.3'] -label 116: - parfor__index_70 = $phi116.1 ['$phi116.1', 'parfor__index_70'] - __sentinel__0 = const(int, 0) ['__sentinel__0'] - jump 114 [] -label 124: - $const124.0 = const(NoneType, None) ['$const124.0'] - $126return_value.1 = cast(value=$const124.0) ['$126return_value.1', '$const124.0'] - return $126return_value.1 ['$126return_value.1'] - -13:52:51,900 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=1) - 2 RESUME(arg=0, lineno=1) - 4 LOAD_GLOBAL(arg=1, lineno=2) - 16 LOAD_FAST(arg=0, lineno=2) - 18 LOAD_CONST(arg=1, lineno=2) - 20 BINARY_SUBSCR(arg=None, lineno=2) - 30 LOAD_FAST(arg=0, lineno=2) - 32 LOAD_CONST(arg=2, lineno=2) - 34 BINARY_SUBSCR(arg=None, lineno=2) - 44 LOAD_GLOBAL(arg=2, lineno=2) - 56 LOAD_METHOD(arg=2, lineno=2) - 78 LOAD_CONST(arg=2, lineno=2) - 80 PRECALL(arg=1, lineno=2) - 84 CALL(arg=1, lineno=2) - 94 BINARY_OP(arg=0, lineno=2) - 98 PRECALL(arg=2, lineno=2) - 102 CALL(arg=2, lineno=2) - 112 GET_ITER(arg=None, lineno=2) -> 114 FOR_ITER(arg=4, lineno=2) - 116 STORE_FAST(arg=2, lineno=2) - 118 LOAD_CONST(arg=1, lineno=3) - 120 STORE_FAST(arg=3, lineno=3) - 122 JUMP_BACKWARD(arg=5, lineno=3) -> 124 LOAD_CONST(arg=0, lineno=4) - 126 RETURN_VALUE(arg=None, lineno=4) -13:52:51,900 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:51,900 numba.core.byteflow DEBUG stack: [] -13:52:51,900 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=1) -13:52:51,900 numba.core.byteflow DEBUG stack [] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=1) -13:52:51,900 numba.core.byteflow DEBUG stack [] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack [] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2'] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=20, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$sched16.2', '$const18.3'] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_FAST(arg=0, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4'] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5'] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=34, inst=BINARY_SUBSCR(arg=None, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$sched30.5', '$const32.6'] -13:52:51,900 numba.core.byteflow DEBUG dispatch pc=44, inst=LOAD_GLOBAL(arg=2, lineno=2) -13:52:51,900 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=56, inst=LOAD_METHOD(arg=2, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$44load_global.8'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=78, inst=LOAD_CONST(arg=2, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=80, inst=PRECALL(arg=1, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=84, inst=CALL(arg=1, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$null$56.9', '$56load_method.10', '$const78.11'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=0, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$34binary_subscr.7', '$84call.12'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=98, inst=PRECALL(arg=2, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=102, inst=CALL(arg=2, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0', '$20binary_subscr.4', '$binop_add94.13'] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=112, inst=GET_ITER(arg=None, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$102call.14'] -13:52:51,901 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$112get_iter.15',), blockstack=(), npush=0)] -13:52:51,901 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,901 numba.core.byteflow DEBUG stack: ['$phi114.0'] -13:52:51,901 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=114 nstack_initial=1) -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=114, inst=FOR_ITER(arg=4, lineno=2) -13:52:51,901 numba.core.byteflow DEBUG stack ['$phi114.0'] -13:52:51,901 numba.core.byteflow DEBUG end state. edges=[Edge(pc=124, stack=(), blockstack=(), npush=0), Edge(pc=116, stack=('$phi114.0', '$114for_iter.2'), blockstack=(), npush=0)] -13:52:51,901 numba.core.byteflow DEBUG pending: deque([State(pc_initial=124 nstack_initial=0), State(pc_initial=116 nstack_initial=2)]) -13:52:51,901 numba.core.byteflow DEBUG stack: [] -13:52:51,901 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=124 nstack_initial=0) -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_CONST(arg=0, lineno=4) -13:52:51,901 numba.core.byteflow DEBUG stack [] -13:52:51,901 numba.core.byteflow DEBUG dispatch pc=126, inst=RETURN_VALUE(arg=None, lineno=4) -13:52:51,902 numba.core.byteflow DEBUG stack ['$const124.0'] -13:52:51,902 numba.core.byteflow DEBUG end state. edges=[] -13:52:51,902 numba.core.byteflow DEBUG pending: deque([State(pc_initial=116 nstack_initial=2)]) -13:52:51,902 numba.core.byteflow DEBUG stack: ['$phi116.0', '$phi116.1'] -13:52:51,902 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=116 nstack_initial=2) -13:52:51,902 numba.core.byteflow DEBUG dispatch pc=116, inst=STORE_FAST(arg=2, lineno=2) -13:52:51,902 numba.core.byteflow DEBUG stack ['$phi116.0', '$phi116.1'] -13:52:51,902 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_CONST(arg=1, lineno=3) -13:52:51,902 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,902 numba.core.byteflow DEBUG dispatch pc=120, inst=STORE_FAST(arg=3, lineno=3) -13:52:51,902 numba.core.byteflow DEBUG stack ['$phi116.0', '$const118.2'] -13:52:51,902 numba.core.byteflow DEBUG dispatch pc=122, inst=JUMP_BACKWARD(arg=5, lineno=3) -13:52:51,902 numba.core.byteflow DEBUG stack ['$phi116.0'] -13:52:51,902 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=('$phi116.0',), blockstack=(), npush=0)] -13:52:51,902 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=1)]) -13:52:51,902 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:51,902 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=114 nstack_initial=1): {'$phi114.0'}, - State(pc_initial=116 nstack_initial=2): {'$phi116.1'}, - State(pc_initial=124 nstack_initial=0): set()}) -13:52:51,902 numba.core.byteflow DEBUG defmap: {'$phi114.0': State(pc_initial=0 nstack_initial=0), - '$phi116.1': State(pc_initial=114 nstack_initial=1)} -13:52:51,902 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi116.0', - State(pc_initial=116 nstack_initial=2))}, - '$phi116.0': {('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,902 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0)), - ('$phi114.0', - State(pc_initial=114 nstack_initial=1))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,903 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,903 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi114.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.0': {('$112get_iter.15', - State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', - State(pc_initial=114 nstack_initial=1))}}) -13:52:51,903 numba.core.byteflow DEBUG keep phismap: {'$phi114.0': {('$112get_iter.15', State(pc_initial=0 nstack_initial=0))}, - '$phi116.1': {('$114for_iter.2', State(pc_initial=114 nstack_initial=1))}} -13:52:51,903 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi114.0': '$112get_iter.15'}, - State(pc_initial=114 nstack_initial=1): {'$phi116.1': '$114for_iter.2'}}) -13:52:51,903 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:51,903 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'res': '$sched16.2'}), (18, {'res': '$const18.3'}), (20, {'index': '$const18.3', 'target': '$sched16.2', 'res': '$20binary_subscr.4'}), (22, {}), (24, {}), (26, {}), (28, {}), (30, {'res': '$sched30.5'}), (32, {'res': '$const32.6'}), (34, {'index': '$const32.6', 'target': '$sched30.5', 'res': '$34binary_subscr.7'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {'idx': 1, 'res': '$44load_global.8'}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {}), (56, {'item': '$44load_global.8', 'res': '$56load_method.10'}), (58, {}), (60, {}), (62, {}), (64, {}), (66, {}), (68, {}), (70, {}), (72, {}), (74, {}), (76, {}), (78, {'res': '$const78.11'}), (80, {}), (82, {}), (84, {'func': '$56load_method.10', 'args': ['$const78.11'], 'kw_names': None, 'res': '$84call.12'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '+', 'lhs': '$34binary_subscr.7', 'rhs': '$84call.12', 'res': '$binop_add94.13'}), (96, {}), (98, {}), (100, {}), (102, {'func': '$4load_global.0', 'args': ['$20binary_subscr.4', '$binop_add94.13'], 'kw_names': None, 'res': '$102call.14'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {'value': '$102call.14', 'res': '$112get_iter.15'})), outgoing_phis={'$phi114.0': '$112get_iter.15'}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$112get_iter.15',)}) -13:52:51,903 numba.core.byteflow DEBUG block_infos State(pc_initial=114 nstack_initial=1): -AdaptBlockInfo(insts=((114, {'iterator': '$phi114.0', 'pair': '$114for_iter.1', 'indval': '$114for_iter.2', 'pred': '$114for_iter.3'}),), outgoing_phis={'$phi116.1': '$114for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={124: (), 116: ('$phi114.0', '$114for_iter.2')}) -13:52:51,903 numba.core.byteflow DEBUG block_infos State(pc_initial=116 nstack_initial=2): -AdaptBlockInfo(insts=((116, {'value': '$phi116.1'}), (118, {'res': '$const118.2'}), (120, {'value': '$const118.2'}), (122, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: ('$phi116.0',)}) -13:52:51,903 numba.core.byteflow DEBUG block_infos State(pc_initial=124 nstack_initial=0): -AdaptBlockInfo(insts=((124, {'res': '$const124.0'}), (126, {'retval': '$const124.0', 'castval': '$126return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:51,904 numba.core.interpreter DEBUG label 0: - sched = arg(0, name=sched) ['sched'] - dists = arg(1, name=dists) ['dists'] - $4load_global.0 = global(range: ) ['$4load_global.0'] - $const18.3 = const(int, 0) ['$const18.3'] - $20binary_subscr.4 = getitem(value=sched, index=$const18.3, fn=) ['$20binary_subscr.4', '$const18.3', 'sched'] - $const32.6 = const(int, 1) ['$const32.6'] - $34binary_subscr.7 = getitem(value=sched, index=$const32.6, fn=) ['$34binary_subscr.7', '$const32.6', 'sched'] - $44load_global.8 = global(np: ) ['$44load_global.8'] - $56load_method.10 = getattr(value=$44load_global.8, attr=uint8) ['$44load_global.8', '$56load_method.10'] - $const78.11 = const(int, 1) ['$const78.11'] - $84call.12 = call $56load_method.10($const78.11, func=$56load_method.10, args=[Var($const78.11, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$56load_method.10', '$84call.12', '$const78.11'] - $binop_add94.13 = $34binary_subscr.7 + $84call.12 ['$34binary_subscr.7', '$84call.12', '$binop_add94.13'] - $102call.14 = call $4load_global.0($20binary_subscr.4, $binop_add94.13, func=$4load_global.0, args=[Var($20binary_subscr.4, :2), Var($binop_add94.13, :2)], kws=(), vararg=None, varkwarg=None, target=None) ['$102call.14', '$20binary_subscr.4', '$4load_global.0', '$binop_add94.13'] - $112get_iter.15 = getiter(value=$102call.14) ['$102call.14', '$112get_iter.15'] - $phi114.0 = $112get_iter.15 ['$112get_iter.15', '$phi114.0'] - jump 114 [] -label 114: - $114for_iter.1 = iternext(value=$phi114.0) ['$114for_iter.1', '$phi114.0'] - $114for_iter.2 = pair_first(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.2'] - $114for_iter.3 = pair_second(value=$114for_iter.1) ['$114for_iter.1', '$114for_iter.3'] - $phi116.1 = $114for_iter.2 ['$114for_iter.2', '$phi116.1'] - branch $114for_iter.3, 116, 124 ['$114for_iter.3'] -label 116: - parfor__index_75 = $phi116.1 ['$phi116.1', 'parfor__index_75'] - __sentinel__0 = const(int, 0) ['__sentinel__0'] - jump 114 [] -label 124: - $const124.0 = const(NoneType, None) ['$const124.0'] - $126return_value.1 = cast(value=$const124.0) ['$126return_value.1', '$const124.0'] - return $126return_value.1 ['$126return_value.1'] - -13:52:52,579 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=22) - 2 RESUME(arg=0, lineno=22) - 4 LOAD_CONST(arg=1, lineno=29) - 6 STORE_FAST(arg=2, lineno=29) - 8 LOAD_GLOBAL(arg=1, lineno=30) - 20 LOAD_FAST(arg=0, lineno=30) - 22 LOAD_ATTR(arg=1, lineno=30) - 32 LOAD_CONST(arg=2, lineno=30) - 34 BINARY_SUBSCR(arg=None, lineno=30) - 44 PRECALL(arg=1, lineno=30) - 48 CALL(arg=1, lineno=30) - 58 GET_ITER(arg=None, lineno=30) -> 60 FOR_ITER(arg=25, lineno=30) - 62 STORE_FAST(arg=3, lineno=30) - 64 LOAD_FAST(arg=2, lineno=31) - 66 LOAD_FAST(arg=0, lineno=31) - 68 LOAD_FAST(arg=3, lineno=31) - 70 BINARY_SUBSCR(arg=None, lineno=31) - 80 LOAD_FAST(arg=1, lineno=31) - 82 LOAD_FAST(arg=3, lineno=31) - 84 BINARY_SUBSCR(arg=None, lineno=31) - 94 BINARY_OP(arg=10, lineno=31) - 98 LOAD_CONST(arg=3, lineno=31) - 100 BINARY_OP(arg=8, lineno=31) - 104 BINARY_OP(arg=13, lineno=31) - 108 STORE_FAST(arg=2, lineno=31) - 110 JUMP_BACKWARD(arg=26, lineno=31) -> 112 LOAD_GLOBAL(arg=5, lineno=32) - 124 LOAD_ATTR(arg=3, lineno=32) - 134 LOAD_FAST(arg=2, lineno=32) - 136 PRECALL(arg=1, lineno=32) - 140 CALL(arg=1, lineno=32) - 150 RETURN_VALUE(arg=None, lineno=32) -13:52:52,580 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:52,580 numba.core.byteflow DEBUG stack: [] -13:52:52,580 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=22) -13:52:52,580 numba.core.byteflow DEBUG stack [] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=22) -13:52:52,580 numba.core.byteflow DEBUG stack [] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_CONST(arg=1, lineno=29) -13:52:52,580 numba.core.byteflow DEBUG stack [] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=6, inst=STORE_FAST(arg=2, lineno=29) -13:52:52,580 numba.core.byteflow DEBUG stack ['$const4.0'] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_GLOBAL(arg=1, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack [] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=0, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1'] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_ATTR(arg=1, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$x20.3'] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$22load_attr.4'] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=34, inst=BINARY_SUBSCR(arg=None, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$22load_attr.4', '$const32.5'] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=44, inst=PRECALL(arg=1, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$34binary_subscr.6'] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=48, inst=CALL(arg=1, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack ['$null$8.2', '$8load_global.1', '$34binary_subscr.6'] -13:52:52,580 numba.core.byteflow DEBUG dispatch pc=58, inst=GET_ITER(arg=None, lineno=30) -13:52:52,580 numba.core.byteflow DEBUG stack ['$48call.7'] -13:52:52,581 numba.core.byteflow DEBUG end state. edges=[Edge(pc=60, stack=('$58get_iter.8',), blockstack=(), npush=0)] -13:52:52,581 numba.core.byteflow DEBUG pending: deque([State(pc_initial=60 nstack_initial=1)]) -13:52:52,581 numba.core.byteflow DEBUG stack: ['$phi60.0'] -13:52:52,581 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=60 nstack_initial=1) -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=60, inst=FOR_ITER(arg=25, lineno=30) -13:52:52,581 numba.core.byteflow DEBUG stack ['$phi60.0'] -13:52:52,581 numba.core.byteflow DEBUG end state. edges=[Edge(pc=112, stack=(), blockstack=(), npush=0), Edge(pc=62, stack=('$phi60.0', '$60for_iter.2'), blockstack=(), npush=0)] -13:52:52,581 numba.core.byteflow DEBUG pending: deque([State(pc_initial=112 nstack_initial=0), State(pc_initial=62 nstack_initial=2)]) -13:52:52,581 numba.core.byteflow DEBUG stack: [] -13:52:52,581 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=112 nstack_initial=0) -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=112, inst=LOAD_GLOBAL(arg=5, lineno=32) -13:52:52,581 numba.core.byteflow DEBUG stack [] -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=124, inst=LOAD_ATTR(arg=3, lineno=32) -13:52:52,581 numba.core.byteflow DEBUG stack ['$null$112.1', '$112load_global.0'] -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=134, inst=LOAD_FAST(arg=2, lineno=32) -13:52:52,581 numba.core.byteflow DEBUG stack ['$null$112.1', '$124load_attr.2'] -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=136, inst=PRECALL(arg=1, lineno=32) -13:52:52,581 numba.core.byteflow DEBUG stack ['$null$112.1', '$124load_attr.2', '$result134.3'] -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=140, inst=CALL(arg=1, lineno=32) -13:52:52,581 numba.core.byteflow DEBUG stack ['$null$112.1', '$124load_attr.2', '$result134.3'] -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=150, inst=RETURN_VALUE(arg=None, lineno=32) -13:52:52,581 numba.core.byteflow DEBUG stack ['$140call.4'] -13:52:52,581 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,581 numba.core.byteflow DEBUG pending: deque([State(pc_initial=62 nstack_initial=2)]) -13:52:52,581 numba.core.byteflow DEBUG stack: ['$phi62.0', '$phi62.1'] -13:52:52,581 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=62 nstack_initial=2) -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=62, inst=STORE_FAST(arg=3, lineno=30) -13:52:52,581 numba.core.byteflow DEBUG stack ['$phi62.0', '$phi62.1'] -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=64, inst=LOAD_FAST(arg=2, lineno=31) -13:52:52,581 numba.core.byteflow DEBUG stack ['$phi62.0'] -13:52:52,581 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_FAST(arg=0, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=68, inst=LOAD_FAST(arg=3, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$x66.3'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=70, inst=BINARY_SUBSCR(arg=None, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$x66.3', '$i68.4'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=80, inst=LOAD_FAST(arg=1, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=82, inst=LOAD_FAST(arg=3, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5', '$y80.6'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=84, inst=BINARY_SUBSCR(arg=None, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5', '$y80.6', '$i82.7'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=94, inst=BINARY_OP(arg=10, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$70binary_subscr.5', '$84binary_subscr.8'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=98, inst=LOAD_CONST(arg=3, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$binop_sub94.9'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=100, inst=BINARY_OP(arg=8, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$binop_sub94.9', '$const98.10'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=104, inst=BINARY_OP(arg=13, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$result64.2', '$binop_pow100.11'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=108, inst=STORE_FAST(arg=2, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0', '$binop_iadd104.12'] -13:52:52,582 numba.core.byteflow DEBUG dispatch pc=110, inst=JUMP_BACKWARD(arg=26, lineno=31) -13:52:52,582 numba.core.byteflow DEBUG stack ['$phi62.0'] -13:52:52,582 numba.core.byteflow DEBUG end state. edges=[Edge(pc=60, stack=('$phi62.0',), blockstack=(), npush=0)] -13:52:52,582 numba.core.byteflow DEBUG pending: deque([State(pc_initial=60 nstack_initial=1)]) -13:52:52,582 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:52,582 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=60 nstack_initial=1): {'$phi60.0'}, - State(pc_initial=62 nstack_initial=2): {'$phi62.1'}, - State(pc_initial=112 nstack_initial=0): set()}) -13:52:52,583 numba.core.byteflow DEBUG defmap: {'$phi60.0': State(pc_initial=0 nstack_initial=0), - '$phi62.1': State(pc_initial=60 nstack_initial=1)} -13:52:52,583 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi62.0', State(pc_initial=62 nstack_initial=2))}, - '$phi62.0': {('$phi60.0', State(pc_initial=60 nstack_initial=1))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:52,583 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi60.0', State(pc_initial=60 nstack_initial=1))}, - '$phi62.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:52,583 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:52,583 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi60.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.0': {('$58get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', - State(pc_initial=60 nstack_initial=1))}}) -13:52:52,583 numba.core.byteflow DEBUG keep phismap: {'$phi60.0': {('$58get_iter.8', State(pc_initial=0 nstack_initial=0))}, - '$phi62.1': {('$60for_iter.2', State(pc_initial=60 nstack_initial=1))}} -13:52:52,583 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi60.0': '$58get_iter.8'}, - State(pc_initial=60 nstack_initial=1): {'$phi62.1': '$60for_iter.2'}}) -13:52:52,583 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:52,583 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$const4.0'}), (6, {'value': '$const4.0'}), (8, {'idx': 0, 'res': '$8load_global.1'}), (10, {}), (12, {}), (14, {}), (16, {}), (18, {}), (20, {'res': '$x20.3'}), (22, {'item': '$x20.3', 'res': '$22load_attr.4'}), (24, {}), (26, {}), (28, {}), (30, {}), (32, {'res': '$const32.5'}), (34, {'index': '$const32.5', 'target': '$22load_attr.4', 'res': '$34binary_subscr.6'}), (36, {}), (38, {}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {'func': '$8load_global.1', 'args': ['$34binary_subscr.6'], 'kw_names': None, 'res': '$48call.7'}), (50, {}), (52, {}), (54, {}), (56, {}), (58, {'value': '$48call.7', 'res': '$58get_iter.8'})), outgoing_phis={'$phi60.0': '$58get_iter.8'}, blockstack=(), active_try_block=None, outgoing_edgepushed={60: ('$58get_iter.8',)}) -13:52:52,584 numba.core.byteflow DEBUG block_infos State(pc_initial=60 nstack_initial=1): -AdaptBlockInfo(insts=((60, {'iterator': '$phi60.0', 'pair': '$60for_iter.1', 'indval': '$60for_iter.2', 'pred': '$60for_iter.3'}),), outgoing_phis={'$phi62.1': '$60for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={112: (), 62: ('$phi60.0', '$60for_iter.2')}) -13:52:52,584 numba.core.byteflow DEBUG block_infos State(pc_initial=62 nstack_initial=2): -AdaptBlockInfo(insts=((62, {'value': '$phi62.1'}), (64, {'res': '$result64.2'}), (66, {'res': '$x66.3'}), (68, {'res': '$i68.4'}), (70, {'index': '$i68.4', 'target': '$x66.3', 'res': '$70binary_subscr.5'}), (72, {}), (74, {}), (76, {}), (78, {}), (80, {'res': '$y80.6'}), (82, {'res': '$i82.7'}), (84, {'index': '$i82.7', 'target': '$y80.6', 'res': '$84binary_subscr.8'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {'op': '-', 'lhs': '$70binary_subscr.5', 'rhs': '$84binary_subscr.8', 'res': '$binop_sub94.9'}), (96, {}), (98, {'res': '$const98.10'}), (100, {'op': '**', 'lhs': '$binop_sub94.9', 'rhs': '$const98.10', 'res': '$binop_pow100.11'}), (102, {}), (104, {'op': '+=', 'lhs': '$result64.2', 'rhs': '$binop_pow100.11', 'res': '$binop_iadd104.12'}), (106, {}), (108, {'value': '$binop_iadd104.12'}), (110, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={60: ('$phi62.0',)}) -13:52:52,584 numba.core.byteflow DEBUG block_infos State(pc_initial=112 nstack_initial=0): -AdaptBlockInfo(insts=((112, {'idx': 2, 'res': '$112load_global.0'}), (114, {}), (116, {}), (118, {}), (120, {}), (122, {}), (124, {'item': '$112load_global.0', 'res': '$124load_attr.2'}), (126, {}), (128, {}), (130, {}), (132, {}), (134, {'res': '$result134.3'}), (136, {}), (138, {}), (140, {'func': '$124load_attr.2', 'args': ['$result134.3'], 'kw_names': None, 'res': '$140call.4'}), (142, {}), (144, {}), (146, {}), (148, {}), (150, {'retval': '$140call.4', 'castval': '$150return_value.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,584 numba.core.interpreter DEBUG label 0: - x = arg(0, name=x) ['x'] - y = arg(1, name=y) ['y'] - result = const(float, 0.0) ['result'] - $8load_global.1 = global(range: ) ['$8load_global.1'] - $22load_attr.4 = getattr(value=x, attr=shape) ['$22load_attr.4', 'x'] - $const32.5 = const(int, 0) ['$const32.5'] - $34binary_subscr.6 = getitem(value=$22load_attr.4, index=$const32.5, fn=) ['$22load_attr.4', '$34binary_subscr.6', '$const32.5'] - $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) ['$34binary_subscr.6', '$48call.7', '$8load_global.1'] - $58get_iter.8 = getiter(value=$48call.7) ['$48call.7', '$58get_iter.8'] - $phi60.0 = $58get_iter.8 ['$58get_iter.8', '$phi60.0'] - jump 60 [] -label 60: - $60for_iter.1 = iternext(value=$phi60.0) ['$60for_iter.1', '$phi60.0'] - $60for_iter.2 = pair_first(value=$60for_iter.1) ['$60for_iter.1', '$60for_iter.2'] - $60for_iter.3 = pair_second(value=$60for_iter.1) ['$60for_iter.1', '$60for_iter.3'] - $phi62.1 = $60for_iter.2 ['$60for_iter.2', '$phi62.1'] - branch $60for_iter.3, 62, 112 ['$60for_iter.3'] -label 62: - i = $phi62.1 ['$phi62.1', 'i'] - $70binary_subscr.5 = getitem(value=x, index=i, fn=) ['$70binary_subscr.5', 'i', 'x'] - $84binary_subscr.8 = getitem(value=y, index=i, fn=) ['$84binary_subscr.8', 'i', 'y'] - $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 ['$70binary_subscr.5', '$84binary_subscr.8', '$binop_sub94.9'] - $const98.10 = const(int, 2) ['$const98.10'] - $binop_pow100.11 = $binop_sub94.9 ** $const98.10 ['$binop_pow100.11', '$binop_sub94.9', '$const98.10'] - $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) ['$binop_iadd104.12', '$binop_pow100.11', 'result'] - result = $binop_iadd104.12 ['$binop_iadd104.12', 'result'] - jump 60 [] -label 112: - $112load_global.0 = global(np: ) ['$112load_global.0'] - $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) ['$112load_global.0', '$124load_attr.2'] - $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) ['$124load_attr.2', '$140call.4', 'result'] - $150return_value.5 = cast(value=$140call.4) ['$140call.4', '$150return_value.5'] - return $150return_value.5 ['$150return_value.5'] - -13:52:52,591 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:52,591 numba.core.ssa DEBUG Running -13:52:52,591 numba.core.ssa DEBUG on stmt: x = arg(0, name=x) -13:52:52,591 numba.core.ssa DEBUG on stmt: y = arg(1, name=y) -13:52:52,591 numba.core.ssa DEBUG on stmt: result = const(float, 0.0) -13:52:52,591 numba.core.ssa DEBUG on stmt: $8load_global.1 = global(range: ) -13:52:52,591 numba.core.ssa DEBUG on stmt: $22load_attr.4 = getattr(value=x, attr=shape) -13:52:52,591 numba.core.ssa DEBUG on stmt: $const32.5 = const(int, 0) -13:52:52,591 numba.core.ssa DEBUG on stmt: $34binary_subscr.6 = static_getitem(value=$22load_attr.4, index=0, index_var=$const32.5, fn=) -13:52:52,591 numba.core.ssa DEBUG on stmt: $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,591 numba.core.ssa DEBUG on stmt: $58get_iter.8 = getiter(value=$48call.7) -13:52:52,591 numba.core.ssa DEBUG on stmt: $phi60.0 = $58get_iter.8 -13:52:52,591 numba.core.ssa DEBUG on stmt: jump 60 -13:52:52,592 numba.core.ssa DEBUG ==== SSA block analysis pass on 60 -13:52:52,592 numba.core.ssa DEBUG Running -13:52:52,592 numba.core.ssa DEBUG on stmt: $60for_iter.1 = iternext(value=$phi60.0) -13:52:52,592 numba.core.ssa DEBUG on stmt: $60for_iter.2 = pair_first(value=$60for_iter.1) -13:52:52,592 numba.core.ssa DEBUG on stmt: $60for_iter.3 = pair_second(value=$60for_iter.1) -13:52:52,592 numba.core.ssa DEBUG on stmt: $phi62.1 = $60for_iter.2 -13:52:52,592 numba.core.ssa DEBUG on stmt: branch $60for_iter.3, 62, 112 -13:52:52,592 numba.core.ssa DEBUG ==== SSA block analysis pass on 62 -13:52:52,592 numba.core.ssa DEBUG Running -13:52:52,592 numba.core.ssa DEBUG on stmt: i = $phi62.1 -13:52:52,592 numba.core.ssa DEBUG on stmt: $70binary_subscr.5 = getitem(value=x, index=i, fn=) -13:52:52,592 numba.core.ssa DEBUG on stmt: $84binary_subscr.8 = getitem(value=y, index=i, fn=) -13:52:52,592 numba.core.ssa DEBUG on stmt: $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 -13:52:52,592 numba.core.ssa DEBUG on stmt: $const98.10 = const(int, 2) -13:52:52,592 numba.core.ssa DEBUG on stmt: $binop_pow100.11 = $binop_sub94.9 ** $const98.10 -13:52:52,592 numba.core.ssa DEBUG on stmt: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,592 numba.core.ssa DEBUG on stmt: result = $binop_iadd104.12 -13:52:52,592 numba.core.ssa DEBUG on stmt: jump 60 -13:52:52,592 numba.core.ssa DEBUG ==== SSA block analysis pass on 112 -13:52:52,592 numba.core.ssa DEBUG Running -13:52:52,592 numba.core.ssa DEBUG on stmt: $112load_global.0 = global(np: ) -13:52:52,592 numba.core.ssa DEBUG on stmt: $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) -13:52:52,592 numba.core.ssa DEBUG on stmt: $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,592 numba.core.ssa DEBUG on stmt: $150return_value.5 = cast(value=$140call.4) -13:52:52,592 numba.core.ssa DEBUG on stmt: return $150return_value.5 -13:52:52,593 numba.core.ssa DEBUG defs defaultdict(, - {'$112load_global.0': [(, - 112)], - '$124load_attr.2': [(, - 112)], - '$140call.4': [(, - 112)], - '$150return_value.5': [(, - 112)], - '$22load_attr.4': [(, - 0)], - '$34binary_subscr.6': [(, - 0)], - '$48call.7': [(, - 0)], - '$58get_iter.8': [(, - 0)], - '$60for_iter.1': [(, - 60)], - '$60for_iter.2': [(, - 60)], - '$60for_iter.3': [(, - 60)], - '$70binary_subscr.5': [(, - 62)], - '$84binary_subscr.8': [(, - 62)], - '$8load_global.1': [(, - 0)], - '$binop_iadd104.12': [(, - 62)], - '$binop_pow100.11': [(, - 62)], - '$binop_sub94.9': [(, - 62)], - '$const32.5': [(, - 0)], - '$const98.10': [(, - 62)], - '$phi60.0': [(, - 0)], - '$phi62.1': [(, - 60)], - 'i': [(, 62)], - 'result': [(, - 0), - (, - 62)], - 'x': [(, 0)], - 'y': [(, 0)]}) -13:52:52,593 numba.core.ssa DEBUG SSA violators -13:52:52,593 numba.core.ssa DEBUG Fix SSA violator on var result -13:52:52,593 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,593 numba.core.ssa DEBUG Running -13:52:52,593 numba.core.ssa DEBUG on stmt: x = arg(0, name=x) -13:52:52,593 numba.core.ssa DEBUG on stmt: y = arg(1, name=y) -13:52:52,593 numba.core.ssa DEBUG on stmt: result = const(float, 0.0) -13:52:52,593 numba.core.ssa DEBUG first assign: result -13:52:52,593 numba.core.ssa DEBUG replaced with: result = const(float, 0.0) -13:52:52,593 numba.core.ssa DEBUG on stmt: $8load_global.1 = global(range: ) -13:52:52,593 numba.core.ssa DEBUG on stmt: $22load_attr.4 = getattr(value=x, attr=shape) -13:52:52,593 numba.core.ssa DEBUG on stmt: $const32.5 = const(int, 0) -13:52:52,593 numba.core.ssa DEBUG on stmt: $34binary_subscr.6 = static_getitem(value=$22load_attr.4, index=0, index_var=$const32.5, fn=) -13:52:52,593 numba.core.ssa DEBUG on stmt: $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,593 numba.core.ssa DEBUG on stmt: $58get_iter.8 = getiter(value=$48call.7) -13:52:52,593 numba.core.ssa DEBUG on stmt: $phi60.0 = $58get_iter.8 -13:52:52,593 numba.core.ssa DEBUG on stmt: jump 60 -13:52:52,593 numba.core.ssa DEBUG ==== SSA block rewrite pass on 60 -13:52:52,594 numba.core.ssa DEBUG Running -13:52:52,594 numba.core.ssa DEBUG on stmt: $60for_iter.1 = iternext(value=$phi60.0) -13:52:52,594 numba.core.ssa DEBUG on stmt: $60for_iter.2 = pair_first(value=$60for_iter.1) -13:52:52,594 numba.core.ssa DEBUG on stmt: $60for_iter.3 = pair_second(value=$60for_iter.1) -13:52:52,594 numba.core.ssa DEBUG on stmt: $phi62.1 = $60for_iter.2 -13:52:52,594 numba.core.ssa DEBUG on stmt: branch $60for_iter.3, 62, 112 -13:52:52,594 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,594 numba.core.ssa DEBUG Running -13:52:52,594 numba.core.ssa DEBUG on stmt: i = $phi62.1 -13:52:52,594 numba.core.ssa DEBUG on stmt: $70binary_subscr.5 = getitem(value=x, index=i, fn=) -13:52:52,594 numba.core.ssa DEBUG on stmt: $84binary_subscr.8 = getitem(value=y, index=i, fn=) -13:52:52,594 numba.core.ssa DEBUG on stmt: $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 -13:52:52,594 numba.core.ssa DEBUG on stmt: $const98.10 = const(int, 2) -13:52:52,594 numba.core.ssa DEBUG on stmt: $binop_pow100.11 = $binop_sub94.9 ** $const98.10 -13:52:52,594 numba.core.ssa DEBUG on stmt: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,594 numba.core.ssa DEBUG on stmt: result = $binop_iadd104.12 -13:52:52,594 numba.core.ssa DEBUG replaced with: result.1 = $binop_iadd104.12 -13:52:52,594 numba.core.ssa DEBUG on stmt: jump 60 -13:52:52,594 numba.core.ssa DEBUG ==== SSA block rewrite pass on 112 -13:52:52,594 numba.core.ssa DEBUG Running -13:52:52,594 numba.core.ssa DEBUG on stmt: $112load_global.0 = global(np: ) -13:52:52,594 numba.core.ssa DEBUG on stmt: $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) -13:52:52,594 numba.core.ssa DEBUG on stmt: $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,594 numba.core.ssa DEBUG on stmt: $150return_value.5 = cast(value=$140call.4) -13:52:52,594 numba.core.ssa DEBUG on stmt: return $150return_value.5 -13:52:52,594 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 62: []}) -13:52:52,594 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,594 numba.core.ssa DEBUG Running -13:52:52,594 numba.core.ssa DEBUG on stmt: x = arg(0, name=x) -13:52:52,594 numba.core.ssa DEBUG on stmt: y = arg(1, name=y) -13:52:52,594 numba.core.ssa DEBUG on stmt: result = const(float, 0.0) -13:52:52,594 numba.core.ssa DEBUG on stmt: $8load_global.1 = global(range: ) -13:52:52,594 numba.core.ssa DEBUG on stmt: $22load_attr.4 = getattr(value=x, attr=shape) -13:52:52,594 numba.core.ssa DEBUG on stmt: $const32.5 = const(int, 0) -13:52:52,595 numba.core.ssa DEBUG on stmt: $34binary_subscr.6 = static_getitem(value=$22load_attr.4, index=0, index_var=$const32.5, fn=) -13:52:52,595 numba.core.ssa DEBUG on stmt: $48call.7 = call $8load_global.1($34binary_subscr.6, func=$8load_global.1, args=[Var($34binary_subscr.6, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,595 numba.core.ssa DEBUG on stmt: $58get_iter.8 = getiter(value=$48call.7) -13:52:52,595 numba.core.ssa DEBUG on stmt: $phi60.0 = $58get_iter.8 -13:52:52,595 numba.core.ssa DEBUG on stmt: jump 60 -13:52:52,595 numba.core.ssa DEBUG ==== SSA block rewrite pass on 60 -13:52:52,595 numba.core.ssa DEBUG Running -13:52:52,595 numba.core.ssa DEBUG on stmt: $60for_iter.1 = iternext(value=$phi60.0) -13:52:52,595 numba.core.ssa DEBUG on stmt: $60for_iter.2 = pair_first(value=$60for_iter.1) -13:52:52,595 numba.core.ssa DEBUG on stmt: $60for_iter.3 = pair_second(value=$60for_iter.1) -13:52:52,595 numba.core.ssa DEBUG on stmt: $phi62.1 = $60for_iter.2 -13:52:52,595 numba.core.ssa DEBUG on stmt: branch $60for_iter.3, 62, 112 -13:52:52,595 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,595 numba.core.ssa DEBUG Running -13:52:52,595 numba.core.ssa DEBUG on stmt: i = $phi62.1 -13:52:52,595 numba.core.ssa DEBUG on stmt: $70binary_subscr.5 = getitem(value=x, index=i, fn=) -13:52:52,595 numba.core.ssa DEBUG on stmt: $84binary_subscr.8 = getitem(value=y, index=i, fn=) -13:52:52,595 numba.core.ssa DEBUG on stmt: $binop_sub94.9 = $70binary_subscr.5 - $84binary_subscr.8 -13:52:52,595 numba.core.ssa DEBUG on stmt: $const98.10 = const(int, 2) -13:52:52,595 numba.core.ssa DEBUG on stmt: $binop_pow100.11 = $binop_sub94.9 ** $const98.10 -13:52:52,595 numba.core.ssa DEBUG on stmt: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,595 numba.core.ssa DEBUG find_def var='result' stmt=$binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,595 numba.core.ssa DEBUG find_def_from_top label 62 -13:52:52,595 numba.core.ssa DEBUG idom 60 from label 62 -13:52:52,595 numba.core.ssa DEBUG find_def_from_bottom label 60 -13:52:52,595 numba.core.ssa DEBUG find_def_from_top label 60 -13:52:52,595 numba.core.ssa DEBUG insert phi node result.2 = phi(incoming_values=[], incoming_blocks=[]) at 60 -13:52:52,595 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:52,595 numba.core.ssa DEBUG incoming_def result = const(float, 0.0) -13:52:52,595 numba.core.ssa DEBUG find_def_from_bottom label 62 -13:52:52,595 numba.core.ssa DEBUG incoming_def result.1 = $binop_iadd104.12 -13:52:52,595 numba.core.ssa DEBUG replaced with: $binop_iadd104.12 = inplace_binop(fn=, immutable_fn=, lhs=result.2, rhs=$binop_pow100.11, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,596 numba.core.ssa DEBUG on stmt: result.1 = $binop_iadd104.12 -13:52:52,596 numba.core.ssa DEBUG on stmt: jump 60 -13:52:52,596 numba.core.ssa DEBUG ==== SSA block rewrite pass on 112 -13:52:52,596 numba.core.ssa DEBUG Running -13:52:52,596 numba.core.ssa DEBUG on stmt: $112load_global.0 = global(np: ) -13:52:52,596 numba.core.ssa DEBUG on stmt: $124load_attr.2 = getattr(value=$112load_global.0, attr=sqrt) -13:52:52,596 numba.core.ssa DEBUG on stmt: $140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,596 numba.core.ssa DEBUG find_def var='result' stmt=$140call.4 = call $124load_attr.2(result, func=$124load_attr.2, args=[Var(result, distances.py:29)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,596 numba.core.ssa DEBUG find_def_from_top label 112 -13:52:52,596 numba.core.ssa DEBUG idom 60 from label 112 -13:52:52,596 numba.core.ssa DEBUG find_def_from_bottom label 60 -13:52:52,596 numba.core.ssa DEBUG replaced with: $140call.4 = call $124load_attr.2(result.2, func=$124load_attr.2, args=[Var(result.2, distances.py:30)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,596 numba.core.ssa DEBUG on stmt: $150return_value.5 = cast(value=$140call.4) -13:52:52,596 numba.core.ssa DEBUG on stmt: return $150return_value.5 -13:52:52,620 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=214) - 2 COPY_FREE_VARS(arg=3, lineno=214) - 4 RESUME(arg=0, lineno=214) - 6 PUSH_NULL(arg=None, lineno=216) - 8 LOAD_DEREF(arg=6, lineno=216) - 10 LOAD_CONST(arg=1, lineno=216) - 12 PRECALL(arg=1, lineno=216) - 16 CALL(arg=1, lineno=216) - 26 STORE_FAST(arg=2, lineno=216) - 28 PUSH_NULL(arg=None, lineno=217) - 30 LOAD_DEREF(arg=6, lineno=217) - 32 LOAD_FAST(arg=0, lineno=217) - 34 PRECALL(arg=1, lineno=217) - 38 CALL(arg=1, lineno=217) - 48 STORE_FAST(arg=0, lineno=217) - 50 LOAD_FAST(arg=1, lineno=218) - 52 LOAD_CONST(arg=2, lineno=218) - 54 COMPARE_OP(arg=0, lineno=218) - 60 POP_JUMP_FORWARD_IF_FALSE(arg=60, lineno=218) - 62 LOAD_CONST(arg=3, lineno=219) - 64 STORE_FAST(arg=3, lineno=219) - 66 LOAD_FAST(arg=1, lineno=220) - 68 UNARY_NEGATIVE(arg=None, lineno=220) - 70 STORE_FAST(arg=4, lineno=220) - 72 LOAD_FAST(arg=4, lineno=221) - 74 LOAD_CONST(arg=2, lineno=221) - 76 COMPARE_OP(arg=0, lineno=221) - 82 POP_JUMP_FORWARD_IF_FALSE(arg=7, lineno=221) - 84 LOAD_GLOBAL(arg=0, lineno=222) - 96 RAISE_VARARGS(arg=1, lineno=222) -> 98 LOAD_DEREF(arg=5, lineno=223) - 100 POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=223) - 102 LOAD_FAST(arg=0, lineno=224) - 104 LOAD_CONST(arg=2, lineno=224) - 106 COMPARE_OP(arg=2, lineno=224) - 112 POP_JUMP_FORWARD_IF_FALSE(arg=19, lineno=224) - 114 LOAD_DEREF(arg=7, lineno=225) - 116 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=225) - 118 LOAD_DEREF(arg=7, lineno=226) - 120 RETURN_VALUE(arg=None, lineno=226) -> 122 LOAD_GLOBAL(arg=3, lineno=228) - 134 LOAD_CONST(arg=4, lineno=228) - 136 PRECALL(arg=1, lineno=228) - 140 CALL(arg=1, lineno=228) - 150 RAISE_VARARGS(arg=1, lineno=228) -> 152 LOAD_FAST(arg=0, lineno=229) - 154 LOAD_CONST(arg=1, lineno=229) - 156 COMPARE_OP(arg=3, lineno=229) - 162 POP_JUMP_FORWARD_IF_FALSE(arg=8, lineno=229) - 164 LOAD_FAST(arg=0, lineno=229) - 166 LOAD_CONST(arg=5, lineno=229) - 168 COMPARE_OP(arg=3, lineno=229) - 174 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=229) - 176 LOAD_CONST(arg=2, lineno=230) - 178 RETURN_VALUE(arg=None, lineno=230) -> 180 JUMP_FORWARD(arg=4, lineno=230) -> 182 LOAD_CONST(arg=6, lineno=232) - 184 STORE_FAST(arg=3, lineno=232) - 186 LOAD_FAST(arg=1, lineno=233) - 188 STORE_FAST(arg=4, lineno=233) -> 190 LOAD_FAST(arg=4, lineno=234) - 192 LOAD_CONST(arg=7, lineno=234) - 194 COMPARE_OP(arg=4, lineno=234) - 200 POP_JUMP_FORWARD_IF_FALSE(arg=34, lineno=234) - 202 LOAD_GLOBAL(arg=5, lineno=236) - 214 LOAD_ATTR(arg=3, lineno=236) - 224 LOAD_FAST(arg=0, lineno=236) - 226 LOAD_GLOBAL(arg=9, lineno=236) - 238 LOAD_FAST(arg=1, lineno=236) - 240 PRECALL(arg=1, lineno=236) - 244 CALL(arg=1, lineno=236) - 254 PRECALL(arg=2, lineno=236) - 258 CALL(arg=2, lineno=236) - 268 RETURN_VALUE(arg=None, lineno=236) -> 270 LOAD_FAST(arg=4, lineno=237) - 272 LOAD_CONST(arg=2, lineno=237) - 274 COMPARE_OP(arg=3, lineno=237) - 280 POP_JUMP_FORWARD_IF_FALSE(arg=26, lineno=237) -> 282 LOAD_FAST(arg=4, lineno=238) - 284 LOAD_CONST(arg=1, lineno=238) - 286 BINARY_OP(arg=1, lineno=238) - 290 POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=238) - 292 LOAD_FAST(arg=2, lineno=239) - 294 LOAD_FAST(arg=0, lineno=239) - 296 BINARY_OP(arg=18, lineno=239) - 300 STORE_FAST(arg=2, lineno=239) -> 302 LOAD_FAST(arg=4, lineno=240) - 304 LOAD_CONST(arg=1, lineno=240) - 306 BINARY_OP(arg=22, lineno=240) - 310 STORE_FAST(arg=4, lineno=240) - 312 LOAD_FAST(arg=0, lineno=241) - 314 LOAD_FAST(arg=0, lineno=241) - 316 BINARY_OP(arg=18, lineno=241) - 320 STORE_FAST(arg=0, lineno=241) - 322 LOAD_FAST(arg=4, lineno=237) - 324 LOAD_CONST(arg=2, lineno=237) - 326 COMPARE_OP(arg=3, lineno=237) - 332 POP_JUMP_BACKWARD_IF_TRUE(arg=26, lineno=237) -> 334 LOAD_FAST(arg=3, lineno=243) - 336 POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=243) - 338 LOAD_CONST(arg=8, lineno=243) - 340 LOAD_FAST(arg=2, lineno=243) - 342 BINARY_OP(arg=11, lineno=243) - 346 JUMP_FORWARD(arg=1, lineno=243) -> 348 LOAD_FAST(arg=2, lineno=243) -> 350 RETURN_VALUE(arg=None, lineno=243) -13:52:52,620 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:52,620 numba.core.byteflow DEBUG stack: [] -13:52:52,620 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=214) -13:52:52,620 numba.core.byteflow DEBUG stack [] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=2, inst=COPY_FREE_VARS(arg=3, lineno=214) -13:52:52,620 numba.core.byteflow DEBUG stack [] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=4, inst=RESUME(arg=0, lineno=214) -13:52:52,620 numba.core.byteflow DEBUG stack [] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=6, inst=PUSH_NULL(arg=None, lineno=216) -13:52:52,620 numba.core.byteflow DEBUG stack [] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=8, inst=LOAD_DEREF(arg=6, lineno=216) -13:52:52,620 numba.core.byteflow DEBUG stack ['$null$6.0'] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=10, inst=LOAD_CONST(arg=1, lineno=216) -13:52:52,620 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1'] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=12, inst=PRECALL(arg=1, lineno=216) -13:52:52,620 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$const10.2'] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=16, inst=CALL(arg=1, lineno=216) -13:52:52,620 numba.core.byteflow DEBUG stack ['$null$6.0', '$8load_deref.1', '$const10.2'] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=26, inst=STORE_FAST(arg=2, lineno=216) -13:52:52,620 numba.core.byteflow DEBUG stack ['$16call.3'] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=28, inst=PUSH_NULL(arg=None, lineno=217) -13:52:52,620 numba.core.byteflow DEBUG stack [] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=30, inst=LOAD_DEREF(arg=6, lineno=217) -13:52:52,620 numba.core.byteflow DEBUG stack ['$null$28.4'] -13:52:52,620 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_FAST(arg=0, lineno=217) -13:52:52,621 numba.core.byteflow DEBUG stack ['$null$28.4', '$30load_deref.5'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=34, inst=PRECALL(arg=1, lineno=217) -13:52:52,621 numba.core.byteflow DEBUG stack ['$null$28.4', '$30load_deref.5', '$a32.6'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=38, inst=CALL(arg=1, lineno=217) -13:52:52,621 numba.core.byteflow DEBUG stack ['$null$28.4', '$30load_deref.5', '$a32.6'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=48, inst=STORE_FAST(arg=0, lineno=217) -13:52:52,621 numba.core.byteflow DEBUG stack ['$38call.7'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=50, inst=LOAD_FAST(arg=1, lineno=218) -13:52:52,621 numba.core.byteflow DEBUG stack [] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=52, inst=LOAD_CONST(arg=2, lineno=218) -13:52:52,621 numba.core.byteflow DEBUG stack ['$b50.8'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=54, inst=COMPARE_OP(arg=0, lineno=218) -13:52:52,621 numba.core.byteflow DEBUG stack ['$b50.8', '$const52.9'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=60, inst=POP_JUMP_FORWARD_IF_FALSE(arg=60, lineno=218) -13:52:52,621 numba.core.byteflow DEBUG stack ['$54compare_op.10'] -13:52:52,621 numba.core.byteflow DEBUG end state. edges=[Edge(pc=62, stack=(), blockstack=(), npush=0), Edge(pc=182, stack=(), blockstack=(), npush=0)] -13:52:52,621 numba.core.byteflow DEBUG pending: deque([State(pc_initial=62 nstack_initial=0), State(pc_initial=182 nstack_initial=0)]) -13:52:52,621 numba.core.byteflow DEBUG stack: [] -13:52:52,621 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=62 nstack_initial=0) -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=62, inst=LOAD_CONST(arg=3, lineno=219) -13:52:52,621 numba.core.byteflow DEBUG stack [] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=64, inst=STORE_FAST(arg=3, lineno=219) -13:52:52,621 numba.core.byteflow DEBUG stack ['$const62.0'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=66, inst=LOAD_FAST(arg=1, lineno=220) -13:52:52,621 numba.core.byteflow DEBUG stack [] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=68, inst=UNARY_NEGATIVE(arg=None, lineno=220) -13:52:52,621 numba.core.byteflow DEBUG stack ['$b66.1'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=70, inst=STORE_FAST(arg=4, lineno=220) -13:52:52,621 numba.core.byteflow DEBUG stack ['$68unary_negative.2'] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=72, inst=LOAD_FAST(arg=4, lineno=221) -13:52:52,621 numba.core.byteflow DEBUG stack [] -13:52:52,621 numba.core.byteflow DEBUG dispatch pc=74, inst=LOAD_CONST(arg=2, lineno=221) -13:52:52,621 numba.core.byteflow DEBUG stack ['$exp72.3'] -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=76, inst=COMPARE_OP(arg=0, lineno=221) -13:52:52,622 numba.core.byteflow DEBUG stack ['$exp72.3', '$const74.4'] -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=82, inst=POP_JUMP_FORWARD_IF_FALSE(arg=7, lineno=221) -13:52:52,622 numba.core.byteflow DEBUG stack ['$76compare_op.5'] -13:52:52,622 numba.core.byteflow DEBUG end state. edges=[Edge(pc=84, stack=(), blockstack=(), npush=0), Edge(pc=98, stack=(), blockstack=(), npush=0)] -13:52:52,622 numba.core.byteflow DEBUG pending: deque([State(pc_initial=182 nstack_initial=0), State(pc_initial=84 nstack_initial=0), State(pc_initial=98 nstack_initial=0)]) -13:52:52,622 numba.core.byteflow DEBUG stack: [] -13:52:52,622 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=182 nstack_initial=0) -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=182, inst=LOAD_CONST(arg=6, lineno=232) -13:52:52,622 numba.core.byteflow DEBUG stack [] -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=184, inst=STORE_FAST(arg=3, lineno=232) -13:52:52,622 numba.core.byteflow DEBUG stack ['$const182.0'] -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=186, inst=LOAD_FAST(arg=1, lineno=233) -13:52:52,622 numba.core.byteflow DEBUG stack [] -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=188, inst=STORE_FAST(arg=4, lineno=233) -13:52:52,622 numba.core.byteflow DEBUG stack ['$b186.1'] -13:52:52,622 numba.core.byteflow DEBUG end state. edges=[Edge(pc=190, stack=(), blockstack=(), npush=0)] -13:52:52,622 numba.core.byteflow DEBUG pending: deque([State(pc_initial=84 nstack_initial=0), State(pc_initial=98 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:52,622 numba.core.byteflow DEBUG stack: [] -13:52:52,622 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=84 nstack_initial=0) -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=84, inst=LOAD_GLOBAL(arg=0, lineno=222) -13:52:52,622 numba.core.byteflow DEBUG stack [] -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=96, inst=RAISE_VARARGS(arg=1, lineno=222) -13:52:52,622 numba.core.byteflow DEBUG stack ['$84load_global.0'] -13:52:52,622 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,622 numba.core.byteflow DEBUG pending: deque([State(pc_initial=98 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:52,622 numba.core.byteflow DEBUG stack: [] -13:52:52,622 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=98 nstack_initial=0) -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=98, inst=LOAD_DEREF(arg=5, lineno=223) -13:52:52,622 numba.core.byteflow DEBUG stack [] -13:52:52,622 numba.core.byteflow DEBUG dispatch pc=100, inst=POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=223) -13:52:52,622 numba.core.byteflow DEBUG stack ['$98load_deref.0'] -13:52:52,622 numba.core.byteflow DEBUG end state. edges=[Edge(pc=102, stack=(), blockstack=(), npush=0), Edge(pc=180, stack=(), blockstack=(), npush=0)] -13:52:52,622 numba.core.byteflow DEBUG pending: deque([State(pc_initial=190 nstack_initial=0), State(pc_initial=102 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:52,623 numba.core.byteflow DEBUG stack: [] -13:52:52,623 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=190 nstack_initial=0) -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=190, inst=LOAD_FAST(arg=4, lineno=234) -13:52:52,623 numba.core.byteflow DEBUG stack [] -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=192, inst=LOAD_CONST(arg=7, lineno=234) -13:52:52,623 numba.core.byteflow DEBUG stack ['$exp190.0'] -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=194, inst=COMPARE_OP(arg=4, lineno=234) -13:52:52,623 numba.core.byteflow DEBUG stack ['$exp190.0', '$const192.1'] -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=200, inst=POP_JUMP_FORWARD_IF_FALSE(arg=34, lineno=234) -13:52:52,623 numba.core.byteflow DEBUG stack ['$194compare_op.2'] -13:52:52,623 numba.core.byteflow DEBUG end state. edges=[Edge(pc=202, stack=(), blockstack=(), npush=0), Edge(pc=270, stack=(), blockstack=(), npush=0)] -13:52:52,623 numba.core.byteflow DEBUG pending: deque([State(pc_initial=102 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=202 nstack_initial=0), State(pc_initial=270 nstack_initial=0)]) -13:52:52,623 numba.core.byteflow DEBUG stack: [] -13:52:52,623 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=102 nstack_initial=0) -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=102, inst=LOAD_FAST(arg=0, lineno=224) -13:52:52,623 numba.core.byteflow DEBUG stack [] -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=104, inst=LOAD_CONST(arg=2, lineno=224) -13:52:52,623 numba.core.byteflow DEBUG stack ['$a102.0'] -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=106, inst=COMPARE_OP(arg=2, lineno=224) -13:52:52,623 numba.core.byteflow DEBUG stack ['$a102.0', '$const104.1'] -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=112, inst=POP_JUMP_FORWARD_IF_FALSE(arg=19, lineno=224) -13:52:52,623 numba.core.byteflow DEBUG stack ['$106compare_op.2'] -13:52:52,623 numba.core.byteflow DEBUG end state. edges=[Edge(pc=114, stack=(), blockstack=(), npush=0), Edge(pc=152, stack=(), blockstack=(), npush=0)] -13:52:52,623 numba.core.byteflow DEBUG pending: deque([State(pc_initial=180 nstack_initial=0), State(pc_initial=202 nstack_initial=0), State(pc_initial=270 nstack_initial=0), State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0)]) -13:52:52,623 numba.core.byteflow DEBUG stack: [] -13:52:52,623 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=180 nstack_initial=0) -13:52:52,623 numba.core.byteflow DEBUG dispatch pc=180, inst=JUMP_FORWARD(arg=4, lineno=230) -13:52:52,623 numba.core.byteflow DEBUG stack [] -13:52:52,623 numba.core.byteflow DEBUG end state. edges=[Edge(pc=190, stack=(), blockstack=(), npush=0)] -13:52:52,623 numba.core.byteflow DEBUG pending: deque([State(pc_initial=202 nstack_initial=0), State(pc_initial=270 nstack_initial=0), State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:52,624 numba.core.byteflow DEBUG stack: [] -13:52:52,624 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=202 nstack_initial=0) -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=202, inst=LOAD_GLOBAL(arg=5, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack [] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=214, inst=LOAD_ATTR(arg=3, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$202load_global.0'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=224, inst=LOAD_FAST(arg=0, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=226, inst=LOAD_GLOBAL(arg=9, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=238, inst=LOAD_FAST(arg=1, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$null$226.5', '$226load_global.4'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=240, inst=PRECALL(arg=1, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$null$226.5', '$226load_global.4', '$b238.6'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=244, inst=CALL(arg=1, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$null$226.5', '$226load_global.4', '$b238.6'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=254, inst=PRECALL(arg=2, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$244call.7'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=258, inst=CALL(arg=2, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$null$202.1', '$214load_attr.2', '$a224.3', '$244call.7'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=268, inst=RETURN_VALUE(arg=None, lineno=236) -13:52:52,624 numba.core.byteflow DEBUG stack ['$258call.8'] -13:52:52,624 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,624 numba.core.byteflow DEBUG pending: deque([State(pc_initial=270 nstack_initial=0), State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0)]) -13:52:52,624 numba.core.byteflow DEBUG stack: [] -13:52:52,624 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=270 nstack_initial=0) -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=270, inst=LOAD_FAST(arg=4, lineno=237) -13:52:52,624 numba.core.byteflow DEBUG stack [] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=272, inst=LOAD_CONST(arg=2, lineno=237) -13:52:52,624 numba.core.byteflow DEBUG stack ['$exp270.0'] -13:52:52,624 numba.core.byteflow DEBUG dispatch pc=274, inst=COMPARE_OP(arg=3, lineno=237) -13:52:52,624 numba.core.byteflow DEBUG stack ['$exp270.0', '$const272.1'] -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=280, inst=POP_JUMP_FORWARD_IF_FALSE(arg=26, lineno=237) -13:52:52,625 numba.core.byteflow DEBUG stack ['$274compare_op.2'] -13:52:52,625 numba.core.byteflow DEBUG end state. edges=[Edge(pc=282, stack=(), blockstack=(), npush=0), Edge(pc=334, stack=(), blockstack=(), npush=0)] -13:52:52,625 numba.core.byteflow DEBUG pending: deque([State(pc_initial=114 nstack_initial=0), State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0)]) -13:52:52,625 numba.core.byteflow DEBUG stack: [] -13:52:52,625 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=114 nstack_initial=0) -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=114, inst=LOAD_DEREF(arg=7, lineno=225) -13:52:52,625 numba.core.byteflow DEBUG stack [] -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=116, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=225) -13:52:52,625 numba.core.byteflow DEBUG stack ['$114load_deref.0'] -13:52:52,625 numba.core.byteflow DEBUG end state. edges=[Edge(pc=118, stack=(), blockstack=(), npush=0), Edge(pc=122, stack=(), blockstack=(), npush=0)] -13:52:52,625 numba.core.byteflow DEBUG pending: deque([State(pc_initial=152 nstack_initial=0), State(pc_initial=190 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0)]) -13:52:52,625 numba.core.byteflow DEBUG stack: [] -13:52:52,625 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=152 nstack_initial=0) -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=152, inst=LOAD_FAST(arg=0, lineno=229) -13:52:52,625 numba.core.byteflow DEBUG stack [] -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=154, inst=LOAD_CONST(arg=1, lineno=229) -13:52:52,625 numba.core.byteflow DEBUG stack ['$a152.0'] -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=156, inst=COMPARE_OP(arg=3, lineno=229) -13:52:52,625 numba.core.byteflow DEBUG stack ['$a152.0', '$const154.1'] -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=162, inst=POP_JUMP_FORWARD_IF_FALSE(arg=8, lineno=229) -13:52:52,625 numba.core.byteflow DEBUG stack ['$156compare_op.2'] -13:52:52,625 numba.core.byteflow DEBUG end state. edges=[Edge(pc=164, stack=(), blockstack=(), npush=0), Edge(pc=180, stack=(), blockstack=(), npush=0)] -13:52:52,625 numba.core.byteflow DEBUG pending: deque([State(pc_initial=190 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:52,625 numba.core.byteflow DEBUG pending: deque([State(pc_initial=282 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:52,625 numba.core.byteflow DEBUG stack: [] -13:52:52,625 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=282 nstack_initial=0) -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=282, inst=LOAD_FAST(arg=4, lineno=238) -13:52:52,625 numba.core.byteflow DEBUG stack [] -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=284, inst=LOAD_CONST(arg=1, lineno=238) -13:52:52,625 numba.core.byteflow DEBUG stack ['$exp282.0'] -13:52:52,625 numba.core.byteflow DEBUG dispatch pc=286, inst=BINARY_OP(arg=1, lineno=238) -13:52:52,626 numba.core.byteflow DEBUG stack ['$exp282.0', '$const284.1'] -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=290, inst=POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=238) -13:52:52,626 numba.core.byteflow DEBUG stack ['$binop_and_286.2'] -13:52:52,626 numba.core.byteflow DEBUG end state. edges=[Edge(pc=292, stack=(), blockstack=(), npush=0), Edge(pc=302, stack=(), blockstack=(), npush=0)] -13:52:52,626 numba.core.byteflow DEBUG pending: deque([State(pc_initial=334 nstack_initial=0), State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0)]) -13:52:52,626 numba.core.byteflow DEBUG stack: [] -13:52:52,626 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=334 nstack_initial=0) -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=334, inst=LOAD_FAST(arg=3, lineno=243) -13:52:52,626 numba.core.byteflow DEBUG stack [] -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=336, inst=POP_JUMP_FORWARD_IF_FALSE(arg=5, lineno=243) -13:52:52,626 numba.core.byteflow DEBUG stack ['$invert334.0'] -13:52:52,626 numba.core.byteflow DEBUG end state. edges=[Edge(pc=338, stack=(), blockstack=(), npush=0), Edge(pc=348, stack=(), blockstack=(), npush=0)] -13:52:52,626 numba.core.byteflow DEBUG pending: deque([State(pc_initial=118 nstack_initial=0), State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0)]) -13:52:52,626 numba.core.byteflow DEBUG stack: [] -13:52:52,626 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=118 nstack_initial=0) -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=118, inst=LOAD_DEREF(arg=7, lineno=226) -13:52:52,626 numba.core.byteflow DEBUG stack [] -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=120, inst=RETURN_VALUE(arg=None, lineno=226) -13:52:52,626 numba.core.byteflow DEBUG stack ['$118load_deref.0'] -13:52:52,626 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,626 numba.core.byteflow DEBUG pending: deque([State(pc_initial=122 nstack_initial=0), State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0)]) -13:52:52,626 numba.core.byteflow DEBUG stack: [] -13:52:52,626 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=122 nstack_initial=0) -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=122, inst=LOAD_GLOBAL(arg=3, lineno=228) -13:52:52,626 numba.core.byteflow DEBUG stack [] -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=134, inst=LOAD_CONST(arg=4, lineno=228) -13:52:52,626 numba.core.byteflow DEBUG stack ['$null$122.1', '$122load_global.0'] -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=136, inst=PRECALL(arg=1, lineno=228) -13:52:52,626 numba.core.byteflow DEBUG stack ['$null$122.1', '$122load_global.0', '$const134.2'] -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=140, inst=CALL(arg=1, lineno=228) -13:52:52,626 numba.core.byteflow DEBUG stack ['$null$122.1', '$122load_global.0', '$const134.2'] -13:52:52,626 numba.core.byteflow DEBUG dispatch pc=150, inst=RAISE_VARARGS(arg=1, lineno=228) -13:52:52,627 numba.core.byteflow DEBUG stack ['$140call.3'] -13:52:52,627 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,627 numba.core.byteflow DEBUG pending: deque([State(pc_initial=164 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0)]) -13:52:52,627 numba.core.byteflow DEBUG stack: [] -13:52:52,627 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=164 nstack_initial=0) -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=164, inst=LOAD_FAST(arg=0, lineno=229) -13:52:52,627 numba.core.byteflow DEBUG stack [] -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=166, inst=LOAD_CONST(arg=5, lineno=229) -13:52:52,627 numba.core.byteflow DEBUG stack ['$a164.0'] -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=168, inst=COMPARE_OP(arg=3, lineno=229) -13:52:52,627 numba.core.byteflow DEBUG stack ['$a164.0', '$const166.1'] -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=174, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=229) -13:52:52,627 numba.core.byteflow DEBUG stack ['$168compare_op.2'] -13:52:52,627 numba.core.byteflow DEBUG end state. edges=[Edge(pc=176, stack=(), blockstack=(), npush=0), Edge(pc=180, stack=(), blockstack=(), npush=0)] -13:52:52,627 numba.core.byteflow DEBUG pending: deque([State(pc_initial=180 nstack_initial=0), State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:52,627 numba.core.byteflow DEBUG pending: deque([State(pc_initial=292 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0)]) -13:52:52,627 numba.core.byteflow DEBUG stack: [] -13:52:52,627 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=292 nstack_initial=0) -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=292, inst=LOAD_FAST(arg=2, lineno=239) -13:52:52,627 numba.core.byteflow DEBUG stack [] -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=294, inst=LOAD_FAST(arg=0, lineno=239) -13:52:52,627 numba.core.byteflow DEBUG stack ['$r292.0'] -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=296, inst=BINARY_OP(arg=18, lineno=239) -13:52:52,627 numba.core.byteflow DEBUG stack ['$r292.0', '$a294.1'] -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=300, inst=STORE_FAST(arg=2, lineno=239) -13:52:52,627 numba.core.byteflow DEBUG stack ['$binop_imul296.2'] -13:52:52,627 numba.core.byteflow DEBUG end state. edges=[Edge(pc=302, stack=(), blockstack=(), npush=0)] -13:52:52,627 numba.core.byteflow DEBUG pending: deque([State(pc_initial=302 nstack_initial=0), State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0)]) -13:52:52,627 numba.core.byteflow DEBUG stack: [] -13:52:52,627 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=302 nstack_initial=0) -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=302, inst=LOAD_FAST(arg=4, lineno=240) -13:52:52,627 numba.core.byteflow DEBUG stack [] -13:52:52,627 numba.core.byteflow DEBUG dispatch pc=304, inst=LOAD_CONST(arg=1, lineno=240) -13:52:52,627 numba.core.byteflow DEBUG stack ['$exp302.0'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=306, inst=BINARY_OP(arg=22, lineno=240) -13:52:52,628 numba.core.byteflow DEBUG stack ['$exp302.0', '$const304.1'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=310, inst=STORE_FAST(arg=4, lineno=240) -13:52:52,628 numba.core.byteflow DEBUG stack ['$binop_irshift306.2'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=312, inst=LOAD_FAST(arg=0, lineno=241) -13:52:52,628 numba.core.byteflow DEBUG stack [] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=314, inst=LOAD_FAST(arg=0, lineno=241) -13:52:52,628 numba.core.byteflow DEBUG stack ['$a312.3'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=316, inst=BINARY_OP(arg=18, lineno=241) -13:52:52,628 numba.core.byteflow DEBUG stack ['$a312.3', '$a314.4'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=320, inst=STORE_FAST(arg=0, lineno=241) -13:52:52,628 numba.core.byteflow DEBUG stack ['$binop_imul316.5'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=322, inst=LOAD_FAST(arg=4, lineno=237) -13:52:52,628 numba.core.byteflow DEBUG stack [] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=324, inst=LOAD_CONST(arg=2, lineno=237) -13:52:52,628 numba.core.byteflow DEBUG stack ['$exp322.6'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=326, inst=COMPARE_OP(arg=3, lineno=237) -13:52:52,628 numba.core.byteflow DEBUG stack ['$exp322.6', '$const324.7'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=332, inst=POP_JUMP_BACKWARD_IF_TRUE(arg=26, lineno=237) -13:52:52,628 numba.core.byteflow DEBUG stack ['$326compare_op.8'] -13:52:52,628 numba.core.byteflow DEBUG end state. edges=[Edge(pc=334, stack=(), blockstack=(), npush=0), Edge(pc=282, stack=(), blockstack=(), npush=0)] -13:52:52,628 numba.core.byteflow DEBUG pending: deque([State(pc_initial=338 nstack_initial=0), State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0)]) -13:52:52,628 numba.core.byteflow DEBUG stack: [] -13:52:52,628 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=338 nstack_initial=0) -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=338, inst=LOAD_CONST(arg=8, lineno=243) -13:52:52,628 numba.core.byteflow DEBUG stack [] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=340, inst=LOAD_FAST(arg=2, lineno=243) -13:52:52,628 numba.core.byteflow DEBUG stack ['$const338.0'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=342, inst=BINARY_OP(arg=11, lineno=243) -13:52:52,628 numba.core.byteflow DEBUG stack ['$const338.0', '$r340.1'] -13:52:52,628 numba.core.byteflow DEBUG dispatch pc=346, inst=JUMP_FORWARD(arg=1, lineno=243) -13:52:52,628 numba.core.byteflow DEBUG stack ['$binop_truediv342.2'] -13:52:52,629 numba.core.byteflow DEBUG end state. edges=[Edge(pc=350, stack=('$binop_truediv342.2',), blockstack=(), npush=0)] -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=348 nstack_initial=0), State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG stack: [] -13:52:52,629 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=348 nstack_initial=0) -13:52:52,629 numba.core.byteflow DEBUG dispatch pc=348, inst=LOAD_FAST(arg=2, lineno=243) -13:52:52,629 numba.core.byteflow DEBUG stack [] -13:52:52,629 numba.core.byteflow DEBUG end state. edges=[Edge(pc=350, stack=('$r348.0',), blockstack=(), npush=0)] -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=176 nstack_initial=0), State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG stack: [] -13:52:52,629 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=176 nstack_initial=0) -13:52:52,629 numba.core.byteflow DEBUG dispatch pc=176, inst=LOAD_CONST(arg=2, lineno=230) -13:52:52,629 numba.core.byteflow DEBUG stack [] -13:52:52,629 numba.core.byteflow DEBUG dispatch pc=178, inst=RETURN_VALUE(arg=None, lineno=230) -13:52:52,629 numba.core.byteflow DEBUG stack ['$const176.0'] -13:52:52,629 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=180 nstack_initial=0), State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=302 nstack_initial=0), State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=334 nstack_initial=0), State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=282 nstack_initial=0), State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=350 nstack_initial=1), State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG stack: ['$phi350.0'] -13:52:52,629 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=350 nstack_initial=1) -13:52:52,629 numba.core.byteflow DEBUG dispatch pc=350, inst=RETURN_VALUE(arg=None, lineno=243) -13:52:52,629 numba.core.byteflow DEBUG stack ['$phi350.0'] -13:52:52,629 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,629 numba.core.byteflow DEBUG pending: deque([State(pc_initial=350 nstack_initial=1)]) -13:52:52,629 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:52,630 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=62 nstack_initial=0): set(), - State(pc_initial=84 nstack_initial=0): set(), - State(pc_initial=98 nstack_initial=0): set(), - State(pc_initial=102 nstack_initial=0): set(), - State(pc_initial=114 nstack_initial=0): set(), - State(pc_initial=118 nstack_initial=0): set(), - State(pc_initial=122 nstack_initial=0): set(), - State(pc_initial=152 nstack_initial=0): set(), - State(pc_initial=164 nstack_initial=0): set(), - State(pc_initial=176 nstack_initial=0): set(), - State(pc_initial=180 nstack_initial=0): set(), - State(pc_initial=182 nstack_initial=0): set(), - State(pc_initial=190 nstack_initial=0): set(), - State(pc_initial=202 nstack_initial=0): set(), - State(pc_initial=270 nstack_initial=0): set(), - State(pc_initial=282 nstack_initial=0): set(), - State(pc_initial=292 nstack_initial=0): set(), - State(pc_initial=302 nstack_initial=0): set(), - State(pc_initial=334 nstack_initial=0): set(), - State(pc_initial=338 nstack_initial=0): set(), - State(pc_initial=348 nstack_initial=0): set(), - State(pc_initial=350 nstack_initial=1): {'$phi350.0'}}) -13:52:52,630 numba.core.byteflow DEBUG defmap: {'$phi350.0': State(pc_initial=348 nstack_initial=0)} -13:52:52,630 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi350.0': {('$binop_truediv342.2', - State(pc_initial=338 nstack_initial=0)), - ('$r348.0', - State(pc_initial=348 nstack_initial=0))}}) -13:52:52,630 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi350.0': {('$binop_truediv342.2', - State(pc_initial=338 nstack_initial=0)), - ('$r348.0', - State(pc_initial=348 nstack_initial=0))}}) -13:52:52,630 numba.core.byteflow DEBUG keep phismap: {'$phi350.0': {('$binop_truediv342.2', State(pc_initial=338 nstack_initial=0)), - ('$r348.0', State(pc_initial=348 nstack_initial=0))}} -13:52:52,630 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=338 nstack_initial=0): {'$phi350.0': '$binop_truediv342.2'}, - State(pc_initial=348 nstack_initial=0): {'$phi350.0': '$r348.0'}}) -13:52:52,630 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {}), (6, {}), (8, {'res': '$8load_deref.1'}), (10, {'res': '$const10.2'}), (12, {}), (14, {}), (16, {'func': '$8load_deref.1', 'args': ['$const10.2'], 'kw_names': None, 'res': '$16call.3'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'value': '$16call.3'}), (28, {}), (30, {'res': '$30load_deref.5'}), (32, {'res': '$a32.6'}), (34, {}), (36, {}), (38, {'func': '$30load_deref.5', 'args': ['$a32.6'], 'kw_names': None, 'res': '$38call.7'}), (40, {}), (42, {}), (44, {}), (46, {}), (48, {'value': '$38call.7'}), (50, {'res': '$b50.8'}), (52, {'res': '$const52.9'}), (54, {'lhs': '$b50.8', 'rhs': '$const52.9', 'res': '$54compare_op.10'}), (56, {}), (58, {}), (60, {'pred': '$54compare_op.10'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={62: (), 182: ()}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=62 nstack_initial=0): -AdaptBlockInfo(insts=((62, {'res': '$const62.0'}), (64, {'value': '$const62.0'}), (66, {'res': '$b66.1'}), (68, {'value': '$b66.1', 'res': '$68unary_negative.2'}), (70, {'value': '$68unary_negative.2'}), (72, {'res': '$exp72.3'}), (74, {'res': '$const74.4'}), (76, {'lhs': '$exp72.3', 'rhs': '$const74.4', 'res': '$76compare_op.5'}), (78, {}), (80, {}), (82, {'pred': '$76compare_op.5'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={84: (), 98: ()}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=84 nstack_initial=0): -AdaptBlockInfo(insts=((84, {'idx': 0, 'res': '$84load_global.0'}), (86, {}), (88, {}), (90, {}), (92, {}), (94, {}), (96, {'exc': '$84load_global.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=98 nstack_initial=0): -AdaptBlockInfo(insts=((98, {'res': '$98load_deref.0'}), (100, {'pred': '$98load_deref.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={102: (), 180: ()}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=102 nstack_initial=0): -AdaptBlockInfo(insts=((102, {'res': '$a102.0'}), (104, {'res': '$const104.1'}), (106, {'lhs': '$a102.0', 'rhs': '$const104.1', 'res': '$106compare_op.2'}), (108, {}), (110, {}), (112, {'pred': '$106compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={114: (), 152: ()}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=114 nstack_initial=0): -AdaptBlockInfo(insts=((114, {'res': '$114load_deref.0'}), (116, {'pred': '$114load_deref.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={118: (), 122: ()}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=118 nstack_initial=0): -AdaptBlockInfo(insts=((118, {'res': '$118load_deref.0'}), (120, {'retval': '$118load_deref.0', 'castval': '$120return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=122 nstack_initial=0): -AdaptBlockInfo(insts=((122, {'idx': 1, 'res': '$122load_global.0'}), (124, {}), (126, {}), (128, {}), (130, {}), (132, {}), (134, {'res': '$const134.2'}), (136, {}), (138, {}), (140, {'func': '$122load_global.0', 'args': ['$const134.2'], 'kw_names': None, 'res': '$140call.3'}), (142, {}), (144, {}), (146, {}), (148, {}), (150, {'exc': '$140call.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=152 nstack_initial=0): -AdaptBlockInfo(insts=((152, {'res': '$a152.0'}), (154, {'res': '$const154.1'}), (156, {'lhs': '$a152.0', 'rhs': '$const154.1', 'res': '$156compare_op.2'}), (158, {}), (160, {}), (162, {'pred': '$156compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={164: (), 180: ()}) -13:52:52,630 numba.core.byteflow DEBUG block_infos State(pc_initial=164 nstack_initial=0): -AdaptBlockInfo(insts=((164, {'res': '$a164.0'}), (166, {'res': '$const166.1'}), (168, {'lhs': '$a164.0', 'rhs': '$const166.1', 'res': '$168compare_op.2'}), (170, {}), (172, {}), (174, {'pred': '$168compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={176: (), 180: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=176 nstack_initial=0): -AdaptBlockInfo(insts=((176, {'res': '$const176.0'}), (178, {'retval': '$const176.0', 'castval': '$178return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=180 nstack_initial=0): -AdaptBlockInfo(insts=((180, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={190: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=182 nstack_initial=0): -AdaptBlockInfo(insts=((182, {'res': '$const182.0'}), (184, {'value': '$const182.0'}), (186, {'res': '$b186.1'}), (188, {'value': '$b186.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={190: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=190 nstack_initial=0): -AdaptBlockInfo(insts=((190, {'res': '$exp190.0'}), (192, {'res': '$const192.1'}), (194, {'lhs': '$exp190.0', 'rhs': '$const192.1', 'res': '$194compare_op.2'}), (196, {}), (198, {}), (200, {'pred': '$194compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={202: (), 270: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=202 nstack_initial=0): -AdaptBlockInfo(insts=((202, {'idx': 2, 'res': '$202load_global.0'}), (204, {}), (206, {}), (208, {}), (210, {}), (212, {}), (214, {'item': '$202load_global.0', 'res': '$214load_attr.2'}), (216, {}), (218, {}), (220, {}), (222, {}), (224, {'res': '$a224.3'}), (226, {'idx': 4, 'res': '$226load_global.4'}), (228, {}), (230, {}), (232, {}), (234, {}), (236, {}), (238, {'res': '$b238.6'}), (240, {}), (242, {}), (244, {'func': '$226load_global.4', 'args': ['$b238.6'], 'kw_names': None, 'res': '$244call.7'}), (246, {}), (248, {}), (250, {}), (252, {}), (254, {}), (256, {}), (258, {'func': '$214load_attr.2', 'args': ['$a224.3', '$244call.7'], 'kw_names': None, 'res': '$258call.8'}), (260, {}), (262, {}), (264, {}), (266, {}), (268, {'retval': '$258call.8', 'castval': '$268return_value.9'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=270 nstack_initial=0): -AdaptBlockInfo(insts=((270, {'res': '$exp270.0'}), (272, {'res': '$const272.1'}), (274, {'lhs': '$exp270.0', 'rhs': '$const272.1', 'res': '$274compare_op.2'}), (276, {}), (278, {}), (280, {'pred': '$274compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={282: (), 334: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=282 nstack_initial=0): -AdaptBlockInfo(insts=((282, {'res': '$exp282.0'}), (284, {'res': '$const284.1'}), (286, {'op': '&', 'lhs': '$exp282.0', 'rhs': '$const284.1', 'res': '$binop_and_286.2'}), (288, {}), (290, {'pred': '$binop_and_286.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={292: (), 302: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=292 nstack_initial=0): -AdaptBlockInfo(insts=((292, {'res': '$r292.0'}), (294, {'res': '$a294.1'}), (296, {'op': '*=', 'lhs': '$r292.0', 'rhs': '$a294.1', 'res': '$binop_imul296.2'}), (298, {}), (300, {'value': '$binop_imul296.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={302: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=302 nstack_initial=0): -AdaptBlockInfo(insts=((302, {'res': '$exp302.0'}), (304, {'res': '$const304.1'}), (306, {'op': '>>=', 'lhs': '$exp302.0', 'rhs': '$const304.1', 'res': '$binop_irshift306.2'}), (308, {}), (310, {'value': '$binop_irshift306.2'}), (312, {'res': '$a312.3'}), (314, {'res': '$a314.4'}), (316, {'op': '*=', 'lhs': '$a312.3', 'rhs': '$a314.4', 'res': '$binop_imul316.5'}), (318, {}), (320, {'value': '$binop_imul316.5'}), (322, {'res': '$exp322.6'}), (324, {'res': '$const324.7'}), (326, {'lhs': '$exp322.6', 'rhs': '$const324.7', 'res': '$326compare_op.8'}), (328, {}), (330, {}), (332, {'pred': '$326compare_op.8'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={334: (), 282: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=334 nstack_initial=0): -AdaptBlockInfo(insts=((334, {'res': '$invert334.0'}), (336, {'pred': '$invert334.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={338: (), 348: ()}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=338 nstack_initial=0): -AdaptBlockInfo(insts=((338, {'res': '$const338.0'}), (340, {'res': '$r340.1'}), (342, {'op': '/', 'lhs': '$const338.0', 'rhs': '$r340.1', 'res': '$binop_truediv342.2'}), (344, {}), (346, {})), outgoing_phis={'$phi350.0': '$binop_truediv342.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={350: ('$binop_truediv342.2',)}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=348 nstack_initial=0): -AdaptBlockInfo(insts=((348, {'res': '$r348.0'}),), outgoing_phis={'$phi350.0': '$r348.0'}, blockstack=(), active_try_block=None, outgoing_edgepushed={350: ('$r348.0',)}) -13:52:52,631 numba.core.byteflow DEBUG block_infos State(pc_initial=350 nstack_initial=1): -AdaptBlockInfo(insts=((350, {'retval': '$phi350.0', 'castval': '$350return_value.1'}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,633 numba.core.interpreter DEBUG label 0: - a = arg(0, name=a) ['a'] - b = arg(1, name=b) ['b'] - $8load_deref.1 = freevar(tp: float64) ['$8load_deref.1'] - $const10.2 = const(int, 1) ['$const10.2'] - r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) ['$8load_deref.1', '$const10.2', 'r'] - $30load_deref.5 = freevar(tp: float64) ['$30load_deref.5'] - a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) ['$30load_deref.5', 'a', 'a.1'] - $const52.9 = const(int, 0) ['$const52.9'] - $54compare_op.10 = b < $const52.9 ['$54compare_op.10', '$const52.9', 'b'] - bool60 = global(bool: ) ['bool60'] - $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) ['$54compare_op.10', '$60pred', 'bool60'] - branch $60pred, 62, 182 ['$60pred'] -label 62: - invert = const(bool, True) ['invert'] - exp = unary(fn=, value=b) ['b', 'exp'] - $const74.4 = const(int, 0) ['$const74.4'] - $76compare_op.5 = exp < $const74.4 ['$76compare_op.5', '$const74.4', 'exp'] - bool82 = global(bool: ) ['bool82'] - $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) ['$76compare_op.5', '$82pred', 'bool82'] - branch $82pred, 84, 98 ['$82pred'] -label 84: - $84load_global.0 = global(OverflowError: ) ['$84load_global.0'] - raise $84load_global.0 ['$84load_global.0'] -label 98: - $98load_deref.0 = freevar(is_integer: False) ['$98load_deref.0'] - bool100 = global(bool: ) ['bool100'] - $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) ['$100pred', '$98load_deref.0', 'bool100'] - branch $100pred, 102, 180 ['$100pred'] -label 102: - $const104.1 = const(int, 0) ['$const104.1'] - $106compare_op.2 = a.1 == $const104.1 ['$106compare_op.2', '$const104.1', 'a.1'] - bool112 = global(bool: ) ['bool112'] - $112pred = call bool112($106compare_op.2, func=bool112, args=(Var($106compare_op.2, numbers.py:224),), kws=(), vararg=None, varkwarg=None, target=None) ['$106compare_op.2', '$112pred', 'bool112'] - branch $112pred, 114, 152 ['$112pred'] -label 114: - $114load_deref.0 = freevar(zerodiv_return: False) ['$114load_deref.0'] - bool116 = global(bool: ) ['bool116'] - $116pred = call bool116($114load_deref.0, func=bool116, args=(Var($114load_deref.0, numbers.py:225),), kws=(), vararg=None, varkwarg=None, target=None) ['$114load_deref.0', '$116pred', 'bool116'] - branch $116pred, 118, 122 ['$116pred'] -label 118: - $118load_deref.0 = freevar(zerodiv_return: False) ['$118load_deref.0'] - $120return_value.1 = cast(value=$118load_deref.0) ['$118load_deref.0', '$120return_value.1'] - return $120return_value.1 ['$120return_value.1'] -label 122: - $122load_global.0 = global(ZeroDivisionError: ) ['$122load_global.0'] - $const134.2 = const(str, 0 cannot be raised to a negative power) ['$const134.2'] - $140call.3 = call $122load_global.0($const134.2, func=$122load_global.0, args=[Var($const134.2, numbers.py:228)], kws=(), vararg=None, varkwarg=None, target=None) ['$122load_global.0', '$140call.3', '$const134.2'] - raise $140call.3 ['$140call.3'] -label 152: - $const154.1 = const(int, 1) ['$const154.1'] - $156compare_op.2 = a.1 != $const154.1 ['$156compare_op.2', '$const154.1', 'a.1'] - bool162 = global(bool: ) ['bool162'] - $162pred = call bool162($156compare_op.2, func=bool162, args=(Var($156compare_op.2, numbers.py:229),), kws=(), vararg=None, varkwarg=None, target=None) ['$156compare_op.2', '$162pred', 'bool162'] - branch $162pred, 164, 180 ['$162pred'] -label 164: - $const166.1 = const(int, -1) ['$const166.1'] - $168compare_op.2 = a.1 != $const166.1 ['$168compare_op.2', '$const166.1', 'a.1'] - bool174 = global(bool: ) ['bool174'] - $174pred = call bool174($168compare_op.2, func=bool174, args=(Var($168compare_op.2, numbers.py:229),), kws=(), vararg=None, varkwarg=None, target=None) ['$168compare_op.2', '$174pred', 'bool174'] - branch $174pred, 176, 180 ['$174pred'] -label 176: - $const176.0 = const(int, 0) ['$const176.0'] - $178return_value.1 = cast(value=$const176.0) ['$178return_value.1', '$const176.0'] - return $178return_value.1 ['$178return_value.1'] -label 180: - jump 190 [] -label 182: - invert = const(bool, False) ['invert'] - exp = b ['b', 'exp'] - jump 190 [] -label 190: - $const192.1 = const(int, 65536) ['$const192.1'] - $194compare_op.2 = exp > $const192.1 ['$194compare_op.2', '$const192.1', 'exp'] - bool200 = global(bool: ) ['bool200'] - $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) ['$194compare_op.2', '$200pred', 'bool200'] - branch $200pred, 202, 270 ['$200pred'] -label 202: - $202load_global.0 = global(math: ) ['$202load_global.0'] - $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) ['$202load_global.0', '$214load_attr.2'] - $226load_global.4 = global(float: ) ['$226load_global.4'] - $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) ['$226load_global.4', '$244call.7', 'b'] - $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) ['$214load_attr.2', '$244call.7', '$258call.8', 'a.1'] - $268return_value.9 = cast(value=$258call.8) ['$258call.8', '$268return_value.9'] - return $268return_value.9 ['$268return_value.9'] -label 270: - $const272.1 = const(int, 0) ['$const272.1'] - $274compare_op.2 = exp != $const272.1 ['$274compare_op.2', '$const272.1', 'exp'] - bool280 = global(bool: ) ['bool280'] - $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) ['$274compare_op.2', '$280pred', 'bool280'] - branch $280pred, 282, 334 ['$280pred'] -label 282: - $const284.1 = const(int, 1) ['$const284.1'] - $binop_and_286.2 = exp & $const284.1 ['$binop_and_286.2', '$const284.1', 'exp'] - bool290 = global(bool: ) ['bool290'] - $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) ['$290pred', '$binop_and_286.2', 'bool290'] - branch $290pred, 292, 302 ['$290pred'] -label 292: - $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_imul296.2', 'a.1', 'r'] - r = $binop_imul296.2 ['$binop_imul296.2', 'r'] - jump 302 [] -label 302: - $const304.1 = const(int, 1) ['$const304.1'] - $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_irshift306.2', '$const304.1', 'exp'] - exp = $binop_irshift306.2 ['$binop_irshift306.2', 'exp'] - $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) ['$binop_imul316.5', 'a.1', 'a.1'] - a.1 = $binop_imul316.5 ['$binop_imul316.5', 'a.1'] - $const324.7 = const(int, 0) ['$const324.7'] - $326compare_op.8 = exp != $const324.7 ['$326compare_op.8', '$const324.7', 'exp'] - bool332 = global(bool: ) ['bool332'] - $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) ['$326compare_op.8', '$332pred', 'bool332'] - branch $332pred, 282, 334 ['$332pred'] -label 334: - bool336 = global(bool: ) ['bool336'] - $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) ['$336pred', 'bool336', 'invert'] - branch $336pred, 338, 348 ['$336pred'] -label 338: - $const338.0 = const(float, 1.0) ['$const338.0'] - $binop_truediv342.2 = $const338.0 / r ['$binop_truediv342.2', '$const338.0', 'r'] - $phi350.0 = $binop_truediv342.2 ['$binop_truediv342.2', '$phi350.0'] - jump 350 [] -label 348: - $phi350.0 = r ['$phi350.0', 'r'] - jump 350 [] -label 350: - $350return_value.1 = cast(value=$phi350.0) ['$350return_value.1', '$phi350.0'] - return $350return_value.1 ['$350return_value.1'] - -13:52:52,642 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:52,642 numba.core.ssa DEBUG Running -13:52:52,642 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,642 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,642 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,642 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,642 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,642 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,642 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,643 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,643 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,643 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,643 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,643 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,643 numba.core.ssa DEBUG ==== SSA block analysis pass on 62 -13:52:52,643 numba.core.ssa DEBUG Running -13:52:52,643 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,643 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,643 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,643 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,643 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,643 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,643 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,643 numba.core.ssa DEBUG ==== SSA block analysis pass on 84 -13:52:52,643 numba.core.ssa DEBUG Running -13:52:52,643 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,643 numba.core.ssa DEBUG on stmt: raise -13:52:52,643 numba.core.ssa DEBUG ==== SSA block analysis pass on 98 -13:52:52,643 numba.core.ssa DEBUG Running -13:52:52,643 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,643 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,643 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,643 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,643 numba.core.ssa DEBUG ==== SSA block analysis pass on 180 -13:52:52,643 numba.core.ssa DEBUG Running -13:52:52,643 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,643 numba.core.ssa DEBUG ==== SSA block analysis pass on 182 -13:52:52,643 numba.core.ssa DEBUG Running -13:52:52,643 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:52,643 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,643 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,643 numba.core.ssa DEBUG ==== SSA block analysis pass on 190 -13:52:52,644 numba.core.ssa DEBUG Running -13:52:52,644 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,644 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,644 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,644 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,644 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,644 numba.core.ssa DEBUG ==== SSA block analysis pass on 202 -13:52:52,644 numba.core.ssa DEBUG Running -13:52:52,644 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,644 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,644 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,644 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,644 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,644 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,644 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,644 numba.core.ssa DEBUG ==== SSA block analysis pass on 270 -13:52:52,644 numba.core.ssa DEBUG Running -13:52:52,644 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,644 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,644 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,644 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,644 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,644 numba.core.ssa DEBUG ==== SSA block analysis pass on 282 -13:52:52,644 numba.core.ssa DEBUG Running -13:52:52,644 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,644 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,644 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,644 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,644 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,645 numba.core.ssa DEBUG ==== SSA block analysis pass on 292 -13:52:52,645 numba.core.ssa DEBUG Running -13:52:52,645 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,645 numba.core.ssa DEBUG on stmt: r = $binop_imul296.2 -13:52:52,645 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,645 numba.core.ssa DEBUG ==== SSA block analysis pass on 302 -13:52:52,645 numba.core.ssa DEBUG Running -13:52:52,645 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,645 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,645 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,645 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,645 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:52,645 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,645 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,645 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,645 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,645 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,645 numba.core.ssa DEBUG ==== SSA block analysis pass on 334 -13:52:52,645 numba.core.ssa DEBUG Running -13:52:52,645 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,645 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,645 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,645 numba.core.ssa DEBUG ==== SSA block analysis pass on 338 -13:52:52,645 numba.core.ssa DEBUG Running -13:52:52,645 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,645 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r -13:52:52,645 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,645 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,645 numba.core.ssa DEBUG ==== SSA block analysis pass on 348 -13:52:52,645 numba.core.ssa DEBUG Running -13:52:52,645 numba.core.ssa DEBUG on stmt: $phi350.0 = r -13:52:52,645 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,645 numba.core.ssa DEBUG ==== SSA block analysis pass on 350 -13:52:52,646 numba.core.ssa DEBUG Running -13:52:52,646 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,646 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,647 numba.core.ssa DEBUG defs defaultdict(, - {'$100pred': [(, - 98)], - '$194compare_op.2': [(, - 190)], - '$200pred': [(, - 190)], - '$202load_global.0': [(, - 202)], - '$214load_attr.2': [(, - 202)], - '$226load_global.4': [(, - 202)], - '$244call.7': [(, - 202)], - '$258call.8': [(, - 202)], - '$268return_value.9': [(, - 202)], - '$274compare_op.2': [(, - 270)], - '$280pred': [(, - 270)], - '$290pred': [(, - 282)], - '$30load_deref.5': [(, - 0)], - '$326compare_op.8': [(, - 302)], - '$332pred': [(, - 302)], - '$336pred': [(, - 334)], - '$350return_value.1': [(, - 350)], - '$54compare_op.10': [(, - 0)], - '$60pred': [(, - 0)], - '$76compare_op.5': [(, - 62)], - '$82pred': [(, - 62)], - '$84load_global.0': [(, - 84)], - '$8load_deref.1': [(, - 0)], - '$98load_deref.0': [(, - 98)], - '$binop_and_286.2': [(, - 282)], - '$binop_imul296.2': [(, - 292)], - '$binop_imul316.5': [(, - 302)], - '$binop_irshift306.2': [(, - 302)], - '$binop_truediv342.2': [(, - 338)], - '$const10.2': [(, - 0)], - '$const192.1': [(, - 190)], - '$const272.1': [(, - 270)], - '$const284.1': [(, - 282)], - '$const304.1': [(, - 302)], - '$const324.7': [(, - 302)], - '$const338.0': [(, - 338)], - '$const52.9': [(, - 0)], - '$const74.4': [(, - 62)], - '$phi350.0': [(, - 338), - (, - 348)], - 'a': [(, 0)], - 'a.1': [(, 0), - (, - 302)], - 'b': [(, 0)], - 'bool100': [(, - 98)], - 'bool200': [(, - 190)], - 'bool280': [(, - 270)], - 'bool290': [(, - 282)], - 'bool332': [(, - 302)], - 'bool336': [(, - 334)], - 'bool60': [(, - 0)], - 'bool82': [(, - 62)], - 'exp': [(, 62), - (, 182), - (, - 302)], - 'invert': [(, - 62), - (, - 182)], - 'r': [(, 0), - (, 292)]}) -13:52:52,647 numba.core.ssa DEBUG SSA violators -13:52:52,647 numba.core.ssa DEBUG Fix SSA violator on var r -13:52:52,647 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,647 numba.core.ssa DEBUG Running -13:52:52,647 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,647 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,647 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,647 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,647 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,647 numba.core.ssa DEBUG first assign: r -13:52:52,647 numba.core.ssa DEBUG replaced with: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,647 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,647 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,647 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,647 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,647 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,647 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,647 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,647 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,647 numba.core.ssa DEBUG Running -13:52:52,647 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,647 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,647 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,647 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,647 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,648 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,648 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,648 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,648 numba.core.ssa DEBUG Running -13:52:52,648 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,648 numba.core.ssa DEBUG on stmt: raise -13:52:52,648 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,648 numba.core.ssa DEBUG Running -13:52:52,648 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,648 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,648 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,648 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,648 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,648 numba.core.ssa DEBUG Running -13:52:52,648 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,648 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,648 numba.core.ssa DEBUG Running -13:52:52,648 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:52,648 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,648 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,648 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,648 numba.core.ssa DEBUG Running -13:52:52,648 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,648 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,648 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,648 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,648 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,648 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,648 numba.core.ssa DEBUG Running -13:52:52,648 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,648 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,648 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,648 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,648 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,648 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,649 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,649 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,649 numba.core.ssa DEBUG Running -13:52:52,649 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,649 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,649 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,649 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,649 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,649 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,649 numba.core.ssa DEBUG Running -13:52:52,649 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,649 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,649 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,649 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,649 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,649 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,649 numba.core.ssa DEBUG Running -13:52:52,649 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,649 numba.core.ssa DEBUG on stmt: r = $binop_imul296.2 -13:52:52,649 numba.core.ssa DEBUG replaced with: r.1 = $binop_imul296.2 -13:52:52,649 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,649 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,649 numba.core.ssa DEBUG Running -13:52:52,649 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,649 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,649 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,649 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,649 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:52,649 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,649 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,649 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,649 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,649 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,649 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,649 numba.core.ssa DEBUG Running -13:52:52,650 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,650 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,650 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,650 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,650 numba.core.ssa DEBUG Running -13:52:52,650 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,650 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r -13:52:52,650 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,650 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,650 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,650 numba.core.ssa DEBUG Running -13:52:52,650 numba.core.ssa DEBUG on stmt: $phi350.0 = r -13:52:52,650 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,650 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,650 numba.core.ssa DEBUG Running -13:52:52,650 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,650 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,650 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 292: []}) -13:52:52,650 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,650 numba.core.ssa DEBUG Running -13:52:52,650 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,650 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,650 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,650 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,650 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,650 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,650 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,650 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,650 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,650 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,650 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,650 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,650 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,650 numba.core.ssa DEBUG Running -13:52:52,651 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,651 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,651 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,651 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,651 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,651 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,651 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,651 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,651 numba.core.ssa DEBUG Running -13:52:52,651 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,651 numba.core.ssa DEBUG on stmt: raise -13:52:52,651 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,651 numba.core.ssa DEBUG Running -13:52:52,651 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,651 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,651 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,651 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,651 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,651 numba.core.ssa DEBUG Running -13:52:52,651 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,651 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,651 numba.core.ssa DEBUG Running -13:52:52,651 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:52,651 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,651 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,651 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,651 numba.core.ssa DEBUG Running -13:52:52,651 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,651 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,651 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,651 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,651 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,651 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,651 numba.core.ssa DEBUG Running -13:52:52,652 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,652 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,652 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,652 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,652 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,652 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,652 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,652 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,652 numba.core.ssa DEBUG Running -13:52:52,652 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,652 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,652 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,652 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,652 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,652 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,652 numba.core.ssa DEBUG Running -13:52:52,652 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,652 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,652 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,652 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,652 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,652 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,652 numba.core.ssa DEBUG Running -13:52:52,652 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,652 numba.core.ssa DEBUG find_def var='r' stmt=$binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,652 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:52,652 numba.core.ssa DEBUG idom 282 from label 292 -13:52:52,652 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:52,652 numba.core.ssa DEBUG find_def_from_top label 282 -13:52:52,652 numba.core.ssa DEBUG insert phi node r.2 = phi(incoming_values=[], incoming_blocks=[]) at 282 -13:52:52,652 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:52,652 numba.core.ssa DEBUG find_def_from_top label 302 -13:52:52,653 numba.core.ssa DEBUG insert phi node r.3 = phi(incoming_values=[], incoming_blocks=[]) at 302 -13:52:52,653 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:52,653 numba.core.ssa DEBUG incoming_def r.2 = phi(incoming_values=[], incoming_blocks=[]) -13:52:52,653 numba.core.ssa DEBUG find_def_from_bottom label 292 -13:52:52,653 numba.core.ssa DEBUG incoming_def r.1 = $binop_imul296.2 -13:52:52,653 numba.core.ssa DEBUG incoming_def r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,653 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:52,653 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:52,653 numba.core.ssa DEBUG idom 190 from label 270 -13:52:52,653 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:52,653 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:52,653 numba.core.ssa DEBUG idom 0 from label 190 -13:52:52,653 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:52,653 numba.core.ssa DEBUG incoming_def r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,653 numba.core.ssa DEBUG replaced with: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,653 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,653 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,653 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,653 numba.core.ssa DEBUG Running -13:52:52,653 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,653 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,653 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,653 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,653 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:52,653 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,653 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,653 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,653 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,653 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,653 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,653 numba.core.ssa DEBUG Running -13:52:52,653 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,653 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,654 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,654 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,654 numba.core.ssa DEBUG Running -13:52:52,654 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,654 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r -13:52:52,654 numba.core.ssa DEBUG find_def var='r' stmt=$binop_truediv342.2 = $const338.0 / r -13:52:52,654 numba.core.ssa DEBUG find_def_from_top label 338 -13:52:52,654 numba.core.ssa DEBUG idom 334 from label 338 -13:52:52,654 numba.core.ssa DEBUG find_def_from_bottom label 334 -13:52:52,654 numba.core.ssa DEBUG find_def_from_top label 334 -13:52:52,654 numba.core.ssa DEBUG insert phi node r.4 = phi(incoming_values=[], incoming_blocks=[]) at 334 -13:52:52,654 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:52,654 numba.core.ssa DEBUG incoming_def r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,654 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:52,654 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:52,654 numba.core.ssa DEBUG idom 190 from label 270 -13:52:52,654 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:52,654 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:52,654 numba.core.ssa DEBUG idom 0 from label 190 -13:52:52,654 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:52,654 numba.core.ssa DEBUG incoming_def r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,654 numba.core.ssa DEBUG replaced with: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,654 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,654 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,654 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,654 numba.core.ssa DEBUG Running -13:52:52,654 numba.core.ssa DEBUG on stmt: $phi350.0 = r -13:52:52,654 numba.core.ssa DEBUG find_def var='r' stmt=$phi350.0 = r -13:52:52,654 numba.core.ssa DEBUG find_def_from_top label 348 -13:52:52,654 numba.core.ssa DEBUG idom 334 from label 348 -13:52:52,654 numba.core.ssa DEBUG find_def_from_bottom label 334 -13:52:52,654 numba.core.ssa DEBUG replaced with: $phi350.0 = r.4 -13:52:52,654 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,654 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,654 numba.core.ssa DEBUG Running -13:52:52,655 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,655 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,655 numba.core.ssa DEBUG Fix SSA violator on var a.1 -13:52:52,655 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,655 numba.core.ssa DEBUG Running -13:52:52,655 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,655 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,655 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,655 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,655 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,655 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,655 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,655 numba.core.ssa DEBUG first assign: a.1 -13:52:52,655 numba.core.ssa DEBUG replaced with: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,655 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,655 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,655 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,655 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,655 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,655 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,655 numba.core.ssa DEBUG Running -13:52:52,655 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,655 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,655 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,655 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,655 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,655 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,655 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,655 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,655 numba.core.ssa DEBUG Running -13:52:52,655 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,655 numba.core.ssa DEBUG on stmt: raise -13:52:52,655 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,655 numba.core.ssa DEBUG Running -13:52:52,656 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,656 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,656 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,656 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,656 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,656 numba.core.ssa DEBUG Running -13:52:52,656 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,656 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,656 numba.core.ssa DEBUG Running -13:52:52,656 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:52,656 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,656 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,656 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,656 numba.core.ssa DEBUG Running -13:52:52,656 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,656 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,656 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,656 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,656 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,656 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,656 numba.core.ssa DEBUG Running -13:52:52,656 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,656 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,656 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,656 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,656 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,656 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,656 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,656 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,656 numba.core.ssa DEBUG Running -13:52:52,656 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,656 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,656 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,656 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,657 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,657 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,657 numba.core.ssa DEBUG Running -13:52:52,657 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,657 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,657 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,657 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,657 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,657 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,657 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,657 numba.core.ssa DEBUG Running -13:52:52,657 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,657 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,657 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,657 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,657 numba.core.ssa DEBUG Running -13:52:52,657 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,657 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,657 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,657 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,657 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,657 numba.core.ssa DEBUG on stmt: a.1 = $binop_imul316.5 -13:52:52,657 numba.core.ssa DEBUG replaced with: a.1.1 = $binop_imul316.5 -13:52:52,657 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,657 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,657 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,657 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,657 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,657 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,657 numba.core.ssa DEBUG Running -13:52:52,657 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,657 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,657 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,658 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,658 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,658 numba.core.ssa DEBUG Running -13:52:52,658 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,658 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,658 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,658 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,658 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,658 numba.core.ssa DEBUG Running -13:52:52,658 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:52,658 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,658 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,658 numba.core.ssa DEBUG Running -13:52:52,658 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,658 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,658 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {0: [], - 302: []}) -13:52:52,658 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,658 numba.core.ssa DEBUG Running -13:52:52,658 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,658 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,658 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,658 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,658 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,658 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,658 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,658 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,658 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,658 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,658 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,658 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,658 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,658 numba.core.ssa DEBUG Running -13:52:52,658 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,658 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,659 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,659 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,659 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,659 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,659 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,659 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,659 numba.core.ssa DEBUG Running -13:52:52,659 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,659 numba.core.ssa DEBUG on stmt: raise -13:52:52,659 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,659 numba.core.ssa DEBUG Running -13:52:52,659 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,659 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,659 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,659 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,659 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,659 numba.core.ssa DEBUG Running -13:52:52,659 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,659 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,659 numba.core.ssa DEBUG Running -13:52:52,659 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:52,659 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,659 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,659 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,659 numba.core.ssa DEBUG Running -13:52:52,659 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,659 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,659 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,659 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,659 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,659 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,659 numba.core.ssa DEBUG Running -13:52:52,659 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,659 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,659 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,660 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,660 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,660 numba.core.ssa DEBUG find_def var='a.1' stmt=$258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,660 numba.core.ssa DEBUG find_def_from_top label 202 -13:52:52,660 numba.core.ssa DEBUG idom 190 from label 202 -13:52:52,660 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:52,660 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:52,660 numba.core.ssa DEBUG idom 0 from label 190 -13:52:52,660 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:52,660 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,660 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,660 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,660 numba.core.ssa DEBUG Running -13:52:52,660 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,660 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,660 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,660 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,660 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,660 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,660 numba.core.ssa DEBUG Running -13:52:52,660 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,660 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,660 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,660 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,660 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,660 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,660 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,660 numba.core.ssa DEBUG Running -13:52:52,660 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,660 numba.core.ssa DEBUG find_def var='a.1' stmt=$binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,660 numba.core.ssa DEBUG find_def_from_top label 292 -13:52:52,660 numba.core.ssa DEBUG idom 282 from label 292 -13:52:52,660 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:52,661 numba.core.ssa DEBUG find_def_from_top label 282 -13:52:52,661 numba.core.ssa DEBUG insert phi node a.1.2 = phi(incoming_values=[], incoming_blocks=[]) at 282 -13:52:52,661 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:52,661 numba.core.ssa DEBUG incoming_def a.1.1 = $binop_imul316.5 -13:52:52,661 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:52,661 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:52,661 numba.core.ssa DEBUG idom 190 from label 270 -13:52:52,661 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:52,661 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:52,661 numba.core.ssa DEBUG idom 0 from label 190 -13:52:52,661 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:52,661 numba.core.ssa DEBUG incoming_def a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,661 numba.core.ssa DEBUG replaced with: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,661 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,661 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,661 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,661 numba.core.ssa DEBUG Running -13:52:52,661 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,661 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,661 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,661 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,661 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,661 numba.core.ssa DEBUG find_def var='a.1' stmt=$binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1, rhs=a.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,661 numba.core.ssa DEBUG find_def_from_top label 302 -13:52:52,661 numba.core.ssa DEBUG idom 282 from label 302 -13:52:52,661 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:52,661 numba.core.ssa DEBUG replaced with: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,661 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:52,661 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,661 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,661 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,661 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,661 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,662 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,662 numba.core.ssa DEBUG Running -13:52:52,662 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,662 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,662 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,662 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,662 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,662 numba.core.ssa DEBUG Running -13:52:52,662 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,662 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,662 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,662 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,662 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,662 numba.core.ssa DEBUG Running -13:52:52,662 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:52,662 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,662 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,662 numba.core.ssa DEBUG Running -13:52:52,662 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,662 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,662 numba.core.ssa DEBUG Fix SSA violator on var invert -13:52:52,662 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,662 numba.core.ssa DEBUG Running -13:52:52,662 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,662 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,662 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,662 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,662 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,662 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,662 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,662 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,662 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,662 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,662 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,663 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,663 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,663 numba.core.ssa DEBUG Running -13:52:52,663 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,663 numba.core.ssa DEBUG first assign: invert -13:52:52,663 numba.core.ssa DEBUG replaced with: invert = const(bool, True) -13:52:52,663 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,663 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,663 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,663 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,663 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,663 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,663 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,663 numba.core.ssa DEBUG Running -13:52:52,663 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,663 numba.core.ssa DEBUG on stmt: raise -13:52:52,663 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,663 numba.core.ssa DEBUG Running -13:52:52,663 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,663 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,663 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,663 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,663 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,663 numba.core.ssa DEBUG Running -13:52:52,663 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,663 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,663 numba.core.ssa DEBUG Running -13:52:52,663 numba.core.ssa DEBUG on stmt: invert = const(bool, False) -13:52:52,663 numba.core.ssa DEBUG replaced with: invert.1 = const(bool, False) -13:52:52,663 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,663 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,663 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,663 numba.core.ssa DEBUG Running -13:52:52,663 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,663 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,663 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,664 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,664 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,664 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,664 numba.core.ssa DEBUG Running -13:52:52,664 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,664 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,664 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,664 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,664 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,664 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,664 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,664 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,664 numba.core.ssa DEBUG Running -13:52:52,664 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,664 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,664 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,664 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,664 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,664 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,664 numba.core.ssa DEBUG Running -13:52:52,664 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:52,664 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,664 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,664 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,664 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,664 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,664 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,664 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,664 numba.core.ssa DEBUG Running -13:52:52,664 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,664 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,664 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,664 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,664 numba.core.ssa DEBUG Running -13:52:52,665 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,665 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,665 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,665 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,665 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,665 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:52,665 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,665 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,665 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,665 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,665 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,665 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,665 numba.core.ssa DEBUG Running -13:52:52,665 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,665 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,665 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,665 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,665 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,665 numba.core.ssa DEBUG Running -13:52:52,665 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,665 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,665 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,665 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,665 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,665 numba.core.ssa DEBUG Running -13:52:52,665 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:52,665 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,665 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,665 numba.core.ssa DEBUG Running -13:52:52,665 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,665 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,665 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {62: [], - 182: []}) -13:52:52,665 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,665 numba.core.ssa DEBUG Running -13:52:52,665 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,666 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,666 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,666 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,666 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,666 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,666 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,666 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,666 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,666 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,666 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,666 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,666 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,666 numba.core.ssa DEBUG Running -13:52:52,666 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,666 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,666 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,666 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,666 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,666 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,666 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,666 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,666 numba.core.ssa DEBUG Running -13:52:52,666 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,666 numba.core.ssa DEBUG on stmt: raise -13:52:52,666 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,666 numba.core.ssa DEBUG Running -13:52:52,666 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,666 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,666 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,666 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,666 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,666 numba.core.ssa DEBUG Running -13:52:52,666 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,666 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,667 numba.core.ssa DEBUG Running -13:52:52,667 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:52,667 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,667 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,667 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,667 numba.core.ssa DEBUG Running -13:52:52,667 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,667 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,667 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,667 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,667 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,667 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,667 numba.core.ssa DEBUG Running -13:52:52,667 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,667 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,667 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,667 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,667 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,667 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,667 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,667 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,667 numba.core.ssa DEBUG Running -13:52:52,667 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,667 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,667 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,667 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,667 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,667 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,667 numba.core.ssa DEBUG Running -13:52:52,667 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:52,667 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,667 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,667 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,668 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,668 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,668 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,668 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,668 numba.core.ssa DEBUG Running -13:52:52,668 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,668 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,668 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,668 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,668 numba.core.ssa DEBUG Running -13:52:52,668 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,668 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,668 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,668 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,668 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,668 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:52,668 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,668 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,668 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,668 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,668 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,668 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,668 numba.core.ssa DEBUG Running -13:52:52,668 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,668 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,668 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,668 numba.core.ssa DEBUG find_def var='invert' stmt=$336pred = call bool336(invert, func=bool336, args=(Var(invert, numbers.py:219),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,668 numba.core.ssa DEBUG find_def_from_top label 334 -13:52:52,668 numba.core.ssa DEBUG idom 270 from label 334 -13:52:52,668 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:52,668 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:52,668 numba.core.ssa DEBUG idom 190 from label 270 -13:52:52,668 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:52,668 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:52,669 numba.core.ssa DEBUG insert phi node invert.2 = phi(incoming_values=[], incoming_blocks=[]) at 190 -13:52:52,669 numba.core.ssa DEBUG find_def_from_bottom label 180 -13:52:52,669 numba.core.ssa DEBUG find_def_from_top label 180 -13:52:52,669 numba.core.ssa DEBUG idom 98 from label 180 -13:52:52,669 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,669 numba.core.ssa DEBUG find_def_from_top label 98 -13:52:52,669 numba.core.ssa DEBUG idom 62 from label 98 -13:52:52,669 numba.core.ssa DEBUG find_def_from_bottom label 62 -13:52:52,669 numba.core.ssa DEBUG incoming_def invert = const(bool, True) -13:52:52,669 numba.core.ssa DEBUG find_def_from_bottom label 182 -13:52:52,669 numba.core.ssa DEBUG incoming_def invert.1 = const(bool, False) -13:52:52,669 numba.core.ssa DEBUG replaced with: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,669 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,669 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,669 numba.core.ssa DEBUG Running -13:52:52,669 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,669 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,669 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,669 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,669 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,669 numba.core.ssa DEBUG Running -13:52:52,669 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:52,669 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,669 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,669 numba.core.ssa DEBUG Running -13:52:52,669 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,669 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,669 numba.core.ssa DEBUG Fix SSA violator on var exp -13:52:52,669 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,669 numba.core.ssa DEBUG Running -13:52:52,669 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,669 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,669 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,669 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,669 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,670 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,670 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,670 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,670 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,670 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,670 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,670 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,670 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,670 numba.core.ssa DEBUG Running -13:52:52,670 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,670 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,670 numba.core.ssa DEBUG first assign: exp -13:52:52,670 numba.core.ssa DEBUG replaced with: exp = unary(fn=, value=b) -13:52:52,670 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,670 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,670 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,670 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,670 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,670 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,670 numba.core.ssa DEBUG Running -13:52:52,670 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,670 numba.core.ssa DEBUG on stmt: raise -13:52:52,670 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,670 numba.core.ssa DEBUG Running -13:52:52,670 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,670 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,670 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,670 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,670 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,670 numba.core.ssa DEBUG Running -13:52:52,670 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,670 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,670 numba.core.ssa DEBUG Running -13:52:52,670 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:52,670 numba.core.ssa DEBUG on stmt: exp = b -13:52:52,671 numba.core.ssa DEBUG replaced with: exp.1 = b -13:52:52,671 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,671 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,671 numba.core.ssa DEBUG Running -13:52:52,671 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:52,671 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,671 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,671 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,671 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,671 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,671 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,671 numba.core.ssa DEBUG Running -13:52:52,671 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,671 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,671 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,671 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,671 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,671 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,671 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,671 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,671 numba.core.ssa DEBUG Running -13:52:52,671 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,671 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,671 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,671 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,671 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,671 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,671 numba.core.ssa DEBUG Running -13:52:52,671 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:52,671 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,671 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,671 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,671 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,671 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,672 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,672 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,672 numba.core.ssa DEBUG Running -13:52:52,672 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,672 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,672 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,672 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,672 numba.core.ssa DEBUG Running -13:52:52,672 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,672 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,672 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,672 numba.core.ssa DEBUG on stmt: exp = $binop_irshift306.2 -13:52:52,672 numba.core.ssa DEBUG replaced with: exp.2 = $binop_irshift306.2 -13:52:52,672 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,672 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:52,672 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,672 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,672 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,672 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,672 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,672 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,672 numba.core.ssa DEBUG Running -13:52:52,672 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,672 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,672 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,672 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,672 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,672 numba.core.ssa DEBUG Running -13:52:52,672 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,672 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,672 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,672 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,672 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,672 numba.core.ssa DEBUG Running -13:52:52,672 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:52,672 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,673 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,673 numba.core.ssa DEBUG Running -13:52:52,673 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,673 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,673 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {62: [], - 182: [], - 302: []}) -13:52:52,673 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,673 numba.core.ssa DEBUG Running -13:52:52,673 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,673 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,673 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,673 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,673 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,673 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,673 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,673 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,673 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,673 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,673 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,673 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,673 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,673 numba.core.ssa DEBUG Running -13:52:52,673 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,673 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,673 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,673 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,673 numba.core.ssa DEBUG find_def var='exp' stmt=$76compare_op.5 = exp < $const74.4 -13:52:52,673 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,673 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,673 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,673 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,673 numba.core.ssa DEBUG Running -13:52:52,673 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,674 numba.core.ssa DEBUG on stmt: raise -13:52:52,674 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,674 numba.core.ssa DEBUG Running -13:52:52,674 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,674 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,674 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,674 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,674 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,674 numba.core.ssa DEBUG Running -13:52:52,674 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,674 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,674 numba.core.ssa DEBUG Running -13:52:52,674 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:52,674 numba.core.ssa DEBUG on stmt: exp.1 = b -13:52:52,674 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,674 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,674 numba.core.ssa DEBUG Running -13:52:52,674 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:52,674 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,674 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp > $const192.1 -13:52:52,674 numba.core.ssa DEBUG find_def var='exp' stmt=$194compare_op.2 = exp > $const192.1 -13:52:52,674 numba.core.ssa DEBUG find_def_from_top label 190 -13:52:52,674 numba.core.ssa DEBUG insert phi node exp.3 = phi(incoming_values=[], incoming_blocks=[]) at 190 -13:52:52,674 numba.core.ssa DEBUG find_def_from_bottom label 180 -13:52:52,674 numba.core.ssa DEBUG find_def_from_top label 180 -13:52:52,674 numba.core.ssa DEBUG idom 98 from label 180 -13:52:52,674 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,674 numba.core.ssa DEBUG find_def_from_top label 98 -13:52:52,674 numba.core.ssa DEBUG idom 62 from label 98 -13:52:52,674 numba.core.ssa DEBUG find_def_from_bottom label 62 -13:52:52,674 numba.core.ssa DEBUG incoming_def exp = unary(fn=, value=b) -13:52:52,674 numba.core.ssa DEBUG find_def_from_bottom label 182 -13:52:52,674 numba.core.ssa DEBUG incoming_def exp.1 = b -13:52:52,674 numba.core.ssa DEBUG replaced with: $194compare_op.2 = exp.3 > $const192.1 -13:52:52,675 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,675 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,675 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,675 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,675 numba.core.ssa DEBUG Running -13:52:52,675 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,675 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,675 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,675 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,675 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,675 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,675 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,675 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,675 numba.core.ssa DEBUG Running -13:52:52,675 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,675 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp != $const272.1 -13:52:52,675 numba.core.ssa DEBUG find_def var='exp' stmt=$274compare_op.2 = exp != $const272.1 -13:52:52,675 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:52,675 numba.core.ssa DEBUG idom 190 from label 270 -13:52:52,675 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:52,675 numba.core.ssa DEBUG replaced with: $274compare_op.2 = exp.3 != $const272.1 -13:52:52,675 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,675 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,675 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,675 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,675 numba.core.ssa DEBUG Running -13:52:52,675 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:52,675 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,675 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,675 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp & $const284.1 -13:52:52,675 numba.core.ssa DEBUG find_def var='exp' stmt=$binop_and_286.2 = exp & $const284.1 -13:52:52,675 numba.core.ssa DEBUG find_def_from_top label 282 -13:52:52,676 numba.core.ssa DEBUG insert phi node exp.4 = phi(incoming_values=[], incoming_blocks=[]) at 282 -13:52:52,676 numba.core.ssa DEBUG find_def_from_bottom label 302 -13:52:52,676 numba.core.ssa DEBUG incoming_def exp.2 = $binop_irshift306.2 -13:52:52,676 numba.core.ssa DEBUG find_def_from_bottom label 270 -13:52:52,676 numba.core.ssa DEBUG find_def_from_top label 270 -13:52:52,676 numba.core.ssa DEBUG idom 190 from label 270 -13:52:52,676 numba.core.ssa DEBUG find_def_from_bottom label 190 -13:52:52,676 numba.core.ssa DEBUG incoming_def exp.3 = phi(incoming_values=[Var(exp, numbers.py:220), Var(exp.1, numbers.py:233)], incoming_blocks=[180, 182]) -13:52:52,676 numba.core.ssa DEBUG replaced with: $binop_and_286.2 = exp.4 & $const284.1 -13:52:52,676 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,676 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,676 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,676 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,676 numba.core.ssa DEBUG Running -13:52:52,676 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,676 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,676 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,676 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,676 numba.core.ssa DEBUG Running -13:52:52,676 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,676 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,676 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,676 numba.core.ssa DEBUG find_def var='exp' stmt=$binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,676 numba.core.ssa DEBUG find_def_from_top label 302 -13:52:52,676 numba.core.ssa DEBUG idom 282 from label 302 -13:52:52,676 numba.core.ssa DEBUG find_def_from_bottom label 282 -13:52:52,676 numba.core.ssa DEBUG replaced with: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp.4, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,676 numba.core.ssa DEBUG on stmt: exp.2 = $binop_irshift306.2 -13:52:52,676 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,676 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:52,676 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,677 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp != $const324.7 -13:52:52,677 numba.core.ssa DEBUG find_def var='exp' stmt=$326compare_op.8 = exp != $const324.7 -13:52:52,677 numba.core.ssa DEBUG replaced with: $326compare_op.8 = exp.2 != $const324.7 -13:52:52,677 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,677 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,677 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,677 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,677 numba.core.ssa DEBUG Running -13:52:52,677 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,677 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,677 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,677 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,677 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,677 numba.core.ssa DEBUG Running -13:52:52,677 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,677 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,677 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,677 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,677 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,677 numba.core.ssa DEBUG Running -13:52:52,677 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:52,677 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,677 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,677 numba.core.ssa DEBUG Running -13:52:52,677 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,677 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,677 numba.core.ssa DEBUG Fix SSA violator on var $phi350.0 -13:52:52,677 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,677 numba.core.ssa DEBUG Running -13:52:52,677 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,677 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,677 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,677 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,677 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,678 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,678 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,678 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,678 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,678 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,678 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,678 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,678 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,678 numba.core.ssa DEBUG Running -13:52:52,678 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,678 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,678 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,678 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,678 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,678 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,678 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,678 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,678 numba.core.ssa DEBUG Running -13:52:52,678 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,678 numba.core.ssa DEBUG on stmt: raise -13:52:52,678 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,678 numba.core.ssa DEBUG Running -13:52:52,678 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,678 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,678 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,678 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,678 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,678 numba.core.ssa DEBUG Running -13:52:52,678 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,678 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,678 numba.core.ssa DEBUG Running -13:52:52,678 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:52,678 numba.core.ssa DEBUG on stmt: exp.1 = b -13:52:52,678 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,678 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,678 numba.core.ssa DEBUG Running -13:52:52,679 numba.core.ssa DEBUG on stmt: exp.3 = phi(incoming_values=[Var(exp, numbers.py:220), Var(exp.1, numbers.py:233)], incoming_blocks=[180, 182]) -13:52:52,679 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:52,679 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,679 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp.3 > $const192.1 -13:52:52,679 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,679 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,679 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,679 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,679 numba.core.ssa DEBUG Running -13:52:52,679 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,679 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,679 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,679 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,679 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,679 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,679 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,679 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,679 numba.core.ssa DEBUG Running -13:52:52,679 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,679 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp.3 != $const272.1 -13:52:52,679 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,679 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,679 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,679 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,679 numba.core.ssa DEBUG Running -13:52:52,679 numba.core.ssa DEBUG on stmt: exp.4 = phi(incoming_values=[Var(exp.2, numbers.py:240), Var(exp.3, numbers.py:234)], incoming_blocks=[302, 270]) -13:52:52,679 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:52,679 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,679 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,679 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp.4 & $const284.1 -13:52:52,679 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,679 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,679 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,680 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,680 numba.core.ssa DEBUG Running -13:52:52,680 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,680 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,680 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,680 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,680 numba.core.ssa DEBUG Running -13:52:52,680 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,680 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,680 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp.4, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,680 numba.core.ssa DEBUG on stmt: exp.2 = $binop_irshift306.2 -13:52:52,680 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,680 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:52,680 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,680 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp.2 != $const324.7 -13:52:52,680 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,680 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,680 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,680 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,680 numba.core.ssa DEBUG Running -13:52:52,680 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,680 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,680 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,680 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,680 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,680 numba.core.ssa DEBUG Running -13:52:52,680 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,680 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,680 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,680 numba.core.ssa DEBUG first assign: $phi350.0 -13:52:52,680 numba.core.ssa DEBUG replaced with: $phi350.0 = $binop_truediv342.2 -13:52:52,680 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,680 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,680 numba.core.ssa DEBUG Running -13:52:52,680 numba.core.ssa DEBUG on stmt: $phi350.0 = r.4 -13:52:52,680 numba.core.ssa DEBUG replaced with: $phi350.0.1 = r.4 -13:52:52,681 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,681 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,681 numba.core.ssa DEBUG Running -13:52:52,681 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,681 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,681 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {338: [], - 348: []}) -13:52:52,681 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,681 numba.core.ssa DEBUG Running -13:52:52,681 numba.core.ssa DEBUG on stmt: a = arg(0, name=a) -13:52:52,681 numba.core.ssa DEBUG on stmt: b = arg(1, name=b) -13:52:52,681 numba.core.ssa DEBUG on stmt: $8load_deref.1 = freevar(tp: float64) -13:52:52,681 numba.core.ssa DEBUG on stmt: $const10.2 = const(int, 1) -13:52:52,681 numba.core.ssa DEBUG on stmt: r = call $8load_deref.1($const10.2, func=$8load_deref.1, args=[Var($const10.2, numbers.py:216)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,681 numba.core.ssa DEBUG on stmt: $30load_deref.5 = freevar(tp: float64) -13:52:52,681 numba.core.ssa DEBUG on stmt: a.1 = call $30load_deref.5(a, func=$30load_deref.5, args=[Var(a, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,681 numba.core.ssa DEBUG on stmt: $const52.9 = const(int, 0) -13:52:52,681 numba.core.ssa DEBUG on stmt: $54compare_op.10 = b < $const52.9 -13:52:52,681 numba.core.ssa DEBUG on stmt: bool60 = global(bool: ) -13:52:52,681 numba.core.ssa DEBUG on stmt: $60pred = call bool60($54compare_op.10, func=bool60, args=(Var($54compare_op.10, numbers.py:218),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,681 numba.core.ssa DEBUG on stmt: branch $60pred, 62, 182 -13:52:52,681 numba.core.ssa DEBUG ==== SSA block rewrite pass on 62 -13:52:52,681 numba.core.ssa DEBUG Running -13:52:52,681 numba.core.ssa DEBUG on stmt: invert = const(bool, True) -13:52:52,681 numba.core.ssa DEBUG on stmt: exp = unary(fn=, value=b) -13:52:52,681 numba.core.ssa DEBUG on stmt: $const74.4 = const(int, 0) -13:52:52,681 numba.core.ssa DEBUG on stmt: $76compare_op.5 = exp < $const74.4 -13:52:52,681 numba.core.ssa DEBUG on stmt: bool82 = global(bool: ) -13:52:52,681 numba.core.ssa DEBUG on stmt: $82pred = call bool82($76compare_op.5, func=bool82, args=(Var($76compare_op.5, numbers.py:221),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,681 numba.core.ssa DEBUG on stmt: branch $82pred, 84, 98 -13:52:52,681 numba.core.ssa DEBUG ==== SSA block rewrite pass on 84 -13:52:52,681 numba.core.ssa DEBUG Running -13:52:52,681 numba.core.ssa DEBUG on stmt: $84load_global.0 = global(OverflowError: ) -13:52:52,681 numba.core.ssa DEBUG on stmt: raise -13:52:52,682 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,682 numba.core.ssa DEBUG Running -13:52:52,682 numba.core.ssa DEBUG on stmt: $98load_deref.0 = freevar(is_integer: False) -13:52:52,682 numba.core.ssa DEBUG on stmt: bool100 = global(bool: ) -13:52:52,682 numba.core.ssa DEBUG on stmt: $100pred = call bool100($98load_deref.0, func=bool100, args=(Var($98load_deref.0, numbers.py:223),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,682 numba.core.ssa DEBUG on stmt: jump 180 -13:52:52,682 numba.core.ssa DEBUG ==== SSA block rewrite pass on 180 -13:52:52,682 numba.core.ssa DEBUG Running -13:52:52,682 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,682 numba.core.ssa DEBUG ==== SSA block rewrite pass on 182 -13:52:52,682 numba.core.ssa DEBUG Running -13:52:52,682 numba.core.ssa DEBUG on stmt: invert.1 = const(bool, False) -13:52:52,682 numba.core.ssa DEBUG on stmt: exp.1 = b -13:52:52,682 numba.core.ssa DEBUG on stmt: jump 190 -13:52:52,682 numba.core.ssa DEBUG ==== SSA block rewrite pass on 190 -13:52:52,682 numba.core.ssa DEBUG Running -13:52:52,682 numba.core.ssa DEBUG on stmt: exp.3 = phi(incoming_values=[Var(exp, numbers.py:220), Var(exp.1, numbers.py:233)], incoming_blocks=[180, 182]) -13:52:52,682 numba.core.ssa DEBUG on stmt: invert.2 = phi(incoming_values=[Var(invert, numbers.py:219), Var(invert.1, numbers.py:232)], incoming_blocks=[180, 182]) -13:52:52,682 numba.core.ssa DEBUG on stmt: $const192.1 = const(int, 65536) -13:52:52,682 numba.core.ssa DEBUG on stmt: $194compare_op.2 = exp.3 > $const192.1 -13:52:52,682 numba.core.ssa DEBUG on stmt: bool200 = global(bool: ) -13:52:52,682 numba.core.ssa DEBUG on stmt: $200pred = call bool200($194compare_op.2, func=bool200, args=(Var($194compare_op.2, numbers.py:234),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,682 numba.core.ssa DEBUG on stmt: branch $200pred, 202, 270 -13:52:52,682 numba.core.ssa DEBUG ==== SSA block rewrite pass on 202 -13:52:52,682 numba.core.ssa DEBUG Running -13:52:52,682 numba.core.ssa DEBUG on stmt: $202load_global.0 = global(math: ) -13:52:52,682 numba.core.ssa DEBUG on stmt: $214load_attr.2 = getattr(value=$202load_global.0, attr=pow) -13:52:52,682 numba.core.ssa DEBUG on stmt: $226load_global.4 = global(float: ) -13:52:52,682 numba.core.ssa DEBUG on stmt: $244call.7 = call $226load_global.4(b, func=$226load_global.4, args=[Var(b, numbers.py:214)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,682 numba.core.ssa DEBUG on stmt: $258call.8 = call $214load_attr.2(a.1, $244call.7, func=$214load_attr.2, args=[Var(a.1, numbers.py:217), Var($244call.7, numbers.py:236)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,682 numba.core.ssa DEBUG on stmt: $268return_value.9 = cast(value=$258call.8) -13:52:52,682 numba.core.ssa DEBUG on stmt: return $268return_value.9 -13:52:52,682 numba.core.ssa DEBUG ==== SSA block rewrite pass on 270 -13:52:52,683 numba.core.ssa DEBUG Running -13:52:52,683 numba.core.ssa DEBUG on stmt: $const272.1 = const(int, 0) -13:52:52,683 numba.core.ssa DEBUG on stmt: $274compare_op.2 = exp.3 != $const272.1 -13:52:52,683 numba.core.ssa DEBUG on stmt: bool280 = global(bool: ) -13:52:52,683 numba.core.ssa DEBUG on stmt: $280pred = call bool280($274compare_op.2, func=bool280, args=(Var($274compare_op.2, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,683 numba.core.ssa DEBUG on stmt: branch $280pred, 282, 334 -13:52:52,683 numba.core.ssa DEBUG ==== SSA block rewrite pass on 282 -13:52:52,683 numba.core.ssa DEBUG Running -13:52:52,683 numba.core.ssa DEBUG on stmt: exp.4 = phi(incoming_values=[Var(exp.2, numbers.py:240), Var(exp.3, numbers.py:234)], incoming_blocks=[302, 270]) -13:52:52,683 numba.core.ssa DEBUG on stmt: a.1.2 = phi(incoming_values=[Var(a.1.1, numbers.py:241), Var(a.1, numbers.py:217)], incoming_blocks=[302, 270]) -13:52:52,683 numba.core.ssa DEBUG on stmt: r.2 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,683 numba.core.ssa DEBUG on stmt: $const284.1 = const(int, 1) -13:52:52,683 numba.core.ssa DEBUG on stmt: $binop_and_286.2 = exp.4 & $const284.1 -13:52:52,683 numba.core.ssa DEBUG on stmt: bool290 = global(bool: ) -13:52:52,683 numba.core.ssa DEBUG on stmt: $290pred = call bool290($binop_and_286.2, func=bool290, args=(Var($binop_and_286.2, numbers.py:238),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,683 numba.core.ssa DEBUG on stmt: branch $290pred, 292, 302 -13:52:52,683 numba.core.ssa DEBUG ==== SSA block rewrite pass on 292 -13:52:52,683 numba.core.ssa DEBUG Running -13:52:52,683 numba.core.ssa DEBUG on stmt: $binop_imul296.2 = inplace_binop(fn=, immutable_fn=, lhs=r.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,683 numba.core.ssa DEBUG on stmt: r.1 = $binop_imul296.2 -13:52:52,683 numba.core.ssa DEBUG on stmt: jump 302 -13:52:52,683 numba.core.ssa DEBUG ==== SSA block rewrite pass on 302 -13:52:52,683 numba.core.ssa DEBUG Running -13:52:52,683 numba.core.ssa DEBUG on stmt: r.3 = phi(incoming_values=[Var(r.2, numbers.py:239), Var(r.1, numbers.py:239)], incoming_blocks=[282, 292]) -13:52:52,683 numba.core.ssa DEBUG on stmt: $const304.1 = const(int, 1) -13:52:52,683 numba.core.ssa DEBUG on stmt: $binop_irshift306.2 = inplace_binop(fn=, immutable_fn=, lhs=exp.4, rhs=$const304.1, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,683 numba.core.ssa DEBUG on stmt: exp.2 = $binop_irshift306.2 -13:52:52,683 numba.core.ssa DEBUG on stmt: $binop_imul316.5 = inplace_binop(fn=, immutable_fn=, lhs=a.1.2, rhs=a.1.2, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,683 numba.core.ssa DEBUG on stmt: a.1.1 = $binop_imul316.5 -13:52:52,683 numba.core.ssa DEBUG on stmt: $const324.7 = const(int, 0) -13:52:52,683 numba.core.ssa DEBUG on stmt: $326compare_op.8 = exp.2 != $const324.7 -13:52:52,683 numba.core.ssa DEBUG on stmt: bool332 = global(bool: ) -13:52:52,683 numba.core.ssa DEBUG on stmt: $332pred = call bool332($326compare_op.8, func=bool332, args=(Var($326compare_op.8, numbers.py:237),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,684 numba.core.ssa DEBUG on stmt: branch $332pred, 282, 334 -13:52:52,684 numba.core.ssa DEBUG ==== SSA block rewrite pass on 334 -13:52:52,684 numba.core.ssa DEBUG Running -13:52:52,684 numba.core.ssa DEBUG on stmt: r.4 = phi(incoming_values=[Var(r.3, numbers.py:239), Var(r, numbers.py:216)], incoming_blocks=[302, 270]) -13:52:52,684 numba.core.ssa DEBUG on stmt: bool336 = global(bool: ) -13:52:52,684 numba.core.ssa DEBUG on stmt: $336pred = call bool336(invert.2, func=bool336, args=(Var(invert.2, numbers.py:243),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,684 numba.core.ssa DEBUG on stmt: branch $336pred, 338, 348 -13:52:52,684 numba.core.ssa DEBUG ==== SSA block rewrite pass on 338 -13:52:52,684 numba.core.ssa DEBUG Running -13:52:52,684 numba.core.ssa DEBUG on stmt: $const338.0 = const(float, 1.0) -13:52:52,684 numba.core.ssa DEBUG on stmt: $binop_truediv342.2 = $const338.0 / r.4 -13:52:52,684 numba.core.ssa DEBUG on stmt: $phi350.0 = $binop_truediv342.2 -13:52:52,684 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,684 numba.core.ssa DEBUG ==== SSA block rewrite pass on 348 -13:52:52,684 numba.core.ssa DEBUG Running -13:52:52,684 numba.core.ssa DEBUG on stmt: $phi350.0.1 = r.4 -13:52:52,684 numba.core.ssa DEBUG on stmt: jump 350 -13:52:52,684 numba.core.ssa DEBUG ==== SSA block rewrite pass on 350 -13:52:52,684 numba.core.ssa DEBUG Running -13:52:52,684 numba.core.ssa DEBUG on stmt: $350return_value.1 = cast(value=$phi350.0) -13:52:52,684 numba.core.ssa DEBUG find_def var='$phi350.0' stmt=$350return_value.1 = cast(value=$phi350.0) -13:52:52,684 numba.core.ssa DEBUG find_def_from_top label 350 -13:52:52,684 numba.core.ssa DEBUG insert phi node $phi350.0.2 = phi(incoming_values=[], incoming_blocks=[]) at 350 -13:52:52,684 numba.core.ssa DEBUG find_def_from_bottom label 338 -13:52:52,684 numba.core.ssa DEBUG incoming_def $phi350.0 = $binop_truediv342.2 -13:52:52,684 numba.core.ssa DEBUG find_def_from_bottom label 348 -13:52:52,684 numba.core.ssa DEBUG incoming_def $phi350.0.1 = r.4 -13:52:52,684 numba.core.ssa DEBUG replaced with: $350return_value.1 = cast(value=$phi350.0.2) -13:52:52,684 numba.core.ssa DEBUG on stmt: return $350return_value.1 -13:52:52,819 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=63) - 2 RESUME(arg=0, lineno=63) - 4 LOAD_GLOBAL(arg=1, lineno=92) - 16 LOAD_ATTR(arg=1, lineno=92) - 26 LOAD_FAST(arg=5, lineno=92) - 28 LOAD_ATTR(arg=2, lineno=92) - 38 LOAD_CONST(arg=1, lineno=92) - 40 BINARY_SUBSCR(arg=None, lineno=92) - 50 PRECALL(arg=1, lineno=92) - 54 CALL(arg=1, lineno=92) - 64 GET_ITER(arg=None, lineno=92) -> 66 NOP(arg=3, lineno=92) - 68 FOR_ITER(arg=814, lineno=92) - 70 STORE_FAST(arg=27, lineno=92) - 72 LOAD_FAST(arg=15, lineno=93) - 74 LOAD_FAST(arg=27, lineno=93) - 76 BINARY_SUBSCR(arg=None, lineno=93) - 86 LOAD_FAST(arg=16, lineno=93) - 88 COMPARE_OP(arg=1, lineno=93) - 94 NOP(arg=3, lineno=93) - 96 POP_JUMP_FORWARD_IF_FALSE(arg=798, lineno=93) - 98 LOAD_FAST(arg=2, lineno=94) - 100 LOAD_FAST(arg=27, lineno=94) - 102 BINARY_SUBSCR(arg=None, lineno=94) - 112 STORE_FAST(arg=28, lineno=94) - 114 LOAD_FAST(arg=3, lineno=95) - 116 LOAD_FAST(arg=27, lineno=95) - 118 BINARY_SUBSCR(arg=None, lineno=95) - 128 STORE_FAST(arg=29, lineno=95) - 130 LOAD_FAST(arg=0, lineno=97) - 132 LOAD_FAST(arg=28, lineno=97) - 134 BINARY_SUBSCR(arg=None, lineno=97) - 144 STORE_FAST(arg=30, lineno=97) - 146 LOAD_FAST(arg=1, lineno=98) - 148 LOAD_FAST(arg=29, lineno=98) - 150 BINARY_SUBSCR(arg=None, lineno=98) - 160 STORE_FAST(arg=31, lineno=98) - 162 LOAD_GLOBAL(arg=7, lineno=100) - 174 LOAD_FAST(arg=30, lineno=100) - 176 LOAD_FAST(arg=31, lineno=100) - 178 PRECALL(arg=2, lineno=100) - 182 CALL(arg=2, lineno=100) - 192 STORE_FAST(arg=32, lineno=100) - 194 LOAD_FAST(arg=17, lineno=102) - 196 NOP(arg=1, lineno=102) - 198 POP_JUMP_FORWARD_IF_FALSE(arg=272, lineno=102) - 200 LOAD_CONST(arg=2, lineno=103) - 202 LOAD_CONST(arg=2, lineno=103) - 204 LOAD_FAST(arg=6, lineno=103) - 206 LOAD_GLOBAL(arg=9, lineno=103) - 218 LOAD_FAST(arg=32, lineno=103) - 220 LOAD_FAST(arg=7, lineno=103) - 222 PRECALL(arg=2, lineno=103) - 226 CALL(arg=2, lineno=103) - 236 BINARY_OP(arg=5, lineno=103) - 240 BINARY_OP(arg=0, lineno=103) - 244 BINARY_OP(arg=11, lineno=103) - 248 STORE_FAST(arg=33, lineno=103) - 250 LOAD_FAST(arg=6, lineno=105) - 252 LOAD_FAST(arg=7, lineno=105) - 254 BINARY_OP(arg=5, lineno=105) - 258 LOAD_GLOBAL(arg=9, lineno=105) - 270 LOAD_FAST(arg=32, lineno=105) - 272 LOAD_FAST(arg=7, lineno=105) - 274 LOAD_CONST(arg=3, lineno=105) - 276 BINARY_OP(arg=10, lineno=105) - 280 PRECALL(arg=2, lineno=105) - 284 CALL(arg=2, lineno=105) - 294 BINARY_OP(arg=5, lineno=105) - 298 LOAD_CONST(arg=2, lineno=105) - 300 LOAD_FAST(arg=6, lineno=105) - 302 LOAD_GLOBAL(arg=9, lineno=105) - 314 LOAD_FAST(arg=32, lineno=105) - 316 LOAD_FAST(arg=7, lineno=105) - 318 PRECALL(arg=2, lineno=105) - 322 CALL(arg=2, lineno=105) - 332 BINARY_OP(arg=5, lineno=105) - 336 BINARY_OP(arg=0, lineno=105) - 340 BINARY_OP(arg=11, lineno=105) - 344 STORE_FAST(arg=34, lineno=104) - 346 LOAD_FAST(arg=33, lineno=108) - 348 LOAD_FAST(arg=18, lineno=108) - 350 LOAD_FAST(arg=29, lineno=108) - 352 BINARY_SUBSCR(arg=None, lineno=108) - 362 BINARY_OP(arg=11, lineno=108) - 366 STORE_FAST(arg=35, lineno=108) - 368 LOAD_FAST(arg=33, lineno=109) - 370 LOAD_FAST(arg=18, lineno=109) - 372 LOAD_FAST(arg=28, lineno=109) - 374 BINARY_SUBSCR(arg=None, lineno=109) - 384 BINARY_OP(arg=11, lineno=109) - 388 STORE_FAST(arg=36, lineno=109) - 390 LOAD_FAST(arg=35, lineno=111) - 392 LOAD_CONST(arg=2, lineno=112) - 394 LOAD_FAST(arg=7, lineno=112) - 396 LOAD_CONST(arg=3, lineno=112) - 398 LOAD_FAST(arg=33, lineno=112) - 400 BINARY_OP(arg=10, lineno=112) - 404 BINARY_OP(arg=5, lineno=112) - 408 BINARY_OP(arg=10, lineno=112) - 412 LOAD_GLOBAL(arg=11, lineno=112) - 424 LOAD_ATTR(arg=6, lineno=112) - 434 LOAD_FAST(arg=19, lineno=112) - 436 LOAD_FAST(arg=29, lineno=112) - 438 BINARY_SUBSCR(arg=None, lineno=112) - 448 PRECALL(arg=1, lineno=112) - 452 CALL(arg=1, lineno=112) - 462 BINARY_OP(arg=11, lineno=112) - 466 LOAD_FAST(arg=34, lineno=112) - 468 BINARY_OP(arg=0, lineno=112) - 472 BINARY_OP(arg=5, lineno=111) - 476 STORE_FAST(arg=37, lineno=111) - 478 LOAD_FAST(arg=36, lineno=114) - 480 LOAD_CONST(arg=2, lineno=115) - 482 LOAD_FAST(arg=7, lineno=115) - 484 LOAD_CONST(arg=3, lineno=115) - 486 LOAD_FAST(arg=33, lineno=115) - 488 BINARY_OP(arg=10, lineno=115) - 492 BINARY_OP(arg=5, lineno=115) - 496 BINARY_OP(arg=10, lineno=115) - 500 LOAD_GLOBAL(arg=11, lineno=115) - 512 LOAD_ATTR(arg=6, lineno=115) - 522 LOAD_FAST(arg=19, lineno=115) - 524 LOAD_FAST(arg=28, lineno=115) - 526 BINARY_SUBSCR(arg=None, lineno=115) - 536 PRECALL(arg=1, lineno=115) - 540 CALL(arg=1, lineno=115) - 550 BINARY_OP(arg=11, lineno=115) - 554 LOAD_FAST(arg=34, lineno=115) - 556 BINARY_OP(arg=0, lineno=115) - 560 BINARY_OP(arg=5, lineno=114) - 564 STORE_FAST(arg=38, lineno=114) - 566 LOAD_FAST(arg=21, lineno=118) - 568 LOAD_FAST(arg=21, lineno=118) - 570 BINARY_OP(arg=5, lineno=118) - 574 STORE_FAST(arg=39, lineno=118) - 576 LOAD_FAST(arg=24, lineno=120) - 578 LOAD_FAST(arg=29, lineno=120) - 580 BINARY_SUBSCR(arg=None, lineno=120) - 590 LOAD_FAST(arg=20, lineno=121) - 592 LOAD_FAST(arg=19, lineno=121) - 594 LOAD_FAST(arg=29, lineno=121) - 596 BINARY_SUBSCR(arg=None, lineno=121) - 606 LOAD_FAST(arg=22, lineno=121) - 608 BINARY_OP(arg=10, lineno=121) - 612 BINARY_OP(arg=5, lineno=121) - 616 LOAD_FAST(arg=39, lineno=121) - 618 BINARY_OP(arg=11, lineno=121) - 622 BINARY_OP(arg=10, lineno=120) - 626 STORE_FAST(arg=40, lineno=119) - 628 LOAD_FAST(arg=24, lineno=124) - 630 LOAD_FAST(arg=28, lineno=124) - 632 BINARY_SUBSCR(arg=None, lineno=124) - 642 LOAD_FAST(arg=20, lineno=125) - 644 LOAD_FAST(arg=19, lineno=125) - 646 LOAD_FAST(arg=28, lineno=125) - 648 BINARY_SUBSCR(arg=None, lineno=125) - 658 LOAD_FAST(arg=22, lineno=125) - 660 BINARY_OP(arg=10, lineno=125) - 664 BINARY_OP(arg=5, lineno=125) - 668 LOAD_FAST(arg=39, lineno=125) - 670 BINARY_OP(arg=11, lineno=125) - 674 BINARY_OP(arg=10, lineno=124) - 678 STORE_FAST(arg=41, lineno=123) - 680 LOAD_FAST(arg=23, lineno=129) - 682 LOAD_FAST(arg=26, lineno=130) - 684 BINARY_OP(arg=5, lineno=129) - 688 LOAD_FAST(arg=40, lineno=131) - 690 LOAD_FAST(arg=37, lineno=131) - 692 BINARY_OP(arg=5, lineno=131) - 696 LOAD_FAST(arg=41, lineno=131) - 698 LOAD_FAST(arg=38, lineno=131) - 700 BINARY_OP(arg=5, lineno=131) - 704 BINARY_OP(arg=0, lineno=131) - 708 BINARY_OP(arg=5, lineno=129) - 712 LOAD_FAST(arg=25, lineno=132) - 714 LOAD_FAST(arg=27, lineno=132) - 716 BINARY_SUBSCR(arg=None, lineno=132) - 726 LOAD_FAST(arg=21, lineno=132) - 728 BINARY_OP(arg=5, lineno=132) - 732 BINARY_OP(arg=11, lineno=129) - 736 LOAD_FAST(arg=4, lineno=133) - 738 BINARY_OP(arg=11, lineno=129) - 742 STORE_FAST(arg=42, lineno=128) -> 744 LOAD_FAST(arg=32, lineno=136) - 746 LOAD_CONST(arg=4, lineno=136) - 748 COMPARE_OP(arg=4, lineno=136) - 754 POP_JUMP_FORWARD_IF_FALSE(arg=54, lineno=136) - 756 LOAD_CONST(arg=5, lineno=137) - 758 LOAD_FAST(arg=6, lineno=137) - 760 BINARY_OP(arg=5, lineno=137) - 764 LOAD_FAST(arg=7, lineno=137) - 766 BINARY_OP(arg=5, lineno=137) - 770 LOAD_GLOBAL(arg=9, lineno=137) - 782 LOAD_FAST(arg=32, lineno=137) - 784 LOAD_FAST(arg=7, lineno=137) - 786 LOAD_CONST(arg=2, lineno=137) - 788 BINARY_OP(arg=10, lineno=137) - 792 PRECALL(arg=2, lineno=137) - 796 CALL(arg=2, lineno=137) - 806 BINARY_OP(arg=5, lineno=137) - 810 STORE_FAST(arg=43, lineno=137) - 812 LOAD_FAST(arg=43, lineno=138) - 814 LOAD_FAST(arg=6, lineno=138) - 816 LOAD_GLOBAL(arg=9, lineno=138) - 828 LOAD_FAST(arg=32, lineno=138) - 830 LOAD_FAST(arg=7, lineno=138) - 832 PRECALL(arg=2, lineno=138) - 836 CALL(arg=2, lineno=138) - 846 BINARY_OP(arg=5, lineno=138) - 850 LOAD_CONST(arg=2, lineno=138) - 852 BINARY_OP(arg=0, lineno=138) - 856 BINARY_OP(arg=24, lineno=138) - 860 STORE_FAST(arg=43, lineno=138) - 862 JUMP_FORWARD(arg=2, lineno=138) -> 864 LOAD_CONST(arg=4, lineno=140) - 866 STORE_FAST(arg=43, lineno=140) -> 868 LOAD_GLOBAL(arg=15, lineno=142) - 880 LOAD_FAST(arg=10, lineno=142) - 882 PRECALL(arg=1, lineno=142) - 886 CALL(arg=1, lineno=142) - 896 GET_ITER(arg=None, lineno=142) -> 898 FOR_ITER(arg=117, lineno=142) - 900 STORE_FAST(arg=44, lineno=142) - 902 LOAD_GLOBAL(arg=17, lineno=143) - 914 LOAD_FAST(arg=43, lineno=143) - 916 LOAD_FAST(arg=30, lineno=143) - 918 LOAD_FAST(arg=44, lineno=143) - 920 BINARY_SUBSCR(arg=None, lineno=143) - 930 LOAD_FAST(arg=31, lineno=143) - 932 LOAD_FAST(arg=44, lineno=143) - 934 BINARY_SUBSCR(arg=None, lineno=143) - 944 BINARY_OP(arg=10, lineno=143) - 948 BINARY_OP(arg=5, lineno=143) - 952 PRECALL(arg=1, lineno=143) - 956 CALL(arg=1, lineno=143) - 966 STORE_FAST(arg=45, lineno=143) - 968 LOAD_FAST(arg=17, lineno=145) - 970 POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=145) - 972 LOAD_FAST(arg=45, lineno=148) - 974 LOAD_GLOBAL(arg=17, lineno=148) - 986 LOAD_CONST(arg=6, lineno=148) - 988 LOAD_FAST(arg=42, lineno=148) - 990 BINARY_OP(arg=5, lineno=148) - 994 LOAD_FAST(arg=30, lineno=148) - 996 LOAD_FAST(arg=44, lineno=148) - 998 BINARY_SUBSCR(arg=None, lineno=148) - 1008 LOAD_FAST(arg=31, lineno=148) - 1010 LOAD_FAST(arg=44, lineno=148) - 1012 BINARY_SUBSCR(arg=None, lineno=148) - 1022 BINARY_OP(arg=10, lineno=148) - 1026 BINARY_OP(arg=5, lineno=148) - 1030 PRECALL(arg=1, lineno=148) - 1034 CALL(arg=1, lineno=148) - 1044 BINARY_OP(arg=13, lineno=148) - 1048 STORE_FAST(arg=45, lineno=148) -> 1050 LOAD_FAST(arg=30, lineno=150) - 1052 LOAD_FAST(arg=44, lineno=150) - 1054 COPY(arg=2, lineno=150) - 1056 COPY(arg=2, lineno=150) - 1058 BINARY_SUBSCR(arg=None, lineno=150) - 1068 LOAD_FAST(arg=45, lineno=150) - 1070 LOAD_FAST(arg=12, lineno=150) - 1072 BINARY_OP(arg=5, lineno=150) - 1076 BINARY_OP(arg=13, lineno=150) - 1080 SWAP(arg=3, lineno=150) - 1082 SWAP(arg=2, lineno=150) - 1084 STORE_SUBSCR(arg=None, lineno=150) - 1088 LOAD_FAST(arg=11, lineno=151) - 1090 POP_JUMP_FORWARD_IF_FALSE(arg=20, lineno=151) - 1092 LOAD_FAST(arg=31, lineno=152) - 1094 LOAD_FAST(arg=44, lineno=152) - 1096 COPY(arg=2, lineno=152) - 1098 COPY(arg=2, lineno=152) - 1100 BINARY_SUBSCR(arg=None, lineno=152) - 1110 LOAD_FAST(arg=45, lineno=152) - 1112 UNARY_NEGATIVE(arg=None, lineno=152) - 1114 LOAD_FAST(arg=12, lineno=152) - 1116 BINARY_OP(arg=5, lineno=152) - 1120 BINARY_OP(arg=13, lineno=152) - 1124 SWAP(arg=3, lineno=152) - 1126 SWAP(arg=2, lineno=152) - 1128 STORE_SUBSCR(arg=None, lineno=152) -> 1132 JUMP_BACKWARD(arg=118, lineno=152) -> 1134 LOAD_FAST(arg=15, lineno=154) - 1136 LOAD_FAST(arg=27, lineno=154) - 1138 COPY(arg=2, lineno=154) - 1140 COPY(arg=2, lineno=154) - 1142 BINARY_SUBSCR(arg=None, lineno=154) - 1152 LOAD_FAST(arg=5, lineno=154) - 1154 LOAD_FAST(arg=27, lineno=154) - 1156 BINARY_SUBSCR(arg=None, lineno=154) - 1166 BINARY_OP(arg=13, lineno=154) - 1170 SWAP(arg=3, lineno=154) - 1172 SWAP(arg=2, lineno=154) - 1174 STORE_SUBSCR(arg=None, lineno=154) - 1178 LOAD_GLOBAL(arg=19, lineno=156) - 1190 LOAD_FAST(arg=16, lineno=157) - 1192 LOAD_FAST(arg=14, lineno=157) - 1194 LOAD_FAST(arg=27, lineno=157) - 1196 BINARY_SUBSCR(arg=None, lineno=157) - 1206 BINARY_OP(arg=10, lineno=157) - 1210 LOAD_FAST(arg=13, lineno=157) - 1212 LOAD_FAST(arg=27, lineno=157) - 1214 BINARY_SUBSCR(arg=None, lineno=157) - 1224 BINARY_OP(arg=11, lineno=157) - 1228 PRECALL(arg=1, lineno=156) - 1232 CALL(arg=1, lineno=156) - 1242 STORE_FAST(arg=46, lineno=156) - 1244 LOAD_GLOBAL(arg=15, lineno=160) - 1256 LOAD_FAST(arg=46, lineno=160) - 1258 PRECALL(arg=1, lineno=160) - 1262 CALL(arg=1, lineno=160) - 1272 GET_ITER(arg=None, lineno=160) -> 1274 FOR_ITER(arg=184, lineno=160) - 1276 STORE_FAST(arg=47, lineno=160) - 1278 LOAD_GLOBAL(arg=21, lineno=161) - 1290 LOAD_FAST(arg=8, lineno=161) - 1292 LOAD_FAST(arg=28, lineno=161) - 1294 BINARY_SUBSCR(arg=None, lineno=161) - 1304 PRECALL(arg=1, lineno=161) - 1308 CALL(arg=1, lineno=161) - 1318 LOAD_FAST(arg=4, lineno=161) - 1320 BINARY_OP(arg=6, lineno=161) - 1324 STORE_FAST(arg=29, lineno=161) - 1326 LOAD_FAST(arg=1, lineno=163) - 1328 LOAD_FAST(arg=29, lineno=163) - 1330 BINARY_SUBSCR(arg=None, lineno=163) - 1340 STORE_FAST(arg=31, lineno=163) - 1342 LOAD_GLOBAL(arg=7, lineno=165) - 1354 LOAD_FAST(arg=30, lineno=165) - 1356 LOAD_FAST(arg=31, lineno=165) - 1358 PRECALL(arg=2, lineno=165) - 1362 CALL(arg=2, lineno=165) - 1372 STORE_FAST(arg=32, lineno=165) - 1374 LOAD_FAST(arg=32, lineno=167) - 1376 LOAD_CONST(arg=4, lineno=167) - 1378 COMPARE_OP(arg=4, lineno=167) - 1384 POP_JUMP_FORWARD_IF_FALSE(arg=40, lineno=167) - 1386 LOAD_CONST(arg=7, lineno=168) - 1388 LOAD_FAST(arg=9, lineno=168) - 1390 BINARY_OP(arg=5, lineno=168) - 1394 LOAD_FAST(arg=7, lineno=168) - 1396 BINARY_OP(arg=5, lineno=168) - 1400 STORE_FAST(arg=43, lineno=168) - 1402 LOAD_FAST(arg=43, lineno=169) - 1404 LOAD_CONST(arg=8, lineno=169) - 1406 LOAD_FAST(arg=32, lineno=169) - 1408 BINARY_OP(arg=0, lineno=169) - 1412 LOAD_FAST(arg=6, lineno=170) - 1414 LOAD_GLOBAL(arg=9, lineno=170) - 1426 LOAD_FAST(arg=32, lineno=170) - 1428 LOAD_FAST(arg=7, lineno=170) - 1430 PRECALL(arg=2, lineno=170) - 1434 CALL(arg=2, lineno=170) - 1444 BINARY_OP(arg=5, lineno=170) - 1448 LOAD_CONST(arg=3, lineno=170) - 1450 BINARY_OP(arg=0, lineno=170) - 1454 BINARY_OP(arg=5, lineno=169) - 1458 BINARY_OP(arg=24, lineno=169) - 1462 STORE_FAST(arg=43, lineno=169) - 1464 JUMP_FORWARD(arg=9, lineno=169) -> 1466 LOAD_FAST(arg=28, lineno=172) - 1468 LOAD_FAST(arg=29, lineno=172) - 1470 COMPARE_OP(arg=2, lineno=172) - 1476 POP_JUMP_FORWARD_IF_FALSE(arg=1, lineno=172) - 1478 JUMP_BACKWARD(arg=103, lineno=173) -> 1480 LOAD_CONST(arg=4, lineno=175) - 1482 STORE_FAST(arg=43, lineno=175) -> 1484 LOAD_GLOBAL(arg=15, lineno=177) - 1496 LOAD_FAST(arg=10, lineno=177) - 1498 PRECALL(arg=1, lineno=177) - 1502 CALL(arg=1, lineno=177) - 1512 GET_ITER(arg=None, lineno=177) -> 1514 FOR_ITER(arg=63, lineno=177) - 1516 STORE_FAST(arg=44, lineno=177) - 1518 LOAD_FAST(arg=43, lineno=178) - 1520 LOAD_CONST(arg=4, lineno=178) - 1522 COMPARE_OP(arg=4, lineno=178) - 1528 POP_JUMP_FORWARD_IF_FALSE(arg=34, lineno=178) - 1530 LOAD_GLOBAL(arg=17, lineno=179) - 1542 LOAD_FAST(arg=43, lineno=179) - 1544 LOAD_FAST(arg=30, lineno=179) - 1546 LOAD_FAST(arg=44, lineno=179) - 1548 BINARY_SUBSCR(arg=None, lineno=179) - 1558 LOAD_FAST(arg=31, lineno=179) - 1560 LOAD_FAST(arg=44, lineno=179) - 1562 BINARY_SUBSCR(arg=None, lineno=179) - 1572 BINARY_OP(arg=10, lineno=179) - 1576 BINARY_OP(arg=5, lineno=179) - 1580 PRECALL(arg=1, lineno=179) - 1584 CALL(arg=1, lineno=179) - 1594 STORE_FAST(arg=45, lineno=179) - 1596 JUMP_FORWARD(arg=2, lineno=179) -> 1598 LOAD_CONST(arg=1, lineno=181) - 1600 STORE_FAST(arg=45, lineno=181) -> 1602 LOAD_FAST(arg=30, lineno=182) - 1604 LOAD_FAST(arg=44, lineno=182) - 1606 COPY(arg=2, lineno=182) - 1608 COPY(arg=2, lineno=182) - 1610 BINARY_SUBSCR(arg=None, lineno=182) - 1620 LOAD_FAST(arg=45, lineno=182) - 1622 LOAD_FAST(arg=12, lineno=182) - 1624 BINARY_OP(arg=5, lineno=182) - 1628 BINARY_OP(arg=13, lineno=182) - 1632 SWAP(arg=3, lineno=182) - 1634 SWAP(arg=2, lineno=182) - 1636 STORE_SUBSCR(arg=None, lineno=182) - 1640 JUMP_BACKWARD(arg=64, lineno=182) -> 1642 JUMP_BACKWARD(arg=185, lineno=177) -> 1644 LOAD_FAST(arg=14, lineno=184) - 1646 LOAD_FAST(arg=27, lineno=184) - 1648 COPY(arg=2, lineno=184) - 1650 COPY(arg=2, lineno=184) - 1652 BINARY_SUBSCR(arg=None, lineno=184) - 1662 LOAD_FAST(arg=46, lineno=185) - 1664 LOAD_FAST(arg=13, lineno=185) - 1666 LOAD_FAST(arg=27, lineno=185) - 1668 BINARY_SUBSCR(arg=None, lineno=185) - 1678 BINARY_OP(arg=5, lineno=185) - 1682 BINARY_OP(arg=13, lineno=184) - 1686 SWAP(arg=3, lineno=184) - 1688 SWAP(arg=2, lineno=184) - 1690 STORE_SUBSCR(arg=None, lineno=184) -> 1694 NOP(arg=3, lineno=184) - 1696 JUMP_BACKWARD(arg=816, lineno=184) -> 1698 LOAD_CONST(arg=0, lineno=92) - 1700 RETURN_VALUE(arg=None, lineno=92) -13:52:52,819 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:52,819 numba.core.byteflow DEBUG stack: [] -13:52:52,819 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:52,819 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=63) -13:52:52,819 numba.core.byteflow DEBUG stack [] -13:52:52,819 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=63) -13:52:52,819 numba.core.byteflow DEBUG stack [] -13:52:52,819 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_GLOBAL(arg=1, lineno=92) -13:52:52,819 numba.core.byteflow DEBUG stack [] -13:52:52,819 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_ATTR(arg=1, lineno=92) -13:52:52,819 numba.core.byteflow DEBUG stack ['$null$4.1', '$4load_global.0'] -13:52:52,819 numba.core.byteflow DEBUG dispatch pc=26, inst=LOAD_FAST(arg=5, lineno=92) -13:52:52,819 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2'] -13:52:52,819 numba.core.byteflow DEBUG dispatch pc=28, inst=LOAD_ATTR(arg=2, lineno=92) -13:52:52,819 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$epochs_per_sample26.3'] -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=38, inst=LOAD_CONST(arg=1, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$28load_attr.4'] -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=40, inst=BINARY_SUBSCR(arg=None, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$28load_attr.4', '$const38.5'] -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=50, inst=PRECALL(arg=1, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$40binary_subscr.6'] -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=54, inst=CALL(arg=1, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$null$4.1', '$16load_attr.2', '$40binary_subscr.6'] -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=64, inst=GET_ITER(arg=None, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$54call.7'] -13:52:52,820 numba.core.byteflow DEBUG end state. edges=[Edge(pc=66, stack=('$64get_iter.8',), blockstack=(), npush=0)] -13:52:52,820 numba.core.byteflow DEBUG pending: deque([State(pc_initial=66 nstack_initial=1)]) -13:52:52,820 numba.core.byteflow DEBUG stack: ['$phi66.0'] -13:52:52,820 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=66 nstack_initial=1) -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=66, inst=NOP(arg=3, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$phi66.0'] -13:52:52,820 numba.core.byteflow DEBUG end state. edges=[Edge(pc=68, stack=('$phi66.0',), blockstack=(), npush=0)] -13:52:52,820 numba.core.byteflow DEBUG pending: deque([State(pc_initial=68 nstack_initial=1)]) -13:52:52,820 numba.core.byteflow DEBUG stack: ['$phi68.0'] -13:52:52,820 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=68 nstack_initial=1) -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=68, inst=FOR_ITER(arg=814, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$phi68.0'] -13:52:52,820 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1698, stack=(), blockstack=(), npush=0), Edge(pc=70, stack=('$phi68.0', '$68for_iter.2'), blockstack=(), npush=0)] -13:52:52,820 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1698 nstack_initial=0), State(pc_initial=70 nstack_initial=2)]) -13:52:52,820 numba.core.byteflow DEBUG stack: [] -13:52:52,820 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1698 nstack_initial=0) -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=1698, inst=LOAD_CONST(arg=0, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack [] -13:52:52,820 numba.core.byteflow DEBUG dispatch pc=1700, inst=RETURN_VALUE(arg=None, lineno=92) -13:52:52,820 numba.core.byteflow DEBUG stack ['$const1698.0'] -13:52:52,821 numba.core.byteflow DEBUG end state. edges=[] -13:52:52,821 numba.core.byteflow DEBUG pending: deque([State(pc_initial=70 nstack_initial=2)]) -13:52:52,821 numba.core.byteflow DEBUG stack: ['$phi70.0', '$phi70.1'] -13:52:52,821 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=70 nstack_initial=2) -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=70, inst=STORE_FAST(arg=27, lineno=92) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0', '$phi70.1'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=72, inst=LOAD_FAST(arg=15, lineno=93) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=74, inst=LOAD_FAST(arg=27, lineno=93) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0', '$epoch_of_next_sample72.2'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=76, inst=BINARY_SUBSCR(arg=None, lineno=93) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0', '$epoch_of_next_sample72.2', '$i74.3'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=86, inst=LOAD_FAST(arg=16, lineno=93) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0', '$76binary_subscr.4'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=88, inst=COMPARE_OP(arg=1, lineno=93) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0', '$76binary_subscr.4', '$n86.5'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=94, inst=NOP(arg=3, lineno=93) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0', '$88compare_op.6'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=96, inst=POP_JUMP_FORWARD_IF_FALSE(arg=798, lineno=93) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi70.0', '$88compare_op.6'] -13:52:52,821 numba.core.byteflow DEBUG end state. edges=[Edge(pc=98, stack=('$phi70.0',), blockstack=(), npush=0), Edge(pc=1694, stack=('$phi70.0',), blockstack=(), npush=0)] -13:52:52,821 numba.core.byteflow DEBUG pending: deque([State(pc_initial=98 nstack_initial=1), State(pc_initial=1694 nstack_initial=1)]) -13:52:52,821 numba.core.byteflow DEBUG stack: ['$phi98.0'] -13:52:52,821 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=98 nstack_initial=1) -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=98, inst=LOAD_FAST(arg=2, lineno=94) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi98.0'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=100, inst=LOAD_FAST(arg=27, lineno=94) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi98.0', '$head98.1'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=102, inst=BINARY_SUBSCR(arg=None, lineno=94) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi98.0', '$head98.1', '$i100.2'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=112, inst=STORE_FAST(arg=28, lineno=94) -13:52:52,821 numba.core.byteflow DEBUG stack ['$phi98.0', '$102binary_subscr.3'] -13:52:52,821 numba.core.byteflow DEBUG dispatch pc=114, inst=LOAD_FAST(arg=3, lineno=95) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=116, inst=LOAD_FAST(arg=27, lineno=95) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$tail114.4'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=118, inst=BINARY_SUBSCR(arg=None, lineno=95) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$tail114.4', '$i116.5'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=128, inst=STORE_FAST(arg=29, lineno=95) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$118binary_subscr.6'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=130, inst=LOAD_FAST(arg=0, lineno=97) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=132, inst=LOAD_FAST(arg=28, lineno=97) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$head_embedding130.7'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=134, inst=BINARY_SUBSCR(arg=None, lineno=97) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$head_embedding130.7', '$j132.8'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=144, inst=STORE_FAST(arg=30, lineno=97) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$134binary_subscr.9'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=146, inst=LOAD_FAST(arg=1, lineno=98) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=148, inst=LOAD_FAST(arg=29, lineno=98) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$tail_embedding146.10'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=150, inst=BINARY_SUBSCR(arg=None, lineno=98) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$tail_embedding146.10', '$k148.11'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=160, inst=STORE_FAST(arg=31, lineno=98) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$150binary_subscr.12'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=162, inst=LOAD_GLOBAL(arg=7, lineno=100) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=174, inst=LOAD_FAST(arg=30, lineno=100) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$null$162.14', '$162load_global.13'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=176, inst=LOAD_FAST(arg=31, lineno=100) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$null$162.14', '$162load_global.13', '$current174.15'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=178, inst=PRECALL(arg=2, lineno=100) -13:52:52,822 numba.core.byteflow DEBUG stack ['$phi98.0', '$null$162.14', '$162load_global.13', '$current174.15', '$other176.16'] -13:52:52,822 numba.core.byteflow DEBUG dispatch pc=182, inst=CALL(arg=2, lineno=100) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi98.0', '$null$162.14', '$162load_global.13', '$current174.15', '$other176.16'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=192, inst=STORE_FAST(arg=32, lineno=100) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi98.0', '$182call.17'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=194, inst=LOAD_FAST(arg=17, lineno=102) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi98.0'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=196, inst=NOP(arg=1, lineno=102) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi98.0', '$densmap_flag194.18'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=198, inst=POP_JUMP_FORWARD_IF_FALSE(arg=272, lineno=102) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi98.0', '$densmap_flag194.18'] -13:52:52,823 numba.core.byteflow DEBUG end state. edges=[Edge(pc=200, stack=('$phi98.0',), blockstack=(), npush=0), Edge(pc=744, stack=('$phi98.0',), blockstack=(), npush=0)] -13:52:52,823 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1694 nstack_initial=1), State(pc_initial=200 nstack_initial=1), State(pc_initial=744 nstack_initial=1)]) -13:52:52,823 numba.core.byteflow DEBUG stack: ['$phi1694.0'] -13:52:52,823 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1694 nstack_initial=1) -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=1694, inst=NOP(arg=3, lineno=184) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi1694.0'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=1696, inst=JUMP_BACKWARD(arg=816, lineno=184) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi1694.0'] -13:52:52,823 numba.core.byteflow DEBUG end state. edges=[Edge(pc=66, stack=('$phi1694.0',), blockstack=(), npush=0)] -13:52:52,823 numba.core.byteflow DEBUG pending: deque([State(pc_initial=200 nstack_initial=1), State(pc_initial=744 nstack_initial=1), State(pc_initial=66 nstack_initial=1)]) -13:52:52,823 numba.core.byteflow DEBUG stack: ['$phi200.0'] -13:52:52,823 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=200 nstack_initial=1) -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=200, inst=LOAD_CONST(arg=2, lineno=103) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=202, inst=LOAD_CONST(arg=2, lineno=103) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=204, inst=LOAD_FAST(arg=6, lineno=103) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=206, inst=LOAD_GLOBAL(arg=9, lineno=103) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2', '$a204.3'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=218, inst=LOAD_FAST(arg=32, lineno=103) -13:52:52,823 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2', '$a204.3', '$null$206.5', '$206load_global.4'] -13:52:52,823 numba.core.byteflow DEBUG dispatch pc=220, inst=LOAD_FAST(arg=7, lineno=103) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2', '$a204.3', '$null$206.5', '$206load_global.4', '$dist_squared218.6'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=222, inst=PRECALL(arg=2, lineno=103) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2', '$a204.3', '$null$206.5', '$206load_global.4', '$dist_squared218.6', '$b220.7'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=226, inst=CALL(arg=2, lineno=103) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2', '$a204.3', '$null$206.5', '$206load_global.4', '$dist_squared218.6', '$b220.7'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=236, inst=BINARY_OP(arg=5, lineno=103) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2', '$a204.3', '$226call.8'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=240, inst=BINARY_OP(arg=0, lineno=103) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$const202.2', '$binop_mul236.9'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=244, inst=BINARY_OP(arg=11, lineno=103) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$const200.1', '$binop_add240.10'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=248, inst=STORE_FAST(arg=33, lineno=103) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_truediv244.11'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=250, inst=LOAD_FAST(arg=6, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=252, inst=LOAD_FAST(arg=7, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$a250.12'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=254, inst=BINARY_OP(arg=5, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$a250.12', '$b252.13'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=258, inst=LOAD_GLOBAL(arg=9, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=270, inst=LOAD_FAST(arg=32, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14', '$null$258.16', '$258load_global.15'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=272, inst=LOAD_FAST(arg=7, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14', '$null$258.16', '$258load_global.15', '$dist_squared270.17'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=274, inst=LOAD_CONST(arg=3, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14', '$null$258.16', '$258load_global.15', '$dist_squared270.17', '$b272.18'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=276, inst=BINARY_OP(arg=10, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14', '$null$258.16', '$258load_global.15', '$dist_squared270.17', '$b272.18', '$const274.19'] -13:52:52,824 numba.core.byteflow DEBUG dispatch pc=280, inst=PRECALL(arg=2, lineno=105) -13:52:52,824 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14', '$null$258.16', '$258load_global.15', '$dist_squared270.17', '$binop_sub276.20'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=284, inst=CALL(arg=2, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14', '$null$258.16', '$258load_global.15', '$dist_squared270.17', '$binop_sub276.20'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=294, inst=BINARY_OP(arg=5, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul254.14', '$284call.21'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=298, inst=LOAD_CONST(arg=2, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=300, inst=LOAD_FAST(arg=6, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=302, inst=LOAD_GLOBAL(arg=9, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23', '$a300.24'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=314, inst=LOAD_FAST(arg=32, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23', '$a300.24', '$null$302.26', '$302load_global.25'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=316, inst=LOAD_FAST(arg=7, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23', '$a300.24', '$null$302.26', '$302load_global.25', '$dist_squared314.27'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=318, inst=PRECALL(arg=2, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23', '$a300.24', '$null$302.26', '$302load_global.25', '$dist_squared314.27', '$b316.28'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=322, inst=CALL(arg=2, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23', '$a300.24', '$null$302.26', '$302load_global.25', '$dist_squared314.27', '$b316.28'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=332, inst=BINARY_OP(arg=5, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23', '$a300.24', '$322call.29'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=336, inst=BINARY_OP(arg=0, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$const298.23', '$binop_mul332.30'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=340, inst=BINARY_OP(arg=11, lineno=105) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul294.22', '$binop_add336.31'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=344, inst=STORE_FAST(arg=34, lineno=104) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_truediv340.32'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=346, inst=LOAD_FAST(arg=33, lineno=108) -13:52:52,825 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,825 numba.core.byteflow DEBUG dispatch pc=348, inst=LOAD_FAST(arg=18, lineno=108) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi346.33'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=350, inst=LOAD_FAST(arg=29, lineno=108) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi346.33', '$dens_phi_sum348.34'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=352, inst=BINARY_SUBSCR(arg=None, lineno=108) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi346.33', '$dens_phi_sum348.34', '$k350.35'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=362, inst=BINARY_OP(arg=11, lineno=108) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi346.33', '$352binary_subscr.36'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=366, inst=STORE_FAST(arg=35, lineno=108) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_truediv362.37'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=368, inst=LOAD_FAST(arg=33, lineno=109) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=370, inst=LOAD_FAST(arg=18, lineno=109) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi368.38'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=372, inst=LOAD_FAST(arg=28, lineno=109) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi368.38', '$dens_phi_sum370.39'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=374, inst=BINARY_SUBSCR(arg=None, lineno=109) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi368.38', '$dens_phi_sum370.39', '$j372.40'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=384, inst=BINARY_OP(arg=11, lineno=109) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$phi368.38', '$374binary_subscr.41'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=388, inst=STORE_FAST(arg=36, lineno=109) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_truediv384.42'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=390, inst=LOAD_FAST(arg=35, lineno=111) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=392, inst=LOAD_CONST(arg=2, lineno=112) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=394, inst=LOAD_FAST(arg=7, lineno=112) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$const392.44'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=396, inst=LOAD_CONST(arg=3, lineno=112) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$const392.44', '$b394.45'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=398, inst=LOAD_FAST(arg=33, lineno=112) -13:52:52,826 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$const392.44', '$b394.45', '$const396.46'] -13:52:52,826 numba.core.byteflow DEBUG dispatch pc=400, inst=BINARY_OP(arg=10, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$const392.44', '$b394.45', '$const396.46', '$phi398.47'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=404, inst=BINARY_OP(arg=5, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$const392.44', '$b394.45', '$binop_sub400.48'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=408, inst=BINARY_OP(arg=10, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$const392.44', '$binop_mul404.49'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=412, inst=LOAD_GLOBAL(arg=11, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=424, inst=LOAD_ATTR(arg=6, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50', '$null$412.52', '$412load_global.51'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=434, inst=LOAD_FAST(arg=19, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50', '$null$412.52', '$424load_attr.53'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=436, inst=LOAD_FAST(arg=29, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50', '$null$412.52', '$424load_attr.53', '$dens_re_sum434.54'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=438, inst=BINARY_SUBSCR(arg=None, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50', '$null$412.52', '$424load_attr.53', '$dens_re_sum434.54', '$k436.55'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=448, inst=PRECALL(arg=1, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50', '$null$412.52', '$424load_attr.53', '$438binary_subscr.56'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=452, inst=CALL(arg=1, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50', '$null$412.52', '$424load_attr.53', '$438binary_subscr.56'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=462, inst=BINARY_OP(arg=11, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_sub408.50', '$452call.57'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=466, inst=LOAD_FAST(arg=34, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_truediv462.58'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=468, inst=BINARY_OP(arg=0, lineno=112) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_truediv462.58', '$dphi_term466.59'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=472, inst=BINARY_OP(arg=5, lineno=111) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_jk390.43', '$binop_add468.60'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=476, inst=STORE_FAST(arg=37, lineno=111) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul472.61'] -13:52:52,827 numba.core.byteflow DEBUG dispatch pc=478, inst=LOAD_FAST(arg=36, lineno=114) -13:52:52,827 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=480, inst=LOAD_CONST(arg=2, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=482, inst=LOAD_FAST(arg=7, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$const480.63'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=484, inst=LOAD_CONST(arg=3, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$const480.63', '$b482.64'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=486, inst=LOAD_FAST(arg=33, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$const480.63', '$b482.64', '$const484.65'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=488, inst=BINARY_OP(arg=10, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$const480.63', '$b482.64', '$const484.65', '$phi486.66'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=492, inst=BINARY_OP(arg=5, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$const480.63', '$b482.64', '$binop_sub488.67'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=496, inst=BINARY_OP(arg=10, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$const480.63', '$binop_mul492.68'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=500, inst=LOAD_GLOBAL(arg=11, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=512, inst=LOAD_ATTR(arg=6, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69', '$null$500.71', '$500load_global.70'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=522, inst=LOAD_FAST(arg=19, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69', '$null$500.71', '$512load_attr.72'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=524, inst=LOAD_FAST(arg=28, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69', '$null$500.71', '$512load_attr.72', '$dens_re_sum522.73'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=526, inst=BINARY_SUBSCR(arg=None, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69', '$null$500.71', '$512load_attr.72', '$dens_re_sum522.73', '$j524.74'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=536, inst=PRECALL(arg=1, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69', '$null$500.71', '$512load_attr.72', '$526binary_subscr.75'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=540, inst=CALL(arg=1, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69', '$null$500.71', '$512load_attr.72', '$526binary_subscr.75'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=550, inst=BINARY_OP(arg=11, lineno=115) -13:52:52,828 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_sub496.69', '$540call.76'] -13:52:52,828 numba.core.byteflow DEBUG dispatch pc=554, inst=LOAD_FAST(arg=34, lineno=115) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_truediv550.77'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=556, inst=BINARY_OP(arg=0, lineno=115) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_truediv550.77', '$dphi_term554.78'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=560, inst=BINARY_OP(arg=5, lineno=114) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$q_kj478.62', '$binop_add556.79'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=564, inst=STORE_FAST(arg=38, lineno=114) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul560.80'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=566, inst=LOAD_FAST(arg=21, lineno=118) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=568, inst=LOAD_FAST(arg=21, lineno=118) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_re_std566.81'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=570, inst=BINARY_OP(arg=5, lineno=118) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_re_std566.81', '$dens_re_std568.82'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=574, inst=STORE_FAST(arg=39, lineno=118) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul570.83'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=576, inst=LOAD_FAST(arg=24, lineno=120) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=578, inst=LOAD_FAST(arg=29, lineno=120) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_R576.84'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=580, inst=BINARY_SUBSCR(arg=None, lineno=120) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_R576.84', '$k578.85'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=590, inst=LOAD_FAST(arg=20, lineno=121) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=592, inst=LOAD_FAST(arg=19, lineno=121) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$dens_re_cov590.87'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=594, inst=LOAD_FAST(arg=29, lineno=121) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$dens_re_cov590.87', '$dens_re_sum592.88'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=596, inst=BINARY_SUBSCR(arg=None, lineno=121) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$dens_re_cov590.87', '$dens_re_sum592.88', '$k594.89'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=606, inst=LOAD_FAST(arg=22, lineno=121) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$dens_re_cov590.87', '$596binary_subscr.90'] -13:52:52,829 numba.core.byteflow DEBUG dispatch pc=608, inst=BINARY_OP(arg=10, lineno=121) -13:52:52,829 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$dens_re_cov590.87', '$596binary_subscr.90', '$dens_re_mean606.91'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=612, inst=BINARY_OP(arg=5, lineno=121) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$dens_re_cov590.87', '$binop_sub608.92'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=616, inst=LOAD_FAST(arg=39, lineno=121) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$binop_mul612.93'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=618, inst=BINARY_OP(arg=11, lineno=121) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$binop_mul612.93', '$re_std_sq616.94'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=622, inst=BINARY_OP(arg=10, lineno=120) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$580binary_subscr.86', '$binop_truediv618.95'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=626, inst=STORE_FAST(arg=40, lineno=119) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_sub622.96'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=628, inst=LOAD_FAST(arg=24, lineno=124) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=630, inst=LOAD_FAST(arg=28, lineno=124) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_R628.97'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=632, inst=BINARY_SUBSCR(arg=None, lineno=124) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_R628.97', '$j630.98'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=642, inst=LOAD_FAST(arg=20, lineno=125) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=644, inst=LOAD_FAST(arg=19, lineno=125) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$dens_re_cov642.100'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=646, inst=LOAD_FAST(arg=28, lineno=125) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$dens_re_cov642.100', '$dens_re_sum644.101'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=648, inst=BINARY_SUBSCR(arg=None, lineno=125) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$dens_re_cov642.100', '$dens_re_sum644.101', '$j646.102'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=658, inst=LOAD_FAST(arg=22, lineno=125) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$dens_re_cov642.100', '$648binary_subscr.103'] -13:52:52,830 numba.core.byteflow DEBUG dispatch pc=660, inst=BINARY_OP(arg=10, lineno=125) -13:52:52,830 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$dens_re_cov642.100', '$648binary_subscr.103', '$dens_re_mean658.104'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=664, inst=BINARY_OP(arg=5, lineno=125) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$dens_re_cov642.100', '$binop_sub660.105'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=668, inst=LOAD_FAST(arg=39, lineno=125) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$binop_mul664.106'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=670, inst=BINARY_OP(arg=11, lineno=125) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$binop_mul664.106', '$re_std_sq668.107'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=674, inst=BINARY_OP(arg=10, lineno=124) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$632binary_subscr.99', '$binop_truediv670.108'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=678, inst=STORE_FAST(arg=41, lineno=123) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_sub674.109'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=680, inst=LOAD_FAST(arg=23, lineno=129) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=682, inst=LOAD_FAST(arg=26, lineno=130) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_lambda680.110'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=684, inst=BINARY_OP(arg=5, lineno=129) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$dens_lambda680.110', '$dens_mu_tot682.111'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=688, inst=LOAD_FAST(arg=40, lineno=131) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=690, inst=LOAD_FAST(arg=37, lineno=131) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112', '$weight_k688.113'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=692, inst=BINARY_OP(arg=5, lineno=131) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112', '$weight_k688.113', '$drk690.114'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=696, inst=LOAD_FAST(arg=41, lineno=131) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112', '$binop_mul692.115'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=698, inst=LOAD_FAST(arg=38, lineno=131) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112', '$binop_mul692.115', '$weight_j696.116'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=700, inst=BINARY_OP(arg=5, lineno=131) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112', '$binop_mul692.115', '$weight_j696.116', '$drj698.117'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=704, inst=BINARY_OP(arg=0, lineno=131) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112', '$binop_mul692.115', '$binop_mul700.118'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=708, inst=BINARY_OP(arg=5, lineno=129) -13:52:52,831 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul684.112', '$binop_add704.119'] -13:52:52,831 numba.core.byteflow DEBUG dispatch pc=712, inst=LOAD_FAST(arg=25, lineno=132) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul708.120'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=714, inst=LOAD_FAST(arg=27, lineno=132) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul708.120', '$dens_mu712.121'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=716, inst=BINARY_SUBSCR(arg=None, lineno=132) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul708.120', '$dens_mu712.121', '$i714.122'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=726, inst=LOAD_FAST(arg=21, lineno=132) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul708.120', '$716binary_subscr.123'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=728, inst=BINARY_OP(arg=5, lineno=132) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul708.120', '$716binary_subscr.123', '$dens_re_std726.124'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=732, inst=BINARY_OP(arg=11, lineno=129) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_mul708.120', '$binop_mul728.125'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=736, inst=LOAD_FAST(arg=4, lineno=133) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_truediv732.126'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=738, inst=BINARY_OP(arg=11, lineno=129) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_truediv732.126', '$n_vertices736.127'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=742, inst=STORE_FAST(arg=42, lineno=128) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi200.0', '$binop_truediv738.128'] -13:52:52,832 numba.core.byteflow DEBUG end state. edges=[Edge(pc=744, stack=('$phi200.0',), blockstack=(), npush=0)] -13:52:52,832 numba.core.byteflow DEBUG pending: deque([State(pc_initial=744 nstack_initial=1), State(pc_initial=66 nstack_initial=1), State(pc_initial=744 nstack_initial=1)]) -13:52:52,832 numba.core.byteflow DEBUG stack: ['$phi744.0'] -13:52:52,832 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=744 nstack_initial=1) -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=744, inst=LOAD_FAST(arg=32, lineno=136) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi744.0'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=746, inst=LOAD_CONST(arg=4, lineno=136) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi744.0', '$dist_squared744.1'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=748, inst=COMPARE_OP(arg=4, lineno=136) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi744.0', '$dist_squared744.1', '$const746.2'] -13:52:52,832 numba.core.byteflow DEBUG dispatch pc=754, inst=POP_JUMP_FORWARD_IF_FALSE(arg=54, lineno=136) -13:52:52,832 numba.core.byteflow DEBUG stack ['$phi744.0', '$748compare_op.3'] -13:52:52,832 numba.core.byteflow DEBUG end state. edges=[Edge(pc=756, stack=('$phi744.0',), blockstack=(), npush=0), Edge(pc=864, stack=('$phi744.0',), blockstack=(), npush=0)] -13:52:52,832 numba.core.byteflow DEBUG pending: deque([State(pc_initial=66 nstack_initial=1), State(pc_initial=744 nstack_initial=1), State(pc_initial=756 nstack_initial=1), State(pc_initial=864 nstack_initial=1)]) -13:52:52,832 numba.core.byteflow DEBUG pending: deque([State(pc_initial=744 nstack_initial=1), State(pc_initial=756 nstack_initial=1), State(pc_initial=864 nstack_initial=1)]) -13:52:52,833 numba.core.byteflow DEBUG pending: deque([State(pc_initial=756 nstack_initial=1), State(pc_initial=864 nstack_initial=1)]) -13:52:52,833 numba.core.byteflow DEBUG stack: ['$phi756.0'] -13:52:52,833 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=756 nstack_initial=1) -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=756, inst=LOAD_CONST(arg=5, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=758, inst=LOAD_FAST(arg=6, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$const756.1'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=760, inst=BINARY_OP(arg=5, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$const756.1', '$a758.2'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=764, inst=LOAD_FAST(arg=7, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul760.3'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=766, inst=BINARY_OP(arg=5, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul760.3', '$b764.4'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=770, inst=LOAD_GLOBAL(arg=9, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=782, inst=LOAD_FAST(arg=32, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5', '$null$770.7', '$770load_global.6'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=784, inst=LOAD_FAST(arg=7, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5', '$null$770.7', '$770load_global.6', '$dist_squared782.8'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=786, inst=LOAD_CONST(arg=2, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5', '$null$770.7', '$770load_global.6', '$dist_squared782.8', '$b784.9'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=788, inst=BINARY_OP(arg=10, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5', '$null$770.7', '$770load_global.6', '$dist_squared782.8', '$b784.9', '$const786.10'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=792, inst=PRECALL(arg=2, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5', '$null$770.7', '$770load_global.6', '$dist_squared782.8', '$binop_sub788.11'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=796, inst=CALL(arg=2, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5', '$null$770.7', '$770load_global.6', '$dist_squared782.8', '$binop_sub788.11'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=806, inst=BINARY_OP(arg=5, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul766.5', '$796call.12'] -13:52:52,833 numba.core.byteflow DEBUG dispatch pc=810, inst=STORE_FAST(arg=43, lineno=137) -13:52:52,833 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_mul806.13'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=812, inst=LOAD_FAST(arg=43, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=814, inst=LOAD_FAST(arg=6, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=816, inst=LOAD_GLOBAL(arg=9, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$a814.15'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=828, inst=LOAD_FAST(arg=32, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$a814.15', '$null$816.17', '$816load_global.16'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=830, inst=LOAD_FAST(arg=7, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$a814.15', '$null$816.17', '$816load_global.16', '$dist_squared828.18'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=832, inst=PRECALL(arg=2, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$a814.15', '$null$816.17', '$816load_global.16', '$dist_squared828.18', '$b830.19'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=836, inst=CALL(arg=2, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$a814.15', '$null$816.17', '$816load_global.16', '$dist_squared828.18', '$b830.19'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=846, inst=BINARY_OP(arg=5, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$a814.15', '$836call.20'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=850, inst=LOAD_CONST(arg=2, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$binop_mul846.21'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=852, inst=BINARY_OP(arg=0, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$binop_mul846.21', '$const850.22'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=856, inst=BINARY_OP(arg=24, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$grad_coeff812.14', '$binop_add852.23'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=860, inst=STORE_FAST(arg=43, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0', '$binop_itruediv856.24'] -13:52:52,834 numba.core.byteflow DEBUG dispatch pc=862, inst=JUMP_FORWARD(arg=2, lineno=138) -13:52:52,834 numba.core.byteflow DEBUG stack ['$phi756.0'] -13:52:52,834 numba.core.byteflow DEBUG end state. edges=[Edge(pc=868, stack=('$phi756.0',), blockstack=(), npush=0)] -13:52:52,834 numba.core.byteflow DEBUG pending: deque([State(pc_initial=864 nstack_initial=1), State(pc_initial=868 nstack_initial=1)]) -13:52:52,834 numba.core.byteflow DEBUG stack: ['$phi864.0'] -13:52:52,835 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=864 nstack_initial=1) -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=864, inst=LOAD_CONST(arg=4, lineno=140) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi864.0'] -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=866, inst=STORE_FAST(arg=43, lineno=140) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi864.0', '$const864.1'] -13:52:52,835 numba.core.byteflow DEBUG end state. edges=[Edge(pc=868, stack=('$phi864.0',), blockstack=(), npush=0)] -13:52:52,835 numba.core.byteflow DEBUG pending: deque([State(pc_initial=868 nstack_initial=1), State(pc_initial=868 nstack_initial=1)]) -13:52:52,835 numba.core.byteflow DEBUG stack: ['$phi868.0'] -13:52:52,835 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=868 nstack_initial=1) -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=868, inst=LOAD_GLOBAL(arg=15, lineno=142) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi868.0'] -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=880, inst=LOAD_FAST(arg=10, lineno=142) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi868.0', '$null$868.2', '$868load_global.1'] -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=882, inst=PRECALL(arg=1, lineno=142) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi868.0', '$null$868.2', '$868load_global.1', '$dim880.3'] -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=886, inst=CALL(arg=1, lineno=142) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi868.0', '$null$868.2', '$868load_global.1', '$dim880.3'] -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=896, inst=GET_ITER(arg=None, lineno=142) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi868.0', '$886call.4'] -13:52:52,835 numba.core.byteflow DEBUG end state. edges=[Edge(pc=898, stack=('$phi868.0', '$896get_iter.5'), blockstack=(), npush=0)] -13:52:52,835 numba.core.byteflow DEBUG pending: deque([State(pc_initial=868 nstack_initial=1), State(pc_initial=898 nstack_initial=2)]) -13:52:52,835 numba.core.byteflow DEBUG pending: deque([State(pc_initial=898 nstack_initial=2)]) -13:52:52,835 numba.core.byteflow DEBUG stack: ['$phi898.0', '$phi898.1'] -13:52:52,835 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=898 nstack_initial=2) -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=898, inst=FOR_ITER(arg=117, lineno=142) -13:52:52,835 numba.core.byteflow DEBUG stack ['$phi898.0', '$phi898.1'] -13:52:52,835 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1134, stack=('$phi898.0',), blockstack=(), npush=0), Edge(pc=900, stack=('$phi898.0', '$phi898.1', '$898for_iter.3'), blockstack=(), npush=0)] -13:52:52,835 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1134 nstack_initial=1), State(pc_initial=900 nstack_initial=3)]) -13:52:52,835 numba.core.byteflow DEBUG stack: ['$phi1134.0'] -13:52:52,835 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1134 nstack_initial=1) -13:52:52,835 numba.core.byteflow DEBUG dispatch pc=1134, inst=LOAD_FAST(arg=15, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1136, inst=LOAD_FAST(arg=27, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1138, inst=COPY(arg=2, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1140, inst=COPY(arg=2, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2', '$epoch_of_next_sample1134.1'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1142, inst=BINARY_SUBSCR(arg=None, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2', '$epoch_of_next_sample1134.1', '$i1136.2'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1152, inst=LOAD_FAST(arg=5, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2', '$1142binary_subscr.3'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1154, inst=LOAD_FAST(arg=27, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2', '$1142binary_subscr.3', '$epochs_per_sample1152.4'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1156, inst=BINARY_SUBSCR(arg=None, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2', '$1142binary_subscr.3', '$epochs_per_sample1152.4', '$i1154.5'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1166, inst=BINARY_OP(arg=13, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2', '$1142binary_subscr.3', '$1156binary_subscr.6'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1170, inst=SWAP(arg=3, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$epoch_of_next_sample1134.1', '$i1136.2', '$binop_iadd1166.7'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1172, inst=SWAP(arg=2, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$binop_iadd1166.7', '$i1136.2', '$epoch_of_next_sample1134.1'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1174, inst=STORE_SUBSCR(arg=None, lineno=154) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$binop_iadd1166.7', '$epoch_of_next_sample1134.1', '$i1136.2'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1178, inst=LOAD_GLOBAL(arg=19, lineno=156) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1190, inst=LOAD_FAST(arg=16, lineno=157) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1192, inst=LOAD_FAST(arg=14, lineno=157) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$n1190.10'] -13:52:52,836 numba.core.byteflow DEBUG dispatch pc=1194, inst=LOAD_FAST(arg=27, lineno=157) -13:52:52,836 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$n1190.10', '$epoch_of_next_negative_sample1192.11'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1196, inst=BINARY_SUBSCR(arg=None, lineno=157) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$n1190.10', '$epoch_of_next_negative_sample1192.11', '$i1194.12'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1206, inst=BINARY_OP(arg=10, lineno=157) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$n1190.10', '$1196binary_subscr.13'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1210, inst=LOAD_FAST(arg=13, lineno=157) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$binop_sub1206.14'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1212, inst=LOAD_FAST(arg=27, lineno=157) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$binop_sub1206.14', '$epochs_per_negative_sample1210.15'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1214, inst=BINARY_SUBSCR(arg=None, lineno=157) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$binop_sub1206.14', '$epochs_per_negative_sample1210.15', '$i1212.16'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1224, inst=BINARY_OP(arg=11, lineno=157) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$binop_sub1206.14', '$1214binary_subscr.17'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1228, inst=PRECALL(arg=1, lineno=156) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$binop_truediv1224.18'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1232, inst=CALL(arg=1, lineno=156) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1178.9', '$1178load_global.8', '$binop_truediv1224.18'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1242, inst=STORE_FAST(arg=46, lineno=156) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$1232call.19'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1244, inst=LOAD_GLOBAL(arg=15, lineno=160) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1256, inst=LOAD_FAST(arg=46, lineno=160) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1244.21', '$1244load_global.20'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1258, inst=PRECALL(arg=1, lineno=160) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1244.21', '$1244load_global.20', '$n_neg_samples1256.22'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1262, inst=CALL(arg=1, lineno=160) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$null$1244.21', '$1244load_global.20', '$n_neg_samples1256.22'] -13:52:52,837 numba.core.byteflow DEBUG dispatch pc=1272, inst=GET_ITER(arg=None, lineno=160) -13:52:52,837 numba.core.byteflow DEBUG stack ['$phi1134.0', '$1262call.23'] -13:52:52,837 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1274, stack=('$phi1134.0', '$1272get_iter.24'), blockstack=(), npush=0)] -13:52:52,837 numba.core.byteflow DEBUG pending: deque([State(pc_initial=900 nstack_initial=3), State(pc_initial=1274 nstack_initial=2)]) -13:52:52,838 numba.core.byteflow DEBUG stack: ['$phi900.0', '$phi900.1', '$phi900.2'] -13:52:52,838 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=900 nstack_initial=3) -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=900, inst=STORE_FAST(arg=44, lineno=142) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$phi900.2'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=902, inst=LOAD_GLOBAL(arg=17, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=914, inst=LOAD_FAST(arg=43, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=916, inst=LOAD_FAST(arg=30, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=918, inst=LOAD_FAST(arg=44, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5', '$current916.6'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=920, inst=BINARY_SUBSCR(arg=None, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5', '$current916.6', '$d918.7'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=930, inst=LOAD_FAST(arg=31, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5', '$920binary_subscr.8'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=932, inst=LOAD_FAST(arg=44, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5', '$920binary_subscr.8', '$other930.9'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=934, inst=BINARY_SUBSCR(arg=None, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5', '$920binary_subscr.8', '$other930.9', '$d932.10'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=944, inst=BINARY_OP(arg=10, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5', '$920binary_subscr.8', '$934binary_subscr.11'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=948, inst=BINARY_OP(arg=5, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$grad_coeff914.5', '$binop_sub944.12'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=952, inst=PRECALL(arg=1, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$binop_mul948.13'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=956, inst=CALL(arg=1, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$null$902.4', '$902load_global.3', '$binop_mul948.13'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=966, inst=STORE_FAST(arg=45, lineno=143) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$956call.14'] -13:52:52,838 numba.core.byteflow DEBUG dispatch pc=968, inst=LOAD_FAST(arg=17, lineno=145) -13:52:52,838 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=970, inst=POP_JUMP_FORWARD_IF_FALSE(arg=39, lineno=145) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi900.0', '$phi900.1', '$densmap_flag968.15'] -13:52:52,839 numba.core.byteflow DEBUG end state. edges=[Edge(pc=972, stack=('$phi900.0', '$phi900.1'), blockstack=(), npush=0), Edge(pc=1050, stack=('$phi900.0', '$phi900.1'), blockstack=(), npush=0)] -13:52:52,839 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1274 nstack_initial=2), State(pc_initial=972 nstack_initial=2), State(pc_initial=1050 nstack_initial=2)]) -13:52:52,839 numba.core.byteflow DEBUG stack: ['$phi1274.0', '$phi1274.1'] -13:52:52,839 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1274 nstack_initial=2) -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=1274, inst=FOR_ITER(arg=184, lineno=160) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi1274.0', '$phi1274.1'] -13:52:52,839 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1644, stack=('$phi1274.0',), blockstack=(), npush=0), Edge(pc=1276, stack=('$phi1274.0', '$phi1274.1', '$1274for_iter.3'), blockstack=(), npush=0)] -13:52:52,839 numba.core.byteflow DEBUG pending: deque([State(pc_initial=972 nstack_initial=2), State(pc_initial=1050 nstack_initial=2), State(pc_initial=1644 nstack_initial=1), State(pc_initial=1276 nstack_initial=3)]) -13:52:52,839 numba.core.byteflow DEBUG stack: ['$phi972.0', '$phi972.1'] -13:52:52,839 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=972 nstack_initial=2) -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=972, inst=LOAD_FAST(arg=45, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=974, inst=LOAD_GLOBAL(arg=17, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=986, inst=LOAD_CONST(arg=6, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=988, inst=LOAD_FAST(arg=42, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$const986.5'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=990, inst=BINARY_OP(arg=5, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$const986.5', '$grad_cor_coeff988.6'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=994, inst=LOAD_FAST(arg=30, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=996, inst=LOAD_FAST(arg=44, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7', '$current994.8'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=998, inst=BINARY_SUBSCR(arg=None, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7', '$current994.8', '$d996.9'] -13:52:52,839 numba.core.byteflow DEBUG dispatch pc=1008, inst=LOAD_FAST(arg=31, lineno=148) -13:52:52,839 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7', '$998binary_subscr.10'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1010, inst=LOAD_FAST(arg=44, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7', '$998binary_subscr.10', '$other1008.11'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1012, inst=BINARY_SUBSCR(arg=None, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7', '$998binary_subscr.10', '$other1008.11', '$d1010.12'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1022, inst=BINARY_OP(arg=10, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7', '$998binary_subscr.10', '$1012binary_subscr.13'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1026, inst=BINARY_OP(arg=5, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul990.7', '$binop_sub1022.14'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1030, inst=PRECALL(arg=1, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul1026.15'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1034, inst=CALL(arg=1, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$null$974.4', '$974load_global.3', '$binop_mul1026.15'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1044, inst=BINARY_OP(arg=13, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$grad_d972.2', '$1034call.16'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1048, inst=STORE_FAST(arg=45, lineno=148) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi972.0', '$phi972.1', '$binop_iadd1044.17'] -13:52:52,840 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1050, stack=('$phi972.0', '$phi972.1'), blockstack=(), npush=0)] -13:52:52,840 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1050 nstack_initial=2), State(pc_initial=1644 nstack_initial=1), State(pc_initial=1276 nstack_initial=3), State(pc_initial=1050 nstack_initial=2)]) -13:52:52,840 numba.core.byteflow DEBUG stack: ['$phi1050.0', '$phi1050.1'] -13:52:52,840 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1050 nstack_initial=2) -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1050, inst=LOAD_FAST(arg=30, lineno=150) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1052, inst=LOAD_FAST(arg=44, lineno=150) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1054, inst=COPY(arg=2, lineno=150) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1056, inst=COPY(arg=2, lineno=150) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3', '$current1050.2'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1058, inst=BINARY_SUBSCR(arg=None, lineno=150) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3', '$current1050.2', '$d1052.3'] -13:52:52,840 numba.core.byteflow DEBUG dispatch pc=1068, inst=LOAD_FAST(arg=45, lineno=150) -13:52:52,840 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3', '$1058binary_subscr.4'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1070, inst=LOAD_FAST(arg=12, lineno=150) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3', '$1058binary_subscr.4', '$grad_d1068.5'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1072, inst=BINARY_OP(arg=5, lineno=150) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3', '$1058binary_subscr.4', '$grad_d1068.5', '$alpha1070.6'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1076, inst=BINARY_OP(arg=13, lineno=150) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3', '$1058binary_subscr.4', '$binop_mul1072.7'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1080, inst=SWAP(arg=3, lineno=150) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$current1050.2', '$d1052.3', '$binop_iadd1076.8'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1082, inst=SWAP(arg=2, lineno=150) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$binop_iadd1076.8', '$d1052.3', '$current1050.2'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1084, inst=STORE_SUBSCR(arg=None, lineno=150) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$binop_iadd1076.8', '$current1050.2', '$d1052.3'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1088, inst=LOAD_FAST(arg=11, lineno=151) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1090, inst=POP_JUMP_FORWARD_IF_FALSE(arg=20, lineno=151) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1050.0', '$phi1050.1', '$move_other1088.9'] -13:52:52,841 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1092, stack=('$phi1050.0', '$phi1050.1'), blockstack=(), npush=0), Edge(pc=1132, stack=('$phi1050.0', '$phi1050.1'), blockstack=(), npush=0)] -13:52:52,841 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1644 nstack_initial=1), State(pc_initial=1276 nstack_initial=3), State(pc_initial=1050 nstack_initial=2), State(pc_initial=1092 nstack_initial=2), State(pc_initial=1132 nstack_initial=2)]) -13:52:52,841 numba.core.byteflow DEBUG stack: ['$phi1644.0'] -13:52:52,841 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1644 nstack_initial=1) -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1644, inst=LOAD_FAST(arg=14, lineno=184) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1644.0'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1646, inst=LOAD_FAST(arg=27, lineno=184) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1648, inst=COPY(arg=2, lineno=184) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1650, inst=COPY(arg=2, lineno=184) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$epoch_of_next_negative_sample1644.1'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1652, inst=BINARY_SUBSCR(arg=None, lineno=184) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$epoch_of_next_negative_sample1644.1', '$i1646.2'] -13:52:52,841 numba.core.byteflow DEBUG dispatch pc=1662, inst=LOAD_FAST(arg=46, lineno=185) -13:52:52,841 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$1652binary_subscr.3'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1664, inst=LOAD_FAST(arg=13, lineno=185) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$1652binary_subscr.3', '$n_neg_samples1662.4'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1666, inst=LOAD_FAST(arg=27, lineno=185) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$1652binary_subscr.3', '$n_neg_samples1662.4', '$epochs_per_negative_sample1664.5'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1668, inst=BINARY_SUBSCR(arg=None, lineno=185) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$1652binary_subscr.3', '$n_neg_samples1662.4', '$epochs_per_negative_sample1664.5', '$i1666.6'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1678, inst=BINARY_OP(arg=5, lineno=185) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$1652binary_subscr.3', '$n_neg_samples1662.4', '$1668binary_subscr.7'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1682, inst=BINARY_OP(arg=13, lineno=184) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$1652binary_subscr.3', '$binop_mul1678.8'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1686, inst=SWAP(arg=3, lineno=184) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$epoch_of_next_negative_sample1644.1', '$i1646.2', '$binop_iadd1682.9'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1688, inst=SWAP(arg=2, lineno=184) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$binop_iadd1682.9', '$i1646.2', '$epoch_of_next_negative_sample1644.1'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1690, inst=STORE_SUBSCR(arg=None, lineno=184) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1644.0', '$binop_iadd1682.9', '$epoch_of_next_negative_sample1644.1', '$i1646.2'] -13:52:52,842 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1694, stack=('$phi1644.0',), blockstack=(), npush=0)] -13:52:52,842 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1276 nstack_initial=3), State(pc_initial=1050 nstack_initial=2), State(pc_initial=1092 nstack_initial=2), State(pc_initial=1132 nstack_initial=2), State(pc_initial=1694 nstack_initial=1)]) -13:52:52,842 numba.core.byteflow DEBUG stack: ['$phi1276.0', '$phi1276.1', '$phi1276.2'] -13:52:52,842 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1276 nstack_initial=3) -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1276, inst=STORE_FAST(arg=47, lineno=160) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$phi1276.2'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1278, inst=LOAD_GLOBAL(arg=21, lineno=161) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1290, inst=LOAD_FAST(arg=8, lineno=161) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1278.4', '$1278load_global.3'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1292, inst=LOAD_FAST(arg=28, lineno=161) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1278.4', '$1278load_global.3', '$rng_state_per_sample1290.5'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1294, inst=BINARY_SUBSCR(arg=None, lineno=161) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1278.4', '$1278load_global.3', '$rng_state_per_sample1290.5', '$j1292.6'] -13:52:52,842 numba.core.byteflow DEBUG dispatch pc=1304, inst=PRECALL(arg=1, lineno=161) -13:52:52,842 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1278.4', '$1278load_global.3', '$1294binary_subscr.7'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1308, inst=CALL(arg=1, lineno=161) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1278.4', '$1278load_global.3', '$1294binary_subscr.7'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1318, inst=LOAD_FAST(arg=4, lineno=161) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$1308call.8'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1320, inst=BINARY_OP(arg=6, lineno=161) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$1308call.8', '$n_vertices1318.9'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1324, inst=STORE_FAST(arg=29, lineno=161) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$binop_mod1320.10'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1326, inst=LOAD_FAST(arg=1, lineno=163) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1328, inst=LOAD_FAST(arg=29, lineno=163) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$tail_embedding1326.11'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1330, inst=BINARY_SUBSCR(arg=None, lineno=163) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$tail_embedding1326.11', '$k1328.12'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1340, inst=STORE_FAST(arg=31, lineno=163) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$1330binary_subscr.13'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1342, inst=LOAD_GLOBAL(arg=7, lineno=165) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1354, inst=LOAD_FAST(arg=30, lineno=165) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1342.15', '$1342load_global.14'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1356, inst=LOAD_FAST(arg=31, lineno=165) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1342.15', '$1342load_global.14', '$current1354.16'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1358, inst=PRECALL(arg=2, lineno=165) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1342.15', '$1342load_global.14', '$current1354.16', '$other1356.17'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1362, inst=CALL(arg=2, lineno=165) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$null$1342.15', '$1342load_global.14', '$current1354.16', '$other1356.17'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1372, inst=STORE_FAST(arg=32, lineno=165) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$1362call.18'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1374, inst=LOAD_FAST(arg=32, lineno=167) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1'] -13:52:52,843 numba.core.byteflow DEBUG dispatch pc=1376, inst=LOAD_CONST(arg=4, lineno=167) -13:52:52,843 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$dist_squared1374.19'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1378, inst=COMPARE_OP(arg=4, lineno=167) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$dist_squared1374.19', '$const1376.20'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1384, inst=POP_JUMP_FORWARD_IF_FALSE(arg=40, lineno=167) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1276.0', '$phi1276.1', '$1378compare_op.21'] -13:52:52,844 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1386, stack=('$phi1276.0', '$phi1276.1'), blockstack=(), npush=0), Edge(pc=1466, stack=('$phi1276.0', '$phi1276.1'), blockstack=(), npush=0)] -13:52:52,844 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1050 nstack_initial=2), State(pc_initial=1092 nstack_initial=2), State(pc_initial=1132 nstack_initial=2), State(pc_initial=1694 nstack_initial=1), State(pc_initial=1386 nstack_initial=2), State(pc_initial=1466 nstack_initial=2)]) -13:52:52,844 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1092 nstack_initial=2), State(pc_initial=1132 nstack_initial=2), State(pc_initial=1694 nstack_initial=1), State(pc_initial=1386 nstack_initial=2), State(pc_initial=1466 nstack_initial=2)]) -13:52:52,844 numba.core.byteflow DEBUG stack: ['$phi1092.0', '$phi1092.1'] -13:52:52,844 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1092 nstack_initial=2) -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1092, inst=LOAD_FAST(arg=31, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1094, inst=LOAD_FAST(arg=44, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1096, inst=COPY(arg=2, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1098, inst=COPY(arg=2, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$other1092.2'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1100, inst=BINARY_SUBSCR(arg=None, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$other1092.2', '$d1094.3'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1110, inst=LOAD_FAST(arg=45, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$1100binary_subscr.4'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1112, inst=UNARY_NEGATIVE(arg=None, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$1100binary_subscr.4', '$grad_d1110.5'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1114, inst=LOAD_FAST(arg=12, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$1100binary_subscr.4', '$1112unary_negative.6'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1116, inst=BINARY_OP(arg=5, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$1100binary_subscr.4', '$1112unary_negative.6', '$alpha1114.7'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1120, inst=BINARY_OP(arg=13, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$1100binary_subscr.4', '$binop_mul1116.8'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1124, inst=SWAP(arg=3, lineno=152) -13:52:52,844 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$other1092.2', '$d1094.3', '$binop_iadd1120.9'] -13:52:52,844 numba.core.byteflow DEBUG dispatch pc=1126, inst=SWAP(arg=2, lineno=152) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$binop_iadd1120.9', '$d1094.3', '$other1092.2'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1128, inst=STORE_SUBSCR(arg=None, lineno=152) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1092.0', '$phi1092.1', '$binop_iadd1120.9', '$other1092.2', '$d1094.3'] -13:52:52,845 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1132, stack=('$phi1092.0', '$phi1092.1'), blockstack=(), npush=0)] -13:52:52,845 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1132 nstack_initial=2), State(pc_initial=1694 nstack_initial=1), State(pc_initial=1386 nstack_initial=2), State(pc_initial=1466 nstack_initial=2), State(pc_initial=1132 nstack_initial=2)]) -13:52:52,845 numba.core.byteflow DEBUG stack: ['$phi1132.0', '$phi1132.1'] -13:52:52,845 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1132 nstack_initial=2) -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1132, inst=JUMP_BACKWARD(arg=118, lineno=152) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1132.0', '$phi1132.1'] -13:52:52,845 numba.core.byteflow DEBUG end state. edges=[Edge(pc=898, stack=('$phi1132.0', '$phi1132.1'), blockstack=(), npush=0)] -13:52:52,845 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1694 nstack_initial=1), State(pc_initial=1386 nstack_initial=2), State(pc_initial=1466 nstack_initial=2), State(pc_initial=1132 nstack_initial=2), State(pc_initial=898 nstack_initial=2)]) -13:52:52,845 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1386 nstack_initial=2), State(pc_initial=1466 nstack_initial=2), State(pc_initial=1132 nstack_initial=2), State(pc_initial=898 nstack_initial=2)]) -13:52:52,845 numba.core.byteflow DEBUG stack: ['$phi1386.0', '$phi1386.1'] -13:52:52,845 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1386 nstack_initial=2) -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1386, inst=LOAD_CONST(arg=7, lineno=168) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1388, inst=LOAD_FAST(arg=9, lineno=168) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$const1386.2'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1390, inst=BINARY_OP(arg=5, lineno=168) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$const1386.2', '$gamma1388.3'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1394, inst=LOAD_FAST(arg=7, lineno=168) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$binop_mul1390.4'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1396, inst=BINARY_OP(arg=5, lineno=168) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$binop_mul1390.4', '$b1394.5'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1400, inst=STORE_FAST(arg=43, lineno=168) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$binop_mul1396.6'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1402, inst=LOAD_FAST(arg=43, lineno=169) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1404, inst=LOAD_CONST(arg=8, lineno=169) -13:52:52,845 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7'] -13:52:52,845 numba.core.byteflow DEBUG dispatch pc=1406, inst=LOAD_FAST(arg=32, lineno=169) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$const1404.8'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1408, inst=BINARY_OP(arg=0, lineno=169) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$const1404.8', '$dist_squared1406.9'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1412, inst=LOAD_FAST(arg=6, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1414, inst=LOAD_GLOBAL(arg=9, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$a1412.11'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1426, inst=LOAD_FAST(arg=32, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$a1412.11', '$null$1414.13', '$1414load_global.12'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1428, inst=LOAD_FAST(arg=7, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$a1412.11', '$null$1414.13', '$1414load_global.12', '$dist_squared1426.14'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1430, inst=PRECALL(arg=2, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$a1412.11', '$null$1414.13', '$1414load_global.12', '$dist_squared1426.14', '$b1428.15'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1434, inst=CALL(arg=2, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$a1412.11', '$null$1414.13', '$1414load_global.12', '$dist_squared1426.14', '$b1428.15'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1444, inst=BINARY_OP(arg=5, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$a1412.11', '$1434call.16'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1448, inst=LOAD_CONST(arg=3, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$binop_mul1444.17'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1450, inst=BINARY_OP(arg=0, lineno=170) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$binop_mul1444.17', '$const1448.18'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1454, inst=BINARY_OP(arg=5, lineno=169) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_add1408.10', '$binop_add1450.19'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1458, inst=BINARY_OP(arg=24, lineno=169) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$grad_coeff1402.7', '$binop_mul1454.20'] -13:52:52,846 numba.core.byteflow DEBUG dispatch pc=1462, inst=STORE_FAST(arg=43, lineno=169) -13:52:52,846 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1', '$binop_itruediv1458.21'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1464, inst=JUMP_FORWARD(arg=9, lineno=169) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1386.0', '$phi1386.1'] -13:52:52,847 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1484, stack=('$phi1386.0', '$phi1386.1'), blockstack=(), npush=0)] -13:52:52,847 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1466 nstack_initial=2), State(pc_initial=1132 nstack_initial=2), State(pc_initial=898 nstack_initial=2), State(pc_initial=1484 nstack_initial=2)]) -13:52:52,847 numba.core.byteflow DEBUG stack: ['$phi1466.0', '$phi1466.1'] -13:52:52,847 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1466 nstack_initial=2) -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1466, inst=LOAD_FAST(arg=28, lineno=172) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1466.0', '$phi1466.1'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1468, inst=LOAD_FAST(arg=29, lineno=172) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1466.0', '$phi1466.1', '$j1466.2'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1470, inst=COMPARE_OP(arg=2, lineno=172) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1466.0', '$phi1466.1', '$j1466.2', '$k1468.3'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1476, inst=POP_JUMP_FORWARD_IF_FALSE(arg=1, lineno=172) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1466.0', '$phi1466.1', '$1470compare_op.4'] -13:52:52,847 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1478, stack=('$phi1466.0', '$phi1466.1'), blockstack=(), npush=0), Edge(pc=1480, stack=('$phi1466.0', '$phi1466.1'), blockstack=(), npush=0)] -13:52:52,847 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1132 nstack_initial=2), State(pc_initial=898 nstack_initial=2), State(pc_initial=1484 nstack_initial=2), State(pc_initial=1478 nstack_initial=2), State(pc_initial=1480 nstack_initial=2)]) -13:52:52,847 numba.core.byteflow DEBUG pending: deque([State(pc_initial=898 nstack_initial=2), State(pc_initial=1484 nstack_initial=2), State(pc_initial=1478 nstack_initial=2), State(pc_initial=1480 nstack_initial=2)]) -13:52:52,847 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1484 nstack_initial=2), State(pc_initial=1478 nstack_initial=2), State(pc_initial=1480 nstack_initial=2)]) -13:52:52,847 numba.core.byteflow DEBUG stack: ['$phi1484.0', '$phi1484.1'] -13:52:52,847 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1484 nstack_initial=2) -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1484, inst=LOAD_GLOBAL(arg=15, lineno=177) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1484.0', '$phi1484.1'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1496, inst=LOAD_FAST(arg=10, lineno=177) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1484.0', '$phi1484.1', '$null$1484.3', '$1484load_global.2'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1498, inst=PRECALL(arg=1, lineno=177) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1484.0', '$phi1484.1', '$null$1484.3', '$1484load_global.2', '$dim1496.4'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1502, inst=CALL(arg=1, lineno=177) -13:52:52,847 numba.core.byteflow DEBUG stack ['$phi1484.0', '$phi1484.1', '$null$1484.3', '$1484load_global.2', '$dim1496.4'] -13:52:52,847 numba.core.byteflow DEBUG dispatch pc=1512, inst=GET_ITER(arg=None, lineno=177) -13:52:52,848 numba.core.byteflow DEBUG stack ['$phi1484.0', '$phi1484.1', '$1502call.5'] -13:52:52,848 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1514, stack=('$phi1484.0', '$phi1484.1', '$1512get_iter.6'), blockstack=(), npush=0)] -13:52:52,848 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1478 nstack_initial=2), State(pc_initial=1480 nstack_initial=2), State(pc_initial=1514 nstack_initial=3)]) -13:52:52,848 numba.core.byteflow DEBUG stack: ['$phi1478.0', '$phi1478.1'] -13:52:52,848 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1478 nstack_initial=2) -13:52:52,848 numba.core.byteflow DEBUG dispatch pc=1478, inst=JUMP_BACKWARD(arg=103, lineno=173) -13:52:52,848 numba.core.byteflow DEBUG stack ['$phi1478.0', '$phi1478.1'] -13:52:52,848 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1274, stack=('$phi1478.0', '$phi1478.1'), blockstack=(), npush=0)] -13:52:52,848 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1480 nstack_initial=2), State(pc_initial=1514 nstack_initial=3), State(pc_initial=1274 nstack_initial=2)]) -13:52:52,848 numba.core.byteflow DEBUG stack: ['$phi1480.0', '$phi1480.1'] -13:52:52,848 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1480 nstack_initial=2) -13:52:52,848 numba.core.byteflow DEBUG dispatch pc=1480, inst=LOAD_CONST(arg=4, lineno=175) -13:52:52,848 numba.core.byteflow DEBUG stack ['$phi1480.0', '$phi1480.1'] -13:52:52,848 numba.core.byteflow DEBUG dispatch pc=1482, inst=STORE_FAST(arg=43, lineno=175) -13:52:52,848 numba.core.byteflow DEBUG stack ['$phi1480.0', '$phi1480.1', '$const1480.2'] -13:52:52,848 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1484, stack=('$phi1480.0', '$phi1480.1'), blockstack=(), npush=0)] -13:52:52,848 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1514 nstack_initial=3), State(pc_initial=1274 nstack_initial=2), State(pc_initial=1484 nstack_initial=2)]) -13:52:52,848 numba.core.byteflow DEBUG stack: ['$phi1514.0', '$phi1514.1', '$phi1514.2'] -13:52:52,848 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1514 nstack_initial=3) -13:52:52,848 numba.core.byteflow DEBUG dispatch pc=1514, inst=FOR_ITER(arg=63, lineno=177) -13:52:52,848 numba.core.byteflow DEBUG stack ['$phi1514.0', '$phi1514.1', '$phi1514.2'] -13:52:52,848 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1642, stack=('$phi1514.0', '$phi1514.1'), blockstack=(), npush=0), Edge(pc=1516, stack=('$phi1514.0', '$phi1514.1', '$phi1514.2', '$1514for_iter.4'), blockstack=(), npush=0)] -13:52:52,848 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1274 nstack_initial=2), State(pc_initial=1484 nstack_initial=2), State(pc_initial=1642 nstack_initial=2), State(pc_initial=1516 nstack_initial=4)]) -13:52:52,848 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1484 nstack_initial=2), State(pc_initial=1642 nstack_initial=2), State(pc_initial=1516 nstack_initial=4)]) -13:52:52,848 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1642 nstack_initial=2), State(pc_initial=1516 nstack_initial=4)]) -13:52:52,848 numba.core.byteflow DEBUG stack: ['$phi1642.0', '$phi1642.1'] -13:52:52,848 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1642 nstack_initial=2) -13:52:52,848 numba.core.byteflow DEBUG dispatch pc=1642, inst=JUMP_BACKWARD(arg=185, lineno=177) -13:52:52,848 numba.core.byteflow DEBUG stack ['$phi1642.0', '$phi1642.1'] -13:52:52,848 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1274, stack=('$phi1642.0', '$phi1642.1'), blockstack=(), npush=0)] -13:52:52,848 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1516 nstack_initial=4), State(pc_initial=1274 nstack_initial=2)]) -13:52:52,848 numba.core.byteflow DEBUG stack: ['$phi1516.0', '$phi1516.1', '$phi1516.2', '$phi1516.3'] -13:52:52,849 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1516 nstack_initial=4) -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1516, inst=STORE_FAST(arg=44, lineno=177) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1516.0', '$phi1516.1', '$phi1516.2', '$phi1516.3'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1518, inst=LOAD_FAST(arg=43, lineno=178) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1516.0', '$phi1516.1', '$phi1516.2'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1520, inst=LOAD_CONST(arg=4, lineno=178) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1516.0', '$phi1516.1', '$phi1516.2', '$grad_coeff1518.4'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1522, inst=COMPARE_OP(arg=4, lineno=178) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1516.0', '$phi1516.1', '$phi1516.2', '$grad_coeff1518.4', '$const1520.5'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1528, inst=POP_JUMP_FORWARD_IF_FALSE(arg=34, lineno=178) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1516.0', '$phi1516.1', '$phi1516.2', '$1522compare_op.6'] -13:52:52,849 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1530, stack=('$phi1516.0', '$phi1516.1', '$phi1516.2'), blockstack=(), npush=0), Edge(pc=1598, stack=('$phi1516.0', '$phi1516.1', '$phi1516.2'), blockstack=(), npush=0)] -13:52:52,849 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1274 nstack_initial=2), State(pc_initial=1530 nstack_initial=3), State(pc_initial=1598 nstack_initial=3)]) -13:52:52,849 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1530 nstack_initial=3), State(pc_initial=1598 nstack_initial=3)]) -13:52:52,849 numba.core.byteflow DEBUG stack: ['$phi1530.0', '$phi1530.1', '$phi1530.2'] -13:52:52,849 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1530 nstack_initial=3) -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1530, inst=LOAD_GLOBAL(arg=17, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1542, inst=LOAD_FAST(arg=43, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1544, inst=LOAD_FAST(arg=30, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1546, inst=LOAD_FAST(arg=44, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5', '$current1544.6'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1548, inst=BINARY_SUBSCR(arg=None, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5', '$current1544.6', '$d1546.7'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1558, inst=LOAD_FAST(arg=31, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5', '$1548binary_subscr.8'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1560, inst=LOAD_FAST(arg=44, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5', '$1548binary_subscr.8', '$other1558.9'] -13:52:52,849 numba.core.byteflow DEBUG dispatch pc=1562, inst=BINARY_SUBSCR(arg=None, lineno=179) -13:52:52,849 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5', '$1548binary_subscr.8', '$other1558.9', '$d1560.10'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1572, inst=BINARY_OP(arg=10, lineno=179) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5', '$1548binary_subscr.8', '$1562binary_subscr.11'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1576, inst=BINARY_OP(arg=5, lineno=179) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$grad_coeff1542.5', '$binop_sub1572.12'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1580, inst=PRECALL(arg=1, lineno=179) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$binop_mul1576.13'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1584, inst=CALL(arg=1, lineno=179) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$null$1530.4', '$1530load_global.3', '$binop_mul1576.13'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1594, inst=STORE_FAST(arg=45, lineno=179) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2', '$1584call.14'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1596, inst=JUMP_FORWARD(arg=2, lineno=179) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1530.0', '$phi1530.1', '$phi1530.2'] -13:52:52,850 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1602, stack=('$phi1530.0', '$phi1530.1', '$phi1530.2'), blockstack=(), npush=0)] -13:52:52,850 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1598 nstack_initial=3), State(pc_initial=1602 nstack_initial=3)]) -13:52:52,850 numba.core.byteflow DEBUG stack: ['$phi1598.0', '$phi1598.1', '$phi1598.2'] -13:52:52,850 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1598 nstack_initial=3) -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1598, inst=LOAD_CONST(arg=1, lineno=181) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1598.0', '$phi1598.1', '$phi1598.2'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1600, inst=STORE_FAST(arg=45, lineno=181) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1598.0', '$phi1598.1', '$phi1598.2', '$const1598.3'] -13:52:52,850 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1602, stack=('$phi1598.0', '$phi1598.1', '$phi1598.2'), blockstack=(), npush=0)] -13:52:52,850 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1602 nstack_initial=3), State(pc_initial=1602 nstack_initial=3)]) -13:52:52,850 numba.core.byteflow DEBUG stack: ['$phi1602.0', '$phi1602.1', '$phi1602.2'] -13:52:52,850 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=1602 nstack_initial=3) -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1602, inst=LOAD_FAST(arg=30, lineno=182) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1604, inst=LOAD_FAST(arg=44, lineno=182) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1606, inst=COPY(arg=2, lineno=182) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4'] -13:52:52,850 numba.core.byteflow DEBUG dispatch pc=1608, inst=COPY(arg=2, lineno=182) -13:52:52,850 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4', '$current1602.3'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1610, inst=BINARY_SUBSCR(arg=None, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4', '$current1602.3', '$d1604.4'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1620, inst=LOAD_FAST(arg=45, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4', '$1610binary_subscr.5'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1622, inst=LOAD_FAST(arg=12, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4', '$1610binary_subscr.5', '$grad_d1620.6'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1624, inst=BINARY_OP(arg=5, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4', '$1610binary_subscr.5', '$grad_d1620.6', '$alpha1622.7'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1628, inst=BINARY_OP(arg=13, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4', '$1610binary_subscr.5', '$binop_mul1624.8'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1632, inst=SWAP(arg=3, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$current1602.3', '$d1604.4', '$binop_iadd1628.9'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1634, inst=SWAP(arg=2, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$binop_iadd1628.9', '$d1604.4', '$current1602.3'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1636, inst=STORE_SUBSCR(arg=None, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2', '$binop_iadd1628.9', '$current1602.3', '$d1604.4'] -13:52:52,851 numba.core.byteflow DEBUG dispatch pc=1640, inst=JUMP_BACKWARD(arg=64, lineno=182) -13:52:52,851 numba.core.byteflow DEBUG stack ['$phi1602.0', '$phi1602.1', '$phi1602.2'] -13:52:52,851 numba.core.byteflow DEBUG end state. edges=[Edge(pc=1514, stack=('$phi1602.0', '$phi1602.1', '$phi1602.2'), blockstack=(), npush=0)] -13:52:52,851 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1602 nstack_initial=3), State(pc_initial=1514 nstack_initial=3)]) -13:52:52,851 numba.core.byteflow DEBUG pending: deque([State(pc_initial=1514 nstack_initial=3)]) -13:52:52,851 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:52,851 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=66 nstack_initial=1): set(), - State(pc_initial=68 nstack_initial=1): {'$phi68.0'}, - State(pc_initial=70 nstack_initial=2): {'$phi70.1'}, - State(pc_initial=98 nstack_initial=1): set(), - State(pc_initial=200 nstack_initial=1): set(), - State(pc_initial=744 nstack_initial=1): set(), - State(pc_initial=756 nstack_initial=1): set(), - State(pc_initial=864 nstack_initial=1): set(), - State(pc_initial=868 nstack_initial=1): set(), - State(pc_initial=898 nstack_initial=2): {'$phi898.1'}, - State(pc_initial=900 nstack_initial=3): {'$phi900.2'}, - State(pc_initial=972 nstack_initial=2): set(), - State(pc_initial=1050 nstack_initial=2): set(), - State(pc_initial=1092 nstack_initial=2): set(), - State(pc_initial=1132 nstack_initial=2): set(), - State(pc_initial=1134 nstack_initial=1): set(), - State(pc_initial=1274 nstack_initial=2): {'$phi1274.1'}, - State(pc_initial=1276 nstack_initial=3): {'$phi1276.2'}, - State(pc_initial=1386 nstack_initial=2): set(), - State(pc_initial=1466 nstack_initial=2): set(), - State(pc_initial=1478 nstack_initial=2): set(), - State(pc_initial=1480 nstack_initial=2): set(), - State(pc_initial=1484 nstack_initial=2): set(), - State(pc_initial=1514 nstack_initial=3): {'$phi1514.2'}, - State(pc_initial=1516 nstack_initial=4): {'$phi1516.3'}, - State(pc_initial=1530 nstack_initial=3): set(), - State(pc_initial=1598 nstack_initial=3): set(), - State(pc_initial=1602 nstack_initial=3): set(), - State(pc_initial=1642 nstack_initial=2): set(), - State(pc_initial=1644 nstack_initial=1): set(), - State(pc_initial=1694 nstack_initial=1): set(), - State(pc_initial=1698 nstack_initial=0): set()}) -13:52:52,852 numba.core.byteflow DEBUG defmap: {'$phi1274.1': State(pc_initial=1134 nstack_initial=1), - '$phi1276.2': State(pc_initial=1274 nstack_initial=2), - '$phi1514.2': State(pc_initial=1484 nstack_initial=2), - '$phi1516.3': State(pc_initial=1514 nstack_initial=3), - '$phi66.0': State(pc_initial=0 nstack_initial=0), - '$phi70.1': State(pc_initial=68 nstack_initial=1), - '$phi898.1': State(pc_initial=868 nstack_initial=1), - '$phi900.2': State(pc_initial=898 nstack_initial=2)} -13:52:52,852 numba.core.byteflow DEBUG phismap: defaultdict(, - {'$phi1050.0': {('$phi900.0', - State(pc_initial=900 nstack_initial=3)), - ('$phi972.0', - State(pc_initial=972 nstack_initial=2))}, - '$phi1050.1': {('$phi900.1', - State(pc_initial=900 nstack_initial=3)), - ('$phi972.1', - State(pc_initial=972 nstack_initial=2))}, - '$phi1092.0': {('$phi1050.0', - State(pc_initial=1050 nstack_initial=2))}, - '$phi1092.1': {('$phi1050.1', - State(pc_initial=1050 nstack_initial=2))}, - '$phi1132.0': {('$phi1050.0', - State(pc_initial=1050 nstack_initial=2)), - ('$phi1092.0', - State(pc_initial=1092 nstack_initial=2))}, - '$phi1132.1': {('$phi1050.1', - State(pc_initial=1050 nstack_initial=2)), - ('$phi1092.1', - State(pc_initial=1092 nstack_initial=2))}, - '$phi1134.0': {('$phi898.0', - State(pc_initial=898 nstack_initial=2))}, - '$phi1274.0': {('$phi1134.0', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1478.0', - State(pc_initial=1478 nstack_initial=2)), - ('$phi1642.0', - State(pc_initial=1642 nstack_initial=2))}, - '$phi1274.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1478.1', - State(pc_initial=1478 nstack_initial=2)), - ('$phi1642.1', - State(pc_initial=1642 nstack_initial=2))}, - '$phi1276.0': {('$phi1274.0', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1276.1': {('$phi1274.1', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1276.2': {('$1274for_iter.3', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1386.0': {('$phi1276.0', - State(pc_initial=1276 nstack_initial=3))}, - '$phi1386.1': {('$phi1276.1', - State(pc_initial=1276 nstack_initial=3))}, - '$phi1466.0': {('$phi1276.0', - State(pc_initial=1276 nstack_initial=3))}, - '$phi1466.1': {('$phi1276.1', - State(pc_initial=1276 nstack_initial=3))}, - '$phi1478.0': {('$phi1466.0', - State(pc_initial=1466 nstack_initial=2))}, - '$phi1478.1': {('$phi1466.1', - State(pc_initial=1466 nstack_initial=2))}, - '$phi1480.0': {('$phi1466.0', - State(pc_initial=1466 nstack_initial=2))}, - '$phi1480.1': {('$phi1466.1', - State(pc_initial=1466 nstack_initial=2))}, - '$phi1484.0': {('$phi1386.0', - State(pc_initial=1386 nstack_initial=2)), - ('$phi1480.0', - State(pc_initial=1480 nstack_initial=2))}, - '$phi1484.1': {('$phi1386.1', - State(pc_initial=1386 nstack_initial=2)), - ('$phi1480.1', - State(pc_initial=1480 nstack_initial=2))}, - '$phi1514.0': {('$phi1484.0', - State(pc_initial=1484 nstack_initial=2)), - ('$phi1602.0', - State(pc_initial=1602 nstack_initial=3))}, - '$phi1514.1': {('$phi1484.1', - State(pc_initial=1484 nstack_initial=2)), - ('$phi1602.1', - State(pc_initial=1602 nstack_initial=3))}, - '$phi1514.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2)), - ('$phi1602.2', - State(pc_initial=1602 nstack_initial=3))}, - '$phi1516.0': {('$phi1514.0', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1516.1': {('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1516.2': {('$phi1514.2', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1516.3': {('$1514for_iter.4', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1530.0': {('$phi1516.0', - State(pc_initial=1516 nstack_initial=4))}, - '$phi1530.1': {('$phi1516.1', - State(pc_initial=1516 nstack_initial=4))}, - '$phi1530.2': {('$phi1516.2', - State(pc_initial=1516 nstack_initial=4))}, - '$phi1598.0': {('$phi1516.0', - State(pc_initial=1516 nstack_initial=4))}, - '$phi1598.1': {('$phi1516.1', - State(pc_initial=1516 nstack_initial=4))}, - '$phi1598.2': {('$phi1516.2', - State(pc_initial=1516 nstack_initial=4))}, - '$phi1602.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1602.1': {('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1602.2': {('$phi1530.2', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.2', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1642.0': {('$phi1514.0', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1642.1': {('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1644.0': {('$phi1274.0', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1694.0': {('$phi1644.0', - State(pc_initial=1644 nstack_initial=1)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi200.0': {('$phi98.0', State(pc_initial=98 nstack_initial=1))}, - '$phi66.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1694.0', - State(pc_initial=1694 nstack_initial=1))}, - '$phi68.0': {('$phi66.0', State(pc_initial=66 nstack_initial=1))}, - '$phi70.0': {('$phi68.0', State(pc_initial=68 nstack_initial=1))}, - '$phi70.1': {('$68for_iter.2', - State(pc_initial=68 nstack_initial=1))}, - '$phi744.0': {('$phi200.0', - State(pc_initial=200 nstack_initial=1)), - ('$phi98.0', State(pc_initial=98 nstack_initial=1))}, - '$phi756.0': {('$phi744.0', - State(pc_initial=744 nstack_initial=1))}, - '$phi864.0': {('$phi744.0', - State(pc_initial=744 nstack_initial=1))}, - '$phi868.0': {('$phi756.0', - State(pc_initial=756 nstack_initial=1)), - ('$phi864.0', - State(pc_initial=864 nstack_initial=1))}, - '$phi898.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi898.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1)), - ('$phi1132.1', - State(pc_initial=1132 nstack_initial=2))}, - '$phi900.0': {('$phi898.0', - State(pc_initial=898 nstack_initial=2))}, - '$phi900.1': {('$phi898.1', - State(pc_initial=898 nstack_initial=2))}, - '$phi900.2': {('$898for_iter.3', - State(pc_initial=898 nstack_initial=2))}, - '$phi972.0': {('$phi900.0', - State(pc_initial=900 nstack_initial=3))}, - '$phi972.1': {('$phi900.1', - State(pc_initial=900 nstack_initial=3))}, - '$phi98.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}}) -13:52:52,854 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1050.0': {('$phi898.0', - State(pc_initial=898 nstack_initial=2))}, - '$phi1050.1': {('$phi898.1', - State(pc_initial=898 nstack_initial=2))}, - '$phi1092.0': {('$phi898.0', - State(pc_initial=898 nstack_initial=2))}, - '$phi1092.1': {('$phi898.1', - State(pc_initial=898 nstack_initial=2))}, - '$phi1132.0': {('$phi898.0', - State(pc_initial=898 nstack_initial=2))}, - '$phi1132.1': {('$phi898.1', - State(pc_initial=898 nstack_initial=2))}, - '$phi1134.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1274.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1274.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1276.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1276.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1276.2': {('$1274for_iter.3', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1386.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1386.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1466.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1466.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1478.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1478.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1480.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1480.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1484.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1484.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1514.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1514.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.1', - State(pc_initial=1514 nstack_initial=3)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1514.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2)), - ('$phi1530.2', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.2', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1516.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1516.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1516.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2)), - ('$phi1530.2', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.2', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1516.3': {('$1514for_iter.4', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1530.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1530.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1530.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2)), - ('$phi1530.2', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.2', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1598.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1598.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1598.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2)), - ('$phi1530.2', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.2', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1602.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1602.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2))}, - '$phi1602.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1642.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1642.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1466.1', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1644.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi1694.0': {('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi68.0', State(pc_initial=68 nstack_initial=1)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi200.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi66.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi68.0', State(pc_initial=68 nstack_initial=1)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi68.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi68.0', State(pc_initial=68 nstack_initial=1)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi70.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi70.1': {('$68for_iter.2', - State(pc_initial=68 nstack_initial=1))}, - '$phi744.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi756.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi864.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi868.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi898.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2)), - ('$phi898.0', - State(pc_initial=898 nstack_initial=2))}, - '$phi898.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1)), - ('$phi898.1', - State(pc_initial=898 nstack_initial=2))}, - '$phi900.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi900.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.2': {('$898for_iter.3', - State(pc_initial=898 nstack_initial=2))}, - '$phi972.0': {('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi972.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi98.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}}) -13:52:52,857 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1050.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1050.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1092.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1092.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1132.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1132.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1134.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1274.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1274.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1276.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1276.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1276.2': {('$1274for_iter.3', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1386.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1386.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1466.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1466.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1478.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1478.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1480.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1480.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1484.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1484.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1)), - ('$phi1530.1', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.1', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1514.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1514.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1514.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1516.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1516.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.3': {('$1514for_iter.4', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1530.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1530.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1530.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1598.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1598.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1598.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1602.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1602.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1602.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1642.0': {('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1642.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1644.0': {('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', - State(pc_initial=70 nstack_initial=2))}, - '$phi1694.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi200.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1132.0', - State(pc_initial=1132 nstack_initial=2)), - ('$phi1466.0', - State(pc_initial=1466 nstack_initial=2)), - ('$phi1514.0', - State(pc_initial=1514 nstack_initial=3)), - ('$phi868.0', - State(pc_initial=868 nstack_initial=1))}, - '$phi66.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi68.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi70.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3)), - ('$phi70.0', State(pc_initial=70 nstack_initial=2))}, - '$phi70.1': {('$68for_iter.2', - State(pc_initial=68 nstack_initial=1))}, - '$phi744.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi756.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi864.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi868.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi898.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi898.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi900.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.2': {('$898for_iter.3', - State(pc_initial=898 nstack_initial=2))}, - '$phi972.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi972.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi98.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}}) -13:52:52,860 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1050.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1050.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1092.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1092.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1132.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1132.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1134.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi1274.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1274.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1276.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1276.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1276.2': {('$1274for_iter.3', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1386.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1386.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1466.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1466.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1478.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1478.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1480.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1480.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1484.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1484.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1514.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1514.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1514.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1516.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1516.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.3': {('$1514for_iter.4', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1530.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1530.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1530.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1598.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1598.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1598.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1602.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1602.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1602.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1642.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1642.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1644.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1694.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi200.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0)), - ('$phi1530.0', - State(pc_initial=1530 nstack_initial=3)), - ('$phi1598.0', - State(pc_initial=1598 nstack_initial=3))}, - '$phi66.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi68.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi70.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi70.1': {('$68for_iter.2', - State(pc_initial=68 nstack_initial=1))}, - '$phi744.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi756.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi864.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi868.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi898.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi898.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi900.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.2': {('$898for_iter.3', - State(pc_initial=898 nstack_initial=2))}, - '$phi972.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi972.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi98.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}}) -13:52:52,862 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1050.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1050.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1092.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1092.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1132.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1132.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1134.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1274.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1274.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1276.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1276.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1276.2': {('$1274for_iter.3', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1386.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1386.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1466.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1466.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1478.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1478.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1480.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1480.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1484.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1484.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1514.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1514.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1514.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1516.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1516.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.3': {('$1514for_iter.4', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1530.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1530.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1530.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1598.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1598.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1598.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1602.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1602.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1602.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1642.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1642.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1644.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1694.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi200.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi66.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi68.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi70.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi70.1': {('$68for_iter.2', - State(pc_initial=68 nstack_initial=1))}, - '$phi744.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi756.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi864.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi868.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi898.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi898.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi900.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.2': {('$898for_iter.3', - State(pc_initial=898 nstack_initial=2))}, - '$phi972.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi972.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi98.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}}) -13:52:52,864 numba.core.byteflow DEBUG changing phismap: defaultdict(, - {'$phi1050.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1050.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1092.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1092.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1132.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1132.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi1134.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1274.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1274.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1276.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1276.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1276.2': {('$1274for_iter.3', - State(pc_initial=1274 nstack_initial=2))}, - '$phi1386.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1386.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1466.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1466.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1478.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1478.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1480.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1480.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1484.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1484.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1514.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1514.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1514.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1516.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1516.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.3': {('$1514for_iter.4', - State(pc_initial=1514 nstack_initial=3))}, - '$phi1530.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1530.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1530.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1598.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1598.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1598.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1602.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1602.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1602.2': {('$1512get_iter.6', - State(pc_initial=1484 nstack_initial=2))}, - '$phi1642.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1642.1': {('$1272get_iter.24', - State(pc_initial=1134 nstack_initial=1))}, - '$phi1644.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi1694.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi200.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi66.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi68.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi70.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi70.1': {('$68for_iter.2', - State(pc_initial=68 nstack_initial=1))}, - '$phi744.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi756.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi864.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi868.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi898.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi898.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi900.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi900.2': {('$898for_iter.3', - State(pc_initial=898 nstack_initial=2))}, - '$phi972.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}, - '$phi972.1': {('$896get_iter.5', - State(pc_initial=868 nstack_initial=1))}, - '$phi98.0': {('$64get_iter.8', - State(pc_initial=0 nstack_initial=0))}}) -13:52:52,865 numba.core.byteflow DEBUG keep phismap: {'$phi1274.1': {('$1272get_iter.24', State(pc_initial=1134 nstack_initial=1))}, - '$phi1276.2': {('$1274for_iter.3', State(pc_initial=1274 nstack_initial=2))}, - '$phi1514.2': {('$1512get_iter.6', State(pc_initial=1484 nstack_initial=2))}, - '$phi1516.3': {('$1514for_iter.4', State(pc_initial=1514 nstack_initial=3))}, - '$phi68.0': {('$64get_iter.8', State(pc_initial=0 nstack_initial=0))}, - '$phi70.1': {('$68for_iter.2', State(pc_initial=68 nstack_initial=1))}, - '$phi898.1': {('$896get_iter.5', State(pc_initial=868 nstack_initial=1))}, - '$phi900.2': {('$898for_iter.3', State(pc_initial=898 nstack_initial=2))}} -13:52:52,865 numba.core.byteflow DEBUG new_out: defaultdict(, - {State(pc_initial=0 nstack_initial=0): {'$phi68.0': '$64get_iter.8'}, - State(pc_initial=68 nstack_initial=1): {'$phi70.1': '$68for_iter.2'}, - State(pc_initial=868 nstack_initial=1): {'$phi898.1': '$896get_iter.5'}, - State(pc_initial=898 nstack_initial=2): {'$phi900.2': '$898for_iter.3'}, - State(pc_initial=1134 nstack_initial=1): {'$phi1274.1': '$1272get_iter.24'}, - State(pc_initial=1274 nstack_initial=2): {'$phi1276.2': '$1274for_iter.3'}, - State(pc_initial=1484 nstack_initial=2): {'$phi1514.2': '$1512get_iter.6'}, - State(pc_initial=1514 nstack_initial=3): {'$phi1516.3': '$1514for_iter.4'}}) -13:52:52,865 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:52,865 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'idx': 0, 'res': '$4load_global.0'}), (6, {}), (8, {}), (10, {}), (12, {}), (14, {}), (16, {'item': '$4load_global.0', 'res': '$16load_attr.2'}), (18, {}), (20, {}), (22, {}), (24, {}), (26, {'res': '$epochs_per_sample26.3'}), (28, {'item': '$epochs_per_sample26.3', 'res': '$28load_attr.4'}), (30, {}), (32, {}), (34, {}), (36, {}), (38, {'res': '$const38.5'}), (40, {'index': '$const38.5', 'target': '$28load_attr.4', 'res': '$40binary_subscr.6'}), (42, {}), (44, {}), (46, {}), (48, {}), (50, {}), (52, {}), (54, {'func': '$16load_attr.2', 'args': ['$40binary_subscr.6'], 'kw_names': None, 'res': '$54call.7'}), (56, {}), (58, {}), (60, {}), (62, {}), (64, {'value': '$54call.7', 'res': '$64get_iter.8'})), outgoing_phis={'$phi68.0': '$64get_iter.8'}, blockstack=(), active_try_block=None, outgoing_edgepushed={66: ('$64get_iter.8',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=66 nstack_initial=1): -AdaptBlockInfo(insts=((66, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={68: ('$phi66.0',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=68 nstack_initial=1): -AdaptBlockInfo(insts=((68, {'iterator': '$phi68.0', 'pair': '$68for_iter.1', 'indval': '$68for_iter.2', 'pred': '$68for_iter.3'}),), outgoing_phis={'$phi70.1': '$68for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1698: (), 70: ('$phi68.0', '$68for_iter.2')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=70 nstack_initial=2): -AdaptBlockInfo(insts=((70, {'value': '$phi70.1'}), (72, {'res': '$epoch_of_next_sample72.2'}), (74, {'res': '$i74.3'}), (76, {'index': '$i74.3', 'target': '$epoch_of_next_sample72.2', 'res': '$76binary_subscr.4'}), (78, {}), (80, {}), (82, {}), (84, {}), (86, {'res': '$n86.5'}), (88, {'lhs': '$76binary_subscr.4', 'rhs': '$n86.5', 'res': '$88compare_op.6'}), (90, {}), (92, {}), (94, {}), (96, {'pred': '$88compare_op.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={98: ('$phi70.0',), 1694: ('$phi70.0',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=98 nstack_initial=1): -AdaptBlockInfo(insts=((98, {'res': '$head98.1'}), (100, {'res': '$i100.2'}), (102, {'index': '$i100.2', 'target': '$head98.1', 'res': '$102binary_subscr.3'}), (104, {}), (106, {}), (108, {}), (110, {}), (112, {'value': '$102binary_subscr.3'}), (114, {'res': '$tail114.4'}), (116, {'res': '$i116.5'}), (118, {'index': '$i116.5', 'target': '$tail114.4', 'res': '$118binary_subscr.6'}), (120, {}), (122, {}), (124, {}), (126, {}), (128, {'value': '$118binary_subscr.6'}), (130, {'res': '$head_embedding130.7'}), (132, {'res': '$j132.8'}), (134, {'index': '$j132.8', 'target': '$head_embedding130.7', 'res': '$134binary_subscr.9'}), (136, {}), (138, {}), (140, {}), (142, {}), (144, {'value': '$134binary_subscr.9'}), (146, {'res': '$tail_embedding146.10'}), (148, {'res': '$k148.11'}), (150, {'index': '$k148.11', 'target': '$tail_embedding146.10', 'res': '$150binary_subscr.12'}), (152, {}), (154, {}), (156, {}), (158, {}), (160, {'value': '$150binary_subscr.12'}), (162, {'idx': 3, 'res': '$162load_global.13'}), (164, {}), (166, {}), (168, {}), (170, {}), (172, {}), (174, {'res': '$current174.15'}), (176, {'res': '$other176.16'}), (178, {}), (180, {}), (182, {'func': '$162load_global.13', 'args': ['$current174.15', '$other176.16'], 'kw_names': None, 'res': '$182call.17'}), (184, {}), (186, {}), (188, {}), (190, {}), (192, {'value': '$182call.17'}), (194, {'res': '$densmap_flag194.18'}), (196, {}), (198, {'pred': '$densmap_flag194.18'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={200: ('$phi98.0',), 744: ('$phi98.0',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=200 nstack_initial=1): -AdaptBlockInfo(insts=((200, {'res': '$const200.1'}), (202, {'res': '$const202.2'}), (204, {'res': '$a204.3'}), (206, {'idx': 4, 'res': '$206load_global.4'}), (208, {}), (210, {}), (212, {}), (214, {}), (216, {}), (218, {'res': '$dist_squared218.6'}), (220, {'res': '$b220.7'}), (222, {}), (224, {}), (226, {'func': '$206load_global.4', 'args': ['$dist_squared218.6', '$b220.7'], 'kw_names': None, 'res': '$226call.8'}), (228, {}), (230, {}), (232, {}), (234, {}), (236, {'op': '*', 'lhs': '$a204.3', 'rhs': '$226call.8', 'res': '$binop_mul236.9'}), (238, {}), (240, {'op': '+', 'lhs': '$const202.2', 'rhs': '$binop_mul236.9', 'res': '$binop_add240.10'}), (242, {}), (244, {'op': '/', 'lhs': '$const200.1', 'rhs': '$binop_add240.10', 'res': '$binop_truediv244.11'}), (246, {}), (248, {'value': '$binop_truediv244.11'}), (250, {'res': '$a250.12'}), (252, {'res': '$b252.13'}), (254, {'op': '*', 'lhs': '$a250.12', 'rhs': '$b252.13', 'res': '$binop_mul254.14'}), (256, {}), (258, {'idx': 4, 'res': '$258load_global.15'}), (260, {}), (262, {}), (264, {}), (266, {}), (268, {}), (270, {'res': '$dist_squared270.17'}), (272, {'res': '$b272.18'}), (274, {'res': '$const274.19'}), (276, {'op': '-', 'lhs': '$b272.18', 'rhs': '$const274.19', 'res': '$binop_sub276.20'}), (278, {}), (280, {}), (282, {}), (284, {'func': '$258load_global.15', 'args': ['$dist_squared270.17', '$binop_sub276.20'], 'kw_names': None, 'res': '$284call.21'}), (286, {}), (288, {}), (290, {}), (292, {}), (294, {'op': '*', 'lhs': '$binop_mul254.14', 'rhs': '$284call.21', 'res': '$binop_mul294.22'}), (296, {}), (298, {'res': '$const298.23'}), (300, {'res': '$a300.24'}), (302, {'idx': 4, 'res': '$302load_global.25'}), (304, {}), (306, {}), (308, {}), (310, {}), (312, {}), (314, {'res': '$dist_squared314.27'}), (316, {'res': '$b316.28'}), (318, {}), (320, {}), (322, {'func': '$302load_global.25', 'args': ['$dist_squared314.27', '$b316.28'], 'kw_names': None, 'res': '$322call.29'}), (324, {}), (326, {}), (328, {}), (330, {}), (332, {'op': '*', 'lhs': '$a300.24', 'rhs': '$322call.29', 'res': '$binop_mul332.30'}), (334, {}), (336, {'op': '+', 'lhs': '$const298.23', 'rhs': '$binop_mul332.30', 'res': '$binop_add336.31'}), (338, {}), (340, {'op': '/', 'lhs': '$binop_mul294.22', 'rhs': '$binop_add336.31', 'res': '$binop_truediv340.32'}), (342, {}), (344, {'value': '$binop_truediv340.32'}), (346, {'res': '$phi346.33'}), (348, {'res': '$dens_phi_sum348.34'}), (350, {'res': '$k350.35'}), (352, {'index': '$k350.35', 'target': '$dens_phi_sum348.34', 'res': '$352binary_subscr.36'}), (354, {}), (356, {}), (358, {}), (360, {}), (362, {'op': '/', 'lhs': '$phi346.33', 'rhs': '$352binary_subscr.36', 'res': '$binop_truediv362.37'}), (364, {}), (366, {'value': '$binop_truediv362.37'}), (368, {'res': '$phi368.38'}), (370, {'res': '$dens_phi_sum370.39'}), (372, {'res': '$j372.40'}), (374, {'index': '$j372.40', 'target': '$dens_phi_sum370.39', 'res': '$374binary_subscr.41'}), (376, {}), (378, {}), (380, {}), (382, {}), (384, {'op': '/', 'lhs': '$phi368.38', 'rhs': '$374binary_subscr.41', 'res': '$binop_truediv384.42'}), (386, {}), (388, {'value': '$binop_truediv384.42'}), (390, {'res': '$q_jk390.43'}), (392, {'res': '$const392.44'}), (394, {'res': '$b394.45'}), (396, {'res': '$const396.46'}), (398, {'res': '$phi398.47'}), (400, {'op': '-', 'lhs': '$const396.46', 'rhs': '$phi398.47', 'res': '$binop_sub400.48'}), (402, {}), (404, {'op': '*', 'lhs': '$b394.45', 'rhs': '$binop_sub400.48', 'res': '$binop_mul404.49'}), (406, {}), (408, {'op': '-', 'lhs': '$const392.44', 'rhs': '$binop_mul404.49', 'res': '$binop_sub408.50'}), (410, {}), (412, {'idx': 5, 'res': '$412load_global.51'}), (414, {}), (416, {}), (418, {}), (420, {}), (422, {}), (424, {'item': '$412load_global.51', 'res': '$424load_attr.53'}), (426, {}), (428, {}), (430, {}), (432, {}), (434, {'res': '$dens_re_sum434.54'}), (436, {'res': '$k436.55'}), (438, {'index': '$k436.55', 'target': '$dens_re_sum434.54', 'res': '$438binary_subscr.56'}), (440, {}), (442, {}), (444, {}), (446, {}), (448, {}), (450, {}), (452, {'func': '$424load_attr.53', 'args': ['$438binary_subscr.56'], 'kw_names': None, 'res': '$452call.57'}), (454, {}), (456, {}), (458, {}), (460, {}), (462, {'op': '/', 'lhs': '$binop_sub408.50', 'rhs': '$452call.57', 'res': '$binop_truediv462.58'}), (464, {}), (466, {'res': '$dphi_term466.59'}), (468, {'op': '+', 'lhs': '$binop_truediv462.58', 'rhs': '$dphi_term466.59', 'res': '$binop_add468.60'}), (470, {}), (472, {'op': '*', 'lhs': '$q_jk390.43', 'rhs': '$binop_add468.60', 'res': '$binop_mul472.61'}), (474, {}), (476, {'value': '$binop_mul472.61'}), (478, {'res': '$q_kj478.62'}), (480, {'res': '$const480.63'}), (482, {'res': '$b482.64'}), (484, {'res': '$const484.65'}), (486, {'res': '$phi486.66'}), (488, {'op': '-', 'lhs': '$const484.65', 'rhs': '$phi486.66', 'res': '$binop_sub488.67'}), (490, {}), (492, {'op': '*', 'lhs': '$b482.64', 'rhs': '$binop_sub488.67', 'res': '$binop_mul492.68'}), (494, {}), (496, {'op': '-', 'lhs': '$const480.63', 'rhs': '$binop_mul492.68', 'res': '$binop_sub496.69'}), (498, {}), (500, {'idx': 5, 'res': '$500load_global.70'}), (502, {}), (504, {}), (506, {}), (508, {}), (510, {}), (512, {'item': '$500load_global.70', 'res': '$512load_attr.72'}), (514, {}), (516, {}), (518, {}), (520, {}), (522, {'res': '$dens_re_sum522.73'}), (524, {'res': '$j524.74'}), (526, {'index': '$j524.74', 'target': '$dens_re_sum522.73', 'res': '$526binary_subscr.75'}), (528, {}), (530, {}), (532, {}), (534, {}), (536, {}), (538, {}), (540, {'func': '$512load_attr.72', 'args': ['$526binary_subscr.75'], 'kw_names': None, 'res': '$540call.76'}), (542, {}), (544, {}), (546, {}), (548, {}), (550, {'op': '/', 'lhs': '$binop_sub496.69', 'rhs': '$540call.76', 'res': '$binop_truediv550.77'}), (552, {}), (554, {'res': '$dphi_term554.78'}), (556, {'op': '+', 'lhs': '$binop_truediv550.77', 'rhs': '$dphi_term554.78', 'res': '$binop_add556.79'}), (558, {}), (560, {'op': '*', 'lhs': '$q_kj478.62', 'rhs': '$binop_add556.79', 'res': '$binop_mul560.80'}), (562, {}), (564, {'value': '$binop_mul560.80'}), (566, {'res': '$dens_re_std566.81'}), (568, {'res': '$dens_re_std568.82'}), (570, {'op': '*', 'lhs': '$dens_re_std566.81', 'rhs': '$dens_re_std568.82', 'res': '$binop_mul570.83'}), (572, {}), (574, {'value': '$binop_mul570.83'}), (576, {'res': '$dens_R576.84'}), (578, {'res': '$k578.85'}), (580, {'index': '$k578.85', 'target': '$dens_R576.84', 'res': '$580binary_subscr.86'}), (582, {}), (584, {}), (586, {}), (588, {}), (590, {'res': '$dens_re_cov590.87'}), (592, {'res': '$dens_re_sum592.88'}), (594, {'res': '$k594.89'}), (596, {'index': '$k594.89', 'target': '$dens_re_sum592.88', 'res': '$596binary_subscr.90'}), (598, {}), (600, {}), (602, {}), (604, {}), (606, {'res': '$dens_re_mean606.91'}), (608, {'op': '-', 'lhs': '$596binary_subscr.90', 'rhs': '$dens_re_mean606.91', 'res': '$binop_sub608.92'}), (610, {}), (612, {'op': '*', 'lhs': '$dens_re_cov590.87', 'rhs': '$binop_sub608.92', 'res': '$binop_mul612.93'}), (614, {}), (616, {'res': '$re_std_sq616.94'}), (618, {'op': '/', 'lhs': '$binop_mul612.93', 'rhs': '$re_std_sq616.94', 'res': '$binop_truediv618.95'}), (620, {}), (622, {'op': '-', 'lhs': '$580binary_subscr.86', 'rhs': '$binop_truediv618.95', 'res': '$binop_sub622.96'}), (624, {}), (626, {'value': '$binop_sub622.96'}), (628, {'res': '$dens_R628.97'}), (630, {'res': '$j630.98'}), (632, {'index': '$j630.98', 'target': '$dens_R628.97', 'res': '$632binary_subscr.99'}), (634, {}), (636, {}), (638, {}), (640, {}), (642, {'res': '$dens_re_cov642.100'}), (644, {'res': '$dens_re_sum644.101'}), (646, {'res': '$j646.102'}), (648, {'index': '$j646.102', 'target': '$dens_re_sum644.101', 'res': '$648binary_subscr.103'}), (650, {}), (652, {}), (654, {}), (656, {}), (658, {'res': '$dens_re_mean658.104'}), (660, {'op': '-', 'lhs': '$648binary_subscr.103', 'rhs': '$dens_re_mean658.104', 'res': '$binop_sub660.105'}), (662, {}), (664, {'op': '*', 'lhs': '$dens_re_cov642.100', 'rhs': '$binop_sub660.105', 'res': '$binop_mul664.106'}), (666, {}), (668, {'res': '$re_std_sq668.107'}), (670, {'op': '/', 'lhs': '$binop_mul664.106', 'rhs': '$re_std_sq668.107', 'res': '$binop_truediv670.108'}), (672, {}), (674, {'op': '-', 'lhs': '$632binary_subscr.99', 'rhs': '$binop_truediv670.108', 'res': '$binop_sub674.109'}), (676, {}), (678, {'value': '$binop_sub674.109'}), (680, {'res': '$dens_lambda680.110'}), (682, {'res': '$dens_mu_tot682.111'}), (684, {'op': '*', 'lhs': '$dens_lambda680.110', 'rhs': '$dens_mu_tot682.111', 'res': '$binop_mul684.112'}), (686, {}), (688, {'res': '$weight_k688.113'}), (690, {'res': '$drk690.114'}), (692, {'op': '*', 'lhs': '$weight_k688.113', 'rhs': '$drk690.114', 'res': '$binop_mul692.115'}), (694, {}), (696, {'res': '$weight_j696.116'}), (698, {'res': '$drj698.117'}), (700, {'op': '*', 'lhs': '$weight_j696.116', 'rhs': '$drj698.117', 'res': '$binop_mul700.118'}), (702, {}), (704, {'op': '+', 'lhs': '$binop_mul692.115', 'rhs': '$binop_mul700.118', 'res': '$binop_add704.119'}), (706, {}), (708, {'op': '*', 'lhs': '$binop_mul684.112', 'rhs': '$binop_add704.119', 'res': '$binop_mul708.120'}), (710, {}), (712, {'res': '$dens_mu712.121'}), (714, {'res': '$i714.122'}), (716, {'index': '$i714.122', 'target': '$dens_mu712.121', 'res': '$716binary_subscr.123'}), (718, {}), (720, {}), (722, {}), (724, {}), (726, {'res': '$dens_re_std726.124'}), (728, {'op': '*', 'lhs': '$716binary_subscr.123', 'rhs': '$dens_re_std726.124', 'res': '$binop_mul728.125'}), (730, {}), (732, {'op': '/', 'lhs': '$binop_mul708.120', 'rhs': '$binop_mul728.125', 'res': '$binop_truediv732.126'}), (734, {}), (736, {'res': '$n_vertices736.127'}), (738, {'op': '/', 'lhs': '$binop_truediv732.126', 'rhs': '$n_vertices736.127', 'res': '$binop_truediv738.128'}), (740, {}), (742, {'value': '$binop_truediv738.128'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={744: ('$phi200.0',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=744 nstack_initial=1): -AdaptBlockInfo(insts=((744, {'res': '$dist_squared744.1'}), (746, {'res': '$const746.2'}), (748, {'lhs': '$dist_squared744.1', 'rhs': '$const746.2', 'res': '$748compare_op.3'}), (750, {}), (752, {}), (754, {'pred': '$748compare_op.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={756: ('$phi744.0',), 864: ('$phi744.0',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=756 nstack_initial=1): -AdaptBlockInfo(insts=((756, {'res': '$const756.1'}), (758, {'res': '$a758.2'}), (760, {'op': '*', 'lhs': '$const756.1', 'rhs': '$a758.2', 'res': '$binop_mul760.3'}), (762, {}), (764, {'res': '$b764.4'}), (766, {'op': '*', 'lhs': '$binop_mul760.3', 'rhs': '$b764.4', 'res': '$binop_mul766.5'}), (768, {}), (770, {'idx': 4, 'res': '$770load_global.6'}), (772, {}), (774, {}), (776, {}), (778, {}), (780, {}), (782, {'res': '$dist_squared782.8'}), (784, {'res': '$b784.9'}), (786, {'res': '$const786.10'}), (788, {'op': '-', 'lhs': '$b784.9', 'rhs': '$const786.10', 'res': '$binop_sub788.11'}), (790, {}), (792, {}), (794, {}), (796, {'func': '$770load_global.6', 'args': ['$dist_squared782.8', '$binop_sub788.11'], 'kw_names': None, 'res': '$796call.12'}), (798, {}), (800, {}), (802, {}), (804, {}), (806, {'op': '*', 'lhs': '$binop_mul766.5', 'rhs': '$796call.12', 'res': '$binop_mul806.13'}), (808, {}), (810, {'value': '$binop_mul806.13'}), (812, {'res': '$grad_coeff812.14'}), (814, {'res': '$a814.15'}), (816, {'idx': 4, 'res': '$816load_global.16'}), (818, {}), (820, {}), (822, {}), (824, {}), (826, {}), (828, {'res': '$dist_squared828.18'}), (830, {'res': '$b830.19'}), (832, {}), (834, {}), (836, {'func': '$816load_global.16', 'args': ['$dist_squared828.18', '$b830.19'], 'kw_names': None, 'res': '$836call.20'}), (838, {}), (840, {}), (842, {}), (844, {}), (846, {'op': '*', 'lhs': '$a814.15', 'rhs': '$836call.20', 'res': '$binop_mul846.21'}), (848, {}), (850, {'res': '$const850.22'}), (852, {'op': '+', 'lhs': '$binop_mul846.21', 'rhs': '$const850.22', 'res': '$binop_add852.23'}), (854, {}), (856, {'op': '/=', 'lhs': '$grad_coeff812.14', 'rhs': '$binop_add852.23', 'res': '$binop_itruediv856.24'}), (858, {}), (860, {'value': '$binop_itruediv856.24'}), (862, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={868: ('$phi756.0',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=864 nstack_initial=1): -AdaptBlockInfo(insts=((864, {'res': '$const864.1'}), (866, {'value': '$const864.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={868: ('$phi864.0',)}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=868 nstack_initial=1): -AdaptBlockInfo(insts=((868, {'idx': 7, 'res': '$868load_global.1'}), (870, {}), (872, {}), (874, {}), (876, {}), (878, {}), (880, {'res': '$dim880.3'}), (882, {}), (884, {}), (886, {'func': '$868load_global.1', 'args': ['$dim880.3'], 'kw_names': None, 'res': '$886call.4'}), (888, {}), (890, {}), (892, {}), (894, {}), (896, {'value': '$886call.4', 'res': '$896get_iter.5'})), outgoing_phis={'$phi898.1': '$896get_iter.5'}, blockstack=(), active_try_block=None, outgoing_edgepushed={898: ('$phi868.0', '$896get_iter.5')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=898 nstack_initial=2): -AdaptBlockInfo(insts=((898, {'iterator': '$phi898.1', 'pair': '$898for_iter.2', 'indval': '$898for_iter.3', 'pred': '$898for_iter.4'}),), outgoing_phis={'$phi900.2': '$898for_iter.3'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1134: ('$phi898.0',), 900: ('$phi898.0', '$phi898.1', '$898for_iter.3')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=900 nstack_initial=3): -AdaptBlockInfo(insts=((900, {'value': '$phi900.2'}), (902, {'idx': 8, 'res': '$902load_global.3'}), (904, {}), (906, {}), (908, {}), (910, {}), (912, {}), (914, {'res': '$grad_coeff914.5'}), (916, {'res': '$current916.6'}), (918, {'res': '$d918.7'}), (920, {'index': '$d918.7', 'target': '$current916.6', 'res': '$920binary_subscr.8'}), (922, {}), (924, {}), (926, {}), (928, {}), (930, {'res': '$other930.9'}), (932, {'res': '$d932.10'}), (934, {'index': '$d932.10', 'target': '$other930.9', 'res': '$934binary_subscr.11'}), (936, {}), (938, {}), (940, {}), (942, {}), (944, {'op': '-', 'lhs': '$920binary_subscr.8', 'rhs': '$934binary_subscr.11', 'res': '$binop_sub944.12'}), (946, {}), (948, {'op': '*', 'lhs': '$grad_coeff914.5', 'rhs': '$binop_sub944.12', 'res': '$binop_mul948.13'}), (950, {}), (952, {}), (954, {}), (956, {'func': '$902load_global.3', 'args': ['$binop_mul948.13'], 'kw_names': None, 'res': '$956call.14'}), (958, {}), (960, {}), (962, {}), (964, {}), (966, {'value': '$956call.14'}), (968, {'res': '$densmap_flag968.15'}), (970, {'pred': '$densmap_flag968.15'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={972: ('$phi900.0', '$phi900.1'), 1050: ('$phi900.0', '$phi900.1')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=972 nstack_initial=2): -AdaptBlockInfo(insts=((972, {'res': '$grad_d972.2'}), (974, {'idx': 8, 'res': '$974load_global.3'}), (976, {}), (978, {}), (980, {}), (982, {}), (984, {}), (986, {'res': '$const986.5'}), (988, {'res': '$grad_cor_coeff988.6'}), (990, {'op': '*', 'lhs': '$const986.5', 'rhs': '$grad_cor_coeff988.6', 'res': '$binop_mul990.7'}), (992, {}), (994, {'res': '$current994.8'}), (996, {'res': '$d996.9'}), (998, {'index': '$d996.9', 'target': '$current994.8', 'res': '$998binary_subscr.10'}), (1000, {}), (1002, {}), (1004, {}), (1006, {}), (1008, {'res': '$other1008.11'}), (1010, {'res': '$d1010.12'}), (1012, {'index': '$d1010.12', 'target': '$other1008.11', 'res': '$1012binary_subscr.13'}), (1014, {}), (1016, {}), (1018, {}), (1020, {}), (1022, {'op': '-', 'lhs': '$998binary_subscr.10', 'rhs': '$1012binary_subscr.13', 'res': '$binop_sub1022.14'}), (1024, {}), (1026, {'op': '*', 'lhs': '$binop_mul990.7', 'rhs': '$binop_sub1022.14', 'res': '$binop_mul1026.15'}), (1028, {}), (1030, {}), (1032, {}), (1034, {'func': '$974load_global.3', 'args': ['$binop_mul1026.15'], 'kw_names': None, 'res': '$1034call.16'}), (1036, {}), (1038, {}), (1040, {}), (1042, {}), (1044, {'op': '+=', 'lhs': '$grad_d972.2', 'rhs': '$1034call.16', 'res': '$binop_iadd1044.17'}), (1046, {}), (1048, {'value': '$binop_iadd1044.17'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1050: ('$phi972.0', '$phi972.1')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=1050 nstack_initial=2): -AdaptBlockInfo(insts=((1050, {'res': '$current1050.2'}), (1052, {'res': '$d1052.3'}), (1058, {'index': '$d1052.3', 'target': '$current1050.2', 'res': '$1058binary_subscr.4'}), (1060, {}), (1062, {}), (1064, {}), (1066, {}), (1068, {'res': '$grad_d1068.5'}), (1070, {'res': '$alpha1070.6'}), (1072, {'op': '*', 'lhs': '$grad_d1068.5', 'rhs': '$alpha1070.6', 'res': '$binop_mul1072.7'}), (1074, {}), (1076, {'op': '+=', 'lhs': '$1058binary_subscr.4', 'rhs': '$binop_mul1072.7', 'res': '$binop_iadd1076.8'}), (1078, {}), (1084, {'target': '$current1050.2', 'index': '$d1052.3', 'value': '$binop_iadd1076.8'}), (1086, {}), (1088, {'res': '$move_other1088.9'}), (1090, {'pred': '$move_other1088.9'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1092: ('$phi1050.0', '$phi1050.1'), 1132: ('$phi1050.0', '$phi1050.1')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=1092 nstack_initial=2): -AdaptBlockInfo(insts=((1092, {'res': '$other1092.2'}), (1094, {'res': '$d1094.3'}), (1100, {'index': '$d1094.3', 'target': '$other1092.2', 'res': '$1100binary_subscr.4'}), (1102, {}), (1104, {}), (1106, {}), (1108, {}), (1110, {'res': '$grad_d1110.5'}), (1112, {'value': '$grad_d1110.5', 'res': '$1112unary_negative.6'}), (1114, {'res': '$alpha1114.7'}), (1116, {'op': '*', 'lhs': '$1112unary_negative.6', 'rhs': '$alpha1114.7', 'res': '$binop_mul1116.8'}), (1118, {}), (1120, {'op': '+=', 'lhs': '$1100binary_subscr.4', 'rhs': '$binop_mul1116.8', 'res': '$binop_iadd1120.9'}), (1122, {}), (1128, {'target': '$other1092.2', 'index': '$d1094.3', 'value': '$binop_iadd1120.9'}), (1130, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1132: ('$phi1092.0', '$phi1092.1')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=1132 nstack_initial=2): -AdaptBlockInfo(insts=((1132, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={898: ('$phi1132.0', '$phi1132.1')}) -13:52:52,866 numba.core.byteflow DEBUG block_infos State(pc_initial=1134 nstack_initial=1): -AdaptBlockInfo(insts=((1134, {'res': '$epoch_of_next_sample1134.1'}), (1136, {'res': '$i1136.2'}), (1142, {'index': '$i1136.2', 'target': '$epoch_of_next_sample1134.1', 'res': '$1142binary_subscr.3'}), (1144, {}), (1146, {}), (1148, {}), (1150, {}), (1152, {'res': '$epochs_per_sample1152.4'}), (1154, {'res': '$i1154.5'}), (1156, {'index': '$i1154.5', 'target': '$epochs_per_sample1152.4', 'res': '$1156binary_subscr.6'}), (1158, {}), (1160, {}), (1162, {}), (1164, {}), (1166, {'op': '+=', 'lhs': '$1142binary_subscr.3', 'rhs': '$1156binary_subscr.6', 'res': '$binop_iadd1166.7'}), (1168, {}), (1174, {'target': '$epoch_of_next_sample1134.1', 'index': '$i1136.2', 'value': '$binop_iadd1166.7'}), (1176, {}), (1178, {'idx': 9, 'res': '$1178load_global.8'}), (1180, {}), (1182, {}), (1184, {}), (1186, {}), (1188, {}), (1190, {'res': '$n1190.10'}), (1192, {'res': '$epoch_of_next_negative_sample1192.11'}), (1194, {'res': '$i1194.12'}), (1196, {'index': '$i1194.12', 'target': '$epoch_of_next_negative_sample1192.11', 'res': '$1196binary_subscr.13'}), (1198, {}), (1200, {}), (1202, {}), (1204, {}), (1206, {'op': '-', 'lhs': '$n1190.10', 'rhs': '$1196binary_subscr.13', 'res': '$binop_sub1206.14'}), (1208, {}), (1210, {'res': '$epochs_per_negative_sample1210.15'}), (1212, {'res': '$i1212.16'}), (1214, {'index': '$i1212.16', 'target': '$epochs_per_negative_sample1210.15', 'res': '$1214binary_subscr.17'}), (1216, {}), (1218, {}), (1220, {}), (1222, {}), (1224, {'op': '/', 'lhs': '$binop_sub1206.14', 'rhs': '$1214binary_subscr.17', 'res': '$binop_truediv1224.18'}), (1226, {}), (1228, {}), (1230, {}), (1232, {'func': '$1178load_global.8', 'args': ['$binop_truediv1224.18'], 'kw_names': None, 'res': '$1232call.19'}), (1234, {}), (1236, {}), (1238, {}), (1240, {}), (1242, {'value': '$1232call.19'}), (1244, {'idx': 7, 'res': '$1244load_global.20'}), (1246, {}), (1248, {}), (1250, {}), (1252, {}), (1254, {}), (1256, {'res': '$n_neg_samples1256.22'}), (1258, {}), (1260, {}), (1262, {'func': '$1244load_global.20', 'args': ['$n_neg_samples1256.22'], 'kw_names': None, 'res': '$1262call.23'}), (1264, {}), (1266, {}), (1268, {}), (1270, {}), (1272, {'value': '$1262call.23', 'res': '$1272get_iter.24'})), outgoing_phis={'$phi1274.1': '$1272get_iter.24'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1274: ('$phi1134.0', '$1272get_iter.24')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1274 nstack_initial=2): -AdaptBlockInfo(insts=((1274, {'iterator': '$phi1274.1', 'pair': '$1274for_iter.2', 'indval': '$1274for_iter.3', 'pred': '$1274for_iter.4'}),), outgoing_phis={'$phi1276.2': '$1274for_iter.3'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1644: ('$phi1274.0',), 1276: ('$phi1274.0', '$phi1274.1', '$1274for_iter.3')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1276 nstack_initial=3): -AdaptBlockInfo(insts=((1276, {'value': '$phi1276.2'}), (1278, {'idx': 10, 'res': '$1278load_global.3'}), (1280, {}), (1282, {}), (1284, {}), (1286, {}), (1288, {}), (1290, {'res': '$rng_state_per_sample1290.5'}), (1292, {'res': '$j1292.6'}), (1294, {'index': '$j1292.6', 'target': '$rng_state_per_sample1290.5', 'res': '$1294binary_subscr.7'}), (1296, {}), (1298, {}), (1300, {}), (1302, {}), (1304, {}), (1306, {}), (1308, {'func': '$1278load_global.3', 'args': ['$1294binary_subscr.7'], 'kw_names': None, 'res': '$1308call.8'}), (1310, {}), (1312, {}), (1314, {}), (1316, {}), (1318, {'res': '$n_vertices1318.9'}), (1320, {'op': '%', 'lhs': '$1308call.8', 'rhs': '$n_vertices1318.9', 'res': '$binop_mod1320.10'}), (1322, {}), (1324, {'value': '$binop_mod1320.10'}), (1326, {'res': '$tail_embedding1326.11'}), (1328, {'res': '$k1328.12'}), (1330, {'index': '$k1328.12', 'target': '$tail_embedding1326.11', 'res': '$1330binary_subscr.13'}), (1332, {}), (1334, {}), (1336, {}), (1338, {}), (1340, {'value': '$1330binary_subscr.13'}), (1342, {'idx': 3, 'res': '$1342load_global.14'}), (1344, {}), (1346, {}), (1348, {}), (1350, {}), (1352, {}), (1354, {'res': '$current1354.16'}), (1356, {'res': '$other1356.17'}), (1358, {}), (1360, {}), (1362, {'func': '$1342load_global.14', 'args': ['$current1354.16', '$other1356.17'], 'kw_names': None, 'res': '$1362call.18'}), (1364, {}), (1366, {}), (1368, {}), (1370, {}), (1372, {'value': '$1362call.18'}), (1374, {'res': '$dist_squared1374.19'}), (1376, {'res': '$const1376.20'}), (1378, {'lhs': '$dist_squared1374.19', 'rhs': '$const1376.20', 'res': '$1378compare_op.21'}), (1380, {}), (1382, {}), (1384, {'pred': '$1378compare_op.21'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1386: ('$phi1276.0', '$phi1276.1'), 1466: ('$phi1276.0', '$phi1276.1')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1386 nstack_initial=2): -AdaptBlockInfo(insts=((1386, {'res': '$const1386.2'}), (1388, {'res': '$gamma1388.3'}), (1390, {'op': '*', 'lhs': '$const1386.2', 'rhs': '$gamma1388.3', 'res': '$binop_mul1390.4'}), (1392, {}), (1394, {'res': '$b1394.5'}), (1396, {'op': '*', 'lhs': '$binop_mul1390.4', 'rhs': '$b1394.5', 'res': '$binop_mul1396.6'}), (1398, {}), (1400, {'value': '$binop_mul1396.6'}), (1402, {'res': '$grad_coeff1402.7'}), (1404, {'res': '$const1404.8'}), (1406, {'res': '$dist_squared1406.9'}), (1408, {'op': '+', 'lhs': '$const1404.8', 'rhs': '$dist_squared1406.9', 'res': '$binop_add1408.10'}), (1410, {}), (1412, {'res': '$a1412.11'}), (1414, {'idx': 4, 'res': '$1414load_global.12'}), (1416, {}), (1418, {}), (1420, {}), (1422, {}), (1424, {}), (1426, {'res': '$dist_squared1426.14'}), (1428, {'res': '$b1428.15'}), (1430, {}), (1432, {}), (1434, {'func': '$1414load_global.12', 'args': ['$dist_squared1426.14', '$b1428.15'], 'kw_names': None, 'res': '$1434call.16'}), (1436, {}), (1438, {}), (1440, {}), (1442, {}), (1444, {'op': '*', 'lhs': '$a1412.11', 'rhs': '$1434call.16', 'res': '$binop_mul1444.17'}), (1446, {}), (1448, {'res': '$const1448.18'}), (1450, {'op': '+', 'lhs': '$binop_mul1444.17', 'rhs': '$const1448.18', 'res': '$binop_add1450.19'}), (1452, {}), (1454, {'op': '*', 'lhs': '$binop_add1408.10', 'rhs': '$binop_add1450.19', 'res': '$binop_mul1454.20'}), (1456, {}), (1458, {'op': '/=', 'lhs': '$grad_coeff1402.7', 'rhs': '$binop_mul1454.20', 'res': '$binop_itruediv1458.21'}), (1460, {}), (1462, {'value': '$binop_itruediv1458.21'}), (1464, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1484: ('$phi1386.0', '$phi1386.1')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1466 nstack_initial=2): -AdaptBlockInfo(insts=((1466, {'res': '$j1466.2'}), (1468, {'res': '$k1468.3'}), (1470, {'lhs': '$j1466.2', 'rhs': '$k1468.3', 'res': '$1470compare_op.4'}), (1472, {}), (1474, {}), (1476, {'pred': '$1470compare_op.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1478: ('$phi1466.0', '$phi1466.1'), 1480: ('$phi1466.0', '$phi1466.1')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1478 nstack_initial=2): -AdaptBlockInfo(insts=((1478, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1274: ('$phi1478.0', '$phi1478.1')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1480 nstack_initial=2): -AdaptBlockInfo(insts=((1480, {'res': '$const1480.2'}), (1482, {'value': '$const1480.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1484: ('$phi1480.0', '$phi1480.1')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1484 nstack_initial=2): -AdaptBlockInfo(insts=((1484, {'idx': 7, 'res': '$1484load_global.2'}), (1486, {}), (1488, {}), (1490, {}), (1492, {}), (1494, {}), (1496, {'res': '$dim1496.4'}), (1498, {}), (1500, {}), (1502, {'func': '$1484load_global.2', 'args': ['$dim1496.4'], 'kw_names': None, 'res': '$1502call.5'}), (1504, {}), (1506, {}), (1508, {}), (1510, {}), (1512, {'value': '$1502call.5', 'res': '$1512get_iter.6'})), outgoing_phis={'$phi1514.2': '$1512get_iter.6'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1514: ('$phi1484.0', '$phi1484.1', '$1512get_iter.6')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1514 nstack_initial=3): -AdaptBlockInfo(insts=((1514, {'iterator': '$phi1514.2', 'pair': '$1514for_iter.3', 'indval': '$1514for_iter.4', 'pred': '$1514for_iter.5'}),), outgoing_phis={'$phi1516.3': '$1514for_iter.4'}, blockstack=(), active_try_block=None, outgoing_edgepushed={1642: ('$phi1514.0', '$phi1514.1'), 1516: ('$phi1514.0', '$phi1514.1', '$phi1514.2', '$1514for_iter.4')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1516 nstack_initial=4): -AdaptBlockInfo(insts=((1516, {'value': '$phi1516.3'}), (1518, {'res': '$grad_coeff1518.4'}), (1520, {'res': '$const1520.5'}), (1522, {'lhs': '$grad_coeff1518.4', 'rhs': '$const1520.5', 'res': '$1522compare_op.6'}), (1524, {}), (1526, {}), (1528, {'pred': '$1522compare_op.6'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1530: ('$phi1516.0', '$phi1516.1', '$phi1516.2'), 1598: ('$phi1516.0', '$phi1516.1', '$phi1516.2')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1530 nstack_initial=3): -AdaptBlockInfo(insts=((1530, {'idx': 8, 'res': '$1530load_global.3'}), (1532, {}), (1534, {}), (1536, {}), (1538, {}), (1540, {}), (1542, {'res': '$grad_coeff1542.5'}), (1544, {'res': '$current1544.6'}), (1546, {'res': '$d1546.7'}), (1548, {'index': '$d1546.7', 'target': '$current1544.6', 'res': '$1548binary_subscr.8'}), (1550, {}), (1552, {}), (1554, {}), (1556, {}), (1558, {'res': '$other1558.9'}), (1560, {'res': '$d1560.10'}), (1562, {'index': '$d1560.10', 'target': '$other1558.9', 'res': '$1562binary_subscr.11'}), (1564, {}), (1566, {}), (1568, {}), (1570, {}), (1572, {'op': '-', 'lhs': '$1548binary_subscr.8', 'rhs': '$1562binary_subscr.11', 'res': '$binop_sub1572.12'}), (1574, {}), (1576, {'op': '*', 'lhs': '$grad_coeff1542.5', 'rhs': '$binop_sub1572.12', 'res': '$binop_mul1576.13'}), (1578, {}), (1580, {}), (1582, {}), (1584, {'func': '$1530load_global.3', 'args': ['$binop_mul1576.13'], 'kw_names': None, 'res': '$1584call.14'}), (1586, {}), (1588, {}), (1590, {}), (1592, {}), (1594, {'value': '$1584call.14'}), (1596, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1602: ('$phi1530.0', '$phi1530.1', '$phi1530.2')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1598 nstack_initial=3): -AdaptBlockInfo(insts=((1598, {'res': '$const1598.3'}), (1600, {'value': '$const1598.3'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1602: ('$phi1598.0', '$phi1598.1', '$phi1598.2')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1602 nstack_initial=3): -AdaptBlockInfo(insts=((1602, {'res': '$current1602.3'}), (1604, {'res': '$d1604.4'}), (1610, {'index': '$d1604.4', 'target': '$current1602.3', 'res': '$1610binary_subscr.5'}), (1612, {}), (1614, {}), (1616, {}), (1618, {}), (1620, {'res': '$grad_d1620.6'}), (1622, {'res': '$alpha1622.7'}), (1624, {'op': '*', 'lhs': '$grad_d1620.6', 'rhs': '$alpha1622.7', 'res': '$binop_mul1624.8'}), (1626, {}), (1628, {'op': '+=', 'lhs': '$1610binary_subscr.5', 'rhs': '$binop_mul1624.8', 'res': '$binop_iadd1628.9'}), (1630, {}), (1636, {'target': '$current1602.3', 'index': '$d1604.4', 'value': '$binop_iadd1628.9'}), (1638, {}), (1640, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1514: ('$phi1602.0', '$phi1602.1', '$phi1602.2')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1642 nstack_initial=2): -AdaptBlockInfo(insts=((1642, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1274: ('$phi1642.0', '$phi1642.1')}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1644 nstack_initial=1): -AdaptBlockInfo(insts=((1644, {'res': '$epoch_of_next_negative_sample1644.1'}), (1646, {'res': '$i1646.2'}), (1652, {'index': '$i1646.2', 'target': '$epoch_of_next_negative_sample1644.1', 'res': '$1652binary_subscr.3'}), (1654, {}), (1656, {}), (1658, {}), (1660, {}), (1662, {'res': '$n_neg_samples1662.4'}), (1664, {'res': '$epochs_per_negative_sample1664.5'}), (1666, {'res': '$i1666.6'}), (1668, {'index': '$i1666.6', 'target': '$epochs_per_negative_sample1664.5', 'res': '$1668binary_subscr.7'}), (1670, {}), (1672, {}), (1674, {}), (1676, {}), (1678, {'op': '*', 'lhs': '$n_neg_samples1662.4', 'rhs': '$1668binary_subscr.7', 'res': '$binop_mul1678.8'}), (1680, {}), (1682, {'op': '+=', 'lhs': '$1652binary_subscr.3', 'rhs': '$binop_mul1678.8', 'res': '$binop_iadd1682.9'}), (1684, {}), (1690, {'target': '$epoch_of_next_negative_sample1644.1', 'index': '$i1646.2', 'value': '$binop_iadd1682.9'}), (1692, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={1694: ('$phi1644.0',)}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1694 nstack_initial=1): -AdaptBlockInfo(insts=((1694, {}), (1696, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={66: ('$phi1694.0',)}) -13:52:52,867 numba.core.byteflow DEBUG block_infos State(pc_initial=1698 nstack_initial=0): -AdaptBlockInfo(insts=((1698, {'res': '$const1698.0'}), (1700, {'retval': '$const1698.0', 'castval': '$1700return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:52,873 numba.core.interpreter DEBUG label 0: - head_embedding = arg(0, name=head_embedding) ['head_embedding'] - tail_embedding = arg(1, name=tail_embedding) ['tail_embedding'] - head = arg(2, name=head) ['head'] - tail = arg(3, name=tail) ['tail'] - n_vertices = arg(4, name=n_vertices) ['n_vertices'] - epochs_per_sample = arg(5, name=epochs_per_sample) ['epochs_per_sample'] - a = arg(6, name=a) ['a'] - b = arg(7, name=b) ['b'] - rng_state_per_sample = arg(8, name=rng_state_per_sample) ['rng_state_per_sample'] - gamma = arg(9, name=gamma) ['gamma'] - dim = arg(10, name=dim) ['dim'] - move_other = arg(11, name=move_other) ['move_other'] - alpha = arg(12, name=alpha) ['alpha'] - epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) ['epochs_per_negative_sample'] - epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) ['epoch_of_next_negative_sample'] - epoch_of_next_sample = arg(15, name=epoch_of_next_sample) ['epoch_of_next_sample'] - n = arg(16, name=n) ['n'] - densmap_flag = arg(17, name=densmap_flag) ['densmap_flag'] - dens_phi_sum = arg(18, name=dens_phi_sum) ['dens_phi_sum'] - dens_re_sum = arg(19, name=dens_re_sum) ['dens_re_sum'] - dens_re_cov = arg(20, name=dens_re_cov) ['dens_re_cov'] - dens_re_std = arg(21, name=dens_re_std) ['dens_re_std'] - dens_re_mean = arg(22, name=dens_re_mean) ['dens_re_mean'] - dens_lambda = arg(23, name=dens_lambda) ['dens_lambda'] - dens_R = arg(24, name=dens_R) ['dens_R'] - dens_mu = arg(25, name=dens_mu) ['dens_mu'] - dens_mu_tot = arg(26, name=dens_mu_tot) ['dens_mu_tot'] - $4load_global.0 = global(numba: ) ['$4load_global.0'] - $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) ['$16load_attr.2', '$4load_global.0'] - $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) ['$28load_attr.4', 'epochs_per_sample'] - $const38.5 = const(int, 0) ['$const38.5'] - $40binary_subscr.6 = getitem(value=$28load_attr.4, index=$const38.5, fn=) ['$28load_attr.4', '$40binary_subscr.6', '$const38.5'] - $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) ['$16load_attr.2', '$40binary_subscr.6', '$54call.7'] - $64get_iter.8 = getiter(value=$54call.7) ['$54call.7', '$64get_iter.8'] - $phi68.0 = $64get_iter.8 ['$64get_iter.8', '$phi68.0'] - jump 66 [] -label 66: - jump 68 [] -label 68: - $68for_iter.1 = iternext(value=$phi68.0) ['$68for_iter.1', '$phi68.0'] - $68for_iter.2 = pair_first(value=$68for_iter.1) ['$68for_iter.1', '$68for_iter.2'] - $68for_iter.3 = pair_second(value=$68for_iter.1) ['$68for_iter.1', '$68for_iter.3'] - $phi70.1 = $68for_iter.2 ['$68for_iter.2', '$phi70.1'] - branch $68for_iter.3, 70, 1698 ['$68for_iter.3'] -label 70: - i = $phi70.1 ['$phi70.1', 'i'] - $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) ['$76binary_subscr.4', 'epoch_of_next_sample', 'i'] - $88compare_op.6 = $76binary_subscr.4 <= n ['$76binary_subscr.4', '$88compare_op.6', 'n'] - bool96 = global(bool: ) ['bool96'] - $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) ['$88compare_op.6', '$96pred', 'bool96'] - branch $96pred, 98, 1694 ['$96pred'] -label 98: - j = getitem(value=head, index=i, fn=) ['head', 'i', 'j'] - k = getitem(value=tail, index=i, fn=) ['i', 'k', 'tail'] - current = getitem(value=head_embedding, index=j, fn=) ['current', 'head_embedding', 'j'] - other = getitem(value=tail_embedding, index=k, fn=) ['k', 'other', 'tail_embedding'] - $162load_global.13 = global(rdist: CPUDispatcher()) ['$162load_global.13'] - dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) ['$162load_global.13', 'current', 'dist_squared', 'other'] - bool198 = global(bool: ) ['bool198'] - $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) ['$198pred', 'bool198', 'densmap_flag'] - branch $198pred, 200, 744 ['$198pred'] -label 200: - $const200.1 = const(float, 1.0) ['$const200.1'] - $const202.2 = const(float, 1.0) ['$const202.2'] - $206load_global.4 = global(pow: ) ['$206load_global.4'] - $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) ['$206load_global.4', '$226call.8', 'b', 'dist_squared'] - $binop_mul236.9 = a * $226call.8 ['$226call.8', '$binop_mul236.9', 'a'] - $binop_add240.10 = $const202.2 + $binop_mul236.9 ['$binop_add240.10', '$binop_mul236.9', '$const202.2'] - phi = $const200.1 / $binop_add240.10 ['$binop_add240.10', '$const200.1', 'phi'] - $binop_mul254.14 = a * b ['$binop_mul254.14', 'a', 'b'] - $258load_global.15 = global(pow: ) ['$258load_global.15'] - $const274.19 = const(int, 1) ['$const274.19'] - $binop_sub276.20 = b - $const274.19 ['$binop_sub276.20', '$const274.19', 'b'] - $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) ['$258load_global.15', '$284call.21', '$binop_sub276.20', 'dist_squared'] - $binop_mul294.22 = $binop_mul254.14 * $284call.21 ['$284call.21', '$binop_mul254.14', '$binop_mul294.22'] - $const298.23 = const(float, 1.0) ['$const298.23'] - $302load_global.25 = global(pow: ) ['$302load_global.25'] - $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) ['$302load_global.25', '$322call.29', 'b', 'dist_squared'] - $binop_mul332.30 = a * $322call.29 ['$322call.29', '$binop_mul332.30', 'a'] - $binop_add336.31 = $const298.23 + $binop_mul332.30 ['$binop_add336.31', '$binop_mul332.30', '$const298.23'] - dphi_term = $binop_mul294.22 / $binop_add336.31 ['$binop_add336.31', '$binop_mul294.22', 'dphi_term'] - $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) ['$352binary_subscr.36', 'dens_phi_sum', 'k'] - q_jk = phi / $352binary_subscr.36 ['$352binary_subscr.36', 'phi', 'q_jk'] - $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) ['$374binary_subscr.41', 'dens_phi_sum', 'j'] - q_kj = phi / $374binary_subscr.41 ['$374binary_subscr.41', 'phi', 'q_kj'] - $const392.44 = const(float, 1.0) ['$const392.44'] - $const396.46 = const(int, 1) ['$const396.46'] - $binop_sub400.48 = $const396.46 - phi ['$binop_sub400.48', '$const396.46', 'phi'] - $binop_mul404.49 = b * $binop_sub400.48 ['$binop_mul404.49', '$binop_sub400.48', 'b'] - $binop_sub408.50 = $const392.44 - $binop_mul404.49 ['$binop_mul404.49', '$binop_sub408.50', '$const392.44'] - $412load_global.51 = global(np: ) ['$412load_global.51'] - $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) ['$412load_global.51', '$424load_attr.53'] - $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) ['$438binary_subscr.56', 'dens_re_sum', 'k'] - $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) ['$424load_attr.53', '$438binary_subscr.56', '$452call.57'] - $binop_truediv462.58 = $binop_sub408.50 / $452call.57 ['$452call.57', '$binop_sub408.50', '$binop_truediv462.58'] - $binop_add468.60 = $binop_truediv462.58 + dphi_term ['$binop_add468.60', '$binop_truediv462.58', 'dphi_term'] - drk = q_jk * $binop_add468.60 ['$binop_add468.60', 'drk', 'q_jk'] - $const480.63 = const(float, 1.0) ['$const480.63'] - $const484.65 = const(int, 1) ['$const484.65'] - $binop_sub488.67 = $const484.65 - phi ['$binop_sub488.67', '$const484.65', 'phi'] - $binop_mul492.68 = b * $binop_sub488.67 ['$binop_mul492.68', '$binop_sub488.67', 'b'] - $binop_sub496.69 = $const480.63 - $binop_mul492.68 ['$binop_mul492.68', '$binop_sub496.69', '$const480.63'] - $500load_global.70 = global(np: ) ['$500load_global.70'] - $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) ['$500load_global.70', '$512load_attr.72'] - $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) ['$526binary_subscr.75', 'dens_re_sum', 'j'] - $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) ['$512load_attr.72', '$526binary_subscr.75', '$540call.76'] - $binop_truediv550.77 = $binop_sub496.69 / $540call.76 ['$540call.76', '$binop_sub496.69', '$binop_truediv550.77'] - $binop_add556.79 = $binop_truediv550.77 + dphi_term ['$binop_add556.79', '$binop_truediv550.77', 'dphi_term'] - drj = q_kj * $binop_add556.79 ['$binop_add556.79', 'drj', 'q_kj'] - re_std_sq = dens_re_std * dens_re_std ['dens_re_std', 'dens_re_std', 're_std_sq'] - $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) ['$580binary_subscr.86', 'dens_R', 'k'] - $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) ['$596binary_subscr.90', 'dens_re_sum', 'k'] - $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean ['$596binary_subscr.90', '$binop_sub608.92', 'dens_re_mean'] - $binop_mul612.93 = dens_re_cov * $binop_sub608.92 ['$binop_mul612.93', '$binop_sub608.92', 'dens_re_cov'] - $binop_truediv618.95 = $binop_mul612.93 / re_std_sq ['$binop_mul612.93', '$binop_truediv618.95', 're_std_sq'] - weight_k = $580binary_subscr.86 - $binop_truediv618.95 ['$580binary_subscr.86', '$binop_truediv618.95', 'weight_k'] - $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) ['$632binary_subscr.99', 'dens_R', 'j'] - $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) ['$648binary_subscr.103', 'dens_re_sum', 'j'] - $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean ['$648binary_subscr.103', '$binop_sub660.105', 'dens_re_mean'] - $binop_mul664.106 = dens_re_cov * $binop_sub660.105 ['$binop_mul664.106', '$binop_sub660.105', 'dens_re_cov'] - $binop_truediv670.108 = $binop_mul664.106 / re_std_sq ['$binop_mul664.106', '$binop_truediv670.108', 're_std_sq'] - weight_j = $632binary_subscr.99 - $binop_truediv670.108 ['$632binary_subscr.99', '$binop_truediv670.108', 'weight_j'] - $binop_mul684.112 = dens_lambda * dens_mu_tot ['$binop_mul684.112', 'dens_lambda', 'dens_mu_tot'] - $binop_mul692.115 = weight_k * drk ['$binop_mul692.115', 'drk', 'weight_k'] - $binop_mul700.118 = weight_j * drj ['$binop_mul700.118', 'drj', 'weight_j'] - $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 ['$binop_add704.119', '$binop_mul692.115', '$binop_mul700.118'] - $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 ['$binop_add704.119', '$binop_mul684.112', '$binop_mul708.120'] - $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) ['$716binary_subscr.123', 'dens_mu', 'i'] - $binop_mul728.125 = $716binary_subscr.123 * dens_re_std ['$716binary_subscr.123', '$binop_mul728.125', 'dens_re_std'] - $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 ['$binop_mul708.120', '$binop_mul728.125', '$binop_truediv732.126'] - grad_cor_coeff = $binop_truediv732.126 / n_vertices ['$binop_truediv732.126', 'grad_cor_coeff', 'n_vertices'] - jump 744 [] -label 744: - $const746.2 = const(float, 0.0) ['$const746.2'] - $748compare_op.3 = dist_squared > $const746.2 ['$748compare_op.3', '$const746.2', 'dist_squared'] - bool754 = global(bool: ) ['bool754'] - $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) ['$748compare_op.3', '$754pred', 'bool754'] - branch $754pred, 756, 864 ['$754pred'] -label 756: - $const756.1 = const(float, -2.0) ['$const756.1'] - $binop_mul760.3 = $const756.1 * a ['$binop_mul760.3', '$const756.1', 'a'] - $binop_mul766.5 = $binop_mul760.3 * b ['$binop_mul760.3', '$binop_mul766.5', 'b'] - $770load_global.6 = global(pow: ) ['$770load_global.6'] - $const786.10 = const(float, 1.0) ['$const786.10'] - $binop_sub788.11 = b - $const786.10 ['$binop_sub788.11', '$const786.10', 'b'] - $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) ['$770load_global.6', '$796call.12', '$binop_sub788.11', 'dist_squared'] - grad_coeff = $binop_mul766.5 * $796call.12 ['$796call.12', '$binop_mul766.5', 'grad_coeff'] - $816load_global.16 = global(pow: ) ['$816load_global.16'] - $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) ['$816load_global.16', '$836call.20', 'b', 'dist_squared'] - $binop_mul846.21 = a * $836call.20 ['$836call.20', '$binop_mul846.21', 'a'] - $const850.22 = const(float, 1.0) ['$const850.22'] - $binop_add852.23 = $binop_mul846.21 + $const850.22 ['$binop_add852.23', '$binop_mul846.21', '$const850.22'] - $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) ['$binop_add852.23', '$binop_itruediv856.24', 'grad_coeff'] - grad_coeff = $binop_itruediv856.24 ['$binop_itruediv856.24', 'grad_coeff'] - jump 868 [] -label 864: - grad_coeff = const(float, 0.0) ['grad_coeff'] - jump 868 [] -label 868: - $868load_global.1 = global(range: ) ['$868load_global.1'] - $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) ['$868load_global.1', '$886call.4', 'dim'] - $896get_iter.5 = getiter(value=$886call.4) ['$886call.4', '$896get_iter.5'] - $phi898.1 = $896get_iter.5 ['$896get_iter.5', '$phi898.1'] - jump 898 [] -label 898: - $898for_iter.2 = iternext(value=$phi898.1) ['$898for_iter.2', '$phi898.1'] - $898for_iter.3 = pair_first(value=$898for_iter.2) ['$898for_iter.2', '$898for_iter.3'] - $898for_iter.4 = pair_second(value=$898for_iter.2) ['$898for_iter.2', '$898for_iter.4'] - $phi900.2 = $898for_iter.3 ['$898for_iter.3', '$phi900.2'] - branch $898for_iter.4, 900, 1134 ['$898for_iter.4'] -label 900: - d = $phi900.2 ['$phi900.2', 'd'] - $902load_global.3 = global(clip: CPUDispatcher()) ['$902load_global.3'] - $920binary_subscr.8 = getitem(value=current, index=d, fn=) ['$920binary_subscr.8', 'current', 'd'] - $934binary_subscr.11 = getitem(value=other, index=d, fn=) ['$934binary_subscr.11', 'd', 'other'] - $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 ['$920binary_subscr.8', '$934binary_subscr.11', '$binop_sub944.12'] - $binop_mul948.13 = grad_coeff * $binop_sub944.12 ['$binop_mul948.13', '$binop_sub944.12', 'grad_coeff'] - grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) ['$902load_global.3', '$binop_mul948.13', 'grad_d'] - bool970 = global(bool: ) ['bool970'] - $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) ['$970pred', 'bool970', 'densmap_flag'] - branch $970pred, 972, 1050 ['$970pred'] -label 972: - $974load_global.3 = global(clip: CPUDispatcher()) ['$974load_global.3'] - $const986.5 = const(int, 2) ['$const986.5'] - $binop_mul990.7 = $const986.5 * grad_cor_coeff ['$binop_mul990.7', '$const986.5', 'grad_cor_coeff'] - $998binary_subscr.10 = getitem(value=current, index=d, fn=) ['$998binary_subscr.10', 'current', 'd'] - $1012binary_subscr.13 = getitem(value=other, index=d, fn=) ['$1012binary_subscr.13', 'd', 'other'] - $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 ['$1012binary_subscr.13', '$998binary_subscr.10', '$binop_sub1022.14'] - $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 ['$binop_mul1026.15', '$binop_mul990.7', '$binop_sub1022.14'] - $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) ['$1034call.16', '$974load_global.3', '$binop_mul1026.15'] - $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) ['$1034call.16', '$binop_iadd1044.17', 'grad_d'] - grad_d = $binop_iadd1044.17 ['$binop_iadd1044.17', 'grad_d'] - jump 1050 [] -label 1050: - $1058binary_subscr.4 = getitem(value=current, index=d, fn=) ['$1058binary_subscr.4', 'current', 'd'] - $binop_mul1072.7 = grad_d * alpha ['$binop_mul1072.7', 'alpha', 'grad_d'] - $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) ['$1058binary_subscr.4', '$binop_iadd1076.8', '$binop_mul1072.7'] - current[d] = $binop_iadd1076.8 ['$binop_iadd1076.8', 'current', 'd'] - bool1090 = global(bool: ) ['bool1090'] - $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) ['$1090pred', 'bool1090', 'move_other'] - branch $1090pred, 1092, 1132 ['$1090pred'] -label 1092: - $1100binary_subscr.4 = getitem(value=other, index=d, fn=) ['$1100binary_subscr.4', 'd', 'other'] - $1112unary_negative.6 = unary(fn=, value=grad_d) ['$1112unary_negative.6', 'grad_d'] - $binop_mul1116.8 = $1112unary_negative.6 * alpha ['$1112unary_negative.6', '$binop_mul1116.8', 'alpha'] - $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) ['$1100binary_subscr.4', '$binop_iadd1120.9', '$binop_mul1116.8'] - other[d] = $binop_iadd1120.9 ['$binop_iadd1120.9', 'd', 'other'] - jump 1132 [] -label 1132: - jump 898 [] -label 1134: - $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) ['$1142binary_subscr.3', 'epoch_of_next_sample', 'i'] - $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) ['$1156binary_subscr.6', 'epochs_per_sample', 'i'] - $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) ['$1142binary_subscr.3', '$1156binary_subscr.6', '$binop_iadd1166.7'] - epoch_of_next_sample[i] = $binop_iadd1166.7 ['$binop_iadd1166.7', 'epoch_of_next_sample', 'i'] - $1178load_global.8 = global(int: ) ['$1178load_global.8'] - $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) ['$1196binary_subscr.13', 'epoch_of_next_negative_sample', 'i'] - $binop_sub1206.14 = n - $1196binary_subscr.13 ['$1196binary_subscr.13', '$binop_sub1206.14', 'n'] - $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) ['$1214binary_subscr.17', 'epochs_per_negative_sample', 'i'] - $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 ['$1214binary_subscr.17', '$binop_sub1206.14', '$binop_truediv1224.18'] - n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) ['$1178load_global.8', '$binop_truediv1224.18', 'n_neg_samples'] - $1244load_global.20 = global(range: ) ['$1244load_global.20'] - $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) ['$1244load_global.20', '$1262call.23', 'n_neg_samples'] - $1272get_iter.24 = getiter(value=$1262call.23) ['$1262call.23', '$1272get_iter.24'] - $phi1274.1 = $1272get_iter.24 ['$1272get_iter.24', '$phi1274.1'] - jump 1274 [] -label 1274: - $1274for_iter.2 = iternext(value=$phi1274.1) ['$1274for_iter.2', '$phi1274.1'] - $1274for_iter.3 = pair_first(value=$1274for_iter.2) ['$1274for_iter.2', '$1274for_iter.3'] - $1274for_iter.4 = pair_second(value=$1274for_iter.2) ['$1274for_iter.2', '$1274for_iter.4'] - $phi1276.2 = $1274for_iter.3 ['$1274for_iter.3', '$phi1276.2'] - branch $1274for_iter.4, 1276, 1644 ['$1274for_iter.4'] -label 1276: - p = $phi1276.2 ['$phi1276.2', 'p'] - $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) ['$1278load_global.3'] - $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) ['$1294binary_subscr.7', 'j', 'rng_state_per_sample'] - $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) ['$1278load_global.3', '$1294binary_subscr.7', '$1308call.8'] - k = $1308call.8 % n_vertices ['$1308call.8', 'k', 'n_vertices'] - other = getitem(value=tail_embedding, index=k, fn=) ['k', 'other', 'tail_embedding'] - $1342load_global.14 = global(rdist: CPUDispatcher()) ['$1342load_global.14'] - dist_squared = call $1342load_global.14(current, other, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) ['$1342load_global.14', 'current', 'dist_squared', 'other'] - $const1376.20 = const(float, 0.0) ['$const1376.20'] - $1378compare_op.21 = dist_squared > $const1376.20 ['$1378compare_op.21', '$const1376.20', 'dist_squared'] - bool1384 = global(bool: ) ['bool1384'] - $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) ['$1378compare_op.21', '$1384pred', 'bool1384'] - branch $1384pred, 1386, 1466 ['$1384pred'] -label 1386: - $const1386.2 = const(float, 2.0) ['$const1386.2'] - $binop_mul1390.4 = $const1386.2 * gamma ['$binop_mul1390.4', '$const1386.2', 'gamma'] - grad_coeff = $binop_mul1390.4 * b ['$binop_mul1390.4', 'b', 'grad_coeff'] - $const1404.8 = const(float, 0.001) ['$const1404.8'] - $binop_add1408.10 = $const1404.8 + dist_squared ['$binop_add1408.10', '$const1404.8', 'dist_squared'] - $1414load_global.12 = global(pow: ) ['$1414load_global.12'] - $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) ['$1414load_global.12', '$1434call.16', 'b', 'dist_squared'] - $binop_mul1444.17 = a * $1434call.16 ['$1434call.16', '$binop_mul1444.17', 'a'] - $const1448.18 = const(int, 1) ['$const1448.18'] - $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 ['$binop_add1450.19', '$binop_mul1444.17', '$const1448.18'] - $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 ['$binop_add1408.10', '$binop_add1450.19', '$binop_mul1454.20'] - $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) ['$binop_itruediv1458.21', '$binop_mul1454.20', 'grad_coeff'] - grad_coeff = $binop_itruediv1458.21 ['$binop_itruediv1458.21', 'grad_coeff'] - jump 1484 [] -label 1466: - $1470compare_op.4 = j == k ['$1470compare_op.4', 'j', 'k'] - bool1476 = global(bool: ) ['bool1476'] - $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) ['$1470compare_op.4', '$1476pred', 'bool1476'] - branch $1476pred, 1478, 1480 ['$1476pred'] -label 1478: - jump 1274 [] -label 1480: - grad_coeff = const(float, 0.0) ['grad_coeff'] - jump 1484 [] -label 1484: - $1484load_global.2 = global(range: ) ['$1484load_global.2'] - $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) ['$1484load_global.2', '$1502call.5', 'dim'] - $1512get_iter.6 = getiter(value=$1502call.5) ['$1502call.5', '$1512get_iter.6'] - $phi1514.2 = $1512get_iter.6 ['$1512get_iter.6', '$phi1514.2'] - jump 1514 [] -label 1514: - $1514for_iter.3 = iternext(value=$phi1514.2) ['$1514for_iter.3', '$phi1514.2'] - $1514for_iter.4 = pair_first(value=$1514for_iter.3) ['$1514for_iter.3', '$1514for_iter.4'] - $1514for_iter.5 = pair_second(value=$1514for_iter.3) ['$1514for_iter.3', '$1514for_iter.5'] - $phi1516.3 = $1514for_iter.4 ['$1514for_iter.4', '$phi1516.3'] - branch $1514for_iter.5, 1516, 1642 ['$1514for_iter.5'] -label 1516: - d = $phi1516.3 ['$phi1516.3', 'd'] - $const1520.5 = const(float, 0.0) ['$const1520.5'] - $1522compare_op.6 = grad_coeff > $const1520.5 ['$1522compare_op.6', '$const1520.5', 'grad_coeff'] - bool1528 = global(bool: ) ['bool1528'] - $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) ['$1522compare_op.6', '$1528pred', 'bool1528'] - branch $1528pred, 1530, 1598 ['$1528pred'] -label 1530: - $1530load_global.3 = global(clip: CPUDispatcher()) ['$1530load_global.3'] - $1548binary_subscr.8 = getitem(value=current, index=d, fn=) ['$1548binary_subscr.8', 'current', 'd'] - $1562binary_subscr.11 = getitem(value=other, index=d, fn=) ['$1562binary_subscr.11', 'd', 'other'] - $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 ['$1548binary_subscr.8', '$1562binary_subscr.11', '$binop_sub1572.12'] - $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 ['$binop_mul1576.13', '$binop_sub1572.12', 'grad_coeff'] - grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) ['$1530load_global.3', '$binop_mul1576.13', 'grad_d'] - jump 1602 [] -label 1598: - grad_d = const(int, 0) ['grad_d'] - jump 1602 [] -label 1602: - $1610binary_subscr.5 = getitem(value=current, index=d, fn=) ['$1610binary_subscr.5', 'current', 'd'] - $binop_mul1624.8 = grad_d * alpha ['$binop_mul1624.8', 'alpha', 'grad_d'] - $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) ['$1610binary_subscr.5', '$binop_iadd1628.9', '$binop_mul1624.8'] - current[d] = $binop_iadd1628.9 ['$binop_iadd1628.9', 'current', 'd'] - jump 1514 [] -label 1642: - jump 1274 [] -label 1644: - $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) ['$1652binary_subscr.3', 'epoch_of_next_negative_sample', 'i'] - $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) ['$1668binary_subscr.7', 'epochs_per_negative_sample', 'i'] - $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 ['$1668binary_subscr.7', '$binop_mul1678.8', 'n_neg_samples'] - $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) ['$1652binary_subscr.3', '$binop_iadd1682.9', '$binop_mul1678.8'] - epoch_of_next_negative_sample[i] = $binop_iadd1682.9 ['$binop_iadd1682.9', 'epoch_of_next_negative_sample', 'i'] - jump 1694 [] -label 1694: - jump 66 [] -label 1698: - $const1698.0 = const(NoneType, None) ['$const1698.0'] - $1700return_value.1 = cast(value=$const1698.0) ['$1700return_value.1', '$const1698.0'] - return $1700return_value.1 ['$1700return_value.1'] - -13:52:52,910 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:52,910 numba.core.ssa DEBUG Running -13:52:52,910 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,910 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,910 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,910 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,910 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,910 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,910 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,910 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,910 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,910 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,910 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,910 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,910 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,910 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,910 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,910 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,910 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,910 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,911 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,911 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,911 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,911 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,911 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,911 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,911 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,911 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,911 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,911 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,911 numba.core.ssa DEBUG ==== SSA block analysis pass on 66 -13:52:52,911 numba.core.ssa DEBUG Running -13:52:52,911 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,911 numba.core.ssa DEBUG ==== SSA block analysis pass on 68 -13:52:52,911 numba.core.ssa DEBUG Running -13:52:52,911 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,911 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,911 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,911 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,911 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,911 numba.core.ssa DEBUG ==== SSA block analysis pass on 70 -13:52:52,911 numba.core.ssa DEBUG Running -13:52:52,911 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,911 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,911 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,912 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,912 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,912 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,912 numba.core.ssa DEBUG ==== SSA block analysis pass on 98 -13:52:52,912 numba.core.ssa DEBUG Running -13:52:52,912 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,912 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,912 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,912 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,912 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,912 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,912 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,912 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,912 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,912 numba.core.ssa DEBUG ==== SSA block analysis pass on 200 -13:52:52,912 numba.core.ssa DEBUG Running -13:52:52,912 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,912 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,912 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,912 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,912 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,912 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,912 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,912 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,912 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,912 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,912 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,912 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,912 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,913 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,913 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,913 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,913 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,913 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,913 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,913 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,913 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,913 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,913 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,913 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,913 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,913 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,913 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,913 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,913 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,913 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,913 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,913 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,913 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,914 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,914 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,914 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,914 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,914 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,914 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,914 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,914 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,914 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,914 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,914 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,915 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,915 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,915 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,915 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,915 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,915 numba.core.ssa DEBUG ==== SSA block analysis pass on 744 -13:52:52,915 numba.core.ssa DEBUG Running -13:52:52,915 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,915 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,915 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,915 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,915 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,915 numba.core.ssa DEBUG ==== SSA block analysis pass on 756 -13:52:52,915 numba.core.ssa DEBUG Running -13:52:52,915 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,916 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,916 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,916 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,916 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,916 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,916 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,916 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,916 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,916 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,916 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,916 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,916 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,916 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,916 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,916 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,916 numba.core.ssa DEBUG ==== SSA block analysis pass on 864 -13:52:52,916 numba.core.ssa DEBUG Running -13:52:52,916 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,916 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,916 numba.core.ssa DEBUG ==== SSA block analysis pass on 868 -13:52:52,916 numba.core.ssa DEBUG Running -13:52:52,916 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,916 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,916 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,916 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,916 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,916 numba.core.ssa DEBUG ==== SSA block analysis pass on 898 -13:52:52,916 numba.core.ssa DEBUG Running -13:52:52,916 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,916 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,916 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,917 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,917 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,917 numba.core.ssa DEBUG ==== SSA block analysis pass on 900 -13:52:52,917 numba.core.ssa DEBUG Running -13:52:52,917 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,917 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,917 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,917 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,917 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,917 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,917 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,917 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,917 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,917 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,917 numba.core.ssa DEBUG ==== SSA block analysis pass on 972 -13:52:52,917 numba.core.ssa DEBUG Running -13:52:52,917 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,917 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,917 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,917 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,917 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,917 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,917 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,917 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,917 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,917 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,917 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,917 numba.core.ssa DEBUG ==== SSA block analysis pass on 1050 -13:52:52,917 numba.core.ssa DEBUG Running -13:52:52,917 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,918 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,918 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,918 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:52,918 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:52,918 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,918 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:52,918 numba.core.ssa DEBUG ==== SSA block analysis pass on 1092 -13:52:52,918 numba.core.ssa DEBUG Running -13:52:52,918 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,918 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:52,918 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:52,918 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,918 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:52,918 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:52,918 numba.core.ssa DEBUG ==== SSA block analysis pass on 1132 -13:52:52,918 numba.core.ssa DEBUG Running -13:52:52,918 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,918 numba.core.ssa DEBUG ==== SSA block analysis pass on 1134 -13:52:52,918 numba.core.ssa DEBUG Running -13:52:52,918 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,918 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:52,918 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,918 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:52,918 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:52,918 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,918 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:52,918 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,918 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:52,918 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,918 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:52,918 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:52,919 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:52,919 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,919 numba.core.ssa DEBUG ==== SSA block analysis pass on 1274 -13:52:52,919 numba.core.ssa DEBUG Running -13:52:52,919 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:52,919 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:52,919 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:52,919 numba.core.ssa DEBUG ==== SSA block analysis pass on 1276 -13:52:52,919 numba.core.ssa DEBUG Running -13:52:52,919 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:52,919 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,919 numba.core.ssa DEBUG on stmt: k = $1308call.8 % n_vertices -13:52:52,919 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:52,919 numba.core.ssa DEBUG on stmt: dist_squared = call $1342load_global.14(current, other, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,919 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,919 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:52,919 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,919 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:52,919 numba.core.ssa DEBUG ==== SSA block analysis pass on 1386 -13:52:52,919 numba.core.ssa DEBUG Running -13:52:52,919 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:52,919 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:52,919 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:52,919 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:52,920 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,920 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:52,920 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,920 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:52,920 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:52,920 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:52,920 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:52,920 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,920 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:52,920 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,920 numba.core.ssa DEBUG ==== SSA block analysis pass on 1466 -13:52:52,920 numba.core.ssa DEBUG Running -13:52:52,920 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k -13:52:52,920 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:52,920 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,920 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:52,920 numba.core.ssa DEBUG ==== SSA block analysis pass on 1478 -13:52:52,920 numba.core.ssa DEBUG Running -13:52:52,920 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,920 numba.core.ssa DEBUG ==== SSA block analysis pass on 1480 -13:52:52,920 numba.core.ssa DEBUG Running -13:52:52,920 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,920 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,920 numba.core.ssa DEBUG ==== SSA block analysis pass on 1484 -13:52:52,920 numba.core.ssa DEBUG Running -13:52:52,920 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:52,920 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,920 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:52,920 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:52,920 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,920 numba.core.ssa DEBUG ==== SSA block analysis pass on 1514 -13:52:52,920 numba.core.ssa DEBUG Running -13:52:52,920 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:52,921 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:52,921 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:52,921 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:52,921 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:52,921 numba.core.ssa DEBUG ==== SSA block analysis pass on 1516 -13:52:52,921 numba.core.ssa DEBUG Running -13:52:52,921 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:52,921 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:52,921 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:52,921 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:52,921 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,921 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:52,921 numba.core.ssa DEBUG ==== SSA block analysis pass on 1530 -13:52:52,921 numba.core.ssa DEBUG Running -13:52:52,921 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:52,921 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,921 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,921 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:52,921 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:52,921 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,921 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,921 numba.core.ssa DEBUG ==== SSA block analysis pass on 1598 -13:52:52,921 numba.core.ssa DEBUG Running -13:52:52,921 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:52,921 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,921 numba.core.ssa DEBUG ==== SSA block analysis pass on 1602 -13:52:52,921 numba.core.ssa DEBUG Running -13:52:52,921 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:52,921 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:52,921 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,921 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:52,921 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,921 numba.core.ssa DEBUG ==== SSA block analysis pass on 1642 -13:52:52,922 numba.core.ssa DEBUG Running -13:52:52,922 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,922 numba.core.ssa DEBUG ==== SSA block analysis pass on 1644 -13:52:52,922 numba.core.ssa DEBUG Running -13:52:52,922 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,922 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,922 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:52,922 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,922 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:52,922 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:52,922 numba.core.ssa DEBUG ==== SSA block analysis pass on 1694 -13:52:52,922 numba.core.ssa DEBUG Running -13:52:52,922 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,922 numba.core.ssa DEBUG ==== SSA block analysis pass on 1698 -13:52:52,922 numba.core.ssa DEBUG Running -13:52:52,922 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:52,922 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:52,922 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:52,922 numba.core.ssa DEBUG ==== SSA block analysis pass on 1699 -13:52:52,922 numba.core.ssa DEBUG Running -13:52:52,922 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,925 numba.core.ssa DEBUG defs defaultdict(, - {'$1012binary_subscr.13': [(, - 972)], - '$1034call.16': [(, - 972)], - '$1058binary_subscr.4': [(, - 1050)], - '$1090pred': [(, - 1050)], - '$1100binary_subscr.4': [(, - 1092)], - '$1112unary_negative.6': [(, - 1092)], - '$1142binary_subscr.3': [(, - 1134)], - '$1156binary_subscr.6': [(, - 1134)], - '$1178load_global.8': [(, - 1134)], - '$1196binary_subscr.13': [(, - 1134)], - '$1214binary_subscr.17': [(, - 1134)], - '$1244load_global.20': [(, - 1134)], - '$1262call.23': [(, - 1134)], - '$1272get_iter.24': [(, - 1134)], - '$1274for_iter.2': [(, - 1274)], - '$1274for_iter.3': [(, - 1274)], - '$1274for_iter.4': [(, - 1274)], - '$1278load_global.3': [(, - 1276)], - '$1294binary_subscr.7': [(, - 1276)], - '$1308call.8': [(, - 1276)], - '$1342load_global.14': [(, - 1276)], - '$1378compare_op.21': [(, - 1276)], - '$1384pred': [(, - 1276)], - '$1414load_global.12': [(, - 1386)], - '$1434call.16': [(, - 1386)], - '$1470compare_op.4': [(, - 1466)], - '$1476pred': [(, - 1466)], - '$1484load_global.2': [(, - 1484)], - '$1502call.5': [(, - 1484)], - '$1512get_iter.6': [(, - 1484)], - '$1514for_iter.3': [(, - 1514)], - '$1514for_iter.4': [(, - 1514)], - '$1514for_iter.5': [(, - 1514)], - '$1522compare_op.6': [(, - 1516)], - '$1528pred': [(, - 1516)], - '$1530load_global.3': [(, - 1530)], - '$1548binary_subscr.8': [(, - 1530)], - '$1562binary_subscr.11': [(, - 1530)], - '$1610binary_subscr.5': [(, - 1602)], - '$162load_global.13': [(, - 98)], - '$1652binary_subscr.3': [(, - 1644)], - '$1668binary_subscr.7': [(, - 1644)], - '$16load_attr.2': [(, - 0)], - '$1700return_value.1': [(, - 1698)], - '$198pred': [(, - 98)], - '$206load_global.4': [(, - 200)], - '$226call.8': [(, - 200)], - '$258load_global.15': [(, - 200)], - '$284call.21': [(, - 200)], - '$28load_attr.4': [(, - 0)], - '$302load_global.25': [(, - 200)], - '$322call.29': [(, - 200)], - '$352binary_subscr.36': [(, - 200)], - '$374binary_subscr.41': [(, - 200)], - '$40binary_subscr.6': [(, - 0)], - '$412load_global.51': [(, - 200)], - '$424load_attr.53': [(, - 200)], - '$438binary_subscr.56': [(, - 200)], - '$452call.57': [(, - 200)], - '$4load_global.0': [(, - 0)], - '$500load_global.70': [(, - 200)], - '$512load_attr.72': [(, - 200)], - '$526binary_subscr.75': [(, - 200)], - '$540call.76': [(, - 200)], - '$54call.7': [(, - 0)], - '$580binary_subscr.86': [(, - 200)], - '$596binary_subscr.90': [(, - 200)], - '$632binary_subscr.99': [(, - 200)], - '$648binary_subscr.103': [(, - 200)], - '$64get_iter.8': [(, - 0)], - '$68for_iter.1': [(, - 68)], - '$68for_iter.2': [(, - 68)], - '$68for_iter.3': [(, - 68)], - '$716binary_subscr.123': [(, - 200)], - '$748compare_op.3': [(, - 744)], - '$754pred': [(, - 744)], - '$76binary_subscr.4': [(, - 70)], - '$770load_global.6': [(, - 756)], - '$796call.12': [(, - 756)], - '$816load_global.16': [(, - 756)], - '$836call.20': [(, - 756)], - '$868load_global.1': [(, - 868)], - '$886call.4': [(, - 868)], - '$88compare_op.6': [(, - 70)], - '$896get_iter.5': [(, - 868)], - '$898for_iter.2': [(, - 898)], - '$898for_iter.3': [(, - 898)], - '$898for_iter.4': [(, - 898)], - '$902load_global.3': [(, - 900)], - '$920binary_subscr.8': [(, - 900)], - '$934binary_subscr.11': [(, - 900)], - '$96pred': [(, - 70)], - '$970pred': [(, - 900)], - '$974load_global.3': [(, - 972)], - '$998binary_subscr.10': [(, - 972)], - '$binop_add1408.10': [(, - 1386)], - '$binop_add1450.19': [(, - 1386)], - '$binop_add240.10': [(, - 200)], - '$binop_add336.31': [(, - 200)], - '$binop_add468.60': [(, - 200)], - '$binop_add556.79': [(, - 200)], - '$binop_add704.119': [(, - 200)], - '$binop_add852.23': [(, - 756)], - '$binop_iadd1044.17': [(, - 972)], - '$binop_iadd1076.8': [(, - 1050)], - '$binop_iadd1120.9': [(, - 1092)], - '$binop_iadd1166.7': [(, - 1134)], - '$binop_iadd1628.9': [(, - 1602)], - '$binop_iadd1682.9': [(, - 1644)], - '$binop_itruediv1458.21': [(, - 1386)], - '$binop_itruediv856.24': [(, - 756)], - '$binop_mul1026.15': [(, - 972)], - '$binop_mul1072.7': [(, - 1050)], - '$binop_mul1116.8': [(, - 1092)], - '$binop_mul1390.4': [(, - 1386)], - '$binop_mul1444.17': [(, - 1386)], - '$binop_mul1454.20': [(, - 1386)], - '$binop_mul1576.13': [(, - 1530)], - '$binop_mul1624.8': [(, - 1602)], - '$binop_mul1678.8': [(, - 1644)], - '$binop_mul236.9': [(, - 200)], - '$binop_mul254.14': [(, - 200)], - '$binop_mul294.22': [(, - 200)], - '$binop_mul332.30': [(, - 200)], - '$binop_mul404.49': [(, - 200)], - '$binop_mul492.68': [(, - 200)], - '$binop_mul612.93': [(, - 200)], - '$binop_mul664.106': [(, - 200)], - '$binop_mul684.112': [(, - 200)], - '$binop_mul692.115': [(, - 200)], - '$binop_mul700.118': [(, - 200)], - '$binop_mul708.120': [(, - 200)], - '$binop_mul728.125': [(, - 200)], - '$binop_mul760.3': [(, - 756)], - '$binop_mul766.5': [(, - 756)], - '$binop_mul846.21': [(, - 756)], - '$binop_mul948.13': [(, - 900)], - '$binop_mul990.7': [(, - 972)], - '$binop_sub1022.14': [(, - 972)], - '$binop_sub1206.14': [(, - 1134)], - '$binop_sub1572.12': [(, - 1530)], - '$binop_sub276.20': [(, - 200)], - '$binop_sub400.48': [(, - 200)], - '$binop_sub408.50': [(, - 200)], - '$binop_sub488.67': [(, - 200)], - '$binop_sub496.69': [(, - 200)], - '$binop_sub608.92': [(, - 200)], - '$binop_sub660.105': [(, - 200)], - '$binop_sub788.11': [(, - 756)], - '$binop_sub944.12': [(, - 900)], - '$binop_truediv1224.18': [(, - 1134)], - '$binop_truediv462.58': [(, - 200)], - '$binop_truediv550.77': [(, - 200)], - '$binop_truediv618.95': [(, - 200)], - '$binop_truediv670.108': [(, - 200)], - '$binop_truediv732.126': [(, - 200)], - '$const1376.20': [(, - 1276)], - '$const1386.2': [(, - 1386)], - '$const1404.8': [(, - 1386)], - '$const1448.18': [(, - 1386)], - '$const1520.5': [(, - 1516)], - '$const1698.0': [(, - 1698)], - '$const200.1': [(, - 200)], - '$const202.2': [(, - 200)], - '$const274.19': [(, - 200)], - '$const298.23': [(, - 200)], - '$const38.5': [(, - 0)], - '$const392.44': [(, - 200)], - '$const396.46': [(, - 200)], - '$const480.63': [(, - 200)], - '$const484.65': [(, - 200)], - '$const746.2': [(, - 744)], - '$const756.1': [(, - 756)], - '$const786.10': [(, - 756)], - '$const850.22': [(, - 756)], - '$const986.5': [(, - 972)], - '$phi1274.1': [(, - 1134)], - '$phi1276.2': [(, - 1274)], - '$phi1514.2': [(, - 1484)], - '$phi1516.3': [(, - 1514)], - '$phi68.0': [(, - 0)], - '$phi70.1': [(, - 68)], - '$phi898.1': [(, - 868)], - '$phi900.2': [(, - 898)], - 'a': [(, 0)], - 'alpha': [(, - 0)], - 'b': [(, 0)], - 'bool1090': [(, - 1050)], - 'bool1384': [(, - 1276)], - 'bool1476': [(, - 1466)], - 'bool1528': [(, - 1516)], - 'bool198': [(, - 98)], - 'bool754': [(, - 744)], - 'bool96': [(, - 70)], - 'bool970': [(, - 900)], - 'current': [(, - 98)], - 'd': [(, 900), - (, 1516)], - 'dens_R': [(, - 0)], - 'dens_lambda': [(, - 0)], - 'dens_mu': [(, - 0)], - 'dens_mu_tot': [(, - 0)], - 'dens_phi_sum': [(, - 0)], - 'dens_re_cov': [(, - 0)], - 'dens_re_mean': [(, - 0)], - 'dens_re_std': [(, - 0)], - 'dens_re_sum': [(, - 0)], - 'densmap_flag': [(, - 0)], - 'dim': [(, 0)], - 'dist_squared': [(, - 98), - (, - 1276)], - 'dphi_term': [(, - 200)], - 'drj': [(, - 200)], - 'drk': [(, - 200)], - 'epoch_of_next_negative_sample': [(, - 0)], - 'epoch_of_next_sample': [(, - 0)], - 'epochs_per_negative_sample': [(, - 0)], - 'epochs_per_sample': [(, - 0)], - 'gamma': [(, - 0)], - 'grad_coeff': [(, - 756), - (, - 756), - (, - 864), - (, - 1386), - (, - 1386), - (, - 1480)], - 'grad_cor_coeff': [(, - 200)], - 'grad_d': [(, - 900), - (, - 972), - (, - 1530), - (, - 1598)], - 'head': [(, 0)], - 'head_embedding': [(, - 0)], - 'i': [(, 70)], - 'j': [(, 98)], - 'k': [(, 98), - (, 1276)], - 'move_other': [(, - 0)], - 'n': [(, 0)], - 'n_neg_samples': [(, - 1134)], - 'n_vertices': [(, - 0)], - 'other': [(, - 98), - (, - 1276)], - 'p': [(, 1276)], - 'phi': [(, - 200)], - 'q_jk': [(, - 200)], - 'q_kj': [(, - 200)], - 're_std_sq': [(, - 200)], - 'rng_state_per_sample': [(, - 0)], - 'tail': [(, 0)], - 'tail_embedding': [(, - 0)], - 'weight_j': [(, - 200)], - 'weight_k': [(, - 200)]}) -13:52:52,926 numba.core.ssa DEBUG SSA violators -13:52:52,926 numba.core.ssa DEBUG Fix SSA violator on var k -13:52:52,926 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,926 numba.core.ssa DEBUG Running -13:52:52,926 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,926 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,926 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,926 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,926 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,926 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,926 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,926 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,927 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,927 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,927 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,927 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,927 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,927 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,927 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,927 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,927 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,927 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,927 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,927 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,927 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,927 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,927 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,927 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,927 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,927 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,927 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,927 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,927 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:52,927 numba.core.ssa DEBUG Running -13:52:52,927 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,927 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:52,927 numba.core.ssa DEBUG Running -13:52:52,927 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,927 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,927 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,927 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,928 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,928 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:52,928 numba.core.ssa DEBUG Running -13:52:52,928 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,928 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,928 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,928 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,928 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,928 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,928 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,928 numba.core.ssa DEBUG Running -13:52:52,928 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,928 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,928 numba.core.ssa DEBUG first assign: k -13:52:52,928 numba.core.ssa DEBUG replaced with: k = getitem(value=tail, index=i, fn=) -13:52:52,928 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,928 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,928 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,928 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,928 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,928 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,928 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,928 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:52,928 numba.core.ssa DEBUG Running -13:52:52,928 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,928 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,928 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,928 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,928 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,928 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,928 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,928 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,928 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,928 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,929 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,929 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,929 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,929 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,929 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,929 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,929 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,929 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,929 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,929 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,929 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,929 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,929 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,929 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,929 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,929 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,929 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,929 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,929 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,929 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,929 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,929 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,929 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,930 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,930 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,930 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,930 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,930 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,930 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,930 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,930 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,930 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,930 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,930 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,930 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,930 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:52,930 numba.core.ssa DEBUG Running -13:52:52,930 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,930 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,930 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,930 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,930 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,930 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:52,931 numba.core.ssa DEBUG Running -13:52:52,931 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,931 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,931 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,931 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,931 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,931 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,931 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,931 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,931 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,931 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,931 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,931 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,931 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,931 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,931 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,931 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,931 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:52,931 numba.core.ssa DEBUG Running -13:52:52,931 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,931 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,931 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:52,931 numba.core.ssa DEBUG Running -13:52:52,931 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,931 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,931 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,931 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,931 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,931 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:52,931 numba.core.ssa DEBUG Running -13:52:52,931 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,931 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,931 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,931 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,931 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,931 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:52,932 numba.core.ssa DEBUG Running -13:52:52,932 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,932 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,932 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,932 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,932 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,932 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,932 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,932 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,932 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:52,932 numba.core.ssa DEBUG Running -13:52:52,932 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,932 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,932 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,932 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,932 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,932 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,932 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,932 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:52,932 numba.core.ssa DEBUG Running -13:52:52,932 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,932 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,932 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:52,932 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:52,932 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,932 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:52,932 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:52,932 numba.core.ssa DEBUG Running -13:52:52,933 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:52,933 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:52,933 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,933 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:52,933 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:52,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:52,933 numba.core.ssa DEBUG Running -13:52:52,933 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:52,933 numba.core.ssa DEBUG Running -13:52:52,933 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:52,933 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,933 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:52,933 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,933 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:52,933 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,933 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:52,933 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:52,933 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:52,933 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:52,933 numba.core.ssa DEBUG Running -13:52:52,933 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:52,933 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:52,933 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:52,933 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:52,933 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:52,933 numba.core.ssa DEBUG Running -13:52:52,933 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:52,934 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:52,934 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:52,934 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,934 numba.core.ssa DEBUG on stmt: k = $1308call.8 % n_vertices -13:52:52,934 numba.core.ssa DEBUG replaced with: k.1 = $1308call.8 % n_vertices -13:52:52,934 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,934 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:52,934 numba.core.ssa DEBUG on stmt: dist_squared = call $1342load_global.14(current, other, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,934 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:52,934 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,934 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:52,934 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,934 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:52,934 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:52,934 numba.core.ssa DEBUG Running -13:52:52,934 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:52,934 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:52,934 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:52,934 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:52,934 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,934 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:52,934 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,934 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:52,934 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:52,934 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:52,934 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:52,934 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,934 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:52,934 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,934 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:52,934 numba.core.ssa DEBUG Running -13:52:52,934 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k -13:52:52,934 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:52,934 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,935 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:52,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:52,935 numba.core.ssa DEBUG Running -13:52:52,935 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:52,935 numba.core.ssa DEBUG Running -13:52:52,935 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,935 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:52,935 numba.core.ssa DEBUG Running -13:52:52,935 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:52,935 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:52,935 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:52,935 numba.core.ssa DEBUG Running -13:52:52,935 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:52,935 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:52,935 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:52,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:52,935 numba.core.ssa DEBUG Running -13:52:52,935 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:52,935 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:52,935 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,935 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:52,935 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:52,935 numba.core.ssa DEBUG Running -13:52:52,935 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,935 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,935 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:52,935 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:52,936 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,936 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:52,936 numba.core.ssa DEBUG Running -13:52:52,936 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:52,936 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:52,936 numba.core.ssa DEBUG Running -13:52:52,936 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:52,936 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:52,936 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,936 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:52,936 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:52,936 numba.core.ssa DEBUG Running -13:52:52,936 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:52,936 numba.core.ssa DEBUG Running -13:52:52,936 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,936 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,936 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:52,936 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,936 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:52,936 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:52,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:52,936 numba.core.ssa DEBUG Running -13:52:52,936 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:52,936 numba.core.ssa DEBUG Running -13:52:52,936 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:52,936 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:52,936 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:52,936 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:52,936 numba.core.ssa DEBUG Running -13:52:52,936 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,936 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {98: [], - 1276: []}) -13:52:52,937 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,937 numba.core.ssa DEBUG Running -13:52:52,937 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,937 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,937 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,937 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,937 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,937 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,937 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,937 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,937 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,937 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,937 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,937 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,937 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,937 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,937 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,937 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,937 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,937 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,937 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,937 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,937 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,937 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,937 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,937 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,937 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,937 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,937 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,938 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:52,938 numba.core.ssa DEBUG Running -13:52:52,938 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:52,938 numba.core.ssa DEBUG Running -13:52:52,938 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,938 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,938 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,938 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,938 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:52,938 numba.core.ssa DEBUG Running -13:52:52,938 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,938 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,938 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,938 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,938 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,938 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,938 numba.core.ssa DEBUG Running -13:52:52,938 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,938 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,938 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,938 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,938 numba.core.ssa DEBUG find_def var='k' stmt=other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,938 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,938 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,938 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,938 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,938 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,938 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:52,939 numba.core.ssa DEBUG Running -13:52:52,939 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,939 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,939 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,939 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,939 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,939 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,939 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,939 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,939 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,939 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,939 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,939 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,939 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,939 numba.core.ssa DEBUG find_def var='k' stmt=$352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,939 numba.core.ssa DEBUG find_def_from_top label 200 -13:52:52,939 numba.core.ssa DEBUG idom 98 from label 200 -13:52:52,939 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,939 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,939 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,939 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,939 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,939 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,939 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,940 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,940 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,940 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,940 numba.core.ssa DEBUG find_def var='k' stmt=$438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,940 numba.core.ssa DEBUG find_def_from_top label 200 -13:52:52,940 numba.core.ssa DEBUG idom 98 from label 200 -13:52:52,940 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,940 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,940 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,940 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,940 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,940 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,940 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,940 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,940 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,940 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,940 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,940 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,940 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,940 numba.core.ssa DEBUG find_def var='k' stmt=$580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,940 numba.core.ssa DEBUG find_def_from_top label 200 -13:52:52,940 numba.core.ssa DEBUG idom 98 from label 200 -13:52:52,940 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,940 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,941 numba.core.ssa DEBUG find_def var='k' stmt=$596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,941 numba.core.ssa DEBUG find_def_from_top label 200 -13:52:52,941 numba.core.ssa DEBUG idom 98 from label 200 -13:52:52,941 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,941 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,941 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,941 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,941 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,941 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,941 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,941 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,941 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,941 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:52,941 numba.core.ssa DEBUG Running -13:52:52,941 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,941 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,941 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,941 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,941 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,942 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:52,942 numba.core.ssa DEBUG Running -13:52:52,942 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,942 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,942 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,942 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,942 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,942 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,942 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,942 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,942 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,943 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,943 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,943 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,943 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:52,943 numba.core.ssa DEBUG Running -13:52:52,943 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,943 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:52,943 numba.core.ssa DEBUG Running -13:52:52,943 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,943 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,943 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,943 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,943 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:52,943 numba.core.ssa DEBUG Running -13:52:52,943 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,943 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,943 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,943 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,943 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:52,943 numba.core.ssa DEBUG Running -13:52:52,943 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,943 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,943 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,943 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,943 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,943 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,943 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,943 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,943 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:52,943 numba.core.ssa DEBUG Running -13:52:52,943 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,943 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,943 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,943 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,943 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,943 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,944 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,944 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,944 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:52,944 numba.core.ssa DEBUG Running -13:52:52,944 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,944 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,944 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,944 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:52,944 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:52,944 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,944 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:52,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:52,944 numba.core.ssa DEBUG Running -13:52:52,944 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,944 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:52,944 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:52,944 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,944 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:52,944 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:52,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:52,944 numba.core.ssa DEBUG Running -13:52:52,944 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,944 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:52,944 numba.core.ssa DEBUG Running -13:52:52,944 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,944 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:52,944 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,944 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:52,945 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,945 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:52,945 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,945 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:52,945 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:52,945 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:52,945 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,945 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:52,945 numba.core.ssa DEBUG Running -13:52:52,945 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:52,945 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:52,945 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:52,945 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:52,945 numba.core.ssa DEBUG Running -13:52:52,945 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:52,945 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,945 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:52,945 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,945 numba.core.ssa DEBUG find_def var='k' stmt=other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,945 numba.core.ssa DEBUG replaced with: other = getitem(value=tail_embedding, index=k.1, fn=) -13:52:52,945 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:52,945 numba.core.ssa DEBUG on stmt: dist_squared = call $1342load_global.14(current, other, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,946 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:52,946 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,946 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:52,946 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,946 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:52,946 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:52,946 numba.core.ssa DEBUG Running -13:52:52,946 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:52,946 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:52,946 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:52,946 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:52,946 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,946 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:52,946 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,946 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:52,946 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:52,946 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:52,946 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:52,946 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,946 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:52,946 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,946 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:52,946 numba.core.ssa DEBUG Running -13:52:52,946 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k -13:52:52,946 numba.core.ssa DEBUG find_def var='k' stmt=$1470compare_op.4 = j == k -13:52:52,946 numba.core.ssa DEBUG find_def_from_top label 1466 -13:52:52,946 numba.core.ssa DEBUG idom 1276 from label 1466 -13:52:52,946 numba.core.ssa DEBUG find_def_from_bottom label 1276 -13:52:52,946 numba.core.ssa DEBUG replaced with: $1470compare_op.4 = j == k.1 -13:52:52,946 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:52,946 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,947 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:52,947 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:52,947 numba.core.ssa DEBUG Running -13:52:52,947 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,947 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:52,947 numba.core.ssa DEBUG Running -13:52:52,947 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,947 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,947 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:52,947 numba.core.ssa DEBUG Running -13:52:52,947 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:52,947 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:52,947 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,947 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:52,947 numba.core.ssa DEBUG Running -13:52:52,947 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:52,947 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:52,947 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:52,947 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:52,947 numba.core.ssa DEBUG Running -13:52:52,947 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:52,947 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:52,947 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,947 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:52,947 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:52,947 numba.core.ssa DEBUG Running -13:52:52,947 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,947 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,948 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:52,948 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:52,948 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,948 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,948 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:52,948 numba.core.ssa DEBUG Running -13:52:52,948 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:52,948 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,948 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:52,948 numba.core.ssa DEBUG Running -13:52:52,948 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:52,948 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:52,948 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,948 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:52,948 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,948 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:52,948 numba.core.ssa DEBUG Running -13:52:52,948 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,948 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:52,948 numba.core.ssa DEBUG Running -13:52:52,948 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,948 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,948 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:52,948 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,948 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:52,948 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:52,948 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:52,948 numba.core.ssa DEBUG Running -13:52:52,948 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,948 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:52,948 numba.core.ssa DEBUG Running -13:52:52,948 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:52,948 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:52,949 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:52,949 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:52,949 numba.core.ssa DEBUG Running -13:52:52,949 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,949 numba.core.ssa DEBUG Fix SSA violator on var other -13:52:52,949 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,949 numba.core.ssa DEBUG Running -13:52:52,949 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,949 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,949 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,949 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,949 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,949 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,949 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,949 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,949 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,949 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,949 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,949 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,949 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,949 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,949 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,949 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,949 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,949 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,949 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,949 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,949 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,949 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,949 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,949 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,950 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,950 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,950 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,950 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,950 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:52,950 numba.core.ssa DEBUG Running -13:52:52,950 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,950 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:52,950 numba.core.ssa DEBUG Running -13:52:52,950 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,950 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,950 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,950 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,950 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,950 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:52,950 numba.core.ssa DEBUG Running -13:52:52,950 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,950 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,950 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,950 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,950 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,950 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,950 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,950 numba.core.ssa DEBUG Running -13:52:52,950 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,950 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,950 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,950 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,950 numba.core.ssa DEBUG first assign: other -13:52:52,950 numba.core.ssa DEBUG replaced with: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,950 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,950 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,950 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,950 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,951 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,951 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:52,951 numba.core.ssa DEBUG Running -13:52:52,951 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,951 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,951 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,951 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,951 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,951 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,951 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,951 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,951 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,951 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,951 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,951 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,951 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,951 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,951 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,951 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,951 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,951 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,951 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,951 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,951 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,951 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,952 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,952 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,952 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,952 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,952 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,952 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,952 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,952 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,952 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,952 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,952 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,952 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,952 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,952 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,952 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,952 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,952 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,953 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,953 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,953 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,953 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:52,953 numba.core.ssa DEBUG Running -13:52:52,953 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,953 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,953 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,953 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,953 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,953 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:52,953 numba.core.ssa DEBUG Running -13:52:52,953 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,953 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,953 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,953 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,953 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,953 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,953 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,953 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,953 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,953 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,953 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,953 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:52,953 numba.core.ssa DEBUG Running -13:52:52,953 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,953 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,953 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:52,954 numba.core.ssa DEBUG Running -13:52:52,954 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,954 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,954 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,954 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,954 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,954 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:52,954 numba.core.ssa DEBUG Running -13:52:52,954 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,954 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,954 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,954 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,954 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,954 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:52,954 numba.core.ssa DEBUG Running -13:52:52,954 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,954 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,954 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,954 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,954 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,954 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,954 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,954 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,954 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,954 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,954 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:52,954 numba.core.ssa DEBUG Running -13:52:52,954 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,954 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,954 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,954 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,954 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,954 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,954 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,954 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,954 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,955 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,955 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,955 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:52,955 numba.core.ssa DEBUG Running -13:52:52,955 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,955 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,955 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,955 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:52,955 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:52,955 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,955 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:52,955 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:52,955 numba.core.ssa DEBUG Running -13:52:52,955 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,955 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:52,955 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:52,955 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,955 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:52,955 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:52,955 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:52,955 numba.core.ssa DEBUG Running -13:52:52,955 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,955 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:52,955 numba.core.ssa DEBUG Running -13:52:52,955 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,955 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:52,955 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,955 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:52,955 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:52,955 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,955 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:52,955 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,955 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:52,955 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,955 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:52,955 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:52,956 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:52,956 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,956 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:52,956 numba.core.ssa DEBUG Running -13:52:52,956 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:52,956 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:52,956 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:52,956 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:52,956 numba.core.ssa DEBUG Running -13:52:52,956 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:52,956 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,956 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:52,956 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k.1, fn=) -13:52:52,956 numba.core.ssa DEBUG replaced with: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:52,956 numba.core.ssa DEBUG on stmt: dist_squared = call $1342load_global.14(current, other, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,956 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,956 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,956 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:52,956 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:52,956 numba.core.ssa DEBUG Running -13:52:52,956 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:52,956 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:52,956 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:52,956 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:52,956 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,956 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:52,956 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,957 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:52,957 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:52,957 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:52,957 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:52,957 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,957 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:52,957 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,957 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:52,957 numba.core.ssa DEBUG Running -13:52:52,957 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:52,957 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:52,957 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,957 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:52,957 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:52,957 numba.core.ssa DEBUG Running -13:52:52,957 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,957 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:52,957 numba.core.ssa DEBUG Running -13:52:52,957 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,957 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,957 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:52,957 numba.core.ssa DEBUG Running -13:52:52,957 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:52,957 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,957 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:52,957 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:52,957 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,957 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:52,957 numba.core.ssa DEBUG Running -13:52:52,957 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:52,957 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:52,957 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:52,957 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:52,957 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:52,957 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:52,957 numba.core.ssa DEBUG Running -13:52:52,957 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:52,958 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:52,958 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:52,958 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:52,958 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,958 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:52,958 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:52,958 numba.core.ssa DEBUG Running -13:52:52,958 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:52,958 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,958 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,958 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:52,958 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:52,958 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,958 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,958 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:52,958 numba.core.ssa DEBUG Running -13:52:52,958 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:52,958 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,958 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:52,958 numba.core.ssa DEBUG Running -13:52:52,958 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:52,958 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:52,958 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,958 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:52,958 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,958 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:52,958 numba.core.ssa DEBUG Running -13:52:52,958 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,958 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:52,958 numba.core.ssa DEBUG Running -13:52:52,959 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,959 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,959 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:52,959 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,959 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:52,959 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:52,959 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:52,959 numba.core.ssa DEBUG Running -13:52:52,959 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,959 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:52,959 numba.core.ssa DEBUG Running -13:52:52,959 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:52,959 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:52,959 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:52,959 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:52,959 numba.core.ssa DEBUG Running -13:52:52,959 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,959 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {98: [], - 1276: []}) -13:52:52,959 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,959 numba.core.ssa DEBUG Running -13:52:52,959 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,959 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,959 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,959 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,959 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,959 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,959 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,959 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,959 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,959 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,959 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,959 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,959 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,959 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,959 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,959 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,960 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,960 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,960 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,960 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,960 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,960 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,960 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,960 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,960 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,960 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,960 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,960 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,960 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:52,960 numba.core.ssa DEBUG Running -13:52:52,960 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,960 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:52,960 numba.core.ssa DEBUG Running -13:52:52,960 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,960 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,960 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,960 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,960 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,960 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:52,960 numba.core.ssa DEBUG Running -13:52:52,960 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,960 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,960 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,960 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,960 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,961 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,961 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,961 numba.core.ssa DEBUG Running -13:52:52,961 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,961 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,961 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,961 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,961 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,961 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,961 numba.core.ssa DEBUG find_def var='other' stmt=dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,961 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,961 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,961 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,961 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:52,961 numba.core.ssa DEBUG Running -13:52:52,961 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,961 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,961 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,961 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,961 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,961 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,961 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,961 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,961 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,961 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,961 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,961 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,961 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,961 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,961 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,961 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,962 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,962 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,962 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,962 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,962 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,962 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,962 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,962 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,962 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,962 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,962 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,962 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,962 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,962 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,962 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,962 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,962 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,962 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,962 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,962 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,962 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,962 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,963 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,963 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,963 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,963 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,963 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,963 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,963 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,963 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,963 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:52,963 numba.core.ssa DEBUG Running -13:52:52,963 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,963 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,963 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,963 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,963 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,963 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:52,963 numba.core.ssa DEBUG Running -13:52:52,963 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,963 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,964 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,964 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,964 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,964 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,964 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,964 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,964 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,964 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,964 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,964 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,964 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,964 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,964 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,964 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:52,964 numba.core.ssa DEBUG Running -13:52:52,964 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,964 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,964 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:52,964 numba.core.ssa DEBUG Running -13:52:52,964 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,964 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,964 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,964 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,964 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,964 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:52,964 numba.core.ssa DEBUG Running -13:52:52,964 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,964 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,964 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,964 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,964 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,964 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:52,964 numba.core.ssa DEBUG Running -13:52:52,964 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,964 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,965 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,965 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,965 numba.core.ssa DEBUG find_def var='other' stmt=$934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,965 numba.core.ssa DEBUG find_def_from_top label 900 -13:52:52,965 numba.core.ssa DEBUG idom 898 from label 900 -13:52:52,965 numba.core.ssa DEBUG find_def_from_bottom label 898 -13:52:52,965 numba.core.ssa DEBUG find_def_from_top label 898 -13:52:52,965 numba.core.ssa DEBUG idom 868 from label 898 -13:52:52,965 numba.core.ssa DEBUG find_def_from_bottom label 868 -13:52:52,965 numba.core.ssa DEBUG find_def_from_top label 868 -13:52:52,965 numba.core.ssa DEBUG idom 744 from label 868 -13:52:52,965 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:52,965 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:52,965 numba.core.ssa DEBUG idom 98 from label 744 -13:52:52,965 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,965 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,965 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,965 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,965 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,965 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,965 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,965 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:52,965 numba.core.ssa DEBUG Running -13:52:52,965 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,965 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,965 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,965 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,965 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,965 numba.core.ssa DEBUG find_def var='other' stmt=$1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,965 numba.core.ssa DEBUG find_def_from_top label 972 -13:52:52,965 numba.core.ssa DEBUG idom 900 from label 972 -13:52:52,965 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:52,965 numba.core.ssa DEBUG find_def_from_top label 900 -13:52:52,965 numba.core.ssa DEBUG idom 898 from label 900 -13:52:52,965 numba.core.ssa DEBUG find_def_from_bottom label 898 -13:52:52,965 numba.core.ssa DEBUG find_def_from_top label 898 -13:52:52,965 numba.core.ssa DEBUG idom 868 from label 898 -13:52:52,966 numba.core.ssa DEBUG find_def_from_bottom label 868 -13:52:52,966 numba.core.ssa DEBUG find_def_from_top label 868 -13:52:52,966 numba.core.ssa DEBUG idom 744 from label 868 -13:52:52,966 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:52,966 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:52,966 numba.core.ssa DEBUG idom 98 from label 744 -13:52:52,966 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,966 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,966 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,966 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,966 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,966 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,966 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,966 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:52,966 numba.core.ssa DEBUG Running -13:52:52,966 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,966 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,966 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,966 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:52,966 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:52,966 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,966 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:52,966 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:52,966 numba.core.ssa DEBUG Running -13:52:52,966 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,966 numba.core.ssa DEBUG find_def var='other' stmt=$1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,966 numba.core.ssa DEBUG find_def_from_top label 1092 -13:52:52,966 numba.core.ssa DEBUG idom 1050 from label 1092 -13:52:52,966 numba.core.ssa DEBUG find_def_from_bottom label 1050 -13:52:52,966 numba.core.ssa DEBUG find_def_from_top label 1050 -13:52:52,966 numba.core.ssa DEBUG idom 900 from label 1050 -13:52:52,966 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:52,966 numba.core.ssa DEBUG find_def_from_top label 900 -13:52:52,966 numba.core.ssa DEBUG idom 898 from label 900 -13:52:52,966 numba.core.ssa DEBUG find_def_from_bottom label 898 -13:52:52,966 numba.core.ssa DEBUG find_def_from_top label 898 -13:52:52,966 numba.core.ssa DEBUG idom 868 from label 898 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 868 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 868 -13:52:52,967 numba.core.ssa DEBUG idom 744 from label 868 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:52,967 numba.core.ssa DEBUG idom 98 from label 744 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,967 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:52,967 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:52,967 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,967 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:52,967 numba.core.ssa DEBUG find_def var='other' stmt=other[d] = $binop_iadd1120.9 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 1092 -13:52:52,967 numba.core.ssa DEBUG idom 1050 from label 1092 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 1050 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 1050 -13:52:52,967 numba.core.ssa DEBUG idom 900 from label 1050 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 900 -13:52:52,967 numba.core.ssa DEBUG idom 898 from label 900 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 898 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 898 -13:52:52,967 numba.core.ssa DEBUG idom 868 from label 898 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 868 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 868 -13:52:52,967 numba.core.ssa DEBUG idom 744 from label 868 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:52,967 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:52,967 numba.core.ssa DEBUG idom 98 from label 744 -13:52:52,967 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,967 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:52,967 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:52,967 numba.core.ssa DEBUG Running -13:52:52,967 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,967 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:52,967 numba.core.ssa DEBUG Running -13:52:52,967 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,967 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:52,967 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,967 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:52,968 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,968 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:52,968 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,968 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:52,968 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:52,968 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:52,968 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,968 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:52,968 numba.core.ssa DEBUG Running -13:52:52,968 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:52,968 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:52,968 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:52,968 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:52,968 numba.core.ssa DEBUG Running -13:52:52,968 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:52,968 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,968 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:52,968 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:52,968 numba.core.ssa DEBUG on stmt: dist_squared = call $1342load_global.14(current, other, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,968 numba.core.ssa DEBUG find_def var='other' stmt=dist_squared = call $1342load_global.14(current, other, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,968 numba.core.ssa DEBUG replaced with: dist_squared = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,968 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:52,968 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,969 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:52,969 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,969 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:52,969 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:52,969 numba.core.ssa DEBUG Running -13:52:52,969 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:52,969 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:52,969 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:52,969 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:52,969 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,969 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:52,969 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,969 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:52,969 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:52,969 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:52,969 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:52,969 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,969 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:52,969 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,969 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:52,969 numba.core.ssa DEBUG Running -13:52:52,969 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:52,969 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:52,969 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,969 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:52,969 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:52,969 numba.core.ssa DEBUG Running -13:52:52,969 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,969 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:52,969 numba.core.ssa DEBUG Running -13:52:52,969 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,969 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,969 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:52,969 numba.core.ssa DEBUG Running -13:52:52,969 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:52,970 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:52,970 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,970 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:52,970 numba.core.ssa DEBUG Running -13:52:52,970 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:52,970 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:52,970 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:52,970 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:52,970 numba.core.ssa DEBUG Running -13:52:52,970 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:52,970 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:52,970 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,970 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:52,970 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:52,970 numba.core.ssa DEBUG Running -13:52:52,970 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,970 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,970 numba.core.ssa DEBUG find_def var='other' stmt=$1562binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,970 numba.core.ssa DEBUG find_def_from_top label 1530 -13:52:52,970 numba.core.ssa DEBUG idom 1516 from label 1530 -13:52:52,970 numba.core.ssa DEBUG find_def_from_bottom label 1516 -13:52:52,970 numba.core.ssa DEBUG find_def_from_top label 1516 -13:52:52,970 numba.core.ssa DEBUG idom 1514 from label 1516 -13:52:52,970 numba.core.ssa DEBUG find_def_from_bottom label 1514 -13:52:52,970 numba.core.ssa DEBUG find_def_from_top label 1514 -13:52:52,970 numba.core.ssa DEBUG idom 1484 from label 1514 -13:52:52,970 numba.core.ssa DEBUG find_def_from_bottom label 1484 -13:52:52,970 numba.core.ssa DEBUG find_def_from_top label 1484 -13:52:52,970 numba.core.ssa DEBUG idom 1276 from label 1484 -13:52:52,970 numba.core.ssa DEBUG find_def_from_bottom label 1276 -13:52:52,971 numba.core.ssa DEBUG replaced with: $1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:52,971 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:52,971 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:52,971 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,971 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,971 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:52,971 numba.core.ssa DEBUG Running -13:52:52,971 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:52,971 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,971 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:52,971 numba.core.ssa DEBUG Running -13:52:52,971 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:52,971 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:52,971 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,971 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:52,971 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,971 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:52,971 numba.core.ssa DEBUG Running -13:52:52,971 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,971 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:52,971 numba.core.ssa DEBUG Running -13:52:52,971 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,971 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,971 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:52,971 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,971 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:52,971 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:52,971 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:52,971 numba.core.ssa DEBUG Running -13:52:52,971 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,971 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:52,971 numba.core.ssa DEBUG Running -13:52:52,971 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:52,971 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:52,971 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:52,971 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:52,972 numba.core.ssa DEBUG Running -13:52:52,972 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,972 numba.core.ssa DEBUG Fix SSA violator on var dist_squared -13:52:52,972 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,972 numba.core.ssa DEBUG Running -13:52:52,972 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,972 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,972 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,972 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,972 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,972 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,972 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,972 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,972 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,972 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,972 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,972 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,972 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,972 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,972 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,972 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,972 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,972 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,972 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,972 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,972 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,972 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,972 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,972 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,972 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,973 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,973 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,973 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,973 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:52,973 numba.core.ssa DEBUG Running -13:52:52,973 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,973 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:52,973 numba.core.ssa DEBUG Running -13:52:52,973 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,973 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,973 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,973 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,973 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,973 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:52,973 numba.core.ssa DEBUG Running -13:52:52,973 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,973 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,973 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,973 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,973 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,973 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,973 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,973 numba.core.ssa DEBUG Running -13:52:52,973 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,973 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,973 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,973 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,973 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,973 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,973 numba.core.ssa DEBUG first assign: dist_squared -13:52:52,973 numba.core.ssa DEBUG replaced with: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,973 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,973 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,973 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,973 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:52,973 numba.core.ssa DEBUG Running -13:52:52,974 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,974 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,974 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,974 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,974 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,974 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,974 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,974 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,974 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,974 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,974 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,974 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,974 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,974 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,974 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,974 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,974 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,974 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,974 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,974 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,974 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,974 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,974 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,975 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,975 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,975 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,975 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,975 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,975 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,975 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,975 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,975 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,975 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,975 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,975 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,975 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,975 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,975 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,975 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,975 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,976 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,976 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,976 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,976 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:52,976 numba.core.ssa DEBUG Running -13:52:52,976 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,976 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,976 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,976 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,976 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,976 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:52,976 numba.core.ssa DEBUG Running -13:52:52,976 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,976 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,976 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,976 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,976 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,976 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,976 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,976 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,976 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,976 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,976 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,976 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,976 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,976 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,976 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,976 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,976 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:52,976 numba.core.ssa DEBUG Running -13:52:52,976 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,976 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,976 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:52,976 numba.core.ssa DEBUG Running -13:52:52,976 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,976 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,977 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,977 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,977 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,977 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:52,977 numba.core.ssa DEBUG Running -13:52:52,977 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,977 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,977 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,977 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,977 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,977 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:52,977 numba.core.ssa DEBUG Running -13:52:52,977 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,977 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,977 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,977 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,977 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,977 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,977 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,977 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,977 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,977 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,977 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:52,977 numba.core.ssa DEBUG Running -13:52:52,977 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,977 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,977 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,977 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,977 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,977 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,977 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,977 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,977 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,977 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,977 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,978 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:52,978 numba.core.ssa DEBUG Running -13:52:52,978 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,978 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,978 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,978 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:52,978 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:52,978 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,978 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:52,978 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:52,978 numba.core.ssa DEBUG Running -13:52:52,978 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,978 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:52,978 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:52,978 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,978 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:52,978 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:52,978 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:52,978 numba.core.ssa DEBUG Running -13:52:52,978 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,978 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:52,978 numba.core.ssa DEBUG Running -13:52:52,978 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,978 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:52,978 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,978 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:52,978 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:52,978 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,978 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:52,978 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,978 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:52,978 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,978 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:52,978 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,978 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:52,978 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:52,979 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,979 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:52,979 numba.core.ssa DEBUG Running -13:52:52,979 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:52,979 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:52,979 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:52,979 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:52,979 numba.core.ssa DEBUG Running -13:52:52,979 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:52,979 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,979 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:52,979 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:52,979 numba.core.ssa DEBUG on stmt: dist_squared = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,979 numba.core.ssa DEBUG replaced with: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,979 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,979 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,979 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:52,979 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:52,979 numba.core.ssa DEBUG Running -13:52:52,979 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:52,979 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:52,979 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:52,979 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:52,979 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,979 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:52,979 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,979 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:52,979 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:52,980 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:52,980 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:52,980 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,980 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:52,980 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,980 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:52,980 numba.core.ssa DEBUG Running -13:52:52,980 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:52,980 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:52,980 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,980 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:52,980 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:52,980 numba.core.ssa DEBUG Running -13:52:52,980 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,980 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:52,980 numba.core.ssa DEBUG Running -13:52:52,980 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,980 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,980 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:52,980 numba.core.ssa DEBUG Running -13:52:52,980 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:52,980 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,980 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:52,980 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:52,980 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,980 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:52,980 numba.core.ssa DEBUG Running -13:52:52,980 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:52,980 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:52,980 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:52,980 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:52,980 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:52,980 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:52,980 numba.core.ssa DEBUG Running -13:52:52,980 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:52,980 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:52,980 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:52,980 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:52,981 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,981 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:52,981 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:52,981 numba.core.ssa DEBUG Running -13:52:52,981 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:52,981 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,981 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:52,981 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:52,981 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:52,981 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,981 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,981 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:52,981 numba.core.ssa DEBUG Running -13:52:52,981 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:52,981 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,981 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:52,981 numba.core.ssa DEBUG Running -13:52:52,981 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:52,981 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:52,981 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,981 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:52,981 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,981 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:52,981 numba.core.ssa DEBUG Running -13:52:52,981 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,981 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:52,981 numba.core.ssa DEBUG Running -13:52:52,981 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,981 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,981 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:52,981 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,981 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:52,981 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:52,981 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:52,981 numba.core.ssa DEBUG Running -13:52:52,981 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,981 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:52,982 numba.core.ssa DEBUG Running -13:52:52,982 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:52,982 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:52,982 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:52,982 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:52,982 numba.core.ssa DEBUG Running -13:52:52,982 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,982 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {98: [], - 1276: []}) -13:52:52,982 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,982 numba.core.ssa DEBUG Running -13:52:52,982 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,982 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,982 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,982 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,982 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,982 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,982 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,982 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,982 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,982 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,982 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,982 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,982 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,982 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,982 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,982 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,982 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,982 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,982 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,982 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,983 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,983 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,983 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,983 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,983 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,983 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,983 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,983 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,983 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:52,983 numba.core.ssa DEBUG Running -13:52:52,983 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,983 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:52,983 numba.core.ssa DEBUG Running -13:52:52,983 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,983 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,983 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,983 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,983 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,983 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:52,983 numba.core.ssa DEBUG Running -13:52:52,983 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,983 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,983 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,983 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,983 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,983 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,983 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,983 numba.core.ssa DEBUG Running -13:52:52,983 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,983 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,983 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,983 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,983 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,983 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,984 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,984 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:52,984 numba.core.ssa DEBUG Running -13:52:52,984 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,984 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,984 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,984 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG find_def_from_top label 200 -13:52:52,984 numba.core.ssa DEBUG idom 98 from label 200 -13:52:52,984 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,984 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,984 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,984 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,984 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,984 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,984 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,984 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,984 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG find_def_from_top label 200 -13:52:52,984 numba.core.ssa DEBUG idom 98 from label 200 -13:52:52,984 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,984 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,984 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,984 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,984 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,984 numba.core.ssa DEBUG find_def_from_top label 200 -13:52:52,984 numba.core.ssa DEBUG idom 98 from label 200 -13:52:52,984 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,985 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,985 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,985 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,985 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,985 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,985 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,985 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,985 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,985 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,985 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,985 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,985 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,985 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,985 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,985 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,985 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,985 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,985 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,985 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,985 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,985 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,985 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,986 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,986 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,986 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,986 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,986 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,986 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,986 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,986 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,986 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,986 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:52,986 numba.core.ssa DEBUG Running -13:52:52,986 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,986 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,986 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$748compare_op.3 = dist_squared > $const746.2 -13:52:52,986 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:52,986 numba.core.ssa DEBUG idom 98 from label 744 -13:52:52,986 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,986 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,986 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,986 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,986 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:52,986 numba.core.ssa DEBUG Running -13:52:52,987 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,987 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,987 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,987 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,987 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,987 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,987 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,987 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,987 numba.core.ssa DEBUG find_def_from_top label 756 -13:52:52,987 numba.core.ssa DEBUG idom 744 from label 756 -13:52:52,987 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:52,987 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:52,987 numba.core.ssa DEBUG idom 98 from label 744 -13:52:52,987 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,987 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,987 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,987 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,987 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,987 numba.core.ssa DEBUG find_def_from_top label 756 -13:52:52,987 numba.core.ssa DEBUG idom 744 from label 756 -13:52:52,987 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:52,987 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:52,987 numba.core.ssa DEBUG idom 98 from label 744 -13:52:52,987 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:52,987 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,987 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,987 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,987 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,987 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,987 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,987 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:52,987 numba.core.ssa DEBUG Running -13:52:52,987 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,987 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,987 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:52,987 numba.core.ssa DEBUG Running -13:52:52,988 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,988 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,988 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,988 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,988 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,988 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:52,988 numba.core.ssa DEBUG Running -13:52:52,988 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,988 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,988 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,988 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,988 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,988 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:52,988 numba.core.ssa DEBUG Running -13:52:52,988 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,988 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,988 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,988 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,988 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,988 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,988 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,988 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,988 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,988 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,988 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:52,988 numba.core.ssa DEBUG Running -13:52:52,988 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,988 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,988 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,988 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,988 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,988 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,988 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,988 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,989 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,989 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,989 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:52,989 numba.core.ssa DEBUG Running -13:52:52,989 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,989 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:52,989 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:52,989 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,989 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:52,989 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:52,989 numba.core.ssa DEBUG Running -13:52:52,989 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:52,989 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,989 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:52,989 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:52,989 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:52,989 numba.core.ssa DEBUG Running -13:52:52,989 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,989 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:52,989 numba.core.ssa DEBUG Running -13:52:52,989 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,989 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,989 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:52,989 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:52,989 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:52,989 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,989 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:52,989 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:52,990 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:52,990 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,990 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:52,990 numba.core.ssa DEBUG Running -13:52:52,990 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:52,990 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:52,990 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:52,990 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:52,990 numba.core.ssa DEBUG Running -13:52:52,990 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:52,990 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,990 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:52,990 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:52,990 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,990 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,990 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$1378compare_op.21 = dist_squared > $const1376.20 -13:52:52,990 numba.core.ssa DEBUG replaced with: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:52,990 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:52,990 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,990 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:52,990 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:52,990 numba.core.ssa DEBUG Running -13:52:52,991 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:52,991 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:52,991 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:52,991 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:52,991 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,991 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$binop_add1408.10 = $const1404.8 + dist_squared -13:52:52,991 numba.core.ssa DEBUG find_def_from_top label 1386 -13:52:52,991 numba.core.ssa DEBUG idom 1276 from label 1386 -13:52:52,991 numba.core.ssa DEBUG find_def_from_bottom label 1276 -13:52:52,991 numba.core.ssa DEBUG replaced with: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:52,991 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:52,991 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,991 numba.core.ssa DEBUG find_def var='dist_squared' stmt=$1434call.16 = call $1414load_global.12(dist_squared, b, func=$1414load_global.12, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,991 numba.core.ssa DEBUG find_def_from_top label 1386 -13:52:52,991 numba.core.ssa DEBUG idom 1276 from label 1386 -13:52:52,991 numba.core.ssa DEBUG find_def_from_bottom label 1276 -13:52:52,991 numba.core.ssa DEBUG replaced with: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,991 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:52,991 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:52,991 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:52,991 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:52,991 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,991 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:52,991 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,991 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:52,991 numba.core.ssa DEBUG Running -13:52:52,991 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:52,991 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:52,991 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,991 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:52,991 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:52,991 numba.core.ssa DEBUG Running -13:52:52,991 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,992 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:52,992 numba.core.ssa DEBUG Running -13:52:52,992 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,992 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:52,992 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:52,992 numba.core.ssa DEBUG Running -13:52:52,992 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:52,992 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:52,992 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,992 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:52,992 numba.core.ssa DEBUG Running -13:52:52,992 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:52,992 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:52,992 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:52,992 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:52,992 numba.core.ssa DEBUG Running -13:52:52,992 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:52,992 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:52,992 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,992 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:52,992 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:52,992 numba.core.ssa DEBUG Running -13:52:52,992 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,992 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:52,992 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:52,992 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:52,992 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,992 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:52,993 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:52,993 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:52,993 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,993 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:52,993 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:52,993 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:52,993 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:52,993 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,993 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:52,993 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:52,993 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:52,993 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:52,993 numba.core.ssa DEBUG Fix SSA violator on var grad_coeff -13:52:52,993 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:52,993 numba.core.ssa DEBUG Running -13:52:52,993 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:52,994 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:52,994 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:52,994 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:52,994 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:52,994 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:52,994 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:52,994 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:52,994 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:52,994 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:52,994 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:52,994 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:52,994 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:52,994 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:52,994 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:52,994 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:52,994 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:52,994 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:52,994 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:52,994 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:52,994 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:52,994 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:52,994 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:52,994 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:52,994 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,994 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:52,994 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:52,994 numba.core.ssa DEBUG on stmt: jump 66 -13:52:52,994 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:52,994 numba.core.ssa DEBUG Running -13:52:52,994 numba.core.ssa DEBUG on stmt: jump 68 -13:52:52,994 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:52,995 numba.core.ssa DEBUG Running -13:52:52,995 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:52,995 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:52,995 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:52,995 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:52,995 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:52,995 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:52,995 numba.core.ssa DEBUG Running -13:52:52,995 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:52,995 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:52,995 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:52,995 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:52,995 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,995 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:52,995 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:52,995 numba.core.ssa DEBUG Running -13:52:52,995 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:52,995 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:52,995 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:52,995 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:52,995 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:52,995 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,995 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:52,995 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,995 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:52,995 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:52,995 numba.core.ssa DEBUG Running -13:52:52,995 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:52,995 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:52,995 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:52,995 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,995 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:52,995 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:52,995 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:52,995 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:52,996 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:52,996 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:52,996 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:52,996 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:52,996 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:52,996 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:52,996 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:52,996 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:52,996 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:52,996 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:52,996 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:52,996 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:52,996 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:52,996 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:52,996 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:52,996 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,996 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:52,996 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:52,996 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:52,996 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:52,996 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:52,996 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:52,996 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:52,997 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,997 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:52,997 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:52,997 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:52,997 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:52,997 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:52,997 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:52,997 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:52,997 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:52,997 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:52,997 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:52,997 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:52,997 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:52,997 numba.core.ssa DEBUG on stmt: jump 744 -13:52:52,997 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:52,997 numba.core.ssa DEBUG Running -13:52:52,997 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:52,997 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:52,997 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:52,997 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,998 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:52,998 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:52,998 numba.core.ssa DEBUG Running -13:52:52,998 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:52,998 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:52,998 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:52,998 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:52,998 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:52,998 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:52,998 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,998 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,998 numba.core.ssa DEBUG first assign: grad_coeff -13:52:52,998 numba.core.ssa DEBUG replaced with: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:52,998 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:52,998 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,998 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:52,998 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:52,998 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:52,998 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,998 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv856.24 -13:52:52,998 numba.core.ssa DEBUG replaced with: grad_coeff.1 = $binop_itruediv856.24 -13:52:52,998 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,998 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:52,998 numba.core.ssa DEBUG Running -13:52:52,998 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:52,998 numba.core.ssa DEBUG replaced with: grad_coeff.2 = const(float, 0.0) -13:52:52,998 numba.core.ssa DEBUG on stmt: jump 868 -13:52:52,998 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:52,998 numba.core.ssa DEBUG Running -13:52:52,998 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:52,998 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,998 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:52,998 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:52,998 numba.core.ssa DEBUG on stmt: jump 898 -13:52:52,998 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:52,998 numba.core.ssa DEBUG Running -13:52:52,999 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:52,999 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:52,999 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:52,999 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:52,999 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:52,999 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:52,999 numba.core.ssa DEBUG Running -13:52:52,999 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:52,999 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:52,999 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:52,999 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:52,999 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,999 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:52,999 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,999 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:52,999 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:52,999 numba.core.ssa DEBUG Running -13:52:52,999 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:52,999 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:52,999 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:52,999 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:52,999 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:52,999 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:52,999 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:52,999 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:52,999 numba.core.ssa DEBUG Running -13:52:52,999 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:52,999 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,0 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,0 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,0 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,0 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,0 numba.core.ssa DEBUG Running -13:52:53,0 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:53,0 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,0 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,0 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,0 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,0 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,0 numba.core.ssa DEBUG Running -13:52:53,0 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,0 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,0 numba.core.ssa DEBUG Running -13:52:53,0 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,0 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,0 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,0 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,0 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,0 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,0 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,0 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,0 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,0 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,0 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,0 numba.core.ssa DEBUG Running -13:52:53,0 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,0 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,1 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,1 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,1 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,1 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,1 numba.core.ssa DEBUG Running -13:52:53,1 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,1 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,1 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,1 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,1 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,1 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,1 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,1 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,1 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,1 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,1 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,1 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,1 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,1 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,1 numba.core.ssa DEBUG Running -13:52:53,1 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,1 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,1 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul1390.4 * b -13:52:53,1 numba.core.ssa DEBUG replaced with: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,1 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,1 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,1 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,1 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,1 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,1 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,1 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,1 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,1 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,1 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_itruediv1458.21 -13:52:53,1 numba.core.ssa DEBUG replaced with: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,2 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,2 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,2 numba.core.ssa DEBUG Running -13:52:53,2 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,2 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,2 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,2 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,2 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,2 numba.core.ssa DEBUG Running -13:52:53,2 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,2 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,2 numba.core.ssa DEBUG Running -13:52:53,2 numba.core.ssa DEBUG on stmt: grad_coeff = const(float, 0.0) -13:52:53,2 numba.core.ssa DEBUG replaced with: grad_coeff.5 = const(float, 0.0) -13:52:53,2 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,2 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,2 numba.core.ssa DEBUG Running -13:52:53,2 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,2 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,2 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,2 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,2 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,2 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,2 numba.core.ssa DEBUG Running -13:52:53,2 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,2 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,2 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,2 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,2 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,2 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,2 numba.core.ssa DEBUG Running -13:52:53,2 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:53,2 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,2 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:53,2 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,2 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,2 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,3 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,3 numba.core.ssa DEBUG Running -13:52:53,3 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,3 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,3 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:53,3 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,3 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:53,3 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,3 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,3 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,3 numba.core.ssa DEBUG Running -13:52:53,3 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:53,3 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,3 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,3 numba.core.ssa DEBUG Running -13:52:53,3 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:53,3 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:53,3 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,3 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:53,3 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,3 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,3 numba.core.ssa DEBUG Running -13:52:53,3 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,3 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,3 numba.core.ssa DEBUG Running -13:52:53,3 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,3 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,3 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,3 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,3 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,3 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,3 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,3 numba.core.ssa DEBUG Running -13:52:53,3 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,3 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,3 numba.core.ssa DEBUG Running -13:52:53,3 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,4 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,4 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,4 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,4 numba.core.ssa DEBUG Running -13:52:53,4 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,4 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {756: [, - ], - 864: [], - 1386: [, - ], - 1480: []}) -13:52:53,4 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:53,4 numba.core.ssa DEBUG Running -13:52:53,4 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:53,4 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:53,4 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:53,4 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:53,4 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:53,4 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:53,4 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:53,4 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:53,4 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:53,4 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:53,4 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:53,4 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:53,4 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:53,4 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:53,4 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:53,4 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:53,4 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:53,4 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:53,4 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:53,4 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:53,5 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:53,5 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:53,5 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:53,5 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:53,5 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,5 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:53,5 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:53,5 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,5 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:53,5 numba.core.ssa DEBUG Running -13:52:53,5 numba.core.ssa DEBUG on stmt: jump 68 -13:52:53,5 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:53,5 numba.core.ssa DEBUG Running -13:52:53,5 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:53,5 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:53,5 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:53,5 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:53,5 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:53,5 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:53,5 numba.core.ssa DEBUG Running -13:52:53,5 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:53,5 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,5 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:53,5 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:53,5 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,5 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:53,5 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:53,5 numba.core.ssa DEBUG Running -13:52:53,5 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:53,5 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:53,5 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:53,5 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:53,5 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:53,5 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,6 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:53,6 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,6 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:53,6 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:53,6 numba.core.ssa DEBUG Running -13:52:53,6 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:53,6 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:53,6 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:53,6 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:53,6 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:53,6 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:53,6 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:53,6 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:53,6 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:53,6 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:53,6 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:53,6 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:53,6 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:53,6 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:53,6 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:53,6 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:53,6 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:53,6 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:53,6 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:53,7 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:53,7 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:53,7 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,7 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:53,7 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:53,7 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:53,7 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:53,7 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:53,7 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:53,7 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,7 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:53,7 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:53,7 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:53,7 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:53,7 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:53,7 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:53,7 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:53,7 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:53,7 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:53,8 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:53,8 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:53,8 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,8 numba.core.ssa DEBUG on stmt: jump 744 -13:52:53,8 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:53,8 numba.core.ssa DEBUG Running -13:52:53,8 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:53,8 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:53,8 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:53,8 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,8 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:53,8 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:53,8 numba.core.ssa DEBUG Running -13:52:53,8 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:53,8 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:53,8 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:53,8 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,8 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:53,8 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:53,8 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:53,8 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:53,8 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:53,9 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,9 numba.core.ssa DEBUG find_def var='grad_coeff' stmt=$binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,9 numba.core.ssa DEBUG on stmt: grad_coeff.1 = $binop_itruediv856.24 -13:52:53,9 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,9 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:53,9 numba.core.ssa DEBUG Running -13:52:53,9 numba.core.ssa DEBUG on stmt: grad_coeff.2 = const(float, 0.0) -13:52:53,9 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,9 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:53,9 numba.core.ssa DEBUG Running -13:52:53,9 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:53,9 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,9 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:53,9 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:53,9 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,9 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:53,9 numba.core.ssa DEBUG Running -13:52:53,9 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:53,9 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:53,9 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:53,9 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:53,9 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:53,9 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:53,9 numba.core.ssa DEBUG Running -13:52:53,9 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:53,9 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:53,9 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,9 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,9 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:53,9 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:53,9 numba.core.ssa DEBUG find_def var='grad_coeff' stmt=$binop_mul948.13 = grad_coeff * $binop_sub944.12 -13:52:53,9 numba.core.ssa DEBUG find_def_from_top label 900 -13:52:53,9 numba.core.ssa DEBUG idom 898 from label 900 -13:52:53,9 numba.core.ssa DEBUG find_def_from_bottom label 898 -13:52:53,9 numba.core.ssa DEBUG find_def_from_top label 898 -13:52:53,9 numba.core.ssa DEBUG idom 868 from label 898 -13:52:53,10 numba.core.ssa DEBUG find_def_from_bottom label 868 -13:52:53,10 numba.core.ssa DEBUG find_def_from_top label 868 -13:52:53,10 numba.core.ssa DEBUG insert phi node grad_coeff.6 = phi(incoming_values=[], incoming_blocks=[]) at 868 -13:52:53,10 numba.core.ssa DEBUG find_def_from_bottom label 864 -13:52:53,10 numba.core.ssa DEBUG incoming_def grad_coeff.2 = const(float, 0.0) -13:52:53,10 numba.core.ssa DEBUG find_def_from_bottom label 756 -13:52:53,10 numba.core.ssa DEBUG incoming_def grad_coeff.1 = $binop_itruediv856.24 -13:52:53,10 numba.core.ssa DEBUG replaced with: $binop_mul948.13 = grad_coeff.6 * $binop_sub944.12 -13:52:53,10 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,10 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:53,10 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,10 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:53,10 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:53,10 numba.core.ssa DEBUG Running -13:52:53,10 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:53,10 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:53,10 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,10 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,10 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,10 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:53,10 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:53,10 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,10 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,10 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:53,10 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:53,10 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:53,10 numba.core.ssa DEBUG Running -13:52:53,10 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,10 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:53,10 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,10 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,10 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,10 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,11 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,11 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,11 numba.core.ssa DEBUG Running -13:52:53,11 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:53,11 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,11 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,11 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,11 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,11 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,11 numba.core.ssa DEBUG Running -13:52:53,11 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,11 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,11 numba.core.ssa DEBUG Running -13:52:53,11 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,11 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,11 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,11 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,11 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,11 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,11 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,11 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,11 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,11 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,11 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,11 numba.core.ssa DEBUG Running -13:52:53,11 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,11 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,12 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,12 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,12 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,12 numba.core.ssa DEBUG Running -13:52:53,12 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,12 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,12 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,12 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,12 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,12 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,12 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,12 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,12 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,12 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,12 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,12 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,12 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,12 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,12 numba.core.ssa DEBUG Running -13:52:53,12 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,12 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,12 numba.core.ssa DEBUG on stmt: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,12 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,12 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,12 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,12 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,12 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,12 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,12 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,12 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,12 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,12 numba.core.ssa DEBUG find_def var='grad_coeff' stmt=$binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,13 numba.core.ssa DEBUG replaced with: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff.3, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,13 numba.core.ssa DEBUG on stmt: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,13 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,13 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,13 numba.core.ssa DEBUG Running -13:52:53,13 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,13 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,13 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,13 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,13 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,13 numba.core.ssa DEBUG Running -13:52:53,13 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,13 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,13 numba.core.ssa DEBUG Running -13:52:53,13 numba.core.ssa DEBUG on stmt: grad_coeff.5 = const(float, 0.0) -13:52:53,13 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,13 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,13 numba.core.ssa DEBUG Running -13:52:53,13 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,13 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,13 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,13 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,13 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,13 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,13 numba.core.ssa DEBUG Running -13:52:53,13 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,13 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,13 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,13 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,13 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,13 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,13 numba.core.ssa DEBUG Running -13:52:53,13 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:53,13 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,13 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff > $const1520.5 -13:52:53,13 numba.core.ssa DEBUG find_def var='grad_coeff' stmt=$1522compare_op.6 = grad_coeff > $const1520.5 -13:52:53,14 numba.core.ssa DEBUG find_def_from_top label 1516 -13:52:53,14 numba.core.ssa DEBUG idom 1514 from label 1516 -13:52:53,14 numba.core.ssa DEBUG find_def_from_bottom label 1514 -13:52:53,14 numba.core.ssa DEBUG find_def_from_top label 1514 -13:52:53,14 numba.core.ssa DEBUG idom 1484 from label 1514 -13:52:53,14 numba.core.ssa DEBUG find_def_from_bottom label 1484 -13:52:53,14 numba.core.ssa DEBUG find_def_from_top label 1484 -13:52:53,14 numba.core.ssa DEBUG insert phi node grad_coeff.7 = phi(incoming_values=[], incoming_blocks=[]) at 1484 -13:52:53,14 numba.core.ssa DEBUG find_def_from_bottom label 1480 -13:52:53,14 numba.core.ssa DEBUG incoming_def grad_coeff.5 = const(float, 0.0) -13:52:53,14 numba.core.ssa DEBUG find_def_from_bottom label 1386 -13:52:53,14 numba.core.ssa DEBUG incoming_def grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,14 numba.core.ssa DEBUG replaced with: $1522compare_op.6 = grad_coeff.7 > $const1520.5 -13:52:53,14 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,14 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,14 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,14 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,14 numba.core.ssa DEBUG Running -13:52:53,14 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,14 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,14 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:53,14 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,14 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:53,14 numba.core.ssa DEBUG find_def var='grad_coeff' stmt=$binop_mul1576.13 = grad_coeff * $binop_sub1572.12 -13:52:53,14 numba.core.ssa DEBUG find_def_from_top label 1530 -13:52:53,14 numba.core.ssa DEBUG idom 1516 from label 1530 -13:52:53,14 numba.core.ssa DEBUG find_def_from_bottom label 1516 -13:52:53,14 numba.core.ssa DEBUG find_def_from_top label 1516 -13:52:53,14 numba.core.ssa DEBUG idom 1514 from label 1516 -13:52:53,14 numba.core.ssa DEBUG find_def_from_bottom label 1514 -13:52:53,14 numba.core.ssa DEBUG find_def_from_top label 1514 -13:52:53,14 numba.core.ssa DEBUG idom 1484 from label 1514 -13:52:53,14 numba.core.ssa DEBUG find_def_from_bottom label 1484 -13:52:53,14 numba.core.ssa DEBUG replaced with: $binop_mul1576.13 = grad_coeff.7 * $binop_sub1572.12 -13:52:53,14 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,14 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,15 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:53,15 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,15 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:53,15 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:53,15 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,15 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:53,15 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,15 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,15 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,15 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,15 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,15 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,15 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,15 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,15 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,15 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,15 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,15 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,15 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,15 numba.core.ssa DEBUG Fix SSA violator on var d -13:52:53,15 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:53,15 numba.core.ssa DEBUG Running -13:52:53,16 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:53,16 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:53,16 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:53,16 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:53,16 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:53,16 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:53,16 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:53,16 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:53,16 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:53,16 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:53,16 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:53,16 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:53,16 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:53,16 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:53,16 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:53,16 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:53,16 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:53,16 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:53,16 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:53,16 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:53,16 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:53,16 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:53,16 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:53,16 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:53,16 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,16 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:53,16 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:53,16 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,16 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:53,16 numba.core.ssa DEBUG Running -13:52:53,16 numba.core.ssa DEBUG on stmt: jump 68 -13:52:53,17 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:53,17 numba.core.ssa DEBUG Running -13:52:53,17 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:53,17 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:53,17 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:53,17 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:53,17 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:53,17 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:53,17 numba.core.ssa DEBUG Running -13:52:53,17 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:53,17 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,17 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:53,17 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:53,17 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,17 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:53,17 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:53,17 numba.core.ssa DEBUG Running -13:52:53,17 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:53,17 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:53,17 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:53,17 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:53,17 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:53,17 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,17 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:53,17 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,17 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:53,17 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:53,17 numba.core.ssa DEBUG Running -13:52:53,17 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:53,17 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:53,17 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:53,17 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,17 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:53,17 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:53,17 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:53,18 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:53,18 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:53,18 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:53,18 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:53,18 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:53,18 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:53,18 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:53,18 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:53,18 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:53,18 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:53,18 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:53,18 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:53,18 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:53,18 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:53,18 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:53,18 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,18 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:53,18 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:53,18 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:53,18 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:53,18 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:53,18 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:53,19 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:53,19 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,19 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:53,19 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:53,19 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:53,19 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:53,19 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:53,19 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:53,19 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:53,19 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:53,19 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:53,19 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:53,19 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:53,19 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,19 numba.core.ssa DEBUG on stmt: jump 744 -13:52:53,19 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:53,19 numba.core.ssa DEBUG Running -13:52:53,19 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:53,19 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:53,19 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:53,20 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,20 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:53,20 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:53,20 numba.core.ssa DEBUG Running -13:52:53,20 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:53,20 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:53,20 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:53,20 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:53,20 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:53,20 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:53,20 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,20 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:53,20 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:53,20 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,20 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:53,20 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:53,20 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:53,20 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,20 numba.core.ssa DEBUG on stmt: grad_coeff.1 = $binop_itruediv856.24 -13:52:53,20 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,20 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:53,20 numba.core.ssa DEBUG Running -13:52:53,20 numba.core.ssa DEBUG on stmt: grad_coeff.2 = const(float, 0.0) -13:52:53,20 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,20 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:53,20 numba.core.ssa DEBUG Running -13:52:53,20 numba.core.ssa DEBUG on stmt: grad_coeff.6 = phi(incoming_values=[Var(grad_coeff.2, layouts.py:140), Var(grad_coeff.1, layouts.py:138)], incoming_blocks=[864, 756]) -13:52:53,20 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:53,20 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,20 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:53,20 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:53,20 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,20 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:53,20 numba.core.ssa DEBUG Running -13:52:53,20 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:53,21 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:53,21 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:53,21 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:53,21 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:53,21 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:53,21 numba.core.ssa DEBUG Running -13:52:53,21 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:53,21 numba.core.ssa DEBUG first assign: d -13:52:53,21 numba.core.ssa DEBUG replaced with: d = $phi900.2 -13:52:53,21 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:53,21 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,21 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff.6 * $binop_sub944.12 -13:52:53,21 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,21 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:53,21 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,21 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:53,21 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:53,21 numba.core.ssa DEBUG Running -13:52:53,21 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:53,21 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,21 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,21 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:53,21 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,21 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:53,21 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:53,21 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:53,21 numba.core.ssa DEBUG Running -13:52:53,21 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:53,21 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,22 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,22 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,22 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,22 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,22 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,22 numba.core.ssa DEBUG Running -13:52:53,22 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,22 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:53,22 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,22 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,22 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,22 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,22 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,22 numba.core.ssa DEBUG Running -13:52:53,22 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,22 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,22 numba.core.ssa DEBUG Running -13:52:53,22 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,22 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,22 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,22 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,22 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,22 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,22 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,22 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,22 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,22 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,22 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,22 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,22 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,23 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,23 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,23 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,23 numba.core.ssa DEBUG Running -13:52:53,23 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,23 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,23 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,23 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,23 numba.core.ssa DEBUG Running -13:52:53,23 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,23 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,23 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,23 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,23 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,23 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,23 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,23 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,23 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,23 numba.core.ssa DEBUG Running -13:52:53,23 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,23 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,23 numba.core.ssa DEBUG on stmt: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,23 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,23 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,23 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,23 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,23 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,23 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,24 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,24 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,24 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff.3, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,24 numba.core.ssa DEBUG on stmt: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,24 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,24 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,24 numba.core.ssa DEBUG Running -13:52:53,24 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,24 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,24 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,24 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,24 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,24 numba.core.ssa DEBUG Running -13:52:53,24 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,24 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,24 numba.core.ssa DEBUG Running -13:52:53,24 numba.core.ssa DEBUG on stmt: grad_coeff.5 = const(float, 0.0) -13:52:53,24 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,24 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,24 numba.core.ssa DEBUG Running -13:52:53,24 numba.core.ssa DEBUG on stmt: grad_coeff.7 = phi(incoming_values=[Var(grad_coeff.5, layouts.py:175), Var(grad_coeff.4, layouts.py:169)], incoming_blocks=[1480, 1386]) -13:52:53,24 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,24 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,24 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,24 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,24 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,24 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,24 numba.core.ssa DEBUG Running -13:52:53,24 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,24 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,24 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,24 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,24 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,24 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,24 numba.core.ssa DEBUG Running -13:52:53,24 numba.core.ssa DEBUG on stmt: d = $phi1516.3 -13:52:53,24 numba.core.ssa DEBUG replaced with: d.1 = $phi1516.3 -13:52:53,25 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,25 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff.7 > $const1520.5 -13:52:53,25 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,25 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,25 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,25 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,25 numba.core.ssa DEBUG Running -13:52:53,25 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,25 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,25 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:53,25 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,25 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff.7 * $binop_sub1572.12 -13:52:53,25 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,25 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,25 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,25 numba.core.ssa DEBUG Running -13:52:53,25 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:53,25 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,25 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,25 numba.core.ssa DEBUG Running -13:52:53,25 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:53,25 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:53,25 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,25 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:53,25 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,25 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,25 numba.core.ssa DEBUG Running -13:52:53,25 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,25 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,25 numba.core.ssa DEBUG Running -13:52:53,25 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,25 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,25 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,25 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,25 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,25 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,26 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,26 numba.core.ssa DEBUG Running -13:52:53,26 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,26 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,26 numba.core.ssa DEBUG Running -13:52:53,26 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,26 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,26 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,26 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,26 numba.core.ssa DEBUG Running -13:52:53,26 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,26 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {900: [], - 1516: []}) -13:52:53,26 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:53,26 numba.core.ssa DEBUG Running -13:52:53,26 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:53,26 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:53,26 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:53,26 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:53,26 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:53,26 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:53,26 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:53,26 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:53,26 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:53,26 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:53,26 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:53,26 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:53,26 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:53,26 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:53,26 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:53,26 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:53,26 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:53,26 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:53,26 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:53,26 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:53,26 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:53,26 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:53,26 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:53,26 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:53,27 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:53,27 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:53,27 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:53,27 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:53,27 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:53,27 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:53,27 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:53,27 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:53,27 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,27 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:53,27 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:53,27 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:53,27 numba.core.ssa DEBUG Running -13:52:53,27 numba.core.ssa DEBUG on stmt: jump 68 -13:52:53,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:53,27 numba.core.ssa DEBUG Running -13:52:53,27 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:53,27 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:53,27 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:53,27 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:53,27 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:53,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:53,27 numba.core.ssa DEBUG Running -13:52:53,27 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:53,27 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,27 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:53,27 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:53,27 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,27 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:53,27 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:53,27 numba.core.ssa DEBUG Running -13:52:53,27 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:53,27 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:53,27 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:53,28 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:53,28 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:53,28 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,28 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:53,28 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,28 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:53,28 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:53,28 numba.core.ssa DEBUG Running -13:52:53,28 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:53,28 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:53,28 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:53,28 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,28 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:53,28 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:53,28 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:53,28 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:53,28 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:53,28 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:53,28 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:53,28 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,28 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:53,28 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:53,28 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:53,28 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,28 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:53,28 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:53,28 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:53,28 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:53,28 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:53,28 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:53,28 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:53,28 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:53,28 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:53,29 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:53,29 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:53,29 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,29 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:53,29 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:53,29 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:53,29 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:53,29 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:53,29 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:53,29 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,29 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:53,29 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:53,29 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:53,29 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:53,29 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:53,29 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:53,29 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:53,29 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:53,29 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:53,30 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:53,30 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:53,30 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,30 numba.core.ssa DEBUG on stmt: jump 744 -13:52:53,30 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:53,30 numba.core.ssa DEBUG Running -13:52:53,30 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:53,30 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:53,30 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:53,30 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,30 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:53,30 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:53,30 numba.core.ssa DEBUG Running -13:52:53,30 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:53,30 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:53,30 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:53,30 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,30 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:53,30 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:53,30 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,30 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:53,31 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:53,31 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:53,31 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,31 numba.core.ssa DEBUG on stmt: grad_coeff.1 = $binop_itruediv856.24 -13:52:53,31 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,31 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:53,31 numba.core.ssa DEBUG Running -13:52:53,31 numba.core.ssa DEBUG on stmt: grad_coeff.2 = const(float, 0.0) -13:52:53,31 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,31 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:53,31 numba.core.ssa DEBUG Running -13:52:53,31 numba.core.ssa DEBUG on stmt: grad_coeff.6 = phi(incoming_values=[Var(grad_coeff.2, layouts.py:140), Var(grad_coeff.1, layouts.py:138)], incoming_blocks=[864, 756]) -13:52:53,31 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:53,31 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,31 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:53,31 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:53,31 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,31 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:53,31 numba.core.ssa DEBUG Running -13:52:53,31 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:53,31 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:53,31 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:53,31 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:53,31 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:53,31 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:53,31 numba.core.ssa DEBUG Running -13:52:53,31 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:53,31 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:53,31 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,31 numba.core.ssa DEBUG find_def var='d' stmt=$920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,31 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,31 numba.core.ssa DEBUG find_def var='d' stmt=$934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,31 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:53,31 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff.6 * $binop_sub944.12 -13:52:53,32 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,32 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:53,32 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,32 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:53,32 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:53,32 numba.core.ssa DEBUG Running -13:52:53,32 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:53,32 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:53,32 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,32 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,32 numba.core.ssa DEBUG find_def var='d' stmt=$998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,32 numba.core.ssa DEBUG find_def_from_top label 972 -13:52:53,32 numba.core.ssa DEBUG idom 900 from label 972 -13:52:53,32 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,32 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,32 numba.core.ssa DEBUG find_def var='d' stmt=$1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,32 numba.core.ssa DEBUG find_def_from_top label 972 -13:52:53,32 numba.core.ssa DEBUG idom 900 from label 972 -13:52:53,32 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,32 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:53,32 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:53,32 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,32 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,32 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:53,32 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:53,32 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:53,32 numba.core.ssa DEBUG Running -13:52:53,32 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,32 numba.core.ssa DEBUG find_def var='d' stmt=$1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,32 numba.core.ssa DEBUG find_def_from_top label 1050 -13:52:53,32 numba.core.ssa DEBUG idom 900 from label 1050 -13:52:53,32 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,32 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:53,32 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,32 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,33 numba.core.ssa DEBUG find_def var='d' stmt=current[d] = $binop_iadd1076.8 -13:52:53,33 numba.core.ssa DEBUG find_def_from_top label 1050 -13:52:53,33 numba.core.ssa DEBUG idom 900 from label 1050 -13:52:53,33 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,33 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,33 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,33 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,33 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,33 numba.core.ssa DEBUG Running -13:52:53,33 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,33 numba.core.ssa DEBUG find_def var='d' stmt=$1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,33 numba.core.ssa DEBUG find_def_from_top label 1092 -13:52:53,33 numba.core.ssa DEBUG idom 1050 from label 1092 -13:52:53,33 numba.core.ssa DEBUG find_def_from_bottom label 1050 -13:52:53,33 numba.core.ssa DEBUG find_def_from_top label 1050 -13:52:53,33 numba.core.ssa DEBUG idom 900 from label 1050 -13:52:53,33 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,33 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:53,33 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,33 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,33 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,33 numba.core.ssa DEBUG find_def var='d' stmt=other[d] = $binop_iadd1120.9 -13:52:53,33 numba.core.ssa DEBUG find_def_from_top label 1092 -13:52:53,33 numba.core.ssa DEBUG idom 1050 from label 1092 -13:52:53,33 numba.core.ssa DEBUG find_def_from_bottom label 1050 -13:52:53,33 numba.core.ssa DEBUG find_def_from_top label 1050 -13:52:53,33 numba.core.ssa DEBUG idom 900 from label 1050 -13:52:53,33 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,33 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,33 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,33 numba.core.ssa DEBUG Running -13:52:53,33 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,33 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,33 numba.core.ssa DEBUG Running -13:52:53,33 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,33 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,33 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,34 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,34 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,34 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,34 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,34 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,34 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,34 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,34 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,34 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,34 numba.core.ssa DEBUG Running -13:52:53,34 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,34 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,34 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,34 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,34 numba.core.ssa DEBUG Running -13:52:53,34 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,34 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,34 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,34 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,34 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,34 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,34 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,34 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,35 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,35 numba.core.ssa DEBUG Running -13:52:53,35 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,35 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,35 numba.core.ssa DEBUG on stmt: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,35 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,35 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,35 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,35 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,35 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,35 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,35 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,35 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,35 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff.3, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,35 numba.core.ssa DEBUG on stmt: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,35 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,35 numba.core.ssa DEBUG Running -13:52:53,35 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,35 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,35 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,35 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,35 numba.core.ssa DEBUG Running -13:52:53,35 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,35 numba.core.ssa DEBUG Running -13:52:53,35 numba.core.ssa DEBUG on stmt: grad_coeff.5 = const(float, 0.0) -13:52:53,35 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,35 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,35 numba.core.ssa DEBUG Running -13:52:53,35 numba.core.ssa DEBUG on stmt: grad_coeff.7 = phi(incoming_values=[Var(grad_coeff.5, layouts.py:175), Var(grad_coeff.4, layouts.py:169)], incoming_blocks=[1480, 1386]) -13:52:53,35 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,35 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,36 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,36 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,36 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,36 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,36 numba.core.ssa DEBUG Running -13:52:53,36 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,36 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,36 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,36 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,36 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,36 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,36 numba.core.ssa DEBUG Running -13:52:53,36 numba.core.ssa DEBUG on stmt: d.1 = $phi1516.3 -13:52:53,36 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,36 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff.7 > $const1520.5 -13:52:53,36 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,36 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,36 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,36 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,36 numba.core.ssa DEBUG Running -13:52:53,36 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,36 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,36 numba.core.ssa DEBUG find_def var='d' stmt=$1548binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,36 numba.core.ssa DEBUG find_def_from_top label 1530 -13:52:53,36 numba.core.ssa DEBUG idom 1516 from label 1530 -13:52:53,36 numba.core.ssa DEBUG find_def_from_bottom label 1516 -13:52:53,36 numba.core.ssa DEBUG replaced with: $1548binary_subscr.8 = getitem(value=current, index=d.1, fn=) -13:52:53,36 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:53,36 numba.core.ssa DEBUG find_def var='d' stmt=$1562binary_subscr.11 = getitem(value=other.1, index=d, fn=) -13:52:53,36 numba.core.ssa DEBUG find_def_from_top label 1530 -13:52:53,36 numba.core.ssa DEBUG idom 1516 from label 1530 -13:52:53,36 numba.core.ssa DEBUG find_def_from_bottom label 1516 -13:52:53,36 numba.core.ssa DEBUG replaced with: $1562binary_subscr.11 = getitem(value=other.1, index=d.1, fn=) -13:52:53,36 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,36 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff.7 * $binop_sub1572.12 -13:52:53,37 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,37 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,37 numba.core.ssa DEBUG Running -13:52:53,37 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:53,37 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,37 numba.core.ssa DEBUG Running -13:52:53,37 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:53,37 numba.core.ssa DEBUG find_def var='d' stmt=$1610binary_subscr.5 = getitem(value=current, index=d, fn=) -13:52:53,37 numba.core.ssa DEBUG find_def_from_top label 1602 -13:52:53,37 numba.core.ssa DEBUG idom 1516 from label 1602 -13:52:53,37 numba.core.ssa DEBUG find_def_from_bottom label 1516 -13:52:53,37 numba.core.ssa DEBUG replaced with: $1610binary_subscr.5 = getitem(value=current, index=d.1, fn=) -13:52:53,37 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:53,37 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,37 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1628.9 -13:52:53,37 numba.core.ssa DEBUG find_def var='d' stmt=current[d] = $binop_iadd1628.9 -13:52:53,37 numba.core.ssa DEBUG find_def_from_top label 1602 -13:52:53,37 numba.core.ssa DEBUG idom 1516 from label 1602 -13:52:53,37 numba.core.ssa DEBUG find_def_from_bottom label 1516 -13:52:53,37 numba.core.ssa DEBUG replaced with: current[d.1] = $binop_iadd1628.9 -13:52:53,37 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,37 numba.core.ssa DEBUG Running -13:52:53,37 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,37 numba.core.ssa DEBUG Running -13:52:53,37 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,37 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,37 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,37 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,37 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,37 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,37 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,38 numba.core.ssa DEBUG Running -13:52:53,38 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,38 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,38 numba.core.ssa DEBUG Running -13:52:53,38 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,38 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,38 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,38 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,38 numba.core.ssa DEBUG Running -13:52:53,38 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,38 numba.core.ssa DEBUG Fix SSA violator on var grad_d -13:52:53,38 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:53,38 numba.core.ssa DEBUG Running -13:52:53,38 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:53,38 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:53,38 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:53,38 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:53,38 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:53,38 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:53,38 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:53,38 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:53,38 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:53,38 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:53,38 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:53,38 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:53,38 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:53,38 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:53,38 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:53,38 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:53,38 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:53,38 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:53,38 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:53,38 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:53,38 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:53,39 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:53,39 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:53,39 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:53,39 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:53,39 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:53,39 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:53,39 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:53,39 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:53,39 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:53,39 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:53,39 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:53,39 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,39 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:53,39 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:53,39 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:53,39 numba.core.ssa DEBUG Running -13:52:53,39 numba.core.ssa DEBUG on stmt: jump 68 -13:52:53,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:53,39 numba.core.ssa DEBUG Running -13:52:53,39 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:53,39 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:53,39 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:53,39 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:53,39 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:53,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:53,39 numba.core.ssa DEBUG Running -13:52:53,39 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:53,39 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,39 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:53,39 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:53,39 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,39 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:53,39 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:53,39 numba.core.ssa DEBUG Running -13:52:53,39 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:53,40 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:53,40 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:53,40 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:53,40 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:53,40 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,40 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:53,40 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,40 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:53,40 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:53,40 numba.core.ssa DEBUG Running -13:52:53,40 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:53,40 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:53,40 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:53,40 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,40 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:53,40 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:53,40 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:53,40 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:53,40 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:53,40 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:53,40 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:53,40 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,40 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:53,40 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:53,40 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:53,40 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,40 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:53,40 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:53,40 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:53,40 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:53,40 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:53,40 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:53,40 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:53,41 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:53,41 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:53,41 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:53,41 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:53,41 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,41 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:53,41 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:53,41 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:53,41 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:53,41 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:53,41 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:53,41 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,41 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:53,41 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:53,41 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:53,41 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:53,41 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:53,41 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:53,41 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:53,41 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,41 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:53,42 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:53,42 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:53,42 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,42 numba.core.ssa DEBUG on stmt: jump 744 -13:52:53,42 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:53,42 numba.core.ssa DEBUG Running -13:52:53,42 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:53,42 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:53,42 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:53,42 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,42 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:53,42 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:53,42 numba.core.ssa DEBUG Running -13:52:53,42 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:53,42 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:53,42 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:53,42 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,42 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:53,42 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:53,42 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:53,42 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:53,42 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:53,43 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,43 numba.core.ssa DEBUG on stmt: grad_coeff.1 = $binop_itruediv856.24 -13:52:53,43 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,43 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:53,43 numba.core.ssa DEBUG Running -13:52:53,43 numba.core.ssa DEBUG on stmt: grad_coeff.2 = const(float, 0.0) -13:52:53,43 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,43 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:53,43 numba.core.ssa DEBUG Running -13:52:53,43 numba.core.ssa DEBUG on stmt: grad_coeff.6 = phi(incoming_values=[Var(grad_coeff.2, layouts.py:140), Var(grad_coeff.1, layouts.py:138)], incoming_blocks=[864, 756]) -13:52:53,43 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:53,43 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,43 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:53,43 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:53,43 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,43 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:53,43 numba.core.ssa DEBUG Running -13:52:53,43 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:53,43 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:53,43 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:53,43 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:53,43 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:53,43 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:53,43 numba.core.ssa DEBUG Running -13:52:53,43 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:53,43 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:53,43 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,43 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,43 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:53,43 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff.6 * $binop_sub944.12 -13:52:53,43 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,43 numba.core.ssa DEBUG first assign: grad_d -13:52:53,43 numba.core.ssa DEBUG replaced with: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,43 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:53,43 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,44 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:53,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:53,44 numba.core.ssa DEBUG Running -13:52:53,44 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:53,44 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,44 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,44 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:53,44 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,44 numba.core.ssa DEBUG on stmt: grad_d = $binop_iadd1044.17 -13:52:53,44 numba.core.ssa DEBUG replaced with: grad_d.1 = $binop_iadd1044.17 -13:52:53,44 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:53,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:53,44 numba.core.ssa DEBUG Running -13:52:53,44 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,44 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,44 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,44 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,44 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,44 numba.core.ssa DEBUG Running -13:52:53,44 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,44 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,44 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,44 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,44 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,44 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,44 numba.core.ssa DEBUG Running -13:52:53,45 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,45 numba.core.ssa DEBUG Running -13:52:53,45 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,45 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,45 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,45 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,45 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,45 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,45 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,45 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,45 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,45 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,45 numba.core.ssa DEBUG Running -13:52:53,45 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,45 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,45 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,45 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,45 numba.core.ssa DEBUG Running -13:52:53,45 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,45 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,45 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,45 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,45 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,45 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,46 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,46 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,46 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,46 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,46 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,46 numba.core.ssa DEBUG Running -13:52:53,46 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,46 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,46 numba.core.ssa DEBUG on stmt: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,46 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,46 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,46 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,46 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,46 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,46 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,46 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,46 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,46 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff.3, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,46 numba.core.ssa DEBUG on stmt: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,46 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,46 numba.core.ssa DEBUG Running -13:52:53,46 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,46 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,46 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,46 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,46 numba.core.ssa DEBUG Running -13:52:53,46 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,46 numba.core.ssa DEBUG Running -13:52:53,46 numba.core.ssa DEBUG on stmt: grad_coeff.5 = const(float, 0.0) -13:52:53,46 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,46 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,46 numba.core.ssa DEBUG Running -13:52:53,47 numba.core.ssa DEBUG on stmt: grad_coeff.7 = phi(incoming_values=[Var(grad_coeff.5, layouts.py:175), Var(grad_coeff.4, layouts.py:169)], incoming_blocks=[1480, 1386]) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,47 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,47 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,47 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,47 numba.core.ssa DEBUG Running -13:52:53,47 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,47 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,47 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,47 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,47 numba.core.ssa DEBUG Running -13:52:53,47 numba.core.ssa DEBUG on stmt: d.1 = $phi1516.3 -13:52:53,47 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff.7 > $const1520.5 -13:52:53,47 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,47 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,47 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,47 numba.core.ssa DEBUG Running -13:52:53,47 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d.1, fn=) -13:52:53,47 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d.1, fn=) -13:52:53,47 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,47 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff.7 * $binop_sub1572.12 -13:52:53,47 numba.core.ssa DEBUG on stmt: grad_d = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,47 numba.core.ssa DEBUG replaced with: grad_d.2 = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,47 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,47 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,48 numba.core.ssa DEBUG Running -13:52:53,48 numba.core.ssa DEBUG on stmt: grad_d = const(int, 0) -13:52:53,48 numba.core.ssa DEBUG replaced with: grad_d.3 = const(int, 0) -13:52:53,48 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,48 numba.core.ssa DEBUG Running -13:52:53,48 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d.1, fn=) -13:52:53,48 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:53,48 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,48 numba.core.ssa DEBUG on stmt: current[d.1] = $binop_iadd1628.9 -13:52:53,48 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,48 numba.core.ssa DEBUG Running -13:52:53,48 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,48 numba.core.ssa DEBUG Running -13:52:53,48 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,48 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,48 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,48 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,48 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,48 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,48 numba.core.ssa DEBUG Running -13:52:53,48 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,48 numba.core.ssa DEBUG Running -13:52:53,48 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,48 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,48 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,48 numba.core.ssa DEBUG Running -13:52:53,48 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,48 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {900: [], - 972: [], - 1530: [], - 1598: []}) -13:52:53,48 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:53,49 numba.core.ssa DEBUG Running -13:52:53,49 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:53,49 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:53,49 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:53,49 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:53,49 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:53,49 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:53,49 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:53,49 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:53,49 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:53,49 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:53,49 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:53,49 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:53,49 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:53,49 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:53,49 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:53,49 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:53,49 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:53,49 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:53,49 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:53,49 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:53,49 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:53,49 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:53,49 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:53,49 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:53,49 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,49 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:53,49 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:53,49 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,49 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:53,50 numba.core.ssa DEBUG Running -13:52:53,50 numba.core.ssa DEBUG on stmt: jump 68 -13:52:53,50 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:53,50 numba.core.ssa DEBUG Running -13:52:53,50 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:53,50 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:53,50 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:53,50 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:53,50 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:53,50 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:53,50 numba.core.ssa DEBUG Running -13:52:53,50 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:53,50 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,50 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:53,50 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:53,50 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,50 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:53,50 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:53,50 numba.core.ssa DEBUG Running -13:52:53,50 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:53,50 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:53,50 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:53,50 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:53,50 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:53,50 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,50 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:53,50 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,50 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:53,50 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:53,50 numba.core.ssa DEBUG Running -13:52:53,50 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:53,50 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:53,50 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:53,50 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,50 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:53,51 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:53,51 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:53,51 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:53,51 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:53,51 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:53,51 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:53,51 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:53,51 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:53,51 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:53,51 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:53,51 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:53,51 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:53,51 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:53,51 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:53,51 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:53,51 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:53,51 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,51 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:53,51 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:53,51 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:53,51 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:53,51 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:53,52 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:53,52 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:53,52 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,52 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:53,52 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:53,52 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:53,52 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:53,52 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:53,52 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:53,52 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:53,52 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:53,52 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:53,52 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:53,52 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:53,52 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,52 numba.core.ssa DEBUG on stmt: jump 744 -13:52:53,53 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:53,53 numba.core.ssa DEBUG Running -13:52:53,53 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:53,53 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:53,53 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:53,53 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,53 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:53,53 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:53,53 numba.core.ssa DEBUG Running -13:52:53,53 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:53,53 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:53,53 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:53,53 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:53,53 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:53,53 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:53,53 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,53 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:53,53 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:53,53 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,53 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:53,53 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:53,53 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:53,53 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,53 numba.core.ssa DEBUG on stmt: grad_coeff.1 = $binop_itruediv856.24 -13:52:53,53 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,53 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:53,53 numba.core.ssa DEBUG Running -13:52:53,53 numba.core.ssa DEBUG on stmt: grad_coeff.2 = const(float, 0.0) -13:52:53,53 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,53 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:53,53 numba.core.ssa DEBUG Running -13:52:53,53 numba.core.ssa DEBUG on stmt: grad_coeff.6 = phi(incoming_values=[Var(grad_coeff.2, layouts.py:140), Var(grad_coeff.1, layouts.py:138)], incoming_blocks=[864, 756]) -13:52:53,53 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:53,53 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,54 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:53,54 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:53,54 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,54 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:53,54 numba.core.ssa DEBUG Running -13:52:53,54 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:53,54 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:53,54 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:53,54 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:53,54 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:53,54 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:53,54 numba.core.ssa DEBUG Running -13:52:53,54 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:53,54 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:53,54 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,54 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,54 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:53,54 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff.6 * $binop_sub944.12 -13:52:53,54 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,54 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:53,54 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,54 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:53,54 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:53,54 numba.core.ssa DEBUG Running -13:52:53,54 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:53,54 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:53,54 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,54 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,54 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,54 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:53,54 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:53,54 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,54 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,54 numba.core.ssa DEBUG find_def var='grad_d' stmt=$binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,55 numba.core.ssa DEBUG find_def_from_top label 972 -13:52:53,55 numba.core.ssa DEBUG idom 900 from label 972 -13:52:53,55 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,55 numba.core.ssa DEBUG on stmt: grad_d.1 = $binop_iadd1044.17 -13:52:53,55 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:53,55 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:53,55 numba.core.ssa DEBUG Running -13:52:53,55 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,55 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d * alpha -13:52:53,55 numba.core.ssa DEBUG find_def var='grad_d' stmt=$binop_mul1072.7 = grad_d * alpha -13:52:53,55 numba.core.ssa DEBUG find_def_from_top label 1050 -13:52:53,55 numba.core.ssa DEBUG insert phi node grad_d.4 = phi(incoming_values=[], incoming_blocks=[]) at 1050 -13:52:53,55 numba.core.ssa DEBUG find_def_from_bottom label 972 -13:52:53,55 numba.core.ssa DEBUG incoming_def grad_d.1 = $binop_iadd1044.17 -13:52:53,55 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,55 numba.core.ssa DEBUG incoming_def grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,55 numba.core.ssa DEBUG replaced with: $binop_mul1072.7 = grad_d.4 * alpha -13:52:53,55 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,55 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,55 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,55 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,55 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,55 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,55 numba.core.ssa DEBUG Running -13:52:53,55 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,55 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:53,55 numba.core.ssa DEBUG find_def var='grad_d' stmt=$1112unary_negative.6 = unary(fn=, value=grad_d) -13:52:53,55 numba.core.ssa DEBUG find_def_from_top label 1092 -13:52:53,55 numba.core.ssa DEBUG idom 1050 from label 1092 -13:52:53,55 numba.core.ssa DEBUG find_def_from_bottom label 1050 -13:52:53,55 numba.core.ssa DEBUG replaced with: $1112unary_negative.6 = unary(fn=, value=grad_d.4) -13:52:53,55 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,55 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,56 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,56 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,56 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,56 numba.core.ssa DEBUG Running -13:52:53,56 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,56 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,56 numba.core.ssa DEBUG Running -13:52:53,56 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,56 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,56 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,56 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,56 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,56 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,56 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,56 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,56 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,56 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,56 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,56 numba.core.ssa DEBUG Running -13:52:53,56 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,56 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,56 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,56 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,56 numba.core.ssa DEBUG Running -13:52:53,56 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,56 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,56 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,57 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,57 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,57 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,57 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,57 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,57 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,57 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,57 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,57 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,57 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,57 numba.core.ssa DEBUG Running -13:52:53,57 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,57 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,57 numba.core.ssa DEBUG on stmt: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,57 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,57 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,57 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,57 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,57 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,57 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,57 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,57 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,57 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff.3, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,57 numba.core.ssa DEBUG on stmt: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,57 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,57 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,57 numba.core.ssa DEBUG Running -13:52:53,57 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,57 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,57 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,57 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,57 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,57 numba.core.ssa DEBUG Running -13:52:53,58 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,58 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,58 numba.core.ssa DEBUG Running -13:52:53,58 numba.core.ssa DEBUG on stmt: grad_coeff.5 = const(float, 0.0) -13:52:53,58 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,58 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,58 numba.core.ssa DEBUG Running -13:52:53,58 numba.core.ssa DEBUG on stmt: grad_coeff.7 = phi(incoming_values=[Var(grad_coeff.5, layouts.py:175), Var(grad_coeff.4, layouts.py:169)], incoming_blocks=[1480, 1386]) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,58 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,58 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,58 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,58 numba.core.ssa DEBUG Running -13:52:53,58 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,58 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,58 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,58 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,58 numba.core.ssa DEBUG Running -13:52:53,58 numba.core.ssa DEBUG on stmt: d.1 = $phi1516.3 -13:52:53,58 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff.7 > $const1520.5 -13:52:53,58 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,58 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,58 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,58 numba.core.ssa DEBUG Running -13:52:53,58 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d.1, fn=) -13:52:53,58 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d.1, fn=) -13:52:53,58 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,58 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff.7 * $binop_sub1572.12 -13:52:53,59 numba.core.ssa DEBUG on stmt: grad_d.2 = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,59 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,59 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,59 numba.core.ssa DEBUG Running -13:52:53,59 numba.core.ssa DEBUG on stmt: grad_d.3 = const(int, 0) -13:52:53,59 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,59 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,59 numba.core.ssa DEBUG Running -13:52:53,59 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d.1, fn=) -13:52:53,59 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d * alpha -13:52:53,59 numba.core.ssa DEBUG find_def var='grad_d' stmt=$binop_mul1624.8 = grad_d * alpha -13:52:53,59 numba.core.ssa DEBUG find_def_from_top label 1602 -13:52:53,59 numba.core.ssa DEBUG insert phi node grad_d.5 = phi(incoming_values=[], incoming_blocks=[]) at 1602 -13:52:53,59 numba.core.ssa DEBUG find_def_from_bottom label 1530 -13:52:53,59 numba.core.ssa DEBUG incoming_def grad_d.2 = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,59 numba.core.ssa DEBUG find_def_from_bottom label 1598 -13:52:53,59 numba.core.ssa DEBUG incoming_def grad_d.3 = const(int, 0) -13:52:53,59 numba.core.ssa DEBUG replaced with: $binop_mul1624.8 = grad_d.5 * alpha -13:52:53,59 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,59 numba.core.ssa DEBUG on stmt: current[d.1] = $binop_iadd1628.9 -13:52:53,59 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,59 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,59 numba.core.ssa DEBUG Running -13:52:53,59 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,59 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,59 numba.core.ssa DEBUG Running -13:52:53,59 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,59 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,59 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,59 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,59 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,59 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,59 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,59 numba.core.ssa DEBUG Running -13:52:53,60 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,60 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,60 numba.core.ssa DEBUG Running -13:52:53,60 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,60 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,60 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,60 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,60 numba.core.ssa DEBUG Running -13:52:53,60 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,60 numba.core.ssa DEBUG Fix SSA violator on var grad_cor_coeff -13:52:53,60 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:53,60 numba.core.ssa DEBUG Running -13:52:53,60 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:53,60 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:53,60 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:53,60 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:53,60 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:53,60 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:53,60 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:53,60 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:53,60 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:53,60 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:53,60 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:53,60 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:53,60 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:53,60 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:53,60 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:53,60 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:53,60 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:53,60 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:53,60 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:53,61 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:53,61 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:53,61 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:53,61 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:53,61 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:53,61 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,61 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:53,61 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:53,61 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,61 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:53,61 numba.core.ssa DEBUG Running -13:52:53,61 numba.core.ssa DEBUG on stmt: jump 68 -13:52:53,61 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:53,61 numba.core.ssa DEBUG Running -13:52:53,61 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:53,61 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:53,61 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:53,61 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:53,61 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:53,61 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:53,61 numba.core.ssa DEBUG Running -13:52:53,61 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:53,61 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,61 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:53,61 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:53,61 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,61 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:53,61 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:53,61 numba.core.ssa DEBUG Running -13:52:53,61 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:53,61 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:53,61 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:53,61 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:53,61 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:53,61 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,61 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:53,62 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,62 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:53,62 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:53,62 numba.core.ssa DEBUG Running -13:52:53,62 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:53,62 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:53,62 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:53,62 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:53,62 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:53,62 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:53,62 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:53,62 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:53,62 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:53,62 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:53,62 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:53,62 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:53,62 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:53,62 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:53,62 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:53,62 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:53,62 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:53,62 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:53,62 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:53,62 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:53,62 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:53,63 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,63 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:53,63 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:53,63 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:53,63 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:53,63 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:53,63 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:53,63 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,63 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:53,63 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:53,63 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:53,63 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:53,63 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:53,63 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:53,63 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:53,63 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:53,63 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:53,63 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:53,64 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:53,64 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,64 numba.core.ssa DEBUG first assign: grad_cor_coeff -13:52:53,64 numba.core.ssa DEBUG replaced with: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,64 numba.core.ssa DEBUG on stmt: jump 744 -13:52:53,64 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:53,64 numba.core.ssa DEBUG Running -13:52:53,64 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:53,64 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:53,64 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:53,64 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,64 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:53,64 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:53,64 numba.core.ssa DEBUG Running -13:52:53,64 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:53,64 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:53,64 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:53,64 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,64 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:53,64 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:53,64 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:53,64 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:53,64 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,64 numba.core.ssa DEBUG on stmt: grad_coeff.1 = $binop_itruediv856.24 -13:52:53,64 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,65 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:53,65 numba.core.ssa DEBUG Running -13:52:53,65 numba.core.ssa DEBUG on stmt: grad_coeff.2 = const(float, 0.0) -13:52:53,65 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,65 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:53,65 numba.core.ssa DEBUG Running -13:52:53,65 numba.core.ssa DEBUG on stmt: grad_coeff.6 = phi(incoming_values=[Var(grad_coeff.2, layouts.py:140), Var(grad_coeff.1, layouts.py:138)], incoming_blocks=[864, 756]) -13:52:53,65 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:53,65 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,65 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:53,65 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:53,65 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,65 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:53,65 numba.core.ssa DEBUG Running -13:52:53,65 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:53,65 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:53,65 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:53,65 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:53,65 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:53,65 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:53,65 numba.core.ssa DEBUG Running -13:52:53,65 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:53,65 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:53,65 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,65 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,65 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:53,65 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff.6 * $binop_sub944.12 -13:52:53,65 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,65 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:53,65 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,65 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:53,65 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:53,65 numba.core.ssa DEBUG Running -13:52:53,65 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:53,65 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:53,65 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,65 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,66 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:53,66 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,66 numba.core.ssa DEBUG on stmt: grad_d.1 = $binop_iadd1044.17 -13:52:53,66 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:53,66 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:53,66 numba.core.ssa DEBUG Running -13:52:53,66 numba.core.ssa DEBUG on stmt: grad_d.4 = phi(incoming_values=[Var(grad_d.1, layouts.py:148), Var(grad_d, layouts.py:143)], incoming_blocks=[972, 900]) -13:52:53,66 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d.4 * alpha -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,66 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,66 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,66 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,66 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,66 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,66 numba.core.ssa DEBUG Running -13:52:53,66 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,66 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d.4) -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,66 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,66 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,66 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,66 numba.core.ssa DEBUG Running -13:52:53,66 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,66 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,66 numba.core.ssa DEBUG Running -13:52:53,66 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,66 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,66 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,67 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,67 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,67 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,67 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,67 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,67 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,67 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,67 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,67 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,67 numba.core.ssa DEBUG Running -13:52:53,67 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,67 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,67 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,67 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,67 numba.core.ssa DEBUG Running -13:52:53,67 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,67 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,67 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,67 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,67 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,67 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,67 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,67 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,67 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,67 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,67 numba.core.ssa DEBUG Running -13:52:53,68 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,68 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,68 numba.core.ssa DEBUG on stmt: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,68 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,68 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,68 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,68 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,68 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,68 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,68 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,68 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,68 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff.3, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,68 numba.core.ssa DEBUG on stmt: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,68 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,68 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,68 numba.core.ssa DEBUG Running -13:52:53,68 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,68 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,68 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,68 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,68 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,68 numba.core.ssa DEBUG Running -13:52:53,68 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,68 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,68 numba.core.ssa DEBUG Running -13:52:53,68 numba.core.ssa DEBUG on stmt: grad_coeff.5 = const(float, 0.0) -13:52:53,68 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,68 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,68 numba.core.ssa DEBUG Running -13:52:53,68 numba.core.ssa DEBUG on stmt: grad_coeff.7 = phi(incoming_values=[Var(grad_coeff.5, layouts.py:175), Var(grad_coeff.4, layouts.py:169)], incoming_blocks=[1480, 1386]) -13:52:53,68 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,68 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,68 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,68 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,68 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,69 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,69 numba.core.ssa DEBUG Running -13:52:53,69 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,69 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,69 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,69 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,69 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,69 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,69 numba.core.ssa DEBUG Running -13:52:53,69 numba.core.ssa DEBUG on stmt: d.1 = $phi1516.3 -13:52:53,69 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,69 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff.7 > $const1520.5 -13:52:53,69 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,69 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,69 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,69 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,69 numba.core.ssa DEBUG Running -13:52:53,69 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,69 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d.1, fn=) -13:52:53,69 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d.1, fn=) -13:52:53,69 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,69 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff.7 * $binop_sub1572.12 -13:52:53,69 numba.core.ssa DEBUG on stmt: grad_d.2 = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,69 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,69 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,69 numba.core.ssa DEBUG Running -13:52:53,69 numba.core.ssa DEBUG on stmt: grad_d.3 = const(int, 0) -13:52:53,69 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,69 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,69 numba.core.ssa DEBUG Running -13:52:53,69 numba.core.ssa DEBUG on stmt: grad_d.5 = phi(incoming_values=[Var(grad_d.2, layouts.py:179), Var(grad_d.3, layouts.py:181)], incoming_blocks=[1530, 1598]) -13:52:53,69 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d.1, fn=) -13:52:53,69 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d.5 * alpha -13:52:53,69 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,69 numba.core.ssa DEBUG on stmt: current[d.1] = $binop_iadd1628.9 -13:52:53,69 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,70 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,70 numba.core.ssa DEBUG Running -13:52:53,70 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,70 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,70 numba.core.ssa DEBUG Running -13:52:53,70 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,70 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,70 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,70 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,70 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,70 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,70 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,70 numba.core.ssa DEBUG Running -13:52:53,70 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,70 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,70 numba.core.ssa DEBUG Running -13:52:53,70 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,70 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,70 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,70 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,70 numba.core.ssa DEBUG Running -13:52:53,70 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,70 numba.core.ssa DEBUG Replaced assignments: defaultdict(, - {200: []}) -13:52:53,70 numba.core.ssa DEBUG ==== SSA block rewrite pass on 0 -13:52:53,70 numba.core.ssa DEBUG Running -13:52:53,70 numba.core.ssa DEBUG on stmt: head_embedding = arg(0, name=head_embedding) -13:52:53,70 numba.core.ssa DEBUG on stmt: tail_embedding = arg(1, name=tail_embedding) -13:52:53,70 numba.core.ssa DEBUG on stmt: head = arg(2, name=head) -13:52:53,70 numba.core.ssa DEBUG on stmt: tail = arg(3, name=tail) -13:52:53,70 numba.core.ssa DEBUG on stmt: n_vertices = arg(4, name=n_vertices) -13:52:53,70 numba.core.ssa DEBUG on stmt: epochs_per_sample = arg(5, name=epochs_per_sample) -13:52:53,70 numba.core.ssa DEBUG on stmt: a = arg(6, name=a) -13:52:53,70 numba.core.ssa DEBUG on stmt: b = arg(7, name=b) -13:52:53,70 numba.core.ssa DEBUG on stmt: rng_state_per_sample = arg(8, name=rng_state_per_sample) -13:52:53,70 numba.core.ssa DEBUG on stmt: gamma = arg(9, name=gamma) -13:52:53,70 numba.core.ssa DEBUG on stmt: dim = arg(10, name=dim) -13:52:53,70 numba.core.ssa DEBUG on stmt: move_other = arg(11, name=move_other) -13:52:53,71 numba.core.ssa DEBUG on stmt: alpha = arg(12, name=alpha) -13:52:53,71 numba.core.ssa DEBUG on stmt: epochs_per_negative_sample = arg(13, name=epochs_per_negative_sample) -13:52:53,71 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample = arg(14, name=epoch_of_next_negative_sample) -13:52:53,71 numba.core.ssa DEBUG on stmt: epoch_of_next_sample = arg(15, name=epoch_of_next_sample) -13:52:53,71 numba.core.ssa DEBUG on stmt: n = arg(16, name=n) -13:52:53,71 numba.core.ssa DEBUG on stmt: densmap_flag = arg(17, name=densmap_flag) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_phi_sum = arg(18, name=dens_phi_sum) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_re_sum = arg(19, name=dens_re_sum) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_re_cov = arg(20, name=dens_re_cov) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_re_std = arg(21, name=dens_re_std) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_re_mean = arg(22, name=dens_re_mean) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_lambda = arg(23, name=dens_lambda) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_R = arg(24, name=dens_R) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_mu = arg(25, name=dens_mu) -13:52:53,71 numba.core.ssa DEBUG on stmt: dens_mu_tot = arg(26, name=dens_mu_tot) -13:52:53,71 numba.core.ssa DEBUG on stmt: $4load_global.0 = global(numba: ) -13:52:53,71 numba.core.ssa DEBUG on stmt: $16load_attr.2 = getattr(value=$4load_global.0, attr=prange) -13:52:53,71 numba.core.ssa DEBUG on stmt: $28load_attr.4 = getattr(value=epochs_per_sample, attr=shape) -13:52:53,71 numba.core.ssa DEBUG on stmt: $const38.5 = const(int, 0) -13:52:53,71 numba.core.ssa DEBUG on stmt: $40binary_subscr.6 = static_getitem(value=$28load_attr.4, index=0, index_var=$const38.5, fn=) -13:52:53,71 numba.core.ssa DEBUG on stmt: $54call.7 = call $16load_attr.2($40binary_subscr.6, func=$16load_attr.2, args=[Var($40binary_subscr.6, layouts.py:92)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,71 numba.core.ssa DEBUG on stmt: $64get_iter.8 = getiter(value=$54call.7) -13:52:53,71 numba.core.ssa DEBUG on stmt: $phi68.0 = $64get_iter.8 -13:52:53,71 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,71 numba.core.ssa DEBUG ==== SSA block rewrite pass on 66 -13:52:53,71 numba.core.ssa DEBUG Running -13:52:53,71 numba.core.ssa DEBUG on stmt: jump 68 -13:52:53,71 numba.core.ssa DEBUG ==== SSA block rewrite pass on 68 -13:52:53,71 numba.core.ssa DEBUG Running -13:52:53,71 numba.core.ssa DEBUG on stmt: $68for_iter.1 = iternext(value=$phi68.0) -13:52:53,71 numba.core.ssa DEBUG on stmt: $68for_iter.2 = pair_first(value=$68for_iter.1) -13:52:53,71 numba.core.ssa DEBUG on stmt: $68for_iter.3 = pair_second(value=$68for_iter.1) -13:52:53,71 numba.core.ssa DEBUG on stmt: $phi70.1 = $68for_iter.2 -13:52:53,71 numba.core.ssa DEBUG on stmt: branch $68for_iter.3, 70, 1698 -13:52:53,71 numba.core.ssa DEBUG ==== SSA block rewrite pass on 70 -13:52:53,71 numba.core.ssa DEBUG Running -13:52:53,71 numba.core.ssa DEBUG on stmt: i = $phi70.1 -13:52:53,72 numba.core.ssa DEBUG on stmt: $76binary_subscr.4 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,72 numba.core.ssa DEBUG on stmt: $88compare_op.6 = $76binary_subscr.4 <= n -13:52:53,72 numba.core.ssa DEBUG on stmt: bool96 = global(bool: ) -13:52:53,72 numba.core.ssa DEBUG on stmt: $96pred = call bool96($88compare_op.6, func=bool96, args=(Var($88compare_op.6, layouts.py:93),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,72 numba.core.ssa DEBUG on stmt: branch $96pred, 98, 1694 -13:52:53,72 numba.core.ssa DEBUG ==== SSA block rewrite pass on 98 -13:52:53,72 numba.core.ssa DEBUG Running -13:52:53,72 numba.core.ssa DEBUG on stmt: j = getitem(value=head, index=i, fn=) -13:52:53,72 numba.core.ssa DEBUG on stmt: k = getitem(value=tail, index=i, fn=) -13:52:53,72 numba.core.ssa DEBUG on stmt: current = getitem(value=head_embedding, index=j, fn=) -13:52:53,72 numba.core.ssa DEBUG on stmt: other = getitem(value=tail_embedding, index=k, fn=) -13:52:53,72 numba.core.ssa DEBUG on stmt: $162load_global.13 = global(rdist: CPUDispatcher()) -13:52:53,72 numba.core.ssa DEBUG on stmt: dist_squared = call $162load_global.13(current, other, func=$162load_global.13, args=[Var(current, layouts.py:97), Var(other, layouts.py:98)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,72 numba.core.ssa DEBUG on stmt: bool198 = global(bool: ) -13:52:53,72 numba.core.ssa DEBUG on stmt: $198pred = call bool198(densmap_flag, func=bool198, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,72 numba.core.ssa DEBUG on stmt: branch $198pred, 200, 744 -13:52:53,72 numba.core.ssa DEBUG ==== SSA block rewrite pass on 200 -13:52:53,72 numba.core.ssa DEBUG Running -13:52:53,72 numba.core.ssa DEBUG on stmt: $const200.1 = const(float, 1.0) -13:52:53,72 numba.core.ssa DEBUG on stmt: $const202.2 = const(float, 1.0) -13:52:53,72 numba.core.ssa DEBUG on stmt: $206load_global.4 = global(pow: ) -13:52:53,72 numba.core.ssa DEBUG on stmt: $226call.8 = call $206load_global.4(dist_squared, b, func=$206load_global.4, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,72 numba.core.ssa DEBUG on stmt: $binop_mul236.9 = a * $226call.8 -13:52:53,72 numba.core.ssa DEBUG on stmt: $binop_add240.10 = $const202.2 + $binop_mul236.9 -13:52:53,72 numba.core.ssa DEBUG on stmt: phi = $const200.1 / $binop_add240.10 -13:52:53,72 numba.core.ssa DEBUG on stmt: $binop_mul254.14 = a * b -13:52:53,72 numba.core.ssa DEBUG on stmt: $258load_global.15 = global(pow: ) -13:52:53,72 numba.core.ssa DEBUG on stmt: $const274.19 = const(int, 1) -13:52:53,72 numba.core.ssa DEBUG on stmt: $binop_sub276.20 = b - $const274.19 -13:52:53,72 numba.core.ssa DEBUG on stmt: $284call.21 = call $258load_global.15(dist_squared, $binop_sub276.20, func=$258load_global.15, args=[Var(dist_squared, layouts.py:100), Var($binop_sub276.20, layouts.py:105)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,72 numba.core.ssa DEBUG on stmt: $binop_mul294.22 = $binop_mul254.14 * $284call.21 -13:52:53,72 numba.core.ssa DEBUG on stmt: $const298.23 = const(float, 1.0) -13:52:53,72 numba.core.ssa DEBUG on stmt: $302load_global.25 = global(pow: ) -13:52:53,73 numba.core.ssa DEBUG on stmt: $322call.29 = call $302load_global.25(dist_squared, b, func=$302load_global.25, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_mul332.30 = a * $322call.29 -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_add336.31 = $const298.23 + $binop_mul332.30 -13:52:53,73 numba.core.ssa DEBUG on stmt: dphi_term = $binop_mul294.22 / $binop_add336.31 -13:52:53,73 numba.core.ssa DEBUG on stmt: $352binary_subscr.36 = getitem(value=dens_phi_sum, index=k, fn=) -13:52:53,73 numba.core.ssa DEBUG on stmt: q_jk = phi / $352binary_subscr.36 -13:52:53,73 numba.core.ssa DEBUG on stmt: $374binary_subscr.41 = getitem(value=dens_phi_sum, index=j, fn=) -13:52:53,73 numba.core.ssa DEBUG on stmt: q_kj = phi / $374binary_subscr.41 -13:52:53,73 numba.core.ssa DEBUG on stmt: $const392.44 = const(float, 1.0) -13:52:53,73 numba.core.ssa DEBUG on stmt: $const396.46 = const(int, 1) -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_sub400.48 = $const396.46 - phi -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_mul404.49 = b * $binop_sub400.48 -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_sub408.50 = $const392.44 - $binop_mul404.49 -13:52:53,73 numba.core.ssa DEBUG on stmt: $412load_global.51 = global(np: ) -13:52:53,73 numba.core.ssa DEBUG on stmt: $424load_attr.53 = getattr(value=$412load_global.51, attr=exp) -13:52:53,73 numba.core.ssa DEBUG on stmt: $438binary_subscr.56 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,73 numba.core.ssa DEBUG on stmt: $452call.57 = call $424load_attr.53($438binary_subscr.56, func=$424load_attr.53, args=[Var($438binary_subscr.56, layouts.py:112)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_truediv462.58 = $binop_sub408.50 / $452call.57 -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_add468.60 = $binop_truediv462.58 + dphi_term -13:52:53,73 numba.core.ssa DEBUG on stmt: drk = q_jk * $binop_add468.60 -13:52:53,73 numba.core.ssa DEBUG on stmt: $const480.63 = const(float, 1.0) -13:52:53,73 numba.core.ssa DEBUG on stmt: $const484.65 = const(int, 1) -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_sub488.67 = $const484.65 - phi -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_mul492.68 = b * $binop_sub488.67 -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_sub496.69 = $const480.63 - $binop_mul492.68 -13:52:53,73 numba.core.ssa DEBUG on stmt: $500load_global.70 = global(np: ) -13:52:53,73 numba.core.ssa DEBUG on stmt: $512load_attr.72 = getattr(value=$500load_global.70, attr=exp) -13:52:53,73 numba.core.ssa DEBUG on stmt: $526binary_subscr.75 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,73 numba.core.ssa DEBUG on stmt: $540call.76 = call $512load_attr.72($526binary_subscr.75, func=$512load_attr.72, args=[Var($526binary_subscr.75, layouts.py:115)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_truediv550.77 = $binop_sub496.69 / $540call.76 -13:52:53,73 numba.core.ssa DEBUG on stmt: $binop_add556.79 = $binop_truediv550.77 + dphi_term -13:52:53,73 numba.core.ssa DEBUG on stmt: drj = q_kj * $binop_add556.79 -13:52:53,73 numba.core.ssa DEBUG on stmt: re_std_sq = dens_re_std * dens_re_std -13:52:53,74 numba.core.ssa DEBUG on stmt: $580binary_subscr.86 = getitem(value=dens_R, index=k, fn=) -13:52:53,74 numba.core.ssa DEBUG on stmt: $596binary_subscr.90 = getitem(value=dens_re_sum, index=k, fn=) -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_sub608.92 = $596binary_subscr.90 - dens_re_mean -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul612.93 = dens_re_cov * $binop_sub608.92 -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_truediv618.95 = $binop_mul612.93 / re_std_sq -13:52:53,74 numba.core.ssa DEBUG on stmt: weight_k = $580binary_subscr.86 - $binop_truediv618.95 -13:52:53,74 numba.core.ssa DEBUG on stmt: $632binary_subscr.99 = getitem(value=dens_R, index=j, fn=) -13:52:53,74 numba.core.ssa DEBUG on stmt: $648binary_subscr.103 = getitem(value=dens_re_sum, index=j, fn=) -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_sub660.105 = $648binary_subscr.103 - dens_re_mean -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul664.106 = dens_re_cov * $binop_sub660.105 -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_truediv670.108 = $binop_mul664.106 / re_std_sq -13:52:53,74 numba.core.ssa DEBUG on stmt: weight_j = $632binary_subscr.99 - $binop_truediv670.108 -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul684.112 = dens_lambda * dens_mu_tot -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul692.115 = weight_k * drk -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul700.118 = weight_j * drj -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_add704.119 = $binop_mul692.115 + $binop_mul700.118 -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul708.120 = $binop_mul684.112 * $binop_add704.119 -13:52:53,74 numba.core.ssa DEBUG on stmt: $716binary_subscr.123 = getitem(value=dens_mu, index=i, fn=) -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul728.125 = $716binary_subscr.123 * dens_re_std -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_truediv732.126 = $binop_mul708.120 / $binop_mul728.125 -13:52:53,74 numba.core.ssa DEBUG on stmt: grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,74 numba.core.ssa DEBUG on stmt: jump 744 -13:52:53,74 numba.core.ssa DEBUG ==== SSA block rewrite pass on 744 -13:52:53,74 numba.core.ssa DEBUG Running -13:52:53,74 numba.core.ssa DEBUG on stmt: $const746.2 = const(float, 0.0) -13:52:53,74 numba.core.ssa DEBUG on stmt: $748compare_op.3 = dist_squared > $const746.2 -13:52:53,74 numba.core.ssa DEBUG on stmt: bool754 = global(bool: ) -13:52:53,74 numba.core.ssa DEBUG on stmt: $754pred = call bool754($748compare_op.3, func=bool754, args=(Var($748compare_op.3, layouts.py:136),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,74 numba.core.ssa DEBUG on stmt: branch $754pred, 756, 864 -13:52:53,74 numba.core.ssa DEBUG ==== SSA block rewrite pass on 756 -13:52:53,74 numba.core.ssa DEBUG Running -13:52:53,74 numba.core.ssa DEBUG on stmt: $const756.1 = const(float, -2.0) -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul760.3 = $const756.1 * a -13:52:53,74 numba.core.ssa DEBUG on stmt: $binop_mul766.5 = $binop_mul760.3 * b -13:52:53,75 numba.core.ssa DEBUG on stmt: $770load_global.6 = global(pow: ) -13:52:53,75 numba.core.ssa DEBUG on stmt: $const786.10 = const(float, 1.0) -13:52:53,75 numba.core.ssa DEBUG on stmt: $binop_sub788.11 = b - $const786.10 -13:52:53,75 numba.core.ssa DEBUG on stmt: $796call.12 = call $770load_global.6(dist_squared, $binop_sub788.11, func=$770load_global.6, args=[Var(dist_squared, layouts.py:100), Var($binop_sub788.11, layouts.py:137)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,75 numba.core.ssa DEBUG on stmt: grad_coeff = $binop_mul766.5 * $796call.12 -13:52:53,75 numba.core.ssa DEBUG on stmt: $816load_global.16 = global(pow: ) -13:52:53,75 numba.core.ssa DEBUG on stmt: $836call.20 = call $816load_global.16(dist_squared, b, func=$816load_global.16, args=[Var(dist_squared, layouts.py:100), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,75 numba.core.ssa DEBUG on stmt: $binop_mul846.21 = a * $836call.20 -13:52:53,75 numba.core.ssa DEBUG on stmt: $const850.22 = const(float, 1.0) -13:52:53,75 numba.core.ssa DEBUG on stmt: $binop_add852.23 = $binop_mul846.21 + $const850.22 -13:52:53,75 numba.core.ssa DEBUG on stmt: $binop_itruediv856.24 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff, rhs=$binop_add852.23, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,75 numba.core.ssa DEBUG on stmt: grad_coeff.1 = $binop_itruediv856.24 -13:52:53,75 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,75 numba.core.ssa DEBUG ==== SSA block rewrite pass on 864 -13:52:53,75 numba.core.ssa DEBUG Running -13:52:53,75 numba.core.ssa DEBUG on stmt: grad_coeff.2 = const(float, 0.0) -13:52:53,75 numba.core.ssa DEBUG on stmt: jump 868 -13:52:53,75 numba.core.ssa DEBUG ==== SSA block rewrite pass on 868 -13:52:53,75 numba.core.ssa DEBUG Running -13:52:53,75 numba.core.ssa DEBUG on stmt: grad_coeff.6 = phi(incoming_values=[Var(grad_coeff.2, layouts.py:140), Var(grad_coeff.1, layouts.py:138)], incoming_blocks=[864, 756]) -13:52:53,75 numba.core.ssa DEBUG on stmt: $868load_global.1 = global(range: ) -13:52:53,75 numba.core.ssa DEBUG on stmt: $886call.4 = call $868load_global.1(dim, func=$868load_global.1, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,75 numba.core.ssa DEBUG on stmt: $896get_iter.5 = getiter(value=$886call.4) -13:52:53,75 numba.core.ssa DEBUG on stmt: $phi898.1 = $896get_iter.5 -13:52:53,75 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,75 numba.core.ssa DEBUG ==== SSA block rewrite pass on 898 -13:52:53,75 numba.core.ssa DEBUG Running -13:52:53,75 numba.core.ssa DEBUG on stmt: $898for_iter.2 = iternext(value=$phi898.1) -13:52:53,75 numba.core.ssa DEBUG on stmt: $898for_iter.3 = pair_first(value=$898for_iter.2) -13:52:53,75 numba.core.ssa DEBUG on stmt: $898for_iter.4 = pair_second(value=$898for_iter.2) -13:52:53,75 numba.core.ssa DEBUG on stmt: $phi900.2 = $898for_iter.3 -13:52:53,75 numba.core.ssa DEBUG on stmt: branch $898for_iter.4, 900, 1134 -13:52:53,75 numba.core.ssa DEBUG ==== SSA block rewrite pass on 900 -13:52:53,75 numba.core.ssa DEBUG Running -13:52:53,76 numba.core.ssa DEBUG on stmt: d = $phi900.2 -13:52:53,76 numba.core.ssa DEBUG on stmt: $902load_global.3 = global(clip: CPUDispatcher()) -13:52:53,76 numba.core.ssa DEBUG on stmt: $920binary_subscr.8 = getitem(value=current, index=d, fn=) -13:52:53,76 numba.core.ssa DEBUG on stmt: $934binary_subscr.11 = getitem(value=other, index=d, fn=) -13:52:53,76 numba.core.ssa DEBUG on stmt: $binop_sub944.12 = $920binary_subscr.8 - $934binary_subscr.11 -13:52:53,76 numba.core.ssa DEBUG on stmt: $binop_mul948.13 = grad_coeff.6 * $binop_sub944.12 -13:52:53,76 numba.core.ssa DEBUG on stmt: grad_d = call $902load_global.3($binop_mul948.13, func=$902load_global.3, args=[Var($binop_mul948.13, layouts.py:143)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,76 numba.core.ssa DEBUG on stmt: bool970 = global(bool: ) -13:52:53,76 numba.core.ssa DEBUG on stmt: $970pred = call bool970(densmap_flag, func=bool970, args=(Var(densmap_flag, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,76 numba.core.ssa DEBUG on stmt: branch $970pred, 972, 1050 -13:52:53,76 numba.core.ssa DEBUG ==== SSA block rewrite pass on 972 -13:52:53,76 numba.core.ssa DEBUG Running -13:52:53,76 numba.core.ssa DEBUG on stmt: $974load_global.3 = global(clip: CPUDispatcher()) -13:52:53,76 numba.core.ssa DEBUG on stmt: $const986.5 = const(int, 2) -13:52:53,76 numba.core.ssa DEBUG on stmt: $binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,76 numba.core.ssa DEBUG find_def var='grad_cor_coeff' stmt=$binop_mul990.7 = $const986.5 * grad_cor_coeff -13:52:53,76 numba.core.ssa DEBUG find_def_from_top label 972 -13:52:53,76 numba.core.ssa DEBUG idom 900 from label 972 -13:52:53,76 numba.core.ssa DEBUG find_def_from_bottom label 900 -13:52:53,76 numba.core.ssa DEBUG find_def_from_top label 900 -13:52:53,76 numba.core.ssa DEBUG idom 898 from label 900 -13:52:53,76 numba.core.ssa DEBUG find_def_from_bottom label 898 -13:52:53,76 numba.core.ssa DEBUG find_def_from_top label 898 -13:52:53,76 numba.core.ssa DEBUG idom 868 from label 898 -13:52:53,76 numba.core.ssa DEBUG find_def_from_bottom label 868 -13:52:53,76 numba.core.ssa DEBUG find_def_from_top label 868 -13:52:53,76 numba.core.ssa DEBUG idom 744 from label 868 -13:52:53,76 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:53,76 numba.core.ssa DEBUG find_def_from_top label 744 -13:52:53,76 numba.core.ssa DEBUG insert phi node grad_cor_coeff.1 = phi(incoming_values=[], incoming_blocks=[]) at 744 -13:52:53,76 numba.core.ssa DEBUG find_def_from_bottom label 200 -13:52:53,76 numba.core.ssa DEBUG incoming_def grad_cor_coeff = $binop_truediv732.126 / n_vertices -13:52:53,76 numba.core.ssa DEBUG find_def_from_bottom label 98 -13:52:53,76 numba.core.ssa DEBUG find_def_from_top label 98 -13:52:53,76 numba.core.ssa DEBUG idom 70 from label 98 -13:52:53,76 numba.core.ssa DEBUG find_def_from_bottom label 70 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 70 -13:52:53,77 numba.core.ssa DEBUG idom 68 from label 70 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 68 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 68 -13:52:53,77 numba.core.ssa DEBUG idom 66 from label 68 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 66 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 66 -13:52:53,77 numba.core.ssa DEBUG insert phi node grad_cor_coeff.2 = phi(incoming_values=[], incoming_blocks=[]) at 66 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 0 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 0 -13:52:53,77 numba.core.ssa DEBUG incoming_def -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 1694 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 1694 -13:52:53,77 numba.core.ssa DEBUG insert phi node grad_cor_coeff.3 = phi(incoming_values=[], incoming_blocks=[]) at 1694 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 1644 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 1644 -13:52:53,77 numba.core.ssa DEBUG idom 1274 from label 1644 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 1274 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 1274 -13:52:53,77 numba.core.ssa DEBUG idom 1134 from label 1274 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 1134 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 1134 -13:52:53,77 numba.core.ssa DEBUG idom 898 from label 1134 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 898 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 898 -13:52:53,77 numba.core.ssa DEBUG idom 868 from label 898 -13:52:53,77 numba.core.ssa DEBUG find_def_from_bottom label 868 -13:52:53,77 numba.core.ssa DEBUG find_def_from_top label 868 -13:52:53,78 numba.core.ssa DEBUG idom 744 from label 868 -13:52:53,78 numba.core.ssa DEBUG find_def_from_bottom label 744 -13:52:53,78 numba.core.ssa DEBUG incoming_def grad_cor_coeff.1 = phi(incoming_values=[Var(grad_cor_coeff, layouts.py:128)], incoming_blocks=[200]) -13:52:53,78 numba.core.ssa DEBUG find_def_from_bottom label 70 -13:52:53,78 numba.core.ssa DEBUG find_def_from_top label 70 -13:52:53,78 numba.core.ssa DEBUG idom 68 from label 70 -13:52:53,78 numba.core.ssa DEBUG find_def_from_bottom label 68 -13:52:53,78 numba.core.ssa DEBUG find_def_from_top label 68 -13:52:53,78 numba.core.ssa DEBUG idom 66 from label 68 -13:52:53,78 numba.core.ssa DEBUG find_def_from_bottom label 66 -13:52:53,78 numba.core.ssa DEBUG incoming_def grad_cor_coeff.2 = phi(incoming_values=[Undefined], incoming_blocks=[0]) -13:52:53,78 numba.core.ssa DEBUG incoming_def grad_cor_coeff.3 = phi(incoming_values=[Var(grad_cor_coeff.1, layouts.py:148), Var(grad_cor_coeff.2, layouts.py:148)], incoming_blocks=[1644, 70]) -13:52:53,78 numba.core.ssa DEBUG incoming_def grad_cor_coeff.2 = phi(incoming_values=[Undefined, Var(grad_cor_coeff.3, layouts.py:148)], incoming_blocks=[0, 1694]) -13:52:53,78 numba.core.ssa DEBUG replaced with: $binop_mul990.7 = $const986.5 * grad_cor_coeff.1 -13:52:53,78 numba.core.ssa DEBUG on stmt: $998binary_subscr.10 = getitem(value=current, index=d, fn=) -13:52:53,78 numba.core.ssa DEBUG on stmt: $1012binary_subscr.13 = getitem(value=other, index=d, fn=) -13:52:53,78 numba.core.ssa DEBUG on stmt: $binop_sub1022.14 = $998binary_subscr.10 - $1012binary_subscr.13 -13:52:53,78 numba.core.ssa DEBUG on stmt: $binop_mul1026.15 = $binop_mul990.7 * $binop_sub1022.14 -13:52:53,78 numba.core.ssa DEBUG on stmt: $1034call.16 = call $974load_global.3($binop_mul1026.15, func=$974load_global.3, args=[Var($binop_mul1026.15, layouts.py:148)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,78 numba.core.ssa DEBUG on stmt: $binop_iadd1044.17 = inplace_binop(fn=, immutable_fn=, lhs=grad_d, rhs=$1034call.16, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,78 numba.core.ssa DEBUG on stmt: grad_d.1 = $binop_iadd1044.17 -13:52:53,78 numba.core.ssa DEBUG on stmt: jump 1050 -13:52:53,78 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1050 -13:52:53,78 numba.core.ssa DEBUG Running -13:52:53,78 numba.core.ssa DEBUG on stmt: grad_d.4 = phi(incoming_values=[Var(grad_d.1, layouts.py:148), Var(grad_d, layouts.py:143)], incoming_blocks=[972, 900]) -13:52:53,78 numba.core.ssa DEBUG on stmt: $1058binary_subscr.4 = getitem(value=current, index=d, fn=) -13:52:53,78 numba.core.ssa DEBUG on stmt: $binop_mul1072.7 = grad_d.4 * alpha -13:52:53,78 numba.core.ssa DEBUG on stmt: $binop_iadd1076.8 = inplace_binop(fn=, immutable_fn=, lhs=$1058binary_subscr.4, rhs=$binop_mul1072.7, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,78 numba.core.ssa DEBUG on stmt: current[d] = $binop_iadd1076.8 -13:52:53,78 numba.core.ssa DEBUG on stmt: bool1090 = global(bool: ) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1090pred = call bool1090(move_other, func=bool1090, args=(Var(move_other, layouts.py:63),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,79 numba.core.ssa DEBUG on stmt: branch $1090pred, 1092, 1132 -13:52:53,79 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1092 -13:52:53,79 numba.core.ssa DEBUG Running -13:52:53,79 numba.core.ssa DEBUG on stmt: $1100binary_subscr.4 = getitem(value=other, index=d, fn=) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1112unary_negative.6 = unary(fn=, value=grad_d.4) -13:52:53,79 numba.core.ssa DEBUG on stmt: $binop_mul1116.8 = $1112unary_negative.6 * alpha -13:52:53,79 numba.core.ssa DEBUG on stmt: $binop_iadd1120.9 = inplace_binop(fn=, immutable_fn=, lhs=$1100binary_subscr.4, rhs=$binop_mul1116.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,79 numba.core.ssa DEBUG on stmt: other[d] = $binop_iadd1120.9 -13:52:53,79 numba.core.ssa DEBUG on stmt: jump 1132 -13:52:53,79 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1132 -13:52:53,79 numba.core.ssa DEBUG Running -13:52:53,79 numba.core.ssa DEBUG on stmt: jump 898 -13:52:53,79 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1134 -13:52:53,79 numba.core.ssa DEBUG Running -13:52:53,79 numba.core.ssa DEBUG on stmt: $1142binary_subscr.3 = getitem(value=epoch_of_next_sample, index=i, fn=) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1156binary_subscr.6 = getitem(value=epochs_per_sample, index=i, fn=) -13:52:53,79 numba.core.ssa DEBUG on stmt: $binop_iadd1166.7 = inplace_binop(fn=, immutable_fn=, lhs=$1142binary_subscr.3, rhs=$1156binary_subscr.6, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,79 numba.core.ssa DEBUG on stmt: epoch_of_next_sample[i] = $binop_iadd1166.7 -13:52:53,79 numba.core.ssa DEBUG on stmt: $1178load_global.8 = global(int: ) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1196binary_subscr.13 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,79 numba.core.ssa DEBUG on stmt: $binop_sub1206.14 = n - $1196binary_subscr.13 -13:52:53,79 numba.core.ssa DEBUG on stmt: $1214binary_subscr.17 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,79 numba.core.ssa DEBUG on stmt: $binop_truediv1224.18 = $binop_sub1206.14 / $1214binary_subscr.17 -13:52:53,79 numba.core.ssa DEBUG on stmt: n_neg_samples = call $1178load_global.8($binop_truediv1224.18, func=$1178load_global.8, args=[Var($binop_truediv1224.18, layouts.py:157)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1244load_global.20 = global(range: ) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1262call.23 = call $1244load_global.20(n_neg_samples, func=$1244load_global.20, args=[Var(n_neg_samples, layouts.py:156)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1272get_iter.24 = getiter(value=$1262call.23) -13:52:53,79 numba.core.ssa DEBUG on stmt: $phi1274.1 = $1272get_iter.24 -13:52:53,79 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,79 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1274 -13:52:53,79 numba.core.ssa DEBUG Running -13:52:53,79 numba.core.ssa DEBUG on stmt: $1274for_iter.2 = iternext(value=$phi1274.1) -13:52:53,79 numba.core.ssa DEBUG on stmt: $1274for_iter.3 = pair_first(value=$1274for_iter.2) -13:52:53,80 numba.core.ssa DEBUG on stmt: $1274for_iter.4 = pair_second(value=$1274for_iter.2) -13:52:53,80 numba.core.ssa DEBUG on stmt: $phi1276.2 = $1274for_iter.3 -13:52:53,80 numba.core.ssa DEBUG on stmt: branch $1274for_iter.4, 1276, 1644 -13:52:53,80 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1276 -13:52:53,80 numba.core.ssa DEBUG Running -13:52:53,80 numba.core.ssa DEBUG on stmt: p = $phi1276.2 -13:52:53,80 numba.core.ssa DEBUG on stmt: $1278load_global.3 = global(tau_rand_int: CPUDispatcher()) -13:52:53,80 numba.core.ssa DEBUG on stmt: $1294binary_subscr.7 = getitem(value=rng_state_per_sample, index=j, fn=) -13:52:53,80 numba.core.ssa DEBUG on stmt: $1308call.8 = call $1278load_global.3($1294binary_subscr.7, func=$1278load_global.3, args=[Var($1294binary_subscr.7, layouts.py:161)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,80 numba.core.ssa DEBUG on stmt: k.1 = $1308call.8 % n_vertices -13:52:53,80 numba.core.ssa DEBUG on stmt: other.1 = getitem(value=tail_embedding, index=k.1, fn=) -13:52:53,80 numba.core.ssa DEBUG on stmt: $1342load_global.14 = global(rdist: CPUDispatcher()) -13:52:53,80 numba.core.ssa DEBUG on stmt: dist_squared.1 = call $1342load_global.14(current, other.1, func=$1342load_global.14, args=[Var(current, layouts.py:97), Var(other.1, layouts.py:163)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,80 numba.core.ssa DEBUG on stmt: $const1376.20 = const(float, 0.0) -13:52:53,80 numba.core.ssa DEBUG on stmt: $1378compare_op.21 = dist_squared.1 > $const1376.20 -13:52:53,80 numba.core.ssa DEBUG on stmt: bool1384 = global(bool: ) -13:52:53,80 numba.core.ssa DEBUG on stmt: $1384pred = call bool1384($1378compare_op.21, func=bool1384, args=(Var($1378compare_op.21, layouts.py:167),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,80 numba.core.ssa DEBUG on stmt: branch $1384pred, 1386, 1466 -13:52:53,80 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1386 -13:52:53,80 numba.core.ssa DEBUG Running -13:52:53,80 numba.core.ssa DEBUG on stmt: $const1386.2 = const(float, 2.0) -13:52:53,80 numba.core.ssa DEBUG on stmt: $binop_mul1390.4 = $const1386.2 * gamma -13:52:53,80 numba.core.ssa DEBUG on stmt: grad_coeff.3 = $binop_mul1390.4 * b -13:52:53,80 numba.core.ssa DEBUG on stmt: $const1404.8 = const(float, 0.001) -13:52:53,80 numba.core.ssa DEBUG on stmt: $binop_add1408.10 = $const1404.8 + dist_squared.1 -13:52:53,80 numba.core.ssa DEBUG on stmt: $1414load_global.12 = global(pow: ) -13:52:53,80 numba.core.ssa DEBUG on stmt: $1434call.16 = call $1414load_global.12(dist_squared.1, b, func=$1414load_global.12, args=[Var(dist_squared.1, layouts.py:165), Var(b, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,80 numba.core.ssa DEBUG on stmt: $binop_mul1444.17 = a * $1434call.16 -13:52:53,80 numba.core.ssa DEBUG on stmt: $const1448.18 = const(int, 1) -13:52:53,80 numba.core.ssa DEBUG on stmt: $binop_add1450.19 = $binop_mul1444.17 + $const1448.18 -13:52:53,80 numba.core.ssa DEBUG on stmt: $binop_mul1454.20 = $binop_add1408.10 * $binop_add1450.19 -13:52:53,80 numba.core.ssa DEBUG on stmt: $binop_itruediv1458.21 = inplace_binop(fn=, immutable_fn=, lhs=grad_coeff.3, rhs=$binop_mul1454.20, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,80 numba.core.ssa DEBUG on stmt: grad_coeff.4 = $binop_itruediv1458.21 -13:52:53,81 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,81 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1466 -13:52:53,81 numba.core.ssa DEBUG Running -13:52:53,81 numba.core.ssa DEBUG on stmt: $1470compare_op.4 = j == k.1 -13:52:53,81 numba.core.ssa DEBUG on stmt: bool1476 = global(bool: ) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1476pred = call bool1476($1470compare_op.4, func=bool1476, args=(Var($1470compare_op.4, layouts.py:172),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,81 numba.core.ssa DEBUG on stmt: branch $1476pred, 1478, 1480 -13:52:53,81 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1478 -13:52:53,81 numba.core.ssa DEBUG Running -13:52:53,81 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,81 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1480 -13:52:53,81 numba.core.ssa DEBUG Running -13:52:53,81 numba.core.ssa DEBUG on stmt: grad_coeff.5 = const(float, 0.0) -13:52:53,81 numba.core.ssa DEBUG on stmt: jump 1484 -13:52:53,81 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1484 -13:52:53,81 numba.core.ssa DEBUG Running -13:52:53,81 numba.core.ssa DEBUG on stmt: grad_coeff.7 = phi(incoming_values=[Var(grad_coeff.5, layouts.py:175), Var(grad_coeff.4, layouts.py:169)], incoming_blocks=[1480, 1386]) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1484load_global.2 = global(range: ) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1502call.5 = call $1484load_global.2(dim, func=$1484load_global.2, args=[Var(dim, layouts.py:63)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1512get_iter.6 = getiter(value=$1502call.5) -13:52:53,81 numba.core.ssa DEBUG on stmt: $phi1514.2 = $1512get_iter.6 -13:52:53,81 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,81 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1514 -13:52:53,81 numba.core.ssa DEBUG Running -13:52:53,81 numba.core.ssa DEBUG on stmt: $1514for_iter.3 = iternext(value=$phi1514.2) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1514for_iter.4 = pair_first(value=$1514for_iter.3) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1514for_iter.5 = pair_second(value=$1514for_iter.3) -13:52:53,81 numba.core.ssa DEBUG on stmt: $phi1516.3 = $1514for_iter.4 -13:52:53,81 numba.core.ssa DEBUG on stmt: branch $1514for_iter.5, 1516, 1642 -13:52:53,81 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1516 -13:52:53,81 numba.core.ssa DEBUG Running -13:52:53,81 numba.core.ssa DEBUG on stmt: d.1 = $phi1516.3 -13:52:53,81 numba.core.ssa DEBUG on stmt: $const1520.5 = const(float, 0.0) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1522compare_op.6 = grad_coeff.7 > $const1520.5 -13:52:53,81 numba.core.ssa DEBUG on stmt: bool1528 = global(bool: ) -13:52:53,81 numba.core.ssa DEBUG on stmt: $1528pred = call bool1528($1522compare_op.6, func=bool1528, args=(Var($1522compare_op.6, layouts.py:178),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,82 numba.core.ssa DEBUG on stmt: branch $1528pred, 1530, 1598 -13:52:53,82 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1530 -13:52:53,82 numba.core.ssa DEBUG Running -13:52:53,82 numba.core.ssa DEBUG on stmt: $1530load_global.3 = global(clip: CPUDispatcher()) -13:52:53,82 numba.core.ssa DEBUG on stmt: $1548binary_subscr.8 = getitem(value=current, index=d.1, fn=) -13:52:53,82 numba.core.ssa DEBUG on stmt: $1562binary_subscr.11 = getitem(value=other.1, index=d.1, fn=) -13:52:53,82 numba.core.ssa DEBUG on stmt: $binop_sub1572.12 = $1548binary_subscr.8 - $1562binary_subscr.11 -13:52:53,82 numba.core.ssa DEBUG on stmt: $binop_mul1576.13 = grad_coeff.7 * $binop_sub1572.12 -13:52:53,82 numba.core.ssa DEBUG on stmt: grad_d.2 = call $1530load_global.3($binop_mul1576.13, func=$1530load_global.3, args=[Var($binop_mul1576.13, layouts.py:179)], kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,82 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,82 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1598 -13:52:53,82 numba.core.ssa DEBUG Running -13:52:53,82 numba.core.ssa DEBUG on stmt: grad_d.3 = const(int, 0) -13:52:53,82 numba.core.ssa DEBUG on stmt: jump 1602 -13:52:53,82 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1602 -13:52:53,82 numba.core.ssa DEBUG Running -13:52:53,82 numba.core.ssa DEBUG on stmt: grad_d.5 = phi(incoming_values=[Var(grad_d.2, layouts.py:179), Var(grad_d.3, layouts.py:181)], incoming_blocks=[1530, 1598]) -13:52:53,82 numba.core.ssa DEBUG on stmt: $1610binary_subscr.5 = getitem(value=current, index=d.1, fn=) -13:52:53,82 numba.core.ssa DEBUG on stmt: $binop_mul1624.8 = grad_d.5 * alpha -13:52:53,82 numba.core.ssa DEBUG on stmt: $binop_iadd1628.9 = inplace_binop(fn=, immutable_fn=, lhs=$1610binary_subscr.5, rhs=$binop_mul1624.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,82 numba.core.ssa DEBUG on stmt: current[d.1] = $binop_iadd1628.9 -13:52:53,82 numba.core.ssa DEBUG on stmt: jump 1514 -13:52:53,82 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1642 -13:52:53,82 numba.core.ssa DEBUG Running -13:52:53,82 numba.core.ssa DEBUG on stmt: jump 1699 -13:52:53,82 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1644 -13:52:53,82 numba.core.ssa DEBUG Running -13:52:53,82 numba.core.ssa DEBUG on stmt: $1652binary_subscr.3 = getitem(value=epoch_of_next_negative_sample, index=i, fn=) -13:52:53,82 numba.core.ssa DEBUG on stmt: $1668binary_subscr.7 = getitem(value=epochs_per_negative_sample, index=i, fn=) -13:52:53,82 numba.core.ssa DEBUG on stmt: $binop_mul1678.8 = n_neg_samples * $1668binary_subscr.7 -13:52:53,82 numba.core.ssa DEBUG on stmt: $binop_iadd1682.9 = inplace_binop(fn=, immutable_fn=, lhs=$1652binary_subscr.3, rhs=$binop_mul1678.8, static_lhs=Undefined, static_rhs=Undefined) -13:52:53,82 numba.core.ssa DEBUG on stmt: epoch_of_next_negative_sample[i] = $binop_iadd1682.9 -13:52:53,82 numba.core.ssa DEBUG on stmt: jump 1694 -13:52:53,82 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1694 -13:52:53,82 numba.core.ssa DEBUG Running -13:52:53,83 numba.core.ssa DEBUG on stmt: jump 66 -13:52:53,83 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1698 -13:52:53,83 numba.core.ssa DEBUG Running -13:52:53,83 numba.core.ssa DEBUG on stmt: $const1698.0 = const(NoneType, None) -13:52:53,83 numba.core.ssa DEBUG on stmt: $1700return_value.1 = cast(value=$const1698.0) -13:52:53,83 numba.core.ssa DEBUG on stmt: return $1700return_value.1 -13:52:53,83 numba.core.ssa DEBUG ==== SSA block rewrite pass on 1699 -13:52:53,83 numba.core.ssa DEBUG Running -13:52:53,83 numba.core.ssa DEBUG on stmt: jump 1274 -13:52:53,130 numba.core.byteflow DEBUG bytecode dump: -> 0 NOP(arg=None, lineno=9) - 2 RESUME(arg=0, lineno=9) - 4 LOAD_FAST(arg=0, lineno=23) - 6 LOAD_CONST(arg=1, lineno=23) - 8 COMPARE_OP(arg=4, lineno=23) - 14 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=23) - 16 LOAD_CONST(arg=1, lineno=24) - 18 RETURN_VALUE(arg=None, lineno=24) -> 20 LOAD_FAST(arg=0, lineno=25) - 22 LOAD_CONST(arg=2, lineno=25) - 24 COMPARE_OP(arg=0, lineno=25) - 30 POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=25) - 32 LOAD_CONST(arg=2, lineno=26) - 34 RETURN_VALUE(arg=None, lineno=26) -> 36 LOAD_FAST(arg=0, lineno=28) - 38 RETURN_VALUE(arg=None, lineno=28) -13:52:53,130 numba.core.byteflow DEBUG pending: deque([State(pc_initial=0 nstack_initial=0)]) -13:52:53,130 numba.core.byteflow DEBUG stack: [] -13:52:53,130 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=0 nstack_initial=0) -13:52:53,130 numba.core.byteflow DEBUG dispatch pc=0, inst=NOP(arg=None, lineno=9) -13:52:53,130 numba.core.byteflow DEBUG stack [] -13:52:53,130 numba.core.byteflow DEBUG dispatch pc=2, inst=RESUME(arg=0, lineno=9) -13:52:53,130 numba.core.byteflow DEBUG stack [] -13:52:53,130 numba.core.byteflow DEBUG dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=23) -13:52:53,130 numba.core.byteflow DEBUG stack [] -13:52:53,130 numba.core.byteflow DEBUG dispatch pc=6, inst=LOAD_CONST(arg=1, lineno=23) -13:52:53,131 numba.core.byteflow DEBUG stack ['$val4.0'] -13:52:53,131 numba.core.byteflow DEBUG dispatch pc=8, inst=COMPARE_OP(arg=4, lineno=23) -13:52:53,131 numba.core.byteflow DEBUG stack ['$val4.0', '$const6.1'] -13:52:53,131 numba.core.byteflow DEBUG dispatch pc=14, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=23) -13:52:53,131 numba.core.byteflow DEBUG stack ['$8compare_op.2'] -13:52:53,131 numba.core.byteflow DEBUG end state. edges=[Edge(pc=16, stack=(), blockstack=(), npush=0), Edge(pc=20, stack=(), blockstack=(), npush=0)] -13:52:53,131 numba.core.byteflow DEBUG pending: deque([State(pc_initial=16 nstack_initial=0), State(pc_initial=20 nstack_initial=0)]) -13:52:53,131 numba.core.byteflow DEBUG stack: [] -13:52:53,131 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=16 nstack_initial=0) -13:52:53,131 numba.core.byteflow DEBUG dispatch pc=16, inst=LOAD_CONST(arg=1, lineno=24) -13:52:53,131 numba.core.byteflow DEBUG stack [] -13:52:53,131 numba.core.byteflow DEBUG dispatch pc=18, inst=RETURN_VALUE(arg=None, lineno=24) -13:52:53,131 numba.core.byteflow DEBUG stack ['$const16.0'] -13:52:53,131 numba.core.byteflow DEBUG end state. edges=[] -13:52:53,131 numba.core.byteflow DEBUG pending: deque([State(pc_initial=20 nstack_initial=0)]) -13:52:53,131 numba.core.byteflow DEBUG stack: [] -13:52:53,131 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=20 nstack_initial=0) -13:52:53,131 numba.core.byteflow DEBUG dispatch pc=20, inst=LOAD_FAST(arg=0, lineno=25) -13:52:53,131 numba.core.byteflow DEBUG stack [] -13:52:53,132 numba.core.byteflow DEBUG dispatch pc=22, inst=LOAD_CONST(arg=2, lineno=25) -13:52:53,132 numba.core.byteflow DEBUG stack ['$val20.0'] -13:52:53,132 numba.core.byteflow DEBUG dispatch pc=24, inst=COMPARE_OP(arg=0, lineno=25) -13:52:53,132 numba.core.byteflow DEBUG stack ['$val20.0', '$const22.1'] -13:52:53,132 numba.core.byteflow DEBUG dispatch pc=30, inst=POP_JUMP_FORWARD_IF_FALSE(arg=2, lineno=25) -13:52:53,132 numba.core.byteflow DEBUG stack ['$24compare_op.2'] -13:52:53,132 numba.core.byteflow DEBUG end state. edges=[Edge(pc=32, stack=(), blockstack=(), npush=0), Edge(pc=36, stack=(), blockstack=(), npush=0)] -13:52:53,132 numba.core.byteflow DEBUG pending: deque([State(pc_initial=32 nstack_initial=0), State(pc_initial=36 nstack_initial=0)]) -13:52:53,132 numba.core.byteflow DEBUG stack: [] -13:52:53,132 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=32 nstack_initial=0) -13:52:53,132 numba.core.byteflow DEBUG dispatch pc=32, inst=LOAD_CONST(arg=2, lineno=26) -13:52:53,132 numba.core.byteflow DEBUG stack [] -13:52:53,132 numba.core.byteflow DEBUG dispatch pc=34, inst=RETURN_VALUE(arg=None, lineno=26) -13:52:53,134 numba.core.byteflow DEBUG stack ['$const32.0'] -13:52:53,134 numba.core.byteflow DEBUG end state. edges=[] -13:52:53,134 numba.core.byteflow DEBUG pending: deque([State(pc_initial=36 nstack_initial=0)]) -13:52:53,134 numba.core.byteflow DEBUG stack: [] -13:52:53,134 numba.core.byteflow DEBUG state.pc_initial: State(pc_initial=36 nstack_initial=0) -13:52:53,134 numba.core.byteflow DEBUG dispatch pc=36, inst=LOAD_FAST(arg=0, lineno=28) -13:52:53,134 numba.core.byteflow DEBUG stack [] -13:52:53,134 numba.core.byteflow DEBUG dispatch pc=38, inst=RETURN_VALUE(arg=None, lineno=28) -13:52:53,134 numba.core.byteflow DEBUG stack ['$val36.0'] -13:52:53,134 numba.core.byteflow DEBUG end state. edges=[] -13:52:53,134 numba.core.byteflow DEBUG -------------------------Prune PHIs------------------------- -13:52:53,134 numba.core.byteflow DEBUG Used_phis: defaultdict(, - {State(pc_initial=0 nstack_initial=0): set(), - State(pc_initial=16 nstack_initial=0): set(), - State(pc_initial=20 nstack_initial=0): set(), - State(pc_initial=32 nstack_initial=0): set(), - State(pc_initial=36 nstack_initial=0): set()}) -13:52:53,134 numba.core.byteflow DEBUG defmap: {} -13:52:53,134 numba.core.byteflow DEBUG phismap: defaultdict(, {}) -13:52:53,134 numba.core.byteflow DEBUG changing phismap: defaultdict(, {}) -13:52:53,134 numba.core.byteflow DEBUG keep phismap: {} -13:52:53,134 numba.core.byteflow DEBUG new_out: defaultdict(, {}) -13:52:53,134 numba.core.byteflow DEBUG ----------------------DONE Prune PHIs----------------------- -13:52:53,134 numba.core.byteflow DEBUG block_infos State(pc_initial=0 nstack_initial=0): -AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$val4.0'}), (6, {'res': '$const6.1'}), (8, {'lhs': '$val4.0', 'rhs': '$const6.1', 'res': '$8compare_op.2'}), (10, {}), (12, {}), (14, {'pred': '$8compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={16: (), 20: ()}) -13:52:53,134 numba.core.byteflow DEBUG block_infos State(pc_initial=16 nstack_initial=0): -AdaptBlockInfo(insts=((16, {'res': '$const16.0'}), (18, {'retval': '$const16.0', 'castval': '$18return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:53,134 numba.core.byteflow DEBUG block_infos State(pc_initial=20 nstack_initial=0): -AdaptBlockInfo(insts=((20, {'res': '$val20.0'}), (22, {'res': '$const22.1'}), (24, {'lhs': '$val20.0', 'rhs': '$const22.1', 'res': '$24compare_op.2'}), (26, {}), (28, {}), (30, {'pred': '$24compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={32: (), 36: ()}) -13:52:53,134 numba.core.byteflow DEBUG block_infos State(pc_initial=32 nstack_initial=0): -AdaptBlockInfo(insts=((32, {'res': '$const32.0'}), (34, {'retval': '$const32.0', 'castval': '$34return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:53,134 numba.core.byteflow DEBUG block_infos State(pc_initial=36 nstack_initial=0): -AdaptBlockInfo(insts=((36, {'res': '$val36.0'}), (38, {'retval': '$val36.0', 'castval': '$38return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) -13:52:53,135 numba.core.interpreter DEBUG label 0: - val = arg(0, name=val) ['val'] - $const6.1 = const(float, 4.0) ['$const6.1'] - $8compare_op.2 = val > $const6.1 ['$8compare_op.2', '$const6.1', 'val'] - bool14 = global(bool: ) ['bool14'] - $14pred = call bool14($8compare_op.2, func=bool14, args=(Var($8compare_op.2, layouts.py:23),), kws=(), vararg=None, varkwarg=None, target=None) ['$14pred', '$8compare_op.2', 'bool14'] - branch $14pred, 16, 20 ['$14pred'] -label 16: - $const16.0 = const(float, 4.0) ['$const16.0'] - $18return_value.1 = cast(value=$const16.0) ['$18return_value.1', '$const16.0'] - return $18return_value.1 ['$18return_value.1'] -label 20: - $const22.1 = const(float, -4.0) ['$const22.1'] - $24compare_op.2 = val < $const22.1 ['$24compare_op.2', '$const22.1', 'val'] - bool30 = global(bool: ) ['bool30'] - $30pred = call bool30($24compare_op.2, func=bool30, args=(Var($24compare_op.2, layouts.py:25),), kws=(), vararg=None, varkwarg=None, target=None) ['$24compare_op.2', '$30pred', 'bool30'] - branch $30pred, 32, 36 ['$30pred'] -label 32: - $const32.0 = const(float, -4.0) ['$const32.0'] - $34return_value.1 = cast(value=$const32.0) ['$34return_value.1', '$const32.0'] - return $34return_value.1 ['$34return_value.1'] -label 36: - $38return_value.1 = cast(value=val) ['$38return_value.1', 'val'] - return $38return_value.1 ['$38return_value.1'] - -13:52:53,150 numba.core.ssa DEBUG ==== SSA block analysis pass on 0 -13:52:53,150 numba.core.ssa DEBUG Running -13:52:53,150 numba.core.ssa DEBUG on stmt: val = arg(0, name=val) -13:52:53,150 numba.core.ssa DEBUG on stmt: $const6.1 = const(float, 4.0) -13:52:53,150 numba.core.ssa DEBUG on stmt: $8compare_op.2 = val > $const6.1 -13:52:53,150 numba.core.ssa DEBUG on stmt: bool14 = global(bool: ) -13:52:53,150 numba.core.ssa DEBUG on stmt: $14pred = call bool14($8compare_op.2, func=bool14, args=(Var($8compare_op.2, layouts.py:23),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,150 numba.core.ssa DEBUG on stmt: branch $14pred, 16, 20 -13:52:53,150 numba.core.ssa DEBUG ==== SSA block analysis pass on 16 -13:52:53,150 numba.core.ssa DEBUG Running -13:52:53,150 numba.core.ssa DEBUG on stmt: $const16.0 = const(float, 4.0) -13:52:53,150 numba.core.ssa DEBUG on stmt: $18return_value.1 = cast(value=$const16.0) -13:52:53,151 numba.core.ssa DEBUG on stmt: return $18return_value.1 -13:52:53,151 numba.core.ssa DEBUG ==== SSA block analysis pass on 20 -13:52:53,151 numba.core.ssa DEBUG Running -13:52:53,151 numba.core.ssa DEBUG on stmt: $const22.1 = const(float, -4.0) -13:52:53,151 numba.core.ssa DEBUG on stmt: $24compare_op.2 = val < $const22.1 -13:52:53,151 numba.core.ssa DEBUG on stmt: bool30 = global(bool: ) -13:52:53,151 numba.core.ssa DEBUG on stmt: $30pred = call bool30($24compare_op.2, func=bool30, args=(Var($24compare_op.2, layouts.py:25),), kws=(), vararg=None, varkwarg=None, target=None) -13:52:53,151 numba.core.ssa DEBUG on stmt: branch $30pred, 32, 36 -13:52:53,151 numba.core.ssa DEBUG ==== SSA block analysis pass on 32 -13:52:53,151 numba.core.ssa DEBUG Running -13:52:53,151 numba.core.ssa DEBUG on stmt: $const32.0 = const(float, -4.0) -13:52:53,151 numba.core.ssa DEBUG on stmt: $34return_value.1 = cast(value=$const32.0) -13:52:53,151 numba.core.ssa DEBUG on stmt: return $34return_value.1 -13:52:53,151 numba.core.ssa DEBUG ==== SSA block analysis pass on 36 -13:52:53,151 numba.core.ssa DEBUG Running -13:52:53,151 numba.core.ssa DEBUG on stmt: $38return_value.1 = cast(value=val) -13:52:53,151 numba.core.ssa DEBUG on stmt: return $38return_value.1 -13:52:53,151 numba.core.ssa DEBUG defs defaultdict(, - {'$14pred': [(, - 0)], - '$18return_value.1': [(, - 16)], - '$24compare_op.2': [(, - 20)], - '$30pred': [(, - 20)], - '$34return_value.1': [(, - 32)], - '$38return_value.1': [(, - 36)], - '$8compare_op.2': [(, - 0)], - '$const16.0': [(, - 16)], - '$const22.1': [(, - 20)], - '$const32.0': [(, - 32)], - '$const6.1': [(, - 0)], - 'bool14': [(, - 0)], - 'bool30': [(, - 20)], - 'val': [(, 0)]}) -13:52:53,152 numba.core.ssa DEBUG SSA violators -13:52:54,981 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_nodes.parquet -13:52:55,250 graphrag.index.run.workflow INFO dependencies for create_final_communities: ['create_base_entity_graph'] -13:52:55,251 graphrag.index.run.workflow WARNING Dependency table create_base_entity_graph not found in storage: it may be a runtime-only in-memory table. If you see further errors, this may be an actual problem. -13:52:55,259 datashaper.workflow.workflow INFO executing verb create_final_communities -13:52:55,395 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_communities.parquet -13:52:55,571 graphrag.index.run.workflow INFO dependencies for create_final_relationships: ['create_final_nodes', 'create_base_entity_graph'] -13:52:55,571 graphrag.utils.storage INFO read table from storage: create_final_nodes.parquet -13:52:55,611 graphrag.index.run.workflow WARNING Dependency table create_base_entity_graph not found in storage: it may be a runtime-only in-memory table. If you see further errors, this may be an actual problem. -13:52:55,620 datashaper.workflow.workflow INFO executing verb create_final_relationships -13:52:55,674 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_relationships.parquet -13:52:55,856 graphrag.index.run.workflow INFO dependencies for create_final_text_units: ['create_final_relationships', 'create_base_text_units', 'create_final_entities', 'create_final_covariates'] -13:52:55,857 graphrag.utils.storage INFO read table from storage: create_final_relationships.parquet -13:52:55,866 graphrag.index.run.workflow WARNING Dependency table create_base_text_units not found in storage: it may be a runtime-only in-memory table. If you see further errors, this may be an actual problem. -13:52:55,866 graphrag.utils.storage INFO read table from storage: create_final_entities.parquet -13:52:55,888 graphrag.utils.storage INFO read table from storage: create_final_covariates.parquet -13:52:55,907 datashaper.workflow.workflow INFO executing verb create_final_text_units -13:52:55,925 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_text_units.parquet -13:52:56,135 graphrag.index.run.workflow INFO dependencies for create_final_community_reports: ['create_final_nodes', 'create_final_covariates', 'create_final_relationships', 'create_final_communities'] -13:52:56,136 graphrag.utils.storage INFO read table from storage: create_final_nodes.parquet -13:52:56,165 graphrag.utils.storage INFO read table from storage: create_final_covariates.parquet -13:52:56,168 graphrag.utils.storage INFO read table from storage: create_final_relationships.parquet -13:52:56,171 graphrag.utils.storage INFO read table from storage: create_final_communities.parquet -13:52:56,190 datashaper.workflow.workflow INFO executing verb create_final_community_reports -13:52:56,206 graphrag.index.operations.summarize_communities.restore_community_hierarchy DEBUG Level: 0 -13:52:56,206 graphrag.index.operations.summarize_communities.restore_community_hierarchy DEBUG Number of communities at level 0: 13 -13:52:56,207 graphrag.index.operations.summarize_communities.restore_community_hierarchy DEBUG Level: 1 -13:52:56,207 graphrag.index.operations.summarize_communities.restore_community_hierarchy DEBUG Number of communities at level 1: 53 -13:52:56,208 graphrag.index.operations.summarize_communities.prepare_community_reports INFO Number of nodes at level=2 => 60 -13:52:56,245 graphrag.index.operations.summarize_communities.prepare_community_reports INFO Number of nodes at level=1 => 297 -13:52:56,380 graphrag.index.operations.summarize_communities.prepare_community_reports INFO Number of nodes at level=0 => 427 -13:52:56,459 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n1,EL AL,"EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline\'s liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.",49\r\n11,ARRIVALS HALL,"The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.",2\r\n197,VALUABLE ITEM,"Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.",2\r\n199,EQUIPMENT,,2\r\n353,$5,An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.,1\r\n354,50% DISCOUNT,Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.,1\r\n348,ADDITIONAL HANDLING FEE,An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.,1\r\n100,ANIMAL AIR TRANSPORT COMPANIES,"Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.",1\r\n204,BAGGAGE ISSUES,"Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.",1\r\n10,CHECK-IN COUNTER,"The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.",1\r\n310,CHECK-IN PROCESS,"The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger\'s identity and travel details, as well as checking their luggage for the flight.",1\r\n356,CHECKED BAGGAGE RULES,Checked baggage rules may vary when several airlines are involved in a flight route.,1\r\n364,CODESHARE FLIGHTS,Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.,1\r\n19,TRANSPORTATION,"Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.",1\r\n108,SAFETY AND SECURITY REGULATIONS,"Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.",1\r\n305,FLIGHT DESTINATION,"The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.",1\r\n351,MANAGE MY BOOKING,"Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.",1\r\n363,GOVERNMENT SERVICE TAX,A government service tax will be collected for air travel for flights originating in India.,1\r\n425,EMAIL NOTIFICATION,An email notification to the airline is required to inform them about the intention to travel with a mobility aid.,1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n2,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\r\n3,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg."\r\n4,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"In certain instances (e.g. large animals), animals must be transported as checked baggage."\r\n5,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied)."\r\n11,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\r\n43,EL AL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\r\n47,EL AL,BAGGAGE POLICY,TRUE,"The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm."\r\n48,EL AL,BAGGAGE POLICY,TRUE,"Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division."\r\n49,EL AL,BAGGAGE POLICY,TRUE,"The maximum size permitted for an infant�s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all."\r\n50,EL AL,BAGGAGE POLICY,TRUE,EL AL reserves the right to change the excess baggage rates from time to time.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n10,EL AL,CARGO DIVISION,"EL AL\'s Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.",57\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n9,EL AL,ARRIVALS HALL,Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL,51\r\n26,EL AL,VALUABLE ITEM,EL AL does not bear responsibility for valuable items transported by the airline,51\r\n27,EL AL,EQUIPMENT,EL AL has guidelines regarding the transport of passenger equipment,51\r\n41,EL AL,$5,The additional handling fee of $5 is charged by EL AL for baggage checked through their service center,50\r\n42,EL AL,50% DISCOUNT,EL AL offers a 50% discount on baggage fees if purchased online before the flight,50\r\n38,EL AL,ADDITIONAL HANDLING FEE,EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center,50\r\n20,EL AL,ANIMAL AIR TRANSPORT COMPANIES,"EL AL may recommend using specialized companies for the air transport of animals, including service dogs.",50\r\n28,EL AL,BAGGAGE ISSUES,EL AL has policies in place to address various baggage issues encountered by travelers,50\r\n8,EL AL,CHECK-IN COUNTER,"EL AL requires passengers to check in at their designated check-in counters for their flights. Additionally, pet owners must arrive at the check-in counter with their pets to make the necessary transportation arrangements for their travel on EL AL.",50\r\n40,EL AL,CHECK-IN PROCESS,Passengers can add baggage during the check-in process for their EL AL flight,50\r\n43,EL AL,CHECKED BAGGAGE RULES,"Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL\'s policies",50\r\n46,EL AL,CODESHARE FLIGHTS,"The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.",50\r\n15,EL AL,TRANSPORTATION,"EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo",50\r\n23,EL AL,SAFETY AND SECURITY REGULATIONS,EL AL must adhere to safety and security regulations when transporting dogs,50\r\n33,EL AL,FLIGHT DESTINATION,Passengers must have necessary documents according to their flight destination when checking in with El Al,50\r\n39,EL AL,MANAGE MY BOOKING,Passengers can add baggage via the Manage my booking service provided by EL AL,50\r\n45,EL AL,GOVERNMENT SERVICE TAX,"The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.",50\r\n51,EL AL,EMAIL NOTIFICATION,An email notification is required to inform EL AL about traveling with a mobility aid,50\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,460 httpcore.connection DEBUG close.started -13:52:56,463 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n12,CARGO DIVISION,"The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.",8\r\n44,TRANSPORT AUTHORIZATION,Transport authorization from the destination country authorities is required for transporting pets.,1\r\n46,MEASUREMENTS OF TRANSPORT CAGE,The measurements of the transport cage are required to ensure the animal\'s safety and compliance with transport regulations.,1\r\n51,TRANSPORTING ANIMALS,"The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n10,EL AL,CARGO DIVISION,"EL AL\'s Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.",57\r\n116,CARGO DIVISION,TRANSPORT AUTHORIZATION,The Cargo Division requires transport authorization from destination authorities for pet transport,9\r\n118,CARGO DIVISION,MEASUREMENTS OF TRANSPORT CAGE,The Cargo Division requires the measurements of the transport cage for compliance,9\r\n119,CARGO DIVISION,TRANSPORTING ANIMALS,"The Cargo Division specializes in transporting animals, including pets",9\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,467 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n165,BUSINESS CLASS,"Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.",5\r\n164,PREMIUM CLASS,"Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.",4\r\n162,SPORTING EQUIPMENT,"Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.",14\r\n38,CARGO,"CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.",4\r\n181,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America.,2\r\n167,EL AL CARGO DIVISION,"The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.",2\r\n174,190 CM,190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.,1\r\n170,ADDITIONAL SPORTS EQUIPMENT,Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.",21\r\n143,WEIGHT,SPORTING EQUIPMENT,"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.",20\r\n297,SPORTING EQUIPMENT,BUSINESS CLASS,"Business Class provides the option for transporting sporting equipment, adhering to specific size and weight conditions that differ from those in Economy and Premium Class. This class has distinct weight limits for sporting equipment, allowing for a more accommodating experience for travelers with such items.",19\r\n155,CARGO,SPORTING EQUIPMENT,"CARGO provides services for transporting sporting equipment that exceeds standard baggage limits. Specifically, sporting equipment can be transported as cargo when it surpasses the standard baggage allowance, ensuring that athletes and sports enthusiasts can travel with their necessary gear without restrictions.",18\r\n296,SPORTING EQUIPMENT,PREMIUM CLASS,"Premium Class provides the option for transporting sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that customers can carry their sporting gear while complying with the established size and weight restrictions.",18\r\n303,SPORTING EQUIPMENT,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America,16\r\n299,SPORTING EQUIPMENT,EL AL CARGO DIVISION,"The EL AL Cargo Division offers a specialized service for transporting sporting equipment that exceeds standard baggage limits and allowances. This division provides an alternative solution for individuals and organizations needing to transport larger or heavier sporting gear, ensuring that such items can be shipped efficiently and effectively.",16\r\n301,SPORTING EQUIPMENT,190 CM,"190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.",15\r\n300,SPORTING EQUIPMENT,ADDITIONAL SPORTS EQUIPMENT,"Sporting equipment encompasses a variety of gear used for various sports activities. Within this category, additional sports equipment specifically refers to any extra gear that necessitates special handling or can be transported beyond the standard baggage allowance. This includes items that exceed the typical limits set for standard baggage, ensuring that athletes and sports enthusiasts can carry the necessary equipment for their activities without restrictions.",15\r\n313,BUSINESS CLASS,32 KG,"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.",7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,470 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n163,ECONOMY CLASS,"Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.",7\r\n175,LITE FARES,"LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.",21\r\n306,ECONOMY CLASS,30 KG,"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.",9\r\n307,ECONOMY CLASS,LITE FARES,"The Economy Class includes a category known as Lite Fares, which are characterized by certain restrictions and limited services. Specifically, Lite Fares impose limitations on the transport of sporting equipment, differentiating them from standard Economy Class offerings. These fares are designed to provide a more economical option for travelers while offering fewer amenities compared to regular Economy Class fares.",8\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,474 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n35,WEIGHT,"Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.",6\r\n172,30 KG,"The entity ""30 KG"" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.",2\r\n171,32 KG,"The entity ""32 KG"" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n146,WEIGHT,CARRY-ON BAGGAGE,"The entity ""WEIGHT"" is a crucial factor in determining the eligibility of ""CARRY-ON BAGGAGE."" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.",23\r\n143,WEIGHT,SPORTING EQUIPMENT,"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.",20\r\n306,ECONOMY CLASS,30 KG,"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.",9\r\n144,WEIGHT,30 KG,30 kg is the maximum weight limit for sports equipment in Economy Class,8\r\n145,WEIGHT,32 KG,32 kg is the maximum weight limit for sports equipment in Business Class,8\r\n313,BUSINESS CLASS,32 KG,"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.",7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,477 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n277,CHECKED LUGGAGE,,2\r\n275,BAGGAGE CONVEYOR BELT,The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.",19\r\n378,BAGGAGE CONVEYOR BELT,CHECKED LUGGAGE,The baggage conveyor belt is where checked luggage is retrieved after a flight.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,481 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n267,CARRY-ON BAGGAGE,Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.,17\r\n273,BOOKING MANAGEMENT,Booking management refers to the section of the airline\'s website where passengers can manage their flight bookings and check baggage policies.,1\r\n268,PERSONAL BAGS,"Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.",1\r\n269,SUN DOR,Sun Dor is an airline that operates flights with specific carry-on baggage policies.,1\r\n270,MATMID FREQUENT FLYER CLUB,"The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.",1\r\n271,TROLLEY,"A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.",1\r\n272,FLIGHT TICKET TERMS,Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.,1\r\n274,OVERHEAD COMPARTMENTS,"Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.",1\r\n276,NORTH AMERICA,"North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.",1\r\n290,MAXIMUM DIMENSIONS,Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,"The entity ""WEIGHT"" is a crucial factor in determining the eligibility of ""CARRY-ON BAGGAGE."" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.",19\r\n373,CARRY-ON BAGGAGE,BOOKING MANAGEMENT,"Booking management provides passengers with the ability to check their carry-on baggage allowances and policies, as well as manage their bookings. This functionality ensures that travelers are informed about the specific regulations regarding their carry-on items, facilitating a smoother travel experience.",18\r\n367,CARRY-ON BAGGAGE,PERSONAL BAGS,"CARRY-ON BAGGAGE and PERSONAL BAGS are closely related concepts in air travel. Personal bags are classified as a type of carry-on baggage, specifically designed to be stored under the seat in front of the passenger. This allows for easy access during the flight while adhering to airline regulations regarding carry-on items.",18\r\n368,CARRY-ON BAGGAGE,SUN DOR,Sun Dor has specific policies regarding carry-on baggage for its flights.,18\r\n369,CARRY-ON BAGGAGE,MATMID FREQUENT FLYER CLUB,"The Matmid Frequent Flyer Club status has a significant impact on the eligibility for carry-on baggage for passengers. Membership in the Matmid Frequent Flyer Club influences the rules and allowances regarding carry-on baggage, suggesting that those who are members may have different or enhanced privileges compared to non-members.",18\r\n371,CARRY-ON BAGGAGE,TROLLEY,A trolley is a specific type of carry-on baggage that passengers can bring into the cabin and can be stored in overhead compartments.,18\r\n372,CARRY-ON BAGGAGE,FLIGHT TICKET TERMS,The flight ticket terms outline the policies and rules regarding carry-on baggage allowances applicable to passengers. These terms provide essential information that helps travelers understand the specific regulations governing the amount and type of carry-on baggage they are permitted to bring on board.,18\r\n374,CARRY-ON BAGGAGE,OVERHEAD COMPARTMENTS,Overhead compartments are designated storage areas for carry-on baggage during the flight.,18\r\n375,CARRY-ON BAGGAGE,NORTH AMERICA,"CARRY-ON BAGGAGE policies are specifically applicable to flights from and to NORTH AMERICA. These policies outline the regulations and restrictions regarding the size, weight, and number of carry-on items that passengers are allowed to bring on board.",18\r\n376,CARRY-ON BAGGAGE,MAXIMUM DIMENSIONS,Maximum dimensions are critical for determining what carry-on baggage is allowed,18\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,481 httpcore.connection DEBUG close.complete -13:52:56,482 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,482 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,482 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,482 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,482 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,482 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,485 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n115,DELAYED BAGGAGE,"Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.",2\r\n120,BAGGAGE REPORT,A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n249,DELAYED BAGGAGE,BAGGAGE REPORT,A baggage report is issued for delayed baggage at the airport,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,489 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n113,BAGGAGE SERVICE CENTER,"The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.",13\r\n118,CONTACT DETAILS,"The ""CONTACT DETAILS"" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.",2\r\n123,BAGGAGE CLAIM,Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.,1\r\n127,BAGGAGE CLAIMS PROCESS,The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.,1\r\n122,BAGGAGE DELAY,Baggage delay occurs when a passenger\'s checked baggage does not arrive at the destination with them.,1\r\n124,BAGGAGE HANDLING,Baggage handling refers to the procedures and services involved in managing passengers\' baggage during travel.,1\r\n125,BAGGAGE REPORTING,"Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.",1\r\n128,DAMAGED BAGGAGE,,1\r\n121,FORGOTTEN ITEM,"The ""FORGOTTEN ITEM"" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.",1\r\n202,CLAIMS DEPARTMENT,The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n233,BAGGAGE SERVICE CENTER,CONTACT DETAILS,Contact details provide necessary information for reaching the Baggage Service Center for assistance,15\r\n228,BAGGAGE SERVICE CENTER,BAGGAGE CLAIM,The Baggage Service Center facilitates the baggage claim process for passengers,14\r\n231,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS PROCESS,The Baggage Service Center follows the baggage claims process to assist passengers,14\r\n227,BAGGAGE SERVICE CENTER,BAGGAGE DELAY,The Baggage Service Center is responsible for managing reports of baggage delays,14\r\n229,BAGGAGE SERVICE CENTER,BAGGAGE HANDLING,Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage,14\r\n230,BAGGAGE SERVICE CENTER,BAGGAGE REPORTING,Passengers report baggage issues to the Baggage Service Center for resolution,14\r\n225,BAGGAGE SERVICE CENTER,DAMAGED BAGGAGE,"The Baggage Service Center is dedicated to assisting travelers with claims related to damaged baggage. It effectively handles cases of damaged baggage reported by passengers, ensuring that their concerns are addressed and resolved in a timely manner.",14\r\n226,BAGGAGE SERVICE CENTER,FORGOTTEN ITEM,"The Baggage Service Center is dedicated to assisting passengers with items that have been forgotten on board. It plays a crucial role in helping recover these forgotten items, ensuring that travelers can retrieve their belongings efficiently.",14\r\n232,BAGGAGE SERVICE CENTER,CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Claims Department to process claims related to baggage,14\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:52:56,490 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,490 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,490 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:52:56,492 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,492 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,493 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,493 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,493 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,493 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,493 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,493 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,494 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,494 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,494 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,494 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,494 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,494 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,495 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,495 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,495 httpcore.connection DEBUG connect_tcp.complete return_value= -13:52:56,495 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:52:56,498 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,498 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,505 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,505 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,505 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,505 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,505 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,506 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,506 httpcore.http11 DEBUG send_request_body.complete -13:52:56,506 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,506 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,506 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,506 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,506 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,513 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,513 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,513 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,513 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,513 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,513 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,513 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,513 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,513 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,514 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,514 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,514 httpcore.connection DEBUG start_tls.complete return_value= -13:52:56,514 httpcore.http11 DEBUG send_request_body.complete -13:52:56,514 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,514 httpcore.http11 DEBUG send_request_body.complete -13:52:56,514 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,514 httpcore.http11 DEBUG send_request_body.complete -13:52:56,514 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,514 httpcore.http11 DEBUG send_request_body.complete -13:52:56,514 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,515 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,515 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,515 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,515 httpcore.http11 DEBUG send_request_headers.complete -13:52:56,516 httpcore.http11 DEBUG send_request_body.started request= -13:52:56,516 httpcore.http11 DEBUG send_request_body.complete -13:52:56,516 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,516 httpcore.http11 DEBUG send_request_body.complete -13:52:56,516 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,516 httpcore.http11 DEBUG send_request_body.complete -13:52:56,516 httpcore.http11 DEBUG receive_response_headers.started request= -13:52:56,516 httpcore.http11 DEBUG send_request_body.complete -13:52:56,516 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:02,373 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'5675'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9973511'), (b'x-ratelimit-reset-requests', b'22ms'), (b'x-ratelimit-reset-tokens', b'158ms'), (b'x-request-id', b'req_33b4524d6a3b11922dc895d1863d6b6f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dac81cc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:02,373 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:02,373 httpcore.http11 DEBUG receive_response_body.started request= -13:53:02,374 httpcore.http11 DEBUG receive_response_body.complete -13:53:02,374 httpcore.http11 DEBUG response_closed.started -13:53:02,374 httpcore.http11 DEBUG response_closed.complete -13:53:02,374 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:02,375 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 5.9060000000172295. input_tokens=2144, output_tokens=372 -13:53:04,591 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7906'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9991134'), (b'x-ratelimit-reset-requests', b'8ms'), (b'x-ratelimit-reset-tokens', b'53ms'), (b'x-request-id', b'req_0a4f13c208e5a51cbd767fa5968f1707'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dacaf37da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:04,592 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:04,592 httpcore.http11 DEBUG receive_response_body.started request= -13:53:04,592 httpcore.http11 DEBUG receive_response_body.complete -13:53:04,592 httpcore.http11 DEBUG response_closed.started -13:53:04,592 httpcore.http11 DEBUG response_closed.complete -13:53:04,592 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:04,593 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 8.14100000000326. input_tokens=2365, output_tokens=536 -13:53:04,789 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8093'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9978098'), (b'x-ratelimit-reset-requests', b'15ms'), (b'x-ratelimit-reset-tokens', b'131ms'), (b'x-request-id', b'req_b719a0f41f36bd43659bb3e6f3b59735'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dadfd3c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:04,789 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:04,789 httpcore.http11 DEBUG receive_response_body.started request= -13:53:04,789 httpcore.http11 DEBUG receive_response_body.complete -13:53:04,789 httpcore.http11 DEBUG response_closed.started -13:53:04,789 httpcore.http11 DEBUG response_closed.complete -13:53:04,790 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:04,790 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 8.297000000020489. input_tokens=2117, output_tokens=510 -13:53:06,275 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:06 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9576'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9969013'), (b'x-ratelimit-reset-requests', b'26ms'), (b'x-ratelimit-reset-tokens', b'185ms'), (b'x-request-id', b'req_48cc7cbbe86aeaf8cdc14029105d0c82'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dac8d4c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:06,275 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:06,276 httpcore.http11 DEBUG receive_response_body.started request= -13:53:06,276 httpcore.http11 DEBUG receive_response_body.complete -13:53:06,276 httpcore.http11 DEBUG response_closed.started -13:53:06,276 httpcore.http11 DEBUG response_closed.complete -13:53:06,276 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:06,277 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 9.797000000020489. input_tokens=2428, output_tokens=626 -13:53:07,308 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:07 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10601'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9964640'), (b'x-ratelimit-reset-requests', b'23ms'), (b'x-ratelimit-reset-tokens', b'212ms'), (b'x-request-id', b'req_9b21d1a6441a6b2d3c00728b5f8997f5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dac870c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:07,308 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:07,308 httpcore.http11 DEBUG receive_response_body.started request= -13:53:07,309 httpcore.http11 DEBUG receive_response_body.complete -13:53:07,309 httpcore.http11 DEBUG response_closed.started -13:53:07,309 httpcore.http11 DEBUG response_closed.complete -13:53:07,309 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:07,310 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.85899999999674. input_tokens=3180, output_tokens=714 -13:53:07,974 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:08 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11296'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995281'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_e94b9d2b8c74a36cd4c02d4aebc79ec5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dace387da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:07,975 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:07,975 httpcore.http11 DEBUG receive_response_body.started request= -13:53:07,975 httpcore.http11 DEBUG receive_response_body.complete -13:53:07,975 httpcore.http11 DEBUG response_closed.started -13:53:07,975 httpcore.http11 DEBUG response_closed.complete -13:53:07,975 httpcore.connection DEBUG close.started -13:53:07,976 httpcore.connection DEBUG close.complete -13:53:07,976 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:07,977 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.5. input_tokens=2320, output_tokens=642 -13:53:08,973 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12274'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9986576'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'80ms'), (b'x-request-id', b'req_3ebe3e714eeaa08f4149ad8adbb18604'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dad9637d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:08,973 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:08,973 httpcore.http11 DEBUG receive_response_body.started request= -13:53:08,973 httpcore.http11 DEBUG receive_response_body.complete -13:53:08,974 httpcore.http11 DEBUG response_closed.started -13:53:08,974 httpcore.http11 DEBUG response_closed.complete -13:53:08,974 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:08,975 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.5. input_tokens=3212, output_tokens=846 -13:53:09,741 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:09 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13016'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9959333'), (b'x-ratelimit-reset-requests', b'19ms'), (b'x-ratelimit-reset-tokens', b'244ms'), (b'x-request-id', b'req_00f2d7cb7039b6c11db7a448a82f62a6'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dada43c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:09,742 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:09,742 httpcore.http11 DEBUG receive_response_body.started request= -13:53:09,742 httpcore.http11 DEBUG receive_response_body.complete -13:53:09,742 httpcore.http11 DEBUG response_closed.started -13:53:09,742 httpcore.http11 DEBUG response_closed.complete -13:53:09,742 httpcore.connection DEBUG close.started -13:53:09,743 httpcore.connection DEBUG close.complete -13:53:09,743 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:09,744 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 13.28100000001723. input_tokens=4269, output_tokens=757 -13:53:11,490 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:11 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14795'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9983127'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'101ms'), (b'x-request-id', b'req_77d1be523ce62ee3f855e34074df866b'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c1dade4d7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:11,490 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:11,490 httpcore.http11 DEBUG receive_response_body.started request= -13:53:11,491 httpcore.http11 DEBUG receive_response_body.complete -13:53:11,491 httpcore.http11 DEBUG response_closed.started -13:53:11,491 httpcore.http11 DEBUG response_closed.complete -13:53:11,491 httpcore.connection DEBUG close.started -13:53:11,491 httpcore.connection DEBUG close.complete -13:53:11,491 httpcore.connection DEBUG close.started -13:53:11,491 httpcore.connection DEBUG close.complete -13:53:11,491 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:11,493 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 15.0. input_tokens=2701, output_tokens=858 -13:53:11,526 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n1,EL AL,"EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline\'s liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.",49\r\n12,CARGO DIVISION,"The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.",8\r\n11,ARRIVALS HALL,"The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.",2\r\n197,VALUABLE ITEM,"Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.",2\r\n199,EQUIPMENT,,2\r\n353,$5,An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.,1\r\n354,50% DISCOUNT,Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.,1\r\n348,ADDITIONAL HANDLING FEE,An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.,1\r\n100,ANIMAL AIR TRANSPORT COMPANIES,"Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.",1\r\n204,BAGGAGE ISSUES,"Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.",1\r\n10,CHECK-IN COUNTER,"The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.",1\r\n310,CHECK-IN PROCESS,"The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger\'s identity and travel details, as well as checking their luggage for the flight.",1\r\n356,CHECKED BAGGAGE RULES,Checked baggage rules may vary when several airlines are involved in a flight route.,1\r\n364,CODESHARE FLIGHTS,Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.,1\r\n19,TRANSPORTATION,"Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.",1\r\n108,SAFETY AND SECURITY REGULATIONS,"Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.",1\r\n305,FLIGHT DESTINATION,"The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.",1\r\n351,MANAGE MY BOOKING,"Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.",1\r\n363,GOVERNMENT SERVICE TAX,A government service tax will be collected for air travel for flights originating in India.,1\r\n425,EMAIL NOTIFICATION,An email notification to the airline is required to inform them about the intention to travel with a mobility aid.,1\r\n44,TRANSPORT AUTHORIZATION,Transport authorization from the destination country authorities is required for transporting pets.,1\r\n46,MEASUREMENTS OF TRANSPORT CAGE,The measurements of the transport cage are required to ensure the animal\'s safety and compliance with transport regulations.,1\r\n51,TRANSPORTING ANIMALS,"The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.",1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n2,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\r\n3,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg."\r\n4,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"In certain instances (e.g. large animals), animals must be transported as checked baggage."\r\n5,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied)."\r\n11,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\r\n43,EL AL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\r\n47,EL AL,BAGGAGE POLICY,TRUE,"The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm."\r\n48,EL AL,BAGGAGE POLICY,TRUE,"Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division."\r\n49,EL AL,BAGGAGE POLICY,TRUE,"The maximum size permitted for an infant�s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all."\r\n50,EL AL,BAGGAGE POLICY,TRUE,EL AL reserves the right to change the excess baggage rates from time to time.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n11,EL AL,CHECKED BAGGAGE,"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline\'s baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.",74\r\n24,EL AL,BAGGAGE,"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.",70\r\n7,EL AL,PET,"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport",68\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n5,EL AL,SERVICE DOG,"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.",65\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.",63\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n10,EL AL,CARGO DIVISION,"EL AL\'s Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.",57\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n14,EL AL,PETS,"EL AL has established specific policies for transporting pets, which include weight limits and certain conditions that must be met. The airline offers services for transporting pets as cargo, and it requires specific documentation to ensure the safe and compliant travel of these animals.",55\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n21,EL AL,DOG,"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused",54\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n0,MINISTRY OF AGRICULTURE,EL AL,"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.",54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n30,EL AL,PERSONAL BAG,"El Al allows passengers to bring a personal bag on board, subject to size restrictions",52\r\n48,EL AL,BATTERY-POWERED MOBILITY AIDS,EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights,52\r\n49,EL AL,HAZARDOUS MATERIALS,EL AL requires advance notice and a Declaration Form for traveling with hazardous materials,52\r\n9,EL AL,ARRIVALS HALL,Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL,51\r\n6,EL AL,DANGEROUS DOG,"EL AL has a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy ensures that dangerous dogs are not allowed on their flights, reflecting the airline\'s commitment to safety and compliance with legal regulations.",51\r\n13,EL AL,CABIN,EL AL allows pets to be transported in the cabin under specific conditions,51\r\n25,EL AL,FRAGILE ITEM,EL AL does not bear responsibility for fragile items transported by the airline,51\r\n26,EL AL,VALUABLE ITEM,EL AL does not bear responsibility for valuable items transported by the airline,51\r\n27,EL AL,EQUIPMENT,EL AL has guidelines regarding the transport of passenger equipment,51\r\n47,EL AL,BATTERY-POWERED DEVICES,"EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.",51\r\n50,EL AL,MOBILITY AID,EL AL provides services for passengers traveling with mobility aids,51\r\n41,EL AL,$5,The additional handling fee of $5 is charged by EL AL for baggage checked through their service center,50\r\n42,EL AL,50% DISCOUNT,EL AL offers a 50% discount on baggage fees if purchased online before the flight,50\r\n38,EL AL,ADDITIONAL HANDLING FEE,EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center,50\r\n20,EL AL,ANIMAL AIR TRANSPORT COMPANIES,"EL AL may recommend using specialized companies for the air transport of animals, including service dogs.",50\r\n28,EL AL,BAGGAGE ISSUES,EL AL has policies in place to address various baggage issues encountered by travelers,50\r\n8,EL AL,CHECK-IN COUNTER,"EL AL requires passengers to check in at their designated check-in counters for their flights. Additionally, pet owners must arrive at the check-in counter with their pets to make the necessary transportation arrangements for their travel on EL AL.",50\r\n40,EL AL,CHECK-IN PROCESS,Passengers can add baggage during the check-in process for their EL AL flight,50\r\n43,EL AL,CHECKED BAGGAGE RULES,"Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL\'s policies",50\r\n46,EL AL,CODESHARE FLIGHTS,"The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.",50\r\n15,EL AL,TRANSPORTATION,"EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo",50\r\n23,EL AL,SAFETY AND SECURITY REGULATIONS,EL AL must adhere to safety and security regulations when transporting dogs,50\r\n33,EL AL,FLIGHT DESTINATION,Passengers must have necessary documents according to their flight destination when checking in with El Al,50\r\n39,EL AL,MANAGE MY BOOKING,Passengers can add baggage via the Manage my booking service provided by EL AL,50\r\n45,EL AL,GOVERNMENT SERVICE TAX,"The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.",50\r\n51,EL AL,EMAIL NOTIFICATION,An email notification is required to inform EL AL about traveling with a mobility aid,50\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n116,CARGO DIVISION,TRANSPORT AUTHORIZATION,The Cargo Division requires transport authorization from destination authorities for pet transport,9\r\n118,CARGO DIVISION,MEASUREMENTS OF TRANSPORT CAGE,The Cargo Division requires the measurements of the transport cage for compliance,9\r\n119,CARGO DIVISION,TRANSPORTING ANIMALS,"The Cargo Division specializes in transporting animals, including pets",9\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n339,VALUABLE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting valuable items,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,530 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n3,DANGEROUS DOG,"Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.",2\r\n21,LUGGAGE COMPARTMENT,"The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n6,EL AL,DANGEROUS DOG,"EL AL has a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy ensures that dangerous dogs are not allowed on their flights, reflecting the airline\'s commitment to safety and compliance with legal regulations.",51\r\n68,DANGEROUS DOG,LUGGAGE COMPARTMENT,Dangerous dogs are not allowed in the luggage compartment during transportation,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,534 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n421,HAZARDOUS MATERIALS,Hazardous materials include items like dry ice that require special handling and declaration when traveling.,3\r\n422,DECLARATION FORM,A Declaration Form is required for traveling with hazardous materials on EL AL flights.,1\r\n423,DRY ICE,Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n49,EL AL,HAZARDOUS MATERIALS,EL AL requires advance notice and a Declaration Form for traveling with hazardous materials,52\r\n450,HAZARDOUS MATERIALS,DECLARATION FORM,A Declaration Form is necessary for traveling with hazardous materials on EL AL flights,4\r\n451,HAZARDOUS MATERIALS,DRY ICE,Dry ice is classified as a hazardous material that requires special handling during air travel,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,537 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n16,CABIN,"The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.",2\r\n7,9KG,"The entity ""9KG"" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n13,EL AL,CABIN,EL AL allows pets to be transported in the cabin under specific conditions,51\r\n71,PET,9KG,"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported",21\r\n111,9KG,CABIN,The weight limit of 9kg applies to pets transported in the cabin,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,541 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n24,PETS,,6\r\n47,DOGS,"Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.",3\r\n50,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are necessary for transporting pets and must be presented at check-in.,1\r\n17,EXOTIC BIRDS,Exotic birds are among the pets that can be transported in the cabin with their owners.,1\r\n49,AIRPORT FACILITIES,Airport facilities in the United States may incur additional charges for inspecting and releasing pets.,1\r\n52,US,"The United States has specific regulations regarding the transportation of pets, particularly dogs.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n14,EL AL,PETS,"EL AL has established specific policies for transporting pets, which include weight limits and certain conditions that must be met. The airline offers services for transporting pets as cargo, and it requires specific documentation to ensure the safe and compliant travel of these animals.",55\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n134,PETS,DOGS,Dogs are classified as pets that require special regulations for transportation,9\r\n135,PETS,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are required for transporting pets,7\r\n129,EXOTIC BIRDS,PETS,Exotic birds are classified as pets that can be transported under certain conditions,7\r\n182,DOGS,AIRPORT FACILITIES,Airport facilities may charge additional fees for inspecting and releasing dogs,4\r\n181,DOGS,US,The US has specific regulations regarding the transportation of dogs,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,544 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n419,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.,3\r\n409,BATTERY-POWERED DEVICES,"Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.",2\r\n410,IATA REGULATIONS,"IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.",2\r\n420,FLIGHT-APPROVED BATTERIES,Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n48,EL AL,BATTERY-POWERED MOBILITY AIDS,EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights,52\r\n47,EL AL,BATTERY-POWERED DEVICES,"EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.",51\r\n444,IATA REGULATIONS,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids must comply with IATA regulations for air travel,5\r\n443,BATTERY-POWERED DEVICES,IATA REGULATIONS,Battery-powered devices must comply with IATA regulations for safe transport on flights.,4\r\n449,BATTERY-POWERED MOBILITY AIDS,FLIGHT-APPROVED BATTERIES,Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,548 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n196,FRAGILE ITEM,"The term ""FRAGILE ITEM"" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.",2\r\n198,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.,2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n25,EL AL,FRAGILE ITEM,EL AL does not bear responsibility for fragile items transported by the airline,51\r\n338,FRAGILE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile items,4\r\n339,VALUABLE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting valuable items,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,551 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n426,MOBILITY AID,,2\r\n424,FLIGHT AID,"Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n50,EL AL,MOBILITY AID,EL AL provides services for passengers traveling with mobility aids,51\r\n452,FLIGHT AID,MOBILITY AID,Mobility aids are part of the flight aid services provided to assist passengers,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,555 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n5,CHECKED BAGGAGE,"Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.",25\r\n336,$90,The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.,1\r\n86,50 KG,"The entity ""50 KG"" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.",1\r\n358,ADDITIONAL PIECES OF CHECKED BAGGAGE,There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.,1\r\n186,SNOWBOARD EQUIPMENT,"Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.",1\r\n190,PERMITTED DIMENSIONS,The maximum size and weight limits that checked baggage and special items must adhere to for transport.,1\r\n194,EL AL AIRCRAFT,The information provided applies specifically to EL AL flights on EL AL aircraft.,1\r\n349,EXCESS BAGGAGE,"Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.",1\r\n350,CODE-SHARE FLIGHTS,"Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.",1\r\n361,MAXIMUM SIZE,"The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.",1\r\n359,INFANT\'S CHECKED BAGGAGE,Infant\'s checked baggage includes items like strollers and infant car seats that can be checked without additional charge.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n11,EL AL,CHECKED BAGGAGE,"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline\'s baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.",74\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n69,PET,CHECKED BAGGAGE,"Pets can be transported as checked baggage under certain conditions, such as size and weight",44\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline\'s size and weight requirements,39\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,"The terms ""CHECKED BAGGAGE"" and ""BAGGAGE ALLOWANCE"" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.",37\r\n93,CHECKED BAGGAGE,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions,31\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n90,CHECKED BAGGAGE,EXCESS BAGGAGE CHARGES,Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions,29\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n91,CHECKED BAGGAGE,SKI EQUIPMENT,Ski equipment can be included in checked baggage under specific conditions,28\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n89,CHECKED BAGGAGE,AIRLINE,"Airlines have specific policies regarding checked baggage, including size and weight limits",27\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.",27\r\n104,CHECKED BAGGAGE,$90,The fee of $90 is specifically for checking a piece of baggage not included in the ticket price,26\r\n95,CHECKED BAGGAGE,50 KG,The maximum weight limit for checked baggage is 50 kg,26\r\n105,CHECKED BAGGAGE,ADDITIONAL PIECES OF CHECKED BAGGAGE,Additional pieces of checked baggage incur fees beyond the standard allowance,26\r\n92,CHECKED BAGGAGE,SNOWBOARD EQUIPMENT,Snowboard equipment can be included in checked baggage under specific conditions,26\r\n94,CHECKED BAGGAGE,PERMITTED DIMENSIONS,Checked baggage must meet the permitted dimensions for transport,26\r\n97,CHECKED BAGGAGE,EL AL AIRCRAFT,The baggage regulations apply specifically to EL AL aircraft,26\r\n101,CHECKED BAGGAGE,EXCESS BAGGAGE,"Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees",26\r\n103,CHECKED BAGGAGE,CODE-SHARE FLIGHTS,Baggage procedures may vary on code-share flights depending on the marketing carrier,26\r\n106,CHECKED BAGGAGE,MAXIMUM SIZE,"The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.",26\r\n107,CHECKED BAGGAGE,INFANT\'S CHECKED BAGGAGE,Infant\'s checked baggage is a specific category of checked baggage that includes items for infants.,26\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,559 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n183,EXCESS BAGGAGE CHARGES,"Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger\'s luggage exceeds the allowed limits, resulting in additional costs for the traveler.",4\r\n180,70 USD,"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.",2\r\n182,US DOLLARS,"US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.",4\r\n185,LOCAL CURRENCY,"Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n90,CHECKED BAGGAGE,EXCESS BAGGAGE CHARGES,Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions,29\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n302,SPORTING EQUIPMENT,70 USD,"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco",16\r\n329,US DOLLARS,EXCESS BAGGAGE CHARGES,Excess baggage charges are displayed in US dollars,8\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.",7\r\n327,70 USD,US DOLLARS,"70 USD is expressed in US Dollars, which is the currency for baggage fees",6\r\n331,EXCESS BAGGAGE CHARGES,LOCAL CURRENCY,"At some airports, payment for excess baggage charges is allowed only in local currency",6\r\n328,150 USD,US DOLLARS,"150 USD is expressed in US Dollars, which is the currency for baggage fees",6\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.",5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,562 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n187,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.,6\r\n189,EL AL CALL CENTER,The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.,1\r\n191,PACKING REGULATIONS,Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.,1\r\n192,MOTORIZED BICYCLES,Motorized bicycles are not allowed to be transported as checked baggage.,1\r\n193,EXCEPTIONAL CASES,"Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n93,CHECKED BAGGAGE,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions,31\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n333,BICYCLE,EL AL CALL CENTER,Pre-approval for transporting bicycles must be obtained from the EL AL call center,7\r\n334,BICYCLE,PACKING REGULATIONS,Bicycles must be packed according to specific packing regulations to be transported,7\r\n335,BICYCLE,MOTORIZED BICYCLES,Motorized bicycles are prohibited from being transported as checked baggage,7\r\n336,BICYCLE,EXCEPTIONAL CASES,Transport of bicycles may be allowed in exceptional cases with prior approval,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,566 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n179,SKI EQUIPMENT,"Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.",3\r\n177,COMPLIMENTARY TRANSPORT,Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.,2\r\n188,LITE FARE TICKET,A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.,1\r\n176,SNOWBOARDING EQUIPMENT,"Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n91,CHECKED BAGGAGE,SKI EQUIPMENT,Ski equipment can be included in checked baggage under specific conditions,28\r\n325,COMPLIMENTARY TRANSPORT,SKI EQUIPMENT,Ski equipment may qualify for complimentary transport under specific conditions set by the airline.,5\r\n326,SKI EQUIPMENT,LITE FARE TICKET,Ski equipment transport does not apply on LITE fare tickets,4\r\n324,SNOWBOARDING EQUIPMENT,COMPLIMENTARY TRANSPORT,Snowboarding equipment may also qualify for complimentary transport under specific conditions set by the airline.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,569 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n329,SUNDOR,Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.,5\r\n173,277 CM,"The entity ""277 CM"" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.",3\r\n169,OVERWEIGHT BAGGAGE,"Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline\'s specified weight restrictions.",8\r\n166,DIMENSIONS,"Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.",4\r\n328,OVERSIZED BAGGAGE,Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.,4\r\n168,CALL CENTER,The call center is a service location where passengers can contact for approval regarding overweight baggage.,1\r\n178,CALL CENTER APPROVAL,"Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n304,SPORTING EQUIPMENT,OVERWEIGHT BAGGAGE,"Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees",22\r\n316,DIMENSIONS,CARRY-ON BAGGAGE,DIMENSIONS play a critical role in determining the eligibility of CARRY-ON BAGGAGE for boarding. They are a key factor that airlines consider when assessing whether a piece of baggage meets the requirements for carry-on status.,21\r\n298,SPORTING EQUIPMENT,DIMENSIONS,Sporting equipment is subject to specific dimensions that are critical for determining whether it can be transported as checked baggage. These dimensions play a vital role in ensuring that the equipment meets airline regulations and can be safely accommodated during travel.,18\r\n147,WEIGHT,OVERWEIGHT BAGGAGE,Overweight baggage is defined by exceeding the weight limit set by the airline,14\r\n322,OVERWEIGHT BAGGAGE,SUNDOR,Sundor has specific guidelines for handling overweight baggage,13\r\n321,OVERWEIGHT BAGGAGE,OVERSIZED BAGGAGE,"OVERWEIGHT BAGGAGE and OVERSIZED BAGGAGE both necessitate special handling due to their size and weight. Additionally, travelers should be aware that both types of baggage may incur additional fees.",12\r\n319,OVERWEIGHT BAGGAGE,277 CM,"277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.",11\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n318,CALL CENTER,OVERWEIGHT BAGGAGE,"The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.",9\r\n320,OVERWEIGHT BAGGAGE,CALL CENTER APPROVAL,"Call center approval is necessary for transporting overweight baggage, ensuring compliance with airline policies.",9\r\n402,OVERSIZED BAGGAGE,SUNDOR,Sundor has specific guidelines for handling oversized baggage,9\r\n317,DIMENSIONS,OVERSIZED BAGGAGE,Oversized baggage is defined by exceeding authorized dimensions,8\r\n315,DIMENSIONS,277 CM,277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage,7\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,574 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n165,BUSINESS CLASS,"Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.",5\r\n164,PREMIUM CLASS,"Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.",4\r\n162,SPORTING EQUIPMENT,"Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.",14\r\n167,EL AL CARGO DIVISION,"The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.",2\r\n163,ECONOMY CLASS,"Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.",7\r\n35,WEIGHT,"Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.",6\r\n38,CARGO,"CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.",4\r\n181,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America.,2\r\n174,190 CM,190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.,1\r\n170,ADDITIONAL SPORTS EQUIPMENT,Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.,1\r\n172,30 KG,"The entity ""30 KG"" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.",2\r\n171,32 KG,"The entity ""32 KG"" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.",2\r\n175,LITE FARES,"LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline\'s size and weight requirements,39\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.",27\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,"The entity ""WEIGHT"" is a crucial factor in determining the eligibility of ""CARRY-ON BAGGAGE."" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n304,SPORTING EQUIPMENT,OVERWEIGHT BAGGAGE,"Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees",22\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.",21\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n143,WEIGHT,SPORTING EQUIPMENT,"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.",20\r\n297,SPORTING EQUIPMENT,BUSINESS CLASS,"Business Class provides the option for transporting sporting equipment, adhering to specific size and weight conditions that differ from those in Economy and Premium Class. This class has distinct weight limits for sporting equipment, allowing for a more accommodating experience for travelers with such items.",19\r\n155,CARGO,SPORTING EQUIPMENT,"CARGO provides services for transporting sporting equipment that exceeds standard baggage limits. Specifically, sporting equipment can be transported as cargo when it surpasses the standard baggage allowance, ensuring that athletes and sports enthusiasts can travel with their necessary gear without restrictions.",18\r\n296,SPORTING EQUIPMENT,PREMIUM CLASS,"Premium Class provides the option for transporting sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that customers can carry their sporting gear while complying with the established size and weight restrictions.",18\r\n298,SPORTING EQUIPMENT,DIMENSIONS,Sporting equipment is subject to specific dimensions that are critical for determining whether it can be transported as checked baggage. These dimensions play a vital role in ensuring that the equipment meets airline regulations and can be safely accommodated during travel.,18\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n303,SPORTING EQUIPMENT,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America,16\r\n299,SPORTING EQUIPMENT,EL AL CARGO DIVISION,"The EL AL Cargo Division offers a specialized service for transporting sporting equipment that exceeds standard baggage limits and allowances. This division provides an alternative solution for individuals and organizations needing to transport larger or heavier sporting gear, ensuring that such items can be shipped efficiently and effectively.",16\r\n302,SPORTING EQUIPMENT,70 USD,"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco",16\r\n301,SPORTING EQUIPMENT,190 CM,"190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.",15\r\n300,SPORTING EQUIPMENT,ADDITIONAL SPORTS EQUIPMENT,"Sporting equipment encompasses a variety of gear used for various sports activities. Within this category, additional sports equipment specifically refers to any extra gear that necessitates special handling or can be transported beyond the standard baggage allowance. This includes items that exceed the typical limits set for standard baggage, ensuring that athletes and sports enthusiasts can carry the necessary equipment for their activities without restrictions.",15\r\n147,WEIGHT,OVERWEIGHT BAGGAGE,Overweight baggage is defined by exceeding the weight limit set by the airline,14\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n306,ECONOMY CLASS,30 KG,"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.",9\r\n154,CARGO,BEN GURION AIRPORT,"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport",9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n144,WEIGHT,30 KG,30 kg is the maximum weight limit for sports equipment in Economy Class,8\r\n145,WEIGHT,32 KG,32 kg is the maximum weight limit for sports equipment in Business Class,8\r\n307,ECONOMY CLASS,LITE FARES,"The Economy Class includes a category known as Lite Fares, which are characterized by certain restrictions and limited services. Specifically, Lite Fares impose limitations on the transport of sporting equipment, differentiating them from standard Economy Class offerings. These fares are designed to provide a more economical option for travelers while offering fewer amenities compared to regular Economy Class fares.",8\r\n313,BUSINESS CLASS,32 KG,"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.",7\r\n328,150 USD,US DOLLARS,"150 USD is expressed in US Dollars, which is the currency for baggage fees",6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,578 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n267,CARRY-ON BAGGAGE,Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.,17\r\n277,CHECKED LUGGAGE,,2\r\n273,BOOKING MANAGEMENT,Booking management refers to the section of the airline\'s website where passengers can manage their flight bookings and check baggage policies.,1\r\n268,PERSONAL BAGS,"Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.",1\r\n269,SUN DOR,Sun Dor is an airline that operates flights with specific carry-on baggage policies.,1\r\n270,MATMID FREQUENT FLYER CLUB,"The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.",1\r\n271,TROLLEY,"A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.",1\r\n272,FLIGHT TICKET TERMS,Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.,1\r\n274,OVERHEAD COMPARTMENTS,"Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.",1\r\n276,NORTH AMERICA,"North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.",1\r\n290,MAXIMUM DIMENSIONS,Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.,1\r\n275,BAGGAGE CONVEYOR BELT,The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,"The entity ""WEIGHT"" is a crucial factor in determining the eligibility of ""CARRY-ON BAGGAGE."" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n316,DIMENSIONS,CARRY-ON BAGGAGE,DIMENSIONS play a critical role in determining the eligibility of CARRY-ON BAGGAGE for boarding. They are a key factor that airlines consider when assessing whether a piece of baggage meets the requirements for carry-on status.,21\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.",19\r\n373,CARRY-ON BAGGAGE,BOOKING MANAGEMENT,"Booking management provides passengers with the ability to check their carry-on baggage allowances and policies, as well as manage their bookings. This functionality ensures that travelers are informed about the specific regulations regarding their carry-on items, facilitating a smoother travel experience.",18\r\n367,CARRY-ON BAGGAGE,PERSONAL BAGS,"CARRY-ON BAGGAGE and PERSONAL BAGS are closely related concepts in air travel. Personal bags are classified as a type of carry-on baggage, specifically designed to be stored under the seat in front of the passenger. This allows for easy access during the flight while adhering to airline regulations regarding carry-on items.",18\r\n368,CARRY-ON BAGGAGE,SUN DOR,Sun Dor has specific policies regarding carry-on baggage for its flights.,18\r\n369,CARRY-ON BAGGAGE,MATMID FREQUENT FLYER CLUB,"The Matmid Frequent Flyer Club status has a significant impact on the eligibility for carry-on baggage for passengers. Membership in the Matmid Frequent Flyer Club influences the rules and allowances regarding carry-on baggage, suggesting that those who are members may have different or enhanced privileges compared to non-members.",18\r\n371,CARRY-ON BAGGAGE,TROLLEY,A trolley is a specific type of carry-on baggage that passengers can bring into the cabin and can be stored in overhead compartments.,18\r\n372,CARRY-ON BAGGAGE,FLIGHT TICKET TERMS,The flight ticket terms outline the policies and rules regarding carry-on baggage allowances applicable to passengers. These terms provide essential information that helps travelers understand the specific regulations governing the amount and type of carry-on baggage they are permitted to bring on board.,18\r\n374,CARRY-ON BAGGAGE,OVERHEAD COMPARTMENTS,Overhead compartments are designated storage areas for carry-on baggage during the flight.,18\r\n375,CARRY-ON BAGGAGE,NORTH AMERICA,"CARRY-ON BAGGAGE policies are specifically applicable to flights from and to NORTH AMERICA. These policies outline the regulations and restrictions regarding the size, weight, and number of carry-on items that passengers are allowed to bring on board.",18\r\n376,CARRY-ON BAGGAGE,MAXIMUM DIMENSIONS,Maximum dimensions are critical for determining what carry-on baggage is allowed,18\r\n378,BAGGAGE CONVEYOR BELT,CHECKED LUGGAGE,The baggage conveyor belt is where checked luggage is retrieved after a flight.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,582 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n293,CARRY-ON BAG,"A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.",10\r\n300,OVERSIZED ITEMS,"Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.",2\r\n298,115 CM,The total maximum dimension for a carry-on bag on El Al flights is 115 cm.,1\r\n296,25 CM,The maximum depth for a carry-on bag on El Al flights is 25 cm.,1\r\n295,45 CM,The maximum width for a carry-on bag on El Al flights is 45 cm.,1\r\n294,56 CM,The maximum length for a carry-on bag on El Al flights is 56 cm.,1\r\n301,EMERGENCY EXIT ROW,The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.,1\r\n302,SERVICE CENTER,El Al\'s service center is where passengers can coordinate the transport of unusual items.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n382,16 KG,CARRY-ON BAG,The maximum weight limit for one carry-on bag is 16 kg,13\r\n384,20 KG,CARRY-ON BAG,The combined weight limit for carry-on bags is 20 kg,13\r\n390,BAG,CARRY-ON BAG,A carry-on bag is a type of bag that must meet specific weight and dimension limits,13\r\n398,CARRY-ON BAG,OVERSIZED ITEMS,Oversized items may require special arrangements for transport in the cabin,12\r\n397,CARRY-ON BAG,115 CM,The total maximum dimension for a carry-on bag is 115 cm,11\r\n396,CARRY-ON BAG,25 CM,The maximum depth for a carry-on bag is 25 cm,11\r\n395,CARRY-ON BAG,45 CM,The maximum width for a carry-on bag is 45 cm,11\r\n394,CARRY-ON BAG,56 CM,The maximum length for a carry-on bag is 56 cm,11\r\n399,CARRY-ON BAG,EMERGENCY EXIT ROW,Passengers in the emergency exit row may store bags in overhead compartments,11\r\n400,OVERSIZED ITEMS,SERVICE CENTER,Passengers must contact the service center for approval to carry oversized items,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,585 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n292,PERSONAL BAG,"A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.",3\r\n291,BAG,"A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.",3\r\n297,18X38X30 CM,"The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.",1\r\n299,DUTY-FREE ITEMS,Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n30,EL AL,PERSONAL BAG,"El Al allows passengers to bring a personal bag on board, subject to size restrictions",52\r\n390,BAG,CARRY-ON BAG,A carry-on bag is a type of bag that must meet specific weight and dimension limits,13\r\n391,BAG,PERSONAL BAG,A personal bag is a specific type of bag that passengers can bring on board,6\r\n393,PERSONAL BAG,18X38X30 CM,The maximum dimensions for a personal bag are 18x38x30 cm,4\r\n392,BAG,DUTY-FREE ITEMS,Duty-free items are included in the baggage allowance but do not count towards the limit,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,589 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n289,MAXIMUM WEIGHT,"The term ""Maximum Weight"" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.",3\r\n279,16 KG,"The entity ""16 KG"" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.",3\r\n280,20 KG,"The entity ""20 KG"" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.",3\r\n278,BAGS,"Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.",3\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n382,16 KG,CARRY-ON BAG,The maximum weight limit for one carry-on bag is 16 kg,13\r\n384,20 KG,CARRY-ON BAG,The combined weight limit for carry-on bags is 20 kg,13\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n381,16 KG,MAXIMUM WEIGHT,The maximum weight for one bag is defined as 16 kg,6\r\n379,BAGS,16 KG,The weight limit for one bag is set at 16 kg as per airline policy,6\r\n383,20 KG,MAXIMUM WEIGHT,The maximum combined weight for all bags is defined as 20 kg,6\r\n380,BAGS,20 KG,The combined weight limit for all bags is set at 20 kg as per airline policy,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,593 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n333,BAGGAGE ALLOWANCE,"Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.",12\r\n362,EXCESS BAGGAGE RATES,"Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.",3\r\n330,LITE SERVICE,Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.,2\r\n331,CLASSIC SERVICE,Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.,2\r\n332,FLEX SERVICE,"Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.",2\r\n352,FLIGHT SEGMENT,"A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.",1\r\n360,LITE TICKETS,Lite tickets are a type of ticket that does not include any baggage allowance.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,"The terms ""CHECKED BAGGAGE"" and ""BAGGAGE ALLOWANCE"" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.",37\r\n413,BAGGAGE ALLOWANCE,BAGGAGE POLICY,Baggage allowance is determined by the baggage policy of the airline,17\r\n408,BAGGAGE ALLOWANCE,ADDITIONAL PIECES OF BAGGAGE,"Additional pieces of baggage can be checked in for a fee, which varies depending on the service type",15\r\n412,BAGGAGE ALLOWANCE,EXCESS BAGGAGE RATES,"Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.",15\r\n210,FLIGHT TICKET,BAGGAGE ALLOWANCE,The flight ticket includes information about the baggage allowance for the passenger,15\r\n410,BAGGAGE ALLOWANCE,TICKET TYPE,The baggage allowance is determined by the ticket type specified on the reservation,14\r\n405,LITE SERVICE,BAGGAGE ALLOWANCE,Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering,14\r\n406,CLASSIC SERVICE,BAGGAGE ALLOWANCE,Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n407,FLEX SERVICE,BAGGAGE ALLOWANCE,Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n409,BAGGAGE ALLOWANCE,FLIGHT SEGMENT,Baggage allowance is specified for each flight segment on the ticket,13\r\n411,BAGGAGE ALLOWANCE,LITE TICKETS,"Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.",13\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.",7\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.",5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,597 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n96,FLIGHT TICKET,"A flight ticket is a document that confirms a passenger\'s reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.",3\r\n335,ADDITIONAL PIECES OF BAGGAGE,"Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.",3\r\n334,MANAGE YOUR BOOKING,"""Manage Your Booking"" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.",3\r\n343,PRE-ORDERING,"Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.",1\r\n338,THREE HOURS,Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n86,PET,FLIGHT TICKET,"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.",22\r\n408,BAGGAGE ALLOWANCE,ADDITIONAL PIECES OF BAGGAGE,"Additional pieces of baggage can be checked in for a fee, which varies depending on the service type",15\r\n210,FLIGHT TICKET,BAGGAGE ALLOWANCE,The flight ticket includes information about the baggage allowance for the passenger,15\r\n414,MANAGE YOUR BOOKING,ADDITIONAL PIECES OF BAGGAGE,Passengers can add additional pieces of baggage through the Manage Your Booking page,6\r\n211,FLIGHT TICKET,MANAGE YOUR BOOKING,"The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances",6\r\n416,ADDITIONAL PIECES OF BAGGAGE,PRE-ORDERING,Pre-ordering is required for checking additional pieces of baggage beyond the standard allowance,4\r\n415,MANAGE YOUR BOOKING,THREE HOURS,The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,601 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n341,BAGGAGE POLICY,"The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.",5\r\n345,STANDARD BAGGAGE,"Standard baggage refers to luggage that complies with the airline\'s specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline\'s size and weight requirements,23\r\n413,BAGGAGE ALLOWANCE,BAGGAGE POLICY,Baggage allowance is determined by the baggage policy of the airline,17\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n418,BAGGAGE POLICY,STANDARD BAGGAGE,Standard baggage must comply with the airline\'s baggage policy,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,604 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n355,TICKET TYPE,The ticket type determines the baggage allowance and rules applicable to each passenger\'s reservation.,2\r\n357,FREE BAGGAGE ALLOWANCE,"The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n410,BAGGAGE ALLOWANCE,TICKET TYPE,The baggage allowance is determined by the ticket type specified on the reservation,14\r\n420,TICKET TYPE,FREE BAGGAGE ALLOWANCE,The free baggage allowance is based on the ticket type and is specified for each flight segment,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,608 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n2,SERVICE DOG,"A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.",16\r\n34,CAGE,"CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.",2\r\n104,ADDITIONAL CHARGES,Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.,1\r\n103,FLIGHT DATE,"The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.",1\r\n102,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,1\r\n98,HEATHROW AIRPORT,Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.,1\r\n93,I.D.F SOLDIER,I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.,1\r\n101,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,1\r\n106,SANITARY CONDITIONS,"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.",1\r\n87,VETERINARY CERTIFICATE,A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.,1\r\n94,SHELL SHOCK,Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n5,EL AL,SERVICE DOG,"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.",65\r\n59,SERVICE DOG,ISRAEL,"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.",25\r\n53,SERVICE DOG,PASSENGER CABIN,Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.,21\r\n65,SERVICE DOG,CHECK-IN COUNTERS,Passengers must present their documentation for traveling with a service dog at the check-in counters.,21\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n60,SERVICE DOG,CAGE,A cage is required for the transport of a service dog to ensure its safety and comfort during the flight.,18\r\n58,SERVICE DOG,UNITED STATES,"The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.",18\r\n64,SERVICE DOG,ADDITIONAL CHARGES,Additional charges may apply for the inspection and release of a service dog at airport facilities in the United States.,17\r\n63,SERVICE DOG,FLIGHT DATE,The flight date is crucial for passengers traveling with a service dog to ensure compliance with registration and documentation requirements.,17\r\n62,SERVICE DOG,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,17\r\n57,SERVICE DOG,HEATHROW AIRPORT,Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.,17\r\n55,SERVICE DOG,I.D.F SOLDIER,I.D.F soldiers may transport service dogs at no additional cost under specific conditions.,17\r\n61,SERVICE DOG,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,17\r\n67,SERVICE DOG,SANITARY CONDITIONS,"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.",17\r\n54,SERVICE DOG,VETERINARY CERTIFICATE,"A service dog must possess a veterinary certificate, which is essential to confirm that the dog is vaccinated and fit for travel. This certificate is a requirement for the transport of service dogs, ensuring their health and safety during travel.",17\r\n56,SERVICE DOG,SHELL SHOCK,Passengers experiencing shell shock may qualify to transport service dogs at no additional cost.,17\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,611 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n42,CDC,The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC\'s requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.,3\r\n99,UNITED STATES,"The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n58,SERVICE DOG,UNITED STATES,"The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.",18\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n179,CDC,UNITED STATES,"The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.",5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,615 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n105,CHECK-IN COUNTERS,"Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.",5\r\n317,PASSENGERS,Individuals traveling on flights who must check in at the counters regardless of luggage.,2\r\n318,SECURITY CHECK AREAS,,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n65,SERVICE DOG,CHECK-IN COUNTERS,Passengers must present their documentation for traveling with a service dog at the check-in counters.,21\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n215,CHECK-IN COUNTERS,PASSENGERS,Passengers must check in at the counters regardless of luggage,7\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n216,CHECK-IN COUNTERS,SECURITY CHECK AREAS,Passengers must proceed to security check areas after checking in at the counters,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:11,648 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,649 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,649 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,649 httpcore.http11 DEBUG send_request_body.complete -13:53:11,649 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,649 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,650 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,650 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,650 httpcore.http11 DEBUG send_request_body.complete -13:53:11,650 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,650 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,651 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,651 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,651 httpcore.http11 DEBUG send_request_body.complete -13:53:11,651 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,651 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,652 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,652 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,652 httpcore.http11 DEBUG send_request_body.complete -13:53:11,652 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,652 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,653 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,653 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,653 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,653 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,653 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,654 httpcore.http11 DEBUG send_request_body.complete -13:53:11,654 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,654 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,654 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,654 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,655 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,655 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,655 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,655 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,656 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,656 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,656 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,656 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,656 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,657 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,657 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,658 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,658 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,658 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:11,663 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,663 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,664 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,664 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,664 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,664 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,664 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,664 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,664 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,664 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,665 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,665 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,665 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,666 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,666 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,666 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,666 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,666 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,666 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,666 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,667 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,667 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,667 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,667 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,667 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,667 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,668 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,668 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,668 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,668 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,668 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,668 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,668 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,668 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,669 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,669 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,669 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,669 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,669 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:11,669 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:11,675 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,675 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,675 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,680 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,681 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,681 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,681 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,681 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,681 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,704 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,704 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,704 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,704 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,704 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,704 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,705 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,705 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,705 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,705 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,705 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,705 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,705 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,705 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,706 httpcore.connection DEBUG start_tls.complete return_value= -13:53:11,707 httpcore.http11 DEBUG send_request_body.complete -13:53:11,707 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,707 httpcore.http11 DEBUG send_request_body.complete -13:53:11,707 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,707 httpcore.http11 DEBUG send_request_body.complete -13:53:11,707 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,707 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,707 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,707 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,707 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,707 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,707 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,707 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,708 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,709 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,709 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,709 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,709 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,709 httpcore.http11 DEBUG send_request_headers.started request= -13:53:11,709 httpcore.http11 DEBUG send_request_body.complete -13:53:11,709 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,709 httpcore.http11 DEBUG send_request_body.complete -13:53:11,710 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,710 httpcore.http11 DEBUG send_request_body.complete -13:53:11,710 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,710 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,710 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,710 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,710 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,710 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,710 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,710 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,710 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,710 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,710 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,710 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,710 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,711 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,711 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,711 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,711 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,711 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,711 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,711 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,711 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,711 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,711 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,711 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,711 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,711 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,712 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,712 httpcore.http11 DEBUG send_request_headers.complete -13:53:11,712 httpcore.http11 DEBUG send_request_body.started request= -13:53:11,712 httpcore.http11 DEBUG send_request_body.complete -13:53:11,712 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,712 httpcore.http11 DEBUG send_request_body.complete -13:53:11,712 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,712 httpcore.http11 DEBUG send_request_body.complete -13:53:11,712 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,712 httpcore.http11 DEBUG send_request_body.complete -13:53:11,712 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,712 httpcore.http11 DEBUG send_request_body.complete -13:53:11,713 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,713 httpcore.http11 DEBUG send_request_body.complete -13:53:11,713 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,713 httpcore.http11 DEBUG send_request_body.complete -13:53:11,713 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,713 httpcore.http11 DEBUG send_request_body.complete -13:53:11,713 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,713 httpcore.http11 DEBUG send_request_body.complete -13:53:11,713 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,713 httpcore.http11 DEBUG send_request_body.complete -13:53:11,713 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,713 httpcore.http11 DEBUG send_request_body.complete -13:53:11,713 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,714 httpcore.http11 DEBUG send_request_body.complete -13:53:11,714 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,714 httpcore.http11 DEBUG send_request_body.complete -13:53:11,714 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:11,714 httpcore.http11 DEBUG send_request_body.complete -13:53:11,714 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:18,902 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:19 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'7012'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9993'), (b'x-ratelimit-remaining-tokens', b'9939611'), (b'x-ratelimit-reset-requests', b'40ms'), (b'x-ratelimit-reset-tokens', b'362ms'), (b'x-request-id', b'req_8ef126e47c0b3a29f598bec20bdcfdd0'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cd84ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:18,902 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:18,902 httpcore.http11 DEBUG receive_response_body.started request= -13:53:18,903 httpcore.http11 DEBUG receive_response_body.complete -13:53:18,903 httpcore.http11 DEBUG response_closed.started -13:53:18,903 httpcore.http11 DEBUG response_closed.complete -13:53:18,903 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:18,904 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 7.3439999999827705. input_tokens=2136, output_tokens=434 -13:53:18,906 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n107,PASSENGER,"The term ""PASSENGER"" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline\'s baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline\'s policies regarding baggage and services, ensuring a standardized travel experience.",7\r\n184,AIRLINE,"An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.",2\r\n381,ADDITIONAL SERVICES,"Refers to extra services that can be ordered by passengers, which may incur additional charges.",2\r\n195,DESTINATION COUNTRY,"The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.",2\r\n109,FORMS,Necessary documentation that passengers must provide to transport a dog on EL AL flights.,1\r\n112,HOLD,,1\r\n384,FULL CHARGE,Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n89,CHECKED BAGGAGE,AIRLINE,"Airlines have specific policies regarding checked baggage, including size and weight limits",27\r\n212,DOG,PASSENGER,The passenger is responsible for the dog\'s behavior and must meet conditions for its transport,12\r\n221,PASSENGER,ADDITIONAL SERVICES,"Passengers can order additional services, which may incur charges",9\r\n220,PASSENGER,AIRLINE,Passengers are subject to the policies of the airline regarding baggage and additional services,9\r\n219,PASSENGER,DESTINATION COUNTRY,Passengers must comply with the regulations of the destination country regarding baggage,9\r\n218,PASSENGER,FORMS,Passengers must provide the required forms to transport a dog on EL AL flights,8\r\n217,PASSENGER,HOLD,"If the dog cannot be transported in the passenger cabin, it may be placed in the hold",8\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n423,ADDITIONAL SERVICES,FULL CHARGE,Ordering additional services will result in a full charge to the passenger,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:18,906 httpcore.http11 DEBUG send_request_headers.started request= -13:53:18,907 httpcore.http11 DEBUG send_request_headers.complete -13:53:18,907 httpcore.http11 DEBUG send_request_body.started request= -13:53:18,907 httpcore.http11 DEBUG send_request_body.complete -13:53:18,907 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:21,172 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:21 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9255'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9992'), (b'x-ratelimit-remaining-tokens', b'9920276'), (b'x-ratelimit-reset-requests', b'42ms'), (b'x-ratelimit-reset-tokens', b'478ms'), (b'x-request-id', b'req_f67ebba2e70ea9f518afa1d7c142f6ea'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239c9b1c231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:21,172 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:21,172 httpcore.http11 DEBUG receive_response_body.started request= -13:53:21,173 httpcore.http11 DEBUG receive_response_body.complete -13:53:21,173 httpcore.http11 DEBUG response_closed.started -13:53:21,173 httpcore.http11 DEBUG response_closed.complete -13:53:21,173 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:21,174 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 9.578000000037719. input_tokens=2222, output_tokens=577 -13:53:21,176 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n97,DOG,A dog is an animal that may be transported by passengers under certain conditions and regulations.,5\r\n89,PASSENGER CABIN,"The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.",5\r\n91,CAT,"Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.",1\r\n111,DIRECT THREAT,A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.,1\r\n110,DISTURBANCE,"A situation where the dog\'s behavior causes disruption on the aircraft, leading to potential refusal of transport.",1\r\n92,EXOTIC BIRD,"Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n21,EL AL,DOG,"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused",54\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n53,SERVICE DOG,PASSENGER CABIN,Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.,21\r\n212,DOG,PASSENGER,The passenger is responsible for the dog\'s behavior and must meet conditions for its transport,12\r\n207,PASSENGER CABIN,DOG,Dogs can be transported in the passenger cabin under specific conditions related to size and weight.,10\r\n208,PASSENGER CABIN,CAT,Cats can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n214,DOG,DIRECT THREAT,"If a dog is deemed a direct threat, it may be refused transport by EL AL",6\r\n213,DOG,DISTURBANCE,"A dog\'s behavior may lead to a disturbance, affecting its ability to be transported",6\r\n209,PASSENGER CABIN,EXOTIC BIRD,Exotic birds can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:21,176 httpcore.http11 DEBUG send_request_headers.started request= -13:53:21,177 httpcore.http11 DEBUG send_request_headers.complete -13:53:21,177 httpcore.http11 DEBUG send_request_body.started request= -13:53:21,177 httpcore.http11 DEBUG send_request_body.complete -13:53:21,177 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:22,458 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10554'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9951042'), (b'x-ratelimit-reset-requests', b'29ms'), (b'x-ratelimit-reset-tokens', b'293ms'), (b'x-request-id', b'req_42e4a5a835325fb316dae713edae063a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239ce2c7d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:22,458 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:22,458 httpcore.http11 DEBUG receive_response_body.started request= -13:53:22,459 httpcore.http11 DEBUG receive_response_body.complete -13:53:22,459 httpcore.http11 DEBUG response_closed.started -13:53:22,459 httpcore.http11 DEBUG response_closed.complete -13:53:22,459 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:22,460 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.85899999999674. input_tokens=2936, output_tokens=653 -13:53:22,462 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n152,LIQUIDS IN CARRY-ON BAGS,Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.,14\r\n161,AEROSOLS,,1\r\n156,BABY FOOD,"Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.",1\r\n322,CLEAR RESEALABLE PLASTIC BAG,"Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.",1\r\n155,COSMETICS,"A type of liquid that may be carried in carry-on bags, subject to restrictions.",1\r\n158,CREAMS,"CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.",1\r\n323,DOCTOR\'S NOTE,Document required for carrying medications and special food products at the security checkpoint.,1\r\n154,GELS,"GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.",1\r\n153,WHISKEY,"A type of liquid that may be carried in carry-on bags, subject to restrictions.",1\r\n157,PRESCRIPTION MEDICATIONS,"A type of liquid that may be carried in carry-on bags, subject to restrictions.",1\r\n159,SECURITY CHECKPOINT,"The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations.",1\r\n319,U.S,Country with specific guidelines regarding the carrying of liquids in handbags.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.",63\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.",23\r\n283,LIQUIDS IN CARRY-ON BAGS,CARRY-ON BAGS,Restrictions on liquids apply specifically to items carried in carry-on bags.,22\r\n281,LIQUIDS IN CARRY-ON BAGS,AEROSOLS,Aerosols are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n279,LIQUIDS IN CARRY-ON BAGS,BABY FOOD,Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n286,LIQUIDS IN CARRY-ON BAGS,CLEAR RESEALABLE PLASTIC BAG,"A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.",15\r\n278,LIQUIDS IN CARRY-ON BAGS,COSMETICS,Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n282,LIQUIDS IN CARRY-ON BAGS,CREAMS,Creams are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n287,LIQUIDS IN CARRY-ON BAGS,DOCTOR\'S NOTE,A doctor\'s note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.,15\r\n277,LIQUIDS IN CARRY-ON BAGS,GELS,Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n276,LIQUIDS IN CARRY-ON BAGS,WHISKEY,Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n280,LIQUIDS IN CARRY-ON BAGS,PRESCRIPTION MEDICATIONS,Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n284,LIQUIDS IN CARRY-ON BAGS,SECURITY CHECKPOINT,"At the security checkpoint, liquids that exceed the permitted amount will be discarded.",15\r\n285,LIQUIDS IN CARRY-ON BAGS,U.S,The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.,15\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:22,463 httpcore.http11 DEBUG send_request_headers.started request= -13:53:22,463 httpcore.http11 DEBUG send_request_headers.complete -13:53:22,463 httpcore.http11 DEBUG send_request_body.started request= -13:53:22,463 httpcore.http11 DEBUG send_request_body.complete -13:53:22,463 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:22,537 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10563'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9914051'), (b'x-ratelimit-reset-requests', b'13ms'), (b'x-ratelimit-reset-tokens', b'515ms'), (b'x-request-id', b'req_c8ec1f0c336cfe90781792a5f6285298'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239ca7dc21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:22,537 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:22,537 httpcore.http11 DEBUG receive_response_body.started request= -13:53:22,537 httpcore.http11 DEBUG receive_response_body.complete -13:53:22,537 httpcore.http11 DEBUG response_closed.started -13:53:22,537 httpcore.http11 DEBUG response_closed.complete -13:53:22,537 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:22,538 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.0. input_tokens=2110, output_tokens=519 -13:53:22,540 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n160,CARRY-ON BAGS,"CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.",8\r\n281,MEDICATIONS,Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.,1\r\n282,PASSPORTS,Passports are required documents for international travel and should be easily accessible during flights.,1\r\n283,VALUABLES,Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.,1\r\n288,RECOMMENDATION,"A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n283,LIQUIDS IN CARRY-ON BAGS,CARRY-ON BAGS,Restrictions on liquids apply specifically to items carried in carry-on bags.,22\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n293,CARRY-ON BAGS,CHECKED BAGS,"If no free space is available, carry-on bags will be checked to the plane\'s belly",11\r\n289,CARRY-ON BAGS,MEDICATIONS,Medications should be kept in carry-on bags for easy access during the flight,9\r\n290,CARRY-ON BAGS,PASSPORTS,Passports should be kept in carry-on bags for easy access during the flight,9\r\n291,CARRY-ON BAGS,VALUABLES,Valuables should be kept in carry-on bags for easy access during the flight,9\r\n294,CARRY-ON BAGS,RECOMMENDATION,The recommendation advises passengers to remove certain items from carry-on bags for easy access,9\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:22,541 httpcore.http11 DEBUG send_request_headers.started request= -13:53:22,541 httpcore.http11 DEBUG send_request_headers.complete -13:53:22,541 httpcore.http11 DEBUG send_request_body.started request= -13:53:22,542 httpcore.http11 DEBUG send_request_body.complete -13:53:22,542 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:22,612 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:22 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10713'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9991'), (b'x-ratelimit-remaining-tokens', b'9930944'), (b'x-ratelimit-reset-requests', b'49ms'), (b'x-ratelimit-reset-tokens', b'414ms'), (b'x-request-id', b'req_5fef52c6798dc8ffe542b22ab80393dd'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cedf7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:22,612 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:22,613 httpcore.http11 DEBUG receive_response_body.started request= -13:53:22,613 httpcore.http11 DEBUG receive_response_body.complete -13:53:22,613 httpcore.http11 DEBUG response_closed.started -13:53:22,613 httpcore.http11 DEBUG response_closed.complete -13:53:22,613 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:22,614 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.03100000001723. input_tokens=2307, output_tokens=662 -13:53:22,616 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n285,CHECKED BAGS,"Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane\'s cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.",3\r\n286,PLANE\'S BELLY,The plane\'s belly refers to the cargo hold of the aircraft where checked bags are stored.,1\r\n287,NO CHARGE,No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n293,CARRY-ON BAGS,CHECKED BAGS,"If no free space is available, carry-on bags will be checked to the plane\'s belly",11\r\n388,CHECKED BAGS,PLANE\'S BELLY,Checked bags are stored in the plane\'s belly during the flight,4\r\n389,CHECKED BAGS,NO CHARGE,Checked bags will incur no charge if carry-on bags are checked due to lack of space,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:22,617 httpcore.http11 DEBUG send_request_headers.started request= -13:53:22,617 httpcore.http11 DEBUG send_request_headers.complete -13:53:22,617 httpcore.http11 DEBUG send_request_body.started request= -13:53:22,617 httpcore.http11 DEBUG send_request_body.complete -13:53:22,617 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:23,61 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11189'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9977211'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'136ms'), (b'x-request-id', b'req_25e1a9e7b90482cb11ce7668ee489ec6'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239c991c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:23,62 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:23,62 httpcore.http11 DEBUG receive_response_body.started request= -13:53:23,63 httpcore.http11 DEBUG receive_response_body.complete -13:53:23,63 httpcore.http11 DEBUG response_closed.started -13:53:23,63 httpcore.http11 DEBUG response_closed.complete -13:53:23,63 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:23,64 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.46799999999348. input_tokens=2386, output_tokens=684 -13:53:23,66 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n210,ARTY RIMON,"ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.",12\r\n240,IMPORTANT TO KNOW,Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.,2\r\n233,CARGO TIKIM VE MIZVADOT,"Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.",1\r\n249,SHLOMO HA-MELEKH,,1\r\n244,REHOVOT,Rehovot is a city where ARTY Rimon provides pickup and delivery services.,1\r\n246,SHOHAM,Shoham is a city where ARTY Rimon provides pickup and delivery services.,1\r\n247,RAMLE,Ramle is a city where ARTY Rimon provides pickup and delivery services.,1\r\n248,LOD,Lod is a city where ARTY Rimon provides pickup and delivery services.,1\r\n241,DELAY IN RECEIVING BAGGAGE,"Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n340,MAKOR HAZIUD,ARTY RIMON,"Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon",15\r\n343,ARTY RIMON,MOKA,"Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship",14\r\n344,ARTY RIMON,RIMON MIZVADOT VE TIKIM,"Both provide similar services in different locations, indicating a competitive relationship",14\r\n345,ARTY RIMON,HAGALGAL,"Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon",14\r\n346,ARTY RIMON,IMPORTANT TO KNOW,The policy regarding baggage damage is relevant to the services provided by ARTY Rimon,14\r\n342,ARTY RIMON,CARGO TIKIM VE MIZVADOT,"Both provide services related to luggage and bags, indicating a potential partnership or competition",13\r\n347,ARTY RIMON,SHLOMO HA-MELEKH,"Shlomo Ha-Melekh is a contact person for ARTY Rimon, indicating a direct association",13\r\n348,ARTY RIMON,REHOVOT,"ARTY Rimon provides services in Rehovot, indicating a service location relationship",13\r\n349,ARTY RIMON,SHOHAM,"ARTY Rimon provides services in Shoham, indicating a service location relationship",13\r\n350,ARTY RIMON,RAMLE,"ARTY Rimon provides services in Ramle, indicating a service location relationship",13\r\n351,ARTY RIMON,LOD,"ARTY Rimon provides services in Lod, indicating a service location relationship",13\r\n356,IMPORTANT TO KNOW,DELAY IN RECEIVING BAGGAGE,The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:23,67 httpcore.http11 DEBUG send_request_headers.started request= -13:53:23,67 httpcore.http11 DEBUG send_request_headers.complete -13:53:23,67 httpcore.http11 DEBUG send_request_body.started request= -13:53:23,67 httpcore.http11 DEBUG send_request_body.complete -13:53:23,68 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:23,313 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11421'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9990'), (b'x-ratelimit-remaining-tokens', b'9924989'), (b'x-ratelimit-reset-requests', b'57ms'), (b'x-ratelimit-reset-tokens', b'450ms'), (b'x-request-id', b'req_f7bc907d42225675763303dd5a6d66db'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239c98fc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:23,313 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:23,313 httpcore.http11 DEBUG receive_response_body.started request= -13:53:23,314 httpcore.http11 DEBUG receive_response_body.complete -13:53:23,314 httpcore.http11 DEBUG response_closed.started -13:53:23,314 httpcore.http11 DEBUG response_closed.complete -13:53:23,314 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:23,315 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.764999999955762. input_tokens=3286, output_tokens=700 -13:53:23,317 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n235,RIMON MIZVADOT VE TIKIM,Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.,2\r\n242,RISHON LE ZION,Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n344,ARTY RIMON,RIMON MIZVADOT VE TIKIM,"Both provide similar services in different locations, indicating a competitive relationship",14\r\n353,RIMON MIZVADOT VE TIKIM,RISHON LE ZION,"Rimon Mizvadot ve Tikim operates in Rishon Le Zion, indicating a service location relationship",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:23,318 httpcore.http11 DEBUG send_request_headers.started request= -13:53:23,318 httpcore.http11 DEBUG send_request_headers.complete -13:53:23,318 httpcore.http11 DEBUG send_request_body.started request= -13:53:23,318 httpcore.http11 DEBUG send_request_body.complete -13:53:23,318 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:23,479 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:23 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11545'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9993'), (b'x-ratelimit-remaining-tokens', b'9917456'), (b'x-ratelimit-reset-requests', b'39ms'), (b'x-ratelimit-reset-tokens', b'495ms'), (b'x-request-id', b'req_6dae85469e843b7ae35d87912435603d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cd42c224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:23,479 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:23,479 httpcore.http11 DEBUG receive_response_body.started request= -13:53:23,480 httpcore.http11 DEBUG receive_response_body.complete -13:53:23,480 httpcore.http11 DEBUG response_closed.started -13:53:23,480 httpcore.http11 DEBUG response_closed.complete -13:53:23,480 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:23,481 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.875. input_tokens=2060, output_tokens=565 -13:53:23,483 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n237,HAGALGAL,"Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.",2\r\n238,BUGABOO,"Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n345,ARTY RIMON,HAGALGAL,"Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon",14\r\n355,HAGALGAL,BUGABOO,"Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:23,484 httpcore.http11 DEBUG send_request_headers.started request= -13:53:23,484 httpcore.http11 DEBUG send_request_headers.complete -13:53:23,484 httpcore.http11 DEBUG send_request_body.started request= -13:53:23,484 httpcore.http11 DEBUG send_request_body.complete -13:53:23,484 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:23,952 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12071'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9955559'), (b'x-ratelimit-reset-requests', b'29ms'), (b'x-ratelimit-reset-tokens', b'266ms'), (b'x-request-id', b'req_04aad81ad783649c436a44c2bda64932'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239ca8ac21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:23,952 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:23,953 httpcore.http11 DEBUG receive_response_body.started request= -13:53:23,953 httpcore.http11 DEBUG receive_response_body.complete -13:53:23,953 httpcore.http11 DEBUG response_closed.started -13:53:23,953 httpcore.http11 DEBUG response_closed.complete -13:53:23,953 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:23,954 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.39100000000326. input_tokens=2209, output_tokens=519 -13:53:23,956 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n207,MAKOR HAZIUD,Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment.,3\r\n245,NES ZIONA,Nes Ziona is a city where Makor Haziud operates.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n340,MAKOR HAZIUD,ARTY RIMON,"Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon",15\r\n341,MAKOR HAZIUD,NES ZIONA,"Makor Haziud operates in Nes Ziona, indicating a service location relationship",4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:23,957 httpcore.http11 DEBUG send_request_headers.started request= -13:53:23,957 httpcore.http11 DEBUG send_request_headers.complete -13:53:23,957 httpcore.http11 DEBUG send_request_body.started request= -13:53:23,957 httpcore.http11 DEBUG send_request_body.complete -13:53:23,957 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:24,67 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12233'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9992030'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'47ms'), (b'x-request-id', b'req_e24ad8e6d1bb61749c531e249e730687'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2396a6b7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:24,68 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:24,68 httpcore.http11 DEBUG receive_response_body.started request= -13:53:24,68 httpcore.http11 DEBUG receive_response_body.complete -13:53:24,68 httpcore.http11 DEBUG response_closed.started -13:53:24,68 httpcore.http11 DEBUG response_closed.complete -13:53:24,68 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:24,69 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.514999999955762. input_tokens=2032, output_tokens=526 -13:53:24,71 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n234,MOKA,"Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.",2\r\n243,YEHUD,"Yehud is a city where Moka, a pickup and delivery point, is located.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n343,ARTY RIMON,MOKA,"Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship",14\r\n352,MOKA,YEHUD,"Moka is located in Yehud, indicating a service location relationship",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:24,72 httpcore.http11 DEBUG send_request_headers.started request= -13:53:24,72 httpcore.http11 DEBUG send_request_headers.complete -13:53:24,72 httpcore.http11 DEBUG send_request_body.started request= -13:53:24,73 httpcore.http11 DEBUG send_request_body.complete -13:53:24,73 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:24,326 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12463'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9988719'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'67ms'), (b'x-request-id', b'req_e372aef4ba0fd6049d917fbedd110953'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2396c127da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:24,326 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:24,326 httpcore.http11 DEBUG receive_response_body.started request= -13:53:24,326 httpcore.http11 DEBUG receive_response_body.complete -13:53:24,326 httpcore.http11 DEBUG response_closed.started -13:53:24,326 httpcore.http11 DEBUG response_closed.complete -13:53:24,327 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:24,327 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.796999999962281. input_tokens=2127, output_tokens=540 -13:53:24,329 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n4,PET,"Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.",19\r\n6,REGISTERED CARGO,"Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.",3\r\n30,BILL OF LADING,A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.,3\r\n32,AIRCRAFT HOLD,The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.,1\r\n90,ALLOWANCE,The permitted baggage allowance does not include the weight of pets being transported.,1\r\n95,CARRYING CASE,"The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.",1\r\n27,HONG KONG,Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n25,JOHANNESBURG,Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n26,LONDON,London is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n33,PASSENGER AIRCRAFT CABIN,"The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.",1\r\n28,VETERINARIAN,Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.,1\r\n88,TRANSPORT CAGE GUIDELINES,Guidelines that outline the requirements for transport cages used for pets during flights.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n7,EL AL,PET,"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport",68\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n69,PET,CHECKED BAGGAGE,"Pets can be transported as checked baggage under certain conditions, such as size and weight",44\r\n72,PET,ISRAEL,"Pets are transported from Israel to other countries, requiring specific permits and conditions.",28\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n76,PET,BILL OF LADING,"Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.",22\r\n70,PET,REGISTERED CARGO,"Pets may also be transported as registered cargo, especially if they are large or unaccompanied",22\r\n79,PET,BUSINESS CABIN,Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.,22\r\n86,PET,FLIGHT TICKET,"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.",22\r\n71,PET,9KG,"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported",21\r\n77,PET,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting pets abroad.,21\r\n80,PET,AIRCRAFT HOLD,Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.,20\r\n83,PET,ALLOWANCE,"The weight of pets is not included in the permitted baggage allowance, affecting transport costs.",20\r\n85,PET,CARRYING CASE,"The carrying case is required for transporting pets, and its weight is included in the transport cost.",20\r\n75,PET,HONG KONG,Transporting pets in the aircraft cabin is not allowed to Hong Kong.,20\r\n73,PET,JOHANNESBURG,Transporting pets in the aircraft cabin is not allowed to Johannesburg.,20\r\n74,PET,LONDON,Transporting pets in the aircraft cabin is not allowed to London.,20\r\n81,PET,PASSENGER AIRCRAFT CABIN,Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.,20\r\n78,PET,VETERINARIAN,Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.,20\r\n84,PET,TRANSPORT CAGE GUIDELINES,Transport cage guidelines provide the necessary requirements for transporting pets safely.,20\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n139,BILL OF LADING,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department determines if a bill of lading is needed for transporting animals,10\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:24,330 httpcore.http11 DEBUG send_request_headers.started request= -13:53:24,331 httpcore.http11 DEBUG send_request_headers.complete -13:53:24,331 httpcore.http11 DEBUG send_request_body.started request= -13:53:24,331 httpcore.http11 DEBUG send_request_body.complete -13:53:24,331 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:24,583 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12535'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9909445'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'543ms'), (b'x-request-id', b'req_891e563a2bc27eec6977f69537990e07'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cae0c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:24,584 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:24,584 httpcore.http11 DEBUG receive_response_body.started request= -13:53:24,584 httpcore.http11 DEBUG receive_response_body.complete -13:53:24,584 httpcore.http11 DEBUG response_closed.started -13:53:24,584 httpcore.http11 DEBUG response_closed.complete -13:53:24,585 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:24,586 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.98399999999674. input_tokens=2801, output_tokens=629 -13:53:24,588 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n29,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.,2\r\n45,EXPORT LICENSE,"An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.",2\r\n37,VETERINARY SERVICES DEPARTMENT,"The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.",7\r\n36,PERMIT,A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.,2\r\n80,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are necessary for transporting pets.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n77,PET,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting pets abroad.,21\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n113,AUTHORIZATION,VETERINARY SERVICES DEPARTMENT,Authorization from the Veterinary Services Department is required for transporting pets as cargo,10\r\n139,BILL OF LADING,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department determines if a bill of lading is needed for transporting animals,10\r\n150,VETERINARY SERVICES DEPARTMENT,EXPORT LICENSE,An export license is required by the Veterinary Services Department for transporting animals,9\r\n138,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues the international certificate of good health required for animal transport.,9\r\n149,PERMIT,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues permits required for transporting animals abroad.,9\r\n152,VETERINARY SERVICES DEPARTMENT,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals,8\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:24,589 httpcore.http11 DEBUG send_request_headers.started request= -13:53:24,589 httpcore.http11 DEBUG send_request_headers.complete -13:53:24,589 httpcore.http11 DEBUG send_request_body.started request= -13:53:24,589 httpcore.http11 DEBUG send_request_body.complete -13:53:24,589 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:24,608 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:24 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12730'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9968762'), (b'x-ratelimit-reset-requests', b'13ms'), (b'x-ratelimit-reset-tokens', b'187ms'), (b'x-request-id', b'req_90d8ee07fe0b8829858efb6344584d79'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239caed7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:24,608 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:24,608 httpcore.http11 DEBUG receive_response_body.started request= -13:53:24,609 httpcore.http11 DEBUG receive_response_body.complete -13:53:24,609 httpcore.http11 DEBUG response_closed.started -13:53:24,609 httpcore.http11 DEBUG response_closed.complete -13:53:24,609 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:24,610 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 13.0. input_tokens=2148, output_tokens=640 -13:53:24,612 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n8,AUTHORIZATION,"Authorization from the Ministry of Agriculture�s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.",3\r\n9,ANIMAL TESTS,The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.,2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n0,MINISTRY OF AGRICULTURE,EL AL,"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.",54\r\n3,MINISTRY OF AGRICULTURE,ISRAEL,The Ministry of Agriculture is the regulatory authority in Israel for pet transportation,14\r\n113,AUTHORIZATION,VETERINARY SERVICES DEPARTMENT,Authorization from the Veterinary Services Department is required for transporting pets as cargo,10\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n1,MINISTRY OF AGRICULTURE,AUTHORIZATION,"The Ministry of Agriculture requires authorization for the transportation of animals. This authorization is a necessary document for compliance with regulations governing animal transport. Without this authorization, individuals or entities are not permitted to transport animals legally.",8\r\n2,MINISTRY OF AGRICULTURE,ANIMAL TESTS,The Ministry of Agriculture\'s authorization process may involve performing several animal tests,7\r\n112,AUTHORIZATION,ANIMAL TESTS,Animal tests are part of the authorization process for transporting pets,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:24,613 httpcore.http11 DEBUG send_request_headers.started request= -13:53:24,613 httpcore.http11 DEBUG send_request_headers.complete -13:53:24,613 httpcore.http11 DEBUG send_request_body.started request= -13:53:24,614 httpcore.http11 DEBUG send_request_body.complete -13:53:24,614 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:25,592 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:25 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13682'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9991'), (b'x-ratelimit-remaining-tokens', b'9922861'), (b'x-ratelimit-reset-requests', b'48ms'), (b'x-ratelimit-reset-tokens', b'462ms'), (b'x-request-id', b'req_518c02277e4e23664de38bddf29e9f66'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cd78ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:25,592 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:25,592 httpcore.http11 DEBUG receive_response_body.started request= -13:53:25,593 httpcore.http11 DEBUG receive_response_body.complete -13:53:25,593 httpcore.http11 DEBUG response_closed.started -13:53:25,593 httpcore.http11 DEBUG response_closed.complete -13:53:25,593 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:25,594 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.03200000000652. input_tokens=2235, output_tokens=604 -13:53:25,596 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n31,BUSINESS CABIN,"The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions.",3\r\n39,APPROVAL,Approval from the EL AL service center is necessary for transporting pets in the Business cabin.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n79,PET,BUSINESS CABIN,Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.,22\r\n140,BUSINESS CABIN,APPROVAL,"Approval is required for transporting pets in the Business cabin, indicating a policy that must be followed.",4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:25,597 httpcore.http11 DEBUG send_request_headers.started request= -13:53:25,597 httpcore.http11 DEBUG send_request_headers.complete -13:53:25,597 httpcore.http11 DEBUG send_request_body.started request= -13:53:25,597 httpcore.http11 DEBUG send_request_body.complete -13:53:25,597 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:25,946 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14121'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995579'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_7a0186664895c5e3994e17aeb87eb397'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2396f70c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:25,947 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:25,947 httpcore.http11 DEBUG receive_response_body.started request= -13:53:25,947 httpcore.http11 DEBUG receive_response_body.complete -13:53:25,947 httpcore.http11 DEBUG response_closed.started -13:53:25,947 httpcore.http11 DEBUG response_closed.complete -13:53:25,947 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:25,948 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.405999999959022. input_tokens=2116, output_tokens=629 -13:53:25,950 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n15,ISRAEL,"Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad.",9\r\n13,EL AL CARGO STORE,"The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.",4\r\n48,HIGH-RISK COUNTRY,"A ""HIGH-RISK COUNTRY"" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.",1\r\n53,MINISTRY OF HEALTH,The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.,1\r\n14,CARGO TERMINAL,"The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.",1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n44,ISRAEL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,It is important to know what you can take with you aboard the aircraft when departing from Israel.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n72,PET,ISRAEL,"Pets are transported from Israel to other countries, requiring specific permits and conditions.",28\r\n59,SERVICE DOG,ISRAEL,"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.",25\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.",23\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n3,MINISTRY OF AGRICULTURE,ISRAEL,The Ministry of Agriculture is the regulatory authority in Israel for pet transportation,14\r\n123,EL AL CARGO STORE,ISRAEL,The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.,13\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n126,ISRAEL,HIGH-RISK COUNTRY,"Israel is classified as a high-risk country, affecting the regulations for transporting service dogs.",10\r\n125,ISRAEL,MINISTRY OF HEALTH,"The Ministry of Health in Israel is responsible for regulating the entry of animals into the country. This includes overseeing the necessary protocols and guidelines to ensure that animals are imported in a safe and controlled manner, thereby safeguarding public health and animal welfare.",10\r\n121,EL AL CARGO STORE,EL AL CARGO STORE,The EL AL Cargo Store is a part of EL AL Airlines\' cargo services,8\r\n122,EL AL CARGO STORE,CARGO TERMINAL,The EL AL Cargo Store operates within the cargo terminal for handling cargo services,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:25,951 httpcore.http11 DEBUG send_request_headers.started request= -13:53:25,951 httpcore.http11 DEBUG send_request_headers.complete -13:53:25,951 httpcore.http11 DEBUG send_request_body.started request= -13:53:25,952 httpcore.http11 DEBUG send_request_body.complete -13:53:25,952 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:26,270 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14391'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9965581'), (b'x-ratelimit-reset-requests', b'11ms'), (b'x-ratelimit-reset-tokens', b'206ms'), (b'x-request-id', b'req_457e0c9f898576b8c9559bcc3efb724d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cd8ded42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:26,270 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:26,270 httpcore.http11 DEBUG receive_response_body.started request= -13:53:26,271 httpcore.http11 DEBUG receive_response_body.complete -13:53:26,271 httpcore.http11 DEBUG response_closed.started -13:53:26,271 httpcore.http11 DEBUG response_closed.complete -13:53:26,271 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:26,272 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.688000000023749. input_tokens=2215, output_tokens=640 -13:53:26,275 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n56,BAGGAGE,"Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers\' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.",21\r\n203,BAGGAGE TAG,"A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.",2\r\n200,BAGGAGE CLAIM AREA,"The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.",1\r\n201,DAMAGE REPORT,"A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.",1\r\n251,FLIGHT TICKETS,Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.,1\r\n252,BOARDING PASSES,Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.,1\r\n253,BAGGAGE TAGS,"Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.",1\r\n254,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.,1\r\n255,RECEIPTS,Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n24,EL AL,BAGGAGE,"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.",70\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n186,BAGGAGE,BAGGAGE SERVICE CENTER,The Baggage Service Center is dedicated to assisting travelers with various issues related to their baggage. This includes managing problems such as delays and damages that may occur during travel. The center serves as a crucial resource for passengers seeking support and resolution for their baggage-related concerns.,34\r\n193,BAGGAGE,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,27\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n183,BEN GURION AIRPORT,BAGGAGE,"Baggage, including pets, is released at Ben Gurion Airport\'s arrivals hall",26\r\n187,BAGGAGE,COURIER SERVICE,The BAGGAGE is delivered to the passenger\'s address by the COURIER SERVICE after it has been retrieved following a delay. The COURIER SERVICE is responsible for ensuring that the delayed baggage reaches the travelers promptly after it has been located.,23\r\n188,BAGGAGE,CONTACT DETAILS,Contact details are provided for passengers to report baggage issues,23\r\n191,BAGGAGE,LOST BAGGAGE REPORT NUMBER,The lost baggage report number is used to track claims related to lost baggage,23\r\n192,BAGGAGE,BAGGAGE TAG,The baggage tag is essential for identifying and tracking baggage,23\r\n199,BAGGAGE,OVERSIZED AND OVERWEIGHT BAGGAGE,Oversized and overweight baggage are categories of baggage that exceed standard limits,23\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline\'s size and weight requirements,23\r\n189,BAGGAGE,BAGGAGE CLAIM AREA,"Travelers report baggage issues in the baggage claim area, where they can receive assistance",22\r\n190,BAGGAGE,DAMAGE REPORT,"A damage report is issued when baggage is reported damaged, which is necessary for processing claims",22\r\n194,BAGGAGE,FLIGHT TICKETS,Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n195,BAGGAGE,BOARDING PASSES,Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n196,BAGGAGE,BAGGAGE TAGS,Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n197,BAGGAGE,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.,22\r\n198,BAGGAGE,RECEIPTS,Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.,22\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:26,276 httpcore.http11 DEBUG send_request_headers.started request= -13:53:26,276 httpcore.http11 DEBUG send_request_headers.complete -13:53:26,277 httpcore.http11 DEBUG send_request_body.started request= -13:53:26,277 httpcore.http11 DEBUG send_request_body.complete -13:53:26,277 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:26,301 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14411'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9992'), (b'x-ratelimit-remaining-tokens', b'9935322'), (b'x-ratelimit-reset-requests', b'44ms'), (b'x-ratelimit-reset-tokens', b'388ms'), (b'x-request-id', b'req_a9959ea0c2b277488a38714cef91ee6c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cae2c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:26,302 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:26,302 httpcore.http11 DEBUG receive_response_body.started request= -13:53:26,302 httpcore.http11 DEBUG receive_response_body.complete -13:53:26,302 httpcore.http11 DEBUG response_closed.started -13:53:26,302 httpcore.http11 DEBUG response_closed.complete -13:53:26,303 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:26,304 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.76600000000326. input_tokens=2261, output_tokens=646 -13:53:26,306 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n113,BAGGAGE SERVICE CENTER,"The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.",13\r\n118,CONTACT DETAILS,"The ""CONTACT DETAILS"" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.",2\r\n115,DELAYED BAGGAGE,"Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.",2\r\n123,BAGGAGE CLAIM,Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.,1\r\n127,BAGGAGE CLAIMS PROCESS,The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.,1\r\n122,BAGGAGE DELAY,Baggage delay occurs when a passenger\'s checked baggage does not arrive at the destination with them.,1\r\n124,BAGGAGE HANDLING,Baggage handling refers to the procedures and services involved in managing passengers\' baggage during travel.,1\r\n125,BAGGAGE REPORTING,"Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.",1\r\n128,DAMAGED BAGGAGE,,1\r\n121,FORGOTTEN ITEM,"The ""FORGOTTEN ITEM"" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.",1\r\n202,CLAIMS DEPARTMENT,The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.,1\r\n120,BAGGAGE REPORT,A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n186,BAGGAGE,BAGGAGE SERVICE CENTER,The Baggage Service Center is dedicated to assisting travelers with various issues related to their baggage. This includes managing problems such as delays and damages that may occur during travel. The center serves as a crucial resource for passengers seeking support and resolution for their baggage-related concerns.,34\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n188,BAGGAGE,CONTACT DETAILS,Contact details are provided for passengers to report baggage issues,23\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n224,BAGGAGE SERVICE CENTER,CLAIM STATUS,The status of a claim can be checked through the Baggage Service Center\'s worldwide system,15\r\n233,BAGGAGE SERVICE CENTER,CONTACT DETAILS,Contact details provide necessary information for reaching the Baggage Service Center for assistance,15\r\n228,BAGGAGE SERVICE CENTER,BAGGAGE CLAIM,The Baggage Service Center facilitates the baggage claim process for passengers,14\r\n231,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS PROCESS,The Baggage Service Center follows the baggage claims process to assist passengers,14\r\n227,BAGGAGE SERVICE CENTER,BAGGAGE DELAY,The Baggage Service Center is responsible for managing reports of baggage delays,14\r\n229,BAGGAGE SERVICE CENTER,BAGGAGE HANDLING,Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage,14\r\n230,BAGGAGE SERVICE CENTER,BAGGAGE REPORTING,Passengers report baggage issues to the Baggage Service Center for resolution,14\r\n225,BAGGAGE SERVICE CENTER,DAMAGED BAGGAGE,"The Baggage Service Center is dedicated to assisting travelers with claims related to damaged baggage. It effectively handles cases of damaged baggage reported by passengers, ensuring that their concerns are addressed and resolved in a timely manner.",14\r\n226,BAGGAGE SERVICE CENTER,FORGOTTEN ITEM,"The Baggage Service Center is dedicated to assisting passengers with items that have been forgotten on board. It plays a crucial role in helping recover these forgotten items, ensuring that travelers can retrieve their belongings efficiently.",14\r\n232,BAGGAGE SERVICE CENTER,CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Claims Department to process claims related to baggage,14\r\n249,DELAYED BAGGAGE,BAGGAGE REPORT,A baggage report is issued for delayed baggage at the airport,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:26,308 httpcore.http11 DEBUG send_request_headers.started request= -13:53:26,308 httpcore.http11 DEBUG send_request_headers.complete -13:53:26,308 httpcore.http11 DEBUG send_request_body.started request= -13:53:26,308 httpcore.http11 DEBUG send_request_body.complete -13:53:26,309 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:26,330 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14340'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9911078'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'533ms'), (b'x-request-id', b'req_3cf4ba650d89b8a368da23f131e505b4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239ce297d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:26,330 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:26,330 httpcore.http11 DEBUG receive_response_body.started request= -13:53:26,331 httpcore.http11 DEBUG receive_response_body.complete -13:53:26,331 httpcore.http11 DEBUG response_closed.started -13:53:26,331 httpcore.http11 DEBUG response_closed.complete -13:53:26,331 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:26,332 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.75. input_tokens=3379, output_tokens=751 -13:53:26,334 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n340,OVERSIZED AND OVERWEIGHT BAGGAGE,"Oversized and overweight baggage refers to luggage that exceeds the airline\'s standard size and weight limits, requiring special handling and potentially incurring additional fees.",2\r\n342,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,"The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.",3\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n199,BAGGAGE,OVERSIZED AND OVERWEIGHT BAGGAGE,Oversized and overweight baggage are categories of baggage that exceed standard limits,23\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n417,OVERSIZED AND OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized and overweight baggage must take their luggage to the designated location,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:26,335 httpcore.http11 DEBUG send_request_headers.started request= -13:53:26,335 httpcore.http11 DEBUG send_request_headers.complete -13:53:26,335 httpcore.http11 DEBUG send_request_body.started request= -13:53:26,336 httpcore.http11 DEBUG send_request_body.complete -13:53:26,336 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:26,448 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14443'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9905512'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'566ms'), (b'x-request-id', b'req_c5fc7f1df3ce3b9b4a8392cb2a79e701'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239c9df7da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:26,448 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:26,448 httpcore.http11 DEBUG receive_response_body.started request= -13:53:26,449 httpcore.http11 DEBUG receive_response_body.complete -13:53:26,449 httpcore.http11 DEBUG response_closed.started -13:53:26,449 httpcore.http11 DEBUG response_closed.complete -13:53:26,449 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:26,451 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.85899999999674. input_tokens=2451, output_tokens=693 -13:53:26,453 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n119,LOST BAGGAGE REPORT NUMBER,"The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.",2\r\n116,CLAIM STATUS,"The term ""Claim Status"" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n191,BAGGAGE,LOST BAGGAGE REPORT NUMBER,The lost baggage report number is used to track claims related to lost baggage,23\r\n224,BAGGAGE SERVICE CENTER,CLAIM STATUS,The status of a claim can be checked through the Baggage Service Center\'s worldwide system,15\r\n250,CLAIM STATUS,LOST BAGGAGE REPORT NUMBER,The claim status can be checked using the lost baggage report number provided by the airline. This report number is essential for verifying the status of a claim related to lost baggage.,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:26,454 httpcore.http11 DEBUG send_request_headers.started request= -13:53:26,454 httpcore.http11 DEBUG send_request_headers.complete -13:53:26,454 httpcore.http11 DEBUG send_request_body.started request= -13:53:26,454 httpcore.http11 DEBUG send_request_body.complete -13:53:26,455 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:26,537 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14656'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9960047'), (b'x-ratelimit-reset-requests', b'23ms'), (b'x-ratelimit-reset-tokens', b'239ms'), (b'x-request-id', b'req_bbcaef4dec1e4eb435540e3e69805d2e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239ceebc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:26,538 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:26,538 httpcore.http11 DEBUG receive_response_body.started request= -13:53:26,538 httpcore.http11 DEBUG receive_response_body.complete -13:53:26,539 httpcore.http11 DEBUG response_closed.started -13:53:26,539 httpcore.http11 DEBUG response_closed.complete -13:53:26,539 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:26,540 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.922000000020489. input_tokens=2189, output_tokens=659 -13:53:26,542 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n117,COURIER SERVICE,"The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.",2\r\n126,BAGGAGE DELIVERY,Baggage delivery is the service that ensures retrieved baggage is sent to the passenger\'s specified address.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n187,BAGGAGE,COURIER SERVICE,The BAGGAGE is delivered to the passenger\'s address by the COURIER SERVICE after it has been retrieved following a delay. The COURIER SERVICE is responsible for ensuring that the delayed baggage reaches the travelers promptly after it has been located.,23\r\n251,COURIER SERVICE,BAGGAGE DELIVERY,The courier service is responsible for the delivery of baggage to the passenger\'s address after retrieval,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:26,543 httpcore.http11 DEBUG send_request_headers.started request= -13:53:26,543 httpcore.http11 DEBUG send_request_headers.complete -13:53:26,543 httpcore.http11 DEBUG send_request_body.started request= -13:53:26,543 httpcore.http11 DEBUG send_request_body.complete -13:53:26,543 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:26,658 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14706'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9916191'), (b'x-ratelimit-reset-requests', b'20ms'), (b'x-ratelimit-reset-tokens', b'502ms'), (b'x-request-id', b'req_ff2855441aba82a7be1b3331d9113a30'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239c9dd7da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:26,659 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:26,659 httpcore.http11 DEBUG receive_response_body.started request= -13:53:26,659 httpcore.http11 DEBUG receive_response_body.complete -13:53:26,659 httpcore.http11 DEBUG response_closed.started -13:53:26,659 httpcore.http11 DEBUG response_closed.complete -13:53:26,659 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:26,660 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 15.094000000040978. input_tokens=2982, output_tokens=767 -13:53:26,662 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n250,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,6\r\n260,CONTRACT OF CARRIAGE,"The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.",1\r\n256,FRAGILE ITEMS,Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n257,PERISHABLE ITEMS,Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n258,VALUABLE ITEMS,"Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.",1\r\n259,INTERNATIONAL CONVENTIONS,International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n193,BAGGAGE,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,27\r\n361,EL AL ISRAEL AIRLINES,CONTRACT OF CARRIAGE,"The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.",7\r\n357,EL AL ISRAEL AIRLINES,FRAGILE ITEMS,EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.,7\r\n358,EL AL ISRAEL AIRLINES,PERISHABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.,7\r\n359,EL AL ISRAEL AIRLINES,VALUABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.,7\r\n360,EL AL ISRAEL AIRLINES,INTERNATIONAL CONVENTIONS,International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.,7\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:26,663 httpcore.http11 DEBUG send_request_headers.started request= -13:53:26,663 httpcore.http11 DEBUG send_request_headers.complete -13:53:26,663 httpcore.http11 DEBUG send_request_body.started request= -13:53:26,664 httpcore.http11 DEBUG send_request_body.complete -13:53:26,664 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:26,701 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:26 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14826'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9973346'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'159ms'), (b'x-request-id', b'req_1133897be3ba4ad69c6024509c72cc42'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cb89c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:26,702 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:26,702 httpcore.http11 DEBUG receive_response_body.started request= -13:53:26,702 httpcore.http11 DEBUG receive_response_body.complete -13:53:26,702 httpcore.http11 DEBUG response_closed.started -13:53:26,702 httpcore.http11 DEBUG response_closed.complete -13:53:26,702 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:26,703 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 15.155999999959022. input_tokens=2451, output_tokens=670 -13:53:26,705 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n114,BAGGAGE CLAIMS DEPARTMENT,"The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.",16\r\n206,DIGITAL CONTACT FORM,The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.,1\r\n208,WE SHOES,WeShoes is a store that sells shoes and may also provide related services.,1\r\n209,MEMSI TOURING,"Memsi Touring is a service provider that may offer travel-related services, including baggage handling.",1\r\n211,SHIN TIK,"Shin Tik is a service provider that may offer travel-related services, including baggage handling.",1\r\n212,TREK MARKET,"Trek Market is a service provider that may offer travel-related services, including baggage handling.",1\r\n213,KIRYAT ONO,Kiryat Ono is a city in Israel where various stores and services related to baggage are located.,1\r\n214,RAMAT GAN,Ramat Gan is a city in Israel where various stores and services related to baggage are located.,1\r\n215,GEVATAIM,Gevataim is a city in Israel where various stores and services related to baggage are located.,1\r\n216,BAT YAM,Bat Yam is a city in Israel where various stores and services related to baggage are located.,1\r\n217,HOLON,Holon is a city in Israel where various stores and services related to baggage are located.,1\r\n218,PETACH TIKVA,Petach Tikva is a city in Israel where various stores and services related to baggage are located.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n235,BAGGAGE CLAIMS DEPARTMENT,EL AL ISRAEL AIRLINES LTD.,The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.,18\r\n236,BAGGAGE CLAIMS DEPARTMENT,DIGITAL CONTACT FORM,The Digital Contact Form is used to submit claims to the Baggage Claims Department.,17\r\n238,BAGGAGE CLAIMS DEPARTMENT,WE SHOES,WeShoes may provide services related to baggage handling and claims.,17\r\n239,BAGGAGE CLAIMS DEPARTMENT,MEMSI TOURING,Memsi Touring may offer services that assist with baggage handling and claims.,17\r\n241,BAGGAGE CLAIMS DEPARTMENT,SHIN TIK,Shin Tik may provide services that assist with baggage handling and claims.,17\r\n242,BAGGAGE CLAIMS DEPARTMENT,TREK MARKET,Trek Market may offer services that assist with baggage handling and claims.,17\r\n243,BAGGAGE CLAIMS DEPARTMENT,KIRYAT ONO,Kiryat Ono has stores that may assist with baggage claims and services.,17\r\n244,BAGGAGE CLAIMS DEPARTMENT,RAMAT GAN,Ramat Gan has stores that may assist with baggage claims and services.,17\r\n245,BAGGAGE CLAIMS DEPARTMENT,GEVATAIM,Gevataim has stores that may assist with baggage claims and services.,17\r\n246,BAGGAGE CLAIMS DEPARTMENT,BAT YAM,Bat Yam has stores that may assist with baggage claims and services.,17\r\n247,BAGGAGE CLAIMS DEPARTMENT,HOLON,Holon has stores that may assist with baggage claims and services.,17\r\n248,BAGGAGE CLAIMS DEPARTMENT,PETACH TIKVA,Petach Tikva has stores that may assist with baggage claims and services.,17\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:26,706 httpcore.http11 DEBUG send_request_headers.started request= -13:53:26,706 httpcore.http11 DEBUG send_request_headers.complete -13:53:26,706 httpcore.http11 DEBUG send_request_body.started request= -13:53:26,707 httpcore.http11 DEBUG send_request_body.complete -13:53:26,707 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:27,974 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:28 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'16119'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9979132'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'125ms'), (b'x-request-id', b'req_94672a5e18549e031251973b82bc70ce'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2396c0a7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:27,974 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:27,974 httpcore.http11 DEBUG receive_response_body.started request= -13:53:27,975 httpcore.http11 DEBUG receive_response_body.complete -13:53:27,975 httpcore.http11 DEBUG response_closed.started -13:53:27,975 httpcore.http11 DEBUG response_closed.complete -13:53:27,975 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:27,976 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 16.43799999996554. input_tokens=2296, output_tokens=756 -13:53:27,978 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n54,BEN GURION AIRPORT,"Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.",5\r\n205,EL AL ISRAEL AIRLINES LTD.,EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.,2\r\n18,VETERINARY SERVICES,"The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.",4\r\n20,AUTHORIZATION PROCESS,The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n183,BEN GURION AIRPORT,BAGGAGE,"Baggage, including pets, is released at Ben Gurion Airport\'s arrivals hall",26\r\n235,BAGGAGE CLAIMS DEPARTMENT,EL AL ISRAEL AIRLINES LTD.,The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.,18\r\n131,VETERINARY SERVICES,BEN GURION AIRPORT,Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport,9\r\n154,CARGO,BEN GURION AIRPORT,"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport",9\r\n132,VETERINARY SERVICES,DOCUMENTS,Veterinary Services requires specific documents for animal transport authorization,9\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n184,BEN GURION AIRPORT,EL AL ISRAEL AIRLINES LTD.,"EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.",7\r\n130,VETERINARY SERVICES,AUTHORIZATION PROCESS,The authorization process is managed by the Veterinary Services to ensure compliance with regulations,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:27,979 httpcore.http11 DEBUG send_request_headers.started request= -13:53:27,979 httpcore.http11 DEBUG send_request_headers.complete -13:53:27,979 httpcore.http11 DEBUG send_request_body.started request= -13:53:27,979 httpcore.http11 DEBUG send_request_body.complete -13:53:27,979 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:27,994 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:28 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'16108'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9994'), (b'x-ratelimit-remaining-tokens', b'9944207'), (b'x-ratelimit-reset-requests', b'33ms'), (b'x-ratelimit-reset-tokens', b'334ms'), (b'x-request-id', b'req_774157c17a8d710edd37bd2c65a55b50'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c239cc9b7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:27,994 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:27,994 httpcore.http11 DEBUG receive_response_body.started request= -13:53:27,995 httpcore.http11 DEBUG receive_response_body.complete -13:53:27,995 httpcore.http11 DEBUG response_closed.started -13:53:27,995 httpcore.http11 DEBUG response_closed.complete -13:53:27,995 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:27,996 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 16.42200000002049. input_tokens=4339, output_tokens=751 -13:53:27,998 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n60,DOCUMENTS,"The entity ""DOCUMENTS"" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.",5\r\n43,CERTIFICATE OF GOOD HEALTH,"A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal\'s health status before transport, providing assurance that the pet is healthy and capable of making the journey.",3\r\n55,RABIES ANTIBODY TEST,A test required to confirm that the animal has been vaccinated against rabies.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n132,VETERINARY SERVICES,DOCUMENTS,Veterinary Services requires specific documents for animal transport authorization,9\r\n180,CERTIFICATE OF GOOD HEALTH,DOCUMENTS,A certificate of good health is one of the required documents for transport,8\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n185,RABIES ANTIBODY TEST,DOCUMENTS,A rabies antibody test is another required document for transport,6\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:27,998 httpcore.http11 DEBUG send_request_headers.started request= -13:53:27,999 httpcore.http11 DEBUG send_request_headers.complete -13:53:27,999 httpcore.http11 DEBUG send_request_body.started request= -13:53:27,999 httpcore.http11 DEBUG send_request_body.complete -13:53:27,999 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:28,991 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:29 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'17140'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9981838'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'108ms'), (b'x-request-id', b'req_1d04ad748704a87c29b9b42a7db7caf0'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2396900c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:28,991 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:28,991 httpcore.http11 DEBUG receive_response_body.started request= -13:53:28,992 httpcore.http11 DEBUG receive_response_body.complete -13:53:28,992 httpcore.http11 DEBUG response_closed.started -13:53:28,992 httpcore.http11 DEBUG response_closed.complete -13:53:28,992 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:28,993 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 17.46799999999348. input_tokens=5726, output_tokens=814 -13:53:28,995 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n388,LITHIUM-ION BATTERIES,"Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.",7\r\n406,LITHIUM BATTERIES,,2\r\n398,100 WATT-HOURS,"100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.",1\r\n399,160 WATT-HOURS,160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.,1\r\n387,DRY CELL ALKALINE BATTERIES,"Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.",1\r\n402,49 CFR,"49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n430,LITHIUM-ION BATTERIES,CARRY-ON,Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits,11\r\n426,SPARE BATTERIES,LITHIUM-ION BATTERIES,Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions,11\r\n434,LITHIUM-ION BATTERIES,SPARE LITHIUM BATTERIES,Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.,10\r\n431,LITHIUM-ION BATTERIES,LITHIUM BATTERIES,"Lithium batteries include both lithium-ion and lithium metal types, indicating a classification relationship",9\r\n432,LITHIUM-ION BATTERIES,100 WATT-HOURS,Lithium-ion batteries with a capacity of 100 watt-hours are allowed in carry-on luggage,8\r\n433,LITHIUM-ION BATTERIES,160 WATT-HOURS,Lithium-ion batteries with a capacity of 160 watt-hours are subject to specific regulations for air travel,8\r\n429,DRY CELL ALKALINE BATTERIES,LITHIUM-ION BATTERIES,Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage,8\r\n442,49 CFR,LITHIUM BATTERIES,"49 CFR outlines the regulations for the transport of lithium batteries, indicating a regulatory relationship",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:28,996 httpcore.http11 DEBUG send_request_headers.started request= -13:53:28,996 httpcore.http11 DEBUG send_request_headers.complete -13:53:28,996 httpcore.http11 DEBUG send_request_body.started request= -13:53:28,997 httpcore.http11 DEBUG send_request_body.complete -13:53:28,997 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:33,789 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10294'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995671'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'25ms'), (b'x-request-id', b'req_5eeda279624a45a8360c317d244c0e4a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2825b19c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:33,789 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:33,789 httpcore.http11 DEBUG receive_response_body.started request= -13:53:33,790 httpcore.http11 DEBUG receive_response_body.complete -13:53:33,790 httpcore.http11 DEBUG response_closed.started -13:53:33,790 httpcore.http11 DEBUG response_closed.complete -13:53:33,790 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:33,791 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.469000000040978. input_tokens=2082, output_tokens=624 -13:53:33,793 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n386,SPARE BATTERIES,"Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.",4\r\n371,PROHIBITED ITEM,Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.,2\r\n416,INSULATED,Batteries must be insulated to prevent short circuits when taken aboard the aircraft.,1\r\n404,NON-CONDUCTIVE CAPS,Non-conductive caps are required to protect the terminals of spare batteries during transport.,1\r\n389,PORTABLE CHARGERS,"Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.",2\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n426,SPARE BATTERIES,LITHIUM-ION BATTERIES,Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions,11\r\n421,PROHIBITED ITEM,SPARE BATTERIES,"Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction",6\r\n428,SPARE BATTERIES,INSULATED,Spare batteries must be insulated to prevent short circuits when taken aboard the aircraft.,5\r\n427,SPARE BATTERIES,NON-CONDUCTIVE CAPS,Spare batteries must have non-conductive caps to protect their terminals during transport,5\r\n435,PORTABLE CHARGERS,SPARE LITHIUM BATTERIES,Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.,5\r\n422,PROHIBITED ITEM,PORTABLE CHARGERS,Portable chargers are classified as lithium batteries and are prohibited in checked baggage,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:33,794 httpcore.http11 DEBUG send_request_headers.started request= -13:53:33,794 httpcore.http11 DEBUG send_request_headers.complete -13:53:33,794 httpcore.http11 DEBUG send_request_body.started request= -13:53:33,794 httpcore.http11 DEBUG send_request_body.complete -13:53:33,794 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:33,827 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9699'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995651'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_8569125acbdce595debcc8943d348764'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2865c00c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:33,827 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:33,827 httpcore.http11 DEBUG receive_response_body.started request= -13:53:33,827 httpcore.http11 DEBUG receive_response_body.complete -13:53:33,828 httpcore.http11 DEBUG response_closed.started -13:53:33,828 httpcore.http11 DEBUG response_closed.complete -13:53:33,828 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:33,829 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 9.875. input_tokens=2106, output_tokens=574 -13:53:33,830 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n396,CARRY-ON,Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.,4\r\n394,NON-SPILLABLE WET BATTERIES,"Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.",3\r\n393,LITHIUM METAL BATTERIES,"Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.",2\r\n401,12 VOLTS,12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.,1\r\n403,STRONG OUTER PACKAGING,Batteries must be in strong outer packaging to prevent damage and leakage during transport.,1\r\n400,2 GRAMS,2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n430,LITHIUM-ION BATTERIES,CARRY-ON,Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits,11\r\n385,ELECTRONIC DEVICES,CARRY-ON,"Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement",8\r\n438,NON-SPILLABLE WET BATTERIES,CARRY-ON,Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits,7\r\n436,LITHIUM METAL BATTERIES,CARRY-ON,Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions,6\r\n439,NON-SPILLABLE WET BATTERIES,12 VOLTS,Non-spillable wet batteries must not exceed 12 volts for air travel,4\r\n440,NON-SPILLABLE WET BATTERIES,STRONG OUTER PACKAGING,Non-spillable wet batteries must be packaged in strong outer packaging to prevent leakage,4\r\n437,LITHIUM METAL BATTERIES,2 GRAMS,Consumer-grade lithium metal batteries must contain no more than 2 grams of lithium,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:33,831 httpcore.http11 DEBUG send_request_headers.started request= -13:53:33,832 httpcore.http11 DEBUG send_request_headers.complete -13:53:33,832 httpcore.http11 DEBUG send_request_body.started request= -13:53:33,832 httpcore.http11 DEBUG send_request_body.complete -13:53:33,832 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:33,904 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10867'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995574'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_7d5838091050c3320559676a970f50d8'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c27dfc1e7da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:33,904 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:33,904 httpcore.http11 DEBUG receive_response_body.started request= -13:53:33,905 httpcore.http11 DEBUG receive_response_body.complete -13:53:33,905 httpcore.http11 DEBUG response_closed.started -13:53:33,905 httpcore.http11 DEBUG response_closed.complete -13:53:33,905 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:33,906 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.297000000020489. input_tokens=2154, output_tokens=541 -13:53:33,908 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n284,ELECTRONIC DEVICES,"Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.",4\r\n407,SPARE LITHIUM BATTERIES,"Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.",3\r\n405,FLAMMABLE MATERIAL,"Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n434,LITHIUM-ION BATTERIES,SPARE LITHIUM BATTERIES,Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.,10\r\n385,ELECTRONIC DEVICES,CARRY-ON,"Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement",8\r\n387,ELECTRONIC DEVICES,SPARE LITHIUM BATTERIES,"Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.",7\r\n386,ELECTRONIC DEVICES,FLAMMABLE MATERIAL,"Flammable materials are prohibited from being stored with electronic devices containing lithium batteries, indicating a safety restriction",5\r\n435,PORTABLE CHARGERS,SPARE LITHIUM BATTERIES,Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:33,908 httpcore.http11 DEBUG send_request_headers.started request= -13:53:33,909 httpcore.http11 DEBUG send_request_headers.complete -13:53:33,909 httpcore.http11 DEBUG send_request_body.started request= -13:53:33,909 httpcore.http11 DEBUG send_request_body.complete -13:53:33,909 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:33,961 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9707'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995692'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'25ms'), (b'x-request-id', b'req_64c39147303fe5b021d4bf909ae09467'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2870b037d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:33,961 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:33,962 httpcore.http11 DEBUG receive_response_body.started request= -13:53:33,962 httpcore.http11 DEBUG receive_response_body.complete -13:53:33,962 httpcore.http11 DEBUG response_closed.started -13:53:33,962 httpcore.http11 DEBUG response_closed.complete -13:53:33,962 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:33,963 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 9.89100000000326. input_tokens=2054, output_tokens=586 -13:53:34,679 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'8886'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995623'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_75614edbfeb4895cf2271ca46f72de8f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2909867ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:34,679 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:34,679 httpcore.http11 DEBUG receive_response_body.started request= -13:53:34,680 httpcore.http11 DEBUG receive_response_body.complete -13:53:34,680 httpcore.http11 DEBUG response_closed.started -13:53:34,680 httpcore.http11 DEBUG response_closed.complete -13:53:34,680 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:34,681 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 9.078000000037719. input_tokens=2089, output_tokens=526 -13:53:34,798 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13452'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995312'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_801d25f2ab51ef315540bd4fbc1da954'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c274fb2fc231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:34,799 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:34,799 httpcore.http11 DEBUG receive_response_body.started request= -13:53:34,799 httpcore.http11 DEBUG receive_response_body.complete -13:53:34,799 httpcore.http11 DEBUG response_closed.started -13:53:34,799 httpcore.http11 DEBUG response_closed.complete -13:53:34,799 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:34,800 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 13.625. input_tokens=2386, output_tokens=696 -13:53:35,276 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12558'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995296'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_f9f2f6e4b4331bc808c60a5eb1bee637'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c27d788ec21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:35,276 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:35,276 httpcore.http11 DEBUG receive_response_body.started request= -13:53:35,277 httpcore.http11 DEBUG receive_response_body.complete -13:53:35,277 httpcore.http11 DEBUG response_closed.started -13:53:35,277 httpcore.http11 DEBUG response_closed.complete -13:53:35,277 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:35,278 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.73499999998603. input_tokens=2409, output_tokens=780 -13:53:35,480 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10688'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994569'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'32ms'), (b'x-request-id', b'req_314989d09b642f545be20480ea16ce2f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'cf-cache-status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c28a6ef47d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:35,480 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:35,480 httpcore.http11 DEBUG receive_response_body.started request= -13:53:35,481 httpcore.http11 DEBUG receive_response_body.complete -13:53:35,481 httpcore.http11 DEBUG response_closed.started -13:53:35,481 httpcore.http11 DEBUG response_closed.complete -13:53:35,481 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:35,482 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.875. input_tokens=2344, output_tokens=643 -13:53:36,314 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:36 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'9682'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995505'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_e98ebe5be6472469209bf448a1feff0f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c295fc237da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:36,314 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:36,314 httpcore.http11 DEBUG receive_response_body.started request= -13:53:36,315 httpcore.http11 DEBUG receive_response_body.complete -13:53:36,315 httpcore.http11 DEBUG response_closed.started -13:53:36,315 httpcore.http11 DEBUG response_closed.complete -13:53:36,315 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:36,316 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 9.85899999999674. input_tokens=2177, output_tokens=575 -13:53:36,469 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:36 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10342'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994862'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'30ms'), (b'x-request-id', b'req_c3bf79e8f889efd1dad5b28c9709c700'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c292c8c0c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:36,470 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:36,470 httpcore.http11 DEBUG receive_response_body.started request= -13:53:36,470 httpcore.http11 DEBUG receive_response_body.complete -13:53:36,470 httpcore.http11 DEBUG response_closed.started -13:53:36,470 httpcore.http11 DEBUG response_closed.complete -13:53:36,471 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:36,472 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.53200000000652. input_tokens=2711, output_tokens=651 -13:53:36,569 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:36 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13910'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994732'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'31ms'), (b'x-request-id', b'req_9d649269a056d1e51a12f4d80fb1d60c'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c27cfe917d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:36,570 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:36,570 httpcore.http11 DEBUG receive_response_body.started request= -13:53:36,570 httpcore.http11 DEBUG receive_response_body.complete -13:53:36,570 httpcore.http11 DEBUG response_closed.started -13:53:36,570 httpcore.http11 DEBUG response_closed.complete -13:53:36,571 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:36,572 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.10899999999674. input_tokens=2974, output_tokens=727 -13:53:36,913 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:37 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10196'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995562'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'26ms'), (b'x-request-id', b'req_0d149b35c0b425724790508e971428ff'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c296784ec222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:36,913 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:36,913 httpcore.http11 DEBUG receive_response_body.started request= -13:53:36,914 httpcore.http11 DEBUG receive_response_body.complete -13:53:36,914 httpcore.http11 DEBUG response_closed.started -13:53:36,914 httpcore.http11 DEBUG response_closed.complete -13:53:36,914 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:36,915 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.375. input_tokens=2115, output_tokens=494 -13:53:37,68 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:37 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10564'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993052'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'41ms'), (b'x-request-id', b'req_839b837f1129c6430ae32a57990c8431'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2953f417d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:37,68 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:37,68 httpcore.http11 DEBUG receive_response_body.started request= -13:53:37,69 httpcore.http11 DEBUG receive_response_body.complete -13:53:37,69 httpcore.http11 DEBUG response_closed.started -13:53:37,69 httpcore.http11 DEBUG response_closed.complete -13:53:37,69 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:37,70 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.73399999999674. input_tokens=2236, output_tokens=638 -13:53:37,471 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:37 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13821'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995671'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'25ms'), (b'x-request-id', b'req_e7aa8487436d3f5a89f582ce3a0a4bb7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2836faec224-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:37,471 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:37,471 httpcore.http11 DEBUG receive_response_body.started request= -13:53:37,472 httpcore.http11 DEBUG receive_response_body.complete -13:53:37,472 httpcore.http11 DEBUG response_closed.started -13:53:37,472 httpcore.http11 DEBUG response_closed.complete -13:53:37,472 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:37,473 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.0. input_tokens=2068, output_tokens=726 -13:53:37,485 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:37 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12966'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994557'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'32ms'), (b'x-request-id', b'req_dd9fc0c7b51779381592a67c06dfde6e'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c288ac5c7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:37,485 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:37,486 httpcore.http11 DEBUG receive_response_body.started request= -13:53:37,486 httpcore.http11 DEBUG receive_response_body.complete -13:53:37,486 httpcore.http11 DEBUG response_closed.started -13:53:37,486 httpcore.http11 DEBUG response_closed.complete -13:53:37,486 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:37,487 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 13.15600000001723. input_tokens=3021, output_tokens=801 -13:53:37,874 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:38 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14637'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995126'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'29ms'), (b'x-request-id', b'req_4eac9e7a16bca9a14adb52e4d2908a39'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c280c904c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:37,875 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:37,875 httpcore.http11 DEBUG receive_response_body.started request= -13:53:37,875 httpcore.http11 DEBUG receive_response_body.complete -13:53:37,875 httpcore.http11 DEBUG response_closed.started -13:53:37,875 httpcore.http11 DEBUG response_closed.complete -13:53:37,875 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:37,877 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.813000000023749. input_tokens=2645, output_tokens=776 -13:53:38,120 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:38 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13350'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995199'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_fa0ec5294bd79a8760f0731e6d144c20'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c28a4f2cc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:38,121 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:38,121 httpcore.http11 DEBUG receive_response_body.started request= -13:53:38,121 httpcore.http11 DEBUG receive_response_body.complete -13:53:38,121 httpcore.http11 DEBUG response_closed.started -13:53:38,121 httpcore.http11 DEBUG response_closed.complete -13:53:38,122 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:38,123 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 13.547000000020489. input_tokens=2378, output_tokens=687 -13:53:39,16 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:39 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12131'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994869'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'30ms'), (b'x-request-id', b'req_55fd3e1f3eb39745c5880fe2c492bee8'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2978990c21d-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:39,16 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:39,16 httpcore.http11 DEBUG receive_response_body.started request= -13:53:39,18 httpcore.http11 DEBUG receive_response_body.complete -13:53:39,18 httpcore.http11 DEBUG response_closed.started -13:53:39,18 httpcore.http11 DEBUG response_closed.complete -13:53:39,19 httpcore.connection DEBUG close.started -13:53:39,19 httpcore.connection DEBUG close.complete -13:53:39,19 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:39,20 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.313000000023749. input_tokens=2821, output_tokens=757 -13:53:39,756 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:40 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10594'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995201'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_4adf8ab4261a331125b746fed3152a46'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2a5dc35c233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:39,756 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:39,756 httpcore.http11 DEBUG receive_response_body.started request= -13:53:39,757 httpcore.http11 DEBUG receive_response_body.complete -13:53:39,757 httpcore.http11 DEBUG response_closed.started -13:53:39,757 httpcore.http11 DEBUG response_closed.complete -13:53:39,757 httpcore.connection DEBUG close.started -13:53:39,757 httpcore.connection DEBUG close.complete -13:53:39,757 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:39,758 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.76600000000326. input_tokens=2483, output_tokens=676 -13:53:39,858 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:40 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11009'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995123'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'29ms'), (b'x-request-id', b'req_669d07e077c7d056c0c6256af9dbb353'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c266cdc3ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:39,859 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:39,859 httpcore.http11 DEBUG receive_response_body.started request= -13:53:39,859 httpcore.http11 DEBUG receive_response_body.complete -13:53:39,859 httpcore.http11 DEBUG response_closed.started -13:53:39,859 httpcore.http11 DEBUG response_closed.complete -13:53:39,860 httpcore.connection DEBUG close.started -13:53:39,860 httpcore.connection DEBUG close.complete -13:53:39,860 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:39,861 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 20.95299999997951. input_tokens=2508, output_tokens=565 -13:53:41,237 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:41 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14782'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9994493'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'33ms'), (b'x-request-id', b'req_7c9a97fdd191fe775ca888137f2b62da'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c294df4ced42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:41,237 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:41,237 httpcore.http11 DEBUG receive_response_body.started request= -13:53:41,237 httpcore.http11 DEBUG receive_response_body.complete -13:53:41,238 httpcore.http11 DEBUG response_closed.started -13:53:41,238 httpcore.http11 DEBUG response_closed.complete -13:53:41,238 httpcore.connection DEBUG close.started -13:53:41,238 httpcore.connection DEBUG close.complete -13:53:41,238 httpcore.connection DEBUG close.started -13:53:41,238 httpcore.connection DEBUG close.complete -13:53:41,238 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:41,239 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.96799999999348. input_tokens=3076, output_tokens=731 -13:53:41,240 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:41 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14761'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9992973'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'42ms'), (b'x-request-id', b'req_0e923779951649f84ae46de9d6723421'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2950867c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:41,240 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:41,240 httpcore.http11 DEBUG receive_response_body.started request= -13:53:41,240 httpcore.http11 DEBUG receive_response_body.complete -13:53:41,241 httpcore.http11 DEBUG response_closed.started -13:53:41,241 httpcore.http11 DEBUG response_closed.complete -13:53:41,241 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:41,242 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.936999999976251. input_tokens=2979, output_tokens=731 -13:53:42,31 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13856'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9993987'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'36ms'), (b'x-request-id', b'req_5e747a5419101ea1a7bb8eeabd4d82a0'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c29f9b9f7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:42,31 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:42,32 httpcore.http11 DEBUG receive_response_body.started request= -13:53:42,32 httpcore.http11 DEBUG receive_response_body.complete -13:53:42,32 httpcore.http11 DEBUG response_closed.started -13:53:42,32 httpcore.http11 DEBUG response_closed.complete -13:53:42,32 httpcore.connection DEBUG close.started -13:53:42,33 httpcore.connection DEBUG close.complete -13:53:42,33 httpcore.connection DEBUG close.started -13:53:42,33 httpcore.connection DEBUG close.complete -13:53:42,33 httpcore.connection DEBUG close.started -13:53:42,33 httpcore.connection DEBUG close.complete -13:53:42,33 httpcore.connection DEBUG close.started -13:53:42,33 httpcore.connection DEBUG close.complete -13:53:42,33 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:42,34 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.047000000020489. input_tokens=2291, output_tokens=686 -13:53:42,125 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'15295'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995310'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_c69004360e13d6f9f0a322d1788a8fe7'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2974e2a7da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:42,125 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:42,125 httpcore.http11 DEBUG receive_response_body.started request= -13:53:42,126 httpcore.http11 DEBUG receive_response_body.complete -13:53:42,126 httpcore.http11 DEBUG response_closed.started -13:53:42,126 httpcore.http11 DEBUG response_closed.complete -13:53:42,126 httpcore.connection DEBUG close.started -13:53:42,126 httpcore.connection DEBUG close.complete -13:53:42,126 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:42,127 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 15.46899999998277. input_tokens=2360, output_tokens=776 -13:53:42,544 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:42 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14390'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995250'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_ca8725e4ae02dc152f8ba003a648c437'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c29f7b787da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:42,544 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:42,544 httpcore.http11 DEBUG receive_response_body.started request= -13:53:42,545 httpcore.http11 DEBUG receive_response_body.complete -13:53:42,545 httpcore.http11 DEBUG response_closed.started -13:53:42,545 httpcore.http11 DEBUG response_closed.complete -13:53:42,545 httpcore.connection DEBUG close.started -13:53:42,545 httpcore.connection DEBUG close.complete -13:53:42,545 httpcore.connection DEBUG close.started -13:53:42,545 httpcore.connection DEBUG close.complete -13:53:42,545 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:42,546 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.578000000037719. input_tokens=2404, output_tokens=723 -13:53:44,197 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:44 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'10227'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995319'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_f518adf3a47458ab7adfea6e5eca399f'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2c3df6bc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:44,197 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:44,197 httpcore.http11 DEBUG receive_response_body.started request= -13:53:44,198 httpcore.http11 DEBUG receive_response_body.complete -13:53:44,198 httpcore.http11 DEBUG response_closed.started -13:53:44,198 httpcore.http11 DEBUG response_closed.complete -13:53:44,198 httpcore.connection DEBUG close.started -13:53:44,198 httpcore.connection DEBUG close.complete -13:53:44,198 httpcore.connection DEBUG close.started -13:53:44,198 httpcore.connection DEBUG close.complete -13:53:44,198 httpcore.connection DEBUG close.started -13:53:44,198 httpcore.connection DEBUG close.complete -13:53:44,199 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:44,200 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 10.405999999959022. input_tokens=2343, output_tokens=655 -13:53:46,28 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:46 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11938'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995211'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_c7620d8f170cb346332768da094f1804'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2c48a937da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:46,28 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:46,28 httpcore.http11 DEBUG receive_response_body.started request= -13:53:46,28 httpcore.http11 DEBUG receive_response_body.complete -13:53:46,28 httpcore.http11 DEBUG response_closed.started -13:53:46,29 httpcore.http11 DEBUG response_closed.complete -13:53:46,29 httpcore.connection DEBUG close.started -13:53:46,29 httpcore.connection DEBUG close.complete -13:53:46,29 httpcore.connection DEBUG close.started -13:53:46,29 httpcore.connection DEBUG close.complete -13:53:46,29 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:46,30 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.125. input_tokens=2406, output_tokens=621 -13:53:48,993 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:53:49 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14974'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9995232'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'28ms'), (b'x-request-id', b'req_d0b485e03173735b6ad56aef3f8521d2'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c2c40dd8c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:53:48,993 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:53:48,993 httpcore.http11 DEBUG receive_response_body.started request= -13:53:48,994 httpcore.http11 DEBUG receive_response_body.complete -13:53:48,994 httpcore.http11 DEBUG response_closed.started -13:53:48,994 httpcore.http11 DEBUG response_closed.complete -13:53:48,994 httpcore.connection DEBUG close.started -13:53:48,994 httpcore.connection DEBUG close.complete -13:53:48,994 httpcore.connection DEBUG close.started -13:53:48,995 httpcore.connection DEBUG close.complete -13:53:48,995 httpcore.connection DEBUG close.started -13:53:48,995 httpcore.connection DEBUG close.complete -13:53:48,995 httpcore.connection DEBUG close.started -13:53:48,995 httpcore.connection DEBUG close.complete -13:53:48,995 httpcore.connection DEBUG close.started -13:53:48,995 httpcore.connection DEBUG close.complete -13:53:48,995 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:53:48,996 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 15.15600000001723. input_tokens=2448, output_tokens=740 -13:53:49,18 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n1,EL AL,"EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline\'s liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.",49\r\n12,CARGO DIVISION,"The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.",8\r\n24,PETS,,6\r\n419,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.,3\r\n421,HAZARDOUS MATERIALS,Hazardous materials include items like dry ice that require special handling and declaration when traveling.,3\r\n11,ARRIVALS HALL,"The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.",2\r\n409,BATTERY-POWERED DEVICES,"Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.",2\r\n16,CABIN,"The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.",2\r\n3,DANGEROUS DOG,"Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.",2\r\n196,FRAGILE ITEM,"The term ""FRAGILE ITEM"" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.",2\r\n197,VALUABLE ITEM,"Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.",2\r\n199,EQUIPMENT,,2\r\n426,MOBILITY AID,,2\r\n353,$5,An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.,1\r\n354,50% DISCOUNT,Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.,1\r\n348,ADDITIONAL HANDLING FEE,An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.,1\r\n100,ANIMAL AIR TRANSPORT COMPANIES,"Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.",1\r\n204,BAGGAGE ISSUES,"Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.",1\r\n10,CHECK-IN COUNTER,"The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.",1\r\n310,CHECK-IN PROCESS,"The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger\'s identity and travel details, as well as checking their luggage for the flight.",1\r\n356,CHECKED BAGGAGE RULES,Checked baggage rules may vary when several airlines are involved in a flight route.,1\r\n364,CODESHARE FLIGHTS,Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.,1\r\n19,TRANSPORTATION,"Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.",1\r\n108,SAFETY AND SECURITY REGULATIONS,"Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.",1\r\n305,FLIGHT DESTINATION,"The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.",1\r\n351,MANAGE MY BOOKING,"Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.",1\r\n363,GOVERNMENT SERVICE TAX,A government service tax will be collected for air travel for flights originating in India.,1\r\n425,EMAIL NOTIFICATION,An email notification to the airline is required to inform them about the intention to travel with a mobility aid.,1\r\n7,9KG,"The entity ""9KG"" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.",2\r\n44,TRANSPORT AUTHORIZATION,Transport authorization from the destination country authorities is required for transporting pets.,1\r\n46,MEASUREMENTS OF TRANSPORT CAGE,The measurements of the transport cage are required to ensure the animal\'s safety and compliance with transport regulations.,1\r\n51,TRANSPORTING ANIMALS,"The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.",1\r\n47,DOGS,"Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.",3\r\n50,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are necessary for transporting pets and must be presented at check-in.,1\r\n17,EXOTIC BIRDS,Exotic birds are among the pets that can be transported in the cabin with their owners.,1\r\n410,IATA REGULATIONS,"IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.",2\r\n49,AIRPORT FACILITIES,Airport facilities in the United States may incur additional charges for inspecting and releasing pets.,1\r\n420,FLIGHT-APPROVED BATTERIES,Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.,1\r\n422,DECLARATION FORM,A Declaration Form is required for traveling with hazardous materials on EL AL flights.,1\r\n52,US,"The United States has specific regulations regarding the transportation of pets, particularly dogs.",1\r\n423,DRY ICE,Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.,1\r\n198,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.,2\r\n21,LUGGAGE COMPARTMENT,"The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.",1\r\n424,FLIGHT AID,"Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.",1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n2,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\r\n3,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg."\r\n4,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"In certain instances (e.g. large animals), animals must be transported as checked baggage."\r\n5,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,"There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied)."\r\n11,EL AL,BAGGAGE MEASUREMENTS AND WEIGHT LIMITS,TRUE,Transport costs for animals weighing up to 9 kg with their cage are $100 for Europe and Middle East and $150 for North America and Far East. Animals weighing between 9 and 50 kg with their cage cost $200 for Europe and Middle East and $250 for North America and Far East. Animals weighing between 50 and 100 kg with their cage cost $400 for Europe and Middle East and $450 for North America and Far East. Animals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\r\n43,EL AL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,EL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\r\n47,EL AL,BAGGAGE POLICY,TRUE,"The baggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket, with a maximum size permitted per piece of checked baggage being 158 cm."\r\n48,EL AL,BAGGAGE POLICY,TRUE,"Passengers may travel with a maximum of five pieces of checked baggage, and six or more pieces must be handled in advance by the EL AL Cargo Division."\r\n49,EL AL,BAGGAGE POLICY,TRUE,"The maximum size permitted for an infant�s checked baggage is also 158 cm, excluding Lite tickets which have no baggage allowance at all."\r\n50,EL AL,BAGGAGE POLICY,TRUE,EL AL reserves the right to change the excess baggage rates from time to time.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n17,EL AL,ANIMAL,EL AL provides transport services for animals in various classes,78\r\n11,EL AL,CHECKED BAGGAGE,"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline\'s baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.",74\r\n24,EL AL,BAGGAGE,"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.",70\r\n7,EL AL,PET,"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport",68\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n5,EL AL,SERVICE DOG,"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.",65\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.",63\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n10,EL AL,CARGO DIVISION,"EL AL\'s Cargo Division is dedicated to the transportation of various types of cargo, including animals. This division specifically handles the transport of animals that are extra-large or unaccompanied, ensuring that they are managed with care and expertise. Additionally, the Cargo Division is responsible for pet transportation services, which includes handling registered cargo for pets. They also manage special requests for transporting oversized items, demonstrating their capability to accommodate unique transportation needs. Furthermore, the Cargo Division provides transport cost guidelines and policies for EL AL regarding all cargo, including pets, ensuring transparency and clarity for customers utilizing their services.",57\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n14,EL AL,PETS,"EL AL has established specific policies for transporting pets, which include weight limits and certain conditions that must be met. The airline offers services for transporting pets as cargo, and it requires specific documentation to ensure the safe and compliant travel of these animals.",55\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n21,EL AL,DOG,"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused",54\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n0,MINISTRY OF AGRICULTURE,EL AL,"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.",54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n48,EL AL,BATTERY-POWERED MOBILITY AIDS,EL AL provides specific regulations for traveling with battery-powered mobility aids on their flights,52\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n30,EL AL,PERSONAL BAG,"El Al allows passengers to bring a personal bag on board, subject to size restrictions",52\r\n49,EL AL,HAZARDOUS MATERIALS,EL AL requires advance notice and a Declaration Form for traveling with hazardous materials,52\r\n9,EL AL,ARRIVALS HALL,Pet owners retrieve their animals in the Arrivals Hall after transportation as checked baggage on EL AL,51\r\n47,EL AL,BATTERY-POWERED DEVICES,"EL AL has specific regulations for battery-powered devices, ensuring they are safe for transport on their flights.",51\r\n13,EL AL,CABIN,EL AL allows pets to be transported in the cabin under specific conditions,51\r\n6,EL AL,DANGEROUS DOG,"EL AL has a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy ensures that dangerous dogs are not allowed on their flights, reflecting the airline\'s commitment to safety and compliance with legal regulations.",51\r\n25,EL AL,FRAGILE ITEM,EL AL does not bear responsibility for fragile items transported by the airline,51\r\n26,EL AL,VALUABLE ITEM,EL AL does not bear responsibility for valuable items transported by the airline,51\r\n27,EL AL,EQUIPMENT,EL AL has guidelines regarding the transport of passenger equipment,51\r\n50,EL AL,MOBILITY AID,EL AL provides services for passengers traveling with mobility aids,51\r\n41,EL AL,$5,The additional handling fee of $5 is charged by EL AL for baggage checked through their service center,50\r\n42,EL AL,50% DISCOUNT,EL AL offers a 50% discount on baggage fees if purchased online before the flight,50\r\n38,EL AL,ADDITIONAL HANDLING FEE,EL AL charges an additional handling fee of $5 per passenger when checking baggage through their service center,50\r\n20,EL AL,ANIMAL AIR TRANSPORT COMPANIES,"EL AL may recommend using specialized companies for the air transport of animals, including service dogs.",50\r\n28,EL AL,BAGGAGE ISSUES,EL AL has policies in place to address various baggage issues encountered by travelers,50\r\n8,EL AL,CHECK-IN COUNTER,"EL AL requires passengers to check in at their designated check-in counters for their flights. Additionally, pet owners must arrive at the check-in counter with their pets to make the necessary transportation arrangements for their travel on EL AL.",50\r\n40,EL AL,CHECK-IN PROCESS,Passengers can add baggage during the check-in process for their EL AL flight,50\r\n43,EL AL,CHECKED BAGGAGE RULES,"Checked baggage rules may vary based on the airlines involved in a flight route, affecting EL AL\'s policies",50\r\n46,EL AL,CODESHARE FLIGHTS,"The luggage policy of EL AL may vary for codeshare flights, indicating a relationship between the airline and the type of route.",50\r\n15,EL AL,TRANSPORTATION,"EL AL provides various transportation options for pets, including cabin, checked baggage, and cargo",50\r\n23,EL AL,SAFETY AND SECURITY REGULATIONS,EL AL must adhere to safety and security regulations when transporting dogs,50\r\n33,EL AL,FLIGHT DESTINATION,Passengers must have necessary documents according to their flight destination when checking in with El Al,50\r\n39,EL AL,MANAGE MY BOOKING,Passengers can add baggage via the Manage my booking service provided by EL AL,50\r\n45,EL AL,GOVERNMENT SERVICE TAX,"The government service tax applies to flights operated by EL AL that originate in India, indicating a policy relationship.",50\r\n51,EL AL,EMAIL NOTIFICATION,An email notification is required to inform EL AL about traveling with a mobility aid,50\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n71,PET,9KG,"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported",21\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n116,CARGO DIVISION,TRANSPORT AUTHORIZATION,The Cargo Division requires transport authorization from destination authorities for pet transport,9\r\n118,CARGO DIVISION,MEASUREMENTS OF TRANSPORT CAGE,The Cargo Division requires the measurements of the transport cage for compliance,9\r\n119,CARGO DIVISION,TRANSPORTING ANIMALS,"The Cargo Division specializes in transporting animals, including pets",9\r\n134,PETS,DOGS,Dogs are classified as pets that require special regulations for transportation,9\r\n135,PETS,DOCUMENTS AND AUTHORIZATIONS,Documents and authorizations are required for transporting pets,7\r\n129,EXOTIC BIRDS,PETS,Exotic birds are classified as pets that can be transported under certain conditions,7\r\n444,IATA REGULATIONS,BATTERY-POWERED MOBILITY AIDS,Battery-powered mobility aids must comply with IATA regulations for air travel,5\r\n111,9KG,CABIN,The weight limit of 9kg applies to pets transported in the cabin,4\r\n182,DOGS,AIRPORT FACILITIES,Airport facilities may charge additional fees for inspecting and releasing dogs,4\r\n443,BATTERY-POWERED DEVICES,IATA REGULATIONS,Battery-powered devices must comply with IATA regulations for safe transport on flights.,4\r\n449,BATTERY-POWERED MOBILITY AIDS,FLIGHT-APPROVED BATTERIES,Battery-powered mobility aids must use flight-approved batteries to be transported on EL AL flights,4\r\n450,HAZARDOUS MATERIALS,DECLARATION FORM,A Declaration Form is necessary for traveling with hazardous materials on EL AL flights,4\r\n181,DOGS,US,The US has specific regulations regarding the transportation of dogs,4\r\n451,HAZARDOUS MATERIALS,DRY ICE,Dry ice is classified as a hazardous material that requires special handling during air travel,4\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n338,FRAGILE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting fragile items,4\r\n339,VALUABLE ITEM,SPECIAL TRAVEL INSURANCE,Special travel insurance is recommended for passengers transporting valuable items,4\r\n68,DANGEROUS DOG,LUGGAGE COMPARTMENT,Dangerous dogs are not allowed in the luggage compartment during transportation,3\r\n452,FLIGHT AID,MOBILITY AID,Mobility aids are part of the flight aid services provided to assist passengers,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,23 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n5,CHECKED BAGGAGE,"Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.",25\r\n187,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.,6\r\n183,EXCESS BAGGAGE CHARGES,"Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger\'s luggage exceeds the allowed limits, resulting in additional costs for the traveler.",4\r\n179,SKI EQUIPMENT,"Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.",3\r\n336,$90,The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.,1\r\n86,50 KG,"The entity ""50 KG"" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.",1\r\n358,ADDITIONAL PIECES OF CHECKED BAGGAGE,There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.,1\r\n186,SNOWBOARD EQUIPMENT,"Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.",1\r\n190,PERMITTED DIMENSIONS,The maximum size and weight limits that checked baggage and special items must adhere to for transport.,1\r\n194,EL AL AIRCRAFT,The information provided applies specifically to EL AL flights on EL AL aircraft.,1\r\n349,EXCESS BAGGAGE,"Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.",1\r\n350,CODE-SHARE FLIGHTS,"Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.",1\r\n361,MAXIMUM SIZE,"The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.",1\r\n359,INFANT\'S CHECKED BAGGAGE,Infant\'s checked baggage includes items like strollers and infant car seats that can be checked without additional charge.,1\r\n180,70 USD,"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.",2\r\n182,US DOLLARS,"US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.",4\r\n189,EL AL CALL CENTER,The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.,1\r\n191,PACKING REGULATIONS,Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.,1\r\n192,MOTORIZED BICYCLES,Motorized bicycles are not allowed to be transported as checked baggage.,1\r\n193,EXCEPTIONAL CASES,"Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.",1\r\n185,LOCAL CURRENCY,"Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.",2\r\n177,COMPLIMENTARY TRANSPORT,Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.,2\r\n188,LITE FARE TICKET,A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.,1\r\n176,SNOWBOARDING EQUIPMENT,"Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n11,EL AL,CHECKED BAGGAGE,"EL AL is an airline that permits the transportation of certain animals as checked baggage, adhering to specific guidelines. In addition to animals, EL AL provides comprehensive guidelines for transporting various types of checked baggage, which includes sporting equipment. The airline\'s baggage policy is comparable to that of Sundor, influencing the allowances and regulations regarding checked baggage.",74\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n69,PET,CHECKED BAGGAGE,"Pets can be transported as checked baggage under certain conditions, such as size and weight",44\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline\'s size and weight requirements,39\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,"The terms ""CHECKED BAGGAGE"" and ""BAGGAGE ALLOWANCE"" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.",37\r\n93,CHECKED BAGGAGE,BICYCLE,A bicycle can be transported instead of regular checked baggage if it meets the size and weight dimensions,31\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n90,CHECKED BAGGAGE,EXCESS BAGGAGE CHARGES,Excess baggage charges apply when checked baggage exceeds the permitted size and weight dimensions,29\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n91,CHECKED BAGGAGE,SKI EQUIPMENT,Ski equipment can be included in checked baggage under specific conditions,28\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n87,CHECKED BAGGAGE,ARRIVALS HALL,Pets transported as checked baggage can be retrieved in the Arrivals Hall,27\r\n89,CHECKED BAGGAGE,AIRLINE,"Airlines have specific policies regarding checked baggage, including size and weight limits",27\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.",27\r\n104,CHECKED BAGGAGE,$90,The fee of $90 is specifically for checking a piece of baggage not included in the ticket price,26\r\n95,CHECKED BAGGAGE,50 KG,The maximum weight limit for checked baggage is 50 kg,26\r\n105,CHECKED BAGGAGE,ADDITIONAL PIECES OF CHECKED BAGGAGE,Additional pieces of checked baggage incur fees beyond the standard allowance,26\r\n92,CHECKED BAGGAGE,SNOWBOARD EQUIPMENT,Snowboard equipment can be included in checked baggage under specific conditions,26\r\n94,CHECKED BAGGAGE,PERMITTED DIMENSIONS,Checked baggage must meet the permitted dimensions for transport,26\r\n97,CHECKED BAGGAGE,EL AL AIRCRAFT,The baggage regulations apply specifically to EL AL aircraft,26\r\n101,CHECKED BAGGAGE,EXCESS BAGGAGE,"Excess baggage refers to checked baggage that exceeds the allowed limits, incurring additional fees",26\r\n103,CHECKED BAGGAGE,CODE-SHARE FLIGHTS,Baggage procedures may vary on code-share flights depending on the marketing carrier,26\r\n106,CHECKED BAGGAGE,MAXIMUM SIZE,"The maximum size restriction applies to checked baggage, limiting its dimensions to 158 cm.",26\r\n107,CHECKED BAGGAGE,INFANT\'S CHECKED BAGGAGE,Infant\'s checked baggage is a specific category of checked baggage that includes items for infants.,26\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n302,SPORTING EQUIPMENT,70 USD,"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco",16\r\n120,CARGO DIVISION,BICYCLE,Transport of bicycles requires pre-approval from the Cargo Division,14\r\n329,US DOLLARS,EXCESS BAGGAGE CHARGES,Excess baggage charges are displayed in US dollars,8\r\n333,BICYCLE,EL AL CALL CENTER,Pre-approval for transporting bicycles must be obtained from the EL AL call center,7\r\n334,BICYCLE,PACKING REGULATIONS,Bicycles must be packed according to specific packing regulations to be transported,7\r\n335,BICYCLE,MOTORIZED BICYCLES,Motorized bicycles are prohibited from being transported as checked baggage,7\r\n336,BICYCLE,EXCEPTIONAL CASES,Transport of bicycles may be allowed in exceptional cases with prior approval,7\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.",7\r\n327,70 USD,US DOLLARS,"70 USD is expressed in US Dollars, which is the currency for baggage fees",6\r\n331,EXCESS BAGGAGE CHARGES,LOCAL CURRENCY,"At some airports, payment for excess baggage charges is allowed only in local currency",6\r\n328,150 USD,US DOLLARS,"150 USD is expressed in US Dollars, which is the currency for baggage fees",6\r\n325,COMPLIMENTARY TRANSPORT,SKI EQUIPMENT,Ski equipment may qualify for complimentary transport under specific conditions set by the airline.,5\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.",5\r\n326,SKI EQUIPMENT,LITE FARE TICKET,Ski equipment transport does not apply on LITE fare tickets,4\r\n324,SNOWBOARDING EQUIPMENT,COMPLIMENTARY TRANSPORT,Snowboarding equipment may also qualify for complimentary transport under specific conditions set by the airline.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,27 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n54,BEN GURION AIRPORT,"Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.",5\r\n114,BAGGAGE CLAIMS DEPARTMENT,"The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.",16\r\n60,DOCUMENTS,"The entity ""DOCUMENTS"" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.",5\r\n205,EL AL ISRAEL AIRLINES LTD.,EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.,2\r\n206,DIGITAL CONTACT FORM,The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.,1\r\n208,WE SHOES,WeShoes is a store that sells shoes and may also provide related services.,1\r\n209,MEMSI TOURING,"Memsi Touring is a service provider that may offer travel-related services, including baggage handling.",1\r\n211,SHIN TIK,"Shin Tik is a service provider that may offer travel-related services, including baggage handling.",1\r\n212,TREK MARKET,"Trek Market is a service provider that may offer travel-related services, including baggage handling.",1\r\n213,KIRYAT ONO,Kiryat Ono is a city in Israel where various stores and services related to baggage are located.,1\r\n214,RAMAT GAN,Ramat Gan is a city in Israel where various stores and services related to baggage are located.,1\r\n215,GEVATAIM,Gevataim is a city in Israel where various stores and services related to baggage are located.,1\r\n216,BAT YAM,Bat Yam is a city in Israel where various stores and services related to baggage are located.,1\r\n217,HOLON,Holon is a city in Israel where various stores and services related to baggage are located.,1\r\n218,PETACH TIKVA,Petach Tikva is a city in Israel where various stores and services related to baggage are located.,1\r\n43,CERTIFICATE OF GOOD HEALTH,"A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal\'s health status before transport, providing assurance that the pet is healthy and capable of making the journey.",3\r\n18,VETERINARY SERVICES,"The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.",4\r\n55,RABIES ANTIBODY TEST,A test required to confirm that the animal has been vaccinated against rabies.,1\r\n20,AUTHORIZATION PROCESS,The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n19,EL AL,BEN GURION AIRPORT,Animals transported by EL AL are released at Ben Gurion Airport,54\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n183,BEN GURION AIRPORT,BAGGAGE,"Baggage, including pets, is released at Ben Gurion Airport\'s arrivals hall",26\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n235,BAGGAGE CLAIMS DEPARTMENT,EL AL ISRAEL AIRLINES LTD.,The Baggage Claims Department operates under EL AL Israel Airlines Ltd. to manage baggage issues.,18\r\n236,BAGGAGE CLAIMS DEPARTMENT,DIGITAL CONTACT FORM,The Digital Contact Form is used to submit claims to the Baggage Claims Department.,17\r\n238,BAGGAGE CLAIMS DEPARTMENT,WE SHOES,WeShoes may provide services related to baggage handling and claims.,17\r\n239,BAGGAGE CLAIMS DEPARTMENT,MEMSI TOURING,Memsi Touring may offer services that assist with baggage handling and claims.,17\r\n241,BAGGAGE CLAIMS DEPARTMENT,SHIN TIK,Shin Tik may provide services that assist with baggage handling and claims.,17\r\n242,BAGGAGE CLAIMS DEPARTMENT,TREK MARKET,Trek Market may offer services that assist with baggage handling and claims.,17\r\n243,BAGGAGE CLAIMS DEPARTMENT,KIRYAT ONO,Kiryat Ono has stores that may assist with baggage claims and services.,17\r\n244,BAGGAGE CLAIMS DEPARTMENT,RAMAT GAN,Ramat Gan has stores that may assist with baggage claims and services.,17\r\n245,BAGGAGE CLAIMS DEPARTMENT,GEVATAIM,Gevataim has stores that may assist with baggage claims and services.,17\r\n246,BAGGAGE CLAIMS DEPARTMENT,BAT YAM,Bat Yam has stores that may assist with baggage claims and services.,17\r\n247,BAGGAGE CLAIMS DEPARTMENT,HOLON,Holon has stores that may assist with baggage claims and services.,17\r\n248,BAGGAGE CLAIMS DEPARTMENT,PETACH TIKVA,Petach Tikva has stores that may assist with baggage claims and services.,17\r\n115,CARGO DIVISION,CERTIFICATE OF GOOD HEALTH,The Cargo Division requires a certificate of good health for pets being transported,11\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n131,VETERINARY SERVICES,BEN GURION AIRPORT,Veterinary Services operates at Ben Gurion Airport to issue permits for animal transport,9\r\n154,CARGO,BEN GURION AIRPORT,"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport",9\r\n132,VETERINARY SERVICES,DOCUMENTS,Veterinary Services requires specific documents for animal transport authorization,9\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n180,CERTIFICATE OF GOOD HEALTH,DOCUMENTS,A certificate of good health is one of the required documents for transport,8\r\n184,BEN GURION AIRPORT,EL AL ISRAEL AIRLINES LTD.,"EL AL Israel Airlines Ltd. operates flights from Ben Gurion Airport, managing passenger baggage.",7\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n185,RABIES ANTIBODY TEST,DOCUMENTS,A rabies antibody test is another required document for transport,6\r\n130,VETERINARY SERVICES,AUTHORIZATION PROCESS,The authorization process is managed by the Veterinary Services to ensure compliance with regulations,5\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,32 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n284,ELECTRONIC DEVICES,"Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.",4\r\n388,LITHIUM-ION BATTERIES,"Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.",7\r\n396,CARRY-ON,Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.,4\r\n386,SPARE BATTERIES,"Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.",4\r\n407,SPARE LITHIUM BATTERIES,"Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.",3\r\n406,LITHIUM BATTERIES,,2\r\n398,100 WATT-HOURS,"100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.",1\r\n399,160 WATT-HOURS,160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.,1\r\n387,DRY CELL ALKALINE BATTERIES,"Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.",1\r\n394,NON-SPILLABLE WET BATTERIES,"Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.",3\r\n393,LITHIUM METAL BATTERIES,"Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.",2\r\n371,PROHIBITED ITEM,Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.,2\r\n405,FLAMMABLE MATERIAL,"Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.",1\r\n416,INSULATED,Batteries must be insulated to prevent short circuits when taken aboard the aircraft.,1\r\n404,NON-CONDUCTIVE CAPS,Non-conductive caps are required to protect the terminals of spare batteries during transport.,1\r\n389,PORTABLE CHARGERS,"Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.",2\r\n401,12 VOLTS,12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.,1\r\n403,STRONG OUTER PACKAGING,Batteries must be in strong outer packaging to prevent damage and leakage during transport.,1\r\n400,2 GRAMS,2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.,1\r\n402,49 CFR,"49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n430,LITHIUM-ION BATTERIES,CARRY-ON,Lithium-ion batteries may be taken aboard the aircraft in carry-on baggage under specific watt-hour limits,11\r\n426,SPARE BATTERIES,LITHIUM-ION BATTERIES,Spare batteries include lithium-ion batteries which are allowed aboard aircraft under specific conditions,11\r\n434,LITHIUM-ION BATTERIES,SPARE LITHIUM BATTERIES,Larger lithium-ion batteries are subject to restrictions similar to spare lithium batteries regarding their transport on aircraft.,10\r\n431,LITHIUM-ION BATTERIES,LITHIUM BATTERIES,"Lithium batteries include both lithium-ion and lithium metal types, indicating a classification relationship",9\r\n432,LITHIUM-ION BATTERIES,100 WATT-HOURS,Lithium-ion batteries with a capacity of 100 watt-hours are allowed in carry-on luggage,8\r\n433,LITHIUM-ION BATTERIES,160 WATT-HOURS,Lithium-ion batteries with a capacity of 160 watt-hours are subject to specific regulations for air travel,8\r\n385,ELECTRONIC DEVICES,CARRY-ON,"Electronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement",8\r\n429,DRY CELL ALKALINE BATTERIES,LITHIUM-ION BATTERIES,Both dry cell alkaline batteries and lithium-ion batteries are allowed in carry-on baggage,8\r\n438,NON-SPILLABLE WET BATTERIES,CARRY-ON,Non-spillable wet batteries are allowed in carry-on baggage if they meet the specified voltage and watt-hour limits,7\r\n387,ELECTRONIC DEVICES,SPARE LITHIUM BATTERIES,"Spare lithium batteries are prohibited in checked baggage, while electronic devices with removable lithium batteries must have the battery taken aboard the cabin.",7\r\n436,LITHIUM METAL BATTERIES,CARRY-ON,Lithium metal batteries can be brought aboard the aircraft in carry-on baggage if they meet the weight restrictions,6\r\n421,PROHIBITED ITEM,SPARE BATTERIES,"Spare lithium batteries are prohibited in checked baggage, indicating a strong restriction",6\r\n386,ELECTRONIC DEVICES,FLAMMABLE MATERIAL,"Flammable materials are prohibited from being stored with electronic devices containing lithium batteries, indicating a safety restriction",5\r\n428,SPARE BATTERIES,INSULATED,Spare batteries must be insulated to prevent short circuits when taken aboard the aircraft.,5\r\n427,SPARE BATTERIES,NON-CONDUCTIVE CAPS,Spare batteries must have non-conductive caps to protect their terminals during transport,5\r\n435,PORTABLE CHARGERS,SPARE LITHIUM BATTERIES,Both spare lithium batteries and portable chargers are prohibited in checked baggage and must be taken aboard the aircraft cabin.,5\r\n439,NON-SPILLABLE WET BATTERIES,12 VOLTS,Non-spillable wet batteries must not exceed 12 volts for air travel,4\r\n440,NON-SPILLABLE WET BATTERIES,STRONG OUTER PACKAGING,Non-spillable wet batteries must be packaged in strong outer packaging to prevent leakage,4\r\n422,PROHIBITED ITEM,PORTABLE CHARGERS,Portable chargers are classified as lithium batteries and are prohibited in checked baggage,4\r\n437,LITHIUM METAL BATTERIES,2 GRAMS,Consumer-grade lithium metal batteries must contain no more than 2 grams of lithium,3\r\n442,49 CFR,LITHIUM BATTERIES,"49 CFR outlines the regulations for the transport of lithium batteries, indicating a regulatory relationship",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,36 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n41,ANIMAL,"Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations. These regulations are designed to ensure the safety and well-being of the animals during transportation.",29\r\n59,100 KG,"The entity ""100 KG"" refers to the maximum weight limit for transporting pets as baggage. According to the provided descriptions, pets that weigh 100 kg or less can be transported in the cabin as baggage, while those exceeding this weight must be transported as registered cargo. Therefore, any animal weighing more than 100 kg is required to be transported as cargo rather than as baggage.",1\r\n58,9 KG,"The entity ""9 KG"" refers to the weight limit for pets that can be transported as baggage on an aircraft. Specifically, animals weighing up to 9 kg can typically be transported in the aircraft cabin without any additional requirements.",1\r\n62,AMSTERDAM,Amsterdam is an airport from which animals cannot be transported as registered cargo.,1\r\n57,ANIMAL WEIGHT,The weight of the animal is a critical factor in determining the mode of transport.,1\r\n79,BANGKOK,,1\r\n63,BOSTON,Boston is an airport from which animals cannot be transported as registered cargo.,1\r\n64,MUMBAI,Mumbai is an airport from which animals cannot be transported as registered cargo.,1\r\n65,BRUSSELS,Brussels is an airport from which animals cannot be transported as registered cargo.,1\r\n66,LARNACA,Larnaca is an airport from which animals cannot be transported as registered cargo.,1\r\n67,FRANKFURT,Frankfurt is an airport from which animals cannot be transported as registered cargo.,1\r\n68,MOSCOW,Moscow is an airport from which animals cannot be transported as registered cargo.,1\r\n69,MUNICH,Munich is an airport from which animals cannot be transported as registered cargo.,1\r\n70,MADRID,Madrid is an airport from which animals cannot be transported as registered cargo.,1\r\n71,BERLIN,Berlin is an airport from which animals cannot be transported as registered cargo.,1\r\n72,PRAGUE,Prague is an airport from which animals cannot be transported as registered cargo.,1\r\n73,WARSAW,Warsaw is an airport from which animals cannot be transported as registered cargo.,1\r\n74,TORONTO,Toronto is an airport from which animals cannot be transported as registered cargo.,1\r\n75,VIENNA,Vienna is an airport from which animals cannot be transported as registered cargo.,1\r\n76,BUDAPEST,Budapest is an airport from which animals cannot be transported as registered cargo.,1\r\n77,KYIV,Kyiv is an airport from which animals cannot be transported as registered cargo.,1\r\n78,ROME,Rome is an airport from which animals cannot be transported as registered cargo.,1\r\n40,GUIDELINES,"The term ""GUIDELINES"" refers to the regulations established by the authorities of a destination country regarding the transportation of animals, as well as updated rules concerning the carrying of liquids in carry-on bags. These guidelines are essential for ensuring compliance with safety and welfare standards during travel.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n17,EL AL,ANIMAL,EL AL provides transport services for animals in various classes,78\r\n157,ANIMAL,BAGGAGE,Animals can be transported as baggage in the aircraft cabin or hold,50\r\n142,WEIGHT,ANIMAL,"The weight of the animal determines the mode of transport, affecting whether it travels in the cabin or as cargo.",35\r\n153,CARGO,ANIMAL,"Animals can be transported as cargo, which is a specific route type for shipping them in the aircraft hold.",33\r\n110,REGISTERED CARGO,ANIMAL,Animals exceeding weight limits must be transported as registered cargo,32\r\n141,CAGE,ANIMAL,"A cage is required for the safe transport of animals, ensuring they are secure during travel.",31\r\n148,PERMIT,ANIMAL,"A permit is necessary for the transport of animals, ensuring compliance with regulations.",31\r\n160,ANIMAL,100 KG,Animals weighing more than 100 kg must be transported as registered cargo,30\r\n159,ANIMAL,9 KG,Animals weighing up to 9 kg can be transported in the aircraft cabin,30\r\n162,ANIMAL,AMSTERDAM,Animals cannot be transported as registered cargo from Amsterdam,30\r\n158,ANIMAL,ANIMAL WEIGHT,The weight of the animal determines the mode of transport,30\r\n161,ANIMAL,BANGKOK,Animals cannot be transported as registered cargo from Bangkok,30\r\n163,ANIMAL,BOSTON,Animals cannot be transported as registered cargo from Boston,30\r\n164,ANIMAL,MUMBAI,Animals cannot be transported as registered cargo from Mumbai,30\r\n165,ANIMAL,BRUSSELS,Animals cannot be transported as registered cargo from Brussels,30\r\n166,ANIMAL,LARNACA,Animals cannot be transported as registered cargo from Larnaca,30\r\n167,ANIMAL,FRANKFURT,Animals cannot be transported as registered cargo from Frankfurt,30\r\n168,ANIMAL,MOSCOW,Animals cannot be transported as registered cargo from Moscow,30\r\n169,ANIMAL,MUNICH,Animals cannot be transported as registered cargo from Munich,30\r\n170,ANIMAL,MADRID,Animals cannot be transported as registered cargo from Madrid,30\r\n171,ANIMAL,BERLIN,Animals cannot be transported as registered cargo from Berlin,30\r\n172,ANIMAL,PRAGUE,Animals cannot be transported as registered cargo from Prague,30\r\n173,ANIMAL,WARSAW,Animals cannot be transported as registered cargo from Warsaw,30\r\n174,ANIMAL,TORONTO,Animals cannot be transported as registered cargo from Toronto,30\r\n175,ANIMAL,VIENNA,Animals cannot be transported as registered cargo from Vienna,30\r\n176,ANIMAL,BUDAPEST,Animals cannot be transported as registered cargo from Budapest,30\r\n177,ANIMAL,KYIV,Animals cannot be transported as registered cargo from Kyiv,30\r\n178,ANIMAL,ROME,Animals cannot be transported as registered cargo from Rome,30\r\n156,GUIDELINES,ANIMAL,Guidelines from destination authorities dictate the transport requirements for animals.,30\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,41 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n267,CARRY-ON BAGGAGE,Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.,17\r\n165,BUSINESS CLASS,"Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.",5\r\n329,SUNDOR,Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.,5\r\n164,PREMIUM CLASS,"Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.",4\r\n162,SPORTING EQUIPMENT,"Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.",14\r\n35,WEIGHT,"Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.",6\r\n38,CARGO,"CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.",4\r\n173,277 CM,"The entity ""277 CM"" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.",3\r\n167,EL AL CARGO DIVISION,"The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.",2\r\n163,ECONOMY CLASS,"Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.",7\r\n169,OVERWEIGHT BAGGAGE,"Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline\'s specified weight restrictions.",8\r\n166,DIMENSIONS,"Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.",4\r\n277,CHECKED LUGGAGE,,2\r\n273,BOOKING MANAGEMENT,Booking management refers to the section of the airline\'s website where passengers can manage their flight bookings and check baggage policies.,1\r\n268,PERSONAL BAGS,"Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.",1\r\n269,SUN DOR,Sun Dor is an airline that operates flights with specific carry-on baggage policies.,1\r\n270,MATMID FREQUENT FLYER CLUB,"The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.",1\r\n271,TROLLEY,"A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.",1\r\n272,FLIGHT TICKET TERMS,Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.,1\r\n274,OVERHEAD COMPARTMENTS,"Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.",1\r\n276,NORTH AMERICA,"North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.",1\r\n290,MAXIMUM DIMENSIONS,Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.,1\r\n181,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America.,2\r\n174,190 CM,190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.,1\r\n170,ADDITIONAL SPORTS EQUIPMENT,Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.,1\r\n328,OVERSIZED BAGGAGE,Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.,4\r\n172,30 KG,"The entity ""30 KG"" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.",2\r\n168,CALL CENTER,The call center is a service location where passengers can contact for approval regarding overweight baggage.,1\r\n178,CALL CENTER APPROVAL,"Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.",1\r\n171,32 KG,"The entity ""32 KG"" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.",2\r\n175,LITE FARES,"LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.",1\r\n275,BAGGAGE CONVEYOR BELT,The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n29,EL AL,CARRY-ON BAGGAGE,EL AL has specific policies regarding carry-on baggage for its flights. These policies outline the regulations and guidelines that passengers must follow when bringing carry-on items on board.,66\r\n37,EL AL,BUSINESS CLASS,EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each,54\r\n35,EL AL,SUNDOR,Sundor and EL AL have similar baggage policies regarding checked baggage allowances and fees,54\r\n36,EL AL,PREMIUM CLASS,EL AL allows premium class passengers to check up to two pieces of baggage weighing up to 23 kg each,53\r\n88,CHECKED BAGGAGE,SPORTING EQUIPMENT,Checked baggage can include sporting equipment as long as it meets the airline\'s size and weight requirements,39\r\n142,WEIGHT,ANIMAL,"The weight of the animal determines the mode of transport, affecting whether it travels in the cabin or as cargo.",35\r\n153,CARGO,ANIMAL,"Animals can be transported as cargo, which is a specific route type for shipping them in the aircraft hold.",33\r\n100,CHECKED BAGGAGE,BUSINESS CLASS,Business class includes checked baggage allowances,30\r\n109,CHECKED BAGGAGE,SUNDOR,Sundor has specific policies regarding checked baggage allowances for passengers,30\r\n99,CHECKED BAGGAGE,PREMIUM CLASS,Premium class includes checked baggage allowances,29\r\n96,CHECKED BAGGAGE,277 CM,The total dimensions for checked baggage must not exceed 277 cm,28\r\n108,CHECKED BAGGAGE,EL AL CARGO DIVISION,"The EL AL Cargo Division manages special requests for checked baggage, indicating a service relationship.",27\r\n308,ECONOMY CLASS,CARRY-ON BAGGAGE,Economy Class passengers are entitled to specific carry-on baggage allowances.,24\r\n146,WEIGHT,CARRY-ON BAGGAGE,"The entity ""WEIGHT"" is a crucial factor in determining the eligibility of ""CARRY-ON BAGGAGE."" Specifically, weight limits play an essential role in assessing whether carry-on baggage meets the requirements for boarding.",23\r\n314,BUSINESS CLASS,CARRY-ON BAGGAGE,Business Class passengers are entitled to specific carry-on baggage allowances.,22\r\n304,SPORTING EQUIPMENT,OVERWEIGHT BAGGAGE,"Sporting equipment can be classified as overweight baggage if it exceeds the weight limit, incurring additional fees",22\r\n312,PREMIUM CLASS,CARRY-ON BAGGAGE,Premium Class passengers are entitled to specific carry-on baggage allowances.,21\r\n316,DIMENSIONS,CARRY-ON BAGGAGE,DIMENSIONS play a critical role in determining the eligibility of CARRY-ON BAGGAGE for boarding. They are a key factor that airlines consider when assessing whether a piece of baggage meets the requirements for carry-on status.,21\r\n295,SPORTING EQUIPMENT,ECONOMY CLASS,"Economy Class permits the transport of sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that passengers can bring their sporting gear along while complying with the established size and weight restrictions.",21\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n143,WEIGHT,SPORTING EQUIPMENT,"Weight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. It serves as a key restriction that determines whether sporting equipment can be transported within specified travel classes.",20\r\n297,SPORTING EQUIPMENT,BUSINESS CLASS,"Business Class provides the option for transporting sporting equipment, adhering to specific size and weight conditions that differ from those in Economy and Premium Class. This class has distinct weight limits for sporting equipment, allowing for a more accommodating experience for travelers with such items.",19\r\n370,CARRY-ON BAGGAGE,CHECKED LUGGAGE,"CARRY-ON BAGGAGE and CHECKED LUGGAGE are two types of luggage that serve different purposes for passengers traveling by air. Checked luggage is an alternative to carry-on baggage, specifically designed for those who need to transport larger items that cannot fit in the passenger cabin. In contrast, carry-on baggage is permitted in the cabin and is typically limited to smaller items that passengers can easily manage during their flight. Thus, while both types of luggage are essential for air travel, they cater to different needs and restrictions regarding size and accessibility.",19\r\n373,CARRY-ON BAGGAGE,BOOKING MANAGEMENT,"Booking management provides passengers with the ability to check their carry-on baggage allowances and policies, as well as manage their bookings. This functionality ensures that travelers are informed about the specific regulations regarding their carry-on items, facilitating a smoother travel experience.",18\r\n155,CARGO,SPORTING EQUIPMENT,"CARGO provides services for transporting sporting equipment that exceeds standard baggage limits. Specifically, sporting equipment can be transported as cargo when it surpasses the standard baggage allowance, ensuring that athletes and sports enthusiasts can travel with their necessary gear without restrictions.",18\r\n367,CARRY-ON BAGGAGE,PERSONAL BAGS,"CARRY-ON BAGGAGE and PERSONAL BAGS are closely related concepts in air travel. Personal bags are classified as a type of carry-on baggage, specifically designed to be stored under the seat in front of the passenger. This allows for easy access during the flight while adhering to airline regulations regarding carry-on items.",18\r\n368,CARRY-ON BAGGAGE,SUN DOR,Sun Dor has specific policies regarding carry-on baggage for its flights.,18\r\n369,CARRY-ON BAGGAGE,MATMID FREQUENT FLYER CLUB,"The Matmid Frequent Flyer Club status has a significant impact on the eligibility for carry-on baggage for passengers. Membership in the Matmid Frequent Flyer Club influences the rules and allowances regarding carry-on baggage, suggesting that those who are members may have different or enhanced privileges compared to non-members.",18\r\n371,CARRY-ON BAGGAGE,TROLLEY,A trolley is a specific type of carry-on baggage that passengers can bring into the cabin and can be stored in overhead compartments.,18\r\n372,CARRY-ON BAGGAGE,FLIGHT TICKET TERMS,The flight ticket terms outline the policies and rules regarding carry-on baggage allowances applicable to passengers. These terms provide essential information that helps travelers understand the specific regulations governing the amount and type of carry-on baggage they are permitted to bring on board.,18\r\n374,CARRY-ON BAGGAGE,OVERHEAD COMPARTMENTS,Overhead compartments are designated storage areas for carry-on baggage during the flight.,18\r\n375,CARRY-ON BAGGAGE,NORTH AMERICA,"CARRY-ON BAGGAGE policies are specifically applicable to flights from and to NORTH AMERICA. These policies outline the regulations and restrictions regarding the size, weight, and number of carry-on items that passengers are allowed to bring on board.",18\r\n376,CARRY-ON BAGGAGE,MAXIMUM DIMENSIONS,Maximum dimensions are critical for determining what carry-on baggage is allowed,18\r\n298,SPORTING EQUIPMENT,DIMENSIONS,Sporting equipment is subject to specific dimensions that are critical for determining whether it can be transported as checked baggage. These dimensions play a vital role in ensuring that the equipment meets airline regulations and can be safely accommodated during travel.,18\r\n296,SPORTING EQUIPMENT,PREMIUM CLASS,"Premium Class provides the option for transporting sporting equipment, adhering to specific conditions related to dimensions and weight. This ensures that customers can carry their sporting gear while complying with the established size and weight restrictions.",18\r\n305,SPORTING EQUIPMENT,EXCESS BAGGAGE CHARGES,Excess baggage charges apply to sporting equipment that exceeds the permitted dimensions or weight,18\r\n303,SPORTING EQUIPMENT,150 USD,150 USD is the fee for transporting sports equipment one way to the Far East and North America,16\r\n299,SPORTING EQUIPMENT,EL AL CARGO DIVISION,"The EL AL Cargo Division offers a specialized service for transporting sporting equipment that exceeds standard baggage limits and allowances. This division provides an alternative solution for individuals and organizations needing to transport larger or heavier sporting gear, ensuring that such items can be shipped efficiently and effectively.",16\r\n302,SPORTING EQUIPMENT,70 USD,"70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco",16\r\n301,SPORTING EQUIPMENT,190 CM,"190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class, establishing a relationship between linear dimension and baggage type.",15\r\n300,SPORTING EQUIPMENT,ADDITIONAL SPORTS EQUIPMENT,"Sporting equipment encompasses a variety of gear used for various sports activities. Within this category, additional sports equipment specifically refers to any extra gear that necessitates special handling or can be transported beyond the standard baggage allowance. This includes items that exceed the typical limits set for standard baggage, ensuring that athletes and sports enthusiasts can carry the necessary equipment for their activities without restrictions.",15\r\n147,WEIGHT,OVERWEIGHT BAGGAGE,Overweight baggage is defined by exceeding the weight limit set by the airline,14\r\n322,OVERWEIGHT BAGGAGE,SUNDOR,Sundor has specific guidelines for handling overweight baggage,13\r\n321,OVERWEIGHT BAGGAGE,OVERSIZED BAGGAGE,"OVERWEIGHT BAGGAGE and OVERSIZED BAGGAGE both necessitate special handling due to their size and weight. Additionally, travelers should be aware that both types of baggage may incur additional fees.",12\r\n319,OVERWEIGHT BAGGAGE,277 CM,"277 cm is the maximum dimension limit for sports equipment to be sent as overweight baggage, establishing a relationship between linear dimension and restriction.",11\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n136,PETS,CARGO,Pets can also be transported as cargo depending on their weight and requirements,10\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n306,ECONOMY CLASS,30 KG,"30 kg is the maximum weight limit for sports equipment in Economy Class, indicating a relationship between the weight category and travel class.",9\r\n318,CALL CENTER,OVERWEIGHT BAGGAGE,"The call center is where passengers can seek approval for transporting overweight baggage, including sports equipment.",9\r\n320,OVERWEIGHT BAGGAGE,CALL CENTER APPROVAL,"Call center approval is necessary for transporting overweight baggage, ensuring compliance with airline policies.",9\r\n154,CARGO,BEN GURION AIRPORT,"Cargo, including pets, is released at the cargo terminal of Ben Gurion Airport",9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n402,OVERSIZED BAGGAGE,SUNDOR,Sundor has specific guidelines for handling oversized baggage,9\r\n144,WEIGHT,30 KG,30 kg is the maximum weight limit for sports equipment in Economy Class,8\r\n145,WEIGHT,32 KG,32 kg is the maximum weight limit for sports equipment in Business Class,8\r\n317,DIMENSIONS,OVERSIZED BAGGAGE,Oversized baggage is defined by exceeding authorized dimensions,8\r\n307,ECONOMY CLASS,LITE FARES,"The Economy Class includes a category known as Lite Fares, which are characterized by certain restrictions and limited services. Specifically, Lite Fares impose limitations on the transport of sporting equipment, differentiating them from standard Economy Class offerings. These fares are designed to provide a more economical option for travelers while offering fewer amenities compared to regular Economy Class fares.",8\r\n315,DIMENSIONS,277 CM,277 cm is the maximum dimension limit for transporting sports equipment as overweight baggage,7\r\n313,BUSINESS CLASS,32 KG,"32 kg is the maximum weight limit for sports equipment in Business Class, indicating a relationship between the weight category and travel class.",7\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n328,150 USD,US DOLLARS,"150 USD is expressed in US Dollars, which is the currency for baggage fees",6\r\n378,BAGGAGE CONVEYOR BELT,CHECKED LUGGAGE,The baggage conveyor belt is where checked luggage is retrieved after a flight.,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,45 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n293,CARRY-ON BAG,"A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.",10\r\n292,PERSONAL BAG,"A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.",3\r\n289,MAXIMUM WEIGHT,"The term ""Maximum Weight"" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.",3\r\n279,16 KG,"The entity ""16 KG"" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.",3\r\n280,20 KG,"The entity ""20 KG"" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.",3\r\n291,BAG,"A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.",3\r\n300,OVERSIZED ITEMS,"Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.",2\r\n298,115 CM,The total maximum dimension for a carry-on bag on El Al flights is 115 cm.,1\r\n296,25 CM,The maximum depth for a carry-on bag on El Al flights is 25 cm.,1\r\n295,45 CM,The maximum width for a carry-on bag on El Al flights is 45 cm.,1\r\n294,56 CM,The maximum length for a carry-on bag on El Al flights is 56 cm.,1\r\n278,BAGS,"Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.",3\r\n301,EMERGENCY EXIT ROW,The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.,1\r\n297,18X38X30 CM,"The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.",1\r\n299,DUTY-FREE ITEMS,Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.,1\r\n302,SERVICE CENTER,El Al\'s service center is where passengers can coordinate the transport of unusual items.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n31,EL AL,CARRY-ON BAG,El Al has specific policies regarding the dimensions and weight limits for carry-on bags,59\r\n30,EL AL,PERSONAL BAG,"El Al allows passengers to bring a personal bag on board, subject to size restrictions",52\r\n377,CARRY-ON BAGGAGE,MAXIMUM WEIGHT,Maximum weight is critical for determining what carry-on baggage is allowed,20\r\n382,16 KG,CARRY-ON BAG,The maximum weight limit for one carry-on bag is 16 kg,13\r\n384,20 KG,CARRY-ON BAG,The combined weight limit for carry-on bags is 20 kg,13\r\n390,BAG,CARRY-ON BAG,A carry-on bag is a type of bag that must meet specific weight and dimension limits,13\r\n398,CARRY-ON BAG,OVERSIZED ITEMS,Oversized items may require special arrangements for transport in the cabin,12\r\n397,CARRY-ON BAG,115 CM,The total maximum dimension for a carry-on bag is 115 cm,11\r\n396,CARRY-ON BAG,25 CM,The maximum depth for a carry-on bag is 25 cm,11\r\n395,CARRY-ON BAG,45 CM,The maximum width for a carry-on bag is 45 cm,11\r\n394,CARRY-ON BAG,56 CM,The maximum length for a carry-on bag is 56 cm,11\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n399,CARRY-ON BAG,EMERGENCY EXIT ROW,Passengers in the emergency exit row may store bags in overhead compartments,11\r\n381,16 KG,MAXIMUM WEIGHT,The maximum weight for one bag is defined as 16 kg,6\r\n379,BAGS,16 KG,The weight limit for one bag is set at 16 kg as per airline policy,6\r\n383,20 KG,MAXIMUM WEIGHT,The maximum combined weight for all bags is defined as 20 kg,6\r\n380,BAGS,20 KG,The combined weight limit for all bags is set at 20 kg as per airline policy,6\r\n391,BAG,PERSONAL BAG,A personal bag is a specific type of bag that passengers can bring on board,6\r\n393,PERSONAL BAG,18X38X30 CM,The maximum dimensions for a personal bag are 18x38x30 cm,4\r\n392,BAG,DUTY-FREE ITEMS,Duty-free items are included in the baggage allowance but do not count towards the limit,4\r\n400,OVERSIZED ITEMS,SERVICE CENTER,Passengers must contact the service center for approval to carry oversized items,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,49 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n333,BAGGAGE ALLOWANCE,"Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.",12\r\n341,BAGGAGE POLICY,"The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.",5\r\n345,STANDARD BAGGAGE,"Standard baggage refers to luggage that complies with the airline\'s specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.",2\r\n96,FLIGHT TICKET,"A flight ticket is a document that confirms a passenger\'s reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.",3\r\n335,ADDITIONAL PIECES OF BAGGAGE,"Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.",3\r\n362,EXCESS BAGGAGE RATES,"Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.",3\r\n355,TICKET TYPE,The ticket type determines the baggage allowance and rules applicable to each passenger\'s reservation.,2\r\n330,LITE SERVICE,Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.,2\r\n331,CLASSIC SERVICE,Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.,2\r\n332,FLEX SERVICE,"Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.",2\r\n352,FLIGHT SEGMENT,"A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.",1\r\n360,LITE TICKETS,Lite tickets are a type of ticket that does not include any baggage allowance.,1\r\n334,MANAGE YOUR BOOKING,"""Manage Your Booking"" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.",3\r\n343,PRE-ORDERING,"Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.",1\r\n338,THREE HOURS,Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.,1\r\n357,FREE BAGGAGE ALLOWANCE,"The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.",1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n44,EL AL,BAGGAGE ALLOWANCE,EL AL has specific baggage allowance policies that depend on the ticket type purchased by the passenger.,61\r\n52,EL AL,BAGGAGE POLICY,El Al has a specific baggage policy that dictates the rules for checked baggage,54\r\n102,CHECKED BAGGAGE,BAGGAGE ALLOWANCE,"The terms ""CHECKED BAGGAGE"" and ""BAGGAGE ALLOWANCE"" are closely related concepts in air travel. Baggage allowance refers to the specific regulations that determine the amount of checked baggage a passenger is permitted to bring on a flight. This allowance encompasses provisions for the checked baggage that passengers can take with them, ensuring that they are informed about the limits and requirements associated with their luggage when traveling.",37\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline\'s size and weight requirements,23\r\n86,PET,FLIGHT TICKET,"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.",22\r\n413,BAGGAGE ALLOWANCE,BAGGAGE POLICY,Baggage allowance is determined by the baggage policy of the airline,17\r\n408,BAGGAGE ALLOWANCE,ADDITIONAL PIECES OF BAGGAGE,"Additional pieces of baggage can be checked in for a fee, which varies depending on the service type",15\r\n412,BAGGAGE ALLOWANCE,EXCESS BAGGAGE RATES,"Excess baggage rates apply when the baggage allowance is exceeded, indicating a direct relationship between the two.",15\r\n210,FLIGHT TICKET,BAGGAGE ALLOWANCE,The flight ticket includes information about the baggage allowance for the passenger,15\r\n410,BAGGAGE ALLOWANCE,TICKET TYPE,The baggage allowance is determined by the ticket type specified on the reservation,14\r\n405,LITE SERVICE,BAGGAGE ALLOWANCE,Lite service includes a baggage allowance of one piece of checked baggage (23 kg) that requires pre-ordering,14\r\n406,CLASSIC SERVICE,BAGGAGE ALLOWANCE,Classic service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n407,FLEX SERVICE,BAGGAGE ALLOWANCE,Flex service includes a baggage allowance of one piece of checked baggage (23 kg) in the ticket price,14\r\n409,BAGGAGE ALLOWANCE,FLIGHT SEGMENT,Baggage allowance is specified for each flight segment on the ticket,13\r\n411,BAGGAGE ALLOWANCE,LITE TICKETS,"Lite tickets do not include any baggage allowance, which is a specific policy of EL AL.",13\r\n404,SUNDOR,BAGGAGE POLICY,Sundor has a specific baggage policy that dictates the rules for checked baggage,10\r\n310,ECONOMY CLASS,CLASSIC SERVICE,Classic service is one of the ticket types available in economy class,9\r\n311,ECONOMY CLASS,FLEX SERVICE,Flex service is one of the ticket types available in economy class,9\r\n309,ECONOMY CLASS,LITE SERVICE,Lite service is one of the ticket types available in economy class,9\r\n418,BAGGAGE POLICY,STANDARD BAGGAGE,Standard baggage must comply with the airline\'s baggage policy,7\r\n330,US DOLLARS,EXCESS BAGGAGE RATES,"Excess baggage rates are displayed in US dollars, linking the currency to the fee structure.",7\r\n414,MANAGE YOUR BOOKING,ADDITIONAL PIECES OF BAGGAGE,Passengers can add additional pieces of baggage through the Manage Your Booking page,6\r\n211,FLIGHT TICKET,MANAGE YOUR BOOKING,"The Manage Your Booking service allows passengers to check their flight ticket details, including baggage allowances",6\r\n332,LOCAL CURRENCY,EXCESS BAGGAGE RATES,"Payment for excess baggage rates may require local currency at certain airports, linking the currency to the fee structure.",5\r\n416,ADDITIONAL PIECES OF BAGGAGE,PRE-ORDERING,Pre-ordering is required for checking additional pieces of baggage beyond the standard allowance,4\r\n415,MANAGE YOUR BOOKING,THREE HOURS,The pre-order option for additional baggage is available up to three hours prior to departure through Manage Your Booking,4\r\n420,TICKET TYPE,FREE BAGGAGE ALLOWANCE,The free baggage allowance is based on the ticket type and is specified for each flight segment,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,54 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n2,SERVICE DOG,"A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.",16\r\n107,PASSENGER,"The term ""PASSENGER"" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline\'s baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline\'s policies regarding baggage and services, ensuring a standardized travel experience.",7\r\n105,CHECK-IN COUNTERS,"Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.",5\r\n97,DOG,A dog is an animal that may be transported by passengers under certain conditions and regulations.,5\r\n42,CDC,The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC\'s requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.,3\r\n34,CAGE,"CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.",2\r\n184,AIRLINE,"An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.",2\r\n89,PASSENGER CABIN,"The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.",5\r\n99,UNITED STATES,"The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.",2\r\n104,ADDITIONAL CHARGES,Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.,1\r\n103,FLIGHT DATE,"The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.",1\r\n102,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,1\r\n98,HEATHROW AIRPORT,Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.,1\r\n93,I.D.F SOLDIER,I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.,1\r\n101,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,1\r\n106,SANITARY CONDITIONS,"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.",1\r\n87,VETERINARY CERTIFICATE,A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.,1\r\n94,SHELL SHOCK,Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.,1\r\n381,ADDITIONAL SERVICES,"Refers to extra services that can be ordered by passengers, which may incur additional charges.",2\r\n195,DESTINATION COUNTRY,"The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.",2\r\n109,FORMS,Necessary documentation that passengers must provide to transport a dog on EL AL flights.,1\r\n112,HOLD,,1\r\n317,PASSENGERS,Individuals traveling on flights who must check in at the counters regardless of luggage.,2\r\n91,CAT,"Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.",1\r\n318,SECURITY CHECK AREAS,,1\r\n111,DIRECT THREAT,A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.,1\r\n110,DISTURBANCE,"A situation where the dog\'s behavior causes disruption on the aircraft, leading to potential refusal of transport.",1\r\n92,EXOTIC BIRD,"Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.",1\r\n384,FULL CHARGE,Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n5,EL AL,SERVICE DOG,"EL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets.",65\r\n22,EL AL,PASSENGER,EL AL has specific requirements that passengers must meet to transport a dog,56\r\n32,EL AL,CHECK-IN COUNTERS,El Al requires passengers to use check-in counters for their flights,54\r\n21,EL AL,DOG,"EL AL has policies that govern the transport of dogs, including conditions under which they may be refused",54\r\n16,EL AL,CDC,EL AL must comply with CDC regulations for transporting dogs to the US,52\r\n141,CAGE,ANIMAL,"A cage is required for the safe transport of animals, ensuring they are secure during travel.",31\r\n89,CHECKED BAGGAGE,AIRLINE,"Airlines have specific policies regarding checked baggage, including size and weight limits",27\r\n59,SERVICE DOG,ISRAEL,"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.",25\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n65,SERVICE DOG,CHECK-IN COUNTERS,Passengers must present their documentation for traveling with a service dog at the check-in counters.,21\r\n53,SERVICE DOG,PASSENGER CABIN,Service dogs are allowed in the passenger cabin at no additional cost under certain conditions.,21\r\n66,SERVICE DOG,DOCUMENTS,Passengers must complete all necessary documents required for transporting service dogs to and from Israel.,21\r\n60,SERVICE DOG,CAGE,A cage is required for the transport of a service dog to ensure its safety and comfort during the flight.,18\r\n58,SERVICE DOG,UNITED STATES,"The United States has specific regulations that must be followed for transporting service dogs, which include additional forms and requirements.",18\r\n64,SERVICE DOG,ADDITIONAL CHARGES,Additional charges may apply for the inspection and release of a service dog at airport facilities in the United States.,17\r\n63,SERVICE DOG,FLIGHT DATE,The flight date is crucial for passengers traveling with a service dog to ensure compliance with registration and documentation requirements.,17\r\n62,SERVICE DOG,HARNESSES,Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.,17\r\n57,SERVICE DOG,HEATHROW AIRPORT,Passengers traveling with a service dog must register on the Heathrow Airport website prior to their flight.,17\r\n55,SERVICE DOG,I.D.F SOLDIER,I.D.F soldiers may transport service dogs at no additional cost under specific conditions.,17\r\n61,SERVICE DOG,LEASH,A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.,17\r\n67,SERVICE DOG,SANITARY CONDITIONS,"Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.",17\r\n54,SERVICE DOG,VETERINARY CERTIFICATE,"A service dog must possess a veterinary certificate, which is essential to confirm that the dog is vaccinated and fit for travel. This certificate is a requirement for the transport of service dogs, ensuring their health and safety during travel.",17\r\n56,SERVICE DOG,SHELL SHOCK,Passengers experiencing shell shock may qualify to transport service dogs at no additional cost.,17\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n212,DOG,PASSENGER,The passenger is responsible for the dog\'s behavior and must meet conditions for its transport,12\r\n207,PASSENGER CABIN,DOG,Dogs can be transported in the passenger cabin under specific conditions related to size and weight.,10\r\n221,PASSENGER,ADDITIONAL SERVICES,"Passengers can order additional services, which may incur charges",9\r\n220,PASSENGER,AIRLINE,Passengers are subject to the policies of the airline regarding baggage and additional services,9\r\n219,PASSENGER,DESTINATION COUNTRY,Passengers must comply with the regulations of the destination country regarding baggage,9\r\n218,PASSENGER,FORMS,Passengers must provide the required forms to transport a dog on EL AL flights,8\r\n217,PASSENGER,HOLD,"If the dog cannot be transported in the passenger cabin, it may be placed in the hold",8\r\n215,CHECK-IN COUNTERS,PASSENGERS,Passengers must check in at the counters regardless of luggage,7\r\n202,DOCUMENTS,PASSENGERS,Passengers must have necessary documents available for their flight,7\r\n208,PASSENGER CABIN,CAT,Cats can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n216,CHECK-IN COUNTERS,SECURITY CHECK AREAS,Passengers must proceed to security check areas after checking in at the counters,6\r\n214,DOG,DIRECT THREAT,"If a dog is deemed a direct threat, it may be refused transport by EL AL",6\r\n213,DOG,DISTURBANCE,"A dog\'s behavior may lead to a disturbance, affecting its ability to be transported",6\r\n209,PASSENGER CABIN,EXOTIC BIRD,Exotic birds can be transported in the passenger cabin under specific conditions related to size and weight.,6\r\n179,CDC,UNITED STATES,"The CDC provides guidelines for transporting dogs to the United States, which must be followed by passengers.",5\r\n337,DESTINATION COUNTRY,EQUIPMENT,The destination country may refuse to admit certain types of passenger equipment,4\r\n423,ADDITIONAL SERVICES,FULL CHARGE,Ordering additional services will result in a full charge to the passenger,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,58 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n152,LIQUIDS IN CARRY-ON BAGS,Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.,14\r\n160,CARRY-ON BAGS,"CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.",8\r\n161,AEROSOLS,,1\r\n156,BABY FOOD,"Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.",1\r\n322,CLEAR RESEALABLE PLASTIC BAG,"Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.",1\r\n155,COSMETICS,"A type of liquid that may be carried in carry-on bags, subject to restrictions.",1\r\n158,CREAMS,"CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.",1\r\n323,DOCTOR\'S NOTE,Document required for carrying medications and special food products at the security checkpoint.,1\r\n154,GELS,"GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.",1\r\n153,WHISKEY,"A type of liquid that may be carried in carry-on bags, subject to restrictions.",1\r\n157,PRESCRIPTION MEDICATIONS,"A type of liquid that may be carried in carry-on bags, subject to restrictions.",1\r\n159,SECURITY CHECKPOINT,"The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations.",1\r\n319,U.S,Country with specific guidelines regarding the carrying of liquids in handbags.,1\r\n285,CHECKED BAGS,"Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane\'s cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.",3\r\n281,MEDICATIONS,Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.,1\r\n282,PASSPORTS,Passports are required documents for international travel and should be easily accessible during flights.,1\r\n283,VALUABLES,Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.,1\r\n288,RECOMMENDATION,"A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.",1\r\n286,PLANE\'S BELLY,The plane\'s belly refers to the cargo hold of the aircraft where checked bags are stored.,1\r\n287,NO CHARGE,No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n34,EL AL,LIQUIDS IN CARRY-ON BAGS,"EL AL states it is not responsible for any liquids confiscated from passengers at the airport, relating to the restrictions on liquids in carry-on bags.",63\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.",23\r\n283,LIQUIDS IN CARRY-ON BAGS,CARRY-ON BAGS,Restrictions on liquids apply specifically to items carried in carry-on bags.,22\r\n281,LIQUIDS IN CARRY-ON BAGS,AEROSOLS,Aerosols are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n279,LIQUIDS IN CARRY-ON BAGS,BABY FOOD,Baby food is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n286,LIQUIDS IN CARRY-ON BAGS,CLEAR RESEALABLE PLASTIC BAG,"A clear resealable plastic bag is required for packing liquids, aerosols, and gels in carry-on luggage.",15\r\n278,LIQUIDS IN CARRY-ON BAGS,COSMETICS,Cosmetics are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n282,LIQUIDS IN CARRY-ON BAGS,CREAMS,Creams are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n287,LIQUIDS IN CARRY-ON BAGS,DOCTOR\'S NOTE,A doctor\'s note is required for carrying medications and special food products at the security checkpoint when traveling with liquids.,15\r\n277,LIQUIDS IN CARRY-ON BAGS,GELS,Gels are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n276,LIQUIDS IN CARRY-ON BAGS,WHISKEY,Whiskey is a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n280,LIQUIDS IN CARRY-ON BAGS,PRESCRIPTION MEDICATIONS,Prescription medications are a type of liquid that is subject to the restrictions on liquids in carry-on bags.,15\r\n284,LIQUIDS IN CARRY-ON BAGS,SECURITY CHECKPOINT,"At the security checkpoint, liquids that exceed the permitted amount will be discarded.",15\r\n285,LIQUIDS IN CARRY-ON BAGS,U.S,The U.S. has specific guidelines that may affect the carrying of liquids in handbags on flights to and from the country.,15\r\n292,CARRY-ON BAGS,ELECTRONIC DEVICES,Electronic devices should be kept in carry-on bags for easy access during the flight,12\r\n288,CARRY-ON BAGS,BAGS,Carry-on bags are a type of baggage that passengers can take on board,11\r\n293,CARRY-ON BAGS,CHECKED BAGS,"If no free space is available, carry-on bags will be checked to the plane\'s belly",11\r\n289,CARRY-ON BAGS,MEDICATIONS,Medications should be kept in carry-on bags for easy access during the flight,9\r\n290,CARRY-ON BAGS,PASSPORTS,Passports should be kept in carry-on bags for easy access during the flight,9\r\n291,CARRY-ON BAGS,VALUABLES,Valuables should be kept in carry-on bags for easy access during the flight,9\r\n294,CARRY-ON BAGS,RECOMMENDATION,The recommendation advises passengers to remove certain items from carry-on bags for easy access,9\r\n388,CHECKED BAGS,PLANE\'S BELLY,Checked bags are stored in the plane\'s belly during the flight,4\r\n389,CHECKED BAGS,NO CHARGE,Checked bags will incur no charge if carry-on bags are checked due to lack of space,4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,61 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n210,ARTY RIMON,"ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.",12\r\n207,MAKOR HAZIUD,Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment.,3\r\n234,MOKA,"Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.",2\r\n235,RIMON MIZVADOT VE TIKIM,Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.,2\r\n237,HAGALGAL,"Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.",2\r\n240,IMPORTANT TO KNOW,Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.,2\r\n233,CARGO TIKIM VE MIZVADOT,"Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.",1\r\n249,SHLOMO HA-MELEKH,,1\r\n244,REHOVOT,Rehovot is a city where ARTY Rimon provides pickup and delivery services.,1\r\n246,SHOHAM,Shoham is a city where ARTY Rimon provides pickup and delivery services.,1\r\n247,RAMLE,Ramle is a city where ARTY Rimon provides pickup and delivery services.,1\r\n248,LOD,Lod is a city where ARTY Rimon provides pickup and delivery services.,1\r\n245,NES ZIONA,Nes Ziona is a city where Makor Haziud operates.,1\r\n238,BUGABOO,"Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.",1\r\n241,DELAY IN RECEIVING BAGGAGE,"Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.",1\r\n243,YEHUD,"Yehud is a city where Moka, a pickup and delivery point, is located.",1\r\n242,RISHON LE ZION,Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n240,BAGGAGE CLAIMS DEPARTMENT,ARTY RIMON,ARTY Rimon provides pickup and delivery services that may relate to baggage claims.,28\r\n237,BAGGAGE CLAIMS DEPARTMENT,MAKOR HAZIUD,Makor Haziud may provide equipment that is relevant for baggage handling and claims.,19\r\n340,MAKOR HAZIUD,ARTY RIMON,"Makor Haziud specializes in baggage, which is relevant to the services provided by ARTY Rimon",15\r\n343,ARTY RIMON,MOKA,"Moka is a pickup and delivery point for ARTY Rimon, indicating a direct service relationship",14\r\n344,ARTY RIMON,RIMON MIZVADOT VE TIKIM,"Both provide similar services in different locations, indicating a competitive relationship",14\r\n345,ARTY RIMON,HAGALGAL,"Hagalgal provides baby equipment, which is relevant to the services offered by ARTY Rimon",14\r\n346,ARTY RIMON,IMPORTANT TO KNOW,The policy regarding baggage damage is relevant to the services provided by ARTY Rimon,14\r\n342,ARTY RIMON,CARGO TIKIM VE MIZVADOT,"Both provide services related to luggage and bags, indicating a potential partnership or competition",13\r\n347,ARTY RIMON,SHLOMO HA-MELEKH,"Shlomo Ha-Melekh is a contact person for ARTY Rimon, indicating a direct association",13\r\n348,ARTY RIMON,REHOVOT,"ARTY Rimon provides services in Rehovot, indicating a service location relationship",13\r\n349,ARTY RIMON,SHOHAM,"ARTY Rimon provides services in Shoham, indicating a service location relationship",13\r\n350,ARTY RIMON,RAMLE,"ARTY Rimon provides services in Ramle, indicating a service location relationship",13\r\n351,ARTY RIMON,LOD,"ARTY Rimon provides services in Lod, indicating a service location relationship",13\r\n341,MAKOR HAZIUD,NES ZIONA,"Makor Haziud operates in Nes Ziona, indicating a service location relationship",4\r\n355,HAGALGAL,BUGABOO,"Bugaboo offers baby carriages, which are part of the baby equipment category that Hagalgal specializes in",3\r\n356,IMPORTANT TO KNOW,DELAY IN RECEIVING BAGGAGE,The policy regarding delays in receiving baggage is a critical aspect of customer service for baggage handlers,3\r\n352,MOKA,YEHUD,"Moka is located in Yehud, indicating a service location relationship",3\r\n353,RIMON MIZVADOT VE TIKIM,RISHON LE ZION,"Rimon Mizvadot ve Tikim operates in Rishon Le Zion, indicating a service location relationship",3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,66 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n4,PET,"Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.",19\r\n31,BUSINESS CABIN,"The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions.",3\r\n6,REGISTERED CARGO,"Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.",3\r\n36,PERMIT,A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.,2\r\n15,ISRAEL,"Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad.",9\r\n30,BILL OF LADING,A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.,3\r\n29,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.,2\r\n32,AIRCRAFT HOLD,The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.,1\r\n90,ALLOWANCE,The permitted baggage allowance does not include the weight of pets being transported.,1\r\n95,CARRYING CASE,"The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.",1\r\n27,HONG KONG,Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n25,JOHANNESBURG,Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n26,LONDON,London is a destination where transporting animals in the aircraft cabin is not allowed.,1\r\n33,PASSENGER AIRCRAFT CABIN,"The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.",1\r\n28,VETERINARIAN,Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.,1\r\n88,TRANSPORT CAGE GUIDELINES,Guidelines that outline the requirements for transport cages used for pets during flights.,1\r\n13,EL AL CARGO STORE,"The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.",4\r\n8,AUTHORIZATION,"Authorization from the Ministry of Agriculture�s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.",3\r\n37,VETERINARY SERVICES DEPARTMENT,"The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.",7\r\n45,EXPORT LICENSE,"An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.",2\r\n48,HIGH-RISK COUNTRY,"A ""HIGH-RISK COUNTRY"" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.",1\r\n53,MINISTRY OF HEALTH,The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.,1\r\n80,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are necessary for transporting pets.,1\r\n9,ANIMAL TESTS,The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.,2\r\n14,CARGO TERMINAL,"The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.",1\r\n39,APPROVAL,Approval from the EL AL service center is necessary for transporting pets in the Business cabin.,1\r\n\n\n-----Claims-----\nhuman_readable_id,subject_id,type,status,description\r\n44,ISRAEL,BAGGAGE MEASUREMENTS AND RESTRICTIONS,TRUE,It is important to know what you can take with you aboard the aircraft when departing from Israel.\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n7,EL AL,PET,"EL AL has specific policies for transporting pets, including weight limits and conditions for cabin transport",68\r\n0,MINISTRY OF AGRICULTURE,EL AL,"The Ministry of Agriculture is responsible for overseeing the transport of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. One such entity is EL AL, which is required to comply with these regulations set forth by the Ministry of Agriculture. This ensures that all procedures related to the transportation of pets by EL AL align with the standards and guidelines established by the Ministry.",54\r\n18,EL AL,BUSINESS CABIN,Animals can be transported in the Business cabin with prior approval from EL AL,52\r\n12,EL AL,REGISTERED CARGO,EL AL provides registered cargo services for transporting animals,52\r\n69,PET,CHECKED BAGGAGE,"Pets can be transported as checked baggage under certain conditions, such as size and weight",44\r\n110,REGISTERED CARGO,ANIMAL,Animals exceeding weight limits must be transported as registered cargo,32\r\n148,PERMIT,ANIMAL,"A permit is necessary for the transport of animals, ensuring compliance with regulations.",31\r\n72,PET,ISRAEL,"Pets are transported from Israel to other countries, requiring specific permits and conditions.",28\r\n59,SERVICE DOG,ISRAEL,"Israel has specific requirements for transporting service dogs, which must be adhered to by passengers.",25\r\n82,PET,PASSENGER CABIN,Pets can be transported in the passenger cabin under specific conditions related to size and weight.,24\r\n127,ISRAEL,LIQUIDS IN CARRY-ON BAGS,"Israel has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions apply to all flights leaving Israel, ensuring that passengers adhere to the established regulations concerning the transport of liquids.",23\r\n76,PET,BILL OF LADING,"Transporting pets as cargo requires a bill of lading, which outlines the terms of transport.",22\r\n79,PET,BUSINESS CABIN,Pets weighing up to 9 kg can be transported in the Business cabin with prior approval.,22\r\n70,PET,REGISTERED CARGO,"Pets may also be transported as registered cargo, especially if they are large or unaccompanied",22\r\n86,PET,FLIGHT TICKET,"A flight ticket is required for passengers transporting pets, and payment must be arranged with the airline.",22\r\n77,PET,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,An international certificate of good health is required for transporting pets abroad.,21\r\n71,PET,9KG,"The weight limit of 9kg applies to pets transported in the cabin, affecting how they can be transported",21\r\n80,PET,AIRCRAFT HOLD,Pets weighing between 9 kg and 100 kg are typically transported in the aircraft hold.,20\r\n83,PET,ALLOWANCE,"The weight of pets is not included in the permitted baggage allowance, affecting transport costs.",20\r\n85,PET,CARRYING CASE,"The carrying case is required for transporting pets, and its weight is included in the transport cost.",20\r\n75,PET,HONG KONG,Transporting pets in the aircraft cabin is not allowed to Hong Kong.,20\r\n73,PET,JOHANNESBURG,Transporting pets in the aircraft cabin is not allowed to Johannesburg.,20\r\n74,PET,LONDON,Transporting pets in the aircraft cabin is not allowed to London.,20\r\n81,PET,PASSENGER AIRCRAFT CABIN,Pets weighing up to 9 kg can be transported in the passenger aircraft cabin.,20\r\n78,PET,VETERINARIAN,Veterinarians are involved in the process of preparing pets for international transport by issuing necessary health documents.,20\r\n84,PET,TRANSPORT CAGE GUIDELINES,Transport cage guidelines provide the necessary requirements for transporting pets safely.,20\r\n128,ISRAEL,CHECK-IN COUNTERS,Passengers checking in at the counters are returning to Israel,14\r\n3,MINISTRY OF AGRICULTURE,ISRAEL,The Ministry of Agriculture is the regulatory authority in Israel for pet transportation,14\r\n123,EL AL CARGO STORE,ISRAEL,The EL AL Cargo Store facilitates the transport of animals from Israel to various destinations.,13\r\n124,ISRAEL,CDC,Israel is classified as a high-risk country by the CDC for transporting dogs,12\r\n114,CARGO DIVISION,BILL OF LADING,The Cargo Division requires a bill of lading for transporting animals over 9 kg,11\r\n113,AUTHORIZATION,VETERINARY SERVICES DEPARTMENT,Authorization from the Veterinary Services Department is required for transporting pets as cargo,10\r\n139,BILL OF LADING,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department determines if a bill of lading is needed for transporting animals,10\r\n117,CARGO DIVISION,EXPORT LICENSE,The Cargo Division requires an export license for transporting animals,10\r\n126,ISRAEL,HIGH-RISK COUNTRY,"Israel is classified as a high-risk country, affecting the regulations for transporting service dogs.",10\r\n125,ISRAEL,MINISTRY OF HEALTH,"The Ministry of Health in Israel is responsible for regulating the entry of animals into the country. This includes overseeing the necessary protocols and guidelines to ensure that animals are imported in a safe and controlled manner, thereby safeguarding public health and animal welfare.",10\r\n151,VETERINARY SERVICES DEPARTMENT,CERTIFICATE OF GOOD HEALTH,A certificate of good health is required by the Veterinary Services Department for transporting animals,10\r\n150,VETERINARY SERVICES DEPARTMENT,EXPORT LICENSE,An export license is required by the Veterinary Services Department for transporting animals,9\r\n138,INTERNATIONAL CERTIFICATE OF GOOD HEALTH,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues the international certificate of good health required for animal transport.,9\r\n4,MINISTRY OF AGRICULTURE,VETERINARY SERVICES,Veterinary Services operate under the Ministry of Agriculture to manage pet transportation regulations,9\r\n149,PERMIT,VETERINARY SERVICES DEPARTMENT,The Veterinary Services Department issues permits required for transporting animals abroad.,9\r\n1,MINISTRY OF AGRICULTURE,AUTHORIZATION,"The Ministry of Agriculture requires authorization for the transportation of animals. This authorization is a necessary document for compliance with regulations governing animal transport. Without this authorization, individuals or entities are not permitted to transport animals legally.",8\r\n121,EL AL CARGO STORE,EL AL CARGO STORE,The EL AL Cargo Store is a part of EL AL Airlines\' cargo services,8\r\n152,VETERINARY SERVICES DEPARTMENT,LABORATORY RESULTS FOR RABIES ANTIBODIES,Laboratory results for rabies antibodies are required by the Veterinary Services Department for transporting animals,8\r\n2,MINISTRY OF AGRICULTURE,ANIMAL TESTS,The Ministry of Agriculture\'s authorization process may involve performing several animal tests,7\r\n112,AUTHORIZATION,ANIMAL TESTS,Animal tests are part of the authorization process for transporting pets,5\r\n122,EL AL CARGO STORE,CARGO TERMINAL,The EL AL Cargo Store operates within the cargo terminal for handling cargo services,5\r\n140,BUSINESS CABIN,APPROVAL,"Approval is required for transporting pets in the Business cabin, indicating a policy that must be followed.",4\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,71 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/chat/completions', 'files': None, 'json_data': {'messages': [{'role': 'user', 'content': '\nYou are an AI assistant that helps a human analyst to perform general information discovery. Information discovery is the process of identifying and assessing relevant information associated with certain entities (e.g., organizations and individuals) within a network.\n\n# Goal\nWrite a comprehensive report of a community, given a list of entities that belong to the community as well as their relationships and optional associated claims. The report will be used to inform decision-makers about information associated with the community and their potential impact. The content of this report includes an overview of the community\'s key entities, their legal compliance, technical capabilities, reputation, and noteworthy claims.\n\n# Report Structure\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\n\n# Example Input\n-----------\nText:\n\nEntities\n\nid,entity,description\n5,VERDANT OASIS PLAZA,Verdant Oasis Plaza is the location of the Unity March\n6,HARMONY ASSEMBLY,Harmony Assembly is an organization that is holding a march at Verdant Oasis Plaza\n\nRelationships\n\nid,source,target,description\n37,VERDANT OASIS PLAZA,UNITY MARCH,Verdant Oasis Plaza is the location of the Unity March\n38,VERDANT OASIS PLAZA,HARMONY ASSEMBLY,Harmony Assembly is holding a march at Verdant Oasis Plaza\n39,VERDANT OASIS PLAZA,UNITY MARCH,The Unity March is taking place at Verdant Oasis Plaza\n40,VERDANT OASIS PLAZA,TRIBUNE SPOTLIGHT,Tribune Spotlight is reporting on the Unity march taking place at Verdant Oasis Plaza\n41,VERDANT OASIS PLAZA,BAILEY ASADI,Bailey Asadi is speaking at Verdant Oasis Plaza about the march\n43,HARMONY ASSEMBLY,UNITY MARCH,Harmony Assembly is organizing the Unity March\n\nOutput:\n{{\n "title": "Verdant Oasis Plaza and Unity March",\n "summary": "The community revolves around the Verdant Oasis Plaza, which is the location of the Unity March. The plaza has relationships with the Harmony Assembly, Unity March, and Tribune Spotlight, all of which are associated with the march event.",\n "rating": 5.0,\n "rating_explanation": "The impact severity rating is moderate due to the potential for unrest or conflict during the Unity March.",\n "findings": [\n {{\n "summary": "Verdant Oasis Plaza as the central location",\n "explanation": "Verdant Oasis Plaza is the central entity in this community, serving as the location for the Unity March. This plaza is the common link between all other entities, suggesting its significance in the community. The plaza\'s association with the march could potentially lead to issues such as public disorder or conflict, depending on the nature of the march and the reactions it provokes. [Data: Entities (5), Relationships (37, 38, 39, 40, 41,+more)]"\n }},\n {{\n "summary": "Harmony Assembly\'s role in the community",\n "explanation": "Harmony Assembly is another key entity in this community, being the organizer of the march at Verdant Oasis Plaza. The nature of Harmony Assembly and its march could be a potential source of threat, depending on their objectives and the reactions they provoke. The relationship between Harmony Assembly and the plaza is crucial in understanding the dynamics of this community. [Data: Entities(6), Relationships (38, 43)]"\n }},\n {{\n "summary": "Unity March as a significant event",\n "explanation": "The Unity March is a significant event taking place at Verdant Oasis Plaza. This event is a key factor in the community\'s dynamics and could be a potential source of threat, depending on the nature of the march and the reactions it provokes. The relationship between the march and the plaza is crucial in understanding the dynamics of this community. [Data: Relationships (39)]"\n }},\n {{\n "summary": "Role of Tribune Spotlight",\n "explanation": "Tribune Spotlight is reporting on the Unity March taking place in Verdant Oasis Plaza. This suggests that the event has attracted media attention, which could amplify its impact on the community. The role of Tribune Spotlight could be significant in shaping public perception of the event and the entities involved. [Data: Relationships (40)]"\n }}\n ]\n}}\n\n\n# Real Data\n\nUse the following text for your answer. Do not make anything up in your answer.\n\nText:\n-----Entities-----\nhuman_readable_id,title,description,degree\r\n56,BAGGAGE,"Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers\' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.",21\r\n113,BAGGAGE SERVICE CENTER,"The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.",13\r\n250,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,6\r\n117,COURIER SERVICE,"The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.",2\r\n118,CONTACT DETAILS,"The ""CONTACT DETAILS"" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.",2\r\n119,LOST BAGGAGE REPORT NUMBER,"The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.",2\r\n203,BAGGAGE TAG,"A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.",2\r\n340,OVERSIZED AND OVERWEIGHT BAGGAGE,"Oversized and overweight baggage refers to luggage that exceeds the airline\'s standard size and weight limits, requiring special handling and potentially incurring additional fees.",2\r\n200,BAGGAGE CLAIM AREA,"The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.",1\r\n201,DAMAGE REPORT,"A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.",1\r\n251,FLIGHT TICKETS,Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.,1\r\n252,BOARDING PASSES,Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.,1\r\n253,BAGGAGE TAGS,"Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.",1\r\n254,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.,1\r\n255,RECEIPTS,Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.,1\r\n115,DELAYED BAGGAGE,"Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.",2\r\n116,CLAIM STATUS,"The term ""Claim Status"" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.",2\r\n123,BAGGAGE CLAIM,Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.,1\r\n127,BAGGAGE CLAIMS PROCESS,The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.,1\r\n122,BAGGAGE DELAY,Baggage delay occurs when a passenger\'s checked baggage does not arrive at the destination with them.,1\r\n124,BAGGAGE HANDLING,Baggage handling refers to the procedures and services involved in managing passengers\' baggage during travel.,1\r\n125,BAGGAGE REPORTING,"Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.",1\r\n128,DAMAGED BAGGAGE,,1\r\n121,FORGOTTEN ITEM,"The ""FORGOTTEN ITEM"" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.",1\r\n202,CLAIMS DEPARTMENT,The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.,1\r\n342,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,"The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.",3\r\n260,CONTRACT OF CARRIAGE,"The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.",1\r\n256,FRAGILE ITEMS,Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n257,PERISHABLE ITEMS,Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.,1\r\n258,VALUABLE ITEMS,"Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.",1\r\n259,INTERNATIONAL CONVENTIONS,International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.,1\r\n126,BAGGAGE DELIVERY,Baggage delivery is the service that ensures retrieved baggage is sent to the passenger\'s specified address.,1\r\n120,BAGGAGE REPORT,A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.,1\r\n\n\n-----Relationships-----\nhuman_readable_id,source,target,description,rank\r\n24,EL AL,BAGGAGE,"EL AL is the airline responsible for managing baggage and addressing various issues related to it, including delays, damages, and claims.",70\r\n157,ANIMAL,BAGGAGE,Animals can be transported as baggage in the aircraft cabin or hold,50\r\n98,CHECKED BAGGAGE,BAGGAGE,Checked baggage is a specific type of baggage that is transported in the cargo hold of an aircraft,46\r\n186,BAGGAGE,BAGGAGE SERVICE CENTER,The Baggage Service Center is dedicated to assisting travelers with various issues related to their baggage. This includes managing problems such as delays and damages that may occur during travel. The center serves as a crucial resource for passengers seeking support and resolution for their baggage-related concerns.,34\r\n222,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Baggage Claims Department for processing claims,29\r\n193,BAGGAGE,EL AL ISRAEL AIRLINES,EL AL Israel Airlines is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.,27\r\n137,PETS,BAGGAGE,Pets can be transported as baggage under specific guidelines,27\r\n200,BAGGAGE,BAGGAGE POLICY,Baggage policy governs the rules regarding what types of baggage are allowed and the associated fees,26\r\n183,BEN GURION AIRPORT,BAGGAGE,"Baggage, including pets, is released at Ben Gurion Airport\'s arrivals hall",26\r\n187,BAGGAGE,COURIER SERVICE,The BAGGAGE is delivered to the passenger\'s address by the COURIER SERVICE after it has been retrieved following a delay. The COURIER SERVICE is responsible for ensuring that the delayed baggage reaches the travelers promptly after it has been located.,23\r\n188,BAGGAGE,CONTACT DETAILS,Contact details are provided for passengers to report baggage issues,23\r\n191,BAGGAGE,LOST BAGGAGE REPORT NUMBER,The lost baggage report number is used to track claims related to lost baggage,23\r\n192,BAGGAGE,BAGGAGE TAG,The baggage tag is essential for identifying and tracking baggage,23\r\n199,BAGGAGE,OVERSIZED AND OVERWEIGHT BAGGAGE,Oversized and overweight baggage are categories of baggage that exceed standard limits,23\r\n201,BAGGAGE,STANDARD BAGGAGE,Standard baggage refers to luggage that meets the airline\'s size and weight requirements,23\r\n189,BAGGAGE,BAGGAGE CLAIM AREA,"Travelers report baggage issues in the baggage claim area, where they can receive assistance",22\r\n190,BAGGAGE,DAMAGE REPORT,"A damage report is issued when baggage is reported damaged, which is necessary for processing claims",22\r\n194,BAGGAGE,FLIGHT TICKETS,Flight tickets are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n195,BAGGAGE,BOARDING PASSES,Boarding passes are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n196,BAGGAGE,BAGGAGE TAGS,Baggage tags are required documents that must be provided when filing a claim for lost or damaged baggage.,22\r\n197,BAGGAGE,LOST OR DAMAGED BAGGAGE REPORT,A lost or damaged baggage report is a required document that must be included in a claim for lost or damaged baggage.,22\r\n198,BAGGAGE,RECEIPTS,Receipts that support the claim are required documents that must be provided to validate a claim for lost or damaged baggage.,22\r\n234,BAGGAGE CLAIMS DEPARTMENT,BAGGAGE TAG,The baggage tag is essential for reporting issues to the Baggage Claims Department as it identifies the baggage owner and details.,18\r\n223,BAGGAGE SERVICE CENTER,DELAYED BAGGAGE,The Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance.,15\r\n224,BAGGAGE SERVICE CENTER,CLAIM STATUS,The status of a claim can be checked through the Baggage Service Center\'s worldwide system,15\r\n233,BAGGAGE SERVICE CENTER,CONTACT DETAILS,Contact details provide necessary information for reaching the Baggage Service Center for assistance,15\r\n228,BAGGAGE SERVICE CENTER,BAGGAGE CLAIM,The Baggage Service Center facilitates the baggage claim process for passengers,14\r\n231,BAGGAGE SERVICE CENTER,BAGGAGE CLAIMS PROCESS,The Baggage Service Center follows the baggage claims process to assist passengers,14\r\n227,BAGGAGE SERVICE CENTER,BAGGAGE DELAY,The Baggage Service Center is responsible for managing reports of baggage delays,14\r\n229,BAGGAGE SERVICE CENTER,BAGGAGE HANDLING,Baggage handling services are provided by the Baggage Service Center to ensure proper management of baggage,14\r\n230,BAGGAGE SERVICE CENTER,BAGGAGE REPORTING,Passengers report baggage issues to the Baggage Service Center for resolution,14\r\n225,BAGGAGE SERVICE CENTER,DAMAGED BAGGAGE,"The Baggage Service Center is dedicated to assisting travelers with claims related to damaged baggage. It effectively handles cases of damaged baggage reported by passengers, ensuring that their concerns are addressed and resolved in a timely manner.",14\r\n226,BAGGAGE SERVICE CENTER,FORGOTTEN ITEM,"The Baggage Service Center is dedicated to assisting passengers with items that have been forgotten on board. It plays a crucial role in helping recover these forgotten items, ensuring that travelers can retrieve their belongings efficiently.",14\r\n232,BAGGAGE SERVICE CENTER,CLAIMS DEPARTMENT,The Baggage Service Center coordinates with the Claims Department to process claims related to baggage,14\r\n323,OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with overweight baggage must take their bags to the designated location for check-in,11\r\n361,EL AL ISRAEL AIRLINES,CONTRACT OF CARRIAGE,"The contract of carriage outlines the terms under which EL AL Israel Airlines operates, including baggage liability.",7\r\n403,OVERSIZED BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized baggage must take their bags to the designated location for check-in,7\r\n357,EL AL ISRAEL AIRLINES,FRAGILE ITEMS,EL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged.,7\r\n358,EL AL ISRAEL AIRLINES,PERISHABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for perishable items if they are lost or damaged.,7\r\n359,EL AL ISRAEL AIRLINES,VALUABLE ITEMS,EL AL Israel Airlines may refuse to accept liability for valuable items if they are lost or damaged.,7\r\n360,EL AL ISRAEL AIRLINES,INTERNATIONAL CONVENTIONS,International conventions govern the liability of EL AL Israel Airlines regarding baggage claims.,7\r\n417,OVERSIZED AND OVERWEIGHT BAGGAGE,DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION,Passengers with oversized and overweight baggage must take their luggage to the designated location,5\r\n250,CLAIM STATUS,LOST BAGGAGE REPORT NUMBER,The claim status can be checked using the lost baggage report number provided by the airline. This report number is essential for verifying the status of a claim related to lost baggage.,4\r\n251,COURIER SERVICE,BAGGAGE DELIVERY,The courier service is responsible for the delivery of baggage to the passenger\'s address after retrieval,3\r\n249,DELAYED BAGGAGE,BAGGAGE REPORT,A baggage report is issued for delayed baggage at the airport,3\r\n\n\nThe report should include the following sections:\n\n- TITLE: community\'s name that represents its key entities - title should be short but specific. When possible, include representative named entities in the title.\n- SUMMARY: An executive summary of the community\'s overall structure, how its entities are related to each other, and significant information associated with its entities.\n- IMPACT SEVERITY RATING: a float score between 0-10 that represents the severity of IMPACT posed by entities within the community. IMPACT is the scored importance of a community.\n- RATING EXPLANATION: Give a single sentence explanation of the IMPACT severity rating.\n- DETAILED FINDINGS: A list of 5-10 key insights about the community. Each insight should have a short summary followed by multiple paragraphs of explanatory text grounded according to the grounding rules below. Be comprehensive.\n\nReturn output as a well-formed JSON-formatted string with the following format:\n {{\n "title": ,\n "summary": ,\n "rating": ,\n "rating_explanation": ,\n "findings": [\n {{\n "summary":,\n "explanation": \n }},\n {{\n "summary":,\n "explanation": \n }}\n ]\n }}\n\n# Grounding Rules\n\nPoints supported by data should list their data references as follows:\n\n"This is an example sentence supported by multiple data references [Data: (record ids); (record ids)]."\n\nDo not list more than 5 record ids in a single reference. Instead, list the top 5 most relevant record ids and add "+more" to indicate that there are more.\n\nFor example:\n"Person X is the owner of Company Y and subject to many allegations of wrongdoing [Data: Reports (1), Entities (5, 7); Relationships (23); Claims (7, 2, 34, 64, 46, +more)]."\n\nwhere 1, 5, 7, 23, 2, 34, 46, and 64 represent the id (not the index) of the relevant data record.\n\nDo not include information where the supporting evidence for it is not provided.\n\nOutput:'}], 'model': 'gpt-4o-mini', 'frequency_penalty': 0.0, 'max_tokens': 2000, 'n': 1, 'presence_penalty': 0.0, 'response_format': {'type': 'json_object'}, 'temperature': 0.0, 'top_p': 1.0}} -13:53:49,72 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,72 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,72 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,72 httpcore.http11 DEBUG send_request_body.complete -13:53:49,72 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,73 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,73 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,73 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,73 httpcore.http11 DEBUG send_request_body.complete -13:53:49,73 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,73 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,74 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,74 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,74 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,74 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,74 httpcore.http11 DEBUG send_request_body.complete -13:53:49,74 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,75 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,75 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,75 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,75 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,76 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,76 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,76 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,77 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:53:49,79 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,79 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,79 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,79 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,80 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,80 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,80 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,80 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,80 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,80 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,80 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,81 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,81 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,81 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,81 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,81 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,82 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,82 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,82 httpcore.connection DEBUG connect_tcp.complete return_value= -13:53:49,82 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:53:49,85 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,85 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,92 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,92 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,92 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,92 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,92 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,93 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,95 httpcore.http11 DEBUG send_request_body.complete -13:53:49,95 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,95 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,95 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,95 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,95 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,95 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,102 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,103 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,103 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,103 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,103 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,103 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,103 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,103 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,104 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,104 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,104 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,104 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,104 httpcore.connection DEBUG start_tls.complete return_value= -13:53:49,104 httpcore.http11 DEBUG send_request_body.complete -13:53:49,104 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,104 httpcore.http11 DEBUG send_request_body.complete -13:53:49,104 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,104 httpcore.http11 DEBUG send_request_body.complete -13:53:49,105 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,105 httpcore.http11 DEBUG send_request_body.complete -13:53:49,105 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,105 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,105 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,105 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,105 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,105 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,105 httpcore.http11 DEBUG send_request_headers.started request= -13:53:49,106 httpcore.http11 DEBUG send_request_body.complete -13:53:49,106 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,106 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,106 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,106 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,106 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,106 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,106 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,106 httpcore.http11 DEBUG send_request_headers.complete -13:53:49,106 httpcore.http11 DEBUG send_request_body.started request= -13:53:49,106 httpcore.http11 DEBUG send_request_body.complete -13:53:49,106 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,106 httpcore.http11 DEBUG send_request_body.complete -13:53:49,107 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,107 httpcore.http11 DEBUG send_request_body.complete -13:53:49,107 httpcore.http11 DEBUG receive_response_headers.started request= -13:53:49,107 httpcore.http11 DEBUG send_request_body.complete -13:53:49,107 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:00,754 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'11513'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9986563'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'80ms'), (b'x-request-id', b'req_a6cd99711468a8e49666d61fe612e1b5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c32358767da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:00,755 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:00,755 httpcore.http11 DEBUG receive_response_body.started request= -13:54:00,755 httpcore.http11 DEBUG receive_response_body.complete -13:54:00,755 httpcore.http11 DEBUG response_closed.started -13:54:00,756 httpcore.http11 DEBUG response_closed.complete -13:54:00,756 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:00,757 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 11.71899999998277. input_tokens=3267, output_tokens=617 -13:54:01,717 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:01 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12442'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9973586'), (b'x-ratelimit-reset-requests', b'10ms'), (b'x-ratelimit-reset-tokens', b'158ms'), (b'x-request-id', b'req_bcb608c707d38bfb0902837dfd41b7b4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c32369b1c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:01,717 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:01,718 httpcore.http11 DEBUG receive_response_body.started request= -13:54:01,718 httpcore.http11 DEBUG receive_response_body.complete -13:54:01,718 httpcore.http11 DEBUG response_closed.started -13:54:01,718 httpcore.http11 DEBUG response_closed.complete -13:54:01,718 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:01,719 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 12.702999999979511. input_tokens=3580, output_tokens=668 -13:54:02,240 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'12994'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9980230'), (b'x-ratelimit-reset-requests', b'13ms'), (b'x-ratelimit-reset-tokens', b'118ms'), (b'x-request-id', b'req_f7dcecc9256ff1e260ec70ae65dcfb78'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3235c2dc233-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:02,241 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:02,241 httpcore.http11 DEBUG receive_response_body.started request= -13:54:02,241 httpcore.http11 DEBUG receive_response_body.complete -13:54:02,241 httpcore.http11 DEBUG response_closed.started -13:54:02,242 httpcore.http11 DEBUG response_closed.complete -13:54:02,242 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:02,243 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 13.21799999999348. input_tokens=4274, output_tokens=704 -13:54:02,498 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:02 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'13209'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9935865'), (b'x-ratelimit-reset-requests', b'21ms'), (b'x-ratelimit-reset-tokens', b'384ms'), (b'x-request-id', b'req_d9093ffe4778b4fc1c7e598242ca0227'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c32379c6c22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:02,498 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:02,498 httpcore.http11 DEBUG receive_response_body.started request= -13:54:02,499 httpcore.http11 DEBUG receive_response_body.complete -13:54:02,499 httpcore.http11 DEBUG response_closed.started -13:54:02,499 httpcore.http11 DEBUG response_closed.complete -13:54:02,499 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:02,500 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 13.46899999998277. input_tokens=3677, output_tokens=716 -13:54:03,246 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14006'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9991828'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'49ms'), (b'x-request-id', b'req_e6e3c6805ce5e2b994ff14db116d4918'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3234ca3c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:03,246 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:03,246 httpcore.http11 DEBUG receive_response_body.started request= -13:54:03,246 httpcore.http11 DEBUG receive_response_body.complete -13:54:03,246 httpcore.http11 DEBUG response_closed.started -13:54:03,247 httpcore.http11 DEBUG response_closed.complete -13:54:03,247 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:03,248 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.23399999999674. input_tokens=6946, output_tokens=794 -13:54:03,606 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:03 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14289'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9926501'), (b'x-ratelimit-reset-requests', b'17ms'), (b'x-ratelimit-reset-tokens', b'440ms'), (b'x-request-id', b'req_79dbf202cda7db527bb3e3fb5245b241'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'cf-cache-status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3237a707da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:03,607 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:03,607 httpcore.http11 DEBUG receive_response_body.started request= -13:54:03,607 httpcore.http11 DEBUG receive_response_body.complete -13:54:03,607 httpcore.http11 DEBUG response_closed.started -13:54:03,607 httpcore.http11 DEBUG response_closed.complete -13:54:03,607 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:03,608 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.561999999976251. input_tokens=3590, output_tokens=777 -13:54:03,878 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'14593'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'9952193'), (b'x-ratelimit-reset-requests', b'15ms'), (b'x-ratelimit-reset-tokens', b'286ms'), (b'x-request-id', b'req_56f309e23c7888efb315f090980cced5'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3238af37d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:03,878 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:03,878 httpcore.http11 DEBUG receive_response_body.started request= -13:54:03,878 httpcore.http11 DEBUG receive_response_body.complete -13:54:03,879 httpcore.http11 DEBUG response_closed.started -13:54:03,879 httpcore.http11 DEBUG response_closed.complete -13:54:03,879 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:03,880 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 14.813000000023749. input_tokens=4674, output_tokens=797 -13:54:04,719 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:04 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'15437'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9959416'), (b'x-ratelimit-reset-requests', b'11ms'), (b'x-ratelimit-reset-tokens', b'243ms'), (b'x-request-id', b'req_e7977755a3f94af1a5747a81663c086a'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3238f637d9a-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:04,719 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:04,719 httpcore.http11 DEBUG receive_response_body.started request= -13:54:04,719 httpcore.http11 DEBUG receive_response_body.complete -13:54:04,719 httpcore.http11 DEBUG response_closed.started -13:54:04,720 httpcore.http11 DEBUG response_closed.complete -13:54:04,720 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:04,721 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 15.687999999965541. input_tokens=6559, output_tokens=853 -13:54:04,776 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'15492'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9995'), (b'x-ratelimit-remaining-tokens', b'9940199'), (b'x-ratelimit-reset-requests', b'26ms'), (b'x-ratelimit-reset-tokens', b'358ms'), (b'x-request-id', b'req_4e714c61b1a534296aebebd113cd8a25'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3237d26ed42-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:04,776 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:04,776 httpcore.http11 DEBUG receive_response_body.started request= -13:54:04,776 httpcore.http11 DEBUG receive_response_body.complete -13:54:04,776 httpcore.http11 DEBUG response_closed.started -13:54:04,776 httpcore.http11 DEBUG response_closed.complete -13:54:04,777 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:04,778 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 15.71899999998277. input_tokens=4321, output_tokens=861 -13:54:05,740 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:05 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'16469'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'9979424'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'123ms'), (b'x-request-id', b'req_548d1cca0a6b550ab34e62419ae59a71'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3238a737da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:05,740 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:05,740 httpcore.http11 DEBUG receive_response_body.started request= -13:54:05,740 httpcore.http11 DEBUG receive_response_body.complete -13:54:05,741 httpcore.http11 DEBUG response_closed.started -13:54:05,741 httpcore.http11 DEBUG response_closed.complete -13:54:05,741 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:05,742 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 16.67200000002049. input_tokens=3063, output_tokens=928 -13:54:15,222 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:15 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'25929'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9994'), (b'x-ratelimit-remaining-tokens', b'9929343'), (b'x-ratelimit-reset-requests', b'30ms'), (b'x-ratelimit-reset-tokens', b'423ms'), (b'x-request-id', b'req_d82c942a25ff29b21a295f18dc7e690d'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3238aef7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:15,222 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:15,222 httpcore.http11 DEBUG receive_response_body.started request= -13:54:15,223 httpcore.http11 DEBUG receive_response_body.complete -13:54:15,223 httpcore.http11 DEBUG response_closed.started -13:54:15,223 httpcore.http11 DEBUG response_closed.complete -13:54:15,223 httpcore.connection DEBUG close.started -13:54:15,223 httpcore.connection DEBUG close.complete -13:54:15,223 httpcore.connection DEBUG close.started -13:54:15,223 httpcore.connection DEBUG close.complete -13:54:15,223 httpcore.connection DEBUG close.started -13:54:15,223 httpcore.connection DEBUG close.complete -13:54:15,223 httpcore.connection DEBUG close.started -13:54:15,224 httpcore.connection DEBUG close.complete -13:54:15,224 httpcore.connection DEBUG close.started -13:54:15,224 httpcore.connection DEBUG close.complete -13:54:15,224 httpcore.connection DEBUG close.started -13:54:15,224 httpcore.connection DEBUG close.complete -13:54:15,224 httpcore.connection DEBUG close.started -13:54:15,224 httpcore.connection DEBUG close.complete -13:54:15,224 httpcore.connection DEBUG close.started -13:54:15,224 httpcore.connection DEBUG close.complete -13:54:15,224 httpcore.connection DEBUG close.started -13:54:15,224 httpcore.connection DEBUG close.complete -13:54:15,224 httpcore.connection DEBUG close.started -13:54:15,224 httpcore.connection DEBUG close.complete -13:54:15,224 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:15,225 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 26.17199999996228. input_tokens=3532, output_tokens=746 -13:54:16,285 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:16 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'27006'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'9966979'), (b'x-ratelimit-reset-requests', b'9ms'), (b'x-ratelimit-reset-tokens', b'198ms'), (b'x-request-id', b'req_afde42cf320b08511625055eaef35ab4'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c3238829c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:16,285 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:16,285 httpcore.http11 DEBUG receive_response_body.started request= -13:54:16,285 httpcore.http11 DEBUG receive_response_body.complete -13:54:16,285 httpcore.http11 DEBUG response_closed.started -13:54:16,285 httpcore.http11 DEBUG response_closed.complete -13:54:16,286 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:16,287 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 27.219000000040978. input_tokens=5001, output_tokens=756 -13:54:30,800 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:31 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'22092'), (b'openai-version', b'2020-10-01'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'10000000'), (b'x-ratelimit-remaining-requests', b'9996'), (b'x-ratelimit-remaining-tokens', b'9947206'), (b'x-ratelimit-reset-requests', b'20ms'), (b'x-ratelimit-reset-tokens', b'316ms'), (b'x-request-id', b'req_dccfc8645da021d72ef89159eaa5b8ae'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c32388ddc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:30,800 httpx INFO HTTP Request: POST https://api.openai.com/v1/chat/completions "HTTP/1.1 200 OK" -13:54:30,800 httpcore.http11 DEBUG receive_response_body.started request= -13:54:30,800 httpcore.http11 DEBUG receive_response_body.complete -13:54:30,801 httpcore.http11 DEBUG response_closed.started -13:54:30,801 httpcore.http11 DEBUG response_closed.complete -13:54:30,801 httpcore.connection DEBUG close.started -13:54:30,801 httpcore.connection DEBUG close.complete -13:54:30,801 httpcore.connection DEBUG close.started -13:54:30,801 httpcore.connection DEBUG close.complete -13:54:30,801 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/chat/completions "200 OK" -13:54:30,802 graphrag.llm.base.rate_limiting_llm INFO perf - llm.chat "create_community_report" with 0 retries took 41.75. input_tokens=3017, output_tokens=659 -13:54:30,813 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_community_reports.parquet -13:54:31,9 graphrag.index.run.workflow INFO dependencies for create_final_documents: ['create_final_text_units'] -13:54:31,10 graphrag.utils.storage INFO read table from storage: create_final_text_units.parquet -13:54:31,30 datashaper.workflow.workflow INFO executing verb create_final_documents -13:54:31,37 graphrag.index.emit.parquet_table_emitter INFO emitting parquet table create_final_documents.parquet -13:54:31,205 graphrag.index.run.workflow INFO dependencies for generate_text_embeddings: ['create_final_relationships', 'create_final_documents', 'create_final_text_units', 'create_final_community_reports', 'create_final_entities'] -13:54:31,206 graphrag.utils.storage INFO read table from storage: create_final_relationships.parquet -13:54:31,210 graphrag.utils.storage INFO read table from storage: create_final_documents.parquet -13:54:31,218 graphrag.utils.storage INFO read table from storage: create_final_text_units.parquet -13:54:31,221 graphrag.utils.storage INFO read table from storage: create_final_community_reports.parquet -13:54:31,230 graphrag.utils.storage INFO read table from storage: create_final_entities.parquet -13:54:31,258 datashaper.workflow.workflow INFO executing verb generate_text_embeddings -13:54:31,261 graphrag.index.flows.generate_text_embeddings INFO Creating embeddings -13:54:31,261 graphrag.index.operations.embed_text.embed_text INFO using vector store lancedb with container_name default for embedding text_unit.text: default-text_unit-text -13:54:31,263 graphrag.llm.openai.create_openai_client INFO Creating OpenAI client base_url=None -13:54:31,263 httpx DEBUG load_ssl_context verify=True cert=None trust_env=True http2=False -13:54:31,263 httpx DEBUG load_verify_locations cafile='D:\\Projects\\pwc_prod\\pwc_prod\\Lib\\site-packages\\certifi\\cacert.pem' -13:54:31,515 graphrag.index.llm.load_llm INFO create TPM/RPM limiter for text-embedding-3-small: TPM=0, RPM=0 -13:54:31,515 graphrag.index.llm.load_llm INFO create concurrency limiter for text-embedding-3-small: 25 -13:54:31,531 graphrag.index.operations.embed_text.strategies.openai INFO embedding 36 inputs via 36 snippets using 3 batches. max_batch_size=16, max_tokens=8191 -13:54:31,542 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE75BE20>, 'json_data': {'input': [" stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile or valuable items. If your sporting equipment is fragile and/or valuable, we recommend purchasing special travel insurance for it. ", 'Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\nWays to contact about baggage issues after a flight\n \n\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?\n \n\nIf you noticed any damage to your baggage, you must report the damage immediately to an EL AL representative at the airport in the baggage claim area. A damage report will be issued, in accordance with company policy.\n\nAfter receiving the damage report, you may go to one of the stores listed below, within 60 days for further handling. Please bring with you the damage report, the baggage that was damaged with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not', ' with the baggage tag. Please do not remove the baggage tag from the handle.\n\nIn the event you only noticed the damage after you have left the airport, or if any of the items inside the baggage were damaged (i.e. items that did not receive a separate baggage tag), you must report this to the Baggage Claims Department within 7 days in writing via the Digital Contact Form\n\nYou may as send claim to our mailing address: EL AL Israel Airlines Ltd., Baggage Claims, P.O. Box 41, Ben Gurion Airport, Zip Code 7015001.\nList of participating stores\nChoose\nCenter area\nTel-Aviv\n \n\nMakor Haziud Baggage and Outdoor Equipment\nAddress: Haaliya Street 24\nTel: 03-6822330\n\nWeShoes\nMemsi Touring\nBialik 3\nTel: 076-8100205\n\nLog In Log Out - Importer of Luggage and Bags\nSteinman 20 (Bavli Neighborhood)\nTel: 052-2310738\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nRamat Gan and Gevataim:\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nBat Yam\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nHolon\nShin Tik\nMemsi Touring\nSokolov 59\nTel: 03-5040752\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nPetach Tikva\nARTY Rimon � Import marketing and distribution ltd\nHameretz 6\nTel: 03-9229049\n\nTrek Market\nMemsi Touring\nIzthak Rabin 2\n03-5069443\n\nService Pickup and delivery service\nTel: 054-2520061\n\n\nKiryat Ono\nWeShoes\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo', '\nShlomo Ha-Melekh 37\nTel: 0768100223\n\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 0532310738\n\n\nAirport City:\nCargo Tikim ve Mizvadot\nLog In Log Out � Importer of Luggage and Bags\nGilboa 1\nICL Building\nTel: 054-2520061\n\n\nRishon Le Zion\nRimon Mizvadot ve Tikim\nSaharov 19\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nYehud\nMoka � Pickup and delivery point\nARTY Rimon Import marketing and distribution ltd.\nMoshe Dayan 3\nTel: 03-6726585\n\n\nRehovot\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nNes Ziona\nMakor Haziud Baggage and Outdoor Equipment\n\nRothschild 4\n\nTel: 03-6822330\n\n\nShoham\nARTY Rimon\nService Pickup and delivery service\nTel: 1700504544\nWhatsApp: 053-2310738\n\n\nRamle and Lod:\nARTY Rimon\n\nService Pickup and delivery service\n\nTel: 1700504544\n\nWhatsApp: 053-2310738\n\n\nDamage to wheelchairs, equipment for passengers who require assistance, or baby strollers\nGalgal Yaziv\nDamage to powered mobility scooters , electric power wheelchairs and more\nAdom street 23 � Industrial park Kannot � close to Gedera\n\nOrthopedica Steiner\nHasar Shapira 4\nRishon Le Zion\nTel: 03-9517674\n\n \n\nBaby equipment:\nHagalgal � The Israeli Center for Baby and children equipment and goods.\nTel: 054-5947464\nPick up and delivery from all areas.\n\nBugaboo baby carriages and strollers\nMaskit 14, Herzliya\n03-5407999\n\n\nImportant to know\nIn the event your baggage was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21', " was damaged or you are missing items from your suitcase, you must contact us within 7 days from the day you received your baggage.\nIn the event of a delay in receiving your baggage outside your country of residence, you must contact us within 21 days from the day you received your baggage.\nIn the event of lost baggage, you must contact us after 21 days from the day of the incident.\nWhen contacting us, please attach a copy of the following documents to your claim and hold onto the originals:\n\nFlight tickets\nBoarding passes\nBaggage tags (the stickers affixed to the flight ticket and/or the object)\nLost or damaged baggage report from the airport\nReceipts that support the claim \n \n\nPlease note that the claim will be handled in accordance with the terms of the contract of carriage and in accordance with international conventions and laws, which determine the carrier's liability. EL AL Israel Airlines reserves the right to refuse to accept liability if the claim concerns, either wholly or in part, fragile or perishable items, food, liquids, cash, jewelry, cameras, computers, video devices, electronics, negotiable instruments or securities, legacies, antiques, valuable items, works of art, gold and silver items, rare books or publications, business documents, precious metals or other valuables.", 'Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,', " bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.", 'Carry-on baggage\nWhether you are just taking a backpack for a short flight or you packed your entire closet, it is important for you to know what you are allowed to take with you aboard the aircraft.\n\nFirst and foremost\nIn addition to checked luggage, we allow passengers to bring personal bags and carry-on bags (trolleys) into the passenger cabin. It\'s crucial to consider the dimensions and weight of your bags and luggage to ensure timely departures. Eligibility to bring these items onto the plane depends on your travel class, ticket type, and Matmid Frequent Flyer Club status. You can find more details in the flight ticket terms or the booking management section of our website.\n\nCarry-on bags is stored in overhead compartments, while personal bags are stored under the seat to maximize cabin space. If overhead space is unavailable, particularly on full flights or specific aircraft, we may need to transport your carry-on luggage to the plane\'s belly at no extra cost, even if it complies with size and weight restrictions. In such cases, you\'ll be asked to check your carry-on at the check-in counters or boarding gate, and it will be available for pickup at the baggage conveyor belt upon arrival.\n\nThis information applies to flights operated by EL AL and Sun Dor only. For flights operated by partner airlines, please check their respective websites for carry-on policies.\n\nEligibility, Dimensions, and Weight\nWhat are the maximum dimensions and weights for carry-ons (trolleys) and personal bags approved for boarding?\n\nCarry-on Bags � Economy Class:\nLite - entitled to one carry-on bag, maximum 8 kg.\nClassic - entitled to one carry-on bag, maximum 8 kg.\nFlex - entitled to two carry-on bags, maximum 8 kg per bag (total weight of both bags up to 12 kg).\n\n*On our non-stop flights from/to North America, currently only "Classic" and "Flex" tickets are available for purchase (For departures from November 3, 2024).\n\nCarry-on Bags - Premium and Business Classes\nPremium - entitled to two carry-on bags, maximum 8 kg per bag, with a combined weight not exceeding 12 kg.\nBusiness - entitled to two carry-on bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane\'s belly at no charge. We recommend removing medications,', " bags, maximum 16 kg for one bag, with a combined weight not exceeding 20 kg.\nPlease note:\nIf no free space is available, carry-on bags will be checked to the plane's belly at no charge. We recommend removing medications, passports, valuables, and electronic devices from carry-on bags for easy access during the flight.\n\n\nPersonal bag\nPassengers may bring one personal bag on board, regardless of card type or travel class.\nWhat qualifies as a personal bag? Backpacks, laptop bags, makeup bags, strollers approved for plane boarding, duty-free items purchased at the airport or during the flight (for storage under the seat), and more.\nAirplane storage\nWhere can you store your carry-on and personal bags on the plane?\n\n\nOverhead storage\nCarry-on bags must be stored in overhead compartments above your seat.\nSuitcases should be placed with the front facing outward, wheels facing inward, and handle inserted.\n\nUnder-seat storage:\nPersonal bags must be placed under the seat in front of you.\nPassengers seated in emergency exit rows may also store bags and personal items in overhead compartments.\n\nImportant information:\nThe maximum carry-on bag size on El Al flights is up to 56 cm (length), 45 cm (width), and 25 cm (depth), not exceeding a total dimension of 115 cm. These measurements include wheels, handles, and side pockets.\nPersonal bag dimensions should not exceed 18x38x30 cm.\nPassengers requiring additional space for oversized items (e.g., cellos) must purchase an extra seat.\nUnusual items may only be carried in the cabin with prior coordination and approval from El Al's service center.\nDuty-free products purchased at the airport count towards the baggage allowance.\nExceeding eligibility may incur fees.\nEach carry-on bag must meet weight and dimension limits. The maximum dimensions include pockets, wheels, and handles.\nUnsure if you meet the requirements? Use the meters available at check-in counters and boarding gates.\nEnforcement of weight and dimension restrictions is carried out by El Al representatives. Items not meeting requirements will be checked to the plane's belly.\nTraveling with only carry-on luggage or a small bag?\nPassengers with pre-checked carry-on luggage can proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters,", " proceed to designated security check areas. Those who haven't checked in online should use El Al's check-in counters. Ensure all necessary documents are available according to your flight destination.\n\nReturning to Israel from abroad?\nAll passengers must check in at the counters, regardless of luggage.", 'Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.\n\n\nGeneral information about carrying liquids in handbags to U.S\nThe volume of the container (Liquids , Aerosols, Gels) cannot exceed 100 ml (3.4 oz).\nAll items must be packed together in a clear resealable plastic bag.\nMedications and special food products (such as baby food) do not have to be in the plastic bag. These items must be presented at the security checkpoint, along with the corresponding doctor�s note.\u200b\n\u200bPassengers embarking on a connecting flight cannot purchase products prohibited aboard the aircraft, not even from the Duty Free on the plane.\nEL AL is not and will not be responsible for any liquids confiscated from passengers at the airport.\nPlease note that there may be additional inspections and requirements including at the gate.', "How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight.\n\n\n\nEurope and Middle East\nFar East\nNorth America\nEconomy class\nEL AL offers three types of tickets in economy class on flights to Europe and the Middle East.\n\nThe baggage allowance and weight limit depend on the ticket type:\nThe baggage allowance varies depending on the service type: Lite, Classic, or Flex. With the Lite service, one piece of checked baggage (23 kg) requires pre-ordering, and the fee varies. Both the Classic and Flex services include one piece of checked baggage (23 kg) in the ticket price. For two to five additional pieces of checked baggage (23 kg each), pre-ordering is required for all three service types (Lite, Classic, and Flex), and the fee varies.\n\nImportant information\nThe pre-order option is available up to three hours prior to departure.\n\u200b�The fee varies� � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on", " � The price depends on a number of factors, such as the destination and date of the flight.\nWhen reserved at the airport, it costs $90 to check a piece of baggage not included in the ticket price.\nYou can pay to check baggage on the website (without handling fees), through the EL AL Service Center (additional handling fee of $5 per passenger per reservation), at the airport, or through a travel agent.\nEach piece of checked baggage can weigh up to 23 kg. For information on excess baggage and adding another piece of baggage.\nThe prices in the table are per passenger per flight segment.\n\u200b\u200bDo not pack valuable items in your checked baggage.\nPremium and business class\nPremium class tickets include up to two pieces of checked baggage weighing up to 23 kg each.\nBusiness class tickets include up to two pieces of checked baggage weighing up to 32 kg each.\nThere is a fee for any additional pieces of checked baggage.\nDo you have a connecting flight?\nWhen several airlines are involved in a flight route, checked baggage rules may vary from carrier to carrier or from one flight segment to the next.\nInformation on the free baggage allowance is included for each flight segment on the ticket. If no details appear, please contact the airline or travel agent for clarification.\nIt should be noted that the checked baggage and carry-on allowances that appear on your ticket are based on information provided to us by other carriers, and EL AL bears no responsibility for the accuracy of the information.\nCertain airlines impose a handling fee for each piece of baggage purchased through them, and it is important to verify this on the relevant carrier's website.\nOn code-share flights, the marketing carrier determines the baggage procedures, except in cases where there is another agreement between the operating and marketing carriers.\nWant to check an additional piece of baggage?\nPurchase online up to 3 hours before your flight, enjoy up to 50% discount on the fee charged at the airport and save the handling fee.\n\nIf you haven't checked in yet, you can add baggage via Manage my booking.\nIf you've already checked in, you can add baggage via the check-in process.\nManage my booking\nCheck-in process\nAdditional terms and conditions\nThe permitted baggage allowance as specified below is valid when EL AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next", ' AL operates the most significant flight segment of the itinerary; in other words when it is the MSC (Most Significant Carrier).\nBaggage allowance is determined by the ticket type appearing on the reservation and/or flight ticket.\nThe size of the baggage in the next clause refers to the sum of the length + width + depth.\nThe maximum size permitted per piece of checked baggage (whether it is a suitcase or any other type of baggage) is 158 cm.\nBaggage fees may vary from time to time, from destination to destination, and from flight to flight, all at EL AL�s sole discretion. The prevailing rate is the rate on the date of payment for the service.\nThe maximum size permitted for an infant�s checked baggage (length + width + depth) is 158 cm (excluding Lite tickets, which have no baggage allowance at all).\nSome countries use the British measurement system of pounds for weight and inches for length. 1 kg is equivalent to 2.20 lbs. 1 cm is equivalent to 0.4�.\nPassengers may travel with a maximum of five pieces of checked baggage. Six or more pieces of checked baggage must be handled in advance by the EL AL Cargo Division. Please call the EL AL Cargo Division Telephone Service Center at +972-3-9771177.\nFlying with a baby (up to the age of two)? You are entitled to bring a fully collapsible stroller, infant carrier seat, or infant car seat with you. For more information.\nIf you are traveling with a small child (aged 2-12), you are entitled to check a stroller or child safety seat at no additional charge.\nPrices are displayed in US dollars. At some airports, payment is only allowed in local currency, according to the conversion rate on the date of payment.\nFor those flying from India: A government service tax will be collected for air travel for flights with the first point of departure originated in India.\nEL AL reserves the right to change the excess baggage rates from time to time.\nThe aforementioned information applies to EL AL flights on EL AL aircraft and does not apply to codeshare fights or flights on foreign airlines, including connecting flights.\nThe luggage policy of a flight may vary when the scheduled aircraft has changed and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.', ' and\\or on flights operated by other airlines.\nSubject to the provisions of the law, in the event of cancellation/change of the additional services after purchase, no refund will be given, and the passenger will be charged in full for ordering such services.', 'Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.\n\n\n\nFrequently asked questions about batteries:\nWhat kinds of batteries may be taken aboard in carry-on baggage (in the aircraft cabin)?\nMost types of batteries that are commonly used by consumers may be taken on board, as well as battery-powered electronic devices for personal use.\nSpare batteries should be protected from damage and short circuit. Battery-powered devices must be protected from accidental operation and heat generation.\n\nBatteries allowed aboard the aircraft in carry-on baggage:\nDry cell alkaline batteries; typical batteries such as AA, AAA, C, D, 9-volt batteries, button batteries, etc.\nDry cell rechargeable batteries such as nickel-metal hydride (NiMH) and nickel-cadmium batteries (NiCad).\nLithium-ion batteries (a.k.a.: rechargeable lithium, lithium polymer, LIPO, or secondary lithium batteries). All types of consumer-grade lithium-ion batteries may be carried aboard the aircraft (up to 100 watt-hours [Wh] per battery). This battery size includes AA and AAA batteries, as well as batteries in cellphones, PDAs, cameras, camcorders, electronic games, tablets, portable drills, and laptops. The watt-hours (Wh) rating is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:31,543 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:31,543 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE75B060>, 'json_data': {'input': ['Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.', ' cargo terminal. Please contact the EL AL Cargo Store.', 'Traveling with pets\nHeading out on a long vacation? Planning to move abroad with the entire family? We consolidated all of the important information so that you and your pet can enjoy a pleasant and quiet flight experience.\n\nFirst and foremost\nThe Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs. If you intend to transport an animal, you must obtain authorization from the Ministry of Agriculture�s Veterinary Services. Ways to contact the Ministry of Agriculture.\n\nPlease consider that the authorization process may take several months and involves performing several animal tests.\n\nPlease note, some dogs and cats may develop sensitivity and/or breathing problems during the flight, which may adversely affect their health and in some cases even result in death. EL AL will not be liable in case of death and/or any other medical event to a dog/cat during the flight.\n\n* Snub-nosed (brachycephalic) dog and cat breeds are not approved to be transported as baggage in the luggage compartment or as cargo accompanied by a waybill.\n* Dangerous dogs, as defined in the Israeli Law for the Regulation of Dog Supervision, are not approved for transportation.\n* EL AL reserves the right to refuse to transport an animal at any stage in accordance with the provisions of any law.\n\nThere are a number of ways to transport animals:\nAs personal baggage in the aircraft cabin � Only the following pets: dogs, cats and exotic birds can be transported in the cabin with their owners, giving that their weight, including the cage, does not exceed 9kg. Service dogs are exempt from this weight limit. In this case, you should arrive at the check-in counter with the pet.\nAs checked baggage � In certain instances (e.g. large animals), animals must be transported as checked baggage. In this case, you must send off the animal at the check-in counter; upon landing, you will retrieve your animal in the Arrivals Hall.\nAs registered cargo � There are instances in which an animal may be transported by the Cargo Division (e.g., an extra-large animal or an animal flying unaccompanied). In this case, all transport arrangements will be made via the El Al Cargo Division. The animal will be dropped off at the cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits,', ' cargo terminal. Please contact the EL AL Cargo Store.\n\n\n\nTransporting a pet from Israel abroad\nIf you intend to transport an animal from Israel, whether you�re traveling with it or it is flying alone, you are required to obtain the appropriate permits, in Israel and in the destination country, in advance. Passengers are responsible for contacting the authorities in the destination country and acting in accordance with their guidelines. The authorities in the destination country may determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: It is not possible to transport animals in the aircraft cabin to the following destinations: Johannesburg, London and Hong Kong. Transport is strictly with a bill of lading (cargo).\n\nHow to obtain authorization to transport an animal from Israel abroad:\nCheck with the destination country�s authorities to determine the requirements for transporting an animal to their country.\nContact your veterinarian to have him/her perform the required tests and issue the necessary authorizations.\nAfter receiving all of the required documents, contact the Veterinary Services Department to request that they issue an international certificate of good health (this contact can usually be facilitated through your veterinarian).\nUpdate us upon receiving the flight permit, at least 2 business days prior to your flight. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with', ' lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nGuidelines for Transporting Dogs to the US\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the destination country authorities determine that an animal may be transported with a bill of lading (usually when the animal weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nTransport authorization from the destination country authorities.\nExport license.\nBill of lading.\nCertificate of good health.\nDestination, flight details, flight date, details of the sender, and details of the recipient.\nThe measurements of the transport cage.\nBring all of the required authorizations with you to the airport and present them at the check-in counter.\n\nFor questions and clarifications please contact the Cargo Division: +972-3-9716679\n\nTransporting pets to Israel\nIf you intend to transport an animal to Israel, whether you�re traveling with it or he is flying alone, you are required to obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the', ' obtain the appropriate permits in advance. The Ministry of Health is the body that has the authority to approve the entry of animals into Israel. It will also determine how the animal will be transported, be it in the passenger aircraft cabin, as baggage in the aircraft hold, or as registered cargo.\n\nThe main factor that influences the mode of transport is the animal�s weight:\n\nAnimals (Dogs, cats or exotic birds only) weighing up to 9 kg with their cage � They can usually be transported in the aircraft cabin.\nTransporting an animal (up to 9 kg) in the Business cabin is subject to the approval of the EL AL service center and the availability in Business cabin. The number of pets allowed in this cabin is limited and we recommend contacting the EL AL service center as early as possible to make the reservation.\nAnimals weighing between 9 kg and 100 kg with their cage � They can usually be transported in the aircraft hold.\nAnimals weighing more than 100 kg with their cage � They can usually be transported as registered cargo in the aircraft hold.\nIt is important to note that there are additional factors that may affect the animal�s mode of transport.\n\n \n\nPlease note: There are certain airports from which animals cannot be transported as registered cargo: Bangkok, Amsterdam, Boston, Mumbai, Brussels, Larnaca, Frankfurt, Moscow, Munich, Madrid, Berlin, Prague, Warsaw, Toronto, Vienna, Budapest, Kyiv, and Rome. \n\nHow to obtain authorization to transport an animal to Israel:\nContact the local authorities to obtain the required documents.\nAfter receiving the required documents and no later than two business days prior to the flight, email Veterinary Services at Ben Gurion Airport at vs-airport@moag.gov.il and include the following documents in a PDF file: certificate of good health, rabies antibody test, Appendices B and C (the last page of the file below). If you have met all of the conditions, the Veterinary Services flight permit will be sent to you by email.\nDid you send the documents to Veterinary Services and you did not receive a response within four hours?\nPlease call: +972-3-9792240\nUpdate us upon receiving the Veterinary Services permit. If the permit states that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which', ' that the animal will be transported with a bill of lading (cargo), please follow the guidelines for transporting pets as cargo. If the permit states that the animal will be transported as baggage, update the EL AL Service Center or the travel agent through which you made the booking.\nMake sure to bring with you all of the documents and authorizations; you will be asked to present them at check-in. Without this authorization, a pet will not be accepted on the flight and EL AL may not be held responsible for this.\nAdditional requirements for obtaining authorization to transport a pet as cargo with a bill of lading\nIn cases where the Veterinary Services Department determines that the animal may be transported with a bill of lading (usually when the pet weighs more than 9 kg), this service will be offered through the Cargo Division. Email the following address: Cargostore@elal.co.il\u200b and attach the following documents in a single PDF file:\n\nAuthorization from the Veterinary Services Department.\nExport license.\nBill of lading.\nCertificate of good health.\nLaboratory results for rabies antibodies.\nName of customs brokerage company (if necessary).\nBring the Veterinary Service authorization with you to the airport and present it at the check-in counter.\n\nWhere do you pick up animals after landing in Israel?\nWhen the animal is transported as baggage, it will be released in the Ben Gurion Airport Arrivals Hall.\nWhen the animal is transported as cargo, it will be released in the Ben Gurion Airport cargo terminal.\nFor questions and clarifications please contact our Cargo Division: (import tracing):\nisraelc@elal.co.il\nTracingi1@elal.co.il\nTelephone: +972-3-9716589/592\nThe costs of transporting animals\nTransport costs as baggage:\n \t\u200bEurope and Middle East\tNorth America and Far East\nAnimals weighing up to 9 kg with their cage\t$100\t $150\nAnimals weighing between 9 and 50 kg with their cage\t$200\t$250\nAnimals weighing between 50 and 100 kg with their cage\t$400\t$450\nAnimals weighing more than 100 kg with their cage cannot be transported as baggage and will be handled by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost', ' by the Cargo Division.\n\nTransport costs as cargo:\nTransport costs depend on a number of factors. To clarify costs, please contact the Cargo Division at:\n+972-3-9716679\n\nCosts � What you need to know:\nThe cost of transporting a pet is based on the total weight of the animal, the carrying case, and the food.\nThe prices are valid for animals accompanying the passenger on the same flight.\nPayment is made at the airport after the animal is weighed.\nPayment for transporting pets is made separately; it is not included in the weight of the permitted baggage allowance.\nIf the flight ticket includes any connecting flights with other airlines, payment must be arranged with the other airline.\nThe costs are not applicable to codeshare flights, operated by other airlines.\nA passenger with an open ticket must pay for the outbound and return flight, even if the return date is unknown.\nGeneral guidelines for transporting animals\nOnly the following pets: Dogs, cats or exotic birds, can be transported in the passenger cabin, depending on their size and weight and the required permits.\nAnimals exhibiting clear and visible signs of illness and/or who are emitting a foul odor may not be approved to fly.\nPets who have been approved for transport must also be authorized by the relevant authorities at the intermediate or final destination.\nThe passenger is required to prepare the animal for the flight according to the recommendations of a veterinarian.\nEL AL will not be held responsible in the event an animal is denied transit or entry into another country.\nTransport cage guidelines\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nTransporting service dogs in the aircraft cabin\nService dogs that are accompanying:\n\nA passenger with special needs.\nAn I.D.F soldier / A person experiencing "shell shock" (Post-trauma caused by military service).\nMay be transported at no additional cost in the aircraft cabin, subject to the following terms and conditions:\n\nYou must hold an official document/License that states that your dog has been properly trained and is in active duty as your service dog from one of the certified organization for training service dogs (The Israel Service Dogs Training Center, The Israel Guide Dog Center for The Blind).\nIt is the sole responsibility of the passenger to ensure all documents and/or authorizations required by the destination country for the transport of a service dog have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate', " have been completed. EL AL will bear no responsibility in this regard.\nThe passenger is required to update the Service Center regarding a flight with a service dog, no later than 48 hours prior to the flight date.\nThe passenger must provide a veterinary certificate stating that the dog is vaccinated and has the ability to maintain proper sanitary conditions during the flight and transport.\nThe dog must be tied to a leash and/or harness from check-in until landing at the destination.\nIt is important to come equipped with a cage adapted to the dog and its size, in the event it is necessary.\nIt is the passenger�s full responsibility to complete all the forms and documents required to transport animals to Israel / from Israel, and to check with the destination country to determine its requirements.\nFlying to London with a service dog?\n\nIn addition to the guidelines we mentioned before, passengers traveling to London with a service dog are asked to register 14 days prior to the date of the flight on the Heathrow Airport website. You can do this by clicking on Heathrow Animal Reception Centre.\n\n \n\nFlying to or from the United States with a service dog?\n\nIn addition to all of the details included above, it is the passenger�s responsibility to fill out, print, and bring special additional forms for the United States and to present them at the check-in counters.\n\nPlease note that the regulations regarding transporting dogs to the US have changed. There are certain destinations in the US where transporting dogs will not be allowed at all. For destinations where transporting dogs are allowed, the passenger must meet all the requirements listed on the CDC website. Passengers who do not meet all the requirements, as detailed on the CDC website, will not be allowed to board the flight with their dog.\nPlease note that as of this date, the State of Israel is defined as a high-risk country on the CDC website.\n\nWe recommend using the services of companies specializing in animal air transport.\nPlease note that additional charges are incurred for inspecting and releasing of a dog from airport facilities in the United States.\n\nImportant information\n\nEL AL may require the passenger to have the dog tied to a leash and/or harness and/or barrier throughout the flight.\nEL AL may be entitled to require the passenger to seat the dog on his/her lap or in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\n", " in the area designated for the passenger's feet, so that the dog does not invade the space of other passengers.\nEL AL will be entitled to refuse to transport the dog and/or decide to transport it in the hold if any of the following occurs:\nThe dog constitutes a direct threat.\nThe dog causes a disturbance in the aircraft or its behavior indicates that it has not been trained to behave in public.\nTransporting the dog violates safety and security regulations.\nThe passenger does not provide the necessary forms as required and/or did not meet all of the cumulative conditions mentioned above.\nTo the extent that damage is caused by the dog, EL AL will be entitled to charge the passenger for the full damage.", 'Was your baggage delayed or damaged?\nSometimes, for unexpected reasons, there are cases in which baggage is delayed, damaged, or lost. We apologize in advance for any inconvenience and will do our best to find a quick solution to your satisfaction.\nBaggage Service Center handles cases of:\nDelayed baggage\nDamaged baggage\nAn item forgotten on board\nStatus of a claims that were sent to the Baggage Claims Department\n\nWays to contact about baggage issues after a flight\nPhone: 03-9771150 \nSunday to Thursday: 8:30 a.m. - 5 p.m.\nFriday: 8:30 a.m. - 1 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nWhatsApp chat 03-9771111:\nSunday to Thursday: 4 p.m. - 12 a.m.\nFriday: 1 p.m. - 4 p.m.\nSaturday Night: 7 p.m. - 12 a.m.\n\nRegarding delayed baggage, once your baggage is retrieved, it will be transferred to the courier service and delivered to the address stated on the report.\nIs your baggage delayed or lost?\nDelayed bags must be reported immediately after landing to an EL AL representative in the airport baggage claim area. They will issue you a report on the delayed bag, according to company policy.\nIf you didn�t report about the delayed bag at the airport, you can contact the baggage service center within 7 days from the date of your flight. See contact details above. \nThe status of the claim can be checked in a worldwide system (in English). Enter the lost baggage report number (10 characters) in the first box, the last name in the second box, and click the "Submit" button. Checking the status of a claim\nWas your baggage damaged?', 'Information on batteries and dangerous substances\nWhether its batteries, a laptop, or even medical equipment, before boarding a flight it is important to know that there are certain articles and substances that are classified as dangerous, so taking them on your flight may require advance preparation or you may not even be able to take them with you at all.\n\nSubstances and articles forbidden on the aircraft:\n Compressed gases (deeply refrigerated, flammable, non-flammable and poisonous) such as butane and oxygen, aqualung cylinders, and compressed gas cylinders.\n Corrosives, such as acids, alkalis, wet cell batteries, and items containing mercury.\n Explosives other than light ammunition.\n Flammable liquids and solids.\n Radioactive materials.\n Briefcases with installed alarm devices.\n Oxidizing materials (hydrogen peroxide, bleaching powders, etc.).\n Poisons and infectious substances, such as insecticides, herbicides, and live virus materials.\n Items such as high-strength magnetic materials, materials that can harm people or the environment.', 'Liquids in Carry-On Bags\nWhether you just splurged on a bottle of fine whiskey or you are traveling with gels, cosmetics, baby food, or even prescription medications, prior to boarding a flight it is important to know exactly what you are allowed to take on board and what you must check.\n\nLiquids in Carry-On Bags\nPrior to taking off, it is important to know what you can take with you aboard the aircraft. Today, at most airports around the world, there is a limit on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight. Liquids, aerosols, gels, creams, etc. that exceed the permitted amount will be discarded at the security checkpoint if they do not meet the updated guidelines.\n\nFor your convenience, we have compiled some non-exhaustive general information for you about carrying liquids in carry-on bags on flights departing from Israel. Please note that it is your responsibility to stay up to date on the specific conditions that may apply to flights to or from certain countries-including connecting and codeshare flights�with respect to carrying liquids in handbags, as these may change from time to time.', "Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:", "Flying with sporting equipment?\nAre you planning the perfect ski vacation? Maybe heading out for a wild bike trip? Wherever you're going, there are a few things you need to know before you start packing. So now that we�ve gotten warmed up, here�s some important information about flying with sporting equipment.\n\nImportant to know\nWe offer complimentary transport of sports equipment in place of your standard checked baggage, under the following conditions:\n- Economy Class (excluding Lite fares) and Premium Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 30 kg.\n- Business Class: Sports equipment with dimensions up to 190 cm (length + width + height) and weighing up to 32 kg.\nNote: For those flying with skiing or snowboarding equipment, please see the additional benefits below.\n\nIf your equipment weighs up to 32 kg and its total measurements (length + height + width) are under 277 cm, it can be sent as overweight baggage, but you�ll need to contact the El Al call center for approval.\n\nIf your equipment exceeds the permitted dimensions, or you prefer to send your equipment separately from your permitted baggage allowance, you can transport the equipment as cargo via the EL AL Cargo Division (Tel. +972-3-977-1177 or according to the details listed on the website).\nAdditional Sports Equipment\nIf you need to bring sports equipment in addition to your standard baggage allowance, the following applies:\n\n\nAllowed Dimensions and Weight: Sports equipment with dimensions up to 277 cm (length + width + height) and weighing up to 50 kg.\n\nFees:\n- Europe, the Middle East, and Morocco: $70 one way.\n- Far East and North America: $150 one way.\n\nPlease ensure that your sports equipment meets these requirements to take advantage of our sports equipment transport service.\n\nPayment for the transport of sporting equipment will be made at the airport only and cannot be made in advance. Costs are determined according to the following regulations:\n\nThe final cost will be determined on the date of payment, according to the service cost on that date. Costs may vary depending on destination and flight, according to the sole discretion of the airline.\nChecked baggage containing sporting equipment must meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports,", " meet the permitted size and weight dimensions for that passenger�s checked baggage allowance. If your equipment exceeds the permitted dimensions, excess baggage charges will apply, according to the regulations stipulated on this page.\nPrices are displayed in US dollars. At some airports, payment is allowed only in local currency, according to the conversion rate on the date of payment.\nTransporting snowboards and ski equipment?\nIn addition to the equipment and baggage allowance permitted for each passenger, you may also bring ski and snowboard equipment at no extra charge (doesn't apply on LITE fare ticket), as long as it's packed into one checked bag that weighs up to 50 kg and its total measurements do not exceed 277 cm (length + height + width).\n\nIf your ski equipment exceeds the permitted dimensions, you�ll need to contact El Al�s Cargo Division (Tel: +972-3-977-1177).\n\nWhat does Ski and snowboards equipment include?\nSki equipment includes one pair of skis, one pair of poles and one pair of ski boots.\nSnowboard equipment includes one snowboard and one pair of ski boots.\nTransporting bicycles?\nYou can transport a bicycle at no extra charge instead of your regular checked baggage, as long as the bicycle is packed into a checked bag and meets the weight and/or size dimensions of your permitted baggage allowance (determined by the cabin class you�re flying in).\n\nPlease note\nMotorized bicycles cannot be transported! For exceptional cases, please contact our Cargo Division. Transport of bicycles is subject to El Al approval and depends on available space in the cargo hold.\n\nTransport of bicycles also requires pre-approval from the EL AL call center. You will be charged only after you arrive at the airport, providing your bicycle is packed according to the following regulations:\n\nRemove the pedals.\nDismantle the handlebar.\nLet out some air from the wheels and separate one wheel from the rest of the bicycle.\nMake sure to pack the bicycle in a box/special case, to protect it from damage and to prevent leakage of hydraulic fluid.\nPlease note\nThe information here applies to EL AL flights on EL AL aircrafts only. It does not apply to continuing flights or flights with other airlines.\nIt is the passenger's responsibility to stay updated and comply with the conditions and guidelines of the destination country. EL AL will not bear any responsibility if the destination country refuses to admit the passenger's equipment.\nPlease note that in accordance with transport conditions, EL AL does not bear responsibility for fragile"], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:31,544 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE759EE0>, 'json_data': {'input': [' is marked on newer lithium-ion batteries and is explained in question 3 below. Portable chargers are also considered batteries.\nTwo larger lithium-ion batteries (100-160 watt-hours per battery) may also be taken aboard the aircraft in your carry-on. The battery size includes extended-life laptop batteries and most lithium-ion batteries for professional-grade audio/visual equipment. Most consumer-grade lithium-ion batteries are smaller. Engineering approval is required in order to travel with these larger batteries.\nLithium metal batteries (a.k.a. non-rechargeable lithium batteries or primary lithium batteries). These batteries are often used in cameras and small personal electronic devices. Consumer-grade batteries (up to 2 grams of lithium per battery) may be brought aboard the aircraft. This includes all the typical non-rechargeable batteries used in cameras (AA, AAA, 123, CR123A, CR1, CR2, CRV3, CR22, 2CR5, etc.), as well as flat, round lithium button batteries.\nNon-spillable wet batteries with absorbed electrolyte are limited to 12 volts and 100 watt-hours per battery. These batteries must be of the absorbed electrolyte type (gel cells, AGM, etc.) that meet the requirements of 49 CFR; i.e. no electrolyte will leak from a cracked battery case. Batteries must be in strong outer packaging or installed in equipment. Additionally, passengers are restricted to two spare (uninstalled) batteries. Spare batteries� terminals must be protected (using non-conductive caps, tape, etc.) within the outer packaging. Batteries and outer packaging must be marked �nonspillable� or �nonspillable battery.� Note: The above applies to portable electronic devices, not battery-powered mobility aids. There are separate exceptions for motorized wheelchairs.\n \n\nWhat kinds of batteries are allowed in checked baggage?\nYou may not check lithium batteries except:\nElectronic devices with lithium batteries that cannot be removed from the device and cannot be stored in the aircraft cabin due to physical size will be stored in the aircraft hold under the following conditions:\n\nMake sure that the device is completely switched off and protected from accidental operation.\nThe device must be protected from external damage.\nAn electronic device may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium', " may not be stored together with flammable material (e.g. hairspray, etc.)\nSpare lithium batteries (both lithium-metal and lithium-ion/polymer) are prohibited in checked baggage. This includes portable chargers.\nElectronic devices with removable lithium batteries: the battery should be taken aboard the aircraft cabin. The device can be checked.\nThe other types of batteries (listed above) may be transported in the aircraft hold. Batteries should be protected from damage and short circuits or installed inside a device. Battery-powered devices should be protected from accidental operation, especially those that have moving parts or might overheat.\n \n\nHow do I determine a battery's watt-hours (Wh) rating?\nTo determine watt-hours, multiply the volts (V) by the ampere hours (Ah). For example: A 12-volt battery rated to 8 ampere hours is rated at 96 watt hours (12 x 8 = 96). For milliamp hours (mAh), multiply by the volts and divide by 1000.\n\n \nIs there a limit to the number of batteries that may be taken aboard the aircraft?\nYes. Up to 20 spare batteries with a capacity of less than 100 Wh may be taken aboard the aircraft when insulated or in their original packaging, and only in the cabin.\nUp to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 Wh are allowed aboard the aircraft, and only in the cabin.\nLarger lithium-ion batteries (100-160 watt-hours per battery) are limited to two batteries per passenger; see the above explanation of lithium-ion batteries.\nUp to two spare/uninstalled non-spillable wet batteries can be taken aboard the aircraft.\n\nWhat does �protected against short circuit� mean?\nWhen metal objects such as keys, tools or other batteries come in contact with both terminals of a battery it can create a �circuit� or path for electricity to flow through. An electrical current flowing through this unprotected short circuit can cause extreme heat and sparks and even start a fire.\nTo prevent short circuits, keep spare batteries in their original packaging, a battery case, or a separate pouch or pocket. Make sure loose batteries can�t move or roll around. Placing tape over the terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view", ' terminals of unpackaged batteries also helps to insulate them and prevent short circuit.\n\nBattery-powered wheelchairs/mobility aids on EL AL flights\nBattery-powered mobility aids must comply with the relevant IATA regulations. For your convenience, you can view the Summary of Regulations.\nIf your battery is on the list of batteries allowed on the aircraft and in order for EL AL to be prepared to transport the mobility aid, you must report, at least 14 days before the flight, that you intend to arrive at the flight with the mobility aid. You must send an email to flightaid@elal.co.il indicating the model of the wheelchair/scooter and battery as shown on the list.\nIf your battery does not appear on the list of flight-approved batteries, please fill out and submit a portable vehicle flight form. After filling out the form and sending it to flightaid@elal.co.il, you will receive authorization to travel with your mobility aid within approximately 7 business days, depending on the urgency of your flight dates.\nTraveling with hazardous materials on EL AL flights\n\nAre you planning to fly with dry ice? Contact the EL AL service center in advance to update the details of your flight. Additionally, you will need to fill out a Declaration Form and bring it with you on the flight.', "How many checked bags can you bring?\nFlying with just one piece of checked baggage or do you need to check three? Whatever the circumstances, it is important to know how many pieces of baggage you can take and which types are allowed.\n\nFirst and foremost\nThe checked baggage allowance depends primarily on your travel class and destination country. You can find the number and weight of the checked bags included in your ticket on the flight ticket and on the Manage Your Booking page on the website.\nYou can easily add additional pieces of baggage up to three hours before the flight through the Manage Your Booking page.\nThe baggage policy on scheduled Sundor flights is the same as El Al's baggage policy.\n\nOversized And Overweight Baggage\nWhat is oversized and overweight baggage?\nAny baggage that exceeds authorized dimensions in terms of shape, size, or weight. For example: oversized or overweight suitcases, backpacks, soft bags, and more.\n\nFlying with oversized and overweight baggage?\nAfter going through EL AL security pre-screening and check-in, passengers with baggage classified as oversized or overweight are required to take their baggage to the designated oversized/overweight baggage location. The process of checking in oversized and overweight baggage takes longer than standard baggage and may delay your arrival at the departure gate.\n\nTo expedite the baggage check-in process, it is recommended to travel with a standard hard or soft-sided baggage within the permitted dimensions and weight."], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:31,544 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:31,544 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:31,550 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:31,550 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:31,551 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:31,551 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:31,551 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:31,551 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:31,556 httpcore.connection DEBUG start_tls.complete return_value= -13:54:31,556 httpcore.http11 DEBUG send_request_headers.started request= -13:54:31,558 httpcore.http11 DEBUG send_request_headers.complete -13:54:31,558 httpcore.http11 DEBUG send_request_body.started request= -13:54:31,559 httpcore.connection DEBUG start_tls.complete return_value= -13:54:31,559 httpcore.http11 DEBUG send_request_body.complete -13:54:31,559 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:31,559 httpcore.http11 DEBUG send_request_headers.started request= -13:54:31,559 httpcore.http11 DEBUG send_request_headers.complete -13:54:31,559 httpcore.http11 DEBUG send_request_body.started request= -13:54:31,561 httpcore.http11 DEBUG send_request_body.complete -13:54:31,561 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:31,561 httpcore.connection DEBUG start_tls.complete return_value= -13:54:31,561 httpcore.http11 DEBUG send_request_headers.started request= -13:54:31,561 httpcore.http11 DEBUG send_request_headers.complete -13:54:31,562 httpcore.http11 DEBUG send_request_body.started request= -13:54:31,562 httpcore.http11 DEBUG send_request_body.complete -13:54:31,562 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:31,993 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:32 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'51'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4998065'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_8aa7aefde08ddcca8dc476eec59b2752'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=uGypbhuUG6UtArfBAEb0q6D4CtVq4oj6gKejqJ7jJUU-1731930872-1.0.1.1-35O04lgfY6_7MmQ7B0HUqhFIiGgMOzsdKmaUAOo846du09uQbMhOCysWO.qjH.a.MTt0hxc23pPJQ_haHVkwWA; path=/; expires=Mon, 18-Nov-24 12:24:32 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=0NiOwfhp0gZzleeeW9_85_MSiPaF5eE5CXkjQqhjaMo-1731930872247-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c42cdbc47da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:31,994 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:31,994 httpcore.http11 DEBUG receive_response_body.started request= -13:54:32,147 httpcore.http11 DEBUG receive_response_body.complete -13:54:32,148 httpcore.http11 DEBUG response_closed.started -13:54:32,148 httpcore.http11 DEBUG response_closed.complete -13:54:32,148 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:32,149 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.6099999999860302. input_tokens=1544, output_tokens=0 -13:54:32,204 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:32 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'216'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4993194'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'81ms'), (b'x-request-id', b'req_562f99a007cc8cfa12ea37f646c4180d'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=E_.tzJ1gQ7LcN71gOnzknsMr31E5arBS59mFI8SEKFA-1731930872-1.0.1.1-gTvY_GeAXyTHkypSN0d.uOhzAy1e6lsaO51UMZmS6GFT7maSOLqdBBJN9BQt.d4ts0wERv.hWuf7uyK2PGTFdA; path=/; expires=Mon, 18-Nov-24 12:24:32 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=fkyTEjRA8gncZQnGO6G36KL0z.vI6zrWK6KDux.Z..0-1731930872458-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c42cdbd3c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:32,204 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:32,204 httpcore.http11 DEBUG receive_response_body.started request= -13:54:32,304 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:32 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'286'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4992171'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'93ms'), (b'x-request-id', b'req_575a49610286055774dd99bef3412427'), (b'CF-Cache-Status', b'DYNAMIC'), (b'Set-Cookie', b'__cf_bm=feUd.hlD4hjYtgDxZ71qhRsCARz.Z45QI1k9CiY87Us-1731930872-1.0.1.1-rau_dR3g7I7KC1LLiymb6zPnG6pHY79J4TmoNQHMwCmTxOlNgcFHWQe54eN.6wNa870DLXvBDzEnW51zoUhVuQ; path=/; expires=Mon, 18-Nov-24 12:24:32 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'X-Content-Type-Options', b'nosniff'), (b'Set-Cookie', b'_cfuvid=pPRmlQF4w1ZBEKGP6rTi46s8LGv5RzbyTn_nybJTiMA-1731930872557-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c42ceff57da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:32,304 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:32,304 httpcore.http11 DEBUG receive_response_body.started request= -13:54:32,776 httpcore.http11 DEBUG receive_response_body.complete -13:54:32,776 httpcore.http11 DEBUG response_closed.started -13:54:32,776 httpcore.http11 DEBUG response_closed.complete -13:54:32,777 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:32,778 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.25. input_tokens=5907, output_tokens=0 -13:54:32,874 httpcore.http11 DEBUG receive_response_body.complete -13:54:32,874 httpcore.http11 DEBUG response_closed.started -13:54:32,874 httpcore.http11 DEBUG response_closed.complete -13:54:32,875 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:32,876 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.3439999999827705. input_tokens=6224, output_tokens=0 -13:54:33,111 graphrag.index.operations.embed_text.embed_text INFO using vector store lancedb with container_name default for embedding community.full_content: default-community-full_content -13:54:33,158 graphrag.index.operations.embed_text.strategies.openai INFO embedding 75 inputs via 75 snippets using 6 batches. max_batch_size=16, max_tokens=8191 -13:54:33,164 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE759EE0>, 'json_data': {'input': ["# EL AL Airline and Pet Transportation\n\nThe community centers around EL AL, an airline with specific policies regarding baggage, pet transportation, and passenger services. Key entities include the Arrivals Hall, which facilitates pet retrieval, and various claims related to baggage policies and pet transport regulations. The relationships among these entities highlight the operational framework of EL AL in managing both passenger and pet travel.\n\n## EL AL's comprehensive baggage and pet transport policies\n\nEL AL has established detailed regulations concerning baggage and the transportation of pets, which are crucial for ensuring compliance and customer satisfaction. The airline's policies cover various aspects, including weight limits for pets, specific guidelines for transporting service animals, and the handling of valuable items. For instance, pets can be transported in the cabin if they meet weight restrictions, while larger animals must be checked as baggage or handled by the Cargo Division. This structured approach helps mitigate risks associated with baggage issues and ensures that passengers are well-informed about their responsibilities [Data: Entities (1), Claims (2, 3, 4, 5, 11); Relationships (10, 15, 20)]\n\n## The role of the Arrivals Hall in pet transportation\n\nThe Arrivals Hall at Ben Gurion Airport serves as a critical point for pet owners to retrieve their animals after travel. This designated area ensures that the process of reuniting with pets is organized and efficient, reflecting EL AL's commitment to customer service. The existence of a specific location for pet retrieval highlights the airline's focus on accommodating pet owners and managing the logistics of animal transport effectively [Data: Entities (11); Relationships (9)]\n\n## Claims regarding baggage measurements and weight limits\n\nEL AL has several claims related to baggage measurements and weight limits, emphasizing the airline's policies on transporting animals and the associated costs. For example, animals weighing up to 9 kg can be transported in the cabin for a fee, while larger animals incur higher costs and may require special handling. These claims are essential for passengers to understand the financial implications of traveling with pets and the airline's liability regarding baggage issues [Data: Claims (2, 3, 11); Relationships (8, 15)]\n\n## Additional fees and discounts for baggage handling\n\nEL AL implements additional handling fees and offers discounts for baggage checked through their service center. Passengers can benefit from a 50% discount on baggage fees if purchased online before their flight, which encourages early planning and can enhance customer satisfaction. These financial policies are crucial for managing passenger expectations and ensuring transparency in the airline's pricing structure [Data: Entities (353, 354); Relationships (41, 42, 38)]\n\n## The importance of safety and security regulations\n\nSafety and security regulations play a vital role in the transportation of animals on EL AL flights. The airline must adhere to these regulations to ensure the safety of all passengers and crew, particularly when transporting pets. Compliance with these regulations not only protects the animals but also enhances the overall travel experience for pet owners, reinforcing EL AL's reputation as a responsible airline [Data: Entities (108); Relationships (23)]", "# EL AL Cargo Division and Animal Transport\n\nThe community centers around EL AL's Cargo Division, which specializes in the transportation of animals, particularly pets. The division is responsible for ensuring compliance with transport regulations, including obtaining necessary authorizations and adhering to specific guidelines for animal transport.\n\n## EL AL's Cargo Division as a key player\n\nThe Cargo Division of EL AL is a crucial entity in this community, tasked with managing the transport of various types of cargo, including animals. This division ensures that all necessary documentation is provided for transporting animals, particularly pets, which requires adherence to strict regulations. The division's expertise in handling special requests for oversized or unaccompanied animals highlights its capability to manage complex transport needs effectively. [Data: Entities (12); Relationships (10)]\n\n## Importance of transport authorization\n\nTransport authorization from destination country authorities is a critical requirement for transporting pets. The Cargo Division mandates this authorization to ensure compliance with international transport regulations, which is essential for the safe and legal movement of animals across borders. Failure to obtain the necessary authorization could result in significant legal repercussions and impact the reputation of EL AL's Cargo Division. [Data: Entities (44); Relationships (116)]\n\n## Compliance with transport cage measurements\n\nThe Cargo Division requires specific measurements of transport cages to ensure the safety and compliance of animals during transport. This requirement is vital for preventing injuries and ensuring that animals are housed in appropriate conditions throughout their journey. The emphasis on cage measurements reflects the division's commitment to animal welfare and regulatory compliance, which is crucial for maintaining trust with customers. [Data: Entities (46); Relationships (118)]\n\n## Specialization in transporting animals\n\nThe Cargo Division specializes in transporting animals, including pets, which involves a detailed understanding of the unique requirements associated with animal transport. This specialization allows the division to provide tailored services that meet the needs of pet owners and ensure the safe transit of animals. The division's focus on animal transport underscores its role as a leader in this niche market, enhancing its reputation among customers seeking reliable transport solutions. [Data: Entities (51); Relationships (119)]", '# Travel Classes and Sporting Equipment Transport\n\nThis community focuses on the relationships between various travel classes, specifically Business Class and Premium Class, and their provisions for transporting sporting equipment. The entities are interconnected through specific baggage allowances and fees associated with transporting sports gear, highlighting the importance of these travel classes for athletes and sports enthusiasts.\n\n## Business Class offers superior baggage allowances\n\nBusiness Class provides enhanced baggage allowances compared to other travel classes, allowing passengers to check up to two pieces of baggage weighing up to 32 kg each. This is particularly beneficial for travelers with sporting equipment, as it accommodates larger and heavier items that are essential for athletes. The relationship between Business Class and sporting equipment transport is significant, as it enables a more accommodating experience for those needing to travel with sports gear. [Data: Entities (165); Relationships (37, 313)]\n\n## Premium Class provides additional services for sports equipment\n\nPremium Class also offers specific provisions for transporting sporting equipment, allowing passengers to check up to two pieces of baggage weighing up to 23 kg each. This class is designed for travelers who require enhanced services compared to Economy Class, making it a viable option for those carrying sports gear. The relationship between Premium Class and sporting equipment is crucial for understanding how different travel classes cater to the needs of sports enthusiasts. [Data: Entities (164); Relationships (36, 296)]\n\n## Sporting equipment transport regulations\n\nSporting equipment encompasses a variety of items that can be transported under specific conditions. The regulations for transporting these items vary by travel class, with Economy Class, Premium Class, and Business Class each having distinct size and weight restrictions. Understanding these regulations is essential for travelers to ensure compliance and avoid additional fees. The relationship between sporting equipment and the various travel classes highlights the importance of adhering to these guidelines. [Data: Entities (162); Relationships (295, 297, 296)]\n\n## Cargo services for oversized sporting equipment\n\nCARGO services provide specialized transport for sporting equipment that exceeds standard baggage limits. This is particularly important for athletes who may need to transport larger items, such as bicycles or skis, which cannot be accommodated within the regular baggage allowances. The relationship between CARGO and sporting equipment ensures that travelers have options for transporting their gear efficiently, especially when it surpasses the typical limits set by airlines. [Data: Entities (38); Relationships (155, 299)]\n\n## Fees associated with transporting sporting equipment\n\nThere are specific fees associated with transporting sporting equipment, such as the 150 USD fee for one-way transport to the Far East and North America. This fee structure is important for travelers to consider when planning their trips, as it can significantly impact the overall cost of travel. The relationship between sporting equipment and these fees underscores the financial considerations that athletes and sports enthusiasts must account for when traveling. [Data: Entities (181); Relationships (303)]', '# Economy Class and Lite Fares\n\nThe community focuses on Economy Class travel options, including Lite Fares, which offer basic services at lower costs. The entities are interconnected through baggage allowances and restrictions, particularly regarding sporting equipment.\n\n## Economy Class as a primary travel option\n\nEconomy Class is a widely utilized travel class that provides essential services at lower fares, making it accessible to a broad range of travelers. This class allows passengers to bring one carry-on bag weighing up to 8 kg, which is a significant consideration for budget-conscious travelers. The structure of Economy Class is designed to cater to those seeking affordable travel options while still offering standard services, thus playing a crucial role in the airline industry. [Data: Entities (163)]\n\n## Lite Fares and their limitations\n\nLite Fares represent a specific subset of Economy Class fares that come with notable restrictions, particularly regarding the transport of sporting equipment. These fares do not allow for the complimentary transport of sports gear, which can be a disadvantage for travelers who wish to bring such items. The limitations associated with Lite Fares make them a more basic option, appealing primarily to those prioritizing cost over additional services. [Data: Entities (175), Relationships (307)]\n\n## Baggage allowances in Economy Class\n\nEconomy Class passengers are entitled to specific carry-on baggage allowances, which are essential for travelers to understand when planning their trips. The allowance of one carry-on bag weighing up to 8 kg is a standard feature that helps manage passenger expectations and compliance with airline policies. This baggage policy is crucial for ensuring a smooth travel experience and minimizing potential disputes at check-in. [Data: Relationships (308)]\n\n## Transport of sporting equipment in Economy Class\n\nEconomy Class permits the transport of sporting equipment under specific conditions, which is an important aspect for travelers who engage in sports. The allowance is subject to size and weight restrictions, ensuring that passengers can bring their gear while adhering to airline regulations. This policy enhances the appeal of Economy Class for active travelers, although it is important to note that Lite Fares do not include this benefit. [Data: Relationships (295)]\n\n## Weight limits for sports equipment\n\nThe maximum weight limit for sports equipment in Economy Class is set at 30 kg, which is a critical factor for travelers planning to bring such items. This weight category indicates the relationship between the travel class and the specific allowances for sporting gear, ensuring that passengers are aware of the limitations they must adhere to. Understanding these limits is essential for avoiding additional fees or complications during travel. [Data: Relationships (306)]', "# Weight Regulations in Air Travel\n\nThis community focuses on the regulations surrounding weight limits for baggage and sporting equipment in air travel. The entities are interconnected through their implications on transportation logistics, particularly concerning the maximum allowable weights for different travel classes.\n\n## Weight as a critical factor in transportation logistics\n\nWeight is a significant consideration in the logistics of transporting both animals and personal belongings. It influences whether pets can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation. Additionally, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. This multifaceted role of weight in transportation logistics underscores its importance in the community. [Data: Entities (35); Relationships (143, 144, 145)]\n\n## 30 KG limit for Economy Class\n\nThe entity '30 KG' refers to the maximum weight limit for sports equipment allowed in Economy Class. This limit is crucial for passengers as it directly impacts their ability to transport sporting equipment without incurring additional fees. The relationship between this weight limit and the Economy Class indicates a structured approach to managing baggage allowances, which is essential for both airlines and travelers. [Data: Entities (172); Relationships (306, 144)]\n\n## 32 KG limit for Business Class\n\nThe entity '32 KG' refers to the maximum weight limit applicable in Business Class for checked baggage and sports equipment. This higher limit compared to Economy Class reflects the different service levels and expectations associated with Business Class travel. Understanding this distinction is vital for passengers who may need to transport heavier items, as it can influence their choice of travel class. [Data: Entities (171); Relationships (313, 145)]\n\n## Impact of weight on carry-on baggage eligibility\n\nWeight is a crucial factor in determining the eligibility of carry-on baggage. The weight limits set by airlines play an essential role in assessing whether carry-on items meet the requirements for boarding. This relationship highlights the importance of weight regulations in ensuring compliance with airline policies, which can affect the travel experience of passengers. [Data: Relationships (146)]\n\n## Weight restrictions on sporting equipment\n\nWeight plays a crucial role in the transportation of sporting equipment, influencing both the allowances and fees associated with such transport. The established weight limits for sporting equipment in different travel classes serve as key restrictions that determine whether items can be transported without incurring additional costs. This aspect is particularly relevant for athletes and travelers who engage in sports activities. [Data: Relationships (143)]", '# Checked Luggage and Baggage Conveyor Belt\n\nThe community centers around the concepts of checked luggage and the baggage conveyor belt, which are integral to the air travel experience. The relationship between these entities highlights the process of luggage handling at airports, emphasizing their distinct roles in passenger travel.\n\n## Distinct roles of checked luggage and carry-on baggage\n\nChecked luggage and carry-on baggage serve different purposes for air travelers, with checked luggage designed for larger items that cannot fit in the cabin. This distinction is crucial for understanding passenger needs and the logistics of air travel. The relationship between these two types of luggage indicates that while they both cater to the same demographic, they fulfill different requirements and restrictions regarding size and accessibility. This differentiation is essential for airlines and airports in managing passenger expectations and operational efficiency. [Data: Relationships (370)]\n\n## Baggage conveyor belt as a retrieval point\n\nThe baggage conveyor belt is a critical component of the luggage retrieval process at airports, where checked luggage is collected after a flight. This entity plays a vital role in the passenger experience, as it directly impacts the efficiency and satisfaction of travelers upon arrival. Delays or issues with the baggage conveyor belt can lead to significant frustration among passengers, highlighting the importance of this system in airport operations. Understanding the relationship between the baggage conveyor belt and checked luggage is essential for improving service delivery in air travel. [Data: Entities (275), Relationships (378)]', "# Carry-On Baggage and Airline Policies\n\nThe community focuses on the regulations and policies surrounding carry-on baggage in air travel, particularly as they relate to various airlines and passenger classes. Key entities include airlines like Sun Dor and EL AL, as well as concepts like personal bags and booking management, which are interconnected through specific baggage policies.\n\n## Importance of Carry-On Baggage Policies\n\nCarry-on baggage policies are essential for regulating what passengers can bring into the cabin of an aircraft. These policies help maintain safety and order during flights, as they dictate the size, weight, and number of items allowed. Airlines like EL AL and Sun Dor have specific guidelines that passengers must adhere to, which can vary significantly between carriers. This variability can lead to confusion among travelers, making it crucial for airlines to communicate their policies clearly. [Data: Relationships (29, 368, 375)]\n\n## Role of Passenger Classes in Baggage Allowances\n\nDifferent passenger classes, such as Economy, Business, and Premium, have distinct carry-on baggage allowances. For instance, Economy Class passengers are entitled to specific allowances that differ from those in Business or Premium classes. This tiered approach to baggage policies can affect passenger satisfaction and operational efficiency, as airlines must manage varying expectations and compliance levels among different classes. [Data: Relationships (308, 314, 312)]\n\n## Impact of Frequent Flyer Programs\n\nMembership in frequent flyer programs, such as the Matmid Frequent Flyer Club, can significantly influence a passenger's carry-on baggage privileges. Members may enjoy enhanced allowances or exemptions from certain restrictions, which can incentivize loyalty to an airline. This dynamic creates a competitive landscape where airlines must balance the benefits offered to frequent flyers with the need to maintain standard policies for all passengers. [Data: Relationships (369)]\n\n## Connection Between Carry-On and Checked Luggage\n\nCarry-on baggage and checked luggage serve different purposes for air travelers. While carry-on items are intended for easy access during the flight, checked luggage is designed for larger items that cannot fit in the cabin. Understanding the distinctions between these two types of luggage is vital for passengers to ensure compliance with airline policies and to optimize their travel experience. [Data: Relationships (370)]\n\n## Significance of Booking Management Systems\n\nBooking management systems play a crucial role in informing passengers about their carry-on baggage allowances and policies. These systems enable travelers to manage their bookings effectively while ensuring they are aware of the specific regulations governing their carry-on items. This functionality is essential for a smooth travel experience, as it helps prevent misunderstandings and potential conflicts at the airport. [Data: Relationships (373)]\n\n## Regulatory Framework for North America\n\nCarry-on baggage policies are particularly relevant for flights to and from North America, where specific regulations dictate the size, weight, and number of carry-on items allowed. Airlines operating in this region must ensure that their policies align with these regulations to avoid compliance issues and enhance passenger safety. This regional focus highlights the importance of understanding local regulations in the global airline industry. [Data: Relationships (375)]\n\n## Maximum Dimensions for Carry-On Items\n\nMaximum dimensions for carry-on bags are critical for determining what items passengers can bring on board. These specifications help airlines manage cabin space effectively and ensure that all passengers can store their belongings safely. Clear communication of these dimensions is essential for compliance and to minimize delays during boarding. [Data: Relationships (376)]", "# Delayed Baggage and Baggage Reporting\n\nThe community focuses on the processes and entities involved in managing delayed baggage at airports, specifically highlighting the roles of the Delayed Baggage and Baggage Report. The Baggage Service Center is crucial in facilitating the reporting and retrieval of delayed items.\n\n## Role of Delayed Baggage in passenger experience\n\nDelayed baggage refers to personal belongings that have not arrived with the passenger upon landing, which can significantly affect the travel experience. Passengers must report delayed baggage immediately to ensure that the airline can assist in locating and returning the items. The timely reporting of delayed baggage is essential for minimizing inconvenience and ensuring customer satisfaction. [Data: Entities (115)]\n\n## Baggage Report issuance process\n\nA baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area. This report serves as an official document that initiates the process of locating and returning the delayed items to the passenger. The issuance of a baggage report is a critical step in the management of delayed baggage, as it formalizes the claim and allows the airline to track the status of the missing items. [Data: Entities (120)]\n\n## Baggage Service Center's responsibilities\n\nThe Baggage Service Center is responsible for managing reports and claims associated with delayed baggage. Passengers experiencing delayed baggage must report the issue to the Baggage Service Center to receive the necessary assistance. This center plays a vital role in coordinating the efforts to locate and return delayed items, making it a key entity in the community. [Data: Relationships (223)]\n\n## Connection between Delayed Baggage and Baggage Report\n\nThere is a direct relationship between Delayed Baggage and Baggage Report, as a baggage report is issued specifically for delayed baggage at the airport. This connection highlights the procedural aspect of handling delayed items, where the report serves as a formal mechanism for addressing the issue. Understanding this relationship is crucial for improving the efficiency of baggage handling processes. [Data: Relationships (249)]", "# Baggage Service Community\n\nThe Baggage Service Community is centered around the Baggage Service Center, which manages various aspects of baggage handling, including delayed and damaged baggage, forgotten items, and the claims process. The community's entities are interconnected, with the Baggage Service Center serving as the primary hub for assistance and coordination among various processes and departments.\n\n## Central role of the Baggage Service Center\n\nThe Baggage Service Center is the focal point of the community, responsible for managing issues related to baggage, including delays, damages, and forgotten items. This center plays a crucial role in ensuring that travelers receive timely assistance and support for their baggage-related concerns. The effectiveness of the Baggage Service Center directly impacts passenger experiences and the overall reputation of the airline or travel service involved. [Data: Entities (113), Relationships (223, 228, 227, 225, 226, +more)]\n\n## Importance of contact details for assistance\n\nThe contact details associated with the Baggage Service Center are essential for travelers seeking help with baggage issues. These details provide necessary information, such as phone numbers and chat options, enabling passengers to report problems efficiently. The availability and clarity of these contact details can significantly influence the speed and effectiveness of the response to baggage-related concerns. [Data: Entities (118), Relationships (233)]\n\n## Baggage claims process as a critical function\n\nThe baggage claims process is a vital function within the community, allowing passengers to report and seek compensation for lost or damaged baggage. The Baggage Service Center facilitates this process, ensuring that travelers can navigate the claims efficiently. A well-structured claims process is essential for maintaining customer trust and satisfaction, especially in the travel industry where baggage issues are common. [Data: Entities (123, 127), Relationships (228, 231)]\n\n## Handling of delayed baggage\n\nDelayed baggage is a frequent issue faced by travelers, and the Baggage Service Center is responsible for managing reports related to this problem. The center's ability to address delayed baggage effectively can mitigate passenger frustration and enhance their travel experience. This aspect of baggage handling is critical, as it directly affects the perception of the airline's reliability and customer service. [Data: Entities (122), Relationships (223, 227)]\n\n## Support for damaged baggage claims\n\nThe Baggage Service Center also plays a significant role in assisting travelers with claims related to damaged baggage. By effectively managing these claims, the center ensures that passengers receive the necessary support and compensation for their losses. This function is crucial for maintaining a positive relationship with customers and upholding the airline's reputation in the face of baggage mishaps. [Data: Entities (128), Relationships (225)]\n\n## Recovery of forgotten items\n\nThe Baggage Service Center is dedicated to helping passengers recover items that have been forgotten on board aircraft. This service is essential for enhancing customer satisfaction, as forgotten items can often hold significant personal value. The center's efficiency in managing these cases reflects its commitment to passenger care and can influence travelers' future choices regarding airlines. [Data: Entities (121), Relationships (226)]\n\n## Coordination with the Claims Department\n\nThe Baggage Service Center coordinates closely with the Claims Department to process claims related to baggage issues. This collaboration is vital for ensuring that claims are handled promptly and accurately, which is essential for maintaining passenger trust. The effectiveness of this coordination can significantly impact the overall efficiency of the baggage claims process. [Data: Entities (202), Relationships (232)]", "# EL AL Airline and Pet Transportation Community\n\nThe community centers around EL AL, an airline with specific policies and regulations regarding the transportation of pets and baggage. Key entities include the Cargo Division, Arrivals Hall, and various baggage policies that govern how pets and valuable items are handled during air travel. The relationships among these entities highlight the airline's commitment to compliance and customer service in pet transportation.\n\n## EL AL's comprehensive pet transportation policies\n\nEL AL has established detailed policies for transporting pets, including specific weight limits and conditions for cabin transport. Only certain pets, such as dogs, cats, and exotic birds, can be transported in the cabin, provided their combined weight with the cage does not exceed 9 kg. For larger animals, EL AL requires them to be transported as checked baggage or through the Cargo Division, which manages special requests and documentation for oversized or unaccompanied animals. This structured approach ensures that pet owners are well-informed about the requirements and limitations of traveling with their pets [Data: Entities (1, 12); Claims (3, 4, 5); Relationships (7, 10, 14)].\n\n## Role of the Cargo Division in pet transportation\n\nThe Cargo Division of EL AL plays a crucial role in managing the transport of pets, particularly those that are extra-large or flying unaccompanied. This division is responsible for ensuring that all necessary documentation is provided, including health certificates and transport authorizations. The Cargo Division's expertise in handling special requests for oversized items further emphasizes its importance in the safe and compliant transport of animals. This division's operations are vital for maintaining the airline's reputation and ensuring customer satisfaction [Data: Entities (12); Relationships (10, 114, 115, 116)].\n\n## Arrivals Hall as a key location for pet owners\n\nThe Arrivals Hall at Ben Gurion Airport serves as the designated area where pet owners can retrieve their animals after transportation as checked baggage. This facility is essential for ensuring a smooth transition for pet owners reuniting with their pets, highlighting the importance of customer service in the airline's operations. The effective management of this area can significantly impact customer satisfaction and the overall perception of EL AL's pet transportation services [Data: Entities (11); Relationships (19, 9)].\n\n## Baggage policies and their implications\n\nEL AL has specific baggage policies that dictate the rules for checked baggage, including weight limits and fees. Passengers are allowed a maximum of five pieces of checked baggage, with additional pieces requiring prior arrangements with the Cargo Division. The airline's policies also state that it is not responsible for valuable items or liquids confiscated at the airport, which can lead to customer dissatisfaction if not properly communicated. These policies are crucial for managing expectations and ensuring compliance with regulations [Data: Entities (1, 197); Claims (47, 43); Relationships (24, 44)].\n\n## Legal compliance and regulatory oversight\n\nEL AL must comply with various regulations regarding the transport of pets, including those set by the Ministry of Agriculture and the CDC for transporting dogs to the US. This compliance is essential for maintaining the airline's operational integrity and avoiding legal issues. The relationship with regulatory bodies ensures that EL AL adheres to safety and security regulations, which is critical for the safe transport of animals and the protection of passengers [Data: Entities (1); Relationships (0, 16)].", "# EL AL Airline and Dangerous Dog Regulations\n\nThis community focuses on the regulations surrounding the transportation of dangerous dogs by EL AL airline, highlighting the legal framework and the airline's compliance with these regulations. The relationship between dangerous dogs and luggage compartments is also significant in understanding the transportation policies.\n\n## EL AL's strict policy on dangerous dogs\n\nEL AL has implemented a strict policy regarding the transportation of dangerous dogs, which prohibits the transport of such animals as defined by Israeli law. This policy reflects the airline's commitment to safety and compliance with legal regulations. By ensuring that dangerous dogs are not allowed on their flights, EL AL mitigates potential risks associated with these animals, which could pose a threat to passengers and crew. The airline's adherence to the Israeli Law for the Regulation of Dog Supervision is crucial in maintaining safety standards and avoiding legal repercussions. [Data: Entities (3); Relationships (6)]\n\n## Legal framework governing dangerous dogs\n\nThe classification of dangerous dogs is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported. This legal framework is essential for understanding the restrictions placed on the transportation of certain dog breeds, particularly in the context of air travel. The law aims to protect public safety by preventing potentially aggressive dogs from being transported in environments where they could cause harm. This legal backing reinforces the policies adopted by airlines like EL AL, ensuring that they operate within the bounds of the law. [Data: Entities (3)]\n\n## Restrictions on luggage compartments\n\nDangerous dogs are explicitly prohibited from being transported in the luggage compartment during flights. This restriction is significant as it highlights the airline's efforts to ensure that these animals are not placed in confined spaces where they could become agitated or pose a risk to other animals and personnel. The policy reflects a broader commitment to animal welfare and safety, ensuring that dangerous dogs are not subjected to stressful conditions that could lead to incidents during transport. [Data: Entities (21); Relationships (68)]\n\n## Impact of dangerous dog regulations on air travel\n\nThe regulations surrounding dangerous dogs have a considerable impact on air travel, particularly for pet owners and airlines. These regulations necessitate clear communication between airlines and passengers regarding what constitutes a dangerous dog and the associated transportation policies. Failure to comply with these regulations could result in legal issues for airlines and safety risks for passengers. Therefore, understanding these regulations is crucial for both airlines and travelers to ensure compliance and safety during air travel. [Data: Entities (3, 21); Relationships (6, 68)]", "# Hazardous Materials and EL AL Travel Regulations\n\nThis community focuses on the regulations surrounding the transportation of hazardous materials, particularly dry ice, on EL AL flights. The key entities include hazardous materials, the Declaration Form required for travel, and dry ice, which is classified as a hazardous material.\n\n## Regulatory requirements for hazardous materials\n\nEL AL has specific regulations regarding the transportation of hazardous materials, which necessitate advance notice and the completion of a Declaration Form. This requirement is crucial for ensuring safety during air travel, as hazardous materials can pose significant risks if not handled properly. The relationship between EL AL and hazardous materials highlights the airline's commitment to safety and compliance with aviation regulations. [Data: Entities (421), Relationships (49)]\n\n## Importance of the Declaration Form\n\nThe Declaration Form is a critical document required for traveling with hazardous materials on EL AL flights. This form serves as a formal declaration of the materials being transported, ensuring that the airline is aware of any potential hazards. The relationship between hazardous materials and the Declaration Form underscores the importance of proper documentation in mitigating risks associated with air travel. [Data: Entities (422), Relationships (450)]\n\n## Classification of dry ice as a hazardous material\n\nDry ice is classified as a hazardous material that requires special handling during air travel. This classification is significant because it necessitates adherence to specific regulations to prevent accidents or incidents related to its transportation. The relationship between dry ice and hazardous materials emphasizes the need for awareness and compliance when transporting such items. [Data: Entities (423), Relationships (451)]\n\n## Potential risks of mishandling hazardous materials\n\nThe mishandling of hazardous materials, including dry ice, can lead to serious safety concerns during air travel. These risks include potential leaks, chemical reactions, or other hazardous situations that could endanger passengers and crew. The community's focus on regulations and documentation is essential for minimizing these risks and ensuring safe travel practices. [Data: Entities (421, 423), Relationships (49, 451)]", "# Pet Transportation in EL AL Cabin\n\nThe community focuses on the transportation of pets in the cabin of EL AL flights, governed by specific weight restrictions. The key entities include the cabin itself and the weight limit of 9 kilograms for pets, which are interrelated through the airline's policies.\n\n## EL AL's pet transportation policy\n\nEL AL allows pets to be transported in the cabin under specific conditions, which is crucial for pet owners planning to travel. This policy indicates that the airline recognizes the importance of accommodating pets, which can enhance customer satisfaction and loyalty. However, the specific conditions that must be met, such as the weight limit, can also create challenges for pet owners who may not be aware of these restrictions. [Data: Relationships (13)]\n\n## Weight limit for pets in the cabin\n\nThe weight limit of 9 kilograms for pets transported in the cabin is a significant factor that affects how pets can be transported. This limit includes both the pet and its cage, which means that owners must carefully consider the total weight when preparing for travel. The restriction does not apply to service dogs, which highlights the airline's commitment to accommodating individuals with disabilities. This distinction is important for understanding the broader implications of the weight policy. [Data: Entities (7), Relationships (71, 111)]\n\n## Impact on pet owners\n\nThe policies regarding pet transportation in the cabin can significantly impact pet owners' travel plans. Owners must ensure that their pets meet the weight requirements, which may limit their choices of pets or necessitate additional arrangements for travel. This can lead to frustration or confusion among travelers who may not be fully informed about the airline's policies. [Data: Relationships (71)]\n\n## Exemptions for service dogs\n\nThe exemption of service dogs from the 9-kilogram weight limit is a critical aspect of EL AL's pet transportation policy. This provision ensures that individuals who rely on service animals can travel without the same restrictions as other pet owners. It reflects a broader commitment to accessibility and support for individuals with disabilities, which can enhance the airline's reputation among these travelers. [Data: Entities (7)]", "# Pet Transportation Regulations and Entities\n\nThe community focuses on the transportation of pets, particularly dogs and exotic birds, highlighting the regulations and requirements set by various entities, including airlines and the United States government. Key relationships among these entities illustrate the complexities involved in pet travel.\n\n## Regulatory framework for pet transportation\n\nThe transportation of pets, especially dogs, is governed by specific regulations established by the United States and various airlines. These regulations are crucial for ensuring the safe and compliant travel of pets. For instance, the CDC outlines specific requirements for transporting dogs to the US, which must be adhered to by pet owners and airlines alike. Non-compliance with these regulations can lead to significant issues, including fines or the denial of entry for pets. [Data: Entities (52), Relationships (181)]\n\n## Role of EL AL in pet transportation\n\nEL AL has established specific policies for transporting pets, which include weight limits and documentation requirements. The airline's policies are designed to ensure that pets are transported safely and in compliance with regulations. This includes offering services for transporting pets as cargo and requiring specific documentation at check-in. The relationship between EL AL and the broader pet transportation community highlights the importance of airline policies in facilitating pet travel. [Data: Entities (24), Relationships (14)]\n\n## Special regulations for dogs\n\nDogs are classified as pets that require special regulations for transportation, which are more stringent compared to other types of pets. The relationship between dogs and the regulations set forth by the US government indicates the heightened scrutiny and requirements for their travel. This includes specific documentation and adherence to weight limits, which are critical for ensuring compliance and the safety of the animals during transit. [Data: Entities (47), Relationships (134, 181)]\n\n## Importance of documents and authorizations\n\nDocuments and authorizations are essential for transporting pets, as they must be presented at check-in to ensure compliance with regulations. This requirement underscores the administrative burden placed on pet owners and the importance of proper documentation in facilitating smooth travel. The relationship between documents and the broader pet transportation framework highlights the critical role of paperwork in ensuring that pets can travel without issues. [Data: Entities (50), Relationships (135)]\n\n## Exotic birds as a unique category\n\nExotic birds are classified as pets that can be transported under specific conditions, which differ from those for dogs. This distinction is important as it reflects the varying regulations that apply to different types of pets. The relationship between exotic birds and the general category of pets indicates the need for tailored regulations that address the unique needs and risks associated with transporting these animals. [Data: Entities (17), Relationships (129)]\n\n## Airport facilities and additional charges\n\nAirport facilities may impose additional charges for inspecting and releasing pets, particularly dogs. This aspect of pet transportation adds another layer of complexity and potential cost for pet owners. Understanding the financial implications of these charges is crucial for pet owners planning to travel with their animals, as it can significantly affect the overall cost of travel. [Data: Entities (49), Relationships (182)]", "# Battery-Powered Mobility Aids and IATA Regulations\n\nThis community focuses on battery-powered mobility aids and their compliance with IATA regulations for air travel. Key entities include battery-powered mobility aids, battery-powered devices, IATA regulations, and flight-approved batteries, all interconnected through specific safety and compliance requirements for air travel.\n\n## Compliance with IATA regulations is essential\n\nBattery-powered mobility aids must comply with IATA regulations to ensure safe transport on flights. These regulations provide guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel. Non-compliance could lead to safety hazards and travel disruptions, affecting many individuals who rely on these aids for mobility. [Data: Entities (410); Relationships (444)]\n\n## EL AL's specific regulations for battery-powered devices\n\nEL AL has established specific regulations for traveling with battery-powered devices, ensuring they are safe for transport on their flights. This highlights the airline's commitment to safety and compliance, which is crucial for passengers who depend on these devices. The relationship between EL AL and battery-powered devices emphasizes the importance of adhering to airline-specific guidelines to avoid potential issues during travel. [Data: Entities (409); Relationships (47)]\n\n## Battery-powered mobility aids require flight-approved batteries\n\nBattery-powered mobility aids must utilize flight-approved batteries to be transported on EL AL flights. This requirement underscores the importance of using compliant equipment to ensure safety during air travel. The relationship between battery-powered mobility aids and flight-approved batteries illustrates the critical nature of adhering to safety standards, which can significantly impact the travel experience for users of these aids. [Data: Entities (419, 420); Relationships (449)]\n\n## Interconnectedness of battery-powered devices and IATA regulations\n\nBattery-powered devices are required to comply with IATA regulations for safe transport on flights. This interconnectedness highlights the broader implications of safety regulations that govern various types of battery-powered equipment, ensuring that all devices meet the necessary safety standards to prevent accidents or malfunctions during air travel. [Data: Entities (409); Relationships (443)]\n\n## Potential impact on travelers with mobility needs\n\nThe regulations surrounding battery-powered mobility aids and devices have a significant impact on travelers with mobility needs. Ensuring compliance with IATA regulations and airline-specific guidelines is crucial for these individuals to travel safely and without disruption. The community's focus on these regulations reflects the importance of accessibility and safety in air travel for those who rely on mobility aids. [Data: Entities (419, 410); Relationships (444, 443)]", "# EL AL and Fragile Item Transport\n\nThe community focuses on the transport of fragile items, highlighting the relationship between EL AL, fragile items, and special travel insurance. EL AL does not assume responsibility for fragile items, which necessitates the recommendation of special travel insurance for passengers.\n\n## EL AL's liability regarding fragile items\n\nEL AL explicitly states that it does not bear responsibility for fragile items transported by the airline. This lack of liability places the onus on passengers to ensure that their fragile items are adequately protected during transit. The airline's policy could lead to significant financial losses for passengers if their fragile items are damaged, emphasizing the importance of understanding this liability when shipping delicate goods. [Data: Entities (196); Relationships (25)]\n\n## Importance of special travel insurance\n\nSpecial travel insurance is recommended for passengers transporting fragile or valuable items. This insurance serves as a safeguard against potential damages that could occur during transport, providing financial protection for the insured items. The relationship between fragile items and special travel insurance highlights the necessity for passengers to consider additional coverage when traveling with delicate goods, as the standard airline policies may not offer sufficient protection. [Data: Entities (198); Relationships (338)]\n\n## Connection between fragile and valuable items\n\nThere is a notable connection between fragile items and valuable items in the context of special travel insurance. Both categories of items are susceptible to damage during transport, and the recommendation for special insurance applies to both. This relationship underscores the broader implications for passengers who may be transporting items that are not only fragile but also hold significant monetary value, necessitating careful consideration of their insurance options. [Data: Relationships (338, 339)]"], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:33,170 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE759300>, 'json_data': {'input': ["# Mobility Aid and Flight Aid Services\n\nThe community focuses on the provision of mobility aid services, particularly in the context of air travel. Key entities include EL AL, which provides services for passengers with mobility aids, and the broader category of flight aid that encompasses assistance for passengers with mobility challenges.\n\n## EL AL's commitment to mobility aid services\n\nEL AL plays a crucial role in this community by providing specialized services for passengers traveling with mobility aids. This commitment is vital for ensuring that individuals with mobility challenges can travel safely and comfortably. The relationship between EL AL and mobility aid services highlights the airline's dedication to inclusivity and accessibility in air travel. [Data: Entities (426); Relationships (50)]\n\n## Integration of mobility aids in flight aid services\n\nThe concept of flight aid encompasses various forms of assistance provided to passengers with mobility challenges, including the transport of mobility aids. This integration is essential for ensuring that passengers can travel without facing barriers related to their mobility needs. The relationship between flight aid and mobility aid services underscores the importance of comprehensive support for travelers with disabilities. [Data: Entities (424, 426); Relationships (452)]\n\n## Importance of accessibility in air travel\n\nAccessibility in air travel is a significant concern for many passengers, particularly those with mobility challenges. The services provided by EL AL and the broader flight aid category are critical in addressing these concerns, ensuring that all passengers have equal access to air travel. This focus on accessibility can enhance the reputation of airlines and improve customer satisfaction among travelers with disabilities. [Data: Entities (424, 426); Relationships (50, 452)]\n\n## Potential challenges in mobility aid services\n\nWhile the provision of mobility aid services is essential, there can be challenges in ensuring that these services are consistently available and effective. Issues such as staff training, equipment availability, and communication with passengers can impact the quality of service provided. Addressing these challenges is crucial for maintaining high standards of care for passengers with mobility needs. [Data: Entities (426); Relationships (50)]", "# Checked Baggage and EL AL Airlines\n\nThe community focuses on the policies and regulations surrounding checked baggage, particularly in relation to EL AL Airlines. Key entities include various types of checked baggage, associated fees, and specific guidelines for transporting items such as pets and sporting equipment. The relationships highlight how these entities interact within the context of air travel.\n\n## EL AL's comprehensive baggage policies\n\nEL AL Airlines has established detailed guidelines for checked baggage, which include specific provisions for transporting animals and sporting equipment. These policies are crucial for ensuring compliance with safety regulations and customer satisfaction. The airline's baggage policy is comparable to that of Sundor, indicating a competitive landscape in terms of baggage handling and customer service. This relationship emphasizes the importance of clear communication regarding baggage allowances and restrictions to avoid misunderstandings and potential disputes. [Data: Entities (5, 194); Relationships (11, 109)]\n\n## Checked baggage fees and allowances\n\nThe fees associated with checked baggage, such as the $90 charge for additional pieces, play a significant role in the overall travel experience. Passengers must be aware of these fees to avoid unexpected costs at the airport. The relationship between checked baggage and baggage allowance is critical, as it defines the limits and requirements for travelers. Understanding these fees and allowances can help passengers plan their travel more effectively and avoid excess baggage charges. [Data: Entities (336, 358); Relationships (104, 90)]\n\n## Transporting pets as checked baggage\n\nPets can be transported as checked baggage under specific conditions, which is an important consideration for travelers with animals. The guidelines for pet transportation include size and weight restrictions, ensuring the safety and comfort of the animals during travel. This aspect of checked baggage policy is vital for maintaining customer trust and satisfaction, as pet owners often seek airlines that provide clear and humane transportation options for their pets. [Data: Entities (5, 69); Relationships (69)]\n\n## Special provisions for sporting equipment\n\nSporting equipment, such as snowboard and ski gear, can be included in checked baggage under certain conditions. This flexibility is essential for travelers who engage in sports and outdoor activities, as it allows them to bring necessary equipment without incurring excessive fees. The relationship between checked baggage and sporting equipment highlights the need for airlines to accommodate diverse passenger needs while maintaining operational efficiency. [Data: Entities (186, 91); Relationships (88, 92)]\n\n## Excess baggage and its implications\n\nExcess baggage refers to any checked baggage that exceeds the allowed limits, which incurs additional fees. This aspect of baggage policy can significantly impact the travel experience, as passengers may face unexpected costs if they are not aware of the limitations. The relationship between checked baggage and excess baggage charges underscores the importance of clear communication and adherence to regulations to minimize customer dissatisfaction. [Data: Entities (349); Relationships (101)]", '# Excess Baggage Charges and Currency Implications\n\nThis community focuses on the dynamics surrounding excess baggage charges, particularly how these charges are influenced by the type of baggage, the applicable fees, and the currencies used for payment. The entities are interconnected through relationships that define the conditions under which excess baggage fees apply and the currencies accepted for these payments.\n\n## Excess baggage charges are a significant financial consideration for travelers\n\nExcess baggage charges are fees imposed on passengers when their luggage exceeds the permitted size and weight dimensions. This can lead to unexpected costs for travelers, especially if they are unaware of the limits. The financial burden can vary significantly based on the type of baggage and the specific airline policies. Understanding these charges is crucial for travelers to avoid surprises at the airport. [Data: Entities (183); Relationships (90, 305)]\n\n## Specific fees for transporting sporting equipment\n\nThe fee of 70 USD for transporting sports equipment one way to Europe, the Middle East, and Morocco highlights the additional costs associated with specific types of baggage. This fee is particularly relevant for travelers who engage in sports and may not be aware of the extra charges that apply to their equipment. The relationship between sporting equipment and excess baggage charges indicates that travelers should plan accordingly to avoid incurring these fees. [Data: Entities (180); Relationships (302)]\n\n## US Dollars as the standard currency for baggage fees\n\nUS Dollars are the primary currency used for displaying prices related to excess baggage fees. This standardization simplifies the pricing structure for international travelers, but it also means that travelers must be aware of potential currency conversion issues when paying at different airports. The reliance on US Dollars can create confusion for travelers who may need to pay in local currency at certain locations. [Data: Entities (182); Relationships (329, 330)]\n\n## Local currency requirements at specific airports\n\nAt some airports, payment for excess baggage charges is only accepted in local currency, which can complicate the payment process for travelers. This requirement emphasizes the importance of being informed about the payment methods accepted at the airport of departure or arrival. Travelers may need to exchange currency or use local payment methods, which can lead to additional costs or delays. [Data: Entities (185); Relationships (331, 332)]\n\n## Interconnectedness of baggage fees and payment methods\n\nThe relationships between excess baggage charges, specific fees, and the currencies used for payment illustrate a complex web of financial implications for travelers. Understanding how these elements interact is essential for effective travel planning. Travelers must be aware of the potential for additional charges based on baggage type and the currency requirements at their destination. [Data: Relationships (90, 305, 331)]', "# Bicycle Transport Regulations and Approval Process\n\nThis community focuses on the regulations and processes surrounding the transport of bicycles as checked baggage, highlighting the roles of the EL AL call center, packing regulations, and exceptional cases for transport approval.\n\n## Bicycle transport as checked baggage\n\nBicycles can be transported instead of regular checked baggage if they meet specific size and weight dimensions. This regulation is crucial for travelers who wish to bring their bicycles along, ensuring that they comply with airline policies. The ability to transport bicycles can enhance travel experiences for cycling enthusiasts, but it also requires adherence to strict guidelines to prevent issues during travel. [Data: Entities (187); Relationships (93)]\n\n## Role of the EL AL call center\n\nThe EL AL call center is responsible for pre-approving the transport of bicycles and other special items. This entity plays a critical role in the approval process, ensuring that all necessary guidelines are followed before a bicycle can be transported. The call center's involvement is essential for managing requests and providing travelers with the information they need to comply with transport regulations. [Data: Entities (189); Relationships (333)]\n\n## Importance of packing regulations\n\nSpecific guidelines must be followed when packing bicycles for transport to prevent damage and ensure safety. These packing regulations are vital for protecting bicycles during transit, as improper packing can lead to damage and potential liability issues for the airline. Travelers must be aware of these regulations to ensure their bicycles arrive safely at their destination. [Data: Entities (191); Relationships (334)]\n\n## Prohibition of motorized bicycles\n\nMotorized bicycles are not allowed to be transported as checked baggage. This regulation is significant as it helps maintain safety and compliance with airline policies. Travelers need to be informed about this prohibition to avoid complications during their travel plans. Understanding this rule is essential for those who may consider bringing a motorized bicycle along on their journey. [Data: Entities (192); Relationships (335)]\n\n## Exceptional cases for transport approval\n\nTransport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division. This provision offers flexibility for unique situations where standard regulations may not apply. However, it also requires travelers to navigate additional approval processes, which can complicate travel plans. Awareness of these exceptional cases is important for travelers who may have specific needs regarding bicycle transport. [Data: Entities (193); Relationships (336)]", "# Ski Equipment and Transport Policies\n\nThe community focuses on the relationship between ski equipment, transport policies, and fare classes. Key entities include ski and snowboarding equipment, complimentary transport policies, and fare classes that affect the transport of these items.\n\n## Ski Equipment's Transport Conditions\n\nSki equipment is subject to specific transport conditions, which can affect travelers' experiences. The relationship between ski equipment and checked baggage indicates that while it can be included in checked baggage, there are conditions that must be met. This can lead to confusion among travelers who may not be aware of these requirements, potentially resulting in additional fees or denied boarding if conditions are not met. [Data: Entities (179), Relationships (91)]\n\n## Complimentary Transport Policy\n\nThe complimentary transport policy allows for certain sports equipment, including ski equipment, to be transported without additional fees under specified conditions. This policy is crucial for travelers who wish to avoid extra charges, making it an important aspect of the community. However, the effectiveness of this policy relies on clear communication from airlines to ensure that travelers understand the conditions under which complimentary transport applies. [Data: Entities (177), Relationships (325)]\n\n## Impact of Lite Fare Ticket on Equipment Transport\n\nThe Lite Fare Ticket class does not allow for additional baggage such as ski and snowboard equipment without extra charges. This limitation can significantly impact travelers who are skiing or snowboarding, as they may need to pay additional fees or choose a different fare class. Understanding this relationship is essential for travelers to make informed decisions about their travel plans and budget accordingly. [Data: Entities (188), Relationships (326)]\n\n## Snowboarding Equipment and Transport Policies\n\nSimilar to ski equipment, snowboarding equipment may also qualify for complimentary transport under specific conditions. This relationship highlights the importance of understanding transport policies for both skiing and snowboarding enthusiasts. Travelers should be aware of the conditions that apply to both types of equipment to avoid unexpected fees and ensure a smooth travel experience. [Data: Entities (176), Relationships (324)]", "# Sundor Airline Baggage Policies\n\nThe community centers around Sundor, an airline with specific baggage policies, including guidelines for overweight and oversized baggage. Key entities include dimensions for baggage, call center operations for approvals, and the classification of sports equipment as overweight baggage, all of which are interconnected in managing passenger baggage effectively.\n\n## Sundor's specific baggage policies\n\nSundor has established specific policies regarding checked baggage allowances, which are crucial for managing passenger expectations and operational efficiency. These policies dictate the maximum dimensions and weight limits for baggage, ensuring compliance with airline regulations. The clarity and enforcement of these policies are essential to prevent disputes at check-in and during travel. Sundor's guidelines for overweight baggage, which require special handling and may incur additional fees, are particularly important for passengers traveling with sports equipment. [Data: Entities (329), Relationships (109, 322, 404)]\n\n## The role of dimensions in baggage classification\n\nDimensions play a critical role in determining whether baggage is classified as standard, oversized, or overweight. For instance, the maximum dimension limit for transporting sports equipment is set at 277 cm, which is essential for compliance with airline policies. This relationship between dimensions and baggage classification helps streamline the check-in process and ensures that passengers are aware of the requirements before arriving at the airport. Misunderstandings regarding these dimensions can lead to delays and additional charges, impacting customer satisfaction. [Data: Entities (277 CM, DIMENSIONS), Relationships (96, 319, 315)]\n\n## Overweight baggage and its implications\n\nOverweight baggage is defined as luggage that exceeds the weight limits established by airlines, necessitating special approval for transport. Sundor's specific guidelines for handling overweight baggage are crucial for maintaining operational efficiency and customer satisfaction. Passengers must be informed about the potential for additional fees and the need for call center approval to transport such baggage. This process is vital for ensuring compliance with airline policies and preventing disputes at check-in. [Data: Entities (OVERWEIGHT BAGGAGE), Relationships (304, 320, 322)]\n\n## The importance of call center operations\n\nThe call center serves as a critical point of contact for passengers seeking approval for transporting overweight baggage. This operational aspect is essential for ensuring compliance with Sundor's baggage policies and providing timely assistance to travelers. The effectiveness of the call center can significantly impact customer experience, especially for those with special baggage needs. Ensuring that the call center is well-staffed and knowledgeable about baggage policies is crucial for minimizing delays and enhancing passenger satisfaction. [Data: Entities (CALL CENTER), Relationships (318, 320)]\n\n## Interrelationship between overweight and oversized baggage\n\nOverweight baggage and oversized baggage are closely related categories that require special handling due to their size and weight. Both types of baggage may incur additional fees, and understanding the distinctions between them is vital for passengers. Sundor's policies must clearly communicate these differences to avoid confusion and ensure that travelers are prepared for potential charges. This relationship highlights the importance of effective baggage management systems in maintaining operational efficiency and customer satisfaction. [Data: Entities (OVERSIZED BAGGAGE), Relationships (321, 402)]", "# Air Travel Classes and Sporting Equipment Transport\n\nThis community encompasses various travel classes offered by airlines, specifically focusing on the transport of sporting equipment. The entities are interconnected through their baggage policies and weight restrictions, which are crucial for passengers traveling with sports gear. The relationships highlight the specific allowances and fees associated with each travel class, impacting travelers' experiences.\n\n## Business Class offers the most accommodating baggage policies\n\nBusiness Class provides significant advantages for passengers transporting sporting equipment, allowing for two checked bags each weighing up to 32 kg. This generous allowance is particularly beneficial for athletes and sports enthusiasts who often travel with heavy or oversized gear. The relationship between Business Class and sporting equipment is crucial, as it ensures that travelers can manage their luggage needs effectively without incurring excessive fees. This is supported by the relationship indicating that EL AL allows business class passengers to check up to two pieces of baggage weighing up to 32 kg each [Data: Relationships (37)].\n\n## Premium Class has enhanced but limited baggage allowances\n\nPremium Class offers a balance between cost and service, allowing passengers to check two pieces of baggage weighing up to 23 kg each. This class also permits the transport of sporting equipment under specific conditions, making it a viable option for travelers who need to bring sports gear without the higher costs associated with Business Class. The relationship between Premium Class and sporting equipment highlights the importance of understanding the specific weight and size restrictions that apply, which can affect the overall travel experience [Data: Relationships (36, 295)].\n\n## Economy Class provides basic options for sporting equipment transport\n\nEconomy Class is designed for budget-conscious travelers, allowing for the transport of sporting equipment under certain conditions. Passengers can check up to two pieces of baggage weighing a maximum of 30 kg each, but they must adhere to specific size and weight restrictions. This class is particularly relevant for travelers who may not require extensive baggage allowances but still wish to bring their sports gear. The relationship between Economy Class and sporting equipment emphasizes the need for travelers to be aware of the limitations imposed by this class [Data: Relationships (306, 295)].\n\n## Weight restrictions are critical for all travel classes\n\nWeight is a significant factor in the transportation of sporting equipment across all travel classes. Each class has specific weight limits that determine whether items can be transported as checked baggage or if they incur additional fees. For instance, sporting equipment exceeding the weight limits can be classified as overweight baggage, leading to extra charges. Understanding these weight restrictions is essential for travelers to avoid unexpected costs and ensure compliance with airline policies [Data: Relationships (143, 304)].\n\n## The EL AL Cargo Division offers specialized services for excess baggage\n\nThe EL AL Cargo Division caters to passengers needing to transport excess baggage, particularly those traveling with more than five pieces of checked baggage. This division is crucial for athletes and sports enthusiasts who may require additional services for oversized or special equipment. The relationship between the Cargo Division and sporting equipment indicates that it provides tailored solutions for transporting gear that exceeds standard baggage allowances, ensuring that passengers can manage their luggage needs effectively [Data: Relationships (108, 299)].", '# Air Travel Baggage Policies Community\n\nThis community encompasses various entities related to air travel baggage policies, including carry-on baggage, checked luggage, and associated airline regulations. The relationships among these entities highlight the complexities of baggage management for passengers, particularly in relation to different classes of service and specific airline policies.\n\n## Carry-on baggage as a central concept\n\nCarry-on baggage is a crucial aspect of air travel, representing the personal items passengers can bring into the cabin. This concept is central to the community, as it connects various entities, including airlines, baggage types, and passenger classes. The regulations surrounding carry-on baggage can significantly affect the travel experience, as they dictate what items can be brought on board and the associated limitations. For instance, different airlines like EL AL and Sun Dor have specific policies regarding carry-on baggage, which can lead to confusion among passengers if not clearly communicated [Data: Entities (267, 269); Relationships (29, 368)].\n\n## Diverse baggage policies across classes\n\nThe community illustrates how baggage policies vary across different classes of service, such as Economy, Business, and Premium Class. Each class has specific allowances for carry-on baggage, which can lead to disparities in passenger experiences. For example, Economy Class passengers have defined carry-on allowances that differ from those in Business or Premium Class, potentially causing dissatisfaction among travelers who may not be aware of these distinctions. This complexity necessitates clear communication from airlines to ensure passengers understand their rights and limitations regarding baggage [Data: Relationships (308, 314, 312)].\n\n## Importance of weight and dimensions\n\nWeight and dimensions are critical factors in determining the eligibility of carry-on baggage. Airlines enforce strict regulations regarding the maximum weight and size of carry-on items to ensure safety and compliance with cabin space limitations. Passengers must be aware of these restrictions to avoid issues at boarding, which can lead to delays or additional fees. The relationship between carry-on baggage and its maximum weight and dimensions highlights the need for travelers to be informed about these policies before their flights [Data: Relationships (146, 316, 377, 376)].\n\n## Role of booking management in baggage policies\n\nBooking management systems play a vital role in informing passengers about their carry-on baggage allowances and policies. These systems allow travelers to manage their bookings and check specific baggage regulations, which is essential for a smooth travel experience. By providing clear information on baggage policies during the booking process, airlines can help reduce confusion and enhance customer satisfaction. This relationship emphasizes the importance of integrating baggage policy information into booking management tools [Data: Relationships (373, 272)].\n\n## Checked luggage as an alternative\n\nChecked luggage serves as an alternative to carry-on baggage, catering to passengers who need to transport larger items. Understanding the differences between carry-on and checked luggage is essential for travelers, as each type has its own set of regulations and limitations. The relationship between carry-on baggage and checked luggage highlights the need for passengers to make informed decisions about their luggage options based on their travel needs and the specific policies of the airline they are flying with [Data: Relationships (370, 378)].', "# El Al Carry-On Bag Regulations\n\nThe community focuses on the regulations and specifications surrounding carry-on bags for El Al flights, detailing the dimensions, weight limits, and special considerations for oversized items. The entities are interconnected through specific policies and guidelines that govern the transport of luggage on El Al flights.\n\n## El Al's carry-on bag policies\n\nEl Al has established specific policies regarding the dimensions and weight limits for carry-on bags, which are crucial for ensuring compliance and passenger satisfaction. The maximum dimensions for a carry-on bag are set at 115 cm in total, with specific limits for length (56 cm), width (45 cm), and depth (25 cm). Additionally, the weight limit for a single carry-on bag is 16 kg, while the combined weight for multiple bags is capped at 20 kg. These regulations are designed to optimize cabin space and ensure safety during flights [Data: Relationships (31, 382, 384, 390, 397, +more)].\n\n## Oversized items require special arrangements\n\nOversized items, such as musical instruments, necessitate prior coordination with El Al and may require an extra seat for transport. Passengers are advised to contact the service center to obtain approval for carrying oversized items, which highlights the importance of communication between the airline and its customers. This process is essential to avoid last-minute complications at the airport and ensure a smooth travel experience [Data: Entities (300, 302); Relationships (398, 400)].\n\n## Emergency exit row storage policies\n\nPassengers seated in the emergency exit row have specific privileges regarding the storage of carry-on bags in overhead compartments. This policy allows for more efficient use of cabin space, but it also requires passengers to be aware of their responsibilities in case of an emergency. The relationship between the carry-on bag regulations and the emergency exit row underscores the need for passengers to understand the implications of their seating choices [Data: Relationships (399)].\n\n## Weight and dimension limits impact passenger experience\n\nThe strict weight and dimension limits for carry-on bags can significantly impact the passenger experience, particularly for those traveling with multiple items or larger luggage. Passengers must plan their packing carefully to avoid additional fees or the inconvenience of having to check bags at the last minute. This aspect of the regulations can lead to frustration and dissatisfaction among travelers if not adequately communicated [Data: Relationships (31, 382, 384)].\n\n## Coordination with the service center is essential\n\nEl Al's service center plays a critical role in managing the transport of unusual or oversized items. Passengers are required to coordinate with this center to ensure that their items can be accommodated on their flights. This requirement emphasizes the importance of proactive communication and planning for travelers who may have special luggage needs [Data: Entities (302); Relationships (400)].", "# Air Travel Baggage Regulations\n\nThe community focuses on the regulations surrounding personal bags and carry-on items for air travel, detailing the relationships between different types of bags and their specifications, particularly in the context of El Al airline policies.\n\n## El Al's personal bag policy\n\nEl Al allows passengers to bring a personal bag on board, subject to specific size restrictions. This policy is crucial for passengers to understand as it directly affects their travel experience. The relationship between El Al and the personal bag highlights the airline's commitment to maintaining order and compliance with baggage regulations. Passengers must adhere to these guidelines to avoid complications during boarding. [Data: Relationships (30)]\n\n## Definition and importance of personal bags\n\nA personal bag is defined as a type of bag that passengers can bring on board, including backpacks and laptop bags. Understanding what constitutes a personal bag is essential for travelers, as it helps them pack appropriately and avoid excess baggage fees. The classification of personal bags is significant in the context of air travel, as it allows for a more organized boarding process and ensures that passengers are aware of their allowances. [Data: Entities (292, 291); Relationships (391)]\n\n## Size restrictions for personal bags\n\nThe maximum dimensions for a personal bag are specified as 18 cm in height, 38 cm in width, and 30 cm in depth. These restrictions are critical for passengers to know, as exceeding these dimensions could result in the bag being denied at the gate. The relationship between the personal bag and its size specifications emphasizes the importance of compliance with airline policies to ensure a smooth travel experience. [Data: Entities (297); Relationships (393)]\n\n## Relationship between bags and duty-free items\n\nDuty-free items are products that can be purchased at the airport and carried on board without counting towards the baggage allowance. This relationship is important for travelers who wish to take advantage of duty-free shopping while ensuring they remain within their baggage limits. Understanding how duty-free items fit into the overall baggage policy can help passengers make informed decisions about their purchases and packing. [Data: Entities (299); Relationships (392)]\n\n## Classification of carry-on bags\n\nA carry-on bag is a type of bag that must meet specific weight and dimension limits. This classification is essential for passengers to understand, as it differentiates between various types of bags they can bring on board. The relationship between carry-on bags and other types of bags, such as personal bags, helps clarify the rules and ensures that passengers are aware of their allowances. [Data: Relationships (390)]", "# Airline Baggage Weight Regulations\n\nThis community focuses on the regulations surrounding the maximum allowable weights for carry-on bags and personal items as defined by airline policies. The entities are interconnected through their definitions and relationships regarding weight limits for baggage.\n\n## Maximum Weight as a central concept\n\nThe term 'Maximum Weight' is a critical entity in this community, representing the heaviest allowable weight for carry-on bags and personal items when boarding. This concept is foundational for understanding airline baggage policies and is referenced in multiple relationships that define specific weight limits for different types of bags. The implications of this entity are significant, as exceeding the maximum weight can lead to additional fees or denied boarding, impacting passenger experience and airline operations. [Data: Entities (289); Relationships (377, 381, 383)]\n\n## Specific weight limits for carry-on bags\n\nThe entities '16 KG' and '20 KG' specify the maximum weight limits for individual carry-on bags and the total weight for all bags, respectively. The '16 KG' limit is particularly important as it is the standard for a single carry-on bag, while '20 KG' encompasses the total weight allowed for all carry-on items. These weight limits are crucial for passengers to understand to avoid penalties and ensure compliance with airline policies. The relationships between these entities and the 'Maximum Weight' highlight their importance in the overall baggage regulation framework. [Data: Entities (279, 280); Relationships (382, 384)]\n\n## Bags as a category of items\n\nThe entity 'BAGS' encompasses all items used to carry personal belongings during travel, which are subject to specific weight limits imposed by airlines. This entity serves as a broader category that includes both personal items and carry-on bags, linking it to the weight regulations. Understanding this category is essential for passengers as it informs them about what constitutes carry-on baggage and the associated weight restrictions. The relationships connecting 'BAGS' to both '16 KG' and '20 KG' further emphasize the importance of these weight limits in the context of airline travel. [Data: Entities (278); Relationships (288, 379, 380)]\n\n## Interconnectedness of weight regulations\n\nThe relationships among the entities illustrate a complex web of interconnected weight regulations that govern airline baggage policies. Each entity contributes to a comprehensive understanding of what is permissible when traveling, and how these regulations are enforced. The overlapping relationships indicate that changes in one area, such as the maximum weight for a single bag, can have cascading effects on overall baggage policies and passenger compliance. This interconnectedness is vital for airlines to manage effectively to ensure smooth operations and customer satisfaction. [Data: Relationships (377, 382, 384, 288, 381)]", '# Baggage Policies and Services of EL AL\n\nThe community focuses on the baggage policies and services offered by EL AL, including various ticket types and their associated baggage allowances and excess baggage rates. The relationships among these entities highlight the complexity of baggage management in air travel.\n\n## Baggage Allowance as a central concept\n\nBaggage allowance is a key concept in air travel, determining how many bags a passenger can check in without incurring additional fees. This allowance is influenced by the ticket type purchased, which is crucial for passengers to understand their rights and responsibilities when traveling. The relationship between baggage allowance and ticket types is significant, as it directly affects customer experience and satisfaction. [Data: Entities (333), Relationships (44, 413, 410)]\n\n## Diverse ticket options with varying baggage policies\n\nEL AL offers various ticket types, including Lite Service, Classic Service, and Flex Service, each with different baggage allowances. Lite Service requires an additional fee for checked baggage, while Classic and Flex Services include one piece of checked baggage in the ticket price. This diversity allows passengers to choose options that best fit their travel needs but can also lead to confusion regarding baggage policies. [Data: Entities (330, 331, 332), Relationships (405, 406, 407)]\n\n## Excess baggage rates and their implications\n\nExcess baggage rates apply when passengers exceed their baggage allowance, creating a direct financial impact on travelers. These rates can vary and are often displayed in US dollars or local currency, which adds another layer of complexity for international travelers. Understanding these rates is essential for passengers to avoid unexpected fees at the airport. [Data: Entities (362), Relationships (412, 330, 332)]\n\n## The role of flight segments in baggage policies\n\nBaggage allowance is specified for each flight segment, which means that passengers must be aware of the rules for each leg of their journey. This can lead to complications if passengers are not informed about the specific baggage policies for connecting flights, potentially resulting in additional fees or denied boarding. [Data: Entities (352), Relationships (409)]\n\n## Interconnectedness of baggage policies and ticket types\n\nThe relationships between baggage allowance, ticket types, and excess baggage rates illustrate a complex web of policies that can significantly affect passenger experience. For instance, passengers purchasing Lite Tickets must be aware that they do not include any baggage allowance, which can lead to confusion and dissatisfaction if not clearly communicated. [Data: Relationships (411, 210)]', "# Flight Ticket and Baggage Management\n\nThe community centers around the processes and services related to flight tickets, baggage allowances, and the management of travel bookings. Key entities include flight tickets, additional baggage options, and online booking management services, all of which are interconnected to facilitate passenger travel.\n\n## Importance of Flight Tickets\n\nFlight tickets are essential documents for passengers, confirming their reservations and detailing important travel information. They serve as the foundation for all other services in this community, including baggage allowances and booking management. The relationship between flight tickets and baggage allowances is critical, as the ticket specifies what is included in the passenger's travel package. Issues with flight tickets can lead to significant disruptions in travel plans, affecting customer satisfaction and airline operations. [Data: Entities (96); Relationships (210)]\n\n## Role of Additional Baggage Options\n\nAdditional pieces of baggage are a significant aspect of air travel, allowing passengers to check in extra luggage for a fee. This service is directly linked to the flight ticket, which outlines the standard baggage allowance. The ability to manage additional baggage through the Manage Your Booking service enhances passenger convenience but also introduces potential complications if not handled properly. Miscommunication regarding baggage fees or allowances can lead to customer complaints and operational challenges for airlines. [Data: Entities (335); Relationships (408, 210)]\n\n## Manage Your Booking Service\n\nThe Manage Your Booking service is a crucial online tool that allows passengers to view and modify their flight details, including baggage allowances. This service empowers travelers to make adjustments to their bookings, which can enhance their travel experience. However, if the service is not user-friendly or if there are technical issues, it can lead to frustration and confusion among passengers, impacting their overall perception of the airline. [Data: Entities (334); Relationships (414, 211)]\n\n## Pre-ordering Additional Baggage\n\nPre-ordering additional baggage is a process that allows passengers to reserve extra luggage before their flight. This is particularly important for certain service types, as it ensures that passengers can manage their baggage needs in advance. The requirement to pre-order additional baggage adds a layer of complexity to the travel planning process, and failure to comply with this requirement can result in additional fees or denied boarding. [Data: Entities (343); Relationships (416)]\n\n## Time Constraints for Baggage Pre-ordering\n\nPassengers have a limited time frame of three hours before departure to pre-order additional baggage through the Manage Your Booking service. This time constraint can create pressure for travelers, especially those who may be unaware of the need to pre-order. If passengers miss this window, they may face unexpected fees or restrictions, which can lead to dissatisfaction and negative experiences with the airline. [Data: Entities (338); Relationships (415)]", "# Baggage Policy and Standard Baggage Regulations\n\nThe community focuses on the baggage policies of airlines, specifically highlighting the rules and regulations governing checked and carry-on baggage. Key entities include El Al and Sundor, which have specific baggage policies, and the definitions of standard baggage that comply with these regulations.\n\n## El Al's specific baggage policy\n\nEl Al has established a specific baggage policy that outlines the rules for checked baggage. This policy is crucial for ensuring compliance with safety standards and managing passenger expectations. The relationship between El Al and the baggage policy indicates that the airline is actively involved in defining the parameters for what is permissible, which can significantly affect customer satisfaction and operational efficiency. [Data: Relationships (52)]\n\n## Sundor's baggage policy\n\nSimilar to El Al, Sundor also has a specific baggage policy that dictates the rules for checked baggage. This indicates that different airlines may have varying regulations, which can lead to confusion among passengers if not clearly communicated. The relationship between Sundor and the baggage policy highlights the importance of these regulations in maintaining a smooth travel experience. [Data: Relationships (404)]\n\n## Definition and importance of standard baggage\n\nStandard baggage refers to luggage that meets the airline's specified size and weight requirements. This definition is critical as it helps passengers understand what they can carry without incurring additional fees. The relationship between standard baggage and the baggage policy emphasizes the need for clear guidelines to avoid misunderstandings and ensure compliance. [Data: Relationships (201, 418)]\n\n## Baggage allowance determined by policy\n\nThe baggage allowance for passengers is determined by the baggage policy of the airline. This relationship is significant as it directly impacts the travel experience, influencing how much luggage a passenger can bring without incurring extra charges. Understanding this relationship is essential for both airlines and passengers to facilitate a smooth travel process. [Data: Relationships (413)]\n\n## Interconnectedness of baggage policies\n\nThe relationships between various entities and the baggage policy illustrate the interconnectedness of airline regulations. Each airline's baggage policy not only affects its operations but also influences passenger behavior and expectations. This interconnectedness highlights the importance of consistent communication and enforcement of baggage regulations across the industry. [Data: Relationships (52, 404, 200)]", "# Ticket Type and Baggage Allowance Community\n\nThis community focuses on the relationship between ticket types and their associated baggage allowances. The entities involved are the ticket type, which determines the baggage rules, and the free baggage allowance, which specifies the amount of baggage that can be checked without extra fees.\n\n## Ticket Type as a determining factor\n\nThe ticket type is a crucial entity in this community, as it dictates the baggage allowance and rules applicable to each passenger's reservation. Understanding the ticket type is essential for passengers to know their rights and limitations regarding baggage. This relationship is significant because it can directly affect customer satisfaction and operational efficiency. If passengers are not aware of their ticket type's implications, it could lead to disputes at check-in or boarding, impacting the overall travel experience. [Data: Entities (355); Relationships (410)]\n\n## Free Baggage Allowance specifics\n\nThe free baggage allowance is defined for each flight segment based on the ticket type. This allowance is critical for passengers as it specifies how much baggage can be checked without incurring additional fees. Clarity in this area is vital for customer satisfaction, as unexpected fees can lead to frustration and negative perceptions of the airline. The relationship between the free baggage allowance and ticket type highlights the importance of transparent communication regarding baggage policies to avoid misunderstandings. [Data: Entities (357); Relationships (420)]\n\n## Interdependence of ticket type and baggage allowance\n\nThe relationship between ticket type and baggage allowance is interdependent, meaning that changes in one can significantly affect the other. For instance, if an airline decides to modify the baggage rules associated with a specific ticket type, it could lead to widespread implications for passengers who have already purchased tickets. This interdependence underscores the need for airlines to carefully consider customer feedback and market trends when making policy changes. [Data: Relationships (410, 420)]\n\n## Potential for customer dissatisfaction\n\nThe complexity of baggage policies based on ticket types can lead to customer dissatisfaction if not communicated effectively. Passengers may feel frustrated if they are unaware of the baggage rules associated with their ticket type, leading to unexpected fees or complications during travel. Airlines must ensure that this information is readily available and clearly communicated to mitigate potential issues and enhance the customer experience. [Data: Relationships (410, 420)]"], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:33,176 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE75B920>, 'json_data': {'input': ["# Service Dog Transportation Community\n\nThe community focuses on the transportation of service dogs, highlighting the relationships between service dogs, airline policies, and regulations in various countries. Key entities include airlines, specific regulations, and requirements for passengers traveling with service dogs, ensuring compliance and safety during air travel.\n\n## EL AL's policies on service dog transportation\n\nEL AL has specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets. This highlights the importance of airline policies in facilitating the travel of passengers with disabilities and ensuring their service dogs can accompany them without additional burdens. [Data: Relationships (5)]\n\n## Regulatory requirements in Israel\n\nIsrael has specific requirements for transporting service dogs, which must be adhered to by passengers. This includes documentation and compliance with local regulations, emphasizing the need for passengers to be aware of the legal framework governing service dog transport in different countries. Such regulations are crucial for ensuring that service dogs can travel safely and legally, which directly impacts the ability of passengers with disabilities to travel. [Data: Relationships (59)]\n\n## Passenger cabin access for service dogs\n\nService dogs are allowed in the passenger cabin at no additional cost under certain conditions. This access is vital for passengers who rely on these animals for assistance, as it ensures they can travel comfortably and safely. The conditions under which service dogs can accompany their handlers in the cabin are essential for maintaining the rights of passengers with disabilities and ensuring their needs are met during air travel. [Data: Relationships (53)]\n\n## Documentation requirements at check-in\n\nPassengers must present their documentation for traveling with a service dog at the check-in counters. This requirement is critical for compliance with airline policies and regulations, ensuring that all necessary information is verified before boarding. The documentation process is a key aspect of the travel experience for passengers with service dogs, as it helps to prevent misunderstandings and ensures that all parties are aware of the regulations governing service dog transport. [Data: Relationships (65)]\n\n## Importance of veterinary certificates\n\nA veterinary certificate is essential for transporting service dogs, certifying that the dog is vaccinated and capable of maintaining sanitary conditions during transport. This requirement is crucial for the health and safety of both the service dog and other passengers. Ensuring that service dogs meet health standards is a significant aspect of airline policies, as it helps to mitigate risks associated with animal transport and ensures compliance with regulations. [Data: Relationships (54)]", "# CDC and Dog Transportation Regulations\n\nThe community focuses on the regulations established by the CDC regarding the transportation of dogs to the United States, highlighting the relationships between the CDC, the United States, and various entities involved in dog transport, including EL AL and Israel.\n\n## CDC's role in dog transportation regulations\n\nThe CDC establishes critical regulations and guidelines for the transportation of dogs to the United States, ensuring public health and safety. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's regulations are designed to mitigate risks associated with the introduction of diseases through animal transport, which is particularly important in the context of global travel and trade. [Data: Entities (42); Relationships (179)]\n\n## United States regulations for service dogs\n\nThe United States has specific regulations regarding the transportation of service dogs, which may vary by destination. These regulations include additional forms and requirements that must be followed to ensure the safe and legal transport of service animals. This highlights the complexity of dog transportation laws and the need for compliance by travelers and transporters alike. [Data: Entities (99); Relationships (58)]\n\n## EL AL's compliance with CDC regulations\n\nEL AL, an airline, is required to comply with CDC regulations for transporting dogs to the United States. This relationship underscores the importance of airline adherence to health guidelines, as non-compliance could lead to public health risks and legal repercussions. The airline's role is crucial in ensuring that all transported animals meet the necessary health standards set forth by the CDC. [Data: Relationships (16)]\n\n## Israel's classification as a high-risk country\n\nIsrael is classified as a high-risk country by the CDC for transporting dogs, which necessitates stricter compliance with health regulations. This classification impacts how dogs are transported from Israel to the United States, requiring additional scrutiny and documentation to prevent the spread of diseases. The implications of this classification are significant for travelers and transporters, as it may affect their ability to bring dogs into the U.S. [Data: Relationships (124)]\n\n## Interconnectedness of entities in dog transportation\n\nThe relationships between the CDC, the United States, EL AL, and Israel illustrate a complex network of regulations and compliance requirements in dog transportation. Each entity plays a vital role in ensuring that health standards are met, and their interconnectedness highlights the importance of collaboration in public health efforts. This network is essential for maintaining the safety of both animals and the public during the transportation process. [Data: Relationships (16, 58, 124, 179)]", '# Airport Check-In Community\n\nThe Airport Check-In Community consists of key entities such as check-in counters, passengers, and security check areas, all of which are interconnected through the processes required for air travel. The relationships highlight the importance of documentation and procedures that passengers must follow when checking in for flights, particularly when traveling with service dogs or returning to Israel.\n\n## Check-in Counters as Central Entities\n\nCheck-in counters are the central entities in this community, serving as the official points where passengers must present their documentation for flights. These counters are crucial for ensuring that all necessary paperwork is completed before boarding, which is essential for maintaining security and compliance with airline regulations. The relationship between check-in counters and passengers is vital, as it dictates the flow of travelers through the airport and their ability to board flights. [Data: Entities (105); Relationships (32, 215)]\n\n## Passenger Requirements\n\nPassengers are required to check in at the counters regardless of whether they have luggage. This requirement emphasizes the importance of the check-in process in air travel, as it ensures that all travelers are accounted for and that necessary documentation is verified. The relationship between passengers and check-in counters highlights the procedural nature of air travel, where compliance is mandatory for all individuals traveling by flight. [Data: Entities (317); Relationships (215)]\n\n## Documentation for Service Dogs\n\nPassengers traveling with service dogs must present specific documentation at the check-in counters. This requirement underscores the importance of adhering to regulations that govern the travel of service animals, ensuring that all necessary paperwork is in order to facilitate a smooth travel experience. The relationship between service dogs and check-in counters indicates a specialized process that must be followed, which can impact the overall efficiency of the check-in process. [Data: Relationships (65)]\n\n## Security Check Areas\n\nAfter checking in at the counters, passengers must proceed to security check areas. This relationship is critical for maintaining airport security and ensuring that all travelers are screened before boarding their flights. The flow from check-in counters to security check areas is a key aspect of the travel process, highlighting the interconnectedness of these entities in ensuring safe and compliant air travel. [Data: Entities (318); Relationships (216)]\n\n## Return to Israel\n\nPassengers checking in at the counters are often returning to Israel, which may involve specific regulations and documentation requirements. This relationship indicates that the check-in process is not only about boarding a flight but also about complying with the legal and regulatory frameworks associated with international travel. Understanding this dynamic is essential for ensuring that all passengers are adequately prepared for their journey. [Data: Relationships (128)]', "# EL AL Airline Passenger Community\n\nThe community centers around passengers traveling with EL AL, an airline that has specific policies regarding baggage, additional services, and the transport of pets. The relationships among passengers, the airline, and destination countries highlight the regulatory framework governing air travel.\n\n## Passengers' responsibilities and regulations\n\nPassengers traveling with EL AL must adhere to specific regulations regarding baggage and the transport of pets, particularly dogs. These regulations ensure a standardized travel experience and compliance with airline policies. For instance, passengers are responsible for their dog's behavior and must meet certain conditions for its transport, which includes providing necessary documentation [Data: Entities (107, 109); Relationships (22, 212, 218)].\n\n## Airline policies on baggage and additional services\n\nThe airline has established specific policies regarding checked baggage, including size and weight limits, which passengers must comply with. Additionally, passengers have the option to order additional services, which may incur extra charges. This creates a structured environment for air travel but also places the onus on passengers to understand and follow these policies [Data: Entities (184, 381); Relationships (89, 221, 220)].\n\n## Destination country regulations\n\nPassengers must also comply with the regulations of their destination country, which may include restrictions on certain types of equipment and guidelines for admitting passenger equipment. This adds another layer of complexity to the travel process, as failure to comply can result in denied entry or additional charges [Data: Entities (195); Relationships (219, 337)].\n\n## Financial implications of additional services\n\nOrdering additional services incurs a full charge to the passenger, which can impact the overall cost of travel. This fee structure is important for passengers to consider when planning their travel, as it can significantly affect their budget [Data: Entities (384); Relationships (423)].\n\n## The role of forms in pet transport\n\nPassengers wishing to transport a dog on EL AL flights must provide specific forms, which are necessary for compliance with airline policies. This requirement emphasizes the importance of documentation in ensuring a smooth travel experience for pet owners [Data: Entities (109); Relationships (218)].", "# Pet Transport Regulations in Passenger Cabins\n\nThis community focuses on the regulations and conditions surrounding the transport of pets, particularly dogs, cats, and exotic birds, in passenger cabins of aircraft. The entities are interconnected through various relationships that outline the responsibilities and conditions for transporting these animals.\n\n## EL AL's policies on dog transport\n\nEL AL has established specific policies governing the transport of dogs, which include conditions under which they may be refused transport. These policies are crucial for ensuring the safety and comfort of all passengers and crew on board. The regulations highlight the importance of assessing a dog's behavior and health before allowing it on the aircraft. If a dog is deemed a direct threat or causes a disturbance, it may be refused transport, which underscores the airline's commitment to maintaining a safe environment for all travelers. [Data: Relationships (21, 214, 213)]\n\n## Passenger responsibilities for pet behavior\n\nPassengers are responsible for their pets' behavior during transport, which is a significant aspect of the community's dynamics. This responsibility includes ensuring that the pet meets size and weight restrictions and does not pose a threat to other passengers or crew members. The relationship between the passenger and the dog is critical, as any disturbances caused by the pet can lead to refusal of transport. This highlights the need for passengers to be well-informed about the regulations and to prepare adequately for traveling with their pets. [Data: Relationships (212, 207)]\n\n## Transport conditions for various pets\n\nDifferent types of pets, including cats and exotic birds, have specific conditions for transport in the passenger cabin. These conditions are primarily related to size and weight restrictions, which are essential for ensuring that all animals can be accommodated safely. The inclusion of various pet types in the transport regulations indicates a broader understanding of passenger needs and preferences, as well as the airline's commitment to providing a pet-friendly travel experience. [Data: Relationships (208, 209)]\n\n## Direct threats and disturbances from dogs\n\nThe community recognizes that dogs can pose direct threats or cause disturbances during transport, which can lead to their refusal for boarding. This aspect is critical for maintaining safety and comfort in the passenger cabin. The airline's policies are designed to mitigate these risks by assessing the dog's behavior prior to boarding. This proactive approach is essential for preventing incidents that could disrupt the travel experience for other passengers. [Data: Relationships (214, 213)]\n\n## Service dogs and their transport privileges\n\nService dogs are allowed in the passenger cabin at no additional cost under certain conditions, which reflects the community's commitment to accommodating individuals with disabilities. This provision is vital for ensuring that passengers who rely on service animals can travel without additional barriers. The relationship between service dogs and the passenger cabin highlights the importance of inclusivity in air travel policies. [Data: Relationships (53)]", "# Liquid Carry-On Regulations Community\n\nThe community focuses on the regulations surrounding the carrying of liquids in carry-on bags, particularly in relation to air travel. Key entities include various types of liquids, the security checkpoint, and specific guidelines from countries like the U.S. and Israel, which collectively shape the rules and restrictions that travelers must adhere to.\n\n## Comprehensive restrictions on liquids in carry-on bags\n\nThe community is primarily defined by the restrictions on liquids that passengers can carry in their carry-on bags. These regulations are crucial for maintaining safety in air travel, as they aim to prevent the transport of hazardous materials. The restrictions apply to various types of liquids, including aerosols, creams, gels, and baby food, which must adhere to specific guidelines to ensure compliance at security checkpoints. [Data: Entities (152, 161, 156, 158, 154, 159); Relationships (283, 281, 279, 286, 278, 282)]\n\n## Role of the security checkpoint\n\nThe security checkpoint is a critical entity in this community, where passengers must present their carry-on items for inspection. At this location, any liquids exceeding the permitted amount will be discarded, which underscores the importance of compliance with the established regulations. The checkpoint serves as the enforcement point for the liquid restrictions, making it a focal area for potential conflicts or issues during the boarding process. [Data: Entities (159); Relationships (284)]\n\n## Specific guidelines from Israel\n\nIsrael has established specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These regulations are designed to ensure that all passengers adhere to safety protocols, reflecting the country's commitment to aviation security. The relationship between Israel and the liquid restrictions highlights the international nature of air travel regulations and the need for travelers to be aware of varying rules depending on their departure location. [Data: Relationships (127)]\n\n## U.S. regulations impacting liquid transport\n\nThe U.S. has specific guidelines that affect the carrying of liquids in handbags on flights to and from the country. These regulations are part of a broader effort to enhance security in air travel and prevent potential threats. The relationship between the U.S. and the liquid restrictions emphasizes the importance of understanding local regulations, as they can vary significantly from one country to another. [Data: Relationships (285)]\n\n## Diverse types of liquids subject to restrictions\n\nVarious types of liquids, including cosmetics, creams, gels, and prescription medications, are subject to the same restrictions as other liquids in carry-on bags. This diversity highlights the complexity of the regulations, as travelers must be aware of the specific rules that apply to different categories of liquids. The inclusion of baby food as a special item further complicates the landscape, as it is exempt from certain packing requirements but still subject to inspection. [Data: Entities (155, 158, 154, 157); Relationships (278, 282, 280, 279)]", '# Travel Essentials: Carry-On Bags and Related Items\n\nThis community focuses on the essential items that passengers should keep accessible during flights, particularly emphasizing the importance of carry-on bags. The relationships among carry-on bags, medications, passports, valuables, and recommendations highlight the critical nature of these items for passenger safety and compliance with airline regulations.\n\n## Carry-On Bags as a central entity\n\nCarry-on bags are the primary focus of this community, serving as the essential item that passengers must manage during flights. These bags are subject to specific restrictions, particularly regarding the items they can contain, such as liquids, medications, and valuables. The importance of carry-on bags is underscored by their role in ensuring that passengers have immediate access to necessary items during their journey. The relationships with other entities, such as medications and passports, further emphasize the need for careful management of these bags to comply with airline regulations and ensure passenger safety [Data: Entities (160); Relationships (288, 289, 290, 291, 294, +more)].\n\n## Importance of Medications in Carry-On Bags\n\nMedications are highlighted as essential items that passengers should keep accessible during flights. The recommendation to store medications in carry-on bags is crucial for health reasons, ensuring that travelers can manage their health needs while in transit. This relationship indicates that the presence of medications in carry-on bags is not just a matter of convenience but a necessity for passenger well-being. The implications of not having medications readily available could lead to serious health risks, making this a significant aspect of travel safety [Data: Entities (281); Relationships (289, +more)].\n\n## Passports as critical travel documents\n\nPassports are required documents for international travel and should be easily accessible during flights. The relationship between passports and carry-on bags emphasizes the need for travelers to keep these documents within reach to avoid complications during boarding and customs checks. The accessibility of passports is vital for ensuring a smooth travel experience, and any delays in retrieving these documents could lead to significant travel disruptions. This highlights the importance of proper organization within carry-on bags [Data: Entities (282); Relationships (290, +more)].\n\n## Valuables and their security during travel\n\nValuables are items of significant worth that passengers are advised to keep with them during flights. The recommendation to store valuables in carry-on bags is crucial for their safety and security throughout the journey. This relationship underscores the importance of protecting personal belongings from theft or loss, which can be a significant concern for travelers. The emphasis on keeping valuables accessible also reflects the broader need for passengers to be vigilant about their possessions while traveling [Data: Entities (283); Relationships (291, +more)].\n\n## Recommendations for managing carry-on items\n\nThe recommendations provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel are essential for ensuring compliance with airline regulations. These guidelines help passengers navigate the complexities of air travel, particularly concerning what items should be kept accessible and how to manage them effectively. The relationship between recommendations and carry-on bags highlights the proactive measures that travelers can take to enhance their travel experience and minimize potential issues [Data: Entities (288); Relationships (294, +more)].', "# Checked Bags and Plane's Belly\n\nThis community revolves around the concepts of checked bags, the plane's belly, and the no charge policy associated with luggage handling. The relationships among these entities highlight the process of managing luggage during air travel, particularly when carry-on space is limited.\n\n## Checked bags as a key entity\n\nChecked bags are a crucial aspect of air travel, representing luggage that is stored in the cargo hold of an aircraft. This entity is central to the community as it directly relates to passenger convenience and airline logistics. The management of checked bags can significantly affect the overall travel experience, especially in scenarios where carry-on luggage is restricted. The relationship between checked bags and the plane's belly emphasizes the importance of efficient luggage handling systems in the aviation industry. [Data: Entities (285), Relationships (388)]\n\n## The role of the plane's belly\n\nThe plane's belly refers to the cargo hold where checked bags are stored during flights. This entity is essential for understanding how luggage is managed in the aviation context. The relationship between checked bags and the plane's belly illustrates the operational aspects of air travel, particularly how airlines utilize space within the aircraft. Efficient use of the plane's belly can lead to improved operational efficiency and customer satisfaction. [Data: Entities (286), Relationships (388)]\n\n## No charge policy for checked bags\n\nThe no charge policy indicates that passengers will not incur fees for checking carry-on bags if there is no available space on the aircraft. This policy is significant as it directly impacts passenger decisions regarding luggage. Understanding this relationship helps clarify the airline's approach to customer service and operational flexibility, particularly during peak travel times when space may be limited. [Data: Entities (287), Relationships (389)]\n\n## Interconnection of luggage types\n\nThe relationship between carry-on bags and checked bags highlights the interconnectedness of different luggage types in air travel. If no free space is available for carry-on bags, they will be checked into the plane's belly, demonstrating the dynamic nature of luggage management. This relationship is crucial for airlines to understand as it affects both operational logistics and customer satisfaction. [Data: Relationships (293)]", "# ARTY Rimon and Baggage Services Community\n\nThe community is centered around ARTY Rimon, a service provider specializing in baggage pickup and delivery. It includes various entities related to baggage handling, policies, and service locations, highlighting the interconnectedness of service provision and customer support in the baggage industry.\n\n## ARTY Rimon as a central service provider\n\nARTY Rimon is the primary entity in this community, specializing in pickup and delivery services for baggage, luggage, and bags. The company operates in multiple locations, which enhances its service reach and customer convenience. However, the nature of its services also means that it is subject to various operational challenges, such as delays or damage to baggage, which can significantly impact customer satisfaction and the company's reputation. The relationships ARTY Rimon has with other entities, such as baggage claims departments and similar service providers, further emphasize its role in the baggage handling ecosystem. [Data: Entities (210); Relationships (240, 340, 342)]\n\n## Importance of baggage policies\n\nThe community includes critical policies regarding baggage handling, such as the requirement to report damage or missing items within specific timeframes. These policies are essential for maintaining customer trust and ensuring compliance with industry standards. For instance, the policy stating that customers must contact the service provider within 7 days of receipt for baggage issues is crucial for effective claims processing. Such policies not only protect the service provider but also inform customers of their rights and responsibilities, thereby shaping the overall customer experience. [Data: Entities (240, 241); Relationships (240, 356)]\n\n## Service locations enhance operational reach\n\nARTY Rimon provides services in several cities, including Rehovot, Shoham, Ramle, and Lod. This geographical diversity allows the company to cater to a broader customer base and respond to varying demands for baggage services. Each location represents a potential market for ARTY Rimon, but it also introduces logistical challenges, such as ensuring timely pickups and deliveries across different areas. The effectiveness of operations in these locations is critical for maintaining service quality and customer satisfaction. [Data: Entities (244, 246, 247, 248); Relationships (348, 349, 350, 351)]\n\n## Competitive landscape with similar service providers\n\nThe community includes other entities like Cargo Tikim ve Mizvadot and Rimon Mizvadot ve Tikim, which provide similar services. This competitive landscape can drive innovation and improve service quality but also poses risks for ARTY Rimon in terms of market share and customer loyalty. Understanding the competitive dynamics is essential for ARTY Rimon to position itself effectively and address customer needs better than its competitors. [Data: Entities (233); Relationships (344, 342)]\n\n## Direct associations with key contacts\n\nShlomo Ha-Melekh is identified as a contact person for ARTY Rimon, indicating a direct association that could facilitate communication and operational efficiency. Having key contacts within the organization can enhance customer service and streamline processes related to baggage handling. This relationship underscores the importance of personal connections in service-oriented businesses, where customer interactions can significantly influence satisfaction and loyalty. [Data: Entities (249); Relationships (347)]", "# Rimon Mizvadot ve Tikim in Rishon Le Zion\n\nThe community centers around Rimon Mizvadot ve Tikim, a delivery service operating in Rishon Le Zion. The relationship with the city indicates a service provision context, while a competitive relationship with Arty Rimon highlights the competitive landscape of delivery services in the area.\n\n## Rimon Mizvadot ve Tikim's operational significance\n\nRimon Mizvadot ve Tikim is a key player in the delivery service sector within Rishon Le Zion. The company provides essential pickup and delivery services, which are vital for local commerce and community connectivity. Its operations in this city suggest a strong local presence and potential influence on the local economy. The degree of service provided by Rimon Mizvadot ve Tikim is crucial for residents and businesses alike, indicating its importance in the community. [Data: Entities (235), Relationships (353)]\n\n## Rishon Le Zion as a service location\n\nRishon Le Zion serves as the operational base for Rimon Mizvadot ve Tikim, highlighting the city's role in the company's service delivery framework. The relationship indicates that the city is not just a geographical location but a critical component of the service ecosystem. The presence of Rimon Mizvadot ve Tikim in Rishon Le Zion enhances the city's logistics capabilities, making it a significant hub for delivery services. [Data: Entities (242), Relationships (353)]\n\n## Competitive dynamics with Arty Rimon\n\nRimon Mizvadot ve Tikim has a competitive relationship with Arty Rimon, which provides similar services in different locations. This competition can influence market dynamics, pricing strategies, and service quality in the area. The competitive landscape suggests that Rimon Mizvadot ve Tikim must continuously innovate and improve its offerings to maintain its market position against rivals like Arty Rimon. [Data: Relationships (344)]\n\n## Impact of delivery services on local economy\n\nThe delivery services provided by Rimon Mizvadot ve Tikim are likely to have a positive impact on the local economy of Rishon Le Zion. By facilitating the movement of goods and services, the company supports local businesses and enhances consumer access to products. This operational role is essential for economic vitality, especially in urban settings where convenience and speed are increasingly valued by consumers. [Data: Entities (235), Relationships (353)]", "# Hagalgal and Bugaboo: Baby Equipment Community\n\nThe community centers around Hagalgal, an Israeli center for baby and children equipment, and Bugaboo, a provider of baby carriages and strollers. Hagalgal's services are complemented by Bugaboo's offerings, creating a network focused on baby-related products and services.\n\n## Hagalgal as a central entity in baby equipment\n\nHagalgal serves as a key player in the baby equipment market, providing a wide range of goods and services, including pickup and delivery. This makes it a vital resource for parents seeking convenience and quality in baby products. The center's focus on baby and children equipment positions it as a trusted entity in the community, catering to the needs of families. Hagalgal's services are essential for new parents, ensuring they have access to necessary items for their children. [Data: Entities (237)]\n\n## Bugaboo's role in the community\n\nBugaboo specializes in baby carriages and strollers, which are integral to the baby equipment category that Hagalgal focuses on. The relationship between Hagalgal and Bugaboo highlights a collaborative effort to provide comprehensive solutions for parents. Bugaboo's reputation for quality and innovation in stroller design complements Hagalgal's offerings, making them a significant part of the community. This partnership enhances the overall value proposition for customers seeking reliable baby products. [Data: Entities (238), Relationships (355)]\n\n## Interconnected services between Hagalgal and Bugaboo\n\nThe relationship between Hagalgal and Bugaboo indicates a synergy in their services, where Hagalgal's broad range of baby equipment includes Bugaboo's specialized products. This interconnectedness allows for a more comprehensive shopping experience for parents, who can find various baby-related items in one place. The collaboration between these entities enhances customer satisfaction and loyalty, as families can rely on a single source for their baby equipment needs. [Data: Relationships (355)]\n\n## Potential for community growth\n\nThe community surrounding Hagalgal and Bugaboo has significant potential for growth, especially as the demand for baby products continues to rise. With an increasing number of families seeking quality baby equipment, both entities are well-positioned to expand their offerings and reach. This growth could lead to new partnerships and collaborations within the baby product sector, further enhancing the community's impact and relevance. [Data: Entities (237, 238)]\n\n## Importance of delivery services\n\nHagalgal's provision of pickup and delivery services is a crucial aspect of its business model, catering to the convenience needs of modern parents. This service not only enhances customer experience but also positions Hagalgal as a forward-thinking entity in the baby equipment market. The ability to deliver essential items directly to customers' homes is particularly valuable for busy families, making Hagalgal a preferred choice for baby equipment. [Data: Entities (237)]", "# Makor Haziud and Nes Ziona Community\n\nThe community centers around Makor Haziud, a store in Nes Ziona specializing in baggage and outdoor equipment. The relationships between Makor Haziud, the city of Nes Ziona, and other entities highlight its role in providing relevant services for baggage handling.\n\n## Makor Haziud's specialization in baggage and outdoor equipment\n\nMakor Haziud is a key entity in this community, specializing in baggage and outdoor equipment. This specialization indicates that the store plays a significant role in the local economy, particularly for individuals and businesses that require such equipment. The store's focus on baggage handling suggests that it may cater to travelers and logistics companies, which could have implications for local tourism and transport services. [Data: Entities (207)]\n\n## Nes Ziona as the operational base for Makor Haziud\n\nNes Ziona serves as the operational base for Makor Haziud, indicating a strong service location relationship. The city's infrastructure and demographics may influence the store's customer base and operational strategies. As a city, Nes Ziona may benefit from the presence of specialized stores like Makor Haziud, which can enhance local commerce and attract visitors. [Data: Entities (245), Relationships (341)]\n\n## Relationship with Baggage Claims Department\n\nMakor Haziud has a relationship with the Baggage Claims Department, suggesting that it may provide equipment relevant for baggage handling and claims. This connection indicates that the store could play a role in supporting local airports or transport services, enhancing its importance in the community. The collaboration with the Baggage Claims Department may also position Makor Haziud as a key player in addressing baggage-related issues, which can be critical for customer satisfaction in travel services. [Data: Relationships (237)]\n\n## Connection with ARTY Rimon\n\nMakor Haziud's specialization in baggage is relevant to the services provided by ARTY Rimon, indicating a collaborative relationship. This connection may enhance the service offerings available to customers, particularly those involved in travel or outdoor activities. The synergy between these entities could lead to joint promotions or bundled services, benefiting both businesses and their customers. [Data: Relationships (340)]", "# Moka and Arty Rimon in Yehud\n\nThe community centers around Moka, a pickup and delivery point for Arty Rimon, located in the city of Yehud. The relationship between these entities highlights a direct service connection that is significant for local logistics and delivery services.\n\n## Moka as a key service point\n\nMoka serves as a crucial pickup and delivery point for Arty Rimon, indicating its importance in the logistics and delivery network. This relationship suggests that Moka plays a vital role in facilitating the distribution of goods for Arty Rimon, which could impact service efficiency and customer satisfaction. The operational dynamics at Moka can directly influence the performance of Arty Rimon, making it a significant entity in this community. [Data: Entities (234), Relationships (343)]\n\n## Yehud's role as the location for Moka\n\nYehud is the city where Moka is located, which adds a geographical context to the community. The location of Moka in Yehud is essential for understanding the local market dynamics and the accessibility of Arty Rimon's services. The city's infrastructure and demographics can affect the operational capabilities of Moka, thereby influencing the overall effectiveness of Arty Rimon's delivery services. [Data: Entities (243), Relationships (352)]\n\n## Direct service relationship between Arty Rimon and Moka\n\nThe direct service relationship between Arty Rimon and Moka indicates a structured logistics operation that is essential for the delivery of goods. This relationship is characterized by Moka's function as a designated point for pickups and deliveries, which is critical for maintaining the flow of services provided by Arty Rimon. The efficiency of this relationship can significantly impact customer experiences and operational success. [Data: Relationships (343)]\n\n## Potential impact on local logistics\n\nThe presence of Moka as a delivery point for Arty Rimon in Yehud suggests potential implications for local logistics and service delivery. As a hub for pickups and deliveries, Moka's operational efficiency can affect the speed and reliability of services offered by Arty Rimon. Any disruptions at Moka could lead to delays in service, impacting customer satisfaction and the overall reputation of Arty Rimon in the region. [Data: Relationships (343, 352)]", "# Pet Transportation Regulations and Practices\n\nThe community focuses on the transportation of pets, detailing the various methods, regulations, and requirements associated with their travel by air. Key entities include airlines, cargo services, and necessary documentation, all of which are interconnected in ensuring safe and compliant transport of animals.\n\n## Diverse methods of pet transportation\n\nThe community encompasses various methods for transporting pets, including cabin transport, registered cargo, and checked baggage. Each method has specific regulations and requirements that must be adhered to, depending on the size and weight of the pet. For instance, pets weighing up to 9 kg can be transported in the passenger aircraft cabin, while those exceeding this weight must be transported as registered cargo or in the aircraft hold. This diversity in transportation methods highlights the need for clear guidelines to ensure the safety and well-being of the animals during travel [Data: Entities (4, 6, 30, 32, 90); Relationships (69, 70, 80, 81)]\n\n## Importance of documentation\n\nDocumentation plays a crucial role in the transportation of pets, particularly the bill of lading and health certificates. A bill of lading is required for transporting animals as cargo, especially those over 9 kg, ensuring that all parties are aware of the transport conditions. Additionally, an international certificate of good health is necessary for pets being transported abroad, which involves veterinarians issuing the required health documents. This emphasis on documentation underscores the regulatory framework governing pet transportation and the importance of compliance to avoid legal issues [Data: Entities (30, 28); Relationships (76, 77, 114, 139)]\n\n## Airline-specific policies\n\nDifferent airlines have specific policies regarding pet transportation, which can significantly impact how pets are transported. For example, EL AL has established weight limits and conditions for cabin transport, as well as providing registered cargo services for larger animals. Understanding these airline-specific regulations is essential for pet owners to ensure compliance and safe travel for their pets. The variability in policies among airlines can lead to confusion, making it crucial for pet owners to research and prepare accordingly [Data: Entities (4, 6); Relationships (7, 12)]\n\n## Weight limits and their implications\n\nWeight limits are a critical factor in determining how pets can be transported. Pets weighing up to 9 kg can travel in the passenger cabin, while those between 9 kg and 100 kg must be transported in the aircraft hold. This distinction affects not only the comfort of the pet but also the costs associated with their transport, as the weight of the pet is not included in the permitted baggage allowance. Understanding these weight limits is vital for pet owners to avoid unexpected fees and ensure their pets' safety during travel [Data: Entities (90); Relationships (71, 83)]\n\n## Regulations for specific destinations\n\nCertain destinations have specific regulations regarding pet transportation, particularly concerning cabin transport. For instance, transporting pets in the aircraft cabin is not allowed for flights to Hong Kong, Johannesburg, and London. These restrictions necessitate that pet owners be aware of destination-specific regulations to ensure compliance and avoid complications during travel. This highlights the importance of thorough research and preparation when planning to transport pets internationally [Data: Entities (27, 25, 26); Relationships (75, 73, 74)]", "# Veterinary Services and Animal Transport Compliance\n\nThe community focuses on the regulatory framework surrounding the transport of animals, primarily involving the Veterinary Services Department, which issues necessary health certificates and permits. Key entities include the International Certificate of Good Health, Export License, and various permits required for compliance with international transport regulations.\n\n## Role of the Veterinary Services Department\n\nThe Veterinary Services Department is the central authority in this community, responsible for regulating the transport of animals. It issues health certificates, export licenses, and permits, ensuring that all transport complies with health standards and regulations. The department's role is crucial in maintaining the safety and health of animals during transport, which is vital for preventing the spread of diseases. The relationships it holds with other entities highlight its importance in the regulatory framework for animal transport [Data: Entities (37); Relationships (113, 151, 150, 149, 152, +more)].\n\n## Importance of the International Certificate of Good Health\n\nThe International Certificate of Good Health is a key document required for transporting animals abroad. This certificate ensures that animals are healthy and free from diseases before they are exported, which is essential for public health and safety. The relationship between this certificate and the Veterinary Services Department underscores the importance of regulatory compliance in international animal transport. Failure to obtain this certificate can lead to significant legal and health implications [Data: Entities (29); Relationships (77, 138)].\n\n## Export License as a critical requirement\n\nAn Export License is necessary for transporting animals internationally, serving as a legal requirement that ensures compliance with both the exporting and importing countries' regulations. The Cargo Division's requirement for this license indicates its importance in the logistics of animal transport. The relationship between the Export License and the Veterinary Services Department further emphasizes the need for proper documentation to facilitate safe and legal animal transport [Data: Entities (45); Relationships (117, 150)].\n\n## Permits required for animal transport\n\nPermits are essential for transporting animals from Israel, ensuring compliance with both Israeli and destination country regulations. The Veterinary Services Department issues these permits, which are critical for legal transport. The relationship between permits and the department highlights the regulatory framework that governs animal transport, ensuring that all necessary conditions are met for safe movement [Data: Entities (36); Relationships (149)].\n\n## Laboratory results for rabies antibodies\n\nLaboratory results for rabies antibodies are a necessary requirement for transporting pets, ensuring that animals are vaccinated and safe for travel. This requirement is part of the broader regulatory framework established by the Veterinary Services Department, which aims to prevent the spread of rabies and other diseases during animal transport. The relationship between these laboratory results and the department illustrates the importance of health checks in the transport process [Data: Entities (80); Relationships (152)]."], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:33,181 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE758B80>, 'json_data': {'input': ["# Pet Transportation Regulations in Israel\n\nThe community focuses on the regulatory framework governing the transportation of pets in Israel, primarily involving the Ministry of Agriculture, Veterinary Services Department, and the authorization process required for compliance. The relationships among these entities highlight the structured approach to ensuring the health and safety of animals during transport.\n\n## Role of the Ministry of Agriculture\n\nThe Ministry of Agriculture serves as the primary regulatory authority overseeing pet transportation in Israel. It establishes the necessary regulations and guidelines that must be adhered to by all entities involved in the transportation process. This includes ensuring that all procedures align with health and safety standards for animals. The Ministry's involvement is crucial as it directly impacts the legal framework within which pet transportation operates, making compliance essential for all stakeholders. [Data: Relationships (0, 1, 3, 4, 2)]\n\n## Importance of Authorization\n\nAuthorization from the Ministry of Agriculture is a mandatory requirement for transporting animals, including pets. This authorization ensures that all transport activities comply with established regulations, thereby safeguarding animal welfare. Without this authorization, individuals or entities are prohibited from legally transporting animals, highlighting the significance of this process in maintaining standards within the community. [Data: Entities (8), Relationships (1)]\n\n## Veterinary Services Department's role\n\nThe Veterinary Services Department operates under the Ministry of Agriculture and is responsible for managing the regulations related to pet transportation. This department plays a critical role in the authorization process, ensuring that all health and safety protocols are followed. Their oversight is vital for the welfare of animals during transport, as they conduct necessary inspections and assessments. [Data: Relationships (4, 113)]\n\n## Animal Tests as a compliance measure\n\nAnimal tests are a key component of the authorization process for transporting pets. These tests are conducted to ensure the health and safety of animals during their journey, reflecting the community's commitment to animal welfare. The requirement for these tests underscores the rigorous standards that must be met before any transport can occur, thereby enhancing the overall safety of the process. [Data: Entities (9), Relationships (2, 112)]\n\n## Interconnectedness of entities\n\nThe relationships among the Ministry of Agriculture, Veterinary Services Department, and the authorization process illustrate a well-structured regulatory framework. Each entity plays a specific role that contributes to the overall effectiveness of pet transportation regulations. This interconnectedness ensures that all aspects of animal transport are covered, from initial authorization to compliance with health standards, thereby reinforcing the community's integrity. [Data: Relationships (0, 1, 4)]", "# EL AL Business Cabin Pet Transport\n\nThe community focuses on the EL AL Business Cabin, which allows for the transportation of pets under specific conditions. The relationships highlight the necessity of prior approval for transporting animals, particularly pets, emphasizing the regulatory framework governing this service.\n\n## Business Cabin as a designated transport area\n\nThe Business Cabin is specifically designed for the transportation of animals, including pets, under certain conditions. This indicates a specialized service that caters to pet owners, enhancing the travel experience for those who wish to bring their pets along. However, the requirement for prior approval suggests that there are limitations and regulations that must be adhered to, which could impact customer satisfaction and operational efficiency. [Data: Entities (31), Relationships (18)]\n\n## Approval requirement for pet transport\n\nApproval from the EL AL service center is a critical requirement for transporting pets in the Business Cabin. This policy ensures that all necessary protocols are followed, which is essential for the safety and well-being of the animals during travel. The need for approval may also serve as a barrier for some pet owners, potentially affecting their decision to travel with EL AL. [Data: Entities (39), Relationships (140)]\n\n## Specific conditions for pet transport\n\nPets weighing up to 9 kg can be transported in the Business Cabin with prior approval. This weight limit indicates a targeted service for smaller pets, which may appeal to a specific segment of travelers. However, it also restricts larger animals from being transported, which could limit the customer base for this service. Understanding these conditions is crucial for both the airline and pet owners when planning travel. [Data: Relationships (79)]\n\n## Regulatory framework governing pet transport\n\nThe relationships between the entities highlight a regulatory framework that governs the transport of pets in the Business Cabin. This framework includes the necessity of prior approval and specific conditions for pet transport, which are essential for compliance and operational integrity. The existence of such regulations underscores the importance of maintaining safety standards and customer trust in the airline's services. [Data: Relationships (18, 140)]", "# Israel's Animal Transport Regulations and EL AL Cargo\n\nThe community focuses on Israel's regulations regarding the transport of animals, particularly through the EL AL Cargo Store, which plays a crucial role in facilitating these operations. The entities are interconnected through various regulations and services that ensure compliance with health and safety standards for animal transport.\n\n## Israel's role as a high-risk country for animal transport\n\nIsrael is classified as a high-risk country for the transport of animals, particularly dogs, which imposes specific regulations that must be adhered to by travelers. This classification affects how animals are transported and the necessary permits required for their movement. The Centers for Disease Control and Prevention (CDC) has designated Israel as a high-risk country, which influences the protocols that must be followed to ensure public health and safety during animal transport [Data: Entities (48); Relationships (124, 126)].\n\n## EL AL Cargo Store's significance in animal transport\n\nThe EL AL Cargo Store is a dedicated facility that provides essential services for transporting animals from Israel to various international destinations. This facility is crucial for ensuring that animals are handled properly during transit, adhering to the regulations set forth by the Ministry of Agriculture and the Ministry of Health. The store's operations are vital for maintaining the integrity of animal transport and ensuring compliance with international standards [Data: Entities (13); Relationships (123)].\n\n## Ministries' oversight in animal transport regulations\n\nThe Ministry of Agriculture and the Ministry of Health in Israel play pivotal roles in regulating the transport of animals. The Ministry of Agriculture oversees the necessary permits and conditions for pet transportation, while the Ministry of Health is responsible for ensuring that animals entering the country meet health standards. This dual oversight is essential for safeguarding public health and animal welfare during transport [Data: Entities (53); Relationships (3, 125)].\n\n## Specific guidelines for transporting service dogs\n\nIsrael has established specific requirements for the transport of service dogs, which must be strictly followed by passengers. These guidelines are crucial for ensuring that service dogs are transported safely and in compliance with health regulations. The relationship between service dogs and the regulations set by the Ministry of Agriculture highlights the importance of adhering to these protocols to avoid potential health risks [Data: Relationships (59)].\n\n## Guidelines for carrying liquids in carry-on bags\n\nIsrael has specific guidelines regarding the carrying of liquids in carry-on bags for flights departing from its airports. These restrictions are part of broader security measures that ensure passenger safety and compliance with international aviation standards. Understanding these guidelines is essential for travelers to avoid complications during check-in and boarding [Data: Relationships (127)].", "# Baggage Management Community\n\nThe Baggage Management Community encompasses various entities involved in the handling, tracking, and claims process related to passenger baggage. Key entities include airlines, baggage service centers, and documentation necessary for managing baggage issues, all of which are interconnected to ensure a smooth travel experience for passengers.\n\n## EL AL's role in baggage management\n\nEL AL is a central entity in the baggage management community, responsible for managing baggage and addressing various issues such as delays, damages, and claims. As the airline, EL AL's policies and efficiency directly affect passenger experiences. The airline's commitment to handling baggage issues is crucial for maintaining customer satisfaction and operational integrity. Any shortcomings in their baggage management can lead to significant passenger complaints and operational challenges, impacting the airline's reputation and financial performance. [Data: Relationships (24, 193)]\n\n## Importance of the Baggage Service Center\n\nThe Baggage Service Center plays a vital role in assisting travelers with baggage-related issues, including delays and damages. This center serves as a crucial resource for passengers seeking support and resolution for their baggage concerns. The effectiveness of the Baggage Service Center can significantly influence passenger satisfaction, as it is often the first point of contact for travelers facing baggage problems. A well-functioning service center can mitigate negative experiences, while inefficiencies can exacerbate issues, leading to increased frustration among passengers. [Data: Relationships (186)]\n\n## Documentation requirements for baggage claims\n\nPassengers must provide specific documentation when filing claims for lost or damaged baggage, including flight tickets, boarding passes, baggage tags, and damage reports. These documents are essential for validating claims and ensuring that the process is handled efficiently. The requirement for thorough documentation underscores the importance of proper record-keeping by both passengers and airlines. Failure to provide the necessary documents can result in claim denials, further complicating the resolution process and potentially leading to legal disputes. [Data: Relationships (194, 195, 196, 197, 198)]\n\n## Baggage claim area as a critical touchpoint\n\nThe baggage claim area is where travelers report issues related to their baggage and receive assistance from airline representatives. This area is a critical touchpoint for passenger interaction with airline staff and can significantly influence overall travel experience. Efficient handling of baggage issues in this area can enhance customer satisfaction, while delays or poor service can lead to negative perceptions of the airline. The baggage claim area serves as a reflection of the airline's commitment to customer service and operational efficiency. [Data: Relationships (189)]\n\n## Impact of baggage policies on passenger experience\n\nBaggage policies govern the rules regarding what types of baggage are allowed and the associated fees. These policies can greatly affect passenger experience, as unclear or overly restrictive baggage rules can lead to confusion and dissatisfaction. Airlines must balance the need for operational efficiency with customer service, ensuring that policies are communicated clearly and enforced fairly. Poorly designed baggage policies can result in increased complaints and a negative impact on the airline's reputation. [Data: Relationships (200)]", "# Baggage Service Community\n\nThe Baggage Service Community is centered around the Baggage Service Center, which manages various issues related to baggage, including delays, damages, and forgotten items. The community includes essential entities such as the Claims Department and contact details for travelers, highlighting the interconnectedness of services aimed at assisting passengers with baggage-related concerns.\n\n## Central role of the Baggage Service Center\n\nThe Baggage Service Center is the primary entity in this community, responsible for managing a wide range of baggage-related issues. It serves as a crucial resource for travelers facing challenges such as delayed or damaged baggage. The center's operations are vital for maintaining passenger satisfaction and ensuring that issues are resolved efficiently. The relationships it holds with other entities, such as the Claims Department and various baggage processes, underscore its importance in the overall baggage management system. [Data: Entities (113), Relationships (186, 222, 223, 228, 230, +more)]\n\n## Importance of contact details for travelers\n\nThe contact details provided for the Baggage Service Center are essential for travelers seeking assistance. These details include phone numbers and WhatsApp chat options, which facilitate immediate communication for reporting baggage issues. The availability of such contact methods is crucial for ensuring that passengers can quickly address their concerns, thereby enhancing the overall travel experience. The relationship between the contact details and the Baggage Service Center highlights the importance of accessibility in service delivery. [Data: Entities (118), Relationships (188, 233)]\n\n## Claims Department's role in baggage management\n\nThe Claims Department is integral to the baggage management process, coordinating with the Baggage Service Center to process claims related to lost or damaged baggage. This collaboration ensures that passengers receive timely updates and resolutions regarding their claims, which is essential for maintaining trust and satisfaction among travelers. The relationship between the Claims Department and the Baggage Service Center emphasizes the importance of effective communication and coordination in handling baggage issues. [Data: Entities (202), Relationships (222, 232)]\n\n## Processes for handling delayed baggage\n\nDelayed baggage is a common issue faced by travelers, and the Baggage Service Center plays a critical role in managing reports and claims associated with this problem. Passengers are advised to report delayed baggage immediately to facilitate its recovery. The structured process for handling delayed baggage, including the issuance of baggage reports, is vital for ensuring that travelers can retrieve their belongings efficiently. This highlights the importance of prompt action in baggage management. [Data: Entities (115, 122), Relationships (223, 249)]\n\n## Assistance with forgotten items\n\nThe Baggage Service Center also assists travelers with forgotten items left on board aircraft. This service is crucial for helping passengers recover personal belongings that may have been inadvertently left behind. The center's role in managing forgotten items underscores its comprehensive approach to baggage services, ensuring that all aspects of baggage management are addressed. This service can significantly impact traveler satisfaction and the overall perception of the airline's customer service. [Data: Entities (121), Relationships (226)]", '# Oversized and Overweight Baggage Management\n\nThe community focuses on the management of oversized and overweight baggage within the airline industry. It includes key entities such as oversized and overweight baggage and the designated location for handling such baggage, highlighting their interrelated roles in ensuring proper processing and compliance with airline regulations.\n\n## Definition and implications of oversized and overweight baggage\n\nOversized and overweight baggage refers to luggage that exceeds standard airline size and weight limits, necessitating special handling procedures. This category of baggage can lead to additional fees and operational challenges for airlines, impacting customer experience and efficiency. The need for special handling can create bottlenecks in the check-in process, leading to longer wait times for passengers and potential flight delays. [Data: Entities (340); Relationships (199)]\n\n## Role of the designated baggage location\n\nThe designated oversized/overweight baggage location is critical for managing the check-in process for passengers with such baggage. This location serves as a specific point for handling oversized and overweight items, ensuring that they are processed appropriately. By centralizing the handling of these items, airlines can streamline operations and reduce confusion among passengers, thereby enhancing overall travel experience. [Data: Entities (342); Relationships (323, 403, 417)]\n\n## Interconnectedness of baggage categories\n\nThe relationships between oversized baggage, overweight baggage, and the designated baggage location illustrate the interconnected nature of baggage management. Passengers with either type of baggage must utilize the designated location for check-in, which emphasizes the importance of clear signage and communication from airlines to avoid misunderstandings. This interconnectedness can also lead to operational challenges if not managed effectively, as multiple passengers may arrive simultaneously with oversized or overweight items. [Data: Relationships (323, 403, 417)]\n\n## Potential for additional fees\n\nPassengers with oversized and overweight baggage often incur additional fees, which can lead to dissatisfaction and complaints. Airlines must balance the need to enforce baggage policies with the importance of customer service. Clear communication regarding fees and policies at the time of booking and check-in can mitigate negative experiences and enhance customer satisfaction. [Data: Entities (340); Relationships (199)]\n\n## Operational challenges in baggage handling\n\nThe handling of oversized and overweight baggage presents unique operational challenges for airlines. These items require special equipment and procedures, which can strain resources, especially during peak travel times. Airlines must ensure that staff are adequately trained to manage these items efficiently to minimize delays and maintain a positive customer experience. [Data: Relationships (323, 403, 417)]', "# Lost Baggage Claims Community\n\nThe community focuses on the processes and systems related to lost baggage claims, primarily involving the Lost Baggage Report Number and Claim Status. These entities are interconnected, providing travelers with essential tools to track and manage their baggage claims effectively.\n\n## Importance of the Lost Baggage Report Number\n\nThe Lost Baggage Report Number is a critical identifier for travelers seeking updates on their lost baggage claims. This unique 10-character identifier allows individuals to check the status of their claims, ensuring they can track the progress of their lost items. The existence of this system is vital for maintaining customer satisfaction and trust in airline services. Without it, travelers would face significant challenges in retrieving their belongings, leading to frustration and potential financial loss. [Data: Entities (119); Relationships (191, 250)]\n\n## Role of Claim Status in the baggage claim process\n\nClaim Status refers to the current state of a baggage claim, which can be checked using the Lost Baggage Report Number. This process is facilitated through a worldwide system managed by the Baggage Service Center, allowing travelers to stay informed about their claims. The ability to check claim status is essential for travelers, as it provides peace of mind and helps them plan accordingly while dealing with the inconvenience of lost baggage. [Data: Entities (116); Relationships (224, 250)]\n\n## Interconnection between Lost Baggage Report Number and Claim Status\n\nThe relationship between the Lost Baggage Report Number and Claim Status is crucial for the effective management of lost baggage claims. Travelers must use the report number to verify the status of their claims, highlighting the importance of accurate and timely information. This interconnection ensures that travelers can efficiently navigate the claims process, reducing the time and effort required to resolve issues related to lost baggage. [Data: Relationships (191, 250)]\n\n## Baggage Service Center's role in managing claims\n\nThe Baggage Service Center plays a pivotal role in the lost baggage claims process by providing a worldwide system for checking claim status. This centralized service allows travelers to access information about their claims from anywhere, enhancing the overall customer experience. The effectiveness of the Baggage Service Center directly impacts how quickly and efficiently travelers can resolve issues related to lost baggage, making it a key player in this community. [Data: Relationships (224)]", "# Courier Service and Baggage Delivery\n\nThe community is centered around the Courier Service and Baggage Delivery, which work together to ensure that delayed baggage is delivered to passengers' specified addresses. The relationship between these entities highlights their collaborative role in enhancing the travel experience by addressing baggage delays.\n\n## Role of the Courier Service\n\nThe Courier Service is a critical entity in this community, responsible for delivering retrieved delayed baggage to passengers. This service plays a vital role in alleviating the inconvenience caused by baggage delays, ensuring that travelers receive their belongings promptly. The efficiency and reliability of the Courier Service directly impact customer satisfaction and the overall travel experience. [Data: Entities (117); Relationships (187, 251)]\n\n## Importance of Baggage Delivery\n\nBaggage Delivery is an essential service that ensures retrieved baggage is sent to the passenger's specified address. This service is crucial for maintaining the flow of travel logistics, especially in cases of delays. The relationship between Baggage Delivery and the Courier Service underscores the importance of timely and efficient baggage handling in the travel industry. [Data: Entities (126); Relationships (187)]\n\n## Collaboration between entities\n\nThe relationship between the Courier Service and Baggage Delivery illustrates a collaborative effort to enhance the travel experience. The Courier Service is tasked with the delivery of baggage after it has been retrieved, which highlights the interdependence of these entities. This collaboration is vital for ensuring that passengers do not face prolonged inconveniences due to baggage delays. [Data: Relationships (187, 251)]\n\n## Impact on customer satisfaction\n\nThe services provided by the Courier Service and Baggage Delivery significantly impact customer satisfaction. By ensuring that delayed baggage is delivered promptly, these entities help mitigate the stress and frustration that can arise from travel disruptions. Their effectiveness in handling such situations can enhance the reputation of the airlines and travel companies involved. [Data: Relationships (187, 251)]", "# EL AL Israel Airlines and Baggage Liability\n\nThe community centers around EL AL Israel Airlines, which is responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability. The relationships with various items such as fragile, perishable, and valuable items highlight the airline's liability limitations and contractual obligations.\n\n## EL AL Israel Airlines' responsibility for baggage claims\n\nEL AL Israel Airlines plays a crucial role in managing baggage claims, which is a significant aspect of its operations. The airline is tasked with ensuring compliance with international conventions regarding baggage liability, which adds a layer of legal responsibility. This responsibility is critical as it directly affects customer satisfaction and the airline's reputation. Failure to manage baggage claims effectively can lead to legal disputes and financial repercussions for the airline. [Data: Entities (250), Relationships (193)]\n\n## Contract of carriage outlines liability terms\n\nThe contract of carriage is a fundamental document that outlines the terms and conditions under which EL AL Israel Airlines operates, particularly concerning baggage liability. This contract serves as a legal framework that defines the airline's obligations and the limitations of its liability. Understanding this contract is essential for both the airline and its customers, as it sets expectations regarding what can be claimed in the event of lost or damaged baggage. [Data: Entities (260), Relationships (361)]\n\n## Liability limitations for fragile items\n\nEL AL Israel Airlines may refuse to accept liability for fragile items if they are lost or damaged. This limitation is significant as it informs customers about the risks associated with traveling with fragile items. The airline's policy on fragile items can impact customer decisions and may lead to dissatisfaction if expectations are not clearly communicated. This aspect of liability is crucial for maintaining trust and transparency with customers. [Data: Entities (256), Relationships (357)]\n\n## Liability limitations for perishable items\n\nSimilar to fragile items, EL AL Israel Airlines may also refuse to accept liability for perishable items if they are lost or damaged. This policy is important for customers who may be traveling with food or other perishable goods. The airline's stance on perishable items can affect customer choices and their overall experience, especially if they are not adequately informed about these limitations prior to travel. [Data: Entities (257), Relationships (358)]\n\n## Liability limitations for valuable items\n\nThe airline's policy regarding valuable items, which include cash, jewelry, and electronics, indicates that EL AL Israel Airlines may refuse to accept liability for these items if they are lost or damaged. This limitation is particularly relevant for travelers carrying high-value goods, and it underscores the importance of understanding the airline's liability policies. Customers need to be aware of these limitations to avoid potential losses and dissatisfaction. [Data: Entities (258), Relationships (359)]\n\n## International conventions governing liability\n\nInternational conventions play a vital role in governing the liability of carriers like EL AL Israel Airlines regarding baggage claims. These legal frameworks establish the baseline for liability and ensure that airlines adhere to certain standards. Understanding these conventions is essential for both the airline and its customers, as they provide a legal context for baggage claims and the airline's responsibilities. [Data: Entities (259), Relationships (360)]", "# Baggage Claims Community\n\nThe Baggage Claims Community is centered around the Baggage Claims Department, which coordinates with various service providers and cities to manage baggage issues. Key entities include service providers like WeShoes, Memsi Touring, and Shin Tik, as well as cities such as Kiryat Ono and Ramat Gan, which host stores related to baggage services.\n\n## Central role of the Baggage Claims Department\n\nThe Baggage Claims Department is the core entity in this community, responsible for managing reports of damaged baggage and processing claims. This department plays a crucial role in ensuring that passengers receive assistance and compensation for baggage issues, which is vital for maintaining customer satisfaction in the travel industry. The department's relationships with various service providers and cities enhance its operational capabilities, making it a pivotal player in the baggage handling ecosystem. [Data: Entities (114); Relationships (222, 235, 240, 236, 238, +more)]\n\n## Diverse service providers supporting baggage claims\n\nMultiple service providers, including WeShoes, Memsi Touring, and Shin Tik, are linked to the Baggage Claims Department, offering various services that assist with baggage handling and claims. These providers contribute to the efficiency of the claims process by offering specialized services that can expedite the resolution of baggage issues. Their involvement is crucial for the department's ability to manage claims effectively, thereby enhancing the overall travel experience for passengers. [Data: Entities (208, 209, 211); Relationships (238, 239, 241, 242, +more)]\n\n## Importance of the Digital Contact Form\n\nThe Digital Contact Form is a key tool used by passengers to report baggage issues to the Baggage Claims Department. This form streamlines the claims process, allowing for quicker reporting and resolution of baggage problems. Its integration into the claims management system is essential for improving passenger experience, as it provides a user-friendly method for submitting claims. [Data: Entities (206); Relationships (236)]\n\n## Geographical distribution of baggage-related services\n\nCities such as Kiryat Ono, Ramat Gan, Gevataim, and others host various stores and services related to baggage handling. This geographical distribution indicates a well-established network of support for the Baggage Claims Department, allowing passengers to access assistance and services conveniently. The presence of these cities in the community highlights the importance of local partnerships in enhancing the efficiency of baggage claims processing. [Data: Entities (213, 214, 215, 216, 217, 218); Relationships (243, 244, 245, 246, 247, 248)]\n\n## Collaboration with airlines\n\nThe Baggage Claims Department operates under EL AL Israel Airlines Ltd., which emphasizes the department's role in the airline's customer service strategy. This collaboration ensures that baggage issues are addressed promptly, reflecting the airline's commitment to passenger satisfaction. The relationship with the airline is critical for the department's operational success, as it aligns the baggage claims process with the airline's overall service standards. [Data: Relationships (235)]", "# Ben Gurion Airport and Animal Transport Community\n\nThe community centers around Ben Gurion Airport, which serves as the primary hub for animal transport in Israel, particularly through EL AL Israel Airlines and the Veterinary Services that manage the authorization process for transporting pets. The interconnections among these entities highlight the regulatory and operational framework governing animal transport.\n\n## Ben Gurion Airport as a central hub for animal transport\n\nBen Gurion Airport is the main international airport in Israel and plays a crucial role in the transport of animals, particularly pets. It serves as the primary location where animals are released after transport, making it a key entity in the community. The airport's operations are closely linked with EL AL Israel Airlines and the Veterinary Services, which oversee the necessary regulations for animal transport. This centrality means that any issues at the airport could have widespread implications for animal welfare and compliance with transport regulations. [Data: Entities (54), Relationships (19, 131, 184)]\n\n## Role of EL AL Israel Airlines in animal transport\n\nEL AL Israel Airlines Ltd. is a significant player in this community, operating flights that include the transport of animals. The airline is responsible for managing baggage claims, which includes pets, and ensuring that animals are released at Ben Gurion Airport. The relationship between EL AL and the airport is vital for understanding how animal transport is facilitated, and any operational disruptions could impact the safe transport of animals. [Data: Entities (205), Relationships (19, 184)]\n\n## Veterinary Services' regulatory oversight\n\nThe Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes issuing flight permits and ensuring compliance with health regulations. Their role is critical in maintaining the safety and welfare of animals during transport, and any lapses in this process could lead to significant public health concerns. The Veterinary Services' relationship with Ben Gurion Airport underscores their importance in the community. [Data: Entities (18), Relationships (131, 4)]\n\n## Authorization process for animal transport\n\nThe authorization process is a key component of the community, involving obtaining necessary permits and performing animal tests before transport. This process is managed by the Veterinary Services to ensure compliance with regulations. The effectiveness of this process directly impacts the safety and legality of animal transport, making it a critical area of focus for stakeholders involved in this community. [Data: Entities (20), Relationships (130)]\n\n## Interconnectedness of entities\n\nThe relationships among Ben Gurion Airport, EL AL Israel Airlines, and Veterinary Services illustrate a complex network of interdependencies that are essential for the smooth operation of animal transport. Each entity plays a specific role that contributes to the overall functionality of the community, and disruptions in one area can have cascading effects on the others. Understanding these relationships is crucial for stakeholders to navigate potential challenges in animal transport. [Data: Relationships (19, 131, 184)]", "# Animal Transport Documentation in Israel\n\nThe community focuses on the essential documentation required for the transportation of animals to and from Israel, including the Certificate of Good Health and the Rabies Antibody Test. These entities are interconnected through various relationships that outline the requirements for compliance with regulations governing animal transport.\n\n## Importance of Documentation for Animal Transport\n\nThe entity 'DOCUMENTS' encompasses all essential paperwork required for transporting animals to and from Israel. This includes specific documents necessary for obtaining authorization to transport an animal into the country. The requirement for passengers to have all necessary documentation readily available is crucial for compliance with regulations regarding animal transport. Failure to complete these documents can lead to significant delays or denial of transport, impacting both the animals and their owners. [Data: Entities (60), Relationships (66, 132, 202, 180, 185)]\n\n## Role of the Certificate of Good Health\n\nThe 'CERTIFICATE OF GOOD HEALTH' is a vital document required for transporting pets, ensuring that they are fit for travel. This certificate confirms the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey. The relationships with the Cargo Division and Veterinary Services Department highlight its necessity, as these entities require this certificate for compliance with transport regulations. [Data: Entities (43), Relationships (115, 151, 180)]\n\n## Rabies Antibody Test Requirement\n\nThe 'RABIES ANTIBODY TEST' is a specific requirement to confirm that the animal has been vaccinated against rabies. This test is crucial for ensuring public health and safety, as rabies is a serious disease that can be transmitted to humans. The relationship between the rabies test and the documentation required for transport emphasizes the importance of this test in the overall compliance process. [Data: Entities (55), Relationships (185)]\n\n## Interconnectedness of Documentation Entities\n\nThe relationships among the entities highlight the interconnectedness of the documentation required for animal transport. For instance, the Certificate of Good Health is linked to both the DOCUMENTS entity and the Rabies Antibody Test, indicating that these documents must be completed in conjunction to ensure compliance. This interconnectedness underscores the complexity of the requirements for transporting animals and the need for thorough preparation by passengers. [Data: Relationships (66, 115, 151, 180, 185)]\n\n## Passenger Responsibilities\n\nPassengers are required to have all necessary documents available for their flight, which includes the completion of the DOCUMENTS entity. This responsibility places a significant burden on pet owners, as they must ensure that all paperwork is in order before travel. The potential for oversight in documentation can lead to complications during travel, emphasizing the importance of awareness and preparation among passengers. [Data: Relationships (202)]", '# Lithium-Ion Battery Regulations and Transport\n\nThe community focuses on the regulations and classifications surrounding lithium-ion batteries and their transport, particularly in the context of air travel. Key entities include various types of batteries, regulatory frameworks, and their relationships that dictate how these batteries can be carried on aircraft.\n\n## Lithium-ion batteries are subject to strict transport regulations\n\nLithium-ion batteries are widely used in portable electronic devices but come with specific regulations for air travel. These regulations are crucial for ensuring safety during flights, as lithium-ion batteries can pose fire hazards if not properly managed. The regulations specify watt-hour limits, with larger batteries restricted to two per passenger, highlighting the importance of compliance for travelers. [Data: Entities (388, 406); Relationships (430, 431, 432, 433)]\n\n## Classification of lithium batteries\n\nLithium batteries are classified into lithium-ion and lithium metal types, which affects their transport regulations. Understanding this classification is essential for compliance with air travel regulations, as different types of lithium batteries may have varying restrictions. This classification relationship is significant for manufacturers and consumers alike, as it impacts the types of batteries that can be safely transported. [Data: Entities (406); Relationships (431)]\n\n## Watt-hour limits for battery transport\n\nThe watt-hour capacity of batteries is a critical factor in determining their eligibility for air travel. Batteries with a capacity of 100 watt-hours are allowed in carry-on luggage, while those with a capacity of 160 watt-hours are subject to specific regulations. This distinction is vital for travelers to understand, as exceeding these limits can lead to confiscation or penalties. [Data: Entities (398, 399); Relationships (432, 433)]\n\n## Dry cell alkaline batteries and their transport\n\nDry cell alkaline batteries, such as AA and 9-volt batteries, are also permitted in carry-on baggage, which provides travelers with more options for powering their devices. The inclusion of these batteries alongside lithium-ion batteries in transport regulations indicates a broader understanding of battery safety and management during air travel. This relationship is important for consumers who may not be aware of the differences in battery types and their respective regulations. [Data: Entities (387); Relationships (429)]\n\n## Regulatory framework under 49 CFR\n\nThe 49 CFR outlines the requirements for the transport of hazardous materials, including batteries. This regulatory framework is essential for ensuring that all parties involved in the transport of lithium batteries are aware of the legal requirements and safety measures necessary to prevent incidents. Compliance with these regulations is critical for airlines, manufacturers, and consumers to mitigate risks associated with battery transport. [Data: Entities (402); Relationships (442)]', '# Regulations on Spare Batteries and Portable Chargers\n\nThis community focuses on the regulations surrounding spare batteries and portable chargers, particularly in the context of air travel. The entities are interconnected through safety regulations that dictate how these items must be handled to prevent hazards during flights.\n\n## Spare Batteries and Their Regulations\n\nSpare batteries are critical components in various devices, but they come with stringent regulations when it comes to air travel. Specifically, spare lithium batteries are prohibited from being placed in checked baggage, which highlights the importance of understanding these regulations to ensure safety during flights. The requirement for spare batteries to be insulated and protected from short circuits is crucial to prevent incidents that could jeopardize aircraft safety. [Data: Entities (386, 371); Relationships (421, 428)]\n\n## Prohibited Items in Air Travel\n\nThe classification of spare batteries and portable chargers as prohibited items in checked baggage underscores the heightened safety concerns associated with these entities. The regulations are designed to mitigate risks, particularly with lithium batteries, which can pose fire hazards if not handled correctly. Understanding what constitutes a prohibited item is essential for travelers to avoid penalties and ensure compliance with aviation safety standards. [Data: Entities (371, 389); Relationships (421, 422)]\n\n## Insulation and Protection Requirements\n\nInsulation and the use of non-conductive caps are mandatory for spare batteries to prevent short circuits during transport. These requirements are critical in ensuring that batteries do not inadvertently discharge or cause fires while aboard an aircraft. The relationships between spare batteries, insulation, and non-conductive caps highlight the interconnected nature of safety regulations in air travel. [Data: Entities (416, 404); Relationships (428, 427)]\n\n## Portable Chargers as Lithium Batteries\n\nPortable chargers are classified as lithium batteries and are subject to the same regulations as spare lithium batteries. This classification means they are also prohibited in checked baggage and must be carried in the cabin. The implications of this classification are significant for travelers, as they must be aware of the restrictions to avoid complications during security checks. [Data: Entities (389); Relationships (435, 422)]\n\n## Interconnectedness of Battery Regulations\n\nThe relationships among spare batteries, portable chargers, and their respective regulations illustrate a complex web of safety measures designed to protect air travel. Each entity plays a role in the broader context of aviation safety, and understanding these connections is vital for compliance and risk management. The regulations are not standalone; they are part of a comprehensive approach to ensuring the safety of passengers and crew. [Data: Relationships (426, 435)]', '# Lithium Battery Transport Regulations\n\nThe community focuses on the regulations surrounding the transport of various types of batteries, including lithium metal and non-spillable wet batteries, particularly in the context of air travel. The entities are interconnected through specific guidelines that dictate how these batteries can be carried in carry-on baggage, ensuring safety and compliance with aviation standards.\n\n## Carry-on baggage regulations for lithium batteries\n\nCarry-on baggage regulations allow for the transport of lithium-ion batteries under specific watt-hour limits, which is crucial for ensuring passenger safety during air travel. These regulations are designed to mitigate the risks associated with lithium batteries, which can pose fire hazards if damaged or improperly handled. The guidelines specify that lithium-ion batteries must not exceed certain watt-hour ratings to be permitted in carry-on luggage, thus balancing convenience for travelers with safety measures. [Data: Entities (396); Relationships (430)]\n\n## Non-spillable wet batteries and their transport\n\nNon-spillable wet batteries are allowed in carry-on baggage if they meet specified voltage and watt-hour limits, making them a safer option for air travel. These batteries are designed to prevent leakage, which is a significant safety concern when transporting batteries on aircraft. The regulations stipulate that these batteries must not exceed 12 volts, ensuring compliance with safety standards while providing flexibility for users. This careful regulation helps to minimize the risk of battery-related incidents during flights. [Data: Entities (394); Relationships (438, 439)]\n\n## Restrictions on lithium metal batteries\n\nLithium metal batteries can be brought aboard aircraft in carry-on baggage if they meet specific weight restrictions, which is essential for maintaining safety in air travel. These batteries are commonly used in smaller electronic devices, and their transport is regulated to prevent potential hazards. The regulations specify that consumer-grade lithium metal batteries must contain no more than 2 grams of lithium, which is a critical factor in reducing the risk of fire or explosion during transport. [Data: Entities (393); Relationships (436, 437)]\n\n## Importance of strong outer packaging\n\nBatteries must be packaged in strong outer packaging to prevent damage and leakage during transport, which is a key safety requirement. This regulation is particularly important for non-spillable wet batteries, as proper packaging can significantly reduce the risk of incidents during air travel. The requirement for strong outer packaging ensures that batteries are protected from physical damage, which could lead to dangerous situations if the batteries were to leak or short-circuit. [Data: Entities (403); Relationships (440)]\n\n## Handling requirements for electronic devices\n\nElectronic devices with non-removable lithium batteries must be stored in the aircraft hold, indicating a specific handling requirement that enhances safety. This regulation is in place to mitigate risks associated with lithium batteries that cannot be removed from the device, ensuring that any potential hazards are managed effectively. By requiring these devices to be stored in the hold, airlines can better control the environment and reduce the likelihood of incidents related to battery overheating or fire. [Data: Entities (385); Relationships (385)]'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:33,187 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE75AC00>, 'json_data': {'input': ["# Electronic Devices and Lithium Battery Regulations\n\nThis community focuses on the regulations surrounding electronic devices and spare lithium batteries during air travel. The entities are interconnected through strict guidelines that dictate how these items should be stored and transported to ensure passenger safety.\n\n## Regulations on electronic devices during flights\n\nElectronic devices, such as laptops and phones, must be kept accessible during flights, with specific regulations regarding their storage based on battery type. Devices with non-removable lithium batteries must be stored in the aircraft hold, while those with removable batteries require the battery to be taken aboard the cabin. This distinction is crucial for ensuring safety during air travel, as improper storage can lead to fire hazards. [Data: Entities (284); Relationships (385, 387)]\n\n## Prohibition of spare lithium batteries in checked baggage\n\nSpare lithium batteries are prohibited in checked baggage and must be taken aboard the aircraft cabin. This regulation is in place to mitigate the risk of fire, as lithium batteries can pose significant hazards if damaged or short-circuited. The relationship between spare lithium batteries and electronic devices highlights the importance of proper handling and storage to prevent incidents during flights. [Data: Entities (407); Relationships (434, 387)]\n\n## Flammable materials and electronic devices\n\nFlammable materials, such as hairspray, are subject to strict regulations and must not be stored alongside electronic devices containing lithium batteries. This regulation is designed to prevent potential hazards that could arise from the combination of flammable substances and electronic devices, emphasizing the need for careful consideration of what items are packed together in baggage. [Data: Entities (405); Relationships (386)]\n\n## Interconnected regulations for portable chargers\n\nPortable chargers, like spare lithium batteries, are also prohibited in checked baggage and must be taken aboard the aircraft cabin. This regulation underscores the importance of ensuring that all battery-powered devices are handled according to safety guidelines to prevent incidents during air travel. The relationship between portable chargers and spare lithium batteries indicates a broader concern for battery safety in aviation. [Data: Relationships (435)]\n\n## Safety implications of improper storage\n\nThe community's regulations highlight the significant safety implications of improper storage of electronic devices and batteries. The potential for fire hazards necessitates strict adherence to guidelines, as violations could lead to dangerous situations on board. Understanding these regulations is essential for passengers to ensure their safety and the safety of others during flights. [Data: Relationships (292, 386)]", "# EL AL Airline and Animal Transport Community\n\nThe community centers around EL AL, an airline with specific policies and regulations regarding the transportation of animals, including pets and service dogs. The entities within this community are interconnected through various relationships that govern baggage handling, cargo transport, and compliance with international regulations.\n\n## EL AL's comprehensive animal transport policies\n\nEL AL has established detailed policies for the transportation of animals, including pets and service dogs. These policies outline specific weight limits, conditions for cabin transport, and requirements for documentation. For instance, pets transported in the cabin must not exceed 9 kg, including their cage, while larger animals may need to be transported as checked baggage or through the Cargo Division. This structured approach ensures that all animals are transported safely and in compliance with regulations [Data: Entities (1, 12, 7); Relationships (17, 10, 14)].\n\n## Role of the Cargo Division in animal transport\n\nThe Cargo Division of EL AL plays a crucial role in managing the transport of animals, particularly those that are oversized or unaccompanied. This division is responsible for ensuring that all necessary documentation is provided for transporting animals as cargo, including health certificates and transport authorizations. The Cargo Division's expertise in handling special requests and approvals is vital for the safe transport of various types of cargo, especially animals [Data: Entities (12); Relationships (10, 19)].\n\n## Compliance with international regulations\n\nEL AL must adhere to various international regulations when transporting animals, including compliance with the CDC regulations for dogs being transported to the US. This compliance is essential to ensure the safety and legality of animal transport across borders. The airline's policies reflect a commitment to meeting these regulatory requirements, which helps mitigate potential legal issues and enhances the safety of animal transport [Data: Relationships (16)].\n\n## Baggage handling and associated claims\n\nEL AL is responsible for managing baggage, including issues related to delays, damages, and claims. The airline has specific policies regarding baggage measurements and weight limits, which are crucial for ensuring that all items, including animals, are transported according to regulations. Claims related to baggage issues are addressed through established procedures, highlighting the airline's commitment to customer service and compliance [Data: Entities (24); Relationships (28)].\n\n## Potential risks associated with transporting hazardous materials\n\nTransporting hazardous materials, such as dry ice, requires special handling and declaration when traveling with EL AL. The airline mandates advance notice and the completion of a Declaration Form for such materials, ensuring compliance with safety regulations. This aspect of the airline's operations underscores the importance of adhering to safety protocols to prevent incidents during transport [Data: Entities (421, 423); Relationships (49)].\n\n## Impact of baggage policies on passenger experience\n\nEL AL's baggage policies significantly impact the passenger experience, particularly regarding the transportation of pets and other items. The airline offers a 50% discount on baggage fees if purchased online before the flight, which can encourage passengers to plan ahead. Additionally, the maximum size and weight limits for checked baggage are clearly defined, helping passengers avoid unexpected fees and ensuring a smoother travel experience [Data: Entities (354, 354); Relationships (42, 44)].", "# Checked Baggage and Airline Policies\n\nThe community focuses on the policies and regulations surrounding checked baggage, particularly in relation to EL AL and its associated entities. Key entities include checked baggage, excess baggage charges, and specific items like bicycles and ski equipment, all of which are interconnected through various airline policies and fees.\n\n## EL AL's comprehensive baggage policies\n\nEL AL has established detailed guidelines for transporting checked baggage, which includes specific provisions for animals and sporting equipment. These policies are crucial for ensuring compliance with safety and regulatory standards in air travel. The airline's baggage policy is comparable to that of Sundor, indicating a broader industry standard that influences checked baggage regulations. This interconnectedness highlights the importance of understanding these policies for both passengers and the airline. [Data: Entities (5), Relationships (11, 88, 90, 102, 109)]\n\n## Excess baggage charges and their implications\n\nExcess baggage charges are a significant aspect of air travel, impacting passengers financially when their luggage exceeds the allowed limits. These charges apply to various types of baggage, including sporting equipment and special items like bicycles. Understanding these fees is essential for travelers to avoid unexpected costs and ensure compliance with airline policies. The relationship between checked baggage and excess baggage charges is critical in managing travel expenses effectively. [Data: Entities (183, 349), Relationships (90, 101, 305)]\n\n## Transporting bicycles under specific conditions\n\nBicycles can be transported as checked baggage if they meet specific size and weight dimensions, which is a crucial consideration for travelers who wish to bring their bikes. The EL AL call center plays a vital role in pre-approving the transport of bicycles, ensuring that all regulations are adhered to. This process highlights the importance of communication between passengers and the airline to facilitate smooth travel experiences. [Data: Entities (187), Relationships (93, 120, 333)]\n\n## Ski and snowboard equipment transport regulations\n\nSki and snowboard equipment can be included in checked baggage under specific conditions, which is essential for winter sports enthusiasts. The airline's policies regarding these items often include provisions for complimentary transport under certain circumstances. Understanding these regulations is vital for travelers to ensure their equipment is transported safely and without incurring additional fees. [Data: Entities (179, 186), Relationships (91, 325, 326)]\n\n## The role of local currency in baggage fees\n\nAt some airports, payment for excess baggage charges may only be accepted in local currency, which can complicate the travel experience for international passengers. This aspect emphasizes the need for travelers to be aware of the payment methods accepted at their departure and arrival airports to avoid issues during their journey. The relationship between local currency and excess baggage rates is crucial for effective financial planning while traveling. [Data: Entities (185, 182), Relationships (331, 332)]", "# Ben Gurion Airport and Animal Transport Community\n\nThe community centers around Ben Gurion Airport, which serves as the primary hub for animal transport in Israel. Key entities include EL AL Israel Airlines, the Baggage Claims Department, and Veterinary Services, all of which play critical roles in ensuring compliance and facilitating the transport of animals.\n\n## Ben Gurion Airport as a central hub for animal transport\n\nBen Gurion Airport is the main international airport in Israel and serves as a critical hub for the transport of animals. It is where animals are released after transport, and it requires compliance with various regulations regarding their movement. The airport's role is pivotal in ensuring that all necessary documentation and health checks are completed before animals are allowed to travel. This centrality in the transport process makes it a key player in the community's dynamics. [Data: Entities (54); Relationships (19, 183, 131)]\n\n## Role of EL AL Israel Airlines in animal transport\n\nEL AL Israel Airlines is a significant entity in this community, operating flights that include the transport of animals. The airline is responsible for ensuring that all baggage, including pets, is handled according to regulations. Their operations at Ben Gurion Airport are crucial for the safe and compliant transport of animals, making them a key stakeholder in this community. [Data: Entities (205); Relationships (19, 184)]\n\n## Importance of the Baggage Claims Department\n\nThe Baggage Claims Department plays a vital role in managing reports of lost or damaged baggage, which includes animals transported by air. This department coordinates with various service providers to ensure that claims are processed efficiently, enhancing the overall travel experience for passengers. Their operations are essential for maintaining trust and satisfaction among travelers, particularly those transporting pets. [Data: Entities (114); Relationships (222, 235)]\n\n## Veterinary Services and regulatory compliance\n\nVeterinary Services, operating under the Ministry of Agriculture, is responsible for overseeing the authorization process for transporting pets. This includes issuing flight permits and ensuring that all health regulations are met. Their involvement is crucial for public health and safety, as they ensure that only healthy animals are transported, thereby preventing potential health risks. [Data: Entities (18); Relationships (4, 131)]\n\n## Documentation requirements for animal transport\n\nThe transport of animals requires specific documentation, including a Certificate of Good Health and other essential papers. Passengers must ensure that all necessary documents are completed to comply with regulations. This requirement underscores the importance of proper documentation in facilitating safe and legal transport of animals, which is a critical aspect of the community's operations. [Data: Entities (60, 43); Relationships (180, 115)]", '# Regulations on Electronic Devices and Lithium Batteries\n\nThis community focuses on the regulations surrounding electronic devices and lithium batteries during air travel. The entities are interconnected through specific guidelines that dictate how these items should be handled, stored, and transported to ensure safety and compliance with aviation regulations.\n\n## Importance of Carry-On Baggage for Electronic Devices\n\nElectronic devices must be kept in carry-on baggage for easy access during flights, highlighting their significance in passenger travel. This requirement ensures that passengers can use their devices during the flight while adhering to safety regulations. The relationship between electronic devices and carry-on baggage is crucial, as it dictates how these items are managed in the cabin. Improper storage could lead to safety hazards, particularly with devices containing lithium batteries, which have specific handling requirements [Data: Entities (284), Relationships (292, 385)].\n\n## Regulations on Lithium-Ion Batteries\n\nLithium-ion batteries are subject to strict regulations regarding their transport on aircraft, particularly concerning watt-hour limits. Passengers are allowed to carry lithium-ion batteries in their carry-on baggage, but those exceeding 100 watt-hours face restrictions. This regulation is essential for preventing potential hazards associated with battery malfunctions during flights. The classification of lithium-ion batteries and their relationship with carry-on baggage underscores the importance of compliance with these regulations [Data: Entities (388), Relationships (430, 432, 433)].\n\n## Handling of Spare Batteries\n\nSpare batteries, particularly lithium-ion types, are allowed on aircraft under specific conditions. Passengers must ensure that these batteries are insulated and protected from short circuits to prevent safety incidents. The relationship between spare batteries and their handling requirements is critical, as improper management could lead to dangerous situations during air travel. Regulations dictate that spare lithium batteries cannot be placed in checked baggage, emphasizing the need for awareness among travelers [Data: Entities (386, 407), Relationships (426, 428, 421)].\n\n## Prohibitions on Certain Items\n\nCertain items, including flammable materials and spare lithium batteries, are prohibited in checked baggage due to safety concerns. This regulation is in place to prevent potential hazards that could arise from the combination of these items with electronic devices. The relationship between prohibited items and the handling of electronic devices highlights the importance of adhering to safety regulations to ensure a secure travel environment [Data: Entities (371, 405), Relationships (421, 386)].\n\n## Regulatory Framework Under 49 CFR\n\nThe transport of lithium batteries is governed by the 49 CFR, which outlines the requirements for hazardous materials in aviation. This regulatory framework is crucial for ensuring the safe transport of electronic devices and batteries, as it provides guidelines that must be followed by passengers and airlines alike. The relationship between lithium batteries and the 49 CFR emphasizes the importance of compliance with federal regulations to mitigate risks associated with air travel [Data: Entities (402), Relationships (442)].', "# Animal Transportation Regulations\n\nThe community focuses on the regulations and guidelines surrounding the transportation of animals, including specific weight limits and restrictions at various airports. Key entities include weight classifications for animals, transport methods, and guidelines set by authorities.\n\n## Weight classifications are critical for transport\n\nThe weight of an animal is a crucial factor in determining how it can be transported. Animals weighing up to 9 kg can travel in the cabin, while those over 100 kg must be transported as registered cargo. This classification affects not only the comfort of the animals but also compliance with airline regulations. The distinction between cabin and cargo transport is essential for ensuring the safety and well-being of the animals during travel [Data: Entities (58, 59, 41); Relationships (159, 160)].\n\n## Airports impose restrictions on animal transport\n\nSeveral airports, including Amsterdam, Boston, and Mumbai, have specific regulations that prohibit the transport of animals as registered cargo. This restriction can significantly impact travel plans for pet owners and may require them to seek alternative routes or methods for transporting their animals. Understanding these restrictions is vital for compliance and planning [Data: Entities (62, 63, 64); Relationships (162, 161, 163)].\n\n## Guidelines ensure compliance with transport regulations\n\nThe guidelines established by destination authorities dictate the necessary requirements for transporting animals. These guidelines are essential for ensuring that all transport activities comply with safety and welfare standards, which can vary significantly from one country to another. Adhering to these guidelines is crucial for avoiding legal issues and ensuring the well-being of the animals [Data: Entities (40); Relationships (156)].\n\n## Permits and cages are mandatory for safe transport\n\nTransporting animals requires specific permits and the use of cages to ensure their safety during travel. The necessity of these items highlights the importance of compliance with regulations and the welfare of the animals. Failure to secure the appropriate permits or use proper cages can lead to legal repercussions and jeopardize the animals' safety [Data: Entities (41); Relationships (148, 141)].\n\n## EL AL's role in animal transport\n\nEL AL provides transport services for animals across various classes, indicating a structured approach to animal transportation. This service is significant as it reflects the airline's commitment to adhering to regulations while providing options for pet owners. The relationship between EL AL and animal transport underscores the importance of choosing compliant carriers for safe travel [Data: Relationships (17)].", "# Airline Baggage Policies and Sporting Equipment Transport\n\nThis community encompasses various entities related to airline baggage policies, specifically focusing on carry-on and checked baggage allowances, as well as the transport of sporting equipment. Key entities include EL AL, Sundor, and different travel classes, which are interconnected through their baggage regulations and services.\n\n## EL AL's comprehensive baggage policies\n\nEL AL has established specific policies regarding carry-on and checked baggage, which are crucial for passengers to understand their allowances. For instance, business class passengers are allowed to check up to two pieces of baggage weighing up to 32 kg each, while premium class passengers can check two pieces weighing up to 23 kg each. These policies are essential for ensuring compliance and avoiding additional fees during travel [Data: Relationships (37, 36)].\n\n## Sundor's alignment with baggage regulations\n\nSundor shares similar baggage policies with EL AL, particularly concerning checked baggage allowances and fees. This alignment indicates a broader industry standard that passengers can expect when traveling with these airlines. Understanding these policies is vital for travelers, especially those transporting sporting equipment, as they may face different weight and size restrictions [Data: Relationships (35, 109)].\n\n## Importance of weight and dimensions in baggage transport\n\nWeight and dimensions are critical factors in determining baggage eligibility for transport. For example, sporting equipment must adhere to specific weight limits, such as 30 kg for Economy Class and 32 kg for Business Class. Additionally, the maximum dimension limit for sporting equipment is set at 190 cm for Economy and Premium Class, which is essential for ensuring that items can be transported without incurring extra fees [Data: Relationships (306, 313, 301)].\n\n## Overweight and oversized baggage considerations\n\nPassengers must be aware of the implications of overweight and oversized baggage, which require special handling and may incur additional fees. For instance, sporting equipment exceeding the standard weight limits can be classified as overweight baggage, leading to extra charges. Understanding these classifications is crucial for travelers to avoid unexpected costs [Data: Relationships (304, 321)].\n\n## Cargo services for sporting equipment\n\nThe EL AL Cargo Division provides specialized services for transporting sporting equipment that exceeds standard baggage limits. This service is particularly beneficial for athletes and sports enthusiasts who need to transport larger or heavier gear. By utilizing cargo services, passengers can ensure their equipment is handled appropriately and transported safely [Data: Relationships (299, 155)].\n\n## Impact of frequent flyer status on baggage allowances\n\nMembership in the Matmid Frequent Flyer Club can influence carry-on baggage allowances, potentially providing enhanced privileges for members. This aspect of airline travel highlights the importance of loyalty programs in shaping the travel experience, particularly regarding baggage policies [Data: Relationships (369)].\n\n## Role of booking management in baggage policies\n\nBooking management systems play a crucial role in informing passengers about their carry-on baggage allowances and policies. By providing access to this information, airlines can facilitate a smoother travel experience and help passengers avoid issues related to baggage compliance [Data: Relationships (373)].\n\n## Differentiation of Economy Class fare types\n\nEconomy Class includes various fare types, such as Lite Fares, which impose restrictions on the transport of sporting equipment. Understanding these distinctions is essential for travelers to ensure they select the appropriate fare that meets their baggage needs [Data: Relationships (309, 307)].", "# El Al Baggage Policies\n\nThe community focuses on the baggage policies of El Al, detailing the specifications for carry-on and personal bags, including weight and dimension limits. The relationships among the entities highlight the importance of compliance with these regulations for passengers traveling with El Al.\n\n## El Al's specific baggage policies\n\nEl Al has established specific policies regarding the dimensions and weight limits for carry-on bags and personal bags. These policies are crucial for ensuring that passengers comply with airline regulations, which helps maintain safety and efficiency during boarding. The relationships between the entities indicate that understanding these policies is essential for passengers to avoid issues at the airport. [Data: Relationships (31, 30)]\n\n## Weight limits for carry-on bags\n\nThe maximum weight limit for a carry-on bag is set at 16 kg, while the combined weight limit for all bags is 20 kg. These limits are critical for passengers to know, as exceeding them can lead to additional fees or the need to check bags. The relationship between the '16 KG' and '20 KG' entities with the 'CARRY-ON BAG' entity emphasizes the importance of these weight restrictions in the context of air travel. [Data: Relationships (382, 384)]\n\n## Dimension restrictions for personal bags\n\nThe maximum dimensions for a personal bag are specified as 18 cm in height, 38 cm in width, and 30 cm in depth. These restrictions are important for passengers to ensure their personal items can be accommodated in the cabin. The relationship between the 'PERSONAL BAG' and its dimension specifications highlights the need for compliance to avoid inconvenience during boarding. [Data: Relationships (393)]\n\n## Oversized items require special arrangements\n\nOversized items, such as musical instruments, may require prior coordination with the airline and could necessitate an extra seat for transport. This policy is significant for passengers traveling with such items, as failure to arrange for their transport could result in last-minute complications. The relationship between 'OVERSIZED ITEMS' and 'SERVICE CENTER' indicates that passengers must engage with the service center for approval, underscoring the need for proactive communication with the airline. [Data: Relationships (400)]\n\n## Duty-free items and baggage allowance\n\nDuty-free items purchased at the airport can be carried on board without counting towards the baggage allowance. This is an important consideration for travelers, as it allows them to bring additional items without impacting their baggage limits. The relationship between 'DUTY-FREE ITEMS' and 'BAG' illustrates how these items fit into the overall baggage policy framework. [Data: Relationships (392)]", "# Baggage Policies and Allowances in Air Travel\n\nThis community focuses on the various baggage policies and allowances associated with air travel, particularly those of EL AL and related entities. The relationships among these entities highlight the complexities of baggage regulations, ticket types, and additional fees that passengers may encounter.\n\n## EL AL's baggage allowance policies\n\nEL AL has specific baggage allowance policies that vary based on the ticket type purchased by the passenger. This means that passengers must be aware of their ticket type to understand their baggage rights fully. The relationship between baggage allowance and ticket type is crucial, as it directly affects how much luggage a passenger can check in without incurring extra fees. [Data: Relationships (44, 410)]\n\n## Importance of baggage policy\n\nThe baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers can check in or carry on. This policy is essential for ensuring compliance with safety standards and facilitating a smooth travel experience. The baggage policy is interconnected with various entities, including baggage allowance and standard baggage definitions, which further complicates the travel experience for passengers. [Data: Entities (341); Relationships (200, 413)]\n\n## Standard baggage and its implications\n\nStandard baggage refers to luggage that complies with the airline's specified size and weight requirements. Understanding what constitutes standard baggage is vital for passengers to avoid additional fees. The relationship between standard baggage and the baggage policy indicates that passengers must adhere to specific guidelines to ensure their luggage is accepted without extra charges. [Data: Entities (345); Relationships (201, 418)]\n\n## Excess baggage rates and their impact\n\nExcess baggage rates are the fees charged for baggage that exceeds the allowed limit. These rates can vary significantly, and passengers need to be aware of them to avoid unexpected costs. The relationship between excess baggage rates and baggage allowance highlights the financial implications of not adhering to the specified limits, which can lead to increased travel expenses. [Data: Entities (362); Relationships (412, 330)]\n\n## Role of ticket types in baggage allowances\n\nThe ticket type plays a crucial role in determining the baggage allowance for passengers. Different ticket types, such as Lite, Classic, and Flex services, come with varying baggage allowances, which can lead to confusion if not clearly understood. This relationship emphasizes the need for passengers to be informed about their ticket type to manage their baggage effectively. [Data: Entities (355); Relationships (405, 406, 407)]\n\n## Manage Your Booking service\n\nThe 'Manage Your Booking' service allows passengers to view and modify their flight details, including baggage allowances. This online service is essential for travelers who need to adjust their baggage arrangements, providing them with the flexibility to manage their travel plans conveniently. The relationship between this service and additional pieces of baggage indicates that passengers can add luggage through this platform, which is crucial for those needing to check in more than the standard allowance. [Data: Entities (334); Relationships (414, 211)]", "# Service Dog Transportation Community\n\nThe community focuses on the transportation of service dogs, particularly in relation to airline policies, passenger requirements, and regulatory compliance. Key entities include EL AL, service dogs, passengers, and regulatory bodies like the CDC, all interconnected through specific guidelines and requirements for safe travel.\n\n## EL AL's policies on service dogs\n\nEL AL has established specific policies regarding the transportation of service dogs, allowing them to be transported without the weight limit that applies to other pets. These policies include requirements for documentation and behavior during the flight, ensuring that service dogs are accommodated under different conditions than other pets. This is crucial for passengers with disabilities who rely on service dogs for assistance during travel. [Data: Relationships (5, 21, 16)]\n\n## Passenger requirements for traveling with service dogs\n\nPassengers traveling with service dogs must meet specific requirements set by EL AL, including providing necessary documentation and adhering to airline policies. This ensures a standardized travel experience and compliance with regulations, which is essential for the safety and comfort of both the passengers and their service dogs. [Data: Relationships (22, 65, 66)]\n\n## Regulatory compliance with the CDC\n\nThe CDC establishes regulations and guidelines for the transportation of dogs to the United States, which EL AL must comply with. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. This compliance is vital for public health and safety during the transportation process. [Data: Entities (42), Relationships (16, 58)]\n\n## Importance of veterinary certificates\n\nA veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger, ensuring the health and safety of the dog and other passengers during the flight. [Data: Entities (87), Relationships (54)]\n\n## Role of check-in counters\n\nCheck-in counters are designated areas at the airport where passengers must check in for their flights, including those traveling with service dogs. Passengers must present their documentation for traveling with a service dog at these counters, which serves as an official point for compliance with airline policies. [Data: Entities (105), Relationships (32, 65)]\n\n## Sanitary conditions for service dogs\n\nService dogs must maintain proper sanitary conditions during the flight, as required by airline policies. This includes ensuring that the dog is clean and does not pose a health risk to other passengers. Compliance with these sanitary conditions is essential for the overall safety and comfort of all travelers on board. [Data: Entities (106), Relationships (67)]\n\n## Transporting service dogs in the passenger cabin\n\nService dogs are allowed in the passenger cabin at no additional cost under certain conditions, which is a significant benefit for passengers with disabilities. This policy ensures that these passengers can travel comfortably and safely with their service animals, highlighting the importance of accommodating special needs in air travel. [Data: Relationships (53, 82)]\n\n## Potential additional charges\n\nPassengers may incur additional charges for inspecting and releasing a service dog from airport facilities in the United States. This aspect of the policy can impact the overall cost of travel for passengers with service dogs, making it essential for them to be aware of potential fees associated with their travel plans. [Data: Entities (104), Relationships (64)]", '# Liquid Carry-On Regulations Community\n\nThis community revolves around the regulations and guidelines concerning the carrying of liquids in carry-on bags during air travel. Key entities include various types of liquids, carry-on bags, and associated regulations, all interconnected through specific restrictions and requirements.\n\n## Regulations on Liquids in Carry-On Bags\n\nThe primary focus of this community is the restrictions on liquids that passengers can carry in their carry-on bags. These regulations are crucial for ensuring safety during flights and are enforced at security checkpoints. Passengers must adhere to specific guidelines regarding the amount and type of liquids they can bring, which can significantly affect their travel experience. Non-compliance can lead to confiscation of items at security checkpoints, impacting passenger satisfaction and operational efficiency at airports [Data: Entities (152, 160); Relationships (34, 127, 283, 284, 285)].\n\n## Role of Carry-On Bags\n\nCarry-on bags are essential for passengers as they allow for easy access to personal items during flights. These bags must comply with specific size and weight limitations, and they are subject to the same restrictions regarding liquids. The relationship between carry-on bags and the regulations on liquids highlights the importance of understanding what can be packed to avoid issues at security checkpoints. Passengers are advised to keep medications, passports, and valuables in their carry-on bags for easy access, which further emphasizes the significance of these items in travel [Data: Entities (160); Relationships (292, 288, 289, 290, 291)].\n\n## Specific Types of Liquids\n\nVarious types of liquids, including aerosols, creams, gels, and baby food, are subject to the same restrictions as other liquids in carry-on bags. Understanding these classifications is vital for passengers to ensure compliance with regulations. For instance, baby food is treated as a special item and does not need to be packed in a resealable plastic bag, but it must be presented for inspection at security checkpoints. This nuanced understanding of liquid types can help passengers navigate the complexities of carry-on regulations more effectively [Data: Entities (161, 156, 158, 154, 155); Relationships (281, 279, 278, 286, 287)].\n\n## Security Checkpoint Procedures\n\nThe security checkpoint is a critical area where passengers must present their carry-on items, including liquids, for inspection. Items that exceed the permitted amount will be discarded, which can lead to frustration and delays for travelers. The procedures at these checkpoints are designed to enhance safety but can also create challenges for passengers who may not be fully aware of the regulations. This highlights the need for clear communication and guidance regarding what can and cannot be brought on board [Data: Entities (159); Relationships (284)].\n\n## International Guidelines and Compliance\n\nCountries like Israel and the U.S. have specific guidelines regarding the carrying of liquids in carry-on bags, which can vary from one jurisdiction to another. These international regulations necessitate that passengers remain informed about the rules applicable to their flights, especially when traveling across borders. Compliance with these guidelines is essential for ensuring a smooth travel experience and avoiding potential legal issues or delays at airports [Data: Entities (319); Relationships (127, 285)].', "# ARTY Rimon and Baggage Services Community\n\nThe community is centered around ARTY Rimon, a service provider specializing in baggage pickup and delivery, along with various related entities such as Makor Haziud and Moka. These entities are interconnected through service relationships and shared operational locations, highlighting their collective role in the baggage handling and delivery sector.\n\n## ARTY Rimon as the central service provider\n\nARTY Rimon is the primary entity in this community, specializing in pickup and delivery services for baggage, luggage, and bags. Its extensive network of service locations, including cities like Rehovot, Shoham, Ramle, and Lod, indicates a broad operational reach. The relationships with other entities, such as Moka and Rimon Mizvadot ve Tikim, further emphasize its role as a key player in the baggage handling sector. The effectiveness of ARTY Rimon's services directly impacts customer experiences and satisfaction levels, making it a critical component of this community. [Data: Entities (210); Relationships (240, 343, 344, 348, 349, 350, 351)]\n\n## Makor Haziud's relevance to baggage services\n\nMakor Haziud operates as a specialized store for baggage and outdoor equipment, which complements the services provided by ARTY Rimon. The relationship between these two entities indicates a collaborative dynamic where Makor Haziud may supply essential equipment for baggage handling. This partnership enhances the overall service quality and efficiency of baggage management within the community. Additionally, the store's location in Nes Ziona further integrates it into the local service network, making it a valuable asset for customers seeking baggage solutions. [Data: Entities (207); Relationships (237, 340)]\n\n## Moka's role as a pickup and delivery point\n\nMoka serves as a designated pickup and delivery point for ARTY Rimon, facilitating convenient access for customers in Yehud. This relationship underscores the importance of Moka in the logistics chain, as it provides a physical location for customers to drop off or collect their baggage. The operational synergy between Moka and ARTY Rimon enhances service efficiency and customer satisfaction, making Moka a vital part of the community's infrastructure. [Data: Entities (234); Relationships (352)]\n\n## Competitive dynamics with Rimon Mizvadot ve Tikim\n\nRimon Mizvadot ve Tikim operates in Rishon Le Zion and provides similar pickup and delivery services as ARTY Rimon. This competitive relationship highlights the need for both entities to maintain high service standards to attract and retain customers. The presence of multiple service providers in the same sector can lead to improved service offerings and pricing strategies, ultimately benefiting consumers. However, it also necessitates vigilance regarding service quality to avoid customer dissatisfaction. [Data: Entities (235); Relationships (344, 353)]\n\n## Hagalgal's contribution to the community\n\nHagalgal specializes in baby and children's equipment, providing relevant services that intersect with ARTY Rimon's offerings. This relationship indicates a potential for cross-service opportunities, where customers seeking baby equipment may also require baggage handling services. The collaboration between Hagalgal and ARTY Rimon can enhance customer experiences by offering comprehensive solutions for families traveling with children. [Data: Entities (237); Relationships (345, 355)]\n\n## Policies affecting customer service\n\nThe community is governed by specific policies regarding baggage claims and delays, which are critical for customer service. For instance, the policy requiring contact within 7 days for baggage damage claims and 21 days for delays is essential for maintaining customer trust and satisfaction. These policies not only guide operational procedures but also shape customer expectations, making them a significant aspect of the community's service framework. [Data: Entities (240, 241); Relationships (346, 356)]", "# Pet Transportation Regulations in Israel\n\nThe community focuses on the regulations and processes involved in transporting pets from Israel, including the roles of various entities such as airlines, government ministries, and veterinary services. Key relationships highlight the compliance requirements and specific conditions for transporting animals, particularly in relation to different destinations and methods of transport.\n\n## Regulatory oversight by the Ministry of Agriculture\n\nThe Ministry of Agriculture in Israel plays a crucial role in overseeing the transportation of pets, establishing regulations that must be adhered to by various entities involved in pet transportation. This includes ensuring compliance with health standards and issuing necessary permits. The Ministry's involvement is essential for maintaining the safety and welfare of animals during transport, as it sets the guidelines that airlines and other transport services must follow. [Data: Entities (15), Relationships (0, 3, 1)]\n\n## EL AL's specific policies for pet transport\n\nEL AL Airlines has established specific policies for transporting pets, including weight limits and conditions for cabin transport. These policies are designed to ensure the safety and comfort of both the animals and passengers. The airline's relationship with the Ministry of Agriculture ensures that its practices align with national regulations, which is critical for compliance and operational integrity. [Data: Entities (4), Relationships (7, 18, 12)]\n\n## High-risk designation for Israel\n\nIsrael is classified as a high-risk country for transporting certain animals, particularly dogs, which affects the regulations that must be followed. This classification necessitates additional scrutiny and compliance measures to prevent the spread of diseases. The Centers for Disease Control and Prevention (CDC) has specific guidelines that must be adhered to when transporting animals from Israel, impacting both the process and the documentation required. [Data: Entities (48, 15), Relationships (124, 126)]\n\n## Importance of health documentation\n\nTransporting pets internationally requires various health documents, including an international certificate of good health and laboratory results for rabies antibodies. These documents are essential for ensuring that animals are healthy and meet the entry requirements of destination countries. The Veterinary Services Department is responsible for issuing these certificates, highlighting the importance of veterinary oversight in the transport process. [Data: Entities (29, 80), Relationships (77, 151, 138)]\n\n## Diverse transport methods for pets\n\nPets can be transported using various methods, including as checked baggage, in the passenger cabin, or as registered cargo, depending on their size and weight. Each method has specific requirements and conditions that must be met, which are outlined by the airline and regulatory bodies. Understanding these options is crucial for pet owners to ensure compliance and the safety of their animals during travel. [Data: Entities (4, 6, 31), Relationships (69, 70, 82)]\n\n## Role of veterinarians in the transport process\n\nVeterinarians are integral to the pet transportation process, as they perform necessary health tests and issue required authorizations. Their involvement ensures that all health standards are met before animals are transported, which is vital for preventing the spread of diseases and ensuring the welfare of the animals. This relationship underscores the importance of veterinary services in the broader context of animal transport regulations. [Data: Entities (28), Relationships (78)]"], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:33,188 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DBFD3560>, 'json_data': {'input': ["# Baggage Management Community\n\nThe Baggage Management Community encompasses various entities involved in the handling, reporting, and claims processes related to passenger baggage, particularly focusing on EL AL Israel Airlines and its associated services. The community includes the Baggage Service Center, courier services, and various documentation necessary for managing baggage issues, highlighting the interconnectedness of these entities in ensuring a smooth travel experience for passengers.\n\n## EL AL Israel Airlines as the central entity\n\nEL AL Israel Airlines plays a pivotal role in the baggage management community, being responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability. The airline's policies and procedures directly influence how baggage issues are managed, impacting passenger experiences. The airline's relationship with various entities, such as the Baggage Service Center and the Claims Department, is crucial for effective baggage handling and resolution of issues. [Data: Entities (250); Relationships (24, 193, 361)]\n\n## Baggage Service Center's essential role\n\nThe Baggage Service Center is dedicated to assisting travelers with baggage-related issues, including delays and damages. This center serves as a crucial resource for passengers, providing support and facilitating the claims process. Its coordination with the Claims Department ensures that claims are processed efficiently, which is vital for maintaining passenger trust and satisfaction. The center's ability to manage reports of delayed baggage and coordinate with courier services for delivery further emphasizes its importance in the community. [Data: Entities (113, 202); Relationships (186, 222, 228)]\n\n## Importance of documentation in baggage claims\n\nDocumentation such as flight tickets, boarding passes, and baggage tags is essential for passengers filing claims for lost or damaged baggage. These documents serve as proof of travel and ownership, facilitating the claims process. The requirement for specific documents underscores the structured nature of baggage claims and the importance of proper documentation in ensuring that passengers receive compensation for their issues. The Baggage Service Center provides guidance on the necessary documentation, which is critical for a smooth claims process. [Data: Entities (251, 252, 253); Relationships (194, 195, 196)]\n\n## Courier service enhances passenger experience\n\nThe courier service is responsible for delivering retrieved delayed baggage to passengers' specified addresses, significantly enhancing the travel experience by alleviating the inconvenience caused by baggage delays. This service is crucial for maintaining customer satisfaction, as it ensures that passengers receive their belongings promptly after they have been located. The relationship between the Baggage Service Center and the courier service is vital for effective communication and coordination in managing delayed baggage. [Data: Entities (117); Relationships (187, 251)]\n\n## Challenges associated with oversized and overweight baggage\n\nOversized and overweight baggage presents unique challenges in baggage management, requiring special handling and potentially incurring additional fees. The designated locations for checking in such baggage are critical for ensuring that these items are processed appropriately. The community's ability to manage these types of baggage effectively is essential for operational efficiency and passenger satisfaction, as mishandling can lead to delays and increased costs. [Data: Entities (340); Relationships (323, 403)]"], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:33,189 httpcore.http11 DEBUG send_request_headers.started request= -13:54:33,189 httpcore.http11 DEBUG send_request_headers.complete -13:54:33,189 httpcore.http11 DEBUG send_request_body.started request= -13:54:33,189 httpcore.http11 DEBUG send_request_body.complete -13:54:33,189 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:33,190 httpcore.http11 DEBUG send_request_headers.started request= -13:54:33,190 httpcore.http11 DEBUG send_request_headers.complete -13:54:33,190 httpcore.http11 DEBUG send_request_body.started request= -13:54:33,190 httpcore.http11 DEBUG send_request_body.complete -13:54:33,190 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:33,190 httpcore.http11 DEBUG send_request_headers.started request= -13:54:33,191 httpcore.http11 DEBUG send_request_headers.complete -13:54:33,191 httpcore.http11 DEBUG send_request_body.started request= -13:54:33,191 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:33,191 httpcore.http11 DEBUG send_request_body.complete -13:54:33,191 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:33,191 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:33,191 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:33,194 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:33,194 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:33,194 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:33,194 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:33,194 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:33,194 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:33,199 httpcore.connection DEBUG start_tls.complete return_value= -13:54:33,200 httpcore.http11 DEBUG send_request_headers.started request= -13:54:33,200 httpcore.http11 DEBUG send_request_headers.complete -13:54:33,200 httpcore.http11 DEBUG send_request_body.started request= -13:54:33,200 httpcore.http11 DEBUG send_request_body.complete -13:54:33,200 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:33,202 httpcore.connection DEBUG start_tls.complete return_value= -13:54:33,202 httpcore.http11 DEBUG send_request_headers.started request= -13:54:33,204 httpcore.http11 DEBUG send_request_headers.complete -13:54:33,204 httpcore.http11 DEBUG send_request_body.started request= -13:54:33,204 httpcore.connection DEBUG start_tls.complete return_value= -13:54:33,204 httpcore.http11 DEBUG send_request_body.complete -13:54:33,204 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:33,204 httpcore.http11 DEBUG send_request_headers.started request= -13:54:33,204 httpcore.http11 DEBUG send_request_headers.complete -13:54:33,204 httpcore.http11 DEBUG send_request_body.started request= -13:54:33,205 httpcore.http11 DEBUG send_request_body.complete -13:54:33,205 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:33,496 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:33 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'78'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999085'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'10ms'), (b'x-request-id', b'req_e02818f7bb6e514fcdc641d1d2948bd4'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4372afdc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:33,496 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:33,496 httpcore.http11 DEBUG receive_response_body.started request= -13:54:33,610 httpcore.http11 DEBUG receive_response_body.complete -13:54:33,610 httpcore.http11 DEBUG response_closed.started -13:54:33,610 httpcore.http11 DEBUG response_closed.complete -13:54:33,610 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:33,611 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.4220000000204891. input_tokens=615, output_tokens=0 -13:54:33,663 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:33 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'237'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4989025'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'131ms'), (b'x-request-id', b'req_273bb1cc95bc020f506ba767ea8eeb45'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4370a347da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:33,663 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:33,663 httpcore.http11 DEBUG receive_response_body.started request= -13:54:33,883 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'400'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4988447'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'138ms'), (b'x-request-id', b'req_188a1ea8f75e6fac5f85754f151648f4'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4372911c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:33,883 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:33,883 httpcore.http11 DEBUG receive_response_body.started request= -13:54:34,45 httpcore.http11 DEBUG receive_response_body.complete -13:54:34,45 httpcore.http11 DEBUG response_closed.started -13:54:34,45 httpcore.http11 DEBUG response_closed.complete -13:54:34,45 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:34,47 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.8600000000442378. input_tokens=7822, output_tokens=0 -13:54:34,63 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'255'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9997'), (b'x-ratelimit-remaining-tokens', b'4977144'), (b'x-ratelimit-reset-requests', b'14ms'), (b'x-ratelimit-reset-tokens', b'274ms'), (b'x-request-id', b'req_6d3a587548b048fc539d2a1f2159cb8e'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4370ab7c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:34,63 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:34,63 httpcore.http11 DEBUG receive_response_body.started request= -13:54:34,64 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'392'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4976878'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'277ms'), (b'x-request-id', b'req_d957284e59938848d7b936f7fba11cf1'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4370d5f7da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:34,65 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:34,65 httpcore.http11 DEBUG receive_response_body.started request= -13:54:34,65 httpcore.http11 DEBUG receive_response_body.complete -13:54:34,66 httpcore.http11 DEBUG response_closed.started -13:54:34,66 httpcore.http11 DEBUG response_closed.complete -13:54:34,66 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:34,67 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.9059999999590218. input_tokens=8092, output_tokens=0 -13:54:34,330 httpcore.http11 DEBUG receive_response_body.complete -13:54:34,331 httpcore.http11 DEBUG response_closed.started -13:54:34,331 httpcore.http11 DEBUG response_closed.complete -13:54:34,331 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:34,332 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.1559999999590218. input_tokens=7972, output_tokens=0 -13:54:34,344 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:34 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'693'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4982246'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'213ms'), (b'x-request-id', b'req_91885edcab940df6366968b8169cb226'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4371a4c7da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:34,344 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:34,345 httpcore.http11 DEBUG receive_response_body.started request= -13:54:34,632 httpcore.http11 DEBUG receive_response_body.complete -13:54:34,633 httpcore.http11 DEBUG response_closed.started -13:54:34,633 httpcore.http11 DEBUG response_closed.complete -13:54:34,633 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:34,634 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.452999999979511. input_tokens=7799, output_tokens=0 -13:54:34,646 httpcore.http11 DEBUG receive_response_body.complete -13:54:34,646 httpcore.http11 DEBUG response_closed.started -13:54:34,646 httpcore.http11 DEBUG response_closed.complete -13:54:34,647 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:34,648 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.4689999999827705. input_tokens=8031, output_tokens=0 -13:54:34,689 graphrag.index.operations.embed_text.embed_text INFO using vector store lancedb with container_name default for embedding entity.description: default-entity-description -13:54:34,711 graphrag.index.operations.embed_text.strategies.openai INFO embedding 427 inputs via 427 snippets using 27 batches. max_batch_size=16, max_tokens=8191 -13:54:34,716 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7208C20>, 'json_data': {'input': ['MINISTRY OF AGRICULTURE:The Ministry of Agriculture is the authority in Israel that oversees the transport of pets to and from Israel, including service dogs.', "EL AL:EL AL is an airline that operates flights with a variety of specific policies and regulations concerning baggage, pets, and passenger services. The airline states that it is not responsible for any liquids confiscated from passengers at the airport. EL AL has established guidelines for the transportation of pets, including dogs, which encompass restrictions on certain breeds and weight limits. Additionally, the airline has specific policies for transporting service dogs on its flights.\n\nIn terms of baggage, EL AL provides detailed regulations regarding the transport of various items, including special equipment like ski gear and bicycles. The airline operates with defined carry-on baggage policies and offers baggage check-in services, which vary according to different travel classes. EL AL also has provisions for transporting pets as cargo, requiring specific documentation for pet travel, and shares similar baggage policies with Sundor, particularly concerning checked baggage allowances.\n\nFurthermore, EL AL provides guidelines for traveling with battery-powered mobility aids and hazardous materials, ensuring that passengers are informed about the transport of their equipment and the airline's liability for fragile or valuable items. Passengers are required to check in at EL AL counters regardless of luggage when returning to Israel from abroad. Overall, EL AL is committed to providing comprehensive services related to baggage handling, claims for delayed or damaged baggage, and the transportation of animals in various classes of the aircraft.", 'SERVICE DOG:A service dog is a specially trained animal that provides assistance to passengers with disabilities, ensuring they can travel comfortably and safely. These dogs must meet specific requirements for air travel, which include training and certification to perform tasks that aid their handlers. Notably, service dogs are exempt from certain weight limits typically imposed on pets when transported in the cabin of an aircraft. This exemption allows them to accompany passengers with special needs, including military personnel, without the usual restrictions that apply to other animals.', 'DANGEROUS DOG:Dangerous dogs, as defined by Israeli law, are not approved for transportation. This classification is outlined in the Israeli Law for the Regulation of Dog Supervision, which specifies that such dogs are prohibited from being transported.', 'PET:Pets, including dogs, cats, and exotic birds, can be transported by airlines under specific conditions. They may be allowed in the passenger cabin or as checked baggage, depending on factors such as size, weight, and necessary permits. Each airline has its own regulations regarding the transportation of pets, which typically include weight limits and specific requirements that must be met for safe travel.', 'CHECKED BAGGAGE:Checked baggage refers to luggage that passengers check in at the airport before boarding their flight, which is then transported in the cargo hold of the aircraft. This method of transporting luggage is distinct from carry-on luggage, which is taken into the cabin by the passenger. Checked baggage is subject to specific size and weight restrictions and can include various items, such as sporting equipment and, in certain instances, animals, particularly large ones that must be transported in the luggage compartment of the aircraft. Overall, checked baggage encompasses all luggage that is not carried into the passenger cabin and is handled separately during air travel.', 'REGISTERED CARGO:Registered cargo is a method of transporting animals that exceed specific weight limits, particularly those that are classified as extra-large or are flying unaccompanied. This term specifically refers to animals that may be transported by the Cargo Division, emphasizing the need for special handling and care during transit.', '9KG:The entity "9KG" refers to the weight limit for pets transported in the cabin of an aircraft. This limit is set at 9 kilograms, which includes the weight of the pet and its cage. It is important to note that this weight restriction does not apply to service dogs, which are allowed to travel in the cabin regardless of their weight.', 'AUTHORIZATION:Authorization from the Ministry of Agriculture�s Veterinary Services is required for the transportation of animals to and from Israel. This includes the necessity of obtaining authorization for transporting animals in general, as well as specific requirements for transporting pets as cargo. The Veterinary Services Department oversees these regulations, ensuring that all animal transport complies with the established guidelines.', 'ANIMAL TESTS:The authorization process for transporting pets involves performing several animal tests. These tests are a necessary requirement to ensure the health and safety of the animals during transportation.', 'CHECK-IN COUNTER:The check-in counter serves as a crucial location for both pet owners and passengers. It is the designated area where owners must arrive with their pets to make necessary transportation arrangements. Additionally, the check-in counter is where passengers can check in their luggage and obtain boarding passes, facilitating their travel process. This dual functionality highlights the importance of the check-in counter in managing both pet transportation and passenger check-in procedures.', 'ARRIVALS HALL:The Arrivals Hall is a designated area where pet owners can retrieve their animals after they have been transported as checked baggage. Specifically located at Ben Gurion Airport, this hall serves as the point of release for animals that have been transported in this manner, ensuring that owners can reunite with their pets upon arrival.', 'CARGO DIVISION:The Cargo Division of EL AL is tasked with managing transport costs and guidelines for cargo, which includes the transportation of pets and animals. This division handles special requests and approvals for oversized or special items, ensuring that all necessary documentation is provided for transporting animals as cargo. Specifically, the Cargo Division is responsible for the transportation of pets, requiring specific documentation for this service, as well as managing the transportation of animals that are extra-large or flying unaccompanied. Overall, the Cargo Division plays a crucial role in overseeing the safe and compliant transport of various types of cargo, particularly animals.', 'EL AL CARGO STORE:The EL AL Cargo Store is a dedicated service location for cargo operations associated with EL AL Airlines. It provides a range of services for transporting cargo, including pets, from Israel to various international destinations. This facility plays a crucial role in facilitating the movement of goods and animals, ensuring that they are handled with care and efficiency during transit.', 'CARGO TERMINAL:The cargo terminal at Ben Gurion Airport is a facility dedicated to the handling of cargo, including the release of animals transported as cargo.', 'ISRAEL:Israel is a country that serves as a departure point for flights and has established specific guidelines regarding the transportation of liquids in carry-on bags. Additionally, Israel has particular requirements for transporting animals, including service dogs, and is classified as a high-risk country for the transport of dogs according to the Centers for Disease Control and Prevention (CDC). The Ministry of Agriculture in Israel oversees the regulations concerning the transport of pets, while the Ministry of Health is responsible for regulating the entry of animals into the country. Furthermore, Israel is also a destination for passengers returning from abroad.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,717 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7209DA0>, 'json_data': {'input': ['CABIN:The cabin is where pets like dogs, cats, and exotic birds can be transported with their owners, provided they meet weight restrictions.', 'EXOTIC BIRDS:Exotic birds are among the pets that can be transported in the cabin with their owners.', 'VETERINARY SERVICES:The Veterinary Services, operating under the Ministry of Agriculture, are responsible for managing the authorization process for transporting pets. This includes overseeing the issuance of flight permits for animals at Ben Gurion Airport, ensuring that all necessary regulations and procedures are followed for the safe and compliant transport of pets.', 'TRANSPORTATION:Transportation refers to the process of moving pets either as checked baggage, in the cabin, or as registered cargo.', 'AUTHORIZATION PROCESS:The authorization process involves obtaining necessary permits and performing animal tests before transporting pets.', 'LUGGAGE COMPARTMENT:The luggage compartment is where pets are not allowed to be transported, especially snub-nosed breeds.', 'SENSITIVITY:Some pets may develop sensitivity and breathing problems during flights, which is a concern for their health.', 'FLIGHT:A flight is a journey made by an aircraft from one airport to another, encompassing various aspects of air travel. It involves specific baggage policies that passengers must adhere to, as well as regulations regarding the transportation of liquids. Additionally, the term "flight" also refers to the duration during which pets are transported, either in the cabin or in the cargo hold of the aircraft. Overall, a flight represents a comprehensive travel experience that includes considerations for luggage, pet transport, and compliance with aviation regulations.', 'PETS:', 'JOHANNESBURG:Johannesburg is a destination where transporting animals in the aircraft cabin is not allowed.', 'LONDON:London is a destination where transporting animals in the aircraft cabin is not allowed.', 'HONG KONG:Hong Kong is a destination where transporting animals in the aircraft cabin is not allowed.', 'VETERINARIAN:Veterinarians are responsible for performing required tests and issuing necessary authorizations for transporting animals.', 'INTERNATIONAL CERTIFICATE OF GOOD HEALTH:An international certificate of good health is required for transporting animals abroad and is issued by the Veterinary Services Department.', 'BILL OF LADING:A bill of lading is a crucial document required for the transportation of animals as cargo. It serves to outline the terms of transport and is particularly necessary when the animals being transported weigh more than 9 kg. This document ensures that all parties involved in the transportation process are aware of the conditions and responsibilities associated with the shipment of the animals.', 'BUSINESS CABIN:The Business cabin is a designated section of the aircraft that allows for the transportation of animals, including pets, with prior approval and under specific conditions.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,718 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7208EA0>, 'json_data': {'input': ['AIRCRAFT HOLD:The aircraft hold is the area of the aircraft where animals weighing between 9 kg and 100 kg are typically transported.', 'PASSENGER AIRCRAFT CABIN:The passenger aircraft cabin is where animals weighing up to 9 kg can be transported, subject to approval.', 'CAGE:CAGE refers to a structure designed for the transportation of animals, ensuring their safety during transit. It is essential for compliance with airline regulations, providing a secure environment for animals while they are being transported.', 'WEIGHT:Weight is a significant factor in various aspects of transportation, particularly concerning animals and baggage. In the context of transporting pets, weight influences whether animals can travel in the cabin or must be transported as cargo, as well as affecting the overall cost of transportation, which includes the animal, its carrying case, and food. For baggage, weight is crucial in determining whether items are considered overweight, which can lead to additional fees. It also plays a vital role in establishing baggage allowances, as the mass of the baggage directly impacts the limits set by airlines. Furthermore, weight restrictions apply to sports equipment, with maximum allowable weights varying by travel class. Overall, weight is a key consideration in the logistics of transporting both animals and personal belongings.', 'PERMIT:A permit is required for transporting animals from Israel to ensure compliance with both Israeli and destination country regulations.', 'VETERINARY SERVICES DEPARTMENT:The Veterinary Services Department is responsible for determining the conditions under which animals can be transported. Additionally, it issues health certificates and permits necessary for animal transport, ensuring that all regulations and health standards are met for the safe movement of animals.', 'CARGO:CARGO refers to goods or items that are transported in bulk, distinct from passenger baggage, and often necessitate special arrangements for their handling and transport. This includes a range of items that exceed standard baggage limits, such as sporting equipment. The term also encompasses the service provided for the transportation of various goods, including animals, which is typically managed by the Cargo Division. Additionally, cargo transport specifically involves the method of shipping animals as registered cargo within the aircraft hold, ensuring their safe and regulated transit.', 'APPROVAL:Approval from the EL AL service center is necessary for transporting pets in the Business cabin.', 'GUIDELINES:The term "GUIDELINES" refers to the regulations established by the authorities of a destination country regarding the transportation of animals, as well as updated rules concerning the carrying of liquids in carry-on bags. These guidelines are essential for ensuring compliance with safety and welfare standards during travel.', 'ANIMAL:Animals, including dogs, cats, and exotic birds, are subject to specific transport regulations. These regulations are designed to ensure the safety and well-being of the animals during transportation.', "CDC:The Centers for Disease Control and Prevention (CDC) establishes regulations and guidelines for the transportation of dogs to the United States. These guidelines include specific health and vaccination documentation that must be adhered to by passengers transporting dogs. The CDC's requirements are designed to ensure the safety and health of both the animals and the public during the transportation process.", "CERTIFICATE OF GOOD HEALTH:A Certificate of Good Health is a necessary document for transporting pets, ensuring that they are fit for travel. This certificate is required to confirm the animal's health status before transport, providing assurance that the pet is healthy and capable of making the journey.", 'TRANSPORT AUTHORIZATION:Transport authorization from the destination country authorities is required for transporting pets.', 'EXPORT LICENSE:An export license is a necessary document required for transporting animals internationally, specifically for moving them out of the country.', "MEASUREMENTS OF TRANSPORT CAGE:The measurements of the transport cage are required to ensure the animal's safety and compliance with transport regulations.", 'DOGS:Dogs are a type of pet that have specific regulations for transportation to the US, as outlined by the CDC.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,720 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7209C60>, 'json_data': {'input': ['HIGH-RISK COUNTRY:A "HIGH-RISK COUNTRY" is a designation applied to certain nations, including Israel, where specific regulations are imposed regarding the transportation of certain animals. As of the current date, Israel is classified as a high-risk country for animal transport, which impacts the travel regulations that must be followed.', 'AIRPORT FACILITIES:Airport facilities in the United States may incur additional charges for inspecting and releasing pets.', 'DOCUMENTS AND AUTHORIZATIONS:Documents and authorizations are necessary for transporting pets and must be presented at check-in.', 'TRANSPORTING ANIMALS:The process of moving animals, such as pets, from one location to another, often requiring specific guidelines and documentation.', 'US:The United States has specific regulations regarding the transportation of pets, particularly dogs.', 'MINISTRY OF HEALTH:The Ministry of Health in Israel is the authoritative body responsible for approving the entry of animals into the country.', 'BEN GURION AIRPORT:Ben Gurion Airport is the main international airport in Israel, serving as a hub for EL AL Israel Airlines. It is the primary airport in the country where animals must be authorized for transport, and it is also the location where animals are released after their transport.', 'RABIES ANTIBODY TEST:A test required to confirm that the animal has been vaccinated against rabies.', "BAGGAGE:Baggage refers to the personal items and belongings that passengers take with them on their journeys, including suitcases and other personal items. It encompasses both items that are carried on board the aircraft and those that are checked in for the flight. Additionally, baggage includes the category under which animals, such as pets, can be transported either in the aircraft cabin or in the hold. Passengers' baggage can sometimes be subject to issues such as delays, damage, or loss during transit, affecting their travel experience.", 'ANIMAL WEIGHT:The weight of the animal is a critical factor in determining the mode of transport.', '9 KG:The entity "9 KG" refers to the weight limit for pets that can be transported as baggage on an aircraft. Specifically, animals weighing up to 9 kg can typically be transported in the aircraft cabin without any additional requirements.', '100 KG:The entity "100 KG" refers to the maximum weight limit for transporting pets as baggage. According to the provided descriptions, pets that weigh 100 kg or less can be transported in the cabin as baggage, while those exceeding this weight must be transported as registered cargo. Therefore, any animal weighing more than 100 kg is required to be transported as cargo rather than as baggage.', 'DOCUMENTS:The entity "DOCUMENTS" refers to the essential paperwork required for the transportation of animals to and from Israel. This includes the specific documents necessary for obtaining authorization to transport an animal into the country. Additionally, passengers are required to have all necessary documentation readily available in accordance with their flight destination. It is imperative for passengers to complete all required documents to ensure compliance with regulations regarding the transport of animals.', 'FLIGHT PERMIT:A permit issued by Veterinary Services allowing the transport of an animal.', 'AMSTERDAM:Amsterdam is an airport from which animals cannot be transported as registered cargo.', 'BOSTON:Boston is an airport from which animals cannot be transported as registered cargo.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,721 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7209E40>, 'json_data': {'input': ['MUMBAI:Mumbai is an airport from which animals cannot be transported as registered cargo.', 'BRUSSELS:Brussels is an airport from which animals cannot be transported as registered cargo.', 'LARNACA:Larnaca is an airport from which animals cannot be transported as registered cargo.', 'FRANKFURT:Frankfurt is an airport from which animals cannot be transported as registered cargo.', 'MOSCOW:Moscow is an airport from which animals cannot be transported as registered cargo.', 'MUNICH:Munich is an airport from which animals cannot be transported as registered cargo.', 'MADRID:Madrid is an airport from which animals cannot be transported as registered cargo.', 'BERLIN:Berlin is an airport from which animals cannot be transported as registered cargo.', 'PRAGUE:Prague is an airport from which animals cannot be transported as registered cargo.', 'WARSAW:Warsaw is an airport from which animals cannot be transported as registered cargo.', 'TORONTO:Toronto is an airport from which animals cannot be transported as registered cargo.', 'VIENNA:Vienna is an airport from which animals cannot be transported as registered cargo.', 'BUDAPEST:Budapest is an airport from which animals cannot be transported as registered cargo.', 'KYIV:Kyiv is an airport from which animals cannot be transported as registered cargo.', 'ROME:Rome is an airport from which animals cannot be transported as registered cargo.', 'BANGKOK:'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,722 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E720B1A0>, 'json_data': {'input': ['LABORATORY RESULTS FOR RABIES ANTIBODIES:Laboratory results for rabies antibodies are necessary for transporting pets.', 'COSTS OF TRANSPORTING ANIMALS:The costs associated with transporting animals depend on their weight and whether they are transported as baggage or cargo.', 'ANIMALS WEIGHING UP TO 9 KG:Animals weighing up to 9 kg can be transported as baggage for a fee of $100 to Europe and the Middle East.', 'ANIMALS WEIGHING BETWEEN 9 AND 50 KG:Animals weighing between 9 and 50 kg can be transported as baggage for a fee of $200 to Europe and the Middle East.', 'ANIMALS WEIGHING BETWEEN 50 AND 100 KG:Animals weighing between 50 and 100 kg can be transported as baggage for a fee of $400 to Europe and the Middle East.', 'ANIMALS WEIGHING MORE THAN 100 KG:Animals weighing more than 100 kg cannot be transported as baggage and must be handled by the Cargo Division.', '50 KG:The entity "50 KG" refers to the upper weight limit for pets that can be transported as baggage. There are specific fees associated with transporting pets that weigh up to this limit.', 'VETERINARY CERTIFICATE:A veterinary certificate is a crucial document that certifies that a service dog is vaccinated and capable of maintaining sanitary conditions during transport. This certificate is mandatory for transporting service dogs and must be provided by the passenger.', 'TRANSPORT CAGE GUIDELINES:Guidelines that outline the requirements for transport cages used for pets during flights.', 'PASSENGER CABIN:The passenger cabin is the area of the aircraft where pets may be transported, subject to size and weight restrictions.', 'ALLOWANCE:The permitted baggage allowance does not include the weight of pets being transported.', 'CAT:Cats are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.', 'EXOTIC BIRD:Exotic birds are one of the types of pets that can be transported in the passenger cabin, subject to size and weight restrictions.', 'I.D.F SOLDIER:I.D.F soldiers are passengers who may transport service dogs at no additional cost under specific conditions.', 'SHELL SHOCK:Shell shock refers to a condition that may qualify a passenger for transporting a service dog at no additional cost.', 'CARRYING CASE:The carrying case is a necessary item for transporting pets, and its weight is included in the transport cost.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,723 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E720AAC0>, 'json_data': {'input': ["FLIGHT TICKET:A flight ticket is a document that confirms a passenger's reservation on a flight. It includes important details such as baggage allowances and is essential for passengers transporting pets, as payment for pet transport must be arranged with the airline.", 'DOG:A dog is an animal that may be transported by passengers under certain conditions and regulations.', 'HEATHROW AIRPORT:Heathrow Airport is a major international airport in London where passengers traveling with service dogs must register 14 days prior to their flight.', 'UNITED STATES:The United States has specific regulations regarding the transportation of service dogs, which may vary by destination.', 'ANIMAL AIR TRANSPORT COMPANIES:Companies that specialize in the air transport of animals, providing services to ensure safe travel for pets.', 'LEASH:A leash is required for service dogs during check-in and throughout the flight to ensure control and safety.', 'HARNESSES:Harnesses are required for service dogs to ensure they are secured and do not pose a risk to other passengers.', 'FLIGHT DATE:The flight date is the scheduled date on which the passenger is traveling with a service dog, which is important for compliance with regulations.', 'ADDITIONAL CHARGES:Additional charges may be incurred for inspecting and releasing a service dog from airport facilities in the United States.', 'CHECK-IN COUNTERS:Check-in counters are designated areas at the airport where passengers must check in for their flights. These counters serve as the official points where travelers present their documentation, including any necessary paperwork for traveling with a service dog.', 'SANITARY CONDITIONS:Service dogs must maintain proper sanitary conditions during the flight, as required by airline policies.', 'PASSENGER:The term "PASSENGER" refers to individuals traveling on an airline, specifically those flying with EL AL. Passengers may bring a dog on board under specific conditions, indicating that there are regulations in place regarding pet travel. Additionally, these individuals must comply with the airline\'s baggage regulations, which govern the amount and type of luggage they can bring. Overall, passengers are subject to the airline\'s policies regarding baggage and services, ensuring a standardized travel experience.', 'SAFETY AND SECURITY REGULATIONS:Safety and security regulations that govern the transport of animals on flights, ensuring the safety of all passengers and crew.', 'FORMS:Necessary documentation that passengers must provide to transport a dog on EL AL flights.', "DISTURBANCE:A situation where the dog's behavior causes disruption on the aircraft, leading to potential refusal of transport.", 'DIRECT THREAT:A condition under which a dog may be refused transport if it poses a direct threat to passengers or crew.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,725 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E720A3E0>, 'json_data': {'input': ['HOLD:', 'BAGGAGE SERVICE CENTER:The Baggage Service Center is responsible for managing issues related to delayed baggage, damaged baggage, and items that travelers may have forgotten on board. It provides essential assistance to travelers facing these challenges, ensuring that their concerns are addressed effectively.', 'BAGGAGE CLAIMS DEPARTMENT:The Baggage Claims Department is responsible for managing reports of damaged baggage and processing claims associated with both lost and damaged baggage. This department plays a crucial role in ensuring that passengers receive assistance and compensation for their baggage issues, thereby enhancing the overall travel experience.', 'DELAYED BAGGAGE:Delayed baggage refers to personal belongings that have not arrived with the passenger upon landing and must be reported immediately to the airline for retrieval. It is essential for travelers to report delayed baggage as soon as they notice the absence of their belongings, ensuring that the airline can assist in locating and returning the items.', 'CLAIM STATUS:The term "Claim Status" refers to the current state of a baggage claim. Individuals can check the claim status using a worldwide system by entering their lost baggage report number along with their last name. This process allows travelers to stay informed about the progress of their baggage claims.', 'COURIER SERVICE:The courier service is responsible for delivering retrieved delayed baggage to the address provided by the traveler or the passenger. This service ensures that individuals receive their belongings promptly at the specified location, enhancing the travel experience by alleviating the inconvenience caused by delayed baggage.', 'CONTACT DETAILS:The "CONTACT DETAILS" encompass essential information for travelers seeking assistance with baggage issues. This includes phone numbers and WhatsApp chat options specifically designed for reporting such problems. Additionally, the contact details provide guidance on how travelers can reach the Baggage Service Center for further support regarding their baggage concerns.', 'LOST BAGGAGE REPORT NUMBER:The lost baggage report number is a unique 10-character identifier utilized to check the status of a claim related to lost baggage. This identifier serves as a crucial tool for travelers seeking updates on their lost items, ensuring that they can easily track the progress of their claims.', 'BAGGAGE REPORT:A baggage report is issued by an EL AL representative for delayed bags at the airport baggage claim area.', 'FORGOTTEN ITEM:The "FORGOTTEN ITEM" refers to a personal belonging that has been left on board an aircraft by a passenger. Such items may need to be reported to the airline for recovery, as they are often forgotten during the boarding or disembarking process. These forgotten items can include a variety of personal belongings that passengers inadvertently leave behind while traveling.', "BAGGAGE DELAY:Baggage delay occurs when a passenger's checked baggage does not arrive at the destination with them.", 'BAGGAGE CLAIM:Baggage claim is the process through which passengers report and seek compensation for lost or damaged baggage.', "BAGGAGE HANDLING:Baggage handling refers to the procedures and services involved in managing passengers' baggage during travel.", 'BAGGAGE REPORTING:Baggage reporting is the process of notifying the airline about issues with baggage, such as delays or damages.', "BAGGAGE DELIVERY:Baggage delivery is the service that ensures retrieved baggage is sent to the passenger's specified address.", 'BAGGAGE CLAIMS PROCESS:The baggage claims process outlines the steps passengers must follow to report and claim compensation for lost or damaged baggage.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,726 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E720AD40>, 'json_data': {'input': ['DAMAGED BAGGAGE:', 'BATTERIES:Batteries are classified as dangerous goods and may require special handling when taken aboard an aircraft. It is essential to protect batteries from damage and short circuits during transport. Non-lithium-based batteries can be transported in the aircraft hold, but precautions must be taken to ensure their safety.', 'LAPTOP:Laptops are portable computing devices that may be considered dangerous goods due to the presence of lithium batteries. These batteries require special handling and must be managed in accordance with airline regulations to ensure safety during transport.', 'MEDICAL EQUIPMENT:Medical equipment may contain batteries or other components that are classified as dangerous goods. This includes various types of medical devices and instruments that, due to their components, require careful handling and adherence to safety regulations.', 'COMPRESSED GASES:Compressed gases, including butane and oxygen, are prohibited on aircraft due to their dangerous nature and inherent flammability, which pose significant potential hazards during air travel.', 'CORROSIVES:Corrosives, which include substances such as acids and wet cell batteries, are prohibited on aircraft due to their hazardous nature. This prohibition is in place to ensure the safety of passengers and crew, as these materials can pose significant risks during air travel.', 'EXPLOSIVES:Explosives, other than light ammunition, are strictly prohibited on aircraft for safety reasons. This regulation is in place to ensure the safety of passengers and crew during air travel.', 'FLAMMABLE LIQUIDS:Flammable liquids and solids are prohibited on aircraft due to safety concerns and their potential to ignite. This regulation is in place to ensure the safety of passengers and crew, as the presence of such materials poses significant risks during flight.', 'RADIOACTIVE MATERIALS:Radioactive materials are strictly forbidden on aircraft due to significant safety and health risks. This prohibition is enforced to ensure the safety of passengers and crew, as the presence of radioactive materials poses potential hazards during air travel.', 'BRIEFCASES WITH ALARM DEVICES:Briefcases with installed alarm devices are prohibited on aircraft for security reasons.', 'OXIDIZING MATERIALS:Oxidizing materials, including substances like hydrogen peroxide and bleaching powders, are prohibited on aircraft due to their reactive nature. This restriction is in place to ensure safety during air travel, as these materials can pose significant risks.', 'POISONS:Poisons, which encompass a range of harmful substances including insecticides and herbicides, are classified as dangerous goods and are strictly prohibited on aircraft. This prohibition is in place due to the hazardous effects these substances can have on health, posing significant risks to passengers and crew during air travel.', 'HIGH-STRENGTH MAGNETIC MATERIALS:High-strength magnetic materials are prohibited on aircraft due to their potential to harm people and the environment, as well as their ability to interfere with navigation and safety equipment. This prohibition is in place to ensure the safety and well-being of passengers and crew, as well as to maintain the integrity of aircraft operations.', 'OXYGEN:Oxygen is a compressed gas that is classified as a dangerous good and is prohibited on aircraft due to its potential hazards.', 'AQUALUNG CYLINDERS:Aqualung cylinders are classified as dangerous goods and are prohibited on aircraft due to their compressed gas content.', 'COMPRESSED GAS CYLINDERS:Compressed gas cylinders are classified as dangerous goods and are prohibited on aircraft due to their potential hazards.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,727 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7208180>, 'json_data': {'input': ['ACIDS:ACIDS are classified as corrosives and are prohibited on aircraft due to their hazardous nature.', 'ALKALIS:Alkalis are classified as corrosive substances and are prohibited on aircraft due to their hazardous nature and safety concerns.', 'WET CELL BATTERIES:Wet cell batteries are classified as corrosive substances, which makes them hazardous in nature. Due to this classification, they are prohibited on aircraft to ensure safety during air travel.', 'MATERIALS CONTAINING MERCURY:Materials containing mercury are classified as dangerous goods and are prohibited on aircraft due to their toxicity.', 'LIGHT AMMUNITION:Light ammunition is restricted on aircraft and may be subject to specific regulations.', 'FLAMMABLE SOLIDS:Flammable solids are classified as dangerous goods and are prohibited on aircraft due to their potential to ignite.', 'BUTANE:', 'DANGEROUS GOOD:"DANGEROUS GOOD" refers to items that pose a risk to health, safety, property, or the environment. These goods are subject to strict regulations to ensure safe handling, transportation, and disposal, reflecting their potential hazards.', 'LIQUIDS IN CARRY-ON BAGS:Restrictions on the amount and type of liquids that passengers may carry in their carry-on bags when boarding a flight.', 'WHISKEY:A type of liquid that may be carried in carry-on bags, subject to restrictions.', 'GELS:GELS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As gels are classified as liquids, they must adhere to the same regulations that govern the transport of liquids in carry-on luggage.', 'COSMETICS:A type of liquid that may be carried in carry-on bags, subject to restrictions.', 'BABY FOOD:Baby food is a type of liquid that can be carried in carry-on bags, although it is subject to certain restrictions. It is considered a special item, which means it does not need to be packed in a resealable plastic bag. However, it must be presented at the security checkpoint for inspection.', 'PRESCRIPTION MEDICATIONS:A type of liquid that may be carried in carry-on bags, subject to restrictions.', 'CREAMS:CREAMS are a type of liquid that may be carried in carry-on bags, but they are subject to specific restrictions. As creams are classified as liquids, travelers must adhere to the regulations governing the transport of liquids in carry-on luggage.', 'SECURITY CHECKPOINT:The SECURITY CHECKPOINT is a designated area where passengers are required to present their carry-on items, including liquids, for inspection prior to boarding. At this location, any liquids that exceed the permitted amount will be discarded to ensure compliance with safety regulations.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,729 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7209120>, 'json_data': {'input': ['CARRY-ON BAGS:CARRY-ON BAGS are bags that passengers are permitted to take on board an aircraft, adhering to specific restrictions regarding liquids. These bags are considered personal items and must comply with weight and size limitations set by the airline.', 'AEROSOLS:', 'SPORTING EQUIPMENT:Sporting equipment encompasses a variety of items, including skis, snowboards, bicycles, and other sports gear. These items can be transported on flights under specific conditions, either as checked baggage or cargo by airlines.', 'ECONOMY CLASS:Economy Class is a travel class offered by airlines that provides basic services and amenities at lower fares compared to higher classes. It allows passengers to bring a maximum of one carry-on bag weighing up to 8 kg. Additionally, Economy Class permits the complimentary transport of sports equipment under certain conditions, although this does not apply to Lite fares. Overall, Economy Class is designed to cater to travelers seeking affordable options while still offering standard services.', 'PREMIUM CLASS:Premium Class is a higher travel class that offers enhanced services and amenities compared to Economy Class. Passengers traveling in Premium Class are permitted to bring two carry-on bags, with each bag weighing a maximum of 8 kg and a combined weight not exceeding 12 kg. Additionally, Premium Class allows for the complimentary transport of sports equipment under specific conditions. For checked baggage, passengers are allowed to check up to two pieces, with each piece weighing up to 23 kg.', 'BUSINESS CLASS:Business Class is a premium travel class that provides superior services and amenities for passengers. It allows for the transport of sports equipment with different weight limits compared to Economy and Premium Class. Passengers traveling in Business Class are permitted to bring two carry-on bags, with one bag having a maximum weight of 16 kg and a combined weight limit of 20 kg. Additionally, Business Class tickets enable passengers to check up to two pieces of baggage, each weighing up to 32 kg.', 'DIMENSIONS:Dimensions refer to the maximum size specifications for carry-on bags and personal bags approved for boarding, as well as the measurements of baggage, which are typically expressed in length, width, and height. These dimensions are crucial in determining whether baggage is classified as standard, oversized, or overweight. Additionally, dimensions also encompass the total measurements (length + width + height) of sports equipment, which must not exceed specified limits for transport.', 'EL AL CARGO DIVISION:The EL AL Cargo Division is a specialized service that caters to passengers who need to transport excess baggage and special requests, particularly those traveling with more than five pieces of checked baggage. This division allows for the transportation of oversized or additional baggage separately from the standard baggage allowance, ensuring that passengers can manage their luggage needs effectively. Additionally, the EL AL Cargo Division offers services specifically designed for transporting oversized or separately sent sports equipment as cargo, further enhancing its capabilities to accommodate various passenger requirements.', 'CALL CENTER:The call center is a service location where passengers can contact for approval regarding overweight baggage.', "OVERWEIGHT BAGGAGE:Overweight baggage refers to luggage that exceeds the weight limits established by airlines. This type of baggage requires special approval for transport and often incurs additional fees. When passengers attempt to check in items classified as overweight, they may face extra charges as a result of exceeding the airline's specified weight restrictions.", 'ADDITIONAL SPORTS EQUIPMENT:Additional sports equipment refers to any sports gear or items that exceed the standard baggage allowance when traveling. This type of equipment requires special handling or may incur additional fees due to its size or weight.', '32 KG:The entity "32 KG" refers to the maximum weight limit applicable in business class for checked baggage and sports equipment. Specifically, 32 kg is the maximum weight allowed for each piece of checked baggage, as well as the weight limit for sports equipment in business class.', '30 KG:The entity "30 KG" refers to the maximum weight limit for sports equipment allowed in air travel. Specifically, it is set at 30 kg for both Economy Class and Premium Class passengers.', '277 CM:The entity "277 CM" refers to the maximum dimension limit for transporting sports equipment as overweight baggage. Specifically, 277 cm is the total maximum measurement limit for sports equipment, which includes the combined dimensions of length, height, and width. This limit applies to checked baggage, ensuring that items such as ski equipment do not exceed the specified measurement of 277 cm when being sent as overweight baggage.', '190 CM:190 cm is the maximum dimension limit for sports equipment in Economy and Premium Class.', 'LITE FARES:LITE FARES are a specific category of Economy Class fare characterized by their limited offerings. These fares do not permit the complimentary transport of sports equipment, which distinguishes them from other fare types that may include such allowances. Additionally, Lite fares generally provide fewer services and amenities compared to standard Economy Class fares, making them a more basic option for travelers seeking lower-cost flight options.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,730 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E7208360>, 'json_data': {'input': ['SNOWBOARDING EQUIPMENT:Snowboarding equipment includes items designed for snowboarding, which may also have specific transport conditions.', 'COMPLIMENTARY TRANSPORT:Complimentary transport refers to the policy allowing certain sports equipment to be transported without additional fees under specified conditions.', 'CALL CENTER APPROVAL:Call center approval is required for transporting overweight baggage, ensuring compliance with airline policies.', 'SKI EQUIPMENT:Ski equipment consists of essential gear for skiing, which includes one pair of skis, one pair of poles, and one pair of ski boots. This equipment is designed to be transported under specific conditions, ensuring that it remains in good condition for use on the slopes.', '70 USD:70 USD is the fee for transporting sports equipment one way to Europe, the Middle East, and Morocco.', '150 USD:150 USD is the fee for transporting sports equipment one way to the Far East and North America.', 'US DOLLARS:US Dollars are the currency utilized for pricing and payment of baggage fees. Prices for these fees are displayed in US dollars, although it is important to note that local currency may be required at some airports. Overall, US dollars serve as the standard currency for displaying prices related to baggage fees and charges.', "EXCESS BAGGAGE CHARGES:Excess baggage charges refer to the fees imposed on passengers when their luggage surpasses the permitted size and weight dimensions for checked baggage. These charges are applicable when a passenger's luggage exceeds the allowed limits, resulting in additional costs for the traveler.", 'AIRLINE:An airline is a company that provides air transport services for both passengers and cargo. It encompasses various airlines that operate flights, each with its own set of policies, including those related to baggage.', 'LOCAL CURRENCY:Local currency refers to the currency accepted at specific airports for the payment of fees, which may vary by location. At some airports, payment for baggage fees is only allowed in local currency, and the conversion rate applied is based on the date of payment.', 'SNOWBOARD EQUIPMENT:Snowboard equipment includes one snowboard and one pair of ski boots, which can be transported under specific conditions.', 'BICYCLE:A bicycle can be transported instead of regular checked baggage if it meets specific size and weight dimensions.', 'LITE FARE TICKET:A fare class that does not allow for additional baggage such as ski and snowboard equipment without extra charges.', 'EL AL CALL CENTER:The EL AL call center is responsible for pre-approving the transport of bicycles and other special items.', 'PERMITTED DIMENSIONS:The maximum size and weight limits that checked baggage and special items must adhere to for transport.', 'PACKING REGULATIONS:Specific guidelines that must be followed when packing bicycles for transport to prevent damage and ensure safety.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,731 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E720B2E0>, 'json_data': {'input': ['MOTORIZED BICYCLES:Motorized bicycles are not allowed to be transported as checked baggage.', 'EXCEPTIONAL CASES:Transport of bicycles may be allowed in exceptional cases, subject to approval from the Cargo Division.', 'EL AL AIRCRAFT:The information provided applies specifically to EL AL flights on EL AL aircraft.', 'DESTINATION COUNTRY:The destination country refers to the country to which a passenger is traveling. This country may have specific regulations and guidelines regarding the transport of equipment, which must be adhered to by travelers. These regulations outline the conditions for admitting passenger equipment into the country, ensuring compliance with local laws and standards.', 'FRAGILE ITEM:The term "FRAGILE ITEM" refers to items that are easily breakable or susceptible to damage during transport. These items require special handling due to their delicate nature, often necessitating additional protection to ensure their safety during transit. It is important to note that EL AL, the airline, does not assume responsibility for fragile items, highlighting the need for careful consideration and protection when shipping such items.', 'VALUABLE ITEM:Valuable items are high-value belongings that possess significant monetary or sentimental value. When traveling, these items may require special consideration or insurance due to their importance. It is important to note that EL AL does not take responsibility for valuable items, emphasizing the need for travelers to ensure their protection and care during transit.', 'SPECIAL TRAVEL INSURANCE:Special travel insurance is recommended for passengers transporting fragile or valuable items to cover potential damages.', 'EQUIPMENT:', 'BAGGAGE CLAIM AREA:The baggage claim area is where travelers report issues related to their baggage, such as delays or damages, to airline representatives.', 'DAMAGE REPORT:A damage report is issued by airline representatives when baggage is reported damaged, necessary for further handling of the claim.', 'CLAIMS DEPARTMENT:The Claims Department processes claims related to delayed or damaged baggage and provides updates to travelers.', 'BAGGAGE TAG:A baggage tag is a label affixed to luggage that contains crucial information about the owner, including their identity and flight details, as well as the destination of the baggage. This tag is essential for tracking and managing luggage during travel, ensuring that it reaches the correct destination and is returned to its rightful owner if lost.', 'BAGGAGE ISSUES:Baggage issues refer to problems such as delays, damages, or losses that travelers may encounter with their luggage during travel.', 'EL AL ISRAEL AIRLINES LTD.:EL AL Israel Airlines Ltd. is an airline that operates flights and manages baggage claims for its passengers.', 'DIGITAL CONTACT FORM:The Digital Contact Form is a document that passengers must fill out to report baggage issues or claims.', 'MAKOR HAZIUD:Makor Haziud is a store located in Nes Ziona that specializes in baggage and outdoor equipment.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,732 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88C040>, 'json_data': {'input': ['WE SHOES:WeShoes is a store that sells shoes and may also provide related services.', 'MEMSI TOURING:Memsi Touring is a service provider that may offer travel-related services, including baggage handling.', 'ARTY RIMON:ARTY Rimon is a service provider specializing in pickup and delivery services for baggage, luggage, and bags. They operate in various locations, ensuring convenient transportation solutions for their customers.', 'SHIN TIK:Shin Tik is a service provider that may offer travel-related services, including baggage handling.', 'TREK MARKET:Trek Market is a service provider that may offer travel-related services, including baggage handling.', 'KIRYAT ONO:Kiryat Ono is a city in Israel where various stores and services related to baggage are located.', 'RAMAT GAN:Ramat Gan is a city in Israel where various stores and services related to baggage are located.', 'GEVATAIM:Gevataim is a city in Israel where various stores and services related to baggage are located.', 'BAT YAM:Bat Yam is a city in Israel where various stores and services related to baggage are located.', 'HOLON:Holon is a city in Israel where various stores and services related to baggage are located.', 'PETACH TIKVA:Petach Tikva is a city in Israel where various stores and services related to baggage are located.', 'ZIP CODE 7015001:Zip Code 7015001 is the postal code for the mailing address of the Baggage Claims Department at Ben Gurion Airport.', 'TEL AVIV:Tel Aviv is a city in Israel where various stores and services related to baggage are located.', 'ADDRESS:Address refers to the specific location details required for sending claims or correspondence related to baggage.', 'SERVICE PICKUP AND DELIVERY:Service Pickup and Delivery refers to the service provided by various stores to collect and deliver baggage for customers.', 'BAVLI NEIGHBORHOOD:Bavli Neighborhood is a specific area in Tel Aviv where baggage-related services are offered.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,734 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88EB60>, 'json_data': {'input': ['HAAILIYA STREET 24:Haaliya Street 24 is the address of Makor Haziud, a store that sells baggage and outdoor equipment.', 'BIALIK 3:Bialik 3 is the address of WeShoes, a store that may provide services related to baggage.', 'STEINMAN 20:Steinman 20 is the address of Log In Log Out, an importer of luggage and bags.', 'SOKOLOV 59:Sokolov 59 is the address of Shin Tik, a service provider related to baggage handling.', 'IZTHAK RABIN 2:Izthak Rabin 2 is the address of Trek Market, a service provider related to baggage handling.', 'SHLOMO HA-MELEKH 37:Shlomo Ha-Melekh 37 is the address of WeShoes in Kiryat Ono.', 'HAMERETZ 6:Hameretz 6 is the address of ARTY Rimon in Petach Tikva.', 'SERVICE:Service refers to the various types of assistance provided to customers regarding baggage handling and claims.', 'WHATSAPP:WhatsApp is a communication tool used by various stores for customer service related to baggage.)<|COMPLETE|>', 'CARGO TIKIM VE MIZVADOT:Cargo Tikim ve Mizvadot is an importer of luggage and bags located in Gilboa 1, ICL Building.', 'MOKA:Moka is a pickup and delivery point for ARTY Rimon located at Moshe Dayan 3, Yehud.', 'RIMON MIZVADOT VE TIKIM:Rimon Mizvadot ve Tikim provides pickup and delivery services in Rishon Le Zion.', 'GALGAL YAZIV:Galgal Yaziv deals with damage to powered mobility scooters and electric power wheelchairs.', 'HAGALGAL:Hagalgal is the Israeli Center for baby and children equipment and goods, providing pickup and delivery services.', 'BUGABOO:Bugaboo offers baby carriages and strollers, located at Maskit 14, Herzliya.', 'DAMAGE TO WHEELCHAIRS:Damage to wheelchairs, equipment for passengers who require assistance, or baby strollers is a concern addressed by service providers.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,735 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88E660>, 'json_data': {'input': ['FLIGHT TICKET TERMS:Flight ticket terms outline the rules and regulations regarding baggage allowances and other travel-related policies.', "BOOKING MANAGEMENT:Booking management refers to the section of the airline's website where passengers can manage their flight bookings and check baggage policies.", 'OVERHEAD COMPARTMENTS:Overhead compartments are storage areas located above passenger seats in the cabin of an aircraft. These compartments are designated for the placement of carry-on bags during the flight, ensuring that passengers have a secure and convenient space to store their belongings while traveling.', 'BAGGAGE CONVEYOR BELT:The baggage conveyor belt is where checked luggage is available for pickup upon arrival at the destination.', 'NORTH AMERICA:North America is a region characterized by specific flight policies, particularly concerning carry-on baggage for flights operated by various airlines, including EL AL. These policies dictate the regulations and allowances for carry-on items, ensuring that travelers are informed about the requirements when flying to or from this region.', 'CHECKED LUGGAGE:', 'BAGS:Bags are items used to carry personal belongings during travel, with specific weight limits imposed by airlines.', '16 KG:The entity "16 KG" refers to the maximum weight limit allowed for one bag according to airline policy. Specifically, the weight limit is set at 16 kg, which is consistent across the descriptions provided.', '20 KG:The entity "20 KG" refers to the combined maximum weight limit for all bags as stipulated by airline policy. According to the guidelines, the total weight of the bags must not exceed 20 kg.', 'MEDICATIONS:Medications are essential items that passengers are advised to keep accessible during flights for health reasons. It is important for travelers to have their medications readily available to ensure their well-being while in transit.', 'PASSPORTS:Passports are required documents for international travel and should be easily accessible during flights.', 'VALUABLES:Valuables are items of significant worth that passengers are advised to keep with them during flights. These personal items should be kept accessible to ensure their safety and security throughout the journey.', 'ELECTRONIC DEVICES:Electronic devices refer to items such as laptops, tablets, and phones that passengers are advised to keep accessible during flights. It is important for passengers to have these devices readily available for use during the flight. However, there are specific regulations regarding the storage of electronic devices with lithium batteries. Devices with non-removable lithium batteries must be stored in the aircraft hold under certain conditions, while those with removable lithium batteries require that the battery be taken aboard the aircraft cabin, allowing the device itself to be checked.', "CHECKED BAGS:Checked bags are items of luggage that are not taken on board the aircraft but are instead stored in the plane's cargo hold. They are transported in the cargo hold of an aircraft, distinguishing them from carry-on luggage, which is brought into the cabin by passengers.", "PLANE'S BELLY:The plane's belly refers to the cargo hold of the aircraft where checked bags are stored.", 'NO CHARGE:No charge indicates that there is no fee for checking carry-on bags if no free space is available on the aircraft.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,736 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88D080>, 'json_data': {'input': ['RECOMMENDATION:A recommendation is a guideline provided to passengers regarding the handling of medications, passports, valuables, and electronic devices during travel.', 'MAXIMUM WEIGHT:The term "Maximum Weight" refers to the heaviest allowable weight for carry-on bags and personal bags when boarding.', 'MAXIMUM DIMENSIONS:Maximum dimensions refer to the largest allowable size for carry-on bags and personal bags for boarding.', 'BAG:A bag is an item used to carry personal belongings, with specific weight and dimension limits for air travel.', 'PERSONAL BAG:A personal bag is a type of bag that passengers can bring on board, including backpacks, laptop bags, and duty-free items.', 'CARRY-ON BAG:A carry-on bag is a type of luggage that passengers can take into the cabin, subject to weight and dimension restrictions.', '56 CM:The maximum length for a carry-on bag on El Al flights is 56 cm.', '45 CM:The maximum width for a carry-on bag on El Al flights is 45 cm.', '25 CM:The maximum depth for a carry-on bag on El Al flights is 25 cm.', '18X38X30 CM:The maximum dimensions for a personal bag are 18 cm in height, 38 cm in width, and 30 cm in depth.', '115 CM:The total maximum dimension for a carry-on bag on El Al flights is 115 cm.', 'DUTY-FREE ITEMS:Duty-free items are products purchased at the airport that can be carried on board without counting towards the baggage allowance.', 'OVERSIZED ITEMS:Oversized items, such as cellos, require prior coordination and may need an extra seat for transport.', 'EMERGENCY EXIT ROW:The emergency exit row is a section of the aircraft where passengers may store bags in overhead compartments.', "SERVICE CENTER:El Al's service center is where passengers can coordinate the transport of unusual items.", "CHECKED BAG:A checked bag is a type of luggage that is stored in the aircraft's cargo hold during the flight."], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,737 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88D8A0>, 'json_data': {'input': ['IMPORTANT TO KNOW:Policy regarding baggage damage or missing items requires contact within 7 days of receipt of baggage.', 'DELAY IN RECEIVING BAGGAGE:Policy states that in the event of a delay in receiving baggage outside the country of residence, contact must be made within 21 days.', 'RISHON LE ZION:Rishon Le Zion is a city where Rimon Mizvadot ve Tikim operates.', 'YEHUD:Yehud is a city where Moka, a pickup and delivery point, is located.', 'REHOVOT:Rehovot is a city where ARTY Rimon provides pickup and delivery services.', 'NES ZIONA:Nes Ziona is a city where Makor Haziud operates.', 'SHOHAM:Shoham is a city where ARTY Rimon provides pickup and delivery services.', 'RAMLE:Ramle is a city where ARTY Rimon provides pickup and delivery services.', 'LOD:Lod is a city where ARTY Rimon provides pickup and delivery services.', 'SHLOMO HA-MELEKH:', 'EL AL ISRAEL AIRLINES:EL AL Israel Airlines is the airline responsible for handling baggage claims and ensuring compliance with international conventions regarding baggage liability.', 'FLIGHT TICKETS:Flight tickets are essential documents that passengers must provide when filing a claim for lost or damaged baggage.', 'BOARDING PASSES:Boarding passes are documents that passengers must present when filing a claim for lost or damaged baggage.', 'BAGGAGE TAGS:Baggage tags are stickers affixed to the flight ticket and/or the baggage itself, necessary for tracking and claiming lost or damaged baggage.', 'LOST OR DAMAGED BAGGAGE REPORT:A lost or damaged baggage report is a document issued by the airport that passengers must include in their claim.', 'RECEIPTS:Receipts that support the claim are necessary documents that passengers must provide to validate their claim for lost or damaged baggage.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,738 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88FBA0>, 'json_data': {'input': ['FRAGILE ITEMS:Fragile items are those that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.', 'PERISHABLE ITEMS:Perishable items are items that EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.', 'VALUABLE ITEMS:Valuable items include cash, jewelry, and electronics, which EL AL Israel Airlines may refuse to accept liability for if they are lost or damaged.', 'INTERNATIONAL CONVENTIONS:International conventions are legal frameworks that govern the liability of carriers like EL AL Israel Airlines regarding baggage claims.', 'CONTRACT OF CARRIAGE:The contract of carriage outlines the terms and conditions under which EL AL Israel Airlines operates, including baggage liability.', 'MISSING ITEMS:Missing items refer to belongings that are not present in the baggage upon receipt, which may lead to a claim against the airline.', 'CLAIM:A claim is a formal request made by a passenger to the airline for compensation due to lost, damaged, or delayed baggage.', '21 DAYS:21 days is the time frame within which passengers must contact the airline regarding delayed baggage outside their country of residence.', '7 DAYS:7 days is the time frame within which passengers must contact the airline regarding damaged or missing items from their baggage.', 'AFTER 21 DAYS:After 21 days refers to the period after which passengers must contact the airline regarding lost baggage.', 'DAMAGE:', 'CARRY-ON BAGGAGE:Carry-on baggage refers to personal bags and carry-on bags (trolleys) that passengers can bring into the passenger cabin of an aircraft.', 'PERSONAL BAGS:Personal bags are smaller bags designed to be stored under the seat in front of the passenger, allowing for the maximization of cabin space. These bags are intended to provide convenience and accessibility during travel, ensuring that essential items are within easy reach while keeping the cabin area organized.', 'SUN DOR:Sun Dor is an airline that operates flights with specific carry-on baggage policies.', 'MATMID FREQUENT FLYER CLUB:The Matmid Frequent Flyer Club status influences the eligibility of passengers regarding carry-on baggage allowances. Specifically, the status may determine whether members are permitted to bring carry-on baggage aboard the aircraft.', 'TROLLEY:A trolley is a type of carry-on bag designed for air travel, which can be conveniently stored in the overhead compartments of an aircraft. Trolleys are specifically categorized as carry-on bags that passengers are allowed to bring into the passenger cabin, making them a practical choice for travelers seeking to transport their belongings easily and efficiently.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,739 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88C5E0>, 'json_data': {'input': ['WEIGHT RESTRICTION:Weight restrictions are limits imposed on the weight of bags that passengers can carry on board or check in.', 'FLIGHT DESTINATION:The flight destination refers to the final location where passengers are traveling, and it is essential for check-in as it requires necessary documents. Additionally, the flight destination can influence baggage policies, impacting what passengers can bring on their journey.', 'PRE-CHECKED CARRY-ON:A pre-checked carry-on is a bag that has been checked in online prior to arriving at the airport, allowing for expedited security checks.', 'SECURITY CHECK:The security check is a procedure that passengers must go through to ensure safety before boarding the aircraft.', 'EXTRA SEAT:An extra seat may be purchased for oversized items that cannot fit in the cabin or under the seat.', 'UNDER-SEAT STORAGE:Under-seat storage refers to the space under the seat in front of a passenger where personal bags must be placed.', "CHECK-IN PROCESS:The check-in process is the procedure that passengers must follow to confirm their presence on a flight and check in their baggage. This process involves verifying the passenger's identity and travel details, as well as checking their luggage for the flight.", 'AIRPLANE STORAGE:Airplane storage refers to the designated areas on an aircraft where passengers can store their carry-on and personal bags.', 'BAG DIMENSIONS:Bag dimensions refer to the measurements of a bag that must comply with airline policies for carry-on and checked luggage.', 'BAG WEIGHT:Bag weight refers to the total weight of a bag, which must adhere to airline restrictions for carry-on and checked luggage.', 'CARGO HOLD:The cargo hold is the area of the aircraft where checked bags are stored during the flight.', 'FLIGHT CHECK-IN:Flight check-in is the policy that requires passengers to confirm their attendance and check their baggage before boarding.', 'BAGGAGE ENFORCEMENT:Baggage enforcement refers to the policies and procedures that airline representatives follow to ensure compliance with baggage limits.)<|COMPLETE|>', 'PASSENGERS:Individuals traveling on flights who must check in at the counters regardless of luggage.', 'SECURITY CHECK AREAS:', 'U.S:Country with specific guidelines regarding the carrying of liquids in handbags.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,741 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88D300>, 'json_data': {'input': ['100 ML:Maximum volume allowed for containers of liquids, aerosols, and gels in carry-on bags.', '3.4 OZ:Equivalent measurement of 100 ml in ounces for liquids in carry-on bags.', 'CLEAR RESEALABLE PLASTIC BAG:Type of bag required for packing liquids, aerosols, and gels in carry-on luggage.', "DOCTOR'S NOTE:Document required for carrying medications and special food products at the security checkpoint.", 'DUTY FREE:Duty-free products cannot be purchased if they are prohibited aboard the aircraft, even for connecting flights.', 'CONNECTING FLIGHT:Type of flight that may have additional restrictions regarding the carrying of liquids.', 'PLASTIC BAG:Type of bag required for carrying liquids in carry-on luggage.', 'PERMITTED AMOUNT:The maximum amount of liquids allowed in carry-on bags, which is subject to specific guidelines.', 'OVERSIZED BAGGAGE:Oversized baggage refers to luggage that surpasses the standard size limits established by airlines. This type of baggage necessitates special handling due to its dimensions and may incur additional fees for transportation. Both descriptions emphasize the need for careful management of oversized baggage and highlight the potential for extra charges associated with its transport.', 'SUNDOR:Sundor is an airline that has specific baggage policies regarding checked baggage allowances and fees.', 'LITE SERVICE:Lite service is a type of ticket offered by EL AL that includes one piece of checked baggage for an additional fee.', 'CLASSIC SERVICE:Classic service is a ticket option that includes one piece of checked baggage in the ticket price without additional fees.', 'FLEX SERVICE:Flex service is a ticket type that also includes one piece of checked baggage in the ticket price, offering more flexibility in changes.', 'BAGGAGE ALLOWANCE:Baggage allowance refers to the number and weight of bags that a passenger is permitted to check in without incurring additional fees. It is determined by the ticket type, which is specified on the reservation and/or flight ticket. This means that the specific baggage allowance can vary depending on the type of ticket purchased by the passenger.', 'MANAGE YOUR BOOKING:"Manage Your Booking" is an online service offered by airlines that enables passengers to view and modify their flight details. This service includes options for adjusting baggage allowances, providing travelers with the flexibility to manage their travel arrangements conveniently.', 'ADDITIONAL PIECES OF BAGGAGE:Additional pieces of baggage refer to extra luggage that can be checked in for a fee, beyond the standard allowance included in the ticket.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,742 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE88C400>, 'json_data': {'input': ['WEIGHT CATEGORY:Weight category refers to the classification of baggage based on its weight, which influences the fees charged for excess baggage.', 'WHEEL CONFIGURATION:Wheel configuration refers to the design and arrangement of wheels on baggage, which can affect handling and transport.', 'SPECIAL ITEM:Special items refer to specific types of baggage that may have unique handling requirements, such as sports equipment or musical instruments.', 'PROHIBITED ITEM:Prohibited items are items that are not allowed in checked or carry-on baggage due to safety regulations.', 'RESTRICTED ITEM:Restricted items are those that may be allowed under certain conditions or with special permissions, often requiring prior approval.', 'REQUIRED DOCUMENT:Required documents are necessary paperwork that passengers must present for travel, such as identification or boarding passes.', 'LABEL TYPE:Label type refers to the categorization of baggage labels that indicate handling instructions or ownership.', 'TAG CATEGORY:Tag category refers to the classification of tags used for baggage identification and tracking.', 'SERVICE LOCATION:Service location refers to the specific places where baggage services, such as check-in or pickup, are provided.', 'TIME PERIOD:Time period refers to the duration during which specific baggage policies or fees are applicable.', 'PASSENGER TYPE:Passenger type refers to the classification of travelers, such as adults, children, or infants, which can affect baggage allowances.', 'MEMBERSHIP LEVEL:Membership level refers to the tier of loyalty programs that may offer different baggage allowances or benefits.', 'GROUP CATEGORY:Group category refers to classifications of passengers traveling together, which may influence baggage policies and allowances.)<|COMPLETE|>', 'ADDITIONAL SERVICES:Refers to extra services that can be ordered by passengers, which may incur additional charges.', 'CHANGE:Refers to the policy regarding changes made to additional services purchased by passengers.', 'REFUND:Refers to the policy stating that no refund will be given for cancellation or change of additional services.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,743 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DB4DF7E0>, 'json_data': {'input': ['FULL CHARGE:Refers to the fee structure indicating that passengers will be charged in full for ordering additional services.', 'CANCELLATION:', 'SPARE BATTERIES:Spare batteries refer to additional batteries that can be used to replace depleted ones in various devices. It is crucial to ensure that spare batteries are protected from damage and short circuits when taken aboard an aircraft. Specifically, spare lithium batteries are prohibited from being placed in checked baggage and must be adequately protected when carried in the cabin to ensure safety during air travel.', 'DRY CELL ALKALINE BATTERIES:Dry cell alkaline batteries such as AA, AAA, C, D, and 9-volt batteries are allowed in carry-on baggage.', 'LITHIUM-ION BATTERIES:Lithium-ion batteries are rechargeable batteries widely utilized in portable electronic devices. They come with specific size and watt-hour limitations, particularly for air travel. Larger lithium-ion batteries, ranging from 100 to 160 watt-hours, are restricted to two batteries per passenger and must adhere to certain regulations. Consumer-grade lithium-ion batteries are also permitted on aircraft, provided they meet the established watt-hour limits.', 'PORTABLE CHARGERS:Portable chargers are classified as batteries and are permitted on aircraft under specific conditions. However, they are categorized as lithium batteries, which means they are not allowed in checked baggage.', 'ITEMS CONTAINING MERCURY:Items containing mercury are classified as dangerous goods and are prohibited on aircraft.', 'INFECTIOUS SUBSTANCES:Infectious substances, including live virus materials, are classified as dangerous goods and are prohibited on aircraft.', 'MAGNETIC MATERIALS:Magnetic materials that can harm people or the environment are prohibited on aircraft.', 'LITHIUM METAL BATTERIES:Lithium metal batteries are non-rechargeable batteries often used in cameras and small personal electronic devices, with restrictions on the amount of lithium per battery.', 'NON-SPILLABLE WET BATTERIES:Non-spillable wet batteries are specialized batteries that are limited to a voltage of 12 volts and a capacity of 100 watt-hours. They are specifically designed to prevent the leakage of electrolyte, making them safer for various applications. Additionally, regulations allow for the transport of up to two spare or uninstalled non-spillable wet batteries aboard an aircraft, ensuring compliance with safety standards while providing flexibility for users.', 'MOTORIZED WHEELCHAIRS:Motorized wheelchairs have separate exceptions regarding the transport of batteries.', 'CARRY-ON:Carry-on baggage allows for the transport of certain lithium batteries under specified conditions.', 'EXEMPTION:', '100 WATT-HOURS:100 watt-hours is a measurement unit indicating the energy capacity of batteries, relevant for determining what can be carried on an aircraft.', '160 WATT-HOURS:160 watt-hours is a measurement unit indicating the maximum energy capacity for certain lithium-ion batteries allowed in carry-on luggage.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,744 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DB4DC720>, 'json_data': {'input': ['2 GRAMS:2 grams is a measurement unit indicating the maximum amount of lithium allowed in consumer-grade lithium metal batteries.', '12 VOLTS:12 volts is a measurement unit indicating the maximum voltage for non-spillable wet batteries permitted in carry-on luggage.', '49 CFR:49 CFR refers to the Code of Federal Regulations that outlines the requirements for the transport of hazardous materials, including batteries.', 'STRONG OUTER PACKAGING:Batteries must be in strong outer packaging to prevent damage and leakage during transport.', 'NON-CONDUCTIVE CAPS:Non-conductive caps are required to protect the terminals of spare batteries during transport.', 'FLAMMABLE MATERIAL:Flammable materials, including items like hairspray, are subject to strict storage regulations. They are not permitted to be stored alongside other items in baggage, and specifically, they must not be stored with electronic devices that contain lithium batteries. These regulations are in place to ensure safety and prevent potential hazards associated with the combination of flammable substances and electronic devices.', 'LITHIUM BATTERIES:', 'SPARE LITHIUM BATTERIES:Spare lithium batteries, both lithium-metal and lithium-ion/polymer, are prohibited in checked baggage and must be taken aboard the aircraft cabin.', 'WATT-HOURS:Watt-hours (Wh) is a unit of measurement for battery capacity, calculated by multiplying volts (V) by ampere hours (Ah).', 'BATTERY-POWERED DEVICES:Battery-powered devices must be protected from accidental operation and overheating, especially those with moving parts.', 'IATA REGULATIONS:IATA regulations govern the transport of battery-powered mobility aids and hazardous materials on flights. These regulations ensure the safe handling and transportation of such items, providing guidelines for airlines and passengers regarding the specific requirements and restrictions associated with battery-powered mobility aids during air travel.', '100 WH:Batteries with a capacity of less than 100 watt-hours may be taken aboard the aircraft when insulated or in their original packaging.', '15 ELECTRONIC DEVICES:Passengers are allowed to take up to 15 electronic devices containing lithium-ion batteries with a capacity of less than 100 watt-hours aboard the aircraft.', '20 SPARE BATTERIES:Passengers may take up to 20 spare batteries with a capacity of less than 100 watt-hours aboard the aircraft.', 'BATTERY CASE:A battery case is used to protect batteries from damage and short circuits during transport.', 'ORIGINAL PACKAGING:Keeping batteries in their original packaging helps prevent short circuits and damage during transport.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,745 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DB5CAF20>, 'json_data': {'input': ['$90:The fee of $90 is charged for checking a piece of baggage that is not included in the ticket price when reserved at the airport.', '23 KG:The entity "23 KG" refers to the maximum weight limit for checked baggage in premium class and for certain service types offered by EL AL. Specifically, 23 kg is the maximum weight allowed for each piece of checked baggage included in the ticket price for these services.', 'THREE HOURS:Three hours is the time frame within which passengers can pre-order additional baggage before their flight departure.', 'EUROPE AND MIDDLE EAST:Europe and the Middle East are destinations served by EL AL, with specific baggage policies applicable to flights to these regions.', "OVERSIZED AND OVERWEIGHT BAGGAGE:Oversized and overweight baggage refers to luggage that exceeds the airline's standard size and weight limits, requiring special handling and potentially incurring additional fees.", 'BAGGAGE POLICY:The baggage policy outlines the rules and regulations concerning the number, types, sizes, and weights of baggage that passengers are permitted to check in or carry on during their flights. This policy is designed to ensure compliance with safety standards and to facilitate a smooth travel experience for all passengers.', 'DESIGNATED OVERSIZED/OVERWEIGHT BAGGAGE LOCATION:The designated oversized/overweight baggage location is the area where passengers are required to take their oversized or overweight baggage both after check-in and for check-in. This location serves as a specific point for handling baggage that exceeds standard size or weight limits, ensuring that such items are processed appropriately during the travel experience.', 'PRE-ORDERING:Pre-ordering refers to the process of reserving additional baggage before the flight, which is required for certain service types.', 'BAGGAGE CHECK-IN PROCESS:The baggage check-in process involves the procedures passengers must follow to check their luggage before boarding a flight.', "STANDARD BAGGAGE:Standard baggage refers to luggage that complies with the airline's specified size and weight requirements, allowing passengers to transport their belongings without incurring additional fees or extra charges.", 'BAGGAGE CHECK-IN:Baggage check-in is the process by which passengers hand over their luggage to the airline for transport in the cargo hold.', 'CARRY-ON ALLOWANCE:Carry-on allowance refers to the permitted items that passengers can bring into the cabin of the aircraft.', 'ADDITIONAL HANDLING FEE:An additional handling fee of $5 per passenger per reservation is charged when checking baggage through the EL AL Service Center.', 'EXCESS BAGGAGE:Excess baggage refers to any checked baggage that exceeds the allowed weight or number of pieces, which incurs additional fees.', 'CODE-SHARE FLIGHTS:Code-share flights are flights operated by one airline but marketed by another, affecting baggage procedures.', 'MANAGE MY BOOKING:Manage my booking is a service that allows passengers to modify their reservations, including adding baggage.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:34,747 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,748 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,748 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,748 httpcore.http11 DEBUG send_request_body.complete -13:54:34,748 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,748 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,749 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,749 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,749 httpcore.http11 DEBUG send_request_body.complete -13:54:34,749 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,749 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,750 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,750 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,750 httpcore.http11 DEBUG send_request_body.complete -13:54:34,750 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,750 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,751 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,751 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,751 httpcore.http11 DEBUG send_request_body.complete -13:54:34,751 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,751 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,752 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,752 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,752 httpcore.http11 DEBUG send_request_body.complete -13:54:34,752 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,752 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,753 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,753 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,753 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,753 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,753 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,754 httpcore.http11 DEBUG send_request_body.complete -13:54:34,754 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,754 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,754 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,754 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,755 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,755 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,755 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,755 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,756 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,756 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,757 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,757 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,758 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,758 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,759 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,760 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,760 httpcore.connection DEBUG connect_tcp.started host='api.openai.com' port=443 local_address=None timeout=180.0 socket_options=None -13:54:34,761 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,761 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,761 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,761 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,762 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,762 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,762 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,762 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,763 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,763 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,763 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,763 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,763 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,763 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,764 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,764 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,764 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,764 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,764 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,764 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,765 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,765 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,765 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,765 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,765 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,765 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,766 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,766 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,766 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,766 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,766 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,766 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,767 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,767 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,767 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,767 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,773 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,773 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,773 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,777 httpcore.connection DEBUG connect_tcp.complete return_value= -13:54:34,777 httpcore.connection DEBUG start_tls.started ssl_context= server_hostname='api.openai.com' timeout=180.0 -13:54:34,777 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,777 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,777 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,778 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,778 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,797 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,797 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,797 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,797 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,798 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,798 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,798 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,798 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,798 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,798 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,798 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,798 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,799 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,799 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,799 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,799 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,799 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,799 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,800 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,800 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,802 httpcore.http11 DEBUG send_request_body.complete -13:54:34,802 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,802 httpcore.http11 DEBUG send_request_body.complete -13:54:34,802 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,802 httpcore.http11 DEBUG send_request_body.complete -13:54:34,802 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,802 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,802 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,802 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,802 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,803 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,803 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,803 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,803 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,803 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,803 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,803 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,804 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,804 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,804 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,804 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,804 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,804 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,804 httpcore.http11 DEBUG send_request_body.complete -13:54:34,804 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_body.complete -13:54:34,805 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,805 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,805 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,805 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,805 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,805 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,805 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,805 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,806 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,806 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,806 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,806 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,806 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,806 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,806 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,806 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,806 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,806 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,806 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,806 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,808 httpcore.http11 DEBUG send_request_body.complete -13:54:34,808 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,808 httpcore.http11 DEBUG send_request_body.complete -13:54:34,808 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,808 httpcore.http11 DEBUG send_request_body.complete -13:54:34,809 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,809 httpcore.http11 DEBUG send_request_body.complete -13:54:34,809 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,809 httpcore.http11 DEBUG send_request_body.complete -13:54:34,809 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,809 httpcore.http11 DEBUG send_request_body.complete -13:54:34,809 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,809 httpcore.http11 DEBUG send_request_body.complete -13:54:34,809 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,809 httpcore.http11 DEBUG send_request_body.complete -13:54:34,809 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,809 httpcore.http11 DEBUG send_request_body.complete -13:54:34,809 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,809 httpcore.http11 DEBUG send_request_body.complete -13:54:34,810 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,810 httpcore.http11 DEBUG send_request_body.complete -13:54:34,810 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,810 httpcore.http11 DEBUG send_request_body.complete -13:54:34,810 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,810 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,810 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,810 httpcore.connection DEBUG start_tls.complete return_value= -13:54:34,810 httpcore.http11 DEBUG send_request_body.complete -13:54:34,810 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:34,810 httpcore.http11 DEBUG send_request_headers.started request= -13:54:34,811 httpcore.http11 DEBUG send_request_headers.complete -13:54:34,811 httpcore.http11 DEBUG send_request_body.started request= -13:54:34,811 httpcore.http11 DEBUG send_request_body.complete -13:54:34,811 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:35,169 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'251'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999082'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'11ms'), (b'x-request-id', b'req_ace29720d6cb1b89a7032163731db2fd'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c440cfcc7da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,169 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,169 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,182 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'146'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999286'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_2d3494b2453fbe799895f9c7ddcdbf0b'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4411fe17d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,182 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,182 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,186 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'203'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'via', b'envoy-router-6969cf5cdb-7cmww'), (b'x-envoy-upstream-service-time', b'154'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4998644'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'16ms'), (b'x-request-id', b'req_ff20ff22965271f44440f502af87146f'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c44119bbc222-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,187 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,187 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,217 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'214'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999582'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'5ms'), (b'x-request-id', b'req_b2f441ebd6f65714814a8932b7da39ba'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412ef0c22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,217 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,217 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,218 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'77'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999272'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_dc6ae0d2f6e9bf48d0f4bb25104b5bed'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c440ca657da4-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,218 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,218 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,224 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'276'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999253'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_14dfe2ff126868469db14111e12fb828'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c440ce6fc22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,224 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,224 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,248 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'119'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999168'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'9ms'), (b'x-request-id', b'req_f28cbab7bdac5663a70e790a2b815e32'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4411f1bc231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,248 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,248 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,266 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'223'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999360'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_819808b212e4c796f7ab9fa5d094e716'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412daac22c-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,266 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,266 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,300 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'242'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4998041'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'23ms'), (b'x-request-id', b'req_87f0251a76208dbe9b89a7d54cdcca62'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c440cf7ec21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,300 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,300 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,323 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'118'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'via', b'envoy-router-74d5f9ff4-6zc2s'), (b'x-envoy-upstream-service-time', b'81'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999090'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'10ms'), (b'x-request-id', b'req_802cd94c9b19ff50da9893bf37d8ae4d'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c441285f7da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,323 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,323 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,332 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,332 httpcore.http11 DEBUG response_closed.started -13:54:35,332 httpcore.http11 DEBUG response_closed.complete -13:54:35,332 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,334 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.6089999999967404. input_tokens=543, output_tokens=0 -13:54:35,346 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3E6F49A80>, 'json_data': {'input': ['INSULATED:Batteries must be insulated to prevent short circuits when taken aboard the aircraft.', 'ACCEPTABLE BATTERY TYPES:Only certain types of batteries are acceptable for transport in the aircraft hold, excluding lithium-based batteries.', 'BATTERY TERMINALS:Battery terminals must be protected to prevent short circuits during transport.', 'BATTERY-POWERED MOBILITY AIDS:Battery-powered mobility aids include wheelchairs and scooters that require compliance with IATA regulations for air travel.', 'FLIGHT-APPROVED BATTERIES:Flight-approved batteries are those that are allowed on the aircraft as per airline regulations.', 'HAZARDOUS MATERIALS:Hazardous materials include items like dry ice that require special handling and declaration when traveling.', 'DECLARATION FORM:A Declaration Form is required for traveling with hazardous materials on EL AL flights.', 'DRY ICE:Dry ice is a solid form of carbon dioxide that is considered a hazardous material and requires special handling when transported.', 'FLIGHT AID:Flight aid refers to the assistance provided by airlines for passengers with mobility challenges, including the transport of mobility aids.', 'EMAIL NOTIFICATION:An email notification to the airline is required to inform them about the intention to travel with a mobility aid.', 'MOBILITY AID:'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:35,347 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'350'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'4998236'), (b'x-ratelimit-reset-requests', b'11ms'), (b'x-ratelimit-reset-tokens', b'21ms'), (b'x-request-id', b'req_465e7c6c0d609d3930a6a684b5f74ec9'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412fed7d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,347 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,347 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,347 httpcore.http11 DEBUG send_request_headers.started request= -13:54:35,348 httpcore.http11 DEBUG send_request_headers.complete -13:54:35,348 httpcore.http11 DEBUG send_request_body.started request= -13:54:35,348 httpcore.http11 DEBUG send_request_body.complete -13:54:35,348 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:35,356 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'141'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999256'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_d830403ea25d56a89766ae5306aab12c'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412cf77da0-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,356 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,357 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,359 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'248'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999308'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_5bf848ffd973311adf948f826e806260'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4411e857d9b-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,359 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,359 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,371 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'121'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4998914'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'13ms'), (b'x-request-id', b'req_e0ef8afe0f4b34f4923f2e1722111c11'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412f2cc231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,371 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,371 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,384 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'211'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999529'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'5ms'), (b'x-request-id', b'req_54897b9341e9a0f668a89b053a7bd202'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c44128fcc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,384 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,384 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,401 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'217'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999138'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'10ms'), (b'x-request-id', b'req_0c14f7c7c44fa224bf4b523d940e040b'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c440c88ec22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,401 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,401 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,442 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'394'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999355'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_3cb2d2aa1b81286694e5e4fecfa982ce'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412811c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,442 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,442 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,443 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'369'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999662'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'4ms'), (b'x-request-id', b'req_dd6f1d261051a8be995bf1fc9b00b213'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c440cfc77da1-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,443 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,443 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,453 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'425'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999421'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'6ms'), (b'x-request-id', b'req_ad7e051bb21cc3acbd1010f909d039d3'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4411967c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,453 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,453 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,479 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'355'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999481'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'6ms'), (b'x-request-id', b'req_ad4ad186938ced74538d6aa235887572'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412eeac22f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,479 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,479 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,507 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,507 httpcore.http11 DEBUG response_closed.started -13:54:35,507 httpcore.http11 DEBUG response_closed.complete -13:54:35,507 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,509 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.7660000000032596. input_tokens=627, output_tokens=0 -13:54:35,521 openai._base_client DEBUG Request options: {'method': 'post', 'url': '/embeddings', 'files': None, 'post_parser': .parser at 0x000001C3DE758180>, 'json_data': {'input': ['FLIGHT SEGMENT:A flight segment refers to a portion of a journey between two airports, which may have specific baggage rules.', '$5:An additional handling fee of $5 is charged per passenger when checking baggage through the EL AL Service Center.', '50% DISCOUNT:Passengers can enjoy up to a 50% discount on the fee charged at the airport if they purchase additional baggage online up to 3 hours before their flight.', "TICKET TYPE:The ticket type determines the baggage allowance and rules applicable to each passenger's reservation.", 'CHECKED BAGGAGE RULES:Checked baggage rules may vary when several airlines are involved in a flight route.', 'FREE BAGGAGE ALLOWANCE:The free baggage allowance is included for each flight segment on the ticket, specifying how much baggage can be checked without extra fees.', 'ADDITIONAL PIECES OF CHECKED BAGGAGE:There is a fee for any additional pieces of checked baggage beyond the allowed limit for each travel class.', "INFANT'S CHECKED BAGGAGE:Infant's checked baggage includes items like strollers and infant car seats that can be checked without additional charge.", 'LITE TICKETS:Lite tickets are a type of ticket that does not include any baggage allowance.', 'MAXIMUM SIZE:The maximum size permitted per piece of checked baggage is 158 cm, calculated as the sum of length, width, and depth.', 'EXCESS BAGGAGE RATES:Excess baggage rates are the fees charged for baggage that exceeds the allowed limit, which may change over time.', 'GOVERNMENT SERVICE TAX:A government service tax will be collected for air travel for flights originating in India.', 'CODESHARE FLIGHTS:Codeshare flights are flights operated by other airlines that are part of a partnership with EL AL.', 'LINEAR DIMENSION:Linear dimension refers to the measurement of length, which is one of the components used to calculate the size of baggage.', 'MEASUREMENT UNIT:Measurement units such as kilograms and pounds are used to quantify the weight of baggage.', 'SIZE CATEGORY:Size category refers to the classification of baggage based on its dimensions, which affects the allowance and fees.'], 'model': 'text-embedding-3-small', 'encoding_format': 'base64'}} -13:54:35,522 httpcore.http11 DEBUG send_request_headers.started request= -13:54:35,524 httpcore.http11 DEBUG send_request_headers.complete -13:54:35,524 httpcore.http11 DEBUG send_request_body.started request= -13:54:35,524 httpcore.http11 DEBUG send_request_body.complete -13:54:35,524 httpcore.http11 DEBUG receive_response_headers.started request= -13:54:35,552 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,552 httpcore.http11 DEBUG response_closed.started -13:54:35,552 httpcore.http11 DEBUG response_closed.complete -13:54:35,552 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,554 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.8280000000377186. input_tokens=664, output_tokens=0 -13:54:35,570 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,570 httpcore.http11 DEBUG response_closed.started -13:54:35,571 httpcore.http11 DEBUG response_closed.complete -13:54:35,571 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,572 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.8429999999934807. input_tokens=993, output_tokens=0 -13:54:35,584 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'514'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'via', b'envoy-router-7b8956cfb9-tnf95'), (b'x-envoy-upstream-service-time', b'296'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999346'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'7ms'), (b'x-request-id', b'req_2062cc5cf4111f01902a42b74843a130'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412862c229-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,585 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,585 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,605 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'341'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999252'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'8ms'), (b'x-request-id', b'req_85a93401f0faa5c142acc7a4d8b6b566'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412ea07d95-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,605 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,605 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,636 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,636 httpcore.http11 DEBUG response_closed.started -13:54:35,636 httpcore.http11 DEBUG response_closed.complete -13:54:35,636 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,638 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.9070000000065193. input_tokens=405, output_tokens=0 -13:54:35,651 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'511'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999439'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'6ms'), (b'x-request-id', b'req_7f9254eab00a33acd861eba6f7331c0e'), (b'cf-cache-status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c44128ffc22e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,652 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,652 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,654 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,654 httpcore.http11 DEBUG response_closed.started -13:54:35,654 httpcore.http11 DEBUG response_closed.complete -13:54:35,654 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,655 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.9220000000204891. input_tokens=585, output_tokens=0 -13:54:35,675 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,675 httpcore.http11 DEBUG response_closed.started -13:54:35,675 httpcore.http11 DEBUG response_closed.complete -13:54:35,676 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,677 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.9530000000377186. input_tokens=535, output_tokens=0 -13:54:35,690 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,690 httpcore.http11 DEBUG response_closed.started -13:54:35,691 httpcore.http11 DEBUG response_closed.complete -13:54:35,692 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,693 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.9839999999967404. input_tokens=1368, output_tokens=0 -13:54:35,707 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,707 httpcore.http11 DEBUG response_closed.started -13:54:35,707 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,707 httpcore.http11 DEBUG response_closed.started -13:54:35,707 httpcore.http11 DEBUG response_closed.complete -13:54:35,708 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,709 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.9689999999827705. input_tokens=463, output_tokens=0 -13:54:35,721 httpcore.http11 DEBUG response_closed.complete -13:54:35,722 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,723 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.0. input_tokens=562, output_tokens=0 -13:54:35,737 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,737 httpcore.http11 DEBUG response_closed.started -13:54:35,738 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,738 httpcore.http11 DEBUG response_closed.started -13:54:35,738 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'431'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999574'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'5ms'), (b'x-request-id', b'req_a2ed6ef2cbee4994eaa771f6248c585c'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412807c21f-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,739 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,739 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,740 httpcore.http11 DEBUG response_closed.complete -13:54:35,741 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,742 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.0150000000139698. input_tokens=687, output_tokens=0 -13:54:35,754 httpcore.http11 DEBUG response_closed.complete -13:54:35,754 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,756 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.0310000000172295. input_tokens=287, output_tokens=0 -13:54:35,776 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:35 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'500'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9998'), (b'x-ratelimit-remaining-tokens', b'4998642'), (b'x-ratelimit-reset-requests', b'7ms'), (b'x-ratelimit-reset-tokens', b'16ms'), (b'x-request-id', b'req_25705f7c4b5163ce70412a4ab347e4df'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4412971c227-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,776 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,776 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,778 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,779 httpcore.http11 DEBUG response_closed.started -13:54:35,779 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,779 httpcore.http11 DEBUG response_closed.started -13:54:35,780 httpcore.http11 DEBUG response_closed.complete -13:54:35,780 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,781 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.047000000020489. input_tokens=396, output_tokens=0 -13:54:35,800 httpcore.http11 DEBUG response_closed.complete -13:54:35,800 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,801 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.0780000000377186. input_tokens=520, output_tokens=0 -13:54:35,818 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:36 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'220'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999682'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'3ms'), (b'x-request-id', b'req_db1966c9fefb9e02856a34e7952e5549'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c4448be67d9e-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:35,818 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:35,819 httpcore.http11 DEBUG receive_response_body.started request= -13:54:35,830 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,830 httpcore.http11 DEBUG response_closed.started -13:54:35,830 httpcore.http11 DEBUG response_closed.complete -13:54:35,830 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,832 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.0939999999827705. input_tokens=503, output_tokens=0 -13:54:35,846 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,846 httpcore.http11 DEBUG response_closed.started -13:54:35,846 httpcore.http11 DEBUG response_closed.complete -13:54:35,846 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,848 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.1099999999860302. input_tokens=388, output_tokens=0 -13:54:35,861 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,861 httpcore.http11 DEBUG response_closed.started -13:54:35,861 httpcore.http11 DEBUG response_closed.complete -13:54:35,862 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,863 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.125. input_tokens=378, output_tokens=0 -13:54:35,929 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,929 httpcore.http11 DEBUG response_closed.started -13:54:35,929 httpcore.http11 DEBUG response_closed.complete -13:54:35,930 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,931 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.2030000000377186. input_tokens=762, output_tokens=0 -13:54:35,972 httpcore.http11 DEBUG receive_response_body.complete -13:54:35,972 httpcore.http11 DEBUG response_closed.started -13:54:35,972 httpcore.http11 DEBUG response_closed.complete -13:54:35,972 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:35,974 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.25. input_tokens=646, output_tokens=0 -13:54:36,4 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,5 httpcore.http11 DEBUG response_closed.started -13:54:36,5 httpcore.http11 DEBUG response_closed.complete -13:54:36,5 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,7 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.2660000000032596. input_tokens=497, output_tokens=0 -13:54:36,27 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,27 httpcore.http11 DEBUG response_closed.started -13:54:36,27 httpcore.http11 DEBUG response_closed.complete -13:54:36,28 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,29 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.312000000034459. input_tokens=497, output_tokens=0 -13:54:36,42 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,42 httpcore.http11 DEBUG response_closed.started -13:54:36,42 httpcore.http11 DEBUG response_closed.complete -13:54:36,43 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,44 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.3130000000237487. input_tokens=441, output_tokens=0 -13:54:36,101 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,101 httpcore.http11 DEBUG response_closed.started -13:54:36,102 httpcore.http11 DEBUG response_closed.complete -13:54:36,102 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,104 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.75. input_tokens=246, output_tokens=0 -13:54:36,148 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,148 httpcore.http11 DEBUG response_closed.started -13:54:36,148 httpcore.http11 DEBUG response_closed.complete -13:54:36,149 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,150 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.4070000000065193. input_tokens=513, output_tokens=0 -13:54:36,171 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,171 httpcore.http11 DEBUG response_closed.started -13:54:36,171 httpcore.http11 DEBUG response_closed.complete -13:54:36,172 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,174 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.4380000000237487. input_tokens=584, output_tokens=0 -13:54:36,299 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,299 httpcore.http11 DEBUG response_closed.started -13:54:36,299 httpcore.http11 DEBUG response_closed.complete -13:54:36,300 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,301 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 1.5780000000377186. input_tokens=541, output_tokens=0 -13:54:36,314 httpcore.http11 DEBUG receive_response_headers.complete return_value=(b'HTTP/1.1', 200, b'OK', [(b'Date', b'Mon, 18 Nov 2024 11:54:36 GMT'), (b'Content-Type', b'application/json'), (b'Transfer-Encoding', b'chunked'), (b'Connection', b'keep-alive'), (b'access-control-allow-origin', b'*'), (b'access-control-expose-headers', b'X-Request-ID'), (b'openai-model', b'text-embedding-3-small'), (b'openai-organization', b'alpharalpha'), (b'openai-processing-ms', b'346'), (b'openai-version', b'2020-10-01'), (b'strict-transport-security', b'max-age=31536000; includeSubDomains; preload'), (b'x-ratelimit-limit-requests', b'10000'), (b'x-ratelimit-limit-tokens', b'5000000'), (b'x-ratelimit-remaining-requests', b'9999'), (b'x-ratelimit-remaining-tokens', b'4999488'), (b'x-ratelimit-reset-requests', b'6ms'), (b'x-ratelimit-reset-tokens', b'6ms'), (b'x-request-id', b'req_b08863a0aa9986e8ce9116bbe669f584'), (b'CF-Cache-Status', b'DYNAMIC'), (b'X-Content-Type-Options', b'nosniff'), (b'Server', b'cloudflare'), (b'CF-RAY', b'8e47c445ad9cc231-TLV'), (b'Content-Encoding', b'gzip'), (b'alt-svc', b'h3=":443"; ma=86400')]) -13:54:36,314 httpx INFO HTTP Request: POST https://api.openai.com/v1/embeddings "HTTP/1.1 200 OK" -13:54:36,314 httpcore.http11 DEBUG receive_response_body.started request= -13:54:36,491 httpcore.http11 DEBUG receive_response_body.complete -13:54:36,491 httpcore.http11 DEBUG response_closed.started -13:54:36,491 httpcore.http11 DEBUG response_closed.complete -13:54:36,492 openai._base_client DEBUG HTTP Request: POST https://api.openai.com/v1/embeddings "200 OK" -13:54:36,493 graphrag.llm.base.rate_limiting_llm INFO perf - llm.embedding "Process" with 0 retries took 0.9679999999934807. input_tokens=426, output_tokens=0 -13:54:36,592 graphrag.cli.index INFO All workflows completed successfully. diff --git a/reports/logs.json b/reports/logs.json deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 3cbb01e717cb4eae807e36de6ac82dddecaa30fe..0000000000000000000000000000000000000000 --- a/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -<<<<<<< HEAD -streamlit==1.40.1 -pandas -======= -streamlit==1.40.1 -pandas ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff -graphrag==0.4.1 \ No newline at end of file diff --git a/search_handlers.py b/search_handlers.py deleted file mode 100644 index ff2ea1d1f98093b2b6ea03ad48f9518ea971822c..0000000000000000000000000000000000000000 --- a/search_handlers.py +++ /dev/null @@ -1,573 +0,0 @@ -<<<<<<< HEAD -import asyncio -from pathlib import Path -import pandas as pd -from typing import Tuple, Optional -from graphrag.config import GraphRagConfig, load_config, resolve_paths -from graphrag.index.create_pipeline_config import create_pipeline_config -from graphrag.logging import PrintProgressReporter -from graphrag.utils.storage import _create_storage, _load_table_from_storage -import graphrag.api as api - - -class StreamlitProgressReporter(PrintProgressReporter): - def __init__(self, placeholder): - super().__init__("") - self.placeholder = placeholder - - def success(self, message: str): - self.placeholder.success(message) - - -def _resolve_parquet_files( - root_dir: str, - config: GraphRagConfig, - parquet_list: list[str], - optional_list: list[str], -) -> dict[str, pd.DataFrame]: - """Read parquet files to a dataframe dict.""" - dataframe_dict = {} - pipeline_config = create_pipeline_config(config) - storage_obj = _create_storage(root_dir=root_dir, config=pipeline_config.storage) - - for parquet_file in parquet_list: - df_key = parquet_file.split(".")[0] - df_value = asyncio.run( - _load_table_from_storage(name=parquet_file, storage=storage_obj) - ) - dataframe_dict[df_key] = df_value - - for optional_file in optional_list: - file_exists = asyncio.run(storage_obj.has(optional_file)) - df_key = optional_file.split(".")[0] - if file_exists: - df_value = asyncio.run( - _load_table_from_storage(name=optional_file, storage=storage_obj) - ) - dataframe_dict[df_key] = df_value - else: - dataframe_dict[df_key] = None - - return dataframe_dict - - -def run_global_search( - config_filepath: Optional[str], - data_dir: Optional[str], - root_dir: str, - community_level: int, - response_type: str, - streaming: bool, - query: str, - progress_placeholder, -) -> Tuple[str, dict]: - """Perform a global search with a given query.""" - root = Path(root_dir).resolve() - config = load_config(root, config_filepath) - reporter = StreamlitProgressReporter(progress_placeholder) - - config.storage.base_dir = data_dir or config.storage.base_dir - resolve_paths(config) - - dataframe_dict = _resolve_parquet_files( - root_dir=root_dir, - config=config, - parquet_list=[ - "create_final_nodes.parquet", - "create_final_entities.parquet", - "create_final_community_reports.parquet", - ], - optional_list=[], - ) - - final_nodes: pd.DataFrame = dataframe_dict["create_final_nodes"] - final_entities: pd.DataFrame = dataframe_dict["create_final_entities"] - final_community_reports: pd.DataFrame = dataframe_dict[ - "create_final_community_reports" - ] - - if streaming: - - async def run_streaming_search(): - full_response = "" - context_data = None - get_context_data = True - try: - async for stream_chunk in api.global_search_streaming( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - community_level=community_level, - response_type=response_type, - query=query, - ): - if get_context_data: - context_data = stream_chunk - get_context_data = False - else: - full_response += stream_chunk - progress_placeholder.markdown(full_response) - except Exception as e: - progress_placeholder.error(f"Error during streaming search: {e}") - return None, None - - return full_response, context_data - - result = asyncio.run(run_streaming_search()) - if result is None: - return "", {} # Graceful fallback - return result - - # Non-streaming logic - try: - response, context_data = asyncio.run( - api.global_search( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - community_level=community_level, - response_type=response_type, - query=query, - ) - ) - reporter.success(f"Global Search Response:\n{response}") - return response, context_data - except Exception as e: - progress_placeholder.error(f"Error during global search: {e}") - return "", {} # Graceful fallback - - -def run_local_search( - config_filepath: Optional[str], - data_dir: Optional[str], - root_dir: str, - community_level: int, - response_type: str, - streaming: bool, - query: str, - progress_placeholder, -) -> Tuple[str, dict]: - """Perform a local search with a given query.""" - root = Path(root_dir).resolve() - config = load_config(root, config_filepath) - reporter = StreamlitProgressReporter(progress_placeholder) - - config.storage.base_dir = data_dir or config.storage.base_dir - resolve_paths(config) - - dataframe_dict = _resolve_parquet_files( - root_dir=root_dir, - config=config, - parquet_list=[ - "create_final_nodes.parquet", - "create_final_community_reports.parquet", - "create_final_text_units.parquet", - "create_final_relationships.parquet", - "create_final_entities.parquet", - ], - optional_list=["create_final_covariates.parquet"], - ) - - final_nodes: pd.DataFrame = dataframe_dict["create_final_nodes"] - final_community_reports: pd.DataFrame = dataframe_dict[ - "create_final_community_reports" - ] - final_text_units: pd.DataFrame = dataframe_dict["create_final_text_units"] - final_relationships: pd.DataFrame = dataframe_dict["create_final_relationships"] - final_entities: pd.DataFrame = dataframe_dict["create_final_entities"] - final_covariates: Optional[pd.DataFrame] = dataframe_dict["create_final_covariates"] - - if streaming: - - async def run_streaming_search(): - full_response = "" - context_data = None - get_context_data = True - async for stream_chunk in api.local_search_streaming( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - text_units=final_text_units, - relationships=final_relationships, - covariates=final_covariates, - community_level=community_level, - response_type=response_type, - query=query, - ): - if get_context_data: - context_data = stream_chunk - get_context_data = False - else: - full_response += stream_chunk - progress_placeholder.markdown(full_response) - return full_response, context_data - - return asyncio.run(run_streaming_search()) - - response, context_data = asyncio.run( - api.local_search( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - text_units=final_text_units, - relationships=final_relationships, - covariates=final_covariates, - community_level=community_level, - response_type=response_type, - query=query, - ) - ) - reporter.success(f"Local Search Response:\n{response}") - return response, context_data - - -def run_drift_search( - config_filepath: Optional[str], - data_dir: Optional[str], - root_dir: str, - community_level: int, - response_type: str, - streaming: bool, - query: str, - progress_placeholder, -) -> Tuple[str, dict]: - """Perform a DRIFT search with a given query.""" - root = Path(root_dir).resolve() - config = load_config(root, config_filepath) - reporter = StreamlitProgressReporter(progress_placeholder) - - config.storage.base_dir = data_dir or config.storage.base_dir - resolve_paths(config) - - dataframe_dict = _resolve_parquet_files( - root_dir=root_dir, - config=config, - parquet_list=[ - "create_final_nodes.parquet", - "create_final_entities.parquet", - "create_final_community_reports.parquet", - "create_final_text_units.parquet", - "create_final_relationships.parquet", - ], - optional_list=[], # Remove covariates as it's not supported - ) - - final_nodes: pd.DataFrame = dataframe_dict["create_final_nodes"] - final_entities: pd.DataFrame = dataframe_dict["create_final_entities"] - final_community_reports: pd.DataFrame = dataframe_dict[ - "create_final_community_reports" - ] - final_text_units: pd.DataFrame = dataframe_dict["create_final_text_units"] - final_relationships: pd.DataFrame = dataframe_dict["create_final_relationships"] - - # Note: DRIFT search doesn't support streaming - if streaming: - progress_placeholder.warning( - "Streaming is not supported for DRIFT search. Using standard search instead." - ) - - response, context_data = asyncio.run( - api.drift_search( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - text_units=final_text_units, - relationships=final_relationships, - community_level=community_level, - query=query, - ) - ) - reporter.success(f"DRIFT Search Response:\n{response}") - return response, context_data -======= -import asyncio -from pathlib import Path -import pandas as pd -from typing import Tuple, Optional -from graphrag.config import GraphRagConfig, load_config, resolve_paths -from graphrag.index.create_pipeline_config import create_pipeline_config -from graphrag.logging import PrintProgressReporter -from graphrag.utils.storage import _create_storage, _load_table_from_storage -import graphrag.api as api - - -class StreamlitProgressReporter(PrintProgressReporter): - def __init__(self, placeholder): - super().__init__("") - self.placeholder = placeholder - - def success(self, message: str): - self.placeholder.success(message) - - -def _resolve_parquet_files( - root_dir: str, - config: GraphRagConfig, - parquet_list: list[str], - optional_list: list[str], -) -> dict[str, pd.DataFrame]: - """Read parquet files to a dataframe dict.""" - dataframe_dict = {} - pipeline_config = create_pipeline_config(config) - storage_obj = _create_storage(root_dir=root_dir, config=pipeline_config.storage) - - for parquet_file in parquet_list: - df_key = parquet_file.split(".")[0] - df_value = asyncio.run( - _load_table_from_storage(name=parquet_file, storage=storage_obj) - ) - dataframe_dict[df_key] = df_value - - for optional_file in optional_list: - file_exists = asyncio.run(storage_obj.has(optional_file)) - df_key = optional_file.split(".")[0] - if file_exists: - df_value = asyncio.run( - _load_table_from_storage(name=optional_file, storage=storage_obj) - ) - dataframe_dict[df_key] = df_value - else: - dataframe_dict[df_key] = None - - return dataframe_dict - - -def run_global_search( - config_filepath: Optional[str], - data_dir: Optional[str], - root_dir: str, - community_level: int, - response_type: str, - streaming: bool, - query: str, - progress_placeholder, -) -> Tuple[str, dict]: - """Perform a global search with a given query.""" - root = Path(root_dir).resolve() - config = load_config(root, config_filepath) - reporter = StreamlitProgressReporter(progress_placeholder) - - config.storage.base_dir = data_dir or config.storage.base_dir - resolve_paths(config) - - dataframe_dict = _resolve_parquet_files( - root_dir=root_dir, - config=config, - parquet_list=[ - "create_final_nodes.parquet", - "create_final_entities.parquet", - "create_final_community_reports.parquet", - ], - optional_list=[], - ) - - final_nodes: pd.DataFrame = dataframe_dict["create_final_nodes"] - final_entities: pd.DataFrame = dataframe_dict["create_final_entities"] - final_community_reports: pd.DataFrame = dataframe_dict[ - "create_final_community_reports" - ] - - if streaming: - - async def run_streaming_search(): - full_response = "" - context_data = None - get_context_data = True - try: - async for stream_chunk in api.global_search_streaming( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - community_level=community_level, - response_type=response_type, - query=query, - ): - if get_context_data: - context_data = stream_chunk - get_context_data = False - else: - full_response += stream_chunk - progress_placeholder.markdown(full_response) - except Exception as e: - progress_placeholder.error(f"Error during streaming search: {e}") - return None, None - - return full_response, context_data - - result = asyncio.run(run_streaming_search()) - if result is None: - return "", {} # Graceful fallback - return result - - # Non-streaming logic - try: - response, context_data = asyncio.run( - api.global_search( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - community_level=community_level, - response_type=response_type, - query=query, - ) - ) - reporter.success(f"Global Search Response:\n{response}") - return response, context_data - except Exception as e: - progress_placeholder.error(f"Error during global search: {e}") - return "", {} # Graceful fallback - - -def run_local_search( - config_filepath: Optional[str], - data_dir: Optional[str], - root_dir: str, - community_level: int, - response_type: str, - streaming: bool, - query: str, - progress_placeholder, -) -> Tuple[str, dict]: - """Perform a local search with a given query.""" - root = Path(root_dir).resolve() - config = load_config(root, config_filepath) - reporter = StreamlitProgressReporter(progress_placeholder) - - config.storage.base_dir = data_dir or config.storage.base_dir - resolve_paths(config) - - dataframe_dict = _resolve_parquet_files( - root_dir=root_dir, - config=config, - parquet_list=[ - "create_final_nodes.parquet", - "create_final_community_reports.parquet", - "create_final_text_units.parquet", - "create_final_relationships.parquet", - "create_final_entities.parquet", - ], - optional_list=["create_final_covariates.parquet"], - ) - - final_nodes: pd.DataFrame = dataframe_dict["create_final_nodes"] - final_community_reports: pd.DataFrame = dataframe_dict[ - "create_final_community_reports" - ] - final_text_units: pd.DataFrame = dataframe_dict["create_final_text_units"] - final_relationships: pd.DataFrame = dataframe_dict["create_final_relationships"] - final_entities: pd.DataFrame = dataframe_dict["create_final_entities"] - final_covariates: Optional[pd.DataFrame] = dataframe_dict["create_final_covariates"] - - if streaming: - - async def run_streaming_search(): - full_response = "" - context_data = None - get_context_data = True - async for stream_chunk in api.local_search_streaming( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - text_units=final_text_units, - relationships=final_relationships, - covariates=final_covariates, - community_level=community_level, - response_type=response_type, - query=query, - ): - if get_context_data: - context_data = stream_chunk - get_context_data = False - else: - full_response += stream_chunk - progress_placeholder.markdown(full_response) - return full_response, context_data - - return asyncio.run(run_streaming_search()) - - response, context_data = asyncio.run( - api.local_search( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - text_units=final_text_units, - relationships=final_relationships, - covariates=final_covariates, - community_level=community_level, - response_type=response_type, - query=query, - ) - ) - reporter.success(f"Local Search Response:\n{response}") - return response, context_data - - -def run_drift_search( - config_filepath: Optional[str], - data_dir: Optional[str], - root_dir: str, - community_level: int, - response_type: str, - streaming: bool, - query: str, - progress_placeholder, -) -> Tuple[str, dict]: - """Perform a DRIFT search with a given query.""" - root = Path(root_dir).resolve() - config = load_config(root, config_filepath) - reporter = StreamlitProgressReporter(progress_placeholder) - - config.storage.base_dir = data_dir or config.storage.base_dir - resolve_paths(config) - - dataframe_dict = _resolve_parquet_files( - root_dir=root_dir, - config=config, - parquet_list=[ - "create_final_nodes.parquet", - "create_final_entities.parquet", - "create_final_community_reports.parquet", - "create_final_text_units.parquet", - "create_final_relationships.parquet", - ], - optional_list=[], # Remove covariates as it's not supported - ) - - final_nodes: pd.DataFrame = dataframe_dict["create_final_nodes"] - final_entities: pd.DataFrame = dataframe_dict["create_final_entities"] - final_community_reports: pd.DataFrame = dataframe_dict[ - "create_final_community_reports" - ] - final_text_units: pd.DataFrame = dataframe_dict["create_final_text_units"] - final_relationships: pd.DataFrame = dataframe_dict["create_final_relationships"] - - # Note: DRIFT search doesn't support streaming - if streaming: - progress_placeholder.warning( - "Streaming is not supported for DRIFT search. Using standard search instead." - ) - - response, context_data = asyncio.run( - api.drift_search( - config=config, - nodes=final_nodes, - entities=final_entities, - community_reports=final_community_reports, - text_units=final_text_units, - relationships=final_relationships, - community_level=community_level, - query=query, - ) - ) - reporter.success(f"DRIFT Search Response:\n{response}") - return response, context_data ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff diff --git a/settings.yaml b/settings.yaml deleted file mode 100644 index c1d6d23dce161f96a6c53ddf088c5e75aa91b080..0000000000000000000000000000000000000000 --- a/settings.yaml +++ /dev/null @@ -1,196 +0,0 @@ -encoding_model: cl100k_base -skip_workflows: [] -llm: - api_key: ${GRAPHRAG_API_KEY} - type: openai_chat - model: gpt-4o-mini - model_supports_json: true - max_tokens: 4000 - temperature: 0 - -embeddings: - async_mode: threaded - batch_size: 16 - vector_store: - type: lancedb - db_uri: 'output/lancedb' - container_name: default - overwrite: true - llm: - api_key: ${GRAPHRAG_API_KEY} - type: openai_embedding - model: text-embedding-3-small - -chunks: - size: 500 - overlap: 50 - group_by_columns: [id] - -input: - type: file - file_type: text - base_dir: "input" - file_pattern: ".*\\.txt$" - recursive: true - source_tracking: true - processing_order: - - path: "first_paragraphs" - priority: 1 - purpose: "graph_building" - - path: "full_documents" - priority: 2 - purpose: "retrieval" - -entity_extraction: - prompt: "prompts/entity_extraction.txt" - entity_types: - - "Baggage Type" - - "Dimension" - - "Linear Dimension" - - "Weight" - - "Material Type" - - "Wheel Configuration" - - "Measurement Unit" - - "Size Category" - - "Weight Category" - - "Airline" - - "Alliance" - - "Airport" - - "Route Type" - - "Travel Class" - - "Cabin Section" - - "Aircraft Type" - - "Restriction" - - "Exemption" - - "Policy" - - "Fee Structure" - - "Currency" - - "Allowance" - - "Special Item" - - "Prohibited Item" - - "Restricted Item" - - "Dangerous Good" - - "Fragile Item" - - "Valuable Item" - - "Required Document" - - "Label Type" - - "Tag Category" - - "Service Type" - - "Handler Role" - - "Service Location" - - "Time Period" - - "Passenger Type" - - "Membership Level" - - "Group Category" - max_gleanings: 2 - source_filter: "first_paragraphs" - -claim_extraction: - enabled: true - claim_types: - - "Basic Size Restriction" - - "Oversize Condition" - - "Weight Limit Standard" - - "Overweight Condition" - - "Combined Dimension Limit" - - "Cabin Storage Requirement" - - "Standard Fee" - - "Excess Fee" - - "Oversize Fee" - - "Overweight Fee" - - "Special Handling Fee" - - "Season Surcharge" - - "Route-Specific Fee" - - "Multi-Piece Pricing" - - "Fee Waiver Condition" - - "Basic Allowance" - - "Class-Based Allowance" - - "Status-Based Allowance" - - "Route-Based Allowance" - - "Special Group Allowance" - - "Seasonal Allowance" - - "Equipment Allowance" - - "Prohibited Item Policy" - - "Restricted Item Condition" - - "Dangerous Goods Policy" - - "Special Item Restriction" - - "Packaging Requirement" - - "Declaration Requirement" - - "Check-in Deadline" - - "Special Handling Procedure" - - "Priority Handling Rule" - - "Transfer Handling Policy" - - "Delivery Service Policy" - - "Storage Policy" - - "Liability Limit" - - "Insurance Requirement" - - "Claim Procedure" - - "Compensation Policy" - - "Time Limit Policy" - - "Weather Restriction" - - "Seasonal Restriction" - - "Aircraft Limitation" - - "Route Restriction" - - "Connection Impact" - - "Tag Requirement" - - "Label Requirement" - - "Documentation Requirement" - - "Declaration Policy" - - "Handling Standard" - - "Service Level Agreement" - - "Priority Service Standard" - - "Delivery Time Standard" - - "Medical Exception" - - "Military Exception" - - "Diplomatic Exception" - - "Event Exception" - - "Emergency Exception" - prompt: "prompts/claim_extraction.txt" - description: "Extract baggage measurements, weight limits, and restrictions from airline documentation." - max_gleanings: 2 - source_filter: "first_paragraphs" - -local_search: - text_unit_prop: 0.7 - community_prop: 0.3 - top_k_mapped_entities: 15 - top_k_relationships: 15 - max_tokens: 4000 - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - -global_search: - max_tokens: 4000 - data_max_tokens: 4000 - map_max_tokens: 1000 - reduce_max_tokens: 2000 - allow_general_knowledge: false - min_score_threshold: 0.1 - concurrency: 10 - -embed_graph: - enabled: true - num_walks: 100 - walk_length: 10 - window_size: 5 - iterations: 10 - -umap: - enabled: true - n_neighbors: 15 - min_dist: 0.1 - n_components: 2 - -storage: - type: file - base_dir: "output" - -cache: - type: file - base_dir: "cache" - -reporting: - type: file - base_dir: "reports" - include_source_tracking: true \ No newline at end of file diff --git a/styles.css b/styles.css deleted file mode 100644 index 9aece4ebe8c5fa77e8f230f54b25995cee6b6be8..0000000000000000000000000000000000000000 --- a/styles.css +++ /dev/null @@ -1,226 +0,0 @@ -<<<<<<< HEAD -/* Container for all messages */ -.chat-container { - display: flex; - flex-direction: column; - gap: 1rem; - padding: 1rem; -} - -/* Message wrapper with avatar support */ -.chat-message { - display: flex; - align-items: flex-start; - gap: 0.5rem; - width: 100%; - max-width: 900px; - margin: 0.5rem 0; -} - -/* Avatar container */ -.avatar { - width: 40px; - height: 40px; - border-radius: 50%; - overflow: hidden; - flex-shrink: 0; -} - -.avatar img { - width: 100%; - height: 100%; - object-fit: cover; -} - -/* Message content wrapper */ -.message-content-wrapper { - display: flex; - flex-direction: column; - max-width: 80%; -} - -/* Message bubble */ -.message-bubble { - padding: 1rem; - border-radius: 0.5rem; - margin: 0.2rem 0; -} - -/* User message specific styling */ -.user-message { - flex-direction: row-reverse; -} - -.user-message .message-bubble { - background-color: #2b313e; - border-top-right-radius: 0; - color: white; -} - -/* Assistant message specific styling */ -.assistant-message .message-bubble { - background-color: #343741; - border-top-left-radius: 0; - color: white; -} - -/* Message content */ -.message-content { - word-wrap: break-word; -} - -/* Remove default streamlit margins */ -.stMarkdown { - margin: 0 !important; -} - -/* Style for code blocks within messages */ -.message-content pre { - background-color: #1e1e1e; - padding: 0.5rem; - border-radius: 0.3rem; - margin: 0.5rem 0; - overflow-x: auto; -} - -/* Improved loading spinner visibility */ -.stSpinner { - text-align: center; - margin: 1rem 0; -} - -/* Time stamp styling */ -.timestamp { - font-size: 0.8em; - color: #999; - margin: 0.2rem 0; -} - -.logo-container { - display: flex; - /* Enable flexbox layout */ - align-items: center; - /* Vertically center-align items */ - padding: 10px 0; - /* Add padding top/bottom */ -} - -.logo-image { - max-width: 110px; - /* Set maximum width */ - height: auto; - /* Maintain aspect ratio */ -======= -/* Container for all messages */ -.chat-container { - display: flex; - flex-direction: column; - gap: 1rem; - padding: 1rem; -} - -/* Message wrapper with avatar support */ -.chat-message { - display: flex; - align-items: flex-start; - gap: 0.5rem; - width: 100%; - max-width: 900px; - margin: 0.5rem 0; -} - -/* Avatar container */ -.avatar { - width: 40px; - height: 40px; - border-radius: 50%; - overflow: hidden; - flex-shrink: 0; -} - -.avatar img { - width: 100%; - height: 100%; - object-fit: cover; -} - -/* Message content wrapper */ -.message-content-wrapper { - display: flex; - flex-direction: column; - max-width: 80%; -} - -/* Message bubble */ -.message-bubble { - padding: 1rem; - border-radius: 0.5rem; - margin: 0.2rem 0; -} - -/* User message specific styling */ -.user-message { - flex-direction: row-reverse; -} - -.user-message .message-bubble { - background-color: #2b313e; - border-top-right-radius: 0; - color: white; -} - -/* Assistant message specific styling */ -.assistant-message .message-bubble { - background-color: #343741; - border-top-left-radius: 0; - color: white; -} - -/* Message content */ -.message-content { - word-wrap: break-word; -} - -/* Remove default streamlit margins */ -.stMarkdown { - margin: 0 !important; -} - -/* Style for code blocks within messages */ -.message-content pre { - background-color: #1e1e1e; - padding: 0.5rem; - border-radius: 0.3rem; - margin: 0.5rem 0; - overflow-x: auto; -} - -/* Improved loading spinner visibility */ -.stSpinner { - text-align: center; - margin: 1rem 0; -} - -/* Time stamp styling */ -.timestamp { - font-size: 0.8em; - color: #999; - margin: 0.2rem 0; -} - -.logo-container { - display: flex; - /* Enable flexbox layout */ - align-items: center; - /* Vertically center-align items */ - padding: 10px 0; - /* Add padding top/bottom */ -} - -.logo-image { - max-width: 110px; - /* Set maximum width */ - height: auto; - /* Maintain aspect ratio */ ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff -} \ No newline at end of file diff --git a/wiki.py b/wiki.py deleted file mode 100644 index 07d663863a061515a0f84243c0c1116783ff60f5..0000000000000000000000000000000000000000 --- a/wiki.py +++ /dev/null @@ -1,1933 +0,0 @@ -<<<<<<< HEAD -# wiki.py -# import streamlit_mermaid as stmd -import streamlit.components.v1 as components -import streamlit as st -from streamlit.components.v1 import html - - -def mermaid(code: str, height: int = 600) -> None: - components.html( - f""" - -

- - """, - height=height, - ) - - -def render_wiki_tab(): - """Render the Wiki tab content.""" - st.header("Overview") - - st.markdown( - """ - This documentation details the process I followed to achieve the assignment of using GraphRAG for indexing the first paragraphs of seven documents, embedding the full documents, performing initial search on the graph built from the first paragraphs, and retrieving answers from the full document content. - """) - st.markdown( - """ - This project implements a specialized document processing and querying system using GraphRAG for El Al baggage requirements\allowance documentation. The system processes first paragraphs separately from full documents, enabling graph-based search while maintaining comprehensive answer retrieval capabilities. - - """ - ) - - st.markdown( - """ - ### Implementation Process - - Initially, I attempted to implement this using separate processing paths for first paragraphs and full documents, but I discovered a more elegant solution through GraphRAG's source tracking and processing order capabilities. Instead of maintaining separate indexes, I configured a unified approach where documents were processed together but with clear priorities and purposes. - - I set up the configuration to treat first paragraphs with priority 1 for graph building and full documents with priority 2 for retrieval. This was achieved through careful configuration of source tracking, processing order, and source filters in the `settings.yaml` file, which allowed me to maintain the separation of concerns. - """ - ) - - st.markdown( - """ - ### Final Implementation - - The final implementation proved successful, creating a knowledge graph from the first paragraphs while maintaining access to full document content for comprehensive answers. I used entity types specific to airport security (like **Baggage Type**, **Dimension**, **Weight Limit**) and configured claim extraction to focus on relevant restrictions and allowances. - - """ - ) - - st.markdown( - """ - ### Using the Chat Application - - The chat application provides an interactive interface to query the GraphRAG system. Here's how it works: - - ##### Getting Started: - - **Step 1**: Click on the chat tab. - - **Step 2**: Choose the desired search type from the sidebar: - - **Local Search**: Focuses on specific text chunks and direct relationships in the graph. - - **Global Search**: Analyzes the entire dataset at a high level using community summaries. - - **DRIFT Search**: Combines local and global search for complex queries requiring both detailed and contextual answers. - - ##### Submitting a Query: - - Enter your question in the input field at the bottom of the chat interface. - - Depending on the selected search type, the system will: - - Use the graph for initial navigation. - - Retrieve answers from full documents for comprehensive responses. - - ##### Viewing Results: - - The assistant's response appears in the chat window, formatted for clarity. - - ##### Key Features: - - **Streaming Responses**: Responses are displayed in real-time for supported search types. - - **Session History**: Previous queries and responses are retained within the session for reference. - - ##### Example Queries: - - "What are the liquid restrictions for carry-on bags?" - - "How do pet carrier size restrictions compare to regular carry-on limits?" - """ - ) - - with st.expander("Architecture", expanded=False): - st.markdown( - """ - The architecture of the system is designed to process data through multiple stages, including input preparation, processing, and search functionalities. Below is a detailed diagram illustrating the workflow of the system: - """ - ) - - mermaid_code = """ - %%{init: {'theme': 'base', 'themeVariables': {'primaryColor': '#1E90FF', 'edgeLabelBackground': '#FFFFFF', 'secondaryColor': '#F0F8FF', 'tertiaryColor': '#FFFFFF', 'primaryTextColor': '#000000'}}}%% - graph TD - subgraph Input - FP[First Paragraphs] --> P[Processing] - FD[Full Documents] --> P - end - - subgraph Processing - P --> IE[Entity Extraction] - P --> CD[Community Detection] - P --> E[Embeddings Generation] - - IE --> G[Graph Construction] - CD --> G - E --> VS[Vector Store] - end - - subgraph Search - Q[Query] --> DS[DRIFT Search] - DS --> GS[Graph Search] - DS --> FR[Full Retrieval] - GS --> VS - FR --> VS - GS --> A[Answer Generation] - FR --> A - end - """ - mermaid(mermaid_code, height=600) - - with st.expander("Graph Analysis", expanded=False): - st.markdown("### System Components Breakdown:") - - mermaid_code = """ - pie - title "System Components" - "Documents" : 14 - "Text Units" : 36 - "Entities" : 315 - "Relationships" : 372 - "Communities" : 66 - """ - mermaid(mermaid_code, height=500) - - # Description and graph statistics - st.markdown( - """ - ### Knowledge Graph Visualization - - The graph displayed below represents the relationships between various entities extracted from the input data. Nodes in the graph correspond to entities like "Documents," "Policies," and "Restrictions," while edges represent the relationships or connections between these entities. The graph is constructed using the extracted entities and relationships, processed through NetworkX, and visualized with Pyvis. - - **Process of Creation**: - - **Data Preparation**: Entities and relationships are extracted and saved as `create_final_nodes.parquet` and `create_final_relationships.parquet` files, respectively. - - **Graph Construction**: Using NetworkX, nodes and edges are added based on the extracted data. - - **Visualization**: Pyvis is used to create an interactive visualization with options like physics-based layout, node grouping, and hover effects. - - The resulting graph provides insights into the data's structure, including: - - Node type distribution - - Community detection levels - - Connectivity patterns - - Explore the graph below to understand the relationships between key entities. - """ - ) - - # Load and display the graph visualization (HTML file) - with open("knowledge_graph.html", "r") as f: - html_content = f.read() - st.components.v1.html(html_content, height=800) - - # Graph statistics - st.markdown( - """ - ### Graph Statistics: - - * **Number of nodes:** 427 - * **Number of edges:** 453 - - #### Node Type Distribution: - - | Node Type | Distribution | - |-----------------------|--------------| - | REQUIRED DOCUMENT | 39 | - | SERVICE TYPE | 35 | - | POLICY | 30 | - | RESTRICTION | 27 | - | SPECIAL ITEM | 26 | - | PROHIBITED ITEM | 23 | - | AIRPORT | 22 | - | BAGGAGE TYPE | 21 | - | SERVICE LOCATION | 18 | - | DANGEROUS GOOD | 14 | - | ALLOWANCE | 13 | - | GEO | 12 | - | MEASUREMENT UNIT | 11 | - | FEE STRUCTURE | 10 | - | LINEAR DIMENSION | 8 | - | TIME PERIOD | 8 | - | CABIN SECTION | 8 | - | WEIGHT | 8 | - | WEIGHT CATEGORY | 7 | - | AIRLINE | 7 | - | CITY | 7 | - | DIMENSION | 6 | - | VALUABLE ITEM | 5 | - | ROUTE TYPE | 5 | - | TRAVEL CLASS | 5 | - | ORGANIZATION | 5 | - | PASSENGER TYPE | 4 | - | RESTRICTED ITEM | 3 | - | CURRENCY | 2 | - | EXEMPTION | 2 | - | LABEL TYPE | 2 | - | MATERIAL TYPE | 2 | - | CARGO | 2 | - | MEMBERSHIP LEVEL | 2 | - | AIRCRAFT TYPE | 1 | - | REGION | 1 | - | COUNTRY | 1 | - | SIZE CATEGORY | 1 | - | WHEEL CONFIGURATION | 1 | - | TAG CATEGORY | 1 | - | GROUP CATEGORY | 1 | - - #### Most Connected Nodes: - - | Node | Connections | - |--------------------|-------------| - | EL AL | 49 | - | ANIMAL | 29 | - | CHECKED BAGGAGE | 25 | - | BAGGAGE | 21 | - | PET | 19 | - """ - ) - - with st.expander("Implementation Results", expanded=False): - st.markdown( - """ - ### Document Processing - - * **Total Documents**: 14 (7 first paragraphs + 7 full documents) - * **Text Units**: 36 - * **Entities**: 315 - * **Relationships**: 372 - * **Communities**: 66 across 4 levels - - ### Community Structure - - * **Level 0**: 11 communities - * **Level 1**: 44 communities - * **Level 2**: 9 communities - * **Level 3**: 2 communities - """ - ) - - st.markdown("### System Operation Flow") - - mermaid_code = """ - sequenceDiagram - participant U as User - participant Q as Query Engine - participant G as Graph Search - participant V as Vector Store - participant D as Document Retrieval - - U->>Q: Submit Query - Q->>G: Search in First Paragraph Graph - G->>V: Lookup Relevant Entities - V->>D: Retrieve Full Content - D->>Q: Return Comprehensive Answer - Q->>U: Present Response - """ - - mermaid(mermaid_code, height=400) - - with st.expander("Implementation Details", expanded=False): - st.markdown( - """ - The implementation of the system follows a processing pipeline that integrates data from the first paragraphs and full documents, creating a unified structure for efficient querying. Below is the pipeline representation: - """ - ) - - mermaid_code = """ - flowchart TB - subgraph First Paragraphs - FP[Load First Paragraphs] --> EP[Extract Entities] - EP --> RP[Build Relationships] - RP --> CP[Create Communities] - end - - subgraph Full Documents - FD[Load Full Documents] --> CH[Chunk Documents] - CH --> EF[Generate Embeddings] - end - - subgraph Integration - CP --> VS[(Vector Store)] - EF --> VS - end - - subgraph Search - Q[Query] --> GS[Graph Search] - GS --> VS - VS --> RD[Retrieve Details] - RD --> AG[Answer Generation] - end - """ - mermaid(mermaid_code, height=800) - with st.expander("Requirements Fulfillment", expanded=False): - st.markdown( - """ - ### Requirements Fulfillment - - **First Paragraph Processing**: ✓ - * Implemented through `source_filter` and `processing_order` - * Verified by entity and relationship extraction - - **Full Document Embeddings**: ✓ - * Stored in LanceDB - * Accessible for comprehensive retrieval - - **Graph-Based Search**: ✓ - * Communities and relationships established - * DRIFT search implemented - - **Complete Answer Retrieval**: ✓ - * Source priority configuration - * Full document content available - - ### Performance Metrics - - * **Indexing Speed**: 212.44 seconds total - * **Graph Density**: 372 relationships among 315 entities - * **Community Structure**: 4-level hierarchy - * **Vector Store Size**: 3 Lance files for different embedding types - """ - ) - - with st.expander("Achieving the Requirement", expanded=False): - st.markdown("### Source-Based Processing Control:") - - st.markdown( - """ - ```yaml - input: - source_tracking: true - processing_order: - - path: "first_paragraphs" - priority: 1 - purpose: "graph_building" - - path: "full_documents" - priority: 2 - purpose: "retrieval" - ``` - """ - ) - st.markdown( - """ - This configuration ensures that GraphRAG knows which content is for graph building (first paragraphs) and which is for retrieval (full documents). The priority system makes sure first paragraphs are processed first and used primarily for the knowledge graph construction. - """ - ) - - st.markdown("### Targeted Entity and Claim Extraction:") - - st.markdown( - """ - ```yaml - entity_extraction: - source_filter: "first_paragraphs" - max_gleanings: 2 - - claim_extraction: - source_filter: "first_paragraphs" - ``` - """ - ) - st.markdown( - """ - These filters ensure that the knowledge graph (entities, relationships, and claims) is built only from the first paragraphs. This is crucial because it means our initial search will only traverse the graph built from these first paragraphs, matching the requirement. The `max_gleanings: 2` allows for thorough extraction while maintaining precision. - """ - ) - - st.markdown("### Search Priority and Retrieval Control:") - - st.markdown( - """ - ```yaml - local_search: - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - text_unit_prop: 0.7 - community_prop: 0.3 - ``` - """ - ) - st.markdown( - """ - This is where the magic happens - when a query is made, the system first searches using the graph built from first paragraphs (`graph_search: "first_paragraphs"`), but when it needs to construct the answer, it pulls the content from the full documents (`answer_retrieval: "full_documents"`). - - The text_unit and community proportions ensure we're making good use of both the graph structure and the actual content. Looking at the output files we generated (`create_final_entities.parquet`, `create_final_relationships.parquet`, etc.), we can see this two-phase approach in action: the graph structure is built and stored separately from the full content, but they're linked through the unified vector store in LanceDB, allowing seamless transitions between graph search and content retrieval during query processing. - """ - ) - - with st.expander("Improvements to Make the Graph Creation Process Leaner and Faster", expanded=False): - st.markdown("### Optimization of Chunk Size and Overlap:") - - st.markdown( - """ - ```yaml - chunks: - size: 300 # Reduced from 500 - overlap: 25 # Reduced from 50 - group_by_columns: [id] - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Smaller chunks with minimal overlap reduce token usage. - - Maintains context while processing fewer tokens per API call. - - Especially efficient for first paragraphs processing. - """ - ) - - st.markdown("### Streamline Entity Types and Claims:") - - st.markdown( - """ - ```yaml - entity_extraction: - entity_types: - - "Baggage" - - "Restriction" - - "Item" - max_gleanings: 1 # Reduced from 2 - - claim_extraction: - enabled: false # Disable unless absolutely necessary - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Fewer entity types mean fewer extraction operations. - - Single gleaning pass is often sufficient. - - Claims processing is expensive and often redundant. - """ - ) - - st.markdown("### Optimize Graph Embeddings:") - - st.markdown( - """ - ```yaml - embed_graph: - enabled: true - num_walks: 50 # Reduced from 100 - walk_length: 5 # Reduced from 10 - window_size: 3 # Reduced from 5 - iterations: 5 # Reduced from 10 - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Fewer random walks still capture essential graph structure. - - Shorter walks reduce computation time. - - Smaller window size focuses on immediate relationships. - """ - ) - - st.markdown("### Batch Processing and Parallelization:") - - st.markdown( - """ - ```yaml - embeddings: - async_mode: asyncio # Changed from threaded - batch_size: 32 # Increased from 16 - batch_max_tokens: 8191 - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Asyncio performs better than threading for I/O-bound operations. - - Larger batch size reduces API calls. - - Maximizes throughput within token limits. - """ - ) - - st.markdown("### Community Structure Optimization:") - - st.markdown( - """ - ```yaml - cluster_graph: - max_cluster_size: 15 # Increased slightly - min_cluster_size: 3 # Added parameter - - community_reports: - max_input_length: 2000 # Reduced from default - max_length: 1000 # Reduced summary length - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Balanced cluster sizes reduce processing overhead. - - Shorter community reports still maintain essential information. - - Fewer tokens per report means faster processing. - """ - ) - - st.markdown("### Caching and Storage:") - - st.markdown( - """ - ```yaml - cache: - type: file - base_dir: "cache" - compression: true # Add compression - cache_embeddings: true - - storage: - type: file - base_dir: "output" - compression: true # Add compression - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Compression reduces I/O overhead. - - Caching embeddings prevents recomputation. - - File-based storage is faster than blob storage for local processing. - """ - ) - - st.markdown("### Disable Non-Essential Features:") - - st.markdown( - """ - ```yaml - umap: - enabled: false # Disable unless visualization needed - - snapshots: - graphml: false - raw_entities: false - top_level_nodes: false - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - UMAP calculation is computationally expensive. - - Snapshots are useful for debugging but add overhead. - """ - ) - - st.markdown("### LLM Configuration Optimization:") - - st.markdown( - """ - ```yaml - llm: - concurrent_requests: 25 - tokens_per_minute: 150000 - requests_per_minute: 10000 - max_retries: 5 # Reduced from 10 - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Balanced concurrency prevents rate limiting. - - Fewer retries reduce waiting time. - - Token and request limits prevent throttling. - """ - ) - - with st.expander("Query Types", expanded=False): - st.markdown("### Local Search:") - - st.markdown( - """ - ```yaml - local_search: - text_unit_prop: 0.7 # Focus on specific text chunks - community_prop: 0.3 # Some consideration of community context - top_k_mapped_entities: 15 - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - ``` - """ - ) - st.markdown( - """ - **Best when**: Looking for specific baggage rules or restrictions - **Example Query**: "What are the liquid restrictions for carry-on bags?" - - **How it works with our data**: - - Searches for entities in first paragraphs (like "liquid", "carry-on"). - - Follows direct relationships in the graph. - - Retrieves detailed rules from full documents. - - **Meets requirement?** Yes, but in a limited way - focuses on direct connections. - """ - ) - - st.markdown("### Global Search:") - - st.markdown( - """ - ```yaml - global_search: - max_tokens: 4000 - data_max_tokens: 4000 - min_score_threshold: 0.1 - allow_general_knowledge: false - ``` - """ - ) - st.markdown( - """ - **Best when**: Understanding overall policies or themes - **Example Query**: "What are the main types of baggage restrictions?" - - **How it works with our data**: - - Looks at community summaries built from first paragraphs. - - Provides broader context about baggage policies. - - Pulls supporting details from full documents. - - **Meets requirement?** Partially - good for overview but might miss specific connections. - """ - ) - - st.markdown("### DRIFT Search (Dynamic Reasoning and Inference with Flexible Traversal):") - - st.markdown( - """ - ```yaml - local_search: - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - ``` - """ - ) - st.markdown( - """ - **Best when**: Complex queries requiring both specific details and context - **Example Query**: "How do pet carrier size restrictions compare to regular carry-on limits?" - - **How it works with our data**: - - Starts with first paragraphs graph to understand relationships between: - - Pet carriers - - Regular carry-on bags - - Size restrictions - - Uses community understanding to find related policies. - - Retrieves specific details from full documents. - - **Meets requirement?** Yes, most comprehensively. - """ - ) - - st.markdown("### Best Choice for Our Requirement:") - st.markdown( - """ - **DRIFT Search** is the most suitable because: - - It naturally implements our two-phase requirement: - - Initial search on graph (from first paragraphs). - - Answer retrieval from full documents. - - It can handle complex queries that need: - - Understanding of relationships (from graph). - - Specific details (from full documents). - - It can dynamically adjust between: - - Local search when specific rules are needed. - - Global search when context is important. - """ - ) - with st.expander("Configuration: full `settings.yaml`", expanded=False): - - st.markdown( - """ - ```yaml - # Root configuration for GraphRAG, a system leveraging LLMs for advanced Retrieval Augmented Generation. - - encoding_model: cl100k_base - # Specifies the model used for token encoding. The default 'cl100k_base' is common for OpenAI's text models, - # determining how text is tokenized into machine-readable units. - - skip_workflows: [] - # A list of workflows to skip during execution. Empty indicates all workflows are executed. - - llm: - api_key: ${GRAPHRAG_API_KEY} - # Placeholder for the API key, replaced dynamically from environment variables. - # Ensures secure API access for LLM queries. - - type: openai_chat - # Defines the type of LLM interface used. Here, it connects to OpenAI's chat-based API. - - model: gpt-4o-mini - # Specifies the model variant to use. - - model_supports_json: true - # Indicates whether the LLM natively supports JSON responses, useful for structured outputs. - - max_tokens: 4000 - # Maximum number of tokens in the output. Balances performance and context length. - - temperature: 0 - # Controls randomness in outputs. 0 means deterministic responses, often preferred for accuracy. - - embeddings: - async_mode: threaded - # Asynchronous embedding computation mode. 'threaded' uses multi-threading for better performance. - - batch_size: 16 - # Number of data points processed per batch during embedding, balancing speed and resource use. - - vector_store: - type: lancedb - # Database type used for storing vectorized embeddings. 'lancedb' supports efficient vector operations. - - db_uri: 'output/lancedb' - # URI pointing to the database location where embeddings are stored. - - container_name: default - # Logical name for the container storing vector data. - - overwrite: true - # Whether to overwrite existing vectors. True allows updating the database during reruns. - - llm: - api_key: ${GRAPHRAG_API_KEY} - type: openai_embedding - model: text-embedding-3-small - # Dedicated LLM for embedding tasks. A smaller, specialized model is specified for embeddings. - - chunks: - size: 500 - # Number of tokens per chunk of text. Controls granularity for processing long documents. - - overlap: 50 - # Overlap between adjacent chunks to ensure continuity in analysis. - - group_by_columns: [id] - # Groups data by 'id' before chunking, preserving document boundaries. - - input: - type: file - file_type: text - base_dir: "input" - file_pattern: ".*\\.txt$" - recursive: true - source_tracking: true - processing_order: - - path: "first_paragraphs" - priority: 1 - purpose: "graph_building" - - path: "full_documents" - priority: 2 - purpose: "retrieval" - # Specifies the data source for ingestion: - # - Input is file-based text. - # - Reads files recursively from "input" directory matching '.txt' files. - # - Prioritizes "first_paragraphs" for graph building and full documents for retrieval. - - entity_extraction: - prompt: "prompts/entity_extraction.txt" - # Path to the custom prompt used for entity extraction tasks. - - entity_types: - - "Baggage Type" - - "Dimension" - - "Linear Dimension" - - "Weight" - - "Material Type" - - "Wheel Configuration" - - "Measurement Unit" - - "Size Category" - - "Weight Category" - - "Airline" - - "Alliance" - - "Airport" - - "Route Type" - - "Travel Class" - - "Cabin Section" - - "Aircraft Type" - - "Restriction" - - "Exemption" - - "Policy" - - "Fee Structure" - - "Currency" - - "Allowance" - - "Special Item" - - "Prohibited Item" - - "Restricted Item" - - "Dangerous Good" - - "Fragile Item" - - "Valuable Item" - - "Required Document" - - "Label Type" - - "Tag Category" - - "Service Type" - - "Handler Role" - - "Service Location" - - "Time Period" - - "Passenger Type" - - "Membership Level" - - "Group Category" - # Defines the types of entities the system should extract. - - max_gleanings: 2 - # Maximum number of re-processing rounds to refine entity detection. - - source_filter: "first_paragraphs" - # Restricts extraction to text from "first_paragraphs," optimizing focus. - - claim_extraction: - enabled: true - # Enables claim extraction, capturing specific conditions or assertions from text. - - claim_types: - - "Basic Size Restriction" - - "Oversize Condition" - - "Weight Limit Standard" - - "Overweight Condition" - - "Combined Dimension Limit" - - "Cabin Storage Requirement" - - "Standard Fee" - - "Excess Fee" - - "Oversize Fee" - - "Overweight Fee" - - "Special Handling Fee" - - "Season Surcharge" - - "Route-Specific Fee" - - "Multi-Piece Pricing" - - "Fee Waiver Condition" - - "Basic Allowance" - - "Class-Based Allowance" - - "Status-Based Allowance" - - "Route-Based Allowance" - - "Special Group Allowance" - - "Seasonal Allowance" - - "Equipment Allowance" - - "Prohibited Item Policy" - - "Restricted Item Condition" - - "Dangerous Goods Policy" - - "Special Item Restriction" - - "Packaging Requirement" - - "Declaration Requirement" - - "Check-in Deadline" - - "Special Handling Procedure" - - "Priority Handling Rule" - - "Transfer Handling Policy" - - "Delivery Service Policy" - - "Storage Policy" - - "Liability Limit" - - "Insurance Requirement" - - "Claim Procedure" - - "Compensation Policy" - - "Time Limit Policy" - - "Weather Restriction" - - "Seasonal Restriction" - - "Aircraft Limitation" - - "Route Restriction" - - "Connection Impact" - - "Tag Requirement" - - "Label Requirement" - - "Documentation Requirement" - - "Declaration Policy" - - "Handling Standard" - - "Service Level Agreement" - - "Priority Service Standard" - - "Delivery Time Standard" - - "Medical Exception" - - "Military Exception" - - "Diplomatic Exception" - - "Event Exception" - - "Emergency Exception" - # Types of claims to extract, covering diverse scenarios (e.g., fees, allowances). - - prompt: "prompts/claim_extraction.txt" - description: "Extract baggage measurements, weight limits, and restrictions from airline documentation." - # Customizes the extraction logic for airline baggage policies. - - max_gleanings: 2 - source_filter: "first_paragraphs" - # Restricts claims to "first_paragraphs," mirroring entity extraction. - - local_search: - text_unit_prop: 0.7 - community_prop: 0.3 - top_k_mapped_entities: 15 - top_k_relationships: 15 - max_tokens: 4000 - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - # Configures search behavior: - # - Balances searches between individual text units and community-level summaries. - # - Limits results to top 15 entities and relationships for relevance. - - global_search: - max_tokens: 4000 - data_max_tokens: 4000 - map_max_tokens: 1000 - reduce_max_tokens: 2000 - allow_general_knowledge: false - min_score_threshold: 0.1 - concurrency: 10 - # Defines query-wide global search capabilities: - # - Token limits for different operations. - # - Restricts non-specific general knowledge responses. - # - Handles up to 10 parallel queries. - - embed_graph: - enabled: true - num_walks: 100 - walk_length: 10 - window_size: 5 - iterations: 10 - # Enables graph embedding (e.g., for node2vec): - # - Generates 100 random walks per node to learn embeddings. - - umap: - enabled: true - n_neighbors: 15 - min_dist: 0.1 - n_components: 2 - # Configures UMAP for dimensionality reduction and visualization. - - storage: - type: file - base_dir: "output" - # Outputs processed data to local "output" directory. - - cache: - type: file - base_dir: "cache" - # Stores temporary files in "cache." - - reporting: - type: file - base_dir: "reports" - include_source_tracking: true - # Generates reports, including provenance for traceability. - - ``` - """ - ) -======= -# wiki.py -# import streamlit_mermaid as stmd -import streamlit.components.v1 as components -import streamlit as st -from streamlit.components.v1 import html - - -def mermaid(code: str, height: int = 600) -> None: - components.html( - f""" - -
-
-            {code}
-            
-
- - """, - height=height, - ) - - -def render_wiki_tab(): - """Render the Wiki tab content.""" - st.header("Overview") - - st.markdown( - """ - This documentation details the process I followed to achieve the assignment of using GraphRAG for indexing the first paragraphs of seven documents, embedding the full documents, performing initial search on the graph built from the first paragraphs, and retrieving answers from the full document content. - """) - st.markdown( - """ - This project implements a specialized document processing and querying system using GraphRAG for El Al baggage requirements\allowance documentation. The system processes first paragraphs separately from full documents, enabling graph-based search while maintaining comprehensive answer retrieval capabilities. - - """ - ) - - st.markdown( - """ - ### Implementation Process - - Initially, I attempted to implement this using separate processing paths for first paragraphs and full documents, but I discovered a more elegant solution through GraphRAG's source tracking and processing order capabilities. Instead of maintaining separate indexes, I configured a unified approach where documents were processed together but with clear priorities and purposes. - - I set up the configuration to treat first paragraphs with priority 1 for graph building and full documents with priority 2 for retrieval. This was achieved through careful configuration of source tracking, processing order, and source filters in the `settings.yaml` file, which allowed me to maintain the separation of concerns. - """ - ) - - st.markdown( - """ - ### Final Implementation - - The final implementation proved successful, creating a knowledge graph from the first paragraphs while maintaining access to full document content for comprehensive answers. I used entity types specific to airport security (like **Baggage Type**, **Dimension**, **Weight Limit**) and configured claim extraction to focus on relevant restrictions and allowances. - - """ - ) - - st.markdown( - """ - ### Using the Chat Application - - The chat application provides an interactive interface to query the GraphRAG system. Here's how it works: - - ##### Getting Started: - - **Step 1**: Click on the chat tab. - - **Step 2**: Choose the desired search type from the sidebar: - - **Local Search**: Focuses on specific text chunks and direct relationships in the graph. - - **Global Search**: Analyzes the entire dataset at a high level using community summaries. - - **DRIFT Search**: Combines local and global search for complex queries requiring both detailed and contextual answers. - - ##### Submitting a Query: - - Enter your question in the input field at the bottom of the chat interface. - - Depending on the selected search type, the system will: - - Use the graph for initial navigation. - - Retrieve answers from full documents for comprehensive responses. - - ##### Viewing Results: - - The assistant's response appears in the chat window, formatted for clarity. - - ##### Key Features: - - **Streaming Responses**: Responses are displayed in real-time for supported search types. - - **Session History**: Previous queries and responses are retained within the session for reference. - - ##### Example Queries: - - "What are the liquid restrictions for carry-on bags?" - - "How do pet carrier size restrictions compare to regular carry-on limits?" - """ - ) - - with st.expander("Architecture", expanded=False): - st.markdown( - """ - The architecture of the system is designed to process data through multiple stages, including input preparation, processing, and search functionalities. Below is a detailed diagram illustrating the workflow of the system: - """ - ) - - mermaid_code = """ - %%{init: {'theme': 'base', 'themeVariables': {'primaryColor': '#1E90FF', 'edgeLabelBackground': '#FFFFFF', 'secondaryColor': '#F0F8FF', 'tertiaryColor': '#FFFFFF', 'primaryTextColor': '#000000'}}}%% - graph TD - subgraph Input - FP[First Paragraphs] --> P[Processing] - FD[Full Documents] --> P - end - - subgraph Processing - P --> IE[Entity Extraction] - P --> CD[Community Detection] - P --> E[Embeddings Generation] - - IE --> G[Graph Construction] - CD --> G - E --> VS[Vector Store] - end - - subgraph Search - Q[Query] --> DS[DRIFT Search] - DS --> GS[Graph Search] - DS --> FR[Full Retrieval] - GS --> VS - FR --> VS - GS --> A[Answer Generation] - FR --> A - end - """ - mermaid(mermaid_code, height=600) - - with st.expander("Graph Analysis", expanded=False): - st.markdown("### System Components Breakdown:") - - mermaid_code = """ - pie - title "System Components" - "Documents" : 14 - "Text Units" : 36 - "Entities" : 315 - "Relationships" : 372 - "Communities" : 66 - """ - mermaid(mermaid_code, height=500) - - # Description and graph statistics - st.markdown( - """ - ### Knowledge Graph Visualization - - The graph displayed below represents the relationships between various entities extracted from the input data. Nodes in the graph correspond to entities like "Documents," "Policies," and "Restrictions," while edges represent the relationships or connections between these entities. The graph is constructed using the extracted entities and relationships, processed through NetworkX, and visualized with Pyvis. - - **Process of Creation**: - - **Data Preparation**: Entities and relationships are extracted and saved as `create_final_nodes.parquet` and `create_final_relationships.parquet` files, respectively. - - **Graph Construction**: Using NetworkX, nodes and edges are added based on the extracted data. - - **Visualization**: Pyvis is used to create an interactive visualization with options like physics-based layout, node grouping, and hover effects. - - The resulting graph provides insights into the data's structure, including: - - Node type distribution - - Community detection levels - - Connectivity patterns - - Explore the graph below to understand the relationships between key entities. - """ - ) - - # Load and display the graph visualization (HTML file) - with open("knowledge_graph.html", "r") as f: - html_content = f.read() - st.components.v1.html(html_content, height=800) - - # Graph statistics - st.markdown( - """ - ### Graph Statistics: - - * **Number of nodes:** 427 - * **Number of edges:** 453 - - #### Node Type Distribution: - - | Node Type | Distribution | - |-----------------------|--------------| - | REQUIRED DOCUMENT | 39 | - | SERVICE TYPE | 35 | - | POLICY | 30 | - | RESTRICTION | 27 | - | SPECIAL ITEM | 26 | - | PROHIBITED ITEM | 23 | - | AIRPORT | 22 | - | BAGGAGE TYPE | 21 | - | SERVICE LOCATION | 18 | - | DANGEROUS GOOD | 14 | - | ALLOWANCE | 13 | - | GEO | 12 | - | MEASUREMENT UNIT | 11 | - | FEE STRUCTURE | 10 | - | LINEAR DIMENSION | 8 | - | TIME PERIOD | 8 | - | CABIN SECTION | 8 | - | WEIGHT | 8 | - | WEIGHT CATEGORY | 7 | - | AIRLINE | 7 | - | CITY | 7 | - | DIMENSION | 6 | - | VALUABLE ITEM | 5 | - | ROUTE TYPE | 5 | - | TRAVEL CLASS | 5 | - | ORGANIZATION | 5 | - | PASSENGER TYPE | 4 | - | RESTRICTED ITEM | 3 | - | CURRENCY | 2 | - | EXEMPTION | 2 | - | LABEL TYPE | 2 | - | MATERIAL TYPE | 2 | - | CARGO | 2 | - | MEMBERSHIP LEVEL | 2 | - | AIRCRAFT TYPE | 1 | - | REGION | 1 | - | COUNTRY | 1 | - | SIZE CATEGORY | 1 | - | WHEEL CONFIGURATION | 1 | - | TAG CATEGORY | 1 | - | GROUP CATEGORY | 1 | - - #### Most Connected Nodes: - - | Node | Connections | - |--------------------|-------------| - | EL AL | 49 | - | ANIMAL | 29 | - | CHECKED BAGGAGE | 25 | - | BAGGAGE | 21 | - | PET | 19 | - """ - ) - - with st.expander("Implementation Results", expanded=False): - st.markdown( - """ - ### Document Processing - - * **Total Documents**: 14 (7 first paragraphs + 7 full documents) - * **Text Units**: 36 - * **Entities**: 315 - * **Relationships**: 372 - * **Communities**: 66 across 4 levels - - ### Community Structure - - * **Level 0**: 11 communities - * **Level 1**: 44 communities - * **Level 2**: 9 communities - * **Level 3**: 2 communities - """ - ) - - st.markdown("### System Operation Flow") - - mermaid_code = """ - sequenceDiagram - participant U as User - participant Q as Query Engine - participant G as Graph Search - participant V as Vector Store - participant D as Document Retrieval - - U->>Q: Submit Query - Q->>G: Search in First Paragraph Graph - G->>V: Lookup Relevant Entities - V->>D: Retrieve Full Content - D->>Q: Return Comprehensive Answer - Q->>U: Present Response - """ - - mermaid(mermaid_code, height=400) - - with st.expander("Implementation Details", expanded=False): - st.markdown( - """ - The implementation of the system follows a processing pipeline that integrates data from the first paragraphs and full documents, creating a unified structure for efficient querying. Below is the pipeline representation: - """ - ) - - mermaid_code = """ - flowchart TB - subgraph First Paragraphs - FP[Load First Paragraphs] --> EP[Extract Entities] - EP --> RP[Build Relationships] - RP --> CP[Create Communities] - end - - subgraph Full Documents - FD[Load Full Documents] --> CH[Chunk Documents] - CH --> EF[Generate Embeddings] - end - - subgraph Integration - CP --> VS[(Vector Store)] - EF --> VS - end - - subgraph Search - Q[Query] --> GS[Graph Search] - GS --> VS - VS --> RD[Retrieve Details] - RD --> AG[Answer Generation] - end - """ - mermaid(mermaid_code, height=800) - with st.expander("Requirements Fulfillment", expanded=False): - st.markdown( - """ - ### Requirements Fulfillment - - **First Paragraph Processing**: ✓ - * Implemented through `source_filter` and `processing_order` - * Verified by entity and relationship extraction - - **Full Document Embeddings**: ✓ - * Stored in LanceDB - * Accessible for comprehensive retrieval - - **Graph-Based Search**: ✓ - * Communities and relationships established - * DRIFT search implemented - - **Complete Answer Retrieval**: ✓ - * Source priority configuration - * Full document content available - - ### Performance Metrics - - * **Indexing Speed**: 212.44 seconds total - * **Graph Density**: 372 relationships among 315 entities - * **Community Structure**: 4-level hierarchy - * **Vector Store Size**: 3 Lance files for different embedding types - """ - ) - - with st.expander("Achieving the Requirement", expanded=False): - st.markdown("### Source-Based Processing Control:") - - st.markdown( - """ - ```yaml - input: - source_tracking: true - processing_order: - - path: "first_paragraphs" - priority: 1 - purpose: "graph_building" - - path: "full_documents" - priority: 2 - purpose: "retrieval" - ``` - """ - ) - st.markdown( - """ - This configuration ensures that GraphRAG knows which content is for graph building (first paragraphs) and which is for retrieval (full documents). The priority system makes sure first paragraphs are processed first and used primarily for the knowledge graph construction. - """ - ) - - st.markdown("### Targeted Entity and Claim Extraction:") - - st.markdown( - """ - ```yaml - entity_extraction: - source_filter: "first_paragraphs" - max_gleanings: 2 - - claim_extraction: - source_filter: "first_paragraphs" - ``` - """ - ) - st.markdown( - """ - These filters ensure that the knowledge graph (entities, relationships, and claims) is built only from the first paragraphs. This is crucial because it means our initial search will only traverse the graph built from these first paragraphs, matching the requirement. The `max_gleanings: 2` allows for thorough extraction while maintaining precision. - """ - ) - - st.markdown("### Search Priority and Retrieval Control:") - - st.markdown( - """ - ```yaml - local_search: - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - text_unit_prop: 0.7 - community_prop: 0.3 - ``` - """ - ) - st.markdown( - """ - This is where the magic happens - when a query is made, the system first searches using the graph built from first paragraphs (`graph_search: "first_paragraphs"`), but when it needs to construct the answer, it pulls the content from the full documents (`answer_retrieval: "full_documents"`). - - The text_unit and community proportions ensure we're making good use of both the graph structure and the actual content. Looking at the output files we generated (`create_final_entities.parquet`, `create_final_relationships.parquet`, etc.), we can see this two-phase approach in action: the graph structure is built and stored separately from the full content, but they're linked through the unified vector store in LanceDB, allowing seamless transitions between graph search and content retrieval during query processing. - """ - ) - - with st.expander("Improvements to Make the Graph Creation Process Leaner and Faster", expanded=False): - st.markdown("### Optimization of Chunk Size and Overlap:") - - st.markdown( - """ - ```yaml - chunks: - size: 300 # Reduced from 500 - overlap: 25 # Reduced from 50 - group_by_columns: [id] - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Smaller chunks with minimal overlap reduce token usage. - - Maintains context while processing fewer tokens per API call. - - Especially efficient for first paragraphs processing. - """ - ) - - st.markdown("### Streamline Entity Types and Claims:") - - st.markdown( - """ - ```yaml - entity_extraction: - entity_types: - - "Baggage" - - "Restriction" - - "Item" - max_gleanings: 1 # Reduced from 2 - - claim_extraction: - enabled: false # Disable unless absolutely necessary - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Fewer entity types mean fewer extraction operations. - - Single gleaning pass is often sufficient. - - Claims processing is expensive and often redundant. - """ - ) - - st.markdown("### Optimize Graph Embeddings:") - - st.markdown( - """ - ```yaml - embed_graph: - enabled: true - num_walks: 50 # Reduced from 100 - walk_length: 5 # Reduced from 10 - window_size: 3 # Reduced from 5 - iterations: 5 # Reduced from 10 - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Fewer random walks still capture essential graph structure. - - Shorter walks reduce computation time. - - Smaller window size focuses on immediate relationships. - """ - ) - - st.markdown("### Batch Processing and Parallelization:") - - st.markdown( - """ - ```yaml - embeddings: - async_mode: asyncio # Changed from threaded - batch_size: 32 # Increased from 16 - batch_max_tokens: 8191 - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Asyncio performs better than threading for I/O-bound operations. - - Larger batch size reduces API calls. - - Maximizes throughput within token limits. - """ - ) - - st.markdown("### Community Structure Optimization:") - - st.markdown( - """ - ```yaml - cluster_graph: - max_cluster_size: 15 # Increased slightly - min_cluster_size: 3 # Added parameter - - community_reports: - max_input_length: 2000 # Reduced from default - max_length: 1000 # Reduced summary length - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Balanced cluster sizes reduce processing overhead. - - Shorter community reports still maintain essential information. - - Fewer tokens per report means faster processing. - """ - ) - - st.markdown("### Caching and Storage:") - - st.markdown( - """ - ```yaml - cache: - type: file - base_dir: "cache" - compression: true # Add compression - cache_embeddings: true - - storage: - type: file - base_dir: "output" - compression: true # Add compression - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Compression reduces I/O overhead. - - Caching embeddings prevents recomputation. - - File-based storage is faster than blob storage for local processing. - """ - ) - - st.markdown("### Disable Non-Essential Features:") - - st.markdown( - """ - ```yaml - umap: - enabled: false # Disable unless visualization needed - - snapshots: - graphml: false - raw_entities: false - top_level_nodes: false - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - UMAP calculation is computationally expensive. - - Snapshots are useful for debugging but add overhead. - """ - ) - - st.markdown("### LLM Configuration Optimization:") - - st.markdown( - """ - ```yaml - llm: - concurrent_requests: 25 - tokens_per_minute: 150000 - requests_per_minute: 10000 - max_retries: 5 # Reduced from 10 - ``` - """ - ) - st.markdown( - """ - **Rationale**: - - Balanced concurrency prevents rate limiting. - - Fewer retries reduce waiting time. - - Token and request limits prevent throttling. - """ - ) - - with st.expander("Query Types", expanded=False): - st.markdown("### Local Search:") - - st.markdown( - """ - ```yaml - local_search: - text_unit_prop: 0.7 # Focus on specific text chunks - community_prop: 0.3 # Some consideration of community context - top_k_mapped_entities: 15 - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - ``` - """ - ) - st.markdown( - """ - **Best when**: Looking for specific baggage rules or restrictions - **Example Query**: "What are the liquid restrictions for carry-on bags?" - - **How it works with our data**: - - Searches for entities in first paragraphs (like "liquid", "carry-on"). - - Follows direct relationships in the graph. - - Retrieves detailed rules from full documents. - - **Meets requirement?** Yes, but in a limited way - focuses on direct connections. - """ - ) - - st.markdown("### Global Search:") - - st.markdown( - """ - ```yaml - global_search: - max_tokens: 4000 - data_max_tokens: 4000 - min_score_threshold: 0.1 - allow_general_knowledge: false - ``` - """ - ) - st.markdown( - """ - **Best when**: Understanding overall policies or themes - **Example Query**: "What are the main types of baggage restrictions?" - - **How it works with our data**: - - Looks at community summaries built from first paragraphs. - - Provides broader context about baggage policies. - - Pulls supporting details from full documents. - - **Meets requirement?** Partially - good for overview but might miss specific connections. - """ - ) - - st.markdown("### DRIFT Search (Dynamic Reasoning and Inference with Flexible Traversal):") - - st.markdown( - """ - ```yaml - local_search: - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - ``` - """ - ) - st.markdown( - """ - **Best when**: Complex queries requiring both specific details and context - **Example Query**: "How do pet carrier size restrictions compare to regular carry-on limits?" - - **How it works with our data**: - - Starts with first paragraphs graph to understand relationships between: - - Pet carriers - - Regular carry-on bags - - Size restrictions - - Uses community understanding to find related policies. - - Retrieves specific details from full documents. - - **Meets requirement?** Yes, most comprehensively. - """ - ) - - st.markdown("### Best Choice for Our Requirement:") - st.markdown( - """ - **DRIFT Search** is the most suitable because: - - It naturally implements our two-phase requirement: - - Initial search on graph (from first paragraphs). - - Answer retrieval from full documents. - - It can handle complex queries that need: - - Understanding of relationships (from graph). - - Specific details (from full documents). - - It can dynamically adjust between: - - Local search when specific rules are needed. - - Global search when context is important. - """ - ) - with st.expander("Configuration: full `settings.yaml`", expanded=False): - - st.markdown( - """ - ```yaml - # Root configuration for GraphRAG, a system leveraging LLMs for advanced Retrieval Augmented Generation. - - encoding_model: cl100k_base - # Specifies the model used for token encoding. The default 'cl100k_base' is common for OpenAI's text models, - # determining how text is tokenized into machine-readable units. - - skip_workflows: [] - # A list of workflows to skip during execution. Empty indicates all workflows are executed. - - llm: - api_key: ${GRAPHRAG_API_KEY} - # Placeholder for the API key, replaced dynamically from environment variables. - # Ensures secure API access for LLM queries. - - type: openai_chat - # Defines the type of LLM interface used. Here, it connects to OpenAI's chat-based API. - - model: gpt-4o-mini - # Specifies the model variant to use. - - model_supports_json: true - # Indicates whether the LLM natively supports JSON responses, useful for structured outputs. - - max_tokens: 4000 - # Maximum number of tokens in the output. Balances performance and context length. - - temperature: 0 - # Controls randomness in outputs. 0 means deterministic responses, often preferred for accuracy. - - embeddings: - async_mode: threaded - # Asynchronous embedding computation mode. 'threaded' uses multi-threading for better performance. - - batch_size: 16 - # Number of data points processed per batch during embedding, balancing speed and resource use. - - vector_store: - type: lancedb - # Database type used for storing vectorized embeddings. 'lancedb' supports efficient vector operations. - - db_uri: 'output/lancedb' - # URI pointing to the database location where embeddings are stored. - - container_name: default - # Logical name for the container storing vector data. - - overwrite: true - # Whether to overwrite existing vectors. True allows updating the database during reruns. - - llm: - api_key: ${GRAPHRAG_API_KEY} - type: openai_embedding - model: text-embedding-3-small - # Dedicated LLM for embedding tasks. A smaller, specialized model is specified for embeddings. - - chunks: - size: 500 - # Number of tokens per chunk of text. Controls granularity for processing long documents. - - overlap: 50 - # Overlap between adjacent chunks to ensure continuity in analysis. - - group_by_columns: [id] - # Groups data by 'id' before chunking, preserving document boundaries. - - input: - type: file - file_type: text - base_dir: "input" - file_pattern: ".*\\.txt$" - recursive: true - source_tracking: true - processing_order: - - path: "first_paragraphs" - priority: 1 - purpose: "graph_building" - - path: "full_documents" - priority: 2 - purpose: "retrieval" - # Specifies the data source for ingestion: - # - Input is file-based text. - # - Reads files recursively from "input" directory matching '.txt' files. - # - Prioritizes "first_paragraphs" for graph building and full documents for retrieval. - - entity_extraction: - prompt: "prompts/entity_extraction.txt" - # Path to the custom prompt used for entity extraction tasks. - - entity_types: - - "Baggage Type" - - "Dimension" - - "Linear Dimension" - - "Weight" - - "Material Type" - - "Wheel Configuration" - - "Measurement Unit" - - "Size Category" - - "Weight Category" - - "Airline" - - "Alliance" - - "Airport" - - "Route Type" - - "Travel Class" - - "Cabin Section" - - "Aircraft Type" - - "Restriction" - - "Exemption" - - "Policy" - - "Fee Structure" - - "Currency" - - "Allowance" - - "Special Item" - - "Prohibited Item" - - "Restricted Item" - - "Dangerous Good" - - "Fragile Item" - - "Valuable Item" - - "Required Document" - - "Label Type" - - "Tag Category" - - "Service Type" - - "Handler Role" - - "Service Location" - - "Time Period" - - "Passenger Type" - - "Membership Level" - - "Group Category" - # Defines the types of entities the system should extract. - - max_gleanings: 2 - # Maximum number of re-processing rounds to refine entity detection. - - source_filter: "first_paragraphs" - # Restricts extraction to text from "first_paragraphs," optimizing focus. - - claim_extraction: - enabled: true - # Enables claim extraction, capturing specific conditions or assertions from text. - - claim_types: - - "Basic Size Restriction" - - "Oversize Condition" - - "Weight Limit Standard" - - "Overweight Condition" - - "Combined Dimension Limit" - - "Cabin Storage Requirement" - - "Standard Fee" - - "Excess Fee" - - "Oversize Fee" - - "Overweight Fee" - - "Special Handling Fee" - - "Season Surcharge" - - "Route-Specific Fee" - - "Multi-Piece Pricing" - - "Fee Waiver Condition" - - "Basic Allowance" - - "Class-Based Allowance" - - "Status-Based Allowance" - - "Route-Based Allowance" - - "Special Group Allowance" - - "Seasonal Allowance" - - "Equipment Allowance" - - "Prohibited Item Policy" - - "Restricted Item Condition" - - "Dangerous Goods Policy" - - "Special Item Restriction" - - "Packaging Requirement" - - "Declaration Requirement" - - "Check-in Deadline" - - "Special Handling Procedure" - - "Priority Handling Rule" - - "Transfer Handling Policy" - - "Delivery Service Policy" - - "Storage Policy" - - "Liability Limit" - - "Insurance Requirement" - - "Claim Procedure" - - "Compensation Policy" - - "Time Limit Policy" - - "Weather Restriction" - - "Seasonal Restriction" - - "Aircraft Limitation" - - "Route Restriction" - - "Connection Impact" - - "Tag Requirement" - - "Label Requirement" - - "Documentation Requirement" - - "Declaration Policy" - - "Handling Standard" - - "Service Level Agreement" - - "Priority Service Standard" - - "Delivery Time Standard" - - "Medical Exception" - - "Military Exception" - - "Diplomatic Exception" - - "Event Exception" - - "Emergency Exception" - # Types of claims to extract, covering diverse scenarios (e.g., fees, allowances). - - prompt: "prompts/claim_extraction.txt" - description: "Extract baggage measurements, weight limits, and restrictions from airline documentation." - # Customizes the extraction logic for airline baggage policies. - - max_gleanings: 2 - source_filter: "first_paragraphs" - # Restricts claims to "first_paragraphs," mirroring entity extraction. - - local_search: - text_unit_prop: 0.7 - community_prop: 0.3 - top_k_mapped_entities: 15 - top_k_relationships: 15 - max_tokens: 4000 - source_priority: - graph_search: "first_paragraphs" - answer_retrieval: "full_documents" - # Configures search behavior: - # - Balances searches between individual text units and community-level summaries. - # - Limits results to top 15 entities and relationships for relevance. - - global_search: - max_tokens: 4000 - data_max_tokens: 4000 - map_max_tokens: 1000 - reduce_max_tokens: 2000 - allow_general_knowledge: false - min_score_threshold: 0.1 - concurrency: 10 - # Defines query-wide global search capabilities: - # - Token limits for different operations. - # - Restricts non-specific general knowledge responses. - # - Handles up to 10 parallel queries. - - embed_graph: - enabled: true - num_walks: 100 - walk_length: 10 - window_size: 5 - iterations: 10 - # Enables graph embedding (e.g., for node2vec): - # - Generates 100 random walks per node to learn embeddings. - - umap: - enabled: true - n_neighbors: 15 - min_dist: 0.1 - n_components: 2 - # Configures UMAP for dimensionality reduction and visualization. - - storage: - type: file - base_dir: "output" - # Outputs processed data to local "output" directory. - - cache: - type: file - base_dir: "cache" - # Stores temporary files in "cache." - - reporting: - type: file - base_dir: "reports" - include_source_tracking: true - # Generates reports, including provenance for traceability. - - ``` - """ - ) ->>>>>>> b96b49ad31dd18a91ca19d59316e1b3ef2f531ff

�;iB2<��Ƥ�_��" =� =���{��;��Ҽ� =����<�����(�<b �C;��#=�= �Y�����<����[��"��yń��K7� �J��f��/k%<�a8��<��!<���]�<'.��P���Dz�b�N;���=>����==�)���qL=��Ƽ8 ���&�;K!O;sb����M���<[��<�|R<����ҩ���F�=�ң�۽/����/孼 ���R:��*<��:�=�b5<�!���|=÷��7�Ǽ�=�޻�<)���Q�<ǁt��M�<�J�Q�����톪�_ 0=k�<�?��G8=:�ϼ������3�i<^`Z��xr�vH��ʼ(4�<�ހ=X����!�=���������� -���ӻ*���-=�{<�=��ؼ������B����;���<��W=�\��*<�9:��?:$a><��<���;�N�b��L���N:�t㾼����Z���N���ָ��a��k��<�;��z<����;a�5��bE8<�ў<U��0��<����; B�<8mʻ��S���!�< T�ds�<����K=�"<���:������<�*t�f -�i/��'��<#�����=�/<0�a�Pg�g��=O�<�0<�a����E=_�.G�;:��<�����;��R=�+X��k�;�� =�L�;m��9�g��Ƅ�/'<��p<+T<�\�<;��<�=s!<�@��-<�������^�����;���@=H�u@�G�<ʸ";�?$�m�X=����d����6�u��;���-�<������4���ͽ��f<�<�hx��=��%=S ���ü�,�uz,����<�tU<+k���I -=��Z�2L"=.G�<�����Ni<�h:�8����8mʼ(�^�����d�<��<�K�<�� �= ~&���V�.�=�Z����<�8��?��g -O���=�<�š�����?D�S� =v}��WQ����:�uּ�5�`�e;$����(=���=BSY�<� �;��;��&=D"�xS���=9�<�������[�2��<�_��K�r,黼�Ի���d���A���;D�^���o< �9��N=�Ǽ�uV=4�J<�ȅ<�W̼�[����»�;�����u�;��"=u�ݼ?.>��F<���<�͎���6�4���c��<}+�����<���'�g<k�;]7�<�/M;�x�<�:�|;�!=0�<�2�;�k -=�[y�S���U��4�<�0�;L�ݼ7�=���;z)��)��dl�x���'7�:��t;T�:���<�7�X�����:��+��-�����;AhC=�D9�ûb2�<���<)8;�*�;�+=Ʒ<^"����=ρ�;�ڋ;G�y��ͫ<��F�m�H<��#�E��<�ھ�����B�k����.�tC �L�6��-������=(���T�\���<=���<#_ݼp�c<��o�ֶl=��%=+Gr�7���G+���"��Ҧ;�Y_���M��μ����o��μێ�<��^;�����!<�`ϼ9䇻�U��*�D�;�2�;��,�D��<�9����9p��~z��tC �=üI�=�K�V%;<>��:�3��oT�ar=��:����N�G"=*՟��� =YJ�<��;���<7��;A�<��ջO��:(��<�]��j/j�#_]=�NI��R&�a,�FF��<�;�<�׽��,/;�*=v}<�5�<�ڋ�μ�#I� D!�#_]<_ �<�š�zI=P�g<%���>=��Y=6��;�1=92�<��<A ����6�O=��=�Ҧ;������S������R�0�r��;(�;����r<r����;�\�����<��捇��j�0���<5 59��.�������<���<�h<�Zj= -=H��h�����<���;)�0�~�< �O<�D7�.�<�Qg�<�_�y��<0���@ļ+ڻ�V <����;�'v;� =w����s��M��G�)< ��ӑQ�}� �zɼO(�<�1�<���<�p�<�r<~z���;b]�;Ϻ;��ü�t��-�a<{~��,�<�ʍ{���"���U�竦�J<+{D="L�Mt�<�Ԅ<�� �s 9�f�=C��<�JP=���;<�@��a�d�z��<]J���T<ǻ+=��<�&�[F<�*U<����<�<%k�:�jڼ� -]�aۻ��k��Ą��G�h�Ĝ�9�=��5�:��md�<��6<�;3�k -�Al�*�����E���y��>����<�4�<��W�\�<<|:`;����8k¼H4=�˰�Y��;�T =�zӼ6zk���x��jW<��^e;�s%<��׻^k<=�J\< Ġ<�L�� -=� ���*O:�\ =#z�*�:���;��L��s<�jZ<̡��뱻d*伪S0��9�;�$<ȣ+;�S���q<��0��<t�����;q��X�=�<����,�����9;B��;0=�� =� ��=�3/=�썻�:ݼ�\���۲<�� �[ze�HL�=yl�<���F|�<�����<ުм[�<:��<T�<�܋{�:�ZO<6���ӱ;�����<�)�����f�c<KJ�ު�;��v�:��kȼ� -�<�ZҼ�˪�w{8�[㼻� ��ܹy<�Y�;� ��l�&�=��N��k*���; � ������j�2[C=��Q<�;D:i='t���T��X -f����<)�m�8����` <�g��st<��S�W:�;�4<9;B<�j�;�i�;s ��;̞�o=������S�;�@o;~p���:��<��h���9=,ݳ<�%~��ذ����SG���<�� �۝=��<���<μ�༷΁�E�t� -<��<�OSZ�׮�����;\<���@=�� <���<0��;I�=5�$��r�l`z�fѥ<���Ժ��1=����;.���k�uU��QȻ<�Y�����<,n���&�ڧ��1��=ۢN��U�;����������=*c!=��F�{�#=C��;��A<>Uл�P�<��Y�A;�����<�;�D<��!=�=�i����:��ܼ�<�;x���H�f��<������x�=����Ѻ}J�r��< �G<�d�<�ȟ��q =,�;�k�<|����a��=�K�;��;Θ鼝�Լ�e�<2b&<��<�'t�N ���Y�=0�'==ǻS=��&=+�*����;�J�43�1�l�s�ہ�<x�;� U=��<^� <�¦�E�<�Q���� ��+�x����<�=�~)=;�e˼���� �l���;Z7��<�;�=@���J�<��,��,(�5���+`�%7$��i����һ�~�� �����̾���;��p;���; V�<��˼Y�T��%��*c!� � �<�Sq�R䧺۝�<��&�`G��8�@<�<�D<��<��=֌;}8���d��Q<�1��C��<��_� =<_���I��� =%<ռ(�<��W�Θ�d;'�Z7;k܅�K>;�U��Tz�:��<�_�7l<�n�<|��������򏼄�1<��<ʎ����;����ˈ:<�W���<���p��1���x�<��(�ō�d�x<ű��Կ=dɩ���c=$ץ;g+μ_��=���nH<М��:=j<ܥ%�z�+��Ҩ<��^=� �'��<�K���V^;2��=�=5�Er��5�0��g�:�1�<����V�:@:�����N�v��h׻��<�N伃�*=�36�9zt;|>=/ -f�^�~==Ŭ�Rh{: ��?~�V!��V���<n�=�<�V^���}< ���$E=%�lv=���ZD: 1� -�������3ȼ9��� ��;͕ ��U�<��ټ&?(=["+=C�=�Ʌ:M ��[Fj���i��;���;|�<�A��ܥ�=E�ȼ����8#݃;U��=&�׻/�u�Q� ��EA�ƾ�;i8!<)j�<)3�;Һ�<�G?�=�+*��u��R��<���� 1>��s=�QJ<�`]=�+*=N=G<4�;Mz��γ�&�G��>�̺^�<_Ȓ�U�!���O��Ќ��FƼ����3��=#=}`<���� �÷<'�<����f�;�n��D�<�p�;�發5� <��=�+*�)�{<�Z�;`Z�<�=rM�����!�<�t=KI�,qp<[� <��t�[Fj<a�;�q�:�V�����;[Y�w�F�ag�;X���ߍ�d���u�$��Y =2��-섻�7�<��;"==��;w��rq���̏<\�<� J=�pu< -�[�4�=�*w�<.��,"�1N�<�����<�d<і�<���/=��g�Er��< >���X�tk��;[Fj��� -� ��:�g<�؆�5к*�<��;rߟ;Ee<&�G����̼Կ:�ܼR�K6R<�j�����<��B���;��M�[Fj��@�;w���e�<[�J��ݬ<���<���<&��<}��<�J=3�<�����8��S��h'=��;;e�[<%�s�rn=��ռ����y4��U���>x=�k �Y�[=�韼4�.��7(�玓<?�<�^$;�e6<�����C�4�i<�*<]X���d��#=��������*��:� x �y =��;4�p��"�ªc�y �=�J=���?!)=I�<׹<���<��R���_<�e���7������?��࿢�t�3<)E4��n��.k�<^���6<&� -=��7��;k��;,]�<`�S�b�:<��&���<��N�]u�>��%�*x���a�;�B�:�{= x <��軳�_�����<箻�9�;���<�G�$�#<�������<� -���w<];1=�9��5<8R8�'�<���<��z����<�|E��򂻧d� q�:���o���ߔ;l� �|-�a�3�,0<��E�<�t=q&���j�����t����d -�<��;N.���P=,X�����/=��;�EԼ���#��=��3c�r���$�e<�J=tݳ��K<�ߌ<�h<࿢�8R8=���.�K<�T�<�A�<\���^$�{�+����>[�<95?<�4��IѼۙF���1�Y�[<~�ۼj��t �ż��!=R�t�F������<&�"=��9�.f=G�����#Zk��n!��88�k���3X�������`9e<��@�g�4=�zq< 9J��̈́<ѡ���I��&=�3�k>E�0�c��2:1�= 2��������n鼐%����G�5��<�q�<���:�k�<�<�����.�<8 �*�c;��-���. /��/�<r>�b�����9��|�����ii�3�< ��<3(�V�;S=�b��[���Ty<�^'����<�-<�骻����+�*<��:�ȟ�<�3�<^�L;p��&Ƣ��?�(:ޭ4=K�|;�!����j<���Y�Ļ�(b�.Tü<=a���o�<� �r�����<(����T޼6;<�.��,�{V�:e��<�b<�>�:^�̼0� -��X;���<.T�<�5��Z���{t�<4Q�<ߢ�<�'��D�<=\�S�-��:���<�=�I=��޺8�S<�~=�2�:�|�;�Tg<=h_]�S�8d��<�2�^t�G�l<�C��pzM�<;l�@K=�zh<���<�̈́;tN�<�<�w�,���9�7;3���dX<�)<�˯�b�@=�H<��. ����pӈ���Y�j�;��;n���oຮ於�>�(�s<��[�\��N�<�Tg��C��qoE9��<|5 =�ޫ<.��(�<�d�<Ł ��y<�"=�f���y):�؃���f;�[���<�%3�!ɶ�8��;c|�<|5 �!e�5z;9��;e�0�ڼ;�����<�I�;X���i��jʼz�<�X�(�s�4Q/=���<.�4<6o���q�b���w���C��$Oc���=pz�<'����5z;�4�ü!�ʻF��0���顼��6 �&���p��<&9S����<���<?�8��:�C.� -��;!��<3(������������=�&��>�d�u<� ��$O�u�;���{O�<��<�Ih::�~^�:/��̧��VY���z�:�oW�VY,��M����)<�[%��/�<�I��f�;�����v�:�#�<���;���O�\<:���v�=�[�<�3Ϻ�8�i<_�Ĺ �%�:)�<�<���<߽i����<|D��vw9=��w<��쑼:)����=ƪ�=Ϡ��j<�����ƺ���<�y���W<��8<����X=(�����F<�<�@���:3��<��@�기<j�<�a�m"�E=�=�"x<��ʼ9W �����=����8vܼ@'�����C�q�������t�m�=<�"x;,UV��o'<2&�;�A:?v���:�U���l<n8=��<���!�g<��������ޝ�!�g=`Y<[��=*�;>�H���-8b�?v -=ҩ�ͼ�b��%��n�<\�=G�L;����I:��;�� -�E=vg=ňh=�0�<��=���<2&� K)���g���g����� ���e��7ȼ{&��Vs�<��½�k���M=61�;���7��:��<�e:ҩ�Ξ컦%=l =�Y�<�3C����v8o=�X <���=7��<�n ���$������";]�$�)�!�^= Z����sq���=R�t<���������E��.�/�V��E�ҩ�;�oy�q+�<�؂<<��ņ ��Y0�IR��w��<�z�� �ѻ�l;d'�;�?y����;�� �[��<M��C� ���I�' -;;@������O��]��M��<^X���_>;_;�<��b�ִpG�����<�U�<X<��Ƽ~}�T_1=�<��R�t�/}L�wJ������<D�;e�(=�0�;��<h�;�IG�.�:ܴ=h�<ϰ =�"�����+�E=���U��<������=�Y��d)�;��f< ��=1 ��f.�#��;����J��_��;ϰ���7�<)l����-<,�4��q��J��<��<�k=>��;M](���4�BP�<�3C��u�X���ҩn<�k�;r\<�ya;��b<�� �ㅸ< -|��%��.˯���y��ϻ}깼7�;�l�ɑ=)=/$��%V��;���<.�@<��=��ּ����/-���V�<�۲�S|%���{�f��<�Xμ��D�Bo켯nR;��;ɓ�<��];�$/�V���j) ���8&���m���"=��=��Ӽ�S���v���6�Xj�<]����;=WՊ<D9�^�<���]��g��j����E�&�=����3�< _����<��e - �3�=��%� a�<�y�;ņ�<��G;�;����; s�:�:��jy�7�ϼ3 |�ɓ�<������<)�;)�:��M=��.�@�ו�<�,���4꼔f.�F��+< ��G]�;�jM��弚���� *�5�';��=P��<ѧ���Gv<��<�[9=Z�l<�S���e���ִp�2U�<񺹸��)=��<*?������u�;*�Dd�tS�:C��ۢ~�R;x�=R�=�PV;�-r�R@�<� ȼB�<��<��,���3�x�;�'�<Ʋ���ܬ�[�=?��<�#f=Ɖ=��p��'�<}Ip��3�<��3����:���<����J=)�$���<��˼� - �c����7S�j�j��E'=���<(d�<��_x��{���� c��=�b�Z�*�9�b�5�\��(n4�M���> �<����w��"��;�~=V)�H��; ���Q=8��I=�⋽����–��ü���k�kd�����5��A���A����=EoϺM�*�ܯ�����E��]���N͚;��u<'ɼ�Ҙ�A�4=8ˏ:�v-�6l�;5D?�wru���{�#Ʉ<:��;�*��ϝ<:� -=\��o}�l���<<�΂<�\B��K�:�/�<_%���v�_ �9� k<�Qq;\�:�(s�<�:#<�1�kd�m`;��ɻ}싼�4���aH�YIżkε��%�;KA��&��M�O��|�<;���R㚺i�<� - = -s� -�b��<�S=�~��'Q�x��<�W�<�.b�t'&�'<�<_���i��= َ��)\<̄W�̉2;�v���ӈ<��L�.J -�0���9ƴ9�}<㸭;:� -��<<�9�<1�$���<@��;e���L �<>k�<���j:���=;���=<�[<B=�'W�곚<�s�<�#���SR� w/�\hJ�� <���h�� �<= k�8�}���.=>N�<�Т;�6=�7���b�0�=��%�E�=zGY���=<��6��׼U_��פ�<�����;V�-<���<�#��T#�aM�<�;u!ļ�S3���@=��!�<�����G =!c=�ԋ���==��;�Ko���&�o<�<�6ʼMy:;�y�p~޼�9�ze�;���<��r�}�W�x�:<����G�<����_K����0��<�����~� %���뻈0 -�F��;����:��< -<>N�<�7 = �'<�c4�R��< ז��`�����;�� ��SR���6�m;�;���F����Nz��J�����U]<��#;%0)��?��r[<���Bɼ��<-\� Z�<�z -=#���P��W�=6D_�WB�<�� ����:R���h+<�6�6 (�>���3B<\�y�#������:^��D�g<��<� �<��;P+����<�L���a��V&��;��U�YC$<�h��w�=�A�=�ڞ<\�<��k�k:q<�Ċ;��=KZ�<��Y�j��Wf�;@Oi�Q��d#���H<���� 3�,m�%�<^� �0;���o�;�T���i�Gp��3�:�F�Z�^i��m��<7�n<�娻a�������&<_.�<�1<~I7�j��X���q�nY�<��f��m"�/���ف�-�=�<#�2=q����$��2<}�<�Ѓ;�<�<���:\����k:q�_�ȼ��<�����*��=e�6��<NM�/�#�~�><�<|;8Eμc0V;��;2<"��+�K���rM�!�<���;K�ü�c��"�;���; 컻d �:�@�:ܦ2����<������H<��'=�q*;~I�<���,��<�Hu�m�<A���)�������"�����; -Ny�t�<#t<�T=N�;�="I���g=����S]��'�=��2A�<���a���z6��9�<�R��Vu@=�W"<y~��w;<�/��:d���]m=N��~��Q�h�9=�$�<������<���!=T=�.���#P=M��%=v k=�s�O��;fm�;����,)F����;����&v<�Ӡ<|$5���T<��<�ھ<���<�����-�އ�<�`D��la=M0[�y�&= 9(; ��s3��s�<\�ݺ�4u;w.<;��;hb�� 9(���f<�ə�d �<ϻV= {���8����x��'�3 �<��λB�ܺ�'9��>=��<�������;�d�<���� ټ�։=��k�������<�$��D��E!=���<���*۬<�d ���x��$#<�=�j�=V�<:��<�8��<�k���@�M�<��ʽᇽ����Ƃ����;R����,=Qi�=V_�0b�}�e� #�=j�߻��鼨-�2�|<��^�"I=m��<%Ϗ�j7�4�-�#<�<_��j��<.*<�ϻ�\!��ն�#�m=g� ��f(;���gk;��5��*��2ֻx��A�~;�.*�SH%�g� �q�Z�[U�=kM$=�`�<:k;�O��?���։��Z�:�T'�>8�:�*w� �<����F/=��=Jd=��<���;��b��N�<��:<�º e���;�ռ�E*�77 =*`�1����^<�`V�ϻV�Υ2�l��<}��<�*w����7c�<�8���{=��0;㓺������LȻ髄�'���USﻒl=$(���@��.�hǕ<}\*<����%o�*�,� e�;��μ̤_=O�8�N�����;�q<�!C<���<+"� -Ny�߿�<���H�<��)=�=��<5��<�b㼉=�;�։�e�����k�&��;��� �=��H�����J�;����<���<���_���p��C�-���<�"���{��>�<��h�<�H�j7�<�!û�� <3 ��}=Q�޼޳e=�����;�D�[Ĭ<Ҽ��ϻּ�:¸�:g6-�&ݼL��<��^��s��\�]=�I_<�|C�.� ���=��;�>�<@-r���j;US�Vu�<��ռ6�<�&��?�X���6��� =zE�<�Q���a<���!d����<�k={L�� ;���%���;�=t{��I�~<_�Y�V�ﻎ�e=�h�<g ����:�$<����W�����<�$<����:�����P;��ռ=���=����'�-�2�&�-<���ؼ�;�<g�;IF#�wn��J�.=ʟ#���(�x�a��A=��<����q=Dm������+#ݻ����(0�<��%<؄�<�*=5�`=��=,i���l����,=O,Ӽ��ʼ�!<� -��9"<�1�[����8;4�tN���<�ټG����#ļK�<� -<�X�;��6�;a�����T�����;�-���?j;v[3��ޏ<~���QV�S�T��A��^Qo:�+< -@Q=r��X;^W=��< 9��G`P=L9;=ń;��{��s�;�[�< <�����һ������dp!=b� =ӫ=�n\�<��y<�JY!d��Y:��Ɩ;@g���?�Rk;��>�ePD:H�9�A|�B� =��Z��(H��y�.��� �;l�]<��ļœf��Dn��>�{ԩ������;��5�<�����eT=Xk?���=��?<`����f�*��;MyR�Ć����2|v=�)��P�L���+��⁽�N�<��;S��<������˼:Hy��<���<�%=��w;���<��<~Z�X��<}瞼�3P;�����?=Z~�?�=9b���>ػO2��=緼ȿ�dj�W��ؼ��m<ܷW< )��c�<��3��^;UK�2U:g�[<<���6ʼ��=;���� ��t�<ﻎ�?��;�� -=�p�<%V�߱�r�_;�k��꼬�=m� �x=pB�<���u��<ˬh=���<��<�-=��u�;���=t;�B���@���@� -� =v(a<֞�9`𼋟���&�.u���)=@a��%V���Ô<��e�z��<-� ���<œf��*A��A�"�<����ML�;Az <��8<���4��lѻ���<�a�v(� -F=)pܼ��ܼ�WA�<��i?�;󮦻xA�=�X��=�& <�ؽ��3к��W�g�[=���;\�@X<���;�D��SO;�����ɼ�|"�����͒;<��g�=�50;؄���o�a�;��8�c0 -�B�<<�� 9�� ��V��T6<�<��������-�]J�Tq㼮��;j�:E�Y��ܼ=Y�=AS�<����gh�6�X4z�9�C=i"� -x��'��<��^���O����<�g�<�L14���� <�tJJ� -�9F����_���<�M<)�<$�6�X;�=�:�i�<V�<� �<�9;=%���[��;Nj=hx1�e˚<��O����v<�X��;�i��uXټ��6=��<�{K�m��<�t=|�q����6T�\E�=���<|��*ĉ�R;H�/Y��9(��z�V<��4z=x׏;*M�:Y��<ͧ�i�_��>�<%��;l2�� -x��n����Y�9�s��� ��`g��5� ��=mͷ��U_�nI��i�� =�* ��l�=m�;ϰ�����`�xw�<�Ѽ�G���1��� A��X<�m��H���:�L����9�@��'���j�|<��ƼNj�u<9�üt/�<�ꕼ�=¼5n�*�B=|����ן;�<�ߍ<&�~�dG��i��;�����_�<;{<������;� 4<�����=���7);��ػ�P��?O�uXټ�u�<�Ў �;���<%�u�$˼Y�0�M�;3a4�����<���� �����::<\�:G�<ᓵ9:��;S"�B%<� a��P��1�;ȗ���&��{�h<�� �T�.��O~�~�ӻ|���R;�<^�-;(��<��E<[S<� =�w�;�ռ��<�H<����ƃ4��ɒ��=k =�\<Ѧ�<�D�<����.���=|��;;��;�0�;�hռ��T=�ߍ; %8<[�B<��O��ּ��F��뼼{K�~�S;[S;���:�u�<�����<;�Œ��g�<��¼�ca=�����Y='��\�T;�P8���~:���<��ݺ��ż[3;�[@��3��=�`���?ϼhx1=.�<�ę<4s=����<�2<�:=���X�W<��;�F����F<�׼,�;M���X���5;�+9������<��!=!>�: T=8�j�r� =��:6T<�����=e��l�^� %8��U�<쯖�4��;� 4���=�,&<'.#�+�K<�) <� 4=�sݺyr�;�(���|��ʝ����F�fkO<����<&�E���V"�D���?�<�D˼���:�Z3���/��Z�<��,�&�O�5��=���un���茺�`���"�;� )=�.�;^J��; ���<����.᡼�+<�V�����;\4.�aE$=��`����L��kAB= -�=�9(�&ʩ����<�b�<��j<�勻J�ɼiW� ���+3=p7�<�����"�1�a=���hY���<�~�;"ħ����<����;{>p���|<��<=�k)�m�O=v-������P�<���� ��<>�O<�E��i ����<���;�[�<�����l�����<0ѻ<#�=�W�� =��#�W+����gn<�������ZR�N̼��<�{���H�<�� �$�s��B�;�Ż�5�����<��;�=,�<�=��Q_�3򗼣�����;H{<�O���=���< T��|��<�w��������̼�?*=���<�`�<� ��^�y�T�:Y�L��<�*#�����yN�<H�8��<5���|F<��r9�R�;@�J!�s;;������Z�w<�C���2��f�rMF��\z=�O��}_̻z�;���������<�q{������6�w^���E��|Tػ�%<��;T������%�=��;�����=p]����<tK���ֺ��B=F"��Ѽ>�ϻ5�����<�"�Y;����U\�����g��S��<2�#��ZI=�E����<2� -=G��:�u[�����;�|<�����-$��<����_U -=�o���܈:kw��)q;;���,�� �3=3߰�qU�<�Vx<"ħ<����|m<� �<�O���3<]T�<��X6<��໕ǁ��>��G�G2�~�;F!�0�A� ����h -���]�_�;(⼌Z{<�=J�)�dt�)c=���{ب:����X\!<��E= #�<��˼�sּD� =@���ʝ�+YD<��t��(��*^�;!�e�G����m�Z�<^u޼�c�<��"=�<ټ�Ug= #=��U�L���\;� -�;�"�;��A��<���<��;7���h�}<���;�̥�h�3�����d�:y�:�w�Ƽ��߼W/P<:<�K;��&*=�F#�@����D�m=�<ݼ��)�����/c�<И��7�*�1��;WR�<�~W=[u�<�� ����3¨�Bq��֧Ǽ7� -=��;d�<�|<{�r���;�-���#<��B=g�=<��:�y�;��&=g��(6�����< �;�?�<똻��ѻ/cp��ˡ��!<ܸ����;֎��>=��j;��?;����� =ݼ<��x�᝼���<�5��P��<��)9�5��^=oBB=�^+���*<� �<���<����Ug��៼�X� -�<��?��_�[��<^���Ѣ����U:VM��������#�;Dl�<�<�C���8��sV��S,<���<3�w<�� ��5��i<��%���1=�;�@��po��iY<�u/=E��<�+�h�}<%�u�;!=���Bq;e��<���<4��<�������з;��Q=�c�����g;%6 ��%&��ͭ=��-���x�tz���^<#���;�ɽ������ioO��/��j���3�����4����� -�'���;h��9�0�?����<�F<˩��-ּ�(�=��)=@��P)+<�E��������K��������<��<;��;Q��;�-2='��<�Hۼ�d?�T1=�S���F|<��<,��FTm� V�<ڰH���o���;��*���]�=�%�CL=vr�<3�2�%ӵ�Ɯ�<��3���;� E<��J�,���g���;<��9����Q���o�;���<���bɦ;��ػ�n���;/;*P�v�!�;�E�)5=Ę#��+�;r�<�\2;�1�h�:p<#�་`\:��(=��E<]��l-y<�gC<��E�=�;�Օ<ˉ �5�q��a��� E�rd⼵!�;��<p��"�<�W+; g���:��?��'" =Kp��ed:�?*�0��@�=�K<<��;%�5<�Q鼢햻Jͬ��U�'�5=����̼��K<��<ӟ��O�U=��n��C��d<��*�3@�<��&��z�=��E��z�;�a�;�V�<9�;�W��F -C���i��ٛ�(���������׻)q -= g<�I�; BQ�w,��V�);���(G5�FT��K��-ֻ�M��'��A =�ڻ��3;<��[�����;E�=~��6�1�p�R�*=���;�G�#�`;�y���r�Oe<_��:�V��ù��\V��� ����;�� -;�`�:پ�![�� VL���;y� =��a'<ϑ�:�я�\y�S2��� B<��(=�"��d<{4`��<>?�<5=;7(�<8-1�a������:�0�H��{>����Cq��ݹ�<�>����<�়�����'����<��k<7N<{4`�=0��䈻wLa<`U'��<%<5==�7�<���<����&&;�E;��<"���.�;<˅<5�1=�����;=�8C��D��D�;y�K<�;]}<�18�z� =D���CL�;7�=*p���$�9�0<`�=_Pg�a'<��;��d<�����劻�&�<�����P�����;�&<%��;���gF�����~���U6?<������:��,/��>�/=�$� -�����#<�&�<�y߻�8C<��=(ܟ;�2�<�=3@�I�l��+ =����|��9��ϑ`=�%m�I��%>˻c8f=�d?< -�Q�qx���G==��L=����h����;q5�;%��<(#üvDn���;J�����<Ըp<�$o��A,��@= Zؼ�Y����U� �� -R��oB<~�T=]u�;v:Y<����м>�ܼ�L��AL=�´���׼�%=�+b=`�*=��ϼ���|��U��[��=ż�|���8��.3<��)-X=���<~��<�Q9<� H���<�-�<=�\=��<��O�ןɼqIk<�������n��������=��F<�o�<� #�����2�|�KvP��8�S�`�-�z��B�����������U�w� ���<��A<��뼋�ݼ����[:=[D=��!=F{�<���Bl =>��<���<�$���$:�B]�O�����y������ �<�)=m:><���-��<�����m<`? �$�J��ͩ��`K���A;�?<��j<��d���;�ݼ�e����<�^��\lq��z�H'*� ��1#^�Y !=>=������<1��\lq��.�d�W<�U<�M��$=_�=���Ƴ=��4�����5{�< PC���B����;u��Kvм`g��{R���AL����%�y��� -2��,���2����<A̺5�,����<�GZ�}�=h+��ͩ�n�=���q�6��'=F�»2:��ï���<�h�<�DZ<5{�wܠ;Kv�;f��;���;W?�y�<Ʃ�<9:;�n<`I����= -�<~��=<�3��U���<�t<��;�G��L��<�4��F�»��<�G<��=>|<�0�����!=d:#����:#�;ϳ�<���Z=��'=L�<�Y�Y�<m� -�#=׋�<��=�̲<{�#=N=��f��='�D�<�����{=C*:<ʥ=�%L��@ֻ\�C=���<�X�,K ��<�&H�<{��:V��<뻼;�<�h�<���Ƽ��d=ᄮ<\����e6���H=�`,{<r]<����;d��d�z<��Q����<�&����[���;@Fݼ� -��M#�l싼`C��7 ���黨6a=�,<{�����e<�� �9v�< ¼�6�<��8=.IQ���;+T$= Wr<`L&��L�<��<#�=�0. =�:T�<۬<�o+:�|�<�"�<ܪF;A<�;���;b�o�۴;=~=;\= 3���B<�i��r]<�_=;O��ǹΈ=���<�<���;�����8=7����^�;c��� -��Ks���_N�k���Ksv�7y�3+򼝄M��<�<:FP�k��<�>{<��=��T�i�9�<ɻ!���[z�<�c�;��޼t6&��m�<��ǻ�[��(_;�c�<���;!.�<� U<\�|��/�=ˤ#�C*�<`�+<�5�;B"<�]�u5H=�e�:~�P=h�)<F;&��:�^;H�༠�ݼ�n��T�y<�J�;�r<�c <���]`�H=5�:�mo<��/�E�J;Z ��W�<�h�C��;��;�ҹ;6� =@͹<��b����<���<��<��:,h4�8���0�����A<���<6�;�, �lQ�;��=� -��!5��ص9=�!c=��sE{�������� ��}W�sE{<�6�<�#���;��<��<������\rj=dJ <�kF��BJ�Iޥ��WW��G.���;��<��=��s�(�18zL��:9�D�� -��#� �<=���<�Ȼ�λ��z�=�%=�Se��9�d�==?��<5�$�x�%=mH};����8Ӽ��=9�=�ر;}��;�����/M�iU��#��<�󔽉L=��<;��<>��:yU�=��8<�կ<�r=D�@<��J<,�Q�a�=l0.���W�̉��_���� �]��/���tO�<��� ����;U��n=E�= K��6B�Wg=�=_�=h^�<�AY��)�Iޥ;+��;�y:�o -�U]�����<�4��t��;�8S=F�7��g�}`^����;��i�A��;V���xc�< �<�� -= -$=E~r=�#E�2�O=X�<<����y���Wؼ�*�;K{�@�= #����=_�?<_,�<"��<�t�<�{���*�8=�<\�;5�<�v.=��7<��;�������`eq<_�X;�8�<���W� A�8i¢�{wN�U]�(�ʻ�9s<�� =�Tּ�κ��� =�g$���+�8b�<��;����%��W�1<�B�<7�M��}�;�N�<1��<��$=X^�< &�ص���F�<�>W��S6=�.-��j=#�L� �w�U���A�Ҽ�*黈{�� 7��ͼR��;&��?��<� �����LL1=�t�<@��}� -�@͹=�׼1��;h�D�7��G�лÃ<�l�;�5ѼxB����d��� ����< �f�-��J�>�;���:�;��q�n:%;P����c@�<�b�<�����ʘ��&v��}�b����GݻU�:<�;�\rj<><�0�<�L����Z<ր��E =�h��軘&�<� r;TS�<�~�=��;ivݻ���<�2�<���<�,K�+�s������;K蜼���z;iv]=M�,<=�K�N�ż����$6<� S����{wN<$�~�N��;���<:�<�˸��;= ��;cy_<�F=�t�=�O�:�X=n:%��/�������+�;:񢻀In��/|�S�C=2 ���=�����J�<�f��.�a<�V =������!��7b<��=RI/=ퟺ�5�=;^[��$�*�s�@�8=|+��q���a�M=���<�W�������|�����)�� dӼ���<�g������qD&��}��˼ɬ�;A>f���t�����-�U�<�Tý.S�쏼� -��>+�<;5��$�=�F:G�w<�O�q� ;Tܭ���W����jp��Q��<ڦ=��5�ҵK��q���˳��E<>0�0���D=y0@<G�ã =��=������;^T+=�Z&=]�9�~xѼ{e��A:<@��;�E<��T�k��;��,�t:b=��g����f�v7;�c�`���t�.��q<����vy;B����;�{�p,<_�6��n ;�i==�)h��5i��n/<���a�3=JGX�NZ�U~��x ;���NZ���0��y�<��Ѽdb.���:�{��<԰<+�<�?����=�WR� #�&E�;M����� �<;��h<�T�爐���<[a���/�Yc�of�Yc��O��w�B�\v��=E�<ܜԻwR����O<�pI=E�`<�Y�<��-=.S��=|+��U���;�� ���$��~������{9M����Ƣ�@ i<Ѕ�Ϳm���S<�Oռg]�re���6�$۠:Ә���V=��4<9���͊��t��;轍;�nj�$2��k6#=q��<�0��|H=:><��v:���;�d�;J�q�a�3;\��<�XǺ~!k�X��:����r�<��z<^���>+R�A첻'�ܺW.�<�=Zv�yތ�k=��Z<�D�k1�<)=G��<0�κ��t<�v,�ƙż7�ü`O�<�$�0��ܡ<����X�[=ɱ �@ԍ;7"�<����5�y���;��$�����绌 �;���:�}����D��@�0=Sm�;�!���Q4=�I������;]��<U�<H�;y� �@��< -���7�a���c#���d��<��;��r����<��ɱ��m�;K\�{e�;Hi��;�8=<�����8�&g�<)Z<9���Q4���ռg]����<�9��D硼��n����9m�������<�0{�˼PZ����J<�|��X��~!�����q><P�[�]�l<[Y��f@�;ഛ<�m:<���;����<�ؼƶ�:Z�X���<��;{�#=m�;��<�/;�\��-pT�S�����U.a�˻r�;� ���-l=��<��B�G4D=U�G� ��<�Q�����8����rn<)ڼn1���<�3����<�w!=�B_���i�Hۻ�ɱ<��U=���< /ּ��i�O�O�|+/�t��;�`Ļ,Ǻ�w�B�ѝ�<+�=�Q�<.��<���J��<��4�.N�<��8+��<7$_<��M<��9=���<�e-���9>�&���=�ca��̉<�$�U(J=�o�<ֹ<߉����*:�xH=+�@<`�5�zh�:�.)=�F=>t ��V�g��>�;��=;��:�-�<�i�=:B��L�:�╻rl�<�y��b�D&=��<��{=�>{;)v���ғ�T�; fU�� ��F�=��̼�'�<�k=��'썺�I¼��һ����+��pؠ����1�<�>�j@=ѽ��)���Y��G#<�Î<����ʕ<\d^=s"軠#b<H˼���E�<����,�=mp�Vw�<�Nz;W�h�ŭ�<�3�;L,��Ɂ�<��f:�=��9�J�93�<�%.<5�:�%.=[���=d�?�O�:����� C=Ɂk����;�L3�< F<5Z�� ��8�!=���;�u�<��=��=t{�=�vѺ/y<����ټ�Q=v�< �;="'�S���d��:/c� p�<9���<�D��:��M쵼IIŻ�ca�1���ZUټS�<������G<<�T���#=7�����t -�߉��˷��#=Gz���R�;D�� #�:���t ��9ü�'ͻ�m=SE;�e-�H��|��e�=Z�+�s<$�<�!�0� ={<<7$_�7�x�"�s�����%�=��G<*���f4�;�3a�4�=޿���U�II�<�A��U�6-� U =�Nz<���<�0p��{=�U=6d��Cצ�zr�����;��F�-T_��]�<޵V;��2=�U�i����[8�ټو�<o��M�H�Y<1r黔 ���=��=I?�;>��<.(��'�;U�;s,5< �~�q�ɹ ���_G&=�9<:B�t �Ov�<�eX�b������* -�/�J�!:��g���XG<� -=<,�����t;�Մ�Y��6�<�=$ F��XG��Ԋ<��=��v��_�<�<>`�׃=#������=�v���܋���f4^��?%��$�m��<���9S弻X��6����$=q���t{�<� -��YFԼ���;2����<:�=�e-��p=s�N��)D����;\d^�< Т�o޼\��<{��b !:$�,��=�<�l; ���IIE�߉�<�������;S<&���?؁�v����==� �D.�:S1!�a0Z��튼Eq =}��;��;� �<��F=��A=: ���b)��q<`��,R� �<�μZ�ۻ�o=����U�ļ{���)d��Փ9���<�u���E�:�<���<��c���N<��K<��= ��:�D�$<�V�=��^��'�ü���<�� <4�d�X�=��&=�' �ն&=�� �#����3=�VW��B�<��Q�����1.��&#��� -���<�|S<������ ���^<{H<2����v^ V�;� �6/@;Ѽ=�饺0�5�Ƴ~;�o[<���b��g�<S���C?m�D��,"��� �<���Kw�;�v���9—����p�V�ܼ!Cu�`c��L讼 �J<׃J�5Q(=G[�I���>VJ�E�<�� -=���=u-=l��<磮�c�}=Z�۹��ϼC��"����5���;m�W<�{-�S�Z�g<{��(0�:�R=����� ��dP��~��<���'�Ϻ� -$=����A���,��q�:U� =���뿭;1�qӼd/=�{�<�&#;�dм�f������;��<�ڵ<����tO��<����OT;�:8[����M-�d@����<�6������K�T�����y��-�<� <��[��<�<����|G��%�:�"ἑ��<6���%��VW�C� �V�ܼҚ'<�ƀ�3H��֭<�o<�d�<���;2���'�ú0W<��q3��~=,���m�<,L�FO�<��&<�Ϫ�{����#<::K<��+=�L��BaU��?=<�;���E��;�]*������%��yZ ;2��^��;�gK��R�<��<� -���= -P���f=!T�:eLټQ�9�f*q��>�Gl`��{ -=� ����<�<$��;�=�VJ=e �<܉�3�X:��C;<��� �nb�=��%ph���N<2�� �I<���\@;s�����=���<7 X<���<�k�/�M��S������g}�l��n�&<������� �����.���d�;�i�cQ��/����[�<�[���"��0�;YD�}��<�X��7 X< a=?2=�:�<�����=,��mE3�q~n�[����=�q� -�b�cQ���Ѽ;�2<,L�t�ɼl�?�Tሽ�}�<,;;�"=�rV�nbo����<�߼l��<�=�d -=�v�Y�=��<��:����������=?������<4{���~��x�=R -��{j�;���S��:�|����.=�(�<[����;1��p;Kf�<52���<> ��i��;b�<>�;��=xa�����ɽ]=����@���)<6ؼ��=��;�۽� o�l��;[��;ڍ =�_�� �;<u8=c�ֺ�{f���<%�==���P������];f������U�.=z�[�<�a<��t= ����[�l����p���ȏ�Por<)a�<SR<� ���v��)�}� -=��һ�g=��Q=�^���]<ƽ�����Q}�l�����/:4�f�%��Po��KJ�}��S��=Ԏb�ߨ2�����寻��H:)s�h�$���廄)�<;�� ��;ݼ��=F0K=0� �#�<���t=3� ;�Tn<���G˅;�6��H��=_R� �<啣�l�ڼ��F���'��F�C'�<�R<�+9����;uO=��> ��av3�hY�,sc���<�S��FB���U5����<�_3�)ab�B��<;��;j~�<��)= �w�t����?�=ad����g<ǧ<�O�&X�:�x��(� -=�I�<���;?����CG�垀<�y��4�f� �;��U�<Sһrt�<w �0 �KTM���#���V<�qh��J��u�<6���22�<��<�'�:ZZ��7��8D�]�1<��=�$�ջ�2�<��<���,N �P�����Ѽ�4<�j`��JO���<�q�<>%�Ǽ%������l�&:�2;�������j5�����rk����Ҽ�{�;�wu<�d���֟��]K< y�n�[�\�<��S<~�G;-�< 3������j<~<��I9�7�L<.�d<ڲ�;���s4)<垀�m5�<�ށ<��!<�ɝ���ӻ���:\/�9�h<��N=k�<�3����q�;�:<-��e���2)üڄ0;�;�;ƽ������ԃ���T<\v�b�����:��D���<��=0�~ܻW%R�:_��U�.;�r���<ݍ<��ʼc<�(�g�;������)�ί�=��t���ڼ�c�:6���B{��l��<����ʤ�d�z�1�����;ll&�U-,���u 6����y� =Y�<a-�� -�� )#:`��:(��<�p��z���Z���[*= �L=�2�:�����={˼G� <܀�_�)���o��V�!����;8�,<�H<��<$r�<ƨ9�:��X}�;��T=��<���<,g=��C<�x�iM�u@��5�v�; ��[@�Qw�ĕ^��3���S�T�F���X�T`=��;��4=�� =�q��=�;i�p�P<^��;�kӼ~�����?�,�v=s6=c�<�0�<�;MY��^�����4=L����'����N<���9��<��Z=Nl=-F2=�?<��=�6��h�P=�y3��� ��uI����<��]4�<�Lϼ�i���*=5M"�+��J����ٸB��<�`��+��6���:��o<�3�<)Sl�;���;3�;iy�RV�G\Q<�C�arp�0�<=&�a���cRۼ���UWV��./�dҼ5<�K��쮼�;QC,��T=Ǎ�������<�nY��؄��M�����<�o���LO��VE�孻GՌ<��N�y�D�����<^���f����Cj<����9�pN�]^Ƽ~=��_<`��<�p�<��#� �;|z�;�[@���:J��<[~ۼ�O =�nY< �"����1b���s��ͪ<�.�:ʼ�<ؖ�o��~�E��ٴ�p����v���y!`�ʲ<:���?Ӽ�u�;�u ��k�;ck;M=�;o��P��^�;:��<�ݞ��fؼ$�"=�W)<�*��<��:�.�a��\$=����Ͼ:3W=��M��N�1����;�� -<�;E(��䎼�M<�d=���<�}ʻx��<$�;�_*��#�<�� -��Ӊ�<����e��8�<���qM�_>1<�s��� -;�6�<���<�S�;@q�<�<<��I=E|f��"<�#�:D[�<�_=��Y<�����<�=�S}�B�k=B{;��3�����@d;�����+������Y���ͻ5����=�_��d�z�� =p��<�1�]4��=^;���<�B�<�/�;��*=>^���;:J�ۼ"��<��=�L� ����V�;�|��U4� ��<��8 -��<��;p�P���o<�&�<"��<�Vż� �<��=kYK<�:X�ޫ�:I<<<�1�<�5��+ -�vS�<��J9�d�;)�\���޼� ��Vż�B<�~�@����F�<:t'��pN�����#5-;�׻�R��$H���4y�Q<�X�<�����i�<��m96�-B<�"�<��]��h�&<�-���<����_ A�F����==����)2���;Q�<� -0o�7N�T��<�y���Õ����� ��.�Ѽ�?S�G2�<�Ө��3�<\Ħ�I<��v}+<ݍ<� < ��;��d���伢ޯ;@q��4�<1�<��%< -�绺���h��.Y���Qە<{G�<��<~<�l�<���8J=R*;v����w�<3��'n�<5*�<��&=�Y��O�J=���;�-%:��D;�Q��:B�l8�&��<@�+<�t¼fˇ<��:=�8��1�R��.���A�5�� B;%�;��s<�;�������i�<����� � ,'<[��<�2Ҽ��]�����]�<�����S�;�v<[ bw<-��<ͲZ:3GI<��<�8J�<�w�<��Y<�߻�qF;./�<�(=Y�P��*\<�W�<�E���p=�H�<�� -=�:;Ueֻ�kN��5=��"�Q�μ{�2���<.h��!5�UeV<����!;�6=�Sۼd郼�cX���g;�� ���;��%�*k�<�߻Â�b�<�(����<[ b������5���;\'-���<� ��-���7���<�^�<�Zu;E�ѻٌW�-��&��;+�F��܂�$�ջ�̺Яo<1+�;.����f2<�7]����>������һ����;��#�<���<�-��Яo��d<=�Ĝe=|� -=���� ,'�1+����=G�U<ޥ���]<䅊�a�'96D޻~��3�=w�=Z���H6����� � +������?"��3 ��;$�=x�;9���z-��Qp�o4�;���Q�<��y�v�7�J��<_��[��<\������<�t�<�'�=��/=,ze=�v��1�<��+=0CK�D'�N��1A,=�e!����Z5;�cr��;��m<� ='8�²@�4�H<���)�%1��3�U�< d`�۾�=��4�υQ=��f<�ݼB�"�<�N@�I-==�����=L��=Х=�dż_L�:_;���}<=�ѭ�t�<���<'Y��U�=A�e�!���k2N=H>1��L��6�;�&�����X �˼��;�6�A<���=��X=�����n缁1r���S<��%���p<��6�Q��<�p<㘼� �6� -=eϠ;Ů��ğ-� -�ȼ�;�<������􆤽.�=5�l�)�s<����h���yw��2<<1= -uT�`*B=���:Y�'�+�5<���;�F�:#NҼ�&�;�c�d�<*<���:���;c�޼x��;S&t��Q��vk;��Z;s�=�����_ -�<Ð�<�Y��Z5�V�Y<������<�� = �)�}��<�SQ;b;;h�<�b=,� -�8M:�5��� =���}��<ܚ�<��Ӽ�x4��|���7��n���I&=s�=����Q�o�˼�6 -����4�H�Tf��k!Z=��/��1�y�<+�A=�Sڼ�J<�Gn���<�x�tm���;a/�� ~�8��<K<�n =P� ��L�� �������+�;#NҼ=6%�X�<��<�H;��<� ̼7Ģ����SѼc�껑 ���~; =�1����� �$]'�x�;�ך��:�;�,ϻ�HӼN�;��\��SѼ�<<�5���T-��BT=,��Ů�-i�&};?#=�\9�7�<�;����=��Q��ny<�ٹ�U"�<�u9;ҁ���i<��>�<\��B�";�@>�g��<���<�Մ���@�Ғ=�z<�_4���<� �s�I�N�������V�Y��SQ=�c��<}���\��;���?#=o�K< ޹9^�<�J���;K ��|�������y��X <�]�;�5�:#��B��<����c�)�<���=�0=IM�6�A�Ҥ��W=��;���t���<���:��<�g�P:e�<�zJ;���;�hz;�ć<ҁ�<,��;Yɳ���κm��;�>;�,ϼ��<]�����<�^O<��=���θ��ŝ��6.�2P���U <�<&9�1����Y�J�W��.=�g޼8r����G;x�<���<����㿼g�������v�,;g��5�*��.�=s���:<�M������\ =��3���"쪼�����?��UX�;R���Њ�<��3��E㼚��<]��V�:<�0Ǽ3�~ι�����ɼZ�,� -���\�ܻ��λt04�3�<��~��n̼ �K=�*�.m��}�ϼ�ë�r��Kp��m�E�~μ^�;�0_7=�"�<'���m�E�f��<��]�.P�<�و���<ĂB���<��c��…=L靻C/7���< -�=����e���|<��=��Y=�D�;f�u<�y������ꇼV9�I�=�M����;_�R=����̕��i�:j�;k��<|�<� ���Y��}�ϼ�X�<y�����7�%:A=�<k<�=�
L� 5��t��I�\�������9�ƻ��ɼI��<�' ���V=���ͼ���G<24�;�����Mw=ȱ=��Q �����\ =�1m;���mK�;��<;�M��U�:ּy�El��y;���<��l� ��;�F$=Yj/=�ーrl�:nw��<��L��Sh�G�a<Θ[��Q�~c�<]� <{=V�=,M(=�q;+l{��� �!<|q�;���<��c�d��;*-<�[=�����;�V�NλV��z�=����&�=������2�%����G��6���H��]N%=)��>�߻��=�uc;�H =�=֫�<��Y=r����a<�"=q���r�U;�:�)ٻ�+|���<��;<�M���&=X�1��p<�<�%��ۯ���k�=Ƒ<�I1��K�;��2���=<|�6=�po��Iu<B�<�C�h( �dD*�#ޥ�C�a��xBC;NN�V�k=q↼��IP ���(���ﻟ�Y����;I3�<(;�;��$��[|;4qF�Sf%�c5d<��̼nw=�Y�;���<.?#��<)=�0ǻ!s-;[��<�w�v:�8�J��=�E'<�\���� ����Y=Ƒ�<[m���C�9+��<[\��x_��Y�<�.�;���<(�9S8�=� =�s�v=�ʙ��h�<j��*�����/J<��������<��ĂB�>���IP <NN��C@<:G�<��+�f6%��;�GAƻ������ -=��w;��<���c���>v��̦�;�L<����c�H�-�Z<����� -��}�vd��#�<3����v����=�S�<�H��k O=�B�<�oR��bD=C<4=�#��Ѷ=Y"�Z���+<�,P:;�=���}˼]��%���Z�&w��8#�<~���=:�=�;��f=n�l��u̺rӻ�m���<�. =]�k<4�м ��@�n<��=��=9<c�������<�3��(=��p=(�;�M7��i��&w7�*�<�n����C����ӻtaټ ��<��\�v������p=�����h����j���1<⒂<׌=˰O�F�/�\���f=�}K=�(�<�� =��V���t���Z: �<��}��2��Xvf��>����><�i��h}����X=J�ּ��l�}�=. -d�^U;󎴺���ͅ�Gg9=��;T1�X[��s�<]�:���Y�k"{=�������cx";2D3�MU/�nX<���<�s�<�ɷ<25�<�Nk�f��zf�;�ף� ����n;� ���s-<�rܼ�bD<�L�*��=l��==<�t�<!-=��D -��d�=���< -u<�3��0�K;�����G�<Ɣ��;�i=Z�����]�?������l�,��� �� �:%�-�C%��b����0<��0=�3��ZE�*�<�O ����7�\�5�cx�;��»T45�!5=2�<�i��� �����:��=� -=6�.��`�^M���^�x�(��¼��;��ݼc��*�<�)�;u �<�V��3�HA�=m�b:��V�Y5��h�ݻ����:u3��������< �D��3�<��<��:��ܺn��<�P�<�P�<. -�p��"��+��T45�hf��2@���[�����<�J�; �<���<���q�<"&<�� � r(�����l <������;:�_<���J�<�⥼��<9V<�%�<��m�*��̱��@/=�)������t�<]��b�[�� �=2��;�A7��>=�3���,�tܼ�F��P<�29����؝.�@��-��g@����9;p��:V�z��4�邋<�$;�V�<�m!��'��'=��ܼ�r��>�:Hv��k��ʘ�mp�<�����乻������=b�[<���;=�;���=C���;=`}<��;�?�<�����ʝ��<��-�@��2_����)<�CJ<'^��=����;�q�9 ����CJ�T����=��P��td;Q<��=›��c��<�o3=��S=$F�<���<�<V�<����͎�:**�<s�p<;��v����<�:=���<ݺe<-ɏ<�l=���<�k�;-ɏ����V.�;���I�-Q�ņ0��k=�)��@��@�=�+E<���9�����l�<��;e -�6=��-�[������������(ˢ�r���'^�<̉�<� ����<��p� �;:�Z�;p���k����u,˼j��;v���(q@�������޼�q�;t`=���-ѻ ����?�;o).�p�"� �4�w�<�k�p�<��S�"��<��m��oV�=(����䷼YFd< ���k�o��<�G�0��mCȻi<)��<�)�;;��<� �:�^�|w< -���������<0m<��׊W�;��:8p7�Q�<�a��p:�Ȟ7��B�<0m��?&�z� =$��jw�=����A�����+�<�мҹ[=�'����:��2����;[K���3�xDR<�ֻ�>;TV<�S��O��;��I�ʘ;����T�<}N<욒�<������� <�<��sT�������<=@�+�N����==�����T ���<��=�˨��� =�j<|\�<�,�<̉�<���;K�&=o�<���=�^q���<� ��70�0�%=:H�<\�������9��U�-Q<-Ѽh�=�n+�›�<����¼r�=�DT<�S�F�<���Y?=ҹ[�>s�<�� ;(��<*�=S�� -؀=��[:O+g��-=��"���r=tW'=�s=����‘<�4�d�<�5��=���;���<�9�OĒ�}��:Ÿ9=@��S0��i}�<��b��|<���:(�=;�C������<,ͷ<�8�;�sY�q��<���P����<��!<�!�a��;t������<��E9��=ER��e!�"�»2;b;{�#�X�H�Z���%�D�ٜ�<��D<�)=���l��<��=_ �=�߅<�1-<�y�<�|<��;�EJ�/k��~��<����[I�2�;N�@=��5�#�<�s���;��4���k<��[�i <�c�}��<�˗�QỰl����R�7���mN!;C�;/ы����Yܺ~�f����;H�㗼��;V3�<��<�k9o�;ޣ�<,ͷ;���;0�(��*�<�9=5>d<�W<_��<��<�<]<<*�Ȼ.60�.60<|-����O�����M��b��<�d�<[��;K]�'������]<�L���7�d�< - ����,���Ӽ�=�v�2;b<�Ǥ< ��l�;��"=g�=*e� P;��a�P_z��� -<�̈;�˗�ef�t�^�Ԗ��m誼*e���R=�I�<'����ʦ;�('���R�����<^p��o��<"�B�w���F+��v=+3.����<��=k4�)c�<�1�<��<� �d����a�<� A��<� �< - B<��=�<ĻWg������+=���<�#úl�<(��<(b�:fF�<�/;��T=|-��|�Yj$���;�w�<���互{�<#��<��=�. <ö�;�=�<��U�v� &T=#����;fz�;o�Z��:�e��ʊ*<��{�C)���,�W��6O���W�w���9w��7!=���ƹ��DPp<i�t�0<�`�<����p�{��<]<�<�;C���HU;O^���o={�Ѽ�r�j��<��<��-<(����>��L���ȕ�� ���,I<g�<�] =(��<�~��:Dh=K�+��P�<!�< ��<��v<E�:@L=as�<KݼnO�����<X�<���<)cm�%�D<={���e!�o�ڼ���;�C����<:Dh�[�ʻ���;j�<�n��<`�μ�s�펼T����἟�I�3ou;�M��v�<��o����:��}�O^�<7Af;�ॻ�0�;��v��l<��<��ټ�1�ٝ��O"=�!2��|���,=(/ڻ3ֽ�O+�<2;����b>���_��!<�����`�i��������;�9¼���:]�̻v꼮�ռ%,X��,�!��*�<�qȼ��㻽*��2=��׼���<��"�ER���<��Ѻd�� q<~�<�6 -����啕8�u;n'��]�=,���n:��7}���e*=�%�G������<�a��o�==�<�S�[���,H�t����2��)���V���*�6�C< �;�����E �۴���p:l���wB�;�J`<dn=�}S��t�� �k��<��I�������H��(�;@ܼm�p<�=�<� �^Ir<�8�.�<����!;ct?<3� �00�<��=�&����l<�"��4=�̇��߼k�><����#p�͞��)ջ~�#;��ȼHHۻ)ռi,�㟬�z��B;6��>��r�<�b�<�SK=��.�]�=X���Y:�;�g=� ��E�tf�}�<���h&<����T���3���0�<���;��\< n�Ѻ�$l뻫Kw=u���&�<;��}��7;�<�}<ސ =.�D�D���.��˹�g1�<��<.���C(<�M���ü;M<=Q��=��<��<>�#<��5<��<���;�j �b=�����p��;���;�\�[m�<��߼�7�ԍM��<8r;NS< �<}ֻ�E�<*@^<��1=�8�L�Z<\N; �(;���;�q�F�wBc��t;;� -<2Gĺ{��<���<���+!=��=�����鈼%�2�HH[<���f�2��p<͞��I)���^�t� <�=�;UC�� �<�p���-_;��;��:�V���=y���;�_�����<���U�'��X���.�;ޫe<�(5�[��<�KN;Ɠ����<�t�<�¥;L�ڻL��;2c=��:Ųt=���d9��*켍_�<�27j�<�Sa�> ��=|=�W;C�<ˑ�=0d =P� ��p1<�0V=A��<�zR��v��sg���M���.<��X;����x�<>�ͼ#-p<���;w�=�1�<�W����'�؆���;<��;f�4<�8�<�V�;�I���o='���� �<�5�<|�#�C�q���<մ��#Ɛ;.�̼f��c���MF�<\P"<Ɂ��������4=���<���=v�����������4���K<��9=� -����:h�a;� �c���π<�<�<0��<)���(�� Ƽ�;'<~͵<&��< ȃ;_BC<�I7=M�$<^�x<�����vl�����m&=�y�;�yq=0d ���:�����0V<�ߴ��ּ��<`����Ο;2(G=+�;?����3<[$��P����:�仢Z̼F�<�����D<��;y�,���j���,<�׼9��<�zҺ:��'�<\P�����]`%;v@P<�t�:���� ����8�(�޼u����n�����<��<#���!4��������oĻ(���U�:0d��K!��(=$�<��ƺ�^;;M���_BC=�wM=�UT�����8Ë;�5<��ʼV/��େ����:H`�x���"�=���l��Y�<>ղ��]Q��^ -=B��:��K<��<��e��3*�n=��~��<�{<[_;HD6;"��<�/ļf�����;A*�t^2���]<����r]�<][;�v�;���*�;���aC�;���:��8��;.��<�� =Ȑ���!�/E<6�����j��M�9���u!�<��6<�b�;ߎ��`$�:v� =Kr�Q�T��V�8�5�Sgr=:�=�WG;7�� =<��ԕ`<#jF��������0d���P<�A =����?�AA�q�;�F2���7�=�ټg�C�P����m,<���gd�<�Yk��L���u<�1��Z�<�n�<�p�<�"=մԼ���<����<�.��4 -���<���L����4<�/ĹJ�<�[޼�Sa���<�D<�J��寫<������;�=��=w_D=Pћ� ��U�ڼ��<J@<_m��x�� -.Q=��������;�<`$�<:��<3G�����Pܼ'�=�>�<1F����{3�������:��)(=�SἾ��<�o�( ��o�t^��c���G -�>䣼�S���M�;�u�T�f��WG;b��<�����';T�!<�A�<j�< ���l�g<�g��z� ��{d�/E�<��'���]�e���Ꮵ�ƹ}<$L�<��C��;Z<�π<�0%<�ϱ��X(<���[-<��)<�5��H� �8��<8�䐷<^�����=�n��7򼫛j��rU�W��<�<�ø�<�3=���<���<��<�B<�YA��#�2Z<�����a;=�=��`�<\�<�=�p��J�� �@<�Ԁ!Ǽ��`����� �<����&<���D�0� �=� -�Л+;��ѻ��k;�����T� `�Ѩ��7˼���<�H4<��ٺﳊ�$�b����p�y��f�;� -�97��}#!=*�=�����V=a����,����,=̌��Ԁ;8�漏�X=E��ڛ��U"��4O=�<= ���i&���x����<���=R1��14P�J2�7ޖ<�"��1���s��c<�Ԁ�=��� -�*�='�7�Jx=K>��5��E<>Tj��'=^�[� ����μ�:$��Po<� -�<��Ѽm�n<х��a��ܙ<�e����<- ż�m=� �:����nF���<�,7���q�߻�O�<�V=��'=��x�gP��j(=�b�< - ���<ʋ<,�=���������<>T꼎�,���GgP<2=G�2��e��k�=�z{:����,��G��;�`Y<��.��0=�Ms���<��;<�׻������$Z?����;ԓ=0!��r@��E~�9�;N&�;�W��}����2���*��$��_ڻ�"h�RdT=E9;�Ϫ�y^\�W���e���?��;�c=�J��S�<���<�<�<�҃<�;#=^������;��a��O=�'�;�J���C�̌��2R��5<1G6�,�=ٝ��Ӽo𠻑��Zb;�(;^�ۼR�;�.=E9���vF7:�p���.<�I=c�<<�-��� <{ʱ�������ԓ�<=�<|�<*W���;��<9j����ƺ��w�#:�H��7(��Ϋ�t��;�5κ�&�����<�;��=D���3�<�x8<��;�R=mQ��P���Y�G=.��;1Ή�?G��*=��N�!b�<�Jw�]��kv=Ͷ)�R� ={��;��eNr<�,�<�䰼� ��v� -=y� <h���� ;"�Ƽ�4=��H<,�^=Ɠ�����< ��<��Z�!�=�=*�;:)_����&u��u�;�����Ԁ�F�L�d�E=K><�Ĺ:�����u<��x8=D������<Ɠ�<�#�X�4�8��X.ػlŕ�� -C;�B<��$e�<�,ZT�����)=�2�<����ԓ��L!$���}��h�<�Z�;� -=��5�QQ�9C�8$ ���#�J��<Zb�2��~���rƼ ���� ��� ���<9y<�K���$�S��;�Z=�:;�⳼n�1<$�<֘R<�'�Q�'=i��n�Ժ��M��<�N,<'�7= �Z�����\�e�:>!G!G����<�Hz��޻^ B����u�<�We���X<���;u k���:�WB�"���ׂ�:��!<�9�4A<�e��,�� =}7H=�'�;��d���?ݼ��J< �ݛ;���:`����'<�B<�i���aԼCe=&� �m - ����=`���Y�����i���<�o�<���<�n���;�\�< ]�;v1켔ii�>�$=�6��[X˼Z�b��tj="���]l���<�{��_�J<�?=�nɼ��#��6�<�qz�%�g�F����(�� -H����}k�Ȇ��8@�v1�=>��<�*�<�� ;}�=9��<�9};wF1�ÚM��`ܼ�-<����u!��F���mQ��񘻜'�<�պ�$�8=�U=jd=Ʊ�;ljp=���;�f�5���;��ͧ<�0p��=lj�;���<�B�<.�O:�Sg��*S�J�ؼ�">��&��?�:c�m<�%�;^Z�������;!����[���F��$=���Ry =� ���<�JZ=�?�X��<�]l��囼�f��0t< -��Od���9��F����<1�f:iO>=8��<ˡ#�+�ۻ3��� D<��="� ;8� ����.�=ׂ׻��+�=����>����ϻ���;�x�<��3�^Z?=^n�<<�(��C�;�"=��CE�%�ļ�촼oT����μ��<_��;e��������¼ኧ;ΏL;� ��F��8�wּ�����#a� Ǽg������<��żvY���x�=0�<@"B<�E<}�<�z=���;��}��S�<�_��2d<h��Od=���2+O<������R*<����Q���*%�;�c�<��3<4uf�v�H<'~s;��;M-��#{<:��P�����|�;*�� �� [;�#�P���G�"� <�L =R�.��S=En�;�Y����(���<{�0<�����W <9��<� ;y�X��;�����`�;�+��$���>�7wZ�<�ݻW��/��!��<� �<5B�<{»Ry <��<���"� ��Wϼ�-��W�� ��<^Z��F�����$<*b����<��<���;���q�=&�(=�Y�<&���:�=����B�8s���;O����:���<�a��B��;"�<�lj�ر,��e�;_�<�u0�k��SR�<؋��A�&�?<�H��g��>-�:X��H���O�z<J=?�<�g�:{=j<>�W<��{��L��կ� \=�7_:��j;FBc��'� :�; �������n6=��պTቼ"Q��_���<���;�p�<��>�����B;F������{���.����B�Q=�pZ<��񫡻�tʼo��<��Լ�b��[[�;�N��ff�g�o�_�c�o��}�!:<甼��=�v�W ؼT�,=�B=c�F<�`T��E����<�[����W�@9�= �D� @��~3=�M��$,<: �<�+I<�n6��X%;�l< ��<@Ț< �;��<�"���T���� <��(;7ּ�o�<�ع�<ҩ��Jj�<� =��;� <o�� ���"�"�P&�:�$��W���7<�O�s��L� ��k����<ِ��[<�F�<�Թ<���<�ވ<�=,B����Ǽ��=��*7�y�;W3���;y��>㻶 �F�׻�<���&�?<�PN����<%�<W�:X�=�*���a<�;#=��Ļ_b�:�㭼i�2���<��H<������� =��4: ���n��a���ͼ���ҩ�<�J=�B�<� a�P��K#�kL�;�`T�P�&����{���.��k0���2�����kru<��伬W�&`˼�� ���<���u0�c>$�*��;P�4ޫ<�ka�o���cC��k&ǻ ���=Ш�< �3=��<>�˼>�W�G�n<����MU<�[C�� L9,����o-=f�;�`��=����g�AY�G==B�N�=��S��Y=Y���s.�<"b�<:���T<�rX��P=�2��j�< F)�3�i<�V|�� �_.����k<���<�1;p�0��I����� -��<bt���=�" =��=� <�I?<��< tS=E�ٹDGI�v�r<�R�<�\�_ Ѽ/���<4�T��mG<�4�l��<Yr�I�z<*�=������2= V�tށ<�R�'D��?;L��k��f��c>"�J�;��t;�"�"bO=�-�<򗶼�->���<��l<�ڼTa�@��<���;K_� ��;V�&��Y��!�<����#�t�-��5y��|S�����; ���|�<���h����O�;���;�ݖ���5����<�n¼�µ��r3����;�1/�绂� �Kٕ;w̢";��ѻ�л�����:`�&=��9����K�J�*�ݮp�bw�<�S���R��ě�{H�+m�5b��=̼��b<�T�<�r}��\�<�n<� =��<�#2�;��<��%;��R��Mz����+�Q�8¥2������B�<�Ww<10ټ~����@���|�%���d�<�����κc�ܻ �;Ļ���s<(-����P���ɬ<��=���+��_����;��}<��!yd��7�<`ަ�_.)<��̼g�h=c5��+��� <��<0�)=g!U<�Rl=�<��~���<��Ѽ0T�<��<N&=�}8���=P�<� �<�9 ��Dz;��l;�3�sm����;�.ɻ��*=�+�H ;�����8�M����<_I1��Y=O�����/<��(��G -=>�h����<�w)=U{���趻��;P��;/������=��Ek��� >N�<�� �^:� UO��a��3�ͻ锼�g�<�G�P�^<�j;xػ�zȼ��4����9��mp���)��j�<�:t<;�����<�1��=�ٽF*2���;L ͻ�ꙺ� �;b=��/=�D�<�f�;;��r,:�{b��%�Y��<�-�<�[;a�#=��� ȼ�ڵ��g��;�è<(83���\=31 -=�v����l<0��$��Q�!��1;�����;{&�䣾<�v�+<]{ջ��Ȼk�9��������;���;V��S��;m�9_!���<+;�Y���;s�x����<�ȝ�W��<�=�V%=Zv��Ɏ����<$tN�i[;����K�~<�,;7�_�A_= <=� �: �B> �(`�<��; <=�Ekq=��'�N�(<��=�컕2�� ��n���<�W?��G�<���<�#<�=�;a���� �7j��� ���Z�O�C<��<%�%�0T���/<��=����3;H� �ur'����v��ur�;�`��O�C���%�����"R=�Vv��b!=�?���ҼV��<����_S<���<� -�Ֆ����<��< �i<[���1��{|o��`m<�6ݼS���/;e+Lz����/)i;7�_;���<�?G;8�ͼ��<� ��X쑼��=�ѹf:�b��<1�D��c��;+���iʻc ��{b���I=e+L<|��S�� <�シP�1� ��< �:��<�����Ke<�ē<�=伶QR��j��l�V�L;�%��������ݲ�=p$����6:Is=�<˄���W�<�<�`��'B=@pD����;~ �<ʝ�:66.�(``<��#��ࢼ2Ƽ�=���<��������)!<Zs<�����5�!��Rƺ<&����k< `��ē �����<�p��7w�}JK���ڼC�$��"��!�E<��伙��{���@;͢�:{|o�[]�U�1:�9�Mˍ<���D=���<���<�8�<�!�9�;�� -w�%���.�K�����7� ^»�>�
W�����=+���2��ɼ<�I�gg�VR:U9<���9l"�����Ƒ;}����q���\<1��;dj<����o�<�����[������+=���<�W_=4?E=Z�6=�L<�=�-�;�b�<��߼\�<��/��Ϩ��I�<^` ���n��B�� -$�:IJ<�� �\ H<T==]@��.%O=�=��uh�;��#�H��<�f-�d�=���� 4=�2��=<��C=��<Ϻ<����<�$�� ��}�r<�ԯ��5������ >`��SF�j;aM%����<^��{rü�<l`��K�����_������>�:�W_=��;=�̼�Q=����t��<$v�;{rû�m���<��܅!�;Y�"�ࢍ��e���{����$���͠<� �<�=�� �XVf�<����=�<��D;�<+�=���r����6�e;�$��)ּ���;�� �w��<��F=,�.������+<Rj�r�J<��><�:�&�v���<��<�]< f6���=񠺻�Ѝ��B�<*�:4/Ի�e -�q��q��f6=�:=���1�Q��U<9|�;tH\���=و�<�lW����T�"=T==��q<`�#=�( <�p��s��<ϳ��@=�9�xFG=�+���8<�f$��=i��C!=�b��!����3�w<���<�;/�*����u�K?�:��H<�b -<��������H�������Y��f;��=�4��?���o<����I��4��.��<*s��������:TO�;�2ȼ#U�8�N��<2�<�����Q�X��<;��:T���Y��;=J�4��$׼�����!Pd<�����邼JZ�:�B��G������Pd�TO\�KB;�[!�����^ �l��;���; +����<������!��m�<2`�;yiJ��'=(��<*�A�C߼3)�� Q�C_="@������l��:���������<�r�<�A=D�<��J�֪=�⼈��<���������)<���;vʀ��^�<��;�V<�l2=ø��=T�<_2<��<�A=t�<'����0�<�^����,�`Lպ�N��P���%�<��;��4:��)��H��/μ�C�<��:�B��Bm�:�5����P�2�� -�<� -,���M��?�;�f<;%�:�#�jA�<& -��:�O�<`��<��;yiʼ��-���:e�>=3�;9� <-��� -1�̭ܻ#�1=P˲��ߒ�.��=��:�?2��b�#����{G=Q�-=��I�H��k=�|��$���z��Y�=�=���Of�D�<���9�Q��Sc0�����^%�T�$��%<=l�=/k�b��������Zu��]5�e� =:Qƻ��m<�r���<�-�;{r��g��A��<$=n&=����Ū��ͷ<�=Z��*��<,}i����;O�|�t;�<�|l<ӓ��IS?=�������'5<�{�<#�P����<0��z�����k;�y �z�~����z;"Vj=$ܼ�>C;D=�;�\�/��~����伹<��qA=��"���N�`=��㼕F�n��� -w��!@�K�3=_�������#�9鵹�O+=N�R<��O=���Q�;=��<�r1��f2<,}�;L��K�1AU��`�< I�� --���1���Ȼc�E<�cɼ �";�bY=��<�h��Rx��O�=wB��w,��/��|<7�<�8�|<�1}��X�D����$�Mq(��r��������=��)=2=��;�I�f��P-��Ӣ;. ^=��b�;��� -=��=U��<�+��9<��<�Sؼ�p<�,=��j�l��eB<���<���;\s�<����=A�4<�<����� ̼��\���=ѹ��8��t�YS����F���׼Ca�;-0<~yN;���<��N<+��< -���<��=J�ۼ���<�y%<�ql�N��;�9�< -�?��<�<�7��<�b�;�(%<��q<�{< ������>��>�7f�j^�<����d"���;�MD���M;��E:�����]<�M�;c��<�8ػ�=)��;ڦ�y;<�>�:Dxż��[W�k`8��<+= ��<������;���A�h�l�<�_Z� �<���;���a�<���$�;PH�<�FN<���<�(� �,�]�]<6<<�(��;�m �������qwP=�Z$=�C��:7�XA)=%tW=7#�ܿ�;]㝼6<<���X���<��̼3��<��9*l�dg���<��޼@��<�n2�7���;V�^= 7=�G,�(w��ܻx�+�>�(�!=0%�;ί��mJ�:�a�<ְp<�"�<���7���-���0���ú9�����κ��<��W� d�����='����u<�uK=}��<�C�@�]�ݼ��<��H�R2Q�֨��Ǿ��>�XA����&�:������|,� ?�qs�; �b<_�Ļܷ��yٲ��ۼo &<��,�=-�T�<_2�`��<[�Ӻ�١:�w�W<�_Z���/����9Oj#<��-;_�d�Y��<��<�r��>;�X0<'�;-iֻE&:<�U�;�bӻ4V=��=�Ng<�D"�u����\<�Z$=�iż� ޼0n<^T�;sA=�K�� d�:[�3<c��Z<���<�V��I�<#�����;�8�;�3V<�~ �����m��=>!�<�=� �<�T�<�1�<��̼�M�<�) -=o=Lpؼ`E=�5 <��u�We<�@�;,��;�\�<�N���m<�S�<`�&=��;�$����; wl��~=/ټ=ҍ=a�5��tȺ��[�}<� ��D��;�\=�&˼����S ��� � e����T;f��\ug�6��^�ٺ��<��ؼvh޻��kz�<�~:�W�V=V�!=5or=��]<��4�vϢ<�)�<��<��!�@>��=�� .~�� -�;��ѼB.=�>���=��(J0=G�<>!��8��;1}a������<���;�+Z��y+��ݽ�W�V;�D<' 7=ϱ�;� -�$q�235;>!�;)�U;�)<Q�Ѷ���w�<�?�)���]�<sC;��{<ў��l��O+�4�S=�䘼X^��P��J�*��El�a�5<��C=+y =��=�k���^�v���t{�<�Ƽ������@�<�{�;�,<8�N��yW:H~ǻ�����<�-����ؼƋﻪ��<@u���""����;�lN=o:�=R��f��<��}��g�C�b<�K5=�Y$���N:Iv.~�|�,=���<$�Z<�[�<Ճ��y�� ��<��P��R�<��E�H -"������ʆ!��<�O2�沥<8��;|�;%�� =P��J��� -��;5o�:H~G<™^<���<��5=����8�;q��<�q�<�8�tl��[�!��;ͪ;�P�;J��<�q1���7<��4.~�Ğ��s���`�;��<<}����aJ�!���{C<� �;&]=xH+�\.~<�U���@]<����Pbi�� ��8�<�;�����ih�<�G�;�?��d�d'���5<� -���D��8O���;·F���ɻZ> �ؿڼ�I�[��*ø���;�ƻ���o ���<`�<�{#<�<4�S�ۼ`̻ ��������D=���:��<�2�;=kI�~?���񡼧�g<�ϼ���;�΃ ��û��X^�<j7<�ë�I=�\�=�bP��������@=��<��i�����Q��üfL���E����$�������ֻ�Fn�k����±"=ne���я=7��<�N�<<�5����< �p�@��<١=�<+ռ Ğ���V<�����:��`=H`;�h��;��`��2�3�W�;-=�A����p�g��<(��;��6�Y�=�(w<��=�"��'�9ի�;+.�;2 =�! =�Z�;���<�k<~[������<>غ�G���Ri;R�l<%K���Ƽ�= -c;l';ل����~=�'� ���ļ`�ټG}�<Ω=��R<#F��C=�S9���'��ϫ��������<ɫ =���<8 �<�M�;�aI<��<���;=h�<�Ŭ<�*=l'�=�i��= #��Ȍ =}ݢ<_{� ��R �]����9�9MZ���H���<~�0<�4�i�L=C�<֥����e���ׂ�<B�;�����m<]�ݻi�L���;oH�:��Z;�;H`�<�8޼ː�<|���!�o;W��;�;��G����ļ�t<�z�;� �<��;�u;b1V��<�ղ�I�������`5���#���V1&�D&<^�� �<{q�;�9"H�4x&;�6�:h�"�I�Լ�����<Κ�<��;s-<��1=}�ʼT�;�U�<�G�;�x�Yt�< �=�4-=�����w,;��;j�<�+h�{��<�I;�=<&�� S�������1 �1y��'m��F>� ��L�`<���<���<<�p�6D=��r= Bz��&�5����k<1� =|`W��P(<���;��˻{��;O���<�e�9���a��+��6D���2=���Pߺ73����w�b��<��Ƽ `��XU=�Bü�:��T��#�<|� =������<�=@���<��K< ܕ��ڧ:�Q�<��,������^��/�<�-��z�Q�Ƽ*��<�1 ;��_�Ȃ����a<�7:=$�B�2$f=�=)k�;�>��~,1<"m��@��f�[=�=�<��:Ԙx��2����<����ZZ�<���uu;t��;ΰ<��*��n;EV=����;�v�;��<��)��=.%Z��8.;*����;d�/��G; -��;��V<�6F�&R���e��Z�<2_=��c�^?���j -��'�<8w����<���<�����_�;�����;��<��W�wH�;��;��<��=<�F>=�����av��E;q� <�W�('B��p�:.ؔ����8]=+{�Ԙ���r��E�U; ���;�Q<��=z�>=���+{��P<�<�o[��P��S2��_��`��;���;�!"=k���P��<��=>uJ���1����")���B���B�ɼO���%�<<p��|`׼�k��"G=��P����t���;ѐ��k������ҥ�&u��������< ��:�ͅ<��t��}@:{�+����3�L<H=�,+�_H]<�G2<Q� =~,1�AtV�<������uJ�D/6,��(a<���<P_<�D�����֨E:g���;�ֆ<��=�/�<�،=Vo�<���9��<�1��Ʃ�J��� ��x=��<��<*��<�jڼ��*=���;�K����;S$�<�<��><��?�,���b;D�(�ּ�7��rI���,�<ʖ�=z}�u��%�����D<�u=�7<�d -� ~�<��?��ἇ�<|�;!�3=�7<�A9=���<�7ؼ�A����q����:��#�Mv��0(� -��5��������<�����Q<��=N1<��e<�DE<"�B�ԏ���a�rI���mf<N��Ϗz�k�=�<��<"��V(�%��A��;L=��E���<-��=��b��f�=}�̻\�伍�����i��;Y=���<�ݻڒ���+=V��>� <>l�<]����,ʻ�� �V5��m��<`�<���<��e��!<;��=�o�����-w;P�Z����<�־���\<��G=�J]< M�2��<�9�<�r;�A9�ᙣ���6:YF/= ~'�ah'����;�u0;�<�c����g���Ř<�<���z�<)�<4Y������� B��DE�'��l8�;zΏ<�k�� �< fd�Ԡhlĺ뜼p�<�=���<f;�� <��!;��=&�0�sZỆ����� =����Ř<��<�%��.(�;���%�;`hü��4��` ��ʪ;���<���ϼ<�)�<�p��@�<�L�<�@:�/=��L��ϼ���:Z�>:(�G��`��e98=2�<�zS� -%<��-���N�L�<�X�<�(ɹ�Ӳ;&̰��H*=�KR��_���9�;�_̼��{=�?�fA�;U|<3�y���m;.5�6�P����{:� �oE�c� ������K=l�;��<��<~(Q=�f�2��$�伫�`=ϟ�;�V�:�Z�� =U�<���������|컦�Y;&��<�p�#��X=7���3�DžѼ$�5{==�����ܙ���$�;�'��Y��<;��<�C,�[�=^�<][ٻ���N�ͼ���;F� =Bܘ<�<>�3�������-��:�:<�Z,�p(�x�8z�I?P=Jr��*;����R�� �2��hF<��<ر <�=y=��'��<��G�dn�;9�<����� -=d%�����>�=��+;}�==��&=����� �<�V�-D�:5{==h����$< =�����)�����f¼����F���� ��a���/_������<���<�y�<�̼�PE<�J �$On�K�=HG3��<==��;��=��|8�;>�<��)<�!�<_ -��A` -����:�Z<��C���h��I ��i�Z?$;���:D|��P5�<7�����<��^< �<%��=��+=t��t��<� F����<kM=��C=�M�Q5"=��!=6�������;Nռێ@<ێ�<����Dȼ��_�MϨ<��~���ټ�N[�Ȇ���3�<��;� =�T��=(����<=�����I=�h��x.*�i���|?�:α�;_�<���q'�<�f�Ù�;�%�=����]����;AHl<�v��z= m�����޹<°=�^u<Վ<��<,%�4�����;��=X�<���<��_; n<��;D�w�}���QY=��^<ܨ�N��;;NU<{�?��Y�rH=m�5=�#:Q�Ѽ��< ��9v���;O���o$����°���<���<'�*<-��Ǥ<��lu�=}}�<�]<�d�;&B��Tļ�宼� <��=1��S��;� F�& =�'�c0K�n����{s�f�\~���������0�<��<� ޼����dn <�= �<�\l��B���<��a��Ń�'� ���":�� -<�o�� ��;P}=�Q<�9�<��a���Լ7 R<� 7� =�W��\~������MI��5GZ;�qB;��D'=�3�眶���;V"ջ���;J�r�7 ��<�^��{�����<�MO��W����{�+`��b�<���<����7@;{��< ��;�(�<�J���=W`��/?���m嫼f�<.3{<~Y���;mle�8&���e��:���x;<{2�Ϛ���~)���\�}L7��8^�\q��F�S<{�;H������:��<����`�;�/?��P�;�ﻁ9j;AΖA��Fμ�ܒ;a�����8=]Z���9p<]Z*���akӼ΀�<�͍<)ʽ����9����}�����UVD�;�y=�Ϯ<���F�;�Mϼ�`��,�S<86�=�D'<��=�<)FH��h����!���;�K+�k�:�7̼�(<��E���<"��7� �<�G���6;W/9=`��A �����;��v;dR=�����i�<��<���<��<�ۀQ�����:�=4�F<��5�m�<ێ@=i�u=�[?<�����W<�Q������'�;�%<��<ځ�;e�¼�O�Q ��� -=���zϫ�G���3�b< n�<Ì��b�;�,%�;����Ȇ�<]���/M�;$�tD' ��^g�;眶� ��9b͇<��u����=�n ;W��(�4�Ϛ���;��Z� ��>=�v�vE�<=M�f�<���;��׼\q<=���=�"���[<�<�<�}B=���=t��/X���O�< -H�;���.=P��κ�b�F;|,J���I���"=C�y`J�1} -��$"��=���f_;6'�����:� +�Z��<�I=���b��� -��J=du?=�� -�������7<��<1}�<�IB=�*@=<=���'=�!�;͠�><�y=��><��ͼ��=�8a������Y��'��*�c�L^@�n�_;9����|'�;��U�& ���<��:�*�<^ =E/�;�K�=!�;�vR;j�W<��(<�=�nƼ�=��+��;�߈F<�$"<�v�vbp<�;b�k����w�<,�׻�Լ<�6;;��ϼ�!������\�.� �Ӽ�e�c<�c�;�hM<�<�ez�<�A����<�;���f��<,��� ����<��X���{��iz =� �;p�<����;�v��<����|,J�� ��� ��Ҫ��ʶ�<()=3��<�a�����<�ن<���[�=����mt����'=X�d;H�;�!�<�O<4<�� �T��;!�u�O>�<KU<�7λ�Ni<���K�$����9P���0�<߈F���� ��;�{�<��5<�� <�;�rn��j��ͧ9�F�|T�ɛ����VռCe<�:*=�F�<�!�9�M<�;!�f?���/���͠�<3G�;�k =\&��\���\����X<'��]��;O�;�k =���lIg�L��;H8���;ҥ��y�h�W׽;��|�zb�4�<3G�<�<{Ǯ����;rs�;�1��C�<6�9�f:O��E��i�9�#=��"�IyӼ1��G�˦��1�<�9��}�,���a���<�p�<� ���h��Fy��Tݼ"���XN��X�;)ֻp=l�l黒xؼ�_��@j�=$޻g��r����� �����N %<�h�<�ϒ�&���<-<��<��:��H�b�g�ZL=6��:��Ѽl&&�VQ�:�إ�$���L�<=�;8���-���r=[߻��qj�;-���~=�[���XƼbeR=�c1��tg={>�{�;h���)'����: t�� ��W%���<_����d=�[=�6<�6#��\���iμR隼����mu=�K���m��7 m=���;y<��|�<���}�N���ϼ�į;=3�k�Ӽ�b�;d��;�kT�A����L���w����� �<�"��$������(K���'��;��< ]/=�Iz<���<4U��O<� �:�kT�֕��y��On�<*���1e��Żu\��>�]<#�'��NK���:<���<߹L�TOC�����<���gs�* ƼJ*��Z�S`0��4S;Q^`����� �<�)�;�wh;Ϣ�9輧q�<Ѣպi���;�A�;Akg�*��)�ȼ���ϳ�<��޼V��9 x��84�<@�:��Ǽ'- <�xؼ>gs��;ż�\�'��*�[�X.ѼI��:CZ&��a��9�=k��<�J�����<ʀ<�/1=g3s�n� �&� -=}.��m�;W��#ŧ<9��<[��y<�<{>=��V;p���d�E� �#;U<�F(��g�<@󕺋��;Ŏ=��_��˩��z ��qf;�M= dr< w/�g�;��<���<4��Tb���<ң=;%�:=M������$�<�l���<�������;L~�Dh=��hЂ;q�:XA�Ҥ�;���<&,�<�=���c��<~�@�5˼�+������9�qf<|�E����;��ڻ���;��/=>���e�Њ<���=���d�=�$λ�h˼-q�K�< 灹ӥ�<�� =���=�#=犥gs;�o=<���<�B?<���=�:���<�AW�[4<$�<� ��㈼Rr���q������;ϳ�;zƇ�� �{+�<(.�<��<��*�(�`b���(�?л�\<�Dp�@�Q=�i�;S*�4���8z&�A2S<�9��w=��� E�<���Y�M=����=���)�5� o�>:����q<�Ѧ�i?���p<��N<Ւ�<�+�<������@=�*_=�*�;5�溧�<�A黻�:=3D�<��պT��io����:�"�����fh<�[����i�f������;���:��|==�N;F�z�����A_�<�ʻz��-*�(=����Gɼwӌ�@��[.���K�A�=� =��;��=���LU>����m���3�;�p5=��4<�<�s%<�!��RP��.�;�����4�~w6�=�$�4<�::�Q�"��m� �+=� �3R ��0�� ������ ��  -��@��Y����)�<+��"�;����3qc;�yJ����� =`g;7Ã��, -���g��A�<3�;��<2��u��=���E��< �Q�;Q^<+5�:P�9o�$��K����\�4�d;�g�Y�M9��<��;��0� ����;�)=R#:i����������Kq�S�=��K�Nw�]��<��;C�=C=�M&�K�<�u�()S>O=.!�<��Z�A9�:7�5=��&�"��;Y�fm =�e�<<����P�=�v�<�8�v��<��Ł:��Y�ߐ�<凮� �*�c�X;H�Q���Z}0�_D���J��n<��[���/�A�_C;=�U�<@����6;�>�<�+\=ldüq)y<~�<�3Ѽ�hZ�G��;k4��c�X=�ab=��~��V�;)�I<�5!=O'��K�ؚؚ�XV�Ż�ٻ��D���<�〼챓<� ��;}� ���<�d�E+�!��< -����9���z�<�o�=��<-�)=Z~�� ��<"�9�G2ü����.;���>�<��.<��[�N�<.!�;;�<��y;_C��J�5=�e��h=VT<���;��>ؚ��M<�麙XJ��Y�v"�<��<��;�=PV����=���<��q>O<�h�<��$��ؚ����<u�o`?<�件�n;���� <��K=z�8<@�)=�Ct��B<,�ż0�%��U.=`݆<���<�Y���`e� �?��(���v#�<kм�ާ9}L�<5L��-�]<����s=,��<�꠼��(�챓�h�P<����(-����(ؚ5���<-�;*DZ=җ�:wLv�0̰;��Z8�<�k�;8 ;���a=�<�=�<���q4�<󃍼7�< -�t���� -��;ٞ������$��kd�����(�=�!��.Q;| G�gI:O�b������f�<8PM�����63�[���?��@�;}U;��'�<S������v�<,�=^ �9�����;\ݻ� ;|�u�ǭ ���g�0M��l�;����O�<�9~�4�<�_Q<���Aw=�~���S�R�m;O͐<�Q�.�6�ӕy�f�w�j����;9��<�ϼ��><�Q�:�=/G�&<�Jv��b�>f-=ic��y�=n� -��/<6 ��˚=�����k=�U5=dWͼ�� �gF <�"N<���~�$��xI<��� � -�z=D?�;�/y<���<����[��򼲳 ��Ҽ��?=ic���-��ok<�,ɼ1�����^�dO�!�N�>T<��D<�L-�|�û���G#��%~�:�� r�g�T����<͠�~<��e<ϙ���><�Ѫ���<��<�m��u�׻1�;�˼�k<�w�<��<�Z}��N��au2=̢A<���TÌ=4�������k;��s<3�5� �[��Z}�Q�<�����<ڼ�`z=�� ���e=��f�~[�:?+1�1U;�yټ؏c<�g��<<�<�����V���@���;s���$�v �<�#�<%'������B׼���<����:"�&�%�Y�� ����#=�=(�h=P|;<�� ��h�<�'=�ǯ;P�<�܌<���� ��<%=4�\�6��D?��U8�<��S�/�,;��$�.ڦ��� ��1:�uW�-u�<�� ���s<3�5=�����;b��<�6��B�8��1=@�!;q���4���by<�hv�����ދ�<<��:�ٿ�X�����R���#;\iݼ�����<.��lE=��D�ǣ���b���'�T{����T<6v���"=�;�q� � -=��ټhV�0 �=�=�q�<� 3�垅=�^r;z\�<�����Q=�$�a�Ż,�<KS<�T��o���d�����dt= sq�Hޤ�4��m��<��A��;�Y3<�R�<|��3Fɻ?�W<qr��h��R��\�����:�ف��q�c��<�\���`�;F�j<�o<����+��:�<�vJ��=�~S���X��:����^�+=Aj�:�&�;�:<L�<9 �=P�U�[�;c\���� �­<��<GP�7��<�AB='�5��n <$��;cs��xл�.���������#��R�<1�=?��Ӽ�g���d���ļn�f�t�; W�9+9< -=���<@����VT���:W�H=gz!<��=��C:� �<2��<�� =����Fy��)�;�o����<��G=�?K;'?�<=��o<��;n�6��bj��%+;8s�� ��U�+<) ==���;���;�%�V;��o�<�*<+���u����[�>�#���5�{���<�a�<�4ؼ����C�f��:h��R����\_<�=\Pr��c<��6��5��#!=���� -]��P��=�;mK�����U� <),�<��;��x�B2<#���B�a���<P��i����;���z<,�Ѽ��ۼ��o��$�;W�ȼ$���Ah<�(�`�¼�/���k�&��<�j�MO=���Y�� XN�<]�S���07��&>z�X3�p+=� 1�U��<�t�<ҝ�9̓�y��;�M�,�Ѽ��U<5�)�gz���B�<໼SYȻ{��:�y�<�J�<����fX�[���.�;t�K=��z=�A���C<�����������-J��n1����pٍ�*��;�P�{�>��q"����;o����sh;Wߘ<��e<�3��m1�N��;׿; ��.�;�N,�u(żQ'�;��n;;��<��C=lv�;���:Mq%=��a*������<��<;�>���:�^ꋹ���<% Q;[�V���=��w�ҝ�*�z��9�<׿�*���[�;چ����"�a$���i=J�<�J;�S�X3=xy�;O^ -��"�A=�b���Ȼ�]ٻ�[<�ռ�F����6������ ��5=2F��&��:��&=o�/�+���wZ=̵@���=��;\s�:�� -�:�����:-��;�������<��^���<� �;�����mݼ"f�<�R��� W�� -ݼ��=q�f�jg<�d�<{��ġ�AjƼT����7�:����Rf��#Z<�I�<�&�<�� w�A�<�^��N�`{o��L��;bͻG�!�I�I������z�<{4���M���L��<[<`,�<:��<��<��=pd��؛�<�����)�~�����໨JE�e,������Z缷�-<Ԙ�<�i�=�Ŧ�l)�}�Ѽ�e:<���;�H:�m;D�C��J��M�=턴�<����OG:\����;��=s��;��=^/P=tV=<�M:�9v;S/��(��ΠF�;�|A��-$==�_<�. (�S_�;�z��%f<���:s@�G㼎 =F2��n�' -<���I�ɺ��<'��;���<�i<(��5�=����+�:���؛w��r�;��~<&I��b���N=D���#>会��<����s�ż��[P<� 5<���<�р;���<�����;���P���L<̼̍�M�畿<�vE�bּ��N��P��n7��[�;������ڼ̍L� L�B�<��似D�<���[r��|:۷ռG��9r�ֻ۷U;�Ŧ;�5�<�8Q<-W��̍L��#=)�P<��s=` =Ӻ�#����c����:n7�:�(k��<�<㣐���������1G<�;�<5����<�;m��I <��V�)����}�<�З���;����1��<����>/�TmD:���:�Q=1�u<�hּ1�4�|�������P#�d�"3�j���09=B��<{S���U�O�<<��18�:/�E;�ں������[=\n�<$2=PR=k���?H��Jk<�n;�jX�nT�K��?<]G��p����U =��Z< �f�������fR�<������8V;���Y�{}�;��:��#�,�h���#f����<�W����,<�M��z�<��n;S��>EW�[�w��ꔼ�qt����<��=>EW�m;`��&���(=D ���%j�� -=�𻪍��>Rڸo��:�x�<�u�;�q��e��<ú����z;^ �:�+$<z�<�x��?�D���^�;��<��+Ѽ����� h�jػ���I#�<�Mʼ�k�<�-�<�� ��Z�k��<����螹�F���ܼ�M�������J⣼_�C����<��<*(�+�8 �<)�;J寮K��<-x���=^�<���\��<ތ�;� \<�0��>Rڻ��ϼN�;��<�E<�9+��s���; ����+�汼RO!��0 ��w0=<�l<�;D �<�2����U<[����);]:ܺ����S�<9<5� �i;�y6<� l���� 蹼����Bu�:h8=o�ǹ^-�;h2���$��\���.<�����@�;}/���=�5�<�I�<�ܼ����<C�;(o=�+��� ��]:\��qǼ���욻k����� =9"�;9<���S��\n��Y$����:p��8T�Ӯ=�l�=l<ʂ+���=)..=nT�J� ����<�k�J��<<�r�`�@<{p��=�]�<��I ���r�E׻�<:-;���#�� - �D =��;m.ݻO�H=T�<�s=$<2t���P'=��<*���U9=�qt9�c�����6=��� ���6}���0��g�|c�Y$7<�;�Q+�8V�<������j�"��RZ<� �;+�z��^.<ο�<T��N�<���<�r�<�d�R\$< -#����� �r=���<�a�<�I�< ü/�;.D�<ɶ7=�&�?;{��<�N{���;=l�);�<�=L���k�?��3D�'A���1�*�n��hڼ��t��h�����;��k<���9y��:J<_��<��.��6$��-��*�H����y���o����<�X�<#�-�l��=>�Լ���j� =�+���; �k��uY�sj�<�N -��C׼�z�;��Vk޼�;����⼋��;NR���3޻�=�e�AE<��p���K��:���컗���^k�b�y<2��d�;͉�<�w�;�O��a��MҔ<[I�;��<������"��, <^���'���AE=�N�<� �6�8=��:���=)m�1X<�?��;,�u�u��f�<���� =^�\��%r=��V;�6$=�=�o�<��`=���ϼ��;�3���%=Q��<0�9��5����;�.=��5=���_|�=*ż�5-=]ځ��3�;�xӻҀ_�e!<��+�n�;?d���s����r<;J7;��t<�]�;��M9 =�;���:0乼���<� <v��o�qȹ���<4��rH*�4�f<�o<��u=rH���"0��κ��K��*=;�伐o; �<_��<����G���<�z"�>�Լxj -�_/M�]��S��<n<��.���;Nc�!�j;�yJ�������s;�� �����vn;�����ݛ<�%��$K�:�"ϻ -�p����;�ażB�<�����u�Lc��1S�'�i<���<{ ��'�����l==}�"��<���NB;�<�-��)Bi=hQ=ʼn�9*&�T�<�^�<@ۗ���ԻD�b9Κ��-�;�Ǽ�NH<?'=��<��弯��<�r�:UI@<�U�� �����9�<6�#�-��"=e@�<�*z���;b/�<Ѽ�<�"�<�Wj<`�.=��T�<����e����{:_�z<}PU��]+=�;K<�Wj<�Wj<v�[��fb����9<�i<>J=V�!<�ǣ<�E�<�U�<3�׺R8P<7��ڑ�;�ۼ��-<�q>;D�b��\Ϻ� �;�z��C�<&�K�L���że@���!<�5�j7���6��e�K�,�<)�,������C׼�刼��)�&܎��!��ls�����'�<�ᖼ�,���7��e�9����vƼ��d<3�W��O�:��l;j�;��n�Q�_< �L; 2p�)�,=�C��:��<��.=)m���������]����󻍥��H;HA���ޒ<ñ<��N�j����_��]��:����Ԁ�;�T ����n���Լբ޻I�$:�P���b�+BJ����;������:!#�A[=��<1X; =d_;�]�;!�ȼ��$N=�ҏ��y�ho޻�c(=j4s����-A=.�<���;��<��ɺ�] �t<�|��.���G��G��ð;�l��l�P)'��9�j4�H�ռ�'��)�ꐵ���<�7�;�(:֛Լ��Q<���=�\9��e���J�<���N�֗$�X�C��"�<|b'��Y����B=k��;�6�<��c��*=�^$�ڼ�4�< �<_O������l� ����Bf�6a�;x\|<�U�<�lܻ��@=[ -�f�;7&����=U3�;1�~<�a��켪^�<�&Ҽ���:B� ��=�������:_O�<�ߙ����� ����D��U=�o�<�N����;<�dz<��;=���ʵ<�1=���<(A}!=5��;���<���<�jļ4ٔ<�O��:��:�>��Ã;�1=�����������xR==��<[����] ���a=u΢��-��_�����;֕�=D���������<��v<�L�����5�����;g��9q��<�S���n�<�K=�=���Y�������#��1q<}h��2��I��q�JV�K; �<�;�7_=N�ݼ��=�����,��o�:������N=��; -,ֺi.��JV��;�<{��<ݗ�c[ ���]��h,<�'i=W�^:"h�<�m�;��3<���<)�<� Ժl�l8��0��C�2<��J<���<X�c[ �3�<7&;��<���<������<|b�;�2���=t &���Ѽ g��ߵҼTt��9��=�i<�em<6a�<[:;D<���<��:�ֿ<�^�=|�h�<C���t<+���7|T<]�=c�L�QwD;Bi��*=��C��~x<. ��(�;���<�ԇ;�>=���<Ҽ�l��l���Sa�����M�<�e -�<����I�;*��<����p�%���7�m=�l�=�.4=�@�F��VW_<����!�= +�ī���q�&�<�F=�:=��d<H��Q��X�=mӻ �"��Ր�=D�ּ՜�;�5���<����K=Asu<��z�1=#W�����<� �=J}.���j^�c��<��T<�>�<�-+��V<���=E1=���u�@==�ռ�6������m���a����Ϳ�<�\�;F ���x��?P=sOZ�Gͼ˥!;%�u<}Y��(n-=D�����ݼ��i;@�����B�T=��;���<��μ�����Ov:p�:����-����Q�;�����^[���H�[�<%�u�E��m�=��7=6X=(7B�2������p�%<��X�˥��]Q�W߰�7����I<�,<���;����+��e -�<<8�ZJ����M���<� �;xf�I;���0��<�6q�4�;x�˼�Y˼�� �<�d�GI����<� ���' <P��<�A�-ݻp���-]�F <�o<��5�y���R � #1=���; q����+�'��<V�<��;�)�<:U�;�p�<�i��㆖8��?��]һ+�<}F{<�6�Ñ��(������VW�<\��� \7��xV�|�.���������� ?�<�g:<��9_d<����� ڼ����'G��/���ؽ��M;rl�<:�<��;@O�<�X -��������=:�J�S��<<��<\��<�X -�/S�<��0<|�Y=��<�p:^�{�]D��Eo=H�@��8;y%�=4��<3d�=�y��ʚ�=��pt=ݭ�� ���Ճc��7��=o#�vAI=�W�� -jF�S�%=�j��vy�S�<� -�:�4��#����a�����=m<����񻻻�A<� @=Y1<��O���"�H��:��������(��sɼ�F&=�mq�Ti�����]��b�<6��XѲ� �~������ؾk<��;]i��3C�z�<=g�O�S<^� ��o<�s'=)ݦ�[�<]<��ɠ;ܥ���!�=�vy<���;�Ҹ�;�;S���Z�7=�yC�%�V;%��;[cs���ؼ%�V�"�M:3�����<�;-<=��p�9�\�><����| ��"�;N�=]qz;!d̼C�:.}�;2?�<|3 ���X�[��<�/9;�=�*����X����=�z=�<� R����4��;T�"�%<�q0;<�#��8'<�;����ҼU�!���>= -2���B[=���gϥ��á��!=m� �������X��<���;X���Խ滒�ϼ]]=-����h/=a������<�M��}s�O�:��+�l�!��A{��k2=,W=�;�B=�B���ѻuoh=h �;��_<{�<I��3�CW�t���<0�@��/&�G��������<9�x�< )�<��#<� ������,=�%���;a��<�t��]];�B�<�B��u�T=���<;����V������i�%;�腺8%�;.0i;�������<�Ǽ'��{����M���6�F���H���|���p �;Zo����<� �;�c�;C~��_&����<+ӺiƤ�\��;Ij�;e<;�.;�������Jt<7��;DQ�:���q0�o� <֫�<���<��<��i��:�<ǔ<�`ټ�;�;>{�;� U=��>�;˼��<�Zc���M<��< -��;G�@=�$��&�NFN��F��3�8&�<��#�a�*��P/<�E޼��<}𦼥Pz<�] ;�+C������R���㺼��ϼVH�; ��OG=rĉ�6��<� U�5�v�Hp�<��ϻ;P�{!�s���c0�D���-�/<||���$�pS�<"J9���3� {��3O=�{��}��S�#{��H��9E*<ƣ˼�����F������l��f:����c�}�:<pX<�,��2<��=bv��x=�B�1[�; )���'�����<�;u< {t� =�N�<�F���;a�x<�=�<0� ]�<+��;Qq��<il�6�=��� M�< �<"7<�� ��R=w :�m{<��=�$<��:DR<�\=�$����<��[F�=�=�`�=��;�T�~O��ࣚ<�M �R4�.�$�W= S�<�Y���[`�߼�r#<�*ۻࣚ<��< -肽���17=���< "^��U�02<Q�� ����'�<��A�b<�Ի�C��<���Z� �H댼U��<�琼� q�*>�,�;�ż�=�*?_������d�C��N�<�^�<��v������k�<�t �������M���8<5�;�qM<� =�6ƻ��`��z<�F�=������;�ѕ�G2�JO=_�<�P!9���;���ۿS<�8��܉��ʝ;y��<ˁ&< L�=h��<�U0�(��;�B1��޽=���=%E�����4t(=�a�<��q~;~�;�R -���i*<�5�:ۿ�=X�=���<�Wr��5��b9���!�=���p,�A�������>�=���=�~�����;ht�C�;���P�=Q��ۿ�<.�2=; -�o��"(�9�K<�Q�="} =��:�5���� -���<)�k�R�=�ۗ�s0�<����\T�<\Gܻ�#=-���p:��dA�z�M<괔; /;\T��{���ڒ;ھ���U����T��fW'<�5 =ȹ#�Z�x;�2t=�.����;� �o{;�&<���BNT=<[|��02����<3ɘ�?�Ѽ?�����a+���t:��8 ��ͼ�Լ#�?=߼=@5��`;|����/�a�����F܇�@Mo�\]�<��;!��<�Ǧ�K�|��K�<_+�`#E�;�<��c�����S�<�ˋ<4��; -RN��M���3��6��;��I�͆-��[�<$i��&i<�&-<�������ʑ;�f���+�<#��hu<�bJ��Y�����<=��� ��<�S��;�� K��� ;�9�U1�<��s���s:D8=s����仂3D���^�͂=c-�\�<�:��"�;����(�����G<�=�;�Q�<����bJ=�\t=�������g�� < ��<mp��9;�[<�5:�~f<��<= c���3�;���+�o��`<�ˋ�<�@<$ p��V-=���ȼ�k �� ��X�{{{�^4<�/(�R�E=�����;�B�<��j<��~���P:x����࠻3�<�������o`ٻa�"��=���5�an���/(�?^1���dd�@��� ��<Ǽ���< ׫�}"��6�<��-��'a:�"=f�';d�~�� ��:[�a=+�j�&�s��*��(v��. =x@1��1�są;�xM�鏺FO'<�r9��;���`�5�P�D=�� �BڙG��y�ȃ�<;"ܻ�z�<�޻�z�<�q�<�1�;��.=(d ���\=�~��.tx<���B�<�M=���׼��û�1�;�- ���<�a�;`,�������< ���L$=@߆<Ɋƻ�T�;[a<��ȼ��ؼ= -Ƽ+��[I���S������KS��M�<��)����<;v�<�HP���<A��ٰ�[I -����<�T[;�I�<>�i=��]=�+�=��)��d����[J=�xͻy�I<"=���c��(�i��AS���q�<}�;~=�<������5���e�f��<8�%�o[�9���<�`f��׼��;�o��8�N<����T�����+��{8�>q�;�ֺ,͍<�#F�)�&������!<��!=t>�$!ۼ���U����m�OV�e�2;�v�<��X����q�<�*�=R� -���l�Z��<ߪ{�ukp��d���FO�;{� ,�;}����U\�S�;g���KS�O�O��<�%_���;A�;�V=�ci� E�<&�s�0��;���L���qF���:`?0�b3%�8�λ}�Q<��;�'2<�{�9?x5<����-Z1�=�˼o�:X x:�JR�j��A�:"����C='�h��r<��?;��b<�=�D5=x��<���<ߪ�<�8*<�:;��ݼ���<��:�Օ���j�jS:��"=��<�<{� ��'a<��;^D;�� �h0�߄��O�ϼA��'�=j*=��9�6�0�e"-��ot��ё���&�V�߼��@�ȩz��^��M��{/9��)��r���ƻ�H��Z=𛏼�e�<�ņ�g��E��9�ݴ��&�;gl<���r0<>�i��C=IQؼ�P���Z��m<�A�����G��꨼����dj<�4mq���;óT��{P���Ƽ"�;�y};s׮�+��²���;���j�/=�8��b��^jo�i/�Bʺo��􊗼 -8p���m<��C�sJ��{�g�٭���(����ݼe;�Ya��N���<��<�j�9jS��zO���;ڎ�FO�� �A�Sһ�O�;�<;�!�<31#�����;"\�j�<�1�<��=�~=�����@I<�ZɻR��<g�A �;5�<����;�#��<~�<�V.;�*�;�1 ��,� )<��'<���<�U��9 ���=��ڻפ�|Z�;�jG���˼:g#�������.���V<��м����� �<=H����x�2�o< I��_H;��1����N�#<�w&=څ��T��i -=���:T� ����<��U=����[�5�=VR<�;��k�<88�<��8�#��<� 9;�;ټ��;�U�������q���㼑��m���-=�������;�u��6��;��V�Ӽgq<�����^;�S�<�k�<у�;\<��l���<�5�<_O=9%=˺m;�?;�"r�1ʬ�j4�й�<��:F�/<��T;V�S<>#@��1�k�ؼ���H�f.z��&��ܺ����WA];�:P=}ƺB=l-<6u��w��;]����D�)�8=c+$���Co���C�c�;n�+=�D�<��ֺ�{1:�R�<E;��q=�M�� �ȼ��=Q�g�><v�����<��<7ӻ����D���<�=m�&��9�������7�:�p2��釼x�Lk����!=⽂<%���T�=�=���L��_9 �*�}<����'�;��Q;;�,���� :21;h;���b�<E=�M<�5�;��4~;��n�����L;t���J���� =Hサ���<��9��ǻD�<%��Hシ�T���۸4~;��U=�-�; �= W�O�(�h,�����R >:?w<�{����< ����Y"<��^<��;~�ϼAp�<��<�[=[���H�=<��=�b<�l@<+߈���:�[��t����F:���<���@��<�����#<���H<�!�k����.=� `<�+�F�ꡲ;n7�<���;��<�0�;#�R��ɰ#=���;h�E��w&��v<*�}<Me<<ű:y�r)�<C�*����;�ߪ�� %<� ¼�#�<й����:L5��IT@<����Y�漀*�������;te��% ���^�6u���`ѻ�L���[��1�j��,N��I(��ݱ��P�<������;�"=���2ot�����l;� �:���N��<�̼8�׻l�<>���� �<�1=(-���?K;���=h�E<���#q�+U�<6�I<Me�8ә<��6�b�<]Q>�`��4~;^� =�w;TJ<�[V<%j�<�%��?:���<�����ͻ��<���'to�Z�-��S�<$;����<�^=D�#<t���&�e�5 =&��/Ga��M<ﱓ<�մ<��̼�ʻ� -=�ܼ�"��Sٻg~�=D}��E򪼽7�d�_vX�k�¼��<4�<��7<������)́;����F`��hC\��y�;~Z�<�>��t�<>�<�[�;��=/��<���<ֻ4�%�p�s�p�',��f ��*Դ<���Z䘼F�]<��=<,Z�W�H��<� -U����Fg3<ݞ�<ִ�fY�;���<���� -��T�<[�=�<��b=��)�<{���7��?#=��u��D0���Z=�/��"��)<�G��� -��kռ -2�u�����5=�y绀9�O}�%=��ٻ�T���י��p��� =F���А�X���T�� ����H;~hp=H�Y��(u�j����]=�=�j���÷���a�����<� -+����thF�� )���ݼ��ϻl~ = W��h�q��� =�7=W=��^�9�@� ��;�aҼ�]���/*=+��kU���3��� -���>%=q�J��r�8���<�=Q�ۓ;oֆ=*�R��(u<��v=� -���8��j��� D��7�>8��ﻣSj�����ʚ;���w5����"=<,ڼ��-���U���ͻ�6������ -�����2���<"|9<_-C�� �:��;��;� >=C=�L̼���<�cλ����HԼh���ڏּm����滬��9,u0��1;<�p�;� �<��Y�(�=x���x� -;�@< ���<�)��zD;��<�L̼_�:<�) -�!d<�����<�5I�Ov�<:;��5��'�<�G�CQ��� -�;�$<�i�^�<� -+���<8�<�={<1��<�ȳ<�a<��ݺ*��`���<�5��Ֆ�<����Ӽ�Fk=r~5=:�<�¨�������#�Ag�<؞����<���;z�c�e��;�xT�"3$�w�}�$�9��]���=0����攼�aR�_��#�A��q <_&����<Ť���Y<�y�����x�<&F����<�F��Ո�<�P<��=5Ig�+I=�O47�J;��_�"|�%�����:�����*$}=(�#=�b�<%�p���<�/�;� )����,,�<^.����<��:=��_<�T��U��� ��� =�)޼q`;�?M;s�p<��<� �$Ӽ����l~<�x��=����^û\Ω��x�<1p��S+<�s=���;�RB<;؅<9��<����'���E�<����e�˹H�w;�;<<w�ƨI�P�,�I���� �u�&=��/<��2=� -@��� �u -�<��v<�G ��&�<�>�;�-�(�E<��[����<��@���&=�����=ɗ.��;=��?=h~.�kC�:A=:,�Qj���?y=��Q�W��<�����6,=Й�<���d=�e=#��b��<+�� -�<^�=��ϼ�_< ?<�(=d�Ϻ"Ւ�<�<+�.��C�<���kN�\l��� =�2E<}:ͼ� �;�=ޒ�<�D��P,�F!<�_<<`9��c#�fPC�8=)=�U5��W��X�<AJ���6;.v���=O'��, <=�j�������=Hy����S6=�͡<�1���)=�꫼�ռ#W;�1�;6��<�Z���l�<�׼ -*�K��|]���ٻ��1���=��;�� ��H�<��<�7�1=Dޥ=� =vM�=-�=���<�V@�kN<�$��fм�����k���˼oAa�S� ��O�;p�ؼ�c�<�� ���������S�|?b<����N�D�%<k�<0�m=�U�����:4��Aʻ�,%���!�<^��;�E�;>?�<��^�<=����F��d����I��%��#=/����A'=Eu�<���f;�<'P�峊��vw���1;kX�;<��oAa;�8�;؅�� y;��p�<�ǘ<�Jt�����WW�<:6=�d�<�:��<�=��Qj ����a;��-j�y<<�.$�>?�t4�;�o�;D�;��9�����Hy��Y�ʻ�Q��1Ѽ`$�FK���<"Ւ��b�i��s�;=��f��t<�x��G���I���Ax�]J#��D�;G� -�3�й���?�U<^���#B=k�����USp��4��A'��܃�Y�DK���B��<����<��<�]���$<��<��;��c<�� ��3�;����'��2����%=��j���&��Ú�F!�;?�U�p�к^����:x� ���<���CG�^�qZ�<�\I���i��!={�]�������<��I��:�;qEȼ<��<���;�L"=�v&;��[<�Nr;������=��:��<�;Z�»�s:x2��'�.������<�3���'�� -�5�f�*=�R�<�*�;I\�%ө���<��;j�9��J�4�X=w�<��!�� <�9L<��ݩ�;`eK���پ�<�P�<�|<��)=ֱ.��I<�J ��)лu;f���?�<̉���2�iXA=$*<=�r켤$�qR;�v={x9<������o<���;y��p>�����72=#�T=���<�"*=emI:�!=�aB�Cb.=f�$�ֱ.="��!:�=��[��i�9ԙ_<����4@=��b�Y�$���(= ؊��<�>Z0=��D��X�T�8Z0��O�;�3)=�n̼����g�<���<�4@�H�.�����<�����ʿ�q���<�t�=�d��(�Ym�aԬ=j�<�G.���� ��;�`�B�X8�=�e �6J4�@��3l�<��=}��;,�P�Ag� -�/�/���~K�,�J� � -����˱;�����\=y&�;? $=�?[<�ӕ��-�-�p�z���F=�jüCb���kڼl6���� :Z3=�����|�E�="L�����T��;�g��X�<<��꼹�=��������ۓ<�I=T�;:R2=>w6=+-�;�c�;پ�x���)��<��Z0=d�a;���~��:�;�H���*S��J˻rK7����:YP���)��!�ה���<� -0�"���;�t=R��<����v3�{>��<"��a9=%ө� ��O׻�l��\]M=��C=�l2�|�;;�=Gj�<�T���%<*J� < -��;��:�/H=�p���n8=���!��=��]=I���X�.=U2s�����7����=b&<��j�;N;��=�5 =��h|6<�sR=a���@6�<йK��Z=F=��U���/<3�:�<��r���2��ذS<0vi�� =�淸��� �<Z=�뽼� C<+Q��%Td=9���8‘��ƍ��QM=��=Λ������M�bJ�<9?5;ٙ5�8�'���_<�p =r�<�Q<���x�a<��A��`�����U�1=��9���<����ٽ=+���U2�=s�\��\� =�&P<�:��8@=���s?I<��=�<*�-=�y)���7��<��E=�O�<������Q������2�i����lɼ�>��K�<�l�s?I=<������<�k�� =�S<=��!;7��;�i�� [m��17�oL��� =m����$�� y= -&�����<�<� =-��<�V{���ɼK�=��:�*$;˔;0�=��0�-m��X�;N�)��6y��O�U�1:-1<�� �H-�;&�;���<�g�M<�żj(��۲���̼���;�G���$�;��B<��<����l;�W<�7������6��W�< -�����y�Ӌ�A�v���%<����=��+�(��nҰ<s�A��<�p�;��i���z���2߼��պk__�J����;\���f�;LA$�LA���=&���W7=�۲:Ů伀뽼�ߚ�AC��>�M;-�*�+Q%;��=q����*$=йK�|�޺����8�F�<��=��p�Ǥ��9?��y�C<�<�C1�rV�;�K�����Vռt(+=PU�<�ػ�(Ӽ3�f;LA���g���{�����e� <�qw;!�-�P�Z<I}<@6=�̥l���-1 <�y)=�r ���������3=�5��7��P�ڼtL�1ˉ��l���^#��g��7ٯ;R�����ڻ���>��;��弨>����L<�u�:D�8��;��<� 4��1D�Ȍ��$x=ړ%��&=*�Ǒ�=G�!=1z���������:�� ��$x���=A�%��`&��Ʒ컰}=��=����R�U�7�E�=�?|����<�r<�����j=���;F�N=�Jf= #=(�<= Q= �$=RY�<�1�b�^�^�����f���ڂ<��;Wc��?r��󟻼��ԔV���ʼ\q� gV=8��po��s�Y=�1�<�x\;�J� ݤ��xܼ�$x�" ���y�<( ��9�7����d�м��;��=��k�v�[��=�+��C�<�d�<�;G�);}�n��H��� �;�Z�/�"�_�;�B�;���< �h<�ά���N<��;�J�$��b��q�2<��<*�.�f��F'<�=7 =�J��/��OT��H���jpT<���uy��1>��H����l�<.�<4�<(��;�ỢKW��E,�R�U�ŧM��A#=rCʼ�%鼰Y=�S�$a+��/�<�X<<���$x��,;O���oz�;6�<�l���=��{�"�<��ݧ<�R.<|ֺ����&� <2K�W����)c=��*�� ��S���T<�ۼW��x��<���=ۋ�?�0��=�F���><ﳀ<�x�E���>M=�ɀ������<��f���u<�l�<)껻%U㼅��<����� -w�5蜼,R�z(}��V��{�B=h#ټ� -T;�ҿ�@A_;Yx�2G� �=L�<�i�V�[��̅:�u=�8=v �<��A�K<���;O#6�+�uM��%%<��<�N��@A�< ��<�9�F��<�g^��9)=��;C�K>�O�M�p��<=�_;F<^= �����L�<�޼t�ü��ӻ)��;%�O^,���B=鸁��e<�K��4�<2 -=���t-~;e��;/c -��h��k�Ɩ�<�9<�8f���<��a���(=[�G=, �<#�c=�y�<�cC=��.���f��#��F�B����]�<�2=嗼˥6;+�����ռluؼ�ᒽ|V����<"�<~Q�R�ܻ�ܑ=�$b=&A<=~�<�X8<�����:6�9�t� =��ʻ6^ �4~�<���s���&�v=iVl���+���00�[格�� -����y�]T*<�?;��G: 6Լp<'�� �ӻ}�B�;i�E=�h����D<�м&�=A��:�̼R�\={_�<ުڼ�ц<ǚ�<�]�����:��ѻ��1�v��/�Ҡ�<�mE<�2� ��<�s =A�<�ۈ��D4;X��|�����]�<أ=أ:x�ּ��.<$���ܼ�ռ� M���47���$?������l=����na11�� �<>Ԡ����z����J�<�ḻDG*=�]��ʎ�Ӱy<ś�<:��]�K=r"�<�C�;��<���+�|�<�ۂ=��i�mW�;�<-�r�<�j=�}�;뿽��g�<1R������L�<��%���d�R�����䒼�:ռV� ��I��Xϭ<��P<���<�@��ꄫ;/I<uP��8���8Ѽ���<�* ��î<���~�<Ò�:�%[=���<�:U|G=~�߼�=�C�;� �<��;�c�\�� �g<�ἅ���Jbڼ�x��� =B���B1< rv��.�;�X�<{Ą<�ǽ3�q�}͔��<�<:�;:# =���~`=� ���=�̾��T=UH���w?��r �������;��;��q��i����Y5�#x*;yc����;�X3<Oy��O#=�I.�_�[=&��=>�[=Z0�==V�<+�A=x }�ԛ����1����~`��F�zٿ����u�Ap�;�1�;`KG���%=��2pݻ��r=>A5��vi��a��������<�o�LV/��h:�|�O��1�;oCz���p<� U=�R��D �*�j������<����ݷ�(��C�r�O�*=S?]�������o;�ҳ�(C :[Â;�}u;0�&�+�A���=M���/����@<�I�<��/��A��<��I��a�<�ҳ<]�K��t$<��ּ复=�<+/V�mꜻ�5�;FP�=�M��� �<�"��)7=j�5��U���Ԡ����;�?<0�<���:q�u�y( ; �=��^��'��;�F?<]�=n`������O;�;:�;�Eڕ�.Av�:>��J<�E���!��复�ۻ���n���kU<��v��^(;��=Ӱ�; 4���Y; ܮ�J�3<�g#���<5����eۗ;Z�d:!RS�?��M -<���:J��;�c�q�Q6ͼ^%p�u�!� ������?�k1=JbڼVnD�t+�<���k1ڼՆ���Ӽ�f<�x;π=��ǻ��=��������<#x*�� ���o< i��� �i��|G;b -=# �<>|G���c����;a޲<��ϼ���c������8y<�v=��p��Ų;mW1����=��+���$� ai<�M=���<����� -@;�d��p (���%�� <�A8�����u���#�r�<�@� M��_�;o10=��ۻ -�a�!9a;�U)��Ğ�X�.��wQ���;���<�¼�FL�L�x�~��):-=��U=(b��]뎼_�=E^�< ��;�(�:&�<���:�0�;����{;c�x��"�<�` -�]���y�:Yh(�'{���3����;D�����̫��;ں<��V<;�N��K;����g0���񔼬e;t��<=�P�<�ص<.�;�j�< \ջG, <^����;W�3< -�]���$�,�;ͦ�<{+�<&��<���<�V=�,U<\�<5�� <3p�b�<�$7�[1�:��<[,��u��'���������/� =��B�F@��B�#�vZ��n@3�hܻ�i�ٛp������=vK=nE������j�K:���;6m�$�μ�w�<�;-їϹc��<"%�;N �Tȼ��;N�l<S=�泼^����:��c�v�wF�6���t��ّ����ӡ<�}�<�8��yS�;�sB�[,�:�r��!<��<�U<<��g9mr=<�@<�V���<�� �/�=@�1��L���᜼<��P�����fD��n���;���<�>�L�.=��N���J=���;�-�&�S=��z���W����)ơ=��=�x���6�>bF=W�<���:7G;� ;=�&:=���� q�<�������u�؎=��&�EȖ<���<9#��:f�k.�<� -�:�rG=��|$�����;��_���ۼ���<$��� YK�I=�<�A=��������?<�ɤ:��-��v�<� %��E��X=�Ì<���� �_�.=�&<����_� -=���鉮���C��e�9mK�== -"=FÅ���ټ�C�=k�ܼ�m���i�� =�+�=�x����L��_�'x�g����J���T��)V����p�+<�W=�͸\�p�����r��['��mv���:bI1;X����N���ʵ���x&bF<�5�6�;�ڌ;j3����;�2<�� :#׉<|�}������AĻ�Ta=��.���.=-�Z�k�ܼ������;݇�;�=v��;�������Y��"-=r��k.��� ���g�;���;�]��h��U �;��fG�<>�{<�s�<ÀӼ���<�ѱ�@��!=�C�7�<*�����?���b<��V��Y�=�En�� �Su�:ى�=�*��g�<��=������~<�x�4*��-�<��<�,�g�����<�6<��o�k������<&}0=�J�;�R,<1�K;@��5��<��<�;�������6���FU<C�<3��<,@6�մ<��'�� <�}�� -#�� �M;-�k=��; l��p'�;� p���>�'�q"P�@��(�Y�4��������0;��ǘ!;Tk�����?;��� �%=Q�W=7��9T�='�ռ���;"�6�K�'��nj��YX<���=�=��Ƽ���$ֺ^}g=�0<9e6=�|���;�� =clI=TЏ�Z���)��� <)�1;ѹS<��<E�� ʹ��|�����e�-����YX�q;<8��û���<���=��w=���<�o?�C_�<�<+��8��p�d�Q;��?={B%�E"5<%C#�-��'=vSC�߱�Z�мfǼ�w'�>p漼.8���|��N��V�9�pv���<�o?��`����We �=�=��Z����$�໻\'=���<�d�=�*����;Rv��J?�<7X��~!`=�/ ��L���U=+m;ű���t�)|B�B�&< mǼ �I���H�)��:u��<�02�ӛ =Nx�<��1=�"�;�=��6�XS�;Yۿ���;7�<��<�;b��C�%_�:s�^���.�*� =���6�<'PM< ��� �%���?�n����ż��M�k��;�Ұ��;�t<�Ԫ�C�?9:퉼��s �<��%��G=r��<�ûSg=��ǻ~!`����&P�?��<<��;xD�<��;:7G�]�=Y�t���ͼ5g0=�l�?����μ�=8���b<�鼼�/]�9|<��;V����U=�=�l ����<9�<�� -��$�<�W=kͼ�Do�X��;����#龼VFB<�&yp�;��鼗��a_�;ʽG���e;��ߺ��ɼ���;�d�<.��*=��9;�u-<�<V��7tZ��ǀ;S�ļ6и<�2��=-�м�/ �-0 �<;�+��C;q��d��<+m=��c� �;b���������;߃|��?V<�,�<�&y�K�<����N�<�I8Z��l =�ތ��A�<_;9���;mJ =��`�� =���9�%+�2p<�O��.�Ȱ=�X\���4�.k��wr<�\P�-�P�4����o:a_���u�<ыd��X\�Rv+�?��%�;�ը;�����#�ܤA�w�\��\;r6�< #�<^}��,>��Y�<�#1=Švp����¼:V��o�<��M<5��;�e]<`���d"��|�-�]�E����6�=�&P=��f��0�<� ��� 9�<���;� -T�ѹӻ�m�;��/�w�K<"<�ԁ����;�~�;Mԃ�:7Ǽ|�������p��8=A3Ӽx����x�=.k$�f����Z�:�󞼢K2��:<=�e}����T�<�;=��[=Y0p;��q7����;�A����'=m�4��ּ=�S��ͼ��:��<��<�e <�ܩ; �0<���U��wܼ~���l�#�=<꼀�.=P�L<�w|��q<�q#=��U=�S=R�?< 0 =�A<�w�< NY�%0,���Q��G���G��Y ��֐�O��;$*<�e��i$f���z�<�֬���R��� �� <�w��T^����;��,�N��;G$����!���=��s��S��^��<����F�=�A��X ����&��Y��SV���F��=|$���wT=#69=�}Y<��/��� �/B���<�S6����<��m<�����_�� ���<*��p�<�Г�}�<�k��J��<��>=��>=c�Hܼ��}<������<������;h�=�$���&$<��м0�=����|�������;�;�6%�l�<�܉���<��6=�M=:,�-�N�;�B��e��%N����;�苼Y��V��<�� �A��BO�T���e=: NY<��V��ք�I��:�}���n;<"���м�k��a����k�=0��c<� =l��<�_���Yc�|􁼡���$��Y0p=X��<��P��kr�0�;:����SV<��¼n�żU �<�wĻ�]:L��<���2�5����D$�<|�H���;^���v�@<Bϼi}�;�}y�0�Qb�<%�� nc����@;����򼒘Q�a�F=^;;�ã�5�R�����+��<�T�ij�!��=!��SĎ<�E������D<��.�~p-��:?��o�=9=L�;��,�ǝ ��"=��<�=�'s���I�sѲ<�@�"�;?�x<@�<���:�}����y1=�uK��%���4�<̵���!E��e=i� �b�ʼ`r�<9#��a�����s�'����T������<�����<< φ�+`���ڼ�@^;� �<�Xs��E!�r�;Z0��j獼��h<�"�����u�;�*�<�=@<⮞� -��ǝ =�C�:L=����r;:->�=>��������� ��2V;���������<���ã<�;��h=�����Xe=���;��<�$N9uA�;� ���:�@^����Ѽ����E=w���< /[�:[���"<��?��^=h2�;&G�;�����=��<�7 ��L�;��껕@޼ -����:<�e��~~��՘;'t�&c��=ѱ�<��7��H*���<$b<7D����w�l��T -��#8 =��<����GԻH3��I]D��3,<���pE��T�<���� �������; ���T�;:��-����-�<���� ��Ģ޼u3�<}��9��6ü?W�>���b�w=gM�;w ��P���v�;��༵����<��s;��=��)=��;�����|�%���|��<踲<w�� -�=�4������y*;�ҁ���<<�`M�t��< 1<�� =��1=��=����˙��������V�;gM�<���X�$��L=�B�� -���%+�|��;��=rP�!��<�z�t��_w�=x���<) ���>$��$ܼ/�9�|�U��,�;��";����r�A��;8�:�Իm.w�@�b�=8�< -l�����:�w�h*s<9��; -l5<�����<#�Ӓ =�9��Þ4;��A=wCǼ�5����>��`<&��<����g.<��<�/���J(��tD��uŻ�2��}=�����;ԒK<��Ⱥ ����;�;X�=��?=�Ї; -�[����J�1<���l�Ǽk�|<�'<��ļf������;����W���Q �����;&l���f�H��~��<��~�ct��N<��(=�5����}�#�;[z���^�<�O1�Q�\<�X@�$Ơ���z<��x�1����a<��:aR�;;#��p=<�l�=%��ތ�<�c�"�==5={�h���#����.Q�=U�W= %j��<=���;s���6�J==HO���?<� ��O�<�_�;��ồ��;�< ��e -���<�R�ּ_w�;������<���:�`x��Sb�؏F�� �<�T;t!d����:C ��<��<�2�� �����<��� �����p<���;o<�Q �F�6<�]H�� �;��<5��R���� �!5������BF;����� �<<��<(D��Ҋ���m<�AD<��t<JR=�-#��X��{�h<.Q��]ȼ�|Q<0���z��<}b%��&¼c|<�M��=����:չ��^ʼ<�ݼ�O��)Wh��������+=M�; ��<���j��ye*�6�ʼkL�;�����l���Ҽ�"���+��c&=,�q���H;�_ <���a;Ka���&��Z��=�)r=�c}����;�<#5/��73=�������'=ś�쀭?=@֐��}���f<' ��a-":ۻ�zN�=HO�v����";kn�����=[U�]0'�M׻�?�<���;d�ѻo��:��缆73�gq��� ����I��<~*��\Ƽ -l5���D=mI&�EBE<*�Ƽ��&�޼j��0�l<֒v�D�@<��`����0�켳��<'2*<���;W[o;��z�w������-婼�m���8 -=�4���<��<�8���������;w�m;��żX��<��< %�<�4��]zM<���9���<���<��<��G: �&�=#�<�ϼ�G�;�j;��5=�/|;�3<��;�֑�z��9&A�uC<������������O�p�.���9=nE�<)W�+�]��w�o��<�o��%�)p=�/��q=NeY�f}�;f}�<(��M~�<���;�W�rm#=APC��gI=!��<�=��k-='���� ���^��1;�r=�~���J�^3���{: �Ӽda���o�ݿ�;I�� �I{����K�=��T=kmt�=����AT<40��V�<�5�<$H��n�<2� ��w<ֹ�;�,�d�<�����tD���½�˹<�q�<_�/=�[�<�V��~�=���V���=f��K����A=\<�m�_��:�3�<��<�¢��L=M߼y --�<��<)p��~>h�nj�<��u���< -�ټ�G*���6=B�=~8��a0��c�Ǽ���������<��;� �<��=-5�輲X �{;|����H�K��;�#�rT<��� �Wڨ<�U<Քa�zy��Y�z�����[z�;x�� ���X$#<� 𼄰˼�<���<=G.=��w��(�<�K����J���лp�W<�-�: ?=�?='⼨�;]L���V�<�2����;��Y��%<(�n�����:� :|�s���7��z<�Ӄ�Ѽ�c=|�=I���qU�h�*��=��&;H ���gɼUF�;Er�� ?<<ݼ�ۼ�E��o=��\�&T��%=�d]��Ӄ��{g<+�ݼ*<�S�:\�i��r<��ǻ -����4�;�Tv=�����x*<�����ü�&�P"� -��<���ճ��$#+=�V�;+)<�ͫ<� ;b[J<.�L�+�]�!��:t�C;\�;P��; d�l�;L�;��Y<�����2��)2�;� 1�| ��~8�:�:��Jb�<�z��z�3�5��E8�/蝼a6ͼ^3�<�I<�<���:5��\�1|��\B��@<_2������i;=�����N�P�$<��p<�rP<�;�O;�fQ�R��;�g<����ͯ�YI =&T��Q=;?��F0< -��;��;��Żg�9�^�}2;Ъ�<8�s�9�<��;�4��� �;�=6l���= n?=b�A=�tJ���<$�;4]`=^6޼�Ϩ�o:Ǽ��< Y=t=����6^N� 兼�&O=Jd�+/������+�si̼ �;�P�c������H<�L�<.�~0��f�:�0�<Z4��Y ��:�;���+����<83�=Γ�;�c���T���p=�x���<ŧ�<�)��3;���<&u�= ̶;� �$��0.=� P����<"�,<�H�x���c󯻃@ 9%���x仁�Q���:�YF���y�r�m��å�<�ڦ�&��� -K��!�<��<���;�&�<�-���(=���s����<�� =䀅����s��������/q=�b�<�z�(I<*�ػ��#<�d�; Y�<�՞��Y=�We��B2D;�=+��;�$��+/����/z�By*; ��",N;L̻8D��a�<[N��Γ���/��O�:�c=�!;Oz�;ߩ��|� ��C�����8��6$��/q;���Z���Pt�6^κ7�]<���;�*���Y==G�r�y�%�t���X<� ݺ��n�R|%�}+���û�4�<�S ��tJ������ �w<02����@Ƽ���<��<��p��:4w;� �?'��Q1=�G���6<��<�F<����0��<���/=�!������/6�<-�R��x; � ��f�< -�=�<��KT+=b�������]��)=0=���sż�j<��$���ɼ��<�^{<,Lv��ɑ�ِ� ��꼞��q�=ڍ -�V;<|�=�� -��ħ�<�:mG�;@C=� =j��������<5�ػm�:�k�[���� 2�<`�`:�2<�t���3=��)��D���sE=g����<�J�n:�f�;�H@=G�`;� һ�u<�� �<�֛<�My < ��<뚔������<�)���U��80�y� ����p?=� 0���`�`�|���cK�����(P='Wl�e�j`���=�;�;E8<o<<`O-=���}�;��A����;���c���a���LW���=����ɤg;����e<���;�%i=�*��Y����"D<�^��꼕}�&0~���=h ռ��3�`�� Κ;{�<�c����=5 �<� -=9k�� �����7= �B��e*��B4��췼��=<���;�D���9��Q�(�H;��üb}�)��Aºo��:G ��S��?�Z��˥�):�=U� �[��<�D<5R=��}�S���*�����G?��ou)��*=S��\=���[Z���a�:{FK=uȼd�|=��a<4�<��M�c�;6Y�<�Q"�Rw = @޼��3:>�����+<�\���<������<�� <\:�:,s�"bb�#׬��<KԼq\7��4=ڍ -��?���$�5 %8mX<2ֺ;Èo�,���O�넼�y���*<*��;���;mn+��x���-;K�:�� ՘<��b��i2ûӵi;��e��8�q5I;��#= ��<_� �=�;��ż(��;�����<{�<��<����W�~<�m�<�$=sс���뺫�)<~��幼xX?�F�<�<&0�;pۻ��C=��O�^!�; �B�����YS�=r¼{�=�/������|=l�����[<�0�<��k@?���U�N��� ��X��<#�,����d8���*c;08\�st�<��a��{<�4�����O~�vx{�F�� ���33���j=���Ay�tT��C, =�N;�؁�&ƨ�KF��;$!n<^��H�=Dؤ� -{6����<�}����D�;(�ͺ��?<6�Լ7ڂ<f���_���;��=��c6=)t��b�77m��wW<+�;S�_<���;��P;�&=<�2�<�D���s��i޺�]=T.����м�,=A�ݼ�&��~J�<��=1��<�����L��=+<�5�<���;�s�<�ީ;k����=���Ǽ $��g9=��`�ܪl�� �W)����<��<�i�](P<�J��qr �d�9=:�=*9�O�4W=�];h�����N���ջ��-<0�<�ZA�⇮��e�y��c꠻���;��O<�0!;�G�<�+�����Ae�#S=�����e:�����YR=�����<�P�< %�Vdڹx"<C/< X?���<z���M7��$�J����R�:�p��9K���}�;�e�;=��<���;(7�����= `E������x<�aX��+A��� '�<� ���亨C =&WP<�]��4�/=� -; -G�;}<��Y�;0Q����� �f7��&�n����.��������<���¼ �v�0��~ʼ�����Q�<������=�w׼�d��5���R�+��Au����<��_=L�μ$��](P=��q����;`� -��8=a -K��ɼ��=)� -��մ<�N8����Tμǫ�<�B��u�;Չ =U'���);�TN;o����><��q���!���(-=|n�;�ٷ��_��#LO�Vd�<�i�O<���;ɔm�@b�Ҏż{俼a���JMl;ߌ�;%����� @��"]�Vd�<&Wм�b=�6ɼ�M7�:�<��<�n�<�>�<�O<�����O��a�:]<��������bǻ[&�<5���= ꎼ�,0<�S<����<Hh;,ޅ�ߌ�<&p��d�E;� =��ü�>= `�<�bǼ8�6: =n<��/6�<Z�<-ƻ�8��<�A�p��:�.C=�/2�S��O�tT��z8���.= y��f\� �'<�ϹI��t����ީ�_�;7�Q=濵�fv=��}����=ּ�}����=o�ջ+4E�k)z<L����E<�'=�&� e�<:PU=�<��\�D=x�� 0�<7[�:�_�;���?�=��a��YM<�{6��Xu� C�<���x&��4'��3�;��<��;�B�<�ɼI�L�l�ȼ�0��<�!2=|��U�B<���<�z���=�_��oFb�ovI=ס�<� ��PF�<�ڱ�� ~<�*>���C�����:��<����V����;s����&$=q:����2vS=*M�� �:#�0�i(=��B=���>97���R�xL,<=EO}<���/��pr*<�{�<��9����U�<=3҂<��<Yp=Ę�� �<�k����ۼx䟼2G=�"�� `=�<��=̦!=��;�C����x���=�����= ?��扴:k)z��P��scʼ��=+��iȏ=�� �/��:M���X �;*lj;:��:J̳����M��;�3ٻ�bc9 w���䋼�/���i -:6_��Ӏ#��� =FG?��=�0��I=�Ev<� - -<��\u�<�/�� -��r �6cT=�+̸97�x�=]�;��D�9�&<\u�<|5�<6c�=ּГ���q<��A���Ѽ�{�� �<*��;�B��C���6�;�� <͕;���< ��<���=2F�<��;��;s3㻋�0���z� ߼�ɼ\ j��><��6<��S���K�� P=��><�l�<��x��ի:�0���3^<�46=��m;2G�t'�MY�:��׼�K�k��:_bw<�����B�<�.<]5���O�;�<����<��o�F��;�i�<���<|��ɼCR�<� �;�ۄ�E��eC��I;p>$�T�ۻ:�H=� U<�>�NQ(=V��Z/���1�� ۼ{=L=�'<��;�|<�L=�յ<�֒��g<͕;w��=�̩;��<��W�$������;��3;\=ѻ�ǣ97=�|��c�J��#��:��<�b^;�Q���.c��RD�z�=vj��̀<ι�<� -�<*N!�� ɼ+Dk��=?A)��r=\�<���#F=������3;��=�Y=�_ ��%��Mv:;��_��%X=��v��<�=2� =!��T=hŋ�ז�/�溝\*;v��$�ιԻ.>�< �0�0�¼����k3��|��� j=���@�����;������A�0��<�EL:!�=A�]�����?8=󹴼�.��2�<�|>:f`�י�;\͠�K9������;a��V���z����|<-��<$<�;��; 'y��g�;��2��BJ�M��<�2�;�W�<ř0�U�"=�>���<ɉ�Լ�4�;�T5:�̀�4��;��S��В��:��k���|��;��I��5�:���<��5�(=p �#!��H��ӄ<��<��u<��ŻdA <������<�d��� -���L<�2@<�2 ��P=4I��4I>����,�ܼ��T=���u���J�"=�7#�������<ř0�e;�J/��<:���̻�\ -=[��<�o�i�wnT=K9=��r����;(�o�e��J������ib��1���<�73�9e�h���<��<7a�;���=�|�mѸz����� -=�-ݼ����<�޻<^�q�z -��|N�H�;p���2�<�*;�L/^� -����K�u��;ۉ� -��<5��� < x <��0�9!��;h���dե��0�6�������N,�<������H:@"�S��<��=�R<V6= �ۼ�(��Bj<%��:^T�;���;G$'<)E=U41;b�I�̻,�N<�g�<\� ��i":ԁ�<$<�6!�b�P�:�X:�O2�� U��ZY��-=�6���开�9�R�;�w�<�q�� u�K��f\Z���}�����R$�1 =5F�<�|n�'/�;v$��Y<9���S��Z�v�!�\�5F �e���м�2`��������;��_:`,�<\�'�z4���/�<>Լ��'�1m��;�?<��;y��C�4��C=���j��{ �%F`��m��4��b�B<� �%1����m�<ٸ���Eb�r�=�A}=�� -=�6�<�Σ�\�p��4���x�U6����H��#<��Ӽ}O�q!���(=m�  =�Ж�Ƭ޼��L���#=���U6=jCs�ط��Q<�<��4�tx�:�C�"�,��2��y�_��<��E���<ȭ�<�f/<��6<��n<�ӂ�ZP�����Z�w�]����Ed<v��q!������<��v��S���<<�\m<��#<)���� ;!Q=�Y�K>���:�я�<�<�zV�Ͱ¼�:�K<m����`��<˯�<�wk��y�k� =-4+��Q=ط�<���gݼ��>;qӃ�\�/����<�\�k�<<�3/��bK���<�6=[�ӼU6����;�H�1��2���秼Xf2����f�4< 6=�*��t�;���;j�:��Ǽ~g��i�<+�<�Е:qv�<�}�;`�ۼ~P�s,�_k��˯I�iֻQy�<'Ӆĺ���s:�഻^-����Z��U��� �g��ks�<`=�w��]�<���;&:=p 6��?`=�+�� �<��N��<;W����)�jά<�t <�7L��]x<�p����x�E^�<��j=&��:����a -��q+=ق�<5�|;� =�2�<�_��#�E��<�OE=�+=�z�o�x�Լ�4��<���;���A!�<(�V=H8:��K�xz�<�>K��)��� =#:v;�X�;Z�==pd�;F� �<0R<ݚ���޼�B��&yf< S=�a�<��=:#ݼ<��;p 6��H��5�U<��(=��ֻ��={z�=�E��ղ��ό�`y�;��ռ}�[o��h�Q<�N�\�����Ҽ��<�a�9ns��y��=�l�<ʯB�z�k<ˢ�<�v<��ő��ym<Մ�,]5�G�!;��¼�X�4= -FQ�&:��o��!:�3���O<1�<���+�,꡼U�"=���G�o��M^�x�TD��N0<|S��u�л���;��=N(���i;�?�;;W��MW�>D���<�rn;�\��)�;�7=��p=`���^C<�}��YV�$k<�~к�@2����;#Tϼ�>��`�����<���޼��>��r;al���|=Y��<�ru;.P�< p=w����*�Te ���A�Ť��G�N�>=cwJ����<�X�;U�����<�㺫#�<F�?��=���9��;��üp����Z�o<�y�: V6=�{<ѫ�; k�;�V=<��Z<},�<%��z`1�'��<��λ�S�����Te =��㼒ք�u��<3�;�E�<���;��<)ү��r�= -�<�q�<�������ci��H��W������<��x�(�}������.�ʼns�;ns <����O笺��<~�6<�H�;�%����e{=w�N�P;8=���(�������� -��g�“<��=��V�D�O�C�N='��<"��o&���5=c�<�醼 �X�q<�����<]�!<����q�<��<�7���2�3?�=�ܼPA伃x�S=v�M=��X�c�;&��VûMS���v�<��]�o'A�E��:�1D�Z��=�������� �1T���0��<[�<7�P<���<��<�{���� <Ӟ�<���&��(��<�ܼ��U�0<�0&;m$=hb="�l��sd�c�<�n��ډ�z��9Km.<�K�<��_<��<��<�b � ���n�:!�=C�M<c<���10:�]��2�<�q��%�E<h���i�;S!��� :6'7=��_��b<��=��s�:Jl<m$�:�<ԕ?<�;Ѽ� ����@�H��1ɼ ��?�Jq<*������ � -�;��g�R�h��r�(:��+,%��a�;�ǃ��b��ݦ:G�������b<{�<�K�<�<��T4�<�}r���S�!_�;i}9<�q�:�m�=�Wk=|�;���A<�!<�1�<ͼըl<.��,Ɏ<ԖD�Yiڼ��<�s�;K� ��v�<5��t��<-o ���o� -�*����= -��;})�;#6�;ؑѼݽ<�6j�wr��v��hk=n��<�B�;����瓈<��<���� %���\�;�!��qc:xWE;lo2=��`�:�<�)=܌�<�t8��O)=��Y<1��v�<)U�;Hר<��ҹ���;Lҵ�W���.�'���߻�:�ƞM���?��}��<���ͼx��瓈�� '�ѭ_�ɷE<��<%�==�j<��<�r�����G�i�+#��.�<���;1�$�ɼ�뭼�x�<��V�!�2���<Ʀ=<��8=u欼����;7\;P��Q;}E=����;\�"; -�=��ּ�4���B���M&�;&��;��j�G(*�T��<����]������b�䆼�D<�[�; k"; ݩ<�� �T�f��� <�J�<�ջ����Cм� ;�����*< �h�ǩ�=�6,�̽G=P<}�~�L<[�䭂<�7<S���G�<�^<�N���Cл�vc��^�"<+���[�}ο;|�f<�=r��:V�:���䆼~X<���<ԥڼ�-q��1ݼ�� �FA;Dp ;���<ep<��<’�;�^.�z�]�Y��<:�� !�)=�;�8 -<���<,�N;Yp!<�^<��f;v�D��AZ�Pļ�[U�8��<����Y噻)=������I���@�:���y/9���;*�ݼ�zO�|�< k -<{�����|⼰.�< O�hΧ��A=_��C���y<��H�Ɗ��V�=�$<��\�Z�1;�L#<��<��M;;=��%=��D�3�����:�7�<���;���;��r���<��<6n�;��<&�c����<�pQ:���Q?�l����=�Gl�d�ͼ�7<������<�|-�2 Q�T�[A*:��Z �!9� =�]�;q��p�"�>!}<��%����9-=�� <��ĺB�<�1�<��!<�O=�y ���;��:��Ѽ�ٸ�ɓ�d.���<+'�<0W�;& =��e��⼈=ţd�9��=Qo�<�zO�������><ޓ�;�d�:G��<��L���<�pѼ��5��ڛ���xm�]�q<�B�;Q��1���������;�?!=;,��e]=����eC=�*�����O�=��d<��x�����1^<�n�F&<��2�)c�<+�⻵ï�v͍<ҊY���T=�%\��.<6C; �~<��V=fb���s�=��f���=���g�~��4����==0�<�y�;�\=�Jr<� �� �̒��@� ���� D弶��<�C�;�f�S轻���<�%ܻ�P=���9�/�]�0�oV�)c���<��:V ��eûi�{'���>=�>��1޻;,�<�W�<[L�����<� Ȼ��h<��<�9��ϼ�[a��G>=c��<���6�<6C<3=��ؕ�<�=�8����h��=X��;ڗ��ۯ=M�A���"��Y�=,��oVl<~Ԟ�S2f=��|�ף�<ڗ�:𼃋����� ��*ɻ!N�<�<�s��P����iKz����<�3~�����o)=��:������(%=n����۩����4���Q��%���V<��'=�3��K���xջ�lػ�9�<0Lj<9� -�0���xR<�|��5~�Q��:��<�� =iKz9gg�=I&�CU� :$=�ղ��+���F����:�a�`W��ߪ��=Ԛ=��<�C=��<������H<ɑ�<̍*=.����ZѼg3= �K=-��-<��� ��I9���:��m==��6p-<���B)5�k�u� �=�'�;<R=���:��0���s�:=ј�;s ���m�(^���:���Ib=��E�����i^��'�Ҽ��<�=��*�f�(=�=`=��/�Z��p��=n��M?�x&����d�$=��t����S�$���h����:�����;:yZ��\��V�;E%Լ�� =�TT�A$D<�+Y��"=���ɑ ;K�����qE<$]���r='Y����)=V��;G�h�&�;:�V<�;�/����;`��;��Ӽ��=�m����4�c��R��ؕK<����ɑ�< {z< _<� H<����F2��[��h -$���b�� �<�]���۩;�se�� ;��;�9=B��<�J� = ������<��(%�(^���l<�=Y��<�..�kC=b�=�L��dX-��ϵ��0�|v2<��<�$�<�Z�;I��<�Q ����<Q�<`?�� "�<���<-�<�N��BM�����\��>(�<���;yɬ�b����c�:��d��gc��Y<�,��\V <5͉<��=U�z<�?<��n(%=���<�c��4Ș��v;��S<���r��<��;����=���:�ּ�ƀ��<�<$��=��<� <4#;D3<���L:(<>�r�<��<��;�<�]������!�;��<�)�;6p�<ˈ�;��ً�e]��ܮ�jc�����i�G<�g<�{+��<�O��T<ȼ��$��0�<�j���; ?<�0N��Y��so!=���<�\='�����< De�����tt�;C�X<�gc<��!;�fS��|���O�(%��u���y�� -���K;�<-�ļ<R� �L�0e������E%�<���"���D�u��<��,��r��{�<��=��=@Q�-)��û��Z:G�~��8�p��]��h4 �� ��6����N<]%���E�\�y�B��)���VA�,��;��=�r�<��=��Ǽ�#�<��;���_�Ȼ?�+�%z�n�:��:������ ;~�������t����<��<ꋝ;=LJ�g3g;�����`���\��?߻W -��E�l����<ɉq<�ӺQ��=Z�@���<�+�=V6#<����;[J�<$��٭�N�<@��"��;i#=B�u��Z�j���:��!����#;u�j�X9�^�V=?��mﯼ�f�<���:� _9l�����t�ua<�w=4RS�sܼ��7��ٜ<p��a�l�HU�`�G�����;� �X�1<��&�귲;q/8=g3g�����I��]y����<��#��� =��;�ּ�P�< ;�������U�w� m�.��<6b<��<�c7��N=�1<�Ż��`��<�.�<��;A�����B����#��u]���ӻ��,��c�H�;/>��;����<���E�l<)���<��=9:�:|W��9c�N��:�7;_���Sһ��=<�Ƽ8�����伃�;)ĉ��.�;�K�Xe<�'�Z�@<�7���.���<���<;U�󄑼JX�;����}���f<��<��μ��� =��;��k�:����f�;�gf:�r>;����{z8�T=�N�<�:�:U�ͼ�� �tl�d"ѻ'o��w ��q ����W�?���t�Nv<`^ <'�<�R!������ݻ7c�<�Ѽ�E=�f:ȸ �Ow}�f������w:��K��<��'�@�y�ua��]����XD\�kt�;��-=t��<��<��_<��j=[��������~��!�<�����σ��=�T$<�Y;�$;�Q�<����A=��%�{���<썼�/7���"=M�+��=og���M�<����'�[<�@*���V��3>��ud��|��*�<{A<�9:���,1;ǎ�<�T~�OJj<��9�lR�2�;�y���|;���<��A��s�<��+�<��K�H��n<�����޼���;�Q˼�:=��I��lD<�P�sn<��:̻�D=R���몼o��;^H�wO<��$��]�<�ڻN���9s�??4<�O��)h�V��<�ڄ<���;7�=��=���G^Q=zZ弥�}��g�<����m�?<�6�.P�/=��:�<��,<��ܻ�9��3Xq�!iX��N#�� �<�?��U=�/źt�%�0<̮j�ۉ��E1<�P��{�;`<���j<� ��"���-;��=a;� ��0D�< ŵ�0=��ûY����X��!N<(.��`���M'�lѴ�3 мy�#<w�94<�;b=���<m�_h�<y<�q*���@��.�;H��P},������!��&�"�<�Q�< �;X=��؅=N�,9�iT�J[;L��~�ͼG�r<�Q<��V<��*<��3p<�N���:̞��"���g�G��<�Ө�xV:�c@.=,��,l�9ԝ<����)<6�Y��Xm�z: =�^��8���ʻ��=�GǼ��g<��;@�ԝ=���� �P.ͼ�K�; ���{����<��<��e+��$�<���<�&�;��,�j��NJ�;� �uR�;=����ࣼ�۽<�<�O��9P�����e4�����<�k <`<���RN�"�A���m:�1�;��!�x�[�翐�LFO=� 8��9мg=���;���:�'��b��C�t�y�#=1�[;�<@;͋�6��<�J�5�"���;�_��0Tƻ@��KĹ��5�8����v;R���a=�V�:5 {��x=��,<�L�<��&��Y*=#M+=��:�� w;�,=�ża�; ���<��S2x<�ힼ4{�<9ՠ�MyC<�2=���(�<.P�<�$��C=��*�����J��G��=�L�;��=�s���6�<��컟���/D< ���D���,<�Ч<]u����*��G�;/�=!f.���:���V�&� < )�����l�-��<?�<-���� O���=G3�;��k=�1<��@=7�"�=�;\�����!��<��漢�B���!�4�D�=�$<�;�<꘎��X��|����b���E���q'� �������:c���gA�쿼�)=/�;M��=�%޼ �F<�s���<�� < �I�c��&��<�G���n=���㩖�d����8<֨��][<۩����������E���6=�z�<���<'����i*=��i<��;�EM�E��;��j�k,�<�\��= ��;���;��=��t=6��<> !<�E<�ȼ��k�<�%�� P��@Z=�҂<�%<���һ��Ƽ��: P;��?�+PO�|z2<=� -<�=kS�<�m<�<(��;&��u'Ǽ���;��U<��6��ͫ:�2���2������$=��/��虻�����<�����/;���<��Ȼ�y�#cD�b*�;ԁE�ԧ�����ԙ<*)μ p%<:i����=9ȋ<I<�ꩼ;$�d�/=F�\�h��͕=C�D<��!�8�=K�8�5��@�=�7�0t; Z�����=w�<���B�-�y0���=�]��?��<>&�<������AhV�$*�:���=5��s �=vMr�G�޼t��;R6�U���%����O��;W��;�✽����dۼ; -�<���<�����<à=ݯ=$=��G��:�qX�Wn=1;A���1�C����&������<�2�;U��~��_ �CИ���꼓R�&�ǻG�޼-E�<`��<; -z�k~���\<�fмY��<��=U<��<�1� Jf=��<��<� <<��^�@=��\;�y0 ���;q�,�X5K�uM�I���_�<��<�N�9!�=T�/�n�躨5�U�<���L�����R6��:�ԙ;n�����0<.2��(�߼��ͻ�g�m�滚�<-~�<�� -�w{<��˺���������el� -�<��;(Ե&S� TL���9=�F-:�̹<U=U?1����߽<����?��hOK�NS�;]���t�D�R��1��䳼� ��#��<�e�;K]N<��<��$�t�ļ���>&S<ǃ�,I=�ӻ_4)�zэ<���<�ԙ��|q<\;�z�x:)u7������}(�뇎<�w!�'Fɼ�Y=V�=��j�~�����<�]��I��;�&7�]ߐ;�:=RC=0ak��R�<�����K����!��l<��;=��1=�����(�lEe<��;�|3;��F�6�="�-<��;<�߼Jpc==r��S*��\j<��<à����K<�T�<���"���>�Pο:��P<�����1=�?�<�fмF��<緞�l2м�T]<��Z�7���=�]_<���<��ɼ.��<�]߼A���;R�:w�<2�-<����<��˻ A�<}&�<��<U=װ3<}�Q����;���߻Q�k�����Ǹ:��k�ʟb�av��0�*�.2�<8�5��(<`��y0����<w{��@�;�����6�'34<���<�xC����<'3�;:i�����;�U�<�<�q�;B�-��E <9۠����;ǖ����`;�=�󚹳�C�Y� �hb�������z:���:i�<��h<�W<�5=�K��&l=�uȼ�gE�t�p<=r<:����r}��qؼ/=��<��.�==J��:9� <��@<�O�;����_!�<�e.<�����o��y�*b�;�,��o�� �#��y��<)� =���?)�뚣;�(�#����p6�2m���P������������T]�8�5��Vǻ�V�;�s�<(š��e2�^rk=[)PV�<)��x�,��/0=����`��9*8V<���<��5��<� <���<��V�m���˶G�)ײ<ٵ^���=g�b���v��W=�,��`���DJ������' -� -u�Ņ�<=�û���m��<�[ =�큽H���?�����<=� ��x�xq�ȼ���� =nl$�c��;�̼- /=�‘��=��<���sx�;W��|)�Gn��>{ <���� <��3��3+r�lH�<�f���b�;�`<��E��^�<�N<� �;#�ݼI�$<�ӈ<�:��ڼ����ƽ���'����ż�j!;^�9[O=��B�1�t<�����ϰ1�� ��|��7��h켼]$��Uջr�W�dT�<�K����!��:s<�H�;D7��G�<�=�;���/�,�rf=Lɴ;˶G<��4��2=�V��������<�_��ڋ��^�4:|�M��Q=��.�e�@�k��:� -�<2h�Gn'<׶���0�;�j�! �=���<�3g��ky<�?1;�Vo��?�k�<۰�<�a�:�aлg����J���5=PNz�WBN� k�0�i���;1�����! �~�<�0����s{=���􀼁��<�aP��=�<� ?<<�2<���:��;q����ky�S�;�ӻ�� =��K��;֤=��\<�Ϧ=g<���&!�L+��seV��6/<v�;�|=��H=�t�;:Y��I)=�e���j!="X=֑<�>��S!�.�<��<ߗ�<{��R6Ӽ~S=� -V�/�,; � ��bj<�̺�֑��_3���<�!c99o����9p���;��ż#�:?�e�۰�]�l=�_~<�����@��b�!ɻ���< ���]���U<��<�K]<#j�<3�M<�<�;�ȧ���=4PL��d<��2��n�<�w��*��<�����"<�ۼ4�<0�=��ڼ[O�� ���`H3<��"�3�ͼ�J�;�:B����3���ü� <=�H@�gګ��I����;���;�($��Ѽ`�żA =�[����<9�(�XhB��%�ƽ���l;�h;gګ -<�Jt�2�N��3g<���<<� <$i\<#��;�F�<������<v@���M<$|���(��VO;�V><!���M��; k�����<�($���<�f��˶G<�3�������K<�݅<��$���'������A.��S�<�]p=>�h� j��e0;n�a<�7����<��<\+�;����GAI�lQ��oj��~������<��<���ͼ�_��CżU<^;��T�L� =�� �� =~����H��ޕ�:Ty�<����\�t��'<[�!<&��}T�;޲�;⯮;E=,0=��;����B›<�(A=�2g<٘I;��;b�伷v^�\ƭ�{c���;<��A;�s��L�<�7<�B��0��K><=��U=��|<} �<�1K�/e�<�E�<&}����f�q�=ex�����<4���dI��"��:���<��3��=�k==�u.=��=�|"��_�L�;d����S6=@5��hϪ<����������; -�ɻ��]�} ~<�l$;wʿ��Ѧ����=~���X��9�6=FB������R�����׼b��y3�R���}���;��<����R�<:s�;�GW<�F�;S�H��n:�L� ��L5=m�ӽ-�9=��K��t�A���0(�Ё��h;�᤼�󞼊��<�|���7f�`Lϻ@d ��e�_���x���d�;N��'v��'�����Yk��ė������� ���<�#�<�.�@� -:���b��e� �ҩ�;Դ�;���<3b<��� -�0��<����=�ܻP�<>��Ҍ�<'v;efz<���<�<*��ۖ�;�\=� =8�1<Դ��C��P=Įb8H:�g�-<<8-�Q���ve�<�|�;��»l�I�R�<�q��;)<o��gq�<h����� "@<�� <�a���=�1K<���; �h<�l��X�;��ʼts%<�-,�=w�?�_�J<��b�^$<����X��R�<�>t��<���<;���kH���n� ��;3��<�)2<�G�<�������5@���S*=��0���?=��μ��0w�g��$$.<& =�9>�;���T�=�� � �I=�H��ލ�<�����;���z����=Bɻ�;'=��K�%L<��%�W�:H�<���3����;��8�p으rZ༪��:�0��c�?�q��:�Zt<�w���<�״����;��;w��<�*gQ��!��|�}�bMe;���N�L_�;�r�<���<�)��}I���tּ9��<��v<�"O��ԣ�+�<��:�K.�+���W�1�'�ּ��7��ូk �fw�<ߗ�<��.�ŏ���fG<��8��=ғ�<� ��,9=Kr:���R@j�ױk��[<a�<� =�*�`���Z�8��.�<��=�Y�t<�R�3;p=Ǥ�n� ���r<8��<ߗ�<�aC<�?V< ~�> -��OX<�U<�ؼ"�^�\�L�9�Ei�;g[!<�x(�u� �Ȉ4=!�&�V�<�7�<�E8�[�<���<3+�§��<�R ����;J��;=6��<Kr��=�P���.<�f=]��<�t�w�S�D<�n<@?B<���;�t��z�<�P=:!<�=���ȹ)��:[����ʹ��t���6=c��}�L;�� = m��F�=�����-����;���[���p1=_e  -=�fǼcn���2;����K=�9��FA+����<� ;�����rw�q����E;(�%�3;p�L�ۼ�F���#��ߵ;G~6��»H���~J�8I,���<�P2�'H�;!�;b�8;Y�t:�_<��;K�<4��n����p���aC� �<���;l<�B��c��Bu�$ĺ�)�ic��V�S�!=/?R;�Y=��T<*�<;R�<3�K��+=�㼻X==<��@=�>K<��<��<��O�D#���2�=m���֓����57��ck˼��<V�5Z����<<'�v���� =�,�<<��{-�~^J��~��Y<��-=��{��5���+�<L��°?��{<�i6=]�(���ȼ�T��|=c�$��F<�ۼ���=֐��w,3=����!<����b���'�o�J���(0�<[{&�Z5��گ�<4y��5=�Ω;�2��=�Y�h��<�WF=�!��6��� �<߄%�5�[�&,�;y�5��m�)j��c��85�ȅT<��H;��i=��$K< -�+��x+=3u���΁��Qɼ�Q=h������?���R/�BӼ��i�{�w�g���<�� �/�m=*�X��^)<@�i� -"�<`-�;?���>=��'<�9���i�<���[��f%P<���=%4���麃^�����i6�|���2^"=�M�< �=������<�a= w>��m���)����=KU*=o�B;܈�;'���)�2�� -<�An�V��鲼�7=W���֐@��^�<�[=QM�<�A�<�K;���a1����X��B|=x �<�(���g�<ثP<)��k�d<�� ��9�;�b2�u�W���%=i��<DA<|��:a����=�z�;�=�*�<��Ӻe�[����B����e��U <�<�D�<"z��Y<3u��+�V{�ρ����� �":���; w>��I��X�;�<�;F�W��ֻ:�޻ w�;����+�:F>#���_�^��Ce�����{�E9���;�ɺ<� <�c<)G�<�a$<�컖>���/��Xd;�`�����dG;�V����<�o3��7���<�i�gc=�K+���S��޻�No<����n���w�м7ޜ=�>N�ܜ<��m�����ҝa<~ =1ŭ;N\�����2�=�8<�%�;0� ��a��n=4ma� =�5:�ՙ�<�P6�Eo��P><��;�P�<��<=D���1O<�L��a���:#���y�I6 �7��L\=��4<5��;�);:����{=�4K��~z���p;�g�< �N��x�;�̃<��2�AI<$==Y|�<�9�<$=��P�aiּY|M����<`��= ��<�?=<�ż�Nѝ:����2΁�䟎=�s���]�[�<%}\<�=<��V=�[�޼�Y��Uмh��<�ⶻ�Ӫ��Ŝ<�E<���ʶ�=����^<_�9 ��;T7x��a��o�6�<�/»N\�K�;蟻���+@�<~��< v��:�<�.�<� <�:C��p,��G"��ދ���<����>� =B����$�<���;{��[�4<��=�+�<��}<�=X}<��<�n�;vrJ��x¼�C���;��C��齼[x��;�<�O�N<�ϟ< J����˼��$�h ��a��[:�����hlҺ��|<�^ļ~�L��#��-�<^�<�c�l�=��m���Ӽ_���^����;aiV=�9e������W�<M�=���1ŭ<��1��P�)�$�n�:�����<�+����;�Ș<�%��Ɠ:��=�8V���^�<�2�;�|��y0�;^��;n/�rk�=۲�8�M�D��h��=���6 -�%}ܷ�Z�<�C=��<<� <�1�<� v<6A{���;j@l�9'=��U�<]�� ���S�<���j�<̄�;ջ��E��;�;=�}�<䉛��(�#S����<�4+<���桻[Y;<�n�<�H��<�=6 -<Ķ0<�ﵼ�]�=��I=ٶ�� =�EU<�>.<��:dڑ����<�s=P9��ܜ<�%߼iu��=�����x�ݻ�f�2C����;;&�o�������:��K�h���<�%?�� =���;8S#�~uF<�̼R�W����䉛<��W��1/;Y��`<�QE<��yO�;��;� 4���x<.����<]��<(y<9F;ԯ�<�[�;�/��f<�=�3�� J�<�-$;�1O8��I�0f�;�g<�küi�<��^�3�G=_����<�)��A*< �A<�\<�%�����<��<�W����<��5���(�<�W=C��<�໗���D��4m��w�93��Q������:��P=>����� �x�$<� ��=�9��;/�<�c����<�h�<��+;AI�<�`1;�a=lǚ��"���=��� ��$�;� <������6��żN\��w�<���<]��h�X<�@�?=���<�`I�=S�&����G =�Bn<��� ���+n<�j�=^��D,��'.�;+�<�6�m=G=�Й�&N�<��2= ;p=��2�$<����Sqo���U��4��5��QO={ɽ�O�<�<�k�̆<��L��м�ɯ<��v�%~/=N�缫h����'����� -�G�ۺ�dJ<�<�a�<��m=��<��:&Nм߿����;X��[�H<�;�`Wۼ� �I�_��+E��n<���@�<���;��m�M�F���P=^fW�tӼ|T <��f<��8��.��jֻ�<{�:",t<��T�p���<�<4u ��ǻ��<$�=��Z�y�:>������3D1<�bX���<���:�&M�'��{d����<�<\U�diB���;555=�����ֻZ�':�T��ȴ�<�(ڻ�e�<>�a=Ӊۻ���;J�,<� w<� ��<�<+�?�0�̶�%��5d7�Z���;<�Q�<<(+�(�<�݈��`��^F��;H��BS�[uӼ�oG=и�� -�L���x<��;�aD<��ڌF�>9�l}�;Z����v�%<$��ޞ�< ���^t<�i���ּtS=Oд��3��R�ټ�v{<'.�����<�ҋ<�v���<�D`<��X;'����D�<���;��F�� ����㻿A=���%�1S-9*p�;uQ��Z��<۽����H�Wsἲ;:<Ӊ�;���9\5�D<<�w<���<��'<�#���)<�L�o�Q�ûc�!���ܼ�m�<�z_;(?Լ�g�;��C�핇�E���;����fz�<�v�<�y=���<��N����/=Ӊۼ<8 =*��;3T��␪���$����E�<]����m��+���&�gJ�;nXI=��g=:�����<��ۼwԼ�8���_�<�UDs��.D����<��M�L��;���@��;���<��&��b4�� ��% �*�;NS/���T��%�6=H�¼�(�80A�[�3��V�D�<#��=�<<<߼�`���� l���>;�غ���� �V �;|%|�^(v�g#��19= �<*c���Z��܏V�毁���p�[��;������<��<��A�y�9��[�����A�;nXɽQ<����ջ�-����#�� ����<80A�ܰ�����;ޗ�<� -��̎<�#��%�ϼ"�$<��%<�o�6��Z��^(�;8х����=��;�(�m<��j� ��g�R�$�!��=����p�<~k�<����_ɺ<6 �Ґ��R!�;!G�;��v�n����;�����|G<��$�Z��<��D�<���:#��:��� ��t<����5�=����+J�����({=� ;��X�)�;�5<���;��;�� 8TR��M;��]�<5��@�A����;�%i��% <� =����K��-�лC�U<��<�!�%���Q�|e=|�*��񑭼�; - 9�3�#�E��{���Ǽ�2�;ه�<��D����������;3 ��1Z3=Y���� ���9@�=��|�M�sGZ������ ���;���<#�;n��;�=��Ǽ,J��+�<�6غ�GǼcU���t�:�̡�������;T�<� ���=J�6��]P;�⪼�<��<<�<���<"�$=~�a<�����p�;�H�Ds��ږ<�6�;�h��{¶< �)<�ջ�r�;�RU=]����h�;|e<#�E� -�"����8х<�H��3A�<���2=�<���<ψ =0�׼��[��'�\ ⼪s���i%��ލ<�?3<:Տ��L�; ������A�;��o��:�ed<��7<��d���;�rɼ�R=�-�����sGZ<{���ܰ�<X\�V΋<�,=�mx��ݐ���r=ﵼ�,���J�< �ü���<�)����Ġ���<Ґ����<���y� =���;8��1Z�; ��;@����k�;��&���;�kX;���~����� - �:he.��;9x��Tu��6=<]v< ��#�L���{��#�:Q>6<,��<�� ��KQ��»X�<9���55�8��;��<��ѻ�� �u�=~k��b�*<�Z���)��И<@Ȫ6�0�׼��;.�Z�w�<�<H�?O93A0�q_�p������NK=({����u���������p;=1-�+a�I�%;�<��r=�횼���<�>;��VF@�e���No���Znv<���:�����Ҽ���:S������;�b��>�;�,S�������H)�"��뒆�*�&<��;c�HD=r�绶���^�:p��(�v��GגF@<1�==`)�x�o�A��+<�K����8��=b�9�_�����V���F=H1D9�b�<��D�E�<u><��<����/�u<<��=?�G<����Vw<<�!=�G����-�5�m<���M���<}�ܻ�.C��`ļ��Z��_� =�{=J�<;�=��ǻΧ=����5�<��u�:�&��� :tF��w(<#��;�`%��qڼ�J�����<4��N�=.{�;p\�:>F��.��Nu<����<긼@t��z<��<ԏ <�4���'�H"����c�<��"$����j���\=�o���;Jx��C�K����;Y_B��\7�z ,���n�EA�b�V�E}<�::S��<������<�&+���=aw;����:�A�:��<�#��5���=~h<�5<���z�軄x@<>v6=�D>:\?���)��<���;�;��E��o�< ���%)5�P�ټ��j��G�<�x@����<�t0�N��:�zI�W< ��O�<�4h<.FD�ek��� �;vڬ�6����;�o;�.ͺ�hl<`.L<��;��\�Tk��[�L�#���\y;T'���j�<�(4<�W��"���X��w=�ޙ⼐ø�� -�<)����ؼ�=��(�W���������;ڪ<��< ��*\��ʹ�;��I�=2ݼ|js<��H<�M���H<(=<��r�H������ż���<�$�< -�<�D>�!�<`)�<'w:�����,�(��9�`m< ��<ƕ�<��߸�%��3����=�;�l�=�Z��$�l�������o��iӍ�z�~=�]�;��O�&.�<�:^�<ḉ<l�;N��<>v6�ш��� {̼e[�u���T=9C7���B<0آ�b�;I�����x7t;dR����9<��5Y��8�Ǽ��[=,�(�V� ;�9�<�9<�r&=�t0�S٧���dY<>v6=�)8<6���T�ekw��]���S���ܶ<1�<,�����8�#�*���\�V� �;�k���];�@+;� v6�4��<��Z�G��� �<��I=�=��]����� =��<*9=�����4�<gd;���<�5l<3��;���<^����%�&r�<�Ё��2_������;X��Y,�<�.<�N���T=y��;zd߻tS���T=��=��x�r;b��f��O�����;.�[=1wS;�ށ<<�U=�+�<}�I;����=rYG�^[>����ޮ<4 �98�P=��� "� 櫼[���;!a�<��<�ZN�c�?;z�%�_I��� ;�V����y��us���2=��H�P3�� �F<��<��;���<̀��*�H�@��83��{ ���N<�8�м�ͫ;�#R<��; �(��������V��̤<�F�<$1:�h6���N������u_��� �Qh�:���;��� �<,f�<�j[=�*>���5=�v;4q���żU�l��?�<�(ǻ������8/�<��T:� ɼ�e�<2Yn�I{�;&�û/��Y�;��K!�<���9;$=�Ú<�V༺�E;�= =W<�@��|�<�iT<خ}ɼ�y�<ۨڹ�7M�m*��!���9���< +���#��O;�ż�Lj���<���<�<=���<.6�9;RJh=z�<�R��� ���"�u_��?)�rYG=������;,� -����<� �<|��U�һ�z��z�l��iԼ�����(n<��i<}�I�w#;<� ɼ*x<. i<�ۃ;���;��k=�� =觬<ʰ<1�<�#Һ� ��o������?<�����7�;��<��f<��\<�v<��ݺ��Լ��=�h<�k$�J?P��޻]y�<�����Uߘ��<�u̻h=�j[�8�����<'��e�;��]=�2#<ޯ�;[yw<�z�<�8�<)�<��I]���<���.�����UH<<����D��T¼��<�Y=x�(<��7��������f���E�:�= L�>�g��+=%q��{��<��<-A(���;���;L��<�Ju��<�\�=p„�AK���5;`� ���[;V���=�v>=[��=>�g;bt�?��<�� :�g���P�:�Ƃ=�;�9�:�� =�x`��hP=d@4��f;�� ���N=�"����<�/�<��L< O�UY�i� ��9��K��<}�<���va9f\�L��w��b>��Z�̼:&�����<+����\<"�;e�B��E�)�+�!�,;�x�9!1��w:�:��Uټ)�+=<�E�у�<�M �����Y�<��.=�)=/<�E���ݼ)V<�-�<���:НO� \���N\���y�F%o;m�f����e�м_��x ��D{��{��f&���*<�(�~�� O�<��2<���X�*�0�f9F}��pP�;�v�;T���p ����;:�1f�0�f���.��d��;|���d��M1;�/S�i����p����=�O3���+l�T7~<���m�$<�]; �<��(s�:��[<�2�<^��;k;���<�Z�9h᰻�bj�7�=��:;K�5�4�/;ݓ%;��V;�|��绂�`�y�=YA< �<�Ï�����"�</�;>��;"��;��<֘����#;�-=3�F<��)���<"f�[���RF�<�kf;@ڜ���<>��<v��xgŻ=�.= -�<�s��ڳ<�� ��*=B�0��L]�����L=+����=h(�� -�DZ��w�\���=`p=%π<2 h;vc��ۮ -�);��۵O�_�|=��<�����(;���M(;���&� �gMZ��4�� Y;��=(��;(�+��C�<#�'<�#�-'��<���;`�<Ѝ��~x< (=/���Y�<�T�^�x����'����2=e�D;]=�z=(�+��*�;��d;ѣ�Q Ҽ�H��l/��N���<4��� k��Ć:=�ӛ<�*��}&&=/����FЕ���B<��=E�:&tμ�\<�d��Kj<)�}<�L�=9>���v���|��SJ;�#;$�4<|��[�M=�1�0�E=�h5���<�u�&��t��H�;������ݼ�g`�t��<$5<���Rû�d���Y=��<1�V=�<��)��<�=[�Q�0�I��Eǻ=뢽�< `��%��긻�Ժ ��w�����$=�!<���+�<�8�;<�;� -=���:�H�=Q�<��Ӻ������<��!=��e��O�E�;��û%%J<�d�����<�=��%=�EG=fF��(<�=�a��t�QS����=��T=�,=� �;j��\�޻g䝽[�ͼgMڼ5( ���;(�l������ᬼ�8K<��\,�<4U4�D�<;�М�#K�<��������<0��:!q��6w �R�^;nX����;�����<]�<���:�V�[��<�|6=\��:̑�3<����gMZ;�Q5=[�;g3"����:�a)�y�;<���$�8�MS�q�T!���;��m;��]= �0�^�x��9Y�.�+<�g�;��;�<Ć���z���:��:�N�<�i��O�@<);u�9�g�<��(��,:��a<�Ƙ���~|�.l�<�A�<��(��%Ѽ� 6�30�s9���a�ӣ�<:zE<@�=}u*��k-�A,;g��<�4�����Z�D=]c<&���;g=:�<=����P������]c;��Ȼd$��f�:�gY��+�;���:zE<��;g�޻�U��E��:�u<:��Y�3�R�޺��L=E��9{L ��g�;ds�<�YϺ<��������;g=A6=H �<F��怊��멼�� <%%J�(N�Pf�<��j<�&���?���%� z�_�|�Rަ<�>�;1,< �� O�=��%;'�����;�;<�} =��q�/ -���d����F��<�mP�3o�;���;� =:zż����ɉ;���f�U��^��)<9������B���j�~b���?�� -����mм�SX�����������:����� ;�|v�/Y�<�+�:=��/ -�9����qg���4w��>;=eɺ����i=(G#�X�&�����&f��g ����T���޼1� = n�<&����滝�B�K�)=k�d=���=���A#�<����F��1���.=_��<"��<�B�<�d׼��X<��(�:���f���� x�c���؂���=���<��;A��;�$��ͯ���;=C�.=��<[X��<�9<�b�<| ���"�<��=��x�;����#���d�<����j�a;�\A�Eu �GP�;��<����*�)Ў�y��<~4:�a��Ꞽ �=� -=�H5=ԝ�<Q:=!�����������#�� �����=�So8�X=5���-�<�L=�fؼ��/�f�O���)Q<ŋ̼GP�<0=�Aӻ> -C��K�; -�e v�L�,� n)���#< 缓�<;���ѽ=�c���<�7=�]u<��5�� -!;z(=5�����T�$;Q��;�=�k�<��<�Z�<���9H�F�<��ؓ;摋<���<~�f�Z��"��T�'��ۦ��8 <3��<��6��n<{B;�Be=ĆI=d3�������N<�����><���<5�q�~�c<���:�O~�����G��<��B -�< -�j`��� �.YP� �=Zo��s�=v?�� �(�a<��l��#�<�����<��[�<� �<ɮa�_�Q5�;.�9���; �8��ݼ!��؂�U�V<��)�_ ;!`ûS}!<��<U���m�G��'�^;Z���<�6��o��w����-6�_�W<�v =� -!�uT<;_�Z<��2=���a���6��;�#0�R�R=+�=$`��)Y���;(��<���!�Q<��`=� ̻΃�<�y<�}m;�5�;d����MG<|qH���`<�����H���#=H�,=Dy�;�0��� ̼D=;c=��R=,�U=|��5�����r1�<܍/�=�=wT߻��R���.�� =�@ȼ�^-�GC�;1�<��U�gX<�ސ<܍���W=�܇�������;�J�;�N=�y�<i��y0�< P��%=�>&�$T�� %�0v�:�'��GO��]�V�9�뼸�=qO =��9=Sq�<�j<��D���(���r=Ɯ�Fꑼ��N�wHϼ�n=5� �������a�-����6���g�溨Г<��v=�v����<�M�<��0�<�L�;$Hu<���<�Ѥ�v����f��<��6�����7�!��d\���<*_w����c���\ϕ<���;U;v=��(���D��:u��<���<���;�<n= Ɍ����;�O�<�c8�{��1�μ]4�L=Ɯc� м� �<4�:�Z�;��һ~�&�>n���� =�E���(�s��=@Pûa�F�^����?$=����O��-���5�=͛���Ѐ�����y��+�<Ũ+�t ߻鑖�w���m���z�<���<�N=�6�8]/���ƼxB = P��ѷ��v-�;3�<S,�g�Q���X �<,�<Ε��fk������z�<�.��US���C�9���M4�#f�<�)F;O���*�<�~��fI�6�����n�?\ �o޶��5��;��;��:V)�<3%�6 -�<资�W=g��;6�<�ú<ͧ=�Dº7�<�6��wݒ��d��Q����<��<��;P$t=FU�<9W�*�ü<�dI<�/<���;5H=B,ջT܁=���s׼;����ߴ;D����(=FUN��Ef��,��PV=� L�E�<t1��~<8��� ���� ;�V�<�_<�ES���麟l�:��ɻ&�=��R�A�����x<);J��<��@���y$�<�q<�9=���<���<�u�;g����h��Y�:^"��=�,<a�����<�����$�<��<�<�3�;�C<�8g�o޶<��%�3���H)�5Ȼ�ձ������B��MZٻ�1'�:,�&<-�/<͏���y���k��'�` -�<���<���=3�鼕&��绳�Ո��p�?�\�ͼ��<��;u��;)}6<���;a��]4#82�!~�<C�9=�Ey;G�<��<�--<��<;c�k��=5�t�<\��;�z�;�G��%�J�;� �=�C���ё:�T�8]/=N�.=��=(�<�R�Ո$�>�����<+�L< -.<9Լc�X<2��O����;@�v�ny)<�V�u�{ ;;e'��ź"=g�Q<��<346��H�<� ̻��:�μ{ ���[X���ػs�<���<gX��3ﻫ�<346n�L<��I��z=vf=�{^<8]/0A� I� -���������;�O;���6�6r=��� � -�0<>P&�� ?�����������;r� �c��<�;��<~�z���"�'������Х\=˲5;��<���{��0=�@��E�=�ݼ,��x:����<����ax��� ={A�X}�;��M�?�0�o�<7 -)��[�; -��<�]<��k<������ɼ��`=�=�=���Q�,<�\��(V���=<�b ;?�i<�6=�h����A��� -N��a<�旼��&��0���<��k<(^�P&<~SR��μQ�;�=�~�-Qp<�LS�� G��:��`[�;z`+<�����&�'��d<��ؼFN��ߡd<��H���-����ǟ���º�ϼ쀻!�7<]x� =҈%��Ӽ�$�����;3��?�i�MtB=�܆�Yem��޼�D㼪����ݺ\�C=}ە�Q_:;En<� ���;����1=!`żY໶�󻺳�;?��:�$�<������<�!8=}ە�@�<�6�<)>d���<�gϼPW :����*��z=�:8�� -=�=��MĻ6��UJ2�}�<6*����-0A��5�<0��<���;��̒л� �:C�u;}��=>���~3m;��; I<�.;��A<�-_=�`<��ͻ�/��nw/ �}ە<P�;��8�y8�>x��0�n���;)��FVټ��<�.<�䵼�[�<�Cr= �=��<ˊ�< �<�z=~SR;3�P&�=�0'�J��;L����=���;\ب;c��<���;��|:?�μ�F����< -��o?=z a<�==Q�;1d|<�����{���V�<}�;M,I�]x��N�~;URa�� -N��2��~��o7�����v����P�/�<���<����Ц��K'�=m��<��컝C����<��2�����E�;^����5���C��F<�ѽ�:����ǻ��D�!G�:2 x�����s��;�e�(v|=l�� ���[#g�� =@o�����<��=��N��<��܈�<>=���N=�����:uA=��B<�\k<�ռ�+�=o�^=���;��/�ٽg�g2,��9=�� �?��v� -��Ș�}��7 �<���=<�;F=C_��u<7� -:�T=�3�{�>�?�r=��<�Ќ�뇏<�B��yh?�d����$=�8�7����=���:<83���+��D���m =�,�=w[%������ �`�任��=H�l�߼��;8%��������.�/� �qV<8鿼,�<[��<��=��<_�=@o!=O$�<� =�羹�|�<�sغ� ���ku<܈f<(���N�=���;���,��<�æ�_���׋�Qs��ܭ�<�\ĕ=�i@���j��J�;���Ǐ=��V��1�;~�"�������dc<&5=pI^�����sX�v������{=o�C�4�&�������Y�g;��!=�\&�|Y=e%��F��|^�a�=��N��{�@o�8L,m<�ߖ��`�l��:"*�:� "<8�u���d�}�< B�9[�˻y���Ed�<7�;\�0�T����6����<ܭK;�=�����.=��=��ʼ� �6�;'�|� R;y���f���<�"D5�;� ����=o��;l�=o��<��Q�h��;U��:���;����n�;q��;W�2�+n��� =�Gݼr{��T <9e�;��<�y�< -V������ּ'�|;��<�?5=v� -=� -<�0��2=��u<�R�<R0<<�<_���H\��E�?�!���i;� �;`�d<����-)<׋h�Kݷ<.9=a��:�s�B�q;id+�eκ�����d< �=�I�>�����<�_9� kҼF�o����¼�(�<�<�}����<�M=՛=�|A��B�;�m=[����=+g=��;��Q�̞P��>_�* �<�d�Y4/= r�<���<����ŰN<�=rj6=s�6<1�����ļ��»ۉ -���(� =x�k|�=m��Pw=�Z�;�6�<�|A�% ��u�<]R0=��;�B���(� ��>R�8t%��?�=]R0���ۼɴϼ� -_=BL(<�;��U<���;����; �<�FT� O�<��;lW��=X殼��< ⻊����/���=�<��2�#=R,-��<(� ��5���;M�+=lʴһյ�=�]��0��=�q<6�$��=���;@ʧ<�ZL�iS��n����a =��B=i�3��&̼k|4��i��V�x�=��H���_�>����q����=�jP=2ԣ<�9���h�;�VK;ƙ<�[�:��Qkw�ȚO.���t�:4p$��G��;EP�<����&F���e����@�r�%����m�;�V<���;e�<G�<�:^����q� �軽��.'��=�凼؟�<'k��TD<��^��=��ļ ����������= ��<ܽ���`"1;��=(� ;?#r���<�=�*Z���R; �= 3鼂;<�^ڼs���g��:2G�kH��:m��<�+�⼫�ƺ+?�1l�;�� <5K�9�=8<[C�;>�񻹕���+<�Ò����G�<�#��W~.��.[;m�;7�o:����)J���Q�8�Z��ؼ��M<�^@��=��V��#��|v�<����lW���:Q=���:�� K�;�J;��~U<,�� �c��Ӽ��<�<��M���;e²���.�<����j�3;7@%=�<ϢѼ��=4�n<+�!<�_�������F�';�<�������.��J��ݼ� -R�x -8=�"><���(o뼺ɀ:��ڼ��=��<2ԣ;f��.��‡�=j ���L{����: ����p���=@AJ���<�ʜ�2V���‡<�*���ռ:?ּ���<}#�;����}c=������ʹ9D�:訰:��������"�w&;GN�����<��<8N��ڎp<ﵐE���J<�5< ��<��-<n��Қ�v0�<��=�wٻ�>������<o�<�� �訰<ơq<��<[漖��k<����� ���01|���<��ټY�;gE�=l"5<�� =�2���o=��=��=演;��A���w<v7=~����<��I�x6�e�Fh�����<� ��Z&�9N,U�촖<���;��D���;�y{�5l���0������o6�`8�.���=�Ō<5=b=�ԥ���Ӽܩ��{��j��;i ]�{2��ޚ��; �<@k�<>e���=MF�����+�w��<#<�;��tC���<�� <��y=��"�z'�(H�;j�<��6�ǜx<؝[=j�q<��h��ƴ�؝�<��+��岼��3��6�� ����<���ܩ�;#<:����8N�<���<��=��*<3LͺnJ� �<-y�3{=�#=W:/=W �;g�<8S�K<<��<ܮ:���)<��=\�u5�;��';��=���+^=���뻢 ���=s/����ƻ�ȑ<��M�F� ZռPj�eؼ�<��L�/j#<�՟�������<���:M1μ�՟������҃;��;���P\���% =gȻ�ʜ�j1�<�G<�<������ߕݼ�׼�����=�q��������jl>�N �U�X�%kC� *=]�i=�����<�W���Μͼd.'=cK;�)� -,��ݛ=��Լ ߁�-�!�����=vU��iݼ)��<�JG�>�=F�=�x�:���L'<)�]�Ѡ=N �=� I��&Z�HW?�( -O��"=�5�5�=9V;]�i9%�<���<�ɻ�=�S$<�E1�3 ����;�2<ݝr=ǖ�=G�0<���<�J�l��<�҉��l�WI��U�ؼ�U�?��;麔��n�<ƿ*=��<ƿ�<��=�hM=t�Z�-���-�!=<�=��0���<�ā=4l�<�<� E�n�����P=+�<��B�~<:e=��;q:s���<�3=L'<���1�y� � ߁����=w��;���;,咽7p�;��; ��+���(�<%��;O� ;8)м���1j <�����<�� <�?߼x��<�N��~W�<�-<2�<:e���u;�»I`:=�"�(`���2����� �p;û�<ߒ�;A��=;8�t �h?��6���� $y=ȴ=�<�_�;�s_<��(<ڀ<˧t�������;,�W�x<�q�<8h;$��<�s_=��+=��R=� -�ې<�+�:���<�٪<�7�;�*�����;d����়��$<1j ���f<��ϼ:�<�Ӽe���E��<LJ9=}��� BU<��/�@k�<�|<=v3<�݆;U -�<�|'<�q�@k���ʧ;@z��ȴ��OH����? ��=���<�ZZ�#v��T<�ʧ;�:^���}�;�b�<�x�� �(=�c ��}=�D�����;=ࡹ;f����Oȼ�:�;���"�I:� 5�{b��������üRͼF֏�{��<��1<����q�;/���%��H�"��<�H�v���:�<��g�����lR)<�:��� �{S�< ����}�;)7��22=ʋ:�����;0N;���H��;=�<�*�;�4;�4��z���}�k�v3���O3=�H��3�������-����<���gͲ��l<�s�;�� ��rO�<�%��b��¬��'Q�;�i�<\������S<������<�g��nG�<�s<22��D6�i]�<�r�<�����N<���=g�<(o -����H=5�<�Zڻ{k�˧t��9��c"=�m�e���&E��2|�22���;�)��{k����0��Ϩ<�ؚ<����53<�I ��/��n8=��f�/� ��O<;�=��"=M�H�3_q=?�<�h�'4�<#f�;)n�n-�<�n9= ����<��/=�@<*����,= =���#�:U^�;vf:��I��U6�w��1��< �@=��s��;5�*<��H=����C=��g^�:��=��T<^�<4��<��G��g�:O�|<#:��1=�U�=P�S�⨼�-�<�v�<���on�;{���m<��E�IE�<���;�fL:|�4�M�G^�<͎=_��<���;Y�W=���voc��w�;�<�3�����<����ϼ1�s���A����n���I=x���(�'���Y<��<����?oW�UU=���4.;~���N繚�<�EJ���ϻ���I<�����:�~�4��ɨ<���5�|��=m�_<�fF<��=��/{� $'=L%�<����/o<��T�7$0<�D��m<������&��8�K,&;g#<�u�;j�=#oQ=,�=��^S<9U��� <�e�򋼊-�x���;�v�<��<�=㻼�`<�v�<\����h��U�<��x�V�<�]���~�<��}8�+���F��]�<�m �ҟ�< �<+�x<޸0<��@;*�3����� ��V`���9=��(=0%f�g��< <��w�<��{���������=`���L��,�<�4����<�e�<����>�2����<�� =����¼]�?��M��+U=8��;;E�<�Һ��:)$-<\ �<xt<��;�v5�m~ �,W~��e= ��;K�f�hI�1<������{<� �<��=�VZ=���w��o������������<�� ���]�-<�=�n����);9U;��p��^M��=Ѻawм�;`$����<��O<��+�}�=�����$T<�4��n�;��<��λW<��xt�{�'=��=�^M���<[o]����;�Eм� ���e<�Լ���;͎����A�X>�;܇λBFh�Y#;dN�/, �V��<��c����:�� -=�D�0%漇�6��o{�UU�����%�Wx< -�ּ٧���zF��\���a�0=;k����y�^=Ż�ȇ�����+��;�%���L�<� K���w<� =�(�Sc�:r����y�?c=\e���DM=��R�m�4<�!{�0�Y=Lք�n =Z$<�M�Ge�� ��x?;�B���^r==���σ�<�k�<�^=p|��D��X=�ޟ;�B�<$Ԁ=�;���w��3�G=F�<��Y�U������w����U�=����D��+/�ͅ��d�"<��t��7켾kȻ�u=�&;�P��k�;��w+�V��X<="=��:0&m;�x��S@P=M=���;���d$��%}<<��:�'���������x=���<�� -�F�<�5�P$�8�L=�@�Bջ<���T'=d��<'��*<�-�H1)�:�λ�xʼ<���3�<�Hk<��<�:�Q.; �c�ķ���t,;�k���2��D��3����;7<ķ�<�b]��~��;�^ѻ|��$=Ap����BU��><�7<��=�V��ƒN<�X;Pg�;�!e��ч;��=�5�=�Ӭ��O*=�:�*ɼ[3C�Iɂ<^ �;���<��X�U>����&�<�;�B(�+����'=�ڻ�g*=�� �-��6�J;�Q�����6<".=��s=������2=)��<�DM�v�Y�_��;Z��ķ��p�<� <�Q����W��o|<�����ü���<|ڭ���c�p|�H�2;�5������=��<���VM�;j��<��3�ͅA<��5=}]�r�<<ȼ�!e��� <�!{�؅6=IJ<��aK�<�X<'�>=|�;���;e3��\�/��xk=:� =~��;���;ǐ�<<3�ʬ�;�9�����r�%;��&� �a<}Ǻiؓ�sr���<����|@�����<�O�;k��:����(V��oͶ<��(������x�<��}<��D����9�?@f��.\�`MG��G; ��5/�������kS=3�=\��;/�����a4�ͅ���g���=�(<��j;��t�<6 -.�Y�-�-�X����<���������<*�#�gt�<���:?/��=�;i�%&��u��;C}���˻w��<�ּ�Q��k�;�k޼��a7:� =�*I��9#<�5&=�p�:���U����]=��ƼT��<1����.1��;� �{� =��n=��ͼ��;u����)��<�C;�K��$"=�E�<�d˼�����C;�>Ѽ��|;k'+�bKO<" �:�C� '<��<����:�<�h���=f��������<����%��1$��b�5; Ͱ:�������!�=�L<<�ּ<���m �Us<���<�����绣��<"�D����<<���"��U3�=���OJ�;�O=D�޼�~�;�M���p�<ݏ=�����y�<:ؼ#�t���o�2=PE ��0�<�=<Ҽ��y<� ��9�l9<`<���;\��;/%l�`���=M��eO�Q��=��Y�[�.=&�2��n�<���@Y�]a�<��ͼ­�:+�B�<(���) �;� ܼP��6=h߫<�d�Jw�������\��7�<[b<����}~b=@3W<�M�>;�����D�<�n�� -#�R��:իx<�O=OJ˻>� -=B�g:q^�M���3�s��� �/%�:�{��C�;�<��=)�K��������:�᳼)򏻼����;NR���ԻO��<�_ =PE����;�܈�7��<���;������\<ʎ �dF�<�#�= ����P��.��n;���:��$<�d4��� ���<�V��$<�ȼ񌶹�4ļ�%���Ca<�gW=󃭼�~�W|Z�H�<��~���;��;ꫯ�X=W՞���6�'L�<>�<��`�>��&�.�ۼ��!���<���;�=�"��;M�;@�<�4ļ̅<��<��_��<�F <�=�<�9&=y>;"�D;�̻�Х�Fnﻄa�yμ�b<�S�cGq��ʨ�38=y�ڼ�;*C=8Z�9�y�<��E����,:���`m��)=LW�<���I�;��<�L�^�%=ܐݼ����!��;>�;H�L�Ѽ�)"�� ��`/��� K=śa�G�{=��9�L� � �=q����=B������;��T��ü$�����x<=Y2� G�����%�<6�3z����=8�%����= ����� ;��w� dv<���:D�ͼ@0��a�;s:J=�Z*=!�<�n<#eq;-׻�t�9=�d�*=!$;=�ȇ<�G =�� =��;��$� � =N!��Q=5*����<b= B��1��������/��b��8S�(�&<���׹�����4�/��/�7=Yٱ��"�<��,��o���b�����<{����!<^4�<�I�=�B$=�)�����;K�w�g����6f���:A(���ޘ< ��<�/��� -<]��<�"<��<5�9�y�� -��<@��Y/�xs�:R�������p�<ߏ"<}��'=G��;e� -��kR�]]<����(/~�����:� <ś� �N�W���ѽ::�� ���6�#C�6�Og�s^��n%5��U�k 7��Ȉ<� K��|=��F�MJ<�Z,�Z�)=�t�<^�֫���o�<����B�<��b<��7br��������gh�۩;[��;��=�"��C�}=����p�< ()��cx< B�=<�»�|�j2��t(�<,��fA*=���W:�.�<�p�<�a ���=�(��A�<�9�;���:�I�Ɩx��ɂ<������<�fi=��<��@�8��;�gf����;1[��8U;��(<6�<�TG;�fi<(�&<�E=��K=>}���J�<Җ= d���=��?�0�<�0w;c=�<�<,�$;��j�T%�+��0y� i_=��6�� ��%��c<���< ޛ0���ŕ�f�<d���ݝ<�0�\�<~���� ʼ~<�����_�;���\��br4����Ǎ<'Ǐ=உ;�);��;Cض<���;�E�<�t*<�"B�B#?��,��)�>�����2��ƒ���y<��мP�V��|��a�:�Q�[�;�*�<9fl��i�<8D<8k�;�����;�>�z�m��s�<�|;d"C=�1r��I���l<����һ:��ؼ�� =����`̼df<,w�9_ ��Һc��� <�&�;\:���w:�1�9d�=kȼ�C{��Nw�jF�;@����W��N{ <� *��7�=�=A�M�$=<ҴR�j�ȼ���<�;�>�:�+�<9����L�N�3�N���#4<,�&<�8��5�;�M7�p�<�v���{�%wV���=߂-=j�#��?��:��; !�c;��d���B�H��:���<ĞZ<��;����=˽*��s����ʼ��t=��:���=�V=jF=�eJ=xM.��18����<����T��~x��'���c1/�c����c"л�Ɂ�U�<�N�<��6�&�s;�Ҿ�����@j�<�|&��C���,����OIy<ۼ�i=�z�<���2��VT��2Y�~�<%�@<���;��<��ߺ�?39OI��*=�9�ؗ<+� =���\�<� c� _:��6�<��o=�L�p�;�N����c� <�Xa��^<���������<��3�HRQ9H�,�<���9-�UhI��rj� <�+߼��<\}�;��;<N@=�z��pF<&��,:�; ��;���:�֡��$=c� =���<���;���<\�$;���;HW�<2��@`�;��� s��\x�;���;�#����<�L���V�\:=����\�kk� �<2�=@��;y�w< s���J=�ۻ�o<2���q�<�'��2<혥;p�=��P:˸5������e<:�<+��<�^:w��;2O=����a<����g�ظ��=HH�;,�<�{< -�t���Q<9�%�ķ�:Ҫh���=q�<� ����<����$� �b�;OI��Uw��������c����e�9�c]�퓰�jA �9���p� �r$���]=qB��,�ټ���;q���S5=j�<�� ;��"<�6-=�<�j�<%*�;�Ȧ����<�ñ��f��t =9d;j-LX�혥������k#<��㼔��;V���,:5;��;���;:�;<��-=\}/<(���r����c]���=�#�����V^߻~����E;�l5���=�E=Б�w<=e=ߚ=�S��v%�җ)���U�a��<��<�5ڬ�����h=� P�|�t��㺂L�<·���b�<�&��_Z��Iټt��<���< rM<�,=�A�?c*9�$G<���w<�PN=��<���hF�<��E�5�k=�u�'�/<`y�8bƼH=�� -��v�=���;ja�<|����M<�}w��*�;K���_�<�h�h��<��!9=��E�׼� -8<2���뼻�ʼ�� -� ����p9��9�\��ib�K�<�y =�n�<�������]� ��'�<���<�h��+<�=E�A=pU�<9Ȼ'x�����g�V���I���b�<��<�9���<3�i���ú�C<.؏<�~m<�0@;}f�<��ּ���;�O*:D��:"�:���ʼ[%��� �b��ڵr<��9<��̼�=�\s;����C�~�<�ͼM��!�<��<p���;zމ<̕ <]�̻�����fO;���<���<'�/�T��B<�<�+���vֻщ�/��l:~�ͼ -2���S���h�����p+="�/����9d`U;`�'�v�m�����;p�6���;��<��J���: :>=X�<{D��޻Q�����?���<_��M�<= �;�ؼf�;� -!�D�Y��{�;�����-=SԼ�/�<�� =��?�"S������><�L��{����9�/{����/�դ=���;q�<�S��J=r=�ⰼ�1L�?~;(�y��r=D���<8�W����<��=H3=mQ*�\�l���=ۃ��� �>��<�/b���;<%5��]5�>��%ھ;� 5��=( ˼�T�%���bӼH�E�DZ��rһ��=<��'�����t�����X2=�̮;���=ZBP=�9޻5�ۼ�1 �io���ⰹ>M����<^��<*鸼s��'�<�ǰ<�1�u��=�a<��������� -<��`���?���k;�E�s�2;+�(��N��b�ֺ]0;v�><ۣ��-3�����:#�ޕ=�Y<�:�6�:��<�����}3����<��[ʟ��5�����<<�E$�{θ<7�� -bN��n����=-�&=��B/��>=�²=U�5=�F)�L�1�4Wͼݐ�=��\�X=Ҽ�쌽�?���l�<�h���1�<�D_�M��=A�ͼօ;|#׻|#W<[o^�vB� -bNw=������<�1l<��; �<]$<������X79�������T��Nz�<4�=�r;MGn��I��`VH�ԟ ��i����M<��P���)<�;h�xG=:�弋xռ���4��<�ґ��s;���+�(��D���<��������;�2�<�C��w=Nt�;�6���|���׼�5����};��H����);����S���x<(�y=�t<9���w��<��μ�{�<�T<��Q�,q��<@R��ٮ����I;r8� � ;&�.<���<����bӻ[Gμ}�6��2=s2�����!�f��<]���t=����=��<2ՠ�ΐ&<��'��9F3��Q���i<��,�~�Ђ��v�����^�+=���;(����1��4W�;�!M<��;�:�+�(<�&�M�<�{�<�nY��K���! =i��S��9f�;XB���˼ܸ�Z@� �T�ߏἿ�<�5źb�<ԟ �ۅe<�^�;�#���<�� �t_;�:#�� -�<�=�O�<�O����<�= ���g��n�f��N�ۅ�V�%�\�l����'��/�;s=��_=�����ĝ=�a��S8=lb׼֐='8�|�=����1�s�fo<�|@��f̺n= =�$�9�<�h1<�]=�Bq= -yv�9��<��t<��������N�N\/�vO�ׅ����� �n<�V��CC�<�1(�"2� !X�3@:=���<�a��*��.��<�K=!�9~.b���û�3�=��;;Yj��<7�6<��x=Gfz0=P%&�X����=�O:�s�9R0�<�$"��<7ݡ=-�+� ���o:���l�"�J���Cz~=�20�r����G=I����3���؅�r�<�zۼH� �&'2� ��c���8*����=�s�<[>=�;�:�0$=�$�ZI�:�=��9��=���d�'<�U<:����lb�<�G���|����<哕;vO=,����;;$t�;� 5������(��'�<�i�9��"=P;�2W�$E�Ʈ���l<�|�:���iL�٦C=g����� ���e��?��:!�ļ:��< ^���;��-=['=�1;�$=�<-�+=P��c>�<ʂ��|.;�_(:��������<��<�E^<��<�V��= -!1= �>�&^�� =��<.��;q+��Q;���d���'����;���U�<ʹʼ��X;/�g��F�<0;4�=z���f��'S�<� ���%��3�;�����%x�'Sh��ܝ;�o�;��<���K�}��,�:q�����;q��<���;[�<�*��ûV����0�T�=��M<�j�y.��r ���r'</��L���<�h1�(><��=xp������<�*�<%����q;2l�9���=��;J���!)�[T�< �;8�< �<��<�<�m -�<}9\�`��<`�< ����o<y��fo;�㼨���x���<�\��戛����C����C����K;�"=d�'���< ,��f��<=d��s���=Q=��:,�U<���<*2�; 伅s+�_��� I�>C��{� -=�:=;��=q+��c�6�'==��;V�9�˴�M�(:�l�;v n��>7���<�J=�"=��3� ����,���[=�%/<�M�����]R����;]�>��du��d.���<���og[;8=�X��ki�<��ѻ� ���q��1���V�[μ�� ��,�<�r=@t:���Pe�� �<���:G��)�<�M�<��H��� =dT�<�pG�� �;�ղs<�6)=�9=� �ʳ�����;5��<��;k�y�97�;k��';��p�;N�<�m/=�%�/��`<�X<��r�B�^�v��Y�:4�.��-�v �<;޶;�q=�+�����F�=�^E= ļ� �<UY�Dr:���A��ތ;����T/�<�٫<���F��+I+�;:,���Q��M�<��P� SI�̎�:�+<u缟��49�<�(y<��D�O�)FZ=��<�������<р�iRs� ԭ�I(\=��<{����<��<�/�oƼ��=I��:>)�i9<���G8< <��f��Oƻ�;�(�=��<2"�:T��;��=x#�{�O�D����P���T';�٫���#=�L=��H=��K��-���T�弟:^<,���@LC�0�<+]����=0����;v��<Ѵ���&�<���<2�=%h���I�@�m<�u�;�P9��:^= 4�{P�U��k<��~<�K�� �s��`@<-�<�5�;��G6=����k�YA�%H���!=�~S=��!=�n7=��=] =���<����P����1H���3=)Fڻv|C�]?Ի��r=�8��R@��oG�;YA�i��<���~S���3<�&"=I�<Ѵ��'�MNS��͒9ò,=��7(�{�9h1�rj�:��<Ê�"��3X����0'�9��=�#�<�}����<@�;��i�%hx<��{;�݄�)Z:<��j=B���6����j<섧;I�;�#�;{���m0���������<0�����1�P�<���;�\��4񎼦�<>=�������[��K���o�:���������͒<�\����Z���⼼i���� =�{�:�b���y�;G���4��T�e�Ӽ�Q�<"ɇ;Ȑ���Q<���$'�.�=�ߩ�"m�49����=���< g�����]g� k�|���H<�%��`�o<@LC���"=5�N��9����_<�G���JP�5Y�;;��<�F0�T;{;;��<�>��0' <�=��ƍ=< 6�< �����i��<�;���+�{Z%=�z�b��<�����<�](�D*�;�*�<{P;T/��e�]?���³����<`� �s����;'#��rơ<;�=�%/��K�]g�������]��<������;k!��X�;��P<�'*=k�N���*��K�<�2� 6���+=���<�`�"����,<�8N<}I��ֽ����;�3ؼ�8�<�5輭�C<z���"�,�u<�Е<�a�<���<������A;{P����<�D�;���D�<@񼝻�ͧ���%/�k�N��u=�� �����7���Ջ�[���w�;_��<49��<��<�_<���<�ۼM�(=ò��tY=/�<���T��I���j޼���<��<��]?T�tY�f�B����u(<����b�@<.lѻڸ� <�{m�b��;.��<��=����)�ĺiRs=��=]g��4�b6<@�=� ��j���`=2�]�ӣ�;��S��71<Ѵ�<�BW<� �<꩖��{m�̶��Jк%��;1+<�౼��_<�P9��%��t5;[x#��x8�x�����<�mĻ� �<}I����%�ܓ���=�$ٻd��rV�<�C<3;��du<�F��`ռ�w����p�|�0��]S4=��Nq�<7tn=�B�<]!<�V=tkI=����J�:����⯼娒<���;D�x= �l=Kae=�j����ͼI�=�ѻ��gC<�ci<�}�:͆`�vVS=������/=]����=�ju=H�Q���/=��;1��)b�:u��:��<���a#+�)bP=3�ƻS�*�q -���B=��/: V�:���O�ۼ���<@j���I�+B�%����=�{7<����V,�n�en!���K=�r;�D�< �b<��];��r�����-")���V��DL�it+=%��娒�=�n�r�f��;?$�<,g��=9 =F� �x��<�O���]=#�Y<�'�I���}g=�Uh;� 1�� =瓜;H�<�}�<�{�:{c���/=�<�k<���<�U%=W\=X��;��QK���7��&t���#�Wr��7�лc�3��=��W=fm=}G�+="����'=�4u���<�P�F*<��=���E���J�m4�����5s)=�����餻�N<�|"=/ 3;�mͻ�t¼�U��tU�Q�*�s�5�{���it+��&<� v�Ivۼ�ϻb�>�#��<� J��=׼en!i=bS���s�;�e��z,:S�o;6���;=;��a��<�l�����l���������h��<�b$=���<�) ��/V<{��z�;���<�C���<�����u<���<��:��<�g,���� ��c;<]�>;�ϼv�5�Co�i�� �+����<��<7ӕ����a9� -�Z�O�<�X�~�?��*μ��;Z!��\���y�ȯ��}g<'1�2(3��ʇ=���@:�D�{\]<<�= 8���dԼ���;�̻���<:QOǺ�4�;����`�4;�e��<�^a<�<�� D=t�+<�%��=9�����;�l����<0Sd�G��(wF=O7y:���;�&��5<��S���&�<��t��8���;�üA�==���<��V���k��h�e�<*����t;��{<���j/���z <2��%F��� �<�~�1��X<�'ۻ{H�Σ=y�1����5�g<� �;�g�i< L/���<��J<Ħl��kW<�g���l���f+=r�5=h��<�3I�f�=�>1�ү�m��: h_��QL<9�=��^<h6<��ۼK����������D=:t�pa`����< �<8%��� =�o=�꛼�]�"��1�߅="�=!2�7(�?�S��%y�<^��g�I�?�S;.����<�y<�/`<���8�ju=?��<�6<ڂ2 �<<c;�����}�Q��'[;�f��D�ɼ�@V<}�$<(����8<��6�"�=v�<*C<��=e#ĻF��;� O<�2=�-��iE����:��w�~x�y�a:���e�岶<��ʼ%"=�{k�0nļ�k�����8�<�A;nr-��X<=y�:p�=-�<��=>�<8�*<������<�˶<7 <�܃��w���g�<���Y[R �;�==�v?��ռ�:t��n�;*�K=�W��zz�qB�<ﭻl�';�n �Ê�<�{�������;͞={H7=������<�Fd;�U �At���L �+ �����R��<�\�;.Ⱦ��'�;���9���;��/;$O ;�� -��ҵ�qυ��3����;�-����5�n�Z=`N;\��<|Ҍ�:�0��e�;�)=��S;�;�;�����C��M<����=�+�<'�<���K[�<�j���h'=,0�;ٯ/:��^�K�Z�ύ�<|�<�-��ӗ<���<_�=���<�U �#| -�"�=�x伕p=Qz=�GF<83X=ӽ����[����<��W�C6_�4��`�<����:�!-J;��,;��<����O9f<1AG<8�;�0¼S =�<�>=�/�<�'� 9=)��<�D?��5n<]�E=:��;�?�� ��p���r<����u��"廍�<.��:���κ@���<�bB<�n��z,��4�=�2g�߅�T��� O=����Qz=7n��>`�<�m��� =R[)�:��@��@-=��!��l<�0¼�s8��h�<$O <�q��,0Q�I @�pa�<4����Q�s��;=�=�q2=��=q�滧@ۼ�� ;���;��n�a��9��6=�������<��i�5�<�,�?��V�<�s<�X��r�4<�n��$PX����������;�ϧ�;n��b4� -�����Y�m5�����*�J=Y0��(Bi�q`z: =�o���#X�`����V=��� <��0���}:�hm=a'<���65���E�� <�XW�<5�&�r�*��;=���;�ɼ����r�4<8��m�#<��[�[ �����<.�����=, S��$�ڧ3�!�ϻ���<�0��1��d<�*�<$PX�[ =Rv�<\��<J =�{3=�/P�l6�a��<5��<�V���i�<>65= �ѻ5�&;�z�<� 5����=�c=Js���t=<�ӺtQ <���<�<���;��x��;�x=v@�<"c�<ሹ;�u���s��ژ�0�<�\9��J� -<.$����;��ɼ����8�B<��8=�ƻ'U��Qf�G��;��/�(.B<�{����+�L�T��b�<�!a=^�< j{;sO����Qte�r�4���<�r�="� �=uN�S��;°K<�b��.��<��t<�BҼ{��;�;°�<� :<�p�<�������ܖ(;���<#<1��|;!a�R������<��<��X���G����<��<5����7����,�Y09� �\�Ty��1�<��.=���;�Ę;�{P�<� =i�9�B� �����Is�Y�<��;h�]�����<(��<)�:p¿:E�μ1�<��?6�M��<@��<5ܦ�;޾������N�<&?M;� =�y����;Q=kL�<��׼�<���=�!<���m�< e�<��#<ӭG��a�< .X�z��< �4=J�G=�Y ;��ռ� -��"���K� �;ռ;�$���X;��C<�<� ����=�8�<;8�;?E�;7e�^�;%�!�2F<�Q�<�k����<���<7;;�=_�<�W��n;�F =�9��Z-��E)�g)��F<��=Ъ=<�s�<�� ;zT�<�� <�{^�Gڽ<2F���<��������Ȼ��:���d�� �4��7 -��U��_�?=)��<*��V�%=c}4<��<���;Ş=��<8Ҳ�ZR�<���<];z+�n<>;���%���u�2F��f<��+��[���m=��<�|��Ǐ��ڼ��;��:ü�-���0A�Ϡ =o���1b��h�;Z{��0f�;���<��H��)�; '�;=�����!�N�L��;�<)�ܼ�B�*��,�f<��<���<,Ax<�&����;~�����8�_��ְQ��0�;����$��T;<����8N=ؿ�<@�%=�w=�$^=z_O�}�����T�o弁�ټp����Ԃ��z����<�:;<�=�X§<�K�< -�@�M��{`ݼ�����G���b�=A`8��X��5S��K_�h���������{~���K0���<����㔩��ӣ���9� -;��/;�S�����o=�<�Oh=��=��t�~�i<���|�2<}���t�sѶ��g���2�<�1J��8<8I����T^p<��<$��:]*=-YY=�%=��=����)�o�=T_~<��㼀���۵����==�wH<��T�Ĕ< a����;*�<�߷�(Y<֜�;?�<Uм����o�#�<1�W��z�<�i=� ��;�'#=z^A�UP�T_�9.�������1<��A���%�*u<����(�<@�%�]*�һן/<����S��t�;��.[��s��<��&�\<���<'주>��<�3��=������<�iN��N�L����.7���;��c�t�n��}�����T[F��~L=ao=�ڼ!büp�~�I�˼���֝��j\<��,:7&��PG�E@#:���<ȅ�<�(=����5��<�i<����|�@����4�+=�Z<[��<��;��ֻ8-�>�;M킼5�q=>6���@�˭߼��.�_0k;1��<Ĕ<��PV=���;0�=�ʹ���;�c;q��;���<�ϡ;Z�&���V=㕷<;pD�T\Ի��/<��V<�w=��&��<^,�8 �x�����v ;��;6%=?�^=.x�:$��f�u=])�<�L<���;d�:�`.����<��3<�fS<��.��(<��b<�o;���<��B�z]�<�{��� e��h<j���ީ���<�>�:C��<�3�;�G�< -�@��6���9="������<3��� ^ <�9 �#=�x���<��V�;�!�����;G �� ��נ��,T�<�o=�f�u�;n(<�%l��}��9K)<�S�;�>���]:��=�#�B�ܻ ^ ��-����<7)8�E>=z_ϼU{�;�®�^/]���T^�^,3;n�;�3=�T�<ʨ�:=��ּ����C�;�#=��=���<�Z���~�<����~B˼��D� *��_ۿ��6-=��"��4/���/;���r�H3� 蠼E���Kû㖂��SP=gB#��ݕ��.�;�5�<�����.;�X̻�[!=�I�<$sI�?�Xt\<^��<�y��B��.�l��&c�!|��j����̽31հ<ލn=RHZ<9]���T۫�Eeջld;C*�<(˹��܇�;O2Y<�&c=@�ӼQu :n�5<򬗼���<����6�0� >����;�;Q=�y��#=o$�F�U=��*�hm�&�ɼB��<̎ �*O,<�h�<���:��<�4�&�`�<�R廨&;<�<�� `�$��$� -��a���;G��;k���a�0�l<� �;��;hm��a<�\=�5��2���d|�<��<�&�=Ee�<�o�;sJ=�5�>f�yv -�U�z��>��[<�6-�� -S���V�q_F�EeU=721�sB�;�Sл ��<��7<�2��p7��DI=V�<��<6G�;�ހ:�M��~��>��(K<���<�a0<'�J�jX�8�����„��\���. =��;^�^� -] =e�Eeջ^P��b���r:��Ժ﮼���;V&<��m<�ƻ 8@;�QҼg��<�뱻��I���*�[:>�E�;㖂�� ���o����:��J; 蠼��q�6���U�X�{�e��&'<\�><�~+=(˻z��<ڜM;����ލ��;�!�7�P�+*L���;��&<Ϥ -��wż��5<��P=C�T������L̸;�=y&��֍=N�,%W���;!�漬�>=>�!=�+������.I=�;��~< >���u/=Q= F<� <��Ǚ�ƖD���ռ��;:1������<���ҝ;�{�;��=rH�k��<�T; 2��W{��z(����<��/<���=�`�;ǹt=��:��������:C�9<��7���<�є�Y�=r(�-��:����;�2����c�jC%=�F �r�X$=��<��t=h�;f�:<�ˬ��y�6�Q�o�r����<�䛼Ț4��}<�(�����o��HʼvC�<��h=k�=#��:��?���<ߪ�y&<�]�� ��<�i_�Q/��m��Dٱ���c<�$+=�8�<������:� _���ϻoK�:1�;E//�wf��Ә�<��~�C�9=��i=f===t�R�ДR�μ����ᚼ6;�}����)�=<��xЂ<��n=� -�F�<</�(};����ˬ<)�?�Q�m= q�� Ļ�O^�M�K�<�w'=e�¼��?�R���I��<m��rH<�py\=�*6�@<��O�!�뻧��;�]�����;?�;�>ϻ��1;W9*�@}L=%DQ���$��?Z��|ü(kq��znO��w�9R�̼�[ =�g!=��\A -��u�< -�P;K9=��ɺ{K�:[�<�,.9�<���F1�<��%�m�;��<���:-�#;Z^�; -@��#�#����<� ��#� �Z^�:��o���?��;9��;�˼.R�<�����X -�I5<0�v�>%�<Ż:�/�ϼg?5=�IӼ� -�)l:|nX<��+<_��:jd]<�;e�¼��<�2��(��d<�U�<^5����� -:vx ��_d<�` �q�b���,;g`m=�����㒼g`�;+�+����<���Ͽ��z�:�4=�ں�:����=�6);�X�<"����>�I�̼�_���{:�:1�=���<:3<�W>,=��< _[��{�<��z��(�;0w����;[?��V��q;�9/ ��}�; =�+�<֜O<8q�<��< ��<��������=��C�����d�9U��<��#��,��4�=�ļ8� ���"�L|༁�G����G�'��:�_=WsK=3����˻a���#=���+�=^b��d�=��� -$��W�*=$&`= 0�S�;4w���=���<�<��k�m,�<�;Ƽ���<��.�����.K<�伸w*=�u̼9y�ӼuX�<��`�A�<�S=+���=8Y����r��ń�6�=u���oy��]�)����%<0�=�n����P=; F\��B���"�{3T=>�};#� �s�����<��<�TP=+N�<�F;��9�|���R�%�1�]��w`2=�d+�Q�;,Z�c52�}G�g�)�4�=�Ԥ<�}�;۩ựON�{3�<'�n<�Sỿ�::߱���񼥕��3=�$�<\S<��"=�K;=�e��:߱�B�*=÷���I�<����w�<�v;=�Yһ ]B=}�����<�p��!�:�<�l��י��{p����R��g鼄�:��E<��"��F9<�U?���񻬵C�fI �����9U�;�-/��D<��μ�_)=�-���h�_��<3��<�*�:��<�A�; 4����=�j<9��W:�:�=nm�< -��<�i��Q�@�G�;� <�2e���м���=؝��r�:��^��]����2<ķ��r@|;��X��м۩a�]Ծ<;��<�<�b�� �&<�¼N -2=�<�*���r<��ҼI�����y߼ųe=le4�d9E�T��<{t <9](���<+�f�N -2����cV=nmڼ� D�l��Pխ����<�H��d��S<��<�h������洼�݅= ,Q���޼��ﻲ��ܵ��įR=�5�<)���p����eW����;��;'�#��6��'O����=�B�<�r�; -$�<���<�᲼ *<��; -���/!^=����j�k�*����6 ��̻cr�;3=��Ӽ�^�;�$�;$&`<�C�<�蒻���:��V�4~��١����#�)�@=�D���;x�o<���Q�@��'r:�M�ڥN<&��< 0d<U<�b�����;�7�r�'�/�3�h<�=��;L������<��"=�{���l7=�L���Ż'B�8�����ɗ;�R��N -��~c<��<�g����<����?Y=�a�bG�3w0��(ļ�Ҽ�F<#м�ƴ;S�z�ټm��6�?<1�=p�<�r��[� ú��.��8=�ɠ;%+��J�7=�^M�֓}<�Sv<�j�<Յ��,=A=\�"=�2=�DR���b����}�f=��j<�z�<�<N�;�E ��QA<��B<��3=��uW��N�R�|$b��K�;�)�<$�Ի��;v ��Y<��DX�{�_��S���.�؟����B�V�|�ߙ��~�#�M<+�};Ą;o�&9޻^�<��<�;R��W���ó ��4�<�4|�U�z�g;�!2;�^M���<޸-���ػ律�yԼXc�={pݼ��(�������̌<�Q=� -��%Vq�V:$�) $���������?;C#��� �f� -����<�a`=,�|��N�l�2�Lo,<)0��,�;�Z��� �2��<�]�l>�L�{����R�7�� �<�^�<揜<�=�� ��<�0��?Il���<��)����;t;%����x>=Y�<�e�<ʼn�<��*�<�9�<��=r�ڼ�ѩ��?Z<�{&<����XY=Y:������� -�<��<Ŝe�L�P��8�<ϯ#=�ڎ;?��� =�������$��v��{&=r�S=��#=l=,��D��9��I3��.��o{<��H�_+�R:Ƽl-��ʼnA=�P�<"��<��껼��� ���;E8���8�8�;��D<��=�D�<�W!��;�<2�?=�O�l���Tм����/;�%P��n!����X�����<��[;���<�D��,iQ��g;=�CX��S��ػ�����CX<� =_bk�; ���Ѽ) ���pB9y �<̯�:�"]�_�\;Dc�"�����<_OG=�� =%CM��Z�<��<���;8��<5��<�}%;�޺�؏D��G4=�C�<� -0;A�;��<v�<ɭ:1�<��<,2J<��<���r���5���F���3��% �.̼�X�<� <����R�x�2���k��3����]�Ϻf�'���J=�����g��<��F<�D�� b�_�b�ʻ`ĭ����<�"��(�,����<��$;M�B�6y��HἿ#���=�c=�=�y����<��ںn���%�O��==^�}g�M�#;x*�<}�;��b;Q��;�]<;aO���?�$;<���=�&m<)F <�7#=�u�<�&��av�:�\�<������< ��;��<���<5c\��ި�K��<<�����B��:U��<&W������'�< =H=��!;X[6=F��<����:_<��=�;���d��;��@��D;�3//�w#�;9�&��"==?{�����;��=O_��|?��Y�g9=�1a=�{ ����<�z\=�G@���'�d� ;���<��3=l[�:~ -<2�պ?�W<�7���N<�ʁ����<�\���==���<�7�<�񚻘�'�%:�������=�͢�|����<�U��N���_�r��<��t��<؏L<��;$� �h`$=��.��E�2�U<�K����;��󺄖a�I��$���3�d鋼֢S<��<4������z/=�+;���z��_�=D�I�|?�� C����N�?�s(G���<`0���1�=v� <�k ��Ž:?��